OpenLP-2.4/0000755000175000017500000000000012660157215011547 5ustar raoulraoulOpenLP-2.4/README.txt0000644000175000017500000000057212657640340013253 0ustar raoulraoulOpenLP ====== You're probably reading this because you've just downloaded the source code for OpenLP. If you are looking for the installer file, please go to the download page on the web site:: http://openlp.org/download If you're looking for how to contribute to OpenLP, then please look at the OpenLP wiki:: http://wiki.openlp.org/ Thanks for downloading OpenLP! OpenLP-2.4/openlp.py0000755000175000017500000000454112657640340013427 0ustar raoulraoul#!/usr/bin/env python3 # -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import sys import multiprocessing from openlp.core.common import is_win, is_macosx from openlp.core import main if __name__ == '__main__': """ Instantiate and run the application. """ # Add support for using multiprocessing from frozen Windows executable (built using PyInstaller), # see https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support if is_win(): multiprocessing.freeze_support() # Mac OS X passes arguments like '-psn_XXXX' to the application. This argument is actually a process serial number. # However, this causes a conflict with other OpenLP arguments. Since we do not use this argument we can delete it # to avoid any potential conflicts. if is_macosx(): sys.argv = [x for x in sys.argv if not x.startswith('-psn')] main() OpenLP-2.4/documentation/0000755000175000017500000000000012657640341014423 5ustar raoulraoulOpenLP-2.4/documentation/manual.txt0000644000175000017500000000043412657640340016441 0ustar raoulraoulOpenLP Manual ============= If you're reading this file, you're probably looking for the OpenLP manual. The manual is hosted online at http://manual.openlp.org/. If you want to help with the manual, contact the OpenLP team via IRC in the #openlp.org channel on the Freenode network. OpenLP-2.4/documentation/openlp.10000644000175000017500000000224712657640340016006 0ustar raoulraoul.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.9. .TH OPENLP "1" "May 2012" "OpenLP 1.9.9" "User Commands" .SH NAME OpenLP \- Church worship presentation software .SH SYNOPSIS .B openlp [\fIoptions\fR] [\fIqt-options\fR] .SH OPTIONS .TP \fB\-\-version\fR show program's version number and exit .TP \fB\-h\fR, \fB\-\-help\fR show this help message and exit .TP \fB\-e\fR, \fB\-\-no\-error\-form\fR Disable the error notification form. .TP \fB\-l\fR LEVEL, \fB\-\-log\-level\fR=\fILEVEL\fR Set logging to LEVEL level. Valid values are "debug", "info", "warning". .TP \fB\-p\fR, \fB\-\-portable\fR Specify if this should be run as a portable app, off a USB flash drive (not implemented). .TP \fB\-d\fR, \fB\-\-dev\-version\fR Ignore the version file and pull the version directly from Bazaar .TP \fB\-s\fR STYLE, \fB\-\-style\fR=\fISTYLE\fR Set the Qt5 style (passed directly to Qt5). .TP \fB\-\-testing\fR Run by testing framework .SH "SEE ALSO" The full documentation for .B OpenLP is maintained as a Texinfo manual. If the .B info and .B OpenLP programs are properly installed at your site, the command .IP .B info OpenLP .PP should give you access to the complete manual. OpenLP-2.4/setup.cfg0000644000175000017500000000010712657640340013370 0ustar raoulraoul[pep8] exclude=resources.py,vlc.py max-line-length = 120 ignore = E402 OpenLP-2.4/MANIFEST.in0000644000175000017500000000070612657640340013312 0ustar raoulraoulrecursive-include openlp *.py recursive-include openlp *.sqlite recursive-include openlp *.csv recursive-include openlp *.html recursive-include openlp *.js recursive-include openlp *.css recursive-include openlp *.png recursive-include openlp *.ps recursive-include openlp *.json recursive-include documentation * recursive-include resources * recursive-include scripts * include copyright.txt include LICENSE include README.txt include openlp/.version OpenLP-2.4/copyright.txt0000644000175000017500000000301012657640340014314 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/.coveragerc0000644000175000017500000000006312657640340013671 0ustar raoulraoul[run] source = openlp [html] directory = coverage OpenLP-2.4/setup.py0000755000175000017500000001512612657640340013273 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import re from setuptools import setup, find_packages from subprocess import Popen, PIPE VERSION_FILE = 'openlp/.version' SPLIT_ALPHA_DIGITS = re.compile(r'(\d+|\D+)') def try_int(s): """ Convert string s to an integer if possible. Fail silently and return the string as-is if it isn't an integer. :param s: The string to try to convert. """ try: return int(s) except (TypeError, ValueError): return s def natural_sort_key(s): """ Return a tuple by which s is sorted. :param s: A string value from the list we want to sort. """ return list(map(try_int, SPLIT_ALPHA_DIGITS.findall(s))) def natural_sort(seq): """ Returns a copy of seq, sorted by natural string sort. :param seq: The sequence to sort. :param compare: The comparison method to use :return: The sorted sequence """ import copy temp = copy.copy(seq) temp.sort(key=natural_sort_key) return temp # NOTE: The following code is a duplicate of the code in openlp/core/utils/__init__.py. Any fix applied here should also # be applied there. ver_file = None try: # Get the revision of this tree. bzr = Popen(('bzr', 'revno'), stdout=PIPE) tree_revision, error = bzr.communicate() code = bzr.wait() if code != 0: raise Exception('Error running bzr log') # Get all tags. bzr = Popen(('bzr', 'tags'), stdout=PIPE) output, error = bzr.communicate() code = bzr.wait() if code != 0: raise Exception('Error running bzr tags') tags = output.splitlines() if not tags: tag_version = '0.0.0' tag_revision = '0' else: # Remove any tag that has "?" as revision number. A "?" as revision number indicates, that this tag is from # another series. tags = [tag for tag in tags if tag.split()[-1].strip() != '?'] # Get the last tag and split it in a revision and tag name. tag_version, tag_revision = tags[-1].split() # If they are equal, then this tree is tarball with the source for the release. We do not want the revision number # in the version string. tree_revision = tree_revision.strip() tag_revision = tag_revision.strip() if tree_revision == tag_revision: version_string = tag_version.decode('utf-8') else: version_string = '%s-bzr%s' % (tag_version.decode('utf-8'), tree_revision.decode('utf-8')) ver_file = open(VERSION_FILE, 'w') ver_file.write(version_string) except: ver_file = open(VERSION_FILE, 'r') version_string = ver_file.read().strip() finally: ver_file.close() setup( name='OpenLP', version=version_string, description="Open source Church presentation and lyrics projection application.", long_description="""\ OpenLP (previously openlp.org) is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if PowerPoint is installed) for church worship using a computer and a data projector.""", classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: MacOS X', 'Environment :: Win32 (MS Windows)', 'Environment :: X11 Applications', 'Environment :: X11 Applications :: Qt', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Religion', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Natural Language :: Afrikaans', 'Natural Language :: Dutch', 'Natural Language :: English', 'Natural Language :: French', 'Natural Language :: German', 'Natural Language :: Hungarian', 'Natural Language :: Indonesian', 'Natural Language :: Japanese', 'Natural Language :: Norwegian', 'Natural Language :: Portuguese (Brazilian)', 'Natural Language :: Russian', 'Natural Language :: Swedish', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX :: BSD :: FreeBSD', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Desktop Environment :: Gnome', 'Topic :: Desktop Environment :: K Desktop Environment (KDE)', 'Topic :: Multimedia', 'Topic :: Multimedia :: Graphics :: Presentation', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Video', 'Topic :: Religion' ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='open source church presentation lyrics projection song bible display project', author='Raoul Snyman', author_email='raoulsnyman@openlp.org', url='http://openlp.org/', license='GNU General Public License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), scripts=['openlp.py'], include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'sqlalchemy', 'alembic' ], entry_points=""" # -*- Entry points: -*- """ ) OpenLP-2.4/tests/0000755000175000017500000000000012657640341012714 5ustar raoulraoulOpenLP-2.4/tests/README.txt0000644000175000017500000000210412657640340014406 0ustar raoulraoulTests for OpenLP ================ This directory contains unit tests for OpenLP. The ``functional`` directory contains functional unit tests. Prerequisites ------------- In order to run the unit tests, you will need the following Python packages/libraries installed: - Mock - Nose On Ubuntu you can simple install the python-mock and python-nose packages. Most other distributions will also have these packages. On Windows and Mac OS X you will need to use ``pip`` or ``easy_install`` to install these packages. Running the Tests ----------------- To run the tests, navigate to the root directory of the OpenLP project, and then run the following command:: nosetests -v tests Or, to run only the functional tests, run the following command:: nosetests -v tests/functional Or, to run only a particular test suite within a file, run the following command:: nosetests -v tests/functional/test_applocation.py Finally, to only run a particular test, run the following command:: nosetests -v tests/functional/test_applocation.py:TestAppLocation.get_frozen_path_test OpenLP-2.4/tests/utils/0000755000175000017500000000000012657640341014054 5ustar raoulraoulOpenLP-2.4/tests/utils/__init__.py0000644000175000017500000000407512657640340016172 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import os import json def assert_length(expected, iterable, msg=None): if len(iterable) != expected: if not msg: msg = 'Expected length %s, got %s' % (expected, len(iterable)) raise AssertionError(msg) def convert_file_service_item(test_path, name, row=0): service_file = os.path.join(test_path, name) open_file = open(service_file, 'r') try: items = json.load(open_file) first_line = items[row] except IOError: first_line = '' finally: open_file.close() return first_line OpenLP-2.4/tests/utils/test_bzr_tags.py0000644000175000017500000000504612657640340017304 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test for proper bzr tags. """ import os from unittest import TestCase from subprocess import Popen, PIPE TAGS1 = {'1.9.0', '1.9.1', '1.9.2', '1.9.3', '1.9.4', '1.9.5', '1.9.6', '1.9.7', '1.9.8', '1.9.9', '1.9.10', '1.9.11', '1.9.12', '2.0', '2.1.0', '2.1.1', '2.1.2', '2.1.3', '2.1.4', '2.1.5', '2.1.6', '2.2', '2.3.1', '2.3.2', '2.3.3', '2.4'} class TestBzrTags(TestCase): def bzr_tags_test(self): """ Test for proper bzr tags """ # GIVEN: A bzr branch path = os.path.dirname(__file__) # WHEN getting the branches tags bzr = Popen(('bzr', 'tags', '--directory=' + path), stdout=PIPE) std_out = bzr.communicate()[0] count = len(TAGS1) tags = [line.decode('utf-8').split()[0] for line in std_out.splitlines()] count1 = 0 for t in tags: if t in TAGS1: count1 += 1 # THEN the tags should match the accepted tags self.assertEqual(count, count1, 'List of tags should match') OpenLP-2.4/tests/utils/osdinteraction.py0000644000175000017500000000416412657640340017457 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`osdinteraction` provides miscellaneous functions for interacting with OSD files. """ import os import json from tests.utils.constants import TEST_RESOURCES_PATH def read_service_from_file(file_name): """ Reads an OSD file and returns the first service item found therein. @param file_name: File name of an OSD file residing in the tests/resources folder. @return: The service contained in the file. """ service_file = os.path.join(TEST_RESOURCES_PATH, 'service', file_name) with open(service_file, 'r') as open_file: service = json.load(open_file) return service OpenLP-2.4/tests/utils/constants.py0000644000175000017500000000024512657640340016442 0ustar raoulraoul import os OPENLP_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')) TEST_RESOURCES_PATH = os.path.join(OPENLP_PATH, 'tests', 'resources') OpenLP-2.4/tests/interfaces/0000755000175000017500000000000012657640341015037 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_core_ui/0000755000175000017500000000000012661025625020036 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_core_ui/test_listpreviewwidget.py0000644000175000017500000001146712657640340025243 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.listpreviewwidget. """ from unittest import TestCase from PyQt5 import QtGui, QtWidgets from openlp.core.common import Registry from openlp.core.lib import ServiceItem from openlp.core.ui import listpreviewwidget from tests.interfaces import MagicMock, patch from tests.utils.osdinteraction import read_service_from_file from tests.helpers.testmixin import TestMixin class TestListPreviewWidget(TestCase, TestMixin): def setUp(self): """ Create the UI. """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() self.image = QtGui.QImage(1, 1, QtGui.QImage.Format_RGB32) self.image_manager = MagicMock() self.image_manager.get_image.return_value = self.image Registry().register('image_manager', self.image_manager) self.preview_widget = listpreviewwidget.ListPreviewWidget(self.main_window, 2) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault. """ del self.preview_widget del self.main_window def initial_slide_count_test(self): """ Test the initial slide count . """ # GIVEN: A new ListPreviewWidget instance. # WHEN: No SlideItem has been added yet. # THEN: The count of items should be zero. self.assertEqual(self.preview_widget.slide_count(), 0, 'The slide list should be empty.') def initial_slide_number_test(self): """ Test the initial current slide number. """ # GIVEN: A new ListPreviewWidget instance. # WHEN: No SlideItem has been added yet. # THEN: The number of the current item should be -1. self.assertEqual(self.preview_widget.current_slide_number(), -1, 'The slide number should be -1.') def replace_service_item_test(self): """ Test item counts and current number with a service item. """ # GIVEN: A ServiceItem with two frames. service_item = ServiceItem(None) service = read_service_from_file('serviceitem_image_3.osj') with patch('os.path.exists'): service_item.set_from_service(service[0]) # WHEN: Added to the preview widget. self.preview_widget.replace_service_item(service_item, 1, 1) # THEN: The slide count and number should fit. self.assertEqual(self.preview_widget.slide_count(), 2, 'The slide count should be 2.') self.assertEqual(self.preview_widget.current_slide_number(), 1, 'The current slide number should be 1.') def change_slide_test(self): """ Test the change_slide method. """ # GIVEN: A ServiceItem with two frames content. service_item = ServiceItem(None) service = read_service_from_file('serviceitem_image_3.osj') with patch('os.path.exists'): service_item.set_from_service(service[0]) # WHEN: Added to the preview widget and switched to the second frame. self.preview_widget.replace_service_item(service_item, 1, 0) self.preview_widget.change_slide(1) # THEN: The current_slide_number should reflect the change. self.assertEqual(self.preview_widget.current_slide_number(), 1, 'The current slide number should be 1.') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_starttimedialog.py0000644000175000017500000001370112657640340024647 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ from unittest import TestCase from PyQt5 import QtCore, QtTest, QtWidgets from openlp.core.common import Registry from openlp.core.ui import starttimeform from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestStartTimeDialog(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = starttimeform.StartTimeForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def ui_defaults_test(self): """ Test StartTimeDialog are defaults correct """ self.assertEqual(self.form.hour_spin_box.minimum(), 0, 'The minimum hour should stay the same as the dialog') self.assertEqual(self.form.hour_spin_box.maximum(), 4, 'The maximum hour should stay the same as the dialog') self.assertEqual(self.form.minute_spin_box.minimum(), 0, 'The minimum minute should stay the same as the dialog') self.assertEqual(self.form.minute_spin_box.maximum(), 59, 'The maximum minute should stay the same as the dialog') self.assertEqual(self.form.second_spin_box.minimum(), 0, 'The minimum second should stay the same as the dialog') self.assertEqual(self.form.second_spin_box.maximum(), 59, 'The maximum second should stay the same as the dialog') self.assertEqual(self.form.hour_finish_spin_box.minimum(), 0, 'The minimum finish hour should stay the same as the dialog') self.assertEqual(self.form.hour_finish_spin_box.maximum(), 4, 'The maximum finish hour should stay the same as the dialog') self.assertEqual(self.form.minute_finish_spin_box.minimum(), 0, 'The minimum finish minute should stay the same as the dialog') self.assertEqual(self.form.minute_finish_spin_box.maximum(), 59, 'The maximum finish minute should stay the same as the dialog') self.assertEqual(self.form.second_finish_spin_box.minimum(), 0, 'The minimum finish second should stay the same as the dialog') self.assertEqual(self.form.second_finish_spin_box.maximum(), 59, 'The maximum finish second should stay the same as the dialog') def time_display_test(self): """ Test StartTimeDialog display functionality """ # GIVEN: A service item with with time mocked_serviceitem = MagicMock() mocked_serviceitem.start_time = 61 mocked_serviceitem.end_time = 3701 mocked_serviceitem.media_length = 3701 # WHEN displaying the UI and pressing enter self.form.item = {'service_item': mocked_serviceitem} with patch('PyQt5.QtWidgets.QDialog.exec'): self.form.exec() ok_widget = self.form.button_box.button(self.form.button_box.Ok) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the following input values are returned self.assertEqual(self.form.hour_spin_box.value(), 0) self.assertEqual(self.form.minute_spin_box.value(), 1) self.assertEqual(self.form.second_spin_box.value(), 1) self.assertEqual(self.form.item['service_item'].start_time, 61, 'The start time should stay the same') # WHEN displaying the UI, changing the time to 2min 3secs and pressing enter self.form.item = {'service_item': mocked_serviceitem} with patch('PyQt5.QtWidgets.QDialog.exec'): self.form.exec() self.form.minute_spin_box.setValue(2) self.form.second_spin_box.setValue(3) ok_widget = self.form.button_box.button(self.form.button_box.Ok) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the following values are returned self.assertEqual(self.form.hour_spin_box.value(), 0) self.assertEqual(self.form.minute_spin_box.value(), 2) self.assertEqual(self.form.second_spin_box.value(), 3) self.assertEqual(self.form.item['service_item'].start_time, 123, 'The start time should have changed') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_thememanager.py0000644000175000017500000001257212657640340024115 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Interface tests to test the themeManager class and related methods. """ from unittest import TestCase from openlp.core.common import Registry, Settings from openlp.core.ui import ThemeManager, ThemeForm, FileRenameForm from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin class TestThemeManager(TestCase, TestMixin): """ Test the functions in the ThemeManager module """ def setUp(self): """ Create the UI """ self.build_settings() self.setup_application() Registry.create() self.theme_manager = ThemeManager() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() del self.theme_manager def initialise_test(self): """ Test the thememanager initialise - basic test """ # GIVEN: A new a call to initialise self.theme_manager.build_theme_path = MagicMock() self.theme_manager.load_first_time_themes = MagicMock() Settings().setValue('themes/global theme', 'my_theme') # WHEN: the initialisation is run self.theme_manager.bootstrap_initialise() # THEN: self.assertEqual(1, self.theme_manager.build_theme_path.call_count, 'The function build_theme_path should have been called') self.assertEqual(1, self.theme_manager.load_first_time_themes.call_count, 'The function load_first_time_themes should have been called only once') self.assertEqual(self.theme_manager.global_theme, 'my_theme', 'The global theme should have been set to my_theme') def build_theme_path_test(self): """ Test the thememanager build_theme_path - basic test """ # GIVEN: A new a call to initialise with patch('openlp.core.common.applocation.check_directory_exists') as mocked_check_directory_exists: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory() mocked_check_directory_exists.return_value = True Settings().setValue('themes/global theme', 'my_theme') self.theme_manager.theme_form = MagicMock() self.theme_manager.load_first_time_themes = MagicMock() # WHEN: the build_theme_path is run self.theme_manager.build_theme_path() # THEN: assert self.theme_manager.thumb_path.startswith(self.theme_manager.path) is True, \ 'The thumb path and the main path should start with the same value' def click_on_new_theme_test(self): """ Test the on_add_theme event handler is called by the UI """ # GIVEN: An initial form Settings().setValue('themes/global theme', 'my_theme') mocked_event = MagicMock() self.theme_manager.on_add_theme = mocked_event self.theme_manager.setup_ui(self.theme_manager) # WHEN displaying the UI and pressing cancel new_theme = self.theme_manager.toolbar.actions['newTheme'] new_theme.trigger() assert mocked_event.call_count == 1, 'The on_add_theme method should have been called once' @patch('openlp.core.ui.themeform.ThemeForm._setup') @patch('openlp.core.ui.filerenameform.FileRenameForm._setup') def bootstrap_post_test(self, mocked_theme_form, mocked_rename_form): """ Test the functions of bootstrap_post_setup are called. """ # GIVEN: self.theme_manager.load_themes = MagicMock() self.theme_manager.path = MagicMock() # WHEN: self.theme_manager.bootstrap_post_set_up() # THEN: self.assertEqual(self.theme_manager.path, self.theme_manager.theme_form.path) self.assertEqual(1, self.theme_manager.load_themes.call_count, "load_themes should have been called once") OpenLP-2.4/tests/interfaces/openlp_core_ui/__init__.py0000644000175000017500000000310512657640340022150 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module-level functions for the functional test suite """ OpenLP-2.4/tests/interfaces/openlp_core_ui/test_servicemanager.py0000644000175000017500000004573412657640340024461 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib package. """ from unittest import TestCase from openlp.core.common import Registry from openlp.core.lib import ScreenList, ServiceItem, ItemCapabilities from openlp.core.ui.mainwindow import MainWindow from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestServiceManager(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() ScreenList.create(self.app.desktop()) Registry().register('application', MagicMock()) # Mock classes and methods used by mainwindow. with patch('openlp.core.ui.mainwindow.SettingsForm') as mocked_settings_form, \ patch('openlp.core.ui.mainwindow.ImageManager') as mocked_image_manager, \ patch('openlp.core.ui.mainwindow.LiveController') as mocked_live_controller, \ patch('openlp.core.ui.mainwindow.PreviewController') as mocked_preview_controller, \ patch('openlp.core.ui.mainwindow.OpenLPDockWidget') as mocked_dock_widget, \ patch('openlp.core.ui.mainwindow.QtWidgets.QToolBox') as mocked_q_tool_box_class, \ patch('openlp.core.ui.mainwindow.QtWidgets.QMainWindow.addDockWidget') as mocked_add_dock_method, \ patch('openlp.core.ui.mainwindow.ThemeManager') as mocked_theme_manager, \ patch('openlp.core.ui.mainwindow.ProjectorManager') as mocked_projector_manager, \ patch('openlp.core.ui.mainwindow.Renderer') as mocked_renderer: self.main_window = MainWindow() self.service_manager = Registry().get('service_manager') def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.main_window def basic_service_manager_test(self): """ Test the Service Manager UI Functionality """ # GIVEN: A New Service Manager instance # WHEN I have set up the display self.service_manager.setup_ui(self.service_manager) # THEN the count of items should be zero self.assertEqual(self.service_manager.service_manager_list.topLevelItemCount(), 0, 'The service manager list should be empty ') def default_context_menu_test(self): """ Test the context_menu() method with a default service item """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.auto_start_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def edit_context_menu_test(self): """ Test the context_menu() method with a edit service item """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() service_item.add_capability(ItemCapabilities.CanEdit) service_item.edit_id = 1 self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_with(True), \ 'The action should be set visible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.auto_start_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def maintain_context_menu_test(self): """ Test the context_menu() method with a maintain """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() service_item.add_capability(ItemCapabilities.CanMaintain) self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_with(True), \ 'The action should be set visible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.auto_start_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def loopy_context_menu_test(self): """ Test the context_menu() method with a loop """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() service_item.add_capability(ItemCapabilities.CanLoop) service_item._raw_frames.append("One") service_item._raw_frames.append("Two") self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.auto_start_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def start_time_context_menu_test(self): """ Test the context_menu() method with a start time """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() service_item.add_capability(ItemCapabilities.HasVariableStartTime) self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_with(True), \ 'The action should be set visible.' self.service_manager.auto_start_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def auto_start_context_menu_test(self): """ Test the context_menu() method with can auto start """ # GIVEN: A service item added self.service_manager.setup_ui(self.service_manager) with patch('PyQt5.QtWidgets.QTreeWidget.itemAt') as mocked_item_at_method, \ patch('PyQt5.QtWidgets.QWidget.mapToGlobal'), \ patch('PyQt5.QtWidgets.QMenu.exec'): mocked_item = MagicMock() mocked_item.parent.return_value = None mocked_item_at_method.return_value = mocked_item # We want 1 to be returned for the position mocked_item.data.return_value = 1 # A service item without capabilities. service_item = ServiceItem() service_item.add_capability(ItemCapabilities.CanAutoStartForLive) self.service_manager.service_items = [{'service_item': service_item}] q_point = None # Mocked actions. self.service_manager.edit_action.setVisible = MagicMock() self.service_manager.create_custom_action.setVisible = MagicMock() self.service_manager.maintain_action.setVisible = MagicMock() self.service_manager.notes_action.setVisible = MagicMock() self.service_manager.time_action.setVisible = MagicMock() self.service_manager.auto_start_action.setVisible = MagicMock() self.service_manager.rename_action.setVisible = MagicMock() # WHEN: Show the context menu. self.service_manager.context_menu(q_point) # THEN: The following actions should be not visible. self.service_manager.edit_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.create_custom_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.maintain_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.notes_action.setVisible.assert_called_with(True), 'The action should be set visible.' self.service_manager.time_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' self.service_manager.auto_start_action.setVisible.assert_called_with(True), \ 'The action should be set visible.' self.service_manager.rename_action.setVisible.assert_called_once_with(False), \ 'The action should be set invisible.' def click_on_new_service_test(self): """ Test the on_new_service event handler is called by the UI """ # GIVEN: An initial form mocked_event = MagicMock() self.service_manager.on_new_service_clicked = mocked_event self.service_manager.setup_ui(self.service_manager) # WHEN displaying the UI and pressing cancel new_service = self.service_manager.toolbar.actions['newService'] new_service.trigger() assert mocked_event.call_count == 1, 'The on_new_service_clicked method should have been called once' OpenLP-2.4/tests/interfaces/openlp_core_ui/test_filerenamedialog.py0000644000175000017500000001073212657640340024743 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ from unittest import TestCase from PyQt5 import QtTest, QtWidgets from openlp.core.common import Registry from openlp.core.ui import filerenameform from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestStartFileRenameForm(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = filerenameform.FileRenameForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def window_title_test(self): """ Test the windowTitle of the FileRenameDialog """ # GIVEN: A mocked QDialog.exec() method with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: # WHEN: The form is executed with no args self.form.exec() # THEN: the window title is set correctly self.assertEqual(self.form.windowTitle(), 'File Rename', 'The window title should be "File Rename"') # WHEN: The form is executed with False arg self.form.exec(False) # THEN: the window title is set correctly self.assertEqual(self.form.windowTitle(), 'File Rename', 'The window title should be "File Rename"') # WHEN: The form is executed with True arg self.form.exec(True) # THEN: the window title is set correctly self.assertEqual(self.form.windowTitle(), 'File Copy', 'The window title should be "File Copy"') def line_edit_focus_test(self): """ Regression test for bug1067251 Test that the file_name_edit setFocus has called with True when executed """ # GIVEN: A mocked QDialog.exec() method and mocked file_name_edit.setFocus() method. with patch('PyQt5.QtWidgets.QDialog.exec'): mocked_set_focus = MagicMock() self.form.file_name_edit.setFocus = mocked_set_focus # WHEN: The form is executed self.form.exec() # THEN: the setFocus method of the file_name_edit has been called with True mocked_set_focus.assert_called_with() def file_name_validation_test(self): """ Test the file_name_edit validation """ # GIVEN: QLineEdit with a validator set with illegal file name characters. # WHEN: 'Typing' a string containing invalid file characters. QtTest.QTest.keyClicks(self.form.file_name_edit, 'I/n\\v?a*l|i \F[i\l]e" :N+a%me') # THEN: The text in the QLineEdit should be the same as the input string with the invalid characters filtered # out. self.assertEqual(self.form.file_name_edit.text(), 'Invalid File Name') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_projectoreditform.py0000644000175000017500000001073612657640340025221 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Interface tests to test the openlp.core.ui.projector.editform.ProjectorEditForm() class and methods. """ import os from unittest import TestCase from openlp.core.common import Registry, Settings from openlp.core.lib.projector.db import Projector, ProjectorDB from openlp.core.ui import ProjectorEditForm from tests.functional import patch from tests.helpers.testmixin import TestMixin from tests.resources.projector.data import TEST_DB, TEST1_DATA, TEST2_DATA class TestProjectorEditForm(TestCase, TestMixin): """ Test the methods in the ProjectorEditForm class """ def setUp(self): """ Create the UI and setup necessary options :return: None """ self.build_settings() self.setup_application() Registry.create() with patch('openlp.core.lib.projector.db.init_url') as mocked_init_url: if os.path.exists(TEST_DB): os.unlink(TEST_DB) mocked_init_url.return_value = 'sqlite:///' + TEST_DB self.projectordb = ProjectorDB() self.projector_form = ProjectorEditForm(projectordb=self.projectordb) def tearDown(self): """ Close database session. Delete all C++ objects at end so we don't segfault. :return: None """ self.projectordb.session.close() del(self.projector_form) self.destroy_settings() def edit_form_add_projector_test(self): """ Test projector edit form with no parameters creates a new entry. :return: None """ # GIVEN: Mocked setup with patch('openlp.core.ui.projector.editform.QDialog.exec'): # WHEN: Calling edit form with no parameters self.projector_form.exec() item = self.projector_form.projector # THEN: Should be creating a new instance self.assertTrue(self.projector_form.new_projector, 'Projector edit form should be marked as a new entry') self.assertTrue((item.ip is None and item.name is None), 'Projector edit form should have a new Projector() instance to edit') def edit_form_edit_projector_test(self): """ Test projector edit form with existing projector entry :return: """ # GIVEN: Mocked setup with patch('openlp.core.ui.projector.editform.QDialog.exec'): # WHEN: Calling edit form with existing projector instance self.projector_form.exec(projector=Projector(**TEST1_DATA)) item = self.projector_form.projector # THEN: Should be editing an existing entry self.assertFalse(self.projector_form.new_projector, 'Projector edit form should be marked as existing entry') self.assertTrue((item.ip is TEST1_DATA['ip'] and item.name is TEST1_DATA['name']), 'Projector edit form should have TEST1_DATA() instance to edit') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_projectorsourceform.py0000644000175000017500000001502212661025625025563 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod: `tests.interfaces.openlp_core_ui.test_projectorsourceform` module Tests for the Projector Source Select form. """ import logging log = logging.getLogger(__name__) log.debug('test_projectorsourceform loaded') import os import time from unittest import TestCase from PyQt5.QtWidgets import QDialog from tests.functional import patch from tests.helpers.testmixin import TestMixin from tests.resources.projector.data import TEST_DB, TEST1_DATA from openlp.core.common import Registry, Settings from openlp.core.lib.projector.db import ProjectorDB, Projector from openlp.core.lib.projector.constants import PJLINK_DEFAULT_CODES, PJLINK_DEFAULT_SOURCES from openlp.core.ui.projector.sourceselectform import source_group, SourceSelectSingle def build_source_dict(): """ Builds a source dictionary to verify source_group returns a valid dictionary of dictionary items :returns: dictionary of valid PJLink source codes grouped by PJLink source group """ test_group = {} for group in PJLINK_DEFAULT_SOURCES.keys(): test_group[group] = {} for key in PJLINK_DEFAULT_CODES: test_group[key[0]][key] = PJLINK_DEFAULT_CODES[key] return test_group class ProjectorSourceFormTest(TestCase, TestMixin): """ Test class for the Projector Source Select form module """ @patch('openlp.core.lib.projector.db.init_url') def setUp(self, mocked_init_url): """ Set up anything necessary for all tests """ mocked_init_url.return_value = 'sqlite:///{}'.format(TEST_DB) self.build_settings() self.setup_application() Registry.create() # Do not try to recreate if we've already been created from a previous test if not hasattr(self, 'projectordb'): self.projectordb = ProjectorDB() # Retrieve/create a database record self.projector = self.projectordb.get_projector_by_ip(TEST1_DATA['ip']) if not self.projector: self.projectordb.add_projector(projector=Projector(**TEST1_DATA)) self.projector = self.projectordb.get_projector_by_ip(TEST1_DATA['ip']) self.projector.dbid = self.projector.id self.projector.db_item = self.projector def tearDown(self): """ Close database session. Delete all C++ objects at end so we don't segfault. """ self.projectordb.session.close() del(self.projectordb) del(self.projector) retries = 0 while retries < 5: try: if os.path.exists(TEST_DB): os.unlink(TEST_DB) break except: time.sleep(1) retries += 1 self.destroy_settings() def source_dict_test(self): """ Test that source list dict returned from sourceselectform module is a valid dict with proper entries """ # GIVEN: A list of inputs codes = [] for item in PJLINK_DEFAULT_CODES.keys(): codes.append(item) codes.sort() # WHEN: projector.sourceselectform.source_select() is called check = source_group(codes, PJLINK_DEFAULT_CODES) # THEN: return dictionary should match test dictionary self.assertEquals(check, build_source_dict(), "Source group dictionary should match test dictionary") @patch.object(QDialog, 'exec') def source_select_edit_button_test(self, mocked_qdialog): """ Test source select form edit has Ok, Cancel, Reset, and Revert buttons """ # GIVEN: Initial setup and mocks self.projector.source_available = ['11', ] self.projector.source = '11' # WHEN we create a source select widget and set edit=True select_form = SourceSelectSingle(parent=None, projectordb=self.projectordb) select_form.edit = True select_form.exec(projector=self.projector) projector = select_form.projector # THEN: Verify all 4 buttons are available self.assertEquals(len(select_form.button_box.buttons()), 4, 'SourceSelect dialog box should have "OK", "Cancel" ' '"Rest", and "Revert" buttons available') @patch.object(QDialog, 'exec') def source_select_noedit_button_test(self, mocked_qdialog): """ Test source select form view has OK and Cancel buttons only """ # GIVEN: Initial setup and mocks self.projector.source_available = ['11', ] self.projector.source = '11' # WHEN we create a source select widget and set edit=False select_form = SourceSelectSingle(parent=None, projectordb=self.projectordb) select_form.edit = False select_form.exec(projector=self.projector) projector = select_form.projector # THEN: Verify only 2 buttons are available self.assertEquals(len(select_form.button_box.buttons()), 2, 'SourceSelect dialog box should only have "OK" ' 'and "Cancel" buttons available') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_mainwindow.py0000644000175000017500000001213312657640340023625 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.mainwindow package. """ from unittest import TestCase from openlp.core.common import Registry from openlp.core.ui.mainwindow import MainWindow from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMainWindow(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.registry = Registry() self.setup_application() # Mock cursor busy/normal methods. self.app.set_busy_cursor = MagicMock() self.app.set_normal_cursor = MagicMock() self.app.args = [] Registry().register('application', self.app) # Mock classes and methods used by mainwindow. with patch('openlp.core.ui.mainwindow.SettingsForm') as mocked_settings_form, \ patch('openlp.core.ui.mainwindow.ImageManager') as mocked_image_manager, \ patch('openlp.core.ui.mainwindow.LiveController') as mocked_live_controller, \ patch('openlp.core.ui.mainwindow.PreviewController') as mocked_preview_controller, \ patch('openlp.core.ui.mainwindow.OpenLPDockWidget') as mocked_dock_widget, \ patch('openlp.core.ui.mainwindow.QtWidgets.QToolBox') as mocked_q_tool_box_class, \ patch('openlp.core.ui.mainwindow.QtWidgets.QMainWindow.addDockWidget') as mocked_add_dock_method, \ patch('openlp.core.ui.mainwindow.ServiceManager') as mocked_service_manager, \ patch('openlp.core.ui.mainwindow.ThemeManager') as mocked_theme_manager, \ patch('openlp.core.ui.mainwindow.ProjectorManager') as mocked_projector_manager, \ patch('openlp.core.ui.mainwindow.Renderer') as mocked_renderer: self.main_window = MainWindow() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.main_window def restore_current_media_manager_item_test(self): """ Regression test for bug #1152509. """ # GIVEN: Mocked Settings().value method. with patch('openlp.core.ui.mainwindow.Settings.value') as mocked_value: # save current plugin: True; current media plugin: 2 mocked_value.side_effect = [True, 2] # WHEN: Call the restore method. self.main_window.restore_current_media_manager_item() # THEN: The current widget should have been set. self.main_window.media_tool_box.setCurrentIndex.assert_called_with(2) def projector_manager_dock_locked_test(self): """ Projector Manager enable UI options - bug #1390702 """ # GIVEN: A mocked projector manager dock item: projector_dock = self.main_window.projector_manager_dock # WHEN: main_window.lock_panel action is triggered self.main_window.lock_panel.triggered.emit(True) # THEN: Projector manager dock should have been called with disable UI features projector_dock.setFeatures.assert_called_with(0) def projector_manager_dock_unlocked_test(self): """ Projector Manager disable UI options - bug #1390702 """ # GIVEN: A mocked projector manager dock item: projector_dock = self.main_window.projector_manager_dock # WHEN: main_window.lock_panel action is triggered self.main_window.lock_panel.triggered.emit(False) # THEN: Projector manager dock should have been called with enable UI features projector_dock.setFeatures.assert_called_with(7) OpenLP-2.4/tests/interfaces/openlp_core_ui/test_settings_form.py0000644000175000017500000002061512657640340024340 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.settingsform package. """ from unittest import TestCase from PyQt5 import QtCore, QtTest from openlp.core.common import Registry from openlp.core.ui import settingsform from openlp.core.lib import ScreenList from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin SCREEN = { 'primary': False, 'number': 1, 'size': QtCore.QRect(0, 0, 1024, 768) } class TestSettingsForm(TestCase, TestMixin): """ Test the PluginManager class """ def setUp(self): """ Some pre-test setup required. """ self.dummy1 = MagicMock() self.dummy2 = MagicMock() self.dummy3 = MagicMock() self.desktop = MagicMock() self.setup_application() self.desktop.primaryScreen.return_value = SCREEN['primary'] self.desktop.screenCount.return_value = SCREEN['number'] self.desktop.screenGeometry.return_value = SCREEN['size'] self.screens = ScreenList.create(self.desktop) Registry.create() self.form = settingsform.SettingsForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form def basic_cancel_test(self): """ Test running the settings form and pressing Cancel """ # GIVEN: An initial form # WHEN displaying the UI and pressing cancel with patch('PyQt5.QtWidgets.QDialog.reject') as mocked_reject: cancel_widget = self.form.button_box.button(self.form.button_box.Cancel) QtTest.QTest.mouseClick(cancel_widget, QtCore.Qt.LeftButton) # THEN the dialog reject should have been called assert mocked_reject.call_count == 1, 'The QDialog.reject should have been called' def basic_accept_test(self): """ Test running the settings form and pressing Ok """ # GIVEN: An initial form # WHEN displaying the UI and pressing Ok with patch('PyQt5.QtWidgets.QDialog.accept') as mocked_accept: ok_widget = self.form.button_box.button(self.form.button_box.Ok) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the dialog reject should have been called assert mocked_accept.call_count == 1, 'The QDialog.accept should have been called' def basic_register_test(self): """ Test running the settings form and adding a single function """ # GIVEN: An initial form add a register function self.form.register_post_process('function1') # WHEN displaying the UI and pressing Ok with patch('PyQt5.QtWidgets.QDialog.accept'): ok_widget = self.form.button_box.button(self.form.button_box.Ok) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the processing stack should be empty assert len(self.form.processes) == 0, 'The one requested process should have been removed from the stack' def register_multiple_functions_test(self): """ Test running the settings form and adding multiple functions """ # GIVEN: Registering a single function self.form.register_post_process('function1') # WHEN testing the processing stack # THEN the processing stack should have one item assert len(self.form.processes) == 1, 'The one requested process should have been added to the stack' # GIVEN: Registering a new function self.form.register_post_process('function2') # WHEN testing the processing stack # THEN the processing stack should have two items assert len(self.form.processes) == 2, 'The two requested processes should have been added to the stack' # GIVEN: Registering a process for the second time self.form.register_post_process('function1') # WHEN testing the processing stack # THEN the processing stack should still have two items assert len(self.form.processes) == 2, 'No new processes should have been added to the stack' def register_image_manager_trigger_test_one(self): """ Test the triggering of the image manager rebuild event from image background change """ # GIVEN: Three functions registered to be call Registry().register_function('images_config_updated', self.dummy1) Registry().register_function('config_screen_changed', self.dummy2) Registry().register_function('images_regenerate', self.dummy3) # WHEN: The Images have been changed and the form submitted self.form.register_post_process('images_config_updated') self.form.accept() # THEN: images_regenerate should have been added. assert self.dummy1.call_count == 1, 'dummy1 should have been called once' assert self.dummy2.call_count == 0, 'dummy2 should not have been called at all' assert self.dummy3.call_count == 1, 'dummy3 should have been called once' def register_image_manager_trigger_test_two(self): """ Test the triggering of the image manager rebuild event from screen dimension change """ # GIVEN: Three functions registered to be call Registry().register_function('images_config_updated', self.dummy1) Registry().register_function('config_screen_changed', self.dummy2) Registry().register_function('images_regenerate', self.dummy3) # WHEN: The Images have been changed and the form submitted self.form.register_post_process('config_screen_changed') self.form.accept() # THEN: images_regenerate should have been added. assert self.dummy1.call_count == 0, 'dummy1 should not have been called at all' assert self.dummy2.call_count == 1, 'dummy2 should have been called once' assert self.dummy3.call_count == 1, 'dummy3 should have been called once' def register_image_manager_trigger_test_three(self): """ Test the triggering of the image manager rebuild event from image background change and a change to the screen dimension. """ # GIVEN: Three functions registered to be call Registry().register_function('images_config_updated', self.dummy1) Registry().register_function('config_screen_changed', self.dummy2) Registry().register_function('images_regenerate', self.dummy3) # WHEN: The Images have been changed and the form submitted self.form.register_post_process('config_screen_changed') self.form.register_post_process('images_config_updated') self.form.accept() # THEN: Images_regenerate should have been added. assert self.dummy1.call_count == 1, 'dummy1 should have been called once' assert self.dummy2.call_count == 1, 'dummy2 should have been called once' assert self.dummy3.call_count == 1, 'dummy3 should have been called once' OpenLP-2.4/tests/interfaces/openlp_core_ui/test_servicenotedialog.py0000644000175000017500000000776412657640340025175 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ from unittest import TestCase from PyQt5 import QtCore, QtTest, QtWidgets from openlp.core.common import Registry from openlp.core.ui import servicenoteform from tests.interfaces import patch from tests.helpers.testmixin import TestMixin class TestStartNoteDialog(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = servicenoteform.ServiceNoteForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def basic_display_test(self): """ Test Service Note form functionality """ # GIVEN: A dialog with an empty text box self.form.text_edit.setPlainText('') # WHEN displaying the UI and pressing enter with patch('PyQt5.QtWidgets.QDialog.exec'): self.form.exec() ok_widget = self.form.button_box.button(self.form.button_box.Save) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the following input text is returned self.assertEqual(self.form.text_edit.toPlainText(), '', 'The returned text should be empty') # WHEN displaying the UI, having set the text and pressing enter text = 'OpenLP is the best worship software' self.form.text_edit.setPlainText(text) with patch('PyQt5.QtWidgets.QDialog.exec'): self.form.exec() ok_widget = self.form.button_box.button(self.form.button_box.Save) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the following text is returned self.assertEqual(self.form.text_edit.toPlainText(), text, 'The text originally entered should still be there') # WHEN displaying the UI, having set the text and pressing enter self.form.text_edit.setPlainText('') with patch('PyQt5.QtWidgets.QDialog.exec'): self.form.exec() self.form.text_edit.setPlainText(text) ok_widget = self.form.button_box.button(self.form.button_box.Save) QtTest.QTest.mouseClick(ok_widget, QtCore.Qt.LeftButton) # THEN the following text is returned self.assertEqual(self.form.text_edit.toPlainText(), text, 'The new text should be returned') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_projectormanager.py0000644000175000017500000001053412657640340025016 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Interface tests to test the themeManager class and related methods. """ import os from unittest import TestCase from openlp.core.common import Registry, Settings from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin from openlp.core.ui import ProjectorManager, ProjectorEditForm from openlp.core.lib.projector.db import Projector, ProjectorDB from tests.resources.projector.data import TEST_DB, TEST1_DATA, TEST2_DATA, TEST3_DATA class TestProjectorManager(TestCase, TestMixin): """ Test the functions in the ProjectorManager module """ def setUp(self): """ Create the UI and setup necessary options """ self.build_settings() self.setup_application() Registry.create() with patch('openlp.core.lib.projector.db.init_url') as mocked_init_url: if os.path.exists(TEST_DB): os.unlink(TEST_DB) mocked_init_url.return_value = 'sqlite:///%s' % TEST_DB self.projectordb = ProjectorDB() if not hasattr(self, 'projector_manager'): self.projector_manager = ProjectorManager(projectordb=self.projectordb) def tearDown(self): """ Remove test database. Delete all the C++ objects at the end so that we don't have a segfault. """ self.projectordb.session.close() self.destroy_settings() del self.projector_manager def bootstrap_initialise_test(self): """ Test initialize calls correct startup functions """ # WHEN: we call bootstrap_initialise self.projector_manager.bootstrap_initialise() # THEN: ProjectorDB is setup self.assertEqual(type(self.projector_manager.projectordb), ProjectorDB, 'Initialization should have created a ProjectorDB() instance') def bootstrap_post_set_up_test(self): """ Test post-initialize calls proper setups """ # GIVEN: setup mocks self.projector_manager._load_projectors = MagicMock() # WHEN: Call to initialize is run self.projector_manager.bootstrap_initialise() self.projector_manager.bootstrap_post_set_up() # THEN: verify calls to retrieve saved projectors and edit page initialized self.assertEqual(1, self.projector_manager._load_projectors.call_count, 'Initialization should have called load_projectors()') self.assertEqual(type(self.projector_manager.projector_form), ProjectorEditForm, 'Initialization should have created a Projector Edit Form') self.assertIs(self.projector_manager.projectordb, self.projector_manager.projector_form.projectordb, 'ProjectorEditForm should be using same ProjectorDB() instance as ProjectorManager') OpenLP-2.4/tests/interfaces/openlp_core_ui/test_shortcutlistform.py0000644000175000017500000002470412657640340025113 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.shortcutform package. """ from unittest import TestCase from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry from openlp.core.ui.shortcutlistform import ShortcutListForm from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestShortcutform(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = ShortcutListForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def adjust_button_test(self): """ Test the _adjust_button() method """ # GIVEN: A button. button = QtWidgets.QPushButton() checked = True enabled = True text = 'new!' # WHEN: Call the method. with patch('PyQt5.QtWidgets.QPushButton.setChecked') as mocked_check_method: self.form._adjust_button(button, checked, enabled, text) # THEN: The button should be changed. self.assertEqual(button.text(), text, 'The text should match.') mocked_check_method.assert_called_once_with(True) self.assertEqual(button.isEnabled(), enabled, 'The button should be disabled.') def space_key_press_event_test(self): """ Test the keyPressEvent when the spacebar was pressed """ # GIVEN: A key event that is a space mocked_event = MagicMock() mocked_event.key.return_value = QtCore.Qt.Key_Space # WHEN: The event is handled with patch.object(self.form, 'keyReleaseEvent') as mocked_key_release_event: self.form.keyPressEvent(mocked_event) # THEN: The key should be released mocked_key_release_event.assert_called_with(mocked_event) self.assertEqual(0, mocked_event.accept.call_count) def primary_push_button_checked_key_press_event_test(self): """ Test the keyPressEvent when the primary push button is checked """ # GIVEN: The primary push button is checked with patch.object(self.form, 'keyReleaseEvent') as mocked_key_release_event, \ patch.object(self.form.primary_push_button, 'isChecked') as mocked_is_checked: mocked_is_checked.return_value = True mocked_event = MagicMock() # WHEN: The event is handled self.form.keyPressEvent(mocked_event) # THEN: The key should be released mocked_key_release_event.assert_called_with(mocked_event) self.assertEqual(0, mocked_event.accept.call_count) def alternate_push_button_checked_key_press_event_test(self): """ Test the keyPressEvent when the alternate push button is checked """ # GIVEN: The primary push button is checked with patch.object(self.form, 'keyReleaseEvent') as mocked_key_release_event, \ patch.object(self.form.alternate_push_button, 'isChecked') as mocked_is_checked: mocked_is_checked.return_value = True mocked_event = MagicMock() # WHEN: The event is handled self.form.keyPressEvent(mocked_event) # THEN: The key should be released mocked_key_release_event.assert_called_with(mocked_event) self.assertEqual(0, mocked_event.accept.call_count) def escape_key_press_event_test(self): """ Test the keyPressEvent when the escape key was pressed """ # GIVEN: A key event that is an escape mocked_event = MagicMock() mocked_event.key.return_value = QtCore.Qt.Key_Escape # WHEN: The event is handled with patch.object(self.form, 'close') as mocked_close: self.form.keyPressEvent(mocked_event) # THEN: The key should be released mocked_event.accept.assert_called_with() mocked_close.assert_called_with() def on_default_radio_button_not_toggled_test(self): """ Test that the default radio button method exits early when the button is not toggled """ # GIVEN: A not-toggled custom radio button with patch.object(self.form, '_current_item_action') as mocked_current_item_action: # WHEN: The clicked method is called self.form.on_default_radio_button_clicked(False) # THEN: The method should exit early (i.e. the rest of the methods are not called) self.assertEqual(0, mocked_current_item_action.call_count) def on_default_radio_button_clicked_no_action_test(self): """ Test that nothing happens when an action hasn't been selected and you click the default radio button """ # GIVEN: Some mocked out methods, a current action, and some shortcuts with patch.object(self.form, '_current_item_action') as mocked_current_item_action, \ patch.object(self.form, '_action_shortcuts') as mocked_action_shortcuts: mocked_current_item_action.return_value = None # WHEN: The default radio button is clicked self.form.on_default_radio_button_clicked(True) # THEN: The method should exit early (i.e. the rest of the methods are not called) mocked_current_item_action.assert_called_with() self.assertEqual(0, mocked_action_shortcuts.call_count) def on_default_radio_button_clicked_test(self): """ Test that the values are copied across correctly when the default radio button is selected """ # GIVEN: Some mocked out methods, a current action, and some shortcuts with patch.object(self.form, '_current_item_action') as mocked_current_item_action, \ patch.object(self.form, '_action_shortcuts') as mocked_action_shortcuts, \ patch.object(self.form, 'refresh_shortcut_list') as mocked_refresh_shortcut_list, \ patch.object(self.form, 'get_shortcut_string') as mocked_get_shortcut_string, \ patch.object(self.form.primary_push_button, 'setText') as mocked_set_text: mocked_action = MagicMock() mocked_action.default_shortcuts = [QtCore.Qt.Key_Escape] mocked_current_item_action.return_value = mocked_action mocked_action_shortcuts.return_value = [QtCore.Qt.Key_Escape] mocked_get_shortcut_string.return_value = 'Esc' # WHEN: The default radio button is clicked self.form.on_default_radio_button_clicked(True) # THEN: The shorcuts should be copied across mocked_current_item_action.assert_called_with() mocked_action_shortcuts.assert_called_with(mocked_action) mocked_refresh_shortcut_list.assert_called_with() mocked_set_text.assert_called_with('Esc') def on_custom_radio_button_not_toggled_test(self): """ Test that the custom radio button method exits early when the button is not toggled """ # GIVEN: A not-toggled custom radio button with patch.object(self.form, '_current_item_action') as mocked_current_item_action: # WHEN: The clicked method is called self.form.on_custom_radio_button_clicked(False) # THEN: The method should exit early (i.e. the rest of the methods are not called) self.assertEqual(0, mocked_current_item_action.call_count) def on_custom_radio_button_clicked_test(self): """ Test that the values are copied across correctly when the custom radio button is selected """ # GIVEN: Some mocked out methods, a current action, and some shortcuts with patch.object(self.form, '_current_item_action') as mocked_current_item_action, \ patch.object(self.form, '_action_shortcuts') as mocked_action_shortcuts, \ patch.object(self.form, 'refresh_shortcut_list') as mocked_refresh_shortcut_list, \ patch.object(self.form, 'get_shortcut_string') as mocked_get_shortcut_string, \ patch.object(self.form.primary_push_button, 'setText') as mocked_set_text: mocked_action = MagicMock() mocked_current_item_action.return_value = mocked_action mocked_action_shortcuts.return_value = [QtCore.Qt.Key_Escape] mocked_get_shortcut_string.return_value = 'Esc' # WHEN: The custom radio button is clicked self.form.on_custom_radio_button_clicked(True) # THEN: The shorcuts should be copied across mocked_current_item_action.assert_called_with() mocked_action_shortcuts.assert_called_with(mocked_action) mocked_refresh_shortcut_list.assert_called_with() mocked_set_text.assert_called_with('Esc') OpenLP-2.4/tests/interfaces/__init__.py0000644000175000017500000000321412657640340017147 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import sys if sys.version_info[1] >= 3: from unittest.mock import patch, MagicMock else: from mock import patch, MagicMock OpenLP-2.4/tests/interfaces/openlp_core_common/0000755000175000017500000000000012657640341020714 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_core_common/__init__.py0000644000175000017500000000301012657640340023016 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_core_common/test_historycombobox.py0000644000175000017500000000530312657640340025557 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module to test the :mod:`~openlp.core.common.historycombobox` module. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.core.common import HistoryComboBox from tests.helpers.testmixin import TestMixin from tests.interfaces import MagicMock, patch class TestHistoryComboBox(TestCase, TestMixin): def setUp(self): """ Some pre-test setup required. """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.combo = HistoryComboBox(self.main_window) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.combo del self.main_window def get_items_test(self): """ Test the getItems() method """ # GIVEN: The combo. # WHEN: Add two items. self.combo.addItem('test1') self.combo.addItem('test2') # THEN: The list of items should contain both strings. self.assertEqual(self.combo.getItems(), ['test1', 'test2']) OpenLP-2.4/tests/interfaces/openlp_plugins/0000755000175000017500000000000012657640341020075 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/__init__.py0000644000175000017500000000301012657640340022177 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/remotes/0000755000175000017500000000000012657640341021553 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/remotes/__init__.py0000644000175000017500000000301012657640340023655 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/media/0000755000175000017500000000000012657640341021154 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/media/__init__.py0000644000175000017500000000301012657640340023256 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/media/forms/0000755000175000017500000000000012657640341022302 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/media/forms/__init__.py0000644000175000017500000000301012657640340024404 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/media/forms/test_mediaclipselectorform.py0000644000175000017500000002106312657640340030270 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module to test the MediaClipSelectorForm. """ import os from unittest import TestCase, SkipTest from openlp.core.ui.media.vlcplayer import get_vlc if os.name == 'nt' and not get_vlc(): raise SkipTest('Windows without VLC, skipping this test since it cannot run without vlc') from PyQt5 import QtTest, QtCore, QtWidgets from openlp.core.common import Registry from openlp.plugins.media.forms.mediaclipselectorform import MediaClipSelectorForm from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMediaClipSelectorForm(TestCase, TestMixin): """ Test the EditCustomSlideForm. """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) # Mock VLC so we don't actually use it self.vlc_patcher = patch('openlp.plugins.media.forms.mediaclipselectorform.get_vlc') self.vlc_patcher.start() Registry().register('application', self.app) # Mock the media item self.mock_media_item = MagicMock() # create form to test self.form = MediaClipSelectorForm(self.mock_media_item, self.main_window, None) mock_media_state_wait = MagicMock() mock_media_state_wait.return_value = True self.form.media_state_wait = mock_media_state_wait self.form.application.set_busy_cursor = MagicMock() self.form.application.set_normal_cursor = MagicMock() self.form.find_optical_devices = MagicMock() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form self.vlc_patcher.stop() del self.main_window def basic_test(self): """ Test if the dialog is correctly set up. """ # GIVEN: A mocked QDialog.exec() method with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: # WHEN: Show the dialog. self.form.exec() # THEN: The media path should be empty. assert self.form.media_path_combobox.currentText() == '', 'There should not be any text in the media path.' def click_load_button_test(self): """ Test that the correct function is called when load is clicked, and that it behaves as expected. """ # GIVEN: Mocked methods. with patch('openlp.plugins.media.forms.mediaclipselectorform.critical_error_message_box') as \ mocked_critical_error_message_box,\ patch('openlp.plugins.media.forms.mediaclipselectorform.os.path.exists') as mocked_os_path_exists,\ patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: self.form.exec() # WHEN: The load button is clicked with no path set QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton) # THEN: we should get an error mocked_critical_error_message_box.assert_called_with(message='No path was given') # WHEN: The load button is clicked with a non-existing path mocked_os_path_exists.return_value = False self.form.media_path_combobox.insertItem(0, '/non-existing/test-path.test') self.form.media_path_combobox.setCurrentIndex(0) QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton) # THEN: we should get an error assert self.form.media_path_combobox.currentText() == '/non-existing/test-path.test',\ 'The media path should be the given one.' mocked_critical_error_message_box.assert_called_with(message='Given path does not exists') # WHEN: The load button is clicked with a mocked existing path mocked_os_path_exists.return_value = True self.form.vlc_media_player = MagicMock() self.form.vlc_media_player.play.return_value = -1 self.form.media_path_combobox.insertItem(0, '/existing/test-path.test') self.form.media_path_combobox.setCurrentIndex(0) QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton) # THEN: we should get an error assert self.form.media_path_combobox.currentText() == '/existing/test-path.test',\ 'The media path should be the given one.' mocked_critical_error_message_box.assert_called_with(message='VLC player failed playing the media') def title_combobox_test(self): """ Test the behavior when the title combobox is updated """ # GIVEN: Mocked methods and some entries in the title combobox. with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: self.form.exec() self.form.vlc_media_player.get_length.return_value = 1000 self.form.audio_tracks_combobox.itemData = MagicMock() self.form.subtitle_tracks_combobox.itemData = MagicMock() self.form.audio_tracks_combobox.itemData.return_value = None self.form.subtitle_tracks_combobox.itemData.return_value = None self.form.titles_combo_box.insertItem(0, 'Test Title 0') self.form.titles_combo_box.insertItem(1, 'Test Title 1') # WHEN: There exists audio and subtitle tracks and the index is updated. self.form.vlc_media_player.audio_get_track_description.return_value = [(-1, b'Disabled'), (0, b'Audio Track 1')] self.form.vlc_media_player.video_get_spu_description.return_value = [(-1, b'Disabled'), (0, b'Subtitle Track 1')] self.form.titles_combo_box.setCurrentIndex(1) # THEN: The subtitle and audio track comboboxes should be updated and get signals and call itemData. self.form.audio_tracks_combobox.itemData.assert_any_call(0) self.form.audio_tracks_combobox.itemData.assert_any_call(1) self.form.subtitle_tracks_combobox.itemData.assert_any_call(0) def click_save_button_test(self): """ Test that the correct function is called when save is clicked, and that it behaves as expected. """ # GIVEN: Mocked methods. with patch('openlp.plugins.media.forms.mediaclipselectorform.critical_error_message_box') as \ mocked_critical_error_message_box,\ patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: self.form.exec() # WHEN: The save button is clicked with a NoneType in start_time_ms or end_time_ms self.form.accept() # THEN: we should get an error message mocked_critical_error_message_box.assert_called_with('DVD not loaded correctly', 'The DVD was not loaded correctly, ' 'please re-load and try again.') OpenLP-2.4/tests/interfaces/openlp_plugins/bibles/0000755000175000017500000000000012657640341021335 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/bibles/test_lib_manager.py0000644000175000017500000001222212657640340025204 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the Bible Manager class and related methods. """ from unittest import TestCase from openlp.core.common import Registry, Settings from openlp.plugins.bibles.lib import BibleManager, LanguageSelection from tests.interfaces import MagicMock, patch from tests.utils.constants import TEST_RESOURCES_PATH from tests.helpers.testmixin import TestMixin class TestBibleManager(TestCase, TestMixin): def setUp(self): """ Set up the environment for testing bible queries with 1 Timothy 3 """ self.build_settings() Registry.create() Registry().register('service_list', MagicMock()) Registry().register('application', MagicMock()) bible_settings = { 'bibles/proxy name': '', 'bibles/db type': 'sqlite', 'bibles/book name language': LanguageSelection.Bible, 'bibles/verse separator': '', 'bibles/range separator': '', 'bibles/list separator': '', 'bibles/end separator': '', } Settings().extend_default_settings(bible_settings) with patch('openlp.core.common.applocation.Settings') as mocked_class, \ patch('openlp.core.common.AppLocation.get_section_data_path') as mocked_get_section_data_path, \ patch('openlp.core.common.AppLocation.get_files') as mocked_get_files: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_files() mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = False mocked_get_files.return_value = ["tests.sqlite"] mocked_get_section_data_path.return_value = TEST_RESOURCES_PATH + "/bibles" self.manager = BibleManager(MagicMock()) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.manager self.destroy_settings() def get_books_test(self): """ Test the get_books method """ # GIVEN given a bible in the bible manager # WHEN asking for the books of the bible books = self.manager.get_books('tests') # THEN a list of books should be returned self.assertEqual(66, len(books), 'There should be 66 books in the bible') def get_book_by_id_test(self): """ Test the get_book_by_id method """ # GIVEN given a bible in the bible manager # WHEN asking for the book of the bible book = self.manager.get_book_by_id('tests', 54) # THEN a book should be returned self.assertEqual('1 Timothy', book.name, '1 Timothy should have been returned from the bible') def get_chapter_count_test(self): """ Test the get_chapter_count method """ # GIVEN given a bible in the bible manager # WHEN asking for the chapters in a book of the bible book = self.manager.get_book_by_id('tests', 54) chapter = self.manager.get_chapter_count('tests', book) # THEN the chapter count should be returned self.assertEqual(6, chapter, '1 Timothy should have 6 chapters returned from the bible') def get_verse_count_by_book_ref_id_test(self): """ Test the get_verse_count_by_book_ref_id method """ # GIVEN given a bible in the bible manager # WHEN asking for the number of verses in a book of the bible verses = self.manager.get_verse_count_by_book_ref_id('tests', 54, 3) # THEN the chapter count should be returned self.assertEqual(16, verses, '1 Timothy v3 should have 16 verses returned from the bible') OpenLP-2.4/tests/interfaces/openlp_plugins/bibles/test_lib_parse_reference.py0000644000175000017500000001352612657640340026732 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Bibles plugin. """ from unittest import TestCase from tests.interfaces import MagicMock, patch from openlp.core.common import Registry, Settings from openlp.plugins.bibles.lib import BibleManager, parse_reference, LanguageSelection from tests.utils.constants import TEST_RESOURCES_PATH from tests.helpers.testmixin import TestMixin class TestBibleManager(TestCase, TestMixin): def setUp(self): """ Set up the environment for testing bible parse reference """ self.build_settings() Registry.create() Registry().register('service_list', MagicMock()) Registry().register('application', MagicMock()) bible_settings = { 'bibles/proxy name': '', 'bibles/db type': 'sqlite', 'bibles/book name language': LanguageSelection.Bible, 'bibles/verse separator': '', 'bibles/range separator': '', 'bibles/list separator': '', 'bibles/end separator': '', } Settings().extend_default_settings(bible_settings) with patch('openlp.core.common.applocation.Settings') as mocked_class, \ patch('openlp.core.common.AppLocation.get_section_data_path') as mocked_get_section_data_path, \ patch('openlp.core.common.AppLocation.get_files') as mocked_get_files: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_files() mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = False mocked_get_files.return_value = ["tests.sqlite"] mocked_get_section_data_path.return_value = TEST_RESOURCES_PATH + "/bibles" self.manager = BibleManager(MagicMock()) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.manager self.destroy_settings() def parse_reference_one_test(self): """ Test the parse_reference method with 1 Timothy 1 """ # GIVEN given a bible in the bible manager # WHEN asking to parse the bible reference results = parse_reference('1 Timothy 1', self.manager.db_cache['tests'], MagicMock(), 54) # THEN a verse array should be returned self.assertEqual([(54, 1, 1, -1)], results, "The bible verses should matches the expected results") def parse_reference_two_test(self): """ Test the parse_reference method with 1 Timothy 1:1-2 """ # GIVEN given a bible in the bible manager # WHEN asking to parse the bible reference results = parse_reference('1 Timothy 1:1-2', self.manager.db_cache['tests'], MagicMock(), 54) # THEN a verse array should be returned self.assertEqual([(54, 1, 1, 2)], results, "The bible verses should matches the expected results") def parse_reference_three_test(self): """ Test the parse_reference method with 1 Timothy 1:1-2 """ # GIVEN given a bible in the bible manager # WHEN asking to parse the bible reference results = parse_reference('1 Timothy 1:1-2:1', self.manager.db_cache['tests'], MagicMock(), 54) # THEN a verse array should be returned self.assertEqual([(54, 1, 1, -1), (54, 2, 1, 1)], results, "The bible verses should match the expected results") def parse_reference_four_test(self): """ Test the parse_reference method with non existence book """ # GIVEN given a bible in the bible manager # WHEN asking to parse the bible reference results = parse_reference('Raoul 1', self.manager.db_cache['tests'], MagicMock()) # THEN a verse array should be returned self.assertEqual(False, results, "The bible Search should return False") def parse_reference_five_test(self): """ Test the parse_reference method with 1 Timothy 1:3-end """ # GIVEN given a bible in the bible manager # WHEN asking to parse the bible reference results = parse_reference('1 Timothy 1:3-end', self.manager.db_cache['tests'], MagicMock(), 54) # THEN a verse array should be returned self.assertEqual([(54, 1, 3, -1)], results, "The bible verses should matches the expected results") OpenLP-2.4/tests/interfaces/openlp_plugins/bibles/test_lib_http.py0000644000175000017500000001474012657640340024560 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugin.bible.lib.https package. """ from unittest import TestCase from openlp.core.common import Registry from openlp.plugins.bibles.lib.http import BGExtract, CWExtract, BSExtract from tests.interfaces import MagicMock class TestBibleHTTP(TestCase): def setUp(self): """ Set up the Registry """ Registry.create() Registry().register('service_list', MagicMock()) Registry().register('application', MagicMock()) def bible_gateway_extract_books_test(self): """ Test the Bible Gateway retrieval of book list for NIV bible """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract() # WHEN: The Books list is called books = handler.get_books_from_http('NIV') # THEN: We should get back a valid service item assert len(books) == 66, 'The bible should not have had any books added or removed' def bible_gateway_extract_books_support_redirect_test(self): """ Test the Bible Gateway retrieval of book list for DN1933 bible with redirect (bug 1251437) """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract() # WHEN: The Books list is called books = handler.get_books_from_http('DN1933') # THEN: We should get back a valid service item assert len(books) == 66, 'This bible should have 66 books' def bible_gateway_extract_verse_test(self): """ Test the Bible Gateway retrieval of verse list for NIV bible John 3 """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract() # WHEN: The Books list is called results = handler.get_bible_chapter('NIV', 'John', 3) # THEN: We should get back a valid service item assert len(results.verse_list) == 36, 'The book of John should not have had any verses added or removed' def bible_gateway_extract_verse_nkjv_test(self): """ Test the Bible Gateway retrieval of verse list for NKJV bible John 3 """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract() # WHEN: The Books list is called results = handler.get_bible_chapter('NKJV', 'John', 3) # THEN: We should get back a valid service item assert len(results.verse_list) == 36, 'The book of John should not have had any verses added or removed' def crosswalk_extract_books_test(self): """ Test Crosswalk retrieval of book list for NIV bible """ # GIVEN: A new Bible Gateway extraction class handler = CWExtract() # WHEN: The Books list is called books = handler.get_books_from_http('niv') # THEN: We should get back a valid service item assert len(books) == 66, 'The bible should not have had any books added or removed' def crosswalk_extract_verse_test(self): """ Test Crosswalk retrieval of verse list for NIV bible John 3 """ # GIVEN: A new Bible Gateway extraction class handler = CWExtract() # WHEN: The Books list is called results = handler.get_bible_chapter('niv', 'john', 3) # THEN: We should get back a valid service item assert len(results.verse_list) == 36, 'The book of John should not have had any verses added or removed' def bibleserver_get_bibles_test(self): """ Test getting list of bibles from BibleServer.com """ # GIVEN: A new Bible Server extraction class handler = BSExtract() # WHEN: downloading bible list from bibleserver bibles = handler.get_bibles_from_http() # THEN: The list should not be None, and some known bibles should be there self.assertIsNotNone(bibles) self.assertIn(('New Int. Readers Version', 'NIRV', 'en'), bibles) self.assertIn(('СвÑщенное ПиÑание, ВоÑточный перевод', 'CARS', 'ru'), bibles) def biblegateway_get_bibles_test(self): """ Test getting list of bibles from BibleGateway.com """ # GIVEN: A new Bible Gateway extraction class handler = BGExtract() # WHEN: downloading bible list from Crosswalk bibles = handler.get_bibles_from_http() # THEN: The list should not be None, and some known bibles should be there self.assertIsNotNone(bibles) self.assertIn(('Holman Christian Standard Bible', 'HCSB', 'en'), bibles) def crosswalk_get_bibles_test(self): """ Test getting list of bibles from Crosswalk.com """ # GIVEN: A new Crosswalk extraction class handler = CWExtract() # WHEN: downloading bible list from Crosswalk bibles = handler.get_bibles_from_http() # THEN: The list should not be None, and some known bibles should be there self.assertIsNotNone(bibles) self.assertIn(('Giovanni Diodati 1649 (Italian)', 'gdb', 'it'), bibles) OpenLP-2.4/tests/interfaces/openlp_plugins/bibles/__init__.py0000644000175000017500000000301012657640340023437 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/bibles/forms/0000755000175000017500000000000012657640341022463 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/bibles/forms/test_bibleimportform.py0000644000175000017500000000706712657640340027301 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugins.bibles.forms.bibleimportform package. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.plugins.bibles.forms.bibleimportform import BibleImportForm, WebDownload from tests.helpers.testmixin import TestMixin from tests.functional import MagicMock, patch class TestBibleImportForm(TestCase, TestMixin): """ Test the BibleImportForm class """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = BibleImportForm(self.main_window, MagicMock(), MagicMock()) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window @patch('openlp.plugins.bibles.forms.bibleimportform.CWExtract.get_bibles_from_http') @patch('openlp.plugins.bibles.forms.bibleimportform.BGExtract.get_bibles_from_http') @patch('openlp.plugins.bibles.forms.bibleimportform.BSExtract.get_bibles_from_http') def on_web_update_button_clicked_test(self, mocked_bsextract, mocked_bgextract, mocked_cwextract): """ Test that on_web_update_button_clicked handles problems correctly """ # GIVEN: Some mocked GUI components and mocked bibleextractors self.form.web_source_combo_box = MagicMock() self.form.web_translation_combo_box = MagicMock() self.form.web_update_button = MagicMock() self.form.web_progress_bar = MagicMock() mocked_bsextract.return_value = None mocked_bgextract.return_value = None mocked_cwextract.return_value = None # WHEN: Running on_web_update_button_clicked self.form.on_web_update_button_clicked() # THEN: The webbible list should still be empty self.assertEqual(self.form.web_bible_list, {}, 'The webbible list should be empty') OpenLP-2.4/tests/interfaces/openlp_plugins/songs/0000755000175000017500000000000012657640341021226 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/songs/__init__.py0000644000175000017500000000301012657640340023330 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/0000755000175000017500000000000012657640341022354 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/test_authorsform.py0000644000175000017500000001317512657640340026344 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugins.songs.forms.authorsform package. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.plugins.songs.forms.authorsform import AuthorsForm from tests.helpers.testmixin import TestMixin class TestAuthorsForm(TestCase, TestMixin): """ Test the AuthorsForm class """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = AuthorsForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def ui_defaults_test(self): """ Test the AuthorForm defaults are correct """ self.assertEqual(self.form.first_name_edit.text(), '', 'The first name edit should be empty') self.assertEqual(self.form.last_name_edit.text(), '', 'The last name edit should be empty') self.assertEqual(self.form.display_edit.text(), '', 'The display name edit should be empty') def get_first_name_property_test(self): """ Test that getting the first name property on the AuthorForm works correctly """ # GIVEN: A first name to set first_name = 'John' # WHEN: The first_name_edit's text is set self.form.first_name_edit.setText(first_name) # THEN: The first_name property should have the correct value self.assertEqual(self.form.first_name, first_name, 'The first name property should be correct') def set_first_name_property_test(self): """ Test that setting the first name property on the AuthorForm works correctly """ # GIVEN: A first name to set first_name = 'James' # WHEN: The first_name property is set self.form.first_name = first_name # THEN: The first_name_edit should have the correct value self.assertEqual(self.form.first_name_edit.text(), first_name, 'The first name should be set correctly') def get_last_name_property_test(self): """ Test that getting the last name property on the AuthorForm works correctly """ # GIVEN: A last name to set last_name = 'Smith' # WHEN: The last_name_edit's text is set self.form.last_name_edit.setText(last_name) # THEN: The last_name property should have the correct value self.assertEqual(self.form.last_name, last_name, 'The last name property should be correct') def set_last_name_property_test(self): """ Test that setting the last name property on the AuthorForm works correctly """ # GIVEN: A last name to set last_name = 'Potter' # WHEN: The last_name property is set self.form.last_name = last_name # THEN: The last_name_edit should have the correct value self.assertEqual(self.form.last_name_edit.text(), last_name, 'The last name should be set correctly') def get_display_name_property_test(self): """ Test that getting the display name property on the AuthorForm works correctly """ # GIVEN: A display name to set display_name = 'John' # WHEN: The display_name_edit's text is set self.form.display_edit.setText(display_name) # THEN: The display_name property should have the correct value self.assertEqual(self.form.display_name, display_name, 'The display name property should be correct') def set_display_name_property_test(self): """ Test that setting the display name property on the AuthorForm works correctly """ # GIVEN: A display name to set display_name = 'John' # WHEN: The display_name property is set self.form.display_name = display_name # THEN: The display_name_edit should have the correct value self.assertEqual(self.form.display_edit.text(), display_name, 'The display name should be set correctly') OpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/test_topicsform.py0000644000175000017500000000663412657640340026162 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugins.songs.forms.topicsform package. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.plugins.songs.forms.topicsform import TopicsForm from tests.helpers.testmixin import TestMixin class TestTopicsForm(TestCase, TestMixin): """ Test the TopicsForm class """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = TopicsForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def ui_defaults_test(self): """ Test the TopicsForm defaults are correct """ self.assertEqual(self.form.name_edit.text(), '', 'The first name edit should be empty') def get_name_property_test(self): """ Test that getting the name property on the TopicsForm works correctly """ # GIVEN: A topic name to set topic_name = 'Salvation' # WHEN: The name_edit's text is set self.form.name_edit.setText(topic_name) # THEN: The name property should have the correct value self.assertEqual(self.form.name, topic_name, 'The name property should be correct') def set_name_property_test(self): """ Test that setting the name property on the TopicsForm works correctly """ # GIVEN: A topic name to set topic_name = 'James' # WHEN: The name property is set self.form.name = topic_name # THEN: The name_edit should have the correct value self.assertEqual(self.form.name_edit.text(), topic_name, 'The topic name should be set correctly') OpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/__init__.py0000644000175000017500000000301012657640340024456 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/test_editsongform.py0000644000175000017500000001606212657640340026471 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugins.songs.forms.editsongform package. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.core.common.uistrings import UiStrings from openlp.plugins.songs.forms.editsongform import EditSongForm from tests.interfaces import MagicMock from tests.helpers.testmixin import TestMixin class TestEditSongForm(TestCase, TestMixin): """ Test the EditSongForm class """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) Registry().register('theme_manager', MagicMock()) self.form = EditSongForm(MagicMock(), self.main_window, MagicMock()) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def ui_defaults_test(self): """ Test that the EditSongForm defaults are correct """ self.assertFalse(self.form.verse_edit_button.isEnabled(), 'The verse edit button should not be enabled') self.assertFalse(self.form.verse_delete_button.isEnabled(), 'The verse delete button should not be enabled') self.assertFalse(self.form.author_remove_button.isEnabled(), 'The author remove button should not be enabled') self.assertFalse(self.form.topic_remove_button.isEnabled(), 'The topic remove button should not be enabled') def is_verse_edit_form_executed_test(self): pass def verse_order_no_warning_test(self): """ Test if the verse order warning is not shown """ # GIVEN: Mocked methods. given_verse_order = 'V1 V2' self.form.verse_list_widget.rowCount = MagicMock(return_value=2) # Mock out the verse. first_verse = MagicMock() first_verse.data.return_value = 'V1' second_verse = MagicMock() second_verse.data.return_value = 'V2' self.form.verse_list_widget.item = MagicMock(side_effect=[first_verse, second_verse]) self.form._extract_verse_order = MagicMock(return_value=given_verse_order.split()) # WHEN: Call the method. self.form.on_verse_order_text_changed(given_verse_order) # THEN: No text should be shown. assert self.form.warning_label.text() == '', 'There should be no warning.' def verse_order_incomplete_warning_test(self): """ Test if the verse-order-incomple warning is shown """ # GIVEN: Mocked methods. given_verse_order = 'V1' self.form.verse_list_widget.rowCount = MagicMock(return_value=2) # Mock out the verse. first_verse = MagicMock() first_verse.data.return_value = 'V1' second_verse = MagicMock() second_verse.data.return_value = 'V2' self.form.verse_list_widget.item = MagicMock(side_effect=[first_verse, second_verse]) self.form._extract_verse_order = MagicMock(return_value=[given_verse_order]) # WHEN: Call the method. self.form.on_verse_order_text_changed(given_verse_order) # THEN: The verse-order-incomplete text should be shown. assert self.form.warning_label.text() == self.form.not_all_verses_used_warning, \ 'The verse-order-incomplete warning should be shown.' def bug_1170435_test(self): """ Regression test for bug 1170435 (test if "no verse order" message is shown) """ # GIVEN: Mocked methods. given_verse_order = '' self.form.verse_list_widget.rowCount = MagicMock(return_value=1) # Mock out the verse. (We want a verse type to be returned). mocked_verse = MagicMock() mocked_verse.data.return_value = 'V1' self.form.verse_list_widget.item = MagicMock(return_value=mocked_verse) self.form._extract_verse_order = MagicMock(return_value=[]) self.form.verse_order_edit.text = MagicMock(return_value=given_verse_order) # WHEN: Call the method. self.form.on_verse_order_text_changed(given_verse_order) # THEN: The no-verse-order message should be shown. assert self.form.warning_label.text() == self.form.no_verse_order_entered_warning, \ 'The no-verse-order message should be shown.' def bug_1404967_test(self): """ Test for CCLI label showing correct text """ # GIVEN; Mocked methods form = self.form # THEN: CCLI label should be CCLI song label self.assertNotEquals(form.ccli_label.text(), UiStrings().CCLINumberLabel, 'CCLI label should not be "{}"'.format(UiStrings().CCLINumberLabel)) self.assertEquals(form.ccli_label.text(), UiStrings().CCLISongNumberLabel, 'CCLI label text should be "{}"'.format(UiStrings().CCLISongNumberLabel)) def verse_order_lowercase_test(self): """ Test that entering a verse order in lowercase automatically converts to uppercase """ # GIVEN; Mocked methods form = self.form # WHEN: We enter a verse order in lowercase form.verse_order_edit.setText('v1 v2 c1 v3 c1 v4 c1') # Need to manually trigger this method as it is only triggered by manual input form.on_verse_order_text_changed(form.verse_order_edit.text()) # THEN: The verse order should be converted to uppercase self.assertEqual(form.verse_order_edit.text(), 'V1 V2 C1 V3 C1 V4 C1') OpenLP-2.4/tests/interfaces/openlp_plugins/songs/forms/test_editverseform.py0000644000175000017500000001217712657640340026652 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.plugins.songs.forms.editverseform package. """ from unittest import TestCase from PyQt5 import QtCore, QtTest, QtWidgets from openlp.core.common import Registry from openlp.plugins.songs.forms.editverseform import EditVerseForm from tests.helpers.testmixin import TestMixin class TestEditVerseForm(TestCase, TestMixin): """ Test the EditVerseForm class """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = EditVerseForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def ui_defaults_test(self): """ Test the EditVerseForm defaults are correct """ # GIVEN: An EditVerseForm instance # WHEN: The form is shown # THEN: The default value is correct self.assertEqual(self.form.verse_text_edit.toPlainText(), '', 'The verse edit box is empty.') def type_verse_text_tests(self): """ Test that typing into the verse text edit box returns the correct text """ # GIVEN: An instance of the EditVerseForm and some text to type text = 'Amazing Grace, how sweet the sound!' # WHEN: Some verse text is typed into the text edit QtTest.QTest.keyClicks(self.form.verse_text_edit, text) # THEN: The verse text edit should have the verse text in it self.assertEqual(text, self.form.verse_text_edit.toPlainText(), 'The verse text edit should have the typed out verse') def insert_verse_test(self): """ Test that clicking the insert button inserts the correct verse marker """ # GIVEN: An instance of the EditVerseForm # WHEN: The Insert button is clicked QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton) # THEN: The verse text edit should have a Verse:1 in it self.assertIn('---[Verse:1]---', self.form.verse_text_edit.toPlainText(), 'The verse text edit should have a verse marker') def insert_verse_2_test(self): """ Test that clicking the up button on the spin box and then clicking the insert button inserts the correct marker """ # GIVEN: An instance of the EditVerseForm # WHEN: The spin button and then the Insert button are clicked QtTest.QTest.keyClick(self.form.verse_number_box, QtCore.Qt.Key_Up) QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton) # THEN: The verse text edit should have a Verse:1 in it self.assertIn('---[Verse:2]---', self.form.verse_text_edit.toPlainText(), 'The verse text edit should have a "Verse 2" marker') def insert_chorus_test(self): """ Test that clicking the verse type combo box and then clicking the insert button inserts the correct marker """ # GIVEN: An instance of the EditVerseForm # WHEN: The verse type combo box and then the Insert button are clicked QtTest.QTest.keyClick(self.form.verse_type_combo_box, QtCore.Qt.Key_Down) QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton) # THEN: The verse text edit should have a Chorus:1 in it self.assertIn('---[Chorus:1]---', self.form.verse_text_edit.toPlainText(), 'The verse text edit should have a "Chorus 1" marker') OpenLP-2.4/tests/interfaces/openlp_plugins/custom/0000755000175000017500000000000012657640341021407 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/custom/__init__.py0000644000175000017500000000301012657640340023511 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/custom/forms/0000755000175000017500000000000012657640341022535 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_plugins/custom/forms/test_customslideform.py0000644000175000017500000000712212657640340027366 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module to test the EditCustomSlideForm. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry from openlp.plugins.custom.forms.editcustomslideform import EditCustomSlideForm from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestEditCustomSlideForm(TestCase, TestMixin): """ Test the EditCustomSlideForm. """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.form = EditCustomSlideForm() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def basic_test(self): """ Test if the dialog is correctly set up. """ # GIVEN: A mocked QDialog.exec() method with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: # WHEN: Show the dialog. self.form.exec() # THEN: The dialog should be empty. assert self.form.slide_text_edit.toPlainText() == '', 'There should not be any text in the text editor.' def set_text_test(self): """ Test the set_text() method. """ # GIVEN: A mocked QDialog.exec() method with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: mocked_set_focus = MagicMock() self.form.slide_text_edit.setFocus = mocked_set_focus wanted_text = 'THIS TEXT SHOULD BE SHOWN.' # WHEN: Show the dialog and set the text. self.form.exec() self.form.set_text(wanted_text) # THEN: The dialog should show the text. assert self.form.slide_text_edit.toPlainText() == wanted_text, \ 'The text editor should show the correct text.' # THEN: The dialog should have focus. mocked_set_focus.assert_called_with() OpenLP-2.4/tests/interfaces/openlp_plugins/custom/forms/__init__.py0000644000175000017500000000301012657640340024637 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_plugins/custom/forms/test_customform.py0000644000175000017500000001303312657640340026343 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module to test the EditCustomForm. """ from unittest import TestCase from PyQt5 import QtTest, QtCore, QtWidgets from openlp.core.common import Registry # TODO: FIXME: Import needed due to horrible bad imports from openlp.plugins.custom.lib.mediaitem import CustomMediaItem from openlp.plugins.custom.forms.editcustomform import EditCustomForm from tests.interfaces import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestEditCustomForm(TestCase, TestMixin): """ Test the EditCustomForm. """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) media_item = MagicMock() manager = MagicMock() self.form = EditCustomForm(media_item, self.main_window, manager) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.form del self.main_window def load_themes_test(self): """ Test the load_themes() method. """ # GIVEN: A theme list. theme_list = ['First Theme', 'Second Theme'] # WHEN: Show the dialog and add pass a theme list. self.form.load_themes(theme_list) # THEN: There should be three items in the combo box. assert self.form.theme_combo_box.count() == 3, 'There should be three items (themes) in the combo box.' def load_custom_test(self): """ Test the load_custom() method. """ # WHEN: Create a new custom item. self.form.load_custom(0) # THEN: The line edits should not contain any text. self.assertEqual(self.form.title_edit.text(), '', 'The title edit should be empty') self.assertEqual(self.form.credit_edit.text(), '', 'The credit edit should be empty') def on_add_button_clicked_test(self): """ Test the on_add_button_clicked_test method / add_button button. """ # GIVEN: A mocked QDialog.exec() method with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec: # WHEN: Add a new slide. QtTest.QTest.mouseClick(self.form.add_button, QtCore.Qt.LeftButton) # THEN: One slide should be added. assert self.form.slide_list_view.count() == 1, 'There should be one slide added.' def validate_not_valid_part1_test(self): """ Test the _validate() method. """ # GIVEN: Mocked methods. with patch('openlp.plugins.custom.forms.editcustomform.critical_error_message_box') as \ mocked_critical_error_message_box: self.form.title_edit.displayText = MagicMock(return_value='') mocked_setFocus = MagicMock() self.form.title_edit.setFocus = mocked_setFocus # WHEN: Call the method. result = self.form._validate() # THEN: The validate method should have returned False. assert not result, 'The _validate() method should have retured False' mocked_setFocus.assert_called_with() mocked_critical_error_message_box.assert_called_with(message='You need to type in a title.') def validate_not_valid_part2_test(self): """ Test the _validate() method. """ # GIVEN: Mocked methods. with patch('openlp.plugins.custom.forms.editcustomform.critical_error_message_box') as \ mocked_critical_error_message_box: self.form.title_edit.displayText = MagicMock(return_value='something') self.form.slide_list_view.count = MagicMock(return_value=0) # WHEN: Call the method. result = self.form._validate() # THEN: The validate method should have returned False. assert not result, 'The _validate() method should have retured False' mocked_critical_error_message_box.assert_called_with(message='You need to add at least one slide.') OpenLP-2.4/tests/interfaces/openlp_core_lib/0000755000175000017500000000000012657640341020172 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_core_lib/__init__.py0000644000175000017500000000301012657640340022274 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_core_lib/test_searchedit.py0000644000175000017500000001223212657640340023715 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module to test the EditCustomForm. """ from unittest import TestCase from PyQt5 import QtCore, QtGui, QtTest, QtWidgets from openlp.core.common import Registry from openlp.core.lib.searchedit import SearchEdit from tests.helpers.testmixin import TestMixin class SearchTypes(object): """ Types of search """ First = 0 Second = 1 SECOND_PLACEHOLDER_TEXT = "Second Placeholder Text" SEARCH_TYPES = [(SearchTypes.First, QtGui.QIcon(), "First", "First Placeholder Text"), (SearchTypes.Second, QtGui.QIcon(), "Second", SECOND_PLACEHOLDER_TEXT)] class TestSearchEdit(TestCase, TestMixin): """ Test the EditCustomForm. """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) self.search_edit = SearchEdit(self.main_window) # To complete set up we have to set the search types. self.search_edit.set_search_types(SEARCH_TYPES) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.search_edit del self.main_window def set_search_types_test(self): """ Test setting the search types of the search edit. """ # GIVEN: The search edit with the search types set. NOTE: The set_search_types(types) is called in the setUp() # method! # WHEN: # THEN: The first search type should be the first one in the list. assert self.search_edit.current_search_type() == SearchTypes.First, "The first search type should be selected." def set_current_search_type_test(self): """ Test if changing the search type works. """ # GIVEN: # WHEN: Change the search type result = self.search_edit.set_current_search_type(SearchTypes.Second) # THEN: assert result, "The call should return success (True)." assert self.search_edit.current_search_type() == SearchTypes.Second,\ "The search type should be SearchTypes.Second" assert self.search_edit.placeholderText() == SECOND_PLACEHOLDER_TEXT,\ "The correct placeholder text should be 'Second Placeholder Text'." def clear_button_visibility_test(self): """ Test if the clear button is hidden/shown correctly. """ # GIVEN: Everything is left to its defaults (hidden). assert self.search_edit.clear_button.isHidden(), "Pre condition not met. Button should be hidden." # WHEN: Type something in the search edit. QtTest.QTest.keyPress(self.search_edit, QtCore.Qt.Key_A) QtTest.QTest.keyRelease(self.search_edit, QtCore.Qt.Key_A) # THEN: The clear button should not be hidden any more. assert not self.search_edit.clear_button.isHidden(), "The clear button should be visible." def press_clear_button_test(self): """ Check if the search edit behaves correctly when pressing the clear button. """ # GIVEN: A search edit with text. QtTest.QTest.keyPress(self.search_edit, QtCore.Qt.Key_A) QtTest.QTest.keyRelease(self.search_edit, QtCore.Qt.Key_A) # WHEN: Press the clear button. QtTest.QTest.mouseClick(self.search_edit.clear_button, QtCore.Qt.LeftButton) # THEN: The search edit text should be cleared and the button be hidden. assert not self.search_edit.text(), "The search edit should not have any text." assert self.search_edit.clear_button.isHidden(), "The clear button should be hidden." OpenLP-2.4/tests/interfaces/openlp_core_lib/test_pluginmanager.py0000644000175000017500000001020512657640340024431 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.pluginmanager package. """ import sys import shutil import gc from tempfile import mkdtemp from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Registry, Settings from openlp.core.lib.pluginmanager import PluginManager from tests.interfaces import MagicMock from tests.helpers.testmixin import TestMixin class TestPluginManager(TestCase, TestMixin): """ Test the PluginManager class """ def setUp(self): """ Some pre-test setup required. """ Settings.setDefaultFormat(Settings.IniFormat) self.build_settings() self.temp_dir = mkdtemp('openlp') Settings().setValue('advanced/data path', self.temp_dir) Registry.create() Registry().register('service_list', MagicMock()) self.setup_application() self.main_window = QtWidgets.QMainWindow() Registry().register('main_window', self.main_window) def tearDown(self): Settings().remove('advanced/data path') self.destroy_settings() del self.main_window # On windows we need to manually garbage collect to close sqlalchemy files # to avoid errors when temporary files are deleted. gc.collect() shutil.rmtree(self.temp_dir) def find_plugins_test(self): """ Test the find_plugins() method to ensure it imports the correct plugins """ # GIVEN: A plugin manager plugin_manager = PluginManager() # WHEN: We mock out sys.platform to make it return "darwin" and then find the plugins old_platform = sys.platform sys.platform = 'darwin' plugin_manager.find_plugins() sys.platform = old_platform # THEN: We should find the "Songs", "Bibles", etc in the plugins list plugin_names = [plugin.name for plugin in plugin_manager.plugins] self.assertIn('songs', plugin_names, 'There should be a "songs" plugin') self.assertIn('bibles', plugin_names, 'There should be a "bibles" plugin') self.assertIn('presentations', plugin_names, 'There should be a "presentations" plugin') self.assertIn('images', plugin_names, 'There should be a "images" plugin') self.assertIn('media', plugin_names, 'There should be a "media" plugin') self.assertIn('custom', plugin_names, 'There should be a "custom" plugin') self.assertIn('songusage', plugin_names, 'There should be a "songusage" plugin') self.assertIn('alerts', plugin_names, 'There should be a "alerts" plugin') self.assertIn('remotes', plugin_names, 'There should be a "remotes" plugin') OpenLP-2.4/tests/interfaces/openlp_core_utils/0000755000175000017500000000000012657640341020564 5ustar raoulraoulOpenLP-2.4/tests/interfaces/openlp_core_utils/__init__.py0000644000175000017500000000301012657640340022666 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/interfaces/openlp_core_utils/test_utils.py0000644000175000017500000000632012657640340023335 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the AppLocation class and related methods. """ import os from unittest import TestCase from openlp.core.utils import is_not_image_file from tests.utils.constants import TEST_RESOURCES_PATH from tests.helpers.testmixin import TestMixin class TestUtils(TestCase, TestMixin): """ A test suite to test out various methods around the Utils functions. """ def setUp(self): """ Some pre-test setup required. """ self.setup_application() def is_not_image_empty_test(self): """ Test the method handles an empty string """ # Given and empty string file_name = "" # WHEN testing for it result = is_not_image_file(file_name) # THEN the result is false assert result is True, 'The missing file test should return True' def is_not_image_with_image_file_test(self): """ Test the method handles an image file """ # Given and empty string file_name = os.path.join(TEST_RESOURCES_PATH, 'church.jpg') # WHEN testing for it result = is_not_image_file(file_name) # THEN the result is false assert result is False, 'The file is present so the test should return False' def is_not_image_with_none_image_file_test(self): """ Test the method handles a non image file """ # Given and empty string file_name = os.path.join(TEST_RESOURCES_PATH, 'serviceitem_custom_1.osj') # WHEN testing for it result = is_not_image_file(file_name) # THEN the result is false assert result is True, 'The file is not an image file so the test should return True' OpenLP-2.4/tests/__init__.py0000644000175000017500000000303612657640340015026 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ All the tests """ OpenLP-2.4/tests/helpers/0000755000175000017500000000000012657640341014356 5ustar raoulraoulOpenLP-2.4/tests/helpers/songfileimport.py0000644000175000017500000002061712657640340017776 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`songfileimporthelper` modules provides a helper class and methods to easily enable testing the import of song files from third party applications. """ import json import logging from unittest import TestCase from openlp.plugins.songs.lib.importers.opensong import OpenSongImport from openlp.core.common import Registry from tests.functional import patch, MagicMock, call log = logging.getLogger(__name__) class SongImportTestHelper(TestCase): """ This class is designed to be a helper class to reduce repition when testing the import of song files. """ def __init__(self, *args, **kwargs): super(SongImportTestHelper, self).__init__(*args, **kwargs) self.importer_module = __import__('openlp.plugins.songs.lib.importers.%s' % self.importer_module_name, fromlist=[self.importer_class_name]) self.importer_class = getattr(self.importer_module, self.importer_class_name) def setUp(self): """ Patch and set up the mocks required. """ Registry.create() self.add_copyright_patcher = patch('openlp.plugins.songs.lib.importers.%s.%s.add_copyright' % (self.importer_module_name, self.importer_class_name)) self.add_verse_patcher = patch('openlp.plugins.songs.lib.importers.%s.%s.add_verse' % (self.importer_module_name, self.importer_class_name)) self.finish_patcher = patch('openlp.plugins.songs.lib.importers.%s.%s.finish' % (self.importer_module_name, self.importer_class_name)) self.add_author_patcher = patch('openlp.plugins.songs.lib.importers.%s.%s.add_author' % (self.importer_module_name, self.importer_class_name)) self.song_import_patcher = patch('openlp.plugins.songs.lib.importers.%s.SongImport' % self.importer_module_name) self.mocked_add_copyright = self.add_copyright_patcher.start() self.mocked_add_verse = self.add_verse_patcher.start() self.mocked_finish = self.finish_patcher.start() self.mocked_add_author = self.add_author_patcher.start() self.mocked_song_importer = self.song_import_patcher.start() self.mocked_manager = MagicMock() self.mocked_import_wizard = MagicMock() self.mocked_finish.return_value = True def tearDown(self): """ Clean up """ self.add_copyright_patcher.stop() self.add_verse_patcher.stop() self.finish_patcher.stop() self.add_author_patcher.stop() self.song_import_patcher.stop() def load_external_result_data(self, file_name): """ A method to load and return an object containing the song data from an external file. """ result_file = open(file_name, 'rb') return json.loads(result_file.read().decode()) def file_import(self, source_file_name, result_data): """ Import the given file and check that it has imported correctly """ importer = self.importer_class(self.mocked_manager, filenames=[source_file_name]) importer.import_wizard = self.mocked_import_wizard importer.stop_import_flag = False importer.topics = [] # WHEN: Importing the source file importer.import_source = source_file_name add_verse_calls = self._get_data(result_data, 'verses') author_calls = self._get_data(result_data, 'authors') ccli_number = self._get_data(result_data, 'ccli_number') comments = self._get_data(result_data, 'comments') song_book_name = self._get_data(result_data, 'song_book_name') song_copyright = self._get_data(result_data, 'copyright') song_number = self._get_data(result_data, 'song_number') title = self._get_data(result_data, 'title') topics = self._get_data(result_data, 'topics') verse_order_list = self._get_data(result_data, 'verse_order_list') # THEN: do_import should return none, the song data should be as expected, and finish should have been called. self.assertIsNone(importer.do_import(), 'do_import should return None when it has completed') # Debug information - will be displayed when the test fails log.debug("Title imported: %s" % importer.title) log.debug("Verses imported: %s" % self.mocked_add_verse.mock_calls) log.debug("Verse order imported: %s" % importer.verse_order_list) log.debug("Authors imported: %s" % self.mocked_add_author.mock_calls) log.debug("CCLI No. imported: %s" % importer.ccli_number) log.debug("Comments imported: %s" % importer.comments) log.debug("Songbook imported: %s" % importer.song_book_name) log.debug("Song number imported: %s" % importer.song_number) log.debug("Song copyright imported: %s" % importer.song_number) log.debug("Topics imported: %s" % importer.topics) self.assertEqual(importer.title, title, 'title for %s should be "%s"' % (source_file_name, title)) for author in author_calls: if isinstance(author, str): self.mocked_add_author.assert_any_call(author) else: self.mocked_add_author.assert_any_call(*author) if song_copyright: self.mocked_add_copyright.assert_called_with(song_copyright) if ccli_number: self.assertEqual(importer.ccli_number, ccli_number, 'ccli_number for %s should be %s' % (source_file_name, ccli_number)) expected_calls = [] for verse_text, verse_tag in add_verse_calls: self.mocked_add_verse.assert_any_call(verse_text, verse_tag) expected_calls.append(call(verse_text, verse_tag)) self.mocked_add_verse.assert_has_calls(expected_calls, any_order=False) if topics: self.assertEqual(importer.topics, topics, 'topics for %s should be %s' % (source_file_name, topics)) if comments: self.assertEqual(importer.comments, comments, 'comments for %s should be "%s"' % (source_file_name, comments)) if song_book_name: self.assertEqual(importer.song_book_name, song_book_name, 'song_book_name for %s should be "%s"' % (source_file_name, song_book_name)) if song_number: self.assertEqual(importer.song_number, song_number, 'song_number for %s should be %s' % (source_file_name, song_number)) if verse_order_list: self.assertEqual(importer.verse_order_list, verse_order_list, 'verse_order_list for %s should be %s' % (source_file_name, verse_order_list)) self.mocked_finish.assert_called_with() def _get_data(self, data, key): if key in data: return data[key] return '' OpenLP-2.4/tests/helpers/testmixin.py0000644000175000017500000000526712657640340016765 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Mixin class with helpers """ import os from tempfile import mkstemp from PyQt5 import QtCore, QtWidgets from openlp.core.common import Settings class TestMixin(object): """ The :class:`TestMixin` class provides test with extra functionality """ def setup_application(self): """ Build or reuse the Application object """ old_app_instance = QtCore.QCoreApplication.instance() if old_app_instance is None: self.app = QtWidgets.QApplication([]) else: self.app = old_app_instance def build_settings(self): """ Build the settings Object and initialise it """ self.fd, self.ini_file = mkstemp('.ini') Settings.set_filename(self.ini_file) Settings().setDefaultFormat(Settings.IniFormat) # Needed on windows to make sure a Settings object is available during the tests self.setting = Settings() Settings().setValue('themes/global theme', 'my_theme') def destroy_settings(self): """ Destroy the Settings Object """ del self.setting os.close(self.fd) os.unlink(Settings().fileName()) OpenLP-2.4/tests/helpers/__init__.py0000644000175000017500000000421512657640340016470 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~tests.helpers` module provides helper classes for use in the tests. """ from datetime import datetime class MockDateTime(object): return_values = [datetime(2015, 4, 15, 18, 35, 21, 0)] call_counter = 0 @classmethod def revert(cls): cls.return_values = [datetime(2015, 4, 15, 18, 35, 21, 0)] cls.call_counter = 0 @classmethod def now(cls): if len(cls.return_values) > cls.call_counter: mocked_datetime = cls.return_values[cls.call_counter] else: mocked_datetime = cls.return_values[-1] cls.call_counter += 1 return mocked_datetime OpenLP-2.4/tests/resources/0000755000175000017500000000000012657640341014726 5ustar raoulraoulOpenLP-2.4/tests/resources/powerpraisesongs/0000755000175000017500000000000012657640341020340 5ustar raoulraoulOpenLP-2.4/tests/resources/powerpraisesongs/Naher, mein Gott zu Dir.json0000644000175000017500000000145012657640340025270 0ustar raoulraoul{ "title": "Näher, mein Gott, zu Dir", "verse_order_list": ["v1", "v2", "v3"], "verses": [ [ "Näher, mein Gott, zu Dir,\nsei meine Bitt'!\nNäher, o Herr, zu Dir\nmit jedem Schritt.\nNur an dem Herzen Dein\nkann ich geborgen sein;\ndeshalb die Bitte mein:\nNäher zu Dir!", "v1" ], [ "Näher, mein Gott, zu Dir!\nEin jeder Tag\nsoll es neu zeigen mir,\nwas er vermag:\nWie seiner Gnade Macht,\nErlösung hat gebracht,\nin uns're Sündennacht.\nNäher zu Dir!", "v2" ], [ "Näher, mein Gott, zu Dir!\nDich bet' ich an.\nWie vieles hast an mir,\nDu doch getan!\nVon Banden frei und los,\nruh' ich in Deinem Schoss.\nJa, Deine Gnad' ist gross!\nNäher zu Dir!", "v3" ] ] } OpenLP-2.4/tests/resources/powerpraisesongs/You are so faithful.ppl0000644000175000017500000001037112657640340024547 0ustar raoulraoul You are so faithfulLobpreisEnglischYou are so faithfulso faithful, so faithful.Du bist so treuso treu, so treu.You are so faithfulso faithful, so faithful.Du bist so treuso treu, so treu.That's why I praise youin the morningThat's why I praise youin the noontime.Deshalb preise ich Dicham MorgenDeshalb preise ich Dicham Mittag.That's why I praise youin the eveningThat's why I praise youall the time.Deshalb preise ich Dicham AbendDeshalb preise ich Dichallezeit.You are so lovingso loving, so loving.Du bist so liebevollso liebevoll, so liebevoll.You are so lovingso loving, so loving.Du bist so liebevollso liebevoll, so liebevoll.You are so caringso caring, so caring.Du sorgst so gutDu kümmerst dich um uns.You are so caringso caring, so caring.Du sorgst so gutDu kümmerst dich um uns.You are so mightyso mighty, so mighty.Du bist so mächtigso mächtig, so mächtig.You are so mightyso mighty, so mighty.Du bist so mächtigso mächtig, so mächtig.Strophe 1RefrainStrophe 2RefrainStrophe 3RefrainStrophe 4lastslideMusik & Copyright unbekanntfirstslideTahoma30truefalse167772153020Tahoma20falsefalse167772153020Tahoma14falsefalse167772153020Tahoma30falsefalse167772153020true0true0125Blumen\Blume 6.jpg
30
20
centercenterinline50406070302040
OpenLP-2.4/tests/resources/powerpraisesongs/Naher, mein Gott zu Dir.ppl0000644000175000017500000000567012657640340025122 0ustar raoulraoul Näher, mein Gott, zu DirAnbetungDeutschNäher, mein Gott, zu Dir,sei meine Bitt'!Näher, o Herr, zu Dirmit jedem Schritt.Nur an dem Herzen Deinkann ich geborgen sein;deshalb die Bitte mein:Näher zu Dir!Näher, mein Gott, zu Dir!Ein jeder Tagsoll es neu zeigen mir,was er vermag:Wie seiner Gnade Macht,Erlösung hat gebracht,in uns're Sündennacht.Näher zu Dir!Näher, mein Gott, zu Dir!Dich bet' ich an.Wie vieles hast an mir,Du doch getan!Von Banden frei und los,ruh' ich in Deinem Schoss.Ja, Deine Gnad' ist gross!Näher zu Dir!Teil 1Teil 2Teil 3lastslideText und Musik: Lowell Mason, 1792-1872firstslidegrünes Buch 339Times New Roman44truetrue167772153015Times New Roman20falsefalse167772153020Times New Roman14falsefalse167772153020Times New Roman30falsefalse167772153020false0true0125Blumen\Blume 3.jpg
30
20
leftcenterinline50406070302040
OpenLP-2.4/tests/resources/powerpraisesongs/You are so faithful.json0000644000175000017500000000160612657640340024726 0ustar raoulraoul{ "title": "You are so faithful", "verse_order_list": ["v1", "c1", "v2", "c1", "v3", "c1", "v4"], "verses": [ [ "You are so faithful\nso faithful, so faithful.\nYou are so faithful\nso faithful, so faithful.", "v1" ], [ "That's why I praise you\nin the morning\nThat's why I praise you\nin the noontime.\nThat's why I praise you\nin the evening\nThat's why I praise you\nall the time.", "c1" ], [ "You are so loving\nso loving, so loving.\nYou are so loving\nso loving, so loving.", "v2" ], [ "You are so caring\nso caring, so caring.\nYou are so caring\nso caring, so caring.", "v3" ], [ "You are so mighty\nso mighty, so mighty.\nYou are so mighty\nso mighty, so mighty.", "v4" ] ] } OpenLP-2.4/tests/resources/lyrixsongs/0000755000175000017500000000000012657640341017147 5ustar raoulraoulOpenLP-2.4/tests/resources/lyrixsongs/in die regterhand.json0000644000175000017500000000225712657640340023303 0ustar raoulraoul{ "title": "IN DIE REGTERHAND VAN HOM WAT IN", "verse_order_list": [], "verses": [ [ "1. IN DIE REGTERHAND VAN HOM\nWAT IN MAJESTEIT REGEER\nLк DIE BOEKROL VAN VERLOSSING\nSEWEMAAL VERSEлL\nEN NIEMAND KON GEVIND WORD\nOM SY SEлLS OOP TE BREEK\nTOT DIE LAM VAN GOD NA VORE KOM\nOM DIE BOEKROL SELF TE NEEM\nDIE VIER-EN-TWINTIG OUDERLINGE\nVAL TOE VOOR HOM NEER\nSAAM MET AL DIE ENG'LE\nIN DIE GANSE HEMELLEлR,\nEN ELKE WESE WAT ASEM HET\nOP DIE AARDE, IN DIE SEE, EN OOR DIE\nLENGTE EN DIE BREEDTE\nVAN DIE SKEPPING BRING HOM EER", "v" ], [ "2. HERE U ALLEEN IS WAARDIG\nOM DIE LEWENSBOEK TE NEEM\nEN U ALLEEN IS MAGTIG\nOM SY SEлLS OOP TE BREEK,\nWANT U'T VIR ONS GESTERWE,\nMET U BLOED HET U BETAAL\nOM ONS LOS TE KOOP\nUIT ELKE STAM EN NASIE,VOLK EN TAAL", "v" ], [ "AL DIE LOF EN DIE KRAG\nEN DIE EER\nEN DIE HEERLIKHEID\nEN RYKDON EN STERKTE\nAAN U ALLEEN O HEER\nAL DIE LOF EN DIE KRAG\nEN DIE EER\nEN WYSHEID AAN DIE LAM\nOP DIE TROON\nWAT NOU EN TOT IN\nEWIGHEID REGEER\nNOU EN TOT IN EWIGHEID\nREGEER\nDIE LAM WAT TOT IN\nEWIGHEID REGEER", "v" ] ] } OpenLP-2.4/tests/resources/lyrixsongs/Amazing Grace2.json0000644000175000017500000000222512657640340022514 0ustar raoulraoul{ "authors": [ "John Newton", "Edwin Excell", "John P. Rees" ], "ccli_number": "22025", "copyright": "Public Domain", "title": "AMAZING GRACE", "verse_order_list": [], "verses": [ [ "1. AMAZING GRACE! HOW SWEET THE SOUND\nTHAT SAVED A WRETCH LIKE ME;\nI ONCE WAS LOST, BUT NOW AM FOUND;\nWAS BLIND, BUT NOW I SEE.", "v" ], [ "2. 'TWAS GRACE THAT TAUGHT MY HEART TO FEAR\nAND GRACE MY FEARS RELIEVED;\nHOW PRECIOUS DID THAT GRACE APPEAR,\nTHE HOUR I FIRST BELIEVED!", "v" ], [ "3. THROUGH MANY DANGERS, TRIALS AND SNARES\nI HAVE ALREADY COME;\n'TIS GRACE THAT BROUGHT ME SAFE THUS FAR\nAND GRACE WILL LEAD ME HOME.", "v" ], [ "4. THE LORD HAS PROMISED GOOD TO ME,\nHIS WORD MY HOPE SECURES;\nHE WILL MY SHIELD AND FORTRESS BE\nAS LONG AS LIFE ENDURES.", "v" ], [ "5. WHEN WE'VE BEEN THERE TEN THOUSAND YEARS\nBRIGHT SHINING AS THE SUN,\nWE'VE NO LESS DAYS TO SING GOD'S PRAISE\nTHAN WHEN WE'D FIRST BEGUN.", "v" ] ] } OpenLP-2.4/tests/resources/lyrixsongs/Amazing Grace.json0000644000175000017500000000174312657640340022436 0ustar raoulraoul{ "title": "AMAZING GRACE, HOW SWEET THE SOUND", "verse_order_list": [], "verses": [ [ "1. AMAZING GRACE, HOW SWEET THE SOUND\nTHAT SAVED A WRETCH LIKE ME\nI ONCE WAS LOST, BUT NOW I'M FOUND\nWAS BLIND, BUT NOW I SEE", "v" ], [ "2. 'TWAS GRACE THAT TAUGHT MY HEART TO FEAR\nAND GRACE MY FEARS RELIEVED\nHOW PRECIOUS DID THAT GRACE APPEAR\nTHE HOUR I FIRST BELIEVED", "v" ], [ "3. THROUGH MANY DANGERS, TOILS AND SNARES\nI HAVE ALREADY COME, 'TWAS GRACE\nTHAT BROUGHT ME SAFE THUS FAR\nAND GRACE WILL LEAD ME HOME", "v" ], [ "4. WHEN WE'VE BEEN THERE TEN THOUSAND YEARS\nBRIGHT SHINING AS THE SUN\nWE'VE NO LESS DAYS TO SING GOD'S PRAISE\nTHAN WHEN WE'VE FIRST BEGUN", "v" ], [ "5. PRAISE GOD, PRAISE GOD\nPRAISE GOD, PRAISE GOD\nPRAISE GOD, PRAISE GOD\nPRAISE GOD..", "v" ] ] } OpenLP-2.4/tests/resources/lyrixsongs/A002.TXT0000644000175000017500000000147612657640340020161 0ustar raoulraoul ------------- A002 AMAZING GRACE ------------- 1. AMAZING GRACE! HOW SWEET THE SOUND THAT SAVED A WRETCH LIKE ME; I ONCE WAS LOST, BUT NOW AM FOUND; WAS BLIND, BUT NOW I SEE. 2. 'TWAS GRACE THAT TAUGHT MY HEART TO FEAR AND GRACE MY FEARS RELIEVED; HOW PRECIOUS DID THAT GRACE APPEAR, THE HOUR I FIRST BELIEVED! 3. THROUGH MANY DANGERS, TRIALS AND SNARES I HAVE ALREADY COME; 'TIS GRACE THAT BROUGHT ME SAFE THUS FAR AND GRACE WILL LEAD ME HOME. 4. THE LORD HAS PROMISED GOOD TO ME, HIS WORD MY HOPE SECURES; HE WILL MY SHIELD AND FORTRESS BE AS LONG AS LIFE ENDURES. 5. WHEN WE'VE BEEN THERE TEN THOUSAND YEARS BRIGHT SHINING AS THE SUN, WE'VE NO LESS DAYS TO SING GOD'S PRAISE THAN WHEN WE'D FIRST BEGUN. CCLI no.: 22025 Words/Music: Edwin Excell, John Newton, John P. Rees Public Domain OpenLP-2.4/tests/resources/lyrixsongs/AO05.TXT0000644000175000017500000000204112657640340020210 0ustar raoulraoul -------------------------------- AO05 IN DIE REGTERHAND VAN HOM WAT IN -------------------------------- 1. IN DIE REGTERHAND VAN HOM WAT IN MAJESTEIT REGEER Lê DIE BOEKROL VAN VERLOSSING SEWEMAAL VERSEëL EN NIEMAND KON GEVIND WORD OM SY SEëLS OOP TE BREEK TOT DIE LAM VAN GOD NA VORE KOM OM DIE BOEKROL SELF TE NEEM DIE VIER-EN-TWINTIG OUDERLINGE VAL TOE VOOR HOM NEER SAAM MET AL DIE ENG'LE IN DIE GANSE HEMELLEëR, EN ELKE WESE WAT ASEM HET OP DIE AARDE, IN DIE SEE, EN OOR DIE LENGTE EN DIE BREEDTE VAN DIE SKEPPING BRING HOM EER 2. HERE U ALLEEN IS WAARDIG OM DIE LEWENSBOEK TE NEEM EN U ALLEEN IS MAGTIG OM SY SEëLS OOP TE BREEK, WANT U'T VIR ONS GESTERWE, MET U BLOED HET U BETAAL OM ONS LOS TE KOOP UIT ELKE STAM EN NASIE,VOLK EN TAAL AL DIE LOF EN DIE KRAG EN DIE EER EN DIE HEERLIKHEID EN RYKDON EN STERKTE AAN U ALLEEN O HEER AL DIE LOF EN DIE KRAG EN DIE EER EN WYSHEID AAN DIE LAM OP DIE TROON WAT NOU EN TOT IN EWIGHEID REGEER NOU EN TOT IN EWIGHEID REGEER DIE LAM WAT TOT IN EWIGHEID REGEER OpenLP-2.4/tests/resources/lyrixsongs/A06.TXT0000644000175000017500000000137312657640340020101 0ustar raoulraoul ---------------------------------- A06 AMAZING GRACE, HOW SWEET THE SOUND ---------------------------------- 1. AMAZING GRACE, HOW SWEET THE SOUND THAT SAVED A WRETCH LIKE ME I ONCE WAS LOST, BUT NOW I'M FOUND WAS BLIND, BUT NOW I SEE 2. 'TWAS GRACE THAT TAUGHT MY HEART TO FEAR AND GRACE MY FEARS RELIEVED HOW PRECIOUS DID THAT GRACE APPEAR THE HOUR I FIRST BELIEVED 3. THROUGH MANY DANGERS, TOILS AND SNARES I HAVE ALREADY COME, 'TWAS GRACE THAT BROUGHT ME SAFE THUS FAR AND GRACE WILL LEAD ME HOME 4. WHEN WE'VE BEEN THERE TEN THOUSAND YEARS BRIGHT SHINING AS THE SUN WE'VE NO LESS DAYS TO SING GOD'S PRAISE THAN WHEN WE'VE FIRST BEGUN 5. PRAISE GOD, PRAISE GOD PRAISE GOD, PRAISE GOD PRAISE GOD, PRAISE GOD PRAISE GOD.. OpenLP-2.4/tests/resources/wordsofworshipsongs/0000755000175000017500000000000012657640341021077 5ustar raoulraoulOpenLP-2.4/tests/resources/wordsofworshipsongs/Amazing Grace (6 Verses).wow-song0000644000175000017500000000170512657640340026672 0ustar raoulraoulWoW File Song Words ÿÿCSongDoc::CBlock"Amazing grace! how sweet the soundThat saved a wretch like me;"I once was lost, but now am found,Was blind, but now I see.€)'Twas grace that taught my heart to fear,And grace my fears relieved;#How precious did that grace appear,The hour I first believed!€&Through many dangers, toils and snaresI have already come;)'Tis grace that brought me safe thus far,And grace will lead me home.€!The Lord has promised good to me,His word my hope secures; He will my shield and portion beAs long as life endures.€*Yes, when this heart and flesh shall fail,And mortal life shall cease,I shall possess within the veilA life of joy and peace.€)When we've been there ten thousand years,Bright shining as the sun,'We've no less days to sing God's praiseThan when we first begun.John Newton (1725-1807)OpenLP-2.4/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.json0000644000175000017500000000217112657640340027607 0ustar raoulraoul{ "authors": [ "Words: Reginald Heber (1783-1826). Music: John B. Dykes (1823-1876)" ], "title": "Holy Holy Holy Lord God Almighty", "verse_order_list": [], "verses": [ [ "Holy, holy, holy, Lord God Almighty\nEarly in the morning\nOur song shall rise to Thee:\nHoly, holy, holy, merciful and mighty,\nGod in three Persons, blessed Trinity!", "V" ], [ "Holy, holy, holy! all the saints adore Thee,\nCasting down their golden crowns\nAround the glassy sea;\nCherubim and seraphim falling down before Thee,\nWho were and are and evermore shall be.", "V" ], [ "Holy, holy, holy! though the darkness hide Thee,\nThough the eye of sinful man\nThy glory may not see;\nOnly Thou art holy, there is none beside Thee,\nPerfect in power, in love and purity.", "V" ], [ "Holy, holy, holy, Lord God Almighty!\nAll Thy works shall praise Thy name\nIn earth, and sky, and sea;\nHoly, holy, holy, merciful and mighty\nGod in three Persons, blessed Trinity!", "V" ] ] } OpenLP-2.4/tests/resources/wordsofworshipsongs/Amazing Grace (6 Verses).json0000644000175000017500000000234612657640340026065 0ustar raoulraoul{ "authors": [ "John Newton (1725-1807)" ], "title": "Amazing Grace (6 Verses)", "verse_order_list": [], "verses": [ [ "Amazing grace! how sweet the sound\nThat saved a wretch like me;\nI once was lost, but now am found,\nWas blind, but now I see.", "V" ], [ "'Twas grace that taught my heart to fear,\nAnd grace my fears relieved;\nHow precious did that grace appear,\nThe hour I first believed!", "V" ], [ "Through many dangers, toils and snares\nI have already come;\n'Tis grace that brought me safe thus far,\nAnd grace will lead me home.", "V" ], [ "The Lord has promised good to me,\nHis word my hope secures;\nHe will my shield and portion be\nAs long as life endures.", "V" ], [ "Yes, when this heart and flesh shall fail,\nAnd mortal life shall cease,\nI shall possess within the veil\nA life of joy and peace.", "V" ], [ "When we've been there ten thousand years,\nBright shining as the sun,\nWe've no less days to sing God's praise\nThan when we first begun.", "V" ] ] } OpenLP-2.4/tests/resources/wordsofworshipsongs/When morning gilds the skies.json0000644000175000017500000000240412657640340027247 0ustar raoulraoul{ "authors": [ "Author Unknown. Tr. Edward Caswall" ], "title": "When morning gilds the skies", "verse_order_list": [], "verses": [ [ "When morning gilds the skies\nMy heart awaking cries:\n'May Jesus Christ be prais'd!'\nAlike at work and prayer to Jesus I repair:\n'May Jesus Christ be prais'd!'", "V" ], [ "Does sadness fill my mind?\nA solace here I find:\n'May Jesus Christ be praised!'\nWhen evil thoughts molest,\nWith this I shield my breast:\n'May Jesus Christ be prais'd!'", "V" ], [ "To God, the Word, on high\nThe hosts of angels cry:\n'May Jesus Christ be prais'd!'\nLet mortals, too, upraise\nTheir voice in hymns of praise:\n'May Jesus Christ be prais'd!'", "V" ], [ "Let earth's wide circle round\nIn joyful notes resound:\n'May Jesus Christ be prais'd!'\nLet air, and sea, and sky,\nFrom depth to height, reply:\n'May Jesus Christ be prais'd!'", "V" ], [ "Be this while life is mine\nMy canticle divine\n'May Jesus Christ be prais'd!'\nBe this the eternal song,\nThrough all the ages long:\n'May Jesus Christ be prais'd!'", "V" ] ] } OpenLP-2.4/tests/resources/wordsofworshipsongs/When morning gilds the skies.wsg0000644000175000017500000000174712657640340027107 0ustar raoulraoulWoW File Song Words ÿÿCSongDoc::CBlockWhen morning gilds the skiesMy heart awaking cries:'May Jesus Christ be prais'd!'+Alike at work and prayer to Jesus I repair:'May Jesus Christ be prais'd!'€Does sadness fill my mind?A solace here I find:'May Jesus Christ be praised!'When evil thoughts molest,With this I shield my breast:'May Jesus Christ be prais'd!'€To God, the Word, on highThe hosts of angels cry:'May Jesus Christ be prais'd!'Let mortals, too, upraiseTheir voice in hymns of praise:'May Jesus Christ be prais'd!'€Let earth's wide circle roundIn joyful notes resound:'May Jesus Christ be prais'd!'Let air, and sea, and sky,From depth to height, reply:'May Jesus Christ be prais'd!'€Be this while life is mineMy canticle divine'May Jesus Christ be prais'd!'Be this the eternal song,Through all the ages long:'May Jesus Christ be prais'd!'#Author Unknown. Tr. Edward CaswallOpenLP-2.4/tests/resources/wordsofworshipsongs/Holy Holy Holy Lord God Almighty.wow-song0000644000175000017500000000164212657640340030420 0ustar raoulraoulWoW File Song Words ÿÿCSongDoc::CBlock#Holy, holy, holy, Lord God AlmightyEarly in the morningOur song shall rise to Thee:&Holy, holy, holy, merciful and mighty,&God in three Persons, blessed Trinity!€,Holy, holy, holy! all the saints adore Thee, Casting down their golden crownsAround the glassy sea;/Cherubim and seraphim falling down before Thee,'Who were and are and evermore shall be.€0Holy, holy, holy! though the darkness hide Thee,Though the eye of sinful manThy glory may not see;.Only Thou art holy, there is none beside Thee,%Perfect in power, in love and purity.€$Holy, holy, holy, Lord God Almighty!#All Thy works shall praise Thy nameIn earth, and sky, and sea;%Holy, holy, holy, merciful and mighty&God in three Persons, blessed Trinity!CWords: Reginald Heber (1783-1826). Music: John B. Dykes (1823-1876)OpenLP-2.4/tests/resources/projector/0000755000175000017500000000000012657640341016735 5ustar raoulraoulOpenLP-2.4/tests/resources/projector/data.py0000644000175000017500000000514412657640340020223 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`tests.resources.projector.data file contains test data """ import os from tempfile import gettempdir # Test data TEST_DB = os.path.join(gettempdir(), 'openlp-test-projectordb.sql') TEST_SALT = '498e4a67' TEST_PIN = 'JBMIAProjectorLink' TEST_HASH = '5d8409bc1c3fa39749434aa3a5c38682' TEST_CONNECT_AUTHENTICATE = 'PJLink 1 {salt}'.format(salt=TEST_SALT) TEST_DB = os.path.join(gettempdir(), 'openlp-test-projectordb.sql') TEST1_DATA = dict(ip='111.111.111.111', port='1111', pin='1111', name='___TEST_ONE___', location='location one', notes='notes one') TEST2_DATA = dict(ip='222.222.222.222', port='2222', pin='2222', name='___TEST_TWO___', location='location two', notes='notes two') TEST3_DATA = dict(ip='333.333.333.333', port='3333', pin='3333', name='___TEST_THREE___', location='location three', notes='notes three') OpenLP-2.4/tests/resources/zionworxsongs/0000755000175000017500000000000012657640341017677 5ustar raoulraoulOpenLP-2.4/tests/resources/zionworxsongs/zionworx.csv0000644000175000017500000000225612657640340022317 0ustar raoulraoul"1","Crown Him With Many Crowns",,"Crown him with many crowns, The Lamb upon His throne; Hark, how the heavenly anthem drowns All music but its own! Awake, my soul, and sing Of Him who died for thee, And hail Him as thy matchless King Through all eternity. Crown Him the Lord of life, Who triumphed o'er the grave And rose victorious in the strife For those He came to save: His glories now we sing, Who died and rose on high, Who died eternal life to bring And lives that death may die. Crown Him the Lord of love; Behold His hands and side, Those wounds yet visible above In beauty glorified: No angel in the sky Can fully bear that sight, But downward bends His burning eye At mysteries so bright. Crown Him the Lord of peace, Whose power a sceptre sways From pole to pole, that wars may cease, And all be prayer and praise: His reign shall know no end, And round His piercèd feet Fair flowers of paradise extend Their fragrance ever sweet. Crown Him the Lord of years, The Potentate of time, Creator of the rolling spheres, Ineffably sublime! All hail, Redeemer, hail! For Thou hast died for me; Thy praise shall never, never fail Throughout eternity. ","Matthew Bridges","Public Domain",, OpenLP-2.4/tests/resources/zionworxsongs/zionworx.json0000644000175000017500000000310712657640340022471 0ustar raoulraoul{ "authors": [ "Matthew Bridges" ], "copyright": "Public Domain", "title": "Crown Him With Many Crowns", "verse_order_list": [], "verses": [ [ "Crown him with many crowns,\nThe Lamb upon His throne;\nHark, how the heavenly anthem drowns\nAll music but its own!\nAwake, my soul, and sing\nOf Him who died for thee,\nAnd hail Him as thy matchless King\nThrough all eternity.\n", "v" ], [ "Crown Him the Lord of life,\nWho triumphed o'er the grave\nAnd rose victorious in the strife\nFor those He came to save:\nHis glories now we sing,\nWho died and rose on high,\nWho died eternal life to bring\nAnd lives that death may die.\n", "v" ], [ "Crown Him the Lord of love;\nBehold His hands and side,\nThose wounds yet visible above\nIn beauty glorified:\nNo angel in the sky\nCan fully bear that sight,\nBut downward bends His burning eye\nAt mysteries so bright.\n", "v" ], [ "Crown Him the Lord of peace,\nWhose power a sceptre sways\nFrom pole to pole, that wars may cease,\nAnd all be prayer and praise:\nHis reign shall know no end,\nAnd round His piercèd feet\nFair flowers of paradise extend\nTheir fragrance ever sweet.\n", "v" ], [ "Crown Him the Lord of years,\nThe Potentate of time,\nCreator of the rolling spheres,\nIneffably sublime!\nAll hail, Redeemer, hail!\nFor Thou hast died for me;\nThy praise shall never, never fail\nThroughout eternity.\n", "v" ] ] } OpenLP-2.4/tests/resources/worshipassistantsongs/0000755000175000017500000000000012661025625021422 5ustar raoulraoulOpenLP-2.4/tests/resources/worshipassistantsongs/du_herr.csv0000644000175000017500000000264312657640340023576 0ustar raoulraoul"SongID","SongNr","Title","Author","Copyright","FirstLine","PriKey","AltKey","Tempo","Focus","Theme","Scripture","Active","Songbook","TimeSig","Introduced","LastUsed","TimesUsed","CCLINr","User1","User2","User3","User4","User5","Roadmap","Overmap","FileLink1","FileLink2","Updated","Lyrics","Info","Lyrics2","Background" "4ee399dc-edda-4aa9-891e-a859ca093c78","NULL","Du, Herr, verläßt mich nicht","Carl Brockhaus / Johann Georg Bäßler 1806","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","1","1","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","2014-06-25 12:15:28.317","","NULL","[1] Du, Herr, verläßt mich nicht. Auf Dich mein Herz allein vertraut, Mein Auge glaubend auf Dich schaut. Du bist mein Heil, mein Licht, Mein Fels, mein sichrer Hort. Bin ich versucht, gibt's Not und Leid, Du bleibst mein Trost, mein Arm im Streit, Mein Licht am dunklen Ort. [2] Ich weiß, daß Du mich liebst. Bist mir in jeder Lage nah', Wohin ich gehe – Du bist da, Ja, Du mir alles gibst. Ich überlaß mich Dir; Denn Du, Herr, kennst mich ganz und gar Und führst mich sicher, wunderbar, Und bist selbst alles mir. [3] In dieser Wüste hier Find't nirgend meine Seele Ruh', Denn meine Ruh' bist, Jesu, Du. Wohl mir, ich geh' zu Dir! Bald werd' ich bei Dir sein, Bald mit den Deinen ewiglich Anbeten, loben, preisen Dich, Mich Deiner stets erfreun.","NULL" OpenLP-2.4/tests/resources/worshipassistantsongs/would_you_be_free.json0000644000175000017500000000116712657640340026021 0ustar raoulraoul{ "authors": [ "Jones", "Lewis E" ], "title": "Would You Be Free", "verse_order_list": ["v1", "c1", "v1"], "copyright": "Public Domain", "verses": [ [ "Would you be free from your burden of sin? \nThere's power in the blood, power in the blood \nWould you o'er evil a victory win? \nThere's wonderful power in the blood \n ", "v1" ], [ "There is power, power, wonder working power \nIn the blood of the Lamb \nThere is power, power, wonder working power \nIn the precious blood of the Lamb \n", "c1" ] ] } OpenLP-2.4/tests/resources/worshipassistantsongs/would_you_be_free2.csv0000644000175000017500000000261012657640340025717 0ustar raoulraoulSONGNR,TITLE,AUTHOR,COPYRIGHT,FIRSTLINE,PRIKEY,ALTKEY,TEMPO,FOCUS,THEME,SCRIPTURE,ACTIVE,SONGBOOK,TIMESIG,INTRODUCED,LASTUSED,TIMESUSED,CCLINR,USER1,USER2,USER3,USER4,USER5,ROADMAP,FILELINK1,OVERMAP,FILELINK2,LYRICS,INFO,LYRICS2,Background "7","Would You Be Free","Jones, Lewis E.","Public Domain","Would you be free from your burden of sin?","G","","Moderate","Only To Others","","","N","Y","","1899-12-30","1899-12-30","","","","","","","","1, C, 1","","","",".G C G Would you be free from your burden of sin? . D D7 G There's power in the blood, power in the blood . C G Would you o'er evil a victory win? . D D7 G There's wonderful power in the blood .G C G There is power, power, wonder working power .D G In the blood of the Lamb . C G There is power, power, wonder working power . D G In the precious blood of the Lamb ","","[1] Would you be free from your burden of sin? There's power in the blood, power in the blood Would you o'er evil a victory win? There's wonderful power in the blood [C] There is power, power, wonder working power In the blood of the Lamb There is power, power, wonder working power In the precious blood of the Lamb [x]","" OpenLP-2.4/tests/resources/worshipassistantsongs/du_herr.json0000644000175000017500000000212612657640340023750 0ustar raoulraoul{ "authors": [ "Carl Brockhaus / Johann Georg Bäßler 1806" ], "title": "Du, Herr, verläßt mich nicht", "verse_order_list": [], "verses": [ [ "Du, Herr, verläßt mich nicht.\nAuf Dich mein Herz allein vertraut,\nMein Auge glaubend auf Dich schaut.\nDu bist mein Heil, mein Licht,\nMein Fels, mein sichrer Hort.\nBin ich versucht, gibt's Not und Leid,\nDu bleibst mein Trost, mein Arm im Streit,\nMein Licht am dunklen Ort.\n", "v1" ], [ "Ich weiß, daß Du mich liebst.\nBist mir in jeder Lage nah',\nWohin ich gehe – Du bist da,\nJa, Du mir alles gibst.\nIch überlaß mich Dir;\nDenn Du, Herr, kennst mich ganz und gar\nUnd führst mich sicher, wunderbar,\nUnd bist selbst alles mir.\n", "v2" ], [ "In dieser Wüste hier\nFind't nirgend meine Seele Ruh',\nDenn meine Ruh' bist, Jesu, Du.\nWohl mir, ich geh' zu Dir!\nBald werd' ich bei Dir sein,\nBald mit den Deinen ewiglich\nAnbeten, loben, preisen Dich,\nMich Deiner stets erfreun.\n", "v3" ] ] } OpenLP-2.4/tests/resources/worshipassistantsongs/would_you_be_free.csv0000644000175000017500000000260512657640340025641 0ustar raoulraoulSONGNR,TITLE,AUTHOR,COPYRIGHT,FIRSTLINE,PRIKEY,ALTKEY,TEMPO,FOCUS,THEME,SCRIPTURE,ACTIVE,SONGBOOK,TIMESIG,INTRODUCED,LASTUSED,TIMESUSED,CCLINR,USER1,USER2,USER3,USER4,USER5,ROADMAP,FILELINK1,OVERMAP,FILELINK2,LYRICS,INFO,LYRICS2,Background "7","Would You Be Free","Jones, Lewis E.","Public Domain","Would you be free from your burden of sin?","G","","Moderate","Only To Others","","","N","Y","","1899-12-30","1899-12-30","","","","","","","","1,C,1","","","",".G C G Would you be free from your burden of sin? . D D7 G There's power in the blood, power in the blood . C G Would you o'er evil a victory win? . D D7 G There's wonderful power in the blood .G C G There is power, power, wonder working power .D G In the blood of the Lamb . C G There is power, power, wonder working power . D G In the precious blood of the Lamb ","","[1] Would you be free from your burden of sin? There's power in the blood, power in the blood Would you o'er evil a victory win? There's wonderful power in the blood [C] There is power, power, wonder working power In the blood of the Lamb There is power, power, wonder working power In the precious blood of the Lamb ","" OpenLP-2.4/tests/resources/easyslidessongs/0000755000175000017500000000000012657640341020145 5ustar raoulraoulOpenLP-2.4/tests/resources/easyslidessongs/Amazing Grace.json0000644000175000017500000000230312657640340023425 0ustar raoulraoul{ "title": "Amazing Grace", "authors": [ "John Newton (1725-1807)" ], "verses": [ [ "Amazing grace! How sweet the sound\nThat saved a wretch like me;\nI once was lost, but now am found,\nWas blind, but now I see.", "V1" ], [ "'Twas grace that taught my heart to fear,\nAnd grace my fears relieved;\nHow precious did that grace appear,\nThe hour I first believed!", "V2" ], [ "Through many dangers, toils and snares\nI have already come;\n'Tis grace that brought me safe thus far,\nAnd grace will lead me home.", "V3" ], [ "The Lord has promised good to me,\nHis word my hope secures;\nHe will my shield and portion be\nAs long as life endures.", "V4" ], [ "Yes, when this heart and flesh shall fail,\nAnd mortal life shall cease,\nI shall possess within the veil\nA life of joy and peace.", "V5" ], [ "When we've been there a thousand years,\nBright shining as the sun,\nWe've no less days to sing God's praise\nThan when we first begun.", "V6" ] ] } OpenLP-2.4/tests/resources/easyslidessongs/amazing-grace.xml0000644000175000017500000000261212657640340023374 0ustar raoulraoul Amazing Grace English 0 [1] Amazing grace! How sweet the sound That saved a wretch like me; I once was lost, but now am found, Was blind, but now I see. [2] 'Twas grace that taught my heart to fear, And grace my fears relieved; How precious did that grace appear, The hour I first believed! [3] Through many dangers, toils and snares I have already come; 'Tis grace that brought me safe thus far, And grace will lead me home. [4] The Lord has promised good to me, His word my hope secures; He will my shield and portion be As long as life endures. [5] Yes, when this heart and flesh shall fail, And mortal life shall cease, I shall possess within the veil A life of joy and peace. [6] When we've been there a thousand years, Bright shining as the sun, We've no less days to sing God's praise Than when we first begun. John Newton (1725-1807) -1 Public Domain SF19, MP31, TS18 OpenLP-2.4/tests/resources/songselect/0000755000175000017500000000000012657640341017074 5ustar raoulraoulOpenLP-2.4/tests/resources/songselect/TestSong-txt.json0000644000175000017500000000103712657640340022352 0ustar raoulraoul{ "authors": [ "Author One", "Author Two" ], "ccli_number": "0000000", "song_number": 0, "title": "Test Song", "copyright": "© 2011 OpenLP Programmer One (Admin. by OpenLP One)", "verse_order_list": [], "verses": [ [ "Line One Verse One\nLine Two Verse One\nLine Three Verse One\nLine Four Verse One\n", "v" ], [ "Line One Verse Two\nLine Two Verse Two\nLine Three Verse Two\nLine Four Verse Two\n", "v" ] ] } OpenLP-2.4/tests/resources/songselect/TestSong.txt0000644000175000017500000000071612657640340021406 0ustar raoulraoulTest Song Verse 1 Line One Verse One Line Two Verse One Line Three Verse One Line Four Verse One Verse 2 Line One Verse Two Line Two Verse Two Line Three Verse Two Line Four Verse Two CCLI Song # 0000000 Author One | Author Two © 2011 OpenLP Programmer One (Admin. by OpenLP One) OpenLP Programmer Two (Admin. by OpenLP Two) For use solely with the OpenLP Song Test Suite. All rights reserved. http://openlp.org CCLI License # 00000 OpenLP-2.4/tests/resources/songselect/TestSong-bin.json0000644000175000017500000000121012657640340022274 0ustar raoulraoul{ "authors": [ "Author One", "Author Two" ], "ccli_number": "0000000", "song_number": 0, "title": "Test Song", "topics": [ "Adoration", "Praise" ], "copyright": "2011 OpenLP Programmer One (Admin. by OpenLP One) | Openlp Programmer Two (Admin. by OpenLP Two)", "verse_order_list": [], "verses": [ [ "Line One Verse One\nLine Two Verse One\nLine Three Verse One\nLine Four Verse One\n", "v" ], [ "Line One Verse Two\nLine Two Verse Two\nLine Three Verse Two\nLine Four Verse Two\n", "v" ] ] } OpenLP-2.4/tests/resources/songselect/TestSong.bin0000644000175000017500000000073412657640340021337 0ustar raoulraoul[File] Type=SongSelect Import File Version=3.0 [S A0000000] Title=Test Song Author=Author One | Author Two Copyright=2011 OpenLP Programmer One (Admin. by OpenLP One) | Openlp Programmer Two (Admin. by OpenLP Two) Admin=OpenLP One Themes=Adoration/tPraise Keys=G Fields=Verse 1/tVerse 2 Words=Line One Verse One/nLine Two Verse One/nLine Three Verse One/nLine Four Verse One/n/tLine One Verse Two/nLine Two Verse Two/nLine Three Verse Two/nLine Four Verse Two/n/t OpenLP-2.4/tests/resources/presentationmanagersongs/0000755000175000017500000000000012661025625022043 5ustar raoulraoulOpenLP-2.4/tests/resources/presentationmanagersongs/Amazing Grace.json0000644000175000017500000000207012657640340025327 0ustar raoulraoul{ "title": "Amazing Grace", "authors": [ "John Newton" ], "verse_order_list": ["v1", "v2", "v3", "v4", "v5"], "verses": [ [ "Amazing grace! How sweet the sound!\nThat saved a wretch like me!\nI once was lost, but now am found;\nWas blind, but now I see.", "v1" ], [ "'Twas grace that taught my heart to fear,\nAnd grace my fears relieved.\nHow precious did that grace appear,\nThe hour I first believed.", "v2" ], [ "The Lord has promised good to me,\nHis Word my hope secures.\nHe will my shield and portion be\nAs long as life endures.", "v3" ], [ "Thro' many dangers, toils and snares\nI have already come.\n'Tis grace that brought me safe thus far,\nAnd grace will lead me home.", "v4" ], [ "When we've been there ten thousand years,\nBright shining as the sun,\nWe've no less days to sing God's praise,\nThan when we first begun.", "v5" ] ] } OpenLP-2.4/tests/resources/presentationmanagersongs/Amazing Grace.sng0000644000175000017500000000423612657640340025153 0ustar raoulraoulÿþ<?xml version="1.0" encoding="UNICODE"?> <song xmlns="creativelifestyles/song"> <attributes> <title>Amazing Grace</title> <author>John Newton</author> <copyright></copyright> <ccli_number></ccli_number> <comments></comments> </attributes> <verses> <verse id="Verse 1"> Amazing grace! How sweet the sound! That saved a wretch like me! I once was lost, but now am found; Was blind, but now I see. </verse> <verse id="Verse 2"> 'Twas grace that taught my heart to fear, And grace my fears relieved. How precious did that grace appear, The hour I first believed. </verse> <verse id="Verse 3"> The Lord has promised good to me, His Word my hope secures. He will my shield and portion be As long as life endures. </verse> <verse id="Verse 4"> Thro' many dangers, toils and snares I have already come. 'Tis grace that brought me safe thus far, And grace will lead me home. </verse> <verse id="Verse 5"> When we've been there ten thousand years, Bright shining as the sun, We've no less days to sing God's praise, Than when we first begun. </verse> </verses> OpenLP-2.4/tests/resources/presentationmanagersongs/Great Is Thy Faithfulness.json0000644000175000017500000000216512657640340027503 0ustar raoulraoul{ "title": "Great Is Thy Faithfulness", "authors": [ "Thomas O. Chisholm (1866-1960)" ], "verse_order_list": ["v1", "c1", "v2", "c1", "v3", "c1"], "verses": [ [ "\"Great is Thy faithfulness\", O God my Father.\nThere is no shadow of turning with Thee;\nThou changest not, Thy compassions they fail not,\nAs Thou hast been Thou forever shall be.", "v1" ], [ "Great is Thy faithfulness!\nGreat is Thy faithfulness!\nMorning by morning new mercies I see!\nAll I have needed Thy hand hath provided -\n\"Great is Thy faithfulness\", Lord, unto me!", "c1" ], [ "Summer and winter, and springtime and harvest,\nSun, moon, and stars in their courses above,\nJoin with all nature in manifold witness,\nTo Thy great faithfulness, mercy and love.", "v2" ], [ "Pardon for sin and a peace that endureth,\nThine own dear presence to cheer and to guide,\nStrength for today and bright hope for tomorrow,\nBlessings all mine, with ten thousand beside!", "v3" ] ] } OpenLP-2.4/tests/resources/presentationmanagersongs/Great Is Thy Faithfulness.sng0000644000175000017500000000307712657640340027324 0ustar raoulraoul Great Is Thy Faithfulness Thomas O. Chisholm (1866-1960) "Great is Thy faithfulness", O God my Father. There is no shadow of turning with Thee; Thou changest not, Thy compassions they fail not, As Thou hast been Thou forever shall be. Great is Thy faithfulness! Great is Thy faithfulness! Morning by morning new mercies I see! All I have needed Thy hand hath provided - "Great is Thy faithfulness", Lord, unto me! Summer and winter, and springtime and harvest, Sun, moon, and stars in their courses above, Join with all nature in manifold witness, To Thy great faithfulness, mercy and love. Great is Thy faithfulness! Great is Thy faithfulness! Morning by morning new mercies I see! All I have needed Thy hand hath provided - "Great is Thy faithfulness", Lord, unto me! Pardon for sin and a peace that endureth, Thine own dear presence to cheer and to guide, Strength for today and bright hope for tomorrow, Blessings all mine, with ten thousand beside! Great is Thy faithfulness! Great is Thy faithfulness! Morning by morning new mercies I see! All I have needed Thy hand hath provided - "Great is Thy faithfulness", Lord, unto me! OpenLP-2.4/tests/resources/songprosongs/0000755000175000017500000000000012657640341017467 5ustar raoulraoulOpenLP-2.4/tests/resources/songprosongs/Amazing Grace.json0000644000175000017500000000244512657640340022756 0ustar raoulraoul{ "title": "Amazing Grace", "authors": [ "Words: John Newton (1725-1807)" ], "copyright" : "Public Domain", "verse_order_list": ["V1", "V2", "V3", "V4", "V5", "V6"], "verses": [ [ "Amazing Grace! how sweet the sound\nThat saved a wretch like me;\nI once was lost, but now am found,\nWas blind, but now I see.", "V" ], [ "'Twas grace that taught my heart to fear,\nAnd grace my fears relieved;\nHow precious did that grace appear,\nThe hour I first believed!", "V" ], [ "Through many dangers, toils and snares\nI have already come;\n'Tis grace that brought me safe thus far,\nAnd grace will lead me home.", "V" ], [ "The Lord has promised good to me,\nHis word my hope secures;\nHe will my shield and portion be\nAs long as life endures.", "V" ], [ "Yes, when this heart and flesh shall fail,\nAnd mortal life shall cease,\nI shall possess within the veil\nA life of joy and peace.", "V" ], [ "When we've been there a thousand years,\nBright shining as the sun,\nWe've no less days to sing God's praise\nThan when we first begun.", "V" ] ] } OpenLP-2.4/tests/resources/songprosongs/amazing-grace.txt0000644000175000017500000000623112657640340022736 0ustar raoulraoul#T Amazing Grace #C {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #1 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang2057\f0\fs20 Amazing Grace! how sweet the sound \par That saved a wretch like me; \par I once was lost, but now am found, \par Was blind, but now I see. \par } #2 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang2057\f0\fs20 'Twas grace that taught my heart to fear, \par And grace my fears relieved; \par How precious did that grace appear, \par The hour I first believed! \par } #3 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang2057\f0\fs20 Through many dangers, toils and snares \par I have already come; \par 'Tis grace that brought me safe thus far, \par And grace will lead me home. \par } #4 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang2057\f0\fs20 The Lord has promised good to me, \par His word my hope secures; \par He will my shield and portion be \par As long as life endures. \par } #5 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang1033\f0\fs20 Yes, when this heart and flesh shall fail, \par And mortal life shall cease, \par I shall possess within the veil \par A life of joy and peace. \par } #6 {\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} {\colortbl ;\red0\green0\blue0;} \viewkind4\uc1\pard\cf1\lang1033\f0\fs20 When we've been there a thousand years, \par Bright shining as the sun, \par We've no less days to sing God's praise \par Than when we first begun. \par } #7 {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #D {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #B {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #PR {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #MS {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #C2 {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #NT {\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs20 \par } #A Words: John Newton (1725-1807) #R Public Domain #O 123456 #F Arial #FS 34 #I False #BD True #BE True #FC 16777215 #BC 39168 #FF 16777215 #P Lakes\NZ Lake 3.jpg #PC 16777215 #SB True #SH False #BM I #IT S #CC 2762836 #IN 126444 #E OpenLP-2.4/tests/resources/presentations/0000755000175000017500000000000012657640341017624 5ustar raoulraoulOpenLP-2.4/tests/resources/presentations/test.pptx0000644000175000017500000013351512657640340021527 0ustar raoulraoulPK!Ì»~á)[Content_Types].xml ¢( ̘ßoÚ0Çß'íˆü:C×õ—}ØÖ§n«Ôîð’¼9¶eZþû]hÓ ­c%/ˆ‹ï¾÷1Áw'/J‘,ÁX®dFFé$ sUp9ËÈﻫÁI¬c²`BIÈÈ ,¹œ|ü0¾[i° FK›‘¹sú‚R›Ï¡d6U$®L•)™CǪ́fù?6z4žÐ\IÒ \¥A&ão0e á’ïø¸&ù«aF’¯µc•+#¼¬üÝc@Ø1LkÁsæp.eñ‚l°¦J1ÒûØ9×ö:ìÈP­ìN°Žû…?§á$7̸Ÿ¬D/ªµ£Ú€Å8®´UM§<‡Bå‹CÒ¦X)ž™iɸÜlbŒøð³_}ÓµMÖÐ>ˆiM‡ã-G|îœà¸s‚/HåÀnNGÃhý_ÙÐÞÇTEÞ¥mŒÚá…÷,9ÜG!xÞGà°¿@ýþ*¼ÌÞŒì€[·Ðú®Òˆk¶R ·>µ§JÖÚïeŠS7ØâTÒ0¦8µ5Œ)Nµ c:é!Ói™ÎzÈtÞC¦Ñ°P]VòFW /ÞuU?öÜÖcÞÓ÷8Ó•—~Pë­,¨õ> Ôz j½ƒ„Ñ~€¥¹2ðv„Í=D=Ð(Æñ×ÇÂÇŒ(¼g¨®8 (¶ä¦þ¢gòÿÿPK!høt¡â _rels/.rels ¢( ¬’ÛJ1†ïß!Ì}7Û*"ÒloDèÈúc2»ÝH¦Ò¾½¡àaa-‚½ÌÌ?ß$Yoön ^Á²ªA×ÁXß+xn· 2£78O ”aÓ\^¬ŸhD.Cy°1‹BñYÁÀï¤Ìz ‡¹ ‘|ét!9ärL½Œ¨ß°'¹ªë™~2 ™0ÅÖ(H[s¢=Dú[:b4È(uH´ˆ©L'¶eÑbꉘ K9U!ƒœZWˆ‡{ñhÇ•¯^õ©ÿMhùw¡ÐuVÓ}Ð;Gžç¼¦‰o§YÆD¹éS7t}N!Ú3yCæô£aŒŸFrò3›ÿÿPK!Ø‚kÖÎ ppt/slides/_rels/slide1.xml.rels¬‘1kÄ0 …÷BÿƒÑ^;¹¡”rÎ-åàà¦öúŒ­$¦‰l,]iþ}Ý¥$pC‡ŽzzúÞí_ó¤>±pLd¡Õ ($ŸB¤ÁÂûåøðŠÅQpS"´° ỿۿâä¤ñ3«J!¶0ŠägcØ8;Ö)#ÕMŸÊ줎e0Ùù7 Ù5Í£)kt¦: åv .KÆ¿°SßG/É_g$¹a( òÛVª+Š­WòÚÒêÊs»VûŸµø'îì–t•M¯•¾1ý63›/tßÿÿPK!#óp¤ÖÎ ppt/slides/_rels/slide2.xml.rels¬‘1kÄ0 …÷BÿƒÑ^;—¡”rÎ-¥pЩ½þa+‰ibËw\þ}Ý¥$pC‡ŽzzúÞí×yRÊ8ZØéEÇ>ÄÁÂçéõá ”Œ'Žda!Cw·§ K=’1$Q•ÅÂXJz6FÜH3ŠæD±nzÎ3–:æÁ$t_8i›æÑä5º S½…|ô-¨Ó’è/lîûàè…Ýy¦XnD˜È…äc ž*ó@Å‚Ö+ymiu價]k÷Ÿµä'î >—M¯•¾1ý63›/tßÿÿPK!ìïÇ×Î ppt/slides/_rels/slide4.xml.rels¬‘AKÄ0…ï‚ÿ!Ìݤ]DD6Ý‹ žtý!™¶aÛIÈÌŠý÷ƃÐÂx¨N7© $áL2I,Û²M!U uªÊbae9×ã;GW~¬7_}‡v  —‚ât–`¢” ůÅÃÕ FÆ2Q±N  xƒ7ùåÅú:fÝ&Óres†âÖZuGˆ)[è™™I­ÔR÷̺R7D±ò5@²$Yí{à|䉶Åz[¹ùÅ à?Þ²®y ÷²üèAØ3#ˆÒ`ž´tÃPÁt–âƒ4sn˜œ‡˜Ç„0¯à°/Õ,qBH æ‘ úˆâ‰£Ž4„•M”M"qš'Ž:‚X«‰²Y³‰Žeo¼Ø¡ïybˆd9Q‹`IÔ8Ü^b_þˆÁƒ±˜(‰yâ6&ÄŽÃçÉÓzþ ÈèÓÈ¿ÿÿPK!b%³Ì×Î ppt/slides/_rels/slide5.xml.rels¬‘AKÄ0…ï‚ÿ!Ìݤ]PD6Ý‹ žtý!™¶aÛIÈÌŠý÷ƃÐÂ1§Ó‘995_Ìé©y ;çùðæ‘m®Ã$ H†¼(ËÓÜvôkkNI)O¶.=;y¶÷4a; ëUÓo˜~¤[ý _ß`3¶\J׺_Ja³Ì)Ÿ|]ØìÆ.ì……=ø`¶‚Á`&šÕÀj(íàV_Õ“m\kI´÷‚­ï yd-ý ?gué=Si6%¬Éá)‚µuÕ2f;fIÓ?™4ôvX`ï¼Ì®àcƒ  ,e‹a*=æBA7ˆ‚E |ï> X[MÖîZPc k,a¸LñŒâ‘äçŽO( D½3uàzo¸ú{°ŽqdwXÞ(I§fªâ@Ü`vÄãñaÇ\ˆqƒÙOÄÃxfäƒÜpvÈÓò<Êó òAn8;äÙyå™=–÷È!ê?=¼~sv/â;¾ÏæzåÙIº.˜Öp<ÃMq¹áDׯߨ¡è€NG@§I||6^€ž ÔPt@óPCóøè»=¨¡è€^€féôø`»=¨¡hK£Óš¥ŸAÛKÐò6²-пUeµˆâxdq5I¢E:Éáb1¹þRÅU.Ê0(˜b5LM‰õuÓÖDveq˜žÆ]K¤P¢ÑWDt®Âö{ñÊ^´¶È£¡,TWFÒyð …l¡‚M!߀—P¦ÎÌ[2®„ÙÕ¢äêiÿ~ʤŒK[Nú{Û²ºïíDáÿ¢¶=Âa‘ÔÝ÷nhüÀü?ÿÿPK!uÀ‘ÓNppt/slides/slide5.xmläVÛnÛ8}/°ÿ 轑|‰íuŠ&MƒÝԈݾÓ$-¡H†¤{¿¾Ã‹d+qZ§E·Xì‹Dr8sfÎ\¤7o7OÖT&Å$íœäiB–„‰b’~™x=Jc‘ ˆKA'é–šôíù_¯Þ¨±á$maÆh’–Öªq–\Ò ™©¨ÙRê YØê"#=€ÕŠgÝ<db"úú}¹\2LßK¼ª¨°Áˆ¦YðÜ”L™Úš:ÆšÒÔ€¯Ýré"Ã3NÜÛ¨¹¦Ô­ÄúZ«™šj/¾YOuÂð•&U@KšEA¼æ·bíÙ#õ¢^¢ñf©+÷†Ø’Í$ò·î™¹3º± ‡xwŠËÏîâòêÀí¬Èö@]TÁ¹§áôó³QÑ-Åö‚Ó¤ÛW»mÔ'‰ïL"$„X—%ܦﴖ%Eĸã|£qoU&v«[=g–Óx5ÈýbçíAª£ÓQ8èvzy¿{Úfm8vûî‚c£Óæy¸±ÏI0­Ævs!ÉÖi/à \ K©½wÁ*7vf·œúr»¹N¡âõõtÊ?@¢ƒõíùœ›ô¨õÐ.8o Û¡zG~˜—³§yéýƼ˜Õ"äð7;•ãóÓé ;ƒ˜ Þh4èÖ¤Ô M>ƒ>AÃÓ®»}d‚^œ“^s‚ääåVGeÖ¿Â q¬ÇÙ‚¹þ©ÏkCÊR}é ɘ Ý0Ê*ø•ød¬Ï u2õ0"+¨Z&]2Á,d¦œEÚNRAaÈ»z tî3l«[)mw%ãd^[5ô>ÁRà•Ö0 CAÒÞa¨ Jï‚F„ì€ÜA¸y:£÷0yÞK“%ãæ¶ädßæ ßM‘ö&Œ½”‚D à!IŒÿm =×¾ù=äþsÈÌ–×Z®Ô÷¡Cɾñ4Mü·Ç~|ï¹ ›KŽŒqÅ'ÍV‹Ð‹yÛG˜ä‰?}ÄÓÕr ³á—ýhxQ†Â«Ä\wZî¼Í•õ\ø2.ì_ÙÂ&F5“.´|ªÛþ?|¸Tø°ƒÉ ­U»Ad­¾a=ª·çÆ‹“53lÁ8³[§Ô÷7§5V†8õWK‚÷Všï–“;_uNoÐ:à,V¯‰Ÿ”ÓðµÎè_o³ÿjëtò?Ú;Ø;õWüÚ;ψAªéúq舓b ¢t—’6÷`ª°1ˆpèl‚vÀl[ußÐg@n@ô“ -«žÅûcxh~!¼vVÓýBÚk–Å ŒMRVë8;ñ§Ä!ÃoÍ7ÿÿPK!u1ÒNppt/slides/slide4.xmläVÛnÛ8}_ ÿ è½ÑÅ×5êMš tS#öö¦h‰E2$íØýú^$[‰Ó:-ºÅ¢/ÉáÌ™™33Ò›·ÛšE¢4|ggiŽEAy9ÿYüõzGÚ ^ &8™Æ;¢ã·ç¯þx#'šhs=AÓ¸2FN’DãŠÔHŸ I8ÈVBÕÈÀV•I¡ÐX­Y’§é0©åqÐW§è‹ÕŠbò^àuM¸ñFaȀ红R7Öä)Ö¤"Ì8íŽK瞳¾µ\(BìŠo®•œË™râ›ÍLE´€|ÅG5¤%N‚ \s[¾q‹ä‘zÙ,Ñd»Rµ}ClÑvCòwö™Ø3²5ö‡xŠ«OGîâêêÈí¤H@mTÞ¹§á ²#ø[B¼³Ò~·¬ÜúbSgõÚœ„Jø1ñ“rý²Öÿç­óçÿµu²ô—öNz§ùŠÿ¦½óŒ¤Šl³@68Ág Š÷”ts¦J‚ð‡Ö&h{Ì®Uû }äDß Ò±ê²xJÚ_ˆ%k‚Õì°še¹cÓXÂk'ü”Xdø­ùÿÿPK!2>†4ÔNppt/slides/slide1.xmläVÛnÛ8}/°ÿ è½ÑÅ×uŠ&MƒÝԈݾÓ-¡H†¤»_¿Ã‹d+uZ§E·Xì‹Dr8sfæÌŒôúͶfц(MŸÆÙYG„cQP^NãÏ‹÷/Çq¤ âb‚“i¼#:~sþ׋×r¢Y6×4+cä$I4®Hô™„ƒl%T lU™ =€Õš%yš“Q}uоX­(&ï^ׄoD† x®+*ucMžbM*¢ÁŒÓî¸t‘á9+ì[Ë…"Ä®øæZɹœ)'¾ÙÌTD ÈWqTCZâ$Â5·å·H©—ÍM¶+UÛ7Äm§1$gŸ‰=#[aˆ÷§¸útä.®®ŽÜN€äÔFåû6œ<¤MD·í%#QÞ׸­åGïtÄ„å³ .+¸MÞ*%*‚ m}ð­¢Ïˆ}Ë*2; (ب5Œ„«^î{o¦j8ŒSŸƒ<ë¥ý|ÐÍÚh4Êûö‚ÍFÖ¥©¿q˜oZNÌöB;«½„7äq\ å¼óV™6s³cÄm¤}8ŸÜeÈv á/¯/ S¾Nã¾…uÍù‚heÔ8hœ3ìQ#?䥭´=/½ßÈ‹^/=/€¿Ý«œÎOÖeÃ@Po<æMR‚†&Ç #h4Èíí z6'½>p‚Žpò|+Ë“˜u/?HlÖÃlÁLý䧃ƒ!eˆºtG†d hŒÒnÅ?jãØB¾N¼FŪ–ò‚¬(§؃)g2Ó˜ò¶ ²p ›úVãÇ]EY±h¬jraÁñZ)¾Š€´·ª‚;¯ ó#{;OçäþÆ#Ï{q´¢ŒÁܬ8´€Åw3¤œ m./‚ð°ˆ ÿ»ºO\÷æ÷ûO!?PS]+±–߇ö%ûÄA¹oùðÎåÖo.ÒÚLœp4_/}/¦]a’(Üé£<]­V0~Ù_€v‡•/¼Æñaà:ë¸ó\4[Ö îʸ4W,|eKiÙN:ßò^(oKøÿpáîÂö&½Ü·Véí¶‘1ê†eð¨Ùžk;.Î6TÓ%eÔì¬R+<Ü´ž690ÂÇ©¾ ø[B¼³Ò~·¬ÜúbSgõÚœ„Jø5ñ7å4úc­3þ×[çÕµu²ôöNz§ùŠÿO{ç 1HÙiÿñÝqÞ—XuªÚm¦JÝ-é`ø£a@@]GÓþûÛͶ6S¥í‹Ž»ãyswqÙTÕ  “"Å£Á#TLRü°[G ŒŒ%¢ \ Hñ ¾\½w¡à 䲅IHŠKkUdž–P3 „;ÛK]ë¶úš<¹ªÇÃá<®¸Ë×oÉ—û=£p-éc¶E4pbrS2eújê-Õ”ãÊ„ìß ­3ºå…·Fí4€_‰ú£V[µÑáøs½ÑˆN/Œ©œ,8°uXĤú%Iš½®¼uÜP“b'þÑcïƒÆ"Ú:éÉKËûWbiyóJtÜ_ÿr©gÕ‚{IgÜÓÙ1ËžYõxº“ô›AB:>ž~Kï9¢åì­*‘=*WÊúR]\{'0X¶Édqô—|u68IÂÝÚ#‡°Qþ`h‡—ÿBAD[Œ ¦m`LesDÎY”¦ëhz½ü]­ç³h=›L§y¶¸Ê'7?|—¦ Õð¶$Îù¢y+Fµ4roTV݈•|­$ ƒ`4ì¦IM¸Ó6›Ì'ËárÖéä°õ6 õêv N¹þDÔ}þ„»Ì‚΃K¹IÕýˆSˆçîò~ÿÿPK!ƒi,PÒNppt/slides/slide3.xmläV[oÛ6~°ÿ 轑,;¶gÔ)š4 t©{}§IZ"B‘ I;vý/’­Äi[1ìE"yx¾ïÜ¥·ï¶5O6T&Å4íåiB–„‰ršþ¹øýÍ8MŒE‚ .¦;jÒw¿þòVM ' h 3AÓ´²VM²ÌàŠÖÈœIEÈVR×ÈÂV—ÑèPkžy>ÌjÄDõõ)úrµb˜~x]Saˆ¦Y°ÜTL™M‚¦45ãµ;&]€gxΉ{µÐ”º•ØÜh5W3íÅ·›™Nx¥‰@5„%Í¢ ^ó[±ñ‹ì‰zÙ,Ñd»Òµ{ƒoÉvšBðw3ºµ ‡xŠ«ÏGîâêúÈí¬!ÈHWÁ¸çîôóÑ ñèŽbH{ÉiR´Î5fõIâ{“ n…(È« nÓ÷ZËÇŠ"bÜqp¾U qoU%v§€[½`–Óx5ÈýboíÑP Ççã<Ä èõóAqÞÚh4*î‚‹Fo0Êópã0&ZMìöR’Ó^Âb®¤öÖTnìÜî8õåÞ& w9rBÅ››K蔯ÓtàhýE{± Æ&…#µžÚ9ç²=«7ä»y9ž—þ?˜³^†¼ÿv¯rz~zýQoÔ‡E”&AC“Ï OÐè¼p·OLЫsÒoécNБœ¼eyRfý+ õ8[0× õyãé`HYª¯ü‘‚!´¿ ¬_‰OÆúl¡P' Ñ #²†ªe‚ÐÌBö`ÊY¤í4†¼«B>ö¾“Ò†qW1N ª¡ –¯µ†ª’öCUPz4"eq„rOáæéœ>áxby?MVŒs˜Û’“C̾Ÿ!í!Œ½’‚D°$Æÿ®Ã×½ù-æÁKÌÌV7Z®Õ·©Cɾ†Ù{ìÇ>¶asÅ‘1®Ø`âÄ£ùzz1ïÚ“ü#ñ§Oât½ZÁløa{Ú^V¡ðÇ1×½Ž9¯ese½¾ŒK{ÍãW¶´‰Qí¤ -„ꮄÿï.Þí䡵ʀÛ"kõ- ËhQ³½0n\œm˜aKÆ™Ý9¥Vx¸i-mb`eðSAð·„ÀyÒ~·œÜÙâBçôÚ8œÅJø1ñ³rý´Öÿë­óÛµuzùOí^ìæ+þ?íÄ Õtó4 t“b¢tŸ’n쪴щpè0A;pvQÝ7ô’[ýM’ªâÃ)qh!–¼1V³ÃB:h–åÀ¦©Š ktNü)qÌð[óÿÿPK!ð‰DžÓ¿*ppt/notesSlides/_rels/notesSlide5.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vRè£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!i¢_!Ç,ppt/slideMasters/_rels/slideMaster1.xml.relsÄÕMjÃ0à}¡w0³%;‰“”ÈÙ„B «’@XãjKFRJ}ûŠ–B ah! À’õæãm´?|}òÖuF ÈR êʨN7ÞÎÏ‹-$ÎK­do4 ˜ÐÁ¡||Ø¿b/}¸äÚntIHÑN@ëýøÄ˜«Z¤K͈:œÔÆÒ‡OÛ°QVï²A–s^0{å,39)ö¤Âüó4â_²M]wMuPû#˜ë;…/r2b¥mÐ HÓëýÙOÛ4Œv[¶Œ)[R²MLÙ†’eù=i>ÜÅê{çgÍ(Ç]ÿm('Š)#;+bÊ ²³¸¥‘­­cÒÖdke¾$ÕJ¤LÙ²×Nì1g±Õ]ìËéª:U­öû®3¢­0­Ò"éæ;C×pqš_ŒôŸÏgƒ@×*†ò‘"Ç#ýWú‡üÃûò "ñ'T1L5è#¯ÐHO+†Ã*Jp†ªwE‰sh[4C ¾Ò‹aLÑô‘¡eÞ0Ci®«÷é>ï‹Eáã"Zf8g²Š b0ÿ*I˪î­Ü§·’â ºo·¦të‹ÎHÌŸó ùyJߣƒª i¥˜4snîìz\Ä7|´9<Áôý`ºIA¿ÀS¾¦úÛQ¬käc.&4¦ÎÄá`òÍ–y³%_f“‚…òzUË•_&ŒJ÷Yd%b'ùYqÑÚ?œ_ÿ‚h©<ƒÉ.>]ŽBÊŠ¯r!ÂUTìŒÝ,”©°B²"k/.Ä(¯Dœâq>ø0ŠÏØ„`”¯ÅØá„¤Ñ¥Æ Ç)ÓÓ W  Á– s‡*FnЀßKþm"°Ÿ‘8N:Œ}½>0ÁñóònBpÀi„žXYO=!ô„ðÆ }7tÀ5O°AÕAÛC xÀg8*òX#x…ÉÝ Õx@÷çIJ÷ï]xïô>+–”%{wï<´ûtqGï&âà6‹=Ç`Õ°1DŠ¥a? !{.xå![¦moÙ÷,·OÐz>îù¸çãÿ‹òŠ˜Ê±Æxñ¬“{DÓY­x¹ñ¢ œÇ§ˆ"þZ“*Ôø`€ð6úL °àÆÌwTG±€Ì‘Ï6xž»i Ýžzèi §—D Ä_#ؤ-Fðž‘*^f]¤ 2‘ßA žëÚ}nГBO =)¼FRx4%,H,œù¯³±=5w2¬)¸’ãÀŒ§“`pl‡ÞÑ$ðÌ™ ª¶vÄ)l¸â®³(y’(®ðS§o_ûÓ·¯ÿÚA-ø‰Ç‘xÈ›œ(ÔÝ‹ˆÐO¨ÔææH'às4°Î‘_B ô‹×Y¼ÎâuPR®iã£TU׬eìºÆ®kœºÆ©kܺƭk¼ºÆÓµ„¤ù%¨èÚ¢ ‘uIR%°Ú º ø ]nՈͱLÇwÛs £¼†~Œ… Ú-ër-®eÕÕ‰²fCVýº¶SÖjȪÀ²vCV¥Š;e†¬ "vʺ YÿY¯!+®dÜ!ë7dÃ{dƒæ^[»C¸µqu¨s{ãÙµ°ÎJ”ùï¨wÄ€eâŒô*gG¢zŽ*éLª2ã…*FLºÛÚ!´Z»ïS­ ÇâpÇ¢]bÊï‚ñé~²¬|KŠßÇÊ…;Y \ÊŸ³¿SAÚjÀHÝ/ª¶¢Jõ-gØöw¢h½Ôž©#š"¢k%Ê‹Š3«eŒ ˆŠàYÿS*S%3”¥âU*¢Ñ ³Í<Ûˆq˜bvØ>ˆq˜bNØ>ˆq˜bnØ>ˆq˜bG,Côdó;Vß}øqÐ~þ?Ö÷øíMálð3mŸ_hê¼@Žš0lXAи€5™ 6ÂáRäÄ·bc ®íX!Ç6Í!E…~u…›<j«>ÌyÜóåÖ(:Ò¿}ý§ e› ORwž?Ý©ó]!u¾+¤Î÷ ©%Ø>`Ë3Í5ØVàú¼â…€ý[`[Âð^8ØÛѸrêh[Aÿ@Õ¶ž-þïÑÞŽäÚêÎî‹E»C·…v¼p´·³‰¶e¸¾Ð•—‰öþý:ÁîN ,×t¶»Á†nÎÑüìË&Z®áÇè$ÓKq.殾BÿQ/Í/N—yÄêƒoÂOÁ·Ñ;Óhl"«¤¨Û±…óå tà‰C=¼™ù¸£;ç±B_ξßòïoË»Ó4÷ö[þ]nywbiwOÌÒoùkÝòu*ÜH~˃‚%˜®Saxã´uatýÓêÏg›N•H;o~%ymwg¹í×·ŒOwbÚ>P}ËøìH%Û¦o îìoë@ô-´#c4Þ´;¿ñyŒÚ´#€éöNú®ØÙsýÞI·#Ífp)îãÕדäí%ù'¾‡ÿÿÿPK!J¯u9Ò¿*ppt/notesSlides/_rels/notesSlide1.xml.rels¬±j1 †÷BßÁh}—!”_–RÈ¥¤`lÝÉl,%$o_CKÉA†õKúô¡íî:Oê‚…c" ­n@!ù" >ï«P,Ž‚›¡…2ìºç§íNNê1³ªb £H~5†ýˆ³c2Ríô©ÌNjY“?¹ͺi6¦Ü3 [0Õ>X(û°u¼eü ;õ}ôø–üyF’' O1`º2 XÐú;ùi´ºÁ<öhÿÓƒ’  –…Í]¾ú53‹·w_ÿÿPK!ÕÑ’ñ¼7,ppt/slideLayouts/_rels/slideLayout1.xml.relsŒÏ½ Â0ð]ðÂí&­ƒˆ4uÁÁEôŽäÚÛ$ä¢èۛтƒã}ýþ\³M£xRb¼†ZV È›`ï5Ü®ÇÕgôÇàIÛöírÑ\hÄ\Žxp‘EQ`æÐtí„Wí£7+×cκóOüP7&èß­fh£s $ýN4é%AÒŒçA<íwƒñ¼ÓæíVO’ÞxÒš=»F׌T3߯Ӻ{6ã7ý³È©–F®ì•EÕˆC%Ÿ˜V2÷½¸Ù¨ú–pè#~»õânå@«GÖ9^µXÊõ¢n·¾:à-pwâ·üWTÅq¼â,vÕ>ú ÿÿPK!¤%‚¾éppt/notesSlides/notesSlide4.xml¬UÝnÚ0¾Ÿ´w°|Ÿ†„”BT¨H€©R×¢Ò>€ë8$šc{¶¡°©ï>ÛI€¶TESoâãcŸŸï|>'—W›Š‚5‘ªälƒ³„až•l9„3¯ÒˆeˆrF†pK¼}ÿv)bÆ5QÀØ3£!,´±ï+\ ©3.3g9—Òf+—~&ѳñ[Q?ìtz~…J{yŠ=Ïó“ Ç«Š0];‘„"mrWE)TëMœâMH¢Œgý*¥‘Á†4³«’+±õ)b.Ýñíz.A™™ŠAÀPe ýæ ¹æ¶líÿù²Q¼ÉeeWƒ l†Ð”k¿¾Õ‘¸Vâ½wGîâbzä¶ßð‚ZTurïá„-œ-3®+´$`N&§‘ Øál(qÃñ/7ë‚ð{®)-[’±;U]y]"»Šè­0‘Í®«es±>uÂ>ù¶¦5ŒÁt[0·î¥Â?‡ñy¦O<ÛBi³¿þq¾"֛ĨXÖÐ)QL•^è-%n#ìÇe# Šlæ=. ÈJ©«@U:¥±õzTã³lkÇyí⨟#Ö¦)€rtGo\–Í‘D÷oœÔK8œ-¨èˆ^¿­ÛUõd˜8d¥û¬˜÷c\¤†ð÷ IMdKRÝ_ÂRN3êï¤MÃ^8óÆawêEQ/ôÆÉlàÍÂnr‘NzQпÀ]n93ÙÊÍ#¹HÿÉ[Ú1ffÊÒV²4’dÐ Ó~â%A4ó¢ÉàÂÏzçÞì¼EiÒ§Ýé‹‹AcIÜļÎÚYDï¦mUbÉÏõæU3¶}ÁŸ‰¼t“;è4ã¨iÔóADa'rmé»ÜÚÕek)o&2¦ò'wk÷àJn€—rI¤2B€)€$4¹Æÿ¶G®-ÁÒÆB0úñ ¹› ©P\ç8&)ËióÉR2åD«¶ûQ9CA„P’6inD¡ÖI‹·Àæ.930S&…å¦F6éƒö2Gr˜Q`~ßF©ª €Å¥<•¹JCõY~éžúzn77 tZ ç‡ŽêÛ‰jß§*”¦º-µ<°  E÷© ¥©^KEnˆ‚ÎX蹋U,õ·°‘ ÇbKcƒë8Q;«XnaCÏ휱CXÅÒØ¨Å*f÷”À*–Æö·°>+eŠU··Ö(ššDvØH×3N-c¸jGáŽQ1¯Q±£Bz½#d Ç ™ŠSŠó¹–±ZbŽ”1Ç·};ÜÛ{vdÌ "Ï¢gî=?2SûSB4Ÿ0å”ÄŒ&FN–$ø??K3Þ®w˜Îô [p‘vÆ{OÅgóƒô—®ü«°øeªµþX`.?)½–êë)kÉ œ>òëRõš e1÷Z¼Ö¯5Áÿº&« ` ~^M°+e “GKÙuÁ–”½Ö¯uÁ¯ Âf ± ; (x‰º uU°U^£ú éÁ…³>úµom×­²íí¿‡”ìPäÞ\ÔDn˜Z+Û± _"vsÁ•Tè;Ç,ÿ•øõ›øMó,!Æå¢¸Ù‹"hás£Xå‰D äwþÐû÷9ÏÁŸ#gìÇ(꡾7ìyAÒë;g^/rƒsû̵CÏ~iN¤+'*}¹§!u@m´||ûú×/ß¾þÝJ‡œò¸Â¥9Ó–ÛÁE%tËXðLú0ög {CäMzÞ¸öÎ&ß›ø®ç†ÑÙÈ=ÿ¢ÎÆ‘7ˆ9÷_“æ¨y÷ë‹,æ¬bsñ&f…>õ·JvGxÉ28øG¶>ª_bµ/ ÇÜÀA±,°­¹‚µê ™*ÿå5çpyµ„|°ÉàQ™Ñ[ý1µ]”ïÍ:NÿÿÿPK!‰©‡ «5!ppt/slideLayouts/slideLayout4.xmlìWQnÛ8ý/°w ´ßŠ$[Rl£NaÉqQ M‚Ú=#Q‘ZŠdIZ±»(kí§'Y’ãÄq[»I] ?"E ß̼™!5/_­j ÄEEÉØ Ž| ’Ѽ"×cçýbæ $$9Ä” ±³FÂyuòÇ‹—l$p~×t) bÇN)%yžÈJTCqD"ê[Ay ¥zå×^Îá®±×óýØ«aEœn?ßg?-Š*CSš-kDd †RÙ/ÊŠ ‹ÆöAc cv?4I®™òVÞЋ«0r¼Q+s¢\Ïæ8ÖjaqCAJ‰T0æ“` Žž‘æ5gsvÉÍŽóæ’ƒ*×ÝNÇë>tbæ•4fâmm¿¶S8Z¼Ö£b¬ÆŽ ØZ?=½†Vdíb¶YÍÊ‹²YyºCÚ³ ¼{JµW­qÝéYw•Äw^Y{;£ÙGUþh÷[÷î$ZŸõÈJK»†êäÚf²1¦#K®𝵒+5šE8ÂBÎå#óÂôØÁ•½ê¬FÄ}?WY]Ë#Hî‘')®²@R€òJ‚·PHÄ1FÕ€‚ÔìHÑD$¿„¾ÛBnYdÆhk¡g)ü6‘}Kd—Màà •çʈÞÓhŸU5@\8JÓj#ü nwdY«â0éľ¯ç.ôûƒX èD £^4ŒûÛéÔBï5¦imð]xžEm© ¢xÅ6RÛ* A¨œ£Œ’`Ô ¼¼‰æð‹²âû£â@ŸÑ%—åÞðá¡ðU±ý¹ë'ü^ýNž­~Lü«Ÿ8ü. ßô_. ÈÐJô zŒÅO½Ôsé<º‡Ú_Ž'\òfÞà 3+GÅ»öÿéÞ²žß7ÁØÅÜëäg™‹-s3Ju­Üç.zî É[ò>-!W,?¸Èÿ/ü[þæ¸Ê8_ÖW[,ÆÏÁ¢jXôN"p¢ÿ:" ÕHh þšÏ¢8M‡no2™ºa<Nò$ÞÁÚBˆá=oà…8êI<îóbxaÏó‚Ä‹O¢åˆŒö€Ô§8î@¤`Ü}ŸêMw)˜ì“08¹&‡@¤ íH;½(@¤à`GÉ™EAÊqEB<ì¤ç ·¡¨æ@¡ÎQ¡°S¡)Sü@…ô–ÿQÊ”¥µdÅ¢S£6cß”#=ê©¢Ñ×ã„ïÂ1ý~3>W¿£.s3!°*û¹ _"w %Ûäý¾bFèò÷/rþÉ_Üåo^ä'·«òáI£—È"«}4‘ú;û_$r§]LÁŸ“)õ¦¾mÓ«`l‡WAdÓxÛ~\Ç^D'Aä}Þž1OÄòL<Ú"h™1ºñõË_¿|ýòw/0äy%ÔMwþá¹i”é‘•Ì!†ñxû:¶Ç^8³Ãé ±¯fqdÏ¢ 'cz5 ®?ã9Þ ‡©äúrð6ë®^øìbQæ©X¨‹T”æ†âÔâ—µÈõ%Ås͵bÍ@SƒÈõá8'±©'Ì­kõlq…Ì1~h ùŽÕï׺^¥–Ó‰~TÃ-Ê,¦Þcïne—ÿÿÿPK!f bc” !ppt/slideLayouts/slideLayout2.xmlÌ–ÝnÓ0Çï‘x+\giÒôSthIW„4`¢ã¼ÄYŽml7´ $^ ‡'áØ‰×}©£“à¦vœã¿Ïùùäô<±®)jˆTg3/<êyˆ°Œç»šyï/þØCJc–cÊ™y¢¼ÇOŸ<SEó3¼á+@ƒ©)žy¥Öb*+IÕ„Á»‚Ëkx”WA.ñgЮiõzàÆóºýrŸý¼(ªŒÌy¶ª Ó­ˆ$kð_••PNMì£&$Q cwßvIoDË/?xÈÉCïâΖ4G ×°pQiJÐA)g”¬’3cÍK)–â\Ú}ošs‰ªÜètû½ {Ñ™ÙGÖØIpgû•›â麵ZÏ<¸³ù ÌYk”µ‹Ùv5+ßî°ÍÊÓÖ; ¸q¨‰ªuî~8‘ §Å^GåüUâŒgbâ1á·á][´1›Q”ym¤:»ö¥lé`éuÂó9äF»ˆ§Té¥ÞPb„ù±nHð—b“Ø„ùï—ØµN)Áìˆ>Ni•}Dš#’W½ÆJ‰¬3ð€¤¡£-#+IX~Ž%~wG¹¥(¬ÓÎÃÀ!ü3ȾÙe:§8#%§98†µÊ×[“G *LÈ ½Fw a“¶°ºE¸¥x÷HÆŽ\’ŒÃ7JICèò–ôä/ÊJî¯Þ ú‚¯¤.÷–*_;Õ;·c—Ûs¬É­Ä¶@­¹†è¾@ÍÇ´ðºdo«ÙÙnç ;·rR¼kKóe3¿an/c¹—Éß’8r ÎÍ·r“½íCÙZ¶ð>­°„¿ƒ«ÅÿÁoèø-i•ôfU_Þ¡8x ŠÐôN¶ ü t*Á×Óq˜Fápä÷OâÔûIÏGó¹2õzóÑd‘ zß\×£ '±Ü«!í%ØjÓ•_ß<ûõýç¶tÀ‘w…vpüœ)ÝÍÐJVC’L†Q:Nü$Œ~<ŸŒü“Åpà/ý8N“ñIÚ?ýf°0žf’ئîUîÚÁ0¾×ÖU&¹â…>ÊxÝu–àŸ‰¼²ÍeØëÚÁ›ÊMƒa4‰FÝ}‚on´Þš Yšøa¤ò5o{_µý“Kí’€î·K¦­‰‰ÝuÓÇ¿ÿÿPK!´(vX U!ppt/slideLayouts/slideLayout1.xmlÔ—ÝnÛ6€ïìíZ‘¨?ËFí²ãb@šsú´DÇB)’#i×ÞP ¯µ=NŸd$EEvívNœbØIS‡ßù#ÉW¯·5v6ˆ‹Š’¡ ®×A¤ eE†îûû™—¹Ž”S‚†î ÷õèçŸ^±Àå Üѵtƒˆº+)ÙÀ÷E±B5W”!¢¾-)¯¡Tùƒ_røQ±kì‡Aú5¬ˆkçósæÓå²*ДëÙ@8ÂP*ûŪb¢¥±shŒ#¡0fö¡IrÇ”·²’¹Žã5Ü‘ò¼˜ãÒ!°V÷Z™ãªDæ“`÷!Ý#›7œÍÙ73n7wÜ©JM°3]ß~°bæ/Ù˜ŽÿÕô‡¶ Û%¯u«ál‡®Ê×Nÿúz m¥S4ƒE7Z¬Þ-V×'¤ýV¿§T{ÕwìNغÓ‡Påv¿qïQ¢ñY·le£^HnhV´ùn:='ƒ@Aã&a¥Ña`Ò,ÉŒ€v8Œ²^¹Ý°Ù@nsZîôì…j•»+ªé¢ab!çr‡‘éo0`Z?c¿«GK´üM Š?”b­µQde›þƒéãW“0Ôïý\mÀZN0‚ä1yr4ÁUñÁ‘ÔAe%·PHij\ÕvUDM—F‡A"RÞAµ9ûäÆ"füný5!ø~Ò£6éóõ¢Ñ¾DÞÅzÑä])ÑÙ¼(ÿQ„A”}'ÿ M’^j,?'ÿßLz ùÙE)U11ÝÃ…°Xߪâi{k"Œ×„é†5Nz¡¶÷©èƒå¦yuè>ˆµOEƒl­ywhõ€ÞYOfwÛÑ-;Ùcga¦M¸Œ­–vì0ÌÌF½Œ­–ÝÛc÷âè9©/…¦ioÿêÆq#¤í9k^)ò¼Ÿ†“,÷rϼxÚïyãYšx³$ŠãIž'Ñõ'ýŠñ àȼJ~-Û÷ ˆ^4uUp*èR^´¶O#ŸÑˆ3Z™×ì{f±ªåYe Š’žÍ§²­mµz…̵ÿªÅü-dï6&_µ©¶3ÄÔóÍ.¦NDûÞ>GÿÿÿPK!<íjÓ¿*ppt/notesSlides/_rels/notesSlide3.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vÒ£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!~C0ZÓ¿*ppt/notesSlides/_rels/notesSlide4.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vRÊ£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!‘k‡·!ppt/slideLayouts/slideLayout6.xmlÔVíNÛ0ý?iï`e¿Cš4ý-jZŠ&ñQQx“84±=ÛíÚMH¼Öö8<É®˜vÐIˆ!Mûß\__Ÿs®ã›Ã£uIÑŠHUp6ðƒ†‡KyV°Ûw}5õ»R³ SÎÈÀÛå ?~8}E³S¼áK S}<ðZ‹~¨tAJ¬¸ ær.K¬áUÞ™Ä_!wIƒ¨Ñh%.˜W¯—¯YÏó¼HÉ„§Ë’0]%‘„b øÕ¢Êe¯É&$QÆ®þ’Þ`« MÉ£ÙP¹gè }:§b¸Ç•‰B6ÌÌ(q% 1[H13iœ¯f™IP/ô‚z¢³¯leàÙò[gâþ:—¥A ´xP²yÆGÖ¥•3ÝzÓÅÅžØtq¼':p;›V¸—t"G§Ò!|båð*qÊÓ;…>†~Eï)¢âlF±Ø¾Ž«&­±S‹¥× Ï6f“­÷©Òs½¡Ä¾ó°0$à¥ØœkÂüë9œëR)ÁìI=Ó"½Cš#’a¥‰D |Ò¨£­F6%aÙ K|ù,s¥¢° ÂÀIøg!›NÈ ÖÍ(NÉ‚Ó Dï¡i¦ò7ø,0Í=ØêVÿ ­½¢a +#ùeu|wÜÆÞ ·Ù§ÜIòVåb§Ü”sS±]íšï¡]®e%Þ—%–°ƒÓÏ­ýÏõk9ýæ´È:_–7ÏTŒßCEèz¯ö„ÿ !s¸Æß›hÜõš~2i&~|Üiù½é¸áÇѨÛh‡a;juï]cPF'\^\,U yO~|z|ø¹½:`Ë·•Ю¹ÀMªtm¡¥,€C’ôÚѸ›øIOýxÒëø£i»åO[Í8'ÝѸy|ošT÷SIlßûœ¹ŽÆ/zfY¤’+žëƒ”—uó ÿJ¤à…í¿a£î˜+Lá ‹:ͨÝktZu=›-ZsBæ†?ŒTžaq±²õ*íU;¶.?õaÚ†îî‡cø ÿÿPK!¿Ö?xÀd!ppt/slideLayouts/slideLayout7.xmlÔUëNÛ0þ?iï`e¿C’^Ò‹hi)šÔAµ²0‰C"Û³ÝÐnBâµ¶ÇáIvìÄГЄ4íO}rr.ß÷ôøðh[QT©JÎ&^tzˆ°”g%»šx_.þÐCJc–aÊ™x;¢¼£éûw‡b¬h¶Ä;¾Ñj05ƯÐZŒƒ@¥©°:à‚0x—sYa ò*È$¾Ú :a.™×æË×äó•b-VÒÆžÕ+‰ÊÌä¶9^оhÃì#«­Üßý4ݵÅ-ÿn„öp;ÔRéÖBY‡$ÅÙ0ñ“¨·£¼ˆûþ¢ßíõfÉðxÖ=¹5»5êSIì–þ˜¹ýõžmøªL%W<×)¯Ú«"ü†HÁK{[Da»ßkL'Þ ŠÂ~?Äí8š;-Xó¬ }8©ü„Åymǽàc˜Y—€Û¬ý–C uw;NÿÿPK!J›·!ppt/slideLayouts/slideLayout8.xmlÔXënÛ6þ?`ï h¿ÝoF"vêb@šsúŒDGZ)R£hÇîP ¯µ=NŸd‡”è[œX¶;`ûcÓßùÈsù‘æ›·‹’sÌë‚Ñé\ئiʲ‚>ÌO÷ã^lµ@4C„Q<0—¸6ß^þüÓ›ª_“ì-ÙLÀAë>˜¹Uß²ê4Ç%ª/X…)ü6e¼D¾òG+ãè ¸Kb¹¶Z%*¨Ùúó.þl:-R|ÍÒY‰©hH8&HÀü뼨jÍVua«8®FyoOI,+ˆ–=ü~¿0 ãsèpÌKˆ<Ì ¨„Ž£Œ§BäÆU’Iaêêžc,-:Ï«IuÇ•ëíüŽE&©Z Ójhaê++ÃÚqÔ&ê/¦¼”-dÄX L(ÜR~Z²/„‘6éº7Í?îÁ¦ù»=hK`m *£j&÷<W‡s_‚ g•žo]ݰôsmPñÈð›ðVˆ&fÙVy›~!©Z\ó£2Ö“Ù›‰Ð³]/V!úA5ÝΉ›øIM¬NhÛ-b3↹ê‹ÅeKéý-DŠhš3X¨ '©ÅD, Vöœ8í„2<ý Àõ—é­ÙWio8VòCùqp"Hî Z`n¨DÁ>FÉ.ÔŠÓìq$§³ÉŲ̈RÁê UܯÙÓEÖËþŽ çŒd0 ÷¼’Ùb é^m/Ž£(nÊÄ‘ïÛåöC7q‚viûqä… ¢K¹Ï¨±2ÝçX7ÞÄj˜Þ¬¿‰Õ0ý=X{«`‡°fx«`F‡°f|«`&‡° `ߪä"Ÿ“Õf9sOɤ¶T½µ§š}³;¤Z¸G 9Á)£™Að“ôjoAŸ¼;»w$û˜Í8w]éýcé‹é^ö­fþêÈ’¥Þ”2•sO/©!¦ZÀ9"S³8UÈS3×¢V^8ϼØqPÃ3Î(¿Q‚‚f óÒT^³[¸*¯ý)Ñõ¯¥jOân|[º·£‘-_âøÕoKŸwt´ås¼H…Ñð5±Õ„±K­?pG‘[B×C ;pG¶5aä«“ëÂmo %[÷¢¼vhÂ0ˆN,Êã”8N­G×Hà-=R z®eâ™9MÆ^”#5êñ·¢÷Ý}Jþ~xª’‡:scÆdU6s§n{çæn*x“¼?fˆÃ:î«ÿ—üE:Rdظ•;Y Dk’õÞD8ÿ½DN᯼LÁŸ¾3 F¡ô®Ã èùáøª—ÄÛ»JlwèÁ½=pœ¯úa –y¢Ë3ñhŠ d¦Õïßþúåû·¿×òCžVBÕègž›Z´–1ãÄ0&¡;Ї½¡ã{þuõ®ÆaОï†ñÕÈ{÷U>O8~?åX½{üšéÇöfR)g5›Š‹”•íã‹U±'Ì+V¨÷Çn_LæHÞ$£Ø·ƒÄó´°ÀÜt«f+WÈDÆ-áPõq®êU*9©®ª íbZCdìúÁéòÿÿPK!ã »¼»ppt/notesSlides/notesSlide3.xml¬UÝnÚ0¾Ÿ´w°|Ÿ’@*ÂÏTikQiÀu ‰æØžm(lê»ïØI ]ËÚ‹ÞÄŽísüýœœ\\îJ޶L›BŠ!nŸµ0b‚ʬë!¾¿›=ŒŒ%"#\ 6Ä{fðåèë— 5Ò2ƒ ^˜âÜZ5CCsVs&°·’º$^õ:Ì4y„¼%£V«–¤¸Ž×‰—«UAÙTÒMÉ„­’hƉì&/”i²©dSšHã£_@7ºä™ºÓŒ¹™Ø~Ój©Úo_o(†‘ %ƒÃz£>æ_ÅÖOÂÂ×Í” v+]º¸¡Ýƒü{÷ ÝÛYD«Ez\¥ùÍgi>{ãtØ\>»Ô±ªÀ½¦5t–¼Èº*Éš¡'”å’gL£ögÃÀ¨ï’þ4HH`X "o¥­g“œˆ5Ũ_ªÔ8„W¹QåÈîÜlxvU®ëƒÕ®ŸÁ7šV4N“‰2×¾RŸÓˆÞ§ñ>Ò™í1Ü´;?W ì.…w— ô‹dÀ]Ú=gþE¹‡G£'îd"¸_b”ÚzW‘)í„3"ÖÛQÅŠo[䌷Þ~Ÿ‰lA4¹=™´*å‘70? pò²Z®7åhû\çø3t†Š€ÔÀü÷ÿÚm™nd¯ Šî+žyR¦­du£y0ŽâY$Ý(§ó~0âô|2í&íÞø °sèÞtí ¯â£7+×cNºóOüÐ4&èß­gh£  ¦ýn4é¥AÚNæA2íŸãy·Ì;q’LÒÞxÏž\£k'ª™ïWYÓ=ÛÉ«þYTK#WöŒÊ²nÄ¡’L+Yø^ÜnÕ }K8|zçq§ÛïôzÚ ÀÖŒ­³¼î±”ëDÝl}yÀe`ïÄ/)øYÔÕq<âú ÿÿPK!„8^°žppt/notesSlides/notesSlide2.xml¬UÛnã }_iÿÁò»ëØqnV“*Îe©›FMûãØZ ,4ÙUÿ}l'½ªÑª/fæœ30¾¼Ú—ÔÙ© ΆnpÑrÂ0O ¶º÷ws¯ï:J#–"ʺ¢Ü«Ñ÷o—"f\å€?S1º¹Ö"ö}…sR"uÁa°—qY" K¹ñS‰!nIý°Õêú%*˜[ûËsüy–˜L9Þ–„é*ˆ$iÀ®òB¨&š8'šDAëýÒ¸á5MͨÄ$ÄÌØî‡k±’v{¹[I§HA1×a¨a\¿Þ¨Ù%ÛÙ‰ÿÊ}ÓLQ¼ÏdiFàæì‡.È0_ߨÈ^;¸2â“ç7ïœÅùìÓ~“À–Ô°ªÀ½¥6tÖ´H‰³(ц8+Š0É9M‰t‚#φ×ÿRãÀ°„ßr]Ï&9b2V‚`kªÔ8ºW™QäŽ>Ȭhº(7õÁj×NNàM+“i7d–ö¦>§~Nãs¤<=¸i:þ1^ë}&—q´FS¥×ú@‰]ó±h$P È¼A¼û5¼ÁRO(AìXp=Z0E¤&©©²¶µ¶®„¥+$Ñí«Õm\ƒä £—b¹-@¾çR¶¿BJ(:„š†îï-Z²Q¶ºÈ_"mFSKêï´ÍÂn8÷Æa{æEQ7ôÆÉ|àÍÃvÒ›L»QÐ?¹GlÀœºs ž*’™6ò?5±CÓ{ \+]Ïœ­,€B’ ºá¤ŸxIͽh:èyãy·ãÍ;í(š$ýñ¤={2½,ˆb,‰ms‹´iAô¦E––\ñL_`^Ö½Öü‘HÁ ÛnƒVݳwˆBa½^Ô Û~] ÀÖŒ­)yÝF1•?‘¸ÙÙëÉ ¼kð?¨oÇ鈩±y±£ÿÿPK!…|«˜»»ppt/notesSlides/notesSlide1.xml¬UÝnÚ0¾Ÿ´w°|Ÿ†„À *T$ÀT©kQiÀuͱ=ÛPØÔwŸí$@WX{ћر}Ž¿Ÿ““Ë«mEÁ†HUr6‚ÁEÂ0ÏJ¶ÁLJ¹7€@iÄ2D9##¸# ^¿~¹1ãš(`♊ÑZ‹Ø÷.H…Ô„™½œË ió*W~&ѳÉ[Q?ìtú~…J›xù‘xžç%&SŽ×aºN" EÚ`WE)T›M|$›D™4.ú¤±á†—4³£’;c›ïR,ÅBºíÛÍB‚23ŠAÀPe„~³Ñs¯lã&þ?á«vŠâm.+;n`;‚Fþ}úvl5Àõ">¬ââîÄY\ÌNœöÛ ü£K-«Ü[:aKgIËŒ€ë ­XP„IÁiF$ö<[JÜpüSÆ ÃZ~Ïu3K ÄVd¢Án©Vc^KdGQ½æfE³ëjÕ¬wÝä¾Õ´¦qžL·%së*õ˜Fø>÷‘>ñlÍMÛÃñóxE¬·‰ °wÙ@·ˆbªôRï(q/Â>i(Pd¿A¼Ç%Y)µs¨J§” ¶·^k~¦¸r¶ÖxíìwÙËH¢û³IëRy óG¯«åv]=muî~†Î¦"LjÃü÷þZ#©‰le¯¡Šî9Í©?ÓN4 ûáÜ›„Ý™EýЛ$ó¡7»É·tÚ‚Áäî±æÌ ;éÚ ¯Ž¼Ém9ëÎQhã·ÕYÝŠy|¤eëG®HÆ¡LQÒz¼•úð벒磇D_òÔåÙðÑcá«â$úN±¨O±Öä ³,!Oͬ2IýŸBL‹>§Úšþ·IeO=~÷Þv;o¨ß¹•“âMûº·læ÷Ì­§˜{‘~/sqÏÜ’s“+÷¹³j?•»BË–¼ß6X =ÿP”þ/ü%=+Zå½ÚÔïX´•ñ©,B—Ð'‰´å¿ ²€®ÍPðÇl1K‡³pæQè»ÑÒ¸³4 Ýá"‰ÇWó¡?Ž£O}3¨ O byPCZlµéÊÇ—Ïþòåó_ûÒG~Ÿ„vèÛGø\+ÝÍÐFVCšŽ“`>JÝÔ–n´ÝÙ2‰ÝeFÑ<ÍæáÕ'Ó†úÑ$“Äöº¿æ}—ìGúäºÊ$W¼Ð¯»†Ûü#‘‚W¶çö]—Ü`S¹C?ŒÚŠåYßúÑzkÞ•‰F*_bñº±zÕö#7·K~ º—iobbï2.¿ÿÿPK!6 ·Ë "ppt/slideLayouts/slideLayout10.xmlÌ–ÝnÓ0Çï‘x+\giÚ´k+:´´ B0ѽIœ%±í†„ÄkÁãð$;q»"µÛ$¸‰Çþûœß±OÎó늢šHUr6ñÂ“Ž‡KyV²«‰÷~™øC)Y†)gdâmˆò^œ=}ò\ŒÍ.ð†¯4 ¦ÆxâZ‹q¨´ V'\ßr.+¬áU^™Ä_@»¢A·Ó.™×®—‡¬çy^¦dÆÓUE˜nD$¡Xƒýª(…rjâ5!‰»ú¦Iz#À[£—kÙy²†‘Ð;×ÓÍà ,KM @èL.SLÑ’¬µ¦ÄRbz¬~)ÅB\J»úM})Q™µVÅ Úí4ûÊjÛ n-¿r]<^ç²2-PAë‰ÁÛ˜g`ÆÀ”6ƒén4-Þî™›ó=³·ApmSãUcÜ]wºÎJ¸õÊÙ«ÄO?)Ä8øcÜoÜÛÎh|6­(Úh#ÕÎk>ÚÎΘ–^Ç<Û˜M>Bkñ˜*½ÐJì‹0k†{)6'œ0ÿýNx¥§”`¶¢Ï¦´L?!ÍÉJ^c¥‰DÖ¸ ièhËÈJ–]b‰ßÝRn( k´³0pÿ²ç@Þ8Sè’├f`J÷1àTⲄKМvö_ïCܤP!ØÝ`¼Ë_@5Ý‚~`< u# óÛ[Z§ŽØrAR÷š’šÐämDŽ_¥<\½w¤zÂWRËGÇÊ—ù^õǾ ‘» 3¬É `<ôdpàÕWøU`š»£ßä¾dÛ¯iØš•‘ü]“ȯ ›þµé6ûȽŒïK®ïÈ%œ›»röCÙåZ6ð>¯°„¿ûäŽÿßÀñ[Ð2#èͪúx‹bÿ1(BÒ{AÚ„ò/@æPÝßÂùðt6:?÷;ó0ò£Î¬ë»½©ßKñiÒŸ'Q'þîŠ%e81ðåNi‚`³M›>~ÿøùì÷_»Ô[Þ/„¶qeü.”n{h%Kð!ŽGƒîtûq%~4úçÉ ï'ý^Mãáù´7ÿnʵ0§’ØZðUæªÈ0ºSGVe*¹â¹>IyÕ¤à_ˆ¼´5iØi«È›ßNo0…Ýá6±€m®µÖš²0þCKåk,ÞÖ6^•ýÉM퀢¹=L»)ÆwW„ŸýÿÿPK!“ ˜Jm$!ppt/slideLayouts/slideLayout9.xmlÔ˜ÝnÛ6ÇïìíÚÑ÷—Q§°¸¦F>#ѱPIä(Ú±;èkmÓ'EYRã4‚£ ØIK‡?òœCþEòÍÛ}ži;ÌÊ”ݺ0u 1IÒâa¢º[ŒB]+9*”‘Oô.õ·—¿þò†ŽË,¹A²åš`åMô çtle¼Á9*/Å…x·&,G\üeFÂУ`ç™a›¦oä(-tÕžõiOÖë4ÆW$Þæ¸à„á q1þr“Ò²¦Ñ>4Êp)0²uwHü@…·4ïöº&ÍØN<°ôKáy¼Ê­@¹x°Lc¾eX{LùF›# $iSÒ;†1ÔŠÝ;FWtÉdÓÛÝ’ii(…Ð õB™É¿ÅNVŒš?ÔU4Þ¯Y¥ˆˆ¶Ÿè"qø5àÞs-®ÆÍÓxóá„m¼¹>amÔ­NÁ«jpOݱkwîRžaÍ:zU·¤7$þ\jþ€û•{G‹Êg(éF…ŸJÙU/e¥ÌÉHøŽi;¡tÑõ‘ÓnLìȼÀ«|µ|ÓTm+2óýŒ$h}/Já)*â õ¾bf%_ñC†e}—Yj@ ^Æå—‰î4ô£Ô[ )üÈvL4ʬ<\Œ>­ÄÊËù<è8&‹_γ4þ¬q¢á$åÚ{TrÌ4(±Nè\ö!‘¸H–ˆ!N›\ˆJgk'¥ß?O²S'¹žöË ÅxC²D Â"åbÅ颫}cÝ?ñNAXe> ×öº™w};²<5ËÝ0püÊ¢OæŸK·–#v#—NZ$BJ *[mo…^ÊV/ÌYµ”š³½xvØæDñœ†Y®Û›–G@Ïmx–Àªé 4Û@ ( ×†v~œŠú жCÌÎEƒ0peæÎEôþI颀Q è{Á™IÊiMV;ÜãÖc[8œ!„–©.ÝÛ l­4DJÒ¹Ûôµžùz8¡eyBpþS ‘‹o@ ±:kþõbu4n ±†Ö.p éÐ.p éÐ.ðy ¼08n`^¹Ïe(·9egŸsŽyµ]!ÞÝȸCèQŸ¨‘UEìY9’½ö&=v—§”üÝì\%÷ëÈ-¬´c'7T¯Ýš³*xl=Ôñ{aKø‰_PÇo•¥ Ön·ùýQô‡ˆ¢8Ÿ ôÉ@¾ð]ü÷¹gÁŸö|êz~茂©mŽÜkÇMg‘72ÝȧpÿÚ÷¼¯õ1¼„8—'âQ%AÊŒÒïßþúíû·¿y]ž—BYÔ‡x!<7%W5mËRáÃlùö<œf–»¹WQ0š.|o´ð×ÏÂéܹþ —–;Ž–· ¿'õý„å>¹¡ÈÓ˜‘’¬ùELruÕaPòˆ%©¼í°Lu?±CBS?p,; ªSŒZ]ÊÁÂYû¢ÌØ{D?ìdºr©¦sùˆ¦ÅƒšK ¸^ßî\þÿÿPK!ÕÑ’ñ¼7,ppt/slideLayouts/_rels/slideLayout7.xml.relsŒÏ½ Â0ð]ðÂí&­ƒˆ4uÁÁEôŽäÚÛ$ä¢èۛтƒã}ýþ\³M£xRb¼†ZV È›`ï5Ü®ÇÕgôÇàIÛöírÑ\hÄ\Žxp‘EQ€–h[0E©íÝM ¿Õ~N¾¤Ã›|ÙmkoÝ¢Aü"FÃ!yxf4š—¯î b­1«ó’öl÷…c[˜¦e–ÓyÏþx;n%¶UsD3DJŠ{ö®íW?þð²êÒ’ãú-ª9fx¡uõìçU·Ý®Ó.Pý¢¬0…w³’ˆÃ#›·3†îÀ{AÚžãDíåÔÖãÙ!ãËÙ,Oñ¨LW¦\9a˜ ;¨yUoÕ!Þ*†kp#Gï,év˜NH&îÓ¹º~À3+Ïî'ÇqÁu¥g<$ÌZ#Ò³§s×n_¼lkc-‰ÁuuË0]¿fÕ¤ºar†wë>Á¥mQTÂÂ|¡Íä#]K¡½7|nDÔ½Ÿ±BÜ Vçø ®m¡Ã÷ÜJ•2ÝhÓÅû'lÓÅåÖm3A{kR±+µ¸ÇÛñÌvÞ`”AnJñ¢$B–Ic³øºº.ÓemÑ6'°P{m,â^-,þPßEÆ€™Ÿzö/+Ä€‚zˆ²“Âf‘‡#äub7qô΃0‰“dgû¨[±š¿Æea ¡g3œrÉ´¾®¹25&rjöªËïeö ,§p” è`ü¢dŸl‹\ѺgwÜ €©¹|ÂØƒ¶ýfºó†“aIššOøÁR^¦µ™CP¹¾ Ï>€J æËõ®´¥’·À´õq¢GVrwfWr£Íß0b„8Þáƒw >dÜÖ±y4ü$ "×ÿ^øÀžË‡ÉäIþ:pFAy-'r/[ÁhÐiõÁ¸5 ‰ç%^Üw“϶98nžxœÏW ¿_)xØ©¬ºàC‚m6À/\§íÆ’]_,‡ËEÍDF>55CÍ É3l]h¾ËPÿï Ò‡’ki¸€Eá~]£oM²«b®),â( »~ìF‚§@S× |Gè†Èh"ûN¹Í™?‹É>ÿãœÅ5jÝ ÅàS‚SŽâ­q»ù@¨K=ï–•`ý¯ÂÃB4?=;åò«±aº|øR_høõN”L;Ì N‘ûD»CÅ#IÛ£x%¡d‰Èvã„á ‰‚†FÀ¸@Y|C qsÈ"%BÂk,$ ‡$¦!ÉÓ¥ÅK g9·t ÌFµ˜¡Þ¤+•IÕl;SÊc=bÊ NKšY¯19À½Ì G¸¿]äìpï’WGx—+Æ»—1qŒû|ö¤÷S‡qdÂx\–âÄ·ã8Í/ó Š(Ü(ñù½?$PÑE€{’°Ë%f/ªö¿×6p.t˜î´MFš˜“ÃáøòùxûîK–*Ÿâ²JŠ|¥êo4U‰óu±IòÝJýý}´pT¥ªq¾Ái‘Ç+õk\©ïîüá-¾«÷q+äü¼ºÃ+u_ׇ»å²Z1®Þ‡8'¿m‹2Ã59,wËM‰?»Yº44 .3œäª’㌘ â-~Jk%ˆ«d—«÷Ü|˜’y]QÁ:-¨ñøì9ŠÎÎÚ|ÔéWUîQZ*ŸpºR5öQ—÷o—BZŸêEìÓêµ ›Æ5{L!­Oõþuö˜^¯I}N¯íû¡š­î@©)žÚ6ÉÇuý}S^·RS´äu(5Ep¢xaŠö™RS„'úF`Ž'è3¥}šäÏxãº]m;•m‘þtVÝuêœïµ–ƒ1ÔœŸ×’ÅÆS†?eDY'ã:É•úëè­‰¾W&8¥—Áw1ÈѺ:-ÌeI>«íÞ«6¯«j&Öô×í6YǬ†Û$Mê¯iüsÅ©Š4ÙDDÈØI]Ãö¤Ø^NÐÛ•˜••²¨ÿHêýÃÈe&wUkzW)‡¢"ÝÉÄgm³¦xÊ~)6T×ù8$'ທk ““†«)´ûAÛ™gG;6…pè¹Sœ\LtÂ<ã„Í…Wœ`5›Å ÷Œ5Ñ öÕö CÁtºVã‘R­qoh?5çóÞ½§/5¦XmãLõ\êë<=-81n¢ƒa¸Ç›øX°‡Ñ•µ 7Ó¢M(®…æÇF\«\YÛÐx3›(t›j,64ƒ½a3(ÁxÀ™3I$_l¨µn!{2ŸZÐ `„D̤ØxÒˆ›À£ã±ñ<ßñE¤Ø@Z¾5>Ú zfL´‰¢‰Ø006 † ˆaÃúobc_Ä ½oŰî5H° ¢Àpù2ù 6¢w6~h»PÔ—bƒ4|^›Ð ꢇ`Ä- i´L@×± LÏйú )6Ž$Ú˜f·ë4Ó–@׉lè¢}`OŠ õð(é’b£iþqu%Úxó‚Øxï„b´”bCZ°ŸÊ®bCÛfB´!ù¨­ñEê )6îElè ól'-4C°Åp%I;¹#ÅÆ‚ŽgùÓ°yÉhCŒGXJ±1#;°Ä ë±ÑBpKÒFÞîlî ŸãFX›ÏÀ t ‚Yšèˆík;К«97Žæ†_°à†¬À=_ÌŠfåAòÇçˆ1[i¦¹¢ÿÒ, ¡.a¸ÎMè¨Ûp¸q#çæòs&™ø»›ksp…ø%Ý›¦A ¸¶?ä›ä3e š,Ù—LÓ|2•ø¶ hü´p_kLš6X ݸ‘ssùA#04ÌÇ 0ÌÐè—K’]¤9<.]áÆA¶oOØp"S¸1½È—OóÆB/r/åÆÑ0F?_ƒoMxPÀA$ÿó´Qÿ°Z_RžÊd¥þ©ÏB@ ÍáÂ2-máÏ\x˜zt-ðo„©zŸé yN.ÂY’~mߟbò“w¨²d]U±­ß¬‹lY°w6–ìdö•nïP5ït(ïé朗lˆ[Ј\ÓõáÂ%#va‘UóÂEÐ_ÙA à¸Ñ7UùÄ”-ÏD ÔZXP£î;î¶ ólÏ -ï[ßVü›? Èüºÿ ÿÿPK!´ÏX¹$,ppt/notesMasters/_rels/notesMaster1.xml.relsŒÏÁ Â0 à»à;”Üm·Ddí."ì*óJ—uÅ­-m÷övqàÁK ÿR7ïy"/ Ñ8Ë¡¤´ÊõÆj÷îz8‰IÚ^NÎ"‡#4b¿«o8É”Cq4>’¬ØÈaLÉŸ‹jÄYFê<Ú¼\˜eÊmÐÌKõYUG¾ “´=‡Ðö%nñøí†Á(¼8õœÑ¦'XÊYÌ  J×ÉZ+š=`¢f›ßÄÿÿPK !üܘ¤| | docProps/thumbnail.jpegÿØÿàJFIF``ÿÛC     ÿÛC   ÿÀÀ"ÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ýS¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢ŠñÿÚ7\øàßk>*ð.¯ák=?BÑîõ+Ë=H¸»–ᡤ Ås@Bã•nN}©l4®ì`¢¾kðOÇßx;Â>×þ*kF·?‹ôè/4/øÂ÷òjNÆ%šo݉§i×,ÈÉù€®æïö¥ð> ÑüEiw©ë «ÞM§ÙiZ^‘us©Éuc<ÍcóQãÛèێzŒÓЕ®§­Ñ_;x›öÍðŦ£ð¸èVÚ–¯¦ø»[»ÒnÝt[Ö¸°kx'2Fð¬[’eš8Õ£pO1ñµKkñÇ‹?á ð½æ°4S^’ «›£["ª.@°Ë1 £,ÄM!ùÔW˜þÍÿµoŒß løOIâ—ð_‡›ÄÒ:JúÓipÆtÆÆ3lÞJà`çŒ Uu_×QwþºmQHŠ( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( •þ6Ø·Ãωš†½/‹|^ñ‡Ä¯‹!–ÿG—Ã3xZk‹»[(.¡e¾ŽþKyŽxÒHÙZ=­ƒ(C¯8Ükèß¼wá߈'žòM'TðOü'°ømmå–S©@n"µHÚ#Ÿ-cI%ÆA%YßpÀÙ4„>ðµö‹y¤x~ÓM¹Ñí¦³²’Ø1Å+ï•NϹòä¶Ib[©$ׇà-ütÞ2O X´íru&BÒyÅ<³. ÆýŸ(ld)  Ë[¯ë­ÿ!t×C¸¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(ÿÙPK!àØð—ppt/theme/theme2.xmlìYO‹7¿úÄÜíÿYâ öØNÚì&!»IÉQž‘g”ÕŒŒ$ï® ’ …Ò´ôRè­‡Ò6@/é§Ù6¥M!_¡Ç–l™%Í éÍï=ýôÞÓ“ÆsùÊiJÀ1bÓ¬ëÔ.¹@YH#œÅ]çÎá¨Òv0‹ ¡ê:sÄ+»~pHýŒïÀ®“1Ý©Vy(Å_¢S”É{ÊR(d—ÅÕˆÁi7%Õºë6«)Ä™2˜J³7'"p˜›tvKãC"2ÁsAHØAn Õò Ÿó€0p IבãDôä È…¼Ñu\õqª»—«K%"¶èjz#õYè-¢£ºÒcñx©èy¾×ì-í+›¸akØ6—ö†¡œiÁEÇúýNà/°¨hZlZƒFÍÀköøžŸ ¼Mo?+j ¢é[|ÒªžW ¢ÙÜÀ·ÜÞÀkxJÎŽ6Юßlål— %׬ðŽïZõ|…ªjÙUègb[®¥ð>e# PÁ…g@̧hC‰ Ác†ÁŽ™xS˜Q.Ånݹ ù›=ÕR;jÚ…(䢜à!ÃSÑu>–V òúů_<¯_<={ôüìÑ/gŸ=úÙ¢x f±®øêû/þþöSð׳ï^=ùÊŽç:þ÷Ÿ>ûí×/í@¡_~ýôçO_~óùŸ?<±À{ Žuø!N7Ð ¸MS97ËhÌÞLã0X×èe1‡Ìu,è¡H ô9$Ђë#Óƒw™¬6àÕÙ}ƒðAÂf[€×“ÔîSJú”Yçt=K÷Â,‹íƒ³™Ž» á±mì`-¾ÃÙT¦<¶™ dмEdÈaŒ2$@~!dQ»‡±á×}2ÊéD€{ô!¶ºälZ)]éŒËÜFPÆÛðÍþ]ЧÄf~€ŽM¤\ØL"b¸ñ*œ ˜ZÔèÈ=(Ƀ9 ‡s!##BÁ0BœÛtn²¹A÷º¬0ö°ï“yj"™ÀG6ä¤TGèQÀtj匳DÇ~ÄdŠBp‹ + j®¼/㳭ᾋ‘îó×öY\í ’ß™1Û’@Ô\s2H¯®•ôgçÖ÷µÊìöÊÞcغ´Öëù6Üz(‹ð»_Äp–ÝBrݼ¯áïkøÿ±†o[Ï_¹WÅZèËc»2“n=ÃO0!bNÐWežËéE#)T¥´|d˜&²¹ÎÀÅ ª6`T|‚ErÀ©¦¦FˆùÂtÌÁ”r¹Q(±Õ¶Úhfé> i­V>¥J(Vr¹Ñ”r¹-‰BÚl­Ç–æU/VÍ%\÷MHhƒ™$­Rx 5³ aѱ°hçæ·²P—ETäú0ÿƒÃ÷ F2ß AQ§B¿Œî…Gz›3Íi×-Óëä\/&Ò -ÝLZ&0Bëâ ŽugRƒ^îŠM­ö뼈¬Õ’™=p"×\×fB8í:yD”Ít*íñ¼nBg]' Gÿ›Ê2e\ O ˜ºUÌ?Å1@p*s]ÉVÜjõV>Çw”\Ç}÷<§.zÑd‚B±E²êÊ{…ëÝ·ç:“¤’èŒÉŒÝ†ÒQ~«–;0Â\,½a¦%÷Ê‹kåj±ÏVK’i;Š^Ì ¸j/éhóPL×geö“ÇyÞz×=_i­hnÙ@ò]Ó^?þ»M^cµªû«¢t¯×ºNYë¶ío¿!hÔVƒÔrÆjÛöŽ <hÃ-SsÛqÑ»ÁzÖæDy®T½×t|_fþ@WgDð⯀SùŒ”0•@IËêr*ÀŒá®óÀõ{^P÷ƒŠÛö‡¯á¹•¶ßkTz¾ß¨ ýš;è×J§ˆ$­ùÅØ#ù,;±‰SìÈÁ.Æè~€åDÔú@RÚŽ±ÿ>ÏI˺Q(£WGâð¾zÞ£³½y4Sv¯BÔÎ6€¬0È”•nÐöØ€o·¸YLÂbrV5໊àf÷ñÃÖ×>¨¨li–~ Ùldc-pJÉ×EyRFÄ•óÊνÑ#Ò| G4ñ0?`&D1.‘Ú‚«>¼EïÆQKÅ<›àbÔ´Ä“öñÉÍ¿ÅíÏ/vsHõ˜>Çt=eç ð£_—û¾b-,q¾‡Œ0 »ªï`ÉI¾Æ˜à–®þVV:J†OFU?èÄEOp„ýƒg´ .º1­¤3לȻ¼ÓKT‚¯óºS0@»-Zà^2òœ´¸¤-\W›²œV°í8‡]×nв¤¸ ø™Qâ<¥…‘{ýŽx”¾ xàEh[q¿ï!+òV›œ@Vv4ïú¹äìXÔò$Bº BÞÍ[óUˆjxÆ,þ“¾:ÅK]>ý½ä»_ÿÿPK!¢Çf¦z?ppt/viewProps.xmlŒSMoà ½OÚ@ÜWÒnK³¨I/ÓN=Lj·;’"@@Û´¿~éçÒCo¶ŸýìgÌlÞ6 m…óÒèG FB3Ã¥® ü³úzÉ0òjN•Ñ¢À{áñ¼|~šÙ|+ÅîÛ! Ð>§^‡`sB<[‹†ú‘±BV×Ю« wtÄ"“$IIC¥ÆÇz÷H½©*Éħa›FèГ8¡h€áýZZb³°Y'<ÐÄꛑJ§»Dõ%v>äã_ˆ* €U½§““klel„>ÞÒ4BdÈã•äââ²¥âW^o¢-uKF¬{‡ñSÎhî[¯”½bÄKbˆî‡Qr®²¹q²–µNDûO³cαc—Uo`²…gAìViÜ#k|'ã^Ù)¥fÙ©ç…¤#¿×Ís+]› üJ´a ÿŽäNÕÍÿÂ÷E÷’O çñq#ÔNò¥¥ Î1(žÂYÀ`ÝÒ¢Ù³ô·_þÿÿPK!ñ'ˆ._docProps/app.xml ¢( œTßoÚ0~Ÿ´ÿÁÊÓöágW!ãª!&DèžMr!Ö;ò¹´ì¯¯7)´Ù$ÆÓwwß¾sŽÞ=ç’Á Ðjô»½€€Šu"Ôaì¢Eç6 h¹J¸Ô ¦Á 0¸cŸ?ÑÑ+‰“P8 2k‹IbœAαëÊÊURmrn]h¡NSÃ\Ç9(z½›ž-¨’NÑ^qr´ÿ+šè¸œ¢Sáô´å29° ßúK›Ùè =¢÷E!EÌ­³ƒ­Dl4êÔ’uÕƒlô˜ÊÒðœèÌtÍ«hQÍÆÖªƒ±Pd›é'òe4~¥a ‘n¸áË Ù`è(o!ÝJ‘²1 _ý©­Ox@—"I@½V{4¼ˆéj5“¢¨ 5¤Û˜K˜9wXÊ%‚“nt ¼Üü† ã˜G;9Blµ!(þ¸ÝßdÏJO§Á‘Á• <Í–ZÃZY$;„„†M²‚çÜs,Fån<ø'ÑkEîAÀÚý+´+ûH$¬¼¢Å¸½ET>:|é°o±NÝÎm‹á·ç†W3x»ý8÷N_ž× —boDkm)”–ÌÅAµR"@K¼_ïKߺoôr©—ÿó;l-þ^~°¹6ìE3\Ø>w›©úC¨ß¸+"=çêw}™¤ÛŒHÜhÞ}“ Kç°‘%–qu€¤æ|,”âÁßKÖw{îWƒ:W~ãõ!c/ÿÿPK!¤c :k§docProps/core.xml ¢( |’ÑjÂ0†ï{‡’ûÓ⦡F˜Ã‹1AX‡cw!9jX›„$³úök;[•É.“ÿ;_Ï9i6;”E´ç•ÑSDCF*½¢÷|Qä×’FÃÁ£»¿Ë„¥Â8X9cÁ>ªMÚSa§h‚¥{±ƒ’ûAMè:ÜWòPÝ[.¾øp2>à—Ù e!Z™ÂÄkcd†ÿ2M™ƒ½j^”Z¢?f§õü~dTE—Ð%ëtþœ/«'Çd'“†4ÔNáppt/slides/slide1.xmlPK-!XM³Ô=4èppt/slides/slide2.xmlPK-!ƒi,PÒNX!ppt/slides/slide3.xmlPK-!ð‰DžÓ¿*]%ppt/notesSlides/_rels/notesSlide5.xml.relsPK-!i¢_!Ç,x&ppt/slideMasters/_rels/slideMaster1.xml.relsPK-!ÕÑ’ñ¼7,×'ppt/slideLayouts/_rels/slideLayout9.xml.relsPK-!ÕÑ’ñ¼7-Ý(ppt/slideLayouts/_rels/slideLayout10.xml.relsPK-!ÕÑ’ñ¼7-ä)ppt/slideLayouts/_rels/slideLayout11.xml.relsPK-!é§×‡"J!ë*ppt/slideMasters/slideMaster1.xmlPK-!J¯u9Ò¿*±3ppt/notesSlides/_rels/notesSlide1.xml.relsPK-!ÕÑ’ñ¼7,Ë4ppt/slideLayouts/_rels/slideLayout1.xml.relsPK-!ÕÑ’ñ¼7,Ñ5ppt/slideLayouts/_rels/slideLayout6.xml.relsPK-!ÕÑ’ñ¼7,×6ppt/slideLayouts/_rels/slideLayout5.xml.relsPK-!ÕÑ’ñ¼7,Ý7ppt/slideLayouts/_rels/slideLayout4.xml.relsPK-!ÕÑ’ñ¼7,ã8ppt/slideLayouts/_rels/slideLayout3.xml.relsPK-!ÕÑ’ñ¼7,é9ppt/slideLayouts/_rels/slideLayout2.xml.relsPK-!ÕÑ’ñ¼7,ï:ppt/slideLayouts/_rels/slideLayout8.xml.relsPK-!n*P¹ºõ;ppt/notesSlides/notesSlide5.xmlPK-!¤%‚¾éë>ppt/notesSlides/notesSlide4.xmlPK-!MPþ`Ì0!æAppt/slideLayouts/slideLayout5.xmlPK-!‰©‡ «5!ñFppt/slideLayouts/slideLayout4.xmlPK-!A,€ˆ Ü !ÛJppt/slideLayouts/slideLayout3.xmlPK-!f bc” !$Oppt/slideLayouts/slideLayout2.xmlPK-!´(vX U!ÆRppt/slideLayouts/slideLayout1.xmlPK-!<íjÓ¿*Wppt/notesSlides/_rels/notesSlide3.xml.relsPK-!~C0ZÓ¿*)Xppt/notesSlides/_rels/notesSlide4.xml.relsPK-!‘k‡·!DYppt/slideLayouts/slideLayout6.xmlPK-!¿Ö?xÀd!‹\ppt/slideLayouts/slideLayout7.xmlPK-!J›·!Š_ppt/slideLayouts/slideLayout8.xmlPK-!ã »¼»ddppt/notesSlides/notesSlide3.xmlPK-!„8^°ž]gppt/notesSlides/notesSlide2.xmlPK-!…|«˜»»Jjppt/notesSlides/notesSlide1.xmlPK-!™ö™®Ó¿*Bmppt/notesSlides/_rels/notesSlide2.xml.relsPK-!7YQdº« "]nppt/slideLayouts/slideLayout11.xmlPK-!6 ·Ë "Wrppt/slideLayouts/slideLayout10.xmlPK-!“ ˜Jm$!vppt/slideLayouts/slideLayout9.xmlPK-!ÕÑ’ñ¼7,Âzppt/slideLayouts/_rels/slideLayout7.xml.relsPK-! J¤ ÁÏ!È{ppt/notesMasters/notesMaster1.xmlPK-!~·ÚEEQ6Èppt/theme/theme1.xmlPK-!´ÏX¹$,?‰ppt/notesMasters/_rels/notesMaster1.xml.relsPK- !üܘ¤| | BŠdocProps/thumbnail.jpegPK-!àØð—ó”ppt/theme/theme2.xmlPK-!Øý¬¶>›ppt/tableStyles.xmlPK-!ö(º‰0œppt/presProps.xmlPK-!¢Çf¦z?Óppt/viewProps.xmlPK-!ñ'ˆ._|ŸdocProps/app.xmlPK-!¤c :k§à¢docProps/core.xmlPK::µ‚¥OpenLP-2.4/tests/resources/presentations/test.ppt0000644000175000017500000026400012657640340021331 0ustar raoulraoulÐÏࡱá;þÿ ±þÿÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýÿÿÿÿÿÿÿþÿÿÿþÿÿÿ  !"#$%&'()*+,-./0123456789:;<=þÿÿÿ?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entryÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿþÿÿÿþÿÿÿþÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿ ÿÿÿÿd›Oφꪹ)èMS PowerPoint 97ö$_À‘ãr ôCurrent UserþÿÕÍÕœ.“—+,ù®DÕÍÕœ.“—+,ù®\éýÀ(T\´ _PID_GUID _PID_HLINKSéýAN{DB1AC964-E39C-11D2-A1EF-006097DA5689}Aè"é(€àà€òØ/È 0ÒÕ|·DTimes New Roman·DArial ·DWenQuanYi Micro Hei0·DDejaVu Sans@·D+mn-ea¤€fÿÿÿÿÿÿÿÿ©  @£ÿý?" dþ^ÿÿïÿÿÿÿþÿ}  dþ^Ô ÿÿïÿÿÿÿþÿ} " dþ^Ð@ÿÿïÿÿÿÿþÿ}  dþ^ð`ÿÿïÿÿÿÿþÿ} »dþ^€ÿÿïÿÿÿÿþ ÔðÌðx46      ðc ð$¸ÿƒ¿Àÿ@ñ÷ð8ó€ó€Ð>ÿ úgþý4UdUdUdUd¬Ú ôüÿÿ¬ÿÿÿpûppû@ <ý4ªÈªÈªÈªÈ¬Ú ôüÿÿ¬ÿÿÿúgþý4;d;d;d;d¬ (ùÿÿ¸ÿÿÿpû@ pûp?Ù Ú %OÙ Ú =ðŒóóóóó /ðŒó ó ó ó óPÿÿÿêø2ï`ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²`ð ÿÿÿÿÿÿÿ™ÿÿÿ–––`ð ÿÿÌff3€€3™3€3ÌÿÌf`ð ÿÿÿ333ÝÝÝ€€€MMMêêê`ð ÿÿÿ€€€ÿÌfÿÌÌÀÀÀ`ð ÿÿÿ€€€ÀÀÀfÿÿ™`ð ÿÿÿ€€€3™ÿ™ÿÌÌ̲²²£ÿý?" dþ^ÿÿïÿÿÿÿ,þÿ}  dþ^Ô ÿÿïÿÿÿÿ,þÿ} " dþ^Ð@ÿÿïÿÿÿÿ,þÿ}  dþ^ð`ÿÿïÿÿÿÿ,þÿ} »dþ^€ÿÿïÿÿÿÿ,þ£ÿý?" dþ^ŽÿØÿÿïÿÿÿÿ þÿ}  dþ^¥ÿÔ ÿÿïÿÿÿÿþÿ} " dþ^¼ÿÐ@ÿÿïÿÿÿÿþÿ}  dþ^Òÿð`ÿÿïÿÿÿÿþÿ} »dþ^éÿ€ÿÿïÿÿÿÿþ £ÿý?" dþdÿÿïÿÿÿÿÿÿ þÿ}  dþdÔ ÿÿïÿÿÿÿÿÿ þÿ} " dþdÐ@ÿÿïÿÿÿÿÿÿ þÿ}  dþdð`ÿÿïÿÿÿÿÿÿ þÿ} »dþd€ÿÿïÿÿÿÿÿÿ þ@£ÿý?" dþ^ÿÿïÿÿÿÿþÿ}  dþ^Ô ÿÿïÿÿÿÿþÿ} " dþ^Ð@ÿÿïÿÿÿÿþÿ}  dþ^ð`ÿÿïÿÿÿÿþÿ} »dþ^€ÿÿïÿÿÿÿþP£Þÿ}" dþ^Øÿÿ þÿ} dþ^Ô ÿÿ þÿ}" dþ^Ð@ÿÿ þÿ} dþ^ð`ÿÿ þÿ}»dþ^€ÿÿ þ`£Þÿ}" dþ^ÿÿ,þÿ} dþ^Ô ÿÿ,þÿ}" dþ^Ð@ÿÿ,þÿ} dþ^ð`ÿÿ,þÿ}»dþ^€ÿÿ,þp£Þÿ}" dþdØÿÿ þÿ} dþdÔ ÿÿþÿ}" dþdÐ@ÿÿþÿ} dþdð`ÿÿþÿ}»dþd€ÿÿþ€£Þÿ}" dþdØÿÿ þÿ} dþdÔ ÿÿþÿ}" dþdÐ@ÿÿþÿ} dþdð`ÿÿþÿ}»dþd€ÿÿþ ÚðÒððdð( ð€ÿÿ€ÿÿ ððt ð  ðf€$0z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðÃЯ¢ðà  ðÆŸ ’Klik for at redigere titeltekstens formatClick to edit Master title style¢Jª Jðd¢ ð £ ð<…‡¿À4e¤ÁÂËš[Ö×ÿ ?ð^ `Šðd¢ ð £ ð<…‡¿À4e¤ÁÂËš[Ö×ÿ ?ð^°ÐŠð4 ð  ðf€ä0z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð^ _‰ðà  ð†Ÿ *¡(p"d'þت¦6Qlðœ ð  ðf€¤1z‚€^ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðó _» ðà  ð–Klik for at redigere dispositionstekstens format Andet dispositionsniveau Tredje dispositionsniveau Fjerde dispositionsniveau Femte dispositionsniveau Sjette dispositionsniveau Syvende dispositionsniveau¢*1ª ÌðN ð “ ð6€ÿÿÿƒ“À†‹”¥h¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²øîï`ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²`ð ÿÿÿÿÿÿÿ™ÿÿÿ–––`ð ÿÿÌff3€€3™3€3ÌÿÌf`ð ÿÿÿ333ÝÝÝ€€€MMMêêê`ð ÿÿÿ€€€ÿÌfÿÌÌÀÀÀ`ð ÿÿÿ€€€ÀÀÀfÿÿ™`ð ÿÿÿ€€€3™ÿ™ÿÌÌ̲²²£ÿý?" dþ^ÿÿïÿÿÿÿ,þÿ}  dþ^Ô ÿÿïÿÿÿÿ,þÿ} " dþ^Ð@ÿÿïÿÿÿÿ,þÿ}  dþ^ð`ÿÿïÿÿÿÿ,þÿ} »dþ^€ÿÿïÿÿÿÿ,þ£ÿý?" dþ^ŽÿØÿÿïÿÿÿÿ þÿ}  dþ^¥ÿÔ ÿÿïÿÿÿÿþÿ} " dþ^¼ÿÐ@ÿÿïÿÿÿÿþÿ}  dþ^Òÿð`ÿÿïÿÿÿÿþÿ} »dþ^éÿ€ÿÿïÿÿÿÿþ £ÿý?" dþdÿÿïÿÿÿÿÿÿ þÿ}  dþdÔ ÿÿïÿÿÿÿÿÿ þÿ} " dþdÐ@ÿÿïÿÿÿÿÿÿ þÿ}  dþdð`ÿÿïÿÿÿÿÿÿ þÿ} »dþd€ÿÿïÿÿÿÿÿÿ þ@£ÿý?" dþ^ÿÿïÿÿÿÿþÿ}  dþ^Ô ÿÿïÿÿÿÿþÿ} " dþ^Ð@ÿÿïÿÿÿÿþÿ}  dþ^ð`ÿÿïÿÿÿÿþÿ} »dþ^€ÿÿïÿÿÿÿþP£Þÿ}" dþ^Øÿÿ þÿ} dþ^Ô ÿÿ þÿ}" dþ^Ð@ÿÿ þÿ} dþ^ð`ÿÿ þÿ}»dþ^€ÿÿ þ`£Þÿ}" dþ^ÿÿ,þÿ} dþ^Ô ÿÿ,þÿ}" dþ^Ð@ÿÿ,þÿ} dþ^ð`ÿÿ,þÿ}»dþ^€ÿÿ,þp£Þÿ}" dþdØÿÿ þÿ} dþdÔ ÿÿþÿ}" dþdÐ@ÿÿþÿ} dþdð`ÿÿþÿ}»dþd€ÿÿþ€£Þÿ}" dþdØÿÿ þÿ} dþdÔ ÿÿþÿ}" dþdÐ@ÿÿþÿ} dþdð`ÿÿþÿ}»dþd€ÿÿþ –ðŽ ðð ð( ð€ÿÿ€ÿÿ ððt ð  ðf€d2z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð­ _|ðà  ðÆŸ ’Klik for at redigere titeltekstens formatClick to edit Master title style¢Jª JðX ð  ðf€$3z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðð _ðà  ðªŸ :Klik for at redigere dispositionstekstens format Andet dispositionsniveau Tredje dispositionsniveau Fjerde dispositionsniveau Femte dispositionsniveau Sjette dispositionsniveau Syvende dispositionsniveauClick to edit Master text styles Second level Third level Fourth level Fifth level¢B1;    ª ðd¢ ð £ ð<…‡¿À4e¤ÁÂËš[Ö×ÿ ?ð^ `Šðd¢ ð £ ð<…‡¿À4e¤ÁÂËš[Ö×ÿ ?ð^°ÐŠð4 ð  ðf€ä3z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð^ _‰ðà  ð†Ÿ *¡(p"d'þت¦6QlðN ð “ ð6€ÿÿÿƒ“À†‹”¥h¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ðpñ€ 0ð(0ð ðÀð( ð€ÿÿ€ÿÿ ð ðº ð  ðf€¤4z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð¹ßÜ ðà  ð Ÿðº ð  ðf€d5z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð ܽUðà  ð Ÿð: ð  ðf€$6z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðPðà   ðŒŸ *¡"]'þùª¦"6Ql‡¢½ð< ð  ðf€ä6z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ð‡ ™Pðà  ðŽŸ *¡$]'þøª¦"6Ql‡¢½ð: ð  ðf€¤7z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðþNðà   ðŒŸ *¡"]'þúª¦"6Ql‡¢½ð< ð  ðf€d8z‚ƒ„…‡¿¿À4e¤ÁÂËš[Ö×ÿ ðþ‡ ™Nðà  ðŽŸ *¡$]'þت¦"6Ql‡¢½ðH ð ƒ ð0ÿÿÿƒ“Þ½h”ŽŸ‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²î€ ï €ùÙ Ú °ð¨@ððLð( ð€ÿÿ€ÿÿ ððf ð  ðf€Ä8z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð>°ÐÜðà   𸟠 Test 1¡(x"d,þª ¦J6Ql‡¢½Øó  ) D _z•°Ëð¦ ð  ðf€$9z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð ` à ðà  ðøŸ Test a Test b¡Ty"dÌÿy"dÌÿ þ þª¦B6Ql‡¢½Øó  ) D _zð< ð c ð$“À†‹”À†‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ˆLŠDº___PPT10‹$ë.ù]Ä0Gá+Dñø'ñ ÿÿÿÿ=ñ @Bñ Dñ³'ñ ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +Dñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+îTï €ùÙ Ú vðnPððð( ð€ÿÿ€ÿÿ ððn ð  ðf€„9z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð­ `}ðà   ðÀŸ Inserted¡( x"d ,þª  ¦N6Ql‡¢½Øó  ) D _z•°Ëæðd¢ ð £ ð<…‡¿À4e¤ÁÂËš[Ö×ÿ ?ðð `ð< ð c ð$“À†‹”À†‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ˆZŠRº___PPT10‹2ë.ù]Ä0Gá+Dñ'ñ ÿÿÿÿ=ñ @Bñ DñÁ'ñ =ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ ++î€ ï €ùÙ Ú °ð¨`ððLð( ð€ÿÿ€ÿÿ ððf ð  ðf€ä9z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð>°ÐÜðà   𸟠 Test 2¡(x"d,þª ¦J6Ql‡¢½Øó  ) D _z•°Ëð¦ ð  ðf€D:z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð ` à ðà  ðøŸ Test a Test b¡Ty"dÌÿy"dÌÿ þ þª¦B6Ql‡¢½Øó  ) D _zð< ð c ð$“À†‹”À†‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ˆLŠDº___PPT10‹$ë.ù]Ä0Gá+Dñø'ñ ÿÿÿÿ=ñ @Bñ Dñ³'ñ ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +Dñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+î€ ï €ùÙ Ú °ð¨pððLð( ð€ÿÿ€ÿÿ ððf ð  ðf€¤:z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð>°ÐÜðà   𸟠 Test 4¡(x"d,þª ¦J6Ql‡¢½Øó  ) D _z•°Ëð¦ ð  ðf€;z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð ` à ðà  ðøŸ Test a Test b¡Ty"dÌÿy"dÌÿ þ þª¦B6Ql‡¢½Øó  ) D _zð< ð c ð$“À†‹”À†‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ˆLŠDº___PPT10‹$ë.ù]Ä0Gá+Dñø'ñ ÿÿÿÿ=ñ @Bñ Dñ³'ñ ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +Dñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+î€ ï €ùÙ Ú °ð¨€ð ðLð( ð€ÿÿ€ÿÿ ð ðf ð  ðf€d;z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð>°ÐÜðà   𸟠 Test 3¡(x"d,þª ¦J6Ql‡¢½Øó  ) D _z•°Ëð¦ ð  ðf€Ä;z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð ` à ðà  ðøŸ Test a Test b¡Ty"dÌÿy"dÌÿ þ þª¦B6Ql‡¢½Øó  ) D _zð< ð c ð$“À†‹”À†‹¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ˆLŠDº___PPT10‹$ë.ù]Ä0Gá+Dñø'ñ ÿÿÿÿ=ñ @Bñ Dñ³'ñ ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +Dñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû* %ñ(ñDñq'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñÿÿÿÿDñ 'ñ ÿÿÿÿ=ñ @Bñ%ñ(ñDñ§'ñ ÿÿÿÿ=ñ'@BñBñ°Bñ%ñ(ñ)ñ)ñ)ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû* %ñ(ñ+ðâñÙ Ú Žð†ð$ðð( ð€ÿÿ€ÿÿ ð$ðX¢ ð$ C ð…‡Ö?ðÐ`€ h ðà  ð^¢ ð$  ð`€$z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð_ ߀ ðŸ *¡*x"d' þت¦6Ql‡¢ðH ð, ƒ ð0ÿÿÿƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ðâñÙ Ú Žð†Àð0ðð( ð€ÿÿ€ÿÿ ð0ðX¢ ð0 C ð…‡Ö?ðÐ`€ h ðà  ð^¢ ð0  ð`€d>z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ðÔ °0°ðà   ð¶Ÿ "Notes for slide 4¡$e ˆ#ª¦6 6Ql‡¢½Øó  ) D ð ¢ ð0  ð`€Ä>z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð_ ߀ ðŸ *¡*x"d' þت¦6Ql‡¢ðH ð0 ƒ ð0ÿÿÿƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²ðâñÙ Ú Žð†Ðð4ðð( ð€ÿÿ€ÿÿ ð4ðX¢ ð4 C ð…‡Ö?ðÐ`€ h ðà  ð^¢ ð4  ð`€$?z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ðÔ °0°ðà   ð¶Ÿ "Notes for slide 3¡$e ˆ#ª¦6 6Ql‡¢½Øó  ) D ð ¢ ð4  ð`€„?z0e‚˜²ƒ0e„˜²…‡¿¿À4e¤ÁÂËš[Ö×ÿ ?ð_ ߀ ðŸ *¡*x"d' þت¦6Ql‡¢ðH ð4 ƒ ð0ÿÿÿƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€Ì™33ÌÌÌÿ²²²r<à*dZ(Ò/Z:¶>>IÆSN^8bfúiämõ¼ Îqþÿà…ŸòùOh«‘+'³Ù0Hâx€Œ˜¤°¼È Ô à ì ø éý0@@@@G0áÿÿÿÿ( xáÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„Oýÿøz¼ì]PP\R]ïÔ’]“ÖhaTx[aüê¸\±ë¦b=ÿúáõÿÿ6nÇ{hFliw÷ךÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„OéþøMN¦ý磽çûá¿¥ÎÏâ¬ÇÓFQƒôÔ†[™ßöÌ}ÿÿÿõÿÿYuÇüâšàüÇuXÿÿõÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„Oéþø1K¨oiPYgnņXCs¿–xSÙÁ­ûüð[™ßöÌ|ÿÿÿõÿÿSsÇúÛ’“ÜûÅqRÿÿõÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„OýÿøŠÃîlileahëÉŒd˜Øce]†WVáðÍ'W£¹u9ÿüéõÿÿ2mÇeW<]U`öÓ‘ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿáûÿWqª"?NA%sWOûä®ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûÿÿ[™ßöÌ}ÿÿÿõÿÿXtÇüá›ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿæõýýóäÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„Oýÿøz¼ì]PP\R]ïÔ’]“ÖhaTx[aüê¸\±ë¦b=ÿúáôÿÿOÊthSHcsÖˆEÿÿùÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„OéþøMN¦ý磽çûá¿¥ÎÏâ¬ÇÓFQƒôÔ†[™ßöÌ}ÿÿÿîþÿJg¹¿£t]¤Æá›OÿÿüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„Oéþø1K¨oiPYgnņXCs¿–xSÙÁ­ûüð[™ßöÌ|ÿÿÿýÿÿÂÕï±¼À?rœâ›FÿÿüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyÌöÓ„OýÿøŠÃîlileahëÉŒd˜Øce]†WVáðÍ'W£¹u9ÿüéüÿÿs±æb]XNJZõ΃ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿáûÿWqª"?NA%sWOûä®ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûÿÿ[™ßöÌ}ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿæõýýóäÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$ÿÿõÉðý5S‹A;398?ÉŒU‹Ìå22O>@;T77óÏŽ¬èü VÇt7ÿÿôÿÿÿÿÿÿÿÿÿÿÿÿ{Òøž?0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$ùÿõ0ÕÑ€0ÿÿöÓôÿ”„žw©óÌûÿþ9—àÃa!xÐì§C/ÿþëÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ{Òøž?0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$òÿõO¸@-DDD>DDK+1¿Ë–Ki’ %4c='ôÓšvÏö©D.ÿþìÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ{Òøž?0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$ùÿõ2†×Çq)ÿþó«éýR(Q,kмy/ùõâ§Âè÷Ü´vÏ÷©D.ÿþìÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ{Òøž?0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýÿÿÿ‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°þÿÿÿ²þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$ÿÿõÎòþ7W‘@=5D6;ã°p‡Ìï>9N@FFi@7Ýß«&_§5×—`ÿÿøÿÿÿÿÿÿáùÿÁª·zÊÝž?0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿ8—âÇh$ÿÿõÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿvÏ÷©D.ÿþìÿÿÿÿÿÿÿÿÿêüÿM„¾(ž9ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿäüÿ0W¥&''!''%€B*ÿöÎÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌðýÍœ¡ÿÿóÿÿÿÿÿÿÿÿÿÿÿÿýÿÿn¼ìŸB0ÿýæÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿRoot Entryÿÿÿÿÿÿÿÿd›Oφꪹ)èCompObjÿÿÿÿ9Ole ÿÿÿÿÿÿÿÿÿÿÿÿCurrent Userÿÿÿÿ,PicturesÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿPowerPoint Document(ÿÿÿÿ6rSummaryInformation(ÿÿÿÿÿÿÿÿÿÿÿÿ>xâDocumentSummaryInformation8ÿÿÿÿÿÿÿÿÿÿÿÿOpenLP-2.4/tests/resources/presentations/pdf_test1.pdf0000644000175000017500000003026712657640340022217 0ustar raoulraoul%PDF-1.4 %äüöß 2 0 obj <> stream xœ3Ð3T(ç*T0P0²L-MõŒ,L õ,ŠR¹Âµò r@X”ÎåÂedn ”3ª3SIQÐw3T°²Òl íB²¸\C¸¹ ÏH endstream endobj 3 0 obj 83 endobj 5 0 obj <> stream xœ3Ð3T(ç*T0P0²L-MõŒ,L õ,ŠR¹Âµò r@X”ÎåÂedn ”3ª3SIQÐw3T°²Òl ŒìB²¸\C¸¹ ÛI endstream endobj 6 0 obj 83 endobj 8 0 obj <> stream xœ3Ð3T(ç*T0P0²L-MõŒ,L õ,ŠR¹Âµò r@X”ÎåÂedn ”3ª3SIQÐw3T°²Òl ŒíB²¸\C¸¹ çJ endstream endobj 9 0 obj 83 endobj 11 0 obj <> stream xœí|{|TÕµÿÚçÌ#¯I& äA€9É0˜¼áŒdB<Â#òL¨šLf&ÉÀ$3̃««V Z¸J}´ ¨ÅGÑ2IÄ´…úëãÚÚÚV{­à[û ¥Vm½jæ~÷>'/@kïïþñû|~Ìaí½öÚk¯½öZk¯}Î&á`ÄCI´“dr¸:IL'щXškGXyì iÀO¿Ûhï¼óáë_#Šÿ‘>Ôîëi»ûÚËÎ¥dé~Ûáqº‡š“‰&A-èaùpíEhÏèè _ÓÌ< h_‰v’Ïïr—Ì7©í„Nç5Ìùz´Ãh+]ÎNÏç~˜ò2Ú{‰Š"(ì¦1¢ê$ÞzŸÕöÚªÄpñú™·%™þ¿þè¿XEÀTy/åÅÞœ¼=¼2ö‘~Y‡·ÆNËé`~J"ÝCûicséy:A+éQª¢ÚKËè$¦dêa?"Y©†'³Du”Éôt?½JWRÞ¢Ó”Oõô:KƒœZ P•Ç~²žn‹WUÓ7èó±õT |¹TÀì˜ywìeR~ì'±WÐzÞb3bý´Øo)•fQ/ý¥ÑVúaì#h:ƒZé1vû=åR íÒ•éúbÛè2:B¿`õÀVSþ•ø#äèGX&;;û}[ÇÈI_ Û ñŠäjýRh&]NkȉÞÏÓ«,Í•±Y±¥±ûA}ŒÞ‘ìÒ÷e#ô°Ó j¦;é!Xã—t†Þc‰l>{Âõû³þèVOº{ëAXï1z’޲¹l®”)eÂZ™4›6¢o7Äüƒô"«gMìûŽ|P_2\››û],Fs¨î§ï`ŽwY x0ƒœ'‡uÓua}éÇ7b…nz€^¤— Çë°û{ô6×Ò RolsìñØ[Ð%Ž,´ˆ® -ä§ÔMëÏÓwé¯ìC)œ'ußÓ_«?» ¶IK¡ûZp¯‡ì]ðÒ áú%V™Ê¬b[ÃÖ±v¶›ÝÆثìUÉ åJÛ¥?ÈQùGòkºz}l1$eÐtÌk¥ÍÔÜkß…õ>NߣØd6“bE¿Äø÷¥Ë¤\H'¥×å[äݺô_>=üÇác}dD”-ƒ"ôuXá/,:Ìf[Yˆ½ Í÷HOËɲY¶Êóå*yƒÜ$ß&ï•ÿ]þ©.¨;¤ûµ~…Þ©?dtw ¿«ÝLúâå.:@‡°îãôý‚~C‚ˆåBg/fïDÔݾ„ë~ö$ûû{½ÁÞç—”‡+_Z UJÕRÔ.Ý‚k¯ô¢ôKémyªì’{å¸öÉÏȯêH§ÓÅô¥¸–ëwé3üȘo\nlûñGg?žóqÓǯÓð”áÏ ß3üáßÅ6Åz ¿ ©šÞ -ïG ÄõuDâ3ô}äî_ ]ßaÓ#ⳘÑP¯U²el®Õì \qmf[p9Y+ëÀÕËv²/°›ØÍìNöeq݇µdO°gp}“Ãõ vŠý–ý½#!ˆ%Ñl“fIÅR9VZ--“ÖJëpµK~\)(퀇“¥£Ò/åtÙ&ÊNy»|¿ü ùyùeù¤+Ðë*t›tíº›t'u/é^Ñ}¨·èkõú}úç 9†2ÃFÃVÃ}†Ã†·  Æc«ñ:ãËÆXœ ÙêX÷‘ )¯Øp’…ô“t×H§°/²ä€þV¶3HdŸü%ùgú6vNVدYŸì•·Å‘ë¤È~¶I:Îòd‹~±ÜFwPŒ’ÞÞ•~§›Ì6H¿gùºcß”ürµdyõçºÉº›ôoI¿¢ÅÒõì„ô=ù&ù¦Ø·h±~;¥ß'½DŠî´”N§°«o•îÅ ŸJ^i5êÊô’vB ì½DºÍ‘_Öí£·d«ô7vŽÝƒ¬ñ¶R7CºZ*g‡q?fÓé,ÛNöer°gÙoØ1ö¸ü[%%Á[QÉÄâèû‰œË^–¨‰ëÈfJ“YƒtNÚ(?gxQžÏ²ÄÏèZ&³ÄÎÈg˜º°öJ³Ój‘M~ÎJ)‹îE¾wø9ž±õ¯èw!Î’ h•ÐUÒh1öÆ[¸é‹TJǃ·Q‰t]ÛÉÜÈû«‘?%b[©˜%"[fB·^œRra3fýòÿ‘õëÙŸ©›)ØY'(_Ç{îÐÕ"3µ ÿîÂ妫Ðz€î2ÑÿœÖ²LÜi(Ãûå¯ÑÕ8sÞÄüS¨úm¡‡tÐZAfÞŽ /'®/Ò˜D×Cç%Øç ºåȼ÷Ķb…^œQ«p&¾@ÞØ½T ß­‹ÝÛEͱ‡bWR;­=Žü»#6@ èV}“´Ioו!ǾÀ¾‹óè?Ø.äíåôkä#Ë¢?àú4Z¢–út¿BÝûM†=ò`¡Vœ¢g¨“þ »-—Oмá5R¬Nà„:EWÄ‹YXuÄ|ȼÏÑA£¹g'M×t8•K.¯¸lqù¢… æ—Í+[R\TX`Ÿ3;ÖLÛ k^®b™>mjΔì¬ÌŒIéi©æ”dSRbB|œÑ ×É£‚Zk]‹ÙÕÍ´._^ÈÛV'Îq„–¨RÝDž¨Ò"Ø”‰œp¶ÇéP9£œÌ¬TPEaRkU¢?©±*ClËÀבּ6)ѳ_-ð=7ÏÍÅ¥6«£F‰²¥6Z·££¯¶¥âúª­Õž„ÂêOHš,ši ô³Ì%L Rfíâ~‰âLP*:ÅZSͶÖp ¢²­ÖéŽ6\ÑX[““›ÛTXeÕ.kk”¬K£)vÁBÕbš¨¡:jÓ(^¾Ú¥ôœè»cÈL­-ö$·Õí¼²1*;›ø©vÌ[ͼöLÖXÂÓªoß›#÷ÕfyÞìë»U‰¸¢q|o./›š #*ÙêZúê0ñ0aýzsI·45FÙ-˜PáëàkRWç±ÖrJËV%o]jíèÛÚÇLé‹ÒºžÜ)SGc§iJ­Ò·¡Ñš­Ì±69k¦öO¢¾u=ƒÙ%{bOaA¿9U5krІ$™Æ#žÑ> vŽÕ¯µ+ãYW ¢ŠK&V¬i/<‹¨Ïµlø41ŒŠºáo4¾º¥Ï¼t3ÕÛÌV¥ï=‚ÿ­gÿ4‘âÔ(›ù=â(’Ñ@CÿµÛ£sæð1VãÐq‰hÏ/,Ø1$E­³‚ æ£ØÖÙ´¸ÆÏÍåîÝ5ä V4¢;¯hTÛ µæ £ØÞ•Zxω‘žÉyÏΑžÑá-VÄñÓâidr4næè¿sFzmÇâ(Ëø”nÚ_¿ÞZÅ–F¥¶¯E³mý† -µÑhŸ†1µêl°Ô +BoÝ–FNÀ?½­ÎZëmYŽ­£éÕrŽÔ¤bRŽ,D!~¯•ÌI\–Îfñï2Æ!€…)uQsËrµlJÈÍýŒƒ†bçø(Q ÓÖ]lŸØ¾lB{‚zI}2ÖÍ”ê7léëK˜ÐW‡dÕ×WgUêúZúœC±­VÅlí;*7Ê}Ú–÷ÅŽíʉÖÝÑ„Et°Å…8Ö¹oô¸ðdl¤Õý{Vú6îÒñÒ놤o?-S‚‘#GeÇôÇÑ/‘ÌfS<ÛÆ®¦,»ùýŠ+֘߭XýqU7„bnInjnª Éø‘"ŸøÈ¡§q·pqô¸s¾×1ɑՒu ët–޲YÒeRrU:î>«0Çœ*²Àã€[qÞÿƒR˜—2@!öŽ#™¥¤àÖžéãã’ð|Œýì+iÉÉ)ŽÔù%)½){R¤èR²3I3Øè U¯²W¬6Ÿ=cæúVV¤¦•³ÔrzïìGì=»}.Î~¶ýªtÛ¼ÔI™“sç/‘æ§–Íš9Óšg<ÇVæ¦W\9,µ,ÊH0ڦؖê~ðЇ·M—l6iÚÜk¥×öÎQ¦[øÝ7žÖåCXãtVçø‚1+±<3kêåeYÙ¼H™ž‘1ÛXa\a|Âhp(ŸÓm‰û\æ–¬mqáÔpÚ‰&ߟúdâ“É/è_Èü÷¬W3_Í:­| û sòd6M—­Ï™œ‘9-ËŸ™˜•8­,{Yöí™»cV¶$eNÉNÊ6˜älIoÀa9y’1]gbŽøxǤ¤Êñ,~HžçH2ë§ìÎfû³gKÙÇäy0܃LJš>Äît˜ÈðŸkÓ›Óýé½éºô!ft¤;°¨)¤8”ŠÜ¢P$%ûYö"ÇÄŽI͸î•vKÇñpsJú‹'e[Žá±i&_}¦âìóUÛß¿jõ»W5Ÿ…éÏ~|ÕöŠÊ·ÛϤ¦e– 7¤•—KæäŠ[Íúë¿›üݹ%l{ð*øÃn·“ɹ󉿗Á£uÁ‚y¥|i£dÌ-]°`¡|¨ù£ÓHʾ.÷þ™¶ì“_=ø›’•~°„µú6×Maúáml)»ï‰l?úý—÷´·?|døÜ"óÜB,l}ìmy¼UÊV¥„Øé¤òø¡Ø GERyU|mB]b}žîd<›={ÑlGYKÙɲÓeO0R«Šïµ^[ôõGg+z¡è”õ”í?Šþ÷{[ÒŠ¸ÙCìŽÁü|3 Ig_,a%CrÙYoÎ`Clÿ‘i{qÙ´!V=h6ÍΖuÐ$Š—Þt$6ÀÂÒaaøi0šÄ’†ØÐ wJ{ J… i6öbíCÒ[ŽG;Pv¢L*ÃÝè’o:Ò§KéÙóޱéìíQó ÛŸ½jû»¼8ƒýJ•gígƒ•g¯:›V^|vnIucAQñô™ ):C^®5wF®-WgÐÛ’gÎLPZY±®°•MO–›8«•%ÄJZ™Å4­•ìvs…;ÉnŸs#>bi»ÝžÎÝ$B0C8+7oæü2AÊÈ̘WнY3ùÖ²ò]Æ=kìXÜó#›—»~gà®á?Þî*ÎÍž’zM¦mNÛ½Ö)û=k”µû—ߨòÕÝÊÛ¿¼uí–½ûæ>óùè×ÌšV§¯4$îó­­_4-¿jzÂÕ7¯mï}T<$¤—þ´ãˆ)£9¥â½¸ì8ñPðð›Óž{¤Š½LÈ¿£‹×¾_㌹õx²§1Ê„d(gSu„ŒV€{a¢Ëè)v³Ò8u4$•ÌTŒûvÒÿ$% {†S—É[ˆg^õù„4œá©}XÃ%JfS5\¦ ›£á:d•4\OY옆(ýLÃô {WÃãh¦ôc §/Jïhx‚~“|†'R0î§žDmñ 7žŽTÓéJó–QôšŸÑpF)©ó5\"cj†ËTžZ¯á:ðܬázJJ½[à ”šº_ÃäKjx¥§MÕðxªN+ÖðéPZPé|ò´ÑoCçMÞ¤á&yËäÛ5<™Š²Þ„&LÇ­ž”*p=÷Hö4½PàFA/xœÀW<žû(»IÃá£)›5>šÑpøhÊMMyOÃᣜt ‡rìå¬ÖpøhªMÃᣩõM}IÃ᣼YåݯáðQ^LÃá£ÙƒOàëš“"ðD¾–99OtU‡d/¸™¯eNµÀӧ͹Bà“Kà“…¿À3½WàÙbì.çU·i‚ç [~Dà3ÿw>Gà'^(ðßpžóÎç[r-æn~åòqH Ý;4iEÑI!?æå:ÀÛó‰\»œ¯[hÕ>:¯WÛ…"ÃB(=š‚bU\j(›XÐZ%ìÇ-Ù%ÖÄctžðR‡¥ÚeÄÊNj’•QíÆö%×#(¬§ˆµð^çyv‘>ÒñÖx«~\%ôuk>ê– A¦SÈ Š•´ik躺Pr¹aAq Yn!“ï°.¡÷ß›œ§Cã a´ _m¦ÚÁ'l׊–KÄGèÕ¥Õmã"¢[èàƒl.«Sì°&Õ%,ÂÕ&v™2Χ.a縜¡ê6bÕkíÂNN1Ö=Á÷!1·YŠð[`a5°Ë§ÇÂ,ÍB^!Ã5nG´ îOu\è¿ñVmÔ¥iÚ5JãY$"²ž¢e"]#v]—ðÖ!Ó«íCÕF*- ÆŽXU¢"ûîÝÜÖAmîਇ¶ÆÜùûKµÃgÛcêê–ŠÈQãÚ?ª¿—ªº´|>Ñâj̹…÷ÕèŽ «’"bíêœ B—Ý9.¯4ˆlÝ%l¢îgï„hVsdÐÌ'F„ÄJ}ZÔu?:µyƒZ¾ã« ÏG&ì®-ßq#:òhPDTªþàëv‰\çõ°OË£­ŸÐ®G[qDäZUR·èéÒü¸ÔœéÒ|Ó‰1ª­7ƒÏ-fèÑl4>Ÿ´Š±Û4]U q ´®<‹Ï-Gòxû¸yyîp K«ç±zúÇ='ŒrÇÅíØ}ɧ[Ê'²†÷¼œ>&oä¼ ‰ø»+Éycœ~ðªwÐaq.¿ct=ª^㣻SË’ªýÕ]Ðâc,›NŒ¡O[ÑX|¬k¿Ðs#g¡zg·õ¤q ¯vçƒàyö“Ì×ç÷rní,á÷êÊHø,Þ‘§îIvžN<Gä]èGÕZê ÂÚY~±}<â1çy¶nû—´³ò…3¸´û·V­5^#v†qöŒHàÏOü}7RÉÇÓ ÿß,³/Ä“Á"PK@)ÁÅ¿5ÙHõg z碧LÃâb¡µ€æã‰‚—þ¯uÿó“q¤¯ø<랇zž6§Ë£<¡lèð(«ý]þ0HJµ?ða¯¿K ø\EJ3ìü'LÅ\˜²Þï‹pJHYÑ…qsËËK Q”)U>Ÿ²ÎÛÞ)ëììòyz CÐòw(›¼®°?¨¬rÝž®0Ì:¯tC‡7]¸ÊÎVŸG ø²Í …g àqj:rv^óe© ÇWù»ÜXQ—§;p<Á¥ 3twx]Š7¬t;CŠÛò¶wyÜEв"¬t€Š´†<Û#ÐÁ×£´z\þNâïòpyÜÝþ ÏR:ýP q¹<¡P[Ä'TS\A°aÒ¸"XZ»·ËéSÜêêCJ7Œ¥t J¤Ëí žo…YPÈô¸„#Z{η 0º>UahÔ¡] ú#íð‹â¹&ìé ywx°H÷*°@ÐÏU…‰vø};¸'Ú"AŒòmã–ñt¸ˆÇ0ÝRg¶ösù°%tèBœkŠÃrnÅsG\a0EB|dƒ'ð„#N+ >gWØ ?{U3#"{¿Ï­„Â=p­«Ãtb,¤…½®ÒQýãt;\bد´óux®qy|>¾`b´Õëó†{0q$àS·7Ü¡´ûýˆLèâïìÖ›½n ©qÒê÷o …:íÎk½]žAv@ ¿¡n¿+¢.‘3;}!¿`s{CŸ³G%ºwx‚a/_kQG8X\\ÜÝÝ]Ô©²¡SÜîôw†ùÿF.î 5‡¹ëA¾#‹xçgØíññHC֬ݰ¢nEuÕ†k×(kë”U+ªk׬¯Uª–­«­]]»fƒ)Á” öÎè†áx‡ˆ¸C0_dËŠUy±dX‹‡_?ÂGºü;D*PC–ËŸ:Ås*>« ìÎö Çà V¤4aX‡Îò·†°0¼7AžÉº±qWD òpRÌ2¦¬ö·{Ô åž'„ƒ^„DCMmwŽ `M)ì’QSŒîTv8}‘Rœ¡'<~t‘²;;¥gdX“– „N%𸼑 W®ÀŠ<ÆÛÅX§ÛíåûÛ?(΄N ÛŠ\ržR>o§W‹tÁÇ÷e(¬ædy‚èïF‚Ž´ú¼¡>d©æîDHB¸*У¨aªYhâDÂ+ÚÆÇw!’]HLƒMãò»´5½s¨ÃÁf zvxq ð¸pùœžô`Ÿj{‘ó®ja‚0vù˜ùœšÖm+TàB~kõŒÂ<Îðbΰq}•üEe g+ ç.*,)+)‰ßXbÉܹee(Î[¨,\0¿|~¹)ávݧnFÞ*ÖÔûË~ñ˜É øCb3áÖc+nA~/n\FúF¾üs«_ÜÉ_‘ûåoÉÇGåcò“—^¬\z±réÅÊ¥+téÅÊ¥+—^¬\z±réÅÊ¥+—^¬\z±réÅÊ¥+—^¬\z±òÿä‹• ß~ŒáNÁ±¾7Îã™ð½ˆzç}q™>áãں麹ºzÝ2Ýå(Ë'ÌÀsð'IY#ö Ï=êê;X”=$“ØUà Š3ëôÉ.ŽþsŠåBüE>Gc'ä7kkKC¨íE¢ÈŸ]*:¦L-ý–ü†ô$Î §2rDÏëK—jÈ‚E*28§°ôTU‚ü:ý ɯ˧gbÔ`~Qé¹*L¾R# CQ€Dù׃3f–î?.ÿý?”_€¦|Ø ¦ÔRüüMJ#‹üŒ|Dë92˜œZJU!ùNbtå‹€Ó€sùåǨ°p £”@1`-§È‡äCÐó ÿ¯ì(‹~Àn€Ž6È_}/åÇå­”‡±wÈ{i2ê]òÝ¢þê)¨}:ê‡Ðæõ~­ýUÔ¼ÿ+ý~´3Pß§Õ÷‚žƒúñ,,ò—µö9"Æ…µú€˜n1WMG¿(ÈÀöÛ ÓíåFÉä›dŸ˜©u)êNµ†¹®ȵ ]?˜™]z&½¦¿–»–»žtèºn„ç:•§P¾<×ç:ð\«”È!Ìâ?e@i(vÁîœEyð¢ ßŒràoÉݰãlhu»¼u ß‚ k,w”V>+·ÁÔ¹m0{Zéî±V|DÔÉZÂy=¢×3ŸÄ©žÁ)ÓÔ\Ûª’e} Ñ$”3e€€Nv Ì(¶“×Pg9’-½R¯Ü«ëÕëJjXÚq¹”â!™&Rf[š+ØÂ–ø@üÎxٯėÄ;ââõ~¹WÞ-˹X®”×ÊͲ~(vbÀ¸xÿåÐ2Ãây{$FO$¾˜¨N^4œ6œ3èC‰Áah0´††=††ø=†=F©%1¸3Q6'*‰%‰ŽÄ†D½ÅÈTÝ"·òŸ2 4€=lÜ º"_ h†7šaŠ«A'”„–ð"ðÓ¨õh¥€/|) ¦€š"~÷—"z-€€ÖkíÃùÏñÀ,ô&ƒÊ2=¥taJÕåÒa,§å~À)€L)(-€b@%ÀÐK‡õ)PŸõ)Z hè1ê)žbPZ´>Nß/ú8Æû¥ ý2ÿäÀâyk«V!í6ödÈ~ýO n;,èQ”§}­Æ@Ð9—02Ž'Á-"ÝmÁ6ÜB•€f@ §“òf:€t”@p “·àÚ,o–žÂõ¤ô¤\à0Íl¡Œ i©qæ*³”„X0±ÇEyŸ(oe¥(g8’WšÞ_iúöJÓWšf‘òq°™Ø^Qæ:«LOW™ÖV™fW™ -“rÉ$M¥—ì¢\#ÊǤ\Ó¹¦¿åšþškz0×´=×ty.7{Ø$Me"/Ù=¢\)Ê™ŽD‹éûÓf‹i¡ÅTebûf§¥¢œ.Ê^²wžN©I¡øgÙ;TIl b¶eH"Q±Ø@EªáŠe¨>¨Ø‡ê¿*î¶<Ç>`âhcïÌ8c©šÌÞe+t¼ý7­þ+[A‡PŸCÝŽúQª`6Ô_¨¸‘ó?‚ñ_AûaÊ‹ãüQƒ·Ÿ­ôµq ´bÖ¯ô`Ö¯P˜õÞ‚3 Þ=Pp;ª» |¨vظ‚[*æXªRY;Í8¯‹l×d•6ãrHö¡^¦®(à£jøC¬zÀ:Õ,®åsÌJ b:Ë€U,rY…ˆ©dJçMÔÉ,E(o¢ºŒÿ™‡£ÒvÉ_[sT ðª©ñ(»VÚ^»ŽÓÙµ5M£l”'ÀF¼âlƒ”ÇÙ( ¶U‚ ašW[ÓŸ—§2=ÏVp&„Ïó‚©]•5S@V¯À&M§BÖ i:gC<¨ÂRÆ K"–"„¥$‘6•3õÛl`)°q–þ…60ôÛŠîCcÝV›ªNÙÄ<6Ö$æalŒ'_åAh×£ŽGÅ\õë–²ú†Æþ8ZÚT}¥ZJ‰ Ø-9¹MK3Ì%bs\–›uCÎ1áØJ´7E“¬K£&ï*¬*¬â]ؼ+™ÿ9­+ë†ËrsŽ±Çµ.3ȩ֥d§¬ZoÍè¿P(æ‰ØQ†#Y‚ƦÍ]_­ãü¡"ZQu´Ô4‰RG´Ou£Ã|¼âd…ä¯è­Ø]±¿âp…>i9íxÞÉ<©9ϟכ·;oÞá<︲ñGÅþ¼¿äÉD ãS[#挠Æ?Þ GBüC˜ P§³GìÕUyä’ùâe”é+``=@OÿåÏoþÐÑM(ï<ä¹P.¬ÍòÖð›ì<édÉ¥ƒ%óK ¡v¶©õú-j]»F­+ªJ³PTÎK¨JÁ 8£c(ø5à€ÿèåR¹T¨QÛ¢A}B#Ì‹=Ìì@7w8d·àðÿ‘:›÷ÄB‚)àT`ÔáõÈç¿fs_P endstream endobj 12 0 obj 9560 endobj 13 0 obj <> endobj 14 0 obj <> stream xœ]P»jÄ0ìõ[^ŠC~´F.¸Èƒ8ùYZû±$Örá¿ÏJ¾$Bb†fW^ú§Þ»$ß(˜LÎ[Â5ldFœuÖ™tgå7‹ŽB²wØ×„Kï§ÐuB¾ólM´Ãéц„|%‹äü §ÏËÀ|ØbüÂ}‚J('ÎyÖñE/(‹ëÜ[»´ŸÙò'øØ#BSx}T1ÁâµAÒ~FÑU•‚îzU½ý7kÇ8™›&VÖ¬¬ª¶VŒ›7·nKÆ]Óòº?-ÁlDܰܤTË¥œÇ߳ų«¼oØør endstream endobj 15 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <> endobj 1 0 obj <>/Contents 2 0 R>> endobj 4 0 obj <>/Contents 5 0 R>> endobj 7 0 obj <>/Contents 8 0 R>> endobj 10 0 obj <> endobj 18 0 obj <> endobj 19 0 obj < /Creator /Producer /CreationDate(D:20131228213807Z')>> endobj xref 0 20 0000000000 65535 f 0000010973 00000 n 0000000019 00000 n 0000000173 00000 n 0000011117 00000 n 0000000192 00000 n 0000000346 00000 n 0000011261 00000 n 0000000365 00000 n 0000000519 00000 n 0000011405 00000 n 0000000538 00000 n 0000010185 00000 n 0000010207 00000 n 0000010408 00000 n 0000010709 00000 n 0000010885 00000 n 0000010918 00000 n 0000011517 00000 n 0000011615 00000 n trailer < <4A7EE856875ECEC898DBC589CF64AB77> ] /DocChecksum /888BF31BF2E594DE9ED98517BC09B225 >> startxref 11867 %%EOF OpenLP-2.4/tests/resources/remotes/0000755000175000017500000000000012657640341016404 5ustar raoulraoulOpenLP-2.4/tests/resources/remotes/openlp.crt0000644000175000017500000000000012657640340020400 0ustar raoulraoulOpenLP-2.4/tests/resources/remotes/openlp.key0000644000175000017500000000000012657640340020400 0ustar raoulraoulOpenLP-2.4/tests/resources/church3.jpg0000644000175000017500000065266112657640340017006 0ustar raoulraoulÿØÿàJFIF,,ÿÛC  !"$"$ÿÀ bÿÄ ÿÄb!1AQa"q 2‘#BR¡±3br‚Á$C’¢Ñ4²áðñ%DScsƒÂ&5t“³ÃÒ'(68d£7„”¤EGTe´ÔâÿÚ?™hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆN2rz¡ã#§DDDDB;„DDDDDDDDDDDDDDDDDB2=ÑlöÊ"`g8ßÕ€zŒ À|®·Òº¬Õ9Žt‡ƒ#‹2:Lòó{ã+êDDDDNøDD=6DDDDDDEG1žå3¿Dý¥ULã;ª;Ír\Cʮފª™ª¥Pœ*öDD#*²ª l¨ªŠ€å;ãeTEG eWä¨z€¨áœ…\`l‡`€U@§ÍTn‡dTê=•JwDDÎøDAÑ=Ó Nÿ$DDDDDE@Ad(«”ìº"""""£‰ $ìvJ}0ª~Iº§|ceT$¨ˆpˆ=U1¶0ªˆˆˆˆˆˆˆˆð‡¶è©Ÿd²®z BvT1¶Pg×*¨ˆˆˆˆˆ¨OEAõÇeTêvTÇpsòAÓ®~i÷Ø|Ðd°} ª¯Ñ=7CÕ;õMº*¦Ä""ÇUN¨ªwêª¨Š¨¨IÙWä©ÕPb…P t@ª"&*doìªFB&}Qº&¨TÁÈUD*Ÿ÷ ÔeUM†åÈÛ}cЪöÙÍSUP¨ªoÑ"!Lï„ELžlcoTêíN¾‡ÑUPtÝUº"6ߪ""*‘*¾ÝÑtöENûá1ÜTDDDDDTpöUÆÊñ”ǺcÓm÷O˜Â¡þáTgꪅUSláW?šwÊ"&ØÊ"""""ú"""""""""""vDDDDOTD=dù§¾·TOd?,§tDDDDD쉲ˆ‡¯tDÝ """""""DDDDDDDD÷DDDDDDBˆˆ…?Š'dDDDDDDO¢"""""""""'tDDDDDDDDDDDDDDDDDDDDDDDDDBˆˆˆˆwDDDDDDDDDDDDDDDDDDDˆˆ>hˆs‘Ã8Ê""""""""""""""""*8à‚p:TDDDDDDDDDDDDDDDDEGÊ `a}º{¢"""""""""tDDDDDDDDDDDNˆ¸ÆÀÌã;û§+KÃð € E]ñ¾2ª‰¾Q7DNȈˆˆˆˆ‡¢"""""""'~ˆˆ‡=°‘7DDDDDDDDDDDDDDDDDDDß>Ȉˆˆˆˆˆˆˆˆˆˆˆˆ›¢""""""""&èÝ;ŸuTD(ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDDDDDD]eܯ$ç}·XËÄÑ–ˆmêX*+'¹GEOÄáãñHìÌk»õ¿4…þݪtÕ þÕ0–’¶#=3Õ§Ü—ªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ}º¢""DBˆÓꈈzuDTÆùÙUÏpQꈉÝP‚A‘‘ÔvU¹DDDDDDDDDDNȈ‰ÙQÇ ]'®ù!@ÿ:²ºíÅgi—ÅA§á`†0³Å¯‘ÞøsZöOª¹|q"¶HîUMG[µT…Çú—±¹pÄ4\H4“ìª3ú¢""""""""""""""""""""""""""""""&7AÑ '|ewODDDDDT#*©Ý>¨ˆ‡8Ønˆˆˆˆˆˆˆˆ‰Ý"wDDDDD\_ŽRIÙt¼Žb:L(Sã÷EMoÖ6Íqк–ï(eˆ7lеÄ8ö!ÌÀõª×ð'ESUÇÚY¡ŽŠÝU<çÑŽ1ÿ‚Ø2""""""""""pˆˆˆˆˆŠ„à‚rªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹®Hóý[²?"?Ív{gtîÑS*Œtè‰Ý?š"DDM‘;¢""""""""!DDDDDDDDDDDD;®‚>"?‚Ž>?ìÕÜ·Ýâaw苼rMý˜¤ñç§ï.~´•ºÑà }MR]¯òÔ¾Z·ÏLbd öitn~ÝIè1$‘º""""”DL"""wDDDDDDDNý:"„Nˆ:nˆˆˆ9Á興ˆ‰Ý¦:`‘âª:"'tú&ùöDDD"""DDDN©Ñôë„DDDŒ¡Æ7DDDDú¢DDÙu½…Ï8èFëx³‰ãÃÞ°ÇáûˆÎOõŒ]ží¿£¸£c0y<öÁ. É>l—?^|ýVUDDDDˆˆˆˆˆˆ€z„CÛdDDDDDDDDDD(‰î€ƒÐån™DDTÀmì«Ý¢"¢dgÝU;¢"!興ˆˆ‡¶ÙNȈqߺ""""""""" Ø`""&wÂ"""""wˆ…<ñ'(‡Z½Î¦5 ÛœÎ@3øˆßLçè¾ÞRËEÁ]K9Ëã²Òƒ¾vò›á…{* €§eTDDï„ï”DD@r2ˆˆ‰°DDꈈˆˆˆ‰±ˆˆˆˆˆˆÑ§DD_%Öº: Q#Ù4Ž{Ûeî.ql;dîz¹RT:zH玷¹ùi<î¾”M³óDDöOà™Â|Ñ0ˆˆ‡ÝN¹ENýÕQ;¢”Dþ(ˆˆˆˆˆˆˆˆˆˆˆ¨H'?@ªˆ¨6=·Uù¦Qœ ¢¡éÑUê©‘ê±'ŠÍamÓ¼,®´T;Ì®¿A-%$ üOî áõpNë‹lÚZ“JTTÆú«=»Îlsjah¸9ÎZà}0V\)ÿ~ˆ‘ºa"""""m”DOš""""""""¹ØŒOdDD\qÆá§|÷È\š0Î}Õ~ˆˆˆŠ‡ñóUDDÙ;áä…:?,¢"""""""""""""""""""¡8ï·²ª²U ûTTú.2îܪøö½Æx‹¦àŠGºÛgqÎÁ¤É½Éiþ åðUz‚N#š¨( ác°HŸÉÃ\7ô2uõSš#ú¶çÆø\ý“! ‰Ñ:TDDDNùDDDϱDDDDDDDDDDDL¢"" ;dŒ*¢""""""gæˆ ª"""""""vˆˆˆˆˆ‰Õ!8DDDDDECž¹ú úªª=ÍkKœCZI'âUë %FÇ>¯TØéØÃ‡:[„MûåÊ׺ñ—†Q´ÓÒk«]\˜d,¦¬l¹y8³˜uõP'Å=òK礄Ô6¡”ñÄÉâZðáæ“Ó®_ƒEäð[]Uh­VËôyϤäsw ÀÒ1±h#¨ê¤ëÆ• -|Ôö}ù)™QðOUqòG¾åa wMƒuß§ËxŸ…Óø~ÖÌleîý#°78iÏÓZÁ|L5àð»ä‰‰å¸9ÇnÇm³KGY˜µEq-5¡…µ»00scÛ9^£r6$ª3Ý;¢"""""""'tDDD9ÆÈ‰º"""z"""""""""""""""""""""!DDMòˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆÑS~û¦Nz /ZÚ¿Oi Í–7…ÔÍé—ÆZ3õ!j>¬>–wE+O™Ìr ÷â ût­,÷‹ý%®'R²J™˜Æº¥Å± ‘øñ“Ëë•´NZxGWS]­õªêÚˆš"·[­~DŽÉl¥ÅïSô½ƒH9U ¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDTqÀϾQ|§Õ ÇÄ@'ÕQ¶è‡æˆU7ÈßdÛ› ­Jñ.:YuÖ¡uÛ%9»U¤Íóƒ…ìpJÍ©¸«dµ7vÉS˜ã°cr ?#ò[QÉþ £ßªª"&è‰Ý=}ì """"""!DDDDDDDDDD9ÁÀÉ숈ˆˆˆ‰„?’ ù""""""""""""""""""""""""@6$û¢¡Ç~ˆFU¿Äk»tþ¿ÞÝ/–h­ÓÎןÙpaåþ8Zž¸HMCœOÆ\y‰îNä©ö~IE'«i«šÇ>K<Ž¥ëæ²XÝ‘îÏôÊŸÍ×UÏê©Øö*¨ˆˆˆˆˆˆPú""""ˆˆˆˆˆˆ¨37Æ3Ü…TDDDDDDDDT Ъ¢"""""&sÑ;¦Ùí”DDDDDDDDDDDDDDDDDDDDDDDDD;ªn°ÇŒûÓìü½Å`uÎX-à¸ö{Áv=O+\µÇ]Ìew1Û9ÈY­ùÚkZZµÏdpÏY÷)]!Àåœruù¸-É'ê¹ cnЍ‡ÝPÌNvôôUD=lüÑî›*;cíÔ”iÎvÀþj¨ˆˆˆˆˆˆˆˆˆòƒ©ôDDDDD@001Œlˆˆˆˆˆˆˆˆˆˆˆˆˆˆ„elõDDDDBUQûD¯³ÓÙ4ŽœÃîõu55Ó´u.…¬c>Ÿ¯yù´(MXNØŒvõ_^žJ{¥¾¢9|¹"ª…ì~ å!í ý0¶÷¿1ÿ%Pqœí…Å’9ÍÔã$Ÿ—ªæˆˆˆˆˆˆˆˆˆ‰Ô ˆˆˆ‰‘7lû¢""""""""""""""""¡8ßOùª¢&ÃtDDDDDDN¨Ñ2ô(ˆˆˆ:"&ØèˆHõDN舩¿¾ê©Ðaˆ¨q¾Êxò»²áÆèm̸Z­Àö°’GÉ)ÇÍŽ‹'ÙFê€Ï¼9¯ØùátFàCØ3³]þö-»hÛ¥%óHYï4ÓWPCQÇv½Ãù¯_#º®Gª""""""""wÊ"! “ˆˆˆ‰óLÝqææÁnõ\†qº"""""""&Sl纡8Æ9UDD_=)¬ûÅP©l" û±a%ÅœÏ>z~~°¾„DDDDDDDDDDîˆ;""""" Â"""""""""""!Ü"""e¢""ÅØpÆ Ög‰ ëõu5l‘Ä t”‘9¬ sÙÜ]ûÇdöv Í~™®ªÑuz–I¤ ™äðÈyZG¨æmÑZÑËËðl{eO¯:ÂKÏ ®:Z¢Pé,UaÔà¸dA0.åÇ]¤¼’¾ÝÕPoÑ2ˆÑ dœÕ1¶Èˆˆˆˆ‹Œ˜ÀÏ62:gü•\Ñœœœuô\Ê""""""" Ñ·DDDDˆˆˆˆˆˆˆˆQ """""""'Ñ¡DDDD;¢òõmÎ;6–»]ä#(hf©s³Œ0»ü–¦î÷ &¬}EA/¨æY 9<Î99YLëm7'uV–½>±µRÚ §´Ú ee\µRî.sšÁÀÈØab& ÈwHïÚ Y¸ÊÛTÏc`½ÒIHyÖ7õŒÇ¹åpú­ÕvDDˆˆˆˆˆˆƒÙ7Ïl'ͪ{nªˆˆˆˆˆˆˆˆˆˆ€äü"""""'Ѳ""" DDDDNè‹®IXÆss7ÆIÀüÕaI\ NuÙšæŸDCÓdDDˆˆ™DDDDí²X‹Åýóô'‡ýDæ86JæÅoiæÆÒÈÖ¿þu­¹©f¬¬lp É!åhõÏEñݨjmW*«mX`žšWE(cÃÛÌÓƒ‚6#Ü/˜‡©ë²¼8SzýÄM9yl¢¹\éf{ÏF´JÞb}¹r¶Êøßªª"'tDDDDL çº"'tú"""""""" Üe;Š""" ïÓÙÈÊ£ŽH'ä2±—õ¾´¦§utuU$®™…”F’Gœï—Â=NáYü°q?P\nwn'I[ B`È)êšÖ¸ŽGsÚ>7â gªÏTðÇOŽ&†´v]ˆˆˆˆˆˆQ*„û'~ê"}¡úˆóim)CƒC'¸ÔÂÄå±Ââ3ÿÓ ÍVúiùéÞæ¼wz¯WEèMg®Ÿ^ý+§nƒGž¤ÓÇÁé“ÕdzF\wÀ8+Ä»Ûn{E²ëEQE[LóÔóÆY$nCšwuÓ» {A9-?ÉmÓA]|ÐöÓæ:ál¦ª2ò‡™"k³ŽÙÎq•î""""""""""'dDDDDDDOš""""""""""""""ˆˆˆˆˆˆˆˆˆˆˆˆˆ‡¢ Ç¢"""""" IDDDNèFFǺàâ“•Íô@ˆˆ›§É{¢"Áçáî¼ÜØ$ãaÝNK-®ße´ÒÚm4pÑPÒÆ"‚›ÊÖ4tß+ìEB6Otq i$€É$ôXÃQë=e©ke³pžÛm¨…ƒê[“É·0áÁÌ„0óM <»Œ°‚s²ð´Ÿ†oº:÷ª¦¹k[Ä’™åžñ/4Nõw’Ü5Ùô:Ê­ÒÚi®•ÃOZAš´²âŽ<>¸¹±‘Ú '2¾ë]¶Ýj¤–º Z`r"¦…±°^V€;/©vò’n¸ rìr÷\Æý\‘ªB¸‡M±Ô¨±ö„jii4ö™ÒPº.¾i«ê2O˜ß'‘‘ޏå&WžX=ÔKá̓úO¯¬ÚxÕÇH+j„~tsš:Ü7ˆ€Ñîà¶[¦4–††˜Mf·Ë==lÕ!l†šYKp%‡~ÊÂâÞ¤·Ø²GyÕ·V[¨å˜A‹÷I!òµ­šO¦Ëê_'µR—ÑMtºÏû1CJYŸ™yXC]xÉÖ×vTE£ìöË T#ÌsåõÀåø†3;j¼^«îU¦²¦®¦yÝ+¦tÓH^÷=Ø$—É=ÉWnâ¶«Ó¶»•–+¤õ6{…¾z‹}SÝ-;™ p.k à ²Ü·ÈÙX @Øtð3wm¯Ä¢* w zš3±!äÇÎÖœt݃ê¶@ܺälå"" †=Qº"!D#>¿š§OLªŽˆˆˆˆˆˆÑº"!é²!ꈈˆqТ.º™.tQ_û,?Ÿæ±/xñ§4ÎkEu²ñS_ cƒ)Œq?,çË%Âá¸,mqñ‰mŽ&:‡DUɇ0Ï^Æá¸9Ç+ûÌ©'¥®´š‡N[¯´d˜+é™P Ø9 àgÈ/P"""+†\\ÒA½]ì–y+)®–™_E%t>T¤5å…Í9øÈÈWú"'|'tD@00ˆP¨½Çþñ[Љµ5\B²ÕZéå‘Ô4QILÊV»Nb÷` ¹Ç=q°²-þï•Ur>ñ¯mÔ‘gà”˜‘þ7³½W»QàçD[jí4µ—íWpûܾTóÒù2, óaÌvì2OÏ äÖÞ ­<²?DêÚöO%=Ù¬p‘ü§—õ±´rŽn]‹ÙÝz\ð½v´ßk/â®ÛO)ŦL¶Vd‰C›ÊÖr¹¡£§©;¥|q2™@†±¡­É.Ø Îåv3öM³•^‰”##tîƒcÝlû tL{ªcu×,‘ÆÇI!à œï@7+SÜK¾ Q®¯úˆ9ΔӰž¼Žqåÿ‡•Zõ-¨Á²µñå­{CiäFù_>KÄJ¿µWõ~–ám³ˆ‚”[¨®uÂ’šŽv½•;²G Â>‘ÆNH ã}êß |CµÙ-wý7 uMººŽ’ÚVê!/`qi‰Çâ8ËIÏpÔÖ+Æš½ÔÙ/Öê›uƘ´MMPÎW³™¡ÍÈ÷iäB÷8U¨¿¢¬æ m #±½s•ËèŸDEÅÙç?=— ˆˆˆˆˆˆˆ„€—×yœÁä7·W,oÔª§TDD\y~,×,mŒ¢lG·º"""""""""""""""…M¶ê‡¨êªˆˆˆˆˆ™DØí’›&Uî7 ÚךëJèkwßµ=ê’ÞÇ5Æ(_ ó§ÀÜFή?%…ßâãEšÂÈ,wy¡òòZƽ§¸#˜çéè²-Ž|-¼}Í‘jÊJ9jâ25•Íu8f6-{Üìí‚íÏL«—Xèý#®­QÓjk º÷IŽx]+‹}Øñ»sêÒˆÏ |m@Ÿúìç‘÷*·3ýÓ.>˜ÂÊÖº ]ºžÝm£‚ŽŠš1ðFL­hØèÒˆˆ‰üÖ±u­¬Óþ!ïÚ¶ÁPbšŸUÕUS½Ž8‘†©à´ãr×´¸8w#ºÙÒ"vN½‘mÊ"!DD A¨\[mü,hùPèù*®.Øãø*Mîp6÷Q§Úûˆ<%â5Òjù/z&û–(*a±Á#Fd`çÆ ë— ñ‘t_hôÍž–´Ôô•%±GrÕ獵ỷØikðõÛªš6Ú¸+íôÕÔ³²zzˆ›,R³ð½®‡b ú;¢d¡DTßQÇeŽüIj7inê˼A®›î¥„gý¤î´Œz3ôZÁ• < `m”ÇáG4Wø;p’â+#¹MRØènr’ji 0Gnû:"A<0F0@# Øx[W Ê öDDDDL×t ""&Äz®-.å%Í 9;g=ö\‘ "M`ª1‘ """"!ÏdTÀ#âNý𪈈ˆˆˆˆˆ›ãШëÇ¿²ðî¶m6ËlÔ/¦|¬tÕm|P4É#byñ5“—;wÊ…z¿V^µò¦ó¨oõ“8ó¾Gór·=1ƒ¦^5-Kcp1È šáŒ;9ÁÊ÷a¼E%+#–ˇG7!Ý}”…ðC­…»ˆ3èùª¤mÞžWSBéæýé€? oáncl¤œ òŒžMLÉÓšØ*¢"+SŒ: h®jMRÆËn·Ë%??á3ËOÍå£êµÂ½=6ªâ>›Òí†Zƒ]s‚)¼¶s8EæJò=^ãì Úâ"""!Ø""""""¡!£%Vßô}·^è;¶“º5¾M};˜É ra—¬r7Ý®ý±êikmŠ»Î0Êš·ÒÔ´dö?•Ý{|9ù-‹øf{ßÀm _'š[@œä5Î # Dî‰Ð*v:~Ð{à¡á]žÂÙ1-Öî×¹¿½,sÿ‰B?IÏT[mõ•f’šz¸ãšpÞ-…Ø.Ç|elרt·xcAE«*]õu3: j:~i*\9yÜÖç ‰%ÀeÃ|¢·8µ§n^)íÜI·R×Ék¥¨¢•ÐÎÙTÐ×p½UÝâgÄŸâ? £ÖÛeÂÝP.PÔ“3ØöÈÆsdm¸ÝÀí賃n i‹ÿ 4ö•¦»@uª„²¦ùl‘á®nvxÀò“ŒŒã!X¿hí¥²i #¨DDÉIpšÏeŒ8õ‰BXúÐ\à[Íž«a¾õ$Wn 2ÁÈ=‚®Hø™+3\}ò÷ R"m”TÎqõUˆˆˆˆˆznˆ9‚FÇÙãº""'tNè™·EM³•TDDDDDDDDDDDDDDELnª3ž¨‰°èˆˆˆˆˆˆ¾ÄõqÓyVøÃê¤<¬sšKcþÓ±Ûò^=&‰°¹¯šñl »×Ìy穬¦l®s½¹ÀØl=L= ›Ó¶)ª&±ØmVÉ*]Í;èèã…Òœç.,˜çÕZ|Bàçµ½-@¼i‹{+%‰ìmu<-†¡…Íåæhܱ͜aA~<ðoPp–ÿ'ŸEf˜ž^[}×´ŒgË—‚A¸Üì:-¾ꉴv»µjŠvÓ¾k|Åì·ƒŽŒ¸ŒõäB[Lcšæ5Ìps\29.I‘”DDÎÙX+ÇMíöŸ—H†w¬§ æýÐ]æ»óõXcìòÒÜ5uÿ\ÖD$mªÑQ8·8–PLŽá€7å!SpôÙ ÀDDDDDÈNÛB¡'ŠŽÝkøúïèÅê+y¸r7 –7çp\pèä w')‰¢mM±hû=œSÁLh袅ñBc\Öìcn¹^Ç|"&QPl>J½FBâp* } W±[ÅKE‘³ƒ®ÖøÁü2ÊòNÞíkTh¤­e Ãïq¹ñ»™€ïƒÙzºë\ê i}–÷¨nuõJíš6øZÍhôkÈâù uÝQ!tsde}~õt°Ýi®–Šéè«i¤lÏ Ë^ÇAR~ïÅZŽ3x`ÕvMÊýM§ÛÒ9aŒ1“ÂÙ™qœ9ÝŸ\ŒaEf×L)yöw^®ÔÖ#„u4U¶<ÆîR'…53ê›ôUENý>ª¨ˆˆˆˆ‰¶Qtíº"DÝÊ"&Ȉˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¾km =¾˜SÓòó9Ľåîqq.$’sÔŸ—eô…AíüWËt·ÐÝmÓÛ®TTõ´s³’jyØÛèZv+Úü%pî›UÉv¬š¶²Üÿ0þŠ'’ ¸AæÛ$€ÑgÛ]  ¶Òжy§ñ6!$Ç™ï ǹÛr¾”DDEþÑIþŠtý(Ï,·æ9ÛŒ|0J7ïûE]žìñÚü=Z*šÀ$ºTTVHq¹Ì®`ÏøXpDDDDDN»"'~ˆ¸wÀ.h¸¼žƒ ˆ#;úìŽs†1ƒ¸ï€¹õ લÛj¯´7ÉéY%}3CM+†LL˜ÇæcÓ>S?ªô:ü‘6DDT'n›*8m÷÷Z¼ñ}›ŒÚ¶ìÙ,n¹É9þª/Õ4oƒø¬g%%K)ÍI‚O»óry¼§“›Ó=2®^pûUqRÅbÒ¶É*æ.ižr9a¥aë$¯èÐ0}Î08 6x°ÛßÇ›ýºã%Ê*kc1$bHäÅD“‡ ÁwЬ‰âï|<Ó¼-ºk-/§Ûj¸AWNdó¸B#|ŽÄdòÄ6³8áëGqc‚ͺ2ã[eÔtw*ŠZжþ¾)0öDqŒ2F~=I9ÀÏü1àT'š£@ …=οPGWçVýÜF9Ÿ—@9<­Àv 8sŽ«\o9Ààò~›,åà¢÷³Ä‰“ÈØã®†¢ˆ—;”:<°tÜ—1£ê¶8ÓÛ§²߸誈ˆˆˆˆˆˆˆˆ‡¦Èˆˆˆˆˆˆˆˆˆˆˆˆˆ3Ý:""""""""!Lô^MËRéÛl í²’gòLùª˜Ñ±øNNÇ~‹ÕihsH Œ‚;ª¢2Ÿ$숈ˆˆ¢¯Ú1#¡úF .¹ÌáhOüÖZð§©|;è¨ÞÂÒ뙿_îp?^l¬ ˆˆˆˆ2GL|Ñ=ާï47ÛX¸ÛÞ÷Be–Â×5ñÈèÞÒÓ¸!Ípú/º<îªæ‹„£ `dåP´·;'uÈu®Hú""&è­î$_N™áþ¢Ô@€ëe²¢­€9œÈœæû’ù•ª*×Jù<Éé%?qÝÏ'$ýJ›þ 4µ¶·ƒŽk%-ÆŠ¾z/Þ¡l‘¿3”¹Àû’ÖôïÕfê}?`ÐzïO¤lÔ¶ªxij*[ <|¡Òr9Ù=Îþ§a€0€âÄ\*–õ}¦³SÜïUÿu†¡å¬e6e}@ËNCœñ6#cŸC!xÓÆ}Äß º‘–jÑIy,¦ómUG–`ï><òci7<Íí×”ì»~Ï ©›EêËAýVíN{~¶³ÿ°©B\pú­\øÓíÓuÖV††Ûr’¦&329ÀÐ6@>ŠÙáýê]?«íØ1ç[kéë[“ú¹ò¶ÛtÅ<,š$r49ckšwÔÈ{ª§Ñ¢""""!興‡¢""vC°$ ûB7ÝUELÿتˆˆˆ‰Ñ7EÕS0‚žiÌr¿„. J_.¿â’®„u%–›}ÂShøªdk·..$7 `4»~`D¯MÑý)Ób½Öù/ÖØ«1€ÓËRÆIæ o)9'‘ÊöVûFNÒOÀ‹œÀ8„Âä³w‡–¹¼ СÀúŒíèai ûD_%}Ê‚‚z8+k §–º»Ò²G†™¥äsùž§•Ž8ô}hˆˆˆˆò¼{$,¤IšÆˆ¦®|­Ž¿ ZãRö¸ŸRIêW©‚23ƒÔ/;QÖÜhi¢}ºŒVJ÷òù\íiÆ:Žg~YVÄ|K¦¦GßtƦ³S[ˆç¬©·æ C¤ ig–ç¸þ&¸Œl ÏBãl®¥¸Ã÷š:ˆª";sFî`qó_Z.$Œã¡Unê½ÑS|gü“|v>«xéÔ,³ð®Úן:õ]MDÀÓƒÊ%~˜‹”ÿ{Ý@{× Õu@¥¤žª&TÌy±EÃß.Ù¹;vè¶mÁ‡†¶z[[Ù%”Ìž'ÆâZæ?â|o‡ íÕz\Sªm 5e[ÜZØlµ’uô…ËR¯$?°À/¢ž­ìñùŽíê¦7Ù¿3 õäEÀ=Í·H?ýྡL ¸;¨!ö†ÙCÅ‹=ñ€6;¥¡­yÆî– Ï÷ú(×HCfil½VѼ6]b¼ð'FÖG;¦smPÁ#œwˆynBÒ?çÕd2"""wDDD%²"""""!DDDDLœgEA¶Ê¨ˆ‘¿TDDDDDEçÁc³As–颂*ùNdªe3¯ù¼ •è"""'\aPñáÃé>ïIÄû\EÆ™­£¼FÜ’cæýLÀcbÒç5Ç=ÏÝ^wƒ®4Ö ã4¬¹IQMV?óEDîæ1Ë’L%Çr?zŽê`"Œ¿h”Ü(°Õr¸˜ï¬`w6æ†^£þe™8 ðþhG4“ÿÍÊ¿µ;ù+ÙFw[¦ŸÿGz†õlŽÝwšg:2C<Ʊ®`'÷‹[ ÅÊIÙn·kEÖŠA%5d žƒžf=¡ÀþE}hˆˆˆŠØâ–³¶èpÔ·9NÎZx°K§ÛG@Ü—;;dö_~”†²ŸJÛ"¸<º·î¬5yHýwêJõšá€#Óenë1©¢ŠšZêŠ! ‹£|Mi<Äc;ŽÃ==VÔü×ïÔuw­+Æ»Kg1¹”qx…‘¶1»eÁÈnIåê¾{›ñ]¦_æ7Rh}AZÑM<“d€N]“pO|;ªÏv±|–Ž’¢ä))ª¼±÷šh\eŸò¼€qóUöŠg0r;œ7›Ùrþ­Îåv@ß$®QžÜÀ®hˆˆŸEÄ’FÙPËí½5÷½!§Zs÷x*+dÁî÷5Û×àwæ±…­(uOÒA;é-t²ÔJè܇¹¾\`ä‚\IÃJئ—ÔÚjÙLYÊb¢……» aƒÑXþ(ëá¶x|Ö•¿”Imu3O«¦sbhú—€µ‹Yn¬¤¥‚®¦–xéê‹þí3ã-dÜ„µÜ§¡Ã¶8è®þðÞáÅ>#QizI$§¦vf¯«k9¾ï½2vhÏwœüÍ&ŽãýóF\‰§†¦Üü‘´ôÒç]šþž¡N&ä´l?5þÑ[­áΟÔL`sí·CLóÄs0ïò濚ƒQ5Ì{zd`©ãö}_ß]ë枑Í?¢î>lg'<“78ôÀ-?š“C`ˆˆˆˆˆˆˆˆˆˆ¨Z €H9Ê©¾Q7Ê!ù¢Û¢"""""¡ã#89Ê¿TDDÆØÊwL"""wDDDMÑ""&ùDCŸTDDDDEòÝíÔ7{]U®çK]\N†x%lŒpÁiá@Ü ½ðºí6¡ÓñT\4{žed±ómŸÂÉI$– €Ù3Û|Îið—ǧjXi4>±«2^Ò(.2ÊÜÖ4ˆßÓ2ÐþÐüY.“*?øø¡ûßP[Ì(nôµÎ:—GÿÙÕáBã-w‡-Pçy²CFiÜ;®Œ˜kBÊ‘ÈÙÌÓ‘ßÙrEü~[_[ÀˆªÚçÑתj—`lC„ïÿÕ¿’ëð«d¾p’«OUTyµ~¹ÐÆÒì¹´Ò2<ûsy­Ìö‘ˆˆ…]TðÓSKSQ+"†&É#ÎÆ’IìQÚ’«ÄO‰;M¢ž*‡hm5+«d‡ –O,²nd1¡½™ÌF>"¦†A#>Šh}ÏUÉ0©¾rªºmlµ䇱­ ì1œŸ®‚ï]$Éü³Ùv´’Ñžª¨ˆ‰•ÄçµÏãNöËÏGɶ([ÍÑ®k9ž·3ÿ0®¿ÖÙk.ú’²7:™‘Éo„T0ngI!òÆøÁÙÇ þï™ÐÓû£vQËÇ^¸Óô|$©ÒL»RËx®¬¦&’7ó=‘Ç/;œìlÜÀÁÂðkþÞø¦¸yª,š WÚ&–©µô?v²I+Ý#ZéžGŒŽ_Ùiý•sp‹<;ᩳé-u¬uLâZšÛ…ÊO9Æ0K"!¬h Fq“¾I&Á¸ñFÏ'‰ˆ8—j·>‚ŠK¥5l´²?<¤ÆÈçø‡\Ÿ1ÙÀê6SºŸ‹ü.©¨0Á¯,.0n>öÑñ7^‰ûe>¯ðÝ«…º®–x£·þ†¢7±ÂÂgrHݱ¹¹÷ZÌtÇàÆÇª•¿gޣЛ]ßtëÀæ¹Ð6¢'dþ(‚1Ó¤„ôì§éÑs쪢""""""""""""""" Ýꈈˆˆ¸O UIOQ&†V–IÚ×´ŒAØ‚6м`ð¥æ]*õ «a·½îó…’\²&ÉÜÁ.U“¸iN F¿8K¯ø‡k°Óظ‰¡µMÂïLöÂêÚÊ×´€Z^ðð îì7§BrOÑãËqðë^(ê`s[K ŽVŽpW ‰À'°+Æð p5| u#ž ¨nõ1÷kO+Çýr¤Xç¸Ürr¹"Äþ/mÿ¤¼8ë9‹Lt±Tÿºž9?&>ª4ýž÷ÃEÅ«½‘óòEs´9Þ^?ÐÈÒßÉ’J§wɦ舅B¼e¯×—èxeÃçOYDê¶ÓÎiwuÊ£› ¤u‰¤döqè7‘^xYE½ ´²9/uÁµzy¼É¹]êÙ’=Éêâ²oÕ“ÍÓ¿ªæ¸HÂâ8ÇQލ+€ÁÉ÷UˆªÕQ  Î:®K1>Y^ÖG.{Üv ’V¤µ]æ}E©îÚ‚`á-ʲzבæHçvôæ Qx*Ô:[BðûR^õMÃôd5,’9f9l¢&ˆÛŽbàéØï‘èJùø£âcW뫳t‡­5ô¢¥ü‘Ï eÕõ>íhY×'w`g-Ü,ÄŽñ'JÚ÷YéºËe•M§ÔOŒ“8=à`8’pלû/¾ÕÀ>-Ü´6©·h꺫uTm–*h̲Fæ‡5â.nröÊù¬|âÕöwÁC /ѽ€º»4ý©yAùóñƒÜCáýІó«l_£©*çû´'ïÈï3À81ÇØÏ¡_Mo x™I¥-š›NVÝmWjfTÓÔÛA© 6@ÀK;äcߪûøÅû–…»‹MÒI«4}к–ïms‰ŒÃ( |ŒžÖ’vÆz¹ʲ ¯„™ÖTÚ…<ÀzsÄGÿ!JäEáqÒÛöƒ¿ÙÏ0WÛj)¹}KãsGóZÝð¯{u‡šF±ïò£’³î’—YZc9ú¶~6€uëº""‰~3øßUC-G ´“¥mLœ‘Ý*¡.ó>,O)Î\>‡—¾UÕáÒè[{µŽ°£úU^ÌSÂì;ôld°zJìüG°£dR""*27ßæ¾ZŸ=òD"– 3(xÉ-ãìsƒß¡_SBªá'(øÓ™\bɸ“Ó$`•Ï'þÅQ¾à‚;aU>Kx˜¾³Np#XÜ ˆ–[l”Páܧ̨ýKH÷ùú-b=͉®8 ÀYû‚ü×ÜV±Ú.·›£l:F(ÜÚG¸sÏ,~gÅåÇЃñ»ç‡1øOÂÂûSé4­¯Ë¨™¡µ5õó*ª:~7í°<­ nwÆr°wÚ[4ö-¦£wÃq¹Ï)ÏÅOÓïóRrÃmŠÑb·Ú¢Ú:X©ÙÊ00ƆŽ:/´‚F7Ç©$¬/ãJÉÛ€iä8u®¦ž¾=³¸“þm‘Ãê¼/Wé+xC[b–b÷Ù.²E1ø •­•¿ñºUjx‹ð¢íQ¨äÕ9¨¡ ª­›žánªyŽwŠXÜåÉÉ-Ç©è£OˆNGÃn%ÕiX*SO $ÑÔ?¬®t,óŽÀÊ$ o“ÕYö Ê‹}\uÔs¾Šy4R0áÌ{-p> €VÛl(o}ÞŸúšêXêcß? Ø?_pUDDDD@1ÛˆˆˆˆQ6ù¢""""""""" Çù*àÜ¢""""*7£;*ª1Ü÷\lUQƒøJä""""¦GÑWªÇž%c|¼× ÂÍ;ŽN6 Éþ¨éösÕòjMg@dø¦£¤œ0¸dò¾V“ñ7ø)œˆ¨{-\ñzÇQ øß©-TQy·]]QB×;›–79³CŸ_…Í[+Ð:ŽWh«>¦ ‘¯‚åIã—ö\GÄß›]–‘ê ÷‘_wŽ“UZí3TAé't1¸ür>>By}p×W®ˆºê§Š––Z™Ë,2=Þ$¨áZ‚>&ø¥¹k;„fJz9j¯²Dß5ò@Ó¶o9xÇx‚žnÆHÜ*ÿ4NèŠÝâEÖk&й\éêM$syâ2ÿ) åÏÀkº7˜ä‚=B‰>8¹¬ë¸f¶_µUÒãÙÆ)a¬x•¢BÞnaÍ»1ƒ³H¦Ï’7 Zîwí¶WÐÏÂäòã/å.ÇeÄó?qƒôF7•ϪæÝ÷î¨\s²äÂHßUÆQF´2úi8waÓ¬#žår3Èß’¾ÜÏoä¡n•³Uê EAf¢„ÍSTòÏP\ïà Ú¾£¦¢ÒvŠ:(5,TP¶(€å,o ÀÇeëàlr;eEÿBžëÇ> ØXé?HºG°ød©¥¯þíÝ»)AÌs¿¢¦7÷udñâÐûçµuµ…¼ÒZ¦sy†Ä±¼àmýÕ>Ï‹¥HÕ:®Îy<©íÔõD¿3[üž‚™ÙAÏ´^ÍäqM_›(®µ¾•îõtR¿¾$þ 7é*{Ž ¡¶ÕV2Š ¹› µ/isa8/ n@êp¶Wávö/œÒN™’Ë ieäätY`i 5«&¢""""""¦08Ü *¢&ØD숈ˆ‰ŸDDLôˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‡Ý¯óDDDDEFµ¡­°²=Á­. àz.ÿ]&:`téÿý‹±0:uùªŒå6L…C꩎à`úªô–;ñ,éõÇ—ÔÙ§õéË¿Ol¨¿öwËËÅ]E%Áö0üÿvvþRœ¨ú¡ù¨¥ãû‡ÖiÚ^'Ûb寶9”w Àq-3œC}Ø÷ÓpýÎéðÄXªlõ¼6¸M‰©úÛa{À‰äbhõ.øÝ襚ÃÙÏä³7d¼]yÓè»Í-4žTõRÁœ¼Ü{KìwÁp*"}œ0ê][PCyÙm£`=ðçÈOýP¦ª" L‚±oŠFí3Á+õ\e¼õP>…¼ßûhÞÌqœý'ðÛQ\Þ:èÆÐFùni Ïõf7‰ÈF^OÉlžV¾9ÑuÔÔ6š™òºNF“ÊÞ®ö áµÞí÷bæPÕC+ØÖ½ñµà¸5ÙÁ#¨ȯT*;n‹‹·ÛÝq˳±]Œw0÷GlÒTñë©]qãVX¥k¢³Û£„†»8–_Ö8~S·<ÚßpãåŠµÐÆêZÎê—HàÖ´IO,Lõ%îh¿ÑlZ›- 41¡­Àèì-ÿÇ )ñœܼuðƃ'–|æÉª¤?ýl)U±;ž½@i8Ûä¾{•uÖêšZʈ_ ‹Nà9¤üT ðI_5¯T¶ó;˜ÊêªYö…˜sAú³*| ÀöQ§í ±ŠîÚ¯Q±ÆKUÙ­q Ù±JÇ4“þ!PJŠsO]£ö;©çàó-V…¿ØŒ_êÖëƒe†NçÎf\Óò-ÏÕIAÓ¦Q:"*ožƒUDDDMtDDDDDDï”@ˆˆˆ‰ÝuDˆˆˆ˜EFµ­5¡ œì0ª‰Ý6ÕSº""Ǿ$"ó8®Öɵ’¥Øg]˜Oå¶þÙQ;ìõ“ÆË´.ÇëtôÁ§åµÏø)çóDOuäë »Té‹–»@Ù¨n4î§™®à8lážààƒØ€Vµ-mÔ<ãy‚¥îmËO\&ò´ðÝ2Ù"vÙýíÖÌtåæÝ¨l47ËEKjh+àmE<ý¦8dmØö#±ÈXE×ÿN|jêk½<®’Û£¬ÂÑÚÓÈgsÿXÓžŽtÍ÷äôR%[|O¤’·@^b…žd̦3ÄÜ—ÆDÀäå£nêx½ g[m’g¶;ÍžjfGÌC_,|“4‘܆2\g±>ª uÇAÕU²'u~Эah,šqæÉ'é*Ƶãf4Fë¹/?áV€ýûïæÕ2ó}ÏN@ç0ò|/¨™®­Ï³ Žùò©è±o‰wSÃÎTÞ(¹Mm\â‚•Çý”’FóÎ;e¡¥ÀƒŒwP›Jq{Ué=Gi»Óß+åm5[QNú‡:)¡s{ÜàŒgäpF[#·ÖÓWÑAYK |3ÄÉc>­pËOÔGÕ3¢ävÀú®Ï1®üK—m·\]œõîª2 +žAÛ×Õj¯ŒZ…š«Šz“QÁ)šžátžJW‘Žh‹"?ýM¬ROì÷²ÒOæó#Þù©IƒËs~æ9®¹Yùs{©‘ŸâªNÝ2¢þ®š*Ÿ´/HG‚Mg{ŸÚ?u¬x?,<~JOçu_EBzoß|-é"Ý+ã-”ÍwÜéaÕõTá¥Ü­Lù9ÏlHÌ}ÿÀù«3ÚAúï…:‹J@@©®¤"˜“ç0‡Ç“Øs4ìJÕ0Ép|ð­û<¯ ˆÚ‚Õ#ù_[gd±Þ0Ê)‡æ¥WCÿbg|&ûà-}xÀ£¬Ó^!î÷HáòS)nôdôqlLa>ÿ¬Ùù©÷j­§¹ZénT®&ž®OõkÚ?_ApiÃ©Û UÜ{´ÇgãN´·SØc½T:&y|œ­{ùÃ@ôØ£\¾õ>“âdz†¢¦(…3Zؤ8jªh$h÷lsI ÷ˆgl­— ÷ ¶ÝTgã>ȈƒtDN¨ˆˆˆˆ‰²""”DD÷\ðds0áÊGQ€{íê¹¢""""""""""""""""DDDDDDD@ˆ‰”ÈÎ227ϲ¨ùå|×Z(n6Ê«}@Ì5P¾:µÍ-?À­`ðNõ.âî—»Ï+iG]!†­ù ‰Îò'Ül~ɸ[GDDTõPgƬz*íiÔz$KNýCqû‘²BÂàgx$:@N'L¸ràl;øâJáûMµ¦›¸Õ‹aÅ U|;àDaphyàZ}r¦ôOl±6Fó¸9šZ~ î±\‘QÇ;`uÉZ«ÕuôÕšÂÿu£‚ ›]D ˜hk¥y`¶Äm…²Ž Ù£Óü*ÓˆÙÈa¶Aæ oÎæ<Ÿ~bUÚ~H€å.ñÍÆ1[[/ tí^ii¤oé™âvD²Œ8S‚;7bïí|=ZU¹à£ƒÌÖzkÝA ÿBYªZh¢smmKO09îÈÈŽ„àt)æUNÊ0ý¡FµÜ?Ómí_¦ˆ™‡ΓÈyŒè>0~aAú¢çe‘·'öq¹'-¨pjÆý5Â/b{\$£µÀɲ .;ÉWT¬.ÿ/c꺲ð0öóŸP¹0eÃ?’ärIåi'>ª±‚KÜ}>?obßÁh,ÍyÝîQGÊ9™dv~¡ªMqqwOâ¶»Âû:{BZ-°¿±QS‚àþf¸¶4‘¹\í¶êèꩌ 8ISSvñÕÄ›ŒyvƒDç}#Z>dDïÉIÅAÿ|!ù(ƒö‡YØ*ô~ m+röÔÐÏQ·ÅŽY#aï·ëHù•Ÿ<7\Ùuà&‰©a˳ÁLOö¡o’ïâ² €#u®ÿZr[nFÒÎÊ[Ý,qÈæžC o–öƒÓ9`${¬)k,ÏÁ òÿÛþKiܾ¿Rð§L_&qtÕVØŒ®=ä åyú¸wwÙW¾wDÝ¿DDDDDDNù‰é²"""""""""""""'òDDDDDDCÑXZÃ_·NÝßIR ò<ò‡5®sóâÙ ô5Ç8^¬—W7ƉžÙAt¨Ó®¶WCr{XE4!ÁŽcË‹ƒy¹Ä`ÅŽl²Ê&wÂ""! NÀ* ÆUQaú­Zl¾.¡ÒRÈ~í¨ôœRÆÓ“Ššyê\1¾ÙˆÉŸ^F¬¿”9ÏUPˆˆµâ>Ðt÷uu½”Æ’'Ü_S 9pÞI€·.\ìc§NË`ÜÔƒVp“LßüÃ$•6øÛ3S+#ÉÿJ¼‘ ÀQƒSÌÎ&xÞ²XXÿ½Yô%«*,{;?Gº¾Æ3î¤Ì´”³T2¢Zh_4G1Èææõèq‘Ôþk»²"±¸û©gÒ<Ô·ê^aS'“Næ»’ÌæÂÇÿ…Òc¾½8a¦åÕüI°iØœçþ‘¸1’ –3$®ÛÑŒy[B­dmdm kFÀÑrDQňª}<Úý¢*<ë¸iвç²Ê7d‡GïJÄôi8ÝÀ†Ç_»ñoUšŠ¦ÔRiZIÏé€ :W  dõçs‚NøbÚrËkÓ¶*;’Š*uBx"k?™îIÜ’IÉ+ÐOš†~7õ]÷Y[tE©“UKJ#©–ž&ó;Î"Qwäy?UÙÀ õï¸[µ6¿”SEÌ©ŽÔÑ—ÈZC€ö oÛe2®gvàq¸Ê0ñƒê:.@s;>˱Bo´_PGQªôÆ™ŠNgPÑÍ[3q°2¸1ŸÂ7~kx]²³Pñ×KQTÁôÑÔ¾¢¡’7™¦8¢{ÎG¦@2Ì()ÛKC+? 161Ÿ@0»Î}œnvd•|º¦÷®x¯¬j;.hâŠlþ";Ü?Ý|JOgtOšŽÞ?-ÑÔðz‚ãðùÔ7xŒy;ö½®èsô^Ç‚ ”u¼·Ñ0¸Él¯¬¦·tΘ–%Åg£'Ú¥IðÎѪiâæ–Íqls8MðäŸýàŒ‰AjW:*œålÀâK' –F;ôeÎX9k\ÖÉ¿ÕågõETDDDDOâú"""DDDDDDDDDDDDDDDDDDDDDDDDDDX§ˆ×éìúŠº™´ÔÆè qšNV< ŒÁæsr’$d-qÈÀ9ß—ë¾.ÔÓð«Cq¢Æé⬺v‰å)ÞÝÈ?ÅÆB”¹Îhw+;Œ;·ä¹åÞüÐ’?g#ت¢".2f ôU`åhh`*ª÷QÄ¥Ö{/ŽÜiNdm Nhv2Ù*ªcpéݯpRô»ÐeTg*¨ˆŠ}¡š\Pk›¯„·’ëHê9š3Íæ@Cƒ½0Y&:þÉY À¯eËC]ô„²4Ïh©0Œîa›$þOkº~ðRm‰®õ‘Ñ×mMp8¦·R¾wÞ |-úœªþ´åuE§TqFõÍ%v¦¸=°M& Ÿã+ÁÉÙÒ¹ÀçÿT›ˆ¡þ ÍvÔmЖÚÐë]Y5{YÐÔ‚H÷å»zü–@ðYº]=¤à×W«;à¿Ü"{)]3Ãù)KË™#F>öäòµ½2B‘Ⱥk*i¨©e«¬¨Šžž&—É,¯ c:’NÀ(‡â7Äȯ¦©Ò¼8–fBòøjtÀ€i€9ÁÉä¶Ã›c~õ³«ý?Äf\,vBï2*N`ÊÊÜ’~,äÄÌõÈæ=€ÙÊliÛ-§OYi¬Ö+u5ºßJÀÈ)à`k>C©=IêNåzì«UG7˜ax-¦ì×zÛÍ®t®”ËS[#yæ{öŽà{ p"&èˆV²¼UjwêŽ;ꪒ b¢«u¶ú6Ÿ1ò/wø–Kû=´ôõ\E¹j)[OGm’&8·g¾I°iüÔ飳——««Gé;½Ç8û­ óoý˜ÜÉF_ Z¿Op¿ÃÕzŽ¢bÛ•êY¼˜Z<Ž.Žœr4‘<¬“°~K'\üIpŽŽ¦([¨ê*ËÏÆiíÓ–Æ=\\ÑŸÉöVíóÅ· ¨j£º4c’h)bŽ7}%•V«CPxϵRÔŸÑjˆK¬¬¹ˆ^¾ÜŒà‡í,%«´ÔZSI]5%ÈŸºÛi_Q æ(Èh÷'{ tUÛŒG<±½Ï7/–1Ó ôÝlb§‚:x"dPÄÀÈØÀZÐ0 sXË|sÐ\:§¨ŽºæËÚ&ü6Ê7Ë;9Ýøc—oèE¦ ã—‰:¦ITÑ¥4Q=†V¹–nØòPün ¹Y×¹ÂÏÜ&à7xxië¨mŸ¤ïq4fé^|Ƀ»˜ÛøbêI겞Í5}5ðPISjçtPówŒ’ õ÷«éÊ""/#Y^áÓzFñ¨*9LVʪœpå°»\ajJi¦«¨t³½òÍ)ó${Î\÷»w{ä’~«b> ¬Ž´pÙ³¶•‘SVÓPÔÀM7–ò_G —/æ<àÈáŒ~-÷Øgç¦ëq_Ä/øy_¶º²¢ëq/j[hd޹/sœÖƒ¿áÎ~]W“pãn×Ü ×W]?W%5U¦º#A^èâ¨'ÈqkƒZ÷e§;{”|ÕÜ;º]üpûWÚZÉŸ§â¯}l ‡ã}4õEÆ^`Ù– Œžã·.ñÊZ™|ÂÖÉ‘Žz®™]1 ól å¨sÜ@weÀ5Äd4‘ê³G„»C5f¬Ô:YY¾éÚºziž?¨¨id‘Ië±iÎ7 ‘Ýcúj»Þ–Ô¯Ÿž¦Ùz´Õ–<5Æ9i§ØpÛ¡)ËáßÄŸZšM5¬$‚Ù¨‹y#©Èm=s†Ûêä#—¡9å?²!ŸtË´—5>›uÜ §¹LêH€ØS½åðãa·#š® ×–Y¸Ý£ª˜ç6In"‰ÍÏÂæOâÁ7´’Ù`ÎwUDDˆˆQ7Ǻ ãtïÓꈈˆˆˆˆˆˆ‰º"""""""Äœ®_DDEñÝ.tÈ|Úê–BÒpÐws rv_¾û tïŠ(]aås$v$Ý£<¿\eÝ{’†Kt±\iÌ´ndk˜HÀ=vßn»zex|8Ó´6{Þ©æmD•.y󃹹£"1žä3”Ü…w"""""!Q ÇŸ38‰Ãpy4Íæ/ TSÛŽ£ù/@Â"""ùoúKµ¢²Õ_f£­ôóÆîí-p?0JÕ6¤Ó÷¬ël&º •¢¬F^ÓÔ´‚ÉìG+‡±[;á>£:»†ÚR8ƒ%} rJAõ˜Ãúht"¡ I¹P§„s³‹6.:±äÏAkuE]89ÀŠÚz~ûdž|zä÷S]gñש&ýgÐt³FÓvµ1€L¯Ž7| vÇ0Îÿº=Õ×á?E:Á`ºêZ£I-EöXä‚Hqµ8`-nÛ‰ÎÈ+ÛŠ¼RÑü6¶Cp©Ì.§ ƒ¨œÿe½‡öœ@÷QZqÛŠÜZÔ_ÑM AUC åÆ:^MCãØO>~o¾9[¸Îq•˜øá–˥ߡצC¨‰JáÍIDî»ýl€çãvÛì6É‘lhcZ@t ’¦QqšXá…óM##Ž6—=ï8k@Ü’O@£/«]ÔýòáO7/#ci8æÃFÀdõì¶aA«´Ï ¸'¤†°ºEHúK%3!`æšyZÆ Ürýr¢¼NjÍlê«m¥ïÓöœ6šžO×ÌßYeïû­Ã{le`¹¦ª˜?%Ç9ú¯¾…•4ÖꪈŒŽÌÃäk hæÛÃaž›õ[*ð·K|:hÚY¡cã’ÙÌö9¹kÞâA¨9XÄ¿…é(U«xeK=T2Ê M‚(ùßs3à ä·%¿«ÆÛq°U\.âEk(ª4¦mCÁ,ŒÛ¤qxH a}ÖñVÿ(ŠƒA_ñ–9õ0}Ý€Ž¹t˜ "Ú¡újÜK‰0Ô×½Îg¬q¸{uî¼ÞX«øsâîÑa®žÏEu–ß;áqòäó xÈÎ>&‘‘è²®ŠJÖqJËJ[îe=ñ‘·ál‡áŠsóهߗ»ŠˆPO$/æcÈï±ÆêéÕÚÆë«¿DÕ^ç5´4bˆT¼fYckÜZïÚ ;ñ…öp’¦¦Ÿ‰ºjz))ᩊïM,Nü±‡6Vpp1œw[Y…Ï1‚æµ®ß!§ |ŽË°{ª¢""""'|¢"!ØdªguTDDDDßÕ ¦ØØʨˆˆˆˆˆˆˆˆˆˆˆˆˆ""¦¢¯tVgY­C%’Ås†–‡Éôj-[$Î~7¹¤l@h#¨+qfMg-S.VýU¨(é˜LR[ß^()̹Àpš8¼ÀÇu ${½niŠj—ÏCSyó\Îxëh­pÕ1HìùÕ“½óL7ÎÚÝÎË5Zmôöú6AOM8hݰ·æ~«ês˜Xü¸U×EK 3)àhllÏ+}$ãø®äDEiñG_Ø8s§£¾jQ÷Y*NÖÓµ®¹Àš\3Ó|/_IjF«Ó”Z‚ÅVÊ»}d|ñHݻഎÎAèA ÕDíêˆFB‰~81WÅžÛb‚c[)-=Z=0ûÓù-ŒõPíÐñÙõ…«^Q‰Ë/™¥®È\SDÆð@êöslõdû,…à \ArÑuú¦@+m2:®˜9ûÉO+ÎyG`Çì÷Ry4ñ9¬¡ø1|ºÀþZÚ˜¾ãD}&—-è9þ‰¾Ï=%÷ }ÖSÓÎÉnõ¢––IÃ%<ÌÛ¡‘Ò4œœ˜ú dÊDD qòénÕž!5oß„tvéi˜ÿëK&k'v¢G;ü^¶µñ4wìú†Õy´4EY|{š$À2FÄ]ñ¸×8pµ¸AÀ> qZµº‹TU×Yl•Í5õÀÉYX2êØãœ8‰·p¦Ÿ øs¤¸o§ÙeÒ–ÆRÇÖz‡žyê_Ýò?«¶Àt •Ùòª¨3ºª"¾75¤¶NÁ¦(ÜæM|ŸËš@qˆcÃÞß\»á,ú¨Ûá†q/‰ºãHfÓ6™MÔ¸á²Ìp ŽyœpÛàÜd-‰€ÐÖ€Û°UïÕ 9¨vßr¡oÚ-©<ýE¥ô”a¥´tÒ\fÜŠBc`#ØFóõQ«†–—GëŠ K=¾‹í¾dôôó’#3ˆÜ"s¹pKZò×`ž\de|šçZja}šïºÔ\*¤ÛÌ€Fµ£ kG`|ZGLßõ}úšµTÜî3ä²[“¹$ôw'M^ ø?ÓVšh.F«’ûråu¶žGGG ½á‡ÊFÛå­êpÝ^1©íZà âÓj·QÛé$žŠš zh›m¦7à5£v $pV„[xC¤h„‘¸Eg¦Íé¼m;+¿ »8ùwA×ñoé”'âØŸt>£nùP3Ä3ŽEôs¶&Üm·‘¶>åóû˜Ÿù©Ãu†Ç|Šá§nM¡¯d°rÖÐÈæ¼˜Ÿ9ÙÔ¾ ZöñáÓQpÒ¾®÷c‚{¶'™•#ã–Œøg `œƒ¶pN“,§c0Gü×ÛnC)v׃·±[ð¥Ä£®,÷‹}Ykj­ÓG$m.ÝÐÈÜgÔáìæÕ›q¿\{*š"""""wÊ"""'tDDDD'U1Œ*¢""""""""""""""""¡ì€aU[á‰îtm. °tDDDDVÿt³\h»¦–»°šZø;GÅ ñðÈßí4à–ÙQ{À¦¨»Ùµ~¡á}ñïcâ|Ò²»›È©…ᓵ½€$“óo¹S²"!QgÇ ŽJm[Ã=u!Ò^n©sžy‹žö˦ŽlŸqô”ÉÝYücЖî$pòé¥.¬51óRÔäÓT7xäö=qեú׎‹ºj~ñbë!–†ïf«×RsŒKÇ¡×1S_u@se…„—ÓP†4í#÷É{Á—æ2$ì2CWÊŽ+[msNÇRRZ*gŠNÒèÆ\3±~ÎÇÈ,Ÿàjç„u5þdo¬¹Üe’v²@âÀÏ8èp ÁõYÿç¿Í;¢".#>¹+Xþ+u;uu}\^cc§¬ýd àS´Bâ=‹Ø÷ï,EÌy‰Îë!p/„Ú‹‹±–›S%¥·ÆI®º:øiÊHÎã.$`4œç $lS‚ü+Òœ,ÓµiêQ%d¶å+÷š·uËœ:4gáhØ{œ“ëîô\º­ÚUš¦ÔëÓ)¢ûÀç.?²;dû,ö†ÔÖÓprÐØŸ¦šý&i2!•ìåß|.ÎÝÛî¢~‹âþ¹Ñq6ŸNê{¾¸…² !lŸ*@æg߬‰eñgÄû~MMÆÑvßíÍÿõº"ñ«¨lš:Êù9{*e`>ü»ŸâWDþ4usÆiôÞ‡}ùÙ4ŸÊF¬u¨üNqRë¬éµçZÅ+C#  k™Dáßž¹ÁääîâHíŒ//¼Pgu  ¨¶Çm¹ [h« ®|s=¯sƒØ»ÆpÜœz•éqwWqÛŶëºêª›MmúŽšçlª ™ñ°ÑÉ |¶1ÙèÑð¹§bîl‚ùǃ^,é+áŽÅÄÚhÿX<³u‚Xðv>|Cø– d+×Wð‚šŸ‡w»þÓ¹«ê-u2Û*èkgl" ÆçFC' Ãù~6éŒlµù,`-pÈsqŒÕHϺ£ôgh(Êa¼PÏBâeÀ ˜~yˆ·üj}´‡nª=UQÈMÑ;¢"&>š!QtDDDDDDDBQÎ 'Wª"vDDDD!CJ4Úr·U–Eƪ²¢žfµÿz€NÜu<ÅÍ=¹Làˆˆ~køâ³ŠîR^ðÈl7Ê:ùð>#qÀzo3OøVu†H打Fàæ=¡Í#¸#!sDDDE|cðQúâÍý4ÓùÔ–¨žõ¯§nO/þñ»–ž¤e»ü8þ 8Áý¿}«#OÝÍNù ?tª%­ß còy‡g{œÎ²@“ŒuPƒS;‰^2âÔuN•ì7 « þ k›>Ã1’Ÿ!tWÕSPQM[[U 5, 2K4Ï dl%ÎqØ;•¯üp«âeáÖ»\’SézÝ`ܧ >Aî3ÊÓÐRV@û=4E<·»†·¬l®©¦Ôô™oÂÑ!ÎÏga®'5QbñÙ¢*ëlÖî QóI¢'S\X_€ØñÊð=C‰ÙÃÑwxuâ«e ÞŸî°ÔPÂø¤†1åÔDÜÆ&Û~vòáã÷G6:©,Ò CšAdÝTã¡îˆˆ¼"_"ÓZù}}Dp çÏ#wµ„´oÔä –¤îsK[^úª‰ ææI^î¥î$¸Ÿ©*Hp?»5ö–Óú¾ã©êmÖªÖ9õt‚¸)ä–áÀAÆNÅJ[¦¢áwôm%ž U4L2SÛ©ÿ[UPOY?‰ åÎ=±Û (q»Äþ¬ÖQÍkÓÆM9es°YO)ûÌíô’@FýÖàH$–Ò6mUª¯£Ò¶{…Þ¹ ?’Ž'=Ñ·9#ðqñ7î¥'ˆê]Ysàßô&¶dŒÔ÷kÃbš¡óùÎi 1!^Dì'®í;ï¼[➎¹è ytÒW®WUPÌæ0Ic 9’7=œÒ·NÊÖ*й_}¢Çz¼H#´Ùîœa´´Ï”îp6h=Á ÑÔz/XioºÉ¨ôÅâÎÚ—8@êÚ9!þ Þ`3óSwFpúÑÇZFÝr"–ëAFømÕû¹Ô²Â÷DõÍcC›ÓÆíBî"è]UÃM%‹T[ÝEZdÁÁÑÏHÃñ4àûú€W½Â^0ëÜÛS`¯-…Ò½PÏ—ÓÔ7=Ìì}Ü8zã!Yº†¶Šå¸ÖÛi䤤©¨–X©å”ÊbkœHo9ÝØÎ2wõÝ{\4½Tiígf¾ÀG™n®†¡¼Ý>‚GË[_§–)ᎢsÇ#ØGBÈ+¸ õDDDDDDDD;Œ"eêòˆˆˆwDDDDDDCŽýÑb0Q;¢""""áQ4TðI<ò2(£isÞó€Ð:’}]Lu”‘ÕBåJ9£..ocCÔ{Þ¸r»6ö칟bª›""""(½ã—G\iÝ`âîœtÐ\ì2 ÉáüQCÎ_ ¸ôd„ƒê$ß`³x“oâv‚¥¾ÁåCpŒnTŒvL»uåv i=½ÁWîÙ÷ù«+wýG¥4%F©ÓVØ.’Ú^*«(åqjFƒæòÑí˜tõè®›Ò†÷d¡¼ÛflôU°2¢žAûL{CüŠû~ªØâ¾ž‹UðÓQéÙ›Ì+í³ÄÏPþBXáî~‹êáõUEnƒÓõuƒ–ª[e;çiêטš\×+Ýˆ… ñ“ÂÓ¡õËu•–™±XoÓæFÆÀÖÒÖc˜·nø/áÞÊöÑÜm†ÍUm¾Ý1ªí–¹ ¥–geõÌ“õq¼Ú{K€w|ï\|gV‘÷S«Já=4VªiÎC\ç;Ì™ìH €žÿ}J™ióEåjë%¦Ò÷==ro5Ê–JY¾HkÚZHÈ#˜g ãbPSÅW ´/ îº[Oéz:ϼÍM-MmUUS¥’vó†³#f oÂФW‚ 8éø7$‚8Û$·93H$·•… ‘ì~‹;'º"""/žåEIr·TÛ®ÑUQÕDøj •¡Ì–7×5Àõ÷P¿ˆú ýë{U]ƦŸIVÖÐW²ù5žPá šÄÍÎF>6ç¸*øà)¬°ÐhíOMËG~]ÆLR7œŒ¼ƒ^ÑŽ­ä#}”™¡¬¦®€OIûD5G-FšÑñyb’ç8Îû“{}$ü”9Œs¹†ÎæOAÝK.%x£áö˜ á§ 採¶Z6Ð>û4mps£¥Ñ0å®$‚KÎZs°#E[µîç|ºKY]WW_]RáæOQ+æšgtÎq.qè7RWÃç…+Ž¡†›Qq1µv»Sš$‚ÔÇyuU9ýi#10¸~V©Ÿ¤´ÆŸÒV†Z4ÍšŠÓBÁ´TÑÞqêçh’OªÀþ"Øû׉î iø9K©j幇|6HÞI>œ´îYÇPhý#©.4—+þš³]ë(ÁóVQ²wD Îp8ßcÑ#Ñz:9§š='`dµ™œÛt Ëæ<»ç׋[Â.V¶FÏÃ}'ñã˜²Ó nëŸÄÖ‚>kä¡à‡ (¦d°pëOÇ'˜ß2”I‡|œnŠÿ§†:xZ:Y&lGnbÖ’鲎âe×_q*à5k]- EDÐ4»SHc©“Ë,Ü9Îû¹ø·îlJ0Dï•BßóUDDDDEÓ[KMYGQGYuÕº9¢•¡Ì‘ŽsH;FF,¸AzðµÆ¸ªé[W[ ï/åcy‹³rèŽNóD -'ñ7lîq3,—J Õ¢’íkªŠ®Š²&ËѸ½¤dWÚ=WŸ`¶ÑÚm‘Û(#¤¦ø!ˆ4ÆÞÍv ÐC¾È DDDDL¬Iãžž£Ãž®3±®0à ђ2ZöÏi_æVµå­”ÆÓœŒŸ¢Ùï†Í+iÒ<ÓvûDÌ¨Žª•óÔ´÷‰fh{ŸüCGöZÑÙdm‘ ÎFÊx¾¿Á~ñ %ò=”–xé¨\øñÌZCfyo©aë襟‡-:Í5Á­=EÊ[,ô­«›/æËåßÈ·eÑxšçJXu¦š©ÓÚŽ…•”ÒHs7kØá»\à…õ¯„MKï~ŠÕt5TüîÃuŽFF@ؾ6ãœöRS„ú&¤è­®qûÓX4qO#©¢±5Äá™$€s¹Ê¼×M5C'|ÍaË)ÁÏaÿo仕6é²Ö‹MRu7u5\r)¨gØf¶œr;æ ¾iÏö––G;~g`öWѳˆèí^ÏWs©sš%|q“Çò¿£×wz)óáÛÃv›á‚÷x0ß5[FESšLdÄ-=ÿ¶áÍéË’v hÎw>§º©ôü”»R ÇŽ«#üÒóaÓUŽŒæÌCÿò ú… zÌ•Lƒ‘‘•^SŽ¦Ù¾ýs‘Óª²øëmŠíÁ½aC,^`už¦@ÎPyœÈËÚ7÷hQ·ìø»j]Wdó1ôTõi=Úç4ÿ1s…×$l’7Å$-|r×µÍÈp=ˆôöP·Æ×´æ›°ÅÄ iý«DWjhˆ$Ù’1˜Ã>CN>&àuQ><ÐNÝö[ð/«êu +íW ÓQUg®DÒrYLøšcï¶_Ëæ¤ù*÷DD' Ž ¶Wx™ B6†Œô ±>Hòˆˆˆˆˆˆˆ‡ÕZNܪ¡õDDDDDD(wDDDDDDDDT ©€zŒ®ª˜Ã {ys–G¨î$Ò)²ÙõU=ÂËmºK“n²²GáÑÍBÐ!ßxq9éÉî³""±xëuÖÖ^×Ýx@ÚëÕ+ã—È1yŽt!ÀËÊÏÚw.pѹí¾&à§Š[>¨ºÅeÖ4Ô–Yçpe5tr“O#Î+óýY'¡'¶RMdDNýÕ:çeiñgAY8‘¢kt½í¸dÞž¡£/¥˜É+}ÚONã#º‹üâ=Û‚:Þ¿…N{¡ ?êõYs¢ÏvÒ°?Q&K‰ÇÂs>,LŠJšzºXª©'Š¢žfÅ,OcÚFCšFľBø§­m%êyÜØÙVÞXœç~)ü zò‚~‹ÒDLz¢""",[âÇ?ù:ëOþ‘³·˜Å¬ÇÓ=³’ÆJvk[¹$ã{­²ðÚÓ=‡‡ºrÉTƲ{}®ššV· s"kN>¡\ ÙjóRUÔñŒ7Z‹|¾|ºŠþøhœ÷†ŒM?—Ï`X>AlîÝG¾ßMALÒØ)¢l1Ù­ùô""""£³Êq±Uù&Q]C£lt® Œ4—¹ÇÔ•ˆ¼6ÕÔjQ©8€j]%ê¶Hhb.$6(jªˆv?d‘+ZFÿÕƒ•˜W‘­/pé½#w¿ÔíÔrÔó€âÆ’Ô€>«Suµ2ÖTÔUTÈdž¢C4¥Ç$¹Ä¸“ï’¤ƒ~ in%Qê æ±¢šª‚Ž¢*zX£ÑfMÝ&KH8Ç(ú©Ç¦tý“MÙá³Ø-4v»t?ÕÓÒD#`=É©=ÉÜÊôÚ0Oü•zŽŸš®Àü0lWo\M¼‡=®ÙEmc˜ì€$ܹ0·åʳÆÈNé·ª¦Fz¡ «áÔ4”õö*ú*± §¨¦’)6<²×4ƒÍ±º„> ´qÖ;kª`œTé÷´>—1ä² €ÎÛ€H#±ôS³¦wTÎæ¬?b]aÁW§©é䨪¨·ºJX˜ðÒùâ"X†Iñ±½Ö­¤ G“âNZ{tR_ìþÔ‹‹vGÌ[ÚÓ l`ìù¢{^ÂwìÃ7槃qÛ&øUDEAÓs’«„Dˆˆˆˆˆˆˆ‰¶rˆˆˆˆˆˆˆ’"vDDD\]$m‘‘¹í~yZNîÇ\.Hˆˆˆ¨ìãc‚¨ÓìAô\‘p0Hd ç©õ\ÇMÑDß<©­tüEдMtñCÿmPD™×DÐ7p‰½ÀÈßcäøLñ%5E†ÖµÎ–Š~Xmw)“¶ ŠB`ƒá8mÄÈϮȈˆ2¶¬iÇžXø§aä¨sh/´±‘n¹µ™0ž`îG ¹˜HÜvÉ#u¡¥ñ ÀªŠŠ*Hnµˆé--+ë­Ü –ó~åì9ˆøNû¯bñâvMI¦©Ÿv³Š=AbºÒWÑËH÷j<¹Z&ŽV8‡4:2þœÛ‘Óª•š;ˆ–-U|ŽÓh2Í#­1Ý_'.rHæ1§;—ÇŸl{«ÅÉ%ñƒRÚ_:¹ç¬†F}_S?ùJðržš³‹ÚF ØSM-î•’Äæä=¾`È+jA‰âöý9ÁmYx‚©ÔÕ[eû¼;‰\9#ÇøÜÑõPOÂÎn ãŽ’·ºWBÊJ±qqk9Ïú·ëZÓè šÖç¶VÉÑÍ[S<´±Èö´ÔMå°Ú<®v?&•ô”DXßÄÞ£~•àN¬»Å’O¹}Õ›…Ó¹°‡ÆÀÉ•O zuÚ[šb×,f9]Lê©qœÌ÷KØžÏÖIX;Æî¢ýÀk…#Ñ5â¦4õ-'Ì~?ÿ5®wo#¶;¾kc¾ ôÌsÃý’f;š¢òçÜê\I ¹ç•€g¦Æ}sŽ«4×ÐôÂåÐa¨XƒÄ,9œ?ÆpIÛ`Teà_ˆ{^×zëQê+MDºª²:© ­ÿWä2Ð×c?ÖË»nþ4éeŽ×¡œqø%©¸Œ½ZÖ|¿i[oñŸ«G3Û¤ì˜! É6sžç>‹á¬ñ®åºM†˜`ŽFÆ÷ãÐä¹yU.x ö1¾ÏŒ€— ~]Æ »óî¼Câ‹w AO Š…ÅÛ¾–’&8 žäe›<(x…ÔšãR !ª(⯨-s¡¯‰ÑÄöµ£~v’Ðüû#›Ø¨ßÃ=[/ xÇMz’õn´TÕRIJ÷ùEã•ð\A-#·e;øKÆ ÄxÙOh¸}ÎêZK­•¸dûu,ß–Aß-'dÅÐté¶2¨Óñþ·~ËTœ\´>ÉÅ-Sh–6Æi®Õ, L…ÍÇÐ…éð+SO¤x§otÁäÓ×°=Œêèä>[ÛõkÜÓÛlO¢ª"à÷áÀŸ_dcù˜×€pïuÍ""""""""""""""""""".2ѶK»É舊„`{…TDDDN£Ñq=:”ñ•ÁWi;ŒœDÒte¶*©K®´Ñ†ÐÌç4 1Éß÷]ýí²¿ƒn/»WØŽŒ¿U‡Þí´ÒK#¾*Ê`1õ|{܇ÙØ‘hˆ‡¡ßˆ©…eqK†:7ˆvièµ ’šz—ÆæÁZÖÔ@òÒÚñƒ¶Çàãp¢g‚+Ä–~>]¬wš¹b‘ö‰mðÇTÒÉ_,U1ò3”“ÊîC#¹{`ýgJ!Ïl"""E¼}]Í¿‚töÖ=¼×[Í<i;ò0>bqýèØ>¡CÎ/4KÒæ‹õ.ÝÆ¶Ž:ª¢(¯ãï\¾ŽÅEÃêWa×8Ù[VC¿Ù2_…¤z4Ÿð«cìõ³É>²Õ:ƒ ÁGC?ï‘Üçn»úû•3Ñb­oÇ­¤/õ;«î}¥¸EI;#§Ï,oˆ?ï 9ãi%Žãæk°Ò0Mï¢5–˜Ö¶£tÒך[¥3]Êó!ñ»Ñìpa=@p#b ÷–)×:“Ïñ ô3cÑŠJ»½I~ryXæDŽáÁÎßÑedEB@êqó* x³Ô5¬ÓZQ¥Á”t\%r—Ló=òOÛûAE‹-²®õt¥²Û 57 ú–RÓD<<­;u#u¶­3lŽË§m–hDb:H©š#o+pÆì; —¢qÕuTO 4šyc†&`¹ò<5­äìOñâ’ 3U¦8kVÉdå1T^Ù‡5§¸§ìãÔy7øsŒ¨³§4Þ²â]Öám¤©¬‚Ž)knW*‡‘-cKÜéevÜÄ ¹>‹ÜÒœ ך¿EX5>޶KxmÚj¨¦ˆ9¶”Âàœ÷¸7Ø÷a½ôïƒÞ,\yMίOÙ[Ì ÙQXée'p"kšzt. Ðø hc oßÍÕì†Í°öÍþ_EëCàŸL¼k›Ô€ ù)bn~Yϲô)¼pù±Sª5T¯åÇ$ õÇ–%îÑøBá'õÑêÌdâk†ŸZ¯ð†:PÁ±Ùgý#OŸ"ZŠÙ&d`–‡gßÔñhýÇ]YEx楉×ù*¥|C˜Ç C›1p©ä“?5çq;EjÎëçXî’MãyšÛqƒ1¶¦0~#9Ë\6ÈÎZ{‰‘^|RrÅM`âlÒÊÁåŒË™Óv´dŽ¿rFÙË„´¤©¦ª£Š²Žxªiæh|RÂðö=½‹H8#ÝkóÆþ˜e“uð†ˆ¯t0ÜAèïŠ'ƒï–gê° ¨-9¾Ÿä¶wáçT_Áí;x–_6«îßvªwþÖ'ynÈ÷åÏÕdòDBºËòzû®lÀ Æ:.Hˆˆˆ3ú¢!Î:öDDDD= """"""""""""cr}Q23„DDDDTÎøÁUD'‰žè¾k•-‚¢ß]OM%LN†¢ Écp!Íp;A BµÍÅÝ%xàwÀ´ºZjVÏúBÃWrÌ眖’Z[éìTîà¶¼¤â7­ú–™¢9ž<šÈõU ¿-ÁÄ+Ѻ*u¨#âžÁ.’ñ-¢¶T²„\YÉ’Ä rµÆ7¸çö‹˜=¾ §-¦±— m5le¼³Ä×ìrGLŽ«êDDDD!Ûu ¾Ñ+äsê-)¦X÷sÒQÔ×JÐï„™ÆFHõ9>Žüñ7„ hj|Fèøª3-L m´Ó9§ó d¡Uôèµµâ³SQÇ]GR$kéh&m¶œƒ‘É-výó!ýT«ð1¥‡‚Q]æ`7ú¹+ 7õqƒž»0¸G¬ôˆˆŠxòÐÓYõݸ·@ÖPÞiüªÒÐmL]}ßýLú¬cá›SÝt÷´·èÙq®Ž‚¦>l6h¥<¤\~!îÊÔjàÝTšçƵƒg¶Øi–ŠVdÆÐàŠ9]þ-²•DXëÄ'¨xcÃÚ«»ÜÉ.•\ÔÖºc¹–rÒyˆýÆ‰ÇØ®>ô-mû]Ýø¯{.ž:S%-’Œ™êäšPsû,qgL#·øJ™j…k'ÅV£f¦ãÞ¬­ˆÈb§¬‡;£`cbv={^ïñ/{Àþ›‚ÿÇš š¦=ñYéä¸G˜Ü5™ôÁv~`-Œ‚­®#k3 4ûïzžâÚJq–ÅG4³»÷XÑ»ðܺœzñ©¸ŸZûrÐX_7$Ø4µ?ä2àžgì>°'¿U}p3ÂeÊûƒŠ3TZ¨ÜY$VhH°Œþ¹ÿìØrϹÉa -ø³’ÉÃÏ 5zfÁo§µR\ª`¶ÓÁHçy²“Üæ8Þ êy·W…KS¬Þô$‘ùrMHê—0ŒÖHçàà²kw0 pÁÇÄí•òUÝíT諸ÑBØñÏæT1¡¹éœºÈ«O]qcCi=6ouwÊ:ÈœçG t“ ]#Ævøs‘‚îƒe`p›ÄîŽÕµÔÚ´ÚRH$†Jšæ¾YðŒsߘ¹qŽëä.øZ*§Ôš‘‚*‡D%±>9qí"\òíèýoÒ·ëf¨Ó”†ÉRê›uÂ5<¥……Ì>΃óP_ÇEƒŽµ² …u¢–WcâññèÆ©Jí5aã¯4ûuTFI+íT¶²<ÚZž@ö;l‚:T âîÔ<)Ö2iëë<À?[C[HвÏo¡ìæõÔ`›‡€Þ 57 nR‡¾¿O>^j›lŽøpNîŒþ÷ϡÀÈY³Æ^žâ´tÅoÞযuœÑÇQ1l½Úæ¾& lúïóG);¥Lϳ×XyÔÚ‡DK³båºRí,Ra‘ ûNRØw©Ë¾rUQ ƒF\@2UQˆˆˆ¬.:pÎÓÅ= S`¯ä§­g뭵܀º–qÐôü'pîÒz <>qùÁŽ)TØ5 ŽŠJ¿¸^i¤qÄ.k±ç3e½sÑÍ$z°Úy¢¨‚:ˆ$l‘JÐö=§!Í# l.hˆˆ›ã¦SþáE¿6û^šÔ퉎lOn¨È<ß®ˆ¾'dt |êñ×8YKÂÆ¦›TðVÍYTZj©L”sÜÆì·«KOÕe$]Fv Ùœ^ fÿ‹BíDDB‡+[^/¯ì¿x€ÔŽ^h¨ @òØÀöæ%{ž,ÕW_û< u=¢†¢ª¦CÑœñ˜ZØæ&NžÇ²Ø@Î}•Q[UÕQhžÞµD­û…1|l'ÒÁÐþÑ–¯t½²mIªìºtÊã=Ö¾žˆ¿›~idk ²¼NV×l–Ê+-š†Ïl€SÐÐSÇMM$ˆãcCXÜÎuö"""¶8¥¢-CÐ÷){ÕŒø%`ðH7dÏp1‘Ý@ýÁ+ÐñŽ’ß™•³Øî,«m¬I ͆Bö¸JN$òÈní áM1ñ šW‚÷W*mõæÃC \F9YW -¥§bC·Û †œ7V_}/5“‚l½V‰>ù¨ë%¸<È0óy#'×!¥ùôxYí·Ä]q§4–û©«Å536dlÒÌìÊÆuqÉé n¡U®×®üTqNkO›kÓTn1IRc£ƒ9ÇŸ3‡SÛ9;`)Å£tÝ£Hé{~›±RŠku"(Yœœ¤žî'$žä•ë¯[_ Ó:Bï¨jžÆEn£– —œ4–´Ìà}V¦nõ’ÖWÏW1.ž¢WK!?¼âKç•7~ÎÝ7  nú¦jg6¶çs|ÊFϧ‰ŒÇ.ßúà ;ãaè¯o!4× i*m–×ÓÞu>ÖQ±ùŠ™ØØÎàvþàøŽ1ðõæßAÅozïÌ…ÓWËÎDÕ³sGE@ÂsËÃ@ÈÃ[—B¦/x ¢øCi’õqšží}Žš¦ñWZÊf´dùM9òÚWÌw9bÎ$x±»ÙõÕÒ‹IG§/vˆMLN×; 2yÛù€ 6;ô6GŠ4iÎ(ð¢Èú{u]¯PQ]_Hù|ØL2C yk†ˆscüMi8ÎJÄ—2몛ŎçOz¨ šÉmm¶‹în0†B!¸w$oè•UÄMaqšYkµ-âwÈÇ5åõ²`H$uõx“Ý'‘Ït.2—snIÜþgó_4Õõ…±—Mð>¹T†IÅ;„nwǶÞËæ&F¼îàì©IàŸˆºÊ-alÑ_¥ébýc槯˜ÖÐ$ŸÆˆús`/³í«ºïKATFfZät†#eø\ãèpìܧÕcþøƒÖ<:¡‚×°Üì°¼ÿæê³†à’\#XÉÉõ9-*VTÕðÏÅ f² ¹\¢lQÈk-³cFŒüq’0q€áû§@~&èmAÃÍ_Y¦µ ©ÇËåÔGŸ†XÏv‘ùt8 …pðîû]ýÕ<Ö² ½ ™ÑÈÂà驈ž.\ty1ògq‡{bÌ\ö·â9ÊËþuÚÅÆÍ=ú"Q%l¦†zpâ¿ñ¿ìà?~í[+ê`€Gº""""""""""""""""›¢"""&wÆ "ñÝë©­–ʪú©™ ñ:Yóðµ­’~D¯¼6’²ŽŸŠöšpd¥ki/Ñ3áæ Ž|u$;®Å§4•<q ú›@?K\$ãbk.%ÒÓÂã’rZîfúc•HDDELåbß6º{¯õ3jÊ)©ESËžWÅ#%on¤³—äò¬ÿòÒRhŠ9ç’®:‘_P$nÁ1|mkvéŠpO]Ïe ШÛâ»Sj­­ôµÎ‰åÖyÜé)öwÈ!„öl‘€Üï:çi §®´·Ë¾õBðúZúXê¡pîÇ´9¿À…÷"".š©›OO,ò26¸ú2V¥µeÉ÷ÝKr¼Èò÷×VKTIêyÞçàG䦯Ù÷¤¿EðÖ뫤s¼ëýg•Ç ¦/cH÷/t¹ùE&‚&ëx㹊. VQ¹À ÇŒIÊKšæ–íˆ{mÙGÏ:ú›ŠÇUÔ²'[tÓ.w}Lp‹û8s³êŸ‘|öDDEüfÞ+5ß´wlu\¨ªŠkƒ˜Ò|§¼á¥Ãl†D_&¨R¶Ín¢³Ú(í6ØOECNÊjh[Ò8ØÐÖ´gÐÖ°'¼FØ´¤î{¯HöT9ÎËxîÔͲðQÖhê<º›ídtÁ¡Ø.‰Ÿ¬ãÓ kO÷‡ª×›É| nN3é•%nw¿¦8KÂkUt3SÛ ¤ª©¥a’®ª~_Öy-ny]ÌâïÄsÑ oqðKÂmÒïRÍCŹŸKÜ^,±M™æÎO4Òµßç8i.9Ü´ä)whµéý'§ÛCk¡·ØíTÏ$Md0Æ;¸ô2w=Ô_ñâoOÕØïºHвí‚j:‹³ætq°ÈÒÃå0 É€OÄ\Ñœlà¡í<·k„VêYê«*Žx#/|Žô “ÕJî xH}ÂÖn|Tšª²áÔÖš9€’=óÍ4˜ 29йØFÞ=جúcŒZŸOéúcKl ­0A •Ò†µ¹øœI;ç©S;€þøEráv˜ÔW=mÆãj†¢¢JšÉ¤i{Ù’yCƒFsØmóWÝÏÃ×ëã,›‡ö¶å¼¿¨|°ÍŽ>ýT'Ö:Nêo®Ð\;·ºŠÐû„vèçÉ7/ x˜——}0ª•2ðƒ‚Úˆ–-U -¥»Ûf–ßW<Ò¾Y*)äæ’7¹Ïß-˜¶á¤ƒ@½nàõm é'áí’8Ü1ÍO†Aò{püÕ‰„ÝAZ.6=A©mÕðUÇWE+¥†vS¹ŽkyÐàÅ“°É;æ?} u/¨ãuæód °SC,…¼ï/•äàzó †Ê;Eœ’Oà½7¨î¶ µ=ÊÙ]=e;¹áž ^ÃìGòè¦o ¸¹Ãþ7Úit—­6§Þéÿè•3.*¢ZZç5ÃT„–‚8-ÆÙỆzv:ªû%®¿ô‹)j£§3×É#[æÂøùy å#Û#°Zætf8-!íw)iØälG毎êA¥8¿¥ïÒ~ jö²a·õr-ßÁÅm<Œõ÷UDDDDDDDDDDC”DN興ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆFèˆ}Y\m®áêY"žh"¤–I¡‡ò·Ëx Ûñû°ÿu›RQ ¨§§ª·j*@ø]‘þ²ÊpÒI?×E’ÇÇÜá½ÎãÀÿ5zʆ:ž‚¸ÑÕó½ÍŽjr!À$á¯u[ ¥žšhª)ÞÙ!•ñ¸tsHÈ?’ìDDïÕp:«{_Ú"¿èkõžvG[nž˱ø˜@Ç¡ÎVð· íw(dŽº†Hžç“Íæ1âV:c–I@þé÷R$HÜà ç¾z¬Uâ³GeÁ;Õ5""|Hji~jË´G–¸:–gvÉ9°ý €ý®¤kYœ3oà¶¥À«KlœÑöÖŒlôÅ×—âtaÎ8õËŽUë¶SÙ:ûAµ=UÛOhÊi9ªiã}eh8c_HÎ <Ž>Ûz¬‘à_K‹'EîXC'¿Ö>¤óä³õQƒþëœ=œ³ê!é×¼½[|¢ÓZn¾ûpv)¨¡28»ÏF°iÎ!£Ü…¸çÄÞ/éÍaHÚÍo=— Z{ÔVú FÛse2rRÉ·ë ZÑÍÍí‰ ?øVãmOhë¬×ÚH)ïÖªxä’X]†Ö1ÎsLŸ°FÌ2F^À8Éq{ØÈÝ#ÜÖ± —8œS• ¼.WKÄÏš_ÔÆçÇ55Pâk‹`™õíô*djKõ›MZ$ºßîT¶ê¶|Ó¿•¹ô§Øn¢æ â§øç{¬Ò¼ ¶¾×¦¿¨«¼Tå8Étƒðm‘È̼Œäï–xÀ]+ÃXÙr˜6ù©\3%Φ!ú¢zˆså|—òwÀ˨~h©¾s” ñý«Jñj“L±Í0X-í½üúŒHÿ§#aþ+ ð“IwÄí=¥^çÁOr­c'’/ÆØ€.°+]‚G\-™pï‡z7‡¶ÁoÒV j‘úÙ€çžcêù]—;¯Bp3°y\_âîá¯ïWÚ§ÔVHÝè)pùä#׳Z;“üz('ÆÎ=êþ%UIM[PË}›1Zé\|¶îp^팮ÆNRܯ“„\â%¶Ú!n³s€û¥ps"#;˜Æ3)Ólõ!NN ð/Cp²½Úi_q¾9¤Iv® tÃ#l` FÓ¾Ã|å”†Ä ƒºÕ«EÃÒ¬5Íó/u`×i\?ÉloÃŽ ²êN éz›$¯|4¶øhekÛÊæM×´ýFrB߯ígáëRÈÎi Ìá¤ÊáÊÌý¢lð¤%®Ôš‡ˆìt¬¢oÜ)%v=D I;ýCšÓ÷ŸE•QÓÃÜaá×€¼Fá¿)®×fPÔØ©é§…ÕôÕ` CØC”~<óc# õ8Rã²Ç~%ooÓÜ Õ÷(¥ò¥ýø#p8!Ò‘ǿơ÷….%Û8i§u?ܬõ—½Y{©§¤´PAy—‘¯åÎ>"9Ÿ¸hÉÀéÔf;µÿ¯0jÞ8^ªhè~Á§hŸåá£~WTÓ’Èrrð@RKNÙ,úrÏOg°Û)m¶úvòÅOMcêp;ž¤õ'r½õD=Q|õõpPÐÔVÔ»’ x,ŽôkA$þAj›‰wé5o/šžOÇr¬’ sÊÂï¿ ÜòYÃÀЉºÞõÄ ÕM-¯OQù-©¨“ËcfŸ#<Çm˜×?¶ßUtøƒñXKj4÷ * Mk‹&¼¹£™ã¡4ô~23èÅG ¥8ƒÅÝC%=†Ž¾óXé<ÊÊʉIdeçwË+Rrz’pp ˜üð£¤4{#ºkaMªïcHÃ÷*w`ä63ýo^² lkJ‘Œ†·”4` l©ÈÕq‘ì†7J󆱥Î>€-@jZãuÔW¯O¾UÍP6ý÷—šÚ´Í6‘áNš°RÑŠSOn‰Õ =픟R^ç¾ÐýV)¬ÚoFÄâ]WRû•NÒ8šXÐ[è\÷ÇXý–eðÁ¤FàŽ·ÉOäÖÖAúF·#s4ÿÝ­-gÉ¡^zçOÓj­xÓ5…­‚éE-!q`w!{HÇ«N=‹>µ=nÔZ—ƒÚ„Im5T³ÓDã‘ÑžIãÇ•®¶'º˜³êµëãò™°ñõòoúû=,06/o×ð¬÷öy¼»U¬ÈË/Õ¨ÌP©WIOWI--U\íú+ϧs#u1–ººBãÊö´ï,]ÚÑ×ñ8 “à†W¥nÕú»JRÚ¯UuÇîÓÊê¿»r7à$ÈÞlœ ¾FÁH¿š¡ÕQP“¹ßø*¬%ãSX;Jp>áKK?—_}‘¶Øvà]+†7À®ì\=V¹ÅC+Éf€³sÖ—ŠI¤á¨u-šži*KäeDîvLÒãúdž†´g•­c|æ^5.»šŸPk&TØtß0—# jë[žŒiü ?¾ï =DòÒjäl4ö7k¦µÛ)Æ"‚`ÝÎ'%Î=ÜâIêI^¾À*‚a[ÜIº6ÇÃÍIy|fVPZjª‹ÁxŽ¿çʵ;§iŸU~·S±¤ºZ¨XÑêKÚó[€s€æ%¹PÄËŸ®|[K§¢˜HÆÏAfˆ»öy¹L€ŠIü¦‚*x#‚òÇ:·`?%Èî6º„>)a¬áOŠ+/í±8ÓܼªâÆa¡òBU€1’èù\Os!*kÛ+©.vÚkCj(êàdðJô‘½¡Ípö ‚ ‡Ú‹–©s´Úzï–Ï8Ysìëš)8M~¦cÙ!¾½Ï“'æ†!‚HüàõXÛŒáÿèú~Ò)®@~ªëBÖÅTÍó‚ìöõÙáÀdãu ª¢"""""" ˆˆ…]DÑSÓÉQ;ÛQ4½ï=Ð2IPˆú‡Pq·Ž”¶:‰ ˆ\[Mi9Úš6<O·O…ÿ=‡U=­4ö»]%¶”Ô²Z9XƆ´mìú‘|·[u¾íošÝt¡¦¯¢¼“SÔÄÙ"‘¾Žk|Ôf⇄º jÛ…÷‡Øªãp{mõSHúpFùŽA—ÆsŒ~!é…ñéÎ4ñ?„ÓGeãV•¹ÕÛYÉWˆš$ d æoÁ.ˆµäõ$•!¸}Ä-¯hf•¿R\0Þi kùfˆmø£?8Î1èJº6ʯeÓY<4Ô²ÔTH"‚&9ò<ôk@É'Ûjß‹z¦m}ÅÞ©loå¸U‘LÜdˆ™ðF>|­j™žh¦µðž´=¯ºÜf©‰¯Û‘k" Á=O–_ÓöǨRo¸Dú¢"øoa‹Ï`$Àá!ؽŸð—*ÚÜB0yšÀ}[Ù}¨¸HFã…R7Kvۺƾ(t|šÛ‚Z‚ÙK¤¯¦‡ïôMh%ÆX~0Ð乡ÍûK}žúæ:Í3rÐu/h–ߢîcyÄ­Ý~øÏ²•©ÝôPoÇÍ›“VÓjwÔ=¯š¨[¢„7á1ÇO¥ÙÇ^i±×¢ìû<ìÿxâ> ¾8Ú C`?ò‚å‡Ô©¾wNØX·Ä7-\+ÓaàÃY¬iû… wQÐÊðCüÎþ!Ÿ ô6©ñÅ:Ú»½}[é|ï¼Þ®®åíg y Z6k[Ó ÂØV’°Z4®›·éÛtvÛ|-‚ž&ÉîârKŽä’NI^¨ÇdD'c¾y‹SiÝ;–ý~¶Z˜ìršÊ¦EÍœãÄg¡éèVÖþ*xgc§w艪ïóò‚ß»Æa‹®0_&1ôFMcª¸ÁâCQyV-?]Sj¥!‘RQü4Tî d™ØiyÆG1Ïî¾sW‡/ Ú_SA«xƒWk¸ÍOiml‡ÏŽ9Oí¼½¸æaÇ)h;îLÊßR5\m…Â Ê ÀÖ:PÓ凜4»dŽƒ*/Ù`ñ]íͼN]d}Î?¾ÍèÝD)9Á1¤ @ä7 ;8ß9&Ps)aÀ~Ø?.럲apšHâ‰òÊöÇ\÷¸à4¤žÁkçÆÏ­zçˆ6º-=pmu–ÏHö2XÛðIQ#ÿZæŸÚo+#ûlVm3«™TÑ9õ”G¹y;©8[ ðåáÃLp⚎ý|…—[Êj%†Ç|BÃûCaÎr샎PHYèlqƒó%WTc ¸ß*‡¡XßÄÝ]Eõ¥D Ùª!qxÏõ€Fqókœ>¡kÓÃí™÷Þ5èËsG07ªy3ÕÄï5ÿð°­¡j ƒ-6ÚRÖÇGI-CÞî€1¥ß–Ë_~êfÖÞ*l÷›Ð5“ÕÕÕÝ'~9yel/{·£¹vù-‰° *ž»wôQóÇŽ•7Î ºù EõZz±•`¿TóåÈ?âiÿ úüë 5OimÕr¶J½?;­ç'.0 :~M<ƒÙ‹}£öù†¯ÒnSåMA=09èæHüž¯_³–¬¿‡ºž€¹§î÷fÈGø“¢Õ–jrl•óÉ_EXÃÝþµJ^o„cfº>à©Å¦¯VÝG§í÷û=Kjm÷ vTSÊ6æc€##¨> îA^ŠË*øðõUš)%¨-£Š•ÄGꇙŽ{‡ö¿VÁòÐ+¯ìç{…ï[E‚úJ;2P}÷?ÅL…dq›ˆö^hÙ¯×W¶Iœ|ª@ü>ªnÍé=‡Ñkžó[«8µÅ'>6:¾ÿ|« Ž0O(Ûaý˜ØÑô ÊØç¸{fᦄ¢Ó6†1Ή¼õµA€>® Ï+»îvç vWš"(£Ä ‹X5EÓôâK¥®j—IJúÊ:pزyÉ(kšCp É=OUŽ$៊K+áºA¨ÝG8”\u ò s‚ bR109q¶z/wKø?Ö5îlš—TY¬Ñç&:U/~瑾ž½Özá‡~hgSV¶Ð/wˆ7ý#twœàìç-Œþ­„„7˜z¬µ0ÁŠ™c£XÐúÏn¿Å;*ŸÍP‘öù¨ãûŠ5¶:K_,õo§uÊ'U]_‹\`Ï,qdŽ!åøkGBT#|¦z IÛ§Éf Ú"ë«øÁfâøé-UÜ. ›Ã0ëÌça  úž€•²±Ô•P6ÁW&=–ñÉY 7‡ AO&yë&£‚ï}æ9ðŒ¨àž™óø“ÒîòË£µ“?-$4 IZ ôÝÃsßð¦‹+ë,5mGûZªAAGW:wˆÎ>MsÑEÿ³ÚØú¾3Ü®"è(,rý°Ù$–&´zîÑ'OE>ß «ÌÕ6jME¦®– þoº\è夛—¨dŒ,qø*ø¹Vè¾8߸uu™‘ËQE$±6L³ït¯9Áï°—Ë)øö°Ò]xhnóù{#E3‹±!/¨†°íå“'Ó”+7ìߎq.µ“ãÑŒcáçýfwõÀSçPúïòU9îºj!Žf>›ÌÉXàzFZ‰Ö6y¬:²ñcš3”ÓÓ=Ÿºc‘ÍÇð_¦j¸+¢U‚rö˜ÞÓ‚[¿mÀ[_ᆫ¥×:°êºIö\¨™,¡‡hæÆ%gͯoÑ\ àù.@»nÛ®lhÛ×Õw`wܪ¢"""""""" ߢa íßÙUtTAçOœG#3–ã©ÿ’ˆƒÑ0¡G kž¡ã®…Ò4ï•”QCJ9€"Yê]¶Ísè¦Óö½+¦múvÍ“Ao°BÌäàw'¹=OÍ}×H«i¬kƒšGÄ2Ÿftûƒ&a7à gAí±¿OR½‘ÓtDTi;ƒÔ*®>[|ß7/.}—$EÅí||×W7#°ßå±XóÄ' )x«Ãº›#$Š µ3E®¥ßìgð¸àÇ…ÞÇ;à(Ëᛜ&¸Öð㈴µT”•/kšc/–Ý)wÇðŒóDwwÞ¤·9Þn[«i.Tõöú¨j©*bl°MÙ#2×4Ž ƒ•ß…C±Ù¤mÕ@O9üDŠWÞ¦ª}Dõ u!¬¦d'‘˜õ'žLì:m•|}fÒúÕÜø—î´ 7ã—ž£'==Ÿâ>¶°è-)Q¨µH†–/‚64eóÊ low}IÀ­vqc]jž1ñ)E%Dõ5¶«]0/ò˜IÃ;¸ì\îýðÄÅðµÀz.Z…öøÈêµ}lX¨æQ0ÿ±ˆúãÎïŒ ºç@‰Ù "`z" ‹æºWÒZíµW*ùÙOII çžWœ5‘°eÎ>ÀVª8Û¬¥×ÜD»ê‰Ž>ùP]ÝË~ZVèDæ$äth$úU²Ÿ ¼5oøi •ôžV ½rÕ\¹¿`gɇm¾÷œå˜÷M÷UMŽÈŠ6}¡•CÁ[tQɆϨi£‘ õ‡ïí–Éb³Î‰òqŽóX"Ì4ú~V:Lì×¾x9F=Ãù+ßíÔF==¤ôœ@b¦ª[”Ç#-ò™å³è|×ÿº©ölYfŽÅ¬µ¬*šªjâcÞñŸþ4’—`«ÕPºŸÍ@ÿTðÇÅ·^SDèé*奻\aÅ…±Ô3mþ ÒOþð¬÷ã"+Ç‚WʃçÏ-ÿF=$˜çs²;rBz¬7övJ#׺¢—qæÚavÌGÿ)M 1ü;mÓܪ;vàôZ÷ñÝ£#Ó|euú–™ñÑj:FÖsr€Ï¼°òLÖ÷'[Î{ÈTy‘í1ÍØ þJb}Úç0j ]PÆ5·*¸à‚ï‚fm¢8÷qî¦(Ïä¹3<ßöõ\Û€¹¢*eÜärü ÍžþЍˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆzevyž_;yÀæ-ÎøõÂäŸ4CÑco‹>©âö’âmSÛ.Š@)ƒ„ïæ…ÄþÏ#ŒŽé’Kzc|…åfÀt]™ÏEáj66‘츖“$½Íhë·Åù€Ì/JÑU÷šV—c˜ÑÀçn»tù/±p{wG_p¹‚È9DDEÆFs4€KOg¡tòº"y‡Ër¢ÇÚ%AbIi«ëiamù÷OC€Fâö¸ÜåÆz}J¼|Õ\jxÆÜ$|Áu©ŠŒ¹ÙÊp=9“ø¬ýÝPî¼|pÔÒÅŦÓÓ½þp†WNÇaŽtÎ#Ûqƒ·ªîð‡Ä .K­µ%ØHú8ìðˆâaÞjŸ8ˆbîæyÏ`×ðW‰WWļGe,ÖUàÈÆ—R[)É?ÙÇ«œq×e38 À½'º6U@ÁsÔ’F[Sv™˜ylmÜFÍ»n{’²¸ÀôUÝ=Ñ """"(Ûãç_9Ã:}C9e~¢¶~^¬£MÇNgr3Ü­~¿/%ßEž¼pÖ¯ZqFŠëUB_§¬R}ê²i#ÌRÌê¡ßbîbFû7~¡l`ÍWªª"!Qƒí™ã†Zn›2Kï99îÚy@ÿ¬U¯öpÛ¤ÿç½íì{X~çIƒ¾8y¯x#Ôf=ýÊÃÞ6¯²^HAÈÁLAþJ‡mù¬O⇆ö¾"ð¾*ªrnÖ¨eªµLÀçHÉC7f -~#챤êàF¡Ø‚®NêÚí®í:¦ŒHE$àÊÆíçDv‘ŸV“õÂÚΞ¯‚åi¦¬§“ÍŽhšö¿÷šæ‡5ß"ÒÕz-Æ%͸'+˜èˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆŠÎÒ:Îkޤ¾i»íV«•º¿È§ ›ž:Ø\Ï2)H'âobå^(ˆˆˆz"(óâ2–÷¥¸Ÿcâ²ýGA h™k’ÙPÆ»–I%&I#cÙÊy°Àߦ{GÝKÆí[eâÆ ÔÚZûQms¥Š–RçÓI(`Ìn;d4€ útSo„ºÖ‡^hš+í$оw1¬­Ž,âÃA{7÷>§¯R®ÔT#!Pò+’ê«§eM;á“ð¸`¥<4”±ÓS°2(ÚÆŽÀ.ÔDT ¨¸ÈKXç4dÑ|ôÕ‘㘠ÇB¾¤TsCšAè°—4,|YºÜì×øƒì1¹¿s©ˆ†ÏC+9˜Oí8ó0F0Y[FØìúcL[ô农S[­Ð6"î;“Ü“’OrIî½…BpµsâµÒ¿Ä&°t‡9¯<˜v~аíòÕÔQS±ò>w¶6DÝÝ#ÉÃ@ÎHU³/ <0¦áw é­³G¾×ÔÝç%Ó´yýØÁå¿ý¢²€UDÊ"""""""£ˆœc¹=–¯¼NëÓÄ+ÝïQÊçÐC/Ü­Í'ad€áýãÌïñ,sf·UÜ«£¤·ÓMUS4‚8!‰…î‘ç8¹8[LàN¢áÇ mºn™²:p Mt¯ ’¢L“覯 vhWÛF3ê}UWÇWu¶QÜi-ÕW X++K…,J$å£.äiÝØœ/°tÝ;"¦vú¨ÃöŠx]§#Îæú’7Úžnýº¯ìç§s4.«®s±×XâвâsòxQ‰5Óën3_ji@2]ï’¶Á电ŸÃ jjÙ‹O[l”Ày6úH©cÒ6ä½,õ8*¨±÷ˆ!ý9àΣÓÌ–(ªKçÓÉ <­–"$nqÐ\g¶z|,j+8ÅÍQ3"‘Özšúa,œ­Ì”ÎŒïýæ³ó]~™G'§©¨Œj˜R¸¸×s0»n§-=zl§é„ÆýOUCÓ$|‚âzõÛ¶Ýz€Iù-_x©Ð5=ã%ÚÜãO÷+›ßu·¶O%<²ÈÂØ´±Íǰ=Ö+[ð-­ÿ¤Ü/ŠÉSP]]aÿR8îè²]¾A„Çòˆz©ÝŽHÁ\†ÄçeØÃ¹"""""""""""ˆˆˆˆˆˆˆˆˆŠŽ!­.9ÀØdª¢"""Š>ëmuU¦8îYz³2Pʺh(êü¶5Ž¢¨dm`çv>6NÚ½óŸŒ7¸YÞ†åGXZÈfi‰³ž dkЖÆWÖˆˆˆˆ¼ýEf¶je’óFÊË}dF*ˆHiír>`ä(+âæ¥Ð³OxÒÖj 4\çâ6*¨ŒâF—° þ°t⩵¼;ê­i¤¸‘dm–ŠîöVÖÃMYHØÖT1ï !üÍÀÇ0<ݽBÙ"""""""â#`w0hÊä¨â =â÷á§”{l¾8i›O–ÁXÂâ÷49œz“î»vØ¿eÙ›ò»>ÎìWiú-Sx‡«ûß5¥H¨ŽpëÅCCãݤ5äÐtE”<hªMMÅÉï÷üÚ}9L*¢ai-ûËÏ,döظ{´Ëa mê€îUQˆˆð‰”Egñ‰š#‡í§:²û ¨qk#k4 ÉŽ0çòí×Ü/wL_ìÚžËOy°Ü!¯ ¨htrÄv¸wiŽázkøÓâ4š…2Zí³˜o„ºŽí81C€g“ýÒ;ƒ =–¹jq$¿Ãs€˜ßg÷ ˜Eg®µÂ'¾†Ðdz£€lãóòÚ÷žÊcƒ×¨è«ºÇxª®××qŠÒI6£­c…ªÝ3HÈܳ£à6hÝ üG™Ä7>¢*òŠŸhÔ®#IÂ×ÇÝ%qnv$B@8ÿü×áÿ’ð¹ÄLéC%¡«žH²ì3î±Ç̽À,SàƒCM¬8ßEx¨€IlÓƒôKßœ†D ~×™‡Œõ¹lw;’2Jä}¨#$e2¨ì9¤9 ´ŒGU¯=c#Å.¤áÄü”vË«nvf¶Wú5L})'a“˜wÛ+ìðq†Í \êëlÔѽÃv84I·ÌFà¶ÒÊzá=‚§(`‡>Äú(Íãë‡mÔ<6‹ZÑÄç\´óÀ›gR<áûw-qc³Ø(zegºÉÚW”TJæÑ_#42´cÿŠ,ÿˆcüKcŒ!À9§˜}F`#uØÃ‘ó\tDDDDDDDDDDODDDDDDDDN興ˆˆŠ„öþJ›çñayšŠÃiÔ6Ê›mîÝO[MQ—#^Ìž\‚0z‚¸ ºá§¬‚ÙOr×UWºž&õO“” eÎÆ\Orsºö rp©Ôe¤oÝUu¸½§ÃØú|ÕݰW!'Ň {®hˆq×CÏN˜ôß+“@v;®¤;—?UC’ÜœŽä²ì‰áÀd‚s…©N-sÿ¥=XÙ$ó\ÛÍ[ ð6&xÎÛvR£ì×l±ÓëNX#1Êê"ùCðæòùÜ Œn]ß±S &É¿ DDDDï„EÆYn–Wµ‘°9Î8 ©'Ña~,øÑZ)òÛíœÚ†ðÌ&™á°F@iøæ ŽŽàô8Q§Zø•â>©©}¶äÛT2`6–Õóß¿»Ï^Ø ÅÒÜâïkYWœª¢ŠQ—\/rAÎñHñ·fž½”ààŸ èxc£…Š–¾[D³êêäŒ0Ë!|-åh 'Ô•}nµÁã[\7Uq¾ãGþm¢Ý1Žvï7N¿¬$gû!bM%ižý©-¶Š~fË_S$eŒç!Ò84Þç'8ÊÚö…ÓT?HZ´Å©˜¤·S¶c˜Äâ=\I'ܯhg$aa®<ñâÏ \tå†_õ•F#§·S‚ñ ÝøL˜É'у.=ðWÁ \¦Ô¿éS‹s~•ÖnlðQIƒÆ— `ÈÑ€øYÛ'q!¿É| TQ?íw.‘Ò9Ù¢¾ “ËßÊú¨íK©E£ÂÂÅOP[Q©5_$±`i©ià‘Ûç ™$‡oÊå/¼2éK¸#OvÕu”6‹…á­®¹TT¼1Ã#1C¾ä±„ü#?ŸŽª6qÃÄž±ÔšÐM¦n•6MºIc£eŽó´¸bIyÄ4mŒ7êIÇ~+k‹†¢uú}OvukÜÒdm[Û‚§`³/ |Wêë$Òj¶7R[C°÷Hàʶzµý×£úãÁLNñJqËúSKÜ…KðÏÛÉ<ý×°î>c ö%]aÀœwP×ÇΟ–Ó¯4‡é ‘¿q—áÆ$‰ÆHÜO|‡þ…ü9]ã±q£IÖÍòtŠÁ®vaiÜßãu³!°Ã{vBOq²®ûmù¡ç ƒ×+ãºÐS]-µvÚø5d‚xÉÙìx-svõj‹ú¿‡œF¼iîc÷ȧ™ÃúèñE&ÛnÒ3އ#²¶ì÷ ›MÞŽëDðʪ*†TBã¾Ç4þ`-±póQRjM1o¼P½Ï¥®¦Ž¦œ‘ŒDö‡5§Ý¹->ૌöü—8IéÕv¢""""""""w(ˆˆº"""""".ü,sƒ\ò<£>Ã*ǰkèÏ—K¨c¦£©lÆ–¦X%ÌQT cÞ0r0]×¾ ¾Xàᑌu9È\•rAv*¨ˆ‰º"Ÿ’tèŸ4DDß>Ȉˆ˜Û ©ø³í…ÁÄûÛËzç š.š—9¸Ã¹GRîT@ÊK˜á‡zö\¤‡”sG UŠNÛãÝq9ßUîY€pvñÙj¿ÄM7Ýxë­¡òùê¥üƒs<»;zç?U"þͺþZÝ_o|‘F$†–F´Ÿ‰å®›§°ÉÚS@tÂ""!ØŒû(cÅ¿ÜO´ë ËLv¶éFÀøžÊ*ºFÉSÉ€IsòZæ¸çv€1¶W“¡¼Të;Mìͨ~ïz´;ñÒr¥ˆm—2MÉÆçÎze½DÎÑúŠÓ«4Õ¢±Õ ›utBXdwv äê¬sÙ;¯Žõt ³Zªn·J¨©(©˜dši†° ¸›ÅÝmÆÝIýáݪvZç-G™3A?­žA´QãON§8†^´í¾(kx…u—QV€ ¡¥.§¡fÀrœbI0AÜ–‚ìY÷Li-¦)ÙÓÖ»[ÐÁ÷ZV1ÄÜOÌ•í¢³x×­aáï oz®NWMIOËIÁó*C"n s¹¤ú48öZ¤®’Jš¹gžWÍxj/Ž£ˆ—±Ô6Y]MA¾¬°s<íÑŒ“oí8ÙSZùv¶Ù-sÜîõÔô4P0¾IæxkZÏSßnŠ/ë¾4^î•§µ|í&¢ç(<±sg,…§p=^rçnv”f4T9ÆÄgÜ&þʨ£‡­!|ÔÜ,¶Ü,´.«ý \êšÆ±Í8 N~øÈ7 o¿OH h®u-u äŽ:˜)jDþD¹1¿v’ÈØ†€}UÓ®ø©u­ò[¶ ºO[Pò\ ݆G×f7£Fý°®¾ð]q9Ì«·Û…¥î<×ZþfBFߣâõ g© ;QøCá°°—Wñ*®K/–Úªy)ÙLÙ9Ìnæ$ ‡/8;÷Û qÿ€z—„,¦¸šæßl<¬(iÌ^T§ö$g3¹Aý—dƒìvVÕw­;v†ãeºTÐUÄG,HXz÷ÇQìr–áçŒ å+#§ÖvZK¼ ¾ªˆŠzŸïÆóì<°¯¾5ë]ÆŽê*-;yk¯ ¥= [DU,|ð×;,çnXOSŒ¨;g¼ÕPÝ ¯¥—’x'eKGG±ááߘ[vŠFJÖËcš×Ôœ®`÷ì«žŠ¿T\\3¶Ê"}¢Ú0TÙ¬ò–y´Ž6Ú×ã¬O%ñdç£_Î;ÿX¡+¿ù©ÃàZ>é¢*4œò8ÔØªsÙæ¦˜¹Àuý™þ WÐŒö@Cqéì»ÚIª¢"""vDDDTkƒ³ƒÐઢ"&ùDDDDDDD@ˆˆˆˆˆˆŠø²³^øsÄÙõe–‘ÔúQ>¤ÄK¢’¨æ F>þ`AÎûà‚0½ñÂáJÚz1p¦’‘¬’Û]8ahÎî‚CíûoE+4ަ´ê{oß-uQJXîIâls¡xê×`‘•ì¢"""+wXkm3¤%¡QÜÙnûü¦WHÇÈð2@ mê­Ý Æ®k;ƒ-¶}BÖWÈq5\/§‘çѼàí€JȈˆˆq—˜0–¸Ê±&╆ݪ_§u 5uš¤Õ}Ú–zˆsQ8å,{sŒä~,+枢 †¹ÔóG(k‹\XàpáÔt>˱3ê>KªF;›rò\c ”'w7|Œu]ˆ¾zâ`uæØ.µí‹}³Ðð©“Ì~yšZz7UDdkXâòs“Øëî'˜nïÝpv1°ÏE­œ‡Ä–±òàl#ïå­n2~ï]õ;ç¾Uéà.²¤qž––'´@ÚZ‰§¾[Y{òÁò[˜úª¢""ÇÜcáâ•CQRKšÅIp¦”Ç4!ß-žÐpy\ëÓ%[ÖO ü¶¶Õ$š\×ÕÛ¹j*ªåq©{H<Ó08Fü‘’ÒÞSÓÙeÊ:ZZ*VRÑÓCMOÃ"…ŒhôlròõeþÕ¥ôõeþõS÷z 8ùæ“”¸œêI }T2Ôº^ø—â4šcMËQlÒôÎýh-Ì4±ž’Ï‚<É[ð·;vý¢e§ x{¦øm¥a°éÚAÀuUK÷š®\`É#º“è:°ÀWjŠˆN0¡OÚÄU{µðþŠ`è­àWWŒÎi´ÿu„»üj(ÚiMU|QóÇ. æ“ð·;dû4-¼k°è-káo4ìÚ¾ûMXê†S3Œû8•Å ”wÎ8ꊺZ6žx­s0˾N Çé³CœFrZwRSFé];£l‘Y4Å¢–×o‹ðÃ1“ûÎqËœïW8’}W´ˆˆ¾ õæÕaµÍt½\imôPŒÉ=DŒoÔ÷öQ÷ŠÞ,´¦©Š‹HQ³RÊàï6¡Òº#À KIyÎ:1ÝD>+ñƒ[qàù¯÷y$§y‚ŠåÓBØk±Æ\K½Jùø]Á½ÄXÅN›³:J/¼}ÝõrÈ#‰ŽÀ.É=p鞪`p“Â~“Ógïڱ̿׶©’B×3õ,˜<®aÈw;†NGáø}I‘tÔñSÓÇKKtÐDÏ.&DÀÖÆÐ0[Œ;m…¨Ë•Ö ×ÕÇ#ÌœÕrHâíòâã’}ÖÈ<4UÓë zP^(a¬§žÚúŠzæ2fÃ#à˃³žaN}T]ñ+á®ç¢jªõN…‚{–—sŒ³R·/žÛÔ‘êø‡guggÆ6¹î\p{¯¥•ÓDá‰Ó¾ãÜcü×+Y¤78cdÏ<’ñÎêFvÏÍmƒ\OÒ:òÃC ¦ýOStŠ–6ÕSI‚^pψˆÏìäð’î²HØ’åòLn÷ "³øË¥ ÖÜ5¼éyšÎk…;¡‚Gˆ¦?Õ¿§gòç¾2µ=]O=%\Ô•P¾ ˆb–7Œ9ŽiÁv ƒ•–ü ëé>5Ûb¨˜ÅEziµÎìì×JG–â=¤ ùw[%´Ôšš&=íåÙŒZâ:}Ô6þ‹º3–ôö\‘ŒŽ¤""""""""""DDDDDDDEñ_m»õ¢¦Ñz ¦¸[ê™É==DañÈ:î¾ô  øñáŽõ¦jê/¼4¦¨»Y7{­-y}U'´|Ù2°vÉæí¾2q ø—¨¸o«ã¯ |Ì 2²ŽPX$hüM{Nàÿ¶5ÃÍ]h×N‹QÙf禩fKâ‰ýØïpUÀ‰ÝÆÞÛ¸¡¢_§k«g·ÌÉ›SGY CÍ5ŧÍ܂܌Žààˆ_yðáÆË]dÐÒØ©®L‹˜ÇUGpŒ 7ÙÍ-p=ðFTåá„Z‚éèuWÿGn…µÙw1óC71îïSë•q¢DT9ì°Š5Ú:Kí$µ0ÔR‡rÊ%sc¦pÜTíÐÆqŸ…§;«[:½ö}y§.חٵ͢’'«Ý)ÆrNïfÍ·1ãu*;".‘­•±œ‚á±ìW5Gã—$UÀò¼lvpz'—ð†—sû˃› 2âÁžãªâ1€ Ï`ºp@Û“¾V·¼lŽ_Z³ûBˆõëþ§·ü6^j¬ünÒRA<‘2{œÓò¼·ž'ÈÐæœvØmì¶¢òˆˆˆˆWÍu¯£¶[ª. ˜é©)ã2M4‡ cGRJ„:ÿVjŒã8ÎÉV¥¾‚åy¸Ó[h)¥©««™±C mˤsŽLO Þè(©©õgh›SY!.§³Nƾ3á-| ç.êyztÏp¥U¦Ùo´Û¡¶Û(ᣤ‡"(!`k3œ:u+ë?ÀTø†ÝÖ¤8—m§³ñRÚ¨üß»PÞ*©¢2‘ÍÊɜќmœ§·k„Õ¾èi欢¸ÖAÀe¦O4üþ)³¶3ùŒì°_|2h ,—lcJ^œ5E¾ù8œæX6î~&–“ÉÙD.*ø|âWਸ\- ºYéÁ|—kŒ±ÆÁûOn˜1¹$`z¬F]Ó~›‚¾ëeÞ²Ý<5“I ±<9å®i±…#¸;âÛUéæClÖQMn=òrVÄ=ŸÒLz?sŸÅ”´Ð|háÆµ²Ï©)âªá´ugȘžÃØŸ‘+!·=ÉUÎç䪺ªalðº' d-nøËÓPÛ¸Ÿ¦·Yë(hõ%+êyØ|–×=µ±ØêÎgIˉèZ°‹ø'lÈöI¹˜öžW4ƒ±…mgƒšª›Yè;>¨‰Ñµ×zVTJƆ9úLÁð$,+׎£ÅrÀ?”«µ0±×ø9ÃÞ#f}K`i¸yf8îtoòj£ÈÀøÆÏÇ`ðà2v]¼áfžá}ªªŽÃQxŸïŽk¦uƯÎvZ kZÞ½†ÿEtDDDDDEC× «ˆ40Öé+‹f¤5mŽ1€u—“â,÷Î1ŽýĨ¥~ñ~á…ÿHVŸ¸ê /ék[åçŠx_€Í !…Ämœ…:øQ«)õÇ,ºž«išg`?ÕÌ>~O è;¢"ÁüSÖw«·´O 4Câ’Ž¥·­AIÖRNÁGn0x­ÒÚ`ÍnÒìÔ7ÇPçRÆð@ý©;þt뺆|Mâ&§×W©nú‚ë-\òòµ­häŠ6ŒòµŒ3ó=I'%YÍŠ¢|9¹a’O@³ç|.q÷QWOp¶o»¾†J‘–åì”du1‡4m]‘”¶à§ô— ¡}\4Ð\/O{‡é ™Ìøãæ¬nv-%e`=Á'uWo¶Wc½Õ ÃÁßäµCÇ`Æ­rÖä¨ëðr?ÖꦇÙùæ yyÞÒ ò¤³p<¸v>ùÏæ¤nÄlN=Êv$€6è¸á®kÁÁk†ÆÅFŸœ£ÕzeºAišVêšzˆÄðÑ4Dk 9iËr^ÒZyŽü Œœ¢‡øÄÌùoÖ‡ÔÚÃn´@ËLr@ÎÆc98ÃÀÉé•[×>ƒÕ}T•“@àà÷`^ë0p£Ä?4+¢¦¦ºÉrµ³ôuÄ™¢}˜ãñÇÓ`×ï’ —ü%ñ' 5¬pR\ë#Ó·‡4AY l/v7ä—¦=‚³Xp Ad{*œž™ =øÁѦëÁ½EP}ö¦ßQúr­ŒºH*@9$·â{ÉÀwO…k½Ã¾AS#ìùÖšßrÐõ• IG8®¡cŸŒÆóË(¾Êvýå1†03î»`ÉÉ\ÇÂ`ªˆˆˆˆˆˆˆˆdDDDDDDDLÍ<5ÍosÑrˆˆˆˆºªê!¤¤šª¡þ\0±ÒHìg• d½‚øôÕòÑ©lt׫  …º©¼ÐÔBìµÃ8>à‚ î ¯G9î¸L×½˜ŽO-ÜÍ$ã;d>£#ê¹¢""*ƒ°GÊAè çŠJGhn4TjK|pÅÍŽºœHH¨Àçïœ;“d’|_éì:ŠûÃYj^iç ¼Ø], ™©åcKÀÇG¹7¡RoêˆFWÈãt’=¬cA.sŽ©%bNh¸F¨ÔÜ\®«uuÇVÌãBç³v·6Cä1§¯ÇaqÏNVŽÄœº‹ñ߇IîGWè©>£ lR‚›XÈÈtAÌ- ½…­å8ÎÃ}²©Âÿšvï4Vcɧî§àŽYòÈçpÀ#qð¿››oo¢ÍÑI ±¶hê!’'·™¯kò=Aî0Ó!¥Ñ´cÍr`|O.ïŒakóís]ÇJ.VòØiÁ õýlÇéÔ¨!–ª¦hãt²M#ccW’@-¸h £W£ms9Ð8ŠvÆ|‡0|% ò p}Á^÷tDDDØ|YqšM5LݤêœoµŽ «–è#wû 0~7ƒ×¨7 ÁÇ)`¢‡‰šžŠSuÏm¶š¦0y˜¼ç ÇU(¶ÏUðÞ/V{4¨¼]¨-дdª¨dMÔ—;ÉcmMâ#„öH¤?ÒAs•„*ßæ'Ài5·‹[ÍÒàl\6Òo’¶W–BùØêª™6Èòéãïó${/ÕÀn3qVéû‰wùlð½ ´Ö8OTÆžF@ÌGöÛÜg+5Ðh.ø{Ñ7e­Õ5´4§Ì¸VIæÕÔ¼Ÿ†6ðÆ\âð5£'8Ê×§5=ÏXëKž§½ÏæÜ.3:YysÊͰÖ7?²Ö†´@¸û=øhÚkmgîQ4ÍWÏEi?mv&“Ó.p °k½T¼í°UB¾;µÎßi·ÏqºVÓÑQS·šj‰ä Ž1œd¸ì;~j>qÅÆ„±Ã,:^–«PÖ|Mdœ¦p@ÙÄŸ‰Ã>€|ÔLâÏ5ÇdšíÝâÜgó¢·SŽJxˆØmÕØüD‘׺ƒO,òáÎ$ú«·† QñTSiý=Féæ‘ÍT:7iZA<ò8Ê0=NÊ}ðÇþ„Ñ5ÔWº¶éWC?w’¢1´íÉ}F7<îqØCCZL¬Ä2FFø=2£Ï¼Piý|}—OÚãÔ5ÒòUÏ÷¯*pæ5Á®.p?Ouyp{ŽÚ+‰/e$ò[/Ng0·Õ¹¡Òzùn?|uÆN6+*Êl:gçŒ.$åãæ¥8­Têþ&êš×`š‹Õd„އ38©±öx‘þ„.qye®‹PÎp10SœûìGU$›†³˜äo’¹›ŸR­-iÄ]£.”ÝQ¨)mu¹ôí”;â â õ8 èŠX¦‰’ÆöKæcÚr×´Œ‚BTš8äðM$†V–:7€Zæ‘‚èA :qÂ^ŒÕ•]4tìÒW'núx ç¡”ÿîÆ<¯ðü?ÙʇQá6ºá­g‘ª¬’AL÷†Ãp‡õ”²œdÈ6Ï_„àíÑXÎkÚÐs·¨]TÉ ÁiǯºÍ<ñ ­xw,tm«ý-ekM¶²W9‘³ê]¹ˆû‡Õ¤î¦÷8Ñ£8—LÈíŸt»sIl©p ’ÎÒ¾íéÀW¥öš–¢Î©§e@tnÑ<ǵäW #8Îv•©}ef›×ZƒNÇ;çŽÕs¨¡l¯n ÄR¹Äv'•z#ÖUea}Ä"ðmôôRË<ôm˜@h*s$5N$†˜Üz8ànÂ3Ô…&x}â†Ú¡ÑÒÖÝ[§n~S]-5Ô}Ý­qêÑ#°Òs¶ ö .‡1¯cƒšáFà\¨ öŠCã%ªVÌë|ÛŒœK&øúÿtÕk­wª;œd i'Ž¡™€Xàî÷mG‚1xS§A1sËH'Æâæ—H\÷I=K‰þJòÀÎ00ªpžXág<®åo0nqÜœâW,’@Áùª¢À^$üAÛ4 ]ƒLTÁYªCÌÎxhò7æ9Áda»õßÑB½/¬©Çhõ^¥ónòCpeu@–§•õk¹3·êB2ø±×··ºŸIèÛyå"& x'®xsÎ#f$‚ŸÅ¿ZÏ*Šùf¤$ñGh ߩݳãóù/¾Ïá'Xß+r×:ê’©@çu#µÎ¹«”•’X-1M;g1Ï-? ’Q‡? 8Ù¹ÆÛ°Õ}H\ ² é¾Jé´]k(kતžH§§‘“C#‡1íp-p=ˆ ­§ðZÿYª8O¦5 ¨UU×Ûã–¢_,3žLaÇ”l7•áøO^¾ê„0;ûöZ‰ÖÛX^rNHÔnOþÕÊo}ž<¾<Ìpu€3=?Õ©÷úÿ’’à9œÝ— ê!§‚Içš8a‰…òÈ÷¶6’ç°o’µ±âsŠ?é3Š“×ч6Íni¢¶0_'šC¶~3¾Aê½^x„Õ|:h¶ó¶ïcç'îO?ªÏ6|§³ÜäŒwØg*Wpóħ 5\6²âí7[!År>Ó€wr¬Áoª¦¸ÐÅ[EY e$ÌçŠzyŒ‘§¡k†Ä{‚¹ÖRÓÖRËGUU4Ó4²XfŒ9iêÒ0BÂïŸ õ)žzmV›¬—.ó-³võNËöhjŠ|iðϯ¸~f¹[éß©l ƶŠ#æDÑÞX·sq¾\9›’BÂ!§#’ômJª ¢žšya–‡Å$o-{:‘¸#Ô)-ÁïžËÍh¡¡ mIsYWFÀóô“~/ˆ÷%c_ðé›·­tmHªµ_`mUKD|¦ªÇ,¢FþÉ{€“9!ÅîÁ8X„ÖÀ|q=MÃs¤+j9®šs c]ÕôŽ?«#Ô4å¾Ã•ITDLï„DAÑ¢""""m” ¨ˆˆˆˆˆˆòˆˆˆˆˆˆˆˆŠÀñ_MCÁÝDʘ*ê m´PGJÎyLұ͌´w!Ä;Øw¶ü×ørÓRVÈjL4Xþñ&ç“õY)ñsFêÏú°2'Jøiã¨kGö&c‰ù` <)Ü#·ø‹ÑÕ.8l•rSç|Ø$`þ. e¨Óc·Ugñ‹AZx“ kôµÕŒi•¾eAn]KPÐ|¹[ß œuipèJ‡¾8zàŸîÅ´Ì#`+y±·ÂÑû ¬¼ˆ‡¢âö5í,xk†# ¬3ÇŽÒqO:’ÃrŽÅX*P9àó`sšzc9¾íü”JñÀc K.–ëUÒåjóÖ×@á<19»äòülhd½ {•ôgµF™t¡5ÖÒ䥪{#;ó³<§qÜw]\Pâ â%Ö–ã¨î¤*é©þîÙ #w&K±†:“ÛºµÞwrŒå¹[Nðé^ë§tmkù‹Ÿi…®.“vŽSé¶Þ£_ÝñÕWè‡88ê¾jXæ–I\ó+ƒù\vfÀ`{l¾’*™Á¹ÜöQÄW‰:D7 +¡%ûÅÄ´Á-Þ7*œî";ó¸tæêBˆ~Ïr×zª?C#d¹×¹þG0k^ññ¹Ï{ŽÛ8“ž‡©*bðÃþ§ÒΧv¶®Ò7;|mÿ 3*¤kšN9g•Íðlz©%Á!§°ÄÆò²8ÛÊÖ`:.Áé”ÀN¿Ì*Ž‹xˆâ$\4áÂûŒ9‡Ý­¬p5•Ø=CwqùcºÕ½dÓÔTÉ4Ò¾i$.t’=ÅÎsŽîq'rNI%lWÁOcÐü$¥ºÖÓ6;Ö¢ ­¨.fÈHýL~»4óêò;,˨¯–}9j–íºÑÚè"Ç=ETÂ6z ž¤ônNÁFž(øÀ²[_%„µ:êðK~ÿ\ $`îÈÿ»‹—ºˆÜFâ&ª×—?Ò:’õSr•®yˆHìG62#gá`Øt·Ê³K¥”ãw®žhO¯¯±ÙôÍžªã)‘šX£&PòG<¯ü,nÇ©ßR›Dø.Ž*¶M¬5ˆšŸŠ–Õivço5ý6þÊ’<6áÖá;J-c†„ÔrЉ‹œù§ l^÷Os€$àjñcÄxy,öúº÷^/P’AoÃ݇i_žVõ—{(‹ÆšÛ\¾¦Ûo©uŠÅ.ZÚ:Gaò0ö–Q»²:×b°Ì4ÕÕ4þt>F¶&µƒ$¼…¡½I8ì¥áç„K˜µš¾õE,K/ú¥ ß™Ër ¥¿ \@Î8YK^xq³\sʵùp·×Ú.óÛ.”“QVÒJèª ™…‰ãb;‚0¶'à—RÓêZ(ãdËe’J ˜ÙyyÚâ09rïÐý3Û¢§1/wÂÔN²{]«oO<× ÈÇLyŽSìá¾:m#«´ß#Z(ëà¯c‡âwŸßAä7óR‚ùz´XmÒ]/wJ UdÕVT6šOAÌâO¢Ž¾>8W¦4M¶Ë4U:ƒÕrÇ–ƒJчGÍý¢àc¼/°iO¨æk,~ït–HùÚÚZI$æipg6@Æ9Ž3œl}÷7‡~-Rè­eY¦M(ó]C$£ï¦ 2é| 2î ïËÖ.‚YcŒ=ŽÃIÛ®êèÐüCÕ&ã÷­7{¬µÊ]Ìï"L2Oï°ü/ÞI^øÁªEI­lQUFNYn"9;ncqå=öv褯¸•¡õÝG²(˜Æ—½ÏvØnâW؈ˆ‹x™¦­«àµ†€0µK#³Þ6aò£öå®ÞÜc´ñWH݈w•K{¢šFã'“Î`pÇ® [WDEB£OŽ Ëªì¿éLÒ‡ßmTåµôíÖR4H|R3|w-Èß çðSƯé-®jœû¥?ù®¥Ç&ª ãwöØÑ±îÑêÓ™> "*lF=VñYÂøx‰ 5c†ûgæ«¢©x9i/…ç¯+†q±Ã€÷Z÷¦«š_*v8Ç0å{Ó‡4‚sí…4x}ÅŽ qO‡4:kBš*]]<»ÕÚ¹ÿª¥€3FåòHAr–¸œe¥dž pWOpúSz©ž[ö¬œ8Õ^+2é9ø„`ç„îãÜöYSè¨V4½ðƒ·hçmW¬±™Ž\êX1û&2Þ_¦ñOŠ.q ´6ªÇTZn:z(ä$Ë @±ç¾ Øúc+Ó¼yÅÎmÖÓ<5RÖQpFÒW‡ ˆíqó4·4ä´}…‘ 㧨U¼­U¨lºZÅS|Ô-ÖêfóK4¤ãØ7sf€I;T"ñâVë¬ «°éÑ-¢Å&cQTÍÁ9§ ivìIV8®ø¯,uÒÇ&ŸÓNuʪúÖãa<ÍöæÈhß|Œ¯Â~ð·OYÝ-Ï küꆂ0C]€Îy@ÎOe’ÑPç;*슋_8øŽí[ÄÙô½í}¯N9Ô­å;>«o9ß6ŸÕÿ…Þ«£ÁÿíúÎíS®u‰‚a:O½9­†®váÅ.ø|¦Œçc:³/ü\Ù­rMláí,WIXâÇܪšáz-›ã÷ަF ˆœAâªÖ·g]5æ®á0Ï—æ¼ùq‚F[? N€tß*Ð|¯s1ʼxWÃ-eÄ›¬Öý%i5ŽœõHñ0‚/;ÎÀœSù•.¸}àÛJÛ¹*5}ò®õ3\iéQ€/È=\A ´ï¾ÒZÉi¶Ù¨#·YíÔ¶úHXÈiã h ÀýV7âǸ}ÃÏ:޶çúVóA¶ÛÈ‘ìw¤¯_'l†•øÅâo]k35¾ÝSý´8¹¦–‚G6IIÚIvqÛ®ËùÓTKÌy°Z Üã 6hzÒïP¸QMEx4–ŠÖ÷FÉs#d,’bçAnïíÈRÏ‚üÓ|=žz§½—Z¦ÊÏ»Í4`9  —¶<娯0z•™ Š8`d1Š6†µ­4 €Âäâ88X¯Œ\ÐR¸Ar¿ÑÕÑÝ£hŒ×P¼G$¬&A±# mœ+cÃ4<=Ñ:—Rð¯GÖÜîµÖüVÜ®E’H b1ÆÑ˜ A8êzœ…ž\O'A’ ¼;õ!jW€5UØ4a¢¾~POA攨û8^ó¨5£[¢£.Ãh>Loõ?÷ 6øÐ¶Åqðí¨e‘‘JêSÔ³›#•Í•­ÈÇ|8…/·;žJé.7è±4³H_7ÝØyX œsÈÒKFøDzØG„ m}¯Ã†¥®c¢’H&©`ôŠiä–3Ÿv=§ê²ÀËHÇæ°ü2é}]%óNÔC¦o’ƒçyTàÒÕ<œóHÆà‡œœ¸uêAQ7Œ<âCë.v¶Ü¬¬nJÛC¥ž¾`Ç4x$ ¸ú±3‹Æ\Òzí…÷Û/5ô3Å==L±M¹™$n-{bÜp¤7 |Uk="Òq'F iìµu¢¨:>–êÞbîRÀ‰ùË}ùšqðæSx|âô;.q†ÓݨùaºRÿêåÆÏoö‚G¦ã¨+$å7™¸#'ø(%ã„Ñš’]m`·´ÝÊF¶¡±¿"ž©îq?#޹#$ ².à¶¿¯á§¨u-'<”Ãý^ºF&¦{›Îߘåà-›Ûk)®4õôU ¨¥©²Ã+NÏa~kéDDDEÅÃá*}¢sÆþ)Ú)[!.ŠÛæ=¥¸¹Ø=öbŒ‘ óg÷JÚ¯‡Úˆj8G`0U ˜ÙLÖµüÙ$c#˜vvêþ ª„…cqoŠš?†v¯½jJó÷™ZïºÑ@Òù§ tlÑý§=ó²×ç8Ó©8§yU»îVÊwGn…äÇÉø‰Ûäc.ÇȲÌ~<2~›¥¥ÖÜL¤Q<‰h,Ò´´Î6"Y»†žÌî7;lfµ<1SÃDÈ¢¡Œ­h°v]‰ÓdTÎãÑUtÖLÚjIª’£sË"g3Ýœ5£rO`£^©ñ{¢?¢÷)tå®ûú`BöѶ²š6Gæg”bG¸ÆvÂw ªŠšéªªf’YæÉ,9sÞã—8žä’Jºõ/·='lÒQU¾žÃlo-=?$óÑøÞ\IævNý•,¯{¹œòOª©syOš”žü,Õjh)ugcžßd•¢J[[IeEX9Ãä;ÙÐøŸÙ&jém5`ÒÖjÓvZE9“Ȥ„F×<õqÇS°Üú{+7Œ¡¥G¿³¶††çE¯Ù_o¤¬†VÐBæO^×1ÞqspÁiÀ$tè®Î8øˆ²ð£<8ж¶Ip³RGD$ÅôôA°·Ëcw.‘ÍiæèFNT}©ñMÅÉËIÔž^]ˆ©bnsØü==–FáO‹ëÄW:ZM{OM]@÷69ªà‹Êš\˜@Èp’F8ØöS>–ZzºHªi%Žzjˆ„‘ÈÃÌÉXà>àæ°×¼6pû^Ñ>[}>—½ŽwEYo­ŽG8çõÑ Œçqƒ¿^Ê!qÃg´”“Ê4Ô—º¿ô»Kþð1Ï—´ƒfœü8î$š–z:ÇÒTC5=Dnå|R´±ì>„Âú)®4s±ñÈö89®kˆ!ÀìAº”~üM\íÕ”šc^ÖšëKÞ#ŠåQ!tÔ€ì Üw{êNàwÀS^9"š6IÙ$OhsÓÌÒ6 Ž ¬QÅXt½â5¿…¦ÇOržkD×#QƒçÑŽpÆr= ˜ó‡’Ãv9Q+ÄW‡‹§ (Ý©-WhîšYÒ²iäk*©ÞîÍØ&ÔFÀ×çÜà¨Y ô^Vª±Úõ.ž¯°^iYUn¯ÐO‡V‘ÔzpAì@*@5/…þ;ys6¦¶Ï+ ŠA†¶çE×À‘‡bB3ÑÀ™é¦o–ÍG`¢¾Yê™UCY–XààGpH$dAØ‚£•^‰Ð"ø/”—;]M¾¾ž9èêc1OØÓ×bµyÄ­+W¡uÅËH×%üÊöùð‘˜äÇö›ƒóÊ”>x¦Úˆ$áꤢk!wW0éaÏ«p^ßQÏÓ”fX¢ Ït^6¥Ô4v ìì¯!±Ý. ·Æüô•íq`ú–òüÈ^Ê..ÜoÑ@?´NœÃÅÛLÄ‚Ùí-s}@=»ýZTj‹”ËŒÆËe¾ +'¯àEª¦h4Ì…i‘„0ú甜·Y” ò$$zn£×ˆßvm÷‹”u5ßQ1¤M&y©èŽ6Ç'öFÃö±ÐÁ+í÷RkmLꊹën×Zéz%™äìÖ¹ô)“ágÃ%6›ŠYqš:›Û€š’×#C£¢Ît™üRN÷=%CG|*ŽŠ©º"¢<`ð}=5óŠ•3íU5‚¢²Úè¼·ÓºBžÇgç8À#›¾N”óÈç7$ì¸/FÁfº_nÛlÖÊËl®”Ô°:IôhÊšÞü.Å`žŸVq*ž–²èÎY(­ÜñR8n1Ï+Þ?te£É=%%}TT455õ.ý]<.–RÑ“†·'¹ÀP§Œ.¯7›i·èK|¶ j†;ž²¡Áõd‡(n[Ç9ËŽÝB‹wK¥mÖ¶Jºº‰§¨™ÅÒK#ËÞóêIÜŸšùâŠzŠ¨à§ŠI§{¹\çØ¹R¿€>ª®”´š‰’Ô[©žï2+måžFäcÏû0@?Ø#%¤¦]¢ÙAh¶SZíTpQPÓFØ §…¼¬c äëép¨Àp£ï‹þ3 §Ý¤´õLnÔ:rÉåÔ08c› ü/p?z ŸE¯w½îÇ3³€F½ÍÎFF©k¨<¥Ùø°Iô=–Å<"êšÍCÀdõÏ‘ÓÚÌôi$ç26/ÂOLa¤ {uP/†úºã£5å»Y[KYo¨|á®ü25ÁÍ{O³šçªÙ­V·ÓýI«/7zKM²®–*¦:¦P‰Ì7sºì2N2±„þ)x[ŰDëíD^hŒTG@xw7Ň’™±—ã¦p¾ˆˆˆˆˆˆ… €쪩ž‡ÎUGDDDDDDEÂYDxÈ$žÊ±»œg”šäˆˆˆ‰Ý[œæ2;ù¤<»‘Œ8åv'tCžÀ ÏtDQÏÇž†«Ôœ/§ÔvÊHdªÓÒ¾¢¢GJñL[úÀ2>-ÃN2:eaïÜNNêúz¯e5ªòÐúWL@k*Ænsðó½ÈºnqksÈ\r¹g= »ü¶XãÄ/ )8¡Ãª«3„q]©Á©µT3àlÜökÿ ¾yìrðeÄšý)­¦áfª}E,uSË <ýε¯!ñ{véÍóSUD7T'FGÍFO<)›Qéú}uc¦cîVv<×µ®Ãæ£k\âïí:26Úçz t½ú³Mê }öÓ1emì©í?´ÓߨŒ‘+hü>ÔôÏEÚõ=µÙ§¸S¶PÞìwG4û‡>‹ß~ëøì¤­—‚ܨgš -wŠJ§KË]æ,w{=•ÿÀ vÞ#p¢Ë©žæýùðù-K>6Ž`à¯Ò¨zt÷Pí ••Q³8<>F[¸ÀmD˜ß¿R£]+e0½Äà4u'°ëi¾¬”ús…¶ë=4µAM$­ŒT–ù±‚âyÊæÁù{«úª¢Zyjjf†"i|’HðÖ±£©q;¡‰¿“\Ef”áåS©íí>]Eâ) dªÝ‘ F]¹wl Ýìöë¾¥½ÓÚ-4u7 ê©9"‚—¾GØ2~ka>õ®Þ)äŽå tä¢\ó¸[ãŽMúžv€à}ÁPׯ'‡û?(éµ–¨t6Jº¶ÑÍn™î{©¥,%¦7¸’æGdÁÆ áÈgÂÅúSZÛKKO~mDR¾£$ÍQNAeާïn¥Ó6Àeâq ïŸÐ×ëÔÓÅ(-µïn@äÄdwßwèµçó1‘ç ÂÏþ¼5MÄ-+¶¿jºK.ódÈŽ2ùÞÈŸË'3œZȆ°ì»Ü,Á~Yc¥áE‡O]u@—U‚ S ¥˜¸¼“ͳwÁ$Žø’W7VNëÕ#¢dœÿw4yNöN®}Ô³ðñÅ»´¼õ&Q_-îk.Tq’XÞlòK?°àÓ±ÉiìMù©îÑX´íÎûTÞh-´rÕHÜ€\ØØ]®0µK®5ÏSÞëo÷‰ßQ]r˜Ï9ã͆Hêa,‘™üFGuvéÎñ¿†¼U‡Ni·ÉSK<ù.”Ïsh%¥ÉÕà ph9açð—lV?áý;ÝáOŠULª4ñ~“´€Àw›8·wmÚ±^‘Ó—ÍY¨)l:vÛQq¹U;–(!nIîIìä€ê®z¾븵M>‚ÅWYS=GÝãš$òüd€÷4 †IöeÊ¿¼EŠÄk ¹Z§® æû˜´“û¡Çlüð<ܯ>ãÔÚ[PPWQOr¡©¡}$¬å.ž/Ö³ ð=£}̃ÕN;åòÝ`Ó•7ûÔÿr¡¥ƒÏ©|¬<Ì`ÆÄ7;ïŒ îµƒÆ~ ×ë®%Þµ3¥‘±TT¹”¬;r@ÂMǯ(÷%Z?¤ê‹¹¹É#~ªéÐzŽ_Ò¿¢j*ÝKIwc­Õ²Ì<©~bÜü\¤‡BÝ·^÷‡îIª8ýoÑ:ŽÃ L®»SÊ!°d¾3‚î™íœ­šPSÓRQÃKIpSAb†&7 ckG °_ŽûE·€5,‚ªHM]ÊšÁŽ#ÌoÄç4ï¸<¿ÁBÏÕL¥ãÖˆžzzÖ¾÷MŠa–ƒ#Äaû÷apx÷h[E¦oê†\I=Îù_tdŒ.Hˆˆˆˆˆˆˆˆ˜ÈßPü“䪈ˆˆˆˆˆ‹‰h/Éß:*çUß>Ȉˆˆˆˆˆ‹‹£iß•¹ù/MP_(®w£t­†ªŠj±%°µï2G cs€íþlœ´Œîºˆˆˆ¾k¥ %ÎÙUm¸S²¢Ž®ÁQ ÿ ‘½¥®iö µ½â[„u<$ÖQACS%]–âÉ&¡•Ѹ˜Ca{º5¼»íž¸Y_Ã߉ú«%=>œâÞ.öÅOq¡ÓÓ· (ÏÆÀ;Œ¸z;lL-={³êT7[ÆšáE3C™4iϯ¡ö;…è*›¹AÌO°P;ƽ‚]%â‡TÙÁ£uÚ’*öL̓k!w#œLá°¸ú’ISS‡Zš¯BXµ4a­K|5NcNyöæ|Úì¢÷Ó²zguBºæc^ÎWáÍ;FAù…¬ï:ú‹wKe4lmº¥î¬·ù{Â÷Ÿƒ‹\ßRìôÕÆ¦Ë¨´ET€IG;nTm$äÅ ”Ø5ìaùÊ¥z"+ ÄEˆê^kC!|òÉjšX#`øŸ,CÍŒræ5EOCuŸˆhÊÊ–¶Û~Œ¾•®8 ªcAÛnfr֩Ш_?hmÜ]¶ÒÓ=¯¨¦µb§•Ψ™àwå!aÞPÃwâÆ‘µÕBe§«¾QÃ3Ç; Íû-„psUÛ­\#ºë=Ot‚d¼Üjªç3 ?ÖÆàùÀÜtõˆ^$<9áÌspÜo±Û}²¡ï8}Y­8MÆ]÷¡n¸W_[$šׯñ+šÜò´–€HÎÛ8ßßðÀíGÃËÍûRjØ[Kvøí´ñ¼;š0ZçÎ?eØh³…((#j9¥–Gm³HÃ[ò÷꽈øßÃÈ®7-7­¬Ðò^,7êZçò7y¡óffÃ$¹¼¿îû¬Kö‡k™mšbÑ h¦–).rêÒ×ãšÉlq:‚ÿ‹çëÚÙ­•÷›œÛe,µuu Š(š\çسG…¾.祻ºË,ü4‚qç¼o’ŒƒbAÝcm/£¯}qýt&Šéål°Ô‡1Ѿ&¹ÏaÀ$;á#çÜ-€i«] ªÐwqOE&±¼ùÔ—»Ã)yd®‚’Íœ“ËÌá\7$7|af¦±­9hm÷ÙE/´z³—Ié `qÍE|ó–ƒû‘µ¿üµ¸yx‡Oëí9~•Ÿ«µÝ©k=[ÌyþKmQµÄ“ƒ“軇°Á\½ÕSº"ãËsØî7ì¹""""""""DDDDDDˆˆˆ~hˆˆ‰ßª""""/ ]é{V³Òw 3{ŠGÐ×DcyÁ²0žŽa9ÃÜmù”ã'‡][Ãù ¨µÉQ©hjgtQ>މþd`þ0G7^›l=p,]­µ—¯ÓEÖºË[¹*aÀÁ-ý™#p-8÷ JpÛÅÀ{òÊÇ5¿|µ4ƒŒ¹ñ=ݰ2Zîû5H-!Ä­«)ü룢©ÌcÚ\csñ–°‡‡Nªëæ¡ÁÀƒÓåUã#b{ª€ÊŒ¿h&ž5ºNjfFmWSÊ{ˆêåÏc꽿Ú–+¯]§²Qa®–23’覑ұÇêéòb‘¯ÉQÁE_Új»E»ˆvèÜóAŠ›A Ü<©}¹^yrÞÍXÂ^¡~žãþ™s¤’8k¥’ß0k°&a õ`c¾m dc¦è‰õTv:z­R^`®áÏ®4vÙÞê½3z‘”sJÝÞêyÉÄzF“ê Ú&‰¿Òj­!hÔ”8÷:8ª˜ÐînNv‚ZO¨$ƒî¬âGMÖ¶ün68øß2?ö­G#Øæ¹Ž-sNZZpAÏU·Í!quçJYïÅß~ ‚§.o)<ñµÙ-è:ô Ããô‡¦·Ôߦ¹ÑÖQ¸5•T5w•¾cåxs$ç˜79¶Bìो…ºoKÕÕè+\”tUÒV×Éûħ%²—È´œ @Ö絺·ˆ7ÝG,æs__,Íyo.X\y6íð†ì­µÛN@wÄ2Vð³#áñ¢çk¹ ®^}C£{Hÿ%0aŒäaFœ<ƒWhƒ¬èêÛOrÓ1I+Úæ¹Íž˜€\Ñ€pàà=0]žØ½<$PAlðó¤ü—ÈóQ•r9磤•Äìãäb6ë6¾?+y‰ÁÝNs^½úðÍKWGÀM_à–Ö¸±Ã5ÎqnÞí ¬ŠÓ‡´QЪž3Ó ./k*8‰ ‚ÿZÆç®ïYÀÃîê]a"–zû\l¦›«¿GÊÐiôýZ{˜e¹ïû;´[ªµ-ÛZ\(À¦¤´ô2ÊßÇ+‰æ,Ï^P0O©ÕNB;‚±~£á-š}Y6°¦‹Í¼ÉTùÏåLO§HƆϒֻ.$ƒœ2 ¯£.´ŽñC¦ÌÒ:¢Ïc¸ÆØÝ>9¤¢”»¦Ûs dþu›ýÎÛnª†hÅPŸFÒ‘ý]Tvø¤Œtÿ ‰’t;w[†–BdÀ±à8PFWxûª€GS•TDTh6¢ª"""" ÷(ˆ‡¦Èˆˆˆˆˆˆ‰Ý;lˆˆˆˆˆŠ˜ïÑbÎ$ð‡ZÙ— êl±Ð]+Ü%ÊŒ8xs\Hæ »”@ÉŒ¬®|_¨§tÚ#SAp§É" Ÿêåh $f79g¯l,wpàw4ñŽS¤«j£óƒù­Õ •Ísð0ë±Çªôô×ø¿ÃzhíÕQß ¦§!Cv¶ÊèX¯~NœªxŽˆ©ïþj¿T9ÇUâk»>¥Ñ—«TM–+ÔÎiþÓæ ÕΜ¬©°êËEÁ¯1ÖP\ {ˆý—Ç(æëî ÛNw ª¢* ׎=:ë®dºX+¢ÇBàß*OâÌÿ‰gŸºÌ^4ÇIOQÍ=š KN×þï.N°x椫·ÁÏqüÖ±¼^=Ç7Ø;çùlkÜIÛ—8èHú,HÓƒ•yðA]ø“®(4¥¡…¯©>eMAn[MOÇ+½†p=I© jZzÕCc²ÐYmв* hé©ØÝ¹XÆò^ˆUî‰ÙPÀUTÝ=S(Š5ý¢mwú¶îú‰.:bÕ4Õ'šjLÖNçŽóÁ÷+k :BýYYrµÝ¯Úê©$Ÿy¨5Ѹ‡ã™s s°7>òÇpYxñÀ¨ªç ¤§ÕzfNWÔÁ=LlcG)Y"Fa˜h òŒƒ…¬W÷é}{C¨,­<Ö›€ª¦a1-cò#q÷oÂvî¶“¦îÔ7ë ¾ùl—Í¡¸ÓGUNþ…ѽ¡Í$v8=¡òDB¨Nà-]ñÂ1nâÖ°…¡­4ך®PÆàÖ§E³Ë[Ý%º–Içt,'2Z _J"t )}¢ÚhUh½9«"`/·V¾ŽgsÉ3y›Ÿ`èÇÕÊ>xPÖnÑ\m°TM0ކºoѵ„¿•¾\ØkKL6O-Ù=è¶[ÌâÀoÜ­VøŽ¨5nÕŸØ"¸>µãœtôÙcÅ;~Ï} ³CVñ±ƒï·©]GFí¾ X‡è](p ö‰¸î¥KAw÷\‘tÒI4±½ÓÁä‘#šÖó–‚@wÔoõ]ȈºÜòNÀ㺯3Z Êâ_Ì6ü×(ÉvsØ®j.ý£un…º~ƒ 6{טF2~$Çýe$¸cò[YðûVÚÎèiÛ’‚Ž3îYX‹J¾Iø†7Zÿàwê~7ñËh‚ oÕ–;Ý;eÃ[癘öätÜ´ tßÐ/¯Áß 5â½Æ]Q¥®vê;u¾hå–²Ñ4N^Ʊ­'gž~Œ}ç}5,MÈ‚##ÀóÈ9Ÿ€IÆû,âOýŸ‰_lU0Xõ3æÈa抵¡»5àÊð@ÃÇl‚ØŽž´=ö—Äõºßy¶š› U•‘Te®å 1µÑçñ‚ùA`ål ËkœÞ`Fzƒê?5ȽÝ€~?tø±ñŽ–ûKŽõ¹’ÊÜÏäqÇo‡Ëé×u(®µ4µõ0O$RÂö¾'±å®cÈp#pG¨SÛÁG¯zë‡w +üÒÖÕØê› k¦òËQÏîq$¸n3ž˜ôYì´–Ùé•®OöáGâQÆÆ:!(§œ‚îb âÓo’šÞ$ø|Ñ. c@µµ¸nqâ?=–G-µôÙk§ÆÍé|Fj ³jࣨ`ÿõvFŒeyÞjþéâ#HÉ+œÑ-D°‚Þåмùál†ª!-3à9V–žýA¾j*ýQízò!!sc­¤ˆe¼§ál£˜ŽÙôWŒ¾ \¸™§¨õ›{¥¿Yb‘¬¢s¶«„üE­ÿÚ2;‘è 0¶WÓÝf¨¶VEqù ¤};ÄÞiÙ­äÇ71$1ÝmÚÖú¹­ôÒÜ)Ùd±ÓÄÇó69 AsAîÈÊîg$ª8 †‘œìrµ…Ç=k¬ëõmÇMê›ÕEi²Ü*©ãˆòˆã"B pæ98î¬ý}¹Xõ îÕVi.R‰©åh±ã¾ÇäVɸ_ª­KЖY £}`ˆS×Ä:Á8hóŽÀç#±+'PRÅŠ Hl¥¬ji)Csàm #CprVÐX03²Np¿<.êš.&ÇGËxªÓ·nzˆ¥žPÆ[~(¤qÉ-ŽS»ˆÛr 6g‰ýþZ4&¨¸¶á[Mm\­Íšfå¬g”r`¹Á;g Ň3Ëq궃á¢â.ÜÑmy%¢r]×1(ÿÔY ùª¢"""""""""""""""Tù5^êžê¨ˆqú"""""""`g=Ñ¢*`zŸÍ*¡¾ê‡=º®'<¤ãPTñç¤Í«Š4Z¦–ÞøéoTcï<ĵõQN\tËk¾¦ù—Àæ­}˃‘Yë'kÿDV¾’å±7]#|9ê6õ –zFÉ ?ôfІ;ÌèvËCvÇãZé‰Ò2p2æ‘øO§p¶«ÂR5§ ôæ¦æç’º†7Î@Àó€å“nßvË[>%DƒzØHéyŽ×ØþKƒ‚ì¶5àzY‡‹4¬¨•†zÇGÍä ûöéø¹Ž:ç+>TDDE<@ñ&›†<>¨½rG=Ρßv¶S;ý¬ä’?q ;厤(™ÀKOxÓÅêmOx¼ÖÍo²U¶²ªáVÃ4V¸ÓDÂy<ÙÃ@ =p ç¶ÑÅo¡†’ÊöFÞVºWó8ï꾇ëò\^îVH?ìû/¥­  ¹ª"ý¤õiýHêê¤#?ºÆÿX¨TØZ—lR¶cÂG§4/†íqÔ·jKM!³S½¦g`Èç°; oâqø³Ÿ^‹ñÅõ58’›DX77(®ºç“—â&¸ìz¸|ŠÄ~®šÖ_—+†ž±ÒWݪéguTur£§†Ia/—®~[†ïœ€§ÝÚán¡ò…}Æ–‰Ó¸¶Q;c/#³yŽçØ{.ÚŒ3LiÙQO3ÚÎoÕÊHÎ2@$…Ê«Í{1œ ÛŒåuÑ[h£®šâÚxY0åtüƒŸ—áæë†Ý6_q òÊ¡ÇQÓ”?ûJmîu«DÝZÓË õ”Ïv;¼Dæø¡Å+Kâ.å»>¼ij‹'g¾UÆûý{ª!øŒ-¤üÜGMº‘ݧ¨Û®2µÕâäÄÑHÁâf›”“c Œö¿þj/Sç‡oëÑlkÁù¼:Ù#--1TUFìí“ç;§æn ¸DDDǺ"""""""""""""£Ža²e3¾;®,Î1ÏÄ{.C*¥Ã%­®ôåöóMškY\tÍÂ.bÙ"†:ˆe$l$ŠV@#öKNç®ØÁwÞ7q;„—ø-XÓt7kuCÞÚKÅ´ùykHÜ7%¼Øp%‡”úegÍ­4Ö¹²6ï¦n°WSì$kN$…Äg’Fuk¾}zŒÕˆˆPtÙP•Bïÿb®Þ¸T%0vÊŽ¾>¬â¿ƒ´w1)Ö»´OÇ)!ÂF:23ÛÀçè±7€;å5>¸¾hÚÖ²Z{µ¨Ž7Œ°ÉÎã¦y]œû)¿O¢ql¯fç8Ç¿Sõ%wmŸuD#Ñ3ºÖå,ñkOtµô×bË×àÿ.V²DDCô_=u%5u$ÔU”ñTRÔF覊V2F8aÍp;A ‚µ©­UVMAq°Õê‹]\ÔS`c.‰å‡oð©—öëØ+´Ã‡Õ³±µ–éMm ø¥ç/hØyäð°º+·y|¾S#Y͈ËF@Èß¹å,?P°›.Á'ÑlÓÁ˜žôŒq8c˨qæ¢R‰+1 ‘$à[MQâc“=þ|Z#NFùò<ÈùˆkXGGÊG1=˜Þ¹åRÏMØ,ÚnÉ—OÛ)-vúqˆ©é¢ cs¹8I;’w'sºûÜ: ÇËq=NåvFÐÆŒc²äFñCÑB¿´žI?Mhˆ‹‰ŒSÖ;—ßš!•'~>2q…‘ô¥·\qRýCa´ ‹ÍÎšÞØi㚥­d4е ^CXÁðŒîõ*]p+Âþ™ÒÏ·j-jN Ô ‰²Yy]EI)ò³ý£›’‘À1Ÿ†«Ûï>35MÒ8ÜÁ_ Ä=¦BpÖËNû°mïì¬5æ?w–3Ì>U;‹€Ì!ß=ÅÐmœ¬=¦µ=ÛOß)ovz™(«¨ßæE5;¼·´wˆØŽ„µ#q‹JYïÔòFøn40ÕµÇâÚFcÓ¿²÷aacy‰îvÂçÝPí¾p°ç‹îTñƒµ”v˜]QxµLÛ,tÎcH|@u%Ìs°W… ¼5ðzëŻŊ ÖÛ­4B7WV–s–ó†1½Þ@w]†>Kek]šÕIhµREGAE !¦‚6á±±£ è¾¢z®ðšoº–?+”rS¸ƒžhÎÊXp§[èíá«GݯuðÛhÝl†)’YßÌK›IæqÉÉì3× Uø¹»Wj(-:WAÅZúÚ¶ÁCÕnó¦.Ã[³Z@%Ç=ð?5l}¢ðT6í¡î5PGDöÚˆ¥ 7+Øøœæç¸M¾j(ÓTM ã…Áì{\×4A Œ{…1¸âjªå~¬´q:²m—'–STýÙ­là²Lcõ@mœ3¹ÇOŸìõeU»Yk›á…ÔÐDÉHoíÅ+Øw#8ëü‹ã‰×ëøt”ö£mŠÈñQO ”¸Õ‡µ¥³ 0p|ž…GÊ]IU7Ýá|ÓÿTÎcˆÇ_€~ÏÌwS“Ã7iõƒ-:3SN£’'¶ž¬|L­òØçüXü/äc‰'cÊ{œ) ’{>j™ËÍÔv;6£´Ëk¿Zhn” >ž®Ëß áÝÁ‚7ebÚß <ª|¯DÒÉ#¹ƒ ¸NÛ—–ãn„¹Y3MØlºRÏMe²Û¡·Úà{…<Fyc2Hç¸mÑ¥Î'Ð,Gq¢ ŒM#4S×Á¥ë]PÆÈÈß4†L™$ëéì³ `Ç©*}¢ô4pͧ.΅溦ÓE(qÃY¹œßMüÌýD£w+æ `ž.«¢„Sù_£îu—ó“æ—&qØüxÇM”€ÆÝPŒ1誈ˆˆˆˆ¨óº¦O¦¯±ÆëˆqsI »ç%Aèrª:uUS#>ëÉÖ:rÍ«´ÍvœÔL­¶WÇåÏ ‰FáÁÀFà€BºÉ­|6qr)­W ]O;ûmsØ<ºêaËÏ £¹iå²× d)—Á,iÞ(ØM¾Xé®Ôì~·9ãÌ„íñÕÑ“ÑßN«!¢""*’d>ã*ƒvƒ‡ ö=•Fä«KŒ:uÚ³…ÚŸNELʙ뭓²ž'cŸ˜·=>0ÓŸe<']Ÿmñ¤'á¿y™Ô¯. 6Xž1¿|ãë·u²vúયÑWè¨zt^&¾» ‡¿ÞÜÿ›íµ[uø#s¿Ék·Âe;î>$tkgGýâyÝÌ29›O,œß0Gæ¶ZQqp¸P Çݦ8´ÝQKJhÔÃÌsØ6m[p%v.ø_îK½ º?PÜôž¥¥¾Ù*䣮¢•²Ã+Aî:´Œ´Ž„Å\~"uÅ75=.©4Â’á=L­…‡1ù¬ËK™ß¡§¦1ºÅÍêÀ¾ÏÝG5Ë…•š~bKlµ †ÄѦGþ >'óóç¾9T”t ¨ˆˆ±‹ltW®ÒÓTn7\[)peþµÃq‚Ø„„Î \¼&iô‡ì`Ó±•·X…Ê­À ¹Ò€X ï†r4|–Z)ÝC• ~Ò7çUhز>—ßyÿ%¢§–ª¡Á³O+Ã#Ž6—9îvÀ7$œ ³Þð#‡8½Öœ¶TºèÖ:6UÕÕ¾WF× 84d4g×Y?8c®TðÈÈcñze3Û<-}׊/-ÃöFÀge>ÐÛkx}½¶Ùc7ª Øb¯¬ˆaΣs\ÀdñaþPî=”Àã}¿5µO“ ¸¡žô+0ßáŒòYa¿ñMüÐ8FýÄŽ(é×ÑÓjÊʪÖÄù)æe;¥cùoÀ æÀî1ŽëÕÑm'|µ>á£k-UTU3:¢gÐr Ë'ÄçHÖà‰ 9w0ÏUï|lw=þêxòŽš›ñTÂ$tÒÙ táÄ‘Ì n3Û”ªµx?ÂÝÅêÊ(áuU¾ËIJ"ý-] †D×"‡#vK¾ù#¼Òàô— ©]=´Kr¾LÒÉîµmkšyI€lÆe ãsž¤ì°_ÚOÎ¥ÐU"?ÕÆûŒnp;;îĨk¿%as]xi;8¸ÛÕO*_ |=¸êªMUC]]o°ÎÊjÁeaóÌ~'°ÊIw#‡&Àä|[à€-oüßñ“Ä[ÐÅߟ^adx h-™£°äxÛ•ããW‚÷."Xé5V™‰³ßl”ò2JPÒd¬¦üa‘à^ÓÌZÞüÄ ð ¶ZæŽý~Eg”·Zž>Ø*m–Ùk™Bf}T$2–'ÂøÌŽ#a³Èõ$-Ї{vVGøCÃoõÔu“Ç$†š'ÓÂئsc2‚F\ÐÜú–Žê6[|c^…Pý)¥-ˆ3qò1ÅØõ9Tàçôß,¾Ï3"­‰£ï–缩ÉïÚaìá±ù‚òXR×EñUC^É˧:V²'0µ±²zw0rê‰NFÄ`ufÐÉF´ÂÊÊ|xÈÉêzÊ Æf$;l©ÏöxWy¼8Ô6³¤»‰yÇâw™zü¹J“ØvÁù¢""""""""'Í#Ê"""""*<àî¸FH9ÿ%Pïe\œìr>J¨ˆˆˆˆŸDDDEfñƒ‡v&èÚ9|g!wë)+Àe¤”t{ üˆî Þ-:û€ÜGwMm¸E#Â&Ÿ»ÖÆrXHÃÆ C˜wÁ PpÇÅf’ºÇµ¦–Ç[€Wnš•çÔòåìÉìAÉ =é½AbÔ–æÜtýÞ†éHì~¶–fÈÐqœ±Ýzhˆ¨ =±óUD(™EÄŒoºÕþ¯¡©áOkiá§triËójišìh[+g„õ;:2ÃŒçu³è¤d±²Xž×ÆðÇ4ä8~K±ÉbowÛ|:jùc.šiGl‰§Ž3üT3ðs#âkIHâF]XÞ»dÒLó d£¢ª"*öV't”ׄz–Ã%©©}“Ð áͪ¥ð{|`Ž ‘Е¬O`¾Ø$·:ë@úVÝ("¸Ñ8[5<£,p#ob:ƒWƒVâîLŸÙü—KFr}7S?ìç¹Ô6=Gj}\1Ò~ªF@qÏ$Îçˆ٠2<öÈõ*c4“ÕrDAÑDïvºÎ$ñ«Gp↪8 ¦€TUËÊ]ä™å Üü¬BJ•´ÐÅMM=ûsÐZ‹UXYVؼªú;‹ù!s7Œ¾@#q îÀâ}BÁZÏÁ•’ë¨[sѺ¯ôM𤗾šh O’Ò2<§‡`{st©R—JÙétîšµØh°)­ÔqRÄyCrØØÀœezŸÉ§.:6ôP«í¢u.ªÒ°ÂÖÔÐÔÒºAëØà?'•4¾¯¼X.Ñ\­:Ë}d[6zyŒrcÓ#¨ö;-Œøe×SqƒöËÍÆwÏtÏ¢¸Höµ¼ò°þ,7Õ¥§ ß;,š? $Qî 7Ž®vqê§/w+í¥¡ßãzî?5$üÔ¶&9îy§©¬‹ç” ™Û,Ò:wQ‹í¥ü,ÓÕŽi2E}5ÙèM)#ó`ü” !…­i9üÖ׸Ksžé¯3\jì´r¿#˜ÄÞaó#è¢m¢ª®‡Çôr¾¤™*n-IÍ–Mn ϶ZöLë…Ú×lý!q£¤lQù’¾yØÁzs;˜Œ ‘ºµ§á' *ë&¯ŸAééj**Åt“š&¾Pyƒ¹½ Ü·¡ÉÈ9+ÜÓ[Né(e‡Liû}ªž¥íuC(âZÞV»” €ñÝ{nnFùöè°ß@ßüšõ<œ ùrP¼œ¿ëŒù­lIPNFvÊ÷4Õòãmœ>†®¢šNNNxetn-=FZADzš^-êÍ']«®—½G÷/¿>š‚õû¬Ìk_(cÁøÜæó4–z+ûLÇRï1¾ZVÓCM£$‚²2kcøŽ À%ŽÀôf‚:”[ûC#®þÚ¦‰£îL©çŸ“˜coÏuaåk€8.Ïb§OÙíme?/·VT‰]_s̹‹Ëf;ç|çp:í•'>¨ˆˆˆ€ÐaDDDDDDDDDDDDEÆBF1ê¨3·\*·Óꫜì›eU;"""""""&ëÂÖÚSNë;Ö=Mk‚ãA7Xå´ŽŽk†ípõ¨Å׺)%¸ðâôË> …²å Žq×fL+»lþ_ï,ZÍyÃ[ÿþu£¾i{”N’x ðN diå{vvàp}ÖXáÿŠeCyu6£¥`ø¾òÁÄgÿXͳóiRs†|áþ¹|tQWºÑtpÿ¡Üq9þÄŸÞÃ!ßÙ *Ït=Q   Ó¢¡éÑBŸ´DÒÐjË.´¤cXëËM-pkOÇ4L²c>X ø2¤… P5GôìÒÎɪè!ýQ‡àa%æäÀÓ¾çªÊ¿3…ULüÊž7¿ù8j³ð²z'Iìß½D?™Ð׊+­m:’ŒTZë#ªc”îÓóUµ=/z Ôzzß~µÌ&¢¯§eD? †p}ÇB;½$DEÆ@ pà;FÅbN*ð/IëNPhÈ`élôþ]ޱ¹sé\€×’èÝÌ;õ ­½]§îú_Qר/”¤¸ÐLa¨‰Ûò¸w¡`‚6 ‚¼…|VÍì1@ùçÜ9å¼4–¾'ƒ×¶3·u²ò@$çeQÕUdE‡´eZŸ­Lú}ÞÛTc§Ìä{è!ñc>ž˜Y…Ñ@_´X§ã…MŸÔöæcð8Í1Á>à‚°F†¹ÍaÖ–+åé-]«µ]'¸¤ÏºKý?¦ãåÚù¿ÚË9§#o`íðvnðƒ%?Šýq½óIFÛuÃÊ|„œÖS689,OâçH£î5Ü`¦¸ÕVCxˆ]ã}Fò7Í’@X]û@9ŽÁôÀí“dhž!ê½+p†³N^ë-³Dy¹!˜¶'û=™åp>à­—p[[EÄ>Yutp6žZȜژC²#š7–HÑíÌÒG± ôùEÄÆzû(ëãëGVj>Ãz·RÉSQ§«ETͤ¹´Îil®À<Ž=ƒZâv _Qçäo‡uìçû9ê9ô©¦È-ŽìÇ´ŽŸ#;ÿ…J@×óØŽ˜ß?5 ¾ÐÛyƒˆº^îOÃWh’ŸwŠbìþSÉe³ú¢¢^]éåɆžÿ+!>Ð@ò?Þq?âR+¿åÙFÿ´."î ZÞy5ó‚vÿšQ8—rg#;-”xJ­¬›ÃV‘«¬/熖¡ËÌqÔJØð?¸ÖüÆw£¢}ÏÇœ”t2ýÍñÜå<»Êt6òä9£oÍ`m©5ãT\«uL¯žù$¦:÷JÖó #à vØË€Û+‡ƒÜjÕ|8¾ÃWl¬–¢ÞÙ¥q‚Vc oF;Ñþ3‘²Ø· µÖŸâ&“‡Ré×Ni_#á‘“ÇË$R7ñ0ÁÆFà‘ººHÎëÄ×¶Í=wÑ×[^ª}Î*)ø-×Rè~!×è=Jd ‚å9¦0Ì?è÷?Ëä8dó0öÈjœ¡7õ^N±°[µN–¹éÛ´aôW*gÓL;€áŒqÔPµ}¬ô½×Dj뎜½Âèëh¤to.õŒÏÁ#²á‚ ’ø£÷;”¼4»Ôbš©Î¨´>Gí¸ÌüŸ»†ãâëÍ´Çù*¡è¨ -ØqÐöUB¸H1ŸuPèÝÎÎû…²¶k¥“€öø®”RR¾ª¶ª¢6HyÏÃ\ZwnyIӺλÿØ›ã¿Õ;ÿšòõÞÍd´Íp¿Üh-ÖæŽYf­•±E¿b]¶þ‹Ñpƒº¢²=UjÒºjæÇ—ÍBðêi $±‡Ÿ¦Ë%ÛmÔ¸=¶†’ŠåÓ@ØØ4¾ÂAÆ õQ/í£‘ôº¼Ç˜ašº?ÑÏl.húˆÝù/Sìô—›Bj¶dr‹Änhßb`fþ¿ï²”#›¹QÏíÿôFÒ2 þŸ~˜ý\ßø(ÄœÀu+e¨b‡Ã•¥ŠhëÙ-KœY–é'™Î‹~…¥Å„ôËI pª˜Eãʬɦë¬-”ÖTÃGY$o58]‹w9æ óû(ùâ&ÝUg㦴¡©„@ñ{ªW,®–3·«ÓõV5;\évÉÛ;|”ûû<îf§ƒ÷[sã W©0þlóy‘Æî‡¦•iœ©Ê´8×n’ñ _lÌl•Z¦0¾>qŸ)Ç¡ùuìp{-gè½gzÓ7Š{•–çQn©k›'<ä°p8{…38 âRÇ{¥–ѯª(lÕâOÔÖ¶2Êz®|—sàb7çrI 9õë"D°MlÄøê ’.f>'×°ˆ=0Gu`pþ¡“qwUÂXÖTRiû,34vs¤¯“cÐŒH7êH9XËĆÉõ¾¨n«Ðµ6ëuÚµÿùÖ*éŸ<¸f­äcˆ~À;l;9ë’mÞ$p·‡n–ÛÖ¤ý#[<âs#p§¥s q|Põ$‚Kΰ kT1„ÏÓ|‚5/¾ÎÚŠj-cHùX.SSK <Î…Žpq°öç¾áL ˆˆˆˆˆQDMŽL*1° ÙSp}sÕrDŽ˜Dß~žÈˆˆ¸½¼ÛÛì¹"""""¦S>ˆr©Œî:¬qÄn p×]‰æ¾išx«ææ&¾ˆýÞ£˜œ—7g{¸¥`eàêñFñ>…Ö0VEœº’òÆ7Ëe‰¤ObÁó\,ל5îõZRã{¢Œ·•¿ Áœ —œ^Î7)Ã^$jQV »pßQØâ8 ©©­äi<ñ—°†‘ÌnN3’·L"o”Ý6>êøÛáLÔ7Å=9J[O',wÈ¡iÌoèÚ¬Ýã¶ü§Ô¬½áƒ‹´ÜCÒÑ[.ujk| UµÃþÁ°™§¾hv;ô!f@r:~h}÷T<¤z¨÷ãw†ŽÕ¼>n«³Ñ™/º."(òúŠ7æ3mÏ)ă®9^øŠ‚ö+…E¾å‚¡ÐÔÃ+g‚hÎÇ´å¤|ˆ[4àV¼¦â? ­º‘œ¬-û½Â&ÿ²©`ãär?²ö«ë¿TÊ EG|‚訂*ˆä§™‚Hdc˜öž„‚Ï+QÆÛú+P×PŒFšªjrÜ´Ç!o`›Jï.hÜ¿Íl{ÀíÆñpànlýE%mE-¾BàL”ÍpÁ>œ¯20Ùg!œÍW#8DÆèˆˆˆ›¢ø¯w;}¢Ý5Æé_KAG y¥ž¦Qlo©qØ-fø­ÔÚ{TñÆý|Ó"®‚¥°=±:6É#!kà¹o\ ãêmÎ@Ù8Ï¡üÖ±ÚŽÜ×5Ø ƒSs궺?8Û)+ƒXç<ᡤ¡Wƒ9aŸÅ°–œ­5áî.ph­§.;“°ÝIn&q‡Bðêóoµê›¤ÔõuÌ2†ALùŒ1|@HðÑÌ\Ò$ƒ¶Åyöý/Àî%THhlšGPO .’xàa”27cŸï …”†41 5­Ø0ì0{&øÝ;ü»¨?ö‡êŠöqŦc™âŠžÕ÷Óyåt’Jö䎛öù¨ó¤uÆ¢Ò×XnZ~ñWm«Œ—‡Á)k\qŒ9½=ˆ+fÕÕZó… []M5UÆœ¾hãvX×¹„b[œvʼó¶pVñmÃ+‡ôæ´Í;îv¬UQÒyÇÊ—”8HÞF°—<±Ä7¦àn9µ>ÏÚGÑèÍ]Í’*ˆïmdHÒ×GŠxúƒÐä‘ôRQê+NŸu7éy楎¤¹¬Ÿîò:‘Ÿ#Z[s·1ÁÇEˆ»°4d¸8n~,¾zc¶]ÆùÆë xË1ÇÀËœ’só 0ÎVónè¤fþØqÝkš8‡8.$ôÎ:•"<ÌÇw³Ìhæ±Õ7«¿Y Çü9ú)ïŒo…Ë(ˆˆˆˆ¸°¼¹ÜÍðïÕrDDDDDDDDDDD9TÆØêª(›¢"""""!興ˆ¾K‘ž*Y¦£…²ÔüºO-¯>…Ø8ùáYñ‚gTQÒµñ_)c©´W¸SÉ—~ãÊ9°y^ Çn`s‹«O_-÷ÊgKFù,D6¢–vç§qý™wiëìz‚FëÓúôê˜ß8Uˆˆƒ9í„TǺn¸OSÁ$3FÉb‘¥cÚ \Ó±¡C8p“Sp“V$páÕfϯª{aËå¶HyžàZNFÛçá݉|âí§‰vBÇùT7êPYD^>#ë"ÎîaüÛÐúœž¸‘ºã4L‘ŽdŒcØàZö¸d8¸#Ñk«ÅO ‡ 8•ÉA!–Ó|lµÔYŒ3Éwšï2 ‰æäagØ“~xÕÒÛ8ƒsÑÕ3;î÷Š_¼ÂÌmçŹ#Ó1“Ÿ^Vú7~ˆ›ãq¿² =?5UG ªãËÊ6$­[x ¢î«l¼"ŠÍ ôì:~‘ÔvÆ[âBèùݾ.añsdŸrJºÓ9DDTq¯dDEŽø×Å=Â뫹Ys¨ÏÜ­±Ê$Þäàò0wv°*j}CÅn>ë!k£Š¶ë3ä´”ÁÌ£ c»ŸÙ`¾óÌqÔ•Šµe†³OêÛ½‚ã43UÚ릢ðèÜøžXâÒ@%¹iÆ@>Á^¾憟Žúó²'ƒz²tqåiéÔ8‚=Àù­›Ýnt‹|·¥u=2ÔTJ#ƒÝÎÀQwо(«+ušáEn.–­‘:ª¦Ÿ›ï¤¼*(Îc·ÎÁÇLc&Îð ETÞ0êZ¹ÃZh¬òÓT¿ëdª‹8?8]Ý[ÿhO›MÇ:ù"m?Læ‚íšÓŒAOÔ¬f¾\mõQVQÕOOPÁ†M …nùÀ çªØƒ½w×ü*5é¾ñqµV{êžyØ"í{É'.øÈ'¾3ÝfµL!ϦV¾¾Ð×¼ñÒž74 ;XOG6sŸÌ‘ôQÎÌýÎI[%ðNe>´ßœÖÏR#Ãq–ùïÜúïÖjo]‚®3¾ÁuÃ1:GÇ éÌòÆ€\}N:•Ñq‡ï”³ÒÃTèe-#ž2 ˜H#8Zýâþƒã„mꆮÝtªÓµ²H]Ul{¦¤–7¸;ãkwfàѸÛ#u…ô…-ª¶òÖ_*ª©hÓÏ=$ šFm†9ìåÌÃø!Å.%cÒ”úBÛmTòK˜_+b…/’7ÈâàíšdnÀóœàe{-êÓyŽgÚn4µ­§”Ã1†@ãÚH ŽÇ!}àç Ê¨ ƒ¢ÌÍ”8ä `“Œ|ºgÝv*£$­HqŸô?õµ¿úÞª¶6l®nËÉšÓ—7 ¤“þkmöø]”§ŽXq+(×3®Œd,áaÓÇÅŽ&ÐÕÕÉSSKGb§så?1ÓJ×do‚ØÉ‘걋øÝ/¯kC!waÑ=Ö·Úã±pêzË/øD»Miñ ¦L3GuÏšŠnq³šøœ@ëԹǾÇ‹°ZNN{ª¢""""""nˆˆzlˆˆˆˆˆˆˆ‰N¨ˆˆˆˆˆˆˆˆˆˆ˜BØô+øŒá4:ÿNŠë]D”:‚ÜÇ:ŽhÚH™¸É…ã;´>Gp£^Šâž¢°\b±ëIêìZŠÙe¶ó4.‘ñÇžaOTÀÖi]’{3–°%7x¯k×Éj®û¥¿RR€*)a¨CP7ÄÔïÿi±ŸVô=2r@7Írì€c¹DDDMѵ²0±ík† HÈ ö*$ñß‚÷ŽÞÄþNê:ky–¾¶®k~âÂç>ûQ‘ÌÏSŽmà?¬üNÓÍ|rEM|¦¦¾ˆ‡l¾=É1’@Ïbp{g%oÿr„z–ñ¡Ù«ø5_[O™u°ÒTnkrîV×3äcÉÇ«Z{()ÃWQ£uÕŸTÒ‡9Öú¦Læ´ÿY~6› i+ êÍGw¶Ô2¦Š¶Ï­èæ8dȯµ |Ð"Æ Ö—¿ÑCÄMô[÷/Yô—,š.¢9æ¸Ýë(©ád-Áhžo/ÎvÜ ú|^ž£&5§«ðNr1ÙsDî‡Ó+ øã•«†Ö×Úm/Šáªê[ËOJß´ÜÝ ÿu]òXŸ…~µ¿¹;\qžáq`¬"f[ œ•3÷ÌïÄÌl#fý[ŒI¦4æŸÒ6x­zjÇGk¢Œ´i¢ ÄãÕÇrI9'uªOuuãQÜïOg#®“U–ç82Hçãø«£€úšÍ¤¸¹`Ô÷ê'VÐ[¥–g@ÖµÎtžL‚2Þm²Ù žØÏe‘u¨â§ˆÝgú&ÓDù¨ápsh¡qe OGË!Ø»ûGsû lƒà—‡{W-’j[ícnº½”òyu1(9›‚!oW;Žs¾û¾l?³š%Ÿ^UÈAGocœFIq5wù/í"²ÁOªôv¢Ÿ[o¨¢sO@Ø$kÚG¹ûÿ ¢Hs'ÏU<~·Hxg©b›•· CÎ9~ï@÷ß»~².˜€ãÕr£ßŒ\¸©n¶^ô»é›~µFø¼Š‡ò6®|AÇf¸8góœ¢Ï |4q?Sj¨-·knš æ&¢á]Á[ו¼ÀÈIØ@9Î@ÝOŽ è±ÃÎYti­mÁÖèž×Ô6/,HçHç“˓ݎ½•Ù3ÙO–W±ŒcKžç; hrOm–âWˆþèÿ:––±ú†ãƞ݃Nq‡J~þcì¢Ç¼Kë}gæÑQTÿG­£›––Ý3ƒÞÀó&ÙÏêv­;|9¬[£õþªÓš¢–õb¼VAq€’Ù …ívr{]á‚v!l—ÚÝœEá­³U o»OP \<À†Í‹GöIö!Z|gðó¡õýeU¶šÅ©Âê{|°ù9pÌ•í;dã˜ccë®Ë¼W;w©µÜ¡’ž¶‚wÁhʆfE©èmº‚—~g†ýÒ Ç™€°€;r ú…%xiÇ®ë©"¤¥º:×rxÈ¢¸´D÷ᯱßGgÙe?dT!Cß¾¯ú‹YVëNËT—IŒµöʉDNd§ÒF÷R׸µÄzd7pßÂ÷kn´Ðj+,VªZøE[å«g;â?/0v ù»ØâxêIM˜¹OsLr¹¥§qÊÂF=öQ³ÂÅÏï%¸¸ÇLÙMLΔ&°†´ûelcÀ†šºéΉ®‰¼Ü]s¤ò¤Ì‚4œt9Ù–|æ-#áÇ_UÈuÿµN™ÉÂó¯÷Û6ž¶Ér¾])-ÔQ‚çMS(cvÀÏSì7Qï‰-´¥¡ÒRhÛd·Ùú©ÜiéÛîÑŽwþMÕEž)ñ³^k¹/—Ù>êNYCJß&™žÁƒw|Þ\}Ö<€UWT2–ž9§¨—᎘^÷Ÿ@ѹè³×ü#ñ+QRÓWÞªmšn–~WyuNtµMaê|¶ŒÙsìp¤?<(p¿MÒÓ´s껃ÇÅQZçGA!‘1À¾~"âBaÐÚGMh‹ ,ZVÓ ²ÞǺAns²÷c.sœKœN䞃Ñ{Ž8Xߊ<áÏ£­–õ§iaºU3ÿ¢´ŒU5ø¯.Œ€ÃQ'Pø5â]5­–{žž¸REŸ»Êú‡Á$íí–×ã›ÕG«ýªí§¯uV‹Ý¶¢Ýq¥—5<ìäsŽàö#pzr[„Ñf8ìzÑežøâFlôš¢¢Š6Š:öŠ˜pßG³\ßu'8_âÏI_™&±¡—OÖ“Ë÷ˆ‰š•ÿÚ8øÙò!À~ñRÓs·Ýèc¯µ×SWR¿ðÍO({Ô/¬àû”uÕÁ]$Ô³·š)˜èÞÞ™i#ò*/øtá&¾á§®7Ö2¾ÙqµÌçÝ)^]’º`á¹°æ»áÎàüÎT¥X»Åt‡_0êŒ Ÿi˜Ék5ùË\;ýÆW¹£/.ÓÚªÇ~Š0÷Û.TÕ¡¿½åÊ×ãþ-³A'Dôª""""""""'n¨©¿uQÑçuT.àý•q¾QxBÒ–ío£®Zí5d45ì ™Ô²ùr`8;à÷í¸Zßâþ™Õ:Q;Lê‰$|Ð0ýÞ ó'k·æ‰Ä Æ[Ôг¦ª{ˆ/ÀÜc*Ox××Xõ}N†©’yíU”¯¨¦ap-§™˜'œ€æç w÷%M,DPõXsÄ—m«bÇL®kÆ:ŸÙ÷PûÀÅèž.q Èê–T}Î/ Ì29üº©žSëî6ú©S54²SOd†VI†CÚF>Äl¢7|Ûªn1Tè=K%ºšIsSGso)¥û˜žÐ iÙ¯É8Ýûí'xw¥múEZô¦Z™¨­°ù1I;ƒžýÉ%Ä2I=¸s¾SÛüՇĞ.èŨ/‘ŠÆŒýÆ”yµ3»Gáõø°£'<`_«|ÚM lŠÉÈ•mlõ'Іo>¼ÿE5ž²¿jk£®»½}ʤïæUNérÉøFç`Ë˶R\o5ÐÐÚ¨ªîÒ“åSRÂée~qåcA'}RS„Þõ%ìAtâËú?C æ4¸}k†6ÄFsŽÎ=v¥— 8S¡¸qB)ôµ’*yÜÐ%­—õ•2‘Í»¤;þÑé¿Eãø¦¿9ÀQ_Mr–‚¹´­m°Ô˜¦chs HvÅç×b¢…~*ê»/,ÖH.•ÖËÝs)*hfœ¾<Èíåhqø^;‘Ôl{c`Ë5žÏ_uª4ôTòTJ»¹XÒã뀰^’ñeÃkÄÔÐ\i¯WÔ<´>x™,L8qsHzl³f•ÔvMUgŠó§n”×|¤†Í ²2:´Ž ôØà¬ÁÏ6ÝEª¦ÒzÒŠ -Á÷ 騪q y ŠL“ÊümÌ)>Šéñ)Àë/ìn©ŒEA«)!-·×’C^$C0vN2Òr22×k‹QXnÚsPVX¯TRQÜh¥1TÓÈ0æ80F#b#eÓ-U'—%DBÙ›Ï žÂ Î2ÓßÓeÂ)æŠ^fN7W—¸™«t=Ø×i›ÍU¶Sýh‹ŽA‚>8Ý–;®ÙFêPpçÆ\Ø©u¾iJë[ðNÝLúgîp;)ÃÞ"híyFgÓ7ºz·´fJwIãéÕ‡|n7éî®°sÁUØû¦UŸÆ«L—ÎjÛTI-EEž¤AÄùDnsÿjÕuKǘðÒ×t=±ê»ø^Ò>C·]ð¶¿ÃëÛu&†±jœ\mðTœHsØ Á%{ÉÙ;ª ´ÑUDCó@Î2ˆˆ©¶1ÙyúŠÃeÔV×ÛoöŠ ­Î]O[NÙ£$t<®dz¬Cxð¯Á›„‚Htýe°ç.Wš×oÜà>˜^Ö–ðñ 5x¡¼Úô²X'šº¢^Y‚×òºBÎ`@=6=0²£ÜTDOš..,œô' ©áîÎ2HØv?,«Viú]_§g±j U–ÊÀc«¤ª8þóÓ–¸ÚàA0B…š³Â'-× ã§jm7›tr¹‡Ô˜j%ap9®hhp'|lqÙ}\'࿈-®¨µ=«NÒÁ= ËdŽK¤^]T$|q–¸ ³Ñܮ؀Tæ³ÖIpµRÖËESC$ñºš¤,DÚì2=‰ ëDDNȃ Ln‹®¢ç†Hf`|R0±í=Ò0B„šžÏwðÓÆê;ݧϩÓ[IiÉÌ”®#öÙ€æžã÷‚š6+­¾ùg¤»Úªcª¢¬‰²Á4g!í##ëíÙ}¤êÇã t¯´Û­:†—–¢0MÂQH㌖8އ-;ï‚ ‡<:q‡õòÍ®}Ahæ"*ûd.“nÞdC.ŒþmÏuŒ-æúÛ›! Š½Õã–8a“ÌÎqŒŸe”FŠñ Wdý0í9¬Em<Áï{eÀ‘ æ™Ùª÷ðçâ:ñ¦nqÛu­Ö²ëa˜ %q’ZR?i¤î[êÕ8ì÷[m≕¶ºè+)ÞBðá¾ÿOªúÜCZ\z«ß:ƒúIÇAZ&‚háòiXè]ÌßÕÄÆ»^nlûåb±Õl/ì÷uaà<ÿzœ¾?Ó•?vo0>\|‘e¾ß9úû©“Øgê¹ uEĸsrçuËê¨H*q#Íðëâ:[ÞŽ»ÒÍn¸f®®Ø×`E Ëé¤`?j3Ôm±ïœ5gø¡©¨OÂ^ßñ)—{Å;i£å$|QÇ)Û¹8ö*ÉÓõV®»¿Rq‡[UIWQñKMC(’fºw‚Ö€9XÜc`Fáç4f€ ûž“ÓôvÞfòËPÖsTM¾Y+²÷Àí…uz§Q”ߺÆ^)* /‡ík3]Ê]lt]}Ígÿ)k%Ì qø±ŒwYçÀÓ¢ÿʃœ<Û*ù£¹[þY[ ¦ÞË⿊³i©4⦤3õpùçÓ'`} ÙE/:kVY8ù®«µÏn¯Þy£˜^f©/kÚ᳚y_¸Û#ÙK¬g ~Š…§¯ÓtæÇSŒ‰8›â‡Z&Ii?H›ÝɃþo!íÑÒ~÷îHîQâ§Š «Y%º±ºjÜïö6ǹ³1ìU8ÕO%§ºÎ±ÉH"¿Ö˜šik îtnáå#è¶7À=`uߴS%dô‚òìgï1~®S°æsK‡³‚°|[ðU¼E±3RX‡&¨µÄYa  æ1ïÙ>ø;tÂÞcÓꨨ@=@8õTkÒKZ=p¹".©¦‚K]ÔãeVLÇ çUXÞ»p[ë× w#m•U=ÕP«o‰Z6ͯ´uv˜½Ä]OTÐY+GÇ£vJÃÙÍ?˜È;¢6•Õº÷Ã>±›GêzCsÓ•r™iºˆçnÜÒÓ¼ì×î9ã=ðp2e— 8¥ø…euÓMWùí‰ÁµHÞI©ÜF@{{dgdŠºŽ:¨F~}Õq¾Äªw÷ù¨éâWÃu¿[š½W¢™¯T_58”÷g$¿÷%9?søºó !Âý{©¸sK¬cŽªJ†ÒFÆSÕu¥™“²)CÛŸÍs ã!™ $ÉÇ=K?†ëަžî¢sZÊwGg.ÃñË‚×5ÎÎv!¾»ÁÙå–yŸ4Ò>YdqsÞ÷ç8œ’IêJ£.Á[3ðqku§Ã¦•ŽxÃ&ªŽzÇLdK;ÜÂ}~Ýý1Û 04Œ¿UÈuÂâ÷rŒã9;ªÒKƢƺï޼2Ñît5úŽêÆ»•Ô¶ßõ™s‚[ð´Žà}–­ã¸±÷«'4Œ´Póysݦ{OÝÇ|ÈïÕÆìvîôà«—ƒ^­V øõ/«[ªu“ÏlR9Î¥†RsÎy·™ùý§í’N3‚$?M‰Màn¨NFÛªe£r@ߺ骪‚Ž’Zªºˆ`¦…†Ie•áŒcåÎ'`îTNñWÆš SÂËõ“E[§ºXÝS Âü湔͗¯lPŸö®ø2{¿pT0kˆxÎç¡ÊÞÚ2ܶËUׯâˆmïÿjŸíÛqßÕWcì¿UÃÉ„Íç†3ÌåäçgçôÎvT¬©¦£¥–®®¢*zxZd–Y^Æ4uqqØê°'>kÍzù©î™©-r¶Æ9O쿃¡øÉèĵÕ2Ìws†RÙo¬¹VÓ[­ôÕu•OC /|;µ£rz)/ÂïÚÆé|†£_ÉMc´ÆöºX ¨lÕ´;vSÊÎ`ÄI#=;)‡ÃnèîÙůIY©íñtšañÏ9õ’G|Nß¶p:Ëß»Z­wº'Q^-Ô7*Gä:ªvMÁkb5àÞ8y¤ëà«l±hž­Ñ¾zËDŽ¡©yvæHy\q¸ÁÈ·®ü2¾ÌÇS[õíd–ÇSºo¾[âºÇ póÉ/ë\æsïÍùÚÔº[Xh˜ %.·MeŸÌeOôN¶X fVˆÝ ¢˜–lv#pÜgrµÛu¤W º1Ïû½Câæte„ò’2Zwn‡p¶à‡‡’h®2ïp¤’šñ¨ÞÚʆɀæÀÜŠvã·Âç?}ÿXsè¯ß”M¸ð;[R uš¡ã'»YÌÞà-Wó0lzåO_³ÎXÿÐÝò0³PÈ÷7;€êZlmþù‚ü|Ylã¹¹²›ÚÙK_pæóDîoW|èBËßgnª§¨ÒÚ‹GËRÑQKYúBž&)óž˜hÛÝJìcâù…õ­ž£†þ,tÝêŽÌf¿Q {¦Š.X¥˜½îå(ÞBνHìH”öº†ÔÐÃ3C€{a;å¤d~j·: ¥Öë•-u CK&¦©‰²G#Og5ÛìT^⟃ÛÆyîœ;ºþ…¨‘üßp¬&JQø²á—³~]0ûb,ñ#ƒÜEÐ%Ójm-YMHÒq[NôäæFd7=ƒ¹O·U`€ó1Ù=vì½m檎xê!•ì|n® ´ú‚:–ráω¾!é6²šªéý!£gH®ÅÒ¿¦Ï™ú¸» ÙJŽxŠáþ·ä¤ž¹š~èí¾ï_ lo9# —ð’{ƒ¸ÙEöOÐüa«©Ž=YsšF9\\+ŽÃ—Ë)õ;•‚é‰k¹¶Áô[ð*Ch¨NÙª›½‚§pwÛªäÜòïÕU™©ïöM1ežõ¨n”–»u8Ì•20z ú“й; ¨Û¯|diz$::ÃUw{ZÚŠÇýÚ#¿`qß'áZw†:?¹èû\c”‰kw‡F=”©á°f½áÕŸU²@êøy¤‰Žæk k€?0®´DD(ˆˆ‹‰‘£9$Ô@üÕZC€- ƒÜ*’UçSÞ¨*kIK#§‘ŸŒ±§•¿^‹ì‘îiNw²êûãÂØå{ÆÅ­i8ùú}W&‡É—È|°zãŸã²íòã¦1ÝU¡¥¡Í9AÎUrªˆŠÃ㶦â7 .zqñÅ÷ÎO>Û3Ú?QRÍØàr1Ú}œTðù¯j¸mÅš »³IHéßo¼Dç`FÒîWãoÕ¸ô+d -sC˜AiŠåþIÕqǯð\^0Ì´òê°ÿx3o×ÐÍ|²˜(5+ lN|ñsA[9ÌÏ^ÁýGC‘²üFf¹Ñ43pïSÛª¬íed•¦sq¡ç—ž7…ìø0 vüC®BÇk“ç; iq;u·^ÚYcÐzzËnˆPZééƒ\N[É[ƒŸ’÷ÀÀܪ…cqsŠZW†–¶Tߪ‹ë'k%;Í>;û-ÏW¾ge 8±Ç-sÄêÓ`§ÃCVï" %¬=î©$ 5øÓ·ÃŒ{,…Á¯ WÃ`¼ñFi­´…ÁñÙ)dYo:Fþu»û‚¥æŸ³Úìj[5–ßOo·R3˧§¬c}€õ9$õ$’w+.t”3WWTCMKNÃ,ÓJðÖFÆŒ—8€º¶ô®þ›P¾ól¶ÕRØžìPÕU41ÕÍÉ̬fr";r—`»$ã&ëv^½Õ¶-¦ªu¢­e-?ŠWyc`ý§l?È£Ö›¤ÕÞ&çuÛSŠ­;ÃyÿÕm°ÉnÎi;¹ýKÀ¸mœ†î OŽ -¦ÅáÞ‚Éf·Cn·Ñ\éÛOOOú¸£Ü£ñ—œîI;¨$#çv¾ø AøæÿO.ÃK€²Ud†“Ž/m¾¸ëô[’Þ½•9ÚÈÝ#ÜZ q$`î°/¼Ph½!ÏoÓOT][–¹ÐL$NßñJ3ÎAÆÌÏÌ(oÅÎ2ëN"V_îï}Í ?«¥Œçb#â#³“¹Ü,qQW,®ææ#²àÎnBâp3’IR‚^µž¸ò.Zž)ô­…íçOûÝ@Üa‘Øï?@pS+†\áß^gÒºr+‹];Ý=AÛy<™CyAôWþ=1º¨ù§Ñçø•C³ºµ8¹ª"Ñ\4ÔZ©ÎÖê$ˆ€éHå¹í—–ªÖ' 4­O8¡fÓN¨™u®kj&üN Ýó?܆µ‹E ·ÑCodLd4Ñ6(Lc‘£ ;ä=W‡ÅºwUð³VÒÆ×>Il•mkà &`{-L5Û´¶Ê{}ž1ÔÅÂ+ÔòÇ+"žý'’çÊðØ!k‹GLdc˜uÆ?e[ßhåŒI§´Ž§¤šz™­ò¿»¼Æ·é˜ßù¬3à»Q ,-qšæÙ-ÒžlcÌfYÿçÁõ[Ù£ ñ‰§a»ðNçxLúý>æÜèŸ ~6=¿ Ô|!§™ÝviÆøY†r‡èËKY+&ˆPAåM|¬{ M--Ûq‚=z+”tÀÙW”lwÏÍÁÛe…8»á¯‡|Í1á-ÖóÂè`¼È#­!Ìæ„ócrr7?E#†ã¯ÕÀêUBwDDDDDDDECÐà¨qͲ©Œàc\.a6Tnq¿^ê©Û™Â""ñ5®’ÓzÒÈlº¦ÓOt 26_&là=½ ƒ¹è{•Žn^¸+]Xú§hæS¹ãâe5dñ0ÿ…¯Àù .ý)áǃºv°ÕÓèêZéˆ-âãTÀÁø$Ë>¤edûU¶ßj¦u5¶ŠžŽHé pF#g;Ž\îV€2NIõ$•õ¢""ëž;÷Nw.ÄDEÔúxœâð \i§ø®†RÒÑ?0ìÀWtmä`o\EÑu ¦¹Û§ ¬kÝì1È#£vÁÚA0T9âï†-E¤d›Rð²åU]o3>‰ó˜ëb;åÑÊ1ÏŒž¤w+ ¤î)éÛ¡¡­ÕÚÎÝ_Ó×\ª2Þã1ÈâÒ>„óROÃç‰#sš{ˆ7X&xÌi¹b?¹7FŒövÃÕIØ*$’LÁ ÑH™$Re®iz‚»ã¾)YŸVçùev5áÇ`ìz‘æ¹uTÏ·ðUTϲ‰~0¸QYYSÄ­ouEKþ+ݺeÒ€ûÄmw`|`nïÅ×9¯„Ž?ѾÝnÐZʽ‘=Z®S¿ sF ž„~¸õÀzË0«ÙSˆã·Ô.©;€Oe¯Ou±×ñƦ3<’KCG (a–6†6MŽ{ºG¨ð¯ içêŽ(é« Ïe]Òägàçyú5®+lq‘“€ÉÜ.yGòX›Ä/¬œ*µ¶˜ëu dEô”|à oO2]òÖg wq‡o‡|/â?ˆ AS«ï× ¨m5æ[½TDº¡¡ßÕÒ³¡k~&‚0Á‚7 …0xSÂ= ÃJ@Ý5gµÎg$×*œIU0î ÏAý–àl6Wè ']º Â·µîµÓ:Ìë¾§»Ó[é°ï(=ãÌÀg’6u{°:ƒ´ÜZ‹Äuá·­IKSfám åÔv²\ÇÞä!Hí±9$$m$ôt°ÒRÃðÆØâŠ6òµŒh4Ѐ¾[åÚ†Åd­¼]꣦¢£‰ÓO+ŽX7ïß·¹PÚÞû¿Š~5Zkit Œ²gBŒs|¢{Ë#ƒ²w! ã¢™Ô4t´0PPA--,L†"hk"c@ c@Ø,ãºÝ_[ÀʹáˆËKEWõÙñr‡зâÁrAZð/‘µ9Œœ´ü;)UöyYî/â5öòÚ(!´ýÞJ—ÀOë#cÓ8k‰Ágî*xˆáþ‰t´tµÌÔWh݃KC ,Œ÷ç› þ—7Cþ1ñû[ñÓÑÕÜm³H ¶‰îdNo¤‡¬Ÿ'mì°ÝEL’?ó_9æÆO¯R³ü<ñˆ¿v­‚ÚlÖ9™æ ­Á¼±½§§–ÏÅ&pp@åõ##3s„\áßi"}ž ½Ù¥®uÒá e˜< f<ŒD:þ÷Ü••¹I9!rº¯uLämüUq²¡ùºª‹_h~®u»AÙ4e4¤Kz¬uMKZá¼C\:àÈööeZŸg–ƒ‚¢¶÷Ä•¸>J'6†Ó;ŽC$s\jH¡®¼ÞŽxõS< °“yž'[nÐTS6vÃH÷>'òòÌÇ1ÛváÍ9ôßbµM da'×e±Oö÷Rx|·O‰1Yp¬¼Ý0%1ííú¿Ï+Þñ_¤]«ø ¨è¡…òVPÃúN•<ðüDÔ’ÎvêVº4Å]M²éIt·’ÚºY™WLᑉcp{z{´-±iÛµöÇCz·KæQ×Ó²¦c±íŽûŽÅr¾Û[v±Ü-rJø›YM%9‘Ÿ‰í-È÷ʰ|9]g½p®ÅQP)ã ðˆàxsYÉ+ÚHÈ nË&n©Nè„*c9ÇÕc/ð/‡üM¨‚®ýn–šáhûí ›Ï`ÀäqÁænzgeøƒàº²*8$ÐZ••µ,ûÄ7oÕŒŽNG1¤g;¶TYÕÚ^ý¥ï6ÍAi«·TÁ3¡pš1®p;ò’0áŒGPAî¼1œs íÝH üwºðæÐuíu~›’ny©¿ÚCŸÅ$g÷ºe§cŽÇu°m7{µj-5âË_uS⚇=6èGB:ƒ±^Š"""&FqÑP‘è‡=ϧªª¨ˆˆˆˆˆˆ‰ìЀޛ ;tUDBˆˆˆ‰‘œ"*g檊Ž8]G$ä ×&‚\:l»ì2ˆˆˆ™ÆwôB;V ãW !ÕÖybކšóI{(êäòåŒàíøË qåõ8Qs^øyÔ´0ºç¤).b>b?DÜ¢å¨g-ŠAðËÓn…ݲº81ÇÝUà öØ.ðÕÔZáÈ–Ó\Ó<²á˜÷ê0Fçe/xaÆþkÙ £·]~áv ¶ß^<©\}OÃ!öi'KvUëÕ22ªyãφ‹.°«¨Ôº*J[£{Œ“Ææ‘K\íÏÆõo'öÚ{‚NU‰Â¾4k~^©tmVQü0ÓÕNÃ$±ls1ã"¦!‘øIplã•KÚi¢©§Ž¢žVK ¬ì9kšFA¸!v¨zw+†ØòFpµâÊá%ÏŒiåg”Hkq‚G3°NÛ“²ÃÌcžì4d©àFÆËhj‰ÿèE¶ª¼‚2 ˆlÿ¯“ô[†ª–J¹)cƒãc\ oM§\¨åâÅ«IMS§49Šé{á“׸ÒÓ»©kwýcÇÙêH aÿ œ8«ã'îZ㈵—k=)/žz—žJêÒ[Ëí5­É-ÈÇ zÒÁ4ÓÓÅ0ÄÐÈ㡬c@4°m…ÛÛeUMñ×uø÷â;OèMfÓ¢žûŵ çÿW£Àÿháøœ|äo’6p“…:»7è8ÆJŠÓf$>‚Û&XkpA õPwÀÁ^›™{IM%,T´ÐÇ<1¶8¢¡­c0ÖØ1…Úâ2pê}ñCÅ;§µµ t#LöÆ\ na9¸Tä´¸öòY’GȸöÄ®àw¨8aú-/G#g¨5õA¸ûÍKÀç~; ´Ík{«ämÙyº–ÏlÔ6*Ûæ–:»ut.‚¢ô{]±éÐ÷náEn(pc÷ lSÜ5,÷úŠª˜ÞÚ*WT<–òþ­¡ Üç™û;ô8'ˆtÑÒœÒö¹¢•2QŠªŽAø¤˜ù„ŸS‡ôY~ëÏt¹éO•W Ÿ–ë6³ºGi§€1ÏÙ´ÍŒ<¼| ‰)ä¤çç×û’Ô· é‰ÁŠwÆ@ßð¸ò[4ð¿m¯º&—3žÖÊœã>q2çüùÏ~«%mÌNË[>&¸} x±WCE•e¹ƒ_k lq½ÇšýÇduÎ Ou-ükh5W ¢µò†TØÜ)\G0·™§®IÜç賞sì=U™Â}5”Ó¢¡¢eMUTþSj<ÑñÔHæœãrA·§eyç¦A€o±T>ÛFU·æº+ji¨©d¨ª©†žÆ_$²5£¦äì;,;ãV(á·UT¾d–ÒˆdsœÀú¸îRw‹Z£»ïŸEé[a|‡H×eíïÊw[ðw¨]|áÔŒu¶–•°ÊÒÙ!­d¾iä %ÑóD~„z…›û¢{"""""""""e0¨2ƒ“ôT»~¡rÆÇeTDD^%ëTYíUÐ[ê*Øêê‡rÃKÇ,‡Ù£'w8/b'¹ìs 2:¡sßÑS' (2}B©v1±Âª".¹Hé‘ù®ü-9ö\ã>øø{dn»;¢Æ:šçQ§ø´ji(+*Ÿq·FÙËg\l‰Î %®;é\ ƒÑd+%Ƶ¦šåN×6:ˆÃÃ]Õ¾ ûƒ²ûU]5=\‚ªMºµã#çó÷X¿ŠÜ(³ê{{›-Žšðyj]úà9y~ ¸ësìTiÕ¾e&JÍtšŠã,ÌÓ×i„sä4;ÈO7?0øy€ý¡…’<0qΨֻ‡|M¬–ŽóO(¦¤¨¸2gI‡ Ä·Âç‹ d’3(ºö*ª=U@CœmÕSç…çjŸP[ÍêÝO]MÌÖLÌò8tsOV¸vpÁ—£C3¶ç%`:!\]Ð9Àànp«¸Ø.sñö˳KjÄüá¥íq¸s³víø\:Œàî¬ú8Yˆ·$•-¾Îj 3wÖ÷7@W =IŸ‰Œ‘Ó¹í3dÿu}þ-xå&ž¸ÝtF’­×Mð\«ZáŠ_€4ÓÃèìd¼ö; óˆÝÁ>ßx·®éìT’*8ñ%·¶’F]¹q;5½Iö›h3eÑÚb‡Méê&QÛhcòồ¾Kœz—8’I=I+ÙB~X÷^&±ÕzHYd¼jKµ-¶€éž¤ g•ê÷Íh$¨qÅÏš»_Ü¿¢œ<£¸ÐÓV¹±A39®]È%™äu =˺«ûÃ÷†kT”Ú«ŠCq»‚%‚ÑÌ%§¥wPe=%¶íÚê%01EÈŒ5¸½%’‡ýiÚ—²ç_79âÝÐÂÿÃÆüòu nÞ ÙðÁ葺»SÒƒª®1~ª'·ÿ¡´çý˜úÇ Þ{lÑŒ;šB€}WËx¸RZm—Jù¼š:8QQ/!w$lisŽ$à°Q;Œž. m ¨8mA(’Vë¥Â.^BGû(²r}ß jmMyÔW‰î—«…MƶbL“ÔH^÷{oÐ{ ‚òÄrË3aŽ|Ž8kÞgõYçƒÞ¸…¬ÚÊÛä'IZÉ̸Bï¼È3¿$8|ßÊ:c*ZðËï ´#¡¨§²6órq[u"w‡c«YŽFûa¹«.26µ 5¬ƒ@èUåÛl*òûœ*·m¶\¾AUtÖTÓÑÓKUU4pA ’È÷rµ$“ذͧ‰Ðq_ˆº;Fš‰tí¶'~•»² a¨æžS ÆÇ|lø@æÍ1±BÈ¢`cÐÖ·ÐÌðšÖ޵ÐÚÖëâ*köÇqmÎ÷¨æ¹Ô¤²x1q™„|.ŒF $Óœ`©ËÄŽ6ðÛ‡²Éo¼_c’á D‹u<ù†0oÃ9Ø<·`½Žk)8ën°u(YrtÏŠœ<¸ÇesOWa œm¾Ë x‹­¤·q ‡ºŽ®¡ì£¦¾½¢7”ùÕ“$„¸vi~ãç©!={œÝQtkälœµ“æaÍwÆrF:ÿÚ¶sÂY ÓüÑÞêèíΊÉEtÕ k Ä .ÁÎ3²ºhïvJÉ›%êÝS#ÀådU,{òî¬/ü*¥â·§´4ÅOz¤.žÓU <±ËÝŽ#ö)ôØàã )xNµqSJñ¥¶ K=E©íqý-Æ#‚XX~&‡†8s’Ç ‰hß ‘Ùy:^Ák¦þYÄ{Á vI9ß×=×®žª™öCœm…Aœt@1·ù(áãêã¨hxWGMokB×ÖŠ{£°Òs³ânû็qé¿P¼]1YQÄ?WŠ{•G›=²ÕS{ÄE üèÇ~HØ=ûõ* ¶<œÂw |pχ:¼Ò{Åéï44[¤¸Q»’njlEÊý± -czƒŒàžt†ŽÓzI• Ó–˜m¬¨-/dYÁå ‰Ûÿ甆""›¢"""""""""""""Çp~h2>IÊ Î0S벨Ü*¢"ÇücÖãKÚÍ#Ïéãæn:´†ãÕÎ ãºzl¾. èúÛ]õ ø™¯w‚àöÿÑãÅ­ÎüÎ9.'¯Äe’šÌ&;ôTqÀëºèظŸUañï[ ÂÛæ£lÂ:–S˜(‡wTÉð³u»è±‡­a©µu·TO©uUÙðÉJÚxªfç|Må3±Ø8à…I4DDCžÈ±×ìP](©çæÕ7–&H6sc23Ÿ.ßáü;ÓèàÙ•Ú^J^fóÓTDzÀ>,8>¼§þ˜éIZ¢ÝHXiÈÚãwóul g•Û‚pÓñg¼¹êÎMfÔ«Péé…%[*£s&tdf7<;|ìæ“ý…šûªýQ{¢* áTåpvûdœ­Yq¶Zi¸¡~¨¡<ÑyíŒü8%ìhûy¥YNv»»aeqZ³‡¼2Ô–M<ÓOz¿UſׇàÁNÈÈÃç.s·Î;nr¯$᣹;àd’pãC齦)ôö˜·ÇKGïÀ2Îþï‘Ý\ã¿Ë ÀÀWKvÛ! +q÷ÖPHÄw-I39©èC¾èùˆü-îWvÀÜD5`âˆýk÷Ùëe}$R«/Æ5 1’ØØæw£Ü‚âHš|"á>á°Óéë=lŒªçRCêj|»³²Üe}‡üÖ(Ô^!x]aÕu~¾ñX'¦•ÐTM²Cƒ¨.h%Øé–‚=×Aâ#…–ý7[s ÔÔ×*˜iÝ$QÅ#e™øø[‡4c''¨ÍÁk—*5ø©ÅíiîÓÕ›… ®žŽ¦q¼î ’gG›[ðÆÔžÁH©¼Oðr9\Øõ |»d½–š;íñ0ßÇ窃Ŀk9ZÝY<v6žÕVÐ3êï(´|ò¯?¬tFµ¶ËŸPY¯4Ó±ÑK'kËšá‚×0ï‚20Fê=ñËÂΗ¹TZÛÃ߸éëehlôõwù& |nŠ"\á±å ÇÒ )â¸Ï&¬Ö®š‘³ vÊ_-óDÉ{ŸžG‘€Œg'8;‡Ü1К(Û¥4ÕÍÈ5EžmC²7̮˷uW›Xs“¿¿uÈ7׿L‘Ø]º/žåYGn¢šºº¢ZH_4Ò¸5‘´u$žŠÚá×ôSÞì|æÅT”Ôµ/ØÖ:7r¾FŽÑ‡l ÝÄ€šîú/[j»ŒÓóßuÂ:*(Gâqø¤wf1½\ãØµ>®â'‰}\í%£éç³é¤®I?«Š<ä>¡Àáòm´M8Ï~®R³…z ÁÃM¦´ô%°D9æ¨~ µ2ŸÅ,‡»äØ+¨ì7?Uäj½O`Ò–—Ýu%â’ÕFÓýeD¼Ç÷Z:¹ÞÀT[⿌M$´zÕ„VÜn-%ÏþÓ!åï9=Ú Õ<|âF¨£™µú®àȦikà¦-›‚0= î±%MLÕ2¹ÒHrù q'ÕJOV®'·QPÞ´Í+‘|£¸ÕUÌ<žFr½áŒÏ1~KC\ÑŒä8Èþ/«ÉÒóURµòÏc¾ÍC.F>õD%h÷þ¶1•ª¸©®¼Me»EÆË¶åOKv¤ªtœ­§¥ªçt~q;å¾[Á-Ï/Lœ,áÇÞk;Ÿ ´|¶Óxºi‹3(k-®œ–LÖ ‡S‚ÖµÏf\Ü–µÏhopˆ7]¬uÂ;•º¶ÓY  –TÓº cp鱃·ðY;‡ž!8‘¥ØÈ)µµ´Ãý…pûÃHôßúœt‡ŒZgµ±ê$ý2Oj¨'°l2>¾bÌš[Ž|5Ô”ËhÔ0ýî*wÍ÷ ¦šiÝÊÒâÖ‡€vêÒGº¾´Ì†ÁCBæ:žš(ÜÒì¸ÁœžçÝz\Àœt\³ºwT*ª›‘è°§ªVÔxmÔÒ¹¹u<”“GÛ”ýæ6çòqV_ÙíQÃ7ÛeD1KWÉZæ¼d=’CAT2â>š¨Ñ¨´‘Ox§ñ½Â*ˆßËÌÉ:îÐAìF{œÜLw3A ·#¡\Ñ®ÆA힥k Ä YøÁ«(KØþ[¤ò€ÐG(‘æ@7þ+ÊZÖ»™Ä¿× ¦‚9ªê› Q¾IàF\÷€Ð=IÀ[7ð×à .ðÞ’Øø#7ºÖ¶¦ï>ÅΜ´~¬;ä`ø@éøW”@Û öUø±¾ÀÞ$xýmÐv¿Ñfx+õ [dk$Áñц¹Ñ¹Îõxs\qÕ¹;uÜáUû޾ªû¨jk›§â¨sî—’e­›baÇö°G3¿dcÙO«žÑ§,ôö{%ºžßo¦`d4ôí k˹÷;žëåÖÚ‚)£îºš¢Šººe3ê$§¥ t¯kFO($ †O^ƒè¢§|VËz¶Ó[8yC]lª’VùÒVS2J’C˜æˆDr8H-9È;`…áóŒ×›'ô–-7ñT½Òý΢²8ªÞIyc°Iè\ì¼Ú_q­©û°ÑSÀцºIëéØÁœož}ÀödàãVTH°Õ¶ËU0hsa¶±õS;Õ¥Ï k>ce‹„^Іýþ]Cyv>6Õ\<¶8ï¢k0=³éõ¸†^ ¼¶hÎ@͹UÐoŸ3®ËÀ»xQáƒÜꚦ¦²š\×ÁrkÛßõ¬q|ÇNÊ+ðñÚÃWx‚·Z4F¨7›UU_èK•âG¹‚ž&¼µîø\[ÌÐ6 êᲑ— OâÇKË+«ôm“RS -M˜;l‚‘Éù·ºóeñgz°ÎÚcº«lì$Ï}d´ç9íàv/ú…s[<]pö¥Ílö-ON1’ñ<Œ:blžý»/j—Å7 ¥æók¯8v}²CÿW+ç¬ñ[ˆ tM}¬#8dVâ×;†G4~eZ‡Æ %\Í·è]q¸VÊ9cûôƒ¯#oÔÁæñµwYxuÅÎ4TÒܸÉrvŸÓ1J$nž¦g•%Pnv‡-¤“»ËŸ±nARVÑn¡³Ûií¶ÊXhèicÁ-ådl`Æþ øÕ`áM”‰y+µD|ÔVî|lN<Éü,û¸Œä`Mî#ø‡¾E­8]WeÓ“KO O9 c³åÇë#²çvÎr%¶ŽÓV-§©tþœ·Cn·S7Ãêq»œz¹Ç»‰$®Z›Réí1o}n¢¼ÐÛ)Ú3ÍS0nFq°''r:(ßÅoöº8f¡áõ¹Õ•„\n–Bßí2,‡»Û›—~Ä(‘¯¸…ª5­ÔÜ5âªáR_ð—»àŒ¡Œ4{­™ikj©jjc§–XiyLò1…͈8òŽcÐd{•zxxÒÍgÅí7¦ïÒ=–Úú™8d¦786¼48n ‹ÛÕK‰áðÁÃyK£$Òtò_|ècs磒´@ùyy ß) ~&ôÎ3ÑHÚ *J 6QÛé)èé¡ÈdD#crI8hØnIú¨ûâÞÖaá¾½®kaæ´Ü+zÌavwßàŽ%‹¼(q9×-m¢ôäôïTVÚ›|• ~[58Kp?‡ËQòé¾fÖ1ïî ù.¶«eÚœSÝ­´wAÈeT • üœ ޼kðéÃ=Qª¡¤ÓwŠ=«+`}LT0Ä =c~'y#§¶XGsÊTL⟠5ï k\ÍSh{iþH®®2RM>Ž >ÊÆòD.~K,ð÷Ä_4› §¦Ô2UÑÆ@µìûÄ|¿º3ñ4|œ|Ñ^1¨å‰ŒÕºVF»öê-3Ìqÿª”ŒvÿhVqÐЭ mú²ÑÄ*XÏÝ׳j#i1¸œut`þXgÃÞ°+‹ºnúfò©â­d5d“»Ëú¹ ð×—cÕ¡m'²HÚøä5À朂B 找Qt@ˆˆˆˆˆˆˆˆˆz.N䜠ýW!7!Pd|¾J§8Ù:w= ª""§0æåÎꨈˆ¨ã…ÒK½ŽêÛâ6­·è!uÔw Øh)Ÿ0ç8F3ܹØ UZžûqÔ7ªëÝÊ_6®áU,ó¿÷¤{¹òüKÊp qê6)ùà Z¶ùÃzÝ7W[,× EFCâìS¹­l|¹èk†–i$‘¾;çêk ŸRØêl—ëu5ÊÛTf¦œÌxò €Aê(Gâ3ÃׇÔòê=uÛNFç>ª’FóÏn`Ü88ÉÉßh9ܯ«Ã/ˆk¶ž¿RiÍer–¿MUrÅMCùä¡y 5ÁçwEÙÀôÈ#¡œms\Ö¹®t!rÝ]LmžžHçÈÒÂZpFF6PÇ‹õ5Z[Šp^ª0ûå#ÀåK)sàÛa8œç8,äã&^ií¦ÓVëýµÎu%};'‹™¼®hpÝ®œAˆ+Ö ôTUKØöMæ°å„~±˜ëèGü»ý7íiËA9誈ˆ…ôß§¢×ÿ 'è®7¾àÂnÖè*¹[Ð9¼Ñ;·_Õ‚£Å^>ê]ù€Ççÿ%˜<iz-QÇ»p¸ÆÉi­4òÜÌO$¾>VÇÐŽ{ßðî1•² ÐI ÷è¹s€*;x‹ñgÒô7£«Å~ pu<µo Æ ƒ‡âŽQÐñឰߵΧ§°Ø©%¸]*äsþ,ò°—I#ÿe£9.>¾¥l+Ãw ªøYÃH´ÍUÍ•ÕòÕIYY4mq„Hð$YÁå­ÜÎNp2Qc°\@Ü•rDø¤Ž9áÊZFC†0Aöì¼=;¢4Žªž®Å¦,–Ú‰ät’MMDÆ=î'$—ž¾êàäõܪàÈS”äzcªäFzª1ºÄ-õÄ:#‚——µíûýâ7[(™êdiw_Ùg1Ï®qû:tÃëø…}Õ’syVŠÓE¶Î’w“cwûÁL½}«¬KO©5-wÝ-ð>8ß#X\KžàÐFçsºOeì\((®T úJjÚ|óysÄÙvÆpr:ù«Qp+„Wé]-Ã@Ú+ðKèÚêGó„µ[xXàëœâÛ-Ò>n·yþí—â½O†¾ Û¦lÃE²­ã¡­­žvð¹å¿Ád]1¤´Æ˜€A§týªÓ"Ž‘‘scÔ´dýW±É*Èâæ®¸éí?SM¥©sÕ•j·ùnÊìÌCNÍ“ÌpÑÈX“‡Ü ¶Øn£‰\rÔ”WE#¼ï*²vŠ*GŒã%çõ¯hÆ:5»€—©ÄOü;ÓFJ[¨ÕÌۧɦåpÜ{±®QÇ[ø§âf¢|Ôô7 {#ò²>WÛ2»/æ­åÑa›­úñw­’ªá]W]Rüþ²i+É8îâOº÷´Ÿ ¸¬(…vœÒ‹…+ŸÈ*,EÙÁÎÀØõôRS@x/£dtUšçVTÉ#£¨·Û"l|’|$7Îqw0$4g;óõã…:~Ýxsf³QÚmw 3ò¢æ-—¬s8ŸŠG1á®Ë‰' \mŠ÷ µð† MCz°\6)l±»bîž ÷\Z»TÒkjVS2šžåz¡‘ð¹ÁÁ šàNw}–Îqñ8޹ß*8øñ¾ Oj¨[ l÷Ûœ4Á¼ø&(¿Xqê2Ñþ÷È(¥á1áüx°Q9¬&´OJÙ¿”_ Ç09#·Ílðdv‹å{«Åk9"ôgÆÿ0µñ»¶ÊCùŒz¼eêYtwˆžêhe1›u3'“L_y"FüœÂæŸbT¹ª¤†²žZZ¨!ª¦—gÅ3Øñׂyão‡.êIú"ÔtÅÝôÎ|SÛ™ËLdóÈÚøé0yyNßEx½À>!pÞ¾G×Z¥»ZÌwKtN’`ŸŒ˜Èç˜cЕŒ¢Áð¿¾F:®økg§på{ÁæØç¦ë#èÎ4q Iº&Úu]Ê(X¨–_:ß°üŽË?ðëÆÞæSk=¬È®ÔyѰÞAõ$<{5H- Åþë#6MMFj¤8mIò'ÎqŽGã'å•}ýŸã…Ž|L8­Ë£2ÿ找M¶?N¿E‚þÍǃeÖ±sᦌòŽ˜ägø) Æ­GÄn^4•CblµPQÍ& –ïò2@ænZ\;­XMMQCt’–² )êiå1MÇ+£{Ò;Gð[ ð{¯¶àõUºK”Š ¾bKœÌoÉõnÍ¥fo檈3ꈈz""""}QQÝ7Lã8UDDDDDDDD9ÆÊƒ=2¨®3ê«D; †U9¶ù¦IÎ1•VôUEG¹¬isÜÑÔ“€‘yânŸ¤ÔçK[D÷{Óatϧ¦–6·‰çl’æ€w#¢»­o¬–ÛM%Æà«|MtñFþvÆò7hwpÙî¾0QD=:®ñ‘ù.’HôÉ8 øÿâu·*-j¸‰¡¥y¬ºÞK|ìrÇ þàq2ñÜ(”Æ—84 ’v ÝÕzjñdÚ»´´÷jQYB÷Œ ¡$€áìzüˆ=Õóá{ˆÏá§éo3ºGZªZi.Q7©…Äp;–œ8|ˆî¶kCWm,5t“2zjˆÛ,20å¯c†ZAô ¯¡§#…I¢ŽV9’Æ×±í-{2Áw [ž'xnîñ*¦ßCNábºµÕV—³]ñÅîXN7ß”´©WàÉlÖ<«œäym>ÿÉI¾ðK†:ôu]-Hû…!.ŠáX<êâOÅÌzð0ÈÁ­cCXփРù!åí·¶ë‰Ý™ /øÕàÄÚŽ„ñ#LS6K­9zV4óÖ@ÜrÈÌ~Üc9øšzŽP ¶ÖýÎùMpÝ –Mðõ!®oÉm·Kjk>©Ó”ú‚ÅTʺ¦s1ÍµÝ \;8ˆQKí¾[ÝgÓ:t=¯¸ÃU%C™Ï»#òÆå¾Ž/9ý‡l°ŸƒYc§ñ¤å‘Íh|ÓÄ2ÎmÝ€|Žý{-˜À$€žVŒŸP{íý"iP@ ÙÞ »ÿ\TÇá¥c.;ÓuÑÍç¶{U3üÌç›17%z—ku5Êã©i")£˜ýøÞÃôsZq칌r‘¶û|þŠÑÖœ0áþ°¦0êMh®Éæ2ýÜE7NÒGÊñ×Õ`>"x3ÓµþmN†ÔuVi°\Ê+ƒ~ñOžÍ HÁžçœ¨ß®¸ÄýçΑ¸KNÞ•T ûÔ'=2Y’> ,xæÉ\°Iâ’<‡1í-p;ìAÜv\Yq¬…Ü͑٠ƒŒéî²? x÷ÄM QLmÚ‚ª¢Š'7ž‚±Æjy:·”îÜú´ƒî§µõ£\-–åWhŠªÄÔ7+kçS–œœÊöžàwã+ÂðéÁ™¸G©5—“_ e–é4/¶üèãiêäÏv󑳺àg3¸Cºç¢×׎Í4·£¥¥lvýI © àT³ ›êrןï_ö‹GqÖúù÷Ê¢sŽH߉Ç“‘ƒÌÞ‡ñž˜ßa ‚2ʪ™ß ¨Pœ&þª¨ˆ‰°©É nS9U7DDDDDDDT¯D˜UT7ÂàöÈ'òAÌ0‘¿§Uب÷6>‹ÀÖZ®Õ¥lî¹Ýêb¦‹<‘‡¿•ߺÑÜÿ!ºƒ\Yã¬×Úâ:öáKn3OLÉ€`Ü|nåhÎ7Æ{zÖPðÕU¼X¸Ô:ªž¦©ÐÓÆÇ½™•œÒÌZvÀ%Ñ4õÉÊZ¢""!ÇUÔò3‚B·8ª)4n‡»êz¶>HmÐ þW=Ä€Ö‚{’@Z¥Õ5µ÷yê*g’ie{¤{Þîg8“Ü÷+íáî­Õ:¶Ùa· Õ\'eÛ¢"",u¬øOl»‰çÓ—ËÖ¯åòÏe«| •Ç©|mpi'®Fw9^dž:þËf’}ŽO5Ö6󯊮‚?cõ­w—ŸQ•ÛâÃ‰Ö ¼ÖËõ‚yédtUPÔÐÉí{]‡0òÈHÜnÓŒ,¹Ã?:>ûTººŠm=ZZça3Ò¸ãs9š=ˆ?2³ž˜ÕzkSÁæéÛõ¶æÐÎr)ª÷4tÍ-ú€½¥BŒßhURp®Áp!Æj{ëbÏ`É)æ'?âŠ\K]S–€;,µáZ¸ÛxÍ£žÐÎynl‡.ÎÞfXqƒ×Oî2kª.pòå©êù,#Ê£„Ÿëª³?‰>À­qYmú‡ˆÜB¥´A7Ÿx½Öüun9œyŸ+½€$ýØ— xi¢økg¥¥°Xè›^Æ6'Üd…®«©yß'âÁ$žP@ÀdÖ\\@Üžèâ '.ÈOü×&·|»sü—$÷T=zd*oŸòU#®êÖâά‡Cðâûª¥å.·Ñ¾H˜Fy¥#·êâ¾ü1èJž)ñ®˜^bûí¶’G]/”’%o>C î^òœÞ‹e| ï×*)}£äÿB´”=ZëœÇÛ"-¿šÍ^k]À 3åläYᇘtÄmä úrãè²)ÎWËs¸ÑZèe®¸ÕÓÑÒBÞigžAl¤“€£ç¼Xè½;ÍI¤é$Ô•À–™œã+=ùˆ.^€cÜ(©Å><ñ\Êö]o’ÃBâKmô'Ȧhì™ýãs½–5´Ò]ou±ÐÛ(ë.5ÒŸ‚ h],ù5 •xsá#‰zŽhê5©t­·sªœ&¨Æzˆ˜zû9ÍR§‡8Y£hbiê}ErrO[w`¨œä‘ ³0vn@$œ“–é †š”ÔÐ2#¬Ž6µ£Ð° ´4z.MtUóŒz.Øt\\7;gæ¨{‡¸ßø-Wx‹¶Ãjãž³¢¦¤Š–ž;¼Æ8¢g+×;˜ÀaÝÈ~øÏpáµWÕtÍ|´òdˆHfcð¸¾Ä "Éñ«$Ö¼B©¾–bžøéœð±Ü­# zéøT‰¬ñ¢ÞI ý á*L-˜‚1I÷\ÈØz(IöÅôÃGÌúé-Õ {@èÑ#KOæO䤅kù¨ðÕ£îUÎЉôä€ ω½?²À®=!Ä:-a­/v;$Eô–"#¬«sšCæ$€ÆAŒçä¯3Øûo²¨ €AGåüÐg $oÙZÚó‡Z\ÄÖêÍ/lº=­!³I,ͳeioAЬ­¼h›„“O¥õ ÚÆ^שçkj¡cûNËós¿e…ë|ñn*Ù §~Ÿ©†?êçmqh”uØä}@W&½³ñÃgm‹s[ÒYj¯»}9æþS—‘ðÆAi ââ1Ñ[ÖÁ’HÞ`9ƒ„Œi~àG@µáË‚·[²;|×y] ² |Ð44‰ZZìµ®.x9ìå%8'ÁÛN‚&ï9’¦ý3\ÙgóÈÆ¸äµ­Îùç ôYPlcÿ5Lí¶ût ,xøÖ ¤²Z4dNÔ;ïõtã >,H؉#°‘„ã¹ÑAú¶:z—;ÔÿÍL_z¹Ý5ýl½”ÐP6X²æ˜ùùšOMÝÈ?²à¥6´°Ñê#vÓUä}ÖéG-,Ž-,çiÀ²ÒAà-OßíU¶[Õ}†âÆÃ_o¨}%S²$os3ßpw^Ï 5mÏEëN¨´< »}C$leå­•ˆý—4¹§æ¶›¤¯ÔŸLÛu¥üôWfT@HÁ pθÜp½p^§ ‡ß-Ôñǹ4þ©G²Qµ¶{«ÚË‹bf=^ø‘Àtlƒ©ýþ§.÷üqdQÌxk~«Ä¼¾Ë,…¡±¼ä¾Nøq9o]ù‡pØ*®¹ZDZ̑­s!Í# B ]_ mzÓè]WK4¥þ9á´Õ²N‘KŸ+â;óÄâs×ô!JŸ5—*-5WÃëóüËÆ‘–÷Ì2M)`},£ ãÃOö˜å“Ñ4daüQ¯ü;úû&Ïž‡÷p¹"/VÙíwÚn½éÚ[å0“É©¦†xùÆpK%ÛoQºÄ÷Âÿ µ,3UZ¨j4…ÉÅÏÛœ[9ÀüÇÊ ü,äÏNe„/¾x½¤ª…ãGÞh/¦Þe<Ô5N£­ˆdà°‘]ü!ñhè©¢³ñ&ÕRjiÇ“-Æ–0$/nÇÍ„ãÏRß}‚Ï:{Œ¼0¿ÔÓÒÛu•¸ÔT9¬Ž‹¡sœNÍøÀß;cÕZ~5è ­ðï–VIG=D{gï1°Ÿ÷^å®) i›.=º|Šº8}x“Oêë=âžWÄú ÈêXæœc•Ã?Áf?|Fþ˜qXmµbK…†8Ë g©~ ’du°zaÄ~"¯:¨}}o®´Í¢'ÑYüÆî÷4Íôƒ{žaÙL F:P9ÎqíþKè_5cú0|ÊåNЃÊï²!TOeB@ÏE ~Ð~ ²J›gh*Hà\.¡Žý§ C½ÃKžAý攼ðþMÂî—*vÇuÔ’6á/Á‡²Ÿ”#q?¶ ¤vYß$œTVûGØßôy¥¥ÈeÝÌ×0»'øÍ{ž8™£´…ÝU«/QQ>Xª„00%—–ªa³FOA×a•‘ÄÏa’º‡Ö8ÚÐpêÛ«I$m»bc†;þ#é²\@â–³×u¦«Sjë‡)掿–ÏO‚&á8îOrW¿¢øÅ{PÁC¤ë¨idß{¹ÆêXÛp\2áýÐW½áöÍ_ÇúÝ-zš+µŽÀÉå¸>HȪù"kñ‚‘Àï‚ZÇ-€iM+§´¥£Óv]šÀs²†•‘s0 ‹F\}ÎI^Ó[¹$ïë•^\ATè9@ÉUö$Ÿ‘Uù•BÜœvÙUá½Î=W[¶nØÀôIq€FOù-ixÇ€ÒxŽÕѵŒºh%øO^zxŸŸu!8ÃẓYiÚ}W¢£ý¨æ¡§’zgL~íVï)¹üYåMÁÁî3º‡¼BÓÚ‡I^ݦõ,”ÕTD“‰,Á®<§¡ê3Žêæð稭z{Œºfùz–Jz §K[XÖµ¤þö  Î`ÇB\:­dx’Ї‡\\»Ú#‡Ë ©•ÕÖîVá¿w’6ß•ÜÍÿ ɾø¦í3ªŸ¢+éß-¾ý0’9Z>*yÚ ŽÙ,- ‡ŽêvüÕ~¨ˆˆˆˆˆ„"*oŸeMÁÇe]Žê™ô#8ú*·»5TDDDDDDDDD\ G6Oª·µ¶…ÑúÐÐÿJôí¾ñ÷—Òýê.,»—›Ç•¹c½øbŽ£†ÛQ´1Œc@kZÀÐ.Јˆ‰„]yqqïEÆW çr·¹ÎËY>!µ„Úߊ×ËкŸïEÀ‚!ÊÌ|÷q÷q*ijR:¾ïGH"55Óµäd7ܹDZ+i+Òôz3‡v-1E – }#Yæ–òù¯$ºG‘عåÎú«Àga±u¼è#f×ôzê‚.Z=AŠ«ðUDÐ3íÍiùµÇºŒ<ÅièG¢Í|ñ­¸ohŠËDê+¥’FÒVÄO)qÉå{HswßÎËR dáTsƒÍ3ŒîB¾ÝÕAÜù.9ÀØ`ý— älQ™$sXÖõsŽú®º9 KyÛ“>Awç¾tœ¬Ç3ùs°8îºÝ³OPu¯6©k|N×QQ–ýæéK@{âdc$í„n§††ÈÑ6:WÌf–žß Ëнì`cŽ:ÁPçíkÿÒ•!İÚyvÏvN{çoËÝbŸ ZR“Yñnß§+ ›O[MR~!ŽX‹‡á õºçÃî¦Ò…×m=u«µî>’¹ð½ËH{žKp ®kšyw;í”´'o‚&ÐêØ †²$ÓÆáËžo0|õÎÛuX_ÇÅÊ’¶Ïgœ´>ðÁLìþþp¸9bÃ+³Ü8¡]¥xejlT‰jdª«lY-c¹žùF ! h'>ëd¶eºÍh£´Ùéc¤·ÑÂØ)âŒ|,`Ϻôã~Š£n‹| …ȸ/.{&2;a|wÚzÚ»U]5²¹”5²BæÓÔº/“! ùÎÁßjîûU©ø}ÄË• —ªkÕš¾H[O#ã{Ü×ÿX×g›výC·[ðñ©nú¿ƒkR_fmEʶæiCÎrÙ^À↌à ÕÿŒ@°Ž]=¦ëx+]¨nvšyîöÙiã·ÕI™Q^iÀ°»á9ßV÷m- j­ÖFÜݨ¢` ®elÌ‘‡aáÐကàêOÂGÎQ¢""""Š&À{""}ÊFçdéÔÿÇœ“=×6ô ¨ˆˆˆˆˆˆˆˆˆˆ¨¾;µ¾®ç]l†ª7VP ˜³ñ3¡Í8ô þkï¡ Çþ ‹Ü²ê'>›e‡|[kÉ4w 䤡˜Gr¾—ÑÂážfEËú×´ŽàñekÖ°»˜~ÉÀg?œ3¬Öþ—UTÄÖXôõSd‘îÇëªCy™õÆC¦Þª~ÈžÙÉLŒdô=qÝcï\?‰|,ºé€Ck¹EM¹ä€S%™=ƒ²ZO`âµy·UÛî—i)k!w,ÐJ9_½ìw\`§óˆÃùOAØžô…ÝQ¬8qgÕÚSRZ§–ºœI-`t.„ä‚ÛÌ@F@ê¼ [á¿}{ô£î”äµ¾e²vTnIÛý»ž\U‹î´—« gܯ mH5tï†Aók€+Ï«©|Øs¤æ#Ô¯»MêKÆ›¼QÝ­5rRÖÑÊ&‚fc™ŽÜdc¹R7Jø¹âúV;Eò0Ñ‘4D„÷ø£ÃáY‡HxµÐuäC¨-uöyð™÷ÉÛaج£¦¸·Ã XÑKiÖZ™fý_Ýj¤û¼²ç ´G(kÜl …Ú·ô߇^7Þ-¶*€mò5²ÓG3y£ž†WØÞr[‡3›®[‘ŒáM>ëkNºáͺëj“K~íQNçeôïfÜŽõÛ=ú«ónЍ¨AÁܪ¢ kt~Jž\g¬mü•9ü;{vBŒUÈ7¡;›|Õ6=pºj ‚¢ ©dsA+ %ŽF‡5í ‚×±0V©¸Ág‹NñKTX¡´Ôôwiã‚&`¶8ùÉ ì ÔŸ"‘À覇î¶Ž–›ZÅo¤–±ôB!-VL‘ù’9ÞdC”yc»ö·ìå.ÚÐÜîN{’Ž!­.q’Odcšö5ìps\2îãó"-ú…óÄÞBÝ},v[ÿ5ÈôDÇ¢§p±ÿˆÙ,là†¬n¢­šŽÝ%½Ñ¾HHs8€Æ·=Iw(Ç|¨/àÞ–Ý7ˆ?5eæšÞÚS4°6o„Ô¼°±‘7lslà‘оØåƆŽånžßr¥‚¶’¡ŽŽzjˆÛ$r°õkšì‚¡VÕ£†|9´UÃ[kÐ:ZŽª <Èj"´ÀÙcvr×òäÛe>Ñú‰$Ôº6Œ’#eL¿S#òoñY›Á,r3Ãn™sÀå’Z×3Hû̃|‚³piÏ|Rª}?š†ÿh6·&€£Î®õñ·92¸ÂÂ;á¥îÆÿˆ,ãá#M×éniûmÚ×Wl¹<ÏQUOTÎICŸ+ˆ.oVž^]ŽîYd ûô\Z ‹œ“–íÐm²©|8ÊÇÚÿŒ¼7ÐΞ ö¨£5‚_EKúùÚGì¹­Èaþùj·ì¼m¸^­²Üí|"×µ4D5ô³}ɬûË>&‡‘Øäc9ì£?‹n+]/ú¶ÝA¯Sic¶Z{…¾ºWCç2W9£iåsKAëœç—Ûá+^E¨5¯‡úÖñq«´5¬6JjH¥mTÌ͹c äæhØž\Nz:ˆåkš9šp[Ü/ˆ:¢Ñ¤4Û¯wº»ÐÇUO “g ‹Í™‘¼þË^ ' ÷ÀTÓ×Û5úõzzól»Ó´üRÐU²¢0wØ–;Ȩãb¦z_RÕÔGä²((d„ód–5 ó{oÍ·²vI^â×3â§–&Ë(ÆsŸp}ú(ƒö‹RÔc¤k@¤–Ù4QzùŒ˜ÿ±cWZ¼@éY^d¦I©+±“$N>Ù dLÉ9Áø«cQhËEq¨ž†1k¹T‘ÏSJÆJ@ÀçipÁßÕC¿WKdÕÖ+= d56úЦV‹AŽLG–¹£p{çþJÙá&‡×4:&Á­45Eá•÷yª¢ÝdòqDìgœ8s4–¸œŒl®šÜLÓÕrÚkï–«¬ôÕd¦®•¥çœÌäï·NÝ×-oâ·WUßìuö6Çe1JÚºVÈg‚­Ï-Ç;\Ão‘“‚¤·‡Î4Xø™¦à5uvë~£>)­ßx |¼ 2&¸ó9¤Ó89Yi¸UT?TØ ÀTvíÛ’ן+[hüATÕ2>Ss¶RÔâp‹óÄ`~JWø?y>4s†q÷yÆÃ}ªe .`ÔkûDd|\´€qæj:v¼c¨õù€±§ÙÏqk5ö¨·<4¾¢ÑÍÛâåŽnSoÖà§éÓ ©ìˆˆw(ˆˆˆ0©¶wTÇLù®@`apk•ÍÁØŸ^ª>ê ÅfŸñ?w‘õ’ :ª;4/~‘Ïpù>=Æ;û¬ýC;*)ùØàîW8·08+½ Àÿ±84d•ÒH=Olª´s’ÝÀ|wZüñ[ÄÆkívb¥…°Ûì¦zJSÎy¥ËÛÍ#Ød³·l,Ad ¬¼^é-TaŸ{ªC˜ðÆó;¦Iè¶KÀ OÃþYì ¤Ž ‹àeMÐ±ÜÆJ·1¾c‰ïŒüš@”vhÆz*‚3³†~kŽ;ì?šˆ^?8a5C!â}¢‘®DÚ[ØcpâÞ`ئ;ï‚àöqŽÃh…|£¹7sï褄®$O¢õDŒ¹‚tÍ{ࣹÔ|º»œC3»4BNØ#}€SÔ3~›õæ0pæ8ä·1Î}·Vî¦Ðº/R@èïúNÇrææ©¢Ïöv9‡Ð… ünpsHèZ+&¤ÒÿÑq\k&§¬¦—FåµÑùaÇᙌ¸tÀ ðƒúljÖëìºMÖéf³%4óùO›Îó9DdŽ\þ¨þ"ѸÝxZÏAkí!v©Ò׋TMw–'žÞCèÙFXï¡+Àm|Æ2ÞlÆù ÂåUU ;#Œtìòãf~79Àç+%ø~ãv áE}Ãô}=5}%{cóiª\àÎf“‡‚Þ‡ŽêNiß:r ´_ôµ}#yFe£³d“Ù®å8ú••ô·xW¨CI¬­ô³;ɸ8Ò;››ÊºJÈËвh¤l‘¼×°å®¸#¨\Ól¢"dz¢CŒ{*|‘ý:€µ¿ãVÜ)|BßË# d즩o+qžx[“ù´¬%;ñg©9[ðŠau†òiät1ÔÐÀìì"de¬vØœ–ñ=Ä7é›Dz~‚ ÃW[“O+Êè¢oAžÙ9úuôøKâ 5ÿ ©§•د·–ÓTÇ‘CF1ÙÄ8N–`^Y|ð\j#š"i¤å|róçâ#n;ù•õ5ü¤á¡¿æ¾†88dî¹EL¡õXÛÄì?yðÿ­ãÃ-2ɇ þ;ü–³te[iõ¥–¢L¶&\iÞì ZzýÞAîi !Ûr¡Ú6âuÆ’°µÌGÖQÿ%ü´äÍ£Á¾ãÿÛ'Yg¦ôÊ©lœ-~ñ÷pÿË…µóRÏQUIª(ᆙ­Ëäœ`h;|Cp}ÔÔ±q7@ßu{ô¥£TPW^¥û¼O$Çö‡ã”½¸$°`8Àʼ9€8 ÇÔZŠÝf\že]sâ2ÃCK‡ÔJѱpi# €\â ‘¢î¶Ô¾!x±©¦ÒZL\ôe¨<Ç<ÒC.ÒÔ ßœ~úûƒ•|ð—Âþ‹Ñæ+–«|Z²æ[W [E ^XNC÷è_Ÿ\³ç/@F0>À-pxÞ­®«ñ¨)ªùqM,àv‹ÈcÇs¿3ܰݢåYh»Ò]mõ.‚²Ž¢:˜&oâdŒw3\=Á­‘ð/‹–î-iH¥-†Ù©c‹Ì¨¤Ë^CLŒî[’2:·  ˜]â·ˆŸÓž0VT[êj$µZ¢¢lÅ®nc?¬x#x'¾F2¬žëÝEÃÍcK©´õlTDñçÂ[TyË¢‘£g4úv8#³7‹ØõÝgõÍ=µðI¨¬Í¥t.y“˘K0ï^g»¾HÏÐW {–ž³VÑ“÷i­ˆÁÛ``î0AQ§í-/Ðë.N ÄÓcù¸MpšÉĽ+uˆ¹®¥»Ò8–àœZ×uõ­©¿gá€N‹ ø™â¼|;Ò΂ßP ú´ÀÖãõ,ß.9ú( ¬-wÆËAw¿SÕCújÜ)ŸR’¥ŽyÌÛîCˆ$ã~…O¯Øá›MARÈêb©os%f[ƒS -Áù+Ǫ¡ÑV;%–Õk·ýöñ#Ÿ4“Ó2_.ˆ8í;½ÎŸFáA骼ú—Ë.rç~g*Sø\ᕺºšË«íº†•TTÓþ’¶BæÒö°HxÎæƒ¸õS7GÒýÚÎÀʺšˆ¼~{ËËG '|/eP“Õbþ6q³Np¶ª†‚ãIUq¯«…óýÞ”´:(Úp샎@õåw¢ÈV µöËGzµÔ2¦†ºOO+:=Žø¯¹ØÆT ûB«Ÿ/-t® ÑØâp8îù¥'þ¨R×Õ•¶è»htÂÑ DV¾fù¯oÑÏ#è²ÍF´TÁk,dîu$$méKR°›œ–ÏVª`àt¢ª¡yõY˜BØ  •Q úªº¨é²"""""""""""ñ¬µš‹íÙÕô,¥ ˆÅæËåÀq{leÍäV ãí–¢¯‹Õ3Ã"§KÒùoiÜI{¿MÈ}оü=êz«Æ™­¥¼>&\i®sEåù­%ÌØƒŒ÷ÜýAèBÊHˆ©Ÿ]•20GUÔ#ø·<¤ú++ŽÚ±Ú#„×ëý,­Ž²*ØÏëä!Œ8=p]“ì ÖUÒ´ÏPò^\縒O|œÿ58Sv±_¤Ö–ë1¹²ÃEQ]+K2ÎF'ÔJÒ@Ü žÅgn ø«ÄÏ â2ÇSXùr¦a?w‰ÀÃAsš6ÉÁ);¤µVœÕ¶Æ\´ÕæŠéFá’úi2æû=¿‰§Ô8µ–ç?N©×ü—Á¨-4ë%ÂÇuƒï y)jb.#š7´µÀ¸Øõ­Xëût泿Yʆ }Ê¢–6ÎÒå6BNFwo)Ï|åqÑ×é¬5æ`Ñ=%C ”¯q ©ØçØìv ö ‚S¿Ã¿hæŽÛ¡.wi+&ž‡ïºvºwŽzÚ0qä¼ç?x‡®Ho0Û8ÍüÀíº;=Àü–ñçn¨¯à§…Žttzj™ùÍËÇ'ÐfA¿üÖû>®F“‰÷›I¨°×Ú‹ü¢@2¾)iœ’ŸÓ²œE‚HÝÚÂÇ HÈ ú‚±î¯à‡ µSç–ï¡­y²_QKÝ¥síGŒŸs•‰µ_ƒ]p›ÌÓÚ‚ñb;ÂðÚ¨Àé͇ÜT[áçµ¾¶Ô‚Çl}¦ …‚yiëa©¬ ™sHh.o;C9ºá•õêžñ?JpúMi}´ÃMCÀ¨¦ûË_S 9îcr9 °2 8 ã¬oÎvÄ^IØÕÇ¥µæ£Ó5ö+ÝÊÔâòâ(ª_ \}\Öõf-#Ⓣ–¸£w+ÄLÎY]NÞw|ÜÎSÙe½+ã Ã7$Z›K×R¸á¦j [3Iõäw)üD¬¯¦xñÂkû„túÒ‚Š]ŽäFrGá”5®?Ý%dzjˆ*iÙQM4sÂñÌÉ#ps\=AWb 9Tì«€6'主$¾Š} 4̃5 }æÅŽ>¤K3“BŒ•m!à{t[ðw4ðÕj V¶?ÑðQPBÙÿmx ÷’~K8ëYeÑÚN㩯Ul††‚/2Gu$“†´“’Hæµ}Æž!\ø…¯.ê™åHâÈcç<­°Ç¢¿¼q2-ÅF[n³ùvkó$Îs°ØeÎbûg->ÏÏe²Âf³öÊùÀkCrH- üÎtnß]ª„ª9·§ä±·‰÷xÖÎiÇþjuð®hå×C+ƒ¹c‘®Ã]ƒ±ÎDZ[ŒŠNxÚü84uê=•^/üÔ ûAëLül´Ñ4;ý^Å9;s>iNöÀ)%àÁ¥¾4{\7-¬#†²b?‚ÌxéÐaq!ÝñQ/Œ“PÓøóГ\[t¿£â|{Cv*C\çwÁÆý°=nâ´Īºm ¨ÅÞѦ‚®<:ÌH`ÎX@ÃÛAç+/Z|_jŠ~~‹šš LÉ9tx0ãbèñ‡KÛ=R3ÖGp#A^(t—-kt«®ÔÚŠxîWi‹Ãfk|¶ˆ© Á9Ž1².v0 ÊT4QÒ@È)¢d0dzc Ø/¨Œžûz.·:ÕjçÄ C8Ù­ã®y"ýVþcØé ™ÿš±³›úÎ\©qàOjª-Y%þ²ÉQŠºÃPÚ+‹àÒ2¢1Ê×ÀãÌýŽ9ƒ6Ï.Ùêñá焺‚ùqÔÍê»Â¡Õ éãi{†ä1dîvëºÆú—Áö‡¸ëz[•ªë_g²9üõv–0ÊyGhæ{²Ðïpâ2qÑ[ž)´í±PØ­´TvÓJ[CMPùs÷îv¶90ãÌY®%ä~ ø€7ñcÃzŠˆ`½[.ú|@MòšÊ¨ÐÞPIiüšì¬sã«ViÝYS¡î:fóOs¡4UGš'ÆKâÙì8s·Gv裾s¿NP7Í&ªŽ_Ö {zåmŠZÚ‡CézûÝkã/¦…Æ^ìå´§$ŽŠ3ð¿A_øõÄŠÍwĆTÃ`¶JÈa š70Ô8öD2?«hp.Î仸ïûE`¡‚›BElŽf¶664؃cÀ°`WðGW÷Ÿ¶(wÍ-ET.ó¿œç}?Àhíh—‰jÞÙKþíi2¹¹i’g‰ ïè\dAÍó¸SŸìôÓ_wÑwícRlj+ê™o¥.iȆÌç7Ô9òqÞ1è¥SsÊ2rWËy‘ÑZç{"t§—ÎHïÑaOÄ‹ç jÍ}Ò‹¶p{ê"–h„Ô-òã1oÌö¹Ãlc$·8Pw\k Í_«®ºŽãPék.•ä€À `ökCZ`”8µK ¾—…×H«¥ªžªim’FÀöGƒ¤{Ý ;˜ƒƒ»ñ¶Ê]›­wøì¨uGîÑ?›ÖÊHÙ‘‚Âý½F\wSÏ@µÍК~9XÆ9¶Ê`ZÏ”݇²÷NNùôÊ‹ŸhÍk£á¾™¡åšôf÷Ë ‘£ÿ®ü:×Ïo㎇ž”»Ì}îžGîÊï-ÿð½Ëhm錅TDDDDDDDDNýté„DDDDDDDDDDDV'ôõnkh¯[nqS¶i99âh»™½]œײƶ¾ êÛ­ÆëUxÔìÓöùî"²’–×tîo”ÖbI ø:„€wæ8 ;iÚ­v*lõóÜ$¥ºªë&-æv;œn¾ôNØT;î¸*xüÖµºÖ‡DÆKh­06¦VçñÔJÝœºÌßâwª‹´Üóφ³œµ½;­˜xtÑôZSƒšrƒÈaª©·¶ZÇr’$t¥Ò¸îÙŽô qóµÆ*ÝKÃ'~¹4:ilîÏÝê‘ ëÏfþqøTQ¶^õn‰ÔÏdS]lšI–?Ž ˜[Ô9§ß;B”(ñjð`·qØga!¦çAÜ÷’Ú¥›íøJ”ZKSiýWjeÓN^(î´nõ´Òr“¿+‡V»Õ®Žáz¯Á'ø(·ã›…²^-´¼@±P¾ZúV˜.†],!®s$8îÒ9s¾yš: s¸p9‘Ll²O ow)mo²[jòß#îÚr¡Ãã©c]8é,!ج‘Æ?h­…pŸXPëÎZ5EÌUÀß<7nIš1#qììýÔH#8þ*Ó㟨Õ\/ÔZzšº*+¨$ˆNö5›d“ñ²ƒ *à¤ñ§Äó†‡GU Hó=Ñ8ûn‚Ø«N ùœôUÎs‚}÷\KCÚFø=sÝGËnš·éÏúŽ÷+ë"’®Õâ’8äp…Ñ<ŠzÐæÄC„r÷ùgϲE ô‚Xãš #,sÐæ½¤n;Gæ¬WÁ.êXª~ý¢­Ï<„TÒS$g0#™¥˜Ã9aÝIà¿HT¾Il²÷lwû8ê#Ž¡Øägá';wÛ¤~ÕžøÃ§é]£«.TÞice·=•.xÆÎòãsžÌl±ÕÛNjë=«nšvóo¦mK©Ý5M‘±“4 ÆK†€#eçÅ[Y .†i$ã â_'Ú!­ ¤ÒÖ=I1uó •cŒØÃ»üOæ#ÿv¡Î–Ó×½S|§²iëeMÊãPîXà™q÷=€ÉÀʼ¸ÃÂû— ê­Ô÷ZçO_Qdk¡€y •¥ÞtbBü¸³0`òï1Ý9>)ïáÉöme–Ã`’ëg‰­‘„’_HàŸÅ°nNÛ²Úè–2×wô(Çc®pp##p¨@=>hâz ·XËÅ4…¾µ±?ùµÃósBÕÛ¢>1žn›­¸pÚæë×tÝä¹ÅÕöšJ¬»¯ë!c²}÷^ëœD…¤öØ­wxà­>#®ðGGGsë“ÿ²)‹áb6GáçE67ó7ôhq8î^âGÐ’>‹'œì3üÞêý¡ù|m²LÀæ>ÌsŸ>s{œ(Ùt¨2<7˜;n½p¾jxù¦¿-qÑm7ÃÖ¤ƒQðOIÝ£¦Áöñ š Câ&'cææŒm•‘c@é—½Œ#˜€OOuÅÇ#âà­nøÁ€RøŽÖ1·8sé¦ö©!?Ï+ sæC““ê;­ø;…¿èSN3“Ssò‘øH{ÁòÏÕg5óÖ45œã#@=T{ñGUGa¸ZuA0ÕAn{&®·¼´‡ƒ˜˜â×~˼ÒÒFH<»n­ž$øEÑú†‰÷>ܤÓÕò0K%KÌôO. Ýñúü@ÙQ?‹ú?WhmMúUÚd·Ê ž›Êܺ'œ3èr:ËÃÒ£ï7ûm6>)k `Û=dhéÝlqºJm©¤×›™žÕMc²6•àœZÓ%K°> O1 n2À8vÃ)Ûèéè(¡£¤‹Ê‚r1¹íê}IêORwQíVèc÷và6°‰vÏû?‡×ßÑ^ŸgÕD³ðnë ¤&8¯“r7—¹Ž2wù¬ãëœñúròyEÒyyè·ç•€iÅ‚püÖË<\in´À¤ˆÅ÷FMK0À¬d®æ;zç?U˜˜ìŽF6>¨çmù(#ö‡]Lµäzºå¢%s"¶ß9®ÖFìÖC1ÉžÎù t[½T®Î’ñõ¬ÕiÍ=,žyhgl1·«ßÈîV™ÂÖï†ùnãÎ’ukf§{nÍd¬ ÁkÉ- ƒ¸ÁØ…³‘Æå…Q¾ÄåÀÜt%G?3^4¬:?‰znSOq³\ŸG$»¹†f’c{OVÎSýï’É|⯈:6žíA¥“âmE™Îidvg-ÜŸCì²#` àt\sƒ€“«t¾Õ¶ïÑÚ’ÑKu£Ï7“PÞfç×øŽu‡‡ê(cšz1lŒ{ä¶²8ß Ï).iÀ=1²Æú§Á––žÐïèæ¬»ÑÜš\æÉZÆO ™$†–°4´tùŠ;q€¼LÑSb«OÔ]©KK›Wi‚Yâ$aÙ`sNÙÜzz¬m,µ• ,0áñÈÒ×4ûƒ¸^•¿Q\­7Ö[ëj(êŒKO+£~Ç÷šAú,©¤ÜØä~«,éµEÆ=Q¤©eo7õÖÊ“<¹2Ïœ,¯fñ3ÂJúv:¦ó_k™øýM]¶gŸWD×°¼¯;8y¨åZu¥Š¢~\ù_|k$Ç÷‡>Ы\5ZwHj(&k£§¨©¢ýXæ:VÇ#~ vC!ï• D•%ØÈæYÃÃ'«ô—,q>»’ÕW8¤«dŽÌmŠWçoЇrœû+;ÄÖª§Ö\sÕÊ,ýÌÕ6–ŸõœáÌ„8Gyeؽߪ•^¸_báÅÇP\lÑ]®— G-T|®}"Ñ–¸i{äß¿(ô ðñ¡.º¿IÜ-PÛ%e3Ùs³M+,F®!‘Úò#!à¾?ÖeŸ¬$ƒ… ø%«ï\>âTu.5tU´…ôõÏ[&ΊF»Á`ö=ÖËô§¶ë-%oÔv—óSVÄÊN]¿iŽ÷eî/’XÀxwBÂKwõÿ5٠þó…ÝÛ ‰Évç|,mâ~6Éáÿ[Fdk?óTÉ8 \ajèãâuÜ…µ¾<»‚šá­Óvý€ÇþŒÅuL&ûÜN?(‚ÒÂ_°AÎÍk#ÄÍÛôÇ5½k¹±ÖZ]ÿö°ÿö5°ÎÑ hŠ?(ÄøìFF8nט]Ÿ|’¯"â Î3óê¨ýw>ŠøåÕº3Qñ ‚ÂÙ+.ÖÊg[ëk|þjr1 »üMsÝ—äo‘²£@’+I¨Êõ-±6º¶]3 kÞ¥yÚ6—]ôÜ­•p„Ñp¦Çr·Eªkï”u²Ç,ÎÆ²:|d±­Î ‹÷Ü畾ë'y’FÍϾÙ;¯œ5ï”É!Éé¹ü+éw7/.7ÆË]>3âKWlâXÚ&Ž˜ÿ¡ÄÍ`©Ž¥Àí‚¶=à¦G¿zj9‹|È¡Ÿ”Ü5ò“ïÕgUÕU!ÙPßí­¥ˆX-ôñÊÚÚ¨TÒàyf8IkZRs!'û­ë¤Ï n¥øy`¸Æº{|<à€àÀoeþÑöµðpÿpA>SŸzOûTB£’¦‚® úY]Ôò6XäaÃ˜æ» p@*Xp7Œ— º§Rú;n¨2µ­mV"¢»c•¦)€EPCpÙ¶à8wRãGj»f§¤•ô¢jZÊwë(*[ÉQI <¥oÌ–‘‚ þу›Ž‰Ǜˬôõßü•ÕöwgýjA÷ˆœÁ{$BæŒùLÉ>ÎÛ"°ŸÚöž<± ä¶ËL·~iù…è@/ßÎëem[ü;iƒÜçUùÕo%˜ÃŸ+²=Àef&þtÇ \³œ·æµwâ¢÷-ûšÎ®W—y7'QÇ茸OÌ« JÒÁY©mtµQ‰`ž²(äg9o3\ðÒ27«:p÷\jžq&¾ÛWÞ]-Q‚åoyåeLmq s ‡q»_Üc²zXØõΘ¥Ôz~¨ÍG>ZXæáðÈ?oáÃçƒÔdTñ÷ãã¼²:GÈÙlÔ® v1òŽQí–“ó%O}7;ª¬ê—g3RE!æÎw`=÷^‰è¢oÚ? Ž”Ñõ®!•õ æý‘Í8>ÿð*<ø_«u4DáÍi7&ÄI;~µŽŒŸÆ¶pѶ2ªˆˆˆˆˆˆŠƒo’ªvCº 興ˆˆˆˆˆˆˆˆˆˆˆ‰¾=ÑýVñ…¯F‹àýu-1‰×ð}²^C£dŒw™ 9ý7#äµÔÐ^î\| tÁlÂÆ‰:#ƒ¶š9y¾ýq¤ªù£äs$•£àÁ'ð´1¹ï‚vÊË k€>ª»`ŒÿLaÁ®P‚0'¦Âjà–╾[­% ´¶¨dduÂ?,…¹š6=¯ æk²šOv¨IÄžë>]Gê»\”Ñ8òSÕÂâúZœo–IAžR‡paà׊MC¦( µjêwê+k ýy”¶¶&ä`8ò¼pwü@+¿Ä~¥áÇxVnZvý>¦ÓÌ}u={<™å‡΀gáqåÀ4».`®T6 -”·ÓºÉœ$¼ÏMr¶šV .¶šØîÖ¬¿—Ì|xt´¤úJÆàm­JØÎƒÔ¶í]¤-šš×+]Op§l¤“ˆø˜}ÓGl/{mˆÀßæµŸ¥`‚Åâ–žŽ¡³¹´:¾ZpÖžW=Í©sZ\‘ž¿U³ç|í¿ª©Ç¾þ‰œ·#'Ùc¯¶&j>kqò=–¹ják\ã$®`o’èÀÛÕCO Úúm!Æ+M#æpµ_§eS¸.rÂñèD…€ŸBVÃ\_‰zލLœ.C';í…ËqÛoELïŒôTÀÉ?ä˜Ç}•›®¸[Ãío,³j'm¸TËÕf>Ið$f1Ûu¸³àæ!K5Æ÷š—Ê2áj¹¹®óç–9Æ9{»”YÕš?SéZÙiu Žál|S:"g„†œ5ÿ…Ûo±+ÈHÆu9Î3ê«dñ´aÇ#ù®Ãu”E#K¹²AÜuÊäíGu}¨Ð>²sGæ‰çËkÀ Þ™Á#?5á¯PTˆiÙ+ óp1Øå^h­wŽ;é*+ë5$÷&±ã-‘û–4BîUµ@€:Gæ–¸Äë\^14œ=â„·(c.§¿\j®tÕ.9sšÿ)ωǛŽ“F0×·/’#È^ 8·I§®ÓékõSi­g¶ZY³)êN‡ÙkÆ=hõʚƦ.g°8—³«q…òI#œAÈë“·oüWÓKŒ{.ãœcù*ˆØ¬sâb–Z¾ëh! sÿEHü™‡à¯XyålŸÍm?€s²~hG°ì4õ 7õl iþ «ØîZ;7ÊÕ/Ý5ÛŠzªlÉY~¬qÈÀæ}Kÿ涯M4´ñRÓF#‚¶8ãoF´ >vÅî°¯Š¾/Û¸{ îëulSj‹„¦¤‚'ŽzPögî†Ú:—r팑™ÂÇY<>Õñ?SÂçMxšžOÓgÊ—™õ2ãÕ‘½­÷²w!aÛ€gÞ]‡ c²á…‘¼v--[cá…K*¸W¥%}DUm–Ζ'ó1Îò›’íUÀ~-˳m‚«sžf޽0» Ho/R{ú-qx¹t‡ÄN³óCCþñOîŠX1ü0°¥Y"­äîAÝl7ÀõE/ é]6Ì’&>&sd48çêB.º  d>ÑŠG›~ˆ®lcËi¸R½Ýòñ›ôø³‡JÈ®|Ó•PJ×‡Ò´Ëø^ZÒ[ôÈúå`´‰§ÿ¹ðn]ðÜÇËzU­’ŠYਗ਼çl²GC(ø$ÀòŸcÓê§ß‰?ÔBŠMS¤b¦¶ê¶Â £ 6 ˆ!ìÙ;üƒ¶Áw‚\T¸[5%”×Õu¶[½­ÿt¦¯¨g$±’áþ­YÍ»  `;ÌÛ Õñûw‚ëoÒÍò䂲‚º²šx¤f Œ,‘®ý¨ÞÜG¾pAóû; ¸a¨šÖ†Ïúl™f2Ó |»÷èvíõXíµ¾›Œ‹¨Ç—]e Ž9dø9ª7P±ò<ÇòÆäãrpÛtž¥ÒZ*˦¨£s ¶ÑÇNÌrÉ'Ôœ•ï€ÎÁp‘Ì`28´1 ¹Ç=ß+QZÖ½÷]]zºJþgÕÜgÄožy\ãü×±Á;;¯œ[ÒVòÃSw§á¼Ü­*dxèáÔW] 8‡n­¸Ù°ÊçsãͤqÆHÇÄXâÜl\±w½u%Ÿ‰ÏÒUÑ×øœ#iqÃj#i{HþóC‡ä¼_’ 8æYÊG—b¦iךSéî§®cY`·4HÙ¥ˆ·`ï€n 3é…~Ñ&·ý Y ÀÿçC¦ø4µ*"ð/˜q{F¾0îf_è9ú»>KjU[ÜæÈ:}—b""""oí„DDDDDDDDDDDDDDDECÐáTû-tøÄÕuŒ÷ŠYj!–šÐ[AMå8–´7wgû\Ïv{l­ßÚ.=yÄèëØÓæR‰üÞr c©Ï{{y~cpvÃS€¶cZÖ€@僲íh8Ü»*àg=Ðý6긖{ /3RX­’Ó=žým¦¸ÐN9d§¨Œ9‡lgØîw*5ñgŠäùî|:» [Ï0¶V—IF㑳^2ø‡S¿8ÎÀÒ7ëŽ ñoG>°WiK„ôtÙæ­¡i¨§s1žp[¾1êºÅ à¨|rµñH×´‚>…}v›µeº®ÊY]ôò6XÞÓ‚×G× DpsÄÄú–÷Jtm%ʰWCOk©™O;š1d„‡×rìæÇ]²4>2øçðú à2yo‡åþ¯ì£öºÖ—þ;?ˆti(i¤¹QÜH&çå|b?3ÀÝÅ„ôêT´µx¶áÕDÆ*ëV ¡vN\b†Võ8ü2svýÕ~iÞ9ð®ù=.°£€äJÖº˜÷ÀYšhª dôò2hdhs$cƒšàwÔ{®Où·ªÕÿô»ôïö !%vÚÿ6Ý—’æÂâ$€‡{5Àgû>«c|-ÕTÚÛ‡ÖMOJö;ïÔ¬’V‚> q‰ôw2¹Èÿ¾Ÿ5È¡Âz’À*„vÉùªàã|/ž¶Žš²! e,QsLÀðèpGU‰5O†ž_«¥¬~š’Ý<Îy·ÕÉ 2øŒAžøoñÝa>+x>¹@ù+øyuо±¶Ûƒ„u k\[(øIv`À=|Öü)×ú^7ÉuÒšX|°ù%4®’6‚{¹™p±ù‰ÍŒ¼[ÛÝu.eù„3}•žü éj.6Áy•€ÑéêwÖÈI;Ê~š=ùœ]þ¶&ɉ OeÞ¬>7ðêÏÄ%–æ[íç4u¾C&4’>7Gær?ápÃÎÛžf¹k^ÝbRG_h«–‚¶ ©*éet3Á+K$‰ã<Ìp;µÀìAÜAÜ)kÂ6Š;“OëêÅ\Y¦’ïžv± -Ò7<ÏÎáÄcu$ôßiYnº[«˜ñ–ÉKR׵îÃ9vÂ÷©k¨È,p9øæ,ó[>]WÚ -Îç#9¾Fp:n­3Æfá±gÅñY+0Çû-QÇ––c¸ g~¼÷x|Ñ&¥’G ¶€w1äw!ùàØ,š1‘ž Ž¡kTÁ|MÞ)#„ky£ç -ûù¾Ã²Øoø‰£t ?Þ5Eöž‰ÎÉŽ¹’y»Aw×¢‰œdñ_¨o¨¶è¸Îž¶œ´U¸‡V˃±æ– vØdíø»+{ƒœÖœW¸C~Õ®²iÉ_5]F~÷Z3¸…¯Éß§;Ærº) âÆËgÓ¾®**LQÚÿGÁB$w˜è¹jbo71ß<œÃ?Ú+]“žiþl—J¤MçpŒ`$>d­´h %6—Ð:wM@îfÛ­ÐS—ƒÏÌZÁ—g¦ç'Ó}‚¸Ø`á¾€ár'' ÍskÚà%Ç·º×W Y¡ñ+©žöáµ-¡•„­û¬Lþl+TdÌìîI[ ðƒÏ­΄°M,…äþ':0á·÷KŠÎ‹®¤â#îT\ûCœñÃ3-uéÎ/ÇB)äÀúäþJãð é¿Ð$~sƒ›ú^¨EŽ¡ƒ”`õ=ûFÿ¬áðü7>¿:U 1£{̼€³>Yøö=½öÙmØ|X'›ð‚s×§uŠÏM(Ê{¡ÖÕ4˜ž²fÛèçpÂÁÏ'/|–ç±äo¢–,àŒc ‘B@\^ðƽÍc@É$àê£üSÜ-WJ«v˜áõu\-ðS\ë(†£•å¡ñ±ŒøØà2ߌ‘Ñc;§¼D\g«¯·Ûî”T´ÉY&([’~?5x ‹·Õe¾ø ²jÿ&Ñ­›Mc¼Ï(Ž Šv¸RL\pÑñÝÐ|DŽù‹Æ{}—9¯Ûm·ÂÅž#¸Gm⮃ª·Ç=> ¥ÍM®³Ëk]çŸÕ=ØÏ#úCÊíù@ZθQMG[=T.§©‚gÃ4NëÚHsOÈŒ/_@Ád©Ô0Rj#(*øLѽÀÁ!n&ÝC\A#¸Swü4àf§¢2ÉêzKõ$‚ ¾ª²¢¥´ò\×r½ø xi#-ìGb³µ>…ÑTÖ£j¦Ò6((\ÞSO¾&°jòÛ¾ÓÒEH8y¥ä‰¬7Ì´Ã#°3œÒãó9>¥x×Þpzò\ê½jîêh9èÏÿ™s%|é-;eÒš~’ç¨" ¶Ò02\àÐ=K‰.>¤’Or½B3¾?5 ~Ðè.öMua ©ŒÛ' ˆ‡ºF‡HÇ9ùÁøC€ùw]x¡²é?ome-ÂCQi’C€ÚÛ‡?ÛîêBš<¡ÄͶàg\±Ýº}U1¿RB*cÙ âñ€0?‚ë‘›dž›ã×bCûC­RÛ£ôý]-ŠÛI®¹»ýn vÇ$”ñÄîv¸ñi#;ú(TŠ\}œV;‘¾j­Kø-¤ŽƒwæNç¶M‡öZÓŸïu5ÚÑ˾H÷+èa%€ŸEI›ÏÙ€yšFë_^6ø}S¦8¥&±¦}«S8ÌhjšÐ$ŒúçñƒîGe*æ‘Îkó‚P¯Èô¬6z M’ó ¶H™S e260áÌ×<ÆIØðpGª·ïÚÓQ^ 1¸Þ®5N§ t•.Έsž»¯rÍÅjkE¿Yj v1 r2ã(nÀÎ0ébñMÅûlÌóu$wš[ˆ«hax8ë—5­yÛµüÖR¶ø¸¦Ôºû`ÕÚ}–úêË]E® ]ÚóT~•â•óUÚÙ5¬½Mq€sæH‹¦2ˆw}–KÐüãîN¼UÒÔÛi*d/šç{‘ì2eÙ%­9‘ç©`ú…,¸;áË@ðùÑWÔÀu5õ˜wé „Mä‰Þ°Ã»YÓ9%μ³>ç¨q'Ýao,‹ÿ&½Lé¹›-áßzˆoôÊÖÇeöY(_t¼Ñ["8’®¢8·w¸45¶1mm£O[í1M=DVêfQ¶Z‰9åxŒró8÷'‹Õa#p9½¿‚«ƒšÊÖý:öÝriÎÀ¶ûakãÆ½oÞ|G^â êT´PŸí%²ö@°Xh›|yìz­’øM‰Žá…‚a;'{(!Ïl|¹&ò !¹ï…š—M_àõQOí¬k4Æ‹·–éî3ƒÍ°ÄF=O˜7íƒê¯g›€0ÒÒ.µc››9ø‡nßö{«í¢ª}&‚¸¶ºŽ «à–P>>FÀæ4û‘‡ü%C—; s›³›ñ ½BÛµž©õÖº:Ùc }EÄ­”·ä2¹tWÐíœbùZ âͲ;õe’òÁEy«†ã£ÎåþW„¦y^!´ƒœ#$Õ<ü¼OÜlwô[1cs¾vú¯/Ti}?©ìóÚ/öŠK å¦H'g3\[øOÌv*øë¢¢´ñ’錯5Z~¿2çË{$]ó‘ÉÛmÎ~sw‚9“‚Ú¸¸“§-ä’wÏÝ£ëî®÷‡œ¨£ö‹HNœÑüX}}Sˆ6‰£üÿšœ†9xÇ¢ØùÛ7Ú7» Ùšà6õÆ>«há7Ê""*¡UÊa|¢vÝ>›¢""""! ŒÎ-UêÝSpÒRÅúÏZca„Ÿõ‰XsŸ¾þpݶÉõX/FØê5>¯¶iÚ&¼Ïu®Š„7˜³ÌpiwÈ]ŸmÖ×ljª U²AMmcÀ8dã¹ÀÊõ;.29¬cž÷†µ£.$àêT ãwµ¾µâÜ–~Þ/m´Ò¸ÒÛéìòɕޯdܘ.ß dà5 àâr´¯é´°~¬ÔWj:»…ŽÏEYtvÔ;Oç’çDŒï͓ЀMŸÄȯ<>´Ú¡Õ¼fÖr꩹GjƒhØþf·œ±Ù{¢‡HH'|7²±´?8“©x¿¢â¼êº§S2åM Ðóˆ)æ…ÏΑ‘†µÎ-$‚Aß ÿñSáΚÁCY¯8qD"·S±ó]­ ÉlM.šôh.gF‘¶Ã³Ã߉É-”®°ñ zŠúcs¹Et±1­ü`‚öì0ìns”¾´Ü(®öÊkºª:ª¸›,ÆrÙáWÐ~SÙk»Æ—+´‡kuTò¾Ë¨æud¹c*“,$övApŽÛ¡Æ±ý:g¢˜þnÕ“ë{¥§Ÿœ¾™¶=ExÇ–d¡©q=ËctGµ OYfOÖc .kØâ=NØYP|öUB©ŽáTmÝ;n©ù§eÂ@P¡—ÚIVÃS¡©9°èâ¸Læg÷Zqþ(p«‚¶àÍQhàGߪYúbí=d$ömlpÍÑ<åH‡†ììuô\ã9nÝ—%…ü^éiuGu¶ÜkîVó Ê’&îæÞ<Ç4w>Qc¾vß [óòœ9­FÝŠ‘žxµŽÕÓYoÕ†Çv g˜çâ:iš0ÙÁ$Â:ƒ¾ÍÔºBjW½×ý§î2¼i§ Ò±³ñÌ6=AV O†>Ì÷?úè\ì“å]*ÚÜŸAæ`+6éà÷„m‚z§_uMº5Ò9澟ʉ¾¤¾Â©ù•xåÃÍ £kKt_àÔŒæse¦4®BF<Ö-àäôÆ1ÐõX¤8ƒ•™øs¤8ÕÄ]#l³iÛ}Ú£MSó¶•õ{;‹Ëyˆk9vp 쳎†ðm_ÚçYI0Ø;4>[z÷š@Iu€ú¨­–¸¸øËu®/&ÜÍXØ)#Ëù!¬Çs†ãs¹[KyøÎwø¶  D9Ïp°·ˆ‹ü4ê‰Ú)(¹ëþ·ôþÒÖÉÆØú¯s‡€§Ac¤¥i²ÖÝúÖìÙš òw˜î¿2»™»ÆOºäF2zw)6ZÔñY-Ãúây¹yÛutoøckcißÙbj“þ²ç5²o ±GG )è#xs`ýVÎÎícã²Ík¦¯ðšˆ_h‹d’myØãŽà ÿd¹æŸ ó†ùz¬‡àNÑp™ÏvD·J·ºaá¿ü’¼´EÀp‚ÃÞGj(ÜÑŽ SOŸæ¥‘œ÷a'–Úôlôõ:NÍUFÿ2žku<‘?÷˜ciiü°½Ž¥Ù+xêƒÌðív_*²•çoý¨~ÝV;ðGWCOÃg•¡“Sk”g.íŒ4†Ž™Ç\êÐûGyOtÄA„ZãƒØÎïùç}œí?é¢ðá#r€´’àj)úØ ~”ø c^˘ ‹ƒIéÝj¯u"»úÞ¤»,v¡­ ù œð]þ®Tž>i‰«éc“Í%$FB1 ’0†"Ü© ›k?uµ½Îp{šá,€tvàÑœŒ¼íšìÛEϯÉGo|R~‰áû4­¢­±ÞµÇ–»ã‚ =û´¸ÆŸïãv¯Â΃ƒDðÖ—QWÚC5=ûýo™à—ÓS`ˆ# ÎFd;gãèÉzûˆ´š?‡Uú‡P[~ôÊXùq’jíƒvfs»º þK]ÅvÿT“NLt•£,iÈîøÉsOe;°ÜÜ{«G‹ºÛÄ^]tÏ q‡SNw4õ Þ9ê0쎠‘Э]ê» ËMß«ìWjgÓ\­õ‚©‡ sNÄm¸#à‚²?µS4íÒ…Yt–ÒÖRÜâiÁòD­{$õˇîû•±])y¥¼Q ªJ–NÇæ~bÐàAôsK\=œÓÝ{‹„êæ‹ù®1ɶÔu\ÁÁdpÆûl°¯ŠŽ )é¨+íD¦Ö×}ÉòìʘÎîç¶Ní'£½%C ®5‚ÓºãDÍöÊê†ÂæóÈèg·Öò¶>ª\ÓÉ/“#œqð†¿výUô26ÇñF¸P¨6UQ ¡ø]RìsðýTûDë›?¬4l‘ûµ¤óŒµÎžOOf•r¶3à^íMsðïh£„æKU]U$ã9ÃÝ3¦/†f~EgƒrNçaÕX^CN{×g0ÆWÎãúÎ~ŽkwÅ¿ £á¿gŠÛ b±^A®·ÆÆá°‚ïÖBìׇEOPØAä7 û…18â®ÅA¤i¬úþK•Em1tqÖà  A­ähÁæŒã|nrVVѼ³kJŠÚ}¢µ…ì@“<4ml8õ‘Î Ô“ì©Ä]ľ'ðþk=öñlÒsTV5ÂŽÙ$“1´ü§,©~13³‚ÐÆú’±—|5ðóBpsTê©î÷û½²GÁ=UAŠ(åØ5ÍŽ>]ìâá¹öÄ*lkÇ0ÊØ§Ûµ-ÏÃÅ®†&8>Ï]YE?69\÷Jgc·,ì÷g(Ë<ÖàÎV¦´ÕlÒêËuÎR];®Ô8ãñ8Ìvù­´;g8ç¹UÇa“ƒóBAÉÛ =øüžXx$qÔ˜™=Þ•’3#õ£w/OVµßáZò^æ›îúçOÎ+¢ºS¿›Ó´ÿ’ÛIo#Þ7?ñ+œ[È7ÇÕvFFzú®#ú̹z-oø®”¾"5˜„[ ˆõ.§‰ÄþdŸªÃ•`ýåÛïÿ%³ 1M†´ÔÔ=Ž}\g9¿´]gùåeõÕQ• Œ(ö‡TùsiZ7‚O—,ŒÏA¾~{µeoQ6?vVìéê+¤^¿z•¿É¡YŸh„o&Óó|,Ô Ûíšy¾›áAǸA·eËmÑ;áy÷«5²ó pÜéRÈÜ\Ðâv$žF Û¢ð-ZF{¨¡ªÓ÷ )¬s4µ–¹|g”½ñÊlj¯å§r  WzvÀÙQÇ“üCûAµ•´Ö]IYÏYOPêºø@?«W¸òµ­rI alëÃöŽf„á‡Oƒ)™°}æq39\ÉeøÞÒ;`¸¢È]×Íx¸ÒÚ­Uw:ç†RÑÀú‰Ÿû¬cKœ µñk¸SqsŒšŸŠÚÕµoÑZi‚º¢»™ÆìRÑ4€^ì’ÇèHV·¼@ñ]Þ&š µMŠØd†Žß)‹tç{pçü‰åØ*¼#q2·_ðÔÒÝY-MâÊøíÕ“NKÛ[qîqÝÏÃ^’IÀwí,âcÃUN‚¥ªÕº6y+ô¼,kªa¨“š¦ÅØ;†€ø÷=FwÎ9‡áNšJ®;é¸3bóÄòŒmìNÛ¬‡Ç· ¶4Ž‹ŽÇApŠvÜA&z‡Á(‘…›Ö × ‰<£qÑ_!î6Pÿ޼#×oWÝk©x}Yo²I'™¶1Õt±78{–Œþø¶ëSÖIÎkÜ2×ã•ûzއºÈš‹œAÒîˆÙuuÚ Àe,•žœ7o„C!,nÀ|˜>¼APñ±šjý TZ°ó±ñmanK¹GV8 RO|Ë>"*`ú¡8ÆÈp¸<ü<Í=:-tøñÔ·®9ÉEG(–;E tOpßõœï‘Ã>ÆL}\˜' ôS{ì讌h½UA‡¶XnHçÇÄZ÷ÌGó Y;!¸ßcß~ê§Ä©¹n9wý‘éõXëŒ.nØô\Îsƒ·Íq .vÃou®oü¯ñ¬Ü}æ›%§lýÒýsüV¬ë9ø7ù-’øo’¢Néacm”Áÿ$0BZ@Æ œž½:¬ÎŠ*ý¢Tñ+¦jËGšÚ©cïÊZ À,™á ð㣄m`.¦•îån.žBr=wëÝ[<) üž\–ýÚëK)¡É,ÿå(Æ)Þ%§ß²Ú‡Ë“®üÑw &lÒ>ËLÉÞîcŸ|´çß*üo.oB3ó÷XƒÆ7ÿ‹¦§o67¤ßª%¼,Š‹­>¸ÒTäº{ņ¶žssºšPhêrÆ.^:§mGˆk„aÅÞE¶’"3øIiv?âþ+5ý4­n€Õ5‡ËxlYþä ?üµ)9@ùªàؾ[½C(­•U’c’žÊâ{´ŸòZ…žwJçÌÚ=ÏÓ™ÄÿšÊ^'–ŸÄ.å-øê䌗o±ŠE²öôÈþ=V>âež†ív¦uÊ­­†: ¦º›˜‚ö;•¯8~æÿAoô²SqºïFöÉæSÐ[`pâ%´0ï¶Ý};‚§¯K]Àí ‡’?£´ƒßîìÈWÇlt :ý 9üµLÞNH5/~OcMPݽwpPzÏ–K Œ8xž>\zóŒ-µŒàgï…SꈨNꪈˆ…PUQ :üÊ Àw]Îê½s²ƒ…Fl.Hˆˆˆ›u舋ÏÔWz†á|¹ËåPÛ©¤ª¨xå.q÷8eª®!êzÍ_¬.ºžãðU\êäíÎyÙ¬Í`kG÷VLðo 'ÕœcµÜg‚Sl°HÛLà–·ÌŒæstÉ“•ܽÚÇ-‹0‚6Î2ŽîNã‡Õa?º™úoÃõæ8¥tU‰bµÀqÿ¬%ÒlÄÉÓ|<»Tx6uºÏj ꉵ±Ó0·šy¤¬þ`É,§‚0Nä€7*#]m× MÂkuÖ†ª‚¶´õ0º)#$d5À±U°z]-ÂM;#Y(¨»^kŽr9¤n hØ`ƒ=\íðF2>£Ö¼<† ì÷ÝW¦¤eQ}E ÕÑ<¿›õrFöNHvFÝð¬+߇d¶ß.¼=°ImÔ¯³ÖSÛâ5’3<=­Çšòââq8Ë\jIø.Ô²Öé8_<±ˆoÏž—ÍkdäòäÿÙÿ*>WSÔ[k%¢¬ÐÔÓ¸Å,nêÇ‚ÉM¯³²öú­ªl¨É·Ü"¨dD~ÌÂþîŒü¾ªTyz¯›^¯ÒW=1y…²P\©Ý£»{µÃÝ®ÃܪÍGl­°ßn6Zæ½µVêÉ©¥æak¹˜îRqï€~ªç᦮ŸOjûV¤£tôU,|±Œ1ƒ!øl{÷[$áÕîŽù§èn4ké*é"ž5ÅÁÀ‚ù;ä‰ÎØê ¹×ýAØ…ÖÑ帴g ‡88s o²ì‰ù9™¤lBæÒàÎ}Õv2¾ Ý’Ï{¦ûµæÕArƒÿUWLÉ›ù8°gü5è‹ö“¹ÜôvŸ‚É©)àtÔ­·4Å K˜ :üL´’7‚:jõuÓº––çA$´W;uH’<‚×G#OG ˆé‚=2ÕôóúM¡¬:Ä!ý+m§­1ØóbkñôæÂö‘QÀËñë_ÓðÛ†—=GPá÷’ÑMAw–¥ù äqöiZ¸¾ÖÕ\nõ5µ³¾z™ä2K#Î\÷;rO¹%|* eL³Ž½¢mqosA‘ÑÑT³l’ek¿ë5MFr×u8^f©¿ZôÍŠª÷{®Š†‚•œÒÍ#°=šw°Ô%ã—Š]C¨ßQiѲO§í.%­š'òVL1ÕÏiÌ{ï†û¨æÉ«n•±QPÓÍSU;ù"†Ëä‘î;ˉ%K/ ¾'†¦Û¬ø ÆÂap¨¥°ÈÜž`Acª0zt&/wí5cO|0Añ0]­ klzÒÕÓ±Œ°N™btoÄ: ;¢Â-­qÉËwÛÕIïüG­W[¢nÕæ ¬m’ŒHpÆÕ´Î;6>¥úÍÇ’’q핊<^çÿ&ýbà?SS×õñú­mòuqÎAØ-”øT}4žô™¢¥‚[Fú­›+ÀcÎ{ùœàû‚¯sru£Dê ·?)¡µÕTsÓ’';?Áj÷„μNÒ&½Q=‡§Ïf>»­°ü{Ú=½Õ@o0°qprñ‘ܨÓö‰þ„ìîaI"ާýV§þÕÜ0â3•tpŽ€]8©¤í¤Ú«Í$N ÌÀVÖ—T=Î;?5ôSg.ÜWiÜ‘ÛÓ*ޱÝ#Æû­lø£{ψ-j÷8. ïÐCª‘ï¨.Ïâÿ5± Un«á-†O$°AK .ÁÏ,LËêMºl³Â(Óö€Ó2·†ÖÐÆ5s*\üË’AôÈÓ¿î¬× 9”ᆛÓñ?ÌVè£s³øœ[Ìâ>n%c¯tÞo‡ôŒ;ɨ¤ûPÀOäV»©ÜâHpo1Çð[ð_Ré¼8i–½Ži…õ‡;n`Ú©pG®Ç0VfÆù;¬'ãfI#ðñ|ä‘Ñ4ÔÒs†´žq÷†: àçÛÝFŸ´”Õ|d®žpã÷kq,ø€ndpˆäué!éõV‡‹Jß½øŒÖdCU ·$,n?0T‹û8ë#“‡Z¢ÞÐ<È.í•Äc8’žçv;ª”Øõ9*»gø+?×ZøA«ëÛËÍ –©Ã?û§óZª|lkÐryFøê²ïƒ»]ïºlÒÆÛ¤’º¡Ç´laú—õ[&`|cÙyZªÇO{µÍK#G3Ùɓз˜郅¼kÓˆüFÞËaš’‰åÞ§É ÏäÑù)£áÖS'ô;œÖ‚,t­HÀø+÷ŸªÁ¾7£¨©à%lTÔ¢¡¦²'Í·Å×È^݉È,é·6êR‡±Á­; sœcâó[j·môÄÈÙ”ܽ½°Ý}m‚"¸DDAÑ01œûª¢""""""""!TëÑUÊwTß=º*¢"wDOtN¨¢ï~ 6Û¥(ôHûÝÑ¢¹ví¦k¾»ûï“ ƒO{yŒž]ÀÇ~ßÍl¯Â·eᯠ©(.1^®.ûõÅ¥ :9ш‰çm×®VYn=û¦—€NÇÕC´P?ÊÒzNˆˆŠ‹C1³œ1Gæ37æ³êi©¸AÃþGÂú˜,Tn|<áÏh0µÃ˜u‚Ná}ú£Eh-{¨mWÍa¥h®— ytÓJç†òg˜2@,’òO©ÌañyÇÊ»½ö£Cè[ƒ¨ì´2†ÖVÑJæéÍ€Äl9n:8·;Œ(ŧsØØËœæç”uÇr¶ à‰U:Ó‡X®õ,–í§ sœ<ÉiýSˆî[‚Ìúçs¼ñ áö÷oâD²pÒÁYv±Ü¥&j8Œ††OÛdz2 kŽÀÆOÓáï„'ˆ²– ¸±Ol¹Th»Ô¡VŸ2ÞöÄIl ¸º<ŽÎ¸ÞÏwo5:ÆFóÆæG0# î>K‰å®##ðžë­À–á¯-9ÎFëªH¼Æà=ÍÎ ƒ~ãþý—(žìæ–`ãñg꾞FAËw·ý÷UiÉÁØú.YíÝbŽ6p/Cñ>7ÔÜ(ͶøWZ0(ÆpÞ’ ûïèB»8A§îO†–-3tª†ª¦ÕJ) Ñ4µ²1„µ‡pyr=r®´D\^{¹è ž"³Wñ!š~ßQÖ>çÂÇFIT_4“ßr}ªÁš¯KÝ,–+ö¾6EO…õl$ùž\nä.pÆÁÇp{…m.L=T û<[Ä}I.Zë $Ž£ãù©Á÷ Ë·ÝN@™tnæêì@z4|\qŽM}ª]h²ÏÿÍ»T®eoþ“ ÙÓŸlä7Û~¥[>x9YÅÝhYTçÓéËc™%Ρ§p9å…ŸÚw)ßöFO\°Í í¡iO¤ôͺÖD~[§Š g‘¿Û”åïú’½Šº^GÌç5Ûî¬>6pþ›‰\6¹i9ƒYRá÷›dçý…[òÝò9sý—;ºÖU|SRTKMU ¡ž'º9Xî¬{IB]Öš³O3e‰å®µÃ«\1¿ñ[ðËĆq#†ðÕÕI¯6Ç ;ƒòç`|Ô€wîæ»/ÿïvÖ‡cîMß”dþµ‹Z ‘ΓÀëó[)ð‘UOUáÏG>˜ÊDTóBñ3ùœ×²yá×ap;7•\žD{¬KW,ÐŒÇä¶)àþ&GÂKm;F÷ziwë—Ç’ïè³²(ëウ…œ9®Ž¡ÿ®m3|°Öó89Ò°;q†—`糘ݺã%p"õUqà®®­çž®¢ÏŸ¶ì0 ïë¿|«+ÆeÄÔxsÔMŽ)ƒMM$Rf'·—5¤ ŽÙöZüd =HÝOïÐÔEÀGJéŒrÜë‘¥ 0Iˆ“Ôs5ÛŽåòÎßßËxãd2x~¹y…Áí¯¤1ÝÞhû`•üKâÝÖÓ>9ª-’0Öç˜G3\àN6ê=ã…Å÷.0ëJóŒK}«åÁý‘3šßàФ—Ù±Q/›®iÚK òè$Æ6ÌãøüÉÛqŽAß±ù,[⺨SxyÖ²eÀšÀŸÇ#[þkZ䌟QÙf? ¸?ŽÖ K{ˆlži­o™ÊÙ kKˆ?¼2qÜ€¶<Á€zo¾Ë’€^:iüŽ>Ìñ±¨³RÊ0pN+ù*Yøcž)ø¢¤‰¤5¶¨ãw÷˜K]üAYs’ñ‡MO5‘‘½ÐRš–5ä5Í’&ó·>å§ÙäwZø¦pgÀHæÎ{ [[ÒWH¯ZfÛw§kÄ”±ÍsKHh=ëÕDDDC¸Â""""""""""""¦wÆ:ª¢&Ýp›"""""ùî5”Öú ŠúÉ› 54NšiÑŒhËœ}€­Zñ“[Õq_Þ5UQs[]6)"yɆ§Gó Á?Ú.õWŸƒN3]qrÛ„’ͧÃ+ê¶’L<ˆžÎsKˆÆíc‡u±¨Ë‰Áß=× >-ñŸLtNc‚2 ZûûBkÅ_à§iêV*x]¿Re–Oäñù,/E®¯qq‹YÏQ,µ´²SäG)‹ž(ZÆ6,·o#~Jrñ»Œ4|-ÒÖ»»)i¤Ôw⨤´L^íËÞç4`œ·¨$û(Ä-MQ¬µµßTÕÑÒQÔ\ê]Q$4¬-®w\IÉêIêI=×Šæ˜ØÇgx'cÛ§ùà²o‡¾,Ôp£W›óm‘\éå¥4U4îw+Ý>XîÇ#¸+a| ¿iýQ¡iïÚz±Õ”õ'â’Lù­pرùèàsŸÏ¡]Ú†¦ßEc®¬»LÈ(!òTJþŒ`'è ·ktǸ[qÔV?6Z»Cã• ´µñeò1Û`ŽC&ý2Á‚¼vڪߙèÜÖÅn¥«ª©%ü¼ð˜]ïñËDZ=–ÄÆ1ïòT8˜ãó]33™Í0-îùöZòñiÂøwÄ[e§1雨|Ô#9ó4,õy›ŸÙvyIX‚Ó\ú Œuòº9à‘²E#v,sH-p÷±_\\µëÍ7AC#Ku†D@ü&VÜßì¼|@vÇaœÂº¦8{G)ßö¶ÇÉQ¼„g˜÷ÝÊ?åÿ5Ç—˜¯¡QÀ;b2¸òør1Ùc†ñ“GÅÅ»— ®U¢‚íJø#§’aˆj_,MF×v~6=zNË%tÙ À誩ºÅ^'8› xkSUM./·&¾–ÔÐÃ!¤ôÃæ÷8Ô á6Œ¸q3‰Ö};æsjçó®8'ʧgÅ4Ž88$l À/{FwY¯í§¤¦¸h8©i„"::¸™Ë 5Ñ4möí‘ê¢: ŽB–_g-¯¿k+°‰Îd4TÔ¡øÎòHçcò?ø¬Ëã'S×é¾}òÕ$ÑTÇU ]#29C™#ø_ü–½ª*™œåm#ÃÏé¸cÂË^œlm°U]$ó*ÞÑæn:†à0e£¾VB_=k ŒåÁ Æç› àóÉLyƒOÅ.6À÷?%|qðÜi^$Wm¥òìú:Wymøb¬oõ­>œÀ‡Ž™<øèTx…¤e½AóYgÃG«8uÄZ:æ¶(«ù(+£‘ØÈÜ»=‹N>™õSCÅÔì§ð㬘À×Á C³œóMÞ¹ZÒŒ8éþK`>*QÀ‰ØÂþj{íToç;YööÇ×*ôñ[U÷?úÎ^~S%!ÈvçÌ•Œ?MÊ‚\§ŽzsÁ7ÊGs“Ò@q·åÿbÙñÉvÄþ"1…Ë›|àçäŽœãØ’0¢ßÚ1s‚é».æj»Óª™ýØ`{üfj‚„äõÊöt-Êk>µ±ÝiÉÑÜiça¬‘¤%¶§º¡å¹ žn˜Ø¯¢|$‚:.xߨùª¹»­søÈŽH‹ J\~G+¾Ë`þ ¥•Ü#†w4ÉNÆPØñüÂÏ”õ –&<ŽG»Ocè»”/ñùrx¾Ó[>ð@ž8å0X<É øšÌ|ªž˜À [)sDD7ôú—ãF2ÿ š 5Ž.i¥~GQŠ˜É'ø­tSJá'!' à•²oTqðí¤˜\g†j¢[Óõ³Èü}€ú,²ùguŠ|[ÐT\¼;ë zf>:hêHå;2Y+Ïû¬vê)øyoˆLo™fªh|_Gü³ôX[ŠÊÎ#êv»o€í¾DïR_ìÜ’H¯ÚÖŸÌhŽJ:IÓÔ¹¯”ô?˜SA²´ìÞÞ „;ìIÏl,7ãRa†ÝJ x2¾’1ËïS_lek‰üã-9ÎFvðAN'ñgLøüšJ·ÒG6#ƶùú-‰"„h„1ÅÄm1VÜsÉh‘Ž© ›#þ¹YãÁ¥k+|:é¶±Áæ˜ÔÁ&;Q!À…˜ps“¹ù,Uârž*¾j0ƒÉ§n -É%¢'=0@ÿ¾V¸c«”ÉœœàgcÿŠÙ÷««®ŽÙA–ª¡Ëœøg…Ó)?„ÆÖg¡Ý½{`µôWr ÆtdL'ö° ü‰#軬v{µöâËu’×]t­x%”ôtîšW× h$©7à’N iMGx¦žÓt¢³TÇÊÿ¾BæD*Xà9C]‹ƒŽ˜Ý|~3øÝ|¿_ê¸yi¸Çž‹ÜÅ.ßx¨âÎêZÀGBàsÑXþ_<úúåht¯ûU¦wÔDÌX&GÍÄ|œVJð+¦L|{ÔµŒøi,´2Å9?ÖÊÑ'§àkºÿá9€öÙTî0åB=в¸ÉÃûWtvš¸†²Gþ¶† Šš¥ òH=· ú‚BÖ¤´Üôýê®Ïw£’’ãC3 ª…ãißæPzA ãá^´¯ÒZŠ’ñE+ƒ {\öró€sŒ­•ðÛXÑëmC¨­îimDcÌh…øßlôöϱÜ=‘4žiŽ^^qß”UÚp@È$–Ê…Á£b;‚¹FZñͲÌïØ…ÝÛm…Ø7B*;ðïƒè(¨† ¹Èç>£“Ñc¯´žx$¸èˆf†:á#ÏCŸ»– 9ú…Qg ¼b 5<¶»¤¼ºjæîzÂØ’E#Xàɸ=HÈBö|RñºÉÄ 'ÙôÝ¢h)MH|Õµ2~¶¤°róÁ!ƒáÉ ã¢ñ<$p¶¯ˆšì×ÍGçZ,œ•y„¶9&'1Fãû¹Ä¡¸î¶RÎ`ÀAv7 `ªºjâŽhù%c^3œÃ¡ c è²xß ¨ø‘Ãk®”©lB¢xüë|ï`?wªfñ¼ÝÚHß•ÎÖ¯kéj(«§¥«ÐUÓJè§ŒõŽF9§ஈyüñ¾\z©3sâtÚÛÁ¾ Ó·V6k½†¢ß ˜çõ”®™¢) îàZænSܨÂ9›);L£u°ÏvÖQx{·UZÃ_p¬©.Ûõ„Iåsù 7ýÕ÷xÓ”3ÃŽ£hüRËKÎÙ>{ù(OáùåœuÐÏ‘îôí#2ßRðù‚Ú(8ÀÏÕrî2{ö(âß\¨göÎ_qÑ4ÛòÇK_ ù¹ðƒÿUCÅëè¸[Q¬l°=Á’á @ [hÎj&!§ qÇ ì§ÙÄg²ì$ääç粫¹vëœ(ãÊ“î|qާeÂÅÉ8ø‹+OðkTk¯#•¤g$­†ø2|gÃí†(Í93½íÛ?×<žÃºÍñ1Â,sŒáw4¼°´;~Ç* xûÏã¦òÃeŒ޹2<óåôR‡ÂñÿïzÑ??óczx¯“Å´^w‡-fѱm$nü¦aÿ%­6¸6³n„ô["ðg8›Ã~–Ís 5p»—±m\ØéÍeùÆœ;åœm•cñ¾×psZR¾Qb¬.p.1 ^Ã×¶2¡w‚*¸©¼EYâåoúå dLϨ‹Ÿo£ ÅžsOókÞh¶È#qGÌ©WöuÐÛ_¨µ]mE0’ãOKM÷YK±Î”IƒÔ†*i¡P·í£FÊ:¾Š©™Ç¤‘•’|T™x ö7õ7ª–È!ŽÍHRvÎq¿e†|a\â¶p3Q>P9êhÍ,”_,гcØò¹ß@V»Øyäpö[7ðó3¥àމtŒ’7þ‡§io)ÈnAù,†ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ*-hø³â×|d»TÓJ_k¶l·€àZæFâ ÆÇüÎ÷y}G…mý=ãe–†x˜ûe½âç^×0=®Š#p9=üŒ#÷K½Ì›’ ~3ò@Ho’¯6Aù*mœÔõZÎãŒ5:¯Än£¢·BÙª.ãCNÖôyçä¾ï©Ð—&ê4Ê»Ž—­sƒ¥ ç4S‚yây³Ý®8ÈÈ;·'/xrá¡¿xhÕZKVÒTYa¿Ö¶ªÎ*â-tR±Ä埉­s˜Æï‚Z Nâ?õþ€ÒÓj-I¶X¤ätqUy²`ÉÈ×| ·ÈpÙÁÜ1R•¿g …•z÷QjKµ½´â<þ#+Áû,ýJœÕTðÔÅåO{2b:¬^7ð¯QYxåsÒ–Šjëì÷ —Ôк8d¯qq±sNA#cŒíœ,ù៻AÁyÔzžß÷+”œ”ôÍdͶœ~²Gü$õscØ€pÓê²…]4mšã‰wÊcŠË_p§¥£<Üð5î“åÌÀœå§e p{*ãm‚¡?’âàøŽ>]”Kñݹkéãâ}¢&ºJHMx‚8œçÉwêçËFü âd7}”4i0¼r‘‚r=Ô‡ð“ŨôEÚ²Ûz¨{l®‡ÏpiÉ­ wüEþ¿ Ær§¤Ñ†ÓðWK9ºI³›±ÇOÍ%Ï`!ü¤vÇUÖøÞ>&¼FñûC¡ koZ_EqNm¨©.PA4~•‰‚HÚé$:=œXyŽI»ee}-©lz–•Ö+½ Ò•íl´³ãûÀnÓìz/Yä¶:÷Unp9±žøUDB¬.>ë˜øw»Σ}lFžÜÒ3ÏU ånàˆû4¨À^VñcŠñÚªä’J^+ïunq$Â$Ë›Ÿß‘Ç”wÜ»”­•RÓAKG 5,,†ž68¢kpÆŒØ:ûK?þ_äœâå¶{ªÿß衺*‚[¸ÙvÒDꪸiÚpédk>¤ãüÖØ83¡lÜ<áõ·OYéÙlM’ªQø§˜´s½Ç¾ òEÔã’H9\HÛlåqv@íí‚ —Žî»Nëè5žœ¶Ù¨Ž*K[ðÅZÁñØyø‡rZÿE‰ýfp} úEk¢£¨‚'¹±ÊÙ7âÀŒúà€WÍ\ì䃚ٷ†Z[ø¢iÚðþ{S*6 ÊçHFÝòò>ŠÐñÓ9‡ÃýS®ºR0ޏÅßü•¼4S:»z&XœYwŠlHì€ç>¿ùÀî¶k;Ñò¸½¿vZìˆ8þf0ãÊ\GrNÿÅ!8Æß8ê¡×Ú?NÑ.‡­n~8®¸ú`Àà?â*/cDÆéµŽ&ró¾ãNÖó ™7[b‡ªQÿµxÛ¿ÄW¡ø‡¡ ›ƒ³Ð•Ìc Øü±²„_h\LgôÝ@Á.²9ŽÜòÎïþÙEzáñ0“†ú…°oà,„‡>;•TY'v· †ü¾"~«=2~lœãºúÅ60áØ(-ãò•âíºº ü:Õ ̓ÞàC»‚ÒЩIárœÓø|Ñ1?œ“lkþ-Äç;òßeOðù­ƒ²èǨsqÝkÏ$óºØ'€ÊÆTpÆ#-æ®75Ãf“Èð¶Ì•žÝ‚íÇBUƹa‡ƒúÇΖÌÖ:ºxÌå{àsZÑêI=:•¼KæøÑ®»gUç”n?Ô§þ2±N±©ó5eâI9‰’¾¡Ç>¦W,ýöy£ãEÕ³LÖÈý;;b<Ïõˆ ±ê@nqó=”÷c@~Ar'>‹xàh>.åÇðÖÑïþ°ÀµåùšÑûJbýb’: j<ö}íòу ?”ÖÊC½1Ì÷¦ýB–”ò²hƒãpsrZïƒò]‡¢†ŸhÙõ¢ê!«>øÌj÷û=|öðr뀛}—Ê?ü(³þJH†Œ’AÊÁ¾7*¡¦à á³y5rSSÅ·?ÞéäÁÿ Oü–¾iË]!ÆØ|ò¶aá…óKÀMú†–¼ÛšíÎIÎåqϨÁY->ˆ¨V,ñO®ÿ <»\)j7ZæýÂߎ¢Y6.Ýg3³êÖ;™PìÊ6ú-ƒxÐ#J𡺖²Ë–¤pªÍø™J6„ˆeûöú)ìãd*gƒ×*vFFôÊ üCáïêµï (Küd²–¬µÓÓ_îNøq™!ÊÑŒe½”¿Ñ—hÅœK5}7!.™ÓU¶#Ôààã9ßsó_¢ã ì…î»ëû+^×rº*IY#]œ`¶ã·Eáj Ž”ãîƒfÉwšk Þ Ã-u+ì—®K_â†ËT@lW82êY~vîb=7øšwÉn2JÛr ¹[£¸Û«i«håo4SÓÊ$cǨpØýÓŒ•ñ¸9§¡ ’oß Øn ÿy%ßZÑh;sä’žÐÆÍPÆn$ªe­Û© ÀÇ\½H¿ ¼3‹†¼0££¨§k/·6®ï!ÝÆb2"ùF.Ûg˜÷YDAŒwP×í.“‡ÄoŸÒ[ÿû*†Èª½Í!mŽ¦í •´òKO:0ó ñÌ7àŒ…²ž q‹Hë9E$¢‚ñ~UE¢I¦„°`ò“1»g™£¡ä “†ÜHÒG'ˆm|§ÊMÀìתs}:‘܈ouË£ÉØïÑqpÉèï”PûFà'G霞FWÔ°Ž]²èšFÿá?÷ +Û€ÖÖÝøÕ£-ï`‘’Þ©yÚz‰ZçVÒDu™¥Ìødw(ÜH=®7AÜç+ë‹<ûŽëµÙÏ/ñÂäÒH#ll ÿÚ0“Š–yò,AîmÍ;ÿûUëœ`ê1ž¾Ë`^(ª(¼=Ûdц×Ü*ê K„{œly£w~˜Yæ>@Á—glóT|‚ˆ¸€N©Q³Æ 5·ïV‹¾¡§»6(›GQÞ ÷¸8ó Hç‘é…š¸¦îzKƒÚ_N^¾ …YṖr<’âÌ.q‘× ÊñJ@ðù­‡ÿÛÐi«Y©2crFAöSãÀ<œ¬sys-ú¥ý†1-ßsû¾ß.ç6Ùoö+èökí²àÉcó)ªY!s}pÒOe¼bZ¦¸x{ÔRÆd3[ÝkÙ ‘¡ùÏ`Ç8ýоëì6®ØÁÊÖè ê=7Ê¡n{ïØ®9ÇËä¸ Àéù­uq²k¦…ñS{½SLúZªk¿ß㑎Æ9@qÜ‚Zâ7ä±çu&¤»ë*øoÑÏK$ò™I(©%Í7çæÈlŽªÊx&&È\IsˆßØù©;àUõâ“VM C¼ªj«— qk|Ù<ñÍ~ˆÀ;í鼉ãW‡ÅmCG~¹U\-WHÚØj§¡äÿ[Œts4lé±7‡Ú3Oè]%G¥ôí#¡·Rs6Y sœâç9Îvä—}= ?ý¡z–[/ ¨tÕ0º‚´Ž:G$#êóúü1ë –ãn™¬¢¬ôõµðÐW‡¸ˆßO4cù‡ösÌ= A[6¬ûýUÓîä±–æ°™1ø¤9ü>Ã×ò^œ c!dl­`ÐÙv]s<€Þ§¿¢è’03ÜãªçÈ‘¸ôwU„±\©¯6Z½¹èë©ã¨Ç©cÚßàWÚW48aÍ{®,¬q-þj•4ðUSËOS sC+K$ŽF‡5í#v ¨çÆ :OPS>¿@4½ëÎó|·ºŠVòã“Õ|A§™ ãâ§#§Lë^$ðYMf¬Š¦†XgÍ]ª¤ŸºÖ78.ob:HÕ<øQ¯ô×4Ó/Zf´;”ÔÑÉ´Ô’c%o×b68Ø•yµÙŒUãë}CG¤ô…ßS\Kk£–®F´€ç†4»•¹Û™Ä=ÈZûá˜×¼WãZ¶†•ÑêH+î—‡GH÷HêšìóØËCzg[ósgoBàä· &ý¤P·ú¥&%œÌ¹ÌÑ“ñ`Ä3o„gè ê+ç—Í!§8‰Iw×ax³C Üô¦6¼9å‡ò»cƒëÝOΆÐPÒ¶=C¥[oŠ6ÒrXëiéØã¼Ì09˜o6ZGVqÔ=ãÍ}u‹RÛ©¨âu¾¶‘¹‘Ìg,ѽ Æè̘àgÿi¾ù ÖàçïÜ<ÔÑÞì5Ž@ö}æÎÄuQ:7ûž£9 f<:ÖV-y¤©u.žšSGQæJe…ã¬o=‰Á#\cØœ'ìáʇØv\2IPoǧ…ZÒëûu8í@<ŠÜ £­cvw·™s·xÞOUfx.sFÎÄ/ªÑ&&òÎH;à-”øQ¬Š¿ÃÆ–'É!†’Jgóà9¯Šg±Ãbvm펋Ïñ˜þNÚ„\_Lœ“3r7öʆ¾jþáâFN\ÀÓqwÏ›£_ó[.êå±À9÷÷B= Œ_hœ,w¬3€9Ù~ o® 4ÄÿÕ ïe“|*ÒßÚ2d\<ÌÆFG#üïÛáßÛ+cšv{¥Y‘×Ji¢}$ާ‰ÏªŽWN>dpcO§å…ï³<ãwï«FÝ;(Kö…ÑOtÕÐÓ¿îÕ6ƒNÙˆøK£•Î-Ï®þª+\#Võ鎞Šyx¸¾nÒÓ8¹ÂŽíWýÒ'å—ÍHzwCcÝËõ¶uβÒ:n8*õ.¥¢µ·²9]ñH=ZÐ œ{l­>k›G¸«|¹iZÊçÚíVzz:Ï5¼‘TÏ$Ò>'µ„sÆ2@Iê$˜1ñc+ÊÕöZ]K¥®– È¡’ úWÓ¹³3™pÀ$wÁÁú-pÖð‹”w©-ïÐ×YäŽPÏ6Bü»Áàã—ùªapÇš·†>/zŠž–³U¼ÖU»WHÆ>W· 1<0¸81¬rŒ¹¸Î1‚—‹æš»C<&ºÕs¢p,%®†hœÞýˆSÃúãžk1©õ\—ºè¤£dužž)`åóFã™ÛuÁol¨IPÊë]t”õ –’¾Ž Å;y¹_¬qdt!À©a 8k¢cßâü=;­b>‘ì¬s^×Fèä-s \ÒBà©Mö~¾¢>#ß(d¦”Ó>לÿ,ò¶F¼9‡›ݯvFBœc°UQ;íüÛÑoswý!PÜŽÀÆÕ_³š«ŸNë*GHÒöWSÈŒÿ…K°ƒÀ“æ¸Üé0''Ÿ¶?<ŸE¯è2¿”s6üÖȼ²&ðO¾ž©ÕIç9œÌ tnó\$aÆÄ ˜>˜î²â"*Áʪ""""""""""""£³p{*¢'tDBˆˆ©ßª·8—¬-zD\õMâ@)¨¡. ý©^vdm÷qÀZ¢ÖËŽ§Õw=AvÓW\*¤žwŸÞs‰ÀìèØS/À—«¬ðž'êVÅ5u(e’þ6Âñ—TÛ¸ ïÊIèज़ZG\.]3ò\FûŸ¢¡-è¸às7ú¨Uö…i))µ]‡XÃm-Ê‘Öê¹G—0žùs ü5eqkLIÄ^hî"ØhßQxŠÚÛuÖ(‡4•§&2yGW´™-pýÕ€­VË•ÚàË}ªßW_Y!!”ôкYޏkA%N<7ªÓ:å|¿Úî4WKÅkcû¥u9„Ç 8%Žk93¤q$ãð zœåךwOÞ¦²\nÔ·AñEQ+cµåÀIè HÏó^µ—Wiû¬N4—j‰c沞vËÊ[³¿ ;¶TñÁÄz­gÅ94ø¡¨¡¡Ó’–6NÞWLò~)±û®¥¾­Áî°ÿmÒÞ8…¦í09¬š¶íKMÐ9òµ Ÿ©[sóäî}ÂíóUEóTõÏBz®±‚É÷\Éø3Ÿ—eâêûs5FŒ¿iƼ5÷mEqÜ4ɘ~ejzëMQo¸Él¸ÓKIUG+ ©†Fò¾)K\Â;A\ìÅÂbÑÌæó {z­Œx0ÔR_xAK,21Öyå órÙw3p²G²Í]BvEB>Š„n ¶¸ ô޽µþŒÕ–K­;waÉõd!Íú¡Wø]­8 ©F©Ð÷[³ôÛÈ×Å)ÒñOÊ-98q=ý}-ãZ[àŽ-En¶_˜Ø÷”8ÒNãê\Ðèþ‚1óWGŒªïÒ”Œ¤Ò4ì¢3ƒV'¯3Jøñ»b-Ž0ÇzsaÛ³ÆtÖ áÅ·Mh«Ø¯Žé(–âØY‡67ó¥Ø$göVUð]iÓ6® ÛÝd¹A_p¸®ÝŸÉs'piÝ¡­½0yIVmÜìFÞë‹Áë±ÇP£7Ú,În Z$,is5?7h4Õù € ""Þ¼Bžè[Ö›»ÓÔ\ÌTXØ@tpÊI2FìZÇÓœí¾EÕâ ólÔzý&Z,U–Ñ}”׺icy•­}<%¡¿XÓÎÝÎÀJŠQ<±üÍë‚ÎøÁYà Nö×:J7\ð.p7âs1žY˜?y½Çí Ž¸#cT“EQMDkã•{\sHÈ ŽÇ²îÆÇlze¸ îºÜ§©V/ô4\DáeçJ¹þ]UDbZ ’¦3ÍIè ¤ú8­ZÞ-Õ¶›M¶åK%%e,®Šx$toiÁ.ª9<¹Ã¾alÀmgÞø D€ÒÞª¢<ÇbHŽO‡~Ÿ矚xñ¬l u”C%]ÆÂvòÜ[ŸSØw†Ü¸Çiâö’ºNêfSÓ^i]+êN#Ž7Hç’zr‡g±­¥ráß"¹t;„wPs°Q«ío/¬ïÁøu#§cKR 1î3²Ì~ `3x’Òîå.l-¬•Û㤛óÂØž×O(!¾d¼Ü¸=€ûíì½V¸>¡v}UYÔ€‹ÇXø©£Å‚í<´sÁ(¨¡®„s>šP1žS³šFAiê;‚åá+ˆlÖÆÏKQASh“ÌtW’üFÆ´8´IâkÏÂ=p¸á/m\5Ðöý5Dèj Kªk£¦ò]U)ë#›—`‘ÔôW-ƶŽßJúÊŒa †ŒŒœNÈekËĦ°¹êŽ2ßê+Þã¾QCKr"˜ø[óq'Ü•3¼*h)xÂ+}-—ɽ\Üë…ɧñ¶Gã’2°ÀÖã×›Õe“ÆIÜ•òÜkéè_LÙßÊjglõÁqÎÞÝÔZãÜ{l¢ßÚ¤[Y¡¬ºÖ výêÕY÷Z—´n`˜`@ö´ þú×áïlw§Êc£3¶–àÐvt|2ëËð=X×ã{E·Kq²ªãMe¡‡ôƒ00Ñ6yfWïñ«oæá¯iëg{š¸Šk¬C~h‰ÙãûL8w¸Öʨ炦š:šycžžhÄ‘HֽނpA_KHÆ:.`€qõÝWª°xýªn }ßKÛ+.µ äûÁ‡–BÀàç9¸'êUác´Û¬ÔQÛh᥆(£…­cwåŒõ8k@ìÞŠ*ý¢Ÿþ èæóp¨ÿëAy_g& Öç8xuåÏlK¾¾É¹X[ƽ­ðéœ~*©*›ïŠˆÚáqZè¡.t„ž~«eÞèéè¼Ì%ØþØôÛøpÒÚãºfÁ]I÷Š *|úÈÿeðÄÃ#šïcÊþòÚdlk#kXÀ֚Ѱhìr@ÿš4ü#|ªãÐÁÀ€OÈwþ)Ë×ùabzV‹Sð>úʨe’{|&º–HÈ "Üø'ró4õ<¯8QÃn°e’hÚêˆá£¯ªûå¾£ðšzÞPο»#ZÖœç­#æié)(šÏÒôöê*JÊ–¶*Ùb¦ds9ÍÄŽhã~ªxÝÔZñœ]¬·Ü[s¶ØZb}©žsÍ=@dx3Æp\|ÂŒ‘³I<¡Gʺʚ©ùç–G‚÷’p?íÉú¯w†ZÆã¡5Õ§U[À–[}@‘мü33£ã>Îi#=ºõ TxáUô†ŸâÖƒ±Õ¶éYCª­r¹¾tôÄþ¦F€yyÃz€winmo Þuƒx¥Gª5ņ®Éj°J*£ed|©©nñŒ‚×aåØ#à îH™Ôz•ͶH ?’)e”¹î"YÇF `èZ9ÎO\òá\£q•SóT÷ £i ß—§^Š¢œpâWÇZàX@w1ϧEJYZÀ20ßu|mé}&ý~5,:‚Ž–çWNÖWÛb‹Ìy‘v%%§ .h`å#®ý׃á·Lp;PR—qPÜ(®PÔ=¬ ’ SÒUÅ‚Fdk|ÌõÈoAŒî¦õƒYpÎŽ”v]I¥h©XÞvÃOW ,h=ùAt^µ>®Ò•XúžÉ70¾]|NÈõÙËÖ¦¨§©‹Í§ž9ãÉñ¸8du ´œ ÁÜUM•©Å­5qÕü<½iËMîk=um9d5Qœqýùø]ðJÕ®ºÒ:‹Dê)ìšÙ=¶ãË¢xÈ{{=Ž9§+|¹áÁÄœö+›g“-q-oAì²çêõÄzÂËW¢¨«]ZúØb†vÓÊêaÌðÏ×9ƒ^ÿNÃ+ev·W¾ÙHëœpG]ä°Ô²]dÀæ '~\çì»\FwÑCo´_Z2FXø}I#å<]k·ø!ÑÄßm‹ÉíPÝs•üïæ k6 l1Ÿ¯U¨µ†ÃÀû¦÷¨ªµf«´2–’ÕI&`´W3É|ÜÄòàH `oÕ`e÷[e,kýålGÁf¸fªá=ž¦ >ç`"‘ísòó3¾@|?áYÓ¶øÏòG7˜IÙSn§ÂVµí-8 ŒwÎzŒ(ãë†ZM3IÄKc_M\+™GUh,|o Æ?ia¿ã#`PÄ6è§×Ùè\îÞ¾&Ç©' >™¦¦$cÓ?Íg½[§,š²ÁW`ÔVÊ{•²¨rÍO( BÒ0ZáÙÀ‚E…4·…} aâ 6¡Žººãg€yÌ´VžnZ€àæ;Ío){Ààs¶Kº)wÄOæ¹ ƒ’ <Äôú,]âg†¹`u\è¤Ô£i^÷Âjê)Œ¸îRâHòV¹p w˜^ê„Ô¨ÓöƒØîÚ.´ꊘí—-TÑo÷x_is†3ËžPOA¶U‡ösײ-Sª­n}E¾ †ó­ã>гõV·JÇ7õ žgµ®ü-qôÆ@Y÷ʪ®=ÕFªùÝJǹÅýÉè¾iè$k¢4ób6ÉÏ#Îbñû öZ¦âÍÒárâ. ©¯¸Ëq¨uÊ >¦Hü·JŽk\[û?aÙ[ÕBòøÜ[€×úAÁ˜Éæß+²–å37FŽ›Ëï¶ê{­º¥“P\*édhp2A3ãpÎ;´Žªü±q÷ŠVsÍE®oDôÿZ˜UÊpð÷§|^ñ.á•ÿ ï€ÞgUP˜ä;œáÑ9ÿtôè²%Ælbó¡÷Îyè®9$c÷ÁÿYdêo|(š‚–­×:è…A-tn£q|88øÀÎÁ Œ¬¡¦5EƒSÛ௰Ýi«éêçÄè¹kN î7#¨TIûDìz¢j»§ÓÕéˆèØ"…¾e%Kˆççxs]È1¾Å®ßxsg 5mÊÙ¡uæ…ŒÜnÔ”—º;LR ]ÌYæGÏÈ]œìc` J²¸ë»· uäú~½æªŠFùÖúß,µµPžþÎiÙÃ;b œþ î”—?švrCè=,ÍÏG‰žìõèCÁY˜sîÎnR0}v_-Ò®–ÝEU_[+b¦¥…ÓÏ!8 cZ\â}Z§ã´«×¼D¼êŠ’à+ª9¡ŒœùP·hØ>MYȽîXÙ©µÕOJgÜk¢¦y‡`kÜ-ÎÙ•’üLp~ˬttWùoU—6§šH„.§…œ¡­-vy‹Å·à!av‚H©U•¥’9„`´àqÕvDÖ‰:ì²§‡Þ$Vðß_ÛïñºWÛœL7*f¸5;ºçÕÌÈ{}Æ:¶iIQU$Ut²²X&cdŠFžÇ ‚¸]¸wcüÀ¸ûv\\0F@è°Úï•gâËn”¤oý¢?ÍkÉ® äû:n^ê{Xa ¦¼¶¨;úØÒ>žWñR8B"ѶOÌ…NC÷9ê¹ó@Ücá'Û*ŽÀÇä¾jšjj¦>*ªhjXæÞÙckÁaêÓ‘¸>‹¸7ÑðòþÓÑt>‘€*I"ô#ò=>аâ/ëà{Ðüýiù›·áöiÎ~yÿ%óÏr¡¤$ÕUEo^wc úñß„öÈŸ$ÚΆg48†S5ò9Øê_ªÇ7ïÚ Å¶»êåñòÊvçêIÇÑc½Uã#QL\Í=¥ìÖÐHå}d²U’ÜŽÍòÀÛ>«ñK‹ºÃˆÁ¦»ýî:iúx™OL‡˜Cy6ˆ“·Ug¥Q¦d>kœÈÁ-ÉÈë…åÔTÊe“Óa•Á•3—žRKœ¥¯€Ý ¨£»Vqí%6˜u´±º±¿ÎækŒ‘ç𵼤ôÝÀg|L 5ÓÚŠÓØ/ûœLÇ;©*'.Ûsr=W­°¢£·íèã/lÜT¶>çw"׬#ŽX஢šw€çùM‘Ž,9?´Òâ9ˆëûˆ:6ÿ¡umn™ÔtfšáHì7d¬?†FÚc†àþx …o³<Ã|c|ú.ØœcasNîÉsŽºv<9®Æ?Šôé/°IÜËNp=7WµƒÜE°Í ÖwØÛý\rUºh›òŽNf‘¬/ø—HÆEV,7чIWop{ÎFÿª{;vÖOÑ~0èj'd¯KýÞ3øª­ÕøÜîbx¦:8¬û¡¸¡µ›ZÍ=¨¨ªj_¿Ýÿ.qíÈìG¶UãŸRU$k$c£5ÍpÚáGpB·¬šGXµ Eþɦ-Û¥DFª©)[äi!ÄP3’ÐIöWvÏòX3ÇŽN×Dׯ*>õãkªÂ@Èy '2a®?Üd;²‡|9á&¶×¶øª´Ý£ïTÏtÌ`±ñr1ç£\D€´;Ø8è¶ÁíÍÃË^™•5¯¦c$³¸^ç84CZ 8·¾J»³óUæµ¥Î!­$“° x·ñ A\ˆÑ4QÉ›tD†H[þÍ„uh;“Ðãm—¥àSˆö{“n:^¹žEö¢C$syñ5¹åÇb0O©ÉôRÅçߦ ïÝwŽˆˆˆˆˆˆˆˆˆˆˆˆ¨á‘‚¨ZÛýIÇe@AÎ;ÈIUÆýUSº¡ c'®ÁW{*uDÎþØQƒÇë/ÕšKOÒ[­×9mÑWóUI y¢’WµÌ…œ­%Îvy»`sä/›Ã¿† }-ªâ%3¦¸¸6xmâ8o7‰Ý/@v9Rž628Ûlkцµ£@¹.~™+誈‹x˜á|WÒTðQTÁC~¶Jf·ÔËZìŒ>ž¡ŽØät-ißZöÖ6+î“¿ÔÙ5²¦Õp€s:˜G33€ö“³šH8pÛò^Ÿ ¸‹©45ÖZë-Åð‰G,Ôï%ÐÎ3ÑíÏäAv*ïÕ÷ÎñBëÒóES¥u¯ï5”ò:¢–¡£©‘®øÃú|Y;uÊ»¸}]EÂIª.6)aÕ÷z¨ä|wØ«ŸRØØràf7Óy\zg Ó¬½ñ6»’¾è æŒ:Ž’®§ˆT€y#ryØã†’÷\‡„ Âí ¨ø“®(ô¥²) –i\*§19Ì£¹ç‘øè0Æ]€7+hÖKm-šÏCg·Æc¢ ¦Ž–ž2I-Ž6†´gäëÐnq’¨$i ëš"*=ÍcKÞàÖ´d’pZ¢ãµÖÝyâö¤ºZ˜ß¸TWÈøCvk›ÍÔ|÷?UæðÏGTkkkÒÔ—+}MÉÏŽžjÂD^`cœÖ?o(À;¸—âð‡Å÷ü.†Áܾã‘üUÇIà¯]>&Š]¦âÈ%Á‚gàãû¡s©ða®Y¼[¦¥<»¶f{yOæ¾3àlj¨œ¾ÿ¦ÖÆ]l³#ÇFã“lúö^]w„,ÒUG ;,uÑ=/ž:îF°“ЇN69wÒø?â›òùª¬0g §HH ìÞýX÷Sð_‹r„V]´•Ê nQ‰[ Éq¸c‰8ØzðÒé{IQíö+íK£åò礢˜àò‡<4†ä–f’:•ñj=m­*¬Ó7«Ýú[{› ¬¢­ª™Ìk[ñFZÇ’ÁÈÀ¹¼*:ÁKÆ› ËR½¤£’S™&òØ* ÚÖ=Î;Îbüm’Ð=VgûE.Öšê½%i¡¸STÖ[ÝT긢œ9ð  ™ÎÑøyšAõ}ÿg\:“jZ‰ ãL˜ãŠ2ù–jòîFçäwÄGöTÀywš×5Ä07pÁÜ{Ÿu†¼Vk‘§´\ºFŠ’š¦éªí·xÅUG• PELçLâ|´ò±»eÄo¶ñKÀשõ¿&¼Ýé!«³iø³Å3öK<¡Ì…¥§®0÷çÖ1ê°ž¯´ÉaÕ—{$£ ­š˜Œçð<·¯~‹Ê_Eº®j …5u9ji[4dôæi²ïŒËà¾ñæã4²k|6úÛËNGúX¦÷Ë¥qϺÃm8p88)Ôû¯²Ë k¹I9Î1Û+è¢s‹ÄCpí°¶AàûRϨøau[Ì•Þ{kÞçdŸ$áŸð¢Ìl;*:åq-ÈÜî°§Ê'Õør¿=æ4µ³ãÀ0àJÖÜŽ$û+“Bë}M£kW¦ïwT„µïû­C˜Ù z´=¿Ùp!m7BÝëoú6×|«£u5´Í™Ño‚ápÈÈpdw ä‚×®¶}ΫUSþû¿—¢o&¬t¤sçetüCÄœï°UÎǪ‘ëºëýŒàòÚα¯üaá…ƒà¸ë‹/>\ß.šqRàáÔ8EÍÊ~xXËTø´áå¶7‹EÞó+]ð">üÎ$ã豞 ñ•©)M1c¡®<¦­ÒT¹Ãl„³¯ªÇŸÄÇ/-’#«¦¡‚OŘk#¶k´qµ¾MT‚®6´tk[0x`íðágÍã_.8µ–Ÿ¦™¤jm®1»=ÉäÉßEŸtGøu«Ûm:šŽ*™1ËIXñO6ç»ÇÙ¤«É÷+x¹2Úë…+k¤g;)Lí9¿¼œã®ê0ý¢­®CHÔÂÙ>âÛ”ñÍ(; À>¡²ºT[àçµg .õ:~â!Ž«þ•M3<È'ÇNfžã³¨Î Yh¿š~²(Y©´íMÏõ“QJ&gÏ•ØpšËºkŒü2ÔQƒA¬-qK€LU’Šw{|xî:¯øåd‘6V=¯à9®iÈ ô ÷ 0øÍã\v::žiÚ’.5âëS‡ú´ni>V{9Ãú4]±ï†ï Öým§¦\@mÂšŠ¼µÖªeò_,Y Í&ZHk¶,Æ20zœ7¬4ƨàoÛ@ùÝe¶¡•–ÚÖSvcàã•ÍõnálüGµq7F³PPE÷jÀDuôÁÙò&gÜ´õöù+ùŽËºç+š"""""""""""ʃ`0„žÊ™äªãÛdéßeLdúaW¶ã 8ÁѤ9 Æ2ªÝ›Œ` “ñž¡USºâX×¹®sZKNZHèpFGБõ\רu®ákµKWu÷Y$düOäÒ8ãÐ5§p½Zw9Ôñ¹ä‚qÓ+°€FÊ""*`Ý¥ÅéN$éóeÕ6áS5=C$ôÏýèßÕ§a‘ÐãpTLâGƒ½QCQ%Fƒ½Ò^hÜì²–½Â †·¾#þU‡ï| ãŽoõÞ_e<ÄC«<Â\¾KO8ÀÚæ2“‡šÊ)K²×:Ñ<`^g4óÊËšÃÿë¼—×Ý[¦©^ZMÙî Ž"AÛ”‘î¥/¸=¦8Qc–šÒd«¹Õµ¿¸MŽyH…¸üód†ï×rVG#?ˆãoUÅØ‚Óó\\[ÊÖ8òûes¦’f/634`y¬ÌÏLúew",mâoQ1ÀÝOpŽo*yi ,¹t¿Þø.?E¬ºwÍê×9‘dpÜ0€O×eßgšZ*êJªy¦§ž,rFò×1í<ÍsHÜ@9õ eÞøŠÞ&pÞ–éZæþš¡?u¹†ŽPé@Ú@Ø{pìv9ôY?‘¿¼}:ªµ­høBâŸELnU pËC¹NFFpUƹ…®/ÁÎpHþJÁÖ\Ꭾ©e]óG[æ©d-€M};ùX Œ·›”4œàÛ,{xðŸÃYêéeµT]ìÐÃY$0ÈÙ&:½Î{Iæ=IÎ=€Pùxª¹Öê*ª*(ŒI3‹ŸÈÐÀwìÐ3…³O :li®iJ ¢ŒT:•ÕR¸®™î“9îpæŒû“žÑÊp7öZüûBuµüi¤±Ç)Ù­q³’ÊL?V˜ÇÑgßz^+'hî Ÿš¢ù]-sÝ °75žøòÉù¸¨ŸãH¿Hñöý#s(îÅ·ZB\ sfÉyöÄ­•»öhX}^¥Ð:Ÿˆü£ÖV:jû½~šœÙ*¨á‰ÓM%0ýl2°4;“Îte»ò±ŒÆ8ñ¸[Áís®«%’²šØÞ~{…M+ÄÌÈ1°‘‡¿ ŽQ¸=q…‘è<4VÖñÞ Is–+@µSÝêk*¢òæm;ÈdŒßâóÚÜìÉÎ7¶|Upú×Âî) 5‡ïBÑSCm(žB÷7%Ìpæïñ0Ÿl¬Uov*X.Tâû<ï†}©´Ã›ñ[®1Õ‡Õ³°Œ|áwæ¥IüC¢dc×n¨G§ä%ñY®,š'ƒ×vÜ §¬ª»Âû} ÍHöîâßÝhø‰õåÂÖ9æ·'nÊè᎑®ÖºêÍ¥(Il×Z–Âéy¼˜ÎïÔ5¹wÑlωºÒƒ†Z0]ë) M%+&¡°Ž`ÐÐOW;°¨×|ñ…¨…S™l°X)bÉäI;Èíœ9ŸÈ¯·NxÇ’(Ü5F™‚ snÆ@.Ûg“œut×xÁÐ̶²ku‚ñSXK„”ò>8ØÌ ¿'9ì)Ö¾,øƒrÚ÷NÄsäÂ*&>üÒ‚ß§"Á:Ë\ê]]Zjõ%êºñ8qtn¬”ÈØóÔ1§á`öhx¶RÒÞn§;.¹ùa$o¹Êé|\Òró‘;•îY4~¦»ÑÕÕ[ìuóÓRÑšÙ§8FØ#ŸœŒ`–¸ ÷-#±YMøoâ­óNT_(ìQ3Ëpòh檓Է%®sy@ÄF{e^v¼J©ds\®v |~Yt‘Ç3ç™§|4ÐÒO÷±î¯]-àÞ˜BfÕвG3û­¾oÂÒYÎày0yÛöå=°¾Ý7á‚[¥t×éIEÈ>éKM\éO9'g»”9z`’;,ÂÞèbÊ #b·–ÕyÂWÛÛRøÁ‘Žxòä³™¬- 7˜6W5“@éÛ5-¶–’žSKm¤}%,p²7K§á`<Ñ0ç®Ûä¯Vßj³i«T¬²Ùèèi⌿ȣ±‡r·a°Üàa`Nx–—ˆ|B§Òwm9Kný"ÉC,¹åŽc Ëdæ’ÖÇ}”‘ ïôX/Ç<ÒEáö¹Œqce¹QÆñŸÄ<À쨒׻š÷îNãÕl‹Â&Ÿ¹iþéØîu’TKp×(ã2s2žðøãg ä!ÄvsÞ²Ø0y¾ªÃñ WµÔÓ·™®°UÂ3ûÒDæ4ïîà¡ï€ƒ-W¹¹Ÿú‹-[݃³|MÁöÉ\)ýñ/:ùc³Þé%£½Ú-×JiX$5”¬™hpx8€æƒ¿p ±+ø ÚgSÍûc{K\`‰Ð¿ÍvÎa-ç d A´u…\(¶Óq±T*inÈáólÅí#Ômó Ý|Ö‰žm|@¥’ 2ÑWms]œÿeØÆ?ŠèªðW}òZiuõ±îïæPHÑœáǾ~‹É¬ðY®ôÚ³MÍ. åp™ƒ9g”öÉéì°ç81Ä^ƒ6¤ÓuQÑÿO¦ý}.3¶dfC=ƒùJ°¥‰ã|sØßÑWâ8€ø@ë•öÑ×ÍZ6Áèp½K&¨¹[¯´+mKèªéfl´óBy]‡B1ü}FÅN‹u/ˆŸ 7ˆ ‚~Š%¡®t5Ð# tHnzò½ÁkÞVóNÄ÷?É}v±Rú–QÇÉ+ƒ#Á¿8'mý×»~´j=výy±Ý-Õ‘È$5Ïcs~Ø †’1׌¯³MqQézƒ&Ÿ¾\mäaÜ´•OŒ;8êÖÐlA^EUö¾óªz¼†Ü$¨¬5B ’'<À¸?‡p¥¶ñr\áOÒT…¡¡öÙLd vcò0=2°_ˆþ)]x¡¨¤”ÄØìöª©YmŠ:v*'{€$¹Á NÎËÀ^%]¸gªèµ 1O-ºsåVÓC*bÎ=9›ÔÐBVÈì·;múÓCvµÔ²¦Š²ÔSHÀ摶Gסè}ÂõXrÕTïóDDDDDDDDDDE@ìNêÇCëÝW'8 ’GüèNßòTyôèGNЧ¢á+œÂ7FôÎë–7ö¨ æºWRÛ-µ7é›-,NšipÆŒ’~BŽ kjþ*ø­¹jÚú—š+e¾ ÛéŽá‘¹Ì­hõ"RISvá ±ÍÊ3Ž™\ÑEÄ4c~IÈ ¹Á9B$œuUpô\[ʃЀªî\àï°¸¸slמÁG^-ø Ó–V\ìÚQ•3Þég’›ï5ãîñÉð9Ùåp팃챆Ž+ñ³ŒÕUÛxÕ¥šÖ\£„sci<’8†ÆÖs9ˆ8êTé‚_2Høß œ3Èüs7Øà‘ùØŠ$}¢š’X­ÚkJA1 ¨|µ•,¨ly2õap{@²åá‰÷Ù)ÚʪöºjYîô%“;‘çrÒæ½¤ìõQ¢ sI8ÿµIŸ Úø·6Ÿ•òo´/ÈóáV’?¸ÙF~JxàrïÓS)ߢ¡¸N¿$ùaqx#q‚ºÙ6]ÊAÇ)õQkÇ®€Ó?Ð Î Òiú1¨_WMeÄÔHÙ<¡ú¶â0îG;v4’3€=7Áæ§—Tp Ã=A樠 •Ùêc? ÿtµeõ«oµ²\\‘–Ê\ÒpH ‡`ž›¬˹™°åßòRcÀå”|_®µÍW0ðÜoŒû-dUC45ÓTBúz¸œcžXøÞÒÓ¸ ‚+ç•’6D£î3ß =KÁ- 8课p³Zñ*iáÒ63Y;š**e•ÅFF\ãרV|Ò^ nÓD$ÕšÒŽä ¶S½2 ßÊ=z–-~x?G¢zÍÀÈꛋŒ‡Kyzã9Øœcª¾´ïxU§è »BÙÌ%ļÕÄj^ì–ñJ\pLl8Î6é¹W½ ¶† }= †žž!q´tkXÑ€¦ÐZâwߨîªÖç ›G²¨h «Æ«½ÑÃ{6·H×TüÎF»ãårícÛ~«ì¨µ´rA͈çÌÈ;áÍ#óZÄà¥ÒMÇ3Pe WÆÒJç3›1¹æ탿+ºÚ\FÏÙG´"¢X8)l‚7mQ¨ c†z Îþm Sd÷nr}=ÖÓxx# òAÿæÝ¿·ÿ“F¯>QŽŸÁcoÄ  oøÏþj“`qÜoÿ~ª"ø¨4ž 1¸bªÏU ½À1¿o«ØpGñNPFÿ5NVì:oüàöÙvßü—HõϪäÀ;ŒõÇuÅÀò–†äˆ;åXšëƒœ3Öµ"¯RhûmEY{^ú¨iç“—¾2×8clvú,m}ð‡ÂzúI™n7ËT朗:Ï5±ÿ…àä}~« k:îÒÙêô­ÞÛ¨ `s™™¦©xÇ@–þ °f©ÐZ»EÖǩӗ;3žîXßUlR»Ã$ü?"VjðC«'±q–’Ñ-SYE}¥’–VÉ'+L­ð»Ð»-sÿÚû+/Å~‡7ŽÚX Á͹ѷrMÌ\°‘²7è±54­dÍÉ%áÝGe±Ÿ ü@§â‡ ¿FêÓVÝm<´Õ‘ÎֻΌ·õsrûŒ´ŸVŸUvj^pæù`¦²UiK|VúW½ðEK”"/x{ðßqœŒeX7¯ Ü0®ž®¢’’{sª\߆7Ÿ.†ˆ†v$Œ—õ;+;Rx<·¾Ø¥µ$ÔuŒÍ[|ÖMø¾#Œr“–ôÿÇñ³‚׆¶#}®UÑÔUIA¤§-Š òלdr»;tÆ1²Äì­.§¦dr=ͯa³^Iåþš˜þx‹Uv¹Öâ¦7š»dng/똮pìÜÇÕK6å¯êKOÕv®"F—òŒ“ü—!óÊ"""""""""*8àgeUĈçè„»Û¯ðNç÷UÛ¢ª§º› U踸g§TÎFwU ª'} ÜK’Õ§èx{i«1Õ\_qäv€~ïϳGªÃ¾ A㼑C#[ìÕ>s]û`pîSô+bc DEçjKݯNX«/—ªØ¨­ôqgšWa­·¹'¤å@î6ø–ÕzŸTÛªtEÇMÛíÒ=Ô¬†oÖN÷PùZi<¤á»ÌzÖGà·‹x¤m=£ˆÔǯ–.ô±ô;o4Cqß%¾Ÿ‡u,­•ÔW:.ê¸+)* ðHÉz¸lBúvÎq¹EL ØtÝSluÙW§üÓ9^¾ÕVm¤n¢ÿPèmô‡¿”eÏq 5ÜçÐ=Nø WúÞõ{â®—¸íòT×ܦš«î´äµŒaqÀhß–6O_„’¾M«/ºRûïOÝj-õÑŒ2X]ŒŒ…Àìæžàì¶ᯊÐqWGK=C"‚ýl{b¸ÁyO0%“4vkù]·bÓÛ .4a g8 «Z^-5IÔÜs¿Ô2 ËIG £§ÁË@‹á8ö.?U(<KGvà­nu[!®«¤ž'G†²9\\cÏíÌ\¼ EúÕWc½VÚ+ÛåÖPTÉK;p$åŽàõiì¯ Þitÿô¥ò¹îŽŠŠíO-CÙœ¶0ñÌí·8’;Œ…´Ú9ã«£‚®ùsFÙÌ7ÁÍw&ÁñMR˜¡?šãŒd¯šr×;댨}öj[h·é†TÈù£¬1 ˜?|än¯_³ª@85v§ó9‹/’?—?‡šGóiRajïŵ·xŒÖtåáÜõ­¨ÈúØ™&>œøRçW;pðHéå-t5vKdTíaÇ4…ð–ò ’=V½e˜AÆ00¸*Ÿ–óû=˜_À»³F2u<ÃúÓS(µâ£RÔêŽ=꺙Ùsí”Ñ91 g§1kžG«ÊÆ-89^´q½öwU:v-ÞYˆçœå®!Ãlc#Õ|?× ŽË8xH”"´”®ŽIê)úw},ÍÇ cƒ»uÇUŒøËÂÁ®9.«µ=’îØ$§’¢[|uLž'reÜÉ·) ñßB]ø_ªÆš¸Ü¬õµsÁ÷®{ppäÏphxsG+Ï)< œ o¸XàÓÊAqëÁY“Ãgn\\ª«¬©¹6Ù§èbž¥œ¯˜ÌXÖ6?OˆN:n¥æ€ðÿ6˜t-ÿJšÎªžžŸîðAÌŠ8™¸o+Hp,£f²TZ]+ݨnuñ“ÍŠÙàÁ—8îõØ4(å¯|X6ÏÄémš~ßo¼éŠI› µ1¹ÞmI:'g”´òžŽê+,ShŽñNËM­Ÿ¢íßàŽ©Õ3ST;nsNCÇá8=GS…íé~póL× ÛŒ±PVÒÙã£i‘¤t-s²Z~E[\wàn’â¥ê'c-ZŒå§»SÆ ŽÌ•¿íüGb;Ã+—‰|×TÕUQTZjšâ)nçž–¹™Ç(wG€LnÀÁ lTÙðñÄéø›¤þÿ[d©·VÁ†Í#b?v¨>±»±õié³¾2x›rA#§ªèqu\»ª†çr7\‘ ½ü–1âß ªé㪳]+-—Xg󣕒4;û®ëÔ20@Á ×ëÎ1p¦ã4ÚÛO»QÙñÏt·3!­È1’Oí4 í’¡®¡ºRɯëï6Ï2cuuU;]ŽxÚd/ãl…³«_´Ým·ï̪t”í¦IXæHÆ’Üà–¸ï×ò+øã¹Sjn2ªÒYQ —QC÷‰› åÑIhI{sò*`†Í&8vØxomŽÑý5hŽS,tVzJvHvæ …ë…pò†ô8íÕcß“8 ®ÉÍ›4ìÁþÓysôÎT%ðGK¼HØ O”ÚjÇM—`†}Ýà|þ"Í–ÇXÜ7Êl7;wß²¨ù}P€OñT#¶p¹@ºä;mžèÐppã²ñ·¿U¼eqCSðîÇc¤ÓIC%ÖIDµ¢âÀÀÒÒàZ Î}p?ðuŽg©¸›6™¿Þê.”T€U+Ù3]á~>áÎØü=ÁÀ2Ö²––ºß5 m-8Ó/5+ìVj¢4­¶^hp9ETà ÌãÛÔ7=Ž{¬›àËÑÅ5…+cÿ]c¢”dDÌmRñÆz°~Èú‘Šøóá–›LÅÄ»- 47Xë™ ÐÄ9[VÉ+dpsµÁ£;d=Ù$€¬Ï|V¬²ë¡ .u–Ó{yû›^ãŠZ Üü?Ù“ûÁ§×3³ä¨~I“ºªª;úú*ªz¾ñãÄÇÝõ¬: ÛPÿѶQÏXóË-[°pà6<Øz¹]ŸgÿbŠß[Å”dÔNçÐZñð¶ G›(÷s¾G@׎ëxÃá¤\:â“êmtîŠÃ¨êÊ1œ¶)Aýt#ä\×ÀHѾ áà÷\Ôé3[)šy¨¯Ò6ÛTÂàÐyÀíöË\þŽ#ºÙÜ+Žúͺ…ÝJ×´UC•F ÝÓÈC#Ç® ÏÈ«ªÙÝUW-LÏ2>W9Ç»ŽÿÍO_ºv+O ½±ï|×Êéêdü-HèÆÙòÉú¨©ãOF|AêH™-5ÎVÜà=9¼ö‡Hú§˜>‹Pù“FØãkÜç4 ž›ŸËù-®pÖöýAÃÍ9{|šZûe<ò=§b÷FÒ㿾UȨ@8È誩œnA ¡;®.Ø/†·-ÜüÛãù¨_ö‰[ †]%uóª \$ƒ·#<§~¯^¯Ù¥sœkfs³~éSsø\|Ö»ó¿’™kZ^7iŒ>&53°@”r7=ÿÕbÌøÑY)ðÃH¤›2Ks… o¼lލôøTR# ¯ŽF5Ž{ÖÈÞf02FG¨È#èW9>ÎÊØ¿ÑŽ¢¤$ÖNøòrøZßmÌnü¾J%ñ¶ˆÛ¸Ë­(¹%ka¿Vµžny‹<÷ò“ž¹9=e{5­ÒøYÔw–S·š=UE¥pÁM(#åÍ#?5‹)Î'Œôø‚Èü­©‡Šº=ôÙ2·PPî^bj1ŸB2:½ÒËŽãºâùÆ:G¸°eÛg •«~2ês®ø¥{Ô³¿—ï•n‡mˆYðF> WxArâ®®m,fzK-7Å]ZpÁ¶ÓиöU°>è 3í-œÓF FÈéd|Žæ–yW½ß´ì=€`ÊG/¢± ´Og¾Û)®T#ÓTÄÇz„un]únËlÓ¶:K-š‘””‘ˆá‰Ñüþkï{y†2Bcܪá®M•3å•Ó40Êðd`æpåÈ$8ŒŒÂÕoþèþ1kI(èÂõUåü½$=ˆR§Âî´6zý)ªmµ1ÖCæmÁŽô¥Ñó9Ùh<à€žå_^$´Ûô_„šÛMÞ²õ[5“ϭ¨;É3§kÜà; ˆsÑAÉ7¥+ Ä3e¶ qmãDØ.ñ¹¯ŽºÙMP×FCâk³¿Í{‡¯LŸ’°ƒº¯TôÈ^^«¾Pé»Uîç!ŠŽ•¡Ò¼cáÀw u!b 3âǬµ´ú3MSW6æëƒi©¥ž&–KŽGÍ å$·Ê ryÚq׺ˆÌêXÍ@\|X9\äi8 ».#=Ïp€ö$oÐ(Ïö…6sÂ+k›F_W¨^gç1Ê9HÎùÛä°?š‰ˆ[[cä} ce-8¾^r}²õÂØkp[Éôê©Ó”…@ÐÒ2>¾‹W¾$™]'µ ¹J%ªI\ “'—•{Þl6]MÆ6›Ô¿Ò¶úØfÌ&cideÅç@ ;wÊÙ5¶šžŠŠ*H„4ðFØâ£ŒhÀhö/¡c_5ƒ‰ü4¬²µŒý%Oš›|ŽÛ–`ÒÏ`rB‚VÊ*+MUÎÇ«(ßG]OSŠZ¶’ß"HŸÍñ7™åÆ;s,¹à§^¶ŸŠ·M7<¼”z•²Kmo+YS/cwkB›F´ã± tîW"7ÑWª"""""""""*;ÝSöq¢®äöDØAߪªe;n¨wUDE>ÐŽ'¾Ûf£á¥¦¤¶¢àÑUu,;¶Wþóqöhìå”÷û>-uàÅuÒZGQ]{™ÐTÇ4²(X0ìg”`©/Mç$·ïê¾¥Ggl(ýãwˆÕC†ÑiëMT^5ÌBHdå|T¬ ÊàFà»f|œíöQ_‡i¸‘Æ*: ´&K=®'\k£9V±Ík"'ÑÏsr;µ®ÂØžÖú6ó­ÓÖAošéo‘ÐÔQµÜ’Fæà@æ¦[­–£yð÷¬¨Û;â ûÛ@ê /l¹î-ypf¨Ññ‹FWFA,½Ò“ýkBÚèLüþJ¡Q¹Æû”8ÊvöV§µ•€áíßTÜ$ m9ò#ï4îøb»ÜòM†IØ«zX¯šËUAK¤¯½ÞëZÀçu–y_¹>›œç°S—Zñ£Ip ºc†ËQ¾›} #­|5mŒÓ€1’0ìÊãÌòÒ[€Fûíññ¦õ øÿÁ;œZ鵥¾†Ž¯U ÓÍ?||Ãá%¼Ü¹Ü(5mžz ºjè ›SM3'‹±kƒ‡ò[cÑ7ø5.‘³ê*R:jØ3ž^vËóáG?´Vìèt˜´‰\>÷u|ïhxÍŠ"7NïéòP‰Ïòò쌓_eµé¦èþé3䦠¶BÊ€:yżòŸ¬ŽyQëíÑ®¬Ó6sM {í³º‚¹íˆ¤<Ѹû‚ߛˆ:QK¥õ—PÃ$}ºº*žI–Èà\Â=È?5°ÿº†‚éÂAAIYÙ®TÌó9žÊ~~xïSÉ#GÌ,Î3ËŒ•˲¡wÈö\y·Æq•Ï>¿ÁU#dŒ,{Cš{¾Ò KY¥tÉ®8‚¾¢ÞØ’6;ÿ±+SìÙt㈩­’1µF^Ãø‹¼ÑÊG°Ùù…:–º|~²ž!'|2¾K]+¦ö]‡ º~«ÐÔ¯mãÀ›{jÚ鬺‘ÂF»$†¸Ô´vHÓ¿a9Œ·Ó丒Hž›E.>ÎZ¸›>¼¡2‘<ÐÎÈû9¬tÍqéÛÌoæ±GŒøâľ®lLku#ÜÓ™Ô—ÄJÃÊTð²Âû÷€My , uE-áõÙØÈM#ÉùFÙXŒò½®ô9Wÿ dš—]iºÊ8ÌÕT÷z9 £.’FÎÇ5 w$ŒcÝmK›%À`¯ˆ×†Ø8¨¯’;ßj©©éÙˆÛæ¥bq%¼Ïqs±ô$ù­³ð«M[´—ìöKd Š(iXéÉ#š ÞãÜ“Ý\냷qÏE‰|_×þðé«_ÌZùéã§`Ì’±¤~YZ×,t“-'–/¿ÆçŽÿ„{ŽÊߓĚèÁ×O€DáœÇäÃ}óŒwYÛ_Gs·ÓÜ-ÕPÕÑÔ0I Ñ<9’4ô Ž¡BÏü@e×S[t ¶©²ÒÚÖ®-c²>òá†4ï‚ZÌŸnrºþÏÎ2éªëø‹[Êiì¼ÔVö`ïS#<™Î>ÝË‚L™Û—|7↮j¯ÒY9‡%Íñ78 hþX”WŠx_‡n–ç±YC|ºðîæµ;*u³^èa•Õ~G”)ê\Â󛓱n NwÆ7É~üJÐhnF5%®ãq–ß;™k4¾[[ä¸s–Hç;#'5Û;,qâKŽuÜYÚI¬T6ºKtÒË"•ÒÉñ´4‡¼€LìÑÕx<¥Ð"ùM¨5õÞ¬QÐU±íµÑQ™dª-!ÃÎ!; qÁØlT£¾x¼ÓqG1´i;µD…¥ÍûåLp´œôÃ9ÈÛÿ¸ânë«ôÝÏOTi[+-×*WSOÏ|Îçãk‡ k°æžS‚ТۘXþWŒ/¶×x¸[Aû\ð8½¯ŽBÒ ƒ}@?@²«·¾Å NC>öç ç?µŸ@®;o‰Ž+ÑFÆ·VË3#w7ëàŽG™-Ü+†×âï‰ñ±¯¨u–«•Ã>m/7±å#Ý]–Ï™²7ô–’±T´um=DÐõ<øíØ«ºÇãË,™¾èzê8¹±šŒu'8‘±¦{,ñÂÎ"iŽ$Ù'¼iZªšŠZyþï1šÑKÊY’0⛞RFá]è£Ú)j©­áU®ãÿSn¹5õ Æä=¥wÈcüAE? zþ›‡<]·_n2T2Õ,rRWù#.ÈÒ¹r9¹_ÈìnpÓœ-„ºûW}°ýâÍzÛ.sRÜèÃ]ä‚ ÷Ûu Ýv¶ÒÉM8aòòÈü§3›§0tdã==Wϧmó×x%Õx±[µ…=@kNüÂÈ‹O¯õ ãÔ4¬?«qÀ츢Ï~oFÙǺkyŸËŠño¨£sNp÷ù<Æ­ßÑ\ð¹Žß’V×`ô;,‰².ŠºX*¼¿>0ãùã9 µØ##2¼YtËâ¡®«¤c³´U‡~QñsõÎOù®M£¿²®2ʈ8Œ5ÁÕDœƒ×xÉéî¾èa«eC9åÌ8.sÌÙw0Æ/.1Œ’sôZ»´ÓºçźxÑ3ªu hÙÜÕCù­§;%Î×Õa/±yž¯Ïø•SFðéþ°ÁüŠ×uLøcÆw-Çó[w³† U& M‡•­?"á>i)ŽÖãÊ:mæJ OÿSú«ÊÑákƒt15•û¡zˤý½˜æ·—eèTøpàœ­<ú•ïåÕÔ3o¤‹"i-3bÒvHìºr×Ml·ÄâæSÀh'©Üõ=Ö0ã‡-Ä{«o2²¦Åw|…õU–îVš F˜×ÒµŒúåd}¤ìš#I[ôÆž¦0[è£å`'.{º¹ï=ÜNI?–ËYÞ!÷㶸Øúv¨ÿ|«"™¥®Œ½Œ‘¼Àò;8w|o‚¶wEmÒ|càm²š¶Œ:Åx·BöÅ-4Ïhrðæ9¸ïÓ*'ñº±[.;¢³^èh©Rcp’žªNVåÍlxs ÀÛãQ²Jg2!<Ù_f™£¸]nôö‹],õu•’ ‚ó>Gž£ÕHá?ŠW¸á¨½>Ϧéä-sÅUA–¡¬#9ÆÈÎ9\öœ¬¡mðiglÍý/¯nUTฑEoŽîÉÈÏ|ƒnŸ…aŸ<5Ñœ.¹ÙìÚr†âç×Qš‡V×VK_ÊZ@é“·}°°ÿíöÛ¦º°[ï6Ú›­,`IÈL/•­~û? ;öS–íàç…Õ!æŽéª­ÎÁ2®)ó!ñ’0¬ÚßOßpâMDŒžÌ$wÈ‘3’í°x'¢†ñïšöJÛc 3ÁImû¼ÏØò†½Ò<7|ð†;ädJ? ¼‚‰h¯•`óÉsx.ë×—Óòüî­3áûƒö #¨¢ÐÔ3T1ÁÂZÙ$ªw0;Ö9ÿ`A°Ùlö/¸Y-TVÊPî&’ÄÂìœ4Nö^‹ÌÐqQèUVñO¥5EÿGVǧ«©ÜÚØE$Ô•l指|ºó–H8sŽ\åkÿŠÚã uue¢§Íž‘“AQ'•øÉå$`òç#+¿‡œNÖ­“X¯3ÓÄׇº˜žx%ߣØv#r¤=ÓĦŽÔ¦ÝxÓ5ÕRSÈ ¸¶ ([9cÚ×¼óñg„Ž™î®Z7Yu[Ý®¢Úë¹·>çq¥¡l1=³E;f{ÝåÈ`è7z(B6c°zÿ%ÁýáÒì,œtÑ— h»Á °{Jï,ŸÉåux3ž:k¯¼ssÿH+qÌ0y|÷òý9p¬e8>ÏK#ÿÑõÖù3ê$c¯^]<-™ÍŒ9·.#8?Œžž›DÎ2ESµ”u“yõ-¿W‰¥åâ¢Nc€02wÛeép%â—Œ:2q!g•~£‘ÎÆyclÍ/ùüË9kÏw­w¨é­:Z¦ :É®F’‚ã=AlPÂç·–¥ípI€N]ÖìIr%èê$ð·©i¦®mÖx­09õ„r žI"q”’7åæÀ$-iÓoU|cù­ÄY¿úEÿÒñÿÕ ë\Àä÷õQ¿íº¶ƒ4VÌIr¼DÑ‚6ll{Éþ@Èé#F žñÊÖ´d—„¸6Œ»m“ÕrèV3ñ®køu¦­¦U-wX©îPÃ45ßsäÁ»Œd¸ ŒäDMKâ'‰Uº‚;­¢’Öàu-+sLH|¹ ñ²2B»tÇ‹uOäAu²Ù¯xÃ~>šiœNßs˜É€)Ÿd­7M-k¢¾hš÷ÆÏÈâ-Îqœg ë{šÆ9ïpkZ2I8.¸fŠ¢Í¬–'·™cƒšáêØ…añ‡C?RQ²ùbŽ’-Sm†FÑO+ óXày¡$ŒõkŽy‡`î¿ /0ݬ–T>gÂ<·ºV–Èèɉ9CâÎÃ!\ '¡ì«•ÅΟˆû®¼Êé0kRNçä©Pá/sšyZÇŽý Õ~„ªpⵂjw±/†z=[Ä]=¦e‘ÑEs¸CM#ÛÔ5ÏØ÷ÆTÞÐ>´µ±¡Õ5ñBÊ:Yüè,ÎŒÌÜ€Ñ$ŽwǿŎ^¸Ü©*=UOEÄç%ßAÑc¯M¥u»jÚ bÏ1ïñ–Ä ç„Úê[ˆ½Q1 a¨žœàKM,mÿ‰Ál¡½:`&àú•ByšKÉk—ÆÜÜÞ#µò¡£?õvóV÷†ú¡41!»Þ=¾0Z?šÙà vöTsGpºÜ1°\¡@WjÉ8AÏÚ^ãk×Ôšé±6¢Ëw€QIðŸÔNÆ9Ž09†íùE›1‚~BqËøwê¶Oá;^³\ð’ßçTn¶–¶Š¼8Žlú·íÔ9˜ßÕ®ôYusƒºª"""""""B{½•{&7ʃóU@ˆˆ¨àKH ]>lµÎ?Mr–¡ÓGx¶ÓUÄÒÒ<0Á=w„»oßúœK0Ž˜ùI3Ä#ß®ÿä­¦x|Ñsè^é½1WpWÓÓyµÍÙåq’@\6$rçqðŒm…ØÐÑ€ªŠŽh$;#¡îÆ0:(ùãêá-„ -¯¼ÒÓ¼4ìç—lÆ>¸Zùƒ;°Ü§GÙ×g†Ÿ†:†üÆS_xû³Žñà â–E'e‰ÑHö8æ¸=z®Ì;¹UåÛ}Õqì™ß?4##—·m°U\Br¨FÁ?%«oŽlœp×2s ú¤ G•d2>pKsð‘㕱ÿ §4‡ÝsËåÔóçcÏ÷©yÿâÊË£áÆAÈX.Ýáo†Ù¯µ”Ôu— «Œ²Ž+”Í’žÒãÊkZÜÀòâ9FwPCMMY£µÍí’š²ËqŽi90\×Á(ç±ü.…mzŠzzºxª©¤lÐNÆËÜ9Ž|Á]›îAÿ±Eß´KM~’á­TÄ×:K5ÄÓËÊÛø‰ë³ãŒï•hÝÉ;{ç¦={-€x4âÔšÇMË¢õ`žùni4ÒLü¾ª›¦7êægÔ{"\vG§ó]›ž£>˘*5 g¡í•ÆÛ\Ö¹ÄnsÔåv/žã2PÌʆ5ñ`BÁÜNá…³Vé;…’ñNªsɤ­æä%ãhÞòNÀœòöõ ñK…º¿‡SÿHhâuI-§®¥“̧•Àd´;‚=ØáY r õ¬·jêºH*Ÿ 1:渃Êìd|¢òu DÔ•°USÌè&†FÉ­$8‡ z•õjK]ßPWÜë®Üjjj$•RgšbOã9ß~«ÏRÛÁçtfŽá½M£TÜ*)%‡M Œ½á­s#Éäk}Yêséëø“q†ï¯u Ö ]4u·jº–Hî®kæs9ÁÊíÐw[mê;¬Å…öøQ2Cæ6yåk$ bIßfô+Ë’:¸i©gšb†v—A#šCd qi-= ã¢ÍÜ âЦᆶáΩ®žk]ÎÃVëd»îµLˆ–F2vcÎ:tsFØq#ÀàÉãy8 p?Ån.Î×6ÓF׌8@ÀG¿(_R³øÄ &†’Ýâª-{y¼ÀÖ² àsË!kßl—mÑDšÖ¯Wé--9¶ÕÒP>²yid4Îl4F1Èü>_\ùq€æüKpfž:Î.hÚ)™$÷úÜ%i¡™wÏL{­®~Öûî¹oÿŠùît4W* í÷H+(êcž Ø=Cšv!G®"øIÐ7Ç#]Y¤« ùœÈÁª¥ œŸÕ=ÁÍ>œ¯~ï¦2²xEÖÔ:ÖÖnWË%M†*ÆËS=$Ò2¤ÄÏ‹”Föà9Ø ÙÄ åL]+Bëu¥´ŽŒFãÊÐì€l¯F®15,°ÒÂÜ;¡Èïì£&©Óï„Ôš*ºûS§þôùîö*9âž:FÎd„¾?†0Z[Éž_Ú•ïèúRûslµ‘ÐŠŠ§GUtæ™ÐÇœ0—‡½æ÷,ǺËv›e¤j:Qfwë+¡c+ ÁŠp@s&Ûbî\`wo®¹Á ˆˆŽg`ˆ§#[»Z3ê¹ÆßÉy÷éDZùÝžXé¥{°;«.G¼FÒmšS/¼QóHyGžÂN¶VÏí— ®:ЏG#¾áJÆÆÀÖ×K“ÌK‰Ëˆ¸2rN@Oí_¦¸C«­?öz€ß‡;ˆË‡ñ UИß)s¶.k’–ßg–«|íK¢åqòj`eÊœ°‘˜ŽL|ÛÉþâ™Í9öV‡|Ö²M°Wóìšwã• ¼ÆœyÏ0Óõ[œŸ2 ½”ú¨ì‘€qïèºòà3ò:ôQßíª†6)_Sy¦Ž=³ñrÊÿä¡—‡©ÝIÇ}+ÌMî™g<ÒÿšÚ¼OcÁ xw)å8=¡\Ññ£]%‡ N"8}GÝ©ò6}DaßÃ*xx¡šãÇ KNâ×6÷O9 gá‰Þk‡ä¶ˆÓ‘”=sÐè¶¼eÔÁ[âSUyY>_ÝbqþÓi£x^i]WÇ­˜DEÞ ±ŸÁ—ãë˪Ú'_d=7\ÜŒcUÀÁíó]ÀûªÁèU™Ä­#gÖZ礯ŒŒPÜàtbW09ÐËÒ9Yžkˆ#þÕ¬n é{––Ô÷ 7u`öÉÝ…­ H?eãÙÃ|ÕÛá׉·ëz[¼/sèf-†¾Ÿ¨–áͶüM=ˆô$šYî4wk]-Îß;j)*álÐJÎŽc€ ÿõ¢" ÷DDDDDDD(ˆ §ÕôDL¢¾78d5Ç ÞÛMæ_lõTܧZs>>¸;4.¬©áÞÔ-¾õ!ëÕ²G#æ>Ÿ5# =ràí×ÐlsÙTtEÁÁ¡9U9Ïoš¡ ‚:îµeÇ|ÉÆMlKKq~ªÀ=GÆî»«B”ƒ†7Ï_U±ï2/ ÚH3›âm[òí·u\Äý]Á PUˆpwZ­âëx³­©Û‹‚àÀÀsÊ>ó Çù-p2¸Ý8+¢ëd.|’بĎ;eâµÇopUä[¹8=5‡ë]y©‰ãg0ûµÀ¢¹@¢ª¿º·x‡¬-šKϨïPÖÉAO#PúX ®…®v9ÜÑ¿($dŽ™XÂoÜ$‚È.7i¹˜ËkÁǾpú«_PøÇÑ”•tÑY´ÝÚáÜß:IäŽF’3Ê1Æv<£#ªðæñ£f4Sùš*¢g8æ&æÆÒÃŒWûù+#QøÃ¼ÏTØi´MÔ&˜1ÑÔÔÉ+Œ¡Ä¶@æ†파ÆÄ,©üFêËõ–®ÅWcÓ’Ú*œKég¢óCpr œpæöw]ú¬*ˆˆˆ‹ì ™Ñ5Ø'ÁØÏp¾Y '$îNá}úrÑp¾ß(,Ö¨Lµ× ˜é)£Èo<’85£'¦än¶3ÅX5/(´ 4,¯°Ð†ÙkÙPÖŽlží”‚Ùpv2еÃ_ U eEDrÁQÝñ¸aÌp8sOÈ‚,ñCQw£‚§›È’v2N^¼¥À}ã#hcÁÑ ª¼+ö•Ó7‹Íâïa¶\nM,¥žª²ºNO'7á>ãu~ѺÒíG¢í¥ÿ«ŠŠª|™s˜Ñ·ø1õX+Ãëøã¡©Û6/´§;lðy¾˜æ%´¡Ûr$î©×®/Œ¸\XàÝÁÈÇL.O~ÝÌè"w0ssÎsHz‚;¨Ùâ3ÃÔ·‹U¾áû%­·Z9*šÙ ;ê ÜÖäÆHqë†Ô~ѼKâ_¯Ï³I÷›|Ð8:{=Òb~È6ØãaÌp½Êá74OTtÕn·]ÜÐMQ {ŽÃàwá~IÛû”Y+‹$ôÏÉsÈÆø\y¶<£|+OŠú>ƒ¾ÕK#d,·TÖ¿—8…î;ävkŽÇ;-h𔵼KÒfjVÔF.´¹Ï-|`“ÔemNÓI0–JSGZÚaŒFÜíÓ¹/ªõOm–ºŠ^aôÒDþ]ŽÒ=÷Z„‘œ¥œ¹$ ö8YCÂæ§“KñÏK×y¬ŠбAP\/—?ÀrOL8´çÙlàw;z«?ŸtÕÿmI¦uš©²Í!2>뺆^^?Ó­;É9u–« È;Ä~Š·qƒ‚²uÈqsNÀ.õôPÇíÕ²ËU§t%+À‚›µh§šCÍ;õ­ó²:vúƒü#Ûé.ž#ôe=c¹be[êF߬†ÊÁõ{¶y~v7Çlgþÿ2»AàtUE…|lÓÁQáÚÿçHæ:)idˆ4Ìÿ¼FÜQ‡8ýPðao’¯ÄV›–(Ã㣎®¦oV´S>1ÿŒ[høz”Ç|ª;sŒýV¬xû\ËõÊ'óG%â¡­Ï£^Z?꯫Ãýlt¼jÑ•ræŸ'œî]‡®ëh£mü²›®§gNèÊüܾ[UÔþ\µÁì'³%¼mðÞ¢áb§â-¶„ºãkp§»ZO5/Á)ßý›õÃ÷ü*TóSÔµìθ>Šfx⤓‰8o{«s›å™í‘Ãá#úÈýqò°Rñ3º"""""""&0©…Ucñê¦J. êúȶ|6JÒÓè|‡óZŸ[‚³T™m”3>FsM o%„y€#çÔnº46©µk ¼Z%AçË·µìqi,ýWººånw ”dõÊñd,3ãZFGá¯T5ïÁ’J&·#©ûä'ùµ¼!Øø°ÏN›…0>Íúˆþñ®é_1,·ÈØýpjñoæ¦+26q>Ár''ªïتïê¨N1±*œÇ8;eR#žcÛ8è¹~Ö7\NÙ ~ekÄ­#èxù­¡–>^k³æ÷ð~¹Xúµ²c»þö-™ø_¤e‡ÝOsÚë[&$Žòò>…Ä,–HÈ8Ïm»*ŽÃºÕê`«âæ±­„‡²]C_$g®Zê™þOŸ  ¼<é.Y#¢§’'ò~É?áù€Bʧ}ÁÀèJÃ~4]Ÿ ÚÃ`ÿ©ζ¼<é;F´ã.ŸÒ÷ß7ô}ÁÓÇ)üŽA+šAõækU·©ìµºoQÜl7Vùu¶ê—ÒÔ7ûL8Èö8{Ÿ¼ñPé-ký»Õìw²Í#°Úz‘´o€wàw¯ÂOáSáPžÅPîv8ú/‚ûo¥»Ùk­í磮§’šv·l±í-wð%j玜>½ð³]TikŒÆ¢ŸMAXÊÚªwg•øìF \;ž£Øîߦá:»ävTÜ’w>ª‹ÚѺSQk+ȳi{EUÖ¼Æeò`nH`À.9Ø‘¹õ úw8¥5‡î±ð²ªŠ9^úŠì¼O#qø /'+ppZÀOrV=¿Øîv+‹­÷ZgSÔÛ iß-pÈ ÷î>`ŽËÍDE–xoá÷ˆzûFͪl0Û¾éþC ž¤²y]ðî@üE»oÓå.xQšãný!®ë®ùŽ‚™¬aÎ@Ãå<ØÜó·´üVðKOp±–ë†üdŠë!k-5D>¢œ—Ó©Wö€à7xeÄ+¬«­L¨ ¢¹Àú³G'šøbs¹^Kzã•Ç8SÂŲI,Ùß²1‘žþëºvÈC]¹\þë”N{›—·”ç¢æ£WÚ xu ­¶¨üÀë•Þ&»Àå®~ÿR?%Š>Ï‹sª¸¹w¹:0c¡±½œÞ’K4xÿ†7©Ù²..ê?äµ'¬Ý1Ö÷ÿ¼2FËúJ¤¹²×4™_ž`wuppN–*Î1èºI¢tŒ’õH×µ§”‘æƒ×²ÚwDØz*¢àì‘¶ãºëÎü×k¾ æ¾;•t³RÕB'¥¨c£žY#9\×±•¬®<ðÚ»‡zêãg– h}L­´Îò›DnÇ®Z%`9ê¬Ý{®°jZ ÍΆª‚¡“Föõik[\Ñ×û~©ÒöýCk™³Q×@%ãߨ>„Aˆ^ºwꈅS¶Ê¹DDDDDDB…S TDDDX÷Ä›Ì|ÖîüËR6÷aæµR¶ugÕTºOÃN—ÕõÁòGoÓöÉfkŸ—»0Å‘Ì{œõ*Áû9êd¨á%ÿÌ•ïpÔ;vq˜!?Ï*N!.ì0>¹\ˆè°_Ž`‡k³~,šÚ1³±×·óù}V»c#¨–g1;Qk9ÆZöQQ° çÊIõý¦ƒCp3Ôzm•Â1ñ—µÄØ4`û®s9Í…òG•íi-` tßaŸukü[2›_Omþ‰âÇMVúi^ùñX9pÒî_ÀpwÓ¶7Yû‡ZûKkû7é=1seTm<²ÄáË4'Ñì;ŸOur¸±§.-=×&³Ó'=ïòî{o•¬÷‰n\Ö3=­k£¯û åýؚ֯±¥ËßÊçòVÌü$Ü¡¹xyÒN‹-u54”’GÅ+ØmMµø~ÒmTµ&®™ÕÎ.;1Ó=Ò4vœ|ò{¬§Œ8ž¿ä°×Øï ´È9CšGï}î?⡆úÃnñ¢' ./»ÃÇõ¹ŒŸ§>V{ñ癜öñRËMØ£‚üÐæ´µÜídS€wvyÃ=}H‰T²: Zîb9}ùU± WÿH:%Ö«ÍdOÔ6~X¥@$ª€5¼³ã¾äµÄw?ˆ,ß¶rŽé²ù.5tÖê‹…dÍ‚–š'M<¯;1sȵeÇ­sYÄŽ(]u<üí§šO.ŠN!¦gÃpIÁ-ÎÆÅÎqYSƒþõ&·Ò6íQuÔT–*;”}4ÓLcwày7ˆY›Á;$‰ÓñL ÍŽÐ3F“.ß2>…dmá3„¶⨸RÝuì-v.5Xˆ<«ˆ0ä~s ¬»O¤4µ-#)étÍ’žž0ÀÈã·ÄÞQ†àröEߊÓM;g¦´Ûéçc<¶Ë,ls[û :í¨+FX#OP?î£wx/G©ê® Ž!Éæ§’,ñyh=ÁØmºHŠ|}ž³ðJçêÞø5 Á °ÖšzwgóÏ䤀®{ÿŽOÏ Ýqd1‚ZÆ7öƒ@ò ZÜyÖ7/ñ’OÑ\õpKVËuŠ\ã2rFZ×Ê^HqéÕl †:>‡‡Úͤ­ïl‘[âòß?(k¦”ï#È÷$ü€]¹îVñ©Ri¼5jˆùË]3èâúÕDHüšV¶XÒéÞ¤œu[µœÛ)O¬,ÿªÒ¾yNN;õPGíkÿÒ½ŠI$i°´5 ±<§?\ãè­?“TøŽÓ³ÆÉGlòã4Ó½›ïÓ/oÕl„ÑUSºª´ø•¯,Ü?³ÓÞ/Ð׺Šj‘Nd¥ƒÌòœZH/Ü`|8Îû­m!Ç®ê)ü¦Ý™mÁ¬usÛq$Œºu÷Y2Ž¢ ºvTÑÔGQO æd‘H×b6!}Èqè¨pGL.3œoÑuO U,-šænÃØ±=}A û/šŠÓl¢.4–Ê rN\b§c2}N´ü@ÒËUÀýohتÎ^vÀŒ’? B×÷‡Èc©ãVc€-X¦<älyÏâ88õ-œdçÕÄuêµQǵ¬@lÝGq ÓýjOù+Z™$­ŽW˜âËCßו¤Œœ{ •·øÜ$Œ=¤ò¸ °pG¢9’×ã•í çb=:-ux,™Ðx‡Ò,a¯†®'ŽP~¹Êÿ¦ì?Íli½‘üÖ<ñª£x)©ï»–¤RZ]÷ó¦p‰„|‹ù¾M*(ýÖkmoî÷ÚŸ%ÓÐZÌ4QÉsƒäsyåc‰ËÖ͆âWoŒƒ<Ž1ºÇ<Õº‡”Uw‡<ßm²>×~lžYs+éÏ$ùòÉfï×nW4àg !ÄAŒ8t;®LȤçþJª#ý£û–‹¤ÈäuET¸>¡¬þ+Éû=*L:§TP2ÖemM#&–¸ òÜÀÈ·ûO6G ‘ýK°äLÐù Ç]÷G æµKÅŠØî¼WÕ—V»™•WŠ©o9Àuù+§Ãß¼@hȃùy.x98«cßà¶d?4=zª`z.' ÎÃÑpx;Œn¨ 9ßq×+µŽ\eÃÛ€qî°×‹[5· î•í¡t·û,•v¹ã2e¼®|xãl|¸9ÁÁ¹eÍgß#9Œã$tÜ%üñ•šFé’¿UâÁp“1¹ßú%C‹@v{1ØÁŽý¬ÎÀr2ADDCóTÝþ)ˆœª¢""""'tßdDM€ô;¢",mâ‚vÓø}Ö²³²è #W©õΊ’˜±ÝÒÈvlm¤ÿÍ@ÝUâOŠ7ß¿Â5MM,óù‘CCp–±²1¢LvÝç=ò±¥Ú®ç¿].’2ZÚÚ‡Íp«’‰'rùephØnI8{.Ý#ªïºjñOt±ÝjmÕqlÊŠy9\¶ÞŽiîA†Þ7Ññ"¶[Á‚›SSÅÎæ°rÇVÁÕñŒìFÜÍúºf´*‡u ¼cøz¸Cu½q?H7ΡËÅ™#y$É4c³s†r7##¤O§¢šI@cc–ïœÿà¶#à^¡³pйM-ʲ#&'Ìœüã×üŸà+yÇ7HÍj"šF2!À9Œs†:gr¶µÃ[L6>iÛ5+ãt46ªjvº1ð¿–&Žo|õϺ÷&Ë.a È;šÂž7gò|7j‘çÔQGïÿIßü• ¼3>“ý?h‡×IlXÚ È/!Â1ó/åÜ…²Ûݦ‚÷g«´])ÛUA]éêaxÙìpÁÏæµuÆ-_Þ ]4ÄH~é u,Î×Ó»xä¹Bì«Â=orкÒß©-’%-@/Ÿ•³°à>7oÑÀãòô[HÓ·{v ²R^mupUÑUGÏÈ$aìFFÄ‚>௸¹ ÆT~ñÏ­Û¦xBlÓòWê9¾ìÐÓ‡ véëÂßñ¨MÁíQ¯ø™gÒ° }@mL‘õŠ¿¯Î`8Ïrը頤¥†’’à§…Ž(ãhkXÆŒ5 v0»ºŽ}U°qüWÎbḯþ cv;{®/fG¡ÎvVÆ¢¤{î-npe‰ía9Àø]ÿ5©DE:¾Î–½Ü2Ô2·Ë7–µ¬å¤@Ì»ÓoÈ©FáÈÌà‘Ôû¬?âÏ]?BðVëUI!†ãv£hœÇc2 ÇBÖ`Žä(åàC~œâ%f´®¦¢°Óùt®sA²A†‘ëË9ö.iS°G–üX?UØvØŒL¬ãÄÒõ^nDŽºRy]Œ¿™ÝGqËÍ·ËÑkÿKÚf¾ê{]ŽŸ>u¶*Xð7æ‘á£ù­ÂBÁL½ÐÑô\—Èæ—ç’}z(ãò¡µœËÌÐv!ÕÖKcšnµ°Rž\ç‘òâ0ü¹[aÁÉ;.ª©YMO%CÈ ‰Žy>€V¹¼Œx‹Ñ$Ž¢¯ÿQlyƒsôUÃ]¿\(öj‡Òéý-¤`•¸«¨šáPÀ~ #hŽ,ÿd™$?6E”¼ih´ç‡í=Q-®;•Ö9+ª¤¥óµò<Âç8gý—Û¸+3L f2vÝE¹õáWŒûеôzo_SÓUrD[ü¦&Êí€kÝ4sHp•®'˜m(išÖGåäO„OûŒ.áè©¿ÍCŸ´R¡ß¤´mhjäØõÞ6ô]¿g$2{W$N‘o‰ÎÙræã×âj˜]“tÖÎÊZYjdÏ$LtŽùOù-D¾¡ÕsÔÖ<ºy!ÏöœOù¬ùàKMÍxãTwÆÉ!°QÉ4Í~y¤2±ñ0‘$¸b1Ÿæ©DLî£'Ú%<‘ð–Ã…Îj;ÌÇÂÒ)§gÔó?ºT ¤Jðy‹‹z…3¾ÍƼ/1M¸rñŒ ϶ø"¥óZ1°ÈÎwÝAoÜBuó]Óhz'9´Z{ã¨!ÿ ÕR0?VÂ\½áG-7c¼j]CEc²QI]q¯—Ê¥Ž 2;~ä€ä“€§Ï…®TpâšëwÕÒÛëïwjaHúx˜d†žŸ$º2çlò`>n£GŠ> ÏÂOÆÍó锄Q½ÁÎûœ‡$Ó½ÇêXIÉç%¤œg£ußLÞéï¶ZÉ(nTrÓÎÁ»‚]ˆ# ´ìA ìVÉxÄ«WôDš3UÑÂŒ8¸ßlçîZOQò*þC¿eÅã ƒŒ|–2Ô|áþäë•nŠ¢Š¡á¼ÆòRµØw6K"sZI$äã';«çLY¬:zØÛ6œ¶Ð[¨éÈž’6±­qhÝÀ~Ñ$ÎįYPœÊ êï 3M¬ï—š=AGE¥*ªßQm’9¥|Aî.Àü-Ï(w7Ä0G\)ƒÂƒŽi¨kkÝ ®žÔŽo×:8Ãÿ‹}ËIßus,5ãJ…Õ>õi§¥|ÒÆ)&Äm. 2ª"ç`v æ$ö“Ñ@¾oÆzcR[qŸþš‰mUÃ<ÝÎvFÜ;‹PpöqCý)§H%­ø¥¢‘Øp;dò<‡ ð“ÕAHùãsG7Gd ©eàk‰¯·j 4ڵߣîdÉm;hjFîc}ƒ'9›¶î*gž˜À98ù-txÜÖNÕ`ú«úÕz º@g·Íí²×ôxê¡õ^£\\Àã±#8Qí©åá–›£æ’ÞÌ¥ õ-§ÿñQ­œÞüBhÚPîQ ŵ„ŸH—^L-¤®º‡ò³9+ r°4ôÜž‹]3ª¼Þ"[é[ŽX­°¼îØÇ;¯NÃè¯?³~(Ä­H÷1¥âÌ9I×38?@§zLå0©ŒõTÀ'p¨@=pHÆøU;Äàì7*Œ+˜®rª±ÿˆé<®ë‡sæÇTÞ™ëæµû˜Þ'i¨+ª<˵#yÔæf ºÿ%³àO1ÿ’nIÛ>ÙZÃñMLú_Ö)ñÌ럘v~ÆÇ·ø8.¼ÊŽ6hèá‘?ô”a¯yÀhó¿®3|-ŸDì±®Ï_çÝyšÆIbÒ™bɾw4Þ¸…| Ð6»yË û…²ª 8gáqŒE½¥=ä¶¶>h6=¾k_^!.”¼Oñ{nÓ¯¦ÝOt¥±rFüó0JØ-Ü|OxÏlE°HcŽ(™Lk#cCZÖŒ@Iø±è^ñ×Âv_ìG‰öÙ«Ÿw±ÓÅ M;^Ï'îL|¯t€`;Ìk¤Îy±ÊÙÝdo ¼H{Õ‚SSNÆu–`M¾Ík¾l ‰„¶ªšÿU3Ù3rÝÚö5á¿/ëì]¼=Ô—-¬(/´%ÑÖÐT‰C^ w‘è[~khš/Q[µf•¶êKLžeÂÍî3Õ§ÜA÷ ØDEM†: îª"""""vÙè=€APˆ3ö(ˆŠ!}¥µ-e‡ERÅ-M\ƒäÖÄ?ùADžÒG_Äý-E)`ŠkÅ#$/8ha™¼ÄŸLeL/Ú…‡…µP&{¦¼SÊÙiag,¤oœö·Ïçîýômƒ‚õõ åÕi ú1IDT=S#ó^v¥²Úµ’ªË|¶S\íÕLäžš¡ÌxÎFǸ z‚…57ƒW²÷WU¤5=<42J — w—BÂG0óø¹FHÛ''ºÏ<áu 4‹­¢Zz˵Y¸WG—æ\ZÏRÖó»ßr¯o©-zCIܵ5âVÅCo§tÒžîÇáh÷'{•ªÝUvªÔ:¢í~­x5WÙk%ƒ¤sœ@üÀú)/àZŧôí‡Rñ{TWÓÑRÑÈm”“Ô|-ˆa¯•ùqçc7ÙÃ|©_¢µæÖ^gô_Q[®„sI2þµÎ2Xpà=ÈÂìâ6‘²ë½_¥µ8–޶>RGã…ãvHÓÙÍ8#ò;­õ¥Šé¥5=ÇLÞ¢ò.VÉOP’GG·a–¸aÀ÷+³‚üJ¼ðóVÓ^-2¿•¡¬«¥/ÄuQgv8t霠ïê¶W¥/¶ÝM¦­ú‚Ñ)–†áNÙáq)õõ ÓÆÛ/ˆwk½D^nöC¯::GÍKBÐâꇴg”‚Iöž‹_|cãgî×*ŠE_zÓŒ2Ù2І·;da¯píñ ÷|è{Ʋ╨šßSžÑS÷ÉëË9Y$ÍËŒ8îçsdœg9ÆFv ¼ûÌÓ5‘ÒÓ%œ–‚{ t_ˆ;ÇÅU4‘¶®¯L×Õ‹-'Ø $cR@ø^òà¾p ì œt¶fÄÖ††0ºï^>²¤ª­ÓuðQÅóº–v²H •Î…ík°K†rµ“áÊWñÃCSób÷K1>¾SĘú–´  `'âÿ5òÞmÔ—{U]®¾5l§¨ˆôsÒ×È•ªn&éjͯ/:N­®[*Ý\áýd]cxös OÕ|zf÷q²Þin¶Ú§ÓÖRJÉ©äiÁd9m†z΃XhËV ˆžz‹\5µi kÎ×´cð¾)í°=ZÄ»ºã¬5µLÔñ>²é|ºJøã`˦žy‰vÉ. hÜ(Ñôš‡vM!Dï2+m0òoúÙ\Kå~ý9¤sÝŽÙºz¢".·ÈÖ‘“±ÆËR×Béc¬ÔˆK°c‰§žMÁý ~N+ x-àÌš¦ómâ> €:Ën¨•Ô”òGµ\ìå ;õcIÛ ¹˜ìBœW*8ë¨*)d`p™…¸sy†{ÝpWE-»’§Íys‹[€ã€I8.vÝÉ î1òÆ·ª‡ßiDÎÚ +¹é¹™î>ìÇÕß™XKÁ•L4¾%4“瑬k䨌z¹Ôòµ£êH f릤t9¯†ëQ÷M]c¿ØSÉ.Ã÷ZNÞ«Y~(¦Ž^9ê(âŸÌŽ#ŒsÈï)Ž{=¹^çŒvÆ;,»öq†¤IžPñen27ÇžÜãø:¶#U; DMº* €AŽÝc¸Ê¡Áë’€1×¢å”XïÄ´B^kv÷iÝù7?äµç¡åš=ef’š›ïGp…ÑC¹ó$n¾çÅm.fÄÁ#ÇòŽ`Þ€ã|{*Oe­ ŽOz²NC|ÔŽåÇLÑ@Ißæ­îVÒ[8Á¤î5ÕÓRSÜã–i_ÑÜü–ȸo3g¬¥.m-ÂvµæF¼½"f´c<²´wÜÊû5éh=@æÄéú.§ hÉqò°Æù* x ™°ñÒš7?{%L`zï±ÿ ?E° 0­®)jº}ÃÛæª¨kdýFù£Œ¸2LaßÕØ xÒ3ê~(^x‰q`˜YÁt/ þ¶¶£˜zVy‡‹ØT롎XéØÙ^K€Ýw1¥®$œå|ZŽ×óOÜlµ_ÔWÒËK.Ùø^ÂÓü „~ îõ>ãÝï‡×J†5µrËk˜ç uU3ßÈ@ï‘Î÷”éh@öUÆå‡h§+Y§+ÜX÷µ“R‹·ù<øí»oU_³š©Ÿ~ÖTb9yÝ $üÀüÌÇ®È)Ž™V§)ÅW 5u9|±óØë4o-pýKº¸Z¬‰î–00Û,÷àzµ´Ü~·ÂXüÕÛªàÈ8Á l›û|ê¶ߺ Tè‡m¾K‰vøÎ깡23±®27¥­ zŠ*ŠwÅ,m{\0ö8d˜*x¹á«4ß]n¤òtþ .ž´‚Øj<è}Fä=¹ê@ü'wVÍ%mLwbÃÓFϼÀѳCZðï =ÎOuŸ<qšm/tƒFÞåÍŽ¾£–'ž´³?î¸ã#·_\ÎwÆÁU}Slg9ª"""""Šƒ`ªˆˆˆˆ¨ãÓ+‰“ì OÚ9[W',ÌãM“Ç~½õ‡8{‘þèX‹Ã…ÖÙeã~“¸Ý)'«†:ðÆÅ.]#Ád]vÀ{šO°RwÇõ<0pŽÍ,Ômel×ö(Á-ciæøIwv~Šáû:ê¼î ÜéÉÞ ¼ƒÆ6ù©0ŠŽÿ±až/ÓRÛí<*²ÕT>°?ïU´ñ±Îˆt y aÉã=zaF»Ÿ üT\ÚÚŠª-M+Þg6©ˆsûMóÆ6Ïð_n‘àˆÛÍ[ÿJ^êtÛð]=uúI^íˆË.~H=KFÄeM­1CQhÓ¶ËU]Á÷ªJHà’ªA‡Næ´ò2w$eB¯|]v¥Ô2h 4 YlõVHý*©£þã2G»²wÀQãHÙnÚ§TPië%1©¸Ü'S³;dõsf’O *oxƒáÝŸHxCþŒÒÖÉzwȨŽW4Ÿ½TrüŒþÛ¤yîÞŠÚo5T5쪥¨š ¡xtrDò×°Ž„¸*UpÄÍÚ{Ý«Kë™ ¬¢«‘´ñÝäpŽHvošz8g»b É=WÛã뇱UÙh¸“E5TŠ+££oã§q"9q¹cþú<ÊE–M–ž„·~˜S#Àïžé"á•Ùáñº)'´ÊHøøß¾AsÇÉÊ\ç¿d;.`‘®lk˜eÃ?žW`Î7E|]ñ)¼>áíc©j9/צÉAlk]‡ÄÌbYǧ(výçþÏýÛ¿.:Ê®&¾—NÓ0ÿÒ¦ËXGcÊÁ!ö%ª|ZÝÍLHÏâ=Jú•«Æ×»…z [*OWú* Ç+ÜFrG¾2µñáÚ:!Êyj§??fšSßåü–Ëgûq?/¢‡ßhV‚wþhâE¾—,hÛ³šÓ°Ï4L—°¸žñ…ZàÇö5,üq:;µO®ÕmmÃ2Ûƒÿf£>0{µ¹ÇL·ÔïNxrâ’ãý¦ç¨-T’Ø-5rN+ «Œ¶oÕÈb{XO>Ïå'Óu6:"""./8Á+W^,(%·x‰ÖtóËŸ^*gNYcd­úò¼gß+"‘gíy¥ã´”¦BÆUÚ*ïO„±ã?î•ËÅ/ª¸ÍÄ»^„Ót/‚ކêú ?;áu]D’6!!e£#À;Œì'¦–²Û4Ξ ÓÖZfS[­Ð¶žšÙ­=KRã¹$“Õzƒå…RO§ÑQæqÑB¯´šž¥·½Xé˜êihêâŽ07kØø‹‰>„=ƒü%G¿Ó69hy]'–Ñ~£ÞÆf…µõ×P2ÁUåÞ[æ[e§æåb'6 qÇ匭Rq"æ/šûQÞËy ÂëUR7(|®v3ß¿gÀq;QB9¹ŸcænGÃ;:þjvŒú"¯tELäãuUGgu@ORñè©‘oU\{÷UT'Ø« ¿‚å S§«óvýCÎVµ´ýY¥®§ª/‘žL­—š3‡Ò -郶Ëj¶jˆ«-4u”þh†zxäŒH0îW4Ÿ}×ÒN=Â׌Æ>/z¯™†6K ãëñºDÜþm#è±^Ÿs£‘¯`·!£×ªÙïeeFŠ ªdNtrQR¸UH}G4-’¡€{õnnE*,7$Ç$´²°’6Áa¸P#À»ÚÞ<Úù‹G5¦¤ ì0íù5°rrÝ÷ÎÊ} š®&†}2ÂrÖZp¯SŬ¸ybÔÑ=¯7 (ä”5¤L,¬Üà ssí¶ÊæP?í§¹·Š6視?ÑÕvød‚6¼4Æé÷Û>fÞ¸>Šìû:(œju­Ë”–ÒSޤyŽ?Ì)„ݱÔý,+gŠÅƒ…ú±Ï”Y+ Èíä=j–÷S5£§+AßÙdÿ ÿÒ—qzÓý ûéÁOVi~ûŸ(‘‰ e ²B‘•~&5¾¨’›ˆÜ+¬¶91 æCÜßÄæÈC£x÷kˆï•viï|1¸† öÝíN$:Za4`ã;œçþ}•íhãw noÓë‹\NÎ?ÖËéwÿ↫ÒÏy´^i›SgºÐÜ`pËe¥¨d¬?"ÒBûö# äÁçì<*g±Ê¯8ʨvþÅQþàœû+ŽºŸˆœ5ºiã.­1º{kåéSZC=?n}Vº.ÒU}îžÑ|'žÖßÑÏhpw–#‘ü;çay5”•¶jÈ[SO-;&c'§s†±8×´÷ëÛ¡u `þøµGÄ-#Ol®•±j+mñ ®ÃþݯÔÎh®l^](8þ±Ä4;îáÓçЫºÙêj+$©©˜Í$Ò:INåÄä“õ*pxá#lqœK½ÆJÞ sm‘;ÿG£q‚&2'àåßâ |?h†¤ž—Li+O3<»ŒóVÕFñâÆÇ‘û¤½ÇæÕ üÒ׹ؼ£?5èÒܱ¼H>R:ìz©ÛásˆÑqwDÞtv±€\* ¤0ÖK À¬¤—,Äc œäç=T,âN™“Fqû¥d|Ïý]-4rH|‘˜Þ@Ûâaiú¯¯‡—étγ²êf²I-•°Õ?`àÇæ“îܪÚ}U5m”“2jiãl°É²×±Àà{‚qß9Aœnª¾;Åu=¾‚Zš™ÙQ±Ï|ŽèÆ4eÎ>ÀV¬¸ûÄJÞ&q*á¨&{Û@Ç{e9;ALÒy?yÛ¹ßÚqí…=¼$ðñš‚–š:èKnW3úRàÇ e•­äŒ‡ZY¥¿½Ì³ZÖŒ5¡£ØaU[üK‘±pçRÊㆶÓTOÿRrׄùŸˆí èã.wßeiÆÇ§”¿ %l¹§-a g ÇÖšvÙ«4µÏMÞbó¨.TΧ™£¨láèàpAì@Zçã˜ëLö[»ééu^‡–Š–ˆÛ n¶ç¸º–©ƒ ºFór»bKÏÂ匬*»mÎÚ9ä‚¢6H¥ØsAÔ³ßÜC§âG(oFHÅÒ!÷{œ 1ÎÞ§ŽxÆØv:‚BDDD+„˜ 9ǺÖ‹úÆWø‘Ö33ð²¦(:cx©ãŒÿ¬LŠÿà>²f‚Ö•:˜¶'ÉOk«d1ÈÞfÉ+ã-cHî9ˆÈôÊÍ^ ømý>×ÜXÔ³:ak»yÐÆ9j++žá¹ ãxÆ7#ÓyÍ'˜< gׯºîÆÛþj¶óT>¸Êƒ?iÁï×úZ׿-=¥õç$ŧÿ­ôÅDÔš–×ULâÉᬆHÝèàðAüÀ[‡\&Ç–r¬®/Ý —†šèÑ!4Öª§·eÁÞKÃHúµD äÝIo³Â­Ôüi¹R½ä6ªÇ3y}Ke…ßË*4n«„DDVoø•¤xso§ªÕ@ê—ÓÁ fI¤ÀÉ!£°õ8êxˆâ³®<@ŠïÃýY~6€ÆHfŽJŠh™Tâþfœ †5Fø=z¯«†~&õÆž ‚õPÍG@$kŸ÷±þ°ûA’7ÇNlŒ©±¥/Ö­O§¨ïÖJ¶UÛëbC#Oní#³wz/Tvþ »à õþJÅñ8¦àv¹•ûÿæ Öbè^ÑüJÖ6yÈc …Í-kGí8Œù­«iO?ú1j Î(aóYŸÂÿ-¹{¯H×l­yøçŠ8øý^XöŸ:ÙFòü$5ÍÇäú¬'@\×0‡Êìÿ³_ «à^™²9çôL1¹ÄcvL}91ôW¥î¨QÙkkGX)¤—sð°ûöP À쎖Fóü3[ª£#—=!æÆ{tëì§~»Õv¥kuê®jjh^öó¼#ƒIk2çÉZдÑ_8ÝÆöÒµ—Eq’Y÷ü4ñg¼Œõ §¾07+h41²™Šž>XÀÆ0g`{lÃ\mñ¦4'›j³o·æå®Ž93MJ}%uw_™#˜·lÅ %Ç-SfâÔºêáQ-tõr­@ç±ðà40€…<øOÄM;Ä4/z~ ¸1Â:ˆ´?åpùt=ÕµâÆÛQrà&¥´Í¨––Õ¼‘¸‘îÌ~‹øÕsÜt=ßLTL¦fMKÌì¸2nbæû¡ÍÏÍåIr@PÇÅl³ñÒ\0ÚK-37æ’W沇ÙÒÂ4n®p¹Á‚_ÔŒ©QúÏìü×>½Õ¡ÆÊZªÞë::'òÔMa­d~äÀí¾½3îµ_ l[~ßÉfÕ/¤âÅEɦ0i-OÏ1#eM<9ø”ýÅ*`†¦ )ê"dÐÈÒ×Ç#Cšàz‚Ä,{¨¸Â[èy­Ð¶ˆäp?¬¥‹îîÉÈ1‘êUrð¥ÂŠ™_%3/öîmùinnÃO¨V½_ƒë<2E=‹ˆÚ*ˆ^É*©aœ´‚ ´Fr07Êóé8Ç 9^ÉtÇ(*"®¿y©«¦øKK´c;zÌÝ/âÏOÕѲ’½·˜hÚ@òo=’ìœ0»·_eÎ&ø—Ó癩óë|p´¶b-Ÿx“З@ãŒ{a|Sx¯Ö™ä¥Ô"ŽŽ¡‡&)`¨á»õ;n:û÷[¼a6ZÇ2]M$8ò®E®ß,9ü—‰rñm©æÔ³PØ­”ô æS?šC æiŸlÐF@ÇÄvè¥ õ•«^é=Oel‚˘ø¤24áÌ>»q… |fðþ—Hkø.öj ⡾‰k*ã* ¤¼Œ4žq¶{Uô}%&±‡ú?t«˜>Š×U%µ¡àJ^œº6ŽQ×*ËÓº¦åb­Žãj¨’–®™Í– ˜âÀ ûõ[VÑ÷¨µ&“³ê(#tPÝ( ­Ž9-l±µàwËÕ΢®vT'p0ªˆˆˆˆˆˆˆˆƒ¢"!\q“œœ+ŽÚú“@ðö¶ôé#tå¦:v ÷Ÿ„r‚wÁ#>‹\Ú:ÛuâWíô5mª®šãpd— š Ëc/d„ö§Ø-§Yí´6‹]5®ÙK-,b(a¸k:¢GÚ^ØDèbfx›Ï­åˆ…Í凙ÄzƒÊ÷Šò>Í[‹Û}ÖœžI)`¨Ç¡kœßþZ›*Žè¨ÐÙrÁʆßhv©ÅV›Ò0JÓÎ$¹T³”çàæ† óêêŸÌz8 ¡Ä~+Y´´Í¤šo:½í$bš0]&ã¡ rƒêà¶qq¯²iÛ[*.5ô6›t lLuD­†60ÖŒœthñ»Ã˶º´Y5ÞŠ§§¾Ãk¦šóE0’WB\×±ÌhÙá¿@Üs‚3ˆ?PhäÏ.1¹÷]a…îäØÿÍOZ!–>M¬* •zŽCär‡sEM œÀœn^×»lí˾ä,[öi³CÄÛF¨ŽÌ†óoË àv??-Ìü”m£‘ÂLómÝlWÁ† uóÈ&•’Kk¨š„€þg5­vY; ‡Ñf‘×5ÉuÔÍ:IÇr¢çŽ&ÿGôôR’ 6õ¨Æ%c]ñABçÛœŽQꊋ>4H×¼f±Ú* [©¥ûýÄ9¡Í4ðç5Àõ<±ÿmÝ'™J[‡í»ç+éEŽüJÜ&¶p'WU@àÙ@aô‘ÍŒÿxO,|ÑA¯cs|¦Á{ËF3¸È;’E´“¸%Tãž‹‹²Fz(£ö‚pþZÍ=AÄkty}µ¢†ë‚rêw?õ/ÇO†G8g¯ë=І'‘;²vÏE!<ñAº7‰4ö›„þ]¢öæÒT—;áŽS´2ð>#ÊO£ÖÂKÀ ~k–Q l2ºê ò^[Ô´ájóÅu¨ïAE’W—F´wq;êT5к:ïâsŠ·mm©¥¨·éz)[„•Ò e,nÆ2Ðì½Ý~1ûÙŽåÂWÂÉøq š $‘‘ahçŠ^¢pâ7ù˦Ë\ú÷JÞ¸}«î:N÷™YC/(~ ˆõs3¯Âæïê7²÷„>,Ôé]kK§îwE¦îFVÔ}âR#¦#žÙ×w8c¿8ôSÆ–¢ šXª •’Ã+ø¤k²×´Œ‚pBæIþ•\ð[ŒHíºÅÞ+*‡½dø¥Ž4-k‹Îi•sG¹îB×Ö…õZÊÍIL’\©™Û|ÊÐ?šÚ³bhb6Uù®BÖ‹»´oººjyŒA44mºè`Ž7´{sµëQ¸™ÆIÀp'ä¶=àúæ.°Æã3¤¡l´²=í nDÒÖú᥹8ôï•|ñb_#…Úº ;Ec­6zbî wƒa8ñ¤ã¦-?½9³¼b’PîòF=ð¯ÿ´^TUj^ƒ£˜ Z›]TÖ’33ÃÈìÜž§ñ.g½>¥«ÖšžñQMOQn¦§ŒTT45”°<¼½ÞaØs´c®î®n7qöï«._è烔µW šâúi+ Ì©øwïðGƒ“!ÆÞ€dÞ<ð˧ôΞž§[6+Ö¢¸ÒºÏXhàrØA¿§ëùß0ÿ‹<7Ô|3Ô3YµñSù²¶Ý^Fb­¤aÌpÛ!¥¹oQÂçÂ#êj?Òúz³“›•µÏ9Š¥€ç•ãë±ê;-ékþâWb¹Q¹•V›Å#¡¨ˆÙÌÞY!£†KOðÛu ¼0TÞxqâhªú˜éœË„Öªðæ¸6£¯–[‘œÈæžáÃÕO3‡Ÿä ×ÚK8¥§+Z’k1cÈ'â䙨öý¢²Ùß#?¡º²2å œìŒbÛß±R”»¦{tF—w/?TDÙ´ÕÒŒ¶J)˜íº‚µ\Ö²26Éú,ÕàÜyüo¤· vÊúÚb9Ëê„SCPã×-…ÍÁýå+¸Ñâ.ÇÃmo—–ÉYs¨lBZç1â! ^Ëæ¬'|þ?{ ìðßÜ?ך’=išáKpž2VÀÖ6Gn]s\áÎÎÇ;²º!82W7#l’ù¦‚'2_6KÎÎWs´;˜~éÏQ×eiêNðûPÆÖ^´eޤ5üáßtkÍ‚3ÌÌžêÉ«ðÓÁéªTÍ3WNKËÄt÷)šÁ° æé¶qîVBК#MèkGèÍ1iŽ‚™‡—>\g¸îãñ»¯ªð¸ÿ¡gâ .ZnާîÕO,ž•îÁa’2î›^Ë]ÚÂÁ~кΦ‚èmÁ‘ÐIÏ)kÚáÔõÙ\×ío±hý5ÅqDúÊ»¹£¹Y«)ÜÈD¬æyÀƒå½ `±Îç¶Æ4ME¢§GXêlCOgžßO-13•‘ÀèÚcv¤l½¢N}}'8!Tg=Q """¡8 TæÎØÂ³xáªn'„Ú‡TÚ ŠzÛ}/™%³%ÍnHì ?E«ÝCª¯#äÕÜjjšçŸ6Rð\ã—ýJ˜g~Ž·1yÖõÇ-mLÿqÄ~3•îSȵvCN="ûHë%žë¡¡wàe5dƒæçÄý@¸}›q²=m«Zç4Èm”în?t¿'ù…8UУFß5Q‘ß?4Tq!§bµÅãVøû¿ˆ¥;ekáµRÁo̓ 2=§Ôù’¿?5˜>έ6ÆZµ^°‘Œ|’Ï®ü¿Æy²Œ÷2E·öùþÑû…u4zÛFó[7.1•‚&îzl$þ%F®q_XèJ§Ti«ÅE x!ñ³7äus–“ï…zpÆ“Nq»‰’[u¥E5޾äÖÊ.4LŽ›žVdÄ`ˤÏ\g-ïœ+“м5à/u”šnå⺞ISi?U΀/‘­- àÔn¨ðá]ÃçpâÝdЊ®åEGÌ7)Á­„¸—9 søG/\OÜ;AÉÒtès˹Çç… 8QäqÇFJÇ ÿH©#Þqiþù-mŸ’3‘ÕP÷ÿ5æj{-»QX+ìwxE¾¾ðTFiŽÛÐ÷ÕjßÜ8¼ðÃ]Öi»«øšâú ÂÞVÕÓçávÎ6pìAõVe®d¹$z­£xoÖ1ë~ 黹«5UŒ¢ŽŽ½ïq/ûÌMk^]žîÙßâYƒù®hˆ©ðº*0¸g®ß5«¯2šºÕÙÇô¬ŒÀçá½ûm²Æˆ²¿„Ë-%ûŽÖ *æ6H#2TÜÀá!…á§$`d ÷éЭ›S?Ì’»#s×ù.ýð0PŒ“²¡ƒ¿ªâA<§8èµËãžF»ÄMõ­w?%-³OÓ……ì†ÿokÝÊÃU1'Ã+lônZ¡¹ ›úŽVÿߪõp×4±Æëø×d¯á [3¥"¦Gs´X‚CÌ}U®Ø›–s^êZ}¡Ú£PÎL¡Ì¤Ûâo)p#ÎÃ|ýÜgá ¨ˆ¸M,PC$ÓHÈâ¥Ï{݆´’I=P£‹:®ý⌔ü7Ñ•aºjŠ_3ïLiä,hZ·ïñIkÙÈîí¥ö†ÓV­!¤íºbË Š‚ÝNØ"ÈÏÀÝî#«œrIîI^É ƒnÝÔyñ¿ÃHu_äÖ6èZ/:nL÷¼ÔcyXOöF^>NõP6’gG(-v@=”ùðG­gÔ¼.–ÃY(–{ ‚"_—y¤z7èì³Ø' îªZ9vØc`5ñ8Ö =jù<Ëi”39˜IÆ;;8å=œ{('áò(åâòµ44ÒÕÄ×79•€rg¨q|–Ì,uÂçg£¸ŸÞ!l†7þ&->ã¢úÈÏæµ¯n2ݵåúë1J»¥Tï9êçÌçz_@¼šW|d»ŽóðfÛÕ‡AÑÅx5ZnOrõ2=81†8vi‘Ï‘ÛïÊÐUÏÆ..pÖ·…úºÑA­-•uõ–*Úzh¡sŸÏ# {CAhÆs·U¼1ê* )ÄÙµ=# ·Ùë¦ì’Æ´dã˜ó` ï’:×Ú†á«u½ãPÝdy®¨2¿÷[“³G°}vœ»j[žŸAÙ_<±\n QDîQ<ä°»  ßa¹Ûu´î·©á°fžá¼M®Ö·/õ{•æ8„ò:G9¼”´mÜr7~ ‘Ät j—¼cÕ\YÑü*±jm=n´T>†ÜÚJÛ&f9±ÆHcC€#&NlìÜwV­«_hïü,ºèªúRjÆÑ>¦žîÀûÃðM‡ls;§p ÈÜÂmO¦u.‘»þ‰ÕjÛEyŒJ!ª½œÅ¼íìæå®l²ï„®-I µ£-×'½öK´í¦ªa†Âò@dàtÈ'û$ú+ÓÅ ž³Nø¤‹QR2W2²Žš÷Ï.Zi+ñÌpHFìÞSBË_ ÒÓGs¦,|p2xÝÃÚZæ‡ 8lFýT7ûD©±«tmS²<Ê*¨‰á<²4þ{¯Wì阺]ožìbÞVØJ9ºgÙKæn2 gUcD´²Æö9Ítn£¸ ì´ùSÊC`h ó–àõÀ$ü–eð‰{´X8ál¼^n´¶êz:±4³¹Àh‹CFß$uôõÂÜ}²p¿Ž–ö³Fê;µôó[ßÎb’µÉ4ïÈÈÉi9Áô¨ICs»iÛüRFéí÷+uFwË$‚hÝ騂:-•ølâ­ø{Mp|±²ùFÑÒ§q ÛÍá~9†:d·'9@tè˜DXgœy³pδY ·ºí{’7Êó„qA‘ðy‡s“×”ÆBÆúKÅÅ Ed0êm3<wëj¨*‹Ìc|§·âßûyÇ@z7j®¦ºÚ©.ty”Õp²x¤-åæcÛÌ;mÙ}.yß~¿šë¨žš‚Zš˜iãÎ9¥xksé“…‹o*á¶¶¸E ʶžù%/ÏU‰¤sšÉXÂàÖƒŒ¾ù¾/8Õ£u6„¯Ðvsu.š7~«‚ñ¸Õ7~Ùnv'Y{ÁeʺãáßO}ü9Τ}E$R8“Ïs87À|?áY¥¥¤méÙroO’ª""""""}S|û ïº""C°Ê님¼’9qëÝXž"Zþ k(èmò×Í5šª/*-Ü¢pæ¾68ú-T1ïüÖÄ<C-m‘Êá©}ECXZAp39 ç§Hÿ'e!ÔûIœÏé>Žc0Ú:¯„výcÅön¹ç‰úKM”dçÒhð§z£†ABÞŠ¨ºkÉK3÷±¸í×¢Õgî&éÄýSsyæó¿®pâ3¿ÉO/ ^»Fx~´AQGî5Ì–êø#~Ï2üQ´žÎäƒè}p ï5—55íôüBeÒŽª:‡Ï¾®'DÊ`áˈ˜FÍøq‘œã9XÁ]œ.Ó÷íW«mÖ=?IS%Lõ13Ï…"—/J÷4PßÅžØYCÇ9¸Åâé÷ØRÑR)ZÎ_:(rs¹yÏöG¢ÃökÅm²¶)i*g‚f[,R=¤oAÙNOœZ»k(kô¦¦¯¬¯ºÑF*©jfk]šo…¥ŽpÅÁÎÎ]œƒ×e x¹i~)jËiachïU‘0ròü"grœzA5pør¾Ôéî6èë…+ù9îÐÒË“€bœùOèüüÀ[Baø¹sÓeÍX{Ñv® ðþ«JÝH„UœÓUˆ¹ÝK;wd€dgbi#;­^ë[šgY^ôÜÓ¶¢KMÂzÊÖò‰ R9…ÀvÏ.p®sÿ§- 帴ÿH¨2AÆßxfGå•¶E‚|tTUSp¤ÓT˜›%Æ–)XýcKúlzmò>¸*ðLçŒú7œê:Æäí3O¨Û×Ðdàô[Enp3ÕÙ sÔ’¨æçl•gñk‡:_‰º^K§¢30eÔõ1a³Ò¿÷ãq™ ÷A®!xOâ–˜¬–K4¦ÞãÔNÍÈ ¾'‰É­/ü'Û9ïÀ–›â’Óú‚Ñ«¬U–›\•,–‰•C’A0²°Œ–Ö|YÇÂ1×*MtØçòAœâªJ©![š×[éJÚ­MtŽÛËC+N\ðÜ7r Ðnv^äTÁôÓE42èäÁÍxìAºç!ŒˆWƒ {ñÜô÷Z­ñ{ƒQq«VÞi%óiç¹Ê!~ÿywõ X®®-8È8ØåQdï ÷[<@iùD•†{‰æcþ%³{4¼Ôe¤F1ƒè¾öHë¾Ûâ¹;!½N}—dú츸å¤çç²ÖÿŽ2Ãâ?Qr¸¸ùaß@?waÿU„©yþñÁço+cŠÙf㋼ë›n‚·Õ›Íe ¨š¢'0S¶vÆ×A$?ü#×c‹£HëGêMq¨¬TZÐö6Å ¼¾LGQTàè˜Â2àÖ–ž`HßÜkx¸Ààuèà|1HrzŸÕ¸`~Ák^1–ŒtÝL_³¾’Ix¸–>FË79Ç+LGqõþ e·`0ˆŠŽ8õQ«ÇÛ¦´—ôÕ?-Òñ}sãvôÔ™Æö¤9Ýõ ÒðÉ¢­œàÅVµÕ­—[0®¹ÈýÍ58Ɇ ô89#©{È$áª7qúÿQkË­»Q]¬¶×OŠ: :·DÈ¢‡r‘Ìã‚\Orq€>K7ˆ*Z[š]kq•Äâ°2¤mÿ¼þjqðÏ_i.&韽Újá©ç¦oé tܦXyÁd¬Ü`î6È!@/|7Ÿ†\Q¯µAŠÉV÷UÙßñýÝÇ>W3‰$ÇžMÉ8ž«ÑðÁÄ6ðï‰TµÕŽs­uœ´•Í- cÜÑæ‘¾y2N=2¶;±O'¦š9b•¡Ì’71Í#gÁ]£•¾äûôQCíÖòSY¬¼?£~>ÿ›Ç¨&&X™×¡w;ˆÿÙ·ÝaÆ3ÄêùÂãФ·-æÅñ5§Ûwcç…+xÅ(n7me¥®r5®ÓÕìŽË¡sysï‰à}˜a¢ÔÊÖÊêYŒ‚¸ÈyH ej¦o6¡Ï$åï.'æI\âxøÞÓ‡õô8ê¶}¢,ôwÞ<-N£µË§i-qGXÌÊiÃÛÍÔǶswÏMk\ Æ‚Y-Õìžš®™Î‚¢šZø¤nÎkÜW^—Šº¶ó º† jªj?S ·/•î 5 w$»8ƒCGkÕµöº*ø+ÙHæÃ%Dòä•­NBOÄÐþ`p3…ÆßsŠÉi&Ý+ÅÖ¬>:‰Ç“¼=rî¤úmë™Ã Ý áêÉdÔ7ÛlŸ]_¢|Ί*ȹlôãhwʼn]öÎŹhšIèN/ðωvájmÎ8¦¸Fêi­6†I0{pæuå~A#á%Bž'iýEá÷ŽBK\ÒÇ,ß~³Ô·ðÏLâG!ëÓâÀúg!IŽ>é ?< ²ë½<ëÅ;ê©!nî™§zSßœ9Ÿ{·ñeAžY³šCðZö¸t=B’ÜMÔÖž ð3@jA<¼iÉÙc½0tîŠH¹|Üàe¯15Ù à¹Ã|ÊO רµ [€±—[Œlh?‚?¾J虎ÀFèÀ†ûEmî~™Ò7fD1|ôïl@|aÀ{þU«öwÕSǯ5%œñQSll Ž^Hä`éÔœÈwô›¿EBÒO÷ÍpžFAåâ8šÒ\òvhZx¸¹²\§tO.c¦qØê Ž ú÷ÒV0µä|N«×ÓZ–ãh¼Ó](«e¦­¥•’Ã3‡1ã¡Å]üj®¤×%ÑRßTm—è o–*f 熰3 23™¯nh¹°9ð>_ úö¯@q>ÑuбÐQI3`¯? 8ü@–ãЀ¶‘Œ–&KƒØö‡5ÀäzÉS`¼]OªlÖ )tÔµu¾‚ÙNùçtO'”g”oø‰À¹ -]ñ#TVê­QrÔUÎ-©¸T>¢F‡d3˜œ0{ôVÕ3ÜCœ]°Àåõ[ ðCª&Ô¼ †’®WKSc®–ƒ/9>^ø÷ô 4ug6ú|‚‚¾68‹Qpâ«´Õ y’Ûd¦l/‡àûÓ²éIõ!¦6ïÓ”û«{Â,³^xÁKf’¶¾‘· }dš…Á²°:'|@àŽ¹ ï…Ÿê¼ðÎh˜Ö_µ”|¿ˆýòs²w‡còõè³¶‡Óv½¤mšb˱[í°akÈ/#©sˆ.$’N7$¯iÇl‚Wp興ˆˆˆˆ…º"'dECÓeF·—§rºªâeDSÊÎhåaÀô Œ­<]iM Òª„»œÓÌø¹±×•Ägø-‘x0¤©>tÅetp‰elþYd\‡ÊlÎc3ƒ¹!€çlŒgq“š¥iskˆ8Zùû@*?m à6;yhnNr$p$úg§¢÷þÍ–g_ê‰=-Lœ­ÿ’(€0ÍuòÿFÕdò™ä¿™ùü#'èµ9¬_JýIz’ЧïTÒ×T˜f#í2;ø­”k_KÃ^Ǩ'£ûävÊ*X›N'lFGµ€;çœNÛ¢W¼@i¾%ÚuÇi%µ1îû¼ôu®mÂŒ8~8åsyIÎ io)ÀwX¦Ûý;¨u,Ô¶ Zh-dóE-õ’SÌÖ’~ÚöPìn‚`Ø,Ü=ðÕ–¶Ó&·S¾ã÷fýêZ–T]ð±­sË@—;£¾ 8‹|}ãx®Úi®ºfÍGWE Šš¢›Íóš Áå./Úp v$‘Œáby”4¿Ä:©íà7CºÃêÝa[O«Ô´ÓJ$ÿTaÓðŸ0¿ ï°Q{Åãc$u€lo‰¿xÄ;»¼ˆ÷Ä«3†o¤v½Óߤ'|LºR¾¦XÇÄÈÄÍæ#Ü ­´´þ°uÚ¼-aÏåR5Ž2ž¿.‹X"|w×-„Ó~«qóñ\]üIù/Ožk߈]M sä\XóèØ”Ÿø?ŠÚJ"À>=Œ£€ŽÄ^w¥#8`˰O×ꡇe’.4hycqþ‘Ð3#ÑÕ iüÁ#ê¶–ì¹*ORq쩇wÛ°PŸÆ¸¤8ßú>‹PÕÑZc¦¤®·SÀCX@'˜½¸ÃÏ›ÿFÊÞ²ø»â-oŠº ÑÜîse©¢s$h$a¿ª{ÝÏ]×ÛŒ> ¶QÏgÒ.oð¡©÷¨;ãºæ7ß~Ämù­JqBÖÛ5-‘•.©m¾íUJ&s@2Löó6ÉÆU¸ŠãáuY â^—­kË ŠI9‡lL¶Ám{~ñUqql€“·'þKÒ' Û¢é’Xãh'`Ñœvsg+ÚdakìîqÿuY:`÷ZËñ€ø¤ñ¬<¾‚¦0N߈CV!ÉÛ~‹ÖÓzŠõ¦µ =úÉqšŽåJçjcwÄÒæ–;6’>ElcÂVŸ¨±ðFÏW]r}ºøÆ\擜9¬a†8¡Œ?fbîm×Áã$Í'.PÄpRË!=šÄ•®V;”ÓñS£ÀMÃ3ƒ•×šÈØî匆Ï*U!D_%Ö¶ u¶ª¾­á”Ô°¾yœ{1 “üZ÷áÜUœsñ;m›͢ª­uÖº)\بâ--Œã|m»–VûB5ì”TV^уêš.•Îè Ms™ cع¯qþã}J‡ ©w o©É\f³¦çªåáö½¾h}AA¨l"ÚGó5®Ë•½ã9˜AÁù`©—ânßjâ÷†(5ý†7º[}8¼Qç{#8mL.Æ@åo18ïù¨)I)ŠO38ðTæð9Ä)/úB§DÖºYg²³Î§yå m3†Æ1¹å'¿®3°R@Ì6ZÙñM«¬x߸2Nz:9ÿGÓâAd? #æîsõW‡ƒš{l'VÝgšµcîTq’~&Âé,§„Åû§§{w…z…Ü8ã$u·—NÚ;ý!u{,s"¨p–7s’Ü1ØÀî=Ô•³ñ?MÏúR‚Ó}£¸TMh­’Ss’ TòHK‹€`-|HÐ9@=@\‡1icAÏ·|­¼[&†j‹„Ñ0`Uº0ñÎXÓÐÂAgÃײÞ>,tö~4Áv¤¦Š&^­ÑÔËåŒsLǾ7=Hk =ÎVÑ÷ÊÍ7sšëDC* U+$Æìóà|EÍ=Cƒ^pGB¼G8——wÎWÙ,ÒÊàç¼’;¯SKß.{Í}®RÔÇQÿ´ÃÌ?ˆS7ÆeºŸˆÞ4çm”ÄIBb¬$ÈIŽš©¡²·bD¢Ï@î»öwki!¯¿pú²b[;ÎÞÒí„Ã&hõ.o–ìtøê±÷ŒžO¡ø¡Q¨)!wèK,•8D5óM ôø‰{z|.Àü%bK}tôTµí•ÞTá¡íÏ^S‘üT×ðy¦ŸK߬͒/::˜êÃ9]ÎCÚçÓn7Îv^‡ÚVÔp1“¤y¥½RÉÌÎŒHÂ]·áø€í¹%„|×6Ÿ•4¦½ÕVJ†y˜Ýœ²Dã¿¡Àü‚žnÛŒû.mÆ6_úõVj¨#²HèÏ#иnæÔ^±§Ž‡XÞ)`æòéîÆÎaƒ†Èà2>‹ÖáÔ6˵ö{=ѱ‰.43RÐÍ#ƒ[ [€19ǰæo)>Ž+â½émI§ëêh¯–+EÍC'¥{|±ÍËÌN1ÊI;89¬½£¸1¨µ‡jÍ\ 1>®á("šB<Ö¢‰²µ¼» ¾a’㑌Œœ;¯tÕÇFkK¶—ºŠË]SéÞæþSð½¹ß•ÃìBŸ¾¸ÁnÖœ6†Çs©òoz~à©ó:Køc >ã=Ö~áZ¹ bÁ¤·$€{£Ûó•Ln:{.äDDDDDDNéÝÊ¡Éé…CÔgZ~Õ³ õMÚ <ÊùßL¼•±ßóÍQá§Jºy ŽgÞ£i=šÚ©@A…™E®/ry¼X¢”Ê÷9öù i ÅmPúàCû6éÄz£WÈH$PSoÞqr›Hˆ‹Àâæá£.ôz~±ôwi)$’´3úÎ]šyšáƒÐœdglÖª/6ë•¶ª²Ýt¤šŽ¾ ÉéçilŒ“rr=úç¡SgÅuSµ„ ]ê×[ ¤s­µ2sŽc$dr´öp{šIôi Nâçóuì7ô]”uRST6F¸Œz•êuF§ºxk­Ó0¼Éd²ß ž ù¤¾&NÉ ƒ‘åù.Ûs\íˆ^‘Íî ˆ~\öœ€:nF?‚•¾µuàëç誫Õs¬âÕQ5%pt>p’7d2Ý‹ÎØÏužx÷À])ÅX'¸HÁjÕKc†ësƒƒz6XòÆ23ø†ÛàaE«¯…~*ZµØ=”äá}»RY¸{cµê™éë/”삦X_–»—fœàd†ã;n5u//PŰÃÎ7kòÓèV®üG¹®ãÞ¸,w0ý7R3Œn$ öÿîz«óÀI#ÄU¼œÐUíúµ±ÄE„ünÛê+¼;Þ¥§Éû•E-T\ÆÌÐïË››è¡G‡⟎ú)ÏÀ/0¿sûMË›ÿ hMÝ¡U;õÿµS ø¯àewîzçf«¥¢¬¡dÔµRI3ä‰å®¸ÙŽ=lã=½ø5âm+ßú6í¦®L´ ‰"{½°æ`wî­è<-q¨ÊøÎš¢fßtƒ•Ûv×½mð‡ÅZ§9µUÚ^„4ŽJ׿›~ܬ>Ý}VIÐmоwk­M=x¦š+KŒ‹<åì$õiÆ1ÝdJ? <§e;%±\+yæt×Iƒ¤Ï/âäszc`1Ôý=áÓƒF'3ú I‚C³÷º‘‚™2NîÀäàêß ü-¼P6+]ÂÁV%2}îš²YÞvvË3ÞÐÌ»$Â7çÌàO‡ žñ5ú²·SÅt§¦‚h¨"Š˜Ä÷Z_.IqÊ:’{,ýV󀆹ÅÓ1˜hõ=JÕO©™GÆmkK$G®ŸO=ÊÌE÷iùÝM~·Ô·ÑUDñŸPðV×íWŠ95ÕÊÇ+ª#¥mKÈp$7Ís0G^ÇÙ\àg9  3Œ{¯=Õü¹Òr±œü±;¡ã=óÑwÒÌ'§óÊsͰ=7ZÉñeZjüBk7ÊñÃ@ü±½¾K«ê»†Wú CÄË„o¦¡ªºÇAIã<ó1ÑHó?´y`h;óz`sL_³ÿV×jtåLñ¾}=qtq°7m4Ù‘„œîLžx6h—±ãwï0pV¶® |­éä-ž[ŒýB×dDómŒ‘Ær§ÿ€¨Ü!·Nñ»×W9» sÿä•%Q À¾6õ Ó| ’Á@eÇRK÷&¿íøç~=9Ccÿâ…b}žÚdGgÕÎhc窩Š×I!gÆÖFß2\ís¤Œxý–ñ}¨Æ©ã梚7óS[Ÿ¶Ÿ»pïÍåçê±+ZcpêÑ•ÛLÑ4gÌ.Éi_¹ãyÛqº›¾/VÍIÂÍOÃ{¼|tòÈécs,´µLä{6ÁµÙ9ýµõþ•«ÑZæ÷¥«Þé%µV¾ŸÍåóXXüz9…®ú¬§à’ö-\´Rs*íISA!sˆ1ù­Û¹æˆñ)»Å­[‡á­ÿTÊö‡PнÔí'ó¸rÄÏ«È V’Z™]$ò9óK!|ŽqêârIú•=<ðÚÔî Ù/W1MTÓÔ»“c>d-Ï=Àk@¦çÔæÕñ¥Á;tâfó ¨ƒËŽãN^\DZ­ kØ?d€ lzã9ÌYÐ÷·Z/¿y‘ß«––z>cŸÕ ˜èËöê@vqÝYõ å·›<§”P:%?˜&o&ZâàhÉö[oÒ”°ÛíͳӰ6šÙåÑB9Ë߆Å%î?‰ÙqÉîwêJ€¾2¼½ñºû¨4íÒßi¢šJ+{䀈„ µŽæŒ¸îNh{,=§b¶Kx¡†÷-LV·TÄ+$¥kL¬‡œ–smÍËœglã+ɪò L¿v9Ï–$ »—;gg ­I¾(ødÍzÓ÷Yq a©|Åﯦ$|q€1ÌÐAÀê îc;O— s]œ‚§O…j†q#– Ð“IæÏJ*íѱÿ²Ù[æÂsžîpýße|9j'hî8i‹¬Ï’2½´µxÉs†÷‚œ¾.4Ÿô¯€Ú‚@%«µ·ô¥)#%¦KñžŸ«çU­ÖÔ9Õ§ÍÆOÉHßZµÖŽ#ÒY¤©Gv{éå¼Â7½Ž;õË1õRÇ2ÉáÖù$E¡±UQ¾@ç–ùínÞ§. >øŸõOº~«©üCΧ<ÙŒ`»@À[¼F½Û¬>árºÕ²šŽ(ç{žZ|¾f‡àóƒòBÖΰÒñ]øW_Å¡,¿{®ÕÓÒÉA+#€>=’7®7jÆÊc‘a-s:pAìT„ªñ+Äz‹umZ€RÖ·.¦ŠGDnCKšv89Îzç®ë5x{ãå6¹£+[TAMu›õT·£Ž(æs48lÖHÓ4í·®ñ󧿉öíNÆ9¦÷GÉP]ÕÓÓ‘?ýLÂ1íî±µV„×´¸¦{)Küšö72äŒw n=À[_¥{$Œ=l¬sC›#]àFÄج+ã~¿î~¯Ðä‡VTRS4ާõìy“ ×$î$Óž_e$ø3ácRÜuž¾k)-qéjOZæÇ9’J¦<¶ óÊã³¶VÕv™tÆ·¼Ø&cÚëu|Ô„SÀ#1¼ãÔû…óÈÆäõY߀¶Aàé‹éùé­Ô5щ#p0ºi\擸<¬svýõ‚Ù4ãè¹GÌ鋨Ü|D€:$|RGUÇ9yšËW3~eÑ3ù<©öÆŒgø®Ö€ª/;Pçô0ý—‚~KZž0é[KâGW±„¹¯–ž|“œy”Ñ<ÿa\fxˆ·´µ§Ï «¤Ž„GÍ·¿ÃüVÇ ñÙxžÕáæåOý'YMG!îÖù‡?/U¼$жíâFS¸¹¡µÒTd7† %ÆG÷ÝÖÍá}Õpzçè¹/–í[¶×UpŸ>U,™øýÖ´¸ÿ%†<5qÙüY»^-UözkeMqÜ«_Âw nÜ)µßÛy¯ŠvÞkš)bŒdÅ.‘ŒsÎ?œÙÀÈ£|’«ã&&Íá¿R“ÍÍÝÜß‹úæ~{ek` øªØOÙüÉ$ਨy%¬¯¨‰öæ?-ÉÙHÕB21þj£ÑLñß õ¦«Ô:F³KØîW˜™E3â¥g0†Bö8zsw;| *xwÐNð²¦Õ}»ÅpŸÍ–âY\¬¦Ëtm'wnÒI=Ê×Ö®K•Ú²ã!æ’¦¡ó8žüÎ%IŸ<<µj«v¶¹j;M=}š¢ž+@ŽVœÈâ|Ù9^7ihò·i$°gü$Ý,°ÖÞ4ަ†ºÕGO$âŠâÎJˆØÀ]Èß…ûg|7ä£}ÎÉNt£µ»Q²¡µÂʈË+L™ÆihþÐYgÀ† }§ÚÜéwºéÖî9Úß5®?/-Ãê¯o´BÝ£Õþ"SA4öªŠfQW=æ²0žBìtkƒ° î1Üf5èáv:’•új É®=³Ò F9ïlp-pÇ£€ß²—;5ÄÿÑ{FŒ‚zøã«­Œ3•Í--=íÜcqÌ:‚U[3]Êex›Ó'ªÛN‹´Réý!h²P´6š†Š(#Ѭ?^«Ïâ¶–:ׇ—­0Ú»I_Lèã— VçÛ#u«©,uQß.6Y䎚¦µh•À胋†}~°\ç4“žlå}Ú£G_OZÑñSÊÉZ6ܵÀÿ’Û2¯Pƒçy"阌®k³˜"sÈ-Ûúà DzåÄ-5K¬´UãJמZ{­”¼äsyNpø$¦ZîW’ÔíÖž®ßW5º¶'AUM+âž'‰’5Å®i÷ñ"š¾8Â55žŸ‡ºš²6ÞmÍi±ÔÈ3ÆÐ’Iêð3Vû…üWðú] ÅJÊŠja–ö÷×[ù ywëaö,y#ºX{«·À†¶¨ÓÜH­ÒâH™£…‘°ÈpQ&2>IÞ9v˜g V¯‰96–ã}Æš¥¿w½ÓTsÂÀ$ŽóCAݼ³²@^^SÝO~ ë[W¸kh»ÅY eDÔ1Gs€½®ts–H×°d€\בž£pµ•®,ƒLë[ölŽ”Z®U4Aîêï*G0¨jöxSªª´v§¥¾Q=¨£¨ó˜_x‘ÌÏ)ê@y#Ü)õââ!uðÓ«]IO%H}%=KCáž9 È=h.>À¨ƒàÚèëˆM.ÈÃKjE#ùœðº» žùcvïÓªØô@¹乨™ö†ë9­újæ¨jKÑÕ/© vîŽ'CÊ×í/ÉßlÇê9Spª+§…kN“¥o%mÒËO]ÈëĺvsCÎæ{¨Ar¢«¶Ü*-õôÒÓUÓH视Vòº7´à´ŽÄº‹ÜcåÎÈÉÆ–µÅ£9Ûª“ülÕPñ7Â.šÕs²/ÓV›Ûhn®Ý¯0½¥øì$ þ™Èì¢êÙDŽ˵MÛ«É$trS õä‚y!`ùÆÑôVÚVÑÁkdpó&Ôpa¾¡°LOó ðßKɬµÍ«KSËåÉ_;b/𴜸þY[Z±Zi,öJ M+?Õèi¢§‡›rC[üZøñÑ¥¿£Üy«¹³”Sß©â­`hÇ+ƒ|·ýK˜]þ%ìx ŸËㄵ cê,U, $3ÀâÞž'è¦î¹§Ž»Cߨ¦käŽ{eLndg Æà@Çu©HÜü´rà†ãå…éÙ륷ÔÃp‚I$6Pæ;- ì}v[p «§­£‚¶žPèj#l±œÚàäWkÁ;s} `®ÄDDDDDD(¨pvUDDêª..vpGUkqnâ,ü-Õ—GsKe«”w$Bì©™ÛŒmû 'ù-’ø£u'†Ý:ç’S%Tü¤cÔÈÑù†çê³jÖ¿H£‡‹ñ28Ãèüœgâ?y¨Ýd¿³[ÿÂm^üŽúåMÔDT;.êë~ÁÉÇP°Ÿ¨¹¼7ê—"¨£yüCïŒàµÇ+ùêe%ؘœm¾B‘þ í‘]™Äû\³˜ÙY¤&§qiè.߸ʎŒw {£œ`ç*Lx•ãtÁÀfM?RÁ·¤ÐäùoAÑrD_5Î6ËC+\6Æ%­O²=¾%5QkÞ9£¡ó‘÷~¾ªáð#“Ð ÜO“lª’—lמF’¯. ¶&ˆ±Œk<7º K<”QGY ý×G#I?î󪇾èÍOˆ[ù´”õ³[œÿ«º<Oë?‚Øèc=}W-ºŸÍÆúïÑœÖ5ÙʲÕ~ HÞ'ŸU |V2‹ŽðQ¸àÕÙª"h>­,wòaü–ÀuÈÑœd‚îà®Mhô ¤«‹wþKçª<¡®‘Ìo.îöšÕ÷Š?¿ž?ë).üò\ä1s<¬Æ{´¢Æh¹Â÷E3%n9˜àáŸQºÚ6€­ŠáÅY4s:f~Œ¡td»™¡®ž¯ðãmùAü–Kaè;*ɹo6@¸°Œ·ÎNÊÜךžÛ¤´µÖóq¬òé­ÔrO).<À š7..-hù…©jÚ‰kkfª—.–y#»’çOñ+h¸sOÃ~Ú­®¦1]«¢mmÑÏžö‚X}˜0Ìdžådé£lŒ!ßCè¬ûÙc2ÿ*šA y"§ Ž'·˜‡’FÛòï鿹Åþ5nn‡ÃÌONæI]5,DFþf1Üíqq~xZî{²K@êr¶1à6‡ëtœ¸UÕH=ÿ\æçþà³â"..î2¼}R?ùµuh;š)÷ÎÿÕ»¢Ô” ˆ›—psóY“‚<}ÕÜ4¶Çc¢m}•²ºWQUB‡8’ç6FaÀ“ÅÌ¢zÛŽ´ZëÃÆ±¸i#]i¾PÓÄ*éüÖóÁ äk]#\?HËr0FT¨¨s¢7ð7~xb¬šÛâDÏιÇÁ»H g뇻­ž``´ãávÙÈôÂðcµiýi¹]¬ºrŽ”Ã õREm£c%›nwµ¸Æî-ddá@/š•·î5Ü&†ºêjXbŠ7Á8š çF×Èֳ⶜±VHè©++›”áÅŒîÐ0ÑãkXƱƒ h@ªsº­Uñ¶‚ãdâ–§£¸<>©ÕÒºI0Îìçà«ø 9oñ]#ïÊr¶§Á»µ„‚ª'ÃY]_R*à'he†CNX>´ÎI'º½1—ݹ‰åj¯×K·5•†•´ÔòÞ*9XÑŽbZçüÜAq÷qV:/®Ñq¬´Ü`¸[ê$§ª§‘²E,n-sAt9 lÖ]éüFøm½Ç $ÕVƲGÀ?jão3_z X$gÌŸE ôíÂ[> ·Ü£’XŸIRÉy£Ùã•Àœ{ì¥ßŒ­#KzáE—\Ûâ«’¦†}à !CQ™ƒÀhÙ­{ÚR]“•bxÔ°ÚøÉ-¢±îím’’\p$k„­<5ø^Œ»´xˆÔe´í‚ ƒ`¯‡—«ƒáh{¾²2E‰líä¹E)c$Œnö¸ìᲟü5®“Zx<­¡.ÕÇ`¸Z]Ê93"‘‘á£;òòc*"øV¹6×ǽVHo_÷bCAÏ£î6ÝÁlá h|–á«O\.sMÒÓ>WK!ÃXIæ>êÕï5eW5m~ uD’SÓ?ɤ‰î'’›˜†3¶ûŸw­…ð†ÀúÎi1x.¡¨Ë¹]»\!or£Ÿ¾RÛíöþ#Y©bl†_ºÞ^ÁÊé‹€òe-gg5ÎêrÏr¢e¬Ñ²Ùp}SyÜæµ‘4ã’>E£èJø 1dæiˈåî1ÿðRNh«å§Á¦ºÔ7Êiíuv¾b<ÇÆÊ˜[û-!øi=A'¡dž´¹Á­“жëgµÛì6J ž™´–Ú fSRÄ×Ë[†ŒÉÀÜÉë’£wÚ×ÍÃí>Ö;”Cs{ä¦ñò´ÿ?ÍFoµ¦ÓÇ #YÌ?JC‰;÷rŸæ¶˜¢Ú?bi +©Úð>åp–…íåÉpš>vœöÀGø–ðPç;ÄF›hÏ)†±Ž¸û´‡Û }@[3°· Œ{¨[Æß 0YôíuÏB:ºåsûø™´²½­h¦qw3s‚ZK7;ìTW©¢ª£­©¶×S¾–ª–gÃ<27cÚy\×PFÆü!ê¹uOl⣔TÙ³i”´þ!hŒãÞ2Ìûåf Œz*r‚1éÙraÈߨUDDDDDD*ý ÷UDˆˆz*d•ÅÀÎ=öX£Å½k­¾u•C金Ÿ>ÒÏgø=k2䜑ۢڅÑàŠò–þ‰?<œÿ¬–µ±ãL¹ü]ƒ!¹Üä8½Tåü–Lû5ü!Öý)Oÿ]Êm¢"â@p7踎¸qœö¾0²JÙÂ骓‘­«Šø.Êc”Ó¹¤o)/{þa`/SÍ RÂÖ +£ÃùH#>ÿæ  #|•QÇ9Ÿ#ƒZßSœ-–x.§ŠŸÃ†—lq†8ŠŸ0€2ç}æ\’G_O 2""âì±Ùxš¾_'K^&‘Ødvú‡ì#rÔ£€d 6I Ï®át1åó€ º,ßáå”ðpïŒWÝù4¨…¹ÁÞcοBÒÖãÜç²Ẩâ74õ Àü•íáôÖGÇ­ i„¿§)ZâÐ3Èdh^ÜœÙöè¶ßV<çb‹­µfŸÑ– /Úš·îvæ=±>C å˳[ÊÐNçoOU¬^(Séš[\Í'tuÆÍ!Ò=ð:'ÄÇn"-=Ùør6 —<é MY«¨®Ôu—oV+„UÎc£ô­tm{ðy¼×s¸´t>YÏU°às´ìW%¬ol|\yÖPÌîbÊÀ[¾p×1¯ò!bÙÐðv'$® Â krr[EðÙw¢½pbÁ_odpÆøŸÎÆq'9/ÜîO19'æ²æhÏq€µ9ÆM]‡Šú®ÓV15=Ú¥¤3LŽ-wÈ´‚>jÓƒw=q²¢“?gî¨u«‰Wm=5Cc‚ól2FÒ7|ôÎçhü7L°ïì.Ó\gÕÖo)‘GÖi k1 Žó"Æ?°ö©iªk¦½ðuú%´®««’Ë5 ,±2)f {zs8ùmnrÑêT;á– —Kq ň–¾‚ã ØÈÄ7Ød7R+í·ˆx™¦î  «3 'ÔÇ3ÿÙVà”Tµi!±µÜÃ`c=—Ïâ‚áOq𱨫`«Š®)YI’™í1:FVÄÇòì@tnm¶Ë_ pÚ~²;ÅžŠðÈùc¬¦Š¡=@{†}÷^/4=Ÿˆ"¿O]é™ –'$ÇÅ £v¸˜5­½dŽn0i»S¹ š†ŽŠc_úKXâ=ú­¥ùÀ8‚Þƒ+øÃ¶LJ]XÁ]54PÖDKI,ò§cœG¡ä÷*&x0’ž:XèóTꇲ'çfÆi*DƒÉ&/÷Jز£Ú×´µÀF €Þ.¸Ví5©.ÞÑ÷Ú¨o¹Md^Yp‚IZ׌¿†L|Àì­ÿ |Kªáæ¿§’¤‘j¯‘´—IÒà<Ι„gå¶h¯¢º[i®6ú˜ªèªâlÔóDrÉááìA_Vب풨]ñ.@ç¶ ª"""""&sÑS¹êª™à}‘Žíî«èqº†z&zŒ*“ÐaaÏTõ•^u%=÷~¢g‡84ypÌÙžwïËÛ¿E­ºðN ÁÈÊÚ'†ˆMÀ=±½š 6þÛy¿ÍdU­?¥ŸéÎ#4[õÿ×Î?–Xû4XÃqÖÒÆ!¤ ù.SQ ¡;.;†ÿÖí¶Ç1?ÁE¿´Ní <ÒöW¸ýâ®òú¸Ùެ†1Çègoæ ÍC9Avîëù®¦Œ¸R³…â×ñ®ÏA’ÆVÑÜ(Ü 8q’Š`ÆägÁbsÌ$ààù/Ÿ*OýœÔ²ËÅëÅXfb§°ÊÇœùàåùìÇ)ì1œ×ºäˆºkó÷)ñ×ËwòZÝñà bñrph(œãê|†7ù4.ÏÓ¶ŸÄ=±î?ú fÙëˆ\ÉlŒ„ AÜFŽV†ŽÃ ªx~¥ °xÜÖÖš-”葉†6oë©äå¸å?‘ôS ºÌЊ†Àeoœæ—ù¾,§žë™8w¯óV§í”—Îê+MlM–›|ÁÍp'%¬.iù‚ÐBÖ÷gš1hŠˆdk%7ª]ñ‘¼˜?À•´àrŠŽ8=¾¥PlЪŒ •Pþj„|×ÏPK]ntƒ˜çØãü–¼üiiÛe–í¤æ²<>Øikèâw?9/†ãPé wsÍ1Û±ôQñ[¹Â~îÕW[F¤¨‘Ídy‚ÇÀ Šš(š=pÆu*s–Žþ¡q‘Ä6ÇRJðõ±–-w¨Ž Â"¢–C#ZpÖF €éÓqƒ‚µƒ¬ê磧—LÍ] ÜÀ䪒ÿ…Ãü'pwû)wörØ ¤á…ëPÉolu•×WBʧGñIq³;»CÌ;ƒé´¤_Yª9äÀ\›’¶Ã|z(ëãùÓ S†´ùO¹ÆFÀ;¨þEA½ Øe×6T¸6r§v ó•³ßÖèm| ÑÔ°01®µC;€ˤo˜ãõ.%_Ç¢"¦ýIú..À¥ÅªÈè8_ªë%w+"³Õƒ¾ñ¸ ~kTÏcœÈÛœì_@º aqoAÙ^Zû-—OêêG%òÏ÷#“ÑÂhÞ?ƒJ¶\÷4|$g•]Ü»GmãfЏÔÈb¼Ó²GžP÷†òø·[HkZ$qÀÏ1z,ãÖ–JŽ>ª0òh®ô³œt‹òýgòZòçsžâNëaÞ,­·p3ô‹¡c&¹\%”¿˜Ü1¹üšë„Ìó"s9œÜŽ îµâvºªãÇMq=e$t³6âaòÙÓ–&66»üM`q÷+0“ G°Ù3ñ G0[ðO†ø|´ËÍ÷ʲòIÉ™ÄsÇ—z`÷Y©äC²굯ãAí©ñ%«Ö61¦‹ ~")bܬ3UWÐ3ÐŒ®+.xC©Ž.=iØcŽj‡ÏÈN"sà‘»åÙåú«ßǶžzÇMꆆÒ¶çRÌ]-3€æ?ü9boøVPû lÐiÎ7jË]%3i顺I$0ðÆÇ‘#X äŠûDÚÛ…¯‡š‚—•ôóÃT€c!ííÛ¶À•8C,´üUѵC0j '©,ÂØŽ˜Ðµ:sŒZ‹RQËè»Å?™+pñ9—˜œçrsìì ÏˆÈimÞ 5Ãè"cË£§vä‚÷5’?$z¼»ó[-¶T2®ÛKWƒ£šHÒ:àþir¤¥¸[ê(k©a«¥¨ÑMÌdŒpÁkØ‚6ŠüAðÏ¡t~„â&¨¡}]d³Í=®ž €Ûqõ¤±ÀåÇ-Œ ó•˜ü-WP×ðH¾‚heŽBñì=»9§ß9ʸ8æm:Ç­?y€KE$Žføs$kK˜öžÄðèVª >–óDqµÔuŽ~Üï°–·Ô†˜^{€_Û;ßZ7ŽÜFÒºj‡M[®ð¾ÍDײ:*Š8dÍsÜ÷5Ùo3sŽÄôÛ¢ÍZ⇄{ýE®ŠÑ-¦J8.´ÑBæÁQaû±”lFXwm±Q ’zœ­ÅX(!µØè-´ùòi)£‚<õåcF~Võ4”öª™¢À‘¬<¤ôÏ@µýy£vœñ{FêfŠwMs†xqæNÎV»:G`ÿx­ƒy‘Ü«/ŽvÉoÖvèÍ,ÖJ¡Çâ{b.hü‚þ ¦l¾ tÛcææ™ä{y/ÿšÙ+cPQÑÕW‘SNÉÚ×–84‘‚9‡]º…¯ïºNÛî)Šk smw:f×Å“›îï2=¯Œ¹o0Ïïc²Ëþ øËWúN“‡·zˆŸo08PÉQ;c4¼€žF“øì ùz)ŒÙ§¯º®ØÝßä¸c${÷UØÅ¿R¹ƒÑUì2¨3ƒ²âZ2wp¹„zªöTqÇcù*gꪣ¿-YQcá=&Ÿ¡¨ϨkM<íÀ%ô¬ÎÛã1‘#º€7¹¸Éƒî¶³ÁVòð{F·bÅGû8ÿbÎÊë¨E äqØ®P1¼P¶`Èûgò[PnwϮʫ„›ãth낹tÀÝ:„÷U;¯+SÈú{mTnœ>*YžÑ KžHa#” ÉÛe¯Ï–ë…¿€†éKWOZÈ.ßxeS ekÝ©„@÷†ã…ÓNÀÈ‹Žùß êaĹ#Ÿ'ù. ‰žSíÁ8Àî¸Ú¦–‚®–¶žQÔÓÇ3dÜr9¯;éŒ÷[v1±Ò?-Èæß'+øÐkG†TyKC]Dᎇ° ÿ5­HÀ. ˆ'å²Ú„xÛ‡}#ÊÞ^jW¸ûþµû¬ªŠøÜ஢:ºãÄ7Hë…®²œKt®h}ã`i“Ìs@9 ‡gl(›"6·;ª´‘0 g#è§·€J¹&áÒÁÅ”÷§ò8ƒƒÍd€q°‹q¿Lák+ÄKn\{ÖòçÌÅÚXAÈ?Õ†³zráb“Ԫ˗àæÏ|a]¬û‡ô•aphŠóHâIÀÍnV~ûB®N’÷£ìÿq–&ÓÓÖU™Žy^éflf1·VŠv“ýð¾?³®åU¯VF8 ZÛC§c~x¤haèq´¯ëŽ¿C‡<@×Érã–·«–C!ý;Wœü •Ì`Ï k@ROÆL´÷œ-¹DÎHåm3£hÜÉEÍŒý‹z:½–ÝQe¯’C).tó¹àd´2VœŒuè¶Ï!ÄŽgÓß+X|t¸Ãwã·®¥{ <÷z–Æöœ‡µŽ,æÐògê¶IÃ9â©áΚ¨‚GÉ–ŠW1ïüNî}Õ¬^;´·‚Úè·'ÿ›—§ú³÷QÛìû¾×OdÖVŠz‰ ²ÙUHú&»g5³’ìüùòßÔ©­«$ƒG_ëä“Oh«”dã°¼­SÅ7•DøË#‘²¿8q9ik\À#÷ò=ÛéœüÊHð±²Uø&â¾çºé$ïwrØÅ Ÿ\8ýJËpz>¤Öé+=c·3ÐA)ß?Š6Ÿó\õ@.°Vœ,•`9¿ 唃·Ê&ÿnü§“;gÝm#ƒ®Õª¸s§î–˜ê1GD_—Àæ0Çhw_n·¯¸GUAKE#*‰h/Ç(pÜg=ˆþKYünÕZ³_WÖÕJ$m+䤧>W–|¶Ê÷Ê:`¼©5öhÑÔGm×77O= w«˜ÙÜáùHßÍLTEB{..é׿ºÆ qœû&;ìr;¯ïW!pñ [Fé3ú2×IK¶Ø%®›þw?U«Y)!¹÷ê¾Js‰˜î˜vVEà5Í–N1é[´ò:8hëÄÓ µ£êp$û>)Og3œÓXêdq.Ç /…€_ÅŒ{ç²ØPéÑW¶W6wߢ³¸Úe„z²Jp í³Õ9™ÆÇË>»( áž*‡ñÓHËeÅ·&—3”d×d`ô?Él¸l æåÁ=ð6UNéï…Cœª4œáØ'¶Ë–ë¦rZÎnr]Ð u+^Þ'õ ËTpk†—Êù|ÇVܵ !ÙÅcC1¹À Èö¨ìЏ €vSWì×l_ õ³ÚÓçš6¸öåå—Ç*``ãæ¸ì†rûC+ç£àM54. euúž †ÄÁÒÖªÀÉYAQÎÌ2Hšö;³ùûoÉlOÀÉ3pÝWÙòÉÛÕ¸µgeóÈœì ö\^Ç€R¢¯Ú18‡ºV›˜|wy$å?ÙˆþWñPËNÅ^£´ÒLâØ¤­Š7z4¼¶ûHöÉK9k˜>».nÎÝ1Ó*£ä¨q…ÖáÌìdü•·Åƒ\0Ôï}?Þ#m¦¤¾ ÒîvùNÈÀZ¯ i·Äæ»™¥£›çÿ|¯‰³óIÈÀ@'8Ç¢ö,”ܨî5 ÃCHê©e-qhÍk[ .Û8 Ǩæg38féKæx[€ o;œÞçpu޼LÑ6·€úÖÁ¸ý<Ûö17Ìõ?<-[rí¶î[Kð¼æ;ÃþŒ,qpÆHï“‘ù¬’‹ø£•ðpZɰM¥ìë¾ ÿµŽæ¿Îvú/œe¯iiÁÉDzØ7Šˆ*8)3)àlLeâ¥îåçd û47ø{,öÀpvKºîµuÅæsq§\J\Ó©.'`qÿIzDz3 kŽ>-ÇÉpÎàá}1ÆÞV»«vU´TÅQØÓÔ2CþþJPxïdÕ–Í%Yuo¥¥uS¤žWsÆMAc˜ÐþïÄn%»`òqó}œ±5¼MÔUåÌæŽÐØvæ>eD[Œö›üDzŽúî’Jo~¡šO2Z{•DO~sÌ[+?ÁI_×FÝ|ðŽ:"ö:y#=|ªy"Î=G&¾T`k‹2æ;ŸO¡ä¶ÝOq1ÙaºÜüˆ (…MO#¹£a‡;©¢Ôë –Ëžâ÷³.$îI%lëØš>h¡RI”Ùà=K¶-ÈÜû²²xó·5ÑßÿÁ»ˆÿ÷i_û9œÈ£â óù’[X×±À«v&•!øà÷ÁÁu,o!ÃOV`ŽÙ‰ÃüÖ°g§˜[áª>kéÜãr¸1®£Œ9 Úºù­àSboƒýdðÍÜËÀvÇw}ÒËE%¶¾ Jé¸;¢å{ùÞë s½OÝÙŸâ½½Pq`¬÷Œ…¯¿ʉx¿A5;_?Þ,qIË ‹|¯3› Ía$ö¬?EvšžX妨{$áÌ{\Zær=Ž@[ð­Åúm}¦a±Þk³©­ñ|bCñUÄ:JÓŸ‰ÃpëÐ÷Y»ö+µ·ª!>y‘£%í=–¾\¾êGSx‰á•ÿG6ñ¬–ÍRÂÖ‹|\õç9 åh ƒñd œ„âõvºq&ýtÒpÖÁf««3ÓÇYËæ‚ðüò’ç.ÀÎà 9øBã=‹‡:ñdºZª+'ªº6¢7@ö‚ccI9#a˲w+3Óø£°6ŒMWl¸Òˆg„NÒË£sry2Fç-À>ù!{´)ø[U Žy¯4ã2OAΓßÊsÎ~A\” 8AW†Ç­` ÍE%D#Ó«ã]4AеÔÍ©£Öšrxœ2Û”]?ÞÙ}°j53<Èu ¢Fwsk¢pü×ÉW­´]#œ+5†ž¦å?_s„“œ—Àx±Âö¼Gþt¯6ÿÿ‡q×›þû¨âÖçm»qÿUÜ-5ô•ô³:ÅQM+dàQÓƒ‡4pA0V¬ÆqÈÜÏ3˜f.‰¡ê 8öÝzöùßG ž-¥8}ÂÓü _0_Äz7|/vùÛ< mù)Ïöo€8uª˜ÝÙ·/Aä·þ÷*TÌw+“ZÒàà7×4E®ß´ áü~üm%¶švK~)6;l{÷Øú>ÏŽ_ôÇ{ 8麎\úýâ›?Ã+`6¼}Æ1é‘üWÒ„Õyüø¹‚sƒ°=º(=öuA/õCj<¶ÔÁftX$‡÷ˆƒ°=2Ÿ¢ÆA€A\e“ÀÛ;®m9ôÏÉX#+ä¶pGWWDþYbµÊXGPã€Е ¼1RÕÞ¸óh»Ì|ÎZÙ*f‘ì.o˜ãÈØ»l‘ºØhú*ï„ì©úÊ|ÕQyš¦O+OÜeÎ9)&v}?Víÿ‚Öç~ó‡žÒUò²Cúj¦6¾L•18ö܇ýDSìØ­x¨Ö´[™I7Cœƒ ùc榓wÙP€ê¢ÚS]U…µùÍmMEdò4´Ž1 ZïÊWì¢MK_lw -il Úä¿©[$ð€!€bƒG-({°?iÎ.?ÍeÅÒOë]¶Û./ø·Áê¢ÚK8m³BÒs’çÍ_&Û ŒÿÄ¢Ç ­ß¤¸‘`¥8}ö9Þ\ó†rÜ{†ãê¶Á§Ëb .Ï1§ŒŸŸ(_kŽJ¦Ø<Äv ~ìžÝ½Õý÷ Ÿ‹oªd‡c”Žê?ñ“ÂþÖ55}3?ôZñ7;¤òa礨yß/#“ûL#Üõ–ŽÔ;VO§õ%®¢Ýp€¸˜Þ߆F‚~8ÝÑì88pÛ¯¢’¾4Õ²ÿ¿†íUT3ÑSÛ¦¤sþ#¼¸–ã¨Àó±üջƿ £J2ºó£§“QÙZÇJiÙp4ɆÄ ŒØin\1œ8à,;Â=!.°â]‡II0§5•â:ƒ#]Í—Ê9@Ï7+{œ º­¬ÆZç~.Åc.6j­9pᮩ°Ûï¶Ú«•~™¹¾šš9ÚçLÖÓHÊFăÔuúek47tÛ?5´ÿTl à^¦c\Ñú*0ã“—·˜ïÝÊÿwá*‚@[ð±OЉ^xª˜Ñ–>Ý0pÛ .¯¨ZÔpÎ@ç©_ ŽýhǯE°ï0ÓCÀzAKQÓÔËU3¥i ™szÔž?ŠÏC˜tÆFýV±} {â™%™ òƒœ07Í“mÆ0;åxÓwJ}¬õ½´@ê·>};ÀÃâ-¨›˜€Á‡ûÛm¼uãrEÅíeÕ ©•—úæ¾f´4HECòàÃ=p²ÿn”ðÅ E;eò'©y Ü€é@>Ï.ÏÍ`9ÏÂ{lv[ ñ/Äj= jвJCgžßJÁQÈúPiHÈyÃKš:µk͵$FÝ­Àü”¿Ðþ-mºsGØ´ãt\µ-¶[à£lÏ»áÒ£ æ#ÉÛ<¿Å_Ö/Úª‡ÍºÙ.Ô3ÿêàts·ýâYü•Ũø«£8•ÀÞ ;M\\úªm/^úš9â1Íu4€Îý¦’û8À2k^߯·ã?ûªå#¸íÿq]{6ÓÕ=¢qZ¹3Í÷QJdw’×™;?’êR³ÓJßšþ\—˜j®1°g£_OFÓÿ]ÅEFŒ¸u·BÚnéH0ØìÔýE«ÐÖ.äÓÕNçäÃ×c²ŽšrŽ[ÏŠû=S©"ö[’M$ð¸ìÿ> À@  ^pìd0¨Æ%qÑzòåm¯¦k ’®Ih¦‰§É–âG)Àé zƒ²ïáV­ºhíUE|·Nèª)ä€Z~«I h¶J£_f¤¬xÏ $8ppø›ž ßÑ}Ì7uUãßKLñ·ã$­xéÿéš*¡9‘’[ ˆ4»>S˜Z;`ä;üEfŸ³¯MURh½E©ê &žåU-(øñqy;`4™çc°Û2±­ Æ,õùz.IÐnˆˆˆˆˆˆÑtTò>7Fæ¶F¼–»vÁÕ—ª8q¡5?—vÒ¶Ùac] ;cpnÇ«qÜ«ëŸ úóæÉ`™öº—HdÆ\Ö’OBFF=€Ùb{„ZÛt’Ãy¦lasaÇŽìÞvò¹»`ý+»pO‰öÈæ–M)Y4Èèß$ 8{;z+ñc»Û&ä¸ÛkhœAÚ¢GÓÜ…ç2øÍB¾ÊJW¶2÷4äìºê_+yÚÐH æüM9'›ªå æŒpÏp¾Ñ5MF$ï,§œ ?É{z_ôT·‚Ûì÷(h2’hXÇJ^#w–>3Ê?/1ßláyÑW¼Ñ0ç8î¾¹jžâÞWs–ž¤uÙ|uw Ì#XwÈøA\r‘€HÜ6<`†ŒarmÊRC¹Îùï·ýú¯>º¡óT½Îy$»sŽÛa|îypüʯv—ïõ_m,Í|d8Žlrã§Õqøcˉ.À’¾8ñ̺§×ÙÝ[ G.´l‹–jkÜŽ‘ß¿Ïd~X!I|ú·lz®Æôµ­ã–§Ïñ'¨"ÈÅ<4‘€LÓÆýÿÞÏÕ\~¨CxÈúŠi›9v˜«ž¡¥¼¦÷†F:ó~ÁíøÏ¦óÎ…îcý’7 аþÒëys¤þÐ/°þkáQ_ÆÔkÅŸêꬵt¶†ÓÖÇOS$NdR6ZÈß! se¬vã rú)hèšZ;· °5£ Ê§6ç#Õcœÿù>k#&E»œíƒ#3õÇOu<:AÇm')|oŠw<–€ZÂàqÐôïëÙl½=UQ­â¬­Ò×{}¹ð2ºªÝPÊsRòÈZâÎP^à(à'®Û-uø—¶Ué‹? ´}Sææ ÒŒª’7¸82jŠ™Ý Ë@vhXiLO³©ÍŽ;û¼ Òú¨ØùyÈ.o–Hn1ƒƒƒ×¿º™ð»õ,- §§²æìòŒ ôöPSí$ºM7´½”¼˜i-ªc{M3šãõ7òQ¢é<Ë{`¨’GM’V¸lÇs„{clSÁÅI<.¶P¸ïªŽQ釙¿ûP³‚é“<îÛeÁçm”.ûFªY&¡ÑT<ßTUsrŽÜòFýCù(óÁ™<ž,i’ÑÌçÜccG©vZ?šÚ¥’RÙh©žæ¹ñSÆÇô$4…ñkK…]³NÔÕÑ9¨høöóß§ÑB­e⟈ö­Ut´ÓVÚÌT“Rµâ…¹xcÜÞc’wéÓm—Œ|WqPÄúbÞÜïú:-ò;v8?M×׋ž$³%òØ%Éêê>Ÿ“‚î¦ñyÄFL]+ì0œ†>€=¶x?Å}QøÅ×ñ´4Û´”ŽÏ¥˜§Òaòú/±ž2uˆÚK6•w7B#˜rÿùӟຫüXÜ/ýÚí£t•y {é|ÂÞW ‰ŽárÒ>$íšJ†¦›Lð¿NÚ¤©ä’«î·¶9Ö†´ˆù>„ø·_E‹íjÙ)lZ^3ÊqÏÎ>Ûùc+¿îµüJ¢â%5-†×¨é¢’1UIFÖ‰ ÚYÎö¼¸9ü®#˜ï‚¾‹§8y‘Íþ—ÝŸÎOêè öÄ`z«]ºˆMµV^)´uú8i%¨}S¨ŸlˆEæ9ÅÎnCŸ|ãuŒÚO(¦ Û_á4Ü/ÓÎhk¡µSFæŒÄЈWCÿ]MØwÙc¯4¢¯º¾ Ö9̵Nö—»B?=Ö±³Êbs±Êã¾=6_ œ¦R@'ÅNÿº†íyÒ‹]lŽ–’É-!è@s§·¦øçü°¤ÐݤƒÐ:-dø›t.ㆾ|-p¥Ó–‘ñ|ÇpðX¤8€;lB倿ÿ_LDE;Žëæ©x{Á†µñ)_^ß º¹¢ž­¶æU $ gº<ôËN~Šæð U¸-£’Aú½@çHÐwä’š&ý3ÈwöQçÆ =7‰-c9"50ÈáŒ~±Ôñ:Cõyqú«“Ä…¼Z8qÁúS4’],Ú™ãøKÄnØæ#ß yŸ² N3òS¯ÅÖ†ºëÞi½Uj†‘õV+p¸V7<‡î¦®—“'~^\ò’N:o±Ãb½mÖ¥¼ô´³´l];žäçcá®ñÓ¶ß u„òyl|´n…‡áÎî~îp=ÖoÓÕü&án¾Öº®íAM=^•«¶~Œ‡3¹¢rÖ’ç‚<˜åæüGqŒ¯ìàçÖ甑æ[ÏC×’°uéÝI~1ÀêŽk¸Û¹~œ¯ Ï\ùZûTyt3Ñ;—šcGP0ÑÚgßöÂòè駬¬†’š3,óÈØâ`êç8à©*fx4²Ój ú«LVO÷x.×zÚ3?'7’d¤¦h~23ƒÊq‘Óª‡·kuM³QUÚkYu4•o¦™‘¼9­{Zà$w­¹hºaG£¬´m9[àŒîÆÑþK†µ4ãNU}êfÁis¤wF†Œ“ù¢G õLúų'£{ßnÎÇŽWÉPÉn{}ß0ëÝÁ^~(x7|ÕzTØèßQq·Ö²ª(|Ü—Äæ9²´Þþ¨^Wz¨k§ìõ5úªß§¥k©j*.0Ѹ=¸,/•¬Ü}V×hàŽ–ž*hA䉭`Ï£FÔÙÁÇ^Êݸ2y*ÞdØ–å£;ù¨ã–@x§LÂß,º—Ìt|ùÆü€Ÿ˜Œ;äà¥÷„‹WèÚ:•îŽGMFúÂñöò¾P;€ð>º,®3Ó|†;îª:"wDDDDDEC¸ =ÕFÃ'Ü¢*P<¶~à\|ˆ÷øzõÝ û |‚¡‰À|.?RWÅv¶As£}ÊŽŽ¾’A‡ÁQ ^ÇpF¯zá ïyuÓAiÉ^]Ì\ÊFâqŽ­ÁVËÂÿk]˜–ˆ‘ƒ÷K…Dc¿nr;ú/£Â æÙÒê@AúHüXWš|ðÅ­Ã/š¼÷ûõ?ÿ믖/ú$Nï3TêCvCC 7°'ÊÜûà|—¿Aá „ÔìÅCïõ‡™+ƒê5« iN p¯LÓyÝjyý©*ãûËÝótœÅ}º‡„¼4¿Ú¿F\ôE‘ô¡ÁÁ±R¶4úµÑò¹½OB±C᳃4os¢Ò w7A%lïåÌò±?| R\县†µ´vÙ ý}Åò±êÇ1®pùõX>ñág4/òáÓT·óŸ2–á)ú<µÝý;/¼bƒi4-Èrެäxÿ„•`^t¶¡µÞ_i¯²×ÁpýÝÐ;œú팪Ý4~¬µÚK\ôÍæŠßÌ÷šŠ)#‹˜ôÎd¯ôUXy\èW3+¼³†wêWˆ óe¸ÛÔÙû8®ÐGõNŸsÀ¨W±»åÌ-òÜ}0 G楾ÍÛrˆìFý{®h‹Z¾6ad¾'µ$t®t³LÚ æã£Í, ë·)ú«§ìó¦©ÿJZŠâÈÜiàÓï…òm†¾Jˆ Fþ¡üŠöþWE–žž§%}Í`É!§ßd§p{rI]o ûËNÀÆø›åŘÜî@ì¾ç˜ª¡v. Û9MÇMÖñ…W5'‡ýRæ°>:XÞK±ðº¥wäþ*'ø=¯oúu°– \ó$±¸Fq³¢pÉØí²Ø †Q0Їø++r×ÅÂ}bûkCê›aª|Må=DNÏBH鎘PSÆWÞ5ÎæžÝŒ·5Æ& “+ºdãñg„,ªF1ÓuE.¼\¥ŠÏ¤Ã `¬Žh³±{COæ?%6)€õÇžWaö*ý¢‘—ñÒÒÆg9@íþ±Sþ[¨ésä.iÀ¾Ëc> ]£©Û€L6+[9ÛÐæ9þk9.©õ]wñn3׺‚?hd¥üd´F$ò´ô. Â]<ûý³ë¿ÉaNÀù¸»¥"k¹sw¦vpz‚~¸[c‡ú¦t.ªúx*éd¦©²Ã+KÃÜŠÇ5| á=uÑ÷+†‹¢­­|L‰òÔI#ùƒF »Ø;»8;/¢—¼!¦Þ>iÒrOë)F?k>«ß‡‡ÚLZ+MÇÃk„mþêú›£´‹\Ý-cž,ÿÕ\¦tç;Ýý´s?ñŸ¹G— ç}·Üet;Fé Xc—JXÎbþSnˆŒœzuØ~Kæ—‡L f? ¬þ>‰?Ðæµ žQ¦îYÈÈê²{R;õZ²¤§óî4Ô­/•‘þnÂÛ¦’„SXâ§h‘>F0œ4<ü^«¿ \ø‰ÆþÅc_ÅÐð[IÂØáŸl€‚Ö|àœ^ž›/>AË(öÊ¿gÄÍ /Tíš/2;—3¡ À:ˆœ’y·€ Û9R_8;\-mø·Œ³Z¬m\v7ÝÐEüÊÃRcÊf=o„äÎç+èat‘Œã wôtLÞRÖ‘‚þû©?Ä}COsðƒbµÎÆ>fÓRÉLyžK .loÇÂÜäÝŽaÛ¥ãà‚‡×©Ï.jËìÌ|‡bæGO.ýp ’tîJ¾$j¤­ã–«©”÷Öïœï†4grNøÏòÙ\¾%o̺Õé \WJ+¥=ŽÃ ½³Ò0µŽsXÎl‚OÅœƒÓ¦ËÅAQWYOIE¦¨žFÃLsÞâÐrIÂÚ'hů€šÊßJÒêjM'YO1˹[LöäŸZ·1)îÀØw[‚ †:jH©ákÆ1£ Œ4€è:/ ‚FåaŸS¶/ú¹­œF~ëp2p긎ûÇü–û9*)Å«UѸ“;ê!™£l±¥¤õÿÚÊKq;‘œ3ÕαÖó\àyÉÂÕž¡dm¹8ÒS¸ u0Ýoæ¼È&– âžòIƒ˜áÔræ¥Ç„™«éü7ë9íÓBÚ¨ë« 8yýÊ2Ó¾Àd¿î¨¥]P*õ õA‚j§HÞƒ/Îà-4蘆RRÊZ_ ܧl†€p¼ÝeKOUn‰µ±¶J6HçÔ1Çg3ËxÁõ#*7ð“K:ÏâÆ¢¹Ñ©®Ö‰nìÈÃ9žÐøÆ6¯nß R­A,Úhè|oY`¦§cažÿmžF‚çKŽÞçù©Üˆ­û»¹eqÏ Ã?-Ö¿¼dÎj5õ=CÛË$°9Ä’9å.Rø»)çÁúcAÂÝ-j|±É-ºÏIE3˜r<Èàc]‘]ÝQ¢"""""&rˆˆˆˆˆˆˆˆˆ‹¢¡Œk¼æ†2S·? $EnkÝ1g×N³Ljj#[n«h51¹®-sHèæùo•.Þ -’Ü&u¯ˆÕ´”eß©†ªÌÙä`ôt•ÇÜ4|—u‚› µSÇ]¯k[rÈg’&ù/Ë kŽZàpI. ô~%…¸áá»[p×É­¥wôšÑ;ËUo¦“ž"7lc<™qëPi [^þJ/{ªv3ˆh%yÇ®ÍW6ƒÖšï„—ù%·Šý?pžÄô€<Æ\완c-ëŽË'Z|XqBš¬ËQz·×Fèü¿*¦Ý(;ü«ä9ß×t*ùÓþ1oQML.º^Õ[…­™ÐTÉÞüŒ¼d8Œü8ëÝeí'âO‡—èó5æK á º¤_\dK3OmŽÉ{škKÞ£ª²ÐIM_%<ï„:š@<ÎSÕ œ¸Ø«ª¿XÀúG¶Û…NqÊ}ú­lø™»T^8ù¬kjm•—'Óù€ò„p3´c²Í?gÝm®“ˆ;•Æ*8ã·Æ÷LàÖ9Ór{€×~k;ê.=è-=ca¯euE<^hc\b2Ð×AÈÆqЙÙa¶xЈÊã7L±µá¢A}-=/}:u÷Wþ–ñ‡Âêø›ÞŽýd—#˜ÉNÚˆ¾ŽÜÇêЯËgˆ~ \Xû·Æ\2>õ±cçÎÑ…uYµ¦†¼KEŸVØ+ü±Ž¾7sØ`s°W ÆáEl£ûÍÒ¶’‚ìyµ66‚q—:ùf]øÏ»l¾U^½²6Ld6)¼ÒÝÏ¢ø©øù ckÿ§6è²@VÈÿͪioj¨¡¦­²ê £ÅM(|u {aÎÛŽ£Ñ|š‡º#EÔÔÔiM3o´KR1;éã!ÎÜœO@\p:Ø3ÀüÕQqp%¤‚¼=qn}ÛB_-Aò1Õ¶ÊŠ~hñÎ âsrÜíöÊ×ÇŠ“j§ãåÂËu¦©–’Ùi¤¤ÐÎ"”C›!Í <’@œ‘Ì6+"ôkî²ÕÙm¶·ÃNÈè<ÞG²5ïóyÜ_ŒmÌNE%>Ïù§ý-©éÚÆ˜9i^÷8çâæ(é×ÙNŠ)›,Q½®ikÚÒÜàƒ¾Ë¿â-øpGäµýãÆ¬Vx„|L`ç ±ÓÂwÎKœ÷gò—ø(ïrËdkáÉ<"Fèxx)äoë)ࣅÎùS0ãéŸâ³Jù¦x‘‚zw\g!£pIì½|wOÞ +£cÁtvÊFÈ:àò'ÍXž`|¼oÓ1³“Ÿïs9Æ[Ì"yü–ÓãÇ–ÜtÀ£ûmÕqè‡sÐm²ª¡öê¸ï¶~YT/9ÛÓÕs9árTê6AŸR±‰ÙçƒÚÐÀ^l“´29\Z×ÂOäV¶ô=¶ºë®­6Û|.–¦ZȈ Œ¿<9Î#÷ZÐIömWAÖ>·NÇ;Üã#òáß~«Þ+Ž7;û¬?ã«îžµ@ç-5 ‚™¾åó0š×5AoÆpæ¼é‹CÛ†ìw;©¥ös0¾É¬føÿéT±ŒrìÇvëÛ®’–'5ÜØ o’µÍâ~ *xñÄ8a‘ÆhäpnÿpD÷tôŸ+ FÇ8ùl“Øî©C•Ùù‚¾¶†ùm Ç1!«á©w4§c²Íôwv·Ã!¨žžWUÑÅ {¥g™S™åkq ê2NGL¬­àÒ¦¢.Ô¶sHuH`víÇ“Iðuøs“¾þ¸õ¾&%ãeúf‚­¥góRÄs°s访öJ+-^’4”R›°ÜÞè±Ë'žZü ³†œ€ 8ÀV?#óxÇ¢aŒ³Ô4 8ô†-‡ø‘¹6ÛÀ½s3À<öZˆ78Þ_Õ7­niÆCþÚú˜!š&WAÏÌæí·!ûHÎG¢Ûg7âèpNvTsÕ¸ÂÂ>6&oþNÚ² 胼º§w[@üüÖ û8æ,ÕZ²3œIGÎ= ‡Ãø{)QÅùá´#“áÓõÎÇcú—uZÝÕôXáå†à<³þ»4ù@Iµ À.[ñ;ô˽U”NNT ðÛv£¤ðÉÄ/¼6IEQ<³GšÒDÔ~[H'bÇOÊ?ðÖÔÛç´Õ•Ìó_v¥¦s}ZùZÓü Ûºòu!®Ò×J&¼Féé%¯-'”–ˆ=Ö#²2âNÆ<È_34ÌÍ>[9yG˜ÐvÉ.v=ÖrP§‹u~;,?u`‘ð×ÑT9¹ß–& Œÿe§e5‘¹«¡sš9Ì~3Ó˜–»üZy²q9áüÍd‘FÖòØ÷c=7“E±Ù†ŸÐö[#aò~çGnh—Ì<ü£˜—9‰9$ànUÀÀùªïŸeTDDDDDDˆˆˆˆˆˆˆˆ}—û*¿²ë’7<îF_‘'ï5 ÚnGÕq4¤ž#¾øÿ%O»NÏê¥å™UÖ`óHǹÉö+/<¶qC@×i[á4Ž—Ñ×26½ô“´å¯õC›KK€ œˆ#«¼.ñŠÁ$¦:ËÕ3d,dÖÚ†KÎ;;ð»V/ÔÚgTi:ÆÓj; ÒÏ1ü,¬¦|\ß.`3ô_Þ§‰£ã¹9ïßò\èî÷*)ÛQG[<µüáìw)kØ‚:,Á¦üIkk}1‚äÚ;¡œ³OëFsÎAÀäg º¬G«.ó_õUÞýP&¹WMW hÀ‘åçR»¬z–ég³]-r†Ò\ü³RÃÝчò8{1ßšø.W Û•Sª«ê¥©™Àù’pÀô_*"úèk]HâáR—5í>cC±ÌÈôpÆA…ôÉzºV²š–¾åY=4 -Ž7ÎâvéÕP]'å`` cù/™÷ §Hçù§.ë¿ÏþkÓ²ê;¥º²:ºjÉéçáìš) èA#²Ï5ñY®ôÐ4·IáÔÔ¤ŒGr{›;hlÍÉÜŒžv¼ÿ ô?Šî_*!¤½A_`¨•ÄsL°7927p6îвUŸ‹\4»T6žƒ[Øå•Ã!®ªk2?Å…zµÁÍi¤dv*¨…qß¾I?«8É>€¯]^)¬2óz«©e<4T3Lé\vo+ zœàÜ•«î‰Êyù¹NŠ z쪊˜WÐqŒ`®Xõ.Cm‘S>‹ø¼¨Ž—Ãö²–\†šFv_ù íû¥AiØq;zeò8à’@<¡lÁÇ%Ðv;äµ·Xj®3U6¨!cLp“O¡œØæço˜Záœg¶Ù9c‰zêÃÃí)6£¿É+i[+!c"o3å•ÿ…3±;ökËYkkߎ7½S5$Õ›}C¤§q¿Ê’'E³·à;˜ÀsGUŒ/1ÒEq– ¥ž™„ä‘®pÇp sÝ|Í“.À9þ º €2×g”äíÛeëiz;mÎõCEr¬t•qGQPàHŠ2~'`v séSÂÝ=m:#BêšJ»]9Ž’Üe•õ1T;˜ÈZdiæÿ ‹20àâ6vRðÿ¥tÖ‹áµ.žÒïtÔ°TTjdùµ2yÏk¤y`߃•¤Œ†±­ý•þÐÝ'¨«¸ƒ®¤µÌû²ÁI]i-k#êªX2Ayø›ÐyCšN†|¿‚­±ð×ôœP\ŽžÍ]¶Ñ,¿«æ åÛÜÍÛ V…'ÿ÷ÁèœgþšáÔ~¦E²¶ã;ï¾Á_b±\k™Yq²Ûk+<¶Ï=rHÖþï38ö^£1æ—ouÚ7ÊÁ^9`¤›ÃÞ uDM$&–ZwIq†O½ÂÎv|±ò4²GrXð|ý⎀±¥·»}M½Î'ð|"p~dÀþ%7øÍå3ƒzáóÆ4åxp'á@꿽ض‹½<Ô´ÕwÕFd%N×µ®9x9$¢Ê3Ã¥“_ð×Kë-z}¢êƸ=µÙ|­Žg€÷ïñ†œe¿@rMó|á{8Gá+ZØh*p¹UÑ:¦å\ÈyŽ/†6Å嵜ØÉ9.{¶Îƒöp[DšŸY^Ènih)éFÿ®‘ÎÛÿ¨©Çõmß;$¡®ÍsC Œ‚¼m/§él“\%§pp«¨2ƒú¶à|$ì7^ÙØekÓÄ%TƒÅón&g²š:ë|­Žåˆ»-þ¡O=Ï'MQÒ}ùõæ:•Õo+¥1¸°¸ŒŸÝ^Â/"»ú眽Ç_’ÂÞ&­Ü8eK0~’—S[ÅžC*$©åÎóo‘Ýgð:úe7Uú¡Î{!8\AÞý$DDDD;uDDDD9Ï]‘q{C‡¡õ]E™Ï6G¸;®fÓ;îÒÉ‚_—{ê¾Ku 1?ï‚ßMOW#ye•5¯®HßÁ+è€Nê§f! Ë0áÌéO+ ^vãidà»ý`7 –Âã–ƒô]RÓ3”³¶WlQ1ƒfàõ+ŒðC8h–&HIo3A--'bGÈ•Ž/<á âS=w¬•Ä9Æš7S‚G¨Œ·>þ½Õ‘«¼$ð®íLE–;®¨ [é«Q>®dÅÄýhð^æ_£pÙ¬¢Bù=!ަ@Ã$µ¹Ë·ÆÛ+´½‚Ѧ,v+=º‘Á aÉ ÜI$žä’w+Ó'ÐEGçÔü‚yËÆÕúOLêêÐê{²óNÌ–2²²ydìK i÷+_<(ðRãG-=6›¬µM'Jš;œåñŸP%sÙù´¨×ÅÜAÓÔWé#Õ6Æžf6/‚±­þÔggŸî’Oî…4ÿ xÅW3i©øwª^ÿY·>í¾î”4£©ßE˜ø5oñ¥5=®ÇnÖªYjcŽz{¹ÿRd_‰ølNÞÍœ î§1 nNª¨Çe‰cyËË€ Žïê=VÊPÇO$f7Æà3‡í‘œgÑ}0´?âËNPr»¹èH3ÊyZVñ–Ú‹Ÿ.šrÛY¸WÏAO 1óVÉ-S[2ürX\‘øNp2 /nSiž%éËÍ,£Î¢¹Á)8È8›cЀv÷[Câ=îZSÚ©¡{§ª³ÕÂÆcg¹ð½ \•¬½ko¹‹E¦é;Ÿ•–ȈŒ431°` ¸[Îz©ãàÒ˜AÀ»+éë!òâ31³±Á¤J|ÎfZK‰ÛNÙÊÌÕ´”µÔsQVÓÅQMƒR[ê# “ü.÷ê;o°+\Ú‚¥õ·êú·óÏS$‡''.q?æ¾E°x~Ó­2 ä© wïríüæ¤e;ùጓ¹h%v4l=–«øÛcºiî,ê‹}â†jYMÒ¦hD$ŠI#ÓЂ×²ÇN'ïÕ\¼=Öš‹E]ÍÊÁv« •Ü­—ÉœÆ%hvy]Ž£æ²óÄ?*/±×Zõ=m¾8šq‰Àwí8™C²Oäî³N™ñuE Ù-ê×÷ÍgNÖÆ0æÇOW¸c‹pXqÕ uè¼§x±¬®¡¿Ú¯:b–[eƈi椨tsÂÉÊÐâî`âÜÇ/NŠ(ÉX<‘[œQÍÛ¢È^g¡ÿMzVK¤ŒeÑIiÞ4éw5¯ÔQ¶¢@AÏã“™Ý{g âžÅ¦m°¡d³ÒÁ"œ(#cDnRy@ híÓVN¼Õü.nŸL¿[iJê"5tQ>)‡’טÄqç”—Ûoªú*8ùÂ!ú§kHÃÞo-Iíœí¸ü×IÇN RÓMNÝuNß2GÖÒÕ‚ ‰Û!™ý¬LòËâS„–úñlƒP=üÀH*_K1„—¾?ÙÇáÇEoêON–Õz›LÖÚe¯‚Žú?¾²*°¹Žç€r·,•¯o„óuêE‡gñ™U.›Ô^¬ñAxg—ú"š•‡É~p${œ\ÃŽ@ý¬vYë…bÓ\IÓðÜh`­£šIÝ ©fÎikÈænăíÑeXÚÀÖŒ^àÆä•æ¸9Ù%®ê/eücjZk7øhÛ½¶Ê'Ò\®0Œùf6V;•þ¥À Fý1Ô¬á׆—Þ$ñ*˜Zh-Š‚áO%â£Îlbc!v7ܹÂ7;œ ÖÍêI-“âÓÊq=½PÐÞ£ª–ZšÉ%·2ž@Ð*YO d’±¼û´I-ì ×”ä™ä$äóÖˆ¶á‘ÉáßLãÀÚžsœü_}›È…ŸíŽç¦fGM—Ø3·Lcufq—@Úx‘ kôÍÊ$‘=Ô3ÈÞaISå½±Êßá.éé•®O:—‡:ù–ÓÉ d·RÔ·™áísÝò»»D­’Ï?gÞÑ÷ÊKs¼Øm·;µ¾ªA-dBo%a9k]–‡s0üXÎØÊ™ü­äò·Ë cl˜ úh½vŒÃtÒv øû²¦Ý ƒ±èæ¬[¯<,ðŸR²y(-séÊÉCd¶ÌYwbbvY`¡¢à§¬µU¬ªÑ„ÁM?“÷†[ß#—µÍ,æ™÷ †áu£m®Å¦nB¶8½Õ:•±rIÈò] n9]±pAÛ!JJQâïMXÙiŽÍEx†y[W e;åhÆÃ{OЬU|—ÄÅ5Ʀ;'[#œKþæúÉby]söЫ{úcƸÛ#vâK_ƒÎ×T\2ÁŒçs¶Á}ö‡õ Ζ’Š£ˆ•3ÍPÚvË4•æ(\]ËÌ÷;-`iÉ.=0OeuÐÛüUUQÅ4PkÆÄòCD—Äý°7kähÛ¸«Ý¥·x¾¡f!ƒP¹˜ä[•Ä^¹t„÷꺮¼mñ¤|Éu.¬¦…ÎÁÕÖ7ù,k[Êà$fÛœ8åÝz`ìéUN-Ý/ERΞeYaÎÝZìÿ5•x_â?@ë[“-5K`¸È#޽ÍÊòOÀÙÇâåÏ0+3¢"„ÿh.˜Žß]¦õ,¯«¬uM<õ”Fü8:67æ 8Ïp…àþÙ]Éa–£ô£ ò䇲 r¯ÅÐz)ç"6ƒ±erT%F/ºVjª5sÓvëÌtpÕER)"k¤Œ¹Ñ–dgÀ€ì``ú¨÷ÃïœRÕÏP4ÔÖX`sFo-u+¤æw)äk›“Ê'§lu _øpàÜ\-±\Eƪ+æìðk `c^#c? ‰$÷>e =–ÓgmX´Û©hþùW%mW•o›<‡/‘Þ®vJøõžésÒÕô6¼–k¬Œ޵¬ò¦nZAË ®ü%ËUÝ/{VIs¦¬òëé+%{*©Z€¸Æá‚wc²¾îüdâõží%v¯Õvúº\yÐUTÊÙp̱qÝK> ÅÄ‹§-÷mSp»^ën±ýäEY”Ñ;!­kw-Ü“œçeÕÆ}x»hiôõ›§šªë,4îpx{©£/ÍÍÊÐXÐ^pÖ¸øWâHu-€ÕÉ“I©sc”ÄyÈÝÄ=ä`cœÕµ 8Äí_Iú`þ‘®?u¨švf§8ø¢ø°céñç?6/[G„]Dú˜}Ö–zXŸL](ƒÌ’X§ß —•ÍÎ2àáò_f˜ð‡$’Mý)×T¹•@DË}<“éÇâv\#û‡²—ðõÁ-M+õ t÷~Vó>¢âçŹÜ3” »rUñoÐ|:Óæ»F‹°™¼ìÉ4ÖÆó·âåÇ(qIì:ôW5MöËi¡ç¬­¨£ŠG4`ÂYüŽRÐZ¯Š»Ä ­FZz½cO+à%Ž1C$¼ØpiÁcH={zgj_7§ªi ž¶âÆ€C™NèÉÏ6p×ãaÊNáY2xÆ£¤æm)$Îp“ýl ŽÛmŸÍ}†çŸW(…Úªåjª´ÒÖÁ!® ’fHcsj? òË]ðoœ·9*øhàÕ¯„úvç%Þ[µMÚ¥³KTèD?«`"&r‡;§3É9Ü»²ËžTx?9X§Žz%õ´W Mi·Ëp¬^]Eæjž\†>Õ²´9ÃÐŒzppRg´³]Ç-ê8LRÓDö¸18Œ¼´–™ F\Zq—}òˆˆ„ePgºeTî:.³!4µÄŸA²áÈà\æ‚Ië•Î6r·  䎫° DDDDDDDDDDDDDDDDDDDDDDDDDD]lÙqÈÏoeÌôÛN7Ê©ù*g8ì}J""*ÑU ¡Ï`?4Æù\d8i9ÆñÿWXÞ%X¨&yu-5’ÃF_$Ò‰N¸Ž1¶{(žíÉ*ˆŠ|ø¬ûß› q&ŠïSÏFü1J1õ©%ipû¿—“–œ¯µPº,sÆni>)Ëe~¢‚@ëdï›Ë%–Fðaæ9ùßð`c˜¯[†ü8Ñœ?§š'fŠÞj`‚*™÷9ÓˆCƒòN ¾7d휫À7¦UU0=ÀUÇ|¦Ê§Q29‹wÈé·æ¬ýqÂý­hå§Ô:ZÛTù2MC!Ô4ú‰[‡wÏ\zåG­UàöJc=N‰Ö<Îw7%Þ/‡ ó£Ücש=¢(.vd¶^ëÿH\é-ðAYV\OŸ3ck^ü Ë9;ïºöMŽQ>ñÃZ~*pòM4ú¸¨j™U U%\‘/c¾#Ê',/oQø½•áoƒZ“…ò]Ž¢®µÕ6Yž)~èçžpy˜îfŽRC1€O^«=T=Sî9zî¸;8 ã;{®mÍq{ÚZFZr=0°•g‡.YŸEz£Ó•Q:ÔÙ eSÞÚ—8Þ~bNZH Œ@ë…hÒp6 qM©ïÐ3P\oŸ¤è+„>dD<¾FHÒA ˆžÞBýa#8’¯<Î'lÁVwuÞ„ÑÐ1š·QQ['¨ Â^÷THÒì#Œ–äœcªÄz¿Ä–´y_uÓúЬãMU#¨iæhèæ:F—wý¬JŸw8­µ7 -5i†b*~g¾wsmÔd2Gl¯^$¸Ÿr¶ÌêÊáil§Ì¦–’ßç-ÉåËšF:oì;¼ñƒˆW·pÕ·bÎ@ǘçòÏ(pvpÎPN{õ^eÓ[k ÕSjµÖzL=²×Hü仂íÆ\ï—7ºó+.×±M-¡·*©¨‹ƒ].òÜî¿„íœû/¢›Nêûµ+«­Ö;Ím 'e)ª†ŠO(J÷±…Àr‡à'9#Õ}2è}i =CgÑwï2 R9ô’óG'âÇ.?tæ¾;’Ô—™bý`ºÜ»ÈÊzg¸´dnyA!§˜|Dcu’-Þ8µwŠ'A¥« ɹŽ^Øt®h=¶úôYO„¾ø½¦.t·wVéº'ùÍ{¡}d®|| ]ÈÎR3†à8瘩¡c¦ž’ÓMOSäùÌŒ <––³›¿($à}WÚºŽdBõ œl Ï©\‘S”swꨈˆˆˆˆˆˆˆˆˆˆˆˆ‡9ÛDDú"âàâvw(Ç`ªÞª¸DDDDDDDDDDLŒã#(w©ßTn2N?‚«ŽØ\H-g'rUX\NívßuͲ"§¾Uc¡e<ŽÍl<¹ywá¾rµ·â²§SÏ­I_ßK$7XßUn–šfÈÇÓy¯  Û—qƒ¾AXETUMš²˜éú!ÎÊ©+9ÉœàÑœôæ4cÐ/-ìh{äh-çÆG6FÉ}ˆ‡¡Â*×¥Ò¹œ„c¾A ·(‹‹NwÛ.Hˆˆˆ€åP’BséÙUPã* TTÛ8쪩¿²£›ÌwT•Jëž(çˆÇ+æžÎù/žšŠ:H#ðÆÖd÷ÀÆJ ™%…æÎ>ò±¶¨àæŸÕGf¹ºËr}Æ!´Ñ‚Ñ m‹$|ÎI'¯l+š¯CÚk l+tWÚîv¶©Æ@×c8 â¤áFóduN‡ÓE®9ÿèlYÎÝ2:½˜´ˆ‰‘FÍ#cäˆb6ËZ1_M6‘ÒtÖ›LY!‘ÐDßäÕöEd³EËåZh#åo-37ÎÛz¯µ±ÆÜòÆÑÌyŽS긶ÍË mæw3°Ñ¹ÛžÃò]ŠkZ0ÐôU ñ6\†é’'e@ÜîáôU uÝPì3•Ö2G]ÏuÈ2¹“ù#H# ä*¢*=Ü ¸ õ_< ©ŽræËùœ\NÓ¶Ž˜ÎùÊúQE– êèêYÏñº)œe®#ø¨«Ç ²_ïQÜ8{q´Úi|†Fë}q”FÙ2âéö5Ørü<½A9Ýc~øCÖµú…ôúÎ(-6¿ºÔ‘WOVÉ\gk‹"£|ŸÓðŒ;esèß2‰.´šªöèÛúÆÛ«(C r†ºHÜI!Í-pŒðz4º?që…7®kilÕ¹ª·N_-¶¸4†ÔBFû6æhèzdU‚È a$ï…1~νa˜¯œ?ª‰®`?¥iŸË’×a‘½¾½šG¦þªd2Zó##k\v.®m~Ñ?5UÅŽ.;´ó\‘q-v•ÈtD%SîUQû"&}‘3Êp >™]EÅ ü/öÏòUd$`üÉ]­9?ȪªìªˆŠ˜ÏPª6興ˆˆˆˆ¸ä»a±ï•ÉÞaŽg7Ü.-g.áî?5GµÝºw\yHìªyCƒî¸ñœcè6]£`\‘ "ùêå– ttóÎ׿Ë{c,€þÛ¹ˆ8èÜúßBâòFÁ¼Ë¨óÆïžíû?˜V—ø}§x—¤fÓz–æ2ž¢"54££ØOCìF8!FmSàβ›O1ú[Y2¾òÉÏ4w=;á=,çpxõÜ;Ñ«Úð³À~"ðÏŒuWkùµCm®„ÔRN%mKžA g3Zöò‘¹ v åK4D²"""""""&êŽÎ6 uTDEBê3쨲3òÊäˆp6i?%G¿—«Iù.¿?§êŸ]¿æ»‘PÌãGoeTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD Áç—|lÉ9ßÔ®hˆÑ€$ã¹îˆˆ˜ß(ˆˆˆˆˆˆˆˆˆˆˆˆˆ›ãݾpˆˆˆˆAõÂ"ë|,x ä0q²ìˆˆˆˆˆˆˆˆˆ™ßˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ€a|¢""""'tDDN舛åP “Ÿ^ʨˆˆˆˆˆŠ„dç$*¢ ô'uTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD; ª誈ˆˆˆˆˆˆˆú""""""""".ªo?õ‚/<ç““?‡¶sßÕv¢"""""!8¡éÕ1õT9Ûª¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹‹¶èªÝ÷UDDDDDDDDDDDDDDDDDEB ƒŒTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEBU1ÜÕ@Ǫª""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*ÐïßoeTDDDDDDDDDDDDDDD$Ç›ÛuBóÐ7uÇÌ~&Ùv¢""""*8ã '䄜g¢¨9‰œ"'TDʦÃ*¢""""""""""""""""""""""""""""""""""""""""""""""""""""""""¡h=¿$k@õU€ˆˆˆˆˆH$®³)èØÜOÓuÊ<‘— É6TiÜŒårDD\qÓ;ŸuÈ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" p'c•BïåБœ£KIøpW$DEGF À*÷DEÄñü qmљ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""àèÚâ :'–=JäU0©Ê=Õ`8gmÛ;.Hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¿ÿÙOpenLP-2.4/tests/resources/songbeamersongs/0000755000175000017500000000000012657640341020122 5ustar raoulraoulOpenLP-2.4/tests/resources/songbeamersongs/Lobsinget dem Herrn.json0000644000175000017500000000113612657640340024530 0ustar raoulraoul{ "title": "GL 1 - Lobsinget dem Herrn", "verses": [ ["1. Lobsinget dem Herrn,\no preiset Ihn gern!\nAnbetung und Lob Ihm gebühret.\n", "v"], ["2. Lobsingt Seiner Lieb´,\ndie einzig ihn trieb,\nzu sterben für unsere Sünden!\n", "v"], ["3. Lobsingt Seiner Macht!\nSein Werk ist vollbracht:\nEr sitzet zur Rechten des Vaters.\n", "v"], ["4. Lobsingt seiner Treu´,\ndie immerdar neu,\nbis Er uns zur Herrlichket führet!\n\n", "v"] ], "song_book_name": "Glaubenslieder I", "song_number": "1", "authors": ["Carl Brockhaus", "Johann Jakob Vetter"] } OpenLP-2.4/tests/resources/songbeamersongs/Lobsinget dem Herrn.sng0000644000175000017500000000115412657640340024346 0ustar raoulraoul#LangCount=1 #Title= GL 1 - Lobsinget dem Herrn #Author=Carl Brockhaus #Melody=Johann Jakob Vetter #Editor=SongBeamer 4.20 #Version=3 #Format=F/K// #TitleFormat=U #ChurchSongID=0001 #Songbook=Glaubenslieder I / 1 --- 1. Lobsinget dem Herrn, o preiset Ihn gern! Anbetung und Lob Ihm gebühret. --- 2. Lobsingt Seiner Lieb´, die einzig ihn trieb, zu sterben für unsere Sünden! --- 3. Lobsingt Seiner Macht! Sein Werk ist vollbracht: Er sitzet zur Rechten des Vaters. --- 4. Lobsingt seiner Treu´, die immerdar neu, bis Er uns zur Herrlichket führet! OpenLP-2.4/tests/resources/videopsalmsongs/0000755000175000017500000000000012657640341020143 5ustar raoulraoulOpenLP-2.4/tests/resources/videopsalmsongs/videopsalm-as-safe-a-stronghold.json0000644000175000017500000000326112657640340027116 0ustar raoulraoul{Abbreviation:"SB1",Copyright:"Public domain",Songs:[{ID:3,Composer:"Unknown",Author:"Martin Luther",Copyright:"Public Domain",Theme:"tema1 tema2",CCLI:"12345",Alias:"A safe stronghold",Memo1:"This is the first comment ",Memo2:"This is the second comment ",Memo3:"This is the third comment ",Reference:"reference",Guid:"jtCkrJdPIUOmECjaQylg/g",Verses:[{ Text:"As safe a stronghold our God is still, A trusty shield and weapon; He’ll help us clear from all the ill That hath us now o’ertaken. The ancient prince of hell Hath risen with purpose fell; Strong mail of craft and power He weareth in this hour; On earth is not His fellow."},{ID:2, Text:"With force of arms we nothing can, Full soon were we down-ridden; But for us fights the proper Man, Whom God Himself hath bidden. Ask ye: Who is this same? Christ Jesus is His name, The Lord Sabaoth’s Son; He, and no other one, Shall conquer in the battle."},{ID:3, Text:"And were this world all devils o’er, And watching to devour us, We lay it not to heart so sore; Not they can overpower us. And let the prince of ill Look grim as e’er he will, He harms us not a whit; For why? his doom is writ; A word shall quickly slay him."},{ID:4, Text:"God’s word, for all their craft and force, One moment will not linger, But, spite of hell, shall have its course; ’Tis written by His finger. And though they take our life, Goods, honour, children, wife, Yet is their profit small: These things shall vanish all; The city of God remaineth."}],AudioFile:"282.mp3",IsAudioFileEnabled:1, Text:"A Safe Stronghold Our God is Still"}],Guid:"khiHU2blX0Kb41dGdbDLhA",VersionDate:"20121012000000", Text:"SongBook1"} OpenLP-2.4/tests/resources/videopsalmsongs/as-safe-a-stronghold.json0000644000175000017500000000341412657640340024755 0ustar raoulraoul{ "authors": [ ["Martin Luther", "words"], ["Unknown", "music"] ], "ccli_number": "12345", "comments": "This is\nthe first comment\nThis is\nthe second comment\nThis is\nthe third comment\n", "copyright": "Public Domain", "song_book_name": "SongBook1", "song_number": 0, "title": "A Safe Stronghold Our God is Still", "topics": [ "tema1", "tema2" ], "verse_order_list": [], "verses": [ [ "As safe a stronghold our God is still,\nA trusty shield and weapon;\nHe’ll help us clear from all the ill\nThat hath us now o’ertaken.\nThe ancient prince of hell\nHath risen with purpose fell;\nStrong mail of craft and power\nHe weareth in this hour;\nOn earth is not His fellow.", "v" ], [ "With force of arms we nothing can,\nFull soon were we down-ridden;\nBut for us fights the proper Man,\nWhom God Himself hath bidden.\nAsk ye: Who is this same?\nChrist Jesus is His name,\nThe Lord Sabaoth’s Son;\nHe, and no other one,\nShall conquer in the battle.", "v" ], [ "And were this world all devils o’er,\nAnd watching to devour us,\nWe lay it not to heart so sore;\nNot they can overpower us.\nAnd let the prince of ill\nLook grim as e’er he will,\nHe harms us not a whit;\nFor why? his doom is writ;\nA word shall quickly slay him.", "v" ], [ "God’s word, for all their craft and force,\nOne moment will not linger,\nBut, spite of hell, shall have its course;\n’Tis written by His finger.\nAnd though they take our life,\nGoods, honour, children, wife,\nYet is their profit small:\nThese things shall vanish all;\nThe city of God remaineth.", "v" ] ] } OpenLP-2.4/tests/resources/openlyricssongs/0000755000175000017500000000000012657640341020167 5ustar raoulraoulOpenLP-2.4/tests/resources/openlyricssongs/What a friend we have in Jesus.xml0000644000175000017500000000332012657640340026203 0ustar raoulraoul What A Friend We Have In Jesus Joseph M. Scriven Charles C. Convers Public Domain 27714 Christ: Love/Mercy Fruit: Peace/Comfort What a friend we have in Jesus, All ours sins and griefs to bear;
What a privilege to carry, Everything to God in prayer!
O what peace we often forfeit, O what needless pain we bear;
All because we do not carry, Everything to God in prayer!
Have we trials and temptations? Is there trouble anywhere?
We should never be discouraged, Take it to the Lord in prayer.
Can we find a friend so faithful? Who will all our sorrows share?
Jesus knows our every weakness; Take it to the Lord in prayer.
Are we weak and heavy laden, Cumbered with a load of care?
Precious Saviour still our refuge; Take it to the Lord in prayer.
Do thy friends despise forsake thee? Take it to the Lord in prayer!
In His arms He’ll take and shield thee; Thou wilt find a solace there.
OpenLP-2.4/tests/resources/openlyricssongs/duchu-tags.xml0000644000175000017500000000252512657640340022760 0ustar raoulraoul Duchu svätý volám prÃ­Ä <akordy> Author Unknown <span class="chord" style="display:none"><strong> </strong></span> [D]Duchu svätý volám príÄ, [Ami]oheň mojej duÅ¡i daj,
[G]Oheň môjmu telu daj, [D]rozpáľ ma.
Všemoh[Ami]úci [G]Boh tu s nami [D]je,
neko[Ami]neÄne [G]milostivý [D]je,
Uka[Ami]zuje [G]dobrotivú [D]tvár voÄi [Ami]t[G]ým,
ktorí milovať ho [D]chcú.
OpenLP-2.4/tests/resources/opensongsongs/0000755000175000017500000000000012657640341017630 5ustar raoulraoulOpenLP-2.4/tests/resources/opensongsongs/Amazing Grace0000644000175000017500000000345212657640340022146 0ustar raoulraoul Amazing Grace (Demonstration) John Newton, Edwin Excell & John P. Rees Public Domain V1 V2 V3 V4 V5 22025 God: Assurance/Grace/Salvation Worship: Praise [V] ;Test the chords format ;Chords beging with . ;Verses begin with their verse number ;Link words with _ ;Comments begin with ; . D D7 G D 1A______ma________zing grace! How sweet the sound! 2'Twas grace that taught my heart to fear, 3The Lord has pro____mised good to me, 4Thro' ma________ny dan____gers, toils and snares 5When we've been there ten thou__sand years, . Bm E A A7 1That saved a wretch like me! 2And grace my fears re___lieved. 3His Word my hope se___cures. 4I have al___rea____dy come. 5Bright shi___ning as the sun, . D D7 G D 1I once was lost, but now am found; 2How pre___cious did that grace ap____pear, 3He will my shield and por___tion be 4'Tis grace that brought me safe thus far, 5We've no less days to sing God's praise, . Bm A G D 1Was blind, but now I see. 2The hour I first be_lieved. 3As long as life en_dures. 4And grace will lead me home. 5Than when we first be_gun. Demonstration Songs 0 OpenLP-2.4/tests/resources/opensongsongs/One, Two, Three, Four, Five0000644000175000017500000000162112657640340024103 0ustar raoulraoul 12345 Traditional Public Domain T ;Test [T]ag element - should be turned into [o]ther ;And lines beginning with numbers ;And a title that contains only numeric characters ;That isdiffernt to the filename ;And most elements are empty [T] 1, 2, 3, 4, 5, Once I caught a fish alive. 6, 7, 8, 9, 10, Then I let it go again. Why did you let it go? Because it bit my finger so. Which finger did it bite? This little finger on my right. OpenLP-2.4/tests/resources/opensongsongs/Amazing Grace.json0000644000175000017500000000253012657640340023112 0ustar raoulraoul{ "authors": [ "John Newton", "Edwin Excell", "John P. Rees" ], "ccli_number": 22025, "comments": "\n\n\n", "copyright": "Public Domain ", "song_book_name": "Demonstration Songs", "song_number": 0, "title": "Amazing Grace (Demonstration)", "topics": [ "Assurance", "Grace", "Praise", "Salvation" ], "verse_order_list": [], "verses": [ [ "Amazing grace! How sweet the sound!\nThat saved a wretch like me!\nI once was lost, but now am found;\nWas blind, but now I see.", "v1" ], [ "'Twas grace that taught my heart to fear,\nAnd grace my fears relieved.\nHow precious did that grace appear,\nThe hour I first believed.", "v2" ], [ "The Lord has promised good to me,\nHis Word my hope secures.\nHe will my shield and portion be\nAs long as life endures.", "v3" ], [ "Thro' many dangers, toils and snares\nI have already come.\n'Tis grace that brought me safe thus far,\nAnd grace will lead me home.", "v4" ], [ "When we've been there ten thousand years,\nBright shining as the sun,\nWe've no less days to sing God's praise,\nThan when we first begun.", "v5" ] ] }OpenLP-2.4/tests/resources/opensongsongs/Beautiful Garden Of Prayer0000644000175000017500000000322412657640340024424 0ustar raoulraoul Beautiful Garden Of Prayer (Demonstration) Eleanor Allen Schroll & James H. Fillmore Public Domain V1 C V2 C V3 C 60252 God: Prayer/Devotion Prayer: Prayer/Devotion ;Test breaks and newlines ;A single | on the end of a line adds an extra \n ;Blank lines are ignored, even with a space prefix ;We also check that the chorus is added after the verses, despite the order in the file [V1] There's a garden where Jesus is waiting, There's a place that is wondrously fair. For it glows with the light of His presence,| 'Tis the beautiful garden of prayer. ;A double || on a line adds a new slide [C] O the beautiful garden, the garden of prayer, O the beautiful garden of prayer. There my Savior awaits, and He opens the gates || To the beautiful garden of prayer. ;A double || on the end of a line adds a new slide [V2] There's a garden where Jesus is waiting, And I go with my burden and care. Just to learn from His lips, words of comfort,|| In the beautiful garden of prayer. ;A single | on a line adds just one line break [V3] There's a garden where Jesus is waiting, And He bids you to come meet Him there, Just to bow and receive a new blessing, | In the beautiful garden of prayer. DS0 OpenLP-2.4/tests/resources/opensongsongs/Beautiful Garden Of Prayer.json0000644000175000017500000000242612657640340025377 0ustar raoulraoul{ "authors": [ "Eleanor Allen Schroll", "James H. Fillmore" ], "ccli_number": 60252, "comments": "", "copyright": "Public Domain ", "song_book_name": "DS", "song_number": 0, "title": "Beautiful Garden Of Prayer (Demonstration)", "topics": [ "Devotion", "Prayer" ], "verse_order_list": ["v1", "c1", "v2", "c1", "v3", "c1"], "verses": [ [ "There's a garden where Jesus is waiting,\nThere's a place that is wondrously fair.\nFor it glows with the light of His presence,\n\n'Tis the beautiful garden of prayer.", "v1" ], [ "There's a garden where Jesus is waiting,\nAnd I go with my burden and care.\nJust to learn from His lips, words of comfort,\n[---]\nIn the beautiful garden of prayer.", "v2" ], [ "There's a garden where Jesus is waiting,\nAnd He bids you to come meet Him there,\nJust to bow and receive a new blessing,\n\nIn the beautiful garden of prayer.", "v3" ], [ "O the beautiful garden, the garden of prayer,\nO the beautiful garden of prayer.\nThere my Savior awaits, and He opens the gates\n[---]\nTo the beautiful garden of prayer.", "c1" ] ] }OpenLP-2.4/tests/resources/opensongsongs/Amazing Grace20000644000175000017500000000346512657640340022234 0ustar raoulraoul Amazing Grace (Demonstration) John Newton, Edwin Excell & John P. Rees Public Domain V1 V2 V3 V4 V5 CC: 22025 number God: Assurance/Grace/Salvation Worship: Praise [V] ;Test the chords format ;Chords beging with . ;Verses begin with their verse number ;Link words with _ ;Comments begin with ; . D D7 G D 1A______ma________zing grace! How sweet the sound! 2'Twas grace that taught my heart to fear, 3The Lord has pro____mised good to me, 4Thro' ma________ny dan____gers, toils and snares 5When we've been there ten thou__sand years, . Bm E A A7 1That saved a wretch like me! 2And grace my fears re___lieved. 3His Word my hope se___cures. 4I have al___rea____dy come. 5Bright shi___ning as the sun, . D D7 G D 1I once was lost, but now am found; 2How pre___cious did that grace ap____pear, 3He will my shield and por___tion be 4'Tis grace that brought me safe thus far, 5We've no less days to sing God's praise, . Bm A G D 1Was blind, but now I see. 2The hour I first be_lieved. 3As long as life en_dures. 4And grace will lead me home. 5Than when we first be_gun. Demonstration Songs 0 OpenLP-2.4/tests/resources/opensongsongs/One, Two, Three, Four, Five.json0000644000175000017500000000070712657640340025057 0ustar raoulraoul{ "authors": [ "Traditional" ], "comments": "", "copyright": "Public Domain ", "title": "12345", "topics": [ ], "verse_order_list": ["o1"], "verses": [ [ "1, 2, 3, 4, 5,\nOnce I caught a fish alive.\n6, 7, 8, 9, 10,\nThen I let it go again.\nWhy did you let it go?\nBecause it bit my finger so.\nWhich finger did it bite?\nThis little finger on my right.", "o1" ] ] }OpenLP-2.4/tests/resources/themes/0000755000175000017500000000000012657640341016213 5ustar raoulraoulOpenLP-2.4/tests/resources/themes/Moss_on_tree.otz0000755000175000017500000045423712657640340021426 0ustar raoulraoulPK—O>ˆœœMoss on tree/Moss on tree.xml Moss on tree climbing-moss.jpeg Arial #FFFFFF 42 False False 0 True False Arial #FFFFFF 13 False False 0 True False 0 0 False PKÜ–O>Áb¼bÝPÝPMoss on tree/climbing-moss.jpegÿØÿàJFIFÿÛC   '0"$'92<;8276?GZL?CUD67NkOU]`efe=KownbvZceaÿÛC..aA7AaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaÿÀ"ÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?Îá£jv Ž*8_ä"‰X„V´s¯ïj ÈÉ‹xãaÜN{ ‘˜¶¥“•à ƒÁ½ +HHËÓ sŒ‚þDÔÆ%šPÀ #ôƒùñRaÖG€t( ³ºGL~T¼ƹ`Ø`Ç?xpqïÈ#ð¤1Ö$Ç09Æ_aö8ãúT÷æ<¯8`¸ú÷ª9e½š7ãÕ ™íEʤxë€O?R9ª¸y+—-±¶¨òÈä`uü饼ÒK$q˜Ê¢)<±=qKs„!Žt\äóœçðÎ1Q`-Åìy g+ŽÄj èLíº D‡n\úæ¬^™¢ÜdodÚY@ښ-à¶G˜p?ˆôÛ­JY%ÒÝcrÄfGb3†î=z‘ϱªD2êX¬p¡Üê%MıëëéX·3Ç{|®¨"*›d9ϘÀŸ›Û#•kYÏ3\ÊÒ¼ÎæL`¦=;V=Ê-¾¤Ì@Ç›‚«ølDñIWóåì`L…ŽFxÎ}³N›€GCïN¹·Ìo9 Àm# ÏzD˜m #'rƒœc5 ¤JËŒ“Inz·jeÔìòâ0#B¸=ÍD¬ìY[åþ zS(™[Eæí'x`¿.s؃éÅZÓ‘e`þ`5û¤séÖ«ò#©© –8ØÅ+ÅJÊûÛï)SÆ1Óšž„:¥«I¥‰0 °$Hã?ZcZ5™¦*Aî:Ïʦ½ºj$R¢îéÇGãQ±ß)f;[Œv?^•-êf›¹8ácƒè3P¼©æùhCòÊ:ú`ƒM !”$R¨WP¡\g,:ãÒ«Ý’dòœ}åÀ#±ÿ8¡«”ÕËmº&kˆßcaC*}Ýà ÿ…T‘H¼ àòC¸?­Mg+½„:’P®÷‡9ÏÐUìvÉ\ìÁôîh[;nàÊ,‘åp1õ õ¢ÖG ù‘—“vçrÝA銕¤Ùfˆ¶vó…õö9¦Û †âHÈû²d¹qLCÆ&A 8.2>\œ‚Ÿ¦¤†ÛaŽÌÜgúÒD H%ù•ù8?ýbe|‘ÎmÊùa›m;sëŸëYÎ7FsFŒQ€E6b æž÷ Š}jœ—Û$ñNí«‰!½fñ5$sÔóT·‡áiFAª•Æõ/yÙ9•&ç“UPŸJŠæFr+w&d#Ö«¼Q±åj„dŸ›5qfR¹Í+=ЬÑ,pƽTÛTvLL=sMiùïY6ú‹RñD"ª¾ÔjE‘±ÔÐß7QBw`‰>R™ªRæT¬Jð*,üÜÖÉXµ¡62”‹°ŒvàSÅ‹w ÕIh65¢ ó!Å:Œ¶i_åNi-öÉÅO3HW-<1̘ ÷N]rs¸U²ã?!«+07Qt÷ ÜçßKÇOåN‡N)Îq]UqÆ3Q¼x([êfšs9᪴Ú|‘‚wfº$*½j½Ù;E9Y{ãBëÞ›™¹­anÎÜŽ)æÉ1É©JO )3I'½<\Ižõ¦m#^“dkØVŠ©W*Äó·@jô"RãŠh™ÿÕGÛ& SCކ¤ òñM‹(õ«ZeFj[U^I«;ñÀœ“nä´Ìé­sQ/¥h]b5–5K°âL‰¹…kÁØ5›[5y5  ƒeÙ-Ã!›å˜Y—¶jú\‡Z­sʳTÆWd©]¹a†ü’>oJjʦHéN2ÆéòžkA‘F¼0ëÍXFVQUÔíÎ;Ó.”º Q{ vJ÷éQG(Žcž™¦G–P:`RydÈ7Qp,\H¬:š`Œã­BÀ Õˆ#ùM æ9éCžíšX\Uºf™67(ã•Q#Ž66;zqQI×#µ!–PB²y— !7Û³±<þµFe.HÄŠTÁc9üêÃÜñW!tHÌ,’”-’8oÿ]4ùi·vaŒZBZ‚·@qÏãùÔ5vRµ~k`’›¶‚sž9ú☣yåŠäp~•`Äвw ÔúŸÊ›2ÄÒî†Þ@\ô犵©vð8o™É犰Ì0ûAXÂǸ'P8þ¢º0„±À5VHkû‹Iƒ·r¼åUm'†8¢iÔ†V^ œîn¢…<»Ù!áÈR©Ç5γ2Ã:FS{'@’gùã5ecÛrò;ïÝžr9ÍCÜ®…Ri˜%‡' íÅK`§tP°ÂÉŸ0uÇçõ©¤€ »xÎ3R[Ä#(Óp‘Èw8çÔý3Mö{È­Ä’«‡W‘HøÝVo¦A•bÝ?›/žI.Ò¶søüëi ¶bï"m€²®à9úwâ²õH¥Ž5f|0äd(Ê©’M ܲª£(êw¿{=Ï­;;Ž%¸ (ãQùS­–}¡Š(*}ÏÌ{gd<ž*YqRªËüCS¬ ®å<51”Ib@aÁbÝvD«ß'JEÁH°ÜH,¤ò‡`Š/mPý’@·Ì6úôÉÙõ¨£‡ìÀ3#¶Knãõ®Ü©„«(Eù‡8úô¦DŒë-èòN_‘ïùÑhRIŒr>ã†;@àžÆ ÜB¬ÈdVb0ã¥ÐîP¡C‚¼ìjQˆ†EÁ]Χ*C~›ä†EFì7õ©"W1²ÞW+´÷—‘J™ÄD9Æ¥*ZmT%쀷ÊbaíÔT¶ªùe€Þ ?‰N@>ø оKH²FÈr66ÓÆ5 ‰Vi غ0:åIöéM;‚zšþö+É“½@ÆzþtÏ3{Ã3qæn‹ŽÜd~¹¦¼’Epì‡Õ•ˆÄzþ fа cŒ¿ç­‹N­%Æä}ÑKÊî°ôúóU#Bš’H¬Ûd}Øë‘ßõqœCg• LžTI ˜r@Ï_ñ¥'eqI—¬„÷Æ´,xéOEÛíS¤³CwBº [bƒ€ FѹõYŸ½9zм‚Ä’¨ÚqT~}Üô«ŒIÔe=«BÒNV¦‡Þ˜©òÒê§hâ›Ô\.î)‰QO†7ò«ij@ç4¬;ÐiÎÄñVD ”—¸ª²ê¥u–DéÈ©–ãxÆi ô¨7Ý©è;ˆ·ô§˜9¨MÈAÔS §€ÃéF€,¨ñUäb6{’#‘T%»-À491«–è©Æj¹¸ÏzÚIÏCVK8ˇU-Ää‘Q¦&™½‡#5¥ö$QÓšTµP8>Ôžs5df`9ë[¶qŸ/8ª‚ÑwƒŠÓƒ˜ª„¹;“  ?ÏŠ@Ô€`æª%2wûµVãnÃô©ËåqT.IÎ*Ù-ؾµe€Û‘T­ÈÉxÝñSÐl¯æH5Búe,=œ‡?ZdÌ] s­;ˆÛN*`­(š«()!bÊ\8º/¡¡<0:š­¬}©ç ¢ hñÚ”Œ ”àÒ:ñ@‹‘JØZl-Ú–niF\6%¥WÜj¼Ÿ,”®4>Ü#Q“Göˆ=³.#y#5MüØÏ Šw)3|^nþ*œ¥y5Ï-ÃZž;–=M!Ü»+e‰XHCòx¤2“À¨Øá«;³^3/­DAeÍC`:Õ–á@­`îTHâ9}µz4`úÕ×Wˆib­ ‰!ËŠŠvÃS4d0&£¹A¹võ hŠ7ÚÄEq¹¸ëM÷„S•hvg&ž®àÒ¨;j&á©£n¨W öæ–Iz š£o#‚õYB æ¤vßrtª ‡'ŠÓù½;˽)…Œ´LžjÇÙ—Õß³FyfŸöqŠ™+ŠQl« 0c–mÊjêÀñTæÊÎÀQØ”¬3`X9ª«7SR¤ØzP¸KŸ­YCŠÕe‘|’r2*¼¯ûÀ6MÞrŒ¾”±°W« ”‘֪·xª[k¥µ$7ë@´{&+šzI³*Ǩ¨å”M)‘êœóÀ=êËÈIJô çµ+¢¬6B¬IuÜJŠ0àÉÿ;š:+> æHÒÊ<·epv—Æ1Å$Q-ºµÍÌ1I†bHñóz~”û‹w·bW e@ç=©¿gPæ ¾a#¯÷ƬïØ-”•$¨õÏ¥;'8|$’So¶3ùPµ¹T@¡X¾yéÓžõ dÙó³+Fìñ¾=}•:ä’Æ'(?”uœNÂeLy²Œ (>ýqN*ðˆå#d/ >õ9œDª7dtî1×óª³FY®s)iyïÑr@ü½=èqù’´É€®ÄœzÕì$³‚©³žEgCëpÉ&àƒßnI˜Õw’=Ê}ÏøT²—b[ò>…D Èn\8#ÐZd!ñ"ÊÇc`È™ùHÆéQ —y l€r<ÜãGÿ^¥†Tž5eoQ×¶N?LSBjÃô÷vØw)å€ã''þ½gêKa2ɹ‹” F8çô«~JœÂ“,7xÈÉÀª÷¶ê€ÆÒØOn3UЂK›ÌCÌ¥Tœ“Hñˆ¦…`»ŽÀ[=ýj(0Š2ÄsÀý \‘˜ÅøäŽMIq(Ïæ8,‡zIeTGxÔн~µE÷éÔlÈè˵ŽÊ=‡¥·›d31ôþžjÄ7*~âí9P09ÿFãlTG9¦¾|…ŒýÜؑŒþ”žÄÈXí¡†6€bRã-ü'†;UtßÂ7`ÌJçR?ÄTÒÄy±É¼g$sϯò§¸H!÷œÈNsÁÆjIÜÍêºï‰>ûmbݽ1ùÓ§@r½½OqNe_=‚’AÀAŒtRè(Ùq;ÈïIö-®dYŠË¼BU¹7_zŒÂïª:,fäÍ 4{Î2Àî<þ³ça§É’N Û¸«öwÒÅž CÍlâEVêGCÀÔ$âîek ï¿3 ƒ æ…?2œv9õ§O媦ÍdQŸ—j‚}aDÀE6býÚÞ»>CïëÚ›",’",Avçqˆä3Ðõ=:VJ, Ym|¦*FÜõFh1l…w±V =ø«Qï…>hʱåÇSR[IJ+ƲdRAÇ;©=ê®X–uÒFç;³L‚Óu¼eÛsc }ý*aÑG:&å…¨d¸U5$h¡yëQIl’Pä‚èE¹ö©  ŽµQ´ÖÎUˆ¦}–U8ó?JJI†…¶“Ž´¾æÁ¨’Õñ÷‰©ÒÖEëVRÔœy ŽEGœáêI h3JÃä!{uqÞ«IhéÊšŸíЧÒKx6ôªä@¢6+v)–<Ñ·œtW9Z†I~cEùõ¬D'ÍTc¸Uõ¨$¼ù°4÷¤lO|€c55ÑÛÁæªîvl–£a›mz3Ö¡’ôŽ•IpÓŠ9 CžêG?-I?ñ †7E<ÔæQÚš@Cv\.Vª)|Ž+G!Å1bñŠ,-ǘ6°¢[®;Õ„59ut¥-‰“"j/AMy‰à †LçÚˆØt®&™•‰‡=ix¨KàÓ•ñM+Œu§’A˜Œ HXVÔ•™Qܘ -(äQž)æ¶F‚¯U+¦Újàâ¨_rjžÄÃËdzÖ†ïÝUuéW$R#©@ÌÉÞ~´Šùâ†MÄÐAXòÜV+][où€æ©Ñ?=k\6î*­ÔqvÐ¥¡bÚ]ËÍZÎEgYæ´ÑFÚ°d`üÀT®~Z‹z“•ÇÐ# sDÏ‘ŠS€*&äñIˆbœ56p YXKsŠwÙ2y¨æHMØŽ9­ ÍÑsVã…UpjXÑSžôs_A\Ê:z{Šd¶‹äVŒÍ™2*Få¥p¹˜«Þ£qóU¹U R<šž¤ÜšóŒU™Ȩ!ùy©ƒ–äñZÄ´9HÕëIC-f³sÅ]µ`©Ö­ ‹q6çÚ=j'ÍëRÌp{“PÍò·èÄåËö©aðj‘Ââ¦ÈÆìõ 3í¦-óG!—#¨¥‰É\S¦@€ñRÛJÕyíÌ„qNX^Ž)&¯aÜšyÀ—ô¤`w¬Y'f•Žzš§Ö†R:飼 p¡®`LGJ•/{Ò¨ uªRäÌMd®¢àõ«ÑÜîŒ1êj„ÇÛ*šY7 ïNw¯©4ý¡sÐ ”+¨õ4Éäq“*梹镊“nõ Ì<Ó’\  Ú¤FQ–¤ÀhO)=ªh˜ š£³Ç#+ÇOZОf Ì_¶GÿZ£³]T²‘’¾zSbVÄJãüóïT&,Ägî†(éVþQÀ§2Bpr:¯cý*© {|Àæ¡èi‹Ð•ÊAüG„I»f\’¡1ü8 lr*RãU§Š7™Ýs´|ÊsÏLõé@& s,jÊŒªŠà§÷\þÀ«ë*Ë`p@Cއ=3ô›*ù±-Ù][$û’h¶“̸’ݼ¦ÍTì ÔÌ“`ÜNqŽp:‘ÎOéNdÝ’rlŽØâ¥T.ìpªÊO¡üé²8Û·qÀŸ Ç6,‰"dËl1= W·M³É P[Qþl2¨î Q€|AªŒÒµÉ˜ · ÐOµ!“¬ªÚ‰òÉeV@0pÆOò5uÌ-r>\;°Ü}ES¶´Û"NI7—ÓïdÍ[š6v$°DP g½M\Idrª™7™Ç…µ9Œ7 o¼îHçkI#ô¦+£’Ž?Ò ’ÖMÒH>YÊç®Gph`:9™®Þg,Œ`äcž½ºUkiD)$ÚË.C ÃŒ“ùÒ[­Ôˆ.%“q#jîaÏ=>õ;(t‚ŠÒ.ª£ãöÁõ¤&+rǸ V ‘Ôc€1ùSH“É7Ÿ›äLòsôã4ňÉ#—$ªœކ£k†ŽÔÀÁŠ–$¨Á©z–´&Œˆ"RÊ Èv*žüŒþ<Õˆ5v0Ÿ‘¹ õŸ¼Çm»žN“Èõ?:ƒ0 Í…þš€ÝÍ–e˜4Š1È ©ä?©^4W7ó¤K‹hØ;0ë“Ø~½*CŒ‰nU¡máÑ³Ï €3T4é÷\3yjIR¥OQúþ•wÐÉîXeí2D±´auÆ<Ö‰15º–Ža»»yèr9Î ª±Ë$;U ¼{rz{tÁ÷©#Õ˜…9 ¼;ã¯×¥HÖäSÇ #Ëû¬ÙD>yâ’F%0pHî§Ð`ÁØÙ$ç¦1È­"Í#±Fh‹B¤ÛC±ÝNâî6…^§ñ­imÂBAª‹[» Iäà°Å?QÈ»f$e’`å³Cp Îxôrm$Ž@˜“µ†s†?ʫٸRõ.11Œt"­´h&ŽHLd*ÊÀ6æöô¦fG(-±SŒŽ .3õ=ê_3ìòÀd8Jþœ~´ÉÂ(2°dÉ<óÍE{¶HN7# õô¡ lnÃóDO9ÇsëL‘öðj¦™pLnɸàõç­h4!¾õ(Ù‰";ZSm4DˆjO1ëUʇÊ#KŽ*5Rí’)²:–â›%ÒÆ´r¡«"êíQÎ*9.‘:ÖT·ì~é5UÞyyÒnÅó$]¼¿þá¬×¼•ø,i|‰OÞ¤ŒÇš9¢‰u.Eö­’M^gšººrlÉäÕS`ÞwŠDÉæ¸ûYØÕuÁÅA>S*Ñ9Å1Î:Õiî⯊‰ÕsÍ438«ž*A…zb®ª¦sÅL☭‹+aIvß/#D³Oز)Í3מjÂô¦Ê1H³¢ÐñguYàsPA"·5#°#Š#¾ãN\¨¨ÑNîjldVsdHä¢5ç9¤™ç­GÍ#`VrW%’ȧ¨¤,qS˜]To¦ -±[0«OŒj¯Ú9 š¿å3N•îÉŽã}©ÉÖ˜xcO‹–­‘ é8yZ7<-f\óTÄ…µRy«wâ‹HÂÇšŠñ¾\ nPšD¦ÆE"»Ö³El9¡Ç ÓÜ0iþaži¤Œæ”™,"ÚÙn/J0jÀN3Wt"`O?w4Æ4¬~JG#T–ãqɪÒ=Z´ÉœØ›/(éL2ŠkÒ˜F9Å`ˆ% šVûµ*MÀŽ R@†¸4H0”ŒHçµG$¤®UµBfëU—žMYh‹ƒMh6/5£ˆì6ùéV‰­V]€Å\PE8ù Ž.j[`|Â;S×hZl'äU ,\¨ œsU• ¸ÍMq(#]KoÊš¦K˜ |Øâ˜¼©Ñ=Ù?!§Æë·4h1ˆ0 IeOµ*®ìã½2,†a@  ¸Í\™É>ⳡȓ"­I) Ö2vm‰˜÷[ 8UFŒ]T‘pqQIcä(§ ßF5#EHa>†¶º(û´*Eӊה«˜‚6ÏCZp).jÊÇ ©Ì˜Á£–Âl€à²š~Ònž´\R3Ìf˜že Éɨ¤A´šFÈù‰É§$¨ÊAëC ‚0Ù&¥Kv122clcƒR­Á[§@*0häö«m,lŠ1ƒUË‘¸SÂu>•H .>kqŠ"T!CR‘˜¹¨â\Ž´cÌ t Âä⤌âfSLºáÅ ùUÀÊô5š¾\ŽŒppÏsŸð«x àüVq•ƒ3àîYä÷©(µ,FEº*¸>pAø/?ÌU4+‰p®­(P3c39f<ääóîô¬ç„¡!X7ÊJŸNøê*„L˜soÏ™,[Tç¿|þTÈp2Ä}3ëKj…î7‚[ï*Y‘U›keGÝaÈnqý*$i èñÜ‘V¡‘ÞÉ÷ÁÉ8þ?ÄUfû˜YÀ¯øU• $y,@8äqß¿çBÜ&>â2K( b’ze²˜µ@›n¡1œŒ}~”ýÎ䨢Ÿ¡dT¡VYäÙ IFÎçƒïÀ«2,\Ç$ Ò[eعñžxüꬱ,[oL÷ô©æ¸G€arè6¸ôcÔ3Yó Žá´ƒ»ÓÞœ‹[ q±›*S$1Ž@ÀÏÓšnH1l ØäSŠîGð~ÔÐ?w’HäGa‘P= FÖÌÀ]»\œ:š‚ææáícܬ›Â´žëœç¥Y•ZÜL#Þ-ÅËr þxPH‹cÌKLUvm瞇ò«ô%nEçKÄîÑœ`õóÇzºžbüðL@s–eÁ'ʲÙv¹Ýž~nZ½I-¶®:úf§˜»v1l óÐm žÞ”ë[vSöœ¸!TòBçúöªîÁ ;öÉÐÒ­Ç)*8¯FÅ4IDš}ª9ÝèÇ×ðª×*ªŽU†³VÈd]Ñ‘çoÎ3ü>¿çÒ¡{V –dU${gš‡¹ièVUÝmlýæÜ{JTÏ=êÊ€Öò É ŽÝꬨå¯CíHfŠ»½¶òìpʹf$€éù+%¡!£}ĸ­D˜=œ«9ë]«÷QúP$+Ä’¨l˜Î2½+C&Mor³Æ÷dÀFNÞN3ú¥XK‰"‰‚¾çû£+ÊzïÓò¬‹QåD$J©ç>•³khð"íBP‚ʧœ rGá@‡•o¼C*ŽpF9ã5ŒrpO58PÖî‡và ?QéUÌ‹ªŸœ¿@§zvw"ª7–܃È4Gå¸ÍAH›íQµºF£ïÐzçñ¦C$»ÑÓŽŒÜnõ¦)YD²2‚Yy0zÿ…2ÞBö™ÇÌ84®,GÂøp¿-²¨Bqò®$ õî* çs<…ÉÎAJ­#6ó à1<{SµÁ;Í'ïPDG÷½Ö®Èÿg³d$d( xäÕkvŠI!bl`Ž€Õ¹àùaóXƒ§$6î%˜x(|Ã3œ+Œí=¾µ(U…Ø··óއñ¢·“ɵ†AÞâEçê1úÔñ@MÄ’+î"FÇn: úd ²¥i!DŽ0OÊ;ÿÒ a˜Ÿ$¹4ùÑŒ¬AƒóžÊM*£ìs…’pG=G½K(‚ ›Qä&ËÐð:~u¨PÜo Àpz’: ²òþð†þ>7žOù÷¦Ç Ip±eA9#wNÿƦHÒ,:tq0!D¢BÜ’8àŸÌŒJ§"°…/–ÌÌvg•ÁéZ+ˆ­æÜ ‚qœ­ýP‰D±°¹1œŠlkqÐÄ÷,Û.£å=É«Òð¢8äY6.\¯;OƪFÁÆB©ÁúÔ†1ç&?½·ä½Ç¨éR–·)¾„2 žU@¿ È\’OãRÙ…Ži‚Nõ¡<«y³#…NÏs‘Q£,·êJç qÔQ³'¡<2‘tûH`ëÏ­X{ˆIQœ†ùJ’3Ø~&¨£´_.À7;0qÜ•-ä’urÀr¾¹ÛCB¼›nVXpªáO\î䟦JuÔa°˜~YªñHÞJ<{qÔ9]Äöüª¥éa0u;D„·§lTØi–Q³*JÉÆíÅGÓÍG<ŽÄÄÎOÌKqÞ¥´äUÈÉrxSLòŒ’É6èÌo#mf8ãM1bÝ}¨LdʆMü½´qùUèd‘¼˜c@̃j¸èA>žÕRѲ¸Ç'$gsÛÛ±ÅItJñ §Ë(AÀ$äcÓÿ¯Tf]… rvùrÞ`#®??ÄUIÎâR»Wj“Á<ç'ßšªŽëz^ê]Ä #tç¦EhŽfd! ß…)]ÑÀð;Žj ø]¥@Ç#ššåŠÛnÁbXdÎ3×éHmÑc\bHÏl Ò*]2Í*ff1#v¨›lEáTÏÊÇ#ÙžÕ¢ƒw•3ÆÀŒ©@y#Þª·œÒÜ+ %H`qŽ=>¸©ó ÅKñ»§Ò¬^(BnOú(fSÝ#£–w„,|Æn¿;}yüª<ž`! 4·$ ÿJ˜Ü˜½MŠUŒ®ˆ ä–8Š«{½­XÊ ’ >\ÿn´áeI!n¨6Ÿ|޵B;VI¶·Î¬ÛÓ@²Âr¤Ã‘Ôsþ5¬æYbó°Ÿ:ǵFŽ˜ýMåó*gîœfœU›1ŠÜ„,R¦pNN;çÓó¦É"J%Ápˆ XÉÎÓþM5¤a3Ü[Ì,1ß<ÿ:‘LŒ0Ü=rGô«S4&_žýëKH“mÒ '‘Ò©Inè†A†Bzç§±¥µâ•dRÖõWDÉhSd Žk°€“ž~•Ý52…Ñ.7²`ÓËÚŸÆçŠqØf•™;ˆ„sQN€)$•W£b©És“Œæ´Q]Jå& °ƒQÏ6þ*&v4ÖFÆkEbÒD¿*¥WŠ-óN;c°ö¨ÞàÀqJÅßBÎrŒsVÌEgÁ/ 5« g^D±…qŠRø·Z¥$ø8¬ë+£9+–IœŠ¹æª-ÀÅi¬TY4•¦+ÜÕ?´’p*U-µQîZEåÁ4×”/Gí8àñQ¼ã95¯$lW*4†dñQ³.qP‹…òúÕF¸>gÖvŠICiëHvUA!)PïbøÍSvè.³/JA´U¥òûÔjâ¡îI¬&EܧJÈk“ž´ß9ÇÖ§žo6Á. åqž튃j˜IS‚ÄðHùyàûñššH³k×vÀ~ž¼PæGæ·=ÇZ˜Ÿ*çæ©‹äsósŸÎ™¾TFç ¶M\hŒMœB<ÅéŒcü*bQ DRØ.Þ F6ŒÏšÎdŠæH¦ÜñÒ¶£lÅ!)Ï^qpO§5ç¢êæy"*<¥bñcƒùÓhiK€°wœÏ5^IeY&Ó•8>æ¯Ã‘Cí Æ W»E7"&PÀ'þŸð©M—b)¦’ᢠeSÉì}jÜ1Ç)+í¡x>õXL¾• ÑÊÆV‘Ê609ùN3Š›X„¬ZóRŽSóÄT#0Î)~Ò§ÌwOÞ‚J(8Èõ¶*5š íÄj§äg¾;ÿ2YBOnQ£ÜÈwc·‘ŸNÔ_B;IïÌ' ü®¨Èê¿åm’B¹ù—?SŽÕ ¸e]Ë£ íÑI³õe¥2ul*NîäƒÊœlÈ‹)ݪƒ6í¬„ß§jrK6yÚW<{÷§HÞiUÆIåQ’*µhn`}Ï´,½oçLWpàÄIã=Z¨‹²R®*ÅÚnC‚v—ÎxÅDÒF.™—îä•b({ ìh\»«“ÂÆ…Ô’Bf)*œ«"ãð¤6ÇnqYÆI Œ‘43n'¤•د£†‹À§7 «“&®Rt‘›©Å g5o©ÔUs ˜‰S9Ç6>ÕŒš®m4*ú YUWš£s‰["¦™HSOZ¯RÓй¦Æ<À+p AšÂÓwóÚ¶^CŒU«È.ÎG<äIŠÜ¸bV±¦‡s“Š—fõ-ƤÚHz¬Ñ6p¡RAØÔ´„â\ޜԑ^í?gî|í«P©UÍ4˜µEÉg½UØ©±=8¡uÇ4îVåwvTt, ÇûÙ"§‹ â’ŠW'ÅW‘ʾj`ETº•FyæªÁb¼ó3¿ZHòçh¦¢–< ÕÛ{r¼÷¥k±Ø­4{5IïW.¡•Ï^E£0ËvAal³ç­uP'îÅs¶v».>öy®¢û±M-IdN™ SŽ*óP•püU&Ü6Õ[‚2 HOZáŽáIŒ¹(+ZaF{Ö¬l|ºÅ¿·–y¸“jÄõ3·RnÅY:|õ8i² Ò¹e2Ôåoz¾ºSwƒ¦•4\Ó§o9¦A‹ŠY2¼Š@*ŽNi¬À6'˜qšŽ ^BM&ÄGp3š¬±5ze¶Ð±…©B¹PzVŒxP=j¾ð)qQ-E¹bF=ižiUÍWñšVu=)r…‹1ͺ¢œâ£I/¥ƒŒ“PÖ¤=ÊàsÚ‘¦ÚvÔ‡‘…¦,œšÑ$÷*×$Iúb­“º<ÕÖ«!—Џî44t4œTl§Ú©ijÊ.„àóšXÔœæ¤Ùµ½±PïpZ¨Fö L™8Áâš i*Yb ©<Ò²S¶ä(‘r¼Ó•×ËÁëL ÷¶æ£‚i­œpqéW­Â™†áV®R½D›¹•ˆ#¹`úCf¤îÚ r€ü§è®™äzÔ©);Hi¦=¢1°Í<>F*rRuçóª’#ÄÜŒZ¤]ÌÞŒI÷;N*­£°— Ip±déU¢–BqÞ´†å£I˜>^•+"°Í:;¥†?Š¡ ó#Ü×AC­N…@2]I¥IÁ¦B¹cž„ÒMò·-¥ÂáºUA;LŒgŒb©F…€=é°ÜYïÁ^†‡xâžÀ©ÐìW–€Yo”Š-×µLøHœ±"ŸP_l…HëM÷ÀÓ§OZ”… Ö€à™>µŸ}-À'rqøÓ—)ÍRÔT¸RLåCË2y Œ¤„õªÙòõo/¥ØÆ®#m¼OâÂÿ»÷…R¼u|ÑÏ·Ø­B(¯Ø<üÙ"¡`K ö⬅Ď1’ÌBûóD‘1ˆʆê*‰ωÂ1‘Ï¥imÎ 1ÆxÈæ³lÙ~Փ“‚OjÔž#$ ª§¡#Û q&Kƒ2/ÌZ@K„óüÎk:yOö‚.C7“‰$œ’Iþ‚§’÷̶Kdåî1·…úw?6ÒÝšY$f–#ÈšwÐBÆKD€X°ŽœÕ¨ùÀÿXp9rj¸@ßp ĞqéVá9[~A#îsŽ¿Ò€P+$Q9•GÌÜr¤õϵGÚÃw½ÁhÁÚéÆyâjJ.ÉäöÿõUy˜-Ë•àžôl°1qÛË»©!¸Nú$‡V‘ef(…“#¸ßZÜÛ™P3¼G+òð_Ë4ÖÍÌVªÛ|ÂpØã«ú¨¹H™f–n#bÄeY7cŠ©&$yå·îÉà’r~…M£3ºs»#¦23Œþ•, RâWt%ˆÜp2zàb¤²;m¥„oqV>g?ÃØûóI…ʆŒ ò{ç §Ê«“³`?2®8ÝŸÒˆ“÷G|r«`2•#žyÏâE+¡:’òÃæD¬¬ÄŸ½·ž;óFLš›ÎÊx*ÙÍ2Xdòö‘± Äx?ʦû*[«*H²l“nå<ëþ5W&ÅwQ B§'#)²’-²Ê¤îã?­?P5) ":œðS·á“úTrdO¶`®àª9×ñ¤ÕÆš+àºHÐo œdw?•N6“«‡‡9äþ=ECkbW;é¿fR2E iÛÀ¢ÜÁ{ä‰Wµ68ƒS¼€š­4Å>èæŸ › ˆcNF*(ÏlUye‘›,*Í”m!ÜÝÈ (œr)$Q¶›wqåæ«¤ Á¥nå_ ñãVJ­¹£5"9—Šjȑ꡸£NG;›5 ’y=µÑ~¼RoQ=­!òŠ`GΫŒAÐ@æ‹»…Ù À[¨(¶P¸ ËÏÖ›hÎiIHR¸ÈíÝgzÖäG+6ÒO1ǤÀ…⪓mjJdr¹Ï]ÎMJ™Àæ´,ˆ‚95Vå€e ø)ÅgÜ'Î)=„Y‹&:Œ¦ÖÎÚ|OµE=Èj‰¦Ð™t§ šc©ÍÍÒ²ÔZ“™=©ŽêGjh\ІXÍ(¶Ø•îE+e¸¦sJT‘PÉõ­S±¡!Ž)ñ&ÔÏz†2­JeÈÀ§£2…˜š!i|Ìu¦³î¬™ ‰š v5+TsTŠ#ÜsOÎy4ÜR hQu~aHê@À¢ væšÎGƒÕ™=ÇÆ6ŒšGŸ*9±Šb¯Õ(õc±,gyÉ«Ñ(ÙT£Z»ÜëN; uæŸl»dÎ)¯œÓí›çÁ­EæËt¨pIÅNI T*I~•BEy?tIïJ²<€8§ÝÄvò*4%c¤2Gq°UQþ³Ú¬ÁpKcÆq@§úÁô¤¼‘¼¾)€î#oZt¡€äVr܇¹^Þ)$995¥ ²ãæúÔŽ:b´Ur™¹¯)RyjËóT )N)ûØóÚ©HZû"™88¨îáXа"¬£=E6ऑÕJ(i³9cEXáj(ÆÁÍ,[°}ëDlʳdÊ@ëJÙUÀ¥ÌÕ4ÑíL÷  ì^XðçÍ<¡Z¤‰wDsØR_+ ô ûì 2v"Ó"óÖ¬ÝÁpî “NÍ! õ¢Üìç¥0ÊIÍ9ŽFE!œƒÒ '-C9Å#uÏ­ c¤`Tb ¹‰šÚM¤îÆáõÕ‚Ÿ-*FhœRn¸·pÅcT/\ÙxÇÎI«ñ-êÕϯj£xªÎ²'Ý—Ì<œœ†¨]Kb(-*¹ê Ÿóï@bfeçíAÚ¥Uó#l…1×’…9Î*‘$_qã<íÞ^¢¶¢”Ím*å‰FsöbsÇýò+1£ÄlØu«ÚC%–9@lÛ¿ó¡n<)¹!åçá9ïù“O–ÞkEò‹ÆÒ¹lñÏ'<JMB&'8c€}W¿×¦?:žÙ\ÈC“vèƒqïŒþ”ÁîDØ_4„ $-ž§ÿJ’ÒR¬w†(Ê=[vyB9ü+:w3FBÀ dô5 ÁRWR ÆrAãð¤&• Ü4ìUÆy?wÏ5žë¼ bH=Jž$¾omªZË"3$…vn+‘Î)ˆ—A»†'F܆3ƒÃëùÕY¼˜Âär{â­ZEÖeB|µÊñ‘øÊ¥ka ¼ÒHWÉåDYcŽ¿þ³JÃMivåm³1Ë(d#û ÏçšsM„Hƒ{ä nŠBç<þ_•§—mFwáJœð>¹ª—.ÑßÈ\’˜Áþêôþ´[BÑfGI'I"ˆ…Pç,N~´ù'òír­– z€qœÔM½H1ãj€üãƒê;ÔhÎϰŒ£òO÷jrÑ-¼ì°¬k*›ˆÜXn$dóéëùŠm¬¨ÊþI8Ü[¦02zTvê‰v䪭É'8éŸJ¬Åí¤">ÎFG 3Vž„5©¥4i‚y aP²…ÏOΩZ…òú -ÈàtÍ\Ó@u–ÞL3N›—wªóødTw± q!cÂílcžÿ-˜0k×Qq3·È2~èíQ¨R#P|cî?ýFžª¬ñayÙ»µ:tfáNÖ`XcŽÿçó Iš?,¬Í$'ÎPçi#€GáE¾Ò)h‰vl/C‚{Óa>laŽÖL’Ž™Þ§’ÊŠ7Dt”nÏýó•üzЙ ¥¨ ‚îP ”ŽpNOÿ\~6×$ÚJî%U‡ØÒÝK Ö³oUyLJÙaÆy†>¦ˆ¼¹­[$¸²¨$íÈwÓ?Ò¨ °DeR¹”Êøÿ?΢xßÏi˜òALv¥…åw¼‘¢1“´±UëÀúÕ‰JÝY—@É!;FÊ@ã> Ñk«©\&È‹’8Ï¥E8ñÉö•PŒ²ìaóF8ëÉ«‰Có¹yþµVîÞãk¾íê¸ulç ðéI’ØÆ,òrÎÌvîu9¨ ˜‡wAÏ5¥¡Û›‹‘0Æ g,G§Ó56©§%»M2lDòüÀMã¨ÅJÔ›™åÂD¨»°c"Wç°ü8ãÐSSw™,³Èò!¸äË‚AMŒ»\yf&ˆ‰è=‡¥)7nYJ·—÷TIëÐ{]Љ^ßn61ÜÝIÀÇ¥X´ çRO qëU ¨¼²œžG½I MçˤAäõü8¬$®dËVq˜nË«H«Tb23ׯùô©]‡–²(.Û°þ_ÊÇÓ“Jû>W.ÊXVQš‚æãÈ™d‘J´±çzœãðúŽ=\%ÌŠ½ÊsÌwƒ²)œãÓ5\K ˆ bTòGãØÕûŸ.îÜL‹’©§Œ’yÏÓ®*œƒt=È­bûšE]üÒ f;ˆõë]”%šgï(ÁÉÉÇcXV϶AŒÊASÞ´´›¯ôŸ)˜äðgÚ³¨ÚÕ+­‹ŒŒü*1f «Å—>•8ÍG;êO3+5›/*iI¡8#"®‡SJ†4Õ@æîV7›¸aKæ©ïа`F^€V]í»§Ì”á$ÞÃM6híWOST'´|’½)Ö¶>cZJÊË] +hh‘e§JÉéWü°sTnË|P¢ÃaÀsVy5QI^Z¬G#?¥4„ØÉcU~”ǶÞ8m‘q“J*Ò”ìC•бiáønjv¶ò—jŠU¸"@;Uÿ–Hò*bï©Qw0f±|îfÍ"Ûì«—S2¸¨|ÌŠ«"¬3Ë 9¦íØÜTëô €i4+ÜB<Ôv±‘ÔU±×â°/4ט ߎ !lŽ(tÜzÓ£M½M>dD[Xšx·Î7T§ñNÜ6Ðä„Ú%´UB1WYÀJ\Ô®à*¢î‰Ü‘ˆ5A¥# šA÷iŒOáªWë['Rs—˜a@FM,’"žÔ‘‘åVtÇNx¤öuä 8¨‹TZè'z‰ï28ÍG-÷DÍŠîEf}©˜íPI5~  Î1QNÀ‚*lªÔR€ÀЪ]‡Q>l`ŽÔä‹Aê*¥hþ@sÍÊë'Öº´ÜÐh_-Î:šòp{TjŤbԤ怀νª"™ÏüdVŽ TÄÁ‡&áA瀽«\Aæˆ<  T}ÛNvæCŒûàŠž¦Ѽ»tdàà–>¿1 ýiª}ËÈê{šn+»ˆßÏ Ü­:-¥Ðgƒ€G¹¦‰d²ÅK“¸Ê“My ŸŒÄ2¿©qUïd9O Ç×¥OdÍL©2Œ®UˆÁϧé@"Ö¡x&[DÛâDcÇb9…]3DÖñ(ER*àôÿ¥bGsŒÞŽ´Én~×y$²LÍâQœ|Øíü©5ÔÆKP+èI‹deIÆíä>ê”+*iêFwHÜÁsæjê;™¤6Çã9ç½C d¹‹nHÃ#d¤ö÷êj“5´¯#­©&Bqå(_™É=3ùÖ¹µòî }¢5 qœàŸÌV[¡nDÊAFÙp=;Ö‘¹wÒḠ™ÜÌ÷Ï^õH ¢â·ïœFÇtˆ[ “ÈüsM"tŒD\Kµ~EqëÉÆ:7ËŽc’UäD €Œ†ç=i·rK6š³ÛHñ¸ù|¼(Ðqš‰;èK.xuxË+ùR¤Íº<àÀÀýM3X¾ó Ák#|¨Ë*²à{õî1Yš~§>—æâ0ónùK‡­W¹ºk°òHBÉ#;xïÅ.–‹vO"à/–êA AÏáM’ ’ઌ÷Ž})ö›#E`ÍÏÞÚpáÞ¬Msº BHP¹?0+žþ•’`ŒbZ0 „3ÅH¥WiWô¿Z’BY‡FT*Á‰#ƒI»’ÍÈ€KÜ{T“³F¥>Ü¸çŸ ‡qÎî>”ÛÍϳ‚A-·;N}k8i!-È ™ÖÚXdf9Rqü>è¥Ï*§~ÔG‘38Ÿ(èGÝçô¢ÀŒL¬;z„ éVz£x»ã;eã¥_¶\¿™Œ2°lÔQA˜7® Ÿ1#<àsR+âPŠTŽ3J§‘ Üîyüê2¿¼ÇsÒªÜݬp¨`øaŒŒãÒ«B÷'lŠÅʹeà¨4¹“Z‚·S]TúÓÔÕc; Á‰ïS¤»”3O•=Q6&Á¨¬½)â@G5 ’zÒTõRœpl”‘Ò­oÀàÔ^j“N­Ò²4D¢ã`äÕ[‰ÕØR\œµ\'šmô‰\Q´‘WílÁëTмsRÇ)CƒPÖ·%Ä| ‰vMÙX[<#&6MYÉB R´e¥ËL¼Rš‡'ØŸäÅ9~^kH»¡‹*àV}ÆCf´ nªwšrÐ 1Õ ·n ŠÐˆ¸¡¡¨¬ÜÖÄÞÆO“»¶jÒÛ.Ì`U¤‰TóOb£ §{»”à±MÅEZ’&Ûµx÷©£a·¥#?ÍÇJ‡Î¶!¦P:nöËißaDþ¼¯HÍ“YóK¨Óft–ÀŒªífÀgµ±h1©)ª¨9ìsÉâ¢;”WBÖHÍÒŠ!ûµjª+òà l2‘O6ï]¶¨ËÂæ«ý˜ÊÑÎ…Îf%³wª¥[´R#“A¸p´ôkB¯tTy‚/Z­æ[ul¼Ï¼1SGgv¬Õ‘:";xB¦Hª÷0ä’j¨UZ‰•MW5ʽÌ~W€1W­™0iò[«,qìC޵ij Ÿ)õ¨D¤ºž²äæ¨eè•¥“Òž„F§q¦BNÎ* ²Á}*¶$‚GÌŽzóMu/Jz¶ž>á>”Š 1°ˆTj¹ëSy¬A\qQóŠxlb­©8jª¨,E[„¢²©+&;yïSDÀýê¬çšhÜ{ñY-ubܰì»È^”ÝÛzTc Ö1O5/QX OJ$q´ŠˆÊpµÉ$f—-ž€Õž…viîRzÔ‘»Èù~1O#P­v+šSæ§2¹Zl$´‡5f5V$1Àª)6@½JÇ÷`!äÓŒ;Ùˆéšl{Cûƒ@ÈY1ÉëMN@Î*Üцî¥Hò=èŒ$cš`5—÷¤tC‘DœÉ¸P íL Û-JÃ~@¨”þð ™NÇ ÷ Fmäa™¿ØpHõ¯éU¥ŒE>§‘ŽÆ1ëŸþ·éWœ¨,Ì3å’ÍÏÞÚwcô•f¾‘Ïß•˜uþðÎZŽæ¯ Àãzîä${8õÁÿ–ÝrwŒž ƒ÷#ïœdŒT¨v‚ Á 2Ë´cŒ|¸ÉïȨÑ_È2áXá{æ§Ô˜ÉüC ©3¤{ù‘ü¤â¿þ ôÓæÍ .7‰Nþ3˜ÈÉ?…]ŽäJÍ"ïleBã’IÀÅEii6Ì|쓵Ç8éZö–»T픣|¥YO|õÇ Î be{ž3rÌÄ0]¤8Ï?‡JrÛÍ%ÜhØPSp*sŸ¯¿ô©4ù„Jm‘XI°²Œeúç®=j¿Í$…I&*[háI8ëÔzþ”!jfÜÄ%¼Áu"EË*“ÁA¸©í-ÑD#d 1ÓÔÒ´¢{XÊÄ‘U+±²;皆yvÚ’†âŽôu4[K5HáQ38ÀùƒqÏaVæ’oÞY¤DD„ ˜‹/^{{UHgÅÊ1I`]ãê­iÂK‹w–âRÓIæH[Éäçó£a>ä1önN €¾=Hüø§Ý3^Ü&J©X¶’FrAê=ÎyúQu6쫤Œ¤ÄIÝëE =òË |7–:ÀŽÜôÉê:ÚLïå–ù‚ç%qVíÑK,ˆ2“&ôçž:ÎòÂÆàðÀ•`½xùGçS¬¾L†á‘ö• ÞSmÈ<õ³Qk»—äGuç ,3úŠŠÒ\±Œ¦Ò¸è*î£,$Dcq08îŒciµ ð†H–u%Xã Œç=³Uª<Ï4mJ°z×>õ"ÃºÆÆEu-¬Ã¡R¦*½¨¸’rû÷¶À@ê@éõÀ©™#Ä…`Œ“NM2G[¤rr‡;Tìx?E6YÉÏÚ¥¸nåüªÄ1…A´ïœ*G•Ç™"\.Ì‘ÏÖ¥ndô)ÃhYÐÃ,©œg5%µÑ’&Ø M‡øG^¿Zya-Ãíó[ AÈ®xút¨5¼û¶íƒí=þŸ‡­QeõòÔ2œ'#Œ’j&!<$j2P=é<Ö;%%›Ìo•{Z’tSç‚GL®zЊ–î6®P¼X®Nwbäuô?ZÏŠ=ÎØgÞµ ªñ:ìl*a¿ÇØçRÖùc$޹¢÷DØEÅ "0xÝ3ޏ5etÉD’HìW…$}åöìzÔ‘Û¬åw¤e×å;†Tg§z}¼ÐÁm=­ëˆdF7!ecž¼w¥J³ÑÌ›ñ\e žJŽ‚¤hM¥æ9ç+ô¤•â‘îé’1»MDxÁ$Ô5ГA,@íÇÍ€in#)làO½ 2òsPG/îT: eqÁ÷«ÜäHŠ–W6ïCíëYY¢vÝHƒp‰_Ê`ÁsÈ^ׯZcBmg»$†ê ŽÇ?¯±ÃöG!£cÓd¡?CVf_:ÕØ€ïé[A³JvoR>P f#$qÐr2Açò¨2Á!Ó׊ŠÚO-ƒ¨“Éüõ«~u¼Í"+Ƭļ‚ TîA¨Hc•FâÌU”“€zÔVîÒ·ÊvžHç§çW.-›ìó¬i‡L6;ûÖtIûÏ‘±íQ¥„j)/jÎìr)ä ŽÕ,—+ŒóŠ”"ŽkZã±Ü´c‘Q‰¤›¥:é”ñRÛmTéZ\¥©UUãbNjÔO“Þ ÝÚ€¸ZCq¹3T°j÷sNH"n v*ApƒSJÀ®TÔÒ[ÆGU ˆÞ?»Í+‰JåËLÊpÔû­<Ȫv7;­t0âHC{U-w9V·™ ÷¤hؘ])t FÞjäBCÀ+RÑ)»˜Ñ’8®šÖ4– Åk'à‚­}<µ¼ ß)æž.%ÆvñCQ[¨¢F·Çzz[‚:ÕfšF©¡.ECPB´ °ÎA©’Øwæš¹Qšk\mëRœ;xöÑ¢ÔR„ÛÀ¦™CòMDÒo;j¯ä#` â§Š%+ÍFcÀÍ4Ë´bœUÄ6e N*±<š’WÍB71§dÙI1Q²zS„l{ÔªFZ­$]¬BWjTq÷Í>dyxQLÈ0h¿` ” ÇjÖÔºäÓ­­ ¯“ÐV‰Ä)XÊ¥‘.Ex×fEV¼!”ýj|±b{T7C8ï[ßA¡!³¯j®Ò,´é¶à*\!'­1ŽRȤVÂâ¤LRN²)D„/ÆœTñÀ1Íg4„Æ 2iáÎ@(€jP¸QYÝX–Èæ£T5cË÷©1Þ²æ&åh×Nxœ|ÀU†ØƒŽµ ÎÛª2M;‘"1$“ÎiʸóÚ’Ù÷ç=sR…ÉŸQ]ˆÐŠÝNö$T¬Éµ²pj8ä?1Æ;Tmì±=èè"u‘b·,zb ÆÍç®sNºì˜úTP®#R+M½€è)sž3Qʦ2¦¢’WgqŠÑF9ãµ:E*:u¤€ ÄUɇDÜÎ(wiçŽ -ÀÚ⃂ ÐQ;e©ä|Ê3Q²gié׿R)&;†*“1Á>ÏåUbuûj4iŒqì»p?T—s’¸,Aü*œJÍ*”#/ br1Pb&F•C´}ïaÏøÓ·nxvž’:\ûÒ'ï”ùc’{ý?úÔ*âE\Œ³ÕD0ÕaÞTDr‹©$ô=êÕAAäzÕ­FêÙ¡··ØKBšTq#œ“× —KHç>J€p 0=Ç¥6å™¶Ì*¨HúñÏ_Ò­YäÃ*EeÚ? ñTíá·–7Û l>P<äû}1MêT]‘Ž©™B¯àjhåž96‡uÁ_¥>XUn0@“O_ÿ_Ju«,·HÓ\Rfr)[×17ŠíáqÚ§–?žê9|Ç«ØÆ˜.¢·™ YüÖÌYÕœ‘"ô?NµR3¬òƬªø‹ ~cŽzúf˜î[µ\®Á±Œ•÷ÔÓ(ø,ˆIÃo>¹ïéP[D^uT, I9üG¯ZtìXWnxû¿xŸSõõ©v êF¬’¹ËH Çœà}8뚆3»ïHªÄdppßCÒ§[o³:‰-ïŒ:üÁOR=øUDtŠæX•˜&Ї8Éþ´º·o/4²ñðÙ *KÈ~Ót²À«ØªŸ—åsߎ(šÂÚdFWö‘º6ÝùŽÆ¨¢›I0$}ËÊ’sYËMˆ“+Ý#*/¿„úTsÂÈ>b¥*Ù¥hË!˜ffR\’¶wöª–öãdŠ_ÌHç& Ühr€rT“œ{T®«4_»Ü`…ïP˜˜nTôù»šy, çv{‚¥­t'Gˆ3®ÇUàã°ãƒíS¸’7 þ쓆ëúš†0æffe !#$Ž­Y ¾jœ§OL}qvcN̆·Ú*»¢».@èY[Ž?T†9YßhY†dèÇ~jÛÆÑÆPä• €ï\zö¨e•ÒHc$íËÐSéZ_¡EØ.·\ }Í’#f#“õ¬•gY6Œ¯<Þ­ ;9RÃq á>”ë¯oÌIåÊ+®r{ã±ÿÏDÉêiéQ ËrÜnÞÕu´ü¿YºEض‚]Ä©-Î}{ÕÏí#pN+jir”¶¢ùŸ6êž-–§®©`nh:Äc£UÙ “û)qÖ“û,tÍGý®¿Þ£ûXuÉ£@%J¦”iÑG“Uޝ»€j)u#ŽI¤ÒRÒ¬"]¸#ÃêŽë“ÎM ÙjhHDoÀâ­Åp…FEcDÒ–Ä‚­ýÞ”^â4 ÂQö„Æk,ïfã42L£<⋎æŸÛQN1L’ø•–QˆÎy¨e,½és šâñ@É5›{~ò±±úÔ ­ ûԱ¤àÒsHW"Žp§æ$š]|à§ÙàEI¨©OÈp:Sw Ô̇¸ü‘À«1®=꺜â§Æ3ZÁ+‡îÉ¥*Ì2´ÁÏ5:L¨0qJrKrdUó6ív¯++E•%9¦Hªƒ¥gÌ £Å2žZ—^­Zfݥ慱†à ';ä‘B!4‡5ilÇÌÕ§ (Š09£bx©•I=ŒÜßC> 럭h¬{—åÅ0ÇŽµ"1Nù ;êI’Àò(y |b¥û@'š†Fi7f!†èÎj;{Q*õâ¢E!³[&¬^…Áۜ☠4ðĦ¨¶¶j옒G'ŠŒ‚J‘152Ûç­fäö)”.8§AjÙæ¯ SUå5£ ˆ òE<ĘçªrI)<*H˜“ó5C“avX00¦< ç §ƒÔ” +´V÷¨¥%ðjf!†jV#Ú§vI9ãáOÍ‚)b;Ó¼Ï2B{t¦Â“KúÌ]f£—#Ö”A™0Û.æ§µEÜ ôª½Û &98¤ƒîj·©4 ¨‘ãp98íUPì ÇZ:‰Ü1.)ÿ»1 Ži³6_JŠÐQn?•ýª÷XMRŒ|™>µr.b¦ŒÙRár Ôh18榓MCæ+¡”‡g÷\R˜ ÑÌ”åê¥ Å»ýå´˜á·.âF8éüÏéU­ ”p#§QS]¶!‘³÷œ(ýI¨­ aÀ åºü¹ÆG©¤$_€- æ6f>¤·ÿÀ¿JI”ý² TÂoW éN‘Fålœ ´ð¡Î ‚¹X™C*AÇ8Ãß­2 ùÞI¥/ƒ‡#?_ð­[_*$ýàcÈázžlU$>^Åä©=¹Í\x‰!cƒ¸ÑHÅ64]žk»v <ŒöáAƒp(ã®1ìj¥çˆ¦œ€FŠFîAÎIõúU¸îîn줎vËü¨£h`“ôΰ¤´bÛ#±=;¥‹±ÜêW°*I!0À¼02;õ«?g#· ü³䟯øÕ›x$†8Ä…‚}Ë€p9ü) ²N6*„Á μcÛ=èÜCž;¡j°[ÈÒOšQ·×ýzKHÈM¦Òx`qÇsN·˜7ÈwYÒ3çv{}1ÚŸRas9bÊyŸ($ýzXžâ6šÞXH@PB ã ß¿CÅs£‰6ã¯OZêm/,ä·hÚæÝ[UCoË©ëôâ³n¬VKÜG4A7cÌÎTqž£Ž¹â˜–š‰‘lbòÙ¼jF*Â?Ϩ¨”I§œYKÁ½½ZˆˆŸ¾R ¢à`ûô#ùòºä1éš–¨¯;Gnw[ ;Ž ‡¿áŠ…Îç,üÐZšt02î>HPFAõ&˜Ñ:°Ø9+÷p3Î3×ð¦ŠTŠ5"0_3/ Èæ¬Ä©æDù $\°cü=óTm· ‰EÊíÝŽøçήY6ÎJ©2* ‘’1ÜÞôÙ™¤œÇåŽÃ98Í$»€Vûã$S\$q4ÌÄ„lqÆsŠ„ ³÷@ÎqßÒ’+ ±7.FFœQÓò§DJ¼¶Ò+'̤âê?\þtË{ƒ×x·1ÀažsRïû[ͱ L¡-È#šor´h‹ac¸´Mk[È‘[.C¬C“À Œõõ¬ö™ÑjíÝŽqÁÆ >kß(NX*ù‹·obq@«Z39j:)Òoµ•‘RU)òãzúOþ½R}Ÿl”Å…W<.ãòŒþ½6Ò]Õa; .Æÿk¿~)¯„ƒvߘ1'·lPÝÈ,£yZ£ù…òØÈ`@ðÅX†ÙC´jª"Pâß|ãƒþ{ÕeV•䫆'Ø>+@Ü,шêªv'ßß8ëß­"z‰•$¡+œ€ 拱,Cs¢0ÎpAçµFža}ÍòíÁ#×Þ’î9Z7Ạãê}zš4e´CrÊm]e¸ÌÕEl°=p}*(%™g%̲mfU18þ}½é&ZG—pùTûøàþœþ±¨Kx›æ.àüÈrÿ^¦ÖDìyslY¦ÈztÚA>ýjCqotˆÊÃí}Ì1Ô{ñïN1¼é¶XÛh;ç$ŒqYÐ<–S)(Ž{g¡ú\©Š×4%kIˆhRE•Žæäc¸ëŸSOƒ`˜y¥T0Ç\r;Šeý²¬»Ï“ @ã±ÿëÔM}‹r3yªà†¿Æ²kR-©-Ì1,ŠÄÆÇ<p3õ¦pßz0w­Î{u©ßeÍ iB4Àda:ýqÐÕx$‡s+1V!ºH¸X¦J ß6'üš³Ä\åH’xÁaÓ"™qw ö²$± ›a*TŽƒôª–€¹$äsåWe˨úÒêÿ,ˆW„.s¸gŸéU$ˆ¦UöFs¿+‘è;U€CÛIná÷È7ò1õéTŠocgT|82› r9¦—PDçþ=TG}Ó…ÏVõ´DL†X. *ÈýOøæ¡Þ$P»†Ð7Ï¢’ <{Á+þ=é0±4,¶¯|H‡ Ï^jÔîš«§–’¯&@ÌG5ºñx§ 4ì4ìPkNNOãQ6Ÿó WÝ\ Ž3&üqT孇ͩYìÝ@ÆM7ìòcœŠÙlmª²’AÀ­,QA,Él’j±oé¢FA«0ÊIÅM™JÅ),zƒPÿg†=êýÎðr3QÅ)Ï4šh4)6ž±œóOY<œê*ìªYxªÿf$Õ«ˆ·ip.cÃzC¨‰ñŽ Eo…ÁÏÖ¬HÉ&jîÚ ³¢°$ ”…uȨç…p)Ñü«Kv1c·5wjÉgœíÍ[·˜l©zÊï+Ž+.õÙ[mo³¬†³ï­U†îô–¡¹’· ‹M [Ž´è£¹OJµýœ ¢I Øc–aÞ­Ck2ŽIÅMnx®GÍ)8²h¡"ëP°ç5nä Õ6ëZ)^7jFj€"§^+H"”ÕyäÁâ¥nM1£ÉéJ¥¬&$7sÍæ6¤0qÀ¢ |>Md­ÐJı3ƒŠ¸  ¨ÝBŠar;Rbjå¤ö§ùª;Ф%;j”ƒTƒ•šÁ‡"«$ŒG4¤¶x¤îØr²Á‡'4Ü*žM'˜áj`*æ/$`T¦^pjg ö¤cš`:SaVëV¢9ŒT¢‡tVâ;I„Lˆ‘K;ƒÒ¡1õf,yÍÏZd€ SCê¾”÷ãuŠ¡d&Ÿ"¥©c_Æ<‚¬Ä²È®j•§ü õ8>â´o.[áKÁ¸þU›h ¾ˆ ÏŒýjQocJs²è¨,Wo ?­Sue–f ­È\Œäp¯ZÓº1»ÆYð¬'Ó‘ƒúš¡u „œ¬‹1S݉ü¨Ú6æß)–3ÏלV¬ó}–Çæ’L RÇ8=ò=»V^ˆ¤A#†eÃòGCÇz¹©•[Ü¶ÑæÈŠ:“ÂàûµDZÞ‹åO""Nã»nÓ5¥ži_pV‡†8À9ëY:H`.'MÀ«$jã.sÖ´-åòe\Êà†oB2 ïíH ñ»Ëf©+0`r¿ÅŽÀãÖ£küÍ×¼í*®AÎ{ž¸¨A{pÒnE±8cþÈ"¬¿žŒŠª0˜u$žz>*…a« 6gy‰#™ÆÓ±ºóÀ÷è*;ÖŽH¤ûAM¬ÆN8+>ëd” W`Cã®A íÏ U[ë’°Ås4–çreUA2m9䎾´Æ]·Ô@÷[c‘T;pÜp2x#ÓVK†wUUS,Û'I÷ÍZ’µª\:´^p —çãÒ«KËé*P©GÏ8õíRf!EX^A´#>1ÈàgŸLôªÑ2º‡Lär8«S©kIg+Ì|Ìì?ŸåUn"’ÉID^X9ùNyþX¤Íáª+Ïpâá[rIÆõáIþ´¿¼.deÀ¦–j•ÔS£)e;œž‡¯åÒ­ý±®ÞÙ6›w7;ž‹Œ˜ðòÌFK/]»sAøÒÛ¥¨,вXñŽOSýi’¹òX ÁßÙàñÿ |ÐG,)ðÅxÈ#°ý)’FÓÇ>…_Ì 8Ü{Ur»Éó%{N0)”Œ3íÀÎ8öõâžß¼ ÀÞ9#ŽOoΡš-F*—Pªv c5oMpHö¢JøMì ÀÇ#Óše² 6e£³*¸Œ†c'¦9üEC;É ¶ÇRêT’AbšDÞûÜ3F>Öw/=z*+ˆb®ä4æh9Ö¨±’fË¿BN; žqW#‘Â4 ÜúúŠlFY¬^)ã €r¨NF;“ëY·dƒØG˜1ÁÈ#œþu¤ÄÏ2,ª­åÄ6eŽ’;}¬©œ¶.¸BØÏóéAlt¨€ìgÆßpJ»`êmWÊMª3yèM6èG/“%¾Ðè¸t¾ž”iÑ0Ê7Èäó‘·ýj@i"(ÈÝ—#o!¹ïéCÙV&_.IÕÚࢸ!€ éþ}*[›t$À£pu=xôüë6WÝÊùm‘ޏ'?¡Íl²‡Mì™ ó)LtúÓ’³¸IXÊŒI«,NwdçihnÀÍÙÇ&¬²æfQŽ‚xÍIp ;ü·ˆ’C}ø©æÔ›ê>U ;Ë e*€—ïQRK(tâ% Œ¨$ÿ?Ö–72€Áƒ¤ g*€Ì« …¡ic ˜Ì|‘õö[ƒ)åa—å9Ü ÕÒJ˜äå†Ü„>•Zê1²©(©Žr{ú÷íQù¸_¼ ©ãŠR@miÛ!‘˜ †ÉËu<оÓx¬‹VTr¤Ç¿­^¦jb¯ X·ÞÜŠsÚ¡…ºÓ]ÎüVÑŠŠV& ƒP;ä‘RE1£Îj‹±‡sç5rÂrEW3*RJ,mïPà﹬µ:«&MSŽ5cÅ'™çt8©"_J{T9Ô…àUbì1W<ÁŽj¹Ã=Òlˆ©nsMòŽðA5mQqH6ƒÅ1ˆ¨\`Ô†€Ojœ+…ÏZ«‰²„°>ÓÅWƒÍRAUédeŠ"ÆvÔ»N¤13îÁS/d;1SJ„¨ªrBò8,Ü # ]Xe›î/š¹ sòã¥Ojêƒo3º)ÍKl„ÙJl±æ¬’"œBÈ¿)Áªs4ˆH ‘ê+Å·v&ŸQ“òÕZC¶–ið3U–o4Ö‘CH¹ *À$UX*Ñé[AÝÿ5XFR9ªÁrÕb8 “QQ]ÕÇžœ ˆ œTîè€Q3†éY¨‹”˜¹äS·eNS”âš“08«QÐ|®ÊIÅB³Üõ§»n¦ì4$ó(j-¸¥(M 3å¡¶j%Œ¯ PUä8"‰=ô,Ã8Î(‘·*ŒƒÍ5c•ŽM`Ù1ÎMC/53)昱³õ¤˜\ª¹© l¸ÚsV|¼b´(É«sb8ÑÊ Òù'i|ü˜ï42àVZ²FFOZ†é¸¦È̌怾`毖Ã+ ›p¦$È£Öž#U)RDä «®…\…dµn’j”î¸ïM·œ—Æj¹n;\Ø•>N9ªì‡Uƒ(¥FH ï]( ˆ¿¼"Ÿ"àpi@Ë lÿ9\EJ:Sˆâ¡^˜ ’*»È7jÔJŸJ­4Jd$uÍD€œƒÅE,¥ˆ¤˜•<Ž* %SÀëR¢+iˆóQ/J±4‡Š· ®x5Z!èŠöà— ÐÊ?’+eštŒz¯Z\× “îBOJ–Ù\õ法^g ý»VBð€MZ“,DZ¦ Å<ÂBqO†1·šWk|¶I¦2´lóš³pû½*b\qšhCÁ4á#‚x«Lƒ`Ï­W¹#m;q8ric|LsÜS•zæšïé@›%HÀ—pèj9™ò£"¡É‘¨·-š|ç÷C”"¢ç” ÌÔþ[<÷.ó¬t™âeBw)È­k"8—³ãéŠÅ8Þx ¾†æ Ù¢òùÜËcƒœåTµ0Ò3M$jŒ@È žÎ*Ôr+Ú[‡]Ѭv±ãvOÍøsPLí¤l·Ì¿7Rþ•+AîOáæ…T O \uÆ©n!–ýcycÚÆÌLghêA®?¨ªI}Â8ù¹Ú=x­MJXDE¶³‚¦ ,p{{þH–SÄÖvfæë¿»È<7ù§A$+)+™FprÜŸçV¾Æ²O£ÄÂbª£¾qÈÆpGƳnbˆµš<Ûx$UTlàïa’£ÐUPdueV!OÞà>yæ’F2HrNqÀUÝ8Eu#ÜêN#¶†2r?×ׯµŸoI ‚Œã' ÷8©î‚å"MÞZ“džÁëŠÍIåžây-æ”[*°Q3gËü§AÚ®‹Ÿ:ÕŸ%bÛÃ/'¯?þ£XÈѤʀãbäg õëZöX“JtÞ Œ‚ÀSÔÏãMÑ‘q$‹ò®>òŒ3Zš‘…­£!F pÙ·\çüñTuû¸£Ž¡ÜÞµ=²ƒoog1é€8­­5&¿•%HÚÖ26ä³íÐV[. ò1Ï¡­ #Rá|¡°8ü*¤_-Ñóp>R=Ö¦Ö4Nâù…£äá¸Ç±©VR¾`Ž2ñ¼Dd°%X’Hüx¤’!áxÆè€È$皌Çqqnïiˆ(óX«náF úgœv¡jKбv²FÅ„QqŽI=†&he_3$«á˜˜çúŠšG’I!žïb…·‘ïƒß?¥:Mò†Ý#"S’òßìý@¦sjÝnMÙʶìårJý0*Œ‹"@è Œ“É­4Ž{(Vȉš!Æã‘´ž¤RxÛxc€?•ÐH« ð6Ð3ò>”Õ ×¼ˆxÏ_AVæ…­ØÌ­±rr:Z¯oŒH fbJ¹î})å qß+Dóæ*(1ήqTعŒM<žS«Kƒóäéž;?*»m<¬óÂÔ åy œûâ²õEôÒ¢¤a›xòðõÆ:})’Ë©—8%£,×Bp3Ô`hýѺ ˆ¿ ;¶ôçžO~¸J¦þ|wQÉpdi10äÛÕi‰Aò|ç¥ EØrQÉã¨~¼zŠ!r¥Ç%¹ KpGÒ¢³œyoÐATóR—’•vÈ«ëÐòi=ÌAq¹efUeO,+•ôäUKž2ûŠàcq\¨?^ßZµs)GÌ!4yïàó“’j²F]1…C¹‰O µ)jLÖÁ¡‰õçÞt±ˆQ–l1$9Á==©ÀŒÄoŒq»éJ¬V9Q‚–QÆþ¸ïƒY¯u´ekvmêp¤ã~>÷µlGè‚Vb8w=°k96lIUX±ÆÐÆsÐÔ—SvŽ8¢]Œ užq×ð5M6ô)ù %¢ü¶![îz1ìsV “|Â醈yN7𜞀àU=|ÅY†6ûç$œv9çéšÑ•Õ%|,a¤R<Ìó‘ÈZzì-v(³4²’€õQÕj|)‹iö›s®â?¡©ØB²»(ÝϺRÇ–Ým«"ãwQY= šV@$èŠûèväu¨î ‚˜tàÔ}*;{µÐ’#z±z‹1Žg%|Î['¡JÙW,\(Y¢»Ì>€úU[ˆ†hÇ㿽HCy™É œTÓ1k<ïÎÆü¿úÜÓzÅ€o/<3+ 6»OÍéÌe¾\`@満X‘Í`ݤÉÙ‹¹­ ¯$ Ô‚@‹ŒóLWÙn•²½½â“kr¬¬@àSwÕé–28˜BUv;” [Ÿi¨ÞÉg§vÛ&EJŒy¡´•Âå·•OÉÒç:6×Í_Ir1Uî$$àRæb¢&¤'­V6Ÿ¼jÊlÇ-LW°¾JÃUwÚ§ùsÃS°„RÊþo#®¤¿'ZªaRÙ©\QtÌtª¬¤š†& qÒš\ž3Å4 ô§u¸Ò,JÊ9JfÊœi²ïÝŒñPH¤ž C•‰c .¬wVK–ëUÏJ—qæ•ÓȦ¸šÞL©%}*ÄÞjáéÅG)W^•lª:Q{ ; ¼ÚÝ>ÕVQŽjÌŸ1&«©;ÈÓîYLçu[FȪ[ŽÚ±'® q%-µóR _ ¸ÈÁo $b¦V%¼˜nM4ÜmïO’ÒMÕ$Vh~ø¬ùÒ ¤D ˜w¡`—5 ±E§îOáÅG´ÔW+EjäeªF…W­?Îd>Õ³=isÝŠà±!=©äF†¢Sž†‡F4s>‚,)Fè)éTÒfFÀ«(åÇ#.o¨®M…+Ð`p1Ša—ghÚdæ§p„niCF8ªî¬8˜`qóh³c±hªF)¦ÔØpÌsRïE9Î D«l1õ­áº*)çœeap¥¹©v¨^ B ú e˜¹ÓnâÜvÅ# {lËJ ?zz—i­Š7 ÍC­[IÏU úÖÉèh™·°´KЧvX”PkB Fj”¸iÔw­ƒ¨"05c»t‡Ø@PÆUÍ$q€1P7Þöf SHÍ"˜ŒâªM>É*Ó›åªóA»i0 ’A æ£KvgUÈì‹rjÀ) àPåe ›"¥XðN)VàO…X¶qR¯'bUØ…Ž*Üvè‘|d ¥ääfªËvïФ”FÕ‹)´¹#¥XcˆŽ8¬ûi2@ÍZ¸%ÓŠ´688ÙÇg=*O•Ôc­6P}jÅ¥«KŽJIjÉoMH¹ Ž¢¤7ʦ´Ú(¢Âãç§µ¶#Þk/lŒùŒæ©CùPÐ;/ sZ-q|›y§¥»2y…ð):­n‡ÎÎS]&12wqßV.mÄqÛÞº¤âÑ“–dmçè@Ö¹áÉç¥kush»£S.šDr(À`AÎ3ŸÃŸÒ™!OŽwiãÛ@ÿ—åŽØ$Îé²Õnw==¸ç5 YšÚmØGb@ÎÑÆOéB-lM£2Z‹‰=Áã „õBO$~_­Mm8Šá®Ø8räÄ Ï_Ö«k>#“$9ã‚r;v«(å³k˜%ehØ´¡€¼{šbhl×Ò<ò])uuÀBØÈ Ó$,ЙÙIgùøéןëYÛÄŒÄnÁ=ù5<»ÛlrHB±ëÐcéÚÄimÛ 0c~aN;`ÕO%|¬Í ’ßwn>ôùʼH#l1Æ óPZ<É)·ËIÁ üèe…­p¬FFq¯¥I4A¤ Ý!|"w䜟ƬÙÙ•†@ÄâF9VçœqÏùëSCjbœ‡ !_˜ŒãŽ~Ÿýj,uÐ_.5eWxã.¹éÛëüê}4G¶‘È 9¡çò4ýBÝÍØò×s0î¹ÈÇn*Úy6·B™c'zíù6ƒÔð}¨[‡B„)'ÙÖ?5ÙNàFx`i–xkÍŠFdÜvúÕɦ+æ&ÁÉSƒÏ^ªFÇ|Rä,?Ùǽ'£-j‹d0Ã) ‘‘ÓÒ«ÉI,“Sî±î:týjÅäñÅ Ê:’ØÀ\äÓä‚4\Í2 _ï>9ÏçNHH©pá•ÙÌH¢€ÿ8©”ÚÛé²Ü ƒöŸ,¡ƒxùI<ü½‡^žµAŽùDÏŒ¹åTm¾*k«Oôw¼q…=3Ö’ +—$Óc˜´¦^$'9Ç~¤~ ±«ÜÀ£r¨ù¶ºãvn”¢e9n$”ŠË÷”tóͼøšk…1²9m§ø7ñíŠdôr ÅŸ›"32 ƒŽsÇ9<}:TpE$"UP¥FpéÏ·áN¸{™€g^>bWk?=€ýiòJÝF+Zƒ"¹ÁÁèF:ã­K*:¸=¡RALa‚ãq>‡Ó¥Qñ jÀ†<÷æ­·™P|¡˜ód8Ç=ø¨M±2ÜçÚ‹•b5‹|ÎÊOnAê;Ôöá_nÜ>\gŸçWŒBHäîá° „uªsHÆOœ`'Êô¦“&bÈ%ÊÊÈ¡L@@pAïïš&&V†=})‘;Lœç€6ŽÃ°©<Ôû¤d{œ ÍÎÎÆ|Öv&€ÓÍÉp<õ¨Þáñæ ûÍ‚¤ýåôÍ6GÛ2ŒûžÕ·ËcŽ3¸ã=RÔÙ­FùÆi°é¿ ž‹ÏëSádXÀL'GŒ ªqÐýNzûRG–wŒHϨ–H­åh •¦ˆí;6œ÷Ô^û8»ºX>H”*‚Á cÔóÆj«<ÉÉz’:U¹eV]±íg8 ?OçQDÌΡÔx%³ÓÚ°“ÔÁ²Iyy\‚vŒpi/e¸yCHÙ‘Wk2®2:çOY}±> O õ(¿.@#®?Š«žÛ”¤r›¹Ö)c‰cX€…#  ÷÷©ÞÝRäÂÄ…Sò9‡õªÉ/Ùob Äü¬yçÒ­ÜJLâR¹Ëí%½àãê?Z¶õ·+üÈæ $m÷öÏ\u¨âÝÁäºTÑ´‰s9B2È7r?ýURâI…?Ä1Ò¢JïB^¡zž]àuÎÇϯcW c-›nŒRsü$g‘øÊIb 8Êñþµiéh^ÕÜüÀœp2Ei²Ô·¢)ìÞŒ“ì 9"gŠhÆÂJ“ïÇ&¯¸ŠB€<°ÐÔ2Û21 ÜéÛ×ó¤õ'rž™•¸Fºêäaå‚§¨®T‡‚ý·ªNzqƒ]%«‰"SžœT©Z~ ž£‘\òÆ¥ÆEèâ¼VÕóÆ*)º«°*L@ŒÕåÆ*Ôîâ©ùëX¦Z7­ÇîR#mÖjí³m·çÒªIƒ(Ç\×OB–åÄo“5RL8«òÏU×iÏ©¦À&¢e8â¥fYÝòæ¤Ér!É$dóÇùéJà>Ùà pK6ËÆ*ݼh§*…Ï'Žßç5Ec UTír¥¾•«i)ár@FF[Ðgµ4˜æŠ'* 8NÇ=‡¿µPIíây‰-ƒa@9õôù¥º¶ìÑ"¹ùƒçÎ;bª›ie1¼ Òp qŸ\ŸN¼Õ05¡8KŠñ•qÃ9#éQBñÂ")e;”)åOõª¶ò[¼RJRFOœG¼ä‘ƒ‘Ç¥Y…– ÕK˜H‚…ÁM¤u#³¿Î•ÂIJ…k5Ÿ~ÒÄ©=ÎOZŽÎÞ/¶¡`î¿)± œõ#¿8§\ίL»Ys|=È•:Úo.í·iRq ŽüqIîR^è<I -Á#!‡Sôõ_QHäŽ 0î9Ï8ôÿ=jÈE7¡wùQŸ\rGùíU/<å¹9e|»^O¿\Õ1"?-nÈ10ïKtòEgä;Êry]ÿ(ÁÈõ©e@B îëŽ{Òê0ŒªÄ2ŒddnÎqô©‘›uq4Öéì*TƒÓpÌ$ڛ݀ù†ãóÓœqUšÕžÊAÚ >§è)±Àɇ`vŽsEÂ×.Ü—1|ê:© ý* c,w"2‰#»vð3éV㸖IJî FJ‚G,}8I<áy·€ê7)úÑ!ÆÆ†Ÿu#,1KA÷;zç–õëM¸ÊbiKI†d'8$øü)Öwp[, "¼­’¯~ œãúR‰1;ó×=é$.K ,D,ƒýi؃8ɨ¢Á ¿<Ö¤ñIö;}Û@sF8ÀüzõÅgÌÚ™s“Á\ öúÒ½ô3æ¹$w5·ÎªrÜ»ª¹‘ã:¨^rè*ÔW2Bб䫍ÜHÏlÓ£Ùu€6ýãÆúÖn:™üÖ3Ïñ:ÓžA2#D¢0¼8¦*Ë»Xíf^¨#ú÷¤üÄ…íž• w&Ö"»Ë©RPg=ÈêEN­yBE°/Ñps×½Iå,¤£#Ó¥,) ‰FXŒçò«çMÌšÙÑ:õ' ûc­:úÐ\#ˆÓ/<œ Uulª@2œtã…j:¸Ãà!LnF?xcáQÌÓDÞÇ<ˆ±Î»d/Ý$ ÷ëÛÞµ4Ò 8`3pû§œ?­Q¹) þZB ó’søöæ­Ø.Þ~o‘°¿Ò·“vзªðË¿ „mnJc}FOJš9Ù†ÐWê2óéùS.DrÚ¬»›¡ÚAù‚“œóëQ[‚Ñ€®g޹÷¬_r¯ËG1Â<¡¿Ç½hiwƺúކ˜J´%,˜ùE+’>€ýj¥´¢¦UqƒŽQ÷~´šÒë t:%;…5Ë/CJ”SÜŠNkDÒÔ¢³)•¹§-¾:Tƒ©ˆéKšì/r,”àÓ³•¤dfbM*!n3M„™cñ¡"ßR˜•$Ѽnùkf!]ƒšái%%‡Z¥6V@³$Ûψõ,æ†gƒWÊHy‘‹sO* âž„5[½ÆÓk°ªsU>Ò\Ô—1g5-•ºàLÖ—bqãɦ\§zДGdcЦ÷²Ö³M½äQ-·µ#6áÅ$Ž4ÈÎXÖ‘CB)ÃdÕ˜n‚wªÒõÀëRÙÚå·=hË%›PpŠj¶ù§31«ÓÄ€pWPâšZF*Úš0˶<S¬„Öj©ÎrjÒ¸EÉé\ÒŽ¦N6eÔ#šŽSŽ•^üçÚ½*ß-y¤âÑ-]‰=)臚سd*)¤uèÔíp.®W©È§ùêN+1d‘˜eªyeQ;Ò峂k¸÷ Ôã{à-V óî«ÀœÖܪÅÛCA•ɦ2‚p9ª¬ó2üƒ4”|üšÈ’xá$óLºƒr *Êû°½)ÅIù‰¦¤Ç~†wÙš#’i®Ž>e5¢è­I&0Fi¶lÌŠÝääÕ•¶=*î}攸$Vm±;•ŒdŠHYKsÒ­’$\b¡û)c‘Å¢òƒšœ `SØŽ3OKaÜóO•±¨¶/™Ç˜dÉéD°º}Ö¨Nô<óMDj%¨>fæ›vô?Z]ˆãŠcÍ‚j’°JÈκÏ&ªÂäÍ_¹Q)‘ª Í\Ó.ÄìT/jc(ƒVm¶”ÍV˜blç½oÐd­žÕgô¥g⑜h&“x Šf\Ô~a`@ cøÎ »ŸÓþt’¶ÞA攆\;bÍ<Î#Ç5ŸöpXæŸpÙ!GãY’Ë±Ý ½2MC:³sžMEÀ⤱É57l› «±3ÖŒäg»¹ÀæŒü¾´–›€È2Ò6iãîœu¦BG˜{Sˆ;N t-‹ÙHÝÎsN3»ëNµ!P“N·ä1é¶gLU›`»x5U×3Ôöòml@™©‰›çïm#ñ¬¤`¹&¦*d“Q*} ’‰\ïãÐÕ—Um˜ëUÈ Ôu¥VmÞÔ$’,Šœ°1sÔUd‘˜äö©ƒ¡õ¡#nH= L(y5]Fšk&\ZRÂ×)ë®.tår2ñÊ6Ÿ@AÏò•sY!†:âºÐ‘4o¨[¨5ÏÝXJ—­0»+Ý8Ç×Ú’ÓCH´´+9óäÀ$,j?*ÌŠÃ÷Çåkö#µ$6“G©ÛÇq_sœc=ÿSÞ!6ðH@Úà¾èÍÏò"™W!tû@QÁoÖ«ÍGB;zÐŽÑ–Ãt=jÂîmÔz…-€¯c)BÊ:ààýjêä|î¤ó}qU£„ ¥Tsœ ½…0`9`FåÉÀ©ˆ_uòqëÏ8«ð\µë7–ˆûÀã¯?áT¯î<»¤hYÔ‚6ò÷¢úqq$_gÝ#2m'ïÛùPÞ ]Ž(Œ>jÈÙQûÐÃîûQR5ÃÇáùapª8‰vççRrOáÖ¤‹LV± ÁkÔŒoS·êAî;úÖmÌÑqm –›$¹Nz{Ѱ+2Å©Êûñ£ä¬O̽{TD)W·LáˆhÉÇËÇ#éM·^¢|d.w|sǽGrÄJ.Œ<™*?„‘ü»RèWSj%­!TÚ©²2¨ààóêG®9æ±íå_í5i3íÃÛW þ•§c¸†ŽA¶)†Ñ l}ýj+{8ÅË‘·ÝA Î\㥢R³©+Û4€)EósÈû­_LSïFx< >`H;†NõË,²<–;oLp[·@*¤²=Âc`;°ã¯áô£b÷-¤¸“yéÈã¯Ï늩¨y.A9%@Rnü~5j Ö ú~U‹çý’ïz0xß*\wãé[Óm¢ã±¯þYWF$Sž Ö^Ÿ,Ü•…<8ã§zÑhÜ[y{”a‹GÎC)äéšÎ· $Ϲ–<ýï—ôÅÜSNÜ$PÛÁSœcÄÛ'PF8aéZˆK0pÊA9Â|»qÇJ©5¹ŽàÈ@(Ç;…g~Œ”΂Ø! c=j} Ö}Œå­pݘÏj²²‘Æh¾ˆwêàÒ¡ÅSi$/Ò¥‰Ÿ<ŠDÓ,3à*»Hû¾\Ôùϧ,c¸¢R{ EVgaÎj»»©â´Z<žFöù=(HH©œíó*á2y¥xÊ—­G²VÁ4s$+>EDPç"¬É’iˆÐÕÆZ”˜ÅFî)ÁNxâ¬D qŠU‹çæ´l»ŠM¤i>êœqSù ¼ÔíYNwV!•äG‘OÍÅUk6ê \ùý8£w½Bl +js†¤ksÈiË➸#æ«»ZV(ò¦V R˜÷}Ú¯0dSÇ·w²¸`qÞ«ƒƒÍ5eù±ÚŸ*åx®„ô7Nè_7ê7¸ j»–QB0qƒIEŒ»et« ´Ø–,×2Ë`õnØMæÄÓå&HŠâ7*|¾+0ùÁðÙ5¾ÅS†ïUFw‹Ñègb²ÆárEG<ŒMhÆÑ·Zc=†*Vú‚FdÉ)àUø­‚ºÈ±ƒ³ šWn§$ÆÑ}LkÇ XÛÒ¨"JOCV£…Ç&§D-#D€| Uy©àÕÅN9ª²Å™sÚªñZ…ÑÍz#ó7ô5m"Ó‹"ô.h|âÚN´<$ð #\ã@v<æ¢îä7v*FWƒRéUä¹òÆXÕo·'aÍ7¨^昦iŽ|¾õF=@îÃu¦Kr]ºÕ(¶=K-)nA¦‡ï Š9”ð*ÂÇæFTWB–£UÉ£Æç'4·$B¤ÕV ²Äf³’foq·‡æãµRóŽìUé3dÕIbÖ°Ø´i@ÄÅòÔr}òI©mˆX? c Ù5ж(—˜óíQ8"/¥XòÀö¨'<`P"Fu¦,eK x‘“A'#è»sšiˆ°¬9¤D'Š™l HÓS]Fì÷©ÌxÀÍFñ³?ËÍBZ mq¢EAÍ697?‰-àqOŽ! sE® \t›€ù~´Šÿ/4™mĹšÉ¿j”¯ X¢¸2àMNT…Å måÍžµ+®ó[Ga­ˆíÀ(sRÄ|v¦"íàQ|ç5@$„5ÁÇJ’Tlš®ÜÜ6Þ•j(ƒ%Kæ©RTu¨-Rã Aâ›í‘A#îòÔŠXX7é³³†…e\ø¦ ^rü¹¨­›3°4ùd† _-š•wäâ«È3‚*Ô6à©fj™;Ñ xÕdÈ5¬UHŸ3c¥VrH¨·rRoVC*+Ä]øhþl¡ÔÔˆA`¥r1ÐL*ÄŒEÆ:ˆÛúU Rê;‚éJÆW$ôÎ1ФlŠ‘È`¸uÍYÞ[qŒ’$cµ,b4´Žo,nlÊA tçß Òil’O¯’ˆãòäd$°ÚØ^~QŠƒÍ#21úÓɥË`±2!Q’ì¬y<ðjt˜ˆJ9(ä#g=z©¼mù†}¨FùFg0¥fÅn☲NÆQž‚ªIÆHÁ¢8&E8#n S2e‹1$ž@«Œ˜Ód±LàŸ¦h26z WÿY–E,€FärFxÎ3úV¶êh9 ÂóW­£òààdÕ4ÎÞ÷5*e\/zÊjäH•ãT[ÔàÒ£®àKo=…5â’l`Ì:9>Õ9 œåSk¡Z椕~R²ªgu*­Å´?aܧ ábq‚*A4vòì|¤„+¤¸'žëÇ­:SöˆY•ÌpàžAõ¦›ƒb iY`òeSò°ÚÀóƒO Lã“Æ8Í@YÕc/ÏQÈ"¬]AŸž=£Œœ7^(¿¼;ê¿—1?/•4Ú@#†æ§m‰ºFlcqÎ2iæ25~-=£'5cì'&©6ö);ìfDØ`VÚbÎ9ÅVT†“UçÔ  ªK”µ¢ ¿o˜Š§>m:ywOZuš±9¬žÆDò!n}*•ÇÊ+A›‚ Tž=âœ͈ßoÏ¥)R8§Y‚â—9S]+bÉ7¼Õv|žHãŒÔS7i€Ù€ê)NA4Œ>QÍ8ØÅ š”1ÁSVm•Hùªfì j®ñššQïSE£É*+"EeËzPÑF(œsÅ1Ö¥ËQ\G"•Klœ UšqO“å4]-€‰²±“Þš€…$õ§:°\ž‚‘d¶õÍoOá)lGY˜šRv±8§Œ#œS.1 ÐbÚÁæ†oZ•Ç+ØS-£$cŠb}j[°åU1äj8“5â<ÕU½H5œªYÝ‹3'#¥"®T1éN …æßS[n28×ñN¹ ÉZŽ VoÆŸp?z­@GRÆÌðu5åH¢Ý²§‚°"<šlK¸ŒŒ©ëRža§Ç2mŒb¦M­…vV½¶X¬n_vŒšåʹÉÇSõ®§U6ŸpB˜˜®}Т;Bß­(ß©q¿RG·–DgÆ0Æ:çMÀaœù⡊IÛ*IÚyÉÍ,~và\ô9~UEžNíÛ‡¿ç­ZY$\ —b ÿ ç½G»–Ÿ,yÛœ`.:b¬î  …(>r{ç½1w;¤DL€î:ÔÐäBqaÁõö¦Ü¡†v^nó‰«K±ãˆã§Oz`°Æ¬¤2¸«0˜Ç–½}‰<}9¨°ð C€øäç¯Oʦµ!»ùˆÆ¹ÈÏ'¡ü±@r‘69`p Ko4!„à;6 ulX÷8úR¶Í”ÚpDŽè”=3UÌcÎBêÊ’íŸn*Y˜»±‰JŒàî=? xˆHDJýâä`·Óµ=Ĉ]D ûUÆåÚsÏ¡©Ý™ßËÇÌ1·Ö¥p'’?8ºs•r˜Ø{Õw’K‹¡ ¼¥g«c“éžœöÍ4&ËvÉ,ìcPJóëž™\ò*x`‘@ì¦9ápJ°{ÕD3Y‘†æÁ$ŸáL–í?µã•rÑE œ÷ÏçFĽ^‚Ø¡o#>hãëŸþµZ–&HHÁU€†·Þïø‘Qhm¾_"Vd}ìäãùÓ.nŸ7Åß|Ï…#•!Iô…Ü¡’»Nì³0wL€vã=>”㨨9»šŠ Ù’m›ËnÈ=1§z½#DvFæ Ïk9jÍÆMÇîÂüœpj¨ù˜¨<“šÐÔÑ…¸‘zFØ#®3T >0 ÓjÊç<•‹ ·ëÚ£`ÈpxëO—!‡QÆ0*0ì7r=¹¬•ÌÆg ÀÁ÷§( Ü[ðéOÆU·ñß=¨…ãTùaCg,ØzU P]›j©©ƒ½&ø°À =¨(¬ŠÅ”óÆ=©Ñ–™9Iëš^‚#1†7^9f«˜IUÞàǯJ©(ØüƒÈ«ƒè\G£ c8éêϼÀ÷Í@S)‘Ï­*¯,qÖ›H/RÛpTã;Ç­:(%®7oéÐûÕ]Û£`¸ñïK¸;SüšÊÎÚ¯CFáT[æSógËWzƒQªH‘¼¨Ì˸ 2>éì~†¤fŠxʆa•ÎŒ‘ÍVºˆµ£²æ6O™£ßÉg8¢ êÌK±=Ç„(*XœŽyÑ>Äflc íU#´¡3m™9õ«ØfƒÊ# ·cI®[ «˜“8ÚØêÙb ,Õn´æÜâ“8 â­ZÁºÍ_ºOcZ=ÊÙ\Ú±˜M`ŒÝâÊŰ3Tô–òÙ­™°Ù#nxÈ­Q¯$V] ÜN94 nzSØ«p)<¬Ž)©(ŽöÊ?†›æ(ûÕ£¯AI -$Ÿ5Cwd²C íH¥œÔòÛP‘wéJÊú€ÆŒS“#­J~Uæ«É PNiÙ_@ daÒ ó ÓíZL7J•å\UXÑ%aJŒÕ[‰˜iÒÝäíÍDÎŽpNi¤¶§Ì« Ñ»5^%¶TÕÝáÔT½Él¬b/ÔÓノµ)N8§À£›¸®A$ŒU íH´ñóTqÒª3±Q•Žmáeä %•pk¥6ɷÖHIŠÕVEs™I?™÷…HPÉÐäU™,2~QŠU°•zn¤Xs!Ö§oËNš6ft©a·e9j´ f¥É2(ÇdHÜÕ ˆ)Æ*ñ䢒H1ojɶÉl‡!Ž*´®Î0 K;“‘‘M–ÎTb¥-uÊ.’ö4B&w MZhdÞ ô5¡¢ÄœЦì&ÑWì-´ø5ÚKʤ™9«ó/”àS•ð¼ÑY)³Ÿ›JtS‡bÃO˜.öaŠÑtI_ ø“?–<¸Ûò§)7 ÜžÄÿfâÃãBóH%K[àJµl¯´™\‘S%ÖÂAè*l㨬֦$Z5Ë}ì »„@Ë05¦—ˆÇÓÄÄô9­9“;*C¦Cr þ7Ùb~U*–nµ^y–ó7I6®ƒV9â`>CR[ÆçïµQ“QTƒš¨º¬›Îs´Òå³Ô«XÕººŠÛÔÕgÔP'z¨ÒÅ?ÌÝk>bI;j­}‚×4Åô2) 9¨È¹ ÇÒ³-£w˜Ú¶e8@îiÚÅ(Ù’˜ÕúUËf@™Æ*·–¥·5JXyxZ™=} &*OËMۄɨbV'ž•`ãn &ì6ìK QÀ¨Žp~µ< *Ód Þ;B1ÇŠ.46ð1²”¥xüÅg_DÒØ*m- –^Ÿ0fþy© 2Á°ñ»ý3ÍVÕB‰"c»*»‡ý)uf5‡ÌRU¸ëÜQO*Þg-œw%€X®vÆp °äéRK37#'<ñO©e›)Ù\d¿9èxíS°Ü•St%žõ#¯~‚ªˆ¿ÑKíáÉÆz€½qSÝ^âÅm¤u`ª ü¼ä޾õH“&æSq"¸rÈ ä{U»0 •Æ ⩲lEÁàäU›!¶"ÛöŒ“Þ–FX‹–ÉÎ~•=²H¶^HãÁhÐJžƒðȨ!â,âVqÙ?¯j·æºÇ"*8(m‡8ÈíïÒ‹\ »»˜å—lVíÓéÓ=Ž)Ë¿fö*¼€,=zÔ6Ñ´÷Œ 0Ý—fQÓóéÎMœÊci‘’¼·OÄÔ±“Í!6Åd.rçË9'ÔãߊÏv1ôlµ~"Â'φÃyYùXæªÝ@Yw(ÏÒ†õ*;µžc‡YHÚ6Œ.xüªíœíÂä¹+›T¶˜@…â®ÕÎ)ÎÀ!uÜxÛÅ4Ëq¦ó *rÂ27{RÚ^yÓÄBB$É'ŒqPµ¥¹Aç»qóu¦¼@XU›wÝÇÿZ¦¹2£µÉ ÎÐcà(ì~½y5N`™nŽà•·Ëèi%IDHGC÷>ôÑ+n0vœ)ÇAõ e”EFhÐüñ¶ÓœäûÕ&a½•oyRxùjôÛ¶÷‰ä¹jeôªó£•mù œnSɦրž¥f‹2Ç‚À“Q®è`ÊÄñÔóü«J$–/“a$ PsžàÕV´xnZ¸®ìûâ³L¦†Ä¡7 sçòwwæ¯,$ÌêÛÖ`j¬°R#nažCzT³’îä€]&!”¯OOåÚ›°^È’þ4k5x°]†$BqÏLý5*¼ á£$r3Ðä×’4‚Ú8& Ë’\¯púúÖ\Ñ©.±±Ù!Ø õ?Ãñ§Ì¯cõ±\!zgŒõ©B ÅŠ’Tã'¨5¢ªM 8ùKŒäã4‰pV%òIɨ”{×bvaŽ™ÉȤÊ0g`¥‹d ½ WFRæŸÂm=ˆå}>µº8©Áó8éõ  „ÿ|ö¦bIÜq×4†E ‚{Ò³‹ “Õ‡<ŽØªw(7ËèMMç0!„÷îj)IúÕBé•vüŒ ½é\£fìãEO$QB㸠㕧I±¥Ý§‘šÕȦÊʃÍ.ö'pëëV]Àc¹ÎâqÎj¾Îã4“L.YµšTuÂçœî«R·Ù/¢™‚¥Èlã÷ÏàzU[V+ 3ÐÖ¶Ô¸¶)38\ ÛsÞ³ºR%îRžd†f· Â8ËžäÿLt¤YMµùN¸;¹É¡¬¥vó ÉvA… ÉQô§ÄÑ<~b…I?Kg'ØQ;nK¶»*9ä f’$%ÕîÎ)×hâ<:ànaJäC”†rB¯÷½ªº “¾=û>`rxjÐŠç ‰KÓæëX–·« w5zB%‹Í˜U_¥g$Ó°µFÇÞS‘J%ÉÅf[^ª¶ÂÅʬ:cÞµÖÝ3ì 2  –ú d݆®Ç 20P¹' jS²Øíd'q»…úã½A=ÁŽ&H–­ÁlåÈúöü*­¾ù\" «[mX˾nãÉâœÒ¨^« ¦¸L¹5Vå"Œ}áš=”’»RÍÉPqUÑšn½*Yã š‰ÆîêV‚BKkµK)橤æí'й½‚aê@µ_7rî9¡Wäõ¦¥¡ x¥“qû¼Ti–>1KQ íëVat óT£gr K´›· Ò{ £D(Îx¦D¬ ¥*sÅA"ž;R3·aJI‘H²ô U|œâœ¬‡ž1U®ÝLgiæªCpB`õ§mÖ%=©Á—«#íL =o)+ˆÓb Gò“ŒÕhî̇sS¨bÙ+Š娢P½ií0ÁJñÁ¦¥ù•¶í⬈÷ŒÕ5u ìg2±ÆO4æ‘ÑAfâ­Ëm…ÈëQ}ŒÈ¸bjyÈ„\‚:ÓVO1¹4æÓÄ}“M†I~n”íaèFñ†žsR(‰'“VÚ$å<šˆÚn8ÓÑlH€LXà*u‹zdÔ‰§í䚊îá-£#9#µ\c}XÒ¹Z~ó;¸«;’Ë0eÛ]ÌòÃÓ®ó)'I%Ð9u'ŸUíÝX÷—SÎÿ7v«€$cSd‹#p¢Z%¡V$aºÓdÜ$ö¥CI°±éEXÌxëDlrç57Ø^C8©­ìY\3Ž•-¥°-bH—{ S¤_8–íK(.¨8ôŠAóRµ9Îôª2µu4ÒܹÅ%ÌQÛ'šN žRˆˆÉ¦FŽÄç¥݇B¸Æ;R¤êçjñR;c\ŠY0,`â™.AÖ¶ŽÃDL@ÊšCºRÈ1JOJcû»t¤V`TÍÌ| †(¾ñ4$ OzŽC¶Z|K°œÓdÚeÔÏá%–c}¤dÔÍ#‘Òš…Š –?-rJì–ÇF휔®;Õvb½¹¦y²Ô­aÀèa‘ÅSV•Ö¤óH^¾´—9œÔj2€S§”H6ñM?*†5×Ká-l.2¦˜í˜€I§Fút52ÛÖµV CSÆzšµ,XùGJ†8‚•˜\µöd1ôíTÖ %ôjYü¨ñš¡çåëžUu²3æ³&‰˜Žõ$pÈÎAÅ3™=ëV˜• ·VÓ“KD\›[½•[¥K…y5Q¦v“r’p{UûW.q1Á¬fæµlÊW#R7„^)rÈQÎ8«†Î0:w¤š4r8ɬ›¾ìƒ&K†VàÔ/rÛI+šÔû —®3NšÅ"Â’9¦¤®RhÉ‹ŒTõ8¥x<ÅCµr¬ÀýÜàַͼpà f£½€É§Ü(0O1O£/Ì?•hª+«¦®rmij\9rcÚ •¦Ü‚¤äzþ´–’GSÉÛ,ŽvpQO8¯åMQ…9_”°#onÆ·êt»8U¸;T‘õ?)ý*9`Wx°Å–2}Ü·9\äs“O»—qmŠÂ.CŽy£ #6ÎêK{‚ù:”`Ý$uüªäRB…ÂǸ Pà3Šd~jîqY†3Ü{â„ó| Ž=±Þ•Çbä2“ȹ `ìR<³êFOµV.ÌHePzrÙÏÒ—y„ÌÀ‚ bÆBìÉx 0)7r¢š&±eŒ±x÷6>UÎ3úsVdt™FÈ™~b½r ÇJ¢H63Æ:Ñ¿<³…*3œ€Ô~_­RL}CeTÀííOPcŽEŠBêäqŸïdR«IäÑ{ñ˜ð öaýj²1Ž_¸ ãLûS&Å…}à}æØ¹¾}O­7dÅJH )W¾´©+Å'™•òz²Øe2,‚7ad;ý:R±ÆQ™šL瞟…Qº3K0ˆ®?”ùç5¡²¨‹÷©œ|„硵Qd’PÁ›ÿ/Æ•ûÛ‹HòÀ~÷9§ó¤`¯¼Œ2Ò8l3ÜšÅÓ=£ ²7 µ²=¿„¹‚ñ­eæØ#4—™Oº%[•‰dÝ&£“Ðÿˆ©´åó, ErI æ«³Ë ¬yφ–ñáŽØÎ¬¤;R Ã!¸É#ÓëC¶*»\æÈK—'‡@:qT.]ÙO8ÏJ×KÖaÙ6°;Y›òÛªWV¥b-µÎ>cǽguÎ`ß¼T™ƒ’@·Ì?þ½"`‚­Óµ1dwV‚1ÜtúzR®Y†LÖÍbE‰X…==iKHƒžô×F‚{Ó¢ŒH’9o¹Ç9ÿ ÎÖ܆†¢™2»Õ=2p3M*ÑîFN~éÏj“†ÂíÔâ†'qÜw¹'&‹€"±\‚‘Ô À`zzÓÔ\ŒZs ;A>µ)ê!q<®|Þ¨8' ”åÃ<Õ}Á–ÏúS•Á í<ŽÝh“Ä0UNG9ÝÇåP.å\c5p%wúUgÿXÁ[úQt Ž*n,7gîÖ•ºn€«>wcœw¬ [žÕ¡eòÛº¹bŽœãžµ3ÓQ1ÒßJ\üÀý$U91 ÆS/ƒäº´fµó \)ãïOz‚HkwÛòíÉ›ž9™«Ñ¡è ‹=ŽðpG‰¨–)Œ*sÍK 8‰ãq„U$ûSd–6.G\:Å_dAã{7˜“ó{U¸Ã£Ê*Àuã§cUŒ‘%ËíãaóŽO·¥HŠ#yl±cÅÔ=ähæ‚0Ž×Ú2I<çŠÓ±ssh»ÀŒúâ³­ +„ŠIêy"­,¢Òègå‰óŒØ¿•+;0O¹#Dí&ÌÖÆf-×Ì?Z¯cù7œžµvîñ"€Žø­éÅnZHMCWH¡#¸ÆO}-ñµr|ÝHrx¤ŽÑ#<D꧸®ŠÖaÃeëI-&1HΪ1XJIìKcÛcz‡i ŒR‰sHóÐTˆ”CÍ(´F5_íàÒ‹°½éj„Vʵ9(‹Ybû#4¦VuïT“pÌ€õ¨ÞñW¥Rò¤<ÓYvõù‹-t_µ!bj—Ž6šx”ã¡¡Á…‰ßªÍŒðjM’KÓŠp²e]ÄÖŠ“cPd&¢s·­Y^m$±.ÜšJöQ–×¢’¹« «3¾ `}j‡ÉšRéUû; é¹ñÊ5>Æ6Ö~Ÿ  ŒV‚¦Ük6ŒØ¢Ð•8©#fŠp`£­p@¨ç))9Å÷¬+[Bĺ«NJÄ0½P‘7IºC“JFÁòŠrÀÒŒÕ_[š+tp!#¿cÂg<Ôb' FsG0\<°ÝêP ¸§ÃU‘ š¾dÉ–ÌuïNKp¢‰Å0§îÔ¹ œŽ4 Á§ÈÑ…äŠGäp*»!'¥.dRiIW8U¢Yå^GÖ¡P\åsŠ|¯°`Žj×q¶E5Ôˆ2ÇðY¥i‰ëÞ1Ü3QÄŒO”¥dKv+ȆG9¤ˆ‚:Õ‹†qPÚòØ5•î‰Næ¹;A5+rÀšp*¨½$¼ž+t¬Š!Ÿ5Vâ§|($ö¨P‚CCLŒ #'š|¯¿ ~ö3L "ª\¶Ç´½HªÁ·:æ¦JèÍ>xsíRÛ  æ£µýÕ°Ü3Vb*ÞÕƒ‹Z ®€v±É¦¼‘Æ=I§ÌŠ:uªrFäð:TÙ§¨¬L× Á¨ãû¥˜õªR;«cÐ$ ÏÐRåP„ÎX}Úžf>ON*¼WBE[˜#ozê§ð”¶$´‘Dy"­"‚¤Õ~Hðjò8òñVŒ‘2´ÂŠˆOµLyTEÕØ¦{b‡ØEÝÜNº©g ÆÐÀ2}«#QI¢ ‘ªÝH¬© ‘;ž}ëŸÙjO%ΘÆŠtˇ§XUsÖ’e$©Ç5ÑÌ·*äö)@$dŽôù€N1ÖªùnXlíM›![p=:Ö\©ËrySeïí•~FÉj Ef]±©Wõ™o“¸À4ïž97ô½œRD½¸–.@7Œ* ‰.dˆ+>Hèj™¹Ë ÒùŒÈ}j6ÕäŽE’YKc±5pÞ6Y±¹p~_^+0+µ>áry£‘”ç¤+ „@‘wßÔ×ô©"Fž’}(HÙõâÅŸ>ÿAOu1Dæ8Ö0ÊpY?¦k è!´”#ª†Ý´Èœ3ƒùUäÅÃ0ܧ°ªÖcý `Ö@ ŸV#Ò¬’Qšh2!aœá±þUB(ê(oÆ T68ÎO"´.#08 Ýxè¥P±Gc·*ýö¡ìœQª„‘óÇzlû—&¶õãÓ­Io š=äÚFT ã“ßéIvÌ i0Þ¯¹ó·äñÍ+h4B‘‰$B†fã 1=øô3 ûØåÔˆÛæá[Üv¨ã6ɵ¡8ù‹túýiKÄñ<0ÂVV6?¼ÇLŽœsùÒ¸~J9;[=ÇùTh~VÝŒâšJå€Ë‡'¥6L+m^øéScBÄq”ÉçŽ=iÑ?Ù%ýäU*w)8Î}áEµÚùʳË!‹~nTS®>e €ü`°?—éVˆ$óÞaåUÄ|Ã=‰¦ù]c;üÌ€?¦j2 b$&n˜þµ$n~ȇƒîVb2W×ó¦Á˜@ЬK†”#‚=>¿Î« 8Ù¸B¸gÿ­OX2Sêñ’ÄýÑžK4¤,b']™'¡öü)/V+YÔ &Oõ,G1ŽøÇsL™]cPŸ/•†3ÇLQ¥»ÊâFx×-€Êzõ<õ †A•‘vŒ¦Æ '8¡Ù¡iV×{el•8$õëƒNÖã*`»I!l˜ñÃuèßNÕñµ­Ø“y•I·qœöÅZÔÙdÒ¦œJ­¹¢hÁ<¦ÓÓëÎ(H–õLÆ–wòÐ#=qÐûkÄ|ìÉ#w#ž•4ñ,R8/ˆ@±Ò™ ¸yä'ƒÆj^ˆÕbµFUÜÄûÆ?áÍR?hEtRñŽI\õ«÷do#µJRˆ'æÍ\ $ÈÛÈäc œwôªÓ(8“å zªŒT¤†uéÈî*Õ²¼Y;ÀÏ̼ç×5U1œ·ÍýßZ:•UZM šñ™Âãks·Ä= W‘70UÀUL¶à#®=j+KŒ|²ãjô àÕË€¥Ø‚ÙÝÀocŸÒ¦ØK±Ÿg2î üc•.’âMk ¡ Å>é²è¡Üð¨ëÅHªY·7'µhž…Xy%pMZE&<ÔL™QíVP$â©=I!,ØÇJ‹Êe}ù©d;¥ÏjIHU©lš5A=*¥ÌQª@ëŠ}Åè†#ž§¥T 5Úr9§qR+¨ÝK nå5H6ÂsҜτ8b»‘Ê*ÜlsRyÑÕ—µU pjE|žU{8•dTßs*/CM}å†êzŽvÀàÒ:’Ä“Rôv cóR HÅ@ò‘}²1äM6l™É¤™‰ÇÓŠ”Âv‡Ç‡ˆý’f^¡Ê‹‘“§L7”»ËP8èIb~•4ŠéeTgß$mÒ«À‘Ë;1ÊÄÊ7<ÛùÒ]L4Èp8#¹úÖMˆ‰ÜÈ»T9zðkD¶aVS„1„lt=Oæ*¼àC-¾îˆî¾ªÜÇÒ¤•Ðéä<‹j ¸%˜ŽÃ¯n¹ªD•ëdò‡Èäa±×б‰W*¡\ðOAŸéU-ˆŒ†(F0=ûÕ¸ó ‡À!Ó/ë“Þ‹Œ—c…YTã~;ž¹?• Ý€û”±Àô>µj-¬«";§…íøÕ³‰Ip;Z`Ue‰ccqÊ26œ0~Ù>”а}–H„C0Lç©É$õ­ ÛKrñ±:´…°O^߀ÅT™`«oX‚ÁI;ÇsÓµKîC$&< 3†6rîpI^:qگǛ„Hpœ·“éôØ%ò£ºˆ0Û(Ûò÷çÿ¬*zšt+ù Æ gÖˆdxÑØI»Ý\mÁÉ¡¤mùr‘ðØ;zíÁª$C$‚EÀQ¸sÆEKoqå1ŽFd‰~bTg-H´¯tvb3É4Æ”u=;UwZ­$ǹb6nA'¸å·‡h<§+²¨_â8^jf]§þ})uÄ,cT|¤ôÙ$YSõ㊅Yœ•GqOFÆJ¶Â;‹jMˆ•A*~¹Ðy\Ò²ÛAm¤ô§+GƒÃnÏÖ–cÔš7Ápë“ÅlÃ*Éo–o›6ãïÿ‡CX)‰eDnÎ>µ¡F!a"õe8üEKµˆõ(|¨¼ØíÆ$¹8èÒ«iÎ|У½]†=×3‚ ädð3ïPÉv÷NŸ2°éÈíMëK]có r&[#‚0sÚ«ÈdË/9ÚGj}±ÐÆåRNsœƒÚ›q—;2à¨Áíõ¬¬AêT,©ÑŽjÆ2¬ÙUÎGÌ{š¯2ìG<õéM˜HÅÂjšº±[¢åÃy¨fO—ŽAã<ö­´»‹˜"yäVníÖY$|§?0Ç>•ÒéS3ii¸cÞ³½‰z뤰8É«qiu5~“ø‡4 ¡æíЧQ²\™œúv3‚xªÓÂbŒAÅiÞHTü£­Qûœ6éj˜&ÌYozUþØO¦¾Ó)O–wP >|gmn¬ÍÒ@·š³ Šxª›j|Z{îæ›HnMswæ/¥WYXô©˜Ž£&¥]-W¥$#!K;€T⬵¨ÚëZ‰d‹×­=íÕFE&Ÿ@h­kQÍXh€Á&ƒÅ$–ÎÄÜRinÅa²OiŽ+6yrÛúý*ÄÖ.OÞ&¤‚Ű2*ÖÚ`²¸.¿2+AD,3ŒÓ0h‰T7 šÅÇS+jZDB8¥%WЉ§:UY.Y›x¦ÚAr̲íÔÏ´‡FãN–q94ï¥Á±·P,‘ªãœÕ«Ea ÖdÃÍ>e^óÂ̼¨ÊãµÐ¬|ÁŠ–5-‚„ÞŸ »d#±«$vv§š|'ä-L˜âMá¦Ä>r àÓwè“o™zÔM.òS*HÐo`yª »n§•nD.äúp9U§ìÞì‚›åJh¹ÁaÃóV¬”\Ã"ÿ}Y1Š¥EãéÔU<ˆ·+œuþU›²3v0m#dY~PÄÆÜË¥V@9,ãgš¹jä€êrO {0?ZmÄjò $ªúcÐVM˜õŒEæO–Âð:ÜU;£¨ €‘É­F¿_³Â¢%;X° 8qÓŸ^jŒ¨&À\žIgÿ­TJ3|ÂX"÷ ïšÓÈP¹ mÎsÒ¨<`Ë,hrAÚ„w5£å†T¼óõ4†[‚ä¨TŒª» © 0õÍ=¶ÛȯöÚ9l|¤ç±ô¬òêU³ò0–å䙄hv¡~q×UÀŠæíî®ü·¤f-ÇþŸO ºE,öe-¸%ƒ‘׃Iöp‘®5R mŒa³èIéôC(_5‰Rãpù°q3ëP˜ËL™;€PWåS€ONÄœâ³îËu`0 < ¸±,yQ#«²±FÎâåU. Àê;]MņI%™ädPHÈ9àûŠ®Ó*]_jç‘ɦÊÛ`P«ó‘ÏzV,Å •_˜žæ¨DÉ!p²ãRp˜ •oDZ§\ʘáu˜w ô늫2ù†0*l«CûµPÄ“òóóõ¤ÆŠó®â$݆ïSŶL,¬çï'wažØëLwÔ¶,ÂVÉpÙΰXc}i!ÈtñNèÌ &0sž{dŸþ½[ƒRŽ%… Ðò *GÌ;8ÏøÒÝe4{ãiJ*n Ø ’O¸óªéiæKöƒ¡Ý» ¾Â›ÐÏqn7›™¤t`r@ô3ÓVÜRÜäOJf70¶6}1HÛBå†sÚ§”;Ió“×J®ðî$îýk>¢êj€ÖQÆe>[Åq‚£.{óPHví´näUt¹_!a6ûÝx˜€£9àÇó©$ß!ÀÉÎ~èÅL–¤47÷|–Ã˜ïš »?ʓʞsRBäw¾´ô#ÀpÆ©H?zIêò'¸ÙɪÓC"i6ó× š¨c=vqëSo *j4çäEÉë‘Nœd3I‰‰ç»¡HÛœ{ Wp삞1ÀÇçKÀFÚÜ‘Žiž\ŒAaŠZp]…qƒÖA¼’Ä/|T…$ÜW ß&¤;sœ}ÞXg­.kl+•ž8nGÌìkJ è%L’uP¿u±úÿõê#»àmÁúU¨a·ó€7”  a½ñG>š‡7qÛ$i–IQÑv(äpØýx4’ÿ®uØ …'v9Úy§OjRéd…Õ)ƒ´0Ïoó±ÀÞOϹ™x*!Æxú —$úŠåHRÈ3£õ§1[H²í¸vÎF*"<©$ÚCœaví>ôë7p»òp¿{½é4ïqÌa£Û¸…ÈŒ=jM®ñ»r„©ÇzµÙåG`Õ âí¹9M¹ïžµ¢wлô&¶›l/… Ø3 àö5×X\C-‚²£¨|ç“ë\•¸CnÇ œ×S¦ùm¢G|ÅIËc©©I6Éc‹)n4°ÝÅíK“z30ëU]Ë69 ;b¦;#^qïNÚ­mJ3‹“ÖªÆÿ6Z­\••¾Z© 1œãª)\-¨ÙÛÌoJ,K¸œöÅD͸ÓÕC“‘W$6Erû°T`Sí¿&rl5¼…_m;hmE`Vôáæ в»Kn=j[&¤zT*:f•~và U…#>µ&Ìó€+êcr¡ˆ“òÔˆŒMLÿ*ázÓ<Õ ÖŽ`¸×ôQ“QåñœSüÄ *79n•Z„MpQq´æ™³6ê³$BAÚ€ ¢R¸6Q»' ‚Î žjܸ‘¶Ôg Âô§Î’²n„@±Îx¡±Ò‡n9üª›9À<ºŠÃÐ0›qéO¹Ùè*r-L|´d“Åmeb‘RSû̃Rý¥ü¬ àUI2­iR|V¶êYØ}ŽFG¥ dÊÙaV–`¹!¸©æç88¬Iü̬ö»‡”°¾Ï1FvRýzÓã( h6ã׃ȯSvBèÅöáHü? ›pO)ãoŸi,6ñÅ.8Ì HUW§ÝœTW ÛC#0$åT{ûý*„ŒÒÅK²Œ°9ôïZV˶%cÊ7çó¬Ç RRx%w|Ô¶mäv“€>´€ŠIMÄlØÉëë“WRKVEK`Û¸qŒwÉ9üª!#>^ n9¤EŽ2ÉÓjËœœå@ÆG8Ÿ+%–Æ z2Aöæö²\»ÉvýÒy¶ TŽVk‘‡}Ääsý*ÌEö´ÁHl8ÃÿN”[Q—Ò5DU„a@Æßnƒk-™|ÁŒ Ç"®…rŠÂ1¸çk…ÉÇ¥W’$…Ý·9;bn¥·aQÔµ±Љv6 |ÞÜÔ®ª€7-œ–fÿ …Ü™?ËÆ2jWe•Ñe‘BmãØýEZ%‘DÒ<ƒž[ŸËŠ·ElŽrXr»±œsUXùeÕw§ sßÚŸ a•¥mξ½M,´ñ|À£í FÕaœ(õíUÙÈGü¬ün^ÙçúTnåɈåW$¼{þ{Ó Œ BÎÝ ' ƒ×ß½"·EÆŸý[yêÅ“;Š… ×+ÓæíŠš g{dI.~HÔ cŒb©˜Ã¶ùe8¹ô­kVŒ+¹ wn»ØìOò£s=Œùg"yÖ&;\&C/p?úäÒÍt.m¤LÊ¥Ic÷Ç úT¬®òNÁRIá?(Î:÷â«ËlV&M£l¹Uã$š±J)Œ+û„%²ØOsT°cº›?ÂTqÏ¿õ«6¶W2[$Ñ»CÈgÆrÀ àçU¦- ŠH™›Îbc×ñ¤Û¹ Í¾Ò6 – ó/¨¢ÏbHVY«²=¹#$ûuëQXÜ1¬»q‚>mÞ¿ýzdwEdq½Fã ¤åm omñ£fo/ä@j›c< {š–B›ŽÑÎÞ,~•_~S ‚= gn¤÷‡Îî #퉉 A>ý*6”88…DÛ·qV¢ÞãH’F8-GcÞ•¾y0„²•9 zb§‰âàU‡9ÏJv°ìJcÃiî¨g¸Vƒ‘Ë ûPì€ 7=XòjL1=³Úœb·@’ÉvµIó7Þ?1ïQ¨É«H£bŽæ‰h E…Õ2A=éB–|–Êã¥8ÊÄœ¿^4–UR£v g©гÄT²#©Nõ úçR¸"5g ä⪉°vJž½êh˜‚­†TB 2*Zd´Y‰7F»°‘nÛ’sÒ€xÞn0¤lÇ÷ª—>se\än?{Þ¥„çé·ŸcPãeq4\MÛ÷# ÷z•5nÒ锕f<`‘ž•œÑÈÆ9#Ö™ Ê]—$«~~õŸ-õDس¨nûDNÄ0u ±îrx>¼T„€í$1a޽ª|G5¸;¸G+ÇQ‘ü©Iòyr ¬F{J«» §ªDa™Ys°Ž=zŽiÖKo™ >@Ýè+ON)Püƒé’* E?Ñ[žFp*Ôյݚ°Ë"8$)Ûón†ºØnÄ(ÐAå÷®G_LW2c†ß÷°ªgר֖‡¨n™ l"Ÿ›ôæ„ú­„jo'ÅFSÈâ°‘“€y“iaŽÔ™^pã…¨K1<-JbÇJB Ž”\ Sž¢¥Žj%ÜON(’B8‹é¨2À ŒŠ`=j¹-ØÒ Ã’is¥ÐE€Ã8§mÝÁL§¯ZsIŽ”sˆ=:Ôm¥(ƒšFÝ!ÍNŒjâ*Ž T±®ÞiŠJ•Ç<ÓI¡Œ2ØîcœT¡””†U-TÕ÷b¹ö^^fbÙ늼ñ†LŠ®cÚ§4r‚Ô§ö‡ÏLS„¬OZv9+Å!1æ¦Ë¸ì1Ý·g4y¬Ü °2™È¹¦6Å»ÇÖ©%Ôi¡‘± ƒR³÷š«±ç4Þ’iÆÅ$™aã-Êô¦wM1®¶®ÔäÔ ,‡œÕ6-M•Pr)d•‘Ö™lþd_7ZkF $ô©“Dµq¾nÿâ4èØ4Ì€pž /8¬ÛÃòOJFã©ü)ÈA9¤+“Å?Q æ‡UaòÓŠ­LÜ:->u°\rƒŒ Ò|ÔnÇ֦⸎…P0ê)¾cœqÅJï½IÂäzsTÝÖƒ¸+ÔÔr˃CN¥‚Œfž#\äÔ­tF<“O*GAš{È‘õäÒ‘·UÊ–àÅU(3Œ«sIŸš§GkƒŒâ¢¸âÉÎih Ì­y_{šŽñÎÁ‘×¥$“?@9§˜škD$’ÈN~†´[ܶPòÙÆGJkuæ§RT¨î²dU¥q¤Æ3æ:Ž‚¸§E gÕš£N9ÆÀ)þ`êO^•MÐ.šb» yªTPIßCf9¦óòBzÕH‰( ;qÜÖjf6-HûµVT2ƒŠ·¹˜ejíf俓й:–2óY$¶*T¶‘Ü8Å¢Gp>¼Òi ºØšr:ñOfÏñQ»¬(qPKýÓÅd娖ÇLe”Öy¸fb«’ ë·uU1$dæ­ÛpÐ@û¹cMyE8Çaœ-W”°9Z´®VåŒc–9¨žã9ñQïw@§¬H“Í^ÛŒ…ʰÍÐ [3D›*Ý¢äVÉèZ:û¹¡‚UåZ¦•ÕPÖEÜ~k¨SœUŒypc’=+NïsH hüÁ÷E97ePzÖ~ŸvJ<'¥$ö_™[=ér=ÔØ…#Ö‚¨§åäV\z£:•aÅ,W%#¡¤£!r³@±ç#å¨MÂÆ0j«ÞHSjŽ -º¨ùßšWé`B³ï|í8¨/gÔ¡ qØdVƒÏß”qYZ‘„Uþ÷_AëúUÃVivfÂî&$ŠØ$þUbÄ‘”Tɸä~´ËtSmù²3»ñ©#”º’>FùˆÏçŠß©¿AÍn› árdtãðªódÂÐ?ÜR® ë“Þ´£ öé ¯$>[ÎMh ÷JsmØQ—ƒÐç‘Qµ¸£#=Èö Ë¸pIÁ¥º"×µC• JÜÕ 1ÆIî(!Š€GÊjD`0UzvÍ+± ±â³»¹È6cìhBåÀZYP€¬Þô§*ON˜¦eØxûÔ«#•'fséQ™Žsƒß54hrp÷é;ƒØG,_¼f,§ä§¾jT•cùy úUvÄrPG±§¡È$ëPÕÉjå…œ™J±ùpNsЬ’/É'Ì>éíV-P—l}ÿùæ_¥:R¢EYÎw{vúÔè´[ H˜†p‡QÞŸ-»DûX£Ž_*ß6>•[ª„Œó«.À,{þ~ ¶Æ÷õ¨ëay|ωkí^1×9 kLäb‰$e£ õ¡e”‡Ÿ_óŠ‹Q‹1 €ÙVÀqÛ8ëN+[0KQÉv.#kgŒ:“÷úsm…@+œúš©dÑ«mµÏB•L&.²9|´ƒƒùÕ¸tEòö5Më†2ù¥·pJв½ÞƒÌÒ¹ë( ‘°I>ò†ãw® Mm!i'#5‹N,Í«3¦ÝŸ˜R;‚9¬Û;¢Ê"'œf­8=Í4ÛZ»,+‚8¦¸Z…N:S‹Ú§QØpÇ¥!9íIæàt¥GõHµ4Ï‘À©˜«¦$*OÔAy¼Žjhæ2ÜSü¥j…sßÒ ‹¤ÇäºÉÀZªê3€)c~qŠ¥Ø.‚R7'5O,d«_,ÝOnõ\¡k ’å¢â¡7lO#Š{Ç>W>® §'œ‹‘& ôAIÛ¸ì 4r )Œ‘õíR œýéÛòáKûàrfSþô`Ò|¯¨2Qžƒ ¦´Y_”š² ·ÞŽ6ÿwå4õ͵ûÁüz|¯¦¡b„pØlÕlÖžÎAÍ"±=k;°mcSÖ«\­€*Ñõ&ªMƒ Üiê=Kž\@úÒ&¥(<¥ÁÈÅFx-Ж8éJ1Þ˜7)^uK#)É"޵ÇZ`·'Š5ÞÓ!¨$C|´ãqµv¨Ï½‹«1*ª:³UËÑ €Êã¯J‘f\dŠ™™Î9^ÇÍN‰¸`-M‚Á’ÿ0⡑ߎÜU€vБT•€…aþ:†K–Gãš¼à¶W jl»V­+hS±M¥iéR $sùU¯²¬kÅ,pçœÔìµÈù\Í6S$ý¸«nÑÆ¸=i¶î¯&: ɲ ööFN¢¥Ûã‡SZBH¢_—$w5M®Uå%Œt­yÒJãç9ù#*äÖ—ìêñõ­éí-Ì^t¸ª 2.ØŸÕ©#HÍl̹<´!:šWùcÊõ©.´÷‹æÆâ{ŠXôé7 = kÌ‹sV*ù¬zÒbÀŠŸÉÉ*zÓš«ïBhË03´cš³ -Á*+EÄxëV£˜žÙ¬Õ–ä½E+ÅZYü±Œdâ«l)Ð sR˜Y‡8.„Ùä³äœTrD¡·ç&¦1mš¯#;Aǽe(>ÊÞÅ[•Þj³1qÒ´LB!¸Ÿ”Õ AVHÎÃÍ/fÒ³‹Z2£]'£i̜犥&åb *³í[*h¥Àrià Æj«ÍØSQŸµW ùKù*˜À¨‹?F¡#ÜàI=1B€(–¢Š™mD‰ŸJu­¸Úž§¥m›"îʺõ¦Ú[”Ú[•`‡–~aÔSÞP"%Wp=ª¿Ø]Ábĵ>ÑdY¶:¸Æj"ÒÐÍXˆ°D. ôªm!q–'5£!HÝ•†@¨$&ÿT‡òª“°Û#¶ŠIWä©klR2%ÍG¦ ÛÒ´QL™ Ea97¡œ›+*G â§QÇÕW¶FsóŸÎœˆ!øÕ%a·–8 1XºË(!áØúV¢È`Öv®b1Ïú´Ý‘Ù°H­ckèi ʇ â5PI9ÝÓó4É#t@è’ÃvsoJnž†ËœíRO<î##ô?¥>!4ñÇÝÉݽˆüEZÜÛ¡¡źÂÊPq¼#8>ƨÚÚLò˜Ômh÷IÈÏ~5©«G<B¨VbD€ðq÷ãüªÔK0Ó`2$±pX``þ`þ¨…¡¬âáH#ÊdÚàòGb;þ5•¨]ÉråXœ,yëSMw2nŠ`þ`9ŸJŠæ&q€6áxõÖ‘Dšs~õ@£ÜzÖ”ˆÄJ<™Á<?Ȭý5?âcn¡IùÎ@çál=}i÷ñEaŠy™¼Ã’ЏÀïžsô¦&ì6$¸•ÔJC&6äF=ýêyíL çDH'€\ã8ü©4é&dYlcO(¹AœüØë‘ÓéW¦‰^%UšGaÃ(9ÇèzÒDó»™q±î27—ò‚[Œ¡?â*MTD’Æ‘!@:)׿¨ÖH,ÕåP6òÜ€N@ÌÕbð¹eJŠ~~øÍ'¡jW¤6Je$¡/ÈÆ{§4Èâæ&fÆ9dÝ‚ÇÜút©­í³,w{°¬àGóíMY‚áÌ(~flKp8ý3S©‹3uhU^4…Hv,Í“’ãúÕ‰-M®k+&çu£Q÷ŽOôÅIxc:ž5åU‚–<’{‘Óš½q'Ÿo‡W#hä`qTœËd €åU.•‹»£Á8É=êâÉoó+3†J pqïëÏéL û™6¬>rn=òk'£¬Ì™¬™dYT.Ò庀*ãÚFÜžr8ÆEmÅrI))±Œ¢üÀ’yäúžqÚ‹¶å(wäc5NvC汞ÈNv8éš# ¹,x<”ëÁŠïøO–#¸Î@ɬµ±$m°n ¼¾rI<~&KÎ1ƒO&5P@9#‘ëMh•—õ’{U&4=¡3Dò9ÀUÈíUƒ{cŒ w©c$@»½—Ò¢FLeÏÓŠÛ¡¬¶qÉôÅH\Œ>aÚš@@>n>)ÈûŸjô=«6f#.òב×Ò¢fUl(â§a“·<þu^@²¯ tâˆê~ñ·=sÚž’³ þ´ÅXÅ»;)ßœJCãwXs1x3 ÁS×Ö–9PFã¹sÞ£’û]ò£­J…?‰ƒ/cŽi;$bE3mBŒPãƒÞ§Æ»Vh¿yÆÖÏ÷ãÞ¨<Ì*O%äê~¬Ç¥C‰64’Fó6ˆ±µ¾onjrâg@­d}ªMÙBOr}jü %ÄN›Ì^bü»GSïYÊ%¢¥³%lgæ;¾¢¬G*ñ6â¼Øz~uNܳJ¨C,À’+MY7ˆ®ÕÎà@ã¾+I«Zá@˜c€x5bv,o9ÆÒ tÇzŠDò®NÖÇ9Íó7#Ó­nµÔÙ „¸#ç ¸5eäql»CƒŽ¦¢†)$YJ€œòÀÀw¤„…a‰U¤=ÏÝD£wr\o©£Å ;–!G5¦—;ãW0FHgÇåX(ĆYl Rù¡lüÀXëÆ+ Y™ZÌÖ¹¼Ú¡”à/'ž´EzÇnAu#9ZÃk‰ìeíÂ¥Šð(P¸M¼;Ò”%¸4÷:„!–¢lŠƒK¹(@ÉÚ9&¯•^ôž«`)–8©-üÀÙ9ÅXòÓ®*íBVYò9,[Ú—ït¹j¬÷2LÚg0Ã'j-å©ùºŸaBM»‚eY\™†Æ*q‚Þ•X žH”ã°"ÚñŒî¦´Êã*yÔÚ¼ÕVDŽ>^E_©­­.ƒLsåTcæ½Å9†Á’ÁèGJdRBü#´ƒÕ‘C!GÝ Åæ0þr§¹{i3Àª·JHÉ«ÑÇщbàá'‘PΟ)­O+LV&ã»Žì”Ø,C%³ì)ù]ØŸB1RéÜ9Dv|£š¸ef‹ ¸¨¡ŽF–6lú Ô²nCóŒb…O¹ X¬FãÞœÖLWvjxÌdäu©ÊÈêÒ#þ÷AùÕÆšõFTÆ@ž{`1ÀÀÎÃñ¨­›ûDï]¢8ÎýO©«·š,º…ÔWH­0-’}sÜU›kK 0‹xÚ7•òÃg,{ŸÂ®Pih†ö›2áTSV0„‚}ªÓ—EVÜ?M¼Óv– »~µ-µ3æeeµ ÞfIü)àF žL.[8늉b…Ø— éM±ó q9v5W© ÄÖ­\[ȃnIJ-„„4nªÃŽOZŽkî4û‹¬Œ…‹FÌ@íK!–Tç–#sÞâ“of+•Ê—ÏÊMM±ûØÅLì"„6Ö#ØS"»GàM%Ñ‹V9C–ù€ÛOaô^~”Öp£©'Ú›æŠ¦ï£ *,œ8{f †±DƒK;¿1À¤Žî/ ´…8|uÒob’¸·,r§5¢Fç{SšñNsUf¹ƒ#·à*”^̸¦ôh}´–+d ©Ç"‹‹ëmØ ¸çÒ )agTv8ã½eF“³ ïÎ*ùCä6¢*òæ1…#¥[ˆ31 Ô ­iчL8àØÔ¯$¶Á˜ä!äàŽ}+b]‹ $HSãÁ>Ø¥.Áx¦´ûí"|n\òHïQ,‚Ip¯² ~nçÚÐB\4Á´N¼gæâ š&ux÷§¼˜d;]¸$çŽÙbQ l° « »wˆI_AÆV+øÃ S‡\p=O­'—e+0–Ù0¸ç8?÷ÐÒU"…ϡżFÝVέZŽÊè Æ#·Ô•nɧodóB(Î-’V­íá·‡q†/ß| =zóíŪ–‚sHç £n\{Öäeš\EµË’ î„PqÔw5mm6ŠÞYÑIꋆVn Sìjg¼`…Uba$ ¹>Ü`TJM«½r+hâNí¶óœ?·åNšãÏmˆÊʪŽ~ž•$l.ÊÄ’þc‚ªþµ:;t`þTòù`†;¾UÉôÇN•ÍvA5â(+*f§ó¢y1¨mÄY `ƒVE9ÅmÖãЭ$f9YŒ{©"*ˆ]S§j|¯±wi°>ô;—«Vnì[„Sƒ—Ù¶ÚųÁ¦ª•Šœ…0ìÇÌ)4®"šó«0A r*(m‚1cœšµyv§ÊØX¯%º*‚3\åá•§t“ª;ç= t_ÒºÜWÍs7 ¼²°ùC¹'#§}ÀsSG7•#»2¶æÎáÁŽ8à{Šbl¡¦éím:§#l¿0ÉÁÈÀ5vⲪ*‡Ìc¼ôÆ:søšœÝÚ;£¡V €g½Ex%½H$lp¯^µ)¤É[ê6åŠ&eRèùr3õíT­â™îå"$A`—üƒWŒ;­0¤´€°«p9üN~•LÂZb¯˜›YTŽps¨#¨õ÷¦ÊNȹ[áXÿÖ8EvqŽç‘ÍfÜ“ ‚ãnÕ%GuúÖšKEV[¡™Š„O/,zà¡àÕI W°—’"¯dÈN7:óéÍI ”'ùɵÞáãF›¾qè1V“t‹$(ÊІÜâqÈǦz~ÉÙ• ‘«âT ŠÍ‚§ÇéŠqÌÃÍh£áFØ×¨ÈÈ ;¿Î™L†HZ8Ć@ˆ+ÔvìHÍ=“øŠÇ8Ç?ZI1ä˜Ë3ÈÀ©Ü3_AL}“¿t` ÛœgÓŸþµdÁˆòʰ'Î샎N©¥‘•C „î rž¼Usû¶õÎwd}}ªÀrê«6âH ÇpêG¯JÊä”Z"·X$0Æ}ãAé‚Àg¿¥X{yDU› Fvmaø}j¤êÊAØ»¨«Üc6Äžƒ¸§qÎ8ç§ãQî]¬X|Às·ŒšPG¸ ކªÃ!•FÒÃÖš9Ç §Jà¨UèOzEgVËcRLeC3¡©V`cù08ÛëU ¯j•a-*¨ÆqŸÂ¢Iu3h°‘"–D´`3óÀà~¦m’0@o^„԰ʬÐXMÃÿ}¨¨%f,ª£îÔFÃæ9ʨéL’VV€G5hF0T¶àjœñl=I«‹Mؤ0·ÌyÏÖ¥˜üÇ íP9â­2á$޵RÐl|h«ƒÎßZ‘ж6Љ—j*obO$Õ*Dß»òÙwv“ß5‹îfÇ2Â3§ªç¥=À11‹rºçp ZU…–T9%×,UNqŠžÂT1ˆ«ÇΣ#>µ-ÛQ3: ÷£3,y^™b1úâ´ÔÃob~\Žr9ì} gÜZ­¬‘ÀÊï)“•É#ú þ5lÏ$qPH^0:÷«©g±R$:|wgYá@¹,ŽÄƒ“Žƒ~5 »Àœ¡QÎíõÙLm˜d\ ©è½øïTÚHödÏçOW›º/jqB°$ª¨àÞ$Öh=Hõ$Ó´A¢ŒSŸÄÕv$µªZjZ.DÛ¡Ú4 xþfÛËa°±1‘É¡ëYjJa€üëN Ȩe…ÑeMËÁPãÕk:‹K‘>å=Ä»Ù<õÍ0®r9êjg¬°=MF1€z“Nás{Ãì|©8ç€>•¦òc§ZÇÐ[÷›sò±½«¢6ˆsóVqW½„“{£Ÿ<R€XájAoç>í9m„Ùù™zc5/MÁé¹gh õ§€[$Ž)E¬q¨>k‰ëDf'!£•FpÝ .tÑ 3`ôëQCnJ™_‚ç$ûv§µÙC ± 9Ú:~tû;Øe´Eb¿w¸úÒævÐ5åú kÁ"êp§ï yy¸ˆîQÏÍÅ'œª² ˆÉ àÒSoK ãcÎÒIãÖŸ“UVã(é»F:9Búæ§Ý9ˆm70eëô©AÜ,H]\0NdQ÷GSôªK¿÷~Yy?ºÇ~š#ž¥’ ;°ûµhE""´Ä,¸Î09®…g¶å¤†ÆÎÐäTP?…sþ4Ø"TémÞÉÝRyˆÁHÚXŒŒ0©‘•¾]Œ¼u"¥ó°ÔbbDiÓƒ‡ïCy®v©DñóÖ¦°µC 0pÄõëS­¨í\×Ô%&;2­žË†Ž5ÿX9Ï\ýk2mFÑ™‚;9ª.Aük^æÔ´l’d§F#"³î¼;aò3"–ê$Î8÷«äÓR’îEöÕHTÆ¥þl0ÏAR=ôh«"lj¸Ip@úŠ_ì8clWW È'$H鑊¨4[¹.$Br& Y‡ÐüèåC4YÌ­¸™$>è$úvϵ+j¹„±o-W¬ò¯ ð¹¬Á¤Ëˉ.ªrcågoN=:ÕkØš;t'çbÆ5H§Ü9Æsúzæ´LLÛ“Äfo(†, »€üzäþ˜ªo©ˆá,ÃsbŒÊ\“ß+Ó>˜¬Ý.ÆmBéšudŒ.X ÛÏoƬM¦Am¨G™8†UùX0,=>•.£%¢{}BâÞâŠõÈÏÍa‚{äUÖhã–I%vó]Žhç¹8÷ªÏ¡[ÊûüɃuûÃüª­¾˜·—’¼‹$d™1×ÛšJc7lµ´…ãi–RNåû9'äŸz[¿yÑ©h¢î©?0úã¥dI¥J?Õ\ü½0ëŸåQ>øcB@ôÈ&«žã:kIìîyTdr9æÁüêK‹3‚ •$aÉàþµËyš•›û1Q´¨e±ï‘ÒŸk«ÝK6ë©|¸XðG§/¥KŒ%ЗsZinb$FÜUT˜£d“šÕµ½‚æ/ºŸ”±bYÐtzÔW:zó`Ë.pÊÄ}=«7‡}‚äE)o ã1‹Ç¹¦EòNMK$s[’D@ÏQÈ?+ùœär@ $˜šV¢g,½1J€p*xã æÈéŒÓ>sD9ãŽ:P¤¢ía^ň„?yŒŽ´Io]éÓÚ³®í%iBß1 í·åîG­hà‰B£ tËžÿ…78[Q7ÔÏžÛÌ^û¤sL‚&´*,`œ3cæ?SS]]yd2GžpNz ŠK©$T,¬Ñ¡T'zÇÚ[D ²tH£¶eŠ$ÚO¯„š­*Ç"þø£¢•6Ž§Þ§>gßòCo9~˜Qô¨oaY”M½‚…ÀÚpà8¤å}P\X-"H÷¦@ï¹òíEÂAç‹–<à/ò¤†h’5…b‘ܰ- SÀô ÜÓŽ¥4€ÄÖê9*Lé‚£±¿ U=U®7ê2yÖ5F‹äÉØÄ‘ÐÒÊÖÓ¢† 1ÿ-2OáT.¥‘ p$JãpÛ&s»üïVaIAÊ•™ñ¾6È'qPâÕ®KO¨nœYÏ~) ¬ŽUFÜTŽ§Þ‹¸ÝZ$fŒ.KtùÏ©©ÝÀá¢iÜÿ'è[úUó$€ ’UVw¹Â†èMXo>+œ(Ä3gn@ýjH­¶‰%>\Š™<)#§µK‰´Çç ¸áK­JÐ'bœ/ºYAdŽF*cFIÎò©“ÍkmÖʪÚ;wÉ4’Ío€‰\¢6F[{ v¨¦šx£2I$‚$à«•ù³Ðqïõ©rrwîX!å{§·÷„€OeÇzX.`†×…X÷åŽNqÏšÉ7¦YL "Ôn99$ýjHã·’v”¶Ð¶àqžÂ“ofåö¹·x•‰Žsœû’z HáØþpRñ`•qÓðî+6;Bî÷L#ˆ–59-îÙ­§»‰dk¥ß~rÀÇn•Q峸ia¿lSk"¸l£û{úö¨£i!£pNÂA8Éçñ¨Ñ¡ekwrcE,Åç¾3MØZ$é$ŠÌ ÚÛ=ë=ÄXdóeÜŠÀ“•éš[…AqÄ®sçõÏÖ¢Mö2èŠV!Àòjà”H"šÐrºug¯J#Á+è_¶…Ê‚‡ŠUšuWn*kKd$>?ì{dË6Hï]̦Ðé„q.Új+H^cRáI†jD*£BCŒ·ãSyf2\œÔy9àæ’G¨*¹\¨, (“øv‘Hd)ÊóíHfè Óh%…_*¶ƒ°Mr&Rvo œ`g'ôÊï1ÜHRÇ N{ñõ«Z‹oŠ0ñäãÛüš„…7VÌÙveÏ*GÝþb®CDDîRÕaBà±lggÍòþg?J©|䥾íÁŸ,{úÿJK‡1ä²…ߌŒ}ìólÔŸ~BÜ`ËÈr~^ƒ¯z¤Y^öU#i(óQÈö皥¨M$‹´²”-«wÖïp$l‚xÚ¹àzƪÈ-î#Ý wp íqÓ$ÿõ¨A ò- Œ(Á!äžæ’8ŸÊwÎpHô=H5¢ÖfxÔÆÃ`}¥ÜŽ=OéXPÅ'Ú'’s™|À¤ô4´¶_hº·U“ï±#…0sœ‚ß3©lªx>¾Õ4sùK– ‡pÉÎF= 6Þa¹bŠ'óØàÃæøqëÞ•ÂÍíˆ猶zcßÒ•K[£Fê ±ÜÙà/]Ô¬Ý`†]у·• Ï¿¶AíL¶Óçó>TŠyÛŒÜóè(±I¡–ví-¾X°…‰Þ›ñ»‚qÚ´4éÚ­æ`›/nÉü[3Á9ÿëU{ D“ùÒˆ%ù£eÙòàñŒúƒSGµ¾†F\;«oÇ^Øô£¡f«Ä¯lë ˜Æ3½o×—$³h@ªàîeÉ#…$ þ?/çZ¾sy%‰T ›ºïT û;ÝJÌÎ&2ËàŽ0}©ô!;RÙ“OÆSµF#a€Ê:ã3ý*•î™7‘3Bíµãì1ó~µqñùDe#s1Àêz†öC5³Ç ΦՇ¡*x9ãŒ÷41í®!Igõ9#µjX]´¨³¸#iàƒþe¬!¦XÕ¹Q»vxÏ¥YÞ ŽA–Ý‚ÄðÏ­CEIu4#”¼‹#ªä™*ǃœß Eæ '•Ö!˜ÑU3V>§æªÚ_G=Ü‘ÁºI"Velñ‚1ÓÛ5fpbDË.ôs€Xàcñôª¾‚*OšRåÌЙò¨Š pOÓ9çÞ£Ž™îópÄ´íSÛOös0U3£Ä ' 9gŒ}=jbs´4ämX¶ä.É©hL—>f L$2[׃U.'‘lw,ÉeU<‘ïëÈã¥:êM°ùq¶ÕcÎ{öÍFáÞ\ïÜéŒFÐr?J›Ù,le—xÏ–À¶3ϧ>ŸZ|ŒØŠ®JºLœœpG§R(Xdh†w`Ø#”'¨áíQ\;,[%ùÝÓò¨›b8fi7³&õ €8õ!˜Â hÑ0eÚÇÐûzUC×hl³sŽ¿I,i ÑÇ»yc€{öçéY­w0 þ|¿+äD#޽y>õ ÖÉTáöªp¡‡ÌÙ<ôãzk\,aïvÉúÔ6²É²Eó2IÉÈëÇq¾å.å9¶+°LàpsCLìw–Ç\u¨å%¦f=Iæ¤!‰âº,hDPIK $䊑›jeºAÖ˜‡c ÓЀ¾Ϙ§ 1Q‰r R¸Ï*‘–‰™JIè,»e¶{uR#ÞBžsÏƱÙ?õ˜GQ‡©­ÈR5·+ïḣ?yGÞSî2ö¨YVêÝf€Æ^3ÿ-W9ô¥˾ÌQ÷YRÂSÎÀàœzW_je. ¨»|€·Þ®2x$´˜y¾XßœaÈt®’Ùâ·‚x·ávïFÉ O©T|®ë¨Û¶Æ³<1.í ¿|š†)Ý8ÜA<àñU§q°nÝÉ-Î(PD&ÁCÖ±zîKW-ÈìTKƒÖ¨Ck–y>Ò ðXúTëb6í´÷HëPM)HÌr!$ž0i'¨“-Þ$jŠ¿ëzžj¸ŽÒA˜ãòä¢qP\ÆHâvw=výÕúš~ŸnêòÏu ŽãŽKqŒ›Ðl•¢|ÒÙ*Fnõhò·ܧ¹pã’}EU†ã}Ñˑىý(¸Î® Ž2Z\·@zª$+t$^ Ãn}OaY—͆9þûxÇze´×M8Ü£ÊS’ G.¶näÙõ7]^++ô4‹8,@]Àzν¸yB¬k‚>öyÍ6Ô´/¸†Ú88æ¡« ÆÛ«$ެ¸ùJkM´3Þ}ŽKf¸Ê Æ=ûT²Ü\™Cc¹ÝýÚÖ±¾ÓãÓcŠ &ÚÁ¦vE'`’qŸÖ®’mê5tDlí´UÑža+0/„mÇðŽ•Ÿ¨jÁ%y¢¹‘‰Èò¸dSíØ Ð”éóÅ&ø˜ªÞbÌη`dž¤m®N8Rk’&˜›xÛÂà²ç¨õ¼Ÿ*ηOÖÒ}­pvƒÔà?'ÛõÍ]º’P³e—w s‘ë×§á\j[y£ ðl2+9 1þ=jåµóL¢Þ(î³»hãééS̤µ ¹°G9 "c¸Fߨxd—Ë`ŒçŠ–Öæ »]·˜bÝXûÿX§ 5mãqoqÄX?}™ŽÙÿ"¹êÑmÞ$J=ˆ3*¸a'œÝ1 Î)‚ÕDøò9a‘ÉÇò¦È¯ ­€¤˜êA4Ç‘®c‰%m’/Ècþ÷q\¶¶Œ­t‰v²ˆ¬~UÏÊ=ýéîftGf]ÇÁëM’ÖFpYV"Ëò®À lúê@˜d¬xãnH^ÙÇ4¬€I%–h†#Œ2‚<À0IúÕ{fæ=  †$t«vöŽªLs¤cåc‘ø`çð«yÛ¦Ä æd9Ϩ :â´·*¸ö*¡‘ÁòüÂÄäÌ™=³S*2FC°''p9'Ÿ^?JŽêA†1ÌRLŒD¼&3éO¦1Ûª#D‰Ê;œ†Ï~j.“ºï.4é$hY‡Ý8éŠÎÓ+#ù»—;T þcéUãŽa4ªÆ)q;“æ#=yé@›Ê.…‚¿w®=+I7=d7w¹R]JëË1ü›¤v ,@é“SÜA¼j&YºpY‚·¹gò©ñ«8؇ïD@,záSR%µµË;µ¶ùü´•öá±×ïYé±%{UÄ 7]ÇpÆ~´’y#Ç#j -žù&Ÿ$‘«)óD¡xÚŸçÓŠbß[ZG¹ã&YIÎá÷i$ArÓ]\y’D\¯L¡Ž{7=)°Es ÏšYšdÉ<'¿½zܲ0Ž3g1®9'ßšhºC3"3ÈÀœ°9ÉúúS¾–C¹,öÂÝe“qYœoÇéÓŸZŽ %tQ(~f;ÆâFzvûV_³J²¹Ý*¤»¿9ëTÄóK–•bT³¸À«ä¬Rwк°,Eˆ´‘¡FÄŒ§ Ooò)¢9'%ÕÛ6×*…í´Ð¨×{åY叨vÍ(äûûö¬û«f[Æû WˆE;¶g··®:Š–Þ{Ñl‰ql#ÉÎÑéëUɦãå:'PMœ&sžõI5ýD¿7O’¢þÔ½yi§™ûÌáIÞõ«¦ú$»ÞeT*F=*;ygAYÍ©I$»e³–1ž¤ƒúu§® ãw•g#ÆGÞÈ?N´:rIXÒܧ"‘¦Ãü¿•fÃ;™‚´ ±†r¤p} X3Ê‘±ŠÒINz)\ÿ:\’¸rK±aŸœ‘LlœÕHµ å½”ñìÀŸ¨§›˜X¬ßP8?]¤´°r¾ÄjB´‡>Z+Gv#åž*%IR $í-“ÎGLûñV¤e•-b$íy·8aŒ(æüÇéPÜLHw3Qõ©oâUµgÈùY{u'#ü*¹¤Â–šD—ùe–FhÐöcõÉïíOq=‹àŽØyÑ5˜oT8PoËc¬ê÷A€Â11<9çòÚ? eÔÆyC(ØAûØüýê‘®†å ²¦@é’=?@%di4R 6ràœ{Si‘Mþ%Üñ6ÒØÆvŽx=ºg5ÑÌöÊï$)·‚üjKV½Óî«c'‘ú`šCl¹%ÄBÞ+{c&¸|÷Øæ­%—™.üªŒaTüìN;Õk¶"ÓjÂdì7Þbq»5HjF96Ëdñ¥JÈý9ëBdï±{O‹3Í#;,ƒ§€¯<æ­$s4r3– ŒèùÀÇ­s}¡nXÛ¨A3‚'°ü+eÍÐkKæ W,víßóÇÒ€hÙ‹j¡ ¤ƒÔõ¬¹’(<˃æHAUHäæ­Ã8hiä(5 žj2ùr'¿»Ç?¯JW!2V‰d·ò¤|3|£' çóÅP»i$@²ªãæ áè*ì’Ä„neùNT“œ`zý*½Ã´û’<9 õèh`eDÀ±Hœ ‘ùUKºÆ@pq×üæ‹]„4Šû²ÛvíwþuBi’9ÝÀåryÍg)Yh ½‹H#K¥™B+¨#Žo~*ôrÉ3f „*SÌ1½sÜõÏ¥$(bùn3×5»i,6KoæDdt%HÏOöyÇOZ\Új#º_.u æ.ï—!s=Û÷éUí<"rȤ“œÇš%•™ŠJE»,¬§zuâ¤Iá/ŽbÎ ·Ÿ˜à~úRæ¾ÄÜlð be¨®Jû÷ÅT¼¸xn!`@‘—vô«.L²©d7“…ãÖ²îaÄòmýþ¼´®õ4оåˆe“yÇcžÔÙ³¨È9¥´;òàmÆHÎ}©Ò²³;¦X†äçž•ø‚[‚ÊvÝòíÜ;¦Ÿ$«–71ÏÊ7d f±É8è?¥V¼wq». NvŽÂ¡%&JÕŒžf|m8Œp1L:Tã8üiªÄ½‰©ÕeÜB 8κl’±´WB¹‹s0;Ôñ*€9ê1ÇZO0Hám c¾;Ò(}¤nÀÍL›HSvØq‹zíéÏZt±G±@#pãåëJU…9'®1R+(eùpF Å8KMB/MHa å†ç Å6DÃà)î¥gcœ»9ç«$—ç|Ýœòš’tÇ*ªŒ¸ …jà¶q“ÂÖ”ª*ºpNx¥’5• ,N¹¥Î®.dQЬDŠU—† Š{„WV'q=qÚ¬Ü1º½šáŠãqÛÓ c¥SbËÙÆçëQ{²oqd~Jœ`ö¦N㌎qŒJ•£+(ÞÛ®8¨ð<ýÓ)dÏÝ ƒøq°+ ¶ŽÎ£=G#Ò­ÛéñaYç_•HèLzý)ÄÛà¤t*ï¡R^3Û³GÄ’2Àñ•ç¡9ü}©>a]H!y7JÌWñ‚¿—ZßÊ ò0t(9!—ߥC œ¬„ŠrxàŠ‘L*ZL¨ûÊOÿª²i¢uDrF:;ìaH=*£d|õ¯¼kwòq¸œÿÎx¨šÖd)„,åñŸºAÀþU¢w‹)j‰í$V;>èÏÝ Œæ¦žsg,K` ž¹>ÿýz­kmp×1¹ùH8eÇÝ<ŸjÐ@ðæ)>t<“ëíY¦£-ÉM'¸–÷Óò¦_Ü#.è·dŸp3ž•anMíȵÌÊem«™p_#Ä{‘Y¾J[™%‘YÚG8g\ǯQO²¼A3ò!Q–Û5wåóFœÜ¬©y4ÑNÑ‹ØW麮E>ø”³†!@ny¤Iã–ÞD![åʇ#“žÿ­WKhž60ʰÈ1ħ ÄõÿCŠ–Úkì[ŽQË!p ¼ò*HMºÄBDŠ®=6‘î=*Ž'•ŽýÖù‡57šK¿ËO8¬š¶Æm£¶U– s"HFãúz’ÚÍíÛ+rBë¼{àð}êš»nòØïÖ¬ÚÈ…öÉ&7ð¬8䨩æb»4ƒB¨É¼cäÚGåU^ f!Œ*®½Y\œýGj”´ðùfPÌ¥ŽÆv¸ÇcI¯±™Yâˆd®æ§äÓÔ¢»Ý:E AA8Ï_Æžp·YÕØ`çšu Y.˜«ë÷ˆÜ=qS-¬ñ»¾Ýÿ7 ­4•‡Ð…&ÌÜñ"Æ¿\~£`‰#0S!›,Fp1íWÓ¥Pc©v~µY–A’{PËЙ”V©;i’;6:Z’:ã<ýid´ŽYG“w4² aIöõ©¶]ñà¡þ,†_Ò¨Ü,ïtß98\ ~Ó¤•‡~…»{T›pVX úƒó†KV ùÁäêéŸJh’x`ß­‘ÆÜçô©ÖTPêÀÉeãš›Gh½E¡Û"òÜù¯6Fäó¿_ZeÉe+"BÏÜ-ÀúÕØÄJïr'WP1³øò¡æ…Ü -Â+s±_$­jäÒÖÃlÌœHó‡dñÈEÀüªí ¸ û²P…Ý¿!p>´ã*ÆûlR0¡[!©ª÷âXÆ<–üȧáIJ»z…Ñ7Ÿ4ìñ}£ÏwèÅÁ {šÅ¤ÌÃ’8Cchï“Y©eäÌbÝ'îÿJ±x•„ÀÏMÔý¼Pù’:X.âÛ\0ÀÌrsùzÖ6¾mš8泉!pê¬Á@ëíLI÷Û¯ï$ÿ®RdØ@npxãëCÄ&‡Ïܯo’É·qaž¤ñøÔ¯æ›¢ÅËí_Æ=)ÑŒ:ªŒöÁ§3F7 ö8=kY¥b9ŒØXÝÜÉqlÇdX¹^9ëW¤ìiÚ!;ãž›±ê=j­œBÇS¹¶ŒŸ%Õ\)?tw«o« Á ûµR­%-™ß@¦Árª åI\'±Ç·"ûùNA#ƒÏ5kËuÚaòåVRÎ7Iìx©®ÝaEyY¶qÓîûU¹ér¹ŸC*k3#oU*¡^¦m ûÕçï7z™nÞ\‹F”ó áGçÞ–M™òyçïÚ@üMLª>¨9ŸQ¢Õ~ÒÑ3.åçŽãµNñÁyù—ý¡È>ØïM¶/s‡ŽÍVEU=õ?J%†àËH²K@ß( êÞÀfªÒšM-ÂíìKgG—²*˜Súçµa¤ }¾æ;—ŽÅé•ì1šÓÖ.^A›ç—a–pÜŽ: UKx’ K²©¦ãÿê«©.D¢·í¡™}owö¢ÓÝ ®0m¼œñŒÕ:À,n·î²)ÁÎxö§Ús{½£ÌF÷ôçÒ´ÞhÕä +€>ažà÷&³­6•‚M¥c:[À«ögi·d0R>Aõ¨tëy$Õd8¬ÛAÜzŸåZQOžE9ÚP.}NyÇ¥ H£Þð†i>ê—äÈÏ?…bª$ˆæ(ÜØ}…|È.Ãp*K{ž:óMÓµŠGß#m óÉç¹­TÌ £—v‡Àúÿר§Òá’ñ”[,YÂùj·çÚ´…{n\gÜ»i~·Ç³ 7ÊÇoõ÷È«iÂV2[Êex+'>ý e\épÄP[É-¼ùã{o_|â«%õö“™<¥ƒµNòPúÿ“[sÓ«£ÜwŒ‹Þt*BÁ¹#é– ÌO¶y¨‹£Ü±Ü èëŒãήCtš¶Ë§;¸(ð¡àtÀÚª]igž§÷*N$íœôö5ŒèÊ:ÇTK‰‚Å$>ZÆñîþ.yÞ•¯¾Š5—jaK7Cß ªò@eo.fÎ@õ§Ž¢‘Û‰¤qÕc bO_²º{’,qF¯ºÖ(fd]þs9Ü[ÐÍP¸¼ $‰â>x$Ÿ^MZÚyvàDCe°e³wmÛžh£‰³²(e,}4â÷ ®¥iÓ2¥îظXÙ¢dg=ª¿“ Ã,ÒÞárAŒÆsŸ¯J¹m¼žƒÛÑæ5ã©>`‹‚J“}M%ÕÐ`X&Â[• GçëQYÜH„î‡%vy~¹Š÷±´²—¶Û"ŽÎyö$‘NbÈæIÊO:°V0È@8‘ÍX–â%›|{INê1Ž{UC+}ŒrÆ åˆÈ>ß^Ô”žÈ.Ë«oÇò!Œáv†9-ýîxãúÓM»·/–ò+gÌÙ‡>ßþª¯kvO™æÎÑùœQÁ'¦1ÚŸ ÊI(‰›…$0ÁڧןÊúI¦唸ÊWÇÌã°:ñša†³Æ°f‘·8ÉÏùéW!w‚¸”Ä›‰=Túýi‘§Ú&Qu""ÞY,Î8m£¸Ï5þK±ö t dgûÎã$sÓz‘¼¸•É”©áO_oÊŸ2Ïfìð/œ;nëÓå4«w|Òªê#É)“¶2H86öÏÖªMµ©MÜ«6ž²}¯ìò¤9à˜àõâžö³´—óOYQGËž„yãŸj|WYûC¼[K9 Œü½i"»’|¤¨ võ<×ÜW"–F·†[h̬ò Œ0>çœÒ=¬ò˜Ä·2pÅ@'#’ßÈsê)^@X.w3pX·¨ÇçüªX¡HŒöáË'–TœõÆ}+H´µkB–š±³mhVX÷:ïÁGm¸'ÓÐþ”Ù㙣 –d^p¥fK dfeÉà+|¬?§ãB›h”6Ts÷v¶TûìGUÉຒÞpµá'$H¼¡íSÜÉÆÙmžTd8%*Ƴä¸pÀ©ó‰J?QøÓçÊ c”ÜAà÷¡®ä²ô—)cp¨@Ï1õ?ãOyï\ù,[Oñ”þUI"+´³;2 …‘ºû D†UÀ¿ ÓØv, ò2žbz{úÕy&% xˆwVqüéRY›÷E#Xqùö¦¤‹æíò7ÑÕ‡å@Éco–]¿+:,kœ‘–<ãð~8¸e Ý ž ŸéYì¬ígBÛ¤•¤8êBŒtüJѺ3< Ÿ1‰}1ëíS¹›Ü˺Ýöù‡I;O c“ߥ20#³eløÂ® Ï?JÕŠÐ\m Îp˜ËtªzʬaŠ (ÎxÝÚ™7¹Ÿ$R_],pÆLcj†a†úý2kKQ2BñXÛÄd··MÍŒð£žO©çó§ÙE$gž@2ŽáÉä³€}0?R¾œï–%”ªÈÙš^‰þ ¡ vfNû-ÙŠí‘Î@úÒìTÕpÑy‹Û°díëùóPMºâáŠòŠzût«vé²ê+†‘•P¬ëÉû¹þ”‹4^Iîܶb¢í8P#?w®=ûS­`’;xöÀ’ɸ7dmÉù±êâ–ÂÝÍË$òù èX±\8ÇçNˆ1ÁU(0Nœ}zÐö%r·±ª<’Gå±W† ?ÏéL†Åã_69³ò™ÚÝ'üö¦¥Äˆ¬÷NÊz# ìH§×š¹ԲĨ]áðज }"¡2Shº…HJGj‹±C¸,DZ½êÐàùS¬ÎXîý}EW¾y§™ã2]v²m88ê{œç%ÌÑÊ…T¾Nv´(¾=½i¶„Ñæt$Hë¸ #ù˜Ý$j"`ôÆm¸ê}ꑸr“Æÿ7ËRÄÒ4m#,Ä*uÆœô©½ž ¬‰¢ž4³g$õÉ$Œœ×©‚Bò;˜Ù|Â,8èzðjT/ ~ñ&ªE«”»ò†ß däíÇzkQÛBÕÁ â0R$,Àùdn‘È$Õ £]Å–Bç¦BäJ´R9Gî—1wvÆOãßéUÞMžYÜ¥7"ƒÀ=Áµ”›¹\Ûo” +;CùÔù(:¯Í‚Üe”ÿžÕR;¢Ò òy@~ë“ëÎ!V;M¹ŸïãmKMn&»•ã I;äÎIç¯j’Þe‘0Ç*@#'§žõ ‘$J ÏÕ–ýj53+¡ŽN0 Їbê´[Jƒ“0ÃïŸJf¦SÊ@$/&våTm`yÇê$HšwÔfà©ïÜÕ›µûJÇH *á;Œ•­7©q3m_dÇyÂàƒÍO惜Ż>^á€zgµUïäp­·êEYrî·¸ŒŽ¿Ÿê.¥Mu4ÒìÜŒç¶áïëK˜6:KóG·#f‹qÔóšS ʘXþñïÇ¥I(U]ëj"ò™nù;yÅdž¦FyJf"Ã<áºÒ)88lã §”18n(£§¯ãM‘\ãmæº"͢ƯÊýIãÒ¥óQ ž‚• vEéÀSBnN=j'f)î<+6Òx<Ó•\üÜöã4‘ÃóªÚ –-Œã$rgœóµfÞ†ob'6Tû`vªî$*~pq·Ú¬³9;8àcÖ¡*GÏÀÿdÓŽ€ˆÞáÎ2pTpEXYbx·mÈ0I^Œ>žµRP 'pkNTÑvÐÖkˆåþ@1àä}*¹dÞÓ)l㚨ŒA<æž®ï—4”,.[o‘Ïv§JyòÕ3Ï¿Tö+þúà2+üéÈÏñ}*[9Ý‹ ËÜ»ºž† žå')s)†Ú07c9ßšKy|·*û2Ç£ŸZt"ÇA¦ß}¡Bÿg¸'#9 ÞÙþ9§^Ù³L\–ig!™·Àwõ¬xîà±¼•ZÚ+—e®X®Üóǽ[]BÚã÷‘™í¤ŒÌ\°AéÈ<šæ·‘ˆdX&ÀS¡ÚO¨É©wlW ޳Ãþ‰)…³ÁVÈ#Њâù&ËéË2‘€ç*Žâ’îÜÛG”“Ì#EëŸÂ§”̲ĂY7²½ÆßJÚ.J/©ka£Ufsmý–›Ù ù%íëœÓEÄ"'²¾…Wï4lô?ãU`yšåÖÜ+¸åñVRäù‹æ¯^Í{^(>E¨uI ¤?@ ’БUžM9e%oã_@Aâ¨_Þ5½Ó0V»eI=N?ýTåº7Ö²€0Ⱦf ƒ»§¾kgIsXv[šQɦ:q©Â["œ²épBÊuH™›ûŠM>mæJÄ«½sµ@OzºöVòyoqeuÀó{þ8íX)Bÿ :v3â—O8Æ¡Ó<$—Mó ýº6dIü$úzÕ¹#XFcŽ8 çoéY’hö->S#ž>SÆi/gÖ!§T\ ‘\G-¼…HÛ‰:~ubTUÁów åeÓf2F«’~XÕ°Hþµ§mmqaú5Ô‘±zH¡žâªp§Ün(Ò‚ºªüÌO$t©ce íPñϪ6÷o35½Å¿”ÿß„nVúÕq˜ù‘È¥@Ûü{”©´ô!¢ìÌú‚]<à¥îôÉ&–4$€ŒÌUWpf¥QÕcùŸv“…$ûÓgRþ‹nŒÉòÊÍ ÂÕ³ëéŠQ\Úž3‰%†ŽÎùÓ..c1)šâ Á³ˆTÊ~„/øÔi00f®œÜ -Ç'éI5Õ­ÀVrÅ””OðàtïZÇ‘|)²´è,·Ö“̲-µäÒ Ü$XÕìË ‘.ÑQ_û.éqÁc"7^8é“íUÞöÎ7Œù¬¥A\>ýp1Va2¤Ó¼o .õ!½xéWÌÛÖ ÛìK¡nÆ—‹ÌGúJmV\`€{ý@àÓΦñ)š9fr#Œ) E©ÿõÖeÝõµáEFi|Ï—kÅÇÔõ©õh °ZÄ [0wçã©g#<{WDj{¯²)= ¬#Q)rûDË™ܰ|’AöÍgßÊÈdÎ%‰eN€öU¥ai±k”¸ß¸8 ú÷æ± s 9c½óŸÂ²IGßoÐI%©µ1Ú[˜„¬ì˽œÆTî¾àT³G ð3´[FÈ7Ooj¬ó³GÉp¬0êОõ2}®9ŒÐr€·Œ`úÞ¹wW#r¿gŒCaõíN7q´!e·.r¦0@Ó=ÍP˜>–öâ%• ‡ »duÏjjÈb@V'2íw·^ir=ÐY—%¹ŽDPFsŠä«´AªFdýÌ1a³2Wßhõ¦[Ãmq¿kÄË!”û ãÚ¥»¼¶ŠÌ¾ã¼c‹`ú9¡-|Åkw!´ìy;„`)fß»ßZѲ֙ 4¡¡uÚWïñé·Þ©[Å4û¥’"cÈ 1ò¨=ÏÖ³%I,®åMØÃ¸9g±®ÊUV{›Eôgm ¬ ’[)G#pIŽúÆ«\ý¨\M¨âYW/¸…öÈä{kµÖf†pûœ1W#ë]¥ìöë äÍ,nØ #ä©õÎ8ÿ9ª•ÏmJ ìF–ûä¼èÔv1Œz“Ç4­x¡ Ü JÙùHÈcïÆ©fÒå*¦Æáf‰ºtÇnÕZ}J8P}®ùd•r6¤aÈaßœb¸åNQvhÅÅì@·sÉò$±Ù‚9‘”°QÊ k!‘¤m6X`«íüH=*â\\JGÚæx ”0ì^GlõÅDêŠëŸ»>AÙëêÝi?uX{hT¹ŽDQ¶U¸”Ÿ*ú䌞KkeÓƒ3Èff9Æâ~½‡­M,QÏ8µ‰Ãˆ9Á>ßZ΂Գ\ ¦Px”ªŸì§¦;×E6¥{—º—­ôôhÂÍ*FÛAw/’|äžÀtÕ-ùAs¾ÕºÈ>öGL¨þ•rM:,wOçºåCHNÝäŒ~´]ܘbŒY¬Â©ÜÏϽe)]èCzèP[i"Üߣ2¡‘”¯ÔœRiaç¸u@¢RÛT·Ý÷Æ9b}ª»»_Ü£ÜËçÊê °RIŒÿž Ïæ<·/¦2àšmwv$‡Œ‘£‚D˜Ê–Ï@=*Yíâii·J@… IëÆ«^\CdÖ=Ê l¾ìœŸ­Ï1„M"¢Æ2œ’@è¹Î8õ¨åi] ÌÖ;7,i!ÂE¸Æ8²–ç?LÕXîÄ1ýËÜ’FARIí¸ð*œw»rIuÛ¸»k^¢¬;GkiÍé´®z¶xÁ¡É½X ºvóÒI£»Ž6BOÉ’[¸8<÷§Ç#Ms…1P7A“ÿê«­íºÈจ…ÊpGnžÕ'‘Â$¶•$c„.Ü0ËzŸLWBŒmx—eÐpuGPX‚#(xõõç“ëS[J—rÎê¾aUp6)=ÉïíUÐVTL€‘ÀáH©¡’9áfÂùãlm#.AQü¿AYÉX—¡,Ê_«°€x4ä…™°;~½*°tfòzqHòÈ0eÀÆ ÈÇ¥v7-„ò9cÐu4<«4› Pü¥[š I8.ÅûNiÑ•ÉyôÂäâfF 2Þ…ªSw0?è0~¢«Å!Láô<Ó×iF$õR¸fÎNv‘ÈZ½e|ñÃQD“;?<Õrƒ´+ô;¹öæÚT7]‡?•Kbv4ãšãûJÒFEÞ`r —ÁÏáÏÒ¯[>-–PØ.Z%b¼gªçñ’êb×—gU„屓ŸÔV€–§GoÈwl©èÌHìy¦·%šRºZÛ…]„—ä9ÉïX÷öÑ^4’©…ˆ°$ÿíøÔëy²ôË•.§ tçõ¨ÄÆKÆÛ‘Lò‘íïL„‹Îçû>7 ²È#tÜqúsùW?¨”¢†©Ënqœã½lÝF%@Ϊ  Æ@9þ\W?,d• 'Ì8íœf‚¢-¼™AaŒî¥’&v:íV×½"ÊÁc%T ç =‡Ö’W§$î*{c¥òi¼Å“ # +¯QZÐÂfü€F× ¿ Ï\éþ"¹Ûr¬{WBÎ×Höò¸rÀ²‡ 0G~”® h]/ ׆8Gf‘‚¦3ßn{àt©ç›É‘œ¡O3ïä„öÝX×?hŠI LP3 ¸äóÚ™msq9„ªNvÌ7 úúŠ—õDò¾†²K$¯#•W ó(^ŸAíRÉi,–¡å›Ê\ä9‹ì+9àNÓ;»n9bVÆ—­jª\‹\$–&<£­ðAã®irëq´Ó*ZÛIšN]~b†@#ŽŸŸ4·LÑÅåÊÉ·eR€íœU¸Hmš5dT"Gppß1;©Æ?*ËÕ#ÛÒ+òˆA“ù”ZìÙNñ ›6vlÝvôëÍ4@Ê@ϸíRÀªaPW¡ûÀu«“,Q»’Hþ!ïTn•‘¼ßd(5•7Œvš”@%™¤(mщ9+¸ ò9äU¨<¡e¡É×¥Wi sÕGE>±›¶Ç;zŒ‚ÙQòß+ –ooOƘÈó–!NH¨ö©"’(çÙ)$Hʧ  ž~„Tm$nÛB’s€ÿÖ¬õdê4*¬wíCJŠª¡O– b„çq#ŸÂ™–ÉàçÒ£ZINüî=i¤4>Õ·ÎdTàp{UØeQns…°)Œ £=}Éþ•Z2®þZü¨~ñ+œW&‘V“z+yƒä [¶8íZFZ2¬ÛÎK7>Ç­I„d”ûÄ`gœþ½5á%ʬŒ$o˜Ð „—U1nÌdóÇCëRÛjÍ…ú##‘‚ƒ”$)\ü¿Onµ^I>ðÝÈ‚3RU· ¸° Œª&#˜úÎ*D‰'gDVÚþ[¨hØò ûvëš³D³4HÙb0ÏÐçô¥U&²¹Þ }Üž´°Är+4L’†çŒúȪVèRch„qº–2†$Ž àþ¹¨£T*#åëC‰PFd”d.Ôç 8¢I”Èù^¿w4Ø0ó BÑ‚~vçè?úôÒ>RqžI)T.Õ,zNx¥r¤nè¤þ4\WÀç~ö*Ýê7ÜÄ>§.Jœð1@†ÂðÄSL NùUp=éŠ3Ÿj“$ð{RÆkdj38íOÞ–íM`23ÞšAb€î9©aA9Á÷¨»T¨Ê0Iç¤ö›IVÝ“œz·w R¤.bñéÅCjˆÏ¾@|´å±ÔOÇ¥X–@—(?+ò c§Ò²‘,XIcݱӥËìÝ´ôÜ9ÍDÎ6í%ŽMjÉò`…=+7E…f2©ø±©#ŸÈ]îAm¥×>¸¦£Ä®I郌SNÖVR~nÙéMÐn æë‘ýjUœ¬$Ɇ#Î*5qïWÌ™*@éŽ?Ƙ¥%rÄLôÚ¸Ú.17J®X.À;þ\S$™w®ÕD>Çï\T(Y_Ò>¿ZiY Œ©ä½ Jˆ’.Ã"¼lÅsŒ\µD“”‡'’¿uOZ`ÂÊÌBly;Õf™¼æóq¼6xõö¦¡q¨Ü¶„,lî¸$áA\’ß^Õ© Ë2ÈÂS7–¤¼E—ÐA¬ ®Ú@ÎGsRÀâBÏ"ùqC§ÕŽÖÜv£9rŠbŽW,#M¹>§±úÔù{·ØÇ#5$“+Z´ nÎAÚ2?‚޹Ďˆàdo8Ýíõ­Ðkbôð~ú‚–Ee=w´ån›ƒK¡£t- dËqï­A“ŠY.DÒy¡3ò:`Æ õÉîídµ"á ÂácR€p?ÚSïϸ¨ã†XâimÝæˆs½s Ï|tý+>^ex‰+„z{–qùŸ•Ôä©ôö­5±>o<±Û»¨ócÀmÍê=(†KÃm½P®rVV/úÿJ“í6á¢3I†$¿8eôÆrãMMZÒ2JÌ£y-¬1”ˆ4Çþš€~•GIiwÌx–öè ’;/ʜ۟¯j¶‰¨Mië.Ñ´’³HÀ{qþ•}¢Ì.ä[|ùMÉ“’Í•çÜžMl¢–ÆŠQ·ºl7’Ï¥ôeŸ‚Ç÷¶õCR[ØOq!XîíÉÆWaݑߌäcn}«×A¿@ÎPE*`¢¬ ÷ëúÕ‰4MYÅñÙ"’ì$ ƒýÓŽON;SºîKœ»›&x£¹¼‘€fà*÷Æ}}ªqf>Ô…\˜Nq’¤ç®ztèy¬AááÂÜsAŸÊ€ šF$1É;•€8ž”ÔÅnžR”·F1«º”bIéïŒr;Rr—@R’C¤¼‰b(°y.ßÀœ{PA$°]ÄñàÁR«òþu-å´ášîÞ0a9Ál.ç4乌¬E‰h|Àq×oõ¬[›%¶^¹¹-p…Ú. \ƒ€OãÍ:f”'ÛÐ"îG_­UŠúââ8ÒßÉd ] ~]i$‰y<¢6¾*±ôk;6›´'˜Ï3`b>@ äŠ©v‘]CâXÉ Xd“èjnâ2#¾w¼µJníe‹{λÉÀQó?ϵiFocHBú¦d¼w 08#9æe<Öù¶ì»Ž™­¸tÓ<r*˜óŽ„sùTÙ…X1sÙÎÑ]nQÚæ¼ÑÙ–4k•Ôõ(RX$2#ù¥ÚA·wå‘ùÕ­d­Æ¥tY™dTH!óÏúS­Ñ4Ë&Ux’ò\íbn:c€QŠÏ±Ó¼ÙX& “\Dw…‡•^y,y'¯@(r‚V3mlŒ™¤óo‘¤+¸nwl)üGjÚ…¡ue!.¯–Ím_c“Ö‰¼4êí<Ž¿gnV‡¢19ùAê:ðkPhpÉ V™c Ê¡w1õÇ|Ö³”àôd¹'¡tûdº o$æ5±ÁÉéÒ¢žù-#¶šF—'•XÀÎáîsŽÝªæ¥l,]<›€ñ0'7Êx-ôÁ¬Ë¶;ÜÛjOùæ€ ëÉ9«Q‚WCVÜ£=ü³È·\ç*r~§5oNhÇŸ;½Îs ‘»Ô®pj ‹»ËP¢yÇ ¢¸?Ž*H.c‘ä´·™È;Ub ÄTËÞ[”õ[š7whÑ -ä;¢9ûƒ ‘އФ5K‰õkdBùgäqŽwvÅ>Þ[yí¸³ûQT²°U(P0>éà{㓊D–K"Éç\²°Á…ˆÎHãÒ«ù& „0LŽJà°_›=sŽjÞËûËCu,AÍ»Ëàƒ×úô¬œnïZìX…³T€¹ÛËå‰=ŽæÊ9Öá%W2C¤Àa³8ýM>6cŠÔ‰Îâ¸g'¿¥ó\½ÄHb„¨KgÌ| àÓ'ùTB÷%¶/íUf“ ˜@™äsœéŒŠsÚK$¶2\0!VR9õ8ÅRŽ+“q¢0¬Aëß$Š»$w§cF»‚)-æŠFq€IçðÅtÉò¿uêjôØrâ›Ë}ž8Ióœl?‡AÎ=ëvÞ Z&IEÔ < ¸–÷'©õ®aÒâΡd–E-($±g‚OaíE•âijG ¼¨ÛÎ㟯 ­omÊW:´»>uá #™”îÞA>¾Õ—zdŽXÝ"–ãvpãv;÷÷©íµë¨-›É¸1Ê£€Fîøbv"{hÃ$3DñHªQ–~@Žª*1£3,ª—Êñ–W`ƒÇbéRÉuqk¦Âòˆм)ëÎiRyI„l‰¹”¿!=[𦜖ÃW!»· ¼:ƆVl!»õ8ì½ê²[È–H.ÅÉs–‰±¯«uÆj_6+‰^ÍáŸ3&ÆÏÊ9ÎséHb‚̇¶iDl ÁŒåÜzÇ=M5'k=ÂújV¾Ó¯ÕŒ·‰&vyæÇœÒÀ±Ik¶iQ&V!$“õ8©àžDŠDq¨§î³uçèMX{išÕDh‘!xÆ’q½úñ×ït;•üÛÈ¥‘f˜”™AF9Ã{ŽÃ9¦ “ ÊÊASÆFîäK<ɺw,x!°¥»½sõ©%–Y"ñcXׄ–Ó éøÑ­´ò4[lÛ8ŽUå&òøÝè ïÅC:K$Ä8ÆØË¬ñN‡ëS­ÈB¨$,«ó©Ûß§Î 8¿Êì|¼¹US€¤‘Æ[Ô÷4ã«»½ÎV á‰cæ¶=1š².Vi ¾XUGÉBs€z‘ëÍv>„j‘§iž%‰¦Ý @°Í!‘£—ÏÀ\Èl‘Z’(Dîê¼)| éLXšXÙQ2ÄàèGÿZÝ‘¢²nóîfdÆâ0yë<Ù*PY¶!ØñÏùÇç[°CþÊœ3Ђ=±×ÞªJ+²Id[yùOÿZ™—6º‘BE»à äc×òªÊî•ee#œå°M_¸"H“ ä£î9 CùV|îŸj+<a‚ÌÏ;‡nF(4è-²,{ÙÃmÎ)ÇnçZ2ù—;~Uú®N)‹M #;H㞢›lŠ'HßnÉ>VÈ9^¸ÿ>ô˜tyfï;}žpä¶Aè{ƒé𦵌–Ó… Ž }{ïZ%ž<—N@e§=ê“ϸ"8ÊáHùÈ"AÐè=ºqII¤ÉÉ¢“ÎvR‘ù$äFyþ´âÊɼj]ª3—<ñúÕ9<èßì÷x‹#,Ñ|ÛsÜ õãÖ¯YÆÉmå>`ÿ–±ÉÀ=:}1Iƒ¾ìšà”m÷˜ÀÎYNyöŽk.ý£ò8Ûs¹RÎÝp;T·jh™C¨ùˆl—?íÒ«Åi-Ë,7@Ò67`ŸçRåg¡;TØ t•-»©‘™€ÆÜ:Ò^)[‡"qÜÊö8¦Æ±ÆqŠ©?tÑËA&1·c*4茘ÜDÏ9\Ó&Q‚g3ÎyïR#òõ?Â}Ås³"8¶¤{>Kǹô¤wPÛF³Î)m£hÇ$äÕ989M\cÌõW,ÑW‰æà©è:9SfY¾qéÞ¨œ’8¥ ;ÖŽš±|¨¹ÅfVVòÈ?xƒ½jw…™L‚79*O,;šÆ±ëùVÔ±,6ñ\*‘ÞóŽÿZ—e¡-KG(l]£œôþUWdª¯'äwç¥Xy7—Üü€1À]Œ‘!GM ô'½Jnâ›_h> 9?xúS–šà¤jrv ÆãNHÁ|Â¥š8¸EPßÜ⋠¸HIÚ—ƒ‘Ïÿ^£Ù溨uQÓ,p+ŒÌ»AàgµE3å=(Žà‘H|Âr8"¦Pr¥$qŠ…A`I\·¡ô«;l®yã£zÕÉ‘(ܰ cô4 6®Bƒ´ÓÈV óƒî}i«n›AfÀõíKN¡ yÅüÂà†~˜öS¸9ÈàÓøNUƒaNÄ%Xn{Žj–ƒ!‰ œ§¥Lm),¸ÇNG4ˆ’*»E’«Á v=ÈíKæEWÉD9?Nõ¡ebSØÔÉo»Ë|™M&ù '·¿ô©•Ë„Ên+…Æ:`w¦2°µ“j’„nàqQ²í'zb¶m¤ˆY¢`Àü͇³ ÊtrH¼ñô«0GË,]˜v]ÃçÑ”w÷Å+´l¦7ŒN ùš"Êà÷Ú:vëY:!Ȭ#·¨wX7Ááè‡~”òêšh’óìÓºœ–Ÿ ­ôÍ>(¡y#·´•<¶,ÀLüÂÇ©ÁÁ ãµÞÇçÃìM$G nI*êyÆ=ŽA¦ßf;•¥Ô.íÄ+§3Cd†,nÇ@1ÏAß5vÂTHãîc»ã §éN··G·’Kkym$\–W%AƒœÖ£š 8HX`û˜6X®GMØ;ñOKY Û¡«nd˜ˆ` |pÀ ²Cžþ)SÌŠâgï`Q(G©QØ{Õeód¦2èAÛ¤nä/¯×­Iqwå•0Û³Z:aãêàõ?ãS®»’·Ô¼fßs=ÇÚU™9؃æ× úƒÈõ¤ŽWšdˆÍ¹rûX(üÅVŽæY¸w¡Ä‘È~Vu ãÈàŠzÝ!+5¨S©±×.áÉþ¯½[Ww±VFØH|L6‚’Ȥ§=¾•£ÂË˜ØÆ˜ÚÊ[~Â}ƨ}’ ’’'<–2m1ŸäjqhÌÒϵv€Ǹ^Õ|ˆzl>[‰m™0‘œª±RÅ¿ª©~˜"v‚&>eÀp “Ç#þ|TÂb>T^XL``‘¥6»Ze1ȬA•% ¸c¨ý?ZqŠ[‰E ת,­qƒ€9QÔžyÀöÍJ{{‹|_^I˜ bÈ9úŒŽzQ ¢G!’#å±<¶YÉã§4絚)¤–Y\™J¬,ÄŸö» ¥dô‘²(bÞEÀ2Üq뀿΢+~ø+mo#F»#‘NàÐ'~lÇp7(Š&;ŽÒ¥¤l þ´ËƒöKa-ÔsÎ%S•TÜ gŒ†lƒøŽ)ÙXj7!n•¤7©, €<— ™õëÓð53[­òÄÑ•±34)æMµg?ËϹà`g¥F_.E›ËldTVb\ÇnÝsJKA)"+ø%šÞÑã™-äÂÆ"N\~§ð­k”V‘†ÛsÒ_Ìá÷uzë×µ`Ão%Àž³©rê˜ò™>lÄsœdð;Õ«––K4³’)e%<·ÔõôçÒ¢1JWdõú•®«d÷Oà`\²—hÁáztþüÔpÜ$[˜8§݆۹H<ƒjœ1ÛiÓ¯Ùío`ì%ÀÞ¬ ä†Ï ŒS…œl »*‡8†HÎÈÈ`H9è æ®i=Vå]ÿµá²ß·BUy‘p»8;Fs‘œþ–žu„þlS¢nr‹4¬œt çŒv«2[\ÝZ˜à[{”—Ū§ý’¿6}Íg˜FØåžÚ'‘2c”>¥G_Έ¨ÚÝJº%¸»¸;7K&â'žÿ7ðˆ­o£»Ye³)&UÈ÷óŠ@–å¢ùáøvä¶CŽœw«‘ÛÛ]’1 a¶X¥|FOðœ÷§75§A»¢T]׋*Ü*Nþº÷džå[¿ÐT3G²¬ÝKJTÇ=qZ°AP…tBUIY6c¸ëž§½Y6ÖR*«A‡û¡ã~‡ÜÊ-ZÏs4ÖÇ>4ø#ó'kŸ8`l,>o ëIx­h‚1o Dà‰‘–Fo¨9?ýzšóO½±µa=ÚA+ÎJ4¿sg8;†@'Н],©<šîýÀóIÇS‘þ5ªƒ–­š¤žâ$z‰Âǧ5¨cƒïëÉÝùÒ\YƒnD÷*› FYf뎵43¼×ÆâF¹ÛÌŸèøÜ:qƒD÷Sí6ð;Ë Í%${Èv4ã -X”]È`º6Ày²9`yn=9=9üjäÆÜÛ(x¥p¦E%†ñÔ±ç9<{VZC 7ïbhár£óƒŸnµsögz!F”ç̸“ïŸaŠÆTù]Мl6ÞŠTŸì‹gņ;½òxüêÜ’d@fw è[È_ï:šŠ,Ï:ƒ$ìv€oóè88«fÎÎÊ3>¯rë;ÆÕ\+Ê}º¾Õ¤ ß¼+/n¤>t×Ü–‘€‡8>ºT6QB" Ï•Á2ª€@>œ÷÷«3\ÚÉ"¤VpÝZÇœ}™åQzÄóõ«^lÑ¢Ó#ˆ3Ë ¢ROÀô~}iºrÛ˜vhËÔ!ûÅœK9âFÆÜ\ ¨ »o-!/#G» ‚xÿ€ôª÷ p®-çFYa!Hn6þ³ ½¼vQH¢¬@d— ¼ÿxÎ*îãdµ*ö/é—k,M º´¦%™›#¡ÇÑB®ã+ 3pª:ú~ÇìŸ7/S;ka–/m+Ì~Ì‹$#ç¸e%Sȧ<íT.â¥ñ,²cl¾øî}©°X½²3=ÏØ‹º…k‘´6yäçÞ´F•%¹w{«{†+„1Ø?\w1TàìíжŽyµ‚3 ÜÛ&µmo'x!3'Q°#³qÏ¿>Ô^éíKt–L¨#À-÷Q±×ð¬õó›Ü"îÜp{šÎɬ˫ ~C4. ð § ãÏâjUsûÏ)¦û s÷†Ñœñôô¨ãF¾‚h®­Ü&ƪËû±ž g9õÍI.šeC 1ȯϖùˆ#yïC]S´šiŠùÅd]û™†CgŒúU¨£ içùq²îÚTgsç¿‘íM´…¯' ŽÏånRîç þž1š°È-â3Á*Ç.ãæe±ó{íÛŠ>ÕÁîWÄRKæ#trÃåãJBö‹†,BठÁN8ëœ~uD¨×â‚5dO(‚K<ãÖ¬ƒÞ€œa±<ódœôë€_zÑÉtÜ«œŠ¾qšsÈ\})7•ˆÈç 3VWK¾a¸YÌGûµÐÚ[šÝ™ÜŒ$RdÐèѹI£/PÃRdzÕ )ÜqMúbÆ€šÓðÎ_¶B¡ƒnM¤ÖOãZþûn6;#‘Ž?Ü4[P¸o›%™ˆöÉ56âp Ë T6Ÿ5ì²|Ü+–Ûîjþ—h’Y3eÕØ°ÊŒ†Ï<óéR÷ìŠÐܰÚÀ˜÷0Lü½:U”òÖñ›Í϶Þôâ®ZZ-­Ã»[´ò3Š1Ž[©$ú ±&žŽGÚ[Øä8횫٠„¼ $€n^¤åA=¿úõKPv¶·†eF—Ìib ŒŽÇÔzTlZÆ&c hw„d8ëÏAUï5T•]ˆH+qÒ‚ÔKéžGó· ÆYà€ZÇ;¢ïÁ¸¸ì*ý¶ùüÙQ•s×yùÖx c$°’5µ‘=ˆ/nùÉxúöþµnÚB—QI€T>ãøU( *œ9Å\‡ptùˆÀÙÀç¥ :îf·y]å’e@TªIÂ㯠žjy¼¹c“CºÀ™ànÒ³åóÔˆ$Àl…ç##¶+UP ÷;>2q>£ëéPÌÚ±™q"ùÁ<’»•w9éÁ'ëÏçV-œ´{¶˜Ðd(-÷±Þ¤ÈÍ4Ò"©,eV“ïtèNxõÉ⡸¸c;˜Ê?Œö©œ…&C=Ñu(øãv:*æhÉ*dŽNÅN2j®êÌÚ})ó\LŽÌÊ¡A'€¥f‘)O?žÊÒ—S€B¯¶hÈ–þ`Ÿ1鎣ôªì~\·'±­X \Ú(ò‚„`@#¾µ],>… Åp2è€X0lžÏëQÃvÊ##‚÷«2FòG‹ ¹^H ÿ*~¡,iQÊHSr¹xvQTÌ«”x% ß…DA`IàúUèSt«-ÓgyÚ3ØâªÍq檨@¥F â÷­Q¢ ·…Î>SÞ€ EòŒž¹¦AžË$ç=êI?q¾&?6A ž1éIƒ%F1…îH9&æ—(z{ó‘ôª‚VÝ‚zœ’FqïS ù"pè€c#‘œÖn ŽRÛ\y¨""8Ñ[s`ŸñéҘ̌0YËg9ÛÜ÷¨m@7&FPªàã-ÂúSç“bg‚ÀÔÉt%¡ÏµåÜ €Ç8=ª&“'“Œ }i‘·fGÐÒyžl›R<ç r…‡´‹…ÜÙyÇ­VÞÄœÕØíÆÂòÜtíMòãnÞ´Ô’i«ºÆIƒÕOzVrÍ¿qeô"—iÎÖä@EAó7€=¨'Ú•rrH+Žžœ÷§Á€c´ã;i’¹*AÒ¡i7ÊZL±'$žõI\v¸¬Äp8çš–2vœð=©‰å–ùÁ•$GŒ§Ò«rªYá}­+‚·@GçV•d[ivä!áò€ÌŽ? l±,ßÕ¦ž¥Ø¨%e‘vc 2:æ¬Û•ŒÊg! ¡-“‚O ÷ªmÐ3Cx={Š«‰çsÆÓ¹v!$zSŠD d¨¦ Œ»[*ÞpsÞ Ë‡  À¥ê6ÈåT„àò3ØP¬«Ç9ÏZ±Äc’GÎÌ®p3Îin­Úg_™\ü¤t€±_k/*=óHªìŒç¸ýzRÀÇiÈïS >VVž;ÔÞÄÜ®Kô¤àã…LÈ¡²«š‹?;sÚ„Á…Їnô§*0àñèM7sF9èJcHÇœät§«";yŠ23Oºoé’juÀw©‰$Áü)5ÜV˜KwvÀ Óp=«A,n0D¶Ì¤!) ?Ÿ\*«fèR1 #ñÔcüiÑÌѨþT8ž„Šú¯Bßö}²Þ”mBܨm­ãÐ{Ô‹¸ºÛslVvBżâ>„AK›»QJÛïf9ϯOǽ,v( Mqpa¾Ó”,ÇŒôã‘Y´ä´fm7©Êys {—Úw#ñ󝏿­Z¯ÚÜ”Õ"\:´LÉŒ`p3R\i–׬°N¯•á”fîã“ô5[Ëmså,Ì‹Ç!ˆÞ …ª²®†X‰ Iö9%B6³ÆËÓŒŽþƧ°ó†²VBÈÍ.÷„ V Ž3žþ”£P¬,nè0¤H€FÿjYî’â3í~D+à ÿÞ¡½]Ñ/}Q-Ðyu3@å÷‚’B¹ät –æU›Ìó÷Á6ÂUŠgiõ8ç…E ­¼iy«æ°ò¤FáAã€9ÎsÅ$³‘•Ä·1ù]X¬‘ã8ÎåþF§–ÏQZÅÔÔ‰öÑH¼†Qóté’9Õ(V7>u¬ñGpåÕs™öàþtÚê~TöRIpTç   †ü*Œº¥åŒMl³˜Õ2ʱ˜Éïž¿kéx”—aúuÌêe6è?ÊïС"®j¯k ƒ§¸’Efr0p2£  ç¥UŠKâßk³ߘHARFÏqpnD¥Sº;™ |¤1À⥦ݘšmØd—r,êF×Ê»§Üt­Coh‚M®Ó‡û̃hqîpU´b›p{²XlÎ2}x#Œ}3V„¯jÓÁ-ºÄc‚ð»Ù#ðÅjöØ–šØ°—.pÄÊXòŒNWí`sŠ€Þ¿å!F¸ÉÚí“ÇS’LTÜ=äK-»\p\té÷°8?AŒÓcÔ:Û±YÚ5x\Ü!éÓ<šݬ 7Ø·p%+‘ÝðÁÀò„…¥òäGŽYšÝYW%—?6}H©¨dM®ˆÓ!ùL{@#®2s޽i†å¡‡Êšxݧ]¿»+ÉéØ8ïZsJ:6S掌¸‰¹$Iþr[p¼Ž™ÇÍúTM#4ÇfFÏšTð =¯ç¦j¥ãËö9#*1•Ëubž,q$RÙÞŽ0Jë¦'4Ù¹2ÄewH\¸%ÔŽ˜Æ:p9ÍaK§XæÜI'`;@à`"¬eâÊHÎÙ$Ñ©à@8Î?*‡É-½!ƒ8'ošÅ8<½Wó¦ÚêÇÌ,l‚m± ß³$èN2¡É:dªÊ¬ÞYÚNÎ ‘×5^$¥@“K·kb¬##$÷ËSÉv0 23/Ì—zƒì{^x©I½™:¶93#˜¤;ù‡ËlsÉÏ?®:ÕflÜÿ¤)­ÇÀ#¦;óÉ<ŒçŠ·åÎAuÉcîzâ©›îßÌ-)@ÈTG8—p\ð¼|£“ÁÏJÖ7Ý•XÛýjìÙyJ¢)U¤xB9ÏPp3éWtÙḵhÞÝ-Ú$$P@ÝÎHÈÇSU&’ }©;±ª±I¿ó÷»{ŠŽW’ÿ˃tqÛ!;âY1°uÚ©ÁIXÕÅ5d_–d’@аKgøë©ã>µ5¬pB^vf|®ãG$ôâ³§ž[{gy͇rÄTO äöïTZñî"±G·ÊrXÓæ$q?IÎO¡öõNæÖS¨IqlZݤ=…O\(çÿ×Zwr˜´ùæ·„U¬g G÷€ê@Æk>ïQûM¼&åáuuùË€3þÑÏð¬ù¥{¤Jmꊉe³1}èøy>R1ëßð«¦V­¤ Ѫí\}¦3ß'š4áfÖŒÏ&ØÈ\30bI _s×µ"+^<3ý¨<@³üŒSÌ\gc(à6x­7ܶÛ$u¹‘È(±…VD!€ä÷ÀÎqØæ£žÒñ­Z;©#‘_i%aÛ'Œ0nµ›u6£mk‰cLÄr)àr [Q¾º¾´G¹É!“dÃí^¸‚3ß×4Òw™±ö™ £ZMo}t@èÒ@™±Û'~™2Ø*™~ͨDÇþy2Æsß+Ûò¨l/or2¢ŽÈç¾{}+NßY»gŒ±‹£a€ßì†ç§®ƒI£0Ϊ ¢Üÿ¤ÜǦÖ›]Em bk|Êä9;äm¹˜dôöÅ][ý>ñÚ;»k«X™¿rí ;r:‘ÐŽ½r+ée°¾žÚe†gÜ¿½Ù³±8 ŒU)Ý;èˉq徨b³L¶w3Êu«ðZÜ;K-5Êò,²e½B³qYº\Êv‰ã‰Hò‰–è§^NÑŽ5µqzÖ6¶ò–I.n—åÀ=\Ûާ½ZIî6%ëÉc‘Ù@åæV‡j, öä…`ȉ2ím±2 À“¼õ$çŽÓÚ­ß^z³y¨I;¾SÏuã#“TX?š©$ñª¢ª€ïqÅEFÕ¬Èó-Y‹õ­cExÕƒ)€€$t'ïZšêÁ¦2íÁ1c!»r8ÎLc@ǺºVYe<4±™8ö4w ‚MbàÆÃ(ÞVͤuóž+þÐi¸ë©. ˆG¨BnbEÚ$l,ˆ ãËÇqM)<¬D1²·%|“Žwd‘ê8©¯d‰"··d71ƒ¼™ä ÎÄg {ü½³Æj…¥‹Îí5™x£ î#Êç€OqŽõ¬¤ºƒhføíŸËŽ·6w©çŸcN²ù2¼03/¡]߀­_†úÒi#RŒ2œ±1¿n™«(om­Çî–â0X‰`%ÓίΜcÖãH³¦ë…¥HV-ŽÇ ½wœƒÒ–î´¸#ýJÀ31ƒÐƒø~ö7S§• È¡‹—’#àòÄjhõ °Ûù¬ñƒÌ£ wãžzð+Tì;\ÖK«•7+'‘’ÛG œc=ûgµhµ•峺¤ ÀT)Yw+.3Œð2·j·×úl—V¿kxÃ&8 þ!ôöëX—Gw´É‘—¡`0G®Þ€×,ýÙk±›VvfÈŽÞLù¯æ¬¤1YºGî@Æ©ªv¶–öJZ•ËŸ,v†ÎqëøÔÉåª*íå ò€G°©›vÑ퉥ˆŒ¶QÔ‚xà×=ÞÆ{Ü^[¤°f8X±h@,ÌqŸÇ¥Cm¨ÿkF-ï|á 9Ðá¤Áàa}ºçŠÏûH¶v&MÑL d´§ÇÔðjDE.§s[,ê[†%VM½Áäõ&´´¹¡3]ÅH|©ÁÜq&%ÎpÇ×ß¾*”ò·ÚRè|Çjõl·§n¤÷5=¬Ñ¤b#–%Ã3äövúT ªß´p&ÂÇæÞr öç°Åiî4ÓܙْÎW»f28ÀPr@úö>ÔщVÎÕuÜS~X·mǶ=*T JÐìŽæ@¡¤Ø8g§~ýj»Ú[2’ó4#pØHÇp{Ò¸®=–ßJº2$€Ç àŠwöÉ2ìu%OB R‘“ËwéØö©RÔù>j®Pw­Ý4õf® ©fý`¼¶2*´GÎHÎáT,ïY\G5¬L„kÓÞ­Å ó0Çò©ÅÑ¿xÏqØÓä_ Åʶ$Ÿ@…ÀlFó´ ý*kM.Ýc)åÇòô⣸kém–0ã}Þ}˜*³cíÖ²¼–ŒÍ¶éÐÏ …··9? ¤‹O·…ÒX°)P@Œ_JšEr™P>jˆfÞ,ÊsÇ=ÏùÖ°½Ö£‹g?£Z$Âñ‰Ï;¹ÊŽr@ïÚµôû³Û¦X4IÊ–Çü*ŽŒÞäÈí4 D<ígžJ¹%ÅÄP´‘Lj³ÌO…Á =ºÖÝMY^âx­Ð/ 1b„g!¸­ K©¯-Y•>~†ûØöõ¬‹¸e¼äq¸ž:Œ})tá%“8Ú’4£n »qnŸÔt-j0oG‘H €nB{ öïÎ?*Á{v‘·|¡sË‚¶§åÛ !%f^nUçO¾j”¶2Au*³¦Üç>ŸÓŠi¡N6"¯ÞB0ã““TîHà“’b¶a‘€“1)88É>†²ç…c%¢ÉǯQB)l3îícÛ‚kZ+R'‚7 ¤œdñŸÇ·¥c(Ý´nÏ9#±­˜¯'7i“só0FFzf†+Vêˆä»qŸËU̇‚ð0;SBÄÀcnã©Ë~*µ¥°UŠp ³« žƒ=XŽõiÕR1!'ÇcÎ?YÊh‰.<ï4Ì&EWù^,ä wǾQš|çsÄþ«×@–òس«'B¸÷Þ²n‡–ä@ÿÝ$ŠÎÜÌ‹\i7=hC–ÂŒ÷éO¸°–6<£»‰¥E+ÐóØŽ´Ú°ì=H‚ÃåïŠÑ…ã0°ì„bÄØÈ³"eWÜÞøjô1Or§i+ ¨X þ³T•ÇbÔm8 XŒgæ?7ËÛ¯5^Kg¸¼†%w^ŒÙÛþ}*s%ÓFÌIg@ÇÕˆo® é,R22r„`'¯Öª+PŠwQ‘K,HK*ucÜôãÛ^!¸â¤Û¿ïrßÖ˜«àŽ_qZ–0Å1•V0óßÜI(F(ã€zqô¨áóm–UŠ5;‡ÿ½YÓJEm$×*ÅÙÉV<ç=Z‘±©añ’C#ŒIíÐ’ˆr03ÅY‘_ÉiYñŒàŸ|zTpy)>Óó‘Ë(è Šgùn€³¹ªÅÓ<’HË‚Îv¿ô¨þ΄!;³œOð¨míq§k1år£*[d6°ù݉#Ži­n¸É\ `toz™BB«£œõ÷¨o°^Âa0HölÒe@òqÎiB! · n9?Ê™å 9f ÄŽ‡·Æ£rlb`#"«N¦4åLÔžknR§’åÓË ÌGÊzcëWÜh£µ±ÜN ·9©0î=*H‘àã½osQ`´y£’Qƒåà•qëþ}iñDD`‘Ál ñÛ4®í°O0Áö=E2y‘Ф{ÌcæŒ|Ä`ÿ*nMæ«:áAèy¦mVÜÇŒœŒûÕ}ß6j_6"JrI?(œûP‘MŒ“† ¤‘מ)¥\õî8Ïz˜[Îò):« Êš–($pˆüsü<ÐHëeUgÁùÀ ëÎ@üÅ5RBåOËëÛëS[Z΢Ib@rý‰qM!äÈQ·¹9¨¾¢¾¤±8$eÛ½§# gŒã×ÒªÎ1Œ)Q°(íÅ[ƒlË(+€HÇâcR†‡ì®ÌŤfÃêV8ü….f…s/æ…*@ý)UÙ³ÆEX“ÊAˆõ>”Ç(«…ܧ{†äfaO.‚¼úÒ Âƒ¸¦W$Œäqš-p°“·M½)‘Œ©é¼çšzaXúÖ‰Y*Ç€§®N©Œq Né<¢˕ʟ©íSnÉdPCä6Oêóü*e‰. «¸Œ.î}ê…qÉj6ÕX;Fp:ÈÏjK6–Õžì:/˜¥rX6FyãÓò¨-®%„1ŠWÆc^@­;x[§}È$+•’L‘;/¹õéYÊ]œº2+{´¼º `Â+…çËÎÐøêAéœU¼Å;?Ÿ(r ÚŒÎON˜À qî >õã¼¶igµg¿†0\:*{œcæPAu%¥³\A4aãfe‡ÉÝg O9ü;u¥ô|‚ÀCeu3îóÔc¡ŒuÀàñÉü*ÇÚæ•d{W(êAX'Œ'8ìs“O²ÖÓQ¸)åKbB“"y«åþÁÛšuÂÿh[íŽ+†(Äm™‡Ê}FNE\©Åõ)Å>¤òºÅ†!ÙÝA‘"„$…ñÉ“ëÿëªv÷°Ër™¤‚vÜdQÐ) dñ©-š§Ë¡<Ï0²Hàò@è?Z‚Ó¦‰n¤F¤u_3{dd#œ€y¬#ª±šØ|œi+, eŒä©$žøô51»7Ríod‘Y2cÍCíííÚ³.,Ú;Ôòƒ°~ ;ž¸÷ìE%•ˆ¶º[«“nÐdæ"¾fïqÏëIÅ.¢h¸íyr‚n&II.c ¸<¶3Š|Ó]ÙNc¸Ž;ˆ]Œhc”9\Œœõüé€íG†×ÍtÎïß áIá@9 Å: I²Éu…gùcÂ/îý‰8'#¶E8¾Œi؆[TDŽk«&Å~àF,XöÈéÇf’Š(ÉEÊêN3+žÁàã¯Z †Òv¹2É,kˆÓk«û‚yǵ2Hc»”˜g„ÊX£ ù ÇåþUk̸¾àë „Ü²´¹vŒG çÛžµ$±E0Š+—½®B²ž¾Ê§àiÖVÃOš7YÀ$âxL,…Æ:†èX˜ãÞ¥ŽvòÔ¬Ž¾üˆá™øèÃŒ}?ZU-} –®Ã9Y6Ëoæ[³Šið¬¿R¼×¥8³[JÓÖêÄ*1Üú¤~´’Ü\L˜±ŽWãs–rÀÁl€sIr>Ù§¤RoFãnÜrqÈ=ú ¸{Ìi6"\«GòQCá—æyÏ={Ó!™cÀ Û m§Ž Ï¢4HíŠ\[ùmËK0sûÕÆ3þñk²IpöŒ÷ç“¢ìå» š*%-㥡œV./­Yð—vÊp"XÙò§´Ç3²Ke¹·h÷É?6â0qÏ5¤iIî\c¦¤*ÛZÅpò(óÂvÚ©=ÔW;ͬf?+¾Í’7Èô94—V÷GË’ßS2®d‰fP€?…0{t?ʪ[Ï,cí׉g ƒî@À'Ôšµ8ÆÆ¥¼h!†·„ÄIfòAÜØ;¯|ÕŠ&viSsˆÙ]þ‡žqžÔä7 <Ñ,{Ž·>Ò‡ÐúÒË Ü"G;4RF äuî£9úÈÖ~òò QYmn/˜Üb ÃÐýi %§c=®I8Gú~_J¾±Ú¼¦Œ€;UÇ_›<Lö¬âc˜4s$›b;Vh;uÉê=»VŠO¨Ô…´¸Žv ™È$ê8<Ö¹XÚÍüÑ+m*ˆ,‘ÔÒ¹Û•צu+-¦BÄ{ŠÓµ¼•–V›b–+1Œ‘øZ­$SI¢sÓ”&æ Žr¡'ø»õïTn`¸YÝf¸ä€¬¯é‘žGÐU¸ã’à© bB±¬Dd‚s—äò}: –_%ŽXœ„6<³žTuÏAÍJÒâºX±}˜ù±²AÄŠãû£Óû†hæ_+ €|ÊÛëìi¶’+Ǻ¢.Œä€={Õ‘#ý„*±}ÃJ©úüª\“2nïS.ä>k00§80«ì9ú€jkSqöÔ t«ûÑ R«ŒŽpõíÖŸ=¨¹…£s#±`ÌÙ8è9âš–áTB’‰µPx¶1ŒöÇjžf;ÝX Šu(ÐFÊíæ2íÀ89ɾ3ýh’(-QÉa‡Ìù@ Î@öü…UiT*ƒ+F7`¹cžÕ`= YR@Ù`áÁêZWЛ2¬¢¸Mñ22¶Ó˜H`I¯NA1´ÇŽåHë*†o€ìǰ\|½zç¥I¯—1Ê*`•v°=ŽéÇJ&šÒé\©ÝŒsŽ >£±ÅR™\Ͷö77îDÒ(†7Ý$@}ý¼Çý3PjrÏtâåpÁÈâ1÷û«í[A™TI燑ãü’»¸ËØðs޵X°¥·xË…Úd(8äàçUíl‡ÏÜÁûQÆnQ¦ÞØË±b:çÖ§žâ%É*Õ!·,„}*äšd×ACʬw–0vôéõªÖú@žc¿‘dy›[k ïŒåš9”•Í4z‘G4ÖXÍÃ/ÊT…;?Ó¥-…€|Oqx³,eqãÎO “ÀùU±, Æo.x$,bv ã9Án9íQÜÃÙ’)ãŒþñ¢;C9ïô?:q”EtJZuºfE’u•¶®Õ InNÑÓüŠŠÞÌ—”É$ÈŠ€(9_™ì} GeÛOwgCûÈ‹?Z67Rµ¼%[',TƒˆÕûL{æ¥AI½l.Tö+À2Ÿe*m}Ç*ô>¿J‰!+t‚&šÜ|¹01PFq’p{ÕË´ŽæÕ„»Ô âue‘Ï$õª·n-ã‘á¿-À 3rÀaÍL é½ä5Ê2ìÜ\ݼ çånç‚rG¯J$²ƒj›[‰6íóñ¹½¸تI?ï•ÉÙ‚9# SFÛgV,9é“Ðw¯r½ë'‡õèí¶Úܱ|G¹$Û´ô ŸJ]KB[‹é.ôæ¶IdO9"änAXQÝH¥¹·ŽVvÃ0‘ƒ€9Æzd篵YÐ.nP†ÍnžÚÒ#íØÏ ÏlÖ‘•×,½£ @ÔX&f¼‹ïypàœzÛöª–3¹>TP½Ä ÷÷)>_¯âµ¼OmÊ­,î—„f6£‘÷•±ÐôÅfž+’fEÜá)§×ñªÒÊ$­ ŠvþLd޹õÆ94ÿ6܇S{$r0ˆÈÚ=ñÔš!îÊòAgv[ùc¶*®ï˜í}ÏsP\@)½â-´³4|íúã¾:ÔS1Þ<¥y¢ ’ñÀéÏS¢&ÓYOq··\gœQ*œÎí ¾¤ãMŠF\;Õ§ŽÖ%bß–ç Þ’Ù Ïϱ=M,쑆+‡NzSiµv&Ûì¯.´cªŽª—VsO0ap|²9ÇZu¤åîw`O ì€G¥\Êí%O>”Ð+³f´³h¤ËÎAn¤TFPç$.¨© +&pCppsL•Ð{TÛ¨…‘ÈQ±ÁÀ銥{#ý•å8 }ñÏóÅ:q0`cC´ûT˜-%Ëܳñœ*àŸÃŠÖšÖæ‘ZÜlv­åÛªù~\h þY$®¾zy»jä7©=ñ§¢Ë,Å‘°%`Ä```tý*)\>¿ŸJÑ»"ÐÙ%Ëã?1çozC±ÆÐ›‘Å6yÜ€ÊÊ„#ŽžÿWòò¹™˜³Ò6Á–÷>Ô'}ËE¤PÓ91³>9TÏ îGLâ™y }‘ÏÙlÒnÈ<O@:‘Žõ w¶–$É—ÙÄl3æ½ÇùzÚù†—ü½ß˜\ç±a“ôÇU&îVŠÞTÞH–1÷¹'ð¬ëè™có À/·Ð"™a&BC0ãó¬ML©)S”;³œç'ý3øÐ‚2e P¦BOUûµ©"ªïÃma´(éœõªp.ÉN“Ôý3S0&Ld’Ì1òçØb“5L»i <³²2‡Q´gŒ}=*À¹Q"ǹ„«×¨ z祠©q÷©Êä‚G?J†êäZ‚âC6Ù9zqÜsY5} ^¬eÙ-ẫ.xÉÿëÔvÖ6b ÒLŽÁHbÒp§èzÖ|×ŭʺ¸gfû͜ǚ¨³uf#)ÐãšÓ•ؤ™¨R0ñ«°dÎ ^*T29\" r£'ò¦3ÁÍA$›ËCX¤Û#VÈšB¤žŒ+¢ÐnVâÞVŸïG‚Ç@?*æ –ï’jHžHÈ1¶Ò=;×E¬ic{P¹Xdòcnr˜ãß"±v†‘ðœÔÙf’bF-)9-Œf¬G•ï.il Xj.Sp*ОôÞ=3ž•<ð2•Þ¿1@ààô5]Y|ÎyϾ9¦™{–á·{„;¿¨‘ýjÌk4eÄV1€TŒ|½úÿ?j¥åÊ ÆÝ¾ ŠµhØÐ‡ ð3ê3Þ‹ƒEì ,Ù†ÿ5JÇ˃‘ŸÊª¿•§b¨gA’£8Àçõª¢âRä9ÇÍëΤSœ,¡†G äújÊmìe&ÐÙQ¼ÇÝÓ=øÏ½Gµœƒ$y⤼“$¨‘À§ÿZšŒv%F 0k?2 ÖH¼‘10l¯p*$Ξ¨YÛí ¹2äzÓšv2Ž˜Ç4ùXìÇI!ŒGeS·ú ®~eõ?xTM7]èÓ4Ï7åÀ\sëZ(X¥è!Sƒ´nêzÕRŤ;È$qš{·Þ9ö§ïR l‡zµ•‰£õOR…,UTÌ@îOJdn7¤w(s‘ȼ”`Àž™Îi–<Å+.äBÄ{Ðönð«+*ýèØcñÒˆ[tjñŒœç§ŽT‚bsYJrOC'&™X T’[¨£¹ eœ{c¦}³Z–vVòÁ4SIöŒyЧŸÃ?¥@Ò„ÉÞI%JŽ{…6;„‡ÌdAºUÿwýÓÔTÊM l—Q½‘ïÌb¹#g™ÆøTjà¦dHßœäž ¨ÌêëóõhsÐT ,st©Îܺœ~)Y´M»/nWošlc) tCßàŠ…3å–‘€,3Jº-çµ™<ô¸d2ÃŽ=ý«>@]Žï”¯SŽ¿…]—)VÐ+`¯z]§r"¼dSJ„]ë’5•ÃÑíöÆ3E¯°Zå‰ e$‚zvÿ¯Unã<'9ìrj^ `{S¤A* Ä S‹°'b¡ØÃuÅ.òì7‚åœuÎxÍ(„’B‚HÍhQRyÍJªžY–þU2Â9%×>\‚~µ-î°ÆÏã@ÉbFu&4ÀwçnÂv·¹ò®H²ª… 䜊ΎB“#œðjØF¸º†5uÂŽ1Àç^Õ2WNäµtY¼[®È¢Â·`ä6}ýª²MTH©‚G\ät=*¬Z¤Eå¸{ãn ´‘·¿n0AM¶Ö­Dk“Ý[DXì„¶|𢗳ièÉå} ¤3 r"ÝŸ”¹vSèÌ{sš„Eub„jÝ÷–Ü Ï#“VÑíÞÉuÌl¦7,ç,3žwuö¤.‘¶6nŒò@\îÇ©õ´Ý=.ÕÚä/;c1ÿXH‹v$ŒHÉÇ=¨’f–rfóã v4‰ŒIê2,Ô“–á•`F›ËÝæ´Œ»€^Iê3Ó¥@¯æOÄžk"ã¢îÇÓ$};š™«4˜šè(·„£C ´;ØGmû^SI=¤R:1u…ŽÔ™@ }ˆçô¥¸³’ß2afÇ;îÈô'øqïO‹r”‚HmØ,TýÀzóéSïaY•ÖFƒjÁ(ŒŸ•”¤õ#Û½W¸–ÆÝ !£ó L³€ÀÔú¥Mz—6‘»¥ˆ’BÆ «Çaž§9ɇ!Uh™%‘Îà[ÌÃCŠßÙ¥¹¢‰y%·Š}–zsïÄÎÀ1>ÉÈúTmî%Šâvu‘fù”°þO#t«±2¬‡ËbÅðIÝÀÍIsl@Žc8ÎñÏ=ïÖ’¨¶cREwkv©ö™M½âÝÜ Aé8+íH¶òÎÁn_)›¼øØ2“ëÒ ‚ÜÂ9­ä˜K…@•ž€cŸÊ™ÜY±ˆ¿0Ê?Ý#¶OáÞŸ´OF5%Ô•l´B9§>ý̸öÏÿ]1ôõI.ZH¢Î#ù‰ôÉ=3N"3y€+’:‚¤u$pjÙ¼HÐÍ F†Mù`ý: vôªŒ\®;ܧ=›Ï ¤6jáÈØë…ŸNôÉ`{+¸ ´’Hã+æ 8ÎìÏ~jÔ—QD|¸Ö%FU„ ö«6Œ·äMx…åÚ;z±8ÈöšyO”I´ô5uK»k›H…ÌÀJ@WÚAn'ž:óX72­ýä›pf˹_ï!àž+W]³ŽK(Ê"¾YUš3–~Øã9ô¬Ûv½´·òÞÌÜlGÔ{¸ï€FA=°@­*Å]0vní•縼¼o&ÕY¸ 9,ûG@=*œV²³€ß0Æ6¬G#©8;ô­£åÛ£K&‘h”n0M#möb­ÅY–y ˆImi3c.þArŠ1ŽXž§§·5[‹C(5Iå`¶—3'*^(Ëë†Ç#Þ®Çcyoc…¬¤v!Þr¨Jž ޽ªÄúŠ^‚'{¡¹2$óÃõÆ@Qì?¥E0[Ζ҈§™Û—a÷_¼OSØS÷R½†ÚKa- ¸ åÉ$N&\%ÌdïÎy'¶:S5˜¤·¸7‘1ÄåÉÙÏõ§Ë§A,O$ó"#9 F÷ |§ ÷ªúuɆ©-î¤sÌ&0ñ;{¯`8æ¥(|H•mËkrí#­N²°Àò÷Àrj {1‘"9|€ýŽMK%¤ñHcy†2.ÿÇ•GvE¬6q±™å F@sŒÔ7ðY‘¸M.~ë¨Â~umm­MºMnÀ¹<ã¡p –¡[ýSLäUǕ솚¶ˆƒìÒHÍ,qÁnîóÉ-ï‘QOݸ/öÉe|cfÀ7Pnei$±¶( •*¹Ïçüª(æx6Âñ¼ŽÌ9UÚßqëÔ±³4’4`‰æ¥Œ…¼{‡,ÞR”€žqRŠ;g— dcÏÌÀqý)#-š]û$o5‡bÞ¤û+mÊ#›\Ä6Uv‚ FqžÜZ¡¨À!‘nN |ªs ÄŒSç“2ªÆ<üÇåä£4ß¶-ªð»+cy1o®yµŸ2rZ#¶@Öê4, [>ýj®Y€TvùŽÒ¦ûBII….ÑžIçðÆj$+”È…”e‚îÁ dÿ!Tµ/¥ÑD[K4ƒ/´e·:kJâpŒì«‡åKrES‚á_{ÆaÉÍXóaTžÙÜG'ßž¦oRkv i*¥Ã$ûÃGÎv®95KPu $jTJKyÀè?•L®Ím!ibd.æ¶<ÐU ‰|æf ÉUǾR*(²ŠòÝGðœvdŸ­_²Y^o9ò¦,0uã$gçÚ¨[H†Ôf6܆=‡R¬Îä)=C›NÄóëbÕõÊÁci `dÉRNNOóê:£<òO86Ñ‚&çæúæµ 1O*á%6˜Ûž{çŠ5[TŠ!…ØÒ”Èù}??jµf;«™Sÿ¤Ý#Fv ƒ‚jµÄYÆ=j[›vi pÝéQ”s)ÏLñT]†F¦7ÉÁ†’Q½²?*˜£g¡Ã¦™‚³–æn÷&¾¸Y® ³UhKP0 ªBœñOɸL® çƒMV ‚?Z¸­ Ž…ø·È k¿'¹öªË$»V“ÐõëššÝ0êÛJ‚yÉÇÿ^Ÿ5›;E+S»å=1ôë@ÊsI#àñ‘ÔÕ»†>^v…$“îû}*$ˆË…O Þ‹‰ rÙÈ㊙ö3ã.í¯“€:zÑ+ˆ§OZam×åÆIäúTªE渞dô sÇ亴ÙY`¡‚OcUäù”‘ÉÆxíOóÙäûØ\Àô#ÓÇ0G Æâ zûU¤4RúÓ°1Çz™#26BõÏáNû;£í :Ö·6KB |§…Æãž ?wïša#¸æ˜‡)Ï8ã½J_.¨:w5 ·Þ­M{¤äeHÍ&7±,ѯ¤?ÍéŠzÛ,«´ ²ôÁÅ€eunT•€"™*‚Ù*Ž~^õ…ÞÆ$²²¤›W‚  c®_Æ£§pïùP’lÉù›¯§ãM’p3Ô¸ c·½$¯ÐV¸n&-¨ÝÙüi·,gmÎÙ c þ4ÙX܇ƒÆ lêÞn“euiþî %1EÛÕˆþµKAìCgr$a<‘Êx(àqŒÙªÿiÒË™Úì‚y‡Ì~›¹5YG”…äùˆ=‰up%h¤m¡bÇÁ'§´Z†…5Lí FHÉ>Z–Ýlàg´ÀwÊwgñçoQ¼kÉöù’}ž!¶$ì€{tª,[³ƒÛ½hµÔåˆçN? |¸|#à!XŽG¥$`bqJÁbÁ‰ˆàïqœ~4&è[2FފíWŽá‘¾\úqV[Ëò° ОíU¯Rµ Û#ܧË$²”9#Ýê¹É`[O Ûñô«‹,L‘†P®2CÆß¡î=©»š$s‘¸Œ…èæHHIlEÑ• åC#g$zR7bäÜ¿0`ùÀõ¥pè–‘Ú*@DŒ Îyn=8˜Š¶ªÅÔ­ÁÜ‚2>Eu³ß鎵*WWb‹¾ãín™S`GÀ€¨¤vã’}Íi¬A#Ÿj¡]íÞ3ëôþuR;xÌ»Úwh™7ÌÌOË'r `×ëR¤É5цÝËm œv˜ÇšŠr œ‡É¨%kÖF•9Ïð*1½9¥C”Ú”ÿiY¤:6ø›2+À%r2¾œñŠYR0Ò*4Š]Hò™1å䃒2HÓùRÉw,1KŒ¯^AÈàõÀÎx£’ÏC)$ž†}ÔÅm"An’´'÷Ò»œ`ô­B!·’@²:D ùÎsŒ?•]KØbÄ„ BF@‘~Vèw«ž:UË…ke{möðK û²áwdn„|ÃV®Z¹nÊè[éQI:Döø”XÌlGPNzã‚ùTz­üW°2#áG, Œ¶~¾äçëT“uËýšïj³“½˜¨eQŒ¨ÛÓØ`²¶µ»™ñ;[1¢u× ù¬µ%†ëÈÖ3ûÇùÙ pØää=±õô«E„I$a•÷y`±RxçzñTï®B[ç•IÃyE~ùãž}ê»_[afGÜ»ƒWÜÃÆ p1øwªFÝ’%6É®5—¶‘P\èDKn©´Æ¾¾ãéYðÊÖ—RI–.XÊ·+7©Ác‘j¼º„W%LËæŽX$¸P8=zŸ^‡½(˜GD×w Q#mòƒo„}ja5šŽ-/R­ºC4,W*ŹU‚Ù<(~ê–•äm8‰§Ägl!˜žy'±ç ÇAXÓYÇ2nƒäŒýà8$u9ôn)\EpÖ’Ï"nÚ÷Î:U¨©jU¯©:ÛÍnèŒ'3[ìÜ ~#ñ¨g·šñ5ˆ«DCDp<ÜŽ>•-ý£])„X´O‘òÀA<†F{æ±n šÔpÆ)í'Äœ ƒŽ@<¥J-Ü|‹sibšÉ¤DRY ±nÊ3ƒÏn½è±¬bSå­¼ñGL††ÛŠÎiÆW]HwNä·ZrÈŽ-LM¼o‹ÇÄr}??J$°dÍÐuYeˆ++@ ŸPA«Ç%¼vÑÇ œÇ/ïZÆÌg„õzÔ—@ì‰÷£Ã4„‚Šp3Ð~¡h¬ \À‘y7Àœ…è\ƒ€Íƒ;ÿúë]¤ºs ŽTÈ ¹;Ww@FzñŠ¢5ó"ó ,\…bɵX¼õÉý*5šh¡’2²ïÄ= ”>ýñíYûÛ¢]Ë–nѦn,çu³žÃŽ:Ñ-¼\’NÒ ‚YÛPü½\úSZ»bßhr4Ä!oO|Ô·¥Öž·2o ͱ&`=GñqRÛNìLnb@°+ì X€9áFqüéå´c&IŒ“"¡Ü?Ê¢ãî¥-"³0òÎÜî9*}ÓÖ¤·”ÊÈDLT¨`Àð=$ñéRÒ°™¶Ø$qlP¿Ix@Þ9éõ«.bÁ’íÜàIó1$|™#Œpsß HÜù¯"D~w} ”öcŸN‚°ä’1rÐÚ©’YdÙ½†Àèª3Æk¦“û‹‰¦g¸¶.líã1/Ͱòp ç‘Ó=ª!®J²–k†Û‘œõéëR¤íamž0¹†LH7Âúýj5ò¡¹ûM¬R>üçæT2À~=h”ÓèBNÉ!‚xŸ’C±îHÍ[šö¸QìÑÂ9?¼FA5RîòÝ%VšXXƒ¹Ó‘Ž9RkˆÚIÕá —<¸]Äv‡ô§¹’¶ç@ :Ÿ"ò4åÚËò©ô\vïíU“O†ö<]¼~c§îæó9R?¼søÕ[4·¸°Ùöd’Yräîé€zÔM§yI/—,À½r«gžü~ÑIÙ‚’Ø»%Œ·L“Ζñò‰ßÀ^‡Ò«Î%·PƆàdIæ íÇNŸZ¢b¸žà„˜`3¡P>¿…@ö×Êec¸¢gtŠÇn>¾ùÙ‹•u5šõ­Q ÊþiMßÝ(¹ vÅ“ò:cµ>Þ9&%R6f*\…àw«Li–`¥³Ë$J× ùûÇð£‚3 K¾:íÀçô¨Ìßg ª® °?uÇn)>ØÅíÌm¿$¦H"58-ƒ×ÿ×EŠ I¼Û–wn[,rsŸj’U?#n»æ«D¡H9äTóFî{ã°¨’Öæmj=ܲ¬ƒw–¢4Ç÷©î&uà£ÀãËyã£}ÞO±ü©&0Ë(SÏÒ¢V!îDû$wcAœqÏ­FëáIcëKæn„–<Ž*5ÆvîñT“-`UL«6p¤Qq$ ½]¤þ%ãU,q¾ä÷T13n ‚9­­ÁrìJä½jO$€–ïOTeŒ‰==éÒ0UT$äH¢ádG–Î:O°§¦wàqÚ‘ ü±»*T~4èg …0Sèi=…'¥‡|Ñ–.¡½sQù™_˜ç=©Ä&q4…›Ðt˜Lg°§^µB£îo-ÔÏJqDpÌ ŸÎ˜‘cïœ}4:ˆó»¸ùH£®èKk¯2GæCÊò01ÎOµ[»¹;{$²!™1·‘Û V~]±°pT`òsÚ¤’'DLÁ$R8ÍKWzŠÝËm‘£XšV1 ÀŽT¥:&7 æ!º£3€Ì¾€÷ã·Z¯lŠg̹'ƒœãÞž$qpg‰™Þ.w"ŽŸÞãü)4 OCûÌ|§yÏ_Zƒx?Z–âgu(ƒhc¹€þ*Ac‚>µ¬S¶¥%¦¡“Ôçžô£;p9¬4*°ÆI¯~i|’ŽÈTg½RÔ¥©  ÛœžÕ!RÑ+·Ì1·>žÕ:ÚÊíD¦Gsòmþ%ÿësZCÃ÷ m,Èí Ѐr¹îü§ó¢ânÆDx•ó5,z¶ -âÇ®UÙPêÇÜjüjÇOƒ©"­ëN#v…rˆÊËXö4Gõïß>ÜUu¸KEß ”!\þtŸ4u']Ê" qIÒÉ8S¼¿1“ž8ÏZ±skq©\O}q,‚ =ËEò ò¯Ð=sVå“p+g mHÉ’y#äüÄgšŠêêçÌ0¨f X)¸ôï~5¢¹ª¹vÐZ3'È öžk  ;{‚?úõFêymo¥I8EßÁ8#㸧Eö‡‚á–inÚUs‮6í=8çñéRÅqer®³[æ*›IïŽ:úš‰ÊÎÝ n̯-åÕâ*Zùn¹— eGAÏQê*y^[]ÓA ù@töÏ|qQO`¦LZÚÛ9ÈÌi3´˜îvŽ*hmð6Ù ó*ˆöázzÓJëF=Χ}f«nYD›·+0R;=ª6†i¬âºfà³bgÚŒîõÉ­;ËE’ÕbŽ(žîÒ±´Ë(ÎÕqžø< ¤öÂþ(×÷ó=²²”SóôúòŒ]ÚIìf.ŸæØ½ü$€Ûåÿ`à5&“o.·nòä(U+¹Ç8ï‘ëV¬á nB|ŽJª·¸$œýiC/›öKXÆÅ—Í å’9À‰>™ªæÕ¦;²ý¼ï(’F–9·åL.§$v öúg4ɬI'6$nÈùFéæ¶¶=®’n.tuC·,í'v¾´›MŠ+“ìB˜RÇû¥»uè2M6K§ °á”cj.3ô¤£mÇ’…¸Ÿdä(I[ùxÞÝs´~xi$s‰Ý\,j<Ð#=:dç¦{géKöu¹™ÓìïtÅ2Ã~\ =;sUîl‹]Jfhâ ÙS#«I»ÆìõÆM ›–¡Ërf]ïÀžL,»C$§2wù€Éœ÷°¦Å‚;‹tR±…Ož#ݳØúö>”¬`ŠkèýãFŒç;Nr0ǽKc&œ#xí¾Ù}·ç9Ä[sÜzsøÖ±RŠÔjéjVû\~AF€;³ %$ž·<׊µÒ]iM5ä+%¬d œ.Ö“ž‚y#  gšŠV…®"UÓ6#qV¸8ã³c¡÷äÔ¿ÚÑÙ›Amlö®X•i½OMÇI«YÈwÐ~Ÿ2ÂòE$£Û¸FN3žGÑH£XѼ¸wMr‰.p¶YA<’q’„ŸþµU{ϳ Sgb%:„i Üär*X¯>ßxÑKag$Ó‡3ºÀàg$‚zUA«nl¯c}tèâd¹Týæw[Œä±`uÿXöLŸéPÄÊÀ‹sÇø^¿‰«K-µÞ٣Ѣ”(`i2ÛFAç61Üæª­õ¹ÙÒ¥v=Ü’Ê'ƒÛëNé­Ê½É,í%:uÒÝ|ŠM…Iÿe€'ƒ=i&ÓÅÝàûI'd±H›ŒgáG=xïPÏ~¡òÀƒæÉ¸WÏ#$6ÒGNÕ©輑fb±ÞÇó[™n|¾þ™ôÈâŽDÅb”¶³}²T òGµÆ8ÈîWŒgµGym–­Þ¢9²²/³žä¿õ|êa§Uû\hлK˜™''.œOQÅWÕî´ùî6>)Wm­¼ÎuÎ3õ©p¶¤êS’4\ÝÙŸž&Ûò ¸=Ç\ÿ3ÌH)+Ë÷áYYrßÞ'ªûŠt0ü‹qûÕ·q¸,c9në‘Ȧ’ãtžEÜ¢"Çå¤i‚»½Hûf³ŠÐk°‹sx—2A5ÔÍÁ‰·)Î=~õ]šè5¡S±p.X&LzôÅBÖ`ÛÀÒ@UÂÍ<÷íâÌdò󸎅~S€=À¢íu ³.}>É¥‡ìNÓFFÖqLëƒÏ¯jm¾$²"ZÜ\Fdmˆýž¼ÇOZØŽm¬äŠÊdòŸ ÄÇËR;Ù<çÔÒG§Ú,j"Q(€yJ–ü221ùVжš¦¬ej0Ëoe£!{©›r軽•28 cq÷"ª—K+W‚HeI¥Û"4ˆ@È=F}²8õ­FÚïPL[Û4n1"þ÷OîõÁìjÍÂÍ,‹-Ì14¯”!“%ÕsÛ°ÏùÅ7UnÊö–G4·3¼8fÀ% {U‹Sv±<ñÄÏq¾@7qÐÜv¥}eol.Š'—µƒÅ™B€0FãÉ¿¡éPGCm°yÓA+ad‘•@8ê\~§:åº:µÑ,6âKFÇ X~xЦByãæô ÔRîf‘%¤r¼EIÇ$qŽ˜©/&’ÓË’áD’Hw++mÛÜ‚=Nsšq¸e28`²®Áæ—ÉlòFy5ôbŒîõ&•IWpŠøGïqê@~¹§O'ò$<20ÀAî{T&Þï âG2.ý¡yÇLàuè*pxü†d”á‡/'×YN>õŒäµÐÐŒ x†+œ†Àû ζ’YîæÚ6CÎèß*†'¯ZkE%Ö|–`Ñ|ÉŽø•\·–SG;>å È9Ç©ü=êyZ@âÒ3§˜È€ Õ”IIJP¦ÛÆK¬ƒ–YO±œýk20ñ!/Ÿ1NH8!…]·#JÊ¥X -t[K#KhYYÎâÞTª€rì1¨Ï5hÞEo «Ä’‡?+c8>½ý+:îàmMªv…ÆÁÐô–‘$¥Þ"B¿2‚@lzކ±’±›Eùî ›vZ¾ÖáU0H?Qü©‘\G*ÈÒ©PäœØíƒÅM”šhSm¸P…̇«và¯Ò’ü°‰áÁŒÓ¨¾=? ¨YJì#bµ‚ý–ÝfŠÍ$Œù'ŽOøSÖa6ü 62Hé펕CW™]!äÚ´,—uœ‹•#‚ääçŒ{gñ­µ‘l¡+$c)ó #cÎ*µ‚D.î餜àUíZ@mÊ‚f;‹ƒòŒâ³lЮ’ cš#Yaå6åÂHGEèOãþyª h`å•TðYÏþ´—’ÊH³Ú§{¨œ.QHÀåÎ{u×±ü(W M¼¥ET–?ÝåWæPAùùï¼Uaj`¶diVA¸Ês†Ç"©Ä¥•[sdãÓüzÓ–Y I3E?.À89Á£Ši•ÌBcÜåOLSxØÇ¦:UËtYã‘N ã=Ž{~4ïìæË´³<þ•W+•ÙÝ2w–à*È ’XqSéÂ?¶Æ±™cÀÎx>ŸZŒ·x1‹½qIèKÑ‹´ùy'j áPHTüñ; 'pùGøÒH¬ÜÁ†{õ]¤$Ú ±ûǨ¬¢µ¹’܆Yæ¾p8à:SÖ0ØŽbÀ…Â0üð}½ûRÃ^9*¹F2Äúf·7µÂKÇ-<$òr{éÅYµÅË®F¿Z·}ÌrìS±œa¿£å·8ãÄËq³ÇËÇcŽ´âÂ8öõ“¿Ö™âÝ9þ"éK Ït÷Ÿ.¤ÛRffjh¤žÁ#ÆàíWˆ`;þ”‘I™‘ …äí⇀¦×IQÆX+}ÓŸ×ëV=‰$”In¾bn#"6Î Œò¨ô¨bÚîr[ zcšy2¼?*–çj“ü©ˆ¤¤n]œöçš5b°õ«Å;«œùH£µ[Ë#‰pL1º’ppFáÓéÖ¢¸ äipìKvbNsI«’ìÇy‘Ç,rowãçärNúÕ×ÇÍóc½V<Ö…”ût£• ”\—8íéA8Î䃜Õ$ñ‚8ûUb{w n$@ ö 2*% ù’n•?ÚH„F"A·x8ÏáQæå‹thÆ£|Ä€ûÀvúSn>Iê{àä¥#+(èvžôÂ¥¾cœt D¨@\ƒØÓâ12Æ­÷uóU±=~•*Œ!ü¨hDë´äŒŽEòÈ Œ{Ô¦ÛjÄÌè¡×^œÿõª°Ý#;T¤Hyçy݃š–#æ9Ý£¥=,TÛ‰x9î1QÌ<µ( Ùž§­-ˆZ«lïS^ ŽK`†ç!³ùúSa8M§¸©÷O½èMdÛL‹´Wò¶¾‰ãš™#"9"\dåÎÒÖ¬!‰–6ãÍÉÜo¯­,öÁ¡am¡‰2)ëœðséíBžº;”nPÅs·(ÙPAVÊ‘SÛ[-ÃH<ÀŽ(çÓ4ŸcÜU¶…8ÀÇÏô«²Zµ“l]òH±‰Wad G˜­ºhiÐr[A‘ó¿—;íÉlð íÛó¦Gjgb±.w;óêAn9*Í,Ñí2Åœ²ž"¥»Ö1Ãqc(€ŸÝ±bÏ»ø†yCXÆZ>äÅÙI4Vsg¡‹ïyŸ9sêFp? ŸíòÀ±‰’Y]“÷œü žvã§B)²ƒÕ½7¦¬Ö)(Ý”% Çö+I^èº~î)ðKÏêxÀéǺ=…¼³½…Þ4ùLr9 Îz`pF=3Khê±EhEÁxË0/<³×*@Î3Óš±uq5ÔŸh!Ø«¼9ÉîpLäíe¹2¾È‚ÿ˵³HÆï.5dh•ØÙÈlç“Ç9§Þˆ^KY!²‰DC’nvÀ#pîil£·šY#½·7‚ë—+Œg4_…¶´µ™„žl›°æL€G=útæ³çi¤÷#™èº’çÛO%ã\’!ÁPCŸÓ§½f˜®tÈŒM!RÝ8ooZ¿§ÿ£Y¬²‹c4íÂJí‚NpO@8ïž=*+›o´Þ,’*,©€äɃ¨ê–·¼¶Q!#OµšÝ¤i¥[¾Iç¸éZsÛ²Äè—,·; è;ðhŽàNÇrlr$çæ27ÏË×Û½bÙÞE,¦{›if“y£þèýy¥ ½…ú¤ÍV&wÈ|Ë–‡dqMÙëÛð§¿–.iÐÝ•?*1Xñ‘ÜûÐTwñÎÖí1|žXCæ·!Kà0\dm÷ÅX¼³¸šâGhchÒ5$† ’s·׌J­,•‡äÉ ´šx@DnTäûžþ„Ôq›ˆLïò›Db:ç§N½j¿‘-¶Èî¡h‘ Î~düþ¾â­Ÿ6K9fi¦†Äy‘&å'¬NH#½s½ŒÛÖÀgº¾O2êG•QÏ–C` ª9*8ûØŠŠÂÚáR°™›vѱä0çšC,^Z´ßïaóB©’X…¹'®jÀ{ù³äÛ¼c©œlÜØÇÞlvëÚºZoSM†ZË5¤m%»f!DKómǹæ"M<ÒKnÑ«;0‘Ÿ—Vî ôçׯ½FcžXÐÉ{oà|Ä 2ôëµHÏZaÒm“É4ò’ ñ‘Û$ã<ûT8­ÐŸrv¶Si«Å8ólœÁê1Œôö©¤6–³24A6‘c8䎃’:sùTúv ¡š8ã(&ðÛ°ËòöÆxE¤Ž9V?"5;C'Ì@e#?ç5šVWVW¸·—²µØˆæb ˆbUç=¶ŒJ£ö9’åTiÒE´pâ7;³ïWåºY`h,DãoËŒç–úôç­fj}ÕÈ”†¹ùf…ÉŒþ#îŸcWPÒldÊUåûE£¬ˆÄ«yl¤ÿ2 µ´ž)`*¨ëƒpsÛëZ…nm¯‚®³s$’ŽëŒö\œd{Ô·W› %.%‘˜îE¹$P§›åÉ>”^/Ýî+­ˆe•%´‚A$ƒ¤†È@3Û냞•ZÁ8––›ŽÇ!tÒ?#Im0·VY-âròaC®ÐÜr08×ê)â i§3Çl Ø¥¥‰æ"÷?šÎ)««n‚ÏËg–]¨Æ! 1±É ò\Lñš­TïH°;ƒ(i'îó×§QíVv}³ÊòYÙÙ¶0PdR0~luíÐT–¶ki ÜH¬gµ ˆÎ1Ï ŸakUï+–¶#ÔáigÞ²´hd+$#ëÞ©Éo3Ý!b9Éiv¿^yÇzkY,¦‚) GyA$·>cÙ¯n(»/¼,Ó&]ûÉöVØ›Û`[Hâ¶o-åB~r©+àñƒÓB@n.P|Éý]‹`{“ÛÞ®1Yd”JÌÂ'Û ´ã܇§—Ü7.íÀÅS“°îÉ®‚µ«ÏœÏ˜>C®H$ `ŽœçµW¶e1´-#YI`¬A'¶uäw©¬åh–0¢¡a!nT#§¹úJ»¬FÖYs-²,yó6lÿtzçJjïU¸ÊöSÜG¦[¬i‰.C&v¼å²)ö—Ö–ó´¶µÑM€]$xè0Ëô㊡g •3od'æÚ7`Ö¼è·vЫ»Ý×nBÐAëʥ˗KvèI=Ü’Æ­¼Ô²iÓÎÊc\Brwy¸uP¼x=8¬Ý+ü$¸_b;‹DØ#³S>sM÷Ûøs“úURn²Œ²3B…–'’L¼`qž9Á5a­ªT—“²˜ØzÓªO³=ä±Â2m$«) Õ˜Ž§ž¿¥>WØZÝFÛÃe;±Ž6K„4ÓŸ®*?%ìÖVyÑÃí2W9 3õüêܶÑ2H¶×>hÜ3’lf+ÀÁÇzõ]mâžµ]C/—…D*û‘ÏÕŸ=º’åæ/m=œ’Ä|Ôlyå$õ#îóëéO¹Ó팟9fpÌë…뜼sš©$v82HÏin­û¨Ò?5•sîxçñ5]îce‰‘x•÷)À.0A=9íZ·ÏD¦ù–…ó§’Eh6—F•†N:Fyì@Ôxmb(‰q³y%Øò7Ó>ÃÚ‹w†H£käܾ`ùÏúÄÏhèG­X1Cp#€ ±òÑäNHür¬¦—*!²$Ou"¿“(ØvÒíÓ¡ÎGÒ¢7¯‰,hb|mfÆUF:óÒ¤¸y˜Šî?ÝÅ!(c}À`õtúu¨e’ÕàRÊœ¨f, ²óÐŒþ5Ÿ*&ÈjEâ(„¾qhц2úúúb¤K¦†eŠxåŠàü¨Û·Œò£’jgŽÆ(‹›†Ihä*1ê02ôüj¥ÄëzRIm§$õ03ÔƒÇQV©§±J7س¨3&æxÙ†ó¸q‘×ô­ 9ÞÔÊåÔ°U íª½ÏR}1U4‘*1†Úã|D–|Có©ôϨµHn%e–&óàR¨„Â-ÏèO½O+Bµ‰ü»kÈÞ ÿgb +-È0xàpG=*;xd¶”äܸùIb¤œqêHó¨#»•Uìíà›¼|ǯR)ÒMºeçTwH¡ eúóŠOkEøŽØVeq#´Å';HÎxíTÖåþÍå:íŠBUâTù}8íÿפi¤òƒ4EíØí£À9 #ò©¡º–b«$3Ápë³|„îqŽ˜ÿ=*v$‚{X!(W’Çæ’RÇuäÛñ«±\ÞF›n¢sþöÅ·?‰ä{ÓF¢Û±2nà…+ÜàqÆiyi0ù¥43qœäp{zšÓ˜»—#Ÿ æË8ópNÕ|qžýÏ$þu\%‰Ãæ;JHù£‹¹ 1×Üôª äˆðŠáC±ùÈëÆ8Ç­Kné 0™„ªƒæ2C°ðH9ÎëWÌÚ¼"X-‚5ÅÔ^`ïå‘ÿŽŽþçÚ’îhüÖM ùv„;œûãŒzlÅ›Â-ØÆáÎ$÷8ð¬¦ižáI†3÷ƒeWÛ Á5šR—PI±±H·GnAó[9lmVãô©á¶™".ðñ;¼·Àúõ¬ë»üÇå€^D`«îvÁö­½­úÎ:‘Læùf!%óÔÁàd犎ïL7ÜíE?,lû‚{ŽsL #ͳ¯î¼ÉòõQcW›cÈb‘HqÉŽBT·øUÇ•+Èi¥«*G¦[¨Y#’A|lò¸~Ííô¥Õ7\¼k…ö’hϦ=1QÍÌw ß»i;Ce ŸÓñ­&™"€Ë8Ýå/êN8æ¡')nF·3á-Þcm9¯ãŠ¿#D&abŠ›”±å××ëØý+.Ìùv’AeÆ '·ÐU‰ä"Ù›«#t'ßÚŽn_tw¶…=R.-çš9ÊGüÉžÕŸ¥™N‰ÁŒ1ã¸>µP3…X¢žfSô•jòäÝÌ\2ªq)]¼{žÝªVDy’˶$P$“nà3Å6•ËIìÚ8†C,q—+g±Í%èxá¹Ùó€§k.GOn:ôâuo Ç”˜1xŽH…A Ûì·Bð¹Üû[ü8ì;úRØ{"”náUÄ`(êi’;DYAÉ#¯5"ecyH1Ú¸ì=i"-#…ÉôÎ8ü¨ó%»g) !ù°:šD+€»pÀu-Ä@™ù…V14ˆ3Óœ÷>Õši™­E¸šQ1‘Ÿ*žØâŸk? êqšH›k Ê€A–ëì¥aûÙ€o0ž1Ï}ó­Q¡a&xØBFrTôaSÃçí-º༜‚=qüª½¬0ÈO#ª€XªÇ’ãÛ°úš–ö_³¬~DEQF9 …¶{š~@7QAæ”V2„U B• êHõÍR–9ßÀ$tÈþT®ÌØ6ðp8'ƒQF0 ?­5#$‚0sSyŠ‹…`Iâ›’TùÓÒÛ—ê^Çžó×O¿9Í1¡= ì*MŒÙ®ôÅX2ÇëX7©“z“@ż‰e›$=Ži%wyDÍ#<ƒ˜žp*4¸$2玼 lkæ|§rz6:þ4ÜØÜ™-É–`„¡”¨;H•™U '‘×iÞã€qíÚ´LŒŒ¢7eÜqò’?ž%‘dhbb­"|¬§9ç¶ ¬ûWHaÛ;+Å$`üä‡Û¸9ïVô‹¼êfÊåã6·±ùECÁè2;­] ·÷YQ[O2#yÓ¾R[˜­JË5Ú¤—i37`…¶ôQÁ3øÖ=Ŭ°<±³Ð¶ÒÙêAíM€@Ò3\LCx·ÿ^ŽKò›€‰cD³ &-½Ù¤%Èè7vçÛ¦*µ«N—?;ˆÌJÌtÏNŸCQ\@æloŒ69œŸÈb¤”ê0Ù-°‘Ö" œyA~ãË F:kXK˜dR¼ÊQœv$Ƙ÷‰r¾L$Æ›s&[¨õ÷>ÕiŒwæ ™áxâ)呌–QÓñ‘ïÚ£»&(­‘\Ãkd P~ñ».ÜŽ¼æ³^eb%;«e'€ 6kXÀÛ³éŸñ¨ µÚÁöi!•L‡2;²O^jg¸†úÙ¢hcvG-xÚ›±Ï+ŽÇóÅLkt.!¿™¥yrñK†L{#ôÚâqÑ[ FX2²¶V4É2m`cå ç½R¾‘.­ Á2Xn]è?7ÌTç'¾x­gl‘´s¹•72¬±9ƒåÇçÖ¨-fl­&€ò²H¡Jþ'î󞇵&Ùqwwi-Äö„Ù¬€AÎáög$uúsOóÌ‘´€d*K$D«GQü'òÍ>Æò[éòF’DU÷ßžGÞÈñ늭&we%·ÚªM·ÄÛ±ŸëDd®ù5wqBbb²9#¯š»Ž=xµnf†éb·A²TÁ.ÄØÇ¿ZKxËÎfXC¶O‘3&ú€X)¯§>Ÿ¨Ân8Ø~i2‘ÓŒóšr‚m46µL•?5I­¦då¶îÙ9àšŸ|ßeeBŒ¡®šR>p3È;~žÆ§¼€¥¬k!†eøùsÔùÆ£[Ç#ï’R’&ÐY¸eÇñHÇåY^Í«ù[H&³žu‰ŒnͶRä|½ºq‘ÍCsk!¼¹¹ŽI@eÃoéÀqÖ›i,Ë1²Ûö‹Y”‘†ãݲ0:äUŸ²Ík2E ‘ÏlÇh› Iê ôôÍk[èiY=‰ܶò4B8¢*%#`’q××½U’Þf÷¯å .]<àwlýÜñVŠ¥ªÉóîYs’Í‘´uÎ;Pêv÷ž*[r‰j žrΪQv°Hû¤ gõ÷§î†XUÒ6‰ÁÚ¬q,0Jþ¼Vmò2>Q¶ŒÛÜ"üˆNV<ã•Ï9Èõ«¡âq„8XäʉÈo(ž§ Èü=*]ÐÃ#îòÄe9ÄAÏuÇ88ç¶*Â"›o&h›íäJüÌÎTv=ø¡Ë›Þï©R(g’âDµXcHÁi&R"ëÔJ¹okodÜÜB…S# ËPÙ¬û˜Ñ,Ù\ÜE#ƒˆ*¿}¤ã4¶òÈ%Ñ‚nˆ?ÌáëÜäõé[:¾ë±£žš}¢0€Ú† 9O06}ý†sP] EÒç¸Bà+VÝ€<|Ùä¯AÆ:Õ ‘gP’(`Ùl|òíèNy5 ÆÖyŠ0’A$lGš“÷y9íŒ×:n÷FJåC4×–Q&퉹ċ…b3µAîG4ƶif’8C;!É$?pâi÷Sy6›2¬­Ât8ç úÔë}…,®áB¡ˆ'¾zç#œV×q顪Ў EiEºj–²Hø$RÇè1ù–þìO¶Ù%,0 ³·vsžNǵE E ¼ë.bAåÇ&~éoAØã=iâÔoD–ÄFËØË•EVóîO5¥Ôvê7kèUŽ7°ÕV=Èë2zŒb¬9¹‰þi–Lçl´’pxõRû(- ±Ê’Äùd“?2ÿÏÔvâ®Á~©¾6Ëp±@G¶¡Ï>Ô®–£mìPÝZ9[ T (d NƒqUÑ™!dó ÈdV±ÐžÄŽOÓ5És$ÒF- ‚PGNýz°—5ªÀË`K:´|1=NëíCm- l–I?Òíí¦…§Œ– ±%G<òzëÖ ÃÜÝN—7îIܪÞX\w ÀÇL‚©.óø*û¦‹‡d;HcµHãŸcU®•¦oܤÒüÄö䧦Ö´ÑèR¶Æ„ZÄVÞõ!5$5Îõ §Ì?ÍIuw¼#ûFÚ,œmUâ|ÊFÞ™æ²nÝœùwm+"¸PÇ»ÇZcÌœù·;dqòdg€0îÝù¬Tžº™ª>Ãt_ìú²E#®Ö[…hK¯`[$ŽòÓRŒÆÓÅ&Á÷eTޭǦ Õ ‹w‚TY•Þ=̲2•`zìxííD6÷)‘$x‚ìé.ÜÀE.XËt.Tõp'¹ ™ÂÄó”8±œ¾¸ãšX4„•^xòS$Æ¥·6ß~1ŸLàT¢öge–â4½ ÿZ¾[¶{îQ~¹«rJȤѰPÿ¿mãœo^9Èê3U˱KB+[H­¥óöI2™-íÆs€0}ºŠ{é£k@±Ê¬ùdó…Xèp¸üh•<©+†ó(o¹8éïÏ?…DKY—¤Àn QƒÁ#ŠÂM§vg&ïr§ÛTÊ m˜evÀÏNüGnµ=Í£\Œ÷ ëûÔo”IÈõªµ½×ÛV@’ÝÆÄ˜¼Ã»9éŒ}ÓíSÚÃwæËÙdibÉ’&^3è}xôªz;Ä÷DBálíÌ1º\0$n •Í"ì+´¹>žõ‚ô%E2k}&;aþ“}'–Fãå¾ÕÇÓ“úŠXe´¼¡ŽÒI•º¬“ÂíééŽØæ¨Í)€ìI'Œm‘NÍÜoJ{I$1¤…ÑÈÞ@Ùóœçß©~bc'¸´“ˆažÀØì7+wç=+vÀ±ÅN®ŠJy2ÇêEgc}¦ÈÛ²H9aÉ#'>Ý9ªÑr®c`²)#k `ûsPÕö%š'|Œž]¦2@f2 cÔdþ•Pܸ¸ŽÕỊ̀ŀžñÉ5T­ÝÖ¡t·R0Ãîûgÿ¯Rû<вe_™á“c<äãƒéZ•ÕäR†—c¤¶’MFMÌûr|ÙHÉ$Ž¥G\wÇ$Ï/3»ÿ~N¿€ªv­¨˜]í•­¡ÜÒ!b8Rzdõ¤XŒ÷¯ï@ >!?ÔÕI);tC²oRí¼×¶j²ðùÌRLŽ>œTóÊñ93.y\Æzdäõâ„’1 ±—÷iôÉÏz¤gx€G.ÿ3ÊúsDlµBH˜…··\ýî­žääÕ%mÛÙ°«7Œ£¸â©ÌÛýsXnîA31¶ßÊX&Pà4™08" gÚ¹^iñ4[~x™¤ßÛð1é¯zÖ*Å£Jæ?.Uû<  „äòÝð3N!#™„ÓF€Jq¹Žvçå ç”·-=½ÜÑC*6ÖÁtS‚sߥV¸Ž5ekˆHÁå£I÷ôÍmsk¤[nÑ·—œ1M§kãØŽ>”ñ3ž6p"•wã•À8àñøVJ]¹ºf™‘O,_•ìJÒ™G‘pñ‚Ѫ• ¸Œzj“¸Ó¹ d„rÚµ ê1Üâ˜d†Hç‘ÙÕÜ…Ž%ávú·rqTÌÅ®#E cÆà?E+Èr±›§“vv–¶"žFLDvü½ÁÎjhX¬AÎxýM:;euß Ç«{ÔsÊŠ¾R㎴՞„î/˜Äãùäv¦I);€æŸ½#Üø 9ýj²«6Fà£ê#q$…W'$óŸzQÊØ‰ ˜*ƒ$ZŒHcƒŽÔø´€F0Õ©e¨]­)+!u(É·ï)ê*Èž9|æ4!}¹úwúÔ$U.¡QÓ$ÑSª„Á· ŸA÷'½'¨Ÿ‘;y,ÛŲg98c¾˜ÿ ­$*w•ö–î:{f¦ˆX…*øÏÞ÷úTfaµIº®zÖjNä©t-ÎâÁÕx.sÓœ`zŸ¥$Ÿ¼“ ÌH>µ<›¶€tÇãB:Ç·w<óŠ¦ØÛ."(ž¬xëP‘û¬1ç<æŸÊ¾xãګɸž Þ±I¶emAUƒ„=}êÌ2*1 w/ñ`‘»éš®ÙH'–çŽÕ¸õ5¬•Ëjå%”õžiË`±<üÜTHÅC`öÇ47 Oj‹bå¤m'š¡˜‘Ó©÷G=ì$CˆËn*€ ÊF\r?¡æ¨€ž;çµJ’É Ñ€ÃnGe>âœ[F‘“KQZÎQ+7œÉŒÆŠp‡ÜöúÔ7Z}ÜfYLlP0Žv“Èϧ«‚öVbÏ Î;g¯"­Ù"ÞÇ<%dÌ«ÉPXg#?ËðªSW³k³LwÆÝçvjŒ*p}kMlìÚ“Α%N6JÀn\àà€G\µQ­Ý¤aMˆÁìyë“íWrî™ 2ÂXùy©>Ë*®öM¡°A=?>•0´‘¢3…WÚ*QëÅ9ܘ‘ÉàçÓÓúTJv!ÊÅ-ƒº°Ã¨ zšBÑïU” €qž1ž>¤Ô˜O(~fý*¹“ Tœ“éÞ§žïA9ö$¹‚CpâÝ_Ë•¶žJäTýz©ÁÉx­´ÏtT€öɨ¶€H ‚ è{Õ'Ü.=$®8Æpz•­0’ØîWv1M b\«nê7 P$ɽÈ.¼àtõ2o ›`,Ò4Ó®ìdÆ:ý}*(ÞIJ³Ǧ>”*1ùqãs_¶ÔïÍ+eÊ¢îoôPûTq“À¡§ÔÊÙIFÐw8ç5WÍ c¿5µtÛ¬ ‘­¢¶wby@ÏsŽÇÐÓ-4ôóT\?¼Þ2s‘ÜqïQ%¸£ægN²Ä^+ˆž)Pª*8 í<ÿüjÔbæßMŽâ22·†Úp@#Œÿú«ZèÙêso–5•YfIJ²x<ðxÈÅT·´¶µ&s%ºå„de²xç¡^ÕX¥5¸ë—‚æ2mw#sUÜ}G=;ŠL_eFXÕ”üÑ­Àœç×:@‰oRMöÿgDÈ‚# ¨>ãÚ£‡"&Yã‘—R xíþyªNú2÷ܳok,f#spòÂNLjÃŽ8çü)Ò]^O¨‘,Š‚?-HíëƒU¦ŽG—jË$R˜«œ©OïîÒ«¶¤» VèσÃ×׎٥%Ö$»n(e{›ËkU‘ÕeÈCŒ€qÔ^1øÕ+›I|¹”Kç"–vmê®1Ôm=qŽÕrßm¡ó@ØÀ²¡ä —=ê ElÑ ¶ñî†v?Êé.óÏ~•„tv1Hɉö¡T`¹ù†Zܵ–Yí-Ø9{––)÷WpôéÀªö dÖÏ ÑZ³²ù™9ܽ¶«ÏŠ]BCe§™-ʈ¦!2ìLã¨ôu«“Mòõ.O¡¦Y)eµˆ*ÌH™£ÁP޸ݜ}qÍdßAslêÞL¦7]Ëòå[“Î>´Ëm¾[Ü#E½ ŽS2HxÆ{tçð«v&HfvYîõ”°„”ûݱڥ>] O”kÞÉcÕbÖÞB]]oóH ¨”2¯P1·ž˜àÓb¼ÊE½ºLS„0'Í‘Œ×ÔšQ†õç‚hü¸Ë>ç aÚF c9ðy©”›–„É»’É$ë»ÈŸ$‰$ lûÓb“Ë{‘¦¾eÊÙhN1ÁëÎÖ«[µ¥É‘.Žf“w”C•!³œ:ý*X­g6›˜Lîâ,òàåUHd pvwltÝÙ¢<±3Ü\n”yvèœ2àt8éÎjKYVX ·ž ËfD Wnî ÷ô&ˆ/eºŠá. âR‡r7È‘Œrxšj\=¼q¼I-Ó«¶ö|ü£-œ}=kd¹žºXÒrrÜ´³[Á$©—_+å)|¢[¨SÁôÏçQÏ}§$ª¦6äŒÇòg¨oLgSÞ˜Ék2K$Ç|Ÿ)y 6L’vªã×ðÅWˆé‘Y¥×•¶PXÞ]”ö$ÀªöÑJÑDs"»{Æ1ÊÖsÁ¸Y†6†<NOò«vײ]9[«ÕýñØò$3O^Ù«q]–†X¯NëÀ ±dóWžOl­s‹‹h¤²š8å–x£¨[põ ÓÖ³mlÐ7}EÃÁ4Šù‚+l¤rcvæa’ çŠG–H 8;‚dàMÇ<ò*Á‘¾ÎoMÌŽªëÅAÆ:dä{óS›1-¬mšC#—h÷„1±9%Xžzò3Þšwø;î0ý–úʹ3¯’1º ÇB ­’K·Bà€*¶âX2OÄÔË$«²c‘’Ãþú'?ýz<ÜK,0»\F ˆ×î3/soÆ¥Å^ÀÒØ óË%Æ@c @<ŽAÿkŸJÑ™›û>;“gö¬l8@áOLíÏ#ÛÚ¨\¤k$–ö.Da€vfÜO°lt}jìw ¤oö£ÄDÚØcÇã9Ï~õmò/2”¹S3£Ì1F±²p y=A䞿үŽòQ¶äòÏ͓Ӓ¤‘ïTî.íBù0Â#>YÉÈaƒ‘ŽœúÔk仑­„|áFÀ0¹ÌÞº—×N´¼xÅÕÉ ,*6±íëŒ8¤ÚØÚ„‘>Ð]ªÒFb“éíÀ§BÓ³[Éu²s&wÇ#Ë'±Ï·zzÛÛþö{ñ4–ñcÉT8-‘ÀÜx”•å.V-[³åÚ³³Á?› ŽÀãËúô÷¢ ®ɹ–2ÊUO#®â‹ôÇ¥V‚UXà0 GŒ·š¦C*>§µH·Ð´ð£B°ìeÝ&6‘žäî>˜ªqqÓ¡N-´•¡2\ÚÜ*&Îb~Xî Ó.þÇŠ’c•#%yÉèJãšµoq–‹Ë­ ó0ãv\ç©ÇaTåf ›€÷™WåÞã¯NOò©Žä¡>Ó¹y#pv¨AÆM açgÊA ‘DóÝÁFqž¼Õ[€°(òpYdÙ+òpñŒcÿ­Ví¥k;ëˆÛp– ºƒ‚‚0z†SZE=ÞÅ[© Ry»%ˆ•X†ùUÇœqîk¡•m.f†wB¦lüý8ÏlvãšÂ‚ÎÞG ep";Êʹd>ykZÕåHQ&‚™|+Œºû/^k¢1²ÐÑY"¤–±´'P‘Ã,x$Ë’{ JŽ"¶ÛÒÜ4,±ƒ»‘ޏ8ííSËo,è¾U³+ 99<òOðÛëK,o ³|§{´€ãæã?ÝÈÇ·8¬¤ù]™VІF¶½VŠUo<©bU°qž¸ü;UuÒÛlm«D¤ü›À ½1ŸSíS_Ž–O.8ö¤¼z£ž¼ý*X—M³3ÞJÎ2Lq*¨íg©¼þ Eî±-´e;Ëe ¾ö~YDbFÁ#6q×ô¦L|ˆRßÍó §sËÈ$`¾˜ÎyÇ8­'hÖÒ9 E™öåüàg»ѽª¼ÖA](€òËóNpªN´Û¥kœNBmVÛ•>½ØqÉ¢&·„?–ùGÃ<‹óç2IëÅX‰|ˆkIc$ÉûÈ•ùÈá¿< ZFZ(Ø´úœÇäyn#a„3ž9#¦*£¸’ê8¢*ñ7*¸'=y\‚i¡§”Fgó2DexÏ~xÉ÷=êQ.ûEócòŠô&,~½I+ƒÐ²=¢Ãömëq´†Ê“‚Iè}}~µ0™&1©1`@R`Àò2? QºYmhÄÂ0»Â¼¸ž„3u?îŠK¹¹µ Ò‡‘¾eR¹zŸ^ :Jþas` FO›j©Ãö6âid€A¸*+e(=ÎÿëÔr³´cɖ¨ÇSRKß,œç9Ǿ+yRŒ·-Å2yÚÝûÙ"$Æìröª;ôkE˜´¡Úo—~ dc¥X(bHÚ£8ª¢æšUûL)"q䓆#³Áçø}+ áÒÕ*hÏógŸrD$Ú;£žíÓð5V+Y®@ëAÈÀ”<ôÉäÕšÙ™§g„Ë#6UÞ"cöéÀ¦Ã<²D6);1´Á#HäôÇ|RŠQ*6‰ ér®]¥Ž1üNäo~x$ö¶Ù=ÂB“îùLÛÔþ$ç›:³Üo‰áWq ÙîNx•W´Šökä•äšÙƒ|ì䩎X’píŠÒ6[É4bÖÑÌŽñ€?h·2g(H8ã$ž¼cÚ›¾(Ý¢µŒ²°bP[, žN8É⣎Tžâå®ÏòexgRÀ€GBx>Üš³©ý’Ö7[mïb]q(luò}=)ØFtV’[µÍÊÜy…€R2\í*¹ëŽ*Ö„Ü[îTg˜`¤?ÅÈÆ9äTVÐ5â5ª:N"Ù.‚z“œôõ¨’ÞÔ"ˆ£ ~8èpr?J™6¶ hhÌÖÑ¡k¸&‚9?wì¹8¥X%SzÞ½ÍaRnöFR—aLÎë¸3’>£ö•Ò$ÞÒ°!U9ØÎ8ô¨‹rdªqJ“4<¡*wn#Þ¦‹°ËˆdYˆaµ”•*OLv¨%wÞ ª–^A#¿šûòIn žôÏ5¯8ÇÒ­Þå=Èw®ÅXžç €œÏçW’%‘‰žU ½g튙lã[xç˜6HÏzÖˆµ¶î>ÍÇñŒ}ª6m¼c¿Z1óÉ•ee ã5õ#9Ï9¬œlÌÚ³!ó! ÌAµGµF#>_-ÓšIW ¸œƒÒˆø 2y«[)ÚFTi ã8nô­…_ÏÒšŽD€…ù½ijŸïdÕ¨¦ÂÑn!z…>¾Þ•Y$Œíǵ9WyÀl’ ¦ÆË0¹MÄã#¯<Õǽ_³F¾j©n(£qГÐçóªH¥¡ÝRã%·œÃ×éL…˜®ï3u½fã}Iqê]dYÑ„²¤‡,‚Oqžâ®BK:[Ü<7Æq™"ÆF=}xÀÍe,¬Ø9ÆzR«S¼äžE+´ ´[MÏtKHD;\Ð) 1ïÒ©F]£}êpƒ<^•zêÔÅe Ìs}¢  ®mýÓëL‘Ø,Qäß30gó5j7ܤ¯¹E¤*¨¡\ýi2î:…ÆkIžUÑ㊘À¹ß‚OüêH Ÿj›öD–fÓ^|Ôxsÿ<™\|æ–çÈždÓ;¹uø_¿àzþ5^ ¯)Y#›°XpsZ–6¯4ÑIrJªÈ?vYûäc·š¨ß¨ÓÓS&M±·sÓß­HñÅ4N¢y#nÚêHK›°ÿžAW¯ö`,Iwãsã,ŒcŠ—t71·ÚE•ÎZFHᇥW*qM•Êš3¯&º8ó Jˆw`€vzc*K(¦¾‘–Ý‚„)ëòóÀ'šwÙVÝ’R®çbÆØ ½²yéîj9­¦†O.XÒdáE(q’>éö5Q–…Å$ µ–41´€BqµœíVvÔØžAרÒ8؈ÑpŽÜ…–N}©ñ%«CåÝE!ˆ>eö6AÁ9ÆGÐÒßMÙAŒî2¸—•ÁÀÁÏSY¹ëc6õ"GšÊââ) Œ4d©•€$}õØežfY’Ùe .B‡jôãÐð:µgµÄAnI¥èãq  g¸<ñ§½Yš)-íÂÚAçÛ“¶#»&3žwtÈ÷ÅKÝ–âæw)^[Ý-Ä‚ÐÛ·Ì6’G¦W€A=*Y-†!mE¼ˆ‡Îª±n.½9 ûtëÍ>édµ·Ž+ûxcefÍä׃Œ{V]´QùNnO2q÷‚núçõ¡ê'«5„’ÝÇ+<‘Õp¤Ø±‚pGFöSû:|«ƒ;ÌÊ™”ù$…ÆÛýârj–¶±D³2‘ÁiÌM‘ÈîËÓÓšlZ„Új:£>ØŽÅd`xãáR´d­bÞ!o"O|c}ë“'k68,:‚Všv»¹xìâ$°ØÒHD‘ăаÈ#ÛÒ§·Y2Ë!-2¾PÔ?Ýϯ©©c‚Þ7Hȶ۹2Í’ßzõ¨½˜ºêC-¼—1=­¬1Ï.Wý*q‡ÿ ³y\w /‘ á–B;ûÕÛ– -„‹ä·–6+¸Êrãž8ªX]*BgŠhc.¦<¡ÜÙì3Á¦–ƒ±oWÔ£xm-ãß'–OÏ+nÀ§O§åE¤Òß\’b´òÀ ûÀR4ÈêB÷ªÚ¤F džYc))ÊÉ %Мr:UVâY­ÌqÂßgˆ|Ê {±¹t²²ñÚH“[2ìfÃÊD˜àíäTrˆ3å—1>Ö•“'ÓÕBѶ‰VB‚L`cøô©a¸2FÑË,‘ÀÀçÎæGLtç8äzÔµ¨š×RÛ!ápȬ›„$ícŒð¿Õƺk­ÂâýJK÷£ˆ•.HìqÎ=øùkÊ‚â!+B Òy`¿'Œøþµ£öÔS!„ 9ÛÀsÛï7^}=j¦ùtC–„- ¤-ª'›I# ăœ½1ÇçÅIq¬ÎÒ,M#±PЂ©¹èô¨îlî×ÊYQg@$=HÁà9ëéEâýŠh⢳ T0¹%NFwôçô£Þ[†¨‰ŒWL¢H#[Å^IÙ”>zdç“ø –ÖÄ@ZmBÐSËBK;òã;sÍU7H²²´!X2øb~½ª[k€nZO7g«qÒšmhWK®MµÌóA)†=«6ÈÏ¿`8­ 2q vLŠKG4ˆ Úð“íšd)ö‰šmHç8C°’A\ôyÏj'Šø[I ¬Œð–Æ~mª>ñã ëÚ”ãwdL•ôBÜ[ÛG1ÃÄvÒ¾hÃç!±ß¯NôØRƒlâegb ˆp¬Gð•êæž.f¶F6ðùQ°¶@äu?SøR„K¸c˜…ŽQÃÌIÎ;ç±ö©nOÝ`ÛÙŽ1C ÆÊÈè77烎œt#èj# VˆŸjó„ÂÛÆwÉÁÞx®*Ï—4:Ojae ¬äy…ê:»¦9=kö'i ·\¤ÂsˆÛ騑ŠÒ<·×VÜ¿¶èŸSÉ ¼ðW¡lóëøÓÝ-®Å³¹’ÖwR:æExÚÜg¦:gŠ,âšyHØ@‚1‚ãέIuöxí!/‡Y‘>1·ëz¾{­Q¦–Ô‰V '&þT†K›,>R=8ãðí¨»Þ+€’>(¦“Ê:`ž™<úSìÖµž+‡ÝlFùÌ,TysЃž•SP±”Þ³M"¶ã çFx CW®[Š÷/YO$±M ‚(Éa¹íÞݾžÂ•1ÁuŒsŒg=>µJÔˆv˜åDŒ}ï—,OLg·¿½Y‘`½*ÆwB©´y@œŽÅLa\µeÌõ3–äP Ü–€(ŸvJËò¯Ë“×ù ²î— ©,;Íä0ç8^>•NêT I™¥h—‰ÁŒîãœóÇáÒ¤»û5±Þ‰%Ä3ôšGÃ)ôÀãß5)òê„¶ÕURHÙâž 28cÆÖ›µ-œï–V™FÕhíÆ9¦ÜyÂ%#XÝÊËò`à“ÐõëRL!¸bÖª‘î]Ÿ’W§¿ª¼w°y„— å#u‚bêÛ÷r‡Œ€sÁàÔR›‰af”3]î]HmëÔϽJ°Æ¿m•b® N{ òÒ§H$Úò¼í›i|’Gíã®;c¥K’èEx÷[yèÌøÇ”J ®‚ úÆ£½¶…(Œï&ðÁ3€Ê='<~U:H’«¡ÚÞc; ŒqìEDŠ“ºZ¼£…ù‹/Vô>”E¶ôõÄDdŠ ¤@a±Ñ€==ÅM;I: s¹“r*/ÎAÂxíÎ9¤Ýlâ4„G! æÄH`uù¸?çŠ-¡Ž9<Å–FËãÈn^¹Ü: úc§J£}A5rT³šS!>\FGË­Óc¨öëšcÀðÅ?›p"’9˜âmáÓ˜7ãÒ« ÀÀÂå$EŒ*y‡<ŒœàžztÍ=n¯¶»Ùr¥€S–N¸Î2>¾•nmɱ«$‘¨xËÇ2’9Áü¤øôZ-üÈäFˆ0D,›B©=ÿþUœ6*µÃN‡Í,ª% c°=Î=jÅÇï$¸…®•|áº2…‘z`p?8ËÙÈiò²kt>r<„\ˆ·ä>ëVKfugù#£ {W3}e4¶×*ÏçÍ)·ð!¾÷$Z£:6Ù¦¹wˆ$~tßpžìqÉÎ? ÝÖºº4öŠÅ÷#í“„Çï p[géšËšÚÞï̸Œ²ÚyŽL\1O›#‘ü8üˆüjÚA4Ö—Oqx—@¹Ž0£'®9€zãµOÜÖ‹ I;À…CïÇ8ú|§¯½Dª9hK“e8dkXÊÅ<ÐÈëØÿW“œ(‘õv©^mBá˜lîSp˜-“¶wgšs]¢º›ÎJCÆYO>¹ùHÍ<öËs–¸i„b7¹ùälõc=ǯz"Þ×õ!ûT–‘4“[O,$`2\#d‘錊mž å1i×f5;°#W»ÄZ»m ÒÉoÈ€+ cæù~F:U.™.Lsdo’iU‰uè6î'oåEÒÒAuÔ–êv¹¸{§’<²ïg+2¨>è=ñŸ^+)/là2im"¨Ú­påÛ?_ÐÔò=¥ŒÖ’«Çw4.ßh0î"u9ݸ·BA"›2%¥êFѴ¸RäTôät>¿JÒúŸbQ¯?ÖCpÉ¥D¤.m£­B–ÒÙ ËKU¸”çu¸¼ÅÇއÔwª7QÛÚÊ7šÜù£Ï˜§õ¥³¶f¹ß É ØÌ¤I†`§œß¡ëŠiutO=Ö„o¨„6ÒÖ6ÎÓæ¼‡žãr:úÕd@dúÖæ„ÀîL7VïL’âI2à°§;þî8pqÐûй4vo"[ÁO1ÚÂemø$ ¡äûRRÖÃOS%Ú Ÿ˜3ß5jY™­SË $'f:u==ûÕÙtˆÞVÙ:î •FR2Þ™éPidÃ$Ÿè÷,[1æ 0H90 ÿõ«HÉ=™JK¡*¶æ”ü¬Ä³ äÔ2c žH<Ö̺U¼PÍ7Û£#h’5—ä2)ÏLõ<PFà¼eœnÝ Û‚×õªh{•|Ã&°dŒS¥Êp‘·¨*ý¾q2gÎŒÇÀV “ÐCõ¦I¤]y¾Qu$.ï”ä`N?*…(ì™7E`‘ "GÍØqZé¥c˜,fc îƒr¢àóŸJdö‰¿p!Q—rÓ' úSV…’6 ~á ÀSsÏ*ÚLJ•*Þý HÖ¦I'™l€§ñëô¡µ°™*’Â2UzâmV`T…\¸$g T\C÷¹ÁçüjèŠ)Ñãǩܧ«}3PÄÊò²Ht Bi¿2œfoCÍXº†Ù‘&µB‘8ÁBÄíoÇš‰¤Ç$a§B)_°‡Ùj—3n@6·FÃ*ãÒ´8îSûGK‘¢–ž×2žrWGzÈóKEÆÍÀÍYŠòK;È^ÅÜ$ ÃŽ7“÷¿¨Ç¥j¶-Ísæ $‡æ>Ä÷¨YŽHÀ­FÅoåš|{œOn:ÀÿOCŒñÐÕ³Åp«3„Gap y›®>½³Skh…±^Öp ¡&G<¾¹ôuo‚A,v a•‚ÊX‚¤ã:ƒÞ©Í%ÑE!#KSó$[C(ôÈÇ\wëRG‚2žD"Y–œc¶IÎiè‡d7íÜJ«,­.ÞìÄž{Ó,­ÚyvyÑÆ®„îfÚ?ýuuì’o2T·2®çxÆ1ÕFy9Çøí0 <×´qÃ÷q×Ó'ü)NI-»-]ƒ* xªÆWË;p©ýzÔie‰âC:¾ç  òvƒÈÇ´f¹·™[ηˆ^É Uœ&:Ö|¥™wxc‘Ô+€AbþB²¦ô&n,lŒqF&kl‚ÇÏ?+·¦G+ø‚*°šKiBG$nXìY…·õ«[Ípašæ6u8e…e?1|à`úSR¥œwĤ”È$Ü%¶pyïÏ~xëU¼u é©Rv"áƒ0ž`Bâ3§Lô‰iìr\Ko,¿¾êNæ™4wP090;ŠŒbHlgœu§[´°Û„Žê3³3£.îÇJÑ#H‘Ià æ°L¨Ã;|­ŽÙõ§E,h¶8à·±Îxõ¦Á}p/69w‘ü`w†ùŠÒ†Ö×RV’Ð4x òœb9ÎÓÏŸâ*еÑAõ/9šPÛð ¼`° çƒ×®9­hõ£³¸ûSÆ`b#C¹˜ÈǦMcïLÅZÛ´üÞ'ËœÿŸj©,›§|ƒÇTÎßÖ±t•ìbà_¹) ÍäF¨²D6,*~b;œ“ƒNŠîDiPã{neo|dÿZu’ÝÏ`ÅbD:€Ç‘»õü+4ÛÍ0`pN7jyn.[—~ÛqÌ‘@ÛóF[+ÁÇJµlVy"ÕL˾9ôE#uôúT9b»yŠ€Ó͸I³~Ðzý~•¥q©­Ý¾.ä²–Ì|tôu8Çò©’åØs\º¤gßC¹k§B]8p˜%W>¹ïßñ§G5¼®ä;¥ßòáÈÎrXûôÅ:G‚U"`’Dî±Ï ãò¨–H啦måŒÇ/Ȫ=:óš]ÚèD°ÝÞÝK!ûJWe ͸`d|ÕËXÜt‘ÐÛ$ÜLäÆëô©#¾S"Ë4ÆÜ0.J¯Îœã×#ŸJjê¯{t°@©,DíFš<?¼M>gµ‰æbÜÛ"Ü1‚,Dq˜Ð9ê§Ö –'¸Š;}òÀ„nI’žO•£ kŸ.@QðŠÇ*7òsóvÁ"™ä—*ì«¶•$;†Ka»g=M[•Ö½Ìú…à!pŠû‘Pq`yôê{R[ØÛCäG4Áƒ2Hƒ =Ç©'=À¤ˆ ’Jº‚¨vT‚¬;gÐÔ†ÛÌsûøÕ|ÖÆFC3ëÞ±½–ŒK¸ÿ?0k/.&ŒaÕ‰@‘—ø‡^¾´Åµx„‘XÏÆwùÐ8#ž¾¼UˆíÒhؾiùlÅÀBÞÄýF3UÂ[oŽspÏ*»W'p?t&zg×ëJí½Í®wf—4²»# (ˆn ·«ðãÖ²ä–XËæ6@¨vƒÇéŠÖÃ>› y®Ë>ÙeÞ°‰OSÏr?ATŒ {tËl<ù˜±eA»¡8Ž˜âºb½ÍM²³ ÅåÁ~÷qX¾3Œñƒøâ®žÎv†Ùäƒ!bÀc#9Ç㎕V×K– d¸¾Óî~ʨFY~oO ëÏ¥Z{[·‰ÌHöÐìdF9Ç©V2ÑÙ½‘*$îegV~Îxñ“Ñ#Çö£HÓ/l^UŽöŠ@7FÎU¤¤`ôÍgÛÁ¨qi  æçnÌôÎy5¥ •…U72yKød‚sM¦‘M;Emh‚sr±É³ýZ) äêoZ½"«[¤°— öŠ œ¶£ßU¿´-”³+÷a—q{õúÔ&ú,ó£\DâÄïœÇ@sÏÒ¦<Ò–¦z·©ZÒº¼£EfÝò–}¥‰jç8å8üqY–J.^Sou(m£"HxlvÏO^Õj›XíçŽ@ •p¥K ažBŸÿU]å õ)JQ+ˆ£†MŽ£jFqžÊ;ûûSb¼ŒÄÎÁ•e]»Aù¹È'é’*;Ø€ßyoqí ±ìW\sÙ»cJD’Y•!„›ÌÂÏ®zþŸ'7¼J\Ú–íâ[I  ·že·Æ™PëÎ3V­m%2E ºÜä2¸î…^qÏŸåUÿ³&¶ "M,¸Bn Çú¬{¡ëj³µå¾‘£xÓaòÖ=äQýÞ¼g·µ6œnÂZ¥Ìjel~í‰@­ÎFOnÇ=ûU¸ WŽÝÄ)‰¾d€$c븎‡œÕE…l­£»º•e/#?ÙÙ 7g“Üc?,×Iu-ÈIÉ"(òú€5)(‚´Gj±ßÀs° $ᣴ”£§=Í6 ²-˜ˆDœˆÉ ®qÎyëÐp*±¿Ž ¯´È²¾ÓµÆ¾ KïrZi’ámÜWsF }Ðqϧ4Ô\ôcÖ[“]„Y£·Œ¨@LÒ“(;‡`[øT’©}=cYUÂA!sÆÓùŠŠÚòH.â¼ wÈP3”ÁàuÇZ/•‘,`ŽÚ,Ÿ3çÚŒsýÖÆ?:§>WdMõ!¹U6ñý¦g1ï%|…ÜÙÆã°úTÑ]«¬b( ïÿ{œgÀ0#Ï'=*ÌÐ¥ú –A±:Ü1*G¢œç?JF™­‘#²º µFÆòØ–lp $c5b+ƒ,Nwí ,Dqÿ~sùRækT$ÚÔ¥qc¼Çìžl›1ºH“̉I ëïÞmipF’î•r˳/Û“ŒgßÕv;Ãh,ÙW$ zpOOQÏÍSH£†âؼŽIr©)î:Œäç­jª­š-LÀµ²¸»·2G }œœ$Œ@ÉxÎkJÚÏì2¡œ 26ìíqÇœÔòLmLpH D#îyož™>¿>I¥ž(×çº^PÇËcÙ?†qšR“•í°¥&ö#’.iÚ´¢ec.H 3œ¨8'ÿ­Våy#K™¥h2B¾^:~½ýª¿ÛmÌŠ¡ßÄ‘– ØŽie–ÑáU,Êç;Ü ãz\zY=¤ï™ÑT1pre ò¯¸þðëP]Æ¡ƒ7•€|ÖH‡?6;ø­f62É:ÆøÄˆ ŒHã&š`†H"– š5 –ùÈ'žßáBÑê4e%–â5›-$ZXßÛœuõ­×{q"O¾H.¶€Pëøu÷5ž×7Ó Ž9¦)»n÷SÛ×Ú¦’|Ûaæ$–ÚrN:vÍtª»XÙIßbY$¸;$ļíM¥‹s×#§Ò¨µˆŠçy-ÃC:¸\ÕˆùlÈ@™Þ['qþï úÔr>d#çRíŽN@ã'ÔàqR¥'£ ½™—5¸•æ†Bd‘¤„cþ< {Tkp²N‹d0'ã^Žâ6„™Ð'‚åMÎàËmÄ‚üîÄÿ,ÖëTZÕNŒ¶BFMàõ½PU.ÿxéÏzÚÓ`Z»ÜË…r È# þu ͺ2ìÚ«žB¯qþ4¢D_C2W =8© ¶Û ØI» ŸJµeíC¿h,c*yubz [™üÙê£'€¤áPzÒ¬Ñwl¡DÜÒHO”†•a¶‚D]†l6\nàA˜ªÍu»tr*P!$qÁÎ~½ª#"õNsÀ>Ô äÌí<åcU x 8zšx´W]ƒŸ•³“ê)Ö°Á …vê=*Ü6Ò+Èë AÛèIãŸÖ°s¼´fm¶ÊRéòEl’¢äàÆ9Ü9æ™,rý±¼‘²-ÙSÓÖ´w\ºÇo$08 [ÍG)"‚9\ô8ëȧ#½¹¸‰°ÂTòÿx@8È!†}Åh™ªJÅ`fC!*Xä"¹áˆ8Ͼj Tù¸O–0~îFâ=FkZ‚âEF+±1…B{±ô÷÷¬æU2í—qr¹É#‡ôúPÛNú åºÝ—Vr#'®Ò8RˆI\Ê7_•“b)U›æ”~ì.üÜœñž”’fFi%F@»ý{ÐîÖ£kK†Ü2T$@#ƒÅNÛT2€2ÃWU/.1‚FséY%c XB‰¸g dгCî*LË&W9ÆÜpOãŠrÇå±7ÅBÒ]„ã'èR¾À¥rÄRO ØÎË…Û |b¯i×n-å†%Áu9$ý?*ÈyY#9Ï4 ¼q3¤¬ bÂF}iJ7ع¤ndˆ•hàv*ƒ{z¥V·žòÞë—!¸o»”ÞÌà;Ô.ìÛdkx˜Œ(ÞÇ ~–FĨ ¸©=—Òœ!Ôq‰¥©@×’—Ž2“»æeØU@=qž¼t¨­aJav êÀ óÏÍÔÁ¨mžÞ; ­µšVf3ÉS–êµ1†5êA‘Ï}@íÚ¦WøDû ¹}³ÉLeLãå'i¸©lïVXä•HU#Lf«<ÑL¶çå>øÛšFó’M®Ìû[çÞÄ‚ÝéYl+)~å`ºýÕ¬¹ ü;vª2ý”—Êɇb¥QØb”Ld$„4'«“ŽýªKÍ6æÛ ²7Œñ¾Ø—Qõ¡+h‚ð ‘"\|©"†Áõ>õùWWÛË2˜wv`íÏp)ºy[»¦‰Ê+#æ;ïW¥YŒPÃkз7Á݃‘œqÔþu§-µeÛK”.tƒòF’ÆýY0y+ŒçÚƒ¦¡Rê@ PÛ”{äVºÅä’9SËÛ,ÛNן_¥U³ŽÜÜ1ˆ‰¤„6Å–0£Ÿ›?z§žëQs] k8bÒa){‰e#î =ˆõ¬£g)r®Ðxæ¶[06ݨ¡ÿzîy Ýý‡µTÔ."u.©‘yc¹Ç±ÍT%®£‹³Ô®ºT…RKyV\ŒIGŒ÷ã¸÷UËÈÏØ"±[V"Í´‚2}‡©¬Ç¸¸Ú‘0ß)ÏçZ”¶K)crA1  •ûÌ;LÖ]¢Ý›-Ø]-…ây™U”–6 SÔúƒRêÐÚiƒ,CÌ^OÏž‡§=zVOÙçeô2X˜ge,¬OpO={f´VIõ()݃íùAÛå~P=?ºhK‰ »Ã<¿·¶bª6*9C uägê)ކWg+³¢˜£ÇéP•–æA$“Å´ž£<CS=Œ¶öË—|n†•ù3õæ‹;¯QæÚì'îâ[ÿ(òIgP:qúÓಟí(¥ŽcžGåúýj(圓¶FÞ@C·æ$g<ÿõêTNÛ‰¥*›Ž|¢C(zñùVo™« •²Dµ–kŸ2[˜RZy„SÔð9#=é.aš)3ÁBLe¶îo|œóS}¬Kp±ÈR(|ÖÞz7eêFyüi¯•ØÜ׫Ó&Rÿëìk4ÚvhÊövdR+µÝ ì³LXnWCŒàŽ0:þÙV)DM#ÄØûCÊó×·=j;øšÞybI­Â‘Ÿ3yo”ö›iq$*°AtÎ’6öãät­[Ö%´ÞÄë¶[XåEY٬ўÄz‚3‘ØŠ’Xl®m±ŒA8`^4bPýrxúuªÞBù‰ A 0ÑdzñŽ™ÍKMo½+ åvòOlŽÂž¶ó¶Ð‘^Ü ƒ ”«$³•W<¤ õ\wǯҤwŒË}¤XöÛÌŒcÚÃ×#®{TÐÜZÜÄ-’! ºÏöœ®ïž@1ŒFzúUœÍy}upVmÙT1 Ê@ãwéJR»Vvô)Y©¸‘_QŽ$–âán‚ʱ wýÜ;œ‚Ts»§áþ5RBì ,A°o§±nþ£ÓM½]½ËöšEœˆÑµÛ<ʾc²°R㟓©ç¥fÍ VÎÖÚdrË)ä4¼ï鎀ŽO¥ièú„21,P]E„A#ü®ŸÅóz“Î3Nx­Öá£Leƒ7Í19''¿µ£¿s6ÿE…•#MBIµ_1Õ˜ÛÆÆ­OpG—qÑr÷ÕÓ;Ôá_óçZÉò.Ú-æ9LoÁ` ÇlÚ¶ µ’òhàa‹xÁ‹åôÎN?,R”yw\¥In•„pÛ9u…X³/g¾{š»es%ö£ÊT±”±G,OÔôýZÝó0[Gbòå‰'¸o~?•gÆ%Ó´wR„O{˜ùvíøž? qŒe°A&î[‚q}¬ݶ)baòð…8_¦*ko2šÞÍã˜n2ƒÈÀ?Ògy5ì°Êù?e…‘xäŒè:„Ò0à »N7ÄñëŠÒZÓ×q÷º¤‘m1Êå·mùÆr¾þ´ÛJùÖF‘#˜• pÇ, ãüûTZD-{¨:O$ËnªNè°I=ºÖ€ò#µd`UÝç(ïØý9ëXrÆ;ÒEIfånâ•Ôlù· ïÏÒ£´»k»˜"”l«¢®X÷Ür*P^ójÚ„ß1ØcE Bç®:Œ㊕ím|ÿ-%Y¯–ÓHÞKœ¦xÆzÕBËYnÊ0ªš;…Ž@À”1M…ã9Œç8ô«ó­·—wÿCˆ©hœn`¬@lØppj%–ä:‰’¸bǯÊŽ}zƒNž_Oº‘e€—@ñì“§pÁ±ó}=éËJ‰¡KâÐmÄOs”lm›` ¹È<3íŽk*âÎ{@£”ê\ „=$téùV¬‹M ™m­dP‚/6D$ ^™çž;UˆnL*§jð‚ìîaƒ€rØbzãÚ´JÝJWF4/{oö‘lDqå ®Y ëŸÂŸkeT¡ù‡;zòã[»É/˜Û Ø:Ÿ/xþó/<šdŽ7•Ù¾ñ£‘Y‘IÇ󎣊$šÓ@w± Û\HÆ)gÛ(X< ®å=vàuý*”ZLæá¼™7Û¸%¦# ޹ù±W¤hÎ%‚aå¸CØn8aìjIìž(#KYRP,?v1À'©bxÀéëJ1šj¢eÜ=µ’‹x w*>ye*p9À\vç½hÍ¥Iã-£)WmÛ$.X ÝÁÝר÷¥Ó­FÓçGˆfW¶»$ˆúm§•9ÁúŽâ¤Ÿ_·K×M¬±‘»/¸) cåH5¢\£½¶JÉožG.dÜzí?*ç«ñŒ“ëQ%ÄH‘¬‘ÊÊr½w6ì’~5RÂ9§ŽLß»yù™UÃç'‘Ò¬M¤] ½¨ "=‰}ØëÊôÏ<‘YN<ªÄµa÷°CsqŸ´²Ý}åó#ýѰ {Ê©M,ÐJG*÷ÏN*Y /Ãn²yãçO›pðæ¤û#\Û™.cÿ*…¸bFÿöqœ~|ŒTEó;±-^¦l åÎ¥ÓÍ…Ü\?V©ÔMÜ!œˆ geO'äN9QÔ¯†‘ B€3ócøbIãš/Á¸»‚ ¦äÛ!¦z tÈ­bµæ)êC5ª\“-Œ¡üÂ!”DzœãÔØmdh¤€Y¼Ë“»Ë ÀŸ\ô§–8!·Ib·2º3 Ìa“ýãøãŒæ•n.¤€¼rˆ¤êë»ãŽ@Èê:zò)Yµ ÷Z&†[K”ŽâÄ[‘ü«0fÜ À#úûõu¯ïgimâ¶ßÂ)B  Ç8ª’dŽS$âFWHÙK¿âÿÂ0O×½YX­ÎÄž/¹w{Õ’%˹jàÇ0e‰!ó6ªùqŒd‚G©þb³µ)d–ötT1ˆäh‘W# §éVãy¥•#º€Fç8¸Ü¤ð¼Ǹêi/#/"¸‡ ¬›O$ƒ÷ˆîHïíI,va§ þŒ‰@ÒHO©$Ç×"–îàÊ$™ž0Ÿv8€fïâÍч¶jtëdU—|åˆÛ!H\žBŒd † 'Qdw‰lãù³m;NÞç>œUÝ7¨ÛB4Bâ+¸LiˆÖDä䑞GO–Úê‹2½ÑC Þ¼òGµṈ£Åmå•·ug þãýå>ÙÅg8Ý-£†éf8r·ìÉü1ïG,Z¼Xì­¡w+x™£<îó7 ÷Ï¡¨CÄŽTÀ“8%°IaœcŒTbFy¥Ü>xÈVO9ý(ón$iVÒ2‹’Äd¥hÕ•Ñl±x%¹|r>Ðѕ瞇ôÍfM¤^‰’0̹É_¯½h"¹²yZà€³1çô ùÐ%)lèìÃqæMÇrž˜§Môld]ÙÝ ™„Rí\nÅZM*e‚&–9Y !ÁÌAßÒ¬M`±YËà2¶îOášžæáU|³y¯Þ!Xá½ûG5¯2)4UŠáZX’`°¶˜ñ“ž ¥6Âãk[9üéÒÝÅ̳m éÆ{Õy²¶dIêM‰ÄÌr¿¡±ŸcùU«h×+ãåòÈrǨlàýsüª½±$ æÄs™æéÇô«)nW7vU1àryϸjÑ¢FtÖ§xBÊY-´ðøÒXÛ3]†B£v[·¥h‹x.̲,ªÀ¶K®s€ÀÏn)ñ„¬i“ŽqYÔ©Ê´"nÄfE„³.R{Г¨]Í'Í»Óõ¨ä”ÆñŒØT‘Ú‰ˆ—*c$)$áwÓôÍs%Õ™$*ì1¬ÄÌ8ÏSXy€#”úuüêIcÃ|é b>ÐTL«"Éå•Uê:gÔUÆè¥tki‘&Fñ‘¼ðj{ณʺ’4vÃOÞÀ'¾*1|£q@7…ÿëÑbûo‚E¼ò®Fp{b¶æ] ÉH •¼˜Ô¨à3==ÅU`_£`qžÕ£Ÿ–DÓ ‚«r¹Iÿ ¢d"C,Œ—à¤zVNWf.Wcf(23‡cËq€ô¢Éœ´‚2Ï´³ð0{æ«È^YdiC3שÍ)FŽ% #<÷ªqÐn.×4¯ôÿ$ºC3ÊÊrQ”γe³tŒ3<[‰åU·2SØTκ#†}ý«M¦slËä².3’·§¥ÄÑ–7ôà:Uøï$–Ú8Ý EÀlœ`:Td‹{HLÀ;H¥’5nG8¿Â›çîl–•Tö)¾ÃYÿxvž€ÔÖòý‘Ö\ êAÔÔ Ò _‘ c÷‰éÍK¸™K0û¿5;{£è5ì$G î¤ç=꺪¶ üX?J½&µ¨«3-ä™÷ü)-õI7¨ºÙ4DùŒÇ·½O½¹:î@$Û@‡j9É÷#Þ¢ÜSåoO\Ö¤ïas"Ú/ ïòË>k7ãÈëïYf5ÉËî*N­óX‹ÍºAð±¡ÜÇ9ÍCo{5«?Ù¦xà wâ¢f”'–ÅÕ °ñŸN+Héû­ƒ“eqîHn0qЂ;úÕY-Çd·-Mª41Ø;Âx‹É±A*2@ÇåPo–êå ‰•`fÚfÁÛ_Æ®"Ã.‹L"Ä!Œ&RH:mVyä­WN¶‹æ8…ÙˆHÙNL÷犉F)] ­.(ÖH ,ç çß#=*½¢$©!;,P©\gÖ¦ºI1UâAò¿˜1µ¿Âš²6#1Æ¥Xc!¸$uÇ·"8§¹P]Êó,2«à ä‡ëWnl"·v’"ó©l†9SŒò *:Þ9âÜKr§F_|Ôv Í×ü¶eÿG‚cç–qëè+Oµd6ýí ≭ôä‚u3€Êzp qŸÇúV=ÕœÞb˽ßÌsûÆ =síÖµô÷·‚ÖiYÞì|Í6ØÃÌŽ9íUfAs°Ú¼QùýS;‡=?ÝúsCJu‰ÁešÜO EfÛ#ÎÅõþ•v9šÇU¶–Ú[8×Ëòü¶MÈxn½O|ûbš4ùJ´¶ûHØùŽ=Ê÷À šŠâüÚíÏÚ”™0{p8?Î’žštLöi xšVÊàú?õŠzöãæ‹ÊmÄŽ?6;ãÿ¬(–îÕÅÄ’£Ú¶]Ї;\ d{È{S,w å0B.w{ƒÛëøU©Êã[Ù]:S&ó#–e<7°>õe^FµÌyV_u# 2’}{úÕ'’^âH„nàš ×#·Êpvé“Ç>ØÍ)6¶A)v6¯lYѧ¶†)IS»iÜIÇ$sÇÓ’Ö—É&Ø©|Kðã9§Äï Äör“VùØpÈGP*ä€\K Zf¥q0' ff #Ï_^‚±7R#~£m-š`»-T»7!~LqÁäãùSŒ`lò–+}ÇfTä„Ç$äõíK{v&U‘„¨å6É`(aÁ ™ªÐF%´Òn“ Äc#hÏ Á㚸ͽʌîHööÐÛüÖ<îv³œñ’r@üªT·¥ÚQûÌnŽEëÇ@: qÍ5¬ šÁ®Ûƒ!,í!ÀQاONh»³™­ãÌ ’œFAÉã€=¿\éè˜)]è"²Co46ÄÙrü z§*ki#œÇ*2ÂAÛ PF:œ‘ŸåTaqH±9cp¾Pr:dÕb'šÖÖ;TCmm,›D…ŽF~Ù=ºT4¹¬GÚu{×2]±Ü¸t^:÷Àê(ŒTg‘¿×8sŽ¡*¥om ¾øªîfÁ*¾ÃÔûÓ¡)yz$Š%ŽÔ¾Q”‚¹Þô⛇D½Ãg&ªöúáa„/jŒ3àg#ŒzsS=õÔ¡líæ”D¨¹cò)õÇlvª“=ºù¾U´p;u’2; þ O%ÌÞ^6m*˜òqŸZ\­±Yšªu# Ëò‚NB€}1Q.”n--Øê pp­!êëÇÅ:d[ÉÊ(!]Ïr?ž=)ŸØ‘­¤“Iæ? ‚±1Ï8õãò­"£÷QoJÓ­ÕvYÏ ºœÜHo|AQíɦÈæVݨÙK Œbíåäÿx—?_Zu–´eb$2ÄBÄÁ³å(þ;ѪùâȾÅ}UAé¾§ÔçùÓ²’»ZŠÚê)’Éœ5µÍš60³n0œã#×^G5ZÖ…ùâ¶7OvŠgHã*Áò7Ú3Æxj¼† «¶®¤’U˜ýÒ¬[pR8íŒãZÎÔDVL†>UÎÖ#Œ~Ö˜×í .Š‘…É1Œ•II+!Ù¥dm[[L·-*ªÆ«•tÀ\“È}GÒ›%¼1$l‚4YHîHóœ§ÖªÚ\ôIà%ás¶T|èAÔsÁúw¢ÎêkU\ÎÌ’©êzqZ»ò/!ëmE(ÖW ¨ä/ ÎB玿1ÀÏ¥2í£–Îk•mŒÊ[hBAȧՆ3îò %&”™ñ‘ŸAžÇÖ™pŸ¾‹ìÒ’‡#ç\¼œúb±m7tOQúhmd ¹“%ذϗÐ`žü“ZŠÍm!†)ï¤ÕŽ!‘Cnçë’iñÛ­ä(èÍ+²£¸ÛÜÔñÍ5•³¿š£p˼ÉÏzv©¾¢¾£#ŠKˆüè¬Î\ !$€~÷=éôªw¶“µÄ&qºV9 ÞIàôîH=«Kq‡vZ>6œì tO^•˜ bžäó<áòF2Ã=”úõÅ\¾ÅG}‹"mõX"‘­îN<©ŽwLލ­ l-mîc–d;NÝ©ÕU±÷IïÓšt ä÷2½½»±Œ£®÷8À#î'òª:t‘˺Êb$1’ªá¶¶ÉÁì~µWrVOT+¶KrÑ¥û4­lÄùs*aU±ó(äŽàç½Dmï,%‚è[ˆíãBŠò2üë‚0psü\U«‹ŸÞÀ~©°ùem'üpzÕk¯"yJÈne”¨ò—¯ŸòhŒœ´hoBx-"·òï¡)¸ŽwmdRxû¸àÿZWÚ×_l ³"‚Èé…L g#ôÆk6G\¬…<¸Ôa•Oû<òÞç­hÁg –òÉÈ-Èw`†!Ç t'×ñ¬¤œ^äµfYG’å$US!À6(îẒ@ÀН>’$·ŠMñ½ÔÙo´O)fNŸ+ƒÕJKkÛY»›Â6Áóýõ«vÎ×3ÊÂTùFÕY ÉŽ©ëÏNrJÉ•vˆbìcXãA4ÑHÊå°‘†sÇl{zf¨b´ExÛãv9p᱓ŸNp{V´À÷QÄðûába´÷Ç¿LÔR_OèK«ýÅÞIP?„ƒøVÒÕ«"·wÖÓ@ñ_<›®Ý¨F@ÎsëO™E¬å@k‡A½¢º)XŒ©÷ãùÔ)eÒ{–Ë;cÎ9ÏVôÕ¥8†9‹Í£Æê#Ûä§ÓÛ¿µsìFÆ PÏ:«Å Ʋ?” )ÚǸú{U§r× 2Ç(ˆ™bØ$õ?Ž1ÅhMwòÉ{€¨9w{T.­!òRÒàOå˜åw’<Ž;dV×|šu*÷$±[ÈÑE@vÜdúSÍp¬Þb¬1x™É=Jã•8ïÞ­Kkvnn#’8#WIÚ¥˜m £§ëëi®\´6̲’Qyv<ýÜàzS½ìäÞÖ(É8¶[¤†Wy©(qµÆ=;õÈ Ôýa36æS”1Ž29ÁÏVÒtní×ÛËå_&yäq“Æ)[ÜJ|µÜ¡ˆ,¸þx©äbåe·¹¶ƒN•¼¹dEŽ%|àgŸAŽ‚Næc óIŸa¨ÈRÃöè$ Œé¢7Ü&IÕGӕ眇Žÿ¥:Ù·j³Cå:7˜X©V v==©+o¸à“bߟ6A …i¬y9nüäÕ™Êý€F×Þ¦a½Þi.ÈÏ÷î õç°üóœÕ¸žÂK(@ÀŒ0mÄ ‚ŸzÚI(•Qõ*Ey<¹A“µÜH8ã¿ÿ^‹¸Œ2}¥ZKx€[¨ä’7­:òBžW“*:ï`PqŒƒÇåPýŽuˆ§’J¨ ’>Flçž8 žš"n´$ØÌcY@<…(€žõµaFÏç‘LYžZ\C¤C‚IîOcž•]´È®0· omªÁÝŽ˜îj+…Š 2 1" >ÓÁÈÈR=xëõ©pØ›áš$š0È6áÈž‡¡Èö¨á½˜0KÊ›ïv¸÷52ÅkmŸ6FŽà&ò®2˜= ¾¢©Myº6D3F(ôÅ$‡bÔwVqÃʯtê0AC°óÏN*½üñ ®›% ©ã¨Çni/šÙ¥1Ú::)†Éíê*/!£ºó‘­¢ ÍŽz}ëX«WšåæPàôдøSí÷ÃÌÛ˜“·ñü*ÕÌ1¤¬†V,ˆ±CdàçߟҘ©`Úd†71K +M…bO@1ÔqÇ~µ¢R­ffjaãŸ% màOƧÓì®n%’ò[9Ïãüó[,Ò8g»ŒÈU0¬Ù ŽÇÞõM3Ç 03DÄnž 6ú/­SiÙìDÚ«Å*ÂPlÊ–$ã›§Jšyv(e¨ÎrpGåL_µ–lÊ>ÉdEg ³ÔŒô4Ë­·8‘Öe@ßy×– Ñ²Ôµ+nD;Í_væ’@¬Ã…Gî=ø¤¸-B#`óÓ· ¨.@‹å‡Ê©è=»Ó'cî·é(ä«.ô⳨œ¬c=v%a2§/óc·Qíš±ù6ÛJ¿–ΧåÇüj´m€ªã$`õª×Ï 2cŒ¥D Û&(¥2¼m·r«äã®ê)†ÙÌŒ©LäsŒŠ«öé@1¨¶qZËåEŇÜ”H;žý+~T‘ªó8QçŽÖ=│^¹1C˜íbßnZE|¨fM­¸?.zT~c ùxWƒÿÖ¦ÈC¸^Šdô¬v1ظhå2´kàÆXñ¾@:àz{Õ9¤æÝ41…ÎÒÛ‹_Ʀ±ÅÍþÉõXfQžØŒãòÆj4ºXmV8ÐG$ñ…”ŽA^¼ƒëO–Êáb-ë‘»¾sïÅFÞc¨f~xÀÍKme%åЉw.é"§òíÔÒÝÛ,S¹+,qoÛËÃcßëT–…؆hØâW'’£’;óÚ¦‘ä0ùi¼#¿˜žH{T+¸ÄU[‰‘ÀF88sÚ“Ü–X¶Ž&¹»Up 7³gÛÒ£¹’nÉŠ! g+9ÛÇ­I6Щ d6@ã=M5mQ ³ÊÄœ/òúæ’îÀu˜ÜÕ7pà `ô“Àb]Êã¨\‚Þ¸©¬£{{gˆnÝÌl¼ôàóÓ©«WsZÆQVÚEÏŸûއ4ùÒÐ|ÖÐÆ#$®>eëQ¶Tž hÏåJ©*F±¾2 À<ç4—:d°¢È K‰‰·žÄv§Ì®4ÑœnÉã­K %KlBÀ3£<œ ÖƒF’FŒHñÿŒŸ˜äg½:h KiàK5V¼ŒãzQ“Ó”¹Óvîì:;<Ëu–âLï–0¥GMÙëø{Ô7-mÙR=ÀåÓ-ùö"‡Ž1)¯šT‹¶jÅŒ²Å –ÒlŒ²•qåÍÎ@cÔÿ*”¯-Xù•“ Y ŸK6ðmˆ„çížçæSøcñª7±»*Gl« ãsëšÐÔ®/o¡ªí+ÓŽø³ŽÕ­ÒIJJmª $ìÏ©•RßQ4ÓÔHo‘„‚YReÀFÃŽŸëK·òãVl"–hü¬|¥ñDZ8Jm½£\–Û\ç ?>ƒÜÕ>×ì—!ïcÏØŒ Ç¡ãŽ9¥»è%¿ïV@ÆÜ4Q¦çYX1Áãžý*‰HÔ/9#æÏ­O02C3ıG:n‘òIÿ€¯cÿ×5Zßí1ÍåI“p…äûÖÉZMš-]Éãs䉗wÞ#éÖˆü™îcòdŠNŸ˜Aòj=Bî-­ ÈÙGÛåàõÏ$Óì­Ò;YnggIÔb‘AéÈ#œô1QQ-É’[iî­]‡ ¼(}¹V\çn}ûŠ<)]ÂG+9*qò«@ õ8«wQËöâŠ#$ÅË1 Y^Àã¿\U_²ÏlËò÷.Ü ÈO>”A¦¼Âþ¥ÈõeI¤žwI¸Û4‰ `‡hàýi×þZDÐÊ÷rM•fvVð¸HàʳmV'½XáE–8Ã¥sæpH=kwì¢mJ;‰ÂÄ¢hw™°GøÇ|ñJözŠöz˜ŠöŽCO³$c†.1ÿ|ãúÑ%ºH¯qn‘4lùùSg–}1Ûê8©ï¡‰îöÃ(ˆÇòù21Æ1Á{TÛÄM«ä!\‰BôÆÚ|÷Ôw¾¡¼ÁûçHÿxŽr;óß­hG-Œ…Zo13Û’è vÇ­Fm£$¤­ól-d,ÌHãîôÞ³._͘}¦Y0ƒ¤LTߘW¹}£[¤y<ç2.08+'¶zŽý3RÌ–a(Öv»ŒáCà,y9$ƒÉãéUcÔ'-Ò?.Uc‹•}®WÆ: eÍÔrí“%NÒÝäã®h‚qÐqVDÂEŒ<’Íq(+û¤VÀSî=:Õȧ¶³€[Í!˜L“rcÊÏ888õ¬Äš £Xª`2ƒ–'¡÷"™w%EåbI|óô•CÉjåÃÇ;Onè™"oelrñö£N†iÖˆM¼¬­óÂÏ–`=Aàƒéš‰RæH¡a ù (¤p9Í2m>a±îd{pK2Èc1ÇCŽsÒV"Üv7fCÐÎI½£v6^@üF}zR½µÅª˜P«7ÎC ¾ g¾=jÄ6WÛ*.§ –@HŽøÈÏAçƒPÀ§í­ —2˘ÁVTÎ3‘é×¥7Í»-¦·+Á`g¾I:&T¶åùì0zžöÞâÚ {©QT@ª…·½¹ôçÿÕZV¶ñØn2&ÉOÊ¡”îÀöíQêÞTÐÛBÒ)ß/ïEžy­à¯©¥•®fÚG3YFÁ@î¬ç»7Ó¯ãM·Ò’ëw5¼C0§…ü=kF;’‹æÇ•Xâ.™UAã+Ør)‰åC1¤bßhU(OÞêyèúôªAEsnbí¸ƒOóBbÀ¸r#cœõÆsô4-¬£N·´Ã%¥¬ÆEÁÄ»=AéÖ¤†äIp¢IÒÚ¤!}Ìz6Üõµ ¡kt3ȲL90˜Ãd Ÿ¼qƒß¹®hNwÓbc'r¤k´ˆîaFà€Þüâ´^]ñÙÈÏ ±”ýêÌüÃ<ôãéÒ™ok`eìñHÃy$wïÚžm,%`Öò<ª~G>PÊs†ö<)Ô”ot9µ}‹7xÕì’8Õ‹D™ÇAƒ÷‡¦ 0•üæ ‚+€Xã'ŒôÀþ”ÛãÌ%–H&|yH͸GØdƒž«,\…‹ìó7š"82ç“‚jRrˆ–¨ß¸º™à[¤a]ˆirAã<Ч¼–Ú}Ìê ¹."µPwžXñÎBÕxbžòo)C«–ÑûÇÚ­,‹$‘ÄU£†Ýr„0ÞzbvþtGMXEòêg[Æö‚H®cfRøäü¬½lõïÚ¬@Öë©KŪ"±³gf;®?J‘㋼j³ùÈ2X«ǹ'Óޭؤvv¤FÄà³ÊƒÀÇp*¯×¨´Ð!2dF"\3Xp9O|ÓlÐÝ,ÑÍåÁ)Û$nX³ ÎNöÅ>ÆÒ;Ÿ´mPêÎÇ( ö'“Ôõª$½¬¦Ý% c$ï' ¸“ïZÍ·MXmÝ­|-æh’ynIe’CóŒàœãŒtç½RxašymíÝ¥Ž|23( „W#‚:þ2[Gq§Š<É_äe<ͼ󞣥3H„º$³ygbFÅnb§Øä Áiv%¦¥•kTEµ{Þ¿Ö(õžÕÅôïíÒ@I e8‘“=ƾ*Ä·Oô‘[Å’H9Œ‡`¹àg¯Í6î;¶Ô kçûD6ÙxABvê9úRƒ³»%>¬Ï’ÞÒrì…¢*ŠFªx#8ÇÅXÓÖÎÞè4ne}ÂaD6«˜?J‡í‰¨\IçªÇ&âñü¸ó=GÇ­D‹7ÚÄQ["C™H O±b}ñÓŠéŒ]Rд$ó¬äûÌ9ˆÉBĶG¯9ÏZŠÝ"’GT#¢¬¦w9UÚ}'#õªbÎd‘ÚàãiÊ«.C“ôöô­Ê$hTM&œvü¸þ.Ù¬Úp»DÛ—bâI$Öûáb“4Öã·•=2q÷{õT^ZL¯"LÐÉ´eCÄzqׯ"ÉÊÛ˜]”…b޵·À9ᇥM±ÝÁ-ËGݬ_3àa1žWñ'¥R|ñvÐ|ÎÂO3ª7FDqò†Éåz€çQÆÉsm4å̲,«º6 íÆzœþSËÆm¡®J™pÑžpO\7áQÝZ´ˆë$³V$îÎW¹éœ÷®emŒô—À²É2´…HÞ„nH?®qÞ£7ò\Ë q ò× @»”÷ΩÁª–WqInÖ’™Kòب Œm9÷$f­ÆåäTÙ ‰!ܦP¤8ëÔúŒÖª =KåIêK½Þ§Ðñmbäºn|gŒÕ¸íV/­ι’+˜Â‡+™ð§Ÿ›npO#©EÃ|ñ]Ÿ¢>1Ã&FAÏ|g¿cS½äqAjörMl¤•š%ËÀþ {ƒé؃] ¥ÓA‘ªF…~Í5á ¥’3 Hp8Ï>„â›$×*¸) Ë6A'ž''ùSç)/ê õÈÉî?Jh‚æá%C…8˜e”·?{Ó=8®w6ßb™ÕÅó2§+·ŽãÛj ngº–?·6£V$dwÁ?Oûè¯#‰×ÍŠ"¤îÞ9ãž8éíïV"IeÝ4pÈŸ1÷lUÉ ù‡ŠÖR³Hw°È,à ƒÆ§Ê% §bGŸ§µVS ²ñÄè½ j£CnªÊÏò“æHãb°ô ^õ —¾Uì‘Ûºy,í€Àãœâ”j)1ÆI½FÅÙ-f‹Ìxa1Çq_×Ö »žtxã¶¼¼–9HÇœw¢çŽ{þfY ¸pîˇ*qÉv©l—Ê„H®cÏvàgñéD¥g§P“¶Ây…X§¶º*Û$›ã†céíQɨFŽDѵ¼Ž¢4IF#àüÌzŸçštÒ6á1Ư°9~Ÿ&:Ó?­D±™–yå…‘ãGæŽWóüý+8ÉßÞB¦Û–¢Á-Ð…¤ŽòFb0«»Ê\ñëÇž•ÜÉ,ÛfU•ã!KÁPG$dqSAÞE+O9Pß'”ŸÄ¿ÄF8ÇŸ¨Keåµ¼vß"—Tg]½‰8ÈúŒVßµËÑ¡±ÝÄñ< •Àø>YÏEÏLÔ©þ’IDI ÌCßÁ¬Ãct–Âå-’4 9“9Ïl7Nz àÕ›û-SíF[Ks%³Èy(ŽFzžAëP•H»"yg# ”Ý$JÑÉ*Ä®pU®.ä¶Nۂ̸Îìÿ•IÜÛå§û<™ ŒÄà‘xÁ÷¦N4ávæeIåc—8VãÓü1C¢äîÈ廸Ë;¦º›äŒo ÙížzñÏ¥]‘ílÓý5"”ºí1²ÛƒÆ9àÕ »û—Ž8ÒÞ+[ebP3Ϧ=©¶;#ŽV0<ÎI;€%‚ûûSq…=V¬vE×½“yk};÷{¨n6sÎL~ö¡ui\ˆ‹.V8ÔŽ®jÇÛâ‹L…ÖÝg–6%R~A›ŸNÿZ§}{¦WF€£ d±B{¥kÎÇò+Û™u Ï4žX%s’îǩڽþµ¨®VÁ~Â…CªTàȽNïðªV¬^SHÂ1ÉNÕÆ:sŸCõ©›KEiýž#´HŒNÜžãÒ²çmîˆ×Š"iaq#䃃è©Ìi=¸o# €\!ÁlŽöèzŠdpÍii!–'K’ê7ÆœÎI¿J-Ý“}±Àl2•`¹<“Î}:ŒsZJÿ³„KùBP7žÏÌxÎA$q÷OAéïPHÑM½Â(„ «˜PÈy!¸Ïž: ·mÕ£:[§’-V(-Õÿ{´c8éÈ99ü*•ÄvâA=œ¬1•ILƒß9ôü*y”´@Ú–ˆX'¹†Ø¤£nÒ7sÔŠ’;¨8æž4VgmÌcóH^Á = õ¨b‹tÏo&DÌ¿"€ÍÔŸ_z­{%Ô{¼Ä’’€¸Ï €W?B*¾„yj`› m‘Ÿ•Dy$z‘Qê_(.ØIR¬³0H8ê3“Œg¥Sµг–CÈ]’eFGRGÒ´¾Ëkwåi8¸VQò7ªž¹éRÒ‹×Pk—r(ì®|“1• ˆ1£yƒ9ùzý)«$r¤L·‘ØÔ™£\ä “øvëYòX]Gu/ØÄ³"6DŠ0vç:V³YÆðÛÅ2E,’7ÍvÍ™3Üg5SP’+[áã€Òm ýåpLÐÔ÷rXÜE(¹Œ¼Áwm[øsÒ©jXÃtb†îîG°%·zç§*ÔSA,FÚâ5&3˜³‚qŽäsœûô¥%e{‰íq¡Úêòª&p™™s•Ò‹˜ì¢Z9æ-µpãëÜ ¡3O1g•BáÉprãÛÚ™kùÞmËÞ Ú 9àûÕ¤ï©jäÑîI$` Ã8É÷ü; ¹‚ùÐÿ¦1·A¸°ù‰9ãóÒ«ïsS¶7ÆÐ œOÖ”\LLj¨B rxÎÄÖº4z¢Ýõµ°·Siu%Ì»±òŒOVo\ ñøÓc€ËEtc6Ñå¢ PÞ¹'œÕ ȼÀÊÝU;i^ ñÈ7Ÿ.3n T©;—ØzÕߘi]çk©®!P„AŒÀw⬼‘Á¦ÀÈHI|À¥˜í‡ðŸnC ¡ÃÚ0HÙrñ˜Ì‡ª†ëCçV#ÈVÌýÉGV!H÷Ådš[‘f@Ó& êcã;FCt?–E2iÙÒCæ–mßÅÏJtðd%Ø,›Jˆû˜éÏ~ëTÁ(Ø9'”ô¨Õ»Ûl³m —WD2ß>üŽˆ$â—]IôÜM*!Úª-ÀëPD (Ž„–FÝ‘×ÓúÕÉ-cT’;² 9p2c=†{žy«æ´“è;Ù£$;;"$çƒMû3£o“h’Ðw­´û˜ 3Z¬rª¨Wr2Wßš¦–&d”3>nrÜö­—B“¾Ãá·–eiU—Þ+øWm^Ážd‘æØ~d@¡X0õöÆiR‚Ù´É+äѸéÁüsU±°–. .½Lša+t4.-m‘Ð$¬…Aݼ(ε’ÎñË´|ÌOy©LX’G\WAxdЖÏö‘å¸X‹„2¹À\÷>Õ]ÉH~šV–™Hä#Œ”8ýqOžk©QÖ9îPŒp3“è3REöm:ðJ%7$‚ª±¨Á>ùíU..ç¾bŒß¹‰–¸¿•JWÔ.#^HQ@m€Çg=:Óî¢Ú I‘žO${{õ¨£HpŒ™QÀU&´ž7ky$m€ %X‘Ürü(½Ý‘KS2Þ!=ÂDî!C’dÆqÇ¥Nó"¶ˆAÛ±˜Å¸ÁÇ ö©ü›w„åÒØ‚Híœý¢·¿]=ÿÐQ’YW%¸ôì*^¬™n=l®³ ½¤W!T‚Àäv©ÄæÂ(˜DzÀ|ıOPj+EVhîZé^ifŒH8#“P^̯$m`J…p{7#ŠÝ‰,%’G½f,Ìv©‘9Àv¤‰ –ì¥"6lȨØ$ž¤bf…TÀ“Øš•DFçl¿*3Ä íýjÄ6û“)“êcþgM¹•Vu‰LÑGJbi=2AõÇ8ö5«GºHç9B˜ ÏËÈ=ºÕ™#þÏž)ÙCD˜ÂDÜÁݓؚ4{”ìÇ"I,Qß«›pýÛ©b€{ž:ãŠV¼·û÷ˆ¥ò•8ÉŽ•›ö© ¼!‚Fô%¾ƒÛÖ´îtÈ.U 2[@ÌA’4T>÷Ғ²Ü”ìRÔæS [y¼Ð(îüçPÛL޲%쎮HÃgž?†¯ :;i™sƒ‚¡•IïCÚ£’Å¢o2Þ%pFRRá˜{•Öª3Hµ4È…‹Næ6Wç'aû£ÓŽ• n¥•d²‹Î•hÕ¶rPõÜGþ½eéê~ÖÖÊZ`Éœ¬¥Ï;Ž:ãÒ¶e8™T€ü|Ŷä}j’rweF<ú²-OÙ,íÏ ¡J+¨âOïdœÛÛ5{ì–æöDqÈ/ lG³úÏúVz8/åºôÁ 6çž”Iá!|»@‘OJÙI­éI½dº ¥t¶Š ¤°‘›kÙ¬ÒÍtb„Éa¿w­ò¨ï‚}sWÅ„JÝBݾ^ŸŽ*vÒá‘¥hÞPÎw4£ëëõ©Ši‚¤Ñ›öHÌ‚æLJ‘ãÏqÁ$ý{T³¼—1Çu"Hà»m@§GZ´úcIÄd`X’O—ÀõÇ4è÷ÚZ­²Ë»áŠüËבùö¬ê]{ÄN-jg¤÷ëB´p;m!6‘ÛÖ¦~dˆL1#6>U ýsëOkk[{ÈäÜ[%Îìò~ŸýzŠeœ¢C„R74¤XŽÃÛ¯èƒî‚-jÇØ©·ÓA(‡-!RJçíׯNÆ’×|k/Û v¨Ÿk©]Êx'>™ÇJmÍãÃFâVšP0  ¿áRÙK ½Yåa42£Dà¿Ý ÇO¯4+_^¤ï¸Èï"¼aG$†nÈ÷n½;T»­¾Ï†rÜäL\ç¿ðöªòhwq¶XS#£>ãP Ngm‰€@çpëôçëR⛲ae}Ëêr,€Z²Æ€ÿá¾¹ªëÞL÷’‘;38äÈ}E:-5ao5.€¹~`OeÈïÚ–{”DbV$vÁˆ$c·¹ªŠKáe$¶E«»[Q¤Á{d$1Ë)„¬§%ϽTò 2Ï “q]B©b>\~#œæ®'›k *NËäOpà’xÚ2?QùÔL‘¶Àb!p¨:ÿ½ü@ZÚzY¡­õ(Çi ‘J$½iÎR8ù`}[Ò™yiå¼rÄò&Z6ÛÂóõéœã×fK…û3ZÄËË` ÌGBOQŸëY[d+t1\Ë­¿•2J˜7;¸ôëŠYãŠKÆa m!y.X óŒ{犯k½Þ‚#—ߘÁf#ÓØqOÓb¸yÙât‰Ÿç•9í“МҒÐRK¡%Ä3\Ägki‰?*Ì *–ì~ªŒß¸[yC†'bðpwcÞ´n§º½;c…ÖÞ³#îpqù Sn<·Ci½G*Í(ˆÈà{c§Òœ%mÓ°Ë2Û¤¯+y€6û~AC“œ’}=*_¶¨²($ Š%ø ãðõÎ)SLw97(v‘ˆŸ „îvã?«R\‹&ˆB${DòÊdJýÈ`TNÏbek‘½ì÷r†g%r¤ ðåséQ¥î^$¼Iã·nT #×ð¦\ßyì ÃJ&‹( ¨d ¸È½éòêMpÍçȬáÜFÎ7áHàŒô#šH”‰&¾’öØIæ†# ¢le¸Ç8ÅdÜÙ:ææBž\’0Nã}:€O<Ö¾¡$Ò"Žñ½äês€IÏãÎ=*?>‘´c9Ÿ+í8Ï^ç¯zݾX"Ö„ÆÝîîTM,°ß*#&ÜS9î¶9ü¨W{‹w”¾èâ‘ÛÉLy¬1ÉÜ Àª³µ)2»‰I;Ž8Úzþ\bš×ËlÑ\D62áTG#ñ®}X·$±·–#$¨à»Æ3¼g'iõëϿҒOšÕR13¶ü˜ÐäôûÞÜÔhòÝ2,ªñÅœ’IÁÇB)|ôyv£3dgè?J>ÕØº—¥K_9IšâI]D»±°Œd ½yïT§¸¹F•KyjÜ“°c+èsמx¦éöi0ÚVË®3»o–sÔñÈúzÕ™bR²,¢À–àn,I'¸Ýß®+¢Þm²ÖŒ’Ö8ž6LHðÈà£2ƒÕvžIïíPKÉõav+$ª1æ뎔ç‰>Îd`Ñ¢îušPpÆ6‚9'úÓ,­d6bÞt]Ëó!brç‚ã“Á¡ÂûbÖ› ŒK4¶ˆ«"'P˜:xëüꥻaXã‹>^Ç20@>ÜŸÆ®-ô6ÖÑÆR<¦UaI2NAïéßô§Y],¶“È.<ˆbl5¼‘Ÿ,¡ƒg¹ûÕÚQJÚ°³[hþö1ƒéÇòª—sNÇméP2A­9®âÃ\<9†á‚¼íuÏny¦ ËÄæ)¦ÉHÑ2žXä‘n¦¥Â Ý %ÔGŠyØO:móæF·£Œ;uàïLXd-ÉP‡ rÃ,1ÎG?1#8e¸K¹i.Jîu.0O~ÿ9¨ã’HÚdƒs>åÌ» )Æ1»°=³Wot­5ŒÒË0™.àd')¿)¹È+1ç§W°Ê#‡û9£*ì¨$¸v\{/¤€"Ìêâ9¤®ÅwX‚}ë×ò¨SYYc¸…LÑ|¡Ür£ØÑ;¥¢%]l-ý‘Óæ¶wR×ÌPú~¾ôï9üØ µ&C o–Ø6Ž~ñõÇøUˆ·\Û´îWË‘Z<äýà)Ó-¸„¼vðË4Œ¥™ˆ¶Aù}¸öë\éݤ÷%Êä1.æéÔ´lãpd—`õÝÓžç·Z-TÆÎ²¬nWdq´›@ï½—'9éP²HÈ’ ™Xœò ê R„–”zóÇn+Rk¹_Jc%ǘàù>a  Vû<[<ñ3•h@c$t=Á÷æƒ, 1H®åZVB½9Æv‘É¥OŠèÕ[VHŽ!·óâë´#†ú÷¡'&wY3àÈ…_j̹éÇñ ݧµSždIÞI3½ØŽp=‡¥ q—%¼ï‰ƒ«©ÎÒqó_B>µv~FkBÛê‹›[îi÷‘+ÄÓíÏ$cÐã¿Øk$wpK<@LJrß­u'ʯ#^k\^¾£xDÛÊpO ÙéŸëBI<¶ÒÁ”G@‘¤÷Ž{T÷Vì%B˜2#‚²p ŠÇᎾ”\K¡“Èi•%Á(¬y>¹íùw¬Ü›w$dÖm _h–%¸—$[F¹`1œ’séøTP,“Ü '%¡Œª·pFAü VWc|EÄažáv ¯¼€OLö=±ïW® aFn@UÝÎsŽAjRmh/!/ ‰fž¶ˆË²GËŒüØ#®vž½*ÓiyÑÜØù—Vh0có6KëŽÒ›{æ‹›‹eR&R8.Ê 1Ó<æ¨=đږ6q$Ê\†+ÈÚqþy¢R“•6îh%žžBÊwî켟_qNK•.‹h»61 } “þÑüj¥–¤R/8ª<‡€ç;Ðÿ²GCRÂ$‘¶“$ˆÊIà¿¥bîÝ™ßSFÃj\êZ•¹Œò.é=÷sÚ³~Ù4Ó:þ;b ¯·¸RßãLŠÉå‘¥/á ·SÓ8=êýÿØ­m¢‹Ë0L‡„çÌN7gžãÞ¶çvµõ4½ô¹VݾÊ%o™%uk|¡{Œçœó‘Æ*Ì6ïunÓ&BŒ\€Ë'^„sׯj¯a¯O,ÁL>a‘€Û2x œzc¯vI-ÞðÅ$…>ëF?úüVM=LÞ…Y¥yȱ[ÝB ³åîëÜsô¤¿ž+{EXRV*xìŸ.;`þy©%µW-*±ó#ÀaLýE.¡¶òF¸š6Hö+Ô˜›¸Èึ,ÛUäIäg¡ýzm¾án÷á]_ ·>½}3Ò˜Í2O­IW ¤ƒåPyätˆœœ¤Moss on tree/Moss on tree.xmlPKÜ–O>Áb¼bÝPÝP¤×Moss on tree/climbing-moss.jpegPK˜ñWOpenLP-2.4/tests/resources/themes/Default/0000755000175000017500000000000012657640341017577 5ustar raoulraoulOpenLP-2.4/tests/resources/themes/Default/Default.xml0000644000175000017500000000230012657640340021677 0ustar raoulraoul Default #000000 Arial #FFFFFF 40 False False 0 True False Arial #FFFFFF 12 False False 0 True False 0 0 False OpenLP-2.4/tests/resources/bibles/0000755000175000017500000000000012657640341016166 5ustar raoulraoulOpenLP-2.4/tests/resources/bibles/kjv.json0000644000175000017500000000244612657640340017660 0ustar raoulraoul{ "book": "Genesis", "chapter": 1, "verses": [ [ "1", "In the beginning God created the heaven and the earth."], [ "2", "And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters." ], [ "3", "And God said, Let there be light: and there was light." ], [ "4", "And God saw the light, that it was good: and God divided the light from the darkness." ], [ "5", "And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day." ], [ "6", "And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters." ], [ "7", "And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so." ], [ "8", "And God called the firmament Heaven. And the evening and the morning were the second day." ], [ "9", "And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so." ], [ "10", "And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good." ] ] } OpenLP-2.4/tests/resources/bibles/tests.sqlite0000644000175000017500000006400012657640340020552 0ustar raoulraoulSQLite format 3@ Z Z-æû û  fKzñà̸šˆK1book_name_languageNone¯ nametests#language_id30'download_namenivÙ + download_source version1#permissions copyright ꨺˜øÚÎ1book_name_language#language_id'download_name+download_source version#permissions copyright nameûû8 BÅ^Ôó{ ”sQMÂèoþ‡_CÝñ‹‡§Àû¦,ê²D´õT; ÜÏ$”úuµÔª¾Ü! ka7Ð,– Åæ¡ç9-F!RevelationBJudeA 3 John@ 2 John? 1 John> 2 Peter= 1 Peter< James; Hebrews: Philemon9 Titus8 2 Timothy7 1 Timothy6+2 Thessalonians5+1 Thessalonians4!Colossians3#Philippians2 Ephesians1 Galatians0'2 Corinthians/'1 Corinthians. Romans-Acts,John+Luke*Mark) Matthew( Malachi' Zechariah& Haggai% Zephaniah$ Habakkuk# Nahum" Micah! Jonah ObadiahAmosJoel Hosea Daniel Ezekiel%Lamentations Jeremiah Isaiah+Song of Solomon%Ecclesiastes Proverbs PsalmsJob Esther NehemiahEzra%2 Chronicles%1 Chronicles 2 Kings 1 Kings 2 Samuel 1 Samuel Ruth Judges Joshua#Deuteronomy Numbers Leviticus Exodus  Genesis BvüöðêäÞØÒÌÆÀº´®¨¢œ–Š„~xrlf`ZTNHB<60*$ úôîèâÜÖÐÊľ¸²¬¦ š”Žˆ‚|vBBAA@@??>>==<<;;::99887766554433221100//..--,,++**))((''&&%%$$##""!!       ûûöìì  ÆüöðêäÞØÒÌÆ%%%%%%%%%%%%%%%%%%%%%%%%%%%¡›•‰ƒ}wqke_YSMGA;5/)$    ÅûõïéãÝ×ÑËÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ¡¡¡¡¡¡¢œ–Š„~xrlf`ZTNHB<60*$ 6 6 6666666 6’’¬¬F“áæk”iW Here is a trustworthy saying: If anyone sets his heart on being an overseer, he desires a noble task. ùùr£L’wAtablemetadatametadataCREATE TABLE metadata ( "key" VARCHAR(64) NOT NULL, value TEXT, PRIMARY KEY ("key") )/Cindexsqlite_autoindex_metadata_1metadata&‚/tablebookbookCREATE TABLE book ( id INTEGER NOT NULL, book_reference_id INTEGER, testament_reference_id INTEGER, name VARCHAR(50), PRIMARY KEY (id) )D%]indexix_book_namebookCREATE INDEX ix_book_name ON book (name)l?indexix_book_book_reference_idbookCREATE INDEX ix_book_book_reference_id ON book (book_reference_id) ÆüöðêäÞØÒÌÆ$$$$$$$$$$$$$$$$$$$$$$$$$$$¢œ–Š„~xrlf`ZTNHB<60*$    µÒr¼µQ -mindexix_verse_chapterverseCREATE INDEX ix_verse_chapter ON verse (chapter)G‚mtableverseverseCREATE TABLE verse ( id INTEGER NOT NULL, book_id INTEGER, chapter INTEGER, verse INTEGER, text TEXT, PRIMARY KEY (id), FOREIGN KEY(book_id) REFERENCES book (id) )K)eindexix_verse_verseverseCREATE INDEX ix_verse_verse ON verse (verse)Q-mindexix_verse_book_idverse CREATE INDEX ix_verse_book_id ON verse (book_id)H 'aindexix_verse_textverse CREATE INDEX ix_verse_text ON verse (text)B #Yindexix_verse_idverse CREATE INDEX ix_verse_id ON verse (id) ÅûõïéãÝ×ÑËÅ###########################¢œ–Š„~xrlf`ZTNHB<60*$     8€òäÓı£•‰yiZK7#ùîàм¥—‡sdVI=1"ûëÚÌ»¬œ‚uhYC- õâʲ Ž€ 88Titus772 Timothy661 Timothy5+52 Thessalonians4+41 Thessalonians3!3Colossians2#2Philippians11Ephesians00Galatians/'/2 Corinthians.'.1 Corinthians --Romans ,,Acts ++John **Luke ))Mark((Matthew ' 'Malachi& &Zechariah % %Haggai$ $Zephaniah# #Habakkuk " "Nahum ! !Micah   Jonah  Obadiah  Amos  Joel  Hosea  Daniel  Ezekiel %Lamentations Jeremiah  Isaiah +Song of Solomon %Ecclesiastes Proverbs  Psalms  Job  Esther Nehemiah  Ezra %2 Chronicles  % 1 Chronicles   2 Kings   1 Kings   2 Samuel   1 Samuel  Ruth  Judges  Joshua #Deuteronomy  Numbers Leviticus  Exodus  Genesis dïßÑÁ±¢“„wdB!BRevelation AAJude @@3 John ??2 John >>1 John==2 Peter<<1 Peter ;;James::Hebrews99Philemon ÐÐ@Ö:  n W6Here is a trustworthy saying: If anyone sets his heart on being an overseer, he desires a noble task.‚6Now the overseer must be above reproach, the husband of but one wife, temperate, self-controlled, respectable, hospitable, able to teach,b=6not given to drunkenness, not violent but gentle, not quarrelsome, not a lover of money.dA6He must manage his own family well and see that his children obey him with proper respect.gG6(If anyone does not know how to manage his own family, how can he take care of God's church?)ta6He must not be a recent convert, or he may become conceited and fall under the same judgment as the devil.w6He must also have a good reputation with outsiders, so that he will not fall into disgrace and into the devil's trap. »»A™ŽŽ6Deacons, likewise, are to be men worthy of respect, sincere, not indulging in much wine, and not pursuing dishonest gain.V %6 They must keep hold of the deep truths of the faith with a clear conscience.j M6 They must first be tested; and then if there is nothing against them, let them serve as deacons.ûr ÓÓ6µ0bG(If anyone does not know how to manage his own family, how can he take care of God's church?)~Deacons, likewise, are to be men worthy of respect, sincere, not indulging in much wine, and not pursuing dishonest gain.zwHe must also have a good reputation with outsiders, so that he will not fall into disgrace and into the devil's trap._AHe must manage his own family well and see that his children obey him with proper respect.oaHe must not be a recent convert, or he may become conceited and fall under the same judgment as the devil. ZZêP¢‚Now the overseer must be above reproach, the husband of but one wife, temperate, self-controlled, respectable, hospitable, able to teach,eMThey must first be tested; and then if there is nothing against them, let them serve as deacons. Q%They must keep hold of the deep truths of the faith with a clear conscience. ]=not given to drunkenness, not violent but gentle, not quarrelsome, not a lover of money.OpenLP-2.4/tests/resources/bibles/dk1933-books.csv0000644000175000017500000000074212657640340020736 0ustar raoulraoul1,1,1. Mosebog,1Mos 2,1,2. Mosebog,2Mos 3,1,3. Mosebog,3Mos 4,1,4. Mosebog,4Mos 5,1,5. Mosebog,5Mos 6,1,Josvabogen,jos 7,1,Dommerbogen,dom 8,1,Ruths Bog,ruth 9,1,1. Samuelsbog,1Sam 10,1,2. Samuelsbog,2Sam 11,1,1. Kongebog,1kong 12,1,2. Kongebog,2kong 13,1,1. Krønikebog,1kron 14,1,2. Krønikebog,2kron 15,1,Ezras Bog,ezra 16,1,Nehemias' Bog,neh 17,1,Esters Bog,est 18,1,Jobs Bog,job 19,1,Salmernes Bog,sl 20,1,Ordsprogenes Bog,ordsp 21,1,Prædikerens Bog,prad 22,1,Højsangen,hojs OpenLP-2.4/tests/resources/bibles/osis-web.xml0000644000175000017500000002000112657640340020430 0ustar raoulraoul
2007-08-26T08.23.41

This draft version of the World English Bible is substantially complete in the New Testament, Genesis, Exodus, Job, Psalms, Proverbs, Ecclesiastes, Song of Solomon, and the “minor†prophets. Editing continues on the other books of the Old Testament. All WEB companion Apocrypha books are still in rough draft form.

Converted web.gbf in GBF to web.osis.xml in an XML format that is mostly compliant with OSIS 2.0 using gbf2osis.exe. (Please see http://ebt.cx/translation/ for links to this software.)

GBF and OSIS metadata fields do not exactly correspond to each other, so the conversion is not perfect in the metadata. However, the Scripture portion should be correct.

No attempt was to convert quotation marks to structural markers using q or speech elements, because this would require language and style-dependent processing, and because the current OSIS specification is deficient in that quotation mark processing is not guaranteed to produce the correct results for all languages and translations. In English texts, the hard part of the conversion to markup is figuring out what ’ means. The other difficulty is that OSIS in no way guarantees that these punctuation marks would be reconstituted properly by software that reads OSIS files for anything other than modern English, and even then, it does not accommodate all styles of punctuation and all cases. We strongly recommend that anyone using OSIS NOT replace quotation mark punctuation in any existing text with q or speech elements. It is better for multiple language processing capabilities to leave the quotation punctuation as part of the text. If you need the q or speech markup, then you may supplement those punctuation marks with those markup elements, but specify the n='' parameter in those elements to indicate that no generation of any punctuation from those markup elements is required or desired. That way you can have BOTH correct punctuation already in the text AND markup so that you can automatically determine when you are in a quotation or not, independent of language. This may be useful for a search by speaker, for example.

The output of gbf2osis marks Jesus' words in a non-standard way using the q element AND quotation marks if they were marked with FR/Fr markers in the GBF file. The OSIS 2.0 specification requires that quotation marks be stripped out, and reinserted by software that reads the OSIS files when q elements are used. This is not acceptable for the reasons given above, and we choose not to do that, but we used the q element with who='Jesus' to indicate Jesus' words. Do not generate any additional punctuation due to these markers. The correct punctuation is already in the text.

OSIS does not currently support footnote start anchors. Therefore, these start anchors have been represented with milestone elements, in case someone might like to use them, for example, to start an href element in a conversion to HTML. (OSIS sort of supports the same idea by allowing a catchword to be defined within a footnote, but I did not implement the processing to convert to this different way of doing things, and it isn't exactly the same, anyway.)

Traditional psalm book titles are rendered as text rather than titles, because the title element does not support containing transChange elements, as would be required to encode the KJV text using OSIS title elements. This may actually be a superior solution, anyway, in that the Masoretic text makes no such distinction (even though many modern typeset Bibles do make a typographic distinction in this case).

The schema location headers were modified to use local copies rather than the standard locations so that these files could be validated and used without an Internet connection active at all times (very important for the developer's remote island location), but you may wish to change them back.

World English Bible WEB committee 2007-08-26 Rainbow Missions, Inc. Bible Bible.en.WEB.draft.2007-08-26 http://eBible.org/web/ ENG Wherever English is spoken in the world. The World English Bible is dedicated to the Public Domain by the translators and editors. It is not copyrighted. “World English Bible†and the World English Bible logo are a trademarks of Rainbow Missions, Inc. They may only be used to identify this translation of the Holy Bible as published by Rainbow Missions, Inc., and faithful copies and quotations. “Faithful copies†include copies converted to other formats (i. e. HTML, PDF, etc.) or typeset differently, without altering the text of the Scriptures, except that changing the spellings between preferred American and British usage is allowed. Use of the markings of direct quotes of Jesus Christ for different rendition (i. e. red text) is optional. Comments and typo reports are welcome at http://eBible.org/cgi-bin/comment.cgi. Please see http://eBible.org/web/ for updates, revision status, free downloads, and printed edition purchase information. Gen-Mal Tob-AddEsth Bar-EpJer AddDan Matt-Rev Bible.WEB
Genesis

In the beginning GodThe Hebrew word rendered “God†is “Elohim.†After “God,†the Hebrew has the two letters “Aleph Tav†(the first and last letters of the Hebrew alphabet) as a grammatical marker. created the heavens and the earth. Now the earth was formless and empty. Darkness was on the surface of the deep. God’s Spirit was hovering over the surface of the waters.

God said, “Let there be light,†and there was light. God saw the light, and saw that it was good. God divided the light from the darkness. God called the light “day,†and the darkness he called “night.†There was evening and there was morning, one day.

God said, “Let there be an expanse in the middle of the waters, and let it divide the waters from the waters.†God made the expanse, and divided the waters which were under the expanse from the waters which were above the expanse; and it was so. God called the expanse “sky.†There was evening and there was morning, a second day.

God said, “Let the waters under the sky be gathered together to one place, and let the dry land appear;†and it was so. God called the dry land “earth,†and the gathering together of the waters he called “seas.†God saw that it was good.

OpenLP-2.4/tests/resources/bibles/rst.json0000644000175000017500000000300612657640340017667 0ustar raoulraoul{ "book": "Exodus", "chapter": 1, "verses": [ [ "1", "Вот имена Ñынов Израилевых, которые вошли в Египет Ñ Ð˜Ð°ÐºÐ¾Ð²Ð¾Ð¼, вошли каждый Ñ Ð´Ð¾Ð¼Ð¾Ð¼ Ñвоим:" ], [ "2", "Рувим, Симеон, Левий и Иуда," ], [ "3", "ИÑÑахар, Завулон и Вениамин," ], [ "4", "Дан и Ðеффалим, Гад и ÐÑир." ], [ "5", "Ð’Ñех же душ, проиÑшедших от чреÑл Иакова, было ÑемьдеÑÑÑ‚, а ИоÑиф был [уже] в Египте." ], [ "6", "И умер ИоÑиф и вÑе Ð±Ñ€Ð°Ñ‚ÑŒÑ ÐµÐ³Ð¾ и веÑÑŒ род их;" ], [ "7", "а Ñыны Израилевы раÑплодилиÑÑŒ и размножилиÑÑŒ, и возроÑли и уÑилилиÑÑŒ чрезвычайно, и наполнилаÑÑŒ ими Ð·ÐµÐ¼Ð»Ñ Ñ‚Ð°." ], [ "8", "И воÑÑтал в Египте новый царь, который не знал ИоÑифа," ], [ "9", "и Ñказал народу Ñвоему: вот, народ Ñынов Израилевых многочиÑлен и Ñильнее наÑ;" ], [ "10", "перехитрим же его, чтобы он не размножалÑÑ; иначе, когда ÑлучитÑÑ Ð²Ð¾Ð¹Ð½Ð°, ÑоединитÑÑ Ð¸ он Ñ Ð½Ð°ÑˆÐ¸Ð¼Ð¸ неприÑтелÑми, и вооружитÑÑ Ð¿Ñ€Ð¾Ñ‚Ð¸Ð² наÑ, и выйдет из земли [нашей]." ] ] } OpenLP-2.4/tests/resources/bibles/dk1933.json0000644000175000017500000000221212657640340017773 0ustar raoulraoul{ "book": "Genesis", "chapter": 1, "verses": [ [ "1", "I Begyndelsen skabte Gud Himmelen og Jorden."], [ "2", "Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ã…nd svævede over Vandene." ], [ "3", "Og Gud sagde: \"Der blive Lys!\" Og der blev Lys." ], [ "4", "Og Gud sÃ¥, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket," ], [ "5", "og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag." ], [ "6", "DerpÃ¥ sagde Gud: \"Der blive en Hvælving midt i Vandene til at skille Vandene ad!\"" ], [ "7", "Og sÃ¥ledes skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen;" ], [ "8", "og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag." ], [ "9", "DerpÃ¥ sagde Gud: \"Vandet under Himmelen samle sig pÃ¥ eet Sted, sÃ¥ det faste Land kommer til Syne!\" Og sÃ¥ledes skete det;" ], [ "10", "og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud sÃ¥, at det var godt." ] ] }OpenLP-2.4/tests/resources/bibles/web.json0000644000175000017500000000244512657640340017642 0ustar raoulraoul{ "book": "Genesis", "chapter": "1", "verses": [ [ "1", "In the beginning God created the heavens and the earth."], [ "2", "Now the earth was formless and empty. Darkness was on the surface of the deep. God’s Spirit was hovering over the surface of the waters." ], [ "3", "God said, “Let there be light,†and there was light." ], [ "4", "God saw the light, and saw that it was good. God divided the light from the darkness." ], [ "5", "God called the light “day,†and the darkness he called “night.†There was evening and there was morning, one day." ], [ "6", "God said, “Let there be an expanse in the middle of the waters, and let it divide the waters from the waters.â€" ], [ "7", "God made the expanse, and divided the waters which were under the expanse from the waters which were above the expanse; and it was so." ], [ "8", "God called the expanse “sky.†There was evening and there was morning, a second day." ], [ "9", "God said, “Let the waters under the sky be gathered together to one place, and let the dry land appear;†and it was so." ], [ "10", "God called the dry land “earth,†and the gathering together of the waters he called “seas.†God saw that it was good." ] ] } OpenLP-2.4/tests/resources/bibles/osis-dk1933-empty-verse.xml0000644000175000017500000000463212657640340023063 0ustar raoulraoul
Dette er Biblen Bible.DanDetteBiblen Bible.KJV Bible.KJV
I Begyndelsen skabte Gud Himmelen og Jorden. Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ånd svævede over Vandene.

Og Gud sagde: "Der blive Lys!" Og der blev Lys. Og Gud så, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket, og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag.

Derpå sagde Gud: "Der blive en Hvælving midt i Vandene til at skille Vandene ad!" Og således skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen; og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag.

Derpå sagde Gud: "Vandet under Himmelen samle sig på eet Sted, så det faste Land kommer til Syne!" Og således skete det; og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud så, at det var godt.

OpenLP-2.4/tests/resources/bibles/zefania-rst.xml0000644000175000017500000000576412657640340021146 0ustar raoulraoul Russian Synodal Translation Zefania XML Bible Markup Language 2009-01-20 Jens Grabner http://www.agape-biblia.org http://www.crosswire.org/sword/modules/ RUS RST 1876 Russian Synodal Translation, 1956 Edition The text was supplied by "Light in East Germany". "Light in East Germany" Tel +49 711 83 30 57 Postfach 1340 Fax +49 711 83 13 51 7015 Korntal Munchingen 1 Germany Ð’Ñ‚Ð¾Ñ€Ð°Ñ ÐºÐ½Ð¸Ð³Ð° МоиÑеева. ИÑход Вот имена Ñынов Израилевых, которые вошли в Египет Ñ Ð˜Ð°ÐºÐ¾Ð²Ð¾Ð¼, вошли каждый Ñ Ð´Ð¾Ð¼Ð¾Ð¼ Ñвоим: Рувим, Симеон, Левий и Иуда, ИÑÑахар, Завулон и Вениамин, Дан и Ðеффалим, Гад и ÐÑир. Ð’Ñех же душ, проиÑшедших от чреÑл Иакова, было ÑемьдеÑÑÑ‚, а ИоÑиф был [уже] в Египте. И умер ИоÑиф и вÑе Ð±Ñ€Ð°Ñ‚ÑŒÑ ÐµÐ³Ð¾ и веÑÑŒ род их; а Ñыны Израилевы раÑплодилиÑÑŒ и размножилиÑÑŒ, и возроÑли и уÑилилиÑÑŒ чрезвычайно, и наполнилаÑÑŒ ими Ð·ÐµÐ¼Ð»Ñ Ñ‚Ð°. И воÑÑтал в Египте новый царь, который не знал ИоÑифа, и Ñказал народу Ñвоему: вот, народ Ñынов Израилевых многочиÑлен и Ñильнее наÑ; перехитрим же его, чтобы он не размножалÑÑ; иначе, когда ÑлучитÑÑ Ð²Ð¾Ð¹Ð½Ð°, ÑоединитÑÑ Ð¸ он Ñ Ð½Ð°ÑˆÐ¸Ð¼Ð¸ неприÑтелÑми, и вооружитÑÑ Ð¿Ñ€Ð¾Ñ‚Ð¸Ð² наÑ, и выйдет из земли [нашей]. OpenLP-2.4/tests/resources/bibles/dk1933-verses.csv0000644000175000017500000000172212657640340021127 0ustar raoulraoul1,1,1,"I Begyndelsen skabte Gud Himmelen og Jorden." 1,1,2,"Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ã…nd svævede over Vandene." 1,1,3,"Og Gud sagde: ""Der blive Lys!"" Og der blev Lys." 1,1,4,"Og Gud sÃ¥, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket," 1,1,5,"og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag." 1,1,6,"DerpÃ¥ sagde Gud: ""Der blive en Hvælving midt i Vandene til at skille Vandene ad!""" 1,1,7,"Og sÃ¥ledes skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen;" 1,1,8,"og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag." 1,1,9,"DerpÃ¥ sagde Gud: ""Vandet under Himmelen samle sig pÃ¥ eet Sted, sÃ¥ det faste Land kommer til Syne!"" Og sÃ¥ledes skete det;" 1,1,10,"og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud sÃ¥, at det var godt." OpenLP-2.4/tests/resources/bibles/osis-dk1933.xml0000644000175000017500000000454412657640340020607 0ustar raoulraoul
Dette er Biblen Bible.DanDetteBiblen Bible.KJV Bible.KJV
I Begyndelsen skabte Gud Himmelen og Jorden. Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ånd svævede over Vandene.

Og Gud sagde: "Der blive Lys!" Og der blev Lys. Og Gud så, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket, og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag.

Derpå sagde Gud: "Der blive en Hvælving midt i Vandene til at skille Vandene ad!" Og således skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen; og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag.

Derpå sagde Gud: "Vandet under Himmelen samle sig på eet Sted, så det faste Land kommer til Syne!" Og således skete det; og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud så, at det var godt.

OpenLP-2.4/tests/resources/bibles/opensong-dk1933.xml0000644000175000017500000000465712657640340021467 0ustar raoulraoul Danish Version The Holy Bible The electronic edition of this Bible comes from the Danish 1933 edition. The Old Testament is an update from the 1931 edition, and the New Testament is an update from the 1907 edition. Free Bible Software Group The Unbound Bible Biola University: Administrative Computing 13800 Biola Ave. La Mirada, CA 90639 United States of America 562-903-4722 2009-01-20 Zefania XML Bible Markup Language DAN ftp://unboundftp.biola.edu/pub/danish1933_utf8.zip DAN provide the bible to the world I Begyndelsen skabte Gud Himmelen og Jorden. Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ånd svævede over Vandene. Og Gud sagde: "Der blive Lys!" Og der blev Lys. Og Gud så, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket, og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag. Derpå sagde Gud: "Der blive en Hvælving midt i Vandene til at skille Vandene ad!" Og således skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen; og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag. Derpå sagde Gud: "Vandet under Himmelen samle sig på eet Sted, så det faste Land kommer til Syne!" Og således skete det; og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud så, at det var godt. OpenLP-2.4/tests/resources/bibles/zefania-dk1933.xml0000644000175000017500000000535612657640340021251 0ustar raoulraoul Danish Version The Holy Bible The electronic edition of this Bible comes from the Danish 1933 edition. The Old Testament is an update from the 1931 edition, and the New Testament is an update from the 1907 edition. Free Bible Software Group The Unbound Bible Biola University: Administrative Computing 13800 Biola Ave. La Mirada, CA 90639 United States of America 562-903-4722 2009-01-20 Zefania XML Bible Markup Language DAN ftp://unboundftp.biola.edu/pub/danish1933_utf8.zip DAN provide the bible to the world I skabte Gud Himmelen og Jorden. Og Jorden var øde og tom, og der var Mørke over Verdensdybet. Men Guds Ånd svævede over Vandene. Og Gud sagde: "Der blive Lys!" Og der blev Lys. Og Gud så, at Lyset var godt, og Gud satte Skel mellem Lyset og Mørket, og Gud kaldte Lyset Dag, og Mørket kaldte han Nat. Og det blev Aften, og det blev Morgen, første Dag. Derpå sagde Gud: "Der blive en Hvælving midt i Vandene til at skille Vandene ad!" Og således skete det: Gud gjorde Hvælvingen og skilte Vandet under Hvælvingen fra Vandet over Hvælvingen; og Gud kaldte Hvælvingen Himmel. Og det blev Aften, og det blev Morgen, anden Dag. Derpå sagde Gud: "Vandet under Himmelen samle sig på eet Sted, så det faste Land kommer til Syne!" Og således skete det; og Gud kaldte det faste Land Jord, og Stedet, hvor Vandet samlede sig, kaldte han Hav. Og Gud så, at det var godt. OpenLP-2.4/tests/resources/bibles/osis-kjv.xml0000644000175000017500000001533012657640340020456 0ustar raoulraoul
King James Version (1769) with Strongs Numbers and Morphology Bible.KJV Gen-Rev Bible.KJV Bible.KJV Dict.Strongs Dict.Robinsons Dict.strongMorph
THE FIRST BOOK OF MOSES CALLED GENESIS CHAPTER 1. In the beginning God created the heaven and the earth. And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters. And God said, Let there be light: and there was light. And God saw the light, that it was good: and God divided the light from the darkness.the light from…: Heb. between the light and between the darkness And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.And the evening…: Heb. And the evening was, and the morning was etc. And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.firmament: Heb. expansion And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so. And God called the firmament Heaven. And the evening and the morning were the second day.And the evening…: Heb. And the evening was, and the morning was etc. And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so. And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.
OpenLP-2.4/tests/resources/easyworshipsongs/0000755000175000017500000000000012657640341020355 5ustar raoulraoulOpenLP-2.4/tests/resources/easyworshipsongs/Songs.DB0000644000175000017500000002400012657640340021650 0ustar raoulraoulclÂßkL1Þk-ÿÿ2#,ÌßkÒËßk    Ø88ǵ!22d2 ú ÿ     ÿ    ô*ákù+ákÿ+ák,ák ,ák#,ák-,ák;,ákA,ákT,ák\,áke,ákx,ák‹,ákŸ,ák³,ák¾,ákÍ,ák×,ákæ,ákï,áký,ák-ák-ák -ák1-ákI-ákY-ákk-áku-ákˆ-ák“-ák¨-ákµ-ákË-ákÙ-ákå-ákò-ákü-ák.ák.ák&.ák@.ákU.áki.ák.ákresttemp.DBTitleAuthorRecIDText Percentage BottomCopyrightAdministratorWordsDefault BackgroundBK TypeBK ColorBK Gradient Color1BK Gradient Color2BK Gradient ShadingBK Gradient VariantBK TextureBK Bitmap NameBK BitmapBK AspectRatioFavoriteLast ModifiedDemo DataSong NumberBK ThumbnailOverride EnabledFont Size Limit DefaultFont Size LimitFont Name DefaultFont NameText Color DefaultText ColorShadow Color DefaultShadow ColorOutline Color DefaultOutline ColorShadow TextOutline TextBold TextItalic TextText AlignmentVert AlignmentText Percent Rect DefaultText Percentage LeftText Percentage TopText Percentage RightVendor ID53 74 !"#$%&'()*+,-./0126asciiÆAmazing GraceJohn Newton€p€Public Domain{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}{\f1\fnil\fcharset1 Verdana;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\gÿpý €€€€ÿ€™33€€€€€ÂÌäk?02€€€€d€ÿÿÿ€€€€€€€€€€€€Beautiful Garden Of PrayerEleanor Allen Schroll James H. Fillmore€|€dPublic Domain{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset0 Arial;}{\f1\fnil\fcharset0 Verdana;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\gÿ & €€€€€d€ÿÿÿ€€€€€€€€€d€d€d€Vi pløjed og vi så'deMatthias Claudius€}€Public Domain{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\ÿP€€€€ÿ€™33€€€€€ÂÌäkLŠ—€€Den Danske€€d€ÿÿÿ€€€€€€€€€€€€ûVi pløjed og vi så'deMatthias Claudius€}€d{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\ÿ0€€ÂÌäë1*€Den Danske€€d€ÿÿÿ€€€€€€€€€d€d€d€Vi pløjed og vi så'deMatthias Claudius€}€d{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\ÿ0€€ÂÌäë1*€Den Danske€€d€ÿÿÿ€€€€€€€€€d€d€d€Vi pløjed og vi så'deMatthias Claudius€}€d{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\ÿ0€€ÂÌäë1*€Den Danske€€d€ÿÿÿ€€€€€€€€€d€d€d€OpenLP-2.4/tests/resources/easyworshipsongs/test1.ews0000644000175000017500000000524212657640340022137 0ustar raoulraoulEasyWorship Schedule File Version 5@@Vi pløjed og vi så'deMatthias Claudius€ÿ33™g9¯}`ä@VdÿÿÿDen Danske HxÚí—ÍŽÓ0ÇïH¼ÃìiU¨ Û¥+!â8ùâÔ“ÄcÛ  *ïÎŒÛ]í_1övâ:?ÿ3žO÷ÂǺÒ-Öõ’?£¬ÊÕÙ^ÔÎÆX2–¢¶ÚˆzÓJ0ðÆki^MÓ^lœqžf j)h—¢2;\¾â¡rµº;xœW”뻃‡yôØÍÇÙø!õr6¯ Óí}Ã7–»É½5xɽ¥÷’»¼o±;НÄ]”G 鉋ò¦¼Ûü{Q“ä€þKQ–g˃Ý«5Ù½ô)Öëƒå¯¬Xœ­ØÚ‹gb°7f4Y»ïy Jù¾•¶¡/mÚø²¤ùƒ_c5 ¹>MÓãG×9eâ˜èsA/ÈR¸ÉÅœ‘eþ\ÏÓ; ÕïëÙ?™~F:ÿI¿`½L¬ßÛ¶_ ÖQÖE¦³镸l„ÑToèòt…Š.#‚\‚ŒÔ6£PœSEŠVöráRQ‚‚Ÿüh@Ã`Äi½Þ¢×À¨!ˆS\*œO”s„£‰¶Î«Å|d•T¬°•=¸í–×0æp]mzÿHZ?èÞÖÊù $y‘öŒS,ÖÒ(h±±þì U{ØC]Zƒ=’åÓK• #Döc}žT!é{„^Å.“Ìçó‰óŸ|Û:¿ €7Æ 4NчÑÏ¡s}܈Öb~&DÙ’ð~§°• ¼ Èû42Ÿ]SâJàãäòF7-ª“±}‡ÚVÎ| ø&—oùß. ÉE£6ÛœðZg²—(4¢¶Mfþu&ÕI"R—Ò!ùÝd*¤ÞY¶©˜ð¹*{0ß8ÒY–œ‚8è¹Üxbz9Z `ù>«–ñÁÕíxWp{àÐs¦Ti%›‘»’ß¹NY§dC ¡JúÕ뇪öPÕfUµóÉ/䧨ÝñmÞIÊÏlïó‘½8Ú^7W&•“Ež÷;ç-õܲœN'“)˜¡ÂÜ`p%¶"©<Éêƒ;É]*h©jô˜ÛVZ×0>#øÓVå8²gšäòëi  7ÁHýuöÞó!I6wƒèOJÛZÚèÿèôiÊeQKOpenLP-2.4/tests/resources/easyworshipsongs/Songs.MB0000644000175000017500000010000012657640340021654 0ustar raoulraoul‚s)@¡0² {\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset0 Arial;}{\f1\fnil\fcharset0 Verdana;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\blue0;\red0\green255\blue0;\red0\green255\blue255;\red0\green128\blue128;\red0\green0\blue128;\red255\green255\blue255;\red192\green192\blue192;\red128\green128\blue128;\red255\green255\blue255;}\paperw12240\paperh15840\margl1880\margr1880\margt1440\margb1440{\*\pnseclvl1\pnucrm\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl2\pnucltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl3\pndec\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl4\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Amazing grace how sweet the sound,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut That saved a wretch like me;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut I once was lost, but now am found\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Was blind, but now I see. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut T'was grace that taught my heart to fear,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And grace my fears relieved;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut How precious did that grace appear\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut The hour I first believed. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Through many dangers, toil and snares,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut I have already come;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut 'Tis grace has brought me safe thus far,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And grace will lead me home. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 4\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut When we've been there ten thousand years\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Bright shining as the sun,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut We've no less days to sing God's praise\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Than when we've first begun.} }& {\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset0 Arial;}{\f1\fnil\fcharset0 Verdana;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\blue0;\red0\green255\blue0;\red0\green255\blue255;\red0\green128\blue128;\red0\green0\blue128;\red255\green255\blue255;\red192\green192\blue192;\red128\green128\blue128;\red255\green255\blue255;}\paperw12240\paperh15840\margl1880\margr1880\margt1440\margb1440{\*\pnseclvl1\pnucrm\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl2\pnucltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl3\pndec\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl4\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Chorus 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut O the beautiful garden, the garden of prayer,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut O the beautiful garden of prayer.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut There my Savior awaits, and He opens the gates\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut To the beautiful garden of prayer. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut There's a garden where Jesus is waiting,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut There's a place that is wondrously fair.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut For it glows with the light of His presence,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut 'Tis the beautiful garden of prayer. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut There's a garden where Jesus is waiting,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And I go with my burden and care.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Just to learn from His lips, words of comfort,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut In the beautiful garden of prayer. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut There's a garden where Jesus is waiting,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And He bids you to come meet Him there,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Just to bow and receive a new blessing,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut In the beautiful garden of prayer.} }{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\blue0;\red0\green255\blue0;\red0\green255\blue255;\red0\green128\blue128;\red0\green0\blue128;\red255\green255\blue255;\red192\green192\blue192;\red128\green128\blue128;\red255\green255\blue255;}\paperw12240\paperh15840\margl1880\margr1880\margt1440\margb1440{\*\pnseclvl1\pnucrm\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl2\pnucltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl3\pndec\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl4\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Vi pl\'f8jed og vi s\'e5'de\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut vor s\'e6d i sorten jord,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 bad vi ham os hj\'e6lpe,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut som h\'f8jt i Himlen bor,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og han lod snefald hegne\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut mod frosten barsk og h\'e5rd,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut han lod det t\'f8 og regne\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og varme mildt i v\'e5r.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Han er jo den, hvis vilje\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut opholder alle ting,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut han kl\'e6der markens lilje\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og runder himlens ring,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut ham lyder vind og vove,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut ham r\'f8rer ravnes n\'f8d,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut hvi skulle ej hans sm\'e5b\'f8rn\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut da og f\'e5 dagligt br\'f8d?\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Ja, tak, du k\'e6re Fader,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 mild, s\'e5 rig, s\'e5 rund,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for korn i h\'e6s og lader,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for godt i allen stund!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Vi kan jo intet give,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut som nogen ting er v\'e6rd,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut men tag vort stakkels hjerte,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 ringe som det er!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut } }{\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\blue0;\red0\green255\blue0;\red0\green255\blue255;\red0\green128\blue128;\red0\green0\blue128;\red255\green255\blue255;\red192\green192\blue192;\red128\green128\blue128;\red255\green255\blue255;}\paperw12240\paperh15840\margl1880\margr1880\margt1440\margb1440{\*\pnseclvl1\pnucrm\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl2\pnucltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl3\pndec\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl4\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Vi pl\'f8jed og vi s\'e5'de\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut vor s\'e6d i sorten jord,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 bad vi ham os hj\'e6lpe,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut som h\'f8jt i Himlen bor,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og han lod snefald hegne\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut mod frosten barsk og h\'e5rd,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut han lod det t\'f8 og regne\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og varme mildt i v\'e5r.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Han er jo den, hvis vilje\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut opholder alle ting,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut han kl\'e6der markens lilje\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut og runder himlens ring,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut ham lyder vind og vove,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut ham r\'f8rer ravnes n\'f8d,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut hvi skulle ej hans sm\'e5b\'f8rn\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut da og f\'e5 dagligt br\'f8d?\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Ja, tak, du k\'e6re Fader,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 mild, s\'e5 rig, s\'e5 rund,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for korn i h\'e6s og lader,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for godt i allen stund!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Vi kan jo intet give,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut som nogen ting er v\'e6rd,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut men tag vort stakkels hjerte,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 ringe som det er!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Chorus \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut Alle gode gaver\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut de kommer ovenned,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut s\'e5 tak da Gud, ja, pris dog Gud\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut for al hans k\'e6rlighed!\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f0\fs16\fntnamaut } }txtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Stilla jag min blick vill f\'e4sta,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Herre Jesus, blott p\'e5 dig,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut viss om att du vet mitt b\'e4sta,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut du som trofast hj\'e4lper mig.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Vid din hand\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut jag trygghet vinner,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut fram till saligheten hinner.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Stilla m\'e5 min v\'e4g jag vandra,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut vara trogen i mitt kall,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut bli till tr\'f6st\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut och st\'f6d f\'f6r andra,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut ej till st\'f6testen och fall.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Bygga upp, ej riva neder,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \'e4r en kristens plikt och heder.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Stilla m\'e5 jag Herren bida\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut och f\'f6rs\'f6ka g\'f6ra gott,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut medan dagens timmar skrida\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut nyttja fristen som jag f\'e5tt.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Snart \'e4r sista timmen slagen,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut och jag blir ur tiden tagen.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 4\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Stilla v\'e4nta och v\'e4lkomna\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut vill jag dagens slut och l\'f6n.\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Stilla m\'e5 i Gud jag somna\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut fr\'e5n min sista aftonb\'f6n,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut och m\'e5 den i soluppg\'e5ngen\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut bytas mot den nyaý {\rtf1\ansi\deff0\deftab254{\fonttbl{\f0\fnil\fcharset1 Arial;}{\f1\fnil\fcharset1 Verdana;}}{\colortbl\red0\green0\blue0;\red255\green0\blue0;\red0\green128\blue0;\red0\green0\blue255;\red255\green255\blue0;\red255\green0\blue255;\red128\green0\blue128;\red128\green0\blue0;\red0\green255\blue0;\red0\green255\blue255;\red0\green128\blue128;\red0\green0\blue128;\red255\green255\blue255;\red192\green192\blue192;\red128\green128\blue128;\red255\green255\blue255;}\paperw12240\paperh15840\margl1880\margr1880\margt1440\margb1440{\*\pnseclvl1\pnucrm\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl2\pnucltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl3\pndec\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{.}}} {\*\pnseclvl4\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb}{\pntxta{)}}} {\*\pnseclvl5\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl6\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl7\pnlcrm\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl8\pnlcltr\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\*\pnseclvl9\pndec\pnstart1\pnhang\pnindent720{\pntxtb{(}}{\pntxta{)}}} {\pard\ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 1\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Amazing grace how sweet the sound,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut That saved a wretch like me;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut I once was lost, but now am found\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Was blind, but now I see. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 2\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut T'was grace that taught my heart to fear,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And grace my fears relieved;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut How precious did that grace appear\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut The hour I first believed. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 3\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Through many dangers, toil and snares,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut I have already come;\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut 'Tis grace has brought me safe thus far,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut And grace will lead me home. \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut \par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Verse 4\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut When we've been there ten thousand years\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Bright shining as the sun,\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut We've no less days to sing God's praise\par \ql\li0\fi0\ri0\sb0\sl\sa0 \plain\f1\fs20\fntnamaut Than when we've first begun.} }OpenLP-2.4/tests/resources/propresentersongs/0000755000175000017500000000000012661025625020525 5ustar raoulraoulOpenLP-2.4/tests/resources/propresentersongs/Amazing Grace.json0000644000175000017500000000503512657640340024015 0ustar raoulraoul{ "authors": [ "John Newton" ], "title": "Amazing Grace", "verse_order_list": [], "verses": [ [ "Amazing grace! How sweet the sound\n", "v1" ], [ "That saved a wretch like me!\n", "v2" ], [ "I once was lost, but now am found;\n", "v3" ], [ "Was blind, but now I see.\n", "v4" ], [ "'Twas grace that taught my heart to fear,\n", "v5" ], [ "And grace my fears relieved;\n", "v6" ], [ "How precious did that grace appear\n", "v7" ], [ "The hour I first believed.\n", "v8" ], [ "Through many dangers, toils and snares,\n", "v9" ], [ "I have already come;\n", "v10" ], [ "'Tis grace hath brought me safe thus far,\n", "v11" ], [ "And grace will lead me home.\n", "v12" ], [ "The Lord has promised good to me,\n", "v13" ], [ "His Word my hope secures;\n", "v14" ], [ "He will my Shield and Portion be,\n", "v15" ], [ "As long as life endures.\n", "v16" ], [ "Yea, when this flesh and heart shall fail,\n", "v17" ], [ "And mortal life shall cease,\n", "v18" ], [ "I shall possess, within the veil,\n", "v19" ], [ "A life of joy and peace.\n", "v20" ], [ "The earth shall soon dissolve like snow,\n", "v21" ], [ "The sun forbear to shine;\n", "v22" ], [ "But God, Who called me here below,\n", "v23" ], [ "Shall be forever mine.\n", "v24" ], [ "When we've been there ten thousand years,\n", "v25" ], [ "Bright shining as the sun,\n", "v26" ], [ "We've no less days to sing God's praise\n", "v27" ], [ "Than when we'd first begun.\n", "v28" ] ] }OpenLP-2.4/tests/resources/propresentersongs/Amazing Grace.pro40000644000175000017500000016246012657640340023736 0ustar raoulraoul <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> <_-RVRect3D-_position x="10" y="10" z="0" width="1004" height="748" /> <_-D-_serializedShadow containerClass="NSMutableDictionary"> OpenLP-2.4/tests/resources/songs/0000755000175000017500000000000012657640341016057 5ustar raoulraoulOpenLP-2.4/tests/resources/songs/songs-1.9.7.sqlite0000644000175000017500000010600012657640340021101 0ustar raoulraoulSQLite format 3@ "ìûöñì    ää#JohnNewtonJohn Newton  99<' ‘e )‹iAAAmazing Grace amazing grace@amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun 2014-11-25 10:31:10.0000002014-11-25 10:31:10.000000    úú îî#John Newton ..€Æ5‹îT’P '!gindexsong_books_idsong_booksCREATE INDEX song_books_id ON song_books (id)D![indexauthors_idauthorsCREATE INDEX authors_id ON authors (id)m;indexauthors_display_name_idauthorsCREATE INDEX authors_display_name_id ON authors (display_name, id)T)#kindexmedia_files_idmedia_filesCREATE INDEX media_files_id ON media_files (id)a7indexix_songs_search_titlesongsCREATE INDEX ix_songs_search_title ON songs (search_title)d9indexix_songs_search_lyricssongsCREATE INDEX ix_songs_search_lyrics ON songs (search_lyrics)<Sindexsongs_idsongsCREATE INDEX songs_id ON songs (id)l/%indextopics_song_topicsongs_topicsCREATE INDEX topics_song_topic ON songs_topics (topic_id, song_id)  íí)amazing grace@ ““…s‹iamazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was ! úú   øø øøe of joy and peace.]]>amazing grace@amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun 2014-11-25 10:31:10.000000 –ì"ŽìeeewAtablemetadatametadata"CREATE TABLE metadata ( "key" VARCHAR(64) NOT NULL, value TEXT, PRIMARY KEY ("key") )/Cindexsqlite_autoindex_metadata_1metadata#xŒxˆ9//indexmedia_files_songs_songmedia_files_songsCREATE INDEX media_files_songs_song ON media_files_songs (song_id, media_file_id)j-%indextopics_song_songsongs_topicsCREATE INDEX topics_song_song ON songs_topics (song_id, topic_id)u5'indexauthors_songs_authorauthors_songsCREATE INDEX authors_songs_author ON authors_songs (author_id, song_id)q1'indexauthors_songs_songauthors_songsCREATE INDEX authors_songs_song ON authors_songs (song_id, author_id)ˆ9//indexmedia_files_songs_filemedia_files_songsCREATE INDEX media_files_songs_file ON media_files_songs (media_file_id, song_id) sess within the veil A life of joy and peace.]]>amazing grace@amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun  óó version2 ôô versionOpenLP-2.4/tests/resources/songs/songs-2.2-invalid.sqlite0000644000175000017500000010600012657640340022352 0ustar raoulraoulSQLite format 3@ *#!*-æñìûöìì    ää#JohnNewtonJohn Newton  99<' ‘e )‹iAAAmazing Grace amazing grace@amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun 2014-11-25 10:31:10.0000002014-11-25 10:31:10.000000 øø    úú îî#John Newton  íí)amazing grace@ ““…s‹iamazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was ! úú   ÷÷  ½”1޽ªH‚;''„5tableauthors_songsauthors_songsCREATE TABLE "authors_songs" ( author_id INTEGER NOT NULL, song_id INTEGER NOT NULL, author_type VARCHAR DEFAULT "" NOT NULL, PRIMARY KEY (author_id, song_id, author_type), FOREIGN KEY(author_id) REFERENCES authors (id), FOREIGN KEY(song_id) REFERENCES songs (id) )ª9M'indexsqlite_autoindex_authors_songs_1authors_songs/Cindexsqlite_autoindex_metadata_1metadata#wAtablemetadatametadata"CREATE TABLE metadata ( "key" VARCHAR(64) NOT NULL, value TEXT, PRIMARY KEY ("key") )êwj-%indextopics_song_songsongs_topicsCREATE INDEX topics_song_song ON songs_topics (song_id, topic_id)  sess within the veil A life of joy and peace.]]>amazing grace@amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home the lord has promised good to me his word my hope secures he will my shield and portion be as long as life endures yes when this heart and flesh shall fail and mortal life shall cease i shall possess within the veil a life of joy and peace when we ve been there a thousand years bright shining as the sun we ve no less days to sing god s praise than when we first begun  óó version0 ôô versionOpenLP-2.4/tests/resources/sundayplussongs/0000755000175000017500000000000012661025625020204 5ustar raoulraoulOpenLP-2.4/tests/resources/sundayplussongs/Amazing Grace.ptf0000644000175000017500000001066412657640340023320 0ustar raoulraoul[#GLOBAL_RECT: rect(100, 150, 900, 1024), #Opacity: 100, #SHADOW_ON: 1, #SHADOW_COLOR: rgb( 0, 0, 0 ), #SHADOW_OPACITY: 100, #SHADOW_POSITION: "RB", #SHADOW_OFFSET: [4, 4], #FILE_TYPE: "Song", #title: "", #Author: "John Newton", #Copyright: "Public Domain", #CCLI: "1234", #Cell1: [#rtf: "{\rtf1\ansi\deff0 {\fonttbl{\f0\fswiss Arial;}{\f1\fmodern Monotype Corsiva;}{\f2\fswiss MS Serif;}{\f3\fnil Verdana;}}{\colortbl \red0\green0\blue0;\red0\green0\blue224;\red224\green0\blue0;\red224\green0\blue224;\red102\green102\blue153;\red51\green153\blue102; \red0\green255\blue0;\red255\green255\blue0;\red248\green248\blue248;}{\stylesheet{\s0\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal;}{\s2 \fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal Text;}{\s3\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Plain Text;}{\s4\fs130\cf4\ql\li0\ri0\fi0\sb0\sa0 \sl0 heading 1;}{\s5\fs192\cf5\ql\li0\ri0\fi0\sb0\sa0\sl0 heading 2;}{\s6\fs96\cf4\ql\li0\ri0\fi0\sb0\sa0\sl0 Body Text;}{\s7\b\fs96 \cf6\ql\li0\ri0\fi0\sb0\sa0\sl0 Author;}{\s8\b\fs40\ql\li0\ri0\fi0\sb0\sa0\sl0 CCLI;}{\s9\b\fs40\ql\li0\ri0\fi0\sb0\sa0\sl0 Copyright;} {\s10\fs120\cf7\ql\li0\ri0\fi0\sb0\sa0\sl0 Lyrics;}{\s11\b\f1\fs144\ql\li0\ri0\fi0\sb0\sa0\sl0 Title;}{\s12\f2\fs16 02 VERSES;}{\s13 \f2\fs16 03 CHORUS (itals);}{\s14\f2\fs12 01a ATTRIBUTION (1 fig);}{\s15\f2\fs12 01b ATTRIBUTION (2 fig);}{\s16\f2\fs12 01c ATTRIBUTION (3 fig);} {\s17\f2\fs12 01d ATTRIBUTION (4 fig);}}\margl1800 \margr1800 \margt1440 \margb1440 \pard \f0\fs24{\pard \s12\b\f3\fs96\cf8\ql\li0 \ri0\fi0\sb0\sa0\sl0 Amazing grace how sweet the sound\par That saved a wretch like me;\par I once was lost, but now am found,\par Was blind, but now I see.\par \par }}", #Align: #left, #MARKER_NAME: "AMAZING GRACE", #Hotkey: "1"], #Cell2: [#rtf: "{\rtf1\ansi\deff0 {\fonttbl{\f0\fswiss Arial;}{\f1\fmodern Monotype Corsiva;}{\f2\fswiss MS Serif;}{\f3\fnil Verdana;}}{\colortbl \red0\green0\blue0;\red0\green0\blue224;\red224\green0\blue0;\red224\green0\blue224;\red102\green102\blue153;\red51\green153\blue102; \red0\green255\blue0;\red255\green255\blue0;\red248\green248\blue248;}{\stylesheet{\s0\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal Text;} {\s2\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal;}{\s3\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Plain Text;}{\s4\fs130\cf4\ql\li0\ri0\fi0\sb0\sa0 \sl0 heading 1;}{\s5\fs192\cf5\ql\li0\ri0\fi0\sb0\sa0\sl0 heading 2;}{\s6\fs96\cf4\ql\li0\ri0\fi0\sb0\sa0\sl0 Body Text;}{\s7\b\fs96 \cf6 Author;}{\s8\b\fs40 CCLI;}{\s9\b\fs40 Copyright;}{\s10\fs120\cf7 Lyrics;}{\s11\b\f1\fs144 Title;}{\s12\f2\fs16 02 VERSES;}}\margl1800 \margr1800 \margt1440 \margb1440 \pard \f0\fs24{\b\f3\fs96\cf8 \^92Twas grace that taught my heart to fear,\par And grace my fears relieved;\par How precious did that grace appear,\par The hour I first believed!\par \par }}", #Align: #left, #MARKER_NAME: "AMAZING GRACE", #Hotkey: "2"], #Cell3: [#rtf: "{\rtf1\ansi\deff0 {\fonttbl{\f0\fswiss Arial;}{\f1\fmodern Monotype Corsiva;}{\f2\fswiss MS Serif;}{\f3\fnil Verdana;}}{\colortbl \red0\green0\blue0;\red0\green0\blue224;\red224\green0\blue0;\red224\green0\blue224;\red102\green102\blue153;\red51\green153\blue102; \red0\green255\blue0;\red255\green255\blue0;\red248\green248\blue248;}{\stylesheet{\s0\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal Text;} {\s2\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Normal;}{\s3\fs24\ql\li0\ri0\fi0\sb0\sa0\sl0 Plain Text;}{\s4\fs130\cf4\ql\li0\ri0\fi0\sb0\sa0 \sl0 heading 1;}{\s5\fs192\cf5\ql\li0\ri0\fi0\sb0\sa0\sl0 heading 2;}{\s6\fs96\cf4\ql\li0\ri0\fi0\sb0\sa0\sl0 Body Text;}{\s7\b\fs96 \cf6 Author;}{\s8\b\fs40 CCLI;}{\s9\b\fs40 Copyright;}{\s10\fs120\cf7 Lyrics;}{\s11\b\f1\fs144 Title;}{\s12\f2\fs16 02 VERSES;}}\margl1800 \margr1800 \margt1440 \margb1440 \pard \f0\fs24{\b\f3\fs96\cf8 Through many dangers, toils and snares\par I have already come;\par \^92Tis grace hath brought me safe thus far,\par And grace will lead me home.\par \par }}", #Align: #left, #MARKER_NAME: "AMAZING GRACE", #Hotkey: "3"], #CELL4: [#rtf: "{\rtf1\ansi\deff0 {\fonttbl{\f0\fswiss Arial;}{\f1\fnil Verdana;}}{\colortbl\red0\green0\blue0;\red0\green0\blue224;\red224\green0 \blue0;\red224\green0\blue224;\red248\green248\blue248;}{\stylesheet{\s0\fs24 Normal Text;}}\margl1800 \margr1800 \margt1440 \margb1440 \pard \f0\fs24{\b\f1\fs96\cf4 When we\^92ve been there ten thousand years,\par Bright shining as the sun,\par We\^92ve no less days to sing God\^92s praise\par Than when we first begun.\par }}", #Align: #left, #MARKER_NAME: "AMAZING GRACE", #Hotkey: "4"], #CELL5: [:]] OpenLP-2.4/tests/resources/sundayplussongs/Amazing Grace.json0000644000175000017500000000162312657640340023473 0ustar raoulraoul{ "title": "Amazing Grace", "authors": [ "John Newton" ], "copyright": "Public Domain", "cclinumber": "1234", "verses": [ [ "Amazing grace how sweet the sound\nThat saved a wretch like me;\nI once was lost, but now am found,\nWas blind, but now I see.", "v" ], [ "’Twas grace that taught my heart to fear,\nAnd grace my fears relieved;\nHow precious did that grace appear,\nThe hour I first believed!", "v" ], [ "Through many dangers, toils and snares\nI have already come;\n’Tis grace hath brought me safe thus far,\nAnd grace will lead me home.", "v" ], [ "When we’ve been there ten thousand years,\nBright shining as the sun,\nWe’ve no less days to sing God’s praise\nThan when we first begun.", "v" ] ] } OpenLP-2.4/tests/resources/church.jpg0000644000175000017500000065266112657640340016723 0ustar raoulraoulÿØÿàJFIF,,ÿÛC  !"$"$ÿÀ bÿÄ ÿÄb!1AQa"q 2‘#BR¡±3br‚Á$C’¢Ñ4²áðñ%DScsƒÂ&5t“³ÃÒ'(68d£7„”¤EGTe´ÔâÿÚ?™hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆN2rz¡ã#§DDDDB;„DDDDDDDDDDDDDDDDDB2=ÑlöÊ"`g8ßÕ€zŒ À|®·Òº¬Õ9Žt‡ƒ#‹2:Lòó{ã+êDDDDNøDD=6DDDDDDEG1žå3¿Dý¥ULã;ª;Ír\Cʮފª™ª¥Pœ*öDD#*²ª l¨ªŠ€å;ãeTEG eWä¨z€¨áœ…\`l‡`€U@§ÍTn‡dTê=•JwDDÎøDAÑ=Ó Nÿ$DDDDDE@Ad(«”ìº"""""£‰ $ìvJ}0ª~Iº§|ceT$¨ˆpˆ=U1¶0ªˆˆˆˆˆˆˆˆð‡¶è©Ÿd²®z BvT1¶Pg×*¨ˆˆˆˆˆ¨OEAõÇeTêvTÇpsòAÓ®~i÷Ø|Ðd°} ª¯Ñ=7CÕ;õMº*¦Ä""ÇUN¨ªwêª¨Š¨¨IÙWä©ÕPb…P t@ª"&*doìªFB&}Qº&¨TÁÈUD*Ÿ÷ ÔeUM†åÈÛ}cЪöÙÍSUP¨ªoÑ"!Lï„ELžlcoTêíN¾‡ÑUPtÝUº"6ߪ""*‘*¾ÝÑtöENûá1ÜTDDDDDTpöUÆÊñ”ǺcÓm÷O˜Â¡þáTgꪅUSláW?šwÊ"&ØÊ"""""ú"""""""""""vDDDDOTD=dù§¾·TOd?,§tDDDDD쉲ˆ‡¯tDÝ """""""DDDDDDDD÷DDDDDDBˆˆ…?Š'dDDDDDDO¢"""""""""'tDDDDDDDDDDDDDDDDDDDDDDDDDBˆˆˆˆwDDDDDDDDDDDDDDDDDDDˆˆ>hˆs‘Ã8Ê""""""""""""""""*8à‚p:TDDDDDDDDDDDDDDDDEGÊ `a}º{¢"""""""""tDDDDDDDDDDDNˆ¸ÆÀÌã;û§+KÃð € E]ñ¾2ª‰¾Q7DNȈˆˆˆˆ‡¢"""""""'~ˆˆ‡=°‘7DDDDDDDDDDDDDDDDDDDß>Ȉˆˆˆˆˆˆˆˆˆˆˆˆ›¢""""""""&èÝ;ŸuTD(ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDDDDDD]eܯ$ç}·XËÄÑ–ˆmêX*+'¹GEOÄáãñHìÌk»õ¿4…þݪtÕ þÕ0–’¶#=3Õ§Ü—ªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ}º¢""DBˆÓꈈzuDTÆùÙUÏpQꈉÝP‚A‘‘ÔvU¹DDDDDDDDDDNȈ‰ÙQÇ ]'®ù!@ÿ:²ºíÅgi—ÅA§á`†0³Å¯‘ÞøsZöOª¹|q"¶HîUMG[µT…Çú—±¹pÄ4\H4“ìª3ú¢""""""""""""""""""""""""""""""&7AÑ '|ewODDDDDT#*©Ý>¨ˆ‡8Ønˆˆˆˆˆˆˆˆ‰Ý"wDDDDD\_ŽRIÙt¼Žb:L(Sã÷EMoÖ6Íqк–ï(eˆ7lеÄ8ö!ÌÀõª×ð'ESUÇÚY¡ŽŠÝU<çÑŽ1ÿ‚Ø2""""""""""pˆˆˆˆˆŠ„à‚rªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹®Hóý[²?"?Ív{gtîÑS*Œtè‰Ý?š"DDM‘;¢""""""""!DDDDDDDDDDDD;®‚>"?‚Ž>?ìÕÜ·Ýâaw苼rMý˜¤ñç§ï.~´•ºÑà }MR]¯òÔ¾Z·ÏLbd öitn~ÝIè1$‘º""""”DL"""wDDDDDDDNý:"„Nˆ:nˆˆˆ9Á興ˆ‰Ý¦:`‘âª:"'tú&ùöDDD"""DDDN©Ñôë„DDDŒ¡Æ7DDDDú¢DDÙu½…Ï8èFëx³‰ãÃÞ°ÇáûˆÎOõŒ]ží¿£¸£c0y<öÁ. É>l—?^|ýVUDDDDˆˆˆˆˆˆ€z„CÛdDDDDDDDDDD(‰î€ƒÐån™DDTÀmì«Ý¢"¢dgÝU;¢"!興ˆˆ‡¶ÙNȈqߺ""""""""" Ø`""&wÂ"""""wˆ…<ñ'(‡Z½Î¦5 ÛœÎ@3øˆßLçè¾ÞRËEÁ]K9Ëã²Òƒ¾vò›á…{* €§eTDDï„ï”DD@r2ˆˆ‰°DDꈈˆˆˆ‰±ˆˆˆˆˆˆÑ§DD_%Öº: Q#Ù4Ž{Ûeî.ql;dîz¹RT:zH玷¹ùi<î¾”M³óDDöOà™Â|Ñ0ˆˆ‡ÝN¹ENýÕQ;¢”Dþ(ˆˆˆˆˆˆˆˆˆˆˆ¨H'?@ªˆ¨6=·Uù¦Qœ ¢¡éÑUê©‘ê±'ŠÍamÓ¼,®´T;Ì®¿A-%$ üOî áõpNë‹lÚZ“JTTÆú«=»Îlsjah¸9ÎZà}0V\)ÿ~ˆ‘ºa"""""m”DOš""""""""¹ØŒOdDD\qÆá§|÷È\š0Î}Õ~ˆˆˆŠ‡ñóUDDÙ;áä…:?,¢"""""""""""""""""""¡8ï·²ª²U ûTTú.2îܪøö½Æx‹¦àŠGºÛgqÎÁ¤É½Éiþ åðUz‚N#š¨( ác°HŸÉÃ\7ô2uõSš#ú¶çÆø\ý“! ‰Ñ:TDDDNùDDDϱDDDDDDDDDDDL¢"" ;dŒ*¢""""""gæˆ ª"""""""vˆˆˆˆˆ‰Õ!8DDDDDECž¹ú úªª=ÍkKœCZI'âUë %FÇ>¯TØéØÃ‡:[„MûåÊ׺ñ—†Q´ÓÒk«]\˜d,¦¬l¹y8³˜uõP'Å=òK礄Ô6¡”ñÄÉâZðáæ“Ó®_ƒEäð[]Uh­VËôyϤäsw ÀÒ1±h#¨ê¤ëÆ• -|Ôö}ù)™QðOUqòG¾åa wMƒuß§ËxŸ…Óø~ÖÌleîý#°78iÏÓZÁ|L5àð»ä‰‰å¸9ÇnÇm³KGY˜µEq-5¡…µ»00scÛ9^£r6$ª3Ý;¢"""""""'tDDD9ÆÈ‰º"""z"""""""""""""""""""""!DDMòˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆÑS~û¦Nz /ZÚ¿Oi Í–7…ÔÍé—ÆZ3õ!j>¬>–wE+O™Ìr ÷â ût­,÷‹ý%®'R²J™˜Æº¥Å± ‘øñ“Ëë•´NZxGWS]­õªêÚˆš"·[­~DŽÉl¥ÅïSô½ƒH9U ¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDTqÀϾQ|§Õ ÇÄ@'ÕQ¶è‡æˆU7ÈßdÛ› ­Jñ.:YuÖ¡uÛ%9»U¤Íóƒ…ìpJÍ©¸«dµ7vÉS˜ã°cr ?#ò[QÉþ £ßªª"&è‰Ý=}ì """"""!DDDDDDDDDD9ÁÀÉ숈ˆˆˆ‰„?’ ù""""""""""""""""""""""""@6$û¢¡Ç~ˆFU¿Äk»tþ¿ÞÝ/–h­ÓÎןÙpaåþ8Zž¸HMCœOÆ\y‰îNä©ö~IE'«i«šÇ>K<Ž¥ëæ²XÝ‘îÏôÊŸÍ×UÏê©Øö*¨ˆˆˆˆˆˆPú""""ˆˆˆˆˆˆ¨37Æ3Ü…TDDDDDDDDT Ъ¢"""""&sÑ;¦Ùí”DDDDDDDDDDDDDDDDDDDDDDDDD;ªn°ÇŒûÓìü½Å`uÎX-à¸ö{Áv=O+\µÇ]Ìew1Û9ÈY­ùÚkZZµÏdpÏY÷)]!Àåœruù¸-É'ê¹ cnЍ‡ÝPÌNvôôUD=lüÑî›*;cíÔ”iÎvÀþj¨ˆˆˆˆˆˆˆˆˆòƒ©ôDDDDD@001Œlˆˆˆˆˆˆˆˆˆˆˆˆˆˆ„elõDDDDBUQûD¯³ÓÙ4ŽœÃîõu55Ó´u.…¬c>Ÿ¯yù´(MXNØŒvõ_^žJ{¥¾¢9|¹"ª…ì~ å!í ý0¶÷¿1ÿ%Pqœí…Å’9ÍÔã$Ÿ—ªæˆˆˆˆˆˆˆˆˆ‰Ô ˆˆˆ‰‘7lû¢""""""""""""""""¡8ßOùª¢&ÃtDDDDDDN¨Ñ2ô(ˆˆˆ:"&ØèˆHõDN舩¿¾ê©Ðaˆ¨q¾Êxò»²áÆèm̸Z­Àö°’GÉ)ÇÍŽ‹'ÙFê€Ï¼9¯ØùátFàCØ3³]þö-»hÛ¥%óHYï4ÓWPCQÇv½Ãù¯_#º®Gª""""""""wÊ"! “ˆˆˆ‰óLÝqææÁnõ\†qº"""""""&Sl纡8Æ9UDD_=)¬ûÅP©l" û±a%ÅœÏ>z~~°¾„DDDDDDDDDDîˆ;""""" Â"""""""""""!Ü"""e¢""ÅØpÆ Ög‰ ëõu5l‘Ä t”‘9¬ sÙÜ]ûÇdöv Í~™®ªÑuz–I¤ ™äðÈyZG¨æmÑZÑËËðl{eO¯:ÂKÏ ®:Z¢Pé,UaÔà¸dA0.åÇ]¤¼’¾ÝÕPoÑ2ˆÑ dœÕ1¶Èˆˆˆˆ‹Œ˜ÀÏ62:gü•\Ñœœœuô\Ê""""""" Ñ·DDDDˆˆˆˆˆˆˆˆQ """""""'Ñ¡DDDD;¢òõmÎ;6–»]ä#(hf©s³Œ0»ü–¦î÷ &¬}EA/¨æY 9<Î99YLëm7'uV–½>±µRÚ §´Ú ee\µRî.sšÁÀÈØab& ÈwHïÚ Y¸ÊÛTÏc`½ÒIHyÖ7õŒÇ¹åpú­ÕvDDˆˆˆˆˆˆƒÙ7Ïl'ͪ{nªˆˆˆˆˆˆˆˆˆˆ€äü"""""'Ѳ""" DDDDNè‹®IXÆss7ÆIÀüÕaI\ NuÙšæŸDCÓdDDˆˆ™DDDDí²X‹Åýóô'‡ýDæ86JæÅoiæÆÒÈÖ¿þu­¹©f¬¬lp É!åhõÏEñݨjmW*«mX`žšWE(cÃÛÌÓƒ‚6#Ü/˜‡©ë²¼8SzýÄM9yl¢¹\éf{ÏF´JÞb}¹r¶Êøßªª"'tDDDDL çº"'tú"""""""" Üe;Š""" ïÓÙÈÊ£ŽH'ä2±—õ¾´¦§utuU$®™…”F’Gœï—Â=NáYü°q?P\nwn'I[ B`È)êšÖ¸ŽGsÚ>7â gªÏTðÇOŽ&†´v]ˆˆˆˆˆˆQ*„û'~ê"}¡úˆóim)CƒC'¸ÔÂÄå±Ââ3ÿÓ ÍVúiùéÞæ¼wz¯WEèMg®Ÿ^ý+§nƒGž¤ÓÇÁé“ÕdzF\wÀ8+Ä»Ûn{E²ëEQE[LóÔóÆY$nCšwuÓ» {A9-?ÉmÓA]|ÐöÓæ:ál¦ª2ò‡™"k³ŽÙÎq•î""""""""""'dDDDDDDOš""""""""""""""ˆˆˆˆˆˆˆˆˆˆˆˆˆ‡¢ Ç¢"""""" IDDDNèFFǺàâ“•Íô@ˆˆ›§É{¢"Áçáî¼ÜØ$ãaÝNK-®ße´ÒÚm4pÑPÒÆ"‚›ÊÖ4tß+ìEB6Otq i$€É$ôXÃQë=e©ke³pžÛm¨…ƒê[“É·0áÁÌ„0óM <»Œ°‚s²ð´Ÿ†oº:÷ª¦¹k[Ä’™åžñ/4Nõw’Ü5Ùô:Ê­ÒÚi®•ÃOZAš´²âŽ<>¸¹±‘Ú '2¾ë]¶Ýj¤–º Z`r"¦…±°^V€;/©vò’n¸ rìr÷\Æý\‘ªB¸‡M±Ô¨±ö„jii4ö™ÒPº.¾i«ê2O˜ß'‘‘ޏå&WžX=ÔKá̓úO¯¬ÚxÕÇH+j„~tsš:Ü7ˆ€Ñîà¶[¦4–††˜Mf·Ë==lÕ!l†šYKp%‡~ÊÂâÞ¤·Ø²GyÕ·V[¨å˜A‹÷I!òµ­šO¦Ëê_'µR—ÑMtºÏû1CJYŸ™yXC]xÉÖ×vTE£ìöË T#ÌsåõÀåø†3;j¼^«îU¦²¦®¦yÝ+¦tÓH^÷=Ø$—É=ÉWnâ¶«Ó¶»•–+¤õ6{…¾z‹}SÝ-;™ p.k à ²Ü·ÈÙX @Øtð3wm¯Ä¢* w zš3±!äÇÎÖœt݃ê¶@ܺälå"" †=Qº"!D#>¿š§OLªŽˆˆˆˆˆˆÑº"!é²!ꈈˆqТ.º™.tQ_û,?Ÿæ±/xñ§4ÎkEu²ñS_ cƒ)Œq?,çË%Âá¸,mqñ‰mŽ&:‡DUɇ0Ï^Æá¸9Ç+ûÌ©'¥®´š‡N[¯´d˜+é™P Ø9 àgÈ/P"""+†\\ÒA½]ì–y+)®–™_E%t>T¤5å…Í9øÈÈWú"'|'tD@00ˆP¨½Çþñ[Љµ5\B²ÕZéå‘Ô4QILÊV»Nb÷` ¹Ç=q°²-þï•Ur>ñ¯mÔ‘gà”˜‘þ7³½W»QàçD[jí4µ—íWpûܾTóÒù2, óaÌvì2OÏ äÖÞ ­<²?DêÚöO%=Ù¬p‘ü§—õ±´rŽn]‹ÙÝz\ð½v´ßk/â®ÛO)ŦL¶Vd‰C›ÊÖr¹¡£§©;¥|q2™@†±¡­É.Ø Îåv3öM³•^‰”##tîƒcÝlû tL{ªcu×,‘ÆÇI!à œï@7+SÜK¾ Q®¯úˆ9ΔӰž¼Žqåÿ‡•Zõ-¨Á²µñå­{CiäFù_>KÄJ¿µWõ~–ám³ˆ‚”[¨®uÂ’šŽv½•;²G Â>‘ÆNH ã}êß |CµÙ-wý7 uMººŽ’ÚVê!/`qi‰Çâ8ËIÏpÔÖ+Æš½ÔÙ/Öê›uƘ´MMPÎW³™¡ÍÈ÷iäB÷8U¨¿¢¬æ m #±½s•ËèŸDEÅÙç?=— ˆˆˆˆˆˆˆ„€—×yœÁä7·W,oÔª§TDD\y~,×,mŒ¢lG·º"""""""""""""""…M¶ê‡¨êªˆˆˆˆˆ™DØí’›&Uî7 ÚךëJèkwßµ=ê’ÞÇ5Æ(_ ó§ÀÜFή?%…ßâãEšÂÈ,wy¡òòZƽ§¸#˜çéè²-Ž|-¼}Í‘jÊJ9jâ25•Íu8f6-{Üìí‚íÏL«—Xèý#®­QÓjk º÷IŽx]+‹}Øñ»sêÒˆÏ |m@Ÿúìç‘÷*·3ýÓ.>˜ÂÊÖº ]ºžÝm£‚ŽŠš1ðFL­hØèÒˆˆ‰üÖ±u­¬Óþ!ïÚ¶ÁPbšŸUÕUS½Ž8‘†©à´ãr×´¸8w#ºÙÒ"vN½‘mÊ"!DD A¨\[mü,hùPèù*®.Øãø*Mîp6÷Q§Úûˆ<%â5Òjù/z&û–(*a±Á#Fd`çÆ ë— ñ‘t_hôÍž–´Ôô•%±GrÕ獵ỷØikðõÛªš6Ú¸+íôÕÔ³²zzˆ›,R³ð½®‡b ú;¢d¡DTßQÇeŽüIj7inê˼A®›î¥„gý¤î´Œz3ôZÁ• < `m”ÇáG4Wø;p’â+#¹MRØènr’ji 0Gnû:"A<0F0@# Øx[W Ê öDDDDL×t ""&Äz®-.å%Í 9;g=ö\‘ "M`ª1‘ """"!ÏdTÀ#âNý𪈈ˆˆˆˆˆ›ãШëÇ¿²ðî¶m6ËlÔ/¦|¬tÕm|P4É#byñ5“—;wÊ…z¿V^µò¦ó¨oõ“8ó¾Gór·=1ƒ¦^5-Kcp1È šáŒ;9ÁÊ÷a¼E%+#–ˇG7!Ý}”…ðC­…»ˆ3èùª¤mÞžWSBéæýé€? oáncl¤œ òŒžMLÉÓšØ*¢"+SŒ: h®jMRÆËn·Ë%??á3ËOÍå£êµÂ½=6ªâ>›Òí†Zƒ]s‚)¼¶s8EæJò=^ãì Úâ"""!Ø""""""¡!£%Vßô}·^è;¶“º5¾M};˜É ra—¬r7Ý®ý±êikmŠ»Î0Êš·ÒÔ´dö?•Ý{|9ù-‹øf{ßÀm _'š[@œä5Î # Dî‰Ð*v:~Ð{à¡á]žÂÙ1-Öî×¹¿½,sÿ‰B?IÏT[mõ•f’šz¸ãšpÞ-…Ø.Ç|elרt·xcAE«*]õu3: j:~i*\9yÜÖç ‰%ÀeÃ|¢·8µ§n^)íÜI·R×Ék¥¨¢•ÐÎÙTÐ×p½UÝâgÄŸâ? £ÖÛeÂÝP.PÔ“3ØöÈÆsdm¸ÝÀí賃n i‹ÿ 4ö•¦»@uª„²¦ùl‘á®nvxÀò“ŒŒã!X¿hí¥²i #¨DDÉIpšÏeŒ8õ‰BXúÐ\à[Íž«a¾õ$Wn 2ÁÈ=‚®Hø™+3\}ò÷ R"m”TÎqõUˆˆˆˆˆznˆ9‚FÇÙãº""'tNè™·EM³•TDDDDDDDDDDDDDDELnª3ž¨‰°èˆˆˆˆˆˆ¾ÄõqÓyVøÃê¤<¬sšKcþÓ±Ûò^=&‰°¹¯šñl »×Ìy穬¦l®s½¹ÀØl=L= ›Ó¶)ª&±ØmVÉ*]Í;èèã…Òœç.,˜çÕZ|Bàçµ½-@¼i‹{+%‰ìmu<-†¡…Íåæhܱ͜aA~<ðoPp–ÿ'ŸEf˜ž^[}×´ŒgË—‚A¸Üì:-¾ꉴv»µjŠvÓ¾k|Åì·ƒŽŒ¸ŒõäB[Lcšæ5Ìps\29.I‘”DDÎÙX+ÇMíöŸ—H†w¬§ æýÐ]æ»óõXcìòÒÜ5uÿ\ÖD$mªÑQ8·8–PLŽá€7å!SpôÙ ÀDDDDDÈNÛB¡'ŠŽÝkøúïèÅê+y¸r7 –7çp\pèä w')‰¢mM±hû=œSÁLh袅ñBc\Öìcn¹^Ç|"&QPl>J½FBâp* } W±[ÅKE‘³ƒ®ÖøÁü2ÊòNÞíkTh¤­e Ãïq¹ñ»™€ïƒÙzºë\ê i}–÷¨nuõJíš6øZÍhôkÈâù uÝQ!tsde}~õt°Ýi®–Šéè«i¤lÏ Ë^ÇAR~ïÅZŽ3x`ÕvMÊýM§ÛÒ9aŒ1“ÂÙ™qœ9ÝŸ\ŒaEf×L)yöw^®ÔÖ#„u4U¶<ÆîR'…53ê›ôUENý>ª¨ˆˆˆˆ‰¶Qtíº"DÝÊ"&Ȉˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¾km =¾˜SÓòó9Ľåîqq.$’sÔŸ—eô…AíüWËt·ÐÝmÓÛ®TTõ´s³’jyØÛèZv+Úü%pî›UÉv¬š¶²Üÿ0þŠ'’ ¸AæÛ$€ÑgÛ]  ¶Òжy§ñ6!$Ç™ï ǹÛr¾”DDEþÑIþŠtý(Ï,·æ9ÛŒ|0J7ïûE]žìñÚü=Z*šÀ$ºTTVHq¹Ì®`ÏøXpDDDDDN»"'~ˆ¸wÀ.h¸¼žƒ ˆ#;úìŽs†1ƒ¸ï€¹õ લÛj¯´7ÉéY%}3CM+†LL˜ÇæcÓ>S?ªô:ü‘6DDT'n›*8m÷÷Z¼ñ}›ŒÚ¶ìÙ,n¹É9þª/Õ4oƒø¬g%%K)ÍI‚O»óry¼§“›Ó=2®^pûUqRÅbÒ¶É*æ.ižr9a¥aë$¯èÐ0}Î08 6x°ÛßÇ›ýºã%Ê*kc1$bHäÅD“‡ ÁwЬ‰âï|<Ó¼-ºk-/§Ûj¸AWNdó¸B#|ŽÄdòÄ6³8áëGqc‚ͺ2ã[eÔtw*ŠZжþ¾)0öDqŒ2F~=I9ÀÏü1àT'š£@ …=οPGWçVýÜF9Ÿ—@9<­Àv 8sŽ«\o9Ààò~›,åà¢÷³Ä‰“ÈØã®†¢ˆ—;”:<°tÜ—1£ê¶8ÓÛ§²߸誈ˆˆˆˆˆˆˆˆ‡¦Èˆˆˆˆˆˆˆˆˆˆˆˆˆ3Ý:""""""""!Lô^MËRéÛl í²’gòLùª˜Ñ±øNNÇ~‹ÕihsH Œ‚;ª¢2Ÿ$숈ˆˆ¢¯Ú1#¡úF .¹ÌáhOüÖZð§©|;è¨ÞÂÒ뙿_îp?^l¬ ˆˆˆˆ2GL|Ñ=ާï47ÛX¸ÛÞ÷Be–Â×5ñÈèÞÒÓ¸!Ípú/º<îªæ‹„£ `dåP´·;'uÈu®Hú""&è­î$_N™áþ¢Ô@€ëe²¢­€9œÈœæû’ù•ª*×Jù<Éé%?qÝÏ'$ýJ›þ 4µ¶·ƒŽk%-ÆŠ¾z/Þ¡l‘¿3”¹Àû’ÖôïÕfê}?`ÐzïO¤lÔ¶ªxij*[ <|¡Òr9Ù=Îþ§a€0€âÄ\*–õ}¦³SÜïUÿu†¡å¬e6e}@ËNCœñ6#cŸC!xÓÆ}Äß º‘–jÑIy,¦ómUG–`ï><òci7<Íí×”ì»~Ï ©›EêËAýVíN{~¶³ÿ°©B\pú­\øÓíÓuÖV††Ûr’¦&329ÀÐ6@>ŠÙáýê]?«íØ1ç[kéë[“ú¹ò¶ÛtÅ<,š$r49ckšwÔÈ{ª§Ñ¢""""!興‡¢""vC°$ ûB7ÝUELÿتˆˆˆ‰Ñ7EÕS0‚žiÌr¿„. J_.¿â’®„u%–›}ÂShøªdk·..$7 `4»~`D¯MÑý)Ób½Öù/ÖØ«1€ÓËRÆIæ o)9'‘ÊöVûFNÒOÀ‹œÀ8„Âä³w‡–¹¼ СÀúŒíèai ûD_%}Ê‚‚z8+k §–º»Ò²G†™¥äsùž§•Ž8ô}hˆˆˆˆò¼{$,¤IšÆˆ¦®|­Ž¿ ZãRö¸ŸRIêW©‚23ƒÔ/;QÖÜhi¢}ºŒVJ÷òù\íiÆ:Žg~YVÄ|K¦¦GßtƦ³S[ˆç¬©·æ C¤ ig–ç¸þ&¸Œl ÏBãl®¥¸Ã÷š:ˆª";sFî`qó_Z.$Œã¡Unê½ÑS|gü“|v>«xéÔ,³ð®Úן:õ]MDÀÓƒÊ%~˜‹”ÿ{Ý@{× Õu@¥¤žª&TÌy±EÃß.Ù¹;vè¶mÁ‡†¶z[[Ù%”Ìž'ÆâZæ?â|o‡ íÕz\Sªm 5e[ÜZØlµ’uô…ËR¯$?°À/¢ž­ìñùŽíê¦7Ù¿3 õäEÀ=Í·H?ýྡL ¸;¨!ö†ÙCÅ‹=ñ€6;¥¡­yÆî– Ï÷ú(×HCfil½VѼ6]b¼ð'FÖG;¦smPÁ#œwˆynBÒ?çÕd2"""wDDD%²"""""!DDDDLœgEA¶Ê¨ˆ‘¿TDDDDDEçÁc³As–颂*ùNdªe3¯ù¼ •è"""'\aPñáÃé>ïIÄû\EÆ™­£¼FÜ’cæýLÀcbÒç5Ç=ÏÝ^wƒ®4Ö ã4¬¹IQMV?óEDîæ1Ë’L%Çr?zŽê`"Œ¿h”Ü(°Õr¸˜ï¬`w6æ†^£þe™8 ðþhG4“ÿÍÊ¿µ;ù+ÙFw[¦ŸÿGz†õlŽÝwšg:2C<Ʊ®`'÷‹[ ÅÊIÙn·kEÖŠA%5d žƒžf=¡ÀþE}hˆˆˆŠØâ–³¶èpÔ·9NÎZx°K§ÛG@Ü—;;dö_~”†²ŸJÛ"¸<º·î¬5yHýwêJõšá€#Óenë1©¢ŠšZêŠ! ‹£|Mi<Äc;ŽÃ==VÔü×ïÔuw­+Æ»Kg1¹”qx…‘¶1»eÁÈnIåê¾{›ñ]¦_æ7Rh}AZÑM<“d€N]“pO|;ªÏv±|–Ž’¢ä))ª¼±÷šh\eŸò¼€qóUöŠg0r;œ7›Ùrþ­Îåv@ß$®QžÜÀ®hˆˆŸEÄ’FÙPËí½5÷½!§Zs÷x*+dÁî÷5Û×àwæ±…­(uOÒA;é-t²ÔJè܇¹¾\`ä‚\IÃJئ—ÔÚjÙLYÊb¢……» aƒÑXþ(ëá¶x|Ö•¿”Imu3O«¦sbhú—€µ‹Yn¬¤¥‚®¦–xéê‹þí3ã-dÜ„µÜ§¡Ã¶8è®þðÞáÅ>#QizI$§¦vf¯«k9¾ï½2vhÏwœüÍ&ŽãýóF\‰§†¦Üü‘´ôÒç]šþž¡N&ä´l?5þÑ[­áΟÔL`sí·CLóÄs0ïò濚ƒQ5Ì{zd`©ãö}_ß]ë枑Í?¢î>lg'<“78ôÀ-?š“C`ˆˆˆˆˆˆˆˆˆˆ¨Z €H9Ê©¾Q7Ê!ù¢Û¢"""""¡ã#89Ê¿TDDÆØÊwL"""wDDDMÑ""&ùDCŸTDDDDEòÝíÔ7{]U®çK]\N†x%lŒpÁiá@Ü ½ðºí6¡ÓñT\4{žed±ómŸÂÉI$– €Ù3Û|Îið—ǧjXi4>±«2^Ò(.2ÊÜÖ4ˆßÓ2ÐþÐüY.“*?øø¡ûßP[Ì(nôµÎ:—GÿÙÕáBã-w‡-Pçy²CFiÜ;®Œ˜kBÊ‘ÈÙÌÓ‘ßÙrEü~[_[ÀˆªÚçÑתj—`lC„ïÿÕ¿’ëð«d¾p’«OUTyµ~¹ÐÆÒì¹´Ò2<ûsy­Ìö‘ˆˆ…]TðÓSKSQ+"†&É#ÎÆ’IìQÚ’«ÄO‰;M¢ž*‡hm5+«d‡ –O,²nd1¡½™ÌF>"¦†A#>Šh}ÏUÉ0©¾rªºmlµ䇱­ ì1œŸ®‚ï]$Éü³Ùv´’Ñžª¨ˆ‰•ÄçµÏãNöËÏGɶ([ÍÑ®k9ž·3ÿ0®¿ÖÙk.ú’²7:™‘Éo„T0ngI!òÆøÁÙÇ þï™ÐÓû£vQËÇ^¸Óô|$©ÒL»RËx®¬¦&’7ó=‘Ç/;œìlÜÀÁÂðkþÞø¦¸yª,š WÚ&–©µô?v²I+Ý#ZéžGŒŽ_Ùiý•sp‹<;ᩳé-u¬uLâZšÛ…ÊO9Æ0K"!¬h Fq“¾I&Á¸ñFÏ'‰ˆ8—j·>‚ŠK¥5l´²?<¤ÆÈçø‡\Ÿ1ÙÀê6SºŸ‹ü.©¨0Á¯,.0n>öÑñ7^‰ûe>¯ðÝ«…º®–x£·þ†¢7±ÂÂgrHݱ¹¹÷ZÌtÇàÆÇª•¿gޣЛ]ßtëÀæ¹Ð6¢'dþ(‚1Ó¤„ôì§éÑs쪢""""""""""""""" Ýꈈˆˆ¸O UIOQ&†V–IÚ×´ŒAØ‚6м`ð¥æ]*õ «a·½îó…’\²&ÉÜÁ.U“¸iN F¿8K¯ø‡k°Óظ‰¡µMÂïLöÂêÚÊ×´€Z^ðð îì7§BrOÑãËqðë^(ê`s[K ŽVŽpW ‰À'°+Æð p5| u#ž ¨nõ1÷kO+Çýr¤Xç¸Ürr¹"Äþ/mÿ¤¼8ë9‹Lt±Tÿºž9?&>ª4ýž÷ÃEÅ«½‘óòEs´9Þ^?ÐÈÒßÉ’J§wɦ舅B¼e¯×—èxeÃçOYDê¶ÓÎiwuÊ£› ¤u‰¤döqè7‘^xYE½ ´²9/uÁµzy¼É¹]êÙ’=Éêâ²oÕ“ÍÓ¿ªæ¸HÂâ8ÇQލ+€ÁÉ÷UˆªÕQ  Î:®K1>Y^ÖG.{Üv ’V¤µ]æ}E©îÚ‚`á-ʲzבæHçvôæ Qx*Ô:[BðûR^õMÃôd5,’9f9l¢&ˆÛŽbàéØï‘èJùø£âcW뫳t‡­5ô¢¥ü‘Ï eÕõ>íhY×'w`g-Ü,ÄŽñ'JÚ÷YéºËe•M§ÔOŒ“8=à`8’pלû/¾ÕÀ>-Ü´6©·h꺫uTm–*h̲Fæ‡5â.nröÊù¬|âÕöwÁC /ѽ€º»4ý©yAùóñƒÜCáýІó«l_£©*çû´'ïÈï3À81ÇØÏ¡_Mo x™I¥-š›NVÝmWjfTÓÔÛA© 6@ÀK;äcߪûøÅû–…»‹MÒI«4}к–ïms‰ŒÃ( |ŒžÖ’vÆz¹ʲ ¯„™ÖTÚ…<ÀzsÄGÿ!JäEáqÒÛöƒ¿ÙÏ0WÛj)¹}KãsGóZÝð¯{u‡šF±ïò£’³î’—YZc9ú¶~6€uëº""‰~3øßUC-G ´“¥mLœ‘Ý*¡.ó>,O)Î\>‡—¾UÕáÒè[{µŽ°£úU^ÌSÂì;ôld°zJìüG°£dR""*27ßæ¾ZŸ=òD"– 3(xÉ-ãìsƒß¡_SBªá'(øÓ™\bɸ“Ó$`•Ï'þÅQ¾à‚;aU>Kx˜¾³Np#XÜ ˆ–[l”Páܧ̨ýKH÷ùú-b=͉®8 ÀYû‚ü×ÜV±Ú.·›£l:F(ÜÚG¸sÏ,~gÅåÇЃñ»ç‡1øOÂÂûSé4­¯Ë¨™¡µ5õó*ª:~7í°<­ nwÆr°wÚ[4ö-¦£wÃq¹Ï)ÏÅOÓïóRrÃmŠÑb·Ú¢Ú:X©ÙÊ00ƆŽ:/´‚F7Ç©$¬/ãJÉÛ€iä8u®¦ž¾=³¸“þm‘Ãê¼/Wé+xC[b–b÷Ù.²E1ø •­•¿ñºUjx‹ð¢íQ¨äÕ9¨¡ ª­›žánªyŽwŠXÜåÉÉ-Ç©è£OˆNGÃn%ÕiX*SO $ÑÔ?¬®t,óŽÀÊ$ o“ÕYö Ê‹}\uÔs¾Šy4R0áÌ{-p> €VÛl(o}ÞŸúšêXêcß? Ø?_pUDDDD@1ÛˆˆˆˆQ6ù¢""""""""" Çù*àÜ¢""""*7£;*ª1Ü÷\lUQƒøJä""""¦GÑWªÇž%c|¼× ÂÍ;ŽN6 Éþ¨éösÕòjMg@dø¦£¤œ0¸dò¾V“ñ7ø)œˆ¨{-\ñzÇQ øß©-TQy·]]QB×;›–79³CŸ_…Í[+Ð:ŽWh«>¦ ‘¯‚åIã—ö\GÄß›]–‘ê ÷‘_wŽ“UZí3TAé't1¸ür>>By}p×W®ˆºê§Š––Z™Ë,2=Þ$¨áZ‚>&ø¥¹k;„fJz9j¯²Dß5ò@Ó¶o9xÇx‚žnÆHÜ*ÿ4NèŠÝâEÖk&й\éêM$syâ2ÿ) åÏÀkº7˜ä‚=B‰>8¹¬ë¸f¶_µUÒãÙÆ)a¬x•¢BÞnaÍ»1ƒ³H¦Ï’7 Zîwí¶WÐÏÂäòã/å.ÇeÄó?qƒôF7•ϪæÝ÷î¨\s²äÂHßUÆQF´2úi8waÓ¬#žår3Èß’¾ÜÏoä¡n•³Uê EAf¢„ÍSTòÏP\ïà Ú¾£¦¢ÒvŠ:(5,TP¶(€å,o ÀÇeëàlr;eEÿBžëÇ> ØXé?HºG°ød©¥¯þíÝ»)AÌs¿¢¦7÷udñâÐûçµuµ…¼ÒZ¦sy†Ä±¼àmýÕ>Ï‹¥HÕ:®Îy<©íÔõD¿3[üž‚™ÙAÏ´^ÍäqM_›(®µ¾•îõtR¿¾$þ 7é*{Ž ¡¶ÕV2Š ¹› µ/isa8/ n@êp¶Wávö/œÒN™’Ë ieäätY`i 5«&¢""""""¦08Ü *¢&ØD숈ˆ‰ŸDDLôˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‡Ý¯óDDDDEFµ¡­°²=Á­. àz.ÿ]&:`téÿý‹±0:uùªŒå6L…C꩎à`úªô–;ñ,éõÇ—ÔÙ§õéË¿Ol¨¿öwËËÅ]E%Áö0üÿvvþRœ¨ú¡ù¨¥ãû‡ÖiÚ^'Ûb寶9”w Àq-3œC}Ø÷ÓpýÎéðÄXªlõ¼6¸M‰©úÛa{À‰äbhõ.øÝ襚ÃÙÏä³7d¼]yÓè»Í-4žTõRÁœ¼Ü{KìwÁp*"}œ0ê][PCyÙm£`=ðçÈOýP¦ª" L‚±oŠFí3Á+õ\e¼õP>…¼ßûhÞÌqœý'ðÛQ\Þ:èÆÐFùni Ïõf7‰ÈF^OÉlžV¾9ÑuÔÔ6š™òºNF“ÊÞ®ö áµÞí÷bæPÕC+ØÖ½ñµà¸5ÙÁ#¨ȯT*;n‹‹·ÛÝq˳±]Œw0÷GlÒTñë©]qãVX¥k¢³Û£„†»8–_Ö8~S·<ÚßpãåŠµÐÆêZÎê—HàÖ´IO,Lõ%îh¿ÑlZ›- 41¡­Àèì-ÿÇ )ñœܼuðƃ'–|æÉª¤?ýl)U±;ž½@i8Ûä¾{•uÖêšZʈ_ ‹Nà9¤üT ðI_5¯T¶ó;˜ÊêªYö…˜sAú³*| ÀöQ§í ±ŠîÚ¯Q±ÆKUÙ­q Ù±JÇ4“þ!PJŠsO]£ö;©çàó-V…¿ØŒ_êÖëƒe†NçÎf\Óò-ÏÕIAÓ¦Q:"*ožƒUDDDMtDDDDDDï”@ˆˆˆ‰ÝuDˆˆˆ˜EFµ­5¡ œì0ª‰Ý6ÕSº""Ǿ$"ó8®Öɵ’¥Øg]˜Oå¶þÙQ;ìõ“ÆË´.ÇëtôÁ§åµÏø)çóDOuäë »Té‹–»@Ù¨n4î§™®à8lážààƒØ€Vµ-mÔ<ãy‚¥îmËO\&ò´ðÝ2Ù"vÙýíÖÌtåæÝ¨l47ËEKjh+àmE<ý¦8dmØö#±ÈXE×ÿN|jêk½<®’Û£¬ÂÑÚÓÈgsÿXÓžŽtÍ÷äôR%[|O¤’·@^b…žd̦3ÄÜ—ÆDÀäå£nêx½ g[m’g¶;ÍžjfGÌC_,|“4‘܆2\g±>ª uÇAÕU²'u~Эah,šqæÉ'é*Ƶãf4Fë¹/?áV€ýûïæÕ2ó}ÏN@ç0ò|/¨™®­Ï³ Žùò©è±o‰wSÃÎTÞ(¹Mm\â‚•Çý”’FóÎ;e¡¥ÀƒŒwP›Jq{Ué=Gi»Óß+åm5[QNú‡:)¡s{ÜàŒgäpF[#·ÖÓWÑAYK |3ÄÉc>­pËOÔGÕ3¢ävÀú®Ï1®üK—m·\]œõîª2 +žAÛ×Õj¯ŒZ…š«Šz“QÁ)šžátžJW‘Žh‹"?ýM¬ROì÷²ÒOæó#Þù©IƒËs~æ9®¹Yùs{©‘ŸâªNÝ2¢þ®š*Ÿ´/HG‚Mg{ŸÚ?u¬x?,<~JOçu_EBzoß|-é"Ý+ã-”ÍwÜéaÕõTá¥Ü­Lù9ÏlHÌ}ÿÀù«3ÚAúï…:‹J@@©®¤"˜“ç0‡Ç“Øs4ìJÕ0Ép|ð­û<¯ ˆÚ‚Õ#ù_[gd±Þ0Ê)‡æ¥WCÿbg|&ûà-}xÀ£¬Ó^!î÷HáòS)nôdôqlLa>ÿ¬Ùù©÷j­§¹ZénT®&ž®OõkÚ?_ApiÃ©Û UÜ{´ÇgãN´·SØc½T:&y|œ­{ùÃ@ôØ£\¾õ>“âdz†¢¦(…3Zؤ8jªh$h÷lsI ÷ˆgl­— ÷ ¶ÝTgã>ȈƒtDN¨ˆˆˆˆ‰²""”DD÷\ðds0áÊGQ€{íê¹¢""""""""""""""""DDDDDDD@ˆ‰”ÈÎ227ϲ¨ùå|×Z(n6Ê«}@Ì5P¾:µÍ-?À­`ðNõ.âî—»Ï+iG]!†­ù ‰Îò'Ül~ɸ[GDDTõPgƬz*íiÔz$KNýCqû‘²BÂàgx$:@N'L¸ràl;øâJáûMµ¦›¸Õ‹aÅ U|;àDaphyàZ}r¦ôOl±6Fó¸9šZ~ î±\‘QÇ;`uÉZ«ÕuôÕšÂÿu£‚ ›]D ˜hk¥y`¶Äm…²Ž Ù£Óü*ÓˆÙÈa¶Aæ oÎæ<Ÿ~bUÚ~H€å.ñÍÆ1[[/ tí^ii¤oé™âvD²Œ8S‚;7bïí|=ZU¹à£ƒÌÖzkÝA ÿBYªZh¢smmKO09îÈÈŽ„àt)æUNÊ0ý¡FµÜ?Ómí_¦ˆ™‡ΓÈyŒè>0~aAú¢çe‘·'öq¹'-¨pjÆý5Â/b{\$£µÀɲ .;ÉWT¬.ÿ/c꺲ð0öóŸP¹0eÃ?’ärIåi'>ª±‚KÜ}>?obßÁh,ÍyÝîQGÊ9™dv~¡ªMqqwOâ¶»Âû:{BZ-°¿±QS‚àþf¸¶4‘¹\í¶êèꩌ 8ISSvñÕÄ›ŒyvƒDç}#Z>dDïÉIÅAÿ|!ù(ƒö‡YØ*ô~ m+röÔÐÏQ·ÅŽY#aï·ëHù•Ÿ<7\Ùuà&‰©a˳ÁLOö¡o’ïâ² €#u®ÿZr[nFÒÎÊ[Ý,qÈæžC o–öƒÓ9`${¬)k,ÏÁ òÿÛþKiܾ¿Rð§L_&qtÕVØŒ®=ä åyú¸wwÙW¾wDÝ¿DDDDDDNù‰é²"""""""""""""'òDDDDDDCÑXZÃ_·NÝßIR ò<ò‡5®sóâÙ ô5Ç8^¬—W7ƉžÙAt¨Ó®¶WCr{XE4!ÁŽcË‹ƒy¹Ä`ÅŽl²Ê&wÂ""! NÀ* ÆUQaú­Zl¾.¡ÒRÈ~í¨ôœRÆÓ“Ššyê\1¾ÙˆÉŸ^F¬¿”9ÏUPˆˆµâ>Ðt÷uu½”Æ’'Ü_S 9pÞI€·.\ìc§NË`ÜÔƒVp“LßüÃ$•6øÛ3S+#ÉÿJ¼‘ ÀQƒSÌÎ&xÞ²XXÿ½Yô%«*,{;?Gº¾Æ3î¤Ì´”³T2¢Zh_4G1Èææõèq‘Ôþk»²"±¸û©gÒ<Ô·ê^aS'“Næ»’ÌæÂÇÿ…Òc¾½8a¦åÕüI°iØœçþ‘¸1’ –3$®ÛÑŒy[B­dmdm kFÀÑrDQňª}<Úý¢*<ë¸iвç²Ê7d‡GïJÄôi8ÝÀ†Ç_»ñoUšŠ¦ÔRiZIÏé€ :W  dõçs‚NøbÚrËkÓ¶*;’Š*uBx"k?™îIÜ’IÉ+ÐOš†~7õ]÷Y[tE©“UKJ#©–ž&ó;Î"Qwäy?UÙÀ õï¸[µ6¿”SEÌ©ŽÔÑ—ÈZC€ö oÛe2®gvàq¸Ê0ñƒê:.@s;>˱Bo´_PGQªôÆ™ŠNgPÑÍ[3q°2¸1ŸÂ7~kx]²³Pñ×KQTÁôÑÔ¾¢¡’7™¦8¢{ÎG¦@2Ì()ÛKC+? 161Ÿ@0»Î}œnvd•|º¦÷®x¯¬j;.hâŠlþ";Ü?Ý|JOgtOšŽÞ?-ÑÔðz‚ãðùÔ7xŒy;ö½®èsô^Ç‚ ”u¼·Ñ0¸Él¯¬¦·tΘ–%Åg£'Ú¥IðÎѪiâæ–Íqls8MðäŸýàŒ‰AjW:*œålÀâK' –F;ôeÎX9k\ÖÉ¿ÕågõETDDDDOâú"""DDDDDDDDDDDDDDDDDDDDDDDDDDX§ˆ×éìúŠº™´ÔÆè qšNV< ŒÁæsr’$d-qÈÀ9ß—ë¾.ÔÓð«Cq¢Æé⬺v‰å)ÞÝÈ?ÅÆB”¹Îhw+;Œ;·ä¹åÞüÐ’?g#ت¢".2f ôU`åhh`*ª÷QÄ¥Ö{/ŽÜiNdm Nhv2Ù*ªcpéݯpRô»ÐeTg*¨ˆŠ}¡š\Pk›¯„·’ëHê9š3Íæ@Cƒ½0Y&:þÉY À¯eËC]ô„²4Ïh©0Œîa›$þOkº~ðRm‰®õ‘Ñ×mMp8¦·R¾wÞ |-úœªþ´åuE§TqFõÍ%v¦¸=°M& Ÿã+ÁÉÙÒ¹ÀçÿT›ˆ¡þ ÍvÔmЖÚÐë]Y5{YÐÔ‚H÷å»zü–@ðYº]=¤à×W«;à¿Ü"{)]3Ãù)KË™#F>öäòµ½2B‘Ⱥk*i¨©e«¬¨Šžž&—É,¯ c:’NÀ(‡â7Äȯ¦©Ò¼8–fBòøjtÀ€i€9ÁÉä¶Ã›c~õ³«ý?Äf\,vBï2*N`ÊÊÜ’~,äÄÌõÈæ=€ÙÊliÛ-§OYi¬Ö+u5ºßJÀÈ)à`k>C©=IêNåzì«UG7˜ax-¦ì×zÛÍ®t®”ËS[#yæ{öŽà{ p"&èˆV²¼UjwêŽ;ꪒ b¢«u¶ú6Ÿ1ò/wø–Kû=´ôõ\E¹j)[OGm’&8·g¾I°iüÔ飳——««Gé;½Ç8û­ óoý˜ÜÉF_ Z¿Op¿ÃÕzŽ¢bÛ•êY¼˜Z<Ž.Žœr4‘<¬“°~K'\üIpŽŽ¦([¨ê*ËÏÆiíÓ–Æ=\\ÑŸÉöVíóÅ· ¨j£º4c’h)bŽ7}%•V«CPxϵRÔŸÑjˆK¬¬¹ˆ^¾ÜŒà‡í,%«´ÔZSI]5%ÈŸºÛi_Q æ(Èh÷'{ tUÛŒG<±½Ï7/–1Ó ôÝlb§‚:x"dPÄÀÈØÀZÐ0 sXË|sÐ\:§¨ŽºæËÚ&ü6Ê7Ë;9Ýøc—oèE¦ ã—‰:¦ITÑ¥4Q=†V¹–nØòPün ¹Y×¹ÂÏÜ&à7xxië¨mŸ¤ïq4fé^|Ƀ»˜ÛøbêI겞Í5}5ðPISjçtPówŒ’ õ÷«éÊ""/#Y^áÓzFñ¨*9LVʪœpå°»\ajJi¦«¨t³½òÍ)ó${Î\÷»w{ä’~«b> ¬Ž´pÙ³¶•‘SVÓPÔÀM7–ò_G —/æ<àÈáŒ~-÷Øgç¦ëq_Ä/øy_¶º²¢ëq/j[hd޹/sœÖƒ¿áÎ~]W“pãn×Ü ×W]?W%5U¦º#A^èâ¨'ÈqkƒZ÷e§;{”|ÕÜ;º]üpûWÚZÉŸ§â¯}l ‡ã}4õEÆ^`Ù– Œžã·.ñÊZ™|ÂÖÉ‘Žz®™]1 ól å¨sÜ@weÀ5Äd4‘ê³G„»C5f¬Ô:YY¾éÚºziž?¨¨id‘Ië±iÎ7 ‘Ýcúj»Þ–Ô¯Ÿž¦Ùz´Õ–<5Æ9i§ØpÛ¡)ËáßÄŸZšM5¬$‚Ù¨‹y#©Èm=s†Ûêä#—¡9å?²!ŸtË´—5>›uÜ §¹LêH€ØS½åðãa·#š® ×–Y¸Ý£ª˜ç6In"‰ÍÏÂæOâÁ7´’Ù`ÎwUDDˆˆQ7Ǻ ãtïÓꈈˆˆˆˆˆˆ‰º"""""""Äœ®_DDEñÝ.tÈ|Úê–BÒpÐws rv_¾û tïŠ(]aås$v$Ý£<¿\eÝ{’†Kt±\iÌ´ndk˜HÀ=vßn»zex|8Ó´6{Þ©æmD•.y󃹹£"1žä3”Ü…w"""""!Q ÇŸ38‰Ãpy4Íæ/ TSÛŽ£ù/@Â"""ùoúKµ¢²Õ_f£­ôóÆîí-p?0JÕ6¤Ó÷¬ël&º •¢¬F^ÓÔ´‚ÉìG+‡±[;á>£:»†ÚR8ƒ%} rJAõ˜Ãúht"¡ I¹P§„s³‹6.:±äÏAkuE]89ÀŠÚz~ûdž|zä÷S]gñש&ýgÐt³FÓvµ1€L¯Ž7| vÇ0Îÿº=Õ×á?E:Á`ºêZ£I-EöXä‚Hqµ8`-nÛ‰ÎÈ+ÛŠ¼RÑü6¶Cp©Ì.§ ƒ¨œÿe½‡öœ@÷QZqÛŠÜZÔ_ÑM AUC åÆ:^MCãØO>~o¾9[¸Îq•˜øá–˥ߡצC¨‰JáÍIDî»ýl€çãvÛì6É‘lhcZ@t ’¦QqšXá…óM##Ž6—=ï8k@Ü’O@£/«]ÔýòáO7/#ci8æÃFÀdõì¶aA«´Ï ¸'¤†°ºEHúK%3!`æšyZÆ Ürýr¢¼NjÍlê«m¥ïÓöœ6šžO×ÌßYeïû­Ã{le`¹¦ª˜?%Ç9ú¯¾…•4ÖꪈŒŽÌÃäk hæÛÃaž›õ[*ð·K|:hÚY¡cã’ÙÌö9¹kÞâA¨9XÄ¿…é(U«xeK=T2Ê M‚(ùßs3à ä·%¿«ÆÛq°U\.âEk(ª4¦mCÁ,ŒÛ¤qxH a}ÖñVÿ(ŠƒA_ñ–9õ0}Ý€Ž¹t˜ "Ú¡újÜK‰0Ô×½Îg¬q¸{uî¼ÞX«øsâîÑa®žÏEu–ß;áqòäó xÈÎ>&‘‘è²®ŠJÖqJËJ[îe=ñ‘·ál‡áŠsóهߗ»ŠˆPO$/æcÈï±ÆêéÕÚÆë«¿DÕ^ç5´4bˆT¼fYckÜZïÚ ;ñ…öp’¦¦Ÿ‰ºjz))ᩊïM,Nü±‡6Vpp1œw[Y…Ï1‚æµ®ß!§ |ŽË°{ª¢""""'|¢"!ØdªguTDDDDßÕ ¦ØØʨˆˆˆˆˆˆˆˆˆˆˆˆˆ""¦¢¯tVgY­C%’Ås†–‡Éôj-[$Î~7¹¤l@h#¨+qfMg-S.VýU¨(é˜LR[ß^()̹Àpš8¼ÀÇu ${½niŠj—ÏCSyó\Îxëh­pÕ1HìùÕ“½óL7ÎÚÝÎË5Zmôöú6AOM8hݰ·æ~«ês˜Xü¸U×EK 3)àhllÏ+}$ãø®äDEiñG_Ø8s§£¾jQ÷Y*NÖÓµ®¹Àš\3Ó|/_IjF«Ó”Z‚ÅVÊ»}d|ñHݻഎÎAèA ÕDíêˆFB‰~81WÅžÛb‚c[)-=Z=0ûÓù-ŒõPíÐñÙõ…«^Q‰Ë/™¥®È\SDÆð@êöslõdû,…à \ArÑuú¦@+m2:®˜9ûÉO+ÎyG`Çì÷Ry4ñ9¬¡ø1|ºÀþZÚ˜¾ãD}&—-è9þ‰¾Ï=%÷ }ÖSÓÎÉnõ¢––IÃ%<ÌÛ¡‘Ò4œœ˜ú dÊDD qòénÕž!5oß„tvéi˜ÿëK&k'v¢G;ü^¶µñ4wìú†Õy´4EY|{š$À2FÄ]ñ¸×8pµ¸AÀ> qZµº‹TU×Yl•Í5õÀÉYX2êØãœ8‰·p¦Ÿ øs¤¸o§ÙeÒ–ÆRÇÖz‡žyê_Ýò?«¶Àt •Ùòª¨3ºª"¾75¤¶NÁ¦(ÜæM|ŸËš@qˆcÃÞß\»á,ú¨Ûá†q/‰ºãHfÓ6™MÔ¸á²Ìp ŽyœpÛàÜd-‰€ÐÖ€Û°UïÕ 9¨vßr¡oÚ-©<ýE¥ô”a¥´tÒ\fÜŠBc`#ØFóõQ«†–—GëŠ K=¾‹í¾dôôó’#3ˆÜ"s¹pKZò×`ž\de|šçZja}šïºÔ\*¤ÛÌ€Fµ£ kG`|ZGLßõ}úšµTÜî3ä²[“¹$ôw'M^ ø?ÓVšh.F«’ûråu¶žGGG ½á‡ÊFÛå­êpÝ^1©íZà âÓj·QÛé$žŠš zh›m¦7à5£v $pV„[xC¤h„‘¸Eg¦Íé¼m;+¿ »8ùwA×ñoé”'âØŸt>£nùP3Ä3ŽEôs¶&Üm·‘¶>åóû˜Ÿù©Ãu†Ç|Šá§nM¡¯d°rÖÐÈæ¼˜Ÿ9ÙÔ¾ ZöñáÓQpÒ¾®÷c‚{¶'™•#ã–Œøg `œƒ¶pN“,§c0Gü×ÛnC)v׃·±[ð¥Ä£®,÷‹}Ykj­ÓG$m.ÝÐÈÜgÔáìæÕ›q¿\{*š"""""wÊ"""'tDDDD'U1Œ*¢""""""""""""""""¡ì€aU[á‰îtm. °tDDDDVÿt³\h»¦–»°šZø;GÅ ñðÈßí4à–ÙQ{À¦¨»Ùµ~¡á}ñïcâ|Ò²»›È©…ᓵ½€$“óo¹S²"!QgÇ ŽJm[Ã=u!Ò^n©sžy‹žö˦ŽlŸqô”ÉÝYücЖî$pòé¥.¬51óRÔäÓT7xäö=qեú׎‹ºj~ñbë!–†ïf«×RsŒKÇ¡×1S_u@se…„—ÓP†4í#÷É{Á—æ2$ì2CWÊŽ+[msNÇRRZ*gŠNÒèÆ\3±~ÎÇÈ,Ÿàjç„u5þdo¬¹Üe’v²@âÀÏ8èp ÁõYÿç¿Í;¢".#>¹+Xþ+u;uu}\^cc§¬ýd àS´Bâ=‹Ø÷ï,EÌy‰Îë!p/„Ú‹‹±–›S%¥·ÆI®º:øiÊHÎã.$`4œç $lS‚ü+Òœ,ÓµiêQ%d¶å+÷š·uËœ:4gáhØ{œ“ëîô\º­ÚUš¦ÔëÓ)¢ûÀç.?²;dû,ö†ÔÖÓprÐØŸ¦šý&i2!•ìåß|.ÎÝÛî¢~‹âþ¹Ñq6ŸNê{¾¸…² !lŸ*@æg߬‰eñgÄû~MMÆÑvßíÍÿõº"ñ«¨lš:Êù9{*e`>ü»ŸâWDþ4usÆiôÞ‡}ùÙ4ŸÊF¬u¨üNqRë¬éµçZÅ+C#  k™Dáßž¹ÁääîâHíŒ//¼Pgu  ¨¶Çm¹ [h« ®|s=¯sƒØ»ÆpÜœz•éqwWqÛŶëºêª›MmúŽšçlª ™ñ°ÑÉ |¶1ÙèÑð¹§bîl‚ùǃ^,é+áŽÅÄÚhÿX<³u‚Xðv>|Cø– d+×Wð‚šŸ‡w»þÓ¹«ê-u2Û*èkgl" ÆçFC' Ãù~6éŒlµù,`-pÈsqŒÕHϺ£ôgh(Êa¼PÏBâeÀ ˜~yˆ·üj}´‡nª=UQÈMÑ;¢"&>š!QtDDDDDDDBQÎ 'Wª"vDDDD!CJ4Úr·U–Eƪ²¢žfµÿz€NÜu<ÅÍ=¹Làˆˆ~køâ³ŠîR^ðÈl7Ê:ùð>#qÀzo3OøVu†H打Fàæ=¡Í#¸#!sDDDE|cðQúâÍý4ÓùÔ–¨žõ¯§nO/þñ»–ž¤e»ü8þ 8Áý¿}«#OÝÍNù ?tª%­ß còy‡g{œÎ²@“ŒuPƒS;‰^2âÔuN•ì7 « þ k›>Ã1’Ÿ!tWÕSPQM[[U 5, 2K4Ï dl%ÎqØ;•¯üp«âeáÖ»\’SézÝ`ܧ >Aî3ÊÓÐRV@û=4E<·»†·¬l®©¦Ôô™oÂÑ!ÎÏga®'5QbñÙ¢*ëlÖî QóI¢'S\X_€ØñÊð=C‰ÙÃÑwxuâ«e ÞŸî°ÔPÂø¤†1åÔDÜÆ&Û~vòáã÷G6:©,Ò CšAdÝTã¡îˆˆ¼"_"ÓZù}}Dp çÏ#wµ„´oÔä –¤îsK[^úª‰ ææI^î¥î$¸Ÿ©*Hp?»5ö–Óú¾ã©êmÖªÖ9õt‚¸)ä–áÀAÆNÅJ[¦¢áwôm%ž U4L2SÛ©ÿ[UPOY?‰ åÎ=±Û (q»Äþ¬ÖQÍkÓÆM9es°YO)ûÌíô’@FýÖàH$–Ò6mUª¯£Ò¶{…Þ¹ ?’Ž'=Ñ·9#ðqñ7î¥'ˆê]Ysàßô&¶dŒÔ÷kÃbš¡óùÎi 1!^Dì'®í;ï¼[➎¹è ytÒW®WUPÌæ0Ic 9’7=œÒ·NÊÖ*й_}¢Çz¼H#´Ùîœa´´Ï”îp6h=Á ÑÔz/XioºÉ¨ôÅâÎÚ—8@êÚ9!þ Þ`3óSwFpúÑÇZFÝr"–ëAFømÕû¹Ô²Â÷DõÍcC›ÓÆíBî"è]UÃM%‹T[ÝEZdÁÁÑÏHÃñ4àûú€W½Â^0ëÜÛS`¯-…Ò½PÏ—ÓÔ7=Ìì}Ü8zã!Yº†¶Šå¸ÖÛi䤤©¨–X©å”ÊbkœHo9ÝØÎ2wõÝ{\4½Tiígf¾ÀG™n®†¡¼Ý>‚GË[_§–)ᎢsÇ#ØGBÈ+¸ õDDDDDDDD;Œ"eêòˆˆˆwDDDDDDCŽýÑb0Q;¢""""áQ4TðI<ò2(£isÞó€Ð:’}]Lu”‘ÕBåJ9£..ocCÔ{Þ¸r»6ö칟bª›""""(½ã—G\iÝ`âîœtÐ\ì2 ÉáüQCÎ_ ¸ôd„ƒê$ß`³x“oâv‚¥¾ÁåCpŒnTŒvL»uåv i=½ÁWîÙ÷ù«+wýG¥4%F©ÓVØ.’Ú^*«(åqjFƒæòÑí˜tõè®›Ò†÷d¡¼ÛflôU°2¢žAûL{CüŠû~ªØâ¾ž‹UðÓQéÙ›Ì+í³ÄÏPþBXáî~‹êáõUEnƒÓõuƒ–ª[e;çiêטš\×+Ýˆ… ñ“ÂÓ¡õËu•–™±XoÓæFÆÀÖÒÖc˜·nø/áÞÊöÑÜm†ÍUm¾Ý1ªí–¹ ¥–geõÌ“õq¼Ú{K€w|ï\|gV‘÷S«Já=4VªiÎC\ç;Ì™ìH €žÿ}J™ióEåjë%¦Ò÷==ro5Ê–JY¾HkÚZHÈ#˜g ãbPSÅW ´/ îº[Oéz:ϼÍM-MmUUS¥’vó†³#f oÂФW‚ 8éø7$‚8Û$·93H$·•… ‘ì~‹;'º"""/žåEIr·TÛ®ÑUQÕDøj •¡Ì–7×5Àõ÷P¿ˆú ýë{U]ƦŸIVÖÐW²ù5žPá šÄÍÎF>6ç¸*øà)¬°ÐhíOMËG~]ÆLR7œŒ¼ƒ^ÑŽ­ä#}”™¡¬¦®€OIûD5G-FšÑñyb’ç8Îû“{}$ü”9Œs¹†ÎæOAÝK.%x£áö˜ á§ 採¶Z6Ð>û4mps£¥Ñ0å®$‚KÎZs°#E[µîç|ºKY]WW_]RáæOQ+æšgtÎq.qè7RWÃç…+Ž¡†›Qq1µv»Sš$‚ÔÇyuU9ýi#10¸~V©Ÿ¤´ÆŸÒV†Z4ÍšŠÓBÁ´TÑÞqêçh’OªÀþ"Øû׉î iø9K©j幇|6HÞI>œ´îYÇPhý#©.4—+þš³]ë(ÁóVQ²wD Îp8ßcÑ#Ñz:9§š='`dµ™œÛt Ëæ<»ç׋[Â.V¶FÏÃ}'ñã˜²Ó nëŸÄÖ‚>kä¡à‡ (¦d°pëOÇ'˜ß2”I‡|œnŠÿ§†:xZ:Y&lGnbÖ’鲎âe×_q*à5k]- EDÐ4»SHc©“Ë,Ü9Îû¹ø·îlJ0Dï•BßóUDDDDEÓ[KMYGQGYuÕº9¢•¡Ì‘ŽsH;FF,¸AzðµÆ¸ªé[W[ ï/åcy‹³rèŽNóD -'ñ7lîq3,—J Õ¢’íkªŠ®Š²&ËѸ½¤dWÚ=WŸ`¶ÑÚm‘Û(#¤¦ø!ˆ4ÆÞÍv ÐC¾È DDDDL¬Iãžž£Ãž®3±®0à ђ2ZöÏi_æVµå­”ÆÓœŒŸ¢Ùï†Í+iÒ<ÓvûDÌ¨Žª•óÔ´÷‰fh{ŸüCGöZÑÙdm‘ ÎFÊx¾¿Á~ñ %ò=”–xé¨\øñÌZCfyo©aë襟‡-:Í5Á­=EÊ[,ô­«›/æËåßÈ·eÑxšçJXu¦š©ÓÚŽ…•”ÒHs7kØá»\à…õ¯„MKï~ŠÕt5TüîÃuŽFF@ؾ6ãœöRS„ú&¤è­®qûÓX4qO#©¢±5Äá™$€s¹Ê¼×M5C'|ÍaË)ÁÏaÿo仕6é²Ö‹MRu7u5\r)¨gØf¶œr;æ ¾iÏö––G;~g`öWѳˆèí^ÏWs©sš%|q“Çò¿£×wz)óáÛÃv›á‚÷x0ß5[FESšLdÄ-=ÿ¶áÍéË’v hÎw>§º©ôü”»R ÇŽ«#üÒóaÓUŽŒæÌCÿò ú… zÌ•Lƒ‘‘•^SŽ¦Ù¾ýs‘Óª²øëmŠíÁ½aC,^`už¦@ÎPyœÈËÚ7÷hQ·ìø»j]Wdó1ôTõi=Úç4ÿ1s…×$l’7Å$-|r×µÍÈp=ˆôöP·Æ×´æ›°ÅÄ iý«DWjhˆ$Ù’1˜Ã>CN>&àuQ><ÐNÝö[ð/«êu +íW ÓQUg®DÒrYLøšcï¶_Ëæ¤ù*÷DD' Ž ¶Wx™ B6†Œô ±>Hòˆˆˆˆˆˆˆ‡ÕZNܪ¡õDDDDDD(wDDDDDDDDT ©€zŒ®ª˜Ã {ys–G¨î$Ò)²ÙõU=ÂËmºK“n²²GáÑÍBÐ!ßxq9éÉî³""±xëuÖÖ^×Ýx@ÚëÕ+ã—È1yŽt!ÀËÊÏÚw.pѹí¾&à§Š[>¨ºÅeÖ4Ô–Yçpe5tr“O#Î+óýY'¡'¶RMdDNýÕ:çeiñgAY8‘¢kt½í¸dÞž¡£/¥˜É+}ÚONã#º‹üâ=Û‚:Þ¿…N{¡ ?êõYs¢ÏvÒ°?Q&K‰ÇÂs>,LŠJšzºXª©'Š¢žfÅ,OcÚFCšFľBø§­m%êyÜØÙVÞXœç~)ü zò‚~‹ÒDLz¢""",[âÇ?ù:ëOþ‘³·˜Å¬ÇÓ=³’ÆJvk[¹$ã{­²ðÚÓ=‡‡ºrÉTƲ{}®ššV· s"kN>¡\ ÙjóRUÔñŒ7Z‹|¾|ºŠþøhœ÷†ŒM?—Ï`X>AlîÝG¾ßMALÒØ)¢l1Ù­ùô""""£³Êq±Uù&Q]C£lt® Œ4—¹ÇÔ•ˆ¼6ÕÔjQ©8€j]%ê¶Hhb.$6(jªˆv?d‘+ZFÿÕƒ•˜W‘­/pé½#w¿ÔíÔrÔó€âÆ’Ô€>«Suµ2ÖTÔUTÈdž¢C4¥Ç$¹Ä¸“ï’¤ƒ~ in%Qê æ±¢šª‚Ž¢*zX£ÑfMÝ&KH8Ç(ú©Ç¦tý“MÙá³Ø-4v»t?ÕÓÒD#`=É©=ÉÜÊôÚ0Oü•zŽŸš®Àü0lWo\M¼‡=®ÙEmc˜ì€$ܹ0·åʳÆÈNé·ª¦Fz¡ «áÔ4”õö*ú*± §¨¦’)6<²×4ƒÍ±º„> ´qÖ;kª`œTé÷´>—1ä² €ÎÛ€H#±ôS³¦wTÎæ¬?b]aÁW§©é䨪¨·ºJX˜ðÒùâ"X†Iñ±½Ö­¤ G“âNZ{tR_ìþÔ‹‹vGÌ[ÚÓ l`ìù¢{^ÂwìÃ7槃qÛ&øUDEAÓs’«„Dˆˆˆˆˆˆˆ‰¶rˆˆˆˆˆˆˆ’"vDDD\]$m‘‘¹í~yZNîÇ\.Hˆˆˆ¨ìãc‚¨ÓìAô\‘p0Hd ç©õ\ÇMÑDß<©­tüEдMtñCÿmPD™×DÐ7p‰½ÀÈßcäøLñ%5E†ÖµÎ–Š~Xmw)“¶ ŠB`ƒá8mÄÈϮȈˆ2¶¬iÇžXø§aä¨sh/´±‘n¹µ™0ž`îG ¹˜HÜvÉ#u¡¥ñ ÀªŠŠ*Hnµˆé--+ë­Ü –ó~åì9ˆøNû¯bñâvMI¦©Ÿv³Š=AbºÒWÑËH÷j<¹Z&ŽV8‡4:2þœÛ‘Óª•š;ˆ–-U|ŽÓh2Í#­1Ý_'.rHæ1§;—ÇŸl{«ÅÉ%ñƒRÚ_:¹ç¬†F}_S?ùJðržš³‹ÚF ØSM-î•’Äæä=¾`È+jA‰âöý9ÁmYx‚©ÔÕ[eû¼;‰\9#ÇøÜÑõPOÂÎn ãŽ’·ºWBÊJ±qqk9Ïú·ëZÓè šÖç¶VÉÑÍ[S<´±Èö´ÔMå°Ú<®v?&•ô”DXßÄÞ£~•àN¬»Å’O¹}Õ›…Ó¹°‡ÆÀÉ•O zuÚ[šb×,f9]Lê©qœÌ÷KØžÏÖIX;Æî¢ýÀk…#Ñ5â¦4õ-'Ì~?ÿ5®wo#¶;¾kc¾ ôÌsÃý’f;š¢òçÜê\I ¹ç•€g¦Æ}sŽ«4×ÐôÂåÐa¨XƒÄ,9œ?ÆpIÛ`Teà_ˆ{^×zëQê+MDºª²:© ­ÿWä2Ð×c?ÖË»nþ4éeŽ×¡œqø%©¸Œ½ZÖ|¿i[oñŸ«G3Û¤ì˜! É6sžç>‹á¬ñ®åºM†˜`ŽFÆ÷ãÐä¹yU.x ö1¾ÏŒ€— ~]Æ »óî¼Câ‹w AO Š…ÅÛ¾–’&8 žäe›<(x…ÔšãR !ª(⯨-s¡¯‰ÑÄöµ£~v’Ðüû#›Ø¨ßÃ=[/ xÇMz’õn´TÕRIJ÷ùEã•ð\A-#·e;øKÆ ÄxÙOh¸}ÎêZK­•¸dûu,ß–Aß-'dÅÐté¶2¨Óñþ·~ËTœ\´>ÉÅ-Sh–6Æi®Õ, L…ÍÇÐ…éð+SO¤x§otÁäÓ×°=Œêèä>[ÛõkÜÓÛlO¢ª"à÷áÀŸ_dcù˜×€pïuÍ""""""""""""""""""".2ѶK»É舊„`{…TDDDN£Ñq=:”ñ•ÁWi;ŒœDÒte¶*©K®´Ñ†ÐÌç4 1Éß÷]ýí²¿ƒn/»WØŽŒ¿U‡Þí´ÒK#¾*Ê`1õ|{܇ÙØ‘hˆ‡¡ßˆ©…eqK†:7ˆvièµ ’šz—ÆæÁZÖÔ@òÒÚñƒ¶Çàãp¢g‚+Ä–~>]¬wš¹b‘ö‰mðÇTÒÉ_,U1ò3”“ÊîC#¹{`ýgJ!Ïl"""E¼}]Í¿‚töÖ=¼×[Í<i;ò0>bqýèØ>¡CÎ/4KÒæ‹õ.ÝÆ¶Ž:ª¢(¯ãï\¾ŽÅEÃêWa×8Ù[VC¿Ù2_…¤z4Ÿð«cìõ³É>²Õ:ƒ ÁGC?ï‘Üçn»úû•3Ñb­oÇ­¤/õ;«î}¥¸EI;#§Ï,oˆ?ï 9ãi%Žãæk°Ò0Mï¢5–˜Ö¶£tÒך[¥3]Êó!ñ»Ñìpa=@p#b ÷–)×:“Ïñ ô3cÑŠJ»½I~ryXæDŽáÁÎßÑedEB@êqó* x³Ô5¬ÓZQ¥Á”t\%r—Ló=òOÛûAE‹-²®õt¥²Û 57 ú–RÓD<<­;u#u¶­3lŽË§m–hDb:H©š#o+pÆì; —¢qÕuTO 4šyc†&`¹ò<5­äìOñâ’ 3U¦8kVÉdå1T^Ù‡5§¸§ìãÔy7øsŒ¨³§4Þ²â]Öám¤©¬‚Ž)knW*‡‘-cKÜéevÜÄ ¹>‹ÜÒœ ך¿EX5>޶KxmÚj¨¦ˆ9¶”Âàœ÷¸7Ø÷a½ôïƒÞ,\yMίOÙ[Ì ÙQXée'p"kšzt. Ðø hc oßÍÕì†Í°öÍþ_EëCàŸL¼k›Ô€ ù)bn~Yϲô)¼pù±Sª5T¯åÇ$ õÇ–%îÑøBá'õÑêÌdâk†ŸZ¯ð†:PÁ±Ùgý#OŸ"ZŠÙ&d`–‡gßÔñhýÇ]YEx楉×ù*¥|C˜Ç C›1p©ä“?5çq;EjÎëçXî’MãyšÛqƒ1¶¦0~#9Ë\6ÈÎZ{‰‘^|RrÅM`âlÒÊÁåŒË™Óv´dŽ¿rFÙË„´¤©¦ª£Š²Žxªiæh|RÂðö=½‹H8#ÝkóÆþ˜e“uð†ˆ¯t0ÜAèïŠ'ƒï–gê° ¨-9¾Ÿä¶wáçT_Áí;x–_6«îßvªwþÖ'ynÈ÷åÏÕdòDBºËòzû®lÀ Æ:.Hˆˆˆ3ú¢!Î:öDDDD= """"""""""""cr}Q23„DDDDTÎøÁUD'‰žè¾k•-‚¢ß]OM%LN†¢ Écp!Íp;A BµÍÅÝ%xàwÀ´ºZjVÏúBÃWrÌ眖’Z[éìTîà¶¼¤â7­ú–™¢9ž<šÈõU ¿-ÁÄ+Ѻ*u¨#âžÁ.’ñ-¢¶T²„\YÉ’Ä rµÆ7¸çö‹˜=¾ §-¦±— m5le¼³Ä×ìrGLŽ«êDDDD!Ûu ¾Ñ+äsê-)¦X÷sÒQÔ×JÐï„™ÆFHõ9>Žüñ7„ hj|Fèøª3-L m´Ó9§ó d¡Uôèµµâ³SQÇ]GR$kéh&m¶œƒ‘É-výó!ýT«ð1¥‡‚Q]æ`7ú¹+ 7õqƒž»0¸G¬ôˆˆŠxòÐÓYõݸ·@ÖPÞiüªÒÐmL]}ßýLú¬cá›SÝt÷´·èÙq®Ž‚¦>l6h¥<¤\~!îÊÔjàÝTšçƵƒg¶Øi–ŠVdÆÐàŠ9]þ-²•DXëÄ'¨xcÃÚ«»ÜÉ.•\ÔÖºc¹–rÒyˆýÆ‰ÇØ®>ô-mû]Ýø¯{.ž:S%-’Œ™êäšPsû,qgL#·øJ™j…k'ÅV£f¦ãÞ¬­ˆÈb§¬‡;£`cbv={^ïñ/{Àþ›‚ÿÇš š¦=ñYéä¸G˜Ü5™ôÁv~`-Œ‚­®#k3 4ûïzžâÚJq–ÅG4³»÷XÑ»ðܺœzñ©¸ŸZûrÐX_7$Ø4µ?ä2àžgì>°'¿U}p3ÂeÊûƒŠ3TZ¨ÜY$VhH°Œþ¹ÿìØrϹÉa -ø³’ÉÃÏ 5zfÁo§µR\ª`¶ÓÁHçy²“Üæ8Þ êy·W…KS¬Þô$‘ùrMHê—0ŒÖHçàà²kw0 pÁÇÄí•òUÝíT諸ÑBØñÏæT1¡¹éœºÈ«O]qcCi=6ouwÊ:ÈœçG t“ ]#Ævøs‘‚îƒe`p›ÄîŽÕµÔÚ´ÚRH$†Jšæ¾YðŒsߘ¹qŽëä.øZ*§Ôš‘‚*‡D%±>9qí"\òíèýoÒ·ëf¨Ó”†ÉRê›uÂ5<¥……Ì>΃óP_ÇEƒŽµ² …u¢–WcâññèÆ©Jí5aã¯4ûuTFI+íT¶²<ÚZž@ö;l‚:T âîÔ<)Ö2iëë<À?[C[HвÏo¡ìæõÔ`›‡€Þ 57 nR‡¾¿O>^j›lŽøpNîŒþ÷ϡÀÈY³Æ^žâ´tÅoÞযuœÑÇQ1l½Úæ¾& lúïóG);¥Lϳ×XyÔÚ‡DK³båºRí,Ra‘ ûNRØw©Ë¾rUQ ƒF\@2UQˆˆˆ¬.:pÎÓÅ= S`¯ä§­g뭵܀º–qÐôü'pîÒz <>qùÁŽ)TØ5 ŽŠJ¿¸^i¤qÄ.k±ç3e½sÑÍ$z°Úy¢¨‚:ˆ$l‘JÐö=§!Í# l.hˆˆ›ã¦SþáE¿6û^šÔ퉎lOn¨È<ß®ˆ¾'dt |êñ×8YKÂÆ¦›TðVÍYTZj©L”sÜÆì·«KOÕe$]Fv Ùœ^ fÿ‹BíDDB‡+[^/¯ì¿x€ÔŽ^h¨ @òØÀöæ%{ž,ÕW_û< u=¢†¢ª¦CÑœñ˜ZØæ&NžÇ²Ø@Î}•Q[UÕQhžÞµD­û…1|l'ÒÁÐþÑ–¯t½²mIªìºtÊã=Ö¾žˆ¿›~idk ²¼NV×l–Ê+-š†Ïl€SÐÐSÇMM$ˆãcCXÜÎuö"""¶8¥¢-CÐ÷){ÕŒø%`ðH7dÏp1‘Ý@ýÁ+ÐñŽ’ß™•³Øî,«m¬I ͆Bö¸JN$òÈní áM1ñ šW‚÷W*mõæÃC \F9YW -¥§bC·Û †œ7V_}/5“‚l½V‰>ù¨ë%¸<È0óy#'×!¥ùôxYí·Ä]q§4–û©«Å536dlÒÌìÊÆuqÉé n¡U®×®üTqNkO›kÓTn1IRc£ƒ9ÇŸ3‡SÛ9;`)Å£tÝ£Hé{~›±RŠku"(Yœœ¤žî'$žä•ë¯[_ Ó:Bï¨jžÆEn£– —œ4–´Ìà}V¦nõ’ÖWÏW1.ž¢WK!?¼âKç•7~ÎÝ7  nú¦jg6¶çs|ÊFϧ‰ŒÇ.ßúà ;ãaè¯o!4× i*m–×ÓÞu>ÖQ±ùŠ™ØØÎàvþàøŽ1ðõæßAÅozïÌ…ÓWËÎDÕ³sGE@ÂsËÃ@ÈÃ[—B¦/x ¢øCi’õqšží}Žš¦ñWZÊf´dùM9òÚWÌw9bÎ$x±»ÙõÕÒ‹IG§/vˆMLN×; 2yÛù€ 6;ô6GŠ4iÎ(ð¢Èú{u]¯PQ]_Hù|ØL2C yk†ˆscüMi8ÎJÄ—2몛ŎçOz¨ šÉmm¶‹în0†B!¸w$oè•UÄMaqšYkµ-âwÈÇ5åõ²`H$uõx“Ý'‘Ït.2—snIÜþgó_4Õõ…±—Mð>¹T†IÅ;„nwǶÞËæ&F¼îàì©IàŸˆºÊ-alÑ_¥ébýc槯˜ÖÐ$ŸÆˆús`/³í«ºïKATFfZät†#eø\ãèpìܧÕcþøƒÖ<:¡‚×°Üì°¼ÿæê³†à’\#XÉÉõ9-*VTÕðÏÅ f² ¹\¢lQÈk-³cFŒüq’0q€áû§@~&èmAÃÍ_Y¦µ ©ÇËåÔGŸ†XÏv‘ùt8 …pðîû]ýÕ<Ö² ½ ™ÑÈÂà驈ž.\ty1ògq‡{bÌ\ö·â9ÊËþuÚÅÆÍ=ú"Q%l¦†zpâ¿ñ¿ìà?~í[+ê`€Gº""""""""""""""""›¢"""&wÆ "ñÝë©­–ʪú©™ ñ:Yóðµ­’~D¯¼6’²ŽŸŠöšpd¥ki/Ñ3áæ Ž|u$;®Å§4•<q ú›@?K\$ãbk.%ÒÓÂã’rZîfúc•HDDELåbß6º{¯õ3jÊ)©ESËžWÅ#%on¤³—äò¬ÿòÒRhŠ9ç’®:‘_P$nÁ1|mkvéŠpO]Ïe ШÛâ»Sj­­ôµÎ‰åÖyÜé)öwÈ!„öl‘€Üï:çi §®´·Ë¾õBðúZúXê¡pîÇ´9¿À…÷"".š©›OO,ò26¸ú2V¥µeÉ÷ÝKr¼Èò÷×VKTIêyÞçàG䦯Ù÷¤¿EðÖ뫤s¼ëýg•Ç ¦/cH÷/t¹ùE&‚&ëx㹊. VQ¹À ÇŒIÊKšæ–íˆ{mÙGÏ:ú›ŠÇUÔ²'[tÓ.w}Lp‹û8s³êŸ‘|öDDEüfÞ+5ß´wlu\¨ªŠkƒ˜Ò|§¼á¥Ãl†D_&¨R¶Ín¢³Ú(í6ØOECNÊjh[Ò8ØÐÖ´gÐÖ°'¼FØ´¤î{¯HöT9ÎËxîÔͲðQÖhê<º›ídtÁ¡Ø.‰Ÿ¬ãÓ kO÷‡ª×›É| nN3é•%nw¿¦8KÂkUt3SÛ ¤ª©¥a’®ª~_Öy-ny]ÌâïÄsÑ oqðKÂmÒïRÍCŹŸKÜ^,±M™æÎO4Òµßç8i.9Ü´ä)whµéý'§ÛCk¡·ØíTÏ$Md0Æ;¸ô2w=Ô_ñâoOÕØïºHвí‚j:‹³ætq°ÈÒÃå0 É€OÄ\Ñœlà¡í<·k„VêYê«*Žx#/|Žô “ÕJî xH}ÂÖn|Tšª²áÔÖš9€’=óÍ4˜ 29йØFÞ=جúcŒZŸOéúcKl ­0A •Ò†µ¹øœI;ç©S;€þøEráv˜ÔW=mÆãj†¢¢JšÉ¤i{Ù’yCƒFsØmóWÝÏÃ×ëã,›‡ö¶å¼¿¨|°ÍŽ>ýT'Ö:Nêo®Ð\;·ºŠÐû„vèçÉ7/ x˜——}0ª•2ðƒ‚Úˆ–-U -¥»Ûf–ßW<Ò¾Y*)äæ’7¹Ïß-˜¶á¤ƒ@½nàõm é'áí’8Ü1ÍO†Aò{püÕ‰„ÝAZ.6=A©mÕðUÇWE+¥†vS¹ŽkyÐàÅ“°É;æ?} u/¨ãuæód °SC,…¼ï/•äàzó †Ê;Eœ’Oà½7¨î¶ µ=ÊÙ]=e;¹áž ^ÃìGòè¦o ¸¹Ãþ7Úit—­6§Þéÿè•3.*¢ZZç5ÃT„–‚8-ÆÙỆzv:ªû%®¿ô‹)j£§3×É#[æÂøùy å#Û#°Zætf8-!íw)iØälG毎êA¥8¿¥ïÒ~ jö²a·õr-ßÁÅm<Œõ÷UDDDDDDDDDDC”DN興ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆFèˆ}Y\m®áêY"žh"¤–I¡‡ò·Ëx Ûñû°ÿu›RQ ¨§§ª·j*@ø]‘þ²ÊpÒI?×E’ÇÇÜá½ÎãÀÿ5zʆ:ž‚¸ÑÕó½ÍŽjr!À$á¯u[ ¥žšhª)ÞÙ!•ñ¸tsHÈ?’ìDDïÕp:«{_Ú"¿èkõžvG[nž˱ø˜@Ç¡ÎVð· íw(dŽº†Hžç“Íæ1âV:c–I@þé÷R$HÜà ç¾z¬Uâ³GeÁ;Õ5""|Hji~jË´G–¸:–gvÉ9°ý €ý®¤kYœ3oà¶¥À«KlœÑöÖŒlôÅ×—âtaÎ8õËŽUë¶SÙ:ûAµ=UÛOhÊi9ªiã}eh8c_HÎ <Ž>Ûz¬‘à_K‹'EîXC'¿Ö>¤óä³õQƒþëœ=œ³ê!é×¼½[|¢ÓZn¾ûpv)¨¡28»ÏF°iÎ!£Ü…¸çÄÞ/éÍaHÚÍo=— Z{ÔVú FÛse2rRÉ·ë ZÑÍÍí‰ ?øVãmOhë¬×ÚH)ïÖªxä’X]†Ö1ÎsLŸ°FÌ2F^À8Éq{ØÈÝ#ÜÖ± —8œS• ¼.WKÄÏš_ÔÆçÇ55Pâk‹`™õíô*djKõ›MZ$ºßîT¶ê¶|Ó¿•¹ô§Øn¢æ â§øç{¬Ò¼ ¶¾×¦¿¨«¼Tå8Étƒðm‘È̼Œäï–xÀ]+ÃXÙr˜6ù©\3%Φ!ú¢zˆså|—òwÀ˨~h©¾s” ñý«Jñj“L±Í0X-í½üúŒHÿ§#aþ+ ð“IwÄí=¥^çÁOr­c'’/ÆØ€.°+]‚G\-™pï‡z7‡¶ÁoÒV j‘úÙ€çžcêù]—;¯Bp3°y\_âîá¯ïWÚ§ÔVHÝè)pùä#׳Z;“üz('ÆÎ=êþ%UIM[PË}›1Zé\|¶îp^팮ÆNRܯ“„\â%¶Ú!n³s€û¥ps"#;˜Æ3)Ólõ!NN ð/Cp²½Úi_q¾9¤Iv® tÃ#l` FÓ¾Ã|å”†Ä ƒºÕ«EÃÒ¬5Íó/u`×i\?ÉloÃŽ ²êN éz›$¯|4¶øhekÛÊæM×´ýFrB߯ígáëRÈÎi Ìá¤ÊáÊÌý¢lð¤%®Ôš‡ˆìt¬¢oÜ)%v=D I;ýCšÓ÷ŸE•QÓÃÜaá×€¼Fá¿)®×fPÔØ©é§…ÕôÕ` CØC”~<óc# õ8Rã²Ç~%ooÓÜ Õ÷(¥ò¥ýø#p8!Ò‘ǿơ÷….%Û8i§u?ܬõ—½Y{©§¤´PAy—‘¯åÎ>"9Ÿ¸hÉÀéÔf;µÿ¯0jÞ8^ªhè~Á§hŸåá£~WTÓ’Èrrð@RKNÙ,úrÏOg°Û)m¶úvòÅOMcêp;ž¤õ'r½õD=Q|õõpPÐÔVÔ»’ x,ŽôkA$þAj›‰wé5o/šžOÇr¬’ sÊÂï¿ ÜòYÃÀЉºÞõÄ ÕM-¯OQù-©¨“ËcfŸ#<Çm˜×?¶ßUtøƒñXKj4÷ * Mk‹&¼¹£™ã¡4ô~23èÅG ¥8ƒÅÝC%=†Ž¾óXé<ÊÊʉIdeçwË+Rrz’pp ˜üð£¤4{#ºkaMªïcHÃ÷*w`ä63ýo^² lkJ‘Œ†·”4` l©ÈÕq‘ì†7J󆱥Î>€-@jZãuÔW¯O¾UÍP6ý÷—šÚ´Í6‘áNš°RÑŠSOn‰Õ =픟R^ç¾ÐýV)¬ÚoFÄâ]WRû•NÒ8šXÐ[è\÷ÇXý–eðÁ¤FàŽ·ÉOäÖÖAúF·#s4ÿÝ­-gÉ¡^zçOÓj­xÓ5…­‚éE-!q`w!{HÇ«N=‹>µ=nÔZ—ƒÚ„Im5T³ÓDã‘ÑžIãÇ•®¶'º˜³êµëãò™°ñõòoúû=,06/o×ð¬÷öy¼»U¬ÈË/Õ¨ÌP©WIOWI--U\íú+ϧs#u1–ººBãÊö´ï,]ÚÑ×ñ8 “à†W¥nÕú»JRÚ¯UuÇîÓÊê¿»r7à$ÈÞlœ ¾FÁH¿š¡ÕQP“¹ßø*¬%ãSX;Jp>áKK?—_}‘¶Øvà]+†7À®ì\=V¹ÅC+Éf€³sÖ—ŠI¤á¨u-šži*KäeDîvLÒãúdž†´g•­c|æ^5.»šŸPk&TØtß0—# jë[žŒiü ?¾ï =DòÒjäl4ö7k¦µÛ)Æ"‚`ÝÎ'%Î=ÜâIêI^¾À*‚a[ÜIº6ÇÃÍIy|fVPZjª‹ÁxŽ¿çʵ;§iŸU~·S±¤ºZ¨XÑêKÚó[€s€æ%¹PÄËŸ®|[K§¢˜HÆÏAfˆ»öy¹L€ŠIü¦‚*x#‚òÇ:·`?%Èî6º„>)a¬áOŠ+/í±8ÓܼªâÆa¡òBU€1’èù\Os!*kÛ+©.vÚkCj(êàdðJô‘½¡Ípö ‚ ‡Ú‹–©s´Úzï–Ï8Ysìëš)8M~¦cÙ!¾½Ï“'æ†!‚HüàõXÛŒáÿèú~Ò)®@~ªëBÖÅTÍó‚ìöõÙáÀdãu ª¢"""""" ˆˆ…]DÑSÓÉQ;ÛQ4½ï=Ð2IPˆú‡Pq·Ž”¶:‰ ˆ\[Mi9Úš6<O·O…ÿ=‡U=­4ö»]%¶”Ô²Z9XƆ´mìú‘|·[u¾íošÝt¡¦¯¢¼“SÔÄÙ"‘¾Žk|Ôf⇄º jÛ…÷‡Øªãp{mõSHúpFùŽA—ÆsŒ~!é…ñéÎ4ñ?„ÓGeãV•¹ÕÛYÉWˆš$ d æoÁ.ˆµäõ$•!¸}Ä-¯hf•¿R\0Þi kùfˆmø£?8Î1èJº6ʯeÓY<4Ô²ÔTH"‚&9ò<ôk@É'Ûjß‹z¦m}ÅÞ©loå¸U‘LÜdˆ™ðF>|­j™žh¦µðž´=¯ºÜf©‰¯Û‘k" Á=O–_ÓöǨRo¸Dú¢"øoa‹Ï`$Àá!ؽŸð—*ÚÜB0yšÀ}[Ù}¨¸HFã…R7Kvۺƾ(t|šÛ‚Z‚ÙK¤¯¦‡ïôMh%ÆX~0Ð乡ÍûK}žúæ:Í3rÐu/h–ߢîcyÄ­Ý~øÏ²•©ÝôPoÇÍ›“VÓjwÔ=¯š¨[¢„7á1ÇO¥ÙÇ^i±×¢ìû<ìÿxâ> ¾8Ú C`?ò‚å‡Ô©¾wNØX·Ä7-\+ÓaàÃY¬iû… wQÐÊðCüÎþ!Ÿ ô6©ñÅ:Ú»½}[é|ï¼Þ®®åíg y Z6k[Ó ÂØV’°Z4®›·éÛtvÛ|-‚ž&ÉîârKŽä’NI^¨ÇdD'c¾y‹SiÝ;–ý~¶Z˜ìršÊ¦EÍœãÄg¡éèVÖþ*xgc§w艪ïóò‚ß»Æa‹®0_&1ôFMcª¸ÁâCQyV-?]Sj¥!‘RQü4Tî d™ØiyÆG1Ïî¾sW‡/ Ú_SA«xƒWk¸ÍOiml‡ÏŽ9Oí¼½¸æaÇ)h;îLÊßR5\m…Â Ê ÀÖ:PÓ凜4»dŽƒ*/Ù`ñ]íͼN]d}Î?¾ÍèÝD)9Á1¤ @ä7 ;8ß9&Ps)aÀ~Ø?.럲apšHâ‰òÊöÇ\÷¸à4¤žÁkçÆÏ­zçˆ6º-=pmu–ÏHö2XÛðIQ#ÿZæŸÚo+#ûlVm3«™TÑ9õ”G¹y;©8[ ðåáÃLp⚎ý|…—[Êj%†Ç|BÃûCaÎr샎PHYèlqƒó%WTc ¸ß*‡¡XßÄÝ]Eõ¥D Ùª!qxÏõ€Fqókœ>¡kÓÃí™÷Þ5èËsG07ªy3ÕÄï5ÿð°­¡j ƒ-6ÚRÖÇGI-CÞî€1¥ß–Ë_~êfÖÞ*l÷›Ð5“ÕÕÕÝ'~9yel/{·£¹vù-‰° *ž»wôQóÇŽ•7Î ºù EõZz±•`¿TóåÈ?âiÿ úüë 5OimÕr¶J½?;­ç'.0 :~M<ƒÙ‹}£öù†¯ÒnSåMA=09èæHüž¯_³–¬¿‡ºž€¹§î÷fÈGø“¢Õ–jrl•óÉ_EXÃÝþµJ^o„cfº>à©Å¦¯VÝG§í÷û=Kjm÷ vTSÊ6æc€##¨> îA^ŠË*øðõUš)%¨-£Š•ÄGꇙŽ{‡ö¿VÁòÐ+¯ìç{…ï[E‚úJ;2P}÷?ÅL…dq›ˆö^hÙ¯×W¶Iœ|ª@ü>ªnÍé=‡Ñkžó[«8µÅ'>6:¾ÿ|« Ž0O(Ûaý˜ØÑô ÊØç¸{fᦄ¢Ó6†1Ή¼õµA€>® Ï+»îvç vWš"(£Ä ‹X5EÓôâK¥®j—IJúÊ:pزyÉ(kšCp É=OUŽ$៊K+áºA¨ÝG8”\u ò s‚ bR109q¶z/wKø?Ö5îlš—TY¬Ñç&:U/~瑾ž½Özá‡~hgSV¶Ð/wˆ7ý#twœàìç-Œþ­„„7˜z¬µ0ÁŠ™c£XÐúÏn¿Å;*ŸÍP‘öù¨ãûŠ5¶:K_,õo§uÊ'U]_‹\`Ï,qdŽ!åøkGBT#|¦z IÛ§Éf Ú"ë«øÁfâøé-UÜ. ›Ã0ëÌça  úž€•²±Ô•P6ÁW&=–ñÉY 7‡ AO&yë&£‚ï}æ9ðŒ¨àž™óø“ÒîòË£µ“?-$4 IZ ôÝÃsßð¦‹+ë,5mGûZªAAGW:wˆÎ>MsÑEÿ³ÚØú¾3Ü®"è(,rý°Ù$–&´zîÑ'OE>ß «ÌÕ6jME¦®– þoº\è夛—¨dŒ,qø*ø¹Vè¾8߸uu™‘ËQE$±6L³ït¯9Áï°—Ë)øö°Ò]xhnóù{#E3‹±!/¨†°íå“'Ó”+7ìߎq.µ“ãÑŒcáçýfwõÀSçPúïòU9îºj!Žf>›ÌÉXàzFZ‰Ö6y¬:²ñcš3”ÓÓ=Ÿºc‘ÍÇð_¦j¸+¢U‚rö˜ÞÓ‚[¿mÀ[_ᆫ¥×:°êºIö\¨™,¡‡hæÆ%gͯoÑ\ àù.@»nÛ®lhÛ×Õw`wܪ¢"""""""" ߢa íßÙUtTAçOœG#3–ã©ÿ’ˆƒÑ0¡G kž¡ã®…Ò4ï•”QCJ9€"Yê]¶Ísè¦Óö½+¦múvÍ“Ao°BÌäàw'¹=OÍ}×H«i¬kƒšGÄ2Ÿftûƒ&a7à gAí±¿OR½‘ÓtDTi;ƒÔ*®>[|ß7/.}—$EÅí||×W7#°ßå±XóÄ' )x«Ãº›#$Š µ3E®¥ßìgð¸àÇ…ÞÇ;à(Ëᛜ&¸Öð㈴µT”•/kšc/–Ý)wÇðŒóDwwÞ¤·9Þn[«i.Tõöú¨j©*bl°MÙ#2×4Ž ƒ•ß…C±Ù¤mÕ@O9üDŠWÞ¦ª}Dõ u!¬¦d'‘˜õ'žLì:m•|}fÒúÕÜø—î´ 7ã—ž£'==Ÿâ>¶°è-)Q¨µH†–/‚64eóÊ low}IÀ­vqc]jž1ñ)E%Dõ5¶«]0/ò˜IÃ;¸ì\îýðÄÅðµÀz.Z…öøÈêµ}lX¨æQ0ÿ±ˆúãÎïŒ ºç@‰Ù "`z" ‹æºWÒZíµW*ùÙOII çžWœ5‘°eÎ>ÀVª8Û¬¥×ÜD»ê‰Ž>ùP]ÝË~ZVèDæ$äth$úU²Ÿ ¼5oøi •ôžV ½rÕ\¹¿`gɇm¾÷œå˜÷M÷UMŽÈŠ6}¡•CÁ[tQɆϨi£‘ õ‡ïí–Éb³Î‰òqŽóX"Ì4ú~V:Lì×¾x9F=Ãù+ßíÔF==¤ôœ@b¦ª[”Ç#-ò™å³è|×ÿº©ölYfŽÅ¬µ¬*šªjâcÞñŸþ4’—`«ÕPºŸÍ@ÿTðÇÅ·^SDèé*奻\aÅ…±Ô3mþ ÒOþð¬÷ã"+Ç‚WʃçÏ-ÿF=$˜çs²;rBz¬7övJ#׺¢—qæÚavÌGÿ)M 1ü;mÓܪ;vàôZ÷ñÝ£#Ó|euú–™ñÑj:FÖsr€Ï¼°òLÖ÷'[Î{ÈTy‘í1ÍØ þJb}Úç0j ]PÆ5·*¸à‚ï‚fm¢8÷qî¦(Ïä¹3<ßöõ\Û€¹¢*eÜärü ÍžþЍˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆzevyž_;yÀæ-ÎøõÂäŸ4CÑco‹>©âö’âmSÛ.Š@)ƒ„ïæ…ÄþÏ#ŒŽé’Kzc|…åfÀt]™ÏEáj66‘츖“$½Íhë·Åù€Ì/JÑU÷šV—c˜ÑÀçn»tù/±p{wG_p¹‚È9DDEÆFs4€KOg¡tòº"y‡Ër¢ÇÚ%AbIi«ëiamù÷OC€Fâö¸ÜåÆz}J¼|Õ\jxÆÜ$|Áu©ŠŒ¹ÙÊp=9“ø¬ýÝPî¼|pÔÒÅŦÓÓ½þp†WNÇaŽtÎ#Ûqƒ·ªîð‡Ä .K­µ%ØHú8ìðˆâaÞjŸ8ˆbîæyÏ`×ðW‰WWļGe,ÖUàÈÆ—R[)É?ÙÇ«œq×e38 À½'º6U@ÁsÔ’F[Sv™˜ylmÜFÍ»n{’²¸ÀôUÝ=Ñ """"(Ûãç_9Ã:}C9e~¢¶~^¬£MÇNgr3Ü­~¿/%ßEž¼pÖ¯ZqFŠëUB_§¬R}ê²i#ÌRÌê¡ßbîbFû7~¡l`ÍWªª"!Qƒí™ã†Zn›2Kï99îÚy@ÿ¬U¯öpÛ¤ÿç½íì{X~çIƒ¾8y¯x#Ôf=ýÊÃÞ6¯²^HAÈÁLAþJ‡mù¬O⇆ö¾"ð¾*ªrnÖ¨eªµLÀçHÉC7f -~#챤êàF¡Ø‚®NêÚí®í:¦ŒHE$àÊÆíçDv‘ŸV“õÂÚΞ¯‚åi¦¬§“ÍŽhšö¿÷šæ‡5ß"ÒÕz-Æ%͸'+˜èˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆŠÎÒ:Îkޤ¾i»íV«•º¿È§ ›ž:Ø\Ï2)H'âobå^(ˆˆˆz"(óâ2–÷¥¸Ÿcâ²ýGA h™k’ÙPÆ»–I%&I#cÙÊy°Àߦ{GÝKÆí[eâÆ ÔÚZûQms¥Š–RçÓI(`Ìn;d4€ útSo„ºÖ‡^hš+í$оw1¬­Ž,âÃA{7÷>§¯R®ÔT#!Pò+’ê«§eM;á“ð¸`¥<4”±ÓS°2(ÚÆŽÀ.ÔDT ¨¸ÈKXç4dÑ|ôÕ‘㘠ÇB¾¤TsCšAè°—4,|YºÜì×øƒì1¹¿s©ˆ†ÏC+9˜Oí8ó0F0Y[FØìúcL[ô农S[­Ð6"î;“Ü“’OrIî½…BpµsâµÒ¿Ä&°t‡9¯<˜v~аíòÕÔQS±ò>w¶6DÝÝ#ÉÃ@ÎHU³/ <0¦áw é­³G¾×ÔÝç%Ó´yýØÁå¿ý¢²€UDÊ"""""""£ˆœc¹=–¯¼NëÓÄ+ÝïQÊçÐC/Ü­Í'ad€áýãÌïñ,sf·UÜ«£¤·ÓMUS4‚8!‰…î‘ç8¹8[LàN¢áÇ mºn™²:p Mt¯ ’¢L“覯 vhWÛF3ê}UWÇWu¶QÜi-ÕW X++K…,J$å£.äiÝØœ/°tÝ;"¦vú¨ÃöŠx]§#Îæú’7Úžnýº¯ìç§s4.«®s±×XâвâsòxQ‰5Óën3_ji@2]ï’¶Á电ŸÃ jjÙ‹O[l”Ày6úH©cÒ6ä½,õ8*¨±÷ˆ!ý9àΣÓÌ–(ªKçÓÉ <­–"$nqÐ\g¶z|,j+8ÅÍQ3"‘Özšúa,œ­Ì”ÎŒïýæ³ó]~™G'§©¨Œj˜R¸¸×s0»n§-=zl§é„ÆýOUCÓ$|‚âzõÛ¶Ýz€Iù-_x©Ð5=ã%ÚÜãO÷+›ßu·¶O%<²ÈÂØ´±Íǰ=Ö+[ð-­ÿ¤Ü/ŠÉSP]]aÿR8îè²]¾A„Çòˆz©ÝŽHÁ\†ÄçeØÃ¹"""""""""""ˆˆˆˆˆˆˆˆˆŠŽ!­.9ÀØdª¢"""Š>ëmuU¦8îYz³2Pʺh(êü¶5Ž¢¨dm`çv>6NÚ½óŸŒ7¸YÞ†åGXZÈfi‰³ž dkЖÆWÖˆˆˆˆ¼ýEf¶je’óFÊË}dF*ˆHiír>`ä(+âæ¥Ð³OxÒÖj 4\çâ6*¨ŒâF—° þ°t⩵¼;ê­i¤¸‘dm–ŠîöVÖÃMYHØÖT1ï !üÍÀÇ0<ݽBÙ"""""""â#`w0hÊä¨â =â÷á§”{l¾8i›O–ÁXÂâ÷49œz“î»vØ¿eÙ›ò»>ÎìWiú-Sx‡«ûß5¥H¨ŽpëÅCCãݤ5äÐtE”<hªMMÅÉï÷üÚ}9L*¢ai-ûËÏ,döظ{´Ëa mê€îUQˆˆð‰”Egñ‰š#‡í§:²û ¨qk#k4 ÉŽ0çòí×Ü/wL_ìÚžËOy°Ü!¯ ¨htrÄv¸wiŽázkøÓâ4š…2Zí³˜o„ºŽí81C€g“ýÒ;ƒ =–¹jq$¿Ãs€˜ßg÷ ˜Eg®µÂ'¾†Ðdz£€lãóòÚ÷žÊcƒ×¨è«ºÇxª®××qŠÒI6£­c…ªÝ3HÈܳ£à6hÝ üG™Ä7>¢*òŠŸhÔ®#IÂ×ÇÝ%qnv$B@8ÿü×áÿ’ð¹ÄLéC%¡«žH²ì3î±Ç̽À,SàƒCM¬8ßEx¨€IlÓƒôKßœ†D ~×™‡Œõ¹lw;’2Jä}¨#$e2¨ì9¤9 ´ŒGU¯=c#Å.¤áÄü”vË«nvf¶Wú5L})'a“˜wÛ+ìðq†Í \êëlÔѽÃv84I·ÌFà¶ÒÊzá=‚§(`‡>Äú(Íãë‡mÔ<6‹ZÑÄç\´óÀ›gR<áûw-qc³Ø(zegºÉÚW”TJæÑ_#42´cÿŠ,ÿˆcüKcŒ!À9§˜}F`#uØÃ‘ó\tDDDDDDDDDDODDDDDDDDN興ˆˆŠ„öþJ›çñayšŠÃiÔ6Ê›mîÝO[MQ—#^Ìž\‚0z‚¸ ºá§¬‚ÙOr×UWºž&õO“” eÎÆ\Orsºö rp©Ôe¤oÝUu¸½§ÃØú|ÕݰW!'Ň {®hˆq×CÏN˜ôß+“@v;®¤;—?UC’ÜœŽä²ì‰áÀd‚s…©N-sÿ¥=XÙ$ó\ÛÍ[ ð6&xÎÛvR£ì×l±ÓëNX#1Êê"ùCðæòùÜ Œn]ß±S &É¿ DDDDï„EÆYn–Wµ‘°9Î8 ©'Ña~,øÑZ)òÛíœÚ†ðÌ&™á°F@iøæ ŽŽàô8Q§Zø•â>©©}¶äÛT2`6–Õóß¿»Ï^Ø ÅÒÜâïkYWœª¢ŠQ—\/rAÎñHñ·fž½”ààŸ èxc£…Š–¾[D³êêäŒ0Ë!|-åh 'Ô•}nµÁã[\7Uq¾ãGþm¢Ý1Žvï7N¿¬$gû!bM%ižý©-¶Š~fË_S$eŒç!Ò84Þç'8ÊÚö…ÓT?HZ´Å©˜¤·S¶c˜Äâ=\I'ܯhg$aa®<ñâÏ \tå†_õ•F#§·S‚ñ ÝøL˜É'у.=ðWÁ \¦Ô¿éS‹s~•ÖnlðQIƒÆ— `ÈÑ€øYÛ'q!¿É| TQ?íw.‘Ò9Ù¢¾ “ËßÊú¨íK©E£ÂÂÅOP[Q©5_$±`i©ià‘Ûç ™$‡oÊå/¼2éK¸#OvÕu”6‹…á­®¹TT¼1Ã#1C¾ä±„ü#?ŸŽª6qÃÄž±ÔšÐM¦n•6MºIc£eŽó´¸bIyÄ4mŒ7êIÇ~+k‹†¢uú}OvukÜÒdm[Û‚§`³/ |Wêë$Òj¶7R[C°÷Hàʶzµý×£úãÁLNñJqËúSKÜ…KðÏÛÉ<ý×°î>c ö%]aÀœwP×ÇΟ–Ó¯4‡é ‘¿q—áÆ$‰ÆHÜO|‡þ…ü9]ã±q£IÖÍòtŠÁ®vaiÜßãu³!°Ã{vBOq²®ûmù¡ç ƒ×+ãºÐS]-µvÚø5d‚xÉÙìx-svõj‹ú¿‡œF¼iîc÷ȧ™ÃúèñE&ÛnÒ3އ#²¶ì÷ ›MÞŽëDðʪ*†TBã¾Ç4þ`-±póQRjM1o¼P½Ï¥®¦Ž¦œ‘ŒDö‡5§Ý¹->ૌöü—8IéÕv¢""""""""w(ˆˆº"""""".ü,sƒ\ò<£>Ã*ǰkèÏ—K¨c¦£©lÆ–¦X%ÌQT cÞ0r0]×¾ ¾Xàᑌu9È\•rAv*¨ˆ‰º"Ÿ’tèŸ4DDß>Ȉˆ˜Û ©ø³í…ÁÄûÛËzç š.š—9¸Ã¹GRîT@ÊK˜á‡zö\¤‡”sG UŠNÛãÝq9ßUîY€pvñÙj¿ÄM7Ýxë­¡òùê¥üƒs<»;zç?U"þͺþZÝ_o|‘F$†–F´Ÿ‰å®›§°ÉÚS@tÂ""!ØŒû(cÅ¿ÜO´ë ËLv¶éFÀøžÊ*ºFÉSÉ€IsòZæ¸çv€1¶W“¡¼Të;Mìͨ~ïz´;ñÒr¥ˆm—2MÉÆçÎze½DÎÑúŠÓ«4Õ¢±Õ ›utBXdwv äê¬sÙ;¯Žõt ³Zªn·J¨©(©˜dši†° ¸›ÅÝmÆÝIýáݪvZç-G™3A?­žA´QãON§8†^´í¾(kx…u—QV€ ¡¥.§¡fÀrœbI0AÜ–‚ìY÷Li-¦)ÙÓÖ»[ÐÁ÷ZV1ÄÜOÌ•í¢³x×­aáï oz®NWMIOËIÁó*C"n s¹¤ú48öZ¤®’Jš¹gžWÍxj/Ž£ˆ—±Ô6Y]MA¾¬°s<íÑŒ“oí8ÙSZùv¶Ù-sÜîõÔô4P0¾IæxkZÏSßnŠ/ë¾4^î•§µ|í&¢ç(<±sg,…§p=^rçnv”f4T9ÆÄgÜ&þʨ£‡­!|ÔÜ,¶Ü,´.«ý \êšÆ±Í8 N~øÈ7 o¿OH h®u-u äŽ:˜)jDþD¹1¿v’ÈØ†€}UÓ®ø©u­ò[¶ ºO[Pò\ ݆G×f7£Fý°®¾ð]q9Ì«·Û…¥î<×ZþfBFߣâõ g© ;QøCá°°—Wñ*®K/–Úªy)ÙLÙ9Ìnæ$ ‡/8;÷Û qÿ€z—„,¦¸šæßl<¬(iÌ^T§ö$g3¹Aý—dƒìvVÕw­;v†ãeºTÐUÄG,HXz÷ÇQìr–áçŒ å+#§ÖvZK¼ ¾ªˆŠzŸïÆóì<°¯¾5ë]ÆŽê*-;yk¯ ¥= [DU,|ð×;,çnXOSŒ¨;g¼ÕPÝ ¯¥—’x'eKGG±ááߘ[vŠFJÖËcš×Ôœ®`÷ì«žŠ¿T\\3¶Ê"}¢Ú0TÙ¬ò–y´Ž6Ú×ã¬O%ñdç£_Î;ÿX¡+¿ù©ÃàZ>é¢*4œò8ÔØªsÙæ¦˜¹Àuý™þ WÐŒö@Cqéì»ÚIª¢"""vDDDTkƒ³ƒÐઢ"&ùDDDDDDD@ˆˆˆˆˆˆŠø²³^øsÄÙõe–‘ÔúQ>¤ÄK¢’¨æ F>þ`AÎûà‚0½ñÂáJÚz1p¦’‘¬’Û]8ahÎî‚CíûoE+4ަ´ê{oß-uQJXîIâls¡xê×`‘•ì¢"""+wXkm3¤%¡QÜÙnûü¦WHÇÈð2@ mê­Ý Æ®k;ƒ-¶}BÖWÈq5\/§‘çѼàí€JȈˆˆq—˜0–¸Ê±&╆ݪ_§u 5uš¤Õ}Ú–zˆsQ8å,{sŒä~,+枢 †¹ÔóG(k‹\XàpáÔt>˱3ê>KªF;›rò\c ”'w7|Œu]ˆ¾zâ`uæØ.µí‹}³Ðð©“Ì~yšZz7UDdkXâòs“Øëî'˜nïÝpv1°ÏE­œ‡Ä–±òàl#ïå­n2~ï]õ;ç¾Uéà.²¤qž––'´@ÚZ‰§¾[Y{òÁò[˜úª¢""ÇÜcáâ•CQRKšÅIp¦”Ç4!ß-žÐpy\ëÓ%[ÖO ü¶¶Õ$š\×ÕÛ¹j*ªåq©{H<Ó08Fü‘’ÒÞSÓÙeÊ:ZZ*VRÑÓCMOÃ"…ŒhôlròõeþÕ¥ôõeþõS÷z 8ùæ“”¸œêI }T2Ôº^ø—â4šcMËQlÒôÎýh-Ì4±ž’Ï‚<É[ð·;vý¢e§ x{¦øm¥a°éÚAÀuUK÷š®\`É#º“è:°ÀWjŠˆN0¡OÚÄU{µðþŠ`è­àWWŒÎi´ÿu„»üj(ÚiMU|QóÇ. æ“ð·;dû4-¼k°è-káo4ìÚ¾ûMXê†S3Œû8•Å ”wÎ8ꊺZ6žx­s0˾N Çé³CœFrZwRSFé];£l‘Y4Å¢–×o‹ðÃ1“ûÎqËœïW8’}W´ˆˆ¾ õæÕaµÍt½\imôPŒÉ=DŒoÔ÷öQ÷ŠÞ,´¦©Š‹HQ³RÊàï6¡Òº#À KIyÎ:1ÝD>+ñƒ[qàù¯÷y$§y‚ŠåÓBØk±Æ\K½Jùø]Á½ÄXÅN›³:J/¼}ÝõrÈ#‰ŽÀ.É=p鞪`p“Â~“Ógïڱ̿׶©’B×3õ,˜<®aÈw;†NGáø}I‘tÔñSÓÇKKtÐDÏ.&DÀÖÆÐ0[Œ;m…¨Ë•Ö ×ÕÇ#ÌœÕrHâíòâã’}ÖÈ<4UÓë zP^(a¬§žÚúŠzæ2fÃ#à˃³žaN}T]ñ+á®ç¢jªõN…‚{–—sŒ³R·/žÛÔ‘êø‡guggÆ6¹î\p{¯¥•ÓDá‰Ó¾ãÜcü×+Y¤78cdÏ<’ñÎêFvÏÍmƒ\OÒ:òÃC ¦ýOStŠ–6ÕSI‚^pψˆÏìäð’î²HØ’åòLn÷ "³øË¥ ÖÜ5¼éyšÎk…;¡‚Gˆ¦?Õ¿§gòç¾2µ=]O=%\Ô•P¾ ˆb–7Œ9ŽiÁv ƒ•–ü ëé>5Ûb¨˜ÅEziµÎìì×JG–â=¤ ùw[%´Ôšš&=íåÙŒZâ:}Ô6þ‹º3–ôö\‘ŒŽ¤""""""""""DDDDDDDEñ_m»õ¢¦Ñz ¦¸[ê™É==DañÈ:î¾ô  øñáŽõ¦jê/¼4¦¨»Y7{­-y}U'´|Ù2°vÉæí¾2q ø—¨¸o«ã¯ |Ì 2²ŽPX$hüM{Nàÿ¶5ÃÍ]h×N‹QÙf禩fKâ‰ýØïpUÀ‰ÝÆÞÛ¸¡¢_§k«g·ÌÉ›SGY CÍ5ŧÍ܂܌Žààˆ_yðáÆË]dÐÒØ©®L‹˜ÇUGpŒ 7ÙÍ-p=ðFTåá„Z‚éèuWÿGn…µÙw1óC71îïSë•q¢DT9ì°Š5Ú:Kí$µ0ÔR‡rÊ%sc¦pÜTíÐÆqŸ…§;«[:½ö}y§.חٵ͢’'«Ý)ÆrNïfÍ·1ãu*;".‘­•±œ‚á±ìW5Gã—$UÀò¼lvpz'—ð†—sû˃› 2âÁžãªâ1€ Ï`ºp@Û“¾V·¼lŽ_Z³ûBˆõëþ§·ü6^j¬ünÒRA<‘2{œÓò¼·ž'ÈÐæœvØmì¶¢òˆˆˆˆWÍu¯£¶[ª. ˜é©)ã2M4‡ cGRJ„:ÿVjŒã8ÎÉV¥¾‚åy¸Ó[h)¥©««™±C mˤsŽLO Þè(©©õgh›SY!.§³Nƾ3á-| ç.êyztÏp¥U¦Ùo´Û¡¶Û(ᣤ‡"(!`k3œ:u+ë?ÀTø†ÝÖ¤8—m§³ñRÚ¨üß»PÞ*©¢2‘ÍÊɜќmœ§·k„Õ¾èi欢¸ÖAÀe¦O4üþ)³¶3ùŒì°_|2h ,—lcJ^œ5E¾ù8œæX6î~&–“ÉÙD.*ø|âWਸ\- ºYéÁ|—kŒ±ÆÁûOn˜1¹$`z¬F]Ó~›‚¾ëeÞ²Ý<5“I ±<9å®i±…#¸;âÛUéæClÖQMn=òrVÄ=ŸÒLz?sŸÅ”´Ð|háÆµ²Ï©)âªá´ugȘžÃØŸ‘+!·=ÉUÎç䪺ªalðº' d-nøËÓPÛ¸Ÿ¦·Yë(hõ%+êyØ|–×=µ±ØêÎgIˉèZ°‹ø'lÈöI¹˜öžW4ƒ±…mgƒšª›Yè;>¨‰Ñµ×zVTJƆ9úLÁð$,+׎£ÅrÀ?”«µ0±×ø9ÃÞ#f}K`i¸yf8îtoòj£ÈÀøÆÏÇ`ðà2v]¼áfžá}ªªŽÃQxŸïŽk¦uƯÎvZ kZÞ½†ÿEtDDDDDEC× «ˆ40Öé+‹f¤5mŽ1€u—“â,÷Î1ŽýĨ¥~ñ~á…ÿHVŸ¸ê /ék[åçŠx_€Í !…Ämœ…:øQ«)õÇ,ºž«išg`?ÕÌ>~O è;¢"ÁüSÖw«·´O 4Câ’Ž¥·­AIÖRNÁGn0x­ÒÚ`ÍnÒìÔ7ÇPçRÆð@ý©;þt뺆|Mâ&§×W©nú‚ë-\òòµ­häŠ6ŒòµŒ3ó=I'%YÍŠ¢|9¹a’O@³ç|.q÷QWOp¶o»¾†J‘–åì”du1‡4m]‘”¶à§ô— ¡}\4Ð\/O{‡é ™Ìøãæ¬nv-%e`=Á'uWo¶Wc½Õ ÃÁßäµCÇ`Æ­rÖä¨ëðr?ÖꦇÙùæ yyÞÒ ò¤³p<¸v>ùÏæ¤nÄlN=Êv$€6è¸á®kÁÁk†ÆÅFŸœ£ÕzeºAišVêšzˆÄðÑ4Dk 9iËr^ÒZyŽü Œœ¢‡øÄÌùoÖ‡ÔÚÃn´@ËLr@ÎÆc98ÃÀÉé•[×>ƒÕ}T•“@àà÷`^ë0p£Ä?4+¢¦¦ºÉrµ³ôuÄ™¢}˜ãñÇÓ`×ï’ —ü%ñ' 5¬pR\ë#Ó·‡4AY l/v7ä—¦=‚³Xp Ad{*œž™ =øÁѦëÁ½EP}ö¦ßQúr­ŒºH*@9$·â{ÉÀwO…k½Ã¾AS#ìùÖšßrÐõ• IG8®¡cŸŒÆóË(¾Êvýå1†03î»`ÉÉ\ÇÂ`ªˆˆˆˆˆˆˆˆdDDDDDDDLÍ<5ÍosÑrˆˆˆˆºªê!¤¤šª¡þ\0±ÒHìg• d½‚øôÕòÑ©lt׫  …º©¼ÐÔBìµÃ8>à‚ î ¯G9î¸L×½˜ŽO-ÜÍ$ã;d>£#ê¹¢""*ƒ°GÊAè çŠJGhn4TjK|pÅÍŽºœHH¨Àçïœ;“d’|_éì:ŠûÃYj^iç ¼Ø], ™©åcKÀÇG¹7¡RoêˆFWÈãt’=¬cA.sŽ©%bNh¸F¨ÔÜ\®«uuÇVÌãBç³v·6Cä1§¯ÇaqÏNVŽÄœº‹ñ߇IîGWè©>£ lR‚›XÈÈtAÌ- ½…­å8ÎÃ}²©Âÿšvï4Vcɧî§àŽYòÈçpÀ#qð¿››oo¢ÍÑI ±¶hê!’'·™¯kò=Aî0Ó!¥Ñ´cÍr`|O.ïŒakóís]ÇJ.VòØiÁ õýlÇéÔ¨!–ª¦hãt²M#ccW’@-¸h £W£ms9Ð8ŠvÆ|‡0|% ò p}Á^÷tDDDØ|YqšM5LݤêœoµŽ «–è#wû 0~7ƒ×¨7 ÁÇ)`¢‡‰šžŠSuÏm¶š¦0y˜¼ç ÇU(¶ÏUðÞ/V{4¨¼]¨-дdª¨dMÔ—;ÉcmMâ#„öH¤?ÒAs•„*ßæ'Ài5·‹[ÍÒàl\6Òo’¶W–BùØêª™6Èòéãïó${/ÕÀn3qVéû‰wùlð½ ´Ö8OTÆžF@ÌGöÛÜg+5Ðh.ø{Ñ7e­Õ5´4§Ì¸VIæÕÔ¼Ÿ†6ðÆ\âð5£'8Ê×§5=ÏXëKž§½ÏæÜ.3:YysÊͰÖ7?²Ö†´@¸û=øhÚkmgîQ4ÍWÏEi?mv&“Ó.p °k½T¼í°UB¾;µÎßi·ÏqºVÓÑQS·šj‰ä Ž1œd¸ì;~j>qÅÆ„±Ã,:^–«PÖ|Mdœ¦p@ÙÄŸ‰Ã>€|ÔLâÏ5ÇdšíÝâÜgó¢·SŽJxˆØmÕØüD‘׺ƒO,òáÎ$ú«·† QñTSiý=Féæ‘ÍT:7iZA<ò8Ê0=NÊ}ðÇþ„Ñ5ÔWº¶éWC?w’¢1´íÉ}F7<îqØCCZL¬Ä2FFø=2£Ï¼Piý|}—OÚãÔ5ÒòUÏ÷¯*pæ5Á®.p?Ouyp{ŽÚ+‰/e$ò[/Ng0·Õ¹¡Òzùn?|uÆN6+*Êl:gçŒ.$åãæ¥8­Têþ&êš×`š‹Õd„އ38©±öx‘þ„.qye®‹PÎp10SœûìGU$›†³˜äo’¹›ŸR­-iÄ]£.”ÝQ¨)mu¹ôí”;â â õ8 èŠX¦‰’ÆöKæcÚr×´Œ‚BTš8äðM$†V–:7€Zæ‘‚èA :qÂ^ŒÕ•]4tìÒW'núx ç¡”ÿîÆ<¯ðü?ÙʇQá6ºá­g‘ª¬’AL÷†Ãp‡õ”²œdÈ6Ï_„àíÑXÎkÚÐs·¨]TÉ ÁiǯºÍ<ñ ­xw,tm«ý-ekM¶²W9‘³ê]¹ˆû‡Õ¤î¦÷8Ñ£8—LÈíŸt»sIl©p ’ÎÒ¾íéÀW¥öš–¢Î©§e@tnÑ<ǵäW #8Îv•©}ef›×ZƒNÇ;çŽÕs¨¡l¯n ÄR¹Äv'•z#ÖUea}Ä"ðmôôRË<ôm˜@h*s$5N$†˜Üz8ànÂ3Ô…&x}â†Ú¡ÑÒÖÝ[§n~S]-5Ô}Ý­qêÑ#°Òs¶ ö .‡1¯cƒšáFà\¨ öŠCã%ªVÌë|ÛŒœK&øúÿtÕk­wª;œd i'Ž¡™€Xàî÷mG‚1xS§A1sËH'Æâæ—H\÷I=K‰þJòÀÎ00ªpžXág<®åo0nqÜœâW,’@Áùª¢À^$üAÛ4 ]ƒLTÁYªCÌÎxhò7æ9Áda»õßÑB½/¬©Çhõ^¥ónòCpeu@–§•õk¹3·êB2ø±×··ºŸIèÛyå"& x'®xsÎ#f$‚ŸÅ¿ZÏ*Šùf¤$ñGh ߩݳãóù/¾Ïá'Xß+r×:ê’©@çu#µÎ¹«”•’X-1M;g1Ï-? ’Q‡? 8Ù¹ÆÛ°Õ}H\ ² é¾Jé´]k(kતžH§§‘“C#‡1íp-p=ˆ ­§ðZÿYª8O¦5 ¨UU×Ûã–¢_,3žLaÇ”l7•áøO^¾ê„0;ûöZ‰ÖÛX^rNHÔnOþÕÊo}ž<¾<Ìpu€3=?Õ©÷úÿ’’à9œÝ— ê!§‚Içš8a‰…òÈ÷¶6’ç°o’µ±âsŠ?é3Š“×ч6Íni¢¶0_'šC¶~3¾Aê½^x„Õ|:h¶ó¶ïcç'îO?ªÏ6|§³ÜäŒwØg*Wpóħ 5\6²âí7[!År>Ó€wr¬Áoª¦¸ÐÅ[EY e$ÌçŠzyŒ‘§¡k†Ä{‚¹ÖRÓÖRËGUU4Ó4²XfŒ9iêÒ0BÂïŸ õ)žzmV›¬—.ó-³võNËöhjŠ|iðϯ¸~f¹[éß©l ƶŠ#æDÑÞX·sq¾\9›’BÂ!§#’ômJª ¢žšya–‡Å$o-{:‘¸#Ô)-ÁïžËÍh¡¡ mIsYWFÀóô“~/ˆ÷%c_ðé›·­tmHªµ_`mUKD|¦ªÇ,¢FþÉ{€“9!ÅîÁ8X„ÖÀ|q=MÃs¤+j9®šs c]ÕôŽ?«#Ô4å¾Ã•ITDLï„DAÑ¢""""m” ¨ˆˆˆˆˆˆòˆˆˆˆˆˆˆˆŠÀñ_MCÁÝDʘ*ê m´PGJÎyLұ͌´w!Ä;Øw¶ü×ørÓRVÈjL4Xþñ&ç“õY)ñsFêÏú°2'Jøiã¨kGö&c‰ù` <)Ü#·ø‹ÑÕ.8l•rSç|Ø$`þ. e¨Óc·Ugñ‹AZx“ kôµÕŒi•¾eAn]KPÐ|¹[ß œuipèJ‡¾8zàŸîÅ´Ì#`+y±·ÂÑû ¬¼ˆ‡¢âö5í,xk†# ¬3ÇŽÒqO:’ÃrŽÅX*P9àó`sšzc9¾íü”JñÀc K.–ëUÒåjóÖ×@á<19»äòülhd½ {•ôgµF™t¡5ÖÒ䥪{#;ó³<§qÜw]\Pâ â%Ö–ã¨î¤*é©þîÙ #w&K±†:“ÛºµÞwrŒå¹[Nðé^ë§tmkù‹Ÿi…®.“vŽSé¶Þ£_ÝñÕWè‡88ê¾jXæ–I\ó+ƒù\vfÀ`{l¾’*™Á¹ÜöQÄW‰:D7 +¡%ûÅÄ´Á-Þ7*œî";ó¸tæêBˆ~Ïr×zª?C#d¹×¹þG0k^ññ¹Ï{ŽÛ8“ž‡©*bðÃþ§ÒΧv¶®Ò7;|mÿ 3*¤kšN9g•Íðlz©%Á!§°ÄÆò²8ÛÊÖ`:.Áé”ÀN¿Ì*Ž‹xˆâ$\4áÂûŒ9‡Ý­¬p5•Ø=CwqùcºÕ½dÓÔTÉ4Ò¾i$.t’=ÅÎsŽîq'rNI%lWÁOcÐü$¥ºÖÓ6;Ö¢ ­¨.fÈHýL~»4óêò;,˨¯–}9j–íºÑÚè"Ç=ETÂ6z ž¤ônNÁFž(øÀ²[_%„µ:êðK~ÿ\ $`îÈÿ»‹—ºˆÜFâ&ª×—?Ò:’õSr•®yˆHìG62#gá`Øt·Ê³K¥”ãw®žhO¯¯±ÙôÍžªã)‘šX£&PòG<¯ü,nÇ©ßR›Dø.Ž*¶M¬5ˆšŸŠ–Õivço5ý6þÊ’<6áÖá;J-c†„ÔrЉ‹œù§ l^÷Os€$àjñcÄxy,öúº÷^/P’AoÃ݇i_žVõ—{(‹ÆšÛ\¾¦Ûo©uŠÅ.ZÚ:Gaò0ö–Q»²:×b°Ì4ÕÕ4þt>F¶&µƒ$¼…¡½I8ì¥áç„K˜µš¾õE,K/ú¥ ß™Ër ¥¿ \@Î8YK^xq³\sʵùp·×Ú.óÛ.”“QVÒJèª ™…‰ãb;‚0¶'à—RÓêZ(ãdËe’J ˜ÙyyÚâ09rïÐý3Û¢§1/wÂÔN²{]«oO<× ÈÇLyŽSìá¾:m#«´ß#Z(ëà¯c‡âwŸßAä7óR‚ùz´XmÒ]/wJ UdÕVT6šOAÌâO¢Ž¾>8W¦4M¶Ë4U:ƒÕrÇ–ƒJчGÍý¢àc¼/°iO¨æk,~ït–HùÚÚZI$æipg6@Æ9Ž3œl}÷7‡~-Rè­eY¦M(ó]C$£ï¦ 2é| 2î ïËÖ.‚YcŒ=ŽÃIÛ®êèÐüCÕ&ã÷­7{¬µÊ]Ìï"L2Oï°ü/ÞI^øÁªEI­lQUFNYn"9;ncqå=öv褯¸•¡õÝG²(˜Æ—½ÏvØnâW؈ˆ‹x™¦­«àµ†€0µK#³Þ6aò£öå®ÞÜc´ñWH݈w•K{¢šFã'“Î`pÇ® [WDEB£OŽ Ëªì¿éLÒ‡ßmTåµôíÖR4H|R3|w-Èß çðSƯé-®jœû¥?ù®¥Ç&ª ãwöØÑ±îÑêÓ™> "*lF=VñYÂøx‰ 5c†ûgæ«¢©x9i/…ç¯+†q±Ã€÷Z÷¦«š_*v8Ç0å{Ó‡4‚sí…4x}ÅŽ qO‡4:kBš*]]<»ÕÚ¹ÿª¥€3FåòHAr–¸œe¥dž pWOpúSz©ž[ö¬œ8Õ^+2é9ø„`ç„îãÜöYSè¨V4½ðƒ·hçmW¬±™Ž\êX1û&2Þ_¦ñOŠ.q ´6ªÇTZn:z(ä$Ë @±ç¾ Øúc+Ó¼yÅÎmÖÓ<5RÖQpFÒW‡ ˆíqó4·4ä´}…‘ 㧨U¼­U¨lºZÅS|Ô-ÖêfóK4¤ãØ7sf€I;T"ñâVë¬ «°éÑ-¢Å&cQTÍÁ9§ ivìIV8®ø¯,uÒÇ&ŸÓNuʪúÖãa<ÍöæÈhß|Œ¯Â~ð·OYÝ-Ï küꆂ0C]€Îy@ÎOe’ÑPç;*슋_8øŽí[ÄÙô½í}¯N9Ô­å;>«o9ß6ŸÕÿ…Þ«£ÁÿíúÎíS®u‰‚a:O½9­†®váÅ.ø|¦Œçc:³/ü\Ù­rMláí,WIXâÇܪšáz-›ã÷ަF ˆœAâªÖ·g]5æ®á0Ï—æ¼ùq‚F[? N€tß*Ð|¯s1ʼxWÃ-eÄ›¬Öý%i5ŽœõHñ0‚/;ÎÀœSù•.¸}àÛJÛ¹*5}ò®õ3\iéQ€/È=\A ´ï¾ÒZÉi¶Ù¨#·YíÔ¶úHXÈiã h ÀýV7âǸ}ÃÏ:޶çúVóA¶ÛÈ‘ìw¤¯_'l†•øÅâo]k35¾ÝSý´8¹¦–‚G6IIÚIvqÛ®ËùÓTKÌy°Z Üã 6hzÒïP¸QMEx4–ŠÖ÷FÉs#d,’bçAnïíÈRÏ‚üÓ|=žz§½—Z¦ÊÏ»Í4`9  —¶<娯0z•™ Š8`d1Š6†µ­4 €Âäâ88X¯Œ\ÐR¸Ar¿ÑÕÑÝ£hŒ×P¼G$¬&A±# mœ+cÃ4<=Ñ:—Rð¯GÖÜîµÖüVÜ®E’H b1ÆÑ˜ A8êzœ…ž\O'A’ ¼;õ!jW€5UØ4a¢¾~POA攨û8^ó¨5£[¢£.Ãh>Loõ?÷ 6øÐ¶Åqðí¨e‘‘JêSÔ³›#•Í•­ÈÇ|8…/·;žJé.7è±4³H_7ÝØyX œsÈÒKFøDzØG„ m}¯Ã†¥®c¢’H&©`ôŠiä–3Ÿv=§ê²ÀËHÇæ°ü2é}]%óNÔC¦o’ƒçyTàÒÕ<œóHÆà‡œœ¸uêAQ7Œ<âCë.v¶Ü¬¬nJÛC¥ž¾`Ç4x$ ¸ú±3‹Æ\Òzí…÷Û/5ô3Å==L±M¹™$n-{bÜp¤7 |Uk="Òq'F iìµu¢¨:>–êÞbîRÀ‰ùË}ùšqðæSx|âô;.q†ÓݨùaºRÿêåÆÏoö‚G¦ã¨+$å7™¸#'ø(%ã„Ñš’]m`·´ÝÊF¶¡±¿"ž©îq?#޹#$ ².à¶¿¯á§¨u-'<”Ãý^ºF&¦{›Îߘåà-›Ûk)®4õôU ¨¥©²Ã+NÏa~kéDDDEÅÃá*}¢sÆþ)Ú)[!.ŠÛæ=¥¸¹Ø=öbŒ‘ óg÷JÚ¯‡Úˆj8G`0U ˜ÙLÖµüÙ$c#˜vvêþ ª„…cqoŠš?†v¯½jJó÷™ZïºÑ@Òù§ tlÑý§=ó²×ç8Ó©8§yU»îVÊwGn…äÇÉø‰Ûäc.ÇȲÌ~<2~›¥¥ÖÜL¤Q<‰h,Ò´´Î6"Y»†žÌî7;lfµ<1SÃDÈ¢¡Œ­h°v]‰ÓdTÎãÑUtÖLÚjIª’£sË"g3Ýœ5£rO`£^©ñ{¢?¢÷)tå®ûú`BöѶ²š6Gæg”bG¸ÆvÂw ªŠšéªªf’YæÉ,9sÞã—8žä’Jºõ/·='lÒQU¾žÃlo-=?$óÑøÞ\IævNý•,¯{¹œòOª©syOš”žü,Õjh)ugcžßd•¢J[[IeEX9Ãä;ÙÐøŸÙ&jém5`ÒÖjÓvZE9“Ȥ„F×<õqÇS°Üú{+7Œ¡¥G¿³¶††çE¯Ù_o¤¬†VÐBæO^×1ÞqspÁiÀ$tè®Î8øˆ²ð£<8ж¶Ip³RGD$ÅôôA°·Ëcw.‘ÍiæèFNT}©ñMÅÉËIÔž^]ˆ©bnsØü==–FáO‹ëÄW:ZM{OM]@÷69ªà‹Êš\˜@Èp’F8ØöS>–ZzºHªi%Žzjˆ„‘ÈÃÌÉXà>àæ°×¼6pû^Ñ>[}>—½ŽwEYo­ŽG8çõÑ Œçqƒ¿^Ê!qÃg´”“Ê4Ô—º¿ô»Kþð1Ï—´ƒfœü8î$š–z:ÇÒTC5=Dnå|R´±ì>„Âú)®4s±ñÈö89®kˆ!ÀìAº”~üM\íÕ”šc^ÖšëKÞ#ŠåQ!tÔ€ì Üw{êNàwÀS^9"š6IÙ$OhsÓÌÒ6 Ž ¬QÅXt½â5¿…¦ÇOržkD×#QƒçÑŽpÆr= ˜ó‡’Ãv9Q+ÄW‡‹§ (Ý©-WhîšYÒ²iäk*©ÞîÍØ&ÔFÀ×çÜà¨Y ô^Vª±Úõ.ž¯°^iYUn¯ÐO‡V‘ÔzpAì@*@5/…þ;ys6¦¶Ï+ ŠA†¶çE×À‘‡bB3ÑÀ™é¦o–ÍG`¢¾Yê™UCY–XààGpH$dAØ‚£•^‰Ð"ø/”—;]M¾¾ž9èêc1OØÓ×bµyÄ­+W¡uÅËH×%üÊöùð‘˜äÇö›ƒóÊ”>x¦Úˆ$áꤢk!wW0éaÏ«p^ßQÏÓ”fX¢ Ït^6¥Ô4v ìì¯!±Ý. ·Æüô•íq`ú–òüÈ^Ê..ÜoÑ@?´NœÃÅÛLÄ‚Ùí-s}@=»ýZTj‹”ËŒÆËe¾ +'¯àEª¦h4Ì…i‘„0ú甜·Y” ò$$zn£×ˆßvm÷‹”u5ßQ1¤M&y©èŽ6Ç'öFÃö±ÐÁ+í÷RkmLꊹën×Zéz%™äìÖ¹ô)“ágÃ%6›ŠYqš:›Û€š’×#C£¢Ît™üRN÷=%CG|*ŽŠ©º"¢<`ð}=5óŠ•3íU5‚¢²Úè¼·ÓºBžÇgç8À#›¾N”óÈç7$ì¸/FÁfº_nÛlÖÊËl®”Ô°:IôhÊšÞü.Å`žŸVq*ž–²èÎY(­ÜñR8n1Ï+Þ?te£É=%%}TT455õ.ý]<.–RÑ“†·'¹ÀP§Œ.¯7›i·èK|¶ j†;ž²¡Áõd‡(n[Ç9ËŽÝB‹wK¥mÖ¶Jºº‰§¨™ÅÒK#ËÞóêIÜŸšùâŠzŠ¨à§ŠI§{¹\çØ¹R¿€>ª®”´š‰’Ô[©žï2+måžFäcÏû0@?Ø#%¤¦]¢ÙAh¶SZíTpQPÓFØ §…¼¬c äëép¨Àp£ï‹þ3 §Ý¤´õLnÔ:rÉåÔ08c› ü/p?z ŸE¯w½îÇ3³€F½ÍÎFF©k¨<¥Ùø°Iô=–Å<"êšÍCÀdõÏ‘ÓÚÌôi$ç26/ÂOLa¤ {uP/†úºã£5å»Y[KYo¨|á®ü25ÁÍ{O³šçªÙ­V·ÓýI«/7zKM²®–*¦:¦P‰Ì7sºì2N2±„þ)x[ŰDëíD^hŒTG@xw7Ň’™±—ã¦p¾ˆˆˆˆˆˆ… €쪩ž‡ÎUGDDDDDDEÂYDxÈ$žÊ±»œg”šäˆˆˆ‰Ý[œæ2;ù¤<»‘Œ8åv'tCžÀ ÏtDQÏÇž†«Ôœ/§ÔvÊHdªÓÒ¾¢¢GJñL[úÀ2>-ÃN2:eaïÜNNêúz¯e5ªòÐúWL@k*Ænsðó½ÈºnqksÈ\r¹g= »ü¶XãÄ/ )8¡Ãª«3„q]©Á©µT3àlÜökÿ ¾yìrðeÄšý)­¦áfª}E,uSË <ýε¯!ñ{véÍóSUD7T'FGÍFO<)›Qéú}uc¦cîVv<×µ®Ãæ£k\âïí:26Úçz t½ú³Mê }öÓ1emì©í?´ÓߨŒ‘+hü>ÔôÏEÚõ=µÙ§¸S¶PÞìwG4û‡>‹ß~ëøì¤­—‚ܨgš -wŠJ§KË]æ,w{=•ÿÀ vÞ#p¢Ë©žæýùðù-K>6Ž`à¯Ò¨zt÷Pí ••Q³8<>F[¸ÀmD˜ß¿R£]+e0½Äà4u'°ëi¾¬”ús…¶ë=4µAM$­ŒT–ù±‚âyÊæÁù{«úª¢Zyjjf†"i|’HðÖ±£©q;¡‰¿“\Ef”áåS©íí>]Eâ) dªÝ‘ F]¹wl Ýìöë¾¥½ÓÚ-4u7 ê©9"‚—¾GØ2~ka>õ®Þ)äŽå tä¢\ó¸[ãŽMúžv€à}ÁPׯ'‡û?(éµ–¨t6Jº¶ÑÍn™î{©¥,%¦7¸’æGdÁÆ áÈgÂÅúSZÛKKO~mDR¾£$ÍQNAeާïn¥Ó6Àeâq ïŸÐ×ëÔÓÅ(-µïn@äÄdwßwèµçó1‘ç ÂÏþ¼5MÄ-+¶¿jºK.ódÈŽ2ùÞÈŸË'3œZȆ°ì»Ü,Á~Yc¥áE‡O]u@—U‚ S ¥˜¸¼“ͳwÁ$Žø’W7VNëÕ#¢dœÿw4yNöN®}Ô³ðñÅ»´¼õ&Q_-îk.Tq’XÞlòK?°àÓ±ÉiìMù©îÑX´íÎûTÞh-´rÕHÜ€\ØØ]®0µK®5ÏSÞëo÷‰ßQ]r˜Ï9ã͆Hêa,‘™üFGuvéÎñ¿†¼U‡Ni·ÉSK<ù.”Ïsh%¥ÉÕà ph9açð—lV?áý;ÝáOŠULª4ñ~“´€Àw›8·wmÚ±^‘Ó—ÍY¨)l:vÛQq¹U;–(!nIîIìä€ê®z¾븵M>‚ÅWYS=GÝãš$òüd€÷4 †IöeÊ¿¼EŠÄk ¹Z§® æû˜´“û¡Çlüð<ܯ>ãÔÚ[PPWQOr¡©¡}$¬å.ž/Ö³ ð=£}̃ÕN;åòÝ`Ó•7ûÔÿr¡¥ƒÏ©|¬<Ì`ÆÄ7;ïŒ îµƒÆ~ ×ë®%Þµ3¥‘±TT¹”¬;r@ÂMǯ(÷%Z?¤ê‹¹¹É#~ªéÐzŽ_Ò¿¢j*ÝKIwc­Õ²Ì<©~bÜü\¤‡BÝ·^÷‡îIª8ýoÑ:ŽÃ L®»SÊ!°d¾3‚î™íœ­šPSÓRQÃKIpSAb†&7 ckG °_ŽûE·€5,‚ªHM]ÊšÁŽ#ÌoÄç4ï¸<¿ÁBÏÕL¥ãÖˆžzzÖ¾÷MŠa–ƒ#Äaû÷apx÷h[E¦oê†\I=Îù_tdŒ.Hˆˆˆˆˆˆˆˆ˜ÈßPü“䪈ˆˆˆˆˆ‹‰h/Éß:*çUß>Ȉˆˆˆˆˆ‹‹£iß•¹ù/MP_(®w£t­†ªŠj±%°µï2G cs€íþlœ´Œîºˆˆˆ¾k¥ %ÎÙUm¸S²¢Ž®ÁQ ÿ ‘½¥®iö µ½â[„u<$ÖQACS%]–âÉ&¡•Ѹ˜Ca{º5¼»íž¸Y_Ã߉ú«%=>œâÞ.öÅOq¡ÓÓ· (ÏÆÀ;Œ¸z;lL-={³êT7[ÆšáE3C™4iϯ¡ö;…è*›¹AÌO°P;ƽ‚]%â‡TÙÁ£uÚ’*öL̓k!w#œLá°¸ú’ISS‡Zš¯BXµ4a­K|5NcNyöæ|Úì¢÷Ó²zguBºæc^ÎWáÍ;FAù…¬ï:ú‹wKe4lmº¥î¬·ù{Â÷Ÿƒ‹\ßRìôÕÆ¦Ë¨´ET€IG;nTm$äÅ ”Ø5ìaùÊ¥z"+ ÄEˆê^kC!|òÉjšX#`øŸ,CÍŒræ5EOCuŸˆhÊÊ–¶Û~Œ¾•®8 ªcAÛnfr֩Ш_?hmÜ]¶ÒÓ=¯¨¦µb§•Ψ™àwå!aÞPÃwâÆ‘µÕBe§«¾QÃ3Ç; Íû-„psUÛ­\#ºë=Ot‚d¼Üjªç3 ?ÖÆàùÀÜtõˆ^$<9áÌspÜo±Û}²¡ï8}Y­8MÆ]÷¡n¸W_[$šׯñ+šÜò´–€HÎÛ8ßßðÀíGÃËÍûRjØ[Kvøí´ñ¼;š0ZçÎ?eØh³…((#j9¥–Gm³HÃ[ò÷꽈øßÃÈ®7-7­¬Ðò^,7êZçò7y¡óffÃ$¹¼¿îû¬Kö‡k™mšbÑ h¦–).rêÒ×ãšÉlq:‚ÿ‹çëÚÙ­•÷›œÛe,µuu Š(š\çسG…¾.祻ºË,ü4‚qç¼o’ŒƒbAÝcm/£¯}qýt&Šéål°Ô‡1Ѿ&¹ÏaÀ$;á#çÜ-€i«] ªÐwqOE&±¼ùÔ—»Ã)yd®‚’Íœ“ËÌá\7$7|af¦±­9hm÷ÙE/´z³—Ié `qÍE|ó–ƒû‘µ¿üµ¸yx‡Oëí9~•Ÿ«µÝ©k=[ÌyþKmQµÄ“ƒ“軇°Á\½ÕSº"ãËsØî7ì¹""""""""DDDDDDˆˆˆ~hˆˆ‰ßª""""/ ]é{V³Òw 3{ŠGÐ×DcyÁ²0žŽa9ÃÜmù”ã'‡][Ãù ¨µÉQ©hjgtQ>މþd`þ0G7^›l=p,]­µ—¯ÓEÖºË[¹*aÀÁ-ý™#p-8÷ JpÛÅÀ{òÊÇ5¿|µ4ƒŒ¹ñ=ݰ2Zîû5H-!Ä­«)ü룢©ÌcÚ\csñ–°‡‡Nªëæ¡ÁÀƒÓåUã#b{ª€ÊŒ¿h&ž5ºNjfFmWSÊ{ˆêåÏc꽿Ú–+¯]§²Qa®–23’覑ұÇêéòb‘¯ÉQÁE_Új»E»ˆvèÜóAŠ›A Ü<©}¹^yrÞÍXÂ^¡~žãþ™s¤’8k¥’ß0k°&a õ`c¾m dc¦è‰õTv:z­R^`®áÏ®4vÙÞê½3z‘”sJÝÞêyÉÄzF“ê Ú&‰¿Òj­!hÔ”8÷:8ª˜ÐînNv‚ZO¨$ƒî¬âGMÖ¶ün68øß2?ö­G#Øæ¹Ž-sNZZpAÏU·Í!quçJYïÅß~ ‚§.o)<ñµÙ-è:ô Ããô‡¦·Ôߦ¹ÑÖQ¸5•T5w•¾cåxs$ç˜79¶Bìो…ºoKÕÕè+\”tUÒV×Éûħ%²—È´œ @Ö絺·ˆ7ÝG,æs__,Íyo.X\y6íð†ì­µÛN@wÄ2Vð³#áñ¢çk¹ ®^}C£{Hÿ%0aŒäaFœ<ƒWhƒ¬èêÛOrÓ1I+Úæ¹Íž˜€\Ñ€pàà=0]žØ½<$PAlðó¤ü—ÈóQ•r9磤•Äìãäb6ë6¾?+y‰ÁÝNs^½úðÍKWGÀM_à–Ö¸±Ã5ÎqnÞí ¬ŠÓ‡´QЪž3Ó ./k*8‰ ‚ÿZÆç®ïYÀÃîê]a"–zû\l¦›«¿GÊÐiôýZ{˜e¹ïû;´[ªµ-ÛZ\(À¦¤´ô2ÊßÇ+‰æ,Ï^P0O©ÕNB;‚±~£á-š}Y6°¦‹Í¼ÉTùÏåLO§HƆϒֻ.$ƒœ2 ¯£.´ŽñC¦ÌÒ:¢Ïc¸ÆØÝ>9¤¢”»¦Ûs dþu›ýÎÛnª†hÅPŸFÒ‘ý]Tvø¤Œtÿ ‰’t;w[†–BdÀ±à8PFWxûª€GS•TDTh6¢ª"""" ÷(ˆ‡¦Èˆˆˆˆˆˆ‰Ý;lˆˆˆˆˆŠ˜ïÑbÎ$ð‡ZÙ— êl±Ð]+Ü%ÊŒ8xs\Hæ »”@ÉŒ¬®|_¨§tÚ#SAp§É" Ÿêåh $f79g¯l,wpàw4ñŽS¤«j£óƒù­Õ •Ísð0ë±Çªôô×ø¿ÃzhíÕQß ¦§!Cv¶ÊèX¯~NœªxŽˆ©ïþj¿T9ÇUâk»>¥Ñ—«TM–+ÔÎiþÓæ ÕΜ¬©°êËEÁ¯1ÖP\ {ˆý—Ç(æëî ÛNw ª¢* ׎=:ë®dºX+¢ÇBàß*OâÌÿ‰gŸºÌ^4ÇIOQÍ=š KN×þï.N°x椫·ÁÏqüÖ±¼^=Ç7Ø;çùlkÜIÛ—8èHú,HÓƒ•yðA]ø“®(4¥¡…¯©>eMAn[MOÇ+½†p=I© jZzÕCc²ÐYmв* hé©ØÝ¹XÆò^ˆUî‰ÙPÀUTÝ=S(Š5ý¢mwú¶îú‰.:bÕ4Õ'šjLÖNçŽóÁ÷+k :BýYYrµÝ¯Úê©$Ÿy¨5Ѹ‡ã™s s°7>òÇpYxñÀ¨ªç ¤§ÕzfNWÔÁ=LlcG)Y"Fa˜h òŒƒ…¬W÷é}{C¨,­<Ö›€ª¦a1-cò#q÷oÂvî¶“¦îÔ7ë ¾ùl—Í¡¸ÓGUNþ…ѽ¡Í$v8=¡òDB¨Nà-]ñÂ1nâÖ°…¡­4ך®PÆàÖ§E³Ë[Ý%º–Içt,'2Z _J"t )}¢ÚhUh½9«"`/·V¾ŽgsÉ3y›Ÿ`èÇÕÊ>xPÖnÑ\m°TM0ކºoѵ„¿•¾\ØkKL6O-Ù=è¶[ÌâÀoÜ­VøŽ¨5nÕŸØ"¸>µãœtôÙcÅ;~Ï} ³CVñ±ƒï·©]GFí¾ X‡è](p ö‰¸î¥KAw÷\‘tÒI4±½ÓÁä‘#šÖó–‚@wÔoõ]ȈºÜòNÀ㺯3Z Êâ_Ì6ü×(ÉvsØ®j.ý£un…º~ƒ 6{טF2~$Çýe$¸cò[YðûVÚÎèiÛ’‚Ž3îYX‹J¾Iø†7Zÿàwê~7ñËh‚ oÕ–;Ý;eÃ[癘öätÜ´ tßÐ/¯Áß 5â½Æ]Q¥®vê;u¾hå–²Ñ4N^Ʊ­'gž~Œ}ç}5,MÈ‚##ÀóÈ9Ÿ€IÆû,âOýŸ‰_lU0Xõ3æÈa抵¡»5àÊð@ÃÇl‚ØŽž´=ö—Äõºßy¶š› U•‘Te®å 1µÑçñ‚ùA`ål ËkœÞ`Fzƒê?5ȽÝ€~?tø±ñŽ–ûKŽõ¹’ÊÜÏäqÇo‡Ëé×u(®µ4µõ0O$RÂö¾'±å®cÈp#pG¨SÛÁG¯zë‡w +üÒÖÕØê› k¦òËQÏîq$¸n3ž˜ôYì´–Ùé•®OöáGâQÆÆ:!(§œ‚îb âÓo’šÞ$ø|Ñ. c@µµ¸nqâ?=–G-µôÙk§ÆÍé|Fj ³jࣨ`ÿõvFŒeyÞjþéâ#HÉ+œÑ-D°‚Þåмùál†ª!-3à9V–žýA¾j*ýQízò!!sc­¤ˆe¼§ál£˜ŽÙôWŒ¾ \¸™§¨õ›{¥¿Yb‘¬¢s¶«„üE­ÿÚ2;‘è 0¶WÓÝf¨¶VEqù ¤};ÄÞiÙ­äÇ71$1ÝmÚÖú¹­ôÒÜ)Ùd±ÓÄÇó69 AsAîÈÊîg$ª8 †‘œìrµ…Ç=k¬ëõmÇMê›ÕEi²Ü*©ãˆòˆã"B pæ98î¬ý}¹Xõ îÕVi.R‰©åh±ã¾ÇäVɸ_ª­KЖY £}`ˆS×Ä:Á8hóŽÀç#±+'PRÅŠ Hl¥¬ji)Csàm #CprVÐX03²Np¿<.êš.&ÇGËxªÓ·nzˆ¥žPÆ[~(¤qÉ-ŽS»ˆÛr 6g‰ýþZ4&¨¸¶á[Mm\­Íšfå¬g”r`¹Á;g Ň3Ëq궃á¢â.ÜÑmy%¢r]×1(ÿÔY ùª¢"""""""""""""""Tù5^êžê¨ˆqú"""""""`g=Ñ¢*`zŸÍ*¡¾ê‡=º®'<¤ãPTñç¤Í«Š4Z¦–ÞøéoTcï<ĵõQN\tËk¾¦ù—Àæ­}˃‘Yë'kÿDV¾’å±7]#|9ê6õ –zFÉ ?ôfІ;ÌèvËCvÇãZé‰Ò2p2æ‘øO§p¶«ÂR5§ ôæ¦æç’º†7Î@Àó€å“nßvË[>%DƒzØHéyŽ×ØþKƒ‚ì¶5àzY‡‹4¬¨•†zÇGÍä ûöéø¹Ž:ç+>TDDE<@ñ&›†<>¨½rG=Ρßv¶S;ý¬ä’?q ;厤(™ÀKOxÓÅêmOx¼ÖÍo²U¶²ªáVÃ4V¸ÓDÂy<ÙÃ@ =p ç¶ÑÅo¡†’ÊöFÞVºWó8ï꾇ëò\^îVH?ìû/¥­  ¹ª"ý¤õiýHêê¤#?ºÆÿX¨TØZ—lR¶cÂG§4/†íqÔ·jKM!³S½¦g`Èç°; oâqø³Ÿ^‹ñÅõ58’›DX77(®ºç“—â&¸ìz¸|ŠÄ~®šÖ_—+†ž±ÒWݪéguTur£§†Ia/—®~[†ïœ€§ÝÚán¡ò…}Æ–‰Ó¸¶Q;c/#³yŽçØ{.ÚŒ3LiÙQO3ÚÎoÕÊHÎ2@$…Ê«Í{1œ ÛŒåuÑ[h£®šâÚxY0åtüƒŸ—áæë†Ý6_q òÊ¡ÇQÓ”?ûJmîu«DÝZÓË õ”Ïv;¼Dæø¡Å+Kâ.å»>¼ij‹'g¾UÆûý{ª!øŒ-¤üÜGMº‘ݧ¨Û®2µÕâäÄÑHÁâf›”“c Œö¿þj/Sç‡oëÑlkÁù¼:Ù#--1TUFìí“ç;§æn ¸DDDǺ"""""""""""""£Ža²e3¾;®,Î1ÏÄ{.C*¥Ã%­®ôåöóMškY\tÍÂ.bÙ"†:ˆe$l$ŠV@#öKNç®ØÁwÞ7q;„—ø-XÓt7kuCÞÚKÅ´ùykHÜ7%¼Øp%‡”úegÍ­4Ö¹²6ï¦n°WSì$kN$…Äg’Fuk¾}zŒÕˆˆPtÙP•Bïÿb®Þ¸T%0vÊŽ¾>¬â¿ƒ´w1)Ö»´OÇ)!ÂF:23ÛÀçè±7€;å5>¸¾hÚÖ²Z{µ¨Ž7Œ°ÉÎã¦y]œû)¿O¢ql¯fç8Ç¿Sõ%wmŸuD#Ñ3ºÖå,ñkOtµô×bË×àÿ.V²DDCô_=u%5u$ÔU”ñTRÔF覊V2F8aÍp;A ‚µ©­UVMAq°Õê‹]\ÔS`c.‰å‡oð©—öëØ+´Ã‡Õ³±µ–éMm ø¥ç/hØyäð°º+·y|¾S#Y͈ËF@Èß¹å,?P°›.Á'ÑlÓÁ˜žôŒq8c˨qæ¢R‰+1 ‘$à[MQâc“=þ|Z#NFùò<ÈùˆkXGGÊG1=˜Þ¹åRÏMØ,ÚnÉ—OÛ)-vúqˆ©é¢ cs¹8I;’w'sºûÜ: ÇËq=NåvFÐÆŒc²äFñCÑB¿´žI?Mhˆ‹‰ŒSÖ;—ßš!•'~>2q…‘ô¥·\qRýCa´ ‹ÍÎšÞØi㚥­d4е ^CXÁðŒîõ*]p+Âþ™ÒÏ·j-jN Ô ‰²Yy]EI)ò³ý£›’‘À1Ÿ†«Ûï>35MÒ8ÜÁ_ Ä=¦BpÖËNû°mïì¬5æ?w–3Ì>U;‹€Ì!ß=ÅÐmœ¬=¦µ=ÛOß)ovz™(«¨ßæE5;¼·´wˆØŽ„µ#q‹JYïÔòFøn40ÕµÇâÚFcÓ¿²÷aacy‰îvÂçÝPí¾p°ç‹îTñƒµ”v˜]QxµLÛ,tÎcH|@u%Ìs°W… ¼5ðzëŻŊ ÖÛ­4B7WV–s–ó†1½Þ@w]†>Kek]šÕIhµREGAE !¦‚6á±±£ è¾¢z®ðšoº–?+”rS¸ƒžhÎÊXp§[èíá«GݯuðÛhÝl†)’YßÌK›IæqÉÉì3× Uø¹»Wj(-:WAÅZúÚ¶ÁCÕnó¦.Ã[³Z@%Ç=ð?5l}¢ðT6í¡î5PGDöÚˆ¥ 7+Øøœæç¸M¾j(ÓTM ã…Áì{\×4A Œ{…1¸âjªå~¬´q:²m—'–STýÙ­là²Lcõ@mœ3¹ÇOŸìõeU»Yk›á…ÔÐDÉHoíÅ+Øw#8ëü‹ã‰×ëøt”ö£mŠÈñQO ”¸Õ‡µ¥³ 0p|ž…GÊ]IU7Ýá|ÓÿTÎcˆÇ_€~ÏÌwS“Ã7iõƒ-:3SN£’'¶ž¬|L­òØçüXü/äc‰'cÊ{œ) ’{>j™ËÍÔv;6£´Ëk¿Zhn” >ž®Ëß áÝÁ‚7ebÚß <ª|¯DÒÉ#¹ƒ ¸NÛ—–ãn„¹Y3MØlºRÏMe²Û¡·Úà{…<Fyc2Hç¸mÑ¥Î'Ð,Gq¢ ŒM#4S×Á¥ë]PÆÈÈß4†L™$ëéì³ `Ç©*}¢ô4pͧ.΅溦ÓE(qÃY¹œßMüÌýD£w+æ `ž.«¢„Sù_£îu—ó“æ—&qØüxÇM”€ÆÝPŒ1誈ˆˆˆˆ¨óº¦O¦¯±ÆëˆqsI »ç%Aèrª:uUS#>ëÉÖ:rÍ«´ÍvœÔL­¶WÇåÏ ‰FáÁÀFà€BºÉ­|6qr)­W ]O;ûmsØ<ºêaËÏ £¹iå²× d)—Á,iÞ(ØM¾Xé®Ôì~·9ãÌ„íñÕÑ“ÑßN«!¢""*’d>ã*ƒvƒ‡ ö=•Fä«KŒ:uÚ³…ÚŸNELʙ뭓²ž'cŸ˜·=>0ÓŸe<']Ÿmñ¤'á¿y™Ô¯. 6Xž1¿|ãë·u²vúયÑWè¨zt^&¾» ‡¿ÞÜÿ›íµ[uø#s¿Ék·Âe;î>$tkgGýâyÝÌ29›O,œß0Gæ¶ZQqp¸P Çݦ8´ÝQKJhÔÃÌsØ6m[p%v.ø_îK½ º?PÜôž¥¥¾Ù*䣮¢•²Ã+Aî:´Œ´Ž„Å\~"uÅ75=.©4Â’á=L­…‡1ù¬ËK™ß¡§¦1ºÅÍêÀ¾ÏÝG5Ë…•š~bKlµ †ÄѦGþ >'óóç¾9T”t ¨ˆˆ±‹ltW®ÒÓTn7\[)peþµÃq‚Ø„„Î \¼&iô‡ì`Ó±•·X…Ê­À ¹Ò€X ï†r4|–Z)ÝC• ~Ò7çUhز>—ßyÿ%¢§–ª¡Á³O+Ã#Ž6—9îvÀ7$œ ³Þð#‡8½Öœ¶TºèÖ:6UÕÕ¾WF× 84d4g×Y?8c®TðÈÈcñze3Û<-}׊/-ÃöFÀge>ÐÛkx}½¶Ùc7ª Øb¯¬ˆaΣs\ÀdñaþPî=”Àã}¿5µO“ ¸¡žô+0ßáŒòYa¿ñMüÐ8FýÄŽ(é×ÑÓjÊʪÖÄù)æe;¥cùoÀ æÀî1ŽëÕÑm'|µ>á£k-UTU3:¢gÐr Ë'ÄçHÖà‰ 9w0ÏUï|lw=þêxòŽš›ñTÂ$tÒÙ táÄ‘Ì n3Û”ªµx?ÂÝÅêÊ(áuU¾ËIJ"ý-] †D×"‡#vK¾ù#¼Òàô— ©]=´Kr¾LÒÉîµmkšyI€lÆe ãsž¤ì°_ÚOÎ¥ÐU"?ÕÆûŒnp;;îĨk¿%as]xi;8¸ÛÕO*_ |=¸êªMUC]]o°ÎÊjÁeaóÌ~'°ÊIw#‡&Àä|[à€-oüßñ“Ä[ÐÅߟ^adx h-™£°äxÛ•ããW‚÷."Xé5V™‰³ßl”ò2JPÒd¬¦üa‘à^ÓÌZÞüÄ ð ¶ZæŽý~Eg”·Zž>Ø*m–Ùk™Bf}T$2–'ÂøÌŽ#a³Èõ$-Ї{vVGøCÃoõÔu“Ç$†š'ÓÂئsc2‚F\ÐÜú–Žê6[|c^…Pý)¥-ˆ3qò1ÅØõ9Tàçôß,¾Ï3"­‰£ï–缩ÉïÚaìá±ù‚òXR×EñUC^É˧:V²'0µ±²zw0rê‰NFÄ`ufÐÉF´ÂÊÊ|xÈÉêzÊ Æf$;l©ÏöxWy¼8Ô6³¤»‰yÇâw™zü¹J“ØvÁù¢""""""""'Í#Ê"""""*<àî¸FH9ÿ%Pïe\œìr>J¨ˆˆˆˆŸDDDEfñƒ‡v&èÚ9|g!wë)+Àe¤”t{ üˆî Þ-:û€ÜGwMm¸E#Â&Ÿ»ÖÆrXHÃÆ C˜wÁ PpÇÅf’ºÇµ¦–Ç[€Wnš•çÔòåìÉìAÉ =é½AbÔ–æÜtýÞ†éHì~¶–fÈÐqœ±Ýzhˆ¨ =±óUD(™EÄŒoºÕþ¯¡©áOkiá§triËójišìh[+g„õ;:2ÃŒçu³è¤d±²Xž×ÆðÇ4ä8~K±ÉbowÛ|:jùc.šiGl‰§Ž3üT3ðs#âkIHâF]XÞ»dÒLó d£¢ª"*öV't”ׄz–Ã%©©}“Ð áͪ¥ð{|`Ž ‘Е¬O`¾Ø$·:ë@úVÝ("¸Ñ8[5<£,p#ob:ƒWƒVâîLŸÙü—KFr}7S?ìç¹Ô6=Gj}\1Ò~ªF@qÏ$Îçˆ٠2<öÈõ*c4“ÕrDAÑDïvºÎ$ñ«Gp↪8 ¦€TUËÊ]ä™å Üü¬BJ•´ÐÅMM=ûsÐZ‹UXYVؼªú;‹ù!s7Œ¾@#q îÀâ}BÁZÏÁ•’ë¨[sѺ¯ôM𤗾šh O’Ò2<§‡`{st©R—JÙétîšµØh°)­ÔqRÄyCrØØÀœezŸÉ§.:6ôP«í¢u.ªÒ°ÂÖÔÐÔÒºAëØà?'•4¾¯¼X.Ñ\­:Ë}d[6zyŒrcÓ#¨ö;-Œøe×SqƒöËÍÆwÏtÏ¢¸Höµ¼ò°þ,7Õ¥§ ß;,š? $Qî 7Ž®vqê§/w+í¥¡ßãzî?5$üÔ¶&9îy§©¬‹ç” ™Û,Ò:wQ‹í¥ü,ÓÕŽi2E}5ÙèM)#ó`ü” !…­i9üÖ׸Ksžé¯3\jì´r¿#˜ÄÞaó#è¢m¢ª®‡Çôr¾¤™*n-IÍ–Mn ϶ZöLë…Ú×lý!q£¤lQù’¾yØÁzs;˜Œ ‘ºµ§á' *ë&¯ŸAééj**Åt“š&¾Pyƒ¹½ Ü·¡ÉÈ9+ÜÓ[Né(e‡Liû}ªž¥íuC(âZÞV»” €ñÝ{nnFùöè°ß@ßüšõ<œ ùrP¼œ¿ëŒù­lIPNFvÊ÷4Õòãmœ>†®¢šNNNxetn-=FZADzš^-êÍ']«®—½G÷/¿>š‚õû¬Ìk_(cÁøÜæó4–z+ûLÇRï1¾ZVÓCM£$‚²2kcøŽ À%ŽÀôf‚:”[ûC#®þÚ¦‰£îL©çŸ“˜coÏuaåk€8.Ïb§OÙíme?/·VT‰]_s̹‹Ëf;ç|çp:í•'>¨ˆˆˆ€ÐaDDDDDDDDDDDDEÆBF1ê¨3·\*·Óꫜì›eU;"""""""&ëÂÖÚSNë;Ö=Mk‚ãA7Xå´ŽŽk†ípõ¨Å׺)%¸ðâôË> …²å Žq×fL+»lþ_ï,ZÍyÃ[ÿþu£¾i{”N’x ðN diå{vvàp}ÖXáÿŠeCyu6£¥`ø¾òÁÄgÿXͳóiRs†|áþ¹|tQWºÑtpÿ¡Üq9þÄŸÞÃ!ßÙ *Ït=Q   Ó¢¡éÑBŸ´DÒÐjË.´¤cXëËM-pkOÇ4L²c>X ø2¤… P5GôìÒÎɪè!ýQ‡àa%æäÀÓ¾çªÊ¿3…ULüÊž7¿ù8j³ð²z'Iìß½D?™Ð׊+­m:’ŒTZë#ªc”îÓóUµ=/z Ôzzß~µÌ&¢¯§eD? †p}ÇB;½$DEÆ@ pà;FÅbN*ð/IëNPhÈ`élôþ]ޱ¹sé\€×’èÝÌ;õ ­½]§îú_Qר/”¤¸ÐLa¨‰Ûò¸w¡`‚6 ‚¼…|VÍì1@ùçÜ9å¼4–¾'ƒ×¶3·u²ò@$çeQÕUdE‡´eZŸ­Lú}ÞÛTc§Ìä{è!ñc>ž˜Y…Ñ@_´X§ã…MŸÔöæcð8Í1Á>à‚°F†¹ÍaÖ–+åé-]«µ]'¸¤ÏºKý?¦ãåÚù¿ÚË9§#o`íðvnðƒ%?Šýq½óIFÛuÃÊ|„œÖS689,OâçH£î5Ü`¦¸ÕVCxˆ]ã}Fò7Í’@X]û@9ŽÁôÀí“dhž!ê½+p†³N^ë-³Dy¹!˜¶'û=™åp>à­—p[[EÄ>Yutp6žZȜژC²#š7–HÑíÌÒG± ôùEÄÆzû(ëãëGVj>Ãz·RÉSQ§«ETͤ¹´Îil®À<Ž=ƒZâv _Qçäo‡uìçû9ê9ô©¦È-ŽìÇ´ŽŸ#;ÿ…J@×óØŽ˜ß?5 ¾ÐÛyƒˆº^îOÃWh’ŸwŠbìþSÉe³ú¢¢^]éåɆžÿ+!>Ð@ò?Þq?âR+¿åÙFÿ´."î ZÞy5ó‚vÿšQ8—rg#;-”xJ­¬›ÃV‘«¬/熖¡ËÌqÔJØð?¸ÖüÆw£¢}ÏÇœ”t2ýÍñÜå<»Êt6òä9£oÍ`m©5ãT\«uL¯žù$¦:÷JÖó #à vØË€Û+‡ƒÜjÕ|8¾ÃWl¬–¢ÞÙ¥q‚Vc oF;Ñþ3‘²Ø· µÖŸâ&“‡Ré×Ni_#á‘“ÇË$R7ñ0ÁÆFà‘ººHÎëÄ×¶Í=wÑ×[^ª}Î*)ø-×Rè~!×è=Jd ‚å9¦0Ì?è÷?Ëä8dó0öÈjœ¡7õ^N±°[µN–¹éÛ´aôW*gÓL;€áŒqÔPµ}¬ô½×Dj뎜½Âèëh¤to.õŒÏÁ#²á‚ ’ø£÷;”¼4»Ôbš©Î¨´>Gí¸ÌüŸ»†ãâëÍ´Çù*¡è¨ -ØqÐöUB¸H1ŸuPèÝÎÎû…²¶k¥“€öø®”RR¾ª¶ª¢6HyÏÃ\ZwnyIӺλÿØ›ã¿Õ;ÿšòõÞÍd´Íp¿Üh-ÖæŽYf­•±E¿b]¶þ‹Ñpƒº¢²=UjÒºjæÇ—ÍBðêi $±‡Ÿ¦Ë%ÛmÔ¸=¶†’ŠåÓ@ØØ4¾ÂAÆ õQ/í£‘ôº¼Ç˜ašº?ÑÏl.húˆÝù/Sìô—›Bj¶dr‹Änhßb`fþ¿ï²”#›¹QÏíÿôFÒ2 þŸ~˜ý\ßø(ÄœÀu+e¨b‡Ã•¥ŠhëÙ-KœY–é'™Î‹~…¥Å„ôËI pª˜Eãʬɦë¬-”ÖTÃGY$o58]‹w9æ óû(ùâ&ÝUg㦴¡©„@ñ{ªW,®–3·«ÓõV5;\évÉÛ;|”ûû<îf§ƒ÷[sã W©0þlóy‘Æî‡¦•iœ©Ê´8×n’ñ _lÌl•Z¦0¾>qŸ)Ç¡ùuìp{-gè½gzÓ7Š{•–çQn©k›'<ä°p8{…38 âRÇ{¥–ѯª(lÕâOÔÖ¶2Êz®|—sàb7çrI 9õë"D°MlÄøê ’.f>'×°ˆ=0Gu`pþ¡“qwUÂXÖTRiû,34vs¤¯“cÐŒH7êH9XËĆÉõ¾¨n«Ðµ6ëuÚµÿùÖ*éŸ<¸f­äcˆ~À;l;9ë’mÞ$p·‡n–ÛÖ¤ý#[<âs#p§¥s q|Põ$‚Kΰ kT1„ÏÓ|‚5/¾ÎÚŠj-cHùX.SSK <Î…Žpq°öç¾áL ˆˆˆˆˆQDMŽL*1° ÙSp}sÕrDŽ˜Dß~žÈˆˆ¸½¼ÛÛì¹"""""¦S>ˆr©Œî:¬qÄn p×]‰æ¾išx«ææ&¾ˆýÞ£˜œ—7g{¸¥`eàêñFñ>…Ö0VEœº’òÆ7Ëe‰¤ObÁó\,ל5îõZRã{¢Œ·•¿ Áœ —œ^Î7)Ã^$jQV »pßQØâ8 ©©­äi<ñ—°†‘ÌnN3’·L"o”Ý6>êøÛáLÔ7Å=9J[O',wÈ¡iÌoèÚ¬Ýã¶ü§Ô¬½áƒ‹´ÜCÒÑ[.ujk| UµÃþÁ°™§¾hv;ô!f@r:~h}÷T<¤z¨÷ãw†ŽÕ¼>n«³Ñ™/º."(òúŠ7æ3mÏ)ă®9^øŠ‚ö+…E¾å‚¡ÐÔÃ+g‚hÎÇ´å¤|ˆ[4àV¼¦â? ­º‘œ¬-û½Â&ÿ²©`ãär?²ö«ë¿TÊ EG|‚訂*ˆä§™‚Hdc˜öž„‚Ï+QÆÛú+P×PŒFšªjrÜ´Ç!o`›Jï.hÜ¿Íl{ÀíÆñpànlýE%mE-¾BàL”ÍpÁ>œ¯20Ùg!œÍW#8DÆèˆˆˆ›¢ø¯w;}¢Ý5Æé_KAG y¥ž¦Qlo©qØ-fø­ÔÚ{TñÆý|Ó"®‚¥°=±:6É#!kà¹o\ ãêmÎ@Ù8Ï¡üÖ±ÚŽÜ×5Ø ƒSs궺?8Û)+ƒXç<ᡤ¡Wƒ9aŸÅ°–œ­5áî.ph­§.;“°ÝIn&q‡Bðêóoµê›¤ÔõuÌ2†ALùŒ1|@HðÑÌ\Ò$ƒ¶Åyöý/Àî%THhlšGPO .’xàa”27cŸï …”†41 5­Ø0ì0{&øÝ;ü»¨?ö‡êŠöqŦc™âŠžÕ÷Óyåt’Jö䎛öù¨ó¤uÆ¢Ò×XnZ~ñWm«Œ—‡Á)k\qŒ9½=ˆ+fÕÕZó… []M5UÆœ¾hãvX×¹„b[œvʼó¶pVñmÃ+‡ôæ´Í;îv¬UQÒyÇÊ—”8HÞF°—<±Ä7¦àn9µ>ÏÚGÑèÍ]Í’*ˆïmdHÒ×GŠxúƒÐä‘ôRQê+NŸu7éy楎¤¹¬Ÿîò:‘Ÿ#Z[s·1ÁÇEˆ»°4d¸8n~,¾zc¶]ÆùÆë xË1ÇÀËœ’só 0ÎVónè¤fþØqÝkš8‡8.$ôÎ:•"<ÌÇw³Ìhæ±Õ7«¿Y Çü9ú)ïŒo…Ë(ˆˆˆˆ¸°¼¹ÜÍðïÕrDDDDDDDDDDD9TÆØêª(›¢"""""!興ˆ¾K‘ž*Y¦£…²ÔüºO-¯>…Ø8ùáYñ‚gTQÒµñ_)c©´W¸SÉ—~ãÊ9°y^ Çn`s‹«O_-÷ÊgKFù,D6¢–vç§qý™wiëìz‚FëÓúôê˜ß8Uˆˆƒ9í„TǺn¸OSÁ$3FÉb‘¥cÚ \Ó±¡C8p“Sp“V$páÕfϯª{aËå¶HyžàZNFÛçá݉|âí§‰vBÇùT7êPYD^>#ë"ÎîaüÛÐúœž¸‘ºã4L‘ŽdŒcØàZö¸d8¸#Ñk«ÅO ‡ 8•ÉA!–Ó|lµÔYŒ3Éwšï2 ‰æäagØ“~xÕÒÛ8ƒsÑÕ3;î÷Š_¼ÂÌmçŹ#Ó1“Ÿ^Vú7~ˆ›ãq¿² =?5UG ªãËÊ6$­[x ¢î«l¼"ŠÍ ôì:~‘ÔvÆ[âBèùݾ.añsdŸrJºÓ9DDTq¯dDEŽø×Å=Â뫹Ys¨ÏÜ­±Ê$Þäàò0wv°*j}CÅn>ë!k£Š¶ë3ä´”ÁÌ£ c»ŸÙ`¾óÌqÔ•Šµe†³OêÛ½‚ã43UÚ릢ðèÜøžXâÒ@%¹iÆ@>Á^¾憟Žúó²'ƒz²tqåiéÔ8‚=Àù­›Ýnt‹|·¥u=2ÔTJ#ƒÝÎÀQwо(«+ušáEn.–­‘:ª¦Ÿ›ï¤¼*(Îc·ÎÁÇLc&Îð ETÞ0êZ¹ÃZh¬òÓT¿ëdª‹8?8]Ý[ÿhO›MÇ:ù"m?Læ‚íšÓŒAOÔ¬f¾\mõQVQÕOOPÁ†M …nùÀ çªØƒ½w×ü*5é¾ñqµV{êžyØ"í{É'.øÈ'¾3ÝfµL!ϦV¾¾Ð×¼ñÒž74 ;XOG6sŸÌ‘ôQÎÌýÎI[%ðNe>´ßœÖÏR#Ãq–ùïÜúïÖjo]‚®3¾ÁuÃ1:GÇ éÌòÆ€\}N:•Ñq‡ï”³ÒÃTèe-#ž2 ˜H#8Zýâþƒã„mꆮÝtªÓµ²H]Ul{¦¤–7¸;ãkwfàѸÛ#u…ô…-ª¶òÖ_*ª©hÓÏ=$ šFm†9ìåÌÃø!Å.%cÒ”úBÛmTòK˜_+b…/’7ÈâàíšdnÀóœàe{-êÓyŽgÚn4µ­§”Ã1†@ãÚH ŽÇ!}àç Ê¨ ƒ¢ÌÍ”8ä `“Œ|ºgÝv*£$­HqŸô?õµ¿úÞª¶6l®nËÉšÓ—7 ¤“þkmöø]”§ŽXq+(×3®Œd,áaÓÇÅŽ&ÐÕÕÉSSKGb§så?1ÓJ×do‚ØÉ‘걋øÝ/¯kC!waÑ=Ö·Úã±pêzË/øD»Miñ ¦L3GuÏšŠnq³šøœ@ëԹǾÇ‹°ZNN{ª¢""""""nˆˆzlˆˆˆˆˆˆˆ‰N¨ˆˆˆˆˆˆˆˆˆˆ˜BØô+øŒá4:ÿNŠë]D”:‚ÜÇ:ŽhÚH™¸É…ã;´>Gp£^Šâž¢°\b±ëIêìZŠÙe¶ó4.‘ñÇžaOTÀÖi]’{3–°%7x¯k×Éj®û¥¿RR€*)a¨CP7ÄÔïÿi±ŸVô=2r@7Írì€c¹DDDMѵ²0±ík† HÈ ö*$ñß‚÷ŽÞÄþNê:ky–¾¶®k~âÂç>ûQ‘ÌÏSŽmà?¬üNÓÍ|rEM|¦¦¾ˆ‡l¾=É1’@Ïbp{g%oÿr„z–ñ¡Ù«ø5_[O™u°ÒTnkrîV×3äcÉÇ«Z{()ÃWQ£uÕŸTÒ‡9Öú¦Læ´ÿY~6› i+ êÍGw¶Ô2¦Š¶Ï­èæ8dȯµ |Ð"Æ Ö—¿ÑCÄMô[÷/Yô—,š.¢9æ¸Ýë(©ád-Áhžo/ÎvÜ ú|^ž£&5§«ðNr1ÙsDî‡Ó+ øã•«†Ö×Úm/Šáªê[ËOJß´ÜÝ ÿu]òXŸ…~µ¿¹;\qžáq`¬"f[ œ•3÷ÌïÄÌl#fý[ŒI¦4æŸÒ6x­zjÇGk¢Œ´i¢ ÄãÕÇrI9'uªOuuãQÜïOg#®“U–ç82Hçãø«£€úšÍ¤¸¹`Ô÷ê'VÐ[¥–g@ÖµÎtžL‚2Þm²Ù žØÏe‘u¨â§ˆÝgú&ÓDù¨ápsh¡qe OGË!Ø»ûGsû lƒà—‡{W-’j[ícnº½”òyu1(9›‚!oW;Žs¾û¾l?³š%Ÿ^UÈAGocœFIq5wù/í"²ÁOªôv¢Ÿ[o¨¢sO@Ø$kÚG¹ûÿ ¢Hs'ÏU<~·Hxg©b›•· CÎ9~ï@÷ß»~².˜€ãÕr£ßŒ\¸©n¶^ô»é›~µFø¼Š‡ò6®|AÇf¸8góœ¢Ï |4q?Sj¨-·knš æ&¢á]Á[ו¼ÀÈIØ@9Î@ÝOŽ è±ÃÎYti­mÁÖèž×Ô6/,HçHç“˓ݎ½•Ù3ÙO–W±ŒcKžç; hrOm–âWˆþèÿ:––±ú†ãƞ݃Nq‡J~þcì¢Ç¼Kë}gæÑQTÿG­£›––Ý3ƒÞÀó&ÙÏêv­;|9¬[£õþªÓš¢–õb¼VAq€’Ù …ívr{]á‚v!l—ÚÝœEá­³U o»OP \<À†Í‹GöIö!Z|gðó¡õýeU¶šÅ©Âê{|°ù9pÌ•í;dã˜ccë®Ë¼W;w©µÜ¡’ž¶‚wÁhʆfE©èmº‚—~g†ýÒ Ç™€°€;r ú…%xiÇ®ë©"¤¥º:×rxÈ¢¸´D÷ᯱßGgÙe?dT!Cß¾¯ú‹YVëNËT—IŒµöʉDNd§ÒF÷R׸µÄzd7pßÂ÷kn´Ðj+,VªZøE[å«g;â?/0v ù»ØâxêIM˜¹OsLr¹¥§qÊÂF=öQ³ÂÅÏï%¸¸ÇLÙMLΔ&°†´ûelcÀ†šºéΉ®‰¼Ü]s¤ò¤Ì‚4œt9Ù–|æ-#áÇ_UÈuÿµN™ÉÂó¯÷Û6ž¶Ér¾])-ÔQ‚çMS(cvÀÏSì7Qï‰-´¥¡ÒRhÛd·Ùú©ÜiéÛîÑŽwþMÕEž)ñ³^k¹/—Ù>êNYCJß&™žÁƒw|Þ\}Ö<€UWT2–ž9§¨—᎘^÷Ÿ@ѹè³×ü#ñ+QRÓWÞªmšn–~WyuNtµMaê|¶ŒÙsìp¤?<(p¿MÒÓ´s껃ÇÅQZçGA!‘1À¾~"âBaÐÚGMh‹ ,ZVÓ ²ÞǺAns²÷c.sœKœN䞃Ñ{Ž8Xߊ<áÏ£­–õ§iaºU3ÿ¢´ŒU5ø¯.Œ€ÃQ'Pø5â]5­–{žž¸REŸ»Êú‡Á$íí–×ã›ÕG«ýªí§¯uV‹Ý¶¢Ýq¥—5<ìäsŽàö#pzr[„Ñf8ìzÑežøâFlôš¢¢Š6Š:öŠ˜pßG³\ßu'8_âÏI_™&±¡—OÖ“Ë÷ˆ‰š•ÿÚ8øÙò!À~ñRÓs·Ýèc¯µ×SWR¿ðÍO({Ô/¬àû”uÕÁ]$Ô³·š)˜èÞÞ™i#ò*/øtá&¾á§®7Ö2¾ÙqµÌçÝ)^]’º`á¹°æ»áÎàüÎT¥X»Åt‡_0êŒ Ÿi˜Ék5ùË\;ýÆW¹£/.ÓÚªÇ~Š0÷Û.TÕ¡¿½åÊ×ãþ-³A'Dôª""""""""'n¨©¿uQÑçuT.àý•q¾QxBÒ–ío£®Zí5d45ì ™Ô²ùr`8;à÷í¸Zßâþ™Õ:Q;Lê‰$|Ð0ýÞ ó'k·æ‰Ä Æ[Ôг¦ª{ˆ/ÀÜc*Ox××Xõ}N†©’yíU”¯¨¦ap-§™˜'œ€æç w÷%M,DPõXsÄ—m«bÇL®kÆ:ŸÙ÷PûÀÅèž.q Èê–T}Î/ Ì29üº©žSëî6ú©S54²SOd†VI†CÚF>Äl¢7|Ûªn1Tè=K%ºšIsSGso)¥û˜žÐ iÙ¯É8Ýûí'xw¥múEZô¦Z™¨­°ù1I;ƒžýÉ%Ä2I=¸s¾SÛüՇĞ.èŨ/‘ŠÆŒýÆ”yµ3»Gáõø°£'<`_«|ÚM lŠÉÈ•mlõ'Іo>¼ÿE5ž²¿jk£®»½}ʤïæUNérÉøFç`Ë˶R\o5ÐÐÚ¨ªîÒ“åSRÂée~qåcA'}RS„Þõ%ìAtâËú?C æ4¸}k†6ÄFsŽÎ=v¥— 8S¡¸qB)ôµ’*yÜÐ%­—õ•2‘Í»¤;þÑé¿Eãø¦¿9ÀQ_Mr–‚¹´­m°Ô˜¦chs HvÅç×b¢…~*ê»/,ÖH.•ÖËÝs)*hfœ¾<Èíåhqø^;‘Ôl{c`Ë5žÏ_uª4ôTòTJ»¹XÒã뀰^’ñeÃkÄÔÐ\i¯WÔ<´>x™,L8qsHzl³f•ÔvMUgŠó§n”×|¤†Í ²2:´Ž ôØà¬ÁÏ6ÝEª¦ÒzÒŠ -Á÷ 騪q y ŠL“ÊümÌ)>Šéñ)Àë/ìn©ŒEA«)!-·×’C^$C0vN2Òr22×k‹QXnÚsPVX¯TRQÜh¥1TÓÈ0æ80F#b#eÓ-U'—%DBÙ›Ï žÂ Î2ÓßÓeÂ)æŠ^fN7W—¸™«t=Ø×i›ÍU¶Sýh‹ŽA‚>8Ý–;®ÙFêPpçÆ\Ø©u¾iJë[ðNÝLúgîp;)ÃÞ"híyFgÓ7ºz·´fJwIãéÕ‡|n7éî®°sÁUØû¦UŸÆ«L—ÎjÛTI-EEž¤AÄùDnsÿjÕuKǘðÒ×t=±ê»ø^Ò>C·]ð¶¿ÃëÛu&†±jœ\mðTœHsØ Á%{ÉÙ;ª ´ÑUDCó@Î2ˆˆ©¶1ÙyúŠÃeÔV×ÛoöŠ ­Î]O[NÙ£$t<®dz¬Cxð¯Á›„‚Htýe°ç.Wš×oÜà>˜^Ö–ðñ 5x¡¼Úô²X'šº¢^Y‚×òºBÎ`@=6=0²£ÜTDOš..,œô' ©áîÎ2HØv?,«Viú]_§g±j U–ÊÀc«¤ª8þóÓ–¸ÚàA0B…š³Â'-× ã§jm7›tr¹‡Ô˜j%ap9®hhp'|lqÙ}\'࿈-®¨µ=«NÒÁ= ËdŽK¤^]T$|q–¸ ³Ñܮ؀Tæ³ÖIpµRÖËESC$ñºš¤,DÚì2=‰ ëDDNȃ Ln‹®¢ç†Hf`|R0±í=Ò0B„šžÏwðÓÆê;ݧϩÓ[IiÉÌ”®#öÙ€æžã÷‚š6+­¾ùg¤»Úªcª¢¬‰²Á4g!í##ëíÙ}¤êÇã t¯´Û­:†—–¢0MÂQH㌖8އ-;ï‚ ‡<:q‡õòÍ®}Ahæ"*ûd.“nÞdC.ŒþmÏuŒ-æúÛ›! Š½Õã–8a“ÌÎqŒŸe”FŠñ Wdý0í9¬Em<Áï{eÀ‘ æ™Ùª÷ðçâ:ñ¦nqÛu­Ö²ëa˜ %q’ZR?i¤î[êÕ8ì÷[m≕¶ºè+)ÞBðá¾ÿOªúÜCZ\z«ß:ƒúIÇAZ&‚háòiXè]ÌßÕÄÆ»^nlûåb±Õl/ì÷uaà<ÿzœ¾?Ó•?vo0>\|‘e¾ß9úû©“Øgê¹ uEĸsrçuËê¨H*q#Íðëâ:[ÞŽ»ÒÍn¸f®®Ø×`E Ëé¤`?j3Ôm±ïœ5gø¡©¨OÂ^ßñ)—{Å;i£å$|QÇ)Û¹8ö*ÉÓõV®»¿Rq‡[UIWQñKMC(’fºw‚Ö€9XÜc`Fáç4f€ ûž“ÓôvÞfòËPÖsTM¾Y+²÷Àí…uz§Q”ߺÆ^)* /‡ík3]Ê]lt]}Ígÿ)k%Ì qø±ŒwYçÀÓ¢ÿʃœ<Û*ù£¹[þY[ ¦ÞË⿊³i©4⦤3õpùçÓ'`} ÙE/:kVY8ù®«µÏn¯Þy£˜^f©/kÚ᳚y_¸Û#ÙK¬g ~Š…§¯ÓtæÇSŒ‰8›â‡Z&Ii?H›ÝɃþo!íÑÒ~÷îHîQâ§Š «Y%º±ºjÜïö6ǹ³1ìU8ÕO%§ºÎ±ÉH"¿Ö˜šik îtnáå#è¶7À=`uߴS%dô‚òìgï1~®S°æsK‡³‚°|[ðU¼E±3RX‡&¨µÄYa  æ1ïÙ>ø;tÂÞcÓꨨ@=@8õTkÒKZ=p¹".©¦‚K]ÔãeVLÇ çUXÞ»p[ë× w#m•U=ÕP«o‰Z6ͯ´uv˜½Ä]OTÐY+GÇ£vJÃÙÍ?˜È;¢6•Õº÷Ã>±›GêzCsÓ•r™iºˆçnÜÒÓ¼ì×î9ã=ðp2e— 8¥ø…euÓMWùí‰ÁµHÞI©ÜF@{{dgdŠºŽ:¨F~}Õq¾Äªw÷ù¨éâWÃu¿[š½W¢™¯T_58”÷g$¿÷%9?søºó !Âý{©¸sK¬cŽªJ†ÒFÆSÕu¥™“²)CÛŸÍs ã!™ $ÉÇ=K?†ëަžî¢sZÊwGg.ÃñË‚×5ÎÎv!¾»ÁÙå–yŸ4Ò>YdqsÞ÷ç8œ’IêJ£.Á[3ðqku§Ã¦•ŽxÃ&ªŽzÇLdK;ÜÂ}~Ýý1Û 04Œ¿UÈuÂâ÷rŒã9;ªÒKƢƺï޼2Ñît5úŽêÆ»•Ô¶ßõ™s‚[ð´Žà}–­ã¸±÷«'4Œ´Póysݦ{OÝÇ|ÈïÕÆìvîôà«—ƒ^­V øõ/«[ªu“ÏlR9Î¥†RsÎy·™ùý§í’N3‚$?M‰Màn¨NFÛªe£r@ߺ骪‚Ž’Zªºˆ`¦…†Ie•áŒcåÎ'`îTNñWÆš SÂËõ“E[§ºXÝS Âü湔͗¯lPŸö®ø2{¿pT0kˆxÎç¡ÊÞÚ2ܶËUׯâˆmïÿjŸíÛqßÕWcì¿UÃÉ„Íç†3ÌåäçgçôÎvT¬©¦£¥–®®¢*zxZd–Y^Æ4uqqØê°'>kÍzù©î™©-r¶Æ9O쿃¡øÉèĵÕ2Ìws†RÙo¬¹VÓ[­ôÕu•OC /|;µ£rz)/ÂïÚÆé|†£_ÉMc´ÆöºX ¨lÕ´;vSÊÎ`ÄI#=;)‡ÃnèîÙůIY©íñtšañÏ9õ’G|Nß¶p:Ëß»Z­wº'Q^-Ô7*Gä:ªvMÁkb5àÞ8y¤ëà«l±hž­Ñ¾zËDŽ¡©yvæHy\q¸ÁÈ·®ü2¾ÌÇS[õíd–ÇSºo¾[âºÇ póÉ/ë\æsïÍùÚÔº[Xh˜ %.·MeŸÌeOôN¶X fVˆÝ ¢˜–lv#pÜgrµÛu¤W º1Ïû½Câæte„ò’2Zwn‡p¶à‡‡’h®2ïp¤’šñ¨ÞÚʆɀæÀÜŠvã·Âç?}ÿXsè¯ß”M¸ð;[R uš¡ã'»YÌÞà-Wó0lzåO_³ÎXÿÐÝò0³PÈ÷7;€êZlmþù‚ü|Ylã¹¹²›ÚÙK_pæóDîoW|èBËßgnª§¨ÒÚ‹GËRÑQKYúBž&)óž˜hÛÝJìcâù…õ­ž£†þ,tÝêŽÌf¿Q {¦Š.X¥˜½îå(ÞBνHìH”öº†ÔÐÃ3C€{a;å¤d~j·: ¥Öë•-u CK&¦©‰²G#Og5ÛìT^⟃ÛÆyîœ;ºþ…¨‘üßp¬&JQø²á—³~]0ûb,ñ#ƒÜEÐ%Ójm-YMHÒq[NôäæFd7=ƒ¹O·U`€ó1Ù=vì½m檎xê!•ì|n® ´ú‚:–ráω¾!é6²šªéý!£gH®ÅÒ¿¦Ï™ú¸» ÙJŽxŠáþ·ä¤ž¹š~èí¾ï_ lo9# —ð’{ƒ¸ÙEöOÐüa«©Ž=YsšF9\\+ŽÃ—Ë)õ;•‚é‰k¹¶Áô[ð*Ch¨NÙª›½‚§pwÛªäÜòïÕU™©ïöM1ežõ¨n”–»u8Ì•20z ú“й; ¨Û¯|diz$::ÃUw{ZÚŠÇýÚ#¿`qß'áZw†:?¹èû\c”‰kw‡F=”©á°f½áÕŸU²@êøy¤‰Žæk k€?0®´DD(ˆˆ‹‰‘£9$Ô@üÕZC€- ƒÜ*’UçSÞ¨*kIK#§‘ŸŒ±§•¿^‹ì‘îiNw²êûãÂØå{ÆÅ­i8ùú}W&‡É—È|°zãŸã²íòã¦1ÝU¡¥¡Í9AÎUrªˆŠÃ㶦â7 .zqñÅ÷ÎO>Û3Ú?QRÍØàr1Ú}œTðù¯j¸mÅš »³IHéßo¼Dç`FÒîWãoÕ¸ô+d -sC˜AiŠåþIÕqǯð\^0Ì´òê°ÿx3o×ÐÍ|²˜(5+ lN|ñsA[9ÌÏ^ÁýGC‘²üFf¹Ñ43pïSÛª¬íed•¦sq¡ç—ž7…ìø0 vüC®BÇk“ç; iq;u·^ÚYcÐzzËnˆPZééƒ\N[É[ƒŸ’÷ÀÀܪ…cqsŠZW†–¶Tߪ‹ë'k%;Í>;û-ÏW¾ge 8±Ç-sÄêÓ`§ÃCVï" %¬=î©$ 5øÓ·ÃŒ{,…Á¯ WÃ`¼ñFi­´…ÁñÙ)dYo:Fþu»û‚¥æŸ³Úìj[5–ßOo·R3˧§¬c}€õ9$õ$’w+.t”3WWTCMKNÃ,ÓJðÖFÆŒ—8€º¶ô®þ›P¾ól¶ÕRØžìPÕU41ÕÍÉ̬fr";r—`»$ã&ëv^½Õ¶-¦ªu¢­e-?ŠWyc`ý§l?È£Ö›¤ÕÞ&çuÛSŠ­;ÃyÿÕm°ÉnÎi;¹ýKÀ¸mœ†î OŽ -¦ÅáÞ‚Éf·Cn·Ñ\éÛOOOú¸£Ü£ñ—œîI;¨$#çv¾ø AøæÿO.ÃK€²Ud†“Ž/m¾¸ëô[’Þ½•9ÚÈÝ#ÜZ q$`î°/¼Ph½!ÏoÓOT][–¹ÐL$NßñJ3ÎAÆÌÏÌ(oÅÎ2ëN"V_îï}Í ?«¥Œçb#â#³“¹Ü,qQW,®ææ#²àÎnBâp3’IR‚^µž¸ò.Zž)ô­…íçOûÝ@Üa‘Øï?@pS+†\áß^gÒºr+‹];Ý=AÛy<™CyAôWþ=1º¨ù§Ñçø•C³ºµ8¹ª"Ñ\4ÔZ©ÎÖê$ˆ€éHå¹í—–ªÖ' 4­O8¡fÓN¨™u®kj&üN Ýó?܆µ‹E ·ÑCodLd4Ñ6(Lc‘£ ;ä=W‡ÅºwUð³VÒÆ×>Il•mkà &`{-L5Û´¶Ê{}ž1ÔÅÂ+ÔòÇ+"žý'’çÊðØ!k‹GLdc˜uÆ?e[ßhåŒI§´Ž§¤šz™­ò¿»¼Æ·é˜ßù¬3à»Q ,-qšæÙ-ÒžlcÌfYÿçÁõ[Ù£ ñ‰§a»ðNçxLúý>æÜèŸ ~6=¿ Ô|!§™ÝviÆøY†r‡èËKY+&ˆPAåM|¬{ M--Ûq‚=z+”tÀÙW”lwÏÍÁÛe…8»á¯‡|Í1á-ÖóÂè`¼È#­!Ìæ„ócrr7?E#†ã¯ÕÀêUBwDDDDDDDECÐà¨qͲ©Œàc\.a6Tnq¿^ê©Û™Â""ñ5®’ÓzÒÈlº¦ÓOt 26_&là=½ ƒ¹è{•Žn^¸+]Xú§hæS¹ãâe5dñ0ÿ…¯Àù .ý)áǃºv°ÕÓèêZéˆ-âãTÀÁø$Ë>¤edûU¶ßj¦u5¶ŠžŽHé pF#g;Ž\îV€2NIõ$•õ¢""ëž;÷Nw.ÄDEÔúxœâð \i§ø®†RÒÑ?0ìÀWtmä`o\EÑu ¦¹Û§ ¬kÝì1È#£vÁÚA0T9âï†-E¤d›Rð²åU]o3>‰ó˜ëb;åÑÊ1ÏŒž¤w+ ¤î)éÛ¡¡­ÕÚÎÝ_Ó×\ª2Þã1ÈâÒ>„óROÃç‰#sš{ˆ7X&xÌi¹b?¹7FŒövÃÕIØ*$’LÁ ÑH™$Re®iz‚»ã¾)YŸVçùev5áÇ`ìz‘æ¹uTÏ·ðUTϲ‰~0¸QYYSÄ­ouEKþ+ݺeÒ€ûÄmw`|`nïÅ×9¯„Ž?ѾÝnÐZʽ‘=Z®S¿ sF ž„~¸õÀzË0«ÙSˆã·Ô.©;€Oe¯Ou±×ñƦ3<’KCG (a–6†6MŽ{ºG¨ð¯ içêŽ(é« Ïe]Òägàçyú5®+lq‘“€ÉÜ.yGòX›Ä/¬œ*µ¶˜ëu dEô”|à oO2]òÖg wq‡o‡|/â?ˆ AS«ï× ¨m5æ[½TDº¡¡ßÕÒ³¡k~&‚0Á‚7 …0xSÂ= ÃJ@Ý5gµÎg$×*œIU0î ÏAý–àl6Wè ']º Â·µîµÓ:Ìë¾§»Ó[é°ï(=ãÌÀg’6u{°:ƒ´ÜZ‹Äuá·­IKSfám åÔv²\ÇÞä!Hí±9$$m$ôt°ÒRÃðÆØâŠ6òµŒh4Ѐ¾[åÚ†Åd­¼]꣦¢£‰ÓO+ŽX7ïß·¹PÚÞû¿Š~5Zkit Œ²gBŒs|¢{Ë#ƒ²w! ã¢™Ô4t´0PPA--,L†"hk"c@ c@Ø,ãºÝ_[ÀʹáˆËKEWõÙñr‡зâÁrAZð/‘µ9Œœ´ü;)UöyYî/â5öòÚ(!´ýÞJ—ÀOë#cÓ8k‰Ágî*xˆáþ‰t´tµÌÔWh݃KC ,Œ÷ç› þ—7Cþ1ñû[ñÓÑÕÜm³H ¶‰îdNo¤‡¬Ÿ'mì°ÝEL’?ó_9æÆO¯R³ü<ñˆ¿v­‚ÚlÖ9™æ ­Á¼±½§§–ÏÅ&pp@åõ##3s„\áßi"}ž ½Ù¥®uÒá e˜< f<ŒD:þ÷Ü••¹I9!rº¯uLämüUq²¡ùºª‹_h~®u»AÙ4e4¤Kz¬uMKZá¼C\:àÈööeZŸg–ƒ‚¢¶÷Ä•¸>J'6†Ó;ŽC$s\jH¡®¼ÞŽxõS< °“yž'[nÐTS6vÃH÷>'òòÌÇ1ÛváÍ9ôßbµM da'×e±Oö÷Rx|·O‰1Yp¬¼Ý0%1ííú¿Ï+Þñ_¤]«ø ¨è¡…òVPÃúN•<ðüDÔ’ÎvêVº4Å]M²éIt·’ÚºY™WLᑉcp{z{´-±iÛµöÇCz·KæQ×Ó²¦c±íŽûŽÅr¾Û[v±Ü-rJø›YM%9‘Ÿ‰í-È÷ʰ|9]g½p®ÅQP)ã ðˆàxsYÉ+ÚHÈ nË&n©Nè„*c9ÇÕc/ð/‡üM¨‚®ýn–šáhûí ›Ï`ÀäqÁænzgeøƒàº²*8$ÐZ••µ,ûÄ7oÕŒŽNG1¤g;¶TYÕÚ^ý¥ï6ÍAi«·TÁ3¡pš1®p;ò’0áŒGPAî¼1œs íÝH üwºðæÐuíu~›’ny©¿ÚCŸÅ$g÷ºe§cŽÇu°m7{µj-5âË_uS⚇=6èGB:ƒ±^Š"""&FqÑP‘è‡=ϧªª¨ˆˆˆˆˆˆ‰ìЀޛ ;tUDBˆˆˆ‰‘œ"*g檊Ž8]G$ä ×&‚\:l»ì2ˆˆˆ™ÆwôB;V ãW !ÕÖybކšóI{(êäòåŒàíøË qåõ8Qs^øyÔ´0ºç¤).b>b?DÜ¢å¨g-ŠAðËÓn…ݲº81ÇÝUà öØ.ðÕÔZáÈ–Ó\Ó<²á˜÷ê0Fçe/xaÆþkÙ £·]~áv ¶ß^<©\}OÃ!öi'KvUëÕ22ªyãφ‹.°«¨Ôº*J[£{Œ“Ææ‘K\íÏÆõo'öÚ{‚NU‰Â¾4k~^©tmVQü0ÓÕNÃ$±ls1ã"¦!‘øIplã•KÚi¢©§Ž¢žVK ¬ì9kšFA¸!v¨zw+†ØòFpµâÊá%ÏŒiåg”Hkq‚G3°NÛ“²ÃÌcžì4d©àFÆËhj‰ÿèE¶ª¼‚2 ˆlÿ¯“ô[†ª–J¹)cƒãc\ oM§\¨åâÅ«IMS§49Šé{á“׸ÒÓ»©kwýcÇÙêH aÿ œ8«ã'îZ㈵—k=)/žz—žJêÒ[Ëí5­É-ÈÇ zÒÁ4ÓÓÅ0ÄÐÈ㡬c@4°m…ÛÛeUMñ×uø÷â;OèMfÓ¢žûŵ çÿW£Àÿháøœ|äo’6p“…:»7è8ÆJŠÓf$>‚Û&XkpA õPwÀÁ^›™{IM%,T´ÐÇ<1¶8¢¡­c0ÖØ1…Úâ2pê}ñCÅ;§µµ t#LöÆ\ na9¸Tä´¸öòY’GȸöÄ®àw¨8aú-/G#g¨5õA¸ûÍKÀç~; ´Ík{«ämÙyº–ÏlÔ6*Ûæ–:»ut.‚¢ô{]±éÐ÷náEn(pc÷ lSÜ5,÷úŠª˜ÞÚ*WT<–òþ­¡ Üç™û;ô8'ˆtÑÒœÒö¹¢•2QŠªŽAø¤˜ù„ŸS‡ôY~ëÏt¹éO•W Ÿ–ë6³ºGi§€1ÏÙ´ÍŒ<¼| ‰)ä¤çç×û’Ô· é‰ÁŠwÆ@ßð¸ò[4ð¿m¯º&—3žÖÊœã>q2çüùÏ~«%mÌNË[>&¸} x±WCE•e¹ƒ_k lq½ÇšýÇduÎ Ou-ükh5W ¢µò†TØÜ)\G0·™§®IÜç賞sì=U™Â}5”Ó¢¡¢eMUTþSj<ÑñÔHæœãrA·§eyç¦A€o±T>ÛFU·æº+ji¨©d¨ª©†žÆ_$²5£¦äì;,;ãV(á·UT¾d–ÒˆdsœÀú¸îRw‹Z£»ïŸEé[a|‡H×eíïÊw[ðw¨]|áÔŒu¶–•°ÊÒÙ!­d¾iä %ÑóD~„z…›û¢{"""""""""e0¨2ƒ“ôT»~¡rÆÇeTDD^%ëTYíUÐ[ê*Øêê‡rÃKÇ,‡Ù£'w8/b'¹ìs 2:¡sßÑS' (2}B©v1±Âª".¹Hé‘ù®ü-9ö\ã>øø{dn»;¢Æ:šçQ§ø´ji(+*Ÿq·FÙËg\l‰Î %®;é\ ƒÑd+%Ƶ¦šåN×6:ˆÃÃ]Õ¾ ûƒ²ûU]5=\‚ªMºµã#çó÷X¿ŠÜ(³ê{{›-Žšðyj]úà9y~ ¸ësìTiÕ¾e&JÍtšŠã,ÌÓ×i„sä4;ÈO7?0øy€ý¡…’<0qΨֻ‡|M¬–ŽóO(¦¤¨¸2gI‡ Ä·Âç‹ d’3(ºö*ª=U@CœmÕSç…çjŸP[ÍêÝO]MÌÖLÌò8tsOV¸vpÁ—£C3¶ç%`:!\]Ð9Àànp«¸Ø.sñö˳KjÄüá¥íq¸s³víø\:Œàî¬ú8Yˆ·$•-¾Îj 3wÖ÷7@W =IŸ‰Œ‘Ó¹í3dÿu}þ-xå&ž¸ÝtF’­×Mð\«ZáŠ_€4ÓÃèìd¼ö; óˆÝÁ>ßx·®éìT’*8ñ%·¶’F]¹q;5½Iö›h3eÑÚb‡Méê&QÛhcòồ¾Kœz—8’I=I+ÙB~X÷^&±ÕzHYd¼jKµ-¶€éž¤ g•ê÷Íh$¨qÅÏš»_Ü¿¢œ<£¸ÐÓV¹±A39®]È%™äu =˺«ûÃ÷†kT”Ú«ŠCq»‚%‚ÑÌ%§¥wPe=%¶íÚê%01EÈŒ5¸½%’‡ýiÚ—²ç_79âÝÐÂÿÃÆüòu nÞ ÙðÁ葺»SÒƒª®1~ª'·ÿ¡´çý˜úÇ Þ{lÑŒ;šB€}WËx¸RZm—Jù¼š:8QQ/!w$lisŽ$à°Q;Œž. m ¨8mA(’Vë¥Â.^BGû(²r}ß jmMyÔW‰î—«…MƶbL“ÔH^÷{oÐ{ ‚òÄrË3aŽ|Ž8kÞgõYçƒÞ¸…¬ÚÊÛä'IZÉ̸Bï¼È3¿$8|ßÊ:c*ZðËï ´#¡¨§²6órq[u"w‡c«YŽFûa¹«.26µ 5¬ƒ@èUåÛl*òûœ*·m¶\¾AUtÖTÓÑÓKUU4pA ’È÷rµ$“ذͧ‰Ðq_ˆº;Fš‰tí¶'~•»² a¨æžS ÆÇ|lø@æÍ1±BÈ¢`cÐÖ·ÐÌðšÖ޵ÐÚÖëâ*köÇqmÎ÷¨æ¹Ô¤²x1q™„|.ŒF $Óœ`©ËÄŽ6ðÛ‡²Éo¼_c’á D‹u<ù†0oÃ9Ø<·`½Žk)8ën°u(YrtÏŠœ<¸ÇesOWa œm¾Ë x‹­¤·q ‡ºŽ®¡ì£¦¾½¢7”ùÕ“$„¸vi~ãç©!={œÝQtkälœµ“æaÍwÆrF:ÿÚ¶sÂY ÓüÑÞêèíΊÉEtÕ k Ä .ÁÎ3²ºhïvJÉ›%êÝS#ÀådU,{òî¬/ü*¥â·§´4ÅOz¤.žÓU <±ËÝŽ#ö)ôØàã )xNµqSJñ¥¶ K=E©íqý-Æ#‚XX~&‡†8s’Ç ‰hß ‘Ùy:^Ák¦þYÄ{Á vI9ß×=×®žª™öCœm…Aœt@1·ù(áãêã¨hxWGMokB×ÖŠ{£°Òs³ânû็qé¿P¼]1YQÄ?WŠ{•G›=²ÕS{ÄE üèÇ~HØ=ûõ* ¶<œÂw |pχ:¼Ò{Åéï44[¤¸Q»’njlEÊý± -czƒŒàžt†ŽÓzI• Ó–˜m¬¨-/dYÁå ‰Ûÿ甆""›¢"""""""""""""Çp~h2>IÊ Î0S벨Ü*¢"ÇücÖãKÚÍ#Ïéãæn:´†ãÕÎ ãºzl¾. èúÛ]õ ø™¯w‚àöÿÑãÅ­ÎüÎ9.'¯Äe’šÌ&;ôTqÀëºèظŸUañï[ ÂÛæ£lÂ:–S˜(‡wTÉð³u»è±‡­a©µu·TO©uUÙðÉJÚxªfç|Må3±Ø8à…I4DDCžÈ±×ìP](©çæÕ7–&H6sc23Ÿ.ßáü;ÓèàÙ•Ú^J^fóÓTDzÀ>,8>¼§þ˜éIZ¢ÝHXiÈÚãwóul g•Û‚pÓñg¼¹êÎMfÔ«Péé…%[*£s&tdf7<;|ìæ“ý…šûªýQ{¢* áTåpvûdœ­Yq¶Zi¸¡~¨¡<ÑyíŒü8%ìhûy¥YNv»»aeqZ³‡¼2Ô–M<ÓOz¿UſׇàÁNÈÈÃç.s·Î;nr¯$᣹;àd’pãC齦)ôö˜·ÇKGïÀ2Îþï‘Ý\ã¿Ë ÀÀWKvÛ! +q÷ÖPHÄw-I39©èC¾èùˆü-îWvÀÜD5`âˆýk÷Ùëe}$R«/Æ5 1’ØØæw£Ü‚âHš|"á>á°Óéë=lŒªçRCêj|»³²Üe}‡üÖ(Ô^!x]aÕu~¾ñX'¦•ÐTM²Cƒ¨.h%Øé–‚=×Aâ#…–ý7[s ÔÔ×*˜iÝ$QÅ#e™øø[‡4c''¨ÍÁk—*5ø©ÅíiîÓÕ›… ®žŽ¦q¼î ’gG›[ðÆÔžÁH©¼Oðr9\Øõ |»d½–š;íñ0ßÇ窃Ŀk9ZÝY<v6žÕVÐ3êï(´|ò¯?¬tFµ¶ËŸPY¯4Ó±ÑK'kËšá‚×0ï‚20Fê=ñËÂΗ¹TZÛÃ߸éëehlôõwù& |nŠ"\á±å ÇÒ )â¸Ï&¬Ö®š‘³ vÊ_-óDÉ{ŸžG‘€Œg'8;‡Ü1К(Û¥4ÕÍÈ5EžmC²7̮˷uW›Xs“¿¿uÈ7׿L‘Ø]º/žåYGn¢šºº¢ZH_4Ò¸5‘´u$žŠÚá×ôSÞì|æÅT”Ôµ/ØÖ:7r¾FŽÑ‡l ÝÄ€šîú/[j»ŒÓóßuÂ:*(Gâqø¤wf1½\ãØµ>®â'‰}\í%£éç³é¤®I?«Š<ä>¡Àáòm´M8Ï~®R³…z ÁÃM¦´ô%°D9æ¨~ µ2ŸÅ,‡»äØ+¨ì7?Uäj½O`Ò–—Ýu%â’ÕFÓýeD¼Ç÷Z:¹ÞÀT[⿌M$´zÕ„VÜn-%ÏþÓ!åï9=Ú Õ<|âF¨£™µú®àȦikà¦-›‚0= î±%MLÕ2¹ÒHrù q'ÕJOV®'·QPÞ´Í+‘|£¸ÕUÌ<žFr½áŒÏ1~KC\ÑŒä8Èþ/«ÉÒóURµòÏc¾ÍC.F>õD%h÷þ¶1•ª¸©®¼Me»EÆË¶åOKv¤ªtœ­§¥ªçt~q;å¾[Á-Ï/Lœ,áÇÞk;Ÿ ´|¶Óxºi‹3(k-®œ–LÖ ‡S‚ÖµÏf\Ü–µÏhopˆ7]¬uÂ;•º¶ÓY  –TÓº cp鱃·ðY;‡ž!8‘¥ØÈ)µµ´Ãý…pûÃHôßúœt‡ŒZgµ±ê$ý2Oj¨'°l2>¾bÌš[Ž|5Ô”ËhÔ0ýî*wÍ÷ ¦šiÝÊÒâÖ‡€vêÒGº¾´Ì†ÁCBæ:žš(ÜÒì¸ÁœžçÝz\Àœt\³ºwT*ª›‘è°§ªVÔxmÔÒ¹¹u<”“GÛ”ýæ6çòqV_ÙíQÃ7ÛeD1KWÉZæ¼d=’CAT2â>š¨Ñ¨´‘Ox§ñ½Â*ˆßËÌÉ:îÐAìF{œÜLw3A ·#¡\Ñ®ÆA힥k Ä YøÁ«(KØþ[¤ò€ÐG(‘æ@7þ+ÊZÖ»™Ä¿× ¦‚9ªê› Q¾IàF\÷€Ð=IÀ[7ð×à .ðÞ’Øø#7ºÖ¶¦ï>ÅΜ´~¬;ä`ø@éøW”@Û öUø±¾ÀÞ$xýmÐv¿Ñfx+õ [dk$Áñц¹Ñ¹Îõxs\qÕ¹;uÜáUû޾ªû¨jk›§â¨sî—’e­›baÇö°G3¿dcÙO«žÑ§,ôö{%ºžßo¦`d4ôí k˹÷;žëåÖÚ‚)£îºš¢Šººe3ê$§¥ t¯kFO($ †O^ƒè¢§|VËz¶Ó[8yC]lª’VùÒVS2J’C˜æˆDr8H-9È;`…áóŒ×›'ô–-7ñT½Òý΢²8ªÞIyc°Iè\ì¼Ú_q­©û°ÑSÀцºIëéØÁœož}ÀödàãVTH°Õ¶ËU0hsa¶±õS;Õ¥Ï k>ce‹„^Іýþ]Cyv>6Õ\<¶8ï¢k0=³éõ¸†^ ¼¶hÎ@͹UÐoŸ3®ËÀ»xQáƒÜꚦ¦²š\×ÁrkÛßõ¬q|ÇNÊ+ðñÚÃWx‚·Z4F¨7›UU_èK•âG¹‚ž&¼µîø\[ÌÐ6 êᲑ— OâÇKË+«ôm“RS -M˜;l‚‘Éù·ºóeñgz°ÎÚcº«lì$Ï}d´ç9íàv/ú…s[<]pö¥Ílö-ON1’ñ<Œ:blžý»/j—Å7 ¥æók¯8v}²CÿW+ç¬ñ[ˆ tM}¬#8dVâ×;†G4~eZ‡Æ %\Í·è]q¸VÊ9cûôƒ¯#oÔÁæñµwYxuÅÎ4TÒܸÉrvŸÓ1J$nž¦g•%Pnv‡-¤“»ËŸ±nARVÑn¡³Ûií¶ÊXhèicÁ-ådl`Æþ øÕ`áM”‰y+µD|ÔVî|lN<Éü,û¸Œä`Mî#ø‡¾E­8]WeÓ“KO O9 c³åÇë#²çvÎr%¶ŽÓV-§©tþœ·Cn·S7Ãêq»œz¹Ç»‰$®Z›Réí1o}n¢¼ÐÛ)Ú3ÍS0nFq°''r:(ßÅoöº8f¡áõ¹Õ•„\n–Bßí2,‡»Û›—~Ä(‘¯¸…ª5­ÔÜ5âªáR_ð—»àŒ¡Œ4{­™ikj©jjc§–XiyLò1…͈8òŽcÐd{•zxxÒÍgÅí7¦ïÒ=–Úú™8d¦786¼48n ‹ÛÕK‰áðÁÃyK£$Òtò_|ècs磒´@ùyy ß) ~&ôÎ3ÑHÚ *J 6QÛé)èé¡ÈdD#crI8hØnIú¨ûâÞÖaá¾½®kaæ´Ü+zÌavwßàŽ%‹¼(q9×-m¢ôäôïTVÚ›|• ~[58Kp?‡ËQòé¾fÖ1ïî ù.¶«eÚœSÝ­´wAÈeT • üœ ޼kðéÃ=Qª¡¤ÓwŠ=«+`}LT0Ä =c~'y#§¶XGsÊTL⟠5ï k\ÍSh{iþH®®2RM>Ž >ÊÆòD.~K,ð÷Ä_4› §¦Ô2UÑÆ@µìûÄ|¿º3ñ4|œ|Ñ^1¨å‰ŒÕºVF»öê-3Ìqÿª”ŒvÿhVqÐЭ mú²ÑÄ*XÏÝ׳j#i1¸œut`þXgÃÞ°+‹ºnúfò©â­d5d“»Ëú¹ ð×—cÕ¡m'²HÚøä5À朂B 找Qt@ˆˆˆˆˆˆˆˆˆz.N䜠ýW!7!Pd|¾J§8Ù:w= ª""§0æåÎꨈˆ¨ã…ÒK½ŽêÛâ6­·è!uÔw Øh)Ÿ0ç8F3ܹØ UZžûqÔ7ªëÝÊ_6®áU,ó¿÷¤{¹òüKÊp qê6)ùà Z¶ùÃzÝ7W[,× EFCâìS¹­l|¹èk†–i$‘¾;çêk ŸRØêl—ëu5ÊÛTf¦œÌxò €Aê(Gâ3ÃׇÔòê=uÛNFç>ª’FóÏn`Ü88ÉÉßh9ܯ«Ã/ˆk¶ž¿RiÍer–¿MUrÅMCùä¡y 5ÁçwEÙÀôÈ#¡œms\Ö¹®t!rÝ]LmžžHçÈÒÂZpFF6PÇ‹õ5Z[Šp^ª0ûå#ÀåK)sàÛa8œç8,äã&^ií¦ÓVëýµÎu%};'‹™¼®hpÝ®œAˆ+Ö ôTUKØöMæ°å„~±˜ëèGü»ý7íiËA9誈ˆ…ôß§¢×ÿ 'è®7¾àÂnÖè*¹[Ð9¼Ñ;·_Õ‚£Å^>ê]ù€Ççÿ%˜<iz-QÇ»p¸ÆÉi­4òÜÌO$¾>VÇÐŽ{ßðî1•² ÐI ÷è¹s€*;x‹ñgÒô7£«Å~ pu<µo Æ ƒ‡âŽQÐñឰߵΧ§°Ø©%¸]*äsþ,ò°—I#ÿe£9.>¾¥l+Ãw ªøYÃH´ÍUÍ•ÕòÕIYY4mq„Hð$YÁå­ÜÎNp2Qc°\@Ü•rDø¤Ž9áÊZFC†0Aöì¼=;¢4Žªž®Å¦,–Ú‰ät’MMDÆ=î'$—ž¾êàäõܪàÈS”äzcªäFzª1ºÄ-õÄ:#‚——µíûýâ7[(™êdiw_Ùg1Ï®qû:tÃëø…}Õ’syVŠÓE¶Î’w“cwûÁL½}«¬KO©5-wÝ-ð>8ß#X\KžàÐFçsºOeì\((®T úJjÚ|óysÄÙvÆpr:ù«Qp+„Wé]-Ã@Ú+ðKèÚêGó„µ[xXàëœâÛ-Ò>n·yþí—â½O†¾ Û¦lÃE²­ã¡­­žvð¹å¿Ád]1¤´Æ˜€A§týªÓ"Ž‘‘scÔ´dýW±É*Èâæ®¸éí?SM¥©sÕ•j·ùnÊìÌCNÍ“ÌpÑÈX“‡Ü ¶Øn£‰\rÔ”WE#¼ï*²vŠ*GŒã%çõ¯hÆ:5»€—©ÄOü;ÓFJ[¨ÕÌۧɦåpÜ{±®QÇ[ø§âf¢|Ôô7 {#ò²>WÛ2»/æ­åÑa›­úñw­’ªá]W]Rüþ²i+É8îâOº÷´Ÿ ¸¬(…vœÒ‹…+ŸÈ*,EÙÁÎÀØõôRS@x/£dtUšçVTÉ#£¨·Û"l|’|$7Îqw0$4g;óõã…:~Ýxsf³QÚmw 3ò¢æ-—¬s8ŸŠG1á®Ë‰' \mŠ÷ µð† MCz°\6)l±»bîž ÷\Z»TÒkjVS2šžåz¡‘ð¹ÁÁ šàNw}–Îqñ8޹ß*8øñ¾ Oj¨[ l÷Ûœ4Á¼ø&(¿Xqê2Ñþ÷È(¥á1áüx°Q9¬&´OJÙ¿”_ Ç09#·Ílðdv‹å{«Åk9"ôgÆÿ0µñ»¶ÊCùŒz¼eêYtwˆžêhe1›u3'“L_y"FüœÂæŸbT¹ª¤†²žZZ¨!ª¦—gÅ3Øñׂyão‡.êIú"ÔtÅÝôÎ|SÛ™ËLdóÈÚøé0yyNßEx½À>!pÞ¾G×Z¥»ZÌwKtN’`ŸŒ˜Èç˜cЕŒ¢Áð¿¾F:®økg§på{ÁæØç¦ë#èÎ4q Iº&Úu]Ê(X¨–_:ß°üŽË?ðëÆÞæSk=¬È®ÔyѰÞAõ$<{5H- Åþë#6MMFj¤8mIò'ÎqŽGã'å•}ýŸã…Ž|L8­Ë£2ÿ找M¶?N¿E‚þÍǃeÖ±sᦌòŽ˜ägø) Æ­GÄn^4•CblµPQÍ& –ïò2@ænZ\;­XMMQCt’–² )êiå1MÇ+£{Ò;Gð[ ð{¯¶àõUºK”Š ¾bKœÌoÉõnÍ¥fo檈3ꈈz""""}QQÝ7Lã8UDDDDDDDD9ÆÊƒ=2¨®3ê«D; †U9¶ù¦IÎ1•VôUEG¹¬isÜÑÔ“€‘yânŸ¤ÔçK[D÷{Óatϧ¦–6·‰çl’æ€w#¢»­o¬–ÛM%Æà«|MtñFþvÆò7hwpÙî¾0QD=:®ñ‘ù.’HôÉ8 øÿâu·*-j¸‰¡¥y¬ºÞK|ìrÇ þàq2ñÜ(”Æ—84 ’v ÝÕzjñdÚ»´´÷jQYB÷Œ ¡$€áìzüˆ=Õóá{ˆÏá§éo3ºGZªZi.Q7©…Äp;–œ8|ˆî¶kCWm,5t“2zjˆÛ,20å¯c†ZAô ¯¡§#…I¢ŽV9’Æ×±í-{2Áw [ž'xnîñ*¦ßCNábºµÕV—³]ñÅîXN7ß”´©WàÉlÖ<«œäym>ÿÉI¾ðK†:ôu]-Hû…!.ŠáX<êâOÅÌzð0ÈÁ­cCXփРù!åí·¶ë‰Ý™ /øÕàÄÚŽ„ñ#LS6K­9zV4óÖ@ÜrÈÌ~Üc9øšzŽP ¶ÖýÎùMpÝ –Mðõ!®oÉm·Kjk>©Ó”ú‚ÅTʺ¦s1ÍµÝ \;8ˆQKí¾[ÝgÓ:t=¯¸ÃU%C™Ï»#òÆå¾Ž/9ý‡l°ŸƒYc§ñ¤å‘Íh|ÓÄ2ÎmÝ€|Žý{-˜À$€žVŒŸP{íý"iP@ ÙÞ »ÿ\TÇá¥c.;ÓuÑÍç¶{U3üÌç›17%z—ku5Êã©i")£˜ýøÞÃôsZq칌r‘¶û|þŠÑÖœ0áþ°¦0êMh®Éæ2ýÜE7NÒGÊñ×Õ`>"x3ÓµþmN†ÔuVi°\Ê+ƒ~ñOžÍ HÁžçœ¨ß®¸ÄýçΑ¸KNÞ•T ûÔ'=2Y’> ,xæÉ\°Iâ’<‡1í-p;ìAÜv\Yq¬…Ü͑٠ƒŒéî²? x÷ÄM QLmÚ‚ª¢Š'7ž‚±Æjy:·”îÜú´ƒî§µõ£\-–åWhŠªÄÔ7+kçS–œœÊöžàwã+ÂðéÁ™¸G©5—“_ e–é4/¶üèãiêäÏv󑳺àg3¸Cºç¢×׎Í4·£¥¥lvýI © àT³ ›êrןï_ö‹GqÖúù÷Ê¢sŽH߉Ç“‘ƒÌÞ‡ñž˜ßa ‚2ʪ™ß ¨Pœ&þª¨ˆ‰°©É nS9U7DDDDDDDT¯D˜UT7ÂàöÈ'òAÌ0‘¿§Uب÷6>‹ÀÖZ®Õ¥lî¹Ýêb¦‹<‘‡¿•ߺÑÜÿ!ºƒ\Yã¬×Úâ:öáKn3OLÉ€`Ü|nåhÎ7Æ{zÖPðÕU¼X¸Ô:ªž¦©ÐÓÆÇ½™•œÒÌZvÀ%Ñ4õÉÊZ¢""!ÇUÔò3‚B·8ª)4n‡»êz¶>HmÐ þW=Ä€Ö‚{’@Z¥Õ5µ÷yê*g’ie{¤{Þîg8“Ü÷+íáî­Õ:¶Ùa· Õ\'eÛ¢"",u¬øOl»‰çÓ—ËÖ¯åòÏe«| •Ç©|mpi'®Fw9^dž:þËf’}ŽO5Ö6󯊮‚?cõ­w—ŸQ•ÛâÃ‰Ö ¼ÖËõ‚yédtUPÔÐÉí{]‡0òÈHÜnÓŒ,¹Ã?:>ûTººŠm=ZZça3Ò¸ãs9š=ˆ?2³ž˜ÕzkSÁæéÛõ¶æÐÎr)ª÷4tÍ-ú€½¥BŒßhURp®Áp!Æj{ëbÏ`É)æ'?âŠ\K]S–€;,µáZ¸ÛxÍ£žÐÎynl‡.ÎÞfXqƒ×Oî2kª.pòå©êù,#Ê£„Ÿëª³?‰>À­qYmú‡ˆÜB¥´A7Ÿx½Öüun9œyŸ+½€$ýØ— xi¢økg¥¥°Xè›^Æ6'Üd…®«©yß'âÁ$žP@ÀdÖ\\@Üžèâ '.ÈOü×&·|»sü—$÷T=zd*oŸòU#®êÖâά‡Cðâûª¥å.·Ñ¾H˜Fy¥#·êâ¾ü1èJž)ñ®˜^bûí¶’G]/”’%o>C î^òœÞ‹e| ï×*)}£äÿB´”=ZëœÇÛ"-¿šÍ^k]À 3åläYᇘtÄmä úrãè²)ÎWËs¸ÑZèe®¸ÕÓÑÒBÞigžAl¤“€£ç¼Xè½;ÍI¤é$Ô•À–™œã+=ùˆ.^€cÜ(©Å><ñ\Êö]o’ÃBâKmô'Ȧhì™ýãs½–5´Ò]ou±ÐÛ(ë.5ÒŸ‚ h],ù5 •xsá#‰zŽhê5©t­·sªœ&¨Æzˆ˜zû9ÍR§‡8Y£hbiê}ErrO[w`¨œä‘ ³0vn@$œ“–é †š”ÔÐ2#¬Ž6µ£Ð° ´4z.MtUóŒz.Øt\\7;gæ¨{‡¸ßø-Wx‹¶Ãjãž³¢¦¤Š–ž;¼Æ8¢g+×;˜ÀaÝÈ~øÏpáµWÕtÍ|´òdˆHfcð¸¾Ä "Éñ«$Ö¼B©¾–bžøéœð±Ü­# zéøT‰¬ñ¢ÞI ý á*L-˜‚1I÷\ÈØz(IöÅôÃGÌúé-Õ {@èÑ#KOæO䤅kù¨ðÕ£îUÎЉôä€ ω½?²À®=!Ä:-a­/v;$Eô–"#¬«sšCæ$€ÆAŒçä¯3Øûo²¨ €AGåüÐg $oÙZÚó‡Z\ÄÖêÍ/lº=­!³I,ͳeioAЬ­¼h›„“O¥õ ÚÆ^שçkj¡cûNËós¿e…ë|ñn*Ù §~Ÿ©†?êçmqh”uØä}@W&½³ñÃgm‹s[ÒYj¯»}9æþS—‘ðÆAi ââ1Ñ[ÖÁ’HÞ`9ƒ„Œi~àG@µáË‚·[²;|×y] ² |Ð44‰ZZìµ®.x9ìå%8'ÁÛN‚&ï9’¦ý3\ÙgóÈÆ¸äµ­Îùç ôYPlcÿ5Lí¶ût ,xøÖ ¤²Z4dNÔ;ïõtã >,H؉#°‘„ã¹ÑAú¶:z—;ÔÿÍL_z¹Ý5ýl½”ÐP6X²æ˜ùùšOMÝÈ?²à¥6´°Ñê#vÓUä}ÖéG-,Ž-,çiÀ²ÒAà-OßíU¶[Õ}†âÆÃ_o¨}%S²$os3ßpw^Ï 5mÏEëN¨´< »}C$leå­•ˆý—4¹§æ¶›¤¯ÔŸLÛu¥üôWfT@HÁ pθÜp½p^§ ‡ß-Ôñǹ4þ©G²Qµ¶{«ÚË‹bf=^ø‘Àtlƒ©ýþ§.÷üqdQÌxk~«Ä¼¾Ë,…¡±¼ä¾Nøq9o]ù‡pØ*®¹ZDZ̑­s!Í# B ]_ mzÓè]WK4¥þ9á´Õ²N‘KŸ+â;óÄâs×ô!JŸ5—*-5WÃëóüËÆ‘–÷Ì2M)`},£ ãÃOö˜å“Ñ4daüQ¯ü;úû&Ïž‡÷p¹"/VÙíwÚn½éÚ[å0“É©¦†xùÆpK%ÛoQºÄ÷Âÿ µ,3UZ¨j4…ÉÅÏÛœ[9ÀüÇÊ ü,äÏNe„/¾x½¤ª…ãGÞh/¦Þe<Ô5N£­ˆdà°‘]ü!ñhè©¢³ñ&ÕRjiÇ“-Æ–0$/nÇÍ„ãÏRß}‚Ï:{Œ¼0¿ÔÓÒÛu•¸ÔT9¬Ž‹¡sœNÍøÀß;cÕZ~5è ­ðï–VIG=D{gï1°Ÿ÷^å®) i›.=º|Šº8}x“Oêë=âžWÄú ÈêXæœc•Ã?Áf?|Fþ˜qXmµbK…†8Ë g©~ ’du°zaÄ~"¯:¨}}o®´Í¢'ÑYüÆî÷4Íôƒ{žaÙL F:P9ÎqíþKè_5cú0|ÊåNЃÊï²!TOeB@ÏE ~Ð~ ²J›gh*Hà\.¡Žý§ C½ÃKžAý攼ðþMÂî—*vÇuÔ’6á/Á‡²Ÿ”#q?¶ ¤vYß$œTVûGØßôy¥¥ÈeÝÌ×0»'øÍ{ž8™£´…ÝU«/QQ>Xª„00%—–ªa³FOA×a•‘ÄÏa’º‡Ö8ÚÐpêÛ«I$m»bc†;þ#é²\@â–³×u¦«Sjë‡)掿–ÏO‚&á8îOrW¿¢øÅ{PÁC¤ë¨idß{¹ÆêXÛp\2áýÐW½áöÍ_ÇúÝ-zš+µŽÀÉå¸>HȪù"kñ‚‘Àï‚ZÇ-€iM+§´¥£Óv]šÀs²†•‘s0 ‹F\}ÎI^Ó[¹$ïë•^\ATè9@ÉUö$Ÿ‘Uù•BÜœvÙUá½Î=W[¶nØÀôIq€FOù-ixÇ€ÒxŽÕѵŒºh%øO^zxŸŸu!8ÃẓYiÚ}W¢£ý¨æ¡§’zgL~íVï)¹üYåMÁÁî3º‡¼BÓÚ‡I^ݦõ,”ÕTD“‰,Á®<§¡ê3Žêæð稭z{Œºfùz–Jz §K[XÖµ¤þö  Î`ÇB\:­dx’Ї‡\\»Ú#‡Ë ©•ÕÖîVá¿w’6ß•ÜÍÿ ɾø¦í3ªŸ¢+éß-¾ý0’9Z>*yÚ ŽÙ,- ‡ŽêvüÕ~¨ˆˆˆˆˆ„"*oŸeMÁÇe]Žê™ô#8ú*·»5TDDDDDDDDD\ G6Oª·µ¶…ÑúÐÐÿJôí¾ñ÷—Òýê.,»—›Ç•¹c½øbŽ£†ÛQ´1Œc@kZÀÐ.Јˆ‰„]yqqïEÆW çr·¹ÎËY>!µ„Úߊ×ËкŸïEÀ‚!ÊÌ|÷q÷q*ijR:¾ïGH"55Óµäd7ܹDZ+i+Òôz3‡v-1E – }#Yæ–òù¯$ºG‘عåÎú«Àga±u¼è#f×ôzê‚.Z=AŠ«ðUDÐ3íÍiùµÇºŒ<ÅièG¢Í|ñ­¸ohŠËDê+¥’FÒVÄO)qÉå{HswßÎËR dáTsƒÍ3ŒîB¾ÝÕAÜù.9ÀØ`ý— älQ™$sXÖõsŽú®º9 KyÛ“>Awç¾tœ¬Ç3ùs°8îºÝ³OPu¯6©k|N×QQ–ýæéK@{âdc$í„n§††ÈÑ6:WÌf–žß Ëнì`cŽ:ÁPçíkÿÒ•!İÚyvÏvN{çoËÝbŸ ZR“Yñnß§+ ›O[MR~!ŽX‹‡á õºçÃî¦Ò…×m=u«µî>’¹ð½ËH{žKp ®kšyw;í”´'o‚&ÐêØ †²$ÓÆáËžo0|õÎÛuX_ÇÅÊ’¶Ïgœ´>ðÁLìþþp¸9bÃ+³Ü8¡]¥xejlT‰jdª«lY-c¹žùF ! h'>ëd¶eºÍh£´Ùéc¤·ÑÂØ)âŒ|,`Ϻôã~Š£n‹| …ȸ/.{&2;a|wÚzÚ»U]5²¹”5²BæÓÔº/“! ùÎÁßjîûU©ø}ÄË• —ªkÕš¾H[O#ã{Ü×ÿX×g›výC·[ðñ©nú¿ƒkR_fmEʶæiCÎrÙ^À↌à ÕÿŒ@°Ž]=¦ëx+]¨nvšyîöÙiã·ÕI™Q^iÀ°»á9ßV÷m- j­ÖFÜݨ¢` ®elÌ‘‡aáÐကàêOÂGÎQ¢""""Š&À{""}ÊFçdéÔÿÇœ“=×6ô ¨ˆˆˆˆˆˆˆˆˆˆ¨¾;µ¾®ç]l†ª7VP ˜³ñ3¡Í8ô þkï¡ Çþ ‹Ü²ê'>›e‡|[kÉ4w 䤡˜Gr¾—ÑÂážfEËú×´ŽàñekÖ°»˜~ÉÀg?œ3¬Öþ—UTÄÖXôõSd‘îÇëªCy™õÆC¦Þª~ÈžÙÉLŒdô=qÝcï\?‰|,ºé€Ck¹EM¹ä€S%™=ƒ²ZO`âµy·UÛî—i)k!w,ÐJ9_½ìw\`§óˆÃùOAØžô…ÝQ¬8qgÕÚSRZ§–ºœI-`t.„ä‚ÛÌ@F@ê¼ [á¿}{ô£î”äµ¾e²vTnIÛý»ž\U‹î´—« gܯ mH5tï†Aók€+Ï«©|Øs¤æ#Ô¯»MêKÆ›¼QÝ­5rRÖÑÊ&‚fc™ŽÜdc¹R7Jø¹âúV;Eò0Ñ‘4D„÷ø£ÃáY‡HxµÐuäC¨-uöyð™÷ÉÛaج£¦¸·Ã XÑKiÖZ™fý_Ýj¤û¼²ç ´G(kÜl …Ú·ô߇^7Þ-¶*€mò5²ÓG3y£ž†WØÞr[‡3›®[‘ŒáM>ëkNºáͺëj“K~íQNçeôïfÜŽõÛ=ú«ónЍ¨AÁܪ¢ kt~Jž\g¬mü•9ü;{vBŒUÈ7¡;›|Õ6=pºj ‚¢ ©dsA+ %ŽF‡5í ‚×±0V©¸Ág‹NñKTX¡´Ôôwiã‚&`¶8ùÉ ì ÔŸ"‘À覇î¶Ž–›ZÅo¤–±ôB!-VL‘ù’9ÞdC”yc»ö·ìå.ÚÐÜîN{’Ž!­.q’Odcšö5ìps\2îãó"-ú…óÄÞBÝ},v[ÿ5ÈôDÇ¢§p±ÿˆÙ,là†¬n¢­šŽÝ%½Ñ¾HHs8€Æ·=Iw(Ç|¨/àÞ–Ý7ˆ?5eæšÞÚS4°6o„Ô¼°±‘7lslà‘оØåƆŽånžßr¥‚¶’¡ŽŽzjˆÛ$r°õkšì‚¡VÕ£†|9´UÃ[kÐ:ZŽª <Èj"´ÀÙcvr×òäÛe>Ñú‰$Ôº6Œ’#eL¿S#òoñY›Á,r3Ãn™sÀå’Z×3Hû̃|‚³piÏ|Rª}?š†ÿh6·&€£Î®õñ·92¸ÂÂ;á¥îÆÿˆ,ãá#M×éniûmÚ×Wl¹<ÏQUOTÎICŸ+ˆ.oVž^]ŽîYd ûô\Z ‹œ“–íÐm²©|8ÊÇÚÿŒ¼7ÐΞ ö¨£5‚_EKúùÚGì¹­Èaþùj·ì¼m¸^­²Üí|"×µ4D5ô³}ɬûË>&‡‘Øäc9ì£?‹n+]/ú¶ÝA¯Sic¶Z{…¾ºWCç2W9£iåsKAëœç—Ûá+^E¨5¯‡úÖñq«´5¬6JjH¥mTÌ͹c äæhØž\Nz:ˆåkš9šp[Ü/ˆ:¢Ñ¤4Û¯wº»ÐÇUO “g ‹Í™‘¼þË^ ' ÷ÀTÓ×Û5úõzzól»Ó´üRÐU²¢0wØ–;Ȩãb¦z_RÕÔGä²((d„ód–5 ó{oÍ·²vI^â×3â§–&Ë(ÆsŸp}ú(ƒö‹RÔc¤k@¤–Ù4QzùŒ˜ÿ±cWZ¼@éY^d¦I©+±“$N>Ù dLÉ9Áø«cQhËEq¨ž†1k¹T‘ÏSJÆJ@ÀçipÁßÕC¿WKdÕÖ+= d56úЦV‹AŽLG–¹£p{çþJÙá&‡×4:&Á­45Eá•÷yª¢ÝdòqDìgœ8s4–¸œŒl®šÜLÓÕrÚkï–«¬ôÕd¦®•¥çœÌäï·NÝ×-oâ·WUßìuö6Çe1JÚºVÈg‚­Ï-Ç;\Ão‘“‚¤·‡Î4Xø™¦à5uvë~£>)­ßx |¼ 2&¸ó9¤Ó89Yi¸UT?TØ ÀTvíÛ’ן+[hüATÕ2>Ss¶RÔâp‹óÄ`~JWø?y>4s†q÷yÆÃ}ªe .`ÔkûDd|\´€qæj:v¼c¨õù€±§ÙÏqk5ö¨·<4¾¢ÑÍÛâåŽnSoÖà§éÓ ©ìˆˆw(ˆˆˆ0©¶wTÇLù®@`apk•ÍÁØŸ^ª>ê ÅfŸñ?w‘õ’ :ª;4/~‘Ïpù>=Æ;û¬ýC;*)ùØàîW8·08+½ Àÿ±84d•ÒH=Olª´s’ÝÀ|wZüñ[ÄÆkívb¥…°Ûì¦zJSÎy¥ËÛÍ#Ød³·l,Ad ¬¼^é-TaŸ{ªC˜ðÆó;¦Iè¶KÀ OÃþYì ¤Ž ‹àeMÐ±ÜÆJ·1¾c‰ïŒüš@”vhÆz*‚3³†~kŽ;ì?šˆ^?8a5C!â}¢‘®DÚ[ØcpâÞ`ئ;ï‚àöqŽÃh…|£¹7sï褄®$O¢õDŒ¹‚tÍ{ࣹÔ|º»œC3»4BNØ#}€SÔ3~›õæ0pæ8ä·1Î}·Vî¦Ðº/R@èïúNÇrææ©¢Ïöv9‡Ð… ünpsHèZ+&¤ÒÿÑq\k&§¬¦—FåµÑùaÇᙌ¸tÀ ðƒúljÖëìºMÖéf³%4óùO›Îó9DdŽ\þ¨þ"ѸÝxZÏAkí!v©Ò׋TMw–'žÞCèÙFXï¡+Àm|Æ2ÞlÆù ÂåUU ;#Œtìòãf~79Àç+%ø~ãv áE}Ãô}=5}%{cóiª\àÎf“‡‚Þ‡ŽêNiß:r ´_ôµ}#yFe£³d“Ù®å8ú••ô·xW¨CI¬­ô³;ɸ8Ò;››ÊºJÈËвh¤l‘¼×°å®¸#¨\Ól¢"dz¢CŒ{*|‘ý:€µ¿ãVÜ)|BßË# d즩o+qžx[“ù´¬%;ñg©9[ðŠau†òiät1ÔÐÀìì"de¬vØœ–ñ=Ä7é›Dz~‚ ÃW[“O+Êè¢oAžÙ9úuôøKâ 5ÿ ©§•د·–ÓTÇ‘CF1ÙÄ8N–`^Y|ð\j#š"i¤å|róçâ#n;ù•õ5ü¤á¡¿æ¾†88dî¹EL¡õXÛÄì?yðÿ­ãÃ-2ɇ þ;ü–³te[iõ¥–¢L¶&\iÞì ZzýÞAîi !Ûr¡Ú6âuÆ’°µÌGÖQÿ%ü´äÍ£Á¾ãÿÛ'Yg¦ôÊ©lœ-~ñ÷pÿË…µóRÏQUIª(ᆙ­Ëäœ`h;|Cp}ÔÔ±q7@ßu{ô¥£TPW^¥û¼O$Çö‡ã”½¸$°`8Àʼ9€8 ÇÔZŠÝf\že]sâ2ÃCK‡ÔJѱpi# €\â ‘¢î¶Ô¾!x±©¦ÒZL\ôe¨<Ç<ÒC.ÒÔ ßœ~úûƒ•|ð—Âþ‹Ñæ+–«|Z²æ[W [E ^XNC÷è_Ÿ\³ç/@F0>À-pxÞ­®«ñ¨)ªùqM,àv‹ÈcÇs¿3ܰݢåYh»Ò]mõ.‚²Ž¢:˜&oâdŒw3\=Á­‘ð/‹–î-iH¥-†Ù©c‹Ì¨¤Ë^CLŒî[’2:·  ˜]â·ˆŸÓž0VT[êj$µZ¢¢lÅ®nc?¬x#x'¾F2¬žëÝEÃÍcK©´õlTDñçÂ[TyË¢‘£g4úv8#³7‹ØõÝgõÍ=µðI¨¬Í¥t.y“˘K0ï^g»¾HÏÐW {–ž³VÑ“÷i­ˆÁÛ``î0AQ§í-/Ðë.N ÄÓcù¸MpšÉĽ+uˆ¹®¥»Ò8–àœZ×uõ­©¿gá€N‹ ø™â¼|;Ò΂ßP ú´ÀÖãõ,ß.9ú( ¬-wÆËAw¿SÕCújÜ)ŸR’¥ŽyÌÛîCˆ$ã~…O¯Øá›MARÈêb©os%f[ƒS -Áù+Ǫ¡ÑV;%–Õk·ýöñ#Ÿ4“Ó2_.ˆ8í;½ÎŸFáA骼ú—Ë.rç~g*Sø\ᕺºšË«íº†•TTÓþ’¶BæÒö°HxÎæƒ¸õS7GÒýÚÎÀʺšˆ¼~{ËËG '|/eP“Õbþ6q³Np¶ª†‚ãIUq¯«…óýÞ”´:(Úp샎@õåw¢ÈV µöËGzµÔ2¦†ºOO+:=Žø¯¹ØÆT ûB«Ÿ/-t® ÑØâp8îù¥'þ¨R×Õ•¶è»htÂÑ DV¾fù¯oÑÏ#è²ÍF´TÁk,dîu$$méKR°›œ–ÏVª`àt¢ª¡yõY˜BØ  •Q úªº¨é²"""""""""""ñ¬µš‹íÙÕô,¥ ˆÅæËåÀq{leÍäV ãí–¢¯‹Õ3Ã"§KÒùoiÜI{¿MÈ}оü=êz«Æ™­¥¼>&\i®sEåù­%ÌØƒŒ÷ÜýAèBÊHˆ©Ÿ]•20GUÔ#ø·<¤ú++ŽÚ±Ú#„×ëý,­Ž²*ØÏëä!Œ8=p]“ì ÖUÒ´ÏPò^\縒O|œÿ58Sv±_¤Ö–ë1¹²ÃEQ]+K2ÎF'ÔJÒ@Ü žÅgn ø«ÄÏ â2ÇSXùr¦a?w‰ÀÃAsš6ÉÁ);¤µVœÕ¶Æ\´ÕæŠéFá’úi2æû=¿‰§Ô8µ–ç?N©×ü—Á¨-4ë%ÂÇuƒï y)jb.#š7´µÀ¸Øõ­Xëût泿Yʆ }Ê¢–6ÎÒå6BNFwo)Ï|åqÑ×é¬5æ`Ñ=%C ”¯q ©ØçØìv ö ‚S¿Ã¿hæŽÛ¡.wi+&ž‡ïºvºwŽzÚ0qä¼ç?x‡®Ho0Û8ÍüÀíº;=Àü–ñçn¨¯à§…Žttzj™ùÍËÇ'ÐfA¿üÖû>®F“‰÷›I¨°×Ú‹ü¢@2¾)iœ’ŸÓ²œE‚HÝÚÂÇ HÈ ú‚±î¯à‡ µSç–ï¡­y²_QKÝ¥síGŒŸs•‰µ_ƒ]p›ÌÓÚ‚ñb;ÂðÚ¨Àé͇ÜT[áçµ¾¶Ô‚Çl}¦ …‚yiëa©¬ ™sHh.o;C9ºá•õêžñ?JpúMi}´ÃMCÀ¨¦ûË_S 9îcr9 °2 8 ã¬oÎvÄ^IØÕÇ¥µæ£Ó5ö+ÝÊÔâòâ(ª_ \}\Öõf-#Ⓣ–¸£w+ÄLÎY]NÞw|ÜÎSÙe½+ã Ã7$Z›K×R¸á¦j [3Iõäw)üD¬¯¦xñÂkû„túÒ‚Š]ŽäFrGá”5®?Ý%dzjˆ*iÙQM4sÂñÌÉ#ps\=AWb 9Tì«€6'主$¾Š} 4̃5 }æÅŽ>¤K3“BŒ•m!à{t[ðw4ðÕj V¶?ÑðQPBÙÿmx ÷’~K8ëYeÑÚN㩯Ul††‚/2Gu$“†´“’Hæµ}Æž!\ø…¯.ê™åHâÈcç<­°Ç¢¿¼q2-ÅF[n³ùvkó$Îs°ØeÎbûg->ÏÏe²Âf³öÊùÀkCrH- üÎtnß]ª„ª9·§ä±·‰÷xÖÎiÇþjuð®hå×C+ƒ¹c‘®Ã]ƒ±ÎDZ[ŒŠNxÚü84uê=•^/üÔ ûAëLül´Ñ4;ý^Å9;s>iNöÀ)%àÁ¥¾4{\7-¬#†²b?‚ÌxéÐaq!ÝñQ/Œ“PÓøóГ\[t¿£â|{Cv*C\çwÁÆý°=nâ´Īºm ¨ÅÞѦ‚®<:ÌH`ÎX@ÃÛAç+/Z|_jŠ~~‹šš LÉ9tx0ãbèñ‡KÛ=R3ÖGp#A^(t—-kt«®ÔÚŠxîWi‹Ãfk|¶ˆ© Á9Ž1².v0 ÊT4QÒ@È)¢d0dzc Ø/¨Œžûz.·:ÕjçÄ C8Ù­ã®y"ýVþcØé ™ÿš±³›úÎ\©qàOjª-Y%þ²ÉQŠºÃPÚ+‹àÒ2¢1Ê×ÀãÌýŽ9ƒ6Ï.Ùêñá焺‚ùqÔÍê»Â¡Õ éãi{†ä1dîvëºÆú—Áö‡¸ëz[•ªë_g²9üõv–0ÊyGhæ{²Ðïpâ2qÑ[ž)´í±PØ­´TvÓJ[CMPùs÷îv¶90ãÌY®%ä~ ø€7ñcÃzŠˆ`½[.ú|@MòšÊ¨ÐÞPIiüšì¬sã«ViÝYS¡î:fóOs¡4UGš'ÆKâÙì8s·Gv裾s¿NP7Í&ªŽ_Ö {zåmŠZÚ‡CézûÝkã/¦…Æ^ìå´§$ŽŠ3ð¿A_øõÄŠÍwĆTÃ`¶JÈa š70Ô8öD2?«hp.Î仸ïûE`¡‚›BElŽf¶664؃cÀ°`WðGW÷Ÿ¶(wÍ-ET.ó¿œç}?Àhíh—‰jÞÙKþíi2¹¹i’g‰ ïè\dAÍó¸SŸìôÓ_wÑwícRlj+ê™o¥.iȆÌç7Ô9òqÞ1è¥SsÊ2rWËy‘ÑZç{"t§—ÎHïÑaOÄ‹ç jÍ}Ò‹¶p{ê"–h„Ô-òã1oÌö¹Ãlc$·8Pw\k Í_«®ºŽãPék.•ä€À `ökCZ`”8µK ¾—…×H«¥ªžªim’FÀöGƒ¤{Ý ;˜ƒƒ»ñ¶Ê]›­wøì¨uGîÑ?›ÖÊHÙ‘‚Âý½F\wSÏ@µÍК~9XÆ9¶Ê`ZÏ”݇²÷NNùôÊ‹ŸhÍk£á¾™¡åšôf÷Ë ‘£ÿ®ü:×Ïo㎇ž”»Ì}îžGîÊï-ÿð½Ëhm錅TDDDDDDDDNýté„DDDDDDDDDDDV'ôõnkh¯[nqS¶i99âh»™½]œײƶ¾ êÛ­ÆëUxÔìÓöùî"²’–×tîo”ÖbI ø:„€wæ8 ;iÚ­v*lõóÜ$¥ºªë&-æv;œn¾ôNØT;î¸*xüÖµºÖ‡DÆKh­06¦VçñÔJÝœºÌßâwª‹´Üóφ³œµ½;­˜xtÑôZSƒšrƒÈaª©·¶ZÇr’$t¥Ò¸îÙŽô qóµÆ*ÝKÃ'~¹4:ilîÏÝê‘ ëÏfþqøTQ¶^õn‰ÔÏdS]lšI–?Ž ˜[Ô9§ß;B”(ñjð`·qØga!¦çAÜ÷’Ú¥›íøJ”ZKSiýWjeÓN^(î´nõ´Òr“¿+‡V»Õ®Žáz¯Á'ø(·ã›…²^-´¼@±P¾ZúV˜.†],!®s$8îÒ9s¾yš: s¸p9‘Ll²O ow)mo²[jòß#îÚr¡Ãã©c]8é,!ج‘Æ?h­…pŸXPëÎZ5EÌUÀß<7nIš1#qììýÔH#8þ*Ó㟨Õ\/ÔZzšº*+¨$ˆNö5›d“ñ²ƒ *à¤ñ§Äó†‡GU Hó=Ñ8ûn‚Ø«N ùœôUÎs‚}÷\KCÚFø=sÝGËnš·éÏúŽ÷+ë"’®Õâ’8äp…Ñ<ŠzÐæÄC„r÷ùgϲE ô‚Xãš #,sÐæ½¤n;Gæ¬WÁ.êXª~ý¢­Ï<„TÒS$g0#™¥˜Ã9aÝIà¿HT¾Il²÷lwû8ê#Ž¡Øägá';wÛ¤~ÕžøÃ§é]£«.TÞice·=•.xÆÎòãsžÌl±ÕÛNjë=«nšvóo¦mK©Ý5M‘±“4 ÆK†€#eçÅ[Y .†i$ã â_'Ú!­ ¤ÒÖ=I1uó •cŒØÃ»üOæ#ÿv¡Î–Ó×½S|§²iëeMÊãPîXà™q÷=€ÉÀʼ¸ÃÂû— ê­Ô÷ZçO_Qdk¡€y •¥ÞtbBü¸³0`òï1Ý9>)ïáÉöme–Ã`’ëg‰­‘„’_HàŸÅ°nNÛ²Úè–2×wô(Çc®pp##p¨@=>hâz ·XËÅ4…¾µ±?ùµÃósBÕÛ¢>1žn›­¸pÚæë×tÝä¹ÅÕöšJ¬»¯ë!c²}÷^ëœD…¤öØ­wxà­>#®ðGGGsë“ÿ²)‹áb6GáçE67ó7ôhq8î^âGÐ’>‹'œì3üÞêý¡ù|m²LÀæ>ÌsŸ>s{œ(Ùt¨2<7˜;n½p¾jxù¦¿-qÑm7ÃÖ¤ƒQðOIÝ£¦Áöñ š Câ&'cææŒm•‘c@é—½Œ#˜€OOuÅÇ#âà­nøÁ€RøŽÖ1·8sé¦ö©!?Ï+ sæC““ê;­ø;…¿èSN3“Ssò‘øH{ÁòÏÕg5óÖ45œã#@=T{ñGUGa¸ZuA0ÕAn{&®·¼´‡ƒ˜˜â×~˼ÒÒFH<»n­ž$øEÑú†‰÷>ܤÓÕò0K%KÌôO. Ýñúü@ÙQ?‹ú?WhmMúUÚd·Ê ž›Êܺ'œ3èr:ËÃÒ£ï7ûm6>)k `Û=dhéÝlqºJm©¤×›™žÕMc²6•àœZÓ%K°> O1 n2À8vÃ)Ûèéè(¡£¤‹Ê‚r1¹íê}IêORwQíVèc÷và6°‰vÏû?‡×ßÑ^ŸgÕD³ðnë ¤&8¯“r7—¹Ž2wù¬ãëœñúròyEÒyyè·ç•€iÅ‚püÖË<\in´À¤ˆÅ÷FMK0À¬d®æ;zç?U˜˜ìŽF6>¨çmù(#ö‡]Lµäzºå¢%s"¶ß9®ÖFìÖC1ÉžÎù t[½T®Î’ñõ¬ÕiÍ=,žyhgl1·«ßÈîV™ÂÖï†ùnãÎ’ukf§{nÍd¬ ÁkÉ- ƒ¸ÁØ…³‘Æå…Q¾ÄåÀÜt%G?3^4¬:?‰znSOq³\ŸG$»¹†f’c{OVÎSýï’É|⯈:6žíA¥“âmE™Îidvg-ÜŸCì²#` àt\sƒ€“«t¾Õ¶ïÑÚ’ÑKu£Ï7“PÞfç×øŽu‡‡ê(cšz1lŒ{ä¶²8ß Ï).iÀ=1²Æú§Á––žÐïèæ¬»ÑÜš\æÉZÆO ™$†–°4´tùŠ;q€¼LÑSb«OÔ]©KK›Wi‚Yâ$aÙ`sNÙÜzz¬m,µ• ,0áñÈÒ×4ûƒ¸^•¿Q\­7Ö[ëj(êŒKO+£~Ç÷šAú,©¤ÜØä~«,éµEÆ=Q¤©eo7õÖÊ“<¹2Ïœ,¯fñ3ÂJúv:¦ó_k™øýM]¶gŸWD×°¼¯;8y¨åZu¥Š¢~\ù_|k$Ç÷‡>Ы\5ZwHj(&k£§¨©¢ýXæ:VÇ#~ vC!ï• D•%ØÈæYÃÃ'«ô—,q>»’ÕW8¤«dŽÌmŠWçoЇrœû+;ÄÖª§Ö\sÕÊ,ýÌÕ6–ŸõœáÌ„8Gyeؽߪ•^¸_báÅÇP\lÑ]®— G-T|®}"Ñ–¸i{äß¿(ô ðñ¡.º¿IÜ-PÛ%e3Ùs³M+,F®!‘Úò#!à¾?ÖeŸ¬$ƒ… ø%«ï\>âTu.5tU´…ôõÏ[&ΊF»Á`ö=ÖËô§¶ë-%oÔv—óSVÄÊN]¿iŽ÷eî/’XÀxwBÂKwõÿ5٠þó…ÝÛ ‰Évç|,mâ~6Éáÿ[Fdk?óTÉ8 \ajèãâuÜ…µ¾<»‚šá­Óvý€ÇþŒÅuL&ûÜN?(‚ÒÂ_°AÎÍk#ÄÍÛôÇ5½k¹±ÖZ]ÿö°ÿö5°ÎÑ hŠ?(ÄøìFF8nט]Ÿ|’¯"â Î3óê¨ýw>ŠøåÕº3Qñ ‚ÂÙ+.ÖÊg[ëk|þjr1 »üMsÝ—äo‘²£@’+I¨Êõ-±6º¶]3 kÞ¥yÚ6—]ôÜ­•p„Ñp¦Çr·Eªkï”u²Ç,ÎÆ²:|d±­Î ‹÷Ü畾ë'y’FÍϾÙ;¯œ5ï”É!Éé¹ü+éw7/.7ÆË]>3âKWlâXÚ&Ž˜ÿ¡ÄÍ`©Ž¥Àí‚¶=à¦G¿zj9‹|È¡Ÿ”Ü5ò“ïÕgUÕU!ÙPßí­¥ˆX-ôñÊÚÚ¨TÒàyf8IkZRs!'û­ë¤Ï n¥øy`¸Æº{|<à€àÀoeþÑöµðpÿpA>SŸzOûTB£’¦‚® úY]Ôò6XäaÃ˜æ» p@*Xp7Œ— º§Rú;n¨2µ­mV"¢»c•¦)€EPCpÙ¶à8wRãGj»f§¤•ô¢jZÊwë(*[ÉQI <¥oÌ–‘‚ þу›Ž‰Ǜˬôõßü•ÕöwgýjA÷ˆœÁ{$BæŒùLÉ>ÎÛ"°ŸÚöž<± ä¶ËL·~iù…è@/ßÎëem[ü;iƒÜçUùÕo%˜ÃŸ+²=Àef&þtÇ \³œ·æµwâ¢÷-ûšÎ®W—y7'QÇ茸OÌ« JÒÁY©mtµQ‰`ž²(äg9o3\ðÒ27«:p÷\jžq&¾ÛWÞ]-Q‚åoyåeLmq s ‡q»_Üc²zXØõΘ¥Ôz~¨ÍG>ZXæáðÈ?oáÃçƒÔdTñ÷ãã¼²:GÈÙlÔ® v1òŽQí–“ó%O}7;ª¬ê—g3RE!æÎw`=÷^‰è¢oÚ? Ž”Ñõ®!•õ æý‘Í8>ÿð*<ø_«u4DáÍi7&ÄI;~µŽŒŸÆ¶pѶ2ªˆˆˆˆˆˆŠƒo’ªvCº 興ˆˆˆˆˆˆˆˆˆˆˆ‰¾=ÑýVñ…¯F‹àýu-1‰×ð}²^C£dŒw™ 9ý7#äµÔÐ^î\| tÁlÂÆ‰:#ƒ¶š9y¾ýq¤ªù£äs$•£àÁ'ð´1¹ï‚vÊË k€>ª»`ŒÿLaÁ®P‚0'¦Âjà–╾[­% ´¶¨dduÂ?,…¹š6=¯ æk²šOv¨IÄžë>]Gê»\”Ñ8òSÕÂâúZœo–IAžR‡paà׊MC¦( µjêwê+k ýy”¶¶&ä`8ò¼pwü@+¿Ä~¥áÇxVnZvý>¦ÓÌ}u={<™å‡΀gáqåÀ4».`®T6 -”·ÓºÉœ$¼ÏMr¶šV .¶šØîÖ¬¿—Ì|xt´¤úJÆàm­JØÎƒÔ¶í]¤-šš×+]Op§l¤“ˆø˜}ÓGl/{mˆÀßæµŸ¥`‚Åâ–žŽ¡³¹´:¾ZpÖžW=Í©sZ\‘ž¿U³ç|í¿ª©Ç¾þ‰œ·#'Ùc¯¶&j>kqò=–¹ják\ã$®`o’èÀÛÕCO Úúm!Æ+M#æpµ_§eS¸.rÂñèD…€ŸBVÃ\_‰zލLœ.C';í…ËqÛoELïŒôTÀÉ?ä˜Ç}•›®¸[Ãío,³j'm¸TËÕf>Ið$f1Ûu¸³àæ!K5Æ÷š—Ê2áj¹¹®óç–9Æ9{»”YÕš?SéZÙiu Žál|S:"g„†œ5ÿ…Ûo±+ÈHÆu9Î3ê«dñ´aÇ#ù®Ãu”E#K¹²AÜuÊäíGu}¨Ð>²sGæ‰çËkÀ Þ™Á#?5á¯PTˆiÙ+ óp1Øå^h­wŽ;é*+ë5$÷&±ã-‘û–4BîUµ@€:Gæ–¸Äë\^14œ=â„·(c.§¿\j®tÕ.9sšÿ)ωǛŽ“F0×·/’#È^ 8·I§®ÓékõSi­g¶ZY³)êN‡ÙkÆ=hõʚƦ.g°8—³«q…òI#œAÈë“·oüWÓKŒ{.ãœcù*ˆØ¬sâb–Z¾ëh! sÿEHü™‡à¯XyålŸÍm?€s²~hG°ì4õ 7õl iþ «ØîZ;7ÊÕ/Ý5ÛŠzªlÉY~¬qÈÀæ}Kÿ涯M4´ñRÓF#‚¶8ãoF´ >vÅî°¯Š¾/Û¸{ îëulSj‹„¦¤‚'ŽzPögî†Ú:—r팑™ÂÇY<>Õñ?SÂçMxšžOÓgÊ—™õ2ãÕ‘½­÷²w!aÛ€gÞ]‡ c²á…‘¼v--[cá…K*¸W¥%}DUm–Ζ'ó1Îò›’íUÀ~-˳m‚«sžf޽0» Ho/R{ú-qx¹t‡ÄN³óCCþñOîŠX1ü0°¥Y"­äîAÝl7ÀõE/ é]6Ì’&>&sd48çêB.º  d>ÑŠG›~ˆ®lcËi¸R½Ýòñ›ôø³‡JÈ®|Ó•PJ×‡Ò´Ëø^ZÒ[ôÈúå`´‰§ÿ¹ðn]ðÜÇËzU­’ŠYਗ਼çl²GC(ø$ÀòŸcÓê§ß‰?ÔBŠMS¤b¦¶ê¶Â £ 6 ˆ!ìÙ;üƒ¶Áw‚\T¸[5%”×Õu¶[½­ÿt¦¯¨g$±’áþ­YÍ»  `;ÌÛ Õñûw‚ëoÒÍò䂲‚º²šx¤f Œ,‘®ý¨ÞÜG¾pAóû; ¸a¨šÖ†Ïúl™f2Ó |»÷èvíõXíµ¾›Œ‹¨Ç—]e Ž9dø9ª7P±ò<ÇòÆäãrpÛtž¥ÒZ*˦¨£s ¶ÑÇNÌrÉ'Ôœ•ï€ÎÁp‘Ì`28´1 ¹Ç=ß+QZÖ½÷]]zºJþgÕÜgÄožy\ãü×±Á;;¯œ[ÒVòÃSw§á¼Ü­*dxèáÔW] 8‡n­¸Ù°ÊçsãͤqÆHÇÄXâÜl\±w½u%Ÿ‰ÏÒUÑ×øœ#iqÃj#i{HþóC‡ä¼_’ 8æYÊG—b¦iךSéî§®cY`·4HÙ¥ˆ·`ï€n 3é…~Ñ&·ý Y ÀÿçC¦ø4µ*"ð/˜q{F¾0îf_è9ú»>KjU[ÜæÈ:}—b""""oí„DDDDDDDDDDDDDDDECÐáTû-tøÄÕuŒ÷ŠYj!–šÐ[AMå8–´7wgû\Ïv{l­ßÚ.=yÄèëØÓæR‰üÞr c©Ï{{y~cpvÃS€¶cZÖ€@僲íh8Ü»*àg=Ðý6긖{ /3RX­’Ó=žým¦¸ÐN9d§¨Œ9‡lgØîw*5ñgŠäùî|:» [Ï0¶V—IF㑳^2ø‡S¿8ÎÀÒ7ëŽ ñoG>°WiK„ôtÙæ­¡i¨§s1žp[¾1êºÅ à¨|rµñH×´‚>…}v›µeº®ÊY]ôò6XÞÓ‚×G× DpsÄÄú–÷Jtm%ʰWCOk©™O;š1d„‡×rìæÇ]²4>2øçðú à2yo‡åþ¯ì£öºÖ—þ;?ˆti(i¤¹QÜH&çå|b?3ÀÝÅ„ôêT´µx¶áÕDÆ*ëV ¡vN\b†Võ8ü2svýÕ~iÞ9ð®ù=.°£€äJÖº˜÷ÀYšhª dôò2hdhs$cƒšàwÔ{®Où·ªÕÿô»ôïö !%vÚÿ6Ý—’æÂâ$€‡{5Àgû>«c|-ÕTÚÛ‡ÖMOJö;ïÔ¬’V‚> q‰ôw2¹Èÿ¾Ÿ5È¡Âz’À*„vÉùªàã|/ž¶Žš²! e,QsLÀðèpGU‰5O†ž_«¥¬~š’Ý<Îy·ÕÉ 2øŒAžøoñÝa>+x>¹@ù+øyuо±¶Ûƒ„u k\[(øIv`À=|Öü)×ú^7ÉuÒšX|°ù%4®’6‚{¹™p±ù‰ÍŒ¼[ÛÝu.eù„3}•žü éj.6Áy•€ÑéêwÖÈI;Ê~š=ùœ]þ¶&ɉ OeÞ¬>7ðêÏÄ%–æ[íç4u¾C&4’>7Gær?ápÃÎÛžf¹k^ÝbRG_h«–‚¶ ©*éet3Á+K$‰ã<Ìp;µÀìAÜAÜ)kÂ6Š;“OëêÅ\Y¦’ïžv± -Ò7<ÏÎáÄcu$ôßiYnº[«˜ñ–ÉKR׵îÃ9vÂ÷©k¨È,p9øæ,ó[>]WÚ -Îç#9¾Fp:n­3Æfá±gÅñY+0Çû-QÇ––c¸ g~¼÷x|Ñ&¥’G ¶€w1äw!ùàØ,š1‘ž Ž¡kTÁ|MÞ)#„ky£ç -ûù¾Ã²Øoø‰£t ?Þ5Eöž‰ÎÉŽ¹’y»Aw×¢‰œdñ_¨o¨¶è¸Îž¶œ´U¸‡V˃±æ– vØdíø»+{ƒœÖœW¸C~Õ®²iÉ_5]F~÷Z3¸…¯Éß§;Ærº) âÆËgÓ¾®**LQÚÿGÁB$w˜è¹jbo71ß<œÃ?Ú+]“žiþl—J¤MçpŒ`$>d­´h %6—Ð:wM@îfÛ­ÐS—ƒÏÌZÁ—g¦ç'Ó}‚¸Ø`á¾€ár'' ÍskÚà%Ç·º×W Y¡ñ+©žöáµ-¡•„­û¬Lþl+TdÌìîI[ ðƒÏ­΄°M,…äþ':0á·÷KŠÎ‹®¤â#îT\ûCœñÃ3-uéÎ/ÇB)äÀúäþJãð é¿Ð$~sƒ›ú^¨EŽ¡ƒ”`õ=ûFÿ¬áðü7>¿:U 1£{̼€³>Yøö=½öÙmØ|X'›ð‚s×§uŠÏM(Ê{¡ÖÕ4˜ž²fÛèçpÂÁÏ'/|–ç±äo¢–,àŒc ‘B@\^ðƽÍc@É$àê£üSÜ-WJ«v˜áõu\-ðS\ë(†£•å¡ñ±ŒøØà2ߌ‘Ñc;§¼D\g«¯·Ûî”T´ÉY&([’~?5x ‹·Õe¾ø ²jÿ&Ñ­›Mc¼Ï(Ž Šv¸RL\pÑñÝÐ|DŽù‹Æ{}—9¯Ûm·ÂÅž#¸Gm⮃ª·Ç=> ¥ÍM®³Ëk]çŸÕ=ØÏ#úCÊíù@ZθQMG[=T.§©‚gÃ4NëÚHsOÈŒ/_@Ád©Ô0Rj#(*øLѽÀÁ!n&ÝC\A#¸Swü4àf§¢2ÉêzKõ$‚ ¾ª²¢¥´ò\×r½ø xi#-ìGb³µ>…ÑTÖ£j¦Ò6((\ÞSO¾&°jòÛ¾ÓÒEH8y¥ä‰¬7Ì´Ã#°3œÒãó9>¥x×Þpzò\ê½jîêh9èÏÿ™s%|é-;eÒš~’ç¨" ¶Ò02\àÐ=K‰.>¤’Or½B3¾?5 ~Ðè.öMua ©ŒÛ' ˆ‡ºF‡HÇ9ùÁøC€ùw]x¡²é?ome-ÂCQi’C€ÚÛ‡?ÛîêBš<¡ÄͶàg\±Ýº}U1¿RB*cÙ âñ€0?‚ë‘›dž›ã×bCûC­RÛ£ôý]-ŠÛI®¹»ýn vÇ$”ñÄîv¸ñi#;ú(TŠ\}œV;‘¾j­Kø-¤ŽƒwæNç¶M‡öZÓŸïu5ÚÑ˾H÷+èa%€ŸEI›ÏÙ€yšFë_^6ø}S¦8¥&±¦}«S8ÌhjšÐ$ŒúçñƒîGe*æ‘Îkó‚P¯Èô¬6z M’ó ¶H™S e260áÌ×<ÆIØðpGª·ïÚÓQ^ 1¸Þ®5N§ t•.Έsž»¯rÍÅjkE¿Yj v1 r2ã(nÀÎ0ébñMÅûlÌóu$wš[ˆ«hax8ë—5­yÛµüÖR¶ø¸¦Ôºû`ÕÚ}–úêË]E® ]ÚóT~•â•óUÚÙ5¬½Mq€sæH‹¦2ˆw}–KÐüãîN¼UÒÔÛi*d/šç{‘ì2eÙ%­9‘ç©`ú…,¸;áË@ðùÑWÔÀu5õ˜wé „Mä‰Þ°Ã»YÓ9%μ³>ç¨q'Ýao,‹ÿ&½Lé¹›-áßzˆoôÊÖÇeöY(_t¼Ñ["8’®¢8·w¸45¶1mm£O[í1M=DVêfQ¶Z‰9åxŒró8÷'‹Õa#p9½¿‚«ƒšÊÖý:öÝriÎÀ¶ûakãÆ½oÞ|G^â êT´PŸí%²ö@°Xh›|yìz­’øM‰Žá…‚a;'{(!Ïl|¹&ò !¹ï…š—M_àõQOí¬k4Æ‹·–éî3ƒÍ°ÄF=O˜7íƒê¯g›€0ÒÒ.µc››9ø‡nßö{«í¢ª}&‚¸¶ºŽ «à–P>>FÀæ4û‘‡ü%C—; s›³›ñ ½BÛµž©õÖº:Ùc }EÄ­”·ä2¹tWÐíœbùZ âͲ;õe’òÁEy«†ã£ÎåþW„¦y^!´ƒœ#$Õ<ü¼OÜlwô[1cs¾vú¯/Ti}?©ìóÚ/öŠK å¦H'g3\[øOÌv*øë¢¢´ñ’錯5Z~¿2çË{$]ó‘ÉÛmÎ~sw‚9“‚Ú¸¸“§-ä’wÏÝ£ëî®÷‡œ¨£ö‹HNœÑüX}}Sˆ6‰£üÿšœ†9xÇ¢ØùÛ7Ú7» Ùšà6õÆ>«há7Ê""*¡UÊa|¢vÝ>›¢""""! ŒÎ-UêÝSpÒRÅúÏZca„Ÿõ‰XsŸ¾þpݶÉõX/FØê5>¯¶iÚ&¼Ïu®Š„7˜³ÌpiwÈ]ŸmÖ×ljª U²AMmcÀ8dã¹ÀÊõ;.29¬cž÷†µ£.$àêT ãwµ¾µâÜ–~Þ/m´Ò¸ÒÛéìòɕޯdܘ.ß dà5 àâr´¯é´°~¬ÔWj:»…ŽÏEYtvÔ;Oç’çDŒï͓ЀMŸÄȯ<>´Ú¡Õ¼fÖr꩹GjƒhØþf·œ±Ù{¢‡HH'|7²±´?8“©x¿¢â¼êº§S2åM Ðóˆ)æ…ÏΑ‘†µÎ-$‚Aß ÿñSáΚÁCY¯8qD"·S±ó]­ ÉlM.šôh.gF‘¶Ã³Ã߉É-”®°ñ zŠúcs¹Et±1­ü`‚öì0ìns”¾´Ü(®öÊkºª:ª¸›,ÆrÙáWÐ~SÙk»Æ—+´‡kuTò¾Ë¨æud¹c*“,$övApŽÛ¡Æ±ý:g¢˜þnÕ“ë{¥§Ÿœ¾™¶=ExÇ–d¡©q=ËctGµ OYfOÖc .kØâ=NØYP|öUB©ŽáTmÝ;n©ù§eÂ@P¡—ÚIVÃS¡©9°èâ¸Læg÷Zqþ(p«‚¶àÍQhàGߪYúbí=d$ömlpÍÑ<åH‡†ììuô\ã9nÝ—%…ü^éiuGu¶ÜkîVó Ê’&îæÞ<Ç4w>Qc¾vß [óòœ9­FÝŠ‘žxµŽÕÓYoÕ†Çv g˜çâ:iš0ÙÁ$Â:ƒ¾ÍÔºBjW½×ý§î2¼i§ Ò±³ñÌ6=AV O†>Ì÷?úè\ì“å]*ÚÜŸAæ`+6éà÷„m‚z§_uMº5Ò9澟ʉ¾¤¾Â©ù•xåÃÍ £kKt_àÔŒæse¦4®BF<Ö-àäôÆ1ÐõX¤8ƒ•™øs¤8ÕÄ]#l³iÛ}Ú£MSó¶•õ{;‹Ëyˆk9vp 쳎†ðm_ÚçYI0Ø;4>[z÷š@Iu€ú¨­–¸¸øËu®/&ÜÍXØ)#Ëù!¬Çs†ãs¹[KyøÎwø¶  D9Ïp°·ˆ‹ü4ê‰Ú)(¹ëþ·ôþÒÖÉÆØú¯s‡€§Ac¤¥i²ÖÝúÖìÙš òw˜î¿2»™»ÆOºäF2zw)6ZÔñY-Ãúây¹yÛutoøckcißÙbj“þ²ç5²o ±GG )è#xs`ýVÎÎícã²Ík¦¯ðšˆ_h‹d’myØãŽà ÿd¹æŸ ó†ùz¬‡àNÑp™ÏvD·J·ºaá¿ü’¼´EÀp‚ÃÞGj(ÜÑŽ SOŸæ¥‘œ÷a'–Úôlôõ:NÍUFÿ2žku<‘?÷˜ciiü°½Ž¥Ù+xêƒÌðív_*²•çoý¨~ÝV;ðGWCOÃg•¡“Sk”g.íŒ4†Ž™Ç\êÐûGyOtÄA„ZãƒØÎïùç}œí?é¢ðá#r€´’àj)úØ ~”ø c^˘ ‹ƒIéÝj¯u"»úÞ¤»,v¡­ ù œð]þ®Tž>i‰«éc“Í%$FB1 ’0†"Ü© ›k?uµ½Îp{šá,€tvàÑœŒ¼íšìÛEϯÉGo|R~‰áû4­¢­±ÞµÇ–»ã‚ =û´¸ÆŸïãv¯Â΃ƒDðÖ—QWÚC5=ûýo™à—ÓS`ˆ# ÎFd;gãèÉzûˆ´š?‡Uú‡P[~ôÊXùq’jíƒvfs»º þK]ÅvÿT“NLt•£,iÈîøÉsOe;°ÜÜ{«G‹ºÛÄ^]tÏ q‡SNw4õ Þ9ê0쎠‘Э]ê» ËMß«ìWjgÓ\­õ‚©‡ sNÄm¸#à‚²?µS4íÒ…Yt–ÒÖRÜâiÁòD­{$õˇîû•±])y¥¼Q ªJ–NÇæ~bÐàAôsK\=œÓÝ{‹„êæ‹ù®1ɶÔu\ÁÁdpÆûl°¯ŠŽ )é¨+íD¦Ö×}ÉòìʘÎîç¶Ní'£½%C ®5‚ÓºãDÍöÊê†ÂæóÈèg·Öò¶>ª\ÓÉ/“#œqð†¿výUô26ÇñF¸P¨6UQ ¡ø]RìsðýTûDë›?¬4l‘ûµ¤óŒµÎžOOf•r¶3à^íMsðïh£„æKU]U$ã9ÃÝ3¦/†f~EgƒrNçaÕX^CN{×g0ÆWÎãúÎ~ŽkwÅ¿ £á¿gŠÛ b±^A®·ÆÆá°‚ïÖBìׇEOPØAä7 û…18â®ÅA¤i¬úþK•Em1tqÖà  A­ähÁæŒã|nrVVѼ³kJŠÚ}¢µ…ì@“<4ml8õ‘Î Ô“ì©Ä]ľ'ðþk=öñlÒsTV5ÂŽÙ$“1´ü§,©~13³‚ÐÆú’±—|5ðóBpsTê©î÷û½²GÁ=UAŠ(åØ5ÍŽ>]ìâá¹öÄ*lkÇ0ÊØ§Ûµ-ÏÃÅ®†&8>Ï]YE?69\÷Jgc·,ì÷g(Ë<ÖàÎV¦´ÕlÒêËuÎR];®Ô8ãñ8Ìvù­´;g8ç¹UÇa“ƒóBAÉÛ =øüžXx$qÔ˜™=Þ•’3#õ£w/OVµßáZò^æ›îúçOÎ+¢ºS¿›Ó´ÿ’ÛIo#Þ7?ñ+œ[È7ÇÕvFFzú®#ú̹z-oø®”¾"5˜„[ ˆõ.§‰ÄþdŸªÃ•`ýåÛïÿ%³ 1M†´ÔÔ=Ž}\g9¿´]gùåeõÕQ• Œ(ö‡TùsiZ7‚O—,ŒÏA¾~{µeoQ6?vVìéê+¤^¿z•¿É¡YŸh„o&Óó|,Ô Ûíšy¾›áAǸA·eËmÑ;áy÷«5²ó pÜéRÈÜ\Ðâv$žF Û¢ð-ZF{¨¡ªÓ÷ )¬s4µ–¹|g”½ñÊlj¯å§r  WzvÀÙQÇ“üCûAµ•´Ö]IYÏYOPêºø@?«W¸òµ­rI alëÃöŽf„á‡Oƒ)™°}æq39\ÉeøÞÒ;`¸¢È]×Íx¸ÒÚ­Uw:ç†RÑÀú‰Ÿû¬cKœ µñk¸SqsŒšŸŠÚÕµoÑZi‚º¢»™ÆìRÑ4€^ì’ÇèHV·¼@ñ]Þ&š µMŠØd†Žß)‹tç{pçü‰åØ*¼#q2·_ðÔÒÝY-MâÊøíÕ“NKÛ[qîqÝÏÃ^’IÀwí,âcÃUN‚¥ªÕº6y+ô¼,kªa¨“š¦ÅØ;†€ø÷=FwÎ9‡áNšJ®;é¸3bóÄòŒmìNÛ¬‡Ç· ¶4Ž‹ŽÇApŠvÜA&z‡Á(‘…›Ö × ‰<£qÑ_!î6Pÿ޼#×oWÝk©x}Yo²I'™¶1Õt±78{–Œþø¶ëSÖIÎkÜ2×ã•ûzއºÈš‹œAÒîˆÙuuÚ Àe,•žœ7o„C!,nÀ|˜>¼APñ±šjý TZ°ó±ñmanK¹GV8 RO|Ë>"*`ú¡8ÆÈp¸<ü<Í=:-tøñÔ·®9ÉEG(–;E tOpßõœï‘Ã>ÆL}\˜' ôS{ì讌h½UA‡¶XnHçÇÄZ÷ÌGó Y;!¸ßcß~ê§Ä©¹n9wý‘éõXëŒ.nØô\Îsƒ·Íq .vÃou®oü¯ñ¬Ü}æ›%§lýÒýsüV¬ë9ø7ù-’øo’¢Néacm”Áÿ$0BZ@Æ œž½:¬ÎŠ*ý¢Tñ+¦jËGšÚ©cïÊZ À,™á ð㣄m`.¦•îån.žBr=wëÝ[<) üž\–ýÚëK)¡É,ÿå(Æ)Þ%§ß²Ú‡Ë“®üÑw &lÒ>ËLÉÞîcŸ|´çß*üo.oB3ó÷XƒÆ7ÿ‹¦§o67¤ßª%¼,Š‹­>¸ÒTäº{ņ¶žssºšPhêrÆ.^:§mGˆk„aÅÞE¶’"3øIiv?âþ+5ý4­n€Õ5‡ËxlYþä ?üµ)9@ùªàؾ[½C(­•U’c’žÊâ{´ŸòZ…žwJçÌÚ=ÏÓ™ÄÿšÊ^'–ŸÄ.å-øê䌗o±ŠE²öôÈþ=V>âež†ív¦uÊ­­†: ¦º›˜‚ö;•¯8~æÿAoô²SqºïFöÉæSÐ[`pâ%´0ï¶Ý};‚§¯K]Àí ‡’?£´ƒßîìÈWÇlt :ý 9üµLÞNH5/~OcMPݽwpPzÏ–K Œ8xž>\zóŒ-µŒàgï…SꈨNꪈˆ…PUQ :üÊ Àw]Îê½s²ƒ…Fl.Hˆˆˆ›u舋ÏÔWz†á|¹ËåPÛ©¤ª¨xå.q÷8eª®!êzÍ_¬.ºžãðU\êäíÎyÙ¬Í`kG÷VLðo 'ÕœcµÜg‚Sl°HÛLà–·ÌŒæstÉ“•ܽÚÇ-‹0‚6Î2ŽîNã‡Õa?º™úoÃõæ8¥tU‰bµÀqÿ¬%ÒlÄÉÓ|<»Tx6uºÏj ꉵ±Ó0·šy¤¬þ`É,§‚0Nä€7*#]m× MÂkuÖ†ª‚¶´õ0º)#$d5À±U°z]-ÂM;#Y(¨»^kŽr9¤n hØ`ƒ=\íðF2>£Ö¼<† ì÷ÝW¦¤eQ}E ÕÑ<¿›õrFöNHvFÝð¬+߇d¶ß.¼=°ImÔ¯³ÖSÛâ5’3<=­Çšòââq8Ë\jIø.Ô²Öé8_<±ˆoÏž—ÍkdäòäÿÙÿ*>WSÔ[k%¢¬ÐÔÓ¸Å,nêÇ‚ÉM¯³²öú­ªl¨É·Ü"¨dD~ÌÂþîŒü¾ªTyz¯›^¯ÒW=1y…²P\©Ý£»{µÃÝ®ÃܪÍGl­°ßn6Zæ½µVêÉ©¥æak¹˜îRqï€~ªç᦮ŸOjûV¤£tôU,|±Œ1ƒ!øl{÷[$áÕîŽù§èn4ké*é"ž5ÅÁÀ‚ù;ä‰ÎØê ¹×ýAØ…ÖÑ帴g ‡88s o²ì‰ù9™¤lBæÒàÎ}Õv2¾ Ý’Ï{¦ûµæÕArƒÿUWLÉ›ù8°gü5è‹ö“¹ÜôvŸ‚É©)àtÔ­·4Å K˜ :üL´’7‚:jõuÓº––çA$´W;uH’<‚×G#OG ˆé‚=2ÕôóúM¡¬:Ä!ý+m§­1ØóbkñôæÂö‘QÀËñë_ÓðÛ†—=GPá÷’ÑMAw–¥ù äqöiZ¸¾ÖÕ\nõ5µ³¾z™ä2K#Î\÷;rO¹%|* eL³Ž½¢mqosA‘ÑÑT³l’ek¿ë5MFr×u8^f©¿ZôÍŠª÷{®Š†‚•œÒÍ#°=šw°Ô%ã—Š]C¨ßQiѲO§í.%­š'òVL1ÕÏiÌ{ï†û¨æÉ«n•±QPÓÍSU;ù"†Ëä‘î;ˉ%K/ ¾'†¦Û¬ø ÆÂap¨¥°ÈÜž`Acª0zt&/wí5cO|0Añ0]­ klzÒÕÓ±Œ°N™btoÄ: ;¢Â-­qÉËwÛÕIïüG­W[¢nÕæ ¬m’ŒHpÆÕ´Î;6>¥úÍÇ’’q핊<^çÿ&ýbà?SS×õñú­mòuqÎAØ-”øT}4žô™¢¥‚[Fú­›+ÀcÎ{ùœàû‚¯sru£Dê ·?)¡µÕTsÓ’';?Áj÷„μNÒ&½Q=‡§Ïf>»­°ü{Ú=½Õ@o0°qprñ‘ܨÓö‰þ„ìîaI"ާýV§þÕÜ0â3•tpŽ€]8©¤í¤Ú«Í$N ÌÀVÖ—T=Î;?5ôSg.ÜWiÜ‘ÛÓ*ޱÝ#Æû­lø£{ψ-j÷8. ïÐCª‘ï¨.Ïâÿ5± Un«á-†O$°AK .ÁÏ,LËêMºl³Â(Óö€Ó2·†ÖÐÆ5s*\üË’AôÈÓ¿î¬× 9”ᆛÓñ?ÌVè£s³øœ[Ìâ>n%c¯tÞo‡ôŒ;ɨ¤ûPÀOäV»©ÜâHpo1Çð[ð_Ré¼8i–½Ži…õ‡;n`Ú©pG®Ç0VfÆù;¬'ãfI#ðñ|ä‘Ñ4ÔÒs†´žq÷†: àçÛÝFŸ´”Õ|d®žpã÷kq,ø€ndpˆäué!éõV‡‹Jß½øŒÖdCU ·$,n?0T‹û8ë#“‡Z¢ÞÐ<È.í•Äc8’žçv;ª”Øõ9*»gø+?×ZøA«ëÛËÍ –©Ã?û§óZª|lkÐryFøê²ïƒ»]ïºlÒÆÛ¤’º¡Ç´laú—õ[&`|cÙyZªÇO{µÍK#G3Ùɓз˜郅¼kÓˆüFÞËaš’‰åÞ§É ÏäÑù)£áÖS'ô;œÖ‚,t­HÀø+÷ŸªÁ¾7£¨©à%lTÔ¢¡¦²'Í·Å×È^݉È,é·6êR‡±Á­; sœcâó[j·môÄÈÙ”ܽ½°Ý}m‚"¸DDAÑ01œûª¢""""""""!TëÑUÊwTß=º*¢"wDOtN¨¢ï~ 6Û¥(ôHûÝÑ¢¹ví¦k¾»ûï“ ƒO{yŒž]ÀÇ~ßÍl¯Â·eᯠ©(.1^®.ûõÅ¥ :9ш‰çm×®VYn=û¦—€NÇÕC´P?ÊÒzNˆˆŠ‹C1³œ1Gæ37æ³êi©¸AÃþGÂú˜,Tn|<áÏh0µÃ˜u‚Ná}ú£Eh-{¨mWÍa¥h®— ytÓJç†òg˜2@,’òO©ÌañyÇÊ»½ö£Cè[ƒ¨ì´2†ÖVÑJæéÍ€Äl9n:8·;Œ(ŧsØØËœæç”uÇr¶ à‰U:Ó‡X®õ,–í§ sœ<ÉiýSˆî[‚Ìúçs¼ñ áö÷oâD²pÒÁYv±Ü¥&j8Œ††OÛdz2 kŽÀÆOÓáï„'ˆ²– ¸±Ol¹Th»Ô¡VŸ2ÞöÄIl ¸º<ŽÎ¸ÞÏwo5:ÆFóÆæG0# î>K‰å®##ðžë­À–á¯-9ÎFëªH¼Æà=ÍÎ ƒ~ãþý—(žìæ–`ãñg꾞FAËw·ý÷UiÉÁØú.YíÝbŽ6p/Cñ>7ÔÜ(ͶøWZ0(ÆpÞ’ ûïèB»8A§îO†–-3tª†ª¦ÕJ) Ñ4µ²1„µ‡pyr=r®´D\^{¹è ž"³Wñ!š~ßQÖ>çÂÇFIT_4“ßr}ªÁš¯KÝ,–+ö¾6EO…õl$ùž\nä.pÆÁÇp{…m.L=T û<[Ä}I.Zë $Ž£ãù©Á÷ Ë·ÝN@™tnæêì@z4|\qŽM}ª]h²ÏÿÍ»T®eoþ“ ÙÓŸlä7Û~¥[>x9YÅÝhYTçÓéËc™%Ρ§p9å…ŸÚw)ßöFO\°Í í¡iO¤ôͺÖD~[§Š g‘¿Û”åïú’½Šº^GÌç5Ûî¬>6pþ›‰\6¹i9ƒYRá÷›dçý…[òÝò9sý—;ºÖU|SRTKMU ¡ž'º9Xî¬{IB]Öš³O3e‰å®µÃ«\1¿ñ[ðËĆq#†ðÕÕI¯6Ç ;ƒòç`|Ô€wîæ»/ÿïvÖ‡cîMß”dþµ‹Z ‘ΓÀëó[)ð‘UOUáÏG>˜ÊDTóBñ3ùœ×²yá×ap;7•\žD{¬KW,ÐŒÇä¶)àþ&GÂKm;F÷ziwë—Ç’ïè³²(ëウ…œ9®Ž¡ÿ®m3|°Öó89Ò°;q†—`糘ݺã%p"õUqà®®­çž®¢ÏŸ¶ì0 ïë¿|«+ÆeÄÔxsÔMŽ)ƒMM$Rf'·—5¤ ŽÙöZüd =HÝOïÐÔEÀGJéŒrÜë‘¥ 0Iˆ“Ôs5ÛŽåòÎßßËxãd2x~¹y…Áí¯¤1ÝÞhû`•üKâÝÖÓ>9ª-’0Öç˜G3\àN6ê=ã…Å÷.0ëJóŒK}«åÁý‘3šßàФ—Ù±Q/›®iÚK òè$Æ6ÌãøüÉÛqŽAß±ù,[⺨SxyÖ²eÀšÀŸÇ#[þkZ䌟QÙf? ¸?ŽÖ K{ˆlži­o™ÊÙ kKˆ?¼2qÜ€¶<Á€zo¾Ë’€^:iüŽ>Ìñ±¨³RÊ0pN+ù*Yøcž)ø¢¤‰¤5¶¨ãw÷˜K]üAYs’ñ‡MO5‘‘½ÐRš–5ä5Í’&ó·>å§ÙäwZø¦pgÀHæÎ{ [[ÒWH¯ZfÛw§kÄ”±ÍsKHh=ëÕDDDC¸Â""""""""""""¦wÆ:ª¢&Ýp›"""""ùî5”Öú ŠúÉ› 54NšiÑŒhËœ}€­Zñ“[Õq_Þ5UQs[]6)"yɆ§Gó Á?Ú.õWŸƒN3]qrÛ„’ͧÃ+ê¶’L<ˆžÎsKˆÆíc‡u±¨Ë‰Áß=× >-ñŸLtNc‚2 ZûûBkÅ_à§iêV*x]¿Re–Oäñù,/E®¯qq‹YÏQ,µ´²SäG)‹ž(ZÆ6,·o#~Jrñ»Œ4|-ÒÖ»»)i¤Ôw⨤´L^íËÞç4`œ·¨$û(Ä-MQ¬µµßTÕÑÒQÔ\ê]Q$4¬-®w\IÉêIêI=×Šæ˜ØÇgx'cÛ§ùà²o‡¾,Ôp£W›óm‘\éå¥4U4îw+Ý>XîÇ#¸+a| ¿iýQ¡iïÚz±Õ”õ'â’Lù­pرùèàsŸÏ¡]Ú†¦ßEc®¬»LÈ(!òTJþŒ`'è ·ktǸ[qÔV?6Z»Cã• ´µñeò1Û`ŽC&ý2Á‚¼vڪߙèÜÖÅn¥«ª©%ü¼ð˜]ïñËDZ=–ÄÆ1ïòT8˜ãó]33™Í0-îùöZòñiÂøwÄ[e§1雨|Ô#9ó4,õy›ŸÙvyIX‚Ó\ú Œuòº9à‘²E#v,sH-p÷±_\\µëÍ7AC#Ku†D@ü&VÜßì¼|@vÇaœÂº¦8{G)ßö¶ÇÉQ¼„g˜÷ÝÊ?åÿ5Ç—˜¯¡QÀ;b2¸òør1Ùc†ñ“GÅÅ»— ®U¢‚íJø#§’aˆj_,MF×v~6=zNË%tÙ À誩ºÅ^'8› xkSUM./·&¾–ÔÐÃ!¤ôÃæ÷8Ô á6Œ¸q3‰Ö};æsjçó®8'ʧgÅ4Ž88$l À/{FwY¯í§¤¦¸h8©i„"::¸™Ë 5Ñ4möí‘ê¢: ŽB–_g-¯¿k+°‰Îd4TÔ¡øÎòHçcò?ø¬Ëã'S×é¾}òÕ$ÑTÇU ]#29C™#ø_ü–½ª*™œåm#ÃÏé¸cÂË^œlm°U]$ó*ÞÑæn:†à0e£¾VB_=k ŒåÁ Æç› àóÉLyƒOÅ.6À÷?%|qðÜi^$Wm¥òìú:Wymøb¬oõ­>œÀ‡Ž™<øèTx…¤e½AóYgÃG«8uÄZ:æ¶(«ù(+£‘ØÈÜ»=‹N>™õSCÅÔì§ð㬘À×Á C³œóMÞ¹ZÒŒ8éþK`>*QÀ‰ØÂþj{íToç;YööÇ×*ôñ[U÷?úÎ^~S%!ÈvçÌ•Œ?MÊ‚\§ŽzsÁ7ÊGs“Ò@q·åÿbÙñÉvÄþ"1…Ë›|àçäŽœãØ’0¢ßÚ1s‚é».æj»Óª™ýØ`{üfj‚„äõÊöt-Êk>µ±ÝiÉÑÜiça¬‘¤%¶§º¡å¹ žn˜Ø¯¢|$‚:.xߨùª¹»­søÈŽH‹ J\~G+¾Ë`þ ¥•Ü#†w4ÉNÆPØñüÂÏ”õ –&<ŽG»Ocè»”/ñùrx¾Ó[>ð@ž8å0X<É øšÌ|ªž˜À [)sDD7ôú—ãF2ÿ š 5Ž.i¥~GQŠ˜É'ø­tSJá'!' à•²oTqðí¤˜\g†j¢[Óõ³Èü}€ú,²ùguŠ|[ÐT\¼;ë zf>:hêHå;2Y+Ïû¬vê)øyoˆLo™fªh|_Gü³ôX[ŠÊÎ#êv»o€í¾DïR_ìÜ’H¯ÚÖŸÌhŽJ:IÓÔ¹¯”ô?˜SA²´ìÞÞ „;ìIÏl,7ãRa†ÝJ x2¾’1ËïS_lek‰üã-9ÎFvðAN'ñgLøüšJ·ÒG6#ƶùú-‰"„h„1ÅÄm1VÜsÉh‘Ž© ›#þ¹YãÁ¥k+|:é¶±Áæ˜ÔÁ&;Q!À…˜ps“¹ù,Uârž*¾j0ƒÉ§n -É%¢'=0@ÿ¾V¸c«”ÉœœàgcÿŠÙ÷««®ŽÙA–ª¡Ëœøg…Ó)?„ÆÖg¡Ý½{`µôWr ÆtdL'ö° ü‰#軬v{µöâËu’×]t­x%”ôtîšW× h$©7à’N iMGx¦žÓt¢³TÇÊÿ¾BæD*Xà9C]‹ƒŽ˜Ý|~3øÝ|¿_ê¸yi¸Çž‹ÜÅ.ßx¨âÎêZÀGBàsÑXþ_<úúåht¯ûU¦wÔDÌX&GÍÄ|œVJð+¦L|{ÔµŒøi,´2Å9?ÖÊÑ'§àkºÿá9€öÙTî0åB=в¸ÉÃûWtvš¸†²Gþ¶† Šš¥ òH=· ú‚BÖ¤´Üôýê®Ïw£’’ãC3 ª…ãißæPzA ãá^´¯ÒZŠ’ñE+ƒ {\öró€sŒ­•ðÛXÑëmC¨­îimDcÌh…øßlôöϱÜ=‘4žiŽ^^qß”UÚp@È$–Ê…Á£b;‚¹FZñͲÌïØ…ÝÛm…Ø7B*;ðïƒè(¨† ¹Èç>£“Ñc¯´žx$¸èˆf†:á#ÏCŸ»– 9ú…Qg ¼b 5<¶»¤¼ºjæîzÂØ’E#Xàɸ=HÈBö|RñºÉÄ 'ÙôÝ¢h)MH|Õµ2~¶¤°róÁ!ƒáÉ ã¢ñ<$p¶¯ˆšì×ÍGçZ,œ•y„¶9&'1Fãû¹Ä¡¸î¶RÎ`ÀAv7 `ªºjâŽhù%c^3œÃ¡ c è²xß ¨ø‘Ãk®”©lB¢xüë|ï`?wªfñ¼ÝÚHß•ÎÖ¯kéj(«§¥«ÐUÓJè§ŒõŽF9§ஈyüñ¾\z©3sâtÚÛÁ¾ Ó·V6k½†¢ß ˜çõ”®™¢) îàZænSܨÂ9›);L£u°ÏvÖQx{·UZÃ_p¬©.Ûõ„Iåsù 7ýÕ÷xÓ”3ÃŽ£hüRËKÎÙ>{ù(OáùåœuÐÏ‘îôí#2ßRðù‚Ú(8ÀÏÕrî2{ö(âß\¨göÎ_qÑ4ÛòÇK_ ù¹ðƒÿUCÅëè¸[Q¬l°=Á’á @ [hÎj&!§ qÇ ì§ÙÄg²ì$ääç粫¹vëœ(ãÊ“î|qާeÂÅÉ8ø‹+OðkTk¯#•¤g$­†ø2|gÃí†(Í93½íÛ?×<žÃºÍñ1Â,sŒáw4¼°´;~Ç* xûÏã¦òÃeŒ޹2<óåôR‡ÂñÿïzÑ??óczx¯“Å´^w‡-fѱm$nü¦aÿ%­6¸6³n„ô["ðg8›Ã~–Ís 5p»—±m\ØéÍeùÆœ;åœm•cñ¾×psZR¾Qb¬.p.1 ^Ã×¶2¡w‚*¸©¼EYâåoúå dLϨ‹Ÿo£ ÅžsOókÞh¶È#qGÌ©WöuÐÛ_¨µ]mE0’ãOKM÷YK±Î”IƒÔ†*i¡P·í£FÊ:¾Š©™Ç¤‘•’|T™x ö7õ7ª–È!ŽÍHRvÎq¿e†|a\â¶p3Q>P9êhÍ,”_,гcØò¹ß@V»Øyäpö[7ðó3¥àމtŒ’7þ‡§io)ÈnAù,†ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ*-hø³â×|d»TÓJ_k¶l·€àZæFâ ÆÇüÎ÷y}G…mý=ãe–†x˜ûe½âç^×0=®Š#p9=üŒ#÷K½Ì›’ ~3ò@Ho’¯6Aù*mœÔõZÎãŒ5:¯Än£¢·BÙª.ãCNÖôyçä¾ï©Ð—&ê4Ê»Ž—­sƒ¥ ç4S‚yây³Ý®8ÈÈ;·'/xrá¡¿xhÕZKVÒTYa¿Ö¶ªÎ*â-tR±Ä埉­s˜Æï‚Z Nâ?õþ€ÒÓj-I¶X¤ätqUy²`ÉÈ×| ·ÈpÙÁÜ1R•¿g …•z÷QjKµ½´â<þ#+Áû,ýJœÕTðÔÅåO{2b:¬^7ð¯QYxåsÒ–Šjëì÷ —Ôк8d¯qq±sNA#cŒíœ,ù៻AÁyÔzžß÷+”œ”ôÍdͶœ~²Gü$õscØ€pÓê²…]4mšã‰wÊcŠË_p§¥£<Üð5î“åÌÀœå§e p{*ãm‚¡?’âàøŽ>]”Kñݹkéãâ}¢&ºJHMx‚8œçÉwêçËFü âd7}”4i0¼r‘‚r=Ô‡ð“ŨôEÚ²Ûz¨{l®‡ÏpiÉ­ wüEþ¿ Ær§¤Ñ†ÓðWK9ºI³›±ÇOÍ%Ï`!ü¤vÇUÖøÞ>&¼FñûC¡ koZ_EqNm¨©.PA4~•‰‚HÚé$:=œXyŽI»ee}-©lz–•Ö+½ Ò•íl´³ãûÀnÓìz/Yä¶:÷Unp9±žøUDB¬.>ë˜øw»Σ}lFžÜÒ3ÏU ånàˆû4¨À^VñcŠñÚªä’J^+ïunq$Â$Ë›Ÿß‘Ç”wÜ»”­•RÓAKG 5,,†ž68¢kpÆŒØ:ûK?þ_äœâå¶{ªÿß衺*‚[¸ÙvÒDꪸiÚpédk>¤ãüÖØ83¡lÜ<áõ·OYéÙlM’ªQø§˜´s½Ç¾ òEÔã’H9\HÛlåqv@íí‚ —Žî»Nëè5žœ¶Ù¨Ž*K[ðÅZÁñØyø‡rZÿE‰ýfp} úEk¢£¨‚'¹±ÊÙ7âÀŒúà€WÍ\ì䃚ٷ†Z[ø¢iÚðþ{S*6 ÊçHFÝòò>ŠÐñÓ9‡ÃýS®ºR0ޏÅßü•¼4S:»z&XœYwŠlHì€ç>¿ùÀî¶k;Ñò¸½¿vZìˆ8þf0ãÊ\GrNÿÅ!8Æß8ê¡×Ú?NÑ.‡­n~8®¸ú`Àà?â*/cDÆéµŽ&ró¾ãNÖó ™7[b‡ªQÿµxÛ¿ÄW¡ø‡¡ ›ƒ³Ð•Ìc Øü±²„_h\LgôÝ@Á.²9ŽÜòÎïþÙEzáñ0“†ú…°oà,„‡>;•TY'v· †ü¾"~«=2~lœãºúÅ60áØ(-ãò•âíºº ü:Õ ̓ÞàC»‚ÒЩIárœÓø|Ñ1?œ“lkþ-Äç;òßeOðù­ƒ²èǨsqÝkÏ$óºØ'€ÊÆTpÆ#-æ®75Ãf“Èð¶Ì•žÝ‚íÇBUƹa‡ƒúÇΖÌÖ:ºxÌå{àsZÑêI=:•¼KæøÑ®»gUç”n?Ô§þ2±N±©ó5eâI9‰’¾¡Ç>¦W,ýöy£ãEÕ³LÖÈý;;b<Ïõˆ ±ê@nqó=”÷c@~Ar'>‹xàh>.åÇðÖÑïþ°ÀµåùšÑûJbýb’: j<ö}íòу ?”ÖÊC½1Ì÷¦ýB–”ò²hƒãpsrZïƒò]‡¢†ŸhÙõ¢ê!«>øÌj÷û=|öðr뀛}—Ê?ü(³þJH†Œ’AÊÁ¾7*¡¦à á³y5rSSÅ·?ÞéäÁÿ Oü–¾iË]!ÆØ|ò¶aá…óKÀMú†–¼ÛšíÎIÎåqϨÁY->ˆ¨V,ñO®ÿ <»\)j7ZæýÂߎ¢Y6.Ýg3³êÖ;™PìÊ6ú-ƒxÐ#J𡺖²Ë–¤pªÍø™J6„ˆeûöú)ìãd*gƒ×*vFFôÊ üCáïêµï (Küd²–¬µÓÓ_îNøq™!ÊÑŒe½”¿Ñ—hÅœK5}7!.™ÓU¶#Ôààã9ßsó_¢ã ì…î»ëû+^×rº*IY#]œ`¶ã·Eáj Ž”ãîƒfÉwšk Þ Ã-u+ì—®K_â†ËT@lW82êY~vîb=7øšwÉn2JÛr ¹[£¸Û«i«håo4SÓÊ$cǨpØýÓŒ•ñ¸9§¡ ’oß Øn ÿy%ßZÑh;sä’žÐÆÍPÆn$ªe­Û© ÀÇ\½H¿ ¼3‹†¼0££¨§k/·6®ï!ÝÆb2"ùF.Ûg˜÷YDAŒwP×í.“‡ÄoŸÒ[ÿû*†Èª½Í!mŽ¦í •´òKO:0ó ñÌ7àŒ…²ž q‹Hë9E$¢‚ñ~UE¢I¦„°`ò“1»g™£¡ä “†ÜHÒG'ˆm|§ÊMÀìתs}:‘܈ouË£ÉØïÑqpÉèï”PûFà'G霞FWÔ°Ž]²èšFÿá?÷ +Û€ÖÖÝøÕ£-ï`‘’Þ©yÚz‰ZçVÒDu™¥Ìødw(ÜH=®7AÜç+ë‹<ûŽëµÙÏ/ñÂäÒH#ll ÿÚ0“Š–yò,AîmÍ;ÿûUëœ`ê1ž¾Ë`^(ª(¼=Ûdц×Ü*ê K„{œly£w~˜Yæ>@Á—glóT|‚ˆ¸€N©Q³Æ 5·ïV‹¾¡§»6(›GQÞ ÷¸8ó Hç‘é…š¸¦îzKƒÚ_N^¾ …YṖr<’âÌ.q‘× ÊñJ@ðù­‡ÿÛÐi«Y©2crFAöSãÀ<œ¬sys-ú¥ý†1-ßsû¾ß.ç6Ùoö+èökí²àÉcó)ªY!s}pÒOe¼bZ¦¸x{ÔRÆd3[ÝkÙ ‘¡ùÏ`Ç8ýоëì6®ØÁÊÖè ê=7Ê¡n{ïØ®9ÇËä¸ Àéù­uq²k¦…ñS{½SLúZªk¿ß㑎Æ9@qÜ‚Zâ7ä±çu&¤»ë*øoÑÏK$ò™I(©%Í7çæÈlŽªÊx&&È\IsˆßØù©;àUõâ“VM C¼ªj«— qk|Ù<ñÍ~ˆÀ;í鼉ãW‡ÅmCG~¹U\-WHÚØj§¡äÿ[Œts4lé±7‡Ú3Oè]%G¥ôí#¡·Rs6Y sœâç9Îvä—}= ?ý¡z–[/ ¨tÕ0º‚´Ž:G$#êóúü1ë –ãn™¬¢¬ôõµðÐW‡¸ˆßO4cù‡ösÌ= A[6¬ûýUÓîä±–æ°™1ø¤9ü>Ã×ò^œ c!dl­`ÐÙv]s<€Þ§¿¢è’03ÜãªçÈ‘¸ôwU„±\©¯6Z½¹èë©ã¨Ç©cÚßàWÚW48aÍ{®,¬q-þj•4ðUSËOS sC+K$ŽF‡5í#v ¨çÆ :OPS>¿@4½ëÎó|·ºŠVòã“Õ|A§™ ãâ§#§Lë^$ðYMf¬Š¦†XgÍ]ª¤ŸºÖ78.ob:HÕ<øQ¯ô×4Ó/Zf´;”ÔÑÉ´Ô’c%o×b68Ø•yµÙŒUãë}CG¤ô…ßS\Kk£–®F´€ç†4»•¹Û™Ä=ÈZûá˜×¼WãZ¶†•ÑêH+î—‡GH÷HêšìóØËCzg[ósgoBàä· &ý¤P·ú¥&%œÌ¹ÌÑ“ñ`Ä3o„gè ê+ç—Í!§8‰Iw×ax³C Üô¦6¼9å‡ò»cƒëÝOΆÐPÒ¶=C¥[oŠ6ÒrXëiéØã¼Ì09˜o6ZGVqÔ=ãÍ}u‹RÛ©¨âu¾¶‘¹‘Ìg,ѽ Æè̘àgÿi¾ù ÖàçïÜ<ÔÑÞì5Ž@ö}æÎÄuQ:7ûž£9 f<:ÖV-y¤©u.žšSGQæJe…ã¬o=‰Á#\cØœ'ìáʇØv\2IPoǧ…ZÒëûu8í@<ŠÜ £­cvw·™s·xÞOUfx.sFÎÄ/ªÑ&&òÎH;à-”øQ¬Š¿ÃÆ–'É!†’Jgóà9¯Šg±Ãbvm펋Ïñ˜þNÚ„\_Lœ“3r7öʆ¾jþáâFN\ÀÓqwÏ›£_ó[.êå±À9÷÷B= Œ_hœ,w¬3€9Ù~ o® 4ÄÿÕ ïe“|*ÒßÚ2d\<ÌÆFG#üïÛáßÛ+cšv{¥Y‘×Ji¢}$ާ‰ÏªŽWN>dpcO§å…ï³<ãwï«FÝ;(Kö…ÑOtÕÐÓ¿îÕ6ƒNÙˆøK£•Î-Ï®þª+\#Võ鎞Šyx¸¾nÒÓ8¹ÂŽíWýÒ'å—ÍHzwCcÝËõ¶uβÒ:n8*õ.¥¢µ·²9]ñH=ZÐ œ{l­>k›G¸«|¹iZÊçÚíVzz:Ï5¼‘TÏ$Ò>'µ„sÆ2@Iê$˜1ñc+ÊÕöZ]K¥®– È¡’ úWÓ¹³3™pÀ$wÁÁú-pÖð‹”w©-ïÐ×YäŽPÏ6Bü»Áàã—ùªapÇš·†>/zŠž–³U¼ÖU»WHÆ>W· 1<0¸81¬rŒ¹¸Î1‚—‹æš»C<&ºÕs¢p,%®†hœÞýˆSÃúãžk1©õ\—ºè¤£dužž)`åóFã™ÛuÁol¨IPÊë]t”õ –’¾Ž Å;y¹_¬qdt!À©a 8k¢cßâü=;­b>‘ì¬s^×Fèä-s \ÒBà©Mö~¾¢>#ß(d¦”Ó>לÿ,ò¶F¼9‡›ݯvFBœc°UQ;íüÛÑoswý!PÜŽÀÆÕ_³š«ŸNë*GHÒöWSÈŒÿ…K°ƒÀ“æ¸Üé0''Ÿ¶?<ŸE¯è2¿”s6üÖȼ²&ðO¾ž©ÕIç9œÌ tnó\$aÆÄ ˜>˜î²â"*Áʪ""""""""""""£³p{*¢'tDBˆˆ©ßª·8—¬-zD\õMâ@)¨¡. ý©^vdm÷qÀZ¢ÖËŽ§Õw=AvÓW\*¤žwŸÞs‰ÀìèØS/À—«¬ðž'êVÅ5u(e’þ6Âñ—TÛ¸ ïÊIèज़ZG\.]3ò\FûŸ¢¡-è¸às7ú¨Uö…i))µ]‡XÃm-Ê‘Öê¹G—0žùs ü5eqkLIÄ^hî"ØhßQxŠÚÛuÖ(‡4•§&2yGW´™-pýÕ€­VË•ÚàË}ªßW_Y!!”ôкYޏkA%N<7ªÓ:å|¿Úî4WKÅkcû¥u9„Ç 8%Žk93¤q$ãð zœåךwOÞ¦²\nÔ·AñEQ+cµåÀIè HÏó^µ—Wiû¬N4—j‰c沞vËÊ[³¿ ;¶TñÁÄz­gÅ94ø¡¨¡¡Ó’–6NÞWLò~)±û®¥¾­Áî°ÿmÒÞ8…¦í09¬š¶íKMÐ9òµ Ÿ©[sóäî}ÂíóUEóTõÏBz®±‚É÷\Éø3Ÿ—eâêûs5FŒ¿iƼ5÷mEqÜ4ɘ~ejzëMQo¸Él¸ÓKIUG+ ©†Fò¾)K\Â;A\ìÅÂbÑÌæó {z­Œx0ÔR_xAK,21Öyå órÙw3p²G²Í]BvEB>Š„n ¶¸ ô޽µþŒÕ–K­;waÉõd!Íú¡Wø]­8 ©F©Ð÷[³ôÛÈ×Å)ÒñOÊ-98q=ý}-ãZ[àŽ-En¶_˜Ø÷”8ÒNãê\Ðèþ‚1óWGŒªïÒ”Œ¤Ò4ì¢3ƒV'¯3Jøñ»b-Ž0ÇzsaÛ³ÆtÖ áÅ·Mh«Ø¯Žé(–âØY‡67ó¥Ø$göVUð]iÓ6® ÛÝd¹A_p¸®ÝŸÉs'piÝ¡­½0yIVmÜìFÞë‹Áë±ÇP£7Ú,În Z$,is5?7h4Õù € ""Þ¼Bžè[Ö›»ÓÔ\ÌTXØ@tpÊI2FìZÇÓœí¾EÕâ ólÔzý&Z,U–Ñ}”׺icy•­}<%¡¿XÓÎÝÎÀJŠQ<±üÍë‚ÎøÁYà Nö×:J7\ð.p7âs1žY˜?y½Çí Ž¸#cT“EQMDkã•{\sHÈ ŽÇ²îÆÇlze¸ îºÜ§©V/ô4\DáeçJ¹þ]UDbZ ’¦3ÍIè ¤ú8­ZÞ-Õ¶›M¶åK%%e,®Šx$toiÁ.ª9<¹Ã¾alÀmgÞø D€ÒÞª¢<ÇbHŽO‡~Ÿ矚xñ¬l u”C%]ÆÂvòÜ[ŸSØw†Ü¸Çiâö’ºNêfSÓ^i]+êN#Ž7Hç’zr‡g±­¥ráß"¹t;„wPs°Q«ío/¬ïÁøu#§cKR 1î3²Ì~ `3x’Òîå.l-¬•Û㤛óÂØž×O(!¾d¼Ü¸=€ûíì½V¸>¡v}UYÔ€‹ÇXø©£Å‚í<´sÁ(¨¡®„s>šP1žS³šFAiê;‚åá+ˆlÖÆÏKQASh“ÌtW’üFÆ´8´IâkÏÂ=p¸á/m\5Ðöý5Dèj Kªk£¦ò]U)ë#›—`‘ÔôW-ƶŽßJúÊŒa †ŒŒœNÈekËĦ°¹êŽ2ßê+Þã¾QCKr"˜ø[óq'Ü•3¼*h)xÂ+}-—ɽ\Üë…ɧñ¶Gã’2°ÀÖã×›Õe“ÆIÜ•òÜkéè_LÙßÊjglõÁqÎÞÝÔZãÜ{l¢ßÚ¤[Y¡¬ºÖ výêÕY÷Z—´n`˜`@ö´ þú×áïlw§Êc£3¶–àÐvt|2ëËð=X×ã{E·Kq²ªãMe¡‡ôƒ00Ñ6yfWïñ«oæá¯iëg{š¸Šk¬C~h‰ÙãûL8w¸Öʨ炦š:šycžžhÄ‘HֽނpA_KHÆ:.`€qõÝWª°xýªn }ßKÛ+.µ äûÁ‡–BÀàç9¸'êUác´Û¬ÔQÛh᥆(£…­cwåŒõ8k@ìÞŠ*ý¢Ÿþ èæóp¨ÿëAy_g& Öç8xuåÏlK¾¾É¹X[ƽ­ðéœ~*©*›ïŠˆÚáqZè¡.t„ž~«eÞèéè¼Ì%ØþØôÛøpÒÚãºfÁ]I÷Š *|úÈÿeðÄÃ#šïcÊþòÚdlk#kXÀ֚Ѱhìr@ÿš4ü#|ªãÐÁÀ€OÈwþ)Ë×ùabzV‹Sð>úʨe’{|&º–HÈ "Üø'ró4õ<¯8QÃn°e’hÚêˆá£¯ªûå¾£ðšzÞPο»#ZÖœç­#æié)(šÏÒôöê*JÊ–¶*Ùb¦ds9ÍÄŽhã~ªxÝÔZñœ]¬·Ü[s¶ØZb}©žsÍ=@dx3Æp\|ÂŒ‘³I<¡Gʺʚ©ùç–G‚÷’p?íÉú¯w†ZÆã¡5Õ§U[À–[}@‘мü33£ã>Îi#=ºõ TxáUô†ŸâÖƒ±Õ¶éYCª­r¹¾tôÄþ¦F€yyÃz€winmo Þuƒx¥Gª5ņ®Éj°J*£ed|©©nñŒ‚×aåØ#à îH™Ôz•ͶH ?’)e”¹î"YÇF `èZ9ÎO\òá\£q•SóT÷ £i ß—§^Š¢œpâWÇZàX@w1ϧEJYZÀ20ßu|mé}&ý~5,:‚Ž–çWNÖWÛb‹Ìy‘v%%§ .h`å#®ý׃á·Lp;PR—qPÜ(®PÔ=¬ ’ SÒUÅ‚Fdk|ÌõÈoAŒî¦õƒYpÎŽ”v]I¥h©XÞvÃOW ,h=ùAt^µ>®Ò•XúžÉ70¾]|NÈõÙËÖ¦¨§©‹Í§ž9ãÉñ¸8du ´œ ÁÜUM•©Å­5qÕü<½iËMîk=um9d5Qœqýùø]ðJÕ®ºÒ:‹Dê)ìšÙ=¶ãË¢xÈ{{=Ž9§+|¹áÁÄœö+›g“-q-oAì²çêõÄzÂËW¢¨«]ZúØb†vÓÊêaÌðÏ×9ƒ^ÿNÃ+ev·W¾ÙHëœpG]ä°Ô²]dÀæ '~\çì»\FwÑCo´_Z2FXø}I#å<]k·ø!ÑÄßm‹ÉíPÝs•üïæ k6 l1Ÿ¯U¨µ†ÃÀû¦÷¨ªµf«´2–’ÕI&`´W3É|ÜÄòàH `oÕ`e÷[e,kýålGÁf¸fªá=ž¦ >ç`"‘ísòó3¾@|?áYÓ¶øÏòG7˜IÙSn§ÂVµí-8 ŒwÎzŒ(ãë†ZM3IÄKc_M\+™GUh,|o Æ?ia¿ã#`PÄ6è§×Ùè\îÞ¾&Ç©' >™¦¦$cÓ?Íg½[§,š²ÁW`ÔVÊ{•²¨rÍO( BÒ0ZáÙÀ‚E…4·…} aâ 6¡Žººãg€yÌ´VžnZ€àæ;Ío){Ààs¶Kº)wÄOæ¹ ƒ’ <Äôú,]âg†¹`u\è¤Ô£i^÷Âjê)Œ¸îRâHòV¹p w˜^ê„Ô¨ÓöƒØîÚ.´ꊘí—-TÑo÷x_is†3ËžPOA¶U‡ösײ-Sª­n}E¾ †ó­ã>гõV·JÇ7õ žgµ®ü-qôÆ@Y÷ʪ®=ÕFªùÝJǹÅýÉè¾iè$k¢4ób6ÉÏ#Îbñû öZ¦âÍÒárâ. ©¯¸Ëq¨uÊ >¦Hü·JŽk\[û?aÙ[ÕBòøÜ[€×úAÁ˜Éæß+²–å37FŽ›Ëï¶ê{­º¥“P\*édhp2A3ãpÎ;´Žªü±q÷ŠVsÍE®oDôÿZ˜UÊpð÷§|^ñ.á•ÿ ï€ÞgUP˜ä;œáÑ9ÿtôè²%Ælbó¡÷Îyè®9$c÷ÁÿYdêo|(š‚–­×:è…A-tn£q|88øÀÎÁ Œ¬¡¦5EƒSÛ௰Ýi«éêçÄè¹kN î7#¨TIûDìz¢j»§ÓÕéˆèØ"…¾e%Kˆççxs]È1¾Å®ßxsg 5mÊÙ¡uæ…ŒÜnÔ”—º;LR ]ÌYæGÏÈ]œìc` J²¸ë»· uäú~½æªŠFùÖúß,µµPžþÎiÙÃ;b œþ î”—?švrCè=,ÍÏG‰žìõèCÁY˜sîÎnR0}v_-Ò®–ÝEU_[+b¦¥…ÓÏ!8 cZ\â}Z§ã´«×¼D¼êŠ’à+ª9¡ŒœùP·hØ>MYȽîXÙ©µÕOJgÜk¢¦y‡`kÜ-ÎÙ•’üLp~ˬttWùoU—6§šH„.§…œ¡­-vy‹Å·à!av‚H©U•¥’9„`´àqÕvDÖ‰:ì²§‡Þ$Vðß_ÛïñºWÛœL7*f¸5;ºçÕÌÈ{}Æ:¶iIQU$Ut²²X&cdŠFžÇ ‚¸]¸wcüÀ¸ûv\\0F@è°Úï•gâËn”¤oý¢?ÍkÉ® äû:n^ê{Xa ¦¼¶¨;úØÒ>žWñR8B"ѶOÌ…NC÷9ê¹ó@Ücá'Û*ŽÀÇä¾jšjj¦>*ªhjXæÞÙckÁaêÓ‘¸>‹¸7ÑðòþÓÑt>‘€*I"ô#ò=>аâ/ëà{Ðüýiù›·áöiÎ~yÿ%óÏr¡¤$ÕUEo^wc úñß„öÈŸ$ÚΆg48†S5ò9Øê_ªÇ7ïÚ Å¶»êåñòÊvçêIÇÑc½Uã#QL\Í=¥ìÖÐHå}d²U’ÜŽÍòÀÛ>«ñK‹ºÃˆÁ¦»ýî:iúx™OL‡˜Cy6ˆ“·Ug¥Q¦d>kœÈÁ-ÉÈë…åÔTÊe“Óa•Á•3—žRKœ¥¯€Ý ¨£»Vqí%6˜u´±º±¿ÎækŒ‘ç𵼤ôÝÀg|L 5ÓÚŠÓØ/ûœLÇ;©*'.Ûsr=W­°¢£·íèã/lÜT¶>çw"׬#ŽX஢šw€çùM‘Ž,9?´Òâ9ˆëûˆ:6ÿ¡umn™ÔtfšáHì7d¬?†FÚc†àþx …o³<Ã|c|ú.ØœcasNîÉsŽºv<9®Æ?Šôé/°IÜËNp=7WµƒÜE°Í ÖwØÛý\rUºh›òŽNf‘¬/ø—HÆEV,7чIWop{ÎFÿª{;vÖOÑ~0èj'd¯KýÞ3øª­ÕøÜîbx¦:8¬û¡¸¡µ›ZÍ=¨¨ªj_¿Ýÿ.qíÈìG¶UãŸRU$k$c£5ÍpÚáGpB·¬šGXµ Eþɦ-Û¥DFª©)[äi!ÄP3’ÐIöWvÏòX3ÇŽN×Dׯ*>õãkªÂ@Èy '2a®?Üd;²‡|9á&¶×¶øª´Ý£ïTÏtÌ`±ñr1ç£\D€´;Ø8è¶ÁíÍÃË^™•5¯¦c$³¸^ç84CZ 8·¾J»³óUæµ¥Î!­$“° x·ñ A\ˆÑ4QÉ›tD†H[þÍ„uh;“Ðãm—¥àSˆö{“n:^¹žEö¢C$syñ5¹åÇb0O©ÉôRÅçߦ ïÝwŽˆˆˆˆˆˆˆˆˆˆˆˆ¨á‘‚¨ZÛýIÇe@AÎ;ÈIUÆýUSº¡ c'®ÁW{*uDÎþØQƒÇë/ÕšKOÒ[­×9mÑWóUI y¢’WµÌ…œ­%Îvy»`sä/›Ã¿† }-ªâ%3¦¸¸6xmâ8o7‰Ý/@v9Rž628Ûlkцµ£@¹.~™+誈‹x˜á|WÒTðQTÁC~¶Jf·ÔËZìŒ>ž¡ŽØät-ißZöÖ6+î“¿ÔÙ5²¦Õp€s:˜G33€ö“³šH8pÛò^Ÿ ¸‹©45ÖZë-Åð‰G,Ôï%ÐÎ3ÑíÏäAv*ïÕ÷ÎñBëÒóES¥u¯ï5”ò:¢–¡£©‘®øÃú|Y;uÊ»¸}]EÂIª.6)aÕ÷z¨ä|wØ«ŸRØØràf7Óy\zg Ó¬½ñ6»’¾è æŒ:Ž’®§ˆT€y#ryØã†’÷\‡„ Âí ¨ø“®(ô¥²) –i\*§19Ì£¹ç‘øè0Æ]€7+hÖKm-šÏCg·Æc¢ ¦Ž–ž2I-Ž6†´gäëÐnq’¨$i ëš"*=ÍcKÞàÖ´d’pZ¢ãµÖÝyâö¤ºZ˜ß¸TWÈøCvk›ÍÔ|÷?UæðÏGTkkkÒÔ—+}MÉÏŽžjÂD^`cœÖ?o(À;¸—âð‡Å÷ü.†Áܾã‘üUÇIà¯]>&Š]¦âÈ%Á‚gàãû¡s©ða®Y¼[¦¥<»¶f{yOæ¾3àlj¨œ¾ÿ¦ÖÆ]l³#ÇFã“lúö^]w„,ÒUG ;,uÑ=/ž:îF°“ЇN69wÒø?â›òùª¬0g §HH ìÞýX÷Sð_‹r„V]´•Ê nQ‰[ Éq¸c‰8ØzðÒé{IQíö+íK£åò礢˜àò‡<4†ä–f’:•ñj=m­*¬Ó7«Ýú[{› ¬¢­ª™Ìk[ñFZÇ’ÁÈÀ¹¼*:ÁKÆ› ËR½¤£’S™&òØ* ÚÖ=Î;Îbüm’Ð=VgûE.Öšê½%i¡¸STÖ[ÝT긢œ9ð  ™ÎÑøyšAõ}ÿg\:“jZ‰ ãL˜ãŠ2ù–jòîFçäwÄGöTÀywš×5Ä07pÁÜ{Ÿu†¼Vk‘§´\ºFŠ’š¦éªí·xÅUG• PELçLâ|´ò±»eÄo¶ñKÀשõ¿&¼Ýé!«³iø³Å3öK<¡Ì…¥§®0÷çÖ1ê°ž¯´ÉaÕ—{$£ ­š˜Œçð<·¯~‹Ê_Eº®j …5u9ji[4dôæi²ïŒËà¾ñæã4²k|6úÛËNGúX¦÷Ë¥qϺÃm8p88)Ôû¯²Ë k¹I9Î1Û+è¢s‹ÄCpí°¶AàûRϨøau[Ì•Þ{kÞçdŸ$áŸð¢Ìl;*:åq-ÈÜî°§Ê'Õør¿=æ4µ³ãÀ0àJÖÜŽ$û+“Bë}M£kW¦ïwT„µïû­C˜Ù z´=¿Ùp!m7BÝëoú6×|«£u5´Í™Ño‚ápÈÈpdw ä‚×®¶}ΫUSþû¿—¢o&¬t¤sçetüCÄœï°UÎǪ‘ëºëýŒàòÚα¯üaá…ƒà¸ë‹/>\ß.šqRàáÔ8EÍÊ~xXËTø´áå¶7‹EÞó+]ð">üÎ$ã豞 ñ•©)M1c¡®<¦­ÒT¹Ãl„³¯ªÇŸÄÇ/-’#«¦¡‚OŘk#¶k´qµ¾MT‚®6´tk[0x`íðágÍã_.8µ–Ÿ¦™¤jm®1»=ÉäÉßEŸtGøu«Ûm:šŽ*™1ËIXñO6ç»ÇÙ¤«É÷+x¹2Úë…+k¤g;)Lí9¿¼œã®ê0ý¢­®CHÔÂÙ>âÛ”ñÍ(; À>¡²ºT[àçµg .õ:~â!Ž«þ•M3<È'ÇNfžã³¨Î Yh¿š~²(Y©´íMÏõ“QJ&gÏ•ØpšËºkŒü2ÔQƒA¬-qK€LU’Šw{|xî:¯øåd‘6V=¯à9®iÈ ô ÷ 0øÍã\v::žiÚ’.5âëS‡ú´ni>V{9Ãú4]±ï†ï Öým§¦\@mÂšŠ¼µÖªeò_,Y Í&ZHk¶,Æ20zœ7¬4ƨàoÛ@ùÝe¶¡•–ÚÖSvcàã•ÍõnálüGµq7F³PPE÷jÀDuôÁÙò&gÜ´õöù+ùŽËºç+š"""""""""""ʃ`0„žÊ™äªãÛdéßeLdúaW¶ã 8ÁѤ9 Æ2ªÝ›Œ` “ñž¡USºâX×¹®sZKNZHèpFGБõ\רu®ákµKWu÷Y$düOäÒ8ãÐ5§p½Zw9Ôñ¹ä‚qÓ+°€FÊ""*`Ý¥ÅéN$éóeÕ6áS5=C$ôÏýèßÕ§a‘ÐãpTLâGƒ½QCQ%Fƒ½Ò^hÜì²–½Â †·¾#þU‡ï| ãŽoõÞ_e<ÄC«<Â\¾KO8ÀÚæ2“‡šÊ)K²×:Ñ<`^g4óÊËšÃÿë¼—×Ý[¦©^ZMÙî Ž"AÛ”‘î¥/¸=¦8Qc–šÒd«¹Õµ¿¸MŽyH…¸üód†ï×rVG#?ˆãoUÅØ‚Óó\\[ÊÖ8òûes¦’f/634`y¬ÌÏLúew",mâoQ1ÀÝOpŽo*yi ,¹t¿Þø.?E¬ºwÍê×9‘dpÜ0€O×eßgšZ*êJªy¦§ž,rFò×1í<ÍsHÜ@9õ eÞøŠÞ&pÞ–éZæþš¡?u¹†ŽPé@Ú@Ø{pìv9ôY?‘¿¼}:ªµ­høBâŸELnU pËC¹NFFpUƹ…®/ÁÎpHþJÁÖ\Ꭾ©e]óG[æ©d-€M};ùX Œ·›”4œàÛ,{xðŸÃYêéeµT]ìÐÃY$0ÈÙ&:½Î{Iæ=IÎ=€Pùxª¹Öê*ª*(ŒI3‹ŸÈÐÀwìÐ3…³O :li®iJ ¢ŒT:•ÕR¸®™î“9îpæŒû“žÑÊp7öZüûBuµüi¤±Ç)Ù­q³’ÊL?V˜ÇÑgßz^+'hî Ÿš¢ù]-sÝ °75žøòÉù¸¨ŸãH¿Hñöý#s(îÅ·ZB\ sfÉyöÄ­•»öhX}^¥Ð:Ÿˆü£ÖV:jû½~šœÙ*¨á‰ÓM%0ýl2°4;“Îte»ò±ŒÆ8ñ¸[Áís®«%’²šØÞ~{…M+ÄÌÈ1°‘‡¿ ŽQ¸=q…‘è<4VÖñÞ Is–+@µSÝêk*¢òæm;ÈdŒßâóÚÜìÉÎ7¶|Upú×Âî) 5‡ïBÑSCm(žB÷7%Ìpæïñ0Ÿl¬Uov*X.Tâû<ï†}©´Ã›ñ[®1Õ‡Õ³°Œ|áwæ¥IüC¢dc×n¨G§ä%ñY®,š'ƒ×vÜ §¬ª»Âû} ÍHöîâßÝhø‰õåÂÖ9æ·'nÊè᎑®ÖºêÍ¥(Il×Z–Âéy¼˜ÎïÔ5¹wÑlωºÒƒ†Z0]ë) M%+&¡°Ž`ÐÐOW;°¨×|ñ…¨…S™l°X)bÉäI;Èíœ9ŸÈ¯·NxÇ’(Ü5F™‚ snÆ@.Ûg“œut×xÁÐ̶²ku‚ñSXK„”ò>8ØÌ ¿'9ì)Ö¾,øƒrÚ÷NÄsäÂ*&>üÒ‚ß§"Á:Ë\ê]]Zjõ%êºñ8qtn¬”ÈØóÔ1§á`öhx¶RÒÞn§;.¹ùa$o¹Êé|\Òró‘;•îY4~¦»ÑÕÕ[ìuóÓRÑšÙ§8FØ#ŸœŒ`–¸ ÷-#±YMøoâ­óNT_(ìQ3Ëpòh檓Է%®sy@ÄF{e^v¼J©ds\®v |~Yt‘Ç3ç™§|4ÐÒO÷±î¯]-àÞ˜BfÕвG3û­¾oÂÒYÎày0yÛöå=°¾Ý7á‚[¥t×éIEÈ>éKM\éO9'g»”9z`’;,ÂÞèbÊ #b·–ÕyÂWÛÛRøÁ‘Žxòä³™¬- 7˜6W5“@éÛ5-¶–’žSKm¤}%,p²7K§á`<Ñ0ç®Ûä¯Vßj³i«T¬²Ùèèi⌿ȣ±‡r·a°Üàa`Nx–—ˆ|B§Òwm9Kný"ÉC,¹åŽc Ëdæ’ÖÇ}”‘ ïôX/Ç<ÒEáö¹Œqce¹QÆñŸÄ<À쨒׻š÷îNãÕl‹Â&Ÿ¹iþéØîu’TKp×(ã2s2žðøãg ä!ÄvsÞ²Ø0y¾ªÃñ WµÔÓ·™®°UÂ3ûÒDæ4ïîà¡ï€ƒ-W¹¹Ÿú‹-[݃³|MÁöÉ\)ýñ/:ùc³Þé%£½Ú-×JiX$5”¬™hpx8€æƒ¿p ±+ø ÚgSÍûc{K\`‰Ð¿ÍvÎa-ç d A´u…\(¶Óq±T*inÈáólÅí#Ômó Ý|Ö‰žm|@¥’ 2ÑWms]œÿeØÆ?ŠèªðW}òZiuõ±îïæPHÑœáǾ~‹É¬ðY®ôÚ³MÍ. åp™ƒ9g”öÉéì°ç81Ä^ƒ6¤ÓuQÑÿO¦ý}.3¶dfC=ƒùJ°¥‰ã|sØßÑWâ8€ø@ë•öÑ×ÍZ6Áèp½K&¨¹[¯´+mKèªéfl´óBy]‡B1ü}FÅN‹u/ˆŸ 7ˆ ‚~Š%¡®t5Ð# tHnzò½ÁkÞVóNÄ÷?É}v±Rú–QÇÉ+ƒ#Á¿8'mý×»~´j=výy±Ý-Õ‘È$5Ïcs~Ø †’1׌¯³MqQézƒ&Ÿ¾\mäaÜ´•OŒ;8êÖÐlA^EUö¾óªz¼†Ü$¨¬5B ’'<À¸?‡p¥¶ñr\áOÒT…¡¡öÙLd vcò0=2°_ˆþ)]x¡¨¤”ÄØìöª©YmŠ:v*'{€$¹Á NÎËÀ^%]¸gªèµ 1O-ºsåVÓC*bÎ=9›ÔÐBVÈì·;múÓCvµÔ²¦Š²ÔSHÀ摶Gסè}ÂõXrÕTïóDDDDDDDDDDE@ìNêÇCëÝW'8 ’GüèNßòTyôèGNЧ¢á+œÂ7FôÎë–7ö¨ æºWRÛ-µ7é›-,NšipÆŒ’~BŽ kjþ*ø­¹jÚú—š+e¾ ÛéŽá‘¹Ì­hõ"RISvá ±ÍÊ3Ž™\ÑEÄ4c~IÈ ¹Á9B$œuUpô\[ʃЀªî\àï°¸¸slמÁG^-ø Ó–V\ìÚQ•3Þég’›ï5ãîñÉð9Ùåp팃챆Ž+ñ³ŒÕUÛxÕ¥šÖ\£„sci<’8†ÆÖs9ˆ8êTé‚_2Høß œ3Èüs7Øà‘ùØŠ$}¢š’X­ÚkJA1 ¨|µ•,¨ly2õap{@²åá‰÷Ù)ÚʪöºjYîô%“;‘çrÒæ½¤ìõQ¢ sI8ÿµIŸ Úø·6Ÿ•òo´/ÈóáV’?¸ÙF~JxàrïÓS)ߢ¡¸N¿$ùaqx#q‚ºÙ6]ÊAÇ)õQkÇ®€Ó?Ð Î Òiú1¨_WMeÄÔHÙ<¡ú¶â0îG;v4’3€=7Áæ§—Tp Ã=A樠 •Ùêc? ÿtµeõ«oµ²\\‘–Ê\ÒpH ‡`ž›¬˹™°åßòRcÀå”|_®µÍW0ðÜoŒû-dUC45ÓTBúz¸œcžXøÞÒÓ¸ ‚+ç•’6D£î3ß =KÁ- 8课p³Zñ*iáÒ63Y;š**e•ÅFF\ãרV|Ò^ nÓD$ÕšÒŽä ¶S½2 ßÊ=z–-~x?G¢zÍÀÈꛋŒ‡Kyzã9Øœcª¾´ïxU§è »BÙÌ%ļÕÄj^ì–ñJ\pLl8Î6é¹W½ ¶† }= †žž!q´tkXÑ€¦ÐZâwߨîªÖç ›G²¨h «Æ«½ÑÃ{6·H×TüÎF»ãårícÛ~«ì¨µ´rA͈çÌÈ;áÍ#óZÄà¥ÒMÇ3Pe WÆÒJç3›1¹æ탿+ºÚ\FÏÙG´"¢X8)l‚7mQ¨ c†z Îþm Sd÷nr}=ÖÓxx# òAÿæÝ¿·ÿ“F¯>QŽŸÁcoÄ  oøÏþj“`qÜoÿ~ª"ø¨4ž 1¸bªÏU ½À1¿o«ØpGñNPFÿ5NVì:oüàöÙvßü—HõϪäÀ;ŒõÇuÅÀò–†äˆ;åXšëƒœ3Öµ"¯RhûmEY{^ú¨iç“—¾2×8clvú,m}ð‡ÂzúI™n7ËT朗:Ï5±ÿ…àä}~« k:îÒÙêô­ÞÛ¨ `s™™¦©xÇ@–þ °f©ÐZ»EÖǩӗ;3žîXßUlR»Ã$ü?"VjðC«'±q–’Ñ-SYE}¥’–VÉ'+L­ð»Ð»-sÿÚû+/Å~‡7ŽÚX Á͹ѷrMÌ\°‘²7è±54­dÍÉ%áÝGe±Ÿ ü@§â‡ ¿FêÓVÝm<´Õ‘ÎֻΌ·õsrûŒ´ŸVŸUvj^pæù`¦²UiK|VúW½ðEK”"/x{ðßqœŒeX7¯ Ü0®ž®¢’’{sª\߆7Ÿ.†ˆ†v$Œ—õ;+;Rx<·¾Ø¥µ$ÔuŒÍ[|ÖMø¾#Œr“–ôÿÇñ³‚׆¶#}®UÑÔUIA¤§-Š òלdr»;tÆ1²Äì­.§¦dr=ͯa³^Iåþš˜þx‹Uv¹Öâ¦7š»dng/똮pìÜÇÕK6å¯êKOÕv®"F—òŒ“ü—!óÊ"""""""""*8àgeUĈçè„»Û¯ðNç÷UÛ¢ª§º› U踸g§TÎFwU ª'} ÜK’Õ§èx{i«1Õ\_qäv€~ïϳGªÃ¾ A㼑C#[ìÕ>s]û`pîSô+bc DEçjKݯNX«/—ªØ¨­ôqgšWa­·¹'¤å@î6ø–ÕzŸTÛªtEÇMÛíÒ=Ô¬†oÖN÷PùZi<¤á»ÌzÖGà·‹x¤m=£ˆÔǯ–.ô±ô;o4Cqß%¾Ÿ‡u,­•ÔW:.ê¸+)* ðHÉz¸lBúvÎq¹EL ØtÝSluÙW§üÓ9^¾ÕVm¤n¢ÿPèmô‡¿”eÏq 5ÜçÐ=Nø WúÞõ{â®—¸íòT×ܦš«î´äµŒaqÀhß–6O_„’¾M«/ºRûïOÝj-õÑŒ2X]ŒŒ…Àìæžàì¶ᯊÐqWGK=C"‚ýl{b¸ÁyO0%“4vkù]·bÓÛ .4a g8 «Z^-5IÔÜs¿Ô2 ËIG £§ÁË@‹á8ö.?U(<KGvà­nu[!®«¤ž'G†²9\\cÏíÌ\¼ EúÕWc½VÚ+ÛåÖPTÉK;p$åŽàõiì¯ Þitÿô¥ò¹îŽŠŠíO-CÙœ¶0ñÌí·8’;Œ…´Ú9ã«£‚®ùsFÙÌ7ÁÍw&ÁñMR˜¡?šãŒd¯šr×;댨}öj[h·é†TÈù£¬1 ˜?|än¯_³ª@85v§ó9‹/’?—?‡šGóiRajïŵ·xŒÖtåáÜõ­¨ÈúØ™&>œøRçW;pðHéå-t5vKdTíaÇ4…ð–ò ’=V½e˜AÆ00¸*Ÿ–óû=˜_À»³F2u<ÃúÓS(µâ£RÔêŽ=꺙Ùsí”Ñ91 g§1kžG«ÊÆ-89^´q½öwU:v-ÞYˆçœå®!Ãlc#Õ|?× ŽË8xH”"´”®ŽIê)úw},ÍÇ cƒ»uÇUŒøËÂÁ®9.«µ=’îØ$§’¢[|uLž'reÜÉ·) ñßB]ø_ªÆš¸Ü¬õµsÁ÷®{ppäÏphxsG+Ï)< œ o¸XàÓÊAqëÁY“Ãgn\\ª«¬©¹6Ù§èbž¥œ¯˜ÌXÖ6?OˆN:n¥æ€ðÿ6˜t-ÿJšÎªžžŸîðAÌŠ8™¸o+Hp,£f²TZ]+ݨnuñ“ÍŠÙàÁ—8îõØ4(å¯|X6ÏÄémš~ßo¼éŠI› µ1¹ÞmI:'g”´òžŽê+,ShŽñNËM­Ÿ¢íßàŽ©Õ3ST;nsNCÇá8=GS…íé~póL× ÛŒ±PVÒÙã£i‘¤t-s²Z~E[\wàn’â¥ê'c-ZŒå§»SÆ ŽÌ•¿íüGb;Ã+—‰|×TÕUQTZjšâ)nçž–¹™Ç(wG€LnÀÁ lTÙðñÄéø›¤þÿ[d©·VÁ†Í#b?v¨>±»±õié³¾2x›rA#§ªèqu\»ª†çr7\‘ ½ü–1âß ªé㪳]+-—Xg󣕒4;û®ëÔ20@Á ×ëÎ1p¦ã4ÚÛO»QÙñÏt·3!­È1’Oí4 í’¡®¡ºRɯëï6Ï2cuuU;]ŽxÚd/ãl…³«_´Ým·ï̪t”í¦IXæHÆ’Üà–¸ï×ò+øã¹Sjn2ªÒYQ —QC÷‰› åÑIhI{sò*`†Í&8vØxomŽÑý5hŽS,tVzJvHvæ …ë…pò†ô8íÕcß“8 ®ÉÍ›4ìÁþÓysôÎT%ðGK¼HØ O”ÚjÇM—`†}Ýà|þ"Í–ÇXÜ7Êl7;wß²¨ù}P€OñT#¶p¹@ºä;mžèÐppã²ñ·¿U¼eqCSðîÇc¤ÓIC%ÖIDµ¢âÀÀÒÒàZ Î}p?ðuŽg©¸›6™¿Þê.”T€U+Ù3]á~>áÎØü=ÁÀ2Ö²––ºß5 m-8Ó/5+ìVj¢4­¶^hp9ETà ÌãÛÔ7=Ž{¬›àËÑÅ5…+cÿ]c¢”dDÌmRñÆz°~Èú‘Šøóá–›LÅÄ»- 47Xë™ ÐÄ9[VÉ+dpsµÁ£;d=Ù$€¬Ï|V¬²ë¡ .u–Ó{yû›^ãŠZ Üü?Ù“ûÁ§×3³ä¨~I“ºªª;úú*ªz¾ñãÄÇÝõ¬: ÛPÿѶQÏXóË-[°pà6<Øz¹]ŸgÿbŠß[Å”dÔNçÐZñð¶ G›(÷s¾G@׎ëxÃá¤\:â“êmtîŠÃ¨êÊ1œ¶)Aýt#ä\×ÀHѾ áà÷\Ôé3[)šy¨¯Ò6ÛTÂàÐyÀíöË\þŽ#ºÙÜ+Žúͺ…ÝJ×´UC•F ÝÓÈC#Ç® ÏÈ«ªÙÝUW-LÏ2>W9Ç»ŽÿÍO_ºv+O ½±ï|×Êéêdü-HèÆÙòÉú¨©ãOF|AêH™-5ÎVÜà=9¼ö‡Hú§˜>‹Pù“FØãkÜç4 ž›ŸËù-®pÖöýAÃÍ9{|šZûe<ò=§b÷FÒ㿾UȨ@8È誩œnA ¡;®.Ø/†·-ÜüÛãù¨_ö‰[ †]%uóª \$ƒ·#<§~¯^¯Ù¥sœkfs³~éSsø\|Ö»ó¿’™kZ^7iŒ>&53°@”r7=ÿÕbÌøÑY)ðÃH¤›2Ks… o¼lލôøTR# ¯ŽF5Ž{ÖÈÞf02FG¨È#èW9>ÎÊØ¿ÑŽ¢¤$ÖNøòrøZßmÌnü¾J%ñ¶ˆÛ¸Ë­(¹%ka¿Vµžny‹<÷ò“ž¹9=e{5­ÒøYÔw–S·š=UE¥pÁM(#åÍ#?5‹)Î'Œôø‚Èü­©‡Šº=ôÙ2·PPî^bj1ŸB2:½ÒËŽãºâùÆ:G¸°eÛg •«~2ês®ø¥{Ô³¿—ï•n‡mˆYðF> WxArâ®®m,fzK-7Å]ZpÁ¶ÓиöU°>è 3í-œÓF FÈéd|Žæ–yW½ß´ì=€`ÊG/¢± ´Og¾Û)®T#ÓTÄÇz„un]únËlÓ¶:K-š‘””‘ˆá‰Ñüþkï{y†2Bcܪá®M•3å•Ó40Êðd`æpåÈ$8ŒŒÂÕoþèþ1kI(èÂõUåü½$=ˆR§Âî´6zý)ªmµ1ÖCæmÁŽô¥Ñó9Ùh<à€žå_^$´Ûô_„šÛMÞ²õ[5“ϭ¨;É3§kÜà; ˆsÑAÉ7¥+ Ä3e¶ qmãDØ.ñ¹¯ŽºÙMP×FCâk³¿Í{‡¯LŸ’°ƒº¯TôÈ^^«¾Pé»Uîç!ŠŽ•¡Ò¼cáÀw u!b 3âǬµ´ú3MSW6æëƒi©¥ž&–KŽGÍ å$·Ê ryÚq׺ˆÌêXÍ@\|X9\äi8 ».#=Ïp€ö$oÐ(Ïö…6sÂ+k›F_W¨^gç1Ê9HÎùÛä°?š‰ˆ[[cä} ce-8¾^r}²õÂØkp[Éôê©Ó”…@ÐÒ2>¾‹W¾$™]'µ ¹J%ªI\ “'—•{Þl6]MÆ6›Ô¿Ò¶úØfÌ&cideÅç@ ;wÊÙ5¶šžŠŠ*H„4ðFØâ£ŒhÀhö/¡c_5ƒ‰ü4¬²µŒý%Oš›|ŽÛ–`ÒÏ`rB‚VÊ*+MUÎÇ«(ßG]OSŠZ¶’ß"HŸÍñ7™åÆ;s,¹à§^¶ŸŠ·M7<¼”z•²Kmo+YS/cwkB›F´ã± tîW"7ÑWª"""""""""*;ÝSöq¢®äöDØAߪªe;n¨wUDE>ÐŽ'¾Ûf£á¥¦¤¶¢àÑUu,;¶Wþóqöhìå”÷û>-uàÅuÒZGQ]{™ÐTÇ4²(X0ìg”`©/Mç$·ïê¾¥Ggl(ýãwˆÕC†ÑiëMT^5ÌBHdå|T¬ ÊàFà»f|œíöQ_‡i¸‘Æ*: ´&K=®'\k£9V±Ík"'ÑÏsr;µ®ÂØžÖú6ó­ÓÖAošéo‘ÐÔQµÜ’Fæà@æ¦[­–£yð÷¬¨Û;â ûÛ@ê /l¹î-ypf¨Ññ‹FWFA,½Ò“ýkBÚèLüþJ¡Q¹Æû”8ÊvöV§µ•€áíßTÜ$ m9ò#ï4îøb»ÜòM†IØ«zX¯šËUAK¤¯½ÞëZÀçu–y_¹>›œç°S—Zñ£Ip ºc†ËQ¾›} #­|5mŒÓ€1’0ìÊãÌòÒ[€Fûíññ¦õ øÿÁ;œZ鵥¾†Ž¯U ÓÍ?||Ãá%¼Ü¹Ü(5mžz ºjè ›SM3'‹±kƒ‡ò[cÑ7ø5.‘³ê*R:jØ3ž^vËóáG?´Vìèt˜´‰\>÷u|ïhxÍŠ"7NïéòP‰Ïòò쌓_eµé¦èþé3䦠¶BÊ€:yżòŸ¬ŽyQëíÑ®¬Ó6sM {í³º‚¹íˆ¤<Ѹû‚ߛˆ:QK¥õ—PÃ$}ºº*žI–Èà\Â=È?5°ÿº†‚éÂAAIYÙ®TÌó9žÊ~~xïSÉ#GÌ,Î3ËŒ•˲¡wÈö\y·Æq•Ï>¿ÁU#dŒ,{Cš{¾Ò KY¥tÉ®8‚¾¢ÞØ’6;ÿ±+SìÙt㈩­’1µF^Ãø‹¼ÑÊG°Ùù…:–º|~²ž!'|2¾K]+¦ö]‡ º~«ÐÔ¯mãÀ›{jÚ鬺‘ÂF»$†¸Ô´vHÓ¿a9Œ·Ó丒Hž›E.>ÎZ¸›>¼¡2‘<ÐÎÈû9¬tÍqéÛÌoæ±GŒøâľ®lLku#ÜÓ™Ô—ÄJÃÊTð²Âû÷€My , uE-áõÙØÈM#ÉùFÙXŒò½®ô9Wÿ dš—]iºÊ8ÌÕT÷z9 £.’FÎÇ5 w$ŒcÝmK›%À`¯ˆ×†Ø8¨¯’;ßj©©éÙˆÛæ¥bq%¼Ïqs±ô$ù­³ð«M[´—ìöKd Š(iXéÉ#š ÞãÜ“Ý\냷qÏE‰|_×þðé«_ÌZùéã§`Ì’±¤~YZ×,t“-'–/¿ÆçŽÿ„{ŽÊߓĚèÁ×O€DáœÇäÃ}óŒwYÛ_Gs·ÓÜ-ÕPÕÑÔ0I Ñ<9’4ô Ž¡BÏü@e×S[t ¶©²ÒÚÖ®-c²>òá†4ï‚ZÌŸnrºþÏÎ2éªëø‹[Êiì¼ÔVö`ïS#<™Î>ÝË‚L™Û—|7↮j¯ÒY9‡%Íñ78 hþX”WŠx_‡n–ç±YC|ºðîæµ;*u³^èa•Õ~G”)ê\Â󛓱n NwÆ7É~üJÐhnF5%®ãq–ß;™k4¾[[ä¸s–Hç;#'5Û;,qâKŽuÜYÚI¬T6ºKtÒË"•ÒÉñ´4‡¼€LìÑÕx<¥Ð"ùM¨5õÞ¬QÐU±íµÑQ™dª-!ÃÎ!; qÁØlT£¾x¼ÓqG1´i;µD…¥ÍûåLp´œôÃ9ÈÛÿ¸ânë«ôÝÏOTi[+-×*WSOÏ|Îçãk‡ k°æžS‚ТۘXþWŒ/¶×x¸[Aû\ð8½¯ŽBÒ ƒ}@?@²«·¾Å NC>öç ç?µŸ@®;o‰Ž+ÑFÆ·VË3#w7ëàŽG™-Ü+†×âï‰ñ±¯¨u–«•Ã>m/7±å#Ý]–Ï™²7ô–’±T´um=DÐõ<øíØ«ºÇãË,™¾èzê8¹±šŒu'8‘±¦{,ñÂÎ"iŽ$Ù'¼iZªšŠZyþï1šÑKÊY’0⛞RFá]è£Ú)j©­áU®ãÿSn¹5õ Æä=¥wÈcüAE? zþ›‡<]·_n2T2Õ,rRWù#.ÈÒ¹r9¹_ÈìnpÓœ-„ºûW}°ýâÍzÛ.sRÜèÃ]ä‚ ÷Ûu Ýv¶ÒÉM8aòòÈü§3›§0tdã==Wϧmó×x%Õx±[µ…=@kNüÂÈ‹O¯õ ãÔ4¬?«qÀ츢Ï~oFÙǺkyŸËŠño¨£sNp÷ù<Æ­ßÑ\ð¹Žß’V×`ô;,‰².ŠºX*¼¿>0ãùã9 µØ##2¼YtËâ¡®«¤c³´U‡~QñsõÎOù®M£¿²®2ʈ8Œ5ÁÕDœƒ×xÉéî¾èa«eC9åÌ8.sÌÙw0Æ/.1Œ’sôZ»´ÓºçźxÑ3ªu hÙÜÕCù­§;%Î×Õa/±yž¯Ïø•SFðéþ°ÁüŠ×uLøcÆw-Çó[w³† U& M‡•­?"á>i)ŽÖãÊ:mæJ OÿSú«ÊÑákƒt15•û¡zˤý½˜æ·—eèTøpàœ­<ú•ïåÕÔ3o¤‹"i-3bÒvHìºr×Ml·ÄâæSÀh'©Üõ=Ö0ã‡-Ä{«o2²¦Åw|…õU–îVš F˜×ÒµŒúåd}¤ìš#I[ôÆž¦0[è£å`'.{º¹ï=ÜNI?–ËYÞ!÷㶸Øúv¨ÿ|«"™¥®Œ½Œ‘¼Àò;8w|o‚¶wEmÒ|càm²š¶Œ:Åx·BöÅ-4Ïhrðæ9¸ïÓ*'ñº±[.;¢³^èh©Rcp’žªNVåÍlxs ÀÛãQ²Jg2!<Ù_f™£¸]nôö‹],õu•’ ‚ó>Gž£ÕHá?ŠW¸á¨½>Ϧéä-sÅUA–¡¬#9ÆÈÎ9\öœ¬¡mðiglÍý/¯nUTฑEoŽîÉÈÏ|ƒnŸ…aŸ<5Ñœ.¹ÙìÚr†âç×Qš‡V×VK_ÊZ@é“·}°°ÿíöÛ¦º°[ï6Ú›­,`IÈL/•­~û? ;öS–íàç…Õ!æŽéª­ÎÁ2®)ó!ñ’0¬ÚßOßpâMDŒžÌ$wÈ‘3’í°x'¢†ñïšöJÛc 3ÁImû¼ÏØò†½Ò<7|ð†;ädJ? ¼‚‰h¯•`óÉsx.ë×—Óòüî­3áûƒö #¨¢ÐÔ3T1ÁÂZÙ$ªw0;Ö9ÿ`A°Ùlö/¸Y-TVÊPî&’ÄÂìœ4Nö^‹ÌÐqQèUVñO¥5EÿGVǧ«©ÜÚØE$Ô•l指|ºó–H8sŽ\åkÿŠÚã uue¢§Íž‘“AQ'•øÉå$`òç#+¿‡œNÖ­“X¯3ÓÄׇº˜žx%ߣØv#r¤=ÓĦŽÔ¦ÝxÓ5ÕRSÈ ¸¶ ([9cÚ×¼óñg„Ž™î®Z7Yu[Ý®¢Úë¹·>çq¥¡l1=³E;f{ÝåÈ`è7z(B6c°zÿ%ÁýáÒì,œtÑ— h»Á °{Jï,ŸÉåux3ž:k¯¼ssÿH+qÌ0y|÷òý9p¬e8>ÏK#ÿÑõÖù3ê$c¯^]<-™ÍŒ9·.#8?Œžž›DÎ2ESµ”u“yõ-¿W‰¥åâ¢Nc€02wÛeép%â—Œ:2q!g•~£‘ÎÆyclÍ/ùüË9kÏw­w¨é­:Z¦ :É®F’‚ã=AlPÂç·–¥ípI€N]ÖìIr%èê$ð·©i¦®mÖx­09õ„r žI"q”’7åæÀ$-iÓoU|cù­ÄY¿úEÿÒñÿÕ ë\Àä÷õQ¿íº¶ƒ4VÌIr¼DÑ‚6ll{Éþ@Èé#F žñÊÖ´d—„¸6Œ»m“ÕrèV3ñ®køu¦­¦U-wX©îPÃ45ßsäÁ»Œd¸ ŒäDMKâ'‰Uº‚;­¢’Öàu-+sLH|¹ ñ²2B»tÇ‹uOäAu²Ù¯xÃ~>šiœNßs˜É€)Ÿd­7M-k¢¾hš÷ÆÏÈâ-Îqœg ë{šÆ9ïpkZ2I8.¸fŠ¢Í¬–'·™cƒšáêØ…añ‡C?RQ²ùbŽ’-Sm†FÑO+ óXày¡$ŒõkŽy‡`î¿ /0ݬ–T>gÂ<·ºV–Èèɉ9CâÎÃ!\ '¡ì«•ÅΟˆû®¼Êé0kRNçä©Pá/sšyZÇŽý Õ~„ªpⵂjw±/†z=[Ä]=¦e‘ÑEs¸CM#ÛÔ5ÏØ÷ÆTÞÐ>´µ±¡Õ5ñBÊ:Yüè,ÎŒÌÜ€Ñ$ŽwǿŎ^¸Ü©*=UOEÄç%ßAÑc¯M¥u»jÚ bÏ1ïñ–Ä ç„Úê[ˆ½Q1 a¨žœàKM,mÿ‰Ál¡½:`&àú•ByšKÉk—ÆÜÜÞ#µò¡£?õvóV÷†ú¡41!»Þ=¾0Z?šÙà vöTsGpºÜ1°\¡@WjÉ8AÏÚ^ãk×Ôšé±6¢Ëw€QIðŸÔNÆ9Ž09†íùE›1‚~BqËøwê¶Oá;^³\ð’ßçTn¶–¶Š¼8Žlú·íÔ9˜ßÕ®ôYusƒºª"""""""B{½•{&7ʃóU@ˆˆ¨àKH ]>lµÎ?Mr–¡ÓGx¶ÓUÄÒÒ<0Á=w„»oßúœK0Ž˜ùI3Ä#ß®ÿä­¦x|Ñsè^é½1WpWÓÓyµÍÙåq’@\6$rçqðŒm…ØÐÑ€ªŠŽh$;#¡îÆ0:(ùãêá-„ -¯¼ÒÓ¼4ìç—lÆ>¸Zùƒ;°Ü§GÙ×g†Ÿ†:†üÆS_xû³Žñà â–E'e‰ÑHö8æ¸=z®Ì;¹UåÛ}Õqì™ß?4##—·m°U\Br¨FÁ?%«oŽlœp×2s ú¤ G•d2>pKsð‘㕱ÿ §4‡ÝsËåÔóçcÏ÷©yÿâÊË£áÆAÈX.Ýáo†Ù¯µ”Ôu— «Œ²Ž+”Í’žÒãÊkZÜÀòâ9FwPCMMY£µÍí’š²ËqŽi90\×Á(ç±ü.…mzŠzzºxª©¤lÐNÆËÜ9Ž|Á]›îAÿ±Eß´KM~’á­TÄ×:K5ÄÓËÊÛø‰ë³ãŒï•hÝÉ;{ç¦={-€x4âÔšÇMË¢õ`žùni4ÒLü¾ª›¦7êægÔ{"\vG§ó]›ž£>˘*5 g¡í•ÆÛ\Ö¹ÄnsÔåv/žã2PÌʆ5ñ`BÁÜNá…³Vé;…’ñNªsɤ­æä%ãhÞòNÀœòöõ ñK…º¿‡SÿHhâuI-§®¥“̧•Àd´;‚=ØáY r õ¬·jêºH*Ÿ 1:渃Êìd|¢òu DÔ•°USÌè&†FÉ­$8‡ z•õjK]ßPWÜë®Üjjj$•RgšbOã9ß~«ÏRÛÁçtfŽá½M£TÜ*)%‡M Œ½á­s#Éäk}Yêséëø“q†ï¯u Ö ]4u·jº–Hî®kæs9ÁÊíÐw[mê;¬Å…öøQ2Cæ6yåk$ bIßfô+Ë’:¸i©gšb†v—A#šCd qi-= ã¢ÍÜ âЦᆶáΩ®žk]ÎÃVëd»îµLˆ–F2vcÎ:tsFØq#ÀàÉãy8 p?Ån.Î×6ÓF׌8@ÀG¿(_R³øÄ &†’Ýâª-{y¼ÀÖ² àsË!kßl—mÑDšÖ¯Wé--9¶ÕÒP>²yid4Îl4F1Èü>_\ùq€æüKpfž:Î.hÚ)™$÷úÜ%i¡™wÏL{­®~Öûî¹oÿŠùît4W* í÷H+(êcž Ø=Cšv!G®"øIÐ7Ç#]Y¤« ùœÈÁª¥ œŸÕ=ÁÍ>œ¯~ï¦2²xEÖÔ:ÖÖnWË%M†*ÆËS=$Ò2¤ÄÏ‹”Föà9Ø ÙÄ åL]+Bëu¥´ŽŒFãÊÐì€l¯F®15,°ÒÂÜ;¡Èïì£&©Óï„Ôš*ºûS§þôùîö*9âž:FÎd„¾?†0Z[Éž_Ú•ïèúRûslµ‘ÐŠŠ§GUtæ™ÐÇœ0—‡½æ÷,ǺËv›e¤j:Qfwë+¡c+ ÁŠp@s&Ûbî\`wo®¹Á ˆˆŽg`ˆ§#[»Z3ê¹ÆßÉy÷éDZùÝžXé¥{°;«.G¼FÒmšS/¼QóHyGžÂN¶VÏí— ®:ЏG#¾áJÆÆÀÖ×K“ÌK‰Ëˆ¸2rN@Oí_¦¸C«­?öz€ß‡;ˆË‡ñ UИß)s¶.k’–ßg–«|íK¢åqòj`eÊœ°‘˜ŽL|ÛÉþâ™Í9öV‡|Ö²M°Wóìšwã• ¼ÆœyÏ0Óõ[œŸ2 ½”ú¨ì‘€qïèºòà3ò:ôQßíª†6)_Sy¦Ž=³ñrÊÿä¡—‡©ÝIÇ}+ÌMî™g<ÒÿšÚ¼OcÁ xw)å8=¡\Ññ£]%‡ N"8}GÝ©ò6}DaßÃ*xx¡šãÇ KNâ×6÷O9 gá‰Þk‡ä¶ˆÓ‘”=sÐè¶¼eÔÁ[âSUyY>_ÝbqþÓi£x^i]WÇ­˜DEÞ ±ŸÁ—ãë˪Ú'_d=7\ÜŒcUÀÁíó]ÀûªÁèU™Ä­#gÖZ礯ŒŒPÜàtbW09ÐËÒ9Yžkˆ#þÕ¬n é{––Ô÷ 7u`öÉÝ…­ H?eãÙÃ|ÕÛá׉·ëz[¼/sèf-†¾Ÿ¨–áͶüM=ˆô$šYî4wk]-Îß;j)*álÐJÎŽc€ ÿõ¢" ÷DDDDDDD(ˆ §ÕôDL¢¾78d5Ç ÞÛMæ_lõTܧZs>>¸;4.¬©áÞÔ-¾õ!ëÕ²G#æ>Ÿ5# =ràí×ÐlsÙTtEÁÁ¡9U9Ïoš¡ ‚:îµeÇ|ÉÆMlKKq~ªÀ=GÆî»«B”ƒ†7Ï_U±ï2/ ÚH3›âm[òí·u\Äý]Á PUˆpwZ­âëx³­©Û‹‚àÀÀsÊ>ó Çù-p2¸Ý8+¢ëd.|’بĎ;eâµÇopUä[¹8=5‡ë]y©‰ãg0ûµÀ¢¹@¢ª¿º·x‡¬-šKϨïPÖÉAO#PúX ®…®v9ÜÑ¿($dŽ™XÂoÜ$‚È.7i¹˜ËkÁǾpú«_PøÇÑ”•tÑY´ÝÚáÜß:IäŽF’3Ê1Æv<£#ªðæñ£f4Sùš*¢g8æ&æÆÒÃŒWûù+#QøÃ¼ÏTØi´MÔ&˜1ÑÔÔÉ+Œ¡Ä¶@æ†파ÆÄ,©üFêËõ–®ÅWcÓ’Ú*œKég¢óCpr œpæöw]ú¬*ˆˆˆ‹ì ™Ñ5Ø'ÁØÏp¾Y '$îNá}úrÑp¾ß(,Ö¨Lµ× ˜é)£Èo<’85£'¦än¶3ÅX5/(´ 4,¯°Ð†ÙkÙPÖŽlží”‚Ùpv2еÃ_ U eEDrÁQÝñ¸aÌp8sOÈ‚,ñCQw£‚§›È’v2N^¼¥À}ã#hcÁÑ ª¼+ö•Ó7‹Íâïa¶\nM,¥žª²ºNO'7á>ãu~ѺÒíG¢í¥ÿ«ŠŠª|™s˜Ñ·ø1õX+Ãëøã¡©Û6/´§;lðy¾˜æ%´¡Ûr$î©×®/Œ¸\XàÝÁÈÇL.O~ÝÌè"w0ssÎsHz‚;¨Ùâ3ÃÔ·‹U¾áû%­·Z9*šÙ ;ê ÜÖäÆHqë†Ô~ѼKâ_¯Ï³I÷›|Ð8:{=Òb~È6ØãaÌp½Êá74OTtÕn·]ÜÐMQ {ŽÃàwá~IÛû”Y+‹$ôÏÉsÈÆø\y¶<£|+OŠú>ƒ¾ÕK#d,·TÖ¿—8…î;ävkŽÇ;-h𔵼KÒfjVÔF.´¹Ï-|`“ÔemNÓI0–JSGZÚaŒFÜíÓ¹/ªõOm–ºŠ^aôÒDþ]ŽÒ=÷Z„‘œ¥œ¹$ ö8YCÂæ§“KñÏK×y¬ŠбAP\/—?ÀrOL8´çÙlàw;z«?ŸtÕÿmI¦uš©²Í!2>뺆^^?Ó­;É9u–« È;Ä~Š·qƒ‚²uÈqsNÀ.õôPÇíÕ²ËU§t%+À‚›µh§šCÍ;õ­ó²:vúƒü#Ûé.ž#ôe=c¹be[êF߬†ÊÁõ{¶y~v7Çlgþÿ2»AàtUE…|lÓÁQáÚÿçHæ:)idˆ4Ìÿ¼FÜQ‡8ýPðao’¯ÄV›–(Ã㣎®¦oV´S>1ÿŒ[høz”Ç|ª;sŒýV¬xû\ËõÊ'óG%â¡­Ï£^Z?꯫Ãýlt¼jÑ•ræŸ'œî]‡®ëh£mü²›®§gNèÊüܾ[UÔþ\µÁì'³%¼mðÞ¢áb§â-¶„ºãkp§»ZO5/Á)ßý›õÃ÷ü*TóSÔµìθ>Šfx⤓‰8o{«s›å™í‘Ãá#úÈýqò°Rñ3º"""""""&0©…Ucñê¦J. êúȶ|6JÒÓè|‡óZŸ[‚³T™m”3>FsM o%„y€#çÔnº46©µk ¼Z%AçË·µìqi,ýWººånw ”dõÊñd,3ãZFGá¯T5ïÁ’J&·#©ûä'ùµ¼!Øø°ÏN›…0>Íúˆþñ®é_1,·ÈØýpjñoæ¦+26q>Ár''ªïتïê¨N1±*œÇ8;eR#žcÛ8è¹~Ö7\NÙ ~ekÄ­#èxù­¡–>^k³æ÷ð~¹Xúµ²c»þö-™ø_¤e‡ÝOsÚë[&$Žòò>…Ä,–HÈ8Ïm»*ŽÃºÕê`«âæ±­„‡²]C_$g®Zê™þOŸ  ¼<é.Y#¢§’'ò~É?áù€Bʧ}ÁÀèJÃ~4]Ÿ ÚÃ`ÿ©ζ¼<é;F´ã.ŸÒ÷ß7ô}ÁÓÇ)üŽA+šAõækU·©ìµºoQÜl7Vùu¶ê—ÒÔ7ûL8Èö8{Ÿ¼ñPé-ký»Õìw²Í#°Úz‘´o€wàw¯ÂOáSáPžÅPîv8ú/‚ûo¥»Ùk­í磮§’šv·l±í-wð%j玜>½ð³]TikŒÆ¢ŸMAXÊÚªwg•øìF \;ž£Øîߦá:»ävTÜ’w>ª‹ÚѺSQk+ȳi{EUÖ¼Æeò`nH`À.9Ø‘¹õ úw8¥5‡î±ð²ªŠ9^úŠì¼O#qø /'+ppZÀOrV=¿Øîv+‹­÷ZgSÔÛ iß-pÈ ÷î>`ŽËÍDE–xoá÷ˆzûFͪl0Û¾éþC ž¤²y]ðî@üE»oÓå.xQšãný!®ë®ùŽ‚™¬aÎ@Ãå<ØÜó·´üVðKOp±–ë†üdŠë!k-5D>¢œ—Ó©Wö€à7xeÄ+¬«­L¨ ¢¹Àú³G'šøbs¹^Kzã•Ç8SÂŲI,Ùß²1‘žþëºvÈC]¹\þë”N{›—·”ç¢æ£WÚ xu ­¶¨üÀë•Þ&»Àå®~ÿR?%Š>Ï‹sª¸¹w¹:0c¡±½œÞ’K4xÿ†7©Ù²..ê?äµ'¬Ý1Ö÷ÿ¼2FËúJ¤¹²×4™_ž`wuppN–*Î1èºI¢tŒ’õH×µ§”‘æƒ×²ÚwDØz*¢àì‘¶ãºëÎü×k¾ æ¾;•t³RÕB'¥¨c£žY#9\×±•¬®<ðÚ»‡zêãg– h}L­´Îò›DnÇ®Z%`9ê¬Ý{®°jZ ÍΆª‚¡“Föõik[\Ñ×û~©ÒöýCk™³Q×@%ãߨ>„Aˆ^ºwꈅS¶Ê¹DDDDDDB…S TDDDX÷Ä›Ì|ÖîüËR6÷aæµR¶ugÕTºOÃN—ÕõÁòGoÓöÉfkŸ—»0Å‘Ì{œõ*Áû9êd¨á%ÿÌ•ïpÔ;vq˜!?Ï*N!.ì0>¹\ˆè°_Ž`‡k³~,šÚ1³±×·óù}V»c#¨–g1;Qk9ÆZöQQ° çÊIõý¦ƒCp3Ôzm•Â1ñ—µÄØ4`û®s9Í…òG•íi-` tßaŸukü[2›_Omþ‰âÇMVúi^ùñX9pÒî_ÀpwÓ¶7Yû‡ZûKkû7é=1seTm<²ÄáË4'Ñì;ŸOur¸±§.-=×&³Ó'=ïòî{o•¬÷‰n\Ö3=­k£¯û åýؚ֯±¥ËßÊçòVÌü$Ü¡¹xyÒN‹-u54”’GÅ+ØmMµø~ÒmTµ&®™ÕÎ.;1Ó=Ò4vœ|ò{¬§Œ8ž¿ä°×Øï ´È9CšGï}î?⡆úÃnñ¢' ./»ÃÇõ¹ŒŸ§>V{ñ癜öñRËMØ£‚üÐæ´µÜídS€wvyÃ=}H‰T²: Zîb9}ùU± WÿH:%Ö«ÍdOÔ6~X¥@$ª€5¼³ã¾äµÄw?ˆ,ß¶rŽé²ù.5tÖê‹…dÍ‚–š'M<¯;1sȵeÇ­sYÄŽ(]u<üí§šO.ŠN!¦gÃpIÁ-ÎÆÅÎqYSƒþõ&·Ò6íQuÔT–*;”}4ÓLcwày7ˆY›Á;$‰ÓñL ÍŽÐ3F“.ß2>…dmá3„¶⨸RÝuì-v.5Xˆ<«ˆ0ä~s ¬»O¤4µ-#)étÍ’žž0ÀÈã·ÄÞQ†àröEߊÓM;g¦´Ûéçc<¶Ë,ls[û :í¨+FX#OP?î£wx/G©ê® Ž!Éæ§’,ñyh=ÁØmºHŠ|}ž³ðJçêÞø5 Á °ÖšzwgóÏ䤀®{ÿŽOÏ Ýqd1‚ZÆ7öƒ@ò ZÜyÖ7/ñ’OÑ\õpKVËuŠ\ã2rFZ×Ê^HqéÕl †:>‡‡Úͤ­ïl‘[âòß?(k¦”ï#È÷$ü€]¹îVñ©Ri¼5jˆùË]3èâúÕDHüšV¶XÒéÞ¤œu[µœÛ)O¬,ÿªÒ¾yNN;õPGíkÿÒ½ŠI$i°´5 ±<§?\ãè­?“TøŽÓ³ÆÉGlòã4Ó½›ïÓ/oÕl„ÑUSºª´ø•¯,Ü?³ÓÞ/Ð׺Šj‘Nd¥ƒÌòœZH/Ü`|8Îû­m!Ç®ê)ü¦Ý™mÁ¬usÛq$Œºu÷Y2Ž¢ ºvTÑÔGQO æd‘H×b6!}Èqè¨pGL.3œoÑuO U,-šænÃØ±=}A û/šŠÓl¢.4–Ê rN\b§c2}N´ü@ÒËUÀýohتÎ^vÀŒ’? B×÷‡Èc©ãVc€-X¦<älyÏâ88õ-œdçÕÄuêµQǵ¬@lÝGq ÓýjOù+Z™$­ŽW˜âËCßו¤Œœ{ •·øÜ$Œ=¤ò¸ °pG¢9’×ã•í çb=:-ux,™Ðx‡Ò,a¯†®'ŽP~¹Êÿ¦ì?Íli½‘üÖ<ñª£x)©ï»–¤RZ]÷ó¦p‰„|‹ù¾M*(ýÖkmoî÷ÚŸ%ÓÐZÌ4QÉsƒäsyåc‰ËÖ͆âWoŒƒ<Ž1ºÇ<Õº‡”Uw‡<ßm²>×~lžYs+éÏ$ùòÉfï×nW4àg !ÄAŒ8t;®LȤçþJª#ý£û–‹¤ÈäuET¸>¡¬þ+Éû=*L:§TP2ÖemM#&–¸ òÜÀÈ·ûO6G ‘ýK°äLÐù Ç]÷G æµKÅŠØî¼WÕ—V»™•WŠ©o9Àuù+§Ãß¼@hȃùy.x98«cßà¶d?4=zª`z.' ÎÃÑpx;Œn¨ 9ßq×+µŽ\eÃÛ€qî°×‹[5· î•í¡t·û,•v¹ã2e¼®|xãl|¸9ÁÁ¹eÍgß#9Œã$tÜ%üñ•šFé’¿UâÁp“1¹ßú%C‹@v{1ØÁŽý¬ÎÀr2ADDCóTÝþ)ˆœª¢""""'tßdDM€ô;¢",mâ‚vÓø}Ö²³²è #W©õΊ’˜±ÝÒÈvlm¤ÿÍ@ÝUâOŠ7ß¿Â5MM,óù‘CCp–±²1¢LvÝç=ò±¥Ú®ç¿].’2ZÚÚ‡Íp«’‰'rùephØnI8{.Ý#ªïºjñOt±ÝjmÕqlÊŠy9\¶ÞŽiîA†Þ7Ññ"¶[Á‚›SSÅÎæ°rÇVÁÕñŒìFÜÍúºf´*‡u ¼cøz¸Cu½q?H7ΡËÅ™#y$É4c³s†r7##¤O§¢šI@cc–ïœÿà¶#à^¡³pйM-ʲ#&'Ìœüã×üŸà+yÇ7HÍj"šF2!À9Œs†:gr¶µÃ[L6>iÛ5+ãt46ªjvº1ð¿–&Žo|õϺ÷&Ë.a È;šÂž7gò|7j‘çÔQGïÿIßü• ¼3>“ý?h‡×IlXÚ È/!Â1ó/åÜ…²Ûݦ‚÷g«´])ÛUA]éêaxÙìpÁÏæµuÆ-_Þ ]4ÄH~é u,Î×Ó»xä¹Bì«Â=orкÒß©-’%-@/Ÿ•³°à>7oÑÀãòô[HÓ·{v ²R^mupUÑUGÏÈ$aìFFÄ‚>௸¹ ÆT~ñÏ­Û¦xBlÓòWê9¾ìÐÓ‡ véëÂßñ¨MÁíQ¯ø™gÒ° }@mL‘õŠ¿¯Î`8Ïrը頤¥†’’à§…Ž(ãhkXÆŒ5 v0»ºŽ}U°qüWÎbḯþ cv;{®/fG¡ÎvVÆ¢¤{î-npe‰ía9Àø]ÿ5©DE:¾Î–½Ü2Ô2·Ë7–µ¬å¤@Ì»ÓoÈ©FáÈÌà‘Ôû¬?âÏ]?BðVëUI!†ãv£hœÇc2 ÇBÖ`Žä(åàC~œâ%f´®¦¢°Óùt®sA²A†‘ëË9ö.iS°G–üX?UØvØŒL¬ãÄÒõ^nDŽºRy]Œ¿™ÝGqËÍ·ËÑkÿKÚf¾ê{]ŽŸ>u¶*Xð7æ‘á£ù­ÂBÁL½ÐÑô\—Èæ—ç’}z(ãò¡µœËÌÐv!ÕÖKcšnµ°Rž\ç‘òâ0ü¹[aÁÉ;.ª©YMO%CÈ ‰Žy>€V¹¼Œx‹Ñ$Ž¢¯ÿQlyƒsôUÃ]¿\(öj‡Òéý-¤`•¸«¨šáPÀ~ #hŽ,ÿd™$?6E”¼ih´ç‡í=Q-®;•Ö9+ª¤¥óµò<Âç8gý—Û¸+3L f2vÝE¹õáWŒûеôzo_SÓUrD[ü¦&Êí€kÝ4sHp•®'˜m(išÖGåäO„OûŒ.áè©¿ÍCŸ´R¡ß¤´mhjäØõÞ6ô]¿g$2{W$N‘o‰ÎÙræã×âj˜]“tÖÎÊZYjdÏ$LtŽùOù-D¾¡ÕsÔÖ<ºy!ÏöœOù¬ùàKMÍxãTwÆÉ!°QÉ4Í~y¤2±ñ0‘$¸b1Ÿæ©DLî£'Ú%<‘ð–Ã…Îj;ÌÇÂÒ)§gÔó?ºT ¤Jðy‹‹z…3¾ÍƼ/1M¸rñŒ ϶ø"¥óZ1°ÈÎwÝAoÜBuó]Óhz'9´Z{ã¨!ÿ ÕR0?VÂ\½áG-7c¼j]CEc²QI]q¯—Ê¥Ž 2;~ä€ä“€§Ï…®TpâšëwÕÒÛëïwjaHúx˜d†žŸ$º2çlò`>n£GŠ> ÏÂOÆÍó锄Q½ÁÎûœ‡$Ó½ÇêXIÉç%¤œg£ußLÞéï¶ZÉ(nTrÓÎÁ»‚]ˆ# ´ìA ìVÉxÄ«WôDš3UÑÂŒ8¸ßlçîZOQò*þC¿eÅã ƒŒ|–2Ô|áþäë•nŠ¢Š¡á¼ÆòRµØw6K"sZI$äã';«çLY¬:zØÛ6œ¶Ð[¨éÈž’6±­qhÝÀ~Ñ$ÎįYPœÊ êï 3M¬ï—š=AGE¥*ªßQm’9¥|Aî.Àü-Ï(w7Ä0G\)ƒÂƒŽi¨kkÝ ®žÔŽo×:8Ãÿ‹}ËIßus,5ãJ…Õ>õi§¥|ÒÆ)&Äm. 2ª"ç`v æ$ö“Ñ@¾oÆzcR[qŸþš‰mUÃ<ÝÎvFÜ;‹PpöqCý)§H%­ø¥¢‘Øp;dò<‡ ð“ÕAHùãsG7Gd ©eàk‰¯·j 4ڵߣîdÉm;hjFîc}ƒ'9›¶î*gž˜À98ù-txÜÖNÕ`ú«úÕz º@g·Íí²×ôxê¡õ^£\\Àã±#8Qí©åá–›£æ’ÞÌ¥ õ-§ÿñQ­œÞüBhÚPîQ ŵ„ŸH—^L-¤®º‡ò³9+ r°4ôÜž‹]3ª¼Þ"[é[ŽX­°¼îØÇ;¯NÃè¯?³~(Ä­H÷1¥âÌ9I×38?@§zLå0©ŒõTÀ'p¨@=pHÆøU;Äàì7*Œ+˜®rª±ÿˆé<®ë‡sæÇTÞ™ëæµû˜Þ'i¨+ª<˵#yÔæf ºÿ%³àO1ÿ’nIÛ>ÙZÃñMLú_Ö)ñÌ럘v~ÆÇ·ø8.¼ÊŽ6hèá‘?ô”a¯yÀhó¿®3|-ŸDì±®Ï_çÝyšÆIbÒ™bɾw4Þ¸…| Ð6»yË û…²ª 8gáqŒE½¥=ä¶¶>h6=¾k_^!.”¼Oñ{nÓ¯¦ÝOt¥±rFüó0JØ-Ü|OxÏlE°HcŽ(™Lk#cCZÖŒ@Iø±è^ñ×Âv_ìG‰öÙ«Ÿw±ÓÅ M;^Ï'îL|¯t€`;Ìk¤Îy±ÊÙÝdo ¼H{Õ‚SSNÆu–`M¾Ík¾l ‰„¶ªšÿU3Ù3rÝÚö5á¿/ëì]¼=Ô—-¬(/´%ÑÖÐT‰C^ w‘è[~khš/Q[µf•¶êKLžeÂÍî3Õ§ÜA÷ ØDEM†: îª"""""vÙè=€APˆ3ö(ˆŠ!}¥µ-e‡ERÅ-M\ƒäÖÄ?ùADžÒG_Äý-E)`ŠkÅ#$/8ha™¼ÄŸLeL/Ú…‡…µP&{¦¼SÊÙiag,¤oœö·Ïçîýômƒ‚õõ åÕi ú1IDT=S#ó^v¥²Úµ’ªË|¶S\íÕLäžš¡ÌxÎFǸ z‚…57ƒW²÷WU¤5=<42J — w—BÂG0óø¹FHÛ''ºÏ<áu 4‹­¢Zz˵Y¸WG—æ\ZÏRÖó»ßr¯o©-zCIܵ5âVÅCo§tÒžîÇáh÷'{•ªÝUvªÔ:¢í~­x5WÙk%ƒ¤sœ@üÀú)/àZŧôí‡Rñ{TWÓÑRÑÈm”“Ô|-ˆa¯•ùqçc7ÙÃ|©_¢µæÖ^gô_Q[®„sI2þµÎ2Xpà=ÈÂìâ6‘²ë½_¥µ8–޶>RGã…ãvHÓÙÍ8#ò;­õ¥Šé¥5=ÇLÞ¢ò.VÉOP’GG·a–¸aÀ÷+³‚üJ¼ðóVÓ^-2¿•¡¬«¥/ÄuQgv8t霠ïê¶W¥/¶ÝM¦­ú‚Ñ)–†áNÙáq)õõ ÓÆÛ/ˆwk½D^nöC¯::GÍKBÐâꇴg”‚Iöž‹_|cãgî×*ŠE_zÓŒ2Ù2І·;da¯píñ ÷|è{Ʋ╨šßSžÑS÷ÉëË9Y$ÍËŒ8îçsdœg9ÆFv ¼ûÌÓ5‘ÒÓ%œ–‚{ t_ˆ;ÇÅU4‘¶®¯L×Õ‹-'Ø $cR@ø^òà¾p ì œt¶fÄÖ††0ºï^>²¤ª­ÓuðQÅóº–v²H •Î…ík°K†rµ“áÊWñÃCSób÷K1>¾SĘú–´  `'âÿ5òÞmÔ—{U]®¾5l§¨ˆôsÒ×È•ªn&éjͯ/:N­®[*Ý\áýd]cxös OÕ|zf÷q²Þin¶Ú§ÓÖRJÉ©äiÁd9m†z΃XhËV ˆžz‹\5µi kÎ×´cð¾)í°=ZÄ»ºã¬5µLÔñ>²é|ºJøã`˦žy‰vÉ. hÜ(Ñôš‡vM!Dï2+m0òoúÙ\Kå~ý9¤sÝŽÙºz¢".·ÈÖ‘“±ÆËR×Béc¬ÔˆK°c‰§žMÁý ~N+ x-àÌš¦ómâ> €:Ën¨•Ô”òGµ\ìå ;õcIÛ ¹˜ìBœW*8ë¨*)d`p™…¸sy†{ÝpWE-»’§Íys‹[€ã€I8.vÝÉ î1òÆ·ª‡ßiDÎÚ +¹é¹™î>ìÇÕß™XKÁ•L4¾%4“瑬k䨌z¹Ôòµ£êH f릤t9¯†ëQ÷M]c¿ØSÉ.Ã÷ZNÞ«Y~(¦Ž^9ê(âŸÌŽ#ŒsÈï)Ž{=¹^çŒvÆ;,»öq†¤IžPñen27ÇžÜãø:¶#U; DMº* €AŽÝc¸Ê¡Áë’€1×¢å”XïÄ´B^kv÷iÝù7?äµç¡åš=ef’š›ïGp…ÑC¹ó$n¾çÅm.fÄÁ#ÇòŽ`Þ€ã|{*Oe­ ŽOz²NC|ÔŽåÇLÑ@Ißæ­îVÒ[8Á¤î5ÕÓRSÜã–i_ÑÜü–ȸo3g¬¥.m-ÂvµæF¼½"f´c<²´wÜÊû5éh=@æÄéú.§ hÉqò°Æù* x ™°ñÒš7?{%L`zï±ÿ ?E° 0­®)jº}ÃÛæª¨kdýFù£Œ¸2LaßÕØ xÒ3ê~(^x‰q`˜YÁt/ þ¶¶£˜zVy‡‹ØT롎XéØÙ^K€Ýw1¥®$œå|ZŽ×óOÜlµ_ÔWÒËK.Ùø^ÂÓü „~ îõ>ãÝï‡×J†5µrËk˜ç uU3ßÈ@ï‘Î÷”éh@öUÆå‡h§+Y§+ÜX÷µ“R‹·ù<øí»oU_³š©Ÿ~ÖTb9yÝ $üÀüÌÇ®È)Ž™V§)ÅW 5u9|±óØë4o-pýKº¸Z¬‰î–00Û,÷àzµ´Ü~·ÂXüÕÛªàÈ8Á l›û|ê¶ߺ Tè‡m¾K‰vøÎ깡23±®27¥­ zŠ*ŠwÅ,m{\0ö8d˜*x¹á«4ß]n¤òtþ .ž´‚Øj<è}Fä=¹ê@ü'wVÍ%mLwbÃÓFϼÀѳCZðï =ÎOuŸ<qšm/tƒFÞåÍŽ¾£–'ž´³?î¸ã#·_\ÎwÆÁU}Slg9ª"""""Šƒ`ªˆˆˆˆ¨ãÓ+‰“ì OÚ9[W',ÌãM“Ç~½õ‡8{‘þèX‹Ã…ÖÙeã~“¸Ý)'«†:ðÆÅ.]#Ád]vÀ{šO°RwÇõ<0pŽÍ,Ômel×ö(Á-ciæøIwv~Šáû:ê¼î ÜéÉÞ ¼ƒÆ6ù©0ŠŽÿ±až/ÓRÛí<*²ÕT>°?ïU´ñ±Îˆt y aÉã=zaF»Ÿ üT\ÚÚŠª-M+Þg6©ˆsûMóÆ6Ïð_n‘àˆÛÍ[ÿJ^êtÛð]=uúI^íˆË.~H=KFÄeM­1CQhÓ¶ËU]Á÷ªJHà’ªA‡Næ´ò2w$eB¯|]v¥Ô2h 4 YlõVHý*©£þã2G»²wÀQãHÙnÚ§TPië%1©¸Ü'S³;dõsf’O *oxƒáÝŸHxCþŒÒÖÉzwȨŽW4Ÿ½TrüŒþÛ¤yîÞŠÚo5T5쪥¨š ¡xtrDò×°Ž„¸*UpÄÍÚ{Ý«Kë™ ¬¢«‘´ñÝäpŽHvošz8g»b É=WÛã뇱UÙh¸“E5TŠ+££oã§q"9q¹cþú<ÊE–M–ž„·~˜S#Àïžé"á•Ùáñº)'´ÊHøøß¾AsÇÉÊ\ç¿d;.`‘®lk˜eÃ?žW`Î7E|]ñ)¼>áíc©j9/צÉAlk]‡ÄÌbYǧ(výçþÏýÛ¿.:Ê®&¾—NÓ0ÿÒ¦ËXGcÊÁ!ö%ª|ZÝÍLHÏâ=Jú•«Æ×»…z [*OWú* Ç+ÜFrG¾2µñáÚ:!Êyj§??fšSßåü–Ëgûq?/¢‡ßhV‚wþhâE¾—,hÛ³šÓ°Ï4L—°¸žñ…ZàÇö5,üq:;µO®ÕmmÃ2Ûƒÿf£>0{µ¹ÇL·ÔïNxrâ’ãý¦ç¨-T’Ø-5rN+ «Œ¶oÕÈb{XO>Ïå'Óu6:"""./8Á+W^,(%·x‰ÖtóËŸ^*gNYcd­úò¼gß+"‘gíy¥ã´”¦BÆUÚ*ïO„±ã?î•ËÅ/ª¸ÍÄ»^„Ót/‚ކêú ?;áu]D’6!!e£#À;Œì'¦–²Û4Ξ ÓÖZfS[­Ð¶žšÙ­=KRã¹$“Õzƒå…RO§ÑQæqÑB¯´šž¥·½Xé˜êihêâŽ07kØø‹‰>„=ƒü%G¿Ó69hy]'–Ñ~£ÞÆf…µõ×P2ÁUåÞ[æ[e§æåb'6 qÇ匭Rq"æ/šûQÞËy ÂëUR7(|®v3ß¿gÀq;QB9¹ŸcænGÃ;:þjvŒú"¯tELäãuUGgu@ORñè©‘oU\{÷UT'Ø« ¿‚å S§«óvýCÎVµ´ýY¥®§ª/‘žL­—š3‡Ò -郶Ëj¶jˆ«-4u”þh†zxäŒH0îW4Ÿ}×ÒN=Â׌Æ>/z¯™†6K ãëñºDÜþm#è±^Ÿs£‘¯`·!£×ªÙïeeFŠ ªdNtrQR¸UH}G4-’¡€{õnnE*,7$Ç$´²°’6Áa¸P#À»ÚÞ<Úù‹G5¦¤ ì0íù5°rrÝ÷ÎÊ} š®&†}2ÂrÖZp¯SŬ¸ybÔÑ=¯7 (ä”5¤L,¬Üà ssí¶ÊæP?í§¹·Š6視?ÑÕvød‚6¼4Æé÷Û>fÞ¸>Šìû:(œju­Ë”–ÒSޤyŽ?Ì)„ݱÔý,+gŠÅƒ…ú±Ï”Y+ Èíä=j–÷S5£§+AßÙdÿ ÿÒ—qzÓý ûéÁOVi~ûŸ(‘‰ e ²B‘•~&5¾¨’›ˆÜ+¬¶91 æCÜßÄæÈC£x÷kˆï•viï|1¸† öÝíN$:Za4`ã;œçþ}•íhãw noÓë‹\NÎ?ÖËéwÿ↫ÒÏy´^i›SgºÐÜ`pËe¥¨d¬?"ÒBûö# äÁçì<*g±Ê¯8ʨvþÅQþàœû+ŽºŸˆœ5ºiã.­1º{kåéSZC=?n}Vº.ÒU}îžÑ|'žÖßÑÏhpw–#‘ü;çay5”•¶jÈ[SO-;&c'§s†±8×´÷ëÛ¡u `þøµGÄ-#Ol®•±j+mñ ®ÃþݯÔÎh®l^](8þ±Ä4;îáÓçЫºÙêj+$©©˜Í$Ò:INåÄä“õ*pxá#lqœK½ÆJÞ sm‘;ÿG£q‚&2'àåßâ |?h†¤ž—Li+O3<»ŒóVÕFñâÆÇ‘û¤½ÇæÕ üÒ׹ؼ£?5èÒܱ¼H>R:ìz©ÛásˆÑqwDÞtv±€\* ¤0ÖK À¬¤—,Äc œäç=T,âN™“Fqû¥d|Ïý]-4rH|‘˜Þ@Ûâaiú¯¯‡—étγ²êf²I-•°Õ?`àÇæ“îܪÚ}U5m”“2jiãl°É²×±Àà{‚qß9Aœnª¾;Åu=¾‚Zš™ÙQ±Ï|ŽèÆ4eÎ>ÀV¬¸ûÄJÞ&q*á¨&{Û@Ç{e9;ALÒy?yÛ¹ßÚqí…=¼$ðñš‚–š:èKnW3úRàÇ e•­äŒ‡ZY¥¿½Ì³ZÖŒ5¡£ØaU[üK‘±pçRÊㆶÓTOÿRrׄùŸˆí èã.wßeiÆÇ§”¿ %l¹§-a g ÇÖšvÙ«4µÏMÞbó¨.TΧ™£¨láèàpAì@Zçã˜ëLö[»ééu^‡–Š–ˆÛ n¶ç¸º–©ƒ ºFór»bKÏÂ匬*»mÎÚ9ä‚¢6H¥ØsAÔ³ßÜC§âG(oFHÅÒ!÷{œ 1ÎÞ§ŽxÆØv:‚BDDD+„˜ 9ǺÖ‹úÆWø‘Ö33ð²¦(:cx©ãŒÿ¬LŠÿà>²f‚Ö•:˜¶'ÉOk«d1ÈÞfÉ+ã-cHî9ˆÈôÊÍ^ ømý>×ÜXÔ³:ak»yÐÆ9j++žá¹ ãxÆ7#ÓyÍ'˜< gׯºîÆÛþj¶óT>¸Êƒ?iÁï×úZ׿-=¥õç$ŧÿ­ôÅDÔš–×ULâÉᬆHÝèàðAüÀ[‡\&Ç–r¬®/Ý —†šèÑ!4Öª§·eÁÞKÃHúµD äÝIo³Â­Ôüi¹R½ä6ªÇ3y}Ke…ßË*4n«„DDVoø•¤xso§ªÕ@ê—ÓÁ fI¤ÀÉ!£°õ8êxˆâ³®<@ŠïÃýY~6€ÆHfŽJŠh™Tâþfœ †5Fø=z¯«†~&õÆž ‚õPÍG@$kŸ÷±þ°ûA’7ÇNlŒ©±¥/Ö­O§¨ïÖJ¶UÛëbC#Oní#³wz/Tvþ »à õþJÅñ8¦àv¹•ûÿæ Öbè^ÑüJÖ6yÈc …Í-kGí8Œù­«iO?ú1j Î(aóYŸÂÿ-¹{¯H×l­yøçŠ8øý^XöŸ:ÙFòü$5ÍÇäú¬'@\×0‡Êìÿ³_ «à^™²9çôL1¹ÄcvL}91ôW¥î¨QÙkkGX)¤—sð°ûöP À쎖Fóü3[ª£#—=!æÆ{tëì§~»Õv¥kuê®jjh^öó¼#ƒIk2çÉZдÑ_8ÝÆöÒµ—Eq’Y÷ü4ñg¼Œõ §¾07+h41²™Šž>XÀÆ0g`{lÃ\mñ¦4'›j³o·æå®Ž93MJ}%uw_™#˜·lÅ %Ç-SfâÔºêáQ-tõr­@ç±ðà40€…<øOÄM;Ä4/z~ ¸1Â:ˆ´?åpùt=ÕµâÆÛQrà&¥´Í¨––Õ¼‘¸‘îÌ~‹øÕsÜt=ßLTL¦fMKÌì¸2nbæû¡ÍÏÍåIr@PÇÅl³ñÒ\0ÚK-37æ’W沇ÙÒÂ4n®p¹Á‚_ÔŒ©QúÏìü×>½Õ¡ÆÊZªÞë::'òÔMa­d~äÀí¾½3îµ_ l[~ßÉfÕ/¤âÅEɦ0i-OÏ1#eM<9ø”ýÅ*`†¦ )ê"dÐÈÒ×Ç#Cšàz‚Ä,{¨¸Â[èy­Ð¶ˆäp?¬¥‹îîÉÈ1‘êUrð¥ÂŠ™_%3/öîmùinnÃO¨V½_ƒë<2E=‹ˆÚ*ˆ^É*©aœ´‚ ´Fr07Êóé8Ç 9^ÉtÇ(*"®¿y©«¦øKK´c;zÌÝ/âÏOÕѲ’½·˜hÚ@òo=’ìœ0»·_eÎ&ø—Ó癩óë|p´¶b-Ÿx“З@ãŒ{a|Sx¯Ö™ä¥Ô"ŽŽ¡‡&)`¨á»õ;n:û÷[¼a6ZÇ2]M$8ò®E®ß,9ü—‰rñm©æÔ³PØ­”ô æS?šC æiŸlÐF@ÇÄvè¥ õ•«^é=Oel‚˘ø¤24áÌ>»q… |fðþ—Hkø.öj ⡾‰k*ã* ¤¼Œ4žq¶{Uô}%&±‡ú?t«˜>Š×U%µ¡àJ^œº6ŽQ×*ËÓº¦åb­Žãj¨’–®™Í– ˜âÀ ûõ[VÑ÷¨µ&“³ê(#tPÝ( ­Ž9-l±µàwËÕ΢®vT'p0ªˆˆˆˆˆˆˆˆƒ¢"!\q“œœ+ŽÚú“@ðö¶ôé#tå¦:v ÷Ÿ„r‚wÁ#>‹\Ú:ÛuâWíô5mª®šãpd— š Ëc/d„ö§Ø-§Yí´6‹]5®ÙK-,b(a¸k:¢GÚ^ØDèbfx›Ï­åˆ…Í凙ÄzƒÊ÷Šò>Í[‹Û}ÖœžI)`¨Ç¡kœßþZ›*Žè¨ÐÙrÁʆßhv©ÅV›Ò0JÓÎ$¹T³”çàæ† óêêŸÌz8 ¡Ä~+Y´´Í¤šo:½í$bš0]&ã¡ rƒêà¶qq¯²iÛ[*.5ô6›t lLuD­†60ÖŒœthñ»Ã˶º´Y5ÞŠ§§¾Ãk¦šóE0’WB\×±ÌhÙá¿@Üs‚3ˆ?PhäÏ.1¹÷]a…îäØÿÍOZ!–>M¬* •zŽCär‡sEM œÀœn^×»lí˾ä,[öi³CÄÛF¨ŽÌ†óoË àv??-Ìü”m£‘ÂLómÝlWÁ† uóÈ&•’Kk¨š„€þg5­vY; ‡Ñf‘×5ÉuÔÍ:IÇr¢çŽ&ÿGôôR’ 6õ¨Æ%c]ñABçÛœŽQꊋ>4H×¼f±Ú* [©¥ûýÄ9¡Í4ðç5Àõ<±ÿmÝ'™J[‡í»ç+éEŽüJÜ&¶p'WU@àÙ@aô‘ÍŒÿxO,|ÑA¯cs|¦Á{ËF3¸È;’E´“¸%Tãž‹‹²Fz(£ö‚pþZÍ=AÄkty}µ¢†ë‚rêw?õ/ÇO†G8g¯ë=І'‘;²vÏE!<ñAº7‰4ö›„þ]¢öæÒT—;áŽS´2ð>#ÊO£ÖÂKÀ ~k–Q l2ºê ò^[Ô´ájóÅu¨ïAE’W—F´wq;êT5к:ïâsŠ·mm©¥¨·éz)[„•Ò e,nÆ2Ðì½Ý~1ûÙŽåÂWÂÉøq š $‘‘ahçŠ^¢pâ7ù˦Ë\ú÷JÞ¸}«î:N÷™YC/(~ ˆõs3¯Âæïê7²÷„>,Ôé]kK§îwE¦îFVÔ}âR#¦#žÙ×w8c¿8ôSÆ–¢ šXª •’Ã+ø¤k²×´Œ‚pBæIþ•\ð[ŒHíºÅÞ+*‡½dø¥Ž4-k‹Îi•sG¹îB×Ö…õZÊÍIL’\©™Û|ÊÐ?šÚ³bhb6Uù®BÖ‹»´oººjyŒA44mºè`Ž7´{sµëQ¸™ÆIÀp'ä¶=àúæ.°Æã3¤¡l´²=í nDÒÖú᥹8ôï•|ñb_#…Úº ;Ec­6zbî wƒa8ñ¤ã¦-?½9³¼b’PîòF=ð¯ÿ´^TUj^ƒ£˜ Z›]TÖ’33ÃÈìÜž§ñ.g½>¥«ÖšžñQMOQn¦§ŒTT45”°<¼½ÞaØs´c®î®n7qöï«._è烔µW šâúi+ Ì©øwïðGƒ“!ÆÞ€dÞ<ð˧ôΞž§[6+Ö¢¸ÒºÏXhàrØA¿§ëùß0ÿ‹<7Ô|3Ô3YµñSù²¶Ý^Fb­¤aÌpÛ!¥¹oQÂçÂ#êj?Òúz³“›•µÏ9Š¥€ç•ãë±ê;-ékþâWb¹Q¹•V›Å#¡¨ˆÙÌÞY!£†KOðÛu ¼0TÞxqâhªú˜éœË„Öªðæ¸6£¯–[‘œÈæžáÃÕO3‡Ÿä ×ÚK8¥§+Z’k1cÈ'â䙨öý¢²Ùß#?¡º²2å œìŒbÛß±R”»¦{tF—w/?TDÙ´ÕÒŒ¶J)˜íº‚µ\Ö²26Éú,ÕàÜyüo¤· vÊúÚb9Ëê„SCPã×-…ÍÁýå+¸Ñâ.ÇÃmo—–ÉYs¨lBZç1â! ^Ëæ¬'|þ?{ ìðßÜ?ך’=išáKpž2VÀÖ6Gn]s\áÎÎÇ;²º!82W7#l’ù¦‚'2_6KÎÎWs´;˜~éÏQ×eiêNðûPÆÖ^´eޤ5üáßtkÍ‚3ÌÌžêÉ«ðÓÁéªTÍ3WNKËÄt÷)šÁ° æé¶qîVBК#MèkGèÍ1iŽ‚™‡—>\g¸îãñ»¯ªð¸ÿ¡gâ .ZnާîÕO,ž•îÁa’2î›^Ë]ÚÂÁ~кΦ‚èmÁ‘ÐIÏ)kÚáÔõÙ\×ío±hý5ÅqDúÊ»¹£¹Y«)ÜÈD¬æyÀƒå½ `±Îç¶Æ4ME¢§GXêlCOgžßO-13•‘ÀèÚcv¤l½¢N}}'8!Tg=Q """¡8 TæÎØÂ³xáªn'„Ú‡TÚ ŠzÛ}/™%³%ÍnHì ?E«ÝCª¯#äÕÜjjšçŸ6Rð\ã—ýJ˜g~Ž·1yÖõÇ-mLÿqÄ~3•îSȵvCN="ûHë%žë¡¡wàe5dƒæçÄý@¸}›q²=m«Zç4Èm”în?t¿'ù…8UУFß5Q‘ß?4Tq!§bµÅãVøû¿ˆ¥;ekáµRÁo̓ 2=§Ôù’¿?5˜>έ6ÆZµ^°‘Œ|’Ï®ü¿Æy²Œ÷2E·öùþÑû…u4zÛFó[7.1•‚&îzl$þ%F®q_XèJ§Ti«ÅE x!ñ³7äus–“ï…zpÆ“Nq»‰’[u¥E5޾äÖÊ.4LŽ›žVdÄ`ˤÏ\g-ïœ+“м5à/u”šnå⺞ISi?U΀/‘­- àÔn¨ðá]ÃçpâÝdЊ®åEGÌ7)Á­„¸—9 søG/\OÜ;AÉÒtès˹Çç… 8QäqÇFJÇ ÿH©#Þqiþù-mŸ’3‘ÕP÷ÿ5æj{-»QX+ìwxE¾¾ðTFiŽÛÐ÷ÕjßÜ8¼ðÃ]Öi»«øšâú ÂÞVÕÓçávÎ6pìAõVe®d¹$z­£xoÖ1ë~ 黹«5UŒ¢ŽŽ½ïq/ûÌMk^]žîÙßâYƒù®hˆ©ðº*0¸g®ß5«¯2šºÕÙÇô¬ŒÀçá½ûm²Æˆ²¿„Ë-%ûŽÖ *æ6H#2TÜÀá!…á§$`d ÷éЭ›S?Ì’»#s×ù.ýð0PŒ“²¡ƒ¿ªâA<§8èµËãžF»ÄMõ­w?%-³OÓ……ì†ÿokÝÊÃU1'Ã+lônZ¡¹ ›úŽVÿߪõp×4±Æëø×d¯á [3¥"¦Gs´X‚CÌ}U®Ø›–s^êZ}¡Ú£PÎL¡Ì¤Ûâo)p#ÎÃ|ýÜgá ¨ˆ¸M,PC$ÓHÈâ¥Ï{݆´’I=P£‹:®ý⌔ü7Ñ•aºjŠ_3ïLiä,hZ·ïñIkÙÈîí¥ö†ÓV­!¤íºbË Š‚ÝNØ"ÈÏÀÝî#«œrIîI^É ƒnÝÔyñ¿ÃHu_äÖ6èZ/:nL÷¼ÔcyXOöF^>NõP6’gG(-v@=”ùðG­gÔ¼.–ÃY(–{ ‚"_—y¤z7èì³Ø' îªZ9vØc`5ñ8Ö =jù<Ëi”39˜IÆ;;8å=œ{('áò(åâòµ44ÒÕÄ×79•€rg¨q|–Ì,uÂçg£¸ŸÞ!l†7þ&->ã¢úÈÏæµ¯n2ݵåúë1J»¥Tï9êçÌçz_@¼šW|d»ŽóðfÛÕ‡AÑÅx5ZnOrõ2=81†8vi‘Ï‘ÛïÊÐUÏÆ..pÖ·…úºÑA­-•uõ–*Úzh¡sŸÏ# {CAhÆs·U¼1ê* )ÄÙµ=# ·Ùë¦ì’Æ´dã˜ó` ï’:×Ú†á«u½ãPÝdy®¨2¿÷[“³G°}vœ»j[žŸAÙ_<±\n QDîQ<ä°»  ßa¹Ûu´î·©á°fžá¼M®Ö·/õ{•æ8„ò:G9¼”´mÜr7~ ‘Ät j—¼cÕ\YÑü*±jm=n´T>†ÜÚJÛ&f9±ÆHcC€#&NlìÜwV­«_hïü,ºèªúRjÆÑ>¦žîÀûÃðM‡ls;§p ÈÜÂmO¦u.‘»þ‰ÕjÛEyŒJ!ª½œÅ¼íìæå®l²ï„®-I µ£-×'½öK´í¦ªa†Âò@dàtÈ'û$ú+ÓÅ ž³Nø¤‹QR2W2²Žš÷Ï.Zi+ñÌpHFìÞSBË_ ÒÓGs¦,|p2xÝÃÚZæ‡ 8lFýT7ûD©±«tmS²<Ê*¨‰á<²4þ{¯Wì阺]ožìbÞVØJ9ºgÙKæn2 gUcD´²Æö9Ítn£¸ ì´ùSÊC`h ó–àõÀ$ü–eð‰{´X8ál¼^n´¶êz:±4³¹Àh‹CFß$uôõÂÜ}²p¿Ž–ö³Fê;µôó[ßÎb’µÉ4ïÈÈÉi9Áô¨ICs»iÛüRFéí÷+uFwË$‚hÝ騂:-•ølâ­ø{Mp|±²ùFÑÒ§q ÛÍá~9†:d·'9@tè˜DXgœy³pδY ·ºí{’7Êó„qA‘ðy‡s“×”ÆBÆúKÅÅ Ed0êm3<wëj¨*‹Ìc|§·âßûyÇ@z7j®¦ºÚ©.ty”Õp²x¤-åæcÛÌ;mÙ}.yß~¿šë¨žš‚Zš˜iãÎ9¥xksé“…‹o*á¶¶¸E ʶžù%/ÏU‰¤sšÉXÂàÖƒŒ¾ù¾/8Õ£u6„¯Ðvsu.š7~«‚ñ¸Õ7~Ùnv'Y{ÁeʺãáßO}ü9Τ}E$R8“Ïs87À|?áY¥¥¤méÙroO’ª""""""}S|û ïº""C°Ê님¼’9qëÝXž"Zþ k(èmò×Í5šª/*-Ü¢pæ¾68ú-T1ïüÖÄ<C-m‘Êá©}ECXZAp39 ç§Hÿ'e!ÔûIœÏé>Žc0Ú:¯„výcÅön¹ç‰úKM”dçÒhð§z£†ABÞŠ¨ºkÉK3÷±¸í×¢Õgî&éÄýSsyæó¿®pâ3¿ÉO/ ^»Fx~´AQGî5Ì–êø#~Ï2üQ´žÎäƒè}p ï5—55íôüBeÒŽª:‡Ï¾®'DÊ`áˈ˜FÍøq‘œã9XÁ]œ.Ó÷íW«mÖ=?IS%Lõ13Ï…"—/J÷4PßÅžØYCÇ9¸Åâé÷ØRÑR)ZÎ_:(rs¹yÏöG¢ÃökÅm²¶)i*g‚f[,R=¤oAÙNOœZ»k(kô¦¦¯¬¯ºÑF*©jfk]šo…¥ŽpÅÁÎÎ]œƒ×e x¹i~)jËiachïU‘0ròü"grœzA5pør¾Ôéî6èë…+ù9îÐÒË“€bœùOèüüÀ[Baø¹sÓeÍX{Ñv® ðþ«JÝH„UœÓUˆ¹ÝK;wd€dgbi#;­^ë[šgY^ôÜÓ¶¢KMÂzÊÖò‰ R9…ÀvÏ.p®sÿ§- 帴ÿH¨2AÆßxfGå•¶E‚|tTUSp¤ÓT˜›%Æ–)XýcKúlzmò>¸*ðLçŒú7œê:Æäí3O¨Û×Ðdàô[Enp3ÕÙ sÔ’¨æçl•gñk‡:_‰º^K§¢30eÔõ1a³Ò¿÷ãq™ ÷A®!xOâ–˜¬–K4¦ÞãÔNÍÈ ¾'‰É­/ü'Û9ïÀ–›â’Óú‚Ñ«¬U–›\•,–‰•C’A0²°Œ–Ö|YÇÂ1×*MtØçòAœâªJ©![š×[éJÚ­MtŽÛËC+N\ðÜ7r Ðnv^äTÁôÓE42èäÁÍxìAºç!ŒˆWƒ {ñÜô÷Z­ñ{ƒQq«VÞi%óiç¹Ê!~ÿywõ X®®-8È8ØåQdï ÷[<@iùD•†{‰æcþ%³{4¼Ôe¤F1ƒè¾öHë¾Ûâ¹;!½N}—dú츸å¤çç²ÖÿŽ2Ãâ?Qr¸¸ùaß@?waÿU„©yþñÁço+cŠÙf㋼ë›n‚·Õ›Íe ¨š¢'0S¶vÆ×A$?ü#×c‹£HëGêMq¨¬TZÐö6Å ¼¾LGQTàè˜Â2àÖ–ž`HßÜkx¸Ààuèà|1HrzŸÕ¸`~Ák^1–ŒtÝL_³¾’Ix¸–>FË79Ç+LGqõþ e·`0ˆŠŽ8õQ«ÇÛ¦´—ôÕ?-Òñ}sãvôÔ™Æö¤9Ýõ ÒðÉ¢­œàÅVµÕ­—[0®¹ÈýÍ58Ɇ ô89#©{È$áª7qúÿQkË­»Q]¬¶×OŠ: :·DÈ¢‡r‘Ìã‚\Orq€>K7ˆ*Z[š]kq•Äâ°2¤mÿ¼þjqðÏ_i.&韽Újá©ç¦oé tܦXyÁd¬Ü`î6È!@/|7Ÿ†\Q¯µAŠÉV÷UÙßñýÝÇ>W3‰$ÇžMÉ8ž«ÑðÁÄ6ðï‰TµÕŽs­uœ´•Í- cÜÑæ‘¾y2N=2¶;±O'¦š9b•¡Ì’71Í#gÁ]£•¾äûôQCíÖòSY¬¼?£~>ÿ›Ç¨&&X™×¡w;ˆÿÙ·ÝaÆ3ÄêùÂãФ·-æÅñ5§Ûwcç…+xÅ(n7me¥®r5®ÓÕìŽË¡sysï‰à}˜a¢ÔÊÖÊêYŒ‚¸ÈyH ej¦o6¡Ï$åï.'æI\âxøÞÓ‡õô8ê¶}¢,ôwÞ<-N£µË§i-qGXÌÊiÃÛÍÔǶswÏMk\ Æ‚Y-Õìžš®™Î‚¢šZø¤nÎkÜW^—Šº¶ó º† jªj?S ·/•î 5 w$»8ƒCGkÕµöº*ø+ÙHæÃ%Dòä•­NBOÄÐþ`p3…ÆßsŠÉi&Ý+ÅÖ¬>:‰Ç“¼=rî¤úmë™Ã Ý áêÉdÔ7ÛlŸ]_¢|Ί*ȹlôãhwʼn]öÎŹhšIèN/ðωvájmÎ8¦¸Fêi­6†I0{pæuå~A#á%Bž'iýEá÷ŽBK\ÒÇ,ß~³Ô·ðÏLâG!ëÓâÀúg!IŽ>é ?< ²ë½<ëÅ;ê©!nî™§zSßœ9Ÿ{·ñeAžY³šCðZö¸t=B’ÜMÔÖž ð3@jA<¼iÉÙc½0tîŠH¹|Üàe¯15Ù à¹Ã|ÊO רµ [€±—[Œlh?‚?¾J虎ÀFèÀ†ûEmî~™Ò7fD1|ôïl@|aÀ{þU«öwÕSǯ5%œñQSll Ž^Hä`éÔœÈwô›¿EBÒO÷ÍpžFAåâ8šÒ\òvhZx¸¹²\§tO.c¦qØê Ž ú÷ÒV0µä|N«×ÓZ–ãh¼Ó](«e¦­¥•’Ã3‡1ã¡Å]üj®¤×%ÑRßTm—è o–*f 熰3 23™¯nh¹°9ð>_ úö¯@q>ÑuбÐQI3`¯? 8ü@–ãЀ¶‘Œ–&KƒØö‡5ÀäzÉS`¼]OªlÖ )tÔµu¾‚ÙNùçtO'”g”oø‰À¹ -]ñ#TVê­QrÔUÎ-©¸T>¢F‡d3˜œ0{ôVÕ3ÜCœ]°Àåõ[ ðCª&Ô¼ †’®WKSc®–ƒ/9>^ø÷ô 4ug6ú|‚‚¾68‹Qpâ«´Õ y’Ûd¦l/‡àûÓ²éIõ!¦6ïÓ”û«{Â,³^xÁKf’¶¾‘· }dš…Á²°:'|@àŽ¹ ï…Ÿê¼ðÎh˜Ö_µ”|¿ˆýòs²w‡còõè³¶‡Óv½¤mšb˱[í°akÈ/#©sˆ.$’N7$¯iÇl‚Wp興ˆˆˆˆ…º"'dECÓeF·—§rºªâeDSÊÎhåaÀô Œ­<]iM Òª„»œÓÌø¹±×•Ägø-‘x0¤©>tÅetp‰elþYd\‡ÊlÎc3ƒ¹!€çlŒgq“š¥iskˆ8Zùû@*?m à6;yhnNr$p$úg§¢÷þÍ–g_ê‰=-Lœ­ÿ’(€0ÍuòÿFÕdò™ä¿™ùü#'èµ9¬_JýIz’ЧïTÒ×T˜f#í2;ø­”k_KÃ^Ǩ'£ûävÊ*X›N'lFGµ€;çœNÛ¢W¼@i¾%ÚuÇi%µ1îû¼ôu®mÂŒ8~8åsyIÎ io)ÀwX¦Ûý;¨u,Ô¶ Zh-dóE-õ’SÌÖ’~ÚöPìn‚`Ø,Ü=ðÕ–¶Ó&·S¾ã÷fýêZ–T]ð±­sË@—;£¾ 8‹|}ãx®Úi®ºfÍGWE Šš¢›Íóš Áå./Úp v$‘Œáby”4¿Ä:©íà7CºÃêÝa[O«Ô´ÓJ$ÿTaÓðŸ0¿ ï°Q{Åãc$u€lo‰¿xÄ;»¼ˆ÷Ä«3†o¤v½Óߤ'|LºR¾¦XÇÄÈÄÍæ#Ü ­´´þ°uÚ¼-aÏåR5Ž2ž¿.‹X"|w×-„Ó~«qóñ\]üIù/Ožk߈]M sä\XóèØ”Ÿø?ŠÚJ"À>=Œ£€ŽÄ^w¥#8`˰O×ꡇe’.4hycqþ‘Ð3#ÑÕ iüÁ#ê¶–ì¹*ORq쩇wÛ°PŸÆ¸¤8ßú>‹PÕÑZc¦¤®·SÀCX@'˜½¸ÃÏ›ÿFÊÞ²ø»â-oŠº ÑÜîse©¢s$h$a¿ª{ÝÏ]×ÛŒ> ¶QÏgÒ.oð¡©÷¨;ãºæ7ß~Ämù­JqBÖÛ5-‘•.©m¾íUJ&s@2Löó6ÉÆU¸ŠãáuY â^—­kË ŠI9‡lL¶Ám{~ñUqql€“·'þKÒ' Û¢é’Xãh'`Ñœvsg+ÚdakìîqÿuY:`÷ZËñ€ø¤ñ¬<¾‚¦0N߈CV!ÉÛ~‹ÖÓzŠõ¦µ =úÉqšŽåJçjcwÄÒæ–;6’>ElcÂVŸ¨±ðFÏW]r}ºøÆ\擜9¬a†8¡Œ?fbîm×Áã$Í'.PÄpRË!=šÄ•®V;”ÓñS£ÀMÃ3ƒ•×šÈØî匆Ï*U!D_%Ö¶ u¶ª¾­á”Ô°¾yœ{1 “üZ÷áÜUœsñ;m›͢ª­uÖº)\بâ--Œã|m»–VûB5ì”TV^уêš.•Îè Ms™ cع¯qþã}J‡ ©w o©É\f³¦çªåáö½¾h}AA¨l"ÚGó5®Ë•½ã9˜AÁù`©—ânßjâ÷†(5ý†7º[}8¼Qç{#8mL.Æ@åo18ïù¨)I)ŠO38ðTæð9Ä)/úB§DÖºYg²³Î§yå m3†Æ1¹å'¿®3°R@Ì6ZÙñM«¬x߸2Nz:9ÿGÓâAd? #æîsõW‡ƒš{l'VÝgšµcîTq’~&Âé,§„Åû§§{w…z…Ü8ã$u·—NÚ;ý!u{,s"¨p–7s’Ü1ØÀî=Ô•³ñ?MÏúR‚Ó}£¸TMh­’Ss’ TòHK‹€`-|HÐ9@=@\‡1icAÏ·|­¼[&†j‹„Ñ0`Uº0ñÎXÓÐÂAgÃײÞ>,tö~4Áv¤¦Š&^­ÑÔËåŒsLǾ7=Hk =ÎVÑ÷ÊÍ7sšëDC* U+$Æìóà|EÍ=Cƒ^pGB¼G8——wÎWÙ,ÒÊàç¼’;¯SKß.{Í}®RÔÇQÿ´ÃÌ?ˆS7ÆeºŸˆÞ4çm”ÄIBb¬$ÈIŽš©¡²·bD¢Ï@î»öwki!¯¿pú²b[;ÎÞÒí„Ã&hõ.o–ìtøê±÷ŒžO¡ø¡Q¨)!wèK,•8D5óM ôø‰{z|.Àü%bK}tôTµí•ÞTá¡íÏ^S‘üT×ðy¦ŸK߬͒/::˜êÃ9]ÎCÚçÓn7Îv^‡ÚVÔp1“¤y¥½RÉÌÎŒHÂ]·áø€í¹%„|×6Ÿ•4¦½ÕVJ†y˜Ýœ²Dã¿¡Àü‚žnÛŒû.mÆ6_úõVj¨#²HèÏ#иnæÔ^±§Ž‡XÞ)`æòéîÆÎaƒ†Èà2>‹ÖáÔ6˵ö{=ѱ‰.43RÐÍ#ƒ[ [€19ǰæo)>Ž+â½émI§ëêh¯–+EÍC'¥{|±ÍËÌN1ÊI;89¬½£¸1¨µ‡jÍ\ 1>®á("šB<Ö¢‰²µ¼» ¾a’㑌Œœ;¯tÕÇFkK¶—ºŠË]SéÞæþSð½¹ß•ÃìBŸ¾¸ÁnÖœ6†Çs©òoz~à©ó:Køc >ã=Ö~áZ¹ bÁ¤·$€{£Ûó•Ln:{.äDDDDDDNéÝÊ¡Éé…CÔgZ~Õ³ õMÚ <ÊùßL¼•±ßóÍQá§Jºy ŽgÞ£i=šÚ©@A…™E®/ry¼X¢”Ê÷9öù i ÅmPúàCû6éÄz£WÈH$PSoÞqr›Hˆ‹Àâæá£.ôz~±ôwi)$’´3úÎ]šyšáƒÐœdglÖª/6ë•¶ª²Ýt¤šŽ¾ ÉéçilŒ“rr=úç¡SgÅuSµ„ ]ê×[ ¤s­µ2sŽc$dr´öp{šIôi Nâçóuì7ô]”uRST6F¸Œz•êuF§ºxk­Ó0¼Éd²ß ž ù¤¾&NÉ ƒ‘åù.Ûs\íˆ^‘Íî ˆ~\öœ€:nF?‚•¾µuàëç誫Õs¬âÕQ5%pt>p’7d2Ý‹ÎØÏužx÷À])ÅX'¸HÁjÕKc†ësƒƒz6XòÆ23ø†ÛàaE«¯…~*ZµØ=”äá}»RY¸{cµê™éë/”삦X_–»—fœàd†ã;n5u//PŰÃÎ7kòÓèV®üG¹®ãÞ¸,w0ý7R3Œn$ öÿîz«óÀI#ÄU¼œÐUíúµ±ÄE„ünÛê+¼;Þ¥§Éû•E-T\ÆÌÐïË››è¡G‡⟎ú)ÏÀ/0¿sûMË›ÿ hMÝ¡U;õÿµS ø¯àewîzçf«¥¢¬¡dÔµRI3ä‰å®¸ÙŽ=lã=½ø5âm+ßú6í¦®L´ ‰"{½°æ`wî­è<-q¨ÊøÎš¢fßtƒ•Ûv×½mð‡ÅZ§9µUÚ^„4ŽJ׿›~ܬ>Ý}VIÐmоwk­M=x¦š+KŒ‹<åì$õiÆ1ÝdJ? <§e;%±\+yæt×Iƒ¤Ï/âäszc`1Ôý=áÓƒF'3ú I‚C³÷º‘‚™2NîÀäàêß ü-¼P6+]ÂÁV%2}îš²YÞvvË3ÞÐÌ»$Â7çÌàO‡ žñ5ú²·SÅt§¦‚h¨"Š˜Ä÷Z_.IqÊ:’{,ýV󀆹ÅÓ1˜hõ=JÕO©™GÆmkK$G®ŸO=ÊÌE÷iùÝM~·Ô·ÑUDñŸPðV×íWŠ95ÕÊÇ+ª#¥mKÈp$7Ís0G^ÇÙ\àg9  3Œ{¯=Õü¹Òr±œü±;¡ã=óÑwÒÌ'§óÊsͰ=7ZÉñeZjüBk7ÊñÃ@ü±½¾K«ê»†Wú CÄË„o¦¡ªºÇAIã<ó1ÑHó?´y`h;óz`sL_³ÿV×jtåLñ¾}=qtq°7m4Ù‘„œîLžx6h—±ãwï0pV¶® |­éä-ž[ŒýB×dDómŒ‘Ær§ÿ€¨Ü!·Nñ»×W9» sÿä•%Q À¾6õ Ó| ’Á@eÇRK÷&¿íøç~=9Ccÿâ…b}žÚdGgÕÎhc窩Š×I!gÆÖFß2\ís¤Œxý–ñ}¨Æ©ã梚7óS[Ÿ¶Ÿ»pïÍåçê±+ZcpêÑ•ÛLÑ4gÌ.Éi_¹ãyÛqº›¾/VÍIÂÍOÃ{¼|tòÈécs,´µLä{6ÁµÙ9ýµõþ•«ÑZæ÷¥«Þé%µV¾ŸÍåóXXüz9…®ú¬§à’ö-\´Rs*íISA!sˆ1ù­Û¹æˆñ)»Å­[‡á­ÿTÊö‡PнÔí'ó¸rÄÏ«È V’Z™]$ò9óK!|ŽqêârIú•=<ðÚÔî Ù/W1MTÓÔ»“c>d-Ï=Àk@¦çÔæÕñ¥Á;tâfó ¨ƒËŽãN^\DZ­ kØ?d€ lzã9ÌYÐ÷·Z/¿y‘ß«––z>cŸÕ ˜èËöê@vqÝYõ å·›<§”P:%?˜&o&ZâàhÉö[oÒ”°ÛíͳӰ6šÙåÑB9Ë߆Å%î?‰ÙqÉîwêJ€¾2¼½ñºû¨4íÒßi¢šJ+{䀈„ µŽæŒ¸îNh{,=§b¶Kx¡†÷-LV·TÄ+$¥kL¬‡œ–smÍËœglã+ɪò L¿v9Ï–$ »—;gg ­I¾(ødÍzÓ÷Yq a©|Åﯦ$|q€1ÌÐAÀê îc;O— s]œ‚§O…j†q#– Ð“IæÏJ*íѱÿ²Ù[æÂsžîpýße|9j'hî8i‹¬Ï’2½´µxÉs†÷‚œ¾.4Ÿô¯€Ú‚@%«µ·ô¥)#%¦KñžŸ«çU­ÖÔ9Õ§ÍÆOÉHßZµÖŽ#ÒY¤©Gv{éå¼Â7½Ž;õË1õRÇ2ÉáÖù$E¡±UQ¾@ç–ùínÞ§. >øŸõOº~«©üCΧ<ÙŒ`»@À[¼F½Û¬>árºÕ²šŽ(ç{žZ|¾f‡àóƒòBÖΰÒñ]øW_Å¡,¿{®ÕÓÒÉA+#€>=’7®7jÆÊc‘a-s:pAìT„ªñ+Äz‹umZ€RÖ·.¦ŠGDnCKšv89Îzç®ë5x{ãå6¹£+[TAMu›õT·£Ž(æs48lÖHÓ4í·®ñ󧿉öíNÆ9¦÷GÉP]ÕÓÓ‘?ýLÂ1íî±µV„×´¸¦{)Küšö72äŒw n=À[_¥{$Œ=l¬sC›#]àFÄج+ã~¿î~¯Ðä‡VTRS4ާõìy“ ×$î$Óž_e$ø3ácRÜuž¾k)-qéjOZæÇ9’J¦<¶ óÊã³¶VÕv™tÆ·¼Ø&cÚëu|Ô„SÀ#1¼ãÔû…óÈÆäõY߀¶Aàé‹éùé­Ô5щ#p0ºi\擸<¬svýõ‚Ù4ãè¹GÌ鋨Ü|D€:$|RGUÇ9yšËW3~eÑ3ù<©öÆŒgø®Ö€ª/;Pçô0ý—‚~KZž0é[KâGW±„¹¯–ž|“œy”Ñ<ÿa\fxˆ·´µ§Ï «¤Ž„GÍ·¿ÃüVÇ ñÙxžÕáæåOý'YMG!îÖù‡?/U¼$жíâFS¸¹¡µÒTd7† %ÆG÷ÝÖÍá}Õpzçè¹/–í[¶×UpŸ>U,™øýÖ´¸ÿ%†<5qÙüY»^-UözkeMqÜ«_Âw nÜ)µßÛy¯ŠvÞkš)bŒdÅ.‘ŒsÎ?œÙÀÈ£|’«ã&&Íá¿R“ÍÍÝÜß‹úæ~{ek` øªØOÙüÉ$ਨy%¬¯¨‰öæ?-ÉÙHÕB21þj£ÑLñß õ¦«Ô:F³KØîW˜™E3â¥g0†Bö8zsw;| *xwÐNð²¦Õ}»ÅpŸÍ–âY\¬¦Ëtm'wnÒI=Ê×Ö®K•Ú²ã!æ’¦¡ó8žüÎ%IŸ<<µj«v¶¹j;M=}š¢ž+@ŽVœÈâ|Ù9^7ihò·i$°gü$Ý,°ÖÞ4ަ†ºÕGO$âŠâÎJˆØÀ]Èß…ûg|7ä£}ÎÉNt£µ»Q²¡µÂʈË+L™ÆihþÐYgÀ† }§ÚÜéwºéÖî9Úß5®?/-Ãê¯o´BÝ£Õþ"SA4öªŠfQW=æ²0žBìtkƒ° î1Üf5èáv:’•új É®=³Ò F9ïlp-pÇ£€ß²—;5ÄÿÑ{FŒ‚zøã«­Œ3•Í--=íÜcqÌ:‚U[3]Êex›Ó'ªÛN‹´Réý!h²P´6š†Š(#Ѭ?^«Ïâ¶–:ׇ—­0Ú»I_Lèã— VçÛ#u«©,uQß.6Y䎚¦µh•À胋†}~°\ç4“žlå}Ú£G_OZÑñSÊÉZ6ܵÀÿ’Û2¯Pƒçy"阌®k³˜"sÈ-Ûúà DzåÄ-5K¬´UãJמZ{­”¼äsyNpø$¦ZîW’ÔíÖž®ßW5º¶'AUM+âž'‰’5Å®i÷ñ"š¾8Â55žŸ‡ºš²6ÞmÍi±ÔÈ3ÆÐ’Iêð3Vû…üWðú] ÅJÊŠja–ö÷×[ù ywëaö,y#ºX{«·À†¶¨ÓÜH­ÒâH™£…‘°ÈpQ&2>IÞ9v˜g V¯‰96–ã}Æš¥¿w½ÓTsÂÀ$ŽóCAݼ³²@^^SÝO~ ë[W¸kh»ÅY eDÔ1Gs€½®ts–H×°d€\בž£pµ•®,ƒLë[ölŽ”Z®U4Aîêï*G0¨jöxSªª´v§¥¾Q=¨£¨ó˜_x‘ÌÏ)ê@y#Ü)õââ!uðÓ«]IO%H}%=KCáž9 È=h.>À¨ƒàÚèëˆM.ÈÃKjE#ùœðº» žùcvïÓªØô@¹乨™ö†ë9­újæ¨jKÑÕ/© vîŽ'CÊ×í/ÉßlÇê9Spª+§…kN“¥o%mÒËO]ÈëĺvsCÎæ{¨Ar¢«¶Ü*-õôÒÓUÓH视Vòº7´à´ŽÄº‹ÜcåÎÈÉÆ–µÅ£9Ûª“ülÕPñ7Â.šÕs²/ÓV›Ûhn®Ý¯0½¥øì$ þ™Èì¢êÙDŽ˵MÛ«É$trS õä‚y!`ùÆÑôVÚVÑÁkdpó&Ôpa¾¡°LOó ðßKɬµÍ«KSËåÉ_;b/𴜸þY[Z±Zi,öJ M+?Õèi¢§‡›rC[üZøñÑ¥¿£Üy«¹³”Sß©â­`hÇ+ƒ|·ýK˜]þ%ìx ŸËㄵ cê,U, $3ÀâÞž'è¦î¹§Ž»Cߨ¦käŽ{eLndg Æà@Çu©HÜü´rà†ãå…éÙ륷ÔÃp‚I$6Pæ;- ì}v[p «§­£‚¶žPèj#l±œÚàäWkÁ;s} `®ÄDDDDDD(¨pvUDDêª..vpGUkqnâ,ü-Õ—GsKe«”w$Bì©™ÛŒmû 'ù-’ø£u'†Ý:ç’S%Tü¤cÔÈÑù†çê³jÖ¿H£‡‹ñ28Ãèüœgâ?y¨Ýd¿³[ÿÂm^üŽúåMÔDT;.êë~ÁÉÇP°Ÿ¨¹¼7ê—"¨£yüCïŒàµÇ+ùêe%ؘœm¾B‘þ í‘]™Äû\³˜ÙY¤&§qiè.߸ʎŒw {£œ`ç*Lx•ãtÁÀfM?RÁ·¤ÐäùoAÑrD_5Î6ËC+\6Æ%­O²=¾%5QkÞ9£¡ó‘÷~¾ªáð#“Ð ÜO“lª’—lמF’¯. ¶&ˆ±Œk<7º K<”QGY ý×G#I?î󪇾èÍOˆ[ù´”õ³[œÿ«º<Oë?‚Øèc=}W-ºŸÍÆúïÑœÖ5ÙʲÕ~ HÞ'ŸU |V2‹ŽðQ¸àÕÙª"h>­,wòaü–ÀuÈÑœd‚îà®Mhô ¤«‹wþKçª<¡®‘Ìo.îöšÕ÷Š?¿ž?ë).üò\ä1s<¬Æ{´¢Æh¹Â÷E3%n9˜àáŸQºÚ6€­ŠáÅY4s:f~Œ¡td»™¡®ž¯ðãmùAü–Kaè;*ɹo6@¸°Œ·ÎNÊÜךžÛ¤´µÖóq¬òé­ÔrO).<À š7..-hù…©jÚ‰kkfª—.–y#»’çOñ+h¸sOÃ~Ú­®¦1]«¢mmÑÏžö‚X}˜0Ìdžådé£lŒ!ßCè¬ûÙc2ÿ*šA y"§ Ž'·˜‡’FÛòï鿹Åþ5nn‡ÃÌONæI]5,DFþf1Üíqq~xZî{²K@êr¶1à6‡ëtœ¸UÕH=ÿ\æçþà³â"..î2¼}R?ùµuh;š)÷ÎÿÕ»¢Ô” ˆ›—psóY“‚<}ÕÜ4¶Çc¢m}•²ºWQUB‡8’ç6FaÀ“ÅÌ¢zÛŽ´ZëÃÆ±¸i#]i¾PÓÄ*éüÖóÁ äk]#\?HËr0FT¨¨s¢7ð7~xb¬šÛâDÏιÇÁ»H g뇻­ž``´ãávÙÈôÂðcµiýi¹]¬ºrŽ”Ã õREm£c%›nwµ¸Æî-ddá@/š•·î5Ü&†ºêjXbŠ7Á8š çF×Èֳ⶜±VHè©++›”áÅŒîÐ0ÑãkXƱƒ h@ªsº­Uñ¶‚ãdâ–§£¸<>©ÕÒºI0Îìçà«ø 9oñ]#ïÊr¶§Á»µ„‚ª'ÃY]_R*à'he†CNX>´ÎI'º½1—ݹ‰åj¯×K·5•†•´ÔòÞ*9XÑŽbZçüÜAq÷qV:/®Ñq¬´Ü`¸[ê$§ª§‘²E,n-sAt9 lÖ]éüFøm½Ç $ÕVƲGÀ?jão3_z X$gÌŸE ôíÂ[> ·Ü£’XŸIRÉy£Ùã•Àœ{ì¥ßŒ­#KzáE—\Ûâ«’¦†}à !CQ™ƒÀhÙ­{ÚR]“•bxÔ°ÚøÉ-¢±îím’’\p$k„­<5ø^Œ»´xˆÔe´í‚ ƒ`¯‡—«ƒáh{¾²2E‰líä¹E)c$Œnö¸ìᲟü5®“Zx<­¡.ÕÇ`¸Z]Ê93"‘‘á£;òòc*"øV¹6×ǽVHo_÷bCAÏ£î6ÝÁlá h|–á«O\.sMÒÓ>WK!ÃXIæ>êÕï5eW5m~ uD’SÓ?ɤ‰î'’›˜†3¶ûŸw­…ð†ÀúÎi1x.¡¨Ë¹]»\!or£Ÿ¾RÛíöþ#Y©bl†_ºÞ^ÁÊé‹€òe-gg5ÎêrÏr¢e¬Ñ²Ùp}SyÜæµ‘4ã’>E£èJø 1dæiˈåî1ÿðRNh«å§Á¦ºÔ7Êiíuv¾b<ÇÆÊ˜[û-!øi=A'¡dž´¹Á­“жëgµÛì6J ž™´–Ú fSRÄ×Ë[†ŒÉÀÜÉë’£wÚ×ÍÃí>Ö;”Cs{ä¦ñò´ÿ?ÍFoµ¦ÓÇ #YÌ?JC‰;÷rŸæ¶˜¢Ú?bi +©Úð>åp–…íåÉpš>vœöÀGø–ðPç;ÄF›hÏ)†±Ž¸û´‡Û }@[3°· Œ{¨[Æß 0YôíuÏB:ºåsûø™´²½­h¦qw3s‚ZK7;ìTW©¢ª£­©¶×S¾–ª–gÃ<27cÚy\×PFÆü!ê¹uOl⣔TÙ³i”´þ!hŒãÞ2Ìûåf Œz*r‚1éÙraÈߨUDDDDDD*ý ÷UDˆˆz*d•ÅÀÎ=öX£Å½k­¾u•C金Ÿ>ÒÏgø=k2䜑ۢڅÑàŠò–þ‰?<œÿ¬–µ±ãL¹ü]ƒ!¹Üä8½Tåü–Lû5ü!Öý)Oÿ]Êm¢"â@p7踎¸qœö¾0²JÙÂ骓‘­«Šø.Êc”Ó¹¤o)/{þa`/SÍ RÂÖ +£ÃùH#>ÿæ  #|•QÇ9Ÿ#ƒZßSœ-–x.§ŠŸÃ†—lq†8ŠŸ0€2ç}æ\’G_O 2""âì±Ùxš¾_'K^&‘Ødvú‡ì#rÔ£€d 6I Ï®át1åó€ º,ßáå”ðpïŒWÝù4¨…¹ÁÞcοBÒÖãÜç²Ẩâ74õ Àü•íáôÖGÇ­ i„¿§)ZâÐ3Èdh^ÜœÙöè¶ßV<çb‹­µfŸÑ– /Úš·îvæ=±>C å˳[ÊÐNçoOU¬^(Séš[\Í'tuÆÍ!Ò=ð:'ÄÇn"-=Ùør6 —<é MY«¨®Ôu—oV+„UÎc£ô­tm{ðy¼×s¸´t>YÏU°às´ìW%¬ol|\yÖPÌîbÊÀ[¾p×1¯ò!bÙÐðv'$® Â krr[EðÙw¢½pbÁ_odpÆøŸÎÆq'9/ÜîO19'æ²æhÏq€µ9ÆM]‡Šú®ÓV15=Ú¥¤3LŽ-wÈ´‚>jÓƒw=q²¢“?gî¨u«‰Wm=5Cc‚ól2FÒ7|ôÎçhü7L°ïì.Ó\gÕÖo)‘GÖi k1 Žó"Æ?°ö©iªk¦½ðuú%´®««’Ë5 ,±2)f {zs8ùmnrÑêT;á– —Kq ň–¾‚ã ØÈÄ7Ød7R+í·ˆx™¦î  «3 'ÔÇ3ÿÙVà”Tµi!±µÜÃ`c=—Ïâ‚áOq𱨫`«Š®)YI’™í1:FVÄÇòì@tnm¶Ë_ pÚ~²;ÅžŠðÈùc¬¦Š¡=@{†}÷^/4=Ÿˆ"¿O]é™ –'$ÇÅ £v¸˜5­½dŽn0i»S¹ š†ŽŠc_úKXâ=ú­¥ùÀ8‚Þƒ+øÃ¶LJ]XÁ]54PÖDKI,ò§cœG¡ä÷*&x0’ž:XèóTꇲ'çfÆi*DƒÉ&/÷Jز£Ú×´µÀF €Þ.¸Ví5©.ÞÑ÷Ú¨o¹Md^Yp‚IZ׌¿†L|Àì­ÿ |Kªáæ¿§’¤‘j¯‘´—IÒà<Ι„gå¶h¯¢º[i®6ú˜ªèªâlÔóDrÉááìA_Vب풨]ñ.@ç¶ ª"""""&sÑS¹êª™à}‘Žíî«èqº†z&zŒ*“ÐaaÏTõ•^u%=÷~¢g‡84ypÌÙžwïËÛ¿E­ºðN ÁÈÊÚ'†ˆMÀ=±½š 6þÛy¿ÍdU­?¥ŸéÎ#4[õÿ×Î?–Xû4XÃqÖÒÆ!¤ ù.SQ ¡;.;†ÿÖí¶Ç1?ÁE¿´Ní <ÒöW¸ýâ®òú¸Ùެ†1Çègoæ ÍC9Avîëù®¦Œ¸R³…â×ñ®ÏA’ÆVÑÜ(Ü 8q’Š`ÆägÁbsÌ$ààù/Ÿ*OýœÔ²ËÅëÅXfb§°ÊÇœùàåùìÇ)ì1œ×ºäˆºkó÷)ñ×ËwòZÝñà bñrph(œãê|†7ù4.ÏÓ¶ŸÄ=±î?ú fÙëˆ\ÉlŒ„ AÜFŽV†ŽÃ ªx~¥ °xÜÖÖš-”葉†6oë©äå¸å?‘ôS ºÌЊ†Àeoœæ—ù¾,§žë™8w¯óV§í”—Îê+MlM–›|ÁÍp'%¬.iù‚ÐBÖ÷gš1hŠˆdk%7ª]ñ‘¼˜?À•´àrŠŽ8=¾¥PlЪŒ •Pþj„|×ÏPK]ntƒ˜çØãü–¼üiiÛe–í¤æ²<>Øikèâw?9/†ãPé wsÍ1Û±ôQñ[¹Â~îÕW[F¤¨‘Ídy‚ÇÀ Šš(š=pÆu*s–Žþ¡q‘Ä6ÇRJðõ±–-w¨Ž Â"¢–C#ZpÖF €éÓqƒ‚µƒ¬ê磧—LÍ] ÜÀ䪒ÿ…Ãü'pwû)wörØ ¤á…ëPÉolu•×WBʧGñIq³;»CÌ;ƒé´¤_Yª9äÀ\›’¶Ã|z(ëãùÓ S†´ùO¹ÆFÀ;¨þEA½ Øe×6T¸6r§v ó•³ßÖèm| ÑÔ°01®µC;€ˤo˜ãõ.%_Ç¢"¦ýIú..À¥ÅªÈè8_ªë%w+"³Õƒ¾ñ¸ ~kTÏcœÈÛœì_@º aqoAÙ^Zû-—OêêG%òÏ÷#“ÑÂhÞ?ƒJ¶\÷4|$g•]Ü»GmãfЏÔÈb¼Ó²GžP÷†òø·[HkZ$qÀÏ1z,ãÖ–JŽ>ª0òh®ô³œt‹òýgòZòçsžâNëaÞ,­·p3ô‹¡c&¹\%”¿˜Ü1¹üšë„Ìó"s9œÜŽ îµâvºªãÇMq=e$t³6âaòÙÓ–&66»üM`q÷+0“ G°Ù3ñ G0[ðO†ø|´ËÍ÷ʲòIÉ™ÄsÇ—z`÷Y©äC²굯ãAí©ñ%«Ö61¦‹ ~")bܬ3UWÐ3ÐŒ®+.xC©Ž.=iØcŽj‡ÏÈN"sà‘»åÙåú«ßǶžzÇMꆆÒ¶çRÌ]-3€æ?ü9boøVPû lÐiÎ7jË]%3i顺I$0ðÆÇ‘#X äŠûDÚÛ…¯‡š‚—•ôóÃT€c!ííÛ¶À•8C,´üUѵC0j '©,ÂØŽ˜Ðµ:sŒZ‹RQËè»Å?™+pñ9—˜œçrsìì ÏˆÈimÞ 5Ãè"cË£§vä‚÷5’?$z¼»ó[-¶T2®ÛKWƒ£šHÒ:àþir¤¥¸[ê(k©a«¥¨ÑMÌdŒpÁkØ‚6ŠüAðÏ¡t~„â&¨¡}]d³Í=®ž €Ûqõ¤±ÀåÇ-Œ ó•˜ü-WP×ðH¾‚heŽBñì=»9§ß9ʸ8æm:Ç­?y€KE$Žføs$kK˜öžÄðèVª >–óDqµÔuŽ~Üï°–·Ô†˜^{€_Û;ßZ7ŽÜFÒºj‡M[®ð¾ÍDײ:*Š8dÍsÜ÷5Ùo3sŽÄôÛ¢ÍZ⇄{ýE®ŠÑ-¦J8.´ÑBæÁQaû±”lFXwm±Q ’zœ­ÅX(!µØè-´ùòi)£‚<õåcF~Võ4”öª™¢À‘¬<¤ôÏ@µýy£vœñ{FêfŠwMs†xqæNÎV»:G`ÿx­ƒy‘Ü«/ŽvÉoÖvèÍ,ÖJ¡Çâ{b.hü‚þ ¦l¾ tÛcææ™ä{y/ÿšÙ+cPQÑÕW‘SNÉÚ×–84‘‚9‡]º…¯ïºNÛî)Šk smw:f×Å“›îï2=¯Œ¹o0Ïïc²Ëþ øËWúN“‡·zˆŸo08PÉQ;c4¼€žF“øì ùz)ŒÙ§¯º®ØÝßä¸c${÷UØÅ¿R¹ƒÑUì2¨3ƒ²âZ2wp¹„zªöTqÇcù*gꪣ¿-YQcá=&Ÿ¡¨ϨkM<íÀ%ô¬ÎÛã1‘#º€7¹¸Éƒî¶³ÁVòð{F·bÅGû8ÿbÎÊë¨E äqØ®P1¼P¶`Èûgò[PnwϮʫ„›ãth낹tÀÝ:„÷U;¯+SÈú{mTnœ>*YžÑ KžHa#” ÉÛe¯Ï–ë…¿€†éKWOZÈ.ßxeS ekÝ©„@÷†ã…ÓNÀÈ‹Žùß êaĹ#Ÿ'ù. ‰žSíÁ8Àî¸Ú¦–‚®–¶žQÔÓÇ3dÜr9¯;éŒ÷[v1±Ò?-Èæß'+øÐkG†TyKC]Dᎇ° ÿ5­HÀ. ˆ'å²Ú„xÛ‡}#ÊÞ^jW¸ûþµû¬ªŠøÜ஢:ºãÄ7Hë…®²œKt®h}ã`i“Ìs@9 ‡gl(›"6·;ª´‘0 g#è§·€J¹&áÒÁÅ”÷§ò8ƒƒÍd€q°‹q¿Lák+ÄKn\{ÖòçÌÅÚXAÈ?Õ†³zráb“Ԫ˗àæÏ|a]¬û‡ô•aphŠóHâIÀÍnV~ûB®N’÷£ìÿq–&ÓÓÖU™Žy^éflf1·VŠv“ýð¾?³®åU¯VF8 ZÛC§c~x¤haèq´¯ëŽ¿C‡<@×Érã–·«–C!ý;Wœü •Ì`Ï k@ROÆL´÷œ-¹DÎHåm3£hÜÉEÍŒý‹z:½–ÝQe¯’C).tó¹àd´2VœŒuè¶Ï!ÄŽgÓß+X|t¸Ãwã·®¥{ <÷z–Æöœ‡µŽ,æÐògê¶IÃ9â©áΚ¨‚GÉ–ŠW1ïüNî}Õ¬^;´·‚Úè·'ÿ›—§ú³÷QÛìû¾×OdÖVŠz‰ ²ÙUHú&»g5³’ìüùòßÔ©­«$ƒG_ëä“Oh«”dã°¼­SÅ7•DøË#‘²¿8q9ik\À#÷ò=ÛéœüÊHð±²Uø&â¾çºé$ïwrØÅ Ÿ\8ýJËpz>¤Öé+=c·3ÐA)ß?Š6Ÿó\õ@.°Vœ,•`9¿ 唃·Ê&ÿnü§“;gÝm#ƒ®Õª¸s§î–˜ê1GD_—Àæ0Çhw_n·¯¸GUAKE#*‰h/Ç(pÜg=ˆþKYünÕZ³_WÖÕJ$m+䤧>W–|¶Ê÷Ê:`¼©5öhÑÔGm×77O= w«˜ÙÜáùHßÍLTEB{..é׿ºÆ qœû&;ìr;¯ïW!pñ [Fé3ú2×IK¶Ø%®›þw?U«Y)!¹÷ê¾Js‰˜î˜vVEà5Í–N1é[´ò:8hëÄÓ µ£êp$û>)Og3œÓXêdq.Ç /…€_ÅŒ{ç²ØPéÑW¶W6wߢ³¸Úe„z²Jp í³Õ9™ÆÇË>»( áž*‡ñÓHËeÅ·&—3”d×d`ô?Él¸l æåÁ=ð6UNéï…Cœª4œáØ'¶Ë–ë¦rZÎnr]Ð u+^Þ'õ ËTpk†—Êù|ÇVܵ !ÙÅcC1¹À Èö¨ìЏ €vSWì×l_ õ³ÚÓçš6¸öåå—Ç*``ãæ¸ì†rûC+ç£àM54. euúž †ÄÁÒÖªÀÉYAQÎÌ2Hšö;³ùûoÉlOÀÉ3pÝWÙòÉÛÕ¸µgeóÈœì ö\^Ç€R¢¯Ú18‡ºV›˜|wy$å?ÙˆþWñPËNÅ^£´ÒLâØ¤­Š7z4¼¶ûHöÉK9k˜>».nÎÝ1Ó*£ä¨q…ÖáÌìdü•·Åƒ\0Ôï}?Þ#m¦¤¾ ÒîvùNÈÀZ¯ i·Äæ»™¥£›çÿ|¯‰³óIÈÀ@'8Ç¢ö,”ܨî5 ÃCHê©e-qhÍk[ .Û8 Ǩæg38féKæx[€ o;œÞçpu޼LÑ6·€úÖÁ¸ý<Ûö17Ìõ?<-[rí¶î[Kð¼æ;ÃþŒ,qpÆHï“‘ù¬’‹ø£•ðpZɰM¥ìë¾ ÿµŽæ¿Îvú/œe¯iiÁÉDzØ7Šˆ*8)3)àlLeâ¥îåçd û47ø{,öÀpvKºîµuÅæsq§\J\Ó©.'`qÿIzDz3 kŽ>-ÇÉpÎàá}1ÆÞV»«vU´TÅQØÓÔ2CþþJPxïdÕ–Í%Yuo¥¥uS¤žWsÆMAc˜ÐþïÄn%»`òqó}œ±5¼MÔUåÌæŽÐØvæ>eD[Œö›üDzŽúî’Jo~¡šO2Z{•DO~sÌ[+?ÁI_×FÝ|ðŽ:"ö:y#=|ªy"Î=G&¾T`k‹2æ;ŸO¡ä¶ÝOq1ÙaºÜüˆ (…MO#¹£a‡;©¢Ôë –Ëžâ÷³.$îI%lëØš>h¡RI”Ùà=K¶-ÈÜû²²xó·5ÑßÿÁ»ˆÿ÷i_û9œÈ£â óù’[X×±À«v&•!øà÷ÁÁu,o!ÃOV`ŽÙ‰ÃüÖ°g§˜[áª>kéÜãr¸1®£Œ9 Úºù­àSboƒýdðÍÜËÀvÇw}ÒËE%¶¾ Jé¸;¢å{ùÞë s½OÝÙŸâ½½Pq`¬÷Œ…¯¿ʉx¿A5;_?Þ,qIË ‹|¯3› Ía$ö¬?EvšžX妨{$áÌ{\Zær=Ž@[ð­Åúm}¦a±Þk³©­ñ|bCñUÄ:JÓŸ‰ÃpëÐ÷Y»ö+µ·ª!>y‘£%í=–¾\¾êGSx‰á•ÿG6ñ¬–ÍRÂÖ‹|\õç9 åh ƒñd œ„âõvºq&ýtÒpÖÁf««3ÓÇYËæ‚ðüò’ç.ÀÎà 9øBã=‹‡:ñdºZª+'ªº6¢7@ö‚ccI9#a˲w+3Óø£°6ŒMWl¸Òˆg„NÒË£sry2Fç-À>ù!{´)ø[U Žy¯4ã2OAΓßÊsÎ~A\” 8AW†Ç­` ÍE%D#Ó«ã]4AеÔÍ©£Öšrxœ2Û”]?ÞÙ}°j53<Èu ¢Fwsk¢pü×ÉW­´]#œ+5†ž¦å?_s„“œ—Àx±Âö¼Gþt¯6ÿÿ‡q×›þû¨âÖçm»qÿUÜ-5ô•ô³:ÅQM+dàQÓƒ‡4pA0V¬ÆqÈÜÏ3˜f.‰¡ê 8öÝzöùßG ž-¥8}ÂÓü _0_Äz7|/vùÛ< mù)Ïöo€8uª˜ÝÙ·/Aä·þ÷*TÌw+“ZÒàà7×4E®ß´ áü~üm%¶švK~)6;l{÷Øú>ÏŽ_ôÇ{ 8麎\úýâ›?Ã+`6¼}Æ1é‘üWÒ„Õyüø¹‚sƒ°=º(=öuA/õCj<¶ÔÁftX$‡÷ˆƒ°=2Ÿ¢ÆA€A\e“ÀÛ;®m9ôÏÉX#+ä¶pGWWDþYbµÊXGPã€Е ¼1RÕÞ¸óh»Ì|ÎZÙ*f‘ì.o˜ãÈØ»l‘ºØhú*ï„ì©úÊ|ÕQyš¦O+OÜeÎ9)&v}?Víÿ‚Öç~ó‡žÒUò²Cúj¦6¾L•18ö܇ýDSìØ­x¨Ö´[™I7Cœƒ ùc榓wÙP€ê¢ÚS]U…µùÍmMEdò4´Ž1 ZïÊWì¢MK_lw -il Úä¿©[$ð€!€bƒG-({°?iÎ.?ÍeÅÒOë]¶Û./ø·Áê¢ÚK8m³BÒs’çÍ_&Û ŒÿÄ¢Ç ­ß¤¸‘`¥8}ö9Þ\ó†rÜ{†ãê¶Á§Ëb .Ï1§ŒŸŸ(_kŽJ¦Ø<Äv ~ìžÝ½Õý÷ Ÿ‹oªd‡c”Žê?ñ“ÂþÖ55}3?ôZñ7;¤òa礨yß/#“ûL#Üõ–ŽÔ;VO§õ%®¢Ýp€¸˜Þ߆F‚~8ÝÑì88pÛ¯¢’¾4Õ²ÿ¿†íUT3ÑSÛ¦¤sþ#¼¸–ã¨Àó±üջƿ £J2ºó£§“QÙZÇJiÙp4ɆÄ ŒØin\1œ8à,;Â=!.°â]‡II0§5•â:ƒ#]Í—Ê9@Ï7+{œ º­¬ÆZç~.Åc.6j­9pᮩ°Ûï¶Ú«•~™¹¾šš9ÚçLÖÓHÊFăÔuúek47tÛ?5´ÿTl à^¦c\Ñú*0ã“—·˜ïÝÊÿwá*‚@[ð±OЉ^xª˜Ñ–>Ý0pÛ .¯¨ZÔpÎ@ç©_ ŽýhǯE°ï0ÓCÀzAKQÓÔËU3¥i ™szÔž?ŠÏC˜tÆFýV±} {â™%™ òƒœ07Í“mÆ0;åxÓwJ}¬õ½´@ê·>};ÀÃâ-¨›˜€Á‡ûÛm¼uãrEÅíeÕ ©•—úæ¾f´4HECòàÃ=p²ÿn”ðÅ E;eò'©y Ü€é@>Ï.ÏÍ`9ÏÂ{lv[ ñ/Äj= jвJCgžßJÁQÈúPiHÈyÃKš:µk͵$FÝ­Àü”¿Ðþ-mºsGØ´ãt\µ-¶[à£lÏ»áÒ£ æ#ÉÛ<¿Å_Ö/Úª‡ÍºÙ.Ô3ÿêàts·ýâYü•Ũø«£8•ÀÞ ;M\\úªm/^úš9â1Íu4€Îý¦’û8À2k^߯·ã?ûªå#¸íÿq]{6ÓÕ=¢qZ¹3Í÷QJdw’×™;?’êR³ÓJßšþ\—˜j®1°g£_OFÓÿ]ÅEFŒ¸u·BÚnéH0ØìÔýE«ÐÖ.äÓÕNçäÃ×c²ŽšrŽ[ÏŠû=S©"ö[’M$ð¸ìÿ> À@  ^pìd0¨Æ%qÑzòåm¯¦k ’®Ih¦‰§É–âG)Àé zƒ²ïáV­ºhíUE|·Nèª)ä€Z~«I h¶J£_f¤¬xÏ $8ppø›ž ßÑ}Ì7uUãßKLñ·ã$­xéÿéš*¡9‘’[ ˆ4»>S˜Z;`ä;üEfŸ³¯MURh½E©ê &žåU-(øñqy;`4™çc°Û2±­ Æ,õùz.IÐnˆˆˆˆˆˆÑtTò>7Fæ¶F¼–»vÁÕ—ª8q¡5?—vÒ¶Ùac] ;cpnÇ«qÜ«ëŸ úóæÉ`™öº—HdÆ\Ö’OBFF=€Ùb{„ZÛt’Ãy¦lasaÇŽìÞvò¹»`ý+»pO‰öÈæ–M)Y4Èèß$ 8{;z+ñc»Û&ä¸ÛkhœAÚ¢GÓÜ…ç2øÍB¾ÊJW¶2÷4äìºê_+yÚÐH æüM9'›ªå æŒpÏp¾Ñ5MF$ï,§œ ?É{z_ôT·‚Ûì÷(h2’hXÇJ^#w–>3Ê?/1ßláyÑW¼Ñ0ç8î¾¹jžâÞWs–ž¤uÙ|uw Ì#XwÈøA\r‘€HÜ6<`†ŒarmÊRC¹Îùï·ýú¯>º¡óT½Îy$»sŽÛa|îypüʯv—ïõ_m,Í|d8Žlrã§Õqøcˉ.À’¾8ñ̺§×ÙÝ[ G.´l‹–jkÜŽ‘ß¿Ïd~X!I|ú·lz®Æôµ­ã–§Ïñ'¨"ÈÅ<4‘€LÓÆýÿÞÏÕ\~¨CxÈúŠi›9v˜«ž¡¥¼¦÷†F:ó~ÁíøÏ¦óÎ…îcý’7 аþÒëys¤þÐ/°þkáQ_ÆÔkÅŸêꬵt¶†ÓÖÇOS$NdR6ZÈß! se¬vã rú)hèšZ;· °5£ Ê§6ç#Õcœÿù>k#&E»œíƒ#3õÇOu<:AÇm')|oŠw<–€ZÂàqÐôïëÙl½=UQ­â¬­Ò×{}¹ð2ºªÝPÊsRòÈZâÎP^à(à'®Û-uø—¶Ué‹? ´}Sææ ÒŒª’7¸82jŠ™Ý Ë@vhXiLO³©ÍŽ;û¼ Òú¨ØùyÈ.o–Hn1ƒƒƒ×¿º™ð»õ,- §§²æìòŒ ôöPSí$ºM7´½”¼˜i-ªc{M3šãõ7òQ¢é<Ë{`¨’GM’V¸lÇs„{clSÁÅI<.¶P¸ïªŽQ釙¿ûP³‚é“<îÛeÁçm”.ûFªY&¡ÑT<ßTUsrŽÜòFýCù(óÁ™<ž,i’ÑÌçÜccG©vZ?šÚ¥’RÙh©žæ¹ñSÆÇô$4…ñkK…]³NÔÕÑ9¨høöóß§ÑB­e⟈ö­Ut´ÓVÚÌT“Rµâ…¹xcÜÞc’wéÓm—Œ|WqPÄúbÞÜïú:-ò;v8?M×׋ž$³%òØ%Éêê>Ÿ“‚î¦ñyÄFL]+ì0œ†>€=¶x?Å}QøÅ×ñ´4Û´”ŽÏ¥˜§Òaòú/±ž2uˆÚK6•w7B#˜rÿùӟຫüXÜ/ýÚí£t•y {é|ÂÞW ‰ŽárÒ>$íšJ†¦›Lð¿NÚ¤©ä’«î·¶9Ö†´ˆù>„ø·_E‹íjÙ)lZ^3ÊqÏÎ>Ûùc+¿îµüJ¢â%5-†×¨é¢’1UIFÖ‰ ÚYÎö¼¸9ü®#˜ï‚¾‹§8y‘Íþ—ÝŸÎOêè öÄ`z«]ºˆMµV^)´uú8i%¨}S¨ŸlˆEæ9ÅÎnCŸ|ãuŒÚO(¦ Û_á4Ü/ÓÎhk¡µSFæŒÄЈWCÿ]MØwÙc¯4¢¯º¾ Ö9̵Nö—»B?=Ö±³Êbs±Êã¾=6_ œ¦R@'ÅNÿº†íyÒ‹]lŽ–’É-!è@s§·¦øçü°¤ÐݤƒÐ:-dø›t.ㆾ|-p¥Ó–‘ñ|ÇpðX¤8€;lB倿ÿ_LDE;Žëæ©x{Á†µñ)_^ß º¹¢ž­¶æU $ gº<ôËN~Šæð U¸-£’Aú½@çHÐwä’š&ý3ÈwöQçÆ =7‰-c9"50ÈáŒ~±Ôñ:Cõyqú«“Ä…¼Z8qÁúS4’],Ú™ãøKÄnØæ#ß yŸ² N3òS¯ÅÖ†ºëÞi½Uj†‘õV+p¸V7<‡î¦®—“'~^\ò’N:o±Ãb½mÖ¥¼ô´³´l];žäçcá®ñÓ¶ß u„òyl|´n…‡áÎî~îp=ÖoÓÕü&án¾Öº®íAM=^•«¶~Œ‡3¹¢rÖ’ç‚<˜åæüGqŒ¯ìàçÖ甑æ[ÏC×’°uéÝI~1ÀêŽk¸Û¹~œ¯ Ï\ùZûTyt3Ñ;—šcGP0ÑÚgßöÂòè駬¬†’š3,óÈØâ`êç8à©*fx4²Ój ú«LVO÷x.×zÚ3?'7’d¤¦h~23ƒÊq‘Óª‡·kuM³QUÚkYu4•o¦™‘¼9­{Zà$w­¹hºaG£¬´m9[àŒîÆÑþK†µ4ãNU}êfÁis¤wF†Œ“ù¢G õLúų'£{ßnÎÇŽWÉPÉn{}ß0ëÝÁ^~(x7|ÕzTØèßQq·Ö²ª(|Ü—Äæ9²´Þþ¨^Wz¨k§ìõ5úªß§¥k©j*.0Ѹ=¸,/•¬Ü}V×hàŽ–ž*hA䉭`Ï£FÔÙÁÇ^Êݸ2y*ÞdØ–å£;ù¨ã–@x§LÂß,º—Ìt|ùÆü€Ÿ˜Œ;äà¥÷„‹WèÚ:•îŽGMFúÂñöò¾P;€ð>º,®3Ó|†;îª:"wDDDDDEC¸ =ÕFÃ'Ü¢*P<¶~à\|ˆ÷øzõÝ û |‚¡‰À|.?RWÅv¶As£}ÊŽŽ¾’A‡ÁQ ^ÇpF¯zá ïyuÓAiÉ^]Ì\ÊFâqŽ­ÁVËÂÿk]˜–ˆ‘ƒ÷K…Dc¿nr;ú/£Â æÙÒê@AúHüXWš|ðÅ­Ã/š¼÷ûõ?ÿ믖/ú$Nï3TêCvCC 7°'ÊÜûà|—¿Aá „ÔìÅCïõ‡™+ƒê5« iN p¯LÓyÝjyý©*ãûËÝótœÅ}º‡„¼4¿Ú¿F\ôE‘ô¡ÁÁ±R¶4úµÑò¹½OB±C᳃4os¢Ò w7A%lïåÌò±?| R\县†µ´vÙ ý}Åò±êÇ1®pùõX>ñág4/òáÓT·óŸ2–á)ú<µÝý;/¼bƒi4-Èrެäxÿ„•`^t¶¡µÞ_i¯²×ÁpýÝÐ;œú팪Ý4~¬µÚK\ôÍæŠßÌ÷šŠ)#‹˜ôÎd¯ôUXy\èW3+¼³†wêWˆ óe¸ÛÔÙû8®ÐGõNŸsÀ¨W±»åÌ-òÜ}0 G楾ÍÛrˆìFý{®h‹Z¾6ad¾'µ$t®t³LÚ æã£Í, ë·)ú«§ìó¦©ÿJZŠâÈÜiàÓï…òm†¾Jˆ Fþ¡üŠöþWE–žž§%}Í`É!§ßd§p{rI]o ûËNÀÆø›åŘÜî@ì¾ç˜ª¡v. Û9MÇMÖñ…W5'‡ýRæ°>:XÞK±ðº¥wäþ*'ø=¯oúu°– \ó$±¸Fq³¢pÉØí²Ø †Q0Їø++r×ÅÂ}bûkCê›aª|Må=DNÏBH鎘PSÆWÞ5ÎæžÝŒ·5Æ& “+ºdãñg„,ªF1ÓuE.¼\¥ŠÏ¤Ã `¬Žh³±{COæ?%6)€õÇžWaö*ý¢‘—ñÒÒÆg9@íþ±Sþ[¨ésä.iÀ¾Ëc> ]£©Û€L6+[9ÛÐæ9þk9.©õ]wñn3׺‚?hd¥üd´F$ò´ô. Â]<ûý³ë¿ÉaNÀù¸»¥"k¹sw¦vpz‚~¸[c‡ú¦t.ªúx*éd¦©²Ã+KÃÜŠÇ5| á=uÑ÷+†‹¢­­|L‰òÔI#ùƒF »Ø;»8;/¢—¼!¦Þ>iÒrOë)F?k>«ß‡‡ÚLZ+MÇÃk„mþêú›£´‹\Ý-cž,ÿÕ\¦tç;Ýý´s?ñŸ¹G— ç}·Üet;Fé Xc—JXÎbþSnˆŒœzuØ~Kæ—‡L f? ¬þ>‰?Ðæµ žQ¦îYÈÈê²{R;õZ²¤§óî4Ô­/•‘þnÂÛ¦’„SXâ§h‘>F0œ4<ü^«¿ \ø‰ÆþÅc_ÅÐð[IÂØáŸl€‚Ö|àœ^ž›/>AË(öÊ¿gÄÍ /Tíš/2;—3¡ À:ˆœ’y·€ Û9R_8;\-mø·Œ³Z¬m\v7ÝÐEüÊÃRcÊf=o„äÎç+èat‘Œã wôtLÞRÖ‘‚þû©?Ä}COsðƒbµÎÆ>fÓRÉLyžK .loÇÂÜäÝŽaÛ¥ãà‚‡×©Ï.jËìÌ|‡bæGO.ýp ’tîJ¾$j¤­ã–«©”÷Öïœï†4grNøÏòÙ\¾%o̺Õé \WJ+¥=ŽÃ ½³Ò0µŽsXÎl‚OÅœƒÓ¦ËÅAQWYOIE¦¨žFÃLsÞâÐrIÂÚ'hů€šÊßJÒêjM'YO1˹[LöäŸZ·1)îÀØw[‚ †:jH©ákÆ1£ Œ4€è:/ ‚FåaŸS¶/ú¹­œF~ëp2p긎ûÇü–û9*)Å«UѸ“;ê!™£l±¥¤õÿÚÊKq;‘œ3ÕαÖó\àyÉÂÕž¡dm¹8ÒS¸ u0Ýoæ¼È&– âžòIƒ˜áÔræ¥Ç„™«éü7ë9íÓBÚ¨ë« 8yýÊ2Ó¾Àd¿î¨¥]P*õ õA‚j§HÞƒ/Îà-4蘆RRÊZ_ ܧl†€p¼ÝeKOUn‰µ±¶J6HçÔ1Çg3ËxÁõ#*7ð“K:ÏâÆ¢¹Ñ©®Ö‰nìÈÃ9žÐøÆ6¯nß R­A,Úhè|oY`¦§cažÿmžF‚çKŽÞçù©Üˆ­û»¹eqÏ Ã?-Ö¿¼dÎj5õ=CÛË$°9Ä’9å.Rø»)çÁúcAÂÝ-j|±É-ºÏIE3˜r<Èàc]‘]ÝQ¢"""""&rˆˆˆˆˆˆˆˆˆ‹¢¡Œk¼æ†2S·? $EnkÝ1g×N³Ljj#[n«h51¹®-sHèæùo•.Þ -’Ü&u¯ˆÕ´”eß©†ªÌÙä`ôt•ÇÜ4|—u‚› µSÇ]¯k[rÈg’&ù/Ë kŽZàpI. ô~%…¸áá»[p×É­¥wôšÑ;ËUo¦“ž"7lc<™qëPi [^þJ/{ªv3ˆh%yÇ®ÍW6ƒÖšï„—ù%·Šý?pžÄô€<Æ\완c-ëŽË'Z|XqBš¬ËQz·×Fèü¿*¦Ý(;ü«ä9ß×t*ùÓþ1oQML.º^Õ[…­™ÐTÉÞüŒ¼d8Œü8ëÝeí'âO‡—èó5æK á º¤_\dK3OmŽÉ{škKÞ£ª²ÐIM_%<ï„:š@<ÎSÕ œ¸Ø«ª¿XÀúG¶Û…NqÊ}ú­lø™»T^8ù¬kjm•—'Óù€ò„p3´c²Í?gÝm®“ˆ;•Æ*8ã·Æ÷LàÖ9Ór{€×~k;ê.=è-=ca¯euE<^hc\b2Ð×AÈÆqЙÙa¶xЈÊã7L±µá¢A}-=/}:u÷Wþ–ñ‡Âêø›ÞŽýd—#˜ÉNÚˆ¾ŽÜÇêЯËgˆ~ \Xû·Æ\2>õ±cçÎÑ…uYµ¦†¼KEŸVØ+ü±Ž¾7sØ`s°W ÆáEl£ûÍÒ¶’‚ìyµ66‚q—:ùf]øÏ»l¾U^½²6Ld6)¼ÒÝÏ¢ø©øù ckÿ§6è²@VÈÿͪioj¨¡¦­²ê £ÅM(|u {aÎÛŽ£Ñ|š‡º#EÔÔÔiM3o´KR1;éã!ÎÜœO@\p:Ø3ÀüÕQqp%¤‚¼=qn}ÛB_-Aò1Õ¶ÊŠ~hñÎ âsrÜíöÊ×ÇŠ“j§ãåÂËu¦©–’Ùi¤¤ÐÎ"”C›!Í <’@œ‘Ì6+"ôkî²ÕÙm¶·ÃNÈè<ÞG²5ïóyÜ_ŒmÌNE%>Ïù§ý-©éÚÆ˜9i^÷8çâæ(é×ÙNŠ)›,Q½®ikÚÒÜàƒ¾Ë¿â-øpGäµýãÆ¬Vx„|L`ç ±ÓÂwÎKœ÷gò—ø(ïrËdkáÉ<"Fèxx)äoë)ࣅÎùS0ãéŸâ³Jù¦x‘‚zw\g!£pIì½|wOÞ +£cÁtvÊFÈ:àò'ÍXž`|¼oÓ1³“Ÿïs9Æ[Ì"yü–ÓãÇ–ÜtÀ£ûmÕqè‡sÐm²ª¡öê¸ï¶~YT/9ÛÓÕs9árTê6AŸR±‰ÙçƒÚÐÀ^l“´29\Z×ÂOäV¶ô=¶ºë®­6Û|.–¦ZȈ Œ¿<9Î#÷ZÐIömWAÖ>·NÇ;Üã#òáß~«Þ+Ž7;û¬?ã«îžµ@ç-5 ‚™¾åó0š×5AoÆpæ¼é‹CÛ†ìw;©¥ös0¾É¬føÿéT±ŒrìÇvëÛ®’–'5ÜØ o’µÍâ~ *xñÄ8a‘ÆhäpnÿpD÷tôŸ+ FÇ8ùl“Øî©C•Ùù‚¾¶†ùm Ç1!«á©w4§c²Íôwv·Ã!¨žžWUÑÅ {¥g™S™åkq ê2NGL¬­àÒ¦¢.Ô¶sHuH`víÇ“Iðuøs“¾þ¸õ¾&%ãeúf‚­¥góRÄs°s访öJ+-^’4”R›°ÜÞè±Ë'žZü ³†œ€ 8ÀV?#óxÇ¢aŒ³Ô4 8ô†-‡ø‘¹6ÛÀ½s3À<öZˆ78Þ_Õ7­niÆCþÚú˜!š&WAÏÌæí·!ûHÎG¢Ûg7âèpNvTsÕ¸ÂÂ>6&oþNÚ² 胼º§w[@üüÖ û8æ,ÕZ²3œIGÎ= ‡Ãø{)QÅùá´#“áÓõÎÇcú—uZÝÕôXáå†à<³þ»4ù@Iµ À.[ñ;ô˽U”NNT ðÛv£¤ðÉÄ/¼6IEQ<³GšÒDÔ~[H'bÇOÊ?ðÖÔÛç´Õ•Ìó_v¥¦s}ZùZÓü Ûºòu!®Ò×J&¼Féé%¯-'”–ˆ=Ö#²2âNÆ<È_34ÌÍ>[9yG˜ÐvÉ.v=ÖrP§‹u~;,?u`‘ð×ÑT9¹ß–& Œÿe§e5‘¹«¡sš9Ì~3Ó˜–»üZy²q9áüÍd‘FÖòØ÷c=7“E±Ù†ŸÐö[#aò~çGnh—Ì<ü£˜—9‰9$ànUÀÀùªïŸeTDDDDDDˆˆˆˆˆˆˆˆ}—û*¿²ë’7<îF_‘'ï5 ÚnGÕq4¤ž#¾øÿ%O»NÏê¥å™UÖ`óHǹÉö+/<¶qC@×i[á4Ž—Ñ×26½ô“´å¯õC›KK€ œˆ#«¼.ñŠÁ$¦:ËÕ3d,dÖÚ†KÎ;;ð»V/ÔÚgTi:ÆÓj; ÒÏ1ü,¬¦|\ß.`3ô_Þ§‰£ã¹9ïßò\èî÷*)ÛQG[<µüáìw)kØ‚:,Á¦üIkk}1‚äÚ;¡œ³OëFsÎAÀäg º¬G«.ó_õUÞýP&¹WMW hÀ‘åçR»¬z–ég³]-r†Ò\ü³RÃÝчò8{1ßšø.W Û•Sª«ê¥©™Àù’pÀô_*"úèk]HâáR—5í>cC±ÌÈôpÆA…ôÉzºV²š–¾åY=4 -Ž7ÎâvéÕP]'å`` cù/™÷ §Hçù§.ë¿ÏþkÓ²ê;¥º²:ºjÉéçáìš) èA#²Ï5ñY®ôÐ4·IáÔÔ¤ŒGr{›;hlÍÉÜŒžv¼ÿ ô?Šî_*!¤½A_`¨•ÄsL°7927p6îвUŸ‹\4»T6žƒ[Øå•Ã!®ªk2?Å…zµÁÍi¤dv*¨…qß¾I?«8É>€¯]^)¬2óz«©e<4T3Lé\vo+ zœàÜ•«î‰Êyù¹NŠ z쪊˜WÐqŒ`®Xõ.Cm‘S>‹ø¼¨Ž—Ãö²–\†šFv_ù íû¥AiØq;zeò8à’@<¡lÁÇ%Ðv;äµ·Xj®3U6¨!cLp“O¡œØæço˜Záœg¶Ù9c‰zêÃÃí)6£¿É+i[+!c"o3å•ÿ…3±;ökËYkkߎ7½S5$Õ›}C¤§q¿Ê’'E³·à;˜ÀsGUŒ/1ÒEq– ¥ž™„ä‘®pÇp sÝ|Í“.À9þ º €2×g”äíÛeëiz;mÎõCEr¬t•qGQPàHŠ2~'`v séSÂÝ=m:#BêšJ»]9Ž’Üe•õ1T;˜ÈZdiæÿ ‹20àâ6vRðÿ¥tÖ‹áµ.žÒïtÔ°TTjdùµ2yÏk¤y`߃•¤Œ†±­ý•þÐÝ'¨«¸ƒ®¤µÌû²ÁI]i-k#êªX2Ayø›ÐyCšN†|¿‚­±ð×ôœP\ŽžÍ]¶Ñ,¿«æ åÛÜÍÛ V…'ÿ÷ÁèœgþšáÔ~¦E²¶ã;ï¾Á_b±\k™Yq²Ûk+<¶Ï=rHÖþï38ö^£1æ—ouÚ7ÊÁ^9`¤›ÃÞ uDM$&–ZwIq†O½ÂÎv|±ò4²GrXð|ý⎀±¥·»}M½Î'ð|"p~dÀþ%7øÍå3ƒzáóÆ4åxp'á@꿽ض‹½<Ô´ÕwÕFd%N×µ®9x9$¢Ê3Ã¥“_ð×Kë-z}¢êƸ=µÙ|­Žg€÷ïñ†œe¿@rMó|á{8Gá+ZØh*p¹UÑ:¦å\ÈyŽ/†6Å嵜ØÉ9.{¶Îƒöp[DšŸY^Ènih)éFÿ®‘ÎÛÿ¨©Çõmß;$¡®ÍsC Œ‚¼m/§él“\%§pp«¨2ƒú¶à|$ì7^ÙØekÓÄ%TƒÅón&g²š:ë|­Žåˆ»-þ¡O=Ï'MQÒ}ùõæ:•Õo+¥1¸°¸ŒŸÝ^Â/"»ú眽Ç_’ÂÞ&­Ü8eK0~’—S[ÅžC*$©åÎóo‘Ýgð:úe7Uú¡Î{!8\AÞý$DDDD;uDDDD9Ï]‘q{C‡¡õ]E™Ï6G¸;®fÓ;îÒÉ‚_—{ê¾Ku 1?ï‚ßMOW#ye•5¯®HßÁ+è€Nê§f! Ë0áÌéO+ ^vãidà»ý`7 –Âã–ƒô]RÓ3”³¶WlQ1ƒfàõ+ŒðC8h–&HIo3A--'bGÈ•Ž/<á âS=w¬•Ä9Æš7S‚G¨Œ·>þ½Õ‘«¼$ð®íLE–;®¨ [é«Q>®dÅÄýhð^æ_£pÙ¬¢Bù=!ަ@Ã$µ¹Ë·ÆÛ+´½‚Ѧ,v+=º‘Á aÉ ÜI$žä’w+Ó'ÐEGçÔü‚yËÆÕúOLêêÐê{²óNÌ–2²²ydìK i÷+_<(ðRãG-=6›¬µM'Jš;œåñŸP%sÙù´¨×ÅÜAÓÔWé#Õ6Æžf6/‚±­þÔggŸî’Oî…4ÿ xÅW3i©øwª^ÿY·>í¾î”4£©ßE˜ø5oñ¥5=®ÇnÖªYjcŽz{¹ÿRd_‰ølNÞÍœ î§1 nNª¨Çe‰cyËË€ Žïê=VÊPÇO$f7Æà3‡í‘œgÑ}0´?âËNPr»¹èH3ÊyZVñ–Ú‹Ÿ.šrÛY¸WÏAO 1óVÉ-S[2ürX\‘øNp2 /nSiž%éËÍ,£Î¢¹Á)8È8›cЀv÷[Câ=îZSÚ©¡{§ª³ÕÂÆcg¹ð½ \•¬½ko¹‹E¦é;Ÿ•–ȈŒ431°` ¸[Îz©ãàÒ˜AÀ»+éë!òâ31³±Á¤J|ÎfZK‰ÛNÙÊÌÕ´”µÔsQVÓÅQMƒR[ê# “ü.÷ê;o°+\Ú‚¥õ·êú·óÏS$‡''.q?æ¾E°x~Ó­2 ä© wïríüæ¤e;ùጓ¹h%v4l=–«øÛcºiî,ê‹}â†jYMÒ¦hD$ŠI#ÓЂ×²ÇN'ïÕ\¼=Öš‹E]ÍÊÁv« •Ü­—ÉœÆ%hvy]Ž£æ²óÄ?*/±×Zõ=m¾8šq‰Àwí8™C²Oäî³N™ñuE Ù-ê×÷ÍgNÖÆ0æÇOW¸c‹pXqÕ uè¼§x±¬®¡¿Ú¯:b–[eƈi椨tsÂÉÊÐâî`âÜÇ/NŠ(ÉX<‘[œQÍÛ¢È^g¡ÿMzVK¤ŒeÑIiÞ4éw5¯ÔQ¶¢@AÏã“™Ý{g âžÅ¦m°¡d³ÒÁ"œ(#cDnRy@ híÓVN¼Õü.nŸL¿[iJê"5tQ>)‡’טÄqç”—Ûoªú*8ùÂ!ú§kHÃÞo-Iíœí¸ü×IÇN RÓMNÝuNß2GÖÒÕ‚ ‰Û!™ý¬LòËâS„–úñlƒP=üÀH*_K1„—¾?ÙÇáÇEoêON–Õz›LÖÚe¯‚Žú?¾²*°¹Žç€r·,•¯o„óuêE‡gñ™U.›Ô^¬ñAxg—ú"š•‡É~p${œ\ÃŽ@ý¬vYë…bÓ\IÓðÜh`­£šIÝ ©fÎikÈænăíÑeXÚÀÖŒ^àÆä•æ¸9Ù%®ê/eücjZk7øhÛ½¶Ê'Ò\®0Œùf6V;•þ¥À Fý1Ô¬á׆—Þ$ñ*˜Zh-Š‚áO%â£Îlbc!v7ܹÂ7;œ ÖÍêI-“âÓÊq=½PÐÞ£ª–ZšÉ%·2ž@Ð*YO d’±¼û´I-ì ×”ä™ä$äóÖˆ¶á‘ÉáßLãÀÚžsœü_}›È…ŸíŽç¦fGM—Ø3·Lcufq—@Úx‘ kôÍÊ$‘=Ô3ÈÞaISå½±Êßá.éé•®O:—‡:ù–ÓÉ d·RÔ·™áísÝò»»D­’Ï?gÞÑ÷ÊKs¼Øm·;µ¾ªA-dBo%a9k]–‡s0üXÎØÊ™ü­äò·Ë cl˜ úh½vŒÃtÒv øû²¦Ý ƒ±èæ¬[¯<,ðŸR²y(-séÊÉCd¶ÌYwbbvY`¡¢à§¬µU¬ªÑ„ÁM?“÷†[ß#—µÍ,æ™÷ †áu£m®Å¦nB¶8½Õ:•±rIÈò] n9]±pAÛ!JJQâïMXÙiŽÍEx†y[W e;åhÆÃ{OЬU|—ÄÅ5Ʀ;'[#œKþæúÉby]söЫ{úcƸÛ#vâK_ƒÎ×T\2ÁŒçs¶Á}ö‡õ Ζ’Š£ˆ•3ÍPÚvË4•æ(\]ËÌ÷;-`iÉ.=0OeuÐÛüUUQÅ4PkÆÄòCD—Äý°7kähÛ¸«Ý¥·x¾¡f!ƒP¹˜ä[•Ä^¹t„÷꺮¼mñ¤|Éu.¬¦…ÎÁÕÖ7ù,k[Êà$fÛœ8åÝz`ìéUN-Ý/ERΞeYaÎÝZìÿ5•x_â?@ë[“-5K`¸È#޽ÍÊòOÀÙÇâåÏ0+3¢"„ÿh.˜Žß]¦õ,¯«¬uM<õ”Fü8:67æ 8Ïp…àþÙ]Éa–£ô£ ò䇲 r¯ÅÐz)ç"6ƒ±erT%F/ºVjª5sÓvëÌtpÕER)"k¤Œ¹Ñ–dgÀ€ì``ú¨÷ÃïœRÕÏP4ÔÖX`sFo-u+¤æw)äk›“Ê'§lu _øpàÜ\-±\Eƪ+æìðk `c^#c? ‰$÷>e =–ÓgmX´Û©hþùW%mW•o›<‡/‘Þ®vJøõžésÒÕô6¼–k¬Œ޵¬ò¦nZAË ®ü%ËUÝ/{VIs¦¬òëé+%{*©Z€¸Æá‚wc²¾îüdâõží%v¯Õvúº\yÐUTÊÙp̱qÝK> ÅÄ‹§-÷mSp»^ën±ýäEY”Ñ;!­kw-Ü“œçeÕÆ}x»hiôõ›§šªë,4îpx{©£/ÍÍÊÐXÐ^pÖ¸øWâHu-€ÕÉ“I©sc”ÄyÈÝÄ=ä`cœÕµ 8Äí_Iú`þ‘®?u¨švf§8ø¢ø°céñç?6/[G„]Dú˜}Ö–zXŸL](ƒÌ’X§ß —•ÍÎ2àáò_f˜ð‡$’Mý)×T¹•@DË}<“éÇâv\#û‡²—ðõÁ-M+õ t÷~Vó>¢âçŹÜ3” »rUñoÐ|:Óæ»F‹°™¼ìÉ4ÖÆó·âåÇ(qIì:ôW5MöËi¡ç¬­¨£ŠG4`ÂYüŽRÐZ¯Š»Ä ­FZz½cO+à%Ž1C$¼ØpiÁcH={zgj_7§ªi ž¶âÆ€C™NèÉÏ6p×ãaÊNáY2xÆ£¤æm)$Îp“ýl ŽÛmŸÍ}†çŸW(…Úªåjª´ÒÖÁ!® ’fHcsj? òË]ðoœ·9*øhàÕ¯„úvç%Þ[µMÚ¥³KTèD?«`"&r‡;§3É9Ü»²ËžTx?9X§Žz%õ´W Mi·Ëp¬^]Eæjž\†>Õ²´9ÃÐŒzppRg´³]Ç-ê8LRÓDö¸18Œ¼´–™ F\Zq—}òˆˆ„ePgºeTî:.³!4µÄŸA²áÈà\æ‚Ië•Î6r·  䎫° DDDDDDDDDDDDDDDDDDDDDDDDDD]lÙqÈÏoeÌôÛN7Ê©ù*g8ì}J""*ÑU ¡Ï`?4Æù\d8i9ÆñÿWXÞ%X¨&yu-5’ÃF_$Ò‰N¸Ž1¶{(žíÉ*ˆŠ|ø¬ûß› q&ŠïSÏFü1J1õ©%ipû¿—“–œ¯µPº,sÆni>)Ëe~¢‚@ëdï›Ë%–Fðaæ9ùßð`c˜¯[†ü8Ñœ?§š'fŠÞj`‚*™÷9ÓˆCƒòN ¾7d휫À7¦UU0=ÀUÇ|¦Ê§Q29‹wÈé·æ¬ýqÂý­hå§Ô:ZÛTù2MC!Ô4ú‰[‡wÏ\zåG­UàöJc=N‰Ö<Îw7%Þ/‡ ó£Ücש=¢(.vd¶^ëÿH\é-ðAYV\OŸ3ck^ü Ë9;ïºöMŽQ>ñÃZ~*pòM4ú¸¨j™U U%\‘/c¾#Ê',/oQø½•áoƒZ“…ò]Ž¢®µÕ6Yž)~èçžpy˜îfŽRC1€O^«=T=Sî9zî¸;8 ã;{®mÍq{ÚZFZr=0°•g‡.YŸEz£Ó•Q:ÔÙ eSÞÚ—8Þ~bNZH Œ@ë…hÒp6 qM©ïÐ3P\oŸ¤è+„>dD<¾FHÒA ˆžÞBýa#8’¯<Î'lÁVwuÞ„ÑÐ1š·QQ['¨ Â^÷THÒì#Œ–äœcªÄz¿Ä–´y_uÓúЬãMU#¨iæhèæ:F—wý¬JŸw8­µ7 -5i†b*~g¾wsmÔd2Gl¯^$¸Ÿr¶ÌêÊáil§Ì¦–’ßç-ÉåËšF:oì;¼ñƒˆW·pÕ·bÎ@ǘçòÏ(pvpÎPN{õ^eÓ[k ÕSjµÖzL=²×Hü仂íÆ\ï—7ºó+.×±M-¡·*©¨‹ƒ].òÜî¿„íœû/¢›Nêûµ+«­Ö;Ím 'e)ª†ŠO(J÷±…Àr‡à'9#Õ}2è}i =CgÑwï2 R9ô’óG'âÇ.?tæ¾;’Ô—™bý`ºÜ»ÈÊzg¸´dnyA!§˜|Dcu’-Þ8µwŠ'A¥« ɹŽ^Øt®h=¶úôYO„¾ø½¦.t·wVéº'ùÍ{¡}d®|| ]ÈÎR3†à8瘩¡c¦ž’ÓMOSäùÌŒ <––³›¿($à}WÚºŽdBõ œl Ï©\‘S”swꨈˆˆˆˆˆˆˆˆˆˆˆˆ‡9ÛDDú"âàâvw(Ç`ªÞª¸DDDDDDDDDDLŒã#(w©ßTn2N?‚«ŽØ\H-g'rUX\NívßuͲ"§¾Uc¡e<ŽÍl<¹ywá¾rµ·â²§SÏ­I_ßK$7XßUn–šfÈÇÓy¯  Û—qƒ¾AXETUMš²˜éú!ÎÊ©+9ÉœàÑœôæ4cÐ/-ìh{äh-çÆG6FÉ}ˆ‡¡Â*×¥Ò¹œ„c¾A ·(‹‹NwÛ.Hˆˆˆ€åP’BséÙUPã* TTÛ8쪩¿²£›ÌwT•Jëž(çˆÇ+æžÎù/žšŠ:H#ðÆÖd÷ÀÆJ ™%…æÎ>ò±¶¨àæŸÕGf¹ºËr}Æ!´Ñ‚Ñ m‹$|ÎI'¯l+š¯CÚk l+tWÚîv¶©Æ@×c8 â¤áFóduN‡ÓE®9ÿèlYÎÝ2:½˜´ˆ‰‘FÍ#cäˆb6ËZ1_M6‘ÒtÖ›LY!‘ÐDßäÕöEd³EËåZh#åo-37ÎÛz¯µ±ÆÜòÆÑÌyŽS긶ÍË mæw3°Ñ¹ÛžÃò]ŠkZ0ÐôU ñ6\†é’'e@ÜîáôU uÝPì3•Ö2G]ÏuÈ2¹“ù#H# ä*¢*=Ü ¸ õ_< ©ŽræËùœ\NÓ¶Ž˜ÎùÊúQE– êèêYÏñº)œe®#ø¨«Ç ²_ïQÜ8{q´Úi|†Fë}q”FÙ2âéö5Ørü<½A9Ýc~øCÖµú…ôúÎ(-6¿ºÔ‘WOVÉ\gk‹"£|ŸÓðŒ;esèß2‰.´šªöèÛúÆÛ«(C r†ºHÜI!Í-pŒðz4º?që…7®kilÕ¹ª·N_-¶¸4†ÔBFû6æhèzdU‚È a$ï…1~νa˜¯œ?ª‰®`?¥iŸË’×a‘½¾½šG¦þªd2Zó##k\v.®m~Ñ?5UÅŽ.;´ó\‘q-v•ÈtD%SîUQû"&}‘3Êp >™]EÅ ü/öÏòUd$`üÉ]­9?ȪªìªˆŠ˜ÏPª6興ˆˆˆˆ¸ä»a±ï•ÉÞaŽg7Ü.-g.áî?5GµÝºw\yHìªyCƒî¸ñœcè6]£`\‘ "ùêå– ttóÎ׿Ë{c,€þÛ¹ˆ8èÜúßBâòFÁ¼Ë¨óÆïžíû?˜V—ø}§x—¤fÓz–æ2ž¢"54££ØOCìF8!FmSàβ›O1ú[Y2¾òÉÏ4w=;á=,çpxõÜ;Ñ«Úð³À~"ðÏŒuWkùµCm®„ÔRN%mKžA g3Zöò‘¹ v åK4D²"""""""&êŽÎ6 uTDEBê3쨲3òÊäˆp6i?%G¿—«Iù.¿?§êŸ]¿æ»‘PÌãGoeTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD Áç—|lÉ9ßÔ®hˆÑ€$ã¹îˆˆ˜ß(ˆˆˆˆˆˆˆˆˆˆˆˆˆ›ãݾpˆˆˆˆAõÂ"ë|,x ä0q²ìˆˆˆˆˆˆˆˆˆ™ßˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ€a|¢""""'tDDN舛åP “Ÿ^ʨˆˆˆˆˆŠ„dç$*¢ ô'uTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD; ª誈ˆˆˆˆˆˆˆú""""""""".ªo?õ‚/<ç““?‡¶sßÕv¢"""""!8¡éÕ1õT9Ûª¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹‹¶èªÝ÷UDDDDDDDDDDDDDDDDDEB ƒŒTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEBU1ÜÕ@Ǫª""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*ÐïßoeTDDDDDDDDDDDDDDD$Ç›ÛuBóÐ7uÇÌ~&Ùv¢""""*8ã '䄜g¢¨9‰œ"'TDʦÃ*¢""""""""""""""""""""""""""""""""""""""""""""""""""""""""¡h=¿$k@õU€ˆˆˆˆˆH$®³)èØÜOÓuÊ<‘— É6TiÜŒårDD\qÓ;ŸuÈ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" p'c•BïåБœ£KIøpW$DEGF À*÷DEÄñü qmљ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""àèÚâ :'–=JäU0©Ê=Õ`8gmÛ;.Hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¿ÿÙOpenLP-2.4/tests/resources/church2.jpg0000644000175000017500000065266112657640340017005 0ustar raoulraoulÿØÿàJFIF,,ÿÛC  !"$"$ÿÀ bÿÄ ÿÄb!1AQa"q 2‘#BR¡±3br‚Á$C’¢Ñ4²áðñ%DScsƒÂ&5t“³ÃÒ'(68d£7„”¤EGTe´ÔâÿÚ?™hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆN2rz¡ã#§DDDDB;„DDDDDDDDDDDDDDDDDB2=ÑlöÊ"`g8ßÕ€zŒ À|®·Òº¬Õ9Žt‡ƒ#‹2:Lòó{ã+êDDDDNøDD=6DDDDDDEG1žå3¿Dý¥ULã;ª;Ír\Cʮފª™ª¥Pœ*öDD#*²ª l¨ªŠ€å;ãeTEG eWä¨z€¨áœ…\`l‡`€U@§ÍTn‡dTê=•JwDDÎøDAÑ=Ó Nÿ$DDDDDE@Ad(«”ìº"""""£‰ $ìvJ}0ª~Iº§|ceT$¨ˆpˆ=U1¶0ªˆˆˆˆˆˆˆˆð‡¶è©Ÿd²®z BvT1¶Pg×*¨ˆˆˆˆˆ¨OEAõÇeTêvTÇpsòAÓ®~i÷Ø|Ðd°} ª¯Ñ=7CÕ;õMº*¦Ä""ÇUN¨ªwêª¨Š¨¨IÙWä©ÕPb…P t@ª"&*doìªFB&}Qº&¨TÁÈUD*Ÿ÷ ÔeUM†åÈÛ}cЪöÙÍSUP¨ªoÑ"!Lï„ELžlcoTêíN¾‡ÑUPtÝUº"6ߪ""*‘*¾ÝÑtöENûá1ÜTDDDDDTpöUÆÊñ”ǺcÓm÷O˜Â¡þáTgꪅUSláW?šwÊ"&ØÊ"""""ú"""""""""""vDDDDOTD=dù§¾·TOd?,§tDDDDD쉲ˆ‡¯tDÝ """""""DDDDDDDD÷DDDDDDBˆˆ…?Š'dDDDDDDO¢"""""""""'tDDDDDDDDDDDDDDDDDDDDDDDDDBˆˆˆˆwDDDDDDDDDDDDDDDDDDDˆˆ>hˆs‘Ã8Ê""""""""""""""""*8à‚p:TDDDDDDDDDDDDDDDDEGÊ `a}º{¢"""""""""tDDDDDDDDDDDNˆ¸ÆÀÌã;û§+KÃð € E]ñ¾2ª‰¾Q7DNȈˆˆˆˆ‡¢"""""""'~ˆˆ‡=°‘7DDDDDDDDDDDDDDDDDDDß>Ȉˆˆˆˆˆˆˆˆˆˆˆˆ›¢""""""""&èÝ;ŸuTD(ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDDDDDD]eܯ$ç}·XËÄÑ–ˆmêX*+'¹GEOÄáãñHìÌk»õ¿4…þݪtÕ þÕ0–’¶#=3Õ§Ü—ªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ}º¢""DBˆÓꈈzuDTÆùÙUÏpQꈉÝP‚A‘‘ÔvU¹DDDDDDDDDDNȈ‰ÙQÇ ]'®ù!@ÿ:²ºíÅgi—ÅA§á`†0³Å¯‘ÞøsZöOª¹|q"¶HîUMG[µT…Çú—±¹pÄ4\H4“ìª3ú¢""""""""""""""""""""""""""""""&7AÑ '|ewODDDDDT#*©Ý>¨ˆ‡8Ønˆˆˆˆˆˆˆˆ‰Ý"wDDDDD\_ŽRIÙt¼Žb:L(Sã÷EMoÖ6Íqк–ï(eˆ7lеÄ8ö!ÌÀõª×ð'ESUÇÚY¡ŽŠÝU<çÑŽ1ÿ‚Ø2""""""""""pˆˆˆˆˆŠ„à‚rªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹®Hóý[²?"?Ív{gtîÑS*Œtè‰Ý?š"DDM‘;¢""""""""!DDDDDDDDDDDD;®‚>"?‚Ž>?ìÕÜ·Ýâaw苼rMý˜¤ñç§ï.~´•ºÑà }MR]¯òÔ¾Z·ÏLbd öitn~ÝIè1$‘º""""”DL"""wDDDDDDDNý:"„Nˆ:nˆˆˆ9Á興ˆ‰Ý¦:`‘âª:"'tú&ùöDDD"""DDDN©Ñôë„DDDŒ¡Æ7DDDDú¢DDÙu½…Ï8èFëx³‰ãÃÞ°ÇáûˆÎOõŒ]ží¿£¸£c0y<öÁ. É>l—?^|ýVUDDDDˆˆˆˆˆˆ€z„CÛdDDDDDDDDDD(‰î€ƒÐån™DDTÀmì«Ý¢"¢dgÝU;¢"!興ˆˆ‡¶ÙNȈqߺ""""""""" Ø`""&wÂ"""""wˆ…<ñ'(‡Z½Î¦5 ÛœÎ@3øˆßLçè¾ÞRËEÁ]K9Ëã²Òƒ¾vò›á…{* €§eTDDï„ï”DD@r2ˆˆ‰°DDꈈˆˆˆ‰±ˆˆˆˆˆˆÑ§DD_%Öº: Q#Ù4Ž{Ûeî.ql;dîz¹RT:zH玷¹ùi<î¾”M³óDDöOà™Â|Ñ0ˆˆ‡ÝN¹ENýÕQ;¢”Dþ(ˆˆˆˆˆˆˆˆˆˆˆ¨H'?@ªˆ¨6=·Uù¦Qœ ¢¡éÑUê©‘ê±'ŠÍamÓ¼,®´T;Ì®¿A-%$ üOî áõpNë‹lÚZ“JTTÆú«=»Îlsjah¸9ÎZà}0V\)ÿ~ˆ‘ºa"""""m”DOš""""""""¹ØŒOdDD\qÆá§|÷È\š0Î}Õ~ˆˆˆŠ‡ñóUDDÙ;áä…:?,¢"""""""""""""""""""¡8ï·²ª²U ûTTú.2îܪøö½Æx‹¦àŠGºÛgqÎÁ¤É½Éiþ åðUz‚N#š¨( ác°HŸÉÃ\7ô2uõSš#ú¶çÆø\ý“! ‰Ñ:TDDDNùDDDϱDDDDDDDDDDDL¢"" ;dŒ*¢""""""gæˆ ª"""""""vˆˆˆˆˆ‰Õ!8DDDDDECž¹ú úªª=ÍkKœCZI'âUë %FÇ>¯TØéØÃ‡:[„MûåÊ׺ñ—†Q´ÓÒk«]\˜d,¦¬l¹y8³˜uõP'Å=òK礄Ô6¡”ñÄÉâZðáæ“Ó®_ƒEäð[]Uh­VËôyϤäsw ÀÒ1±h#¨ê¤ëÆ• -|Ôö}ù)™QðOUqòG¾åa wMƒuß§ËxŸ…Óø~ÖÌleîý#°78iÏÓZÁ|L5àð»ä‰‰å¸9ÇnÇm³KGY˜µEq-5¡…µ»00scÛ9^£r6$ª3Ý;¢"""""""'tDDD9ÆÈ‰º"""z"""""""""""""""""""""!DDMòˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆÑS~û¦Nz /ZÚ¿Oi Í–7…ÔÍé—ÆZ3õ!j>¬>–wE+O™Ìr ÷â ût­,÷‹ý%®'R²J™˜Æº¥Å± ‘øñ“Ëë•´NZxGWS]­õªêÚˆš"·[­~DŽÉl¥ÅïSô½ƒH9U ¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDTqÀϾQ|§Õ ÇÄ@'ÕQ¶è‡æˆU7ÈßdÛ› ­Jñ.:YuÖ¡uÛ%9»U¤Íóƒ…ìpJÍ©¸«dµ7vÉS˜ã°cr ?#ò[QÉþ £ßªª"&è‰Ý=}ì """"""!DDDDDDDDDD9ÁÀÉ숈ˆˆˆ‰„?’ ù""""""""""""""""""""""""@6$û¢¡Ç~ˆFU¿Äk»tþ¿ÞÝ/–h­ÓÎןÙpaåþ8Zž¸HMCœOÆ\y‰îNä©ö~IE'«i«šÇ>K<Ž¥ëæ²XÝ‘îÏôÊŸÍ×UÏê©Øö*¨ˆˆˆˆˆˆPú""""ˆˆˆˆˆˆ¨37Æ3Ü…TDDDDDDDDT Ъ¢"""""&sÑ;¦Ùí”DDDDDDDDDDDDDDDDDDDDDDDDD;ªn°ÇŒûÓìü½Å`uÎX-à¸ö{Áv=O+\µÇ]Ìew1Û9ÈY­ùÚkZZµÏdpÏY÷)]!Àåœruù¸-É'ê¹ cnЍ‡ÝPÌNvôôUD=lüÑî›*;cíÔ”iÎvÀþj¨ˆˆˆˆˆˆˆˆˆòƒ©ôDDDDD@001Œlˆˆˆˆˆˆˆˆˆˆˆˆˆˆ„elõDDDDBUQûD¯³ÓÙ4ŽœÃîõu55Ó´u.…¬c>Ÿ¯yù´(MXNØŒvõ_^žJ{¥¾¢9|¹"ª…ì~ å!í ý0¶÷¿1ÿ%Pqœí…Å’9ÍÔã$Ÿ—ªæˆˆˆˆˆˆˆˆˆ‰Ô ˆˆˆ‰‘7lû¢""""""""""""""""¡8ßOùª¢&ÃtDDDDDDN¨Ñ2ô(ˆˆˆ:"&ØèˆHõDN舩¿¾ê©Ðaˆ¨q¾Êxò»²áÆèm̸Z­Àö°’GÉ)ÇÍŽ‹'ÙFê€Ï¼9¯ØùátFàCØ3³]þö-»hÛ¥%óHYï4ÓWPCQÇv½Ãù¯_#º®Gª""""""""wÊ"! “ˆˆˆ‰óLÝqææÁnõ\†qº"""""""&Sl纡8Æ9UDD_=)¬ûÅP©l" û±a%ÅœÏ>z~~°¾„DDDDDDDDDDîˆ;""""" Â"""""""""""!Ü"""e¢""ÅØpÆ Ög‰ ëõu5l‘Ä t”‘9¬ sÙÜ]ûÇdöv Í~™®ªÑuz–I¤ ™äðÈyZG¨æmÑZÑËËðl{eO¯:ÂKÏ ®:Z¢Pé,UaÔà¸dA0.åÇ]¤¼’¾ÝÕPoÑ2ˆÑ dœÕ1¶Èˆˆˆˆ‹Œ˜ÀÏ62:gü•\Ñœœœuô\Ê""""""" Ñ·DDDDˆˆˆˆˆˆˆˆQ """""""'Ñ¡DDDD;¢òõmÎ;6–»]ä#(hf©s³Œ0»ü–¦î÷ &¬}EA/¨æY 9<Î99YLëm7'uV–½>±µRÚ §´Ú ee\µRî.sšÁÀÈØab& ÈwHïÚ Y¸ÊÛTÏc`½ÒIHyÖ7õŒÇ¹åpú­ÕvDDˆˆˆˆˆˆƒÙ7Ïl'ͪ{nªˆˆˆˆˆˆˆˆˆˆ€äü"""""'Ѳ""" DDDDNè‹®IXÆss7ÆIÀüÕaI\ NuÙšæŸDCÓdDDˆˆ™DDDDí²X‹Åýóô'‡ýDæ86JæÅoiæÆÒÈÖ¿þu­¹©f¬¬lp É!åhõÏEñݨjmW*«mX`žšWE(cÃÛÌÓƒ‚6#Ü/˜‡©ë²¼8SzýÄM9yl¢¹\éf{ÏF´JÞb}¹r¶Êøßªª"'tDDDDL çº"'tú"""""""" Üe;Š""" ïÓÙÈÊ£ŽH'ä2±—õ¾´¦§utuU$®™…”F’Gœï—Â=NáYü°q?P\nwn'I[ B`È)êšÖ¸ŽGsÚ>7â gªÏTðÇOŽ&†´v]ˆˆˆˆˆˆQ*„û'~ê"}¡úˆóim)CƒC'¸ÔÂÄå±Ââ3ÿÓ ÍVúiùéÞæ¼wz¯WEèMg®Ÿ^ý+§nƒGž¤ÓÇÁé“ÕdzF\wÀ8+Ä»Ûn{E²ëEQE[LóÔóÆY$nCšwuÓ» {A9-?ÉmÓA]|ÐöÓæ:ál¦ª2ò‡™"k³ŽÙÎq•î""""""""""'dDDDDDDOš""""""""""""""ˆˆˆˆˆˆˆˆˆˆˆˆˆ‡¢ Ç¢"""""" IDDDNèFFǺàâ“•Íô@ˆˆ›§É{¢"Áçáî¼ÜØ$ãaÝNK-®ße´ÒÚm4pÑPÒÆ"‚›ÊÖ4tß+ìEB6Otq i$€É$ôXÃQë=e©ke³pžÛm¨…ƒê[“É·0áÁÌ„0óM <»Œ°‚s²ð´Ÿ†oº:÷ª¦¹k[Ä’™åžñ/4Nõw’Ü5Ùô:Ê­ÒÚi®•ÃOZAš´²âŽ<>¸¹±‘Ú '2¾ë]¶Ýj¤–º Z`r"¦…±°^V€;/©vò’n¸ rìr÷\Æý\‘ªB¸‡M±Ô¨±ö„jii4ö™ÒPº.¾i«ê2O˜ß'‘‘ޏå&WžX=ÔKá̓úO¯¬ÚxÕÇH+j„~tsš:Ü7ˆ€Ñîà¶[¦4–††˜Mf·Ë==lÕ!l†šYKp%‡~ÊÂâÞ¤·Ø²GyÕ·V[¨å˜A‹÷I!òµ­šO¦Ëê_'µR—ÑMtºÏû1CJYŸ™yXC]xÉÖ×vTE£ìöË T#ÌsåõÀåø†3;j¼^«îU¦²¦®¦yÝ+¦tÓH^÷=Ø$—É=ÉWnâ¶«Ó¶»•–+¤õ6{…¾z‹}SÝ-;™ p.k à ²Ü·ÈÙX @Øtð3wm¯Ä¢* w zš3±!äÇÎÖœt݃ê¶@ܺälå"" †=Qº"!D#>¿š§OLªŽˆˆˆˆˆˆÑº"!é²!ꈈˆqТ.º™.tQ_û,?Ÿæ±/xñ§4ÎkEu²ñS_ cƒ)Œq?,çË%Âá¸,mqñ‰mŽ&:‡DUɇ0Ï^Æá¸9Ç+ûÌ©'¥®´š‡N[¯´d˜+é™P Ø9 àgÈ/P"""+†\\ÒA½]ì–y+)®–™_E%t>T¤5å…Í9øÈÈWú"'|'tD@00ˆP¨½Çþñ[Љµ5\B²ÕZéå‘Ô4QILÊV»Nb÷` ¹Ç=q°²-þï•Ur>ñ¯mÔ‘gà”˜‘þ7³½W»QàçD[jí4µ—íWpûܾTóÒù2, óaÌvì2OÏ äÖÞ ­<²?DêÚöO%=Ù¬p‘ü§—õ±´rŽn]‹ÙÝz\ð½v´ßk/â®ÛO)ŦL¶Vd‰C›ÊÖr¹¡£§©;¥|q2™@†±¡­É.Ø Îåv3öM³•^‰”##tîƒcÝlû tL{ªcu×,‘ÆÇI!à œï@7+SÜK¾ Q®¯úˆ9ΔӰž¼Žqåÿ‡•Zõ-¨Á²µñå­{CiäFù_>KÄJ¿µWõ~–ám³ˆ‚”[¨®uÂ’šŽv½•;²G Â>‘ÆNH ã}êß |CµÙ-wý7 uMººŽ’ÚVê!/`qi‰Çâ8ËIÏpÔÖ+Æš½ÔÙ/Öê›uƘ´MMPÎW³™¡ÍÈ÷iäB÷8U¨¿¢¬æ m #±½s•ËèŸDEÅÙç?=— ˆˆˆˆˆˆˆ„€—×yœÁä7·W,oÔª§TDD\y~,×,mŒ¢lG·º"""""""""""""""…M¶ê‡¨êªˆˆˆˆˆ™DØí’›&Uî7 ÚךëJèkwßµ=ê’ÞÇ5Æ(_ ó§ÀÜFή?%…ßâãEšÂÈ,wy¡òòZƽ§¸#˜çéè²-Ž|-¼}Í‘jÊJ9jâ25•Íu8f6-{Üìí‚íÏL«—Xèý#®­QÓjk º÷IŽx]+‹}Øñ»sêÒˆÏ |m@Ÿúìç‘÷*·3ýÓ.>˜ÂÊÖº ]ºžÝm£‚ŽŠš1ðFL­hØèÒˆˆ‰üÖ±u­¬Óþ!ïÚ¶ÁPbšŸUÕUS½Ž8‘†©à´ãr×´¸8w#ºÙÒ"vN½‘mÊ"!DD A¨\[mü,hùPèù*®.Øãø*Mîp6÷Q§Úûˆ<%â5Òjù/z&û–(*a±Á#Fd`çÆ ë— ñ‘t_hôÍž–´Ôô•%±GrÕ獵ỷØikðõÛªš6Ú¸+íôÕÔ³²zzˆ›,R³ð½®‡b ú;¢d¡DTßQÇeŽüIj7inê˼A®›î¥„gý¤î´Œz3ôZÁ• < `m”ÇáG4Wø;p’â+#¹MRØènr’ji 0Gnû:"A<0F0@# Øx[W Ê öDDDDL×t ""&Äz®-.å%Í 9;g=ö\‘ "M`ª1‘ """"!ÏdTÀ#âNý𪈈ˆˆˆˆˆ›ãШëÇ¿²ðî¶m6ËlÔ/¦|¬tÕm|P4É#byñ5“—;wÊ…z¿V^µò¦ó¨oõ“8ó¾Gór·=1ƒ¦^5-Kcp1È šáŒ;9ÁÊ÷a¼E%+#–ˇG7!Ý}”…ðC­…»ˆ3èùª¤mÞžWSBéæýé€? oáncl¤œ òŒžMLÉÓšØ*¢"+SŒ: h®jMRÆËn·Ë%??á3ËOÍå£êµÂ½=6ªâ>›Òí†Zƒ]s‚)¼¶s8EæJò=^ãì Úâ"""!Ø""""""¡!£%Vßô}·^è;¶“º5¾M};˜É ra—¬r7Ý®ý±êikmŠ»Î0Êš·ÒÔ´dö?•Ý{|9ù-‹øf{ßÀm _'š[@œä5Î # Dî‰Ð*v:~Ð{à¡á]žÂÙ1-Öî×¹¿½,sÿ‰B?IÏT[mõ•f’šz¸ãšpÞ-…Ø.Ç|elרt·xcAE«*]õu3: j:~i*\9yÜÖç ‰%ÀeÃ|¢·8µ§n^)íÜI·R×Ék¥¨¢•ÐÎÙTÐ×p½UÝâgÄŸâ? £ÖÛeÂÝP.PÔ“3ØöÈÆsdm¸ÝÀí賃n i‹ÿ 4ö•¦»@uª„²¦ùl‘á®nvxÀò“ŒŒã!X¿hí¥²i #¨DDÉIpšÏeŒ8õ‰BXúÐ\à[Íž«a¾õ$Wn 2ÁÈ=‚®Hø™+3\}ò÷ R"m”TÎqõUˆˆˆˆˆznˆ9‚FÇÙãº""'tNè™·EM³•TDDDDDDDDDDDDDDELnª3ž¨‰°èˆˆˆˆˆˆ¾ÄõqÓyVøÃê¤<¬sšKcþÓ±Ûò^=&‰°¹¯šñl »×Ìy穬¦l®s½¹ÀØl=L= ›Ó¶)ª&±ØmVÉ*]Í;èèã…Òœç.,˜çÕZ|Bàçµ½-@¼i‹{+%‰ìmu<-†¡…Íåæhܱ͜aA~<ðoPp–ÿ'ŸEf˜ž^[}×´ŒgË—‚A¸Üì:-¾ꉴv»µjŠvÓ¾k|Åì·ƒŽŒ¸ŒõäB[Lcšæ5Ìps\29.I‘”DDÎÙX+ÇMíöŸ—H†w¬§ æýÐ]æ»óõXcìòÒÜ5uÿ\ÖD$mªÑQ8·8–PLŽá€7å!SpôÙ ÀDDDDDÈNÛB¡'ŠŽÝkøúïèÅê+y¸r7 –7çp\pèä w')‰¢mM±hû=œSÁLh袅ñBc\Öìcn¹^Ç|"&QPl>J½FBâp* } W±[ÅKE‘³ƒ®ÖøÁü2ÊòNÞíkTh¤­e Ãïq¹ñ»™€ïƒÙzºë\ê i}–÷¨nuõJíš6øZÍhôkÈâù uÝQ!tsde}~õt°Ýi®–Šéè«i¤lÏ Ë^ÇAR~ïÅZŽ3x`ÕvMÊýM§ÛÒ9aŒ1“ÂÙ™qœ9ÝŸ\ŒaEf×L)yöw^®ÔÖ#„u4U¶<ÆîR'…53ê›ôUENý>ª¨ˆˆˆˆ‰¶Qtíº"DÝÊ"&Ȉˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¾km =¾˜SÓòó9Ľåîqq.$’sÔŸ—eô…AíüWËt·ÐÝmÓÛ®TTõ´s³’jyØÛèZv+Úü%pî›UÉv¬š¶²Üÿ0þŠ'’ ¸AæÛ$€ÑgÛ]  ¶Òжy§ñ6!$Ç™ï ǹÛr¾”DDEþÑIþŠtý(Ï,·æ9ÛŒ|0J7ïûE]žìñÚü=Z*šÀ$ºTTVHq¹Ì®`ÏøXpDDDDDN»"'~ˆ¸wÀ.h¸¼žƒ ˆ#;úìŽs†1ƒ¸ï€¹õ લÛj¯´7ÉéY%}3CM+†LL˜ÇæcÓ>S?ªô:ü‘6DDT'n›*8m÷÷Z¼ñ}›ŒÚ¶ìÙ,n¹É9þª/Õ4oƒø¬g%%K)ÍI‚O»óry¼§“›Ó=2®^pûUqRÅbÒ¶É*æ.ižr9a¥aë$¯èÐ0}Î08 6x°ÛßÇ›ýºã%Ê*kc1$bHäÅD“‡ ÁwЬ‰âï|<Ó¼-ºk-/§Ûj¸AWNdó¸B#|ŽÄdòÄ6³8áëGqc‚ͺ2ã[eÔtw*ŠZжþ¾)0öDqŒ2F~=I9ÀÏü1àT'š£@ …=οPGWçVýÜF9Ÿ—@9<­Àv 8sŽ«\o9Ààò~›,åà¢÷³Ä‰“ÈØã®†¢ˆ—;”:<°tÜ—1£ê¶8ÓÛ§²߸誈ˆˆˆˆˆˆˆˆ‡¦Èˆˆˆˆˆˆˆˆˆˆˆˆˆ3Ý:""""""""!Lô^MËRéÛl í²’gòLùª˜Ñ±øNNÇ~‹ÕihsH Œ‚;ª¢2Ÿ$숈ˆˆ¢¯Ú1#¡úF .¹ÌáhOüÖZð§©|;è¨ÞÂÒ뙿_îp?^l¬ ˆˆˆˆ2GL|Ñ=ާï47ÛX¸ÛÞ÷Be–Â×5ñÈèÞÒÓ¸!Ípú/º<îªæ‹„£ `dåP´·;'uÈu®Hú""&è­î$_N™áþ¢Ô@€ëe²¢­€9œÈœæû’ù•ª*×Jù<Éé%?qÝÏ'$ýJ›þ 4µ¶·ƒŽk%-ÆŠ¾z/Þ¡l‘¿3”¹Àû’ÖôïÕfê}?`ÐzïO¤lÔ¶ªxij*[ <|¡Òr9Ù=Îþ§a€0€âÄ\*–õ}¦³SÜïUÿu†¡å¬e6e}@ËNCœñ6#cŸC!xÓÆ}Äß º‘–jÑIy,¦ómUG–`ï><òci7<Íí×”ì»~Ï ©›EêËAýVíN{~¶³ÿ°©B\pú­\øÓíÓuÖV††Ûr’¦&329ÀÐ6@>ŠÙáýê]?«íØ1ç[kéë[“ú¹ò¶ÛtÅ<,š$r49ckšwÔÈ{ª§Ñ¢""""!興‡¢""vC°$ ûB7ÝUELÿتˆˆˆ‰Ñ7EÕS0‚žiÌr¿„. J_.¿â’®„u%–›}ÂShøªdk·..$7 `4»~`D¯MÑý)Ób½Öù/ÖØ«1€ÓËRÆIæ o)9'‘ÊöVûFNÒOÀ‹œÀ8„Âä³w‡–¹¼ СÀúŒíèai ûD_%}Ê‚‚z8+k §–º»Ò²G†™¥äsùž§•Ž8ô}hˆˆˆˆò¼{$,¤IšÆˆ¦®|­Ž¿ ZãRö¸ŸRIêW©‚23ƒÔ/;QÖÜhi¢}ºŒVJ÷òù\íiÆ:Žg~YVÄ|K¦¦GßtƦ³S[ˆç¬©·æ C¤ ig–ç¸þ&¸Œl ÏBãl®¥¸Ã÷š:ˆª";sFî`qó_Z.$Œã¡Unê½ÑS|gü“|v>«xéÔ,³ð®Úן:õ]MDÀÓƒÊ%~˜‹”ÿ{Ý@{× Õu@¥¤žª&TÌy±EÃß.Ù¹;vè¶mÁ‡†¶z[[Ù%”Ìž'ÆâZæ?â|o‡ íÕz\Sªm 5e[ÜZØlµ’uô…ËR¯$?°À/¢ž­ìñùŽíê¦7Ù¿3 õäEÀ=Í·H?ýྡL ¸;¨!ö†ÙCÅ‹=ñ€6;¥¡­yÆî– Ï÷ú(×HCfil½VѼ6]b¼ð'FÖG;¦smPÁ#œwˆynBÒ?çÕd2"""wDDD%²"""""!DDDDLœgEA¶Ê¨ˆ‘¿TDDDDDEçÁc³As–颂*ùNdªe3¯ù¼ •è"""'\aPñáÃé>ïIÄû\EÆ™­£¼FÜ’cæýLÀcbÒç5Ç=ÏÝ^wƒ®4Ö ã4¬¹IQMV?óEDîæ1Ë’L%Çr?zŽê`"Œ¿h”Ü(°Õr¸˜ï¬`w6æ†^£þe™8 ðþhG4“ÿÍÊ¿µ;ù+ÙFw[¦ŸÿGz†õlŽÝwšg:2C<Ʊ®`'÷‹[ ÅÊIÙn·kEÖŠA%5d žƒžf=¡ÀþE}hˆˆˆŠØâ–³¶èpÔ·9NÎZx°K§ÛG@Ü—;;dö_~”†²ŸJÛ"¸<º·î¬5yHýwêJõšá€#Óenë1©¢ŠšZêŠ! ‹£|Mi<Äc;ŽÃ==VÔü×ïÔuw­+Æ»Kg1¹”qx…‘¶1»eÁÈnIåê¾{›ñ]¦_æ7Rh}AZÑM<“d€N]“pO|;ªÏv±|–Ž’¢ä))ª¼±÷šh\eŸò¼€qóUöŠg0r;œ7›Ùrþ­Îåv@ß$®QžÜÀ®hˆˆŸEÄ’FÙPËí½5÷½!§Zs÷x*+dÁî÷5Û×àwæ±…­(uOÒA;é-t²ÔJè܇¹¾\`ä‚\IÃJئ—ÔÚjÙLYÊb¢……» aƒÑXþ(ëá¶x|Ö•¿”Imu3O«¦sbhú—€µ‹Yn¬¤¥‚®¦–xéê‹þí3ã-dÜ„µÜ§¡Ã¶8è®þðÞáÅ>#QizI$§¦vf¯«k9¾ï½2vhÏwœüÍ&ŽãýóF\‰§†¦Üü‘´ôÒç]šþž¡N&ä´l?5þÑ[­áΟÔL`sí·CLóÄs0ïò濚ƒQ5Ì{zd`©ãö}_ß]ë枑Í?¢î>lg'<“78ôÀ-?š“C`ˆˆˆˆˆˆˆˆˆˆ¨Z €H9Ê©¾Q7Ê!ù¢Û¢"""""¡ã#89Ê¿TDDÆØÊwL"""wDDDMÑ""&ùDCŸTDDDDEòÝíÔ7{]U®çK]\N†x%lŒpÁiá@Ü ½ðºí6¡ÓñT\4{žed±ómŸÂÉI$– €Ù3Û|Îið—ǧjXi4>±«2^Ò(.2ÊÜÖ4ˆßÓ2ÐþÐüY.“*?øø¡ûßP[Ì(nôµÎ:—GÿÙÕáBã-w‡-Pçy²CFiÜ;®Œ˜kBÊ‘ÈÙÌÓ‘ßÙrEü~[_[ÀˆªÚçÑתj—`lC„ïÿÕ¿’ëð«d¾p’«OUTyµ~¹ÐÆÒì¹´Ò2<ûsy­Ìö‘ˆˆ…]TðÓSKSQ+"†&É#ÎÆ’IìQÚ’«ÄO‰;M¢ž*‡hm5+«d‡ –O,²nd1¡½™ÌF>"¦†A#>Šh}ÏUÉ0©¾rªºmlµ䇱­ ì1œŸ®‚ï]$Éü³Ùv´’Ñžª¨ˆ‰•ÄçµÏãNöËÏGɶ([ÍÑ®k9ž·3ÿ0®¿ÖÙk.ú’²7:™‘Éo„T0ngI!òÆøÁÙÇ þï™ÐÓû£vQËÇ^¸Óô|$©ÒL»RËx®¬¦&’7ó=‘Ç/;œìlÜÀÁÂðkþÞø¦¸yª,š WÚ&–©µô?v²I+Ý#ZéžGŒŽ_Ùiý•sp‹<;ᩳé-u¬uLâZšÛ…ÊO9Æ0K"!¬h Fq“¾I&Á¸ñFÏ'‰ˆ8—j·>‚ŠK¥5l´²?<¤ÆÈçø‡\Ÿ1ÙÀê6SºŸ‹ü.©¨0Á¯,.0n>öÑñ7^‰ûe>¯ðÝ«…º®–x£·þ†¢7±ÂÂgrHݱ¹¹÷ZÌtÇàÆÇª•¿gޣЛ]ßtëÀæ¹Ð6¢'dþ(‚1Ó¤„ôì§éÑs쪢""""""""""""""" Ýꈈˆˆ¸O UIOQ&†V–IÚ×´ŒAØ‚6м`ð¥æ]*õ «a·½îó…’\²&ÉÜÁ.U“¸iN F¿8K¯ø‡k°Óظ‰¡µMÂïLöÂêÚÊ×´€Z^ðð îì7§BrOÑãËqðë^(ê`s[K ŽVŽpW ‰À'°+Æð p5| u#ž ¨nõ1÷kO+Çýr¤Xç¸Ürr¹"Äþ/mÿ¤¼8ë9‹Lt±Tÿºž9?&>ª4ýž÷ÃEÅ«½‘óòEs´9Þ^?ÐÈÒßÉ’J§wɦ舅B¼e¯×—èxeÃçOYDê¶ÓÎiwuÊ£› ¤u‰¤döqè7‘^xYE½ ´²9/uÁµzy¼É¹]êÙ’=Éêâ²oÕ“ÍÓ¿ªæ¸HÂâ8ÇQލ+€ÁÉ÷UˆªÕQ  Î:®K1>Y^ÖG.{Üv ’V¤µ]æ}E©îÚ‚`á-ʲzבæHçvôæ Qx*Ô:[BðûR^õMÃôd5,’9f9l¢&ˆÛŽbàéØï‘èJùø£âcW뫳t‡­5ô¢¥ü‘Ï eÕõ>íhY×'w`g-Ü,ÄŽñ'JÚ÷YéºËe•M§ÔOŒ“8=à`8’pלû/¾ÕÀ>-Ü´6©·h꺫uTm–*h̲Fæ‡5â.nröÊù¬|âÕöwÁC /ѽ€º»4ý©yAùóñƒÜCáýІó«l_£©*çû´'ïÈï3À81ÇØÏ¡_Mo x™I¥-š›NVÝmWjfTÓÔÛA© 6@ÀK;äcߪûøÅû–…»‹MÒI«4}к–ïms‰ŒÃ( |ŒžÖ’vÆz¹ʲ ¯„™ÖTÚ…<ÀzsÄGÿ!JäEáqÒÛöƒ¿ÙÏ0WÛj)¹}KãsGóZÝð¯{u‡šF±ïò£’³î’—YZc9ú¶~6€uëº""‰~3øßUC-G ´“¥mLœ‘Ý*¡.ó>,O)Î\>‡—¾UÕáÒè[{µŽ°£úU^ÌSÂì;ôld°zJìüG°£dR""*27ßæ¾ZŸ=òD"– 3(xÉ-ãìsƒß¡_SBªá'(øÓ™\bɸ“Ó$`•Ï'þÅQ¾à‚;aU>Kx˜¾³Np#XÜ ˆ–[l”Páܧ̨ýKH÷ùú-b=͉®8 ÀYû‚ü×ÜV±Ú.·›£l:F(ÜÚG¸sÏ,~gÅåÇЃñ»ç‡1øOÂÂûSé4­¯Ë¨™¡µ5õó*ª:~7í°<­ nwÆr°wÚ[4ö-¦£wÃq¹Ï)ÏÅOÓïóRrÃmŠÑb·Ú¢Ú:X©ÙÊ00ƆŽ:/´‚F7Ç©$¬/ãJÉÛ€iä8u®¦ž¾=³¸“þm‘Ãê¼/Wé+xC[b–b÷Ù.²E1ø •­•¿ñºUjx‹ð¢íQ¨äÕ9¨¡ ª­›žánªyŽwŠXÜåÉÉ-Ç©è£OˆNGÃn%ÕiX*SO $ÑÔ?¬®t,óŽÀÊ$ o“ÕYö Ê‹}\uÔs¾Šy4R0áÌ{-p> €VÛl(o}ÞŸúšêXêcß? Ø?_pUDDDD@1ÛˆˆˆˆQ6ù¢""""""""" Çù*àÜ¢""""*7£;*ª1Ü÷\lUQƒøJä""""¦GÑWªÇž%c|¼× ÂÍ;ŽN6 Éþ¨éösÕòjMg@dø¦£¤œ0¸dò¾V“ñ7ø)œˆ¨{-\ñzÇQ øß©-TQy·]]QB×;›–79³CŸ_…Í[+Ð:ŽWh«>¦ ‘¯‚åIã—ö\GÄß›]–‘ê ÷‘_wŽ“UZí3TAé't1¸ür>>By}p×W®ˆºê§Š––Z™Ë,2=Þ$¨áZ‚>&ø¥¹k;„fJz9j¯²Dß5ò@Ó¶o9xÇx‚žnÆHÜ*ÿ4NèŠÝâEÖk&й\éêM$syâ2ÿ) åÏÀkº7˜ä‚=B‰>8¹¬ë¸f¶_µUÒãÙÆ)a¬x•¢BÞnaÍ»1ƒ³H¦Ï’7 Zîwí¶WÐÏÂäòã/å.ÇeÄó?qƒôF7•ϪæÝ÷î¨\s²äÂHßUÆQF´2úi8waÓ¬#žår3Èß’¾ÜÏoä¡n•³Uê EAf¢„ÍSTòÏP\ïà Ú¾£¦¢ÒvŠ:(5,TP¶(€å,o ÀÇeëàlr;eEÿBžëÇ> ØXé?HºG°ød©¥¯þíÝ»)AÌs¿¢¦7÷udñâÐûçµuµ…¼ÒZ¦sy†Ä±¼àmýÕ>Ï‹¥HÕ:®Îy<©íÔõD¿3[üž‚™ÙAÏ´^ÍäqM_›(®µ¾•îõtR¿¾$þ 7é*{Ž ¡¶ÕV2Š ¹› µ/isa8/ n@êp¶Wávö/œÒN™’Ë ieäätY`i 5«&¢""""""¦08Ü *¢&ØD숈ˆ‰ŸDDLôˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‡Ý¯óDDDDEFµ¡­°²=Á­. àz.ÿ]&:`téÿý‹±0:uùªŒå6L…C꩎à`úªô–;ñ,éõÇ—ÔÙ§õéË¿Ol¨¿öwËËÅ]E%Áö0üÿvvþRœ¨ú¡ù¨¥ãû‡ÖiÚ^'Ûb寶9”w Àq-3œC}Ø÷ÓpýÎéðÄXªlõ¼6¸M‰©úÛa{À‰äbhõ.øÝ襚ÃÙÏä³7d¼]yÓè»Í-4žTõRÁœ¼Ü{KìwÁp*"}œ0ê][PCyÙm£`=ðçÈOýP¦ª" L‚±oŠFí3Á+õ\e¼õP>…¼ßûhÞÌqœý'ðÛQ\Þ:èÆÐFùni Ïõf7‰ÈF^OÉlžV¾9ÑuÔÔ6š™òºNF“ÊÞ®ö áµÞí÷bæPÕC+ØÖ½ñµà¸5ÙÁ#¨ȯT*;n‹‹·ÛÝq˳±]Œw0÷GlÒTñë©]qãVX¥k¢³Û£„†»8–_Ö8~S·<ÚßpãåŠµÐÆêZÎê—HàÖ´IO,Lõ%îh¿ÑlZ›- 41¡­Àèì-ÿÇ )ñœܼuðƃ'–|æÉª¤?ýl)U±;ž½@i8Ûä¾{•uÖêšZʈ_ ‹Nà9¤üT ðI_5¯T¶ó;˜ÊêªYö…˜sAú³*| ÀöQ§í ±ŠîÚ¯Q±ÆKUÙ­q Ù±JÇ4“þ!PJŠsO]£ö;©çàó-V…¿ØŒ_êÖëƒe†NçÎf\Óò-ÏÕIAÓ¦Q:"*ožƒUDDDMtDDDDDDï”@ˆˆˆ‰ÝuDˆˆˆ˜EFµ­5¡ œì0ª‰Ý6ÕSº""Ǿ$"ó8®Öɵ’¥Øg]˜Oå¶þÙQ;ìõ“ÆË´.ÇëtôÁ§åµÏø)çóDOuäë »Té‹–»@Ù¨n4î§™®à8lážààƒØ€Vµ-mÔ<ãy‚¥îmËO\&ò´ðÝ2Ù"vÙýíÖÌtåæÝ¨l47ËEKjh+àmE<ý¦8dmØö#±ÈXE×ÿN|jêk½<®’Û£¬ÂÑÚÓÈgsÿXÓžŽtÍ÷äôR%[|O¤’·@^b…žd̦3ÄÜ—ÆDÀäå£nêx½ g[m’g¶;ÍžjfGÌC_,|“4‘܆2\g±>ª uÇAÕU²'u~Эah,šqæÉ'é*Ƶãf4Fë¹/?áV€ýûïæÕ2ó}ÏN@ç0ò|/¨™®­Ï³ Žùò©è±o‰wSÃÎTÞ(¹Mm\â‚•Çý”’FóÎ;e¡¥ÀƒŒwP›Jq{Ué=Gi»Óß+åm5[QNú‡:)¡s{ÜàŒgäpF[#·ÖÓWÑAYK |3ÄÉc>­pËOÔGÕ3¢ävÀú®Ï1®üK—m·\]œõîª2 +žAÛ×Õj¯ŒZ…š«Šz“QÁ)šžátžJW‘Žh‹"?ýM¬ROì÷²ÒOæó#Þù©IƒËs~æ9®¹Yùs{©‘ŸâªNÝ2¢þ®š*Ÿ´/HG‚Mg{ŸÚ?u¬x?,<~JOçu_EBzoß|-é"Ý+ã-”ÍwÜéaÕõTá¥Ü­Lù9ÏlHÌ}ÿÀù«3ÚAúï…:‹J@@©®¤"˜“ç0‡Ç“Øs4ìJÕ0Ép|ð­û<¯ ˆÚ‚Õ#ù_[gd±Þ0Ê)‡æ¥WCÿbg|&ûà-}xÀ£¬Ó^!î÷HáòS)nôdôqlLa>ÿ¬Ùù©÷j­§¹ZénT®&ž®OõkÚ?_ApiÃ©Û UÜ{´ÇgãN´·SØc½T:&y|œ­{ùÃ@ôØ£\¾õ>“âdz†¢¦(…3Zؤ8jªh$h÷lsI ÷ˆgl­— ÷ ¶ÝTgã>ȈƒtDN¨ˆˆˆˆ‰²""”DD÷\ðds0áÊGQ€{íê¹¢""""""""""""""""DDDDDDD@ˆ‰”ÈÎ227ϲ¨ùå|×Z(n6Ê«}@Ì5P¾:µÍ-?À­`ðNõ.âî—»Ï+iG]!†­ù ‰Îò'Ül~ɸ[GDDTõPgƬz*íiÔz$KNýCqû‘²BÂàgx$:@N'L¸ràl;øâJáûMµ¦›¸Õ‹aÅ U|;àDaphyàZ}r¦ôOl±6Fó¸9šZ~ î±\‘QÇ;`uÉZ«ÕuôÕšÂÿu£‚ ›]D ˜hk¥y`¶Äm…²Ž Ù£Óü*ÓˆÙÈa¶Aæ oÎæ<Ÿ~bUÚ~H€å.ñÍÆ1[[/ tí^ii¤oé™âvD²Œ8S‚;7bïí|=ZU¹à£ƒÌÖzkÝA ÿBYªZh¢smmKO09îÈÈŽ„àt)æUNÊ0ý¡FµÜ?Ómí_¦ˆ™‡ΓÈyŒè>0~aAú¢çe‘·'öq¹'-¨pjÆý5Â/b{\$£µÀɲ .;ÉWT¬.ÿ/c꺲ð0öóŸP¹0eÃ?’ärIåi'>ª±‚KÜ}>?obßÁh,ÍyÝîQGÊ9™dv~¡ªMqqwOâ¶»Âû:{BZ-°¿±QS‚àþf¸¶4‘¹\í¶êèꩌ 8ISSvñÕÄ›ŒyvƒDç}#Z>dDïÉIÅAÿ|!ù(ƒö‡YØ*ô~ m+röÔÐÏQ·ÅŽY#aï·ëHù•Ÿ<7\Ùuà&‰©a˳ÁLOö¡o’ïâ² €#u®ÿZr[nFÒÎÊ[Ý,qÈæžC o–öƒÓ9`${¬)k,ÏÁ òÿÛþKiܾ¿Rð§L_&qtÕVØŒ®=ä åyú¸wwÙW¾wDÝ¿DDDDDDNù‰é²"""""""""""""'òDDDDDDCÑXZÃ_·NÝßIR ò<ò‡5®sóâÙ ô5Ç8^¬—W7ƉžÙAt¨Ó®¶WCr{XE4!ÁŽcË‹ƒy¹Ä`ÅŽl²Ê&wÂ""! NÀ* ÆUQaú­Zl¾.¡ÒRÈ~í¨ôœRÆÓ“Ššyê\1¾ÙˆÉŸ^F¬¿”9ÏUPˆˆµâ>Ðt÷uu½”Æ’'Ü_S 9pÞI€·.\ìc§NË`ÜÔƒVp“LßüÃ$•6øÛ3S+#ÉÿJ¼‘ ÀQƒSÌÎ&xÞ²XXÿ½Yô%«*,{;?Gº¾Æ3î¤Ì´”³T2¢Zh_4G1Èææõèq‘Ôþk»²"±¸û©gÒ<Ô·ê^aS'“Næ»’ÌæÂÇÿ…Òc¾½8a¦åÕüI°iØœçþ‘¸1’ –3$®ÛÑŒy[B­dmdm kFÀÑrDQňª}<Úý¢*<ë¸iвç²Ê7d‡GïJÄôi8ÝÀ†Ç_»ñoUšŠ¦ÔRiZIÏé€ :W  dõçs‚NøbÚrËkÓ¶*;’Š*uBx"k?™îIÜ’IÉ+ÐOš†~7õ]÷Y[tE©“UKJ#©–ž&ó;Î"Qwäy?UÙÀ õï¸[µ6¿”SEÌ©ŽÔÑ—ÈZC€ö oÛe2®gvàq¸Ê0ñƒê:.@s;>˱Bo´_PGQªôÆ™ŠNgPÑÍ[3q°2¸1ŸÂ7~kx]²³Pñ×KQTÁôÑÔ¾¢¡’7™¦8¢{ÎG¦@2Ì()ÛKC+? 161Ÿ@0»Î}œnvd•|º¦÷®x¯¬j;.hâŠlþ";Ü?Ý|JOgtOšŽÞ?-ÑÔðz‚ãðùÔ7xŒy;ö½®èsô^Ç‚ ”u¼·Ñ0¸Él¯¬¦·tΘ–%Åg£'Ú¥IðÎѪiâæ–Íqls8MðäŸýàŒ‰AjW:*œålÀâK' –F;ôeÎX9k\ÖÉ¿ÕågõETDDDDOâú"""DDDDDDDDDDDDDDDDDDDDDDDDDDX§ˆ×éìúŠº™´ÔÆè qšNV< ŒÁæsr’$d-qÈÀ9ß—ë¾.ÔÓð«Cq¢Æé⬺v‰å)ÞÝÈ?ÅÆB”¹Îhw+;Œ;·ä¹åÞüÐ’?g#ت¢".2f ôU`åhh`*ª÷QÄ¥Ö{/ŽÜiNdm Nhv2Ù*ªcpéݯpRô»ÐeTg*¨ˆŠ}¡š\Pk›¯„·’ëHê9š3Íæ@Cƒ½0Y&:þÉY À¯eËC]ô„²4Ïh©0Œîa›$þOkº~ðRm‰®õ‘Ñ×mMp8¦·R¾wÞ |-úœªþ´åuE§TqFõÍ%v¦¸=°M& Ÿã+ÁÉÙÒ¹ÀçÿT›ˆ¡þ ÍvÔmЖÚÐë]Y5{YÐÔ‚H÷å»zü–@ðYº]=¤à×W«;à¿Ü"{)]3Ãù)KË™#F>öäòµ½2B‘Ⱥk*i¨©e«¬¨Šžž&—É,¯ c:’NÀ(‡â7Äȯ¦©Ò¼8–fBòøjtÀ€i€9ÁÉä¶Ã›c~õ³«ý?Äf\,vBï2*N`ÊÊÜ’~,äÄÌõÈæ=€ÙÊliÛ-§OYi¬Ö+u5ºßJÀÈ)à`k>C©=IêNåzì«UG7˜ax-¦ì×zÛÍ®t®”ËS[#yæ{öŽà{ p"&èˆV²¼UjwêŽ;ꪒ b¢«u¶ú6Ÿ1ò/wø–Kû=´ôõ\E¹j)[OGm’&8·g¾I°iüÔ飳——««Gé;½Ç8û­ óoý˜ÜÉF_ Z¿Op¿ÃÕzŽ¢bÛ•êY¼˜Z<Ž.Žœr4‘<¬“°~K'\üIpŽŽ¦([¨ê*ËÏÆiíÓ–Æ=\\ÑŸÉöVíóÅ· ¨j£º4c’h)bŽ7}%•V«CPxϵRÔŸÑjˆK¬¬¹ˆ^¾ÜŒà‡í,%«´ÔZSI]5%ÈŸºÛi_Q æ(Èh÷'{ tUÛŒG<±½Ï7/–1Ó ôÝlb§‚:x"dPÄÀÈØÀZÐ0 sXË|sÐ\:§¨ŽºæËÚ&ü6Ê7Ë;9Ýøc—oèE¦ ã—‰:¦ITÑ¥4Q=†V¹–nØòPün ¹Y×¹ÂÏÜ&à7xxië¨mŸ¤ïq4fé^|Ƀ»˜ÛøbêI겞Í5}5ðPISjçtPówŒ’ õ÷«éÊ""/#Y^áÓzFñ¨*9LVʪœpå°»\ajJi¦«¨t³½òÍ)ó${Î\÷»w{ä’~«b> ¬Ž´pÙ³¶•‘SVÓPÔÀM7–ò_G —/æ<àÈáŒ~-÷Øgç¦ëq_Ä/øy_¶º²¢ëq/j[hd޹/sœÖƒ¿áÎ~]W“pãn×Ü ×W]?W%5U¦º#A^èâ¨'ÈqkƒZ÷e§;{”|ÕÜ;º]üpûWÚZÉŸ§â¯}l ‡ã}4õEÆ^`Ù– Œžã·.ñÊZ™|ÂÖÉ‘Žz®™]1 ól å¨sÜ@weÀ5Äd4‘ê³G„»C5f¬Ô:YY¾éÚºziž?¨¨id‘Ië±iÎ7 ‘Ýcúj»Þ–Ô¯Ÿž¦Ùz´Õ–<5Æ9i§ØpÛ¡)ËáßÄŸZšM5¬$‚Ù¨‹y#©Èm=s†Ûêä#—¡9å?²!ŸtË´—5>›uÜ §¹LêH€ØS½åðãa·#š® ×–Y¸Ý£ª˜ç6In"‰ÍÏÂæOâÁ7´’Ù`ÎwUDDˆˆQ7Ǻ ãtïÓꈈˆˆˆˆˆˆ‰º"""""""Äœ®_DDEñÝ.tÈ|Úê–BÒpÐws rv_¾û tïŠ(]aås$v$Ý£<¿\eÝ{’†Kt±\iÌ´ndk˜HÀ=vßn»zex|8Ó´6{Þ©æmD•.y󃹹£"1žä3”Ü…w"""""!Q ÇŸ38‰Ãpy4Íæ/ TSÛŽ£ù/@Â"""ùoúKµ¢²Õ_f£­ôóÆîí-p?0JÕ6¤Ó÷¬ël&º •¢¬F^ÓÔ´‚ÉìG+‡±[;á>£:»†ÚR8ƒ%} rJAõ˜Ãúht"¡ I¹P§„s³‹6.:±äÏAkuE]89ÀŠÚz~ûdž|zä÷S]gñש&ýgÐt³FÓvµ1€L¯Ž7| vÇ0Îÿº=Õ×á?E:Á`ºêZ£I-EöXä‚Hqµ8`-nÛ‰ÎÈ+ÛŠ¼RÑü6¶Cp©Ì.§ ƒ¨œÿe½‡öœ@÷QZqÛŠÜZÔ_ÑM AUC åÆ:^MCãØO>~o¾9[¸Îq•˜øá–˥ߡצC¨‰JáÍIDî»ýl€çãvÛì6É‘lhcZ@t ’¦QqšXá…óM##Ž6—=ï8k@Ü’O@£/«]ÔýòáO7/#ci8æÃFÀdõì¶aA«´Ï ¸'¤†°ºEHúK%3!`æšyZÆ Ürýr¢¼NjÍlê«m¥ïÓöœ6šžO×ÌßYeïû­Ã{le`¹¦ª˜?%Ç9ú¯¾…•4ÖꪈŒŽÌÃäk hæÛÃaž›õ[*ð·K|:hÚY¡cã’ÙÌö9¹kÞâA¨9XÄ¿…é(U«xeK=T2Ê M‚(ùßs3à ä·%¿«ÆÛq°U\.âEk(ª4¦mCÁ,ŒÛ¤qxH a}ÖñVÿ(ŠƒA_ñ–9õ0}Ý€Ž¹t˜ "Ú¡újÜK‰0Ô×½Îg¬q¸{uî¼ÞX«øsâîÑa®žÏEu–ß;áqòäó xÈÎ>&‘‘è²®ŠJÖqJËJ[îe=ñ‘·ál‡áŠsóهߗ»ŠˆPO$/æcÈï±ÆêéÕÚÆë«¿DÕ^ç5´4bˆT¼fYckÜZïÚ ;ñ…öp’¦¦Ÿ‰ºjz))ᩊïM,Nü±‡6Vpp1œw[Y…Ï1‚æµ®ß!§ |ŽË°{ª¢""""'|¢"!ØdªguTDDDDßÕ ¦ØØʨˆˆˆˆˆˆˆˆˆˆˆˆˆ""¦¢¯tVgY­C%’Ås†–‡Éôj-[$Î~7¹¤l@h#¨+qfMg-S.VýU¨(é˜LR[ß^()̹Àpš8¼ÀÇu ${½niŠj—ÏCSyó\Îxëh­pÕ1HìùÕ“½óL7ÎÚÝÎË5Zmôöú6AOM8hݰ·æ~«ês˜Xü¸U×EK 3)àhllÏ+}$ãø®äDEiñG_Ø8s§£¾jQ÷Y*NÖÓµ®¹Àš\3Ó|/_IjF«Ó”Z‚ÅVÊ»}d|ñHݻഎÎAèA ÕDíêˆFB‰~81WÅžÛb‚c[)-=Z=0ûÓù-ŒõPíÐñÙõ…«^Q‰Ë/™¥®È\SDÆð@êöslõdû,…à \ArÑuú¦@+m2:®˜9ûÉO+ÎyG`Çì÷Ry4ñ9¬¡ø1|ºÀþZÚ˜¾ãD}&—-è9þ‰¾Ï=%÷ }ÖSÓÎÉnõ¢––IÃ%<ÌÛ¡‘Ò4œœ˜ú dÊDD qòénÕž!5oß„tvéi˜ÿëK&k'v¢G;ü^¶µñ4wìú†Õy´4EY|{š$À2FÄ]ñ¸×8pµ¸AÀ> qZµº‹TU×Yl•Í5õÀÉYX2êØãœ8‰·p¦Ÿ øs¤¸o§ÙeÒ–ÆRÇÖz‡žyê_Ýò?«¶Àt •Ùòª¨3ºª"¾75¤¶NÁ¦(ÜæM|ŸËš@qˆcÃÞß\»á,ú¨Ûá†q/‰ºãHfÓ6™MÔ¸á²Ìp ŽyœpÛàÜd-‰€ÐÖ€Û°UïÕ 9¨vßr¡oÚ-©<ýE¥ô”a¥´tÒ\fÜŠBc`#ØFóõQ«†–—GëŠ K=¾‹í¾dôôó’#3ˆÜ"s¹pKZò×`ž\de|šçZja}šïºÔ\*¤ÛÌ€Fµ£ kG`|ZGLßõ}úšµTÜî3ä²[“¹$ôw'M^ ø?ÓVšh.F«’ûråu¶žGGG ½á‡ÊFÛå­êpÝ^1©íZà âÓj·QÛé$žŠš zh›m¦7à5£v $pV„[xC¤h„‘¸Eg¦Íé¼m;+¿ »8ùwA×ñoé”'âØŸt>£nùP3Ä3ŽEôs¶&Üm·‘¶>åóû˜Ÿù©Ãu†Ç|Šá§nM¡¯d°rÖÐÈæ¼˜Ÿ9ÙÔ¾ ZöñáÓQpÒ¾®÷c‚{¶'™•#ã–Œøg `œƒ¶pN“,§c0Gü×ÛnC)v׃·±[ð¥Ä£®,÷‹}Ykj­ÓG$m.ÝÐÈÜgÔáìæÕ›q¿\{*š"""""wÊ"""'tDDDD'U1Œ*¢""""""""""""""""¡ì€aU[á‰îtm. °tDDDDVÿt³\h»¦–»°šZø;GÅ ñðÈßí4à–ÙQ{À¦¨»Ùµ~¡á}ñïcâ|Ò²»›È©…ᓵ½€$“óo¹S²"!QgÇ ŽJm[Ã=u!Ò^n©sžy‹žö˦ŽlŸqô”ÉÝYücЖî$pòé¥.¬51óRÔäÓT7xäö=qեú׎‹ºj~ñbë!–†ïf«×RsŒKÇ¡×1S_u@se…„—ÓP†4í#÷É{Á—æ2$ì2CWÊŽ+[msNÇRRZ*gŠNÒèÆ\3±~ÎÇÈ,Ÿàjç„u5þdo¬¹Üe’v²@âÀÏ8èp ÁõYÿç¿Í;¢".#>¹+Xþ+u;uu}\^cc§¬ýd àS´Bâ=‹Ø÷ï,EÌy‰Îë!p/„Ú‹‹±–›S%¥·ÆI®º:øiÊHÎã.$`4œç $lS‚ü+Òœ,ÓµiêQ%d¶å+÷š·uËœ:4gáhØ{œ“ëîô\º­ÚUš¦ÔëÓ)¢ûÀç.?²;dû,ö†ÔÖÓprÐØŸ¦šý&i2!•ìåß|.ÎÝÛî¢~‹âþ¹Ñq6ŸNê{¾¸…² !lŸ*@æg߬‰eñgÄû~MMÆÑvßíÍÿõº"ñ«¨lš:Êù9{*e`>ü»ŸâWDþ4usÆiôÞ‡}ùÙ4ŸÊF¬u¨üNqRë¬éµçZÅ+C#  k™Dáßž¹ÁääîâHíŒ//¼Pgu  ¨¶Çm¹ [h« ®|s=¯sƒØ»ÆpÜœz•éqwWqÛŶëºêª›MmúŽšçlª ™ñ°ÑÉ |¶1ÙèÑð¹§bîl‚ùǃ^,é+áŽÅÄÚhÿX<³u‚Xðv>|Cø– d+×Wð‚šŸ‡w»þÓ¹«ê-u2Û*èkgl" ÆçFC' Ãù~6éŒlµù,`-pÈsqŒÕHϺ£ôgh(Êa¼PÏBâeÀ ˜~yˆ·üj}´‡nª=UQÈMÑ;¢"&>š!QtDDDDDDDBQÎ 'Wª"vDDDD!CJ4Úr·U–Eƪ²¢žfµÿz€NÜu<ÅÍ=¹Làˆˆ~køâ³ŠîR^ðÈl7Ê:ùð>#qÀzo3OøVu†H打Fàæ=¡Í#¸#!sDDDE|cðQúâÍý4ÓùÔ–¨žõ¯§nO/þñ»–ž¤e»ü8þ 8Áý¿}«#OÝÍNù ?tª%­ß còy‡g{œÎ²@“ŒuPƒS;‰^2âÔuN•ì7 « þ k›>Ã1’Ÿ!tWÕSPQM[[U 5, 2K4Ï dl%ÎqØ;•¯üp«âeáÖ»\’SézÝ`ܧ >Aî3ÊÓÐRV@û=4E<·»†·¬l®©¦Ôô™oÂÑ!ÎÏga®'5QbñÙ¢*ëlÖî QóI¢'S\X_€ØñÊð=C‰ÙÃÑwxuâ«e ÞŸî°ÔPÂø¤†1åÔDÜÆ&Û~vòáã÷G6:©,Ò CšAdÝTã¡îˆˆ¼"_"ÓZù}}Dp çÏ#wµ„´oÔä –¤îsK[^úª‰ ææI^î¥î$¸Ÿ©*Hp?»5ö–Óú¾ã©êmÖªÖ9õt‚¸)ä–áÀAÆNÅJ[¦¢áwôm%ž U4L2SÛ©ÿ[UPOY?‰ åÎ=±Û (q»Äþ¬ÖQÍkÓÆM9es°YO)ûÌíô’@FýÖàH$–Ò6mUª¯£Ò¶{…Þ¹ ?’Ž'=Ñ·9#ðqñ7î¥'ˆê]Ysàßô&¶dŒÔ÷kÃbš¡óùÎi 1!^Dì'®í;ï¼[➎¹è ytÒW®WUPÌæ0Ic 9’7=œÒ·NÊÖ*й_}¢Çz¼H#´Ùîœa´´Ï”îp6h=Á ÑÔz/XioºÉ¨ôÅâÎÚ—8@êÚ9!þ Þ`3óSwFpúÑÇZFÝr"–ëAFømÕû¹Ô²Â÷DõÍcC›ÓÆíBî"è]UÃM%‹T[ÝEZdÁÁÑÏHÃñ4àûú€W½Â^0ëÜÛS`¯-…Ò½PÏ—ÓÔ7=Ìì}Ü8zã!Yº†¶Šå¸ÖÛi䤤©¨–X©å”ÊbkœHo9ÝØÎ2wõÝ{\4½Tiígf¾ÀG™n®†¡¼Ý>‚GË[_§–)ᎢsÇ#ØGBÈ+¸ õDDDDDDDD;Œ"eêòˆˆˆwDDDDDDCŽýÑb0Q;¢""""áQ4TðI<ò2(£isÞó€Ð:’}]Lu”‘ÕBåJ9£..ocCÔ{Þ¸r»6ö칟bª›""""(½ã—G\iÝ`âîœtÐ\ì2 ÉáüQCÎ_ ¸ôd„ƒê$ß`³x“oâv‚¥¾ÁåCpŒnTŒvL»uåv i=½ÁWîÙ÷ù«+wýG¥4%F©ÓVØ.’Ú^*«(åqjFƒæòÑí˜tõè®›Ò†÷d¡¼ÛflôU°2¢žAûL{CüŠû~ªØâ¾ž‹UðÓQéÙ›Ì+í³ÄÏPþBXáî~‹êáõUEnƒÓõuƒ–ª[e;çiêטš\×+Ýˆ… ñ“ÂÓ¡õËu•–™±XoÓæFÆÀÖÒÖc˜·nø/áÞÊöÑÜm†ÍUm¾Ý1ªí–¹ ¥–geõÌ“õq¼Ú{K€w|ï\|gV‘÷S«Já=4VªiÎC\ç;Ì™ìH €žÿ}J™ióEåjë%¦Ò÷==ro5Ê–JY¾HkÚZHÈ#˜g ãbPSÅW ´/ îº[Oéz:ϼÍM-MmUUS¥’vó†³#f oÂФW‚ 8éø7$‚8Û$·93H$·•… ‘ì~‹;'º"""/žåEIr·TÛ®ÑUQÕDøj •¡Ì–7×5Àõ÷P¿ˆú ýë{U]ƦŸIVÖÐW²ù5žPá šÄÍÎF>6ç¸*øà)¬°ÐhíOMËG~]ÆLR7œŒ¼ƒ^ÑŽ­ä#}”™¡¬¦®€OIûD5G-FšÑñyb’ç8Îû“{}$ü”9Œs¹†ÎæOAÝK.%x£áö˜ á§ 採¶Z6Ð>û4mps£¥Ñ0å®$‚KÎZs°#E[µîç|ºKY]WW_]RáæOQ+æšgtÎq.qè7RWÃç…+Ž¡†›Qq1µv»Sš$‚ÔÇyuU9ýi#10¸~V©Ÿ¤´ÆŸÒV†Z4ÍšŠÓBÁ´TÑÞqêçh’OªÀþ"Øû׉î iø9K©j幇|6HÞI>œ´îYÇPhý#©.4—+þš³]ë(ÁóVQ²wD Îp8ßcÑ#Ñz:9§š='`dµ™œÛt Ëæ<»ç׋[Â.V¶FÏÃ}'ñã˜²Ó nëŸÄÖ‚>kä¡à‡ (¦d°pëOÇ'˜ß2”I‡|œnŠÿ§†:xZ:Y&lGnbÖ’鲎âe×_q*à5k]- EDÐ4»SHc©“Ë,Ü9Îû¹ø·îlJ0Dï•BßóUDDDDEÓ[KMYGQGYuÕº9¢•¡Ì‘ŽsH;FF,¸AzðµÆ¸ªé[W[ ï/åcy‹³rèŽNóD -'ñ7lîq3,—J Õ¢’íkªŠ®Š²&ËѸ½¤dWÚ=WŸ`¶ÑÚm‘Û(#¤¦ø!ˆ4ÆÞÍv ÐC¾È DDDDL¬Iãžž£Ãž®3±®0à ђ2ZöÏi_æVµå­”ÆÓœŒŸ¢Ùï†Í+iÒ<ÓvûDÌ¨Žª•óÔ´÷‰fh{ŸüCGöZÑÙdm‘ ÎFÊx¾¿Á~ñ %ò=”–xé¨\øñÌZCfyo©aë襟‡-:Í5Á­=EÊ[,ô­«›/æËåßÈ·eÑxšçJXu¦š©ÓÚŽ…•”ÒHs7kØá»\à…õ¯„MKï~ŠÕt5TüîÃuŽFF@ؾ6ãœöRS„ú&¤è­®qûÓX4qO#©¢±5Äá™$€s¹Ê¼×M5C'|ÍaË)ÁÏaÿo仕6é²Ö‹MRu7u5\r)¨gØf¶œr;æ ¾iÏö––G;~g`öWѳˆèí^ÏWs©sš%|q“Çò¿£×wz)óáÛÃv›á‚÷x0ß5[FESšLdÄ-=ÿ¶áÍéË’v hÎw>§º©ôü”»R ÇŽ«#üÒóaÓUŽŒæÌCÿò ú… zÌ•Lƒ‘‘•^SŽ¦Ù¾ýs‘Óª²øëmŠíÁ½aC,^`už¦@ÎPyœÈËÚ7÷hQ·ìø»j]Wdó1ôTõi=Úç4ÿ1s…×$l’7Å$-|r×µÍÈp=ˆôöP·Æ×´æ›°ÅÄ iý«DWjhˆ$Ù’1˜Ã>CN>&àuQ><ÐNÝö[ð/«êu +íW ÓQUg®DÒrYLøšcï¶_Ëæ¤ù*÷DD' Ž ¶Wx™ B6†Œô ±>Hòˆˆˆˆˆˆˆ‡ÕZNܪ¡õDDDDDD(wDDDDDDDDT ©€zŒ®ª˜Ã {ys–G¨î$Ò)²ÙõU=ÂËmºK“n²²GáÑÍBÐ!ßxq9éÉî³""±xëuÖÖ^×Ýx@ÚëÕ+ã—È1yŽt!ÀËÊÏÚw.pѹí¾&à§Š[>¨ºÅeÖ4Ô–Yçpe5tr“O#Î+óýY'¡'¶RMdDNýÕ:çeiñgAY8‘¢kt½í¸dÞž¡£/¥˜É+}ÚONã#º‹üâ=Û‚:Þ¿…N{¡ ?êõYs¢ÏvÒ°?Q&K‰ÇÂs>,LŠJšzºXª©'Š¢žfÅ,OcÚFCšFľBø§­m%êyÜØÙVÞXœç~)ü zò‚~‹ÒDLz¢""",[âÇ?ù:ëOþ‘³·˜Å¬ÇÓ=³’ÆJvk[¹$ã{­²ðÚÓ=‡‡ºrÉTƲ{}®ššV· s"kN>¡\ ÙjóRUÔñŒ7Z‹|¾|ºŠþøhœ÷†ŒM?—Ï`X>AlîÝG¾ßMALÒØ)¢l1Ù­ùô""""£³Êq±Uù&Q]C£lt® Œ4—¹ÇÔ•ˆ¼6ÕÔjQ©8€j]%ê¶Hhb.$6(jªˆv?d‘+ZFÿÕƒ•˜W‘­/pé½#w¿ÔíÔrÔó€âÆ’Ô€>«Suµ2ÖTÔUTÈdž¢C4¥Ç$¹Ä¸“ï’¤ƒ~ in%Qê æ±¢šª‚Ž¢*zX£ÑfMÝ&KH8Ç(ú©Ç¦tý“MÙá³Ø-4v»t?ÕÓÒD#`=É©=ÉÜÊôÚ0Oü•zŽŸš®Àü0lWo\M¼‡=®ÙEmc˜ì€$ܹ0·åʳÆÈNé·ª¦Fz¡ «áÔ4”õö*ú*± §¨¦’)6<²×4ƒÍ±º„> ´qÖ;kª`œTé÷´>—1ä² €ÎÛ€H#±ôS³¦wTÎæ¬?b]aÁW§©é䨪¨·ºJX˜ðÒùâ"X†Iñ±½Ö­¤ G“âNZ{tR_ìþÔ‹‹vGÌ[ÚÓ l`ìù¢{^ÂwìÃ7槃qÛ&øUDEAÓs’«„Dˆˆˆˆˆˆˆ‰¶rˆˆˆˆˆˆˆ’"vDDD\]$m‘‘¹í~yZNîÇ\.Hˆˆˆ¨ìãc‚¨ÓìAô\‘p0Hd ç©õ\ÇMÑDß<©­tüEдMtñCÿmPD™×DÐ7p‰½ÀÈßcäøLñ%5E†ÖµÎ–Š~Xmw)“¶ ŠB`ƒá8mÄÈϮȈˆ2¶¬iÇžXø§aä¨sh/´±‘n¹µ™0ž`îG ¹˜HÜvÉ#u¡¥ñ ÀªŠŠ*Hnµˆé--+ë­Ü –ó~åì9ˆøNû¯bñâvMI¦©Ÿv³Š=AbºÒWÑËH÷j<¹Z&ŽV8‡4:2þœÛ‘Óª•š;ˆ–-U|ŽÓh2Í#­1Ý_'.rHæ1§;—ÇŸl{«ÅÉ%ñƒRÚ_:¹ç¬†F}_S?ùJðržš³‹ÚF ØSM-î•’Äæä=¾`È+jA‰âöý9ÁmYx‚©ÔÕ[eû¼;‰\9#ÇøÜÑõPOÂÎn ãŽ’·ºWBÊJ±qqk9Ïú·ëZÓè šÖç¶VÉÑÍ[S<´±Èö´ÔMå°Ú<®v?&•ô”DXßÄÞ£~•àN¬»Å’O¹}Õ›…Ó¹°‡ÆÀÉ•O zuÚ[šb×,f9]Lê©qœÌ÷KØžÏÖIX;Æî¢ýÀk…#Ñ5â¦4õ-'Ì~?ÿ5®wo#¶;¾kc¾ ôÌsÃý’f;š¢òçÜê\I ¹ç•€g¦Æ}sŽ«4×ÐôÂåÐa¨XƒÄ,9œ?ÆpIÛ`Teà_ˆ{^×zëQê+MDºª²:© ­ÿWä2Ð×c?ÖË»nþ4éeŽ×¡œqø%©¸Œ½ZÖ|¿i[oñŸ«G3Û¤ì˜! É6sžç>‹á¬ñ®åºM†˜`ŽFÆ÷ãÐä¹yU.x ö1¾ÏŒ€— ~]Æ »óî¼Câ‹w AO Š…ÅÛ¾–’&8 žäe›<(x…ÔšãR !ª(⯨-s¡¯‰ÑÄöµ£~v’Ðüû#›Ø¨ßÃ=[/ xÇMz’õn´TÕRIJ÷ùEã•ð\A-#·e;øKÆ ÄxÙOh¸}ÎêZK­•¸dûu,ß–Aß-'dÅÐté¶2¨Óñþ·~ËTœ\´>ÉÅ-Sh–6Æi®Õ, L…ÍÇÐ…éð+SO¤x§otÁäÓ×°=Œêèä>[ÛõkÜÓÛlO¢ª"à÷áÀŸ_dcù˜×€pïuÍ""""""""""""""""""".2ѶK»É舊„`{…TDDDN£Ñq=:”ñ•ÁWi;ŒœDÒte¶*©K®´Ñ†ÐÌç4 1Éß÷]ýí²¿ƒn/»WØŽŒ¿U‡Þí´ÒK#¾*Ê`1õ|{܇ÙØ‘hˆ‡¡ßˆ©…eqK†:7ˆvièµ ’šz—ÆæÁZÖÔ@òÒÚñƒ¶Çàãp¢g‚+Ä–~>]¬wš¹b‘ö‰mðÇTÒÉ_,U1ò3”“ÊîC#¹{`ýgJ!Ïl"""E¼}]Í¿‚töÖ=¼×[Í<i;ò0>bqýèØ>¡CÎ/4KÒæ‹õ.ÝÆ¶Ž:ª¢(¯ãï\¾ŽÅEÃêWa×8Ù[VC¿Ù2_…¤z4Ÿð«cìõ³É>²Õ:ƒ ÁGC?ï‘Üçn»úû•3Ñb­oÇ­¤/õ;«î}¥¸EI;#§Ï,oˆ?ï 9ãi%Žãæk°Ò0Mï¢5–˜Ö¶£tÒך[¥3]Êó!ñ»Ñìpa=@p#b ÷–)×:“Ïñ ô3cÑŠJ»½I~ryXæDŽáÁÎßÑedEB@êqó* x³Ô5¬ÓZQ¥Á”t\%r—Ló=òOÛûAE‹-²®õt¥²Û 57 ú–RÓD<<­;u#u¶­3lŽË§m–hDb:H©š#o+pÆì; —¢qÕuTO 4šyc†&`¹ò<5­äìOñâ’ 3U¦8kVÉdå1T^Ù‡5§¸§ìãÔy7øsŒ¨³§4Þ²â]Öám¤©¬‚Ž)knW*‡‘-cKÜéevÜÄ ¹>‹ÜÒœ ך¿EX5>޶KxmÚj¨¦ˆ9¶”Âàœ÷¸7Ø÷a½ôïƒÞ,\yMίOÙ[Ì ÙQXée'p"kšzt. Ðø hc oßÍÕì†Í°öÍþ_EëCàŸL¼k›Ô€ ù)bn~Yϲô)¼pù±Sª5T¯åÇ$ õÇ–%îÑøBá'õÑêÌdâk†ŸZ¯ð†:PÁ±Ùgý#OŸ"ZŠÙ&d`–‡gßÔñhýÇ]YEx楉×ù*¥|C˜Ç C›1p©ä“?5çq;EjÎëçXî’MãyšÛqƒ1¶¦0~#9Ë\6ÈÎZ{‰‘^|RrÅM`âlÒÊÁåŒË™Óv´dŽ¿rFÙË„´¤©¦ª£Š²Žxªiæh|RÂðö=½‹H8#ÝkóÆþ˜e“uð†ˆ¯t0ÜAèïŠ'ƒï–gê° ¨-9¾Ÿä¶wáçT_Áí;x–_6«îßvªwþÖ'ynÈ÷åÏÕdòDBºËòzû®lÀ Æ:.Hˆˆˆ3ú¢!Î:öDDDD= """"""""""""cr}Q23„DDDDTÎøÁUD'‰žè¾k•-‚¢ß]OM%LN†¢ Écp!Íp;A BµÍÅÝ%xàwÀ´ºZjVÏúBÃWrÌ眖’Z[éìTîà¶¼¤â7­ú–™¢9ž<šÈõU ¿-ÁÄ+Ѻ*u¨#âžÁ.’ñ-¢¶T²„\YÉ’Ä rµÆ7¸çö‹˜=¾ §-¦±— m5le¼³Ä×ìrGLŽ«êDDDD!Ûu ¾Ñ+äsê-)¦X÷sÒQÔ×JÐï„™ÆFHõ9>Žüñ7„ hj|Fèøª3-L m´Ó9§ó d¡Uôèµµâ³SQÇ]GR$kéh&m¶œƒ‘É-výó!ýT«ð1¥‡‚Q]æ`7ú¹+ 7õqƒž»0¸G¬ôˆˆŠxòÐÓYõݸ·@ÖPÞiüªÒÐmL]}ßýLú¬cá›SÝt÷´·èÙq®Ž‚¦>l6h¥<¤\~!îÊÔjàÝTšçƵƒg¶Øi–ŠVdÆÐàŠ9]þ-²•DXëÄ'¨xcÃÚ«»ÜÉ.•\ÔÖºc¹–rÒyˆýÆ‰ÇØ®>ô-mû]Ýø¯{.ž:S%-’Œ™êäšPsû,qgL#·øJ™j…k'ÅV£f¦ãÞ¬­ˆÈb§¬‡;£`cbv={^ïñ/{Àþ›‚ÿÇš š¦=ñYéä¸G˜Ü5™ôÁv~`-Œ‚­®#k3 4ûïzžâÚJq–ÅG4³»÷XÑ»ðܺœzñ©¸ŸZûrÐX_7$Ø4µ?ä2àžgì>°'¿U}p3ÂeÊûƒŠ3TZ¨ÜY$VhH°Œþ¹ÿìØrϹÉa -ø³’ÉÃÏ 5zfÁo§µR\ª`¶ÓÁHçy²“Üæ8Þ êy·W…KS¬Þô$‘ùrMHê—0ŒÖHçàà²kw0 pÁÇÄí•òUÝíT諸ÑBØñÏæT1¡¹éœºÈ«O]qcCi=6ouwÊ:ÈœçG t“ ]#Ævøs‘‚îƒe`p›ÄîŽÕµÔÚ´ÚRH$†Jšæ¾YðŒsߘ¹qŽëä.øZ*§Ôš‘‚*‡D%±>9qí"\òíèýoÒ·ëf¨Ó”†ÉRê›uÂ5<¥……Ì>΃óP_ÇEƒŽµ² …u¢–WcâññèÆ©Jí5aã¯4ûuTFI+íT¶²<ÚZž@ö;l‚:T âîÔ<)Ö2iëë<À?[C[HвÏo¡ìæõÔ`›‡€Þ 57 nR‡¾¿O>^j›lŽøpNîŒþ÷ϡÀÈY³Æ^žâ´tÅoÞযuœÑÇQ1l½Úæ¾& lúïóG);¥Lϳ×XyÔÚ‡DK³båºRí,Ra‘ ûNRØw©Ë¾rUQ ƒF\@2UQˆˆˆ¬.:pÎÓÅ= S`¯ä§­g뭵܀º–qÐôü'pîÒz <>qùÁŽ)TØ5 ŽŠJ¿¸^i¤qÄ.k±ç3e½sÑÍ$z°Úy¢¨‚:ˆ$l‘JÐö=§!Í# l.hˆˆ›ã¦SþáE¿6û^šÔ퉎lOn¨È<ß®ˆ¾'dt |êñ×8YKÂÆ¦›TðVÍYTZj©L”sÜÆì·«KOÕe$]Fv Ùœ^ fÿ‹BíDDB‡+[^/¯ì¿x€ÔŽ^h¨ @òØÀöæ%{ž,ÕW_û< u=¢†¢ª¦CÑœñ˜ZØæ&NžÇ²Ø@Î}•Q[UÕQhžÞµD­û…1|l'ÒÁÐþÑ–¯t½²mIªìºtÊã=Ö¾žˆ¿›~idk ²¼NV×l–Ê+-š†Ïl€SÐÐSÇMM$ˆãcCXÜÎuö"""¶8¥¢-CÐ÷){ÕŒø%`ðH7dÏp1‘Ý@ýÁ+ÐñŽ’ß™•³Øî,«m¬I ͆Bö¸JN$òÈní áM1ñ šW‚÷W*mõæÃC \F9YW -¥§bC·Û †œ7V_}/5“‚l½V‰>ù¨ë%¸<È0óy#'×!¥ùôxYí·Ä]q§4–û©«Å536dlÒÌìÊÆuqÉé n¡U®×®üTqNkO›kÓTn1IRc£ƒ9ÇŸ3‡SÛ9;`)Å£tÝ£Hé{~›±RŠku"(Yœœ¤žî'$žä•ë¯[_ Ó:Bï¨jžÆEn£– —œ4–´Ìà}V¦nõ’ÖWÏW1.ž¢WK!?¼âKç•7~ÎÝ7  nú¦jg6¶çs|ÊFϧ‰ŒÇ.ßúà ;ãaè¯o!4× i*m–×ÓÞu>ÖQ±ùŠ™ØØÎàvþàøŽ1ðõæßAÅozïÌ…ÓWËÎDÕ³sGE@ÂsËÃ@ÈÃ[—B¦/x ¢øCi’õqšží}Žš¦ñWZÊf´dùM9òÚWÌw9bÎ$x±»ÙõÕÒ‹IG§/vˆMLN×; 2yÛù€ 6;ô6GŠ4iÎ(ð¢Èú{u]¯PQ]_Hù|ØL2C yk†ˆscüMi8ÎJÄ—2몛ŎçOz¨ šÉmm¶‹în0†B!¸w$oè•UÄMaqšYkµ-âwÈÇ5åõ²`H$uõx“Ý'‘Ït.2—snIÜþgó_4Õõ…±—Mð>¹T†IÅ;„nwǶÞËæ&F¼îàì©IàŸˆºÊ-alÑ_¥ébýc槯˜ÖÐ$ŸÆˆús`/³í«ºïKATFfZät†#eø\ãèpìܧÕcþøƒÖ<:¡‚×°Üì°¼ÿæê³†à’\#XÉÉõ9-*VTÕðÏÅ f² ¹\¢lQÈk-³cFŒüq’0q€áû§@~&èmAÃÍ_Y¦µ ©ÇËåÔGŸ†XÏv‘ùt8 …pðîû]ýÕ<Ö² ½ ™ÑÈÂà驈ž.\ty1ògq‡{bÌ\ö·â9ÊËþuÚÅÆÍ=ú"Q%l¦†zpâ¿ñ¿ìà?~í[+ê`€Gº""""""""""""""""›¢"""&wÆ "ñÝë©­–ʪú©™ ñ:Yóðµ­’~D¯¼6’²ŽŸŠöšpd¥ki/Ñ3áæ Ž|u$;®Å§4•<q ú›@?K\$ãbk.%ÒÓÂã’rZîfúc•HDDELåbß6º{¯õ3jÊ)©ESËžWÅ#%on¤³—äò¬ÿòÒRhŠ9ç’®:‘_P$nÁ1|mkvéŠpO]Ïe ШÛâ»Sj­­ôµÎ‰åÖyÜé)öwÈ!„öl‘€Üï:çi §®´·Ë¾õBðúZúXê¡pîÇ´9¿À…÷"".š©›OO,ò26¸ú2V¥µeÉ÷ÝKr¼Èò÷×VKTIêyÞçàG䦯Ù÷¤¿EðÖ뫤s¼ëýg•Ç ¦/cH÷/t¹ùE&‚&ëx㹊. VQ¹À ÇŒIÊKšæ–íˆ{mÙGÏ:ú›ŠÇUÔ²'[tÓ.w}Lp‹û8s³êŸ‘|öDDEüfÞ+5ß´wlu\¨ªŠkƒ˜Ò|§¼á¥Ãl†D_&¨R¶Ín¢³Ú(í6ØOECNÊjh[Ò8ØÐÖ´gÐÖ°'¼FØ´¤î{¯HöT9ÎËxîÔͲðQÖhê<º›ídtÁ¡Ø.‰Ÿ¬ãÓ kO÷‡ª×›É| nN3é•%nw¿¦8KÂkUt3SÛ ¤ª©¥a’®ª~_Öy-ny]ÌâïÄsÑ oqðKÂmÒïRÍCŹŸKÜ^,±M™æÎO4Òµßç8i.9Ü´ä)whµéý'§ÛCk¡·ØíTÏ$Md0Æ;¸ô2w=Ô_ñâoOÕØïºHвí‚j:‹³ætq°ÈÒÃå0 É€OÄ\Ñœlà¡í<·k„VêYê«*Žx#/|Žô “ÕJî xH}ÂÖn|Tšª²áÔÖš9€’=óÍ4˜ 29йØFÞ=جúcŒZŸOéúcKl ­0A •Ò†µ¹øœI;ç©S;€þøEráv˜ÔW=mÆãj†¢¢JšÉ¤i{Ù’yCƒFsØmóWÝÏÃ×ëã,›‡ö¶å¼¿¨|°ÍŽ>ýT'Ö:Nêo®Ð\;·ºŠÐû„vèçÉ7/ x˜——}0ª•2ðƒ‚Úˆ–-U -¥»Ûf–ßW<Ò¾Y*)äæ’7¹Ïß-˜¶á¤ƒ@½nàõm é'áí’8Ü1ÍO†Aò{püÕ‰„ÝAZ.6=A©mÕðUÇWE+¥†vS¹ŽkyÐàÅ“°É;æ?} u/¨ãuæód °SC,…¼ï/•äàzó †Ê;Eœ’Oà½7¨î¶ µ=ÊÙ]=e;¹áž ^ÃìGòè¦o ¸¹Ãþ7Úit—­6§Þéÿè•3.*¢ZZç5ÃT„–‚8-ÆÙỆzv:ªû%®¿ô‹)j£§3×É#[æÂøùy å#Û#°Zætf8-!íw)iØälG毎êA¥8¿¥ïÒ~ jö²a·õr-ßÁÅm<Œõ÷UDDDDDDDDDDC”DN興ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆFèˆ}Y\m®áêY"žh"¤–I¡‡ò·Ëx Ûñû°ÿu›RQ ¨§§ª·j*@ø]‘þ²ÊpÒI?×E’ÇÇÜá½ÎãÀÿ5zʆ:ž‚¸ÑÕó½ÍŽjr!À$á¯u[ ¥žšhª)ÞÙ!•ñ¸tsHÈ?’ìDDïÕp:«{_Ú"¿èkõžvG[nž˱ø˜@Ç¡ÎVð· íw(dŽº†Hžç“Íæ1âV:c–I@þé÷R$HÜà ç¾z¬Uâ³GeÁ;Õ5""|Hji~jË´G–¸:–gvÉ9°ý €ý®¤kYœ3oà¶¥À«KlœÑöÖŒlôÅ×—âtaÎ8õËŽUë¶SÙ:ûAµ=UÛOhÊi9ªiã}eh8c_HÎ <Ž>Ûz¬‘à_K‹'EîXC'¿Ö>¤óä³õQƒþëœ=œ³ê!é×¼½[|¢ÓZn¾ûpv)¨¡28»ÏF°iÎ!£Ü…¸çÄÞ/éÍaHÚÍo=— Z{ÔVú FÛse2rRÉ·ë ZÑÍÍí‰ ?øVãmOhë¬×ÚH)ïÖªxä’X]†Ö1ÎsLŸ°FÌ2F^À8Éq{ØÈÝ#ÜÖ± —8œS• ¼.WKÄÏš_ÔÆçÇ55Pâk‹`™õíô*djKõ›MZ$ºßîT¶ê¶|Ó¿•¹ô§Øn¢æ â§øç{¬Ò¼ ¶¾×¦¿¨«¼Tå8Étƒðm‘È̼Œäï–xÀ]+ÃXÙr˜6ù©\3%Φ!ú¢zˆså|—òwÀ˨~h©¾s” ñý«Jñj“L±Í0X-í½üúŒHÿ§#aþ+ ð“IwÄí=¥^çÁOr­c'’/ÆØ€.°+]‚G\-™pï‡z7‡¶ÁoÒV j‘úÙ€çžcêù]—;¯Bp3°y\_âîá¯ïWÚ§ÔVHÝè)pùä#׳Z;“üz('ÆÎ=êþ%UIM[PË}›1Zé\|¶îp^팮ÆNRܯ“„\â%¶Ú!n³s€û¥ps"#;˜Æ3)Ólõ!NN ð/Cp²½Úi_q¾9¤Iv® tÃ#l` FÓ¾Ã|å”†Ä ƒºÕ«EÃÒ¬5Íó/u`×i\?ÉloÃŽ ²êN éz›$¯|4¶øhekÛÊæM×´ýFrB߯ígáëRÈÎi Ìá¤ÊáÊÌý¢lð¤%®Ôš‡ˆìt¬¢oÜ)%v=D I;ýCšÓ÷ŸE•QÓÃÜaá×€¼Fá¿)®×fPÔØ©é§…ÕôÕ` CØC”~<óc# õ8Rã²Ç~%ooÓÜ Õ÷(¥ò¥ýø#p8!Ò‘ǿơ÷….%Û8i§u?ܬõ—½Y{©§¤´PAy—‘¯åÎ>"9Ÿ¸hÉÀéÔf;µÿ¯0jÞ8^ªhè~Á§hŸåá£~WTÓ’Èrrð@RKNÙ,úrÏOg°Û)m¶úvòÅOMcêp;ž¤õ'r½õD=Q|õõpPÐÔVÔ»’ x,ŽôkA$þAj›‰wé5o/šžOÇr¬’ sÊÂï¿ ÜòYÃÀЉºÞõÄ ÕM-¯OQù-©¨“ËcfŸ#<Çm˜×?¶ßUtøƒñXKj4÷ * Mk‹&¼¹£™ã¡4ô~23èÅG ¥8ƒÅÝC%=†Ž¾óXé<ÊÊʉIdeçwË+Rrz’pp ˜üð£¤4{#ºkaMªïcHÃ÷*w`ä63ýo^² lkJ‘Œ†·”4` l©ÈÕq‘ì†7J󆱥Î>€-@jZãuÔW¯O¾UÍP6ý÷—šÚ´Í6‘áNš°RÑŠSOn‰Õ =픟R^ç¾ÐýV)¬ÚoFÄâ]WRû•NÒ8šXÐ[è\÷ÇXý–eðÁ¤FàŽ·ÉOäÖÖAúF·#s4ÿÝ­-gÉ¡^zçOÓj­xÓ5…­‚éE-!q`w!{HÇ«N=‹>µ=nÔZ—ƒÚ„Im5T³ÓDã‘ÑžIãÇ•®¶'º˜³êµëãò™°ñõòoúû=,06/o×ð¬÷öy¼»U¬ÈË/Õ¨ÌP©WIOWI--U\íú+ϧs#u1–ººBãÊö´ï,]ÚÑ×ñ8 “à†W¥nÕú»JRÚ¯UuÇîÓÊê¿»r7à$ÈÞlœ ¾FÁH¿š¡ÕQP“¹ßø*¬%ãSX;Jp>áKK?—_}‘¶Øvà]+†7À®ì\=V¹ÅC+Éf€³sÖ—ŠI¤á¨u-šži*KäeDîvLÒãúdž†´g•­c|æ^5.»šŸPk&TØtß0—# jë[žŒiü ?¾ï =DòÒjäl4ö7k¦µÛ)Æ"‚`ÝÎ'%Î=ÜâIêI^¾À*‚a[ÜIº6ÇÃÍIy|fVPZjª‹ÁxŽ¿çʵ;§iŸU~·S±¤ºZ¨XÑêKÚó[€s€æ%¹PÄËŸ®|[K§¢˜HÆÏAfˆ»öy¹L€ŠIü¦‚*x#‚òÇ:·`?%Èî6º„>)a¬áOŠ+/í±8ÓܼªâÆa¡òBU€1’èù\Os!*kÛ+©.vÚkCj(êàdðJô‘½¡Ípö ‚ ‡Ú‹–©s´Úzï–Ï8Ysìëš)8M~¦cÙ!¾½Ï“'æ†!‚HüàõXÛŒáÿèú~Ò)®@~ªëBÖÅTÍó‚ìöõÙáÀdãu ª¢"""""" ˆˆ…]DÑSÓÉQ;ÛQ4½ï=Ð2IPˆú‡Pq·Ž”¶:‰ ˆ\[Mi9Úš6<O·O…ÿ=‡U=­4ö»]%¶”Ô²Z9XƆ´mìú‘|·[u¾íošÝt¡¦¯¢¼“SÔÄÙ"‘¾Žk|Ôf⇄º jÛ…÷‡Øªãp{mõSHúpFùŽA—ÆsŒ~!é…ñéÎ4ñ?„ÓGeãV•¹ÕÛYÉWˆš$ d æoÁ.ˆµäõ$•!¸}Ä-¯hf•¿R\0Þi kùfˆmø£?8Î1èJº6ʯeÓY<4Ô²ÔTH"‚&9ò<ôk@É'Ûjß‹z¦m}ÅÞ©loå¸U‘LÜdˆ™ðF>|­j™žh¦µðž´=¯ºÜf©‰¯Û‘k" Á=O–_ÓöǨRo¸Dú¢"øoa‹Ï`$Àá!ؽŸð—*ÚÜB0yšÀ}[Ù}¨¸HFã…R7Kvۺƾ(t|šÛ‚Z‚ÙK¤¯¦‡ïôMh%ÆX~0Ð乡ÍûK}žúæ:Í3rÐu/h–ߢîcyÄ­Ý~øÏ²•©ÝôPoÇÍ›“VÓjwÔ=¯š¨[¢„7á1ÇO¥ÙÇ^i±×¢ìû<ìÿxâ> ¾8Ú C`?ò‚å‡Ô©¾wNØX·Ä7-\+ÓaàÃY¬iû… wQÐÊðCüÎþ!Ÿ ô6©ñÅ:Ú»½}[é|ï¼Þ®®åíg y Z6k[Ó ÂØV’°Z4®›·éÛtvÛ|-‚ž&ÉîârKŽä’NI^¨ÇdD'c¾y‹SiÝ;–ý~¶Z˜ìršÊ¦EÍœãÄg¡éèVÖþ*xgc§w艪ïóò‚ß»Æa‹®0_&1ôFMcª¸ÁâCQyV-?]Sj¥!‘RQü4Tî d™ØiyÆG1Ïî¾sW‡/ Ú_SA«xƒWk¸ÍOiml‡ÏŽ9Oí¼½¸æaÇ)h;îLÊßR5\m…Â Ê ÀÖ:PÓ凜4»dŽƒ*/Ù`ñ]íͼN]d}Î?¾ÍèÝD)9Á1¤ @ä7 ;8ß9&Ps)aÀ~Ø?.럲apšHâ‰òÊöÇ\÷¸à4¤žÁkçÆÏ­zçˆ6º-=pmu–ÏHö2XÛðIQ#ÿZæŸÚo+#ûlVm3«™TÑ9õ”G¹y;©8[ ðåáÃLp⚎ý|…—[Êj%†Ç|BÃûCaÎr샎PHYèlqƒó%WTc ¸ß*‡¡XßÄÝ]Eõ¥D Ùª!qxÏõ€Fqókœ>¡kÓÃí™÷Þ5èËsG07ªy3ÕÄï5ÿð°­¡j ƒ-6ÚRÖÇGI-CÞî€1¥ß–Ë_~êfÖÞ*l÷›Ð5“ÕÕÕÝ'~9yel/{·£¹vù-‰° *ž»wôQóÇŽ•7Î ºù EõZz±•`¿TóåÈ?âiÿ úüë 5OimÕr¶J½?;­ç'.0 :~M<ƒÙ‹}£öù†¯ÒnSåMA=09èæHüž¯_³–¬¿‡ºž€¹§î÷fÈGø“¢Õ–jrl•óÉ_EXÃÝþµJ^o„cfº>à©Å¦¯VÝG§í÷û=Kjm÷ vTSÊ6æc€##¨> îA^ŠË*øðõUš)%¨-£Š•ÄGꇙŽ{‡ö¿VÁòÐ+¯ìç{…ï[E‚úJ;2P}÷?ÅL…dq›ˆö^hÙ¯×W¶Iœ|ª@ü>ªnÍé=‡Ñkžó[«8µÅ'>6:¾ÿ|« Ž0O(Ûaý˜ØÑô ÊØç¸{fᦄ¢Ó6†1Ή¼õµA€>® Ï+»îvç vWš"(£Ä ‹X5EÓôâK¥®j—IJúÊ:pزyÉ(kšCp É=OUŽ$៊K+áºA¨ÝG8”\u ò s‚ bR109q¶z/wKø?Ö5îlš—TY¬Ñç&:U/~瑾ž½Özá‡~hgSV¶Ð/wˆ7ý#twœàìç-Œþ­„„7˜z¬µ0ÁŠ™c£XÐúÏn¿Å;*ŸÍP‘öù¨ãûŠ5¶:K_,õo§uÊ'U]_‹\`Ï,qdŽ!åøkGBT#|¦z IÛ§Éf Ú"ë«øÁfâøé-UÜ. ›Ã0ëÌça  úž€•²±Ô•P6ÁW&=–ñÉY 7‡ AO&yë&£‚ï}æ9ðŒ¨àž™óø“ÒîòË£µ“?-$4 IZ ôÝÃsßð¦‹+ë,5mGûZªAAGW:wˆÎ>MsÑEÿ³ÚØú¾3Ü®"è(,rý°Ù$–&´zîÑ'OE>ß «ÌÕ6jME¦®– þoº\è夛—¨dŒ,qø*ø¹Vè¾8߸uu™‘ËQE$±6L³ït¯9Áï°—Ë)øö°Ò]xhnóù{#E3‹±!/¨†°íå“'Ó”+7ìߎq.µ“ãÑŒcáçýfwõÀSçPúïòU9îºj!Žf>›ÌÉXàzFZ‰Ö6y¬:²ñcš3”ÓÓ=Ÿºc‘ÍÇð_¦j¸+¢U‚rö˜ÞÓ‚[¿mÀ[_ᆫ¥×:°êºIö\¨™,¡‡hæÆ%gͯoÑ\ àù.@»nÛ®lhÛ×Õw`wܪ¢"""""""" ߢa íßÙUtTAçOœG#3–ã©ÿ’ˆƒÑ0¡G kž¡ã®…Ò4ï•”QCJ9€"Yê]¶Ísè¦Óö½+¦múvÍ“Ao°BÌäàw'¹=OÍ}×H«i¬kƒšGÄ2Ÿftûƒ&a7à gAí±¿OR½‘ÓtDTi;ƒÔ*®>[|ß7/.}—$EÅí||×W7#°ßå±XóÄ' )x«Ãº›#$Š µ3E®¥ßìgð¸àÇ…ÞÇ;à(Ëᛜ&¸Öð㈴µT”•/kšc/–Ý)wÇðŒóDwwÞ¤·9Þn[«i.Tõöú¨j©*bl°MÙ#2×4Ž ƒ•ß…C±Ù¤mÕ@O9üDŠWÞ¦ª}Dõ u!¬¦d'‘˜õ'žLì:m•|}fÒúÕÜø—î´ 7ã—ž£'==Ÿâ>¶°è-)Q¨µH†–/‚64eóÊ low}IÀ­vqc]jž1ñ)E%Dõ5¶«]0/ò˜IÃ;¸ì\îýðÄÅðµÀz.Z…öøÈêµ}lX¨æQ0ÿ±ˆúãÎïŒ ºç@‰Ù "`z" ‹æºWÒZíµW*ùÙOII çžWœ5‘°eÎ>ÀVª8Û¬¥×ÜD»ê‰Ž>ùP]ÝË~ZVèDæ$äth$úU²Ÿ ¼5oøi •ôžV ½rÕ\¹¿`gɇm¾÷œå˜÷M÷UMŽÈŠ6}¡•CÁ[tQɆϨi£‘ õ‡ïí–Éb³Î‰òqŽóX"Ì4ú~V:Lì×¾x9F=Ãù+ßíÔF==¤ôœ@b¦ª[”Ç#-ò™å³è|×ÿº©ölYfŽÅ¬µ¬*šªjâcÞñŸþ4’—`«ÕPºŸÍ@ÿTðÇÅ·^SDèé*奻\aÅ…±Ô3mþ ÒOþð¬÷ã"+Ç‚WʃçÏ-ÿF=$˜çs²;rBz¬7övJ#׺¢—qæÚavÌGÿ)M 1ü;mÓܪ;vàôZ÷ñÝ£#Ó|euú–™ñÑj:FÖsr€Ï¼°òLÖ÷'[Î{ÈTy‘í1ÍØ þJb}Úç0j ]PÆ5·*¸à‚ï‚fm¢8÷qî¦(Ïä¹3<ßöõ\Û€¹¢*eÜärü ÍžþЍˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆzevyž_;yÀæ-ÎøõÂäŸ4CÑco‹>©âö’âmSÛ.Š@)ƒ„ïæ…ÄþÏ#ŒŽé’Kzc|…åfÀt]™ÏEáj66‘츖“$½Íhë·Åù€Ì/JÑU÷šV—c˜ÑÀçn»tù/±p{wG_p¹‚È9DDEÆFs4€KOg¡tòº"y‡Ër¢ÇÚ%AbIi«ëiamù÷OC€Fâö¸ÜåÆz}J¼|Õ\jxÆÜ$|Áu©ŠŒ¹ÙÊp=9“ø¬ýÝPî¼|pÔÒÅŦÓÓ½þp†WNÇaŽtÎ#Ûqƒ·ªîð‡Ä .K­µ%ØHú8ìðˆâaÞjŸ8ˆbîæyÏ`×ðW‰WWļGe,ÖUàÈÆ—R[)É?ÙÇ«œq×e38 À½'º6U@ÁsÔ’F[Sv™˜ylmÜFÍ»n{’²¸ÀôUÝ=Ñ """"(Ûãç_9Ã:}C9e~¢¶~^¬£MÇNgr3Ü­~¿/%ßEž¼pÖ¯ZqFŠëUB_§¬R}ê²i#ÌRÌê¡ßbîbFû7~¡l`ÍWªª"!Qƒí™ã†Zn›2Kï99îÚy@ÿ¬U¯öpÛ¤ÿç½íì{X~çIƒ¾8y¯x#Ôf=ýÊÃÞ6¯²^HAÈÁLAþJ‡mù¬O⇆ö¾"ð¾*ªrnÖ¨eªµLÀçHÉC7f -~#챤êàF¡Ø‚®NêÚí®í:¦ŒHE$àÊÆíçDv‘ŸV“õÂÚΞ¯‚åi¦¬§“ÍŽhšö¿÷šæ‡5ß"ÒÕz-Æ%͸'+˜èˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆŠÎÒ:Îkޤ¾i»íV«•º¿È§ ›ž:Ø\Ï2)H'âobå^(ˆˆˆz"(óâ2–÷¥¸Ÿcâ²ýGA h™k’ÙPÆ»–I%&I#cÙÊy°Àߦ{GÝKÆí[eâÆ ÔÚZûQms¥Š–RçÓI(`Ìn;d4€ útSo„ºÖ‡^hš+í$оw1¬­Ž,âÃA{7÷>§¯R®ÔT#!Pò+’ê«§eM;á“ð¸`¥<4”±ÓS°2(ÚÆŽÀ.ÔDT ¨¸ÈKXç4dÑ|ôÕ‘㘠ÇB¾¤TsCšAè°—4,|YºÜì×øƒì1¹¿s©ˆ†ÏC+9˜Oí8ó0F0Y[FØìúcL[ô农S[­Ð6"î;“Ü“’OrIî½…BpµsâµÒ¿Ä&°t‡9¯<˜v~аíòÕÔQS±ò>w¶6DÝÝ#ÉÃ@ÎHU³/ <0¦áw é­³G¾×ÔÝç%Ó´yýØÁå¿ý¢²€UDÊ"""""""£ˆœc¹=–¯¼NëÓÄ+ÝïQÊçÐC/Ü­Í'ad€áýãÌïñ,sf·UÜ«£¤·ÓMUS4‚8!‰…î‘ç8¹8[LàN¢áÇ mºn™²:p Mt¯ ’¢L“覯 vhWÛF3ê}UWÇWu¶QÜi-ÕW X++K…,J$å£.äiÝØœ/°tÝ;"¦vú¨ÃöŠx]§#Îæú’7Úžnýº¯ìç§s4.«®s±×XâвâsòxQ‰5Óën3_ji@2]ï’¶Á电ŸÃ jjÙ‹O[l”Ày6úH©cÒ6ä½,õ8*¨±÷ˆ!ý9àΣÓÌ–(ªKçÓÉ <­–"$nqÐ\g¶z|,j+8ÅÍQ3"‘Özšúa,œ­Ì”ÎŒïýæ³ó]~™G'§©¨Œj˜R¸¸×s0»n§-=zl§é„ÆýOUCÓ$|‚âzõÛ¶Ýz€Iù-_x©Ð5=ã%ÚÜãO÷+›ßu·¶O%<²ÈÂØ´±Íǰ=Ö+[ð-­ÿ¤Ü/ŠÉSP]]aÿR8îè²]¾A„Çòˆz©ÝŽHÁ\†ÄçeØÃ¹"""""""""""ˆˆˆˆˆˆˆˆˆŠŽ!­.9ÀØdª¢"""Š>ëmuU¦8îYz³2Pʺh(êü¶5Ž¢¨dm`çv>6NÚ½óŸŒ7¸YÞ†åGXZÈfi‰³ž dkЖÆWÖˆˆˆˆ¼ýEf¶je’óFÊË}dF*ˆHiír>`ä(+âæ¥Ð³OxÒÖj 4\çâ6*¨ŒâF—° þ°t⩵¼;ê­i¤¸‘dm–ŠîöVÖÃMYHØÖT1ï !üÍÀÇ0<ݽBÙ"""""""â#`w0hÊä¨â =â÷á§”{l¾8i›O–ÁXÂâ÷49œz“î»vØ¿eÙ›ò»>ÎìWiú-Sx‡«ûß5¥H¨ŽpëÅCCãݤ5äÐtE”<hªMMÅÉï÷üÚ}9L*¢ai-ûËÏ,döظ{´Ëa mê€îUQˆˆð‰”Egñ‰š#‡í§:²û ¨qk#k4 ÉŽ0çòí×Ü/wL_ìÚžËOy°Ü!¯ ¨htrÄv¸wiŽázkøÓâ4š…2Zí³˜o„ºŽí81C€g“ýÒ;ƒ =–¹jq$¿Ãs€˜ßg÷ ˜Eg®µÂ'¾†Ðdz£€lãóòÚ÷žÊcƒ×¨è«ºÇxª®××qŠÒI6£­c…ªÝ3HÈܳ£à6hÝ üG™Ä7>¢*òŠŸhÔ®#IÂ×ÇÝ%qnv$B@8ÿü×áÿ’ð¹ÄLéC%¡«žH²ì3î±Ç̽À,SàƒCM¬8ßEx¨€IlÓƒôKßœ†D ~×™‡Œõ¹lw;’2Jä}¨#$e2¨ì9¤9 ´ŒGU¯=c#Å.¤áÄü”vË«nvf¶Wú5L})'a“˜wÛ+ìðq†Í \êëlÔѽÃv84I·ÌFà¶ÒÊzá=‚§(`‡>Äú(Íãë‡mÔ<6‹ZÑÄç\´óÀ›gR<áûw-qc³Ø(zegºÉÚW”TJæÑ_#42´cÿŠ,ÿˆcüKcŒ!À9§˜}F`#uØÃ‘ó\tDDDDDDDDDDODDDDDDDDN興ˆˆŠ„öþJ›çñayšŠÃiÔ6Ê›mîÝO[MQ—#^Ìž\‚0z‚¸ ºá§¬‚ÙOr×UWºž&õO“” eÎÆ\Orsºö rp©Ôe¤oÝUu¸½§ÃØú|ÕݰW!'Ň {®hˆq×CÏN˜ôß+“@v;®¤;—?UC’ÜœŽä²ì‰áÀd‚s…©N-sÿ¥=XÙ$ó\ÛÍ[ ð6&xÎÛvR£ì×l±ÓëNX#1Êê"ùCðæòùÜ Œn]ß±S &É¿ DDDDï„EÆYn–Wµ‘°9Î8 ©'Ña~,øÑZ)òÛíœÚ†ðÌ&™á°F@iøæ ŽŽàô8Q§Zø•â>©©}¶äÛT2`6–Õóß¿»Ï^Ø ÅÒÜâïkYWœª¢ŠQ—\/rAÎñHñ·fž½”ààŸ èxc£…Š–¾[D³êêäŒ0Ë!|-åh 'Ô•}nµÁã[\7Uq¾ãGþm¢Ý1Žvï7N¿¬$gû!bM%ižý©-¶Š~fË_S$eŒç!Ò84Þç'8ÊÚö…ÓT?HZ´Å©˜¤·S¶c˜Äâ=\I'ܯhg$aa®<ñâÏ \tå†_õ•F#§·S‚ñ ÝøL˜É'у.=ðWÁ \¦Ô¿éS‹s~•ÖnlðQIƒÆ— `ÈÑ€øYÛ'q!¿É| TQ?íw.‘Ò9Ù¢¾ “ËßÊú¨íK©E£ÂÂÅOP[Q©5_$±`i©ià‘Ûç ™$‡oÊå/¼2éK¸#OvÕu”6‹…á­®¹TT¼1Ã#1C¾ä±„ü#?ŸŽª6qÃÄž±ÔšÐM¦n•6MºIc£eŽó´¸bIyÄ4mŒ7êIÇ~+k‹†¢uú}OvukÜÒdm[Û‚§`³/ |Wêë$Òj¶7R[C°÷Hàʶzµý×£úãÁLNñJqËúSKÜ…KðÏÛÉ<ý×°î>c ö%]aÀœwP×ÇΟ–Ó¯4‡é ‘¿q—áÆ$‰ÆHÜO|‡þ…ü9]ã±q£IÖÍòtŠÁ®vaiÜßãu³!°Ã{vBOq²®ûmù¡ç ƒ×+ãºÐS]-µvÚø5d‚xÉÙìx-svõj‹ú¿‡œF¼iîc÷ȧ™ÃúèñE&ÛnÒ3އ#²¶ì÷ ›MÞŽëDðʪ*†TBã¾Ç4þ`-±póQRjM1o¼P½Ï¥®¦Ž¦œ‘ŒDö‡5§Ý¹->ૌöü—8IéÕv¢""""""""w(ˆˆº"""""".ü,sƒ\ò<£>Ã*ǰkèÏ—K¨c¦£©lÆ–¦X%ÌQT cÞ0r0]×¾ ¾Xàᑌu9È\•rAv*¨ˆ‰º"Ÿ’tèŸ4DDß>Ȉˆ˜Û ©ø³í…ÁÄûÛËzç š.š—9¸Ã¹GRîT@ÊK˜á‡zö\¤‡”sG UŠNÛãÝq9ßUîY€pvñÙj¿ÄM7Ýxë­¡òùê¥üƒs<»;zç?U"þͺþZÝ_o|‘F$†–F´Ÿ‰å®›§°ÉÚS@tÂ""!ØŒû(cÅ¿ÜO´ë ËLv¶éFÀøžÊ*ºFÉSÉ€IsòZæ¸çv€1¶W“¡¼Të;Mìͨ~ïz´;ñÒr¥ˆm—2MÉÆçÎze½DÎÑúŠÓ«4Õ¢±Õ ›utBXdwv äê¬sÙ;¯Žõt ³Zªn·J¨©(©˜dši†° ¸›ÅÝmÆÝIýáݪvZç-G™3A?­žA´QãON§8†^´í¾(kx…u—QV€ ¡¥.§¡fÀrœbI0AÜ–‚ìY÷Li-¦)ÙÓÖ»[ÐÁ÷ZV1ÄÜOÌ•í¢³x×­aáï oz®NWMIOËIÁó*C"n s¹¤ú48öZ¤®’Jš¹gžWÍxj/Ž£ˆ—±Ô6Y]MA¾¬°s<íÑŒ“oí8ÙSZùv¶Ù-sÜîõÔô4P0¾IæxkZÏSßnŠ/ë¾4^î•§µ|í&¢ç(<±sg,…§p=^rçnv”f4T9ÆÄgÜ&þʨ£‡­!|ÔÜ,¶Ü,´.«ý \êšÆ±Í8 N~øÈ7 o¿OH h®u-u äŽ:˜)jDþD¹1¿v’ÈØ†€}UÓ®ø©u­ò[¶ ºO[Pò\ ݆G×f7£Fý°®¾ð]q9Ì«·Û…¥î<×ZþfBFߣâõ g© ;QøCá°°—Wñ*®K/–Úªy)ÙLÙ9Ìnæ$ ‡/8;÷Û qÿ€z—„,¦¸šæßl<¬(iÌ^T§ö$g3¹Aý—dƒìvVÕw­;v†ãeºTÐUÄG,HXz÷ÇQìr–áçŒ å+#§ÖvZK¼ ¾ªˆŠzŸïÆóì<°¯¾5ë]ÆŽê*-;yk¯ ¥= [DU,|ð×;,çnXOSŒ¨;g¼ÕPÝ ¯¥—’x'eKGG±ááߘ[vŠFJÖËcš×Ôœ®`÷ì«žŠ¿T\\3¶Ê"}¢Ú0TÙ¬ò–y´Ž6Ú×ã¬O%ñdç£_Î;ÿX¡+¿ù©ÃàZ>é¢*4œò8ÔØªsÙæ¦˜¹Àuý™þ WÐŒö@Cqéì»ÚIª¢"""vDDDTkƒ³ƒÐઢ"&ùDDDDDDD@ˆˆˆˆˆˆŠø²³^øsÄÙõe–‘ÔúQ>¤ÄK¢’¨æ F>þ`AÎûà‚0½ñÂáJÚz1p¦’‘¬’Û]8ahÎî‚CíûoE+4ަ´ê{oß-uQJXîIâls¡xê×`‘•ì¢"""+wXkm3¤%¡QÜÙnûü¦WHÇÈð2@ mê­Ý Æ®k;ƒ-¶}BÖWÈq5\/§‘çѼàí€JȈˆˆq—˜0–¸Ê±&╆ݪ_§u 5uš¤Õ}Ú–zˆsQ8å,{sŒä~,+枢 †¹ÔóG(k‹\XàpáÔt>˱3ê>KªF;›rò\c ”'w7|Œu]ˆ¾zâ`uæØ.µí‹}³Ðð©“Ì~yšZz7UDdkXâòs“Øëî'˜nïÝpv1°ÏE­œ‡Ä–±òàl#ïå­n2~ï]õ;ç¾Uéà.²¤qž––'´@ÚZ‰§¾[Y{òÁò[˜úª¢""ÇÜcáâ•CQRKšÅIp¦”Ç4!ß-žÐpy\ëÓ%[ÖO ü¶¶Õ$š\×ÕÛ¹j*ªåq©{H<Ó08Fü‘’ÒÞSÓÙeÊ:ZZ*VRÑÓCMOÃ"…ŒhôlròõeþÕ¥ôõeþõS÷z 8ùæ“”¸œêI }T2Ôº^ø—â4šcMËQlÒôÎýh-Ì4±ž’Ï‚<É[ð·;vý¢e§ x{¦øm¥a°éÚAÀuUK÷š®\`É#º“è:°ÀWjŠˆN0¡OÚÄU{µðþŠ`è­àWWŒÎi´ÿu„»üj(ÚiMU|QóÇ. æ“ð·;dû4-¼k°è-káo4ìÚ¾ûMXê†S3Œû8•Å ”wÎ8ꊺZ6žx­s0˾N Çé³CœFrZwRSFé];£l‘Y4Å¢–×o‹ðÃ1“ûÎqËœïW8’}W´ˆˆ¾ õæÕaµÍt½\imôPŒÉ=DŒoÔ÷öQ÷ŠÞ,´¦©Š‹HQ³RÊàï6¡Òº#À KIyÎ:1ÝD>+ñƒ[qàù¯÷y$§y‚ŠåÓBØk±Æ\K½Jùø]Á½ÄXÅN›³:J/¼}ÝõrÈ#‰ŽÀ.É=p鞪`p“Â~“Ógïڱ̿׶©’B×3õ,˜<®aÈw;†NGáø}I‘tÔñSÓÇKKtÐDÏ.&DÀÖÆÐ0[Œ;m…¨Ë•Ö ×ÕÇ#ÌœÕrHâíòâã’}ÖÈ<4UÓë zP^(a¬§žÚúŠzæ2fÃ#à˃³žaN}T]ñ+á®ç¢jªõN…‚{–—sŒ³R·/žÛÔ‘êø‡guggÆ6¹î\p{¯¥•ÓDá‰Ó¾ãÜcü×+Y¤78cdÏ<’ñÎêFvÏÍmƒ\OÒ:òÃC ¦ýOStŠ–6ÕSI‚^pψˆÏìäð’î²HØ’åòLn÷ "³øË¥ ÖÜ5¼éyšÎk…;¡‚Gˆ¦?Õ¿§gòç¾2µ=]O=%\Ô•P¾ ˆb–7Œ9ŽiÁv ƒ•–ü ëé>5Ûb¨˜ÅEziµÎìì×JG–â=¤ ùw[%´Ôšš&=íåÙŒZâ:}Ô6þ‹º3–ôö\‘ŒŽ¤""""""""""DDDDDDDEñ_m»õ¢¦Ñz ¦¸[ê™É==DañÈ:î¾ô  øñáŽõ¦jê/¼4¦¨»Y7{­-y}U'´|Ù2°vÉæí¾2q ø—¨¸o«ã¯ |Ì 2²ŽPX$hüM{Nàÿ¶5ÃÍ]h×N‹QÙf禩fKâ‰ýØïpUÀ‰ÝÆÞÛ¸¡¢_§k«g·ÌÉ›SGY CÍ5ŧÍ܂܌Žààˆ_yðáÆË]dÐÒØ©®L‹˜ÇUGpŒ 7ÙÍ-p=ðFTåá„Z‚éèuWÿGn…µÙw1óC71îïSë•q¢DT9ì°Š5Ú:Kí$µ0ÔR‡rÊ%sc¦pÜTíÐÆqŸ…§;«[:½ö}y§.חٵ͢’'«Ý)ÆrNïfÍ·1ãu*;".‘­•±œ‚á±ìW5Gã—$UÀò¼lvpz'—ð†—sû˃› 2âÁžãªâ1€ Ï`ºp@Û“¾V·¼lŽ_Z³ûBˆõëþ§·ü6^j¬ünÒRA<‘2{œÓò¼·ž'ÈÐæœvØmì¶¢òˆˆˆˆWÍu¯£¶[ª. ˜é©)ã2M4‡ cGRJ„:ÿVjŒã8ÎÉV¥¾‚åy¸Ó[h)¥©««™±C mˤsŽLO Þè(©©õgh›SY!.§³Nƾ3á-| ç.êyztÏp¥U¦Ùo´Û¡¶Û(ᣤ‡"(!`k3œ:u+ë?ÀTø†ÝÖ¤8—m§³ñRÚ¨üß»PÞ*©¢2‘ÍÊɜќmœ§·k„Õ¾èi欢¸ÖAÀe¦O4üþ)³¶3ùŒì°_|2h ,—lcJ^œ5E¾ù8œæX6î~&–“ÉÙD.*ø|âWਸ\- ºYéÁ|—kŒ±ÆÁûOn˜1¹$`z¬F]Ó~›‚¾ëeÞ²Ý<5“I ±<9å®i±…#¸;âÛUéæClÖQMn=òrVÄ=ŸÒLz?sŸÅ”´Ð|háÆµ²Ï©)âªá´ugȘžÃØŸ‘+!·=ÉUÎç䪺ªalðº' d-nøËÓPÛ¸Ÿ¦·Yë(hõ%+êyØ|–×=µ±ØêÎgIˉèZ°‹ø'lÈöI¹˜öžW4ƒ±…mgƒšª›Yè;>¨‰Ñµ×zVTJƆ9úLÁð$,+׎£ÅrÀ?”«µ0±×ø9ÃÞ#f}K`i¸yf8îtoòj£ÈÀøÆÏÇ`ðà2v]¼áfžá}ªªŽÃQxŸïŽk¦uƯÎvZ kZÞ½†ÿEtDDDDDEC× «ˆ40Öé+‹f¤5mŽ1€u—“â,÷Î1ŽýĨ¥~ñ~á…ÿHVŸ¸ê /ék[åçŠx_€Í !…Ämœ…:øQ«)õÇ,ºž«išg`?ÕÌ>~O è;¢"ÁüSÖw«·´O 4Câ’Ž¥·­AIÖRNÁGn0x­ÒÚ`ÍnÒìÔ7ÇPçRÆð@ý©;þt뺆|Mâ&§×W©nú‚ë-\òòµ­häŠ6ŒòµŒ3ó=I'%YÍŠ¢|9¹a’O@³ç|.q÷QWOp¶o»¾†J‘–åì”du1‡4m]‘”¶à§ô— ¡}\4Ð\/O{‡é ™Ìøãæ¬nv-%e`=Á'uWo¶Wc½Õ ÃÁßäµCÇ`Æ­rÖä¨ëðr?ÖꦇÙùæ yyÞÒ ò¤³p<¸v>ùÏæ¤nÄlN=Êv$€6è¸á®kÁÁk†ÆÅFŸœ£ÕzeºAišVêšzˆÄðÑ4Dk 9iËr^ÒZyŽü Œœ¢‡øÄÌùoÖ‡ÔÚÃn´@ËLr@ÎÆc98ÃÀÉé•[×>ƒÕ}T•“@àà÷`^ë0p£Ä?4+¢¦¦ºÉrµ³ôuÄ™¢}˜ãñÇÓ`×ï’ —ü%ñ' 5¬pR\ë#Ó·‡4AY l/v7ä—¦=‚³Xp Ad{*œž™ =øÁѦëÁ½EP}ö¦ßQúr­ŒºH*@9$·â{ÉÀwO…k½Ã¾AS#ìùÖšßrÐõ• IG8®¡cŸŒÆóË(¾Êvýå1†03î»`ÉÉ\ÇÂ`ªˆˆˆˆˆˆˆˆdDDDDDDDLÍ<5ÍosÑrˆˆˆˆºªê!¤¤šª¡þ\0±ÒHìg• d½‚øôÕòÑ©lt׫  …º©¼ÐÔBìµÃ8>à‚ î ¯G9î¸L×½˜ŽO-ÜÍ$ã;d>£#ê¹¢""*ƒ°GÊAè çŠJGhn4TjK|pÅÍŽºœHH¨Àçïœ;“d’|_éì:ŠûÃYj^iç ¼Ø], ™©åcKÀÇG¹7¡RoêˆFWÈãt’=¬cA.sŽ©%bNh¸F¨ÔÜ\®«uuÇVÌãBç³v·6Cä1§¯ÇaqÏNVŽÄœº‹ñ߇IîGWè©>£ lR‚›XÈÈtAÌ- ½…­å8ÎÃ}²©Âÿšvï4Vcɧî§àŽYòÈçpÀ#qð¿››oo¢ÍÑI ±¶hê!’'·™¯kò=Aî0Ó!¥Ñ´cÍr`|O.ïŒakóís]ÇJ.VòØiÁ õýlÇéÔ¨!–ª¦hãt²M#ccW’@-¸h £W£ms9Ð8ŠvÆ|‡0|% ò p}Á^÷tDDDØ|YqšM5LݤêœoµŽ «–è#wû 0~7ƒ×¨7 ÁÇ)`¢‡‰šžŠSuÏm¶š¦0y˜¼ç ÇU(¶ÏUðÞ/V{4¨¼]¨-дdª¨dMÔ—;ÉcmMâ#„öH¤?ÒAs•„*ßæ'Ài5·‹[ÍÒàl\6Òo’¶W–BùØêª™6Èòéãïó${/ÕÀn3qVéû‰wùlð½ ´Ö8OTÆžF@ÌGöÛÜg+5Ðh.ø{Ñ7e­Õ5´4§Ì¸VIæÕÔ¼Ÿ†6ðÆ\âð5£'8Ê×§5=ÏXëKž§½ÏæÜ.3:YysÊͰÖ7?²Ö†´@¸û=øhÚkmgîQ4ÍWÏEi?mv&“Ó.p °k½T¼í°UB¾;µÎßi·ÏqºVÓÑQS·šj‰ä Ž1œd¸ì;~j>qÅÆ„±Ã,:^–«PÖ|Mdœ¦p@ÙÄŸ‰Ã>€|ÔLâÏ5ÇdšíÝâÜgó¢·SŽJxˆØmÕØüD‘׺ƒO,òáÎ$ú«·† QñTSiý=Féæ‘ÍT:7iZA<ò8Ê0=NÊ}ðÇþ„Ñ5ÔWº¶éWC?w’¢1´íÉ}F7<îqØCCZL¬Ä2FFø=2£Ï¼Piý|}—OÚãÔ5ÒòUÏ÷¯*pæ5Á®.p?Ouyp{ŽÚ+‰/e$ò[/Ng0·Õ¹¡Òzùn?|uÆN6+*Êl:gçŒ.$åãæ¥8­Têþ&êš×`š‹Õd„އ38©±öx‘þ„.qye®‹PÎp10SœûìGU$›†³˜äo’¹›ŸR­-iÄ]£.”ÝQ¨)mu¹ôí”;â â õ8 èŠX¦‰’ÆöKæcÚr×´Œ‚BTš8äðM$†V–:7€Zæ‘‚èA :qÂ^ŒÕ•]4tìÒW'núx ç¡”ÿîÆ<¯ðü?ÙʇQá6ºá­g‘ª¬’AL÷†Ãp‡õ”²œdÈ6Ï_„àíÑXÎkÚÐs·¨]TÉ ÁiǯºÍ<ñ ­xw,tm«ý-ekM¶²W9‘³ê]¹ˆû‡Õ¤î¦÷8Ñ£8—LÈíŸt»sIl©p ’ÎÒ¾íéÀW¥öš–¢Î©§e@tnÑ<ǵäW #8Îv•©}ef›×ZƒNÇ;çŽÕs¨¡l¯n ÄR¹Äv'•z#ÖUea}Ä"ðmôôRË<ôm˜@h*s$5N$†˜Üz8ànÂ3Ô…&x}â†Ú¡ÑÒÖÝ[§n~S]-5Ô}Ý­qêÑ#°Òs¶ ö .‡1¯cƒšáFà\¨ öŠCã%ªVÌë|ÛŒœK&øúÿtÕk­wª;œd i'Ž¡™€Xàî÷mG‚1xS§A1sËH'Æâæ—H\÷I=K‰þJòÀÎ00ªpžXág<®åo0nqÜœâW,’@Áùª¢À^$üAÛ4 ]ƒLTÁYªCÌÎxhò7æ9Áda»õßÑB½/¬©Çhõ^¥ónòCpeu@–§•õk¹3·êB2ø±×··ºŸIèÛyå"& x'®xsÎ#f$‚ŸÅ¿ZÏ*Šùf¤$ñGh ߩݳãóù/¾Ïá'Xß+r×:ê’©@çu#µÎ¹«”•’X-1M;g1Ï-? ’Q‡? 8Ù¹ÆÛ°Õ}H\ ² é¾Jé´]k(kતžH§§‘“C#‡1íp-p=ˆ ­§ðZÿYª8O¦5 ¨UU×Ûã–¢_,3žLaÇ”l7•áøO^¾ê„0;ûöZ‰ÖÛX^rNHÔnOþÕÊo}ž<¾<Ìpu€3=?Õ©÷úÿ’’à9œÝ— ê!§‚Içš8a‰…òÈ÷¶6’ç°o’µ±âsŠ?é3Š“×ч6Íni¢¶0_'šC¶~3¾Aê½^x„Õ|:h¶ó¶ïcç'îO?ªÏ6|§³ÜäŒwØg*Wpóħ 5\6²âí7[!År>Ó€wr¬Áoª¦¸ÐÅ[EY e$ÌçŠzyŒ‘§¡k†Ä{‚¹ÖRÓÖRËGUU4Ó4²XfŒ9iêÒ0BÂïŸ õ)žzmV›¬—.ó-³võNËöhjŠ|iðϯ¸~f¹[éß©l ƶŠ#æDÑÞX·sq¾\9›’BÂ!§#’ômJª ¢žšya–‡Å$o-{:‘¸#Ô)-ÁïžËÍh¡¡ mIsYWFÀóô“~/ˆ÷%c_ðé›·­tmHªµ_`mUKD|¦ªÇ,¢FþÉ{€“9!ÅîÁ8X„ÖÀ|q=MÃs¤+j9®šs c]ÕôŽ?«#Ô4å¾Ã•ITDLï„DAÑ¢""""m” ¨ˆˆˆˆˆˆòˆˆˆˆˆˆˆˆŠÀñ_MCÁÝDʘ*ê m´PGJÎyLұ͌´w!Ä;Øw¶ü×ørÓRVÈjL4Xþñ&ç“õY)ñsFêÏú°2'Jøiã¨kGö&c‰ù` <)Ü#·ø‹ÑÕ.8l•rSç|Ø$`þ. e¨Óc·Ugñ‹AZx“ kôµÕŒi•¾eAn]KPÐ|¹[ß œuipèJ‡¾8zàŸîÅ´Ì#`+y±·ÂÑû ¬¼ˆ‡¢âö5í,xk†# ¬3ÇŽÒqO:’ÃrŽÅX*P9àó`sšzc9¾íü”JñÀc K.–ëUÒåjóÖ×@á<19»äòülhd½ {•ôgµF™t¡5ÖÒ䥪{#;ó³<§qÜw]\Pâ â%Ö–ã¨î¤*é©þîÙ #w&K±†:“ÛºµÞwrŒå¹[Nðé^ë§tmkù‹Ÿi…®.“vŽSé¶Þ£_ÝñÕWè‡88ê¾jXæ–I\ó+ƒù\vfÀ`{l¾’*™Á¹ÜöQÄW‰:D7 +¡%ûÅÄ´Á-Þ7*œî";ó¸tæêBˆ~Ïr×zª?C#d¹×¹þG0k^ññ¹Ï{ŽÛ8“ž‡©*bðÃþ§ÒΧv¶®Ò7;|mÿ 3*¤kšN9g•Íðlz©%Á!§°ÄÆò²8ÛÊÖ`:.Áé”ÀN¿Ì*Ž‹xˆâ$\4áÂûŒ9‡Ý­¬p5•Ø=CwqùcºÕ½dÓÔTÉ4Ò¾i$.t’=ÅÎsŽîq'rNI%lWÁOcÐü$¥ºÖÓ6;Ö¢ ­¨.fÈHýL~»4óêò;,˨¯–}9j–íºÑÚè"Ç=ETÂ6z ž¤ônNÁFž(øÀ²[_%„µ:êðK~ÿ\ $`îÈÿ»‹—ºˆÜFâ&ª×—?Ò:’õSr•®yˆHìG62#gá`Øt·Ê³K¥”ãw®žhO¯¯±ÙôÍžªã)‘šX£&PòG<¯ü,nÇ©ßR›Dø.Ž*¶M¬5ˆšŸŠ–Õivço5ý6þÊ’<6áÖá;J-c†„ÔrЉ‹œù§ l^÷Os€$àjñcÄxy,öúº÷^/P’AoÃ݇i_žVõ—{(‹ÆšÛ\¾¦Ûo©uŠÅ.ZÚ:Gaò0ö–Q»²:×b°Ì4ÕÕ4þt>F¶&µƒ$¼…¡½I8ì¥áç„K˜µš¾õE,K/ú¥ ß™Ër ¥¿ \@Î8YK^xq³\sʵùp·×Ú.óÛ.”“QVÒJèª ™…‰ãb;‚0¶'à—RÓêZ(ãdËe’J ˜ÙyyÚâ09rïÐý3Û¢§1/wÂÔN²{]«oO<× ÈÇLyŽSìá¾:m#«´ß#Z(ëà¯c‡âwŸßAä7óR‚ùz´XmÒ]/wJ UdÕVT6šOAÌâO¢Ž¾>8W¦4M¶Ë4U:ƒÕrÇ–ƒJчGÍý¢àc¼/°iO¨æk,~ït–HùÚÚZI$æipg6@Æ9Ž3œl}÷7‡~-Rè­eY¦M(ó]C$£ï¦ 2é| 2î ïËÖ.‚YcŒ=ŽÃIÛ®êèÐüCÕ&ã÷­7{¬µÊ]Ìï"L2Oï°ü/ÞI^øÁªEI­lQUFNYn"9;ncqå=öv褯¸•¡õÝG²(˜Æ—½ÏvØnâW؈ˆ‹x™¦­«àµ†€0µK#³Þ6aò£öå®ÞÜc´ñWH݈w•K{¢šFã'“Î`pÇ® [WDEB£OŽ Ëªì¿éLÒ‡ßmTåµôíÖR4H|R3|w-Èß çðSƯé-®jœû¥?ù®¥Ç&ª ãwöØÑ±îÑêÓ™> "*lF=VñYÂøx‰ 5c†ûgæ«¢©x9i/…ç¯+†q±Ã€÷Z÷¦«š_*v8Ç0å{Ó‡4‚sí…4x}ÅŽ qO‡4:kBš*]]<»ÕÚ¹ÿª¥€3FåòHAr–¸œe¥dž pWOpúSz©ž[ö¬œ8Õ^+2é9ø„`ç„îãÜöYSè¨V4½ðƒ·hçmW¬±™Ž\êX1û&2Þ_¦ñOŠ.q ´6ªÇTZn:z(ä$Ë @±ç¾ Øúc+Ó¼yÅÎmÖÓ<5RÖQpFÒW‡ ˆíqó4·4ä´}…‘ 㧨U¼­U¨lºZÅS|Ô-ÖêfóK4¤ãØ7sf€I;T"ñâVë¬ «°éÑ-¢Å&cQTÍÁ9§ ivìIV8®ø¯,uÒÇ&ŸÓNuʪúÖãa<ÍöæÈhß|Œ¯Â~ð·OYÝ-Ï küꆂ0C]€Îy@ÎOe’ÑPç;*슋_8øŽí[ÄÙô½í}¯N9Ô­å;>«o9ß6ŸÕÿ…Þ«£ÁÿíúÎíS®u‰‚a:O½9­†®váÅ.ø|¦Œçc:³/ü\Ù­rMláí,WIXâÇܪšáz-›ã÷ަF ˆœAâªÖ·g]5æ®á0Ï—æ¼ùq‚F[? N€tß*Ð|¯s1ʼxWÃ-eÄ›¬Öý%i5ŽœõHñ0‚/;ÎÀœSù•.¸}àÛJÛ¹*5}ò®õ3\iéQ€/È=\A ´ï¾ÒZÉi¶Ù¨#·YíÔ¶úHXÈiã h ÀýV7âǸ}ÃÏ:޶çúVóA¶ÛÈ‘ìw¤¯_'l†•øÅâo]k35¾ÝSý´8¹¦–‚G6IIÚIvqÛ®ËùÓTKÌy°Z Üã 6hzÒïP¸QMEx4–ŠÖ÷FÉs#d,’bçAnïíÈRÏ‚üÓ|=žz§½—Z¦ÊÏ»Í4`9  —¶<娯0z•™ Š8`d1Š6†µ­4 €Âäâ88X¯Œ\ÐR¸Ar¿ÑÕÑÝ£hŒ×P¼G$¬&A±# mœ+cÃ4<=Ñ:—Rð¯GÖÜîµÖüVÜ®E’H b1ÆÑ˜ A8êzœ…ž\O'A’ ¼;õ!jW€5UØ4a¢¾~POA攨û8^ó¨5£[¢£.Ãh>Loõ?÷ 6øÐ¶Åqðí¨e‘‘JêSÔ³›#•Í•­ÈÇ|8…/·;žJé.7è±4³H_7ÝØyX œsÈÒKFøDzØG„ m}¯Ã†¥®c¢’H&©`ôŠiä–3Ÿv=§ê²ÀËHÇæ°ü2é}]%óNÔC¦o’ƒçyTàÒÕ<œóHÆà‡œœ¸uêAQ7Œ<âCë.v¶Ü¬¬nJÛC¥ž¾`Ç4x$ ¸ú±3‹Æ\Òzí…÷Û/5ô3Å==L±M¹™$n-{bÜp¤7 |Uk="Òq'F iìµu¢¨:>–êÞbîRÀ‰ùË}ùšqðæSx|âô;.q†ÓݨùaºRÿêåÆÏoö‚G¦ã¨+$å7™¸#'ø(%ã„Ñš’]m`·´ÝÊF¶¡±¿"ž©îq?#޹#$ ².à¶¿¯á§¨u-'<”Ãý^ºF&¦{›Îߘåà-›Ûk)®4õôU ¨¥©²Ã+NÏa~kéDDDEÅÃá*}¢sÆþ)Ú)[!.ŠÛæ=¥¸¹Ø=öbŒ‘ óg÷JÚ¯‡Úˆj8G`0U ˜ÙLÖµüÙ$c#˜vvêþ ª„…cqoŠš?†v¯½jJó÷™ZïºÑ@Òù§ tlÑý§=ó²×ç8Ó©8§yU»îVÊwGn…äÇÉø‰Ûäc.ÇȲÌ~<2~›¥¥ÖÜL¤Q<‰h,Ò´´Î6"Y»†žÌî7;lfµ<1SÃDÈ¢¡Œ­h°v]‰ÓdTÎãÑUtÖLÚjIª’£sË"g3Ýœ5£rO`£^©ñ{¢?¢÷)tå®ûú`BöѶ²š6Gæg”bG¸ÆvÂw ªŠšéªªf’YæÉ,9sÞã—8žä’Jºõ/·='lÒQU¾žÃlo-=?$óÑøÞ\IævNý•,¯{¹œòOª©syOš”žü,Õjh)ugcžßd•¢J[[IeEX9Ãä;ÙÐøŸÙ&jém5`ÒÖjÓvZE9“Ȥ„F×<õqÇS°Üú{+7Œ¡¥G¿³¶††çE¯Ù_o¤¬†VÐBæO^×1ÞqspÁiÀ$tè®Î8øˆ²ð£<8ж¶Ip³RGD$ÅôôA°·Ëcw.‘ÍiæèFNT}©ñMÅÉËIÔž^]ˆ©bnsØü==–FáO‹ëÄW:ZM{OM]@÷69ªà‹Êš\˜@Èp’F8ØöS>–ZzºHªi%Žzjˆ„‘ÈÃÌÉXà>àæ°×¼6pû^Ñ>[}>—½ŽwEYo­ŽG8çõÑ Œçqƒ¿^Ê!qÃg´”“Ê4Ô—º¿ô»Kþð1Ï—´ƒfœü8î$š–z:ÇÒTC5=Dnå|R´±ì>„Âú)®4s±ñÈö89®kˆ!ÀìAº”~üM\íÕ”šc^ÖšëKÞ#ŠåQ!tÔ€ì Üw{êNàwÀS^9"š6IÙ$OhsÓÌÒ6 Ž ¬QÅXt½â5¿…¦ÇOržkD×#QƒçÑŽpÆr= ˜ó‡’Ãv9Q+ÄW‡‹§ (Ý©-WhîšYÒ²iäk*©ÞîÍØ&ÔFÀ×çÜà¨Y ô^Vª±Úõ.ž¯°^iYUn¯ÐO‡V‘ÔzpAì@*@5/…þ;ys6¦¶Ï+ ŠA†¶çE×À‘‡bB3ÑÀ™é¦o–ÍG`¢¾Yê™UCY–XààGpH$dAØ‚£•^‰Ð"ø/”—;]M¾¾ž9èêc1OØÓ×bµyÄ­+W¡uÅËH×%üÊöùð‘˜äÇö›ƒóÊ”>x¦Úˆ$áꤢk!wW0éaÏ«p^ßQÏÓ”fX¢ Ït^6¥Ô4v ìì¯!±Ý. ·Æüô•íq`ú–òüÈ^Ê..ÜoÑ@?´NœÃÅÛLÄ‚Ùí-s}@=»ýZTj‹”ËŒÆËe¾ +'¯àEª¦h4Ì…i‘„0ú甜·Y” ò$$zn£×ˆßvm÷‹”u5ßQ1¤M&y©èŽ6Ç'öFÃö±ÐÁ+í÷RkmLꊹën×Zéz%™äìÖ¹ô)“ágÃ%6›ŠYqš:›Û€š’×#C£¢Ît™üRN÷=%CG|*ŽŠ©º"¢<`ð}=5óŠ•3íU5‚¢²Úè¼·ÓºBžÇgç8À#›¾N”óÈç7$ì¸/FÁfº_nÛlÖÊËl®”Ô°:IôhÊšÞü.Å`žŸVq*ž–²èÎY(­ÜñR8n1Ï+Þ?te£É=%%}TT455õ.ý]<.–RÑ“†·'¹ÀP§Œ.¯7›i·èK|¶ j†;ž²¡Áõd‡(n[Ç9ËŽÝB‹wK¥mÖ¶Jºº‰§¨™ÅÒK#ËÞóêIÜŸšùâŠzŠ¨à§ŠI§{¹\çØ¹R¿€>ª®”´š‰’Ô[©žï2+måžFäcÏû0@?Ø#%¤¦]¢ÙAh¶SZíTpQPÓFØ §…¼¬c äëép¨Àp£ï‹þ3 §Ý¤´õLnÔ:rÉåÔ08c› ü/p?z ŸE¯w½îÇ3³€F½ÍÎFF©k¨<¥Ùø°Iô=–Å<"êšÍCÀdõÏ‘ÓÚÌôi$ç26/ÂOLa¤ {uP/†úºã£5å»Y[KYo¨|á®ü25ÁÍ{O³šçªÙ­V·ÓýI«/7zKM²®–*¦:¦P‰Ì7sºì2N2±„þ)x[ŰDëíD^hŒTG@xw7Ň’™±—ã¦p¾ˆˆˆˆˆˆ… €쪩ž‡ÎUGDDDDDDEÂYDxÈ$žÊ±»œg”šäˆˆˆ‰Ý[œæ2;ù¤<»‘Œ8åv'tCžÀ ÏtDQÏÇž†«Ôœ/§ÔvÊHdªÓÒ¾¢¢GJñL[úÀ2>-ÃN2:eaïÜNNêúz¯e5ªòÐúWL@k*Ænsðó½ÈºnqksÈ\r¹g= »ü¶XãÄ/ )8¡Ãª«3„q]©Á©µT3àlÜökÿ ¾yìrðeÄšý)­¦áfª}E,uSË <ýε¯!ñ{véÍóSUD7T'FGÍFO<)›Qéú}uc¦cîVv<×µ®Ãæ£k\âïí:26Úçz t½ú³Mê }öÓ1emì©í?´ÓߨŒ‘+hü>ÔôÏEÚõ=µÙ§¸S¶PÞìwG4û‡>‹ß~ëøì¤­—‚ܨgš -wŠJ§KË]æ,w{=•ÿÀ vÞ#p¢Ë©žæýùðù-K>6Ž`à¯Ò¨zt÷Pí ••Q³8<>F[¸ÀmD˜ß¿R£]+e0½Äà4u'°ëi¾¬”ús…¶ë=4µAM$­ŒT–ù±‚âyÊæÁù{«úª¢Zyjjf†"i|’HðÖ±£©q;¡‰¿“\Ef”áåS©íí>]Eâ) dªÝ‘ F]¹wl Ýìöë¾¥½ÓÚ-4u7 ê©9"‚—¾GØ2~ka>õ®Þ)äŽå tä¢\ó¸[ãŽMúžv€à}ÁPׯ'‡û?(éµ–¨t6Jº¶ÑÍn™î{©¥,%¦7¸’æGdÁÆ áÈgÂÅúSZÛKKO~mDR¾£$ÍQNAeާïn¥Ó6Àeâq ïŸÐ×ëÔÓÅ(-µïn@äÄdwßwèµçó1‘ç ÂÏþ¼5MÄ-+¶¿jºK.ódÈŽ2ùÞÈŸË'3œZȆ°ì»Ü,Á~Yc¥áE‡O]u@—U‚ S ¥˜¸¼“ͳwÁ$Žø’W7VNëÕ#¢dœÿw4yNöN®}Ô³ðñÅ»´¼õ&Q_-îk.Tq’XÞlòK?°àÓ±ÉiìMù©îÑX´íÎûTÞh-´rÕHÜ€\ØØ]®0µK®5ÏSÞëo÷‰ßQ]r˜Ï9ã͆Hêa,‘™üFGuvéÎñ¿†¼U‡Ni·ÉSK<ù.”Ïsh%¥ÉÕà ph9açð—lV?áý;ÝáOŠULª4ñ~“´€Àw›8·wmÚ±^‘Ó—ÍY¨)l:vÛQq¹U;–(!nIîIìä€ê®z¾븵M>‚ÅWYS=GÝãš$òüd€÷4 †IöeÊ¿¼EŠÄk ¹Z§® æû˜´“û¡Çlüð<ܯ>ãÔÚ[PPWQOr¡©¡}$¬å.ž/Ö³ ð=£}̃ÕN;åòÝ`Ó•7ûÔÿr¡¥ƒÏ©|¬<Ì`ÆÄ7;ïŒ îµƒÆ~ ×ë®%Þµ3¥‘±TT¹”¬;r@ÂMǯ(÷%Z?¤ê‹¹¹É#~ªéÐzŽ_Ò¿¢j*ÝKIwc­Õ²Ì<©~bÜü\¤‡BÝ·^÷‡îIª8ýoÑ:ŽÃ L®»SÊ!°d¾3‚î™íœ­šPSÓRQÃKIpSAb†&7 ckG °_ŽûE·€5,‚ªHM]ÊšÁŽ#ÌoÄç4ï¸<¿ÁBÏÕL¥ãÖˆžzzÖ¾÷MŠa–ƒ#Äaû÷apx÷h[E¦oê†\I=Îù_tdŒ.Hˆˆˆˆˆˆˆˆ˜ÈßPü“䪈ˆˆˆˆˆ‹‰h/Éß:*çUß>Ȉˆˆˆˆˆ‹‹£iß•¹ù/MP_(®w£t­†ªŠj±%°µï2G cs€íþlœ´Œîºˆˆˆ¾k¥ %ÎÙUm¸S²¢Ž®ÁQ ÿ ‘½¥®iö µ½â[„u<$ÖQACS%]–âÉ&¡•Ѹ˜Ca{º5¼»íž¸Y_Ã߉ú«%=>œâÞ.öÅOq¡ÓÓ· (ÏÆÀ;Œ¸z;lL-={³êT7[ÆšáE3C™4iϯ¡ö;…è*›¹AÌO°P;ƽ‚]%â‡TÙÁ£uÚ’*öL̓k!w#œLá°¸ú’ISS‡Zš¯BXµ4a­K|5NcNyöæ|Úì¢÷Ó²zguBºæc^ÎWáÍ;FAù…¬ï:ú‹wKe4lmº¥î¬·ù{Â÷Ÿƒ‹\ßRìôÕÆ¦Ë¨´ET€IG;nTm$äÅ ”Ø5ìaùÊ¥z"+ ÄEˆê^kC!|òÉjšX#`øŸ,CÍŒræ5EOCuŸˆhÊÊ–¶Û~Œ¾•®8 ªcAÛnfr֩Ш_?hmÜ]¶ÒÓ=¯¨¦µb§•Ψ™àwå!aÞPÃwâÆ‘µÕBe§«¾QÃ3Ç; Íû-„psUÛ­\#ºë=Ot‚d¼Üjªç3 ?ÖÆàùÀÜtõˆ^$<9áÌspÜo±Û}²¡ï8}Y­8MÆ]÷¡n¸W_[$šׯñ+šÜò´–€HÎÛ8ßßðÀíGÃËÍûRjØ[Kvøí´ñ¼;š0ZçÎ?eØh³…((#j9¥–Gm³HÃ[ò÷꽈øßÃÈ®7-7­¬Ðò^,7êZçò7y¡óffÃ$¹¼¿îû¬Kö‡k™mšbÑ h¦–).rêÒ×ãšÉlq:‚ÿ‹çëÚÙ­•÷›œÛe,µuu Š(š\çسG…¾.祻ºË,ü4‚qç¼o’ŒƒbAÝcm/£¯}qýt&Šéål°Ô‡1Ѿ&¹ÏaÀ$;á#çÜ-€i«] ªÐwqOE&±¼ùÔ—»Ã)yd®‚’Íœ“ËÌá\7$7|af¦±­9hm÷ÙE/´z³—Ié `qÍE|ó–ƒû‘µ¿üµ¸yx‡Oëí9~•Ÿ«µÝ©k=[ÌyþKmQµÄ“ƒ“軇°Á\½ÕSº"ãËsØî7ì¹""""""""DDDDDDˆˆˆ~hˆˆ‰ßª""""/ ]é{V³Òw 3{ŠGÐ×DcyÁ²0žŽa9ÃÜmù”ã'‡][Ãù ¨µÉQ©hjgtQ>މþd`þ0G7^›l=p,]­µ—¯ÓEÖºË[¹*aÀÁ-ý™#p-8÷ JpÛÅÀ{òÊÇ5¿|µ4ƒŒ¹ñ=ݰ2Zîû5H-!Ä­«)ü룢©ÌcÚ\csñ–°‡‡Nªëæ¡ÁÀƒÓåUã#b{ª€ÊŒ¿h&ž5ºNjfFmWSÊ{ˆêåÏc꽿Ú–+¯]§²Qa®–23’覑ұÇêéòb‘¯ÉQÁE_Új»E»ˆvèÜóAŠ›A Ü<©}¹^yrÞÍXÂ^¡~žãþ™s¤’8k¥’ß0k°&a õ`c¾m dc¦è‰õTv:z­R^`®áÏ®4vÙÞê½3z‘”sJÝÞêyÉÄzF“ê Ú&‰¿Òj­!hÔ”8÷:8ª˜ÐînNv‚ZO¨$ƒî¬âGMÖ¶ün68øß2?ö­G#Øæ¹Ž-sNZZpAÏU·Í!quçJYïÅß~ ‚§.o)<ñµÙ-è:ô Ããô‡¦·Ôߦ¹ÑÖQ¸5•T5w•¾cåxs$ç˜79¶Bìो…ºoKÕÕè+\”tUÒV×Éûħ%²—È´œ @Ö絺·ˆ7ÝG,æs__,Íyo.X\y6íð†ì­µÛN@wÄ2Vð³#áñ¢çk¹ ®^}C£{Hÿ%0aŒäaFœ<ƒWhƒ¬èêÛOrÓ1I+Úæ¹Íž˜€\Ñ€pàà=0]žØ½<$PAlðó¤ü—ÈóQ•r9磤•Äìãäb6ë6¾?+y‰ÁÝNs^½úðÍKWGÀM_à–Ö¸±Ã5ÎqnÞí ¬ŠÓ‡´QЪž3Ó ./k*8‰ ‚ÿZÆç®ïYÀÃîê]a"–zû\l¦›«¿GÊÐiôýZ{˜e¹ïû;´[ªµ-ÛZ\(À¦¤´ô2ÊßÇ+‰æ,Ï^P0O©ÕNB;‚±~£á-š}Y6°¦‹Í¼ÉTùÏåLO§HƆϒֻ.$ƒœ2 ¯£.´ŽñC¦ÌÒ:¢Ïc¸ÆØÝ>9¤¢”»¦Ûs dþu›ýÎÛnª†hÅPŸFÒ‘ý]Tvø¤Œtÿ ‰’t;w[†–BdÀ±à8PFWxûª€GS•TDTh6¢ª"""" ÷(ˆ‡¦Èˆˆˆˆˆˆ‰Ý;lˆˆˆˆˆŠ˜ïÑbÎ$ð‡ZÙ— êl±Ð]+Ü%ÊŒ8xs\Hæ »”@ÉŒ¬®|_¨§tÚ#SAp§É" Ÿêåh $f79g¯l,wpàw4ñŽS¤«j£óƒù­Õ •Ísð0ë±Çªôô×ø¿ÃzhíÕQß ¦§!Cv¶ÊèX¯~NœªxŽˆ©ïþj¿T9ÇUâk»>¥Ñ—«TM–+ÔÎiþÓæ ÕΜ¬©°êËEÁ¯1ÖP\ {ˆý—Ç(æëî ÛNw ª¢* ׎=:ë®dºX+¢ÇBàß*OâÌÿ‰gŸºÌ^4ÇIOQÍ=š KN×þï.N°x椫·ÁÏqüÖ±¼^=Ç7Ø;çùlkÜIÛ—8èHú,HÓƒ•yðA]ø“®(4¥¡…¯©>eMAn[MOÇ+½†p=I© jZzÕCc²ÐYmв* hé©ØÝ¹XÆò^ˆUî‰ÙPÀUTÝ=S(Š5ý¢mwú¶îú‰.:bÕ4Õ'šjLÖNçŽóÁ÷+k :BýYYrµÝ¯Úê©$Ÿy¨5Ѹ‡ã™s s°7>òÇpYxñÀ¨ªç ¤§ÕzfNWÔÁ=LlcG)Y"Fa˜h òŒƒ…¬W÷é}{C¨,­<Ö›€ª¦a1-cò#q÷oÂvî¶“¦îÔ7ë ¾ùl—Í¡¸ÓGUNþ…ѽ¡Í$v8=¡òDB¨Nà-]ñÂ1nâÖ°…¡­4ך®PÆàÖ§E³Ë[Ý%º–Içt,'2Z _J"t )}¢ÚhUh½9«"`/·V¾ŽgsÉ3y›Ÿ`èÇÕÊ>xPÖnÑ\m°TM0ކºoѵ„¿•¾\ØkKL6O-Ù=è¶[ÌâÀoÜ­VøŽ¨5nÕŸØ"¸>µãœtôÙcÅ;~Ï} ³CVñ±ƒï·©]GFí¾ X‡è](p ö‰¸î¥KAw÷\‘tÒI4±½ÓÁä‘#šÖó–‚@wÔoõ]ȈºÜòNÀ㺯3Z Êâ_Ì6ü×(ÉvsØ®j.ý£un…º~ƒ 6{טF2~$Çýe$¸cò[YðûVÚÎèiÛ’‚Ž3îYX‹J¾Iø†7Zÿàwê~7ñËh‚ oÕ–;Ý;eÃ[癘öätÜ´ tßÐ/¯Áß 5â½Æ]Q¥®vê;u¾hå–²Ñ4N^Ʊ­'gž~Œ}ç}5,MÈ‚##ÀóÈ9Ÿ€IÆû,âOýŸ‰_lU0Xõ3æÈa抵¡»5àÊð@ÃÇl‚ØŽž´=ö—Äõºßy¶š› U•‘Te®å 1µÑçñ‚ùA`ål ËkœÞ`Fzƒê?5ȽÝ€~?tø±ñŽ–ûKŽõ¹’ÊÜÏäqÇo‡Ëé×u(®µ4µõ0O$RÂö¾'±å®cÈp#pG¨SÛÁG¯zë‡w +üÒÖÕØê› k¦òËQÏîq$¸n3ž˜ôYì´–Ùé•®OöáGâQÆÆ:!(§œ‚îb âÓo’šÞ$ø|Ñ. c@µµ¸nqâ?=–G-µôÙk§ÆÍé|Fj ³jࣨ`ÿõvFŒeyÞjþéâ#HÉ+œÑ-D°‚Þåмùál†ª!-3à9V–žýA¾j*ýQízò!!sc­¤ˆe¼§ál£˜ŽÙôWŒ¾ \¸™§¨õ›{¥¿Yb‘¬¢s¶«„üE­ÿÚ2;‘è 0¶WÓÝf¨¶VEqù ¤};ÄÞiÙ­äÇ71$1ÝmÚÖú¹­ôÒÜ)Ùd±ÓÄÇó69 AsAîÈÊîg$ª8 †‘œìrµ…Ç=k¬ëõmÇMê›ÕEi²Ü*©ãˆòˆã"B pæ98î¬ý}¹Xõ îÕVi.R‰©åh±ã¾ÇäVɸ_ª­KЖY £}`ˆS×Ä:Á8hóŽÀç#±+'PRÅŠ Hl¥¬ji)Csàm #CprVÐX03²Np¿<.êš.&ÇGËxªÓ·nzˆ¥žPÆ[~(¤qÉ-ŽS»ˆÛr 6g‰ýþZ4&¨¸¶á[Mm\­Íšfå¬g”r`¹Á;g Ň3Ëq궃á¢â.ÜÑmy%¢r]×1(ÿÔY ùª¢"""""""""""""""Tù5^êžê¨ˆqú"""""""`g=Ñ¢*`zŸÍ*¡¾ê‡=º®'<¤ãPTñç¤Í«Š4Z¦–ÞøéoTcï<ĵõQN\tËk¾¦ù—Àæ­}˃‘Yë'kÿDV¾’å±7]#|9ê6õ –zFÉ ?ôfІ;ÌèvËCvÇãZé‰Ò2p2æ‘øO§p¶«ÂR5§ ôæ¦æç’º†7Î@Àó€å“nßvË[>%DƒzØHéyŽ×ØþKƒ‚ì¶5àzY‡‹4¬¨•†zÇGÍä ûöéø¹Ž:ç+>TDDE<@ñ&›†<>¨½rG=Ρßv¶S;ý¬ä’?q ;厤(™ÀKOxÓÅêmOx¼ÖÍo²U¶²ªáVÃ4V¸ÓDÂy<ÙÃ@ =p ç¶ÑÅo¡†’ÊöFÞVºWó8ï꾇ëò\^îVH?ìû/¥­  ¹ª"ý¤õiýHêê¤#?ºÆÿX¨TØZ—lR¶cÂG§4/†íqÔ·jKM!³S½¦g`Èç°; oâqø³Ÿ^‹ñÅõ58’›DX77(®ºç“—â&¸ìz¸|ŠÄ~®šÖ_—+†ž±ÒWݪéguTur£§†Ia/—®~[†ïœ€§ÝÚán¡ò…}Æ–‰Ó¸¶Q;c/#³yŽçØ{.ÚŒ3LiÙQO3ÚÎoÕÊHÎ2@$…Ê«Í{1œ ÛŒåuÑ[h£®šâÚxY0åtüƒŸ—áæë†Ý6_q òÊ¡ÇQÓ”?ûJmîu«DÝZÓË õ”Ïv;¼Dæø¡Å+Kâ.å»>¼ij‹'g¾UÆûý{ª!øŒ-¤üÜGMº‘ݧ¨Û®2µÕâäÄÑHÁâf›”“c Œö¿þj/Sç‡oëÑlkÁù¼:Ù#--1TUFìí“ç;§æn ¸DDDǺ"""""""""""""£Ža²e3¾;®,Î1ÏÄ{.C*¥Ã%­®ôåöóMškY\tÍÂ.bÙ"†:ˆe$l$ŠV@#öKNç®ØÁwÞ7q;„—ø-XÓt7kuCÞÚKÅ´ùykHÜ7%¼Øp%‡”úegÍ­4Ö¹²6ï¦n°WSì$kN$…Äg’Fuk¾}zŒÕˆˆPtÙP•Bïÿb®Þ¸T%0vÊŽ¾>¬â¿ƒ´w1)Ö»´OÇ)!ÂF:23ÛÀçè±7€;å5>¸¾hÚÖ²Z{µ¨Ž7Œ°ÉÎã¦y]œû)¿O¢ql¯fç8Ç¿Sõ%wmŸuD#Ñ3ºÖå,ñkOtµô×bË×àÿ.V²DDCô_=u%5u$ÔU”ñTRÔF覊V2F8aÍp;A ‚µ©­UVMAq°Õê‹]\ÔS`c.‰å‡oð©—öëØ+´Ã‡Õ³±µ–éMm ø¥ç/hØyäð°º+·y|¾S#Y͈ËF@Èß¹å,?P°›.Á'ÑlÓÁ˜žôŒq8c˨qæ¢R‰+1 ‘$à[MQâc“=þ|Z#NFùò<ÈùˆkXGGÊG1=˜Þ¹åRÏMØ,ÚnÉ—OÛ)-vúqˆ©é¢ cs¹8I;’w'sºûÜ: ÇËq=NåvFÐÆŒc²äFñCÑB¿´žI?Mhˆ‹‰ŒSÖ;—ßš!•'~>2q…‘ô¥·\qRýCa´ ‹ÍÎšÞØi㚥­d4е ^CXÁðŒîõ*]p+Âþ™ÒÏ·j-jN Ô ‰²Yy]EI)ò³ý£›’‘À1Ÿ†«Ûï>35MÒ8ÜÁ_ Ä=¦BpÖËNû°mïì¬5æ?w–3Ì>U;‹€Ì!ß=ÅÐmœ¬=¦µ=ÛOß)ovz™(«¨ßæE5;¼·´wˆØŽ„µ#q‹JYïÔòFøn40ÕµÇâÚFcÓ¿²÷aacy‰îvÂçÝPí¾p°ç‹îTñƒµ”v˜]QxµLÛ,tÎcH|@u%Ìs°W… ¼5ðzëŻŊ ÖÛ­4B7WV–s–ó†1½Þ@w]†>Kek]šÕIhµREGAE !¦‚6á±±£ è¾¢z®ðšoº–?+”rS¸ƒžhÎÊXp§[èíá«GݯuðÛhÝl†)’YßÌK›IæqÉÉì3× Uø¹»Wj(-:WAÅZúÚ¶ÁCÕnó¦.Ã[³Z@%Ç=ð?5l}¢ðT6í¡î5PGDöÚˆ¥ 7+Øøœæç¸M¾j(ÓTM ã…Áì{\×4A Œ{…1¸âjªå~¬´q:²m—'–STýÙ­là²Lcõ@mœ3¹ÇOŸìõeU»Yk›á…ÔÐDÉHoíÅ+Øw#8ëü‹ã‰×ëøt”ö£mŠÈñQO ”¸Õ‡µ¥³ 0p|ž…GÊ]IU7Ýá|ÓÿTÎcˆÇ_€~ÏÌwS“Ã7iõƒ-:3SN£’'¶ž¬|L­òØçüXü/äc‰'cÊ{œ) ’{>j™ËÍÔv;6£´Ëk¿Zhn” >ž®Ëß áÝÁ‚7ebÚß <ª|¯DÒÉ#¹ƒ ¸NÛ—–ãn„¹Y3MØlºRÏMe²Û¡·Úà{…<Fyc2Hç¸mÑ¥Î'Ð,Gq¢ ŒM#4S×Á¥ë]PÆÈÈß4†L™$ëéì³ `Ç©*}¢ô4pͧ.΅溦ÓE(qÃY¹œßMüÌýD£w+æ `ž.«¢„Sù_£îu—ó“æ—&qØüxÇM”€ÆÝPŒ1誈ˆˆˆˆ¨óº¦O¦¯±ÆëˆqsI »ç%Aèrª:uUS#>ëÉÖ:rÍ«´ÍvœÔL­¶WÇåÏ ‰FáÁÀFà€BºÉ­|6qr)­W ]O;ûmsØ<ºêaËÏ £¹iå²× d)—Á,iÞ(ØM¾Xé®Ôì~·9ãÌ„íñÕÑ“ÑßN«!¢""*’d>ã*ƒvƒ‡ ö=•Fä«KŒ:uÚ³…ÚŸNELʙ뭓²ž'cŸ˜·=>0ÓŸe<']Ÿmñ¤'á¿y™Ô¯. 6Xž1¿|ãë·u²vúયÑWè¨zt^&¾» ‡¿ÞÜÿ›íµ[uø#s¿Ék·Âe;î>$tkgGýâyÝÌ29›O,œß0Gæ¶ZQqp¸P Çݦ8´ÝQKJhÔÃÌsØ6m[p%v.ø_îK½ º?PÜôž¥¥¾Ù*䣮¢•²Ã+Aî:´Œ´Ž„Å\~"uÅ75=.©4Â’á=L­…‡1ù¬ËK™ß¡§¦1ºÅÍêÀ¾ÏÝG5Ë…•š~bKlµ †ÄѦGþ >'óóç¾9T”t ¨ˆˆ±‹ltW®ÒÓTn7\[)peþµÃq‚Ø„„Î \¼&iô‡ì`Ó±•·X…Ê­À ¹Ò€X ï†r4|–Z)ÝC• ~Ò7çUhز>—ßyÿ%¢§–ª¡Á³O+Ã#Ž6—9îvÀ7$œ ³Þð#‡8½Öœ¶TºèÖ:6UÕÕ¾WF× 84d4g×Y?8c®TðÈÈcñze3Û<-}׊/-ÃöFÀge>ÐÛkx}½¶Ùc7ª Øb¯¬ˆaΣs\ÀdñaþPî=”Àã}¿5µO“ ¸¡žô+0ßáŒòYa¿ñMüÐ8FýÄŽ(é×ÑÓjÊʪÖÄù)æe;¥cùoÀ æÀî1ŽëÕÑm'|µ>á£k-UTU3:¢gÐr Ë'ÄçHÖà‰ 9w0ÏUï|lw=þêxòŽš›ñTÂ$tÒÙ táÄ‘Ì n3Û”ªµx?ÂÝÅêÊ(áuU¾ËIJ"ý-] †D×"‡#vK¾ù#¼Òàô— ©]=´Kr¾LÒÉîµmkšyI€lÆe ãsž¤ì°_ÚOÎ¥ÐU"?ÕÆûŒnp;;îĨk¿%as]xi;8¸ÛÕO*_ |=¸êªMUC]]o°ÎÊjÁeaóÌ~'°ÊIw#‡&Àä|[à€-oüßñ“Ä[ÐÅߟ^adx h-™£°äxÛ•ããW‚÷."Xé5V™‰³ßl”ò2JPÒd¬¦üa‘à^ÓÌZÞüÄ ð ¶ZæŽý~Eg”·Zž>Ø*m–Ùk™Bf}T$2–'ÂøÌŽ#a³Èõ$-Ї{vVGøCÃoõÔu“Ç$†š'ÓÂئsc2‚F\ÐÜú–Žê6[|c^…Pý)¥-ˆ3qò1ÅØõ9Tàçôß,¾Ï3"­‰£ï–缩ÉïÚaìá±ù‚òXR×EñUC^É˧:V²'0µ±²zw0rê‰NFÄ`ufÐÉF´ÂÊÊ|xÈÉêzÊ Æf$;l©ÏöxWy¼8Ô6³¤»‰yÇâw™zü¹J“ØvÁù¢""""""""'Í#Ê"""""*<àî¸FH9ÿ%Pïe\œìr>J¨ˆˆˆˆŸDDDEfñƒ‡v&èÚ9|g!wë)+Àe¤”t{ üˆî Þ-:û€ÜGwMm¸E#Â&Ÿ»ÖÆrXHÃÆ C˜wÁ PpÇÅf’ºÇµ¦–Ç[€Wnš•çÔòåìÉìAÉ =é½AbÔ–æÜtýÞ†éHì~¶–fÈÐqœ±Ýzhˆ¨ =±óUD(™EÄŒoºÕþ¯¡©áOkiá§triËójišìh[+g„õ;:2ÃŒçu³è¤d±²Xž×ÆðÇ4ä8~K±ÉbowÛ|:jùc.šiGl‰§Ž3üT3ðs#âkIHâF]XÞ»dÒLó d£¢ª"*öV't”ׄz–Ã%©©}“Ð áͪ¥ð{|`Ž ‘Е¬O`¾Ø$·:ë@úVÝ("¸Ñ8[5<£,p#ob:ƒWƒVâîLŸÙü—KFr}7S?ìç¹Ô6=Gj}\1Ò~ªF@qÏ$Îçˆ٠2<öÈõ*c4“ÕrDAÑDïvºÎ$ñ«Gp↪8 ¦€TUËÊ]ä™å Üü¬BJ•´ÐÅMM=ûsÐZ‹UXYVؼªú;‹ù!s7Œ¾@#q îÀâ}BÁZÏÁ•’ë¨[sѺ¯ôM𤗾šh O’Ò2<§‡`{st©R—JÙétîšµØh°)­ÔqRÄyCrØØÀœezŸÉ§.:6ôP«í¢u.ªÒ°ÂÖÔÐÔÒºAëØà?'•4¾¯¼X.Ñ\­:Ë}d[6zyŒrcÓ#¨ö;-Œøe×SqƒöËÍÆwÏtÏ¢¸Höµ¼ò°þ,7Õ¥§ ß;,š? $Qî 7Ž®vqê§/w+í¥¡ßãzî?5$üÔ¶&9îy§©¬‹ç” ™Û,Ò:wQ‹í¥ü,ÓÕŽi2E}5ÙèM)#ó`ü” !…­i9üÖ׸Ksžé¯3\jì´r¿#˜ÄÞaó#è¢m¢ª®‡Çôr¾¤™*n-IÍ–Mn ϶ZöLë…Ú×lý!q£¤lQù’¾yØÁzs;˜Œ ‘ºµ§á' *ë&¯ŸAééj**Åt“š&¾Pyƒ¹½ Ü·¡ÉÈ9+ÜÓ[Né(e‡Liû}ªž¥íuC(âZÞV»” €ñÝ{nnFùöè°ß@ßüšõ<œ ùrP¼œ¿ëŒù­lIPNFvÊ÷4Õòãmœ>†®¢šNNNxetn-=FZADzš^-êÍ']«®—½G÷/¿>š‚õû¬Ìk_(cÁøÜæó4–z+ûLÇRï1¾ZVÓCM£$‚²2kcøŽ À%ŽÀôf‚:”[ûC#®þÚ¦‰£îL©çŸ“˜coÏuaåk€8.Ïb§OÙíme?/·VT‰]_s̹‹Ëf;ç|çp:í•'>¨ˆˆˆ€ÐaDDDDDDDDDDDDEÆBF1ê¨3·\*·Óꫜì›eU;"""""""&ëÂÖÚSNë;Ö=Mk‚ãA7Xå´ŽŽk†ípõ¨Å׺)%¸ðâôË> …²å Žq×fL+»lþ_ï,ZÍyÃ[ÿþu£¾i{”N’x ðN diå{vvàp}ÖXáÿŠeCyu6£¥`ø¾òÁÄgÿXͳóiRs†|áþ¹|tQWºÑtpÿ¡Üq9þÄŸÞÃ!ßÙ *Ït=Q   Ó¢¡éÑBŸ´DÒÐjË.´¤cXëËM-pkOÇ4L²c>X ø2¤… P5GôìÒÎɪè!ýQ‡àa%æäÀÓ¾çªÊ¿3…ULüÊž7¿ù8j³ð²z'Iìß½D?™Ð׊+­m:’ŒTZë#ªc”îÓóUµ=/z Ôzzß~µÌ&¢¯§eD? †p}ÇB;½$DEÆ@ pà;FÅbN*ð/IëNPhÈ`élôþ]ޱ¹sé\€×’èÝÌ;õ ­½]§îú_Qר/”¤¸ÐLa¨‰Ûò¸w¡`‚6 ‚¼…|VÍì1@ùçÜ9å¼4–¾'ƒ×¶3·u²ò@$çeQÕUdE‡´eZŸ­Lú}ÞÛTc§Ìä{è!ñc>ž˜Y…Ñ@_´X§ã…MŸÔöæcð8Í1Á>à‚°F†¹ÍaÖ–+åé-]«µ]'¸¤ÏºKý?¦ãåÚù¿ÚË9§#o`íðvnðƒ%?Šýq½óIFÛuÃÊ|„œÖS689,OâçH£î5Ü`¦¸ÕVCxˆ]ã}Fò7Í’@X]û@9ŽÁôÀí“dhž!ê½+p†³N^ë-³Dy¹!˜¶'û=™åp>à­—p[[EÄ>Yutp6žZȜژC²#š7–HÑíÌÒG± ôùEÄÆzû(ëãëGVj>Ãz·RÉSQ§«ETͤ¹´Îil®À<Ž=ƒZâv _Qçäo‡uìçû9ê9ô©¦È-ŽìÇ´ŽŸ#;ÿ…J@×óØŽ˜ß?5 ¾ÐÛyƒˆº^îOÃWh’ŸwŠbìþSÉe³ú¢¢^]éåɆžÿ+!>Ð@ò?Þq?âR+¿åÙFÿ´."î ZÞy5ó‚vÿšQ8—rg#;-”xJ­¬›ÃV‘«¬/熖¡ËÌqÔJØð?¸ÖüÆw£¢}ÏÇœ”t2ýÍñÜå<»Êt6òä9£oÍ`m©5ãT\«uL¯žù$¦:÷JÖó #à vØË€Û+‡ƒÜjÕ|8¾ÃWl¬–¢ÞÙ¥q‚Vc oF;Ñþ3‘²Ø· µÖŸâ&“‡Ré×Ni_#á‘“ÇË$R7ñ0ÁÆFà‘ººHÎëÄ×¶Í=wÑ×[^ª}Î*)ø-×Rè~!×è=Jd ‚å9¦0Ì?è÷?Ëä8dó0öÈjœ¡7õ^N±°[µN–¹éÛ´aôW*gÓL;€áŒqÔPµ}¬ô½×Dj뎜½Âèëh¤to.õŒÏÁ#²á‚ ’ø£÷;”¼4»Ôbš©Î¨´>Gí¸ÌüŸ»†ãâëÍ´Çù*¡è¨ -ØqÐöUB¸H1ŸuPèÝÎÎû…²¶k¥“€öø®”RR¾ª¶ª¢6HyÏÃ\ZwnyIӺλÿØ›ã¿Õ;ÿšòõÞÍd´Íp¿Üh-ÖæŽYf­•±E¿b]¶þ‹Ñpƒº¢²=UjÒºjæÇ—ÍBðêi $±‡Ÿ¦Ë%ÛmÔ¸=¶†’ŠåÓ@ØØ4¾ÂAÆ õQ/í£‘ôº¼Ç˜ašº?ÑÏl.húˆÝù/Sìô—›Bj¶dr‹Änhßb`fþ¿ï²”#›¹QÏíÿôFÒ2 þŸ~˜ý\ßø(ÄœÀu+e¨b‡Ã•¥ŠhëÙ-KœY–é'™Î‹~…¥Å„ôËI pª˜Eãʬɦë¬-”ÖTÃGY$o58]‹w9æ óû(ùâ&ÝUg㦴¡©„@ñ{ªW,®–3·«ÓõV5;\évÉÛ;|”ûû<îf§ƒ÷[sã W©0þlóy‘Æî‡¦•iœ©Ê´8×n’ñ _lÌl•Z¦0¾>qŸ)Ç¡ùuìp{-gè½gzÓ7Š{•–çQn©k›'<ä°p8{…38 âRÇ{¥–ѯª(lÕâOÔÖ¶2Êz®|—sàb7çrI 9õë"D°MlÄøê ’.f>'×°ˆ=0Gu`pþ¡“qwUÂXÖTRiû,34vs¤¯“cÐŒH7êH9XËĆÉõ¾¨n«Ðµ6ëuÚµÿùÖ*éŸ<¸f­äcˆ~À;l;9ë’mÞ$p·‡n–ÛÖ¤ý#[<âs#p§¥s q|Põ$‚Kΰ kT1„ÏÓ|‚5/¾ÎÚŠj-cHùX.SSK <Î…Žpq°öç¾áL ˆˆˆˆˆQDMŽL*1° ÙSp}sÕrDŽ˜Dß~žÈˆˆ¸½¼ÛÛì¹"""""¦S>ˆr©Œî:¬qÄn p×]‰æ¾išx«ææ&¾ˆýÞ£˜œ—7g{¸¥`eàêñFñ>…Ö0VEœº’òÆ7Ëe‰¤ObÁó\,ל5îõZRã{¢Œ·•¿ Áœ —œ^Î7)Ã^$jQV »pßQØâ8 ©©­äi<ñ—°†‘ÌnN3’·L"o”Ý6>êøÛáLÔ7Å=9J[O',wÈ¡iÌoèÚ¬Ýã¶ü§Ô¬½áƒ‹´ÜCÒÑ[.ujk| UµÃþÁ°™§¾hv;ô!f@r:~h}÷T<¤z¨÷ãw†ŽÕ¼>n«³Ñ™/º."(òúŠ7æ3mÏ)ă®9^øŠ‚ö+…E¾å‚¡ÐÔÃ+g‚hÎÇ´å¤|ˆ[4àV¼¦â? ­º‘œ¬-û½Â&ÿ²©`ãär?²ö«ë¿TÊ EG|‚訂*ˆä§™‚Hdc˜öž„‚Ï+QÆÛú+P×PŒFšªjrÜ´Ç!o`›Jï.hÜ¿Íl{ÀíÆñpànlýE%mE-¾BàL”ÍpÁ>œ¯20Ùg!œÍW#8DÆèˆˆˆ›¢ø¯w;}¢Ý5Æé_KAG y¥ž¦Qlo©qØ-fø­ÔÚ{TñÆý|Ó"®‚¥°=±:6É#!kà¹o\ ãêmÎ@Ù8Ï¡üÖ±ÚŽÜ×5Ø ƒSs궺?8Û)+ƒXç<ᡤ¡Wƒ9aŸÅ°–œ­5áî.ph­§.;“°ÝIn&q‡Bðêóoµê›¤ÔõuÌ2†ALùŒ1|@HðÑÌ\Ò$ƒ¶Åyöý/Àî%THhlšGPO .’xàa”27cŸï …”†41 5­Ø0ì0{&øÝ;ü»¨?ö‡êŠöqŦc™âŠžÕ÷Óyåt’Jö䎛öù¨ó¤uÆ¢Ò×XnZ~ñWm«Œ—‡Á)k\qŒ9½=ˆ+fÕÕZó… []M5UÆœ¾hãvX×¹„b[œvʼó¶pVñmÃ+‡ôæ´Í;îv¬UQÒyÇÊ—”8HÞF°—<±Ä7¦àn9µ>ÏÚGÑèÍ]Í’*ˆïmdHÒ×GŠxúƒÐä‘ôRQê+NŸu7éy楎¤¹¬Ÿîò:‘Ÿ#Z[s·1ÁÇEˆ»°4d¸8n~,¾zc¶]ÆùÆë xË1ÇÀËœ’só 0ÎVónè¤fþØqÝkš8‡8.$ôÎ:•"<ÌÇw³Ìhæ±Õ7«¿Y Çü9ú)ïŒo…Ë(ˆˆˆˆ¸°¼¹ÜÍðïÕrDDDDDDDDDDD9TÆØêª(›¢"""""!興ˆ¾K‘ž*Y¦£…²ÔüºO-¯>…Ø8ùáYñ‚gTQÒµñ_)c©´W¸SÉ—~ãÊ9°y^ Çn`s‹«O_-÷ÊgKFù,D6¢–vç§qý™wiëìz‚FëÓúôê˜ß8Uˆˆƒ9í„TǺn¸OSÁ$3FÉb‘¥cÚ \Ó±¡C8p“Sp“V$páÕfϯª{aËå¶HyžàZNFÛçá݉|âí§‰vBÇùT7êPYD^>#ë"ÎîaüÛÐúœž¸‘ºã4L‘ŽdŒcØàZö¸d8¸#Ñk«ÅO ‡ 8•ÉA!–Ó|lµÔYŒ3Éwšï2 ‰æäagØ“~xÕÒÛ8ƒsÑÕ3;î÷Š_¼ÂÌmçŹ#Ó1“Ÿ^Vú7~ˆ›ãq¿² =?5UG ªãËÊ6$­[x ¢î«l¼"ŠÍ ôì:~‘ÔvÆ[âBèùݾ.añsdŸrJºÓ9DDTq¯dDEŽø×Å=Â뫹Ys¨ÏÜ­±Ê$Þäàò0wv°*j}CÅn>ë!k£Š¶ë3ä´”ÁÌ£ c»ŸÙ`¾óÌqÔ•Šµe†³OêÛ½‚ã43UÚ릢ðèÜøžXâÒ@%¹iÆ@>Á^¾憟Žúó²'ƒz²tqåiéÔ8‚=Àù­›Ýnt‹|·¥u=2ÔTJ#ƒÝÎÀQwо(«+ušáEn.–­‘:ª¦Ÿ›ï¤¼*(Îc·ÎÁÇLc&Îð ETÞ0êZ¹ÃZh¬òÓT¿ëdª‹8?8]Ý[ÿhO›MÇ:ù"m?Læ‚íšÓŒAOÔ¬f¾\mõQVQÕOOPÁ†M …nùÀ çªØƒ½w×ü*5é¾ñqµV{êžyØ"í{É'.øÈ'¾3ÝfµL!ϦV¾¾Ð×¼ñÒž74 ;XOG6sŸÌ‘ôQÎÌýÎI[%ðNe>´ßœÖÏR#Ãq–ùïÜúïÖjo]‚®3¾ÁuÃ1:GÇ éÌòÆ€\}N:•Ñq‡ï”³ÒÃTèe-#ž2 ˜H#8Zýâþƒã„mꆮÝtªÓµ²H]Ul{¦¤–7¸;ãkwfàѸÛ#u…ô…-ª¶òÖ_*ª©hÓÏ=$ šFm†9ìåÌÃø!Å.%cÒ”úBÛmTòK˜_+b…/’7ÈâàíšdnÀóœàe{-êÓyŽgÚn4µ­§”Ã1†@ãÚH ŽÇ!}àç Ê¨ ƒ¢ÌÍ”8ä `“Œ|ºgÝv*£$­HqŸô?õµ¿úÞª¶6l®nËÉšÓ—7 ¤“þkmöø]”§ŽXq+(×3®Œd,áaÓÇÅŽ&ÐÕÕÉSSKGb§så?1ÓJ×do‚ØÉ‘걋øÝ/¯kC!waÑ=Ö·Úã±pêzË/øD»Miñ ¦L3GuÏšŠnq³šøœ@ëԹǾÇ‹°ZNN{ª¢""""""nˆˆzlˆˆˆˆˆˆˆ‰N¨ˆˆˆˆˆˆˆˆˆˆ˜BØô+øŒá4:ÿNŠë]D”:‚ÜÇ:ŽhÚH™¸É…ã;´>Gp£^Šâž¢°\b±ëIêìZŠÙe¶ó4.‘ñÇžaOTÀÖi]’{3–°%7x¯k×Éj®û¥¿RR€*)a¨CP7ÄÔïÿi±ŸVô=2r@7Írì€c¹DDDMѵ²0±ík† HÈ ö*$ñß‚÷ŽÞÄþNê:ky–¾¶®k~âÂç>ûQ‘ÌÏSŽmà?¬üNÓÍ|rEM|¦¦¾ˆ‡l¾=É1’@Ïbp{g%oÿr„z–ñ¡Ù«ø5_[O™u°ÒTnkrîV×3äcÉÇ«Z{()ÃWQ£uÕŸTÒ‡9Öú¦Læ´ÿY~6› i+ êÍGw¶Ô2¦Š¶Ï­èæ8dȯµ |Ð"Æ Ö—¿ÑCÄMô[÷/Yô—,š.¢9æ¸Ýë(©ád-Áhžo/ÎvÜ ú|^ž£&5§«ðNr1ÙsDî‡Ó+ øã•«†Ö×Úm/Šáªê[ËOJß´ÜÝ ÿu]òXŸ…~µ¿¹;\qžáq`¬"f[ œ•3÷ÌïÄÌl#fý[ŒI¦4æŸÒ6x­zjÇGk¢Œ´i¢ ÄãÕÇrI9'uªOuuãQÜïOg#®“U–ç82Hçãø«£€úšÍ¤¸¹`Ô÷ê'VÐ[¥–g@ÖµÎtžL‚2Þm²Ù žØÏe‘u¨â§ˆÝgú&ÓDù¨ápsh¡qe OGË!Ø»ûGsû lƒà—‡{W-’j[ícnº½”òyu1(9›‚!oW;Žs¾û¾l?³š%Ÿ^UÈAGocœFIq5wù/í"²ÁOªôv¢Ÿ[o¨¢sO@Ø$kÚG¹ûÿ ¢Hs'ÏU<~·Hxg©b›•· CÎ9~ï@÷ß»~².˜€ãÕr£ßŒ\¸©n¶^ô»é›~µFø¼Š‡ò6®|AÇf¸8góœ¢Ï |4q?Sj¨-·knš æ&¢á]Á[ו¼ÀÈIØ@9Î@ÝOŽ è±ÃÎYti­mÁÖèž×Ô6/,HçHç“˓ݎ½•Ù3ÙO–W±ŒcKžç; hrOm–âWˆþèÿ:––±ú†ãƞ݃Nq‡J~þcì¢Ç¼Kë}gæÑQTÿG­£›––Ý3ƒÞÀó&ÙÏêv­;|9¬[£õþªÓš¢–õb¼VAq€’Ù …ívr{]á‚v!l—ÚÝœEá­³U o»OP \<À†Í‹GöIö!Z|gðó¡õýeU¶šÅ©Âê{|°ù9pÌ•í;dã˜ccë®Ë¼W;w©µÜ¡’ž¶‚wÁhʆfE©èmº‚—~g†ýÒ Ç™€°€;r ú…%xiÇ®ë©"¤¥º:×rxÈ¢¸´D÷ᯱßGgÙe?dT!Cß¾¯ú‹YVëNËT—IŒµöʉDNd§ÒF÷R׸µÄzd7pßÂ÷kn´Ðj+,VªZøE[å«g;â?/0v ù»ØâxêIM˜¹OsLr¹¥§qÊÂF=öQ³ÂÅÏï%¸¸ÇLÙMLΔ&°†´ûelcÀ†šºéΉ®‰¼Ü]s¤ò¤Ì‚4œt9Ù–|æ-#áÇ_UÈuÿµN™ÉÂó¯÷Û6ž¶Ér¾])-ÔQ‚çMS(cvÀÏSì7Qï‰-´¥¡ÒRhÛd·Ùú©ÜiéÛîÑŽwþMÕEž)ñ³^k¹/—Ù>êNYCJß&™žÁƒw|Þ\}Ö<€UWT2–ž9§¨—᎘^÷Ÿ@ѹè³×ü#ñ+QRÓWÞªmšn–~WyuNtµMaê|¶ŒÙsìp¤?<(p¿MÒÓ´s껃ÇÅQZçGA!‘1À¾~"âBaÐÚGMh‹ ,ZVÓ ²ÞǺAns²÷c.sœKœN䞃Ñ{Ž8Xߊ<áÏ£­–õ§iaºU3ÿ¢´ŒU5ø¯.Œ€ÃQ'Pø5â]5­–{žž¸REŸ»Êú‡Á$íí–×ã›ÕG«ýªí§¯uV‹Ý¶¢Ýq¥—5<ìäsŽàö#pzr[„Ñf8ìzÑežøâFlôš¢¢Š6Š:öŠ˜pßG³\ßu'8_âÏI_™&±¡—OÖ“Ë÷ˆ‰š•ÿÚ8øÙò!À~ñRÓs·Ýèc¯µ×SWR¿ðÍO({Ô/¬àû”uÕÁ]$Ô³·š)˜èÞÞ™i#ò*/øtá&¾á§®7Ö2¾ÙqµÌçÝ)^]’º`á¹°æ»áÎàüÎT¥X»Åt‡_0êŒ Ÿi˜Ék5ùË\;ýÆW¹£/.ÓÚªÇ~Š0÷Û.TÕ¡¿½åÊ×ãþ-³A'Dôª""""""""'n¨©¿uQÑçuT.àý•q¾QxBÒ–ío£®Zí5d45ì ™Ô²ùr`8;à÷í¸Zßâþ™Õ:Q;Lê‰$|Ð0ýÞ ó'k·æ‰Ä Æ[Ôг¦ª{ˆ/ÀÜc*Ox××Xõ}N†©’yíU”¯¨¦ap-§™˜'œ€æç w÷%M,DPõXsÄ—m«bÇL®kÆ:ŸÙ÷PûÀÅèž.q Èê–T}Î/ Ì29üº©žSëî6ú©S54²SOd†VI†CÚF>Äl¢7|Ûªn1Tè=K%ºšIsSGso)¥û˜žÐ iÙ¯É8Ýûí'xw¥múEZô¦Z™¨­°ù1I;ƒžýÉ%Ä2I=¸s¾SÛüՇĞ.èŨ/‘ŠÆŒýÆ”yµ3»Gáõø°£'<`_«|ÚM lŠÉÈ•mlõ'Іo>¼ÿE5ž²¿jk£®»½}ʤïæUNérÉøFç`Ë˶R\o5ÐÐÚ¨ªîÒ“åSRÂée~qåcA'}RS„Þõ%ìAtâËú?C æ4¸}k†6ÄFsŽÎ=v¥— 8S¡¸qB)ôµ’*yÜÐ%­—õ•2‘Í»¤;þÑé¿Eãø¦¿9ÀQ_Mr–‚¹´­m°Ô˜¦chs HvÅç×b¢…~*ê»/,ÖH.•ÖËÝs)*hfœ¾<Èíåhqø^;‘Ôl{c`Ë5žÏ_uª4ôTòTJ»¹XÒã뀰^’ñeÃkÄÔÐ\i¯WÔ<´>x™,L8qsHzl³f•ÔvMUgŠó§n”×|¤†Í ²2:´Ž ôØà¬ÁÏ6ÝEª¦ÒzÒŠ -Á÷ 騪q y ŠL“ÊümÌ)>Šéñ)Àë/ìn©ŒEA«)!-·×’C^$C0vN2Òr22×k‹QXnÚsPVX¯TRQÜh¥1TÓÈ0æ80F#b#eÓ-U'—%DBÙ›Ï žÂ Î2ÓßÓeÂ)æŠ^fN7W—¸™«t=Ø×i›ÍU¶Sýh‹ŽA‚>8Ý–;®ÙFêPpçÆ\Ø©u¾iJë[ðNÝLúgîp;)ÃÞ"híyFgÓ7ºz·´fJwIãéÕ‡|n7éî®°sÁUØû¦UŸÆ«L—ÎjÛTI-EEž¤AÄùDnsÿjÕuKǘðÒ×t=±ê»ø^Ò>C·]ð¶¿ÃëÛu&†±jœ\mðTœHsØ Á%{ÉÙ;ª ´ÑUDCó@Î2ˆˆ©¶1ÙyúŠÃeÔV×ÛoöŠ ­Î]O[NÙ£$t<®dz¬Cxð¯Á›„‚Htýe°ç.Wš×oÜà>˜^Ö–ðñ 5x¡¼Úô²X'šº¢^Y‚×òºBÎ`@=6=0²£ÜTDOš..,œô' ©áîÎ2HØv?,«Viú]_§g±j U–ÊÀc«¤ª8þóÓ–¸ÚàA0B…š³Â'-× ã§jm7›tr¹‡Ô˜j%ap9®hhp'|lqÙ}\'࿈-®¨µ=«NÒÁ= ËdŽK¤^]T$|q–¸ ³Ñܮ؀Tæ³ÖIpµRÖËESC$ñºš¤,DÚì2=‰ ëDDNȃ Ln‹®¢ç†Hf`|R0±í=Ò0B„šžÏwðÓÆê;ݧϩÓ[IiÉÌ”®#öÙ€æžã÷‚š6+­¾ùg¤»Úªcª¢¬‰²Á4g!í##ëíÙ}¤êÇã t¯´Û­:†—–¢0MÂQH㌖8އ-;ï‚ ‡<:q‡õòÍ®}Ahæ"*ûd.“nÞdC.ŒþmÏuŒ-æúÛ›! Š½Õã–8a“ÌÎqŒŸe”FŠñ Wdý0í9¬Em<Áï{eÀ‘ æ™Ùª÷ðçâ:ñ¦nqÛu­Ö²ëa˜ %q’ZR?i¤î[êÕ8ì÷[m≕¶ºè+)ÞBðá¾ÿOªúÜCZ\z«ß:ƒúIÇAZ&‚háòiXè]ÌßÕÄÆ»^nlûåb±Õl/ì÷uaà<ÿzœ¾?Ó•?vo0>\|‘e¾ß9úû©“Øgê¹ uEĸsrçuËê¨H*q#Íðëâ:[ÞŽ»ÒÍn¸f®®Ø×`E Ëé¤`?j3Ôm±ïœ5gø¡©¨OÂ^ßñ)—{Å;i£å$|QÇ)Û¹8ö*ÉÓõV®»¿Rq‡[UIWQñKMC(’fºw‚Ö€9XÜc`Fáç4f€ ûž“ÓôvÞfòËPÖsTM¾Y+²÷Àí…uz§Q”ߺÆ^)* /‡ík3]Ê]lt]}Ígÿ)k%Ì qø±ŒwYçÀÓ¢ÿʃœ<Û*ù£¹[þY[ ¦ÞË⿊³i©4⦤3õpùçÓ'`} ÙE/:kVY8ù®«µÏn¯Þy£˜^f©/kÚ᳚y_¸Û#ÙK¬g ~Š…§¯ÓtæÇSŒ‰8›â‡Z&Ii?H›ÝɃþo!íÑÒ~÷îHîQâ§Š «Y%º±ºjÜïö6ǹ³1ìU8ÕO%§ºÎ±ÉH"¿Ö˜šik îtnáå#è¶7À=`uߴS%dô‚òìgï1~®S°æsK‡³‚°|[ðU¼E±3RX‡&¨µÄYa  æ1ïÙ>ø;tÂÞcÓꨨ@=@8õTkÒKZ=p¹".©¦‚K]ÔãeVLÇ çUXÞ»p[ë× w#m•U=ÕP«o‰Z6ͯ´uv˜½Ä]OTÐY+GÇ£vJÃÙÍ?˜È;¢6•Õº÷Ã>±›GêzCsÓ•r™iºˆçnÜÒÓ¼ì×î9ã=ðp2e— 8¥ø…euÓMWùí‰ÁµHÞI©ÜF@{{dgdŠºŽ:¨F~}Õq¾Äªw÷ù¨éâWÃu¿[š½W¢™¯T_58”÷g$¿÷%9?søºó !Âý{©¸sK¬cŽªJ†ÒFÆSÕu¥™“²)CÛŸÍs ã!™ $ÉÇ=K?†ëަžî¢sZÊwGg.ÃñË‚×5ÎÎv!¾»ÁÙå–yŸ4Ò>YdqsÞ÷ç8œ’IêJ£.Á[3ðqku§Ã¦•ŽxÃ&ªŽzÇLdK;ÜÂ}~Ýý1Û 04Œ¿UÈuÂâ÷rŒã9;ªÒKƢƺï޼2Ñît5úŽêÆ»•Ô¶ßõ™s‚[ð´Žà}–­ã¸±÷«'4Œ´Póysݦ{OÝÇ|ÈïÕÆìvîôà«—ƒ^­V øõ/«[ªu“ÏlR9Î¥†RsÎy·™ùý§í’N3‚$?M‰Màn¨NFÛªe£r@ߺ骪‚Ž’Zªºˆ`¦…†Ie•áŒcåÎ'`îTNñWÆš SÂËõ“E[§ºXÝS Âü湔͗¯lPŸö®ø2{¿pT0kˆxÎç¡ÊÞÚ2ܶËUׯâˆmïÿjŸíÛqßÕWcì¿UÃÉ„Íç†3ÌåäçgçôÎvT¬©¦£¥–®®¢*zxZd–Y^Æ4uqqØê°'>kÍzù©î™©-r¶Æ9O쿃¡øÉèĵÕ2Ìws†RÙo¬¹VÓ[­ôÕu•OC /|;µ£rz)/ÂïÚÆé|†£_ÉMc´ÆöºX ¨lÕ´;vSÊÎ`ÄI#=;)‡ÃnèîÙůIY©íñtšañÏ9õ’G|Nß¶p:Ëß»Z­wº'Q^-Ô7*Gä:ªvMÁkb5àÞ8y¤ëà«l±hž­Ñ¾zËDŽ¡©yvæHy\q¸ÁÈ·®ü2¾ÌÇS[õíd–ÇSºo¾[âºÇ póÉ/ë\æsïÍùÚÔº[Xh˜ %.·MeŸÌeOôN¶X fVˆÝ ¢˜–lv#pÜgrµÛu¤W º1Ïû½Câæte„ò’2Zwn‡p¶à‡‡’h®2ïp¤’šñ¨ÞÚʆɀæÀÜŠvã·Âç?}ÿXsè¯ß”M¸ð;[R uš¡ã'»YÌÞà-Wó0lzåO_³ÎXÿÐÝò0³PÈ÷7;€êZlmþù‚ü|Ylã¹¹²›ÚÙK_pæóDîoW|èBËßgnª§¨ÒÚ‹GËRÑQKYúBž&)óž˜hÛÝJìcâù…õ­ž£†þ,tÝêŽÌf¿Q {¦Š.X¥˜½îå(ÞBνHìH”öº†ÔÐÃ3C€{a;å¤d~j·: ¥Öë•-u CK&¦©‰²G#Og5ÛìT^⟃ÛÆyîœ;ºþ…¨‘üßp¬&JQø²á—³~]0ûb,ñ#ƒÜEÐ%Ójm-YMHÒq[NôäæFd7=ƒ¹O·U`€ó1Ù=vì½m檎xê!•ì|n® ´ú‚:–ráω¾!é6²šªéý!£gH®ÅÒ¿¦Ï™ú¸» ÙJŽxŠáþ·ä¤ž¹š~èí¾ï_ lo9# —ð’{ƒ¸ÙEöOÐüa«©Ž=YsšF9\\+ŽÃ—Ë)õ;•‚é‰k¹¶Áô[ð*Ch¨NÙª›½‚§pwÛªäÜòïÕU™©ïöM1ežõ¨n”–»u8Ì•20z ú“й; ¨Û¯|diz$::ÃUw{ZÚŠÇýÚ#¿`qß'áZw†:?¹èû\c”‰kw‡F=”©á°f½áÕŸU²@êøy¤‰Žæk k€?0®´DD(ˆˆ‹‰‘£9$Ô@üÕZC€- ƒÜ*’UçSÞ¨*kIK#§‘ŸŒ±§•¿^‹ì‘îiNw²êûãÂØå{ÆÅ­i8ùú}W&‡É—È|°zãŸã²íòã¦1ÝU¡¥¡Í9AÎUrªˆŠÃ㶦â7 .zqñÅ÷ÎO>Û3Ú?QRÍØàr1Ú}œTðù¯j¸mÅš »³IHéßo¼Dç`FÒîWãoÕ¸ô+d -sC˜AiŠåþIÕqǯð\^0Ì´òê°ÿx3o×ÐÍ|²˜(5+ lN|ñsA[9ÌÏ^ÁýGC‘²üFf¹Ñ43pïSÛª¬íed•¦sq¡ç—ž7…ìø0 vüC®BÇk“ç; iq;u·^ÚYcÐzzËnˆPZééƒ\N[É[ƒŸ’÷ÀÀܪ…cqsŠZW†–¶Tߪ‹ë'k%;Í>;û-ÏW¾ge 8±Ç-sÄêÓ`§ÃCVï" %¬=î©$ 5øÓ·ÃŒ{,…Á¯ WÃ`¼ñFi­´…ÁñÙ)dYo:Fþu»û‚¥æŸ³Úìj[5–ßOo·R3˧§¬c}€õ9$õ$’w+.t”3WWTCMKNÃ,ÓJðÖFÆŒ—8€º¶ô®þ›P¾ól¶ÕRØžìPÕU41ÕÍÉ̬fr";r—`»$ã&ëv^½Õ¶-¦ªu¢­e-?ŠWyc`ý§l?È£Ö›¤ÕÞ&çuÛSŠ­;ÃyÿÕm°ÉnÎi;¹ýKÀ¸mœ†î OŽ -¦ÅáÞ‚Éf·Cn·Ñ\éÛOOOú¸£Ü£ñ—œîI;¨$#çv¾ø AøæÿO.ÃK€²Ud†“Ž/m¾¸ëô[’Þ½•9ÚÈÝ#ÜZ q$`î°/¼Ph½!ÏoÓOT][–¹ÐL$NßñJ3ÎAÆÌÏÌ(oÅÎ2ëN"V_îï}Í ?«¥Œçb#â#³“¹Ü,qQW,®ææ#²àÎnBâp3’IR‚^µž¸ò.Zž)ô­…íçOûÝ@Üa‘Øï?@pS+†\áß^gÒºr+‹];Ý=AÛy<™CyAôWþ=1º¨ù§Ñçø•C³ºµ8¹ª"Ñ\4ÔZ©ÎÖê$ˆ€éHå¹í—–ªÖ' 4­O8¡fÓN¨™u®kj&üN Ýó?܆µ‹E ·ÑCodLd4Ñ6(Lc‘£ ;ä=W‡ÅºwUð³VÒÆ×>Il•mkà &`{-L5Û´¶Ê{}ž1ÔÅÂ+ÔòÇ+"žý'’çÊðØ!k‹GLdc˜uÆ?e[ßhåŒI§´Ž§¤šz™­ò¿»¼Æ·é˜ßù¬3à»Q ,-qšæÙ-ÒžlcÌfYÿçÁõ[Ù£ ñ‰§a»ðNçxLúý>æÜèŸ ~6=¿ Ô|!§™ÝviÆøY†r‡èËKY+&ˆPAåM|¬{ M--Ûq‚=z+”tÀÙW”lwÏÍÁÛe…8»á¯‡|Í1á-ÖóÂè`¼È#­!Ìæ„ócrr7?E#†ã¯ÕÀêUBwDDDDDDDECÐà¨qͲ©Œàc\.a6Tnq¿^ê©Û™Â""ñ5®’ÓzÒÈlº¦ÓOt 26_&là=½ ƒ¹è{•Žn^¸+]Xú§hæS¹ãâe5dñ0ÿ…¯Àù .ý)áǃºv°ÕÓèêZéˆ-âãTÀÁø$Ë>¤edûU¶ßj¦u5¶ŠžŽHé pF#g;Ž\îV€2NIõ$•õ¢""ëž;÷Nw.ÄDEÔúxœâð \i§ø®†RÒÑ?0ìÀWtmä`o\EÑu ¦¹Û§ ¬kÝì1È#£vÁÚA0T9âï†-E¤d›Rð²åU]o3>‰ó˜ëb;åÑÊ1ÏŒž¤w+ ¤î)éÛ¡¡­ÕÚÎÝ_Ó×\ª2Þã1ÈâÒ>„óROÃç‰#sš{ˆ7X&xÌi¹b?¹7FŒövÃÕIØ*$’LÁ ÑH™$Re®iz‚»ã¾)YŸVçùev5áÇ`ìz‘æ¹uTÏ·ðUTϲ‰~0¸QYYSÄ­ouEKþ+ݺeÒ€ûÄmw`|`nïÅ×9¯„Ž?ѾÝnÐZʽ‘=Z®S¿ sF ž„~¸õÀzË0«ÙSˆã·Ô.©;€Oe¯Ou±×ñƦ3<’KCG (a–6†6MŽ{ºG¨ð¯ içêŽ(é« Ïe]Òägàçyú5®+lq‘“€ÉÜ.yGòX›Ä/¬œ*µ¶˜ëu dEô”|à oO2]òÖg wq‡o‡|/â?ˆ AS«ï× ¨m5æ[½TDº¡¡ßÕÒ³¡k~&‚0Á‚7 …0xSÂ= ÃJ@Ý5gµÎg$×*œIU0î ÏAý–àl6Wè ']º Â·µîµÓ:Ìë¾§»Ó[é°ï(=ãÌÀg’6u{°:ƒ´ÜZ‹Äuá·­IKSfám åÔv²\ÇÞä!Hí±9$$m$ôt°ÒRÃðÆØâŠ6òµŒh4Ѐ¾[åÚ†Åd­¼]꣦¢£‰ÓO+ŽX7ïß·¹PÚÞû¿Š~5Zkit Œ²gBŒs|¢{Ë#ƒ²w! ã¢™Ô4t´0PPA--,L†"hk"c@ c@Ø,ãºÝ_[ÀʹáˆËKEWõÙñr‡зâÁrAZð/‘µ9Œœ´ü;)UöyYî/â5öòÚ(!´ýÞJ—ÀOë#cÓ8k‰Ágî*xˆáþ‰t´tµÌÔWh݃KC ,Œ÷ç› þ—7Cþ1ñû[ñÓÑÕÜm³H ¶‰îdNo¤‡¬Ÿ'mì°ÝEL’?ó_9æÆO¯R³ü<ñˆ¿v­‚ÚlÖ9™æ ­Á¼±½§§–ÏÅ&pp@åõ##3s„\áßi"}ž ½Ù¥®uÒá e˜< f<ŒD:þ÷Ü••¹I9!rº¯uLämüUq²¡ùºª‹_h~®u»AÙ4e4¤Kz¬uMKZá¼C\:àÈööeZŸg–ƒ‚¢¶÷Ä•¸>J'6†Ó;ŽC$s\jH¡®¼ÞŽxõS< °“yž'[nÐTS6vÃH÷>'òòÌÇ1ÛváÍ9ôßbµM da'×e±Oö÷Rx|·O‰1Yp¬¼Ý0%1ííú¿Ï+Þñ_¤]«ø ¨è¡…òVPÃúN•<ðüDÔ’ÎvêVº4Å]M²éIt·’ÚºY™WLᑉcp{z{´-±iÛµöÇCz·KæQ×Ó²¦c±íŽûŽÅr¾Û[v±Ü-rJø›YM%9‘Ÿ‰í-È÷ʰ|9]g½p®ÅQP)ã ðˆàxsYÉ+ÚHÈ nË&n©Nè„*c9ÇÕc/ð/‡üM¨‚®ýn–šáhûí ›Ï`ÀäqÁænzgeøƒàº²*8$ÐZ••µ,ûÄ7oÕŒŽNG1¤g;¶TYÕÚ^ý¥ï6ÍAi«·TÁ3¡pš1®p;ò’0áŒGPAî¼1œs íÝH üwºðæÐuíu~›’ny©¿ÚCŸÅ$g÷ºe§cŽÇu°m7{µj-5âË_uS⚇=6èGB:ƒ±^Š"""&FqÑP‘è‡=ϧªª¨ˆˆˆˆˆˆ‰ìЀޛ ;tUDBˆˆˆ‰‘œ"*g檊Ž8]G$ä ×&‚\:l»ì2ˆˆˆ™ÆwôB;V ãW !ÕÖybކšóI{(êäòåŒàíøË qåõ8Qs^øyÔ´0ºç¤).b>b?DÜ¢å¨g-ŠAðËÓn…ݲº81ÇÝUà öØ.ðÕÔZáÈ–Ó\Ó<²á˜÷ê0Fçe/xaÆþkÙ £·]~áv ¶ß^<©\}OÃ!öi'KvUëÕ22ªyãφ‹.°«¨Ôº*J[£{Œ“Ææ‘K\íÏÆõo'öÚ{‚NU‰Â¾4k~^©tmVQü0ÓÕNÃ$±ls1ã"¦!‘øIplã•KÚi¢©§Ž¢žVK ¬ì9kšFA¸!v¨zw+†ØòFpµâÊá%ÏŒiåg”Hkq‚G3°NÛ“²ÃÌcžì4d©àFÆËhj‰ÿèE¶ª¼‚2 ˆlÿ¯“ô[†ª–J¹)cƒãc\ oM§\¨åâÅ«IMS§49Šé{á“׸ÒÓ»©kwýcÇÙêH aÿ œ8«ã'îZ㈵—k=)/žz—žJêÒ[Ëí5­É-ÈÇ zÒÁ4ÓÓÅ0ÄÐÈ㡬c@4°m…ÛÛeUMñ×uø÷â;OèMfÓ¢žûŵ çÿW£Àÿháøœ|äo’6p“…:»7è8ÆJŠÓf$>‚Û&XkpA õPwÀÁ^›™{IM%,T´ÐÇ<1¶8¢¡­c0ÖØ1…Úâ2pê}ñCÅ;§µµ t#LöÆ\ na9¸Tä´¸öòY’GȸöÄ®àw¨8aú-/G#g¨5õA¸ûÍKÀç~; ´Ík{«ämÙyº–ÏlÔ6*Ûæ–:»ut.‚¢ô{]±éÐ÷náEn(pc÷ lSÜ5,÷úŠª˜ÞÚ*WT<–òþ­¡ Üç™û;ô8'ˆtÑÒœÒö¹¢•2QŠªŽAø¤˜ù„ŸS‡ôY~ëÏt¹éO•W Ÿ–ë6³ºGi§€1ÏÙ´ÍŒ<¼| ‰)ä¤çç×û’Ô· é‰ÁŠwÆ@ßð¸ò[4ð¿m¯º&—3žÖÊœã>q2çüùÏ~«%mÌNË[>&¸} x±WCE•e¹ƒ_k lq½ÇšýÇduÎ Ou-ükh5W ¢µò†TØÜ)\G0·™§®IÜç賞sì=U™Â}5”Ó¢¡¢eMUTþSj<ÑñÔHæœãrA·§eyç¦A€o±T>ÛFU·æº+ji¨©d¨ª©†žÆ_$²5£¦äì;,;ãV(á·UT¾d–ÒˆdsœÀú¸îRw‹Z£»ïŸEé[a|‡H×eíïÊw[ðw¨]|áÔŒu¶–•°ÊÒÙ!­d¾iä %ÑóD~„z…›û¢{"""""""""e0¨2ƒ“ôT»~¡rÆÇeTDD^%ëTYíUÐ[ê*Øêê‡rÃKÇ,‡Ù£'w8/b'¹ìs 2:¡sßÑS' (2}B©v1±Âª".¹Hé‘ù®ü-9ö\ã>øø{dn»;¢Æ:šçQ§ø´ji(+*Ÿq·FÙËg\l‰Î %®;é\ ƒÑd+%Ƶ¦šåN×6:ˆÃÃ]Õ¾ ûƒ²ûU]5=\‚ªMºµã#çó÷X¿ŠÜ(³ê{{›-Žšðyj]úà9y~ ¸ësìTiÕ¾e&JÍtšŠã,ÌÓ×i„sä4;ÈO7?0øy€ý¡…’<0qΨֻ‡|M¬–ŽóO(¦¤¨¸2gI‡ Ä·Âç‹ d’3(ºö*ª=U@CœmÕSç…çjŸP[ÍêÝO]MÌÖLÌò8tsOV¸vpÁ—£C3¶ç%`:!\]Ð9Àànp«¸Ø.sñö˳KjÄüá¥íq¸s³víø\:Œàî¬ú8Yˆ·$•-¾Îj 3wÖ÷7@W =IŸ‰Œ‘Ó¹í3dÿu}þ-xå&ž¸ÝtF’­×Mð\«ZáŠ_€4ÓÃèìd¼ö; óˆÝÁ>ßx·®éìT’*8ñ%·¶’F]¹q;5½Iö›h3eÑÚb‡Méê&QÛhcòồ¾Kœz—8’I=I+ÙB~X÷^&±ÕzHYd¼jKµ-¶€éž¤ g•ê÷Íh$¨qÅÏš»_Ü¿¢œ<£¸ÐÓV¹±A39®]È%™äu =˺«ûÃ÷†kT”Ú«ŠCq»‚%‚ÑÌ%§¥wPe=%¶íÚê%01EÈŒ5¸½%’‡ýiÚ—²ç_79âÝÐÂÿÃÆüòu nÞ ÙðÁ葺»SÒƒª®1~ª'·ÿ¡´çý˜úÇ Þ{lÑŒ;šB€}WËx¸RZm—Jù¼š:8QQ/!w$lisŽ$à°Q;Œž. m ¨8mA(’Vë¥Â.^BGû(²r}ß jmMyÔW‰î—«…MƶbL“ÔH^÷{oÐ{ ‚òÄrË3aŽ|Ž8kÞgõYçƒÞ¸…¬ÚÊÛä'IZÉ̸Bï¼È3¿$8|ßÊ:c*ZðËï ´#¡¨§²6órq[u"w‡c«YŽFûa¹«.26µ 5¬ƒ@èUåÛl*òûœ*·m¶\¾AUtÖTÓÑÓKUU4pA ’È÷rµ$“ذͧ‰Ðq_ˆº;Fš‰tí¶'~•»² a¨æžS ÆÇ|lø@æÍ1±BÈ¢`cÐÖ·ÐÌðšÖ޵ÐÚÖëâ*köÇqmÎ÷¨æ¹Ô¤²x1q™„|.ŒF $Óœ`©ËÄŽ6ðÛ‡²Éo¼_c’á D‹u<ù†0oÃ9Ø<·`½Žk)8ën°u(YrtÏŠœ<¸ÇesOWa œm¾Ë x‹­¤·q ‡ºŽ®¡ì£¦¾½¢7”ùÕ“$„¸vi~ãç©!={œÝQtkälœµ“æaÍwÆrF:ÿÚ¶sÂY ÓüÑÞêèíΊÉEtÕ k Ä .ÁÎ3²ºhïvJÉ›%êÝS#ÀådU,{òî¬/ü*¥â·§´4ÅOz¤.žÓU <±ËÝŽ#ö)ôØàã )xNµqSJñ¥¶ K=E©íqý-Æ#‚XX~&‡†8s’Ç ‰hß ‘Ùy:^Ák¦þYÄ{Á vI9ß×=×®žª™öCœm…Aœt@1·ù(áãêã¨hxWGMokB×ÖŠ{£°Òs³ânû็qé¿P¼]1YQÄ?WŠ{•G›=²ÕS{ÄE üèÇ~HØ=ûõ* ¶<œÂw |pχ:¼Ò{Åéï44[¤¸Q»’njlEÊý± -czƒŒàžt†ŽÓzI• Ó–˜m¬¨-/dYÁå ‰Ûÿ甆""›¢"""""""""""""Çp~h2>IÊ Î0S벨Ü*¢"ÇücÖãKÚÍ#Ïéãæn:´†ãÕÎ ãºzl¾. èúÛ]õ ø™¯w‚àöÿÑãÅ­ÎüÎ9.'¯Äe’šÌ&;ôTqÀëºèظŸUañï[ ÂÛæ£lÂ:–S˜(‡wTÉð³u»è±‡­a©µu·TO©uUÙðÉJÚxªfç|Må3±Ø8à…I4DDCžÈ±×ìP](©çæÕ7–&H6sc23Ÿ.ßáü;ÓèàÙ•Ú^J^fóÓTDzÀ>,8>¼§þ˜éIZ¢ÝHXiÈÚãwóul g•Û‚pÓñg¼¹êÎMfÔ«Péé…%[*£s&tdf7<;|ìæ“ý…šûªýQ{¢* áTåpvûdœ­Yq¶Zi¸¡~¨¡<ÑyíŒü8%ìhûy¥YNv»»aeqZ³‡¼2Ô–M<ÓOz¿UſׇàÁNÈÈÃç.s·Î;nr¯$᣹;àd’pãC齦)ôö˜·ÇKGïÀ2Îþï‘Ý\ã¿Ë ÀÀWKvÛ! +q÷ÖPHÄw-I39©èC¾èùˆü-îWvÀÜD5`âˆýk÷Ùëe}$R«/Æ5 1’ØØæw£Ü‚âHš|"á>á°Óéë=lŒªçRCêj|»³²Üe}‡üÖ(Ô^!x]aÕu~¾ñX'¦•ÐTM²Cƒ¨.h%Øé–‚=×Aâ#…–ý7[s ÔÔ×*˜iÝ$QÅ#e™øø[‡4c''¨ÍÁk—*5ø©ÅíiîÓÕ›… ®žŽ¦q¼î ’gG›[ðÆÔžÁH©¼Oðr9\Øõ |»d½–š;íñ0ßÇ窃Ŀk9ZÝY<v6žÕVÐ3êï(´|ò¯?¬tFµ¶ËŸPY¯4Ó±ÑK'kËšá‚×0ï‚20Fê=ñËÂΗ¹TZÛÃ߸éëehlôõwù& |nŠ"\á±å ÇÒ )â¸Ï&¬Ö®š‘³ vÊ_-óDÉ{ŸžG‘€Œg'8;‡Ü1К(Û¥4ÕÍÈ5EžmC²7̮˷uW›Xs“¿¿uÈ7׿L‘Ø]º/žåYGn¢šºº¢ZH_4Ò¸5‘´u$žŠÚá×ôSÞì|æÅT”Ôµ/ØÖ:7r¾FŽÑ‡l ÝÄ€šîú/[j»ŒÓóßuÂ:*(Gâqø¤wf1½\ãØµ>®â'‰}\í%£éç³é¤®I?«Š<ä>¡Àáòm´M8Ï~®R³…z ÁÃM¦´ô%°D9æ¨~ µ2ŸÅ,‡»äØ+¨ì7?Uäj½O`Ò–—Ýu%â’ÕFÓýeD¼Ç÷Z:¹ÞÀT[⿌M$´zÕ„VÜn-%ÏþÓ!åï9=Ú Õ<|âF¨£™µú®àȦikà¦-›‚0= î±%MLÕ2¹ÒHrù q'ÕJOV®'·QPÞ´Í+‘|£¸ÕUÌ<žFr½áŒÏ1~KC\ÑŒä8Èþ/«ÉÒóURµòÏc¾ÍC.F>õD%h÷þ¶1•ª¸©®¼Me»EÆË¶åOKv¤ªtœ­§¥ªçt~q;å¾[Á-Ï/Lœ,áÇÞk;Ÿ ´|¶Óxºi‹3(k-®œ–LÖ ‡S‚ÖµÏf\Ü–µÏhopˆ7]¬uÂ;•º¶ÓY  –TÓº cp鱃·ðY;‡ž!8‘¥ØÈ)µµ´Ãý…pûÃHôßúœt‡ŒZgµ±ê$ý2Oj¨'°l2>¾bÌš[Ž|5Ô”ËhÔ0ýî*wÍ÷ ¦šiÝÊÒâÖ‡€vêÒGº¾´Ì†ÁCBæ:žš(ÜÒì¸ÁœžçÝz\Àœt\³ºwT*ª›‘è°§ªVÔxmÔÒ¹¹u<”“GÛ”ýæ6çòqV_ÙíQÃ7ÛeD1KWÉZæ¼d=’CAT2â>š¨Ñ¨´‘Ox§ñ½Â*ˆßËÌÉ:îÐAìF{œÜLw3A ·#¡\Ñ®ÆA힥k Ä YøÁ«(KØþ[¤ò€ÐG(‘æ@7þ+ÊZÖ»™Ä¿× ¦‚9ªê› Q¾IàF\÷€Ð=IÀ[7ð×à .ðÞ’Øø#7ºÖ¶¦ï>ÅΜ´~¬;ä`ø@éøW”@Û öUø±¾ÀÞ$xýmÐv¿Ñfx+õ [dk$Áñц¹Ñ¹Îõxs\qÕ¹;uÜáUû޾ªû¨jk›§â¨sî—’e­›baÇö°G3¿dcÙO«žÑ§,ôö{%ºžßo¦`d4ôí k˹÷;žëåÖÚ‚)£îºš¢Šººe3ê$§¥ t¯kFO($ †O^ƒè¢§|VËz¶Ó[8yC]lª’VùÒVS2J’C˜æˆDr8H-9È;`…áóŒ×›'ô–-7ñT½Òý΢²8ªÞIyc°Iè\ì¼Ú_q­©û°ÑSÀцºIëéØÁœož}ÀödàãVTH°Õ¶ËU0hsa¶±õS;Õ¥Ï k>ce‹„^Іýþ]Cyv>6Õ\<¶8ï¢k0=³éõ¸†^ ¼¶hÎ@͹UÐoŸ3®ËÀ»xQáƒÜꚦ¦²š\×ÁrkÛßõ¬q|ÇNÊ+ðñÚÃWx‚·Z4F¨7›UU_èK•âG¹‚ž&¼µîø\[ÌÐ6 êᲑ— OâÇKË+«ôm“RS -M˜;l‚‘Éù·ºóeñgz°ÎÚcº«lì$Ï}d´ç9íàv/ú…s[<]pö¥Ílö-ON1’ñ<Œ:blžý»/j—Å7 ¥æók¯8v}²CÿW+ç¬ñ[ˆ tM}¬#8dVâ×;†G4~eZ‡Æ %\Í·è]q¸VÊ9cûôƒ¯#oÔÁæñµwYxuÅÎ4TÒܸÉrvŸÓ1J$nž¦g•%Pnv‡-¤“»ËŸ±nARVÑn¡³Ûií¶ÊXhèicÁ-ådl`Æþ øÕ`áM”‰y+µD|ÔVî|lN<Éü,û¸Œä`Mî#ø‡¾E­8]WeÓ“KO O9 c³åÇë#²çvÎr%¶ŽÓV-§©tþœ·Cn·S7Ãêq»œz¹Ç»‰$®Z›Réí1o}n¢¼ÐÛ)Ú3ÍS0nFq°''r:(ßÅoöº8f¡áõ¹Õ•„\n–Bßí2,‡»Û›—~Ä(‘¯¸…ª5­ÔÜ5âªáR_ð—»àŒ¡Œ4{­™ikj©jjc§–XiyLò1…͈8òŽcÐd{•zxxÒÍgÅí7¦ïÒ=–Úú™8d¦786¼48n ‹ÛÕK‰áðÁÃyK£$Òtò_|ècs磒´@ùyy ß) ~&ôÎ3ÑHÚ *J 6QÛé)èé¡ÈdD#crI8hØnIú¨ûâÞÖaá¾½®kaæ´Ü+zÌavwßàŽ%‹¼(q9×-m¢ôäôïTVÚ›|• ~[58Kp?‡ËQòé¾fÖ1ïî ù.¶«eÚœSÝ­´wAÈeT • üœ ޼kðéÃ=Qª¡¤ÓwŠ=«+`}LT0Ä =c~'y#§¶XGsÊTL⟠5ï k\ÍSh{iþH®®2RM>Ž >ÊÆòD.~K,ð÷Ä_4› §¦Ô2UÑÆ@µìûÄ|¿º3ñ4|œ|Ñ^1¨å‰ŒÕºVF»öê-3Ìqÿª”ŒvÿhVqÐЭ mú²ÑÄ*XÏÝ׳j#i1¸œut`þXgÃÞ°+‹ºnúfò©â­d5d“»Ëú¹ ð×—cÕ¡m'²HÚøä5À朂B 找Qt@ˆˆˆˆˆˆˆˆˆz.N䜠ýW!7!Pd|¾J§8Ù:w= ª""§0æåÎꨈˆ¨ã…ÒK½ŽêÛâ6­·è!uÔw Øh)Ÿ0ç8F3ܹØ UZžûqÔ7ªëÝÊ_6®áU,ó¿÷¤{¹òüKÊp qê6)ùà Z¶ùÃzÝ7W[,× EFCâìS¹­l|¹èk†–i$‘¾;çêk ŸRØêl—ëu5ÊÛTf¦œÌxò €Aê(Gâ3ÃׇÔòê=uÛNFç>ª’FóÏn`Ü88ÉÉßh9ܯ«Ã/ˆk¶ž¿RiÍer–¿MUrÅMCùä¡y 5ÁçwEÙÀôÈ#¡œms\Ö¹®t!rÝ]LmžžHçÈÒÂZpFF6PÇ‹õ5Z[Šp^ª0ûå#ÀåK)sàÛa8œç8,äã&^ií¦ÓVëýµÎu%};'‹™¼®hpÝ®œAˆ+Ö ôTUKØöMæ°å„~±˜ëèGü»ý7íiËA9誈ˆ…ôß§¢×ÿ 'è®7¾àÂnÖè*¹[Ð9¼Ñ;·_Õ‚£Å^>ê]ù€Ççÿ%˜<iz-QÇ»p¸ÆÉi­4òÜÌO$¾>VÇÐŽ{ßðî1•² ÐI ÷è¹s€*;x‹ñgÒô7£«Å~ pu<µo Æ ƒ‡âŽQÐñឰߵΧ§°Ø©%¸]*äsþ,ò°—I#ÿe£9.>¾¥l+Ãw ªøYÃH´ÍUÍ•ÕòÕIYY4mq„Hð$YÁå­ÜÎNp2Qc°\@Ü•rDø¤Ž9áÊZFC†0Aöì¼=;¢4Žªž®Å¦,–Ú‰ät’MMDÆ=î'$—ž¾êàäõܪàÈS”äzcªäFzª1ºÄ-õÄ:#‚——µíûýâ7[(™êdiw_Ùg1Ï®qû:tÃëø…}Õ’syVŠÓE¶Î’w“cwûÁL½}«¬KO©5-wÝ-ð>8ß#X\KžàÐFçsºOeì\((®T úJjÚ|óysÄÙvÆpr:ù«Qp+„Wé]-Ã@Ú+ðKèÚêGó„µ[xXàëœâÛ-Ò>n·yþí—â½O†¾ Û¦lÃE²­ã¡­­žvð¹å¿Ád]1¤´Æ˜€A§týªÓ"Ž‘‘scÔ´dýW±É*Èâæ®¸éí?SM¥©sÕ•j·ùnÊìÌCNÍ“ÌpÑÈX“‡Ü ¶Øn£‰\rÔ”WE#¼ï*²vŠ*GŒã%çõ¯hÆ:5»€—©ÄOü;ÓFJ[¨ÕÌۧɦåpÜ{±®QÇ[ø§âf¢|Ôô7 {#ò²>WÛ2»/æ­åÑa›­úñw­’ªá]W]Rüþ²i+É8îâOº÷´Ÿ ¸¬(…vœÒ‹…+ŸÈ*,EÙÁÎÀØõôRS@x/£dtUšçVTÉ#£¨·Û"l|’|$7Îqw0$4g;óõã…:~Ýxsf³QÚmw 3ò¢æ-—¬s8ŸŠG1á®Ë‰' \mŠ÷ µð† MCz°\6)l±»bîž ÷\Z»TÒkjVS2šžåz¡‘ð¹ÁÁ šàNw}–Îqñ8޹ß*8øñ¾ Oj¨[ l÷Ûœ4Á¼ø&(¿Xqê2Ñþ÷È(¥á1áüx°Q9¬&´OJÙ¿”_ Ç09#·Ílðdv‹å{«Åk9"ôgÆÿ0µñ»¶ÊCùŒz¼eêYtwˆžêhe1›u3'“L_y"FüœÂæŸbT¹ª¤†²žZZ¨!ª¦—gÅ3Øñׂyão‡.êIú"ÔtÅÝôÎ|SÛ™ËLdóÈÚøé0yyNßEx½À>!pÞ¾G×Z¥»ZÌwKtN’`ŸŒ˜Èç˜cЕŒ¢Áð¿¾F:®økg§på{ÁæØç¦ë#èÎ4q Iº&Úu]Ê(X¨–_:ß°üŽË?ðëÆÞæSk=¬È®ÔyѰÞAõ$<{5H- Åþë#6MMFj¤8mIò'ÎqŽGã'å•}ýŸã…Ž|L8­Ë£2ÿ找M¶?N¿E‚þÍǃeÖ±sᦌòŽ˜ägø) Æ­GÄn^4•CblµPQÍ& –ïò2@ænZ\;­XMMQCt’–² )êiå1MÇ+£{Ò;Gð[ ð{¯¶àõUºK”Š ¾bKœÌoÉõnÍ¥fo檈3ꈈz""""}QQÝ7Lã8UDDDDDDDD9ÆÊƒ=2¨®3ê«D; †U9¶ù¦IÎ1•VôUEG¹¬isÜÑÔ“€‘yânŸ¤ÔçK[D÷{Óatϧ¦–6·‰çl’æ€w#¢»­o¬–ÛM%Æà«|MtñFþvÆò7hwpÙî¾0QD=:®ñ‘ù.’HôÉ8 øÿâu·*-j¸‰¡¥y¬ºÞK|ìrÇ þàq2ñÜ(”Æ—84 ’v ÝÕzjñdÚ»´´÷jQYB÷Œ ¡$€áìzüˆ=Õóá{ˆÏá§éo3ºGZªZi.Q7©…Äp;–œ8|ˆî¶kCWm,5t“2zjˆÛ,20å¯c†ZAô ¯¡§#…I¢ŽV9’Æ×±í-{2Áw [ž'xnîñ*¦ßCNábºµÕV—³]ñÅîXN7ß”´©WàÉlÖ<«œäym>ÿÉI¾ðK†:ôu]-Hû…!.ŠáX<êâOÅÌzð0ÈÁ­cCXփРù!åí·¶ë‰Ý™ /øÕàÄÚŽ„ñ#LS6K­9zV4óÖ@ÜrÈÌ~Üc9øšzŽP ¶ÖýÎùMpÝ –Mðõ!®oÉm·Kjk>©Ó”ú‚ÅTʺ¦s1ÍµÝ \;8ˆQKí¾[ÝgÓ:t=¯¸ÃU%C™Ï»#òÆå¾Ž/9ý‡l°ŸƒYc§ñ¤å‘Íh|ÓÄ2ÎmÝ€|Žý{-˜À$€žVŒŸP{íý"iP@ ÙÞ »ÿ\TÇá¥c.;ÓuÑÍç¶{U3üÌç›17%z—ku5Êã©i")£˜ýøÞÃôsZq칌r‘¶û|þŠÑÖœ0áþ°¦0êMh®Éæ2ýÜE7NÒGÊñ×Õ`>"x3ÓµþmN†ÔuVi°\Ê+ƒ~ñOžÍ HÁžçœ¨ß®¸ÄýçΑ¸KNÞ•T ûÔ'=2Y’> ,xæÉ\°Iâ’<‡1í-p;ìAÜv\Yq¬…Ü͑٠ƒŒéî²? x÷ÄM QLmÚ‚ª¢Š'7ž‚±Æjy:·”îÜú´ƒî§µõ£\-–åWhŠªÄÔ7+kçS–œœÊöžàwã+ÂðéÁ™¸G©5—“_ e–é4/¶üèãiêäÏv󑳺àg3¸Cºç¢×׎Í4·£¥¥lvýI © àT³ ›êrןï_ö‹GqÖúù÷Ê¢sŽH߉Ç“‘ƒÌÞ‡ñž˜ßa ‚2ʪ™ß ¨Pœ&þª¨ˆ‰°©É nS9U7DDDDDDDT¯D˜UT7ÂàöÈ'òAÌ0‘¿§Uب÷6>‹ÀÖZ®Õ¥lî¹Ýêb¦‹<‘‡¿•ߺÑÜÿ!ºƒ\Yã¬×Úâ:öáKn3OLÉ€`Ü|nåhÎ7Æ{zÖPðÕU¼X¸Ô:ªž¦©ÐÓÆÇ½™•œÒÌZvÀ%Ñ4õÉÊZ¢""!ÇUÔò3‚B·8ª)4n‡»êz¶>HmÐ þW=Ä€Ö‚{’@Z¥Õ5µ÷yê*g’ie{¤{Þîg8“Ü÷+íáî­Õ:¶Ùa· Õ\'eÛ¢"",u¬øOl»‰çÓ—ËÖ¯åòÏe«| •Ç©|mpi'®Fw9^dž:þËf’}ŽO5Ö6󯊮‚?cõ­w—ŸQ•ÛâÃ‰Ö ¼ÖËõ‚yédtUPÔÐÉí{]‡0òÈHÜnÓŒ,¹Ã?:>ûTººŠm=ZZça3Ò¸ãs9š=ˆ?2³ž˜ÕzkSÁæéÛõ¶æÐÎr)ª÷4tÍ-ú€½¥BŒßhURp®Áp!Æj{ëbÏ`É)æ'?âŠ\K]S–€;,µáZ¸ÛxÍ£žÐÎynl‡.ÎÞfXqƒ×Oî2kª.pòå©êù,#Ê£„Ÿëª³?‰>À­qYmú‡ˆÜB¥´A7Ÿx½Öüun9œyŸ+½€$ýØ— xi¢økg¥¥°Xè›^Æ6'Üd…®«©yß'âÁ$žP@ÀdÖ\\@Üžèâ '.ÈOü×&·|»sü—$÷T=zd*oŸòU#®êÖâά‡Cðâûª¥å.·Ñ¾H˜Fy¥#·êâ¾ü1èJž)ñ®˜^bûí¶’G]/”’%o>C î^òœÞ‹e| ï×*)}£äÿB´”=ZëœÇÛ"-¿šÍ^k]À 3åläYᇘtÄmä úrãè²)ÎWËs¸ÑZèe®¸ÕÓÑÒBÞigžAl¤“€£ç¼Xè½;ÍI¤é$Ô•À–™œã+=ùˆ.^€cÜ(©Å><ñ\Êö]o’ÃBâKmô'Ȧhì™ýãs½–5´Ò]ou±ÐÛ(ë.5ÒŸ‚ h],ù5 •xsá#‰zŽhê5©t­·sªœ&¨Æzˆ˜zû9ÍR§‡8Y£hbiê}ErrO[w`¨œä‘ ³0vn@$œ“–é †š”ÔÐ2#¬Ž6µ£Ð° ´4z.MtUóŒz.Øt\\7;gæ¨{‡¸ßø-Wx‹¶Ãjãž³¢¦¤Š–ž;¼Æ8¢g+×;˜ÀaÝÈ~øÏpáµWÕtÍ|´òdˆHfcð¸¾Ä "Éñ«$Ö¼B©¾–bžøéœð±Ü­# zéøT‰¬ñ¢ÞI ý á*L-˜‚1I÷\ÈØz(IöÅôÃGÌúé-Õ {@èÑ#KOæO䤅kù¨ðÕ£îUÎЉôä€ ω½?²À®=!Ä:-a­/v;$Eô–"#¬«sšCæ$€ÆAŒçä¯3Øûo²¨ €AGåüÐg $oÙZÚó‡Z\ÄÖêÍ/lº=­!³I,ͳeioAЬ­¼h›„“O¥õ ÚÆ^שçkj¡cûNËós¿e…ë|ñn*Ù §~Ÿ©†?êçmqh”uØä}@W&½³ñÃgm‹s[ÒYj¯»}9æþS—‘ðÆAi ââ1Ñ[ÖÁ’HÞ`9ƒ„Œi~àG@µáË‚·[²;|×y] ² |Ð44‰ZZìµ®.x9ìå%8'ÁÛN‚&ï9’¦ý3\ÙgóÈÆ¸äµ­Îùç ôYPlcÿ5Lí¶ût ,xøÖ ¤²Z4dNÔ;ïõtã >,H؉#°‘„ã¹ÑAú¶:z—;ÔÿÍL_z¹Ý5ýl½”ÐP6X²æ˜ùùšOMÝÈ?²à¥6´°Ñê#vÓUä}ÖéG-,Ž-,çiÀ²ÒAà-OßíU¶[Õ}†âÆÃ_o¨}%S²$os3ßpw^Ï 5mÏEëN¨´< »}C$leå­•ˆý—4¹§æ¶›¤¯ÔŸLÛu¥üôWfT@HÁ pθÜp½p^§ ‡ß-Ôñǹ4þ©G²Qµ¶{«ÚË‹bf=^ø‘Àtlƒ©ýþ§.÷üqdQÌxk~«Ä¼¾Ë,…¡±¼ä¾Nøq9o]ù‡pØ*®¹ZDZ̑­s!Í# B ]_ mzÓè]WK4¥þ9á´Õ²N‘KŸ+â;óÄâs×ô!JŸ5—*-5WÃëóüËÆ‘–÷Ì2M)`},£ ãÃOö˜å“Ñ4daüQ¯ü;úû&Ïž‡÷p¹"/VÙíwÚn½éÚ[å0“É©¦†xùÆpK%ÛoQºÄ÷Âÿ µ,3UZ¨j4…ÉÅÏÛœ[9ÀüÇÊ ü,äÏNe„/¾x½¤ª…ãGÞh/¦Þe<Ô5N£­ˆdà°‘]ü!ñhè©¢³ñ&ÕRjiÇ“-Æ–0$/nÇÍ„ãÏRß}‚Ï:{Œ¼0¿ÔÓÒÛu•¸ÔT9¬Ž‹¡sœNÍøÀß;cÕZ~5è ­ðï–VIG=D{gï1°Ÿ÷^å®) i›.=º|Šº8}x“Oêë=âžWÄú ÈêXæœc•Ã?Áf?|Fþ˜qXmµbK…†8Ë g©~ ’du°zaÄ~"¯:¨}}o®´Í¢'ÑYüÆî÷4Íôƒ{žaÙL F:P9ÎqíþKè_5cú0|ÊåNЃÊï²!TOeB@ÏE ~Ð~ ²J›gh*Hà\.¡Žý§ C½ÃKžAý攼ðþMÂî—*vÇuÔ’6á/Á‡²Ÿ”#q?¶ ¤vYß$œTVûGØßôy¥¥ÈeÝÌ×0»'øÍ{ž8™£´…ÝU«/QQ>Xª„00%—–ªa³FOA×a•‘ÄÏa’º‡Ö8ÚÐpêÛ«I$m»bc†;þ#é²\@â–³×u¦«Sjë‡)掿–ÏO‚&á8îOrW¿¢øÅ{PÁC¤ë¨idß{¹ÆêXÛp\2áýÐW½áöÍ_ÇúÝ-zš+µŽÀÉå¸>HȪù"kñ‚‘Àï‚ZÇ-€iM+§´¥£Óv]šÀs²†•‘s0 ‹F\}ÎI^Ó[¹$ïë•^\ATè9@ÉUö$Ÿ‘Uù•BÜœvÙUá½Î=W[¶nØÀôIq€FOù-ixÇ€ÒxŽÕѵŒºh%øO^zxŸŸu!8ÃẓYiÚ}W¢£ý¨æ¡§’zgL~íVï)¹üYåMÁÁî3º‡¼BÓÚ‡I^ݦõ,”ÕTD“‰,Á®<§¡ê3Žêæð稭z{Œºfùz–Jz §K[XÖµ¤þö  Î`ÇB\:­dx’Ї‡\\»Ú#‡Ë ©•ÕÖîVá¿w’6ß•ÜÍÿ ɾø¦í3ªŸ¢+éß-¾ý0’9Z>*yÚ ŽÙ,- ‡ŽêvüÕ~¨ˆˆˆˆˆ„"*oŸeMÁÇe]Žê™ô#8ú*·»5TDDDDDDDDD\ G6Oª·µ¶…ÑúÐÐÿJôí¾ñ÷—Òýê.,»—›Ç•¹c½øbŽ£†ÛQ´1Œc@kZÀÐ.Јˆ‰„]yqqïEÆW çr·¹ÎËY>!µ„Úߊ×ËкŸïEÀ‚!ÊÌ|÷q÷q*ijR:¾ïGH"55Óµäd7ܹDZ+i+Òôz3‡v-1E – }#Yæ–òù¯$ºG‘عåÎú«Àga±u¼è#f×ôzê‚.Z=AŠ«ðUDÐ3íÍiùµÇºŒ<ÅièG¢Í|ñ­¸ohŠËDê+¥’FÒVÄO)qÉå{HswßÎËR dáTsƒÍ3ŒîB¾ÝÕAÜù.9ÀØ`ý— älQ™$sXÖõsŽú®º9 KyÛ“>Awç¾tœ¬Ç3ùs°8îºÝ³OPu¯6©k|N×QQ–ýæéK@{âdc$í„n§††ÈÑ6:WÌf–žß Ëнì`cŽ:ÁPçíkÿÒ•!İÚyvÏvN{çoËÝbŸ ZR“Yñnß§+ ›O[MR~!ŽX‹‡á õºçÃî¦Ò…×m=u«µî>’¹ð½ËH{žKp ®kšyw;í”´'o‚&ÐêØ †²$ÓÆáËžo0|õÎÛuX_ÇÅÊ’¶Ïgœ´>ðÁLìþþp¸9bÃ+³Ü8¡]¥xejlT‰jdª«lY-c¹žùF ! h'>ëd¶eºÍh£´Ùéc¤·ÑÂØ)âŒ|,`Ϻôã~Š£n‹| …ȸ/.{&2;a|wÚzÚ»U]5²¹”5²BæÓÔº/“! ùÎÁßjîûU©ø}ÄË• —ªkÕš¾H[O#ã{Ü×ÿX×g›výC·[ðñ©nú¿ƒkR_fmEʶæiCÎrÙ^À↌à ÕÿŒ@°Ž]=¦ëx+]¨nvšyîöÙiã·ÕI™Q^iÀ°»á9ßV÷m- j­ÖFÜݨ¢` ®elÌ‘‡aáÐကàêOÂGÎQ¢""""Š&À{""}ÊFçdéÔÿÇœ“=×6ô ¨ˆˆˆˆˆˆˆˆˆˆ¨¾;µ¾®ç]l†ª7VP ˜³ñ3¡Í8ô þkï¡ Çþ ‹Ü²ê'>›e‡|[kÉ4w 䤡˜Gr¾—ÑÂážfEËú×´ŽàñekÖ°»˜~ÉÀg?œ3¬Öþ—UTÄÖXôõSd‘îÇëªCy™õÆC¦Þª~ÈžÙÉLŒdô=qÝcï\?‰|,ºé€Ck¹EM¹ä€S%™=ƒ²ZO`âµy·UÛî—i)k!w,ÐJ9_½ìw\`§óˆÃùOAØžô…ÝQ¬8qgÕÚSRZ§–ºœI-`t.„ä‚ÛÌ@F@ê¼ [á¿}{ô£î”äµ¾e²vTnIÛý»ž\U‹î´—« gܯ mH5tï†Aók€+Ï«©|Øs¤æ#Ô¯»MêKÆ›¼QÝ­5rRÖÑÊ&‚fc™ŽÜdc¹R7Jø¹âúV;Eò0Ñ‘4D„÷ø£ÃáY‡HxµÐuäC¨-uöyð™÷ÉÛaج£¦¸·Ã XÑKiÖZ™fý_Ýj¤û¼²ç ´G(kÜl …Ú·ô߇^7Þ-¶*€mò5²ÓG3y£ž†WØÞr[‡3›®[‘ŒáM>ëkNºáͺëj“K~íQNçeôïfÜŽõÛ=ú«ónЍ¨AÁܪ¢ kt~Jž\g¬mü•9ü;{vBŒUÈ7¡;›|Õ6=pºj ‚¢ ©dsA+ %ŽF‡5í ‚×±0V©¸Ág‹NñKTX¡´Ôôwiã‚&`¶8ùÉ ì ÔŸ"‘À覇î¶Ž–›ZÅo¤–±ôB!-VL‘ù’9ÞdC”yc»ö·ìå.ÚÐÜîN{’Ž!­.q’Odcšö5ìps\2îãó"-ú…óÄÞBÝ},v[ÿ5ÈôDÇ¢§p±ÿˆÙ,là†¬n¢­šŽÝ%½Ñ¾HHs8€Æ·=Iw(Ç|¨/àÞ–Ý7ˆ?5eæšÞÚS4°6o„Ô¼°±‘7lslà‘оØåƆŽånžßr¥‚¶’¡ŽŽzjˆÛ$r°õkšì‚¡VÕ£†|9´UÃ[kÐ:ZŽª <Èj"´ÀÙcvr×òäÛe>Ñú‰$Ôº6Œ’#eL¿S#òoñY›Á,r3Ãn™sÀå’Z×3Hû̃|‚³piÏ|Rª}?š†ÿh6·&€£Î®õñ·92¸ÂÂ;á¥îÆÿˆ,ãá#M×éniûmÚ×Wl¹<ÏQUOTÎICŸ+ˆ.oVž^]ŽîYd ûô\Z ‹œ“–íÐm²©|8ÊÇÚÿŒ¼7ÐΞ ö¨£5‚_EKúùÚGì¹­Èaþùj·ì¼m¸^­²Üí|"×µ4D5ô³}ɬûË>&‡‘Øäc9ì£?‹n+]/ú¶ÝA¯Sic¶Z{…¾ºWCç2W9£iåsKAëœç—Ûá+^E¨5¯‡úÖñq«´5¬6JjH¥mTÌ͹c äæhØž\Nz:ˆåkš9šp[Ü/ˆ:¢Ñ¤4Û¯wº»ÐÇUO “g ‹Í™‘¼þË^ ' ÷ÀTÓ×Û5úõzzól»Ó´üRÐU²¢0wØ–;Ȩãb¦z_RÕÔGä²((d„ód–5 ó{oÍ·²vI^â×3â§–&Ë(ÆsŸp}ú(ƒö‹RÔc¤k@¤–Ù4QzùŒ˜ÿ±cWZ¼@éY^d¦I©+±“$N>Ù dLÉ9Áø«cQhËEq¨ž†1k¹T‘ÏSJÆJ@ÀçipÁßÕC¿WKdÕÖ+= d56úЦV‹AŽLG–¹£p{çþJÙá&‡×4:&Á­45Eá•÷yª¢ÝdòqDìgœ8s4–¸œŒl®šÜLÓÕrÚkï–«¬ôÕd¦®•¥çœÌäï·NÝ×-oâ·WUßìuö6Çe1JÚºVÈg‚­Ï-Ç;\Ão‘“‚¤·‡Î4Xø™¦à5uvë~£>)­ßx |¼ 2&¸ó9¤Ó89Yi¸UT?TØ ÀTvíÛ’ן+[hüATÕ2>Ss¶RÔâp‹óÄ`~JWø?y>4s†q÷yÆÃ}ªe .`ÔkûDd|\´€qæj:v¼c¨õù€±§ÙÏqk5ö¨·<4¾¢ÑÍÛâåŽnSoÖà§éÓ ©ìˆˆw(ˆˆˆ0©¶wTÇLù®@`apk•ÍÁØŸ^ª>ê ÅfŸñ?w‘õ’ :ª;4/~‘Ïpù>=Æ;û¬ýC;*)ùØàîW8·08+½ Àÿ±84d•ÒH=Olª´s’ÝÀ|wZüñ[ÄÆkívb¥…°Ûì¦zJSÎy¥ËÛÍ#Ød³·l,Ad ¬¼^é-TaŸ{ªC˜ðÆó;¦Iè¶KÀ OÃþYì ¤Ž ‹àeMÐ±ÜÆJ·1¾c‰ïŒüš@”vhÆz*‚3³†~kŽ;ì?šˆ^?8a5C!â}¢‘®DÚ[ØcpâÞ`ئ;ï‚àöqŽÃh…|£¹7sï褄®$O¢õDŒ¹‚tÍ{ࣹÔ|º»œC3»4BNØ#}€SÔ3~›õæ0pæ8ä·1Î}·Vî¦Ðº/R@èïúNÇrææ©¢Ïöv9‡Ð… ünpsHèZ+&¤ÒÿÑq\k&§¬¦—FåµÑùaÇᙌ¸tÀ ðƒúljÖëìºMÖéf³%4óùO›Îó9DdŽ\þ¨þ"ѸÝxZÏAkí!v©Ò׋TMw–'žÞCèÙFXï¡+Àm|Æ2ÞlÆù ÂåUU ;#Œtìòãf~79Àç+%ø~ãv áE}Ãô}=5}%{cóiª\àÎf“‡‚Þ‡ŽêNiß:r ´_ôµ}#yFe£³d“Ù®å8ú••ô·xW¨CI¬­ô³;ɸ8Ò;››ÊºJÈËвh¤l‘¼×°å®¸#¨\Ól¢"dz¢CŒ{*|‘ý:€µ¿ãVÜ)|BßË# d즩o+qžx[“ù´¬%;ñg©9[ðŠau†òiät1ÔÐÀìì"de¬vØœ–ñ=Ä7é›Dz~‚ ÃW[“O+Êè¢oAžÙ9úuôøKâ 5ÿ ©§•د·–ÓTÇ‘CF1ÙÄ8N–`^Y|ð\j#š"i¤å|róçâ#n;ù•õ5ü¤á¡¿æ¾†88dî¹EL¡õXÛÄì?yðÿ­ãÃ-2ɇ þ;ü–³te[iõ¥–¢L¶&\iÞì ZzýÞAîi !Ûr¡Ú6âuÆ’°µÌGÖQÿ%ü´äÍ£Á¾ãÿÛ'Yg¦ôÊ©lœ-~ñ÷pÿË…µóRÏQUIª(ᆙ­Ëäœ`h;|Cp}ÔÔ±q7@ßu{ô¥£TPW^¥û¼O$Çö‡ã”½¸$°`8Àʼ9€8 ÇÔZŠÝf\že]sâ2ÃCK‡ÔJѱpi# €\â ‘¢î¶Ô¾!x±©¦ÒZL\ôe¨<Ç<ÒC.ÒÔ ßœ~úûƒ•|ð—Âþ‹Ñæ+–«|Z²æ[W [E ^XNC÷è_Ÿ\³ç/@F0>À-pxÞ­®«ñ¨)ªùqM,àv‹ÈcÇs¿3ܰݢåYh»Ò]mõ.‚²Ž¢:˜&oâdŒw3\=Á­‘ð/‹–î-iH¥-†Ù©c‹Ì¨¤Ë^CLŒî[’2:·  ˜]â·ˆŸÓž0VT[êj$µZ¢¢lÅ®nc?¬x#x'¾F2¬žëÝEÃÍcK©´õlTDñçÂ[TyË¢‘£g4úv8#³7‹ØõÝgõÍ=µðI¨¬Í¥t.y“˘K0ï^g»¾HÏÐW {–ž³VÑ“÷i­ˆÁÛ``î0AQ§í-/Ðë.N ÄÓcù¸MpšÉĽ+uˆ¹®¥»Ò8–àœZ×uõ­©¿gá€N‹ ø™â¼|;Ò΂ßP ú´ÀÖãõ,ß.9ú( ¬-wÆËAw¿SÕCújÜ)ŸR’¥ŽyÌÛîCˆ$ã~…O¯Øá›MARÈêb©os%f[ƒS -Áù+Ǫ¡ÑV;%–Õk·ýöñ#Ÿ4“Ó2_.ˆ8í;½ÎŸFáA骼ú—Ë.rç~g*Sø\ᕺºšË«íº†•TTÓþ’¶BæÒö°HxÎæƒ¸õS7GÒýÚÎÀʺšˆ¼~{ËËG '|/eP“Õbþ6q³Np¶ª†‚ãIUq¯«…óýÞ”´:(Úp샎@õåw¢ÈV µöËGzµÔ2¦†ºOO+:=Žø¯¹ØÆT ûB«Ÿ/-t® ÑØâp8îù¥'þ¨R×Õ•¶è»htÂÑ DV¾fù¯oÑÏ#è²ÍF´TÁk,dîu$$méKR°›œ–ÏVª`àt¢ª¡yõY˜BØ  •Q úªº¨é²"""""""""""ñ¬µš‹íÙÕô,¥ ˆÅæËåÀq{leÍäV ãí–¢¯‹Õ3Ã"§KÒùoiÜI{¿MÈ}оü=êz«Æ™­¥¼>&\i®sEåù­%ÌØƒŒ÷ÜýAèBÊHˆ©Ÿ]•20GUÔ#ø·<¤ú++ŽÚ±Ú#„×ëý,­Ž²*ØÏëä!Œ8=p]“ì ÖUÒ´ÏPò^\縒O|œÿ58Sv±_¤Ö–ë1¹²ÃEQ]+K2ÎF'ÔJÒ@Ü žÅgn ø«ÄÏ â2ÇSXùr¦a?w‰ÀÃAsš6ÉÁ);¤µVœÕ¶Æ\´ÕæŠéFá’úi2æû=¿‰§Ô8µ–ç?N©×ü—Á¨-4ë%ÂÇuƒï y)jb.#š7´µÀ¸Øõ­Xëût泿Yʆ }Ê¢–6ÎÒå6BNFwo)Ï|åqÑ×é¬5æ`Ñ=%C ”¯q ©ØçØìv ö ‚S¿Ã¿hæŽÛ¡.wi+&ž‡ïºvºwŽzÚ0qä¼ç?x‡®Ho0Û8ÍüÀíº;=Àü–ñçn¨¯à§…Žttzj™ùÍËÇ'ÐfA¿üÖû>®F“‰÷›I¨°×Ú‹ü¢@2¾)iœ’ŸÓ²œE‚HÝÚÂÇ HÈ ú‚±î¯à‡ µSç–ï¡­y²_QKÝ¥síGŒŸs•‰µ_ƒ]p›ÌÓÚ‚ñb;ÂðÚ¨Àé͇ÜT[áçµ¾¶Ô‚Çl}¦ …‚yiëa©¬ ™sHh.o;C9ºá•õêžñ?JpúMi}´ÃMCÀ¨¦ûË_S 9îcr9 °2 8 ã¬oÎvÄ^IØÕÇ¥µæ£Ó5ö+ÝÊÔâòâ(ª_ \}\Öõf-#Ⓣ–¸£w+ÄLÎY]NÞw|ÜÎSÙe½+ã Ã7$Z›K×R¸á¦j [3Iõäw)üD¬¯¦xñÂkû„túÒ‚Š]ŽäFrGá”5®?Ý%dzjˆ*iÙQM4sÂñÌÉ#ps\=AWb 9Tì«€6'主$¾Š} 4̃5 }æÅŽ>¤K3“BŒ•m!à{t[ðw4ðÕj V¶?ÑðQPBÙÿmx ÷’~K8ëYeÑÚN㩯Ul††‚/2Gu$“†´“’Hæµ}Æž!\ø…¯.ê™åHâÈcç<­°Ç¢¿¼q2-ÅF[n³ùvkó$Îs°ØeÎbûg->ÏÏe²Âf³öÊùÀkCrH- üÎtnß]ª„ª9·§ä±·‰÷xÖÎiÇþjuð®hå×C+ƒ¹c‘®Ã]ƒ±ÎDZ[ŒŠNxÚü84uê=•^/üÔ ûAëLül´Ñ4;ý^Å9;s>iNöÀ)%àÁ¥¾4{\7-¬#†²b?‚ÌxéÐaq!ÝñQ/Œ“PÓøóГ\[t¿£â|{Cv*C\çwÁÆý°=nâ´Īºm ¨ÅÞѦ‚®<:ÌH`ÎX@ÃÛAç+/Z|_jŠ~~‹šš LÉ9tx0ãbèñ‡KÛ=R3ÖGp#A^(t—-kt«®ÔÚŠxîWi‹Ãfk|¶ˆ© Á9Ž1².v0 ÊT4QÒ@È)¢d0dzc Ø/¨Œžûz.·:ÕjçÄ C8Ù­ã®y"ýVþcØé ™ÿš±³›úÎ\©qàOjª-Y%þ²ÉQŠºÃPÚ+‹àÒ2¢1Ê×ÀãÌýŽ9ƒ6Ï.Ùêñá焺‚ùqÔÍê»Â¡Õ éãi{†ä1dîvëºÆú—Áö‡¸ëz[•ªë_g²9üõv–0ÊyGhæ{²Ðïpâ2qÑ[ž)´í±PØ­´TvÓJ[CMPùs÷îv¶90ãÌY®%ä~ ø€7ñcÃzŠˆ`½[.ú|@MòšÊ¨ÐÞPIiüšì¬sã«ViÝYS¡î:fóOs¡4UGš'ÆKâÙì8s·Gv裾s¿NP7Í&ªŽ_Ö {zåmŠZÚ‡CézûÝkã/¦…Æ^ìå´§$ŽŠ3ð¿A_øõÄŠÍwĆTÃ`¶JÈa š70Ô8öD2?«hp.Î仸ïûE`¡‚›BElŽf¶664؃cÀ°`WðGW÷Ÿ¶(wÍ-ET.ó¿œç}?Àhíh—‰jÞÙKþíi2¹¹i’g‰ ïè\dAÍó¸SŸìôÓ_wÑwícRlj+ê™o¥.iȆÌç7Ô9òqÞ1è¥SsÊ2rWËy‘ÑZç{"t§—ÎHïÑaOÄ‹ç jÍ}Ò‹¶p{ê"–h„Ô-òã1oÌö¹Ãlc$·8Pw\k Í_«®ºŽãPék.•ä€À `ökCZ`”8µK ¾—…×H«¥ªžªim’FÀöGƒ¤{Ý ;˜ƒƒ»ñ¶Ê]›­wøì¨uGîÑ?›ÖÊHÙ‘‚Âý½F\wSÏ@µÍК~9XÆ9¶Ê`ZÏ”݇²÷NNùôÊ‹ŸhÍk£á¾™¡åšôf÷Ë ‘£ÿ®ü:×Ïo㎇ž”»Ì}îžGîÊï-ÿð½Ëhm錅TDDDDDDDDNýté„DDDDDDDDDDDV'ôõnkh¯[nqS¶i99âh»™½]œײƶ¾ êÛ­ÆëUxÔìÓöùî"²’–×tîo”ÖbI ø:„€wæ8 ;iÚ­v*lõóÜ$¥ºªë&-æv;œn¾ôNØT;î¸*xüÖµºÖ‡DÆKh­06¦VçñÔJÝœºÌßâwª‹´Üóφ³œµ½;­˜xtÑôZSƒšrƒÈaª©·¶ZÇr’$t¥Ò¸îÙŽô qóµÆ*ÝKÃ'~¹4:ilîÏÝê‘ ëÏfþqøTQ¶^õn‰ÔÏdS]lšI–?Ž ˜[Ô9§ß;B”(ñjð`·qØga!¦çAÜ÷’Ú¥›íøJ”ZKSiýWjeÓN^(î´nõ´Òr“¿+‡V»Õ®Žáz¯Á'ø(·ã›…²^-´¼@±P¾ZúV˜.†],!®s$8îÒ9s¾yš: s¸p9‘Ll²O ow)mo²[jòß#îÚr¡Ãã©c]8é,!ج‘Æ?h­…pŸXPëÎZ5EÌUÀß<7nIš1#qììýÔH#8þ*Ó㟨Õ\/ÔZzšº*+¨$ˆNö5›d“ñ²ƒ *à¤ñ§Äó†‡GU Hó=Ñ8ûn‚Ø«N ùœôUÎs‚}÷\KCÚFø=sÝGËnš·éÏúŽ÷+ë"’®Õâ’8äp…Ñ<ŠzÐæÄC„r÷ùgϲE ô‚Xãš #,sÐæ½¤n;Gæ¬WÁ.êXª~ý¢­Ï<„TÒS$g0#™¥˜Ã9aÝIà¿HT¾Il²÷lwû8ê#Ž¡Øägá';wÛ¤~ÕžøÃ§é]£«.TÞice·=•.xÆÎòãsžÌl±ÕÛNjë=«nšvóo¦mK©Ý5M‘±“4 ÆK†€#eçÅ[Y .†i$ã â_'Ú!­ ¤ÒÖ=I1uó •cŒØÃ»üOæ#ÿv¡Î–Ó×½S|§²iëeMÊãPîXà™q÷=€ÉÀʼ¸ÃÂû— ê­Ô÷ZçO_Qdk¡€y •¥ÞtbBü¸³0`òï1Ý9>)ïáÉöme–Ã`’ëg‰­‘„’_HàŸÅ°nNÛ²Úè–2×wô(Çc®pp##p¨@=>hâz ·XËÅ4…¾µ±?ùµÃósBÕÛ¢>1žn›­¸pÚæë×tÝä¹ÅÕöšJ¬»¯ë!c²}÷^ëœD…¤öØ­wxà­>#®ðGGGsë“ÿ²)‹áb6GáçE67ó7ôhq8î^âGÐ’>‹'œì3üÞêý¡ù|m²LÀæ>ÌsŸ>s{œ(Ùt¨2<7˜;n½p¾jxù¦¿-qÑm7ÃÖ¤ƒQðOIÝ£¦Áöñ š Câ&'cææŒm•‘c@é—½Œ#˜€OOuÅÇ#âà­nøÁ€RøŽÖ1·8sé¦ö©!?Ï+ sæC““ê;­ø;…¿èSN3“Ssò‘øH{ÁòÏÕg5óÖ45œã#@=T{ñGUGa¸ZuA0ÕAn{&®·¼´‡ƒ˜˜â×~˼ÒÒFH<»n­ž$øEÑú†‰÷>ܤÓÕò0K%KÌôO. Ýñúü@ÙQ?‹ú?WhmMúUÚd·Ê ž›Êܺ'œ3èr:ËÃÒ£ï7ûm6>)k `Û=dhéÝlqºJm©¤×›™žÕMc²6•àœZÓ%K°> O1 n2À8vÃ)Ûèéè(¡£¤‹Ê‚r1¹íê}IêORwQíVèc÷và6°‰vÏû?‡×ßÑ^ŸgÕD³ðnë ¤&8¯“r7—¹Ž2wù¬ãëœñúròyEÒyyè·ç•€iÅ‚püÖË<\in´À¤ˆÅ÷FMK0À¬d®æ;zç?U˜˜ìŽF6>¨çmù(#ö‡]Lµäzºå¢%s"¶ß9®ÖFìÖC1ÉžÎù t[½T®Î’ñõ¬ÕiÍ=,žyhgl1·«ßÈîV™ÂÖï†ùnãÎ’ukf§{nÍd¬ ÁkÉ- ƒ¸ÁØ…³‘Æå…Q¾ÄåÀÜt%G?3^4¬:?‰znSOq³\ŸG$»¹†f’c{OVÎSýï’É|⯈:6žíA¥“âmE™Îidvg-ÜŸCì²#` àt\sƒ€“«t¾Õ¶ïÑÚ’ÑKu£Ï7“PÞfç×øŽu‡‡ê(cšz1lŒ{ä¶²8ß Ï).iÀ=1²Æú§Á––žÐïèæ¬»ÑÜš\æÉZÆO ™$†–°4´tùŠ;q€¼LÑSb«OÔ]©KK›Wi‚Yâ$aÙ`sNÙÜzz¬m,µ• ,0áñÈÒ×4ûƒ¸^•¿Q\­7Ö[ëj(êŒKO+£~Ç÷šAú,©¤ÜØä~«,éµEÆ=Q¤©eo7õÖÊ“<¹2Ïœ,¯fñ3ÂJúv:¦ó_k™øýM]¶gŸWD×°¼¯;8y¨åZu¥Š¢~\ù_|k$Ç÷‡>Ы\5ZwHj(&k£§¨©¢ýXæ:VÇ#~ vC!ï• D•%ØÈæYÃÃ'«ô—,q>»’ÕW8¤«dŽÌmŠWçoЇrœû+;ÄÖª§Ö\sÕÊ,ýÌÕ6–ŸõœáÌ„8Gyeؽߪ•^¸_báÅÇP\lÑ]®— G-T|®}"Ñ–¸i{äß¿(ô ðñ¡.º¿IÜ-PÛ%e3Ùs³M+,F®!‘Úò#!à¾?ÖeŸ¬$ƒ… ø%«ï\>âTu.5tU´…ôõÏ[&ΊF»Á`ö=ÖËô§¶ë-%oÔv—óSVÄÊN]¿iŽ÷eî/’XÀxwBÂKwõÿ5٠þó…ÝÛ ‰Évç|,mâ~6Éáÿ[Fdk?óTÉ8 \ajèãâuÜ…µ¾<»‚šá­Óvý€ÇþŒÅuL&ûÜN?(‚ÒÂ_°AÎÍk#ÄÍÛôÇ5½k¹±ÖZ]ÿö°ÿö5°ÎÑ hŠ?(ÄøìFF8nט]Ÿ|’¯"â Î3óê¨ýw>ŠøåÕº3Qñ ‚ÂÙ+.ÖÊg[ëk|þjr1 »üMsÝ—äo‘²£@’+I¨Êõ-±6º¶]3 kÞ¥yÚ6—]ôÜ­•p„Ñp¦Çr·Eªkï”u²Ç,ÎÆ²:|d±­Î ‹÷Ü畾ë'y’FÍϾÙ;¯œ5ï”É!Éé¹ü+éw7/.7ÆË]>3âKWlâXÚ&Ž˜ÿ¡ÄÍ`©Ž¥Àí‚¶=à¦G¿zj9‹|È¡Ÿ”Ü5ò“ïÕgUÕU!ÙPßí­¥ˆX-ôñÊÚÚ¨TÒàyf8IkZRs!'û­ë¤Ï n¥øy`¸Æº{|<à€àÀoeþÑöµðpÿpA>SŸzOûTB£’¦‚® úY]Ôò6XäaÃ˜æ» p@*Xp7Œ— º§Rú;n¨2µ­mV"¢»c•¦)€EPCpÙ¶à8wRãGj»f§¤•ô¢jZÊwë(*[ÉQI <¥oÌ–‘‚ þу›Ž‰Ǜˬôõßü•ÕöwgýjA÷ˆœÁ{$BæŒùLÉ>ÎÛ"°ŸÚöž<± ä¶ËL·~iù…è@/ßÎëem[ü;iƒÜçUùÕo%˜ÃŸ+²=Àef&þtÇ \³œ·æµwâ¢÷-ûšÎ®W—y7'QÇ茸OÌ« JÒÁY©mtµQ‰`ž²(äg9o3\ðÒ27«:p÷\jžq&¾ÛWÞ]-Q‚åoyåeLmq s ‡q»_Üc²zXØõΘ¥Ôz~¨ÍG>ZXæáðÈ?oáÃçƒÔdTñ÷ãã¼²:GÈÙlÔ® v1òŽQí–“ó%O}7;ª¬ê—g3RE!æÎw`=÷^‰è¢oÚ? Ž”Ñõ®!•õ æý‘Í8>ÿð*<ø_«u4DáÍi7&ÄI;~µŽŒŸÆ¶pѶ2ªˆˆˆˆˆˆŠƒo’ªvCº 興ˆˆˆˆˆˆˆˆˆˆˆ‰¾=ÑýVñ…¯F‹àýu-1‰×ð}²^C£dŒw™ 9ý7#äµÔÐ^î\| tÁlÂÆ‰:#ƒ¶š9y¾ýq¤ªù£äs$•£àÁ'ð´1¹ï‚vÊË k€>ª»`ŒÿLaÁ®P‚0'¦Âjà–╾[­% ´¶¨dduÂ?,…¹š6=¯ æk²šOv¨IÄžë>]Gê»\”Ñ8òSÕÂâúZœo–IAžR‡paà׊MC¦( µjêwê+k ýy”¶¶&ä`8ò¼pwü@+¿Ä~¥áÇxVnZvý>¦ÓÌ}u={<™å‡΀gáqåÀ4».`®T6 -”·ÓºÉœ$¼ÏMr¶šV .¶šØîÖ¬¿—Ì|xt´¤úJÆàm­JØÎƒÔ¶í]¤-šš×+]Op§l¤“ˆø˜}ÓGl/{mˆÀßæµŸ¥`‚Åâ–žŽ¡³¹´:¾ZpÖžW=Í©sZ\‘ž¿U³ç|í¿ª©Ç¾þ‰œ·#'Ùc¯¶&j>kqò=–¹ják\ã$®`o’èÀÛÕCO Úúm!Æ+M#æpµ_§eS¸.rÂñèD…€ŸBVÃ\_‰zލLœ.C';í…ËqÛoELïŒôTÀÉ?ä˜Ç}•›®¸[Ãío,³j'm¸TËÕf>Ið$f1Ûu¸³àæ!K5Æ÷š—Ê2áj¹¹®óç–9Æ9{»”YÕš?SéZÙiu Žál|S:"g„†œ5ÿ…Ûo±+ÈHÆu9Î3ê«dñ´aÇ#ù®Ãu”E#K¹²AÜuÊäíGu}¨Ð>²sGæ‰çËkÀ Þ™Á#?5á¯PTˆiÙ+ óp1Øå^h­wŽ;é*+ë5$÷&±ã-‘û–4BîUµ@€:Gæ–¸Äë\^14œ=â„·(c.§¿\j®tÕ.9sšÿ)ωǛŽ“F0×·/’#È^ 8·I§®ÓékõSi­g¶ZY³)êN‡ÙkÆ=hõʚƦ.g°8—³«q…òI#œAÈë“·oüWÓKŒ{.ãœcù*ˆØ¬sâb–Z¾ëh! sÿEHü™‡à¯XyålŸÍm?€s²~hG°ì4õ 7õl iþ «ØîZ;7ÊÕ/Ý5ÛŠzªlÉY~¬qÈÀæ}Kÿ涯M4´ñRÓF#‚¶8ãoF´ >vÅî°¯Š¾/Û¸{ îëulSj‹„¦¤‚'ŽzPögî†Ú:—r팑™ÂÇY<>Õñ?SÂçMxšžOÓgÊ—™õ2ãÕ‘½­÷²w!aÛ€gÞ]‡ c²á…‘¼v--[cá…K*¸W¥%}DUm–Ζ'ó1Îò›’íUÀ~-˳m‚«sžf޽0» Ho/R{ú-qx¹t‡ÄN³óCCþñOîŠX1ü0°¥Y"­äîAÝl7ÀõE/ é]6Ì’&>&sd48çêB.º  d>ÑŠG›~ˆ®lcËi¸R½Ýòñ›ôø³‡JÈ®|Ó•PJ×‡Ò´Ëø^ZÒ[ôÈúå`´‰§ÿ¹ðn]ðÜÇËzU­’ŠYਗ਼çl²GC(ø$ÀòŸcÓê§ß‰?ÔBŠMS¤b¦¶ê¶Â £ 6 ˆ!ìÙ;üƒ¶Áw‚\T¸[5%”×Õu¶[½­ÿt¦¯¨g$±’áþ­YÍ»  `;ÌÛ Õñûw‚ëoÒÍò䂲‚º²šx¤f Œ,‘®ý¨ÞÜG¾pAóû; ¸a¨šÖ†Ïúl™f2Ó |»÷èvíõXíµ¾›Œ‹¨Ç—]e Ž9dø9ª7P±ò<ÇòÆäãrpÛtž¥ÒZ*˦¨£s ¶ÑÇNÌrÉ'Ôœ•ï€ÎÁp‘Ì`28´1 ¹Ç=ß+QZÖ½÷]]zºJþgÕÜgÄožy\ãü×±Á;;¯œ[ÒVòÃSw§á¼Ü­*dxèáÔW] 8‡n­¸Ù°ÊçsãͤqÆHÇÄXâÜl\±w½u%Ÿ‰ÏÒUÑ×øœ#iqÃj#i{HþóC‡ä¼_’ 8æYÊG—b¦iךSéî§®cY`·4HÙ¥ˆ·`ï€n 3é…~Ñ&·ý Y ÀÿçC¦ø4µ*"ð/˜q{F¾0îf_è9ú»>KjU[ÜæÈ:}—b""""oí„DDDDDDDDDDDDDDDECÐáTû-tøÄÕuŒ÷ŠYj!–šÐ[AMå8–´7wgû\Ïv{l­ßÚ.=yÄèëØÓæR‰üÞr c©Ï{{y~cpvÃS€¶cZÖ€@僲íh8Ü»*àg=Ðý6긖{ /3RX­’Ó=žým¦¸ÐN9d§¨Œ9‡lgØîw*5ñgŠäùî|:» [Ï0¶V—IF㑳^2ø‡S¿8ÎÀÒ7ëŽ ñoG>°WiK„ôtÙæ­¡i¨§s1žp[¾1êºÅ à¨|rµñH×´‚>…}v›µeº®ÊY]ôò6XÞÓ‚×G× DpsÄÄú–÷Jtm%ʰWCOk©™O;š1d„‡×rìæÇ]²4>2øçðú à2yo‡åþ¯ì£öºÖ—þ;?ˆti(i¤¹QÜH&çå|b?3ÀÝÅ„ôêT´µx¶áÕDÆ*ëV ¡vN\b†Võ8ü2svýÕ~iÞ9ð®ù=.°£€äJÖº˜÷ÀYšhª dôò2hdhs$cƒšàwÔ{®Où·ªÕÿô»ôïö !%vÚÿ6Ý—’æÂâ$€‡{5Àgû>«c|-ÕTÚÛ‡ÖMOJö;ïÔ¬’V‚> q‰ôw2¹Èÿ¾Ÿ5È¡Âz’À*„vÉùªàã|/ž¶Žš²! e,QsLÀðèpGU‰5O†ž_«¥¬~š’Ý<Îy·ÕÉ 2øŒAžøoñÝa>+x>¹@ù+øyuо±¶Ûƒ„u k\[(øIv`À=|Öü)×ú^7ÉuÒšX|°ù%4®’6‚{¹™p±ù‰ÍŒ¼[ÛÝu.eù„3}•žü éj.6Áy•€ÑéêwÖÈI;Ê~š=ùœ]þ¶&ɉ OeÞ¬>7ðêÏÄ%–æ[íç4u¾C&4’>7Gær?ápÃÎÛžf¹k^ÝbRG_h«–‚¶ ©*éet3Á+K$‰ã<Ìp;µÀìAÜAÜ)kÂ6Š;“OëêÅ\Y¦’ïžv± -Ò7<ÏÎáÄcu$ôßiYnº[«˜ñ–ÉKR׵îÃ9vÂ÷©k¨È,p9øæ,ó[>]WÚ -Îç#9¾Fp:n­3Æfá±gÅñY+0Çû-QÇ––c¸ g~¼÷x|Ñ&¥’G ¶€w1äw!ùàØ,š1‘ž Ž¡kTÁ|MÞ)#„ky£ç -ûù¾Ã²Øoø‰£t ?Þ5Eöž‰ÎÉŽ¹’y»Aw×¢‰œdñ_¨o¨¶è¸Îž¶œ´U¸‡V˃±æ– vØdíø»+{ƒœÖœW¸C~Õ®²iÉ_5]F~÷Z3¸…¯Éß§;Ærº) âÆËgÓ¾®**LQÚÿGÁB$w˜è¹jbo71ß<œÃ?Ú+]“žiþl—J¤MçpŒ`$>d­´h %6—Ð:wM@îfÛ­ÐS—ƒÏÌZÁ—g¦ç'Ó}‚¸Ø`á¾€ár'' ÍskÚà%Ç·º×W Y¡ñ+©žöáµ-¡•„­û¬Lþl+TdÌìîI[ ðƒÏ­΄°M,…äþ':0á·÷KŠÎ‹®¤â#îT\ûCœñÃ3-uéÎ/ÇB)äÀúäþJãð é¿Ð$~sƒ›ú^¨EŽ¡ƒ”`õ=ûFÿ¬áðü7>¿:U 1£{̼€³>Yøö=½öÙmØ|X'›ð‚s×§uŠÏM(Ê{¡ÖÕ4˜ž²fÛèçpÂÁÏ'/|–ç±äo¢–,àŒc ‘B@\^ðƽÍc@É$àê£üSÜ-WJ«v˜áõu\-ðS\ë(†£•å¡ñ±ŒøØà2ߌ‘Ñc;§¼D\g«¯·Ûî”T´ÉY&([’~?5x ‹·Õe¾ø ²jÿ&Ñ­›Mc¼Ï(Ž Šv¸RL\pÑñÝÐ|DŽù‹Æ{}—9¯Ûm·ÂÅž#¸Gm⮃ª·Ç=> ¥ÍM®³Ëk]çŸÕ=ØÏ#úCÊíù@ZθQMG[=T.§©‚gÃ4NëÚHsOÈŒ/_@Ád©Ô0Rj#(*øLѽÀÁ!n&ÝC\A#¸Swü4àf§¢2ÉêzKõ$‚ ¾ª²¢¥´ò\×r½ø xi#-ìGb³µ>…ÑTÖ£j¦Ò6((\ÞSO¾&°jòÛ¾ÓÒEH8y¥ä‰¬7Ì´Ã#°3œÒãó9>¥x×Þpzò\ê½jîêh9èÏÿ™s%|é-;eÒš~’ç¨" ¶Ò02\àÐ=K‰.>¤’Or½B3¾?5 ~Ðè.öMua ©ŒÛ' ˆ‡ºF‡HÇ9ùÁøC€ùw]x¡²é?ome-ÂCQi’C€ÚÛ‡?ÛîêBš<¡ÄͶàg\±Ýº}U1¿RB*cÙ âñ€0?‚ë‘›dž›ã×bCûC­RÛ£ôý]-ŠÛI®¹»ýn vÇ$”ñÄîv¸ñi#;ú(TŠ\}œV;‘¾j­Kø-¤ŽƒwæNç¶M‡öZÓŸïu5ÚÑ˾H÷+èa%€ŸEI›ÏÙ€yšFë_^6ø}S¦8¥&±¦}«S8ÌhjšÐ$ŒúçñƒîGe*æ‘Îkó‚P¯Èô¬6z M’ó ¶H™S e260áÌ×<ÆIØðpGª·ïÚÓQ^ 1¸Þ®5N§ t•.Έsž»¯rÍÅjkE¿Yj v1 r2ã(nÀÎ0ébñMÅûlÌóu$wš[ˆ«hax8ë—5­yÛµüÖR¶ø¸¦Ôºû`ÕÚ}–úêË]E® ]ÚóT~•â•óUÚÙ5¬½Mq€sæH‹¦2ˆw}–KÐüãîN¼UÒÔÛi*d/šç{‘ì2eÙ%­9‘ç©`ú…,¸;áË@ðùÑWÔÀu5õ˜wé „Mä‰Þ°Ã»YÓ9%μ³>ç¨q'Ýao,‹ÿ&½Lé¹›-áßzˆoôÊÖÇeöY(_t¼Ñ["8’®¢8·w¸45¶1mm£O[í1M=DVêfQ¶Z‰9åxŒró8÷'‹Õa#p9½¿‚«ƒšÊÖý:öÝriÎÀ¶ûakãÆ½oÞ|G^â êT´PŸí%²ö@°Xh›|yìz­’øM‰Žá…‚a;'{(!Ïl|¹&ò !¹ï…š—M_àõQOí¬k4Æ‹·–éî3ƒÍ°ÄF=O˜7íƒê¯g›€0ÒÒ.µc››9ø‡nßö{«í¢ª}&‚¸¶ºŽ «à–P>>FÀæ4û‘‡ü%C—; s›³›ñ ½BÛµž©õÖº:Ùc }EÄ­”·ä2¹tWÐíœbùZ âͲ;õe’òÁEy«†ã£ÎåþW„¦y^!´ƒœ#$Õ<ü¼OÜlwô[1cs¾vú¯/Ti}?©ìóÚ/öŠK å¦H'g3\[øOÌv*øë¢¢´ñ’錯5Z~¿2çË{$]ó‘ÉÛmÎ~sw‚9“‚Ú¸¸“§-ä’wÏÝ£ëî®÷‡œ¨£ö‹HNœÑüX}}Sˆ6‰£üÿšœ†9xÇ¢ØùÛ7Ú7» Ùšà6õÆ>«há7Ê""*¡UÊa|¢vÝ>›¢""""! ŒÎ-UêÝSpÒRÅúÏZca„Ÿõ‰XsŸ¾þpݶÉõX/FØê5>¯¶iÚ&¼Ïu®Š„7˜³ÌpiwÈ]ŸmÖ×ljª U²AMmcÀ8dã¹ÀÊõ;.29¬cž÷†µ£.$àêT ãwµ¾µâÜ–~Þ/m´Ò¸ÒÛéìòɕޯdܘ.ß dà5 àâr´¯é´°~¬ÔWj:»…ŽÏEYtvÔ;Oç’çDŒï͓ЀMŸÄȯ<>´Ú¡Õ¼fÖr꩹GjƒhØþf·œ±Ù{¢‡HH'|7²±´?8“©x¿¢â¼êº§S2åM Ðóˆ)æ…ÏΑ‘†µÎ-$‚Aß ÿñSáΚÁCY¯8qD"·S±ó]­ ÉlM.šôh.gF‘¶Ã³Ã߉É-”®°ñ zŠúcs¹Et±1­ü`‚öì0ìns”¾´Ü(®öÊkºª:ª¸›,ÆrÙáWÐ~SÙk»Æ—+´‡kuTò¾Ë¨æud¹c*“,$övApŽÛ¡Æ±ý:g¢˜þnÕ“ë{¥§Ÿœ¾™¶=ExÇ–d¡©q=ËctGµ OYfOÖc .kØâ=NØYP|öUB©ŽáTmÝ;n©ù§eÂ@P¡—ÚIVÃS¡©9°èâ¸Læg÷Zqþ(p«‚¶àÍQhàGߪYúbí=d$ömlpÍÑ<åH‡†ììuô\ã9nÝ—%…ü^éiuGu¶ÜkîVó Ê’&îæÞ<Ç4w>Qc¾vß [óòœ9­FÝŠ‘žxµŽÕÓYoÕ†Çv g˜çâ:iš0ÙÁ$Â:ƒ¾ÍÔºBjW½×ý§î2¼i§ Ò±³ñÌ6=AV O†>Ì÷?úè\ì“å]*ÚÜŸAæ`+6éà÷„m‚z§_uMº5Ò9澟ʉ¾¤¾Â©ù•xåÃÍ £kKt_àÔŒæse¦4®BF<Ö-àäôÆ1ÐõX¤8ƒ•™øs¤8ÕÄ]#l³iÛ}Ú£MSó¶•õ{;‹Ëyˆk9vp 쳎†ðm_ÚçYI0Ø;4>[z÷š@Iu€ú¨­–¸¸øËu®/&ÜÍXØ)#Ëù!¬Çs†ãs¹[KyøÎwø¶  D9Ïp°·ˆ‹ü4ê‰Ú)(¹ëþ·ôþÒÖÉÆØú¯s‡€§Ac¤¥i²ÖÝúÖìÙš òw˜î¿2»™»ÆOºäF2zw)6ZÔñY-Ãúây¹yÛutoøckcißÙbj“þ²ç5²o ±GG )è#xs`ýVÎÎícã²Ík¦¯ðšˆ_h‹d’myØãŽà ÿd¹æŸ ó†ùz¬‡àNÑp™ÏvD·J·ºaá¿ü’¼´EÀp‚ÃÞGj(ÜÑŽ SOŸæ¥‘œ÷a'–Úôlôõ:NÍUFÿ2žku<‘?÷˜ciiü°½Ž¥Ù+xêƒÌðív_*²•çoý¨~ÝV;ðGWCOÃg•¡“Sk”g.íŒ4†Ž™Ç\êÐûGyOtÄA„ZãƒØÎïùç}œí?é¢ðá#r€´’àj)úØ ~”ø c^˘ ‹ƒIéÝj¯u"»úÞ¤»,v¡­ ù œð]þ®Tž>i‰«éc“Í%$FB1 ’0†"Ü© ›k?uµ½Îp{šá,€tvàÑœŒ¼íšìÛEϯÉGo|R~‰áû4­¢­±ÞµÇ–»ã‚ =û´¸ÆŸïãv¯Â΃ƒDðÖ—QWÚC5=ûýo™à—ÓS`ˆ# ÎFd;gãèÉzûˆ´š?‡Uú‡P[~ôÊXùq’jíƒvfs»º þK]ÅvÿT“NLt•£,iÈîøÉsOe;°ÜÜ{«G‹ºÛÄ^]tÏ q‡SNw4õ Þ9ê0쎠‘Э]ê» ËMß«ìWjgÓ\­õ‚©‡ sNÄm¸#à‚²?µS4íÒ…Yt–ÒÖRÜâiÁòD­{$õˇîû•±])y¥¼Q ªJ–NÇæ~bÐàAôsK\=œÓÝ{‹„êæ‹ù®1ɶÔu\ÁÁdpÆûl°¯ŠŽ )é¨+íD¦Ö×}ÉòìʘÎîç¶Ní'£½%C ®5‚ÓºãDÍöÊê†ÂæóÈèg·Öò¶>ª\ÓÉ/“#œqð†¿výUô26ÇñF¸P¨6UQ ¡ø]RìsðýTûDë›?¬4l‘ûµ¤óŒµÎžOOf•r¶3à^íMsðïh£„æKU]U$ã9ÃÝ3¦/†f~EgƒrNçaÕX^CN{×g0ÆWÎãúÎ~ŽkwÅ¿ £á¿gŠÛ b±^A®·ÆÆá°‚ïÖBìׇEOPØAä7 û…18â®ÅA¤i¬úþK•Em1tqÖà  A­ähÁæŒã|nrVVѼ³kJŠÚ}¢µ…ì@“<4ml8õ‘Î Ô“ì©Ä]ľ'ðþk=öñlÒsTV5ÂŽÙ$“1´ü§,©~13³‚ÐÆú’±—|5ðóBpsTê©î÷û½²GÁ=UAŠ(åØ5ÍŽ>]ìâá¹öÄ*lkÇ0ÊØ§Ûµ-ÏÃÅ®†&8>Ï]YE?69\÷Jgc·,ì÷g(Ë<ÖàÎV¦´ÕlÒêËuÎR];®Ô8ãñ8Ìvù­´;g8ç¹UÇa“ƒóBAÉÛ =øüžXx$qÔ˜™=Þ•’3#õ£w/OVµßáZò^æ›îúçOÎ+¢ºS¿›Ó´ÿ’ÛIo#Þ7?ñ+œ[È7ÇÕvFFzú®#ú̹z-oø®”¾"5˜„[ ˆõ.§‰ÄþdŸªÃ•`ýåÛïÿ%³ 1M†´ÔÔ=Ž}\g9¿´]gùåeõÕQ• Œ(ö‡TùsiZ7‚O—,ŒÏA¾~{µeoQ6?vVìéê+¤^¿z•¿É¡YŸh„o&Óó|,Ô Ûíšy¾›áAǸA·eËmÑ;áy÷«5²ó pÜéRÈÜ\Ðâv$žF Û¢ð-ZF{¨¡ªÓ÷ )¬s4µ–¹|g”½ñÊlj¯å§r  WzvÀÙQÇ“üCûAµ•´Ö]IYÏYOPêºø@?«W¸òµ­rI alëÃöŽf„á‡Oƒ)™°}æq39\ÉeøÞÒ;`¸¢È]×Íx¸ÒÚ­Uw:ç†RÑÀú‰Ÿû¬cKœ µñk¸SqsŒšŸŠÚÕµoÑZi‚º¢»™ÆìRÑ4€^ì’ÇèHV·¼@ñ]Þ&š µMŠØd†Žß)‹tç{pçü‰åØ*¼#q2·_ðÔÒÝY-MâÊøíÕ“NKÛ[qîqÝÏÃ^’IÀwí,âcÃUN‚¥ªÕº6y+ô¼,kªa¨“š¦ÅØ;†€ø÷=FwÎ9‡áNšJ®;é¸3bóÄòŒmìNÛ¬‡Ç· ¶4Ž‹ŽÇApŠvÜA&z‡Á(‘…›Ö × ‰<£qÑ_!î6Pÿ޼#×oWÝk©x}Yo²I'™¶1Õt±78{–Œþø¶ëSÖIÎkÜ2×ã•ûzއºÈš‹œAÒîˆÙuuÚ Àe,•žœ7o„C!,nÀ|˜>¼APñ±šjý TZ°ó±ñmanK¹GV8 RO|Ë>"*`ú¡8ÆÈp¸<ü<Í=:-tøñÔ·®9ÉEG(–;E tOpßõœï‘Ã>ÆL}\˜' ôS{ì讌h½UA‡¶XnHçÇÄZ÷ÌGó Y;!¸ßcß~ê§Ä©¹n9wý‘éõXëŒ.nØô\Îsƒ·Íq .vÃou®oü¯ñ¬Ü}æ›%§lýÒýsüV¬ë9ø7ù-’øo’¢Néacm”Áÿ$0BZ@Æ œž½:¬ÎŠ*ý¢Tñ+¦jËGšÚ©cïÊZ À,™á ð㣄m`.¦•îån.žBr=wëÝ[<) üž\–ýÚëK)¡É,ÿå(Æ)Þ%§ß²Ú‡Ë“®üÑw &lÒ>ËLÉÞîcŸ|´çß*üo.oB3ó÷XƒÆ7ÿ‹¦§o67¤ßª%¼,Š‹­>¸ÒTäº{ņ¶žssºšPhêrÆ.^:§mGˆk„aÅÞE¶’"3øIiv?âþ+5ý4­n€Õ5‡ËxlYþä ?üµ)9@ùªàؾ[½C(­•U’c’žÊâ{´ŸòZ…žwJçÌÚ=ÏÓ™ÄÿšÊ^'–ŸÄ.å-øê䌗o±ŠE²öôÈþ=V>âež†ív¦uÊ­­†: ¦º›˜‚ö;•¯8~æÿAoô²SqºïFöÉæSÐ[`pâ%´0ï¶Ý};‚§¯K]Àí ‡’?£´ƒßîìÈWÇlt :ý 9üµLÞNH5/~OcMPݽwpPzÏ–K Œ8xž>\zóŒ-µŒàgï…SꈨNꪈˆ…PUQ :üÊ Àw]Îê½s²ƒ…Fl.Hˆˆˆ›u舋ÏÔWz†á|¹ËåPÛ©¤ª¨xå.q÷8eª®!êzÍ_¬.ºžãðU\êäíÎyÙ¬Í`kG÷VLðo 'ÕœcµÜg‚Sl°HÛLà–·ÌŒæstÉ“•ܽÚÇ-‹0‚6Î2ŽîNã‡Õa?º™úoÃõæ8¥tU‰bµÀqÿ¬%ÒlÄÉÓ|<»Tx6uºÏj ꉵ±Ó0·šy¤¬þ`É,§‚0Nä€7*#]m× MÂkuÖ†ª‚¶´õ0º)#$d5À±U°z]-ÂM;#Y(¨»^kŽr9¤n hØ`ƒ=\íðF2>£Ö¼<† ì÷ÝW¦¤eQ}E ÕÑ<¿›õrFöNHvFÝð¬+߇d¶ß.¼=°ImÔ¯³ÖSÛâ5’3<=­Çšòââq8Ë\jIø.Ô²Öé8_<±ˆoÏž—ÍkdäòäÿÙÿ*>WSÔ[k%¢¬ÐÔÓ¸Å,nêÇ‚ÉM¯³²öú­ªl¨É·Ü"¨dD~ÌÂþîŒü¾ªTyz¯›^¯ÒW=1y…²P\©Ý£»{µÃÝ®ÃܪÍGl­°ßn6Zæ½µVêÉ©¥æak¹˜îRqï€~ªç᦮ŸOjûV¤£tôU,|±Œ1ƒ!øl{÷[$áÕîŽù§èn4ké*é"ž5ÅÁÀ‚ù;ä‰ÎØê ¹×ýAØ…ÖÑ帴g ‡88s o²ì‰ù9™¤lBæÒàÎ}Õv2¾ Ý’Ï{¦ûµæÕArƒÿUWLÉ›ù8°gü5è‹ö“¹ÜôvŸ‚É©)àtÔ­·4Å K˜ :üL´’7‚:jõuÓº––çA$´W;uH’<‚×G#OG ˆé‚=2ÕôóúM¡¬:Ä!ý+m§­1ØóbkñôæÂö‘QÀËñë_ÓðÛ†—=GPá÷’ÑMAw–¥ù äqöiZ¸¾ÖÕ\nõ5µ³¾z™ä2K#Î\÷;rO¹%|* eL³Ž½¢mqosA‘ÑÑT³l’ek¿ë5MFr×u8^f©¿ZôÍŠª÷{®Š†‚•œÒÍ#°=šw°Ô%ã—Š]C¨ßQiѲO§í.%­š'òVL1ÕÏiÌ{ï†û¨æÉ«n•±QPÓÍSU;ù"†Ëä‘î;ˉ%K/ ¾'†¦Û¬ø ÆÂap¨¥°ÈÜž`Acª0zt&/wí5cO|0Añ0]­ klzÒÕÓ±Œ°N™btoÄ: ;¢Â-­qÉËwÛÕIïüG­W[¢nÕæ ¬m’ŒHpÆÕ´Î;6>¥úÍÇ’’q핊<^çÿ&ýbà?SS×õñú­mòuqÎAØ-”øT}4žô™¢¥‚[Fú­›+ÀcÎ{ùœàû‚¯sru£Dê ·?)¡µÕTsÓ’';?Áj÷„μNÒ&½Q=‡§Ïf>»­°ü{Ú=½Õ@o0°qprñ‘ܨÓö‰þ„ìîaI"ާýV§þÕÜ0â3•tpŽ€]8©¤í¤Ú«Í$N ÌÀVÖ—T=Î;?5ôSg.ÜWiÜ‘ÛÓ*ޱÝ#Æû­lø£{ψ-j÷8. ïÐCª‘ï¨.Ïâÿ5± Un«á-†O$°AK .ÁÏ,LËêMºl³Â(Óö€Ó2·†ÖÐÆ5s*\üË’AôÈÓ¿î¬× 9”ᆛÓñ?ÌVè£s³øœ[Ìâ>n%c¯tÞo‡ôŒ;ɨ¤ûPÀOäV»©ÜâHpo1Çð[ð_Ré¼8i–½Ži…õ‡;n`Ú©pG®Ç0VfÆù;¬'ãfI#ðñ|ä‘Ñ4ÔÒs†´žq÷†: àçÛÝFŸ´”Õ|d®žpã÷kq,ø€ndpˆäué!éõV‡‹Jß½øŒÖdCU ·$,n?0T‹û8ë#“‡Z¢ÞÐ<È.í•Äc8’žçv;ª”Øõ9*»gø+?×ZøA«ëÛËÍ –©Ã?û§óZª|lkÐryFøê²ïƒ»]ïºlÒÆÛ¤’º¡Ç´laú—õ[&`|cÙyZªÇO{µÍK#G3Ùɓз˜郅¼kÓˆüFÞËaš’‰åÞ§É ÏäÑù)£áÖS'ô;œÖ‚,t­HÀø+÷ŸªÁ¾7£¨©à%lTÔ¢¡¦²'Í·Å×È^݉È,é·6êR‡±Á­; sœcâó[j·môÄÈÙ”ܽ½°Ý}m‚"¸DDAÑ01œûª¢""""""""!TëÑUÊwTß=º*¢"wDOtN¨¢ï~ 6Û¥(ôHûÝÑ¢¹ví¦k¾»ûï“ ƒO{yŒž]ÀÇ~ßÍl¯Â·eᯠ©(.1^®.ûõÅ¥ :9ш‰çm×®VYn=û¦—€NÇÕC´P?ÊÒzNˆˆŠ‹C1³œ1Gæ37æ³êi©¸AÃþGÂú˜,Tn|<áÏh0µÃ˜u‚Ná}ú£Eh-{¨mWÍa¥h®— ytÓJç†òg˜2@,’òO©ÌañyÇÊ»½ö£Cè[ƒ¨ì´2†ÖVÑJæéÍ€Äl9n:8·;Œ(ŧsØØËœæç”uÇr¶ à‰U:Ó‡X®õ,–í§ sœ<ÉiýSˆî[‚Ìúçs¼ñ áö÷oâD²pÒÁYv±Ü¥&j8Œ††OÛdz2 kŽÀÆOÓáï„'ˆ²– ¸±Ol¹Th»Ô¡VŸ2ÞöÄIl ¸º<ŽÎ¸ÞÏwo5:ÆFóÆæG0# î>K‰å®##ðžë­À–á¯-9ÎFëªH¼Æà=ÍÎ ƒ~ãþý—(žìæ–`ãñg꾞FAËw·ý÷UiÉÁØú.YíÝbŽ6p/Cñ>7ÔÜ(ͶøWZ0(ÆpÞ’ ûïèB»8A§îO†–-3tª†ª¦ÕJ) Ñ4µ²1„µ‡pyr=r®´D\^{¹è ž"³Wñ!š~ßQÖ>çÂÇFIT_4“ßr}ªÁš¯KÝ,–+ö¾6EO…õl$ùž\nä.pÆÁÇp{…m.L=T û<[Ä}I.Zë $Ž£ãù©Á÷ Ë·ÝN@™tnæêì@z4|\qŽM}ª]h²ÏÿÍ»T®eoþ“ ÙÓŸlä7Û~¥[>x9YÅÝhYTçÓéËc™%Ρ§p9å…ŸÚw)ßöFO\°Í í¡iO¤ôͺÖD~[§Š g‘¿Û”åïú’½Šº^GÌç5Ûî¬>6pþ›‰\6¹i9ƒYRá÷›dçý…[òÝò9sý—;ºÖU|SRTKMU ¡ž'º9Xî¬{IB]Öš³O3e‰å®µÃ«\1¿ñ[ðËĆq#†ðÕÕI¯6Ç ;ƒòç`|Ô€wîæ»/ÿïvÖ‡cîMß”dþµ‹Z ‘ΓÀëó[)ð‘UOUáÏG>˜ÊDTóBñ3ùœ×²yá×ap;7•\žD{¬KW,ÐŒÇä¶)àþ&GÂKm;F÷ziwë—Ç’ïè³²(ëウ…œ9®Ž¡ÿ®m3|°Öó89Ò°;q†—`糘ݺã%p"õUqà®®­çž®¢ÏŸ¶ì0 ïë¿|«+ÆeÄÔxsÔMŽ)ƒMM$Rf'·—5¤ ŽÙöZüd =HÝOïÐÔEÀGJéŒrÜë‘¥ 0Iˆ“Ôs5ÛŽåòÎßßËxãd2x~¹y…Áí¯¤1ÝÞhû`•üKâÝÖÓ>9ª-’0Öç˜G3\àN6ê=ã…Å÷.0ëJóŒK}«åÁý‘3šßàФ—Ù±Q/›®iÚK òè$Æ6ÌãøüÉÛqŽAß±ù,[⺨SxyÖ²eÀšÀŸÇ#[þkZ䌟QÙf? ¸?ŽÖ K{ˆlži­o™ÊÙ kKˆ?¼2qÜ€¶<Á€zo¾Ë’€^:iüŽ>Ìñ±¨³RÊ0pN+ù*Yøcž)ø¢¤‰¤5¶¨ãw÷˜K]üAYs’ñ‡MO5‘‘½ÐRš–5ä5Í’&ó·>å§ÙäwZø¦pgÀHæÎ{ [[ÒWH¯ZfÛw§kÄ”±ÍsKHh=ëÕDDDC¸Â""""""""""""¦wÆ:ª¢&Ýp›"""""ùî5”Öú ŠúÉ› 54NšiÑŒhËœ}€­Zñ“[Õq_Þ5UQs[]6)"yɆ§Gó Á?Ú.õWŸƒN3]qrÛ„’ͧÃ+ê¶’L<ˆžÎsKˆÆíc‡u±¨Ë‰Áß=× >-ñŸLtNc‚2 ZûûBkÅ_à§iêV*x]¿Re–Oäñù,/E®¯qq‹YÏQ,µ´²SäG)‹ž(ZÆ6,·o#~Jrñ»Œ4|-ÒÖ»»)i¤Ôw⨤´L^íËÞç4`œ·¨$û(Ä-MQ¬µµßTÕÑÒQÔ\ê]Q$4¬-®w\IÉêIêI=×Šæ˜ØÇgx'cÛ§ùà²o‡¾,Ôp£W›óm‘\éå¥4U4îw+Ý>XîÇ#¸+a| ¿iýQ¡iïÚz±Õ”õ'â’Lù­pرùèàsŸÏ¡]Ú†¦ßEc®¬»LÈ(!òTJþŒ`'è ·ktǸ[qÔV?6Z»Cã• ´µñeò1Û`ŽC&ý2Á‚¼vڪߙèÜÖÅn¥«ª©%ü¼ð˜]ïñËDZ=–ÄÆ1ïòT8˜ãó]33™Í0-îùöZòñiÂøwÄ[e§1雨|Ô#9ó4,õy›ŸÙvyIX‚Ó\ú Œuòº9à‘²E#v,sH-p÷±_\\µëÍ7AC#Ku†D@ü&VÜßì¼|@vÇaœÂº¦8{G)ßö¶ÇÉQ¼„g˜÷ÝÊ?åÿ5Ç—˜¯¡QÀ;b2¸òør1Ùc†ñ“GÅÅ»— ®U¢‚íJø#§’aˆj_,MF×v~6=zNË%tÙ À誩ºÅ^'8› xkSUM./·&¾–ÔÐÃ!¤ôÃæ÷8Ô á6Œ¸q3‰Ö};æsjçó®8'ʧgÅ4Ž88$l À/{FwY¯í§¤¦¸h8©i„"::¸™Ë 5Ñ4möí‘ê¢: ŽB–_g-¯¿k+°‰Îd4TÔ¡øÎòHçcò?ø¬Ëã'S×é¾}òÕ$ÑTÇU ]#29C™#ø_ü–½ª*™œåm#ÃÏé¸cÂË^œlm°U]$ó*ÞÑæn:†à0e£¾VB_=k ŒåÁ Æç› àóÉLyƒOÅ.6À÷?%|qðÜi^$Wm¥òìú:Wymøb¬oõ­>œÀ‡Ž™<øèTx…¤e½AóYgÃG«8uÄZ:æ¶(«ù(+£‘ØÈÜ»=‹N>™õSCÅÔì§ð㬘À×Á C³œóMÞ¹ZÒŒ8éþK`>*QÀ‰ØÂþj{íToç;YööÇ×*ôñ[U÷?úÎ^~S%!ÈvçÌ•Œ?MÊ‚\§ŽzsÁ7ÊGs“Ò@q·åÿbÙñÉvÄþ"1…Ë›|àçäŽœãØ’0¢ßÚ1s‚é».æj»Óª™ýØ`{üfj‚„äõÊöt-Êk>µ±ÝiÉÑÜiça¬‘¤%¶§º¡å¹ žn˜Ø¯¢|$‚:.xߨùª¹»­søÈŽH‹ J\~G+¾Ë`þ ¥•Ü#†w4ÉNÆPØñüÂÏ”õ –&<ŽG»Ocè»”/ñùrx¾Ó[>ð@ž8å0X<É øšÌ|ªž˜À [)sDD7ôú—ãF2ÿ š 5Ž.i¥~GQŠ˜É'ø­tSJá'!' à•²oTqðí¤˜\g†j¢[Óõ³Èü}€ú,²ùguŠ|[ÐT\¼;ë zf>:hêHå;2Y+Ïû¬vê)øyoˆLo™fªh|_Gü³ôX[ŠÊÎ#êv»o€í¾DïR_ìÜ’H¯ÚÖŸÌhŽJ:IÓÔ¹¯”ô?˜SA²´ìÞÞ „;ìIÏl,7ãRa†ÝJ x2¾’1ËïS_lek‰üã-9ÎFvðAN'ñgLøüšJ·ÒG6#ƶùú-‰"„h„1ÅÄm1VÜsÉh‘Ž© ›#þ¹YãÁ¥k+|:é¶±Áæ˜ÔÁ&;Q!À…˜ps“¹ù,Uârž*¾j0ƒÉ§n -É%¢'=0@ÿ¾V¸c«”ÉœœàgcÿŠÙ÷««®ŽÙA–ª¡Ëœøg…Ó)?„ÆÖg¡Ý½{`µôWr ÆtdL'ö° ü‰#軬v{µöâËu’×]t­x%”ôtîšW× h$©7à’N iMGx¦žÓt¢³TÇÊÿ¾BæD*Xà9C]‹ƒŽ˜Ý|~3øÝ|¿_ê¸yi¸Çž‹ÜÅ.ßx¨âÎêZÀGBàsÑXþ_<úúåht¯ûU¦wÔDÌX&GÍÄ|œVJð+¦L|{ÔµŒøi,´2Å9?ÖÊÑ'§àkºÿá9€öÙTî0åB=в¸ÉÃûWtvš¸†²Gþ¶† Šš¥ òH=· ú‚BÖ¤´Üôýê®Ïw£’’ãC3 ª…ãißæPzA ãá^´¯ÒZŠ’ñE+ƒ {\öró€sŒ­•ðÛXÑëmC¨­îimDcÌh…øßlôöϱÜ=‘4žiŽ^^qß”UÚp@È$–Ê…Á£b;‚¹FZñͲÌïØ…ÝÛm…Ø7B*;ðïƒè(¨† ¹Èç>£“Ñc¯´žx$¸èˆf†:á#ÏCŸ»– 9ú…Qg ¼b 5<¶»¤¼ºjæîzÂØ’E#Xàɸ=HÈBö|RñºÉÄ 'ÙôÝ¢h)MH|Õµ2~¶¤°róÁ!ƒáÉ ã¢ñ<$p¶¯ˆšì×ÍGçZ,œ•y„¶9&'1Fãû¹Ä¡¸î¶RÎ`ÀAv7 `ªºjâŽhù%c^3œÃ¡ c è²xß ¨ø‘Ãk®”©lB¢xüë|ï`?wªfñ¼ÝÚHß•ÎÖ¯kéj(«§¥«ÐUÓJè§ŒõŽF9§ஈyüñ¾\z©3sâtÚÛÁ¾ Ó·V6k½†¢ß ˜çõ”®™¢) îàZænSܨÂ9›);L£u°ÏvÖQx{·UZÃ_p¬©.Ûõ„Iåsù 7ýÕ÷xÓ”3ÃŽ£hüRËKÎÙ>{ù(OáùåœuÐÏ‘îôí#2ßRðù‚Ú(8ÀÏÕrî2{ö(âß\¨göÎ_qÑ4ÛòÇK_ ù¹ðƒÿUCÅëè¸[Q¬l°=Á’á @ [hÎj&!§ qÇ ì§ÙÄg²ì$ääç粫¹vëœ(ãÊ“î|qާeÂÅÉ8ø‹+OðkTk¯#•¤g$­†ø2|gÃí†(Í93½íÛ?×<žÃºÍñ1Â,sŒáw4¼°´;~Ç* xûÏã¦òÃeŒ޹2<óåôR‡ÂñÿïzÑ??óczx¯“Å´^w‡-fѱm$nü¦aÿ%­6¸6³n„ô["ðg8›Ã~–Ís 5p»—±m\ØéÍeùÆœ;åœm•cñ¾×psZR¾Qb¬.p.1 ^Ã×¶2¡w‚*¸©¼EYâåoúå dLϨ‹Ÿo£ ÅžsOókÞh¶È#qGÌ©WöuÐÛ_¨µ]mE0’ãOKM÷YK±Î”IƒÔ†*i¡P·í£FÊ:¾Š©™Ç¤‘•’|T™x ö7õ7ª–È!ŽÍHRvÎq¿e†|a\â¶p3Q>P9êhÍ,”_,гcØò¹ß@V»Øyäpö[7ðó3¥àމtŒ’7þ‡§io)ÈnAù,†ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ*-hø³â×|d»TÓJ_k¶l·€àZæFâ ÆÇüÎ÷y}G…mý=ãe–†x˜ûe½âç^×0=®Š#p9=üŒ#÷K½Ì›’ ~3ò@Ho’¯6Aù*mœÔõZÎãŒ5:¯Än£¢·BÙª.ãCNÖôyçä¾ï©Ð—&ê4Ê»Ž—­sƒ¥ ç4S‚yây³Ý®8ÈÈ;·'/xrá¡¿xhÕZKVÒTYa¿Ö¶ªÎ*â-tR±Ä埉­s˜Æï‚Z Nâ?õþ€ÒÓj-I¶X¤ätqUy²`ÉÈ×| ·ÈpÙÁÜ1R•¿g …•z÷QjKµ½´â<þ#+Áû,ýJœÕTðÔÅåO{2b:¬^7ð¯QYxåsÒ–Šjëì÷ —Ôк8d¯qq±sNA#cŒíœ,ù៻AÁyÔzžß÷+”œ”ôÍdͶœ~²Gü$õscØ€pÓê²…]4mšã‰wÊcŠË_p§¥£<Üð5î“åÌÀœå§e p{*ãm‚¡?’âàøŽ>]”Kñݹkéãâ}¢&ºJHMx‚8œçÉwêçËFü âd7}”4i0¼r‘‚r=Ô‡ð“ŨôEÚ²Ûz¨{l®‡ÏpiÉ­ wüEþ¿ Ær§¤Ñ†ÓðWK9ºI³›±ÇOÍ%Ï`!ü¤vÇUÖøÞ>&¼FñûC¡ koZ_EqNm¨©.PA4~•‰‚HÚé$:=œXyŽI»ee}-©lz–•Ö+½ Ò•íl´³ãûÀnÓìz/Yä¶:÷Unp9±žøUDB¬.>ë˜øw»Σ}lFžÜÒ3ÏU ånàˆû4¨À^VñcŠñÚªä’J^+ïunq$Â$Ë›Ÿß‘Ç”wÜ»”­•RÓAKG 5,,†ž68¢kpÆŒØ:ûK?þ_äœâå¶{ªÿß衺*‚[¸ÙvÒDꪸiÚpédk>¤ãüÖØ83¡lÜ<áõ·OYéÙlM’ªQø§˜´s½Ç¾ òEÔã’H9\HÛlåqv@íí‚ —Žî»Nëè5žœ¶Ù¨Ž*K[ðÅZÁñØyø‡rZÿE‰ýfp} úEk¢£¨‚'¹±ÊÙ7âÀŒúà€WÍ\ì䃚ٷ†Z[ø¢iÚðþ{S*6 ÊçHFÝòò>ŠÐñÓ9‡ÃýS®ºR0ޏÅßü•¼4S:»z&XœYwŠlHì€ç>¿ùÀî¶k;Ñò¸½¿vZìˆ8þf0ãÊ\GrNÿÅ!8Æß8ê¡×Ú?NÑ.‡­n~8®¸ú`Àà?â*/cDÆéµŽ&ró¾ãNÖó ™7[b‡ªQÿµxÛ¿ÄW¡ø‡¡ ›ƒ³Ð•Ìc Øü±²„_h\LgôÝ@Á.²9ŽÜòÎïþÙEzáñ0“†ú…°oà,„‡>;•TY'v· †ü¾"~«=2~lœãºúÅ60áØ(-ãò•âíºº ü:Õ ̓ÞàC»‚ÒЩIárœÓø|Ñ1?œ“lkþ-Äç;òßeOðù­ƒ²èǨsqÝkÏ$óºØ'€ÊÆTpÆ#-æ®75Ãf“Èð¶Ì•žÝ‚íÇBUƹa‡ƒúÇΖÌÖ:ºxÌå{àsZÑêI=:•¼KæøÑ®»gUç”n?Ô§þ2±N±©ó5eâI9‰’¾¡Ç>¦W,ýöy£ãEÕ³LÖÈý;;b<Ïõˆ ±ê@nqó=”÷c@~Ar'>‹xàh>.åÇðÖÑïþ°ÀµåùšÑûJbýb’: j<ö}íòу ?”ÖÊC½1Ì÷¦ýB–”ò²hƒãpsrZïƒò]‡¢†ŸhÙõ¢ê!«>øÌj÷û=|öðr뀛}—Ê?ü(³þJH†Œ’AÊÁ¾7*¡¦à á³y5rSSÅ·?ÞéäÁÿ Oü–¾iË]!ÆØ|ò¶aá…óKÀMú†–¼ÛšíÎIÎåqϨÁY->ˆ¨V,ñO®ÿ <»\)j7ZæýÂߎ¢Y6.Ýg3³êÖ;™PìÊ6ú-ƒxÐ#J𡺖²Ë–¤pªÍø™J6„ˆeûöú)ìãd*gƒ×*vFFôÊ üCáïêµï (Küd²–¬µÓÓ_îNøq™!ÊÑŒe½”¿Ñ—hÅœK5}7!.™ÓU¶#Ôààã9ßsó_¢ã ì…î»ëû+^×rº*IY#]œ`¶ã·Eáj Ž”ãîƒfÉwšk Þ Ã-u+ì—®K_â†ËT@lW82êY~vîb=7øšwÉn2JÛr ¹[£¸Û«i«håo4SÓÊ$cǨpØýÓŒ•ñ¸9§¡ ’oß Øn ÿy%ßZÑh;sä’žÐÆÍPÆn$ªe­Û© ÀÇ\½H¿ ¼3‹†¼0££¨§k/·6®ï!ÝÆb2"ùF.Ûg˜÷YDAŒwP×í.“‡ÄoŸÒ[ÿû*†Èª½Í!mŽ¦í •´òKO:0ó ñÌ7àŒ…²ž q‹Hë9E$¢‚ñ~UE¢I¦„°`ò“1»g™£¡ä “†ÜHÒG'ˆm|§ÊMÀìתs}:‘܈ouË£ÉØïÑqpÉèï”PûFà'G霞FWÔ°Ž]²èšFÿá?÷ +Û€ÖÖÝøÕ£-ï`‘’Þ©yÚz‰ZçVÒDu™¥Ìødw(ÜH=®7AÜç+ë‹<ûŽëµÙÏ/ñÂäÒH#ll ÿÚ0“Š–yò,AîmÍ;ÿûUëœ`ê1ž¾Ë`^(ª(¼=Ûdц×Ü*ê K„{œly£w~˜Yæ>@Á—glóT|‚ˆ¸€N©Q³Æ 5·ïV‹¾¡§»6(›GQÞ ÷¸8ó Hç‘é…š¸¦îzKƒÚ_N^¾ …YṖr<’âÌ.q‘× ÊñJ@ðù­‡ÿÛÐi«Y©2crFAöSãÀ<œ¬sys-ú¥ý†1-ßsû¾ß.ç6Ùoö+èökí²àÉcó)ªY!s}pÒOe¼bZ¦¸x{ÔRÆd3[ÝkÙ ‘¡ùÏ`Ç8ýоëì6®ØÁÊÖè ê=7Ê¡n{ïØ®9ÇËä¸ Àéù­uq²k¦…ñS{½SLúZªk¿ß㑎Æ9@qÜ‚Zâ7ä±çu&¤»ë*øoÑÏK$ò™I(©%Í7çæÈlŽªÊx&&È\IsˆßØù©;àUõâ“VM C¼ªj«— qk|Ù<ñÍ~ˆÀ;í鼉ãW‡ÅmCG~¹U\-WHÚØj§¡äÿ[Œts4lé±7‡Ú3Oè]%G¥ôí#¡·Rs6Y sœâç9Îvä—}= ?ý¡z–[/ ¨tÕ0º‚´Ž:G$#êóúü1ë –ãn™¬¢¬ôõµðÐW‡¸ˆßO4cù‡ösÌ= A[6¬ûýUÓîä±–æ°™1ø¤9ü>Ã×ò^œ c!dl­`ÐÙv]s<€Þ§¿¢è’03ÜãªçÈ‘¸ôwU„±\©¯6Z½¹èë©ã¨Ç©cÚßàWÚW48aÍ{®,¬q-þj•4ðUSËOS sC+K$ŽF‡5í#v ¨çÆ :OPS>¿@4½ëÎó|·ºŠVòã“Õ|A§™ ãâ§#§Lë^$ðYMf¬Š¦†XgÍ]ª¤ŸºÖ78.ob:HÕ<øQ¯ô×4Ó/Zf´;”ÔÑÉ´Ô’c%o×b68Ø•yµÙŒUãë}CG¤ô…ßS\Kk£–®F´€ç†4»•¹Û™Ä=ÈZûá˜×¼WãZ¶†•ÑêH+î—‡GH÷HêšìóØËCzg[ósgoBàä· &ý¤P·ú¥&%œÌ¹ÌÑ“ñ`Ä3o„gè ê+ç—Í!§8‰Iw×ax³C Üô¦6¼9å‡ò»cƒëÝOΆÐPÒ¶=C¥[oŠ6ÒrXëiéØã¼Ì09˜o6ZGVqÔ=ãÍ}u‹RÛ©¨âu¾¶‘¹‘Ìg,ѽ Æè̘àgÿi¾ù ÖàçïÜ<ÔÑÞì5Ž@ö}æÎÄuQ:7ûž£9 f<:ÖV-y¤©u.žšSGQæJe…ã¬o=‰Á#\cØœ'ìáʇØv\2IPoǧ…ZÒëûu8í@<ŠÜ £­cvw·™s·xÞOUfx.sFÎÄ/ªÑ&&òÎH;à-”øQ¬Š¿ÃÆ–'É!†’Jgóà9¯Šg±Ãbvm펋Ïñ˜þNÚ„\_Lœ“3r7öʆ¾jþáâFN\ÀÓqwÏ›£_ó[.êå±À9÷÷B= Œ_hœ,w¬3€9Ù~ o® 4ÄÿÕ ïe“|*ÒßÚ2d\<ÌÆFG#üïÛáßÛ+cšv{¥Y‘×Ji¢}$ާ‰ÏªŽWN>dpcO§å…ï³<ãwï«FÝ;(Kö…ÑOtÕÐÓ¿îÕ6ƒNÙˆøK£•Î-Ï®þª+\#Võ鎞Šyx¸¾nÒÓ8¹ÂŽíWýÒ'å—ÍHzwCcÝËõ¶uβÒ:n8*õ.¥¢µ·²9]ñH=ZÐ œ{l­>k›G¸«|¹iZÊçÚíVzz:Ï5¼‘TÏ$Ò>'µ„sÆ2@Iê$˜1ñc+ÊÕöZ]K¥®– È¡’ úWÓ¹³3™pÀ$wÁÁú-pÖð‹”w©-ïÐ×YäŽPÏ6Bü»Áàã—ùªapÇš·†>/zŠž–³U¼ÖU»WHÆ>W· 1<0¸81¬rŒ¹¸Î1‚—‹æš»C<&ºÕs¢p,%®†hœÞýˆSÃúãžk1©õ\—ºè¤£dužž)`åóFã™ÛuÁol¨IPÊë]t”õ –’¾Ž Å;y¹_¬qdt!À©a 8k¢cßâü=;­b>‘ì¬s^×Fèä-s \ÒBà©Mö~¾¢>#ß(d¦”Ó>לÿ,ò¶F¼9‡›ݯvFBœc°UQ;íüÛÑoswý!PÜŽÀÆÕ_³š«ŸNë*GHÒöWSÈŒÿ…K°ƒÀ“æ¸Üé0''Ÿ¶?<ŸE¯è2¿”s6üÖȼ²&ðO¾ž©ÕIç9œÌ tnó\$aÆÄ ˜>˜î²â"*Áʪ""""""""""""£³p{*¢'tDBˆˆ©ßª·8—¬-zD\õMâ@)¨¡. ý©^vdm÷qÀZ¢ÖËŽ§Õw=AvÓW\*¤žwŸÞs‰ÀìèØS/À—«¬ðž'êVÅ5u(e’þ6Âñ—TÛ¸ ïÊIèज़ZG\.]3ò\FûŸ¢¡-è¸às7ú¨Uö…i))µ]‡XÃm-Ê‘Öê¹G—0žùs ü5eqkLIÄ^hî"ØhßQxŠÚÛuÖ(‡4•§&2yGW´™-pýÕ€­VË•ÚàË}ªßW_Y!!”ôкYޏkA%N<7ªÓ:å|¿Úî4WKÅkcû¥u9„Ç 8%Žk93¤q$ãð zœåךwOÞ¦²\nÔ·AñEQ+cµåÀIè HÏó^µ—Wiû¬N4—j‰c沞vËÊ[³¿ ;¶TñÁÄz­gÅ94ø¡¨¡¡Ó’–6NÞWLò~)±û®¥¾­Áî°ÿmÒÞ8…¦í09¬š¶íKMÐ9òµ Ÿ©[sóäî}ÂíóUEóTõÏBz®±‚É÷\Éø3Ÿ—eâêûs5FŒ¿iƼ5÷mEqÜ4ɘ~ejzëMQo¸Él¸ÓKIUG+ ©†Fò¾)K\Â;A\ìÅÂbÑÌæó {z­Œx0ÔR_xAK,21Öyå órÙw3p²G²Í]BvEB>Š„n ¶¸ ô޽µþŒÕ–K­;waÉõd!Íú¡Wø]­8 ©F©Ð÷[³ôÛÈ×Å)ÒñOÊ-98q=ý}-ãZ[àŽ-En¶_˜Ø÷”8ÒNãê\Ðèþ‚1óWGŒªïÒ”Œ¤Ò4ì¢3ƒV'¯3Jøñ»b-Ž0ÇzsaÛ³ÆtÖ áÅ·Mh«Ø¯Žé(–âØY‡67ó¥Ø$göVUð]iÓ6® ÛÝd¹A_p¸®ÝŸÉs'piÝ¡­½0yIVmÜìFÞë‹Áë±ÇP£7Ú,În Z$,is5?7h4Õù € ""Þ¼Bžè[Ö›»ÓÔ\ÌTXØ@tpÊI2FìZÇÓœí¾EÕâ ólÔzý&Z,U–Ñ}”׺icy•­}<%¡¿XÓÎÝÎÀJŠQ<±üÍë‚ÎøÁYà Nö×:J7\ð.p7âs1žY˜?y½Çí Ž¸#cT“EQMDkã•{\sHÈ ŽÇ²îÆÇlze¸ îºÜ§©V/ô4\DáeçJ¹þ]UDbZ ’¦3ÍIè ¤ú8­ZÞ-Õ¶›M¶åK%%e,®Šx$toiÁ.ª9<¹Ã¾alÀmgÞø D€ÒÞª¢<ÇbHŽO‡~Ÿ矚xñ¬l u”C%]ÆÂvòÜ[ŸSØw†Ü¸Çiâö’ºNêfSÓ^i]+êN#Ž7Hç’zr‡g±­¥ráß"¹t;„wPs°Q«ío/¬ïÁøu#§cKR 1î3²Ì~ `3x’Òîå.l-¬•Û㤛óÂØž×O(!¾d¼Ü¸=€ûíì½V¸>¡v}UYÔ€‹ÇXø©£Å‚í<´sÁ(¨¡®„s>šP1žS³šFAiê;‚åá+ˆlÖÆÏKQASh“ÌtW’üFÆ´8´IâkÏÂ=p¸á/m\5Ðöý5Dèj Kªk£¦ò]U)ë#›—`‘ÔôW-ƶŽßJúÊŒa †ŒŒœNÈekËĦ°¹êŽ2ßê+Þã¾QCKr"˜ø[óq'Ü•3¼*h)xÂ+}-—ɽ\Üë…ɧñ¶Gã’2°ÀÖã×›Õe“ÆIÜ•òÜkéè_LÙßÊjglõÁqÎÞÝÔZãÜ{l¢ßÚ¤[Y¡¬ºÖ výêÕY÷Z—´n`˜`@ö´ þú×áïlw§Êc£3¶–àÐvt|2ëËð=X×ã{E·Kq²ªãMe¡‡ôƒ00Ñ6yfWïñ«oæá¯iëg{š¸Šk¬C~h‰ÙãûL8w¸Öʨ炦š:šycžžhÄ‘HֽނpA_KHÆ:.`€qõÝWª°xýªn }ßKÛ+.µ äûÁ‡–BÀàç9¸'êUác´Û¬ÔQÛh᥆(£…­cwåŒõ8k@ìÞŠ*ý¢Ÿþ èæóp¨ÿëAy_g& Öç8xuåÏlK¾¾É¹X[ƽ­ðéœ~*©*›ïŠˆÚáqZè¡.t„ž~«eÞèéè¼Ì%ØþØôÛøpÒÚãºfÁ]I÷Š *|úÈÿeðÄÃ#šïcÊþòÚdlk#kXÀ֚Ѱhìr@ÿš4ü#|ªãÐÁÀ€OÈwþ)Ë×ùabzV‹Sð>úʨe’{|&º–HÈ "Üø'ró4õ<¯8QÃn°e’hÚêˆá£¯ªûå¾£ðšzÞPο»#ZÖœç­#æié)(šÏÒôöê*JÊ–¶*Ùb¦ds9ÍÄŽhã~ªxÝÔZñœ]¬·Ü[s¶ØZb}©žsÍ=@dx3Æp\|ÂŒ‘³I<¡Gʺʚ©ùç–G‚÷’p?íÉú¯w†ZÆã¡5Õ§U[À–[}@‘мü33£ã>Îi#=ºõ TxáUô†ŸâÖƒ±Õ¶éYCª­r¹¾tôÄþ¦F€yyÃz€winmo Þuƒx¥Gª5ņ®Éj°J*£ed|©©nñŒ‚×aåØ#à îH™Ôz•ͶH ?’)e”¹î"YÇF `èZ9ÎO\òá\£q•SóT÷ £i ß—§^Š¢œpâWÇZàX@w1ϧEJYZÀ20ßu|mé}&ý~5,:‚Ž–çWNÖWÛb‹Ìy‘v%%§ .h`å#®ý׃á·Lp;PR—qPÜ(®PÔ=¬ ’ SÒUÅ‚Fdk|ÌõÈoAŒî¦õƒYpÎŽ”v]I¥h©XÞvÃOW ,h=ùAt^µ>®Ò•XúžÉ70¾]|NÈõÙËÖ¦¨§©‹Í§ž9ãÉñ¸8du ´œ ÁÜUM•©Å­5qÕü<½iËMîk=um9d5Qœqýùø]ðJÕ®ºÒ:‹Dê)ìšÙ=¶ãË¢xÈ{{=Ž9§+|¹áÁÄœö+›g“-q-oAì²çêõÄzÂËW¢¨«]ZúØb†vÓÊêaÌðÏ×9ƒ^ÿNÃ+ev·W¾ÙHëœpG]ä°Ô²]dÀæ '~\çì»\FwÑCo´_Z2FXø}I#å<]k·ø!ÑÄßm‹ÉíPÝs•üïæ k6 l1Ÿ¯U¨µ†ÃÀû¦÷¨ªµf«´2–’ÕI&`´W3É|ÜÄòàH `oÕ`e÷[e,kýålGÁf¸fªá=ž¦ >ç`"‘ísòó3¾@|?áYÓ¶øÏòG7˜IÙSn§ÂVµí-8 ŒwÎzŒ(ãë†ZM3IÄKc_M\+™GUh,|o Æ?ia¿ã#`PÄ6è§×Ùè\îÞ¾&Ç©' >™¦¦$cÓ?Íg½[§,š²ÁW`ÔVÊ{•²¨rÍO( BÒ0ZáÙÀ‚E…4·…} aâ 6¡Žººãg€yÌ´VžnZ€àæ;Ío){Ààs¶Kº)wÄOæ¹ ƒ’ <Äôú,]âg†¹`u\è¤Ô£i^÷Âjê)Œ¸îRâHòV¹p w˜^ê„Ô¨ÓöƒØîÚ.´ꊘí—-TÑo÷x_is†3ËžPOA¶U‡ösײ-Sª­n}E¾ †ó­ã>гõV·JÇ7õ žgµ®ü-qôÆ@Y÷ʪ®=ÕFªùÝJǹÅýÉè¾iè$k¢4ób6ÉÏ#Îbñû öZ¦âÍÒárâ. ©¯¸Ëq¨uÊ >¦Hü·JŽk\[û?aÙ[ÕBòøÜ[€×úAÁ˜Éæß+²–å37FŽ›Ëï¶ê{­º¥“P\*édhp2A3ãpÎ;´Žªü±q÷ŠVsÍE®oDôÿZ˜UÊpð÷§|^ñ.á•ÿ ï€ÞgUP˜ä;œáÑ9ÿtôè²%Ælbó¡÷Îyè®9$c÷ÁÿYdêo|(š‚–­×:è…A-tn£q|88øÀÎÁ Œ¬¡¦5EƒSÛ௰Ýi«éêçÄè¹kN î7#¨TIûDìz¢j»§ÓÕéˆèØ"…¾e%Kˆççxs]È1¾Å®ßxsg 5mÊÙ¡uæ…ŒÜnÔ”—º;LR ]ÌYæGÏÈ]œìc` J²¸ë»· uäú~½æªŠFùÖúß,µµPžþÎiÙÃ;b œþ î”—?švrCè=,ÍÏG‰žìõèCÁY˜sîÎnR0}v_-Ò®–ÝEU_[+b¦¥…ÓÏ!8 cZ\â}Z§ã´«×¼D¼êŠ’à+ª9¡ŒœùP·hØ>MYȽîXÙ©µÕOJgÜk¢¦y‡`kÜ-ÎÙ•’üLp~ˬttWùoU—6§šH„.§…œ¡­-vy‹Å·à!av‚H©U•¥’9„`´àqÕvDÖ‰:ì²§‡Þ$Vðß_ÛïñºWÛœL7*f¸5;ºçÕÌÈ{}Æ:¶iIQU$Ut²²X&cdŠFžÇ ‚¸]¸wcüÀ¸ûv\\0F@è°Úï•gâËn”¤oý¢?ÍkÉ® äû:n^ê{Xa ¦¼¶¨;úØÒ>žWñR8B"ѶOÌ…NC÷9ê¹ó@Ücá'Û*ŽÀÇä¾jšjj¦>*ªhjXæÞÙckÁaêÓ‘¸>‹¸7ÑðòþÓÑt>‘€*I"ô#ò=>аâ/ëà{Ðüýiù›·áöiÎ~yÿ%óÏr¡¤$ÕUEo^wc úñß„öÈŸ$ÚΆg48†S5ò9Øê_ªÇ7ïÚ Å¶»êåñòÊvçêIÇÑc½Uã#QL\Í=¥ìÖÐHå}d²U’ÜŽÍòÀÛ>«ñK‹ºÃˆÁ¦»ýî:iúx™OL‡˜Cy6ˆ“·Ug¥Q¦d>kœÈÁ-ÉÈë…åÔTÊe“Óa•Á•3—žRKœ¥¯€Ý ¨£»Vqí%6˜u´±º±¿ÎækŒ‘ç𵼤ôÝÀg|L 5ÓÚŠÓØ/ûœLÇ;©*'.Ûsr=W­°¢£·íèã/lÜT¶>çw"׬#ŽX஢šw€çùM‘Ž,9?´Òâ9ˆëûˆ:6ÿ¡umn™ÔtfšáHì7d¬?†FÚc†àþx …o³<Ã|c|ú.ØœcasNîÉsŽºv<9®Æ?Šôé/°IÜËNp=7WµƒÜE°Í ÖwØÛý\rUºh›òŽNf‘¬/ø—HÆEV,7чIWop{ÎFÿª{;vÖOÑ~0èj'd¯KýÞ3øª­ÕøÜîbx¦:8¬û¡¸¡µ›ZÍ=¨¨ªj_¿Ýÿ.qíÈìG¶UãŸRU$k$c£5ÍpÚáGpB·¬šGXµ Eþɦ-Û¥DFª©)[äi!ÄP3’ÐIöWvÏòX3ÇŽN×Dׯ*>õãkªÂ@Èy '2a®?Üd;²‡|9á&¶×¶øª´Ý£ïTÏtÌ`±ñr1ç£\D€´;Ø8è¶ÁíÍÃË^™•5¯¦c$³¸^ç84CZ 8·¾J»³óUæµ¥Î!­$“° x·ñ A\ˆÑ4QÉ›tD†H[þÍ„uh;“Ðãm—¥àSˆö{“n:^¹žEö¢C$syñ5¹åÇb0O©ÉôRÅçߦ ïÝwŽˆˆˆˆˆˆˆˆˆˆˆˆ¨á‘‚¨ZÛýIÇe@AÎ;ÈIUÆýUSº¡ c'®ÁW{*uDÎþØQƒÇë/ÕšKOÒ[­×9mÑWóUI y¢’WµÌ…œ­%Îvy»`sä/›Ã¿† }-ªâ%3¦¸¸6xmâ8o7‰Ý/@v9Rž628Ûlkцµ£@¹.~™+誈‹x˜á|WÒTðQTÁC~¶Jf·ÔËZìŒ>ž¡ŽØät-ißZöÖ6+î“¿ÔÙ5²¦Õp€s:˜G33€ö“³šH8pÛò^Ÿ ¸‹©45ÖZë-Åð‰G,Ôï%ÐÎ3ÑíÏäAv*ïÕ÷ÎñBëÒóES¥u¯ï5”ò:¢–¡£©‘®øÃú|Y;uÊ»¸}]EÂIª.6)aÕ÷z¨ä|wØ«ŸRØØràf7Óy\zg Ó¬½ñ6»’¾è æŒ:Ž’®§ˆT€y#ryØã†’÷\‡„ Âí ¨ø“®(ô¥²) –i\*§19Ì£¹ç‘øè0Æ]€7+hÖKm-šÏCg·Æc¢ ¦Ž–ž2I-Ž6†´gäëÐnq’¨$i ëš"*=ÍcKÞàÖ´d’pZ¢ãµÖÝyâö¤ºZ˜ß¸TWÈøCvk›ÍÔ|÷?UæðÏGTkkkÒÔ—+}MÉÏŽžjÂD^`cœÖ?o(À;¸—âð‡Å÷ü.†Áܾã‘üUÇIà¯]>&Š]¦âÈ%Á‚gàãû¡s©ða®Y¼[¦¥<»¶f{yOæ¾3àlj¨œ¾ÿ¦ÖÆ]l³#ÇFã“lúö^]w„,ÒUG ;,uÑ=/ž:îF°“ЇN69wÒø?â›òùª¬0g §HH ìÞýX÷Sð_‹r„V]´•Ê nQ‰[ Éq¸c‰8ØzðÒé{IQíö+íK£åò礢˜àò‡<4†ä–f’:•ñj=m­*¬Ó7«Ýú[{› ¬¢­ª™Ìk[ñFZÇ’ÁÈÀ¹¼*:ÁKÆ› ËR½¤£’S™&òØ* ÚÖ=Î;Îbüm’Ð=VgûE.Öšê½%i¡¸STÖ[ÝT긢œ9ð  ™ÎÑøyšAõ}ÿg\:“jZ‰ ãL˜ãŠ2ù–jòîFçäwÄGöTÀywš×5Ä07pÁÜ{Ÿu†¼Vk‘§´\ºFŠ’š¦éªí·xÅUG• PELçLâ|´ò±»eÄo¶ñKÀשõ¿&¼Ýé!«³iø³Å3öK<¡Ì…¥§®0÷çÖ1ê°ž¯´ÉaÕ—{$£ ­š˜Œçð<·¯~‹Ê_Eº®j …5u9ji[4dôæi²ïŒËà¾ñæã4²k|6úÛËNGúX¦÷Ë¥qϺÃm8p88)Ôû¯²Ë k¹I9Î1Û+è¢s‹ÄCpí°¶AàûRϨøau[Ì•Þ{kÞçdŸ$áŸð¢Ìl;*:åq-ÈÜî°§Ê'Õør¿=æ4µ³ãÀ0àJÖÜŽ$û+“Bë}M£kW¦ïwT„µïû­C˜Ù z´=¿Ùp!m7BÝëoú6×|«£u5´Í™Ño‚ápÈÈpdw ä‚×®¶}ΫUSþû¿—¢o&¬t¤sçetüCÄœï°UÎǪ‘ëºëýŒàòÚα¯üaá…ƒà¸ë‹/>\ß.šqRàáÔ8EÍÊ~xXËTø´áå¶7‹EÞó+]ð">üÎ$ã豞 ñ•©)M1c¡®<¦­ÒT¹Ãl„³¯ªÇŸÄÇ/-’#«¦¡‚OŘk#¶k´qµ¾MT‚®6´tk[0x`íðágÍã_.8µ–Ÿ¦™¤jm®1»=ÉäÉßEŸtGøu«Ûm:šŽ*™1ËIXñO6ç»ÇÙ¤«É÷+x¹2Úë…+k¤g;)Lí9¿¼œã®ê0ý¢­®CHÔÂÙ>âÛ”ñÍ(; À>¡²ºT[àçµg .õ:~â!Ž«þ•M3<È'ÇNfžã³¨Î Yh¿š~²(Y©´íMÏõ“QJ&gÏ•ØpšËºkŒü2ÔQƒA¬-qK€LU’Šw{|xî:¯øåd‘6V=¯à9®iÈ ô ÷ 0øÍã\v::žiÚ’.5âëS‡ú´ni>V{9Ãú4]±ï†ï Öým§¦\@mÂšŠ¼µÖªeò_,Y Í&ZHk¶,Æ20zœ7¬4ƨàoÛ@ùÝe¶¡•–ÚÖSvcàã•ÍõnálüGµq7F³PPE÷jÀDuôÁÙò&gÜ´õöù+ùŽËºç+š"""""""""""ʃ`0„žÊ™äªãÛdéßeLdúaW¶ã 8ÁѤ9 Æ2ªÝ›Œ` “ñž¡USºâX×¹®sZKNZHèpFGБõ\רu®ákµKWu÷Y$düOäÒ8ãÐ5§p½Zw9Ôñ¹ä‚qÓ+°€FÊ""*`Ý¥ÅéN$éóeÕ6áS5=C$ôÏýèßÕ§a‘ÐãpTLâGƒ½QCQ%Fƒ½Ò^hÜì²–½Â †·¾#þU‡ï| ãŽoõÞ_e<ÄC«<Â\¾KO8ÀÚæ2“‡šÊ)K²×:Ñ<`^g4óÊËšÃÿë¼—×Ý[¦©^ZMÙî Ž"AÛ”‘î¥/¸=¦8Qc–šÒd«¹Õµ¿¸MŽyH…¸üód†ï×rVG#?ˆãoUÅØ‚Óó\\[ÊÖ8òûes¦’f/634`y¬ÌÏLúew",mâoQ1ÀÝOpŽo*yi ,¹t¿Þø.?E¬ºwÍê×9‘dpÜ0€O×eßgšZ*êJªy¦§ž,rFò×1í<ÍsHÜ@9õ eÞøŠÞ&pÞ–éZæþš¡?u¹†ŽPé@Ú@Ø{pìv9ôY?‘¿¼}:ªµ­høBâŸELnU pËC¹NFFpUƹ…®/ÁÎpHþJÁÖ\Ꭾ©e]óG[æ©d-€M};ùX Œ·›”4œàÛ,{xðŸÃYêéeµT]ìÐÃY$0ÈÙ&:½Î{Iæ=IÎ=€Pùxª¹Öê*ª*(ŒI3‹ŸÈÐÀwìÐ3…³O :li®iJ ¢ŒT:•ÕR¸®™î“9îpæŒû“žÑÊp7öZüûBuµüi¤±Ç)Ù­q³’ÊL?V˜ÇÑgßz^+'hî Ÿš¢ù]-sÝ °75žøòÉù¸¨ŸãH¿Hñöý#s(îÅ·ZB\ sfÉyöÄ­•»öhX}^¥Ð:Ÿˆü£ÖV:jû½~šœÙ*¨á‰ÓM%0ýl2°4;“Îte»ò±ŒÆ8ñ¸[Áís®«%’²šØÞ~{…M+ÄÌÈ1°‘‡¿ ŽQ¸=q…‘è<4VÖñÞ Is–+@µSÝêk*¢òæm;ÈdŒßâóÚÜìÉÎ7¶|Upú×Âî) 5‡ïBÑSCm(žB÷7%Ìpæïñ0Ÿl¬Uov*X.Tâû<ï†}©´Ã›ñ[®1Õ‡Õ³°Œ|áwæ¥IüC¢dc×n¨G§ä%ñY®,š'ƒ×vÜ §¬ª»Âû} ÍHöîâßÝhø‰õåÂÖ9æ·'nÊè᎑®ÖºêÍ¥(Il×Z–Âéy¼˜ÎïÔ5¹wÑlωºÒƒ†Z0]ë) M%+&¡°Ž`ÐÐOW;°¨×|ñ…¨…S™l°X)bÉäI;Èíœ9ŸÈ¯·NxÇ’(Ü5F™‚ snÆ@.Ûg“œut×xÁÐ̶²ku‚ñSXK„”ò>8ØÌ ¿'9ì)Ö¾,øƒrÚ÷NÄsäÂ*&>üÒ‚ß§"Á:Ë\ê]]Zjõ%êºñ8qtn¬”ÈØóÔ1§á`öhx¶RÒÞn§;.¹ùa$o¹Êé|\Òró‘;•îY4~¦»ÑÕÕ[ìuóÓRÑšÙ§8FØ#ŸœŒ`–¸ ÷-#±YMøoâ­óNT_(ìQ3Ëpòh檓Է%®sy@ÄF{e^v¼J©ds\®v |~Yt‘Ç3ç™§|4ÐÒO÷±î¯]-àÞ˜BfÕвG3û­¾oÂÒYÎày0yÛöå=°¾Ý7á‚[¥t×éIEÈ>éKM\éO9'g»”9z`’;,ÂÞèbÊ #b·–ÕyÂWÛÛRøÁ‘Žxòä³™¬- 7˜6W5“@éÛ5-¶–’žSKm¤}%,p²7K§á`<Ñ0ç®Ûä¯Vßj³i«T¬²Ùèèi⌿ȣ±‡r·a°Üàa`Nx–—ˆ|B§Òwm9Kný"ÉC,¹åŽc Ëdæ’ÖÇ}”‘ ïôX/Ç<ÒEáö¹Œqce¹QÆñŸÄ<À쨒׻š÷îNãÕl‹Â&Ÿ¹iþéØîu’TKp×(ã2s2žðøãg ä!ÄvsÞ²Ø0y¾ªÃñ WµÔÓ·™®°UÂ3ûÒDæ4ïîà¡ï€ƒ-W¹¹Ÿú‹-[݃³|MÁöÉ\)ýñ/:ùc³Þé%£½Ú-×JiX$5”¬™hpx8€æƒ¿p ±+ø ÚgSÍûc{K\`‰Ð¿ÍvÎa-ç d A´u…\(¶Óq±T*inÈáólÅí#Ômó Ý|Ö‰žm|@¥’ 2ÑWms]œÿeØÆ?ŠèªðW}òZiuõ±îïæPHÑœáǾ~‹É¬ðY®ôÚ³MÍ. åp™ƒ9g”öÉéì°ç81Ä^ƒ6¤ÓuQÑÿO¦ý}.3¶dfC=ƒùJ°¥‰ã|sØßÑWâ8€ø@ë•öÑ×ÍZ6Áèp½K&¨¹[¯´+mKèªéfl´óBy]‡B1ü}FÅN‹u/ˆŸ 7ˆ ‚~Š%¡®t5Ð# tHnzò½ÁkÞVóNÄ÷?É}v±Rú–QÇÉ+ƒ#Á¿8'mý×»~´j=výy±Ý-Õ‘È$5Ïcs~Ø †’1׌¯³MqQézƒ&Ÿ¾\mäaÜ´•OŒ;8êÖÐlA^EUö¾óªz¼†Ü$¨¬5B ’'<À¸?‡p¥¶ñr\áOÒT…¡¡öÙLd vcò0=2°_ˆþ)]x¡¨¤”ÄØìöª©YmŠ:v*'{€$¹Á NÎËÀ^%]¸gªèµ 1O-ºsåVÓC*bÎ=9›ÔÐBVÈì·;múÓCvµÔ²¦Š²ÔSHÀ摶Gסè}ÂõXrÕTïóDDDDDDDDDDE@ìNêÇCëÝW'8 ’GüèNßòTyôèGNЧ¢á+œÂ7FôÎë–7ö¨ æºWRÛ-µ7é›-,NšipÆŒ’~BŽ kjþ*ø­¹jÚú—š+e¾ ÛéŽá‘¹Ì­hõ"RISvá ±ÍÊ3Ž™\ÑEÄ4c~IÈ ¹Á9B$œuUpô\[ʃЀªî\àï°¸¸slמÁG^-ø Ó–V\ìÚQ•3Þég’›ï5ãîñÉð9Ùåp팃챆Ž+ñ³ŒÕUÛxÕ¥šÖ\£„sci<’8†ÆÖs9ˆ8êTé‚_2Høß œ3Èüs7Øà‘ùØŠ$}¢š’X­ÚkJA1 ¨|µ•,¨ly2õap{@²åá‰÷Ù)ÚʪöºjYîô%“;‘çrÒæ½¤ìõQ¢ sI8ÿµIŸ Úø·6Ÿ•òo´/ÈóáV’?¸ÙF~JxàrïÓS)ߢ¡¸N¿$ùaqx#q‚ºÙ6]ÊAÇ)õQkÇ®€Ó?Ð Î Òiú1¨_WMeÄÔHÙ<¡ú¶â0îG;v4’3€=7Áæ§—Tp Ã=A樠 •Ùêc? ÿtµeõ«oµ²\\‘–Ê\ÒpH ‡`ž›¬˹™°åßòRcÀå”|_®µÍW0ðÜoŒû-dUC45ÓTBúz¸œcžXøÞÒÓ¸ ‚+ç•’6D£î3ß =KÁ- 8课p³Zñ*iáÒ63Y;š**e•ÅFF\ãרV|Ò^ nÓD$ÕšÒŽä ¶S½2 ßÊ=z–-~x?G¢zÍÀÈꛋŒ‡Kyzã9Øœcª¾´ïxU§è »BÙÌ%ļÕÄj^ì–ñJ\pLl8Î6é¹W½ ¶† }= †žž!q´tkXÑ€¦ÐZâwߨîªÖç ›G²¨h «Æ«½ÑÃ{6·H×TüÎF»ãårícÛ~«ì¨µ´rA͈çÌÈ;áÍ#óZÄà¥ÒMÇ3Pe WÆÒJç3›1¹æ탿+ºÚ\FÏÙG´"¢X8)l‚7mQ¨ c†z Îþm Sd÷nr}=ÖÓxx# òAÿæÝ¿·ÿ“F¯>QŽŸÁcoÄ  oøÏþj“`qÜoÿ~ª"ø¨4ž 1¸bªÏU ½À1¿o«ØpGñNPFÿ5NVì:oüàöÙvßü—HõϪäÀ;ŒõÇuÅÀò–†äˆ;åXšëƒœ3Öµ"¯RhûmEY{^ú¨iç“—¾2×8clvú,m}ð‡ÂzúI™n7ËT朗:Ï5±ÿ…àä}~« k:îÒÙêô­ÞÛ¨ `s™™¦©xÇ@–þ °f©ÐZ»EÖǩӗ;3žîXßUlR»Ã$ü?"VjðC«'±q–’Ñ-SYE}¥’–VÉ'+L­ð»Ð»-sÿÚû+/Å~‡7ŽÚX Á͹ѷrMÌ\°‘²7è±54­dÍÉ%áÝGe±Ÿ ü@§â‡ ¿FêÓVÝm<´Õ‘ÎֻΌ·õsrûŒ´ŸVŸUvj^pæù`¦²UiK|VúW½ðEK”"/x{ðßqœŒeX7¯ Ü0®ž®¢’’{sª\߆7Ÿ.†ˆ†v$Œ—õ;+;Rx<·¾Ø¥µ$ÔuŒÍ[|ÖMø¾#Œr“–ôÿÇñ³‚׆¶#}®UÑÔUIA¤§-Š òלdr»;tÆ1²Äì­.§¦dr=ͯa³^Iåþš˜þx‹Uv¹Öâ¦7š»dng/똮pìÜÇÕK6å¯êKOÕv®"F—òŒ“ü—!óÊ"""""""""*8àgeUĈçè„»Û¯ðNç÷UÛ¢ª§º› U踸g§TÎFwU ª'} ÜK’Õ§èx{i«1Õ\_qäv€~ïϳGªÃ¾ A㼑C#[ìÕ>s]û`pîSô+bc DEçjKݯNX«/—ªØ¨­ôqgšWa­·¹'¤å@î6ø–ÕzŸTÛªtEÇMÛíÒ=Ô¬†oÖN÷PùZi<¤á»ÌzÖGà·‹x¤m=£ˆÔǯ–.ô±ô;o4Cqß%¾Ÿ‡u,­•ÔW:.ê¸+)* ðHÉz¸lBúvÎq¹EL ØtÝSluÙW§üÓ9^¾ÕVm¤n¢ÿPèmô‡¿”eÏq 5ÜçÐ=Nø WúÞõ{â®—¸íòT×ܦš«î´äµŒaqÀhß–6O_„’¾M«/ºRûïOÝj-õÑŒ2X]ŒŒ…Àìæžàì¶ᯊÐqWGK=C"‚ýl{b¸ÁyO0%“4vkù]·bÓÛ .4a g8 «Z^-5IÔÜs¿Ô2 ËIG £§ÁË@‹á8ö.?U(<KGvà­nu[!®«¤ž'G†²9\\cÏíÌ\¼ EúÕWc½VÚ+ÛåÖPTÉK;p$åŽàõiì¯ Þitÿô¥ò¹îŽŠŠíO-CÙœ¶0ñÌí·8’;Œ…´Ú9ã«£‚®ùsFÙÌ7ÁÍw&ÁñMR˜¡?šãŒd¯šr×;댨}öj[h·é†TÈù£¬1 ˜?|än¯_³ª@85v§ó9‹/’?—?‡šGóiRajïŵ·xŒÖtåáÜõ­¨ÈúØ™&>œøRçW;pðHéå-t5vKdTíaÇ4…ð–ò ’=V½e˜AÆ00¸*Ÿ–óû=˜_À»³F2u<ÃúÓS(µâ£RÔêŽ=꺙Ùsí”Ñ91 g§1kžG«ÊÆ-89^´q½öwU:v-ÞYˆçœå®!Ãlc#Õ|?× ŽË8xH”"´”®ŽIê)úw},ÍÇ cƒ»uÇUŒøËÂÁ®9.«µ=’îØ$§’¢[|uLž'reÜÉ·) ñßB]ø_ªÆš¸Ü¬õµsÁ÷®{ppäÏphxsG+Ï)< œ o¸XàÓÊAqëÁY“Ãgn\\ª«¬©¹6Ù§èbž¥œ¯˜ÌXÖ6?OˆN:n¥æ€ðÿ6˜t-ÿJšÎªžžŸîðAÌŠ8™¸o+Hp,£f²TZ]+ݨnuñ“ÍŠÙàÁ—8îõØ4(å¯|X6ÏÄémš~ßo¼éŠI› µ1¹ÞmI:'g”´òžŽê+,ShŽñNËM­Ÿ¢íßàŽ©Õ3ST;nsNCÇá8=GS…íé~póL× ÛŒ±PVÒÙã£i‘¤t-s²Z~E[\wàn’â¥ê'c-ZŒå§»SÆ ŽÌ•¿íüGb;Ã+—‰|×TÕUQTZjšâ)nçž–¹™Ç(wG€LnÀÁ lTÙðñÄéø›¤þÿ[d©·VÁ†Í#b?v¨>±»±õié³¾2x›rA#§ªèqu\»ª†çr7\‘ ½ü–1âß ªé㪳]+-—Xg󣕒4;û®ëÔ20@Á ×ëÎ1p¦ã4ÚÛO»QÙñÏt·3!­È1’Oí4 í’¡®¡ºRɯëï6Ï2cuuU;]ŽxÚd/ãl…³«_´Ým·ï̪t”í¦IXæHÆ’Üà–¸ï×ò+øã¹Sjn2ªÒYQ —QC÷‰› åÑIhI{sò*`†Í&8vØxomŽÑý5hŽS,tVzJvHvæ …ë…pò†ô8íÕcß“8 ®ÉÍ›4ìÁþÓysôÎT%ðGK¼HØ O”ÚjÇM—`†}Ýà|þ"Í–ÇXÜ7Êl7;wß²¨ù}P€OñT#¶p¹@ºä;mžèÐppã²ñ·¿U¼eqCSðîÇc¤ÓIC%ÖIDµ¢âÀÀÒÒàZ Î}p?ðuŽg©¸›6™¿Þê.”T€U+Ù3]á~>áÎØü=ÁÀ2Ö²––ºß5 m-8Ó/5+ìVj¢4­¶^hp9ETà ÌãÛÔ7=Ž{¬›àËÑÅ5…+cÿ]c¢”dDÌmRñÆz°~Èú‘Šøóá–›LÅÄ»- 47Xë™ ÐÄ9[VÉ+dpsµÁ£;d=Ù$€¬Ï|V¬²ë¡ .u–Ó{yû›^ãŠZ Üü?Ù“ûÁ§×3³ä¨~I“ºªª;úú*ªz¾ñãÄÇÝõ¬: ÛPÿѶQÏXóË-[°pà6<Øz¹]ŸgÿbŠß[Å”dÔNçÐZñð¶ G›(÷s¾G@׎ëxÃá¤\:â“êmtîŠÃ¨êÊ1œ¶)Aýt#ä\×ÀHѾ áà÷\Ôé3[)šy¨¯Ò6ÛTÂàÐyÀíöË\þŽ#ºÙÜ+Žúͺ…ÝJ×´UC•F ÝÓÈC#Ç® ÏÈ«ªÙÝUW-LÏ2>W9Ç»ŽÿÍO_ºv+O ½±ï|×Êéêdü-HèÆÙòÉú¨©ãOF|AêH™-5ÎVÜà=9¼ö‡Hú§˜>‹Pù“FØãkÜç4 ž›ŸËù-®pÖöýAÃÍ9{|šZûe<ò=§b÷FÒ㿾UȨ@8È誩œnA ¡;®.Ø/†·-ÜüÛãù¨_ö‰[ †]%uóª \$ƒ·#<§~¯^¯Ù¥sœkfs³~éSsø\|Ö»ó¿’™kZ^7iŒ>&53°@”r7=ÿÕbÌøÑY)ðÃH¤›2Ks… o¼lލôøTR# ¯ŽF5Ž{ÖÈÞf02FG¨È#èW9>ÎÊØ¿ÑŽ¢¤$ÖNøòrøZßmÌnü¾J%ñ¶ˆÛ¸Ë­(¹%ka¿Vµžny‹<÷ò“ž¹9=e{5­ÒøYÔw–S·š=UE¥pÁM(#åÍ#?5‹)Î'Œôø‚Èü­©‡Šº=ôÙ2·PPî^bj1ŸB2:½ÒËŽãºâùÆ:G¸°eÛg •«~2ês®ø¥{Ô³¿—ï•n‡mˆYðF> WxArâ®®m,fzK-7Å]ZpÁ¶ÓиöU°>è 3í-œÓF FÈéd|Žæ–yW½ß´ì=€`ÊG/¢± ´Og¾Û)®T#ÓTÄÇz„un]únËlÓ¶:K-š‘””‘ˆá‰Ñüþkï{y†2Bcܪá®M•3å•Ó40Êðd`æpåÈ$8ŒŒÂÕoþèþ1kI(èÂõUåü½$=ˆR§Âî´6zý)ªmµ1ÖCæmÁŽô¥Ñó9Ùh<à€žå_^$´Ûô_„šÛMÞ²õ[5“ϭ¨;É3§kÜà; ˆsÑAÉ7¥+ Ä3e¶ qmãDØ.ñ¹¯ŽºÙMP×FCâk³¿Í{‡¯LŸ’°ƒº¯TôÈ^^«¾Pé»Uîç!ŠŽ•¡Ò¼cáÀw u!b 3âǬµ´ú3MSW6æëƒi©¥ž&–KŽGÍ å$·Ê ryÚq׺ˆÌêXÍ@\|X9\äi8 ».#=Ïp€ö$oÐ(Ïö…6sÂ+k›F_W¨^gç1Ê9HÎùÛä°?š‰ˆ[[cä} ce-8¾^r}²õÂØkp[Éôê©Ó”…@ÐÒ2>¾‹W¾$™]'µ ¹J%ªI\ “'—•{Þl6]MÆ6›Ô¿Ò¶úØfÌ&cideÅç@ ;wÊÙ5¶šžŠŠ*H„4ðFØâ£ŒhÀhö/¡c_5ƒ‰ü4¬²µŒý%Oš›|ŽÛ–`ÒÏ`rB‚VÊ*+MUÎÇ«(ßG]OSŠZ¶’ß"HŸÍñ7™åÆ;s,¹à§^¶ŸŠ·M7<¼”z•²Kmo+YS/cwkB›F´ã± tîW"7ÑWª"""""""""*;ÝSöq¢®äöDØAߪªe;n¨wUDE>ÐŽ'¾Ûf£á¥¦¤¶¢àÑUu,;¶Wþóqöhìå”÷û>-uàÅuÒZGQ]{™ÐTÇ4²(X0ìg”`©/Mç$·ïê¾¥Ggl(ýãwˆÕC†ÑiëMT^5ÌBHdå|T¬ ÊàFà»f|œíöQ_‡i¸‘Æ*: ´&K=®'\k£9V±Ík"'ÑÏsr;µ®ÂØžÖú6ó­ÓÖAošéo‘ÐÔQµÜ’Fæà@æ¦[­–£yð÷¬¨Û;â ûÛ@ê /l¹î-ypf¨Ññ‹FWFA,½Ò“ýkBÚèLüþJ¡Q¹Æû”8ÊvöV§µ•€áíßTÜ$ m9ò#ï4îøb»ÜòM†IØ«zX¯šËUAK¤¯½ÞëZÀçu–y_¹>›œç°S—Zñ£Ip ºc†ËQ¾›} #­|5mŒÓ€1’0ìÊãÌòÒ[€Fûíññ¦õ øÿÁ;œZ鵥¾†Ž¯U ÓÍ?||Ãá%¼Ü¹Ü(5mžz ºjè ›SM3'‹±kƒ‡ò[cÑ7ø5.‘³ê*R:jØ3ž^vËóáG?´Vìèt˜´‰\>÷u|ïhxÍŠ"7NïéòP‰Ïòò쌓_eµé¦èþé3䦠¶BÊ€:yżòŸ¬ŽyQëíÑ®¬Ó6sM {í³º‚¹íˆ¤<Ѹû‚ߛˆ:QK¥õ—PÃ$}ºº*žI–Èà\Â=È?5°ÿº†‚éÂAAIYÙ®TÌó9žÊ~~xïSÉ#GÌ,Î3ËŒ•˲¡wÈö\y·Æq•Ï>¿ÁU#dŒ,{Cš{¾Ò KY¥tÉ®8‚¾¢ÞØ’6;ÿ±+SìÙt㈩­’1µF^Ãø‹¼ÑÊG°Ùù…:–º|~²ž!'|2¾K]+¦ö]‡ º~«ÐÔ¯mãÀ›{jÚ鬺‘ÂF»$†¸Ô´vHÓ¿a9Œ·Ó丒Hž›E.>ÎZ¸›>¼¡2‘<ÐÎÈû9¬tÍqéÛÌoæ±GŒøâľ®lLku#ÜÓ™Ô—ÄJÃÊTð²Âû÷€My , uE-áõÙØÈM#ÉùFÙXŒò½®ô9Wÿ dš—]iºÊ8ÌÕT÷z9 £.’FÎÇ5 w$ŒcÝmK›%À`¯ˆ×†Ø8¨¯’;ßj©©éÙˆÛæ¥bq%¼Ïqs±ô$ù­³ð«M[´—ìöKd Š(iXéÉ#š ÞãÜ“Ý\냷qÏE‰|_×þðé«_ÌZùéã§`Ì’±¤~YZ×,t“-'–/¿ÆçŽÿ„{ŽÊߓĚèÁ×O€DáœÇäÃ}óŒwYÛ_Gs·ÓÜ-ÕPÕÑÔ0I Ñ<9’4ô Ž¡BÏü@e×S[t ¶©²ÒÚÖ®-c²>òá†4ï‚ZÌŸnrºþÏÎ2éªëø‹[Êiì¼ÔVö`ïS#<™Î>ÝË‚L™Û—|7↮j¯ÒY9‡%Íñ78 hþX”WŠx_‡n–ç±YC|ºðîæµ;*u³^èa•Õ~G”)ê\Â󛓱n NwÆ7É~üJÐhnF5%®ãq–ß;™k4¾[[ä¸s–Hç;#'5Û;,qâKŽuÜYÚI¬T6ºKtÒË"•ÒÉñ´4‡¼€LìÑÕx<¥Ð"ùM¨5õÞ¬QÐU±íµÑQ™dª-!ÃÎ!; qÁØlT£¾x¼ÓqG1´i;µD…¥ÍûåLp´œôÃ9ÈÛÿ¸ânë«ôÝÏOTi[+-×*WSOÏ|Îçãk‡ k°æžS‚ТۘXþWŒ/¶×x¸[Aû\ð8½¯ŽBÒ ƒ}@?@²«·¾Å NC>öç ç?µŸ@®;o‰Ž+ÑFÆ·VË3#w7ëàŽG™-Ü+†×âï‰ñ±¯¨u–«•Ã>m/7±å#Ý]–Ï™²7ô–’±T´um=DÐõ<øíØ«ºÇãË,™¾èzê8¹±šŒu'8‘±¦{,ñÂÎ"iŽ$Ù'¼iZªšŠZyþï1šÑKÊY’0⛞RFá]è£Ú)j©­áU®ãÿSn¹5õ Æä=¥wÈcüAE? zþ›‡<]·_n2T2Õ,rRWù#.ÈÒ¹r9¹_ÈìnpÓœ-„ºûW}°ýâÍzÛ.sRÜèÃ]ä‚ ÷Ûu Ýv¶ÒÉM8aòòÈü§3›§0tdã==Wϧmó×x%Õx±[µ…=@kNüÂÈ‹O¯õ ãÔ4¬?«qÀ츢Ï~oFÙǺkyŸËŠño¨£sNp÷ù<Æ­ßÑ\ð¹Žß’V×`ô;,‰².ŠºX*¼¿>0ãùã9 µØ##2¼YtËâ¡®«¤c³´U‡~QñsõÎOù®M£¿²®2ʈ8Œ5ÁÕDœƒ×xÉéî¾èa«eC9åÌ8.sÌÙw0Æ/.1Œ’sôZ»´ÓºçźxÑ3ªu hÙÜÕCù­§;%Î×Õa/±yž¯Ïø•SFðéþ°ÁüŠ×uLøcÆw-Çó[w³† U& M‡•­?"á>i)ŽÖãÊ:mæJ OÿSú«ÊÑákƒt15•û¡zˤý½˜æ·—eèTøpàœ­<ú•ïåÕÔ3o¤‹"i-3bÒvHìºr×Ml·ÄâæSÀh'©Üõ=Ö0ã‡-Ä{«o2²¦Åw|…õU–îVš F˜×ÒµŒúåd}¤ìš#I[ôÆž¦0[è£å`'.{º¹ï=ÜNI?–ËYÞ!÷㶸Øúv¨ÿ|«"™¥®Œ½Œ‘¼Àò;8w|o‚¶wEmÒ|càm²š¶Œ:Åx·BöÅ-4Ïhrðæ9¸ïÓ*'ñº±[.;¢³^èh©Rcp’žªNVåÍlxs ÀÛãQ²Jg2!<Ù_f™£¸]nôö‹],õu•’ ‚ó>Gž£ÕHá?ŠW¸á¨½>Ϧéä-sÅUA–¡¬#9ÆÈÎ9\öœ¬¡mðiglÍý/¯nUTฑEoŽîÉÈÏ|ƒnŸ…aŸ<5Ñœ.¹ÙìÚr†âç×Qš‡V×VK_ÊZ@é“·}°°ÿíöÛ¦º°[ï6Ú›­,`IÈL/•­~û? ;öS–íàç…Õ!æŽéª­ÎÁ2®)ó!ñ’0¬ÚßOßpâMDŒžÌ$wÈ‘3’í°x'¢†ñïšöJÛc 3ÁImû¼ÏØò†½Ò<7|ð†;ädJ? ¼‚‰h¯•`óÉsx.ë×—Óòüî­3áûƒö #¨¢ÐÔ3T1ÁÂZÙ$ªw0;Ö9ÿ`A°Ùlö/¸Y-TVÊPî&’ÄÂìœ4Nö^‹ÌÐqQèUVñO¥5EÿGVǧ«©ÜÚØE$Ô•l指|ºó–H8sŽ\åkÿŠÚã uue¢§Íž‘“AQ'•øÉå$`òç#+¿‡œNÖ­“X¯3ÓÄׇº˜žx%ߣØv#r¤=ÓĦŽÔ¦ÝxÓ5ÕRSÈ ¸¶ ([9cÚ×¼óñg„Ž™î®Z7Yu[Ý®¢Úë¹·>çq¥¡l1=³E;f{ÝåÈ`è7z(B6c°zÿ%ÁýáÒì,œtÑ— h»Á °{Jï,ŸÉåux3ž:k¯¼ssÿH+qÌ0y|÷òý9p¬e8>ÏK#ÿÑõÖù3ê$c¯^]<-™ÍŒ9·.#8?Œžž›DÎ2ESµ”u“yõ-¿W‰¥åâ¢Nc€02wÛeép%â—Œ:2q!g•~£‘ÎÆyclÍ/ùüË9kÏw­w¨é­:Z¦ :É®F’‚ã=AlPÂç·–¥ípI€N]ÖìIr%èê$ð·©i¦®mÖx­09õ„r žI"q”’7åæÀ$-iÓoU|cù­ÄY¿úEÿÒñÿÕ ë\Àä÷õQ¿íº¶ƒ4VÌIr¼DÑ‚6ll{Éþ@Èé#F žñÊÖ´d—„¸6Œ»m“ÕrèV3ñ®køu¦­¦U-wX©îPÃ45ßsäÁ»Œd¸ ŒäDMKâ'‰Uº‚;­¢’Öàu-+sLH|¹ ñ²2B»tÇ‹uOäAu²Ù¯xÃ~>šiœNßs˜É€)Ÿd­7M-k¢¾hš÷ÆÏÈâ-Îqœg ë{šÆ9ïpkZ2I8.¸fŠ¢Í¬–'·™cƒšáêØ…añ‡C?RQ²ùbŽ’-Sm†FÑO+ óXày¡$ŒõkŽy‡`î¿ /0ݬ–T>gÂ<·ºV–Èèɉ9CâÎÃ!\ '¡ì«•ÅΟˆû®¼Êé0kRNçä©Pá/sšyZÇŽý Õ~„ªpⵂjw±/†z=[Ä]=¦e‘ÑEs¸CM#ÛÔ5ÏØ÷ÆTÞÐ>´µ±¡Õ5ñBÊ:Yüè,ÎŒÌÜ€Ñ$ŽwǿŎ^¸Ü©*=UOEÄç%ßAÑc¯M¥u»jÚ bÏ1ïñ–Ä ç„Úê[ˆ½Q1 a¨žœàKM,mÿ‰Ál¡½:`&àú•ByšKÉk—ÆÜÜÞ#µò¡£?õvóV÷†ú¡41!»Þ=¾0Z?šÙà vöTsGpºÜ1°\¡@WjÉ8AÏÚ^ãk×Ôšé±6¢Ëw€QIðŸÔNÆ9Ž09†íùE›1‚~BqËøwê¶Oá;^³\ð’ßçTn¶–¶Š¼8Žlú·íÔ9˜ßÕ®ôYusƒºª"""""""B{½•{&7ʃóU@ˆˆ¨àKH ]>lµÎ?Mr–¡ÓGx¶ÓUÄÒÒ<0Á=w„»oßúœK0Ž˜ùI3Ä#ß®ÿä­¦x|Ñsè^é½1WpWÓÓyµÍÙåq’@\6$rçqðŒm…ØÐÑ€ªŠŽh$;#¡îÆ0:(ùãêá-„ -¯¼ÒÓ¼4ìç—lÆ>¸Zùƒ;°Ü§GÙ×g†Ÿ†:†üÆS_xû³Žñà â–E'e‰ÑHö8æ¸=z®Ì;¹UåÛ}Õqì™ß?4##—·m°U\Br¨FÁ?%«oŽlœp×2s ú¤ G•d2>pKsð‘㕱ÿ §4‡ÝsËåÔóçcÏ÷©yÿâÊË£áÆAÈX.Ýáo†Ù¯µ”Ôu— «Œ²Ž+”Í’žÒãÊkZÜÀòâ9FwPCMMY£µÍí’š²ËqŽi90\×Á(ç±ü.…mzŠzzºxª©¤lÐNÆËÜ9Ž|Á]›îAÿ±Eß´KM~’á­TÄ×:K5ÄÓËÊÛø‰ë³ãŒï•hÝÉ;{ç¦={-€x4âÔšÇMË¢õ`žùni4ÒLü¾ª›¦7êægÔ{"\vG§ó]›ž£>˘*5 g¡í•ÆÛ\Ö¹ÄnsÔåv/žã2PÌʆ5ñ`BÁÜNá…³Vé;…’ñNªsɤ­æä%ãhÞòNÀœòöõ ñK…º¿‡SÿHhâuI-§®¥“̧•Àd´;‚=ØáY r õ¬·jêºH*Ÿ 1:渃Êìd|¢òu DÔ•°USÌè&†FÉ­$8‡ z•õjK]ßPWÜë®Üjjj$•RgšbOã9ß~«ÏRÛÁçtfŽá½M£TÜ*)%‡M Œ½á­s#Éäk}Yêséëø“q†ï¯u Ö ]4u·jº–Hî®kæs9ÁÊíÐw[mê;¬Å…öøQ2Cæ6yåk$ bIßfô+Ë’:¸i©gšb†v—A#šCd qi-= ã¢ÍÜ âЦᆶáΩ®žk]ÎÃVëd»îµLˆ–F2vcÎ:tsFØq#ÀàÉãy8 p?Ån.Î×6ÓF׌8@ÀG¿(_R³øÄ &†’Ýâª-{y¼ÀÖ² àsË!kßl—mÑDšÖ¯Wé--9¶ÕÒP>²yid4Îl4F1Èü>_\ùq€æüKpfž:Î.hÚ)™$÷úÜ%i¡™wÏL{­®~Öûî¹oÿŠùît4W* í÷H+(êcž Ø=Cšv!G®"øIÐ7Ç#]Y¤« ùœÈÁª¥ œŸÕ=ÁÍ>œ¯~ï¦2²xEÖÔ:ÖÖnWË%M†*ÆËS=$Ò2¤ÄÏ‹”Föà9Ø ÙÄ åL]+Bëu¥´ŽŒFãÊÐì€l¯F®15,°ÒÂÜ;¡Èïì£&©Óï„Ôš*ºûS§þôùîö*9âž:FÎd„¾?†0Z[Éž_Ú•ïèúRûslµ‘ÐŠŠ§GUtæ™ÐÇœ0—‡½æ÷,ǺËv›e¤j:Qfwë+¡c+ ÁŠp@s&Ûbî\`wo®¹Á ˆˆŽg`ˆ§#[»Z3ê¹ÆßÉy÷éDZùÝžXé¥{°;«.G¼FÒmšS/¼QóHyGžÂN¶VÏí— ®:ЏG#¾áJÆÆÀÖ×K“ÌK‰Ëˆ¸2rN@Oí_¦¸C«­?öz€ß‡;ˆË‡ñ UИß)s¶.k’–ßg–«|íK¢åqòj`eÊœ°‘˜ŽL|ÛÉþâ™Í9öV‡|Ö²M°Wóìšwã• ¼ÆœyÏ0Óõ[œŸ2 ½”ú¨ì‘€qïèºòà3ò:ôQßíª†6)_Sy¦Ž=³ñrÊÿä¡—‡©ÝIÇ}+ÌMî™g<ÒÿšÚ¼OcÁ xw)å8=¡\Ññ£]%‡ N"8}GÝ©ò6}DaßÃ*xx¡šãÇ KNâ×6÷O9 gá‰Þk‡ä¶ˆÓ‘”=sÐè¶¼eÔÁ[âSUyY>_ÝbqþÓi£x^i]WÇ­˜DEÞ ±ŸÁ—ãë˪Ú'_d=7\ÜŒcUÀÁíó]ÀûªÁèU™Ä­#gÖZ礯ŒŒPÜàtbW09ÐËÒ9Yžkˆ#þÕ¬n é{––Ô÷ 7u`öÉÝ…­ H?eãÙÃ|ÕÛá׉·ëz[¼/sèf-†¾Ÿ¨–áͶüM=ˆô$šYî4wk]-Îß;j)*álÐJÎŽc€ ÿõ¢" ÷DDDDDDD(ˆ §ÕôDL¢¾78d5Ç ÞÛMæ_lõTܧZs>>¸;4.¬©áÞÔ-¾õ!ëÕ²G#æ>Ÿ5# =ràí×ÐlsÙTtEÁÁ¡9U9Ïoš¡ ‚:îµeÇ|ÉÆMlKKq~ªÀ=GÆî»«B”ƒ†7Ï_U±ï2/ ÚH3›âm[òí·u\Äý]Á PUˆpwZ­âëx³­©Û‹‚àÀÀsÊ>ó Çù-p2¸Ý8+¢ëd.|’بĎ;eâµÇopUä[¹8=5‡ë]y©‰ãg0ûµÀ¢¹@¢ª¿º·x‡¬-šKϨïPÖÉAO#PúX ®…®v9ÜÑ¿($dŽ™XÂoÜ$‚È.7i¹˜ËkÁǾpú«_PøÇÑ”•tÑY´ÝÚáÜß:IäŽF’3Ê1Æv<£#ªðæñ£f4Sùš*¢g8æ&æÆÒÃŒWûù+#QøÃ¼ÏTØi´MÔ&˜1ÑÔÔÉ+Œ¡Ä¶@æ†파ÆÄ,©üFêËõ–®ÅWcÓ’Ú*œKég¢óCpr œpæöw]ú¬*ˆˆˆ‹ì ™Ñ5Ø'ÁØÏp¾Y '$îNá}úrÑp¾ß(,Ö¨Lµ× ˜é)£Èo<’85£'¦än¶3ÅX5/(´ 4,¯°Ð†ÙkÙPÖŽlží”‚Ùpv2еÃ_ U eEDrÁQÝñ¸aÌp8sOÈ‚,ñCQw£‚§›È’v2N^¼¥À}ã#hcÁÑ ª¼+ö•Ó7‹Íâïa¶\nM,¥žª²ºNO'7á>ãu~ѺÒíG¢í¥ÿ«ŠŠª|™s˜Ñ·ø1õX+Ãëøã¡©Û6/´§;lðy¾˜æ%´¡Ûr$î©×®/Œ¸\XàÝÁÈÇL.O~ÝÌè"w0ssÎsHz‚;¨Ùâ3ÃÔ·‹U¾áû%­·Z9*šÙ ;ê ÜÖäÆHqë†Ô~ѼKâ_¯Ï³I÷›|Ð8:{=Òb~È6ØãaÌp½Êá74OTtÕn·]ÜÐMQ {ŽÃàwá~IÛû”Y+‹$ôÏÉsÈÆø\y¶<£|+OŠú>ƒ¾ÕK#d,·TÖ¿—8…î;ävkŽÇ;-h𔵼KÒfjVÔF.´¹Ï-|`“ÔemNÓI0–JSGZÚaŒFÜíÓ¹/ªõOm–ºŠ^aôÒDþ]ŽÒ=÷Z„‘œ¥œ¹$ ö8YCÂæ§“KñÏK×y¬ŠбAP\/—?ÀrOL8´çÙlàw;z«?ŸtÕÿmI¦uš©²Í!2>뺆^^?Ó­;É9u–« È;Ä~Š·qƒ‚²uÈqsNÀ.õôPÇíÕ²ËU§t%+À‚›µh§šCÍ;õ­ó²:vúƒü#Ûé.ž#ôe=c¹be[êF߬†ÊÁõ{¶y~v7Çlgþÿ2»AàtUE…|lÓÁQáÚÿçHæ:)idˆ4Ìÿ¼FÜQ‡8ýPðao’¯ÄV›–(Ã㣎®¦oV´S>1ÿŒ[høz”Ç|ª;sŒýV¬xû\ËõÊ'óG%â¡­Ï£^Z?꯫Ãýlt¼jÑ•ræŸ'œî]‡®ëh£mü²›®§gNèÊüܾ[UÔþ\µÁì'³%¼mðÞ¢áb§â-¶„ºãkp§»ZO5/Á)ßý›õÃ÷ü*TóSÔµìθ>Šfx⤓‰8o{«s›å™í‘Ãá#úÈýqò°Rñ3º"""""""&0©…Ucñê¦J. êúȶ|6JÒÓè|‡óZŸ[‚³T™m”3>FsM o%„y€#çÔnº46©µk ¼Z%AçË·µìqi,ýWººånw ”dõÊñd,3ãZFGá¯T5ïÁ’J&·#©ûä'ùµ¼!Øø°ÏN›…0>Íúˆþñ®é_1,·ÈØýpjñoæ¦+26q>Ár''ªïتïê¨N1±*œÇ8;eR#žcÛ8è¹~Ö7\NÙ ~ekÄ­#èxù­¡–>^k³æ÷ð~¹Xúµ²c»þö-™ø_¤e‡ÝOsÚë[&$Žòò>…Ä,–HÈ8Ïm»*ŽÃºÕê`«âæ±­„‡²]C_$g®Zê™þOŸ  ¼<é.Y#¢§’'ò~É?áù€Bʧ}ÁÀèJÃ~4]Ÿ ÚÃ`ÿ©ζ¼<é;F´ã.ŸÒ÷ß7ô}ÁÓÇ)üŽA+šAõækU·©ìµºoQÜl7Vùu¶ê—ÒÔ7ûL8Èö8{Ÿ¼ñPé-ký»Õìw²Í#°Úz‘´o€wàw¯ÂOáSáPžÅPîv8ú/‚ûo¥»Ùk­í磮§’šv·l±í-wð%j玜>½ð³]TikŒÆ¢ŸMAXÊÚªwg•øìF \;ž£Øîߦá:»ävTÜ’w>ª‹ÚѺSQk+ȳi{EUÖ¼Æeò`nH`À.9Ø‘¹õ úw8¥5‡î±ð²ªŠ9^úŠì¼O#qø /'+ppZÀOrV=¿Øîv+‹­÷ZgSÔÛ iß-pÈ ÷î>`ŽËÍDE–xoá÷ˆzûFͪl0Û¾éþC ž¤²y]ðî@üE»oÓå.xQšãný!®ë®ùŽ‚™¬aÎ@Ãå<ØÜó·´üVðKOp±–ë†üdŠë!k-5D>¢œ—Ó©Wö€à7xeÄ+¬«­L¨ ¢¹Àú³G'šøbs¹^Kzã•Ç8SÂŲI,Ùß²1‘žþëºvÈC]¹\þë”N{›—·”ç¢æ£WÚ xu ­¶¨üÀë•Þ&»Àå®~ÿR?%Š>Ï‹sª¸¹w¹:0c¡±½œÞ’K4xÿ†7©Ù²..ê?äµ'¬Ý1Ö÷ÿ¼2FËúJ¤¹²×4™_ž`wuppN–*Î1èºI¢tŒ’õH×µ§”‘æƒ×²ÚwDØz*¢àì‘¶ãºëÎü×k¾ æ¾;•t³RÕB'¥¨c£žY#9\×±•¬®<ðÚ»‡zêãg– h}L­´Îò›DnÇ®Z%`9ê¬Ý{®°jZ ÍΆª‚¡“Föõik[\Ñ×û~©ÒöýCk™³Q×@%ãߨ>„Aˆ^ºwꈅS¶Ê¹DDDDDDB…S TDDDX÷Ä›Ì|ÖîüËR6÷aæµR¶ugÕTºOÃN—ÕõÁòGoÓöÉfkŸ—»0Å‘Ì{œõ*Áû9êd¨á%ÿÌ•ïpÔ;vq˜!?Ï*N!.ì0>¹\ˆè°_Ž`‡k³~,šÚ1³±×·óù}V»c#¨–g1;Qk9ÆZöQQ° çÊIõý¦ƒCp3Ôzm•Â1ñ—µÄØ4`û®s9Í…òG•íi-` tßaŸukü[2›_Omþ‰âÇMVúi^ùñX9pÒî_ÀpwÓ¶7Yû‡ZûKkû7é=1seTm<²ÄáË4'Ñì;ŸOur¸±§.-=×&³Ó'=ïòî{o•¬÷‰n\Ö3=­k£¯û åýؚ֯±¥ËßÊçòVÌü$Ü¡¹xyÒN‹-u54”’GÅ+ØmMµø~ÒmTµ&®™ÕÎ.;1Ó=Ò4vœ|ò{¬§Œ8ž¿ä°×Øï ´È9CšGï}î?⡆úÃnñ¢' ./»ÃÇõ¹ŒŸ§>V{ñ癜öñRËMØ£‚üÐæ´µÜídS€wvyÃ=}H‰T²: Zîb9}ùU± WÿH:%Ö«ÍdOÔ6~X¥@$ª€5¼³ã¾äµÄw?ˆ,ß¶rŽé²ù.5tÖê‹…dÍ‚–š'M<¯;1sȵeÇ­sYÄŽ(]u<üí§šO.ŠN!¦gÃpIÁ-ÎÆÅÎqYSƒþõ&·Ò6íQuÔT–*;”}4ÓLcwày7ˆY›Á;$‰ÓñL ÍŽÐ3F“.ß2>…dmá3„¶⨸RÝuì-v.5Xˆ<«ˆ0ä~s ¬»O¤4µ-#)étÍ’žž0ÀÈã·ÄÞQ†àröEߊÓM;g¦´Ûéçc<¶Ë,ls[û :í¨+FX#OP?î£wx/G©ê® Ž!Éæ§’,ñyh=ÁØmºHŠ|}ž³ðJçêÞø5 Á °ÖšzwgóÏ䤀®{ÿŽOÏ Ýqd1‚ZÆ7öƒ@ò ZÜyÖ7/ñ’OÑ\õpKVËuŠ\ã2rFZ×Ê^HqéÕl †:>‡‡Úͤ­ïl‘[âòß?(k¦”ï#È÷$ü€]¹îVñ©Ri¼5jˆùË]3èâúÕDHüšV¶XÒéÞ¤œu[µœÛ)O¬,ÿªÒ¾yNN;õPGíkÿÒ½ŠI$i°´5 ±<§?\ãè­?“TøŽÓ³ÆÉGlòã4Ó½›ïÓ/oÕl„ÑUSºª´ø•¯,Ü?³ÓÞ/Ð׺Šj‘Nd¥ƒÌòœZH/Ü`|8Îû­m!Ç®ê)ü¦Ý™mÁ¬usÛq$Œºu÷Y2Ž¢ ºvTÑÔGQO æd‘H×b6!}Èqè¨pGL.3œoÑuO U,-šænÃØ±=}A û/šŠÓl¢.4–Ê rN\b§c2}N´ü@ÒËUÀýohتÎ^vÀŒ’? B×÷‡Èc©ãVc€-X¦<älyÏâ88õ-œdçÕÄuêµQǵ¬@lÝGq ÓýjOù+Z™$­ŽW˜âËCßו¤Œœ{ •·øÜ$Œ=¤ò¸ °pG¢9’×ã•í çb=:-ux,™Ðx‡Ò,a¯†®'ŽP~¹Êÿ¦ì?Íli½‘üÖ<ñª£x)©ï»–¤RZ]÷ó¦p‰„|‹ù¾M*(ýÖkmoî÷ÚŸ%ÓÐZÌ4QÉsƒäsyåc‰ËÖ͆âWoŒƒ<Ž1ºÇ<Õº‡”Uw‡<ßm²>×~lžYs+éÏ$ùòÉfï×nW4àg !ÄAŒ8t;®LȤçþJª#ý£û–‹¤ÈäuET¸>¡¬þ+Éû=*L:§TP2ÖemM#&–¸ òÜÀÈ·ûO6G ‘ýK°äLÐù Ç]÷G æµKÅŠØî¼WÕ—V»™•WŠ©o9Àuù+§Ãß¼@hȃùy.x98«cßà¶d?4=zª`z.' ÎÃÑpx;Œn¨ 9ßq×+µŽ\eÃÛ€qî°×‹[5· î•í¡t·û,•v¹ã2e¼®|xãl|¸9ÁÁ¹eÍgß#9Œã$tÜ%üñ•šFé’¿UâÁp“1¹ßú%C‹@v{1ØÁŽý¬ÎÀr2ADDCóTÝþ)ˆœª¢""""'tßdDM€ô;¢",mâ‚vÓø}Ö²³²è #W©õΊ’˜±ÝÒÈvlm¤ÿÍ@ÝUâOŠ7ß¿Â5MM,óù‘CCp–±²1¢LvÝç=ò±¥Ú®ç¿].’2ZÚÚ‡Íp«’‰'rùephØnI8{.Ý#ªïºjñOt±ÝjmÕqlÊŠy9\¶ÞŽiîA†Þ7Ññ"¶[Á‚›SSÅÎæ°rÇVÁÕñŒìFÜÍúºf´*‡u ¼cøz¸Cu½q?H7ΡËÅ™#y$É4c³s†r7##¤O§¢šI@cc–ïœÿà¶#à^¡³pйM-ʲ#&'Ìœüã×üŸà+yÇ7HÍj"šF2!À9Œs†:gr¶µÃ[L6>iÛ5+ãt46ªjvº1ð¿–&Žo|õϺ÷&Ë.a È;šÂž7gò|7j‘çÔQGïÿIßü• ¼3>“ý?h‡×IlXÚ È/!Â1ó/åÜ…²Ûݦ‚÷g«´])ÛUA]éêaxÙìpÁÏæµuÆ-_Þ ]4ÄH~é u,Î×Ó»xä¹Bì«Â=orкÒß©-’%-@/Ÿ•³°à>7oÑÀãòô[HÓ·{v ²R^mupUÑUGÏÈ$aìFFÄ‚>௸¹ ÆT~ñÏ­Û¦xBlÓòWê9¾ìÐÓ‡ véëÂßñ¨MÁíQ¯ø™gÒ° }@mL‘õŠ¿¯Î`8Ïrը頤¥†’’à§…Ž(ãhkXÆŒ5 v0»ºŽ}U°qüWÎbḯþ cv;{®/fG¡ÎvVÆ¢¤{î-npe‰ía9Àø]ÿ5©DE:¾Î–½Ü2Ô2·Ë7–µ¬å¤@Ì»ÓoÈ©FáÈÌà‘Ôû¬?âÏ]?BðVëUI!†ãv£hœÇc2 ÇBÖ`Žä(åàC~œâ%f´®¦¢°Óùt®sA²A†‘ëË9ö.iS°G–üX?UØvØŒL¬ãÄÒõ^nDŽºRy]Œ¿™ÝGqËÍ·ËÑkÿKÚf¾ê{]ŽŸ>u¶*Xð7æ‘á£ù­ÂBÁL½ÐÑô\—Èæ—ç’}z(ãò¡µœËÌÐv!ÕÖKcšnµ°Rž\ç‘òâ0ü¹[aÁÉ;.ª©YMO%CÈ ‰Žy>€V¹¼Œx‹Ñ$Ž¢¯ÿQlyƒsôUÃ]¿\(öj‡Òéý-¤`•¸«¨šáPÀ~ #hŽ,ÿd™$?6E”¼ih´ç‡í=Q-®;•Ö9+ª¤¥óµò<Âç8gý—Û¸+3L f2vÝE¹õáWŒûеôzo_SÓUrD[ü¦&Êí€kÝ4sHp•®'˜m(išÖGåäO„OûŒ.áè©¿ÍCŸ´R¡ß¤´mhjäØõÞ6ô]¿g$2{W$N‘o‰ÎÙræã×âj˜]“tÖÎÊZYjdÏ$LtŽùOù-D¾¡ÕsÔÖ<ºy!ÏöœOù¬ùàKMÍxãTwÆÉ!°QÉ4Í~y¤2±ñ0‘$¸b1Ÿæ©DLî£'Ú%<‘ð–Ã…Îj;ÌÇÂÒ)§gÔó?ºT ¤Jðy‹‹z…3¾ÍƼ/1M¸rñŒ ϶ø"¥óZ1°ÈÎwÝAoÜBuó]Óhz'9´Z{ã¨!ÿ ÕR0?VÂ\½áG-7c¼j]CEc²QI]q¯—Ê¥Ž 2;~ä€ä“€§Ï…®TpâšëwÕÒÛëïwjaHúx˜d†žŸ$º2çlò`>n£GŠ> ÏÂOÆÍó锄Q½ÁÎûœ‡$Ó½ÇêXIÉç%¤œg£ußLÞéï¶ZÉ(nTrÓÎÁ»‚]ˆ# ´ìA ìVÉxÄ«WôDš3UÑÂŒ8¸ßlçîZOQò*þC¿eÅã ƒŒ|–2Ô|áþäë•nŠ¢Š¡á¼ÆòRµØw6K"sZI$äã';«çLY¬:zØÛ6œ¶Ð[¨éÈž’6±­qhÝÀ~Ñ$ÎįYPœÊ êï 3M¬ï—š=AGE¥*ªßQm’9¥|Aî.Àü-Ï(w7Ä0G\)ƒÂƒŽi¨kkÝ ®žÔŽo×:8Ãÿ‹}ËIßus,5ãJ…Õ>õi§¥|ÒÆ)&Äm. 2ª"ç`v æ$ö“Ñ@¾oÆzcR[qŸþš‰mUÃ<ÝÎvFÜ;‹PpöqCý)§H%­ø¥¢‘Øp;dò<‡ ð“ÕAHùãsG7Gd ©eàk‰¯·j 4ڵߣîdÉm;hjFîc}ƒ'9›¶î*gž˜À98ù-txÜÖNÕ`ú«úÕz º@g·Íí²×ôxê¡õ^£\\Àã±#8Qí©åá–›£æ’ÞÌ¥ õ-§ÿñQ­œÞüBhÚPîQ ŵ„ŸH—^L-¤®º‡ò³9+ r°4ôÜž‹]3ª¼Þ"[é[ŽX­°¼îØÇ;¯NÃè¯?³~(Ä­H÷1¥âÌ9I×38?@§zLå0©ŒõTÀ'p¨@=pHÆøU;Äàì7*Œ+˜®rª±ÿˆé<®ë‡sæÇTÞ™ëæµû˜Þ'i¨+ª<˵#yÔæf ºÿ%³àO1ÿ’nIÛ>ÙZÃñMLú_Ö)ñÌ럘v~ÆÇ·ø8.¼ÊŽ6hèá‘?ô”a¯yÀhó¿®3|-ŸDì±®Ï_çÝyšÆIbÒ™bɾw4Þ¸…| Ð6»yË û…²ª 8gáqŒE½¥=ä¶¶>h6=¾k_^!.”¼Oñ{nÓ¯¦ÝOt¥±rFüó0JØ-Ü|OxÏlE°HcŽ(™Lk#cCZÖŒ@Iø±è^ñ×Âv_ìG‰öÙ«Ÿw±ÓÅ M;^Ï'îL|¯t€`;Ìk¤Îy±ÊÙÝdo ¼H{Õ‚SSNÆu–`M¾Ík¾l ‰„¶ªšÿU3Ù3rÝÚö5á¿/ëì]¼=Ô—-¬(/´%ÑÖÐT‰C^ w‘è[~khš/Q[µf•¶êKLžeÂÍî3Õ§ÜA÷ ØDEM†: îª"""""vÙè=€APˆ3ö(ˆŠ!}¥µ-e‡ERÅ-M\ƒäÖÄ?ùADžÒG_Äý-E)`ŠkÅ#$/8ha™¼ÄŸLeL/Ú…‡…µP&{¦¼SÊÙiag,¤oœö·Ïçîýômƒ‚õõ åÕi ú1IDT=S#ó^v¥²Úµ’ªË|¶S\íÕLäžš¡ÌxÎFǸ z‚…57ƒW²÷WU¤5=<42J — w—BÂG0óø¹FHÛ''ºÏ<áu 4‹­¢Zz˵Y¸WG—æ\ZÏRÖó»ßr¯o©-zCIܵ5âVÅCo§tÒžîÇáh÷'{•ªÝUvªÔ:¢í~­x5WÙk%ƒ¤sœ@üÀú)/àZŧôí‡Rñ{TWÓÑRÑÈm”“Ô|-ˆa¯•ùqçc7ÙÃ|©_¢µæÖ^gô_Q[®„sI2þµÎ2Xpà=ÈÂìâ6‘²ë½_¥µ8–޶>RGã…ãvHÓÙÍ8#ò;­õ¥Šé¥5=ÇLÞ¢ò.VÉOP’GG·a–¸aÀ÷+³‚üJ¼ðóVÓ^-2¿•¡¬«¥/ÄuQgv8t霠ïê¶W¥/¶ÝM¦­ú‚Ñ)–†áNÙáq)õõ ÓÆÛ/ˆwk½D^nöC¯::GÍKBÐâꇴg”‚Iöž‹_|cãgî×*ŠE_zÓŒ2Ù2І·;da¯píñ ÷|è{Ʋ╨šßSžÑS÷ÉëË9Y$ÍËŒ8îçsdœg9ÆFv ¼ûÌÓ5‘ÒÓ%œ–‚{ t_ˆ;ÇÅU4‘¶®¯L×Õ‹-'Ø $cR@ø^òà¾p ì œt¶fÄÖ††0ºï^>²¤ª­ÓuðQÅóº–v²H •Î…ík°K†rµ“áÊWñÃCSób÷K1>¾SĘú–´  `'âÿ5òÞmÔ—{U]®¾5l§¨ˆôsÒ×È•ªn&éjͯ/:N­®[*Ý\áýd]cxös OÕ|zf÷q²Þin¶Ú§ÓÖRJÉ©äiÁd9m†z΃XhËV ˆžz‹\5µi kÎ×´cð¾)í°=ZÄ»ºã¬5µLÔñ>²é|ºJøã`˦žy‰vÉ. hÜ(Ñôš‡vM!Dï2+m0òoúÙ\Kå~ý9¤sÝŽÙºz¢".·ÈÖ‘“±ÆËR×Béc¬ÔˆK°c‰§žMÁý ~N+ x-àÌš¦ómâ> €:Ën¨•Ô”òGµ\ìå ;õcIÛ ¹˜ìBœW*8ë¨*)d`p™…¸sy†{ÝpWE-»’§Íys‹[€ã€I8.vÝÉ î1òÆ·ª‡ßiDÎÚ +¹é¹™î>ìÇÕß™XKÁ•L4¾%4“瑬k䨌z¹Ôòµ£êH f릤t9¯†ëQ÷M]c¿ØSÉ.Ã÷ZNÞ«Y~(¦Ž^9ê(âŸÌŽ#ŒsÈï)Ž{=¹^çŒvÆ;,»öq†¤IžPñen27ÇžÜãø:¶#U; DMº* €AŽÝc¸Ê¡Áë’€1×¢å”XïÄ´B^kv÷iÝù7?äµç¡åš=ef’š›ïGp…ÑC¹ó$n¾çÅm.fÄÁ#ÇòŽ`Þ€ã|{*Oe­ ŽOz²NC|ÔŽåÇLÑ@Ißæ­îVÒ[8Á¤î5ÕÓRSÜã–i_ÑÜü–ȸo3g¬¥.m-ÂvµæF¼½"f´c<²´wÜÊû5éh=@æÄéú.§ hÉqò°Æù* x ™°ñÒš7?{%L`zï±ÿ ?E° 0­®)jº}ÃÛæª¨kdýFù£Œ¸2LaßÕØ xÒ3ê~(^x‰q`˜YÁt/ þ¶¶£˜zVy‡‹ØT롎XéØÙ^K€Ýw1¥®$œå|ZŽ×óOÜlµ_ÔWÒËK.Ùø^ÂÓü „~ îõ>ãÝï‡×J†5µrËk˜ç uU3ßÈ@ï‘Î÷”éh@öUÆå‡h§+Y§+ÜX÷µ“R‹·ù<øí»oU_³š©Ÿ~ÖTb9yÝ $üÀüÌÇ®È)Ž™V§)ÅW 5u9|±óØë4o-pýKº¸Z¬‰î–00Û,÷àzµ´Ü~·ÂXüÕÛªàÈ8Á l›û|ê¶ߺ Tè‡m¾K‰vøÎ깡23±®27¥­ zŠ*ŠwÅ,m{\0ö8d˜*x¹á«4ß]n¤òtþ .ž´‚Øj<è}Fä=¹ê@ü'wVÍ%mLwbÃÓFϼÀѳCZðï =ÎOuŸ<qšm/tƒFÞåÍŽ¾£–'ž´³?î¸ã#·_\ÎwÆÁU}Slg9ª"""""Šƒ`ªˆˆˆˆ¨ãÓ+‰“ì OÚ9[W',ÌãM“Ç~½õ‡8{‘þèX‹Ã…ÖÙeã~“¸Ý)'«†:ðÆÅ.]#Ád]vÀ{šO°RwÇõ<0pŽÍ,Ômel×ö(Á-ciæøIwv~Šáû:ê¼î ÜéÉÞ ¼ƒÆ6ù©0ŠŽÿ±až/ÓRÛí<*²ÕT>°?ïU´ñ±Îˆt y aÉã=zaF»Ÿ üT\ÚÚŠª-M+Þg6©ˆsûMóÆ6Ïð_n‘àˆÛÍ[ÿJ^êtÛð]=uúI^íˆË.~H=KFÄeM­1CQhÓ¶ËU]Á÷ªJHà’ªA‡Næ´ò2w$eB¯|]v¥Ô2h 4 YlõVHý*©£þã2G»²wÀQãHÙnÚ§TPië%1©¸Ü'S³;dõsf’O *oxƒáÝŸHxCþŒÒÖÉzwȨŽW4Ÿ½TrüŒþÛ¤yîÞŠÚo5T5쪥¨š ¡xtrDò×°Ž„¸*UpÄÍÚ{Ý«Kë™ ¬¢«‘´ñÝäpŽHvošz8g»b É=WÛã뇱UÙh¸“E5TŠ+££oã§q"9q¹cþú<ÊE–M–ž„·~˜S#Àïžé"á•Ùáñº)'´ÊHøøß¾AsÇÉÊ\ç¿d;.`‘®lk˜eÃ?žW`Î7E|]ñ)¼>áíc©j9/צÉAlk]‡ÄÌbYǧ(výçþÏýÛ¿.:Ê®&¾—NÓ0ÿÒ¦ËXGcÊÁ!ö%ª|ZÝÍLHÏâ=Jú•«Æ×»…z [*OWú* Ç+ÜFrG¾2µñáÚ:!Êyj§??fšSßåü–Ëgûq?/¢‡ßhV‚wþhâE¾—,hÛ³šÓ°Ï4L—°¸žñ…ZàÇö5,üq:;µO®ÕmmÃ2Ûƒÿf£>0{µ¹ÇL·ÔïNxrâ’ãý¦ç¨-T’Ø-5rN+ «Œ¶oÕÈb{XO>Ïå'Óu6:"""./8Á+W^,(%·x‰ÖtóËŸ^*gNYcd­úò¼gß+"‘gíy¥ã´”¦BÆUÚ*ïO„±ã?î•ËÅ/ª¸ÍÄ»^„Ót/‚ކêú ?;áu]D’6!!e£#À;Œì'¦–²Û4Ξ ÓÖZfS[­Ð¶žšÙ­=KRã¹$“Õzƒå…RO§ÑQæqÑB¯´šž¥·½Xé˜êihêâŽ07kØø‹‰>„=ƒü%G¿Ó69hy]'–Ñ~£ÞÆf…µõ×P2ÁUåÞ[æ[e§æåb'6 qÇ匭Rq"æ/šûQÞËy ÂëUR7(|®v3ß¿gÀq;QB9¹ŸcænGÃ;:þjvŒú"¯tELäãuUGgu@ORñè©‘oU\{÷UT'Ø« ¿‚å S§«óvýCÎVµ´ýY¥®§ª/‘žL­—š3‡Ò -郶Ëj¶jˆ«-4u”þh†zxäŒH0îW4Ÿ}×ÒN=Â׌Æ>/z¯™†6K ãëñºDÜþm#è±^Ÿs£‘¯`·!£×ªÙïeeFŠ ªdNtrQR¸UH}G4-’¡€{õnnE*,7$Ç$´²°’6Áa¸P#À»ÚÞ<Úù‹G5¦¤ ì0íù5°rrÝ÷ÎÊ} š®&†}2ÂrÖZp¯SŬ¸ybÔÑ=¯7 (ä”5¤L,¬Üà ssí¶ÊæP?í§¹·Š6視?ÑÕvød‚6¼4Æé÷Û>fÞ¸>Šìû:(œju­Ë”–ÒSޤyŽ?Ì)„ݱÔý,+gŠÅƒ…ú±Ï”Y+ Èíä=j–÷S5£§+AßÙdÿ ÿÒ—qzÓý ûéÁOVi~ûŸ(‘‰ e ²B‘•~&5¾¨’›ˆÜ+¬¶91 æCÜßÄæÈC£x÷kˆï•viï|1¸† öÝíN$:Za4`ã;œçþ}•íhãw noÓë‹\NÎ?ÖËéwÿ↫ÒÏy´^i›SgºÐÜ`pËe¥¨d¬?"ÒBûö# äÁçì<*g±Ê¯8ʨvþÅQþàœû+ŽºŸˆœ5ºiã.­1º{kåéSZC=?n}Vº.ÒU}îžÑ|'žÖßÑÏhpw–#‘ü;çay5”•¶jÈ[SO-;&c'§s†±8×´÷ëÛ¡u `þøµGÄ-#Ol®•±j+mñ ®ÃþݯÔÎh®l^](8þ±Ä4;îáÓçЫºÙêj+$©©˜Í$Ò:INåÄä“õ*pxá#lqœK½ÆJÞ sm‘;ÿG£q‚&2'àåßâ |?h†¤ž—Li+O3<»ŒóVÕFñâÆÇ‘û¤½ÇæÕ üÒ׹ؼ£?5èÒܱ¼H>R:ìz©ÛásˆÑqwDÞtv±€\* ¤0ÖK À¬¤—,Äc œäç=T,âN™“Fqû¥d|Ïý]-4rH|‘˜Þ@Ûâaiú¯¯‡—étγ²êf²I-•°Õ?`àÇæ“îܪÚ}U5m”“2jiãl°É²×±Àà{‚qß9Aœnª¾;Åu=¾‚Zš™ÙQ±Ï|ŽèÆ4eÎ>ÀV¬¸ûÄJÞ&q*á¨&{Û@Ç{e9;ALÒy?yÛ¹ßÚqí…=¼$ðñš‚–š:èKnW3úRàÇ e•­äŒ‡ZY¥¿½Ì³ZÖŒ5¡£ØaU[üK‘±pçRÊㆶÓTOÿRrׄùŸˆí èã.wßeiÆÇ§”¿ %l¹§-a g ÇÖšvÙ«4µÏMÞbó¨.TΧ™£¨láèàpAì@Zçã˜ëLö[»ééu^‡–Š–ˆÛ n¶ç¸º–©ƒ ºFór»bKÏÂ匬*»mÎÚ9ä‚¢6H¥ØsAÔ³ßÜC§âG(oFHÅÒ!÷{œ 1ÎÞ§ŽxÆØv:‚BDDD+„˜ 9ǺÖ‹úÆWø‘Ö33ð²¦(:cx©ãŒÿ¬LŠÿà>²f‚Ö•:˜¶'ÉOk«d1ÈÞfÉ+ã-cHî9ˆÈôÊÍ^ ømý>×ÜXÔ³:ak»yÐÆ9j++žá¹ ãxÆ7#ÓyÍ'˜< gׯºîÆÛþj¶óT>¸Êƒ?iÁï×úZ׿-=¥õç$ŧÿ­ôÅDÔš–×ULâÉᬆHÝèàðAüÀ[‡\&Ç–r¬®/Ý —†šèÑ!4Öª§·eÁÞKÃHúµD äÝIo³Â­Ôüi¹R½ä6ªÇ3y}Ke…ßË*4n«„DDVoø•¤xso§ªÕ@ê—ÓÁ fI¤ÀÉ!£°õ8êxˆâ³®<@ŠïÃýY~6€ÆHfŽJŠh™Tâþfœ †5Fø=z¯«†~&õÆž ‚õPÍG@$kŸ÷±þ°ûA’7ÇNlŒ©±¥/Ö­O§¨ïÖJ¶UÛëbC#Oní#³wz/Tvþ »à õþJÅñ8¦àv¹•ûÿæ Öbè^ÑüJÖ6yÈc …Í-kGí8Œù­«iO?ú1j Î(aóYŸÂÿ-¹{¯H×l­yøçŠ8øý^XöŸ:ÙFòü$5ÍÇäú¬'@\×0‡Êìÿ³_ «à^™²9çôL1¹ÄcvL}91ôW¥î¨QÙkkGX)¤—sð°ûöP À쎖Fóü3[ª£#—=!æÆ{tëì§~»Õv¥kuê®jjh^öó¼#ƒIk2çÉZдÑ_8ÝÆöÒµ—Eq’Y÷ü4ñg¼Œõ §¾07+h41²™Šž>XÀÆ0g`{lÃ\mñ¦4'›j³o·æå®Ž93MJ}%uw_™#˜·lÅ %Ç-SfâÔºêáQ-tõr­@ç±ðà40€…<øOÄM;Ä4/z~ ¸1Â:ˆ´?åpùt=ÕµâÆÛQrà&¥´Í¨––Õ¼‘¸‘îÌ~‹øÕsÜt=ßLTL¦fMKÌì¸2nbæû¡ÍÏÍåIr@PÇÅl³ñÒ\0ÚK-37æ’W沇ÙÒÂ4n®p¹Á‚_ÔŒ©QúÏìü×>½Õ¡ÆÊZªÞë::'òÔMa­d~äÀí¾½3îµ_ l[~ßÉfÕ/¤âÅEɦ0i-OÏ1#eM<9ø”ýÅ*`†¦ )ê"dÐÈÒ×Ç#Cšàz‚Ä,{¨¸Â[èy­Ð¶ˆäp?¬¥‹îîÉÈ1‘êUrð¥ÂŠ™_%3/öîmùinnÃO¨V½_ƒë<2E=‹ˆÚ*ˆ^É*©aœ´‚ ´Fr07Êóé8Ç 9^ÉtÇ(*"®¿y©«¦øKK´c;zÌÝ/âÏOÕѲ’½·˜hÚ@òo=’ìœ0»·_eÎ&ø—Ó癩óë|p´¶b-Ÿx“З@ãŒ{a|Sx¯Ö™ä¥Ô"ŽŽ¡‡&)`¨á»õ;n:û÷[¼a6ZÇ2]M$8ò®E®ß,9ü—‰rñm©æÔ³PØ­”ô æS?šC æiŸlÐF@ÇÄvè¥ õ•«^é=Oel‚˘ø¤24áÌ>»q… |fðþ—Hkø.öj ⡾‰k*ã* ¤¼Œ4žq¶{Uô}%&±‡ú?t«˜>Š×U%µ¡àJ^œº6ŽQ×*ËÓº¦åb­Žãj¨’–®™Í– ˜âÀ ûõ[VÑ÷¨µ&“³ê(#tPÝ( ­Ž9-l±µàwËÕ΢®vT'p0ªˆˆˆˆˆˆˆˆƒ¢"!\q“œœ+ŽÚú“@ðö¶ôé#tå¦:v ÷Ÿ„r‚wÁ#>‹\Ú:ÛuâWíô5mª®šãpd— š Ëc/d„ö§Ø-§Yí´6‹]5®ÙK-,b(a¸k:¢GÚ^ØDèbfx›Ï­åˆ…Í凙ÄzƒÊ÷Šò>Í[‹Û}ÖœžI)`¨Ç¡kœßþZ›*Žè¨ÐÙrÁʆßhv©ÅV›Ò0JÓÎ$¹T³”çàæ† óêêŸÌz8 ¡Ä~+Y´´Í¤šo:½í$bš0]&ã¡ rƒêà¶qq¯²iÛ[*.5ô6›t lLuD­†60ÖŒœthñ»Ã˶º´Y5ÞŠ§§¾Ãk¦šóE0’WB\×±ÌhÙá¿@Üs‚3ˆ?PhäÏ.1¹÷]a…îäØÿÍOZ!–>M¬* •zŽCär‡sEM œÀœn^×»lí˾ä,[öi³CÄÛF¨ŽÌ†óoË àv??-Ìü”m£‘ÂLómÝlWÁ† uóÈ&•’Kk¨š„€þg5­vY; ‡Ñf‘×5ÉuÔÍ:IÇr¢çŽ&ÿGôôR’ 6õ¨Æ%c]ñABçÛœŽQꊋ>4H×¼f±Ú* [©¥ûýÄ9¡Í4ðç5Àõ<±ÿmÝ'™J[‡í»ç+éEŽüJÜ&¶p'WU@àÙ@aô‘ÍŒÿxO,|ÑA¯cs|¦Á{ËF3¸È;’E´“¸%Tãž‹‹²Fz(£ö‚pþZÍ=AÄkty}µ¢†ë‚rêw?õ/ÇO†G8g¯ë=І'‘;²vÏE!<ñAº7‰4ö›„þ]¢öæÒT—;áŽS´2ð>#ÊO£ÖÂKÀ ~k–Q l2ºê ò^[Ô´ájóÅu¨ïAE’W—F´wq;êT5к:ïâsŠ·mm©¥¨·éz)[„•Ò e,nÆ2Ðì½Ý~1ûÙŽåÂWÂÉøq š $‘‘ahçŠ^¢pâ7ù˦Ë\ú÷JÞ¸}«î:N÷™YC/(~ ˆõs3¯Âæïê7²÷„>,Ôé]kK§îwE¦îFVÔ}âR#¦#žÙ×w8c¿8ôSÆ–¢ šXª •’Ã+ø¤k²×´Œ‚pBæIþ•\ð[ŒHíºÅÞ+*‡½dø¥Ž4-k‹Îi•sG¹îB×Ö…õZÊÍIL’\©™Û|ÊÐ?šÚ³bhb6Uù®BÖ‹»´oººjyŒA44mºè`Ž7´{sµëQ¸™ÆIÀp'ä¶=àúæ.°Æã3¤¡l´²=í nDÒÖú᥹8ôï•|ñb_#…Úº ;Ec­6zbî wƒa8ñ¤ã¦-?½9³¼b’PîòF=ð¯ÿ´^TUj^ƒ£˜ Z›]TÖ’33ÃÈìÜž§ñ.g½>¥«ÖšžñQMOQn¦§ŒTT45”°<¼½ÞaØs´c®î®n7qöï«._è烔µW šâúi+ Ì©øwïðGƒ“!ÆÞ€dÞ<ð˧ôΞž§[6+Ö¢¸ÒºÏXhàrØA¿§ëùß0ÿ‹<7Ô|3Ô3YµñSù²¶Ý^Fb­¤aÌpÛ!¥¹oQÂçÂ#êj?Òúz³“›•µÏ9Š¥€ç•ãë±ê;-ékþâWb¹Q¹•V›Å#¡¨ˆÙÌÞY!£†KOðÛu ¼0TÞxqâhªú˜éœË„Öªðæ¸6£¯–[‘œÈæžáÃÕO3‡Ÿä ×ÚK8¥§+Z’k1cÈ'â䙨öý¢²Ùß#?¡º²2å œìŒbÛß±R”»¦{tF—w/?TDÙ´ÕÒŒ¶J)˜íº‚µ\Ö²26Éú,ÕàÜyüo¤· vÊúÚb9Ëê„SCPã×-…ÍÁýå+¸Ñâ.ÇÃmo—–ÉYs¨lBZç1â! ^Ëæ¬'|þ?{ ìðßÜ?ך’=išáKpž2VÀÖ6Gn]s\áÎÎÇ;²º!82W7#l’ù¦‚'2_6KÎÎWs´;˜~éÏQ×eiêNðûPÆÖ^´eޤ5üáßtkÍ‚3ÌÌžêÉ«ðÓÁéªTÍ3WNKËÄt÷)šÁ° æé¶qîVBК#MèkGèÍ1iŽ‚™‡—>\g¸îãñ»¯ªð¸ÿ¡gâ .ZnާîÕO,ž•îÁa’2î›^Ë]ÚÂÁ~кΦ‚èmÁ‘ÐIÏ)kÚáÔõÙ\×ío±hý5ÅqDúÊ»¹£¹Y«)ÜÈD¬æyÀƒå½ `±Îç¶Æ4ME¢§GXêlCOgžßO-13•‘ÀèÚcv¤l½¢N}}'8!Tg=Q """¡8 TæÎØÂ³xáªn'„Ú‡TÚ ŠzÛ}/™%³%ÍnHì ?E«ÝCª¯#äÕÜjjšçŸ6Rð\ã—ýJ˜g~Ž·1yÖõÇ-mLÿqÄ~3•îSȵvCN="ûHë%žë¡¡wàe5dƒæçÄý@¸}›q²=m«Zç4Èm”în?t¿'ù…8UУFß5Q‘ß?4Tq!§bµÅãVøû¿ˆ¥;ekáµRÁo̓ 2=§Ôù’¿?5˜>έ6ÆZµ^°‘Œ|’Ï®ü¿Æy²Œ÷2E·öùþÑû…u4zÛFó[7.1•‚&îzl$þ%F®q_XèJ§Ti«ÅE x!ñ³7äus–“ï…zpÆ“Nq»‰’[u¥E5޾äÖÊ.4LŽ›žVdÄ`ˤÏ\g-ïœ+“м5à/u”šnå⺞ISi?U΀/‘­- àÔn¨ðá]ÃçpâÝdЊ®åEGÌ7)Á­„¸—9 søG/\OÜ;AÉÒtès˹Çç… 8QäqÇFJÇ ÿH©#Þqiþù-mŸ’3‘ÕP÷ÿ5æj{-»QX+ìwxE¾¾ðTFiŽÛÐ÷ÕjßÜ8¼ðÃ]Öi»«øšâú ÂÞVÕÓçávÎ6pìAõVe®d¹$z­£xoÖ1ë~ 黹«5UŒ¢ŽŽ½ïq/ûÌMk^]žîÙßâYƒù®hˆ©ðº*0¸g®ß5«¯2šºÕÙÇô¬ŒÀçá½ûm²Æˆ²¿„Ë-%ûŽÖ *æ6H#2TÜÀá!…á§$`d ÷éЭ›S?Ì’»#s×ù.ýð0PŒ“²¡ƒ¿ªâA<§8èµËãžF»ÄMõ­w?%-³OÓ……ì†ÿokÝÊÃU1'Ã+lônZ¡¹ ›úŽVÿߪõp×4±Æëø×d¯á [3¥"¦Gs´X‚CÌ}U®Ø›–s^êZ}¡Ú£PÎL¡Ì¤Ûâo)p#ÎÃ|ýÜgá ¨ˆ¸M,PC$ÓHÈâ¥Ï{݆´’I=P£‹:®ý⌔ü7Ñ•aºjŠ_3ïLiä,hZ·ïñIkÙÈîí¥ö†ÓV­!¤íºbË Š‚ÝNØ"ÈÏÀÝî#«œrIîI^É ƒnÝÔyñ¿ÃHu_äÖ6èZ/:nL÷¼ÔcyXOöF^>NõP6’gG(-v@=”ùðG­gÔ¼.–ÃY(–{ ‚"_—y¤z7èì³Ø' îªZ9vØc`5ñ8Ö =jù<Ëi”39˜IÆ;;8å=œ{('áò(åâòµ44ÒÕÄ×79•€rg¨q|–Ì,uÂçg£¸ŸÞ!l†7þ&->ã¢úÈÏæµ¯n2ݵåúë1J»¥Tï9êçÌçz_@¼šW|d»ŽóðfÛÕ‡AÑÅx5ZnOrõ2=81†8vi‘Ï‘ÛïÊÐUÏÆ..pÖ·…úºÑA­-•uõ–*Úzh¡sŸÏ# {CAhÆs·U¼1ê* )ÄÙµ=# ·Ùë¦ì’Æ´dã˜ó` ï’:×Ú†á«u½ãPÝdy®¨2¿÷[“³G°}vœ»j[žŸAÙ_<±\n QDîQ<ä°»  ßa¹Ûu´î·©á°fžá¼M®Ö·/õ{•æ8„ò:G9¼”´mÜr7~ ‘Ät j—¼cÕ\YÑü*±jm=n´T>†ÜÚJÛ&f9±ÆHcC€#&NlìÜwV­«_hïü,ºèªúRjÆÑ>¦žîÀûÃðM‡ls;§p ÈÜÂmO¦u.‘»þ‰ÕjÛEyŒJ!ª½œÅ¼íìæå®l²ï„®-I µ£-×'½öK´í¦ªa†Âò@dàtÈ'û$ú+ÓÅ ž³Nø¤‹QR2W2²Žš÷Ï.Zi+ñÌpHFìÞSBË_ ÒÓGs¦,|p2xÝÃÚZæ‡ 8lFýT7ûD©±«tmS²<Ê*¨‰á<²4þ{¯Wì阺]ožìbÞVØJ9ºgÙKæn2 gUcD´²Æö9Ítn£¸ ì´ùSÊC`h ó–àõÀ$ü–eð‰{´X8ál¼^n´¶êz:±4³¹Àh‹CFß$uôõÂÜ}²p¿Ž–ö³Fê;µôó[ßÎb’µÉ4ïÈÈÉi9Áô¨ICs»iÛüRFéí÷+uFwË$‚hÝ騂:-•ølâ­ø{Mp|±²ùFÑÒ§q ÛÍá~9†:d·'9@tè˜DXgœy³pδY ·ºí{’7Êó„qA‘ðy‡s“×”ÆBÆúKÅÅ Ed0êm3<wëj¨*‹Ìc|§·âßûyÇ@z7j®¦ºÚ©.ty”Õp²x¤-åæcÛÌ;mÙ}.yß~¿šë¨žš‚Zš˜iãÎ9¥xksé“…‹o*á¶¶¸E ʶžù%/ÏU‰¤sšÉXÂàÖƒŒ¾ù¾/8Õ£u6„¯Ðvsu.š7~«‚ñ¸Õ7~Ùnv'Y{ÁeʺãáßO}ü9Τ}E$R8“Ïs87À|?áY¥¥¤méÙroO’ª""""""}S|û ïº""C°Ê님¼’9qëÝXž"Zþ k(èmò×Í5šª/*-Ü¢pæ¾68ú-T1ïüÖÄ<C-m‘Êá©}ECXZAp39 ç§Hÿ'e!ÔûIœÏé>Žc0Ú:¯„výcÅön¹ç‰úKM”dçÒhð§z£†ABÞŠ¨ºkÉK3÷±¸í×¢Õgî&éÄýSsyæó¿®pâ3¿ÉO/ ^»Fx~´AQGî5Ì–êø#~Ï2üQ´žÎäƒè}p ï5—55íôüBeÒŽª:‡Ï¾®'DÊ`áˈ˜FÍøq‘œã9XÁ]œ.Ó÷íW«mÖ=?IS%Lõ13Ï…"—/J÷4PßÅžØYCÇ9¸Åâé÷ØRÑR)ZÎ_:(rs¹yÏöG¢ÃökÅm²¶)i*g‚f[,R=¤oAÙNOœZ»k(kô¦¦¯¬¯ºÑF*©jfk]šo…¥ŽpÅÁÎÎ]œƒ×e x¹i~)jËiachïU‘0ròü"grœzA5pør¾Ôéî6èë…+ù9îÐÒË“€bœùOèüüÀ[Baø¹sÓeÍX{Ñv® ðþ«JÝH„UœÓUˆ¹ÝK;wd€dgbi#;­^ë[šgY^ôÜÓ¶¢KMÂzÊÖò‰ R9…ÀvÏ.p®sÿ§- 帴ÿH¨2AÆßxfGå•¶E‚|tTUSp¤ÓT˜›%Æ–)XýcKúlzmò>¸*ðLçŒú7œê:Æäí3O¨Û×Ðdàô[Enp3ÕÙ sÔ’¨æçl•gñk‡:_‰º^K§¢30eÔõ1a³Ò¿÷ãq™ ÷A®!xOâ–˜¬–K4¦ÞãÔNÍÈ ¾'‰É­/ü'Û9ïÀ–›â’Óú‚Ñ«¬U–›\•,–‰•C’A0²°Œ–Ö|YÇÂ1×*MtØçòAœâªJ©![š×[éJÚ­MtŽÛËC+N\ðÜ7r Ðnv^äTÁôÓE42èäÁÍxìAºç!ŒˆWƒ {ñÜô÷Z­ñ{ƒQq«VÞi%óiç¹Ê!~ÿywõ X®®-8È8ØåQdï ÷[<@iùD•†{‰æcþ%³{4¼Ôe¤F1ƒè¾öHë¾Ûâ¹;!½N}—dú츸å¤çç²ÖÿŽ2Ãâ?Qr¸¸ùaß@?waÿU„©yþñÁço+cŠÙf㋼ë›n‚·Õ›Íe ¨š¢'0S¶vÆ×A$?ü#×c‹£HëGêMq¨¬TZÐö6Å ¼¾LGQTàè˜Â2àÖ–ž`HßÜkx¸Ààuèà|1HrzŸÕ¸`~Ák^1–ŒtÝL_³¾’Ix¸–>FË79Ç+LGqõþ e·`0ˆŠŽ8õQ«ÇÛ¦´—ôÕ?-Òñ}sãvôÔ™Æö¤9Ýõ ÒðÉ¢­œàÅVµÕ­—[0®¹ÈýÍ58Ɇ ô89#©{È$áª7qúÿQkË­»Q]¬¶×OŠ: :·DÈ¢‡r‘Ìã‚\Orq€>K7ˆ*Z[š]kq•Äâ°2¤mÿ¼þjqðÏ_i.&韽Újá©ç¦oé tܦXyÁd¬Ü`î6È!@/|7Ÿ†\Q¯µAŠÉV÷UÙßñýÝÇ>W3‰$ÇžMÉ8ž«ÑðÁÄ6ðï‰TµÕŽs­uœ´•Í- cÜÑæ‘¾y2N=2¶;±O'¦š9b•¡Ì’71Í#gÁ]£•¾äûôQCíÖòSY¬¼?£~>ÿ›Ç¨&&X™×¡w;ˆÿÙ·ÝaÆ3ÄêùÂãФ·-æÅñ5§Ûwcç…+xÅ(n7me¥®r5®ÓÕìŽË¡sysï‰à}˜a¢ÔÊÖÊêYŒ‚¸ÈyH ej¦o6¡Ï$åï.'æI\âxøÞÓ‡õô8ê¶}¢,ôwÞ<-N£µË§i-qGXÌÊiÃÛÍÔǶswÏMk\ Æ‚Y-Õìžš®™Î‚¢šZø¤nÎkÜW^—Šº¶ó º† jªj?S ·/•î 5 w$»8ƒCGkÕµöº*ø+ÙHæÃ%Dòä•­NBOÄÐþ`p3…ÆßsŠÉi&Ý+ÅÖ¬>:‰Ç“¼=rî¤úmë™Ã Ý áêÉdÔ7ÛlŸ]_¢|Ί*ȹlôãhwʼn]öÎŹhšIèN/ðωvájmÎ8¦¸Fêi­6†I0{pæuå~A#á%Bž'iýEá÷ŽBK\ÒÇ,ß~³Ô·ðÏLâG!ëÓâÀúg!IŽ>é ?< ²ë½<ëÅ;ê©!nî™§zSßœ9Ÿ{·ñeAžY³šCðZö¸t=B’ÜMÔÖž ð3@jA<¼iÉÙc½0tîŠH¹|Üàe¯15Ù à¹Ã|ÊO רµ [€±—[Œlh?‚?¾J虎ÀFèÀ†ûEmî~™Ò7fD1|ôïl@|aÀ{þU«öwÕSǯ5%œñQSll Ž^Hä`éÔœÈwô›¿EBÒO÷ÍpžFAåâ8šÒ\òvhZx¸¹²\§tO.c¦qØê Ž ú÷ÒV0µä|N«×ÓZ–ãh¼Ó](«e¦­¥•’Ã3‡1ã¡Å]üj®¤×%ÑRßTm—è o–*f 熰3 23™¯nh¹°9ð>_ úö¯@q>ÑuбÐQI3`¯? 8ü@–ãЀ¶‘Œ–&KƒØö‡5ÀäzÉS`¼]OªlÖ )tÔµu¾‚ÙNùçtO'”g”oø‰À¹ -]ñ#TVê­QrÔUÎ-©¸T>¢F‡d3˜œ0{ôVÕ3ÜCœ]°Àåõ[ ðCª&Ô¼ †’®WKSc®–ƒ/9>^ø÷ô 4ug6ú|‚‚¾68‹Qpâ«´Õ y’Ûd¦l/‡àûÓ²éIõ!¦6ïÓ”û«{Â,³^xÁKf’¶¾‘· }dš…Á²°:'|@àŽ¹ ï…Ÿê¼ðÎh˜Ö_µ”|¿ˆýòs²w‡còõè³¶‡Óv½¤mšb˱[í°akÈ/#©sˆ.$’N7$¯iÇl‚Wp興ˆˆˆˆ…º"'dECÓeF·—§rºªâeDSÊÎhåaÀô Œ­<]iM Òª„»œÓÌø¹±×•Ägø-‘x0¤©>tÅetp‰elþYd\‡ÊlÎc3ƒ¹!€çlŒgq“š¥iskˆ8Zùû@*?m à6;yhnNr$p$úg§¢÷þÍ–g_ê‰=-Lœ­ÿ’(€0ÍuòÿFÕdò™ä¿™ùü#'èµ9¬_JýIz’ЧïTÒ×T˜f#í2;ø­”k_KÃ^Ǩ'£ûävÊ*X›N'lFGµ€;çœNÛ¢W¼@i¾%ÚuÇi%µ1îû¼ôu®mÂŒ8~8åsyIÎ io)ÀwX¦Ûý;¨u,Ô¶ Zh-dóE-õ’SÌÖ’~ÚöPìn‚`Ø,Ü=ðÕ–¶Ó&·S¾ã÷fýêZ–T]ð±­sË@—;£¾ 8‹|}ãx®Úi®ºfÍGWE Šš¢›Íóš Áå./Úp v$‘Œáby”4¿Ä:©íà7CºÃêÝa[O«Ô´ÓJ$ÿTaÓðŸ0¿ ï°Q{Åãc$u€lo‰¿xÄ;»¼ˆ÷Ä«3†o¤v½Óߤ'|LºR¾¦XÇÄÈÄÍæ#Ü ­´´þ°uÚ¼-aÏåR5Ž2ž¿.‹X"|w×-„Ó~«qóñ\]üIù/Ožk߈]M sä\XóèØ”Ÿø?ŠÚJ"À>=Œ£€ŽÄ^w¥#8`˰O×ꡇe’.4hycqþ‘Ð3#ÑÕ iüÁ#ê¶–ì¹*ORq쩇wÛ°PŸÆ¸¤8ßú>‹PÕÑZc¦¤®·SÀCX@'˜½¸ÃÏ›ÿFÊÞ²ø»â-oŠº ÑÜîse©¢s$h$a¿ª{ÝÏ]×ÛŒ> ¶QÏgÒ.oð¡©÷¨;ãºæ7ß~Ämù­JqBÖÛ5-‘•.©m¾íUJ&s@2Löó6ÉÆU¸ŠãáuY â^—­kË ŠI9‡lL¶Ám{~ñUqql€“·'þKÒ' Û¢é’Xãh'`Ñœvsg+ÚdakìîqÿuY:`÷ZËñ€ø¤ñ¬<¾‚¦0N߈CV!ÉÛ~‹ÖÓzŠõ¦µ =úÉqšŽåJçjcwÄÒæ–;6’>ElcÂVŸ¨±ðFÏW]r}ºøÆ\擜9¬a†8¡Œ?fbîm×Áã$Í'.PÄpRË!=šÄ•®V;”ÓñS£ÀMÃ3ƒ•×šÈØî匆Ï*U!D_%Ö¶ u¶ª¾­á”Ô°¾yœ{1 “üZ÷áÜUœsñ;m›͢ª­uÖº)\بâ--Œã|m»–VûB5ì”TV^уêš.•Îè Ms™ cع¯qþã}J‡ ©w o©É\f³¦çªåáö½¾h}AA¨l"ÚGó5®Ë•½ã9˜AÁù`©—ânßjâ÷†(5ý†7º[}8¼Qç{#8mL.Æ@åo18ïù¨)I)ŠO38ðTæð9Ä)/úB§DÖºYg²³Î§yå m3†Æ1¹å'¿®3°R@Ì6ZÙñM«¬x߸2Nz:9ÿGÓâAd? #æîsõW‡ƒš{l'VÝgšµcîTq’~&Âé,§„Åû§§{w…z…Ü8ã$u·—NÚ;ý!u{,s"¨p–7s’Ü1ØÀî=Ô•³ñ?MÏúR‚Ó}£¸TMh­’Ss’ TòHK‹€`-|HÐ9@=@\‡1icAÏ·|­¼[&†j‹„Ñ0`Uº0ñÎXÓÐÂAgÃײÞ>,tö~4Áv¤¦Š&^­ÑÔËåŒsLǾ7=Hk =ÎVÑ÷ÊÍ7sšëDC* U+$Æìóà|EÍ=Cƒ^pGB¼G8——wÎWÙ,ÒÊàç¼’;¯SKß.{Í}®RÔÇQÿ´ÃÌ?ˆS7ÆeºŸˆÞ4çm”ÄIBb¬$ÈIŽš©¡²·bD¢Ï@î»öwki!¯¿pú²b[;ÎÞÒí„Ã&hõ.o–ìtøê±÷ŒžO¡ø¡Q¨)!wèK,•8D5óM ôø‰{z|.Àü%bK}tôTµí•ÞTá¡íÏ^S‘üT×ðy¦ŸK߬͒/::˜êÃ9]ÎCÚçÓn7Îv^‡ÚVÔp1“¤y¥½RÉÌÎŒHÂ]·áø€í¹%„|×6Ÿ•4¦½ÕVJ†y˜Ýœ²Dã¿¡Àü‚žnÛŒû.mÆ6_úõVj¨#²HèÏ#иnæÔ^±§Ž‡XÞ)`æòéîÆÎaƒ†Èà2>‹ÖáÔ6˵ö{=ѱ‰.43RÐÍ#ƒ[ [€19ǰæo)>Ž+â½émI§ëêh¯–+EÍC'¥{|±ÍËÌN1ÊI;89¬½£¸1¨µ‡jÍ\ 1>®á("šB<Ö¢‰²µ¼» ¾a’㑌Œœ;¯tÕÇFkK¶—ºŠË]SéÞæþSð½¹ß•ÃìBŸ¾¸ÁnÖœ6†Çs©òoz~à©ó:Køc >ã=Ö~áZ¹ bÁ¤·$€{£Ûó•Ln:{.äDDDDDDNéÝÊ¡Éé…CÔgZ~Õ³ õMÚ <ÊùßL¼•±ßóÍQá§Jºy ŽgÞ£i=šÚ©@A…™E®/ry¼X¢”Ê÷9öù i ÅmPúàCû6éÄz£WÈH$PSoÞqr›Hˆ‹Àâæá£.ôz~±ôwi)$’´3úÎ]šyšáƒÐœdglÖª/6ë•¶ª²Ýt¤šŽ¾ ÉéçilŒ“rr=úç¡SgÅuSµ„ ]ê×[ ¤s­µ2sŽc$dr´öp{šIôi Nâçóuì7ô]”uRST6F¸Œz•êuF§ºxk­Ó0¼Éd²ß ž ù¤¾&NÉ ƒ‘åù.Ûs\íˆ^‘Íî ˆ~\öœ€:nF?‚•¾µuàëç誫Õs¬âÕQ5%pt>p’7d2Ý‹ÎØÏužx÷À])ÅX'¸HÁjÕKc†ësƒƒz6XòÆ23ø†ÛàaE«¯…~*ZµØ=”äá}»RY¸{cµê™éë/”삦X_–»—fœàd†ã;n5u//PŰÃÎ7kòÓèV®üG¹®ãÞ¸,w0ý7R3Œn$ öÿîz«óÀI#ÄU¼œÐUíúµ±ÄE„ünÛê+¼;Þ¥§Éû•E-T\ÆÌÐïË››è¡G‡⟎ú)ÏÀ/0¿sûMË›ÿ hMÝ¡U;õÿµS ø¯àewîzçf«¥¢¬¡dÔµRI3ä‰å®¸ÙŽ=lã=½ø5âm+ßú6í¦®L´ ‰"{½°æ`wî­è<-q¨ÊøÎš¢fßtƒ•Ûv×½mð‡ÅZ§9µUÚ^„4ŽJ׿›~ܬ>Ý}VIÐmоwk­M=x¦š+KŒ‹<åì$õiÆ1ÝdJ? <§e;%±\+yæt×Iƒ¤Ï/âäszc`1Ôý=áÓƒF'3ú I‚C³÷º‘‚™2NîÀäàêß ü-¼P6+]ÂÁV%2}îš²YÞvvË3ÞÐÌ»$Â7çÌàO‡ žñ5ú²·SÅt§¦‚h¨"Š˜Ä÷Z_.IqÊ:’{,ýV󀆹ÅÓ1˜hõ=JÕO©™GÆmkK$G®ŸO=ÊÌE÷iùÝM~·Ô·ÑUDñŸPðV×íWŠ95ÕÊÇ+ª#¥mKÈp$7Ís0G^ÇÙ\àg9  3Œ{¯=Õü¹Òr±œü±;¡ã=óÑwÒÌ'§óÊsͰ=7ZÉñeZjüBk7ÊñÃ@ü±½¾K«ê»†Wú CÄË„o¦¡ªºÇAIã<ó1ÑHó?´y`h;óz`sL_³ÿV×jtåLñ¾}=qtq°7m4Ù‘„œîLžx6h—±ãwï0pV¶® |­éä-ž[ŒýB×dDómŒ‘Ær§ÿ€¨Ü!·Nñ»×W9» sÿä•%Q À¾6õ Ó| ’Á@eÇRK÷&¿íøç~=9Ccÿâ…b}žÚdGgÕÎhc窩Š×I!gÆÖFß2\ís¤Œxý–ñ}¨Æ©ã梚7óS[Ÿ¶Ÿ»pïÍåçê±+ZcpêÑ•ÛLÑ4gÌ.Éi_¹ãyÛqº›¾/VÍIÂÍOÃ{¼|tòÈécs,´µLä{6ÁµÙ9ýµõþ•«ÑZæ÷¥«Þé%µV¾ŸÍåóXXüz9…®ú¬§à’ö-\´Rs*íISA!sˆ1ù­Û¹æˆñ)»Å­[‡á­ÿTÊö‡PнÔí'ó¸rÄÏ«È V’Z™]$ò9óK!|ŽqêârIú•=<ðÚÔî Ù/W1MTÓÔ»“c>d-Ï=Àk@¦çÔæÕñ¥Á;tâfó ¨ƒËŽãN^\DZ­ kØ?d€ lzã9ÌYÐ÷·Z/¿y‘ß«––z>cŸÕ ˜èËöê@vqÝYõ å·›<§”P:%?˜&o&ZâàhÉö[oÒ”°ÛíͳӰ6šÙåÑB9Ë߆Å%î?‰ÙqÉîwêJ€¾2¼½ñºû¨4íÒßi¢šJ+{䀈„ µŽæŒ¸îNh{,=§b¶Kx¡†÷-LV·TÄ+$¥kL¬‡œ–smÍËœglã+ɪò L¿v9Ï–$ »—;gg ­I¾(ødÍzÓ÷Yq a©|Åﯦ$|q€1ÌÐAÀê îc;O— s]œ‚§O…j†q#– Ð“IæÏJ*íѱÿ²Ù[æÂsžîpýße|9j'hî8i‹¬Ï’2½´µxÉs†÷‚œ¾.4Ÿô¯€Ú‚@%«µ·ô¥)#%¦KñžŸ«çU­ÖÔ9Õ§ÍÆOÉHßZµÖŽ#ÒY¤©Gv{éå¼Â7½Ž;õË1õRÇ2ÉáÖù$E¡±UQ¾@ç–ùínÞ§. >øŸõOº~«©üCΧ<ÙŒ`»@À[¼F½Û¬>árºÕ²šŽ(ç{žZ|¾f‡àóƒòBÖΰÒñ]øW_Å¡,¿{®ÕÓÒÉA+#€>=’7®7jÆÊc‘a-s:pAìT„ªñ+Äz‹umZ€RÖ·.¦ŠGDnCKšv89Îzç®ë5x{ãå6¹£+[TAMu›õT·£Ž(æs48lÖHÓ4í·®ñ󧿉öíNÆ9¦÷GÉP]ÕÓÓ‘?ýLÂ1íî±µV„×´¸¦{)Küšö72äŒw n=À[_¥{$Œ=l¬sC›#]àFÄج+ã~¿î~¯Ðä‡VTRS4ާõìy“ ×$î$Óž_e$ø3ácRÜuž¾k)-qéjOZæÇ9’J¦<¶ óÊã³¶VÕv™tÆ·¼Ø&cÚëu|Ô„SÀ#1¼ãÔû…óÈÆäõY߀¶Aàé‹éùé­Ô5щ#p0ºi\擸<¬svýõ‚Ù4ãè¹GÌ鋨Ü|D€:$|RGUÇ9yšËW3~eÑ3ù<©öÆŒgø®Ö€ª/;Pçô0ý—‚~KZž0é[KâGW±„¹¯–ž|“œy”Ñ<ÿa\fxˆ·´µ§Ï «¤Ž„GÍ·¿ÃüVÇ ñÙxžÕáæåOý'YMG!îÖù‡?/U¼$жíâFS¸¹¡µÒTd7† %ÆG÷ÝÖÍá}Õpzçè¹/–í[¶×UpŸ>U,™øýÖ´¸ÿ%†<5qÙüY»^-UözkeMqÜ«_Âw nÜ)µßÛy¯ŠvÞkš)bŒdÅ.‘ŒsÎ?œÙÀÈ£|’«ã&&Íá¿R“ÍÍÝÜß‹úæ~{ek` øªØOÙüÉ$ਨy%¬¯¨‰öæ?-ÉÙHÕB21þj£ÑLñß õ¦«Ô:F³KØîW˜™E3â¥g0†Bö8zsw;| *xwÐNð²¦Õ}»ÅpŸÍ–âY\¬¦Ëtm'wnÒI=Ê×Ö®K•Ú²ã!æ’¦¡ó8žüÎ%IŸ<<µj«v¶¹j;M=}š¢ž+@ŽVœÈâ|Ù9^7ihò·i$°gü$Ý,°ÖÞ4ަ†ºÕGO$âŠâÎJˆØÀ]Èß…ûg|7ä£}ÎÉNt£µ»Q²¡µÂʈË+L™ÆihþÐYgÀ† }§ÚÜéwºéÖî9Úß5®?/-Ãê¯o´BÝ£Õþ"SA4öªŠfQW=æ²0žBìtkƒ° î1Üf5èáv:’•új É®=³Ò F9ïlp-pÇ£€ß²—;5ÄÿÑ{FŒ‚zøã«­Œ3•Í--=íÜcqÌ:‚U[3]Êex›Ó'ªÛN‹´Réý!h²P´6š†Š(#Ѭ?^«Ïâ¶–:ׇ—­0Ú»I_Lèã— VçÛ#u«©,uQß.6Y䎚¦µh•À胋†}~°\ç4“žlå}Ú£G_OZÑñSÊÉZ6ܵÀÿ’Û2¯Pƒçy"阌®k³˜"sÈ-Ûúà DzåÄ-5K¬´UãJמZ{­”¼äsyNpø$¦ZîW’ÔíÖž®ßW5º¶'AUM+âž'‰’5Å®i÷ñ"š¾8Â55žŸ‡ºš²6ÞmÍi±ÔÈ3ÆÐ’Iêð3Vû…üWðú] ÅJÊŠja–ö÷×[ù ywëaö,y#ºX{«·À†¶¨ÓÜH­ÒâH™£…‘°ÈpQ&2>IÞ9v˜g V¯‰96–ã}Æš¥¿w½ÓTsÂÀ$ŽóCAݼ³²@^^SÝO~ ë[W¸kh»ÅY eDÔ1Gs€½®ts–H×°d€\בž£pµ•®,ƒLë[ölŽ”Z®U4Aîêï*G0¨jöxSªª´v§¥¾Q=¨£¨ó˜_x‘ÌÏ)ê@y#Ü)õââ!uðÓ«]IO%H}%=KCáž9 È=h.>À¨ƒàÚèëˆM.ÈÃKjE#ùœðº» žùcvïÓªØô@¹乨™ö†ë9­újæ¨jKÑÕ/© vîŽ'CÊ×í/ÉßlÇê9Spª+§…kN“¥o%mÒËO]ÈëĺvsCÎæ{¨Ar¢«¶Ü*-õôÒÓUÓH视Vòº7´à´ŽÄº‹ÜcåÎÈÉÆ–µÅ£9Ûª“ülÕPñ7Â.šÕs²/ÓV›Ûhn®Ý¯0½¥øì$ þ™Èì¢êÙDŽ˵MÛ«É$trS õä‚y!`ùÆÑôVÚVÑÁkdpó&Ôpa¾¡°LOó ðßKɬµÍ«KSËåÉ_;b/𴜸þY[Z±Zi,öJ M+?Õèi¢§‡›rC[üZøñÑ¥¿£Üy«¹³”Sß©â­`hÇ+ƒ|·ýK˜]þ%ìx ŸËㄵ cê,U, $3ÀâÞž'è¦î¹§Ž»Cߨ¦käŽ{eLndg Æà@Çu©HÜü´rà†ãå…éÙ륷ÔÃp‚I$6Pæ;- ì}v[p «§­£‚¶žPèj#l±œÚàäWkÁ;s} `®ÄDDDDDD(¨pvUDDêª..vpGUkqnâ,ü-Õ—GsKe«”w$Bì©™ÛŒmû 'ù-’ø£u'†Ý:ç’S%Tü¤cÔÈÑù†çê³jÖ¿H£‡‹ñ28Ãèüœgâ?y¨Ýd¿³[ÿÂm^üŽúåMÔDT;.êë~ÁÉÇP°Ÿ¨¹¼7ê—"¨£yüCïŒàµÇ+ùêe%ؘœm¾B‘þ í‘]™Äû\³˜ÙY¤&§qiè.߸ʎŒw {£œ`ç*Lx•ãtÁÀfM?RÁ·¤ÐäùoAÑrD_5Î6ËC+\6Æ%­O²=¾%5QkÞ9£¡ó‘÷~¾ªáð#“Ð ÜO“lª’—lמF’¯. ¶&ˆ±Œk<7º K<”QGY ý×G#I?î󪇾èÍOˆ[ù´”õ³[œÿ«º<Oë?‚Øèc=}W-ºŸÍÆúïÑœÖ5ÙʲÕ~ HÞ'ŸU |V2‹ŽðQ¸àÕÙª"h>­,wòaü–ÀuÈÑœd‚îà®Mhô ¤«‹wþKçª<¡®‘Ìo.îöšÕ÷Š?¿ž?ë).üò\ä1s<¬Æ{´¢Æh¹Â÷E3%n9˜àáŸQºÚ6€­ŠáÅY4s:f~Œ¡td»™¡®ž¯ðãmùAü–Kaè;*ɹo6@¸°Œ·ÎNÊÜךžÛ¤´µÖóq¬òé­ÔrO).<À š7..-hù…©jÚ‰kkfª—.–y#»’çOñ+h¸sOÃ~Ú­®¦1]«¢mmÑÏžö‚X}˜0Ìdžådé£lŒ!ßCè¬ûÙc2ÿ*šA y"§ Ž'·˜‡’FÛòï鿹Åþ5nn‡ÃÌONæI]5,DFþf1Üíqq~xZî{²K@êr¶1à6‡ëtœ¸UÕH=ÿ\æçþà³â"..î2¼}R?ùµuh;š)÷ÎÿÕ»¢Ô” ˆ›—psóY“‚<}ÕÜ4¶Çc¢m}•²ºWQUB‡8’ç6FaÀ“ÅÌ¢zÛŽ´ZëÃÆ±¸i#]i¾PÓÄ*éüÖóÁ äk]#\?HËr0FT¨¨s¢7ð7~xb¬šÛâDÏιÇÁ»H g뇻­ž``´ãávÙÈôÂðcµiýi¹]¬ºrŽ”Ã õREm£c%›nwµ¸Æî-ddá@/š•·î5Ü&†ºêjXbŠ7Á8š çF×Èֳ⶜±VHè©++›”áÅŒîÐ0ÑãkXƱƒ h@ªsº­Uñ¶‚ãdâ–§£¸<>©ÕÒºI0Îìçà«ø 9oñ]#ïÊr¶§Á»µ„‚ª'ÃY]_R*à'he†CNX>´ÎI'º½1—ݹ‰åj¯×K·5•†•´ÔòÞ*9XÑŽbZçüÜAq÷qV:/®Ñq¬´Ü`¸[ê$§ª§‘²E,n-sAt9 lÖ]éüFøm½Ç $ÕVƲGÀ?jão3_z X$gÌŸE ôíÂ[> ·Ü£’XŸIRÉy£Ùã•Àœ{ì¥ßŒ­#KzáE—\Ûâ«’¦†}à !CQ™ƒÀhÙ­{ÚR]“•bxÔ°ÚøÉ-¢±îím’’\p$k„­<5ø^Œ»´xˆÔe´í‚ ƒ`¯‡—«ƒáh{¾²2E‰líä¹E)c$Œnö¸ìᲟü5®“Zx<­¡.ÕÇ`¸Z]Ê93"‘‘á£;òòc*"øV¹6×ǽVHo_÷bCAÏ£î6ÝÁlá h|–á«O\.sMÒÓ>WK!ÃXIæ>êÕï5eW5m~ uD’SÓ?ɤ‰î'’›˜†3¶ûŸw­…ð†ÀúÎi1x.¡¨Ë¹]»\!or£Ÿ¾RÛíöþ#Y©bl†_ºÞ^ÁÊé‹€òe-gg5ÎêrÏr¢e¬Ñ²Ùp}SyÜæµ‘4ã’>E£èJø 1dæiˈåî1ÿðRNh«å§Á¦ºÔ7Êiíuv¾b<ÇÆÊ˜[û-!øi=A'¡dž´¹Á­“жëgµÛì6J ž™´–Ú fSRÄ×Ë[†ŒÉÀÜÉë’£wÚ×ÍÃí>Ö;”Cs{ä¦ñò´ÿ?ÍFoµ¦ÓÇ #YÌ?JC‰;÷rŸæ¶˜¢Ú?bi +©Úð>åp–…íåÉpš>vœöÀGø–ðPç;ÄF›hÏ)†±Ž¸û´‡Û }@[3°· Œ{¨[Æß 0YôíuÏB:ºåsûø™´²½­h¦qw3s‚ZK7;ìTW©¢ª£­©¶×S¾–ª–gÃ<27cÚy\×PFÆü!ê¹uOl⣔TÙ³i”´þ!hŒãÞ2Ìûåf Œz*r‚1éÙraÈߨUDDDDDD*ý ÷UDˆˆz*d•ÅÀÎ=öX£Å½k­¾u•C金Ÿ>ÒÏgø=k2䜑ۢڅÑàŠò–þ‰?<œÿ¬–µ±ãL¹ü]ƒ!¹Üä8½Tåü–Lû5ü!Öý)Oÿ]Êm¢"â@p7踎¸qœö¾0²JÙÂ骓‘­«Šø.Êc”Ó¹¤o)/{þa`/SÍ RÂÖ +£ÃùH#>ÿæ  #|•QÇ9Ÿ#ƒZßSœ-–x.§ŠŸÃ†—lq†8ŠŸ0€2ç}æ\’G_O 2""âì±Ùxš¾_'K^&‘Ødvú‡ì#rÔ£€d 6I Ï®át1åó€ º,ßáå”ðpïŒWÝù4¨…¹ÁÞcοBÒÖãÜç²Ẩâ74õ Àü•íáôÖGÇ­ i„¿§)ZâÐ3Èdh^ÜœÙöè¶ßV<çb‹­µfŸÑ– /Úš·îvæ=±>C å˳[ÊÐNçoOU¬^(Séš[\Í'tuÆÍ!Ò=ð:'ÄÇn"-=Ùør6 —<é MY«¨®Ôu—oV+„UÎc£ô­tm{ðy¼×s¸´t>YÏU°às´ìW%¬ol|\yÖPÌîbÊÀ[¾p×1¯ò!bÙÐðv'$® Â krr[EðÙw¢½pbÁ_odpÆøŸÎÆq'9/ÜîO19'æ²æhÏq€µ9ÆM]‡Šú®ÓV15=Ú¥¤3LŽ-wÈ´‚>jÓƒw=q²¢“?gî¨u«‰Wm=5Cc‚ól2FÒ7|ôÎçhü7L°ïì.Ó\gÕÖo)‘GÖi k1 Žó"Æ?°ö©iªk¦½ðuú%´®««’Ë5 ,±2)f {zs8ùmnrÑêT;á– —Kq ň–¾‚ã ØÈÄ7Ød7R+í·ˆx™¦î  «3 'ÔÇ3ÿÙVà”Tµi!±µÜÃ`c=—Ïâ‚áOq𱨫`«Š®)YI’™í1:FVÄÇòì@tnm¶Ë_ pÚ~²;ÅžŠðÈùc¬¦Š¡=@{†}÷^/4=Ÿˆ"¿O]é™ –'$ÇÅ £v¸˜5­½dŽn0i»S¹ š†ŽŠc_úKXâ=ú­¥ùÀ8‚Þƒ+øÃ¶LJ]XÁ]54PÖDKI,ò§cœG¡ä÷*&x0’ž:XèóTꇲ'çfÆi*DƒÉ&/÷Jز£Ú×´µÀF €Þ.¸Ví5©.ÞÑ÷Ú¨o¹Md^Yp‚IZ׌¿†L|Àì­ÿ |Kªáæ¿§’¤‘j¯‘´—IÒà<Ι„gå¶h¯¢º[i®6ú˜ªèªâlÔóDrÉááìA_Vب풨]ñ.@ç¶ ª"""""&sÑS¹êª™à}‘Žíî«èqº†z&zŒ*“ÐaaÏTõ•^u%=÷~¢g‡84ypÌÙžwïËÛ¿E­ºðN ÁÈÊÚ'†ˆMÀ=±½š 6þÛy¿ÍdU­?¥ŸéÎ#4[õÿ×Î?–Xû4XÃqÖÒÆ!¤ ù.SQ ¡;.;†ÿÖí¶Ç1?ÁE¿´Ní <ÒöW¸ýâ®òú¸Ùެ†1Çègoæ ÍC9Avîëù®¦Œ¸R³…â×ñ®ÏA’ÆVÑÜ(Ü 8q’Š`ÆägÁbsÌ$ààù/Ÿ*OýœÔ²ËÅëÅXfb§°ÊÇœùàåùìÇ)ì1œ×ºäˆºkó÷)ñ×ËwòZÝñà bñrph(œãê|†7ù4.ÏÓ¶ŸÄ=±î?ú fÙëˆ\ÉlŒ„ AÜFŽV†ŽÃ ªx~¥ °xÜÖÖš-”葉†6oë©äå¸å?‘ôS ºÌЊ†Àeoœæ—ù¾,§žë™8w¯óV§í”—Îê+MlM–›|ÁÍp'%¬.iù‚ÐBÖ÷gš1hŠˆdk%7ª]ñ‘¼˜?À•´àrŠŽ8=¾¥PlЪŒ •Pþj„|×ÏPK]ntƒ˜çØãü–¼üiiÛe–í¤æ²<>Øikèâw?9/†ãPé wsÍ1Û±ôQñ[¹Â~îÕW[F¤¨‘Ídy‚ÇÀ Šš(š=pÆu*s–Žþ¡q‘Ä6ÇRJðõ±–-w¨Ž Â"¢–C#ZpÖF €éÓqƒ‚µƒ¬ê磧—LÍ] ÜÀ䪒ÿ…Ãü'pwû)wörØ ¤á…ëPÉolu•×WBʧGñIq³;»CÌ;ƒé´¤_Yª9äÀ\›’¶Ã|z(ëãùÓ S†´ùO¹ÆFÀ;¨þEA½ Øe×6T¸6r§v ó•³ßÖèm| ÑÔ°01®µC;€ˤo˜ãõ.%_Ç¢"¦ýIú..À¥ÅªÈè8_ªë%w+"³Õƒ¾ñ¸ ~kTÏcœÈÛœì_@º aqoAÙ^Zû-—OêêG%òÏ÷#“ÑÂhÞ?ƒJ¶\÷4|$g•]Ü»GmãfЏÔÈb¼Ó²GžP÷†òø·[HkZ$qÀÏ1z,ãÖ–JŽ>ª0òh®ô³œt‹òýgòZòçsžâNëaÞ,­·p3ô‹¡c&¹\%”¿˜Ü1¹üšë„Ìó"s9œÜŽ îµâvºªãÇMq=e$t³6âaòÙÓ–&66»üM`q÷+0“ G°Ù3ñ G0[ðO†ø|´ËÍ÷ʲòIÉ™ÄsÇ—z`÷Y©äC²굯ãAí©ñ%«Ö61¦‹ ~")bܬ3UWÐ3ÐŒ®+.xC©Ž.=iØcŽj‡ÏÈN"sà‘»åÙåú«ßǶžzÇMꆆÒ¶çRÌ]-3€æ?ü9boøVPû lÐiÎ7jË]%3i顺I$0ðÆÇ‘#X äŠûDÚÛ…¯‡š‚—•ôóÃT€c!ííÛ¶À•8C,´üUѵC0j '©,ÂØŽ˜Ðµ:sŒZ‹RQËè»Å?™+pñ9—˜œçrsìì ÏˆÈimÞ 5Ãè"cË£§vä‚÷5’?$z¼»ó[-¶T2®ÛKWƒ£šHÒ:àþir¤¥¸[ê(k©a«¥¨ÑMÌdŒpÁkØ‚6ŠüAðÏ¡t~„â&¨¡}]d³Í=®ž €Ûqõ¤±ÀåÇ-Œ ó•˜ü-WP×ðH¾‚heŽBñì=»9§ß9ʸ8æm:Ç­?y€KE$Žføs$kK˜öžÄðèVª >–óDqµÔuŽ~Üï°–·Ô†˜^{€_Û;ßZ7ŽÜFÒºj‡M[®ð¾ÍDײ:*Š8dÍsÜ÷5Ùo3sŽÄôÛ¢ÍZ⇄{ýE®ŠÑ-¦J8.´ÑBæÁQaû±”lFXwm±Q ’zœ­ÅX(!µØè-´ùòi)£‚<õåcF~Võ4”öª™¢À‘¬<¤ôÏ@µýy£vœñ{FêfŠwMs†xqæNÎV»:G`ÿx­ƒy‘Ü«/ŽvÉoÖvèÍ,ÖJ¡Çâ{b.hü‚þ ¦l¾ tÛcææ™ä{y/ÿšÙ+cPQÑÕW‘SNÉÚ×–84‘‚9‡]º…¯ïºNÛî)Šk smw:f×Å“›îï2=¯Œ¹o0Ïïc²Ëþ øËWúN“‡·zˆŸo08PÉQ;c4¼€žF“øì ùz)ŒÙ§¯º®ØÝßä¸c${÷UØÅ¿R¹ƒÑUì2¨3ƒ²âZ2wp¹„zªöTqÇcù*gꪣ¿-YQcá=&Ÿ¡¨ϨkM<íÀ%ô¬ÎÛã1‘#º€7¹¸Éƒî¶³ÁVòð{F·bÅGû8ÿbÎÊë¨E äqØ®P1¼P¶`Èûgò[PnwϮʫ„›ãth낹tÀÝ:„÷U;¯+SÈú{mTnœ>*YžÑ KžHa#” ÉÛe¯Ï–ë…¿€†éKWOZÈ.ßxeS ekÝ©„@÷†ã…ÓNÀÈ‹Žùß êaĹ#Ÿ'ù. ‰žSíÁ8Àî¸Ú¦–‚®–¶žQÔÓÇ3dÜr9¯;éŒ÷[v1±Ò?-Èæß'+øÐkG†TyKC]Dᎇ° ÿ5­HÀ. ˆ'å²Ú„xÛ‡}#ÊÞ^jW¸ûþµû¬ªŠøÜ஢:ºãÄ7Hë…®²œKt®h}ã`i“Ìs@9 ‡gl(›"6·;ª´‘0 g#è§·€J¹&áÒÁÅ”÷§ò8ƒƒÍd€q°‹q¿Lák+ÄKn\{ÖòçÌÅÚXAÈ?Õ†³zráb“Ԫ˗àæÏ|a]¬û‡ô•aphŠóHâIÀÍnV~ûB®N’÷£ìÿq–&ÓÓÖU™Žy^éflf1·VŠv“ýð¾?³®åU¯VF8 ZÛC§c~x¤haèq´¯ëŽ¿C‡<@×Érã–·«–C!ý;Wœü •Ì`Ï k@ROÆL´÷œ-¹DÎHåm3£hÜÉEÍŒý‹z:½–ÝQe¯’C).tó¹àd´2VœŒuè¶Ï!ÄŽgÓß+X|t¸Ãwã·®¥{ <÷z–Æöœ‡µŽ,æÐògê¶IÃ9â©áΚ¨‚GÉ–ŠW1ïüNî}Õ¬^;´·‚Úè·'ÿ›—§ú³÷QÛìû¾×OdÖVŠz‰ ²ÙUHú&»g5³’ìüùòßÔ©­«$ƒG_ëä“Oh«”dã°¼­SÅ7•DøË#‘²¿8q9ik\À#÷ò=ÛéœüÊHð±²Uø&â¾çºé$ïwrØÅ Ÿ\8ýJËpz>¤Öé+=c·3ÐA)ß?Š6Ÿó\õ@.°Vœ,•`9¿ 唃·Ê&ÿnü§“;gÝm#ƒ®Õª¸s§î–˜ê1GD_—Àæ0Çhw_n·¯¸GUAKE#*‰h/Ç(pÜg=ˆþKYünÕZ³_WÖÕJ$m+䤧>W–|¶Ê÷Ê:`¼©5öhÑÔGm×77O= w«˜ÙÜáùHßÍLTEB{..é׿ºÆ qœû&;ìr;¯ïW!pñ [Fé3ú2×IK¶Ø%®›þw?U«Y)!¹÷ê¾Js‰˜î˜vVEà5Í–N1é[´ò:8hëÄÓ µ£êp$û>)Og3œÓXêdq.Ç /…€_ÅŒ{ç²ØPéÑW¶W6wߢ³¸Úe„z²Jp í³Õ9™ÆÇË>»( áž*‡ñÓHËeÅ·&—3”d×d`ô?Él¸l æåÁ=ð6UNéï…Cœª4œáØ'¶Ë–ë¦rZÎnr]Ð u+^Þ'õ ËTpk†—Êù|ÇVܵ !ÙÅcC1¹À Èö¨ìЏ €vSWì×l_ õ³ÚÓçš6¸öåå—Ç*``ãæ¸ì†rûC+ç£àM54. euúž †ÄÁÒÖªÀÉYAQÎÌ2Hšö;³ùûoÉlOÀÉ3pÝWÙòÉÛÕ¸µgeóÈœì ö\^Ç€R¢¯Ú18‡ºV›˜|wy$å?ÙˆþWñPËNÅ^£´ÒLâØ¤­Š7z4¼¶ûHöÉK9k˜>».nÎÝ1Ó*£ä¨q…ÖáÌìdü•·Åƒ\0Ôï}?Þ#m¦¤¾ ÒîvùNÈÀZ¯ i·Äæ»™¥£›çÿ|¯‰³óIÈÀ@'8Ç¢ö,”ܨî5 ÃCHê©e-qhÍk[ .Û8 Ǩæg38féKæx[€ o;œÞçpu޼LÑ6·€úÖÁ¸ý<Ûö17Ìõ?<-[rí¶î[Kð¼æ;ÃþŒ,qpÆHï“‘ù¬’‹ø£•ðpZɰM¥ìë¾ ÿµŽæ¿Îvú/œe¯iiÁÉDzØ7Šˆ*8)3)àlLeâ¥îåçd û47ø{,öÀpvKºîµuÅæsq§\J\Ó©.'`qÿIzDz3 kŽ>-ÇÉpÎàá}1ÆÞV»«vU´TÅQØÓÔ2CþþJPxïdÕ–Í%Yuo¥¥uS¤žWsÆMAc˜ÐþïÄn%»`òqó}œ±5¼MÔUåÌæŽÐØvæ>eD[Œö›üDzŽúî’Jo~¡šO2Z{•DO~sÌ[+?ÁI_×FÝ|ðŽ:"ö:y#=|ªy"Î=G&¾T`k‹2æ;ŸO¡ä¶ÝOq1ÙaºÜüˆ (…MO#¹£a‡;©¢Ôë –Ëžâ÷³.$îI%lëØš>h¡RI”Ùà=K¶-ÈÜû²²xó·5ÑßÿÁ»ˆÿ÷i_û9œÈ£â óù’[X×±À«v&•!øà÷ÁÁu,o!ÃOV`ŽÙ‰ÃüÖ°g§˜[áª>kéÜãr¸1®£Œ9 Úºù­àSboƒýdðÍÜËÀvÇw}ÒËE%¶¾ Jé¸;¢å{ùÞë s½OÝÙŸâ½½Pq`¬÷Œ…¯¿ʉx¿A5;_?Þ,qIË ‹|¯3› Ía$ö¬?EvšžX妨{$áÌ{\Zær=Ž@[ð­Åúm}¦a±Þk³©­ñ|bCñUÄ:JÓŸ‰ÃpëÐ÷Y»ö+µ·ª!>y‘£%í=–¾\¾êGSx‰á•ÿG6ñ¬–ÍRÂÖ‹|\õç9 åh ƒñd œ„âõvºq&ýtÒpÖÁf««3ÓÇYËæ‚ðüò’ç.ÀÎà 9øBã=‹‡:ñdºZª+'ªº6¢7@ö‚ccI9#a˲w+3Óø£°6ŒMWl¸Òˆg„NÒË£sry2Fç-À>ù!{´)ø[U Žy¯4ã2OAΓßÊsÎ~A\” 8AW†Ç­` ÍE%D#Ó«ã]4AеÔÍ©£Öšrxœ2Û”]?ÞÙ}°j53<Èu ¢Fwsk¢pü×ÉW­´]#œ+5†ž¦å?_s„“œ—Àx±Âö¼Gþt¯6ÿÿ‡q×›þû¨âÖçm»qÿUÜ-5ô•ô³:ÅQM+dàQÓƒ‡4pA0V¬ÆqÈÜÏ3˜f.‰¡ê 8öÝzöùßG ž-¥8}ÂÓü _0_Äz7|/vùÛ< mù)Ïöo€8uª˜ÝÙ·/Aä·þ÷*TÌw+“ZÒàà7×4E®ß´ áü~üm%¶švK~)6;l{÷Øú>ÏŽ_ôÇ{ 8麎\úýâ›?Ã+`6¼}Æ1é‘üWÒ„Õyüø¹‚sƒ°=º(=öuA/õCj<¶ÔÁftX$‡÷ˆƒ°=2Ÿ¢ÆA€A\e“ÀÛ;®m9ôÏÉX#+ä¶pGWWDþYbµÊXGPã€Е ¼1RÕÞ¸óh»Ì|ÎZÙ*f‘ì.o˜ãÈØ»l‘ºØhú*ï„ì©úÊ|ÕQyš¦O+OÜeÎ9)&v}?Víÿ‚Öç~ó‡žÒUò²Cúj¦6¾L•18ö܇ýDSìØ­x¨Ö´[™I7Cœƒ ùc榓wÙP€ê¢ÚS]U…µùÍmMEdò4´Ž1 ZïÊWì¢MK_lw -il Úä¿©[$ð€!€bƒG-({°?iÎ.?ÍeÅÒOë]¶Û./ø·Áê¢ÚK8m³BÒs’çÍ_&Û ŒÿÄ¢Ç ­ß¤¸‘`¥8}ö9Þ\ó†rÜ{†ãê¶Á§Ëb .Ï1§ŒŸŸ(_kŽJ¦Ø<Äv ~ìžÝ½Õý÷ Ÿ‹oªd‡c”Žê?ñ“ÂþÖ55}3?ôZñ7;¤òa礨yß/#“ûL#Üõ–ŽÔ;VO§õ%®¢Ýp€¸˜Þ߆F‚~8ÝÑì88pÛ¯¢’¾4Õ²ÿ¿†íUT3ÑSÛ¦¤sþ#¼¸–ã¨Àó±üջƿ £J2ºó£§“QÙZÇJiÙp4ɆÄ ŒØin\1œ8à,;Â=!.°â]‡II0§5•â:ƒ#]Í—Ê9@Ï7+{œ º­¬ÆZç~.Åc.6j­9pᮩ°Ûï¶Ú«•~™¹¾šš9ÚçLÖÓHÊFăÔuúek47tÛ?5´ÿTl à^¦c\Ñú*0ã“—·˜ïÝÊÿwá*‚@[ð±OЉ^xª˜Ñ–>Ý0pÛ .¯¨ZÔpÎ@ç©_ ŽýhǯE°ï0ÓCÀzAKQÓÔËU3¥i ™szÔž?ŠÏC˜tÆFýV±} {â™%™ òƒœ07Í“mÆ0;åxÓwJ}¬õ½´@ê·>};ÀÃâ-¨›˜€Á‡ûÛm¼uãrEÅíeÕ ©•—úæ¾f´4HECòàÃ=p²ÿn”ðÅ E;eò'©y Ü€é@>Ï.ÏÍ`9ÏÂ{lv[ ñ/Äj= jвJCgžßJÁQÈúPiHÈyÃKš:µk͵$FÝ­Àü”¿Ðþ-mºsGØ´ãt\µ-¶[à£lÏ»áÒ£ æ#ÉÛ<¿Å_Ö/Úª‡ÍºÙ.Ô3ÿêàts·ýâYü•Ũø«£8•ÀÞ ;M\\úªm/^úš9â1Íu4€Îý¦’û8À2k^߯·ã?ûªå#¸íÿq]{6ÓÕ=¢qZ¹3Í÷QJdw’×™;?’êR³ÓJßšþ\—˜j®1°g£_OFÓÿ]ÅEFŒ¸u·BÚnéH0ØìÔýE«ÐÖ.äÓÕNçäÃ×c²ŽšrŽ[ÏŠû=S©"ö[’M$ð¸ìÿ> À@  ^pìd0¨Æ%qÑzòåm¯¦k ’®Ih¦‰§É–âG)Àé zƒ²ïáV­ºhíUE|·Nèª)ä€Z~«I h¶J£_f¤¬xÏ $8ppø›ž ßÑ}Ì7uUãßKLñ·ã$­xéÿéš*¡9‘’[ ˆ4»>S˜Z;`ä;üEfŸ³¯MURh½E©ê &žåU-(øñqy;`4™çc°Û2±­ Æ,õùz.IÐnˆˆˆˆˆˆÑtTò>7Fæ¶F¼–»vÁÕ—ª8q¡5?—vÒ¶Ùac] ;cpnÇ«qÜ«ëŸ úóæÉ`™öº—HdÆ\Ö’OBFF=€Ùb{„ZÛt’Ãy¦lasaÇŽìÞvò¹»`ý+»pO‰öÈæ–M)Y4Èèß$ 8{;z+ñc»Û&ä¸ÛkhœAÚ¢GÓÜ…ç2øÍB¾ÊJW¶2÷4äìºê_+yÚÐH æüM9'›ªå æŒpÏp¾Ñ5MF$ï,§œ ?É{z_ôT·‚Ûì÷(h2’hXÇJ^#w–>3Ê?/1ßláyÑW¼Ñ0ç8î¾¹jžâÞWs–ž¤uÙ|uw Ì#XwÈøA\r‘€HÜ6<`†ŒarmÊRC¹Îùï·ýú¯>º¡óT½Îy$»sŽÛa|îypüʯv—ïõ_m,Í|d8Žlrã§Õqøcˉ.À’¾8ñ̺§×ÙÝ[ G.´l‹–jkÜŽ‘ß¿Ïd~X!I|ú·lz®Æôµ­ã–§Ïñ'¨"ÈÅ<4‘€LÓÆýÿÞÏÕ\~¨CxÈúŠi›9v˜«ž¡¥¼¦÷†F:ó~ÁíøÏ¦óÎ…îcý’7 аþÒëys¤þÐ/°þkáQ_ÆÔkÅŸêꬵt¶†ÓÖÇOS$NdR6ZÈß! se¬vã rú)hèšZ;· °5£ Ê§6ç#Õcœÿù>k#&E»œíƒ#3õÇOu<:AÇm')|oŠw<–€ZÂàqÐôïëÙl½=UQ­â¬­Ò×{}¹ð2ºªÝPÊsRòÈZâÎP^à(à'®Û-uø—¶Ué‹? ´}Sææ ÒŒª’7¸82jŠ™Ý Ë@vhXiLO³©ÍŽ;û¼ Òú¨ØùyÈ.o–Hn1ƒƒƒ×¿º™ð»õ,- §§²æìòŒ ôöPSí$ºM7´½”¼˜i-ªc{M3šãõ7òQ¢é<Ë{`¨’GM’V¸lÇs„{clSÁÅI<.¶P¸ïªŽQ釙¿ûP³‚é“<îÛeÁçm”.ûFªY&¡ÑT<ßTUsrŽÜòFýCù(óÁ™<ž,i’ÑÌçÜccG©vZ?šÚ¥’RÙh©žæ¹ñSÆÇô$4…ñkK…]³NÔÕÑ9¨høöóß§ÑB­e⟈ö­Ut´ÓVÚÌT“Rµâ…¹xcÜÞc’wéÓm—Œ|WqPÄúbÞÜïú:-ò;v8?M×׋ž$³%òØ%Éêê>Ÿ“‚î¦ñyÄFL]+ì0œ†>€=¶x?Å}QøÅ×ñ´4Û´”ŽÏ¥˜§Òaòú/±ž2uˆÚK6•w7B#˜rÿùӟຫüXÜ/ýÚí£t•y {é|ÂÞW ‰ŽárÒ>$íšJ†¦›Lð¿NÚ¤©ä’«î·¶9Ö†´ˆù>„ø·_E‹íjÙ)lZ^3ÊqÏÎ>Ûùc+¿îµüJ¢â%5-†×¨é¢’1UIFÖ‰ ÚYÎö¼¸9ü®#˜ï‚¾‹§8y‘Íþ—ÝŸÎOêè öÄ`z«]ºˆMµV^)´uú8i%¨}S¨ŸlˆEæ9ÅÎnCŸ|ãuŒÚO(¦ Û_á4Ü/ÓÎhk¡µSFæŒÄЈWCÿ]MØwÙc¯4¢¯º¾ Ö9̵Nö—»B?=Ö±³Êbs±Êã¾=6_ œ¦R@'ÅNÿº†íyÒ‹]lŽ–’É-!è@s§·¦øçü°¤ÐݤƒÐ:-dø›t.ㆾ|-p¥Ó–‘ñ|ÇpðX¤8€;lB倿ÿ_LDE;Žëæ©x{Á†µñ)_^ß º¹¢ž­¶æU $ gº<ôËN~Šæð U¸-£’Aú½@çHÐwä’š&ý3ÈwöQçÆ =7‰-c9"50ÈáŒ~±Ôñ:Cõyqú«“Ä…¼Z8qÁúS4’],Ú™ãøKÄnØæ#ß yŸ² N3òS¯ÅÖ†ºëÞi½Uj†‘õV+p¸V7<‡î¦®—“'~^\ò’N:o±Ãb½mÖ¥¼ô´³´l];žäçcá®ñÓ¶ß u„òyl|´n…‡áÎî~îp=ÖoÓÕü&án¾Öº®íAM=^•«¶~Œ‡3¹¢rÖ’ç‚<˜åæüGqŒ¯ìàçÖ甑æ[ÏC×’°uéÝI~1ÀêŽk¸Û¹~œ¯ Ï\ùZûTyt3Ñ;—šcGP0ÑÚgßöÂòè駬¬†’š3,óÈØâ`êç8à©*fx4²Ój ú«LVO÷x.×zÚ3?'7’d¤¦h~23ƒÊq‘Óª‡·kuM³QUÚkYu4•o¦™‘¼9­{Zà$w­¹hºaG£¬´m9[àŒîÆÑþK†µ4ãNU}êfÁis¤wF†Œ“ù¢G õLúų'£{ßnÎÇŽWÉPÉn{}ß0ëÝÁ^~(x7|ÕzTØèßQq·Ö²ª(|Ü—Äæ9²´Þþ¨^Wz¨k§ìõ5úªß§¥k©j*.0Ѹ=¸,/•¬Ü}V×hàŽ–ž*hA䉭`Ï£FÔÙÁÇ^Êݸ2y*ÞdØ–å£;ù¨ã–@x§LÂß,º—Ìt|ùÆü€Ÿ˜Œ;äà¥÷„‹WèÚ:•îŽGMFúÂñöò¾P;€ð>º,®3Ó|†;îª:"wDDDDDEC¸ =ÕFÃ'Ü¢*P<¶~à\|ˆ÷øzõÝ û |‚¡‰À|.?RWÅv¶As£}ÊŽŽ¾’A‡ÁQ ^ÇpF¯zá ïyuÓAiÉ^]Ì\ÊFâqŽ­ÁVËÂÿk]˜–ˆ‘ƒ÷K…Dc¿nr;ú/£Â æÙÒê@AúHüXWš|ðÅ­Ã/š¼÷ûõ?ÿ믖/ú$Nï3TêCvCC 7°'ÊÜûà|—¿Aá „ÔìÅCïõ‡™+ƒê5« iN p¯LÓyÝjyý©*ãûËÝótœÅ}º‡„¼4¿Ú¿F\ôE‘ô¡ÁÁ±R¶4úµÑò¹½OB±C᳃4os¢Ò w7A%lïåÌò±?| R\县†µ´vÙ ý}Åò±êÇ1®pùõX>ñág4/òáÓT·óŸ2–á)ú<µÝý;/¼bƒi4-Èrެäxÿ„•`^t¶¡µÞ_i¯²×ÁpýÝÐ;œú팪Ý4~¬µÚK\ôÍæŠßÌ÷šŠ)#‹˜ôÎd¯ôUXy\èW3+¼³†wêWˆ óe¸ÛÔÙû8®ÐGõNŸsÀ¨W±»åÌ-òÜ}0 G楾ÍÛrˆìFý{®h‹Z¾6ad¾'µ$t®t³LÚ æã£Í, ë·)ú«§ìó¦©ÿJZŠâÈÜiàÓï…òm†¾Jˆ Fþ¡üŠöþWE–žž§%}Í`É!§ßd§p{rI]o ûËNÀÆø›åŘÜî@ì¾ç˜ª¡v. Û9MÇMÖñ…W5'‡ýRæ°>:XÞK±ðº¥wäþ*'ø=¯oúu°– \ó$±¸Fq³¢pÉØí²Ø †Q0Їø++r×ÅÂ}bûkCê›aª|Må=DNÏBH鎘PSÆWÞ5ÎæžÝŒ·5Æ& “+ºdãñg„,ªF1ÓuE.¼\¥ŠÏ¤Ã `¬Žh³±{COæ?%6)€õÇžWaö*ý¢‘—ñÒÒÆg9@íþ±Sþ[¨ésä.iÀ¾Ëc> ]£©Û€L6+[9ÛÐæ9þk9.©õ]wñn3׺‚?hd¥üd´F$ò´ô. Â]<ûý³ë¿ÉaNÀù¸»¥"k¹sw¦vpz‚~¸[c‡ú¦t.ªúx*éd¦©²Ã+KÃÜŠÇ5| á=uÑ÷+†‹¢­­|L‰òÔI#ùƒF »Ø;»8;/¢—¼!¦Þ>iÒrOë)F?k>«ß‡‡ÚLZ+MÇÃk„mþêú›£´‹\Ý-cž,ÿÕ\¦tç;Ýý´s?ñŸ¹G— ç}·Üet;Fé Xc—JXÎbþSnˆŒœzuØ~Kæ—‡L f? ¬þ>‰?Ðæµ žQ¦îYÈÈê²{R;õZ²¤§óî4Ô­/•‘þnÂÛ¦’„SXâ§h‘>F0œ4<ü^«¿ \ø‰ÆþÅc_ÅÐð[IÂØáŸl€‚Ö|àœ^ž›/>AË(öÊ¿gÄÍ /Tíš/2;—3¡ À:ˆœ’y·€ Û9R_8;\-mø·Œ³Z¬m\v7ÝÐEüÊÃRcÊf=o„äÎç+èat‘Œã wôtLÞRÖ‘‚þû©?Ä}COsðƒbµÎÆ>fÓRÉLyžK .loÇÂÜäÝŽaÛ¥ãà‚‡×©Ï.jËìÌ|‡bæGO.ýp ’tîJ¾$j¤­ã–«©”÷Öïœï†4grNøÏòÙ\¾%o̺Õé \WJ+¥=ŽÃ ½³Ò0µŽsXÎl‚OÅœƒÓ¦ËÅAQWYOIE¦¨žFÃLsÞâÐrIÂÚ'hů€šÊßJÒêjM'YO1˹[LöäŸZ·1)îÀØw[‚ †:jH©ákÆ1£ Œ4€è:/ ‚FåaŸS¶/ú¹­œF~ëp2p긎ûÇü–û9*)Å«UѸ“;ê!™£l±¥¤õÿÚÊKq;‘œ3ÕαÖó\àyÉÂÕž¡dm¹8ÒS¸ u0Ýoæ¼È&– âžòIƒ˜áÔræ¥Ç„™«éü7ë9íÓBÚ¨ë« 8yýÊ2Ó¾Àd¿î¨¥]P*õ õA‚j§HÞƒ/Îà-4蘆RRÊZ_ ܧl†€p¼ÝeKOUn‰µ±¶J6HçÔ1Çg3ËxÁõ#*7ð“K:ÏâÆ¢¹Ñ©®Ö‰nìÈÃ9žÐøÆ6¯nß R­A,Úhè|oY`¦§cažÿmžF‚çKŽÞçù©Üˆ­û»¹eqÏ Ã?-Ö¿¼dÎj5õ=CÛË$°9Ä’9å.Rø»)çÁúcAÂÝ-j|±É-ºÏIE3˜r<Èàc]‘]ÝQ¢"""""&rˆˆˆˆˆˆˆˆˆ‹¢¡Œk¼æ†2S·? $EnkÝ1g×N³Ljj#[n«h51¹®-sHèæùo•.Þ -’Ü&u¯ˆÕ´”eß©†ªÌÙä`ôt•ÇÜ4|—u‚› µSÇ]¯k[rÈg’&ù/Ë kŽZàpI. ô~%…¸áá»[p×É­¥wôšÑ;ËUo¦“ž"7lc<™qëPi [^þJ/{ªv3ˆh%yÇ®ÍW6ƒÖšï„—ù%·Šý?pžÄô€<Æ\완c-ëŽË'Z|XqBš¬ËQz·×Fèü¿*¦Ý(;ü«ä9ß×t*ùÓþ1oQML.º^Õ[…­™ÐTÉÞüŒ¼d8Œü8ëÝeí'âO‡—èó5æK á º¤_\dK3OmŽÉ{škKÞ£ª²ÐIM_%<ï„:š@<ÎSÕ œ¸Ø«ª¿XÀúG¶Û…NqÊ}ú­lø™»T^8ù¬kjm•—'Óù€ò„p3´c²Í?gÝm®“ˆ;•Æ*8ã·Æ÷LàÖ9Ór{€×~k;ê.=è-=ca¯euE<^hc\b2Ð×AÈÆqЙÙa¶xЈÊã7L±µá¢A}-=/}:u÷Wþ–ñ‡Âêø›ÞŽýd—#˜ÉNÚˆ¾ŽÜÇêЯËgˆ~ \Xû·Æ\2>õ±cçÎÑ…uYµ¦†¼KEŸVØ+ü±Ž¾7sØ`s°W ÆáEl£ûÍÒ¶’‚ìyµ66‚q—:ùf]øÏ»l¾U^½²6Ld6)¼ÒÝÏ¢ø©øù ckÿ§6è²@VÈÿͪioj¨¡¦­²ê £ÅM(|u {aÎÛŽ£Ñ|š‡º#EÔÔÔiM3o´KR1;éã!ÎÜœO@\p:Ø3ÀüÕQqp%¤‚¼=qn}ÛB_-Aò1Õ¶ÊŠ~hñÎ âsrÜíöÊ×ÇŠ“j§ãåÂËu¦©–’Ùi¤¤ÐÎ"”C›!Í <’@œ‘Ì6+"ôkî²ÕÙm¶·ÃNÈè<ÞG²5ïóyÜ_ŒmÌNE%>Ïù§ý-©éÚÆ˜9i^÷8çâæ(é×ÙNŠ)›,Q½®ikÚÒÜàƒ¾Ë¿â-øpGäµýãÆ¬Vx„|L`ç ±ÓÂwÎKœ÷gò—ø(ïrËdkáÉ<"Fèxx)äoë)ࣅÎùS0ãéŸâ³Jù¦x‘‚zw\g!£pIì½|wOÞ +£cÁtvÊFÈ:àò'ÍXž`|¼oÓ1³“Ÿïs9Æ[Ì"yü–ÓãÇ–ÜtÀ£ûmÕqè‡sÐm²ª¡öê¸ï¶~YT/9ÛÓÕs9árTê6AŸR±‰ÙçƒÚÐÀ^l“´29\Z×ÂOäV¶ô=¶ºë®­6Û|.–¦ZȈ Œ¿<9Î#÷ZÐIömWAÖ>·NÇ;Üã#òáß~«Þ+Ž7;û¬?ã«îžµ@ç-5 ‚™¾åó0š×5AoÆpæ¼é‹CÛ†ìw;©¥ös0¾É¬føÿéT±ŒrìÇvëÛ®’–'5ÜØ o’µÍâ~ *xñÄ8a‘ÆhäpnÿpD÷tôŸ+ FÇ8ùl“Øî©C•Ùù‚¾¶†ùm Ç1!«á©w4§c²Íôwv·Ã!¨žžWUÑÅ {¥g™S™åkq ê2NGL¬­àÒ¦¢.Ô¶sHuH`víÇ“Iðuøs“¾þ¸õ¾&%ãeúf‚­¥góRÄs°s访öJ+-^’4”R›°ÜÞè±Ë'žZü ³†œ€ 8ÀV?#óxÇ¢aŒ³Ô4 8ô†-‡ø‘¹6ÛÀ½s3À<öZˆ78Þ_Õ7­niÆCþÚú˜!š&WAÏÌæí·!ûHÎG¢Ûg7âèpNvTsÕ¸ÂÂ>6&oþNÚ² 胼º§w[@üüÖ û8æ,ÕZ²3œIGÎ= ‡Ãø{)QÅùá´#“áÓõÎÇcú—uZÝÕôXáå†à<³þ»4ù@Iµ À.[ñ;ô˽U”NNT ðÛv£¤ðÉÄ/¼6IEQ<³GšÒDÔ~[H'bÇOÊ?ðÖÔÛç´Õ•Ìó_v¥¦s}ZùZÓü Ûºòu!®Ò×J&¼Féé%¯-'”–ˆ=Ö#²2âNÆ<È_34ÌÍ>[9yG˜ÐvÉ.v=ÖrP§‹u~;,?u`‘ð×ÑT9¹ß–& Œÿe§e5‘¹«¡sš9Ì~3Ó˜–»üZy²q9áüÍd‘FÖòØ÷c=7“E±Ù†ŸÐö[#aò~çGnh—Ì<ü£˜—9‰9$ànUÀÀùªïŸeTDDDDDDˆˆˆˆˆˆˆˆ}—û*¿²ë’7<îF_‘'ï5 ÚnGÕq4¤ž#¾øÿ%O»NÏê¥å™UÖ`óHǹÉö+/<¶qC@×i[á4Ž—Ñ×26½ô“´å¯õC›KK€ œˆ#«¼.ñŠÁ$¦:ËÕ3d,dÖÚ†KÎ;;ð»V/ÔÚgTi:ÆÓj; ÒÏ1ü,¬¦|\ß.`3ô_Þ§‰£ã¹9ïßò\èî÷*)ÛQG[<µüáìw)kØ‚:,Á¦üIkk}1‚äÚ;¡œ³OëFsÎAÀäg º¬G«.ó_õUÞýP&¹WMW hÀ‘åçR»¬z–ég³]-r†Ò\ü³RÃÝчò8{1ßšø.W Û•Sª«ê¥©™Àù’pÀô_*"úèk]HâáR—5í>cC±ÌÈôpÆA…ôÉzºV²š–¾åY=4 -Ž7ÎâvéÕP]'å`` cù/™÷ §Hçù§.ë¿ÏþkÓ²ê;¥º²:ºjÉéçáìš) èA#²Ï5ñY®ôÐ4·IáÔÔ¤ŒGr{›;hlÍÉÜŒžv¼ÿ ô?Šî_*!¤½A_`¨•ÄsL°7927p6îвUŸ‹\4»T6žƒ[Øå•Ã!®ªk2?Å…zµÁÍi¤dv*¨…qß¾I?«8É>€¯]^)¬2óz«©e<4T3Lé\vo+ zœàÜ•«î‰Êyù¹NŠ z쪊˜WÐqŒ`®Xõ.Cm‘S>‹ø¼¨Ž—Ãö²–\†šFv_ù íû¥AiØq;zeò8à’@<¡lÁÇ%Ðv;äµ·Xj®3U6¨!cLp“O¡œØæço˜Záœg¶Ù9c‰zêÃÃí)6£¿É+i[+!c"o3å•ÿ…3±;ökËYkkߎ7½S5$Õ›}C¤§q¿Ê’'E³·à;˜ÀsGUŒ/1ÒEq– ¥ž™„ä‘®pÇp sÝ|Í“.À9þ º €2×g”äíÛeëiz;mÎõCEr¬t•qGQPàHŠ2~'`v séSÂÝ=m:#BêšJ»]9Ž’Üe•õ1T;˜ÈZdiæÿ ‹20àâ6vRðÿ¥tÖ‹áµ.žÒïtÔ°TTjdùµ2yÏk¤y`߃•¤Œ†±­ý•þÐÝ'¨«¸ƒ®¤µÌû²ÁI]i-k#êªX2Ayø›ÐyCšN†|¿‚­±ð×ôœP\ŽžÍ]¶Ñ,¿«æ åÛÜÍÛ V…'ÿ÷ÁèœgþšáÔ~¦E²¶ã;ï¾Á_b±\k™Yq²Ûk+<¶Ï=rHÖþï38ö^£1æ—ouÚ7ÊÁ^9`¤›ÃÞ uDM$&–ZwIq†O½ÂÎv|±ò4²GrXð|ý⎀±¥·»}M½Î'ð|"p~dÀþ%7øÍå3ƒzáóÆ4åxp'á@꿽ض‹½<Ô´ÕwÕFd%N×µ®9x9$¢Ê3Ã¥“_ð×Kë-z}¢êƸ=µÙ|­Žg€÷ïñ†œe¿@rMó|á{8Gá+ZØh*p¹UÑ:¦å\ÈyŽ/†6Å嵜ØÉ9.{¶Îƒöp[DšŸY^Ènih)éFÿ®‘ÎÛÿ¨©Çõmß;$¡®ÍsC Œ‚¼m/§él“\%§pp«¨2ƒú¶à|$ì7^ÙØekÓÄ%TƒÅón&g²š:ë|­Žåˆ»-þ¡O=Ï'MQÒ}ùõæ:•Õo+¥1¸°¸ŒŸÝ^Â/"»ú眽Ç_’ÂÞ&­Ü8eK0~’—S[ÅžC*$©åÎóo‘Ýgð:úe7Uú¡Î{!8\AÞý$DDDD;uDDDD9Ï]‘q{C‡¡õ]E™Ï6G¸;®fÓ;îÒÉ‚_—{ê¾Ku 1?ï‚ßMOW#ye•5¯®HßÁ+è€Nê§f! Ë0áÌéO+ ^vãidà»ý`7 –Âã–ƒô]RÓ3”³¶WlQ1ƒfàõ+ŒðC8h–&HIo3A--'bGÈ•Ž/<á âS=w¬•Ä9Æš7S‚G¨Œ·>þ½Õ‘«¼$ð®íLE–;®¨ [é«Q>®dÅÄýhð^æ_£pÙ¬¢Bù=!ަ@Ã$µ¹Ë·ÆÛ+´½‚Ѧ,v+=º‘Á aÉ ÜI$žä’w+Ó'ÐEGçÔü‚yËÆÕúOLêêÐê{²óNÌ–2²²ydìK i÷+_<(ðRãG-=6›¬µM'Jš;œåñŸP%sÙù´¨×ÅÜAÓÔWé#Õ6Æžf6/‚±­þÔggŸî’Oî…4ÿ xÅW3i©øwª^ÿY·>í¾î”4£©ßE˜ø5oñ¥5=®ÇnÖªYjcŽz{¹ÿRd_‰ølNÞÍœ î§1 nNª¨Çe‰cyËË€ Žïê=VÊPÇO$f7Æà3‡í‘œgÑ}0´?âËNPr»¹èH3ÊyZVñ–Ú‹Ÿ.šrÛY¸WÏAO 1óVÉ-S[2ürX\‘øNp2 /nSiž%éËÍ,£Î¢¹Á)8È8›cЀv÷[Câ=îZSÚ©¡{§ª³ÕÂÆcg¹ð½ \•¬½ko¹‹E¦é;Ÿ•–ȈŒ431°` ¸[Îz©ãàÒ˜AÀ»+éë!òâ31³±Á¤J|ÎfZK‰ÛNÙÊÌÕ´”µÔsQVÓÅQMƒR[ê# “ü.÷ê;o°+\Ú‚¥õ·êú·óÏS$‡''.q?æ¾E°x~Ó­2 ä© wïríüæ¤e;ùጓ¹h%v4l=–«øÛcºiî,ê‹}â†jYMÒ¦hD$ŠI#ÓЂ×²ÇN'ïÕ\¼=Öš‹E]ÍÊÁv« •Ü­—ÉœÆ%hvy]Ž£æ²óÄ?*/±×Zõ=m¾8šq‰Àwí8™C²Oäî³N™ñuE Ù-ê×÷ÍgNÖÆ0æÇOW¸c‹pXqÕ uè¼§x±¬®¡¿Ú¯:b–[eƈi椨tsÂÉÊÐâî`âÜÇ/NŠ(ÉX<‘[œQÍÛ¢È^g¡ÿMzVK¤ŒeÑIiÞ4éw5¯ÔQ¶¢@AÏã“™Ý{g âžÅ¦m°¡d³ÒÁ"œ(#cDnRy@ híÓVN¼Õü.nŸL¿[iJê"5tQ>)‡’טÄqç”—Ûoªú*8ùÂ!ú§kHÃÞo-Iíœí¸ü×IÇN RÓMNÝuNß2GÖÒÕ‚ ‰Û!™ý¬LòËâS„–úñlƒP=üÀH*_K1„—¾?ÙÇáÇEoêON–Õz›LÖÚe¯‚Žú?¾²*°¹Žç€r·,•¯o„óuêE‡gñ™U.›Ô^¬ñAxg—ú"š•‡É~p${œ\ÃŽ@ý¬vYë…bÓ\IÓðÜh`­£šIÝ ©fÎikÈænăíÑeXÚÀÖŒ^àÆä•æ¸9Ù%®ê/eücjZk7øhÛ½¶Ê'Ò\®0Œùf6V;•þ¥À Fý1Ô¬á׆—Þ$ñ*˜Zh-Š‚áO%â£Îlbc!v7ܹÂ7;œ ÖÍêI-“âÓÊq=½PÐÞ£ª–ZšÉ%·2ž@Ð*YO d’±¼û´I-ì ×”ä™ä$äóÖˆ¶á‘ÉáßLãÀÚžsœü_}›È…ŸíŽç¦fGM—Ø3·Lcufq—@Úx‘ kôÍÊ$‘=Ô3ÈÞaISå½±Êßá.éé•®O:—‡:ù–ÓÉ d·RÔ·™áísÝò»»D­’Ï?gÞÑ÷ÊKs¼Øm·;µ¾ªA-dBo%a9k]–‡s0üXÎØÊ™ü­äò·Ë cl˜ úh½vŒÃtÒv øû²¦Ý ƒ±èæ¬[¯<,ðŸR²y(-séÊÉCd¶ÌYwbbvY`¡¢à§¬µU¬ªÑ„ÁM?“÷†[ß#—µÍ,æ™÷ †áu£m®Å¦nB¶8½Õ:•±rIÈò] n9]±pAÛ!JJQâïMXÙiŽÍEx†y[W e;åhÆÃ{OЬU|—ÄÅ5Ʀ;'[#œKþæúÉby]söЫ{úcƸÛ#vâK_ƒÎ×T\2ÁŒçs¶Á}ö‡õ Ζ’Š£ˆ•3ÍPÚvË4•æ(\]ËÌ÷;-`iÉ.=0OeuÐÛüUUQÅ4PkÆÄòCD—Äý°7kähÛ¸«Ý¥·x¾¡f!ƒP¹˜ä[•Ä^¹t„÷꺮¼mñ¤|Éu.¬¦…ÎÁÕÖ7ù,k[Êà$fÛœ8åÝz`ìéUN-Ý/ERΞeYaÎÝZìÿ5•x_â?@ë[“-5K`¸È#޽ÍÊòOÀÙÇâåÏ0+3¢"„ÿh.˜Žß]¦õ,¯«¬uM<õ”Fü8:67æ 8Ïp…àþÙ]Éa–£ô£ ò䇲 r¯ÅÐz)ç"6ƒ±erT%F/ºVjª5sÓvëÌtpÕER)"k¤Œ¹Ñ–dgÀ€ì``ú¨÷ÃïœRÕÏP4ÔÖX`sFo-u+¤æw)äk›“Ê'§lu _øpàÜ\-±\Eƪ+æìðk `c^#c? ‰$÷>e =–ÓgmX´Û©hþùW%mW•o›<‡/‘Þ®vJøõžésÒÕô6¼–k¬Œ޵¬ò¦nZAË ®ü%ËUÝ/{VIs¦¬òëé+%{*©Z€¸Æá‚wc²¾îüdâõží%v¯Õvúº\yÐUTÊÙp̱qÝK> ÅÄ‹§-÷mSp»^ën±ýäEY”Ñ;!­kw-Ü“œçeÕÆ}x»hiôõ›§šªë,4îpx{©£/ÍÍÊÐXÐ^pÖ¸øWâHu-€ÕÉ“I©sc”ÄyÈÝÄ=ä`cœÕµ 8Äí_Iú`þ‘®?u¨švf§8ø¢ø°céñç?6/[G„]Dú˜}Ö–zXŸL](ƒÌ’X§ß —•ÍÎ2àáò_f˜ð‡$’Mý)×T¹•@DË}<“éÇâv\#û‡²—ðõÁ-M+õ t÷~Vó>¢âçŹÜ3” »rUñoÐ|:Óæ»F‹°™¼ìÉ4ÖÆó·âåÇ(qIì:ôW5MöËi¡ç¬­¨£ŠG4`ÂYüŽRÐZ¯Š»Ä ­FZz½cO+à%Ž1C$¼ØpiÁcH={zgj_7§ªi ž¶âÆ€C™NèÉÏ6p×ãaÊNáY2xÆ£¤æm)$Îp“ýl ŽÛmŸÍ}†çŸW(…Úªåjª´ÒÖÁ!® ’fHcsj? òË]ðoœ·9*øhàÕ¯„úvç%Þ[µMÚ¥³KTèD?«`"&r‡;§3É9Ü»²ËžTx?9X§Žz%õ´W Mi·Ëp¬^]Eæjž\†>Õ²´9ÃÐŒzppRg´³]Ç-ê8LRÓDö¸18Œ¼´–™ F\Zq—}òˆˆ„ePgºeTî:.³!4µÄŸA²áÈà\æ‚Ië•Î6r·  䎫° DDDDDDDDDDDDDDDDDDDDDDDDDD]lÙqÈÏoeÌôÛN7Ê©ù*g8ì}J""*ÑU ¡Ï`?4Æù\d8i9ÆñÿWXÞ%X¨&yu-5’ÃF_$Ò‰N¸Ž1¶{(žíÉ*ˆŠ|ø¬ûß› q&ŠïSÏFü1J1õ©%ipû¿—“–œ¯µPº,sÆni>)Ëe~¢‚@ëdï›Ë%–Fðaæ9ùßð`c˜¯[†ü8Ñœ?§š'fŠÞj`‚*™÷9ÓˆCƒòN ¾7d휫À7¦UU0=ÀUÇ|¦Ê§Q29‹wÈé·æ¬ýqÂý­hå§Ô:ZÛTù2MC!Ô4ú‰[‡wÏ\zåG­UàöJc=N‰Ö<Îw7%Þ/‡ ó£Ücש=¢(.vd¶^ëÿH\é-ðAYV\OŸ3ck^ü Ë9;ïºöMŽQ>ñÃZ~*pòM4ú¸¨j™U U%\‘/c¾#Ê',/oQø½•áoƒZ“…ò]Ž¢®µÕ6Yž)~èçžpy˜îfŽRC1€O^«=T=Sî9zî¸;8 ã;{®mÍq{ÚZFZr=0°•g‡.YŸEz£Ó•Q:ÔÙ eSÞÚ—8Þ~bNZH Œ@ë…hÒp6 qM©ïÐ3P\oŸ¤è+„>dD<¾FHÒA ˆžÞBýa#8’¯<Î'lÁVwuÞ„ÑÐ1š·QQ['¨ Â^÷THÒì#Œ–äœcªÄz¿Ä–´y_uÓúЬãMU#¨iæhèæ:F—wý¬JŸw8­µ7 -5i†b*~g¾wsmÔd2Gl¯^$¸Ÿr¶ÌêÊáil§Ì¦–’ßç-ÉåËšF:oì;¼ñƒˆW·pÕ·bÎ@ǘçòÏ(pvpÎPN{õ^eÓ[k ÕSjµÖzL=²×Hü仂íÆ\ï—7ºó+.×±M-¡·*©¨‹ƒ].òÜî¿„íœû/¢›Nêûµ+«­Ö;Ím 'e)ª†ŠO(J÷±…Àr‡à'9#Õ}2è}i =CgÑwï2 R9ô’óG'âÇ.?tæ¾;’Ô—™bý`ºÜ»ÈÊzg¸´dnyA!§˜|Dcu’-Þ8µwŠ'A¥« ɹŽ^Øt®h=¶úôYO„¾ø½¦.t·wVéº'ùÍ{¡}d®|| ]ÈÎR3†à8瘩¡c¦ž’ÓMOSäùÌŒ <––³›¿($à}WÚºŽdBõ œl Ï©\‘S”swꨈˆˆˆˆˆˆˆˆˆˆˆˆ‡9ÛDDú"âàâvw(Ç`ªÞª¸DDDDDDDDDDLŒã#(w©ßTn2N?‚«ŽØ\H-g'rUX\NívßuͲ"§¾Uc¡e<ŽÍl<¹ywá¾rµ·â²§SÏ­I_ßK$7XßUn–šfÈÇÓy¯  Û—qƒ¾AXETUMš²˜éú!ÎÊ©+9ÉœàÑœôæ4cÐ/-ìh{äh-çÆG6FÉ}ˆ‡¡Â*×¥Ò¹œ„c¾A ·(‹‹NwÛ.Hˆˆˆ€åP’BséÙUPã* TTÛ8쪩¿²£›ÌwT•Jëž(çˆÇ+æžÎù/žšŠ:H#ðÆÖd÷ÀÆJ ™%…æÎ>ò±¶¨àæŸÕGf¹ºËr}Æ!´Ñ‚Ñ m‹$|ÎI'¯l+š¯CÚk l+tWÚîv¶©Æ@×c8 â¤áFóduN‡ÓE®9ÿèlYÎÝ2:½˜´ˆ‰‘FÍ#cäˆb6ËZ1_M6‘ÒtÖ›LY!‘ÐDßäÕöEd³EËåZh#åo-37ÎÛz¯µ±ÆÜòÆÑÌyŽS긶ÍË mæw3°Ñ¹ÛžÃò]ŠkZ0ÐôU ñ6\†é’'e@ÜîáôU uÝPì3•Ö2G]ÏuÈ2¹“ù#H# ä*¢*=Ü ¸ õ_< ©ŽræËùœ\NÓ¶Ž˜ÎùÊúQE– êèêYÏñº)œe®#ø¨«Ç ²_ïQÜ8{q´Úi|†Fë}q”FÙ2âéö5Ørü<½A9Ýc~øCÖµú…ôúÎ(-6¿ºÔ‘WOVÉ\gk‹"£|ŸÓðŒ;esèß2‰.´šªöèÛúÆÛ«(C r†ºHÜI!Í-pŒðz4º?që…7®kilÕ¹ª·N_-¶¸4†ÔBFû6æhèzdU‚È a$ï…1~νa˜¯œ?ª‰®`?¥iŸË’×a‘½¾½šG¦þªd2Zó##k\v.®m~Ñ?5UÅŽ.;´ó\‘q-v•ÈtD%SîUQû"&}‘3Êp >™]EÅ ü/öÏòUd$`üÉ]­9?ȪªìªˆŠ˜ÏPª6興ˆˆˆˆ¸ä»a±ï•ÉÞaŽg7Ü.-g.áî?5GµÝºw\yHìªyCƒî¸ñœcè6]£`\‘ "ùêå– ttóÎ׿Ë{c,€þÛ¹ˆ8èÜúßBâòFÁ¼Ë¨óÆïžíû?˜V—ø}§x—¤fÓz–æ2ž¢"54££ØOCìF8!FmSàβ›O1ú[Y2¾òÉÏ4w=;á=,çpxõÜ;Ñ«Úð³À~"ðÏŒuWkùµCm®„ÔRN%mKžA g3Zöò‘¹ v åK4D²"""""""&êŽÎ6 uTDEBê3쨲3òÊäˆp6i?%G¿—«Iù.¿?§êŸ]¿æ»‘PÌãGoeTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD Áç—|lÉ9ßÔ®hˆÑ€$ã¹îˆˆ˜ß(ˆˆˆˆˆˆˆˆˆˆˆˆˆ›ãݾpˆˆˆˆAõÂ"ë|,x ä0q²ìˆˆˆˆˆˆˆˆˆ™ßˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ€a|¢""""'tDDN舛åP “Ÿ^ʨˆˆˆˆˆŠ„dç$*¢ ô'uTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD; ª誈ˆˆˆˆˆˆˆú""""""""".ªo?õ‚/<ç““?‡¶sßÕv¢"""""!8¡éÕ1õT9Ûª¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹‹¶èªÝ÷UDDDDDDDDDDDDDDDDDEB ƒŒTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEBU1ÜÕ@Ǫª""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*ÐïßoeTDDDDDDDDDDDDDDD$Ç›ÛuBóÐ7uÇÌ~&Ùv¢""""*8ã '䄜g¢¨9‰œ"'TDʦÃ*¢""""""""""""""""""""""""""""""""""""""""""""""""""""""""¡h=¿$k@õU€ˆˆˆˆˆH$®³)èØÜOÓuÊ<‘— É6TiÜŒårDD\qÓ;ŸuÈ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" p'c•BïåБœ£KIøpW$DEGF À*÷DEÄñü qmљ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""àèÚâ :'–=JäU0©Ê=Õ`8gmÛ;.Hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¿ÿÙOpenLP-2.4/tests/resources/songshowplussongs/0000755000175000017500000000000012657640341020553 5ustar raoulraoulOpenLP-2.4/tests/resources/songshowplussongs/a mighty fortress is our god.sbsong0000644000175000017500000000247612657640340027246 0ustar raoulraoul&0718A Mighty Fortress is our God Martin Luther Public Domain$CCLI No: 12456 % Verse 1ÿA mighty fortress is our God, a bulwark never failing; Our helper He, amid the flood of mortal ills prevailing: For still our ancient foe doth seek to work us woe; His craft and power are great, and, armed with cruel hate, On earth is not his equal. %Verse 2 Did we in our own strength confide, our striving would be losing; Were not the right Man on our side, the Man of God’s own choosing: Dost ask who that may be? Christ Jesus, it is He; Lord Sabaoth, His Name, from age to age the same, And He must win the battle. %(Verse 3 And though this world, with devils filled, should threaten to undo us, We will not fear, for God hath willed His truth to triumph through us: The Prince of Darkness grim, we tremble not for him; His rage we can endure, for lo, his doom is sure, One little word shall fell him. %Verse 4That word above all earthly powers, no thanks to them, abideth; The Spirit and the gifts are ours through Him Who with us sideth: Let goods and kindred go, this mortal life also; The body they may kill: God’s truth abideth still, His kingdom is forever. '(OpenLP-2.4/tests/resources/songshowplussongs/Amazing Grace.json0000644000175000017500000000256612657640340024046 0ustar raoulraoul{ "authors": [ "John Newton", "Edwin Excell", "John P. Rees" ], "ccli_number": 22025, "comments": "\n\n\n", "copyright": "Public Domain ", "song_book_name": "Demonstration Songs", "song_number": 0, "title": "Amazing Grace (Demonstration)", "topics": [ "Assurance", "Grace", "Praise", "Salvation" ], "verse_order_list": [], "verses": [ [ "Amazing grace! How sweet the sound!\r\nThat saved a wretch like me!\r\nI once was lost, but now am found;\r\nWas blind, but now I see.", "v1" ], [ "'Twas grace that taught my heart to fear,\r\nAnd grace my fears relieved.\r\nHow precious did that grace appear,\r\nThe hour I first believed.", "v2" ], [ "The Lord has promised good to me,\r\nHis Word my hope secures.\r\nHe will my shield and portion be\r\nAs long as life endures.", "v3" ], [ "Thro' many dangers, toils and snares\r\nI have already come.\r\n'Tis grace that brought me safe thus far,\r\nAnd grace will lead me home.", "v4" ], [ "When we've been there ten thousand years,\r\nBright shining as the sun,\r\nWe've no less days to sing God's praise,\r\nThan when we first begun.", "v5" ] ] }OpenLP-2.4/tests/resources/songshowplussongs/a mighty fortress is our god.json0000644000175000017500000000307312657640340026716 0ustar raoulraoul{ "authors": [ "Martin Luther" ], "ccli_number": 12456, "comments": "", "copyright": "Public Domain", "song_number": 0, "title": "A Mighty Fortress is our God", "topics": [], "verse_order_list": [], "verses": [ [ "A mighty fortress is our God, a bulwark never failing;\r\nOur helper He, amid the flood of mortal ills prevailing:\r\nFor still our ancient foe doth seek to work us woe;\r\nHis craft and power are great, and, armed with cruel hate,\r\nOn earth is not his equal.\r\n", "v1" ], [ "Did we in our own strength confide, our striving would be losing;\r\nWere not the right Man on our side, the Man of God’s own choosing:\r\nDost ask who that may be? Christ Jesus, it is He;\r\nLord Sabaoth, His Name, from age to age the same,\r\nAnd He must win the battle.\r\n", "v2" ], [ "And though this world, with devils filled, should threaten to undo us,\r\nWe will not fear, for God hath willed His truth to triumph through us:\r\nThe Prince of Darkness grim, we tremble not for him;\r\nHis rage we can endure, for lo, his doom is sure,\r\nOne little word shall fell him.\r\n", "v3" ], [ "That word above all earthly powers, no thanks to them, abideth;\r\nThe Spirit and the gifts are ours through Him Who with us sideth:\r\nLet goods and kindred go, this mortal life also;\r\nThe body they may kill: God’s truth abideth still,\r\nHis kingdom is forever.\r\n", "v4" ] ] } OpenLP-2.4/tests/resources/songshowplussongs/Beautiful Garden Of Prayer.json0000644000175000017500000000237012657640340026320 0ustar raoulraoul{ "authors": [ "Eleanor Allen Schroll", "James H. Fillmore" ], "ccli_number": 60252, "comments": "", "copyright": "Public Domain ", "song_book_name": "", "song_number": 0, "title": "Beautiful Garden Of Prayer (Demonstration)", "topics": [ "Devotion", "Prayer" ], "verse_order_list": [], "verses": [ [ "There's a garden where Jesus is waiting,\r\nThere's a place that is wondrously fair.\r\nFor it glows with the light of His presence,\r\n'Tis the beautiful garden of prayer.", "v1" ], [ "There's a garden where Jesus is waiting,\r\nAnd I go with my burden and care.\r\nJust to learn from His lips, words of comfort,\r\nIn the beautiful garden of prayer.", "v2" ], [ "There's a garden where Jesus is waiting,\r\nAnd He bids you to come meet Him there,\r\nJust to bow and receive a new blessing,\r\nIn the beautiful garden of prayer.", "v3" ], [ "O the beautiful garden, the garden of prayer,\r\nO the beautiful garden of prayer.\r\nThere my Savior awaits, and He opens the gates\r\nTo the beautiful garden of prayer.", "c1" ] ] }OpenLP-2.4/tests/resources/songshowplussongs/Amazing Grace.sbsong0000644000175000017500000000177212657640340024366 0ustar raoulraoulAmazing Grace (Demonstration)#Demonstration Songs.,Newton, John / Excell, Edwin / Rees, John P.Public Domain $22025   F G Ab „€Amazing grace! How sweet the sound! That saved a wretch like me! I once was lost, but now am found; Was blind, but now I see. Œˆ'Twas grace that taught my heart to fear, And grace my fears relieved. How precious did that grace appear, The hour I first believed. |xThe Lord has promised good to me, His Word my hope secures. He will my shield and portion be As long as life endures. ‡ƒThro' many dangers, toils and snares I have already come. 'Tis grace that brought me safe thus far, And grace will lead me home. ŽŠWhen we've been there ten thousand years, Bright shining as the sun, We've no less days to sing God's praise, Than when we first begun.  AssuranceGracePraise  Salvation OpenLP-2.4/tests/resources/songshowplussongs/Beautiful Garden Of Prayer.sbsong0000644000175000017500000000170412657640340026642 0ustar raoulraoul,*Beautiful Garden Of Prayer (Demonstration)#Demonstration Songs-+Schroll, Eleanor Allen / Fillmore, James H.Public Domain $60252   C Db D ª¦There's a garden where Jesus is waiting, There's a place that is wondrously fair. For it glows with the light of His presence, 'Tis the beautiful garden of prayer. £ŸThere's a garden where Jesus is waiting, And I go with my burden and care. Just to learn from His lips, words of comfort, In the beautiful garden of prayer. ¢žThere's a garden where Jesus is waiting, And He bids you to come meet Him there, Just to bow and receive a new blessing, In the beautiful garden of prayer.¨¤O the beautiful garden, the garden of prayer, O the beautiful garden of prayer. There my Savior awaits, and He opens the gates To the beautiful garden of prayer. DevotionPrayerOpenLP-2.4/tests/resources/church4.jpg0000644000175000017500000065266112657640340017007 0ustar raoulraoulÿØÿàJFIF,,ÿÛC  !"$"$ÿÀ bÿÄ ÿÄb!1AQa"q 2‘#BR¡±3br‚Á$C’¢Ñ4²áðñ%DScsƒÂ&5t“³ÃÒ'(68d£7„”¤EGTe´ÔâÿÚ?™hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆN2rz¡ã#§DDDDB;„DDDDDDDDDDDDDDDDDB2=ÑlöÊ"`g8ßÕ€zŒ À|®·Òº¬Õ9Žt‡ƒ#‹2:Lòó{ã+êDDDDNøDD=6DDDDDDEG1žå3¿Dý¥ULã;ª;Ír\Cʮފª™ª¥Pœ*öDD#*²ª l¨ªŠ€å;ãeTEG eWä¨z€¨áœ…\`l‡`€U@§ÍTn‡dTê=•JwDDÎøDAÑ=Ó Nÿ$DDDDDE@Ad(«”ìº"""""£‰ $ìvJ}0ª~Iº§|ceT$¨ˆpˆ=U1¶0ªˆˆˆˆˆˆˆˆð‡¶è©Ÿd²®z BvT1¶Pg×*¨ˆˆˆˆˆ¨OEAõÇeTêvTÇpsòAÓ®~i÷Ø|Ðd°} ª¯Ñ=7CÕ;õMº*¦Ä""ÇUN¨ªwêª¨Š¨¨IÙWä©ÕPb…P t@ª"&*doìªFB&}Qº&¨TÁÈUD*Ÿ÷ ÔeUM†åÈÛ}cЪöÙÍSUP¨ªoÑ"!Lï„ELžlcoTêíN¾‡ÑUPtÝUº"6ߪ""*‘*¾ÝÑtöENûá1ÜTDDDDDTpöUÆÊñ”ǺcÓm÷O˜Â¡þáTgꪅUSláW?šwÊ"&ØÊ"""""ú"""""""""""vDDDDOTD=dù§¾·TOd?,§tDDDDD쉲ˆ‡¯tDÝ """""""DDDDDDDD÷DDDDDDBˆˆ…?Š'dDDDDDDO¢"""""""""'tDDDDDDDDDDDDDDDDDDDDDDDDDBˆˆˆˆwDDDDDDDDDDDDDDDDDDDˆˆ>hˆs‘Ã8Ê""""""""""""""""*8à‚p:TDDDDDDDDDDDDDDDDEGÊ `a}º{¢"""""""""tDDDDDDDDDDDNˆ¸ÆÀÌã;û§+KÃð € E]ñ¾2ª‰¾Q7DNȈˆˆˆˆ‡¢"""""""'~ˆˆ‡=°‘7DDDDDDDDDDDDDDDDDDDß>Ȉˆˆˆˆˆˆˆˆˆˆˆˆ›¢""""""""&èÝ;ŸuTD(ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDDDDDD]eܯ$ç}·XËÄÑ–ˆmêX*+'¹GEOÄáãñHìÌk»õ¿4…þݪtÕ þÕ0–’¶#=3Õ§Ü—ªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ}º¢""DBˆÓꈈzuDTÆùÙUÏpQꈉÝP‚A‘‘ÔvU¹DDDDDDDDDDNȈ‰ÙQÇ ]'®ù!@ÿ:²ºíÅgi—ÅA§á`†0³Å¯‘ÞøsZöOª¹|q"¶HîUMG[µT…Çú—±¹pÄ4\H4“ìª3ú¢""""""""""""""""""""""""""""""&7AÑ '|ewODDDDDT#*©Ý>¨ˆ‡8Ønˆˆˆˆˆˆˆˆ‰Ý"wDDDDD\_ŽRIÙt¼Žb:L(Sã÷EMoÖ6Íqк–ï(eˆ7lеÄ8ö!ÌÀõª×ð'ESUÇÚY¡ŽŠÝU<çÑŽ1ÿ‚Ø2""""""""""pˆˆˆˆˆŠ„à‚rªˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹®Hóý[²?"?Ív{gtîÑS*Œtè‰Ý?š"DDM‘;¢""""""""!DDDDDDDDDDDD;®‚>"?‚Ž>?ìÕÜ·Ýâaw苼rMý˜¤ñç§ï.~´•ºÑà }MR]¯òÔ¾Z·ÏLbd öitn~ÝIè1$‘º""""”DL"""wDDDDDDDNý:"„Nˆ:nˆˆˆ9Á興ˆ‰Ý¦:`‘âª:"'tú&ùöDDD"""DDDN©Ñôë„DDDŒ¡Æ7DDDDú¢DDÙu½…Ï8èFëx³‰ãÃÞ°ÇáûˆÎOõŒ]ží¿£¸£c0y<öÁ. É>l—?^|ýVUDDDDˆˆˆˆˆˆ€z„CÛdDDDDDDDDDD(‰î€ƒÐån™DDTÀmì«Ý¢"¢dgÝU;¢"!興ˆˆ‡¶ÙNȈqߺ""""""""" Ø`""&wÂ"""""wˆ…<ñ'(‡Z½Î¦5 ÛœÎ@3øˆßLçè¾ÞRËEÁ]K9Ëã²Òƒ¾vò›á…{* €§eTDDï„ï”DD@r2ˆˆ‰°DDꈈˆˆˆ‰±ˆˆˆˆˆˆÑ§DD_%Öº: Q#Ù4Ž{Ûeî.ql;dîz¹RT:zH玷¹ùi<î¾”M³óDDöOà™Â|Ñ0ˆˆ‡ÝN¹ENýÕQ;¢”Dþ(ˆˆˆˆˆˆˆˆˆˆˆ¨H'?@ªˆ¨6=·Uù¦Qœ ¢¡éÑUê©‘ê±'ŠÍamÓ¼,®´T;Ì®¿A-%$ üOî áõpNë‹lÚZ“JTTÆú«=»Îlsjah¸9ÎZà}0V\)ÿ~ˆ‘ºa"""""m”DOš""""""""¹ØŒOdDD\qÆá§|÷È\š0Î}Õ~ˆˆˆŠ‡ñóUDDÙ;áä…:?,¢"""""""""""""""""""¡8ï·²ª²U ûTTú.2îܪøö½Æx‹¦àŠGºÛgqÎÁ¤É½Éiþ åðUz‚N#š¨( ác°HŸÉÃ\7ô2uõSš#ú¶çÆø\ý“! ‰Ñ:TDDDNùDDDϱDDDDDDDDDDDL¢"" ;dŒ*¢""""""gæˆ ª"""""""vˆˆˆˆˆ‰Õ!8DDDDDECž¹ú úªª=ÍkKœCZI'âUë %FÇ>¯TØéØÃ‡:[„MûåÊ׺ñ—†Q´ÓÒk«]\˜d,¦¬l¹y8³˜uõP'Å=òK礄Ô6¡”ñÄÉâZðáæ“Ó®_ƒEäð[]Uh­VËôyϤäsw ÀÒ1±h#¨ê¤ëÆ• -|Ôö}ù)™QðOUqòG¾åa wMƒuß§ËxŸ…Óø~ÖÌleîý#°78iÏÓZÁ|L5àð»ä‰‰å¸9ÇnÇm³KGY˜µEq-5¡…µ»00scÛ9^£r6$ª3Ý;¢"""""""'tDDD9ÆÈ‰º"""z"""""""""""""""""""""!DDMòˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆÑS~û¦Nz /ZÚ¿Oi Í–7…ÔÍé—ÆZ3õ!j>¬>–wE+O™Ìr ÷â ût­,÷‹ý%®'R²J™˜Æº¥Å± ‘øñ“Ëë•´NZxGWS]­õªêÚˆš"·[­~DŽÉl¥ÅïSô½ƒH9U ¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‰óDDDDDDTqÀϾQ|§Õ ÇÄ@'ÕQ¶è‡æˆU7ÈßdÛ› ­Jñ.:YuÖ¡uÛ%9»U¤Íóƒ…ìpJÍ©¸«dµ7vÉS˜ã°cr ?#ò[QÉþ £ßªª"&è‰Ý=}ì """"""!DDDDDDDDDD9ÁÀÉ숈ˆˆˆ‰„?’ ù""""""""""""""""""""""""@6$û¢¡Ç~ˆFU¿Äk»tþ¿ÞÝ/–h­ÓÎןÙpaåþ8Zž¸HMCœOÆ\y‰îNä©ö~IE'«i«šÇ>K<Ž¥ëæ²XÝ‘îÏôÊŸÍ×UÏê©Øö*¨ˆˆˆˆˆˆPú""""ˆˆˆˆˆˆ¨37Æ3Ü…TDDDDDDDDT Ъ¢"""""&sÑ;¦Ùí”DDDDDDDDDDDDDDDDDDDDDDDDD;ªn°ÇŒûÓìü½Å`uÎX-à¸ö{Áv=O+\µÇ]Ìew1Û9ÈY­ùÚkZZµÏdpÏY÷)]!Àåœruù¸-É'ê¹ cnЍ‡ÝPÌNvôôUD=lüÑî›*;cíÔ”iÎvÀþj¨ˆˆˆˆˆˆˆˆˆòƒ©ôDDDDD@001Œlˆˆˆˆˆˆˆˆˆˆˆˆˆˆ„elõDDDDBUQûD¯³ÓÙ4ŽœÃîõu55Ó´u.…¬c>Ÿ¯yù´(MXNØŒvõ_^žJ{¥¾¢9|¹"ª…ì~ å!í ý0¶÷¿1ÿ%Pqœí…Å’9ÍÔã$Ÿ—ªæˆˆˆˆˆˆˆˆˆ‰Ô ˆˆˆ‰‘7lû¢""""""""""""""""¡8ßOùª¢&ÃtDDDDDDN¨Ñ2ô(ˆˆˆ:"&ØèˆHõDN舩¿¾ê©Ðaˆ¨q¾Êxò»²áÆèm̸Z­Àö°’GÉ)ÇÍŽ‹'ÙFê€Ï¼9¯ØùátFàCØ3³]þö-»hÛ¥%óHYï4ÓWPCQÇv½Ãù¯_#º®Gª""""""""wÊ"! “ˆˆˆ‰óLÝqææÁnõ\†qº"""""""&Sl纡8Æ9UDD_=)¬ûÅP©l" û±a%ÅœÏ>z~~°¾„DDDDDDDDDDîˆ;""""" Â"""""""""""!Ü"""e¢""ÅØpÆ Ög‰ ëõu5l‘Ä t”‘9¬ sÙÜ]ûÇdöv Í~™®ªÑuz–I¤ ™äðÈyZG¨æmÑZÑËËðl{eO¯:ÂKÏ ®:Z¢Pé,UaÔà¸dA0.åÇ]¤¼’¾ÝÕPoÑ2ˆÑ dœÕ1¶Èˆˆˆˆ‹Œ˜ÀÏ62:gü•\Ñœœœuô\Ê""""""" Ñ·DDDDˆˆˆˆˆˆˆˆQ """""""'Ñ¡DDDD;¢òõmÎ;6–»]ä#(hf©s³Œ0»ü–¦î÷ &¬}EA/¨æY 9<Î99YLëm7'uV–½>±µRÚ §´Ú ee\µRî.sšÁÀÈØab& ÈwHïÚ Y¸ÊÛTÏc`½ÒIHyÖ7õŒÇ¹åpú­ÕvDDˆˆˆˆˆˆƒÙ7Ïl'ͪ{nªˆˆˆˆˆˆˆˆˆˆ€äü"""""'Ѳ""" DDDDNè‹®IXÆss7ÆIÀüÕaI\ NuÙšæŸDCÓdDDˆˆ™DDDDí²X‹Åýóô'‡ýDæ86JæÅoiæÆÒÈÖ¿þu­¹©f¬¬lp É!åhõÏEñݨjmW*«mX`žšWE(cÃÛÌÓƒ‚6#Ü/˜‡©ë²¼8SzýÄM9yl¢¹\éf{ÏF´JÞb}¹r¶Êøßªª"'tDDDDL çº"'tú"""""""" Üe;Š""" ïÓÙÈÊ£ŽH'ä2±—õ¾´¦§utuU$®™…”F’Gœï—Â=NáYü°q?P\nwn'I[ B`È)êšÖ¸ŽGsÚ>7â gªÏTðÇOŽ&†´v]ˆˆˆˆˆˆQ*„û'~ê"}¡úˆóim)CƒC'¸ÔÂÄå±Ââ3ÿÓ ÍVúiùéÞæ¼wz¯WEèMg®Ÿ^ý+§nƒGž¤ÓÇÁé“ÕdzF\wÀ8+Ä»Ûn{E²ëEQE[LóÔóÆY$nCšwuÓ» {A9-?ÉmÓA]|ÐöÓæ:ál¦ª2ò‡™"k³ŽÙÎq•î""""""""""'dDDDDDDOš""""""""""""""ˆˆˆˆˆˆˆˆˆˆˆˆˆ‡¢ Ç¢"""""" IDDDNèFFǺàâ“•Íô@ˆˆ›§É{¢"Áçáî¼ÜØ$ãaÝNK-®ße´ÒÚm4pÑPÒÆ"‚›ÊÖ4tß+ìEB6Otq i$€É$ôXÃQë=e©ke³pžÛm¨…ƒê[“É·0áÁÌ„0óM <»Œ°‚s²ð´Ÿ†oº:÷ª¦¹k[Ä’™åžñ/4Nõw’Ü5Ùô:Ê­ÒÚi®•ÃOZAš´²âŽ<>¸¹±‘Ú '2¾ë]¶Ýj¤–º Z`r"¦…±°^V€;/©vò’n¸ rìr÷\Æý\‘ªB¸‡M±Ô¨±ö„jii4ö™ÒPº.¾i«ê2O˜ß'‘‘ޏå&WžX=ÔKá̓úO¯¬ÚxÕÇH+j„~tsš:Ü7ˆ€Ñîà¶[¦4–††˜Mf·Ë==lÕ!l†šYKp%‡~ÊÂâÞ¤·Ø²GyÕ·V[¨å˜A‹÷I!òµ­šO¦Ëê_'µR—ÑMtºÏû1CJYŸ™yXC]xÉÖ×vTE£ìöË T#ÌsåõÀåø†3;j¼^«îU¦²¦®¦yÝ+¦tÓH^÷=Ø$—É=ÉWnâ¶«Ó¶»•–+¤õ6{…¾z‹}SÝ-;™ p.k à ²Ü·ÈÙX @Øtð3wm¯Ä¢* w zš3±!äÇÎÖœt݃ê¶@ܺälå"" †=Qº"!D#>¿š§OLªŽˆˆˆˆˆˆÑº"!é²!ꈈˆqТ.º™.tQ_û,?Ÿæ±/xñ§4ÎkEu²ñS_ cƒ)Œq?,çË%Âá¸,mqñ‰mŽ&:‡DUɇ0Ï^Æá¸9Ç+ûÌ©'¥®´š‡N[¯´d˜+é™P Ø9 àgÈ/P"""+†\\ÒA½]ì–y+)®–™_E%t>T¤5å…Í9øÈÈWú"'|'tD@00ˆP¨½Çþñ[Љµ5\B²ÕZéå‘Ô4QILÊV»Nb÷` ¹Ç=q°²-þï•Ur>ñ¯mÔ‘gà”˜‘þ7³½W»QàçD[jí4µ—íWpûܾTóÒù2, óaÌvì2OÏ äÖÞ ­<²?DêÚöO%=Ù¬p‘ü§—õ±´rŽn]‹ÙÝz\ð½v´ßk/â®ÛO)ŦL¶Vd‰C›ÊÖr¹¡£§©;¥|q2™@†±¡­É.Ø Îåv3öM³•^‰”##tîƒcÝlû tL{ªcu×,‘ÆÇI!à œï@7+SÜK¾ Q®¯úˆ9ΔӰž¼Žqåÿ‡•Zõ-¨Á²µñå­{CiäFù_>KÄJ¿µWõ~–ám³ˆ‚”[¨®uÂ’šŽv½•;²G Â>‘ÆNH ã}êß |CµÙ-wý7 uMººŽ’ÚVê!/`qi‰Çâ8ËIÏpÔÖ+Æš½ÔÙ/Öê›uƘ´MMPÎW³™¡ÍÈ÷iäB÷8U¨¿¢¬æ m #±½s•ËèŸDEÅÙç?=— ˆˆˆˆˆˆˆ„€—×yœÁä7·W,oÔª§TDD\y~,×,mŒ¢lG·º"""""""""""""""…M¶ê‡¨êªˆˆˆˆˆ™DØí’›&Uî7 ÚךëJèkwßµ=ê’ÞÇ5Æ(_ ó§ÀÜFή?%…ßâãEšÂÈ,wy¡òòZƽ§¸#˜çéè²-Ž|-¼}Í‘jÊJ9jâ25•Íu8f6-{Üìí‚íÏL«—Xèý#®­QÓjk º÷IŽx]+‹}Øñ»sêÒˆÏ |m@Ÿúìç‘÷*·3ýÓ.>˜ÂÊÖº ]ºžÝm£‚ŽŠš1ðFL­hØèÒˆˆ‰üÖ±u­¬Óþ!ïÚ¶ÁPbšŸUÕUS½Ž8‘†©à´ãr×´¸8w#ºÙÒ"vN½‘mÊ"!DD A¨\[mü,hùPèù*®.Øãø*Mîp6÷Q§Úûˆ<%â5Òjù/z&û–(*a±Á#Fd`çÆ ë— ñ‘t_hôÍž–´Ôô•%±GrÕ獵ỷØikðõÛªš6Ú¸+íôÕÔ³²zzˆ›,R³ð½®‡b ú;¢d¡DTßQÇeŽüIj7inê˼A®›î¥„gý¤î´Œz3ôZÁ• < `m”ÇáG4Wø;p’â+#¹MRØènr’ji 0Gnû:"A<0F0@# Øx[W Ê öDDDDL×t ""&Äz®-.å%Í 9;g=ö\‘ "M`ª1‘ """"!ÏdTÀ#âNý𪈈ˆˆˆˆˆ›ãШëÇ¿²ðî¶m6ËlÔ/¦|¬tÕm|P4É#byñ5“—;wÊ…z¿V^µò¦ó¨oõ“8ó¾Gór·=1ƒ¦^5-Kcp1È šáŒ;9ÁÊ÷a¼E%+#–ˇG7!Ý}”…ðC­…»ˆ3èùª¤mÞžWSBéæýé€? oáncl¤œ òŒžMLÉÓšØ*¢"+SŒ: h®jMRÆËn·Ë%??á3ËOÍå£êµÂ½=6ªâ>›Òí†Zƒ]s‚)¼¶s8EæJò=^ãì Úâ"""!Ø""""""¡!£%Vßô}·^è;¶“º5¾M};˜É ra—¬r7Ý®ý±êikmŠ»Î0Êš·ÒÔ´dö?•Ý{|9ù-‹øf{ßÀm _'š[@œä5Î # Dî‰Ð*v:~Ð{à¡á]žÂÙ1-Öî×¹¿½,sÿ‰B?IÏT[mõ•f’šz¸ãšpÞ-…Ø.Ç|elרt·xcAE«*]õu3: j:~i*\9yÜÖç ‰%ÀeÃ|¢·8µ§n^)íÜI·R×Ék¥¨¢•ÐÎÙTÐ×p½UÝâgÄŸâ? £ÖÛeÂÝP.PÔ“3ØöÈÆsdm¸ÝÀí賃n i‹ÿ 4ö•¦»@uª„²¦ùl‘á®nvxÀò“ŒŒã!X¿hí¥²i #¨DDÉIpšÏeŒ8õ‰BXúÐ\à[Íž«a¾õ$Wn 2ÁÈ=‚®Hø™+3\}ò÷ R"m”TÎqõUˆˆˆˆˆznˆ9‚FÇÙãº""'tNè™·EM³•TDDDDDDDDDDDDDDELnª3ž¨‰°èˆˆˆˆˆˆ¾ÄõqÓyVøÃê¤<¬sšKcþÓ±Ûò^=&‰°¹¯šñl »×Ìy穬¦l®s½¹ÀØl=L= ›Ó¶)ª&±ØmVÉ*]Í;èèã…Òœç.,˜çÕZ|Bàçµ½-@¼i‹{+%‰ìmu<-†¡…Íåæhܱ͜aA~<ðoPp–ÿ'ŸEf˜ž^[}×´ŒgË—‚A¸Üì:-¾ꉴv»µjŠvÓ¾k|Åì·ƒŽŒ¸ŒõäB[Lcšæ5Ìps\29.I‘”DDÎÙX+ÇMíöŸ—H†w¬§ æýÐ]æ»óõXcìòÒÜ5uÿ\ÖD$mªÑQ8·8–PLŽá€7å!SpôÙ ÀDDDDDÈNÛB¡'ŠŽÝkøúïèÅê+y¸r7 –7çp\pèä w')‰¢mM±hû=œSÁLh袅ñBc\Öìcn¹^Ç|"&QPl>J½FBâp* } W±[ÅKE‘³ƒ®ÖøÁü2ÊòNÞíkTh¤­e Ãïq¹ñ»™€ïƒÙzºë\ê i}–÷¨nuõJíš6øZÍhôkÈâù uÝQ!tsde}~õt°Ýi®–Šéè«i¤lÏ Ë^ÇAR~ïÅZŽ3x`ÕvMÊýM§ÛÒ9aŒ1“ÂÙ™qœ9ÝŸ\ŒaEf×L)yöw^®ÔÖ#„u4U¶<ÆîR'…53ê›ôUENý>ª¨ˆˆˆˆ‰¶Qtíº"DÝÊ"&Ȉˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¾km =¾˜SÓòó9Ľåîqq.$’sÔŸ—eô…AíüWËt·ÐÝmÓÛ®TTõ´s³’jyØÛèZv+Úü%pî›UÉv¬š¶²Üÿ0þŠ'’ ¸AæÛ$€ÑgÛ]  ¶Òжy§ñ6!$Ç™ï ǹÛr¾”DDEþÑIþŠtý(Ï,·æ9ÛŒ|0J7ïûE]žìñÚü=Z*šÀ$ºTTVHq¹Ì®`ÏøXpDDDDDN»"'~ˆ¸wÀ.h¸¼žƒ ˆ#;úìŽs†1ƒ¸ï€¹õ લÛj¯´7ÉéY%}3CM+†LL˜ÇæcÓ>S?ªô:ü‘6DDT'n›*8m÷÷Z¼ñ}›ŒÚ¶ìÙ,n¹É9þª/Õ4oƒø¬g%%K)ÍI‚O»óry¼§“›Ó=2®^pûUqRÅbÒ¶É*æ.ižr9a¥aë$¯èÐ0}Î08 6x°ÛßÇ›ýºã%Ê*kc1$bHäÅD“‡ ÁwЬ‰âï|<Ó¼-ºk-/§Ûj¸AWNdó¸B#|ŽÄdòÄ6³8áëGqc‚ͺ2ã[eÔtw*ŠZжþ¾)0öDqŒ2F~=I9ÀÏü1àT'š£@ …=οPGWçVýÜF9Ÿ—@9<­Àv 8sŽ«\o9Ààò~›,åà¢÷³Ä‰“ÈØã®†¢ˆ—;”:<°tÜ—1£ê¶8ÓÛ§²߸誈ˆˆˆˆˆˆˆˆ‡¦Èˆˆˆˆˆˆˆˆˆˆˆˆˆ3Ý:""""""""!Lô^MËRéÛl í²’gòLùª˜Ñ±øNNÇ~‹ÕihsH Œ‚;ª¢2Ÿ$숈ˆˆ¢¯Ú1#¡úF .¹ÌáhOüÖZð§©|;è¨ÞÂÒ뙿_îp?^l¬ ˆˆˆˆ2GL|Ñ=ާï47ÛX¸ÛÞ÷Be–Â×5ñÈèÞÒÓ¸!Ípú/º<îªæ‹„£ `dåP´·;'uÈu®Hú""&è­î$_N™áþ¢Ô@€ëe²¢­€9œÈœæû’ù•ª*×Jù<Éé%?qÝÏ'$ýJ›þ 4µ¶·ƒŽk%-ÆŠ¾z/Þ¡l‘¿3”¹Àû’ÖôïÕfê}?`ÐzïO¤lÔ¶ªxij*[ <|¡Òr9Ù=Îþ§a€0€âÄ\*–õ}¦³SÜïUÿu†¡å¬e6e}@ËNCœñ6#cŸC!xÓÆ}Äß º‘–jÑIy,¦ómUG–`ï><òci7<Íí×”ì»~Ï ©›EêËAýVíN{~¶³ÿ°©B\pú­\øÓíÓuÖV††Ûr’¦&329ÀÐ6@>ŠÙáýê]?«íØ1ç[kéë[“ú¹ò¶ÛtÅ<,š$r49ckšwÔÈ{ª§Ñ¢""""!興‡¢""vC°$ ûB7ÝUELÿتˆˆˆ‰Ñ7EÕS0‚žiÌr¿„. J_.¿â’®„u%–›}ÂShøªdk·..$7 `4»~`D¯MÑý)Ób½Öù/ÖØ«1€ÓËRÆIæ o)9'‘ÊöVûFNÒOÀ‹œÀ8„Âä³w‡–¹¼ СÀúŒíèai ûD_%}Ê‚‚z8+k §–º»Ò²G†™¥äsùž§•Ž8ô}hˆˆˆˆò¼{$,¤IšÆˆ¦®|­Ž¿ ZãRö¸ŸRIêW©‚23ƒÔ/;QÖÜhi¢}ºŒVJ÷òù\íiÆ:Žg~YVÄ|K¦¦GßtƦ³S[ˆç¬©·æ C¤ ig–ç¸þ&¸Œl ÏBãl®¥¸Ã÷š:ˆª";sFî`qó_Z.$Œã¡Unê½ÑS|gü“|v>«xéÔ,³ð®Úן:õ]MDÀÓƒÊ%~˜‹”ÿ{Ý@{× Õu@¥¤žª&TÌy±EÃß.Ù¹;vè¶mÁ‡†¶z[[Ù%”Ìž'ÆâZæ?â|o‡ íÕz\Sªm 5e[ÜZØlµ’uô…ËR¯$?°À/¢ž­ìñùŽíê¦7Ù¿3 õäEÀ=Í·H?ýྡL ¸;¨!ö†ÙCÅ‹=ñ€6;¥¡­yÆî– Ï÷ú(×HCfil½VѼ6]b¼ð'FÖG;¦smPÁ#œwˆynBÒ?çÕd2"""wDDD%²"""""!DDDDLœgEA¶Ê¨ˆ‘¿TDDDDDEçÁc³As–颂*ùNdªe3¯ù¼ •è"""'\aPñáÃé>ïIÄû\EÆ™­£¼FÜ’cæýLÀcbÒç5Ç=ÏÝ^wƒ®4Ö ã4¬¹IQMV?óEDîæ1Ë’L%Çr?zŽê`"Œ¿h”Ü(°Õr¸˜ï¬`w6æ†^£þe™8 ðþhG4“ÿÍÊ¿µ;ù+ÙFw[¦ŸÿGz†õlŽÝwšg:2C<Ʊ®`'÷‹[ ÅÊIÙn·kEÖŠA%5d žƒžf=¡ÀþE}hˆˆˆŠØâ–³¶èpÔ·9NÎZx°K§ÛG@Ü—;;dö_~”†²ŸJÛ"¸<º·î¬5yHýwêJõšá€#Óenë1©¢ŠšZêŠ! ‹£|Mi<Äc;ŽÃ==VÔü×ïÔuw­+Æ»Kg1¹”qx…‘¶1»eÁÈnIåê¾{›ñ]¦_æ7Rh}AZÑM<“d€N]“pO|;ªÏv±|–Ž’¢ä))ª¼±÷šh\eŸò¼€qóUöŠg0r;œ7›Ùrþ­Îåv@ß$®QžÜÀ®hˆˆŸEÄ’FÙPËí½5÷½!§Zs÷x*+dÁî÷5Û×àwæ±…­(uOÒA;é-t²ÔJè܇¹¾\`ä‚\IÃJئ—ÔÚjÙLYÊb¢……» aƒÑXþ(ëá¶x|Ö•¿”Imu3O«¦sbhú—€µ‹Yn¬¤¥‚®¦–xéê‹þí3ã-dÜ„µÜ§¡Ã¶8è®þðÞáÅ>#QizI$§¦vf¯«k9¾ï½2vhÏwœüÍ&ŽãýóF\‰§†¦Üü‘´ôÒç]šþž¡N&ä´l?5þÑ[­áΟÔL`sí·CLóÄs0ïò濚ƒQ5Ì{zd`©ãö}_ß]ë枑Í?¢î>lg'<“78ôÀ-?š“C`ˆˆˆˆˆˆˆˆˆˆ¨Z €H9Ê©¾Q7Ê!ù¢Û¢"""""¡ã#89Ê¿TDDÆØÊwL"""wDDDMÑ""&ùDCŸTDDDDEòÝíÔ7{]U®çK]\N†x%lŒpÁiá@Ü ½ðºí6¡ÓñT\4{žed±ómŸÂÉI$– €Ù3Û|Îið—ǧjXi4>±«2^Ò(.2ÊÜÖ4ˆßÓ2ÐþÐüY.“*?øø¡ûßP[Ì(nôµÎ:—GÿÙÕáBã-w‡-Pçy²CFiÜ;®Œ˜kBÊ‘ÈÙÌÓ‘ßÙrEü~[_[ÀˆªÚçÑתj—`lC„ïÿÕ¿’ëð«d¾p’«OUTyµ~¹ÐÆÒì¹´Ò2<ûsy­Ìö‘ˆˆ…]TðÓSKSQ+"†&É#ÎÆ’IìQÚ’«ÄO‰;M¢ž*‡hm5+«d‡ –O,²nd1¡½™ÌF>"¦†A#>Šh}ÏUÉ0©¾rªºmlµ䇱­ ì1œŸ®‚ï]$Éü³Ùv´’Ñžª¨ˆ‰•ÄçµÏãNöËÏGɶ([ÍÑ®k9ž·3ÿ0®¿ÖÙk.ú’²7:™‘Éo„T0ngI!òÆøÁÙÇ þï™ÐÓû£vQËÇ^¸Óô|$©ÒL»RËx®¬¦&’7ó=‘Ç/;œìlÜÀÁÂðkþÞø¦¸yª,š WÚ&–©µô?v²I+Ý#ZéžGŒŽ_Ùiý•sp‹<;ᩳé-u¬uLâZšÛ…ÊO9Æ0K"!¬h Fq“¾I&Á¸ñFÏ'‰ˆ8—j·>‚ŠK¥5l´²?<¤ÆÈçø‡\Ÿ1ÙÀê6SºŸ‹ü.©¨0Á¯,.0n>öÑñ7^‰ûe>¯ðÝ«…º®–x£·þ†¢7±ÂÂgrHݱ¹¹÷ZÌtÇàÆÇª•¿gޣЛ]ßtëÀæ¹Ð6¢'dþ(‚1Ó¤„ôì§éÑs쪢""""""""""""""" Ýꈈˆˆ¸O UIOQ&†V–IÚ×´ŒAØ‚6м`ð¥æ]*õ «a·½îó…’\²&ÉÜÁ.U“¸iN F¿8K¯ø‡k°Óظ‰¡µMÂïLöÂêÚÊ×´€Z^ðð îì7§BrOÑãËqðë^(ê`s[K ŽVŽpW ‰À'°+Æð p5| u#ž ¨nõ1÷kO+Çýr¤Xç¸Ürr¹"Äþ/mÿ¤¼8ë9‹Lt±Tÿºž9?&>ª4ýž÷ÃEÅ«½‘óòEs´9Þ^?ÐÈÒßÉ’J§wɦ舅B¼e¯×—èxeÃçOYDê¶ÓÎiwuÊ£› ¤u‰¤döqè7‘^xYE½ ´²9/uÁµzy¼É¹]êÙ’=Éêâ²oÕ“ÍÓ¿ªæ¸HÂâ8ÇQލ+€ÁÉ÷UˆªÕQ  Î:®K1>Y^ÖG.{Üv ’V¤µ]æ}E©îÚ‚`á-ʲzבæHçvôæ Qx*Ô:[BðûR^õMÃôd5,’9f9l¢&ˆÛŽbàéØï‘èJùø£âcW뫳t‡­5ô¢¥ü‘Ï eÕõ>íhY×'w`g-Ü,ÄŽñ'JÚ÷YéºËe•M§ÔOŒ“8=à`8’pלû/¾ÕÀ>-Ü´6©·h꺫uTm–*h̲Fæ‡5â.nröÊù¬|âÕöwÁC /ѽ€º»4ý©yAùóñƒÜCáýІó«l_£©*çû´'ïÈï3À81ÇØÏ¡_Mo x™I¥-š›NVÝmWjfTÓÔÛA© 6@ÀK;äcߪûøÅû–…»‹MÒI«4}к–ïms‰ŒÃ( |ŒžÖ’vÆz¹ʲ ¯„™ÖTÚ…<ÀzsÄGÿ!JäEáqÒÛöƒ¿ÙÏ0WÛj)¹}KãsGóZÝð¯{u‡šF±ïò£’³î’—YZc9ú¶~6€uëº""‰~3øßUC-G ´“¥mLœ‘Ý*¡.ó>,O)Î\>‡—¾UÕáÒè[{µŽ°£úU^ÌSÂì;ôld°zJìüG°£dR""*27ßæ¾ZŸ=òD"– 3(xÉ-ãìsƒß¡_SBªá'(øÓ™\bɸ“Ó$`•Ï'þÅQ¾à‚;aU>Kx˜¾³Np#XÜ ˆ–[l”Páܧ̨ýKH÷ùú-b=͉®8 ÀYû‚ü×ÜV±Ú.·›£l:F(ÜÚG¸sÏ,~gÅåÇЃñ»ç‡1øOÂÂûSé4­¯Ë¨™¡µ5õó*ª:~7í°<­ nwÆr°wÚ[4ö-¦£wÃq¹Ï)ÏÅOÓïóRrÃmŠÑb·Ú¢Ú:X©ÙÊ00ƆŽ:/´‚F7Ç©$¬/ãJÉÛ€iä8u®¦ž¾=³¸“þm‘Ãê¼/Wé+xC[b–b÷Ù.²E1ø •­•¿ñºUjx‹ð¢íQ¨äÕ9¨¡ ª­›žánªyŽwŠXÜåÉÉ-Ç©è£OˆNGÃn%ÕiX*SO $ÑÔ?¬®t,óŽÀÊ$ o“ÕYö Ê‹}\uÔs¾Šy4R0áÌ{-p> €VÛl(o}ÞŸúšêXêcß? Ø?_pUDDDD@1ÛˆˆˆˆQ6ù¢""""""""" Çù*àÜ¢""""*7£;*ª1Ü÷\lUQƒøJä""""¦GÑWªÇž%c|¼× ÂÍ;ŽN6 Éþ¨éösÕòjMg@dø¦£¤œ0¸dò¾V“ñ7ø)œˆ¨{-\ñzÇQ øß©-TQy·]]QB×;›–79³CŸ_…Í[+Ð:ŽWh«>¦ ‘¯‚åIã—ö\GÄß›]–‘ê ÷‘_wŽ“UZí3TAé't1¸ür>>By}p×W®ˆºê§Š––Z™Ë,2=Þ$¨áZ‚>&ø¥¹k;„fJz9j¯²Dß5ò@Ó¶o9xÇx‚žnÆHÜ*ÿ4NèŠÝâEÖk&й\éêM$syâ2ÿ) åÏÀkº7˜ä‚=B‰>8¹¬ë¸f¶_µUÒãÙÆ)a¬x•¢BÞnaÍ»1ƒ³H¦Ï’7 Zîwí¶WÐÏÂäòã/å.ÇeÄó?qƒôF7•ϪæÝ÷î¨\s²äÂHßUÆQF´2úi8waÓ¬#žår3Èß’¾ÜÏoä¡n•³Uê EAf¢„ÍSTòÏP\ïà Ú¾£¦¢ÒvŠ:(5,TP¶(€å,o ÀÇeëàlr;eEÿBžëÇ> ØXé?HºG°ød©¥¯þíÝ»)AÌs¿¢¦7÷udñâÐûçµuµ…¼ÒZ¦sy†Ä±¼àmýÕ>Ï‹¥HÕ:®Îy<©íÔõD¿3[üž‚™ÙAÏ´^ÍäqM_›(®µ¾•îõtR¿¾$þ 7é*{Ž ¡¶ÕV2Š ¹› µ/isa8/ n@êp¶Wávö/œÒN™’Ë ieäätY`i 5«&¢""""""¦08Ü *¢&ØD숈ˆ‰ŸDDLôˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‡Ý¯óDDDDEFµ¡­°²=Á­. àz.ÿ]&:`téÿý‹±0:uùªŒå6L…C꩎à`úªô–;ñ,éõÇ—ÔÙ§õéË¿Ol¨¿öwËËÅ]E%Áö0üÿvvþRœ¨ú¡ù¨¥ãû‡ÖiÚ^'Ûb寶9”w Àq-3œC}Ø÷ÓpýÎéðÄXªlõ¼6¸M‰©úÛa{À‰äbhõ.øÝ襚ÃÙÏä³7d¼]yÓè»Í-4žTõRÁœ¼Ü{KìwÁp*"}œ0ê][PCyÙm£`=ðçÈOýP¦ª" L‚±oŠFí3Á+õ\e¼õP>…¼ßûhÞÌqœý'ðÛQ\Þ:èÆÐFùni Ïõf7‰ÈF^OÉlžV¾9ÑuÔÔ6š™òºNF“ÊÞ®ö áµÞí÷bæPÕC+ØÖ½ñµà¸5ÙÁ#¨ȯT*;n‹‹·ÛÝq˳±]Œw0÷GlÒTñë©]qãVX¥k¢³Û£„†»8–_Ö8~S·<ÚßpãåŠµÐÆêZÎê—HàÖ´IO,Lõ%îh¿ÑlZ›- 41¡­Àèì-ÿÇ )ñœܼuðƃ'–|æÉª¤?ýl)U±;ž½@i8Ûä¾{•uÖêšZʈ_ ‹Nà9¤üT ðI_5¯T¶ó;˜ÊêªYö…˜sAú³*| ÀöQ§í ±ŠîÚ¯Q±ÆKUÙ­q Ù±JÇ4“þ!PJŠsO]£ö;©çàó-V…¿ØŒ_êÖëƒe†NçÎf\Óò-ÏÕIAÓ¦Q:"*ožƒUDDDMtDDDDDDï”@ˆˆˆ‰ÝuDˆˆˆ˜EFµ­5¡ œì0ª‰Ý6ÕSº""Ǿ$"ó8®Öɵ’¥Øg]˜Oå¶þÙQ;ìõ“ÆË´.ÇëtôÁ§åµÏø)çóDOuäë »Té‹–»@Ù¨n4î§™®à8lážààƒØ€Vµ-mÔ<ãy‚¥îmËO\&ò´ðÝ2Ù"vÙýíÖÌtåæÝ¨l47ËEKjh+àmE<ý¦8dmØö#±ÈXE×ÿN|jêk½<®’Û£¬ÂÑÚÓÈgsÿXÓžŽtÍ÷äôR%[|O¤’·@^b…žd̦3ÄÜ—ÆDÀäå£nêx½ g[m’g¶;ÍžjfGÌC_,|“4‘܆2\g±>ª uÇAÕU²'u~Эah,šqæÉ'é*Ƶãf4Fë¹/?áV€ýûïæÕ2ó}ÏN@ç0ò|/¨™®­Ï³ Žùò©è±o‰wSÃÎTÞ(¹Mm\â‚•Çý”’FóÎ;e¡¥ÀƒŒwP›Jq{Ué=Gi»Óß+åm5[QNú‡:)¡s{ÜàŒgäpF[#·ÖÓWÑAYK |3ÄÉc>­pËOÔGÕ3¢ävÀú®Ï1®üK—m·\]œõîª2 +žAÛ×Õj¯ŒZ…š«Šz“QÁ)šžátžJW‘Žh‹"?ýM¬ROì÷²ÒOæó#Þù©IƒËs~æ9®¹Yùs{©‘ŸâªNÝ2¢þ®š*Ÿ´/HG‚Mg{ŸÚ?u¬x?,<~JOçu_EBzoß|-é"Ý+ã-”ÍwÜéaÕõTá¥Ü­Lù9ÏlHÌ}ÿÀù«3ÚAúï…:‹J@@©®¤"˜“ç0‡Ç“Øs4ìJÕ0Ép|ð­û<¯ ˆÚ‚Õ#ù_[gd±Þ0Ê)‡æ¥WCÿbg|&ûà-}xÀ£¬Ó^!î÷HáòS)nôdôqlLa>ÿ¬Ùù©÷j­§¹ZénT®&ž®OõkÚ?_ApiÃ©Û UÜ{´ÇgãN´·SØc½T:&y|œ­{ùÃ@ôØ£\¾õ>“âdz†¢¦(…3Zؤ8jªh$h÷lsI ÷ˆgl­— ÷ ¶ÝTgã>ȈƒtDN¨ˆˆˆˆ‰²""”DD÷\ðds0áÊGQ€{íê¹¢""""""""""""""""DDDDDDD@ˆ‰”ÈÎ227ϲ¨ùå|×Z(n6Ê«}@Ì5P¾:µÍ-?À­`ðNõ.âî—»Ï+iG]!†­ù ‰Îò'Ül~ɸ[GDDTõPgƬz*íiÔz$KNýCqû‘²BÂàgx$:@N'L¸ràl;øâJáûMµ¦›¸Õ‹aÅ U|;àDaphyàZ}r¦ôOl±6Fó¸9šZ~ î±\‘QÇ;`uÉZ«ÕuôÕšÂÿu£‚ ›]D ˜hk¥y`¶Äm…²Ž Ù£Óü*ÓˆÙÈa¶Aæ oÎæ<Ÿ~bUÚ~H€å.ñÍÆ1[[/ tí^ii¤oé™âvD²Œ8S‚;7bïí|=ZU¹à£ƒÌÖzkÝA ÿBYªZh¢smmKO09îÈÈŽ„àt)æUNÊ0ý¡FµÜ?Ómí_¦ˆ™‡ΓÈyŒè>0~aAú¢çe‘·'öq¹'-¨pjÆý5Â/b{\$£µÀɲ .;ÉWT¬.ÿ/c꺲ð0öóŸP¹0eÃ?’ärIåi'>ª±‚KÜ}>?obßÁh,ÍyÝîQGÊ9™dv~¡ªMqqwOâ¶»Âû:{BZ-°¿±QS‚àþf¸¶4‘¹\í¶êèꩌ 8ISSvñÕÄ›ŒyvƒDç}#Z>dDïÉIÅAÿ|!ù(ƒö‡YØ*ô~ m+röÔÐÏQ·ÅŽY#aï·ëHù•Ÿ<7\Ùuà&‰©a˳ÁLOö¡o’ïâ² €#u®ÿZr[nFÒÎÊ[Ý,qÈæžC o–öƒÓ9`${¬)k,ÏÁ òÿÛþKiܾ¿Rð§L_&qtÕVØŒ®=ä åyú¸wwÙW¾wDÝ¿DDDDDDNù‰é²"""""""""""""'òDDDDDDCÑXZÃ_·NÝßIR ò<ò‡5®sóâÙ ô5Ç8^¬—W7ƉžÙAt¨Ó®¶WCr{XE4!ÁŽcË‹ƒy¹Ä`ÅŽl²Ê&wÂ""! NÀ* ÆUQaú­Zl¾.¡ÒRÈ~í¨ôœRÆÓ“Ššyê\1¾ÙˆÉŸ^F¬¿”9ÏUPˆˆµâ>Ðt÷uu½”Æ’'Ü_S 9pÞI€·.\ìc§NË`ÜÔƒVp“LßüÃ$•6øÛ3S+#ÉÿJ¼‘ ÀQƒSÌÎ&xÞ²XXÿ½Yô%«*,{;?Gº¾Æ3î¤Ì´”³T2¢Zh_4G1Èææõèq‘Ôþk»²"±¸û©gÒ<Ô·ê^aS'“Næ»’ÌæÂÇÿ…Òc¾½8a¦åÕüI°iØœçþ‘¸1’ –3$®ÛÑŒy[B­dmdm kFÀÑrDQňª}<Úý¢*<ë¸iвç²Ê7d‡GïJÄôi8ÝÀ†Ç_»ñoUšŠ¦ÔRiZIÏé€ :W  dõçs‚NøbÚrËkÓ¶*;’Š*uBx"k?™îIÜ’IÉ+ÐOš†~7õ]÷Y[tE©“UKJ#©–ž&ó;Î"Qwäy?UÙÀ õï¸[µ6¿”SEÌ©ŽÔÑ—ÈZC€ö oÛe2®gvàq¸Ê0ñƒê:.@s;>˱Bo´_PGQªôÆ™ŠNgPÑÍ[3q°2¸1ŸÂ7~kx]²³Pñ×KQTÁôÑÔ¾¢¡’7™¦8¢{ÎG¦@2Ì()ÛKC+? 161Ÿ@0»Î}œnvd•|º¦÷®x¯¬j;.hâŠlþ";Ü?Ý|JOgtOšŽÞ?-ÑÔðz‚ãðùÔ7xŒy;ö½®èsô^Ç‚ ”u¼·Ñ0¸Él¯¬¦·tΘ–%Åg£'Ú¥IðÎѪiâæ–Íqls8MðäŸýàŒ‰AjW:*œålÀâK' –F;ôeÎX9k\ÖÉ¿ÕågõETDDDDOâú"""DDDDDDDDDDDDDDDDDDDDDDDDDDX§ˆ×éìúŠº™´ÔÆè qšNV< ŒÁæsr’$d-qÈÀ9ß—ë¾.ÔÓð«Cq¢Æé⬺v‰å)ÞÝÈ?ÅÆB”¹Îhw+;Œ;·ä¹åÞüÐ’?g#ت¢".2f ôU`åhh`*ª÷QÄ¥Ö{/ŽÜiNdm Nhv2Ù*ªcpéݯpRô»ÐeTg*¨ˆŠ}¡š\Pk›¯„·’ëHê9š3Íæ@Cƒ½0Y&:þÉY À¯eËC]ô„²4Ïh©0Œîa›$þOkº~ðRm‰®õ‘Ñ×mMp8¦·R¾wÞ |-úœªþ´åuE§TqFõÍ%v¦¸=°M& Ÿã+ÁÉÙÒ¹ÀçÿT›ˆ¡þ ÍvÔmЖÚÐë]Y5{YÐÔ‚H÷å»zü–@ðYº]=¤à×W«;à¿Ü"{)]3Ãù)KË™#F>öäòµ½2B‘Ⱥk*i¨©e«¬¨Šžž&—É,¯ c:’NÀ(‡â7Äȯ¦©Ò¼8–fBòøjtÀ€i€9ÁÉä¶Ã›c~õ³«ý?Äf\,vBï2*N`ÊÊÜ’~,äÄÌõÈæ=€ÙÊliÛ-§OYi¬Ö+u5ºßJÀÈ)à`k>C©=IêNåzì«UG7˜ax-¦ì×zÛÍ®t®”ËS[#yæ{öŽà{ p"&èˆV²¼UjwêŽ;ꪒ b¢«u¶ú6Ÿ1ò/wø–Kû=´ôõ\E¹j)[OGm’&8·g¾I°iüÔ飳——««Gé;½Ç8û­ óoý˜ÜÉF_ Z¿Op¿ÃÕzŽ¢bÛ•êY¼˜Z<Ž.Žœr4‘<¬“°~K'\üIpŽŽ¦([¨ê*ËÏÆiíÓ–Æ=\\ÑŸÉöVíóÅ· ¨j£º4c’h)bŽ7}%•V«CPxϵRÔŸÑjˆK¬¬¹ˆ^¾ÜŒà‡í,%«´ÔZSI]5%ÈŸºÛi_Q æ(Èh÷'{ tUÛŒG<±½Ï7/–1Ó ôÝlb§‚:x"dPÄÀÈØÀZÐ0 sXË|sÐ\:§¨ŽºæËÚ&ü6Ê7Ë;9Ýøc—oèE¦ ã—‰:¦ITÑ¥4Q=†V¹–nØòPün ¹Y×¹ÂÏÜ&à7xxië¨mŸ¤ïq4fé^|Ƀ»˜ÛøbêI겞Í5}5ðPISjçtPówŒ’ õ÷«éÊ""/#Y^áÓzFñ¨*9LVʪœpå°»\ajJi¦«¨t³½òÍ)ó${Î\÷»w{ä’~«b> ¬Ž´pÙ³¶•‘SVÓPÔÀM7–ò_G —/æ<àÈáŒ~-÷Øgç¦ëq_Ä/øy_¶º²¢ëq/j[hd޹/sœÖƒ¿áÎ~]W“pãn×Ü ×W]?W%5U¦º#A^èâ¨'ÈqkƒZ÷e§;{”|ÕÜ;º]üpûWÚZÉŸ§â¯}l ‡ã}4õEÆ^`Ù– Œžã·.ñÊZ™|ÂÖÉ‘Žz®™]1 ól å¨sÜ@weÀ5Äd4‘ê³G„»C5f¬Ô:YY¾éÚºziž?¨¨id‘Ië±iÎ7 ‘Ýcúj»Þ–Ô¯Ÿž¦Ùz´Õ–<5Æ9i§ØpÛ¡)ËáßÄŸZšM5¬$‚Ù¨‹y#©Èm=s†Ûêä#—¡9å?²!ŸtË´—5>›uÜ §¹LêH€ØS½åðãa·#š® ×–Y¸Ý£ª˜ç6In"‰ÍÏÂæOâÁ7´’Ù`ÎwUDDˆˆQ7Ǻ ãtïÓꈈˆˆˆˆˆˆ‰º"""""""Äœ®_DDEñÝ.tÈ|Úê–BÒpÐws rv_¾û tïŠ(]aås$v$Ý£<¿\eÝ{’†Kt±\iÌ´ndk˜HÀ=vßn»zex|8Ó´6{Þ©æmD•.y󃹹£"1žä3”Ü…w"""""!Q ÇŸ38‰Ãpy4Íæ/ TSÛŽ£ù/@Â"""ùoúKµ¢²Õ_f£­ôóÆîí-p?0JÕ6¤Ó÷¬ël&º •¢¬F^ÓÔ´‚ÉìG+‡±[;á>£:»†ÚR8ƒ%} rJAõ˜Ãúht"¡ I¹P§„s³‹6.:±äÏAkuE]89ÀŠÚz~ûdž|zä÷S]gñש&ýgÐt³FÓvµ1€L¯Ž7| vÇ0Îÿº=Õ×á?E:Á`ºêZ£I-EöXä‚Hqµ8`-nÛ‰ÎÈ+ÛŠ¼RÑü6¶Cp©Ì.§ ƒ¨œÿe½‡öœ@÷QZqÛŠÜZÔ_ÑM AUC åÆ:^MCãØO>~o¾9[¸Îq•˜øá–˥ߡצC¨‰JáÍIDî»ýl€çãvÛì6É‘lhcZ@t ’¦QqšXá…óM##Ž6—=ï8k@Ü’O@£/«]ÔýòáO7/#ci8æÃFÀdõì¶aA«´Ï ¸'¤†°ºEHúK%3!`æšyZÆ Ürýr¢¼NjÍlê«m¥ïÓöœ6šžO×ÌßYeïû­Ã{le`¹¦ª˜?%Ç9ú¯¾…•4ÖꪈŒŽÌÃäk hæÛÃaž›õ[*ð·K|:hÚY¡cã’ÙÌö9¹kÞâA¨9XÄ¿…é(U«xeK=T2Ê M‚(ùßs3à ä·%¿«ÆÛq°U\.âEk(ª4¦mCÁ,ŒÛ¤qxH a}ÖñVÿ(ŠƒA_ñ–9õ0}Ý€Ž¹t˜ "Ú¡újÜK‰0Ô×½Îg¬q¸{uî¼ÞX«øsâîÑa®žÏEu–ß;áqòäó xÈÎ>&‘‘è²®ŠJÖqJËJ[îe=ñ‘·ál‡áŠsóهߗ»ŠˆPO$/æcÈï±ÆêéÕÚÆë«¿DÕ^ç5´4bˆT¼fYckÜZïÚ ;ñ…öp’¦¦Ÿ‰ºjz))ᩊïM,Nü±‡6Vpp1œw[Y…Ï1‚æµ®ß!§ |ŽË°{ª¢""""'|¢"!ØdªguTDDDDßÕ ¦ØØʨˆˆˆˆˆˆˆˆˆˆˆˆˆ""¦¢¯tVgY­C%’Ås†–‡Éôj-[$Î~7¹¤l@h#¨+qfMg-S.VýU¨(é˜LR[ß^()̹Àpš8¼ÀÇu ${½niŠj—ÏCSyó\Îxëh­pÕ1HìùÕ“½óL7ÎÚÝÎË5Zmôöú6AOM8hݰ·æ~«ês˜Xü¸U×EK 3)àhllÏ+}$ãø®äDEiñG_Ø8s§£¾jQ÷Y*NÖÓµ®¹Àš\3Ó|/_IjF«Ó”Z‚ÅVÊ»}d|ñHݻഎÎAèA ÕDíêˆFB‰~81WÅžÛb‚c[)-=Z=0ûÓù-ŒõPíÐñÙõ…«^Q‰Ë/™¥®È\SDÆð@êöslõdû,…à \ArÑuú¦@+m2:®˜9ûÉO+ÎyG`Çì÷Ry4ñ9¬¡ø1|ºÀþZÚ˜¾ãD}&—-è9þ‰¾Ï=%÷ }ÖSÓÎÉnõ¢––IÃ%<ÌÛ¡‘Ò4œœ˜ú dÊDD qòénÕž!5oß„tvéi˜ÿëK&k'v¢G;ü^¶µñ4wìú†Õy´4EY|{š$À2FÄ]ñ¸×8pµ¸AÀ> qZµº‹TU×Yl•Í5õÀÉYX2êØãœ8‰·p¦Ÿ øs¤¸o§ÙeÒ–ÆRÇÖz‡žyê_Ýò?«¶Àt •Ùòª¨3ºª"¾75¤¶NÁ¦(ÜæM|ŸËš@qˆcÃÞß\»á,ú¨Ûá†q/‰ºãHfÓ6™MÔ¸á²Ìp ŽyœpÛàÜd-‰€ÐÖ€Û°UïÕ 9¨vßr¡oÚ-©<ýE¥ô”a¥´tÒ\fÜŠBc`#ØFóõQ«†–—GëŠ K=¾‹í¾dôôó’#3ˆÜ"s¹pKZò×`ž\de|šçZja}šïºÔ\*¤ÛÌ€Fµ£ kG`|ZGLßõ}úšµTÜî3ä²[“¹$ôw'M^ ø?ÓVšh.F«’ûråu¶žGGG ½á‡ÊFÛå­êpÝ^1©íZà âÓj·QÛé$žŠš zh›m¦7à5£v $pV„[xC¤h„‘¸Eg¦Íé¼m;+¿ »8ùwA×ñoé”'âØŸt>£nùP3Ä3ŽEôs¶&Üm·‘¶>åóû˜Ÿù©Ãu†Ç|Šá§nM¡¯d°rÖÐÈæ¼˜Ÿ9ÙÔ¾ ZöñáÓQpÒ¾®÷c‚{¶'™•#ã–Œøg `œƒ¶pN“,§c0Gü×ÛnC)v׃·±[ð¥Ä£®,÷‹}Ykj­ÓG$m.ÝÐÈÜgÔáìæÕ›q¿\{*š"""""wÊ"""'tDDDD'U1Œ*¢""""""""""""""""¡ì€aU[á‰îtm. °tDDDDVÿt³\h»¦–»°šZø;GÅ ñðÈßí4à–ÙQ{À¦¨»Ùµ~¡á}ñïcâ|Ò²»›È©…ᓵ½€$“óo¹S²"!QgÇ ŽJm[Ã=u!Ò^n©sžy‹žö˦ŽlŸqô”ÉÝYücЖî$pòé¥.¬51óRÔäÓT7xäö=qեú׎‹ºj~ñbë!–†ïf«×RsŒKÇ¡×1S_u@se…„—ÓP†4í#÷É{Á—æ2$ì2CWÊŽ+[msNÇRRZ*gŠNÒèÆ\3±~ÎÇÈ,Ÿàjç„u5þdo¬¹Üe’v²@âÀÏ8èp ÁõYÿç¿Í;¢".#>¹+Xþ+u;uu}\^cc§¬ýd àS´Bâ=‹Ø÷ï,EÌy‰Îë!p/„Ú‹‹±–›S%¥·ÆI®º:øiÊHÎã.$`4œç $lS‚ü+Òœ,ÓµiêQ%d¶å+÷š·uËœ:4gáhØ{œ“ëîô\º­ÚUš¦ÔëÓ)¢ûÀç.?²;dû,ö†ÔÖÓprÐØŸ¦šý&i2!•ìåß|.ÎÝÛî¢~‹âþ¹Ñq6ŸNê{¾¸…² !lŸ*@æg߬‰eñgÄû~MMÆÑvßíÍÿõº"ñ«¨lš:Êù9{*e`>ü»ŸâWDþ4usÆiôÞ‡}ùÙ4ŸÊF¬u¨üNqRë¬éµçZÅ+C#  k™Dáßž¹ÁääîâHíŒ//¼Pgu  ¨¶Çm¹ [h« ®|s=¯sƒØ»ÆpÜœz•éqwWqÛŶëºêª›MmúŽšçlª ™ñ°ÑÉ |¶1ÙèÑð¹§bîl‚ùǃ^,é+áŽÅÄÚhÿX<³u‚Xðv>|Cø– d+×Wð‚šŸ‡w»þÓ¹«ê-u2Û*èkgl" ÆçFC' Ãù~6éŒlµù,`-pÈsqŒÕHϺ£ôgh(Êa¼PÏBâeÀ ˜~yˆ·üj}´‡nª=UQÈMÑ;¢"&>š!QtDDDDDDDBQÎ 'Wª"vDDDD!CJ4Úr·U–Eƪ²¢žfµÿz€NÜu<ÅÍ=¹Làˆˆ~køâ³ŠîR^ðÈl7Ê:ùð>#qÀzo3OøVu†H打Fàæ=¡Í#¸#!sDDDE|cðQúâÍý4ÓùÔ–¨žõ¯§nO/þñ»–ž¤e»ü8þ 8Áý¿}«#OÝÍNù ?tª%­ß còy‡g{œÎ²@“ŒuPƒS;‰^2âÔuN•ì7 « þ k›>Ã1’Ÿ!tWÕSPQM[[U 5, 2K4Ï dl%ÎqØ;•¯üp«âeáÖ»\’SézÝ`ܧ >Aî3ÊÓÐRV@û=4E<·»†·¬l®©¦Ôô™oÂÑ!ÎÏga®'5QbñÙ¢*ëlÖî QóI¢'S\X_€ØñÊð=C‰ÙÃÑwxuâ«e ÞŸî°ÔPÂø¤†1åÔDÜÆ&Û~vòáã÷G6:©,Ò CšAdÝTã¡îˆˆ¼"_"ÓZù}}Dp çÏ#wµ„´oÔä –¤îsK[^úª‰ ææI^î¥î$¸Ÿ©*Hp?»5ö–Óú¾ã©êmÖªÖ9õt‚¸)ä–áÀAÆNÅJ[¦¢áwôm%ž U4L2SÛ©ÿ[UPOY?‰ åÎ=±Û (q»Äþ¬ÖQÍkÓÆM9es°YO)ûÌíô’@FýÖàH$–Ò6mUª¯£Ò¶{…Þ¹ ?’Ž'=Ñ·9#ðqñ7î¥'ˆê]Ysàßô&¶dŒÔ÷kÃbš¡óùÎi 1!^Dì'®í;ï¼[➎¹è ytÒW®WUPÌæ0Ic 9’7=œÒ·NÊÖ*й_}¢Çz¼H#´Ùîœa´´Ï”îp6h=Á ÑÔz/XioºÉ¨ôÅâÎÚ—8@êÚ9!þ Þ`3óSwFpúÑÇZFÝr"–ëAFømÕû¹Ô²Â÷DõÍcC›ÓÆíBî"è]UÃM%‹T[ÝEZdÁÁÑÏHÃñ4àûú€W½Â^0ëÜÛS`¯-…Ò½PÏ—ÓÔ7=Ìì}Ü8zã!Yº†¶Šå¸ÖÛi䤤©¨–X©å”ÊbkœHo9ÝØÎ2wõÝ{\4½Tiígf¾ÀG™n®†¡¼Ý>‚GË[_§–)ᎢsÇ#ØGBÈ+¸ õDDDDDDDD;Œ"eêòˆˆˆwDDDDDDCŽýÑb0Q;¢""""áQ4TðI<ò2(£isÞó€Ð:’}]Lu”‘ÕBåJ9£..ocCÔ{Þ¸r»6ö칟bª›""""(½ã—G\iÝ`âîœtÐ\ì2 ÉáüQCÎ_ ¸ôd„ƒê$ß`³x“oâv‚¥¾ÁåCpŒnTŒvL»uåv i=½ÁWîÙ÷ù«+wýG¥4%F©ÓVØ.’Ú^*«(åqjFƒæòÑí˜tõè®›Ò†÷d¡¼ÛflôU°2¢žAûL{CüŠû~ªØâ¾ž‹UðÓQéÙ›Ì+í³ÄÏPþBXáî~‹êáõUEnƒÓõuƒ–ª[e;çiêטš\×+Ýˆ… ñ“ÂÓ¡õËu•–™±XoÓæFÆÀÖÒÖc˜·nø/áÞÊöÑÜm†ÍUm¾Ý1ªí–¹ ¥–geõÌ“õq¼Ú{K€w|ï\|gV‘÷S«Já=4VªiÎC\ç;Ì™ìH €žÿ}J™ióEåjë%¦Ò÷==ro5Ê–JY¾HkÚZHÈ#˜g ãbPSÅW ´/ îº[Oéz:ϼÍM-MmUUS¥’vó†³#f oÂФW‚ 8éø7$‚8Û$·93H$·•… ‘ì~‹;'º"""/žåEIr·TÛ®ÑUQÕDøj •¡Ì–7×5Àõ÷P¿ˆú ýë{U]ƦŸIVÖÐW²ù5žPá šÄÍÎF>6ç¸*øà)¬°ÐhíOMËG~]ÆLR7œŒ¼ƒ^ÑŽ­ä#}”™¡¬¦®€OIûD5G-FšÑñyb’ç8Îû“{}$ü”9Œs¹†ÎæOAÝK.%x£áö˜ á§ 採¶Z6Ð>û4mps£¥Ñ0å®$‚KÎZs°#E[µîç|ºKY]WW_]RáæOQ+æšgtÎq.qè7RWÃç…+Ž¡†›Qq1µv»Sš$‚ÔÇyuU9ýi#10¸~V©Ÿ¤´ÆŸÒV†Z4ÍšŠÓBÁ´TÑÞqêçh’OªÀþ"Øû׉î iø9K©j幇|6HÞI>œ´îYÇPhý#©.4—+þš³]ë(ÁóVQ²wD Îp8ßcÑ#Ñz:9§š='`dµ™œÛt Ëæ<»ç׋[Â.V¶FÏÃ}'ñã˜²Ó nëŸÄÖ‚>kä¡à‡ (¦d°pëOÇ'˜ß2”I‡|œnŠÿ§†:xZ:Y&lGnbÖ’鲎âe×_q*à5k]- EDÐ4»SHc©“Ë,Ü9Îû¹ø·îlJ0Dï•BßóUDDDDEÓ[KMYGQGYuÕº9¢•¡Ì‘ŽsH;FF,¸AzðµÆ¸ªé[W[ ï/åcy‹³rèŽNóD -'ñ7lîq3,—J Õ¢’íkªŠ®Š²&ËѸ½¤dWÚ=WŸ`¶ÑÚm‘Û(#¤¦ø!ˆ4ÆÞÍv ÐC¾È DDDDL¬Iãžž£Ãž®3±®0à ђ2ZöÏi_æVµå­”ÆÓœŒŸ¢Ùï†Í+iÒ<ÓvûDÌ¨Žª•óÔ´÷‰fh{ŸüCGöZÑÙdm‘ ÎFÊx¾¿Á~ñ %ò=”–xé¨\øñÌZCfyo©aë襟‡-:Í5Á­=EÊ[,ô­«›/æËåßÈ·eÑxšçJXu¦š©ÓÚŽ…•”ÒHs7kØá»\à…õ¯„MKï~ŠÕt5TüîÃuŽFF@ؾ6ãœöRS„ú&¤è­®qûÓX4qO#©¢±5Äá™$€s¹Ê¼×M5C'|ÍaË)ÁÏaÿo仕6é²Ö‹MRu7u5\r)¨gØf¶œr;æ ¾iÏö––G;~g`öWѳˆèí^ÏWs©sš%|q“Çò¿£×wz)óáÛÃv›á‚÷x0ß5[FESšLdÄ-=ÿ¶áÍéË’v hÎw>§º©ôü”»R ÇŽ«#üÒóaÓUŽŒæÌCÿò ú… zÌ•Lƒ‘‘•^SŽ¦Ù¾ýs‘Óª²øëmŠíÁ½aC,^`už¦@ÎPyœÈËÚ7÷hQ·ìø»j]Wdó1ôTõi=Úç4ÿ1s…×$l’7Å$-|r×µÍÈp=ˆôöP·Æ×´æ›°ÅÄ iý«DWjhˆ$Ù’1˜Ã>CN>&àuQ><ÐNÝö[ð/«êu +íW ÓQUg®DÒrYLøšcï¶_Ëæ¤ù*÷DD' Ž ¶Wx™ B6†Œô ±>Hòˆˆˆˆˆˆˆ‡ÕZNܪ¡õDDDDDD(wDDDDDDDDT ©€zŒ®ª˜Ã {ys–G¨î$Ò)²ÙõU=ÂËmºK“n²²GáÑÍBÐ!ßxq9éÉî³""±xëuÖÖ^×Ýx@ÚëÕ+ã—È1yŽt!ÀËÊÏÚw.pѹí¾&à§Š[>¨ºÅeÖ4Ô–Yçpe5tr“O#Î+óýY'¡'¶RMdDNýÕ:çeiñgAY8‘¢kt½í¸dÞž¡£/¥˜É+}ÚONã#º‹üâ=Û‚:Þ¿…N{¡ ?êõYs¢ÏvÒ°?Q&K‰ÇÂs>,LŠJšzºXª©'Š¢žfÅ,OcÚFCšFľBø§­m%êyÜØÙVÞXœç~)ü zò‚~‹ÒDLz¢""",[âÇ?ù:ëOþ‘³·˜Å¬ÇÓ=³’ÆJvk[¹$ã{­²ðÚÓ=‡‡ºrÉTƲ{}®ššV· s"kN>¡\ ÙjóRUÔñŒ7Z‹|¾|ºŠþøhœ÷†ŒM?—Ï`X>AlîÝG¾ßMALÒØ)¢l1Ù­ùô""""£³Êq±Uù&Q]C£lt® Œ4—¹ÇÔ•ˆ¼6ÕÔjQ©8€j]%ê¶Hhb.$6(jªˆv?d‘+ZFÿÕƒ•˜W‘­/pé½#w¿ÔíÔrÔó€âÆ’Ô€>«Suµ2ÖTÔUTÈdž¢C4¥Ç$¹Ä¸“ï’¤ƒ~ in%Qê æ±¢šª‚Ž¢*zX£ÑfMÝ&KH8Ç(ú©Ç¦tý“MÙá³Ø-4v»t?ÕÓÒD#`=É©=ÉÜÊôÚ0Oü•zŽŸš®Àü0lWo\M¼‡=®ÙEmc˜ì€$ܹ0·åʳÆÈNé·ª¦Fz¡ «áÔ4”õö*ú*± §¨¦’)6<²×4ƒÍ±º„> ´qÖ;kª`œTé÷´>—1ä² €ÎÛ€H#±ôS³¦wTÎæ¬?b]aÁW§©é䨪¨·ºJX˜ðÒùâ"X†Iñ±½Ö­¤ G“âNZ{tR_ìþÔ‹‹vGÌ[ÚÓ l`ìù¢{^ÂwìÃ7槃qÛ&øUDEAÓs’«„Dˆˆˆˆˆˆˆ‰¶rˆˆˆˆˆˆˆ’"vDDD\]$m‘‘¹í~yZNîÇ\.Hˆˆˆ¨ìãc‚¨ÓìAô\‘p0Hd ç©õ\ÇMÑDß<©­tüEдMtñCÿmPD™×DÐ7p‰½ÀÈßcäøLñ%5E†ÖµÎ–Š~Xmw)“¶ ŠB`ƒá8mÄÈϮȈˆ2¶¬iÇžXø§aä¨sh/´±‘n¹µ™0ž`îG ¹˜HÜvÉ#u¡¥ñ ÀªŠŠ*Hnµˆé--+ë­Ü –ó~åì9ˆøNû¯bñâvMI¦©Ÿv³Š=AbºÒWÑËH÷j<¹Z&ŽV8‡4:2þœÛ‘Óª•š;ˆ–-U|ŽÓh2Í#­1Ý_'.rHæ1§;—ÇŸl{«ÅÉ%ñƒRÚ_:¹ç¬†F}_S?ùJðržš³‹ÚF ØSM-î•’Äæä=¾`È+jA‰âöý9ÁmYx‚©ÔÕ[eû¼;‰\9#ÇøÜÑõPOÂÎn ãŽ’·ºWBÊJ±qqk9Ïú·ëZÓè šÖç¶VÉÑÍ[S<´±Èö´ÔMå°Ú<®v?&•ô”DXßÄÞ£~•àN¬»Å’O¹}Õ›…Ó¹°‡ÆÀÉ•O zuÚ[šb×,f9]Lê©qœÌ÷KØžÏÖIX;Æî¢ýÀk…#Ñ5â¦4õ-'Ì~?ÿ5®wo#¶;¾kc¾ ôÌsÃý’f;š¢òçÜê\I ¹ç•€g¦Æ}sŽ«4×ÐôÂåÐa¨XƒÄ,9œ?ÆpIÛ`Teà_ˆ{^×zëQê+MDºª²:© ­ÿWä2Ð×c?ÖË»nþ4éeŽ×¡œqø%©¸Œ½ZÖ|¿i[oñŸ«G3Û¤ì˜! É6sžç>‹á¬ñ®åºM†˜`ŽFÆ÷ãÐä¹yU.x ö1¾ÏŒ€— ~]Æ »óî¼Câ‹w AO Š…ÅÛ¾–’&8 žäe›<(x…ÔšãR !ª(⯨-s¡¯‰ÑÄöµ£~v’Ðüû#›Ø¨ßÃ=[/ xÇMz’õn´TÕRIJ÷ùEã•ð\A-#·e;øKÆ ÄxÙOh¸}ÎêZK­•¸dûu,ß–Aß-'dÅÐté¶2¨Óñþ·~ËTœ\´>ÉÅ-Sh–6Æi®Õ, L…ÍÇÐ…éð+SO¤x§otÁäÓ×°=Œêèä>[ÛõkÜÓÛlO¢ª"à÷áÀŸ_dcù˜×€pïuÍ""""""""""""""""""".2ѶK»É舊„`{…TDDDN£Ñq=:”ñ•ÁWi;ŒœDÒte¶*©K®´Ñ†ÐÌç4 1Éß÷]ýí²¿ƒn/»WØŽŒ¿U‡Þí´ÒK#¾*Ê`1õ|{܇ÙØ‘hˆ‡¡ßˆ©…eqK†:7ˆvièµ ’šz—ÆæÁZÖÔ@òÒÚñƒ¶Çàãp¢g‚+Ä–~>]¬wš¹b‘ö‰mðÇTÒÉ_,U1ò3”“ÊîC#¹{`ýgJ!Ïl"""E¼}]Í¿‚töÖ=¼×[Í<i;ò0>bqýèØ>¡CÎ/4KÒæ‹õ.ÝÆ¶Ž:ª¢(¯ãï\¾ŽÅEÃêWa×8Ù[VC¿Ù2_…¤z4Ÿð«cìõ³É>²Õ:ƒ ÁGC?ï‘Üçn»úû•3Ñb­oÇ­¤/õ;«î}¥¸EI;#§Ï,oˆ?ï 9ãi%Žãæk°Ò0Mï¢5–˜Ö¶£tÒך[¥3]Êó!ñ»Ñìpa=@p#b ÷–)×:“Ïñ ô3cÑŠJ»½I~ryXæDŽáÁÎßÑedEB@êqó* x³Ô5¬ÓZQ¥Á”t\%r—Ló=òOÛûAE‹-²®õt¥²Û 57 ú–RÓD<<­;u#u¶­3lŽË§m–hDb:H©š#o+pÆì; —¢qÕuTO 4šyc†&`¹ò<5­äìOñâ’ 3U¦8kVÉdå1T^Ù‡5§¸§ìãÔy7øsŒ¨³§4Þ²â]Öám¤©¬‚Ž)knW*‡‘-cKÜéevÜÄ ¹>‹ÜÒœ ך¿EX5>޶KxmÚj¨¦ˆ9¶”Âàœ÷¸7Ø÷a½ôïƒÞ,\yMίOÙ[Ì ÙQXée'p"kšzt. Ðø hc oßÍÕì†Í°öÍþ_EëCàŸL¼k›Ô€ ù)bn~Yϲô)¼pù±Sª5T¯åÇ$ õÇ–%îÑøBá'õÑêÌdâk†ŸZ¯ð†:PÁ±Ùgý#OŸ"ZŠÙ&d`–‡gßÔñhýÇ]YEx楉×ù*¥|C˜Ç C›1p©ä“?5çq;EjÎëçXî’MãyšÛqƒ1¶¦0~#9Ë\6ÈÎZ{‰‘^|RrÅM`âlÒÊÁåŒË™Óv´dŽ¿rFÙË„´¤©¦ª£Š²Žxªiæh|RÂðö=½‹H8#ÝkóÆþ˜e“uð†ˆ¯t0ÜAèïŠ'ƒï–gê° ¨-9¾Ÿä¶wáçT_Áí;x–_6«îßvªwþÖ'ynÈ÷åÏÕdòDBºËòzû®lÀ Æ:.Hˆˆˆ3ú¢!Î:öDDDD= """"""""""""cr}Q23„DDDDTÎøÁUD'‰žè¾k•-‚¢ß]OM%LN†¢ Écp!Íp;A BµÍÅÝ%xàwÀ´ºZjVÏúBÃWrÌ眖’Z[éìTîà¶¼¤â7­ú–™¢9ž<šÈõU ¿-ÁÄ+Ѻ*u¨#âžÁ.’ñ-¢¶T²„\YÉ’Ä rµÆ7¸çö‹˜=¾ §-¦±— m5le¼³Ä×ìrGLŽ«êDDDD!Ûu ¾Ñ+äsê-)¦X÷sÒQÔ×JÐï„™ÆFHõ9>Žüñ7„ hj|Fèøª3-L m´Ó9§ó d¡Uôèµµâ³SQÇ]GR$kéh&m¶œƒ‘É-výó!ýT«ð1¥‡‚Q]æ`7ú¹+ 7õqƒž»0¸G¬ôˆˆŠxòÐÓYõݸ·@ÖPÞiüªÒÐmL]}ßýLú¬cá›SÝt÷´·èÙq®Ž‚¦>l6h¥<¤\~!îÊÔjàÝTšçƵƒg¶Øi–ŠVdÆÐàŠ9]þ-²•DXëÄ'¨xcÃÚ«»ÜÉ.•\ÔÖºc¹–rÒyˆýÆ‰ÇØ®>ô-mû]Ýø¯{.ž:S%-’Œ™êäšPsû,qgL#·øJ™j…k'ÅV£f¦ãÞ¬­ˆÈb§¬‡;£`cbv={^ïñ/{Àþ›‚ÿÇš š¦=ñYéä¸G˜Ü5™ôÁv~`-Œ‚­®#k3 4ûïzžâÚJq–ÅG4³»÷XÑ»ðܺœzñ©¸ŸZûrÐX_7$Ø4µ?ä2àžgì>°'¿U}p3ÂeÊûƒŠ3TZ¨ÜY$VhH°Œþ¹ÿìØrϹÉa -ø³’ÉÃÏ 5zfÁo§µR\ª`¶ÓÁHçy²“Üæ8Þ êy·W…KS¬Þô$‘ùrMHê—0ŒÖHçàà²kw0 pÁÇÄí•òUÝíT諸ÑBØñÏæT1¡¹éœºÈ«O]qcCi=6ouwÊ:ÈœçG t“ ]#Ævøs‘‚îƒe`p›ÄîŽÕµÔÚ´ÚRH$†Jšæ¾YðŒsߘ¹qŽëä.øZ*§Ôš‘‚*‡D%±>9qí"\òíèýoÒ·ëf¨Ó”†ÉRê›uÂ5<¥……Ì>΃óP_ÇEƒŽµ² …u¢–WcâññèÆ©Jí5aã¯4ûuTFI+íT¶²<ÚZž@ö;l‚:T âîÔ<)Ö2iëë<À?[C[HвÏo¡ìæõÔ`›‡€Þ 57 nR‡¾¿O>^j›lŽøpNîŒþ÷ϡÀÈY³Æ^žâ´tÅoÞযuœÑÇQ1l½Úæ¾& lúïóG);¥Lϳ×XyÔÚ‡DK³båºRí,Ra‘ ûNRØw©Ë¾rUQ ƒF\@2UQˆˆˆ¬.:pÎÓÅ= S`¯ä§­g뭵܀º–qÐôü'pîÒz <>qùÁŽ)TØ5 ŽŠJ¿¸^i¤qÄ.k±ç3e½sÑÍ$z°Úy¢¨‚:ˆ$l‘JÐö=§!Í# l.hˆˆ›ã¦SþáE¿6û^šÔ퉎lOn¨È<ß®ˆ¾'dt |êñ×8YKÂÆ¦›TðVÍYTZj©L”sÜÆì·«KOÕe$]Fv Ùœ^ fÿ‹BíDDB‡+[^/¯ì¿x€ÔŽ^h¨ @òØÀöæ%{ž,ÕW_û< u=¢†¢ª¦CÑœñ˜ZØæ&NžÇ²Ø@Î}•Q[UÕQhžÞµD­û…1|l'ÒÁÐþÑ–¯t½²mIªìºtÊã=Ö¾žˆ¿›~idk ²¼NV×l–Ê+-š†Ïl€SÐÐSÇMM$ˆãcCXÜÎuö"""¶8¥¢-CÐ÷){ÕŒø%`ðH7dÏp1‘Ý@ýÁ+ÐñŽ’ß™•³Øî,«m¬I ͆Bö¸JN$òÈní áM1ñ šW‚÷W*mõæÃC \F9YW -¥§bC·Û †œ7V_}/5“‚l½V‰>ù¨ë%¸<È0óy#'×!¥ùôxYí·Ä]q§4–û©«Å536dlÒÌìÊÆuqÉé n¡U®×®üTqNkO›kÓTn1IRc£ƒ9ÇŸ3‡SÛ9;`)Å£tÝ£Hé{~›±RŠku"(Yœœ¤žî'$žä•ë¯[_ Ó:Bï¨jžÆEn£– —œ4–´Ìà}V¦nõ’ÖWÏW1.ž¢WK!?¼âKç•7~ÎÝ7  nú¦jg6¶çs|ÊFϧ‰ŒÇ.ßúà ;ãaè¯o!4× i*m–×ÓÞu>ÖQ±ùŠ™ØØÎàvþàøŽ1ðõæßAÅozïÌ…ÓWËÎDÕ³sGE@ÂsËÃ@ÈÃ[—B¦/x ¢øCi’õqšží}Žš¦ñWZÊf´dùM9òÚWÌw9bÎ$x±»ÙõÕÒ‹IG§/vˆMLN×; 2yÛù€ 6;ô6GŠ4iÎ(ð¢Èú{u]¯PQ]_Hù|ØL2C yk†ˆscüMi8ÎJÄ—2몛ŎçOz¨ šÉmm¶‹în0†B!¸w$oè•UÄMaqšYkµ-âwÈÇ5åõ²`H$uõx“Ý'‘Ït.2—snIÜþgó_4Õõ…±—Mð>¹T†IÅ;„nwǶÞËæ&F¼îàì©IàŸˆºÊ-alÑ_¥ébýc槯˜ÖÐ$ŸÆˆús`/³í«ºïKATFfZät†#eø\ãèpìܧÕcþøƒÖ<:¡‚×°Üì°¼ÿæê³†à’\#XÉÉõ9-*VTÕðÏÅ f² ¹\¢lQÈk-³cFŒüq’0q€áû§@~&èmAÃÍ_Y¦µ ©ÇËåÔGŸ†XÏv‘ùt8 …pðîû]ýÕ<Ö² ½ ™ÑÈÂà驈ž.\ty1ògq‡{bÌ\ö·â9ÊËþuÚÅÆÍ=ú"Q%l¦†zpâ¿ñ¿ìà?~í[+ê`€Gº""""""""""""""""›¢"""&wÆ "ñÝë©­–ʪú©™ ñ:Yóðµ­’~D¯¼6’²ŽŸŠöšpd¥ki/Ñ3áæ Ž|u$;®Å§4•<q ú›@?K\$ãbk.%ÒÓÂã’rZîfúc•HDDELåbß6º{¯õ3jÊ)©ESËžWÅ#%on¤³—äò¬ÿòÒRhŠ9ç’®:‘_P$nÁ1|mkvéŠpO]Ïe ШÛâ»Sj­­ôµÎ‰åÖyÜé)öwÈ!„öl‘€Üï:çi §®´·Ë¾õBðúZúXê¡pîÇ´9¿À…÷"".š©›OO,ò26¸ú2V¥µeÉ÷ÝKr¼Èò÷×VKTIêyÞçàG䦯Ù÷¤¿EðÖ뫤s¼ëýg•Ç ¦/cH÷/t¹ùE&‚&ëx㹊. VQ¹À ÇŒIÊKšæ–íˆ{mÙGÏ:ú›ŠÇUÔ²'[tÓ.w}Lp‹û8s³êŸ‘|öDDEüfÞ+5ß´wlu\¨ªŠkƒ˜Ò|§¼á¥Ãl†D_&¨R¶Ín¢³Ú(í6ØOECNÊjh[Ò8ØÐÖ´gÐÖ°'¼FØ´¤î{¯HöT9ÎËxîÔͲðQÖhê<º›ídtÁ¡Ø.‰Ÿ¬ãÓ kO÷‡ª×›É| nN3é•%nw¿¦8KÂkUt3SÛ ¤ª©¥a’®ª~_Öy-ny]ÌâïÄsÑ oqðKÂmÒïRÍCŹŸKÜ^,±M™æÎO4Òµßç8i.9Ü´ä)whµéý'§ÛCk¡·ØíTÏ$Md0Æ;¸ô2w=Ô_ñâoOÕØïºHвí‚j:‹³ætq°ÈÒÃå0 É€OÄ\Ñœlà¡í<·k„VêYê«*Žx#/|Žô “ÕJî xH}ÂÖn|Tšª²áÔÖš9€’=óÍ4˜ 29йØFÞ=جúcŒZŸOéúcKl ­0A •Ò†µ¹øœI;ç©S;€þøEráv˜ÔW=mÆãj†¢¢JšÉ¤i{Ù’yCƒFsØmóWÝÏÃ×ëã,›‡ö¶å¼¿¨|°ÍŽ>ýT'Ö:Nêo®Ð\;·ºŠÐû„vèçÉ7/ x˜——}0ª•2ðƒ‚Úˆ–-U -¥»Ûf–ßW<Ò¾Y*)äæ’7¹Ïß-˜¶á¤ƒ@½nàõm é'áí’8Ü1ÍO†Aò{püÕ‰„ÝAZ.6=A©mÕðUÇWE+¥†vS¹ŽkyÐàÅ“°É;æ?} u/¨ãuæód °SC,…¼ï/•äàzó †Ê;Eœ’Oà½7¨î¶ µ=ÊÙ]=e;¹áž ^ÃìGòè¦o ¸¹Ãþ7Úit—­6§Þéÿè•3.*¢ZZç5ÃT„–‚8-ÆÙỆzv:ªû%®¿ô‹)j£§3×É#[æÂøùy å#Û#°Zætf8-!íw)iØälG毎êA¥8¿¥ïÒ~ jö²a·õr-ßÁÅm<Œõ÷UDDDDDDDDDDC”DN興ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆFèˆ}Y\m®áêY"žh"¤–I¡‡ò·Ëx Ûñû°ÿu›RQ ¨§§ª·j*@ø]‘þ²ÊpÒI?×E’ÇÇÜá½ÎãÀÿ5zʆ:ž‚¸ÑÕó½ÍŽjr!À$á¯u[ ¥žšhª)ÞÙ!•ñ¸tsHÈ?’ìDDïÕp:«{_Ú"¿èkõžvG[nž˱ø˜@Ç¡ÎVð· íw(dŽº†Hžç“Íæ1âV:c–I@þé÷R$HÜà ç¾z¬Uâ³GeÁ;Õ5""|Hji~jË´G–¸:–gvÉ9°ý €ý®¤kYœ3oà¶¥À«KlœÑöÖŒlôÅ×—âtaÎ8õËŽUë¶SÙ:ûAµ=UÛOhÊi9ªiã}eh8c_HÎ <Ž>Ûz¬‘à_K‹'EîXC'¿Ö>¤óä³õQƒþëœ=œ³ê!é×¼½[|¢ÓZn¾ûpv)¨¡28»ÏF°iÎ!£Ü…¸çÄÞ/éÍaHÚÍo=— Z{ÔVú FÛse2rRÉ·ë ZÑÍÍí‰ ?øVãmOhë¬×ÚH)ïÖªxä’X]†Ö1ÎsLŸ°FÌ2F^À8Éq{ØÈÝ#ÜÖ± —8œS• ¼.WKÄÏš_ÔÆçÇ55Pâk‹`™õíô*djKõ›MZ$ºßîT¶ê¶|Ó¿•¹ô§Øn¢æ â§øç{¬Ò¼ ¶¾×¦¿¨«¼Tå8Étƒðm‘È̼Œäï–xÀ]+ÃXÙr˜6ù©\3%Φ!ú¢zˆså|—òwÀ˨~h©¾s” ñý«Jñj“L±Í0X-í½üúŒHÿ§#aþ+ ð“IwÄí=¥^çÁOr­c'’/ÆØ€.°+]‚G\-™pï‡z7‡¶ÁoÒV j‘úÙ€çžcêù]—;¯Bp3°y\_âîá¯ïWÚ§ÔVHÝè)pùä#׳Z;“üz('ÆÎ=êþ%UIM[PË}›1Zé\|¶îp^팮ÆNRܯ“„\â%¶Ú!n³s€û¥ps"#;˜Æ3)Ólõ!NN ð/Cp²½Úi_q¾9¤Iv® tÃ#l` FÓ¾Ã|å”†Ä ƒºÕ«EÃÒ¬5Íó/u`×i\?ÉloÃŽ ²êN éz›$¯|4¶øhekÛÊæM×´ýFrB߯ígáëRÈÎi Ìá¤ÊáÊÌý¢lð¤%®Ôš‡ˆìt¬¢oÜ)%v=D I;ýCšÓ÷ŸE•QÓÃÜaá×€¼Fá¿)®×fPÔØ©é§…ÕôÕ` CØC”~<óc# õ8Rã²Ç~%ooÓÜ Õ÷(¥ò¥ýø#p8!Ò‘ǿơ÷….%Û8i§u?ܬõ—½Y{©§¤´PAy—‘¯åÎ>"9Ÿ¸hÉÀéÔf;µÿ¯0jÞ8^ªhè~Á§hŸåá£~WTÓ’Èrrð@RKNÙ,úrÏOg°Û)m¶úvòÅOMcêp;ž¤õ'r½õD=Q|õõpPÐÔVÔ»’ x,ŽôkA$þAj›‰wé5o/šžOÇr¬’ sÊÂï¿ ÜòYÃÀЉºÞõÄ ÕM-¯OQù-©¨“ËcfŸ#<Çm˜×?¶ßUtøƒñXKj4÷ * Mk‹&¼¹£™ã¡4ô~23èÅG ¥8ƒÅÝC%=†Ž¾óXé<ÊÊʉIdeçwË+Rrz’pp ˜üð£¤4{#ºkaMªïcHÃ÷*w`ä63ýo^² lkJ‘Œ†·”4` l©ÈÕq‘ì†7J󆱥Î>€-@jZãuÔW¯O¾UÍP6ý÷—šÚ´Í6‘áNš°RÑŠSOn‰Õ =픟R^ç¾ÐýV)¬ÚoFÄâ]WRû•NÒ8šXÐ[è\÷ÇXý–eðÁ¤FàŽ·ÉOäÖÖAúF·#s4ÿÝ­-gÉ¡^zçOÓj­xÓ5…­‚éE-!q`w!{HÇ«N=‹>µ=nÔZ—ƒÚ„Im5T³ÓDã‘ÑžIãÇ•®¶'º˜³êµëãò™°ñõòoúû=,06/o×ð¬÷öy¼»U¬ÈË/Õ¨ÌP©WIOWI--U\íú+ϧs#u1–ººBãÊö´ï,]ÚÑ×ñ8 “à†W¥nÕú»JRÚ¯UuÇîÓÊê¿»r7à$ÈÞlœ ¾FÁH¿š¡ÕQP“¹ßø*¬%ãSX;Jp>áKK?—_}‘¶Øvà]+†7À®ì\=V¹ÅC+Éf€³sÖ—ŠI¤á¨u-šži*KäeDîvLÒãúdž†´g•­c|æ^5.»šŸPk&TØtß0—# jë[žŒiü ?¾ï =DòÒjäl4ö7k¦µÛ)Æ"‚`ÝÎ'%Î=ÜâIêI^¾À*‚a[ÜIº6ÇÃÍIy|fVPZjª‹ÁxŽ¿çʵ;§iŸU~·S±¤ºZ¨XÑêKÚó[€s€æ%¹PÄËŸ®|[K§¢˜HÆÏAfˆ»öy¹L€ŠIü¦‚*x#‚òÇ:·`?%Èî6º„>)a¬áOŠ+/í±8ÓܼªâÆa¡òBU€1’èù\Os!*kÛ+©.vÚkCj(êàdðJô‘½¡Ípö ‚ ‡Ú‹–©s´Úzï–Ï8Ysìëš)8M~¦cÙ!¾½Ï“'æ†!‚HüàõXÛŒáÿèú~Ò)®@~ªëBÖÅTÍó‚ìöõÙáÀdãu ª¢"""""" ˆˆ…]DÑSÓÉQ;ÛQ4½ï=Ð2IPˆú‡Pq·Ž”¶:‰ ˆ\[Mi9Úš6<O·O…ÿ=‡U=­4ö»]%¶”Ô²Z9XƆ´mìú‘|·[u¾íošÝt¡¦¯¢¼“SÔÄÙ"‘¾Žk|Ôf⇄º jÛ…÷‡Øªãp{mõSHúpFùŽA—ÆsŒ~!é…ñéÎ4ñ?„ÓGeãV•¹ÕÛYÉWˆš$ d æoÁ.ˆµäõ$•!¸}Ä-¯hf•¿R\0Þi kùfˆmø£?8Î1èJº6ʯeÓY<4Ô²ÔTH"‚&9ò<ôk@É'Ûjß‹z¦m}ÅÞ©loå¸U‘LÜdˆ™ðF>|­j™žh¦µðž´=¯ºÜf©‰¯Û‘k" Á=O–_ÓöǨRo¸Dú¢"øoa‹Ï`$Àá!ؽŸð—*ÚÜB0yšÀ}[Ù}¨¸HFã…R7Kvۺƾ(t|šÛ‚Z‚ÙK¤¯¦‡ïôMh%ÆX~0Ð乡ÍûK}žúæ:Í3rÐu/h–ߢîcyÄ­Ý~øÏ²•©ÝôPoÇÍ›“VÓjwÔ=¯š¨[¢„7á1ÇO¥ÙÇ^i±×¢ìû<ìÿxâ> ¾8Ú C`?ò‚å‡Ô©¾wNØX·Ä7-\+ÓaàÃY¬iû… wQÐÊðCüÎþ!Ÿ ô6©ñÅ:Ú»½}[é|ï¼Þ®®åíg y Z6k[Ó ÂØV’°Z4®›·éÛtvÛ|-‚ž&ÉîârKŽä’NI^¨ÇdD'c¾y‹SiÝ;–ý~¶Z˜ìršÊ¦EÍœãÄg¡éèVÖþ*xgc§w艪ïóò‚ß»Æa‹®0_&1ôFMcª¸ÁâCQyV-?]Sj¥!‘RQü4Tî d™ØiyÆG1Ïî¾sW‡/ Ú_SA«xƒWk¸ÍOiml‡ÏŽ9Oí¼½¸æaÇ)h;îLÊßR5\m…Â Ê ÀÖ:PÓ凜4»dŽƒ*/Ù`ñ]íͼN]d}Î?¾ÍèÝD)9Á1¤ @ä7 ;8ß9&Ps)aÀ~Ø?.럲apšHâ‰òÊöÇ\÷¸à4¤žÁkçÆÏ­zçˆ6º-=pmu–ÏHö2XÛðIQ#ÿZæŸÚo+#ûlVm3«™TÑ9õ”G¹y;©8[ ðåáÃLp⚎ý|…—[Êj%†Ç|BÃûCaÎr샎PHYèlqƒó%WTc ¸ß*‡¡XßÄÝ]Eõ¥D Ùª!qxÏõ€Fqókœ>¡kÓÃí™÷Þ5èËsG07ªy3ÕÄï5ÿð°­¡j ƒ-6ÚRÖÇGI-CÞî€1¥ß–Ë_~êfÖÞ*l÷›Ð5“ÕÕÕÝ'~9yel/{·£¹vù-‰° *ž»wôQóÇŽ•7Î ºù EõZz±•`¿TóåÈ?âiÿ úüë 5OimÕr¶J½?;­ç'.0 :~M<ƒÙ‹}£öù†¯ÒnSåMA=09èæHüž¯_³–¬¿‡ºž€¹§î÷fÈGø“¢Õ–jrl•óÉ_EXÃÝþµJ^o„cfº>à©Å¦¯VÝG§í÷û=Kjm÷ vTSÊ6æc€##¨> îA^ŠË*øðõUš)%¨-£Š•ÄGꇙŽ{‡ö¿VÁòÐ+¯ìç{…ï[E‚úJ;2P}÷?ÅL…dq›ˆö^hÙ¯×W¶Iœ|ª@ü>ªnÍé=‡Ñkžó[«8µÅ'>6:¾ÿ|« Ž0O(Ûaý˜ØÑô ÊØç¸{fᦄ¢Ó6†1Ή¼õµA€>® Ï+»îvç vWš"(£Ä ‹X5EÓôâK¥®j—IJúÊ:pزyÉ(kšCp É=OUŽ$៊K+áºA¨ÝG8”\u ò s‚ bR109q¶z/wKø?Ö5îlš—TY¬Ñç&:U/~瑾ž½Özá‡~hgSV¶Ð/wˆ7ý#twœàìç-Œþ­„„7˜z¬µ0ÁŠ™c£XÐúÏn¿Å;*ŸÍP‘öù¨ãûŠ5¶:K_,õo§uÊ'U]_‹\`Ï,qdŽ!åøkGBT#|¦z IÛ§Éf Ú"ë«øÁfâøé-UÜ. ›Ã0ëÌça  úž€•²±Ô•P6ÁW&=–ñÉY 7‡ AO&yë&£‚ï}æ9ðŒ¨àž™óø“ÒîòË£µ“?-$4 IZ ôÝÃsßð¦‹+ë,5mGûZªAAGW:wˆÎ>MsÑEÿ³ÚØú¾3Ü®"è(,rý°Ù$–&´zîÑ'OE>ß «ÌÕ6jME¦®– þoº\è夛—¨dŒ,qø*ø¹Vè¾8߸uu™‘ËQE$±6L³ït¯9Áï°—Ë)øö°Ò]xhnóù{#E3‹±!/¨†°íå“'Ó”+7ìߎq.µ“ãÑŒcáçýfwõÀSçPúïòU9îºj!Žf>›ÌÉXàzFZ‰Ö6y¬:²ñcš3”ÓÓ=Ÿºc‘ÍÇð_¦j¸+¢U‚rö˜ÞÓ‚[¿mÀ[_ᆫ¥×:°êºIö\¨™,¡‡hæÆ%gͯoÑ\ àù.@»nÛ®lhÛ×Õw`wܪ¢"""""""" ߢa íßÙUtTAçOœG#3–ã©ÿ’ˆƒÑ0¡G kž¡ã®…Ò4ï•”QCJ9€"Yê]¶Ísè¦Óö½+¦múvÍ“Ao°BÌäàw'¹=OÍ}×H«i¬kƒšGÄ2Ÿftûƒ&a7à gAí±¿OR½‘ÓtDTi;ƒÔ*®>[|ß7/.}—$EÅí||×W7#°ßå±XóÄ' )x«Ãº›#$Š µ3E®¥ßìgð¸àÇ…ÞÇ;à(Ëᛜ&¸Öð㈴µT”•/kšc/–Ý)wÇðŒóDwwÞ¤·9Þn[«i.Tõöú¨j©*bl°MÙ#2×4Ž ƒ•ß…C±Ù¤mÕ@O9üDŠWÞ¦ª}Dõ u!¬¦d'‘˜õ'žLì:m•|}fÒúÕÜø—î´ 7ã—ž£'==Ÿâ>¶°è-)Q¨µH†–/‚64eóÊ low}IÀ­vqc]jž1ñ)E%Dõ5¶«]0/ò˜IÃ;¸ì\îýðÄÅðµÀz.Z…öøÈêµ}lX¨æQ0ÿ±ˆúãÎïŒ ºç@‰Ù "`z" ‹æºWÒZíµW*ùÙOII çžWœ5‘°eÎ>ÀVª8Û¬¥×ÜD»ê‰Ž>ùP]ÝË~ZVèDæ$äth$úU²Ÿ ¼5oøi •ôžV ½rÕ\¹¿`gɇm¾÷œå˜÷M÷UMŽÈŠ6}¡•CÁ[tQɆϨi£‘ õ‡ïí–Éb³Î‰òqŽóX"Ì4ú~V:Lì×¾x9F=Ãù+ßíÔF==¤ôœ@b¦ª[”Ç#-ò™å³è|×ÿº©ölYfŽÅ¬µ¬*šªjâcÞñŸþ4’—`«ÕPºŸÍ@ÿTðÇÅ·^SDèé*奻\aÅ…±Ô3mþ ÒOþð¬÷ã"+Ç‚WʃçÏ-ÿF=$˜çs²;rBz¬7övJ#׺¢—qæÚavÌGÿ)M 1ü;mÓܪ;vàôZ÷ñÝ£#Ó|euú–™ñÑj:FÖsr€Ï¼°òLÖ÷'[Î{ÈTy‘í1ÍØ þJb}Úç0j ]PÆ5·*¸à‚ï‚fm¢8÷qî¦(Ïä¹3<ßöõ\Û€¹¢*eÜärü ÍžþЍˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆzevyž_;yÀæ-ÎøõÂäŸ4CÑco‹>©âö’âmSÛ.Š@)ƒ„ïæ…ÄþÏ#ŒŽé’Kzc|…åfÀt]™ÏEáj66‘츖“$½Íhë·Åù€Ì/JÑU÷šV—c˜ÑÀçn»tù/±p{wG_p¹‚È9DDEÆFs4€KOg¡tòº"y‡Ër¢ÇÚ%AbIi«ëiamù÷OC€Fâö¸ÜåÆz}J¼|Õ\jxÆÜ$|Áu©ŠŒ¹ÙÊp=9“ø¬ýÝPî¼|pÔÒÅŦÓÓ½þp†WNÇaŽtÎ#Ûqƒ·ªîð‡Ä .K­µ%ØHú8ìðˆâaÞjŸ8ˆbîæyÏ`×ðW‰WWļGe,ÖUàÈÆ—R[)É?ÙÇ«œq×e38 À½'º6U@ÁsÔ’F[Sv™˜ylmÜFÍ»n{’²¸ÀôUÝ=Ñ """"(Ûãç_9Ã:}C9e~¢¶~^¬£MÇNgr3Ü­~¿/%ßEž¼pÖ¯ZqFŠëUB_§¬R}ê²i#ÌRÌê¡ßbîbFû7~¡l`ÍWªª"!Qƒí™ã†Zn›2Kï99îÚy@ÿ¬U¯öpÛ¤ÿç½íì{X~çIƒ¾8y¯x#Ôf=ýÊÃÞ6¯²^HAÈÁLAþJ‡mù¬O⇆ö¾"ð¾*ªrnÖ¨eªµLÀçHÉC7f -~#챤êàF¡Ø‚®NêÚí®í:¦ŒHE$àÊÆíçDv‘ŸV“õÂÚΞ¯‚åi¦¬§“ÍŽhšö¿÷šæ‡5ß"ÒÕz-Æ%͸'+˜èˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆŠÎÒ:Îkޤ¾i»íV«•º¿È§ ›ž:Ø\Ï2)H'âobå^(ˆˆˆz"(óâ2–÷¥¸Ÿcâ²ýGA h™k’ÙPÆ»–I%&I#cÙÊy°Àߦ{GÝKÆí[eâÆ ÔÚZûQms¥Š–RçÓI(`Ìn;d4€ útSo„ºÖ‡^hš+í$оw1¬­Ž,âÃA{7÷>§¯R®ÔT#!Pò+’ê«§eM;á“ð¸`¥<4”±ÓS°2(ÚÆŽÀ.ÔDT ¨¸ÈKXç4dÑ|ôÕ‘㘠ÇB¾¤TsCšAè°—4,|YºÜì×øƒì1¹¿s©ˆ†ÏC+9˜Oí8ó0F0Y[FØìúcL[ô农S[­Ð6"î;“Ü“’OrIî½…BpµsâµÒ¿Ä&°t‡9¯<˜v~аíòÕÔQS±ò>w¶6DÝÝ#ÉÃ@ÎHU³/ <0¦áw é­³G¾×ÔÝç%Ó´yýØÁå¿ý¢²€UDÊ"""""""£ˆœc¹=–¯¼NëÓÄ+ÝïQÊçÐC/Ü­Í'ad€áýãÌïñ,sf·UÜ«£¤·ÓMUS4‚8!‰…î‘ç8¹8[LàN¢áÇ mºn™²:p Mt¯ ’¢L“覯 vhWÛF3ê}UWÇWu¶QÜi-ÕW X++K…,J$å£.äiÝØœ/°tÝ;"¦vú¨ÃöŠx]§#Îæú’7Úžnýº¯ìç§s4.«®s±×XâвâsòxQ‰5Óën3_ji@2]ï’¶Á电ŸÃ jjÙ‹O[l”Ày6úH©cÒ6ä½,õ8*¨±÷ˆ!ý9àΣÓÌ–(ªKçÓÉ <­–"$nqÐ\g¶z|,j+8ÅÍQ3"‘Özšúa,œ­Ì”ÎŒïýæ³ó]~™G'§©¨Œj˜R¸¸×s0»n§-=zl§é„ÆýOUCÓ$|‚âzõÛ¶Ýz€Iù-_x©Ð5=ã%ÚÜãO÷+›ßu·¶O%<²ÈÂØ´±Íǰ=Ö+[ð-­ÿ¤Ü/ŠÉSP]]aÿR8îè²]¾A„Çòˆz©ÝŽHÁ\†ÄçeØÃ¹"""""""""""ˆˆˆˆˆˆˆˆˆŠŽ!­.9ÀØdª¢"""Š>ëmuU¦8îYz³2Pʺh(êü¶5Ž¢¨dm`çv>6NÚ½óŸŒ7¸YÞ†åGXZÈfi‰³ž dkЖÆWÖˆˆˆˆ¼ýEf¶je’óFÊË}dF*ˆHiír>`ä(+âæ¥Ð³OxÒÖj 4\çâ6*¨ŒâF—° þ°t⩵¼;ê­i¤¸‘dm–ŠîöVÖÃMYHØÖT1ï !üÍÀÇ0<ݽBÙ"""""""â#`w0hÊä¨â =â÷á§”{l¾8i›O–ÁXÂâ÷49œz“î»vØ¿eÙ›ò»>ÎìWiú-Sx‡«ûß5¥H¨ŽpëÅCCãݤ5äÐtE”<hªMMÅÉï÷üÚ}9L*¢ai-ûËÏ,döظ{´Ëa mê€îUQˆˆð‰”Egñ‰š#‡í§:²û ¨qk#k4 ÉŽ0çòí×Ü/wL_ìÚžËOy°Ü!¯ ¨htrÄv¸wiŽázkøÓâ4š…2Zí³˜o„ºŽí81C€g“ýÒ;ƒ =–¹jq$¿Ãs€˜ßg÷ ˜Eg®µÂ'¾†Ðdz£€lãóòÚ÷žÊcƒ×¨è«ºÇxª®××qŠÒI6£­c…ªÝ3HÈܳ£à6hÝ üG™Ä7>¢*òŠŸhÔ®#IÂ×ÇÝ%qnv$B@8ÿü×áÿ’ð¹ÄLéC%¡«žH²ì3î±Ç̽À,SàƒCM¬8ßEx¨€IlÓƒôKßœ†D ~×™‡Œõ¹lw;’2Jä}¨#$e2¨ì9¤9 ´ŒGU¯=c#Å.¤áÄü”vË«nvf¶Wú5L})'a“˜wÛ+ìðq†Í \êëlÔѽÃv84I·ÌFà¶ÒÊzá=‚§(`‡>Äú(Íãë‡mÔ<6‹ZÑÄç\´óÀ›gR<áûw-qc³Ø(zegºÉÚW”TJæÑ_#42´cÿŠ,ÿˆcüKcŒ!À9§˜}F`#uØÃ‘ó\tDDDDDDDDDDODDDDDDDDN興ˆˆŠ„öþJ›çñayšŠÃiÔ6Ê›mîÝO[MQ—#^Ìž\‚0z‚¸ ºá§¬‚ÙOr×UWºž&õO“” eÎÆ\Orsºö rp©Ôe¤oÝUu¸½§ÃØú|ÕݰW!'Ň {®hˆq×CÏN˜ôß+“@v;®¤;—?UC’ÜœŽä²ì‰áÀd‚s…©N-sÿ¥=XÙ$ó\ÛÍ[ ð6&xÎÛvR£ì×l±ÓëNX#1Êê"ùCðæòùÜ Œn]ß±S &É¿ DDDDï„EÆYn–Wµ‘°9Î8 ©'Ña~,øÑZ)òÛíœÚ†ðÌ&™á°F@iøæ ŽŽàô8Q§Zø•â>©©}¶äÛT2`6–Õóß¿»Ï^Ø ÅÒÜâïkYWœª¢ŠQ—\/rAÎñHñ·fž½”ààŸ èxc£…Š–¾[D³êêäŒ0Ë!|-åh 'Ô•}nµÁã[\7Uq¾ãGþm¢Ý1Žvï7N¿¬$gû!bM%ižý©-¶Š~fË_S$eŒç!Ò84Þç'8ÊÚö…ÓT?HZ´Å©˜¤·S¶c˜Äâ=\I'ܯhg$aa®<ñâÏ \tå†_õ•F#§·S‚ñ ÝøL˜É'у.=ðWÁ \¦Ô¿éS‹s~•ÖnlðQIƒÆ— `ÈÑ€øYÛ'q!¿É| TQ?íw.‘Ò9Ù¢¾ “ËßÊú¨íK©E£ÂÂÅOP[Q©5_$±`i©ià‘Ûç ™$‡oÊå/¼2éK¸#OvÕu”6‹…á­®¹TT¼1Ã#1C¾ä±„ü#?ŸŽª6qÃÄž±ÔšÐM¦n•6MºIc£eŽó´¸bIyÄ4mŒ7êIÇ~+k‹†¢uú}OvukÜÒdm[Û‚§`³/ |Wêë$Òj¶7R[C°÷Hàʶzµý×£úãÁLNñJqËúSKÜ…KðÏÛÉ<ý×°î>c ö%]aÀœwP×ÇΟ–Ó¯4‡é ‘¿q—áÆ$‰ÆHÜO|‡þ…ü9]ã±q£IÖÍòtŠÁ®vaiÜßãu³!°Ã{vBOq²®ûmù¡ç ƒ×+ãºÐS]-µvÚø5d‚xÉÙìx-svõj‹ú¿‡œF¼iîc÷ȧ™ÃúèñE&ÛnÒ3އ#²¶ì÷ ›MÞŽëDðʪ*†TBã¾Ç4þ`-±póQRjM1o¼P½Ï¥®¦Ž¦œ‘ŒDö‡5§Ý¹->ૌöü—8IéÕv¢""""""""w(ˆˆº"""""".ü,sƒ\ò<£>Ã*ǰkèÏ—K¨c¦£©lÆ–¦X%ÌQT cÞ0r0]×¾ ¾Xàᑌu9È\•rAv*¨ˆ‰º"Ÿ’tèŸ4DDß>Ȉˆ˜Û ©ø³í…ÁÄûÛËzç š.š—9¸Ã¹GRîT@ÊK˜á‡zö\¤‡”sG UŠNÛãÝq9ßUîY€pvñÙj¿ÄM7Ýxë­¡òùê¥üƒs<»;zç?U"þͺþZÝ_o|‘F$†–F´Ÿ‰å®›§°ÉÚS@tÂ""!ØŒû(cÅ¿ÜO´ë ËLv¶éFÀøžÊ*ºFÉSÉ€IsòZæ¸çv€1¶W“¡¼Të;Mìͨ~ïz´;ñÒr¥ˆm—2MÉÆçÎze½DÎÑúŠÓ«4Õ¢±Õ ›utBXdwv äê¬sÙ;¯Žõt ³Zªn·J¨©(©˜dši†° ¸›ÅÝmÆÝIýáݪvZç-G™3A?­žA´QãON§8†^´í¾(kx…u—QV€ ¡¥.§¡fÀrœbI0AÜ–‚ìY÷Li-¦)ÙÓÖ»[ÐÁ÷ZV1ÄÜOÌ•í¢³x×­aáï oz®NWMIOËIÁó*C"n s¹¤ú48öZ¤®’Jš¹gžWÍxj/Ž£ˆ—±Ô6Y]MA¾¬°s<íÑŒ“oí8ÙSZùv¶Ù-sÜîõÔô4P0¾IæxkZÏSßnŠ/ë¾4^î•§µ|í&¢ç(<±sg,…§p=^rçnv”f4T9ÆÄgÜ&þʨ£‡­!|ÔÜ,¶Ü,´.«ý \êšÆ±Í8 N~øÈ7 o¿OH h®u-u äŽ:˜)jDþD¹1¿v’ÈØ†€}UÓ®ø©u­ò[¶ ºO[Pò\ ݆G×f7£Fý°®¾ð]q9Ì«·Û…¥î<×ZþfBFߣâõ g© ;QøCá°°—Wñ*®K/–Úªy)ÙLÙ9Ìnæ$ ‡/8;÷Û qÿ€z—„,¦¸šæßl<¬(iÌ^T§ö$g3¹Aý—dƒìvVÕw­;v†ãeºTÐUÄG,HXz÷ÇQìr–áçŒ å+#§ÖvZK¼ ¾ªˆŠzŸïÆóì<°¯¾5ë]ÆŽê*-;yk¯ ¥= [DU,|ð×;,çnXOSŒ¨;g¼ÕPÝ ¯¥—’x'eKGG±ááߘ[vŠFJÖËcš×Ôœ®`÷ì«žŠ¿T\\3¶Ê"}¢Ú0TÙ¬ò–y´Ž6Ú×ã¬O%ñdç£_Î;ÿX¡+¿ù©ÃàZ>é¢*4œò8ÔØªsÙæ¦˜¹Àuý™þ WÐŒö@Cqéì»ÚIª¢"""vDDDTkƒ³ƒÐઢ"&ùDDDDDDD@ˆˆˆˆˆˆŠø²³^øsÄÙõe–‘ÔúQ>¤ÄK¢’¨æ F>þ`AÎûà‚0½ñÂáJÚz1p¦’‘¬’Û]8ahÎî‚CíûoE+4ަ´ê{oß-uQJXîIâls¡xê×`‘•ì¢"""+wXkm3¤%¡QÜÙnûü¦WHÇÈð2@ mê­Ý Æ®k;ƒ-¶}BÖWÈq5\/§‘çѼàí€JȈˆˆq—˜0–¸Ê±&╆ݪ_§u 5uš¤Õ}Ú–zˆsQ8å,{sŒä~,+枢 †¹ÔóG(k‹\XàpáÔt>˱3ê>KªF;›rò\c ”'w7|Œu]ˆ¾zâ`uæØ.µí‹}³Ðð©“Ì~yšZz7UDdkXâòs“Øëî'˜nïÝpv1°ÏE­œ‡Ä–±òàl#ïå­n2~ï]õ;ç¾Uéà.²¤qž––'´@ÚZ‰§¾[Y{òÁò[˜úª¢""ÇÜcáâ•CQRKšÅIp¦”Ç4!ß-žÐpy\ëÓ%[ÖO ü¶¶Õ$š\×ÕÛ¹j*ªåq©{H<Ó08Fü‘’ÒÞSÓÙeÊ:ZZ*VRÑÓCMOÃ"…ŒhôlròõeþÕ¥ôõeþõS÷z 8ùæ“”¸œêI }T2Ôº^ø—â4šcMËQlÒôÎýh-Ì4±ž’Ï‚<É[ð·;vý¢e§ x{¦øm¥a°éÚAÀuUK÷š®\`É#º“è:°ÀWjŠˆN0¡OÚÄU{µðþŠ`è­àWWŒÎi´ÿu„»üj(ÚiMU|QóÇ. æ“ð·;dû4-¼k°è-káo4ìÚ¾ûMXê†S3Œû8•Å ”wÎ8ꊺZ6žx­s0˾N Çé³CœFrZwRSFé];£l‘Y4Å¢–×o‹ðÃ1“ûÎqËœïW8’}W´ˆˆ¾ õæÕaµÍt½\imôPŒÉ=DŒoÔ÷öQ÷ŠÞ,´¦©Š‹HQ³RÊàï6¡Òº#À KIyÎ:1ÝD>+ñƒ[qàù¯÷y$§y‚ŠåÓBØk±Æ\K½Jùø]Á½ÄXÅN›³:J/¼}ÝõrÈ#‰ŽÀ.É=p鞪`p“Â~“Ógïڱ̿׶©’B×3õ,˜<®aÈw;†NGáø}I‘tÔñSÓÇKKtÐDÏ.&DÀÖÆÐ0[Œ;m…¨Ë•Ö ×ÕÇ#ÌœÕrHâíòâã’}ÖÈ<4UÓë zP^(a¬§žÚúŠzæ2fÃ#à˃³žaN}T]ñ+á®ç¢jªõN…‚{–—sŒ³R·/žÛÔ‘êø‡guggÆ6¹î\p{¯¥•ÓDá‰Ó¾ãÜcü×+Y¤78cdÏ<’ñÎêFvÏÍmƒ\OÒ:òÃC ¦ýOStŠ–6ÕSI‚^pψˆÏìäð’î²HØ’åòLn÷ "³øË¥ ÖÜ5¼éyšÎk…;¡‚Gˆ¦?Õ¿§gòç¾2µ=]O=%\Ô•P¾ ˆb–7Œ9ŽiÁv ƒ•–ü ëé>5Ûb¨˜ÅEziµÎìì×JG–â=¤ ùw[%´Ôšš&=íåÙŒZâ:}Ô6þ‹º3–ôö\‘ŒŽ¤""""""""""DDDDDDDEñ_m»õ¢¦Ñz ¦¸[ê™É==DañÈ:î¾ô  øñáŽõ¦jê/¼4¦¨»Y7{­-y}U'´|Ù2°vÉæí¾2q ø—¨¸o«ã¯ |Ì 2²ŽPX$hüM{Nàÿ¶5ÃÍ]h×N‹QÙf禩fKâ‰ýØïpUÀ‰ÝÆÞÛ¸¡¢_§k«g·ÌÉ›SGY CÍ5ŧÍ܂܌Žààˆ_yðáÆË]dÐÒØ©®L‹˜ÇUGpŒ 7ÙÍ-p=ðFTåá„Z‚éèuWÿGn…µÙw1óC71îïSë•q¢DT9ì°Š5Ú:Kí$µ0ÔR‡rÊ%sc¦pÜTíÐÆqŸ…§;«[:½ö}y§.חٵ͢’'«Ý)ÆrNïfÍ·1ãu*;".‘­•±œ‚á±ìW5Gã—$UÀò¼lvpz'—ð†—sû˃› 2âÁžãªâ1€ Ï`ºp@Û“¾V·¼lŽ_Z³ûBˆõëþ§·ü6^j¬ünÒRA<‘2{œÓò¼·ž'ÈÐæœvØmì¶¢òˆˆˆˆWÍu¯£¶[ª. ˜é©)ã2M4‡ cGRJ„:ÿVjŒã8ÎÉV¥¾‚åy¸Ó[h)¥©««™±C mˤsŽLO Þè(©©õgh›SY!.§³Nƾ3á-| ç.êyztÏp¥U¦Ùo´Û¡¶Û(ᣤ‡"(!`k3œ:u+ë?ÀTø†ÝÖ¤8—m§³ñRÚ¨üß»PÞ*©¢2‘ÍÊɜќmœ§·k„Õ¾èi欢¸ÖAÀe¦O4üþ)³¶3ùŒì°_|2h ,—lcJ^œ5E¾ù8œæX6î~&–“ÉÙD.*ø|âWਸ\- ºYéÁ|—kŒ±ÆÁûOn˜1¹$`z¬F]Ó~›‚¾ëeÞ²Ý<5“I ±<9å®i±…#¸;âÛUéæClÖQMn=òrVÄ=ŸÒLz?sŸÅ”´Ð|háÆµ²Ï©)âªá´ugȘžÃØŸ‘+!·=ÉUÎç䪺ªalðº' d-nøËÓPÛ¸Ÿ¦·Yë(hõ%+êyØ|–×=µ±ØêÎgIˉèZ°‹ø'lÈöI¹˜öžW4ƒ±…mgƒšª›Yè;>¨‰Ñµ×zVTJƆ9úLÁð$,+׎£ÅrÀ?”«µ0±×ø9ÃÞ#f}K`i¸yf8îtoòj£ÈÀøÆÏÇ`ðà2v]¼áfžá}ªªŽÃQxŸïŽk¦uƯÎvZ kZÞ½†ÿEtDDDDDEC× «ˆ40Öé+‹f¤5mŽ1€u—“â,÷Î1ŽýĨ¥~ñ~á…ÿHVŸ¸ê /ék[åçŠx_€Í !…Ämœ…:øQ«)õÇ,ºž«išg`?ÕÌ>~O è;¢"ÁüSÖw«·´O 4Câ’Ž¥·­AIÖRNÁGn0x­ÒÚ`ÍnÒìÔ7ÇPçRÆð@ý©;þt뺆|Mâ&§×W©nú‚ë-\òòµ­häŠ6ŒòµŒ3ó=I'%YÍŠ¢|9¹a’O@³ç|.q÷QWOp¶o»¾†J‘–åì”du1‡4m]‘”¶à§ô— ¡}\4Ð\/O{‡é ™Ìøãæ¬nv-%e`=Á'uWo¶Wc½Õ ÃÁßäµCÇ`Æ­rÖä¨ëðr?ÖꦇÙùæ yyÞÒ ò¤³p<¸v>ùÏæ¤nÄlN=Êv$€6è¸á®kÁÁk†ÆÅFŸœ£ÕzeºAišVêšzˆÄðÑ4Dk 9iËr^ÒZyŽü Œœ¢‡øÄÌùoÖ‡ÔÚÃn´@ËLr@ÎÆc98ÃÀÉé•[×>ƒÕ}T•“@àà÷`^ë0p£Ä?4+¢¦¦ºÉrµ³ôuÄ™¢}˜ãñÇÓ`×ï’ —ü%ñ' 5¬pR\ë#Ó·‡4AY l/v7ä—¦=‚³Xp Ad{*œž™ =øÁѦëÁ½EP}ö¦ßQúr­ŒºH*@9$·â{ÉÀwO…k½Ã¾AS#ìùÖšßrÐõ• IG8®¡cŸŒÆóË(¾Êvýå1†03î»`ÉÉ\ÇÂ`ªˆˆˆˆˆˆˆˆdDDDDDDDLÍ<5ÍosÑrˆˆˆˆºªê!¤¤šª¡þ\0±ÒHìg• d½‚øôÕòÑ©lt׫  …º©¼ÐÔBìµÃ8>à‚ î ¯G9î¸L×½˜ŽO-ÜÍ$ã;d>£#ê¹¢""*ƒ°GÊAè çŠJGhn4TjK|pÅÍŽºœHH¨Àçïœ;“d’|_éì:ŠûÃYj^iç ¼Ø], ™©åcKÀÇG¹7¡RoêˆFWÈãt’=¬cA.sŽ©%bNh¸F¨ÔÜ\®«uuÇVÌãBç³v·6Cä1§¯ÇaqÏNVŽÄœº‹ñ߇IîGWè©>£ lR‚›XÈÈtAÌ- ½…­å8ÎÃ}²©Âÿšvï4Vcɧî§àŽYòÈçpÀ#qð¿››oo¢ÍÑI ±¶hê!’'·™¯kò=Aî0Ó!¥Ñ´cÍr`|O.ïŒakóís]ÇJ.VòØiÁ õýlÇéÔ¨!–ª¦hãt²M#ccW’@-¸h £W£ms9Ð8ŠvÆ|‡0|% ò p}Á^÷tDDDØ|YqšM5LݤêœoµŽ «–è#wû 0~7ƒ×¨7 ÁÇ)`¢‡‰šžŠSuÏm¶š¦0y˜¼ç ÇU(¶ÏUðÞ/V{4¨¼]¨-дdª¨dMÔ—;ÉcmMâ#„öH¤?ÒAs•„*ßæ'Ài5·‹[ÍÒàl\6Òo’¶W–BùØêª™6Èòéãïó${/ÕÀn3qVéû‰wùlð½ ´Ö8OTÆžF@ÌGöÛÜg+5Ðh.ø{Ñ7e­Õ5´4§Ì¸VIæÕÔ¼Ÿ†6ðÆ\âð5£'8Ê×§5=ÏXëKž§½ÏæÜ.3:YysÊͰÖ7?²Ö†´@¸û=øhÚkmgîQ4ÍWÏEi?mv&“Ó.p °k½T¼í°UB¾;µÎßi·ÏqºVÓÑQS·šj‰ä Ž1œd¸ì;~j>qÅÆ„±Ã,:^–«PÖ|Mdœ¦p@ÙÄŸ‰Ã>€|ÔLâÏ5ÇdšíÝâÜgó¢·SŽJxˆØmÕØüD‘׺ƒO,òáÎ$ú«·† QñTSiý=Féæ‘ÍT:7iZA<ò8Ê0=NÊ}ðÇþ„Ñ5ÔWº¶éWC?w’¢1´íÉ}F7<îqØCCZL¬Ä2FFø=2£Ï¼Piý|}—OÚãÔ5ÒòUÏ÷¯*pæ5Á®.p?Ouyp{ŽÚ+‰/e$ò[/Ng0·Õ¹¡Òzùn?|uÆN6+*Êl:gçŒ.$åãæ¥8­Têþ&êš×`š‹Õd„އ38©±öx‘þ„.qye®‹PÎp10SœûìGU$›†³˜äo’¹›ŸR­-iÄ]£.”ÝQ¨)mu¹ôí”;â â õ8 èŠX¦‰’ÆöKæcÚr×´Œ‚BTš8äðM$†V–:7€Zæ‘‚èA :qÂ^ŒÕ•]4tìÒW'núx ç¡”ÿîÆ<¯ðü?ÙʇQá6ºá­g‘ª¬’AL÷†Ãp‡õ”²œdÈ6Ï_„àíÑXÎkÚÐs·¨]TÉ ÁiǯºÍ<ñ ­xw,tm«ý-ekM¶²W9‘³ê]¹ˆû‡Õ¤î¦÷8Ñ£8—LÈíŸt»sIl©p ’ÎÒ¾íéÀW¥öš–¢Î©§e@tnÑ<ǵäW #8Îv•©}ef›×ZƒNÇ;çŽÕs¨¡l¯n ÄR¹Äv'•z#ÖUea}Ä"ðmôôRË<ôm˜@h*s$5N$†˜Üz8ànÂ3Ô…&x}â†Ú¡ÑÒÖÝ[§n~S]-5Ô}Ý­qêÑ#°Òs¶ ö .‡1¯cƒšáFà\¨ öŠCã%ªVÌë|ÛŒœK&øúÿtÕk­wª;œd i'Ž¡™€Xàî÷mG‚1xS§A1sËH'Æâæ—H\÷I=K‰þJòÀÎ00ªpžXág<®åo0nqÜœâW,’@Áùª¢À^$üAÛ4 ]ƒLTÁYªCÌÎxhò7æ9Áda»õßÑB½/¬©Çhõ^¥ónòCpeu@–§•õk¹3·êB2ø±×··ºŸIèÛyå"& x'®xsÎ#f$‚ŸÅ¿ZÏ*Šùf¤$ñGh ߩݳãóù/¾Ïá'Xß+r×:ê’©@çu#µÎ¹«”•’X-1M;g1Ï-? ’Q‡? 8Ù¹ÆÛ°Õ}H\ ² é¾Jé´]k(kતžH§§‘“C#‡1íp-p=ˆ ­§ðZÿYª8O¦5 ¨UU×Ûã–¢_,3žLaÇ”l7•áøO^¾ê„0;ûöZ‰ÖÛX^rNHÔnOþÕÊo}ž<¾<Ìpu€3=?Õ©÷úÿ’’à9œÝ— ê!§‚Içš8a‰…òÈ÷¶6’ç°o’µ±âsŠ?é3Š“×ч6Íni¢¶0_'šC¶~3¾Aê½^x„Õ|:h¶ó¶ïcç'îO?ªÏ6|§³ÜäŒwØg*Wpóħ 5\6²âí7[!År>Ó€wr¬Áoª¦¸ÐÅ[EY e$ÌçŠzyŒ‘§¡k†Ä{‚¹ÖRÓÖRËGUU4Ó4²XfŒ9iêÒ0BÂïŸ õ)žzmV›¬—.ó-³võNËöhjŠ|iðϯ¸~f¹[éß©l ƶŠ#æDÑÞX·sq¾\9›’BÂ!§#’ômJª ¢žšya–‡Å$o-{:‘¸#Ô)-ÁïžËÍh¡¡ mIsYWFÀóô“~/ˆ÷%c_ðé›·­tmHªµ_`mUKD|¦ªÇ,¢FþÉ{€“9!ÅîÁ8X„ÖÀ|q=MÃs¤+j9®šs c]ÕôŽ?«#Ô4å¾Ã•ITDLï„DAÑ¢""""m” ¨ˆˆˆˆˆˆòˆˆˆˆˆˆˆˆŠÀñ_MCÁÝDʘ*ê m´PGJÎyLұ͌´w!Ä;Øw¶ü×ørÓRVÈjL4Xþñ&ç“õY)ñsFêÏú°2'Jøiã¨kGö&c‰ù` <)Ü#·ø‹ÑÕ.8l•rSç|Ø$`þ. e¨Óc·Ugñ‹AZx“ kôµÕŒi•¾eAn]KPÐ|¹[ß œuipèJ‡¾8zàŸîÅ´Ì#`+y±·ÂÑû ¬¼ˆ‡¢âö5í,xk†# ¬3ÇŽÒqO:’ÃrŽÅX*P9àó`sšzc9¾íü”JñÀc K.–ëUÒåjóÖ×@á<19»äòülhd½ {•ôgµF™t¡5ÖÒ䥪{#;ó³<§qÜw]\Pâ â%Ö–ã¨î¤*é©þîÙ #w&K±†:“ÛºµÞwrŒå¹[Nðé^ë§tmkù‹Ÿi…®.“vŽSé¶Þ£_ÝñÕWè‡88ê¾jXæ–I\ó+ƒù\vfÀ`{l¾’*™Á¹ÜöQÄW‰:D7 +¡%ûÅÄ´Á-Þ7*œî";ó¸tæêBˆ~Ïr×zª?C#d¹×¹þG0k^ññ¹Ï{ŽÛ8“ž‡©*bðÃþ§ÒΧv¶®Ò7;|mÿ 3*¤kšN9g•Íðlz©%Á!§°ÄÆò²8ÛÊÖ`:.Áé”ÀN¿Ì*Ž‹xˆâ$\4áÂûŒ9‡Ý­¬p5•Ø=CwqùcºÕ½dÓÔTÉ4Ò¾i$.t’=ÅÎsŽîq'rNI%lWÁOcÐü$¥ºÖÓ6;Ö¢ ­¨.fÈHýL~»4óêò;,˨¯–}9j–íºÑÚè"Ç=ETÂ6z ž¤ônNÁFž(øÀ²[_%„µ:êðK~ÿ\ $`îÈÿ»‹—ºˆÜFâ&ª×—?Ò:’õSr•®yˆHìG62#gá`Øt·Ê³K¥”ãw®žhO¯¯±ÙôÍžªã)‘šX£&PòG<¯ü,nÇ©ßR›Dø.Ž*¶M¬5ˆšŸŠ–Õivço5ý6þÊ’<6áÖá;J-c†„ÔrЉ‹œù§ l^÷Os€$àjñcÄxy,öúº÷^/P’AoÃ݇i_žVõ—{(‹ÆšÛ\¾¦Ûo©uŠÅ.ZÚ:Gaò0ö–Q»²:×b°Ì4ÕÕ4þt>F¶&µƒ$¼…¡½I8ì¥áç„K˜µš¾õE,K/ú¥ ß™Ër ¥¿ \@Î8YK^xq³\sʵùp·×Ú.óÛ.”“QVÒJèª ™…‰ãb;‚0¶'à—RÓêZ(ãdËe’J ˜ÙyyÚâ09rïÐý3Û¢§1/wÂÔN²{]«oO<× ÈÇLyŽSìá¾:m#«´ß#Z(ëà¯c‡âwŸßAä7óR‚ùz´XmÒ]/wJ UdÕVT6šOAÌâO¢Ž¾>8W¦4M¶Ë4U:ƒÕrÇ–ƒJчGÍý¢àc¼/°iO¨æk,~ït–HùÚÚZI$æipg6@Æ9Ž3œl}÷7‡~-Rè­eY¦M(ó]C$£ï¦ 2é| 2î ïËÖ.‚YcŒ=ŽÃIÛ®êèÐüCÕ&ã÷­7{¬µÊ]Ìï"L2Oï°ü/ÞI^øÁªEI­lQUFNYn"9;ncqå=öv褯¸•¡õÝG²(˜Æ—½ÏvØnâW؈ˆ‹x™¦­«àµ†€0µK#³Þ6aò£öå®ÞÜc´ñWH݈w•K{¢šFã'“Î`pÇ® [WDEB£OŽ Ëªì¿éLÒ‡ßmTåµôíÖR4H|R3|w-Èß çðSƯé-®jœû¥?ù®¥Ç&ª ãwöØÑ±îÑêÓ™> "*lF=VñYÂøx‰ 5c†ûgæ«¢©x9i/…ç¯+†q±Ã€÷Z÷¦«š_*v8Ç0å{Ó‡4‚sí…4x}ÅŽ qO‡4:kBš*]]<»ÕÚ¹ÿª¥€3FåòHAr–¸œe¥dž pWOpúSz©ž[ö¬œ8Õ^+2é9ø„`ç„îãÜöYSè¨V4½ðƒ·hçmW¬±™Ž\êX1û&2Þ_¦ñOŠ.q ´6ªÇTZn:z(ä$Ë @±ç¾ Øúc+Ó¼yÅÎmÖÓ<5RÖQpFÒW‡ ˆíqó4·4ä´}…‘ 㧨U¼­U¨lºZÅS|Ô-ÖêfóK4¤ãØ7sf€I;T"ñâVë¬ «°éÑ-¢Å&cQTÍÁ9§ ivìIV8®ø¯,uÒÇ&ŸÓNuʪúÖãa<ÍöæÈhß|Œ¯Â~ð·OYÝ-Ï küꆂ0C]€Îy@ÎOe’ÑPç;*슋_8øŽí[ÄÙô½í}¯N9Ô­å;>«o9ß6ŸÕÿ…Þ«£ÁÿíúÎíS®u‰‚a:O½9­†®váÅ.ø|¦Œçc:³/ü\Ù­rMláí,WIXâÇܪšáz-›ã÷ަF ˆœAâªÖ·g]5æ®á0Ï—æ¼ùq‚F[? N€tß*Ð|¯s1ʼxWÃ-eÄ›¬Öý%i5ŽœõHñ0‚/;ÎÀœSù•.¸}àÛJÛ¹*5}ò®õ3\iéQ€/È=\A ´ï¾ÒZÉi¶Ù¨#·YíÔ¶úHXÈiã h ÀýV7âǸ}ÃÏ:޶çúVóA¶ÛÈ‘ìw¤¯_'l†•øÅâo]k35¾ÝSý´8¹¦–‚G6IIÚIvqÛ®ËùÓTKÌy°Z Üã 6hzÒïP¸QMEx4–ŠÖ÷FÉs#d,’bçAnïíÈRÏ‚üÓ|=žz§½—Z¦ÊÏ»Í4`9  —¶<娯0z•™ Š8`d1Š6†µ­4 €Âäâ88X¯Œ\ÐR¸Ar¿ÑÕÑÝ£hŒ×P¼G$¬&A±# mœ+cÃ4<=Ñ:—Rð¯GÖÜîµÖüVÜ®E’H b1ÆÑ˜ A8êzœ…ž\O'A’ ¼;õ!jW€5UØ4a¢¾~POA攨û8^ó¨5£[¢£.Ãh>Loõ?÷ 6øÐ¶Åqðí¨e‘‘JêSÔ³›#•Í•­ÈÇ|8…/·;žJé.7è±4³H_7ÝØyX œsÈÒKFøDzØG„ m}¯Ã†¥®c¢’H&©`ôŠiä–3Ÿv=§ê²ÀËHÇæ°ü2é}]%óNÔC¦o’ƒçyTàÒÕ<œóHÆà‡œœ¸uêAQ7Œ<âCë.v¶Ü¬¬nJÛC¥ž¾`Ç4x$ ¸ú±3‹Æ\Òzí…÷Û/5ô3Å==L±M¹™$n-{bÜp¤7 |Uk="Òq'F iìµu¢¨:>–êÞbîRÀ‰ùË}ùšqðæSx|âô;.q†ÓݨùaºRÿêåÆÏoö‚G¦ã¨+$å7™¸#'ø(%ã„Ñš’]m`·´ÝÊF¶¡±¿"ž©îq?#޹#$ ².à¶¿¯á§¨u-'<”Ãý^ºF&¦{›Îߘåà-›Ûk)®4õôU ¨¥©²Ã+NÏa~kéDDDEÅÃá*}¢sÆþ)Ú)[!.ŠÛæ=¥¸¹Ø=öbŒ‘ óg÷JÚ¯‡Úˆj8G`0U ˜ÙLÖµüÙ$c#˜vvêþ ª„…cqoŠš?†v¯½jJó÷™ZïºÑ@Òù§ tlÑý§=ó²×ç8Ó©8§yU»îVÊwGn…äÇÉø‰Ûäc.ÇȲÌ~<2~›¥¥ÖÜL¤Q<‰h,Ò´´Î6"Y»†žÌî7;lfµ<1SÃDÈ¢¡Œ­h°v]‰ÓdTÎãÑUtÖLÚjIª’£sË"g3Ýœ5£rO`£^©ñ{¢?¢÷)tå®ûú`BöѶ²š6Gæg”bG¸ÆvÂw ªŠšéªªf’YæÉ,9sÞã—8žä’Jºõ/·='lÒQU¾žÃlo-=?$óÑøÞ\IævNý•,¯{¹œòOª©syOš”žü,Õjh)ugcžßd•¢J[[IeEX9Ãä;ÙÐøŸÙ&jém5`ÒÖjÓvZE9“Ȥ„F×<õqÇS°Üú{+7Œ¡¥G¿³¶††çE¯Ù_o¤¬†VÐBæO^×1ÞqspÁiÀ$tè®Î8øˆ²ð£<8ж¶Ip³RGD$ÅôôA°·Ëcw.‘ÍiæèFNT}©ñMÅÉËIÔž^]ˆ©bnsØü==–FáO‹ëÄW:ZM{OM]@÷69ªà‹Êš\˜@Èp’F8ØöS>–ZzºHªi%Žzjˆ„‘ÈÃÌÉXà>àæ°×¼6pû^Ñ>[}>—½ŽwEYo­ŽG8çõÑ Œçqƒ¿^Ê!qÃg´”“Ê4Ô—º¿ô»Kþð1Ï—´ƒfœü8î$š–z:ÇÒTC5=Dnå|R´±ì>„Âú)®4s±ñÈö89®kˆ!ÀìAº”~üM\íÕ”šc^ÖšëKÞ#ŠåQ!tÔ€ì Üw{êNàwÀS^9"š6IÙ$OhsÓÌÒ6 Ž ¬QÅXt½â5¿…¦ÇOržkD×#QƒçÑŽpÆr= ˜ó‡’Ãv9Q+ÄW‡‹§ (Ý©-WhîšYÒ²iäk*©ÞîÍØ&ÔFÀ×çÜà¨Y ô^Vª±Úõ.ž¯°^iYUn¯ÐO‡V‘ÔzpAì@*@5/…þ;ys6¦¶Ï+ ŠA†¶çE×À‘‡bB3ÑÀ™é¦o–ÍG`¢¾Yê™UCY–XààGpH$dAØ‚£•^‰Ð"ø/”—;]M¾¾ž9èêc1OØÓ×bµyÄ­+W¡uÅËH×%üÊöùð‘˜äÇö›ƒóÊ”>x¦Úˆ$áꤢk!wW0éaÏ«p^ßQÏÓ”fX¢ Ït^6¥Ô4v ìì¯!±Ý. ·Æüô•íq`ú–òüÈ^Ê..ÜoÑ@?´NœÃÅÛLÄ‚Ùí-s}@=»ýZTj‹”ËŒÆËe¾ +'¯àEª¦h4Ì…i‘„0ú甜·Y” ò$$zn£×ˆßvm÷‹”u5ßQ1¤M&y©èŽ6Ç'öFÃö±ÐÁ+í÷RkmLꊹën×Zéz%™äìÖ¹ô)“ágÃ%6›ŠYqš:›Û€š’×#C£¢Ît™üRN÷=%CG|*ŽŠ©º"¢<`ð}=5óŠ•3íU5‚¢²Úè¼·ÓºBžÇgç8À#›¾N”óÈç7$ì¸/FÁfº_nÛlÖÊËl®”Ô°:IôhÊšÞü.Å`žŸVq*ž–²èÎY(­ÜñR8n1Ï+Þ?te£É=%%}TT455õ.ý]<.–RÑ“†·'¹ÀP§Œ.¯7›i·èK|¶ j†;ž²¡Áõd‡(n[Ç9ËŽÝB‹wK¥mÖ¶Jºº‰§¨™ÅÒK#ËÞóêIÜŸšùâŠzŠ¨à§ŠI§{¹\çØ¹R¿€>ª®”´š‰’Ô[©žï2+måžFäcÏû0@?Ø#%¤¦]¢ÙAh¶SZíTpQPÓFØ §…¼¬c äëép¨Àp£ï‹þ3 §Ý¤´õLnÔ:rÉåÔ08c› ü/p?z ŸE¯w½îÇ3³€F½ÍÎFF©k¨<¥Ùø°Iô=–Å<"êšÍCÀdõÏ‘ÓÚÌôi$ç26/ÂOLa¤ {uP/†úºã£5å»Y[KYo¨|á®ü25ÁÍ{O³šçªÙ­V·ÓýI«/7zKM²®–*¦:¦P‰Ì7sºì2N2±„þ)x[ŰDëíD^hŒTG@xw7Ň’™±—ã¦p¾ˆˆˆˆˆˆ… €쪩ž‡ÎUGDDDDDDEÂYDxÈ$žÊ±»œg”šäˆˆˆ‰Ý[œæ2;ù¤<»‘Œ8åv'tCžÀ ÏtDQÏÇž†«Ôœ/§ÔvÊHdªÓÒ¾¢¢GJñL[úÀ2>-ÃN2:eaïÜNNêúz¯e5ªòÐúWL@k*Ænsðó½ÈºnqksÈ\r¹g= »ü¶XãÄ/ )8¡Ãª«3„q]©Á©µT3àlÜökÿ ¾yìrðeÄšý)­¦áfª}E,uSË <ýε¯!ñ{véÍóSUD7T'FGÍFO<)›Qéú}uc¦cîVv<×µ®Ãæ£k\âïí:26Úçz t½ú³Mê }öÓ1emì©í?´ÓߨŒ‘+hü>ÔôÏEÚõ=µÙ§¸S¶PÞìwG4û‡>‹ß~ëøì¤­—‚ܨgš -wŠJ§KË]æ,w{=•ÿÀ vÞ#p¢Ë©žæýùðù-K>6Ž`à¯Ò¨zt÷Pí ••Q³8<>F[¸ÀmD˜ß¿R£]+e0½Äà4u'°ëi¾¬”ús…¶ë=4µAM$­ŒT–ù±‚âyÊæÁù{«úª¢Zyjjf†"i|’HðÖ±£©q;¡‰¿“\Ef”áåS©íí>]Eâ) dªÝ‘ F]¹wl Ýìöë¾¥½ÓÚ-4u7 ê©9"‚—¾GØ2~ka>õ®Þ)äŽå tä¢\ó¸[ãŽMúžv€à}ÁPׯ'‡û?(éµ–¨t6Jº¶ÑÍn™î{©¥,%¦7¸’æGdÁÆ áÈgÂÅúSZÛKKO~mDR¾£$ÍQNAeާïn¥Ó6Àeâq ïŸÐ×ëÔÓÅ(-µïn@äÄdwßwèµçó1‘ç ÂÏþ¼5MÄ-+¶¿jºK.ódÈŽ2ùÞÈŸË'3œZȆ°ì»Ü,Á~Yc¥áE‡O]u@—U‚ S ¥˜¸¼“ͳwÁ$Žø’W7VNëÕ#¢dœÿw4yNöN®}Ô³ðñÅ»´¼õ&Q_-îk.Tq’XÞlòK?°àÓ±ÉiìMù©îÑX´íÎûTÞh-´rÕHÜ€\ØØ]®0µK®5ÏSÞëo÷‰ßQ]r˜Ï9ã͆Hêa,‘™üFGuvéÎñ¿†¼U‡Ni·ÉSK<ù.”Ïsh%¥ÉÕà ph9açð—lV?áý;ÝáOŠULª4ñ~“´€Àw›8·wmÚ±^‘Ó—ÍY¨)l:vÛQq¹U;–(!nIîIìä€ê®z¾븵M>‚ÅWYS=GÝãš$òüd€÷4 †IöeÊ¿¼EŠÄk ¹Z§® æû˜´“û¡Çlüð<ܯ>ãÔÚ[PPWQOr¡©¡}$¬å.ž/Ö³ ð=£}̃ÕN;åòÝ`Ó•7ûÔÿr¡¥ƒÏ©|¬<Ì`ÆÄ7;ïŒ îµƒÆ~ ×ë®%Þµ3¥‘±TT¹”¬;r@ÂMǯ(÷%Z?¤ê‹¹¹É#~ªéÐzŽ_Ò¿¢j*ÝKIwc­Õ²Ì<©~bÜü\¤‡BÝ·^÷‡îIª8ýoÑ:ŽÃ L®»SÊ!°d¾3‚î™íœ­šPSÓRQÃKIpSAb†&7 ckG °_ŽûE·€5,‚ªHM]ÊšÁŽ#ÌoÄç4ï¸<¿ÁBÏÕL¥ãÖˆžzzÖ¾÷MŠa–ƒ#Äaû÷apx÷h[E¦oê†\I=Îù_tdŒ.Hˆˆˆˆˆˆˆˆ˜ÈßPü“䪈ˆˆˆˆˆ‹‰h/Éß:*çUß>Ȉˆˆˆˆˆ‹‹£iß•¹ù/MP_(®w£t­†ªŠj±%°µï2G cs€íþlœ´Œîºˆˆˆ¾k¥ %ÎÙUm¸S²¢Ž®ÁQ ÿ ‘½¥®iö µ½â[„u<$ÖQACS%]–âÉ&¡•Ѹ˜Ca{º5¼»íž¸Y_Ã߉ú«%=>œâÞ.öÅOq¡ÓÓ· (ÏÆÀ;Œ¸z;lL-={³êT7[ÆšáE3C™4iϯ¡ö;…è*›¹AÌO°P;ƽ‚]%â‡TÙÁ£uÚ’*öL̓k!w#œLá°¸ú’ISS‡Zš¯BXµ4a­K|5NcNyöæ|Úì¢÷Ó²zguBºæc^ÎWáÍ;FAù…¬ï:ú‹wKe4lmº¥î¬·ù{Â÷Ÿƒ‹\ßRìôÕÆ¦Ë¨´ET€IG;nTm$äÅ ”Ø5ìaùÊ¥z"+ ÄEˆê^kC!|òÉjšX#`øŸ,CÍŒræ5EOCuŸˆhÊÊ–¶Û~Œ¾•®8 ªcAÛnfr֩Ш_?hmÜ]¶ÒÓ=¯¨¦µb§•Ψ™àwå!aÞPÃwâÆ‘µÕBe§«¾QÃ3Ç; Íû-„psUÛ­\#ºë=Ot‚d¼Üjªç3 ?ÖÆàùÀÜtõˆ^$<9áÌspÜo±Û}²¡ï8}Y­8MÆ]÷¡n¸W_[$šׯñ+šÜò´–€HÎÛ8ßßðÀíGÃËÍûRjØ[Kvøí´ñ¼;š0ZçÎ?eØh³…((#j9¥–Gm³HÃ[ò÷꽈øßÃÈ®7-7­¬Ðò^,7êZçò7y¡óffÃ$¹¼¿îû¬Kö‡k™mšbÑ h¦–).rêÒ×ãšÉlq:‚ÿ‹çëÚÙ­•÷›œÛe,µuu Š(š\çسG…¾.祻ºË,ü4‚qç¼o’ŒƒbAÝcm/£¯}qýt&Šéål°Ô‡1Ѿ&¹ÏaÀ$;á#çÜ-€i«] ªÐwqOE&±¼ùÔ—»Ã)yd®‚’Íœ“ËÌá\7$7|af¦±­9hm÷ÙE/´z³—Ié `qÍE|ó–ƒû‘µ¿üµ¸yx‡Oëí9~•Ÿ«µÝ©k=[ÌyþKmQµÄ“ƒ“軇°Á\½ÕSº"ãËsØî7ì¹""""""""DDDDDDˆˆˆ~hˆˆ‰ßª""""/ ]é{V³Òw 3{ŠGÐ×DcyÁ²0žŽa9ÃÜmù”ã'‡][Ãù ¨µÉQ©hjgtQ>މþd`þ0G7^›l=p,]­µ—¯ÓEÖºË[¹*aÀÁ-ý™#p-8÷ JpÛÅÀ{òÊÇ5¿|µ4ƒŒ¹ñ=ݰ2Zîû5H-!Ä­«)ü룢©ÌcÚ\csñ–°‡‡Nªëæ¡ÁÀƒÓåUã#b{ª€ÊŒ¿h&ž5ºNjfFmWSÊ{ˆêåÏc꽿Ú–+¯]§²Qa®–23’覑ұÇêéòb‘¯ÉQÁE_Új»E»ˆvèÜóAŠ›A Ü<©}¹^yrÞÍXÂ^¡~žãþ™s¤’8k¥’ß0k°&a õ`c¾m dc¦è‰õTv:z­R^`®áÏ®4vÙÞê½3z‘”sJÝÞêyÉÄzF“ê Ú&‰¿Òj­!hÔ”8÷:8ª˜ÐînNv‚ZO¨$ƒî¬âGMÖ¶ün68øß2?ö­G#Øæ¹Ž-sNZZpAÏU·Í!quçJYïÅß~ ‚§.o)<ñµÙ-è:ô Ããô‡¦·Ôߦ¹ÑÖQ¸5•T5w•¾cåxs$ç˜79¶Bìो…ºoKÕÕè+\”tUÒV×Éûħ%²—È´œ @Ö絺·ˆ7ÝG,æs__,Íyo.X\y6íð†ì­µÛN@wÄ2Vð³#áñ¢çk¹ ®^}C£{Hÿ%0aŒäaFœ<ƒWhƒ¬èêÛOrÓ1I+Úæ¹Íž˜€\Ñ€pàà=0]žØ½<$PAlðó¤ü—ÈóQ•r9磤•Äìãäb6ë6¾?+y‰ÁÝNs^½úðÍKWGÀM_à–Ö¸±Ã5ÎqnÞí ¬ŠÓ‡´QЪž3Ó ./k*8‰ ‚ÿZÆç®ïYÀÃîê]a"–zû\l¦›«¿GÊÐiôýZ{˜e¹ïû;´[ªµ-ÛZ\(À¦¤´ô2ÊßÇ+‰æ,Ï^P0O©ÕNB;‚±~£á-š}Y6°¦‹Í¼ÉTùÏåLO§HƆϒֻ.$ƒœ2 ¯£.´ŽñC¦ÌÒ:¢Ïc¸ÆØÝ>9¤¢”»¦Ûs dþu›ýÎÛnª†hÅPŸFÒ‘ý]Tvø¤Œtÿ ‰’t;w[†–BdÀ±à8PFWxûª€GS•TDTh6¢ª"""" ÷(ˆ‡¦Èˆˆˆˆˆˆ‰Ý;lˆˆˆˆˆŠ˜ïÑbÎ$ð‡ZÙ— êl±Ð]+Ü%ÊŒ8xs\Hæ »”@ÉŒ¬®|_¨§tÚ#SAp§É" Ÿêåh $f79g¯l,wpàw4ñŽS¤«j£óƒù­Õ •Ísð0ë±Çªôô×ø¿ÃzhíÕQß ¦§!Cv¶ÊèX¯~NœªxŽˆ©ïþj¿T9ÇUâk»>¥Ñ—«TM–+ÔÎiþÓæ ÕΜ¬©°êËEÁ¯1ÖP\ {ˆý—Ç(æëî ÛNw ª¢* ׎=:ë®dºX+¢ÇBàß*OâÌÿ‰gŸºÌ^4ÇIOQÍ=š KN×þï.N°x椫·ÁÏqüÖ±¼^=Ç7Ø;çùlkÜIÛ—8èHú,HÓƒ•yðA]ø“®(4¥¡…¯©>eMAn[MOÇ+½†p=I© jZzÕCc²ÐYmв* hé©ØÝ¹XÆò^ˆUî‰ÙPÀUTÝ=S(Š5ý¢mwú¶îú‰.:bÕ4Õ'šjLÖNçŽóÁ÷+k :BýYYrµÝ¯Úê©$Ÿy¨5Ѹ‡ã™s s°7>òÇpYxñÀ¨ªç ¤§ÕzfNWÔÁ=LlcG)Y"Fa˜h òŒƒ…¬W÷é}{C¨,­<Ö›€ª¦a1-cò#q÷oÂvî¶“¦îÔ7ë ¾ùl—Í¡¸ÓGUNþ…ѽ¡Í$v8=¡òDB¨Nà-]ñÂ1nâÖ°…¡­4ך®PÆàÖ§E³Ë[Ý%º–Içt,'2Z _J"t )}¢ÚhUh½9«"`/·V¾ŽgsÉ3y›Ÿ`èÇÕÊ>xPÖnÑ\m°TM0ކºoѵ„¿•¾\ØkKL6O-Ù=è¶[ÌâÀoÜ­VøŽ¨5nÕŸØ"¸>µãœtôÙcÅ;~Ï} ³CVñ±ƒï·©]GFí¾ X‡è](p ö‰¸î¥KAw÷\‘tÒI4±½ÓÁä‘#šÖó–‚@wÔoõ]ȈºÜòNÀ㺯3Z Êâ_Ì6ü×(ÉvsØ®j.ý£un…º~ƒ 6{טF2~$Çýe$¸cò[YðûVÚÎèiÛ’‚Ž3îYX‹J¾Iø†7Zÿàwê~7ñËh‚ oÕ–;Ý;eÃ[癘öätÜ´ tßÐ/¯Áß 5â½Æ]Q¥®vê;u¾hå–²Ñ4N^Ʊ­'gž~Œ}ç}5,MÈ‚##ÀóÈ9Ÿ€IÆû,âOýŸ‰_lU0Xõ3æÈa抵¡»5àÊð@ÃÇl‚ØŽž´=ö—Äõºßy¶š› U•‘Te®å 1µÑçñ‚ùA`ål ËkœÞ`Fzƒê?5ȽÝ€~?tø±ñŽ–ûKŽõ¹’ÊÜÏäqÇo‡Ëé×u(®µ4µõ0O$RÂö¾'±å®cÈp#pG¨SÛÁG¯zë‡w +üÒÖÕØê› k¦òËQÏîq$¸n3ž˜ôYì´–Ùé•®OöáGâQÆÆ:!(§œ‚îb âÓo’šÞ$ø|Ñ. c@µµ¸nqâ?=–G-µôÙk§ÆÍé|Fj ³jࣨ`ÿõvFŒeyÞjþéâ#HÉ+œÑ-D°‚Þåмùál†ª!-3à9V–žýA¾j*ýQízò!!sc­¤ˆe¼§ál£˜ŽÙôWŒ¾ \¸™§¨õ›{¥¿Yb‘¬¢s¶«„üE­ÿÚ2;‘è 0¶WÓÝf¨¶VEqù ¤};ÄÞiÙ­äÇ71$1ÝmÚÖú¹­ôÒÜ)Ùd±ÓÄÇó69 AsAîÈÊîg$ª8 †‘œìrµ…Ç=k¬ëõmÇMê›ÕEi²Ü*©ãˆòˆã"B pæ98î¬ý}¹Xõ îÕVi.R‰©åh±ã¾ÇäVɸ_ª­KЖY £}`ˆS×Ä:Á8hóŽÀç#±+'PRÅŠ Hl¥¬ji)Csàm #CprVÐX03²Np¿<.êš.&ÇGËxªÓ·nzˆ¥žPÆ[~(¤qÉ-ŽS»ˆÛr 6g‰ýþZ4&¨¸¶á[Mm\­Íšfå¬g”r`¹Á;g Ň3Ëq궃á¢â.ÜÑmy%¢r]×1(ÿÔY ùª¢"""""""""""""""Tù5^êžê¨ˆqú"""""""`g=Ñ¢*`zŸÍ*¡¾ê‡=º®'<¤ãPTñç¤Í«Š4Z¦–ÞøéoTcï<ĵõQN\tËk¾¦ù—Àæ­}˃‘Yë'kÿDV¾’å±7]#|9ê6õ –zFÉ ?ôfІ;ÌèvËCvÇãZé‰Ò2p2æ‘øO§p¶«ÂR5§ ôæ¦æç’º†7Î@Àó€å“nßvË[>%DƒzØHéyŽ×ØþKƒ‚ì¶5àzY‡‹4¬¨•†zÇGÍä ûöéø¹Ž:ç+>TDDE<@ñ&›†<>¨½rG=Ρßv¶S;ý¬ä’?q ;厤(™ÀKOxÓÅêmOx¼ÖÍo²U¶²ªáVÃ4V¸ÓDÂy<ÙÃ@ =p ç¶ÑÅo¡†’ÊöFÞVºWó8ï꾇ëò\^îVH?ìû/¥­  ¹ª"ý¤õiýHêê¤#?ºÆÿX¨TØZ—lR¶cÂG§4/†íqÔ·jKM!³S½¦g`Èç°; oâqø³Ÿ^‹ñÅõ58’›DX77(®ºç“—â&¸ìz¸|ŠÄ~®šÖ_—+†ž±ÒWݪéguTur£§†Ia/—®~[†ïœ€§ÝÚán¡ò…}Æ–‰Ó¸¶Q;c/#³yŽçØ{.ÚŒ3LiÙQO3ÚÎoÕÊHÎ2@$…Ê«Í{1œ ÛŒåuÑ[h£®šâÚxY0åtüƒŸ—áæë†Ý6_q òÊ¡ÇQÓ”?ûJmîu«DÝZÓË õ”Ïv;¼Dæø¡Å+Kâ.å»>¼ij‹'g¾UÆûý{ª!øŒ-¤üÜGMº‘ݧ¨Û®2µÕâäÄÑHÁâf›”“c Œö¿þj/Sç‡oëÑlkÁù¼:Ù#--1TUFìí“ç;§æn ¸DDDǺ"""""""""""""£Ža²e3¾;®,Î1ÏÄ{.C*¥Ã%­®ôåöóMškY\tÍÂ.bÙ"†:ˆe$l$ŠV@#öKNç®ØÁwÞ7q;„—ø-XÓt7kuCÞÚKÅ´ùykHÜ7%¼Øp%‡”úegÍ­4Ö¹²6ï¦n°WSì$kN$…Äg’Fuk¾}zŒÕˆˆPtÙP•Bïÿb®Þ¸T%0vÊŽ¾>¬â¿ƒ´w1)Ö»´OÇ)!ÂF:23ÛÀçè±7€;å5>¸¾hÚÖ²Z{µ¨Ž7Œ°ÉÎã¦y]œû)¿O¢ql¯fç8Ç¿Sõ%wmŸuD#Ñ3ºÖå,ñkOtµô×bË×àÿ.V²DDCô_=u%5u$ÔU”ñTRÔF覊V2F8aÍp;A ‚µ©­UVMAq°Õê‹]\ÔS`c.‰å‡oð©—öëØ+´Ã‡Õ³±µ–éMm ø¥ç/hØyäð°º+·y|¾S#Y͈ËF@Èß¹å,?P°›.Á'ÑlÓÁ˜žôŒq8c˨qæ¢R‰+1 ‘$à[MQâc“=þ|Z#NFùò<ÈùˆkXGGÊG1=˜Þ¹åRÏMØ,ÚnÉ—OÛ)-vúqˆ©é¢ cs¹8I;’w'sºûÜ: ÇËq=NåvFÐÆŒc²äFñCÑB¿´žI?Mhˆ‹‰ŒSÖ;—ßš!•'~>2q…‘ô¥·\qRýCa´ ‹ÍÎšÞØi㚥­d4е ^CXÁðŒîõ*]p+Âþ™ÒÏ·j-jN Ô ‰²Yy]EI)ò³ý£›’‘À1Ÿ†«Ûï>35MÒ8ÜÁ_ Ä=¦BpÖËNû°mïì¬5æ?w–3Ì>U;‹€Ì!ß=ÅÐmœ¬=¦µ=ÛOß)ovz™(«¨ßæE5;¼·´wˆØŽ„µ#q‹JYïÔòFøn40ÕµÇâÚFcÓ¿²÷aacy‰îvÂçÝPí¾p°ç‹îTñƒµ”v˜]QxµLÛ,tÎcH|@u%Ìs°W… ¼5ðzëŻŊ ÖÛ­4B7WV–s–ó†1½Þ@w]†>Kek]šÕIhµREGAE !¦‚6á±±£ è¾¢z®ðšoº–?+”rS¸ƒžhÎÊXp§[èíá«GݯuðÛhÝl†)’YßÌK›IæqÉÉì3× Uø¹»Wj(-:WAÅZúÚ¶ÁCÕnó¦.Ã[³Z@%Ç=ð?5l}¢ðT6í¡î5PGDöÚˆ¥ 7+Øøœæç¸M¾j(ÓTM ã…Áì{\×4A Œ{…1¸âjªå~¬´q:²m—'–STýÙ­là²Lcõ@mœ3¹ÇOŸìõeU»Yk›á…ÔÐDÉHoíÅ+Øw#8ëü‹ã‰×ëøt”ö£mŠÈñQO ”¸Õ‡µ¥³ 0p|ž…GÊ]IU7Ýá|ÓÿTÎcˆÇ_€~ÏÌwS“Ã7iõƒ-:3SN£’'¶ž¬|L­òØçüXü/äc‰'cÊ{œ) ’{>j™ËÍÔv;6£´Ëk¿Zhn” >ž®Ëß áÝÁ‚7ebÚß <ª|¯DÒÉ#¹ƒ ¸NÛ—–ãn„¹Y3MØlºRÏMe²Û¡·Úà{…<Fyc2Hç¸mÑ¥Î'Ð,Gq¢ ŒM#4S×Á¥ë]PÆÈÈß4†L™$ëéì³ `Ç©*}¢ô4pͧ.΅溦ÓE(qÃY¹œßMüÌýD£w+æ `ž.«¢„Sù_£îu—ó“æ—&qØüxÇM”€ÆÝPŒ1誈ˆˆˆˆ¨óº¦O¦¯±ÆëˆqsI »ç%Aèrª:uUS#>ëÉÖ:rÍ«´ÍvœÔL­¶WÇåÏ ‰FáÁÀFà€BºÉ­|6qr)­W ]O;ûmsØ<ºêaËÏ £¹iå²× d)—Á,iÞ(ØM¾Xé®Ôì~·9ãÌ„íñÕÑ“ÑßN«!¢""*’d>ã*ƒvƒ‡ ö=•Fä«KŒ:uÚ³…ÚŸNELʙ뭓²ž'cŸ˜·=>0ÓŸe<']Ÿmñ¤'á¿y™Ô¯. 6Xž1¿|ãë·u²vúયÑWè¨zt^&¾» ‡¿ÞÜÿ›íµ[uø#s¿Ék·Âe;î>$tkgGýâyÝÌ29›O,œß0Gæ¶ZQqp¸P Çݦ8´ÝQKJhÔÃÌsØ6m[p%v.ø_îK½ º?PÜôž¥¥¾Ù*䣮¢•²Ã+Aî:´Œ´Ž„Å\~"uÅ75=.©4Â’á=L­…‡1ù¬ËK™ß¡§¦1ºÅÍêÀ¾ÏÝG5Ë…•š~bKlµ †ÄѦGþ >'óóç¾9T”t ¨ˆˆ±‹ltW®ÒÓTn7\[)peþµÃq‚Ø„„Î \¼&iô‡ì`Ó±•·X…Ê­À ¹Ò€X ï†r4|–Z)ÝC• ~Ò7çUhز>—ßyÿ%¢§–ª¡Á³O+Ã#Ž6—9îvÀ7$œ ³Þð#‡8½Öœ¶TºèÖ:6UÕÕ¾WF× 84d4g×Y?8c®TðÈÈcñze3Û<-}׊/-ÃöFÀge>ÐÛkx}½¶Ùc7ª Øb¯¬ˆaΣs\ÀdñaþPî=”Àã}¿5µO“ ¸¡žô+0ßáŒòYa¿ñMüÐ8FýÄŽ(é×ÑÓjÊʪÖÄù)æe;¥cùoÀ æÀî1ŽëÕÑm'|µ>á£k-UTU3:¢gÐr Ë'ÄçHÖà‰ 9w0ÏUï|lw=þêxòŽš›ñTÂ$tÒÙ táÄ‘Ì n3Û”ªµx?ÂÝÅêÊ(áuU¾ËIJ"ý-] †D×"‡#vK¾ù#¼Òàô— ©]=´Kr¾LÒÉîµmkšyI€lÆe ãsž¤ì°_ÚOÎ¥ÐU"?ÕÆûŒnp;;îĨk¿%as]xi;8¸ÛÕO*_ |=¸êªMUC]]o°ÎÊjÁeaóÌ~'°ÊIw#‡&Àä|[à€-oüßñ“Ä[ÐÅߟ^adx h-™£°äxÛ•ããW‚÷."Xé5V™‰³ßl”ò2JPÒd¬¦üa‘à^ÓÌZÞüÄ ð ¶ZæŽý~Eg”·Zž>Ø*m–Ùk™Bf}T$2–'ÂøÌŽ#a³Èõ$-Ї{vVGøCÃoõÔu“Ç$†š'ÓÂئsc2‚F\ÐÜú–Žê6[|c^…Pý)¥-ˆ3qò1ÅØõ9Tàçôß,¾Ï3"­‰£ï–缩ÉïÚaìá±ù‚òXR×EñUC^É˧:V²'0µ±²zw0rê‰NFÄ`ufÐÉF´ÂÊÊ|xÈÉêzÊ Æf$;l©ÏöxWy¼8Ô6³¤»‰yÇâw™zü¹J“ØvÁù¢""""""""'Í#Ê"""""*<àî¸FH9ÿ%Pïe\œìr>J¨ˆˆˆˆŸDDDEfñƒ‡v&èÚ9|g!wë)+Àe¤”t{ üˆî Þ-:û€ÜGwMm¸E#Â&Ÿ»ÖÆrXHÃÆ C˜wÁ PpÇÅf’ºÇµ¦–Ç[€Wnš•çÔòåìÉìAÉ =é½AbÔ–æÜtýÞ†éHì~¶–fÈÐqœ±Ýzhˆ¨ =±óUD(™EÄŒoºÕþ¯¡©áOkiá§triËójišìh[+g„õ;:2ÃŒçu³è¤d±²Xž×ÆðÇ4ä8~K±ÉbowÛ|:jùc.šiGl‰§Ž3üT3ðs#âkIHâF]XÞ»dÒLó d£¢ª"*öV't”ׄz–Ã%©©}“Ð áͪ¥ð{|`Ž ‘Е¬O`¾Ø$·:ë@úVÝ("¸Ñ8[5<£,p#ob:ƒWƒVâîLŸÙü—KFr}7S?ìç¹Ô6=Gj}\1Ò~ªF@qÏ$Îçˆ٠2<öÈõ*c4“ÕrDAÑDïvºÎ$ñ«Gp↪8 ¦€TUËÊ]ä™å Üü¬BJ•´ÐÅMM=ûsÐZ‹UXYVؼªú;‹ù!s7Œ¾@#q îÀâ}BÁZÏÁ•’ë¨[sѺ¯ôM𤗾šh O’Ò2<§‡`{st©R—JÙétîšµØh°)­ÔqRÄyCrØØÀœezŸÉ§.:6ôP«í¢u.ªÒ°ÂÖÔÐÔÒºAëØà?'•4¾¯¼X.Ñ\­:Ë}d[6zyŒrcÓ#¨ö;-Œøe×SqƒöËÍÆwÏtÏ¢¸Höµ¼ò°þ,7Õ¥§ ß;,š? $Qî 7Ž®vqê§/w+í¥¡ßãzî?5$üÔ¶&9îy§©¬‹ç” ™Û,Ò:wQ‹í¥ü,ÓÕŽi2E}5ÙèM)#ó`ü” !…­i9üÖ׸Ksžé¯3\jì´r¿#˜ÄÞaó#è¢m¢ª®‡Çôr¾¤™*n-IÍ–Mn ϶ZöLë…Ú×lý!q£¤lQù’¾yØÁzs;˜Œ ‘ºµ§á' *ë&¯ŸAééj**Åt“š&¾Pyƒ¹½ Ü·¡ÉÈ9+ÜÓ[Né(e‡Liû}ªž¥íuC(âZÞV»” €ñÝ{nnFùöè°ß@ßüšõ<œ ùrP¼œ¿ëŒù­lIPNFvÊ÷4Õòãmœ>†®¢šNNNxetn-=FZADzš^-êÍ']«®—½G÷/¿>š‚õû¬Ìk_(cÁøÜæó4–z+ûLÇRï1¾ZVÓCM£$‚²2kcøŽ À%ŽÀôf‚:”[ûC#®þÚ¦‰£îL©çŸ“˜coÏuaåk€8.Ïb§OÙíme?/·VT‰]_s̹‹Ëf;ç|çp:í•'>¨ˆˆˆ€ÐaDDDDDDDDDDDDEÆBF1ê¨3·\*·Óꫜì›eU;"""""""&ëÂÖÚSNë;Ö=Mk‚ãA7Xå´ŽŽk†ípõ¨Å׺)%¸ðâôË> …²å Žq×fL+»lþ_ï,ZÍyÃ[ÿþu£¾i{”N’x ðN diå{vvàp}ÖXáÿŠeCyu6£¥`ø¾òÁÄgÿXͳóiRs†|áþ¹|tQWºÑtpÿ¡Üq9þÄŸÞÃ!ßÙ *Ït=Q   Ó¢¡éÑBŸ´DÒÐjË.´¤cXëËM-pkOÇ4L²c>X ø2¤… P5GôìÒÎɪè!ýQ‡àa%æäÀÓ¾çªÊ¿3…ULüÊž7¿ù8j³ð²z'Iìß½D?™Ð׊+­m:’ŒTZë#ªc”îÓóUµ=/z Ôzzß~µÌ&¢¯§eD? †p}ÇB;½$DEÆ@ pà;FÅbN*ð/IëNPhÈ`élôþ]ޱ¹sé\€×’èÝÌ;õ ­½]§îú_Qר/”¤¸ÐLa¨‰Ûò¸w¡`‚6 ‚¼…|VÍì1@ùçÜ9å¼4–¾'ƒ×¶3·u²ò@$çeQÕUdE‡´eZŸ­Lú}ÞÛTc§Ìä{è!ñc>ž˜Y…Ñ@_´X§ã…MŸÔöæcð8Í1Á>à‚°F†¹ÍaÖ–+åé-]«µ]'¸¤ÏºKý?¦ãåÚù¿ÚË9§#o`íðvnðƒ%?Šýq½óIFÛuÃÊ|„œÖS689,OâçH£î5Ü`¦¸ÕVCxˆ]ã}Fò7Í’@X]û@9ŽÁôÀí“dhž!ê½+p†³N^ë-³Dy¹!˜¶'û=™åp>à­—p[[EÄ>Yutp6žZȜژC²#š7–HÑíÌÒG± ôùEÄÆzû(ëãëGVj>Ãz·RÉSQ§«ETͤ¹´Îil®À<Ž=ƒZâv _Qçäo‡uìçû9ê9ô©¦È-ŽìÇ´ŽŸ#;ÿ…J@×óØŽ˜ß?5 ¾ÐÛyƒˆº^îOÃWh’ŸwŠbìþSÉe³ú¢¢^]éåɆžÿ+!>Ð@ò?Þq?âR+¿åÙFÿ´."î ZÞy5ó‚vÿšQ8—rg#;-”xJ­¬›ÃV‘«¬/熖¡ËÌqÔJØð?¸ÖüÆw£¢}ÏÇœ”t2ýÍñÜå<»Êt6òä9£oÍ`m©5ãT\«uL¯žù$¦:÷JÖó #à vØË€Û+‡ƒÜjÕ|8¾ÃWl¬–¢ÞÙ¥q‚Vc oF;Ñþ3‘²Ø· µÖŸâ&“‡Ré×Ni_#á‘“ÇË$R7ñ0ÁÆFà‘ººHÎëÄ×¶Í=wÑ×[^ª}Î*)ø-×Rè~!×è=Jd ‚å9¦0Ì?è÷?Ëä8dó0öÈjœ¡7õ^N±°[µN–¹éÛ´aôW*gÓL;€áŒqÔPµ}¬ô½×Dj뎜½Âèëh¤to.õŒÏÁ#²á‚ ’ø£÷;”¼4»Ôbš©Î¨´>Gí¸ÌüŸ»†ãâëÍ´Çù*¡è¨ -ØqÐöUB¸H1ŸuPèÝÎÎû…²¶k¥“€öø®”RR¾ª¶ª¢6HyÏÃ\ZwnyIӺλÿØ›ã¿Õ;ÿšòõÞÍd´Íp¿Üh-ÖæŽYf­•±E¿b]¶þ‹Ñpƒº¢²=UjÒºjæÇ—ÍBðêi $±‡Ÿ¦Ë%ÛmÔ¸=¶†’ŠåÓ@ØØ4¾ÂAÆ õQ/í£‘ôº¼Ç˜ašº?ÑÏl.húˆÝù/Sìô—›Bj¶dr‹Änhßb`fþ¿ï²”#›¹QÏíÿôFÒ2 þŸ~˜ý\ßø(ÄœÀu+e¨b‡Ã•¥ŠhëÙ-KœY–é'™Î‹~…¥Å„ôËI pª˜Eãʬɦë¬-”ÖTÃGY$o58]‹w9æ óû(ùâ&ÝUg㦴¡©„@ñ{ªW,®–3·«ÓõV5;\évÉÛ;|”ûû<îf§ƒ÷[sã W©0þlóy‘Æî‡¦•iœ©Ê´8×n’ñ _lÌl•Z¦0¾>qŸ)Ç¡ùuìp{-gè½gzÓ7Š{•–çQn©k›'<ä°p8{…38 âRÇ{¥–ѯª(lÕâOÔÖ¶2Êz®|—sàb7çrI 9õë"D°MlÄøê ’.f>'×°ˆ=0Gu`pþ¡“qwUÂXÖTRiû,34vs¤¯“cÐŒH7êH9XËĆÉõ¾¨n«Ðµ6ëuÚµÿùÖ*éŸ<¸f­äcˆ~À;l;9ë’mÞ$p·‡n–ÛÖ¤ý#[<âs#p§¥s q|Põ$‚Kΰ kT1„ÏÓ|‚5/¾ÎÚŠj-cHùX.SSK <Î…Žpq°öç¾áL ˆˆˆˆˆQDMŽL*1° ÙSp}sÕrDŽ˜Dß~žÈˆˆ¸½¼ÛÛì¹"""""¦S>ˆr©Œî:¬qÄn p×]‰æ¾išx«ææ&¾ˆýÞ£˜œ—7g{¸¥`eàêñFñ>…Ö0VEœº’òÆ7Ëe‰¤ObÁó\,ל5îõZRã{¢Œ·•¿ Áœ —œ^Î7)Ã^$jQV »pßQØâ8 ©©­äi<ñ—°†‘ÌnN3’·L"o”Ý6>êøÛáLÔ7Å=9J[O',wÈ¡iÌoèÚ¬Ýã¶ü§Ô¬½áƒ‹´ÜCÒÑ[.ujk| UµÃþÁ°™§¾hv;ô!f@r:~h}÷T<¤z¨÷ãw†ŽÕ¼>n«³Ñ™/º."(òúŠ7æ3mÏ)ă®9^øŠ‚ö+…E¾å‚¡ÐÔÃ+g‚hÎÇ´å¤|ˆ[4àV¼¦â? ­º‘œ¬-û½Â&ÿ²©`ãär?²ö«ë¿TÊ EG|‚訂*ˆä§™‚Hdc˜öž„‚Ï+QÆÛú+P×PŒFšªjrÜ´Ç!o`›Jï.hÜ¿Íl{ÀíÆñpànlýE%mE-¾BàL”ÍpÁ>œ¯20Ùg!œÍW#8DÆèˆˆˆ›¢ø¯w;}¢Ý5Æé_KAG y¥ž¦Qlo©qØ-fø­ÔÚ{TñÆý|Ó"®‚¥°=±:6É#!kà¹o\ ãêmÎ@Ù8Ï¡üÖ±ÚŽÜ×5Ø ƒSs궺?8Û)+ƒXç<ᡤ¡Wƒ9aŸÅ°–œ­5áî.ph­§.;“°ÝIn&q‡Bðêóoµê›¤ÔõuÌ2†ALùŒ1|@HðÑÌ\Ò$ƒ¶Åyöý/Àî%THhlšGPO .’xàa”27cŸï …”†41 5­Ø0ì0{&øÝ;ü»¨?ö‡êŠöqŦc™âŠžÕ÷Óyåt’Jö䎛öù¨ó¤uÆ¢Ò×XnZ~ñWm«Œ—‡Á)k\qŒ9½=ˆ+fÕÕZó… []M5UÆœ¾hãvX×¹„b[œvʼó¶pVñmÃ+‡ôæ´Í;îv¬UQÒyÇÊ—”8HÞF°—<±Ä7¦àn9µ>ÏÚGÑèÍ]Í’*ˆïmdHÒ×GŠxúƒÐä‘ôRQê+NŸu7éy楎¤¹¬Ÿîò:‘Ÿ#Z[s·1ÁÇEˆ»°4d¸8n~,¾zc¶]ÆùÆë xË1ÇÀËœ’só 0ÎVónè¤fþØqÝkš8‡8.$ôÎ:•"<ÌÇw³Ìhæ±Õ7«¿Y Çü9ú)ïŒo…Ë(ˆˆˆˆ¸°¼¹ÜÍðïÕrDDDDDDDDDDD9TÆØêª(›¢"""""!興ˆ¾K‘ž*Y¦£…²ÔüºO-¯>…Ø8ùáYñ‚gTQÒµñ_)c©´W¸SÉ—~ãÊ9°y^ Çn`s‹«O_-÷ÊgKFù,D6¢–vç§qý™wiëìz‚FëÓúôê˜ß8Uˆˆƒ9í„TǺn¸OSÁ$3FÉb‘¥cÚ \Ó±¡C8p“Sp“V$páÕfϯª{aËå¶HyžàZNFÛçá݉|âí§‰vBÇùT7êPYD^>#ë"ÎîaüÛÐúœž¸‘ºã4L‘ŽdŒcØàZö¸d8¸#Ñk«ÅO ‡ 8•ÉA!–Ó|lµÔYŒ3Éwšï2 ‰æäagØ“~xÕÒÛ8ƒsÑÕ3;î÷Š_¼ÂÌmçŹ#Ó1“Ÿ^Vú7~ˆ›ãq¿² =?5UG ªãËÊ6$­[x ¢î«l¼"ŠÍ ôì:~‘ÔvÆ[âBèùݾ.añsdŸrJºÓ9DDTq¯dDEŽø×Å=Â뫹Ys¨ÏÜ­±Ê$Þäàò0wv°*j}CÅn>ë!k£Š¶ë3ä´”ÁÌ£ c»ŸÙ`¾óÌqÔ•Šµe†³OêÛ½‚ã43UÚ릢ðèÜøžXâÒ@%¹iÆ@>Á^¾憟Žúó²'ƒz²tqåiéÔ8‚=Àù­›Ýnt‹|·¥u=2ÔTJ#ƒÝÎÀQwо(«+ušáEn.–­‘:ª¦Ÿ›ï¤¼*(Îc·ÎÁÇLc&Îð ETÞ0êZ¹ÃZh¬òÓT¿ëdª‹8?8]Ý[ÿhO›MÇ:ù"m?Læ‚íšÓŒAOÔ¬f¾\mõQVQÕOOPÁ†M …nùÀ çªØƒ½w×ü*5é¾ñqµV{êžyØ"í{É'.øÈ'¾3ÝfµL!ϦV¾¾Ð×¼ñÒž74 ;XOG6sŸÌ‘ôQÎÌýÎI[%ðNe>´ßœÖÏR#Ãq–ùïÜúïÖjo]‚®3¾ÁuÃ1:GÇ éÌòÆ€\}N:•Ñq‡ï”³ÒÃTèe-#ž2 ˜H#8Zýâþƒã„mꆮÝtªÓµ²H]Ul{¦¤–7¸;ãkwfàѸÛ#u…ô…-ª¶òÖ_*ª©hÓÏ=$ šFm†9ìåÌÃø!Å.%cÒ”úBÛmTòK˜_+b…/’7ÈâàíšdnÀóœàe{-êÓyŽgÚn4µ­§”Ã1†@ãÚH ŽÇ!}àç Ê¨ ƒ¢ÌÍ”8ä `“Œ|ºgÝv*£$­HqŸô?õµ¿úÞª¶6l®nËÉšÓ—7 ¤“þkmöø]”§ŽXq+(×3®Œd,áaÓÇÅŽ&ÐÕÕÉSSKGb§så?1ÓJ×do‚ØÉ‘걋øÝ/¯kC!waÑ=Ö·Úã±pêzË/øD»Miñ ¦L3GuÏšŠnq³šøœ@ëԹǾÇ‹°ZNN{ª¢""""""nˆˆzlˆˆˆˆˆˆˆ‰N¨ˆˆˆˆˆˆˆˆˆˆ˜BØô+øŒá4:ÿNŠë]D”:‚ÜÇ:ŽhÚH™¸É…ã;´>Gp£^Šâž¢°\b±ëIêìZŠÙe¶ó4.‘ñÇžaOTÀÖi]’{3–°%7x¯k×Éj®û¥¿RR€*)a¨CP7ÄÔïÿi±ŸVô=2r@7Írì€c¹DDDMѵ²0±ík† HÈ ö*$ñß‚÷ŽÞÄþNê:ky–¾¶®k~âÂç>ûQ‘ÌÏSŽmà?¬üNÓÍ|rEM|¦¦¾ˆ‡l¾=É1’@Ïbp{g%oÿr„z–ñ¡Ù«ø5_[O™u°ÒTnkrîV×3äcÉÇ«Z{()ÃWQ£uÕŸTÒ‡9Öú¦Læ´ÿY~6› i+ êÍGw¶Ô2¦Š¶Ï­èæ8dȯµ |Ð"Æ Ö—¿ÑCÄMô[÷/Yô—,š.¢9æ¸Ýë(©ád-Áhžo/ÎvÜ ú|^ž£&5§«ðNr1ÙsDî‡Ó+ øã•«†Ö×Úm/Šáªê[ËOJß´ÜÝ ÿu]òXŸ…~µ¿¹;\qžáq`¬"f[ œ•3÷ÌïÄÌl#fý[ŒI¦4æŸÒ6x­zjÇGk¢Œ´i¢ ÄãÕÇrI9'uªOuuãQÜïOg#®“U–ç82Hçãø«£€úšÍ¤¸¹`Ô÷ê'VÐ[¥–g@ÖµÎtžL‚2Þm²Ù žØÏe‘u¨â§ˆÝgú&ÓDù¨ápsh¡qe OGË!Ø»ûGsû lƒà—‡{W-’j[ícnº½”òyu1(9›‚!oW;Žs¾û¾l?³š%Ÿ^UÈAGocœFIq5wù/í"²ÁOªôv¢Ÿ[o¨¢sO@Ø$kÚG¹ûÿ ¢Hs'ÏU<~·Hxg©b›•· CÎ9~ï@÷ß»~².˜€ãÕr£ßŒ\¸©n¶^ô»é›~µFø¼Š‡ò6®|AÇf¸8góœ¢Ï |4q?Sj¨-·knš æ&¢á]Á[ו¼ÀÈIØ@9Î@ÝOŽ è±ÃÎYti­mÁÖèž×Ô6/,HçHç“˓ݎ½•Ù3ÙO–W±ŒcKžç; hrOm–âWˆþèÿ:––±ú†ãƞ݃Nq‡J~þcì¢Ç¼Kë}gæÑQTÿG­£›––Ý3ƒÞÀó&ÙÏêv­;|9¬[£õþªÓš¢–õb¼VAq€’Ù …ívr{]á‚v!l—ÚÝœEá­³U o»OP \<À†Í‹GöIö!Z|gðó¡õýeU¶šÅ©Âê{|°ù9pÌ•í;dã˜ccë®Ë¼W;w©µÜ¡’ž¶‚wÁhʆfE©èmº‚—~g†ýÒ Ç™€°€;r ú…%xiÇ®ë©"¤¥º:×rxÈ¢¸´D÷ᯱßGgÙe?dT!Cß¾¯ú‹YVëNËT—IŒµöʉDNd§ÒF÷R׸µÄzd7pßÂ÷kn´Ðj+,VªZøE[å«g;â?/0v ù»ØâxêIM˜¹OsLr¹¥§qÊÂF=öQ³ÂÅÏï%¸¸ÇLÙMLΔ&°†´ûelcÀ†šºéΉ®‰¼Ü]s¤ò¤Ì‚4œt9Ù–|æ-#áÇ_UÈuÿµN™ÉÂó¯÷Û6ž¶Ér¾])-ÔQ‚çMS(cvÀÏSì7Qï‰-´¥¡ÒRhÛd·Ùú©ÜiéÛîÑŽwþMÕEž)ñ³^k¹/—Ù>êNYCJß&™žÁƒw|Þ\}Ö<€UWT2–ž9§¨—᎘^÷Ÿ@ѹè³×ü#ñ+QRÓWÞªmšn–~WyuNtµMaê|¶ŒÙsìp¤?<(p¿MÒÓ´s껃ÇÅQZçGA!‘1À¾~"âBaÐÚGMh‹ ,ZVÓ ²ÞǺAns²÷c.sœKœN䞃Ñ{Ž8Xߊ<áÏ£­–õ§iaºU3ÿ¢´ŒU5ø¯.Œ€ÃQ'Pø5â]5­–{žž¸REŸ»Êú‡Á$íí–×ã›ÕG«ýªí§¯uV‹Ý¶¢Ýq¥—5<ìäsŽàö#pzr[„Ñf8ìzÑežøâFlôš¢¢Š6Š:öŠ˜pßG³\ßu'8_âÏI_™&±¡—OÖ“Ë÷ˆ‰š•ÿÚ8øÙò!À~ñRÓs·Ýèc¯µ×SWR¿ðÍO({Ô/¬àû”uÕÁ]$Ô³·š)˜èÞÞ™i#ò*/øtá&¾á§®7Ö2¾ÙqµÌçÝ)^]’º`á¹°æ»áÎàüÎT¥X»Åt‡_0êŒ Ÿi˜Ék5ùË\;ýÆW¹£/.ÓÚªÇ~Š0÷Û.TÕ¡¿½åÊ×ãþ-³A'Dôª""""""""'n¨©¿uQÑçuT.àý•q¾QxBÒ–ío£®Zí5d45ì ™Ô²ùr`8;à÷í¸Zßâþ™Õ:Q;Lê‰$|Ð0ýÞ ó'k·æ‰Ä Æ[Ôг¦ª{ˆ/ÀÜc*Ox××Xõ}N†©’yíU”¯¨¦ap-§™˜'œ€æç w÷%M,DPõXsÄ—m«bÇL®kÆ:ŸÙ÷PûÀÅèž.q Èê–T}Î/ Ì29üº©žSëî6ú©S54²SOd†VI†CÚF>Äl¢7|Ûªn1Tè=K%ºšIsSGso)¥û˜žÐ iÙ¯É8Ýûí'xw¥múEZô¦Z™¨­°ù1I;ƒžýÉ%Ä2I=¸s¾SÛüՇĞ.èŨ/‘ŠÆŒýÆ”yµ3»Gáõø°£'<`_«|ÚM lŠÉÈ•mlõ'Іo>¼ÿE5ž²¿jk£®»½}ʤïæUNérÉøFç`Ë˶R\o5ÐÐÚ¨ªîÒ“åSRÂée~qåcA'}RS„Þõ%ìAtâËú?C æ4¸}k†6ÄFsŽÎ=v¥— 8S¡¸qB)ôµ’*yÜÐ%­—õ•2‘Í»¤;þÑé¿Eãø¦¿9ÀQ_Mr–‚¹´­m°Ô˜¦chs HvÅç×b¢…~*ê»/,ÖH.•ÖËÝs)*hfœ¾<Èíåhqø^;‘Ôl{c`Ë5žÏ_uª4ôTòTJ»¹XÒã뀰^’ñeÃkÄÔÐ\i¯WÔ<´>x™,L8qsHzl³f•ÔvMUgŠó§n”×|¤†Í ²2:´Ž ôØà¬ÁÏ6ÝEª¦ÒzÒŠ -Á÷ 騪q y ŠL“ÊümÌ)>Šéñ)Àë/ìn©ŒEA«)!-·×’C^$C0vN2Òr22×k‹QXnÚsPVX¯TRQÜh¥1TÓÈ0æ80F#b#eÓ-U'—%DBÙ›Ï žÂ Î2ÓßÓeÂ)æŠ^fN7W—¸™«t=Ø×i›ÍU¶Sýh‹ŽA‚>8Ý–;®ÙFêPpçÆ\Ø©u¾iJë[ðNÝLúgîp;)ÃÞ"híyFgÓ7ºz·´fJwIãéÕ‡|n7éî®°sÁUØû¦UŸÆ«L—ÎjÛTI-EEž¤AÄùDnsÿjÕuKǘðÒ×t=±ê»ø^Ò>C·]ð¶¿ÃëÛu&†±jœ\mðTœHsØ Á%{ÉÙ;ª ´ÑUDCó@Î2ˆˆ©¶1ÙyúŠÃeÔV×ÛoöŠ ­Î]O[NÙ£$t<®dz¬Cxð¯Á›„‚Htýe°ç.Wš×oÜà>˜^Ö–ðñ 5x¡¼Úô²X'šº¢^Y‚×òºBÎ`@=6=0²£ÜTDOš..,œô' ©áîÎ2HØv?,«Viú]_§g±j U–ÊÀc«¤ª8þóÓ–¸ÚàA0B…š³Â'-× ã§jm7›tr¹‡Ô˜j%ap9®hhp'|lqÙ}\'࿈-®¨µ=«NÒÁ= ËdŽK¤^]T$|q–¸ ³Ñܮ؀Tæ³ÖIpµRÖËESC$ñºš¤,DÚì2=‰ ëDDNȃ Ln‹®¢ç†Hf`|R0±í=Ò0B„šžÏwðÓÆê;ݧϩÓ[IiÉÌ”®#öÙ€æžã÷‚š6+­¾ùg¤»Úªcª¢¬‰²Á4g!í##ëíÙ}¤êÇã t¯´Û­:†—–¢0MÂQH㌖8އ-;ï‚ ‡<:q‡õòÍ®}Ahæ"*ûd.“nÞdC.ŒþmÏuŒ-æúÛ›! Š½Õã–8a“ÌÎqŒŸe”FŠñ Wdý0í9¬Em<Áï{eÀ‘ æ™Ùª÷ðçâ:ñ¦nqÛu­Ö²ëa˜ %q’ZR?i¤î[êÕ8ì÷[m≕¶ºè+)ÞBðá¾ÿOªúÜCZ\z«ß:ƒúIÇAZ&‚háòiXè]ÌßÕÄÆ»^nlûåb±Õl/ì÷uaà<ÿzœ¾?Ó•?vo0>\|‘e¾ß9úû©“Øgê¹ uEĸsrçuËê¨H*q#Íðëâ:[ÞŽ»ÒÍn¸f®®Ø×`E Ëé¤`?j3Ôm±ïœ5gø¡©¨OÂ^ßñ)—{Å;i£å$|QÇ)Û¹8ö*ÉÓõV®»¿Rq‡[UIWQñKMC(’fºw‚Ö€9XÜc`Fáç4f€ ûž“ÓôvÞfòËPÖsTM¾Y+²÷Àí…uz§Q”ߺÆ^)* /‡ík3]Ê]lt]}Ígÿ)k%Ì qø±ŒwYçÀÓ¢ÿʃœ<Û*ù£¹[þY[ ¦ÞË⿊³i©4⦤3õpùçÓ'`} ÙE/:kVY8ù®«µÏn¯Þy£˜^f©/kÚ᳚y_¸Û#ÙK¬g ~Š…§¯ÓtæÇSŒ‰8›â‡Z&Ii?H›ÝɃþo!íÑÒ~÷îHîQâ§Š «Y%º±ºjÜïö6ǹ³1ìU8ÕO%§ºÎ±ÉH"¿Ö˜šik îtnáå#è¶7À=`uߴS%dô‚òìgï1~®S°æsK‡³‚°|[ðU¼E±3RX‡&¨µÄYa  æ1ïÙ>ø;tÂÞcÓꨨ@=@8õTkÒKZ=p¹".©¦‚K]ÔãeVLÇ çUXÞ»p[ë× w#m•U=ÕP«o‰Z6ͯ´uv˜½Ä]OTÐY+GÇ£vJÃÙÍ?˜È;¢6•Õº÷Ã>±›GêzCsÓ•r™iºˆçnÜÒÓ¼ì×î9ã=ðp2e— 8¥ø…euÓMWùí‰ÁµHÞI©ÜF@{{dgdŠºŽ:¨F~}Õq¾Äªw÷ù¨éâWÃu¿[š½W¢™¯T_58”÷g$¿÷%9?søºó !Âý{©¸sK¬cŽªJ†ÒFÆSÕu¥™“²)CÛŸÍs ã!™ $ÉÇ=K?†ëަžî¢sZÊwGg.ÃñË‚×5ÎÎv!¾»ÁÙå–yŸ4Ò>YdqsÞ÷ç8œ’IêJ£.Á[3ðqku§Ã¦•ŽxÃ&ªŽzÇLdK;ÜÂ}~Ýý1Û 04Œ¿UÈuÂâ÷rŒã9;ªÒKƢƺï޼2Ñît5úŽêÆ»•Ô¶ßõ™s‚[ð´Žà}–­ã¸±÷«'4Œ´Póysݦ{OÝÇ|ÈïÕÆìvîôà«—ƒ^­V øõ/«[ªu“ÏlR9Î¥†RsÎy·™ùý§í’N3‚$?M‰Màn¨NFÛªe£r@ߺ骪‚Ž’Zªºˆ`¦…†Ie•áŒcåÎ'`îTNñWÆš SÂËõ“E[§ºXÝS Âü湔͗¯lPŸö®ø2{¿pT0kˆxÎç¡ÊÞÚ2ܶËUׯâˆmïÿjŸíÛqßÕWcì¿UÃÉ„Íç†3ÌåäçgçôÎvT¬©¦£¥–®®¢*zxZd–Y^Æ4uqqØê°'>kÍzù©î™©-r¶Æ9O쿃¡øÉèĵÕ2Ìws†RÙo¬¹VÓ[­ôÕu•OC /|;µ£rz)/ÂïÚÆé|†£_ÉMc´ÆöºX ¨lÕ´;vSÊÎ`ÄI#=;)‡ÃnèîÙůIY©íñtšañÏ9õ’G|Nß¶p:Ëß»Z­wº'Q^-Ô7*Gä:ªvMÁkb5àÞ8y¤ëà«l±hž­Ñ¾zËDŽ¡©yvæHy\q¸ÁÈ·®ü2¾ÌÇS[õíd–ÇSºo¾[âºÇ póÉ/ë\æsïÍùÚÔº[Xh˜ %.·MeŸÌeOôN¶X fVˆÝ ¢˜–lv#pÜgrµÛu¤W º1Ïû½Câæte„ò’2Zwn‡p¶à‡‡’h®2ïp¤’šñ¨ÞÚʆɀæÀÜŠvã·Âç?}ÿXsè¯ß”M¸ð;[R uš¡ã'»YÌÞà-Wó0lzåO_³ÎXÿÐÝò0³PÈ÷7;€êZlmþù‚ü|Ylã¹¹²›ÚÙK_pæóDîoW|èBËßgnª§¨ÒÚ‹GËRÑQKYúBž&)óž˜hÛÝJìcâù…õ­ž£†þ,tÝêŽÌf¿Q {¦Š.X¥˜½îå(ÞBνHìH”öº†ÔÐÃ3C€{a;å¤d~j·: ¥Öë•-u CK&¦©‰²G#Og5ÛìT^⟃ÛÆyîœ;ºþ…¨‘üßp¬&JQø²á—³~]0ûb,ñ#ƒÜEÐ%Ójm-YMHÒq[NôäæFd7=ƒ¹O·U`€ó1Ù=vì½m檎xê!•ì|n® ´ú‚:–ráω¾!é6²šªéý!£gH®ÅÒ¿¦Ï™ú¸» ÙJŽxŠáþ·ä¤ž¹š~èí¾ï_ lo9# —ð’{ƒ¸ÙEöOÐüa«©Ž=YsšF9\\+ŽÃ—Ë)õ;•‚é‰k¹¶Áô[ð*Ch¨NÙª›½‚§pwÛªäÜòïÕU™©ïöM1ežõ¨n”–»u8Ì•20z ú“й; ¨Û¯|diz$::ÃUw{ZÚŠÇýÚ#¿`qß'áZw†:?¹èû\c”‰kw‡F=”©á°f½áÕŸU²@êøy¤‰Žæk k€?0®´DD(ˆˆ‹‰‘£9$Ô@üÕZC€- ƒÜ*’UçSÞ¨*kIK#§‘ŸŒ±§•¿^‹ì‘îiNw²êûãÂØå{ÆÅ­i8ùú}W&‡É—È|°zãŸã²íòã¦1ÝU¡¥¡Í9AÎUrªˆŠÃ㶦â7 .zqñÅ÷ÎO>Û3Ú?QRÍØàr1Ú}œTðù¯j¸mÅš »³IHéßo¼Dç`FÒîWãoÕ¸ô+d -sC˜AiŠåþIÕqǯð\^0Ì´òê°ÿx3o×ÐÍ|²˜(5+ lN|ñsA[9ÌÏ^ÁýGC‘²üFf¹Ñ43pïSÛª¬íed•¦sq¡ç—ž7…ìø0 vüC®BÇk“ç; iq;u·^ÚYcÐzzËnˆPZééƒ\N[É[ƒŸ’÷ÀÀܪ…cqsŠZW†–¶Tߪ‹ë'k%;Í>;û-ÏW¾ge 8±Ç-sÄêÓ`§ÃCVï" %¬=î©$ 5øÓ·ÃŒ{,…Á¯ WÃ`¼ñFi­´…ÁñÙ)dYo:Fþu»û‚¥æŸ³Úìj[5–ßOo·R3˧§¬c}€õ9$õ$’w+.t”3WWTCMKNÃ,ÓJðÖFÆŒ—8€º¶ô®þ›P¾ól¶ÕRØžìPÕU41ÕÍÉ̬fr";r—`»$ã&ëv^½Õ¶-¦ªu¢­e-?ŠWyc`ý§l?È£Ö›¤ÕÞ&çuÛSŠ­;ÃyÿÕm°ÉnÎi;¹ýKÀ¸mœ†î OŽ -¦ÅáÞ‚Éf·Cn·Ñ\éÛOOOú¸£Ü£ñ—œîI;¨$#çv¾ø AøæÿO.ÃK€²Ud†“Ž/m¾¸ëô[’Þ½•9ÚÈÝ#ÜZ q$`î°/¼Ph½!ÏoÓOT][–¹ÐL$NßñJ3ÎAÆÌÏÌ(oÅÎ2ëN"V_îï}Í ?«¥Œçb#â#³“¹Ü,qQW,®ææ#²àÎnBâp3’IR‚^µž¸ò.Zž)ô­…íçOûÝ@Üa‘Øï?@pS+†\áß^gÒºr+‹];Ý=AÛy<™CyAôWþ=1º¨ù§Ñçø•C³ºµ8¹ª"Ñ\4ÔZ©ÎÖê$ˆ€éHå¹í—–ªÖ' 4­O8¡fÓN¨™u®kj&üN Ýó?܆µ‹E ·ÑCodLd4Ñ6(Lc‘£ ;ä=W‡ÅºwUð³VÒÆ×>Il•mkà &`{-L5Û´¶Ê{}ž1ÔÅÂ+ÔòÇ+"žý'’çÊðØ!k‹GLdc˜uÆ?e[ßhåŒI§´Ž§¤šz™­ò¿»¼Æ·é˜ßù¬3à»Q ,-qšæÙ-ÒžlcÌfYÿçÁõ[Ù£ ñ‰§a»ðNçxLúý>æÜèŸ ~6=¿ Ô|!§™ÝviÆøY†r‡èËKY+&ˆPAåM|¬{ M--Ûq‚=z+”tÀÙW”lwÏÍÁÛe…8»á¯‡|Í1á-ÖóÂè`¼È#­!Ìæ„ócrr7?E#†ã¯ÕÀêUBwDDDDDDDECÐà¨qͲ©Œàc\.a6Tnq¿^ê©Û™Â""ñ5®’ÓzÒÈlº¦ÓOt 26_&là=½ ƒ¹è{•Žn^¸+]Xú§hæS¹ãâe5dñ0ÿ…¯Àù .ý)áǃºv°ÕÓèêZéˆ-âãTÀÁø$Ë>¤edûU¶ßj¦u5¶ŠžŽHé pF#g;Ž\îV€2NIõ$•õ¢""ëž;÷Nw.ÄDEÔúxœâð \i§ø®†RÒÑ?0ìÀWtmä`o\EÑu ¦¹Û§ ¬kÝì1È#£vÁÚA0T9âï†-E¤d›Rð²åU]o3>‰ó˜ëb;åÑÊ1ÏŒž¤w+ ¤î)éÛ¡¡­ÕÚÎÝ_Ó×\ª2Þã1ÈâÒ>„óROÃç‰#sš{ˆ7X&xÌi¹b?¹7FŒövÃÕIØ*$’LÁ ÑH™$Re®iz‚»ã¾)YŸVçùev5áÇ`ìz‘æ¹uTÏ·ðUTϲ‰~0¸QYYSÄ­ouEKþ+ݺeÒ€ûÄmw`|`nïÅ×9¯„Ž?ѾÝnÐZʽ‘=Z®S¿ sF ž„~¸õÀzË0«ÙSˆã·Ô.©;€Oe¯Ou±×ñƦ3<’KCG (a–6†6MŽ{ºG¨ð¯ içêŽ(é« Ïe]Òägàçyú5®+lq‘“€ÉÜ.yGòX›Ä/¬œ*µ¶˜ëu dEô”|à oO2]òÖg wq‡o‡|/â?ˆ AS«ï× ¨m5æ[½TDº¡¡ßÕÒ³¡k~&‚0Á‚7 …0xSÂ= ÃJ@Ý5gµÎg$×*œIU0î ÏAý–àl6Wè ']º Â·µîµÓ:Ìë¾§»Ó[é°ï(=ãÌÀg’6u{°:ƒ´ÜZ‹Äuá·­IKSfám åÔv²\ÇÞä!Hí±9$$m$ôt°ÒRÃðÆØâŠ6òµŒh4Ѐ¾[åÚ†Åd­¼]꣦¢£‰ÓO+ŽX7ïß·¹PÚÞû¿Š~5Zkit Œ²gBŒs|¢{Ë#ƒ²w! ã¢™Ô4t´0PPA--,L†"hk"c@ c@Ø,ãºÝ_[ÀʹáˆËKEWõÙñr‡зâÁrAZð/‘µ9Œœ´ü;)UöyYî/â5öòÚ(!´ýÞJ—ÀOë#cÓ8k‰Ágî*xˆáþ‰t´tµÌÔWh݃KC ,Œ÷ç› þ—7Cþ1ñû[ñÓÑÕÜm³H ¶‰îdNo¤‡¬Ÿ'mì°ÝEL’?ó_9æÆO¯R³ü<ñˆ¿v­‚ÚlÖ9™æ ­Á¼±½§§–ÏÅ&pp@åõ##3s„\áßi"}ž ½Ù¥®uÒá e˜< f<ŒD:þ÷Ü••¹I9!rº¯uLämüUq²¡ùºª‹_h~®u»AÙ4e4¤Kz¬uMKZá¼C\:àÈööeZŸg–ƒ‚¢¶÷Ä•¸>J'6†Ó;ŽC$s\jH¡®¼ÞŽxõS< °“yž'[nÐTS6vÃH÷>'òòÌÇ1ÛváÍ9ôßbµM da'×e±Oö÷Rx|·O‰1Yp¬¼Ý0%1ííú¿Ï+Þñ_¤]«ø ¨è¡…òVPÃúN•<ðüDÔ’ÎvêVº4Å]M²éIt·’ÚºY™WLᑉcp{z{´-±iÛµöÇCz·KæQ×Ó²¦c±íŽûŽÅr¾Û[v±Ü-rJø›YM%9‘Ÿ‰í-È÷ʰ|9]g½p®ÅQP)ã ðˆàxsYÉ+ÚHÈ nË&n©Nè„*c9ÇÕc/ð/‡üM¨‚®ýn–šáhûí ›Ï`ÀäqÁænzgeøƒàº²*8$ÐZ••µ,ûÄ7oÕŒŽNG1¤g;¶TYÕÚ^ý¥ï6ÍAi«·TÁ3¡pš1®p;ò’0áŒGPAî¼1œs íÝH üwºðæÐuíu~›’ny©¿ÚCŸÅ$g÷ºe§cŽÇu°m7{µj-5âË_uS⚇=6èGB:ƒ±^Š"""&FqÑP‘è‡=ϧªª¨ˆˆˆˆˆˆ‰ìЀޛ ;tUDBˆˆˆ‰‘œ"*g檊Ž8]G$ä ×&‚\:l»ì2ˆˆˆ™ÆwôB;V ãW !ÕÖybކšóI{(êäòåŒàíøË qåõ8Qs^øyÔ´0ºç¤).b>b?DÜ¢å¨g-ŠAðËÓn…ݲº81ÇÝUà öØ.ðÕÔZáÈ–Ó\Ó<²á˜÷ê0Fçe/xaÆþkÙ £·]~áv ¶ß^<©\}OÃ!öi'KvUëÕ22ªyãφ‹.°«¨Ôº*J[£{Œ“Ææ‘K\íÏÆõo'öÚ{‚NU‰Â¾4k~^©tmVQü0ÓÕNÃ$±ls1ã"¦!‘øIplã•KÚi¢©§Ž¢žVK ¬ì9kšFA¸!v¨zw+†ØòFpµâÊá%ÏŒiåg”Hkq‚G3°NÛ“²ÃÌcžì4d©àFÆËhj‰ÿèE¶ª¼‚2 ˆlÿ¯“ô[†ª–J¹)cƒãc\ oM§\¨åâÅ«IMS§49Šé{á“׸ÒÓ»©kwýcÇÙêH aÿ œ8«ã'îZ㈵—k=)/žz—žJêÒ[Ëí5­É-ÈÇ zÒÁ4ÓÓÅ0ÄÐÈ㡬c@4°m…ÛÛeUMñ×uø÷â;OèMfÓ¢žûŵ çÿW£Àÿháøœ|äo’6p“…:»7è8ÆJŠÓf$>‚Û&XkpA õPwÀÁ^›™{IM%,T´ÐÇ<1¶8¢¡­c0ÖØ1…Úâ2pê}ñCÅ;§µµ t#LöÆ\ na9¸Tä´¸öòY’GȸöÄ®àw¨8aú-/G#g¨5õA¸ûÍKÀç~; ´Ík{«ämÙyº–ÏlÔ6*Ûæ–:»ut.‚¢ô{]±éÐ÷náEn(pc÷ lSÜ5,÷úŠª˜ÞÚ*WT<–òþ­¡ Üç™û;ô8'ˆtÑÒœÒö¹¢•2QŠªŽAø¤˜ù„ŸS‡ôY~ëÏt¹éO•W Ÿ–ë6³ºGi§€1ÏÙ´ÍŒ<¼| ‰)ä¤çç×û’Ô· é‰ÁŠwÆ@ßð¸ò[4ð¿m¯º&—3žÖÊœã>q2çüùÏ~«%mÌNË[>&¸} x±WCE•e¹ƒ_k lq½ÇšýÇduÎ Ou-ükh5W ¢µò†TØÜ)\G0·™§®IÜç賞sì=U™Â}5”Ó¢¡¢eMUTþSj<ÑñÔHæœãrA·§eyç¦A€o±T>ÛFU·æº+ji¨©d¨ª©†žÆ_$²5£¦äì;,;ãV(á·UT¾d–ÒˆdsœÀú¸îRw‹Z£»ïŸEé[a|‡H×eíïÊw[ðw¨]|áÔŒu¶–•°ÊÒÙ!­d¾iä %ÑóD~„z…›û¢{"""""""""e0¨2ƒ“ôT»~¡rÆÇeTDD^%ëTYíUÐ[ê*Øêê‡rÃKÇ,‡Ù£'w8/b'¹ìs 2:¡sßÑS' (2}B©v1±Âª".¹Hé‘ù®ü-9ö\ã>øø{dn»;¢Æ:šçQ§ø´ji(+*Ÿq·FÙËg\l‰Î %®;é\ ƒÑd+%Ƶ¦šåN×6:ˆÃÃ]Õ¾ ûƒ²ûU]5=\‚ªMºµã#çó÷X¿ŠÜ(³ê{{›-Žšðyj]úà9y~ ¸ësìTiÕ¾e&JÍtšŠã,ÌÓ×i„sä4;ÈO7?0øy€ý¡…’<0qΨֻ‡|M¬–ŽóO(¦¤¨¸2gI‡ Ä·Âç‹ d’3(ºö*ª=U@CœmÕSç…çjŸP[ÍêÝO]MÌÖLÌò8tsOV¸vpÁ—£C3¶ç%`:!\]Ð9Àànp«¸Ø.sñö˳KjÄüá¥íq¸s³víø\:Œàî¬ú8Yˆ·$•-¾Îj 3wÖ÷7@W =IŸ‰Œ‘Ó¹í3dÿu}þ-xå&ž¸ÝtF’­×Mð\«ZáŠ_€4ÓÃèìd¼ö; óˆÝÁ>ßx·®éìT’*8ñ%·¶’F]¹q;5½Iö›h3eÑÚb‡Méê&QÛhcòồ¾Kœz—8’I=I+ÙB~X÷^&±ÕzHYd¼jKµ-¶€éž¤ g•ê÷Íh$¨qÅÏš»_Ü¿¢œ<£¸ÐÓV¹±A39®]È%™äu =˺«ûÃ÷†kT”Ú«ŠCq»‚%‚ÑÌ%§¥wPe=%¶íÚê%01EÈŒ5¸½%’‡ýiÚ—²ç_79âÝÐÂÿÃÆüòu nÞ ÙðÁ葺»SÒƒª®1~ª'·ÿ¡´çý˜úÇ Þ{lÑŒ;šB€}WËx¸RZm—Jù¼š:8QQ/!w$lisŽ$à°Q;Œž. m ¨8mA(’Vë¥Â.^BGû(²r}ß jmMyÔW‰î—«…MƶbL“ÔH^÷{oÐ{ ‚òÄrË3aŽ|Ž8kÞgõYçƒÞ¸…¬ÚÊÛä'IZÉ̸Bï¼È3¿$8|ßÊ:c*ZðËï ´#¡¨§²6órq[u"w‡c«YŽFûa¹«.26µ 5¬ƒ@èUåÛl*òûœ*·m¶\¾AUtÖTÓÑÓKUU4pA ’È÷rµ$“ذͧ‰Ðq_ˆº;Fš‰tí¶'~•»² a¨æžS ÆÇ|lø@æÍ1±BÈ¢`cÐÖ·ÐÌðšÖ޵ÐÚÖëâ*köÇqmÎ÷¨æ¹Ô¤²x1q™„|.ŒF $Óœ`©ËÄŽ6ðÛ‡²Éo¼_c’á D‹u<ù†0oÃ9Ø<·`½Žk)8ën°u(YrtÏŠœ<¸ÇesOWa œm¾Ë x‹­¤·q ‡ºŽ®¡ì£¦¾½¢7”ùÕ“$„¸vi~ãç©!={œÝQtkälœµ“æaÍwÆrF:ÿÚ¶sÂY ÓüÑÞêèíΊÉEtÕ k Ä .ÁÎ3²ºhïvJÉ›%êÝS#ÀådU,{òî¬/ü*¥â·§´4ÅOz¤.žÓU <±ËÝŽ#ö)ôØàã )xNµqSJñ¥¶ K=E©íqý-Æ#‚XX~&‡†8s’Ç ‰hß ‘Ùy:^Ák¦þYÄ{Á vI9ß×=×®žª™öCœm…Aœt@1·ù(áãêã¨hxWGMokB×ÖŠ{£°Òs³ânû็qé¿P¼]1YQÄ?WŠ{•G›=²ÕS{ÄE üèÇ~HØ=ûõ* ¶<œÂw |pχ:¼Ò{Åéï44[¤¸Q»’njlEÊý± -czƒŒàžt†ŽÓzI• Ó–˜m¬¨-/dYÁå ‰Ûÿ甆""›¢"""""""""""""Çp~h2>IÊ Î0S벨Ü*¢"ÇücÖãKÚÍ#Ïéãæn:´†ãÕÎ ãºzl¾. èúÛ]õ ø™¯w‚àöÿÑãÅ­ÎüÎ9.'¯Äe’šÌ&;ôTqÀëºèظŸUañï[ ÂÛæ£lÂ:–S˜(‡wTÉð³u»è±‡­a©µu·TO©uUÙðÉJÚxªfç|Må3±Ø8à…I4DDCžÈ±×ìP](©çæÕ7–&H6sc23Ÿ.ßáü;ÓèàÙ•Ú^J^fóÓTDzÀ>,8>¼§þ˜éIZ¢ÝHXiÈÚãwóul g•Û‚pÓñg¼¹êÎMfÔ«Péé…%[*£s&tdf7<;|ìæ“ý…šûªýQ{¢* áTåpvûdœ­Yq¶Zi¸¡~¨¡<ÑyíŒü8%ìhûy¥YNv»»aeqZ³‡¼2Ô–M<ÓOz¿UſׇàÁNÈÈÃç.s·Î;nr¯$᣹;àd’pãC齦)ôö˜·ÇKGïÀ2Îþï‘Ý\ã¿Ë ÀÀWKvÛ! +q÷ÖPHÄw-I39©èC¾èùˆü-îWvÀÜD5`âˆýk÷Ùëe}$R«/Æ5 1’ØØæw£Ü‚âHš|"á>á°Óéë=lŒªçRCêj|»³²Üe}‡üÖ(Ô^!x]aÕu~¾ñX'¦•ÐTM²Cƒ¨.h%Øé–‚=×Aâ#…–ý7[s ÔÔ×*˜iÝ$QÅ#e™øø[‡4c''¨ÍÁk—*5ø©ÅíiîÓÕ›… ®žŽ¦q¼î ’gG›[ðÆÔžÁH©¼Oðr9\Øõ |»d½–š;íñ0ßÇ窃Ŀk9ZÝY<v6žÕVÐ3êï(´|ò¯?¬tFµ¶ËŸPY¯4Ó±ÑK'kËšá‚×0ï‚20Fê=ñËÂΗ¹TZÛÃ߸éëehlôõwù& |nŠ"\á±å ÇÒ )â¸Ï&¬Ö®š‘³ vÊ_-óDÉ{ŸžG‘€Œg'8;‡Ü1К(Û¥4ÕÍÈ5EžmC²7̮˷uW›Xs“¿¿uÈ7׿L‘Ø]º/žåYGn¢šºº¢ZH_4Ò¸5‘´u$žŠÚá×ôSÞì|æÅT”Ôµ/ØÖ:7r¾FŽÑ‡l ÝÄ€šîú/[j»ŒÓóßuÂ:*(Gâqø¤wf1½\ãØµ>®â'‰}\í%£éç³é¤®I?«Š<ä>¡Àáòm´M8Ï~®R³…z ÁÃM¦´ô%°D9æ¨~ µ2ŸÅ,‡»äØ+¨ì7?Uäj½O`Ò–—Ýu%â’ÕFÓýeD¼Ç÷Z:¹ÞÀT[⿌M$´zÕ„VÜn-%ÏþÓ!åï9=Ú Õ<|âF¨£™µú®àȦikà¦-›‚0= î±%MLÕ2¹ÒHrù q'ÕJOV®'·QPÞ´Í+‘|£¸ÕUÌ<žFr½áŒÏ1~KC\ÑŒä8Èþ/«ÉÒóURµòÏc¾ÍC.F>õD%h÷þ¶1•ª¸©®¼Me»EÆË¶åOKv¤ªtœ­§¥ªçt~q;å¾[Á-Ï/Lœ,áÇÞk;Ÿ ´|¶Óxºi‹3(k-®œ–LÖ ‡S‚ÖµÏf\Ü–µÏhopˆ7]¬uÂ;•º¶ÓY  –TÓº cp鱃·ðY;‡ž!8‘¥ØÈ)µµ´Ãý…pûÃHôßúœt‡ŒZgµ±ê$ý2Oj¨'°l2>¾bÌš[Ž|5Ô”ËhÔ0ýî*wÍ÷ ¦šiÝÊÒâÖ‡€vêÒGº¾´Ì†ÁCBæ:žš(ÜÒì¸ÁœžçÝz\Àœt\³ºwT*ª›‘è°§ªVÔxmÔÒ¹¹u<”“GÛ”ýæ6çòqV_ÙíQÃ7ÛeD1KWÉZæ¼d=’CAT2â>š¨Ñ¨´‘Ox§ñ½Â*ˆßËÌÉ:îÐAìF{œÜLw3A ·#¡\Ñ®ÆA힥k Ä YøÁ«(KØþ[¤ò€ÐG(‘æ@7þ+ÊZÖ»™Ä¿× ¦‚9ªê› Q¾IàF\÷€Ð=IÀ[7ð×à .ðÞ’Øø#7ºÖ¶¦ï>ÅΜ´~¬;ä`ø@éøW”@Û öUø±¾ÀÞ$xýmÐv¿Ñfx+õ [dk$Áñц¹Ñ¹Îõxs\qÕ¹;uÜáUû޾ªû¨jk›§â¨sî—’e­›baÇö°G3¿dcÙO«žÑ§,ôö{%ºžßo¦`d4ôí k˹÷;žëåÖÚ‚)£îºš¢Šººe3ê$§¥ t¯kFO($ †O^ƒè¢§|VËz¶Ó[8yC]lª’VùÒVS2J’C˜æˆDr8H-9È;`…áóŒ×›'ô–-7ñT½Òý΢²8ªÞIyc°Iè\ì¼Ú_q­©û°ÑSÀцºIëéØÁœož}ÀödàãVTH°Õ¶ËU0hsa¶±õS;Õ¥Ï k>ce‹„^Іýþ]Cyv>6Õ\<¶8ï¢k0=³éõ¸†^ ¼¶hÎ@͹UÐoŸ3®ËÀ»xQáƒÜꚦ¦²š\×ÁrkÛßõ¬q|ÇNÊ+ðñÚÃWx‚·Z4F¨7›UU_èK•âG¹‚ž&¼µîø\[ÌÐ6 êᲑ— OâÇKË+«ôm“RS -M˜;l‚‘Éù·ºóeñgz°ÎÚcº«lì$Ï}d´ç9íàv/ú…s[<]pö¥Ílö-ON1’ñ<Œ:blžý»/j—Å7 ¥æók¯8v}²CÿW+ç¬ñ[ˆ tM}¬#8dVâ×;†G4~eZ‡Æ %\Í·è]q¸VÊ9cûôƒ¯#oÔÁæñµwYxuÅÎ4TÒܸÉrvŸÓ1J$nž¦g•%Pnv‡-¤“»ËŸ±nARVÑn¡³Ûií¶ÊXhèicÁ-ådl`Æþ øÕ`áM”‰y+µD|ÔVî|lN<Éü,û¸Œä`Mî#ø‡¾E­8]WeÓ“KO O9 c³åÇë#²çvÎr%¶ŽÓV-§©tþœ·Cn·S7Ãêq»œz¹Ç»‰$®Z›Réí1o}n¢¼ÐÛ)Ú3ÍS0nFq°''r:(ßÅoöº8f¡áõ¹Õ•„\n–Bßí2,‡»Û›—~Ä(‘¯¸…ª5­ÔÜ5âªáR_ð—»àŒ¡Œ4{­™ikj©jjc§–XiyLò1…͈8òŽcÐd{•zxxÒÍgÅí7¦ïÒ=–Úú™8d¦786¼48n ‹ÛÕK‰áðÁÃyK£$Òtò_|ècs磒´@ùyy ß) ~&ôÎ3ÑHÚ *J 6QÛé)èé¡ÈdD#crI8hØnIú¨ûâÞÖaá¾½®kaæ´Ü+zÌavwßàŽ%‹¼(q9×-m¢ôäôïTVÚ›|• ~[58Kp?‡ËQòé¾fÖ1ïî ù.¶«eÚœSÝ­´wAÈeT • üœ ޼kðéÃ=Qª¡¤ÓwŠ=«+`}LT0Ä =c~'y#§¶XGsÊTL⟠5ï k\ÍSh{iþH®®2RM>Ž >ÊÆòD.~K,ð÷Ä_4› §¦Ô2UÑÆ@µìûÄ|¿º3ñ4|œ|Ñ^1¨å‰ŒÕºVF»öê-3Ìqÿª”ŒvÿhVqÐЭ mú²ÑÄ*XÏÝ׳j#i1¸œut`þXgÃÞ°+‹ºnúfò©â­d5d“»Ëú¹ ð×—cÕ¡m'²HÚøä5À朂B 找Qt@ˆˆˆˆˆˆˆˆˆz.N䜠ýW!7!Pd|¾J§8Ù:w= ª""§0æåÎꨈˆ¨ã…ÒK½ŽêÛâ6­·è!uÔw Øh)Ÿ0ç8F3ܹØ UZžûqÔ7ªëÝÊ_6®áU,ó¿÷¤{¹òüKÊp qê6)ùà Z¶ùÃzÝ7W[,× EFCâìS¹­l|¹èk†–i$‘¾;çêk ŸRØêl—ëu5ÊÛTf¦œÌxò €Aê(Gâ3ÃׇÔòê=uÛNFç>ª’FóÏn`Ü88ÉÉßh9ܯ«Ã/ˆk¶ž¿RiÍer–¿MUrÅMCùä¡y 5ÁçwEÙÀôÈ#¡œms\Ö¹®t!rÝ]LmžžHçÈÒÂZpFF6PÇ‹õ5Z[Šp^ª0ûå#ÀåK)sàÛa8œç8,äã&^ií¦ÓVëýµÎu%};'‹™¼®hpÝ®œAˆ+Ö ôTUKØöMæ°å„~±˜ëèGü»ý7íiËA9誈ˆ…ôß§¢×ÿ 'è®7¾àÂnÖè*¹[Ð9¼Ñ;·_Õ‚£Å^>ê]ù€Ççÿ%˜<iz-QÇ»p¸ÆÉi­4òÜÌO$¾>VÇÐŽ{ßðî1•² ÐI ÷è¹s€*;x‹ñgÒô7£«Å~ pu<µo Æ ƒ‡âŽQÐñឰߵΧ§°Ø©%¸]*äsþ,ò°—I#ÿe£9.>¾¥l+Ãw ªøYÃH´ÍUÍ•ÕòÕIYY4mq„Hð$YÁå­ÜÎNp2Qc°\@Ü•rDø¤Ž9áÊZFC†0Aöì¼=;¢4Žªž®Å¦,–Ú‰ät’MMDÆ=î'$—ž¾êàäõܪàÈS”äzcªäFzª1ºÄ-õÄ:#‚——µíûýâ7[(™êdiw_Ùg1Ï®qû:tÃëø…}Õ’syVŠÓE¶Î’w“cwûÁL½}«¬KO©5-wÝ-ð>8ß#X\KžàÐFçsºOeì\((®T úJjÚ|óysÄÙvÆpr:ù«Qp+„Wé]-Ã@Ú+ðKèÚêGó„µ[xXàëœâÛ-Ò>n·yþí—â½O†¾ Û¦lÃE²­ã¡­­žvð¹å¿Ád]1¤´Æ˜€A§týªÓ"Ž‘‘scÔ´dýW±É*Èâæ®¸éí?SM¥©sÕ•j·ùnÊìÌCNÍ“ÌpÑÈX“‡Ü ¶Øn£‰\rÔ”WE#¼ï*²vŠ*GŒã%çõ¯hÆ:5»€—©ÄOü;ÓFJ[¨ÕÌۧɦåpÜ{±®QÇ[ø§âf¢|Ôô7 {#ò²>WÛ2»/æ­åÑa›­úñw­’ªá]W]Rüþ²i+É8îâOº÷´Ÿ ¸¬(…vœÒ‹…+ŸÈ*,EÙÁÎÀØõôRS@x/£dtUšçVTÉ#£¨·Û"l|’|$7Îqw0$4g;óõã…:~Ýxsf³QÚmw 3ò¢æ-—¬s8ŸŠG1á®Ë‰' \mŠ÷ µð† MCz°\6)l±»bîž ÷\Z»TÒkjVS2šžåz¡‘ð¹ÁÁ šàNw}–Îqñ8޹ß*8øñ¾ Oj¨[ l÷Ûœ4Á¼ø&(¿Xqê2Ñþ÷È(¥á1áüx°Q9¬&´OJÙ¿”_ Ç09#·Ílðdv‹å{«Åk9"ôgÆÿ0µñ»¶ÊCùŒz¼eêYtwˆžêhe1›u3'“L_y"FüœÂæŸbT¹ª¤†²žZZ¨!ª¦—gÅ3Øñׂyão‡.êIú"ÔtÅÝôÎ|SÛ™ËLdóÈÚøé0yyNßEx½À>!pÞ¾G×Z¥»ZÌwKtN’`ŸŒ˜Èç˜cЕŒ¢Áð¿¾F:®økg§på{ÁæØç¦ë#èÎ4q Iº&Úu]Ê(X¨–_:ß°üŽË?ðëÆÞæSk=¬È®ÔyѰÞAõ$<{5H- Åþë#6MMFj¤8mIò'ÎqŽGã'å•}ýŸã…Ž|L8­Ë£2ÿ找M¶?N¿E‚þÍǃeÖ±sᦌòŽ˜ägø) Æ­GÄn^4•CblµPQÍ& –ïò2@ænZ\;­XMMQCt’–² )êiå1MÇ+£{Ò;Gð[ ð{¯¶àõUºK”Š ¾bKœÌoÉõnÍ¥fo檈3ꈈz""""}QQÝ7Lã8UDDDDDDDD9ÆÊƒ=2¨®3ê«D; †U9¶ù¦IÎ1•VôUEG¹¬isÜÑÔ“€‘yânŸ¤ÔçK[D÷{Óatϧ¦–6·‰çl’æ€w#¢»­o¬–ÛM%Æà«|MtñFþvÆò7hwpÙî¾0QD=:®ñ‘ù.’HôÉ8 øÿâu·*-j¸‰¡¥y¬ºÞK|ìrÇ þàq2ñÜ(”Æ—84 ’v ÝÕzjñdÚ»´´÷jQYB÷Œ ¡$€áìzüˆ=Õóá{ˆÏá§éo3ºGZªZi.Q7©…Äp;–œ8|ˆî¶kCWm,5t“2zjˆÛ,20å¯c†ZAô ¯¡§#…I¢ŽV9’Æ×±í-{2Áw [ž'xnîñ*¦ßCNábºµÕV—³]ñÅîXN7ß”´©WàÉlÖ<«œäym>ÿÉI¾ðK†:ôu]-Hû…!.ŠáX<êâOÅÌzð0ÈÁ­cCXփРù!åí·¶ë‰Ý™ /øÕàÄÚŽ„ñ#LS6K­9zV4óÖ@ÜrÈÌ~Üc9øšzŽP ¶ÖýÎùMpÝ –Mðõ!®oÉm·Kjk>©Ó”ú‚ÅTʺ¦s1ÍµÝ \;8ˆQKí¾[ÝgÓ:t=¯¸ÃU%C™Ï»#òÆå¾Ž/9ý‡l°ŸƒYc§ñ¤å‘Íh|ÓÄ2ÎmÝ€|Žý{-˜À$€žVŒŸP{íý"iP@ ÙÞ »ÿ\TÇá¥c.;ÓuÑÍç¶{U3üÌç›17%z—ku5Êã©i")£˜ýøÞÃôsZq칌r‘¶û|þŠÑÖœ0áþ°¦0êMh®Éæ2ýÜE7NÒGÊñ×Õ`>"x3ÓµþmN†ÔuVi°\Ê+ƒ~ñOžÍ HÁžçœ¨ß®¸ÄýçΑ¸KNÞ•T ûÔ'=2Y’> ,xæÉ\°Iâ’<‡1í-p;ìAÜv\Yq¬…Ü͑٠ƒŒéî²? x÷ÄM QLmÚ‚ª¢Š'7ž‚±Æjy:·”îÜú´ƒî§µõ£\-–åWhŠªÄÔ7+kçS–œœÊöžàwã+ÂðéÁ™¸G©5—“_ e–é4/¶üèãiêäÏv󑳺àg3¸Cºç¢×׎Í4·£¥¥lvýI © àT³ ›êrןï_ö‹GqÖúù÷Ê¢sŽH߉Ç“‘ƒÌÞ‡ñž˜ßa ‚2ʪ™ß ¨Pœ&þª¨ˆ‰°©É nS9U7DDDDDDDT¯D˜UT7ÂàöÈ'òAÌ0‘¿§Uب÷6>‹ÀÖZ®Õ¥lî¹Ýêb¦‹<‘‡¿•ߺÑÜÿ!ºƒ\Yã¬×Úâ:öáKn3OLÉ€`Ü|nåhÎ7Æ{zÖPðÕU¼X¸Ô:ªž¦©ÐÓÆÇ½™•œÒÌZvÀ%Ñ4õÉÊZ¢""!ÇUÔò3‚B·8ª)4n‡»êz¶>HmÐ þW=Ä€Ö‚{’@Z¥Õ5µ÷yê*g’ie{¤{Þîg8“Ü÷+íáî­Õ:¶Ùa· Õ\'eÛ¢"",u¬øOl»‰çÓ—ËÖ¯åòÏe«| •Ç©|mpi'®Fw9^dž:þËf’}ŽO5Ö6󯊮‚?cõ­w—ŸQ•ÛâÃ‰Ö ¼ÖËõ‚yédtUPÔÐÉí{]‡0òÈHÜnÓŒ,¹Ã?:>ûTººŠm=ZZça3Ò¸ãs9š=ˆ?2³ž˜ÕzkSÁæéÛõ¶æÐÎr)ª÷4tÍ-ú€½¥BŒßhURp®Áp!Æj{ëbÏ`É)æ'?âŠ\K]S–€;,µáZ¸ÛxÍ£žÐÎynl‡.ÎÞfXqƒ×Oî2kª.pòå©êù,#Ê£„Ÿëª³?‰>À­qYmú‡ˆÜB¥´A7Ÿx½Öüun9œyŸ+½€$ýØ— xi¢økg¥¥°Xè›^Æ6'Üd…®«©yß'âÁ$žP@ÀdÖ\\@Üžèâ '.ÈOü×&·|»sü—$÷T=zd*oŸòU#®êÖâά‡Cðâûª¥å.·Ñ¾H˜Fy¥#·êâ¾ü1èJž)ñ®˜^bûí¶’G]/”’%o>C î^òœÞ‹e| ï×*)}£äÿB´”=ZëœÇÛ"-¿šÍ^k]À 3åläYᇘtÄmä úrãè²)ÎWËs¸ÑZèe®¸ÕÓÑÒBÞigžAl¤“€£ç¼Xè½;ÍI¤é$Ô•À–™œã+=ùˆ.^€cÜ(©Å><ñ\Êö]o’ÃBâKmô'Ȧhì™ýãs½–5´Ò]ou±ÐÛ(ë.5ÒŸ‚ h],ù5 •xsá#‰zŽhê5©t­·sªœ&¨Æzˆ˜zû9ÍR§‡8Y£hbiê}ErrO[w`¨œä‘ ³0vn@$œ“–é †š”ÔÐ2#¬Ž6µ£Ð° ´4z.MtUóŒz.Øt\\7;gæ¨{‡¸ßø-Wx‹¶Ãjãž³¢¦¤Š–ž;¼Æ8¢g+×;˜ÀaÝÈ~øÏpáµWÕtÍ|´òdˆHfcð¸¾Ä "Éñ«$Ö¼B©¾–bžøéœð±Ü­# zéøT‰¬ñ¢ÞI ý á*L-˜‚1I÷\ÈØz(IöÅôÃGÌúé-Õ {@èÑ#KOæO䤅kù¨ðÕ£îUÎЉôä€ ω½?²À®=!Ä:-a­/v;$Eô–"#¬«sšCæ$€ÆAŒçä¯3Øûo²¨ €AGåüÐg $oÙZÚó‡Z\ÄÖêÍ/lº=­!³I,ͳeioAЬ­¼h›„“O¥õ ÚÆ^שçkj¡cûNËós¿e…ë|ñn*Ù §~Ÿ©†?êçmqh”uØä}@W&½³ñÃgm‹s[ÒYj¯»}9æþS—‘ðÆAi ââ1Ñ[ÖÁ’HÞ`9ƒ„Œi~àG@µáË‚·[²;|×y] ² |Ð44‰ZZìµ®.x9ìå%8'ÁÛN‚&ï9’¦ý3\ÙgóÈÆ¸äµ­Îùç ôYPlcÿ5Lí¶ût ,xøÖ ¤²Z4dNÔ;ïõtã >,H؉#°‘„ã¹ÑAú¶:z—;ÔÿÍL_z¹Ý5ýl½”ÐP6X²æ˜ùùšOMÝÈ?²à¥6´°Ñê#vÓUä}ÖéG-,Ž-,çiÀ²ÒAà-OßíU¶[Õ}†âÆÃ_o¨}%S²$os3ßpw^Ï 5mÏEëN¨´< »}C$leå­•ˆý—4¹§æ¶›¤¯ÔŸLÛu¥üôWfT@HÁ pθÜp½p^§ ‡ß-Ôñǹ4þ©G²Qµ¶{«ÚË‹bf=^ø‘Àtlƒ©ýþ§.÷üqdQÌxk~«Ä¼¾Ë,…¡±¼ä¾Nøq9o]ù‡pØ*®¹ZDZ̑­s!Í# B ]_ mzÓè]WK4¥þ9á´Õ²N‘KŸ+â;óÄâs×ô!JŸ5—*-5WÃëóüËÆ‘–÷Ì2M)`},£ ãÃOö˜å“Ñ4daüQ¯ü;úû&Ïž‡÷p¹"/VÙíwÚn½éÚ[å0“É©¦†xùÆpK%ÛoQºÄ÷Âÿ µ,3UZ¨j4…ÉÅÏÛœ[9ÀüÇÊ ü,äÏNe„/¾x½¤ª…ãGÞh/¦Þe<Ô5N£­ˆdà°‘]ü!ñhè©¢³ñ&ÕRjiÇ“-Æ–0$/nÇÍ„ãÏRß}‚Ï:{Œ¼0¿ÔÓÒÛu•¸ÔT9¬Ž‹¡sœNÍøÀß;cÕZ~5è ­ðï–VIG=D{gï1°Ÿ÷^å®) i›.=º|Šº8}x“Oêë=âžWÄú ÈêXæœc•Ã?Áf?|Fþ˜qXmµbK…†8Ë g©~ ’du°zaÄ~"¯:¨}}o®´Í¢'ÑYüÆî÷4Íôƒ{žaÙL F:P9ÎqíþKè_5cú0|ÊåNЃÊï²!TOeB@ÏE ~Ð~ ²J›gh*Hà\.¡Žý§ C½ÃKžAý攼ðþMÂî—*vÇuÔ’6á/Á‡²Ÿ”#q?¶ ¤vYß$œTVûGØßôy¥¥ÈeÝÌ×0»'øÍ{ž8™£´…ÝU«/QQ>Xª„00%—–ªa³FOA×a•‘ÄÏa’º‡Ö8ÚÐpêÛ«I$m»bc†;þ#é²\@â–³×u¦«Sjë‡)掿–ÏO‚&á8îOrW¿¢øÅ{PÁC¤ë¨idß{¹ÆêXÛp\2áýÐW½áöÍ_ÇúÝ-zš+µŽÀÉå¸>HȪù"kñ‚‘Àï‚ZÇ-€iM+§´¥£Óv]šÀs²†•‘s0 ‹F\}ÎI^Ó[¹$ïë•^\ATè9@ÉUö$Ÿ‘Uù•BÜœvÙUá½Î=W[¶nØÀôIq€FOù-ixÇ€ÒxŽÕѵŒºh%øO^zxŸŸu!8ÃẓYiÚ}W¢£ý¨æ¡§’zgL~íVï)¹üYåMÁÁî3º‡¼BÓÚ‡I^ݦõ,”ÕTD“‰,Á®<§¡ê3Žêæð稭z{Œºfùz–Jz §K[XÖµ¤þö  Î`ÇB\:­dx’Ї‡\\»Ú#‡Ë ©•ÕÖîVá¿w’6ß•ÜÍÿ ɾø¦í3ªŸ¢+éß-¾ý0’9Z>*yÚ ŽÙ,- ‡ŽêvüÕ~¨ˆˆˆˆˆ„"*oŸeMÁÇe]Žê™ô#8ú*·»5TDDDDDDDDD\ G6Oª·µ¶…ÑúÐÐÿJôí¾ñ÷—Òýê.,»—›Ç•¹c½øbŽ£†ÛQ´1Œc@kZÀÐ.Јˆ‰„]yqqïEÆW çr·¹ÎËY>!µ„Úߊ×ËкŸïEÀ‚!ÊÌ|÷q÷q*ijR:¾ïGH"55Óµäd7ܹDZ+i+Òôz3‡v-1E – }#Yæ–òù¯$ºG‘عåÎú«Àga±u¼è#f×ôzê‚.Z=AŠ«ðUDÐ3íÍiùµÇºŒ<ÅièG¢Í|ñ­¸ohŠËDê+¥’FÒVÄO)qÉå{HswßÎËR dáTsƒÍ3ŒîB¾ÝÕAÜù.9ÀØ`ý— älQ™$sXÖõsŽú®º9 KyÛ“>Awç¾tœ¬Ç3ùs°8îºÝ³OPu¯6©k|N×QQ–ýæéK@{âdc$í„n§††ÈÑ6:WÌf–žß Ëнì`cŽ:ÁPçíkÿÒ•!İÚyvÏvN{çoËÝbŸ ZR“Yñnß§+ ›O[MR~!ŽX‹‡á õºçÃî¦Ò…×m=u«µî>’¹ð½ËH{žKp ®kšyw;í”´'o‚&ÐêØ †²$ÓÆáËžo0|õÎÛuX_ÇÅÊ’¶Ïgœ´>ðÁLìþþp¸9bÃ+³Ü8¡]¥xejlT‰jdª«lY-c¹žùF ! h'>ëd¶eºÍh£´Ùéc¤·ÑÂØ)âŒ|,`Ϻôã~Š£n‹| …ȸ/.{&2;a|wÚzÚ»U]5²¹”5²BæÓÔº/“! ùÎÁßjîûU©ø}ÄË• —ªkÕš¾H[O#ã{Ü×ÿX×g›výC·[ðñ©nú¿ƒkR_fmEʶæiCÎrÙ^À↌à ÕÿŒ@°Ž]=¦ëx+]¨nvšyîöÙiã·ÕI™Q^iÀ°»á9ßV÷m- j­ÖFÜݨ¢` ®elÌ‘‡aáÐကàêOÂGÎQ¢""""Š&À{""}ÊFçdéÔÿÇœ“=×6ô ¨ˆˆˆˆˆˆˆˆˆˆ¨¾;µ¾®ç]l†ª7VP ˜³ñ3¡Í8ô þkï¡ Çþ ‹Ü²ê'>›e‡|[kÉ4w 䤡˜Gr¾—ÑÂážfEËú×´ŽàñekÖ°»˜~ÉÀg?œ3¬Öþ—UTÄÖXôõSd‘îÇëªCy™õÆC¦Þª~ÈžÙÉLŒdô=qÝcï\?‰|,ºé€Ck¹EM¹ä€S%™=ƒ²ZO`âµy·UÛî—i)k!w,ÐJ9_½ìw\`§óˆÃùOAØžô…ÝQ¬8qgÕÚSRZ§–ºœI-`t.„ä‚ÛÌ@F@ê¼ [á¿}{ô£î”äµ¾e²vTnIÛý»ž\U‹î´—« gܯ mH5tï†Aók€+Ï«©|Øs¤æ#Ô¯»MêKÆ›¼QÝ­5rRÖÑÊ&‚fc™ŽÜdc¹R7Jø¹âúV;Eò0Ñ‘4D„÷ø£ÃáY‡HxµÐuäC¨-uöyð™÷ÉÛaج£¦¸·Ã XÑKiÖZ™fý_Ýj¤û¼²ç ´G(kÜl …Ú·ô߇^7Þ-¶*€mò5²ÓG3y£ž†WØÞr[‡3›®[‘ŒáM>ëkNºáͺëj“K~íQNçeôïfÜŽõÛ=ú«ónЍ¨AÁܪ¢ kt~Jž\g¬mü•9ü;{vBŒUÈ7¡;›|Õ6=pºj ‚¢ ©dsA+ %ŽF‡5í ‚×±0V©¸Ág‹NñKTX¡´Ôôwiã‚&`¶8ùÉ ì ÔŸ"‘À覇î¶Ž–›ZÅo¤–±ôB!-VL‘ù’9ÞdC”yc»ö·ìå.ÚÐÜîN{’Ž!­.q’Odcšö5ìps\2îãó"-ú…óÄÞBÝ},v[ÿ5ÈôDÇ¢§p±ÿˆÙ,là†¬n¢­šŽÝ%½Ñ¾HHs8€Æ·=Iw(Ç|¨/àÞ–Ý7ˆ?5eæšÞÚS4°6o„Ô¼°±‘7lslà‘оØåƆŽånžßr¥‚¶’¡ŽŽzjˆÛ$r°õkšì‚¡VÕ£†|9´UÃ[kÐ:ZŽª <Èj"´ÀÙcvr×òäÛe>Ñú‰$Ôº6Œ’#eL¿S#òoñY›Á,r3Ãn™sÀå’Z×3Hû̃|‚³piÏ|Rª}?š†ÿh6·&€£Î®õñ·92¸ÂÂ;á¥îÆÿˆ,ãá#M×éniûmÚ×Wl¹<ÏQUOTÎICŸ+ˆ.oVž^]ŽîYd ûô\Z ‹œ“–íÐm²©|8ÊÇÚÿŒ¼7ÐΞ ö¨£5‚_EKúùÚGì¹­Èaþùj·ì¼m¸^­²Üí|"×µ4D5ô³}ɬûË>&‡‘Øäc9ì£?‹n+]/ú¶ÝA¯Sic¶Z{…¾ºWCç2W9£iåsKAëœç—Ûá+^E¨5¯‡úÖñq«´5¬6JjH¥mTÌ͹c äæhØž\Nz:ˆåkš9šp[Ü/ˆ:¢Ñ¤4Û¯wº»ÐÇUO “g ‹Í™‘¼þË^ ' ÷ÀTÓ×Û5úõzzól»Ó´üRÐU²¢0wØ–;Ȩãb¦z_RÕÔGä²((d„ód–5 ó{oÍ·²vI^â×3â§–&Ë(ÆsŸp}ú(ƒö‹RÔc¤k@¤–Ù4QzùŒ˜ÿ±cWZ¼@éY^d¦I©+±“$N>Ù dLÉ9Áø«cQhËEq¨ž†1k¹T‘ÏSJÆJ@ÀçipÁßÕC¿WKdÕÖ+= d56úЦV‹AŽLG–¹£p{çþJÙá&‡×4:&Á­45Eá•÷yª¢ÝdòqDìgœ8s4–¸œŒl®šÜLÓÕrÚkï–«¬ôÕd¦®•¥çœÌäï·NÝ×-oâ·WUßìuö6Çe1JÚºVÈg‚­Ï-Ç;\Ão‘“‚¤·‡Î4Xø™¦à5uvë~£>)­ßx |¼ 2&¸ó9¤Ó89Yi¸UT?TØ ÀTvíÛ’ן+[hüATÕ2>Ss¶RÔâp‹óÄ`~JWø?y>4s†q÷yÆÃ}ªe .`ÔkûDd|\´€qæj:v¼c¨õù€±§ÙÏqk5ö¨·<4¾¢ÑÍÛâåŽnSoÖà§éÓ ©ìˆˆw(ˆˆˆ0©¶wTÇLù®@`apk•ÍÁØŸ^ª>ê ÅfŸñ?w‘õ’ :ª;4/~‘Ïpù>=Æ;û¬ýC;*)ùØàîW8·08+½ Àÿ±84d•ÒH=Olª´s’ÝÀ|wZüñ[ÄÆkívb¥…°Ûì¦zJSÎy¥ËÛÍ#Ød³·l,Ad ¬¼^é-TaŸ{ªC˜ðÆó;¦Iè¶KÀ OÃþYì ¤Ž ‹àeMÐ±ÜÆJ·1¾c‰ïŒüš@”vhÆz*‚3³†~kŽ;ì?šˆ^?8a5C!â}¢‘®DÚ[ØcpâÞ`ئ;ï‚àöqŽÃh…|£¹7sï褄®$O¢õDŒ¹‚tÍ{ࣹÔ|º»œC3»4BNØ#}€SÔ3~›õæ0pæ8ä·1Î}·Vî¦Ðº/R@èïúNÇrææ©¢Ïöv9‡Ð… ünpsHèZ+&¤ÒÿÑq\k&§¬¦—FåµÑùaÇᙌ¸tÀ ðƒúljÖëìºMÖéf³%4óùO›Îó9DdŽ\þ¨þ"ѸÝxZÏAkí!v©Ò׋TMw–'žÞCèÙFXï¡+Àm|Æ2ÞlÆù ÂåUU ;#Œtìòãf~79Àç+%ø~ãv áE}Ãô}=5}%{cóiª\àÎf“‡‚Þ‡ŽêNiß:r ´_ôµ}#yFe£³d“Ù®å8ú••ô·xW¨CI¬­ô³;ɸ8Ò;››ÊºJÈËвh¤l‘¼×°å®¸#¨\Ól¢"dz¢CŒ{*|‘ý:€µ¿ãVÜ)|BßË# d즩o+qžx[“ù´¬%;ñg©9[ðŠau†òiät1ÔÐÀìì"de¬vØœ–ñ=Ä7é›Dz~‚ ÃW[“O+Êè¢oAžÙ9úuôøKâ 5ÿ ©§•د·–ÓTÇ‘CF1ÙÄ8N–`^Y|ð\j#š"i¤å|róçâ#n;ù•õ5ü¤á¡¿æ¾†88dî¹EL¡õXÛÄì?yðÿ­ãÃ-2ɇ þ;ü–³te[iõ¥–¢L¶&\iÞì ZzýÞAîi !Ûr¡Ú6âuÆ’°µÌGÖQÿ%ü´äÍ£Á¾ãÿÛ'Yg¦ôÊ©lœ-~ñ÷pÿË…µóRÏQUIª(ᆙ­Ëäœ`h;|Cp}ÔÔ±q7@ßu{ô¥£TPW^¥û¼O$Çö‡ã”½¸$°`8Àʼ9€8 ÇÔZŠÝf\že]sâ2ÃCK‡ÔJѱpi# €\â ‘¢î¶Ô¾!x±©¦ÒZL\ôe¨<Ç<ÒC.ÒÔ ßœ~úûƒ•|ð—Âþ‹Ñæ+–«|Z²æ[W [E ^XNC÷è_Ÿ\³ç/@F0>À-pxÞ­®«ñ¨)ªùqM,àv‹ÈcÇs¿3ܰݢåYh»Ò]mõ.‚²Ž¢:˜&oâdŒw3\=Á­‘ð/‹–î-iH¥-†Ù©c‹Ì¨¤Ë^CLŒî[’2:·  ˜]â·ˆŸÓž0VT[êj$µZ¢¢lÅ®nc?¬x#x'¾F2¬žëÝEÃÍcK©´õlTDñçÂ[TyË¢‘£g4úv8#³7‹ØõÝgõÍ=µðI¨¬Í¥t.y“˘K0ï^g»¾HÏÐW {–ž³VÑ“÷i­ˆÁÛ``î0AQ§í-/Ðë.N ÄÓcù¸MpšÉĽ+uˆ¹®¥»Ò8–àœZ×uõ­©¿gá€N‹ ø™â¼|;Ò΂ßP ú´ÀÖãõ,ß.9ú( ¬-wÆËAw¿SÕCújÜ)ŸR’¥ŽyÌÛîCˆ$ã~…O¯Øá›MARÈêb©os%f[ƒS -Áù+Ǫ¡ÑV;%–Õk·ýöñ#Ÿ4“Ó2_.ˆ8í;½ÎŸFáA骼ú—Ë.rç~g*Sø\ᕺºšË«íº†•TTÓþ’¶BæÒö°HxÎæƒ¸õS7GÒýÚÎÀʺšˆ¼~{ËËG '|/eP“Õbþ6q³Np¶ª†‚ãIUq¯«…óýÞ”´:(Úp샎@õåw¢ÈV µöËGzµÔ2¦†ºOO+:=Žø¯¹ØÆT ûB«Ÿ/-t® ÑØâp8îù¥'þ¨R×Õ•¶è»htÂÑ DV¾fù¯oÑÏ#è²ÍF´TÁk,dîu$$méKR°›œ–ÏVª`àt¢ª¡yõY˜BØ  •Q úªº¨é²"""""""""""ñ¬µš‹íÙÕô,¥ ˆÅæËåÀq{leÍäV ãí–¢¯‹Õ3Ã"§KÒùoiÜI{¿MÈ}оü=êz«Æ™­¥¼>&\i®sEåù­%ÌØƒŒ÷ÜýAèBÊHˆ©Ÿ]•20GUÔ#ø·<¤ú++ŽÚ±Ú#„×ëý,­Ž²*ØÏëä!Œ8=p]“ì ÖUÒ´ÏPò^\縒O|œÿ58Sv±_¤Ö–ë1¹²ÃEQ]+K2ÎF'ÔJÒ@Ü žÅgn ø«ÄÏ â2ÇSXùr¦a?w‰ÀÃAsš6ÉÁ);¤µVœÕ¶Æ\´ÕæŠéFá’úi2æû=¿‰§Ô8µ–ç?N©×ü—Á¨-4ë%ÂÇuƒï y)jb.#š7´µÀ¸Øõ­Xëût泿Yʆ }Ê¢–6ÎÒå6BNFwo)Ï|åqÑ×é¬5æ`Ñ=%C ”¯q ©ØçØìv ö ‚S¿Ã¿hæŽÛ¡.wi+&ž‡ïºvºwŽzÚ0qä¼ç?x‡®Ho0Û8ÍüÀíº;=Àü–ñçn¨¯à§…Žttzj™ùÍËÇ'ÐfA¿üÖû>®F“‰÷›I¨°×Ú‹ü¢@2¾)iœ’ŸÓ²œE‚HÝÚÂÇ HÈ ú‚±î¯à‡ µSç–ï¡­y²_QKÝ¥síGŒŸs•‰µ_ƒ]p›ÌÓÚ‚ñb;ÂðÚ¨Àé͇ÜT[áçµ¾¶Ô‚Çl}¦ …‚yiëa©¬ ™sHh.o;C9ºá•õêžñ?JpúMi}´ÃMCÀ¨¦ûË_S 9îcr9 °2 8 ã¬oÎvÄ^IØÕÇ¥µæ£Ó5ö+ÝÊÔâòâ(ª_ \}\Öõf-#Ⓣ–¸£w+ÄLÎY]NÞw|ÜÎSÙe½+ã Ã7$Z›K×R¸á¦j [3Iõäw)üD¬¯¦xñÂkû„túÒ‚Š]ŽäFrGá”5®?Ý%dzjˆ*iÙQM4sÂñÌÉ#ps\=AWb 9Tì«€6'主$¾Š} 4̃5 }æÅŽ>¤K3“BŒ•m!à{t[ðw4ðÕj V¶?ÑðQPBÙÿmx ÷’~K8ëYeÑÚN㩯Ul††‚/2Gu$“†´“’Hæµ}Æž!\ø…¯.ê™åHâÈcç<­°Ç¢¿¼q2-ÅF[n³ùvkó$Îs°ØeÎbûg->ÏÏe²Âf³öÊùÀkCrH- üÎtnß]ª„ª9·§ä±·‰÷xÖÎiÇþjuð®hå×C+ƒ¹c‘®Ã]ƒ±ÎDZ[ŒŠNxÚü84uê=•^/üÔ ûAëLül´Ñ4;ý^Å9;s>iNöÀ)%àÁ¥¾4{\7-¬#†²b?‚ÌxéÐaq!ÝñQ/Œ“PÓøóГ\[t¿£â|{Cv*C\çwÁÆý°=nâ´Īºm ¨ÅÞѦ‚®<:ÌH`ÎX@ÃÛAç+/Z|_jŠ~~‹šš LÉ9tx0ãbèñ‡KÛ=R3ÖGp#A^(t—-kt«®ÔÚŠxîWi‹Ãfk|¶ˆ© Á9Ž1².v0 ÊT4QÒ@È)¢d0dzc Ø/¨Œžûz.·:ÕjçÄ C8Ù­ã®y"ýVþcØé ™ÿš±³›úÎ\©qàOjª-Y%þ²ÉQŠºÃPÚ+‹àÒ2¢1Ê×ÀãÌýŽ9ƒ6Ï.Ùêñá焺‚ùqÔÍê»Â¡Õ éãi{†ä1dîvëºÆú—Áö‡¸ëz[•ªë_g²9üõv–0ÊyGhæ{²Ðïpâ2qÑ[ž)´í±PØ­´TvÓJ[CMPùs÷îv¶90ãÌY®%ä~ ø€7ñcÃzŠˆ`½[.ú|@MòšÊ¨ÐÞPIiüšì¬sã«ViÝYS¡î:fóOs¡4UGš'ÆKâÙì8s·Gv裾s¿NP7Í&ªŽ_Ö {zåmŠZÚ‡CézûÝkã/¦…Æ^ìå´§$ŽŠ3ð¿A_øõÄŠÍwĆTÃ`¶JÈa š70Ô8öD2?«hp.Î仸ïûE`¡‚›BElŽf¶664؃cÀ°`WðGW÷Ÿ¶(wÍ-ET.ó¿œç}?Àhíh—‰jÞÙKþíi2¹¹i’g‰ ïè\dAÍó¸SŸìôÓ_wÑwícRlj+ê™o¥.iȆÌç7Ô9òqÞ1è¥SsÊ2rWËy‘ÑZç{"t§—ÎHïÑaOÄ‹ç jÍ}Ò‹¶p{ê"–h„Ô-òã1oÌö¹Ãlc$·8Pw\k Í_«®ºŽãPék.•ä€À `ökCZ`”8µK ¾—…×H«¥ªžªim’FÀöGƒ¤{Ý ;˜ƒƒ»ñ¶Ê]›­wøì¨uGîÑ?›ÖÊHÙ‘‚Âý½F\wSÏ@µÍК~9XÆ9¶Ê`ZÏ”݇²÷NNùôÊ‹ŸhÍk£á¾™¡åšôf÷Ë ‘£ÿ®ü:×Ïo㎇ž”»Ì}îžGîÊï-ÿð½Ëhm錅TDDDDDDDDNýté„DDDDDDDDDDDV'ôõnkh¯[nqS¶i99âh»™½]œײƶ¾ êÛ­ÆëUxÔìÓöùî"²’–×tîo”ÖbI ø:„€wæ8 ;iÚ­v*lõóÜ$¥ºªë&-æv;œn¾ôNØT;î¸*xüÖµºÖ‡DÆKh­06¦VçñÔJÝœºÌßâwª‹´Üóφ³œµ½;­˜xtÑôZSƒšrƒÈaª©·¶ZÇr’$t¥Ò¸îÙŽô qóµÆ*ÝKÃ'~¹4:ilîÏÝê‘ ëÏfþqøTQ¶^õn‰ÔÏdS]lšI–?Ž ˜[Ô9§ß;B”(ñjð`·qØga!¦çAÜ÷’Ú¥›íøJ”ZKSiýWjeÓN^(î´nõ´Òr“¿+‡V»Õ®Žáz¯Á'ø(·ã›…²^-´¼@±P¾ZúV˜.†],!®s$8îÒ9s¾yš: s¸p9‘Ll²O ow)mo²[jòß#îÚr¡Ãã©c]8é,!ج‘Æ?h­…pŸXPëÎZ5EÌUÀß<7nIš1#qììýÔH#8þ*Ó㟨Õ\/ÔZzšº*+¨$ˆNö5›d“ñ²ƒ *à¤ñ§Äó†‡GU Hó=Ñ8ûn‚Ø«N ùœôUÎs‚}÷\KCÚFø=sÝGËnš·éÏúŽ÷+ë"’®Õâ’8äp…Ñ<ŠzÐæÄC„r÷ùgϲE ô‚Xãš #,sÐæ½¤n;Gæ¬WÁ.êXª~ý¢­Ï<„TÒS$g0#™¥˜Ã9aÝIà¿HT¾Il²÷lwû8ê#Ž¡Øägá';wÛ¤~ÕžøÃ§é]£«.TÞice·=•.xÆÎòãsžÌl±ÕÛNjë=«nšvóo¦mK©Ý5M‘±“4 ÆK†€#eçÅ[Y .†i$ã â_'Ú!­ ¤ÒÖ=I1uó •cŒØÃ»üOæ#ÿv¡Î–Ó×½S|§²iëeMÊãPîXà™q÷=€ÉÀʼ¸ÃÂû— ê­Ô÷ZçO_Qdk¡€y •¥ÞtbBü¸³0`òï1Ý9>)ïáÉöme–Ã`’ëg‰­‘„’_HàŸÅ°nNÛ²Úè–2×wô(Çc®pp##p¨@=>hâz ·XËÅ4…¾µ±?ùµÃósBÕÛ¢>1žn›­¸pÚæë×tÝä¹ÅÕöšJ¬»¯ë!c²}÷^ëœD…¤öØ­wxà­>#®ðGGGsë“ÿ²)‹áb6GáçE67ó7ôhq8î^âGÐ’>‹'œì3üÞêý¡ù|m²LÀæ>ÌsŸ>s{œ(Ùt¨2<7˜;n½p¾jxù¦¿-qÑm7ÃÖ¤ƒQðOIÝ£¦Áöñ š Câ&'cææŒm•‘c@é—½Œ#˜€OOuÅÇ#âà­nøÁ€RøŽÖ1·8sé¦ö©!?Ï+ sæC““ê;­ø;…¿èSN3“Ssò‘øH{ÁòÏÕg5óÖ45œã#@=T{ñGUGa¸ZuA0ÕAn{&®·¼´‡ƒ˜˜â×~˼ÒÒFH<»n­ž$øEÑú†‰÷>ܤÓÕò0K%KÌôO. Ýñúü@ÙQ?‹ú?WhmMúUÚd·Ê ž›Êܺ'œ3èr:ËÃÒ£ï7ûm6>)k `Û=dhéÝlqºJm©¤×›™žÕMc²6•àœZÓ%K°> O1 n2À8vÃ)Ûèéè(¡£¤‹Ê‚r1¹íê}IêORwQíVèc÷và6°‰vÏû?‡×ßÑ^ŸgÕD³ðnë ¤&8¯“r7—¹Ž2wù¬ãëœñúròyEÒyyè·ç•€iÅ‚püÖË<\in´À¤ˆÅ÷FMK0À¬d®æ;zç?U˜˜ìŽF6>¨çmù(#ö‡]Lµäzºå¢%s"¶ß9®ÖFìÖC1ÉžÎù t[½T®Î’ñõ¬ÕiÍ=,žyhgl1·«ßÈîV™ÂÖï†ùnãÎ’ukf§{nÍd¬ ÁkÉ- ƒ¸ÁØ…³‘Æå…Q¾ÄåÀÜt%G?3^4¬:?‰znSOq³\ŸG$»¹†f’c{OVÎSýï’É|⯈:6žíA¥“âmE™Îidvg-ÜŸCì²#` àt\sƒ€“«t¾Õ¶ïÑÚ’ÑKu£Ï7“PÞfç×øŽu‡‡ê(cšz1lŒ{ä¶²8ß Ï).iÀ=1²Æú§Á––žÐïèæ¬»ÑÜš\æÉZÆO ™$†–°4´tùŠ;q€¼LÑSb«OÔ]©KK›Wi‚Yâ$aÙ`sNÙÜzz¬m,µ• ,0áñÈÒ×4ûƒ¸^•¿Q\­7Ö[ëj(êŒKO+£~Ç÷šAú,©¤ÜØä~«,éµEÆ=Q¤©eo7õÖÊ“<¹2Ïœ,¯fñ3ÂJúv:¦ó_k™øýM]¶gŸWD×°¼¯;8y¨åZu¥Š¢~\ù_|k$Ç÷‡>Ы\5ZwHj(&k£§¨©¢ýXæ:VÇ#~ vC!ï• D•%ØÈæYÃÃ'«ô—,q>»’ÕW8¤«dŽÌmŠWçoЇrœû+;ÄÖª§Ö\sÕÊ,ýÌÕ6–ŸõœáÌ„8Gyeؽߪ•^¸_báÅÇP\lÑ]®— G-T|®}"Ñ–¸i{äß¿(ô ðñ¡.º¿IÜ-PÛ%e3Ùs³M+,F®!‘Úò#!à¾?ÖeŸ¬$ƒ… ø%«ï\>âTu.5tU´…ôõÏ[&ΊF»Á`ö=ÖËô§¶ë-%oÔv—óSVÄÊN]¿iŽ÷eî/’XÀxwBÂKwõÿ5٠þó…ÝÛ ‰Évç|,mâ~6Éáÿ[Fdk?óTÉ8 \ajèãâuÜ…µ¾<»‚šá­Óvý€ÇþŒÅuL&ûÜN?(‚ÒÂ_°AÎÍk#ÄÍÛôÇ5½k¹±ÖZ]ÿö°ÿö5°ÎÑ hŠ?(ÄøìFF8nט]Ÿ|’¯"â Î3óê¨ýw>ŠøåÕº3Qñ ‚ÂÙ+.ÖÊg[ëk|þjr1 »üMsÝ—äo‘²£@’+I¨Êõ-±6º¶]3 kÞ¥yÚ6—]ôÜ­•p„Ñp¦Çr·Eªkï”u²Ç,ÎÆ²:|d±­Î ‹÷Ü畾ë'y’FÍϾÙ;¯œ5ï”É!Éé¹ü+éw7/.7ÆË]>3âKWlâXÚ&Ž˜ÿ¡ÄÍ`©Ž¥Àí‚¶=à¦G¿zj9‹|È¡Ÿ”Ü5ò“ïÕgUÕU!ÙPßí­¥ˆX-ôñÊÚÚ¨TÒàyf8IkZRs!'û­ë¤Ï n¥øy`¸Æº{|<à€àÀoeþÑöµðpÿpA>SŸzOûTB£’¦‚® úY]Ôò6XäaÃ˜æ» p@*Xp7Œ— º§Rú;n¨2µ­mV"¢»c•¦)€EPCpÙ¶à8wRãGj»f§¤•ô¢jZÊwë(*[ÉQI <¥oÌ–‘‚ þу›Ž‰Ǜˬôõßü•ÕöwgýjA÷ˆœÁ{$BæŒùLÉ>ÎÛ"°ŸÚöž<± ä¶ËL·~iù…è@/ßÎëem[ü;iƒÜçUùÕo%˜ÃŸ+²=Àef&þtÇ \³œ·æµwâ¢÷-ûšÎ®W—y7'QÇ茸OÌ« JÒÁY©mtµQ‰`ž²(äg9o3\ðÒ27«:p÷\jžq&¾ÛWÞ]-Q‚åoyåeLmq s ‡q»_Üc²zXØõΘ¥Ôz~¨ÍG>ZXæáðÈ?oáÃçƒÔdTñ÷ãã¼²:GÈÙlÔ® v1òŽQí–“ó%O}7;ª¬ê—g3RE!æÎw`=÷^‰è¢oÚ? Ž”Ñõ®!•õ æý‘Í8>ÿð*<ø_«u4DáÍi7&ÄI;~µŽŒŸÆ¶pѶ2ªˆˆˆˆˆˆŠƒo’ªvCº 興ˆˆˆˆˆˆˆˆˆˆˆ‰¾=ÑýVñ…¯F‹àýu-1‰×ð}²^C£dŒw™ 9ý7#äµÔÐ^î\| tÁlÂÆ‰:#ƒ¶š9y¾ýq¤ªù£äs$•£àÁ'ð´1¹ï‚vÊË k€>ª»`ŒÿLaÁ®P‚0'¦Âjà–╾[­% ´¶¨dduÂ?,…¹š6=¯ æk²šOv¨IÄžë>]Gê»\”Ñ8òSÕÂâúZœo–IAžR‡paà׊MC¦( µjêwê+k ýy”¶¶&ä`8ò¼pwü@+¿Ä~¥áÇxVnZvý>¦ÓÌ}u={<™å‡΀gáqåÀ4».`®T6 -”·ÓºÉœ$¼ÏMr¶šV .¶šØîÖ¬¿—Ì|xt´¤úJÆàm­JØÎƒÔ¶í]¤-šš×+]Op§l¤“ˆø˜}ÓGl/{mˆÀßæµŸ¥`‚Åâ–žŽ¡³¹´:¾ZpÖžW=Í©sZ\‘ž¿U³ç|í¿ª©Ç¾þ‰œ·#'Ùc¯¶&j>kqò=–¹ják\ã$®`o’èÀÛÕCO Úúm!Æ+M#æpµ_§eS¸.rÂñèD…€ŸBVÃ\_‰zލLœ.C';í…ËqÛoELïŒôTÀÉ?ä˜Ç}•›®¸[Ãío,³j'm¸TËÕf>Ið$f1Ûu¸³àæ!K5Æ÷š—Ê2áj¹¹®óç–9Æ9{»”YÕš?SéZÙiu Žál|S:"g„†œ5ÿ…Ûo±+ÈHÆu9Î3ê«dñ´aÇ#ù®Ãu”E#K¹²AÜuÊäíGu}¨Ð>²sGæ‰çËkÀ Þ™Á#?5á¯PTˆiÙ+ óp1Øå^h­wŽ;é*+ë5$÷&±ã-‘û–4BîUµ@€:Gæ–¸Äë\^14œ=â„·(c.§¿\j®tÕ.9sšÿ)ωǛŽ“F0×·/’#È^ 8·I§®ÓékõSi­g¶ZY³)êN‡ÙkÆ=hõʚƦ.g°8—³«q…òI#œAÈë“·oüWÓKŒ{.ãœcù*ˆØ¬sâb–Z¾ëh! sÿEHü™‡à¯XyålŸÍm?€s²~hG°ì4õ 7õl iþ «ØîZ;7ÊÕ/Ý5ÛŠzªlÉY~¬qÈÀæ}Kÿ涯M4´ñRÓF#‚¶8ãoF´ >vÅî°¯Š¾/Û¸{ îëulSj‹„¦¤‚'ŽzPögî†Ú:—r팑™ÂÇY<>Õñ?SÂçMxšžOÓgÊ—™õ2ãÕ‘½­÷²w!aÛ€gÞ]‡ c²á…‘¼v--[cá…K*¸W¥%}DUm–Ζ'ó1Îò›’íUÀ~-˳m‚«sžf޽0» Ho/R{ú-qx¹t‡ÄN³óCCþñOîŠX1ü0°¥Y"­äîAÝl7ÀõE/ é]6Ì’&>&sd48çêB.º  d>ÑŠG›~ˆ®lcËi¸R½Ýòñ›ôø³‡JÈ®|Ó•PJ×‡Ò´Ëø^ZÒ[ôÈúå`´‰§ÿ¹ðn]ðÜÇËzU­’ŠYਗ਼çl²GC(ø$ÀòŸcÓê§ß‰?ÔBŠMS¤b¦¶ê¶Â £ 6 ˆ!ìÙ;üƒ¶Áw‚\T¸[5%”×Õu¶[½­ÿt¦¯¨g$±’áþ­YÍ»  `;ÌÛ Õñûw‚ëoÒÍò䂲‚º²šx¤f Œ,‘®ý¨ÞÜG¾pAóû; ¸a¨šÖ†Ïúl™f2Ó |»÷èvíõXíµ¾›Œ‹¨Ç—]e Ž9dø9ª7P±ò<ÇòÆäãrpÛtž¥ÒZ*˦¨£s ¶ÑÇNÌrÉ'Ôœ•ï€ÎÁp‘Ì`28´1 ¹Ç=ß+QZÖ½÷]]zºJþgÕÜgÄožy\ãü×±Á;;¯œ[ÒVòÃSw§á¼Ü­*dxèáÔW] 8‡n­¸Ù°ÊçsãͤqÆHÇÄXâÜl\±w½u%Ÿ‰ÏÒUÑ×øœ#iqÃj#i{HþóC‡ä¼_’ 8æYÊG—b¦iךSéî§®cY`·4HÙ¥ˆ·`ï€n 3é…~Ñ&·ý Y ÀÿçC¦ø4µ*"ð/˜q{F¾0îf_è9ú»>KjU[ÜæÈ:}—b""""oí„DDDDDDDDDDDDDDDECÐáTû-tøÄÕuŒ÷ŠYj!–šÐ[AMå8–´7wgû\Ïv{l­ßÚ.=yÄèëØÓæR‰üÞr c©Ï{{y~cpvÃS€¶cZÖ€@僲íh8Ü»*àg=Ðý6긖{ /3RX­’Ó=žým¦¸ÐN9d§¨Œ9‡lgØîw*5ñgŠäùî|:» [Ï0¶V—IF㑳^2ø‡S¿8ÎÀÒ7ëŽ ñoG>°WiK„ôtÙæ­¡i¨§s1žp[¾1êºÅ à¨|rµñH×´‚>…}v›µeº®ÊY]ôò6XÞÓ‚×G× DpsÄÄú–÷Jtm%ʰWCOk©™O;š1d„‡×rìæÇ]²4>2øçðú à2yo‡åþ¯ì£öºÖ—þ;?ˆti(i¤¹QÜH&çå|b?3ÀÝÅ„ôêT´µx¶áÕDÆ*ëV ¡vN\b†Võ8ü2svýÕ~iÞ9ð®ù=.°£€äJÖº˜÷ÀYšhª dôò2hdhs$cƒšàwÔ{®Où·ªÕÿô»ôïö !%vÚÿ6Ý—’æÂâ$€‡{5Àgû>«c|-ÕTÚÛ‡ÖMOJö;ïÔ¬’V‚> q‰ôw2¹Èÿ¾Ÿ5È¡Âz’À*„vÉùªàã|/ž¶Žš²! e,QsLÀðèpGU‰5O†ž_«¥¬~š’Ý<Îy·ÕÉ 2øŒAžøoñÝa>+x>¹@ù+øyuо±¶Ûƒ„u k\[(øIv`À=|Öü)×ú^7ÉuÒšX|°ù%4®’6‚{¹™p±ù‰ÍŒ¼[ÛÝu.eù„3}•žü éj.6Áy•€ÑéêwÖÈI;Ê~š=ùœ]þ¶&ɉ OeÞ¬>7ðêÏÄ%–æ[íç4u¾C&4’>7Gær?ápÃÎÛžf¹k^ÝbRG_h«–‚¶ ©*éet3Á+K$‰ã<Ìp;µÀìAÜAÜ)kÂ6Š;“OëêÅ\Y¦’ïžv± -Ò7<ÏÎáÄcu$ôßiYnº[«˜ñ–ÉKR׵îÃ9vÂ÷©k¨È,p9øæ,ó[>]WÚ -Îç#9¾Fp:n­3Æfá±gÅñY+0Çû-QÇ––c¸ g~¼÷x|Ñ&¥’G ¶€w1äw!ùàØ,š1‘ž Ž¡kTÁ|MÞ)#„ky£ç -ûù¾Ã²Øoø‰£t ?Þ5Eöž‰ÎÉŽ¹’y»Aw×¢‰œdñ_¨o¨¶è¸Îž¶œ´U¸‡V˃±æ– vØdíø»+{ƒœÖœW¸C~Õ®²iÉ_5]F~÷Z3¸…¯Éß§;Ærº) âÆËgÓ¾®**LQÚÿGÁB$w˜è¹jbo71ß<œÃ?Ú+]“žiþl—J¤MçpŒ`$>d­´h %6—Ð:wM@îfÛ­ÐS—ƒÏÌZÁ—g¦ç'Ó}‚¸Ø`á¾€ár'' ÍskÚà%Ç·º×W Y¡ñ+©žöáµ-¡•„­û¬Lþl+TdÌìîI[ ðƒÏ­΄°M,…äþ':0á·÷KŠÎ‹®¤â#îT\ûCœñÃ3-uéÎ/ÇB)äÀúäþJãð é¿Ð$~sƒ›ú^¨EŽ¡ƒ”`õ=ûFÿ¬áðü7>¿:U 1£{̼€³>Yøö=½öÙmØ|X'›ð‚s×§uŠÏM(Ê{¡ÖÕ4˜ž²fÛèçpÂÁÏ'/|–ç±äo¢–,àŒc ‘B@\^ðƽÍc@É$àê£üSÜ-WJ«v˜áõu\-ðS\ë(†£•å¡ñ±ŒøØà2ߌ‘Ñc;§¼D\g«¯·Ûî”T´ÉY&([’~?5x ‹·Õe¾ø ²jÿ&Ñ­›Mc¼Ï(Ž Šv¸RL\pÑñÝÐ|DŽù‹Æ{}—9¯Ûm·ÂÅž#¸Gm⮃ª·Ç=> ¥ÍM®³Ëk]çŸÕ=ØÏ#úCÊíù@ZθQMG[=T.§©‚gÃ4NëÚHsOÈŒ/_@Ád©Ô0Rj#(*øLѽÀÁ!n&ÝC\A#¸Swü4àf§¢2ÉêzKõ$‚ ¾ª²¢¥´ò\×r½ø xi#-ìGb³µ>…ÑTÖ£j¦Ò6((\ÞSO¾&°jòÛ¾ÓÒEH8y¥ä‰¬7Ì´Ã#°3œÒãó9>¥x×Þpzò\ê½jîêh9èÏÿ™s%|é-;eÒš~’ç¨" ¶Ò02\àÐ=K‰.>¤’Or½B3¾?5 ~Ðè.öMua ©ŒÛ' ˆ‡ºF‡HÇ9ùÁøC€ùw]x¡²é?ome-ÂCQi’C€ÚÛ‡?ÛîêBš<¡ÄͶàg\±Ýº}U1¿RB*cÙ âñ€0?‚ë‘›dž›ã×bCûC­RÛ£ôý]-ŠÛI®¹»ýn vÇ$”ñÄîv¸ñi#;ú(TŠ\}œV;‘¾j­Kø-¤ŽƒwæNç¶M‡öZÓŸïu5ÚÑ˾H÷+èa%€ŸEI›ÏÙ€yšFë_^6ø}S¦8¥&±¦}«S8ÌhjšÐ$ŒúçñƒîGe*æ‘Îkó‚P¯Èô¬6z M’ó ¶H™S e260áÌ×<ÆIØðpGª·ïÚÓQ^ 1¸Þ®5N§ t•.Έsž»¯rÍÅjkE¿Yj v1 r2ã(nÀÎ0ébñMÅûlÌóu$wš[ˆ«hax8ë—5­yÛµüÖR¶ø¸¦Ôºû`ÕÚ}–úêË]E® ]ÚóT~•â•óUÚÙ5¬½Mq€sæH‹¦2ˆw}–KÐüãîN¼UÒÔÛi*d/šç{‘ì2eÙ%­9‘ç©`ú…,¸;áË@ðùÑWÔÀu5õ˜wé „Mä‰Þ°Ã»YÓ9%μ³>ç¨q'Ýao,‹ÿ&½Lé¹›-áßzˆoôÊÖÇeöY(_t¼Ñ["8’®¢8·w¸45¶1mm£O[í1M=DVêfQ¶Z‰9åxŒró8÷'‹Õa#p9½¿‚«ƒšÊÖý:öÝriÎÀ¶ûakãÆ½oÞ|G^â êT´PŸí%²ö@°Xh›|yìz­’øM‰Žá…‚a;'{(!Ïl|¹&ò !¹ï…š—M_àõQOí¬k4Æ‹·–éî3ƒÍ°ÄF=O˜7íƒê¯g›€0ÒÒ.µc››9ø‡nßö{«í¢ª}&‚¸¶ºŽ «à–P>>FÀæ4û‘‡ü%C—; s›³›ñ ½BÛµž©õÖº:Ùc }EÄ­”·ä2¹tWÐíœbùZ âͲ;õe’òÁEy«†ã£ÎåþW„¦y^!´ƒœ#$Õ<ü¼OÜlwô[1cs¾vú¯/Ti}?©ìóÚ/öŠK å¦H'g3\[øOÌv*øë¢¢´ñ’錯5Z~¿2çË{$]ó‘ÉÛmÎ~sw‚9“‚Ú¸¸“§-ä’wÏÝ£ëî®÷‡œ¨£ö‹HNœÑüX}}Sˆ6‰£üÿšœ†9xÇ¢ØùÛ7Ú7» Ùšà6õÆ>«há7Ê""*¡UÊa|¢vÝ>›¢""""! ŒÎ-UêÝSpÒRÅúÏZca„Ÿõ‰XsŸ¾þpݶÉõX/FØê5>¯¶iÚ&¼Ïu®Š„7˜³ÌpiwÈ]ŸmÖ×ljª U²AMmcÀ8dã¹ÀÊõ;.29¬cž÷†µ£.$àêT ãwµ¾µâÜ–~Þ/m´Ò¸ÒÛéìòɕޯdܘ.ß dà5 àâr´¯é´°~¬ÔWj:»…ŽÏEYtvÔ;Oç’çDŒï͓ЀMŸÄȯ<>´Ú¡Õ¼fÖr꩹GjƒhØþf·œ±Ù{¢‡HH'|7²±´?8“©x¿¢â¼êº§S2åM Ðóˆ)æ…ÏΑ‘†µÎ-$‚Aß ÿñSáΚÁCY¯8qD"·S±ó]­ ÉlM.šôh.gF‘¶Ã³Ã߉É-”®°ñ zŠúcs¹Et±1­ü`‚öì0ìns”¾´Ü(®öÊkºª:ª¸›,ÆrÙáWÐ~SÙk»Æ—+´‡kuTò¾Ë¨æud¹c*“,$övApŽÛ¡Æ±ý:g¢˜þnÕ“ë{¥§Ÿœ¾™¶=ExÇ–d¡©q=ËctGµ OYfOÖc .kØâ=NØYP|öUB©ŽáTmÝ;n©ù§eÂ@P¡—ÚIVÃS¡©9°èâ¸Læg÷Zqþ(p«‚¶àÍQhàGߪYúbí=d$ömlpÍÑ<åH‡†ììuô\ã9nÝ—%…ü^éiuGu¶ÜkîVó Ê’&îæÞ<Ç4w>Qc¾vß [óòœ9­FÝŠ‘žxµŽÕÓYoÕ†Çv g˜çâ:iš0ÙÁ$Â:ƒ¾ÍÔºBjW½×ý§î2¼i§ Ò±³ñÌ6=AV O†>Ì÷?úè\ì“å]*ÚÜŸAæ`+6éà÷„m‚z§_uMº5Ò9澟ʉ¾¤¾Â©ù•xåÃÍ £kKt_àÔŒæse¦4®BF<Ö-àäôÆ1ÐõX¤8ƒ•™øs¤8ÕÄ]#l³iÛ}Ú£MSó¶•õ{;‹Ëyˆk9vp 쳎†ðm_ÚçYI0Ø;4>[z÷š@Iu€ú¨­–¸¸øËu®/&ÜÍXØ)#Ëù!¬Çs†ãs¹[KyøÎwø¶  D9Ïp°·ˆ‹ü4ê‰Ú)(¹ëþ·ôþÒÖÉÆØú¯s‡€§Ac¤¥i²ÖÝúÖìÙš òw˜î¿2»™»ÆOºäF2zw)6ZÔñY-Ãúây¹yÛutoøckcißÙbj“þ²ç5²o ±GG )è#xs`ýVÎÎícã²Ík¦¯ðšˆ_h‹d’myØãŽà ÿd¹æŸ ó†ùz¬‡àNÑp™ÏvD·J·ºaá¿ü’¼´EÀp‚ÃÞGj(ÜÑŽ SOŸæ¥‘œ÷a'–Úôlôõ:NÍUFÿ2žku<‘?÷˜ciiü°½Ž¥Ù+xêƒÌðív_*²•çoý¨~ÝV;ðGWCOÃg•¡“Sk”g.íŒ4†Ž™Ç\êÐûGyOtÄA„ZãƒØÎïùç}œí?é¢ðá#r€´’àj)úØ ~”ø c^˘ ‹ƒIéÝj¯u"»úÞ¤»,v¡­ ù œð]þ®Tž>i‰«éc“Í%$FB1 ’0†"Ü© ›k?uµ½Îp{šá,€tvàÑœŒ¼íšìÛEϯÉGo|R~‰áû4­¢­±ÞµÇ–»ã‚ =û´¸ÆŸïãv¯Â΃ƒDðÖ—QWÚC5=ûýo™à—ÓS`ˆ# ÎFd;gãèÉzûˆ´š?‡Uú‡P[~ôÊXùq’jíƒvfs»º þK]ÅvÿT“NLt•£,iÈîøÉsOe;°ÜÜ{«G‹ºÛÄ^]tÏ q‡SNw4õ Þ9ê0쎠‘Э]ê» ËMß«ìWjgÓ\­õ‚©‡ sNÄm¸#à‚²?µS4íÒ…Yt–ÒÖRÜâiÁòD­{$õˇîû•±])y¥¼Q ªJ–NÇæ~bÐàAôsK\=œÓÝ{‹„êæ‹ù®1ɶÔu\ÁÁdpÆûl°¯ŠŽ )é¨+íD¦Ö×}ÉòìʘÎîç¶Ní'£½%C ®5‚ÓºãDÍöÊê†ÂæóÈèg·Öò¶>ª\ÓÉ/“#œqð†¿výUô26ÇñF¸P¨6UQ ¡ø]RìsðýTûDë›?¬4l‘ûµ¤óŒµÎžOOf•r¶3à^íMsðïh£„æKU]U$ã9ÃÝ3¦/†f~EgƒrNçaÕX^CN{×g0ÆWÎãúÎ~ŽkwÅ¿ £á¿gŠÛ b±^A®·ÆÆá°‚ïÖBìׇEOPØAä7 û…18â®ÅA¤i¬úþK•Em1tqÖà  A­ähÁæŒã|nrVVѼ³kJŠÚ}¢µ…ì@“<4ml8õ‘Î Ô“ì©Ä]ľ'ðþk=öñlÒsTV5ÂŽÙ$“1´ü§,©~13³‚ÐÆú’±—|5ðóBpsTê©î÷û½²GÁ=UAŠ(åØ5ÍŽ>]ìâá¹öÄ*lkÇ0ÊØ§Ûµ-ÏÃÅ®†&8>Ï]YE?69\÷Jgc·,ì÷g(Ë<ÖàÎV¦´ÕlÒêËuÎR];®Ô8ãñ8Ìvù­´;g8ç¹UÇa“ƒóBAÉÛ =øüžXx$qÔ˜™=Þ•’3#õ£w/OVµßáZò^æ›îúçOÎ+¢ºS¿›Ó´ÿ’ÛIo#Þ7?ñ+œ[È7ÇÕvFFzú®#ú̹z-oø®”¾"5˜„[ ˆõ.§‰ÄþdŸªÃ•`ýåÛïÿ%³ 1M†´ÔÔ=Ž}\g9¿´]gùåeõÕQ• Œ(ö‡TùsiZ7‚O—,ŒÏA¾~{µeoQ6?vVìéê+¤^¿z•¿É¡YŸh„o&Óó|,Ô Ûíšy¾›áAǸA·eËmÑ;áy÷«5²ó pÜéRÈÜ\Ðâv$žF Û¢ð-ZF{¨¡ªÓ÷ )¬s4µ–¹|g”½ñÊlj¯å§r  WzvÀÙQÇ“üCûAµ•´Ö]IYÏYOPêºø@?«W¸òµ­rI alëÃöŽf„á‡Oƒ)™°}æq39\ÉeøÞÒ;`¸¢È]×Íx¸ÒÚ­Uw:ç†RÑÀú‰Ÿû¬cKœ µñk¸SqsŒšŸŠÚÕµoÑZi‚º¢»™ÆìRÑ4€^ì’ÇèHV·¼@ñ]Þ&š µMŠØd†Žß)‹tç{pçü‰åØ*¼#q2·_ðÔÒÝY-MâÊøíÕ“NKÛ[qîqÝÏÃ^’IÀwí,âcÃUN‚¥ªÕº6y+ô¼,kªa¨“š¦ÅØ;†€ø÷=FwÎ9‡áNšJ®;é¸3bóÄòŒmìNÛ¬‡Ç· ¶4Ž‹ŽÇApŠvÜA&z‡Á(‘…›Ö × ‰<£qÑ_!î6Pÿ޼#×oWÝk©x}Yo²I'™¶1Õt±78{–Œþø¶ëSÖIÎkÜ2×ã•ûzއºÈš‹œAÒîˆÙuuÚ Àe,•žœ7o„C!,nÀ|˜>¼APñ±šjý TZ°ó±ñmanK¹GV8 RO|Ë>"*`ú¡8ÆÈp¸<ü<Í=:-tøñÔ·®9ÉEG(–;E tOpßõœï‘Ã>ÆL}\˜' ôS{ì讌h½UA‡¶XnHçÇÄZ÷ÌGó Y;!¸ßcß~ê§Ä©¹n9wý‘éõXëŒ.nØô\Îsƒ·Íq .vÃou®oü¯ñ¬Ü}æ›%§lýÒýsüV¬ë9ø7ù-’øo’¢Néacm”Áÿ$0BZ@Æ œž½:¬ÎŠ*ý¢Tñ+¦jËGšÚ©cïÊZ À,™á ð㣄m`.¦•îån.žBr=wëÝ[<) üž\–ýÚëK)¡É,ÿå(Æ)Þ%§ß²Ú‡Ë“®üÑw &lÒ>ËLÉÞîcŸ|´çß*üo.oB3ó÷XƒÆ7ÿ‹¦§o67¤ßª%¼,Š‹­>¸ÒTäº{ņ¶žssºšPhêrÆ.^:§mGˆk„aÅÞE¶’"3øIiv?âþ+5ý4­n€Õ5‡ËxlYþä ?üµ)9@ùªàؾ[½C(­•U’c’žÊâ{´ŸòZ…žwJçÌÚ=ÏÓ™ÄÿšÊ^'–ŸÄ.å-øê䌗o±ŠE²öôÈþ=V>âež†ív¦uÊ­­†: ¦º›˜‚ö;•¯8~æÿAoô²SqºïFöÉæSÐ[`pâ%´0ï¶Ý};‚§¯K]Àí ‡’?£´ƒßîìÈWÇlt :ý 9üµLÞNH5/~OcMPݽwpPzÏ–K Œ8xž>\zóŒ-µŒàgï…SꈨNꪈˆ…PUQ :üÊ Àw]Îê½s²ƒ…Fl.Hˆˆˆ›u舋ÏÔWz†á|¹ËåPÛ©¤ª¨xå.q÷8eª®!êzÍ_¬.ºžãðU\êäíÎyÙ¬Í`kG÷VLðo 'ÕœcµÜg‚Sl°HÛLà–·ÌŒæstÉ“•ܽÚÇ-‹0‚6Î2ŽîNã‡Õa?º™úoÃõæ8¥tU‰bµÀqÿ¬%ÒlÄÉÓ|<»Tx6uºÏj ꉵ±Ó0·šy¤¬þ`É,§‚0Nä€7*#]m× MÂkuÖ†ª‚¶´õ0º)#$d5À±U°z]-ÂM;#Y(¨»^kŽr9¤n hØ`ƒ=\íðF2>£Ö¼<† ì÷ÝW¦¤eQ}E ÕÑ<¿›õrFöNHvFÝð¬+߇d¶ß.¼=°ImÔ¯³ÖSÛâ5’3<=­Çšòââq8Ë\jIø.Ô²Öé8_<±ˆoÏž—ÍkdäòäÿÙÿ*>WSÔ[k%¢¬ÐÔÓ¸Å,nêÇ‚ÉM¯³²öú­ªl¨É·Ü"¨dD~ÌÂþîŒü¾ªTyz¯›^¯ÒW=1y…²P\©Ý£»{µÃÝ®ÃܪÍGl­°ßn6Zæ½µVêÉ©¥æak¹˜îRqï€~ªç᦮ŸOjûV¤£tôU,|±Œ1ƒ!øl{÷[$áÕîŽù§èn4ké*é"ž5ÅÁÀ‚ù;ä‰ÎØê ¹×ýAØ…ÖÑ帴g ‡88s o²ì‰ù9™¤lBæÒàÎ}Õv2¾ Ý’Ï{¦ûµæÕArƒÿUWLÉ›ù8°gü5è‹ö“¹ÜôvŸ‚É©)àtÔ­·4Å K˜ :üL´’7‚:jõuÓº––çA$´W;uH’<‚×G#OG ˆé‚=2ÕôóúM¡¬:Ä!ý+m§­1ØóbkñôæÂö‘QÀËñë_ÓðÛ†—=GPá÷’ÑMAw–¥ù äqöiZ¸¾ÖÕ\nõ5µ³¾z™ä2K#Î\÷;rO¹%|* eL³Ž½¢mqosA‘ÑÑT³l’ek¿ë5MFr×u8^f©¿ZôÍŠª÷{®Š†‚•œÒÍ#°=šw°Ô%ã—Š]C¨ßQiѲO§í.%­š'òVL1ÕÏiÌ{ï†û¨æÉ«n•±QPÓÍSU;ù"†Ëä‘î;ˉ%K/ ¾'†¦Û¬ø ÆÂap¨¥°ÈÜž`Acª0zt&/wí5cO|0Añ0]­ klzÒÕÓ±Œ°N™btoÄ: ;¢Â-­qÉËwÛÕIïüG­W[¢nÕæ ¬m’ŒHpÆÕ´Î;6>¥úÍÇ’’q핊<^çÿ&ýbà?SS×õñú­mòuqÎAØ-”øT}4žô™¢¥‚[Fú­›+ÀcÎ{ùœàû‚¯sru£Dê ·?)¡µÕTsÓ’';?Áj÷„μNÒ&½Q=‡§Ïf>»­°ü{Ú=½Õ@o0°qprñ‘ܨÓö‰þ„ìîaI"ާýV§þÕÜ0â3•tpŽ€]8©¤í¤Ú«Í$N ÌÀVÖ—T=Î;?5ôSg.ÜWiÜ‘ÛÓ*ޱÝ#Æû­lø£{ψ-j÷8. ïÐCª‘ï¨.Ïâÿ5± Un«á-†O$°AK .ÁÏ,LËêMºl³Â(Óö€Ó2·†ÖÐÆ5s*\üË’AôÈÓ¿î¬× 9”ᆛÓñ?ÌVè£s³øœ[Ìâ>n%c¯tÞo‡ôŒ;ɨ¤ûPÀOäV»©ÜâHpo1Çð[ð_Ré¼8i–½Ži…õ‡;n`Ú©pG®Ç0VfÆù;¬'ãfI#ðñ|ä‘Ñ4ÔÒs†´žq÷†: àçÛÝFŸ´”Õ|d®žpã÷kq,ø€ndpˆäué!éõV‡‹Jß½øŒÖdCU ·$,n?0T‹û8ë#“‡Z¢ÞÐ<È.í•Äc8’žçv;ª”Øõ9*»gø+?×ZøA«ëÛËÍ –©Ã?û§óZª|lkÐryFøê²ïƒ»]ïºlÒÆÛ¤’º¡Ç´laú—õ[&`|cÙyZªÇO{µÍK#G3Ùɓз˜郅¼kÓˆüFÞËaš’‰åÞ§É ÏäÑù)£áÖS'ô;œÖ‚,t­HÀø+÷ŸªÁ¾7£¨©à%lTÔ¢¡¦²'Í·Å×È^݉È,é·6êR‡±Á­; sœcâó[j·môÄÈÙ”ܽ½°Ý}m‚"¸DDAÑ01œûª¢""""""""!TëÑUÊwTß=º*¢"wDOtN¨¢ï~ 6Û¥(ôHûÝÑ¢¹ví¦k¾»ûï“ ƒO{yŒž]ÀÇ~ßÍl¯Â·eᯠ©(.1^®.ûõÅ¥ :9ш‰çm×®VYn=û¦—€NÇÕC´P?ÊÒzNˆˆŠ‹C1³œ1Gæ37æ³êi©¸AÃþGÂú˜,Tn|<áÏh0µÃ˜u‚Ná}ú£Eh-{¨mWÍa¥h®— ytÓJç†òg˜2@,’òO©ÌañyÇÊ»½ö£Cè[ƒ¨ì´2†ÖVÑJæéÍ€Äl9n:8·;Œ(ŧsØØËœæç”uÇr¶ à‰U:Ó‡X®õ,–í§ sœ<ÉiýSˆî[‚Ìúçs¼ñ áö÷oâD²pÒÁYv±Ü¥&j8Œ††OÛdz2 kŽÀÆOÓáï„'ˆ²– ¸±Ol¹Th»Ô¡VŸ2ÞöÄIl ¸º<ŽÎ¸ÞÏwo5:ÆFóÆæG0# î>K‰å®##ðžë­À–á¯-9ÎFëªH¼Æà=ÍÎ ƒ~ãþý—(žìæ–`ãñg꾞FAËw·ý÷UiÉÁØú.YíÝbŽ6p/Cñ>7ÔÜ(ͶøWZ0(ÆpÞ’ ûïèB»8A§îO†–-3tª†ª¦ÕJ) Ñ4µ²1„µ‡pyr=r®´D\^{¹è ž"³Wñ!š~ßQÖ>çÂÇFIT_4“ßr}ªÁš¯KÝ,–+ö¾6EO…õl$ùž\nä.pÆÁÇp{…m.L=T û<[Ä}I.Zë $Ž£ãù©Á÷ Ë·ÝN@™tnæêì@z4|\qŽM}ª]h²ÏÿÍ»T®eoþ“ ÙÓŸlä7Û~¥[>x9YÅÝhYTçÓéËc™%Ρ§p9å…ŸÚw)ßöFO\°Í í¡iO¤ôͺÖD~[§Š g‘¿Û”åïú’½Šº^GÌç5Ûî¬>6pþ›‰\6¹i9ƒYRá÷›dçý…[òÝò9sý—;ºÖU|SRTKMU ¡ž'º9Xî¬{IB]Öš³O3e‰å®µÃ«\1¿ñ[ðËĆq#†ðÕÕI¯6Ç ;ƒòç`|Ô€wîæ»/ÿïvÖ‡cîMß”dþµ‹Z ‘ΓÀëó[)ð‘UOUáÏG>˜ÊDTóBñ3ùœ×²yá×ap;7•\žD{¬KW,ÐŒÇä¶)àþ&GÂKm;F÷ziwë—Ç’ïè³²(ëウ…œ9®Ž¡ÿ®m3|°Öó89Ò°;q†—`糘ݺã%p"õUqà®®­çž®¢ÏŸ¶ì0 ïë¿|«+ÆeÄÔxsÔMŽ)ƒMM$Rf'·—5¤ ŽÙöZüd =HÝOïÐÔEÀGJéŒrÜë‘¥ 0Iˆ“Ôs5ÛŽåòÎßßËxãd2x~¹y…Áí¯¤1ÝÞhû`•üKâÝÖÓ>9ª-’0Öç˜G3\àN6ê=ã…Å÷.0ëJóŒK}«åÁý‘3šßàФ—Ù±Q/›®iÚK òè$Æ6ÌãøüÉÛqŽAß±ù,[⺨SxyÖ²eÀšÀŸÇ#[þkZ䌟QÙf? ¸?ŽÖ K{ˆlži­o™ÊÙ kKˆ?¼2qÜ€¶<Á€zo¾Ë’€^:iüŽ>Ìñ±¨³RÊ0pN+ù*Yøcž)ø¢¤‰¤5¶¨ãw÷˜K]üAYs’ñ‡MO5‘‘½ÐRš–5ä5Í’&ó·>å§ÙäwZø¦pgÀHæÎ{ [[ÒWH¯ZfÛw§kÄ”±ÍsKHh=ëÕDDDC¸Â""""""""""""¦wÆ:ª¢&Ýp›"""""ùî5”Öú ŠúÉ› 54NšiÑŒhËœ}€­Zñ“[Õq_Þ5UQs[]6)"yɆ§Gó Á?Ú.õWŸƒN3]qrÛ„’ͧÃ+ê¶’L<ˆžÎsKˆÆíc‡u±¨Ë‰Áß=× >-ñŸLtNc‚2 ZûûBkÅ_à§iêV*x]¿Re–Oäñù,/E®¯qq‹YÏQ,µ´²SäG)‹ž(ZÆ6,·o#~Jrñ»Œ4|-ÒÖ»»)i¤Ôw⨤´L^íËÞç4`œ·¨$û(Ä-MQ¬µµßTÕÑÒQÔ\ê]Q$4¬-®w\IÉêIêI=×Šæ˜ØÇgx'cÛ§ùà²o‡¾,Ôp£W›óm‘\éå¥4U4îw+Ý>XîÇ#¸+a| ¿iýQ¡iïÚz±Õ”õ'â’Lù­pرùèàsŸÏ¡]Ú†¦ßEc®¬»LÈ(!òTJþŒ`'è ·ktǸ[qÔV?6Z»Cã• ´µñeò1Û`ŽC&ý2Á‚¼vڪߙèÜÖÅn¥«ª©%ü¼ð˜]ïñËDZ=–ÄÆ1ïòT8˜ãó]33™Í0-îùöZòñiÂøwÄ[e§1雨|Ô#9ó4,õy›ŸÙvyIX‚Ó\ú Œuòº9à‘²E#v,sH-p÷±_\\µëÍ7AC#Ku†D@ü&VÜßì¼|@vÇaœÂº¦8{G)ßö¶ÇÉQ¼„g˜÷ÝÊ?åÿ5Ç—˜¯¡QÀ;b2¸òør1Ùc†ñ“GÅÅ»— ®U¢‚íJø#§’aˆj_,MF×v~6=zNË%tÙ À誩ºÅ^'8› xkSUM./·&¾–ÔÐÃ!¤ôÃæ÷8Ô á6Œ¸q3‰Ö};æsjçó®8'ʧgÅ4Ž88$l À/{FwY¯í§¤¦¸h8©i„"::¸™Ë 5Ñ4möí‘ê¢: ŽB–_g-¯¿k+°‰Îd4TÔ¡øÎòHçcò?ø¬Ëã'S×é¾}òÕ$ÑTÇU ]#29C™#ø_ü–½ª*™œåm#ÃÏé¸cÂË^œlm°U]$ó*ÞÑæn:†à0e£¾VB_=k ŒåÁ Æç› àóÉLyƒOÅ.6À÷?%|qðÜi^$Wm¥òìú:Wymøb¬oõ­>œÀ‡Ž™<øèTx…¤e½AóYgÃG«8uÄZ:æ¶(«ù(+£‘ØÈÜ»=‹N>™õSCÅÔì§ð㬘À×Á C³œóMÞ¹ZÒŒ8éþK`>*QÀ‰ØÂþj{íToç;YööÇ×*ôñ[U÷?úÎ^~S%!ÈvçÌ•Œ?MÊ‚\§ŽzsÁ7ÊGs“Ò@q·åÿbÙñÉvÄþ"1…Ë›|àçäŽœãØ’0¢ßÚ1s‚é».æj»Óª™ýØ`{üfj‚„äõÊöt-Êk>µ±ÝiÉÑÜiça¬‘¤%¶§º¡å¹ žn˜Ø¯¢|$‚:.xߨùª¹»­søÈŽH‹ J\~G+¾Ë`þ ¥•Ü#†w4ÉNÆPØñüÂÏ”õ –&<ŽG»Ocè»”/ñùrx¾Ó[>ð@ž8å0X<É øšÌ|ªž˜À [)sDD7ôú—ãF2ÿ š 5Ž.i¥~GQŠ˜É'ø­tSJá'!' à•²oTqðí¤˜\g†j¢[Óõ³Èü}€ú,²ùguŠ|[ÐT\¼;ë zf>:hêHå;2Y+Ïû¬vê)øyoˆLo™fªh|_Gü³ôX[ŠÊÎ#êv»o€í¾DïR_ìÜ’H¯ÚÖŸÌhŽJ:IÓÔ¹¯”ô?˜SA²´ìÞÞ „;ìIÏl,7ãRa†ÝJ x2¾’1ËïS_lek‰üã-9ÎFvðAN'ñgLøüšJ·ÒG6#ƶùú-‰"„h„1ÅÄm1VÜsÉh‘Ž© ›#þ¹YãÁ¥k+|:é¶±Áæ˜ÔÁ&;Q!À…˜ps“¹ù,Uârž*¾j0ƒÉ§n -É%¢'=0@ÿ¾V¸c«”ÉœœàgcÿŠÙ÷««®ŽÙA–ª¡Ëœøg…Ó)?„ÆÖg¡Ý½{`µôWr ÆtdL'ö° ü‰#軬v{µöâËu’×]t­x%”ôtîšW× h$©7à’N iMGx¦žÓt¢³TÇÊÿ¾BæD*Xà9C]‹ƒŽ˜Ý|~3øÝ|¿_ê¸yi¸Çž‹ÜÅ.ßx¨âÎêZÀGBàsÑXþ_<úúåht¯ûU¦wÔDÌX&GÍÄ|œVJð+¦L|{ÔµŒøi,´2Å9?ÖÊÑ'§àkºÿá9€öÙTî0åB=в¸ÉÃûWtvš¸†²Gþ¶† Šš¥ òH=· ú‚BÖ¤´Üôýê®Ïw£’’ãC3 ª…ãißæPzA ãá^´¯ÒZŠ’ñE+ƒ {\öró€sŒ­•ðÛXÑëmC¨­îimDcÌh…øßlôöϱÜ=‘4žiŽ^^qß”UÚp@È$–Ê…Á£b;‚¹FZñͲÌïØ…ÝÛm…Ø7B*;ðïƒè(¨† ¹Èç>£“Ñc¯´žx$¸èˆf†:á#ÏCŸ»– 9ú…Qg ¼b 5<¶»¤¼ºjæîzÂØ’E#Xàɸ=HÈBö|RñºÉÄ 'ÙôÝ¢h)MH|Õµ2~¶¤°róÁ!ƒáÉ ã¢ñ<$p¶¯ˆšì×ÍGçZ,œ•y„¶9&'1Fãû¹Ä¡¸î¶RÎ`ÀAv7 `ªºjâŽhù%c^3œÃ¡ c è²xß ¨ø‘Ãk®”©lB¢xüë|ï`?wªfñ¼ÝÚHß•ÎÖ¯kéj(«§¥«ÐUÓJè§ŒõŽF9§ஈyüñ¾\z©3sâtÚÛÁ¾ Ó·V6k½†¢ß ˜çõ”®™¢) îàZænSܨÂ9›);L£u°ÏvÖQx{·UZÃ_p¬©.Ûõ„Iåsù 7ýÕ÷xÓ”3ÃŽ£hüRËKÎÙ>{ù(OáùåœuÐÏ‘îôí#2ßRðù‚Ú(8ÀÏÕrî2{ö(âß\¨göÎ_qÑ4ÛòÇK_ ù¹ðƒÿUCÅëè¸[Q¬l°=Á’á @ [hÎj&!§ qÇ ì§ÙÄg²ì$ääç粫¹vëœ(ãÊ“î|qާeÂÅÉ8ø‹+OðkTk¯#•¤g$­†ø2|gÃí†(Í93½íÛ?×<žÃºÍñ1Â,sŒáw4¼°´;~Ç* xûÏã¦òÃeŒ޹2<óåôR‡ÂñÿïzÑ??óczx¯“Å´^w‡-fѱm$nü¦aÿ%­6¸6³n„ô["ðg8›Ã~–Ís 5p»—±m\ØéÍeùÆœ;åœm•cñ¾×psZR¾Qb¬.p.1 ^Ã×¶2¡w‚*¸©¼EYâåoúå dLϨ‹Ÿo£ ÅžsOókÞh¶È#qGÌ©WöuÐÛ_¨µ]mE0’ãOKM÷YK±Î”IƒÔ†*i¡P·í£FÊ:¾Š©™Ç¤‘•’|T™x ö7õ7ª–È!ŽÍHRvÎq¿e†|a\â¶p3Q>P9êhÍ,”_,гcØò¹ß@V»Øyäpö[7ðó3¥àމtŒ’7þ‡§io)ÈnAù,†ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ*-hø³â×|d»TÓJ_k¶l·€àZæFâ ÆÇüÎ÷y}G…mý=ãe–†x˜ûe½âç^×0=®Š#p9=üŒ#÷K½Ì›’ ~3ò@Ho’¯6Aù*mœÔõZÎãŒ5:¯Än£¢·BÙª.ãCNÖôyçä¾ï©Ð—&ê4Ê»Ž—­sƒ¥ ç4S‚yây³Ý®8ÈÈ;·'/xrá¡¿xhÕZKVÒTYa¿Ö¶ªÎ*â-tR±Ä埉­s˜Æï‚Z Nâ?õþ€ÒÓj-I¶X¤ätqUy²`ÉÈ×| ·ÈpÙÁÜ1R•¿g …•z÷QjKµ½´â<þ#+Áû,ýJœÕTðÔÅåO{2b:¬^7ð¯QYxåsÒ–Šjëì÷ —Ôк8d¯qq±sNA#cŒíœ,ù៻AÁyÔzžß÷+”œ”ôÍdͶœ~²Gü$õscØ€pÓê²…]4mšã‰wÊcŠË_p§¥£<Üð5î“åÌÀœå§e p{*ãm‚¡?’âàøŽ>]”Kñݹkéãâ}¢&ºJHMx‚8œçÉwêçËFü âd7}”4i0¼r‘‚r=Ô‡ð“ŨôEÚ²Ûz¨{l®‡ÏpiÉ­ wüEþ¿ Ær§¤Ñ†ÓðWK9ºI³›±ÇOÍ%Ï`!ü¤vÇUÖøÞ>&¼FñûC¡ koZ_EqNm¨©.PA4~•‰‚HÚé$:=œXyŽI»ee}-©lz–•Ö+½ Ò•íl´³ãûÀnÓìz/Yä¶:÷Unp9±žøUDB¬.>ë˜øw»Σ}lFžÜÒ3ÏU ånàˆû4¨À^VñcŠñÚªä’J^+ïunq$Â$Ë›Ÿß‘Ç”wÜ»”­•RÓAKG 5,,†ž68¢kpÆŒØ:ûK?þ_äœâå¶{ªÿß衺*‚[¸ÙvÒDꪸiÚpédk>¤ãüÖØ83¡lÜ<áõ·OYéÙlM’ªQø§˜´s½Ç¾ òEÔã’H9\HÛlåqv@íí‚ —Žî»Nëè5žœ¶Ù¨Ž*K[ðÅZÁñØyø‡rZÿE‰ýfp} úEk¢£¨‚'¹±ÊÙ7âÀŒúà€WÍ\ì䃚ٷ†Z[ø¢iÚðþ{S*6 ÊçHFÝòò>ŠÐñÓ9‡ÃýS®ºR0ޏÅßü•¼4S:»z&XœYwŠlHì€ç>¿ùÀî¶k;Ñò¸½¿vZìˆ8þf0ãÊ\GrNÿÅ!8Æß8ê¡×Ú?NÑ.‡­n~8®¸ú`Àà?â*/cDÆéµŽ&ró¾ãNÖó ™7[b‡ªQÿµxÛ¿ÄW¡ø‡¡ ›ƒ³Ð•Ìc Øü±²„_h\LgôÝ@Á.²9ŽÜòÎïþÙEzáñ0“†ú…°oà,„‡>;•TY'v· †ü¾"~«=2~lœãºúÅ60áØ(-ãò•âíºº ü:Õ ̓ÞàC»‚ÒЩIárœÓø|Ñ1?œ“lkþ-Äç;òßeOðù­ƒ²èǨsqÝkÏ$óºØ'€ÊÆTpÆ#-æ®75Ãf“Èð¶Ì•žÝ‚íÇBUƹa‡ƒúÇΖÌÖ:ºxÌå{àsZÑêI=:•¼KæøÑ®»gUç”n?Ô§þ2±N±©ó5eâI9‰’¾¡Ç>¦W,ýöy£ãEÕ³LÖÈý;;b<Ïõˆ ±ê@nqó=”÷c@~Ar'>‹xàh>.åÇðÖÑïþ°ÀµåùšÑûJbýb’: j<ö}íòу ?”ÖÊC½1Ì÷¦ýB–”ò²hƒãpsrZïƒò]‡¢†ŸhÙõ¢ê!«>øÌj÷û=|öðr뀛}—Ê?ü(³þJH†Œ’AÊÁ¾7*¡¦à á³y5rSSÅ·?ÞéäÁÿ Oü–¾iË]!ÆØ|ò¶aá…óKÀMú†–¼ÛšíÎIÎåqϨÁY->ˆ¨V,ñO®ÿ <»\)j7ZæýÂߎ¢Y6.Ýg3³êÖ;™PìÊ6ú-ƒxÐ#J𡺖²Ë–¤pªÍø™J6„ˆeûöú)ìãd*gƒ×*vFFôÊ üCáïêµï (Küd²–¬µÓÓ_îNøq™!ÊÑŒe½”¿Ñ—hÅœK5}7!.™ÓU¶#Ôààã9ßsó_¢ã ì…î»ëû+^×rº*IY#]œ`¶ã·Eáj Ž”ãîƒfÉwšk Þ Ã-u+ì—®K_â†ËT@lW82êY~vîb=7øšwÉn2JÛr ¹[£¸Û«i«håo4SÓÊ$cǨpØýÓŒ•ñ¸9§¡ ’oß Øn ÿy%ßZÑh;sä’žÐÆÍPÆn$ªe­Û© ÀÇ\½H¿ ¼3‹†¼0££¨§k/·6®ï!ÝÆb2"ùF.Ûg˜÷YDAŒwP×í.“‡ÄoŸÒ[ÿû*†Èª½Í!mŽ¦í •´òKO:0ó ñÌ7àŒ…²ž q‹Hë9E$¢‚ñ~UE¢I¦„°`ò“1»g™£¡ä “†ÜHÒG'ˆm|§ÊMÀìתs}:‘܈ouË£ÉØïÑqpÉèï”PûFà'G霞FWÔ°Ž]²èšFÿá?÷ +Û€ÖÖÝøÕ£-ï`‘’Þ©yÚz‰ZçVÒDu™¥Ìødw(ÜH=®7AÜç+ë‹<ûŽëµÙÏ/ñÂäÒH#ll ÿÚ0“Š–yò,AîmÍ;ÿûUëœ`ê1ž¾Ë`^(ª(¼=Ûdц×Ü*ê K„{œly£w~˜Yæ>@Á—glóT|‚ˆ¸€N©Q³Æ 5·ïV‹¾¡§»6(›GQÞ ÷¸8ó Hç‘é…š¸¦îzKƒÚ_N^¾ …YṖr<’âÌ.q‘× ÊñJ@ðù­‡ÿÛÐi«Y©2crFAöSãÀ<œ¬sys-ú¥ý†1-ßsû¾ß.ç6Ùoö+èökí²àÉcó)ªY!s}pÒOe¼bZ¦¸x{ÔRÆd3[ÝkÙ ‘¡ùÏ`Ç8ýоëì6®ØÁÊÖè ê=7Ê¡n{ïØ®9ÇËä¸ Àéù­uq²k¦…ñS{½SLúZªk¿ß㑎Æ9@qÜ‚Zâ7ä±çu&¤»ë*øoÑÏK$ò™I(©%Í7çæÈlŽªÊx&&È\IsˆßØù©;àUõâ“VM C¼ªj«— qk|Ù<ñÍ~ˆÀ;í鼉ãW‡ÅmCG~¹U\-WHÚØj§¡äÿ[Œts4lé±7‡Ú3Oè]%G¥ôí#¡·Rs6Y sœâç9Îvä—}= ?ý¡z–[/ ¨tÕ0º‚´Ž:G$#êóúü1ë –ãn™¬¢¬ôõµðÐW‡¸ˆßO4cù‡ösÌ= A[6¬ûýUÓîä±–æ°™1ø¤9ü>Ã×ò^œ c!dl­`ÐÙv]s<€Þ§¿¢è’03ÜãªçÈ‘¸ôwU„±\©¯6Z½¹èë©ã¨Ç©cÚßàWÚW48aÍ{®,¬q-þj•4ðUSËOS sC+K$ŽF‡5í#v ¨çÆ :OPS>¿@4½ëÎó|·ºŠVòã“Õ|A§™ ãâ§#§Lë^$ðYMf¬Š¦†XgÍ]ª¤ŸºÖ78.ob:HÕ<øQ¯ô×4Ó/Zf´;”ÔÑÉ´Ô’c%o×b68Ø•yµÙŒUãë}CG¤ô…ßS\Kk£–®F´€ç†4»•¹Û™Ä=ÈZûá˜×¼WãZ¶†•ÑêH+î—‡GH÷HêšìóØËCzg[ósgoBàä· &ý¤P·ú¥&%œÌ¹ÌÑ“ñ`Ä3o„gè ê+ç—Í!§8‰Iw×ax³C Üô¦6¼9å‡ò»cƒëÝOΆÐPÒ¶=C¥[oŠ6ÒrXëiéØã¼Ì09˜o6ZGVqÔ=ãÍ}u‹RÛ©¨âu¾¶‘¹‘Ìg,ѽ Æè̘àgÿi¾ù ÖàçïÜ<ÔÑÞì5Ž@ö}æÎÄuQ:7ûž£9 f<:ÖV-y¤©u.žšSGQæJe…ã¬o=‰Á#\cØœ'ìáʇØv\2IPoǧ…ZÒëûu8í@<ŠÜ £­cvw·™s·xÞOUfx.sFÎÄ/ªÑ&&òÎH;à-”øQ¬Š¿ÃÆ–'É!†’Jgóà9¯Šg±Ãbvm펋Ïñ˜þNÚ„\_Lœ“3r7öʆ¾jþáâFN\ÀÓqwÏ›£_ó[.êå±À9÷÷B= Œ_hœ,w¬3€9Ù~ o® 4ÄÿÕ ïe“|*ÒßÚ2d\<ÌÆFG#üïÛáßÛ+cšv{¥Y‘×Ji¢}$ާ‰ÏªŽWN>dpcO§å…ï³<ãwï«FÝ;(Kö…ÑOtÕÐÓ¿îÕ6ƒNÙˆøK£•Î-Ï®þª+\#Võ鎞Šyx¸¾nÒÓ8¹ÂŽíWýÒ'å—ÍHzwCcÝËõ¶uβÒ:n8*õ.¥¢µ·²9]ñH=ZÐ œ{l­>k›G¸«|¹iZÊçÚíVzz:Ï5¼‘TÏ$Ò>'µ„sÆ2@Iê$˜1ñc+ÊÕöZ]K¥®– È¡’ úWÓ¹³3™pÀ$wÁÁú-pÖð‹”w©-ïÐ×YäŽPÏ6Bü»Áàã—ùªapÇš·†>/zŠž–³U¼ÖU»WHÆ>W· 1<0¸81¬rŒ¹¸Î1‚—‹æš»C<&ºÕs¢p,%®†hœÞýˆSÃúãžk1©õ\—ºè¤£dužž)`åóFã™ÛuÁol¨IPÊë]t”õ –’¾Ž Å;y¹_¬qdt!À©a 8k¢cßâü=;­b>‘ì¬s^×Fèä-s \ÒBà©Mö~¾¢>#ß(d¦”Ó>לÿ,ò¶F¼9‡›ݯvFBœc°UQ;íüÛÑoswý!PÜŽÀÆÕ_³š«ŸNë*GHÒöWSÈŒÿ…K°ƒÀ“æ¸Üé0''Ÿ¶?<ŸE¯è2¿”s6üÖȼ²&ðO¾ž©ÕIç9œÌ tnó\$aÆÄ ˜>˜î²â"*Áʪ""""""""""""£³p{*¢'tDBˆˆ©ßª·8—¬-zD\õMâ@)¨¡. ý©^vdm÷qÀZ¢ÖËŽ§Õw=AvÓW\*¤žwŸÞs‰ÀìèØS/À—«¬ðž'êVÅ5u(e’þ6Âñ—TÛ¸ ïÊIèज़ZG\.]3ò\FûŸ¢¡-è¸às7ú¨Uö…i))µ]‡XÃm-Ê‘Öê¹G—0žùs ü5eqkLIÄ^hî"ØhßQxŠÚÛuÖ(‡4•§&2yGW´™-pýÕ€­VË•ÚàË}ªßW_Y!!”ôкYޏkA%N<7ªÓ:å|¿Úî4WKÅkcû¥u9„Ç 8%Žk93¤q$ãð zœåךwOÞ¦²\nÔ·AñEQ+cµåÀIè HÏó^µ—Wiû¬N4—j‰c沞vËÊ[³¿ ;¶TñÁÄz­gÅ94ø¡¨¡¡Ó’–6NÞWLò~)±û®¥¾­Áî°ÿmÒÞ8…¦í09¬š¶íKMÐ9òµ Ÿ©[sóäî}ÂíóUEóTõÏBz®±‚É÷\Éø3Ÿ—eâêûs5FŒ¿iƼ5÷mEqÜ4ɘ~ejzëMQo¸Él¸ÓKIUG+ ©†Fò¾)K\Â;A\ìÅÂbÑÌæó {z­Œx0ÔR_xAK,21Öyå órÙw3p²G²Í]BvEB>Š„n ¶¸ ô޽µþŒÕ–K­;waÉõd!Íú¡Wø]­8 ©F©Ð÷[³ôÛÈ×Å)ÒñOÊ-98q=ý}-ãZ[àŽ-En¶_˜Ø÷”8ÒNãê\Ðèþ‚1óWGŒªïÒ”Œ¤Ò4ì¢3ƒV'¯3Jøñ»b-Ž0ÇzsaÛ³ÆtÖ áÅ·Mh«Ø¯Žé(–âØY‡67ó¥Ø$göVUð]iÓ6® ÛÝd¹A_p¸®ÝŸÉs'piÝ¡­½0yIVmÜìFÞë‹Áë±ÇP£7Ú,În Z$,is5?7h4Õù € ""Þ¼Bžè[Ö›»ÓÔ\ÌTXØ@tpÊI2FìZÇÓœí¾EÕâ ólÔzý&Z,U–Ñ}”׺icy•­}<%¡¿XÓÎÝÎÀJŠQ<±üÍë‚ÎøÁYà Nö×:J7\ð.p7âs1žY˜?y½Çí Ž¸#cT“EQMDkã•{\sHÈ ŽÇ²îÆÇlze¸ îºÜ§©V/ô4\DáeçJ¹þ]UDbZ ’¦3ÍIè ¤ú8­ZÞ-Õ¶›M¶åK%%e,®Šx$toiÁ.ª9<¹Ã¾alÀmgÞø D€ÒÞª¢<ÇbHŽO‡~Ÿ矚xñ¬l u”C%]ÆÂvòÜ[ŸSØw†Ü¸Çiâö’ºNêfSÓ^i]+êN#Ž7Hç’zr‡g±­¥ráß"¹t;„wPs°Q«ío/¬ïÁøu#§cKR 1î3²Ì~ `3x’Òîå.l-¬•Û㤛óÂØž×O(!¾d¼Ü¸=€ûíì½V¸>¡v}UYÔ€‹ÇXø©£Å‚í<´sÁ(¨¡®„s>šP1žS³šFAiê;‚åá+ˆlÖÆÏKQASh“ÌtW’üFÆ´8´IâkÏÂ=p¸á/m\5Ðöý5Dèj Kªk£¦ò]U)ë#›—`‘ÔôW-ƶŽßJúÊŒa †ŒŒœNÈekËĦ°¹êŽ2ßê+Þã¾QCKr"˜ø[óq'Ü•3¼*h)xÂ+}-—ɽ\Üë…ɧñ¶Gã’2°ÀÖã×›Õe“ÆIÜ•òÜkéè_LÙßÊjglõÁqÎÞÝÔZãÜ{l¢ßÚ¤[Y¡¬ºÖ výêÕY÷Z—´n`˜`@ö´ þú×áïlw§Êc£3¶–àÐvt|2ëËð=X×ã{E·Kq²ªãMe¡‡ôƒ00Ñ6yfWïñ«oæá¯iëg{š¸Šk¬C~h‰ÙãûL8w¸Öʨ炦š:šycžžhÄ‘HֽނpA_KHÆ:.`€qõÝWª°xýªn }ßKÛ+.µ äûÁ‡–BÀàç9¸'êUác´Û¬ÔQÛh᥆(£…­cwåŒõ8k@ìÞŠ*ý¢Ÿþ èæóp¨ÿëAy_g& Öç8xuåÏlK¾¾É¹X[ƽ­ðéœ~*©*›ïŠˆÚáqZè¡.t„ž~«eÞèéè¼Ì%ØþØôÛøpÒÚãºfÁ]I÷Š *|úÈÿeðÄÃ#šïcÊþòÚdlk#kXÀ֚Ѱhìr@ÿš4ü#|ªãÐÁÀ€OÈwþ)Ë×ùabzV‹Sð>úʨe’{|&º–HÈ "Üø'ró4õ<¯8QÃn°e’hÚêˆá£¯ªûå¾£ðšzÞPο»#ZÖœç­#æié)(šÏÒôöê*JÊ–¶*Ùb¦ds9ÍÄŽhã~ªxÝÔZñœ]¬·Ü[s¶ØZb}©žsÍ=@dx3Æp\|ÂŒ‘³I<¡Gʺʚ©ùç–G‚÷’p?íÉú¯w†ZÆã¡5Õ§U[À–[}@‘мü33£ã>Îi#=ºõ TxáUô†ŸâÖƒ±Õ¶éYCª­r¹¾tôÄþ¦F€yyÃz€winmo Þuƒx¥Gª5ņ®Éj°J*£ed|©©nñŒ‚×aåØ#à îH™Ôz•ͶH ?’)e”¹î"YÇF `èZ9ÎO\òá\£q•SóT÷ £i ß—§^Š¢œpâWÇZàX@w1ϧEJYZÀ20ßu|mé}&ý~5,:‚Ž–çWNÖWÛb‹Ìy‘v%%§ .h`å#®ý׃á·Lp;PR—qPÜ(®PÔ=¬ ’ SÒUÅ‚Fdk|ÌõÈoAŒî¦õƒYpÎŽ”v]I¥h©XÞvÃOW ,h=ùAt^µ>®Ò•XúžÉ70¾]|NÈõÙËÖ¦¨§©‹Í§ž9ãÉñ¸8du ´œ ÁÜUM•©Å­5qÕü<½iËMîk=um9d5Qœqýùø]ðJÕ®ºÒ:‹Dê)ìšÙ=¶ãË¢xÈ{{=Ž9§+|¹áÁÄœö+›g“-q-oAì²çêõÄzÂËW¢¨«]ZúØb†vÓÊêaÌðÏ×9ƒ^ÿNÃ+ev·W¾ÙHëœpG]ä°Ô²]dÀæ '~\çì»\FwÑCo´_Z2FXø}I#å<]k·ø!ÑÄßm‹ÉíPÝs•üïæ k6 l1Ÿ¯U¨µ†ÃÀû¦÷¨ªµf«´2–’ÕI&`´W3É|ÜÄòàH `oÕ`e÷[e,kýålGÁf¸fªá=ž¦ >ç`"‘ísòó3¾@|?áYÓ¶øÏòG7˜IÙSn§ÂVµí-8 ŒwÎzŒ(ãë†ZM3IÄKc_M\+™GUh,|o Æ?ia¿ã#`PÄ6è§×Ùè\îÞ¾&Ç©' >™¦¦$cÓ?Íg½[§,š²ÁW`ÔVÊ{•²¨rÍO( BÒ0ZáÙÀ‚E…4·…} aâ 6¡Žººãg€yÌ´VžnZ€àæ;Ío){Ààs¶Kº)wÄOæ¹ ƒ’ <Äôú,]âg†¹`u\è¤Ô£i^÷Âjê)Œ¸îRâHòV¹p w˜^ê„Ô¨ÓöƒØîÚ.´ꊘí—-TÑo÷x_is†3ËžPOA¶U‡ösײ-Sª­n}E¾ †ó­ã>гõV·JÇ7õ žgµ®ü-qôÆ@Y÷ʪ®=ÕFªùÝJǹÅýÉè¾iè$k¢4ób6ÉÏ#Îbñû öZ¦âÍÒárâ. ©¯¸Ëq¨uÊ >¦Hü·JŽk\[û?aÙ[ÕBòøÜ[€×úAÁ˜Éæß+²–å37FŽ›Ëï¶ê{­º¥“P\*édhp2A3ãpÎ;´Žªü±q÷ŠVsÍE®oDôÿZ˜UÊpð÷§|^ñ.á•ÿ ï€ÞgUP˜ä;œáÑ9ÿtôè²%Ælbó¡÷Îyè®9$c÷ÁÿYdêo|(š‚–­×:è…A-tn£q|88øÀÎÁ Œ¬¡¦5EƒSÛ௰Ýi«éêçÄè¹kN î7#¨TIûDìz¢j»§ÓÕéˆèØ"…¾e%Kˆççxs]È1¾Å®ßxsg 5mÊÙ¡uæ…ŒÜnÔ”—º;LR ]ÌYæGÏÈ]œìc` J²¸ë»· uäú~½æªŠFùÖúß,µµPžþÎiÙÃ;b œþ î”—?švrCè=,ÍÏG‰žìõèCÁY˜sîÎnR0}v_-Ò®–ÝEU_[+b¦¥…ÓÏ!8 cZ\â}Z§ã´«×¼D¼êŠ’à+ª9¡ŒœùP·hØ>MYȽîXÙ©µÕOJgÜk¢¦y‡`kÜ-ÎÙ•’üLp~ˬttWùoU—6§šH„.§…œ¡­-vy‹Å·à!av‚H©U•¥’9„`´àqÕvDÖ‰:ì²§‡Þ$Vðß_ÛïñºWÛœL7*f¸5;ºçÕÌÈ{}Æ:¶iIQU$Ut²²X&cdŠFžÇ ‚¸]¸wcüÀ¸ûv\\0F@è°Úï•gâËn”¤oý¢?ÍkÉ® äû:n^ê{Xa ¦¼¶¨;úØÒ>žWñR8B"ѶOÌ…NC÷9ê¹ó@Ücá'Û*ŽÀÇä¾jšjj¦>*ªhjXæÞÙckÁaêÓ‘¸>‹¸7ÑðòþÓÑt>‘€*I"ô#ò=>аâ/ëà{Ðüýiù›·áöiÎ~yÿ%óÏr¡¤$ÕUEo^wc úñß„öÈŸ$ÚΆg48†S5ò9Øê_ªÇ7ïÚ Å¶»êåñòÊvçêIÇÑc½Uã#QL\Í=¥ìÖÐHå}d²U’ÜŽÍòÀÛ>«ñK‹ºÃˆÁ¦»ýî:iúx™OL‡˜Cy6ˆ“·Ug¥Q¦d>kœÈÁ-ÉÈë…åÔTÊe“Óa•Á•3—žRKœ¥¯€Ý ¨£»Vqí%6˜u´±º±¿ÎækŒ‘ç𵼤ôÝÀg|L 5ÓÚŠÓØ/ûœLÇ;©*'.Ûsr=W­°¢£·íèã/lÜT¶>çw"׬#ŽX஢šw€çùM‘Ž,9?´Òâ9ˆëûˆ:6ÿ¡umn™ÔtfšáHì7d¬?†FÚc†àþx …o³<Ã|c|ú.ØœcasNîÉsŽºv<9®Æ?Šôé/°IÜËNp=7WµƒÜE°Í ÖwØÛý\rUºh›òŽNf‘¬/ø—HÆEV,7чIWop{ÎFÿª{;vÖOÑ~0èj'd¯KýÞ3øª­ÕøÜîbx¦:8¬û¡¸¡µ›ZÍ=¨¨ªj_¿Ýÿ.qíÈìG¶UãŸRU$k$c£5ÍpÚáGpB·¬šGXµ Eþɦ-Û¥DFª©)[äi!ÄP3’ÐIöWvÏòX3ÇŽN×Dׯ*>õãkªÂ@Èy '2a®?Üd;²‡|9á&¶×¶øª´Ý£ïTÏtÌ`±ñr1ç£\D€´;Ø8è¶ÁíÍÃË^™•5¯¦c$³¸^ç84CZ 8·¾J»³óUæµ¥Î!­$“° x·ñ A\ˆÑ4QÉ›tD†H[þÍ„uh;“Ðãm—¥àSˆö{“n:^¹žEö¢C$syñ5¹åÇb0O©ÉôRÅçߦ ïÝwŽˆˆˆˆˆˆˆˆˆˆˆˆ¨á‘‚¨ZÛýIÇe@AÎ;ÈIUÆýUSº¡ c'®ÁW{*uDÎþØQƒÇë/ÕšKOÒ[­×9mÑWóUI y¢’WµÌ…œ­%Îvy»`sä/›Ã¿† }-ªâ%3¦¸¸6xmâ8o7‰Ý/@v9Rž628Ûlkцµ£@¹.~™+誈‹x˜á|WÒTðQTÁC~¶Jf·ÔËZìŒ>ž¡ŽØät-ißZöÖ6+î“¿ÔÙ5²¦Õp€s:˜G33€ö“³šH8pÛò^Ÿ ¸‹©45ÖZë-Åð‰G,Ôï%ÐÎ3ÑíÏäAv*ïÕ÷ÎñBëÒóES¥u¯ï5”ò:¢–¡£©‘®øÃú|Y;uÊ»¸}]EÂIª.6)aÕ÷z¨ä|wØ«ŸRØØràf7Óy\zg Ó¬½ñ6»’¾è æŒ:Ž’®§ˆT€y#ryØã†’÷\‡„ Âí ¨ø“®(ô¥²) –i\*§19Ì£¹ç‘øè0Æ]€7+hÖKm-šÏCg·Æc¢ ¦Ž–ž2I-Ž6†´gäëÐnq’¨$i ëš"*=ÍcKÞàÖ´d’pZ¢ãµÖÝyâö¤ºZ˜ß¸TWÈøCvk›ÍÔ|÷?UæðÏGTkkkÒÔ—+}MÉÏŽžjÂD^`cœÖ?o(À;¸—âð‡Å÷ü.†Áܾã‘üUÇIà¯]>&Š]¦âÈ%Á‚gàãû¡s©ða®Y¼[¦¥<»¶f{yOæ¾3àlj¨œ¾ÿ¦ÖÆ]l³#ÇFã“lúö^]w„,ÒUG ;,uÑ=/ž:îF°“ЇN69wÒø?â›òùª¬0g §HH ìÞýX÷Sð_‹r„V]´•Ê nQ‰[ Éq¸c‰8ØzðÒé{IQíö+íK£åò礢˜àò‡<4†ä–f’:•ñj=m­*¬Ó7«Ýú[{› ¬¢­ª™Ìk[ñFZÇ’ÁÈÀ¹¼*:ÁKÆ› ËR½¤£’S™&òØ* ÚÖ=Î;Îbüm’Ð=VgûE.Öšê½%i¡¸STÖ[ÝT긢œ9ð  ™ÎÑøyšAõ}ÿg\:“jZ‰ ãL˜ãŠ2ù–jòîFçäwÄGöTÀywš×5Ä07pÁÜ{Ÿu†¼Vk‘§´\ºFŠ’š¦éªí·xÅUG• PELçLâ|´ò±»eÄo¶ñKÀשõ¿&¼Ýé!«³iø³Å3öK<¡Ì…¥§®0÷çÖ1ê°ž¯´ÉaÕ—{$£ ­š˜Œçð<·¯~‹Ê_Eº®j …5u9ji[4dôæi²ïŒËà¾ñæã4²k|6úÛËNGúX¦÷Ë¥qϺÃm8p88)Ôû¯²Ë k¹I9Î1Û+è¢s‹ÄCpí°¶AàûRϨøau[Ì•Þ{kÞçdŸ$áŸð¢Ìl;*:åq-ÈÜî°§Ê'Õør¿=æ4µ³ãÀ0àJÖÜŽ$û+“Bë}M£kW¦ïwT„µïû­C˜Ù z´=¿Ùp!m7BÝëoú6×|«£u5´Í™Ño‚ápÈÈpdw ä‚×®¶}ΫUSþû¿—¢o&¬t¤sçetüCÄœï°UÎǪ‘ëºëýŒàòÚα¯üaá…ƒà¸ë‹/>\ß.šqRàáÔ8EÍÊ~xXËTø´áå¶7‹EÞó+]ð">üÎ$ã豞 ñ•©)M1c¡®<¦­ÒT¹Ãl„³¯ªÇŸÄÇ/-’#«¦¡‚OŘk#¶k´qµ¾MT‚®6´tk[0x`íðágÍã_.8µ–Ÿ¦™¤jm®1»=ÉäÉßEŸtGøu«Ûm:šŽ*™1ËIXñO6ç»ÇÙ¤«É÷+x¹2Úë…+k¤g;)Lí9¿¼œã®ê0ý¢­®CHÔÂÙ>âÛ”ñÍ(; À>¡²ºT[àçµg .õ:~â!Ž«þ•M3<È'ÇNfžã³¨Î Yh¿š~²(Y©´íMÏõ“QJ&gÏ•ØpšËºkŒü2ÔQƒA¬-qK€LU’Šw{|xî:¯øåd‘6V=¯à9®iÈ ô ÷ 0øÍã\v::žiÚ’.5âëS‡ú´ni>V{9Ãú4]±ï†ï Öým§¦\@mÂšŠ¼µÖªeò_,Y Í&ZHk¶,Æ20zœ7¬4ƨàoÛ@ùÝe¶¡•–ÚÖSvcàã•ÍõnálüGµq7F³PPE÷jÀDuôÁÙò&gÜ´õöù+ùŽËºç+š"""""""""""ʃ`0„žÊ™äªãÛdéßeLdúaW¶ã 8ÁѤ9 Æ2ªÝ›Œ` “ñž¡USºâX×¹®sZKNZHèpFGБõ\רu®ákµKWu÷Y$düOäÒ8ãÐ5§p½Zw9Ôñ¹ä‚qÓ+°€FÊ""*`Ý¥ÅéN$éóeÕ6áS5=C$ôÏýèßÕ§a‘ÐãpTLâGƒ½QCQ%Fƒ½Ò^hÜì²–½Â †·¾#þU‡ï| ãŽoõÞ_e<ÄC«<Â\¾KO8ÀÚæ2“‡šÊ)K²×:Ñ<`^g4óÊËšÃÿë¼—×Ý[¦©^ZMÙî Ž"AÛ”‘î¥/¸=¦8Qc–šÒd«¹Õµ¿¸MŽyH…¸üód†ï×rVG#?ˆãoUÅØ‚Óó\\[ÊÖ8òûes¦’f/634`y¬ÌÏLúew",mâoQ1ÀÝOpŽo*yi ,¹t¿Þø.?E¬ºwÍê×9‘dpÜ0€O×eßgšZ*êJªy¦§ž,rFò×1í<ÍsHÜ@9õ eÞøŠÞ&pÞ–éZæþš¡?u¹†ŽPé@Ú@Ø{pìv9ôY?‘¿¼}:ªµ­høBâŸELnU pËC¹NFFpUƹ…®/ÁÎpHþJÁÖ\Ꭾ©e]óG[æ©d-€M};ùX Œ·›”4œàÛ,{xðŸÃYêéeµT]ìÐÃY$0ÈÙ&:½Î{Iæ=IÎ=€Pùxª¹Öê*ª*(ŒI3‹ŸÈÐÀwìÐ3…³O :li®iJ ¢ŒT:•ÕR¸®™î“9îpæŒû“žÑÊp7öZüûBuµüi¤±Ç)Ù­q³’ÊL?V˜ÇÑgßz^+'hî Ÿš¢ù]-sÝ °75žøòÉù¸¨ŸãH¿Hñöý#s(îÅ·ZB\ sfÉyöÄ­•»öhX}^¥Ð:Ÿˆü£ÖV:jû½~šœÙ*¨á‰ÓM%0ýl2°4;“Îte»ò±ŒÆ8ñ¸[Áís®«%’²šØÞ~{…M+ÄÌÈ1°‘‡¿ ŽQ¸=q…‘è<4VÖñÞ Is–+@µSÝêk*¢òæm;ÈdŒßâóÚÜìÉÎ7¶|Upú×Âî) 5‡ïBÑSCm(žB÷7%Ìpæïñ0Ÿl¬Uov*X.Tâû<ï†}©´Ã›ñ[®1Õ‡Õ³°Œ|áwæ¥IüC¢dc×n¨G§ä%ñY®,š'ƒ×vÜ §¬ª»Âû} ÍHöîâßÝhø‰õåÂÖ9æ·'nÊè᎑®ÖºêÍ¥(Il×Z–Âéy¼˜ÎïÔ5¹wÑlωºÒƒ†Z0]ë) M%+&¡°Ž`ÐÐOW;°¨×|ñ…¨…S™l°X)bÉäI;Èíœ9ŸÈ¯·NxÇ’(Ü5F™‚ snÆ@.Ûg“œut×xÁÐ̶²ku‚ñSXK„”ò>8ØÌ ¿'9ì)Ö¾,øƒrÚ÷NÄsäÂ*&>üÒ‚ß§"Á:Ë\ê]]Zjõ%êºñ8qtn¬”ÈØóÔ1§á`öhx¶RÒÞn§;.¹ùa$o¹Êé|\Òró‘;•îY4~¦»ÑÕÕ[ìuóÓRÑšÙ§8FØ#ŸœŒ`–¸ ÷-#±YMøoâ­óNT_(ìQ3Ëpòh檓Է%®sy@ÄF{e^v¼J©ds\®v |~Yt‘Ç3ç™§|4ÐÒO÷±î¯]-àÞ˜BfÕвG3û­¾oÂÒYÎày0yÛöå=°¾Ý7á‚[¥t×éIEÈ>éKM\éO9'g»”9z`’;,ÂÞèbÊ #b·–ÕyÂWÛÛRøÁ‘Žxòä³™¬- 7˜6W5“@éÛ5-¶–’žSKm¤}%,p²7K§á`<Ñ0ç®Ûä¯Vßj³i«T¬²Ùèèi⌿ȣ±‡r·a°Üàa`Nx–—ˆ|B§Òwm9Kný"ÉC,¹åŽc Ëdæ’ÖÇ}”‘ ïôX/Ç<ÒEáö¹Œqce¹QÆñŸÄ<À쨒׻š÷îNãÕl‹Â&Ÿ¹iþéØîu’TKp×(ã2s2žðøãg ä!ÄvsÞ²Ø0y¾ªÃñ WµÔÓ·™®°UÂ3ûÒDæ4ïîà¡ï€ƒ-W¹¹Ÿú‹-[݃³|MÁöÉ\)ýñ/:ùc³Þé%£½Ú-×JiX$5”¬™hpx8€æƒ¿p ±+ø ÚgSÍûc{K\`‰Ð¿ÍvÎa-ç d A´u…\(¶Óq±T*inÈáólÅí#Ômó Ý|Ö‰žm|@¥’ 2ÑWms]œÿeØÆ?ŠèªðW}òZiuõ±îïæPHÑœáǾ~‹É¬ðY®ôÚ³MÍ. åp™ƒ9g”öÉéì°ç81Ä^ƒ6¤ÓuQÑÿO¦ý}.3¶dfC=ƒùJ°¥‰ã|sØßÑWâ8€ø@ë•öÑ×ÍZ6Áèp½K&¨¹[¯´+mKèªéfl´óBy]‡B1ü}FÅN‹u/ˆŸ 7ˆ ‚~Š%¡®t5Ð# tHnzò½ÁkÞVóNÄ÷?É}v±Rú–QÇÉ+ƒ#Á¿8'mý×»~´j=výy±Ý-Õ‘È$5Ïcs~Ø †’1׌¯³MqQézƒ&Ÿ¾\mäaÜ´•OŒ;8êÖÐlA^EUö¾óªz¼†Ü$¨¬5B ’'<À¸?‡p¥¶ñr\áOÒT…¡¡öÙLd vcò0=2°_ˆþ)]x¡¨¤”ÄØìöª©YmŠ:v*'{€$¹Á NÎËÀ^%]¸gªèµ 1O-ºsåVÓC*bÎ=9›ÔÐBVÈì·;múÓCvµÔ²¦Š²ÔSHÀ摶Gסè}ÂõXrÕTïóDDDDDDDDDDE@ìNêÇCëÝW'8 ’GüèNßòTyôèGNЧ¢á+œÂ7FôÎë–7ö¨ æºWRÛ-µ7é›-,NšipÆŒ’~BŽ kjþ*ø­¹jÚú—š+e¾ ÛéŽá‘¹Ì­hõ"RISvá ±ÍÊ3Ž™\ÑEÄ4c~IÈ ¹Á9B$œuUpô\[ʃЀªî\àï°¸¸slמÁG^-ø Ó–V\ìÚQ•3Þég’›ï5ãîñÉð9Ùåp팃챆Ž+ñ³ŒÕUÛxÕ¥šÖ\£„sci<’8†ÆÖs9ˆ8êTé‚_2Høß œ3Èüs7Øà‘ùØŠ$}¢š’X­ÚkJA1 ¨|µ•,¨ly2õap{@²åá‰÷Ù)ÚʪöºjYîô%“;‘çrÒæ½¤ìõQ¢ sI8ÿµIŸ Úø·6Ÿ•òo´/ÈóáV’?¸ÙF~JxàrïÓS)ߢ¡¸N¿$ùaqx#q‚ºÙ6]ÊAÇ)õQkÇ®€Ó?Ð Î Òiú1¨_WMeÄÔHÙ<¡ú¶â0îG;v4’3€=7Áæ§—Tp Ã=A樠 •Ùêc? ÿtµeõ«oµ²\\‘–Ê\ÒpH ‡`ž›¬˹™°åßòRcÀå”|_®µÍW0ðÜoŒû-dUC45ÓTBúz¸œcžXøÞÒÓ¸ ‚+ç•’6D£î3ß =KÁ- 8课p³Zñ*iáÒ63Y;š**e•ÅFF\ãרV|Ò^ nÓD$ÕšÒŽä ¶S½2 ßÊ=z–-~x?G¢zÍÀÈꛋŒ‡Kyzã9Øœcª¾´ïxU§è »BÙÌ%ļÕÄj^ì–ñJ\pLl8Î6é¹W½ ¶† }= †žž!q´tkXÑ€¦ÐZâwߨîªÖç ›G²¨h «Æ«½ÑÃ{6·H×TüÎF»ãårícÛ~«ì¨µ´rA͈çÌÈ;áÍ#óZÄà¥ÒMÇ3Pe WÆÒJç3›1¹æ탿+ºÚ\FÏÙG´"¢X8)l‚7mQ¨ c†z Îþm Sd÷nr}=ÖÓxx# òAÿæÝ¿·ÿ“F¯>QŽŸÁcoÄ  oøÏþj“`qÜoÿ~ª"ø¨4ž 1¸bªÏU ½À1¿o«ØpGñNPFÿ5NVì:oüàöÙvßü—HõϪäÀ;ŒõÇuÅÀò–†äˆ;åXšëƒœ3Öµ"¯RhûmEY{^ú¨iç“—¾2×8clvú,m}ð‡ÂzúI™n7ËT朗:Ï5±ÿ…àä}~« k:îÒÙêô­ÞÛ¨ `s™™¦©xÇ@–þ °f©ÐZ»EÖǩӗ;3žîXßUlR»Ã$ü?"VjðC«'±q–’Ñ-SYE}¥’–VÉ'+L­ð»Ð»-sÿÚû+/Å~‡7ŽÚX Á͹ѷrMÌ\°‘²7è±54­dÍÉ%áÝGe±Ÿ ü@§â‡ ¿FêÓVÝm<´Õ‘ÎֻΌ·õsrûŒ´ŸVŸUvj^pæù`¦²UiK|VúW½ðEK”"/x{ðßqœŒeX7¯ Ü0®ž®¢’’{sª\߆7Ÿ.†ˆ†v$Œ—õ;+;Rx<·¾Ø¥µ$ÔuŒÍ[|ÖMø¾#Œr“–ôÿÇñ³‚׆¶#}®UÑÔUIA¤§-Š òלdr»;tÆ1²Äì­.§¦dr=ͯa³^Iåþš˜þx‹Uv¹Öâ¦7š»dng/똮pìÜÇÕK6å¯êKOÕv®"F—òŒ“ü—!óÊ"""""""""*8àgeUĈçè„»Û¯ðNç÷UÛ¢ª§º› U踸g§TÎFwU ª'} ÜK’Õ§èx{i«1Õ\_qäv€~ïϳGªÃ¾ A㼑C#[ìÕ>s]û`pîSô+bc DEçjKݯNX«/—ªØ¨­ôqgšWa­·¹'¤å@î6ø–ÕzŸTÛªtEÇMÛíÒ=Ô¬†oÖN÷PùZi<¤á»ÌzÖGà·‹x¤m=£ˆÔǯ–.ô±ô;o4Cqß%¾Ÿ‡u,­•ÔW:.ê¸+)* ðHÉz¸lBúvÎq¹EL ØtÝSluÙW§üÓ9^¾ÕVm¤n¢ÿPèmô‡¿”eÏq 5ÜçÐ=Nø WúÞõ{â®—¸íòT×ܦš«î´äµŒaqÀhß–6O_„’¾M«/ºRûïOÝj-õÑŒ2X]ŒŒ…Àìæžàì¶ᯊÐqWGK=C"‚ýl{b¸ÁyO0%“4vkù]·bÓÛ .4a g8 «Z^-5IÔÜs¿Ô2 ËIG £§ÁË@‹á8ö.?U(<KGvà­nu[!®«¤ž'G†²9\\cÏíÌ\¼ EúÕWc½VÚ+ÛåÖPTÉK;p$åŽàõiì¯ Þitÿô¥ò¹îŽŠŠíO-CÙœ¶0ñÌí·8’;Œ…´Ú9ã«£‚®ùsFÙÌ7ÁÍw&ÁñMR˜¡?šãŒd¯šr×;댨}öj[h·é†TÈù£¬1 ˜?|än¯_³ª@85v§ó9‹/’?—?‡šGóiRajïŵ·xŒÖtåáÜõ­¨ÈúØ™&>œøRçW;pðHéå-t5vKdTíaÇ4…ð–ò ’=V½e˜AÆ00¸*Ÿ–óû=˜_À»³F2u<ÃúÓS(µâ£RÔêŽ=꺙Ùsí”Ñ91 g§1kžG«ÊÆ-89^´q½öwU:v-ÞYˆçœå®!Ãlc#Õ|?× ŽË8xH”"´”®ŽIê)úw},ÍÇ cƒ»uÇUŒøËÂÁ®9.«µ=’îØ$§’¢[|uLž'reÜÉ·) ñßB]ø_ªÆš¸Ü¬õµsÁ÷®{ppäÏphxsG+Ï)< œ o¸XàÓÊAqëÁY“Ãgn\\ª«¬©¹6Ù§èbž¥œ¯˜ÌXÖ6?OˆN:n¥æ€ðÿ6˜t-ÿJšÎªžžŸîðAÌŠ8™¸o+Hp,£f²TZ]+ݨnuñ“ÍŠÙàÁ—8îõØ4(å¯|X6ÏÄémš~ßo¼éŠI› µ1¹ÞmI:'g”´òžŽê+,ShŽñNËM­Ÿ¢íßàŽ©Õ3ST;nsNCÇá8=GS…íé~póL× ÛŒ±PVÒÙã£i‘¤t-s²Z~E[\wàn’â¥ê'c-ZŒå§»SÆ ŽÌ•¿íüGb;Ã+—‰|×TÕUQTZjšâ)nçž–¹™Ç(wG€LnÀÁ lTÙðñÄéø›¤þÿ[d©·VÁ†Í#b?v¨>±»±õié³¾2x›rA#§ªèqu\»ª†çr7\‘ ½ü–1âß ªé㪳]+-—Xg󣕒4;û®ëÔ20@Á ×ëÎ1p¦ã4ÚÛO»QÙñÏt·3!­È1’Oí4 í’¡®¡ºRɯëï6Ï2cuuU;]ŽxÚd/ãl…³«_´Ým·ï̪t”í¦IXæHÆ’Üà–¸ï×ò+øã¹Sjn2ªÒYQ —QC÷‰› åÑIhI{sò*`†Í&8vØxomŽÑý5hŽS,tVzJvHvæ …ë…pò†ô8íÕcß“8 ®ÉÍ›4ìÁþÓysôÎT%ðGK¼HØ O”ÚjÇM—`†}Ýà|þ"Í–ÇXÜ7Êl7;wß²¨ù}P€OñT#¶p¹@ºä;mžèÐppã²ñ·¿U¼eqCSðîÇc¤ÓIC%ÖIDµ¢âÀÀÒÒàZ Î}p?ðuŽg©¸›6™¿Þê.”T€U+Ù3]á~>áÎØü=ÁÀ2Ö²––ºß5 m-8Ó/5+ìVj¢4­¶^hp9ETà ÌãÛÔ7=Ž{¬›àËÑÅ5…+cÿ]c¢”dDÌmRñÆz°~Èú‘Šøóá–›LÅÄ»- 47Xë™ ÐÄ9[VÉ+dpsµÁ£;d=Ù$€¬Ï|V¬²ë¡ .u–Ó{yû›^ãŠZ Üü?Ù“ûÁ§×3³ä¨~I“ºªª;úú*ªz¾ñãÄÇÝõ¬: ÛPÿѶQÏXóË-[°pà6<Øz¹]ŸgÿbŠß[Å”dÔNçÐZñð¶ G›(÷s¾G@׎ëxÃá¤\:â“êmtîŠÃ¨êÊ1œ¶)Aýt#ä\×ÀHѾ áà÷\Ôé3[)šy¨¯Ò6ÛTÂàÐyÀíöË\þŽ#ºÙÜ+Žúͺ…ÝJ×´UC•F ÝÓÈC#Ç® ÏÈ«ªÙÝUW-LÏ2>W9Ç»ŽÿÍO_ºv+O ½±ï|×Êéêdü-HèÆÙòÉú¨©ãOF|AêH™-5ÎVÜà=9¼ö‡Hú§˜>‹Pù“FØãkÜç4 ž›ŸËù-®pÖöýAÃÍ9{|šZûe<ò=§b÷FÒ㿾UȨ@8È誩œnA ¡;®.Ø/†·-ÜüÛãù¨_ö‰[ †]%uóª \$ƒ·#<§~¯^¯Ù¥sœkfs³~éSsø\|Ö»ó¿’™kZ^7iŒ>&53°@”r7=ÿÕbÌøÑY)ðÃH¤›2Ks… o¼lލôøTR# ¯ŽF5Ž{ÖÈÞf02FG¨È#èW9>ÎÊØ¿ÑŽ¢¤$ÖNøòrøZßmÌnü¾J%ñ¶ˆÛ¸Ë­(¹%ka¿Vµžny‹<÷ò“ž¹9=e{5­ÒøYÔw–S·š=UE¥pÁM(#åÍ#?5‹)Î'Œôø‚Èü­©‡Šº=ôÙ2·PPî^bj1ŸB2:½ÒËŽãºâùÆ:G¸°eÛg •«~2ês®ø¥{Ô³¿—ï•n‡mˆYðF> WxArâ®®m,fzK-7Å]ZpÁ¶ÓиöU°>è 3í-œÓF FÈéd|Žæ–yW½ß´ì=€`ÊG/¢± ´Og¾Û)®T#ÓTÄÇz„un]únËlÓ¶:K-š‘””‘ˆá‰Ñüþkï{y†2Bcܪá®M•3å•Ó40Êðd`æpåÈ$8ŒŒÂÕoþèþ1kI(èÂõUåü½$=ˆR§Âî´6zý)ªmµ1ÖCæmÁŽô¥Ñó9Ùh<à€žå_^$´Ûô_„šÛMÞ²õ[5“ϭ¨;É3§kÜà; ˆsÑAÉ7¥+ Ä3e¶ qmãDØ.ñ¹¯ŽºÙMP×FCâk³¿Í{‡¯LŸ’°ƒº¯TôÈ^^«¾Pé»Uîç!ŠŽ•¡Ò¼cáÀw u!b 3âǬµ´ú3MSW6æëƒi©¥ž&–KŽGÍ å$·Ê ryÚq׺ˆÌêXÍ@\|X9\äi8 ».#=Ïp€ö$oÐ(Ïö…6sÂ+k›F_W¨^gç1Ê9HÎùÛä°?š‰ˆ[[cä} ce-8¾^r}²õÂØkp[Éôê©Ó”…@ÐÒ2>¾‹W¾$™]'µ ¹J%ªI\ “'—•{Þl6]MÆ6›Ô¿Ò¶úØfÌ&cideÅç@ ;wÊÙ5¶šžŠŠ*H„4ðFØâ£ŒhÀhö/¡c_5ƒ‰ü4¬²µŒý%Oš›|ŽÛ–`ÒÏ`rB‚VÊ*+MUÎÇ«(ßG]OSŠZ¶’ß"HŸÍñ7™åÆ;s,¹à§^¶ŸŠ·M7<¼”z•²Kmo+YS/cwkB›F´ã± tîW"7ÑWª"""""""""*;ÝSöq¢®äöDØAߪªe;n¨wUDE>ÐŽ'¾Ûf£á¥¦¤¶¢àÑUu,;¶Wþóqöhìå”÷û>-uàÅuÒZGQ]{™ÐTÇ4²(X0ìg”`©/Mç$·ïê¾¥Ggl(ýãwˆÕC†ÑiëMT^5ÌBHdå|T¬ ÊàFà»f|œíöQ_‡i¸‘Æ*: ´&K=®'\k£9V±Ík"'ÑÏsr;µ®ÂØžÖú6ó­ÓÖAošéo‘ÐÔQµÜ’Fæà@æ¦[­–£yð÷¬¨Û;â ûÛ@ê /l¹î-ypf¨Ññ‹FWFA,½Ò“ýkBÚèLüþJ¡Q¹Æû”8ÊvöV§µ•€áíßTÜ$ m9ò#ï4îøb»ÜòM†IØ«zX¯šËUAK¤¯½ÞëZÀçu–y_¹>›œç°S—Zñ£Ip ºc†ËQ¾›} #­|5mŒÓ€1’0ìÊãÌòÒ[€Fûíññ¦õ øÿÁ;œZ鵥¾†Ž¯U ÓÍ?||Ãá%¼Ü¹Ü(5mžz ºjè ›SM3'‹±kƒ‡ò[cÑ7ø5.‘³ê*R:jØ3ž^vËóáG?´Vìèt˜´‰\>÷u|ïhxÍŠ"7NïéòP‰Ïòò쌓_eµé¦èþé3䦠¶BÊ€:yżòŸ¬ŽyQëíÑ®¬Ó6sM {í³º‚¹íˆ¤<Ѹû‚ߛˆ:QK¥õ—PÃ$}ºº*žI–Èà\Â=È?5°ÿº†‚éÂAAIYÙ®TÌó9žÊ~~xïSÉ#GÌ,Î3ËŒ•˲¡wÈö\y·Æq•Ï>¿ÁU#dŒ,{Cš{¾Ò KY¥tÉ®8‚¾¢ÞØ’6;ÿ±+SìÙt㈩­’1µF^Ãø‹¼ÑÊG°Ùù…:–º|~²ž!'|2¾K]+¦ö]‡ º~«ÐÔ¯mãÀ›{jÚ鬺‘ÂF»$†¸Ô´vHÓ¿a9Œ·Ó丒Hž›E.>ÎZ¸›>¼¡2‘<ÐÎÈû9¬tÍqéÛÌoæ±GŒøâľ®lLku#ÜÓ™Ô—ÄJÃÊTð²Âû÷€My , uE-áõÙØÈM#ÉùFÙXŒò½®ô9Wÿ dš—]iºÊ8ÌÕT÷z9 £.’FÎÇ5 w$ŒcÝmK›%À`¯ˆ×†Ø8¨¯’;ßj©©éÙˆÛæ¥bq%¼Ïqs±ô$ù­³ð«M[´—ìöKd Š(iXéÉ#š ÞãÜ“Ý\냷qÏE‰|_×þðé«_ÌZùéã§`Ì’±¤~YZ×,t“-'–/¿ÆçŽÿ„{ŽÊߓĚèÁ×O€DáœÇäÃ}óŒwYÛ_Gs·ÓÜ-ÕPÕÑÔ0I Ñ<9’4ô Ž¡BÏü@e×S[t ¶©²ÒÚÖ®-c²>òá†4ï‚ZÌŸnrºþÏÎ2éªëø‹[Êiì¼ÔVö`ïS#<™Î>ÝË‚L™Û—|7↮j¯ÒY9‡%Íñ78 hþX”WŠx_‡n–ç±YC|ºðîæµ;*u³^èa•Õ~G”)ê\Â󛓱n NwÆ7É~üJÐhnF5%®ãq–ß;™k4¾[[ä¸s–Hç;#'5Û;,qâKŽuÜYÚI¬T6ºKtÒË"•ÒÉñ´4‡¼€LìÑÕx<¥Ð"ùM¨5õÞ¬QÐU±íµÑQ™dª-!ÃÎ!; qÁØlT£¾x¼ÓqG1´i;µD…¥ÍûåLp´œôÃ9ÈÛÿ¸ânë«ôÝÏOTi[+-×*WSOÏ|Îçãk‡ k°æžS‚ТۘXþWŒ/¶×x¸[Aû\ð8½¯ŽBÒ ƒ}@?@²«·¾Å NC>öç ç?µŸ@®;o‰Ž+ÑFÆ·VË3#w7ëàŽG™-Ü+†×âï‰ñ±¯¨u–«•Ã>m/7±å#Ý]–Ï™²7ô–’±T´um=DÐõ<øíØ«ºÇãË,™¾èzê8¹±šŒu'8‘±¦{,ñÂÎ"iŽ$Ù'¼iZªšŠZyþï1šÑKÊY’0⛞RFá]è£Ú)j©­áU®ãÿSn¹5õ Æä=¥wÈcüAE? zþ›‡<]·_n2T2Õ,rRWù#.ÈÒ¹r9¹_ÈìnpÓœ-„ºûW}°ýâÍzÛ.sRÜèÃ]ä‚ ÷Ûu Ýv¶ÒÉM8aòòÈü§3›§0tdã==Wϧmó×x%Õx±[µ…=@kNüÂÈ‹O¯õ ãÔ4¬?«qÀ츢Ï~oFÙǺkyŸËŠño¨£sNp÷ù<Æ­ßÑ\ð¹Žß’V×`ô;,‰².ŠºX*¼¿>0ãùã9 µØ##2¼YtËâ¡®«¤c³´U‡~QñsõÎOù®M£¿²®2ʈ8Œ5ÁÕDœƒ×xÉéî¾èa«eC9åÌ8.sÌÙw0Æ/.1Œ’sôZ»´ÓºçźxÑ3ªu hÙÜÕCù­§;%Î×Õa/±yž¯Ïø•SFðéþ°ÁüŠ×uLøcÆw-Çó[w³† U& M‡•­?"á>i)ŽÖãÊ:mæJ OÿSú«ÊÑákƒt15•û¡zˤý½˜æ·—eèTøpàœ­<ú•ïåÕÔ3o¤‹"i-3bÒvHìºr×Ml·ÄâæSÀh'©Üõ=Ö0ã‡-Ä{«o2²¦Åw|…õU–îVš F˜×ÒµŒúåd}¤ìš#I[ôÆž¦0[è£å`'.{º¹ï=ÜNI?–ËYÞ!÷㶸Øúv¨ÿ|«"™¥®Œ½Œ‘¼Àò;8w|o‚¶wEmÒ|càm²š¶Œ:Åx·BöÅ-4Ïhrðæ9¸ïÓ*'ñº±[.;¢³^èh©Rcp’žªNVåÍlxs ÀÛãQ²Jg2!<Ù_f™£¸]nôö‹],õu•’ ‚ó>Gž£ÕHá?ŠW¸á¨½>Ϧéä-sÅUA–¡¬#9ÆÈÎ9\öœ¬¡mðiglÍý/¯nUTฑEoŽîÉÈÏ|ƒnŸ…aŸ<5Ñœ.¹ÙìÚr†âç×Qš‡V×VK_ÊZ@é“·}°°ÿíöÛ¦º°[ï6Ú›­,`IÈL/•­~û? ;öS–íàç…Õ!æŽéª­ÎÁ2®)ó!ñ’0¬ÚßOßpâMDŒžÌ$wÈ‘3’í°x'¢†ñïšöJÛc 3ÁImû¼ÏØò†½Ò<7|ð†;ädJ? ¼‚‰h¯•`óÉsx.ë×—Óòüî­3áûƒö #¨¢ÐÔ3T1ÁÂZÙ$ªw0;Ö9ÿ`A°Ùlö/¸Y-TVÊPî&’ÄÂìœ4Nö^‹ÌÐqQèUVñO¥5EÿGVǧ«©ÜÚØE$Ô•l指|ºó–H8sŽ\åkÿŠÚã uue¢§Íž‘“AQ'•øÉå$`òç#+¿‡œNÖ­“X¯3ÓÄׇº˜žx%ߣØv#r¤=ÓĦŽÔ¦ÝxÓ5ÕRSÈ ¸¶ ([9cÚ×¼óñg„Ž™î®Z7Yu[Ý®¢Úë¹·>çq¥¡l1=³E;f{ÝåÈ`è7z(B6c°zÿ%ÁýáÒì,œtÑ— h»Á °{Jï,ŸÉåux3ž:k¯¼ssÿH+qÌ0y|÷òý9p¬e8>ÏK#ÿÑõÖù3ê$c¯^]<-™ÍŒ9·.#8?Œžž›DÎ2ESµ”u“yõ-¿W‰¥åâ¢Nc€02wÛeép%â—Œ:2q!g•~£‘ÎÆyclÍ/ùüË9kÏw­w¨é­:Z¦ :É®F’‚ã=AlPÂç·–¥ípI€N]ÖìIr%èê$ð·©i¦®mÖx­09õ„r žI"q”’7åæÀ$-iÓoU|cù­ÄY¿úEÿÒñÿÕ ë\Àä÷õQ¿íº¶ƒ4VÌIr¼DÑ‚6ll{Éþ@Èé#F žñÊÖ´d—„¸6Œ»m“ÕrèV3ñ®køu¦­¦U-wX©îPÃ45ßsäÁ»Œd¸ ŒäDMKâ'‰Uº‚;­¢’Öàu-+sLH|¹ ñ²2B»tÇ‹uOäAu²Ù¯xÃ~>šiœNßs˜É€)Ÿd­7M-k¢¾hš÷ÆÏÈâ-Îqœg ë{šÆ9ïpkZ2I8.¸fŠ¢Í¬–'·™cƒšáêØ…añ‡C?RQ²ùbŽ’-Sm†FÑO+ óXày¡$ŒõkŽy‡`î¿ /0ݬ–T>gÂ<·ºV–Èèɉ9CâÎÃ!\ '¡ì«•ÅΟˆû®¼Êé0kRNçä©Pá/sšyZÇŽý Õ~„ªpⵂjw±/†z=[Ä]=¦e‘ÑEs¸CM#ÛÔ5ÏØ÷ÆTÞÐ>´µ±¡Õ5ñBÊ:Yüè,ÎŒÌÜ€Ñ$ŽwǿŎ^¸Ü©*=UOEÄç%ßAÑc¯M¥u»jÚ bÏ1ïñ–Ä ç„Úê[ˆ½Q1 a¨žœàKM,mÿ‰Ál¡½:`&àú•ByšKÉk—ÆÜÜÞ#µò¡£?õvóV÷†ú¡41!»Þ=¾0Z?šÙà vöTsGpºÜ1°\¡@WjÉ8AÏÚ^ãk×Ôšé±6¢Ëw€QIðŸÔNÆ9Ž09†íùE›1‚~BqËøwê¶Oá;^³\ð’ßçTn¶–¶Š¼8Žlú·íÔ9˜ßÕ®ôYusƒºª"""""""B{½•{&7ʃóU@ˆˆ¨àKH ]>lµÎ?Mr–¡ÓGx¶ÓUÄÒÒ<0Á=w„»oßúœK0Ž˜ùI3Ä#ß®ÿä­¦x|Ñsè^é½1WpWÓÓyµÍÙåq’@\6$rçqðŒm…ØÐÑ€ªŠŽh$;#¡îÆ0:(ùãêá-„ -¯¼ÒÓ¼4ìç—lÆ>¸Zùƒ;°Ü§GÙ×g†Ÿ†:†üÆS_xû³Žñà â–E'e‰ÑHö8æ¸=z®Ì;¹UåÛ}Õqì™ß?4##—·m°U\Br¨FÁ?%«oŽlœp×2s ú¤ G•d2>pKsð‘㕱ÿ §4‡ÝsËåÔóçcÏ÷©yÿâÊË£áÆAÈX.Ýáo†Ù¯µ”Ôu— «Œ²Ž+”Í’žÒãÊkZÜÀòâ9FwPCMMY£µÍí’š²ËqŽi90\×Á(ç±ü.…mzŠzzºxª©¤lÐNÆËÜ9Ž|Á]›îAÿ±Eß´KM~’á­TÄ×:K5ÄÓËÊÛø‰ë³ãŒï•hÝÉ;{ç¦={-€x4âÔšÇMË¢õ`žùni4ÒLü¾ª›¦7êægÔ{"\vG§ó]›ž£>˘*5 g¡í•ÆÛ\Ö¹ÄnsÔåv/žã2PÌʆ5ñ`BÁÜNá…³Vé;…’ñNªsɤ­æä%ãhÞòNÀœòöõ ñK…º¿‡SÿHhâuI-§®¥“̧•Àd´;‚=ØáY r õ¬·jêºH*Ÿ 1:渃Êìd|¢òu DÔ•°USÌè&†FÉ­$8‡ z•õjK]ßPWÜë®Üjjj$•RgšbOã9ß~«ÏRÛÁçtfŽá½M£TÜ*)%‡M Œ½á­s#Éäk}Yêséëø“q†ï¯u Ö ]4u·jº–Hî®kæs9ÁÊíÐw[mê;¬Å…öøQ2Cæ6yåk$ bIßfô+Ë’:¸i©gšb†v—A#šCd qi-= ã¢ÍÜ âЦᆶáΩ®žk]ÎÃVëd»îµLˆ–F2vcÎ:tsFØq#ÀàÉãy8 p?Ån.Î×6ÓF׌8@ÀG¿(_R³øÄ &†’Ýâª-{y¼ÀÖ² àsË!kßl—mÑDšÖ¯Wé--9¶ÕÒP>²yid4Îl4F1Èü>_\ùq€æüKpfž:Î.hÚ)™$÷úÜ%i¡™wÏL{­®~Öûî¹oÿŠùît4W* í÷H+(êcž Ø=Cšv!G®"øIÐ7Ç#]Y¤« ùœÈÁª¥ œŸÕ=ÁÍ>œ¯~ï¦2²xEÖÔ:ÖÖnWË%M†*ÆËS=$Ò2¤ÄÏ‹”Föà9Ø ÙÄ åL]+Bëu¥´ŽŒFãÊÐì€l¯F®15,°ÒÂÜ;¡Èïì£&©Óï„Ôš*ºûS§þôùîö*9âž:FÎd„¾?†0Z[Éž_Ú•ïèúRûslµ‘ÐŠŠ§GUtæ™ÐÇœ0—‡½æ÷,ǺËv›e¤j:Qfwë+¡c+ ÁŠp@s&Ûbî\`wo®¹Á ˆˆŽg`ˆ§#[»Z3ê¹ÆßÉy÷éDZùÝžXé¥{°;«.G¼FÒmšS/¼QóHyGžÂN¶VÏí— ®:ЏG#¾áJÆÆÀÖ×K“ÌK‰Ëˆ¸2rN@Oí_¦¸C«­?öz€ß‡;ˆË‡ñ UИß)s¶.k’–ßg–«|íK¢åqòj`eÊœ°‘˜ŽL|ÛÉþâ™Í9öV‡|Ö²M°Wóìšwã• ¼ÆœyÏ0Óõ[œŸ2 ½”ú¨ì‘€qïèºòà3ò:ôQßíª†6)_Sy¦Ž=³ñrÊÿä¡—‡©ÝIÇ}+ÌMî™g<ÒÿšÚ¼OcÁ xw)å8=¡\Ññ£]%‡ N"8}GÝ©ò6}DaßÃ*xx¡šãÇ KNâ×6÷O9 gá‰Þk‡ä¶ˆÓ‘”=sÐè¶¼eÔÁ[âSUyY>_ÝbqþÓi£x^i]WÇ­˜DEÞ ±ŸÁ—ãë˪Ú'_d=7\ÜŒcUÀÁíó]ÀûªÁèU™Ä­#gÖZ礯ŒŒPÜàtbW09ÐËÒ9Yžkˆ#þÕ¬n é{––Ô÷ 7u`öÉÝ…­ H?eãÙÃ|ÕÛá׉·ëz[¼/sèf-†¾Ÿ¨–áͶüM=ˆô$šYî4wk]-Îß;j)*álÐJÎŽc€ ÿõ¢" ÷DDDDDDD(ˆ §ÕôDL¢¾78d5Ç ÞÛMæ_lõTܧZs>>¸;4.¬©áÞÔ-¾õ!ëÕ²G#æ>Ÿ5# =ràí×ÐlsÙTtEÁÁ¡9U9Ïoš¡ ‚:îµeÇ|ÉÆMlKKq~ªÀ=GÆî»«B”ƒ†7Ï_U±ï2/ ÚH3›âm[òí·u\Äý]Á PUˆpwZ­âëx³­©Û‹‚àÀÀsÊ>ó Çù-p2¸Ý8+¢ëd.|’بĎ;eâµÇopUä[¹8=5‡ë]y©‰ãg0ûµÀ¢¹@¢ª¿º·x‡¬-šKϨïPÖÉAO#PúX ®…®v9ÜÑ¿($dŽ™XÂoÜ$‚È.7i¹˜ËkÁǾpú«_PøÇÑ”•tÑY´ÝÚáÜß:IäŽF’3Ê1Æv<£#ªðæñ£f4Sùš*¢g8æ&æÆÒÃŒWûù+#QøÃ¼ÏTØi´MÔ&˜1ÑÔÔÉ+Œ¡Ä¶@æ†파ÆÄ,©üFêËõ–®ÅWcÓ’Ú*œKég¢óCpr œpæöw]ú¬*ˆˆˆ‹ì ™Ñ5Ø'ÁØÏp¾Y '$îNá}úrÑp¾ß(,Ö¨Lµ× ˜é)£Èo<’85£'¦än¶3ÅX5/(´ 4,¯°Ð†ÙkÙPÖŽlží”‚Ùpv2еÃ_ U eEDrÁQÝñ¸aÌp8sOÈ‚,ñCQw£‚§›È’v2N^¼¥À}ã#hcÁÑ ª¼+ö•Ó7‹Íâïa¶\nM,¥žª²ºNO'7á>ãu~ѺÒíG¢í¥ÿ«ŠŠª|™s˜Ñ·ø1õX+Ãëøã¡©Û6/´§;lðy¾˜æ%´¡Ûr$î©×®/Œ¸\XàÝÁÈÇL.O~ÝÌè"w0ssÎsHz‚;¨Ùâ3ÃÔ·‹U¾áû%­·Z9*šÙ ;ê ÜÖäÆHqë†Ô~ѼKâ_¯Ï³I÷›|Ð8:{=Òb~È6ØãaÌp½Êá74OTtÕn·]ÜÐMQ {ŽÃàwá~IÛû”Y+‹$ôÏÉsÈÆø\y¶<£|+OŠú>ƒ¾ÕK#d,·TÖ¿—8…î;ävkŽÇ;-h𔵼KÒfjVÔF.´¹Ï-|`“ÔemNÓI0–JSGZÚaŒFÜíÓ¹/ªõOm–ºŠ^aôÒDþ]ŽÒ=÷Z„‘œ¥œ¹$ ö8YCÂæ§“KñÏK×y¬ŠбAP\/—?ÀrOL8´çÙlàw;z«?ŸtÕÿmI¦uš©²Í!2>뺆^^?Ó­;É9u–« È;Ä~Š·qƒ‚²uÈqsNÀ.õôPÇíÕ²ËU§t%+À‚›µh§šCÍ;õ­ó²:vúƒü#Ûé.ž#ôe=c¹be[êF߬†ÊÁõ{¶y~v7Çlgþÿ2»AàtUE…|lÓÁQáÚÿçHæ:)idˆ4Ìÿ¼FÜQ‡8ýPðao’¯ÄV›–(Ã㣎®¦oV´S>1ÿŒ[høz”Ç|ª;sŒýV¬xû\ËõÊ'óG%â¡­Ï£^Z?꯫Ãýlt¼jÑ•ræŸ'œî]‡®ëh£mü²›®§gNèÊüܾ[UÔþ\µÁì'³%¼mðÞ¢áb§â-¶„ºãkp§»ZO5/Á)ßý›õÃ÷ü*TóSÔµìθ>Šfx⤓‰8o{«s›å™í‘Ãá#úÈýqò°Rñ3º"""""""&0©…Ucñê¦J. êúȶ|6JÒÓè|‡óZŸ[‚³T™m”3>FsM o%„y€#çÔnº46©µk ¼Z%AçË·µìqi,ýWººånw ”dõÊñd,3ãZFGá¯T5ïÁ’J&·#©ûä'ùµ¼!Øø°ÏN›…0>Íúˆþñ®é_1,·ÈØýpjñoæ¦+26q>Ár''ªïتïê¨N1±*œÇ8;eR#žcÛ8è¹~Ö7\NÙ ~ekÄ­#èxù­¡–>^k³æ÷ð~¹Xúµ²c»þö-™ø_¤e‡ÝOsÚë[&$Žòò>…Ä,–HÈ8Ïm»*ŽÃºÕê`«âæ±­„‡²]C_$g®Zê™þOŸ  ¼<é.Y#¢§’'ò~É?áù€Bʧ}ÁÀèJÃ~4]Ÿ ÚÃ`ÿ©ζ¼<é;F´ã.ŸÒ÷ß7ô}ÁÓÇ)üŽA+šAõækU·©ìµºoQÜl7Vùu¶ê—ÒÔ7ûL8Èö8{Ÿ¼ñPé-ký»Õìw²Í#°Úz‘´o€wàw¯ÂOáSáPžÅPîv8ú/‚ûo¥»Ùk­í磮§’šv·l±í-wð%j玜>½ð³]TikŒÆ¢ŸMAXÊÚªwg•øìF \;ž£Øîߦá:»ävTÜ’w>ª‹ÚѺSQk+ȳi{EUÖ¼Æeò`nH`À.9Ø‘¹õ úw8¥5‡î±ð²ªŠ9^úŠì¼O#qø /'+ppZÀOrV=¿Øîv+‹­÷ZgSÔÛ iß-pÈ ÷î>`ŽËÍDE–xoá÷ˆzûFͪl0Û¾éþC ž¤²y]ðî@üE»oÓå.xQšãný!®ë®ùŽ‚™¬aÎ@Ãå<ØÜó·´üVðKOp±–ë†üdŠë!k-5D>¢œ—Ó©Wö€à7xeÄ+¬«­L¨ ¢¹Àú³G'šøbs¹^Kzã•Ç8SÂŲI,Ùß²1‘žþëºvÈC]¹\þë”N{›—·”ç¢æ£WÚ xu ­¶¨üÀë•Þ&»Àå®~ÿR?%Š>Ï‹sª¸¹w¹:0c¡±½œÞ’K4xÿ†7©Ù²..ê?äµ'¬Ý1Ö÷ÿ¼2FËúJ¤¹²×4™_ž`wuppN–*Î1èºI¢tŒ’õH×µ§”‘æƒ×²ÚwDØz*¢àì‘¶ãºëÎü×k¾ æ¾;•t³RÕB'¥¨c£žY#9\×±•¬®<ðÚ»‡zêãg– h}L­´Îò›DnÇ®Z%`9ê¬Ý{®°jZ ÍΆª‚¡“Föõik[\Ñ×û~©ÒöýCk™³Q×@%ãߨ>„Aˆ^ºwꈅS¶Ê¹DDDDDDB…S TDDDX÷Ä›Ì|ÖîüËR6÷aæµR¶ugÕTºOÃN—ÕõÁòGoÓöÉfkŸ—»0Å‘Ì{œõ*Áû9êd¨á%ÿÌ•ïpÔ;vq˜!?Ï*N!.ì0>¹\ˆè°_Ž`‡k³~,šÚ1³±×·óù}V»c#¨–g1;Qk9ÆZöQQ° çÊIõý¦ƒCp3Ôzm•Â1ñ—µÄØ4`û®s9Í…òG•íi-` tßaŸukü[2›_Omþ‰âÇMVúi^ùñX9pÒî_ÀpwÓ¶7Yû‡ZûKkû7é=1seTm<²ÄáË4'Ñì;ŸOur¸±§.-=×&³Ó'=ïòî{o•¬÷‰n\Ö3=­k£¯û åýؚ֯±¥ËßÊçòVÌü$Ü¡¹xyÒN‹-u54”’GÅ+ØmMµø~ÒmTµ&®™ÕÎ.;1Ó=Ò4vœ|ò{¬§Œ8ž¿ä°×Øï ´È9CšGï}î?⡆úÃnñ¢' ./»ÃÇõ¹ŒŸ§>V{ñ癜öñRËMØ£‚üÐæ´µÜídS€wvyÃ=}H‰T²: Zîb9}ùU± WÿH:%Ö«ÍdOÔ6~X¥@$ª€5¼³ã¾äµÄw?ˆ,ß¶rŽé²ù.5tÖê‹…dÍ‚–š'M<¯;1sȵeÇ­sYÄŽ(]u<üí§šO.ŠN!¦gÃpIÁ-ÎÆÅÎqYSƒþõ&·Ò6íQuÔT–*;”}4ÓLcwày7ˆY›Á;$‰ÓñL ÍŽÐ3F“.ß2>…dmá3„¶⨸RÝuì-v.5Xˆ<«ˆ0ä~s ¬»O¤4µ-#)étÍ’žž0ÀÈã·ÄÞQ†àröEߊÓM;g¦´Ûéçc<¶Ë,ls[û :í¨+FX#OP?î£wx/G©ê® Ž!Éæ§’,ñyh=ÁØmºHŠ|}ž³ðJçêÞø5 Á °ÖšzwgóÏ䤀®{ÿŽOÏ Ýqd1‚ZÆ7öƒ@ò ZÜyÖ7/ñ’OÑ\õpKVËuŠ\ã2rFZ×Ê^HqéÕl †:>‡‡Úͤ­ïl‘[âòß?(k¦”ï#È÷$ü€]¹îVñ©Ri¼5jˆùË]3èâúÕDHüšV¶XÒéÞ¤œu[µœÛ)O¬,ÿªÒ¾yNN;õPGíkÿÒ½ŠI$i°´5 ±<§?\ãè­?“TøŽÓ³ÆÉGlòã4Ó½›ïÓ/oÕl„ÑUSºª´ø•¯,Ü?³ÓÞ/Ð׺Šj‘Nd¥ƒÌòœZH/Ü`|8Îû­m!Ç®ê)ü¦Ý™mÁ¬usÛq$Œºu÷Y2Ž¢ ºvTÑÔGQO æd‘H×b6!}Èqè¨pGL.3œoÑuO U,-šænÃØ±=}A û/šŠÓl¢.4–Ê rN\b§c2}N´ü@ÒËUÀýohتÎ^vÀŒ’? B×÷‡Èc©ãVc€-X¦<älyÏâ88õ-œdçÕÄuêµQǵ¬@lÝGq ÓýjOù+Z™$­ŽW˜âËCßו¤Œœ{ •·øÜ$Œ=¤ò¸ °pG¢9’×ã•í çb=:-ux,™Ðx‡Ò,a¯†®'ŽP~¹Êÿ¦ì?Íli½‘üÖ<ñª£x)©ï»–¤RZ]÷ó¦p‰„|‹ù¾M*(ýÖkmoî÷ÚŸ%ÓÐZÌ4QÉsƒäsyåc‰ËÖ͆âWoŒƒ<Ž1ºÇ<Õº‡”Uw‡<ßm²>×~lžYs+éÏ$ùòÉfï×nW4àg !ÄAŒ8t;®LȤçþJª#ý£û–‹¤ÈäuET¸>¡¬þ+Éû=*L:§TP2ÖemM#&–¸ òÜÀÈ·ûO6G ‘ýK°äLÐù Ç]÷G æµKÅŠØî¼WÕ—V»™•WŠ©o9Àuù+§Ãß¼@hȃùy.x98«cßà¶d?4=zª`z.' ÎÃÑpx;Œn¨ 9ßq×+µŽ\eÃÛ€qî°×‹[5· î•í¡t·û,•v¹ã2e¼®|xãl|¸9ÁÁ¹eÍgß#9Œã$tÜ%üñ•šFé’¿UâÁp“1¹ßú%C‹@v{1ØÁŽý¬ÎÀr2ADDCóTÝþ)ˆœª¢""""'tßdDM€ô;¢",mâ‚vÓø}Ö²³²è #W©õΊ’˜±ÝÒÈvlm¤ÿÍ@ÝUâOŠ7ß¿Â5MM,óù‘CCp–±²1¢LvÝç=ò±¥Ú®ç¿].’2ZÚÚ‡Íp«’‰'rùephØnI8{.Ý#ªïºjñOt±ÝjmÕqlÊŠy9\¶ÞŽiîA†Þ7Ññ"¶[Á‚›SSÅÎæ°rÇVÁÕñŒìFÜÍúºf´*‡u ¼cøz¸Cu½q?H7ΡËÅ™#y$É4c³s†r7##¤O§¢šI@cc–ïœÿà¶#à^¡³pйM-ʲ#&'Ìœüã×üŸà+yÇ7HÍj"šF2!À9Œs†:gr¶µÃ[L6>iÛ5+ãt46ªjvº1ð¿–&Žo|õϺ÷&Ë.a È;šÂž7gò|7j‘çÔQGïÿIßü• ¼3>“ý?h‡×IlXÚ È/!Â1ó/åÜ…²Ûݦ‚÷g«´])ÛUA]éêaxÙìpÁÏæµuÆ-_Þ ]4ÄH~é u,Î×Ó»xä¹Bì«Â=orкÒß©-’%-@/Ÿ•³°à>7oÑÀãòô[HÓ·{v ²R^mupUÑUGÏÈ$aìFFÄ‚>௸¹ ÆT~ñÏ­Û¦xBlÓòWê9¾ìÐÓ‡ véëÂßñ¨MÁíQ¯ø™gÒ° }@mL‘õŠ¿¯Î`8Ïrը頤¥†’’à§…Ž(ãhkXÆŒ5 v0»ºŽ}U°qüWÎbḯþ cv;{®/fG¡ÎvVÆ¢¤{î-npe‰ía9Àø]ÿ5©DE:¾Î–½Ü2Ô2·Ë7–µ¬å¤@Ì»ÓoÈ©FáÈÌà‘Ôû¬?âÏ]?BðVëUI!†ãv£hœÇc2 ÇBÖ`Žä(åàC~œâ%f´®¦¢°Óùt®sA²A†‘ëË9ö.iS°G–üX?UØvØŒL¬ãÄÒõ^nDŽºRy]Œ¿™ÝGqËÍ·ËÑkÿKÚf¾ê{]ŽŸ>u¶*Xð7æ‘á£ù­ÂBÁL½ÐÑô\—Èæ—ç’}z(ãò¡µœËÌÐv!ÕÖKcšnµ°Rž\ç‘òâ0ü¹[aÁÉ;.ª©YMO%CÈ ‰Žy>€V¹¼Œx‹Ñ$Ž¢¯ÿQlyƒsôUÃ]¿\(öj‡Òéý-¤`•¸«¨šáPÀ~ #hŽ,ÿd™$?6E”¼ih´ç‡í=Q-®;•Ö9+ª¤¥óµò<Âç8gý—Û¸+3L f2vÝE¹õáWŒûеôzo_SÓUrD[ü¦&Êí€kÝ4sHp•®'˜m(išÖGåäO„OûŒ.áè©¿ÍCŸ´R¡ß¤´mhjäØõÞ6ô]¿g$2{W$N‘o‰ÎÙræã×âj˜]“tÖÎÊZYjdÏ$LtŽùOù-D¾¡ÕsÔÖ<ºy!ÏöœOù¬ùàKMÍxãTwÆÉ!°QÉ4Í~y¤2±ñ0‘$¸b1Ÿæ©DLî£'Ú%<‘ð–Ã…Îj;ÌÇÂÒ)§gÔó?ºT ¤Jðy‹‹z…3¾ÍƼ/1M¸rñŒ ϶ø"¥óZ1°ÈÎwÝAoÜBuó]Óhz'9´Z{ã¨!ÿ ÕR0?VÂ\½áG-7c¼j]CEc²QI]q¯—Ê¥Ž 2;~ä€ä“€§Ï…®TpâšëwÕÒÛëïwjaHúx˜d†žŸ$º2çlò`>n£GŠ> ÏÂOÆÍó锄Q½ÁÎûœ‡$Ó½ÇêXIÉç%¤œg£ußLÞéï¶ZÉ(nTrÓÎÁ»‚]ˆ# ´ìA ìVÉxÄ«WôDš3UÑÂŒ8¸ßlçîZOQò*þC¿eÅã ƒŒ|–2Ô|áþäë•nŠ¢Š¡á¼ÆòRµØw6K"sZI$äã';«çLY¬:zØÛ6œ¶Ð[¨éÈž’6±­qhÝÀ~Ñ$ÎįYPœÊ êï 3M¬ï—š=AGE¥*ªßQm’9¥|Aî.Àü-Ï(w7Ä0G\)ƒÂƒŽi¨kkÝ ®žÔŽo×:8Ãÿ‹}ËIßus,5ãJ…Õ>õi§¥|ÒÆ)&Äm. 2ª"ç`v æ$ö“Ñ@¾oÆzcR[qŸþš‰mUÃ<ÝÎvFÜ;‹PpöqCý)§H%­ø¥¢‘Øp;dò<‡ ð“ÕAHùãsG7Gd ©eàk‰¯·j 4ڵߣîdÉm;hjFîc}ƒ'9›¶î*gž˜À98ù-txÜÖNÕ`ú«úÕz º@g·Íí²×ôxê¡õ^£\\Àã±#8Qí©åá–›£æ’ÞÌ¥ õ-§ÿñQ­œÞüBhÚPîQ ŵ„ŸH—^L-¤®º‡ò³9+ r°4ôÜž‹]3ª¼Þ"[é[ŽX­°¼îØÇ;¯NÃè¯?³~(Ä­H÷1¥âÌ9I×38?@§zLå0©ŒõTÀ'p¨@=pHÆøU;Äàì7*Œ+˜®rª±ÿˆé<®ë‡sæÇTÞ™ëæµû˜Þ'i¨+ª<˵#yÔæf ºÿ%³àO1ÿ’nIÛ>ÙZÃñMLú_Ö)ñÌ럘v~ÆÇ·ø8.¼ÊŽ6hèá‘?ô”a¯yÀhó¿®3|-ŸDì±®Ï_çÝyšÆIbÒ™bɾw4Þ¸…| Ð6»yË û…²ª 8gáqŒE½¥=ä¶¶>h6=¾k_^!.”¼Oñ{nÓ¯¦ÝOt¥±rFüó0JØ-Ü|OxÏlE°HcŽ(™Lk#cCZÖŒ@Iø±è^ñ×Âv_ìG‰öÙ«Ÿw±ÓÅ M;^Ï'îL|¯t€`;Ìk¤Îy±ÊÙÝdo ¼H{Õ‚SSNÆu–`M¾Ík¾l ‰„¶ªšÿU3Ù3rÝÚö5á¿/ëì]¼=Ô—-¬(/´%ÑÖÐT‰C^ w‘è[~khš/Q[µf•¶êKLžeÂÍî3Õ§ÜA÷ ØDEM†: îª"""""vÙè=€APˆ3ö(ˆŠ!}¥µ-e‡ERÅ-M\ƒäÖÄ?ùADžÒG_Äý-E)`ŠkÅ#$/8ha™¼ÄŸLeL/Ú…‡…µP&{¦¼SÊÙiag,¤oœö·Ïçîýômƒ‚õõ åÕi ú1IDT=S#ó^v¥²Úµ’ªË|¶S\íÕLäžš¡ÌxÎFǸ z‚…57ƒW²÷WU¤5=<42J — w—BÂG0óø¹FHÛ''ºÏ<áu 4‹­¢Zz˵Y¸WG—æ\ZÏRÖó»ßr¯o©-zCIܵ5âVÅCo§tÒžîÇáh÷'{•ªÝUvªÔ:¢í~­x5WÙk%ƒ¤sœ@üÀú)/àZŧôí‡Rñ{TWÓÑRÑÈm”“Ô|-ˆa¯•ùqçc7ÙÃ|©_¢µæÖ^gô_Q[®„sI2þµÎ2Xpà=ÈÂìâ6‘²ë½_¥µ8–޶>RGã…ãvHÓÙÍ8#ò;­õ¥Šé¥5=ÇLÞ¢ò.VÉOP’GG·a–¸aÀ÷+³‚üJ¼ðóVÓ^-2¿•¡¬«¥/ÄuQgv8t霠ïê¶W¥/¶ÝM¦­ú‚Ñ)–†áNÙáq)õõ ÓÆÛ/ˆwk½D^nöC¯::GÍKBÐâꇴg”‚Iöž‹_|cãgî×*ŠE_zÓŒ2Ù2І·;da¯píñ ÷|è{Ʋ╨šßSžÑS÷ÉëË9Y$ÍËŒ8îçsdœg9ÆFv ¼ûÌÓ5‘ÒÓ%œ–‚{ t_ˆ;ÇÅU4‘¶®¯L×Õ‹-'Ø $cR@ø^òà¾p ì œt¶fÄÖ††0ºï^>²¤ª­ÓuðQÅóº–v²H •Î…ík°K†rµ“áÊWñÃCSób÷K1>¾SĘú–´  `'âÿ5òÞmÔ—{U]®¾5l§¨ˆôsÒ×È•ªn&éjͯ/:N­®[*Ý\áýd]cxös OÕ|zf÷q²Þin¶Ú§ÓÖRJÉ©äiÁd9m†z΃XhËV ˆžz‹\5µi kÎ×´cð¾)í°=ZÄ»ºã¬5µLÔñ>²é|ºJøã`˦žy‰vÉ. hÜ(Ñôš‡vM!Dï2+m0òoúÙ\Kå~ý9¤sÝŽÙºz¢".·ÈÖ‘“±ÆËR×Béc¬ÔˆK°c‰§žMÁý ~N+ x-àÌš¦ómâ> €:Ën¨•Ô”òGµ\ìå ;õcIÛ ¹˜ìBœW*8ë¨*)d`p™…¸sy†{ÝpWE-»’§Íys‹[€ã€I8.vÝÉ î1òÆ·ª‡ßiDÎÚ +¹é¹™î>ìÇÕß™XKÁ•L4¾%4“瑬k䨌z¹Ôòµ£êH f릤t9¯†ëQ÷M]c¿ØSÉ.Ã÷ZNÞ«Y~(¦Ž^9ê(âŸÌŽ#ŒsÈï)Ž{=¹^çŒvÆ;,»öq†¤IžPñen27ÇžÜãø:¶#U; DMº* €AŽÝc¸Ê¡Áë’€1×¢å”XïÄ´B^kv÷iÝù7?äµç¡åš=ef’š›ïGp…ÑC¹ó$n¾çÅm.fÄÁ#ÇòŽ`Þ€ã|{*Oe­ ŽOz²NC|ÔŽåÇLÑ@Ißæ­îVÒ[8Á¤î5ÕÓRSÜã–i_ÑÜü–ȸo3g¬¥.m-ÂvµæF¼½"f´c<²´wÜÊû5éh=@æÄéú.§ hÉqò°Æù* x ™°ñÒš7?{%L`zï±ÿ ?E° 0­®)jº}ÃÛæª¨kdýFù£Œ¸2LaßÕØ xÒ3ê~(^x‰q`˜YÁt/ þ¶¶£˜zVy‡‹ØT롎XéØÙ^K€Ýw1¥®$œå|ZŽ×óOÜlµ_ÔWÒËK.Ùø^ÂÓü „~ îõ>ãÝï‡×J†5µrËk˜ç uU3ßÈ@ï‘Î÷”éh@öUÆå‡h§+Y§+ÜX÷µ“R‹·ù<øí»oU_³š©Ÿ~ÖTb9yÝ $üÀüÌÇ®È)Ž™V§)ÅW 5u9|±óØë4o-pýKº¸Z¬‰î–00Û,÷àzµ´Ü~·ÂXüÕÛªàÈ8Á l›û|ê¶ߺ Tè‡m¾K‰vøÎ깡23±®27¥­ zŠ*ŠwÅ,m{\0ö8d˜*x¹á«4ß]n¤òtþ .ž´‚Øj<è}Fä=¹ê@ü'wVÍ%mLwbÃÓFϼÀѳCZðï =ÎOuŸ<qšm/tƒFÞåÍŽ¾£–'ž´³?î¸ã#·_\ÎwÆÁU}Slg9ª"""""Šƒ`ªˆˆˆˆ¨ãÓ+‰“ì OÚ9[W',ÌãM“Ç~½õ‡8{‘þèX‹Ã…ÖÙeã~“¸Ý)'«†:ðÆÅ.]#Ád]vÀ{šO°RwÇõ<0pŽÍ,Ômel×ö(Á-ciæøIwv~Šáû:ê¼î ÜéÉÞ ¼ƒÆ6ù©0ŠŽÿ±až/ÓRÛí<*²ÕT>°?ïU´ñ±Îˆt y aÉã=zaF»Ÿ üT\ÚÚŠª-M+Þg6©ˆsûMóÆ6Ïð_n‘àˆÛÍ[ÿJ^êtÛð]=uúI^íˆË.~H=KFÄeM­1CQhÓ¶ËU]Á÷ªJHà’ªA‡Næ´ò2w$eB¯|]v¥Ô2h 4 YlõVHý*©£þã2G»²wÀQãHÙnÚ§TPië%1©¸Ü'S³;dõsf’O *oxƒáÝŸHxCþŒÒÖÉzwȨŽW4Ÿ½TrüŒþÛ¤yîÞŠÚo5T5쪥¨š ¡xtrDò×°Ž„¸*UpÄÍÚ{Ý«Kë™ ¬¢«‘´ñÝäpŽHvošz8g»b É=WÛã뇱UÙh¸“E5TŠ+££oã§q"9q¹cþú<ÊE–M–ž„·~˜S#Àïžé"á•Ùáñº)'´ÊHøøß¾AsÇÉÊ\ç¿d;.`‘®lk˜eÃ?žW`Î7E|]ñ)¼>áíc©j9/צÉAlk]‡ÄÌbYǧ(výçþÏýÛ¿.:Ê®&¾—NÓ0ÿÒ¦ËXGcÊÁ!ö%ª|ZÝÍLHÏâ=Jú•«Æ×»…z [*OWú* Ç+ÜFrG¾2µñáÚ:!Êyj§??fšSßåü–Ëgûq?/¢‡ßhV‚wþhâE¾—,hÛ³šÓ°Ï4L—°¸žñ…ZàÇö5,üq:;µO®ÕmmÃ2Ûƒÿf£>0{µ¹ÇL·ÔïNxrâ’ãý¦ç¨-T’Ø-5rN+ «Œ¶oÕÈb{XO>Ïå'Óu6:"""./8Á+W^,(%·x‰ÖtóËŸ^*gNYcd­úò¼gß+"‘gíy¥ã´”¦BÆUÚ*ïO„±ã?î•ËÅ/ª¸ÍÄ»^„Ót/‚ކêú ?;áu]D’6!!e£#À;Œì'¦–²Û4Ξ ÓÖZfS[­Ð¶žšÙ­=KRã¹$“Õzƒå…RO§ÑQæqÑB¯´šž¥·½Xé˜êihêâŽ07kØø‹‰>„=ƒü%G¿Ó69hy]'–Ñ~£ÞÆf…µõ×P2ÁUåÞ[æ[e§æåb'6 qÇ匭Rq"æ/šûQÞËy ÂëUR7(|®v3ß¿gÀq;QB9¹ŸcænGÃ;:þjvŒú"¯tELäãuUGgu@ORñè©‘oU\{÷UT'Ø« ¿‚å S§«óvýCÎVµ´ýY¥®§ª/‘žL­—š3‡Ò -郶Ëj¶jˆ«-4u”þh†zxäŒH0îW4Ÿ}×ÒN=Â׌Æ>/z¯™†6K ãëñºDÜþm#è±^Ÿs£‘¯`·!£×ªÙïeeFŠ ªdNtrQR¸UH}G4-’¡€{õnnE*,7$Ç$´²°’6Áa¸P#À»ÚÞ<Úù‹G5¦¤ ì0íù5°rrÝ÷ÎÊ} š®&†}2ÂrÖZp¯SŬ¸ybÔÑ=¯7 (ä”5¤L,¬Üà ssí¶ÊæP?í§¹·Š6視?ÑÕvød‚6¼4Æé÷Û>fÞ¸>Šìû:(œju­Ë”–ÒSޤyŽ?Ì)„ݱÔý,+gŠÅƒ…ú±Ï”Y+ Èíä=j–÷S5£§+AßÙdÿ ÿÒ—qzÓý ûéÁOVi~ûŸ(‘‰ e ²B‘•~&5¾¨’›ˆÜ+¬¶91 æCÜßÄæÈC£x÷kˆï•viï|1¸† öÝíN$:Za4`ã;œçþ}•íhãw noÓë‹\NÎ?ÖËéwÿ↫ÒÏy´^i›SgºÐÜ`pËe¥¨d¬?"ÒBûö# äÁçì<*g±Ê¯8ʨvþÅQþàœû+ŽºŸˆœ5ºiã.­1º{kåéSZC=?n}Vº.ÒU}îžÑ|'žÖßÑÏhpw–#‘ü;çay5”•¶jÈ[SO-;&c'§s†±8×´÷ëÛ¡u `þøµGÄ-#Ol®•±j+mñ ®ÃþݯÔÎh®l^](8þ±Ä4;îáÓçЫºÙêj+$©©˜Í$Ò:INåÄä“õ*pxá#lqœK½ÆJÞ sm‘;ÿG£q‚&2'àåßâ |?h†¤ž—Li+O3<»ŒóVÕFñâÆÇ‘û¤½ÇæÕ üÒ׹ؼ£?5èÒܱ¼H>R:ìz©ÛásˆÑqwDÞtv±€\* ¤0ÖK À¬¤—,Äc œäç=T,âN™“Fqû¥d|Ïý]-4rH|‘˜Þ@Ûâaiú¯¯‡—étγ²êf²I-•°Õ?`àÇæ“îܪÚ}U5m”“2jiãl°É²×±Àà{‚qß9Aœnª¾;Åu=¾‚Zš™ÙQ±Ï|ŽèÆ4eÎ>ÀV¬¸ûÄJÞ&q*á¨&{Û@Ç{e9;ALÒy?yÛ¹ßÚqí…=¼$ðñš‚–š:èKnW3úRàÇ e•­äŒ‡ZY¥¿½Ì³ZÖŒ5¡£ØaU[üK‘±pçRÊㆶÓTOÿRrׄùŸˆí èã.wßeiÆÇ§”¿ %l¹§-a g ÇÖšvÙ«4µÏMÞbó¨.TΧ™£¨láèàpAì@Zçã˜ëLö[»ééu^‡–Š–ˆÛ n¶ç¸º–©ƒ ºFór»bKÏÂ匬*»mÎÚ9ä‚¢6H¥ØsAÔ³ßÜC§âG(oFHÅÒ!÷{œ 1ÎÞ§ŽxÆØv:‚BDDD+„˜ 9ǺÖ‹úÆWø‘Ö33ð²¦(:cx©ãŒÿ¬LŠÿà>²f‚Ö•:˜¶'ÉOk«d1ÈÞfÉ+ã-cHî9ˆÈôÊÍ^ ømý>×ÜXÔ³:ak»yÐÆ9j++žá¹ ãxÆ7#ÓyÍ'˜< gׯºîÆÛþj¶óT>¸Êƒ?iÁï×úZ׿-=¥õç$ŧÿ­ôÅDÔš–×ULâÉᬆHÝèàðAüÀ[‡\&Ç–r¬®/Ý —†šèÑ!4Öª§·eÁÞKÃHúµD äÝIo³Â­Ôüi¹R½ä6ªÇ3y}Ke…ßË*4n«„DDVoø•¤xso§ªÕ@ê—ÓÁ fI¤ÀÉ!£°õ8êxˆâ³®<@ŠïÃýY~6€ÆHfŽJŠh™Tâþfœ †5Fø=z¯«†~&õÆž ‚õPÍG@$kŸ÷±þ°ûA’7ÇNlŒ©±¥/Ö­O§¨ïÖJ¶UÛëbC#Oní#³wz/Tvþ »à õþJÅñ8¦àv¹•ûÿæ Öbè^ÑüJÖ6yÈc …Í-kGí8Œù­«iO?ú1j Î(aóYŸÂÿ-¹{¯H×l­yøçŠ8øý^XöŸ:ÙFòü$5ÍÇäú¬'@\×0‡Êìÿ³_ «à^™²9çôL1¹ÄcvL}91ôW¥î¨QÙkkGX)¤—sð°ûöP À쎖Fóü3[ª£#—=!æÆ{tëì§~»Õv¥kuê®jjh^öó¼#ƒIk2çÉZдÑ_8ÝÆöÒµ—Eq’Y÷ü4ñg¼Œõ §¾07+h41²™Šž>XÀÆ0g`{lÃ\mñ¦4'›j³o·æå®Ž93MJ}%uw_™#˜·lÅ %Ç-SfâÔºêáQ-tõr­@ç±ðà40€…<øOÄM;Ä4/z~ ¸1Â:ˆ´?åpùt=ÕµâÆÛQrà&¥´Í¨––Õ¼‘¸‘îÌ~‹øÕsÜt=ßLTL¦fMKÌì¸2nbæû¡ÍÏÍåIr@PÇÅl³ñÒ\0ÚK-37æ’W沇ÙÒÂ4n®p¹Á‚_ÔŒ©QúÏìü×>½Õ¡ÆÊZªÞë::'òÔMa­d~äÀí¾½3îµ_ l[~ßÉfÕ/¤âÅEɦ0i-OÏ1#eM<9ø”ýÅ*`†¦ )ê"dÐÈÒ×Ç#Cšàz‚Ä,{¨¸Â[èy­Ð¶ˆäp?¬¥‹îîÉÈ1‘êUrð¥ÂŠ™_%3/öîmùinnÃO¨V½_ƒë<2E=‹ˆÚ*ˆ^É*©aœ´‚ ´Fr07Êóé8Ç 9^ÉtÇ(*"®¿y©«¦øKK´c;zÌÝ/âÏOÕѲ’½·˜hÚ@òo=’ìœ0»·_eÎ&ø—Ó癩óë|p´¶b-Ÿx“З@ãŒ{a|Sx¯Ö™ä¥Ô"ŽŽ¡‡&)`¨á»õ;n:û÷[¼a6ZÇ2]M$8ò®E®ß,9ü—‰rñm©æÔ³PØ­”ô æS?šC æiŸlÐF@ÇÄvè¥ õ•«^é=Oel‚˘ø¤24áÌ>»q… |fðþ—Hkø.öj ⡾‰k*ã* ¤¼Œ4žq¶{Uô}%&±‡ú?t«˜>Š×U%µ¡àJ^œº6ŽQ×*ËÓº¦åb­Žãj¨’–®™Í– ˜âÀ ûõ[VÑ÷¨µ&“³ê(#tPÝ( ­Ž9-l±µàwËÕ΢®vT'p0ªˆˆˆˆˆˆˆˆƒ¢"!\q“œœ+ŽÚú“@ðö¶ôé#tå¦:v ÷Ÿ„r‚wÁ#>‹\Ú:ÛuâWíô5mª®šãpd— š Ëc/d„ö§Ø-§Yí´6‹]5®ÙK-,b(a¸k:¢GÚ^ØDèbfx›Ï­åˆ…Í凙ÄzƒÊ÷Šò>Í[‹Û}ÖœžI)`¨Ç¡kœßþZ›*Žè¨ÐÙrÁʆßhv©ÅV›Ò0JÓÎ$¹T³”çàæ† óêêŸÌz8 ¡Ä~+Y´´Í¤šo:½í$bš0]&ã¡ rƒêà¶qq¯²iÛ[*.5ô6›t lLuD­†60ÖŒœthñ»Ã˶º´Y5ÞŠ§§¾Ãk¦šóE0’WB\×±ÌhÙá¿@Üs‚3ˆ?PhäÏ.1¹÷]a…îäØÿÍOZ!–>M¬* •zŽCär‡sEM œÀœn^×»lí˾ä,[öi³CÄÛF¨ŽÌ†óoË àv??-Ìü”m£‘ÂLómÝlWÁ† uóÈ&•’Kk¨š„€þg5­vY; ‡Ñf‘×5ÉuÔÍ:IÇr¢çŽ&ÿGôôR’ 6õ¨Æ%c]ñABçÛœŽQꊋ>4H×¼f±Ú* [©¥ûýÄ9¡Í4ðç5Àõ<±ÿmÝ'™J[‡í»ç+éEŽüJÜ&¶p'WU@àÙ@aô‘ÍŒÿxO,|ÑA¯cs|¦Á{ËF3¸È;’E´“¸%Tãž‹‹²Fz(£ö‚pþZÍ=AÄkty}µ¢†ë‚rêw?õ/ÇO†G8g¯ë=І'‘;²vÏE!<ñAº7‰4ö›„þ]¢öæÒT—;áŽS´2ð>#ÊO£ÖÂKÀ ~k–Q l2ºê ò^[Ô´ájóÅu¨ïAE’W—F´wq;êT5к:ïâsŠ·mm©¥¨·éz)[„•Ò e,nÆ2Ðì½Ý~1ûÙŽåÂWÂÉøq š $‘‘ahçŠ^¢pâ7ù˦Ë\ú÷JÞ¸}«î:N÷™YC/(~ ˆõs3¯Âæïê7²÷„>,Ôé]kK§îwE¦îFVÔ}âR#¦#žÙ×w8c¿8ôSÆ–¢ šXª •’Ã+ø¤k²×´Œ‚pBæIþ•\ð[ŒHíºÅÞ+*‡½dø¥Ž4-k‹Îi•sG¹îB×Ö…õZÊÍIL’\©™Û|ÊÐ?šÚ³bhb6Uù®BÖ‹»´oººjyŒA44mºè`Ž7´{sµëQ¸™ÆIÀp'ä¶=àúæ.°Æã3¤¡l´²=í nDÒÖú᥹8ôï•|ñb_#…Úº ;Ec­6zbî wƒa8ñ¤ã¦-?½9³¼b’PîòF=ð¯ÿ´^TUj^ƒ£˜ Z›]TÖ’33ÃÈìÜž§ñ.g½>¥«ÖšžñQMOQn¦§ŒTT45”°<¼½ÞaØs´c®î®n7qöï«._è烔µW šâúi+ Ì©øwïðGƒ“!ÆÞ€dÞ<ð˧ôΞž§[6+Ö¢¸ÒºÏXhàrØA¿§ëùß0ÿ‹<7Ô|3Ô3YµñSù²¶Ý^Fb­¤aÌpÛ!¥¹oQÂçÂ#êj?Òúz³“›•µÏ9Š¥€ç•ãë±ê;-ékþâWb¹Q¹•V›Å#¡¨ˆÙÌÞY!£†KOðÛu ¼0TÞxqâhªú˜éœË„Öªðæ¸6£¯–[‘œÈæžáÃÕO3‡Ÿä ×ÚK8¥§+Z’k1cÈ'â䙨öý¢²Ùß#?¡º²2å œìŒbÛß±R”»¦{tF—w/?TDÙ´ÕÒŒ¶J)˜íº‚µ\Ö²26Éú,ÕàÜyüo¤· vÊúÚb9Ëê„SCPã×-…ÍÁýå+¸Ñâ.ÇÃmo—–ÉYs¨lBZç1â! ^Ëæ¬'|þ?{ ìðßÜ?ך’=išáKpž2VÀÖ6Gn]s\áÎÎÇ;²º!82W7#l’ù¦‚'2_6KÎÎWs´;˜~éÏQ×eiêNðûPÆÖ^´eޤ5üáßtkÍ‚3ÌÌžêÉ«ðÓÁéªTÍ3WNKËÄt÷)šÁ° æé¶qîVBК#MèkGèÍ1iŽ‚™‡—>\g¸îãñ»¯ªð¸ÿ¡gâ .ZnާîÕO,ž•îÁa’2î›^Ë]ÚÂÁ~кΦ‚èmÁ‘ÐIÏ)kÚáÔõÙ\×ío±hý5ÅqDúÊ»¹£¹Y«)ÜÈD¬æyÀƒå½ `±Îç¶Æ4ME¢§GXêlCOgžßO-13•‘ÀèÚcv¤l½¢N}}'8!Tg=Q """¡8 TæÎØÂ³xáªn'„Ú‡TÚ ŠzÛ}/™%³%ÍnHì ?E«ÝCª¯#äÕÜjjšçŸ6Rð\ã—ýJ˜g~Ž·1yÖõÇ-mLÿqÄ~3•îSȵvCN="ûHë%žë¡¡wàe5dƒæçÄý@¸}›q²=m«Zç4Èm”în?t¿'ù…8UУFß5Q‘ß?4Tq!§bµÅãVøû¿ˆ¥;ekáµRÁo̓ 2=§Ôù’¿?5˜>έ6ÆZµ^°‘Œ|’Ï®ü¿Æy²Œ÷2E·öùþÑû…u4zÛFó[7.1•‚&îzl$þ%F®q_XèJ§Ti«ÅE x!ñ³7äus–“ï…zpÆ“Nq»‰’[u¥E5޾äÖÊ.4LŽ›žVdÄ`ˤÏ\g-ïœ+“м5à/u”šnå⺞ISi?U΀/‘­- àÔn¨ðá]ÃçpâÝdЊ®åEGÌ7)Á­„¸—9 søG/\OÜ;AÉÒtès˹Çç… 8QäqÇFJÇ ÿH©#Þqiþù-mŸ’3‘ÕP÷ÿ5æj{-»QX+ìwxE¾¾ðTFiŽÛÐ÷ÕjßÜ8¼ðÃ]Öi»«øšâú ÂÞVÕÓçávÎ6pìAõVe®d¹$z­£xoÖ1ë~ 黹«5UŒ¢ŽŽ½ïq/ûÌMk^]žîÙßâYƒù®hˆ©ðº*0¸g®ß5«¯2šºÕÙÇô¬ŒÀçá½ûm²Æˆ²¿„Ë-%ûŽÖ *æ6H#2TÜÀá!…á§$`d ÷éЭ›S?Ì’»#s×ù.ýð0PŒ“²¡ƒ¿ªâA<§8èµËãžF»ÄMõ­w?%-³OÓ……ì†ÿokÝÊÃU1'Ã+lônZ¡¹ ›úŽVÿߪõp×4±Æëø×d¯á [3¥"¦Gs´X‚CÌ}U®Ø›–s^êZ}¡Ú£PÎL¡Ì¤Ûâo)p#ÎÃ|ýÜgá ¨ˆ¸M,PC$ÓHÈâ¥Ï{݆´’I=P£‹:®ý⌔ü7Ñ•aºjŠ_3ïLiä,hZ·ïñIkÙÈîí¥ö†ÓV­!¤íºbË Š‚ÝNØ"ÈÏÀÝî#«œrIîI^É ƒnÝÔyñ¿ÃHu_äÖ6èZ/:nL÷¼ÔcyXOöF^>NõP6’gG(-v@=”ùðG­gÔ¼.–ÃY(–{ ‚"_—y¤z7èì³Ø' îªZ9vØc`5ñ8Ö =jù<Ëi”39˜IÆ;;8å=œ{('áò(åâòµ44ÒÕÄ×79•€rg¨q|–Ì,uÂçg£¸ŸÞ!l†7þ&->ã¢úÈÏæµ¯n2ݵåúë1J»¥Tï9êçÌçz_@¼šW|d»ŽóðfÛÕ‡AÑÅx5ZnOrõ2=81†8vi‘Ï‘ÛïÊÐUÏÆ..pÖ·…úºÑA­-•uõ–*Úzh¡sŸÏ# {CAhÆs·U¼1ê* )ÄÙµ=# ·Ùë¦ì’Æ´dã˜ó` ï’:×Ú†á«u½ãPÝdy®¨2¿÷[“³G°}vœ»j[žŸAÙ_<±\n QDîQ<ä°»  ßa¹Ûu´î·©á°fžá¼M®Ö·/õ{•æ8„ò:G9¼”´mÜr7~ ‘Ät j—¼cÕ\YÑü*±jm=n´T>†ÜÚJÛ&f9±ÆHcC€#&NlìÜwV­«_hïü,ºèªúRjÆÑ>¦žîÀûÃðM‡ls;§p ÈÜÂmO¦u.‘»þ‰ÕjÛEyŒJ!ª½œÅ¼íìæå®l²ï„®-I µ£-×'½öK´í¦ªa†Âò@dàtÈ'û$ú+ÓÅ ž³Nø¤‹QR2W2²Žš÷Ï.Zi+ñÌpHFìÞSBË_ ÒÓGs¦,|p2xÝÃÚZæ‡ 8lFýT7ûD©±«tmS²<Ê*¨‰á<²4þ{¯Wì阺]ožìbÞVØJ9ºgÙKæn2 gUcD´²Æö9Ítn£¸ ì´ùSÊC`h ó–àõÀ$ü–eð‰{´X8ál¼^n´¶êz:±4³¹Àh‹CFß$uôõÂÜ}²p¿Ž–ö³Fê;µôó[ßÎb’µÉ4ïÈÈÉi9Áô¨ICs»iÛüRFéí÷+uFwË$‚hÝ騂:-•ølâ­ø{Mp|±²ùFÑÒ§q ÛÍá~9†:d·'9@tè˜DXgœy³pδY ·ºí{’7Êó„qA‘ðy‡s“×”ÆBÆúKÅÅ Ed0êm3<wëj¨*‹Ìc|§·âßûyÇ@z7j®¦ºÚ©.ty”Õp²x¤-åæcÛÌ;mÙ}.yß~¿šë¨žš‚Zš˜iãÎ9¥xksé“…‹o*á¶¶¸E ʶžù%/ÏU‰¤sšÉXÂàÖƒŒ¾ù¾/8Õ£u6„¯Ðvsu.š7~«‚ñ¸Õ7~Ùnv'Y{ÁeʺãáßO}ü9Τ}E$R8“Ïs87À|?áY¥¥¤méÙroO’ª""""""}S|û ïº""C°Ê님¼’9qëÝXž"Zþ k(èmò×Í5šª/*-Ü¢pæ¾68ú-T1ïüÖÄ<C-m‘Êá©}ECXZAp39 ç§Hÿ'e!ÔûIœÏé>Žc0Ú:¯„výcÅön¹ç‰úKM”dçÒhð§z£†ABÞŠ¨ºkÉK3÷±¸í×¢Õgî&éÄýSsyæó¿®pâ3¿ÉO/ ^»Fx~´AQGî5Ì–êø#~Ï2üQ´žÎäƒè}p ï5—55íôüBeÒŽª:‡Ï¾®'DÊ`áˈ˜FÍøq‘œã9XÁ]œ.Ó÷íW«mÖ=?IS%Lõ13Ï…"—/J÷4PßÅžØYCÇ9¸Åâé÷ØRÑR)ZÎ_:(rs¹yÏöG¢ÃökÅm²¶)i*g‚f[,R=¤oAÙNOœZ»k(kô¦¦¯¬¯ºÑF*©jfk]šo…¥ŽpÅÁÎÎ]œƒ×e x¹i~)jËiachïU‘0ròü"grœzA5pør¾Ôéî6èë…+ù9îÐÒË“€bœùOèüüÀ[Baø¹sÓeÍX{Ñv® ðþ«JÝH„UœÓUˆ¹ÝK;wd€dgbi#;­^ë[šgY^ôÜÓ¶¢KMÂzÊÖò‰ R9…ÀvÏ.p®sÿ§- 帴ÿH¨2AÆßxfGå•¶E‚|tTUSp¤ÓT˜›%Æ–)XýcKúlzmò>¸*ðLçŒú7œê:Æäí3O¨Û×Ðdàô[Enp3ÕÙ sÔ’¨æçl•gñk‡:_‰º^K§¢30eÔõ1a³Ò¿÷ãq™ ÷A®!xOâ–˜¬–K4¦ÞãÔNÍÈ ¾'‰É­/ü'Û9ïÀ–›â’Óú‚Ñ«¬U–›\•,–‰•C’A0²°Œ–Ö|YÇÂ1×*MtØçòAœâªJ©![š×[éJÚ­MtŽÛËC+N\ðÜ7r Ðnv^äTÁôÓE42èäÁÍxìAºç!ŒˆWƒ {ñÜô÷Z­ñ{ƒQq«VÞi%óiç¹Ê!~ÿywõ X®®-8È8ØåQdï ÷[<@iùD•†{‰æcþ%³{4¼Ôe¤F1ƒè¾öHë¾Ûâ¹;!½N}—dú츸å¤çç²ÖÿŽ2Ãâ?Qr¸¸ùaß@?waÿU„©yþñÁço+cŠÙf㋼ë›n‚·Õ›Íe ¨š¢'0S¶vÆ×A$?ü#×c‹£HëGêMq¨¬TZÐö6Å ¼¾LGQTàè˜Â2àÖ–ž`HßÜkx¸Ààuèà|1HrzŸÕ¸`~Ák^1–ŒtÝL_³¾’Ix¸–>FË79Ç+LGqõþ e·`0ˆŠŽ8õQ«ÇÛ¦´—ôÕ?-Òñ}sãvôÔ™Æö¤9Ýõ ÒðÉ¢­œàÅVµÕ­—[0®¹ÈýÍ58Ɇ ô89#©{È$áª7qúÿQkË­»Q]¬¶×OŠ: :·DÈ¢‡r‘Ìã‚\Orq€>K7ˆ*Z[š]kq•Äâ°2¤mÿ¼þjqðÏ_i.&韽Újá©ç¦oé tܦXyÁd¬Ü`î6È!@/|7Ÿ†\Q¯µAŠÉV÷UÙßñýÝÇ>W3‰$ÇžMÉ8ž«ÑðÁÄ6ðï‰TµÕŽs­uœ´•Í- cÜÑæ‘¾y2N=2¶;±O'¦š9b•¡Ì’71Í#gÁ]£•¾äûôQCíÖòSY¬¼?£~>ÿ›Ç¨&&X™×¡w;ˆÿÙ·ÝaÆ3ÄêùÂãФ·-æÅñ5§Ûwcç…+xÅ(n7me¥®r5®ÓÕìŽË¡sysï‰à}˜a¢ÔÊÖÊêYŒ‚¸ÈyH ej¦o6¡Ï$åï.'æI\âxøÞÓ‡õô8ê¶}¢,ôwÞ<-N£µË§i-qGXÌÊiÃÛÍÔǶswÏMk\ Æ‚Y-Õìžš®™Î‚¢šZø¤nÎkÜW^—Šº¶ó º† jªj?S ·/•î 5 w$»8ƒCGkÕµöº*ø+ÙHæÃ%Dòä•­NBOÄÐþ`p3…ÆßsŠÉi&Ý+ÅÖ¬>:‰Ç“¼=rî¤úmë™Ã Ý áêÉdÔ7ÛlŸ]_¢|Ί*ȹlôãhwʼn]öÎŹhšIèN/ðωvájmÎ8¦¸Fêi­6†I0{pæuå~A#á%Bž'iýEá÷ŽBK\ÒÇ,ß~³Ô·ðÏLâG!ëÓâÀúg!IŽ>é ?< ²ë½<ëÅ;ê©!nî™§zSßœ9Ÿ{·ñeAžY³šCðZö¸t=B’ÜMÔÖž ð3@jA<¼iÉÙc½0tîŠH¹|Üàe¯15Ù à¹Ã|ÊO רµ [€±—[Œlh?‚?¾J虎ÀFèÀ†ûEmî~™Ò7fD1|ôïl@|aÀ{þU«öwÕSǯ5%œñQSll Ž^Hä`éÔœÈwô›¿EBÒO÷ÍpžFAåâ8šÒ\òvhZx¸¹²\§tO.c¦qØê Ž ú÷ÒV0µä|N«×ÓZ–ãh¼Ó](«e¦­¥•’Ã3‡1ã¡Å]üj®¤×%ÑRßTm—è o–*f 熰3 23™¯nh¹°9ð>_ úö¯@q>ÑuбÐQI3`¯? 8ü@–ãЀ¶‘Œ–&KƒØö‡5ÀäzÉS`¼]OªlÖ )tÔµu¾‚ÙNùçtO'”g”oø‰À¹ -]ñ#TVê­QrÔUÎ-©¸T>¢F‡d3˜œ0{ôVÕ3ÜCœ]°Àåõ[ ðCª&Ô¼ †’®WKSc®–ƒ/9>^ø÷ô 4ug6ú|‚‚¾68‹Qpâ«´Õ y’Ûd¦l/‡àûÓ²éIõ!¦6ïÓ”û«{Â,³^xÁKf’¶¾‘· }dš…Á²°:'|@àŽ¹ ï…Ÿê¼ðÎh˜Ö_µ”|¿ˆýòs²w‡còõè³¶‡Óv½¤mšb˱[í°akÈ/#©sˆ.$’N7$¯iÇl‚Wp興ˆˆˆˆ…º"'dECÓeF·—§rºªâeDSÊÎhåaÀô Œ­<]iM Òª„»œÓÌø¹±×•Ägø-‘x0¤©>tÅetp‰elþYd\‡ÊlÎc3ƒ¹!€çlŒgq“š¥iskˆ8Zùû@*?m à6;yhnNr$p$úg§¢÷þÍ–g_ê‰=-Lœ­ÿ’(€0ÍuòÿFÕdò™ä¿™ùü#'èµ9¬_JýIz’ЧïTÒ×T˜f#í2;ø­”k_KÃ^Ǩ'£ûävÊ*X›N'lFGµ€;çœNÛ¢W¼@i¾%ÚuÇi%µ1îû¼ôu®mÂŒ8~8åsyIÎ io)ÀwX¦Ûý;¨u,Ô¶ Zh-dóE-õ’SÌÖ’~ÚöPìn‚`Ø,Ü=ðÕ–¶Ó&·S¾ã÷fýêZ–T]ð±­sË@—;£¾ 8‹|}ãx®Úi®ºfÍGWE Šš¢›Íóš Áå./Úp v$‘Œáby”4¿Ä:©íà7CºÃêÝa[O«Ô´ÓJ$ÿTaÓðŸ0¿ ï°Q{Åãc$u€lo‰¿xÄ;»¼ˆ÷Ä«3†o¤v½Óߤ'|LºR¾¦XÇÄÈÄÍæ#Ü ­´´þ°uÚ¼-aÏåR5Ž2ž¿.‹X"|w×-„Ó~«qóñ\]üIù/Ožk߈]M sä\XóèØ”Ÿø?ŠÚJ"À>=Œ£€ŽÄ^w¥#8`˰O×ꡇe’.4hycqþ‘Ð3#ÑÕ iüÁ#ê¶–ì¹*ORq쩇wÛ°PŸÆ¸¤8ßú>‹PÕÑZc¦¤®·SÀCX@'˜½¸ÃÏ›ÿFÊÞ²ø»â-oŠº ÑÜîse©¢s$h$a¿ª{ÝÏ]×ÛŒ> ¶QÏgÒ.oð¡©÷¨;ãºæ7ß~Ämù­JqBÖÛ5-‘•.©m¾íUJ&s@2Löó6ÉÆU¸ŠãáuY â^—­kË ŠI9‡lL¶Ám{~ñUqql€“·'þKÒ' Û¢é’Xãh'`Ñœvsg+ÚdakìîqÿuY:`÷ZËñ€ø¤ñ¬<¾‚¦0N߈CV!ÉÛ~‹ÖÓzŠõ¦µ =úÉqšŽåJçjcwÄÒæ–;6’>ElcÂVŸ¨±ðFÏW]r}ºøÆ\擜9¬a†8¡Œ?fbîm×Áã$Í'.PÄpRË!=šÄ•®V;”ÓñS£ÀMÃ3ƒ•×šÈØî匆Ï*U!D_%Ö¶ u¶ª¾­á”Ô°¾yœ{1 “üZ÷áÜUœsñ;m›͢ª­uÖº)\بâ--Œã|m»–VûB5ì”TV^уêš.•Îè Ms™ cع¯qþã}J‡ ©w o©É\f³¦çªåáö½¾h}AA¨l"ÚGó5®Ë•½ã9˜AÁù`©—ânßjâ÷†(5ý†7º[}8¼Qç{#8mL.Æ@åo18ïù¨)I)ŠO38ðTæð9Ä)/úB§DÖºYg²³Î§yå m3†Æ1¹å'¿®3°R@Ì6ZÙñM«¬x߸2Nz:9ÿGÓâAd? #æîsõW‡ƒš{l'VÝgšµcîTq’~&Âé,§„Åû§§{w…z…Ü8ã$u·—NÚ;ý!u{,s"¨p–7s’Ü1ØÀî=Ô•³ñ?MÏúR‚Ó}£¸TMh­’Ss’ TòHK‹€`-|HÐ9@=@\‡1icAÏ·|­¼[&†j‹„Ñ0`Uº0ñÎXÓÐÂAgÃײÞ>,tö~4Áv¤¦Š&^­ÑÔËåŒsLǾ7=Hk =ÎVÑ÷ÊÍ7sšëDC* U+$Æìóà|EÍ=Cƒ^pGB¼G8——wÎWÙ,ÒÊàç¼’;¯SKß.{Í}®RÔÇQÿ´ÃÌ?ˆS7ÆeºŸˆÞ4çm”ÄIBb¬$ÈIŽš©¡²·bD¢Ï@î»öwki!¯¿pú²b[;ÎÞÒí„Ã&hõ.o–ìtøê±÷ŒžO¡ø¡Q¨)!wèK,•8D5óM ôø‰{z|.Àü%bK}tôTµí•ÞTá¡íÏ^S‘üT×ðy¦ŸK߬͒/::˜êÃ9]ÎCÚçÓn7Îv^‡ÚVÔp1“¤y¥½RÉÌÎŒHÂ]·áø€í¹%„|×6Ÿ•4¦½ÕVJ†y˜Ýœ²Dã¿¡Àü‚žnÛŒû.mÆ6_úõVj¨#²HèÏ#иnæÔ^±§Ž‡XÞ)`æòéîÆÎaƒ†Èà2>‹ÖáÔ6˵ö{=ѱ‰.43RÐÍ#ƒ[ [€19ǰæo)>Ž+â½émI§ëêh¯–+EÍC'¥{|±ÍËÌN1ÊI;89¬½£¸1¨µ‡jÍ\ 1>®á("šB<Ö¢‰²µ¼» ¾a’㑌Œœ;¯tÕÇFkK¶—ºŠË]SéÞæþSð½¹ß•ÃìBŸ¾¸ÁnÖœ6†Çs©òoz~à©ó:Køc >ã=Ö~áZ¹ bÁ¤·$€{£Ûó•Ln:{.äDDDDDDNéÝÊ¡Éé…CÔgZ~Õ³ õMÚ <ÊùßL¼•±ßóÍQá§Jºy ŽgÞ£i=šÚ©@A…™E®/ry¼X¢”Ê÷9öù i ÅmPúàCû6éÄz£WÈH$PSoÞqr›Hˆ‹Àâæá£.ôz~±ôwi)$’´3úÎ]šyšáƒÐœdglÖª/6ë•¶ª²Ýt¤šŽ¾ ÉéçilŒ“rr=úç¡SgÅuSµ„ ]ê×[ ¤s­µ2sŽc$dr´öp{šIôi Nâçóuì7ô]”uRST6F¸Œz•êuF§ºxk­Ó0¼Éd²ß ž ù¤¾&NÉ ƒ‘åù.Ûs\íˆ^‘Íî ˆ~\öœ€:nF?‚•¾µuàëç誫Õs¬âÕQ5%pt>p’7d2Ý‹ÎØÏužx÷À])ÅX'¸HÁjÕKc†ësƒƒz6XòÆ23ø†ÛàaE«¯…~*ZµØ=”äá}»RY¸{cµê™éë/”삦X_–»—fœàd†ã;n5u//PŰÃÎ7kòÓèV®üG¹®ãÞ¸,w0ý7R3Œn$ öÿîz«óÀI#ÄU¼œÐUíúµ±ÄE„ünÛê+¼;Þ¥§Éû•E-T\ÆÌÐïË››è¡G‡⟎ú)ÏÀ/0¿sûMË›ÿ hMÝ¡U;õÿµS ø¯àewîzçf«¥¢¬¡dÔµRI3ä‰å®¸ÙŽ=lã=½ø5âm+ßú6í¦®L´ ‰"{½°æ`wî­è<-q¨ÊøÎš¢fßtƒ•Ûv×½mð‡ÅZ§9µUÚ^„4ŽJ׿›~ܬ>Ý}VIÐmоwk­M=x¦š+KŒ‹<åì$õiÆ1ÝdJ? <§e;%±\+yæt×Iƒ¤Ï/âäszc`1Ôý=áÓƒF'3ú I‚C³÷º‘‚™2NîÀäàêß ü-¼P6+]ÂÁV%2}îš²YÞvvË3ÞÐÌ»$Â7çÌàO‡ žñ5ú²·SÅt§¦‚h¨"Š˜Ä÷Z_.IqÊ:’{,ýV󀆹ÅÓ1˜hõ=JÕO©™GÆmkK$G®ŸO=ÊÌE÷iùÝM~·Ô·ÑUDñŸPðV×íWŠ95ÕÊÇ+ª#¥mKÈp$7Ís0G^ÇÙ\àg9  3Œ{¯=Õü¹Òr±œü±;¡ã=óÑwÒÌ'§óÊsͰ=7ZÉñeZjüBk7ÊñÃ@ü±½¾K«ê»†Wú CÄË„o¦¡ªºÇAIã<ó1ÑHó?´y`h;óz`sL_³ÿV×jtåLñ¾}=qtq°7m4Ù‘„œîLžx6h—±ãwï0pV¶® |­éä-ž[ŒýB×dDómŒ‘Ær§ÿ€¨Ü!·Nñ»×W9» sÿä•%Q À¾6õ Ó| ’Á@eÇRK÷&¿íøç~=9Ccÿâ…b}žÚdGgÕÎhc窩Š×I!gÆÖFß2\ís¤Œxý–ñ}¨Æ©ã梚7óS[Ÿ¶Ÿ»pïÍåçê±+ZcpêÑ•ÛLÑ4gÌ.Éi_¹ãyÛqº›¾/VÍIÂÍOÃ{¼|tòÈécs,´µLä{6ÁµÙ9ýµõþ•«ÑZæ÷¥«Þé%µV¾ŸÍåóXXüz9…®ú¬§à’ö-\´Rs*íISA!sˆ1ù­Û¹æˆñ)»Å­[‡á­ÿTÊö‡PнÔí'ó¸rÄÏ«È V’Z™]$ò9óK!|ŽqêârIú•=<ðÚÔî Ù/W1MTÓÔ»“c>d-Ï=Àk@¦çÔæÕñ¥Á;tâfó ¨ƒËŽãN^\DZ­ kØ?d€ lzã9ÌYÐ÷·Z/¿y‘ß«––z>cŸÕ ˜èËöê@vqÝYõ å·›<§”P:%?˜&o&ZâàhÉö[oÒ”°ÛíͳӰ6šÙåÑB9Ë߆Å%î?‰ÙqÉîwêJ€¾2¼½ñºû¨4íÒßi¢šJ+{䀈„ µŽæŒ¸îNh{,=§b¶Kx¡†÷-LV·TÄ+$¥kL¬‡œ–smÍËœglã+ɪò L¿v9Ï–$ »—;gg ­I¾(ødÍzÓ÷Yq a©|Åﯦ$|q€1ÌÐAÀê îc;O— s]œ‚§O…j†q#– Ð“IæÏJ*íѱÿ²Ù[æÂsžîpýße|9j'hî8i‹¬Ï’2½´µxÉs†÷‚œ¾.4Ÿô¯€Ú‚@%«µ·ô¥)#%¦KñžŸ«çU­ÖÔ9Õ§ÍÆOÉHßZµÖŽ#ÒY¤©Gv{éå¼Â7½Ž;õË1õRÇ2ÉáÖù$E¡±UQ¾@ç–ùínÞ§. >øŸõOº~«©üCΧ<ÙŒ`»@À[¼F½Û¬>árºÕ²šŽ(ç{žZ|¾f‡àóƒòBÖΰÒñ]øW_Å¡,¿{®ÕÓÒÉA+#€>=’7®7jÆÊc‘a-s:pAìT„ªñ+Äz‹umZ€RÖ·.¦ŠGDnCKšv89Îzç®ë5x{ãå6¹£+[TAMu›õT·£Ž(æs48lÖHÓ4í·®ñ󧿉öíNÆ9¦÷GÉP]ÕÓÓ‘?ýLÂ1íî±µV„×´¸¦{)Küšö72äŒw n=À[_¥{$Œ=l¬sC›#]àFÄج+ã~¿î~¯Ðä‡VTRS4ާõìy“ ×$î$Óž_e$ø3ácRÜuž¾k)-qéjOZæÇ9’J¦<¶ óÊã³¶VÕv™tÆ·¼Ø&cÚëu|Ô„SÀ#1¼ãÔû…óÈÆäõY߀¶Aàé‹éùé­Ô5щ#p0ºi\擸<¬svýõ‚Ù4ãè¹GÌ鋨Ü|D€:$|RGUÇ9yšËW3~eÑ3ù<©öÆŒgø®Ö€ª/;Pçô0ý—‚~KZž0é[KâGW±„¹¯–ž|“œy”Ñ<ÿa\fxˆ·´µ§Ï «¤Ž„GÍ·¿ÃüVÇ ñÙxžÕáæåOý'YMG!îÖù‡?/U¼$жíâFS¸¹¡µÒTd7† %ÆG÷ÝÖÍá}Õpzçè¹/–í[¶×UpŸ>U,™øýÖ´¸ÿ%†<5qÙüY»^-UözkeMqÜ«_Âw nÜ)µßÛy¯ŠvÞkš)bŒdÅ.‘ŒsÎ?œÙÀÈ£|’«ã&&Íá¿R“ÍÍÝÜß‹úæ~{ek` øªØOÙüÉ$ਨy%¬¯¨‰öæ?-ÉÙHÕB21þj£ÑLñß õ¦«Ô:F³KØîW˜™E3â¥g0†Bö8zsw;| *xwÐNð²¦Õ}»ÅpŸÍ–âY\¬¦Ëtm'wnÒI=Ê×Ö®K•Ú²ã!æ’¦¡ó8žüÎ%IŸ<<µj«v¶¹j;M=}š¢ž+@ŽVœÈâ|Ù9^7ihò·i$°gü$Ý,°ÖÞ4ަ†ºÕGO$âŠâÎJˆØÀ]Èß…ûg|7ä£}ÎÉNt£µ»Q²¡µÂʈË+L™ÆihþÐYgÀ† }§ÚÜéwºéÖî9Úß5®?/-Ãê¯o´BÝ£Õþ"SA4öªŠfQW=æ²0žBìtkƒ° î1Üf5èáv:’•új É®=³Ò F9ïlp-pÇ£€ß²—;5ÄÿÑ{FŒ‚zøã«­Œ3•Í--=íÜcqÌ:‚U[3]Êex›Ó'ªÛN‹´Réý!h²P´6š†Š(#Ѭ?^«Ïâ¶–:ׇ—­0Ú»I_Lèã— VçÛ#u«©,uQß.6Y䎚¦µh•À胋†}~°\ç4“žlå}Ú£G_OZÑñSÊÉZ6ܵÀÿ’Û2¯Pƒçy"阌®k³˜"sÈ-Ûúà DzåÄ-5K¬´UãJמZ{­”¼äsyNpø$¦ZîW’ÔíÖž®ßW5º¶'AUM+âž'‰’5Å®i÷ñ"š¾8Â55žŸ‡ºš²6ÞmÍi±ÔÈ3ÆÐ’Iêð3Vû…üWðú] ÅJÊŠja–ö÷×[ù ywëaö,y#ºX{«·À†¶¨ÓÜH­ÒâH™£…‘°ÈpQ&2>IÞ9v˜g V¯‰96–ã}Æš¥¿w½ÓTsÂÀ$ŽóCAݼ³²@^^SÝO~ ë[W¸kh»ÅY eDÔ1Gs€½®ts–H×°d€\בž£pµ•®,ƒLë[ölŽ”Z®U4Aîêï*G0¨jöxSªª´v§¥¾Q=¨£¨ó˜_x‘ÌÏ)ê@y#Ü)õââ!uðÓ«]IO%H}%=KCáž9 È=h.>À¨ƒàÚèëˆM.ÈÃKjE#ùœðº» žùcvïÓªØô@¹乨™ö†ë9­újæ¨jKÑÕ/© vîŽ'CÊ×í/ÉßlÇê9Spª+§…kN“¥o%mÒËO]ÈëĺvsCÎæ{¨Ar¢«¶Ü*-õôÒÓUÓH视Vòº7´à´ŽÄº‹ÜcåÎÈÉÆ–µÅ£9Ûª“ülÕPñ7Â.šÕs²/ÓV›Ûhn®Ý¯0½¥øì$ þ™Èì¢êÙDŽ˵MÛ«É$trS õä‚y!`ùÆÑôVÚVÑÁkdpó&Ôpa¾¡°LOó ðßKɬµÍ«KSËåÉ_;b/𴜸þY[Z±Zi,öJ M+?Õèi¢§‡›rC[üZøñÑ¥¿£Üy«¹³”Sß©â­`hÇ+ƒ|·ýK˜]þ%ìx ŸËㄵ cê,U, $3ÀâÞž'è¦î¹§Ž»Cߨ¦käŽ{eLndg Æà@Çu©HÜü´rà†ãå…éÙ륷ÔÃp‚I$6Pæ;- ì}v[p «§­£‚¶žPèj#l±œÚàäWkÁ;s} `®ÄDDDDDD(¨pvUDDêª..vpGUkqnâ,ü-Õ—GsKe«”w$Bì©™ÛŒmû 'ù-’ø£u'†Ý:ç’S%Tü¤cÔÈÑù†çê³jÖ¿H£‡‹ñ28Ãèüœgâ?y¨Ýd¿³[ÿÂm^üŽúåMÔDT;.êë~ÁÉÇP°Ÿ¨¹¼7ê—"¨£yüCïŒàµÇ+ùêe%ؘœm¾B‘þ í‘]™Äû\³˜ÙY¤&§qiè.߸ʎŒw {£œ`ç*Lx•ãtÁÀfM?RÁ·¤ÐäùoAÑrD_5Î6ËC+\6Æ%­O²=¾%5QkÞ9£¡ó‘÷~¾ªáð#“Ð ÜO“lª’—lמF’¯. ¶&ˆ±Œk<7º K<”QGY ý×G#I?î󪇾èÍOˆ[ù´”õ³[œÿ«º<Oë?‚Øèc=}W-ºŸÍÆúïÑœÖ5ÙʲÕ~ HÞ'ŸU |V2‹ŽðQ¸àÕÙª"h>­,wòaü–ÀuÈÑœd‚îà®Mhô ¤«‹wþKçª<¡®‘Ìo.îöšÕ÷Š?¿ž?ë).üò\ä1s<¬Æ{´¢Æh¹Â÷E3%n9˜àáŸQºÚ6€­ŠáÅY4s:f~Œ¡td»™¡®ž¯ðãmùAü–Kaè;*ɹo6@¸°Œ·ÎNÊÜךžÛ¤´µÖóq¬òé­ÔrO).<À š7..-hù…©jÚ‰kkfª—.–y#»’çOñ+h¸sOÃ~Ú­®¦1]«¢mmÑÏžö‚X}˜0Ìdžådé£lŒ!ßCè¬ûÙc2ÿ*šA y"§ Ž'·˜‡’FÛòï鿹Åþ5nn‡ÃÌONæI]5,DFþf1Üíqq~xZî{²K@êr¶1à6‡ëtœ¸UÕH=ÿ\æçþà³â"..î2¼}R?ùµuh;š)÷ÎÿÕ»¢Ô” ˆ›—psóY“‚<}ÕÜ4¶Çc¢m}•²ºWQUB‡8’ç6FaÀ“ÅÌ¢zÛŽ´ZëÃÆ±¸i#]i¾PÓÄ*éüÖóÁ äk]#\?HËr0FT¨¨s¢7ð7~xb¬šÛâDÏιÇÁ»H g뇻­ž``´ãávÙÈôÂðcµiýi¹]¬ºrŽ”Ã õREm£c%›nwµ¸Æî-ddá@/š•·î5Ü&†ºêjXbŠ7Á8š çF×Èֳ⶜±VHè©++›”áÅŒîÐ0ÑãkXƱƒ h@ªsº­Uñ¶‚ãdâ–§£¸<>©ÕÒºI0Îìçà«ø 9oñ]#ïÊr¶§Á»µ„‚ª'ÃY]_R*à'he†CNX>´ÎI'º½1—ݹ‰åj¯×K·5•†•´ÔòÞ*9XÑŽbZçüÜAq÷qV:/®Ñq¬´Ü`¸[ê$§ª§‘²E,n-sAt9 lÖ]éüFøm½Ç $ÕVƲGÀ?jão3_z X$gÌŸE ôíÂ[> ·Ü£’XŸIRÉy£Ùã•Àœ{ì¥ßŒ­#KzáE—\Ûâ«’¦†}à !CQ™ƒÀhÙ­{ÚR]“•bxÔ°ÚøÉ-¢±îím’’\p$k„­<5ø^Œ»´xˆÔe´í‚ ƒ`¯‡—«ƒáh{¾²2E‰líä¹E)c$Œnö¸ìᲟü5®“Zx<­¡.ÕÇ`¸Z]Ê93"‘‘á£;òòc*"øV¹6×ǽVHo_÷bCAÏ£î6ÝÁlá h|–á«O\.sMÒÓ>WK!ÃXIæ>êÕï5eW5m~ uD’SÓ?ɤ‰î'’›˜†3¶ûŸw­…ð†ÀúÎi1x.¡¨Ë¹]»\!or£Ÿ¾RÛíöþ#Y©bl†_ºÞ^ÁÊé‹€òe-gg5ÎêrÏr¢e¬Ñ²Ùp}SyÜæµ‘4ã’>E£èJø 1dæiˈåî1ÿðRNh«å§Á¦ºÔ7Êiíuv¾b<ÇÆÊ˜[û-!øi=A'¡dž´¹Á­“жëgµÛì6J ž™´–Ú fSRÄ×Ë[†ŒÉÀÜÉë’£wÚ×ÍÃí>Ö;”Cs{ä¦ñò´ÿ?ÍFoµ¦ÓÇ #YÌ?JC‰;÷rŸæ¶˜¢Ú?bi +©Úð>åp–…íåÉpš>vœöÀGø–ðPç;ÄF›hÏ)†±Ž¸û´‡Û }@[3°· Œ{¨[Æß 0YôíuÏB:ºåsûø™´²½­h¦qw3s‚ZK7;ìTW©¢ª£­©¶×S¾–ª–gÃ<27cÚy\×PFÆü!ê¹uOl⣔TÙ³i”´þ!hŒãÞ2Ìûåf Œz*r‚1éÙraÈߨUDDDDDD*ý ÷UDˆˆz*d•ÅÀÎ=öX£Å½k­¾u•C金Ÿ>ÒÏgø=k2䜑ۢڅÑàŠò–þ‰?<œÿ¬–µ±ãL¹ü]ƒ!¹Üä8½Tåü–Lû5ü!Öý)Oÿ]Êm¢"â@p7踎¸qœö¾0²JÙÂ骓‘­«Šø.Êc”Ó¹¤o)/{þa`/SÍ RÂÖ +£ÃùH#>ÿæ  #|•QÇ9Ÿ#ƒZßSœ-–x.§ŠŸÃ†—lq†8ŠŸ0€2ç}æ\’G_O 2""âì±Ùxš¾_'K^&‘Ødvú‡ì#rÔ£€d 6I Ï®át1åó€ º,ßáå”ðpïŒWÝù4¨…¹ÁÞcοBÒÖãÜç²Ẩâ74õ Àü•íáôÖGÇ­ i„¿§)ZâÐ3Èdh^ÜœÙöè¶ßV<çb‹­µfŸÑ– /Úš·îvæ=±>C å˳[ÊÐNçoOU¬^(Séš[\Í'tuÆÍ!Ò=ð:'ÄÇn"-=Ùør6 —<é MY«¨®Ôu—oV+„UÎc£ô­tm{ðy¼×s¸´t>YÏU°às´ìW%¬ol|\yÖPÌîbÊÀ[¾p×1¯ò!bÙÐðv'$® Â krr[EðÙw¢½pbÁ_odpÆøŸÎÆq'9/ÜîO19'æ²æhÏq€µ9ÆM]‡Šú®ÓV15=Ú¥¤3LŽ-wÈ´‚>jÓƒw=q²¢“?gî¨u«‰Wm=5Cc‚ól2FÒ7|ôÎçhü7L°ïì.Ó\gÕÖo)‘GÖi k1 Žó"Æ?°ö©iªk¦½ðuú%´®««’Ë5 ,±2)f {zs8ùmnrÑêT;á– —Kq ň–¾‚ã ØÈÄ7Ød7R+í·ˆx™¦î  «3 'ÔÇ3ÿÙVà”Tµi!±µÜÃ`c=—Ïâ‚áOq𱨫`«Š®)YI’™í1:FVÄÇòì@tnm¶Ë_ pÚ~²;ÅžŠðÈùc¬¦Š¡=@{†}÷^/4=Ÿˆ"¿O]é™ –'$ÇÅ £v¸˜5­½dŽn0i»S¹ š†ŽŠc_úKXâ=ú­¥ùÀ8‚Þƒ+øÃ¶LJ]XÁ]54PÖDKI,ò§cœG¡ä÷*&x0’ž:XèóTꇲ'çfÆi*DƒÉ&/÷Jز£Ú×´µÀF €Þ.¸Ví5©.ÞÑ÷Ú¨o¹Md^Yp‚IZ׌¿†L|Àì­ÿ |Kªáæ¿§’¤‘j¯‘´—IÒà<Ι„gå¶h¯¢º[i®6ú˜ªèªâlÔóDrÉááìA_Vب풨]ñ.@ç¶ ª"""""&sÑS¹êª™à}‘Žíî«èqº†z&zŒ*“ÐaaÏTõ•^u%=÷~¢g‡84ypÌÙžwïËÛ¿E­ºðN ÁÈÊÚ'†ˆMÀ=±½š 6þÛy¿ÍdU­?¥ŸéÎ#4[õÿ×Î?–Xû4XÃqÖÒÆ!¤ ù.SQ ¡;.;†ÿÖí¶Ç1?ÁE¿´Ní <ÒöW¸ýâ®òú¸Ùެ†1Çègoæ ÍC9Avîëù®¦Œ¸R³…â×ñ®ÏA’ÆVÑÜ(Ü 8q’Š`ÆägÁbsÌ$ààù/Ÿ*OýœÔ²ËÅëÅXfb§°ÊÇœùàåùìÇ)ì1œ×ºäˆºkó÷)ñ×ËwòZÝñà bñrph(œãê|†7ù4.ÏÓ¶ŸÄ=±î?ú fÙëˆ\ÉlŒ„ AÜFŽV†ŽÃ ªx~¥ °xÜÖÖš-”葉†6oë©äå¸å?‘ôS ºÌЊ†Àeoœæ—ù¾,§žë™8w¯óV§í”—Îê+MlM–›|ÁÍp'%¬.iù‚ÐBÖ÷gš1hŠˆdk%7ª]ñ‘¼˜?À•´àrŠŽ8=¾¥PlЪŒ •Pþj„|×ÏPK]ntƒ˜çØãü–¼üiiÛe–í¤æ²<>Øikèâw?9/†ãPé wsÍ1Û±ôQñ[¹Â~îÕW[F¤¨‘Ídy‚ÇÀ Šš(š=pÆu*s–Žþ¡q‘Ä6ÇRJðõ±–-w¨Ž Â"¢–C#ZpÖF €éÓqƒ‚µƒ¬ê磧—LÍ] ÜÀ䪒ÿ…Ãü'pwû)wörØ ¤á…ëPÉolu•×WBʧGñIq³;»CÌ;ƒé´¤_Yª9äÀ\›’¶Ã|z(ëãùÓ S†´ùO¹ÆFÀ;¨þEA½ Øe×6T¸6r§v ó•³ßÖèm| ÑÔ°01®µC;€ˤo˜ãõ.%_Ç¢"¦ýIú..À¥ÅªÈè8_ªë%w+"³Õƒ¾ñ¸ ~kTÏcœÈÛœì_@º aqoAÙ^Zû-—OêêG%òÏ÷#“ÑÂhÞ?ƒJ¶\÷4|$g•]Ü»GmãfЏÔÈb¼Ó²GžP÷†òø·[HkZ$qÀÏ1z,ãÖ–JŽ>ª0òh®ô³œt‹òýgòZòçsžâNëaÞ,­·p3ô‹¡c&¹\%”¿˜Ü1¹üšë„Ìó"s9œÜŽ îµâvºªãÇMq=e$t³6âaòÙÓ–&66»üM`q÷+0“ G°Ù3ñ G0[ðO†ø|´ËÍ÷ʲòIÉ™ÄsÇ—z`÷Y©äC²굯ãAí©ñ%«Ö61¦‹ ~")bܬ3UWÐ3ÐŒ®+.xC©Ž.=iØcŽj‡ÏÈN"sà‘»åÙåú«ßǶžzÇMꆆÒ¶çRÌ]-3€æ?ü9boøVPû lÐiÎ7jË]%3i顺I$0ðÆÇ‘#X äŠûDÚÛ…¯‡š‚—•ôóÃT€c!ííÛ¶À•8C,´üUѵC0j '©,ÂØŽ˜Ðµ:sŒZ‹RQËè»Å?™+pñ9—˜œçrsìì ÏˆÈimÞ 5Ãè"cË£§vä‚÷5’?$z¼»ó[-¶T2®ÛKWƒ£šHÒ:àþir¤¥¸[ê(k©a«¥¨ÑMÌdŒpÁkØ‚6ŠüAðÏ¡t~„â&¨¡}]d³Í=®ž €Ûqõ¤±ÀåÇ-Œ ó•˜ü-WP×ðH¾‚heŽBñì=»9§ß9ʸ8æm:Ç­?y€KE$Žføs$kK˜öžÄðèVª >–óDqµÔuŽ~Üï°–·Ô†˜^{€_Û;ßZ7ŽÜFÒºj‡M[®ð¾ÍDײ:*Š8dÍsÜ÷5Ùo3sŽÄôÛ¢ÍZ⇄{ýE®ŠÑ-¦J8.´ÑBæÁQaû±”lFXwm±Q ’zœ­ÅX(!µØè-´ùòi)£‚<õåcF~Võ4”öª™¢À‘¬<¤ôÏ@µýy£vœñ{FêfŠwMs†xqæNÎV»:G`ÿx­ƒy‘Ü«/ŽvÉoÖvèÍ,ÖJ¡Çâ{b.hü‚þ ¦l¾ tÛcææ™ä{y/ÿšÙ+cPQÑÕW‘SNÉÚ×–84‘‚9‡]º…¯ïºNÛî)Šk smw:f×Å“›îï2=¯Œ¹o0Ïïc²Ëþ øËWúN“‡·zˆŸo08PÉQ;c4¼€žF“øì ùz)ŒÙ§¯º®ØÝßä¸c${÷UØÅ¿R¹ƒÑUì2¨3ƒ²âZ2wp¹„zªöTqÇcù*gꪣ¿-YQcá=&Ÿ¡¨ϨkM<íÀ%ô¬ÎÛã1‘#º€7¹¸Éƒî¶³ÁVòð{F·bÅGû8ÿbÎÊë¨E äqØ®P1¼P¶`Èûgò[PnwϮʫ„›ãth낹tÀÝ:„÷U;¯+SÈú{mTnœ>*YžÑ KžHa#” ÉÛe¯Ï–ë…¿€†éKWOZÈ.ßxeS ekÝ©„@÷†ã…ÓNÀÈ‹Žùß êaĹ#Ÿ'ù. ‰žSíÁ8Àî¸Ú¦–‚®–¶žQÔÓÇ3dÜr9¯;éŒ÷[v1±Ò?-Èæß'+øÐkG†TyKC]Dᎇ° ÿ5­HÀ. ˆ'å²Ú„xÛ‡}#ÊÞ^jW¸ûþµû¬ªŠøÜ஢:ºãÄ7Hë…®²œKt®h}ã`i“Ìs@9 ‡gl(›"6·;ª´‘0 g#è§·€J¹&áÒÁÅ”÷§ò8ƒƒÍd€q°‹q¿Lák+ÄKn\{ÖòçÌÅÚXAÈ?Õ†³zráb“Ԫ˗àæÏ|a]¬û‡ô•aphŠóHâIÀÍnV~ûB®N’÷£ìÿq–&ÓÓÖU™Žy^éflf1·VŠv“ýð¾?³®åU¯VF8 ZÛC§c~x¤haèq´¯ëŽ¿C‡<@×Érã–·«–C!ý;Wœü •Ì`Ï k@ROÆL´÷œ-¹DÎHåm3£hÜÉEÍŒý‹z:½–ÝQe¯’C).tó¹àd´2VœŒuè¶Ï!ÄŽgÓß+X|t¸Ãwã·®¥{ <÷z–Æöœ‡µŽ,æÐògê¶IÃ9â©áΚ¨‚GÉ–ŠW1ïüNî}Õ¬^;´·‚Úè·'ÿ›—§ú³÷QÛìû¾×OdÖVŠz‰ ²ÙUHú&»g5³’ìüùòßÔ©­«$ƒG_ëä“Oh«”dã°¼­SÅ7•DøË#‘²¿8q9ik\À#÷ò=ÛéœüÊHð±²Uø&â¾çºé$ïwrØÅ Ÿ\8ýJËpz>¤Öé+=c·3ÐA)ß?Š6Ÿó\õ@.°Vœ,•`9¿ 唃·Ê&ÿnü§“;gÝm#ƒ®Õª¸s§î–˜ê1GD_—Àæ0Çhw_n·¯¸GUAKE#*‰h/Ç(pÜg=ˆþKYünÕZ³_WÖÕJ$m+䤧>W–|¶Ê÷Ê:`¼©5öhÑÔGm×77O= w«˜ÙÜáùHßÍLTEB{..é׿ºÆ qœû&;ìr;¯ïW!pñ [Fé3ú2×IK¶Ø%®›þw?U«Y)!¹÷ê¾Js‰˜î˜vVEà5Í–N1é[´ò:8hëÄÓ µ£êp$û>)Og3œÓXêdq.Ç /…€_ÅŒ{ç²ØPéÑW¶W6wߢ³¸Úe„z²Jp í³Õ9™ÆÇË>»( áž*‡ñÓHËeÅ·&—3”d×d`ô?Él¸l æåÁ=ð6UNéï…Cœª4œáØ'¶Ë–ë¦rZÎnr]Ð u+^Þ'õ ËTpk†—Êù|ÇVܵ !ÙÅcC1¹À Èö¨ìЏ €vSWì×l_ õ³ÚÓçš6¸öåå—Ç*``ãæ¸ì†rûC+ç£àM54. euúž †ÄÁÒÖªÀÉYAQÎÌ2Hšö;³ùûoÉlOÀÉ3pÝWÙòÉÛÕ¸µgeóÈœì ö\^Ç€R¢¯Ú18‡ºV›˜|wy$å?ÙˆþWñPËNÅ^£´ÒLâØ¤­Š7z4¼¶ûHöÉK9k˜>».nÎÝ1Ó*£ä¨q…ÖáÌìdü•·Åƒ\0Ôï}?Þ#m¦¤¾ ÒîvùNÈÀZ¯ i·Äæ»™¥£›çÿ|¯‰³óIÈÀ@'8Ç¢ö,”ܨî5 ÃCHê©e-qhÍk[ .Û8 Ǩæg38féKæx[€ o;œÞçpu޼LÑ6·€úÖÁ¸ý<Ûö17Ìõ?<-[rí¶î[Kð¼æ;ÃþŒ,qpÆHï“‘ù¬’‹ø£•ðpZɰM¥ìë¾ ÿµŽæ¿Îvú/œe¯iiÁÉDzØ7Šˆ*8)3)àlLeâ¥îåçd û47ø{,öÀpvKºîµuÅæsq§\J\Ó©.'`qÿIzDz3 kŽ>-ÇÉpÎàá}1ÆÞV»«vU´TÅQØÓÔ2CþþJPxïdÕ–Í%Yuo¥¥uS¤žWsÆMAc˜ÐþïÄn%»`òqó}œ±5¼MÔUåÌæŽÐØvæ>eD[Œö›üDzŽúî’Jo~¡šO2Z{•DO~sÌ[+?ÁI_×FÝ|ðŽ:"ö:y#=|ªy"Î=G&¾T`k‹2æ;ŸO¡ä¶ÝOq1ÙaºÜüˆ (…MO#¹£a‡;©¢Ôë –Ëžâ÷³.$îI%lëØš>h¡RI”Ùà=K¶-ÈÜû²²xó·5ÑßÿÁ»ˆÿ÷i_û9œÈ£â óù’[X×±À«v&•!øà÷ÁÁu,o!ÃOV`ŽÙ‰ÃüÖ°g§˜[áª>kéÜãr¸1®£Œ9 Úºù­àSboƒýdðÍÜËÀvÇw}ÒËE%¶¾ Jé¸;¢å{ùÞë s½OÝÙŸâ½½Pq`¬÷Œ…¯¿ʉx¿A5;_?Þ,qIË ‹|¯3› Ía$ö¬?EvšžX妨{$áÌ{\Zær=Ž@[ð­Åúm}¦a±Þk³©­ñ|bCñUÄ:JÓŸ‰ÃpëÐ÷Y»ö+µ·ª!>y‘£%í=–¾\¾êGSx‰á•ÿG6ñ¬–ÍRÂÖ‹|\õç9 åh ƒñd œ„âõvºq&ýtÒpÖÁf««3ÓÇYËæ‚ðüò’ç.ÀÎà 9øBã=‹‡:ñdºZª+'ªº6¢7@ö‚ccI9#a˲w+3Óø£°6ŒMWl¸Òˆg„NÒË£sry2Fç-À>ù!{´)ø[U Žy¯4ã2OAΓßÊsÎ~A\” 8AW†Ç­` ÍE%D#Ó«ã]4AеÔÍ©£Öšrxœ2Û”]?ÞÙ}°j53<Èu ¢Fwsk¢pü×ÉW­´]#œ+5†ž¦å?_s„“œ—Àx±Âö¼Gþt¯6ÿÿ‡q×›þû¨âÖçm»qÿUÜ-5ô•ô³:ÅQM+dàQÓƒ‡4pA0V¬ÆqÈÜÏ3˜f.‰¡ê 8öÝzöùßG ž-¥8}ÂÓü _0_Äz7|/vùÛ< mù)Ïöo€8uª˜ÝÙ·/Aä·þ÷*TÌw+“ZÒàà7×4E®ß´ áü~üm%¶švK~)6;l{÷Øú>ÏŽ_ôÇ{ 8麎\úýâ›?Ã+`6¼}Æ1é‘üWÒ„Õyüø¹‚sƒ°=º(=öuA/õCj<¶ÔÁftX$‡÷ˆƒ°=2Ÿ¢ÆA€A\e“ÀÛ;®m9ôÏÉX#+ä¶pGWWDþYbµÊXGPã€Е ¼1RÕÞ¸óh»Ì|ÎZÙ*f‘ì.o˜ãÈØ»l‘ºØhú*ï„ì©úÊ|ÕQyš¦O+OÜeÎ9)&v}?Víÿ‚Öç~ó‡žÒUò²Cúj¦6¾L•18ö܇ýDSìØ­x¨Ö´[™I7Cœƒ ùc榓wÙP€ê¢ÚS]U…µùÍmMEdò4´Ž1 ZïÊWì¢MK_lw -il Úä¿©[$ð€!€bƒG-({°?iÎ.?ÍeÅÒOë]¶Û./ø·Áê¢ÚK8m³BÒs’çÍ_&Û ŒÿÄ¢Ç ­ß¤¸‘`¥8}ö9Þ\ó†rÜ{†ãê¶Á§Ëb .Ï1§ŒŸŸ(_kŽJ¦Ø<Äv ~ìžÝ½Õý÷ Ÿ‹oªd‡c”Žê?ñ“ÂþÖ55}3?ôZñ7;¤òa礨yß/#“ûL#Üõ–ŽÔ;VO§õ%®¢Ýp€¸˜Þ߆F‚~8ÝÑì88pÛ¯¢’¾4Õ²ÿ¿†íUT3ÑSÛ¦¤sþ#¼¸–ã¨Àó±üջƿ £J2ºó£§“QÙZÇJiÙp4ɆÄ ŒØin\1œ8à,;Â=!.°â]‡II0§5•â:ƒ#]Í—Ê9@Ï7+{œ º­¬ÆZç~.Åc.6j­9pᮩ°Ûï¶Ú«•~™¹¾šš9ÚçLÖÓHÊFăÔuúek47tÛ?5´ÿTl à^¦c\Ñú*0ã“—·˜ïÝÊÿwá*‚@[ð±OЉ^xª˜Ñ–>Ý0pÛ .¯¨ZÔpÎ@ç©_ ŽýhǯE°ï0ÓCÀzAKQÓÔËU3¥i ™szÔž?ŠÏC˜tÆFýV±} {â™%™ òƒœ07Í“mÆ0;åxÓwJ}¬õ½´@ê·>};ÀÃâ-¨›˜€Á‡ûÛm¼uãrEÅíeÕ ©•—úæ¾f´4HECòàÃ=p²ÿn”ðÅ E;eò'©y Ü€é@>Ï.ÏÍ`9ÏÂ{lv[ ñ/Äj= jвJCgžßJÁQÈúPiHÈyÃKš:µk͵$FÝ­Àü”¿Ðþ-mºsGØ´ãt\µ-¶[à£lÏ»áÒ£ æ#ÉÛ<¿Å_Ö/Úª‡ÍºÙ.Ô3ÿêàts·ýâYü•Ũø«£8•ÀÞ ;M\\úªm/^úš9â1Íu4€Îý¦’û8À2k^߯·ã?ûªå#¸íÿq]{6ÓÕ=¢qZ¹3Í÷QJdw’×™;?’êR³ÓJßšþ\—˜j®1°g£_OFÓÿ]ÅEFŒ¸u·BÚnéH0ØìÔýE«ÐÖ.äÓÕNçäÃ×c²ŽšrŽ[ÏŠû=S©"ö[’M$ð¸ìÿ> À@  ^pìd0¨Æ%qÑzòåm¯¦k ’®Ih¦‰§É–âG)Àé zƒ²ïáV­ºhíUE|·Nèª)ä€Z~«I h¶J£_f¤¬xÏ $8ppø›ž ßÑ}Ì7uUãßKLñ·ã$­xéÿéš*¡9‘’[ ˆ4»>S˜Z;`ä;üEfŸ³¯MURh½E©ê &žåU-(øñqy;`4™çc°Û2±­ Æ,õùz.IÐnˆˆˆˆˆˆÑtTò>7Fæ¶F¼–»vÁÕ—ª8q¡5?—vÒ¶Ùac] ;cpnÇ«qÜ«ëŸ úóæÉ`™öº—HdÆ\Ö’OBFF=€Ùb{„ZÛt’Ãy¦lasaÇŽìÞvò¹»`ý+»pO‰öÈæ–M)Y4Èèß$ 8{;z+ñc»Û&ä¸ÛkhœAÚ¢GÓÜ…ç2øÍB¾ÊJW¶2÷4äìºê_+yÚÐH æüM9'›ªå æŒpÏp¾Ñ5MF$ï,§œ ?É{z_ôT·‚Ûì÷(h2’hXÇJ^#w–>3Ê?/1ßláyÑW¼Ñ0ç8î¾¹jžâÞWs–ž¤uÙ|uw Ì#XwÈøA\r‘€HÜ6<`†ŒarmÊRC¹Îùï·ýú¯>º¡óT½Îy$»sŽÛa|îypüʯv—ïõ_m,Í|d8Žlrã§Õqøcˉ.À’¾8ñ̺§×ÙÝ[ G.´l‹–jkÜŽ‘ß¿Ïd~X!I|ú·lz®Æôµ­ã–§Ïñ'¨"ÈÅ<4‘€LÓÆýÿÞÏÕ\~¨CxÈúŠi›9v˜«ž¡¥¼¦÷†F:ó~ÁíøÏ¦óÎ…îcý’7 аþÒëys¤þÐ/°þkáQ_ÆÔkÅŸêꬵt¶†ÓÖÇOS$NdR6ZÈß! se¬vã rú)hèšZ;· °5£ Ê§6ç#Õcœÿù>k#&E»œíƒ#3õÇOu<:AÇm')|oŠw<–€ZÂàqÐôïëÙl½=UQ­â¬­Ò×{}¹ð2ºªÝPÊsRòÈZâÎP^à(à'®Û-uø—¶Ué‹? ´}Sææ ÒŒª’7¸82jŠ™Ý Ë@vhXiLO³©ÍŽ;û¼ Òú¨ØùyÈ.o–Hn1ƒƒƒ×¿º™ð»õ,- §§²æìòŒ ôöPSí$ºM7´½”¼˜i-ªc{M3šãõ7òQ¢é<Ë{`¨’GM’V¸lÇs„{clSÁÅI<.¶P¸ïªŽQ釙¿ûP³‚é“<îÛeÁçm”.ûFªY&¡ÑT<ßTUsrŽÜòFýCù(óÁ™<ž,i’ÑÌçÜccG©vZ?šÚ¥’RÙh©žæ¹ñSÆÇô$4…ñkK…]³NÔÕÑ9¨høöóß§ÑB­e⟈ö­Ut´ÓVÚÌT“Rµâ…¹xcÜÞc’wéÓm—Œ|WqPÄúbÞÜïú:-ò;v8?M×׋ž$³%òØ%Éêê>Ÿ“‚î¦ñyÄFL]+ì0œ†>€=¶x?Å}QøÅ×ñ´4Û´”ŽÏ¥˜§Òaòú/±ž2uˆÚK6•w7B#˜rÿùӟຫüXÜ/ýÚí£t•y {é|ÂÞW ‰ŽárÒ>$íšJ†¦›Lð¿NÚ¤©ä’«î·¶9Ö†´ˆù>„ø·_E‹íjÙ)lZ^3ÊqÏÎ>Ûùc+¿îµüJ¢â%5-†×¨é¢’1UIFÖ‰ ÚYÎö¼¸9ü®#˜ï‚¾‹§8y‘Íþ—ÝŸÎOêè öÄ`z«]ºˆMµV^)´uú8i%¨}S¨ŸlˆEæ9ÅÎnCŸ|ãuŒÚO(¦ Û_á4Ü/ÓÎhk¡µSFæŒÄЈWCÿ]MØwÙc¯4¢¯º¾ Ö9̵Nö—»B?=Ö±³Êbs±Êã¾=6_ œ¦R@'ÅNÿº†íyÒ‹]lŽ–’É-!è@s§·¦øçü°¤ÐݤƒÐ:-dø›t.ㆾ|-p¥Ó–‘ñ|ÇpðX¤8€;lB倿ÿ_LDE;Žëæ©x{Á†µñ)_^ß º¹¢ž­¶æU $ gº<ôËN~Šæð U¸-£’Aú½@çHÐwä’š&ý3ÈwöQçÆ =7‰-c9"50ÈáŒ~±Ôñ:Cõyqú«“Ä…¼Z8qÁúS4’],Ú™ãøKÄnØæ#ß yŸ² N3òS¯ÅÖ†ºëÞi½Uj†‘õV+p¸V7<‡î¦®—“'~^\ò’N:o±Ãb½mÖ¥¼ô´³´l];žäçcá®ñÓ¶ß u„òyl|´n…‡áÎî~îp=ÖoÓÕü&án¾Öº®íAM=^•«¶~Œ‡3¹¢rÖ’ç‚<˜åæüGqŒ¯ìàçÖ甑æ[ÏC×’°uéÝI~1ÀêŽk¸Û¹~œ¯ Ï\ùZûTyt3Ñ;—šcGP0ÑÚgßöÂòè駬¬†’š3,óÈØâ`êç8à©*fx4²Ój ú«LVO÷x.×zÚ3?'7’d¤¦h~23ƒÊq‘Óª‡·kuM³QUÚkYu4•o¦™‘¼9­{Zà$w­¹hºaG£¬´m9[àŒîÆÑþK†µ4ãNU}êfÁis¤wF†Œ“ù¢G õLúų'£{ßnÎÇŽWÉPÉn{}ß0ëÝÁ^~(x7|ÕzTØèßQq·Ö²ª(|Ü—Äæ9²´Þþ¨^Wz¨k§ìõ5úªß§¥k©j*.0Ѹ=¸,/•¬Ü}V×hàŽ–ž*hA䉭`Ï£FÔÙÁÇ^Êݸ2y*ÞdØ–å£;ù¨ã–@x§LÂß,º—Ìt|ùÆü€Ÿ˜Œ;äà¥÷„‹WèÚ:•îŽGMFúÂñöò¾P;€ð>º,®3Ó|†;îª:"wDDDDDEC¸ =ÕFÃ'Ü¢*P<¶~à\|ˆ÷øzõÝ û |‚¡‰À|.?RWÅv¶As£}ÊŽŽ¾’A‡ÁQ ^ÇpF¯zá ïyuÓAiÉ^]Ì\ÊFâqŽ­ÁVËÂÿk]˜–ˆ‘ƒ÷K…Dc¿nr;ú/£Â æÙÒê@AúHüXWš|ðÅ­Ã/š¼÷ûõ?ÿ믖/ú$Nï3TêCvCC 7°'ÊÜûà|—¿Aá „ÔìÅCïõ‡™+ƒê5« iN p¯LÓyÝjyý©*ãûËÝótœÅ}º‡„¼4¿Ú¿F\ôE‘ô¡ÁÁ±R¶4úµÑò¹½OB±C᳃4os¢Ò w7A%lïåÌò±?| R\县†µ´vÙ ý}Åò±êÇ1®pùõX>ñág4/òáÓT·óŸ2–á)ú<µÝý;/¼bƒi4-Èrެäxÿ„•`^t¶¡µÞ_i¯²×ÁpýÝÐ;œú팪Ý4~¬µÚK\ôÍæŠßÌ÷šŠ)#‹˜ôÎd¯ôUXy\èW3+¼³†wêWˆ óe¸ÛÔÙû8®ÐGõNŸsÀ¨W±»åÌ-òÜ}0 G楾ÍÛrˆìFý{®h‹Z¾6ad¾'µ$t®t³LÚ æã£Í, ë·)ú«§ìó¦©ÿJZŠâÈÜiàÓï…òm†¾Jˆ Fþ¡üŠöþWE–žž§%}Í`É!§ßd§p{rI]o ûËNÀÆø›åŘÜî@ì¾ç˜ª¡v. Û9MÇMÖñ…W5'‡ýRæ°>:XÞK±ðº¥wäþ*'ø=¯oúu°– \ó$±¸Fq³¢pÉØí²Ø †Q0Їø++r×ÅÂ}bûkCê›aª|Må=DNÏBH鎘PSÆWÞ5ÎæžÝŒ·5Æ& “+ºdãñg„,ªF1ÓuE.¼\¥ŠÏ¤Ã `¬Žh³±{COæ?%6)€õÇžWaö*ý¢‘—ñÒÒÆg9@íþ±Sþ[¨ésä.iÀ¾Ëc> ]£©Û€L6+[9ÛÐæ9þk9.©õ]wñn3׺‚?hd¥üd´F$ò´ô. Â]<ûý³ë¿ÉaNÀù¸»¥"k¹sw¦vpz‚~¸[c‡ú¦t.ªúx*éd¦©²Ã+KÃÜŠÇ5| á=uÑ÷+†‹¢­­|L‰òÔI#ùƒF »Ø;»8;/¢—¼!¦Þ>iÒrOë)F?k>«ß‡‡ÚLZ+MÇÃk„mþêú›£´‹\Ý-cž,ÿÕ\¦tç;Ýý´s?ñŸ¹G— ç}·Üet;Fé Xc—JXÎbþSnˆŒœzuØ~Kæ—‡L f? ¬þ>‰?Ðæµ žQ¦îYÈÈê²{R;õZ²¤§óî4Ô­/•‘þnÂÛ¦’„SXâ§h‘>F0œ4<ü^«¿ \ø‰ÆþÅc_ÅÐð[IÂØáŸl€‚Ö|àœ^ž›/>AË(öÊ¿gÄÍ /Tíš/2;—3¡ À:ˆœ’y·€ Û9R_8;\-mø·Œ³Z¬m\v7ÝÐEüÊÃRcÊf=o„äÎç+èat‘Œã wôtLÞRÖ‘‚þû©?Ä}COsðƒbµÎÆ>fÓRÉLyžK .loÇÂÜäÝŽaÛ¥ãà‚‡×©Ï.jËìÌ|‡bæGO.ýp ’tîJ¾$j¤­ã–«©”÷Öïœï†4grNøÏòÙ\¾%o̺Õé \WJ+¥=ŽÃ ½³Ò0µŽsXÎl‚OÅœƒÓ¦ËÅAQWYOIE¦¨žFÃLsÞâÐrIÂÚ'hů€šÊßJÒêjM'YO1˹[LöäŸZ·1)îÀØw[‚ †:jH©ákÆ1£ Œ4€è:/ ‚FåaŸS¶/ú¹­œF~ëp2p긎ûÇü–û9*)Å«UѸ“;ê!™£l±¥¤õÿÚÊKq;‘œ3ÕαÖó\àyÉÂÕž¡dm¹8ÒS¸ u0Ýoæ¼È&– âžòIƒ˜áÔræ¥Ç„™«éü7ë9íÓBÚ¨ë« 8yýÊ2Ó¾Àd¿î¨¥]P*õ õA‚j§HÞƒ/Îà-4蘆RRÊZ_ ܧl†€p¼ÝeKOUn‰µ±¶J6HçÔ1Çg3ËxÁõ#*7ð“K:ÏâÆ¢¹Ñ©®Ö‰nìÈÃ9žÐøÆ6¯nß R­A,Úhè|oY`¦§cažÿmžF‚çKŽÞçù©Üˆ­û»¹eqÏ Ã?-Ö¿¼dÎj5õ=CÛË$°9Ä’9å.Rø»)çÁúcAÂÝ-j|±É-ºÏIE3˜r<Èàc]‘]ÝQ¢"""""&rˆˆˆˆˆˆˆˆˆ‹¢¡Œk¼æ†2S·? $EnkÝ1g×N³Ljj#[n«h51¹®-sHèæùo•.Þ -’Ü&u¯ˆÕ´”eß©†ªÌÙä`ôt•ÇÜ4|—u‚› µSÇ]¯k[rÈg’&ù/Ë kŽZàpI. ô~%…¸áá»[p×É­¥wôšÑ;ËUo¦“ž"7lc<™qëPi [^þJ/{ªv3ˆh%yÇ®ÍW6ƒÖšï„—ù%·Šý?pžÄô€<Æ\완c-ëŽË'Z|XqBš¬ËQz·×Fèü¿*¦Ý(;ü«ä9ß×t*ùÓþ1oQML.º^Õ[…­™ÐTÉÞüŒ¼d8Œü8ëÝeí'âO‡—èó5æK á º¤_\dK3OmŽÉ{škKÞ£ª²ÐIM_%<ï„:š@<ÎSÕ œ¸Ø«ª¿XÀúG¶Û…NqÊ}ú­lø™»T^8ù¬kjm•—'Óù€ò„p3´c²Í?gÝm®“ˆ;•Æ*8ã·Æ÷LàÖ9Ór{€×~k;ê.=è-=ca¯euE<^hc\b2Ð×AÈÆqЙÙa¶xЈÊã7L±µá¢A}-=/}:u÷Wþ–ñ‡Âêø›ÞŽýd—#˜ÉNÚˆ¾ŽÜÇêЯËgˆ~ \Xû·Æ\2>õ±cçÎÑ…uYµ¦†¼KEŸVØ+ü±Ž¾7sØ`s°W ÆáEl£ûÍÒ¶’‚ìyµ66‚q—:ùf]øÏ»l¾U^½²6Ld6)¼ÒÝÏ¢ø©øù ckÿ§6è²@VÈÿͪioj¨¡¦­²ê £ÅM(|u {aÎÛŽ£Ñ|š‡º#EÔÔÔiM3o´KR1;éã!ÎÜœO@\p:Ø3ÀüÕQqp%¤‚¼=qn}ÛB_-Aò1Õ¶ÊŠ~hñÎ âsrÜíöÊ×ÇŠ“j§ãåÂËu¦©–’Ùi¤¤ÐÎ"”C›!Í <’@œ‘Ì6+"ôkî²ÕÙm¶·ÃNÈè<ÞG²5ïóyÜ_ŒmÌNE%>Ïù§ý-©éÚÆ˜9i^÷8çâæ(é×ÙNŠ)›,Q½®ikÚÒÜàƒ¾Ë¿â-øpGäµýãÆ¬Vx„|L`ç ±ÓÂwÎKœ÷gò—ø(ïrËdkáÉ<"Fèxx)äoë)ࣅÎùS0ãéŸâ³Jù¦x‘‚zw\g!£pIì½|wOÞ +£cÁtvÊFÈ:àò'ÍXž`|¼oÓ1³“Ÿïs9Æ[Ì"yü–ÓãÇ–ÜtÀ£ûmÕqè‡sÐm²ª¡öê¸ï¶~YT/9ÛÓÕs9árTê6AŸR±‰ÙçƒÚÐÀ^l“´29\Z×ÂOäV¶ô=¶ºë®­6Û|.–¦ZȈ Œ¿<9Î#÷ZÐIömWAÖ>·NÇ;Üã#òáß~«Þ+Ž7;û¬?ã«îžµ@ç-5 ‚™¾åó0š×5AoÆpæ¼é‹CÛ†ìw;©¥ös0¾É¬føÿéT±ŒrìÇvëÛ®’–'5ÜØ o’µÍâ~ *xñÄ8a‘ÆhäpnÿpD÷tôŸ+ FÇ8ùl“Øî©C•Ùù‚¾¶†ùm Ç1!«á©w4§c²Íôwv·Ã!¨žžWUÑÅ {¥g™S™åkq ê2NGL¬­àÒ¦¢.Ô¶sHuH`víÇ“Iðuøs“¾þ¸õ¾&%ãeúf‚­¥góRÄs°s访öJ+-^’4”R›°ÜÞè±Ë'žZü ³†œ€ 8ÀV?#óxÇ¢aŒ³Ô4 8ô†-‡ø‘¹6ÛÀ½s3À<öZˆ78Þ_Õ7­niÆCþÚú˜!š&WAÏÌæí·!ûHÎG¢Ûg7âèpNvTsÕ¸ÂÂ>6&oþNÚ² 胼º§w[@üüÖ û8æ,ÕZ²3œIGÎ= ‡Ãø{)QÅùá´#“áÓõÎÇcú—uZÝÕôXáå†à<³þ»4ù@Iµ À.[ñ;ô˽U”NNT ðÛv£¤ðÉÄ/¼6IEQ<³GšÒDÔ~[H'bÇOÊ?ðÖÔÛç´Õ•Ìó_v¥¦s}ZùZÓü Ûºòu!®Ò×J&¼Féé%¯-'”–ˆ=Ö#²2âNÆ<È_34ÌÍ>[9yG˜ÐvÉ.v=ÖrP§‹u~;,?u`‘ð×ÑT9¹ß–& Œÿe§e5‘¹«¡sš9Ì~3Ó˜–»üZy²q9áüÍd‘FÖòØ÷c=7“E±Ù†ŸÐö[#aò~çGnh—Ì<ü£˜—9‰9$ànUÀÀùªïŸeTDDDDDDˆˆˆˆˆˆˆˆ}—û*¿²ë’7<îF_‘'ï5 ÚnGÕq4¤ž#¾øÿ%O»NÏê¥å™UÖ`óHǹÉö+/<¶qC@×i[á4Ž—Ñ×26½ô“´å¯õC›KK€ œˆ#«¼.ñŠÁ$¦:ËÕ3d,dÖÚ†KÎ;;ð»V/ÔÚgTi:ÆÓj; ÒÏ1ü,¬¦|\ß.`3ô_Þ§‰£ã¹9ïßò\èî÷*)ÛQG[<µüáìw)kØ‚:,Á¦üIkk}1‚äÚ;¡œ³OëFsÎAÀäg º¬G«.ó_õUÞýP&¹WMW hÀ‘åçR»¬z–ég³]-r†Ò\ü³RÃÝчò8{1ßšø.W Û•Sª«ê¥©™Àù’pÀô_*"úèk]HâáR—5í>cC±ÌÈôpÆA…ôÉzºV²š–¾åY=4 -Ž7ÎâvéÕP]'å`` cù/™÷ §Hçù§.ë¿ÏþkÓ²ê;¥º²:ºjÉéçáìš) èA#²Ï5ñY®ôÐ4·IáÔÔ¤ŒGr{›;hlÍÉÜŒžv¼ÿ ô?Šî_*!¤½A_`¨•ÄsL°7927p6îвUŸ‹\4»T6žƒ[Øå•Ã!®ªk2?Å…zµÁÍi¤dv*¨…qß¾I?«8É>€¯]^)¬2óz«©e<4T3Lé\vo+ zœàÜ•«î‰Êyù¹NŠ z쪊˜WÐqŒ`®Xõ.Cm‘S>‹ø¼¨Ž—Ãö²–\†šFv_ù íû¥AiØq;zeò8à’@<¡lÁÇ%Ðv;äµ·Xj®3U6¨!cLp“O¡œØæço˜Záœg¶Ù9c‰zêÃÃí)6£¿É+i[+!c"o3å•ÿ…3±;ökËYkkߎ7½S5$Õ›}C¤§q¿Ê’'E³·à;˜ÀsGUŒ/1ÒEq– ¥ž™„ä‘®pÇp sÝ|Í“.À9þ º €2×g”äíÛeëiz;mÎõCEr¬t•qGQPàHŠ2~'`v séSÂÝ=m:#BêšJ»]9Ž’Üe•õ1T;˜ÈZdiæÿ ‹20àâ6vRðÿ¥tÖ‹áµ.žÒïtÔ°TTjdùµ2yÏk¤y`߃•¤Œ†±­ý•þÐÝ'¨«¸ƒ®¤µÌû²ÁI]i-k#êªX2Ayø›ÐyCšN†|¿‚­±ð×ôœP\ŽžÍ]¶Ñ,¿«æ åÛÜÍÛ V…'ÿ÷ÁèœgþšáÔ~¦E²¶ã;ï¾Á_b±\k™Yq²Ûk+<¶Ï=rHÖþï38ö^£1æ—ouÚ7ÊÁ^9`¤›ÃÞ uDM$&–ZwIq†O½ÂÎv|±ò4²GrXð|ý⎀±¥·»}M½Î'ð|"p~dÀþ%7øÍå3ƒzáóÆ4åxp'á@꿽ض‹½<Ô´ÕwÕFd%N×µ®9x9$¢Ê3Ã¥“_ð×Kë-z}¢êƸ=µÙ|­Žg€÷ïñ†œe¿@rMó|á{8Gá+ZØh*p¹UÑ:¦å\ÈyŽ/†6Å嵜ØÉ9.{¶Îƒöp[DšŸY^Ènih)éFÿ®‘ÎÛÿ¨©Çõmß;$¡®ÍsC Œ‚¼m/§él“\%§pp«¨2ƒú¶à|$ì7^ÙØekÓÄ%TƒÅón&g²š:ë|­Žåˆ»-þ¡O=Ï'MQÒ}ùõæ:•Õo+¥1¸°¸ŒŸÝ^Â/"»ú眽Ç_’ÂÞ&­Ü8eK0~’—S[ÅžC*$©åÎóo‘Ýgð:úe7Uú¡Î{!8\AÞý$DDDD;uDDDD9Ï]‘q{C‡¡õ]E™Ï6G¸;®fÓ;îÒÉ‚_—{ê¾Ku 1?ï‚ßMOW#ye•5¯®HßÁ+è€Nê§f! Ë0áÌéO+ ^vãidà»ý`7 –Âã–ƒô]RÓ3”³¶WlQ1ƒfàõ+ŒðC8h–&HIo3A--'bGÈ•Ž/<á âS=w¬•Ä9Æš7S‚G¨Œ·>þ½Õ‘«¼$ð®íLE–;®¨ [é«Q>®dÅÄýhð^æ_£pÙ¬¢Bù=!ަ@Ã$µ¹Ë·ÆÛ+´½‚Ѧ,v+=º‘Á aÉ ÜI$žä’w+Ó'ÐEGçÔü‚yËÆÕúOLêêÐê{²óNÌ–2²²ydìK i÷+_<(ðRãG-=6›¬µM'Jš;œåñŸP%sÙù´¨×ÅÜAÓÔWé#Õ6Æžf6/‚±­þÔggŸî’Oî…4ÿ xÅW3i©øwª^ÿY·>í¾î”4£©ßE˜ø5oñ¥5=®ÇnÖªYjcŽz{¹ÿRd_‰ølNÞÍœ î§1 nNª¨Çe‰cyËË€ Žïê=VÊPÇO$f7Æà3‡í‘œgÑ}0´?âËNPr»¹èH3ÊyZVñ–Ú‹Ÿ.šrÛY¸WÏAO 1óVÉ-S[2ürX\‘øNp2 /nSiž%éËÍ,£Î¢¹Á)8È8›cЀv÷[Câ=îZSÚ©¡{§ª³ÕÂÆcg¹ð½ \•¬½ko¹‹E¦é;Ÿ•–ȈŒ431°` ¸[Îz©ãàÒ˜AÀ»+éë!òâ31³±Á¤J|ÎfZK‰ÛNÙÊÌÕ´”µÔsQVÓÅQMƒR[ê# “ü.÷ê;o°+\Ú‚¥õ·êú·óÏS$‡''.q?æ¾E°x~Ó­2 ä© wïríüæ¤e;ùጓ¹h%v4l=–«øÛcºiî,ê‹}â†jYMÒ¦hD$ŠI#ÓЂ×²ÇN'ïÕ\¼=Öš‹E]ÍÊÁv« •Ü­—ÉœÆ%hvy]Ž£æ²óÄ?*/±×Zõ=m¾8šq‰Àwí8™C²Oäî³N™ñuE Ù-ê×÷ÍgNÖÆ0æÇOW¸c‹pXqÕ uè¼§x±¬®¡¿Ú¯:b–[eƈi椨tsÂÉÊÐâî`âÜÇ/NŠ(ÉX<‘[œQÍÛ¢È^g¡ÿMzVK¤ŒeÑIiÞ4éw5¯ÔQ¶¢@AÏã“™Ý{g âžÅ¦m°¡d³ÒÁ"œ(#cDnRy@ híÓVN¼Õü.nŸL¿[iJê"5tQ>)‡’טÄqç”—Ûoªú*8ùÂ!ú§kHÃÞo-Iíœí¸ü×IÇN RÓMNÝuNß2GÖÒÕ‚ ‰Û!™ý¬LòËâS„–úñlƒP=üÀH*_K1„—¾?ÙÇáÇEoêON–Õz›LÖÚe¯‚Žú?¾²*°¹Žç€r·,•¯o„óuêE‡gñ™U.›Ô^¬ñAxg—ú"š•‡É~p${œ\ÃŽ@ý¬vYë…bÓ\IÓðÜh`­£šIÝ ©fÎikÈænăíÑeXÚÀÖŒ^àÆä•æ¸9Ù%®ê/eücjZk7øhÛ½¶Ê'Ò\®0Œùf6V;•þ¥À Fý1Ô¬á׆—Þ$ñ*˜Zh-Š‚áO%â£Îlbc!v7ܹÂ7;œ ÖÍêI-“âÓÊq=½PÐÞ£ª–ZšÉ%·2ž@Ð*YO d’±¼û´I-ì ×”ä™ä$äóÖˆ¶á‘ÉáßLãÀÚžsœü_}›È…ŸíŽç¦fGM—Ø3·Lcufq—@Úx‘ kôÍÊ$‘=Ô3ÈÞaISå½±Êßá.éé•®O:—‡:ù–ÓÉ d·RÔ·™áísÝò»»D­’Ï?gÞÑ÷ÊKs¼Øm·;µ¾ªA-dBo%a9k]–‡s0üXÎØÊ™ü­äò·Ë cl˜ úh½vŒÃtÒv øû²¦Ý ƒ±èæ¬[¯<,ðŸR²y(-séÊÉCd¶ÌYwbbvY`¡¢à§¬µU¬ªÑ„ÁM?“÷†[ß#—µÍ,æ™÷ †áu£m®Å¦nB¶8½Õ:•±rIÈò] n9]±pAÛ!JJQâïMXÙiŽÍEx†y[W e;åhÆÃ{OЬU|—ÄÅ5Ʀ;'[#œKþæúÉby]söЫ{úcƸÛ#vâK_ƒÎ×T\2ÁŒçs¶Á}ö‡õ Ζ’Š£ˆ•3ÍPÚvË4•æ(\]ËÌ÷;-`iÉ.=0OeuÐÛüUUQÅ4PkÆÄòCD—Äý°7kähÛ¸«Ý¥·x¾¡f!ƒP¹˜ä[•Ä^¹t„÷꺮¼mñ¤|Éu.¬¦…ÎÁÕÖ7ù,k[Êà$fÛœ8åÝz`ìéUN-Ý/ERΞeYaÎÝZìÿ5•x_â?@ë[“-5K`¸È#޽ÍÊòOÀÙÇâåÏ0+3¢"„ÿh.˜Žß]¦õ,¯«¬uM<õ”Fü8:67æ 8Ïp…àþÙ]Éa–£ô£ ò䇲 r¯ÅÐz)ç"6ƒ±erT%F/ºVjª5sÓvëÌtpÕER)"k¤Œ¹Ñ–dgÀ€ì``ú¨÷ÃïœRÕÏP4ÔÖX`sFo-u+¤æw)äk›“Ê'§lu _øpàÜ\-±\Eƪ+æìðk `c^#c? ‰$÷>e =–ÓgmX´Û©hþùW%mW•o›<‡/‘Þ®vJøõžésÒÕô6¼–k¬Œ޵¬ò¦nZAË ®ü%ËUÝ/{VIs¦¬òëé+%{*©Z€¸Æá‚wc²¾îüdâõží%v¯Õvúº\yÐUTÊÙp̱qÝK> ÅÄ‹§-÷mSp»^ën±ýäEY”Ñ;!­kw-Ü“œçeÕÆ}x»hiôõ›§šªë,4îpx{©£/ÍÍÊÐXÐ^pÖ¸øWâHu-€ÕÉ“I©sc”ÄyÈÝÄ=ä`cœÕµ 8Äí_Iú`þ‘®?u¨švf§8ø¢ø°céñç?6/[G„]Dú˜}Ö–zXŸL](ƒÌ’X§ß —•ÍÎ2àáò_f˜ð‡$’Mý)×T¹•@DË}<“éÇâv\#û‡²—ðõÁ-M+õ t÷~Vó>¢âçŹÜ3” »rUñoÐ|:Óæ»F‹°™¼ìÉ4ÖÆó·âåÇ(qIì:ôW5MöËi¡ç¬­¨£ŠG4`ÂYüŽRÐZ¯Š»Ä ­FZz½cO+à%Ž1C$¼ØpiÁcH={zgj_7§ªi ž¶âÆ€C™NèÉÏ6p×ãaÊNáY2xÆ£¤æm)$Îp“ýl ŽÛmŸÍ}†çŸW(…Úªåjª´ÒÖÁ!® ’fHcsj? òË]ðoœ·9*øhàÕ¯„úvç%Þ[µMÚ¥³KTèD?«`"&r‡;§3É9Ü»²ËžTx?9X§Žz%õ´W Mi·Ëp¬^]Eæjž\†>Õ²´9ÃÐŒzppRg´³]Ç-ê8LRÓDö¸18Œ¼´–™ F\Zq—}òˆˆ„ePgºeTî:.³!4µÄŸA²áÈà\æ‚Ië•Î6r·  䎫° DDDDDDDDDDDDDDDDDDDDDDDDDD]lÙqÈÏoeÌôÛN7Ê©ù*g8ì}J""*ÑU ¡Ï`?4Æù\d8i9ÆñÿWXÞ%X¨&yu-5’ÃF_$Ò‰N¸Ž1¶{(žíÉ*ˆŠ|ø¬ûß› q&ŠïSÏFü1J1õ©%ipû¿—“–œ¯µPº,sÆni>)Ëe~¢‚@ëdï›Ë%–Fðaæ9ùßð`c˜¯[†ü8Ñœ?§š'fŠÞj`‚*™÷9ÓˆCƒòN ¾7d휫À7¦UU0=ÀUÇ|¦Ê§Q29‹wÈé·æ¬ýqÂý­hå§Ô:ZÛTù2MC!Ô4ú‰[‡wÏ\zåG­UàöJc=N‰Ö<Îw7%Þ/‡ ó£Ücש=¢(.vd¶^ëÿH\é-ðAYV\OŸ3ck^ü Ë9;ïºöMŽQ>ñÃZ~*pòM4ú¸¨j™U U%\‘/c¾#Ê',/oQø½•áoƒZ“…ò]Ž¢®µÕ6Yž)~èçžpy˜îfŽRC1€O^«=T=Sî9zî¸;8 ã;{®mÍq{ÚZFZr=0°•g‡.YŸEz£Ó•Q:ÔÙ eSÞÚ—8Þ~bNZH Œ@ë…hÒp6 qM©ïÐ3P\oŸ¤è+„>dD<¾FHÒA ˆžÞBýa#8’¯<Î'lÁVwuÞ„ÑÐ1š·QQ['¨ Â^÷THÒì#Œ–äœcªÄz¿Ä–´y_uÓúЬãMU#¨iæhèæ:F—wý¬JŸw8­µ7 -5i†b*~g¾wsmÔd2Gl¯^$¸Ÿr¶ÌêÊáil§Ì¦–’ßç-ÉåËšF:oì;¼ñƒˆW·pÕ·bÎ@ǘçòÏ(pvpÎPN{õ^eÓ[k ÕSjµÖzL=²×Hü仂íÆ\ï—7ºó+.×±M-¡·*©¨‹ƒ].òÜî¿„íœû/¢›Nêûµ+«­Ö;Ím 'e)ª†ŠO(J÷±…Àr‡à'9#Õ}2è}i =CgÑwï2 R9ô’óG'âÇ.?tæ¾;’Ô—™bý`ºÜ»ÈÊzg¸´dnyA!§˜|Dcu’-Þ8µwŠ'A¥« ɹŽ^Øt®h=¶úôYO„¾ø½¦.t·wVéº'ùÍ{¡}d®|| ]ÈÎR3†à8瘩¡c¦ž’ÓMOSäùÌŒ <––³›¿($à}WÚºŽdBõ œl Ï©\‘S”swꨈˆˆˆˆˆˆˆˆˆˆˆˆ‡9ÛDDú"âàâvw(Ç`ªÞª¸DDDDDDDDDDLŒã#(w©ßTn2N?‚«ŽØ\H-g'rUX\NívßuͲ"§¾Uc¡e<ŽÍl<¹ywá¾rµ·â²§SÏ­I_ßK$7XßUn–šfÈÇÓy¯  Û—qƒ¾AXETUMš²˜éú!ÎÊ©+9ÉœàÑœôæ4cÐ/-ìh{äh-çÆG6FÉ}ˆ‡¡Â*×¥Ò¹œ„c¾A ·(‹‹NwÛ.Hˆˆˆ€åP’BséÙUPã* TTÛ8쪩¿²£›ÌwT•Jëž(çˆÇ+æžÎù/žšŠ:H#ðÆÖd÷ÀÆJ ™%…æÎ>ò±¶¨àæŸÕGf¹ºËr}Æ!´Ñ‚Ñ m‹$|ÎI'¯l+š¯CÚk l+tWÚîv¶©Æ@×c8 â¤áFóduN‡ÓE®9ÿèlYÎÝ2:½˜´ˆ‰‘FÍ#cäˆb6ËZ1_M6‘ÒtÖ›LY!‘ÐDßäÕöEd³EËåZh#åo-37ÎÛz¯µ±ÆÜòÆÑÌyŽS긶ÍË mæw3°Ñ¹ÛžÃò]ŠkZ0ÐôU ñ6\†é’'e@ÜîáôU uÝPì3•Ö2G]ÏuÈ2¹“ù#H# ä*¢*=Ü ¸ õ_< ©ŽræËùœ\NÓ¶Ž˜ÎùÊúQE– êèêYÏñº)œe®#ø¨«Ç ²_ïQÜ8{q´Úi|†Fë}q”FÙ2âéö5Ørü<½A9Ýc~øCÖµú…ôúÎ(-6¿ºÔ‘WOVÉ\gk‹"£|ŸÓðŒ;esèß2‰.´šªöèÛúÆÛ«(C r†ºHÜI!Í-pŒðz4º?që…7®kilÕ¹ª·N_-¶¸4†ÔBFû6æhèzdU‚È a$ï…1~νa˜¯œ?ª‰®`?¥iŸË’×a‘½¾½šG¦þªd2Zó##k\v.®m~Ñ?5UÅŽ.;´ó\‘q-v•ÈtD%SîUQû"&}‘3Êp >™]EÅ ü/öÏòUd$`üÉ]­9?ȪªìªˆŠ˜ÏPª6興ˆˆˆˆ¸ä»a±ï•ÉÞaŽg7Ü.-g.áî?5GµÝºw\yHìªyCƒî¸ñœcè6]£`\‘ "ùêå– ttóÎ׿Ë{c,€þÛ¹ˆ8èÜúßBâòFÁ¼Ë¨óÆïžíû?˜V—ø}§x—¤fÓz–æ2ž¢"54££ØOCìF8!FmSàβ›O1ú[Y2¾òÉÏ4w=;á=,çpxõÜ;Ñ«Úð³À~"ðÏŒuWkùµCm®„ÔRN%mKžA g3Zöò‘¹ v åK4D²"""""""&êŽÎ6 uTDEBê3쨲3òÊäˆp6i?%G¿—«Iù.¿?§êŸ]¿æ»‘PÌãGoeTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD Áç—|lÉ9ßÔ®hˆÑ€$ã¹îˆˆ˜ß(ˆˆˆˆˆˆˆˆˆˆˆˆˆ›ãݾpˆˆˆˆAõÂ"ë|,x ä0q²ìˆˆˆˆˆˆˆˆˆ™ßˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ€a|¢""""'tDDN舛åP “Ÿ^ʨˆˆˆˆˆŠ„dç$*¢ ô'uTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD; ª誈ˆˆˆˆˆˆˆú""""""""".ªo?õ‚/<ç““?‡¶sßÕv¢"""""!8¡éÕ1õT9Ûª¨ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ‹‹¶èªÝ÷UDDDDDDDDDDDDDDDDDEB ƒŒTDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDEBU1ÜÕ@Ǫª""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*ÐïßoeTDDDDDDDDDDDDDDD$Ç›ÛuBóÐ7uÇÌ~&Ùv¢""""*8ã '䄜g¢¨9‰œ"'TDʦÃ*¢""""""""""""""""""""""""""""""""""""""""""""""""""""""""¡h=¿$k@õU€ˆˆˆˆˆH$®³)èØÜOÓuÊ<‘— É6TiÜŒårDD\qÓ;ŸuÈ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" p'c•BïåБœ£KIøpW$DEGF À*÷DEÄñü qmљ"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""àèÚâ :'–=JäU0©Ê=Õ`8gmÛ;.Hˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ¿ÿÙOpenLP-2.4/tests/resources/service/0000755000175000017500000000000012657640341016366 5ustar raoulraoulOpenLP-2.4/tests/resources/service/serviceitem_image_1.osj0000644000175000017500000000105312657640340023002 0ustar raoulraoul[{"serviceitem": {"header": {"xml_version": null, "auto_play_slides_loop": false, "auto_play_slides_once": false, "will_auto_start": false, "title": "Images", "capabilities": [3, 1, 5, 6], "theme": -1, "background_audio": [], "icon": ":/plugins/plugin_images.png", "type": 2, "start_time": 0, "from_plugin": false, "media_length": 0, "data": "", "timed_slide_interval": 0, "audit": "", "search": "", "name": "images", "footer": [], "notes": "", "plugin": "images", "theme_overwritten": false, "end_time": 0, "processor": null}, "data": ["image_1.jpg"]}}] OpenLP-2.4/tests/resources/service/serviceitem_custom_1.osj0000644000175000017500000000127312657640340023236 0ustar raoulraoul[{"serviceitem": {"header": {"xml_version": null, "auto_play_slides_loop": false, "auto_play_slides_once": false, "will_auto_start": false, "title": "Test Custom", "capabilities": [2, 1, 5, 13, 8], "theme": null, "background_audio": [], "icon": ":/plugins/plugin_custom.png", "type": 1, "start_time": 0, "from_plugin": false, "media_length": 0, "data": "", "timed_slide_interval": 0, "audit": "", "search": "", "name": "custom", "footer": ["Test Custom Credits"], "notes": "", "plugin": "custom", "theme_overwritten": false, "end_time": 0, "processor": null}, "data": [{"verseTag": null, "raw_slide": "Slide 1", "title": "Slide 1"}, {"verseTag": null, "raw_slide": "Slide 2", "title": "Slide 2"}]}}]OpenLP-2.4/tests/resources/service/migrate_video_20_22.osd0000644000175000017500000000131612657640340022517 0ustar raoulraoul(lp1 (dp2 Vserviceitem p3 (dp4 Vheader p5 (dp6 Vxml_version p7 NsVauto_play_slides_loop p8 I00 sVauto_play_slides_once p9 I00 sVwill_auto_start p10 I01 sVtitle p11 VVLC p12 sVcapabilities p13 (lp14 I12 aI16 aI4 aI11 asVtheme p15 I-1 sVbackground_audio p16 (lp17 sVicon p18 V:/plugins/plugin_media.png p19 sVtype p20 I3 sVstart_time p21 I0 sVfrom_plugin p22 I00 sVmedia_length p23 I144 sVdata p24 V sVtimed_slide_interval p25 I0 sVaudit p26 V sVsearch p27 V sVname p28 Vmedia p29 sVfooter p30 (lp31 sVnotes p32 V sVplugin p33 g29 sVtheme_overwritten p34 I00 sVend_time p35 I0 ssg24 (lp36 (dp37 Vpath p38 V/home/tim/Videos/puppets p39 sVimage p40 V:/media/slidecontroller_multimedia.png p41 sg11 VMVI_3405.MOV p42 sassa.OpenLP-2.4/tests/resources/service/serviceitem_image_2.osj0000644000175000017500000000226312657640340023007 0ustar raoulraoul[{"serviceitem": {"header": {"xml_version": null, "auto_play_slides_loop": false, "auto_play_slides_once": false, "will_auto_start": false, "title": "Images", "capabilities": [3, 1, 5, 6], "theme": -1, "background_audio": [], "icon": ":/plugins/plugin_images.png", "type": 2, "start_time": 0, "from_plugin": false, "media_length": 0, "data": "", "timed_slide_interval": 0, "audit": "", "search": "", "name": "images", "footer": [], "notes": "", "plugin": "images", "theme_overwritten": false, "end_time": 0, "processor": null}, "data": [{"path": "/home/openlp/image_1.jpg", "title": "image_1.jpg"}]}}, {"serviceitem": {"header": {"xml_version": null, "auto_play_slides_loop": false, "auto_play_slides_once": false, "will_auto_start": false, "title": "Images", "capabilities": [3, 1, 5, 6], "theme": -1, "background_audio": [], "icon": ":/plugins/plugin_images.png", "type": 2, "start_time": 0, "from_plugin": false, "media_length": 0, "data": "", "timed_slide_interval": 0, "audit": "", "search": "", "name": "images", "footer": [], "notes": "", "plugin": "images", "theme_overwritten": false, "end_time": 0, "processor": null}, "data": [{"path": "/home/openlp/image_2.jpg", "title": "image_2.jpg"}]}}] OpenLP-2.4/tests/resources/service/serviceitem-dvd.osj0000644000175000017500000000130512657640340022173 0ustar raoulraoul[{"serviceitem": {"header": {"auto_play_slides_once": false, "data": "", "processor": "Automatic", "theme": -1, "theme_overwritten": false, "end_time": 672.069, "start_time": 654.375, "capabilities": [12, 18, 16, 4], "media_length": 17.694, "audit": "", "xml_version": null, "title": "First DVD Clip", "auto_play_slides_loop": false, "notes": "", "icon": ":/plugins/plugin_media.png", "type": 3, "background_audio": [], "plugin": "media", "from_plugin": false, "search": "", "will_auto_start": false, "name": "media", "footer": [], "timed_slide_interval": 0}, "data": [{"image": ":/media/slidecontroller_multimedia.png", "path": "optical:1:5:3:654375:672069:First DVD Clip:/dev/sr0", "title": "/dev/sr0"}]}}] OpenLP-2.4/tests/resources/service/serviceitem_image_3.osj0000644000175000017500000000140112657640340023001 0ustar raoulraoul[{"serviceitem": {"header": {"xml_version": null, "auto_play_slides_loop": false, "auto_play_slides_once": false, "will_auto_start": false, "title": "Images", "capabilities": [3, 1, 5, 6, 3, 1, 5, 6], "theme": -1, "background_audio": [], "icon": ":/plugins/plugin_images.png", "type": 2, "start_time": 0, "from_plugin": false, "media_length": 0, "data": "", "timed_slide_interval": 0, "audit": "", "search": "", "name": "images", "footer": [], "notes": "", "plugin": "images", "theme_overwritten": false, "end_time": 0, "processor": null}, "data": [{"path": "/home/tim/Pictures/Holiday_base/11 November/Holiday - Jon/IMG_7445.JPG", "title": "IMG_7445.JPG"}, {"path": "/home/tim/Pictures/Holiday_base/11 November/Holiday - Jon/IMG_7478.JPG", "title": "IMG_7478.JPG"}]}}]OpenLP-2.4/tests/resources/service/serviceitem-song-linked-audio.osj0000644000175000017500000000666512657640340024745 0ustar raoulraoul[{"serviceitem": {"header": {"will_auto_start": false, "title": "Amazing Grace", "audit": ["Amazing Grace", ["John Newton"], "", ""], "processor": null, "theme_overwritten": false, "start_time": 0, "auto_play_slides_loop": false, "plugin": "songs", "auto_play_slides_once": false, "from_plugin": false, "media_length": 0, "xml_version": "\nAmazing GraceJohn NewtonAmazing Grace! how sweet the sound
That saved a wretch like me;
I once was lost, but now am found,
Was blind, but now I see.
\u2019Twas grace that taught my heart to fear,
And grace my fears relieved;
How precious did that grace appear,
The hour I first believed!
Through many dangers, toils and snares
I have already come;
\u2019Tis grace that brought me safe thus far,
And grace will lead me home.
The Lord has promised good to me,
His word my hope secures;
He will my shield and portion be
As long as life endures.
Yes, when this heart and flesh shall fail,
And mortal life shall cease,
I shall possess within the veil
A life of joy and peace.
When we\u2019ve been there a thousand years,
Bright shining as the sun,
We\u2019ve no less days to sing God\u2019s praise
Than when we first begun.
", "timed_slide_interval": 0, "data": {"title": "amazing grace@", "authors": "John Newton"}, "type": 1, "background_audio": ["/home/tgc/.local/share/openlp/songs/audio/7/amazing_grace.mp3"], "theme": null, "footer": ["Amazing Grace", "Written by: John Newton"], "name": "songs", "capabilities": [2, 1, 5, 8, 9, 13, 15], "end_time": 0, "notes": "", "search": "", "icon": ":/plugins/plugin_songs.png"}, "data": [{"title": "Amazing Grace! how sweet the s", "verseTag": "V1", "raw_slide": "Amazing Grace! how sweet the sound\nThat saved a wretch like me;\nI once was lost, but now am found,\nWas blind, but now I see."}, {"title": "\u2019Twas grace that taught my hea", "verseTag": "V2", "raw_slide": "\u2019Twas grace that taught my heart to fear,\nAnd grace my fears relieved;\nHow precious did that grace appear,\nThe hour I first believed!"}, {"title": "Through many dangers, toils an", "verseTag": "V3", "raw_slide": "Through many dangers, toils and snares\nI have already come;\n\u2019Tis grace that brought me safe thus far,\nAnd grace will lead me home."}, {"title": "The Lord has promised good to ", "verseTag": "V4", "raw_slide": "The Lord has promised good to me,\nHis word my hope secures;\nHe will my shield and portion be\nAs long as life endures."}, {"title": "Yes, when this heart and flesh", "verseTag": "V5", "raw_slide": "Yes, when this heart and flesh shall fail,\nAnd mortal life shall cease,\nI shall possess within the veil\nA life of joy and peace."}, {"title": "When we\u2019ve been there a thousa", "verseTag": "V6", "raw_slide": "When we\u2019ve been there a thousand years,\nBright shining as the sun,\nWe\u2019ve no less days to sing God\u2019s praise\nThan when we first begun."}]}}] OpenLP-2.4/tests/resources/service/test.osz0000644000175000017500000001762212657640340020111 0ustar raoulraoulPK¨uDÛ}8  test.osj[{"openlp_core": {"service-theme": "Blue Burst", "lite-service": false}}, {"serviceitem": {"data": [{"raw_slide": "As safe a stronghold our God is still,\nA trusty shield and weapon;\nHe\u2019ll help us clear from all the ill\nThat hath us now o\u2019ertaken.\nThe ancient prince of hell\nHath risen with purpose fell;\nStrong mail of craft and power\nHe weareth in this hour;\nOn earth is not His fellow.", "title": "As safe a stronghold our God i", "verseTag": "V1"}, {"raw_slide": "With force of arms we nothing can,\nFull soon were we down-ridden;\nBut for us fights the proper Man,\nWhom God Himself hath bidden.\nAsk ye: Who is this same?\nChrist Jesus is His name,\nThe Lord Sabaoth\u2019s Son;\nHe, and no other one,\nShall conquer in the battle.", "title": "With force of arms we nothing ", "verseTag": "V2"}, {"raw_slide": "And were this world all devils o\u2019er,\nAnd watching to devour us,\nWe lay it not to heart so sore;\nNot they can overpower us.\nAnd let the prince of ill\nLook grim as e\u2019er he will,\nHe harms us not a whit;\nFor why? his doom is writ;\nA word shall quickly slay him.", "title": "And were this world all devils", "verseTag": "V3"}, {"raw_slide": "God\u2019s word, for all their craft and force,\nOne moment will not linger,\nBut, spite of hell, shall have its course;\n\u2019Tis written by His finger.\nAnd though they take our life,\nGoods, honour, children, wife,\nYet is their profit small:\nThese things shall vanish all;\nThe city of God remaineth.", "title": "God\u2019s word, for all their craf", "verseTag": "V4"}], "header": {"processor": null, "notes": "", "theme_overwritten": false, "will_auto_start": false, "type": 1, "timed_slide_interval": 0, "background_audio": [], "xml_version": "\nA Safe Stronghold Our God is StillMartin LutherAs safe a stronghold our God is still,
A trusty shield and weapon;
He\u2019ll help us clear from all the ill
That hath us now o\u2019ertaken.
The ancient prince of hell
Hath risen with purpose fell;
Strong mail of craft and power
He weareth in this hour;
On earth is not His fellow.
With force of arms we nothing can,
Full soon were we down-ridden;
But for us fights the proper Man,
Whom God Himself hath bidden.
Ask ye: Who is this same?
Christ Jesus is His name,
The Lord Sabaoth\u2019s Son;
He, and no other one,
Shall conquer in the battle.
And were this world all devils o\u2019er,
And watching to devour us,
We lay it not to heart so sore;
Not they can overpower us.
And let the prince of ill
Look grim as e\u2019er he will,
He harms us not a whit;
For why? his doom is writ;
A word shall quickly slay him.
God\u2019s word, for all their craft and force,
One moment will not linger,
But, spite of hell, shall have its course;
\u2019Tis written by His finger.
And though they take our life,
Goods, honour, children, wife,
Yet is their profit small:
These things shall vanish all;
The city of God remaineth.
", "plugin": "songs", "search": "", "data": {"title": "a safe stronghold our god is still@", "authors": "Martin Luther"}, "media_length": 0, "capabilities": [2, 1, 5, 8, 9, 13], "end_time": 0, "footer": ["A Safe Stronghold Our God is Still", "Martin Luther", ""], "audit": ["A Safe Stronghold Our God is Still", ["Martin Luther"], "", ""], "theme": null, "from_plugin": false, "name": "songs", "icon": ":/plugins/plugin_songs.png", "auto_play_slides_once": false, "start_time": 0, "title": "A Safe Stronghold Our God is Still", "auto_play_slides_loop": false}}}, {"serviceitem": {"data": [{"raw_slide": "All the way my saviour leads me,\nWhat have I to ask beside?\nCan I doubt His tender mercy,\nWho through life has been my guide?\nHeavenly peace, divinest comfort,\nHere by faith in Him to dwell,\nFor I know whate\u2019er befall me,\nJesus doeth all things well.", "title": "All the way my saviour leads m", "verseTag": "V1"}, {"raw_slide": "All the way my Saviour leads me,\nCheers each winding path I tread.\nGives me grace for every trial,\nFeeds me with the Living Bread.\nThough my weary steps may falter\nAnd my soul athirst may be,\nGushing from a Rock before me,\nLo! a spring of joy I see.", "title": "All the way my Saviour leads m", "verseTag": "V2"}, {"raw_slide": "And all the way my Saviour leads me,\nOh, the fullness of His love.\nPerfect rest to me is promised\nIn my Father\u2019s house above.\nAnd when my spirit clothed immortal\nWings its flight to realms of day,\nThis my song through endless ages,\nJesus led me all the way.", "title": "And all the way my Saviour lea", "verseTag": "V3"}], "header": {"processor": null, "notes": "", "theme_overwritten": false, "will_auto_start": false, "type": 1, "timed_slide_interval": 0, "background_audio": [], "xml_version": "\nAll the Way My Saviour Leads MeFanny CrosbyAll the way my saviour leads me,
What have I to ask beside?
Can I doubt His tender mercy,
Who through life has been my guide?
Heavenly peace, divinest comfort,
Here by faith in Him to dwell,
For I know whate\u2019er befall me,
Jesus doeth all things well.
All the way my Saviour leads me,
Cheers each winding path I tread.
Gives me grace for every trial,
Feeds me with the Living Bread.
Though my weary steps may falter
And my soul athirst may be,
Gushing from a Rock before me,
Lo! a spring of joy I see.
And all the way my Saviour leads me,
Oh, the fullness of His love.
Perfect rest to me is promised
In my Father\u2019s house above.
And when my spirit clothed immortal
Wings its flight to realms of day,
This my song through endless ages,
Jesus led me all the way.
", "plugin": "songs", "search": "", "data": {"title": "all the way my saviour leads me@", "authors": "Fanny Crosby"}, "media_length": 0, "capabilities": [2, 1, 5, 8, 9, 13], "end_time": 0, "footer": ["All the Way My Saviour Leads Me", "Fanny Crosby", ""], "audit": ["All the Way My Saviour Leads Me", ["Fanny Crosby"], "", ""], "theme": null, "from_plugin": false, "name": "songs", "icon": ":/plugins/plugin_songs.png", "auto_play_slides_once": false, "start_time": 0, "title": "All the Way My Saviour Leads Me", "auto_play_slides_loop": false}}}, {"serviceitem": {"data": [{"raw_slide": "{su}2:1{/su} And the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there:", "title": "{su}2:1{/su} And the thir", "verseTag": null}], "header": {"processor": null, "notes": "", "theme_overwritten": false, "will_auto_start": false, "type": 1, "timed_slide_interval": 0, "background_audio": [], "xml_version": null, "plugin": "bibles", "search": "", "data": "", "media_length": 0, "capabilities": [1, 5, 14], "end_time": 0, "footer": ["John 2:1", "ASV, Public Domain"], "audit": "", "theme": null, "from_plugin": false, "name": "bibles", "icon": ":/plugins/plugin_bibles.png", "auto_play_slides_once": false, "start_time": 0, "title": "John 2:1 (ASV)", "auto_play_slides_loop": false}}}]PK¨uDÛ}8  €test.osjPK6FOpenLP-2.4/tests/functional/0000755000175000017500000000000012657640341015056 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_ui/0000755000175000017500000000000012657640341020060 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_ui/test_listpreviewwidget.py0000644000175000017500000000501212657640340025247 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.listpreviewwidget package. """ from unittest import TestCase from openlp.core.ui.listpreviewwidget import ListPreviewWidget from tests.functional import patch class TestListPreviewWidget(TestCase): def setUp(self): """ Mock out stuff for all the tests """ self.setup_patcher = patch('openlp.core.ui.listpreviewwidget.ListPreviewWidget._setup') self.mocked_setup = self.setup_patcher.start() self.addCleanup(self.setup_patcher.stop) def new_list_preview_widget_test(self): """ Test that creating an instance of ListPreviewWidget works """ # GIVEN: A ListPreviewWidget class # WHEN: An object is created list_preview_widget = ListPreviewWidget(None, 1) # THEN: The object is not None, and the _setup() method was called. self.assertIsNotNone(list_preview_widget, 'The ListPreviewWidget object should not be None') self.mocked_setup.assert_called_with(1) OpenLP-2.4/tests/functional/openlp_core_ui/test_advancedtab.py0000644000175000017500000000612712657640340023732 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.advancedtab package. """ from unittest import TestCase from openlp.core.common import Registry from openlp.core.ui.advancedtab import AdvancedTab from openlp.core.ui.settingsform import SettingsForm from tests.helpers.testmixin import TestMixin class TestAdvancedTab(TestCase, TestMixin): def setUp(self): """ Set up a few things for the tests """ Registry.create() def test_creation(self): """ Test that Advanced Tab is created. """ # GIVEN: A new Advanced Tab settings_form = SettingsForm(None) # WHEN: I create an advanced tab advanced_tab = AdvancedTab(settings_form) # THEN: self.assertEqual("Advanced", advanced_tab.tab_title, 'The tab title should be Advanced') def test_change_search_as_type(self): """ Test that when search as type is changed custom and song configs are updated """ # GIVEN: A new Advanced Tab settings_form = SettingsForm(None) advanced_tab = AdvancedTab(settings_form) # WHEN: I change search as type check box advanced_tab.on_search_as_type_check_box_changed(True) # THEN: we should have two post save processed to run self.assertEqual(2, len(settings_form.processes), 'Two post save processes should be created') self.assertTrue("songs_config_updated" in settings_form.processes, 'The songs plugin should be called') self.assertTrue("custom_config_updated" in settings_form.processes, 'The custom plugin should be called') OpenLP-2.4/tests/functional/openlp_core_ui/test_slidecontroller.py0000644000175000017500000011111712657640340024676 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.slidecontroller package. """ from PyQt5 import QtCore, QtGui from unittest import TestCase from openlp.core import Registry from openlp.core.lib import ServiceItemAction from openlp.core.ui import SlideController, LiveController, PreviewController from openlp.core.ui.slidecontroller import InfoLabel, WIDE_MENU, NON_TEXT_MENU from tests.functional import MagicMock, patch class TestSlideController(TestCase): def initial_slide_controller_test(self): """ Test the initial slide controller state . """ # GIVEN: A new SlideController instance. slide_controller = SlideController(None) # WHEN: the default controller is built. # THEN: The controller should not be a live controller. self.assertEqual(slide_controller.is_live, False, 'The base slide controller should not be a live controller') def text_service_item_blank_test(self): """ Test that loading a text-based service item into the slide controller sets the correct blank menu """ # GIVEN: A new SlideController instance. slide_controller = SlideController(None) service_item = MagicMock() toolbar = MagicMock() toolbar.set_widget_visible = MagicMock() slide_controller.toolbar = toolbar slide_controller.service_item = service_item # WHEN: a text based service item is used slide_controller.service_item.is_text = MagicMock(return_value=True) slide_controller.set_blank_menu() # THEN: the call to set the visible items on the toolbar should be correct toolbar.set_widget_visible.assert_called_with(WIDE_MENU, True) def non_text_service_item_blank_test(self): """ Test that loading a non-text service item into the slide controller sets the correct blank menu """ # GIVEN: A new SlideController instance. slide_controller = SlideController(None) service_item = MagicMock() toolbar = MagicMock() toolbar.set_widget_visible = MagicMock() slide_controller.toolbar = toolbar slide_controller.service_item = service_item # WHEN a non text based service item is used slide_controller.service_item.is_text = MagicMock(return_value=False) slide_controller.set_blank_menu() # THEN: then call set up the toolbar to blank the display screen. toolbar.set_widget_visible.assert_called_with(NON_TEXT_MENU, True) @patch('openlp.core.ui.slidecontroller.Settings') def receive_spin_delay_test(self, MockedSettings): """ Test that the spin box is updated accordingly after a call to receive_spin_delay() """ # GIVEN: A new SlideController instance. mocked_value = MagicMock(return_value=1) MockedSettings.return_value = MagicMock(value=mocked_value) mocked_delay_spin_box = MagicMock() slide_controller = SlideController(None) slide_controller.delay_spin_box = mocked_delay_spin_box # WHEN: The receive_spin_delay() method is called slide_controller.receive_spin_delay() # THEN: The Settings()value() and delay_spin_box.setValue() methods should have been called correctly mocked_value.assert_called_with('core/loop delay') mocked_delay_spin_box.setValue.assert_called_with(1) def toggle_display_blank_test(self): """ Check that the toggle_display('blank') method calls the on_blank_display() method """ # GIVEN: A new SlideController instance. mocked_on_blank_display = MagicMock() mocked_on_theme_display = MagicMock() mocked_on_hide_display = MagicMock() slide_controller = SlideController(None) slide_controller.on_blank_display = mocked_on_blank_display slide_controller.on_theme_display = mocked_on_theme_display slide_controller.on_hide_display = mocked_on_hide_display # WHEN: toggle_display() is called with an argument of "blank" slide_controller.toggle_display('blank') # THEN: Only on_blank_display() should have been called with an argument of True mocked_on_blank_display.assert_called_once_with(True) self.assertEqual(0, mocked_on_theme_display.call_count, 'on_theme_display should not have been called') self.assertEqual(0, mocked_on_hide_display.call_count, 'on_hide_display should not have been called') def toggle_display_hide_test(self): """ Check that the toggle_display('hide') method calls the on_blank_display() method """ # GIVEN: A new SlideController instance. mocked_on_blank_display = MagicMock() mocked_on_theme_display = MagicMock() mocked_on_hide_display = MagicMock() slide_controller = SlideController(None) slide_controller.on_blank_display = mocked_on_blank_display slide_controller.on_theme_display = mocked_on_theme_display slide_controller.on_hide_display = mocked_on_hide_display # WHEN: toggle_display() is called with an argument of "hide" slide_controller.toggle_display('hide') # THEN: Only on_blank_display() should have been called with an argument of True mocked_on_blank_display.assert_called_once_with(True) self.assertEqual(0, mocked_on_theme_display.call_count, 'on_theme_display should not have been called') self.assertEqual(0, mocked_on_hide_display.call_count, 'on_hide_display should not have been called') def toggle_display_theme_test(self): """ Check that the toggle_display('theme') method calls the on_theme_display() method """ # GIVEN: A new SlideController instance. mocked_on_blank_display = MagicMock() mocked_on_theme_display = MagicMock() mocked_on_hide_display = MagicMock() slide_controller = SlideController(None) slide_controller.on_blank_display = mocked_on_blank_display slide_controller.on_theme_display = mocked_on_theme_display slide_controller.on_hide_display = mocked_on_hide_display # WHEN: toggle_display() is called with an argument of "theme" slide_controller.toggle_display('theme') # THEN: Only on_theme_display() should have been called with an argument of True mocked_on_theme_display.assert_called_once_with(True) self.assertEqual(0, mocked_on_blank_display.call_count, 'on_blank_display should not have been called') self.assertEqual(0, mocked_on_hide_display.call_count, 'on_hide_display should not have been called') def toggle_display_desktop_test(self): """ Check that the toggle_display('desktop') method calls the on_hide_display() method """ # GIVEN: A new SlideController instance. mocked_on_blank_display = MagicMock() mocked_on_theme_display = MagicMock() mocked_on_hide_display = MagicMock() slide_controller = SlideController(None) slide_controller.on_blank_display = mocked_on_blank_display slide_controller.on_theme_display = mocked_on_theme_display slide_controller.on_hide_display = mocked_on_hide_display # WHEN: toggle_display() is called with an argument of "desktop" slide_controller.toggle_display('desktop') # THEN: Only on_hide_display() should have been called with an argument of True mocked_on_hide_display.assert_called_once_with(True) self.assertEqual(0, mocked_on_blank_display.call_count, 'on_blank_display should not have been called') self.assertEqual(0, mocked_on_theme_display.call_count, 'on_theme_display should not have been called') def toggle_display_show_test(self): """ Check that the toggle_display('show') method calls all the on_X_display() methods """ # GIVEN: A new SlideController instance. mocked_on_blank_display = MagicMock() mocked_on_theme_display = MagicMock() mocked_on_hide_display = MagicMock() slide_controller = SlideController(None) slide_controller.on_blank_display = mocked_on_blank_display slide_controller.on_theme_display = mocked_on_theme_display slide_controller.on_hide_display = mocked_on_hide_display # WHEN: toggle_display() is called with an argument of "show" slide_controller.toggle_display('show') # THEN: All the on_X_display() methods should have been called with an argument of False mocked_on_blank_display.assert_called_once_with(False) mocked_on_theme_display.assert_called_once_with(False) mocked_on_hide_display.assert_called_once_with(False) def live_escape_test(self): """ Test that when the live_escape() method is called, the display is set to invisible and any media is stopped """ # GIVEN: A new SlideController instance and mocked out display and media_controller mocked_display = MagicMock() mocked_media_controller = MagicMock() Registry.create() Registry().register('media_controller', mocked_media_controller) slide_controller = SlideController(None) slide_controller.display = mocked_display play_slides = MagicMock() play_slides.isChecked.return_value = False slide_controller.play_slides_loop = play_slides slide_controller.play_slides_once = play_slides # WHEN: live_escape() is called slide_controller.live_escape() # THEN: the display should be set to invisible and the media controller stopped mocked_display.setVisible.assert_called_once_with(False) mocked_media_controller.media_stop.assert_called_once_with(slide_controller) def on_go_live_live_controller_test(self): """ Test that when the on_go_live() method is called the message is sent to the live controller and focus is set correctly. """ # GIVEN: A new SlideController instance and plugin preview then pressing go live should respond mocked_display = MagicMock() mocked_live_controller = MagicMock() mocked_preview_widget = MagicMock() mocked_service_item = MagicMock() mocked_service_item.from_service = False mocked_preview_widget.current_slide_number.return_value = 1 mocked_preview_widget.slide_count.return_value = 2 mocked_live_controller.preview_widget = MagicMock() Registry.create() Registry().register('live_controller', mocked_live_controller) slide_controller = SlideController(None) slide_controller.service_item = mocked_service_item slide_controller.preview_widget = mocked_preview_widget slide_controller.display = mocked_display # WHEN: on_go_live() is called slide_controller.on_go_live() # THEN: the live controller should have the service item and the focus set to live mocked_live_controller.add_service_manager_item.assert_called_once_with(mocked_service_item, 1) mocked_live_controller.preview_widget.setFocus.assert_called_once_with() def on_go_live_service_manager_test(self): """ Test that when the on_go_live() method is called the message is sent to the live controller and focus is set correctly. """ # GIVEN: A new SlideController instance and service manager preview then pressing go live should respond mocked_display = MagicMock() mocked_service_manager = MagicMock() mocked_live_controller = MagicMock() mocked_preview_widget = MagicMock() mocked_service_item = MagicMock() mocked_service_item.from_service = True mocked_service_item.unique_identifier = 42 mocked_preview_widget.current_slide_number.return_value = 1 mocked_preview_widget.slide_count.return_value = 2 mocked_live_controller.preview_widget = MagicMock() Registry.create() Registry().register('live_controller', mocked_live_controller) Registry().register('service_manager', mocked_service_manager) slide_controller = SlideController(None) slide_controller.service_item = mocked_service_item slide_controller.preview_widget = mocked_preview_widget slide_controller.display = mocked_display # WHEN: on_go_live() is called slide_controller.on_go_live() # THEN: the service manager should have the service item and the focus set to live mocked_service_manager.preview_live.assert_called_once_with(42, 1) mocked_live_controller.preview_widget.setFocus.assert_called_once_with() def service_previous_test(self): """ Check that calling the service_previous() method adds the previous key to the queue and processes the queue """ # GIVEN: A new SlideController instance. mocked_keypress_queue = MagicMock() mocked_process_queue = MagicMock() slide_controller = SlideController(None) slide_controller.keypress_queue = mocked_keypress_queue slide_controller._process_queue = mocked_process_queue # WHEN: The service_previous() method is called slide_controller.service_previous() # THEN: The keypress is added to the queue and the queue is processed mocked_keypress_queue.append.assert_called_once_with(ServiceItemAction.Previous) mocked_process_queue.assert_called_once_with() def service_next_test(self): """ Check that calling the service_next() method adds the next key to the queue and processes the queue """ # GIVEN: A new SlideController instance and mocked out methods mocked_keypress_queue = MagicMock() mocked_process_queue = MagicMock() slide_controller = SlideController(None) slide_controller.keypress_queue = mocked_keypress_queue slide_controller._process_queue = mocked_process_queue # WHEN: The service_next() method is called slide_controller.service_next() # THEN: The keypress is added to the queue and the queue is processed mocked_keypress_queue.append.assert_called_once_with(ServiceItemAction.Next) mocked_process_queue.assert_called_once_with() @patch('openlp.core.ui.slidecontroller.Settings') def update_slide_limits_test(self, MockedSettings): """ Test that calling the update_slide_limits() method updates the slide limits """ # GIVEN: A mocked out Settings object, a new SlideController and a mocked out main_window mocked_value = MagicMock(return_value=10) MockedSettings.return_value = MagicMock(value=mocked_value) mocked_main_window = MagicMock(advanced_settings_section='advanced') Registry.create() Registry().register('main_window', mocked_main_window) slide_controller = SlideController(None) # WHEN: update_slide_limits() is called slide_controller.update_slide_limits() # THEN: The value of slide_limits should be 10 mocked_value.assert_called_once_with('advanced/slide limits') self.assertEqual(10, slide_controller.slide_limits, 'Slide limits should have been updated to 10') def enable_tool_bar_live_test(self): """ Check that when enable_tool_bar on a live slide controller is called, enable_live_tool_bar is called """ # GIVEN: Mocked out enable methods and a real slide controller which is set to live mocked_enable_live_tool_bar = MagicMock() mocked_enable_preview_tool_bar = MagicMock() slide_controller = SlideController(None) slide_controller.is_live = True slide_controller.enable_live_tool_bar = mocked_enable_live_tool_bar slide_controller.enable_preview_tool_bar = mocked_enable_preview_tool_bar mocked_service_item = MagicMock() # WHEN: enable_tool_bar() is called slide_controller.enable_tool_bar(mocked_service_item) # THEN: The enable_live_tool_bar() method is called, not enable_preview_tool_bar() mocked_enable_live_tool_bar.assert_called_once_with(mocked_service_item) self.assertEqual(0, mocked_enable_preview_tool_bar.call_count, 'The preview method should not have been called') def enable_tool_bar_preview_test(self): """ Check that when enable_tool_bar on a preview slide controller is called, enable_preview_tool_bar is called """ # GIVEN: Mocked out enable methods and a real slide controller which is set to live mocked_enable_live_tool_bar = MagicMock() mocked_enable_preview_tool_bar = MagicMock() slide_controller = SlideController(None) slide_controller.is_live = False slide_controller.enable_live_tool_bar = mocked_enable_live_tool_bar slide_controller.enable_preview_tool_bar = mocked_enable_preview_tool_bar mocked_service_item = MagicMock() # WHEN: enable_tool_bar() is called slide_controller.enable_tool_bar(mocked_service_item) # THEN: The enable_preview_tool_bar() method is called, not enable_live_tool_bar() mocked_enable_preview_tool_bar.assert_called_once_with(mocked_service_item) self.assertEqual(0, mocked_enable_live_tool_bar.call_count, 'The live method should not have been called') def refresh_service_item_text_test(self): """ Test that the refresh_service_item() method refreshes a text service item """ # GIVEN: A mock service item and a fresh slide controller mocked_service_item = MagicMock() mocked_service_item.is_text.return_value = True mocked_service_item.is_image.return_value = False mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller.service_item = mocked_service_item slide_controller._process_item = mocked_process_item slide_controller.selected_row = 5 # WHEN: The refresh_service_item method() is called slide_controller.refresh_service_item() # THEN: The item should be re-processed mocked_service_item.is_text.assert_called_once_with() self.assertEqual(0, mocked_service_item.is_image.call_count, 'is_image should not have been called') mocked_service_item.render.assert_called_once_with() mocked_process_item.assert_called_once_with(mocked_service_item, 5) def refresh_service_item_image_test(self): """ Test that the refresh_service_item() method refreshes a image service item """ # GIVEN: A mock service item and a fresh slide controller mocked_service_item = MagicMock() mocked_service_item.is_text.return_value = False mocked_service_item.is_image.return_value = True mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller.service_item = mocked_service_item slide_controller._process_item = mocked_process_item slide_controller.selected_row = 5 # WHEN: The refresh_service_item method() is called slide_controller.refresh_service_item() # THEN: The item should be re-processed mocked_service_item.is_text.assert_called_once_with() mocked_service_item.is_image.assert_called_once_with() mocked_service_item.render.assert_called_once_with() mocked_process_item.assert_called_once_with(mocked_service_item, 5) def refresh_service_item_not_image_or_text_test(self): """ Test that the refresh_service_item() method does not refresh a service item if it's neither text or an image """ # GIVEN: A mock service item and a fresh slide controller mocked_service_item = MagicMock() mocked_service_item.is_text.return_value = False mocked_service_item.is_image.return_value = False mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller.service_item = mocked_service_item slide_controller._process_item = mocked_process_item slide_controller.selected_row = 5 # WHEN: The refresh_service_item method() is called slide_controller.refresh_service_item() # THEN: The item should be re-processed mocked_service_item.is_text.assert_called_once_with() mocked_service_item.is_image.assert_called_once_with() self.assertEqual(0, mocked_service_item.render.call_count, 'The render() method should not have been called') self.assertEqual(0, mocked_process_item.call_count, 'The mocked_process_item() method should not have been called') def add_service_item_with_song_edit_test(self): """ Test the add_service_item() method when song_edit is True """ # GIVEN: A slide controller and a new item to add mocked_item = MagicMock() mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller._process_item = mocked_process_item slide_controller.song_edit = True slide_controller.selected_row = 2 # WHEN: The item is added to the service slide_controller.add_service_item(mocked_item) # THEN: The item is processed, the slide number is correct, and the song is not editable (or something) mocked_item.render.assert_called_once_with() self.assertFalse(slide_controller.song_edit, 'song_edit should be False') mocked_process_item.assert_called_once_with(mocked_item, 2) def add_service_item_without_song_edit_test(self): """ Test the add_service_item() method when song_edit is False """ # GIVEN: A slide controller and a new item to add mocked_item = MagicMock() mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller._process_item = mocked_process_item slide_controller.song_edit = False slide_controller.selected_row = 2 # WHEN: The item is added to the service slide_controller.add_service_item(mocked_item) # THEN: The item is processed, the slide number is correct, and the song is not editable (or something) mocked_item.render.assert_called_once_with() self.assertFalse(slide_controller.song_edit, 'song_edit should be False') mocked_process_item.assert_called_once_with(mocked_item, 0) def replace_service_manager_item_different_items_test(self): """ Test that when the service items are not the same, nothing happens """ # GIVEN: A slide controller and a new item to add mocked_item = MagicMock() mocked_preview_widget = MagicMock() mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller.preview_widget = mocked_preview_widget slide_controller._process_item = mocked_process_item slide_controller.service_item = None # WHEN: The service item is replaced slide_controller.replace_service_manager_item(mocked_item) # THEN: The service item should not be processed self.assertEqual(0, mocked_process_item.call_count, 'The _process_item() method should not have been called') self.assertEqual(0, mocked_preview_widget.current_slide_number.call_count, 'The preview_widgetcurrent_slide_number.() method should not have been called') def replace_service_manager_item_same_item_test(self): """ Test that when the service item is the same, the service item is reprocessed """ # GIVEN: A slide controller and a new item to add mocked_item = MagicMock() mocked_preview_widget = MagicMock() mocked_preview_widget.current_slide_number.return_value = 7 mocked_process_item = MagicMock() slide_controller = SlideController(None) slide_controller.preview_widget = mocked_preview_widget slide_controller._process_item = mocked_process_item slide_controller.service_item = mocked_item # WHEN: The service item is replaced slide_controller.replace_service_manager_item(mocked_item) # THEN: The service item should not be processed mocked_preview_widget.current_slide_number.assert_called_with() mocked_process_item.assert_called_once_with(mocked_item, 7) def on_slide_blank_test(self): """ Test on_slide_blank """ # GIVEN: An instance of SlideController and a mocked on_blank_display slide_controller = SlideController(None) slide_controller.on_blank_display = MagicMock() # WHEN: Calling on_slide_blank slide_controller.on_slide_blank() # THEN: on_blank_display should have been called with True slide_controller.on_blank_display.assert_called_once_with(True) def on_slide_unblank_test(self): """ Test on_slide_unblank """ # GIVEN: An instance of SlideController and a mocked on_blank_display slide_controller = SlideController(None) slide_controller.on_blank_display = MagicMock() # WHEN: Calling on_slide_unblank slide_controller.on_slide_unblank() # THEN: on_blank_display should have been called with False slide_controller.on_blank_display.assert_called_once_with(False) def on_slide_selected_index_no_service_item_test(self): """ Test that when there is no service item, the on_slide_selected_index() method returns immediately """ # GIVEN: A mocked service item and a slide controller without a service item mocked_item = MagicMock() slide_controller = SlideController(None) slide_controller.service_item = None # WHEN: The method is called slide_controller.on_slide_selected_index([10]) # THEN: It should have exited early self.assertEqual(0, mocked_item.is_command.call_count, 'The service item should have not been called') @patch.object(Registry, 'execute') def on_slide_selected_index_service_item_command_test(self, mocked_execute): """ Test that when there is a command service item, the command is executed """ # GIVEN: A mocked service item and a slide controller with a service item mocked_item = MagicMock() mocked_item.is_command.return_value = True mocked_item.name = 'Mocked Item' mocked_update_preview = MagicMock() mocked_preview_widget = MagicMock() mocked_slide_selected = MagicMock() Registry.create() slide_controller = SlideController(None) slide_controller.service_item = mocked_item slide_controller.update_preview = mocked_update_preview slide_controller.preview_widget = mocked_preview_widget slide_controller.slide_selected = mocked_slide_selected slide_controller.is_live = True # WHEN: The method is called slide_controller.on_slide_selected_index([9]) # THEN: It should have sent a notification mocked_item.is_command.assert_called_once_with() mocked_execute.assert_called_once_with('mocked item_slide', [mocked_item, True, 9]) mocked_update_preview.assert_called_once_with() self.assertEqual(0, mocked_preview_widget.change_slide.call_count, 'Change slide should not have been called') self.assertEqual(0, mocked_slide_selected.call_count, 'slide_selected should not have been called') @patch.object(Registry, 'execute') def on_slide_selected_index_service_item_not_command_test(self, mocked_execute): """ Test that when there is a service item but it's not a command, the preview widget is updated """ # GIVEN: A mocked service item and a slide controller with a service item mocked_item = MagicMock() mocked_item.is_command.return_value = False mocked_item.name = 'Mocked Item' mocked_update_preview = MagicMock() mocked_preview_widget = MagicMock() mocked_slide_selected = MagicMock() Registry.create() slide_controller = SlideController(None) slide_controller.service_item = mocked_item slide_controller.update_preview = mocked_update_preview slide_controller.preview_widget = mocked_preview_widget slide_controller.slide_selected = mocked_slide_selected # WHEN: The method is called slide_controller.on_slide_selected_index([7]) # THEN: It should have sent a notification mocked_item.is_command.assert_called_once_with() self.assertEqual(0, mocked_execute.call_count, 'Execute should not have been called') self.assertEqual(0, mocked_update_preview.call_count, 'Update preview should not have been called') mocked_preview_widget.change_slide.assert_called_once_with(7) mocked_slide_selected.assert_called_once_with() @patch.object(Registry, 'execute') def process_item_test(self, mocked_execute): """ Test that presentation service-items is closed when followed by a media service-item """ # GIVEN: A mocked presentation service item, a mocked media service item, a mocked Registry.execute # and a slide controller with many mocks. mocked_pres_item = MagicMock() mocked_pres_item.name = 'mocked_presentation_item' mocked_pres_item.is_command.return_value = True mocked_pres_item.is_media.return_value = False mocked_pres_item.is_image.return_value = False mocked_pres_item.from_service = False mocked_pres_item.get_frames.return_value = [] mocked_media_item = MagicMock() mocked_media_item.name = 'mocked_media_item' mocked_media_item.is_command.return_value = True mocked_media_item.is_media.return_value = True mocked_media_item.is_image.return_value = False mocked_media_item.from_service = False mocked_media_item.get_frames.return_value = [] Registry.create() mocked_main_window = MagicMock() Registry().register('main_window', mocked_main_window) slide_controller = SlideController(None) slide_controller.service_item = mocked_pres_item slide_controller.is_live = False slide_controller.preview_widget = MagicMock() slide_controller.enable_tool_bar = MagicMock() slide_controller.on_media_start = MagicMock() slide_controller.slide_selected = MagicMock() slide_controller.on_stop_loop = MagicMock() slide_controller.info_label = MagicMock() slide_controller.display = MagicMock() slide_controller.split = 0 slide_controller.type_prefix = 'test' # WHEN: _process_item is called slide_controller._process_item(mocked_media_item, 0) # THEN: Registry.execute should have been called to stop the presentation self.assertEqual(3, mocked_execute.call_count, 'Execute should have been called 3 times') self.assertEqual('mocked_presentation_item_stop', mocked_execute.call_args_list[1][0][0], 'The presentation should have been stopped.') class TestInfoLabel(TestCase): def paint_event_text_fits_test(self): """ Test the paintEvent method when text fits the label """ font = QtGui.QFont() metrics = QtGui.QFontMetrics(font) with patch('openlp.core.ui.slidecontroller.QtWidgets.QLabel'), \ patch('openlp.core.ui.slidecontroller.QtGui.QPainter') as mocked_qpainter: # GIVEN: An instance of InfoLabel, with mocked text return, width and rect methods info_label = InfoLabel() test_string = 'Label Text' mocked_rect = MagicMock() mocked_text = MagicMock() mocked_width = MagicMock() mocked_text.return_value = test_string info_label.rect = mocked_rect info_label.text = mocked_text info_label.width = mocked_width # WHEN: The instance is wider than its text, and the paintEvent method is called info_label.width.return_value = metrics.boundingRect(test_string).width() + 10 info_label.paintEvent(MagicMock()) # THEN: The text should be drawn centered with the complete test_string mocked_qpainter().drawText.assert_called_once_with(mocked_rect(), QtCore.Qt.AlignCenter, test_string) def paint_event_text_doesnt_fit_test(self): """ Test the paintEvent method when text fits the label """ font = QtGui.QFont() metrics = QtGui.QFontMetrics(font) with patch('openlp.core.ui.slidecontroller.QtWidgets.QLabel'), \ patch('openlp.core.ui.slidecontroller.QtGui.QPainter') as mocked_qpainter: # GIVEN: An instance of InfoLabel, with mocked text return, width and rect methods info_label = InfoLabel() test_string = 'Label Text' mocked_rect = MagicMock() mocked_text = MagicMock() mocked_width = MagicMock() mocked_text.return_value = test_string info_label.rect = mocked_rect info_label.text = mocked_text info_label.width = mocked_width # WHEN: The instance is narrower than its text, and the paintEvent method is called label_width = metrics.boundingRect(test_string).width() - 10 info_label.width.return_value = label_width info_label.paintEvent(MagicMock()) # THEN: The text should be drawn aligned left with an elided test_string elided_test_string = metrics.elidedText(test_string, QtCore.Qt.ElideRight, label_width) mocked_qpainter().drawText.assert_called_once_with(mocked_rect(), QtCore.Qt.AlignLeft, elided_test_string) @patch('builtins.super') def set_text_test(self, mocked_super): """ Test the reimplemented setText method """ # GIVEN: An instance of InfoLabel and mocked setToolTip method info_label = InfoLabel() set_tool_tip_mock = MagicMock() info_label.setToolTip = set_tool_tip_mock # WHEN: Calling the instance method setText info_label.setText('Label Text') # THEN: The setToolTip and super class setText methods should have been called with the same text set_tool_tip_mock.assert_called_once_with('Label Text') mocked_super().setText.assert_called_once_with('Label Text') class TestLiveController(TestCase): def initial_live_controller_test(self): """ Test the initial live slide controller state . """ # GIVEN: A new SlideController instance. Registry.create() live_controller = LiveController(None) # WHEN: the default controller is built. # THEN: The controller should not be a live controller. self.assertEqual(live_controller.is_live, True, 'The slide controller should be a live controller') class TestPreviewLiveController(TestCase): def initial_preview_controller_test(self): """ Test the initial preview slide controller state. """ # GIVEN: A new SlideController instance. Registry.create() preview_controller = PreviewController(None) # WHEN: the default controller is built. # THEN: The controller should not be a live controller. self.assertEqual(preview_controller.is_live, False, 'The slide controller should be a Preview controller') OpenLP-2.4/tests/functional/openlp_core_ui/test_maindisplay.py0000644000175000017500000002031412657640340024002 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.slidecontroller package. """ from unittest import TestCase, skipUnless from PyQt5 import QtCore from openlp.core.common import Registry, is_macosx from openlp.core.lib import ScreenList from openlp.core.ui import MainDisplay from openlp.core.ui.maindisplay import TRANSPARENT_STYLESHEET, OPAQUE_STYLESHEET from tests.helpers.testmixin import TestMixin from tests.functional import MagicMock, patch if is_macosx(): from ctypes import pythonapi, c_void_p, c_char_p, py_object from sip import voidptr from objc import objc_object from AppKit import NSMainMenuWindowLevel, NSWindowCollectionBehaviorManaged class TestMainDisplay(TestCase, TestMixin): def setUp(self): """ Set up the components need for all tests. """ # Mocked out desktop object self.desktop = MagicMock() self.desktop.primaryScreen.return_value = 0 self.desktop.screenCount.return_value = 2 self.desktop.screenGeometry.side_effect = lambda x: {0: QtCore.QRect(0, 0, 1024, 768), 1: QtCore.QRect(0, 0, 1024, 768)}[x] self.screens = ScreenList.create(self.desktop) Registry.create() self.registry = Registry() self.setup_application() Registry().register('application', self.app) self.mocked_audio_player = patch('openlp.core.ui.maindisplay.AudioPlayer') self.mocked_audio_player.start() def tearDown(self): """ Delete QApplication. """ self.mocked_audio_player.stop() del self.screens def initial_main_display_test(self): """ Test the initial Main Display state """ # GIVEN: A new SlideController instance. display = MagicMock() display.is_live = True # WHEN: The default controller is built. main_display = MainDisplay(display) # THEN: The controller should be a live controller. self.assertEqual(main_display.is_live, True, 'The main display should be a live controller') def set_transparency_enabled_test(self): """ Test setting the display to be transparent """ # GIVEN: An instance of MainDisplay display = MagicMock() main_display = MainDisplay(display) # WHEN: Transparency is enabled main_display.set_transparency(True) # THEN: The transparent stylesheet should be used self.assertEqual(TRANSPARENT_STYLESHEET, main_display.styleSheet(), 'The MainDisplay should use the transparent stylesheet') self.assertFalse(main_display.autoFillBackground(), 'The MainDisplay should not have autoFillBackground set') self.assertTrue(main_display.testAttribute(QtCore.Qt.WA_TranslucentBackground), 'The MainDisplay should have a translucent background') def set_transparency_disabled_test(self): """ Test setting the display to be opaque """ # GIVEN: An instance of MainDisplay display = MagicMock() main_display = MainDisplay(display) # WHEN: Transparency is disabled main_display.set_transparency(False) # THEN: The opaque stylesheet should be used self.assertEqual(OPAQUE_STYLESHEET, main_display.styleSheet(), 'The MainDisplay should use the opaque stylesheet') self.assertFalse(main_display.testAttribute(QtCore.Qt.WA_TranslucentBackground), 'The MainDisplay should not have a translucent background') def css_changed_test(self): """ Test that when the CSS changes, the plugins are looped over and given an opportunity to update the CSS """ # GIVEN: A mocked list of plugins, a mocked display and a MainDisplay mocked_songs_plugin = MagicMock() mocked_bibles_plugin = MagicMock() mocked_plugin_manager = MagicMock() mocked_plugin_manager.plugins = [mocked_songs_plugin, mocked_bibles_plugin] Registry().register('plugin_manager', mocked_plugin_manager) display = MagicMock() main_display = MainDisplay(display) # This is set up dynamically, so we need to mock it out for now main_display.frame = MagicMock() # WHEN: The css_changed() method is triggered main_display.css_changed() # THEN: The plugins should have each been given an opportunity to add their bit to the CSS mocked_songs_plugin.refresh_css.assert_called_with(main_display.frame) mocked_bibles_plugin.refresh_css.assert_called_with(main_display.frame) @skipUnless(is_macosx(), 'Can only run test on Mac OS X due to pyobjc dependency.') def macosx_display_window_flags_state_test(self): """ Test that on Mac OS X we set the proper window flags """ # GIVEN: A new SlideController instance on Mac OS X. self.screens.set_current_display(0) display = MagicMock() # WHEN: The default controller is built. main_display = MainDisplay(display) # THEN: The window flags should be the same as those needed on Mac OS X. self.assertEqual(QtCore.Qt.Window | QtCore.Qt.FramelessWindowHint, main_display.windowFlags(), 'The window flags should be Qt.Window, and Qt.FramelessWindowHint.') @skipUnless(is_macosx(), 'Can only run test on Mac OS X due to pyobjc dependency.') def macosx_display_test(self): """ Test display on Mac OS X """ # GIVEN: A new SlideController instance on Mac OS X. self.screens.set_current_display(0) display = MagicMock() # WHEN: The default controller is built and a reference to the underlying NSView is stored. main_display = MainDisplay(display) try: nsview_pointer = main_display.winId().ascapsule() except: nsview_pointer = voidptr(main_display.winId()).ascapsule() pythonapi.PyCapsule_SetName.restype = c_void_p pythonapi.PyCapsule_SetName.argtypes = [py_object, c_char_p] pythonapi.PyCapsule_SetName(nsview_pointer, c_char_p(b"objc.__object__")) pyobjc_nsview = objc_object(cobject=nsview_pointer) # THEN: The window level and collection behavior should be the same as those needed for Mac OS X. self.assertEqual(pyobjc_nsview.window().level(), NSMainMenuWindowLevel + 2, 'Window level should be NSMainMenuWindowLevel + 2') self.assertEqual(pyobjc_nsview.window().collectionBehavior(), NSWindowCollectionBehaviorManaged, 'Window collection behavior should be NSWindowCollectionBehaviorManaged') OpenLP-2.4/tests/functional/openlp_core_ui/test_thememanager.py0000644000175000017500000003007512657640340024132 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.thememanager package. """ import os import shutil from unittest import TestCase from tempfile import mkdtemp from PyQt5 import QtWidgets from tempfile import mkdtemp from openlp.core.ui import ThemeManager from openlp.core.common import Registry from tests.utils.constants import TEST_RESOURCES_PATH from tests.functional import ANY, MagicMock, patch class TestThemeManager(TestCase): def setUp(self): """ Set up the tests """ Registry.create() self.temp_folder = mkdtemp() def tearDown(self): """ Clean up """ shutil.rmtree(self.temp_folder) def export_theme_test(self): """ Test exporting a theme . """ # GIVEN: A new ThemeManager instance. theme_manager = ThemeManager() theme_manager.path = os.path.join(TEST_RESOURCES_PATH, 'themes') with patch('zipfile.ZipFile.__init__') as mocked_zipfile_init, \ patch('zipfile.ZipFile.write') as mocked_zipfile_write: mocked_zipfile_init.return_value = None # WHEN: The theme is exported theme_manager._export_theme(os.path.join('some', 'path'), 'Default') # THEN: The zipfile should be created at the given path mocked_zipfile_init.assert_called_with(os.path.join('some', 'path', 'Default.otz'), 'w') mocked_zipfile_write.assert_called_with(os.path.join(TEST_RESOURCES_PATH, 'themes', 'Default', 'Default.xml'), os.path.join('Default', 'Default.xml')) def initial_theme_manager_test(self): """ Test the instantiation of theme manager. """ # GIVEN: A new service manager instance. ThemeManager(None) # WHEN: the default theme manager is built. # THEN: The the controller should be registered in the registry. self.assertIsNotNone(Registry().get('theme_manager'), 'The base theme manager should be registered') def write_theme_same_image_test(self): """ Test that we don't try to overwrite a theme background image with itself """ # GIVEN: A new theme manager instance, with mocked builtins.open, shutil.copyfile, # theme, check_directory_exists and thememanager-attributes. with patch('builtins.open') as mocked_open, \ patch('openlp.core.ui.thememanager.shutil.copyfile') as mocked_copyfile, \ patch('openlp.core.ui.thememanager.check_directory_exists') as mocked_check_directory_exists: mocked_open.return_value = MagicMock() theme_manager = ThemeManager(None) theme_manager.old_background_image = None theme_manager.generate_and_save_image = MagicMock() theme_manager.path = '' mocked_theme = MagicMock() mocked_theme.theme_name = 'themename' mocked_theme.extract_formatted_xml = MagicMock() mocked_theme.extract_formatted_xml.return_value = 'fake_theme_xml'.encode() # WHEN: Calling _write_theme with path to the same image, but the path written slightly different file_name1 = os.path.join(TEST_RESOURCES_PATH, 'church.jpg') # Do replacement from end of string to avoid problems with path start file_name2 = file_name1[::-1].replace(os.sep, os.sep + os.sep, 2)[::-1] theme_manager._write_theme(mocked_theme, file_name1, file_name2) # THEN: The mocked_copyfile should not have been called self.assertFalse(mocked_copyfile.called, 'shutil.copyfile should not be called') def write_theme_diff_images_test(self): """ Test that we do overwrite a theme background image when a new is submitted """ # GIVEN: A new theme manager instance, with mocked builtins.open, shutil.copyfile, # theme, check_directory_exists and thememanager-attributes. with patch('builtins.open') as mocked_open, \ patch('openlp.core.ui.thememanager.shutil.copyfile') as mocked_copyfile, \ patch('openlp.core.ui.thememanager.check_directory_exists') as mocked_check_directory_exists: mocked_open.return_value = MagicMock() theme_manager = ThemeManager(None) theme_manager.old_background_image = None theme_manager.generate_and_save_image = MagicMock() theme_manager.path = '' mocked_theme = MagicMock() mocked_theme.theme_name = 'themename' mocked_theme.extract_formatted_xml = MagicMock() mocked_theme.extract_formatted_xml.return_value = 'fake_theme_xml'.encode() # WHEN: Calling _write_theme with path to different images file_name1 = os.path.join(TEST_RESOURCES_PATH, 'church.jpg') file_name2 = os.path.join(TEST_RESOURCES_PATH, 'church2.jpg') theme_manager._write_theme(mocked_theme, file_name1, file_name2) # THEN: The mocked_copyfile should not have been called self.assertTrue(mocked_copyfile.called, 'shutil.copyfile should be called') def write_theme_special_char_name_test(self): """ Test that we can save themes with special characters in the name """ # GIVEN: A new theme manager instance, with mocked theme and thememanager-attributes. theme_manager = ThemeManager(None) theme_manager.old_background_image = None theme_manager.generate_and_save_image = MagicMock() theme_manager.path = self.temp_folder mocked_theme = MagicMock() mocked_theme.theme_name = 'theme æ„› name' mocked_theme.extract_formatted_xml = MagicMock() mocked_theme.extract_formatted_xml.return_value = 'fake theme æ„› XML'.encode() # WHEN: Calling _write_theme with a theme with a name with special characters in it theme_manager._write_theme(mocked_theme, None, None) # THEN: It should have been created self.assertTrue(os.path.exists(os.path.join(self.temp_folder, 'theme æ„› name', 'theme æ„› name.xml')), 'Theme with special characters should have been created!') def over_write_message_box_yes_test(self): """ Test that theme_manager.over_write_message_box returns True when the user clicks yes. """ # GIVEN: A patched QMessageBox.question and an instance of ThemeManager with patch('openlp.core.ui.thememanager.QtWidgets.QMessageBox.question', return_value=QtWidgets.QMessageBox.Yes) as mocked_qmessagebox_question,\ patch('openlp.core.ui.thememanager.translate') as mocked_translate: mocked_translate.side_effect = lambda context, text: text theme_manager = ThemeManager(None) # WHEN: Calling over_write_message_box with 'Theme Name' result = theme_manager.over_write_message_box('Theme Name') # THEN: over_write_message_box should return True and the message box should contain the theme name self.assertTrue(result) mocked_qmessagebox_question.assert_called_once_with( theme_manager, 'Theme Already Exists', 'Theme Theme Name already exists. Do you want to replace it?', ANY, ANY) def over_write_message_box_no_test(self): """ Test that theme_manager.over_write_message_box returns False when the user clicks no. """ # GIVEN: A patched QMessageBox.question and an instance of ThemeManager with patch('openlp.core.ui.thememanager.QtWidgets.QMessageBox.question', return_value=QtWidgets.QMessageBox.No)\ as mocked_qmessagebox_question,\ patch('openlp.core.ui.thememanager.translate') as mocked_translate: mocked_translate.side_effect = lambda context, text: text theme_manager = ThemeManager(None) # WHEN: Calling over_write_message_box with 'Theme Name' result = theme_manager.over_write_message_box('Theme Name') # THEN: over_write_message_box should return False and the message box should contain the theme name self.assertFalse(result) mocked_qmessagebox_question.assert_called_once_with( theme_manager, 'Theme Already Exists', 'Theme Theme Name already exists. Do you want to replace it?', ANY, ANY) def unzip_theme_test(self): """ Test that unzipping of themes works """ # GIVEN: A theme file, a output folder and some mocked out internal functions with patch('openlp.core.ui.thememanager.critical_error_message_box') \ as mocked_critical_error_message_box: theme_manager = ThemeManager(None) theme_manager._create_theme_from_xml = MagicMock() theme_manager.generate_and_save_image = MagicMock() theme_manager.path = '' folder = mkdtemp() theme_file = os.path.join(TEST_RESOURCES_PATH, 'themes', 'Moss_on_tree.otz') # WHEN: We try to unzip it theme_manager.unzip_theme(theme_file, folder) # THEN: Files should be unpacked self.assertTrue(os.path.exists(os.path.join(folder, 'Moss on tree', 'Moss on tree.xml'))) self.assertEqual(mocked_critical_error_message_box.call_count, 0, 'No errors should have happened') shutil.rmtree(folder) def unzip_theme_invalid_version_test(self): """ Test that themes with invalid (< 2.0) or with no version attributes are rejected """ # GIVEN: An instance of ThemeManager whilst mocking a theme that returns a theme with no version attribute with patch('openlp.core.ui.thememanager.zipfile.ZipFile') as mocked_zip_file,\ patch('openlp.core.ui.thememanager.ElementTree.getroot') as mocked_getroot,\ patch('openlp.core.ui.thememanager.XML'),\ patch('openlp.core.ui.thememanager.critical_error_message_box') as mocked_critical_error_message_box: mocked_zip_file.return_value = MagicMock(**{'namelist.return_value': [os.path.join('theme', 'theme.xml')]}) mocked_getroot.return_value = MagicMock(**{'get.return_value': None}) theme_manager = ThemeManager(None) # WHEN: unzip_theme is called theme_manager.unzip_theme('theme.file', 'folder') # THEN: The critical_error_message_box should have been called self.assertEqual(mocked_critical_error_message_box.call_count, 1, 'Should have been called once') OpenLP-2.4/tests/functional/openlp_core_ui/test_firsttimeform.py0000644000175000017500000003037212657640340024367 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.firsttimeform package. """ import os import socket import tempfile import urllib from unittest import TestCase from openlp.core.common import Registry from openlp.core.ui.firsttimeform import FirstTimeForm from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin FAKE_CONFIG = b""" [general] base url = http://example.com/frw/ [songs] directory = songs [bibles] directory = bibles [themes] directory = themes """ FAKE_BROKEN_CONFIG = b""" [general] base url = http://example.com/frw/ [songs] directory = songs [bibles] directory = bibles """ FAKE_INVALID_CONFIG = b""" This is not a config file Some text """ class TestFirstTimeForm(TestCase, TestMixin): def setUp(self): self.setup_application() self.app.setApplicationVersion('0.0') # Set up a fake "set_normal_cursor" method since we're not dealing with an actual OpenLP application object self.app.set_normal_cursor = lambda: None self.app.process_events = lambda: None Registry.create() Registry().register('application', self.app) self.tempfile = os.path.join(tempfile.gettempdir(), 'testfile') def tearDown(self): if os.path.isfile(self.tempfile): os.remove(self.tempfile) def initialise_test(self): """ Test if we can intialise the FirstTimeForm """ # GIVEN: A First Time Wizard and an expected screen object frw = FirstTimeForm(None) expected_screens = MagicMock() # WHEN: The First Time Wizard is initialised frw.initialize(expected_screens) # THEN: The screens should be set up, and the default values initialised self.assertEqual(expected_screens, frw.screens, 'The screens should be correct') self.assertTrue(frw.web_access, 'The default value of self.web_access should be True') self.assertFalse(frw.was_cancelled, 'The default value of self.was_cancelled should be False') self.assertListEqual([], frw.theme_screenshot_threads, 'The list of threads should be empty') self.assertListEqual([], frw.theme_screenshot_workers, 'The list of workers should be empty') self.assertFalse(frw.has_run_wizard, 'has_run_wizard should be False') def set_defaults_test(self): """ Test that the default values are set when set_defaults() is run """ # GIVEN: An initialised FRW and a whole lot of stuff mocked out frw = FirstTimeForm(None) frw.initialize(MagicMock()) with patch.object(frw, 'restart') as mocked_restart, \ patch.object(frw, 'cancel_button') as mocked_cancel_button, \ patch.object(frw, 'no_internet_finish_button') as mocked_no_internet_finish_btn, \ patch.object(frw, 'currentIdChanged') as mocked_currentIdChanged, \ patch.object(Registry, 'register_function') as mocked_register_function, \ patch('openlp.core.ui.firsttimeform.Settings') as MockedSettings, \ patch('openlp.core.ui.firsttimeform.gettempdir') as mocked_gettempdir, \ patch('openlp.core.ui.firsttimeform.check_directory_exists') as mocked_check_directory_exists, \ patch.object(frw.application, 'set_normal_cursor') as mocked_set_normal_cursor: mocked_settings = MagicMock() mocked_settings.value.return_value = True MockedSettings.return_value = mocked_settings mocked_gettempdir.return_value = 'temp' expected_temp_path = os.path.join('temp', 'openlp') # WHEN: The set_defaults() method is run frw.set_defaults() # THEN: The default values should have been set mocked_restart.assert_called_with() self.assertEqual('http://openlp.org/files/frw/', frw.web, 'The default URL should be set') mocked_cancel_button.clicked.connect.assert_called_with(frw.on_cancel_button_clicked) mocked_no_internet_finish_btn.clicked.connect.assert_called_with(frw.on_no_internet_finish_button_clicked) mocked_currentIdChanged.connect.assert_called_with(frw.on_current_id_changed) mocked_register_function.assert_called_with('config_screen_changed', frw.update_screen_list_combo) mocked_no_internet_finish_btn.setVisible.assert_called_with(False) mocked_settings.value.assert_called_with('core/has run wizard') mocked_gettempdir.assert_called_with() mocked_check_directory_exists.assert_called_with(expected_temp_path) def update_screen_list_combo_test(self): """ Test that the update_screen_list_combo() method works correctly """ # GIVEN: A mocked Screen() object and an initialised First Run Wizard and a mocked display_combo_box expected_screen_list = ['Screen 1', 'Screen 2'] mocked_screens = MagicMock() mocked_screens.get_screen_list.return_value = expected_screen_list frw = FirstTimeForm(None) frw.initialize(mocked_screens) with patch.object(frw, 'display_combo_box') as mocked_display_combo_box: mocked_display_combo_box.count.return_value = 2 # WHEN: update_screen_list_combo() is called frw.update_screen_list_combo() # THEN: The combobox should have been updated mocked_display_combo_box.clear.assert_called_with() mocked_screens.get_screen_list.assert_called_with() mocked_display_combo_box.addItems.assert_called_with(expected_screen_list) mocked_display_combo_box.count.assert_called_with() mocked_display_combo_box.setCurrentIndex.assert_called_with(1) def on_cancel_button_clicked_test(self): """ Test that the cancel button click slot shuts down the threads correctly """ # GIVEN: A FRW, some mocked threads and workers (that isn't quite done) and other mocked stuff frw = FirstTimeForm(None) frw.initialize(MagicMock()) mocked_worker = MagicMock() mocked_thread = MagicMock() mocked_thread.isRunning.side_effect = [True, False] frw.theme_screenshot_workers.append(mocked_worker) frw.theme_screenshot_threads.append(mocked_thread) with patch('openlp.core.ui.firsttimeform.time') as mocked_time, \ patch.object(frw.application, 'set_normal_cursor') as mocked_set_normal_cursor: # WHEN: on_cancel_button_clicked() is called frw.on_cancel_button_clicked() # THEN: The right things should be called in the right order self.assertTrue(frw.was_cancelled, 'The was_cancelled property should have been set to True') mocked_worker.set_download_canceled.assert_called_with(True) mocked_thread.isRunning.assert_called_with() self.assertEqual(2, mocked_thread.isRunning.call_count, 'isRunning() should have been called twice') mocked_time.sleep.assert_called_with(0.1) self.assertEqual(1, mocked_time.sleep.call_count, 'sleep() should have only been called once') mocked_set_normal_cursor.assert_called_with() def broken_config_test(self): """ Test if we can handle an config file with missing data """ # GIVEN: A mocked get_web_page, a First Time Wizard, an expected screen object, and a mocked broken config file with patch('openlp.core.ui.firsttimeform.get_web_page') as mocked_get_web_page: first_time_form = FirstTimeForm(None) first_time_form.initialize(MagicMock()) mocked_get_web_page.return_value.read.return_value = FAKE_BROKEN_CONFIG # WHEN: The First Time Wizard is downloads the config file first_time_form._download_index() # THEN: The First Time Form should not have web access self.assertFalse(first_time_form.web_access, 'There should not be web access with a broken config file') def invalid_config_test(self): """ Test if we can handle an config file in invalid format """ # GIVEN: A mocked get_web_page, a First Time Wizard, an expected screen object, and a mocked invalid config file with patch('openlp.core.ui.firsttimeform.get_web_page') as mocked_get_web_page: first_time_form = FirstTimeForm(None) first_time_form.initialize(MagicMock()) mocked_get_web_page.return_value.read.return_value = FAKE_INVALID_CONFIG # WHEN: The First Time Wizard is downloads the config file first_time_form._download_index() # THEN: The First Time Form should not have web access self.assertFalse(first_time_form.web_access, 'There should not be web access with an invalid config file') @patch('openlp.core.ui.firsttimeform.get_web_page') @patch('openlp.core.ui.firsttimeform.QtWidgets.QMessageBox') def network_error_test(self, mocked_message_box, mocked_get_web_page): """ Test we catch a network error in First Time Wizard - bug 1409627 """ # GIVEN: Initial setup and mocks first_time_form = FirstTimeForm(None) first_time_form.initialize(MagicMock()) mocked_get_web_page.side_effect = urllib.error.HTTPError(url='http//localhost', code=407, msg='Network proxy error', hdrs=None, fp=None) # WHEN: the First Time Wizard calls to get the initial configuration first_time_form._download_index() # THEN: the critical_error_message_box should have been called self.assertEquals(mocked_message_box.mock_calls[1][1][0], 'Network Error 407', 'first_time_form should have caught Network Error') @patch('openlp.core.ui.firsttimeform.urllib.request.urlopen') def socket_timeout_test(self, mocked_urlopen): """ Test socket timeout gets caught """ # GIVEN: Mocked urlopen to fake a network disconnect in the middle of a download first_time_form = FirstTimeForm(None) first_time_form.initialize(MagicMock()) mocked_urlopen.side_effect = socket.timeout() # WHEN: Attempt to retrieve a file first_time_form.url_get_file(url='http://localhost/test', f_path=self.tempfile) # THEN: socket.timeout should have been caught # NOTE: Test is if $tmpdir/tempfile is still there, then test fails since ftw deletes bad downloaded files self.assertFalse(os.path.exists(self.tempfile), 'FTW url_get_file should have caught socket.timeout') OpenLP-2.4/tests/functional/openlp_core_ui/__init__.py0000644000175000017500000000307412657640340022174 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ OpenLP-2.4/tests/functional/openlp_core_ui/test_servicemanager.py0000644000175000017500000010354012657640340024466 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.slidecontroller package. """ from unittest import TestCase from openlp.core.common import Registry, ThemeLevel from openlp.core.lib import ServiceItem, ServiceItemType, ItemCapabilities from openlp.core.ui import ServiceManager from tests.functional import MagicMock class TestServiceManager(TestCase): def setUp(self): """ Create the UI """ Registry.create() def initial_service_manager_test(self): """ Test the initial of service manager. """ # GIVEN: A new service manager instance. ServiceManager(None) # WHEN: the default service manager is built. # THEN: The the controller should be registered in the registry. self.assertNotEqual(Registry().get('service_manager'), None, 'The base service manager should be registered') def create_basic_service_test(self): """ Test the create basic service array """ # GIVEN: A new service manager instance. service_manager = ServiceManager(None) # WHEN: when the basic service array is created. service_manager._save_lite = False service_manager.service_theme = 'test_theme' service = service_manager.create_basic_service()[0] # THEN: The controller should be registered in the registry. self.assertNotEqual(service, None, 'The base service should be created') self.assertEqual(service['openlp_core']['service-theme'], 'test_theme', 'The test theme should be saved') self.assertEqual(service['openlp_core']['lite-service'], False, 'The lite service should be saved') def supported_suffixes_test(self): """ Test the create basic service array """ # GIVEN: A new service manager instance. service_manager = ServiceManager(None) # WHEN: a suffix is added as an individual or a list. service_manager.supported_suffixes('txt') service_manager.supported_suffixes(['pptx', 'ppt']) # THEN: The suffixes should be available to test. self.assertEqual('txt' in service_manager.suffixes, True, 'The suffix txt should be in the list') self.assertEqual('ppt' in service_manager.suffixes, True, 'The suffix ppt should be in the list') self.assertEqual('pptx' in service_manager.suffixes, True, 'The suffix pptx should be in the list') def build_context_menu_test(self): """ Test the creation of a context menu from a null service item. """ # GIVEN: A new service manager instance and a default service item. service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have been called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have been called once') def build_song_context_menu_test(self): """ Test the creation of a context menu from service item of type text from Songs. """ # GIVEN: A new service manager instance and a default service item. mocked_renderer = MagicMock() mocked_renderer.theme_level = ThemeLevel.Song Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', mocked_renderer) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.CanEdit) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.OnLoadUpdate) service_item.add_capability(ItemCapabilities.AddIfNewItem) service_item.add_capability(ItemCapabilities.CanSoftBreak) service_item.service_item_type = ServiceItemType.Text service_item.edit_id = 1 service_item._display_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.rename_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') # THEN we add a 2nd display frame service_item._display_frames.append(MagicMock()) service_manager.context_menu(1) # THEN the following additional calls should have occurred. self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 1, 'Should have be called once') def build_bible_context_menu_test(self): """ Test the creation of a context menu from service item of type text from Bibles. """ # GIVEN: A new service manager instance and a default service item. mocked_renderer = MagicMock() mocked_renderer.theme_level = ThemeLevel.Song Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', mocked_renderer) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.NoLineBreaks) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.CanWordSplit) service_item.add_capability(ItemCapabilities.CanEditTitle) service_item.service_item_type = ServiceItemType.Text service_item.edit_id = 1 service_item._display_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') # THEN we add a 2nd display frame service_item._display_frames.append(MagicMock()) service_manager.context_menu(1) # THEN the following additional calls should have occurred. self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 1, 'Should have be called once') def build_custom_context_menu_test(self): """ Test the creation of a context menu from service item of type text from Custom. """ # GIVEN: A new service manager instance and a default service item. mocked_renderer = MagicMock() mocked_renderer.theme_level = ThemeLevel.Song Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', mocked_renderer) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.CanEdit) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.CanSoftBreak) service_item.add_capability(ItemCapabilities.OnLoadUpdate) service_item.service_item_type = ServiceItemType.Text service_item.edit_id = 1 service_item._display_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.rename_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') # THEN we add a 2nd display frame service_item._display_frames.append(MagicMock()) service_manager.context_menu(1) # THEN the following additional calls should have occurred. self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 1, 'Should have be called once') def build_image_context_menu_test(self): """ Test the creation of a context menu from service item of type Image from Image. """ # GIVEN: A new service manager instance and a default service item. Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', MagicMock()) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.CanMaintain) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.CanAppend) service_item.add_capability(ItemCapabilities.CanEditTitle) service_item.service_item_type = ServiceItemType.Image service_item.edit_id = 1 service_item._raw_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') # THEN we add a 2nd display frame and regenerate the menu. service_item._raw_frames.append(MagicMock()) service_manager.context_menu(1) # THEN the following additional calls should have occurred. self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 1, 'Should have be called once') def build_media_context_menu_test(self): """ Test the creation of a context menu from service item of type Command from Media. """ # GIVEN: A new service manager instance and a default service item. Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', MagicMock()) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.CanAutoStartForLive) service_item.add_capability(ItemCapabilities.CanEditTitle) service_item.add_capability(ItemCapabilities.RequiresMedia) service_item.service_item_type = ServiceItemType.Command service_item.edit_id = 1 service_item._raw_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') # THEN I change the length of the media and regenerate the menu. service_item.set_media_length(5) service_manager.context_menu(1) # THEN the following additional calls should have occurred. self.assertEquals(service_manager.time_action.setVisible.call_count, 3, 'Should have be called three times') def build_presentation_pdf_context_menu_test(self): """ Test the creation of a context menu from service item of type Command with PDF from Presentation. """ # GIVEN: A new service manager instance and a default service item. Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', MagicMock()) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.CanMaintain) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.CanAppend) service_item.service_item_type = ServiceItemType.Command service_item.edit_id = 1 service_item._raw_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 2, 'Should have be called twice') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') def build_presentation_non_pdf_context_menu_test(self): """ Test the creation of a context menu from service item of type Command with Impress from Presentation. """ # GIVEN: A new service manager instance and a default service item. Registry().register('plugin_manager', MagicMock()) Registry().register('renderer', MagicMock()) service_manager = ServiceManager(None) item = MagicMock() item.parent.return_value = False item.data.return_value = 0 service_manager.service_manager_list = MagicMock() service_manager.service_manager_list.itemAt.return_value = item service_item = ServiceItem(None) service_item.add_capability(ItemCapabilities.ProvidesOwnDisplay) service_item.service_item_type = ServiceItemType.Command service_item.edit_id = 1 service_item._raw_frames.append(MagicMock()) service_manager.service_items.insert(1, {'service_item': service_item}) service_manager.edit_action = MagicMock() service_manager.rename_action = MagicMock() service_manager.create_custom_action = MagicMock() service_manager.maintain_action = MagicMock() service_manager.notes_action = MagicMock() service_manager.time_action = MagicMock() service_manager.auto_start_action = MagicMock() service_manager.auto_play_slides_menu = MagicMock() service_manager.auto_play_slides_once = MagicMock() service_manager.auto_play_slides_loop = MagicMock() service_manager.timed_slide_interval = MagicMock() service_manager.theme_menu = MagicMock() service_manager.menu = MagicMock() # WHEN I define a context menu service_manager.context_menu(1) # THEN the following calls should have occurred. self.assertEquals(service_manager.edit_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.rename_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.create_custom_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.maintain_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.notes_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.time_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_start_action.setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') self.assertEquals(service_manager.auto_play_slides_once.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.auto_play_slides_loop.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.timed_slide_interval.setChecked.call_count, 0, 'Should not be called') self.assertEquals(service_manager.theme_menu.menuAction().setVisible.call_count, 1, 'Should have be called once') OpenLP-2.4/tests/functional/openlp_core_ui/test_settingsform.py0000644000175000017500000001654212657640340024224 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.settingsform package. """ from PyQt5 import QtWidgets from unittest import TestCase from openlp.core.common import Registry from openlp.core.ui.settingsform import SettingsForm from tests.functional import MagicMock, patch class TestSettingsForm(TestCase): def setUp(self): """ Set up a few things for the tests """ Registry.create() def insert_tab_visible_test(self): """ Test that the insert_tab() method works correctly when a visible tab is inserted """ # GIVEN: A mocked tab and a Settings Form settings_form = SettingsForm(None) general_tab = MagicMock() general_tab.tab_title = 'mock' general_tab.tab_title_visible = 'Mock' general_tab.icon_path = ':/icon/openlp-logo-16x16.png' # WHEN: We insert the general tab with patch.object(settings_form.stacked_layout, 'addWidget') as mocked_add_widget, \ patch.object(settings_form.setting_list_widget, 'addItem') as mocked_add_item: settings_form.insert_tab(general_tab, is_visible=True) # THEN: The general tab should have been inserted into the stacked layout and an item inserted into the list mocked_add_widget.assert_called_with(general_tab) self.assertEqual(1, mocked_add_item.call_count, 'addItem should have been called') def insert_tab_not_visible_test(self): """ Test that the insert_tab() method works correctly when a tab that should not be visible is inserted """ # GIVEN: A general tab and a Settings Form settings_form = SettingsForm(None) general_tab = MagicMock() general_tab.tab_title = 'mock' # WHEN: We insert the general tab with patch.object(settings_form.stacked_layout, 'addWidget') as mocked_add_widget, \ patch.object(settings_form.setting_list_widget, 'addItem') as mocked_add_item: settings_form.insert_tab(general_tab, is_visible=False) # THEN: The general tab should have been inserted, but no list item should have been inserted into the list mocked_add_widget.assert_called_with(general_tab) self.assertEqual(0, mocked_add_item.call_count, 'addItem should not have been called') def accept_with_inactive_plugins_test(self): """ Test that the accept() method works correctly when some of the plugins are inactive """ # GIVEN: A visible general tab and an invisible theme tab in a Settings Form settings_form = SettingsForm(None) general_tab = QtWidgets.QWidget(None) general_tab.tab_title = 'mock-general' general_tab.tab_title_visible = 'Mock General' general_tab.icon_path = ':/icon/openlp-logo-16x16.png' mocked_general_save = MagicMock() general_tab.save = mocked_general_save settings_form.insert_tab(general_tab, is_visible=True) themes_tab = QtWidgets.QWidget(None) themes_tab.tab_title = 'mock-themes' themes_tab.tab_title_visible = 'Mock Themes' themes_tab.icon_path = ':/icon/openlp-logo-16x16.png' mocked_theme_save = MagicMock() themes_tab.save = mocked_theme_save settings_form.insert_tab(themes_tab, is_visible=False) # WHEN: The accept() method is called settings_form.accept() # THEN: The general tab's save() method should have been called, but not the themes tab mocked_general_save.assert_called_with() self.assertEqual(0, mocked_theme_save.call_count, 'The Themes tab\'s save() should not have been called') def list_item_changed_invalid_item_test(self): """ Test that the list_item_changed() slot handles a non-existent item """ # GIVEN: A mocked tab inserted into a Settings Form settings_form = SettingsForm(None) general_tab = QtWidgets.QWidget(None) general_tab.tab_title = 'mock' general_tab.tab_title_visible = 'Mock' general_tab.icon_path = ':/icon/openlp-logo-16x16.png' settings_form.insert_tab(general_tab, is_visible=True) with patch.object(settings_form.stacked_layout, 'count') as mocked_count: # WHEN: The list_item_changed() slot is called with an invalid item index settings_form.list_item_changed(100) # THEN: The rest of the method should not have been called self.assertEqual(0, mocked_count.call_count, 'The count method of the stacked layout should not be called') def reject_with_inactive_items_test(self): """ Test that the reject() method works correctly when some of the plugins are inactive """ # GIVEN: A visible general tab and an invisible theme tab in a Settings Form settings_form = SettingsForm(None) general_tab = QtWidgets.QWidget(None) general_tab.tab_title = 'mock-general' general_tab.tab_title_visible = 'Mock General' general_tab.icon_path = ':/icon/openlp-logo-16x16.png' mocked_general_cancel = MagicMock() general_tab.cancel = mocked_general_cancel settings_form.insert_tab(general_tab, is_visible=True) themes_tab = QtWidgets.QWidget(None) themes_tab.tab_title = 'mock-themes' themes_tab.tab_title_visible = 'Mock Themes' themes_tab.icon_path = ':/icon/openlp-logo-16x16.png' mocked_theme_cancel = MagicMock() themes_tab.cancel = mocked_theme_cancel settings_form.insert_tab(themes_tab, is_visible=False) # WHEN: The reject() method is called settings_form.reject() # THEN: The general tab's cancel() method should have been called, but not the themes tab mocked_general_cancel.assert_called_with() self.assertEqual(0, mocked_theme_cancel.call_count, 'The Themes tab\'s cancel() should not have been called') OpenLP-2.4/tests/functional/openlp_core_ui/test_formattingtagscontroller.py0000644000175000017500000001242712657640340026633 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.formattingtagscontroller package. """ from unittest import TestCase from openlp.core.ui import FormattingTagController class TestFormattingTagController(TestCase): def setUp(self): self.services = FormattingTagController() def strip_test(self): """ Test that the _strip strips the correct chars """ # GIVEN: An instance of the Formatting Tag Form and a string containing a tag tag = '{tag}' # WHEN: Calling _strip result = self.services._strip(tag) # THEN: The tag should be returned with the wrappers removed. self.assertEqual(result, 'tag', 'FormattingTagForm._strip should return u\'tag\' when called with u\'{tag}\'') def end_tag_changed_processes_correctly_test(self): """ Test that the end html tags are generated correctly """ # GIVEN: A list of start , end tags and error messages tests = [] test = {'start': '', 'end': None, 'gen': '', 'valid': None} tests.append(test) test = {'start': '', 'end': '', 'gen': None, 'valid': None} tests.append(test) test = {'start': '', 'end': '', 'gen': None, 'valid': 'End tag does not match end tag for start tag '} tests.append(test) # WHEN: Testing each one of them in turn for test in tests: error, result = self.services.end_tag_changed(test['start'], test['end']) # THEN: The result should match the predetermined value. self.assertTrue(result == test['gen'], 'Function should handle end tag correctly : %s and %s for %s ' % (test['gen'], result, test['start'])) self.assertTrue(error == test['valid'], 'Function should not generate unexpected error messages : %s ' % error) def start_tag_changed_processes_correctly_test(self): """ Test that the end html tags are generated correctly """ # GIVEN: A list of start , end tags and error messages tests = [] test = {'start': '', 'end': '', 'gen': '', 'valid': None} tests.append(test) test = {'start': '', 'end': '', 'gen': None, 'valid': None} tests.append(test) test = {'start': 'superfly', 'end': '', 'gen': None, 'valid': 'Start tag superfly is not valid HTML'} tests.append(test) # WHEN: Testing each one of them in turn for test in tests: error, result = self.services.start_tag_changed(test['start'], test['end']) # THEN: The result should match the predetermined value. self.assertTrue(result == test['gen'], 'Function should handle end tag correctly : %s and %s ' % (test['gen'], result)) self.assertTrue(error == test['valid'], 'Function should not generate unexpected error messages : %s ' % error) def start_html_to_end_html_test(self): """ Test that the end html tags are generated correctly """ # GIVEN: A list of valid and invalid tags tests = {'': '', '': '', 'superfly': '', '': None, '': ''} # WHEN: Testing each one of them for test1, test2 in tests.items(): result = self.services.start_html_to_end_html(test1) # THEN: The result should match the predetermined value. self.assertTrue(result == test2, 'Calculated end tag should be valid: %s and %s = %s' % (test1, test2, result)) OpenLP-2.4/tests/functional/openlp_core_ui/test_mainwindow.py0000644000175000017500000002317012657640340023647 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test openlp.core.ui.mainwindow package. """ import os from unittest import TestCase from openlp.core.ui.mainwindow import MainWindow from openlp.core.lib.ui import UiStrings from openlp.core.common.registry import Registry from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin from tests.utils.constants import TEST_RESOURCES_PATH class TestMainWindow(TestCase, TestMixin): def setUp(self): Registry.create() self.registry = Registry() self.setup_application() # Mock cursor busy/normal methods. self.app.set_busy_cursor = MagicMock() self.app.set_normal_cursor = MagicMock() self.app.args = [] Registry().register('application', self.app) # Mock classes and methods used by mainwindow. with patch('openlp.core.ui.mainwindow.SettingsForm') as mocked_settings_form, \ patch('openlp.core.ui.mainwindow.ImageManager') as mocked_image_manager, \ patch('openlp.core.ui.mainwindow.LiveController') as mocked_live_controller, \ patch('openlp.core.ui.mainwindow.PreviewController') as mocked_preview_controller, \ patch('openlp.core.ui.mainwindow.OpenLPDockWidget') as mocked_dock_widget, \ patch('openlp.core.ui.mainwindow.QtWidgets.QToolBox') as mocked_q_tool_box_class, \ patch('openlp.core.ui.mainwindow.QtWidgets.QMainWindow.addDockWidget') as mocked_add_dock_method, \ patch('openlp.core.ui.mainwindow.ThemeManager') as mocked_theme_manager, \ patch('openlp.core.ui.mainwindow.Renderer') as mocked_renderer: self.mocked_settings_form = mocked_settings_form self.mocked_image_manager = mocked_image_manager self.mocked_live_controller = mocked_live_controller self.mocked_preview_controller = mocked_preview_controller self.mocked_dock_widget = mocked_dock_widget self.mocked_q_tool_box_class = mocked_q_tool_box_class self.mocked_add_dock_method = mocked_add_dock_method self.mocked_theme_manager = mocked_theme_manager self.mocked_renderer = mocked_renderer self.main_window = MainWindow() def tearDown(self): del self.main_window def cmd_line_file_test(self): """ Test that passing a service file from the command line loads the service. """ # GIVEN a service as an argument to openlp service = os.path.join(TEST_RESOURCES_PATH, 'service', 'test.osz') self.main_window.arguments = [service] with patch('openlp.core.ui.servicemanager.ServiceManager.load_file') as mocked_load_path: # WHEN the argument is processed self.main_window.open_cmd_line_files(service) # THEN the service from the arguments is loaded mocked_load_path.assert_called_with(service), 'load_path should have been called with the service\'s path' def cmd_line_arg_test(self): """ Test that passing a non service file does nothing. """ # GIVEN a non service file as an argument to openlp service = os.path.join('openlp.py') self.main_window.arguments = [service] with patch('openlp.core.ui.servicemanager.ServiceManager.load_file') as mocked_load_path: # WHEN the argument is processed self.main_window.open_cmd_line_files("") # THEN the file should not be opened assert not mocked_load_path.called, 'load_path should not have been called' def main_window_title_test(self): """ Test that running a new instance of OpenLP set the window title correctly """ # GIVEN a newly opened OpenLP instance # WHEN no changes are made to the service # THEN the main window's title shoud be the same as the OLPV2x string in the UiStrings class self.assertEqual(self.main_window.windowTitle(), UiStrings().OLPV2x, 'The main window\'s title should be the same as the OLPV2x string in UiStrings class') def set_service_modifed_test(self): """ Test that when setting the service's title the main window's title is set correctly """ # GIVEN a newly opened OpenLP instance # WHEN set_service_modified is called with with the modified flag set true and a file name self.main_window.set_service_modified(True, 'test.osz') # THEN the main window's title should be set to the self.assertEqual(self.main_window.windowTitle(), '%s - %s*' % (UiStrings().OLPV2x, 'test.osz'), 'The main window\'s title should be set to " - test.osz*"') def set_service_unmodified_test(self): """ Test that when setting the service's title the main window's title is set correctly """ # GIVEN a newly opened OpenLP instance # WHEN set_service_modified is called with with the modified flag set False and a file name self.main_window.set_service_modified(False, 'test.osz') # THEN the main window's title should be set to the self.assertEqual(self.main_window.windowTitle(), '%s - %s' % (UiStrings().OLPV2x, 'test.osz'), 'The main window\'s title should be set to " - test.osz"') def mainwindow_configuration_test(self): """ Check that the Main Window initialises the Registry Correctly """ # GIVEN: A built main window # WHEN: you check the started functions # THEN: the following registry functions should have been registered self.assertEqual(len(self.registry.service_list), 6, 'The registry should have 6 services.') self.assertEqual(len(self.registry.functions_list), 16, 'The registry should have 16 functions') self.assertTrue('application' in self.registry.service_list, 'The application should have been registered.') self.assertTrue('main_window' in self.registry.service_list, 'The main_window should have been registered.') self.assertTrue('media_controller' in self.registry.service_list, 'The media_controller should have been ' 'registered.') self.assertTrue('plugin_manager' in self.registry.service_list, 'The plugin_manager should have been registered.') def on_search_shortcut_triggered_shows_media_manager_test(self): """ Test that the media manager is made visible when the search shortcut is triggered """ # GIVEN: A build main window set up for testing with patch.object(self.main_window, 'media_manager_dock') as mocked_media_manager_dock, \ patch.object(self.main_window, 'media_tool_box') as mocked_media_tool_box: mocked_media_manager_dock.isVisible.return_value = False mocked_media_tool_box.currentWidget.return_value = None # WHEN: The search shortcut is triggered self.main_window.on_search_shortcut_triggered() # THEN: The media manager dock is made visible mocked_media_manager_dock.setVisible.assert_called_with(True) def on_search_shortcut_triggered_focuses_widget_test(self): """ Test that the focus is set on the widget when the search shortcut is triggered """ # GIVEN: A build main window set up for testing with patch.object(self.main_window, 'media_manager_dock') as mocked_media_manager_dock, \ patch.object(self.main_window, 'media_tool_box') as mocked_media_tool_box: mocked_media_manager_dock.isVisible.return_value = True mocked_widget = MagicMock() mocked_media_tool_box.currentWidget.return_value = mocked_widget # WHEN: The search shortcut is triggered self.main_window.on_search_shortcut_triggered() # THEN: The media manager dock is made visible self.assertEqual(0, mocked_media_manager_dock.setVisible.call_count) mocked_widget.on_focus.assert_called_with() OpenLP-2.4/tests/functional/openlp_core_ui/test_media.py0000644000175000017500000002072312657640340022553 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ from PyQt5 import QtCore from unittest import TestCase from openlp.core.ui.media import get_media_players, parse_optical_path from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMedia(TestCase, TestMixin): def test_get_media_players_no_config(self): """ Test that when there's no config, get_media_players() returns an empty list of players (not a string) """ def value_results(key): if key == 'media/players': return '' else: return False # GIVEN: A mocked out Settings() object with patch('openlp.core.ui.media.Settings.value') as mocked_value: mocked_value.side_effect = value_results # WHEN: get_media_players() is called used_players, overridden_player = get_media_players() # THEN: the used_players should be an empty list, and the overridden player should be an empty string self.assertEqual([], used_players, 'Used players should be an empty list') self.assertEqual('', overridden_player, 'Overridden player should be an empty string') def test_get_media_players_no_players(self): """ Test that when there's no players but overridden player is set, get_media_players() returns 'auto' """ def value_results(key): if key == 'media/override player': return QtCore.Qt.Checked else: return '' # GIVEN: A mocked out Settings() object with patch('openlp.core.ui.media.Settings.value') as mocked_value: mocked_value.side_effect = value_results # WHEN: get_media_players() is called used_players, overridden_player = get_media_players() # THEN: the used_players should be an empty list, and the overridden player should be an empty string self.assertEqual([], used_players, 'Used players should be an empty list') self.assertEqual('auto', overridden_player, 'Overridden player should be "auto"') def test_get_media_players_with_valid_list(self): """ Test that when get_media_players() is called the string list is interpreted correctly """ def value_results(key): if key == 'media/players': return '[vlc,webkit,system]' else: return False # GIVEN: A mocked out Settings() object with patch('openlp.core.ui.media.Settings.value') as mocked_value: mocked_value.side_effect = value_results # WHEN: get_media_players() is called used_players, overridden_player = get_media_players() # THEN: the used_players should be an empty list, and the overridden player should be an empty string self.assertEqual(['vlc', 'webkit', 'system'], used_players, 'Used players should be correct') self.assertEqual('', overridden_player, 'Overridden player should be an empty string') def test_get_media_players_with_overridden_player(self): """ Test that when get_media_players() is called the overridden player is correctly set """ def value_results(key): if key == 'media/players': return '[vlc,webkit,system]' else: return QtCore.Qt.Checked # GIVEN: A mocked out Settings() object with patch('openlp.core.ui.media.Settings.value') as mocked_value: mocked_value.side_effect = value_results # WHEN: get_media_players() is called used_players, overridden_player = get_media_players() # THEN: the used_players should be an empty list, and the overridden player should be an empty string self.assertEqual(['vlc', 'webkit', 'system'], used_players, 'Used players should be correct') self.assertEqual('vlc,webkit,system', overridden_player, 'Overridden player should be a string of players') def test_parse_optical_path_linux(self): """ Test that test_parse_optical_path() parses a optical path with linux device path correctly """ # GIVEN: An optical formatted path org_title_track = 1 org_audio_track = 2 org_subtitle_track = -1 org_start = 1234 org_end = 4321 org_name = 'test name' org_device_path = '/dev/dvd' path = 'optical:%d:%d:%d:%d:%d:%s:%s' % (org_title_track, org_audio_track, org_subtitle_track, org_start, org_end, org_name, org_device_path) # WHEN: parsing the path (device_path, title_track, audio_track, subtitle_track, start, end, name) = parse_optical_path(path) # THEN: The return values should match the original values self.assertEqual(org_title_track, title_track, 'Returned title_track should match the original') self.assertEqual(org_audio_track, audio_track, 'Returned audio_track should match the original') self.assertEqual(org_subtitle_track, subtitle_track, 'Returned subtitle_track should match the original') self.assertEqual(org_start, start, 'Returned start should match the original') self.assertEqual(org_end, end, 'Returned end should match the original') self.assertEqual(org_name, name, 'Returned end should match the original') self.assertEqual(org_device_path, device_path, 'Returned device_path should match the original') def test_parse_optical_path_win(self): """ Test that test_parse_optical_path() parses a optical path with windows device path correctly """ # GIVEN: An optical formatted path org_title_track = 1 org_audio_track = 2 org_subtitle_track = -1 org_start = 1234 org_end = 4321 org_name = 'test name' org_device_path = 'D:' path = 'optical:%d:%d:%d:%d:%d:%s:%s' % (org_title_track, org_audio_track, org_subtitle_track, org_start, org_end, org_name, org_device_path) # WHEN: parsing the path (device_path, title_track, audio_track, subtitle_track, start, end, name) = parse_optical_path(path) # THEN: The return values should match the original values self.assertEqual(org_title_track, title_track, 'Returned title_track should match the original') self.assertEqual(org_audio_track, audio_track, 'Returned audio_track should match the original') self.assertEqual(org_subtitle_track, subtitle_track, 'Returned subtitle_track should match the original') self.assertEqual(org_start, start, 'Returned start should match the original') self.assertEqual(org_end, end, 'Returned end should match the original') self.assertEqual(org_name, name, 'Returned end should match the original') self.assertEqual(org_device_path, device_path, 'Returned device_path should match the original') OpenLP-2.4/tests/functional/openlp_core_ui/test_themeform.py0000644000175000017500000001275012657640340023463 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.themeform package. """ from unittest import TestCase from openlp.core.ui import ThemeForm from tests.functional import MagicMock, patch class TestThemeManager(TestCase): """ Test the functions in the ThemeManager Class """ def select_image_file_dialog_cancelled_test(self): """ Test the select image file dialog when the user presses cancel """ # GIVEN: An instance of Theme Form and mocked QFileDialog which returns an empty string (similating a user # pressing cancel) with patch('openlp.core.ui.ThemeForm._setup'),\ patch('openlp.core.ui.themeform.get_images_filter', **{'return_value': 'Image Files (*.bmp; *.gif)(*.bmp *.gif)'}),\ patch('openlp.core.ui.themeform.QtWidgets.QFileDialog.getOpenFileName', **{'return_value': ('', '')}) as mocked_get_open_file_name,\ patch('openlp.core.ui.themeform.translate', **{'return_value': 'Translated String'}),\ patch('openlp.core.ui.ThemeForm.set_background_page_values') as mocked_set_background_page_values: instance = ThemeForm(None) mocked_image_file_edit = MagicMock() mocked_image_file_edit.text.return_value = '/original_path/file.ext' instance.image_file_edit = mocked_image_file_edit # WHEN: on_image_browse_button is clicked instance.on_image_browse_button_clicked() # THEN: The QFileDialog getOpenFileName and set_background_page_values moethods should have been called # with known arguments mocked_get_open_file_name.assert_called_once_with(instance, 'Translated String', '/original_path/file.ext', 'Image Files (*.bmp; *.gif)(*.bmp *.gif);;' 'All Files (*.*)') mocked_set_background_page_values.assert_called_once_with() def select_image_file_dialog_new_file_test(self): """ Test the select image file dialog when the user presses ok """ # GIVEN: An instance of Theme Form and mocked QFileDialog which returns a file path with patch('openlp.core.ui.ThemeForm._setup'),\ patch('openlp.core.ui.themeform.get_images_filter', **{'return_value': 'Image Files (*.bmp; *.gif)(*.bmp *.gif)'}),\ patch('openlp.core.ui.themeform.QtWidgets.QFileDialog.getOpenFileName', **{'return_value': ('/new_path/file.ext', '')}) as mocked_get_open_file_name,\ patch('openlp.core.ui.themeform.translate', **{'return_value': 'Translated String'}),\ patch('openlp.core.ui.ThemeForm.set_background_page_values') as mocked_background_page_values: instance = ThemeForm(None) mocked_image_file_edit = MagicMock() mocked_image_file_edit.text.return_value = '/original_path/file.ext' instance.image_file_edit = mocked_image_file_edit instance.theme = MagicMock() # WHEN: on_image_browse_button is clicked instance.on_image_browse_button_clicked() # THEN: The QFileDialog getOpenFileName and set_background_page_values moethods should have been called # with known arguments and theme.background_filename should be set mocked_get_open_file_name.assert_called_once_with(instance, 'Translated String', '/original_path/file.ext', 'Image Files (*.bmp; *.gif)(*.bmp *.gif);;' 'All Files (*.*)') self.assertEqual(instance.theme.background_filename, '/new_path/file.ext', 'theme.background_filename should be set to the path that the file dialog returns') mocked_background_page_values.assert_called_once_with() OpenLP-2.4/tests/functional/openlp_core_ui/test_formattingtagsform.py0000644000175000017500000001033112657640340025403 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.formattingtagsform package. """ from unittest import TestCase from tests.functional import MagicMock, patch, call from openlp.core.ui.formattingtagform import FormattingTagForm # TODO: Tests Still TODO # __init__ # exec # on_saved_clicked # _reloadTable class TestFormattingTagForm(TestCase): def setUp(self): """ Mock out stuff for all the tests """ self.setup_patcher = patch('openlp.core.ui.formattingtagform.FormattingTagForm._setup') self.setup_patcher.start() def tearDown(self): """ Remove the mocks """ self.setup_patcher.stop() def on_row_selected_test(self): """ Test that the appropriate actions are preformed when on_row_selected is called """ # GIVEN: An instance of the Formatting Tag Form and a mocked delete_button form = FormattingTagForm(None) form.delete_button = MagicMock() # WHEN: on_row_selected is called form.on_row_selected() # THEN: setEnabled and should have been called on delete_button form.delete_button.setEnabled.assert_called_with(True) def on_new_clicked_test(self): """ Test that clicking the Add a new tag button does the right thing """ # GIVEN: A formatting tag form and a mocked out tag table widget form = FormattingTagForm(None) form.tag_table_widget = MagicMock() row_count = 5 form.tag_table_widget.rowCount.return_value = row_count # WHEN: on_new_clicked is run (i.e. the Add new button was clicked) with patch('openlp.core.ui.formattingtagform.QtWidgets.QTableWidgetItem') as MockedQTableWidgetItem: mocked_table_widget = MagicMock() MockedQTableWidgetItem.return_value = mocked_table_widget form.on_new_clicked() # THEN: A new row should be added to the table form.tag_table_widget.rowCount.assert_called_with() form.tag_table_widget.insertRow.assert_called_with(row_count) expected_set_item_calls = [ call(row_count, 0, mocked_table_widget), call(row_count, 1, mocked_table_widget), call(row_count, 2, mocked_table_widget), call(row_count, 3, mocked_table_widget) ] self.assertEqual(expected_set_item_calls, form.tag_table_widget.setItem.call_args_list, 'setItem should have been called correctly') form.tag_table_widget.resizeRowsToContents.assert_called_with() form.tag_table_widget.scrollToBottom.assert_called_with() form.tag_table_widget.selectRow.assert_called_with(row_count) OpenLP-2.4/tests/functional/openlp_core_ui/test_aboutform.py0000644000175000017500000000454212657640340023473 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.firsttimeform package. """ from unittest import TestCase from openlp.core.ui.aboutform import AboutForm from tests.functional import patch from tests.helpers.testmixin import TestMixin class TestFirstTimeForm(TestCase, TestMixin): def test_on_volunteer_button_clicked(self): """ Test that clicking on the "Volunteer" button opens a web page. """ # GIVEN: A new About dialog and a mocked out webbrowser module with patch('openlp.core.ui.aboutform.webbrowser') as mocked_webbrowser: about_form = AboutForm(None) # WHEN: The "Volunteer" button is "clicked" about_form.on_volunteer_button_clicked() # THEN: A web browser is opened mocked_webbrowser.open_new.assert_called_with('http://openlp.org/en/contribute') OpenLP-2.4/tests/functional/__init__.py0000644000175000017500000000401612657640340017167 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Base directory for tests """ import sys from PyQt5 import QtWidgets if sys.version_info[1] >= 3: from unittest.mock import ANY, MagicMock, patch, mock_open, call else: from mock import ANY, MagicMock, patch, mock_open, call # Only one QApplication can be created. Use QtWidgets.QApplication.instance() when you need to "create" a QApplication. application = QtWidgets.QApplication([]) application.setApplicationName('OpenLP') __all__ = ['ANY', 'MagicMock', 'patch', 'mock_open', 'call', 'application'] OpenLP-2.4/tests/functional/openlp_core/0000755000175000017500000000000012657640341017363 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core/test_init.py0000644000175000017500000001641312657640340021743 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import sys from unittest import TestCase from openlp.core import parse_options from tests.helpers.testmixin import TestMixin class TestInitFunctions(TestMixin, TestCase): def parse_options_basic_test(self): """ Test the parse options process works """ # GIVEN: a a set of system arguments. sys.argv[1:] = [] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertFalse(args.dev_version, 'The dev_version flag should be False') self.assertEquals(args.loglevel, 'warning', 'The log level should be set to warning') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertFalse(args.portable, 'The portable flag should be set to false') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, [], 'The service file should be blank') def parse_options_debug_test(self): """ Test the parse options process works for debug only """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['-l debug'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertFalse(args.dev_version, 'The dev_version flag should be False') self.assertEquals(args.loglevel, ' debug', 'The log level should be set to debug') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertFalse(args.portable, 'The portable flag should be set to false') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, [], 'The service file should be blank') def parse_options_debug_and_portable_test(self): """ Test the parse options process works for debug and portable """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['--portable'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertFalse(args.dev_version, 'The dev_version flag should be False') self.assertEquals(args.loglevel, 'warning', 'The log level should be set to warning') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertTrue(args.portable, 'The portable flag should be set to true') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, [], 'The service file should be blank') def parse_options_all_no_file_test(self): """ Test the parse options process works with two options """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['-l debug', '-d'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertTrue(args.dev_version, 'The dev_version flag should be True') self.assertEquals(args.loglevel, ' debug', 'The log level should be set to debug') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertFalse(args.portable, 'The portable flag should be set to false') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, [], 'The service file should be blank') def parse_options_file_test(self): """ Test the parse options process works with a file """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['dummy_temp'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertFalse(args.dev_version, 'The dev_version flag should be False') self.assertEquals(args.loglevel, 'warning', 'The log level should be set to warning') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertFalse(args.portable, 'The portable flag should be set to false') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, 'dummy_temp', 'The service file should not be blank') def parse_options_file_and_debug_test(self): """ Test the parse options process works with a file """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['-l debug', 'dummy_temp'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertFalse(args.dev_version, 'The dev_version flag should be False') self.assertEquals(args.loglevel, ' debug', 'The log level should be set to debug') self.assertFalse(args.no_error_form, 'The no_error_form should be set to False') self.assertFalse(args.portable, 'The portable flag should be set to false') self.assertEquals(args.style, None, 'There are no style flags to be processed') self.assertEquals(args.rargs, 'dummy_temp', 'The service file should not be blank') def parse_options_two_files_test(self): """ Test the parse options process works with a file """ # GIVEN: a a set of system arguments. sys.argv[1:] = ['dummy_temp', 'dummy_temp2'] # WHEN: We we parse them to expand to options args = parse_options() # THEN: the following fields will have been extracted. self.assertEquals(args, None, 'The args should be None') OpenLP-2.4/tests/functional/openlp_core_ui_media/0000755000175000017500000000000012657640341021217 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_ui_media/test_webkitplayer.py0000644000175000017500000000676012657640340025342 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.media.webkitplayer package. """ from unittest import TestCase from tests.functional import MagicMock, patch from openlp.core.ui.media.webkitplayer import WebkitPlayer class TestWebkitPlayer(TestCase): """ Test the functions in the :mod:`webkitplayer` module. """ def check_available_video_disabled_test(self): """ Test of webkit video unavailability """ # GIVEN: A WebkitPlayer instance and a mocked QWebPage mocked_qwebpage = MagicMock() mocked_qwebpage.mainFrame().evaluateJavaScript.return_value = '[object HTMLUnknownElement]' with patch('openlp.core.ui.media.webkitplayer.QtWebKitWidgets.QWebPage', **{'return_value': mocked_qwebpage}): webkit_player = WebkitPlayer(None) # WHEN: An checking if the player is available available = webkit_player.check_available() # THEN: The player should not be available when '[object HTMLUnknownElement]' is returned self.assertEqual(False, available, 'The WebkitPlayer should not be available when video feature detection fails') def check_available_video_enabled_test(self): """ Test of webkit video availability """ # GIVEN: A WebkitPlayer instance and a mocked QWebPage mocked_qwebpage = MagicMock() mocked_qwebpage.mainFrame().evaluateJavaScript.return_value = '[object HTMLVideoElement]' with patch('openlp.core.ui.media.webkitplayer.QtWebKitWidgets.QWebPage', **{'return_value': mocked_qwebpage}): webkit_player = WebkitPlayer(None) # WHEN: An checking if the player is available available = webkit_player.check_available() # THEN: The player should be available when '[object HTMLVideoElement]' is returned self.assertEqual(True, available, 'The WebkitPlayer should be available when video feature detection passes') OpenLP-2.4/tests/functional/openlp_core_ui_media/__init__.py0000644000175000017500000000310212657640340023323 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.media package. """ OpenLP-2.4/tests/functional/openlp_core_ui_media/test_mediacontroller.py0000644000175000017500000002763212657640340026024 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.media package. """ from unittest import TestCase from openlp.core.ui.media.mediacontroller import MediaController from openlp.core.ui.media.mediaplayer import MediaPlayer from openlp.core.common import Registry from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMediaController(TestCase, TestMixin): def setUp(self): Registry.create() Registry().register('service_manager', MagicMock()) def generate_extensions_lists_test(self): """ Test that the extensions are create correctly """ # GIVEN: A MediaController and an active player with audio and video extensions media_controller = MediaController() media_player = MediaPlayer(None) media_player.is_active = True media_player.audio_extensions_list = ['*.mp3', '*.wav', '*.wma', '*.ogg'] media_player.video_extensions_list = ['*.mp4', '*.mov', '*.avi', '*.ogm'] media_controller.register_players(media_player) # WHEN: calling _generate_extensions_lists media_controller._generate_extensions_lists() # THEN: extensions list should have been copied from the player to the mediacontroller self.assertListEqual(media_player.video_extensions_list, media_controller.video_extensions_list, 'Video extensions should be the same') self.assertListEqual(media_player.audio_extensions_list, media_controller.audio_extensions_list, 'Audio extensions should be the same') def resize_test(self): """ Test that the resize method is called correctly """ # GIVEN: A media controller, a player and a display media_controller = MediaController() mocked_player = MagicMock() mocked_display = MagicMock() # WHEN: resize() is called media_controller.resize(mocked_display, mocked_player) # THEN: The player's resize method should be called correctly mocked_player.resize.assert_called_with(mocked_display) def check_file_type_no_players_test(self): """ Test that we don't try to play media when no players available """ # GIVEN: A mocked UiStrings, get_media_players, controller, display and service_item with patch('openlp.core.ui.media.mediacontroller.get_media_players') as mocked_get_media_players,\ patch('openlp.core.ui.media.mediacontroller.UiStrings') as mocked_uistrings: mocked_get_media_players.return_value = ([], '') mocked_ret_uistrings = MagicMock() mocked_ret_uistrings.Automatic = 1 mocked_uistrings.return_value = mocked_ret_uistrings media_controller = MediaController() mocked_controller = MagicMock() mocked_display = MagicMock() mocked_service_item = MagicMock() mocked_service_item.processor = 1 # WHEN: calling _check_file_type when no players exists ret = media_controller._check_file_type(mocked_controller, mocked_display, mocked_service_item) # THEN: it should return False self.assertFalse(ret, '_check_file_type should return False when no mediaplayers are available.') @patch('openlp.core.ui.media.mediacontroller.get_media_players') @patch('openlp.core.ui.media.mediacontroller.UiStrings') def check_file_type_no_processor_test(self, mocked_uistrings, mocked_get_media_players): """ Test that we don't try to play media when the processor for the service item is None """ # GIVEN: A mocked UiStrings, get_media_players, controller, display and service_item mocked_get_media_players.return_value = ([], '') mocked_ret_uistrings = MagicMock() mocked_ret_uistrings.Automatic = 1 mocked_uistrings.return_value = mocked_ret_uistrings media_controller = MediaController() mocked_controller = MagicMock() mocked_display = MagicMock() mocked_service_item = MagicMock() mocked_service_item.processor = None # WHEN: calling _check_file_type when the processor for the service item is None ret = media_controller._check_file_type(mocked_controller, mocked_display, mocked_service_item) # THEN: it should return False self.assertFalse(ret, '_check_file_type should return False when the processor for service_item is None.') @patch('openlp.core.ui.media.mediacontroller.get_media_players') @patch('openlp.core.ui.media.mediacontroller.UiStrings') def check_file_type_automatic_processor_test(self, mocked_uistrings, mocked_get_media_players): """ Test that we can play media when players are available and we have a automatic processor from the service item """ # GIVEN: A mocked UiStrings, get_media_players, controller, display and service_item mocked_get_media_players.return_value = (['vlc', 'webkit'], '') mocked_ret_uistrings = MagicMock() mocked_ret_uistrings.Automatic = 1 mocked_uistrings.return_value = mocked_ret_uistrings media_controller = MediaController() mocked_vlc = MagicMock() mocked_vlc.video_extensions_list = ['*.mp4'] media_controller.media_players = {'vlc': mocked_vlc, 'webkit': MagicMock()} mocked_controller = MagicMock() mocked_suffix = MagicMock() mocked_suffix.return_value = 'mp4' mocked_controller.media_info.file_info.suffix = mocked_suffix mocked_display = MagicMock() mocked_service_item = MagicMock() mocked_service_item.processor = 1 # WHEN: calling _check_file_type when the processor for the service item is None ret = media_controller._check_file_type(mocked_controller, mocked_display, mocked_service_item) # THEN: it should return True self.assertTrue(ret, '_check_file_type should return True when mediaplayers are available and ' 'the service item has an automatic processor.') @patch('openlp.core.ui.media.mediacontroller.get_media_players') @patch('openlp.core.ui.media.mediacontroller.UiStrings') def check_file_type_processor_different_from_available_test(self, mocked_uistrings, mocked_get_media_players): """ Test that we can play media when players available are different from the processor from the service item """ # GIVEN: A mocked UiStrings, get_media_players, controller, display and service_item mocked_get_media_players.return_value = (['phonon'], '') mocked_ret_uistrings = MagicMock() mocked_ret_uistrings.Automatic = 'automatic' mocked_uistrings.return_value = mocked_ret_uistrings media_controller = MediaController() mocked_phonon = MagicMock() mocked_phonon.video_extensions_list = ['*.mp4'] media_controller.media_players = {'phonon': mocked_phonon} mocked_controller = MagicMock() mocked_suffix = MagicMock() mocked_suffix.return_value = 'mp4' mocked_controller.media_info.file_info.suffix = mocked_suffix mocked_display = MagicMock() mocked_service_item = MagicMock() mocked_service_item.processor = 'vlc' # WHEN: calling _check_file_type when the processor for the service item is None ret = media_controller._check_file_type(mocked_controller, mocked_display, mocked_service_item) # THEN: it should return True self.assertTrue(ret, '_check_file_type should return True when the players available are different' 'from the processor from the service item.') def media_play_msg_test(self): """ Test that the media controller responds to the request to play a loaded video """ # GIVEN: A media controller and a message with two elements media_controller = MediaController() message = (1, 2) # WHEN: media_play_msg() is called with patch.object(media_controller, u'media_play') as mocked_media_play: media_controller.media_play_msg(message, False) # THEN: The underlying method is called mocked_media_play.assert_called_with(1, False) def media_pause_msg_test(self): """ Test that the media controller responds to the request to pause a loaded video """ # GIVEN: A media controller and a message with two elements media_controller = MediaController() message = (1, 2) # WHEN: media_play_msg() is called with patch.object(media_controller, u'media_pause') as mocked_media_pause: media_controller.media_pause_msg(message) # THEN: The underlying method is called mocked_media_pause.assert_called_with(1) def media_stop_msg_test(self): """ Test that the media controller responds to the request to stop a loaded video """ # GIVEN: A media controller and a message with two elements media_controller = MediaController() message = (1, 2) # WHEN: media_play_msg() is called with patch.object(media_controller, u'media_stop') as mocked_media_stop: media_controller.media_stop_msg(message) # THEN: The underlying method is called mocked_media_stop.assert_called_with(1) def media_volume_msg_test(self): """ Test that the media controller responds to the request to change the volume """ # GIVEN: A media controller and a message with two elements media_controller = MediaController() message = (1, [50]) # WHEN: media_play_msg() is called with patch.object(media_controller, u'media_volume') as mocked_media_volume: media_controller.media_volume_msg(message) # THEN: The underlying method is called mocked_media_volume.assert_called_with(1, 50) def media_seek_msg_test(self): """ Test that the media controller responds to the request to seek to a particular position """ # GIVEN: A media controller and a message with two elements media_controller = MediaController() message = (1, [800]) # WHEN: media_play_msg() is called with patch.object(media_controller, u'media_seek') as mocked_media_seek: media_controller.media_seek_msg(message) # THEN: The underlying method is called mocked_media_seek.assert_called_with(1, 800) OpenLP-2.4/tests/functional/openlp_core_ui_media/test_vlcplayer.py0000644000175000017500000012771612657640340024646 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.media.vlcplayer package. """ import os import sys from datetime import datetime, timedelta from unittest import TestCase, skip from openlp.core.common import Registry from openlp.core.ui.media import MediaState, MediaType from openlp.core.ui.media.vlcplayer import AUDIO_EXT, VIDEO_EXT, VlcPlayer, get_vlc from tests.functional import MagicMock, patch, call from tests.helpers import MockDateTime from tests.helpers.testmixin import TestMixin class TestVLCPlayer(TestCase, TestMixin): """ Test the functions in the :mod:`vlcplayer` module. """ def setUp(self): """ Common setup for all the tests """ if 'VLC_PLUGIN_PATH' in os.environ: del os.environ['VLC_PLUGIN_PATH'] if 'openlp.core.ui.media.vendor.vlc' in sys.modules: del sys.modules['openlp.core.ui.media.vendor.vlc'] MockDateTime.revert() @skip('No way to test this') @patch('openlp.core.ui.media.vlcplayer.vlc') def get_vlc_fails_and_removes_module_test(self, mocked_vlc): """ Test that when the VLC import fails, it removes the module from sys.modules """ # GIVEN: We're on OS X and we don't have the VLC plugin path set mocked_vlc.Instance.side_effect = NameError mocked_vlc.libvlc_get_version.return_value = b'0.0.0' # WHEN: An checking if the player is available get_vlc() # THEN: The extra environment variable should be there self.assertNotIn('openlp.core.ui.media.vendor.vlc', sys.modules) @patch('openlp.core.ui.media.vlcplayer.is_macosx') def fix_vlc_22_plugin_path_test(self, mocked_is_macosx): """ Test that on OS X we set the VLC plugin path to fix a bug in the VLC module """ # GIVEN: We're on OS X and we don't have the VLC plugin path set mocked_is_macosx.return_value = True # WHEN: An checking if the player is available get_vlc() # THEN: The extra environment variable should be there self.assertIn('VLC_PLUGIN_PATH', os.environ, 'The plugin path should be in the environment variables') self.assertEqual('/Applications/VLC.app/Contents/MacOS/plugins', os.environ['VLC_PLUGIN_PATH']) @patch.dict(os.environ) @patch('openlp.core.ui.media.vlcplayer.is_macosx') def not_osx_fix_vlc_22_plugin_path_test(self, mocked_is_macosx): """ Test that on Linux or some other non-OS X we do not set the VLC plugin path """ # GIVEN: We're not on OS X and we don't have the VLC plugin path set mocked_is_macosx.return_value = False # WHEN: An checking if the player is available get_vlc() # THEN: The extra environment variable should NOT be there self.assertNotIn('VLC_PLUGIN_PATH', os.environ, 'The plugin path should NOT be in the environment variables') def init_test(self): """ Test that the VLC player class initialises correctly """ # GIVEN: A mocked out list of extensions # TODO: figure out how to mock out the lists of extensions # WHEN: The VlcPlayer class is instantiated vlc_player = VlcPlayer(None) # THEN: The correct variables are set self.assertEqual('VLC', vlc_player.original_name) self.assertEqual('&VLC', vlc_player.display_name) self.assertIsNone(vlc_player.parent) self.assertTrue(vlc_player.can_folder) self.assertListEqual(AUDIO_EXT, vlc_player.audio_extensions_list) self.assertListEqual(VIDEO_EXT, vlc_player.video_extensions_list) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.is_macosx') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.QtWidgets') @patch('openlp.core.ui.media.vlcplayer.Settings') def setup_test(self, MockedSettings, MockedQtWidgets, mocked_get_vlc, mocked_is_macosx, mocked_is_win): """ Test the setup method """ # GIVEN: A bunch of mocked out stuff and a VlcPlayer object mocked_is_macosx.return_value = False mocked_is_win.return_value = False mocked_settings = MagicMock() mocked_settings.value.return_value = True MockedSettings.return_value = mocked_settings mocked_qframe = MagicMock() mocked_qframe.winId.return_value = 2 MockedQtWidgets.QFrame.NoFrame = 1 MockedQtWidgets.QFrame.return_value = mocked_qframe mocked_media_player_new = MagicMock() mocked_instance = MagicMock() mocked_instance.media_player_new.return_value = mocked_media_player_new mocked_vlc = MagicMock() mocked_vlc.Instance.return_value = mocked_instance mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.has_audio = False mocked_display.controller.is_live = True mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: setup() is run vlc_player.setup(mocked_display) # THEN: The VLC widget should be set up correctly self.assertEqual(mocked_display.vlc_widget, mocked_qframe) mocked_qframe.setFrameStyle.assert_called_with(1) mocked_settings.value.assert_called_with('advanced/hide mouse') mocked_vlc.Instance.assert_called_with('--no-video-title-show --no-audio --no-video-title-show ' '--mouse-hide-timeout=0') self.assertEqual(mocked_display.vlc_instance, mocked_instance) mocked_instance.media_player_new.assert_called_with() self.assertEqual(mocked_display.vlc_media_player, mocked_media_player_new) mocked_display.size.assert_called_with() mocked_qframe.resize.assert_called_with((10, 10)) mocked_qframe.raise_.assert_called_with() mocked_qframe.hide.assert_called_with() mocked_media_player_new.set_xwindow.assert_called_with(2) self.assertTrue(vlc_player.has_own_widget) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.is_macosx') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.QtWidgets') @patch('openlp.core.ui.media.vlcplayer.Settings') def setup_has_audio_test(self, MockedSettings, MockedQtWidgets, mocked_get_vlc, mocked_is_macosx, mocked_is_win): """ Test the setup method when has_audio is True """ # GIVEN: A bunch of mocked out stuff and a VlcPlayer object mocked_is_macosx.return_value = False mocked_is_win.return_value = False mocked_settings = MagicMock() mocked_settings.value.return_value = True MockedSettings.return_value = mocked_settings mocked_qframe = MagicMock() mocked_qframe.winId.return_value = 2 MockedQtWidgets.QFrame.NoFrame = 1 MockedQtWidgets.QFrame.return_value = mocked_qframe mocked_media_player_new = MagicMock() mocked_instance = MagicMock() mocked_instance.media_player_new.return_value = mocked_media_player_new mocked_vlc = MagicMock() mocked_vlc.Instance.return_value = mocked_instance mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.has_audio = True mocked_display.controller.is_live = True mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: setup() is run vlc_player.setup(mocked_display) # THEN: The VLC instance should be created with the correct options mocked_vlc.Instance.assert_called_with('--no-video-title-show --mouse-hide-timeout=0') @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.is_macosx') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.QtWidgets') @patch('openlp.core.ui.media.vlcplayer.Settings') def setup_visible_mouse_test(self, MockedSettings, MockedQtWidgets, mocked_get_vlc, mocked_is_macosx, mocked_is_win): """ Test the setup method when Settings().value("hide mouse") is False """ # GIVEN: A bunch of mocked out stuff and a VlcPlayer object mocked_is_macosx.return_value = False mocked_is_win.return_value = False mocked_settings = MagicMock() mocked_settings.value.return_value = False MockedSettings.return_value = mocked_settings mocked_qframe = MagicMock() mocked_qframe.winId.return_value = 2 MockedQtWidgets.QFrame.NoFrame = 1 MockedQtWidgets.QFrame.return_value = mocked_qframe mocked_media_player_new = MagicMock() mocked_instance = MagicMock() mocked_instance.media_player_new.return_value = mocked_media_player_new mocked_vlc = MagicMock() mocked_vlc.Instance.return_value = mocked_instance mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.has_audio = False mocked_display.controller.is_live = True mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: setup() is run vlc_player.setup(mocked_display) # THEN: The VLC instance should be created with the correct options mocked_vlc.Instance.assert_called_with('--no-video-title-show --no-audio --no-video-title-show') @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.is_macosx') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.QtWidgets') @patch('openlp.core.ui.media.vlcplayer.Settings') def setup_windows_test(self, MockedSettings, MockedQtWidgets, mocked_get_vlc, mocked_is_macosx, mocked_is_win): """ Test the setup method when running on Windows """ # GIVEN: A bunch of mocked out stuff and a VlcPlayer object mocked_is_macosx.return_value = False mocked_is_win.return_value = True mocked_settings = MagicMock() mocked_settings.value.return_value = False MockedSettings.return_value = mocked_settings mocked_qframe = MagicMock() mocked_qframe.winId.return_value = 2 MockedQtWidgets.QFrame.NoFrame = 1 MockedQtWidgets.QFrame.return_value = mocked_qframe mocked_media_player_new = MagicMock() mocked_instance = MagicMock() mocked_instance.media_player_new.return_value = mocked_media_player_new mocked_vlc = MagicMock() mocked_vlc.Instance.return_value = mocked_instance mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.has_audio = False mocked_display.controller.is_live = True mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: setup() is run vlc_player.setup(mocked_display) # THEN: set_hwnd should be called mocked_media_player_new.set_hwnd.assert_called_with(2) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.is_macosx') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.QtWidgets') @patch('openlp.core.ui.media.vlcplayer.Settings') def setup_osx_test(self, MockedSettings, MockedQtWidgets, mocked_get_vlc, mocked_is_macosx, mocked_is_win): """ Test the setup method when running on OS X """ # GIVEN: A bunch of mocked out stuff and a VlcPlayer object mocked_is_macosx.return_value = True mocked_is_win.return_value = False mocked_settings = MagicMock() mocked_settings.value.return_value = False MockedSettings.return_value = mocked_settings mocked_qframe = MagicMock() mocked_qframe.winId.return_value = 2 MockedQtWidgets.QFrame.NoFrame = 1 MockedQtWidgets.QFrame.return_value = mocked_qframe mocked_media_player_new = MagicMock() mocked_instance = MagicMock() mocked_instance.media_player_new.return_value = mocked_media_player_new mocked_vlc = MagicMock() mocked_vlc.Instance.return_value = mocked_instance mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.has_audio = False mocked_display.controller.is_live = True mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: setup() is run vlc_player.setup(mocked_display) # THEN: set_nsobject should be called mocked_media_player_new.set_nsobject.assert_called_with(2) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def check_available_test(self, mocked_get_vlc): """ Check that when the "vlc" module is available, then VLC is set as available """ # GIVEN: A mocked out get_vlc() method and a VlcPlayer instance mocked_get_vlc.return_value = MagicMock() vlc_player = VlcPlayer(None) # WHEN: vlc is_available = vlc_player.check_available() # THEN: VLC should be available self.assertTrue(is_available) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def check_not_available_test(self, mocked_get_vlc): """ Check that when the "vlc" module is not available, then VLC is set as unavailable """ # GIVEN: A mocked out get_vlc() method and a VlcPlayer instance mocked_get_vlc.return_value = None vlc_player = VlcPlayer(None) # WHEN: vlc is_available = vlc_player.check_available() # THEN: VLC should NOT be available self.assertFalse(is_available) @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.os.path.normcase') def load_test(self, mocked_normcase, mocked_get_vlc): """ Test loading a video into VLC """ # GIVEN: A mocked out get_vlc() method media_path = '/path/to/media.mp4' mocked_normcase.side_effect = lambda x: x mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.volume = 100 mocked_controller.media_info.media_type = MediaType.Video mocked_controller.media_info.file_info.absoluteFilePath.return_value = media_path mocked_vlc_media = MagicMock() mocked_media = MagicMock() mocked_media.get_duration.return_value = 10000 mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_instance.media_new_path.return_value = mocked_vlc_media mocked_display.vlc_media_player.get_media.return_value = mocked_media vlc_player = VlcPlayer(None) # WHEN: A video is loaded into VLC with patch.object(vlc_player, 'volume') as mocked_volume: result = vlc_player.load(mocked_display) # THEN: The video should be loaded mocked_normcase.assert_called_with(media_path) mocked_display.vlc_instance.media_new_path.assert_called_with(media_path) self.assertEqual(mocked_vlc_media, mocked_display.vlc_media) mocked_display.vlc_media_player.set_media.assert_called_with(mocked_vlc_media) mocked_vlc_media.parse.assert_called_with() mocked_volume.assert_called_with(mocked_display, 100) self.assertEqual(10, mocked_controller.media_info.length) self.assertTrue(result) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.os.path.normcase') def load_audio_cd_test(self, mocked_normcase, mocked_get_vlc, mocked_is_win): """ Test loading an audio CD into VLC """ # GIVEN: A mocked out get_vlc() method mocked_is_win.return_value = False media_path = '/dev/sr0' mocked_normcase.side_effect = lambda x: x mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.volume = 100 mocked_controller.media_info.media_type = MediaType.CD mocked_controller.media_info.file_info.absoluteFilePath.return_value = media_path mocked_controller.media_info.title_track = 1 mocked_vlc_media = MagicMock() mocked_media = MagicMock() mocked_media.get_duration.return_value = 10000 mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_instance.media_new_location.return_value = mocked_vlc_media mocked_display.vlc_media_player.get_media.return_value = mocked_media mocked_subitems = MagicMock() mocked_subitems.count.return_value = 1 mocked_subitems.item_at_index.return_value = mocked_vlc_media mocked_vlc_media.subitems.return_value = mocked_subitems vlc_player = VlcPlayer(None) # WHEN: An audio CD is loaded into VLC with patch.object(vlc_player, 'volume') as mocked_volume, \ patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait: result = vlc_player.load(mocked_display) # THEN: The video should be loaded mocked_normcase.assert_called_with(media_path) mocked_display.vlc_instance.media_new_location.assert_called_with('cdda://' + media_path) self.assertEqual(mocked_vlc_media, mocked_display.vlc_media) mocked_display.vlc_media_player.set_media.assert_called_with(mocked_vlc_media) mocked_vlc_media.parse.assert_called_with() mocked_volume.assert_called_with(mocked_display, 100) self.assertEqual(10, mocked_controller.media_info.length) self.assertTrue(result) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.os.path.normcase') def load_audio_cd_on_windows_test(self, mocked_normcase, mocked_get_vlc, mocked_is_win): """ Test loading an audio CD into VLC on Windows """ # GIVEN: A mocked out get_vlc() method mocked_is_win.return_value = True media_path = '/dev/sr0' mocked_normcase.side_effect = lambda x: x mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.volume = 100 mocked_controller.media_info.media_type = MediaType.CD mocked_controller.media_info.file_info.absoluteFilePath.return_value = media_path mocked_controller.media_info.title_track = 1 mocked_vlc_media = MagicMock() mocked_media = MagicMock() mocked_media.get_duration.return_value = 10000 mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_instance.media_new_location.return_value = mocked_vlc_media mocked_display.vlc_media_player.get_media.return_value = mocked_media mocked_subitems = MagicMock() mocked_subitems.count.return_value = 1 mocked_subitems.item_at_index.return_value = mocked_vlc_media mocked_vlc_media.subitems.return_value = mocked_subitems vlc_player = VlcPlayer(None) # WHEN: An audio CD is loaded into VLC with patch.object(vlc_player, 'volume') as mocked_volume, \ patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait: result = vlc_player.load(mocked_display) # THEN: The video should be loaded mocked_normcase.assert_called_with(media_path) mocked_display.vlc_instance.media_new_location.assert_called_with('cdda:///' + media_path) self.assertEqual(mocked_vlc_media, mocked_display.vlc_media) mocked_display.vlc_media_player.set_media.assert_called_with(mocked_vlc_media) mocked_vlc_media.parse.assert_called_with() mocked_volume.assert_called_with(mocked_display, 100) self.assertEqual(10, mocked_controller.media_info.length) self.assertTrue(result) @patch('openlp.core.ui.media.vlcplayer.is_win') @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.os.path.normcase') def load_audio_cd_no_tracks_test(self, mocked_normcase, mocked_get_vlc, mocked_is_win): """ Test loading an audio CD that has no tracks into VLC """ # GIVEN: A mocked out get_vlc() method mocked_is_win.return_value = False media_path = '/dev/sr0' mocked_normcase.side_effect = lambda x: x mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.volume = 100 mocked_controller.media_info.media_type = MediaType.CD mocked_controller.media_info.file_info.absoluteFilePath.return_value = media_path mocked_controller.media_info.title_track = 1 mocked_vlc_media = MagicMock() mocked_media = MagicMock() mocked_media.get_duration.return_value = 10000 mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_instance.media_new_location.return_value = mocked_vlc_media mocked_display.vlc_media_player.get_media.return_value = mocked_media mocked_subitems = MagicMock() mocked_subitems.count.return_value = 0 mocked_subitems.item_at_index.return_value = mocked_vlc_media mocked_vlc_media.subitems.return_value = mocked_subitems vlc_player = VlcPlayer(None) # WHEN: An audio CD is loaded into VLC with patch.object(vlc_player, 'volume') as mocked_volume, \ patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait: result = vlc_player.load(mocked_display) # THEN: The video should be loaded mocked_normcase.assert_called_with(media_path) mocked_display.vlc_instance.media_new_location.assert_called_with('cdda://' + media_path) self.assertEqual(mocked_vlc_media, mocked_display.vlc_media) self.assertEqual(0, mocked_subitems.item_at_index.call_count) mocked_display.vlc_media_player.set_media.assert_called_with(mocked_vlc_media) self.assertEqual(0, mocked_vlc_media.parse.call_count) self.assertFalse(result) @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.datetime', MockDateTime) def media_state_wait_test(self, mocked_get_vlc): """ Check that waiting for a state change works """ # GIVEN: A mocked out get_vlc method mocked_vlc = MagicMock() mocked_vlc.State.Error = 1 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 2 Registry.create() mocked_application = MagicMock() Registry().register('application', mocked_application) vlc_player = VlcPlayer(None) # WHEN: media_state_wait() is called result = vlc_player.media_state_wait(mocked_display, 2) # THEN: The results should be True self.assertTrue(result) @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.datetime', MockDateTime) def media_state_wait_error_test(self, mocked_get_vlc): """ Check that getting an error when waiting for a state change returns False """ # GIVEN: A mocked out get_vlc method mocked_vlc = MagicMock() mocked_vlc.State.Error = 1 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 1 Registry.create() mocked_application = MagicMock() Registry().register('application', mocked_application) vlc_player = VlcPlayer(None) # WHEN: media_state_wait() is called result = vlc_player.media_state_wait(mocked_display, 2) # THEN: The results should be True self.assertFalse(result) @patch('openlp.core.ui.media.vlcplayer.get_vlc') @patch('openlp.core.ui.media.vlcplayer.datetime', MockDateTime) def media_state_wait_times_out_test(self, mocked_get_vlc): """ Check that waiting for a state returns False when it times out after 60 seconds """ # GIVEN: A mocked out get_vlc method timeout = MockDateTime.return_values[0] + timedelta(seconds=61) MockDateTime.return_values.append(timeout) mocked_vlc = MagicMock() mocked_vlc.State.Error = 1 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 2 Registry.create() mocked_application = MagicMock() Registry().register('application', mocked_application) vlc_player = VlcPlayer(None) # WHEN: media_state_wait() is called result = vlc_player.media_state_wait(mocked_display, 3) # THEN: The results should be True self.assertFalse(result) def resize_test(self): """ Test resizing the player """ # GIVEN: A display object and a VlcPlayer instance mocked_display = MagicMock() mocked_display.size.return_value = (10, 10) vlc_player = VlcPlayer(None) # WHEN: resize is called vlc_player.resize(mocked_display) # THEN: The right methods should have been called mocked_display.size.assert_called_with() mocked_display.vlc_widget.resize.assert_called_with((10, 10)) @patch('openlp.core.ui.media.vlcplayer.threading') @patch('openlp.core.ui.media.vlcplayer.get_vlc') def play_test(self, mocked_get_vlc, mocked_threading): """ Test the play() method """ # GIVEN: A bunch of mocked out things mocked_thread = MagicMock() mocked_threading.Thread.return_value = mocked_thread mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.start_time = 0 mocked_controller.media_info.media_type = MediaType.Video mocked_controller.media_info.volume = 100 mocked_media = MagicMock() mocked_media.get_duration.return_value = 50000 mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_media_player.get_media.return_value = mocked_media vlc_player = VlcPlayer(None) vlc_player.state = MediaState.Paused # WHEN: play() is called with patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait, \ patch.object(vlc_player, 'volume') as mocked_volume: mocked_media_state_wait.return_value = True result = vlc_player.play(mocked_display) # THEN: A bunch of things should happen to play the media mocked_thread.start.assert_called_with() self.assertEqual(50, mocked_controller.media_info.length) mocked_volume.assert_called_with(mocked_display, 100) mocked_controller.seek_slider.setMaximum.assert_called_with(50000) self.assertEqual(MediaState.Playing, vlc_player.state) mocked_display.vlc_widget.raise_.assert_called_with() self.assertTrue(result, 'The value returned from play() should be True') @patch('openlp.core.ui.media.vlcplayer.threading') @patch('openlp.core.ui.media.vlcplayer.get_vlc') def play_media_wait_state_not_playing_test(self, mocked_get_vlc, mocked_threading): """ Test the play() method when media_wait_state() returns False """ # GIVEN: A bunch of mocked out things mocked_thread = MagicMock() mocked_threading.Thread.return_value = mocked_thread mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.start_time = 0 mocked_display = MagicMock() mocked_display.controller = mocked_controller vlc_player = VlcPlayer(None) vlc_player.state = MediaState.Paused # WHEN: play() is called with patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait, \ patch.object(vlc_player, 'volume') as mocked_volume: mocked_media_state_wait.return_value = False result = vlc_player.play(mocked_display) # THEN: A thread should be started, but the method should return False mocked_thread.start.assert_called_with() self.assertFalse(result) @patch('openlp.core.ui.media.vlcplayer.threading') @patch('openlp.core.ui.media.vlcplayer.get_vlc') def play_dvd_test(self, mocked_get_vlc, mocked_threading): """ Test the play() method with a DVD """ # GIVEN: A bunch of mocked out things mocked_thread = MagicMock() mocked_threading.Thread.return_value = mocked_thread mocked_vlc = MagicMock() mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.start_time = 0 mocked_controller.media_info.end_time = 50 mocked_controller.media_info.media_type = MediaType.DVD mocked_controller.media_info.volume = 100 mocked_controller.media_info.title_track = 1 mocked_controller.media_info.audio_track = 1 mocked_controller.media_info.subtitle_track = 1 mocked_display = MagicMock() mocked_display.controller = mocked_controller vlc_player = VlcPlayer(None) vlc_player.state = MediaState.Paused # WHEN: play() is called with patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait, \ patch.object(vlc_player, 'volume') as mocked_volume: mocked_media_state_wait.return_value = True result = vlc_player.play(mocked_display) # THEN: A bunch of things should happen to play the media mocked_thread.start.assert_called_with() mocked_display.vlc_media_player.set_title.assert_called_with(1) mocked_display.vlc_media_player.play.assert_called_with() mocked_display.vlc_media_player.audio_set_track.assert_called_with(1) mocked_display.vlc_media_player.video_set_spu.assert_called_with(1) self.assertEqual(50, mocked_controller.media_info.length) mocked_volume.assert_called_with(mocked_display, 100) mocked_controller.seek_slider.setMaximum.assert_called_with(50000) self.assertEqual(MediaState.Playing, vlc_player.state) mocked_display.vlc_widget.raise_.assert_called_with() self.assertTrue(result, 'The value returned from play() should be True') @patch('openlp.core.ui.media.vlcplayer.get_vlc') def pause_test(self, mocked_get_vlc): """ Test that the pause method works correctly """ # GIVEN: A mocked out get_vlc method mocked_vlc = MagicMock() mocked_vlc.State.Playing = 1 mocked_vlc.State.Paused = 2 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 1 vlc_player = VlcPlayer(None) # WHEN: The media is paused with patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait: mocked_media_state_wait.return_value = True vlc_player.pause(mocked_display) # THEN: The pause method should exit early mocked_display.vlc_media.get_state.assert_called_with() mocked_display.vlc_media_player.pause.assert_called_with() mocked_media_state_wait.assert_called_with(mocked_display, 2) self.assertEqual(MediaState.Paused, vlc_player.state) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def pause_not_playing_test(self, mocked_get_vlc): """ Test the pause method when the player is not playing """ # GIVEN: A mocked out get_vlc method mocked_vlc = MagicMock() mocked_vlc.State.Playing = 1 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 2 vlc_player = VlcPlayer(None) # WHEN: The media is paused vlc_player.pause(mocked_display) # THEN: The pause method should exit early mocked_display.vlc_media.get_state.assert_called_with() self.assertEqual(0, mocked_display.vlc_media_player.pause.call_count) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def pause_fail_test(self, mocked_get_vlc): """ Test the pause method when the player fails to pause the media """ # GIVEN: A mocked out get_vlc method mocked_vlc = MagicMock() mocked_vlc.State.Playing = 1 mocked_vlc.State.Paused = 2 mocked_get_vlc.return_value = mocked_vlc mocked_display = MagicMock() mocked_display.vlc_media.get_state.return_value = 1 vlc_player = VlcPlayer(None) # WHEN: The media is paused with patch.object(vlc_player, 'media_state_wait') as mocked_media_state_wait: mocked_media_state_wait.return_value = False vlc_player.pause(mocked_display) # THEN: The pause method should exit early mocked_display.vlc_media.get_state.assert_called_with() mocked_display.vlc_media_player.pause.assert_called_with() mocked_media_state_wait.assert_called_with(mocked_display, 2) self.assertNotEqual(MediaState.Paused, vlc_player.state) @patch('openlp.core.ui.media.vlcplayer.threading') def stop_test(self, mocked_threading): """ Test stopping the current item """ # GIVEN: A display object and a VlcPlayer instance and some mocked threads mocked_thread = MagicMock() mocked_threading.Thread.return_value = mocked_thread mocked_stop = MagicMock() mocked_display = MagicMock() mocked_display.vlc_media_player.stop = mocked_stop vlc_player = VlcPlayer(None) # WHEN: stop is called vlc_player.stop(mocked_display) # THEN: A thread should have been started to stop VLC mocked_threading.Thread.assert_called_with(target=mocked_stop) mocked_thread.start.assert_called_with() self.assertEqual(MediaState.Stopped, vlc_player.state) def volume_test(self): """ Test setting the volume """ # GIVEN: A display object and a VlcPlayer instance mocked_display = MagicMock() mocked_display.has_audio = True vlc_player = VlcPlayer(None) # WHEN: The volume is set vlc_player.volume(mocked_display, 10) # THEN: The volume should have been set mocked_display.vlc_media_player.audio_set_volume.assert_called_with(10) def volume_no_audio_test(self): """ Test setting the volume when there's no audio """ # GIVEN: A display object and a VlcPlayer instance mocked_display = MagicMock() mocked_display.has_audio = False vlc_player = VlcPlayer(None) # WHEN: The volume is set vlc_player.volume(mocked_display, 10) # THEN: The volume should NOT have been set self.assertEqual(0, mocked_display.vlc_media_player.audio_set_volume.call_count) def seek_unseekable_media_test(self): """ Test seeking something that can't be seeked """ # GIVEN: Unseekable media mocked_display = MagicMock() mocked_display.controller.media_info.media_type = MediaType.Audio mocked_display.vlc_media_player.is_seekable.return_value = False vlc_player = VlcPlayer(None) # WHEN: seek() is called vlc_player.seek(mocked_display, 100) # THEN: nothing should happen mocked_display.vlc_media_player.is_seekable.assert_called_with() self.assertEqual(0, mocked_display.vlc_media_player.set_time.call_count) def seek_seekable_media_test(self): """ Test seeking something that is seekable, but not a DVD """ # GIVEN: Unseekable media mocked_display = MagicMock() mocked_display.controller.media_info.media_type = MediaType.Audio mocked_display.vlc_media_player.is_seekable.return_value = True vlc_player = VlcPlayer(None) # WHEN: seek() is called vlc_player.seek(mocked_display, 100) # THEN: nothing should happen mocked_display.vlc_media_player.is_seekable.assert_called_with() mocked_display.vlc_media_player.set_time.assert_called_with(100) def seek_dvd_test(self): """ Test seeking a DVD """ # GIVEN: Unseekable media mocked_display = MagicMock() mocked_display.controller.media_info.media_type = MediaType.DVD mocked_display.vlc_media_player.is_seekable.return_value = True mocked_display.controller.media_info.start_time = 3 vlc_player = VlcPlayer(None) # WHEN: seek() is called vlc_player.seek(mocked_display, 2000) # THEN: nothing should happen mocked_display.vlc_media_player.is_seekable.assert_called_with() mocked_display.vlc_media_player.set_time.assert_called_with(5000) def reset_test(self): """ Test the reset() method """ # GIVEN: Some mocked out stuff mocked_display = MagicMock() vlc_player = VlcPlayer(None) # WHEN: reset() is called vlc_player.reset(mocked_display) # THEN: The media should be stopped and invsibile mocked_display.vlc_media_player.stop.assert_called_with() mocked_display.vlc_widget.setVisible.assert_called_with(False) self.assertEqual(MediaState.Off, vlc_player.state) def set_visible_has_own_widget_test(self): """ Test the set_visible() method when the player has its own widget """ # GIVEN: Some mocked out stuff mocked_display = MagicMock() vlc_player = VlcPlayer(None) vlc_player.has_own_widget = True # WHEN: reset() is called vlc_player.set_visible(mocked_display, True) # THEN: The media should be stopped and invsibile mocked_display.vlc_widget.setVisible.assert_called_with(True) def set_visible_no_widget_test(self): """ Test the set_visible() method when the player doesn't have a widget """ # GIVEN: Some mocked out stuff mocked_display = MagicMock() vlc_player = VlcPlayer(None) vlc_player.has_own_widget = False # WHEN: reset() is called vlc_player.set_visible(mocked_display, True) # THEN: The media should be stopped and invsibile self.assertEqual(0, mocked_display.vlc_widget.setVisible.call_count) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def update_ui_test(self, mocked_get_vlc): """ Test updating the UI """ # GIVEN: A whole bunch of mocks mocked_vlc = MagicMock() mocked_vlc.State.Ended = 1 mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.end_time = 300 mocked_controller.seek_slider.isSliderDown.return_value = False mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_media.get_state.return_value = 1 mocked_display.vlc_media_player.get_time.return_value = 400000 vlc_player = VlcPlayer(None) # WHEN: update_ui() is called with patch.object(vlc_player, 'stop') as mocked_stop, \ patch.object(vlc_player, 'set_visible') as mocked_set_visible: vlc_player.update_ui(mocked_display) # THEN: Certain methods should be called mocked_stop.assert_called_with(mocked_display) self.assertEqual(2, mocked_stop.call_count) mocked_display.vlc_media_player.get_time.assert_called_with() mocked_set_visible.assert_called_with(mocked_display, False) mocked_controller.seek_slider.setSliderPosition.assert_called_with(400000) expected_calls = [call(True), call(False)] self.assertEqual(expected_calls, mocked_controller.seek_slider.blockSignals.call_args_list) @patch('openlp.core.ui.media.vlcplayer.get_vlc') def update_ui_dvd_test(self, mocked_get_vlc): """ Test updating the UI for a CD or DVD """ # GIVEN: A whole bunch of mocks mocked_vlc = MagicMock() mocked_vlc.State.Ended = 1 mocked_get_vlc.return_value = mocked_vlc mocked_controller = MagicMock() mocked_controller.media_info.start_time = 100 mocked_controller.media_info.end_time = 300 mocked_controller.seek_slider.isSliderDown.return_value = False mocked_display = MagicMock() mocked_display.controller = mocked_controller mocked_display.vlc_media.get_state.return_value = 1 mocked_display.vlc_media_player.get_time.return_value = 400000 mocked_display.controller.media_info.media_type = MediaType.DVD vlc_player = VlcPlayer(None) # WHEN: update_ui() is called with patch.object(vlc_player, 'stop') as mocked_stop, \ patch.object(vlc_player, 'set_visible') as mocked_set_visible: vlc_player.update_ui(mocked_display) # THEN: Certain methods should be called mocked_stop.assert_called_with(mocked_display) self.assertEqual(2, mocked_stop.call_count) mocked_display.vlc_media_player.get_time.assert_called_with() mocked_set_visible.assert_called_with(mocked_display, False) mocked_controller.seek_slider.setSliderPosition.assert_called_with(300000) expected_calls = [call(True), call(False)] self.assertEqual(expected_calls, mocked_controller.seek_slider.blockSignals.call_args_list) @patch('openlp.core.ui.media.vlcplayer.translate') def get_info_test(self, mocked_translate): """ Test that get_info() returns some information about the VLC player """ # GIVEN: A VlcPlayer mocked_translate.side_effect = lambda *x: x[1] vlc_player = VlcPlayer(None) # WHEN: get_info() is run info = vlc_player.get_info() # THEN: The information should be correct self.assertEqual('VLC is an external player which supports a number of different formats.
' 'Audio
' + str(AUDIO_EXT) + '
Video
' + str(VIDEO_EXT) + '
', info) OpenLP-2.4/tests/functional/openlp_core_common/0000755000175000017500000000000012657640341020733 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_common/__init__.py0000644000175000017500000000301012657640340023035 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_core_common/test_settings.py0000644000175000017500000001527712657640340024217 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.settings package. """ from unittest import TestCase from openlp.core.common import Settings from openlp.core.common.settings import recent_files_conv from tests.functional import patch from tests.helpers.testmixin import TestMixin class TestSettings(TestCase, TestMixin): """ Test the functions in the Settings module """ def setUp(self): """ Create the UI """ self.setup_application() self.build_settings() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def recent_files_conv_test(self): """ Test that recent_files_conv, converts various possible types of values correctly. """ # GIVEN: A list of possible value types and the expected results possible_values = [(['multiple', 'values'], ['multiple', 'values']), (['single value'], ['single value']), ('string value', ['string value']), (b'bytes value', ['bytes value']), ([], []), (None, [])] # WHEN: Calling recent_files_conv with the possible values for value, expected_result in possible_values: actual_result = recent_files_conv(value) # THEN: The actual result should be the same as the expected result self.assertEqual(actual_result, expected_result) def settings_basic_test(self): """ Test the Settings creation and its default usage """ # GIVEN: A new Settings setup # WHEN reading a setting for the first time default_value = Settings().value('core/has run wizard') # THEN the default value is returned self.assertFalse(default_value, 'The default value should be False') # WHEN a new value is saved into config Settings().setValue('core/has run wizard', True) # THEN the new value is returned when re-read self.assertTrue(Settings().value('core/has run wizard'), 'The saved value should have been returned') def settings_override_test(self): """ Test the Settings creation and its override usage """ # GIVEN: an override for the settings screen_settings = { 'test/extend': 'very wide', } Settings().extend_default_settings(screen_settings) # WHEN reading a setting for the first time extend = Settings().value('test/extend') # THEN the default value is returned self.assertEqual('very wide', extend, 'The default value of "very wide" should be returned') # WHEN a new value is saved into config Settings().setValue('test/extend', 'very short') # THEN the new value is returned when re-read self.assertEqual('very short', Settings().value('test/extend'), 'The saved value should be returned') def settings_override_with_group_test(self): """ Test the Settings creation and its override usage - with groups """ # GIVEN: an override for the settings screen_settings = { 'test/extend': 'very wide', } Settings.extend_default_settings(screen_settings) # WHEN reading a setting for the first time settings = Settings() settings.beginGroup('test') extend = settings.value('extend') # THEN the default value is returned self.assertEqual('very wide', extend, 'The default value defined should be returned') # WHEN a new value is saved into config Settings().setValue('test/extend', 'very short') # THEN the new value is returned when re-read self.assertEqual('very short', Settings().value('test/extend'), 'The saved value should be returned') def settings_nonexisting_test(self): """ Test the Settings on query for non-existing value """ # GIVEN: A new Settings setup with self.assertRaises(KeyError) as cm: # WHEN reading a setting that doesn't exists does_not_exist_value = Settings().value('core/does not exists') # THEN: An exception with the non-existing key should be thrown self.assertEqual(str(cm.exception), "'core/does not exists'", 'We should get an exception') def extend_default_settings_test(self): """ Test that the extend_default_settings method extends the default settings """ # GIVEN: A patched __default_settings__ dictionary with patch.dict(Settings.__default_settings__, {'test/setting 1': 1, 'test/setting 2': 2, 'test/setting 3': 3}, True): # WHEN: Calling extend_default_settings Settings.extend_default_settings({'test/setting 3': 4, 'test/extended 1': 1, 'test/extended 2': 2}) # THEN: The _default_settings__ dictionary_ should have the new keys self.assertEqual( Settings.__default_settings__, {'test/setting 1': 1, 'test/setting 2': 2, 'test/setting 3': 4, 'test/extended 1': 1, 'test/extended 2': 2}) OpenLP-2.4/tests/functional/openlp_core_common/test_registryproperties.py0000644000175000017500000000516112657640340026333 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Test the registry properties """ from unittest import TestCase from openlp.core.common import Registry, RegistryProperties from tests.functional import MagicMock class TestRegistryProperties(TestCase, RegistryProperties): """ Test the functions in the ThemeManager module """ def setUp(self): """ Create the Register """ Registry.create() def no_application_test(self): """ Test property if no registry value assigned """ # GIVEN an Empty Registry # WHEN there is no Application # THEN the application should be none self.assertEqual(self.application, None, 'The application value should be None') def application_test(self): """ Test property if registry value assigned """ # GIVEN an Empty Registry application = MagicMock() # WHEN the application is registered Registry().register('application', application) # THEN the application should be none self.assertEqual(self.application, application, 'The application value should match') OpenLP-2.4/tests/functional/openlp_core_common/test_registrymixin.py0000644000175000017500000000536012657640340025264 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.common package. """ import os from unittest import TestCase from openlp.core.common import RegistryMixin, Registry TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '../', '..', 'resources')) class TestRegistryMixin(TestCase): def registry_mixin_missing_test(self): """ Test the registry creation and its usage """ # GIVEN: A new registry Registry.create() # WHEN: I create a new class mock_1 = Test1() # THEN: The following methods are missing self.assertEqual(len(Registry().functions_list), 0), 'The function should not be in the dict anymore.' def registry_mixin_present_test(self): """ Test the registry creation and its usage """ # GIVEN: A new registry Registry.create() # WHEN: I create a new class mock_2 = Test2() # THEN: The following bootstrap methods should be present self.assertEqual(len(Registry().functions_list), 2), 'The bootstrap functions should be in the dict.' class Test1(object): def __init__(self): pass class Test2(RegistryMixin): def __init__(self): super(Test2, self).__init__(None) OpenLP-2.4/tests/functional/openlp_core_common/test_common.py0000644000175000017500000002103212657640340023631 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the AppLocation class and related methods. """ from unittest import TestCase from openlp.core.common import check_directory_exists, de_hump, trace_error_handler, translate, is_win, is_macosx, \ is_linux, clean_button_text from tests.functional import MagicMock, patch class TestCommonFunctions(TestCase): """ A test suite to test out various functions in the openlp.core.common module. """ def check_directory_exists_test(self): """ Test the check_directory_exists() function """ with patch('openlp.core.lib.os.path.exists') as mocked_exists, \ patch('openlp.core.lib.os.makedirs') as mocked_makedirs: # GIVEN: A directory to check and a mocked out os.makedirs and os.path.exists directory_to_check = 'existing/directory' # WHEN: os.path.exists returns True and we check to see if the directory exists mocked_exists.return_value = True check_directory_exists(directory_to_check) # THEN: Only os.path.exists should have been called mocked_exists.assert_called_with(directory_to_check) self.assertIsNot(mocked_makedirs.called, 'os.makedirs should not have been called') # WHEN: os.path.exists returns False and we check the directory exists mocked_exists.return_value = False check_directory_exists(directory_to_check) # THEN: Both the mocked functions should have been called mocked_exists.assert_called_with(directory_to_check) mocked_makedirs.assert_called_with(directory_to_check) # WHEN: os.path.exists raises an IOError mocked_exists.side_effect = IOError() check_directory_exists(directory_to_check) # THEN: We shouldn't get an exception though the mocked exists has been called mocked_exists.assert_called_with(directory_to_check) # WHEN: Some other exception is raised mocked_exists.side_effect = ValueError() # THEN: check_directory_exists raises an exception mocked_exists.assert_called_with(directory_to_check) self.assertRaises(ValueError, check_directory_exists, directory_to_check) def de_hump_conversion_test(self): """ Test the de_hump function with a class name """ # GIVEN: a Class name in Camel Case string = "MyClass" # WHEN: we call de_hump new_string = de_hump(string) # THEN: the new string should be converted to python format self.assertTrue(new_string == "my_class", 'The class name should have been converted') def de_hump_static_test(self): """ Test the de_hump function with a python string """ # GIVEN: a Class name in Camel Case string = "my_class" # WHEN: we call de_hump new_string = de_hump(string) # THEN: the new string should be converted to python format self.assertTrue(new_string == "my_class", 'The class name should have been preserved') def trace_error_handler_test(self): """ Test the trace_error_handler() method """ # GIVEN: Mocked out objects with patch('openlp.core.common.traceback') as mocked_traceback: mocked_traceback.extract_stack.return_value = [('openlp.fake', 56, None, 'trace_error_handler_test')] mocked_logger = MagicMock() # WHEN: trace_error_handler() is called trace_error_handler(mocked_logger) # THEN: The mocked_logger.error() method should have been called with the correct parameters mocked_logger.error.assert_called_with( 'OpenLP Error trace\n File openlp.fake at line 56 \n\t called trace_error_handler_test') def translate_test(self): """ Test the translate() function """ # GIVEN: A string to translate and a mocked Qt translate function context = 'OpenLP.Tests' text = 'Untranslated string' comment = 'A comment' mocked_translate = MagicMock(return_value='Translated string') # WHEN: we call the translate function result = translate(context, text, comment, mocked_translate) # THEN: the translated string should be returned, and the mocked function should have been called mocked_translate.assert_called_with(context, text, comment) self.assertEqual('Translated string', result, 'The translated string should have been returned') def is_win_test(self): """ Test the is_win() function """ # GIVEN: Mocked out objects with patch('openlp.core.common.os') as mocked_os, patch('openlp.core.common.sys') as mocked_sys: # WHEN: The mocked os.name and sys.platform are set to 'nt' and 'win32' repectivly mocked_os.name = 'nt' mocked_sys.platform = 'win32' # THEN: The three platform functions should perform properly self.assertTrue(is_win(), 'is_win() should return True') self.assertFalse(is_macosx(), 'is_macosx() should return False') self.assertFalse(is_linux(), 'is_linux() should return False') def is_macosx_test(self): """ Test the is_macosx() function """ # GIVEN: Mocked out objects with patch('openlp.core.common.os') as mocked_os, patch('openlp.core.common.sys') as mocked_sys: # WHEN: The mocked os.name and sys.platform are set to 'posix' and 'darwin' repectivly mocked_os.name = 'posix' mocked_sys.platform = 'darwin' # THEN: The three platform functions should perform properly self.assertTrue(is_macosx(), 'is_macosx() should return True') self.assertFalse(is_win(), 'is_win() should return False') self.assertFalse(is_linux(), 'is_linux() should return False') def is_linux_test(self): """ Test the is_linux() function """ # GIVEN: Mocked out objects with patch('openlp.core.common.os') as mocked_os, patch('openlp.core.common.sys') as mocked_sys: # WHEN: The mocked os.name and sys.platform are set to 'posix' and 'linux3' repectivly mocked_os.name = 'posix' mocked_sys.platform = 'linux3' # THEN: The three platform functions should perform properly self.assertTrue(is_linux(), 'is_linux() should return True') self.assertFalse(is_win(), 'is_win() should return False') self.assertFalse(is_macosx(), 'is_macosx() should return False') def clean_button_text_test(self): """ Test the clean_button_text() function. """ # GIVEN: Button text input_text = '&Next >' expected_text = 'Next' # WHEN: The button caption is sent through the clean_button_text function actual_text = clean_button_text(input_text) # THEN: The text should have been cleaned self.assertEqual(expected_text, actual_text, 'The text should be clean') OpenLP-2.4/tests/functional/openlp_core_common/test_registry.py0000644000175000017500000001211612657640340024214 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib package. """ import os from unittest import TestCase from openlp.core.common import Registry from tests.functional import MagicMock TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '../', '..', 'resources')) class TestRegistry(TestCase): def registry_service_test(self): """ Test the registry creation and its usage """ # GIVEN: A new registry Registry.create() # WHEN: I add a component it should save it mock_1 = MagicMock() Registry().register('test1', mock_1) # THEN: we should be able retrieve the saved component assert Registry().get('test1') == mock_1, 'The saved service can be retrieved and matches' # WHEN: I add a component for the second time I am mad. # THEN and I will get an exception with self.assertRaises(KeyError) as context: Registry().register('test1', mock_1) self.assertEqual(context.exception.args[0], 'Duplicate service exception test1', 'KeyError exception should have been thrown for duplicate service') # WHEN I try to get back a non existent component # THEN I will get an exception temp = Registry().get('test2') self.assertEqual(temp, None, 'None should have been returned for missing service') # WHEN I try to replace a component I should be allowed (testing only) Registry().remove('test1') # THEN I will get an exception temp = Registry().get('test1') self.assertEqual(temp, None, 'None should have been returned for deleted service') def registry_function_test(self): """ Test the registry function creation and their usages """ # GIVEN: An existing registry register a function Registry.create() Registry().register_function('test1', self.dummy_function_1) # WHEN: I execute the function return_value = Registry().execute('test1') # THEN: I expect then function to have been called and a return given self.assertEqual(return_value[0], 'function_1', 'A return value is provided and matches') # WHEN: I execute the a function with the same reference and execute the function Registry().register_function('test1', self.dummy_function_1) return_value = Registry().execute('test1') # THEN: I expect then function to have been called and a return given self.assertEqual(return_value, ['function_1', 'function_1'], 'A return value list is provided and matches') # WHEN: I execute the a 2nd function with the different reference and execute the function Registry().register_function('test2', self.dummy_function_2) return_value = Registry().execute('test2') # THEN: I expect then function to have been called and a return given self.assertEqual(return_value[0], 'function_2', 'A return value is provided and matches') def remove_function_test(self): """ Test the remove_function() method """ # GIVEN: An existing registry register a function Registry.create() Registry().register_function('test1', self.dummy_function_1) # WHEN: Remove the function. Registry().remove_function('test1', self.dummy_function_1) # THEN: The method should not be available. assert not Registry().functions_list['test1'], 'The function should not be in the dict anymore.' def dummy_function_1(self): return "function_1" def dummy_function_2(self): return "function_2" OpenLP-2.4/tests/functional/openlp_core_common/test_uistrings.py0000644000175000017500000000417612657640340024402 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.uistrings package. """ from unittest import TestCase from openlp.core.common import UiStrings class TestUiStrings(TestCase): def check_same_instance_test(self): """ Test the UiStrings class - we always should have only one instance of the UiStrings class. """ # WHEN: Create two instances of the UiStrings class. first_instance = UiStrings() second_instance = UiStrings() # THEN: Check if the instances are the same. self.assertIs(first_instance, second_instance, 'Two UiStrings objects should be the same instance') OpenLP-2.4/tests/functional/openlp_core_common/test_applocation.py0000644000175000017500000002405512657640340024662 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the AppLocation class and related methods. """ import copy import os from unittest import TestCase from openlp.core.common import AppLocation, get_frozen_path from tests.functional import patch FILE_LIST = ['file1', 'file2', 'file3.txt', 'file4.txt', 'file5.mp3', 'file6.mp3'] class TestAppLocation(TestCase): """ A test suite to test out various methods around the AppLocation class. """ def get_data_path_test(self): """ Test the AppLocation.get_data_path() method """ with patch('openlp.core.common.applocation.Settings') as mocked_class, \ patch('openlp.core.common.AppLocation.get_directory') as mocked_get_directory, \ patch('openlp.core.common.applocation.check_directory_exists') as mocked_check_directory_exists, \ patch('openlp.core.common.applocation.os') as mocked_os: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory() mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = False mocked_get_directory.return_value = os.path.join('test', 'dir') mocked_check_directory_exists.return_value = True mocked_os.path.normpath.return_value = os.path.join('test', 'dir') # WHEN: we call AppLocation.get_data_path() data_path = AppLocation.get_data_path() # THEN: check that all the correct methods were called, and the result is correct mocked_settings.contains.assert_called_with('advanced/data path') mocked_get_directory.assert_called_with(AppLocation.DataDir) mocked_check_directory_exists.assert_called_with(os.path.join('test', 'dir')) self.assertEqual(os.path.join('test', 'dir'), data_path, 'Result should be "test/dir"') def get_data_path_with_custom_location_test(self): """ Test the AppLocation.get_data_path() method when a custom location is set in the settings """ with patch('openlp.core.common.applocation.Settings') as mocked_class,\ patch('openlp.core.common.applocation.os') as mocked_os: # GIVEN: A mocked out Settings class which returns a custom data location mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = True mocked_settings.value.return_value.toString.return_value = 'custom/dir' mocked_os.path.normpath.return_value = 'custom/dir' # WHEN: we call AppLocation.get_data_path() data_path = AppLocation.get_data_path() # THEN: the mocked Settings methods were called and the value returned was our set up value mocked_settings.contains.assert_called_with('advanced/data path') mocked_settings.value.assert_called_with('advanced/data path') self.assertEqual('custom/dir', data_path, 'Result should be "custom/dir"') def get_files_no_section_no_extension_test(self): """ Test the AppLocation.get_files() method with no parameters passed. """ with patch('openlp.core.common.AppLocation.get_data_path') as mocked_get_data_path, \ patch('openlp.core.common.applocation.os.listdir') as mocked_listdir: # GIVEN: Our mocked modules/methods. mocked_get_data_path.return_value = 'test/dir' mocked_listdir.return_value = copy.deepcopy(FILE_LIST) # When: Get the list of files. result = AppLocation.get_files() # Then: check if the file lists are identical. self.assertListEqual(FILE_LIST, result, 'The file lists should be identical.') def get_files_test(self): """ Test the AppLocation.get_files() method with all parameters passed. """ with patch('openlp.core.common.AppLocation.get_data_path') as mocked_get_data_path, \ patch('openlp.core.common.applocation.os.listdir') as mocked_listdir: # GIVEN: Our mocked modules/methods. mocked_get_data_path.return_value = os.path.join('test', 'dir') mocked_listdir.return_value = copy.deepcopy(FILE_LIST) # When: Get the list of files. result = AppLocation.get_files('section', '.mp3') # Then: Check if the section parameter was used correctly. mocked_listdir.assert_called_with(os.path.join('test', 'dir', 'section')) # Then: check if the file lists are identical. self.assertListEqual(['file5.mp3', 'file6.mp3'], result, 'The file lists should be identical.') def get_section_data_path_test(self): """ Test the AppLocation.get_section_data_path() method """ with patch('openlp.core.common.AppLocation.get_data_path') as mocked_get_data_path, \ patch('openlp.core.common.applocation.check_directory_exists') as mocked_check_directory_exists: # GIVEN: A mocked out AppLocation.get_data_path() mocked_get_data_path.return_value = os.path.join('test', 'dir') mocked_check_directory_exists.return_value = True # WHEN: we call AppLocation.get_data_path() data_path = AppLocation.get_section_data_path('section') # THEN: check that all the correct methods were called, and the result is correct mocked_check_directory_exists.assert_called_with(os.path.join('test', 'dir', 'section')) self.assertEqual(os.path.join('test', 'dir', 'section'), data_path, 'Result should be "test/dir/section"') def get_directory_for_app_dir_test(self): """ Test the AppLocation.get_directory() method for AppLocation.AppDir """ # GIVEN: A mocked out _get_frozen_path function with patch('openlp.core.common.applocation.get_frozen_path') as mocked_get_frozen_path: mocked_get_frozen_path.return_value = os.path.join('app', 'dir') # WHEN: We call AppLocation.get_directory directory = AppLocation.get_directory(AppLocation.AppDir) # THEN: check that the correct directory is returned self.assertEqual(os.path.join('app', 'dir'), directory, 'Directory should be "app/dir"') def get_directory_for_plugins_dir_test(self): """ Test the AppLocation.get_directory() method for AppLocation.PluginsDir """ # GIVEN: _get_frozen_path, abspath, split and sys are mocked out with patch('openlp.core.common.applocation.get_frozen_path') as mocked_get_frozen_path, \ patch('openlp.core.common.applocation.os.path.abspath') as mocked_abspath, \ patch('openlp.core.common.applocation.os.path.split') as mocked_split, \ patch('openlp.core.common.applocation.sys') as mocked_sys: mocked_abspath.return_value = os.path.join('plugins', 'dir') mocked_split.return_value = ['openlp'] mocked_get_frozen_path.return_value = os.path.join('plugins', 'dir') mocked_sys.frozen = 1 mocked_sys.argv = ['openlp'] # WHEN: We call AppLocation.get_directory directory = AppLocation.get_directory(AppLocation.PluginsDir) # THEN: The correct directory should be returned self.assertEqual(os.path.join('plugins', 'dir'), directory, 'Directory should be "plugins/dir"') def get_frozen_path_in_unfrozen_app_test(self): """ Test the _get_frozen_path() function when the application is not frozen (compiled by PyInstaller) """ with patch('openlp.core.utils.sys') as mocked_sys: # GIVEN: The sys module "without" a "frozen" attribute mocked_sys.frozen = None # WHEN: We call _get_frozen_path() with two parameters frozen_path = get_frozen_path('frozen', 'not frozen') # THEN: The non-frozen parameter is returned self.assertEqual('not frozen', frozen_path, '_get_frozen_path should return "not frozen"') def get_frozen_path_in_frozen_app_test(self): """ Test the get_frozen_path() function when the application is frozen (compiled by PyInstaller) """ with patch('openlp.core.common.sys') as mocked_sys: # GIVEN: The sys module *with* a "frozen" attribute mocked_sys.frozen = 1 # WHEN: We call _get_frozen_path() with two parameters frozen_path = get_frozen_path('frozen', 'not frozen') # THEN: The frozen parameter is returned self.assertEqual('frozen', frozen_path, 'Should return "frozen"') OpenLP-2.4/tests/functional/openlp_core_common/test_projector_utilities.py0000644000175000017500000001516312657640340026453 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.projector.networkutils package. """ import os from unittest import TestCase from openlp.core.common import verify_ip_address, md5_hash, qmd5_hash from tests.resources.projector.data import TEST_PIN, TEST_SALT, TEST_HASH salt = TEST_SALT pin = TEST_PIN test_hash = TEST_HASH test_non_ascii_string = 'ì´ê²ƒì€ 한국어 시험 문ìžì—´' test_non_ascii_hash = 'fc00c7912976f6e9c19099b514ced201' ip4_loopback = '127.0.0.1' ip4_local = '192.168.1.1' ip4_broadcast = '255.255.255.255' ip4_bad = '192.168.1.256' ip6_loopback = '::1' ip6_link_local = 'fe80::223:14ff:fe99:d315' ip6_bad = 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff' class testProjectorUtilities(TestCase): """ Validate functions in the projector utilities module """ def test_ip4_loopback_valid(self): """ Test IPv4 loopbackvalid """ # WHEN: Test with a local loopback test valid = verify_ip_address(addr=ip4_loopback) # THEN: Verify we received True self.assertTrue(valid, 'IPv4 loopback address should have been valid') def test_ip4_local_valid(self): """ Test IPv4 local valid """ # WHEN: Test with a local loopback test valid = verify_ip_address(addr=ip4_local) # THEN: Verify we received True self.assertTrue(valid, 'IPv4 local address should have been valid') def test_ip4_broadcast_valid(self): """ Test IPv4 broadcast valid """ # WHEN: Test with a local loopback test valid = verify_ip_address(addr=ip4_broadcast) # THEN: Verify we received True self.assertTrue(valid, 'IPv4 broadcast address should have been valid') def test_ip4_address_invalid(self): """ Test IPv4 address invalid """ # WHEN: Test with a local loopback test valid = verify_ip_address(addr=ip4_bad) # THEN: Verify we received True self.assertFalse(valid, 'Bad IPv4 address should not have been valid') def test_ip6_loopback_valid(self): """ Test IPv6 loopback valid """ # WHEN: Test IPv6 loopback address valid = verify_ip_address(addr=ip6_loopback) # THEN: Validate return self.assertTrue(valid, 'IPv6 loopback address should have been valid') def test_ip6_local_valid(self): """ Test IPv6 link-local valid """ # WHEN: Test IPv6 link-local address valid = verify_ip_address(addr=ip6_link_local) # THEN: Validate return self.assertTrue(valid, 'IPv6 link-local address should have been valid') def test_ip6_address_invalid(self): """ Test NetworkUtils IPv6 address invalid """ # WHEN: Given an invalid IPv6 address valid = verify_ip_address(addr=ip6_bad) # THEN: Validate bad return self.assertFalse(valid, 'IPv6 bad address should have been invalid') def test_md5_hash(self): """ Test MD5 hash from salt+data pass (python) """ # WHEN: Given a known salt+data hash_ = md5_hash(salt=salt.encode('ascii'), data=pin.encode('ascii')) # THEN: Validate return has is same self.assertEquals(hash_, test_hash, 'MD5 should have returned a good hash') def test_md5_hash_bad(self): """ Test MD5 hash from salt+data fail (python) """ # WHEN: Given a different salt+hash hash_ = md5_hash(salt=pin.encode('ascii'), data=salt.encode('ascii')) # THEN: return data is different self.assertNotEquals(hash_, test_hash, 'MD5 should have returned a bad hash') def test_qmd5_hash(self): """ Test MD5 hash from salt+data pass (Qt) """ # WHEN: Given a known salt+data hash_ = qmd5_hash(salt=salt.encode('ascii'), data=pin.encode('ascii')) # THEN: Validate return has is same self.assertEquals(hash_.decode('ascii'), test_hash, 'Qt-MD5 should have returned a good hash') def test_qmd5_hash_bad(self): """ Test MD5 hash from salt+hash fail (Qt) """ # WHEN: Given a different salt+hash hash_ = qmd5_hash(salt=pin.encode('ascii'), data=salt.encode('ascii')) # THEN: return data is different self.assertNotEquals(hash_.decode('ascii'), test_hash, 'Qt-MD5 should have returned a bad hash') def test_md5_non_ascii_string(self): """ Test MD5 hash with non-ascii string - bug 1417809 """ # WHEN: Non-ascii string is hashed hash_ = md5_hash(salt=test_non_ascii_string.encode('utf-8'), data=None) # THEN: Valid MD5 hash should be returned self.assertEqual(hash_, test_non_ascii_hash, 'MD5 should have returned a valid hash') def test_qmd5_non_ascii_string(self): """ Test MD5 hash with non-ascii string - bug 1417809 """ # WHEN: Non-ascii string is hashed hash_ = md5_hash(salt=test_non_ascii_string.encode('utf-8'), data=None) # THEN: Valid MD5 hash should be returned self.assertEqual(hash_, test_non_ascii_hash, 'Qt-MD5 should have returned a valid hash') OpenLP-2.4/tests/functional/test_init.py0000644000175000017500000001363212657640340017436 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.__init__ package. """ import os from unittest import TestCase from PyQt5 import QtCore, QtWidgets from openlp.core import OpenLP, parse_options from openlp.core.common import Settings from tests.helpers.testmixin import TestMixin from tests.functional import MagicMock, patch, call TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'resources')) class TestInit(TestCase, TestMixin): def setUp(self): self.build_settings() with patch('openlp.core.common.OpenLPMixin.__init__') as constructor: constructor.return_value = None self.openlp = OpenLP(list()) def tearDown(self): self.destroy_settings() del self.openlp def event_test(self): """ Test the reimplemented event method """ # GIVEN: A file path and a QEvent. file_path = os.path.join(TEST_PATH, 'church.jpg') mocked_file_method = MagicMock(return_value=file_path) event = QtCore.QEvent(QtCore.QEvent.FileOpen) event.file = mocked_file_method # WHEN: Call the vent method. result = self.openlp.event(event) # THEN: The path should be inserted. self.assertTrue(result, "The method should have returned True.") mocked_file_method.assert_called_once_with() self.assertEqual(self.openlp.args[0], file_path, "The path should be in args.") @patch('openlp.core.is_macosx') def application_activate_event_test(self, mocked_is_macosx): """ Test that clicking on the dock icon on Mac OS X restores the main window if it is minimized """ # GIVEN: Mac OS X and an ApplicationActivate event mocked_is_macosx.return_value = True event = MagicMock() event.type.return_value = QtCore.QEvent.ApplicationActivate mocked_main_window = MagicMock() self.openlp.main_window = mocked_main_window # WHEN: The icon in the dock is clicked result = self.openlp.event(event) # THEN: self.assertTrue(result, "The method should have returned True.") # self.assertFalse(self.openlp.main_window.isMinimized()) def backup_on_upgrade_first_install_test(self): """ Test that we don't try to backup on a new install """ # GIVEN: Mocked data version and OpenLP version which are the same old_install = False MOCKED_VERSION = { 'full': '2.2.0-bzr000', 'version': '2.2.0', 'build': 'bzr000' } Settings().setValue('core/application version', '2.2.0') with patch('openlp.core.get_application_version') as mocked_get_application_version,\ patch('openlp.core.QtWidgets.QMessageBox.question') as mocked_question: mocked_get_application_version.return_value = MOCKED_VERSION mocked_question.return_value = QtWidgets.QMessageBox.No # WHEN: We check if a backup should be created self.openlp.backup_on_upgrade(old_install) # THEN: It should not ask if we want to create a backup self.assertEqual(Settings().value('core/application version'), '2.2.0', 'Version should be the same!') self.assertEqual(mocked_question.call_count, 0, 'No question should have been asked!') def backup_on_upgrade_test(self): """ Test that we try to backup on a new install """ # GIVEN: Mocked data version and OpenLP version which are different old_install = True MOCKED_VERSION = { 'full': '2.2.0-bzr000', 'version': '2.2.0', 'build': 'bzr000' } Settings().setValue('core/application version', '2.0.5') with patch('openlp.core.get_application_version') as mocked_get_application_version,\ patch('openlp.core.QtWidgets.QMessageBox.question') as mocked_question: mocked_get_application_version.return_value = MOCKED_VERSION mocked_question.return_value = QtWidgets.QMessageBox.No # WHEN: We check if a backup should be created self.openlp.backup_on_upgrade(old_install) # THEN: It should ask if we want to create a backup self.assertEqual(Settings().value('core/application version'), '2.2.0', 'Version should be upgraded!') self.assertEqual(mocked_question.call_count, 1, 'A question should have been asked!') OpenLP-2.4/tests/functional/openlp_plugins/0000755000175000017500000000000012657640341020114 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/presentations/0000755000175000017500000000000012657640341023012 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/presentations/test_presentationcontroller.py0000644000175000017500000003236612657640340031253 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the PresentationController and PresentationDocument classes and related methods. """ from unittest import TestCase import os from openlp.plugins.presentations.lib.presentationcontroller import PresentationController, PresentationDocument from tests.functional import MagicMock, mock_open, patch FOLDER_TO_PATCH = 'openlp.plugins.presentations.lib.presentationcontroller.PresentationDocument.get_thumbnail_folder' class TestPresentationController(TestCase): """ Test the PresentationController. """ # TODO: Items left to test # PresentationController # __init__ # enabled # is_available # check_available # start_process # kill # add_document # remove_doc # close_presentation # _get_plugin_manager def setUp(self): self.get_thumbnail_folder_patcher = \ patch('openlp.plugins.presentations.lib.presentationcontroller.PresentationDocument.get_thumbnail_folder') self.get_thumbnail_folder_patcher.start() mocked_plugin = MagicMock() mocked_plugin.settings_section = 'presentations' self.presentation = PresentationController(mocked_plugin) self.document = PresentationDocument(self.presentation, '') def tearDown(self): self.get_thumbnail_folder_patcher.stop() def constructor_test(self): """ Test the Constructor """ # GIVEN: A mocked plugin # WHEN: The PresentationController is created # THEN: The name of the presentation controller should be correct self.assertEqual('PresentationController', self.presentation.name, 'The name of the presentation controller should be correct') def save_titles_and_notes_test(self): """ Test PresentationDocument.save_titles_and_notes method with two valid lists """ # GIVEN: two lists of length==2 and a mocked open and get_thumbnail_folder mocked_open = mock_open() with patch('builtins.open', mocked_open), patch(FOLDER_TO_PATCH) as mocked_get_thumbnail_folder: titles = ['uno', 'dos'] notes = ['one', 'two'] # WHEN: calling save_titles_and_notes mocked_get_thumbnail_folder.return_value = 'test' self.document.save_titles_and_notes(titles, notes) # THEN: the last call to open should have been for slideNotes2.txt mocked_open.assert_any_call(os.path.join('test', 'titles.txt'), mode='wt', encoding='utf-8') mocked_open.assert_any_call(os.path.join('test', 'slideNotes1.txt'), mode='wt', encoding='utf-8') mocked_open.assert_any_call(os.path.join('test', 'slideNotes2.txt'), mode='wt', encoding='utf-8') self.assertEqual(mocked_open.call_count, 3, 'There should be exactly three files opened') mocked_open().writelines.assert_called_once_with(['uno', 'dos']) mocked_open().write.assert_any_call('one') mocked_open().write.assert_any_call('two') def save_titles_and_notes_with_None_test(self): """ Test PresentationDocument.save_titles_and_notes method with no data """ # GIVEN: None and an empty list and a mocked open and get_thumbnail_folder with patch('builtins.open') as mocked_open, patch(FOLDER_TO_PATCH) as mocked_get_thumbnail_folder: titles = None notes = None # WHEN: calling save_titles_and_notes mocked_get_thumbnail_folder.return_value = 'test' self.document.save_titles_and_notes(titles, notes) # THEN: No file should have been created self.assertEqual(mocked_open.call_count, 0, 'No file should be created') def get_titles_and_notes_test(self): """ Test PresentationDocument.get_titles_and_notes method """ # GIVEN: A mocked open, get_thumbnail_folder and exists with patch('builtins.open', mock_open(read_data='uno\ndos\n')) as mocked_open, \ patch(FOLDER_TO_PATCH) as mocked_get_thumbnail_folder, \ patch('openlp.plugins.presentations.lib.presentationcontroller.os.path.exists') as mocked_exists: mocked_get_thumbnail_folder.return_value = 'test' mocked_exists.return_value = True # WHEN: calling get_titles_and_notes result_titles, result_notes = self.document.get_titles_and_notes() # THEN: it should return two items for the titles and two empty strings for the notes self.assertIs(type(result_titles), list, 'result_titles should be of type list') self.assertEqual(len(result_titles), 2, 'There should be two items in the titles') self.assertIs(type(result_notes), list, 'result_notes should be of type list') self.assertEqual(len(result_notes), 2, 'There should be two items in the notes') self.assertEqual(mocked_open.call_count, 3, 'Three files should be opened') mocked_open.assert_any_call(os.path.join('test', 'titles.txt'), encoding='utf-8') mocked_open.assert_any_call(os.path.join('test', 'slideNotes1.txt'), encoding='utf-8') mocked_open.assert_any_call(os.path.join('test', 'slideNotes2.txt'), encoding='utf-8') self.assertEqual(mocked_exists.call_count, 3, 'Three files should have been checked') def get_titles_and_notes_with_file_not_found_test(self): """ Test PresentationDocument.get_titles_and_notes method with file not found """ # GIVEN: A mocked open, get_thumbnail_folder and exists with patch('builtins.open') as mocked_open, \ patch(FOLDER_TO_PATCH) as mocked_get_thumbnail_folder, \ patch('openlp.plugins.presentations.lib.presentationcontroller.os.path.exists') as mocked_exists: mocked_get_thumbnail_folder.return_value = 'test' mocked_exists.return_value = False # WHEN: calling get_titles_and_notes result_titles, result_notes = self.document.get_titles_and_notes() # THEN: it should return two empty lists self.assertIs(type(result_titles), list, 'result_titles should be of type list') self.assertEqual(len(result_titles), 0, 'there be no titles') self.assertIs(type(result_notes), list, 'result_notes should be a list') self.assertEqual(len(result_notes), 0, 'but the list should be empty') self.assertEqual(mocked_open.call_count, 0, 'No calls to open files') self.assertEqual(mocked_exists.call_count, 1, 'There should be one call to file exists') def get_titles_and_notes_with_file_error_test(self): """ Test PresentationDocument.get_titles_and_notes method with file errors """ # GIVEN: A mocked open, get_thumbnail_folder and exists with patch('builtins.open') as mocked_open, \ patch(FOLDER_TO_PATCH) as mocked_get_thumbnail_folder, \ patch('openlp.plugins.presentations.lib.presentationcontroller.os.path.exists') as mocked_exists: mocked_get_thumbnail_folder.return_value = 'test' mocked_exists.return_value = True mocked_open.side_effect = IOError() # WHEN: calling get_titles_and_notes result_titles, result_notes = self.document.get_titles_and_notes() # THEN: it should return two empty lists self.assertIs(type(result_titles), list, 'result_titles should be a list') class TestPresentationDocument(TestCase): """ Test the PresentationDocument Class """ # TODO: Items left to test # PresentationDocument # __init__ # presentation_deleted # get_thumbnail_folder # get_temp_folder # check_thumbnails # close_presentation # is_active # is_loaded # blank_screen # unblank_screen # is_blank # stop_presentation # start_presentation # get_slide_number # get_slide_count # goto_slide # next_step # previous_step # convert_thumbnail # get_thumbnail_path # poll_slidenumber # get_slide_text # get_slide_notes def setUp(self): """ Set up the patches and mocks need for all tests. """ self.check_directory_exists_patcher = \ patch('openlp.plugins.presentations.lib.presentationcontroller.check_directory_exists') self.get_thumbnail_folder_patcher = \ patch('openlp.plugins.presentations.lib.presentationcontroller.PresentationDocument.get_thumbnail_folder') self.os_patcher = patch('openlp.plugins.presentations.lib.presentationcontroller.os') self._setup_patcher = \ patch('openlp.plugins.presentations.lib.presentationcontroller.PresentationDocument._setup') self.mock_check_directory_exists = self.check_directory_exists_patcher.start() self.mock_get_thumbnail_folder = self.get_thumbnail_folder_patcher.start() self.mock_os = self.os_patcher.start() self.mock_setup = self._setup_patcher.start() self.mock_controller = MagicMock() self.mock_get_thumbnail_folder.return_value = 'returned/path/' def tearDown(self): """ Stop the patches """ self.check_directory_exists_patcher.stop() self.get_thumbnail_folder_patcher.stop() self.os_patcher.stop() self._setup_patcher.stop() def initialise_presentation_document_test(self): """ Test the PresentationDocument __init__ method when initialising the PresentationDocument Class """ # GIVEN: A mocked setup method and mocked controller self.mock_setup.reset() # WHEN: Creating an instance of PresentationDocument PresentationDocument(self.mock_controller, 'Name') # THEN: PresentationDocument._setup should have been called with the argument 'Name' self.mock_setup.assert_called_once_with('Name') def presentation_document_setup_test(self): """ Test the PresentationDocument _setup method when initialising the PresentationDocument Class """ self._setup_patcher.stop() # GIVEN: A mocked controller, patched check_directory_exists and get_thumbnail_folder methods # WHEN: Creating an instance of PresentationDocument PresentationDocument(self.mock_controller, 'Name') # THEN: check_directory_exists should have been called with 'returned/path/' self.mock_check_directory_exists.assert_called_once_with('returned/path/') self._setup_patcher.start() def load_presentation_test(self): """ Test the PresentationDocument.load_presentation method. """ # GIVEN: An instance of PresentationDocument instance = PresentationDocument(self.mock_controller, 'Name') # WHEN: Calling load_presentation() result = instance.load_presentation() # THEN: load_presentation should return false self.assertFalse(result, "PresentationDocument.load_presentation should return false.") def get_file_name_test(self): """ Test the PresentationDocument.get_file_name method. """ # GIVEN: A mocked os.path.split which returns a list, an instance of PresentationDocument and # arbitary file_path. self.mock_os.path.split.return_value = ['directory', 'file.ext'] instance = PresentationDocument(self.mock_controller, 'Name') instance.file_path = 'filepath' # WHEN: Calling get_file_name result = instance.get_file_name() # THEN: get_file_name should return 'file.ext' self.assertEqual(result, 'file.ext') OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_impresscontroller.py0000644000175000017500000002256012657640340030215 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the Impress class and related methods. """ from unittest import TestCase import os import shutil from tempfile import mkdtemp from tests.functional import patch, MagicMock from tests.utils.constants import TEST_RESOURCES_PATH from tests.helpers.testmixin import TestMixin from openlp.core.common import Settings from openlp.plugins.presentations.lib.impresscontroller import \ ImpressController, ImpressDocument, TextType from openlp.plugins.presentations.presentationplugin import __default_settings__ class TestImpressController(TestCase, TestMixin): """ Test the ImpressController Class """ def setUp(self): """ Set up the patches and mocks need for all tests. """ self.setup_application() self.build_settings() self.mock_plugin = MagicMock() self.temp_folder = mkdtemp() self.mock_plugin.settings_section = self.temp_folder def tearDown(self): """ Stop the patches """ self.destroy_settings() shutil.rmtree(self.temp_folder) def constructor_test(self): """ Test the Constructor from the ImpressController """ # GIVEN: No presentation controller controller = None # WHEN: The presentation controller object is created controller = ImpressController(plugin=self.mock_plugin) # THEN: The name of the presentation controller should be correct self.assertEqual('Impress', controller.name, 'The name of the presentation controller should be correct') class TestImpressDocument(TestCase): """ Test the ImpressDocument Class """ def setUp(self): mocked_plugin = MagicMock() mocked_plugin.settings_section = 'presentations' Settings().extend_default_settings(__default_settings__) self.file_name = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'test.pptx') self.ppc = ImpressController(mocked_plugin) self.doc = ImpressDocument(self.ppc, self.file_name) def create_titles_and_notes_test(self): """ Test ImpressDocument.create_titles_and_notes """ # GIVEN: mocked PresentationController.save_titles_and_notes with # 0 pages and the LibreOffice Document self.doc.save_titles_and_notes = MagicMock() self.doc.document = MagicMock() self.doc.document.getDrawPages.return_value = MagicMock() self.doc.document.getDrawPages().getCount.return_value = 0 # WHEN reading the titles and notes self.doc.create_titles_and_notes() # THEN save_titles_and_notes should have been called with empty arrays self.doc.save_titles_and_notes.assert_called_once_with([], []) # GIVEN: reset mock and set it to 2 pages self.doc.save_titles_and_notes.reset_mock() self.doc.document.getDrawPages().getCount.return_value = 2 # WHEN: a new call to create_titles_and_notes self.doc.create_titles_and_notes() # THEN: save_titles_and_notes should have been called once with # two arrays of two elements self.doc.save_titles_and_notes.assert_called_once_with(['\n', '\n'], [' ', ' ']) def get_text_from_page_out_of_bound_test(self): """ Test ImpressDocument.__get_text_from_page with out-of-bounds index """ # GIVEN: mocked LibreOffice Document with one slide, # two notes and three texts self.doc.document = self._mock_a_LibreOffice_document(1, 2, 3) # WHEN: __get_text_from_page is called with an index of 0x00 result = self.doc._ImpressDocument__get_text_from_page(0, TextType.Notes) # THEN: the result should be an empty string self.assertEqual(result, '', 'Result should be an empty string') # WHEN: regardless of the type of text, index 0x00 is out of bounds result = self.doc._ImpressDocument__get_text_from_page(0, TextType.Title) # THEN: result should be an empty string self.assertEqual(result, '', 'Result should be an empty string') # WHEN: when called with 2, it should also be out of bounds result = self.doc._ImpressDocument__get_text_from_page(2, TextType.SlideText) # THEN: result should be an empty string ... and, getByIndex should # have never been called self.assertEqual(result, '', 'Result should be an empty string') self.assertEqual(self.doc.document.getDrawPages().getByIndex.call_count, 0, 'There should be no call to getByIndex') def get_text_from_page_wrong_type_test(self): """ Test ImpressDocument.__get_text_from_page with wrong TextType """ # GIVEN: mocked LibreOffice Document with one slide, two notes and # three texts self.doc.document = self._mock_a_LibreOffice_document(1, 2, 3) # WHEN: called with TextType 3 result = self.doc._ImpressDocument__get_text_from_page(1, 3) # THEN: result should be an empty string self.assertEqual(result, '', 'Result should be and empty string') self.assertEqual(self.doc.document.getDrawPages().getByIndex.call_count, 0, 'There should be no call to getByIndex') def get_text_from_page_valid_params_test(self): """ Test ImpressDocument.__get_text_from_page with valid parameters """ # GIVEN: mocked LibreOffice Document with one slide, # two notes and three texts self.doc.document = self._mock_a_LibreOffice_document(1, 2, 3) # WHEN: __get_text_from_page is called to get the Notes result = self.doc._ImpressDocument__get_text_from_page(1, TextType.Notes) # THEN: result should be 'Note\nNote\n' self.assertEqual(result, 'Note\nNote\n', 'Result should be \'Note\\n\' times the count of notes in the page') # WHEN: get the Title result = self.doc._ImpressDocument__get_text_from_page(1, TextType.Title) # THEN: result should be 'Title\n' self.assertEqual(result, 'Title\n', 'Result should be exactly \'Title\\n\'') # WHEN: get all text result = self.doc._ImpressDocument__get_text_from_page(1, TextType.SlideText) # THEN: result should be 'Title\nString\nString\n' self.assertEqual(result, 'Title\nString\nString\n', 'Result should be exactly \'Title\\nString\\nString\\n\'') def _mock_a_LibreOffice_document(self, page_count, note_count, text_count): """ Helper function, creates a mock libreoffice document. :param page_count: Number of pages in the document :param note_count: Number of note pages in the document :param text_count: Number of text pages in the document """ pages = MagicMock() page = MagicMock() pages.getByIndex.return_value = page notes_page = MagicMock() notes_page.getCount.return_value = note_count shape = MagicMock() shape.supportsService.return_value = True shape.getString.return_value = 'Note' notes_page.getByIndex.return_value = shape page.getNotesPage.return_value = notes_page page.getCount.return_value = text_count page.getByIndex.side_effect = self._get_page_shape_side_effect pages.getCount.return_value = page_count document = MagicMock() document.getDrawPages.return_value = pages document.getByIndex.return_value = page return document def _get_page_shape_side_effect(*args): """ Helper function. """ page_shape = MagicMock() page_shape.supportsService.return_value = True if args[1] == 0: page_shape.getShapeType.return_value = 'com.sun.star.presentation.TitleTextShape' page_shape.getString.return_value = 'Title' else: page_shape.getString.return_value = 'String' return page_shape OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_messagelistener.py0000644000175000017500000001470712657640340027625 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Presentations plugin. """ from unittest import TestCase from openlp.core.common import Registry from openlp.plugins.presentations.lib.mediaitem import MessageListener, PresentationMediaItem from openlp.plugins.presentations.lib.messagelistener import Controller from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin class TestMessageListener(TestCase, TestMixin): """ Test the Presentation Message Listener. """ def setUp(self): """ Set up the components need for all tests. """ Registry.create() Registry().register('service_manager', MagicMock()) Registry().register('main_window', MagicMock()) with patch('openlp.plugins.presentations.lib.mediaitem.MediaManagerItem._setup'), \ patch('openlp.plugins.presentations.lib.mediaitem.PresentationMediaItem.setup_item'): self.media_item = PresentationMediaItem(None, MagicMock, MagicMock()) @patch('openlp.plugins.presentations.lib.mediaitem.MessageListener._setup') def start_presentation_test(self, media_mock): """ Find and chose a controller to play a presentations. """ # GIVEN: A single controller and service item wanting to use the controller mock_item = MagicMock() mock_item.processor = 'Powerpoint' mock_item.get_frame_path.return_value = "test.ppt" self.media_item.automatic = False mocked_controller = MagicMock() mocked_controller.available = True mocked_controller.supports = ['ppt'] controllers = { 'Powerpoint': mocked_controller } ml = MessageListener(self.media_item) ml.media_item = self.media_item ml.controllers = controllers ml.preview_handler = MagicMock() ml.timer = MagicMock() # WHEN: request the presentation to start ml.startup([mock_item, False, False, False]) # THEN: The controllers will be setup. self.assertTrue(len(controllers), 'We have loaded a controller') @patch('openlp.plugins.presentations.lib.mediaitem.MessageListener._setup') def start_presentation_with_no_player_test(self, media_mock): """ Find and chose a controller to play a presentations when the player is not available. """ # GIVEN: A single controller and service item wanting to use the controller mock_item = MagicMock() mock_item.processor = 'Powerpoint' mock_item.get_frame_path.return_value = "test.ppt" self.media_item.automatic = False mocked_controller = MagicMock() mocked_controller.available = True mocked_controller.supports = ['ppt'] mocked_controller1 = MagicMock() mocked_controller1.available = False mocked_controller1.supports = ['ppt'] controllers = { 'Impress': mocked_controller, 'Powerpoint': mocked_controller1 } ml = MessageListener(self.media_item) ml.media_item = self.media_item ml.controllers = controllers ml.preview_handler = MagicMock() ml.timer = MagicMock() # WHEN: request the presentation to start ml.startup([mock_item, False, False, False]) # THEN: The controllers will be setup. self.assertTrue(len(controllers), 'We have loaded a controller') @patch('openlp.plugins.presentations.lib.mediaitem.MessageListener._setup') def start_pdf_presentation_test(self, media_mock): """ Test the startup of pdf presentation succeed. """ # GIVEN: A sservice item with a pdf mock_item = MagicMock() mock_item.processor = 'Pdf' mock_item.get_frame_path.return_value = "test.pdf" self.media_item.generate_slide_data = MagicMock() ml = MessageListener(self.media_item) ml.media_item = self.media_item ml.preview_handler = MagicMock() # WHEN: request the presentation to start ml.startup([mock_item, False, False, False]) # THEN: The handler should be set to None self.assertIsNone(ml.handler, 'The handler should be None') class TestController(TestCase, TestMixin): """ Test the Presentation Controller. """ def add_handler_failure_test(self): """ Test that add_handler does set doc.slidenumber to 0 in case filed loading """ # GIVEN: A Controller, a mocked doc-controller controller = Controller(True) mocked_doc_controller = MagicMock() mocked_doc = MagicMock() mocked_doc.load_presentation.return_value = False mocked_doc_controller.add_document.return_value = mocked_doc # WHEN: calling add_handler that fails controller.add_handler(mocked_doc_controller, MagicMock(), True, 0) # THEN: slidenumber should be 0 self.assertEqual(controller.doc.slidenumber, 0, 'doc.slidenumber should be 0') OpenLP-2.4/tests/functional/openlp_plugins/presentations/__init__.py0000644000175000017500000000301012657640340025114 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_pptviewcontroller.py0000644000175000017500000002766412657640340030243 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the pptviewcontroller module of the Presentations plugin. """ import os import shutil from tempfile import mkdtemp from unittest import TestCase from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin from tests.utils.constants import TEST_RESOURCES_PATH from openlp.plugins.presentations.lib.pptviewcontroller import PptviewDocument, PptviewController from openlp.core.common import is_win if is_win(): from ctypes import cdll class TestPptviewController(TestCase, TestMixin): """ Test the PptviewController Class """ # TODO: Items left to test # PptviewController # start_process(self) # kill def setUp(self): """ Set up the patches and mocks need for all tests. """ self.setup_application() self.build_settings() self.mock_plugin = MagicMock() self.temp_folder = mkdtemp() self.mock_plugin.settings_section = self.temp_folder def tearDown(self): """ Stop the patches """ self.destroy_settings() shutil.rmtree(self.temp_folder) def constructor_test(self): """ Test the Constructor from the PptViewController """ # GIVEN: No presentation controller controller = None # WHEN: The presentation controller object is created controller = PptviewController(plugin=self.mock_plugin) # THEN: The name of the presentation controller should be correct self.assertEqual('Powerpoint Viewer', controller.name, 'The name of the presentation controller should be correct') def check_available_test(self): """ Test check_available / check_installed """ # GIVEN: A mocked dll loader and a controller with patch('ctypes.cdll.LoadLibrary') as mocked_load_library: mocked_process = MagicMock() mocked_process.CheckInstalled.return_value = True mocked_load_library.return_value = mocked_process controller = PptviewController(plugin=self.mock_plugin) # WHEN: check_available is called available = controller.check_available() # THEN: On windows it should return True, on other platforms False if is_win(): self.assertTrue(available, 'check_available should return True on windows.') else: self.assertFalse(available, 'check_available should return False when not on windows.') class TestPptviewDocument(TestCase): """ Test the PptviewDocument Class """ # TODO: Items left to test # PptviewDocument # __init__ # create_thumbnails # close_presentation # is_loaded # is_active # blank_screen # unblank_screen # is_blank # stop_presentation # start_presentation # get_slide_number # get_slide_count # goto_slide # next_step # previous_step def setUp(self): """ Set up the patches and mocks need for all tests. """ self.os_isdir_patcher = patch('openlp.plugins.presentations.lib.pptviewcontroller.os.path.isdir') self.pptview_document_create_thumbnails_patcher = patch( 'openlp.plugins.presentations.lib.pptviewcontroller.PptviewDocument.create_thumbnails') self.pptview_document_stop_presentation_patcher = patch( 'openlp.plugins.presentations.lib.pptviewcontroller.PptviewDocument.stop_presentation') self.presentation_document_get_temp_folder_patcher = patch( 'openlp.plugins.presentations.lib.pptviewcontroller.PresentationDocument.get_temp_folder') self.presentation_document_setup_patcher = patch( 'openlp.plugins.presentations.lib.pptviewcontroller.PresentationDocument._setup') self.screen_list_patcher = patch('openlp.plugins.presentations.lib.pptviewcontroller.ScreenList') self.rect_patcher = MagicMock() self.mock_os_isdir = self.os_isdir_patcher.start() self.mock_pptview_document_create_thumbnails = self.pptview_document_create_thumbnails_patcher.start() self.mock_pptview_document_stop_presentation = self.pptview_document_stop_presentation_patcher.start() self.mock_presentation_document_get_temp_folder = self.presentation_document_get_temp_folder_patcher.start() self.mock_presentation_document_setup = self.presentation_document_setup_patcher.start() self.mock_rect = self.rect_patcher.start() self.mock_screen_list = self.screen_list_patcher.start() self.mock_controller = MagicMock() self.mock_presentation = MagicMock() self.temp_folder = mkdtemp() self.mock_presentation_document_get_temp_folder.return_value = self.temp_folder def tearDown(self): """ Stop the patches """ self.os_isdir_patcher.stop() self.pptview_document_create_thumbnails_patcher.stop() self.pptview_document_stop_presentation_patcher.stop() self.presentation_document_get_temp_folder_patcher.stop() self.presentation_document_setup_patcher.stop() self.rect_patcher.stop() self.screen_list_patcher.stop() shutil.rmtree(self.temp_folder) def load_presentation_succesfull_test(self): """ Test the PptviewDocument.load_presentation() method when the PPT is successfully opened """ # GIVEN: A reset mocked_os self.mock_os_isdir.reset() # WHEN: The temporary directory exists and OpenPPT returns successfully (not -1) self.mock_os_isdir.return_value = True self.mock_controller.process.OpenPPT.return_value = 0 instance = PptviewDocument(self.mock_controller, self.mock_presentation) instance.file_path = 'test\path.ppt' if is_win(): result = instance.load_presentation() # THEN: PptviewDocument.load_presentation should return True self.assertTrue(result) def load_presentation_un_succesfull_test(self): """ Test the PptviewDocument.load_presentation() method when the temporary directory does not exist and the PPT is not successfully opened """ # GIVEN: A reset mock_os_isdir self.mock_os_isdir.reset() # WHEN: The temporary directory does not exist and OpenPPT returns unsuccessfully (-1) with patch('openlp.plugins.presentations.lib.pptviewcontroller.os.makedirs') as mock_makedirs: self.mock_os_isdir.return_value = False self.mock_controller.process.OpenPPT.return_value = -1 instance = PptviewDocument(self.mock_controller, self.mock_presentation) instance.file_path = 'test\path.ppt' if is_win(): result = instance.load_presentation() # THEN: The temp folder should be created and PptviewDocument.load_presentation should return False mock_makedirs.assert_called_once_with(self.temp_folder) self.assertFalse(result) def create_titles_and_notes_test(self): """ Test PowerpointController.create_titles_and_notes """ # GIVEN: mocked PresentationController.save_titles_and_notes and a pptx file doc = PptviewDocument(self.mock_controller, self.mock_presentation) doc.file_path = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'test.pptx') doc.save_titles_and_notes = MagicMock() # WHEN reading the titles and notes doc.create_titles_and_notes() # THEN save_titles_and_notes should have been called once with empty arrays doc.save_titles_and_notes.assert_called_once_with(['Test 1\n', '\n', 'Test 2\n', 'Test 4\n', 'Test 3\n'], ['Notes for slide 1', 'Inserted', 'Notes for slide 2', 'Notes \nfor slide 4', 'Notes for slide 3']) def create_titles_and_notes_nonexistent_file_test(self): """ Test PowerpointController.create_titles_and_notes with nonexistent file """ # GIVEN: mocked PresentationController.save_titles_and_notes and an nonexistent file with patch('builtins.open') as mocked_open, \ patch('openlp.plugins.presentations.lib.pptviewcontroller.os.path.exists') as mocked_exists, \ patch('openlp.plugins.presentations.lib.presentationcontroller.check_directory_exists') as \ mocked_dir_exists: mocked_exists.return_value = False mocked_dir_exists.return_value = False doc = PptviewDocument(self.mock_controller, self.mock_presentation) doc.file_path = 'Idontexist.pptx' doc.save_titles_and_notes = MagicMock() # WHEN: Reading the titles and notes doc.create_titles_and_notes() # THEN: File existens should have been checked, and not have been opened. doc.save_titles_and_notes.assert_called_once_with(None, None) mocked_exists.assert_any_call('Idontexist.pptx') self.assertEqual(mocked_open.call_count, 0, 'There should be no calls to open a file.') def create_titles_and_notes_invalid_file_test(self): """ Test PowerpointController.create_titles_and_notes with invalid file """ # GIVEN: mocked PresentationController.save_titles_and_notes and an invalid file with patch('builtins.open') as mocked_open, \ patch('openlp.plugins.presentations.lib.pptviewcontroller.zipfile.is_zipfile') as mocked_is_zf: mocked_is_zf.return_value = False mocked_open.filesize = 10 doc = PptviewDocument(self.mock_controller, self.mock_presentation) doc.file_path = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'test.ppt') doc.save_titles_and_notes = MagicMock() # WHEN: reading the titles and notes doc.create_titles_and_notes() # THEN: doc.save_titles_and_notes.assert_called_once_with(None, None) self.assertEqual(mocked_is_zf.call_count, 1, 'is_zipfile should have been called once') OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_powerpointcontroller.py0000644000175000017500000003344712657640340030747 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the PowerPointController class and related methods. """ import os import shutil from unittest import TestCase from tempfile import mkdtemp from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin from tests.utils.constants import TEST_RESOURCES_PATH from openlp.plugins.presentations.lib.powerpointcontroller import PowerpointController, PowerpointDocument,\ _get_text_from_shapes from openlp.core.common import is_win, Settings if is_win(): import pywintypes __default_settings__ = { 'presentations/powerpoint slide click advance': True } class TestPowerpointController(TestCase, TestMixin): """ Test the PowerpointController Class """ def setUp(self): """ Set up the patches and mocks need for all tests. """ self.setup_application() self.build_settings() self.mock_plugin = MagicMock() self.temp_folder = mkdtemp() self.mock_plugin.settings_section = self.temp_folder def tearDown(self): """ Stop the patches """ self.destroy_settings() shutil.rmtree(self.temp_folder) def constructor_test(self): """ Test the Constructor from the PowerpointController """ # GIVEN: No presentation controller controller = None # WHEN: The presentation controller object is created controller = PowerpointController(plugin=self.mock_plugin) # THEN: The name of the presentation controller should be correct self.assertEqual('Powerpoint', controller.name, 'The name of the presentation controller should be correct') class TestPowerpointDocument(TestCase, TestMixin): """ Test the PowerpointDocument Class """ def setUp(self): """ Set up the patches and mocks need for all tests. """ self.setup_application() self.build_settings() self.mock_plugin = MagicMock() self.temp_folder = mkdtemp() self.mock_plugin.settings_section = self.temp_folder self.powerpoint_document_stop_presentation_patcher = patch( 'openlp.plugins.presentations.lib.powerpointcontroller.PowerpointDocument.stop_presentation') self.presentation_document_get_temp_folder_patcher = patch( 'openlp.plugins.presentations.lib.powerpointcontroller.PresentationDocument.get_temp_folder') self.presentation_document_setup_patcher = patch( 'openlp.plugins.presentations.lib.powerpointcontroller.PresentationDocument._setup') self.mock_powerpoint_document_stop_presentation = self.powerpoint_document_stop_presentation_patcher.start() self.mock_presentation_document_get_temp_folder = self.presentation_document_get_temp_folder_patcher.start() self.mock_presentation_document_setup = self.presentation_document_setup_patcher.start() self.mock_controller = MagicMock() self.mock_presentation = MagicMock() self.mock_presentation_document_get_temp_folder.return_value = 'temp folder' self.file_name = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'test.pptx') self.real_controller = PowerpointController(self.mock_plugin) Settings().extend_default_settings(__default_settings__) def tearDown(self): """ Stop the patches """ self.powerpoint_document_stop_presentation_patcher.stop() self.presentation_document_get_temp_folder_patcher.stop() self.presentation_document_setup_patcher.stop() self.destroy_settings() shutil.rmtree(self.temp_folder) def show_error_msg_test(self): """ Test the PowerpointDocument.show_error_msg() method gets called on com exception """ if is_win(): # GIVEN: A PowerpointDocument with mocked controller and presentation with patch('openlp.plugins.presentations.lib.powerpointcontroller.critical_error_message_box') as \ mocked_critical_error_message_box: instance = PowerpointDocument(self.mock_controller, self.mock_presentation) instance.presentation = MagicMock() instance.presentation.SlideShowWindow.View.GotoSlide = MagicMock(side_effect=pywintypes.com_error('1')) instance.index_map[42] = 42 # WHEN: Calling goto_slide which will throw an exception instance.goto_slide(42) # THEN: mocked_critical_error_message_box should have been called mocked_critical_error_message_box.assert_called_with('Error', 'An error occurred in the Powerpoint ' 'integration and the presentation will be stopped.' ' Restart the presentation if you wish to ' 'present it.') # add _test to the following if necessary def verify_loading_document(self): """ Test loading a document in PowerPoint """ if is_win() and self.real_controller.check_available(): # GIVEN: A PowerpointDocument and a presentation doc = PowerpointDocument(self.real_controller, self.file_name) # WHEN: loading the filename doc.load_presentation() result = doc.is_loaded() # THEN: result should be true self.assertEqual(result, True, 'The result should be True') else: self.skipTest('Powerpoint not available, skipping test.') def create_titles_and_notes_test(self): """ Test creating the titles from PowerPoint """ # GIVEN: mocked save_titles_and_notes, _get_text_from_shapes and two mocked slides self.doc = PowerpointDocument(self.mock_controller, self.file_name) self.doc.get_slide_count = MagicMock() self.doc.get_slide_count.return_value = 2 self.doc.index_map = {1: 1, 2: 2} self.doc.save_titles_and_notes = MagicMock() self.doc._PowerpointDocument__get_text_from_shapes = MagicMock() slide = MagicMock() slide.Shapes.Title.TextFrame.TextRange.Text = 'SlideText' pres = MagicMock() pres.Slides = MagicMock(side_effect=[slide, slide]) self.doc.presentation = pres # WHEN reading the titles and notes self.doc.create_titles_and_notes() # THEN the save should have been called exactly once with 2 titles and 2 notes self.doc.save_titles_and_notes.assert_called_once_with(['SlideText\n', 'SlideText\n'], [' ', ' ']) def create_titles_and_notes_with_no_slides_test(self): """ Test creating the titles from PowerPoint when it returns no slides """ # GIVEN: mocked save_titles_and_notes, _get_text_from_shapes and two mocked slides doc = PowerpointDocument(self.mock_controller, self.file_name) doc.save_titles_and_notes = MagicMock() doc._PowerpointDocument__get_text_from_shapes = MagicMock() pres = MagicMock() pres.Slides = [] doc.presentation = pres # WHEN reading the titles and notes doc.create_titles_and_notes() # THEN the save should have been called exactly once with empty titles and notes doc.save_titles_and_notes.assert_called_once_with([], []) def get_text_from_shapes_test(self): """ Test getting text from powerpoint shapes """ # GIVEN: mocked shapes shape = MagicMock() shape.PlaceholderFormat.Type = 2 shape.HasTextFrame = shape.TextFrame.HasText = True shape.TextFrame.TextRange.Text = 'slideText' shapes = [shape, shape] # WHEN: getting the text result = _get_text_from_shapes(shapes) # THEN: it should return the text self.assertEqual(result, 'slideText\nslideText\n', 'result should match \'slideText\nslideText\n\'') def get_text_from_shapes_with_no_shapes_test(self): """ Test getting text from powerpoint shapes with no shapes """ # GIVEN: empty shapes array shapes = [] # WHEN: getting the text result = _get_text_from_shapes(shapes) # THEN: it should not fail but return empty string self.assertEqual(result, '', 'result should be empty') def goto_slide_test(self): """ Test that goto_slide goes to next effect if the slide is already displayed """ # GIVEN: A Document with mocked controller, presentation, and mocked functions get_slide_number and next_step doc = PowerpointDocument(self.mock_controller, self.mock_presentation) doc.presentation = MagicMock() doc.presentation.SlideShowWindow.View.GetClickIndex.return_value = 1 doc.presentation.SlideShowWindow.View.GetClickCount.return_value = 2 doc.get_slide_number = MagicMock() doc.get_slide_number.return_value = 1 doc.next_step = MagicMock() doc.index_map[1] = 1 # WHEN: Calling goto_slide doc.goto_slide(1) # THEN: next_step() should be call to try to advance to the next effect. self.assertTrue(doc.next_step.called, 'next_step() should have been called!') def blank_screen_test(self): """ Test that blank_screen works as expected """ # GIVEN: A Document with mocked controller, presentation, and mocked function get_slide_number doc = PowerpointDocument(self.mock_controller, self.mock_presentation) doc.presentation = MagicMock() doc.presentation.SlideShowWindow.View.GetClickIndex.return_value = 3 doc.presentation.Application.Version = 14.0 doc.get_slide_number = MagicMock() doc.get_slide_number.return_value = 2 # WHEN: Calling goto_slide doc.blank_screen() # THEN: The view state, doc.blank_slide and doc.blank_click should have new values self.assertEquals(doc.presentation.SlideShowWindow.View.State, 3, 'The View State should be 3') self.assertEquals(doc.blank_slide, 2, 'doc.blank_slide should be 2 because of the PowerPoint version') self.assertEquals(doc.blank_click, 3, 'doc.blank_click should be 3 because of the PowerPoint version') def unblank_screen_test(self): """ Test that unblank_screen works as expected """ # GIVEN: A Document with mocked controller, presentation, ScreenList, and mocked function get_slide_number with patch('openlp.plugins.presentations.lib.powerpointcontroller.ScreenList') as mocked_screen_list: mocked_screen_list_ret = MagicMock() mocked_screen_list_ret.screen_list = [1] mocked_screen_list.return_value = mocked_screen_list_ret doc = PowerpointDocument(self.mock_controller, self.mock_presentation) doc.presentation = MagicMock() doc.presentation.SlideShowWindow.View.GetClickIndex.return_value = 3 doc.presentation.Application.Version = 14.0 doc.get_slide_number = MagicMock() doc.get_slide_number.return_value = 2 doc.index_map[1] = 1 doc.blank_slide = 1 doc.blank_click = 1 # WHEN: Calling goto_slide doc.unblank_screen() # THEN: The view state have new value, and several function should have been called self.assertEquals(doc.presentation.SlideShowWindow.View.State, 1, 'The View State should be 1') self.assertEquals(doc.presentation.SlideShowWindow.Activate.called, True, 'SlideShowWindow.Activate should have been called') self.assertEquals(doc.presentation.SlideShowWindow.View.GotoSlide.called, True, 'View.GotoSlide should have been called because of the PowerPoint version') self.assertEquals(doc.presentation.SlideShowWindow.View.GotoClick.called, True, 'View.GotoClick should have been called because of the PowerPoint version') OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_pdfcontroller.py0000644000175000017500000001375712657640340027314 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the PdfController """ import os import shutil from unittest import TestCase, SkipTest from tempfile import mkdtemp from PyQt5 import QtCore, QtGui from openlp.plugins.presentations.lib.pdfcontroller import PdfController, PdfDocument from tests.functional import MagicMock from openlp.core.common import Settings from openlp.core.lib import ScreenList from tests.utils.constants import TEST_RESOURCES_PATH from tests.helpers.testmixin import TestMixin __default_settings__ = { 'presentations/enable_pdf_program': False, 'presentations/thumbnail_scheme': '' } SCREEN = { 'primary': False, 'number': 1, 'size': QtCore.QRect(0, 0, 1024, 768) } class TestPdfController(TestCase, TestMixin): """ Test the PdfController. """ def setUp(self): """ Set up the components need for all tests. """ self.setup_application() self.build_settings() # Mocked out desktop object self.desktop = MagicMock() self.desktop.primaryScreen.return_value = SCREEN['primary'] self.desktop.screenCount.return_value = SCREEN['number'] self.desktop.screenGeometry.return_value = SCREEN['size'] self.screens = ScreenList.create(self.desktop) Settings().extend_default_settings(__default_settings__) self.temp_folder = mkdtemp() self.thumbnail_folder = mkdtemp() self.mock_plugin = MagicMock() self.mock_plugin.settings_section = self.temp_folder def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.screens self.destroy_settings() shutil.rmtree(self.thumbnail_folder) shutil.rmtree(self.temp_folder) def constructor_test(self): """ Test the Constructor from the PdfController """ # GIVEN: No presentation controller controller = None # WHEN: The presentation controller object is created controller = PdfController(plugin=self.mock_plugin) # THEN: The name of the presentation controller should be correct self.assertEqual('Pdf', controller.name, 'The name of the presentation controller should be correct') def load_pdf_test(self): """ Test loading of a Pdf using the PdfController """ # GIVEN: A Pdf-file test_file = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'pdf_test1.pdf') # WHEN: The Pdf is loaded controller = PdfController(plugin=self.mock_plugin) if not controller.check_available(): raise SkipTest('Could not detect mudraw or ghostscript, so skipping PDF test') controller.temp_folder = self.temp_folder controller.thumbnail_folder = self.thumbnail_folder document = PdfDocument(controller, test_file) loaded = document.load_presentation() # THEN: The load should succeed and we should be able to get a pagecount self.assertTrue(loaded, 'The loading of the PDF should succeed.') self.assertEqual(3, document.get_slide_count(), 'The pagecount of the PDF should be 3.') def load_pdf_pictures_test(self): """ Test loading of a Pdf and check size of generate pictures """ # GIVEN: A Pdf-file test_file = os.path.join(TEST_RESOURCES_PATH, 'presentations', 'pdf_test1.pdf') # WHEN: The Pdf is loaded controller = PdfController(plugin=self.mock_plugin) if not controller.check_available(): raise SkipTest('Could not detect mudraw or ghostscript, so skipping PDF test') controller.temp_folder = self.temp_folder controller.thumbnail_folder = self.thumbnail_folder document = PdfDocument(controller, test_file) loaded = document.load_presentation() # THEN: The load should succeed and pictures should be created and have been scales to fit the screen self.assertTrue(loaded, 'The loading of the PDF should succeed.') image = QtGui.QImage(os.path.join(self.temp_folder, 'pdf_test1.pdf', 'mainslide001.png')) # Based on the converter used the resolution will differ a bit if controller.gsbin: self.assertEqual(760, image.height(), 'The height should be 760') self.assertEqual(537, image.width(), 'The width should be 537') else: self.assertEqual(768, image.height(), 'The height should be 768') self.assertEqual(543, image.width(), 'The width should be 543') OpenLP-2.4/tests/functional/openlp_plugins/presentations/test_mediaitem.py0000644000175000017500000001526012657640340026364 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Presentations plugin. """ from unittest import TestCase from openlp.core.common import Registry from openlp.plugins.presentations.lib.mediaitem import PresentationMediaItem from tests.functional import patch, MagicMock, call from tests.helpers.testmixin import TestMixin class TestMediaItem(TestCase, TestMixin): """ Test the mediaitem methods. """ def setUp(self): """ Set up the components need for all tests. """ Registry.create() Registry().register('service_manager', MagicMock()) Registry().register('main_window', MagicMock()) with patch('openlp.plugins.presentations.lib.mediaitem.MediaManagerItem._setup'), \ patch('openlp.plugins.presentations.lib.mediaitem.PresentationMediaItem.setup_item'): self.media_item = PresentationMediaItem(None, MagicMock, MagicMock()) self.setup_application() def build_file_mask_string_test(self): """ Test the build_file_mask_string() method """ # GIVEN: Different controllers. impress_controller = MagicMock() impress_controller.enabled.return_value = True impress_controller.supports = ['odp'] impress_controller.also_supports = ['ppt'] presentation_controller = MagicMock() presentation_controller.enabled.return_value = True presentation_controller.supports = ['ppt'] presentation_controller.also_supports = [] presentation_viewer_controller = MagicMock() presentation_viewer_controller.enabled.return_value = False pdf_controller = MagicMock() pdf_controller.enabled.return_value = True pdf_controller.supports = ['pdf'] pdf_controller.also_supports = ['xps', 'oxps'] # Mock the controllers. self.media_item.controllers = { 'Impress': impress_controller, 'Powerpoint': presentation_controller, 'Powerpoint Viewer': presentation_viewer_controller, 'Pdf': pdf_controller } # WHEN: Build the file mask. with patch('openlp.plugins.presentations.lib.mediaitem.translate') as mocked_translate: mocked_translate.side_effect = lambda module, string_to_translate: string_to_translate self.media_item.build_file_mask_string() # THEN: The file mask should be generated correctly self.assertIn('*.odp', self.media_item.on_new_file_masks, 'The file mask should contain the odp extension') self.assertIn('*.ppt', self.media_item.on_new_file_masks, 'The file mask should contain the ppt extension') self.assertIn('*.pdf', self.media_item.on_new_file_masks, 'The file mask should contain the pdf extension') self.assertIn('*.xps', self.media_item.on_new_file_masks, 'The file mask should contain the xps extension') self.assertIn('*.oxps', self.media_item.on_new_file_masks, 'The file mask should contain the oxps extension') def clean_up_thumbnails_test(self): """ Test that the clean_up_thumbnails method works as expected when files exists. """ # GIVEN: A mocked controller, and mocked os.path.getmtime mocked_controller = MagicMock() mocked_doc = MagicMock() mocked_controller.add_document.return_value = mocked_doc mocked_controller.supports = ['tmp'] self.media_item.controllers = { 'Mocked': mocked_controller } presentation_file = 'file.tmp' with patch('openlp.plugins.presentations.lib.mediaitem.os.path.getmtime') as mocked_getmtime, \ patch('openlp.plugins.presentations.lib.mediaitem.os.path.exists') as mocked_exists: mocked_getmtime.side_effect = [100, 200] mocked_exists.return_value = True # WHEN: calling clean_up_thumbnails self.media_item.clean_up_thumbnails(presentation_file, True) # THEN: doc.presentation_deleted should have been called since the thumbnails mtime will be greater than # the presentation_file's mtime. mocked_doc.assert_has_calls([call.get_thumbnail_path(1, True), call.presentation_deleted()], True) def clean_up_thumbnails_missing_file_test(self): """ Test that the clean_up_thumbnails method works as expected when file is missing. """ # GIVEN: A mocked controller, and mocked os.path.exists mocked_controller = MagicMock() mocked_doc = MagicMock() mocked_controller.add_document.return_value = mocked_doc mocked_controller.supports = ['tmp'] self.media_item.controllers = { 'Mocked': mocked_controller } presentation_file = 'file.tmp' with patch('openlp.plugins.presentations.lib.mediaitem.os.path.exists') as mocked_exists: mocked_exists.return_value = False # WHEN: calling clean_up_thumbnails self.media_item.clean_up_thumbnails(presentation_file, True) # THEN: doc.presentation_deleted should have been called since the presentation file did not exists. mocked_doc.assert_has_calls([call.get_thumbnail_path(1, True), call.presentation_deleted()], True) OpenLP-2.4/tests/functional/openlp_plugins/__init__.py0000644000175000017500000000301012657640340022216 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/alerts/0000755000175000017500000000000012657640341021406 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/alerts/__init__.py0000644000175000017500000000301012657640340023510 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/alerts/test_manager.py0000644000175000017500000000701012657640340024426 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the CSV Bible importer. """ import os import json from unittest import TestCase from tests.functional import MagicMock, patch from openlp.core.common.registry import Registry from openlp.plugins.alerts.lib.alertsmanager import AlertsManager class TestAlertManager(TestCase): def setUp(self): """ Create the UI """ Registry.create() def remove_message_text_test(self): """ Test that Alerts are not triggered with empty strings """ # GIVEN: A valid Alert Manager alert_manager = AlertsManager(None) alert_manager.display_alert = MagicMock() # WHEN: Called with an empty string alert_manager.alert_text('') # THEN: the display should not have been triggered self.assertFalse(alert_manager.display_alert.called, 'The Alert should not have been called') def trigger_message_text_test(self): """ Test that Alerts are triggered with a text string """ # GIVEN: A valid Alert Manager alert_manager = AlertsManager(None) alert_manager.display_alert = MagicMock() # WHEN: Called with an empty string alert_manager.alert_text(['This is a string']) # THEN: the display should have been triggered self.assertTrue(alert_manager.display_alert.called, 'The Alert should have been called') def line_break_message_text_test(self): """ Test that Alerts are triggered with a text string but line breaks are removed """ # GIVEN: A valid Alert Manager alert_manager = AlertsManager(None) alert_manager.display_alert = MagicMock() # WHEN: Called with an empty string alert_manager.alert_text(['This is \n a string']) # THEN: the display should have been triggered self.assertTrue(alert_manager.display_alert.called, 'The Alert should have been called') alert_manager.display_alert.assert_called_once_with('This is a string') OpenLP-2.4/tests/functional/openlp_plugins/remotes/0000755000175000017500000000000012657640341021572 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/remotes/test_remotetab.py0000644000175000017500000001567712657640340025204 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Remotes plugin. """ import os import re from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Settings from openlp.plugins.remotes.lib.remotetab import RemoteTab from tests.functional import patch from tests.helpers.testmixin import TestMixin __default_settings__ = { 'remotes/twelve hour': True, 'remotes/port': 4316, 'remotes/https port': 4317, 'remotes/https enabled': False, 'remotes/user id': 'openlp', 'remotes/password': 'password', 'remotes/authentication enabled': False, 'remotes/ip address': '0.0.0.0', 'remotes/thumbnails': True } ZERO_URL = '0.0.0.0' TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources')) class TestRemoteTab(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Create the UI """ self.setup_application() self.build_settings() Settings().extend_default_settings(__default_settings__) self.parent = QtWidgets.QMainWindow() self.form = RemoteTab(self.parent, 'Remotes', None, None) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.parent del self.form self.destroy_settings() def get_ip_address_default_test(self): """ Test the get_ip_address function with ZERO_URL """ # WHEN: the default ip address is given ip_address = self.form.get_ip_address(ZERO_URL) # THEN: the default ip address will be returned self.assertTrue(re.match('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}', ip_address), 'The return value should be a valid ip address') def get_ip_address_with_ip_test(self): """ Test the get_ip_address function with given ip address """ # GIVEN: A mocked location # GIVEN: An ip address given_ip = '192.168.1.1' # WHEN: the default ip address is given ip_address = self.form.get_ip_address(given_ip) # THEN: the default ip address will be returned self.assertEqual(ip_address, given_ip, 'The return value should be %s' % given_ip) def set_basic_urls_test(self): """ Test the set_urls function with standard defaults """ # GIVEN: A mocked location with patch('openlp.core.common.Settings') as mocked_class, \ patch('openlp.core.utils.AppLocation.get_directory') as mocked_get_directory, \ patch('openlp.core.common.check_directory_exists') as mocked_check_directory_exists, \ patch('openlp.core.common.applocation.os') as mocked_os: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory() mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = False mocked_get_directory.return_value = 'test/dir' mocked_check_directory_exists.return_value = True mocked_os.path.normpath.return_value = 'test/dir' # WHEN: when the set_urls is called having reloaded the form. self.form.load() self.form.set_urls() # THEN: the following screen values should be set self.assertEqual(self.form.address_edit.text(), ZERO_URL, 'The default URL should be set on the screen') self.assertEqual(self.form.https_settings_group_box.isEnabled(), False, 'The Https box should not be enabled') self.assertEqual(self.form.https_settings_group_box.isChecked(), False, 'The Https checked box should note be Checked') self.assertEqual(self.form.user_login_group_box.isChecked(), False, 'The authentication box should not be enabled') def set_certificate_urls_test(self): """ Test the set_urls function with certificate available """ # GIVEN: A mocked location with patch('openlp.core.common.Settings') as mocked_class, \ patch('openlp.core.utils.AppLocation.get_directory') as mocked_get_directory, \ patch('openlp.core.common.check_directory_exists') as mocked_check_directory_exists, \ patch('openlp.core.common.applocation.os') as mocked_os: # GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory() mocked_settings = mocked_class.return_value mocked_settings.contains.return_value = False mocked_get_directory.return_value = TEST_PATH mocked_check_directory_exists.return_value = True mocked_os.path.normpath.return_value = TEST_PATH # WHEN: when the set_urls is called having reloaded the form. self.form.load() self.form.set_urls() # THEN: the following screen values should be set self.assertEqual(self.form.http_settings_group_box.isEnabled(), True, 'The Http group box should be enabled') self.assertEqual(self.form.https_settings_group_box.isChecked(), False, 'The Https checked box should be Checked') self.assertEqual(self.form.https_settings_group_box.isEnabled(), True, 'The Https box should be enabled') OpenLP-2.4/tests/functional/openlp_plugins/remotes/__init__.py0000644000175000017500000000301012657640340023674 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/remotes/test_router.py0000644000175000017500000004052212657640340024525 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Remotes plugin. """ import os import urllib.request from unittest import TestCase from openlp.core.common import Settings, Registry from openlp.core.ui import ServiceManager from openlp.plugins.remotes.lib.httpserver import HttpRouter from tests.functional import MagicMock, patch, mock_open from tests.helpers.testmixin import TestMixin __default_settings__ = { 'remotes/twelve hour': True, 'remotes/port': 4316, 'remotes/https port': 4317, 'remotes/https enabled': False, 'remotes/user id': 'openlp', 'remotes/password': 'password', 'remotes/authentication enabled': False, 'remotes/ip address': '0.0.0.0' } TEST_PATH = os.path.abspath(os.path.dirname(__file__)) class TestRouter(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Create the UI """ Registry.create() self.setup_application() self.build_settings() Settings().extend_default_settings(__default_settings__) self.service_manager = ServiceManager() self.router = HttpRouter() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def password_encrypter_test(self): """ Test hash userid and password function """ # GIVEN: A default configuration Settings().setValue('remotes/user id', 'openlp') Settings().setValue('remotes/password', 'password') # WHEN: called with the defined userid router = HttpRouter() router.initialise() test_value = 'b3BlbmxwOnBhc3N3b3Jk' # THEN: the function should return the correct password self.assertEqual(router.auth, test_value, 'The result for make_sha_hash should return the correct encrypted password') def process_http_request_test(self): """ Test the router control functionality """ # GIVEN: A testing set of Routes mocked_function = MagicMock() test_route = [ (r'^/stage/api/poll$', {'function': mocked_function, 'secure': False}), ] self.router.routes = test_route # WHEN: called with a poll route function, args = self.router.process_http_request('/stage/api/poll', None) # THEN: the function should have been called only once self.assertEqual(mocked_function, function['function'], 'The mocked function should match defined value.') self.assertFalse(function['secure'], 'The mocked function should not require any security.') def process_secure_http_request_test(self): """ Test the router control functionality """ # GIVEN: A testing set of Routes mocked_function = MagicMock() test_route = [ (r'^/stage/api/poll$', {'function': mocked_function, 'secure': True}), ] self.router.routes = test_route self.router.settings_section = 'remotes' Settings().setValue('remotes/authentication enabled', True) self.router.path = '/stage/api/poll' self.router.auth = '' self.router.headers = {'Authorization': None} self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() # WHEN: called with a poll route self.router.do_post_processor() # THEN: the function should have been called only once self.router.send_response.assert_called_once_with(401) self.assertEqual(self.router.send_header.call_count, 5, 'The header should have been called five times.') def get_content_type_test(self): """ Test the get_content_type logic """ # GIVEN: a set of files and their corresponding types headers = [ ['test.html', 'text/html'], ['test.css', 'text/css'], ['test.js', 'application/javascript'], ['test.jpg', 'image/jpeg'], ['test.gif', 'image/gif'], ['test.ico', 'image/x-icon'], ['test.png', 'image/png'], ['test.whatever', 'text/plain'], ['test', 'text/plain'], ['', 'text/plain'], [os.path.join(TEST_PATH, 'test.html'), 'text/html']] # WHEN: calling each file type for header in headers: ext, content_type = self.router.get_content_type(header[0]) # THEN: all types should match self.assertEqual(content_type, header[1], 'Mismatch of content type') def main_poll_test(self): """ Test the main poll logic """ # GIVEN: a defined router with two slides Registry.create() Registry().register('live_controller', MagicMock) router = HttpRouter() router.send_response = MagicMock() router.send_header = MagicMock() router.end_headers = MagicMock() router.live_controller.slide_count = 2 # WHEN: main poll called results = router.main_poll() # THEN: the correct response should be returned self.assertEqual(results.decode('utf-8'), '{"results": {"slide_count": 2}}', 'The resulting json strings should match') def serve_file_without_params_test(self): """ Test the serve_file method without params """ # GIVEN: mocked environment self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() self.router.html_dir = os.path.normpath('test/dir') self.router.template_vars = MagicMock() # WHEN: call serve_file with no file_name self.router.serve_file() # THEN: it should return a 404 self.router.send_response.assert_called_once_with(404) self.assertEqual(self.router.end_headers.call_count, 1, 'end_headers called once') def serve_file_with_valid_params_test(self): """ Test the serve_file method with an existing file """ # GIVEN: mocked environment self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() self.router.html_dir = os.path.normpath('test/dir') self.router.template_vars = MagicMock() with patch('openlp.core.lib.os.path.exists') as mocked_exists, \ patch('builtins.open', mock_open(read_data='123')): mocked_exists.return_value = True # WHEN: call serve_file with an existing html file self.router.serve_file(os.path.normpath('test/dir/test.html')) # THEN: it should return a 200 and the file self.router.send_response.assert_called_once_with(200) self.router.send_header.assert_called_once_with('Content-type', 'text/html') self.assertEqual(self.router.end_headers.call_count, 1, 'end_headers called once') def serve_thumbnail_without_params_test(self): """ Test the serve_thumbnail routine without params """ # GIVEN: mocked environment self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() # WHEN: I request a thumbnail self.router.serve_thumbnail() # THEN: The headers should be set correctly self.router.send_response.assert_called_once_with(404) self.assertEqual(self.router.send_response.call_count, 1, 'Send response should be called once') self.assertEqual(self.router.end_headers.call_count, 1, 'end_headers should be called once') def serve_thumbnail_with_invalid_params_test(self): """ Test the serve_thumbnail routine with invalid params """ # GIVEN: Mocked send_header, send_response, end_headers and wfile self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() # WHEN: pass a bad controller self.router.serve_thumbnail('badcontroller', 'tecnologia 1.pptx/slide1.png') # THEN: a 404 should be returned self.assertEqual(len(self.router.send_header.mock_calls), 4, 'header should be called 4 times') self.assertEqual(len(self.router.send_response.mock_calls), 1, 'One response') self.assertEqual(len(self.router.wfile.mock_calls), 1, 'Once call to write to the socket') self.router.send_response.assert_called_once_with(404) # WHEN: pass a bad filename self.router.send_response.reset_mock() self.router.serve_thumbnail('presentations', 'tecnologia 1.pptx/badfilename.png') # THEN: return a 404 self.router.send_response.assert_called_once_with(404) # WHEN: a dangerous URL is passed self.router.send_response.reset_mock() self.router.serve_thumbnail('presentations', '../tecnologia 1.pptx/slide1.png') # THEN: return a 404 self.router.send_response.assert_called_once_with(404) def serve_thumbnail_with_valid_params_test(self): """ Test the serve_thumbnail routine with valid params """ # GIVEN: Mocked send_header, send_response, end_headers and wfile self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() mocked_image_manager = MagicMock() Registry().register('image_manager', mocked_image_manager) file_name = 'another%20test/slide1.png' full_path = os.path.normpath(os.path.join('thumbnails', file_name)) width = 120 height = 90 with patch('openlp.core.lib.os.path.exists') as mocked_exists, \ patch('builtins.open', mock_open(read_data='123')), \ patch('openlp.plugins.remotes.lib.httprouter.AppLocation') as mocked_location, \ patch('openlp.plugins.remotes.lib.httprouter.image_to_byte') as mocked_image_to_byte: mocked_exists.return_value = True mocked_image_to_byte.return_value = '123' mocked_location.get_section_data_path.return_value = '' # WHEN: pass good controller and filename self.router.serve_thumbnail('presentations', '{0}x{1}'.format(width, height), file_name) # THEN: a file should be returned self.assertEqual(self.router.send_header.call_count, 1, 'One header') self.assertEqual(self.router.send_response.call_count, 1, 'Send response called once') self.assertEqual(self.router.end_headers.call_count, 1, 'end_headers called once') mocked_exists.assert_called_with(urllib.parse.unquote(full_path)) self.assertEqual(mocked_image_to_byte.call_count, 1, 'Called once') mocked_image_manager.add_image.assert_any_call(os.path.normpath(os.path.join('thumbnails', 'another test', 'slide1.png')), 'slide1.png', None, width, height) mocked_image_manager.get_image.assert_any_call(os.path.normpath(os.path.join('thumbnails', 'another test', 'slide1.png')), 'slide1.png', width, height) def remote_next_test(self): """ Test service manager receives remote next click properly (bug 1407445) """ # GIVEN: initial setup and mocks self.router.routes = [(r'^/api/service/(.*)$', {'function': self.router.service, 'secure': False})] self.router.request_data = False mocked_next_item = MagicMock() self.service_manager.next_item = mocked_next_item with patch.object(self.service_manager, 'setup_ui'), \ patch.object(self.router, 'do_json_header'): self.service_manager.bootstrap_initialise() self.app.processEvents() # WHEN: Remote next is received self.router.service(action='next') self.app.processEvents() # THEN: service_manager.next_item() should have been called self.assertTrue(mocked_next_item.called, 'next_item() should have been called in service_manager') def remote_previous_test(self): """ Test service manager receives remote previous click properly (bug 1407445) """ # GIVEN: initial setup and mocks self.router.routes = [(r'^/api/service/(.*)$', {'function': self.router.service, 'secure': False})] self.router.request_data = False mocked_previous_item = MagicMock() self.service_manager.previous_item = mocked_previous_item with patch.object(self.service_manager, 'setup_ui'), \ patch.object(self.router, 'do_json_header'): self.service_manager.bootstrap_initialise() self.app.processEvents() # WHEN: Remote next is received self.router.service(action='previous') self.app.processEvents() # THEN: service_manager.next_item() should have been called self.assertTrue(mocked_previous_item.called, 'previous_item() should have been called in service_manager') def remote_stage_personal_html_test(self): """ Test the stage url with a parameter after loaded a url/stage.html file """ # GIVEN: initial route self.router.config_dir = '' self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() self.router._process_file = MagicMock() # WHEN: I call stage with a suffix self.router.stages('stages', 'trb') # THEN: we should use the specific stage file instance self.router._process_file.assert_called_with(os.path.join('trb', 'stage.html')) def remote_stage_personal_css_test(self): """ Test the html with reference stages/trb/trb.css then loaded a stages/trb/trb.css file """ # GIVEN: initial route self.router.config_dir = '' self.router.send_response = MagicMock() self.router.send_header = MagicMock() self.router.end_headers = MagicMock() self.router.wfile = MagicMock() self.router._process_file = MagicMock() # WHEN: I call stage with a suffix self.router.stages('stages', 'stages/trb/trb.css') # THEN: we should use the specific stage file instance self.router._process_file.assert_called_with(os.path.join('trb', 'trb.css')) OpenLP-2.4/tests/functional/openlp_plugins/media/0000755000175000017500000000000012657640341021173 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/media/test_mediaplugin.py0000644000175000017500000000627412657640340025112 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Test the media plugin """ from unittest import TestCase from openlp.core import Registry from openlp.plugins.media.mediaplugin import MediaPlugin from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class MediaPluginTest(TestCase, TestMixin): """ Test the media plugin """ def setUp(self): Registry.create() @patch(u'openlp.plugins.media.mediaplugin.Plugin.initialise') @patch(u'openlp.plugins.media.mediaplugin.Settings') def initialise_test(self, _mocked_settings, mocked_initialise): """ Test that the initialise() method overwrites the built-in one, but still calls it """ # GIVEN: A media plugin instance and a mocked settings object media_plugin = MediaPlugin() mocked_settings = MagicMock() mocked_settings.get_files_from_config.return_value = True # Not the real value, just need something "true-ish" _mocked_settings.return_value = mocked_settings # WHEN: initialise() is called media_plugin.initialise() # THEN: The settings should be upgraded and the base initialise() method should be called mocked_settings.get_files_from_config.assert_called_with(media_plugin) mocked_settings.setValue.assert_called_with('media/media files', True) mocked_initialise.assert_called_with() def test_about_text(self): # GIVEN: The MediaPlugin # WHEN: Retrieving the about text # THEN: about() should return a string object self.assertIsInstance(MediaPlugin.about(), str) # THEN: about() should return a non-empty string self.assertNotEquals(len(MediaPlugin.about()), 0) OpenLP-2.4/tests/functional/openlp_plugins/media/__init__.py0000644000175000017500000000002512657640340023300 0ustar raoulraoul__author__ = 'raoul' OpenLP-2.4/tests/functional/openlp_plugins/media/test_mediaitem.py0000644000175000017500000000724312657640340024547 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Test the media plugin """ from unittest import TestCase from openlp.core import Registry, Settings from openlp.plugins.media.mediaplugin import MediaPlugin from openlp.plugins.media.lib.mediaitem import MediaMediaItem from openlp.core.ui.media.mediacontroller import MediaController from PyQt5 import QtCore from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin __default_settings__ = { 'media/media auto start': QtCore.Qt.Unchecked, 'media/media files': [] } class MediaItemTest(TestCase, TestMixin): """ Test the media item for Media """ def setUp(self): """ Set up the components need for all tests. """ with patch('openlp.plugins.media.lib.mediaitem.MediaManagerItem.__init__'),\ patch('openlp.plugins.media.lib.mediaitem.MediaMediaItem.setup'): self.media_item = MediaMediaItem(None, MagicMock()) self.media_item.settings_section = 'media' self.setup_application() self.build_settings() Settings().extend_default_settings(__default_settings__) def tearDown(self): """ Clean up after the tests """ self.destroy_settings() def test_search_found(self): """ Media Remote Search Successful find """ # GIVEN: The Mediaitem set up a list of media Settings().setValue(self.media_item.settings_section + '/media files', ['test.mp3', 'test.mp4']) # WHEN: Retrieving the test file result = self.media_item.search('test.mp4', False) # THEN: a file should be found self.assertEqual(result, [['test.mp4', 'test.mp4']], 'The result file contain the file name') def test_search_not_found(self): """ Media Remote Search not find """ # GIVEN: The Mediaitem set up a list of media Settings().setValue(self.media_item.settings_section + '/media files', ['test.mp3', 'test.mp4']) # WHEN: Retrieving the test file result = self.media_item.search('test.mpx', False) # THEN: a file should be found self.assertEqual(result, [], 'The result file should be empty') OpenLP-2.4/tests/functional/openlp_plugins/bibles/0000755000175000017500000000000012657640341021354 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/bibles/test_csvimport.py0000644000175000017500000001115512657640340025015 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the CSV Bible importer. """ import os import json from unittest import TestCase from tests.functional import MagicMock, patch from openlp.plugins.bibles.lib.csvbible import CSVBible from openlp.plugins.bibles.lib.db import BibleDB TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'bibles')) class TestCSVImport(TestCase): """ Test the functions in the :mod:`csvimport` module. """ def setUp(self): self.registry_patcher = patch('openlp.plugins.bibles.lib.db.Registry') self.registry_patcher.start() self.manager_patcher = patch('openlp.plugins.bibles.lib.db.Manager') self.manager_patcher.start() def tearDown(self): self.registry_patcher.stop() self.manager_patcher.stop() def create_importer_test(self): """ Test creating an instance of the CSV file importer """ # GIVEN: A mocked out "manager" mocked_manager = MagicMock() # WHEN: An importer object is created importer = CSVBible(mocked_manager, path='.', name='.', booksfile='.', versefile='.') # THEN: The importer should be an instance of BibleDB self.assertIsInstance(importer, BibleDB) def file_import_test(self): """ Test the actual import of CSV Bible file """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'dk1933.json'), 'rb') test_data = json.loads(result_file.read().decode()) books_file = os.path.join(TEST_PATH, 'dk1933-books.csv') verses_file = os.path.join(TEST_PATH, 'dk1933-verses.csv') with patch('openlp.plugins.bibles.lib.csvbible.CSVBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = CSVBible(mocked_manager, path='.', name='.', booksfile=books_file, versefile=verses_file) importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Danish' importer.get_book = MagicMock() # WHEN: Importing bible file importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.get_book().id, '1', verse_tag, verse_text) importer.create_book.assert_any_call('1. Mosebog', importer.get_book_ref_id_by_name(), 1) importer.create_book.assert_any_call('1. Krønikebog', importer.get_book_ref_id_by_name(), 1) OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_lib.py0000644000175000017500000001227012657640340023534 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Bibles plugin. """ from unittest import TestCase from openlp.plugins.bibles import lib from openlp.plugins.bibles.lib import SearchResults from tests.functional import MagicMock, patch class TestLib(TestCase): """ Test the functions in the :mod:`lib` module. """ def get_reference_separator_test(self): """ Test the get_reference_separator method """ # GIVEN: A list of expected separators separators = {'sep_r': '\\s*(?:e)\\s*', 'sep_e_default': 'end', 'sep_v_display': 'w', 'sep_l_display': 'r', 'sep_v_default': ':|v|V|verse|verses', 'sep_l': '\\s*(?:r)\\s*', 'sep_l_default': ',|and', 'sep_e': '\\s*(?:t)\\s*', 'sep_v': '\\s*(?:w)\\s*', 'sep_r_display': 'e', 'sep_r_default': '-|to'} def side_effect(): lib.REFERENCE_SEPARATORS = separators with patch('openlp.plugins.bibles.lib.update_reference_separators', **{'side_effect': side_effect}) as mocked_update_reference_separators: # WHEN: Calling get_reference_separator for key, value in separators.items(): ret = lib.get_reference_separator(key) # THEN: get_reference_separator should return the correct separator self.assertEqual(separators[key], value) mocked_update_reference_separators.assert_called_once_with() def search_results_creation_test(self): """ Test the creation and construction of the SearchResults class """ # GIVEN: A book, chapter and a verse list book = 'Genesis' chapter = 1 verse_list = { 1: 'In the beginning God created the heavens and the earth.', 2: 'The earth was without form and void, and darkness was over the face of the deep. And the Spirit of ' 'God was hovering over the face of the waters.' } # WHEN: We create the search results object search_results = SearchResults(book, chapter, verse_list) # THEN: It should have a book, a chapter and a verse list self.assertIsNotNone(search_results, 'The search_results object should not be None') self.assertEqual(search_results.book, book, 'The book should be "Genesis"') self.assertEqual(search_results.chapter, chapter, 'The chapter should be 1') self.assertDictEqual(search_results.verse_list, verse_list, 'The verse lists should be identical') def search_results_has_verse_list_test(self): """ Test that a SearchResults object with a valid verse list returns True when checking ``has_verse_list()`` """ # GIVEN: A valid SearchResults object with a proper verse list search_results = SearchResults('Genesis', 1, {1: 'In the beginning God created the heavens and the earth.'}) # WHEN: We check that the SearchResults object has a verse list has_verse_list = search_results.has_verse_list() # THEN: It should be True self.assertTrue(has_verse_list, 'The SearchResults object should have a verse list') def search_results_has_no_verse_list_test(self): """ Test that a SearchResults object with an empty verse list returns False when checking ``has_verse_list()`` """ # GIVEN: A valid SearchResults object with an empty verse list search_results = SearchResults('Genesis', 1, {}) # WHEN: We check that the SearchResults object has a verse list has_verse_list = search_results.has_verse_list() # THEN: It should be False self.assertFalse(has_verse_list, 'The SearchResults object should have a verse list') OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_http.py0000644000175000017500000002072612657640340023752 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the http module of the Bibles plugin. """ from unittest import TestCase from bs4 import BeautifulSoup from tests.functional import patch, MagicMock from openlp.plugins.bibles.lib.http import BSExtract # TODO: Items left to test # BGExtract # __init__ # _remove_elements # _extract_verse # _clean_soup # _extract_verses # _extract_verses_old # get_bible_chapter # get_books_from_http # _get_application # CWExtract # __init__ # get_bible_chapter # get_books_from_http # _get_application # HTTPBible # __init__ # do_import # get_verses # get_chapter # get_books # get_chapter_count # get_verse_count # _get_application # get_soup_for_bible_ref # send_error_message class TestBSExtract(TestCase): """ Test the BSExtractClass """ # TODO: Items left to test # BSExtract # __init__ # get_bible_chapter # get_books_from_http # _get_application def setUp(self): self.get_soup_for_bible_ref_patcher = patch('openlp.plugins.bibles.lib.http.get_soup_for_bible_ref') self.log_patcher = patch('openlp.plugins.bibles.lib.http.log') self.send_error_message_patcher = patch('openlp.plugins.bibles.lib.http.send_error_message') self.socket_patcher = patch('openlp.plugins.bibles.lib.http.socket') self.urllib_patcher = patch('openlp.plugins.bibles.lib.http.urllib') self.mock_get_soup_for_bible_ref = self.get_soup_for_bible_ref_patcher.start() self.mock_log = self.log_patcher.start() self.mock_send_error_message = self.send_error_message_patcher.start() self.mock_socket = self.socket_patcher.start() self.mock_soup = MagicMock() self.mock_urllib = self.urllib_patcher.start() def tearDown(self): self.get_soup_for_bible_ref_patcher.stop() self.log_patcher.stop() self.send_error_message_patcher.stop() self.socket_patcher.stop() self.urllib_patcher.stop() def get_books_from_http_no_soup_test(self): """ Test the get_books_from_http method when get_soup_for_bible_ref returns a falsey value """ # GIVEN: An instance of BSExtract, and reset log, urllib & get_soup_for_bible_ref mocks instance = BSExtract() self.mock_log.debug.reset_mock() self.mock_urllib.reset_mock() self.mock_get_soup_for_bible_ref.reset_mock() # WHEN: get_books_from_http is called with 'NIV' and get_soup_for_bible_ref returns a None value self.mock_urllib.parse.quote.return_value = 'NIV' self.mock_get_soup_for_bible_ref.return_value = None result = instance.get_books_from_http('NIV') # THEN: The rest mocks should be called with known values and get_books_from_http should return None self.mock_log.debug.assert_called_once_with('BSExtract.get_books_from_http("%s")', 'NIV') self.mock_urllib.parse.quote.assert_called_once_with(b'NIV') self.mock_get_soup_for_bible_ref.assert_called_once_with( 'http://m.bibleserver.com/overlay/selectBook?translation=NIV') self.assertIsNone(result, 'BSExtract.get_books_from_http should return None when get_soup_for_bible_ref returns a ' 'false value') def get_books_from_http_no_content_test(self): """ Test the get_books_from_http method when the specified element cannot be found in the tag object returned from get_soup_for_bible_ref """ # GIVEN: An instance of BSExtract, and reset log, urllib, get_soup_for_bible_ref & soup mocks instance = BSExtract() self.mock_log.reset_mock() self.mock_urllib.reset_mock() self.mock_get_soup_for_bible_ref.reset_mock() self.mock_soup.reset_mock() # WHEN: get_books_from_http is called with 'NIV', get_soup_for_bible_ref returns a mocked_soup object and # mocked_soup.find returns None self.mock_urllib.parse.quote.return_value = 'NIV' self.mock_soup.find.return_value = None self.mock_get_soup_for_bible_ref.return_value = self.mock_soup result = instance.get_books_from_http('NIV') # THEN: The rest mocks should be called with known values and get_books_from_http should return None self.mock_log.debug.assert_called_once_with('BSExtract.get_books_from_http("%s")', 'NIV') self.mock_urllib.parse.quote.assert_called_once_with(b'NIV') self.mock_get_soup_for_bible_ref.assert_called_once_with( 'http://m.bibleserver.com/overlay/selectBook?translation=NIV') self.mock_soup.find.assert_called_once_with('ul') self.mock_log.error.assert_called_once_with('No books found in the Bibleserver response.') self.mock_send_error_message.assert_called_once_with('parse') self.assertIsNone(result, 'BSExtract.get_books_from_http should return None when get_soup_for_bible_ref returns a ' 'false value') def get_books_from_http_content_test(self): """ Test the get_books_from_http method with sample HTML Also a regression test for bug #1184869. (The anchor tag in the second list item is empty) """ # GIVEN: An instance of BSExtract, and reset log, urllib & get_soup_for_bible_ref mocks and sample HTML data self.test_html = '' self.test_soup = BeautifulSoup(self.test_html, 'lxml') instance = BSExtract() self.mock_log.reset_mock() self.mock_urllib.reset_mock() self.mock_get_soup_for_bible_ref.reset_mock() self.mock_send_error_message.reset_mock() # WHEN: get_books_from_http is called with 'NIV' and get_soup_for_bible_ref returns tag object based on the # supplied test data. self.mock_urllib.parse.quote.return_value = 'NIV' self.mock_get_soup_for_bible_ref.return_value = self.test_soup result = instance.get_books_from_http('NIV') # THEN: The rest mocks should be called with known values and get_books_from_http should return the two books # in the test data self.mock_log.debug.assert_called_once_with('BSExtract.get_books_from_http("%s")', 'NIV') self.mock_urllib.parse.quote.assert_called_once_with(b'NIV') self.mock_get_soup_for_bible_ref.assert_called_once_with( 'http://m.bibleserver.com/overlay/selectBook?translation=NIV') self.assertFalse(self.mock_log.error.called, 'log.error should not have been called') self.assertFalse(self.mock_send_error_message.called, 'send_error_message should not have been called') self.assertEqual(result, ['Genesis', 'Leviticus']) OpenLP-2.4/tests/functional/openlp_plugins/bibles/__init__.py0000644000175000017500000000301012657640340023456 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_versereferencelist.py0000644000175000017500000001467612657640340026701 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the versereferencelist submodule of the Bibles plugin. """ from unittest import TestCase from openlp.plugins.bibles.lib.versereferencelist import VerseReferenceList class TestVerseReferenceList(TestCase): """ Test the VerseReferenceList class """ def add_first_verse_test(self): """ Test the addition of a verse to the empty list """ # GIVEN: an empty list reference_list = VerseReferenceList() book = 'testBook' chapter = 1 verse = 1 version = 'testVersion' copyright_ = 'testCopyright' permission = 'testPermission' # WHEN: We add it to the verse list reference_list.add(book, chapter, verse, version, copyright_, permission) # THEN: The entries should be in the first entry of the list self.assertEqual(reference_list.current_index, 0, 'The current index should be 0') self.assertEqual(reference_list.verse_list[0]['book'], book, 'The book in first entry should be %s' % book) self.assertEqual(reference_list.verse_list[0]['chapter'], chapter, 'The chapter in first entry should be %u' % chapter) self.assertEqual(reference_list.verse_list[0]['start'], verse, 'The start in first entry should be %u' % verse) self.assertEqual(reference_list.verse_list[0]['version'], version, 'The version in first entry should be %s' % version) self.assertEqual(reference_list.verse_list[0]['end'], verse, 'The end in first entry should be %u' % verse) def add_next_verse_test(self): """ Test the addition of the following verse """ # GIVEN: 1 line in the list of verses book = 'testBook' chapter = 1 verse = 1 next_verse = 2 version = 'testVersion' copyright_ = 'testCopyright' permission = 'testPermission' reference_list = VerseReferenceList() reference_list.add(book, chapter, verse, version, copyright_, permission) # WHEN: We add the following verse to the verse list reference_list.add(book, chapter, next_verse, version, copyright_, permission) # THEN: The current index should be 0 and the end pointer of the entry should be '2' self.assertEqual(reference_list.current_index, 0, 'The current index should be 0') self.assertEqual(reference_list.verse_list[0]['end'], next_verse, 'The end in first entry should be %u' % next_verse) def add_another_verse_test(self): """ Test the addition of a verse in another book """ # GIVEN: 1 line in the list of verses book = 'testBook' chapter = 1 verse = 1 another_book = 'testBook2' another_chapter = 2 another_verse = 5 version = 'testVersion' copyright_ = 'testCopyright' permission = 'testPermission' reference_list = VerseReferenceList() reference_list.add(book, chapter, verse, version, copyright_, permission) # WHEN: We add a verse of another book to the verse list reference_list.add(another_book, another_chapter, another_verse, version, copyright_, permission) # THEN: the current index should be 1 self.assertEqual(reference_list.current_index, 1, 'The current index should be 1') def add_version_test(self): """ Test the addition of a version to the list """ # GIVEN: version, copyright and permission reference_list = VerseReferenceList() version = 'testVersion' copyright_ = 'testCopyright' permission = 'testPermission' # WHEN: a not existing version will be added reference_list.add_version(version, copyright_, permission) # THEN: the data will be appended to the list self.assertEqual(len(reference_list.version_list), 1, 'The version data should be appended') self.assertEqual(reference_list.version_list[0], {'version': version, 'copyright': copyright_, 'permission': permission}, 'The version data should be appended') def add_existing_version_test(self): """ Test the addition of an existing version to the list """ # GIVEN: version, copyright and permission, added to the version list reference_list = VerseReferenceList() version = 'testVersion' copyright_ = 'testCopyright' permission = 'testPermission' reference_list.add_version(version, copyright_, permission) # WHEN: an existing version will be added reference_list.add_version(version, copyright_, permission) # THEN: the data will not be appended to the list self.assertEqual(len(reference_list.version_list), 1, 'The version data should not be appended') OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_osisimport.py0000644000175000017500000002201612657640340025175 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OSIS Bible importer. """ import os import json from unittest import TestCase from tests.functional import MagicMock, patch from openlp.plugins.bibles.lib.osis import OSISBible from openlp.plugins.bibles.lib.db import BibleDB TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'bibles')) class TestOsisImport(TestCase): """ Test the functions in the :mod:`osisimport` module. """ def setUp(self): self.registry_patcher = patch('openlp.plugins.bibles.lib.db.Registry') self.registry_patcher.start() self.manager_patcher = patch('openlp.plugins.bibles.lib.db.Manager') self.manager_patcher.start() def tearDown(self): self.registry_patcher.stop() self.manager_patcher.stop() def create_importer_test(self): """ Test creating an instance of the OSIS file importer """ # GIVEN: A mocked out "manager" mocked_manager = MagicMock() # WHEN: An importer object is created importer = OSISBible(mocked_manager, path='.', name='.', filename='') # THEN: The importer should be an instance of BibleDB self.assertIsInstance(importer, BibleDB) def file_import_nested_tags_test(self): """ Test the actual import of OSIS Bible file, with nested chapter and verse tags """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'dk1933.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'osis-dk1933.xml' with patch('openlp.plugins.bibles.lib.osis.OSISBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OSISBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Danish' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) def file_import_mixed_tags_test(self): """ Test the actual import of OSIS Bible file, with chapter tags containing milestone verse tags. """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'kjv.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'osis-kjv.xml' with patch('openlp.plugins.bibles.lib.osis.OSISBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OSISBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'English' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) def file_import_milestone_tags_test(self): """ Test the actual import of OSIS Bible file, with milestone chapter and verse tags. """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'web.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'osis-web.xml' with patch('openlp.plugins.bibles.lib.osis.OSISBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OSISBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'English' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) def file_import_empty_verse_tags_test(self): """ Test the actual import of OSIS Bible file, with an empty verse tags. """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'dk1933.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'osis-dk1933-empty-verse.xml' with patch('openlp.plugins.bibles.lib.osis.OSISBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OSISBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Danish' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_zefaniaimport.py0000644000175000017500000001360412657640340025640 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the Zefania Bible importer. """ import os import json from unittest import TestCase from tests.functional import MagicMock, patch from openlp.plugins.bibles.lib.zefania import ZefaniaBible from openlp.plugins.bibles.lib.db import BibleDB TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'bibles')) class TestZefaniaImport(TestCase): """ Test the functions in the :mod:`zefaniaimport` module. """ def setUp(self): self.registry_patcher = patch('openlp.plugins.bibles.lib.db.Registry') self.registry_patcher.start() self.manager_patcher = patch('openlp.plugins.bibles.lib.db.Manager') self.manager_patcher.start() def tearDown(self): self.registry_patcher.stop() self.manager_patcher.stop() def create_importer_test(self): """ Test creating an instance of the Zefania file importer """ # GIVEN: A mocked out "manager" mocked_manager = MagicMock() # WHEN: An importer object is created importer = ZefaniaBible(mocked_manager, path='.', name='.', filename='') # THEN: The importer should be an instance of BibleDB self.assertIsInstance(importer, BibleDB) def file_import_test(self): """ Test the actual import of Zefania Bible file """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'dk1933.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'zefania-dk1933.xml' with patch('openlp.plugins.bibles.lib.zefania.ZefaniaBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = ZefaniaBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Danish' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) importer.create_book.assert_any_call('Genesis', 1, 1) def file_import_no_book_name_test(self): """ Test the import of Zefania Bible file without book names """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'rst.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'zefania-rst.xml' with patch('openlp.plugins.bibles.lib.zefania.ZefaniaBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = ZefaniaBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Russian' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, '1', verse_tag, verse_text) importer.create_book.assert_any_call('Exodus', 2, 1) OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_mediaitem.py0000644000175000017500000001344012657640340024724 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Presentations plugin. """ from unittest import TestCase from openlp.plugins.bibles.lib.mediaitem import BibleMediaItem from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMediaItem(TestCase, TestMixin): """ Test the bible mediaitem methods. """ def setUp(self): """ Set up the components need for all tests. """ with patch('openlp.plugins.bibles.lib.mediaitem.MediaManagerItem._setup'),\ patch('openlp.plugins.bibles.lib.mediaitem.BibleMediaItem.setup_item'): self.media_item = BibleMediaItem(None, MagicMock()) self.setup_application() def display_results_no_results_test(self): """ Test the display_results method when called with a single bible, returning no results """ # GIVEN: A mocked build_display_results which returns an empty list with patch('openlp.plugins.bibles.lib.BibleMediaItem.build_display_results', **{'return_value': []}) \ as mocked_build_display_results: mocked_list_view = MagicMock() self.media_item.search_results = 'results' self.media_item.list_view = mocked_list_view # WHEN: Calling display_results with a single bible version self.media_item.display_results('NIV') # THEN: No items should be added to the list, and select all should have been called. mocked_build_display_results.assert_called_once_with('NIV', '', 'results') self.assertFalse(mocked_list_view.addItem.called) mocked_list_view.selectAll.assert_called_once_with() self.assertEqual(self.media_item.search_results, {}) self.assertEqual(self.media_item.second_search_results, {}) def display_results_two_bibles_no_results_test(self): """ Test the display_results method when called with two bibles, returning no results """ # GIVEN: A mocked build_display_results which returns an empty list with patch('openlp.plugins.bibles.lib.BibleMediaItem.build_display_results', **{'return_value': []}) \ as mocked_build_display_results: mocked_list_view = MagicMock() self.media_item.search_results = 'results' self.media_item.list_view = mocked_list_view # WHEN: Calling display_results with two single bible versions self.media_item.display_results('NIV', 'GNB') # THEN: build_display_results should have been called with two bible versions. # No items should be added to the list, and select all should have been called. mocked_build_display_results.assert_called_once_with('NIV', 'GNB', 'results') self.assertFalse(mocked_list_view.addItem.called) mocked_list_view.selectAll.assert_called_once_with() self.assertEqual(self.media_item.search_results, {}) self.assertEqual(self.media_item.second_search_results, {}) def display_results_returns_lots_of_results_test_test(self): """ Test the display_results method a large number of results (> 100) are returned """ # GIVEN: A mocked build_display_results which returns a large list of results long_list = list(range(100)) with patch('openlp.plugins.bibles.lib.BibleMediaItem.build_display_results', **{'return_value': long_list})\ as mocked_build_display_results: mocked_list_view = MagicMock() self.media_item.search_results = 'results' self.media_item.list_view = mocked_list_view # WHEN: Calling display_results self.media_item.display_results('NIV', 'GNB') # THEN: addItem should have been called 100 times, and the lsit items should not be selected. mocked_build_display_results.assert_called_once_with('NIV', 'GNB', 'results') self.assertEqual(mocked_list_view.addItem.call_count, 100) mocked_list_view.selectAll.assert_called_once_with() self.assertEqual(self.media_item.search_results, {}) self.assertEqual(self.media_item.second_search_results, {}) OpenLP-2.4/tests/functional/openlp_plugins/bibles/test_opensongimport.py0000644000175000017500000001261312657640340026052 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OpenSong Bible importer. """ import os import json from unittest import TestCase from tests.functional import MagicMock, patch from openlp.plugins.bibles.lib.opensong import OpenSongBible from openlp.plugins.bibles.lib.db import BibleDB TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'bibles')) class TestOpenSongImport(TestCase): """ Test the functions in the :mod:`opensongimport` module. """ def setUp(self): self.registry_patcher = patch('openlp.plugins.bibles.lib.db.Registry') self.registry_patcher.start() self.manager_patcher = patch('openlp.plugins.bibles.lib.db.Manager') self.manager_patcher.start() def tearDown(self): self.registry_patcher.stop() self.manager_patcher.stop() def create_importer_test(self): """ Test creating an instance of the OpenSong file importer """ # GIVEN: A mocked out "manager" mocked_manager = MagicMock() # WHEN: An importer object is created importer = OpenSongBible(mocked_manager, path='.', name='.', filename='') # THEN: The importer should be an instance of BibleDB self.assertIsInstance(importer, BibleDB) def file_import_test(self): """ Test the actual import of OpenSong Bible file """ # GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions # get_book_ref_id_by_name, create_verse, create_book, session and get_language. result_file = open(os.path.join(TEST_PATH, 'dk1933.json'), 'rb') test_data = json.loads(result_file.read().decode()) bible_file = 'opensong-dk1933.xml' with patch('openlp.plugins.bibles.lib.opensong.OpenSongBible.application'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OpenSongBible(mocked_manager, path='.', name='.', filename='') importer.wizard = mocked_import_wizard importer.get_book_ref_id_by_name = MagicMock() importer.create_verse = MagicMock() importer.create_book = MagicMock() importer.session = MagicMock() importer.get_language = MagicMock() importer.get_language.return_value = 'Danish' # WHEN: Importing bible file importer.filename = os.path.join(TEST_PATH, bible_file) importer.do_import() # THEN: The create_verse() method should have been called with each verse in the file. self.assertTrue(importer.create_verse.called) for verse_tag, verse_text in test_data['verses']: importer.create_verse.assert_any_call(importer.create_book().id, 1, int(verse_tag), verse_text) def zefania_import_error_test(self): """ Test that we give an error message if trying to import a zefania bible """ # GIVEN: A mocked out "manager" and mocked out critical_error_message_box and an import with patch('openlp.plugins.bibles.lib.opensong.critical_error_message_box') as \ mocked_critical_error_message_box: mocked_manager = MagicMock() importer = OpenSongBible(mocked_manager, path='.', name='.', filename='') # WHEN: An trying to import a zefania bible importer.filename = os.path.join(TEST_PATH, 'zefania-dk1933.xml') importer.do_import() # THEN: The importer should have "shown" an error message mocked_critical_error_message_box.assert_called_with(message='Incorrect Bible file type supplied. ' 'This looks like a Zefania XML bible, ' 'please use the Zefania import option.') OpenLP-2.4/tests/functional/openlp_plugins/songusage/0000755000175000017500000000000012657640341022107 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/songusage/test_songusage.py0000644000175000017500000000723312657640340025517 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the Songusage plugin. """ from unittest import TestCase from unittest.mock import MagicMock, patch from openlp.core import Registry from openlp.plugins.songusage.lib import upgrade from openlp.plugins.songusage.lib.db import init_schema from openlp.plugins.songusage.songusageplugin import SongUsagePlugin class TestSongUsage(TestCase): def setUp(self): Registry.create() def about_text_test(self): """ Test the about text of the song usage plugin """ # GIVEN: The SongUsagePlugin # WHEN: Retrieving the about text # THEN: about() should return a string object self.assertIsInstance(SongUsagePlugin.about(), str) # THEN: about() should return a non-empty string self.assertNotEquals(len(SongUsagePlugin.about()), 0) self.assertNotEquals(len(SongUsagePlugin.about()), 0) @patch('openlp.plugins.songusage.songusageplugin.Manager') def song_usage_init_test(self, MockedManager): """ Test the initialisation of the SongUsagePlugin class """ # GIVEN: A mocked database manager mocked_manager = MagicMock() MockedManager.return_value = mocked_manager # WHEN: The SongUsagePlugin class is instantiated song_usage = SongUsagePlugin() # THEN: It should be initialised correctly MockedManager.assert_called_with('songusage', init_schema, upgrade_mod=upgrade) self.assertEqual(mocked_manager, song_usage.manager) self.assertFalse(song_usage.song_usage_active) @patch('openlp.plugins.songusage.songusageplugin.Manager') def check_pre_conditions_test(self, MockedManager): """ Test that check_pre_condition returns true for valid manager session """ # GIVEN: A mocked database manager mocked_manager = MagicMock() mocked_manager.session = MagicMock() MockedManager.return_value = mocked_manager song_usage = SongUsagePlugin() # WHEN: The calling check_pre_conditions ret = song_usage.check_pre_conditions() # THEN: It should return True self.assertTrue(ret) OpenLP-2.4/tests/functional/openlp_plugins/songusage/__init__.py0000644000175000017500000000305712657640340024224 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Tests for the Songusage plugin """ OpenLP-2.4/tests/functional/openlp_plugins/songs/0000755000175000017500000000000012661025625021242 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/songs/test_sundayplusimport.py0000644000175000017500000000517312661025625026323 0ustar raoulraoul# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the VideoPsalm song importer. """ import os from tests.helpers.songfileimport import SongImportTestHelper from tests.functional import patch TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'sundayplussongs')) class TestSundayPlusFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'SundayPlusImport' self.importer_module_name = 'sundayplus' super(TestSundayPlusFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an SundayPlus file works correctly on various files """ with patch('openlp.plugins.songs.lib.importers.sundayplus.retrieve_windows_encoding') as \ mocked_retrieve_windows_encoding: mocked_retrieve_windows_encoding.return_value = 'cp1252' self.file_import([os.path.join(TEST_PATH, 'Amazing Grace.ptf')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_songbeamerimport.py0000644000175000017500000002407412657640340026241 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the Songbeamer song importer. """ import os from unittest import TestCase from tests.helpers.songfileimport import SongImportTestHelper from tests.functional import MagicMock, patch from openlp.plugins.songs.lib.importers.songbeamer import SongBeamerImport, SongBeamerTypes from openlp.core.common import Registry TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'songbeamersongs')) class TestSongBeamerFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'SongBeamerImport' self.importer_module_name = 'songbeamer' super(TestSongBeamerFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an OpenSong file works correctly on various files """ self.file_import([os.path.join(TEST_PATH, 'Lobsinget dem Herrn.sng')], self.load_external_result_data(os.path.join(TEST_PATH, 'Lobsinget dem Herrn.json'))) class TestSongBeamerImport(TestCase): """ Test the functions in the :mod:`songbeamerimport` module. """ def setUp(self): """ Create the registry """ Registry.create() def create_importer_test(self): """ Test creating an instance of the SongBeamer file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songbeamer.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = SongBeamerImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') def invalid_import_source_test(self): """ Test SongBeamerImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songbeamer.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = SongBeamerImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is not a list for source in ['not a list', 0]: importer.import_source = source # THEN: do_import should return none and the progress bar maximum should not be set. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is not a list') self.assertEqual(mocked_import_wizard.progress_bar.setMaximum.called, False, 'setMaxium on import_wizard.progress_bar should not have been called') def valid_import_source_test(self): """ Test SongBeamerImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songbeamer.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = SongBeamerImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is a list importer.import_source = ['List', 'of', 'files'] # THEN: do_import should return none and the progress bar setMaximum should be called with the length of # import_source. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is a list and stop_import_flag is True') mocked_import_wizard.progress_bar.setMaximum.assert_called_with(len(importer.import_source)) def check_verse_marks_test(self): """ Tests different lines to see if a verse mark is detected or not """ # GIVEN: line with unnumbered verse-type line = 'Refrain' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back true and c as self.current_verse_type self.assertTrue(result, 'Versemark for should be found, value true') self.assertEqual(self.current_verse_type, 'c', ' should be interpreted as ') # GIVEN: line with unnumbered verse-type and trailing space line = 'ReFrain ' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back true and c as self.current_verse_type self.assertTrue(result, 'Versemark for should be found, value true') self.assertEqual(self.current_verse_type, 'c', ' should be interpreted as ') # GIVEN: line with numbered verse-type line = 'VersE 1' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back true and v1 as self.current_verse_type self.assertTrue(result, 'Versemark for should be found, value true') self.assertEqual(self.current_verse_type, 'v1', u' should be interpreted as ') # GIVEN: line with special unnumbered verse-mark (used in Songbeamer to allow usage of non-supported tags) line = '$$M=special' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back true and o as self.current_verse_type self.assertTrue(result, 'Versemark for <$$M=special> should be found, value true') self.assertEqual(self.current_verse_type, 'o', u'<$$M=special> should be interpreted as ') # GIVEN: line with song-text with 3 words line = 'Jesus my saviour' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back false and none as self.current_verse_type self.assertFalse(result, 'No versemark for should be found, value false') self.assertIsNone(self.current_verse_type, ' should be interpreted as none versemark') # GIVEN: line with song-text with 2 words line = 'Praise him' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back false and none as self.current_verse_type self.assertFalse(result, 'No versemark for should be found, value false') self.assertIsNone(self.current_verse_type, ' should be interpreted as none versemark') # GIVEN: line with only a space (could occur, nothing regular) line = ' ' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back false and none as self.current_verse_type self.assertFalse(result, 'No versemark for < > should be found, value false') self.assertIsNone(self.current_verse_type, '< > should be interpreted as none versemark') # GIVEN: blank line (could occur, nothing regular) line = '' self.current_verse_type = None # WHEN: line is being checked for verse marks result = SongBeamerImport.check_verse_marks(self, line) # THEN: we should get back false and none as self.current_verse_type self.assertFalse(result, 'No versemark for <> should be found, value false') self.assertIsNone(self.current_verse_type, '<> should be interpreted as none versemark') def test_verse_marks_defined_in_lowercase(self): """ Test that the verse marks are all defined in lowercase """ # GIVEN: SongBeamber MarkTypes for tag in SongBeamerTypes.MarkTypes.keys(): # THEN: tag should be defined in lowercase self.assertEquals(tag, tag.lower(), 'Tags should be defined in lowercase') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_songselect.py0000644000175000017500000012450012657640340025025 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the CCLI SongSelect importer. """ import os from unittest import TestCase from urllib.error import URLError from PyQt5 import QtWidgets from tests.helpers.songfileimport import SongImportTestHelper from openlp.core import Registry from openlp.plugins.songs.forms.songselectform import SongSelectForm, SearchWorker from openlp.plugins.songs.lib import Song from openlp.plugins.songs.lib.songselect import SongSelectImport, LOGOUT_URL, BASE_URL from openlp.plugins.songs.lib.importers.cclifile import CCLIFileImport from tests.functional import MagicMock, patch, call from tests.helpers.testmixin import TestMixin TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'songselect')) class TestSongSelectImport(TestCase, TestMixin): """ Test the :class:`~openlp.plugins.songs.lib.songselect.SongSelectImport` class """ @patch('openlp.plugins.songs.lib.songselect.build_opener') def constructor_test(self, mocked_build_opener): """ Test that constructing a basic SongSelectImport object works correctly """ # GIVEN: The SongSelectImporter class and a mocked out build_opener # WHEN: An object is instantiated importer = SongSelectImport(None) # THEN: The object should have the correct properties self.assertIsNone(importer.db_manager, 'The db_manager should be None') self.assertIsNotNone(importer.html_parser, 'There should be a valid html_parser object') self.assertIsNotNone(importer.opener, 'There should be a valid opener object') self.assertEqual(1, mocked_build_opener.call_count, 'The build_opener method should have been called once') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def login_fails_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when logging in to SongSelect fails, the login method returns False """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_login_page = MagicMock() mocked_login_page.find.return_value = {'value': 'blah'} MockedBeautifulSoup.return_value = mocked_login_page mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The login method is called after being rigged to fail result = importer.login('username', 'password', mock_callback) # THEN: callback was called 3 times, open was called twice, find was called twice, and False was returned self.assertEqual(3, mock_callback.call_count, 'callback should have been called 3 times') self.assertEqual(2, mocked_login_page.find.call_count, 'find should have been called twice') self.assertEqual(2, mocked_opener.open.call_count, 'opener should have been called twice') self.assertFalse(result, 'The login method should have returned False') @patch('openlp.plugins.songs.lib.songselect.build_opener') def login_except_test(self, mocked_build_opener): """ Test that when logging in to SongSelect fails, the login method raises URLError """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_build_opener.open.side_effect = URLError('Fake URLError') mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The login method is called after being rigged to fail result = importer.login('username', 'password', mock_callback) # THEN: callback was called 1 time and False was returned self.assertEqual(1, mock_callback.call_count, 'callback should have been called 1 times') self.assertFalse(result, 'The login method should have returned False') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def login_succeeds_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when logging in to SongSelect succeeds, the login method returns True """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_login_page = MagicMock() mocked_login_page.find.side_effect = [{'value': 'blah'}, None] MockedBeautifulSoup.return_value = mocked_login_page mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The login method is called after being rigged to fail result = importer.login('username', 'password', mock_callback) # THEN: callback was called 3 times, open was called twice, find was called twice, and True was returned self.assertEqual(3, mock_callback.call_count, 'callback should have been called 3 times') self.assertEqual(2, mocked_login_page.find.call_count, 'find should have been called twice') self.assertEqual(2, mocked_opener.open.call_count, 'opener should have been called twice') self.assertTrue(result, 'The login method should have returned True') @patch('openlp.plugins.songs.lib.songselect.build_opener') def logout_test(self, mocked_build_opener): """ Test that when the logout method is called, it logs the user out of SongSelect """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener importer = SongSelectImport(None) # WHEN: The login method is called after being rigged to fail importer.logout() # THEN: The opener is called once with the logout url self.assertEqual(1, mocked_opener.open.call_count, 'opener should have been called once') mocked_opener.open.assert_called_with(LOGOUT_URL) @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def search_returns_no_results_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when the search finds no results, it simply returns an empty list """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_results_page = MagicMock() mocked_results_page.find_all.return_value = [] MockedBeautifulSoup.return_value = mocked_results_page mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The login method is called after being rigged to fail results = importer.search('text', 1000, mock_callback) # THEN: callback was never called, open was called once, find_all was called once, an empty list returned self.assertEqual(0, mock_callback.call_count, 'callback should not have been called') self.assertEqual(1, mocked_opener.open.call_count, 'open should have been called once') self.assertEqual(1, mocked_results_page.find_all.call_count, 'find_all should have been called once') mocked_results_page.find_all.assert_called_with('li', 'result pane') self.assertEqual([], results, 'The search method should have returned an empty list') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def search_returns_two_results_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when the search finds 2 results, it simply returns a list with 2 results """ # GIVEN: A bunch of mocked out stuff and an importer object # first search result mocked_result1 = MagicMock() mocked_result1.find.side_effect = [MagicMock(string='Title 1'), {'href': '/url1'}] mocked_result1.find_all.return_value = [MagicMock(string='Author 1-1'), MagicMock(string='Author 1-2')] # second search result mocked_result2 = MagicMock() mocked_result2.find.side_effect = [MagicMock(string='Title 2'), {'href': '/url2'}] mocked_result2.find_all.return_value = [MagicMock(string='Author 2-1'), MagicMock(string='Author 2-2')] # rest of the stuff mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_results_page = MagicMock() mocked_results_page.find_all.side_effect = [[mocked_result1, mocked_result2], []] MockedBeautifulSoup.return_value = mocked_results_page mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The search method is called results = importer.search('text', 1000, mock_callback) # THEN: callback was never called, open was called once, find_all was called once, an empty list returned self.assertEqual(2, mock_callback.call_count, 'callback should have been called twice') self.assertEqual(2, mocked_opener.open.call_count, 'open should have been called twice') self.assertEqual(2, mocked_results_page.find_all.call_count, 'find_all should have been called twice') mocked_results_page.find_all.assert_called_with('li', 'result pane') expected_list = [ {'title': 'Title 1', 'authors': ['Author 1-1', 'Author 1-2'], 'link': BASE_URL + '/url1'}, {'title': 'Title 2', 'authors': ['Author 2-1', 'Author 2-2'], 'link': BASE_URL + '/url2'} ] self.assertListEqual(expected_list, results, 'The search method should have returned two songs') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def search_reaches_max_results_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when the search finds MAX (2) results, it simply returns a list with those (2) """ # GIVEN: A bunch of mocked out stuff and an importer object # first search result mocked_result1 = MagicMock() mocked_result1.find.side_effect = [MagicMock(string='Title 1'), {'href': '/url1'}] mocked_result1.find_all.return_value = [MagicMock(string='Author 1-1'), MagicMock(string='Author 1-2')] # second search result mocked_result2 = MagicMock() mocked_result2.find.side_effect = [MagicMock(string='Title 2'), {'href': '/url2'}] mocked_result2.find_all.return_value = [MagicMock(string='Author 2-1'), MagicMock(string='Author 2-2')] # third search result mocked_result3 = MagicMock() mocked_result3.find.side_effect = [MagicMock(string='Title 3'), {'href': '/url3'}] mocked_result3.find_all.return_value = [MagicMock(string='Author 3-1'), MagicMock(string='Author 3-2')] # rest of the stuff mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_results_page = MagicMock() mocked_results_page.find_all.side_effect = [[mocked_result1, mocked_result2, mocked_result3], []] MockedBeautifulSoup.return_value = mocked_results_page mock_callback = MagicMock() importer = SongSelectImport(None) # WHEN: The search method is called results = importer.search('text', 2, mock_callback) # THEN: callback was called twice, open was called twice, find_all was called twice, max results returned self.assertEqual(2, mock_callback.call_count, 'callback should have been called twice') self.assertEqual(2, mocked_opener.open.call_count, 'open should have been called twice') self.assertEqual(2, mocked_results_page.find_all.call_count, 'find_all should have been called twice') mocked_results_page.find_all.assert_called_with('li', 'result pane') expected_list = [{'title': 'Title 1', 'authors': ['Author 1-1', 'Author 1-2'], 'link': BASE_URL + '/url1'}, {'title': 'Title 2', 'authors': ['Author 2-1', 'Author 2-2'], 'link': BASE_URL + '/url2'}] self.assertListEqual(expected_list, results, 'The search method should have returned two songs') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def stop_called_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that the search is stopped with stop() is called """ # GIVEN: An importer object that is currently "searching" importer = SongSelectImport(None) importer.run_search = True # WHEN: The stop method is called results = importer.stop() # THEN: Searching should have stopped self.assertFalse(importer.run_search, 'Searching should have been stopped') @patch('openlp.plugins.songs.lib.songselect.build_opener') def get_song_page_raises_exception_test(self, mocked_build_opener): """ Test that when BeautifulSoup gets a bad song page the get_song() method returns None """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_opener = MagicMock() mocked_build_opener.return_value = mocked_opener mocked_opener.open.read.side_effect = URLError('[Errno -2] Name or service not known') mocked_callback = MagicMock() importer = SongSelectImport(None) # WHEN: get_song is called result = importer.get_song({'link': 'link'}, callback=mocked_callback) # THEN: The callback should have been called once and None should be returned mocked_callback.assert_called_with() self.assertIsNone(result, 'The get_song() method should have returned None') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def get_song_lyrics_raise_exception_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that when BeautifulSoup gets a bad lyrics page the get_song() method returns None """ # GIVEN: A bunch of mocked out stuff and an importer object MockedBeautifulSoup.side_effect = [None, TypeError('Test Error')] mocked_callback = MagicMock() importer = SongSelectImport(None) # WHEN: get_song is called result = importer.get_song({'link': 'link'}, callback=mocked_callback) # THEN: The callback should have been called twice and None should be returned self.assertEqual(2, mocked_callback.call_count, 'The callback should have been called twice') self.assertIsNone(result, 'The get_song() method should have returned None') @patch('openlp.plugins.songs.lib.songselect.build_opener') @patch('openlp.plugins.songs.lib.songselect.BeautifulSoup') def get_song_test(self, MockedBeautifulSoup, mocked_build_opener): """ Test that the get_song() method returns the correct song details """ # GIVEN: A bunch of mocked out stuff and an importer object mocked_song_page = MagicMock() mocked_copyright = MagicMock() mocked_copyright.find_all.return_value = [MagicMock(string='Copyright 1'), MagicMock(string='Copyright 2')] mocked_song_page.find.side_effect = [ mocked_copyright, MagicMock(find=MagicMock(string='CCLI: 123456')) ] mocked_lyrics_page = MagicMock() mocked_find_all = MagicMock() mocked_find_all.side_effect = [ [ MagicMock(contents='The Lord told Noah: there\'s gonna be a floody, floody'), MagicMock(contents='So, rise and shine, and give God the glory, glory'), MagicMock(contents='The Lord told Noah to build him an arky, arky') ], [MagicMock(string='Verse 1'), MagicMock(string='Chorus'), MagicMock(string='Verse 2')] ] mocked_lyrics_page.find.return_value = MagicMock(find_all=mocked_find_all) MockedBeautifulSoup.side_effect = [mocked_song_page, mocked_lyrics_page] mocked_callback = MagicMock() importer = SongSelectImport(None) fake_song = {'title': 'Title', 'authors': ['Author 1', 'Author 2'], 'link': 'url'} # WHEN: get_song is called result = importer.get_song(fake_song, callback=mocked_callback) # THEN: The callback should have been called three times and the song should be returned self.assertEqual(3, mocked_callback.call_count, 'The callback should have been called twice') self.assertIsNotNone(result, 'The get_song() method should have returned a song dictionary') self.assertEqual(2, mocked_lyrics_page.find.call_count, 'The find() method should have been called twice') self.assertEqual(2, mocked_find_all.call_count, 'The find_all() method should have been called twice') self.assertEqual([call('section', 'lyrics'), call('section', 'lyrics')], mocked_lyrics_page.find.call_args_list, 'The find() method should have been called with the right arguments') self.assertEqual([call('p'), call('h3')], mocked_find_all.call_args_list, 'The find_all() method should have been called with the right arguments') self.assertIn('copyright', result, 'The returned song should have a copyright') self.assertIn('ccli_number', result, 'The returned song should have a CCLI number') self.assertIn('verses', result, 'The returned song should have verses') self.assertEqual(3, len(result['verses']), 'Three verses should have been returned') @patch('openlp.plugins.songs.lib.songselect.clean_song') @patch('openlp.plugins.songs.lib.songselect.Author') def save_song_new_author_test(self, MockedAuthor, mocked_clean_song): """ Test that saving a song with a new author performs the correct actions """ # GIVEN: A song to save, and some mocked out objects song_dict = { 'title': 'Arky Arky', 'authors': ['Public Domain'], 'verses': [ {'label': 'Verse 1', 'lyrics': 'The Lord told Noah: there\'s gonna be a floody, floody'}, {'label': 'Chorus 1', 'lyrics': 'So, rise and shine, and give God the glory, glory'}, {'label': 'Verse 2', 'lyrics': 'The Lord told Noah to build him an arky, arky'} ], 'copyright': 'Public Domain', 'ccli_number': '123456' } MockedAuthor.display_name.__eq__.return_value = False mocked_db_manager = MagicMock() mocked_db_manager.get_object_filtered.return_value = None importer = SongSelectImport(mocked_db_manager) # WHEN: The song is saved to the database result = importer.save_song(song_dict) # THEN: The return value should be a Song class and the mocked_db_manager should have been called self.assertIsInstance(result, Song, 'The returned value should be a Song object') mocked_clean_song.assert_called_with(mocked_db_manager, result) self.assertEqual(2, mocked_db_manager.save_object.call_count, 'The save_object() method should have been called twice') mocked_db_manager.get_object_filtered.assert_called_with(MockedAuthor, False) MockedAuthor.populate.assert_called_with(first_name='Public', last_name='Domain', display_name='Public Domain') self.assertEqual(1, len(result.authors_songs), 'There should only be one author') @patch('openlp.plugins.songs.lib.songselect.clean_song') @patch('openlp.plugins.songs.lib.songselect.Author') def save_song_existing_author_test(self, MockedAuthor, mocked_clean_song): """ Test that saving a song with an existing author performs the correct actions """ # GIVEN: A song to save, and some mocked out objects song_dict = { 'title': 'Arky Arky', 'authors': ['Public Domain'], 'verses': [ {'label': 'Verse 1', 'lyrics': 'The Lord told Noah: there\'s gonna be a floody, floody'}, {'label': 'Chorus 1', 'lyrics': 'So, rise and shine, and give God the glory, glory'}, {'label': 'Verse 2', 'lyrics': 'The Lord told Noah to build him an arky, arky'} ], 'copyright': 'Public Domain', 'ccli_number': '123456' } MockedAuthor.display_name.__eq__.return_value = False mocked_db_manager = MagicMock() mocked_db_manager.get_object_filtered.return_value = MagicMock() importer = SongSelectImport(mocked_db_manager) # WHEN: The song is saved to the database result = importer.save_song(song_dict) # THEN: The return value should be a Song class and the mocked_db_manager should have been called self.assertIsInstance(result, Song, 'The returned value should be a Song object') mocked_clean_song.assert_called_with(mocked_db_manager, result) self.assertEqual(2, mocked_db_manager.save_object.call_count, 'The save_object() method should have been called twice') mocked_db_manager.get_object_filtered.assert_called_with(MockedAuthor, False) self.assertEqual(0, MockedAuthor.populate.call_count, 'A new author should not have been instantiated') self.assertEqual(1, len(result.authors_songs), 'There should only be one author') @patch('openlp.plugins.songs.lib.songselect.clean_song') @patch('openlp.plugins.songs.lib.songselect.Author') def save_song_unknown_author_test(self, MockedAuthor, mocked_clean_song): """ Test that saving a song with an author name of only one word performs the correct actions """ # GIVEN: A song to save, and some mocked out objects song_dict = { 'title': 'Arky Arky', 'authors': ['Unknown'], 'verses': [ {'label': 'Verse 1', 'lyrics': 'The Lord told Noah: there\'s gonna be a floody, floody'}, {'label': 'Chorus 1', 'lyrics': 'So, rise and shine, and give God the glory, glory'}, {'label': 'Verse 2', 'lyrics': 'The Lord told Noah to build him an arky, arky'} ], 'copyright': 'Public Domain', 'ccli_number': '123456' } MockedAuthor.display_name.__eq__.return_value = False mocked_db_manager = MagicMock() mocked_db_manager.get_object_filtered.return_value = None importer = SongSelectImport(mocked_db_manager) # WHEN: The song is saved to the database result = importer.save_song(song_dict) # THEN: The return value should be a Song class and the mocked_db_manager should have been called self.assertIsInstance(result, Song, 'The returned value should be a Song object') mocked_clean_song.assert_called_with(mocked_db_manager, result) self.assertEqual(2, mocked_db_manager.save_object.call_count, 'The save_object() method should have been called twice') mocked_db_manager.get_object_filtered.assert_called_with(MockedAuthor, False) MockedAuthor.populate.assert_called_with(first_name='Unknown', last_name='', display_name='Unknown') self.assertEqual(1, len(result.authors_songs), 'There should only be one author') class TestSongSelectForm(TestCase, TestMixin): """ Test the :class:`~openlp.plugins.songs.forms.songselectform.SongSelectForm` class """ def setUp(self): """ Some set up for this test suite """ self.setup_application() self.app.setApplicationVersion('0.0') self.app.process_events = lambda: None Registry.create() Registry().register('application', self.app) def create_form_test(self): """ Test that we can create the SongSelect form """ # GIVEN: The SongSelectForm class and a mocked db manager mocked_plugin = MagicMock() mocked_db_manager = MagicMock() # WHEN: We create an instance ssform = SongSelectForm(None, mocked_plugin, mocked_db_manager) # THEN: The correct properties should have been assigned self.assertEqual(mocked_plugin, ssform.plugin, 'The correct plugin should have been assigned') self.assertEqual(mocked_db_manager, ssform.db_manager, 'The correct db_manager should have been assigned') @patch('openlp.plugins.songs.forms.songselectform.SongSelectImport') @patch('openlp.plugins.songs.forms.songselectform.QtWidgets.QMessageBox.critical') @patch('openlp.plugins.songs.forms.songselectform.translate') def login_fails_test(self, mocked_translate, mocked_critical, MockedSongSelectImport): """ Test that when the login fails, the form returns to the correct state """ # GIVEN: A valid SongSelectForm with a mocked out SongSelectImport, and a bunch of mocked out controls mocked_song_select_import = MagicMock() mocked_song_select_import.login.return_value = False MockedSongSelectImport.return_value = mocked_song_select_import mocked_translate.side_effect = lambda *args: args[1] ssform = SongSelectForm(None, MagicMock(), MagicMock()) ssform.initialise() with patch.object(ssform, 'username_edit') as mocked_username_edit, \ patch.object(ssform, 'password_edit') as mocked_password_edit, \ patch.object(ssform, 'save_password_checkbox') as mocked_save_password_checkbox, \ patch.object(ssform, 'login_button') as mocked_login_button, \ patch.object(ssform, 'login_spacer') as mocked_login_spacer, \ patch.object(ssform, 'login_progress_bar') as mocked_login_progress_bar, \ patch.object(ssform.application, 'process_events') as mocked_process_events: # WHEN: The login button is clicked, and the login is rigged to fail ssform.on_login_button_clicked() # THEN: The right things should have happened in the right order expected_username_calls = [call(False), call(True)] expected_password_calls = [call(False), call(True)] expected_save_password_calls = [call(False), call(True)] expected_login_btn_calls = [call(False), call(True)] expected_login_spacer_calls = [call(False), call(True)] expected_login_progress_visible_calls = [call(True), call(False)] expected_login_progress_value_calls = [call(0), call(0)] self.assertEqual(expected_username_calls, mocked_username_edit.setEnabled.call_args_list, 'The username edit should be disabled then enabled') self.assertEqual(expected_password_calls, mocked_password_edit.setEnabled.call_args_list, 'The password edit should be disabled then enabled') self.assertEqual(expected_save_password_calls, mocked_save_password_checkbox.setEnabled.call_args_list, 'The save password checkbox should be disabled then enabled') self.assertEqual(expected_login_btn_calls, mocked_login_button.setEnabled.call_args_list, 'The login button should be disabled then enabled') self.assertEqual(expected_login_spacer_calls, mocked_login_spacer.setVisible.call_args_list, 'Thee login spacer should be make invisible, then visible') self.assertEqual(expected_login_progress_visible_calls, mocked_login_progress_bar.setVisible.call_args_list, 'Thee login progress bar should be make visible, then invisible') self.assertEqual(expected_login_progress_value_calls, mocked_login_progress_bar.setValue.call_args_list, 'Thee login progress bar should have the right values set') self.assertEqual(2, mocked_process_events.call_count, 'The process_events() method should be called twice') mocked_critical.assert_called_with(ssform, 'Error Logging In', 'There was a problem logging in, ' 'perhaps your username or password is ' 'incorrect?') @patch('openlp.plugins.songs.forms.songselectform.QtWidgets.QMessageBox.question') @patch('openlp.plugins.songs.forms.songselectform.translate') def on_import_yes_clicked_test(self, mocked_translate, mocked_question): """ Test that when a song is imported and the user clicks the "yes" button, the UI goes back to the previous page """ # GIVEN: A valid SongSelectForm with a mocked out QMessageBox.question() method mocked_translate.side_effect = lambda *args: args[1] mocked_question.return_value = QtWidgets.QMessageBox.Yes ssform = SongSelectForm(None, MagicMock(), MagicMock()) mocked_song_select_importer = MagicMock() ssform.song_select_importer = mocked_song_select_importer ssform.song = None # WHEN: The import button is clicked, and the user clicks Yes with patch.object(ssform, 'on_back_button_clicked') as mocked_on_back_button_clicked: ssform.on_import_button_clicked() # THEN: The on_back_button_clicked() method should have been called mocked_song_select_importer.save_song.assert_called_with(None) mocked_question.assert_called_with(ssform, 'Song Imported', 'Your song has been imported, would you like to import more songs?', QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.Yes) mocked_on_back_button_clicked.assert_called_with() self.assertIsNone(ssform.song) @patch('openlp.plugins.songs.forms.songselectform.QtWidgets.QMessageBox.question') @patch('openlp.plugins.songs.forms.songselectform.translate') def on_import_no_clicked_test(self, mocked_translate, mocked_question): """ Test that when a song is imported and the user clicks the "no" button, the UI exits """ # GIVEN: A valid SongSelectForm with a mocked out QMessageBox.question() method mocked_translate.side_effect = lambda *args: args[1] mocked_question.return_value = QtWidgets.QMessageBox.No ssform = SongSelectForm(None, MagicMock(), MagicMock()) mocked_song_select_importer = MagicMock() ssform.song_select_importer = mocked_song_select_importer ssform.song = None # WHEN: The import button is clicked, and the user clicks Yes with patch.object(ssform, 'done') as mocked_done: ssform.on_import_button_clicked() # THEN: The on_back_button_clicked() method should have been called mocked_song_select_importer.save_song.assert_called_with(None) mocked_question.assert_called_with(ssform, 'Song Imported', 'Your song has been imported, would you like to import more songs?', QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.Yes) mocked_done.assert_called_with(QtWidgets.QDialog.Accepted) self.assertIsNone(ssform.song) def on_back_button_clicked_test(self): """ Test that when the back button is clicked, the stacked widget is set back one page """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) # WHEN: The back button is clicked with patch.object(ssform, 'stacked_widget') as mocked_stacked_widget, \ patch.object(ssform, 'search_combobox') as mocked_search_combobox: ssform.on_back_button_clicked() # THEN: The stacked widget should be set back one page mocked_stacked_widget.setCurrentIndex.assert_called_with(1) mocked_search_combobox.setFocus.assert_called_with() @patch('openlp.plugins.songs.forms.songselectform.QtWidgets.QMessageBox.information') def on_search_show_info_test(self, mocked_information): """ Test that when the search_show_info signal is emitted, the on_search_show_info() method shows a dialog """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) expected_title = 'Test Title' expected_text = 'This is a test' # WHEN: on_search_show_info is called ssform.on_search_show_info(expected_title, expected_text) # THEN: An information dialog should be shown mocked_information.assert_called_with(ssform, expected_title, expected_text) def update_login_progress_test(self): """ Test the _update_login_progress() method """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) # WHEN: _update_login_progress() is called with patch.object(ssform, 'login_progress_bar') as mocked_login_progress_bar: mocked_login_progress_bar.value.return_value = 3 ssform._update_login_progress() # THEN: The login progress bar should be updated mocked_login_progress_bar.setValue.assert_called_with(4) def update_song_progress_test(self): """ Test the _update_song_progress() method """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) # WHEN: _update_song_progress() is called with patch.object(ssform, 'song_progress_bar') as mocked_song_progress_bar: mocked_song_progress_bar.value.return_value = 2 ssform._update_song_progress() # THEN: The song progress bar should be updated mocked_song_progress_bar.setValue.assert_called_with(3) def on_search_results_widget_double_clicked_test(self): """ Test that a song is retrieved when a song in the results list is double-clicked """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) expected_song = {'title': 'Amazing Grace'} # WHEN: A song result is double-clicked with patch.object(ssform, '_view_song') as mocked_view_song: ssform.on_search_results_widget_double_clicked(expected_song) # THEN: The song is fetched and shown to the user mocked_view_song.assert_called_with(expected_song) def on_view_button_clicked_test(self): """ Test that a song is retrieved when the view button is clicked """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) expected_song = {'title': 'Amazing Grace'} # WHEN: A song result is double-clicked with patch.object(ssform, '_view_song') as mocked_view_song, \ patch.object(ssform, 'search_results_widget') as mocked_search_results_widget: mocked_search_results_widget.currentItem.return_value = expected_song ssform.on_view_button_clicked() # THEN: The song is fetched and shown to the user mocked_view_song.assert_called_with(expected_song) def on_search_results_widget_selection_changed_test(self): """ Test that the view button is updated when the search results list is changed """ # GIVEN: A SongSelect form ssform = SongSelectForm(None, MagicMock(), MagicMock()) # WHEN: There is at least 1 item selected with patch.object(ssform, 'search_results_widget') as mocked_search_results_widget, \ patch.object(ssform, 'view_button') as mocked_view_button: mocked_search_results_widget.selectedItems.return_value = [1] ssform.on_search_results_widget_selection_changed() # THEN: The view button should be enabled mocked_view_button.setEnabled.assert_called_with(True) @patch('openlp.plugins.songs.forms.songselectform.SongSelectImport') def on_stop_button_clicked_test(self, MockedSongSelectImport): """ Test that the search is stopped when the stop button is clicked """ # GIVEN: A mocked SongSelectImporter and a SongSelect form mocked_song_select_importer = MagicMock() MockedSongSelectImport.return_value = mocked_song_select_importer ssform = SongSelectForm(None, MagicMock(), MagicMock()) ssform.initialise() # WHEN: The stop button is clicked ssform.on_stop_button_clicked() # THEN: The view button should be enabled mocked_song_select_importer.stop.assert_called_with() class TestSongSelectFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'CCLIFileImport' self.importer_module_name = 'cclifile' super(TestSongSelectFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an OpenSong file works correctly on various files """ self.file_import([os.path.join(TEST_PATH, 'TestSong.bin')], self.load_external_result_data(os.path.join(TEST_PATH, 'TestSong-bin.json'))) self.file_import([os.path.join(TEST_PATH, 'TestSong.txt')], self.load_external_result_data(os.path.join(TEST_PATH, 'TestSong-txt.json'))) class TestSearchWorker(TestCase, TestMixin): """ Test the SearchWorker class """ def constructor_test(self): """ Test the SearchWorker constructor """ # GIVEN: An importer mock object and some search text importer = MagicMock() search_text = 'Jesus' # WHEN: The search worker is created worker = SearchWorker(importer, search_text) # THEN: The correct values should be set self.assertIs(importer, worker.importer, 'The importer should be the right object') self.assertEqual(search_text, worker.search_text, 'The search text should be correct') def start_test(self): """ Test the start() method of the SearchWorker class """ # GIVEN: An importer mock object, some search text and an initialised SearchWorker importer = MagicMock() importer.search.return_value = ['song1', 'song2'] search_text = 'Jesus' worker = SearchWorker(importer, search_text) # WHEN: The start() method is called with patch.object(worker, 'finished') as mocked_finished, patch.object(worker, 'quit') as mocked_quit: worker.start() # THEN: The "finished" and "quit" signals should be emitted importer.search.assert_called_with(search_text, 1000, worker._found_song_callback) mocked_finished.emit.assert_called_with() mocked_quit.emit.assert_called_with() @patch('openlp.plugins.songs.forms.songselectform.translate') def start_over_1000_songs_test(self, mocked_translate): """ Test the start() method of the SearchWorker class when it finds over 1000 songs """ # GIVEN: An importer mock object, some search text and an initialised SearchWorker mocked_translate.side_effect = lambda x, y: y importer = MagicMock() importer.search.return_value = ['song%s' % num for num in range(1050)] search_text = 'Jesus' worker = SearchWorker(importer, search_text) # WHEN: The start() method is called with patch.object(worker, 'finished') as mocked_finished, patch.object(worker, 'quit') as mocked_quit, \ patch.object(worker, 'show_info') as mocked_show_info: worker.start() # THEN: The "finished" and "quit" signals should be emitted importer.search.assert_called_with(search_text, 1000, worker._found_song_callback) mocked_show_info.emit.assert_called_with('More than 1000 results', 'Your search has returned more than 1000 ' 'results, it has been stopped. Please ' 'refine your search to fetch better ' 'results.') mocked_finished.emit.assert_called_with() mocked_quit.emit.assert_called_with() def found_song_callback_test(self): """ Test that when the _found_song_callback() function is called, the "found_song" signal is emitted """ # GIVEN: An importer mock object, some search text and an initialised SearchWorker importer = MagicMock() search_text = 'Jesus' song = {'title': 'Amazing Grace'} worker = SearchWorker(importer, search_text) # WHEN: The start() method is called with patch.object(worker, 'found_song') as mocked_found_song: worker._found_song_callback(song) # THEN: The "found_song" signal should have been emitted mocked_found_song.emit.assert_called_with(song) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_openlyricsimport.py0000644000175000017500000002142012657640340026276 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OpenLyrics song importer. """ import os import json from unittest import TestCase from lxml import etree, objectify from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin from openlp.plugins.songs.lib.importers.openlyrics import OpenLyricsImport from openlp.plugins.songs.lib.importers.songimport import SongImport from openlp.plugins.songs.lib.openlyricsxml import OpenLyrics from openlp.core.common import Registry, Settings TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'openlyricssongs')) SONG_TEST_DATA = { 'What a friend we have in Jesus.xml': { 'title': 'What A Friend We Have In Jesus', 'verses': [ ('What a friend we have in Jesus, All ours sins and griefs to bear;\n\ What a privilege to carry, Everything to God in prayer!\n\ O what peace we often forfeit, O what needless pain we bear;\n\ All because we do not carry, Everything to God in prayer!', 'v1'), ('Have we trials and temptations? Is there trouble anywhere?\n\ We should never be discouraged, Take it to the Lord in prayer.\n\ Can we find a friend so faithful? Who will all our sorrows share?\n\ Jesus knows our every weakness; Take it to the Lord in prayer.', 'v2'), ('Are we weak and heavy laden, Cumbered with a load of care?\n\ Precious Saviour still our refuge; Take it to the Lord in prayer.\n\ Do thy friends despise forsake thee? Take it to the Lord in prayer!\n\ In His arms He’ll take and shield thee; Thou wilt find a solace there.', 'v3') ] } } start_tags = [{"protected": False, "desc": "z", "start tag": "{z}", "end html": "", "temporary": False, "end tag": "{/z}", "start html": "strong>"}] result_tags = [{"temporary": False, "protected": False, "desc": "z", "start tag": "{z}", "start html": "strong>", "end html": "", "end tag": "{/z}"}, {"temporary": False, "end tag": "{/c}", "desc": "c", "start tag": "{c}", "start html": "", "end html": "", "protected": False}] author_xml = '\ \ Test Author1\ Test Author1\ Test Author2\ \ ' songbook_xml = '\ \ \ \ \ ' class TestOpenLyricsImport(TestCase, TestMixin): """ Test the functions in the :mod:`openlyricsimport` module. """ def setUp(self): """ Create the registry """ self.setup_application() Registry.create() self.build_settings() def tearDown(self): """ Cleanup """ self.destroy_settings() def create_importer_test(self): """ Test creating an instance of the OpenLyrics file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.openlyrics.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = OpenLyricsImport(mocked_manager, filenames=[]) # THEN: The importer should be an instance of SongImport self.assertIsInstance(importer, SongImport) def file_import_test(self): """ Test the actual import of real song files """ # GIVEN: Test files with a mocked out "manager" and a mocked out "import_wizard" for song_file in SONG_TEST_DATA: mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OpenLyricsImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.open_lyrics = MagicMock() importer.open_lyrics.xml_to_song = MagicMock() # WHEN: Importing each file importer.import_source = [os.path.join(TEST_PATH, song_file)] importer.do_import() # THEN: The xml_to_song() method should have been called self.assertTrue(importer.open_lyrics.xml_to_song.called) def process_formatting_tags_test(self): """ Test that _process_formatting_tags works """ # GIVEN: A OpenLyric XML with formatting tags and a mocked out manager mocked_manager = MagicMock() Settings().setValue('formattingTags/html_tags', json.dumps(start_tags)) ol = OpenLyrics(mocked_manager) parser = etree.XMLParser(remove_blank_text=True) parsed_file = etree.parse(open(os.path.join(TEST_PATH, 'duchu-tags.xml'), 'rb'), parser) xml = etree.tostring(parsed_file).decode() song_xml = objectify.fromstring(xml) # WHEN: processing the formatting tags ol._process_formatting_tags(song_xml, False) # THEN: New tags should have been saved self.assertListEqual(json.loads(json.dumps(result_tags)), json.loads(str(Settings().value('formattingTags/html_tags'))), 'The formatting tags should contain both the old and the new') def process_author_test(self): """ Test that _process_authors works """ # GIVEN: A OpenLyric XML with authors and a mocked out manager with patch('openlp.plugins.songs.lib.openlyricsxml.Author') as mocked_author: mocked_manager = MagicMock() mocked_manager.get_object_filtered.return_value = None ol = OpenLyrics(mocked_manager) properties_xml = objectify.fromstring(author_xml) mocked_song = MagicMock() # WHEN: processing the author xml ol._process_authors(properties_xml, mocked_song) # THEN: add_author should have been called twice self.assertEquals(mocked_song.method_calls[0][1][1], 'words+music') self.assertEquals(mocked_song.method_calls[1][1][1], 'words') def process_songbooks_test(self): """ Test that _process_songbooks works """ # GIVEN: A OpenLyric XML with songbooks and a mocked out manager with patch('openlp.plugins.songs.lib.openlyricsxml.Book'): mocked_manager = MagicMock() mocked_manager.get_object_filtered.return_value = None ol = OpenLyrics(mocked_manager) properties_xml = objectify.fromstring(songbook_xml) mocked_song = MagicMock() # WHEN: processing the songbook xml ol._process_songbooks(properties_xml, mocked_song) # THEN: add_songbook_entry should have been called twice self.assertEquals(mocked_song.method_calls[0][1][1], '48') self.assertEquals(mocked_song.method_calls[1][1][1], '445 A') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_worshipassistantimport.py0000644000175000017500000000545312661025625027542 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`worshipassistantimport` module provides the functionality for importing WorshipAssistant song files into the current installation database. """ import os from tests.helpers.songfileimport import SongImportTestHelper TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'worshipassistantsongs')) class TestWorshipAssistantFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'WorshipAssistantImport' self.importer_module_name = 'worshipassistant' super(TestWorshipAssistantFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an Worship Assistant file works correctly """ self.file_import(os.path.join(TEST_PATH, 'du_herr.csv'), self.load_external_result_data(os.path.join(TEST_PATH, 'du_herr.json'))) self.file_import(os.path.join(TEST_PATH, 'would_you_be_free.csv'), self.load_external_result_data(os.path.join(TEST_PATH, 'would_you_be_free.json'))) self.file_import(os.path.join(TEST_PATH, 'would_you_be_free2.csv'), self.load_external_result_data(os.path.join(TEST_PATH, 'would_you_be_free.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_songproimport.py0000644000175000017500000000457712657640340025614 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`songproimport` module provides the functionality for importing SongPro song files into the current installation database. """ import os from tests.helpers.songfileimport import SongImportTestHelper TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'songprosongs')) class TestSongProFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'SongProImport' self.importer_module_name = 'songpro' super(TestSongProFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an SongPro file works correctly """ self.file_import(os.path.join(TEST_PATH, 'amazing-grace.txt'), self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_songformat.py0000644000175000017500000001204512657640340025036 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2015 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the SongFormat class """ from unittest import TestCase from openlp.plugins.songs.lib.importer import SongFormat class TestSongFormat(TestCase): """ Test the functions in the :class:`SongFormat` class. """ def test_get_format_list(self): """ Test that get_format_list() returns all available formats """ # GIVEN: The SongFormat class # WHEN: Retrieving the format list # THEN: All SongFormats should be returned self.assertEquals(len(SongFormat.get_format_list()), len(SongFormat.__attributes__), "The returned SongFormats don't match the stored ones") def test_get_attributed_no_attributes(self): """ Test that SongFormat.get(song_format) returns all attributes associated with the given song_format """ # GIVEN: A SongFormat # WHEN: Retrieving all attributes of a SongFormat for song_format in SongFormat.get_format_list(): # THEN: All attributes associated with the SongFormat should be returned self.assertEquals(SongFormat.get(song_format), SongFormat.__attributes__[song_format], "The returned attributes don't match the stored ones") def test_get_attributed_single_attribute(self): """ Test that SongFormat.get(song_format, attribute) returns only one -and the correct- attribute """ # GIVEN: A SongFormat for song_format in SongFormat.get_format_list(): # WHEN: Retrieving an attribute that overrides the default values for attribute in SongFormat.get(song_format).keys(): # THEN: Return the attribute self.assertEquals(SongFormat.get(song_format, attribute), SongFormat.get(song_format)[attribute], "The returned attribute doesn't match the stored one") # WHEN: Retrieving an attribute that was not overridden for attribute in SongFormat.__defaults__.keys(): if attribute not in SongFormat.get(song_format).keys(): # THEN: Return the default value self.assertEquals(SongFormat.get(song_format, attribute), SongFormat.__defaults__[attribute], "The returned attribute does not match the default values stored") def test_get_attributed_multiple_attributes(self): """ Test that multiple attributes can be retrieved for a song_format """ # GIVEN: A SongFormat # WHEN: Retrieving multiple attributes at the same time for song_format in SongFormat.get_format_list(): # THEN: Return all attributes that were specified self.assertEquals(len(SongFormat.get(song_format, 'canDisable', 'availability')), 2, "Did not return the correct number of attributes" " when retrieving multiple attributes at once") def test_get_format_list_returns_ordered_list(self): """ Test that get_format_list() returns a list that is ordered according to the order specified in SongFormat """ # GIVEN: The SongFormat class # WHEN: Retrieving all formats # THEN: The returned list should be sorted according to the ordering defined in SongFormat self.assertEquals(sorted(SongFormat.get_format_list()), SongFormat.get_format_list(), "The list returned should be sorted according to the ordering in SongFormat") OpenLP-2.4/tests/functional/openlp_plugins/songs/test_lib.py0000644000175000017500000005512212657640340023430 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Songs plugin. """ from unittest import TestCase from openlp.plugins.songs.lib import VerseType, clean_string, clean_title, strip_rtf from openlp.plugins.songs.lib.songcompare import songs_probably_equal, _remove_typos, _op_length from tests.functional import patch, MagicMock class TestLib(TestCase): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Mock up two songs and provide a set of lyrics for the songs_probably_equal tests. """ self.full_lyrics = '''amazing grace how sweet the sound that saved a wretch like me i once was lost but now am found was blind but now i see twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed through many dangers toils and snares i have already come tis grace that brought me safe thus far and grace will lead me home''' self.short_lyrics = '''twas grace that taught my heart to fear and grace my fears relieved how precious did that grace appear the hour i first believed''' self.error_lyrics = '''amazing how sweet the trumpet that saved a wrench like me i once was losst but now am found waf blind but now i see it was grace that taught my heart to fear and grace my fears relieved how precious did that grace appppppppear the hour i first believedxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx snares i have already come to this grace that brought me safe so far and grace will lead me home''' self.different_lyrics = '''on a hill far away stood an old rugged cross the emblem of suffering and shame and i love that old cross where the dearest and best for a world of lost sinners was slain so ill cherish the old rugged cross till my trophies at last i lay down i will cling to the old rugged cross and exchange it some day for a crown''' def clean_string_test(self): """ Test the clean_string() function """ # GIVEN: A "dirty" string dirty_string = 'Ain\'t gonna find\t you there.' # WHEN: We run the string through the function result = clean_string(dirty_string) # THEN: The string should be cleaned up and lower-cased self.assertEqual(result, 'aint gonna find you there ', 'The string should be cleaned up properly') def clean_title_test(self): """ Test the clean_title() function """ # GIVEN: A "dirty" string dirty_string = 'This\u0000 is a\u0014 dirty \u007Fstring\u009F' # WHEN: We run the string through the function result = clean_title(dirty_string) # THEN: The string should be cleaned up self.assertEqual(result, 'This is a dirty string', 'The title should be cleaned up properly: "%s"' % result) def songs_probably_equal_same_song_test(self): """ Test the songs_probably_equal function with twice the same song. """ # GIVEN: Two equal songs. song_tuple1 = (2, self.full_lyrics) song_tuple2 = (4, self.full_lyrics) # WHEN: We compare those songs for equality. result = songs_probably_equal((song_tuple1, song_tuple2)) # THEN: The result should be a tuple.. assert result == (2, 4), 'The result should be the tuble of song positions' def songs_probably_equal_short_song_test(self): """ Test the songs_probably_equal function with a song and a shorter version of the same song. """ # GIVEN: A song and a short version of the same song. song_tuple1 = (1, self.full_lyrics) song_tuple2 = (3, self.short_lyrics) # WHEN: We compare those songs for equality. result = songs_probably_equal((song_tuple1, song_tuple2)) # THEN: The result should be a tuple.. assert result == (1, 3), 'The result should be the tuble of song positions' def songs_probably_equal_error_song_test(self): """ Test the songs_probably_equal function with a song and a very erroneous version of the same song. """ # GIVEN: A song and the same song with lots of errors. song_tuple1 = (4, self.full_lyrics) song_tuple2 = (7, self.error_lyrics) # WHEN: We compare those songs for equality. result = songs_probably_equal((song_tuple1, song_tuple2)) # THEN: The result should be a tuple of song positions. assert result == (4, 7), 'The result should be the tuble of song positions' def songs_probably_equal_different_song_test(self): """ Test the songs_probably_equal function with two different songs. """ # GIVEN: Two different songs. song_tuple1 = (5, self.full_lyrics) song_tuple2 = (8, self.different_lyrics) # WHEN: We compare those songs for equality. result = songs_probably_equal((song_tuple1, song_tuple2)) # THEN: The result should be None. assert result is None, 'The result should be None' def remove_typos_beginning_test(self): """ Test the _remove_typos function with a typo at the beginning. """ # GIVEN: A diffset with a difference at the beginning. diff = [('replace', 0, 2, 0, 1), ('equal', 2, 11, 1, 10)] # WHEN: We remove the typos in there. result = _remove_typos(diff) # THEN: There should be no typos at the beginning anymore. assert len(result) == 1, 'The result should contain only one element.' assert result[0][0] == 'equal', 'The result should contain an equal element.' def remove_typos_beginning_negated_test(self): """ Test the _remove_typos function with a large difference at the beginning. """ # GIVEN: A diffset with a large difference at the beginning. diff = [('replace', 0, 20, 0, 1), ('equal', 20, 29, 1, 10)] # WHEN: We remove the typos in there. result = _remove_typos(list(diff)) # THEN: There diff should not have changed. assert result == diff def remove_typos_end_test(self): """ Test the _remove_typos function with a typo at the end. """ # GIVEN: A diffset with a difference at the end. diff = [('equal', 0, 10, 0, 10), ('replace', 10, 12, 10, 11)] # WHEN: We remove the typos in there. result = _remove_typos(diff) # THEN: There should be no typos at the end anymore. assert len(result) == 1, 'The result should contain only one element.' assert result[0][0] == 'equal', 'The result should contain an equal element.' def remove_typos_end_negated_test(self): """ Test the _remove_typos function with a large difference at the end. """ # GIVEN: A diffset with a large difference at the end. diff = [('equal', 0, 10, 0, 10), ('replace', 10, 20, 10, 1)] # WHEN: We remove the typos in there. result = _remove_typos(list(diff)) # THEN: There diff should not have changed. assert result == diff def remove_typos_middle_test(self): """ Test the _remove_typos function with a typo in the middle. """ # GIVEN: A diffset with a difference in the middle. diff = [('equal', 0, 10, 0, 10), ('replace', 10, 12, 10, 11), ('equal', 12, 22, 11, 21)] # WHEN: We remove the typos in there. result = _remove_typos(diff) # THEN: There should be no typos in the middle anymore. The remaining equals should have been merged. assert len(result) is 1, 'The result should contain only one element.' assert result[0][0] == 'equal', 'The result should contain an equal element.' assert result[0][1] == 0, 'The start indices should be kept.' assert result[0][2] == 22, 'The stop indices should be kept.' assert result[0][3] == 0, 'The start indices should be kept.' assert result[0][4] == 21, 'The stop indices should be kept.' def remove_typos_beginning_negated_test(self): """ Test the _remove_typos function with a large difference in the middle. """ # GIVEN: A diffset with a large difference in the middle. diff = [('equal', 0, 10, 0, 10), ('replace', 10, 20, 10, 11), ('equal', 20, 30, 11, 21)] # WHEN: We remove the typos in there. result = _remove_typos(list(diff)) # THEN: There diff should not have changed. assert result == diff def op_length_test(self): """ Test the _op_length function. """ # GIVEN: A diff entry. diff_entry = ('replace', 0, 2, 4, 14) # WHEN: We calculate the length of that diff. result = _op_length(diff_entry) # THEN: The maximum length should be returned. assert result == 10, 'The length should be 10.' def strip_rtf_charsets_test(self): """ Test that the strip_rtf() method properly decodes the supported charsets. """ test_charset_table = [ ('0', 'weor\\\'F0-myndum \\\'FEah\\par ', 'weorð-myndum þah\n'), ('128', '\\\'83C\\\'83G\\\'83X\\\'A5\\\'83L\\\'83\\\'8A\\\'83X\\\'83g\\\'A1 ' '\\\\ \\\'95\\\\ \\\'8E\\} \\\'8E\\{ \\\'A1\\par ', 'イエス・キリスト。 Â¥ 表 æž æ–½ 。\n'), ('129', '\\\'BF\\\'B9\\\'BC\\\'F6 \\\'B1\\\'D7\\\'B8\\\'AE\\\'BD\\\'BA\\\'B5\\\'B5\\par ', '예수 그리스ë„\n'), ('134', '\\\'D2\\\'AE\\\'F6\\\'D5\\\'BB\\\'F9\\\'B6\\\'BD\\\'CA\\\'C7\\\'D6\\\'F7\\par ', 'è€¶ç¨£åŸºç£æ˜¯ä¸»\n'), ('161', '\\\'D7\\\'F1\\\'E9\\\'F3\\\'F4\\\'FC\\\'F2\\par ', 'ΧÏιστός\n'), ('162', 'Hazreti \\\'DDsa\\par ', 'Hazreti İsa\n'), ('163', 'ph\\\'FD\\\'F5ng\\par ', 'phương\n'), ('177', '\\\'E1\\\'F8\\\'E0\\\'F9\\\'E9\\\'FA\\par ', 'בר×שית\n'), ('178', '\\\'ED\\\'D3\\\'E6\\\'DA \\\'C7\\\'E1\\\'E3\\\'D3\\\'ED\\\'CD\\par ', 'يسوع المسيح\n'), ('186', 'J\\\'EBzus Kristus yra Vie\\\'F0pats\\par ', 'JÄ—zus Kristus yra VieÅ¡pats\n'), ('204', '\\\'D0\\\'EE\\\'F1\\\'F1\\\'E8\\\'FF\\par ', 'РоÑÑиÑ\n'), ('222', '\\\'A4\\\'C3\\\'D4\\\'CA\\\'B5\\\'EC\\par ', 'คริสต์\n'), ('238', 'Z\\\'E1v\\\'ECre\\\'E8n\\\'E1 zkou\\\'9Aka\\par ', 'ZávÄ›reÄná zkouÅ¡ka\n') ] # GIVEN: For each character set and input for charset, input, exp_result in test_charset_table: # WHEN: We call strip_rtf on the input RTF result, result_enc = strip_rtf( '{\\rtf1 \\ansi \\ansicpg1252 {\\fonttbl \\f0 \\fswiss \\fcharset%s Helvetica;}' '{\\colortbl ;\\red0 \\green0 \\blue0 ;}\\pard \\f0 %s}' % (charset, input)) # THEN: The stripped text matches thed expected result assert result == exp_result, 'The result should be %s' % exp_result class TestVerseType(TestCase): """ This is a test case to test various methods in the VerseType enumeration class. """ def translated_tag_test(self): """ Test that the translated_tag() method returns the correct tags """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_tag() method with a "verse" result = VerseType.translated_tag('v') # THEN: The result should be "V" self.assertEqual(result, 'V', 'The result should be "V"') # WHEN: We run the translated_tag() method with a "chorus" result = VerseType.translated_tag('c') # THEN: The result should be "C" self.assertEqual(result, 'C', 'The result should be "C"') def translated_invalid_tag_test(self): """ Test that the translated_tag() method returns the default tag when passed an invalid tag """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_tag() method with an invalid verse type result = VerseType.translated_tag('z') # THEN: The result should be "O" self.assertEqual(result, 'O', 'The result should be "O", but was "%s"' % result) def translated_invalid_tag_with_specified_default_test(self): """ Test that the translated_tag() method returns the specified default tag when passed an invalid tag """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_tag() method with an invalid verse type and specify a default result = VerseType.translated_tag('q', VerseType.Bridge) # THEN: The result should be "B" self.assertEqual(result, 'B', 'The result should be "B", but was "%s"' % result) def translated_invalid_tag_with_invalid_default_test(self): """ Test that the translated_tag() method returns a sane default tag when passed an invalid default """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_tag() method with an invalid verse type and an invalid default result = VerseType.translated_tag('q', 29) # THEN: The result should be "O" self.assertEqual(result, 'O', 'The result should be "O", but was "%s"' % result) def translated_name_test(self): """ Test that the translated_name() method returns the correct name """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_name() method with a "verse" result = VerseType.translated_name('v') # THEN: The result should be "Verse" self.assertEqual(result, 'Verse', 'The result should be "Verse"') # WHEN: We run the translated_name() method with a "chorus" result = VerseType.translated_name('c') # THEN: The result should be "Chorus" self.assertEqual(result, 'Chorus', 'The result should be "Chorus"') def translated_invalid_name_test(self): """ Test that the translated_name() method returns the default name when passed an invalid tag """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_name() method with an invalid verse type result = VerseType.translated_name('z') # THEN: The result should be "Other" self.assertEqual(result, 'Other', 'The result should be "Other", but was "%s"' % result) def translated_invalid_name_with_specified_default_test(self): """ Test that the translated_name() method returns the specified default name when passed an invalid tag """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_name() method with an invalid verse type and specify a default result = VerseType.translated_name('q', VerseType.Bridge) # THEN: The result should be "Bridge" self.assertEqual(result, 'Bridge', 'The result should be "Bridge", but was "%s"' % result) def translated_invalid_name_with_invalid_default_test(self): """ Test that the translated_name() method returns the specified default tag when passed an invalid tag """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the translated_name() method with an invalid verse type and specify an invalid default result = VerseType.translated_name('q', 29) # THEN: The result should be "Other" self.assertEqual(result, 'Other', 'The result should be "Other", but was "%s"' % result) def from_tag_test(self): """ Test that the from_tag() method returns the correct VerseType. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with a valid verse type, we get the name back result = VerseType.from_tag('v') # THEN: The result should be VerseType.Verse self.assertEqual(result, VerseType.Verse, 'The result should be VerseType.Verse, but was "%s"' % result) def from_tag_with_invalid_tag_test(self): """ Test that the from_tag() method returns the default VerseType when it is passed an invalid tag. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with a valid verse type, we get the name back result = VerseType.from_tag('w') # THEN: The result should be VerseType.Other self.assertEqual(result, VerseType.Other, 'The result should be VerseType.Other, but was "%s"' % result) def from_tag_with_specified_default_test(self): """ Test that the from_tag() method returns the specified default when passed an invalid tag. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with an invalid verse type, we get the specified default back result = VerseType.from_tag('x', VerseType.Chorus) # THEN: The result should be VerseType.Chorus self.assertEqual(result, VerseType.Chorus, 'The result should be VerseType.Chorus, but was "%s"' % result) def from_tag_with_invalid_intdefault_test(self): """ Test that the from_tag() method returns a sane default when passed an invalid tag and an invalid int default. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with an invalid verse type, we get the specified default back result = VerseType.from_tag('m', 29) # THEN: The result should be VerseType.Other self.assertEqual(result, VerseType.Other, 'The result should be VerseType.Other, but was "%s"' % result) def from_tag_with_invalid_default_test(self): """ Test that the from_tag() method returns a sane default when passed an invalid tag and an invalid default. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with an invalid verse type, we get the specified default back result = VerseType.from_tag('@', 'asdf') # THEN: The result should be VerseType.Other self.assertEqual(result, VerseType.Other, 'The result should be VerseType.Other, but was "%s"' % result) def from_tag_with_none_default_test(self): """ Test that the from_tag() method returns a sane default when passed an invalid tag and None as default. """ # GIVEN: A mocked out translate() function that just returns what it was given with patch('openlp.plugins.songs.lib.translate') as mocked_translate: mocked_translate.side_effect = lambda x, y: y # WHEN: We run the from_tag() method with an invalid verse type, we get the specified default back result = VerseType.from_tag('m', None) # THEN: The result should be None self.assertIsNone(result, 'The result should be None, but was "%s"' % result) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_worshipcenterproimport.py0000644000175000017500000003506212657640340027533 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the WorshipCenter Pro song importer. """ import os from unittest import TestCase, SkipTest if os.name != 'nt': raise SkipTest('Not Windows, skipping test') import pyodbc from tests.functional import patch, MagicMock from openlp.core.common import Registry from openlp.plugins.songs.lib.importers.worshipcenterpro import WorshipCenterProImport class TestRecord(object): """ Microsoft Access Driver is not available on non Microsoft Systems for this reason the :class:`TestRecord` is used to simulate a recordset that would be returned by pyobdc. """ def __init__(self, id, field, value): # The case of the following instance variables is important as it needs to be the same as the ones in use in the # WorshipCenter Pro database. self.ID = id self.Field = field self.Value = value class WorshipCenterProImportLogger(WorshipCenterProImport): """ This class logs changes in the title instance variable """ _title_assignment_list = [] def __init__(self, manager): WorshipCenterProImport.__init__(self, manager, filenames=[]) @property def title(self): return self._title_assignment_list[-1] @title.setter def title(self, title): self._title_assignment_list.append(title) RECORDSET_TEST_DATA = [TestRecord(1, 'TITLE', 'Amazing Grace'), TestRecord(1, 'AUTHOR', 'John Newton'), TestRecord(1, 'CCLISONGID', '12345'), TestRecord(1, 'COMMENTS', 'The original version'), TestRecord(1, 'COPY', 'Public Domain'), TestRecord( 1, 'LYRICS', 'Amazing grace! How&crlf;sweet the sound&crlf;That saved a wretch like me!&crlf;' 'I once was lost,&crlf;but now am found;&crlf;Was blind, but now I see.&crlf;&crlf;' '\'Twas grace that&crlf;taught my heart to fear,&crlf;And grace my fears relieved;&crlf;' 'How precious did&crlf;that grace appear&crlf;The hour I first believed.&crlf;&crlf;' 'Through many dangers,&crlf;toils and snares,&crlf;I have already come;&crlf;' '\'Tis grace hath brought&crlf;me safe thus far,&crlf;' 'And grace will lead me home.&crlf;&crlf;The Lord has&crlf;promised good to me,&crlf;' 'His Word my hope secures;&crlf;He will my Shield&crlf;and Portion be,&crlf;' 'As long as life endures.&crlf;&crlf;Yea, when this flesh&crlf;and heart shall fail,&crlf;' 'And mortal life shall cease,&crlf;I shall possess,&crlf;within the veil,&crlf;' 'A life of joy and peace.&crlf;&crlf;The earth shall soon&crlf;dissolve like snow,&crlf;' 'The sun forbear to shine;&crlf;But God, Who called&crlf;me here below,&crlf;' 'Shall be forever mine.&crlf;&crlf;When we\'ve been there&crlf;ten thousand years,&crlf;' 'Bright shining as the sun,&crlf;We\'ve no less days to&crlf;sing God\'s praise&crlf;' 'Than when we\'d first begun.&crlf;&crlf;'), TestRecord(2, 'TITLE', 'Beautiful Garden Of Prayer, The'), TestRecord( 2, 'LYRICS', 'There\'s a garden where&crlf;Jesus is waiting,&crlf;' 'There\'s a place that&crlf;is wondrously fair,&crlf;For it glows with the&crlf;' 'light of His presence.&crlf;\'Tis the beautiful&crlf;garden of prayer.&crlf;&crlf;' 'Oh, the beautiful garden,&crlf;the garden of prayer!&crlf;Oh, the beautiful&crlf;' 'garden of prayer!&crlf;There my Savior awaits,&crlf;and He opens the gates&crlf;' 'To the beautiful&crlf;garden of prayer.&crlf;&crlf;There\'s a garden where&crlf;' 'Jesus is waiting,&crlf;And I go with my&crlf;burden and care,&crlf;' 'Just to learn from His&crlf;lips words of comfort&crlf;In the beautiful&crlf;' 'garden of prayer.&crlf;&crlf;There\'s a garden where&crlf;Jesus is waiting,&crlf;' 'And He bids you to come,&crlf;meet Him there;&crlf;Just to bow and&crlf;' 'receive a new blessing&crlf;In the beautiful&crlf;garden of prayer.&crlf;&crlf;')] SONG_TEST_DATA = [{'title': 'Amazing Grace', 'verses': [ ('Amazing grace! How\nsweet the sound\nThat saved a wretch like me!\nI once was lost,\n' 'but now am found;\nWas blind, but now I see.'), ('\'Twas grace that\ntaught my heart to fear,\nAnd grace my fears relieved;\nHow precious did\n' 'that grace appear\nThe hour I first believed.'), ('Through many dangers,\ntoils and snares,\nI have already come;\n\'Tis grace hath brought\n' 'me safe thus far,\nAnd grace will lead me home.'), ('The Lord has\npromised good to me,\nHis Word my hope secures;\n' 'He will my Shield\nand Portion be,\nAs long as life endures.'), ('Yea, when this flesh\nand heart shall fail,\nAnd mortal life shall cease,\nI shall possess,\n' 'within the veil,\nA life of joy and peace.'), ('The earth shall soon\ndissolve like snow,\nThe sun forbear to shine;\nBut God, Who called\n' 'me here below,\nShall be forever mine.'), ('When we\'ve been there\nten thousand years,\nBright shining as the sun,\n' 'We\'ve no less days to\nsing God\'s praise\nThan when we\'d first begun.')], 'author': 'John Newton', 'comments': 'The original version', 'copyright': 'Public Domain'}, {'title': 'Beautiful Garden Of Prayer, The', 'verses': [ ('There\'s a garden where\nJesus is waiting,\nThere\'s a place that\nis wondrously fair,\n' 'For it glows with the\nlight of His presence.\n\'Tis the beautiful\ngarden of prayer.'), ('Oh, the beautiful garden,\nthe garden of prayer!\nOh, the beautiful\ngarden of prayer!\n' 'There my Savior awaits,\nand He opens the gates\nTo the beautiful\ngarden of prayer.'), ('There\'s a garden where\nJesus is waiting,\nAnd I go with my\nburden and care,\n' 'Just to learn from His\nlips words of comfort\nIn the beautiful\ngarden of prayer.'), ('There\'s a garden where\nJesus is waiting,\nAnd He bids you to come,\nmeet Him there;\n' 'Just to bow and\nreceive a new blessing\nIn the beautiful\ngarden of prayer.')]}] class TestWorshipCenterProSongImport(TestCase): """ Test the functions in the :mod:`worshipcenterproimport` module. """ def setUp(self): """ Create the registry """ Registry.create() def create_importer_test(self): """ Test creating an instance of the WorshipCenter Pro file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.worshipcenterpro.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = WorshipCenterProImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') def pyodbc_exception_test(self): """ Test that exceptions raised by pyodbc are handled """ # GIVEN: A mocked out SongImport class, a mocked out pyodbc module, a mocked out translate method, # a mocked "manager" and a mocked out log_error method. with patch('openlp.plugins.songs.lib.importers.worshipcenterpro.SongImport'), \ patch('openlp.plugins.songs.lib.importers.worshipcenterpro.pyodbc.connect') as mocked_pyodbc_connect, \ patch('openlp.plugins.songs.lib.importers.worshipcenterpro.translate') as mocked_translate: mocked_manager = MagicMock() mocked_log_error = MagicMock() mocked_translate.return_value = 'Translated Text' importer = WorshipCenterProImport(mocked_manager, filenames=[]) importer.log_error = mocked_log_error importer.import_source = 'import_source' pyodbc_errors = [pyodbc.DatabaseError, pyodbc.IntegrityError, pyodbc.InternalError, pyodbc.OperationalError] mocked_pyodbc_connect.side_effect = pyodbc_errors # WHEN: Calling the do_import method for effect in pyodbc_errors: return_value = importer.do_import() # THEN: do_import should return None, and pyodbc, translate & log_error are called with known calls self.assertIsNone(return_value, 'do_import should return None when pyodbc raises an exception.') mocked_pyodbc_connect.assert_called_with('DRIVER={Microsoft Access Driver (*.mdb)};DBQ=import_source') mocked_translate.assert_called_with('SongsPlugin.WorshipCenterProImport', 'Unable to connect the WorshipCenter Pro database.') mocked_log_error.assert_called_with('import_source', 'Translated Text') def song_import_test(self): """ Test that a simulated WorshipCenter Pro recordset is imported correctly """ # GIVEN: A mocked out SongImport class, a mocked out pyodbc module with a simulated recordset, a mocked out # translate method, a mocked "manager", add_verse method & mocked_finish method. with patch('openlp.plugins.songs.lib.importers.worshipcenterpro.SongImport'), \ patch('openlp.plugins.songs.lib.importers.worshipcenterpro.pyodbc') as mocked_pyodbc, \ patch('openlp.plugins.songs.lib.importers.worshipcenterpro.translate') as mocked_translate: mocked_manager = MagicMock() mocked_import_wizard = MagicMock() mocked_add_verse = MagicMock() mocked_parse_author = MagicMock() mocked_add_comment = MagicMock() mocked_add_copyright = MagicMock() mocked_finish = MagicMock() mocked_pyodbc.connect().cursor().fetchall.return_value = RECORDSET_TEST_DATA mocked_translate.return_value = 'Translated Text' importer = WorshipCenterProImportLogger(mocked_manager) importer.import_source = 'import_source' importer.import_wizard = mocked_import_wizard importer.add_verse = mocked_add_verse importer.parse_author = mocked_parse_author importer.add_comment = mocked_add_comment importer.add_copyright = mocked_add_copyright importer.stop_import_flag = False importer.finish = mocked_finish # WHEN: Calling the do_import method return_value = importer.do_import() # THEN: do_import should return None, and pyodbc, import_wizard, importer.title and add_verse are called # with known calls self.assertIsNone(return_value, 'do_import should return None when pyodbc raises an exception.') mocked_pyodbc.connect.assert_called_with('DRIVER={Microsoft Access Driver (*.mdb)};DBQ=import_source') mocked_pyodbc.connect().cursor.assert_any_call() mocked_pyodbc.connect().cursor().execute.assert_called_with('SELECT ID, Field, Value FROM __SONGDATA') mocked_pyodbc.connect().cursor().fetchall.assert_any_call() mocked_import_wizard.progress_bar.setMaximum.assert_called_with(2) add_verse_call_count = 0 for song_data in SONG_TEST_DATA: title_value = song_data['title'] self.assertIn(title_value, importer._title_assignment_list, 'title should have been set to %s' % title_value) verse_calls = song_data['verses'] add_verse_call_count += len(verse_calls) for call in verse_calls: mocked_add_verse.assert_any_call(call, 'v') if 'author' in song_data: mocked_parse_author.assert_any_call(song_data['author']) if 'comments' in song_data: mocked_add_comment.assert_any_call(song_data['comments']) if 'copyright' in song_data: mocked_add_copyright.assert_any_call(song_data['copyright']) self.assertEqual(mocked_add_verse.call_count, add_verse_call_count, 'Incorrect number of calls made to add_verse') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_db.py0000644000175000017500000002131612657640340023245 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the db submodule of the Songs plugin. """ import os import shutil from unittest import TestCase from tempfile import mkdtemp from openlp.plugins.songs.lib.db import Song, Author, AuthorType, Book from openlp.plugins.songs.lib import upgrade from openlp.core.lib.db import upgrade_db from tests.utils.constants import TEST_RESOURCES_PATH class TestDB(TestCase): """ Test the functions in the :mod:`db` module. """ def setUp(self): """ Setup for tests """ self.tmp_folder = mkdtemp() def tearDown(self): """ Clean up after tests """ shutil.rmtree(self.tmp_folder) def test_add_author(self): """ Test adding an author to a song """ # GIVEN: A song and an author song = Song() song.authors_songs = [] author = Author() author.first_name = "Max" author.last_name = "Mustermann" # WHEN: We add an author to the song song.add_author(author) # THEN: The author should have been added with author_type=None self.assertEqual(1, len(song.authors_songs)) self.assertEqual("Max", song.authors_songs[0].author.first_name) self.assertEqual("Mustermann", song.authors_songs[0].author.last_name) self.assertIsNone(song.authors_songs[0].author_type) def test_add_author_with_type(self): """ Test adding an author with a type specified to a song """ # GIVEN: A song and an author song = Song() song.authors_songs = [] author = Author() author.first_name = "Max" author.last_name = "Mustermann" # WHEN: We add an author to the song song.add_author(author, AuthorType.Words) # THEN: The author should have been added with author_type=None self.assertEqual(1, len(song.authors_songs)) self.assertEqual("Max", song.authors_songs[0].author.first_name) self.assertEqual("Mustermann", song.authors_songs[0].author.last_name) self.assertEqual(AuthorType.Words, song.authors_songs[0].author_type) def test_remove_author(self): """ Test removing an author from a song """ # GIVEN: A song with an author song = Song() song.authors_songs = [] author = Author() song.add_author(author) # WHEN: We remove the author song.remove_author(author) # THEN: It should have been removed self.assertEqual(0, len(song.authors_songs)) def test_remove_author_with_type(self): """ Test removing an author with a type specified from a song """ # GIVEN: A song with two authors song = Song() song.authors_songs = [] author = Author() song.add_author(author) song.add_author(author, AuthorType.Translation) # WHEN: We remove the author with a certain type song.remove_author(author, AuthorType.Translation) # THEN: It should have been removed and the other author should still be there self.assertEqual(1, len(song.authors_songs)) self.assertEqual(None, song.authors_songs[0].author_type) def test_get_author_type_from_translated_text(self): """ Test getting an author type from translated text """ # GIVEN: A string with an author type author_type_name = AuthorType.Types[AuthorType.Words] # WHEN: We call the method author_type = AuthorType.from_translated_text(author_type_name) # THEN: The type should be correct self.assertEqual(author_type, AuthorType.Words) def test_author_get_display_name(self): """ Test that the display name of an author is correct """ # GIVEN: An author author = Author() author.display_name = "John Doe" # WHEN: We call the get_display_name() function display_name = author.get_display_name() # THEN: It should return only the name self.assertEqual("John Doe", display_name) def test_author_get_display_name_with_type_words(self): """ Test that the display name of an author with a type is correct (Words) """ # GIVEN: An author author = Author() author.display_name = "John Doe" # WHEN: We call the get_display_name() function display_name = author.get_display_name(AuthorType.Words) # THEN: It should return the name with the type in brackets self.assertEqual("John Doe (Words)", display_name) def test_author_get_display_name_with_type_translation(self): """ Test that the display name of an author with a type is correct (Translation) """ # GIVEN: An author author = Author() author.display_name = "John Doe" # WHEN: We call the get_display_name() function display_name = author.get_display_name(AuthorType.Translation) # THEN: It should return the name with the type in brackets self.assertEqual("John Doe (Translation)", display_name) def test_add_songbooks(self): """ Test that adding songbooks to a song works correctly """ # GIVEN: A mocked song and songbook song = Song() song.songbook_entries = [] songbook = Book() songbook.name = "Thy Word" # WHEN: We add two songbooks to a Song song.add_songbook_entry(songbook, "120") song.add_songbook_entry(songbook, "550A") # THEN: The song should have two songbook entries self.assertEqual(len(song.songbook_entries), 2, 'There should be two Songbook entries.') def test_upgrade_old_song_db(self): """ Test that we can upgrade an old song db to the current schema """ # GIVEN: An old song db old_db_path = os.path.join(TEST_RESOURCES_PATH, "songs", 'songs-1.9.7.sqlite') old_db_tmp_path = os.path.join(self.tmp_folder, 'songs-1.9.7.sqlite') shutil.copyfile(old_db_path, old_db_tmp_path) db_url = 'sqlite:///' + old_db_tmp_path # WHEN: upgrading the db updated_to_version, latest_version = upgrade_db(db_url, upgrade) # THEN: the song db should have been upgraded to the latest version self.assertEqual(updated_to_version, latest_version, 'The song DB should have been upgrade to the latest version') def test_upgrade_invalid_song_db(self): """ Test that we can upgrade an invalid song db to the current schema """ # GIVEN: A song db with invalid version invalid_db_path = os.path.join(TEST_RESOURCES_PATH, "songs", 'songs-2.2-invalid.sqlite') invalid_db_tmp_path = os.path.join(self.tmp_folder, 'songs-2.2-invalid.sqlite') shutil.copyfile(invalid_db_path, invalid_db_tmp_path) db_url = 'sqlite:///' + invalid_db_tmp_path # WHEN: upgrading the db updated_to_version, latest_version = upgrade_db(db_url, upgrade) # THEN: the song db should have been upgraded to the latest version without errors self.assertEqual(updated_to_version, latest_version, 'The song DB should have been upgrade to the latest version') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_easyslidesimport.py0000644000175000017500000000450312657640340026257 0ustar raoulraoul# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the EasySlides song importer. """ import os from tests.helpers.songfileimport import SongImportTestHelper TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'easyslidessongs')) class TestEasySlidesFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'EasySlidesImport' self.importer_module_name = 'easyslides' super(TestEasySlidesFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an EasySlides file works correctly on various files """ self.file_import(os.path.join(TEST_PATH, 'amazing-grace.xml'), self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_powerpraiseimport.py0000644000175000017500000000523212657640340026452 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`powerpraiseimport` module provides the functionality for importing ProPresenter song files into the current installation database. """ import os from tests.helpers.songfileimport import SongImportTestHelper from openlp.core.common import Registry TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'powerpraisesongs')) class TestPowerPraiseFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'PowerPraiseImport' self.importer_module_name = 'powerpraise' super(TestPowerPraiseFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading a PowerPraise file works correctly """ self.file_import([os.path.join(TEST_PATH, 'Naher, mein Gott zu Dir.ppl')], self.load_external_result_data(os.path.join(TEST_PATH, 'Naher, mein Gott zu Dir.json'))) self.file_import([os.path.join(TEST_PATH, 'You are so faithful.ppl')], self.load_external_result_data(os.path.join(TEST_PATH, 'You are so faithful.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/__init__.py0000644000175000017500000000305312657640340023356 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Tests for the Songs plugin """ OpenLP-2.4/tests/functional/openlp_plugins/songs/test_presentationmanagerimport.py0000644000175000017500000000512312661025625030155 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the PresentationManager song importer. """ import os from tests.helpers.songfileimport import SongImportTestHelper TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'presentationmanagersongs')) class TestPresentationManagerFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'PresentationManagerImport' self.importer_module_name = 'presentationmanager' super(TestPresentationManagerFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading a PresentationManager file works correctly """ self.file_import([os.path.join(TEST_PATH, 'Great Is Thy Faithfulness.sng')], self.load_external_result_data(os.path.join(TEST_PATH, 'Great Is Thy Faithfulness.json'))) self.file_import([os.path.join(TEST_PATH, 'Amazing Grace.sng')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_openoffice.py0000644000175000017500000000704312657640340024776 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OpenOffice/LibreOffice importer. """ from unittest import TestCase, SkipTest from openlp.core.common import Registry try: from openlp.plugins.songs.lib.importers.openoffice import OpenOfficeImport except ImportError: raise SkipTest('Could not import OpenOfficeImport probably due to unavailability of uno') from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestOpenOfficeImport(TestCase, TestMixin): """ Test the :class:`~openlp.plugins.songs.lib.importer.openoffice.OpenOfficeImport` class """ def setUp(self): """ Create the registry """ Registry.create() @patch('openlp.plugins.songs.lib.importers.openoffice.SongImport') def create_importer_test(self, mocked_songimport): """ Test creating an instance of the OpenOfficeImport file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" mocked_manager = MagicMock() # WHEN: An importer object is created importer = OpenOfficeImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') @patch('openlp.plugins.songs.lib.importers.openoffice.SongImport') def close_ooo_file_test(self, mocked_songimport): """ Test that close_ooo_file catches raised exceptions """ # GIVEN: A mocked out SongImport class, a mocked out "manager" and a document that raises an exception mocked_manager = MagicMock() importer = OpenOfficeImport(mocked_manager, filenames=[]) importer.document = MagicMock() importer.document.close = MagicMock(side_effect=Exception()) # WHEN: Calling close_ooo_file importer.close_ooo_file() # THEN: The document attribute should be None even if an exception is raised') self.assertIsNone(importer.document, 'Document should be None even if an exception is raised') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_editsongform.py0000644000175000017500000000660312657640340025362 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Songs plugin. """ from unittest import TestCase from PyQt5 import QtCore from openlp.core.common import Registry, Settings from openlp.core.lib import ServiceItem from openlp.plugins.songs.forms.editsongform import EditSongForm from openlp.plugins.songs.lib.db import AuthorType from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin class TestEditSongForm(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Set up the components need for all tests. """ Registry.create() Registry().register('service_list', MagicMock()) Registry().register('main_window', MagicMock()) with patch('openlp.plugins.songs.forms.editsongform.EditSongForm.__init__', return_value=None): self.edit_song_form = EditSongForm(None, MagicMock(), MagicMock()) self.setup_application() self.build_settings() QtCore.QLocale.setDefault(QtCore.QLocale('en_GB')) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def validate_matching_tags_test(self): # Given a set of tags tags = ['{r}', '{/r}', '{bl}', '{/bl}', '{su}', '{/su}'] # WHEN we validate them valid = self.edit_song_form._validate_tags(tags) # THEN they should be valid self.assertTrue(valid, "The tags list should be valid") def validate_nonmatching_tags_test(self): # Given a set of tags tags = ['{r}', '{/r}', '{bl}', '{/bl}', '{br}', '{su}', '{/su}'] # WHEN we validate them valid = self.edit_song_form._validate_tags(tags) # THEN they should be valid self.assertTrue(valid, "The tags list should be valid") OpenLP-2.4/tests/functional/openlp_plugins/songs/test_lyriximport.py0000644000175000017500000000545012657640340025263 0ustar raoulraoul# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the LyriX song importer. """ import os from unittest import TestCase from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib.importers.opensong import OpenSongImport from openlp.core.common import Registry from tests.functional import patch, MagicMock TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'lyrixsongs')) class TestLyrixFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'LyrixImport' self.importer_module_name = 'lyrix' super(TestLyrixFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an LyriX file works correctly on various files """ self.file_import([os.path.join(TEST_PATH, 'A06.TXT')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) self.file_import([os.path.join(TEST_PATH, 'A002.TXT')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace2.json'))) self.file_import([os.path.join(TEST_PATH, 'AO05.TXT')], self.load_external_result_data(os.path.join(TEST_PATH, 'in die regterhand.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_videopsalm.py0000644000175000017500000000472112657640340025024 0ustar raoulraoul# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the VideoPsalm song importer. """ import os from unittest import TestCase from tests.helpers.songfileimport import SongImportTestHelper from openlp.core.common import Registry from tests.functional import patch, MagicMock TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'videopsalmsongs')) class TestVideoPsalmFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'VideoPsalmImport' self.importer_module_name = 'videopsalm' super(TestVideoPsalmFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an VideoPsalm file works correctly on various files """ self.file_import(os.path.join(TEST_PATH, 'videopsalm-as-safe-a-stronghold.json'), self.load_external_result_data(os.path.join(TEST_PATH, 'as-safe-a-stronghold.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_foilpresenterimport.py0000644000175000017500000002217112657640340026774 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the SongShow Plus song importer. """ import os from unittest import TestCase from tests.functional import patch, MagicMock from openlp.plugins.songs.lib.importers.foilpresenter import FoilPresenter TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', '/resources/foilpresentersongs')) class TestFoilPresenter(TestCase): """ Test the functions in the :mod:`foilpresenterimport` module. """ # TODO: The following modules still need tests written for # xml_to_song # to_str # _process_authors # _process_cclinumber # _process_comments # _process_copyright # _process_lyrics # _process_songbooks # _process_titles # _process_topics def setUp(self): self.to_str_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.to_str') self.clean_song_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.clean_song') self.objectify_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.objectify') self.process_authors_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_authors') self.process_cclinumber_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_cclinumber') self.process_comments_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_comments') self.process_lyrics_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_lyrics') self.process_songbooks_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_songbooks') self.process_titles_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_titles') self.process_topics_patcher = \ patch('openlp.plugins.songs.lib.importers.foilpresenter.FoilPresenter._process_topics') self.re_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.re') self.song_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.Song') self.song_xml_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.SongXML') self.translate_patcher = patch('openlp.plugins.songs.lib.importers.foilpresenter.translate') self.mocked_child = self.to_str_patcher.start() self.mocked_clean_song = self.clean_song_patcher.start() self.mocked_objectify = self.objectify_patcher.start() self.mocked_process_authors = self.process_authors_patcher.start() self.mocked_process_cclinumber = self.process_cclinumber_patcher.start() self.mocked_process_comments = self.process_comments_patcher.start() self.mocked_process_lyrics = self.process_lyrics_patcher.start() self.mocked_process_songbooks = self.process_songbooks_patcher.start() self.mocked_process_titles = self.process_titles_patcher.start() self.mocked_process_topics = self.process_topics_patcher.start() self.mocked_re = self.re_patcher.start() self.mocked_song = self.song_patcher.start() self.mocked_song_xml = self.song_xml_patcher.start() self.mocked_translate = self.translate_patcher.start() self.mocked_child.return_value = 'Element Text' self.mocked_translate.return_value = 'Translated String' self.mocked_manager = MagicMock() self.mocked_song_import = MagicMock() def tearDown(self): self.to_str_patcher.stop() self.clean_song_patcher.stop() self.objectify_patcher.stop() self.process_authors_patcher.stop() self.process_cclinumber_patcher.stop() self.process_comments_patcher.stop() self.process_lyrics_patcher.stop() self.process_songbooks_patcher.stop() self.process_titles_patcher.stop() self.process_topics_patcher.stop() self.re_patcher.stop() self.song_patcher.stop() self.song_xml_patcher.stop() self.translate_patcher.stop() def create_foil_presenter_test(self): """ Test creating an instance of the foil_presenter class """ # GIVEN: A mocked out "manager" and "SongImport" instance mocked_manager = MagicMock() mocked_song_import = MagicMock() # WHEN: An foil_presenter instance is created foil_presenter_instance = FoilPresenter(mocked_manager, mocked_song_import) # THEN: The instance should not be None self.assertIsNotNone(foil_presenter_instance, 'foil_presenter instance should not be none') def no_xml_test(self): """ Test calling xml_to_song with out the xml argument """ # GIVEN: A mocked out "manager" and "SongImport" as well as an foil_presenter instance mocked_manager = MagicMock() mocked_song_import = MagicMock() foil_presenter_instance = FoilPresenter(mocked_manager, mocked_song_import) # WHEN: xml_to_song is called without valid an argument for arg in [None, False, 0, '']: result = foil_presenter_instance.xml_to_song(arg) # Then: xml_to_song should return False self.assertEqual(result, None, 'xml_to_song should return None when called with %s' % arg) def encoding_declaration_removal_test(self): """ Test that the encoding declaration is removed """ # GIVEN: A reset mocked out re and an instance of foil_presenter self.mocked_re.reset() foil_presenter_instance = FoilPresenter(self.mocked_manager, self.mocked_song_import) # WHEN: xml_to_song is called with a string with an xml encoding declaration foil_presenter_instance.xml_to_song('\n') # THEN: the xml encoding declaration should have been stripped self.mocked_re.compile.sub.called_with('\n') def no_encoding_declaration_test(self): """ Check that the xml sting is left intact when no encoding declaration is made """ # GIVEN: A reset mocked out re and an instance of foil_presenter self.mocked_re.reset() foil_presenter_instance = FoilPresenter(self.mocked_manager, self.mocked_song_import) # WHEN: xml_to_song is called with a string without an xml encoding declaration foil_presenter_instance.xml_to_song('') # THEN: the string should have been left intact self.mocked_re.compile.sub.called_with('') def process_lyrics_no_verses_test(self): """ Test that _process_lyrics handles song files that have no verses. """ # GIVEN: A mocked foilpresenterfolie with no attribute strophe, a mocked song and a # foil presenter instance self.process_lyrics_patcher.stop() self.mocked_song_xml.reset() mock_foilpresenterfolie = MagicMock() del mock_foilpresenterfolie.strophen.strophe mocked_song = MagicMock() foil_presenter_instance = FoilPresenter(self.mocked_manager, self.mocked_song_import) # WHEN: _process_lyrics is called result = foil_presenter_instance._process_lyrics(mock_foilpresenterfolie, mocked_song) # THEN: _process_lyrics should return None and the song_import log_error method should have been called once self.assertIsNone(result) self.mocked_song_import.log_error.assert_called_once_with('Element Text', 'Translated String') self.process_lyrics_patcher.start() OpenLP-2.4/tests/functional/openlp_plugins/songs/test_ewimport.py0000644000175000017500000006707212657640340024537 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the EasyWorship song importer. """ import os from unittest import TestCase from tests.functional import MagicMock, patch from openlp.core.common import Registry from openlp.plugins.songs.lib.importers.easyworship import EasyWorshipSongImport, FieldDescEntry, FieldType TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'easyworshipsongs')) SONG_TEST_DATA = [ {'title': 'Amazing Grace', 'authors': ['John Newton'], 'copyright': 'Public Domain', 'ccli_number': 0, 'verses': [('Amazing grace how sweet the sound,\nThat saved a wretch like me;\n' 'I once was lost, but now am found\nWas blind, but now I see.', 'v1'), ('T\'was grace that taught my heart to fear,\nAnd grace my fears relieved;\n' 'How precious did that grace appear\nThe hour I first believed.', 'v2'), ('Through many dangers, toil and snares,\nI have already come;\n' '\'Tis grace has brought me safe thus far,\nAnd grace will lead me home.', 'v3'), ('When we\'ve been there ten thousand years\nBright shining as the sun,\n' 'We\'ve no less days to sing God\'s praise\nThan when we\'ve first begun.', 'v4')], 'verse_order_list': []}, {'title': 'Beautiful Garden Of Prayer', 'authors': ['Eleanor Allen Schroll James H. Fillmore'], 'copyright': 'Public Domain', 'ccli_number': 0, 'verses': [('O the beautiful garden, the garden of prayer,\nO the beautiful garden of prayer.\n' 'There my Savior awaits, and He opens the gates\nTo the beautiful garden of prayer.', 'c1'), ('There\'s a garden where Jesus is waiting,\nThere\'s a place that is wondrously fair.\n' 'For it glows with the light of His presence,\n\'Tis the beautiful garden of prayer.', 'v1'), ('There\'s a garden where Jesus is waiting,\nAnd I go with my burden and care.\n' 'Just to learn from His lips, words of comfort,\nIn the beautiful garden of prayer.', 'v2'), ('There\'s a garden where Jesus is waiting,\nAnd He bids you to come meet Him there,\n' 'Just to bow and receive a new blessing,\nIn the beautiful garden of prayer.', 'v3')], 'verse_order_list': []}, {'title': 'Vi pløjed og vi sÃ¥\'de', 'authors': ['Matthias Claudius'], 'copyright': 'Public Domain', 'ccli_number': 0, 'verses': [('Vi pløjed og vi sÃ¥\'de\nvor sæd i sorten jord,\nsÃ¥ bad vi ham os hjælpe,\nsom højt i Himlen bor,\n' 'og han lod snefald hegne\nmod frosten barsk og hÃ¥rd,\nhan lod det tø og regne\nog varme mildt i vÃ¥r.', 'v1'), ('Alle gode gaver\nde kommer ovenned,\nsÃ¥ tak da Gud, ja, pris dog Gud\nfor al hans kærlighed!', 'c1'), ('Han er jo den, hvis vilje\nopholder alle ting,\nhan klæder markens lilje\nog runder himlens ring,\n' 'ham lyder vind og vove,\nham rører ravnes nød,\nhvi skulle ej hans smÃ¥børn\nda og fÃ¥ dagligt brød?', 'v2'), ('Ja, tak, du kære Fader,\nsÃ¥ mild, sÃ¥ rig, sÃ¥ rund,\nfor korn i hæs og lader,\nfor godt i allen stund!\n' 'Vi kan jo intet give,\nsom nogen ting er værd,\nmen tag vort stakkels hjerte,\nsÃ¥ ringe som det er!', 'v3')], 'verse_order_list': []}] EWS_SONG_TEST_DATA =\ {'title': 'Vi pløjed og vi sÃ¥\'de', 'authors': ['Matthias Claudius'], 'verses': [('Vi pløjed og vi sÃ¥\'de\nvor sæd i sorten jord,\nsÃ¥ bad vi ham os hjælpe,\nsom højt i Himlen bor,\n' 'og han lod snefald hegne\nmod frosten barsk og hÃ¥rd,\nhan lod det tø og regne\nog varme mildt i vÃ¥r.', 'v1'), ('Alle gode gaver\nde kommer ovenned,\nsÃ¥ tak da Gud, ja, pris dog Gud\nfor al hans kærlighed!', 'c1'), ('Han er jo den, hvis vilje\nopholder alle ting,\nhan klæder markens lilje\nog runder himlens ring,\n' 'ham lyder vind og vove,\nham rører ravnes nød,\nhvi skulle ej hans smÃ¥børn\nda og fÃ¥ dagligt brød?', 'v2'), ('Ja, tak, du kære Fader,\nsÃ¥ mild, sÃ¥ rig, sÃ¥ rund,\nfor korn i hæs og lader,\nfor godt i allen stund!\n' 'Vi kan jo intet give,\nsom nogen ting er værd,\nmen tag vort stakkels hjerte,\nsÃ¥ ringe som det er!', 'v3')]} class EasyWorshipSongImportLogger(EasyWorshipSongImport): """ This class logs changes in the title instance variable """ _title_assignment_list = [] def __init__(self, manager): EasyWorshipSongImport.__init__(self, manager, filenames=[]) @property def title(self): return self._title_assignment_list[-1] @title.setter def title(self, title): self._title_assignment_list.append(title) class TestFieldDesc: def __init__(self, name, field_type, size): self.name = name self.field_type = field_type self.size = size TEST_DATA_ENCODING = 'cp1252' CODE_PAGE_MAPPINGS = [ (852, 'cp1250'), (737, 'cp1253'), (775, 'cp1257'), (855, 'cp1251'), (857, 'cp1254'), (866, 'cp1251'), (869, 'cp1253'), (862, 'cp1255'), (874, 'cp874')] TEST_FIELD_DESCS = [ TestFieldDesc('Title', FieldType.String, 50), TestFieldDesc('Text Percentage Bottom', FieldType.Int16, 2), TestFieldDesc('RecID', FieldType.Int32, 4), TestFieldDesc('Default Background', FieldType.Logical, 1), TestFieldDesc('Words', FieldType.Memo, 250), TestFieldDesc('Words', FieldType.Memo, 250), TestFieldDesc('BK Bitmap', FieldType.Blob, 10), TestFieldDesc('Last Modified', FieldType.Timestamp, 10)] TEST_FIELDS = [ b'A Heart Like Thine\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 32868, 2147483750, 129, b'{\\rtf1\\ansi\\deff0\\deftab254{\\fonttbl{\\f0\\fnil\\fcharset0 Arial;}{\\f1\\fnil\\fcharset0 Verdana;}}' b'{\\colortbl\\red0\\green0\\blue0;\\red255\\green0\\blue0;\\red0\\green128\\blue0;\\red0\\green0\\blue255;' b'\\red255\\green255\\blue0;\\red255\\green0\\blue255;\\red128\\g\xBF\xBD\7\0f\r\0\0\1\0', b'{\\rtf1\\ansi\\deff0\\deftab254{\\fonttbl{\\f0\\fnil\\fcharset0 Arial;}{\\f1\\fnil\\fcharset0 Verdana;}}' b'{\\colortbl\\red0\\green0\\blue0;\\red255\\green0\\blue0;\\red0\\green128\\blue0;\\red0\\green0' b'\\blue255;\\red255' b'\\green255\\blue0;\\red255\\green0\\blue255;\\red128\\g\6\0\xEF\xBF\xBD\6\0\0\1\0', b'\0\0\0\0\0\0\0\0\0\0', 0] GET_MEMO_FIELD_TEST_RESULTS = [ (4, b'\2', {'return': b'\2', 'read': (1, 3430), 'seek': (507136, (8, os.SEEK_CUR))}), (4, b'\3', {'return': b'', 'read': (1, ), 'seek': (507136, )}), (5, b'\3', {'return': b'\3', 'read': (1, 1725), 'seek': (3220111360, (41, os.SEEK_CUR), 3220111408)}), (5, b'\4', {'return': b'', 'read': (), 'seek': ()})] class TestEasyWorshipSongImport(TestCase): """ Test the functions in the :mod:`ewimport` module. """ def setUp(self): """ Create the registry """ Registry.create() def create_field_desc_entry_test(self): """ Test creating an instance of the :class`FieldDescEntry` class. """ # GIVEN: Set arguments name = 'Title' field_type = FieldType.String size = 50 # WHEN: A FieldDescEntry object is created. field_desc_entry = FieldDescEntry(name, field_type, size) # THEN: self.assertIsNotNone(field_desc_entry, 'Import should not be none') self.assertEqual(field_desc_entry.name, name, 'FieldDescEntry.name should be the same as the name argument') self.assertEqual(field_desc_entry.field_type, field_type, 'FieldDescEntry.type should be the same as the type argument') self.assertEqual(field_desc_entry.size, size, 'FieldDescEntry.size should be the same as the size argument') def create_importer_test(self): """ Test creating an instance of the EasyWorship file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = EasyWorshipSongImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') def find_field_exists_test(self): """ Test finding an existing field in a given list using the :mod:`find_field` """ # GIVEN: A mocked out SongImport class, a mocked out "manager" and a list of field descriptions. with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) importer.field_descriptions = TEST_FIELD_DESCS # WHEN: Called with a field name that exists existing_fields = ['Title', 'Text Percentage Bottom', 'RecID', 'Default Background', 'Words', 'BK Bitmap', 'Last Modified'] for field_name in existing_fields: # THEN: The item corresponding the index returned should have the same name attribute self.assertEqual(importer.field_descriptions[importer.find_field(field_name)].name, field_name) def find_non_existing_field_test(self): """ Test finding an non-existing field in a given list using the :mod:`find_field` """ # GIVEN: A mocked out SongImport class, a mocked out "manager" and a list of field descriptions with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) importer.field_descriptions = TEST_FIELD_DESCS # WHEN: Called with a field name that does not exist non_existing_fields = ['BK Gradient Shading', 'BK Gradient Variant', 'Favorite', 'Copyright'] for field_name in non_existing_fields: # THEN: The importer object should not be None self.assertRaises(IndexError, importer.find_field, field_name) def set_record_struct_test(self): """ Test the :mod:`set_record_struct` module """ # GIVEN: A mocked out SongImport class, a mocked out struct class, and a mocked out "manager" and a list of # field descriptions with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.struct') as mocked_struct: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) # WHEN: set_record_struct is called with a list of field descriptions return_value = importer.set_record_struct(TEST_FIELD_DESCS) # THEN: set_record_struct should return None and Struct should be called with a value representing # the list of field descriptions self.assertIsNone(return_value, 'set_record_struct should return None') mocked_struct.Struct.assert_called_with('>50sHIB250s250s10sQ') def get_field_test(self): """ Test the :mod:`get_field` module """ # GIVEN: A mocked out SongImport class, a mocked out "manager", an encoding and some test data and known results with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) importer.encoding = TEST_DATA_ENCODING importer.fields = TEST_FIELDS importer.field_descriptions = TEST_FIELD_DESCS field_results = [(0, b'A Heart Like Thine'), (1, 100), (2, 102), (3, True), (6, None), (7, None)] # WHEN: Called with test data for field_index, result in field_results: return_value = importer.get_field(field_index) # THEN: get_field should return the known results self.assertEqual(return_value, result, 'get_field should return "%s" when called with "%s"' % (result, TEST_FIELDS[field_index])) def get_memo_field_test(self): """ Test the :mod:`get_field` module """ for test_results in GET_MEMO_FIELD_TEST_RESULTS: # GIVEN: A mocked out SongImport class, a mocked out "manager", a mocked out memo_file and an encoding with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() mocked_memo_file = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) importer.memo_file = mocked_memo_file importer.encoding = TEST_DATA_ENCODING # WHEN: Supplied with test fields and test field descriptions importer.fields = TEST_FIELDS importer.field_descriptions = TEST_FIELD_DESCS field_index = test_results[0] mocked_memo_file.read.return_value = test_results[1] get_field_result = test_results[2]['return'] get_field_read_calls = test_results[2]['read'] get_field_seek_calls = test_results[2]['seek'] # THEN: get_field should return the appropriate value with the appropriate mocked objects being called self.assertEqual(importer.get_field(field_index), get_field_result) for call in get_field_read_calls: mocked_memo_file.read.assert_any_call(call) for call in get_field_seek_calls: if isinstance(call, int): mocked_memo_file.seek.assert_any_call(call) else: mocked_memo_file.seek.assert_any_call(call[0], call[1]) def do_import_source_test(self): """ Test the :mod:`do_import` module opens the correct files """ # GIVEN: A mocked out SongImport class, a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.os.path') as mocked_os_path: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) mocked_os_path.isfile.side_effect = [True, False] # WHEN: Supplied with an import source importer.import_source = 'Songs.DB' # THEN: do_import should return None having called os.path.isfile self.assertIsNone(importer.do_import(), 'do_import should return None') mocked_os_path.isfile.assert_any_call('Songs.DB') mocked_os_path.isfile.assert_any_call('Songs.MB') def do_import_source_invalid_test(self): """ Test the :mod:`do_import` module produces an error when Songs.MB not found. """ # GIVEN: A mocked out SongImport class, a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.os.path') as mocked_os_path: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) importer.log_error = MagicMock() mocked_os_path.isfile.side_effect = [True, False] # WHEN: do_import is supplied with an import source (Songs.MB missing) importer.import_source = 'Songs.DB' importer.do_import() # THEN: do_import should have logged an error that the Songs.MB file could not be found. importer.log_error.assert_any_call(importer.import_source, 'Could not find the "Songs.MB" file. It must be ' 'in the same folder as the "Songs.DB" file.') def do_import_database_validity_test(self): """ Test the :mod:`do_import` module handles invalid database files correctly """ # GIVEN: A mocked out SongImport class, os.path and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.os.path') as mocked_os_path: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) mocked_os_path.isfile.return_value = True importer.import_source = 'Songs.DB' # WHEN: DB file size is less than 0x800 mocked_os_path.getsize.return_value = 0x7FF # THEN: do_import should return None having called os.path.isfile self.assertIsNone(importer.do_import(), 'do_import should return None when db_size is less than 0x800') mocked_os_path.getsize.assert_any_call('Songs.DB') def do_import_memo_validty_test(self): """ Test the :mod:`do_import` module handles invalid memo files correctly """ # GIVEN: A mocked out SongImport class, a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.os.path') as mocked_os_path, \ patch('builtins.open') as mocked_open, \ patch('openlp.plugins.songs.lib.importers.easyworship.struct') as mocked_struct: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) mocked_os_path.isfile.return_value = True mocked_os_path.getsize.return_value = 0x800 importer.import_source = 'Songs.DB' # WHEN: Unpacking first 35 bytes of Memo file struct_unpack_return_values = [(0, 0x700, 2, 0, 0), (0, 0x800, 0, 0, 0), (0, 0x800, 5, 0, 0)] mocked_struct.unpack.side_effect = struct_unpack_return_values # THEN: do_import should return None having called closed the open files db and memo files. for effect in struct_unpack_return_values: self.assertIsNone(importer.do_import(), 'do_import should return None when db_size is less than 0x800') self.assertEqual(mocked_open().close.call_count, 2, 'The open db and memo files should have been closed') mocked_open().close.reset_mock() self.assertIs(mocked_open().seek.called, False, 'db_file.seek should not have been called.') def code_page_to_encoding_test(self): """ Test the :mod:`do_import` converts the code page to the encoding correctly """ # GIVEN: A mocked out SongImport class, a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.os.path') as mocked_os_path, \ patch('builtins.open'), patch('openlp.plugins.songs.lib.importers.easyworship.struct') as mocked_struct, \ patch('openlp.plugins.songs.lib.importers.easyworship.retrieve_windows_encoding') as \ mocked_retrieve_windows_encoding: mocked_manager = MagicMock() importer = EasyWorshipSongImport(mocked_manager, filenames=[]) mocked_os_path.isfile.return_value = True mocked_os_path.getsize.return_value = 0x800 importer.import_source = 'Songs.DB' # WHEN: Unpacking the code page for code_page, encoding in CODE_PAGE_MAPPINGS: struct_unpack_return_values = [(0, 0x800, 2, 0, 0), (code_page, )] mocked_struct.unpack.side_effect = struct_unpack_return_values mocked_retrieve_windows_encoding.return_value = False # THEN: do_import should return None having called retrieve_windows_encoding with the correct encoding. self.assertIsNone(importer.do_import(), 'do_import should return None when db_size is less than 0x800') mocked_retrieve_windows_encoding.assert_any_call(encoding) def db_file_import_test(self): """ Test the actual import of real song database files and check that the imported data is correct. """ # GIVEN: Test files with a mocked out SongImport class, a mocked out "manager", a mocked out "import_wizard", # and mocked out "author", "add_copyright", "add_verse", "finish" methods. with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.retrieve_windows_encoding') as \ mocked_retrieve_windows_encoding: mocked_retrieve_windows_encoding.return_value = 'cp1252' mocked_manager = MagicMock() mocked_import_wizard = MagicMock() mocked_add_author = MagicMock() mocked_add_verse = MagicMock() mocked_finish = MagicMock() mocked_title = MagicMock() mocked_finish.return_value = True importer = EasyWorshipSongImportLogger(mocked_manager) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = False importer.add_author = mocked_add_author importer.add_verse = mocked_add_verse importer.title = mocked_title importer.finish = mocked_finish importer.topics = [] # WHEN: Importing each file importer.import_source = os.path.join(TEST_PATH, 'Songs.DB') import_result = importer.do_import() # THEN: do_import should return none, the song data should be as expected, and finish should have been # called. self.assertIsNone(import_result, 'do_import should return None when it has completed') for song_data in SONG_TEST_DATA: title = song_data['title'] author_calls = song_data['authors'] song_copyright = song_data['copyright'] ccli_number = song_data['ccli_number'] add_verse_calls = song_data['verses'] verse_order_list = song_data['verse_order_list'] self.assertIn(title, importer._title_assignment_list, 'title for %s should be "%s"' % (title, title)) for author in author_calls: mocked_add_author.assert_any_call(author) if song_copyright: self.assertEqual(importer.copyright, song_copyright) if ccli_number: self.assertEqual(importer.ccli_number, ccli_number, 'ccli_number for %s should be %s' % (title, ccli_number)) for verse_text, verse_tag in add_verse_calls: mocked_add_verse.assert_any_call(verse_text, verse_tag) if verse_order_list: self.assertEqual(importer.verse_order_list, verse_order_list, 'verse_order_list for %s should be %s' % (title, verse_order_list)) mocked_finish.assert_called_with() def ews_file_import_test(self): """ Test the actual import of song from ews file and check that the imported data is correct. """ # GIVEN: Test files with a mocked out SongImport class, a mocked out "manager", a mocked out "import_wizard", # and mocked out "author", "add_copyright", "add_verse", "finish" methods. with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'), \ patch('openlp.plugins.songs.lib.importers.easyworship.retrieve_windows_encoding') \ as mocked_retrieve_windows_encoding: mocked_retrieve_windows_encoding.return_value = 'cp1252' mocked_manager = MagicMock() mocked_import_wizard = MagicMock() mocked_add_author = MagicMock() mocked_add_verse = MagicMock() mocked_finish = MagicMock() mocked_title = MagicMock() mocked_finish.return_value = True importer = EasyWorshipSongImportLogger(mocked_manager) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = False importer.add_author = mocked_add_author importer.add_verse = mocked_add_verse importer.title = mocked_title importer.finish = mocked_finish importer.topics = [] # WHEN: Importing ews file importer.import_source = os.path.join(TEST_PATH, 'test1.ews') import_result = importer.do_import() # THEN: do_import should return none, the song data should be as expected, and finish should have been # called. title = EWS_SONG_TEST_DATA['title'] self.assertIsNone(import_result, 'do_import should return None when it has completed') self.assertIn(title, importer._title_assignment_list, 'title for should be "%s"' % title) mocked_add_author.assert_any_call(EWS_SONG_TEST_DATA['authors'][0]) for verse_text, verse_tag in EWS_SONG_TEST_DATA['verses']: mocked_add_verse.assert_any_call(verse_text, verse_tag) mocked_finish.assert_called_with() def import_rtf_unescaped_unicode_test(self): """ Test import of rtf without the expected escaping of unicode """ # GIVEN: A mocked out SongImport class, a mocked out "manager" and mocked out "author" method. with patch('openlp.plugins.songs.lib.importers.easyworship.SongImport'): mocked_manager = MagicMock() mocked_add_author = MagicMock() importer = EasyWorshipSongImportLogger(mocked_manager) importer.add_author = mocked_add_author importer.encoding = 'cp1252' # WHEN: running set_song_import_object on a verse string without the needed escaping importer.set_song_import_object('Test Author', b'Det som var fr\x86n begynnelsen') # THEN: The import should fail self.assertEquals(importer.entry_error_log, 'Unexpected data formatting.', 'Import should fail') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_propresenterimport.py0000644000175000017500000000465112661025625026644 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`propresenterimport` module provides the functionality for importing ProPresenter song files into the current installation database. """ import os from tests.helpers.songfileimport import SongImportTestHelper TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'propresentersongs')) class TestProPresenterFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'ProPresenterImport' self.importer_module_name = 'propresenter' super(TestProPresenterFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading a ProPresenter file works correctly """ self.file_import([os.path.join(TEST_PATH, 'Amazing Grace.pro4')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_zionworximport.py0000644000175000017500000000651412657640340026015 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the ZionWorx song importer. """ import os from unittest import TestCase from tests.functional import MagicMock, patch from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib.importers.zionworx import ZionWorxImport from openlp.plugins.songs.lib.importers.songimport import SongImport from openlp.core.common import Registry TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'zionworxsongs')) class TestZionWorxImport(TestCase): """ Test the functions in the :mod:`zionworximport` module. """ def setUp(self): """ Create the registry """ Registry.create() def create_importer_test(self): """ Test creating an instance of the ZionWorx file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.zionworx.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = ZionWorxImport(mocked_manager, filenames=[]) # THEN: The importer should be an instance of SongImport self.assertIsInstance(importer, SongImport) class TestZionWorxFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'ZionWorxImport' self.importer_module_name = 'zionworx' super(TestZionWorxFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an ZionWorx file works correctly on various files """ self.file_import(os.path.join(TEST_PATH, 'zionworx.csv'), self.load_external_result_data(os.path.join(TEST_PATH, 'zionworx.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_editverseform.py0000644000175000017500000000632212657640340025536 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the editverseform of the Songs plugin. """ from unittest import TestCase from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, Settings from openlp.core.lib import ServiceItem from openlp.plugins.songs.forms.editverseform import EditVerseForm from openlp.plugins.songs.lib.db import AuthorType from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin class TestEditVerseForm(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Set up the components need for all tests. """ self.edit_verse_form = EditVerseForm(None) self.setup_application() self.build_settings() QtCore.QLocale.setDefault(QtCore.QLocale('en_GB')) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def update_suggested_verse_number_test(self): """ Test that update_suggested_verse_number() has no effect when editing a single verse """ # GIVEN some input values self.edit_verse_form.has_single_verse = True self.edit_verse_form.verse_type_combo_box.currentIndex = MagicMock(return_value=0) self.edit_verse_form.verse_text_edit.toPlainText = MagicMock(return_value='Text') self.edit_verse_form.verse_number_box.setValue(3) # WHEN the method is called self.edit_verse_form.update_suggested_verse_number() # THEN the verse number must not be changed self.assertEqual(3, self.edit_verse_form.verse_number_box.value(), 'The verse number should be 3') OpenLP-2.4/tests/functional/openlp_plugins/songs/test_mediaitem.py0000644000175000017500000003037512657640340024623 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Songs plugin. """ from unittest import TestCase from PyQt5 import QtCore from openlp.core.common import Registry, Settings from openlp.core.lib import ServiceItem from openlp.plugins.songs.lib.mediaitem import SongMediaItem from openlp.plugins.songs.lib.db import AuthorType, Song from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin class TestMediaItem(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Set up the components need for all tests. """ Registry.create() Registry().register('service_list', MagicMock()) Registry().register('main_window', MagicMock()) with patch('openlp.core.lib.mediamanageritem.MediaManagerItem._setup'), \ patch('openlp.plugins.songs.forms.editsongform.EditSongForm.__init__'): self.media_item = SongMediaItem(None, MagicMock()) self.media_item.display_songbook = False self.media_item.display_copyright_symbol = False self.setup_application() self.build_settings() QtCore.QLocale.setDefault(QtCore.QLocale('en_GB')) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def build_song_footer_one_author_test(self): """ Test build songs footer with basic song and one author """ # GIVEN: A Song and a Service Item mock_song = MagicMock() mock_song.title = 'My Song' mock_song.authors_songs = [] mock_author = MagicMock() mock_author.display_name = 'my author' mock_author_song = MagicMock() mock_author_song.author = mock_author mock_song.authors_songs.append(mock_author_song) mock_song.copyright = 'My copyright' service_item = ServiceItem(None) # WHEN: I generate the Footer with default settings author_list = self.media_item.generate_footer(service_item, mock_song) # THEN: I get the following Array returned self.assertEqual(service_item.raw_footer, ['My Song', 'Written by: my author', 'My copyright'], 'The array should be returned correctly with a song, one author and copyright') self.assertEqual(author_list, ['my author'], 'The author list should be returned correctly with one author') def build_song_footer_two_authors_test(self): """ Test build songs footer with basic song and two authors """ # GIVEN: A Song and a Service Item mock_song = MagicMock() mock_song.title = 'My Song' mock_song.authors_songs = [] mock_author = MagicMock() mock_author.display_name = 'my author' mock_author_song = MagicMock() mock_author_song.author = mock_author mock_author_song.author_type = AuthorType.Music mock_song.authors_songs.append(mock_author_song) mock_author = MagicMock() mock_author.display_name = 'another author' mock_author_song = MagicMock() mock_author_song.author = mock_author mock_author_song.author_type = AuthorType.Words mock_song.authors_songs.append(mock_author_song) mock_author = MagicMock() mock_author.display_name = 'translator' mock_author_song = MagicMock() mock_author_song.author = mock_author mock_author_song.author_type = AuthorType.Translation mock_song.authors_songs.append(mock_author_song) mock_song.copyright = 'My copyright' service_item = ServiceItem(None) # WHEN: I generate the Footer with default settings author_list = self.media_item.generate_footer(service_item, mock_song) # THEN: I get the following Array returned self.assertEqual(service_item.raw_footer, ['My Song', 'Words: another author', 'Music: my author', 'Translation: translator', 'My copyright'], 'The array should be returned correctly with a song, two authors and copyright') self.assertEqual(author_list, ['another author', 'my author', 'translator'], 'The author list should be returned correctly with two authors') def build_song_footer_base_ccli_test(self): """ Test build songs footer with basic song and a CCLI number """ # GIVEN: A Song and a Service Item and a configured CCLI license mock_song = MagicMock() mock_song.title = 'My Song' mock_song.copyright = 'My copyright' service_item = ServiceItem(None) Settings().setValue('core/ccli number', '1234') # WHEN: I generate the Footer with default settings self.media_item.generate_footer(service_item, mock_song) # THEN: I get the following Array returned self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'CCLI License: 1234'], 'The array should be returned correctly with a song, an author, copyright and ccli') # WHEN: I amend the CCLI value Settings().setValue('core/ccli number', '4321') self.media_item.generate_footer(service_item, mock_song) # THEN: I would get an amended footer string self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'CCLI License: 4321'], 'The array should be returned correctly with a song, an author, copyright and amended ccli') def build_song_footer_base_songbook_test(self): """ Test build songs footer with basic song and multiple songbooks """ # GIVEN: A Song and a Service Item song = Song() song.title = 'My Song' song.copyright = 'My copyright' song.authors_songs = [] song.songbook_entries = [] song.ccli_number = '' book1 = MagicMock() book1.name = "My songbook" book2 = MagicMock() book2.name = "Thy songbook" song.songbookentries = [] song.add_songbook_entry(book1, '12') song.add_songbook_entry(book2, '502A') service_item = ServiceItem(None) # WHEN: I generate the Footer with default settings self.media_item.generate_footer(service_item, song) # THEN: The songbook should not be in the footer self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright']) # WHEN: I activate the "display songbook" option self.media_item.display_songbook = True self.media_item.generate_footer(service_item, song) # THEN: The songbook should be in the footer self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'My songbook #12, Thy songbook #502A']) def build_song_footer_copyright_enabled_test(self): """ Test building song footer with displaying the copyright symbol """ # GIVEN: A Song and a Service Item; displaying the copyright symbol is enabled self.media_item.display_copyright_symbol = True mock_song = MagicMock() mock_song.title = 'My Song' mock_song.copyright = 'My copyright' service_item = ServiceItem(None) # WHEN: I generate the Footer with default settings self.media_item.generate_footer(service_item, mock_song) # THEN: The copyright symbol should be in the footer self.assertEqual(service_item.raw_footer, ['My Song', '© My copyright']) def build_song_footer_copyright_disabled_test(self): """ Test building song footer without displaying the copyright symbol """ # GIVEN: A Song and a Service Item; displaying the copyright symbol should be disabled by default mock_song = MagicMock() mock_song.title = 'My Song' mock_song.copyright = 'My copyright' service_item = ServiceItem(None) # WHEN: I generate the Footer with default settings self.media_item.generate_footer(service_item, mock_song) # THEN: The copyright symbol should not be in the footer self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright']) def authors_match_test(self): """ Test the author matching when importing a song from a service """ # GIVEN: A song and a string with authors song = MagicMock() song.authors = [] author = MagicMock() author.display_name = "Hans Wurst" song.authors.append(author) author2 = MagicMock() author2.display_name = "Max Mustermann" song.authors.append(author2) # There are occasions where an author appears twice in a song (with different types). # We need to make sure that this case works (lp#1313538) author3 = MagicMock() author3.display_name = "Max Mustermann" song.authors.append(author3) authors_str = "Hans Wurst, Max Mustermann, Max Mustermann" # WHEN: Checking for matching result = self.media_item._authors_match(song, authors_str) # THEN: They should match self.assertTrue(result, "Authors should match") def authors_dont_match_test(self): # GIVEN: A song and a string with authors song = MagicMock() song.authors = [] author = MagicMock() author.display_name = "Hans Wurst" song.authors.append(author) author2 = MagicMock() author2.display_name = "Max Mustermann" song.authors.append(author2) # There are occasions where an author appears twice in a song (with different types). # We need to make sure that this case works (lp#1313538) author3 = MagicMock() author3.display_name = "Max Mustermann" song.authors.append(author3) # WHEN: An author is missing in the string authors_str = "Hans Wurst, Max Mustermann" result = self.media_item._authors_match(song, authors_str) # THEN: They should not match self.assertFalse(result, "Authors should not match") def build_remote_search_test(self): """ Test results for the remote search api """ # GIVEN: A Song and a search a JSON array should be returned. mock_song = MagicMock() mock_song.id = 123 mock_song.title = 'My Song' mock_song.search_title = 'My Song' mock_song.alternate_title = 'My alternative' self.media_item.search_entire = MagicMock() self.media_item.search_entire.return_value = [mock_song] # WHEN: I process a search search_results = self.media_item.search('My Song', False) # THEN: The correct formatted results are returned self.assertEqual(search_results, [[123, 'My Song', 'My alternative']]) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py0000644000175000017500000000571112657640340027213 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the Words of Worship song importer. """ import os from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib.importers.wordsofworship import WordsOfWorshipImport TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'wordsofworshipsongs')) class TestWordsOfWorshipFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'WordsOfWorshipImport' self.importer_module_name = 'wordsofworship' super(TestWordsOfWorshipFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading a Words of Worship file works correctly """ self.file_import([os.path.join(TEST_PATH, 'Amazing Grace (6 Verses).wow-song')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace (6 Verses).json'))) self.file_import([os.path.join(TEST_PATH, 'When morning gilds the skies.wsg')], self.load_external_result_data(os.path.join(TEST_PATH, 'When morning gilds the skies.json'))) self.file_import([os.path.join(TEST_PATH, 'Holy Holy Holy Lord God Almighty.wow-song')], self.load_external_result_data(os.path.join(TEST_PATH, 'Holy Holy Holy Lord God Almighty.json'))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_opensongimport.py0000644000175000017500000001403512657640340025743 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OpenSong song importer. """ import os from unittest import TestCase from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib.importers.opensong import OpenSongImport from openlp.core.common import Registry from tests.functional import patch, MagicMock TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'opensongsongs')) class TestOpenSongFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'OpenSongImport' self.importer_module_name = 'opensong' super(TestOpenSongFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading an OpenSong file works correctly on various files """ self.file_import([os.path.join(TEST_PATH, 'Amazing Grace')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) self.file_import([os.path.join(TEST_PATH, 'Beautiful Garden Of Prayer')], self.load_external_result_data(os.path.join(TEST_PATH, 'Beautiful Garden Of Prayer.json'))) self.file_import([os.path.join(TEST_PATH, 'One, Two, Three, Four, Five')], self.load_external_result_data(os.path.join(TEST_PATH, 'One, Two, Three, Four, Five.json'))) self.file_import([os.path.join(TEST_PATH, 'Amazing Grace2')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) class TestOpenSongImport(TestCase): """ Test the functions in the :mod:`opensongimport` module. """ def setUp(self): """ Create the registry """ Registry.create() def create_importer_test(self): """ Test creating an instance of the OpenSong file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.opensong.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = OpenSongImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') def invalid_import_source_test(self): """ Test OpenSongImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.opensong.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OpenSongImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is not a list for source in ['not a list', 0]: importer.import_source = source # THEN: do_import should return none and the progress bar maximum should not be set. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is not a list') self.assertEqual(mocked_import_wizard.progress_bar.setMaximum.called, False, 'setMaximum on import_wizard.progress_bar should not have been called') def valid_import_source_test(self): """ Test OpenSongImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.opensong.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = OpenSongImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is a list importer.import_source = ['List', 'of', 'files'] # THEN: do_import should return none and the progress bar setMaximum should be called with the length of # import_source. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is a list ' 'and stop_import_flag is True') mocked_import_wizard.progress_bar.setMaximum.assert_called_with(len(importer.import_source)) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_openlyricsexport.py0000644000175000017500000000716712657640340026321 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the OpenLyrics song importer. """ import os import shutil from unittest import TestCase from tempfile import mkdtemp from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin from openlp.plugins.songs.lib.openlyricsexport import OpenLyricsExport from openlp.core.common import Registry class TestOpenLyricsExport(TestCase, TestMixin): """ Test the functions in the :mod:`openlyricsexport` module. """ def setUp(self): """ Create the registry """ Registry.create() self.temp_folder = mkdtemp() def tearDown(self): """ Cleanup """ shutil.rmtree(self.temp_folder) def export_same_filename_test(self): """ Test that files is not overwritten if songs has same title and author """ # GIVEN: A mocked song_to_xml, 2 mocked songs, a mocked application and an OpenLyricsExport instance with patch('openlp.plugins.songs.lib.openlyricsexport.OpenLyrics.song_to_xml') as mocked_song_to_xml: mocked_song_to_xml.return_value = '\n' author = MagicMock() author.display_name = 'Test Author' song = MagicMock() song.authors = [author] song.title = 'Test Title' parent = MagicMock() parent.stop_export_flag = False mocked_application_object = MagicMock() Registry().register('application', mocked_application_object) ol_export = OpenLyricsExport(parent, [song, song], self.temp_folder) # WHEN: Doing the export ol_export.do_export() # THEN: The exporter should have created 2 files self.assertTrue(os.path.exists(os.path.join(self.temp_folder, '%s (%s).xml' % (song.title, author.display_name)))) self.assertTrue(os.path.exists(os.path.join(self.temp_folder, '%s (%s)-1.xml' % (song.title, author.display_name)))) OpenLP-2.4/tests/functional/openlp_plugins/songs/test_songshowplusimport.py0000644000175000017500000002217512657640340026672 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the SongShow Plus song importer. """ import os from unittest import TestCase from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib import VerseType from openlp.plugins.songs.lib.importers.songshowplus import SongShowPlusImport from tests.functional import patch, MagicMock TEST_PATH = os.path.abspath( os.path.join(os.path.dirname(__file__), '..', '..', '..', 'resources', 'songshowplussongs')) class TestSongShowPlusFileImport(SongImportTestHelper): def __init__(self, *args, **kwargs): self.importer_class_name = 'SongShowPlusImport' self.importer_module_name = 'songshowplus' super(TestSongShowPlusFileImport, self).__init__(*args, **kwargs) def test_song_import(self): """ Test that loading a SongShow Plus file works correctly on various files """ self.file_import([os.path.join(TEST_PATH, 'Amazing Grace.sbsong')], self.load_external_result_data(os.path.join(TEST_PATH, 'Amazing Grace.json'))) self.file_import([os.path.join(TEST_PATH, 'Beautiful Garden Of Prayer.sbsong')], self.load_external_result_data(os.path.join(TEST_PATH, 'Beautiful Garden Of Prayer.json'))) self.file_import([os.path.join(TEST_PATH, 'a mighty fortress is our god.sbsong')], self.load_external_result_data(os.path.join(TEST_PATH, 'a mighty fortress is our god.json'))) class TestSongShowPlusImport(TestCase): """ Test the functions in the :mod:`songshowplusimport` module. """ def create_importer_test(self): """ Test creating an instance of the SongShow Plus file importer """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songshowplus.SongImport'): mocked_manager = MagicMock() # WHEN: An importer object is created importer = SongShowPlusImport(mocked_manager, filenames=[]) # THEN: The importer object should not be None self.assertIsNotNone(importer, 'Import should not be none') def invalid_import_source_test(self): """ Test SongShowPlusImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songshowplus.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = SongShowPlusImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is not a list for source in ['not a list', 0]: importer.import_source = source # THEN: do_import should return none and the progress bar maximum should not be set. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is not a list') self.assertEqual(mocked_import_wizard.progress_bar.setMaximum.called, False, 'setMaximum on import_wizard.progress_bar should not have been called') def valid_import_source_test(self): """ Test SongShowPlusImport.do_import handles different invalid import_source values """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songshowplus.SongImport'): mocked_manager = MagicMock() mocked_import_wizard = MagicMock() importer = SongShowPlusImport(mocked_manager, filenames=[]) importer.import_wizard = mocked_import_wizard importer.stop_import_flag = True # WHEN: Import source is a list importer.import_source = ['List', 'of', 'files'] # THEN: do_import should return none and the progress bar setMaximum should be called with the length of # import_source. self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is a list ' 'and stop_import_flag is True') mocked_import_wizard.progress_bar.setMaximum.assert_called_with(len(importer.import_source)) def to_openlp_verse_tag_test(self): """ Test to_openlp_verse_tag method by simulating adding a verse """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songshowplus.SongImport'): mocked_manager = MagicMock() importer = SongShowPlusImport(mocked_manager, filenames=[]) # WHEN: Supplied with the following arguments replicating verses being added test_values = [ ('Verse 1', VerseType.tags[VerseType.Verse] + '1'), ('Verse 2', VerseType.tags[VerseType.Verse] + '2'), ('verse1', VerseType.tags[VerseType.Verse] + '1'), ('Verse', VerseType.tags[VerseType.Verse] + '1'), ('Verse1', VerseType.tags[VerseType.Verse] + '1'), ('chorus 1', VerseType.tags[VerseType.Chorus] + '1'), ('bridge 1', VerseType.tags[VerseType.Bridge] + '1'), ('pre-chorus 1', VerseType.tags[VerseType.PreChorus] + '1'), ('different 1', VerseType.tags[VerseType.Other] + '1'), ('random 1', VerseType.tags[VerseType.Other] + '2')] # THEN: The returned value should should correlate with the input arguments for original_tag, openlp_tag in test_values: self.assertEqual(importer.to_openlp_verse_tag(original_tag), openlp_tag, 'SongShowPlusImport.to_openlp_verse_tag should return "%s" when called with "%s"' % (openlp_tag, original_tag)) def to_openlp_verse_tag_verse_order_test(self): """ Test to_openlp_verse_tag method by simulating adding a verse to the verse order """ # GIVEN: A mocked out SongImport class, and a mocked out "manager" with patch('openlp.plugins.songs.lib.importers.songshowplus.SongImport'): mocked_manager = MagicMock() importer = SongShowPlusImport(mocked_manager, filenames=[]) # WHEN: Supplied with the following arguments replicating a verse order being added test_values = [ ('Verse 1', VerseType.tags[VerseType.Verse] + '1'), ('Verse 2', VerseType.tags[VerseType.Verse] + '2'), ('verse1', VerseType.tags[VerseType.Verse] + '1'), ('Verse', VerseType.tags[VerseType.Verse] + '1'), ('Verse1', VerseType.tags[VerseType.Verse] + '1'), ('chorus 1', VerseType.tags[VerseType.Chorus] + '1'), ('bridge 1', VerseType.tags[VerseType.Bridge] + '1'), ('pre-chorus 1', VerseType.tags[VerseType.PreChorus] + '1'), ('different 1', VerseType.tags[VerseType.Other] + '1'), ('random 1', VerseType.tags[VerseType.Other] + '2'), ('unused 2', None)] # THEN: The returned value should should correlate with the input arguments for original_tag, openlp_tag in test_values: self.assertEqual(importer.to_openlp_verse_tag(original_tag, ignore_unique=True), openlp_tag, 'SongShowPlusImport.to_openlp_verse_tag should return "%s" when called with "%s"' % (openlp_tag, original_tag)) OpenLP-2.4/tests/functional/openlp_plugins/custom/0000755000175000017500000000000012657640341021426 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/custom/__init__.py0000644000175000017500000000301012657640340023530 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/custom/test_mediaitem.py0000644000175000017500000001050412657640340024774 0ustar raoulraoul""" This module contains tests for the lib submodule of the Songs plugin. """ from unittest import TestCase from PyQt5 import QtCore from openlp.core.common import Registry, Settings from openlp.core.lib import ServiceItem, PluginStatus from openlp.plugins.custom.lib import CustomMediaItem from openlp.plugins.custom.lib.db import CustomSlide from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin FOOTER = ['Arky Arky (Unknown)', 'Public Domain', 'CCLI 123456'] class TestMediaItem(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ def setUp(self): """ Set up the components need for all tests. """ Registry.create() Registry().register('service_list', MagicMock()) Registry().register('main_window', MagicMock()) with patch('openlp.core.lib.mediamanageritem.MediaManagerItem._setup'), \ patch('openlp.core.lib.mediamanageritem.MediaManagerItem.setup_item'), \ patch('openlp.plugins.custom.forms.editcustomform.EditCustomForm.__init__'), \ patch('openlp.plugins.custom.lib.mediaitem.CustomMediaItem.setup_item'): self.media_item = CustomMediaItem(None, MagicMock()) self.setup_application() self.build_settings() QtCore.QLocale.setDefault(QtCore.QLocale('en_GB')) def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def service_load_inactive_test(self): """ Test the service load in custom with a default service item """ # GIVEN: An empty Service Item service_item = ServiceItem(None) # WHEN: I search for the custom in the database item = self.media_item.service_load(service_item) # THEN: the processing should be ignored self.assertEqual(item, None, 'The Service item is inactive so processing should be bypassed') def service_load_basic_custom_false_test(self): """ Test the service load in custom with a default service item and no requirement to add to the database """ # GIVEN: An empty Service Item and an active plugin service_item = ServiceItem(None) service_item.raw_footer = FOOTER self.media_item.plugin = MagicMock() self.media_item.plugin.status = PluginStatus.Active self.media_item.plugin.db_manager = MagicMock() self.media_item.plugin.db_manager.get_object_filtered = MagicMock() self.media_item.plugin.db_manager.get_object_filtered.return_value = None with patch('openlp.plugins.custom.lib.mediaitem.CustomSlide'): # WHEN: I search for the custom in the database self.media_item.add_custom_from_service = False self.media_item.create_from_service_item = MagicMock() self.media_item.service_load(service_item) # THEN: the item should not be added to the database. self.assertEqual(self.media_item.create_from_service_item.call_count, 0, 'The item should not have been added to the database') def service_load_basic_custom_true_test(self): """ Test the service load in custom with a default service item and a requirement to add to the database """ # GIVEN: An empty Service Item and an active plugin service_item = ServiceItem(None) service_item.raw_footer = FOOTER self.media_item.plugin = MagicMock() self.media_item.plugin.status = PluginStatus.Active self.media_item.plugin.db_manager = MagicMock() self.media_item.plugin.db_manager.get_object_filtered = MagicMock() self.media_item.plugin.db_manager.get_object_filtered.return_value = None with patch('openlp.plugins.custom.lib.mediaitem.CustomSlide'): # WHEN: I search for the custom in the database self.media_item.add_custom_from_service = True self.media_item.create_from_service_item = MagicMock() self.media_item.service_load(service_item) # THEN: the item should not be added to the database. self.assertEqual(self.media_item.create_from_service_item.call_count, 1, 'The item should have been added to the database') OpenLP-2.4/tests/functional/openlp_plugins/images/0000755000175000017500000000000012657640341021361 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_plugins/images/test_lib.py0000644000175000017500000003246612657640340023552 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Images plugin. """ from unittest import TestCase from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry from openlp.plugins.images.lib.db import ImageFilenames, ImageGroups from openlp.plugins.images.lib.mediaitem import ImageMediaItem from tests.functional import ANY, MagicMock, patch class TestImageMediaItem(TestCase): """ This is a test case to test various methods in the ImageMediaItem class. """ def setUp(self): self.mocked_main_window = MagicMock() Registry.create() Registry().register('application', MagicMock()) Registry().register('service_list', MagicMock()) Registry().register('main_window', self.mocked_main_window) Registry().register('live_controller', MagicMock()) mocked_plugin = MagicMock() with patch('openlp.plugins.images.lib.mediaitem.MediaManagerItem._setup'), \ patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.setup_item'): self.media_item = ImageMediaItem(None, mocked_plugin) self.media_item.settings_section = 'images' @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_list') @patch('openlp.plugins.images.lib.mediaitem.Settings') def validate_and_load_test(self, mocked_settings, mocked_load_list): """ Test that the validate_and_load_test() method when called without a group """ # GIVEN: A list of files file_list = ['/path1/image1.jpg', '/path2/image2.jpg'] # WHEN: Calling validate_and_load with the list of files self.media_item.validate_and_load(file_list) # THEN: load_list should have been called with the file list and None, # the directory should have been saved to the settings mocked_load_list.assert_called_once_with(file_list, None) mocked_settings().setValue.assert_called_once_with(ANY, '/path1') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_list') @patch('openlp.plugins.images.lib.mediaitem.Settings') def validate_and_load_group_test(self, mocked_settings, mocked_load_list): """ Test that the validate_and_load_test() method when called with a group """ # GIVEN: A list of files file_list = ['/path1/image1.jpg', '/path2/image2.jpg'] # WHEN: Calling validate_and_load with the list of files and a group self.media_item.validate_and_load(file_list, 'group') # THEN: load_list should have been called with the file list and the group name, # the directory should have been saved to the settings mocked_load_list.assert_called_once_with(file_list, 'group') mocked_settings().setValue.assert_called_once_with(ANY, '/path1') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_full_list') def save_new_images_list_empty_list_test(self, mocked_load_full_list): """ Test that the save_new_images_list() method handles empty lists gracefully """ # GIVEN: An empty image_list image_list = [] self.media_item.manager = MagicMock() # WHEN: We run save_new_images_list with the empty list self.media_item.save_new_images_list(image_list) # THEN: The save_object() method should not have been called self.assertEquals(self.media_item.manager.save_object.call_count, 0, 'The save_object() method should not have been called') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_full_list') def save_new_images_list_single_image_with_reload_test(self, mocked_load_full_list): """ Test that the save_new_images_list() calls load_full_list() when reload_list is set to True """ # GIVEN: A list with 1 image and a mocked out manager image_list = ['test_image.jpg'] ImageFilenames.filename = '' self.media_item.manager = MagicMock() # WHEN: We run save_new_images_list with reload_list=True self.media_item.save_new_images_list(image_list, reload_list=True) # THEN: load_full_list() should have been called self.assertEquals(mocked_load_full_list.call_count, 1, 'load_full_list() should have been called') # CLEANUP: Remove added attribute from ImageFilenames delattr(ImageFilenames, 'filename') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_full_list') def save_new_images_list_single_image_without_reload_test(self, mocked_load_full_list): """ Test that the save_new_images_list() doesn't call load_full_list() when reload_list is set to False """ # GIVEN: A list with 1 image and a mocked out manager image_list = ['test_image.jpg'] self.media_item.manager = MagicMock() # WHEN: We run save_new_images_list with reload_list=False self.media_item.save_new_images_list(image_list, reload_list=False) # THEN: load_full_list() should not have been called self.assertEquals(mocked_load_full_list.call_count, 0, 'load_full_list() should not have been called') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_full_list') def save_new_images_list_multiple_images_test(self, mocked_load_full_list): """ Test that the save_new_images_list() saves all images in the list """ # GIVEN: A list with 3 images image_list = ['test_image_1.jpg', 'test_image_2.jpg', 'test_image_3.jpg'] self.media_item.manager = MagicMock() # WHEN: We run save_new_images_list with the list of 3 images self.media_item.save_new_images_list(image_list, reload_list=False) # THEN: load_full_list() should not have been called self.assertEquals(self.media_item.manager.save_object.call_count, 3, 'load_full_list() should have been called three times') @patch('openlp.plugins.images.lib.mediaitem.ImageMediaItem.load_full_list') def save_new_images_list_other_objects_in_list_test(self, mocked_load_full_list): """ Test that the save_new_images_list() ignores everything in the provided list except strings """ # GIVEN: A list with images and objects image_list = ['test_image_1.jpg', None, True, ImageFilenames(), 'test_image_2.jpg'] self.media_item.manager = MagicMock() # WHEN: We run save_new_images_list with the list of images and objects self.media_item.save_new_images_list(image_list, reload_list=False) # THEN: load_full_list() should not have been called self.assertEquals(self.media_item.manager.save_object.call_count, 2, 'load_full_list() should have been called only once') def on_reset_click_test(self): """ Test that on_reset_click() actually resets the background """ # GIVEN: A mocked version of reset_action self.media_item.reset_action = MagicMock() # WHEN: on_reset_click is called self.media_item.on_reset_click() # THEN: the reset_action should be set visible, and the image should be reset self.media_item.reset_action.setVisible.assert_called_with(False) self.media_item.live_controller.display.reset_image.assert_called_with() @patch('openlp.plugins.images.lib.mediaitem.delete_file') def recursively_delete_group_test(self, mocked_delete_file): """ Test that recursively_delete_group() works """ # GIVEN: An ImageGroups object and mocked functions ImageFilenames.group_id = 1 ImageGroups.parent_id = 1 self.media_item.manager = MagicMock() self.media_item.manager.get_all_objects.side_effect = self._recursively_delete_group_side_effect self.media_item.service_path = '' test_group = ImageGroups() test_group.id = 1 # WHEN: recursively_delete_group() is called self.media_item.recursively_delete_group(test_group) # THEN: delete_file() should have been called 12 times and manager.delete_object() 7 times. self.assertEquals(mocked_delete_file.call_count, 12, 'delete_file() should have been called 12 times') self.assertEquals(self.media_item.manager.delete_object.call_count, 7, 'manager.delete_object() should be called exactly 7 times') # CLEANUP: Remove added attribute from Image Filenames and ImageGroups delattr(ImageFilenames, 'group_id') delattr(ImageGroups, 'parent_id') def _recursively_delete_group_side_effect(*args, **kwargs): """ Side effect method that creates custom return values for the recursively_delete_group method """ if args[1] == ImageFilenames and args[2]: # Create some fake objects that should be removed returned_object1 = ImageFilenames() returned_object1.id = 1 returned_object1.filename = '/tmp/test_file_1.jpg' returned_object2 = ImageFilenames() returned_object2.id = 2 returned_object2.filename = '/tmp/test_file_2.jpg' returned_object3 = ImageFilenames() returned_object3.id = 3 returned_object3.filename = '/tmp/test_file_3.jpg' return [returned_object1, returned_object2, returned_object3] if args[1] == ImageGroups and args[2]: # Change the parent_id that is matched so we don't get into an endless loop ImageGroups.parent_id = 0 # Create a fake group that will be used in the next run returned_object1 = ImageGroups() returned_object1.id = 1 return [returned_object1] return [] @patch('openlp.plugins.images.lib.mediaitem.delete_file') @patch('openlp.plugins.images.lib.mediaitem.check_item_selected') def on_delete_click_test(self, mocked_check_item_selected, mocked_delete_file): """ Test that on_delete_click() works """ # GIVEN: An ImageGroups object and mocked functions mocked_check_item_selected.return_value = True test_image = ImageFilenames() test_image.id = 1 test_image.group_id = 1 test_image.filename = 'imagefile.png' self.media_item.manager = MagicMock() self.media_item.service_path = '' self.media_item.list_view = MagicMock() mocked_row_item = MagicMock() mocked_row_item.data.return_value = test_image mocked_row_item.text.return_value = '' self.media_item.list_view.selectedItems.return_value = [mocked_row_item] # WHEN: Calling on_delete_click self.media_item.on_delete_click() # THEN: delete_file should have been called twice self.assertEquals(mocked_delete_file.call_count, 2, 'delete_file() should have been called twice') def create_item_from_id_test(self): """ Test that the create_item_from_id() method returns a valid QTreeWidgetItem with a pre-created ImageFilenames """ # GIVEN: An ImageFilenames that already exists in the database image_file = ImageFilenames() image_file.id = 1 image_file.filename = '/tmp/test_file_1.jpg' self.media_item.manager = MagicMock() self.media_item.manager.get_object_filtered.return_value = image_file ImageFilenames.filename = '' # WHEN: create_item_from_id() is called item = self.media_item.create_item_from_id(1) # THEN: A QTreeWidgetItem should be created with the above model object as it's data self.assertIsInstance(item, QtWidgets.QTreeWidgetItem) self.assertEqual('test_file_1.jpg', item.text(0)) item_data = item.data(0, QtCore.Qt.UserRole) self.assertIsInstance(item_data, ImageFilenames) self.assertEqual(1, item_data.id) self.assertEqual('/tmp/test_file_1.jpg', item_data.filename) OpenLP-2.4/tests/functional/openlp_plugins/images/__init__.py0000644000175000017500000000301012657640340023463 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_plugins/images/test_imagetab.py0000644000175000017500000000776212657640340024556 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the lib submodule of the Images plugin. """ from unittest import TestCase from PyQt5 import QtWidgets from openlp.core.common import Settings from openlp.core.common import Registry from openlp.plugins.images.lib.db import ImageFilenames, ImageGroups from openlp.plugins.images.lib.mediaitem import ImageMediaItem from openlp.plugins.images.lib import ImageTab from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin __default_settings__ = { 'images/db type': 'sqlite', 'images/background color': '#000000', } class TestImageMediaItem(TestCase, TestMixin): """ This is a test case to test various methods in the ImageTab. """ def setUp(self): """ Create the UI """ Registry.create() Registry().register('settings_form', MagicMock()) self.setup_application() self.build_settings() Settings().extend_default_settings(__default_settings__) self.parent = QtWidgets.QMainWindow() self.form = ImageTab(self.parent, 'Images', None, None) self.form.settings_form.register_post_process = MagicMock() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.parent del self.form self.destroy_settings() def save_tab_nochange_test_test(self): """ Test no changes does not trigger post processing """ # GIVEN: No changes on the form. self.initial_color = '#999999' # WHEN: the save is invoked self.form.save() # THEN: the post process should not be requested self.assertEqual(0, self.form.settings_form.register_post_process.call_count, 'Image Post processing should not have been requested') def save_tab_change_test_test(self): """ Test a color change is applied and triggers post processing. """ # GIVEN: Apply a change to the form. self.form.on_background_color_changed('#999999') # WHEN: the save is invoked self.form.save() # THEN: the post process should be requested self.assertEqual(1, self.form.settings_form.register_post_process.call_count, 'Image Post processing should have been requested') # THEN: The color should be set self.assertEqual(self.form.background_color, '#999999', 'The updated color should have been saved') OpenLP-2.4/tests/functional/openlp_core_lib/0000755000175000017500000000000012657640341020211 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_lib/test_projectordb.py0000644000175000017500000001626712657640340024152 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.projectordb find, edit, delete record functions. PREREQUISITE: add_record() and get_all() functions validated. """ import os from unittest import TestCase from openlp.core.lib.projector.db import Projector, ProjectorDB, ProjectorSource from tests.functional import MagicMock, patch from tests.resources.projector.data import TEST_DB, TEST1_DATA, TEST2_DATA, TEST3_DATA def compare_data(one, two): """ Verify two Projector() instances contain the same data """ return one is not None and \ two is not None and \ one.ip == two.ip and \ one.port == two.port and \ one.name == two.name and \ one.location == two.location and \ one.notes == two.notes def compare_source(one, two): """ Verify two ProjectorSource instances contain the same data """ return one is not None and \ two is not None and \ one.projector_id == two.projector_id and \ one.code == two.code and \ one.text == two.text def add_records(projector_db, test): """ Add record if not in database """ record_list = projector_db.get_projector_all() if len(record_list) < 1: added = False for record in test: added = projector_db.add_projector(record) or added return added for new_record in test: added = None for record in record_list: if compare_data(record, new_record): break added = projector_db.add_projector(new_record) return added class TestProjectorDB(TestCase): """ Test case for ProjectorDB """ def setUp(self): """ Set up anything necessary for all tests """ with patch('openlp.core.lib.projector.db.init_url') as mocked_init_url: mocked_init_url.return_value = 'sqlite:///%s' % TEST_DB self.projector = ProjectorDB() def tearDown(self): """ Clean up """ self.projector.session.close() self.projector = None retries = 0 while retries < 5: try: if os.path.exists(TEST_DB): os.unlink(TEST_DB) break except: time.sleep(1) retries += 1 def find_record_by_ip_test(self): """ Test find record by IP """ # GIVEN: Record entries in database add_records(self.projector, [Projector(**TEST1_DATA), Projector(**TEST2_DATA)]) # WHEN: Search for record using IP record = self.projector.get_projector_by_ip(TEST2_DATA['ip']) # THEN: Verify proper record returned self.assertTrue(compare_data(Projector(**TEST2_DATA), record), 'Record found should have been test_2 data') def find_record_by_name_test(self): """ Test find record by name """ # GIVEN: Record entries in database add_records(self.projector, [Projector(**TEST1_DATA), Projector(**TEST2_DATA)]) # WHEN: Search for record using name record = self.projector.get_projector_by_name(TEST2_DATA['name']) # THEN: Verify proper record returned self.assertTrue(compare_data(Projector(**TEST2_DATA), record), 'Record found should have been test_2 data') def record_delete_test(self): """ Test record can be deleted """ # GIVEN: Record in database add_records(self.projector, [Projector(**TEST3_DATA), ]) record = self.projector.get_projector_by_ip(TEST3_DATA['ip']) # WHEN: Record deleted self.projector.delete_projector(record) # THEN: Verify record not retrievable found = self.projector.get_projector_by_ip(TEST3_DATA['ip']) self.assertFalse(found, 'test_3 record should have been deleted') def record_edit_test(self): """ Test edited record returns the same record ID with different data """ # GIVEN: Record entries in database add_records(self.projector, [Projector(**TEST1_DATA), Projector(**TEST2_DATA)]) # WHEN: We retrieve a specific record record = self.projector.get_projector_by_ip(TEST1_DATA['ip']) record_id = record.id # WHEN: Data is changed record.ip = TEST3_DATA['ip'] record.port = TEST3_DATA['port'] record.pin = TEST3_DATA['pin'] record.name = TEST3_DATA['name'] record.location = TEST3_DATA['location'] record.notes = TEST3_DATA['notes'] updated = self.projector.update_projector(record) self.assertTrue(updated, 'Save updated record should have returned True') record = self.projector.get_projector_by_ip(TEST3_DATA['ip']) # THEN: Record ID should remain the same, but data should be changed self.assertEqual(record_id, record.id, 'Edited record should have the same ID') self.assertTrue(compare_data(Projector(**TEST3_DATA), record), 'Edited record should have new data') def source_add_test(self): """ Test source entry for projector item """ # GIVEN: Record entries in database projector1 = Projector(**TEST1_DATA) self.projector.add_projector(projector1) item = self.projector.get_projector_by_id(projector1.id) item_id = item.id # WHEN: A source entry is saved for item source = ProjectorSource(projector_id=item_id, code='11', text='First RGB source') self.projector.add_source(source) # THEN: Projector should have the same source entry item = self.projector.get_projector_by_id(item_id) self.assertTrue(compare_source(item.source_list[0], source)) OpenLP-2.4/tests/functional/openlp_core_lib/test_theme.py0000644000175000017500000000570712657640340022734 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.theme package. """ from tests.functional import MagicMock, patch from unittest import TestCase from openlp.core.lib.theme import ThemeXML class TestTheme(TestCase): """ Test the functions in the Theme module """ def setUp(self): """ Create the UI """ pass def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ pass def new_theme_test(self): """ Test the theme creation - basic test """ # GIVEN: A new theme # WHEN: A theme is created default_theme = ThemeXML() # THEN: We should get some default behaviours self.assertTrue(default_theme.background_border_color == '#000000', 'The theme should have a black border') self.assertTrue(default_theme.background_type == 'solid', 'The theme should have a solid backgrounds') self.assertTrue(default_theme.display_vertical_align == 0, 'The theme should have a display_vertical_align of 0') self.assertTrue(default_theme.font_footer_name == "Arial", 'The theme should have a font_footer_name of Arial') self.assertTrue(default_theme.font_main_bold is False, 'The theme should have a font_main_bold of false') self.assertTrue(len(default_theme.__dict__) == 47, 'The theme should have 47 variables') OpenLP-2.4/tests/functional/openlp_core_lib/test_color_button.py0000644000175000017500000002224112657640340024333 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains tests for the openlp.core.lib.filedialog module """ from unittest import TestCase from openlp.core.lib.colorbutton import ColorButton from tests.functional import MagicMock, call, patch class TestColorDialog(TestCase): """ Test the :class:`~openlp.core.lib.colorbutton.ColorButton` class """ def setUp(self): self.change_color_patcher = patch('openlp.core.lib.colorbutton.ColorButton.change_color') self.clicked_patcher = patch('openlp.core.lib.colorbutton.ColorButton.clicked') self.color_changed_patcher = patch('openlp.core.lib.colorbutton.ColorButton.colorChanged') self.qt_gui_patcher = patch('openlp.core.lib.colorbutton.QtWidgets') self.translate_patcher = patch('openlp.core.lib.colorbutton.translate', **{'return_value': 'Tool Tip Text'}) self.addCleanup(self.change_color_patcher.stop) self.addCleanup(self.clicked_patcher.stop) self.addCleanup(self.color_changed_patcher.stop) self.addCleanup(self.qt_gui_patcher.stop) self.addCleanup(self.translate_patcher.stop) self.mocked_change_color = self.change_color_patcher.start() self.mocked_clicked = self.clicked_patcher.start() self.mocked_color_changed = self.color_changed_patcher.start() self.mocked_qt_widgets = self.qt_gui_patcher.start() self.mocked_translate = self.translate_patcher.start() def constructor_test(self): """ Test that constructing a ColorButton object works correctly """ # GIVEN: The ColorButton class, a mocked change_color, setToolTip methods and clicked signal with patch('openlp.core.lib.colorbutton.ColorButton.setToolTip') as mocked_set_tool_tip: # WHEN: The ColorButton object is instantiated widget = ColorButton() # THEN: The widget __init__ method should have the correct properties and methods called self.assertEqual(widget.parent, None, 'The parent should be the same as the one that the class was instianted with') self.mocked_change_color.assert_called_once_with('#ffffff') mocked_set_tool_tip.assert_called_once_with('Tool Tip Text') self.mocked_clicked.connect.assert_called_once_with(widget.on_clicked) def change_color_test(self): """ Test that change_color sets the new color and the stylesheet """ self.change_color_patcher.stop() # GIVEN: An instance of the ColorButton object, and a mocked out setStyleSheet with patch('openlp.core.lib.colorbutton.ColorButton.setStyleSheet') as mocked_set_style_sheet: widget = ColorButton() # WHEN: Changing the color widget.change_color('#000000') # THEN: The _color attribute should be set to #000000 and setStyleSheet should have been called twice self.assertEqual(widget._color, '#000000', '_color should have been set to #000000') mocked_set_style_sheet.assert_has_calls( [call('background-color: #ffffff'), call('background-color: #000000')]) self.mocked_change_color = self.change_color_patcher.start() def color_test(self): """ Test that the color property method returns the set color """ # GIVEN: An instance of ColorButton, with a set _color attribute widget = ColorButton() widget._color = '#000000' # WHEN: Accesing the color property value = widget.color # THEN: The value set in _color should be returned self.assertEqual(value, '#000000', 'The value returned should be equal to the one we set') def color_test(self): """ Test that the color property method returns the set color """ # GIVEN: An instance of ColorButton, with a set _color attribute widget = ColorButton() widget._color = '#000000' # WHEN: Accesing the color property value = widget.color # THEN: The value set in _color should be returned self.assertEqual(value, '#000000', 'The value returned should be equal to the one we set') def color_setter_test(self): """ Test that the color property setter method sets the color """ # GIVEN: An instance of ColorButton, with a mocked __init__ with patch('openlp.core.lib.colorbutton.ColorButton.__init__', **{'return_value': None}): widget = ColorButton() # WHEN: Setting the color property widget.color = '#000000' # THEN: Then change_color should have been called with the value we set self.mocked_change_color.assert_called_once_with('#000000') def on_clicked_invalid_color_test(self): """ Test the on_click method when an invalid color has been supplied """ # GIVEN: An instance of ColorButton, and a set _color attribute widget = ColorButton() self.mocked_change_color.reset_mock() self.mocked_color_changed.reset_mock() widget._color = '#000000' # WHEN: The on_clicked method is called, and the color is invalid self.mocked_qt_widgets.QColorDialog.getColor.return_value = MagicMock(**{'isValid.return_value': False}) widget.on_clicked() # THEN: change_color should not have been called and the colorChanged signal should not have been emitted self.assertEqual( self.mocked_change_color.call_count, 0, 'change_color should not have been called with an invalid color') self.assertEqual( self.mocked_color_changed.emit.call_count, 0, 'colorChange signal should not have been emitted with an invalid color') def on_clicked_same_color_test(self): """ Test the on_click method when a new color has not been chosen """ # GIVEN: An instance of ColorButton, and a set _color attribute widget = ColorButton() self.mocked_change_color.reset_mock() self.mocked_color_changed.reset_mock() widget._color = '#000000' # WHEN: The on_clicked method is called, and the color is valid, but the same as the existing color self.mocked_qt_widgets.QColorDialog.getColor.return_value = MagicMock( **{'isValid.return_value': True, 'name.return_value': '#000000'}) widget.on_clicked() # THEN: change_color should not have been called and the colorChanged signal should not have been emitted self.assertEqual( self.mocked_change_color.call_count, 0, 'change_color should not have been called when the color has not changed') self.assertEqual( self.mocked_color_changed.emit.call_count, 0, 'colorChange signal should not have been emitted when the color has not changed') def on_clicked_new_color_test(self): """ Test the on_click method when a new color has been chosen and is valid """ # GIVEN: An instance of ColorButton, and a set _color attribute widget = ColorButton() self.mocked_change_color.reset_mock() self.mocked_color_changed.reset_mock() widget._color = '#000000' # WHEN: The on_clicked method is called, and the color is valid, and different to the existing color self.mocked_qt_widgets.QColorDialog.getColor.return_value = MagicMock( **{'isValid.return_value': True, 'name.return_value': '#ffffff'}) widget.on_clicked() # THEN: change_color should have been called and the colorChanged signal should have been emitted self.mocked_change_color.assert_called_once_with('#ffffff') self.mocked_color_changed.emit.assert_called_once_with('#ffffff') OpenLP-2.4/tests/functional/openlp_core_lib/test_htmlbuilder.py0000644000175000017500000002732212657640340024142 0ustar raoulraoul""" Package to test the openlp.core.lib.htmlbuilder module. """ from unittest import TestCase from PyQt5 import QtCore, QtWebKit from openlp.core.common import Settings from openlp.core.lib.htmlbuilder import build_html, build_background_css, build_lyrics_css, build_lyrics_outline_css, \ build_lyrics_format_css, build_footer_css, webkit_version from openlp.core.lib.theme import HorizontalType, VerticalType from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin HTML = """ OpenLP Display plugin HTML
""" BACKGROUND_CSS_RADIAL = 'background: -webkit-gradient(radial, 5 50%, 100, 5 50%, 5, from(#000000), to(#FFFFFF)) fixed' LYRICS_CSS = """ .lyricstable { z-index: 5; position: absolute; display: table; left: 10px; top: 20px; } .lyricscell { display: table-cell; word-wrap: break-word; -webkit-transition: opacity 0.4s ease; lyrics_format_css } .lyricsmain { text-shadow: #000000 5px 5px; } """ LYRICS_OUTLINE_CSS = ' -webkit-text-stroke: 0.125em #000000; -webkit-text-fill-color: #FFFFFF; ' LYRICS_FORMAT_CSS = ' word-wrap: break-word; text-align: justify; vertical-align: bottom; ' + \ 'font-family: Arial; font-size: 40pt; color: #FFFFFF; line-height: 108%; margin: 0;padding: 0; ' + \ 'padding-bottom: 0.5em; padding-left: 2px; width: 1580px; height: 810px; font-style:italic; font-weight:bold; ' FOOTER_CSS_BASE = """ left: 10px; bottom: 0px; width: 1260px; font-family: Arial; font-size: 12pt; color: #FFFFFF; text-align: left; white-space: %s; """ FOOTER_CSS = FOOTER_CSS_BASE % ('nowrap') FOOTER_CSS_WRAP = FOOTER_CSS_BASE % ('normal') class Htmbuilder(TestCase, TestMixin): """ Test the functions in the Htmlbuilder module """ def setUp(self): """ Create the UI """ self.build_settings() def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ self.destroy_settings() def build_html_test(self): """ Test the build_html() function """ # GIVEN: Mocked arguments and function. with patch('openlp.core.lib.htmlbuilder.build_background_css') as mocked_build_background_css, \ patch('openlp.core.lib.htmlbuilder.build_footer_css') as mocked_build_footer_css, \ patch('openlp.core.lib.htmlbuilder.build_lyrics_css') as mocked_build_lyrics_css: # Mocked function. mocked_build_background_css.return_value = '' mocked_build_footer_css.return_value = 'dummy: dummy;' mocked_build_lyrics_css.return_value = '' # Mocked arguments. item = MagicMock() item.bg_image_bytes = None screen = MagicMock() is_live = False background = None plugin = MagicMock() plugin.get_display_css.return_value = 'plugin CSS' plugin.get_display_javascript.return_value = 'plugin JS' plugin.get_display_html.return_value = 'plugin HTML' plugins = [plugin] # WHEN: Create the html. html = build_html(item, screen, is_live, background, plugins=plugins) # THEN: The returned html should match. self.assertEqual(html, HTML, 'The returned html should match') def build_background_css_radial_test(self): """ Test the build_background_css() function with a radial background """ # GIVEN: Mocked arguments. item = MagicMock() item.theme_data.background_start_color = '#000000' item.theme_data.background_end_color = '#FFFFFF' width = 10 # WHEN: Create the css. css = build_background_css(item, width) # THEN: The returned css should match. self.assertEqual(BACKGROUND_CSS_RADIAL, css, 'The background css should be equal.') def build_lyrics_css_test(self): """ Test the build_lyrics_css() function """ # GIVEN: Mocked method and arguments. with patch('openlp.core.lib.htmlbuilder.build_lyrics_format_css') as mocked_build_lyrics_format_css, \ patch('openlp.core.lib.htmlbuilder.build_lyrics_outline_css') as mocked_build_lyrics_outline_css: mocked_build_lyrics_format_css.return_value = 'lyrics_format_css' mocked_build_lyrics_outline_css.return_value = '' item = MagicMock() item.main = QtCore.QRect(10, 20, 10, 20) item.theme_data.font_main_shadow = True item.theme_data.font_main_shadow_color = '#000000' item.theme_data.font_main_shadow_size = 5 # WHEN: Create the css. css = build_lyrics_css(item) # THEN: The css should be equal. self.assertEqual(LYRICS_CSS, css, 'The lyrics css should be equal.') def build_lyrics_outline_css_test(self): """ Test the build_lyrics_outline_css() function """ # GIVEN: The mocked theme data. theme_data = MagicMock() theme_data.font_main_outline = True theme_data.font_main_outline_size = 2 theme_data.font_main_color = '#FFFFFF' theme_data.font_main_outline_color = '#000000' # WHEN: Create the css. css = build_lyrics_outline_css(theme_data) # THEN: The css should be equal. self.assertEqual(LYRICS_OUTLINE_CSS, css, 'The outline css should be equal.') def build_lyrics_format_css_test(self): """ Test the build_lyrics_format_css() function """ # GIVEN: Mocked arguments. theme_data = MagicMock() theme_data.display_horizontal_align = HorizontalType.Justify theme_data.display_vertical_align = VerticalType.Bottom theme_data.font_main_name = 'Arial' theme_data.font_main_size = 40 theme_data.font_main_color = '#FFFFFF' theme_data.font_main_italics = True theme_data.font_main_bold = True theme_data.font_main_line_adjustment = 8 width = 1580 height = 810 # WHEN: Get the css. css = build_lyrics_format_css(theme_data, width, height) # THEN: They should be equal. self.assertEqual(LYRICS_FORMAT_CSS, css, 'The lyrics format css should be equal.') def build_footer_css_test(self): """ Test the build_footer_css() function """ # GIVEN: Create a theme. item = MagicMock() item.footer = QtCore.QRect(10, 921, 1260, 103) item.theme_data.font_footer_name = 'Arial' item.theme_data.font_footer_size = 12 item.theme_data.font_footer_color = '#FFFFFF' height = 1024 # WHEN: create the css with default settings. css = build_footer_css(item, height) # THEN: THE css should be the same. self.assertEqual(FOOTER_CSS, css, 'The footer strings should be equal.') def build_footer_css_wrap_test(self): """ Test the build_footer_css() function """ # GIVEN: Create a theme. item = MagicMock() item.footer = QtCore.QRect(10, 921, 1260, 103) item.theme_data.font_footer_name = 'Arial' item.theme_data.font_footer_size = 12 item.theme_data.font_footer_color = '#FFFFFF' height = 1024 # WHEN: Settings say that footer should wrap Settings().setValue('themes/wrap footer', True) css = build_footer_css(item, height) # THEN: Footer should wrap self.assertEqual(FOOTER_CSS_WRAP, css, 'The footer strings should be equal.') def webkit_version_test(self): """ Test the webkit_version() function """ # GIVEN: Webkit webkit_ver = float(QtWebKit.qWebKitVersion()) # WHEN: Retrieving the webkit version # THEN: Webkit versions should match self.assertEquals(webkit_version(), webkit_ver, "The returned webkit version doesn't match the installed one") OpenLP-2.4/tests/functional/openlp_core_lib/test_formattingtags.py0000644000175000017500000001112412657640340024651 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.formattingtags package. """ import copy from unittest import TestCase from openlp.core.lib import FormattingTags from tests.functional import patch TAG = { 'end tag': '{/aa}', 'start html': '', 'start tag': '{aa}', 'protected': False, 'end html': '', 'desc': 'name' } class TestFormattingTags(TestCase): def tearDown(self): """ Clean up the FormattingTags class. """ FormattingTags.html_expands = [] def get_html_tags_no_user_tags_test(self): """ Test the FormattingTags class' get_html_tags static method. """ with patch('openlp.core.lib.translate') as mocked_translate, \ patch('openlp.core.common.settings') as mocked_settings, \ patch('openlp.core.lib.formattingtags.json') as mocked_json: # GIVEN: Our mocked modules and functions. mocked_translate.side_effect = lambda module, string_to_translate, comment: string_to_translate mocked_settings.value.return_value = '' mocked_json.load.return_value = [] # WHEN: Get the display tags. FormattingTags.load_tags() old_tags_list = copy.deepcopy(FormattingTags.get_html_tags()) FormattingTags.load_tags() new_tags_list = FormattingTags.get_html_tags() # THEN: Lists should be identical. assert old_tags_list == new_tags_list, 'The formatting tag lists should be identical.' def get_html_tags_with_user_tags_test(self): """ FormattingTags class - test the get_html_tags(), add_html_tags() and remove_html_tag() methods. """ with patch('openlp.core.lib.translate') as mocked_translate, \ patch('openlp.core.common.settings') as mocked_settings, \ patch('openlp.core.lib.formattingtags.json') as mocked_json: # GIVEN: Our mocked modules and functions. mocked_translate.side_effect = lambda module, string_to_translate: string_to_translate mocked_settings.value.return_value = '' mocked_json.loads.side_effect = [[], [TAG]] # WHEN: Get the display tags. FormattingTags.load_tags() old_tags_list = copy.deepcopy(FormattingTags.get_html_tags()) # WHEN: Add our tag and get the tags again. FormattingTags.load_tags() FormattingTags.add_html_tags([TAG]) new_tags_list = copy.deepcopy(FormattingTags.get_html_tags()) # THEN: Lists should not be identical. assert old_tags_list != new_tags_list, 'The lists should be different.' # THEN: Added tag and last tag should be the same. new_tag = new_tags_list.pop() assert TAG == new_tag, 'Tags should be identical.' # WHEN: Remove the new tag. FormattingTags.remove_html_tag(len(new_tags_list)) # THEN: The lists should now be identical. assert old_tags_list == FormattingTags.get_html_tags(), 'The lists should be identical.' OpenLP-2.4/tests/functional/openlp_core_lib/test_lib.py0000644000175000017500000006004512657640340022374 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib package. """ import os from unittest import TestCase from datetime import datetime, timedelta from PyQt5 import QtCore, QtGui from openlp.core.lib import build_icon, check_item_selected, clean_tags, create_thumb, create_separated_list, \ expand_tags, get_text_file_string, image_to_byte, resize_image, str_to_bool, validate_thumb from tests.functional import MagicMock, patch TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'resources')) class TestLib(TestCase): def str_to_bool_with_bool_true_test(self): """ Test the str_to_bool function with boolean input of True """ # GIVEN: A boolean value set to true true_boolean = True # WHEN: We "convert" it to a bool true_result = str_to_bool(true_boolean) # THEN: We should get back a True bool self.assertIsInstance(true_result, bool, 'The result should be a boolean') self.assertTrue(true_result, 'The result should be True') def str_to_bool_with_bool_false_test(self): """ Test the str_to_bool function with boolean input of False """ # GIVEN: A boolean value set to false false_boolean = False # WHEN: We "convert" it to a bool false_result = str_to_bool(false_boolean) # THEN: We should get back a True bool self.assertIsInstance(false_result, bool, 'The result should be a boolean') self.assertFalse(false_result, 'The result should be True') def str_to_bool_with_integer_test(self): """ Test the str_to_bool function with an integer input """ # GIVEN: An integer value int_string = 1 # WHEN: we convert it to a bool int_result = str_to_bool(int_string) # THEN: we should get back a false self.assertFalse(int_result, 'The result should be False') def str_to_bool_with_invalid_string_test(self): """ Test the str_to_bool function with an invalid string """ # GIVEN: An string value with completely invalid input invalid_string = 'my feet are wet' # WHEN: we convert it to a bool str_result = str_to_bool(invalid_string) # THEN: we should get back a false self.assertFalse(str_result, 'The result should be False') def str_to_bool_with_string_false_test(self): """ Test the str_to_bool function with a string saying "false" """ # GIVEN: A string set to "false" false_string = 'false' # WHEN: we convert it to a bool false_result = str_to_bool(false_string) # THEN: we should get back a false self.assertFalse(false_result, 'The result should be False') def str_to_bool_with_string_no_test(self): """ Test the str_to_bool function with a string saying "NO" """ # GIVEN: An string set to "NO" no_string = 'NO' # WHEN: we convert it to a bool str_result = str_to_bool(no_string) # THEN: we should get back a false self.assertFalse(str_result, 'The result should be False') def str_to_bool_with_true_string_value_test(self): """ Test the str_to_bool function with a string set to "True" """ # GIVEN: A string set to "True" true_string = 'True' # WHEN: we convert it to a bool true_result = str_to_bool(true_string) # THEN: we should get back a true self.assertTrue(true_result, 'The result should be True') def str_to_bool_with_yes_string_value_test(self): """ Test the str_to_bool function with a string set to "yes" """ # GIVEN: An string set to "yes" yes_string = 'yes' # WHEN: we convert it to a bool str_result = str_to_bool(yes_string) # THEN: we should get back a true self.assertTrue(str_result, 'The result should be True') def get_text_file_string_no_file_test(self): """ Test the get_text_file_string() function when a file does not exist """ with patch('openlp.core.lib.os.path.isfile') as mocked_isfile: # GIVEN: A mocked out isfile which returns true, and a text file name filename = 'testfile.txt' mocked_isfile.return_value = False # WHEN: get_text_file_string is called result = get_text_file_string(filename) # THEN: The result should be False mocked_isfile.assert_called_with(filename) self.assertFalse(result, 'False should be returned if no file exists') def get_text_file_string_read_error_test(self): """ Test the get_text_file_string() method when a read error happens """ with patch('openlp.core.lib.os.path.isfile') as mocked_isfile, \ patch('openlp.core.lib.open', create=True) as mocked_open: # GIVEN: A mocked-out open() which raises an exception and isfile returns True filename = 'testfile.txt' mocked_isfile.return_value = True mocked_open.side_effect = IOError() # WHEN: get_text_file_string is called result = get_text_file_string(filename) # THEN: None should be returned mocked_isfile.assert_called_with(filename) mocked_open.assert_called_with(filename, 'r', encoding='utf-8') self.assertIsNone(result, 'None should be returned if the file cannot be opened') def get_text_file_string_decode_error_test(self): """ Test the get_text_file_string() method when the contents cannot be decoded """ self.skipTest('Impossible to test due to conflicts when mocking out the "open" function') def build_icon_with_qicon_test(self): """ Test the build_icon() function with a QIcon instance """ with patch('openlp.core.lib.QtGui') as MockedQtGui: # GIVEN: A mocked QIcon MockedQtGui.QIcon = MagicMock mocked_icon = MockedQtGui.QIcon() # WHEN: We pass a QIcon instance in result = build_icon(mocked_icon) # THEN: The result should be our mocked QIcon self.assertIs(mocked_icon, result, 'The result should be the mocked QIcon') def build_icon_with_resource_test(self): """ Test the build_icon() function with a resource URI """ with patch('openlp.core.lib.QtGui') as MockedQtGui, \ patch('openlp.core.lib.QtGui.QPixmap') as MockedQPixmap: # GIVEN: A mocked QIcon and a mocked QPixmap MockedQtGui.QIcon = MagicMock MockedQtGui.QIcon.Normal = 1 MockedQtGui.QIcon.Off = 2 MockedQPixmap.return_value = 'mocked_pixmap' resource_uri = ':/resource/uri' # WHEN: We pass a QIcon instance in result = build_icon(resource_uri) # THEN: The result should be our mocked QIcon MockedQPixmap.assert_called_with(resource_uri) # There really should be more assert statements here but due to type checking and things they all break. The # best we can do is to assert that we get back a MagicMock object. self.assertIsInstance(result, MagicMock, 'The result should be a MagicMock, because we mocked it out') def image_to_byte_test(self): """ Test the image_to_byte() function """ with patch('openlp.core.lib.QtCore') as MockedQtCore: # GIVEN: A set of mocked-out Qt classes mocked_byte_array = MagicMock() MockedQtCore.QByteArray.return_value = mocked_byte_array mocked_byte_array.toBase64.return_value = QtCore.QByteArray(b'base64mock') mocked_buffer = MagicMock() MockedQtCore.QBuffer.return_value = mocked_buffer MockedQtCore.QIODevice.WriteOnly = 'writeonly' mocked_image = MagicMock() # WHEN: We convert an image to a byte array result = image_to_byte(mocked_image) # THEN: We should receive a value of 'base64mock' MockedQtCore.QByteArray.assert_called_with() MockedQtCore.QBuffer.assert_called_with(mocked_byte_array) mocked_buffer.open.assert_called_with('writeonly') mocked_image.save.assert_called_with(mocked_buffer, "PNG") mocked_byte_array.toBase64.assert_called_with() self.assertEqual('base64mock', result, 'The result should be the return value of the mocked out ' 'base64 method') def create_thumb_with_size_test(self): """ Test the create_thumb() function """ # GIVEN: An image to create a thumb of. image_path = os.path.join(TEST_PATH, 'church.jpg') thumb_path = os.path.join(TEST_PATH, 'church_thumb.jpg') thumb_size = QtCore.QSize(10, 20) # Remove the thumb so that the test actually tests if the thumb will be created. Maybe it was not deleted in the # last test. try: os.remove(thumb_path) except: pass # Only continue when the thumb does not exist. self.assertFalse(os.path.exists(thumb_path), 'Test was not run, because the thumb already exists.') # WHEN: Create the thumb. icon = create_thumb(image_path, thumb_path, size=thumb_size) # THEN: Check if the thumb was created. self.assertTrue(os.path.exists(thumb_path), 'Test was not ran, because the thumb already exists') self.assertIsInstance(icon, QtGui.QIcon, 'The icon should be a QIcon') self.assertFalse(icon.isNull(), 'The icon should not be null') self.assertEqual(thumb_size, QtGui.QImageReader(thumb_path).size(), 'The thumb should have the given size') # Remove the thumb so that the test actually tests if the thumb will be created. try: os.remove(thumb_path) except: pass def check_item_selected_true_test(self): """ Test that the check_item_selected() function returns True when there are selected indexes """ # GIVEN: A mocked out QtWidgets module and a list widget with selected indexes mocked_QtWidgets = patch('openlp.core.lib.QtWidgets') mocked_list_widget = MagicMock() mocked_list_widget.selectedIndexes.return_value = True message = 'message' # WHEN: We check if there are selected items result = check_item_selected(mocked_list_widget, message) # THEN: The selectedIndexes function should have been called and the result should be true mocked_list_widget.selectedIndexes.assert_called_with() self.assertTrue(result, 'The result should be True') def check_item_selected_false_test(self): """ Test that the check_item_selected() function returns False when there are no selected indexes. """ # GIVEN: A mocked out QtWidgets module and a list widget with selected indexes with patch('openlp.core.lib.QtWidgets') as MockedQtWidgets, \ patch('openlp.core.lib.translate') as mocked_translate: mocked_translate.return_value = 'mocked translate' mocked_list_widget = MagicMock() mocked_list_widget.selectedIndexes.return_value = False mocked_list_widget.parent.return_value = 'parent' message = 'message' # WHEN: We check if there are selected items result = check_item_selected(mocked_list_widget, message) # THEN: The selectedIndexes function should have been called and the result should be true mocked_list_widget.selectedIndexes.assert_called_with() MockedQtWidgets.QMessageBox.information.assert_called_with('parent', 'mocked translate', 'message') self.assertFalse(result, 'The result should be False') def clean_tags_test(self): """ Test clean_tags() method. """ with patch('openlp.core.lib.FormattingTags.get_html_tags') as mocked_get_tags: # GIVEN: Mocked get_html_tags() method. mocked_get_tags.return_value = [{ 'desc': 'Black', 'start tag': '{b}', 'start html': '', 'end tag': '{/b}', 'end html': '', 'protected': True, 'temporary': False }] string_to_pass = 'ASDF
foo{br}bar {b}black{/b}' wanted_string = 'ASDF\nfoo\nbar black' # WHEN: Clean the string. result_string = clean_tags(string_to_pass) # THEN: The strings should be identical. self.assertEqual(wanted_string, result_string, 'The strings should be identical') def expand_tags_test(self): """ Test the expand_tags() method. """ with patch('openlp.core.lib.FormattingTags.get_html_tags') as mocked_get_tags: # GIVEN: Mocked get_html_tags() method. mocked_get_tags.return_value = [ { 'desc': 'Black', 'start tag': '{b}', 'start html': '', 'end tag': '{/b}', 'end html': '', 'protected': True, 'temporary': False }, { 'desc': 'Yellow', 'start tag': '{y}', 'start html': '', 'end tag': '{/y}', 'end html': '', 'protected': True, 'temporary': False }, { 'desc': 'Green', 'start tag': '{g}', 'start html': '', 'end tag': '{/g}', 'end html': '', 'protected': True, 'temporary': False } ] string_to_pass = '{b}black{/b}{y}yellow{/y}' wanted_string = 'black' + \ 'yellow' # WHEN: Replace the tags. result_string = expand_tags(string_to_pass) # THEN: The strings should be identical. self.assertEqual(wanted_string, result_string, 'The strings should be identical.') def validate_thumb_file_does_not_exist_test(self): """ Test the validate_thumb() function when the thumbnail does not exist """ # GIVEN: A mocked out os module, with path.exists returning False, and fake paths to a file and a thumb with patch('openlp.core.lib.os') as mocked_os: file_path = 'path/to/file' thumb_path = 'path/to/thumb' mocked_os.path.exists.return_value = False # WHEN: we run the validate_thumb() function result = validate_thumb(file_path, thumb_path) # THEN: we should have called a few functions, and the result should be False mocked_os.path.exists.assert_called_with(thumb_path) assert result is False, 'The result should be False' def validate_thumb_file_exists_and_newer_test(self): """ Test the validate_thumb() function when the thumbnail exists and has a newer timestamp than the file """ # GIVEN: A mocked out os module, functions rigged to work for us, and fake paths to a file and a thumb with patch('openlp.core.lib.os') as mocked_os: file_path = 'path/to/file' thumb_path = 'path/to/thumb' file_mocked_stat = MagicMock() file_mocked_stat.st_mtime = datetime.now() thumb_mocked_stat = MagicMock() thumb_mocked_stat.st_mtime = datetime.now() + timedelta(seconds=10) mocked_os.path.exists.return_value = True mocked_os.stat.side_effect = [file_mocked_stat, thumb_mocked_stat] # WHEN: we run the validate_thumb() function # THEN: we should have called a few functions, and the result should be True # mocked_os.path.exists.assert_called_with(thumb_path) def validate_thumb_file_exists_and_older_test(self): """ Test the validate_thumb() function when the thumbnail exists but is older than the file """ # GIVEN: A mocked out os module, functions rigged to work for us, and fake paths to a file and a thumb with patch('openlp.core.lib.os') as mocked_os: file_path = 'path/to/file' thumb_path = 'path/to/thumb' file_mocked_stat = MagicMock() file_mocked_stat.st_mtime = datetime.now() thumb_mocked_stat = MagicMock() thumb_mocked_stat.st_mtime = datetime.now() - timedelta(seconds=10) mocked_os.path.exists.return_value = True mocked_os.stat.side_effect = lambda fname: file_mocked_stat if fname == file_path else thumb_mocked_stat # WHEN: we run the validate_thumb() function result = validate_thumb(file_path, thumb_path) # THEN: we should have called a few functions, and the result should be False mocked_os.path.exists.assert_called_with(thumb_path) mocked_os.stat.assert_any_call(file_path) mocked_os.stat.assert_any_call(thumb_path) assert result is False, 'The result should be False' def resize_thumb_test(self): """ Test the resize_thumb() function """ # GIVEN: A path to an image. image_path = os.path.join(TEST_PATH, 'church.jpg') wanted_width = 777 wanted_height = 72 # We want the background to be white. wanted_background_hex = '#FFFFFF' wanted_background_rgb = QtGui.QColor(wanted_background_hex).rgb() # WHEN: Resize the image and add a background. image = resize_image(image_path, wanted_width, wanted_height, wanted_background_hex) # THEN: Check if the size is correct and the background was set. result_size = image.size() self.assertEqual(wanted_height, result_size.height(), 'The image should have the requested height.') self.assertEqual(wanted_width, result_size.width(), 'The image should have the requested width.') self.assertEqual(image.pixel(0, 0), wanted_background_rgb, 'The background should be white.') def create_separated_list_qlocate_test(self): """ Test the create_separated_list function using the Qt provided method """ with patch('openlp.core.lib.Qt') as mocked_qt, \ patch('openlp.core.lib.QtCore.QLocale.createSeparatedList') as mocked_createSeparatedList: # GIVEN: A list of strings and the mocked Qt module. mocked_qt.PYQT_VERSION_STR = '4.9' mocked_qt.qVersion.return_value = '4.8' mocked_createSeparatedList.return_value = 'Author 1, Author 2, and Author 3' string_list = ['Author 1', 'Author 2', 'Author 3'] # WHEN: We get a string build from the entries it the list and a separator. string_result = create_separated_list(string_list) # THEN: We should have "Author 1, Author 2, and Author 3" assert string_result == 'Author 1, Author 2, and Author 3', 'The string should be u\'Author 1, ' \ 'Author 2, and Author 3\'.' def create_separated_list_empty_list_test(self): """ Test the create_separated_list function with an empty list """ with patch('openlp.core.lib.Qt') as mocked_qt: # GIVEN: An empty list and the mocked Qt module. mocked_qt.PYQT_VERSION_STR = '4.8' mocked_qt.qVersion.return_value = '4.7' string_list = [] # WHEN: We get a string build from the entries it the list and a separator. string_result = create_separated_list(string_list) # THEN: We shoud have an emptry string. assert string_result == '', 'The string sould be empty.' def create_separated_list_with_one_item_test(self): """ Test the create_separated_list function with a list consisting of only one entry """ with patch('openlp.core.lib.Qt') as mocked_qt: # GIVEN: A list with a string and the mocked Qt module. mocked_qt.PYQT_VERSION_STR = '4.8' mocked_qt.qVersion.return_value = '4.7' string_list = ['Author 1'] # WHEN: We get a string build from the entries it the list and a separator. string_result = create_separated_list(string_list) # THEN: We should have "Author 1" assert string_result == 'Author 1', 'The string should be u\'Author 1\'.' def create_separated_list_with_two_items_test(self): """ Test the create_separated_list function with a list of two entries """ with patch('openlp.core.lib.Qt') as mocked_qt, patch('openlp.core.lib.translate') as mocked_translate: # GIVEN: A list of strings and the mocked Qt module. mocked_qt.PYQT_VERSION_STR = '4.8' mocked_qt.qVersion.return_value = '4.7' mocked_translate.return_value = '%s and %s' string_list = ['Author 1', 'Author 2'] # WHEN: We get a string build from the entries it the list and a seperator. string_result = create_separated_list(string_list) # THEN: We should have "Author 1 and Author 2" assert string_result == 'Author 1 and Author 2', 'The string should be u\'Author 1 and Author 2\'.' def create_separated_list_with_three_items_test(self): """ Test the create_separated_list function with a list of three items """ with patch('openlp.core.lib.Qt') as mocked_qt, patch('openlp.core.lib.translate') as mocked_translate: # GIVEN: A list with a string and the mocked Qt module. mocked_qt.PYQT_VERSION_STR = '4.8' mocked_qt.qVersion.return_value = '4.7' # Always return the untranslated string. mocked_translate.side_effect = lambda module, string_to_translate, comment: string_to_translate string_list = ['Author 1', 'Author 2', 'Author 3'] # WHEN: We get a string build from the entries it the list and a seperator. string_result = create_separated_list(string_list) # THEN: We should have "Author 1, Author 2, and Author 3" assert string_result == 'Author 1, Author 2, and Author 3', 'The string should be u\'Author 1, ' \ 'Author 2, and Author 3\'.' OpenLP-2.4/tests/functional/openlp_core_lib/test_mediamanageritem.py0000644000175000017500000001307712657640340025122 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.mediamanageritem package. """ from unittest import TestCase from openlp.core.lib import MediaManagerItem from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestMediaManagerItem(TestCase, TestMixin): """ Test the MediaManagerItem class """ def setUp(self): """ Mock out stuff for all the tests """ self.setup_patcher = patch('openlp.core.lib.mediamanageritem.MediaManagerItem._setup') self.mocked_setup = self.setup_patcher.start() self.addCleanup(self.setup_patcher.stop) @patch(u'openlp.core.lib.mediamanageritem.Settings') @patch(u'openlp.core.lib.mediamanageritem.MediaManagerItem.on_preview_click') def on_double_clicked_test(self, mocked_on_preview_click, MockedSettings): """ Test that when an item is double-clicked then the item is previewed """ # GIVEN: A setting to enable "Double-click to go live" and a media manager item mocked_settings = MagicMock() mocked_settings.value.return_value = False MockedSettings.return_value = mocked_settings mmi = MediaManagerItem(None) # WHEN: on_double_clicked() is called mmi.on_double_clicked() # THEN: on_preview_click() should have been called mocked_on_preview_click.assert_called_with() def required_icons_test(self): """ Test the default icons for plugins """ # GIVEN: A MediaManagerItem mmi = MediaManagerItem(None) # WHEN: Object is created mmi.required_icons() # THEN: Default icons should be populated self.assertFalse(mmi.has_import_icon, 'There should be no import icon by default') self.assertTrue(mmi.has_new_icon, 'By default a new icon should be present') self.assertFalse(mmi.has_file_icon, 'There should be no file icon by default') self.assertTrue(mmi.has_delete_icon, 'By default a delete icon should be present') self.assertFalse(mmi.add_to_service_item, 'There should be no add_to_service icon by default') @patch(u'openlp.core.lib.mediamanageritem.Settings') @patch(u'openlp.core.lib.mediamanageritem.MediaManagerItem.on_live_click') def on_double_clicked_go_live_test(self, mocked_on_live_click, MockedSettings): """ Test that when "Double-click to go live" is enabled that the item goes live """ # GIVEN: A setting to enable "Double-click to go live" and a media manager item mocked_settings = MagicMock() mocked_settings.value.side_effect = lambda x: x == 'advanced/double click live' MockedSettings.return_value = mocked_settings mmi = MediaManagerItem(None) # WHEN: on_double_clicked() is called mmi.on_double_clicked() # THEN: on_live_click() should have been called mocked_on_live_click.assert_called_with() @patch(u'openlp.core.lib.mediamanageritem.Settings') @patch(u'openlp.core.lib.mediamanageritem.MediaManagerItem.on_live_click') @patch(u'openlp.core.lib.mediamanageritem.MediaManagerItem.on_preview_click') def on_double_clicked_single_click_preview_test(self, mocked_on_preview_click, mocked_on_live_click, MockedSettings): """ Test that when "Single-click preview" is enabled then nothing happens on double-click """ # GIVEN: A setting to enable "Double-click to go live" and a media manager item mocked_settings = MagicMock() mocked_settings.value.side_effect = lambda x: x == 'advanced/single click preview' MockedSettings.return_value = mocked_settings mmi = MediaManagerItem(None) # WHEN: on_double_clicked() is called mmi.on_double_clicked() # THEN: on_live_click() should have been called self.assertEqual(0, mocked_on_live_click.call_count, u'on_live_click() should not have been called') self.assertEqual(0, mocked_on_preview_click.call_count, u'on_preview_click() should not have been called') OpenLP-2.4/tests/functional/openlp_core_lib/test_db.py0000644000175000017500000001761112657640340022214 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib package. """ import os from unittest import TestCase from sqlalchemy.pool import NullPool from sqlalchemy.orm.scoping import ScopedSession from sqlalchemy import MetaData from openlp.core.lib.db import init_db, get_upgrade_op, delete_database from tests.functional import patch, MagicMock class TestDB(TestCase): """ A test case for all the tests for the :mod:`~openlp.core.lib.db` module. """ def init_db_calls_correct_functions_test(self): """ Test that the init_db function makes the correct function calls """ # GIVEN: Mocked out SQLAlchemy calls and return objects, and an in-memory SQLite database URL with patch('openlp.core.lib.db.create_engine') as mocked_create_engine, \ patch('openlp.core.lib.db.MetaData') as MockedMetaData, \ patch('openlp.core.lib.db.sessionmaker') as mocked_sessionmaker, \ patch('openlp.core.lib.db.scoped_session') as mocked_scoped_session: mocked_engine = MagicMock() mocked_metadata = MagicMock() mocked_sessionmaker_object = MagicMock() mocked_scoped_session_object = MagicMock() mocked_create_engine.return_value = mocked_engine MockedMetaData.return_value = mocked_metadata mocked_sessionmaker.return_value = mocked_sessionmaker_object mocked_scoped_session.return_value = mocked_scoped_session_object db_url = 'sqlite://' # WHEN: We try to initialise the db session, metadata = init_db(db_url) # THEN: We should see the correct function calls mocked_create_engine.assert_called_with(db_url, poolclass=NullPool) MockedMetaData.assert_called_with(bind=mocked_engine) mocked_sessionmaker.assert_called_with(autoflush=True, autocommit=False, bind=mocked_engine) mocked_scoped_session.assert_called_with(mocked_sessionmaker_object) self.assertIs(session, mocked_scoped_session_object, 'The ``session`` object should be the mock') self.assertIs(metadata, mocked_metadata, 'The ``metadata`` object should be the mock') def init_db_defaults_test(self): """ Test that initialising an in-memory SQLite database via ``init_db`` uses the defaults """ # GIVEN: An in-memory SQLite URL db_url = 'sqlite://' # WHEN: The database is initialised through init_db session, metadata = init_db(db_url) # THEN: Valid session and metadata objects should be returned self.assertIsInstance(session, ScopedSession, 'The ``session`` object should be a ``ScopedSession`` instance') self.assertIsInstance(metadata, MetaData, 'The ``metadata`` object should be a ``MetaData`` instance') def get_upgrade_op_test(self): """ Test that the ``get_upgrade_op`` function creates a MigrationContext and an Operations object """ # GIVEN: Mocked out alembic classes and a mocked out SQLAlchemy session object with patch('openlp.core.lib.db.MigrationContext') as MockedMigrationContext, \ patch('openlp.core.lib.db.Operations') as MockedOperations: mocked_context = MagicMock() mocked_op = MagicMock() mocked_connection = MagicMock() MockedMigrationContext.configure.return_value = mocked_context MockedOperations.return_value = mocked_op mocked_session = MagicMock() mocked_session.bind.connect.return_value = mocked_connection # WHEN: get_upgrade_op is executed with the mocked session object op = get_upgrade_op(mocked_session) # THEN: The op object should be mocked_op, and the correction function calls should have been made self.assertIs(op, mocked_op, 'The return value should be the mocked object') mocked_session.bind.connect.assert_called_with() MockedMigrationContext.configure.assert_called_with(mocked_connection) MockedOperations.assert_called_with(mocked_context) def delete_database_without_db_file_name_test(self): """ Test that the ``delete_database`` function removes a database file, without the file name parameter """ # GIVEN: Mocked out AppLocation class and delete_file method, a test plugin name and a db location with patch('openlp.core.lib.db.AppLocation') as MockedAppLocation, \ patch('openlp.core.lib.db.delete_file') as mocked_delete_file: MockedAppLocation.get_section_data_path.return_value = 'test-dir' mocked_delete_file.return_value = True test_plugin = 'test' test_location = os.path.join('test-dir', test_plugin) # WHEN: delete_database is run without a database file result = delete_database(test_plugin) # THEN: The AppLocation.get_section_data_path and delete_file methods should have been called MockedAppLocation.get_section_data_path.assert_called_with(test_plugin) mocked_delete_file.assert_called_with(test_location) self.assertTrue(result, 'The result of delete_file should be True (was rigged that way)') def delete_database_with_db_file_name_test(self): """ Test that the ``delete_database`` function removes a database file, with the file name supplied """ # GIVEN: Mocked out AppLocation class and delete_file method, a test plugin name and a db location with patch('openlp.core.lib.db.AppLocation') as MockedAppLocation, \ patch('openlp.core.lib.db.delete_file') as mocked_delete_file: MockedAppLocation.get_section_data_path.return_value = 'test-dir' mocked_delete_file.return_value = False test_plugin = 'test' test_db_file = 'mydb.sqlite' test_location = os.path.join('test-dir', test_db_file) # WHEN: delete_database is run without a database file result = delete_database(test_plugin, test_db_file) # THEN: The AppLocation.get_section_data_path and delete_file methods should have been called MockedAppLocation.get_section_data_path.assert_called_with(test_plugin) mocked_delete_file.assert_called_with(test_location) self.assertFalse(result, 'The result of delete_file should be False (was rigged that way)') OpenLP-2.4/tests/functional/openlp_core_lib/test_serviceitem.py0000644000175000017500000004413412657640340024146 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib package. """ import os from unittest import TestCase from tests.functional import MagicMock, patch from tests.utils import assert_length, convert_file_service_item from openlp.core.common import Registry, md5_hash from openlp.core.lib import ItemCapabilities, ServiceItem, ServiceItemType VERSE = 'The Lord said to {r}Noah{/r}: \n'\ 'There\'s gonna be a {su}floody{/su}, {sb}floody{/sb}\n'\ 'The Lord said to {g}Noah{/g}:\n'\ 'There\'s gonna be a {st}floody{/st}, {it}floody{/it}\n'\ 'Get those children out of the muddy, muddy \n'\ '{r}C{/r}{b}h{/b}{bl}i{/bl}{y}l{/y}{g}d{/g}{pk}'\ 'r{/pk}{o}e{/o}{pp}n{/pp} of the Lord\n' FOOTER = ['Arky Arky (Unknown)', 'Public Domain', 'CCLI 123456'] TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'resources', 'service')) class TestServiceItem(TestCase): def setUp(self): """ Set up the Registry """ Registry.create() mocked_renderer = MagicMock() mocked_renderer.format_slide.return_value = [VERSE] Registry().register('renderer', mocked_renderer) Registry().register('image_manager', MagicMock()) def service_item_basic_test(self): """ Test the Service Item - basic test """ # GIVEN: A new service item # WHEN: A service item is created (without a plugin) service_item = ServiceItem(None) # THEN: We should get back a valid service item self.assertTrue(service_item.is_valid, 'The new service item should be valid') self.assertTrue(service_item.missing_frames(), 'There should not be any frames in the service item') def service_item_load_custom_from_service_test(self): """ Test the Service Item - adding a custom slide from a saved service """ # GIVEN: A new service item and a mocked add icon function service_item = ServiceItem(None) service_item.add_icon = MagicMock() # WHEN: We add a custom from a saved service line = convert_file_service_item(TEST_PATH, 'serviceitem_custom_1.osj') service_item.set_from_service(line) # THEN: We should get back a valid service item self.assertTrue(service_item.is_valid, 'The new service item should be valid') assert_length(0, service_item._display_frames, 'The service item should have no display frames') assert_length(5, service_item.capabilities, 'There should be 5 default custom item capabilities') # WHEN: We render the frames of the service item service_item.render(True) # THEN: The frames should also be valid self.assertEqual('Test Custom', service_item.get_display_title(), 'The title should be "Test Custom"') self.assertEqual(VERSE[:-1], service_item.get_frames()[0]['text'], 'The returned text matches the input, except the last line feed') self.assertEqual(VERSE.split('\n', 1)[0], service_item.get_rendered_frame(1), 'The first line has been returned') self.assertEqual('Slide 1', service_item.get_frame_title(0), '"Slide 1" has been returned as the title') self.assertEqual('Slide 2', service_item.get_frame_title(1), '"Slide 2" has been returned as the title') self.assertEqual('', service_item.get_frame_title(2), 'Blank has been returned as the title of slide 3') def service_item_load_image_from_service_test(self): """ Test the Service Item - adding an image from a saved service """ # GIVEN: A new service item and a mocked add icon function image_name = 'image_1.jpg' test_file = os.path.join(TEST_PATH, image_name) frame_array = {'path': test_file, 'title': image_name} service_item = ServiceItem(None) service_item.add_icon = MagicMock() # WHEN: adding an image from a saved Service and mocked exists line = convert_file_service_item(TEST_PATH, 'serviceitem_image_1.osj') with patch('openlp.core.ui.servicemanager.os.path.exists') as mocked_exists,\ patch('openlp.core.lib.serviceitem.create_thumb') as mocked_create_thumb,\ patch('openlp.core.lib.serviceitem.AppLocation.get_section_data_path') as \ mocked_get_section_data_path: mocked_exists.return_value = True mocked_get_section_data_path.return_value = os.path.normpath('/path/') service_item.set_from_service(line, TEST_PATH) # THEN: We should get back a valid service item self.assertTrue(service_item.is_valid, 'The new service item should be valid') self.assertEqual(os.path.normpath(test_file), os.path.normpath(service_item.get_rendered_frame(0)), 'The first frame should match the path to the image') self.assertEqual(frame_array, service_item.get_frames()[0], 'The return should match frame array1') self.assertEqual(test_file, service_item.get_frame_path(0), 'The frame path should match the full path to the image') self.assertEqual(image_name, service_item.get_frame_title(0), 'The frame title should match the image name') self.assertEqual(image_name, service_item.get_display_title(), 'The display title should match the first image name') self.assertTrue(service_item.is_image(), 'This service item should be of an "image" type') self.assertTrue(service_item.is_capable(ItemCapabilities.CanMaintain), 'This service item should be able to be Maintained') self.assertTrue(service_item.is_capable(ItemCapabilities.CanPreview), 'This service item should be able to be be Previewed') self.assertTrue(service_item.is_capable(ItemCapabilities.CanLoop), 'This service item should be able to be run in a can be made to Loop') self.assertTrue(service_item.is_capable(ItemCapabilities.CanAppend), 'This service item should be able to have new items added to it') def service_item_load_image_from_local_service_test(self): """ Test the Service Item - adding an image from a saved local service """ # GIVEN: A new service item and a mocked add icon function image_name1 = 'image_1.jpg' image_name2 = 'image_2.jpg' test_file1 = os.path.normpath(os.path.join('/home/openlp', image_name1)) test_file2 = os.path.normpath(os.path.join('/home/openlp', image_name2)) frame_array1 = {'path': test_file1, 'title': image_name1} frame_array2 = {'path': test_file2, 'title': image_name2} service_item = ServiceItem(None) service_item.add_icon = MagicMock() service_item2 = ServiceItem(None) service_item2.add_icon = MagicMock() # WHEN: adding an image from a saved Service and mocked exists line = convert_file_service_item(TEST_PATH, 'serviceitem_image_2.osj') line2 = convert_file_service_item(TEST_PATH, 'serviceitem_image_2.osj', 1) with patch('openlp.core.ui.servicemanager.os.path.exists') as mocked_exists, \ patch('openlp.core.lib.serviceitem.create_thumb') as mocked_create_thumb, \ patch('openlp.core.lib.serviceitem.AppLocation.get_section_data_path') as \ mocked_get_section_data_path: mocked_exists.return_value = True mocked_get_section_data_path.return_value = os.path.normpath('/path/') service_item2.set_from_service(line2) service_item.set_from_service(line) # THEN: We should get back a valid service item # This test is copied from service_item.py, but is changed since to conform to # new layout of service item. The layout use in serviceitem_image_2.osd is actually invalid now. self.assertTrue(service_item.is_valid, 'The first service item should be valid') self.assertTrue(service_item2.is_valid, 'The second service item should be valid') # These test will fail on windows due to the difference in folder seperators if os.name != 'nt': self.assertEqual(test_file1, service_item.get_rendered_frame(0), 'The first frame should match the path to the image') self.assertEqual(test_file2, service_item2.get_rendered_frame(0), 'The Second frame should match the path to the image') self.assertEqual(frame_array1, service_item.get_frames()[0], 'The return should match the frame array1') self.assertEqual(frame_array2, service_item2.get_frames()[0], 'The return should match the frame array2') self.assertEqual(test_file1, service_item.get_frame_path(0), 'The frame path should match the full path to the image') self.assertEqual(test_file2, service_item2.get_frame_path(0), 'The frame path should match the full path to the image') self.assertEqual(image_name1, service_item.get_frame_title(0), 'The 1st frame title should match the image name') self.assertEqual(image_name2, service_item2.get_frame_title(0), 'The 2nd frame title should match the image name') self.assertEqual(service_item.name, service_item.title.lower(), 'The plugin name should match the display title, as there are > 1 Images') self.assertTrue(service_item.is_image(), 'This service item should be of an "image" type') self.assertTrue(service_item.is_capable(ItemCapabilities.CanMaintain), 'This service item should be able to be Maintained') self.assertTrue(service_item.is_capable(ItemCapabilities.CanPreview), 'This service item should be able to be be Previewed') self.assertTrue(service_item.is_capable(ItemCapabilities.CanLoop), 'This service item should be able to be run in a can be made to Loop') self.assertTrue(service_item.is_capable(ItemCapabilities.CanAppend), 'This service item should be able to have new items added to it') def add_from_command_for_a_presentation_test(self): """ Test the Service Item - adding a presentation """ # GIVEN: A service item, a mocked icon and presentation data service_item = ServiceItem(None) presentation_name = 'test.pptx' image = MagicMock() display_title = 'DisplayTitle' notes = 'Note1\nNote2\n' frame = {'title': presentation_name, 'image': image, 'path': TEST_PATH, 'display_title': display_title, 'notes': notes} # WHEN: adding presentation to service_item service_item.add_from_command(TEST_PATH, presentation_name, image, display_title, notes) # THEN: verify that it is setup as a Command and that the frame data matches self.assertEqual(service_item.service_item_type, ServiceItemType.Command, 'It should be a Command') self.assertEqual(service_item.get_frames()[0], frame, 'Frames should match') def add_from_comamnd_without_display_title_and_notes_test(self): """ Test the Service Item - add from command, but not presentation """ # GIVEN: A new service item, a mocked icon and image data service_item = ServiceItem(None) image_name = 'test.img' image = MagicMock() frame = {'title': image_name, 'image': image, 'path': TEST_PATH, 'display_title': None, 'notes': None} # WHEN: adding image to service_item service_item.add_from_command(TEST_PATH, image_name, image) # THEN: verify that it is setup as a Command and that the frame data matches self.assertEqual(service_item.service_item_type, ServiceItemType.Command, 'It should be a Command') self.assertEqual(service_item.get_frames()[0], frame, 'Frames should match') @patch('openlp.core.lib.serviceitem.AppLocation.get_section_data_path') def add_from_command_for_a_presentation_thumb_test(self, mocked_get_section_data_path): """ Test the Service Item - adding a presentation, and updating the thumb path """ # GIVEN: A service item, a mocked AppLocation and presentation data mocked_get_section_data_path.return_value = os.path.join('mocked', 'section', 'path') service_item = ServiceItem(None) service_item.has_original_files = False service_item.name = 'presentations' presentation_name = 'test.pptx' thumb = os.path.join('tmp', 'test', 'thumb.png') display_title = 'DisplayTitle' notes = 'Note1\nNote2\n' expected_thumb_path = os.path.join('mocked', 'section', 'path', 'thumbnails', md5_hash(os.path.join(TEST_PATH, presentation_name).encode('utf-8')), 'thumb.png') frame = {'title': presentation_name, 'image': expected_thumb_path, 'path': TEST_PATH, 'display_title': display_title, 'notes': notes} # WHEN: adding presentation to service_item service_item.add_from_command(TEST_PATH, presentation_name, thumb, display_title, notes) # THEN: verify that it is setup as a Command and that the frame data matches self.assertEqual(service_item.service_item_type, ServiceItemType.Command, 'It should be a Command') self.assertEqual(service_item.get_frames()[0], frame, 'Frames should match') def service_item_load_optical_media_from_service_test(self): """ Test the Service Item - load an optical media item """ # GIVEN: A new service item and a mocked add icon function service_item = ServiceItem(None) service_item.add_icon = MagicMock() # WHEN: We load a serviceitem with optical media line = convert_file_service_item(TEST_PATH, 'serviceitem-dvd.osj') with patch('openlp.core.ui.servicemanager.os.path.exists') as mocked_exists: mocked_exists.return_value = True service_item.set_from_service(line) # THEN: We should get back a valid service item with optical media info self.assertTrue(service_item.is_valid, 'The service item should be valid') self.assertTrue(service_item.is_capable(ItemCapabilities.IsOptical), 'The item should be Optical') self.assertEqual(service_item.start_time, 654.375, 'Start time should be 654.375') self.assertEqual(service_item.end_time, 672.069, 'End time should be 672.069') self.assertEqual(service_item.media_length, 17.694, 'Media length should be 17.694') def service_item_load_song_and_audio_from_service_test(self): """ Test the Service Item - adding a song slide from a saved service """ # GIVEN: A new service item and a mocked add icon function service_item = ServiceItem(None) service_item.add_icon = MagicMock() # WHEN: We add a custom from a saved service line = convert_file_service_item(TEST_PATH, 'serviceitem-song-linked-audio.osj') service_item.set_from_service(line, '/test/') # THEN: We should get back a valid service item self.assertTrue(service_item.is_valid, 'The new service item should be valid') assert_length(0, service_item._display_frames, 'The service item should have no display frames') assert_length(7, service_item.capabilities, 'There should be 7 default custom item capabilities') # WHEN: We render the frames of the service item service_item.render(True) # THEN: The frames should also be valid self.assertEqual('Amazing Grace', service_item.get_display_title(), 'The title should be "Amazing Grace"') self.assertEqual(VERSE[:-1], service_item.get_frames()[0]['text'], 'The returned text matches the input, except the last line feed') self.assertEqual(VERSE.split('\n', 1)[0], service_item.get_rendered_frame(1), 'The first line has been returned') self.assertEqual('Amazing Grace! how sweet the s', service_item.get_frame_title(0), '"Amazing Grace! how sweet the s" has been returned as the title') self.assertEqual('’Twas grace that taught my hea', service_item.get_frame_title(1), '"’Twas grace that taught my hea" has been returned as the title') self.assertEqual('/test/amazing_grace.mp3', service_item.background_audio[0], '"/test/amazing_grace.mp3" should be in the background_audio list') OpenLP-2.4/tests/functional/openlp_core_lib/__init__.py0000644000175000017500000000310512657640340022320 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Module-level functions for the functional test suite """ OpenLP-2.4/tests/functional/openlp_core_lib/test_ui.py0000644000175000017500000003004212657640340022235 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.ui package. """ from PyQt5 import QtCore, QtGui, QtWidgets from unittest import TestCase from openlp.core.common import UiStrings, translate from openlp.core.lib.ui import add_welcome_page, create_button_box, create_horizontal_adjusting_combo_box, \ create_button, create_action, create_valign_selection_widgets, find_and_set_in_combo_box, create_widget_action, \ set_case_insensitive_completer from tests.functional import MagicMock, patch class TestUi(TestCase): """ Test the functions in the ui module """ def add_welcome_page_test(self): """ Test appending a welcome page to a wizard """ # GIVEN: A wizard wizard = QtWidgets.QWizard() # WHEN: A welcome page has been added to the wizard add_welcome_page(wizard, ':/wizards/wizard_firsttime.bmp') # THEN: The wizard should have one page with a pixmap. self.assertEqual(1, len(wizard.pageIds()), 'The wizard should have one page.') self.assertIsInstance(wizard.page(0).pixmap(QtWidgets.QWizard.WatermarkPixmap), QtGui.QPixmap) def create_button_box_test(self): """ Test creating a button box for a dialog """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create the button box with five buttons btnbox = create_button_box(dialog, 'my_btns', ['ok', 'save', 'cancel', 'close', 'defaults']) # THEN: We should get a QDialogButtonBox with five buttons self.assertIsInstance(btnbox, QtWidgets.QDialogButtonBox) self.assertEqual(5, len(btnbox.buttons())) # WHEN: We create the button box with a custom button btnbox = create_button_box(dialog, 'my_btns', None, [QtWidgets.QPushButton('Custom')]) # THEN: We should get a QDialogButtonBox with one button self.assertIsInstance(btnbox, QtWidgets.QDialogButtonBox) self.assertEqual(1, len(btnbox.buttons())) # WHEN: We create the button box with a custom button and a custom role btnbox = create_button_box(dialog, 'my_btns', None, [(QtWidgets.QPushButton('Help'), QtWidgets.QDialogButtonBox.HelpRole)]) # THEN: We should get a QDialogButtonBox with one button with a certain role self.assertIsInstance(btnbox, QtWidgets.QDialogButtonBox) self.assertEqual(1, len(btnbox.buttons())) self.assertEqual(QtWidgets.QDialogButtonBox.HelpRole, btnbox.buttonRole(btnbox.buttons()[0])) def create_horizontal_adjusting_combo_box_test(self): """ Test creating a horizontal adjusting combo box """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create the combobox combo = create_horizontal_adjusting_combo_box(dialog, 'combo1') # THEN: We should get a ComboBox self.assertIsInstance(combo, QtWidgets.QComboBox) self.assertEqual('combo1', combo.objectName()) self.assertEqual(QtWidgets.QComboBox.AdjustToMinimumContentsLength, combo.sizeAdjustPolicy()) def create_button_test(self): """ Test creating a button """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create the button btn = create_button(dialog, 'my_btn') # THEN: We should get a button with a name self.assertIsInstance(btn, QtWidgets.QPushButton) self.assertEqual('my_btn', btn.objectName()) self.assertTrue(btn.isEnabled()) # WHEN: We create a button with some attributes btn = create_button(dialog, 'my_btn', text='Hello', tooltip='How are you?', enabled=False) # THEN: We should get a button with those attributes self.assertIsInstance(btn, QtWidgets.QPushButton) self.assertEqual('Hello', btn.text()) self.assertEqual('How are you?', btn.toolTip()) self.assertFalse(btn.isEnabled()) # WHEN: We create a toolbutton btn = create_button(dialog, 'my_btn', btn_class='toolbutton') # THEN: We should get a toolbutton self.assertIsInstance(btn, QtWidgets.QToolButton) self.assertEqual('my_btn', btn.objectName()) self.assertTrue(btn.isEnabled()) def create_action_test(self): """ Test creating an action """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create an action action = create_action(dialog, 'my_action') # THEN: We should get a QAction self.assertIsInstance(action, QtWidgets.QAction) self.assertEqual('my_action', action.objectName()) # WHEN: We create an action with some properties action = create_action(dialog, 'my_action', text='my text', icon=':/wizards/wizard_firsttime.bmp', tooltip='my tooltip', statustip='my statustip') # THEN: These properties should be set self.assertIsInstance(action, QtWidgets.QAction) self.assertEqual('my text', action.text()) self.assertIsInstance(action.icon(), QtGui.QIcon) self.assertEqual('my tooltip', action.toolTip()) self.assertEqual('my statustip', action.statusTip()) def create_action_on_mac_osx_test(self): """ Test creating an action on OS X calls the correct method """ # GIVEN: A dialog and a mocked out is_macosx() method to always return True with patch('openlp.core.lib.ui.is_macosx') as mocked_is_macosx, \ patch('openlp.core.lib.ui.QtWidgets.QAction') as MockedQAction: mocked_is_macosx.return_value = True mocked_action = MagicMock() MockedQAction.return_value = mocked_action dialog = QtWidgets.QDialog() # WHEN: An action is created create_action(dialog, 'my_action') # THEN: setIconVisibleInMenu should be called mocked_action.setIconVisibleInMenu.assert_called_with(False) def create_action_not_on_mac_osx_test(self): """ Test creating an action on something other than OS X doesn't call the method """ # GIVEN: A dialog and a mocked out is_macosx() method to always return True with patch('openlp.core.lib.ui.is_macosx') as mocked_is_macosx, \ patch('openlp.core.lib.ui.QtWidgets.QAction') as MockedQAction: mocked_is_macosx.return_value = False mocked_action = MagicMock() MockedQAction.return_value = mocked_action dialog = QtWidgets.QDialog() # WHEN: An action is created create_action(dialog, 'my_action') # THEN: setIconVisibleInMenu should not be called self.assertEqual(0, mocked_action.setIconVisibleInMenu.call_count, 'setIconVisibleInMenu should not have been called') def create_checked_disabled_invisible_action_test(self): """ Test that an invisible, disabled, checked action is created correctly """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create an action with some properties action = create_action(dialog, 'my_action', checked=True, enabled=False, visible=False) # THEN: These properties should be set self.assertTrue(action.isChecked(), 'The action should be checked') self.assertFalse(action.isEnabled(), 'The action should be disabled') self.assertFalse(action.isVisible(), 'The action should be invisble') def create_action_separator_test(self): """ Test creating an action as separator """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create an action as a separator action = create_action(dialog, 'my_action', separator=True) # THEN: The action should be a separator self.assertTrue(action.isSeparator(), 'The action should be a separator') def create_valign_selection_widgets_test(self): """ Test creating a combo box for valign selection """ # GIVEN: A dialog dialog = QtWidgets.QDialog() # WHEN: We create the widgets label, combo = create_valign_selection_widgets(dialog) # THEN: We should get a label and a combobox. self.assertEqual(translate('OpenLP.Ui', '&Vertical Align:'), label.text()) self.assertIsInstance(combo, QtWidgets.QComboBox) self.assertEqual(combo, label.buddy()) for text in [UiStrings().Top, UiStrings().Middle, UiStrings().Bottom]: self.assertTrue(combo.findText(text) >= 0) def find_and_set_in_combo_box_test(self): """ Test finding a string in a combo box and setting it as the selected item if present """ # GIVEN: A ComboBox combo = QtWidgets.QComboBox() combo.addItems(['One', 'Two', 'Three']) combo.setCurrentIndex(1) # WHEN: We call the method with a non-existing value and set_missing=False find_and_set_in_combo_box(combo, 'Four', set_missing=False) # THEN: The index should not have changed self.assertEqual(1, combo.currentIndex()) # WHEN: We call the method with a non-existing value find_and_set_in_combo_box(combo, 'Four') # THEN: The index should have been reset self.assertEqual(0, combo.currentIndex()) # WHEN: We call the method with the default behavior find_and_set_in_combo_box(combo, 'Three') # THEN: The index should have changed self.assertEqual(2, combo.currentIndex()) def create_widget_action_test(self): """ Test creating an action for a widget """ # GIVEN: A button button = QtWidgets.QPushButton() # WHEN: We call the function action = create_widget_action(button, 'some action') # THEN: The action should be returned self.assertIsInstance(action, QtWidgets.QAction) self.assertEqual(action.objectName(), 'some action') def set_case_insensitive_completer_test(self): """ Test setting a case insensitive completer on a widget """ # GIVEN: A QComboBox and a list of completion items line_edit = QtWidgets.QLineEdit() suggestions = ['one', 'Two', 'THRee', 'FOUR'] # WHEN: We call the function set_case_insensitive_completer(suggestions, line_edit) # THEN: The Combobox should have a completer which is case insensitive completer = line_edit.completer() self.assertIsInstance(completer, QtWidgets.QCompleter) self.assertEqual(completer.caseSensitivity(), QtCore.Qt.CaseInsensitive) OpenLP-2.4/tests/functional/openlp_core_lib/test_renderer.py0000644000175000017500000001565312657640340023441 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui.renderer package. """ from unittest import TestCase from PyQt5 import QtCore from openlp.core.common import Registry from openlp.core.lib import Renderer, ScreenList, ServiceItem, FormattingTags from openlp.core.lib.renderer import words_split, get_start_tags from tests.functional import MagicMock, patch SCREEN = { 'primary': False, 'number': 1, 'size': QtCore.QRect(0, 0, 1024, 768) } class TestRenderer(TestCase): def setUp(self): """ Set up the components need for all tests """ # Mocked out desktop object self.desktop = MagicMock() self.desktop.primaryScreen.return_value = SCREEN['primary'] self.desktop.screenCount.return_value = SCREEN['number'] self.desktop.screenGeometry.return_value = SCREEN['size'] self.screens = ScreenList.create(self.desktop) Registry.create() def tearDown(self): """ Delete QApplication. """ del self.screens def default_screen_layout_test(self): """ Test the default layout calculations """ # GIVEN: A new renderer instance. renderer = Renderer() # WHEN: given the default screen size has been created. # THEN: The renderer have created a default screen. self.assertEqual(renderer.width, 1024, 'The base renderer should be a live controller') self.assertEqual(renderer.height, 768, 'The base renderer should be a live controller') self.assertEqual(renderer.screen_ratio, 0.75, 'The base renderer should be a live controller') self.assertEqual(renderer.footer_start, 691, 'The base renderer should be a live controller') @patch('openlp.core.lib.renderer.FormattingTags.get_html_tags') def get_start_tags_test(self, mocked_get_html_tags): """ Test the get_start_tags() method """ # GIVEN: A new renderer instance. Broken raw_text (missing closing tags). given_raw_text = '{st}{r}Text text text' expected_tuple = ('{st}{r}Text text text{/r}{/st}', '{st}{r}', '') mocked_get_html_tags.return_value = [{'temporary': False, 'end tag': '{/r}', 'desc': 'Red', 'start html': '', 'end html': '', 'start tag': '{r}', 'protected': True}, {'temporary': False, 'end tag': '{/st}', 'desc': 'Bold', 'start html': '', 'end html': '', 'start tag': '{st}', 'protected': True}] # WHEN: The renderer converts the start tags result = get_start_tags(given_raw_text) # THEN: Check if the correct tuple is returned. self.assertEqual(result, expected_tuple), 'A tuple should be returned containing the text with correct ' \ 'tags, the opening tags, and the opening html tags.' def word_split_test(self): """ Test the word_split() method """ # GIVEN: A line of text given_line = 'beginning asdf \n end asdf' expected_words = ['beginning', 'asdf', 'end', 'asdf'] # WHEN: Split the line based on word split rules result_words = words_split(given_line) # THEN: The word lists should be the same. self.assertListEqual(result_words, expected_words) def format_slide_logical_split_test(self): """ Test that a line with text and a logic break does not break the renderer just returns the input """ # GIVEN: A line of with a space text and the logical split renderer = Renderer() renderer.empty_height = 480 given_line = 'a\n[---]\nb' expected_words = ['a
[---]
b'] service_item = ServiceItem(None) # WHEN: Split the line based on word split rules result_words = renderer.format_slide(given_line, service_item) # THEN: The word lists should be the same. self.assertListEqual(result_words, expected_words) def format_slide_blank_before_split_test(self): """ Test that a line with blanks before the logical split at handled """ # GIVEN: A line of with a space before the logical split renderer = Renderer() renderer.empty_height = 480 given_line = '\n [---]\n' expected_words = ['
[---]'] service_item = ServiceItem(None) # WHEN: Split the line based on word split rules result_words = renderer.format_slide(given_line, service_item) # THEN: The blanks have been removed. self.assertListEqual(result_words, expected_words) def format_slide_blank_after_split_test(self): """ Test that a line with blanks before the logical split at handled """ # GIVEN: A line of with a space after the logical split renderer = Renderer() renderer.empty_height = 480 given_line = '\n[---] \n' expected_words = ['
[---] '] service_item = ServiceItem(None) # WHEN: Split the line based on word split rules result_words = renderer.format_slide(given_line, service_item) # THEN: The blanks have been removed. self.assertListEqual(result_words, expected_words) OpenLP-2.4/tests/functional/openlp_core_lib/test_projector_pjlink1.py0000644000175000017500000000612112657640340025260 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2015 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.projector.pjlink1 package. """ from unittest import TestCase from openlp.core.lib.projector.pjlink1 import PJLink1 from tests.functional import patch from tests.resources.projector.data import TEST_PIN, TEST_SALT, TEST_CONNECT_AUTHENTICATE pjlink_test = PJLink1(name='test', ip='127.0.0.1', pin=TEST_PIN, no_poll=True) class TestPJLink(TestCase): """ Tests for the PJLink module """ @patch.object(pjlink_test, 'readyRead') @patch.object(pjlink_test, 'send_command') @patch.object(pjlink_test, 'waitForReadyRead') @patch('openlp.core.common.qmd5_hash') def authenticated_connection_call_test(self, mock_qmd5_hash, mock_waitForReadyRead, mock_send_command, mock_readyRead): """ Fix for projector connect with PJLink authentication exception. Ticket 92187. """ # GIVEN: Test object pjlink = pjlink_test # WHEN: Calling check_login with authentication request: pjlink.check_login(data=TEST_CONNECT_AUTHENTICATE) # THEN: Should have called qmd5_hash self.assertTrue(mock_qmd5_hash.called_with(TEST_SALT, "Connection request should have been called with TEST_SALT")) self.assertTrue(mock_qmd5_hash.called_with(TEST_PIN, "Connection request should have been called with TEST_PIN")) OpenLP-2.4/tests/functional/openlp_core_lib/test_image_manager.py0000644000175000017500000002241712657640340024403 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.ui package. """ import os import time from threading import Lock from unittest import TestCase from PyQt5 import QtGui from openlp.core.common import Registry from openlp.core.lib import ImageManager, ScreenList from openlp.core.lib.imagemanager import Priority from tests.functional import patch from tests.helpers.testmixin import TestMixin TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'resources')) class TestImageManager(TestCase, TestMixin): def setUp(self): """ Create the UI """ Registry.create() self.setup_application() ScreenList.create(self.app.desktop()) self.image_manager = ImageManager() self.lock = Lock() self.sleep_time = 0.1 def tearDown(self): """ Delete all the C++ objects at the end so that we don't have a segfault """ del self.app def basic_image_manager_test(self): """ Test the Image Manager setup basic functionality """ # GIVEN: the an image add to the image manager full_path = os.path.normpath(os.path.join(TEST_PATH, 'church.jpg')) self.image_manager.add_image(full_path, 'church.jpg', None) # WHEN the image is retrieved image = self.image_manager.get_image(full_path, 'church.jpg') # THEN returned record is a type of image self.assertEqual(isinstance(image, QtGui.QImage), True, 'The returned object should be a QImage') # WHEN: The image bytes are requested. byte_array = self.image_manager.get_image_bytes(full_path, 'church.jpg') # THEN: Type should be a str. self.assertEqual(isinstance(byte_array, str), True, 'The returned object should be a str') # WHEN the image is retrieved has not been loaded # THEN a KeyError is thrown with self.assertRaises(KeyError) as context: self.image_manager.get_image(TEST_PATH, 'church1.jpg') self.assertNotEquals(context.exception, '', 'KeyError exception should have been thrown for missing image') def different_dimension_image_test(self): """ Test the Image Manager with dimensions """ # GIVEN: add an image with specific dimensions full_path = os.path.normpath(os.path.join(TEST_PATH, 'church.jpg')) self.image_manager.add_image(full_path, 'church.jpg', None, 80, 80) # WHEN: the image is retrieved image = self.image_manager.get_image(full_path, 'church.jpg', 80, 80) # THEN: The return should be of type image self.assertEqual(isinstance(image, QtGui.QImage), True, 'The returned object should be a QImage') # WHEN: adding the same image with different dimensions self.image_manager.add_image(full_path, 'church.jpg', None, 100, 100) # THEN: the cache should contain two pictures self.assertEqual(len(self.image_manager._cache), 2, 'Image manager should consider two dimensions of the same picture as different') # WHEN: adding the same image with first dimensions self.image_manager.add_image(full_path, 'church.jpg', None, 80, 80) # THEN: the cache should still contain only two pictures self.assertEqual(len(self.image_manager._cache), 2, 'Same dimensions should not be added again') # WHEN: calling with correct image, but wrong dimensions with self.assertRaises(KeyError) as context: self.image_manager.get_image(full_path, 'church.jpg', 120, 120) self.assertNotEquals(context.exception, '', 'KeyError exception should have been thrown for missing dimension') def process_cache_test(self): """ Test the process_cache method """ with patch('openlp.core.lib.imagemanager.resize_image') as mocked_resize_image, \ patch('openlp.core.lib.imagemanager.image_to_byte') as mocked_image_to_byte: # GIVEN: Mocked functions mocked_resize_image.side_effect = self.mocked_resize_image mocked_image_to_byte.side_effect = self.mocked_image_to_byte image1 = 'church.jpg' image2 = 'church2.jpg' image3 = 'church3.jpg' image4 = 'church4.jpg' # WHEN: Add the images. Then get the lock (=queue can not be processed). self.lock.acquire() self.image_manager.add_image(TEST_PATH, image1, None) self.image_manager.add_image(TEST_PATH, image2, None) # THEN: All images have been added to the queue, and only the first image is not be in the list anymore, but # is being processed (see mocked methods/functions). # Note: Priority.Normal means, that the resize_image() was not completed yet (because afterwards the # # priority is adjusted to Priority.Lowest). self.assertEqual(self.get_image_priority(image1), Priority.Normal, "image1's priority should be 'Priority.Normal'") self.assertEqual(self.get_image_priority(image2), Priority.Normal, "image2's priority should be 'Priority.Normal'") # WHEN: Add more images. self.image_manager.add_image(TEST_PATH, image3, None) self.image_manager.add_image(TEST_PATH, image4, None) # Allow the queue to process. self.lock.release() # Request some "data". image_bytes = self.image_manager.get_image_bytes(TEST_PATH, image4) image_object = self.image_manager.get_image(TEST_PATH, image3) # Now the mocked methods/functions do not have to sleep anymore. self.sleep_time = 0 # Wait for the queue to finish. while not self.image_manager._conversion_queue.empty(): time.sleep(0.1) # Because empty() is not reliable, wait a litte; just to make sure. time.sleep(0.1) # THEN: The images' priority reflect how they were processed. self.assertEqual(self.image_manager._conversion_queue.qsize(), 0, "The queue should be empty.") self.assertEqual(self.get_image_priority(image1), Priority.Lowest, "The image should have not been requested (=Lowest)") self.assertEqual(self.get_image_priority(image2), Priority.Lowest, "The image should have not been requested (=Lowest)") self.assertEqual(self.get_image_priority(image3), Priority.Low, "Only the QImage should have been requested (=Low).") self.assertEqual(self.get_image_priority(image4), Priority.Urgent, "The image bytes should have been requested (=Urgent).") def get_image_priority(self, image): """ This is a help method to get the priority of the given image out of the image_manager's cache. NOTE: This requires, that the image has been added to the image manager using the *TEST_PATH*. :param image: The name of the image. E. g. ``image1`` """ return self.image_manager._cache[(TEST_PATH, image, -1, -1)].priority def mocked_resize_image(self, *args): """ This is a mocked method, so that we can control the work flow of the image manager. """ self.lock.acquire() self.lock.release() # The sleep time is adjusted in the test case. time.sleep(self.sleep_time) return QtGui.QImage() def mocked_image_to_byte(self, *args): """ This is a mocked method, so that we can control the work flow of the image manager. """ self.lock.acquire() self.lock.release() # The sleep time is adjusted in the test case. time.sleep(self.sleep_time) return '' OpenLP-2.4/tests/functional/openlp_core_lib/test_screen.py0000644000175000017500000000670212657640340023105 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.screenlist package. """ from unittest import TestCase from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry from openlp.core.lib import ScreenList from tests.functional import MagicMock SCREEN = { 'primary': False, 'number': 1, 'size': QtCore.QRect(0, 0, 1024, 768) } class TestScreenList(TestCase): def setUp(self): """ Set up the components need for all tests. """ # Mocked out desktop object self.desktop = MagicMock() self.desktop.primaryScreen.return_value = SCREEN['primary'] self.desktop.screenCount.return_value = SCREEN['number'] self.desktop.screenGeometry.return_value = SCREEN['size'] self.application = QtWidgets.QApplication.instance() Registry.create() self.application.setOrganizationName('OpenLP-tests') self.application.setOrganizationDomain('openlp.org') self.screens = ScreenList.create(self.desktop) def tearDown(self): """ Delete QApplication. """ del self.screens del self.application def add_desktop_test(self): """ Test the ScreenList.screen_count_changed method to check if new monitors are detected by OpenLP. """ # GIVEN: The screen list at its current size old_screen_count = len(self.screens.screen_list) # WHEN: We add a new screen self.desktop.screenCount.return_value = SCREEN['number'] + 1 self.screens.screen_count_changed(old_screen_count) # THEN: The screen should have been added and the screens should be identical new_screen_count = len(self.screens.screen_list) self.assertEqual(old_screen_count + 1, new_screen_count, 'The new_screens list should be bigger') self.assertEqual(SCREEN, self.screens.screen_list.pop(), 'The 2nd screen should be identical to the first screen') OpenLP-2.4/tests/functional/openlp_core_lib/test_file_dialog.py0000644000175000017500000000711212657640340024060 0ustar raoulraoul""" Package to test the openlp.core.lib.filedialog package. """ from unittest import TestCase from openlp.core.common import UiStrings from openlp.core.lib.filedialog import FileDialog from tests.functional import MagicMock, call, patch class TestFileDialog(TestCase): """ Test the functions in the :mod:`filedialog` module. """ def setUp(self): self.os_patcher = patch('openlp.core.lib.filedialog.os') self.qt_gui_patcher = patch('openlp.core.lib.filedialog.QtWidgets') self.ui_strings_patcher = patch('openlp.core.lib.filedialog.UiStrings') self.mocked_os = self.os_patcher.start() self.mocked_qt_gui = self.qt_gui_patcher.start() self.mocked_ui_strings = self.ui_strings_patcher.start() self.mocked_parent = MagicMock() def tearDown(self): self.os_patcher.stop() self.qt_gui_patcher.stop() self.ui_strings_patcher.stop() def get_open_file_names_canceled_test(self): """ Test that FileDialog.getOpenFileNames() returns and empty QStringList when QFileDialog is canceled (returns an empty QStringList) """ self.mocked_os.reset_mock() # GIVEN: An empty QStringList as a return value from QFileDialog.getOpenFileNames self.mocked_qt_gui.QFileDialog.getOpenFileNames.return_value = ([], []) # WHEN: FileDialog.getOpenFileNames is called result = FileDialog.getOpenFileNames(self.mocked_parent) # THEN: The returned value should be an empty QStringList and os.path.exists should not have been called assert not self.mocked_os.path.exists.called self.assertEqual(result, [], 'FileDialog.getOpenFileNames should return and empty list when QFileDialog.getOpenFileNames ' 'is canceled') def returned_file_list_test(self): """ Test that FileDialog.getOpenFileNames handles a list of files properly when QFileList.getOpenFileNames returns a good file name, a url encoded file name and a non-existing file """ self.mocked_os.rest_mock() self.mocked_qt_gui.reset_mock() # GIVEN: A List of known values as a return value from QFileDialog.getOpenFileNames and a list of valid file # names. self.mocked_qt_gui.QFileDialog.getOpenFileNames.return_value = ([ '/Valid File', '/url%20encoded%20file%20%231', '/non-existing'], []) self.mocked_os.path.exists.side_effect = lambda file_name: file_name in [ '/Valid File', '/url encoded file #1'] self.mocked_ui_strings().FileNotFound = 'File Not Found' self.mocked_ui_strings().FileNotFoundMessage = 'File %s not found.\nPlease try selecting it individually.' # WHEN: FileDialog.getOpenFileNames is called result = FileDialog.getOpenFileNames(self.mocked_parent) # THEN: os.path.exists should have been called with known args. QmessageBox.information should have been # called. The returned result should correlate with the input. call_list = [call('/Valid File'), call('/url%20encoded%20file%20%231'), call('/url encoded file #1'), call('/non-existing'), call('/non-existing')] self.mocked_os.path.exists.assert_has_calls(call_list) self.mocked_qt_gui.QMessageBox.information.assert_called_with( self.mocked_parent, 'File Not Found', 'File /non-existing not found.\nPlease try selecting it individually.') self.assertEqual(result, ['/Valid File', '/url encoded file #1'], 'The returned file list is incorrect') OpenLP-2.4/tests/functional/openlp_core_lib/test_pluginmanager.py0000644000175000017500000005007412657640340024460 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.lib.pluginmanager package. """ from unittest import TestCase from openlp.core.common import Registry, Settings from openlp.core.lib.pluginmanager import PluginManager from openlp.core.lib import PluginStatus from tests.functional import MagicMock class TestPluginManager(TestCase): """ Test the PluginManager class """ def setUp(self): """ Some pre-test setup required. """ self.mocked_main_window = MagicMock() self.mocked_main_window.file_import_menu.return_value = None self.mocked_main_window.file_export_menu.return_value = None self.mocked_main_window.file_export_menu.return_value = None self.mocked_settings_form = MagicMock() Registry.create() Registry().register('service_list', MagicMock()) Registry().register('main_window', self.mocked_main_window) Registry().register('settings_form', self.mocked_settings_form) def hook_media_manager_with_disabled_plugin_test(self): """ Test running the hook_media_manager() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_media_manager() plugin_manager.hook_media_manager() # THEN: The create_media_manager_item() method should have been called self.assertEqual(0, mocked_plugin.create_media_manager_item.call_count, 'The create_media_manager_item() method should not have been called.') def hook_media_manager_with_active_plugin_test(self): """ Test running the hook_media_manager() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_media_manager() plugin_manager.hook_media_manager() # THEN: The create_media_manager_item() method should have been called mocked_plugin.create_media_manager_item.assert_called_with() def hook_settings_tabs_with_disabled_plugin_and_no_form_test(self): """ Test running the hook_settings_tabs() method with a disabled plugin and no form """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_settings_tabs() plugin_manager.hook_settings_tabs() # THEN: The hook_settings_tabs() method should have been called self.assertEqual(0, mocked_plugin.create_media_manager_item.call_count, 'The create_media_manager_item() method should not have been called.') def hook_settings_tabs_with_disabled_plugin_and_mocked_form_test(self): """ Test running the hook_settings_tabs() method with a disabled plugin and a mocked form """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] mocked_settings_form = MagicMock() # Replace the autoloaded plugin with the version for testing in real code this would error mocked_settings_form.plugin_manager = plugin_manager # WHEN: We run hook_settings_tabs() plugin_manager.hook_settings_tabs() # THEN: The create_settings_tab() method should not have been called, but the plugins lists should be the same self.assertEqual(0, mocked_plugin.create_settings_tab.call_count, 'The create_media_manager_item() method should not have been called.') self.assertEqual(mocked_settings_form.plugin_manager.plugins, plugin_manager.plugins, 'The plugins on the settings form should be the same as the plugins in the plugin manager') def hook_settings_tabs_with_active_plugin_and_mocked_form_test(self): """ Test running the hook_settings_tabs() method with an active plugin and a mocked settings form """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] mocked_settings_form = MagicMock() # Replace the autoloaded plugin with the version for testing in real code this would error mocked_settings_form.plugin_manager = plugin_manager # WHEN: We run hook_settings_tabs() plugin_manager.hook_settings_tabs() # THEN: The create_media_manager_item() method should have been called with the mocked settings form self.assertEqual(1, mocked_plugin.create_settings_tab.call_count, 'The create_media_manager_item() method should have been called once.') self.assertEqual(plugin_manager.plugins, mocked_settings_form.plugin_manager.plugins, 'The plugins on the settings form should be the same as the plugins in the plugin manager') def hook_settings_tabs_with_active_plugin_and_no_form_test(self): """ Test running the hook_settings_tabs() method with an active plugin and no settings form """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_settings_tabs() plugin_manager.hook_settings_tabs() # THEN: The create_settings_tab() method should have been called mocked_plugin.create_settings_tab.assert_called_with(self.mocked_settings_form) def hook_import_menu_with_disabled_plugin_test(self): """ Test running the hook_import_menu() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_import_menu() plugin_manager.hook_import_menu() # THEN: The create_media_manager_item() method should have been called self.assertEqual(0, mocked_plugin.add_import_menu_item.call_count, 'The add_import_menu_item() method should not have been called.') def hook_import_menu_with_active_plugin_test(self): """ Test running the hook_import_menu() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_import_menu() plugin_manager.hook_import_menu() # THEN: The add_import_menu_item() method should have been called mocked_plugin.add_import_menu_item.assert_called_with(self.mocked_main_window.file_import_menu) def hook_export_menu_with_disabled_plugin_test(self): """ Test running the hook_export_menu() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_export_menu() plugin_manager.hook_export_menu() # THEN: The add_export_menu_item() method should not have been called self.assertEqual(0, mocked_plugin.add_export_menu_item.call_count, 'The add_export_menu_item() method should not have been called.') def hook_export_menu_with_active_plugin_test(self): """ Test running the hook_export_menu() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_export_menu() plugin_manager.hook_export_menu() # THEN: The add_export_menu_item() method should have been called mocked_plugin.add_export_menu_item.assert_called_with(self.mocked_main_window.file_export_menu) def hook_upgrade_plugin_settings_with_disabled_plugin_test(self): """ Test running the hook_upgrade_plugin_settings() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] settings = Settings() # WHEN: We run hook_upgrade_plugin_settings() plugin_manager.hook_upgrade_plugin_settings(settings) # THEN: The upgrade_settings() method should not have been called self.assertEqual(0, mocked_plugin.upgrade_settings.call_count, 'The upgrade_settings() method should not have been called.') def hook_upgrade_plugin_settings_with_active_plugin_test(self): """ Test running the hook_upgrade_plugin_settings() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] settings = Settings() # WHEN: We run hook_upgrade_plugin_settings() plugin_manager.hook_upgrade_plugin_settings(settings) # THEN: The add_export_menu_item() method should have been called mocked_plugin.upgrade_settings.assert_called_with(settings) def hook_tools_menu_with_disabled_plugin_test(self): """ Test running the hook_tools_menu() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_tools_menu() plugin_manager.hook_tools_menu() # THEN: The add_tools_menu_item() method should have been called self.assertEqual(0, mocked_plugin.add_tools_menu_item.call_count, 'The add_tools_menu_item() method should not have been called.') def hook_tools_menu_with_active_plugin_test(self): """ Test running the hook_tools_menu() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run hook_tools_menu() plugin_manager.hook_tools_menu() # THEN: The add_tools_menu_item() method should have been called mocked_plugin.add_tools_menu_item.assert_called_with(self.mocked_main_window.tools_menu) def initialise_plugins_with_disabled_plugin_test(self): """ Test running the initialise_plugins() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled mocked_plugin.is_active.return_value = False plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run initialise_plugins() plugin_manager.initialise_plugins() # THEN: The is_active() method should have been called, and initialise() method should NOT have been called mocked_plugin.is_active.assert_called_with() self.assertEqual(0, mocked_plugin.initialise.call_count, 'The initialise() method should not have been called.') def initialise_plugins_with_active_plugin_test(self): """ Test running the initialise_plugins() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active mocked_plugin.is_active.return_value = True plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run initialise_plugins() plugin_manager.initialise_plugins() # THEN: The is_active() and initialise() methods should have been called mocked_plugin.is_active.assert_called_with() mocked_plugin.initialise.assert_called_with() def finalise_plugins_with_disabled_plugin_test(self): """ Test running the finalise_plugins() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled mocked_plugin.is_active.return_value = False plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run finalise_plugins() plugin_manager.finalise_plugins() # THEN: The is_active() method should have been called, and initialise() method should NOT have been called mocked_plugin.is_active.assert_called_with() self.assertEqual(0, mocked_plugin.finalise.call_count, 'The finalise() method should not have been called.') def finalise_plugins_with_active_plugin_test(self): """ Test running the finalise_plugins() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active mocked_plugin.is_active.return_value = True plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run finalise_plugins() plugin_manager.finalise_plugins() # THEN: The is_active() and finalise() methods should have been called mocked_plugin.is_active.assert_called_with() mocked_plugin.finalise.assert_called_with() def get_plugin_by_name_does_not_exist_test(self): """ Test running the get_plugin_by_name() method to find a plugin that does not exist """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.name = 'Mocked Plugin' plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run finalise_plugins() result = plugin_manager.get_plugin_by_name('Missing Plugin') # THEN: The is_active() and finalise() methods should have been called self.assertIsNone(result, 'The result for get_plugin_by_name should be None') def get_plugin_by_name_exists_test(self): """ Test running the get_plugin_by_name() method to find a plugin that exists """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.name = 'Mocked Plugin' plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run finalise_plugins() result = plugin_manager.get_plugin_by_name('Mocked Plugin') # THEN: The is_active() and finalise() methods should have been called self.assertEqual(result, mocked_plugin, 'The result for get_plugin_by_name should be the mocked plugin') def new_service_created_with_disabled_plugin_test(self): """ Test running the new_service_created() method with a disabled plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Disabled mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Disabled mocked_plugin.is_active.return_value = False plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run finalise_plugins() plugin_manager.new_service_created() # THEN: The isActive() method should have been called, and initialise() method should NOT have been called mocked_plugin.is_active.assert_called_with() self.assertEqual(0, mocked_plugin.new_service_created.call_count, 'The new_service_created() method should not have been called.') def new_service_created_with_active_plugin_test(self): """ Test running the new_service_created() method with an active plugin """ # GIVEN: A PluginManager instance and a list with a mocked up plugin whose status is set to Active mocked_plugin = MagicMock() mocked_plugin.status = PluginStatus.Active mocked_plugin.is_active.return_value = True plugin_manager = PluginManager() plugin_manager.plugins = [mocked_plugin] # WHEN: We run new_service_created() plugin_manager.new_service_created() # THEN: The is_active() and finalise() methods should have been called mocked_plugin.is_active.assert_called_with() mocked_plugin.new_service_created.assert_called_with() OpenLP-2.4/tests/functional/openlp_core_utils/0000755000175000017500000000000012657640341020603 5ustar raoulraoulOpenLP-2.4/tests/functional/openlp_core_utils/test_db.py0000644000175000017500000000774312657640340022613 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.utils.db package. """ from tempfile import mkdtemp from unittest import TestCase import gc import os import shutil import sqlalchemy import time from openlp.core.utils.db import drop_column, drop_columns from openlp.core.lib.db import init_db, get_upgrade_op from tests.utils.constants import TEST_RESOURCES_PATH class TestUtilsDBFunctions(TestCase): def setUp(self): """ Create temp folder for keeping db file """ self.tmp_folder = mkdtemp() db_path = os.path.join(TEST_RESOURCES_PATH, 'songs', 'songs-1.9.7.sqlite') self.db_tmp_path = os.path.join(self.tmp_folder, 'songs-1.9.7.sqlite') shutil.copyfile(db_path, self.db_tmp_path) db_url = 'sqlite:///' + self.db_tmp_path self.session, metadata = init_db(db_url) self.op = get_upgrade_op(self.session) def tearDown(self): """ Clean up """ self.session.close() self.session = None gc.collect() retries = 0 while retries < 5: try: if os.path.exists(self.tmp_folder): shutil.rmtree(self.tmp_folder) break except: time.sleep(1) retries += 1 def delete_column_test(self): """ Test deleting a single column in a table """ # GIVEN: A temporary song db # WHEN: Deleting a columns in a table drop_column(self.op, 'songs', 'song_book_id') # THEN: The column should have been deleted meta = sqlalchemy.MetaData(bind=self.op.get_bind()) meta.reflect() columns = meta.tables['songs'].columns for column in columns: if column.name == 'song_book_id': self.fail("The column 'song_book_id' should have been deleted.") def delete_columns_test(self): """ Test deleting multiple columns in a table """ # GIVEN: A temporary song db # WHEN: Deleting a columns in a table drop_columns(self.op, 'songs', ['song_book_id', 'song_number']) # THEN: The columns should have been deleted meta = sqlalchemy.MetaData(bind=self.op.get_bind()) meta.reflect() columns = meta.tables['songs'].columns for column in columns: if column.name == 'song_book_id' or column.name == 'song_number': self.fail("The column '%s' should have been deleted." % column.name) OpenLP-2.4/tests/functional/openlp_core_utils/__init__.py0000644000175000017500000000301012657640340022705 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### OpenLP-2.4/tests/functional/openlp_core_utils/test_utils.py0000644000175000017500000005635412657640340023370 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Functional tests to test the AppLocation class and related methods. """ import os from unittest import TestCase from openlp.core.utils import clean_filename, delete_file, get_filesystem_encoding, get_locale_key, \ get_natural_key, split_filename, _get_user_agent, get_web_page, get_uno_instance, add_actions from tests.functional import MagicMock, patch class TestUtils(TestCase): """ A test suite to test out various methods around the AppLocation class. """ def add_actions_empty_list_test(self): """ Test that no actions are added when the list is empty """ # GIVEN: a mocked action list, and an empty list mocked_target = MagicMock() empty_list = [] # WHEN: The empty list is added to the mocked target add_actions(mocked_target, empty_list) # THEN: The add method on the mocked target is never called self.assertEqual(0, mocked_target.addSeparator.call_count, 'addSeparator method should not have been called') self.assertEqual(0, mocked_target.addAction.call_count, 'addAction method should not have been called') def add_actions_none_action_test(self): """ Test that a separator is added when a None action is in the list """ # GIVEN: a mocked action list, and a list with None in it mocked_target = MagicMock() separator_list = [None] # WHEN: The list is added to the mocked target add_actions(mocked_target, separator_list) # THEN: The addSeparator method is called, but the addAction method is never called mocked_target.addSeparator.assert_called_with() self.assertEqual(0, mocked_target.addAction.call_count, 'addAction method should not have been called') def add_actions_add_action_test(self): """ Test that an action is added when a valid action is in the list """ # GIVEN: a mocked action list, and a list with an action in it mocked_target = MagicMock() action_list = ['action'] # WHEN: The list is added to the mocked target add_actions(mocked_target, action_list) # THEN: The addSeparator method is not called, and the addAction method is called self.assertEqual(0, mocked_target.addSeparator.call_count, 'addSeparator method should not have been called') mocked_target.addAction.assert_called_with('action') def add_actions_action_and_none_test(self): """ Test that an action and a separator are added when a valid action and None are in the list """ # GIVEN: a mocked action list, and a list with an action and None in it mocked_target = MagicMock() action_list = ['action', None] # WHEN: The list is added to the mocked target add_actions(mocked_target, action_list) # THEN: The addSeparator method is called, and the addAction method is called mocked_target.addSeparator.assert_called_with() mocked_target.addAction.assert_called_with('action') def get_filesystem_encoding_sys_function_not_called_test(self): """ Test the get_filesystem_encoding() function does not call the sys.getdefaultencoding() function """ # GIVEN: sys.getfilesystemencoding returns "cp1252" with patch('openlp.core.utils.sys.getfilesystemencoding') as mocked_getfilesystemencoding, \ patch('openlp.core.utils.sys.getdefaultencoding') as mocked_getdefaultencoding: mocked_getfilesystemencoding.return_value = 'cp1252' # WHEN: get_filesystem_encoding() is called result = get_filesystem_encoding() # THEN: getdefaultencoding should have been called mocked_getfilesystemencoding.assert_called_with() self.assertEqual(0, mocked_getdefaultencoding.called, 'getdefaultencoding should not have been called') self.assertEqual('cp1252', result, 'The result should be "cp1252"') def get_filesystem_encoding_sys_function_is_called_test(self): """ Test the get_filesystem_encoding() function calls the sys.getdefaultencoding() function """ # GIVEN: sys.getfilesystemencoding returns None and sys.getdefaultencoding returns "utf-8" with patch('openlp.core.utils.sys.getfilesystemencoding') as mocked_getfilesystemencoding, \ patch('openlp.core.utils.sys.getdefaultencoding') as mocked_getdefaultencoding: mocked_getfilesystemencoding.return_value = None mocked_getdefaultencoding.return_value = 'utf-8' # WHEN: get_filesystem_encoding() is called result = get_filesystem_encoding() # THEN: getdefaultencoding should have been called mocked_getfilesystemencoding.assert_called_with() mocked_getdefaultencoding.assert_called_with() self.assertEqual('utf-8', result, 'The result should be "utf-8"') def split_filename_with_file_path_test(self): """ Test the split_filename() function with a path to a file """ # GIVEN: A path to a file. if os.name == 'nt': file_path = 'C:\\home\\user\\myfile.txt' wanted_result = ('C:\\home\\user', 'myfile.txt') else: file_path = '/home/user/myfile.txt' wanted_result = ('/home/user', 'myfile.txt') with patch('openlp.core.utils.os.path.isfile') as mocked_is_file: mocked_is_file.return_value = True # WHEN: Split the file name. result = split_filename(file_path) # THEN: A tuple should be returned. self.assertEqual(wanted_result, result, 'A tuple with the dir and file name should have been returned') def split_filename_with_dir_path_test(self): """ Test the split_filename() function with a path to a directory """ # GIVEN: A path to a dir. if os.name == 'nt': file_path = 'C:\\home\\user\\mydir' wanted_result = ('C:\\home\\user\\mydir', '') else: file_path = '/home/user/mydir' wanted_result = ('/home/user/mydir', '') with patch('openlp.core.utils.os.path.isfile') as mocked_is_file: mocked_is_file.return_value = False # WHEN: Split the file name. result = split_filename(file_path) # THEN: A tuple should be returned. self.assertEqual(wanted_result, result, 'A two-entry tuple with the directory and file name (empty) should have been returned.') def clean_filename_test(self): """ Test the clean_filename() function """ # GIVEN: A invalid file name and the valid file name. invalid_name = 'A_file_with_invalid_characters_[\\/:\*\?"<>\|\+\[\]%].py' wanted_name = 'A_file_with_invalid_characters______________________.py' # WHEN: Clean the name. result = clean_filename(invalid_name) # THEN: The file name should be cleaned. self.assertEqual(wanted_name, result, 'The file name should not contain any special characters.') def delete_file_no_path_test(self): """ Test the delete_file function when called with out a valid path """ # GIVEN: A blank path # WEHN: Calling delete_file result = delete_file('') # THEN: delete_file should return False self.assertFalse(result, "delete_file should return False when called with ''") def delete_file_path_success_test(self): """ Test the delete_file function when it successfully deletes a file """ # GIVEN: A mocked os which returns True when os.path.exists is called with patch('openlp.core.utils.os', **{'path.exists.return_value': False}): # WHEN: Calling delete_file with a file path result = delete_file('path/file.ext') # THEN: delete_file should return True self.assertTrue(result, 'delete_file should return True when it successfully deletes a file') def delete_file_path_no_file_exists_test(self): """ Test the delete_file function when the file to remove does not exist """ # GIVEN: A mocked os which returns False when os.path.exists is called with patch('openlp.core.utils.os', **{'path.exists.return_value': False}): # WHEN: Calling delete_file with a file path result = delete_file('path/file.ext') # THEN: delete_file should return True self.assertTrue(result, 'delete_file should return True when the file doesnt exist') def delete_file_path_exception_test(self): """ Test the delete_file function when os.remove raises an exception """ # GIVEN: A mocked os which returns True when os.path.exists is called and raises an OSError when os.remove is # called. with patch('openlp.core.utils.os', **{'path.exists.return_value': True, 'path.exists.side_effect': OSError}), \ patch('openlp.core.utils.log') as mocked_log: # WHEN: Calling delete_file with a file path result = delete_file('path/file.ext') # THEN: delete_file should log and exception and return False self.assertEqual(mocked_log.exception.call_count, 1) self.assertFalse(result, 'delete_file should return False when os.remove raises an OSError') def get_locale_key_test(self): """ Test the get_locale_key(string) function """ with patch('openlp.core.utils.languagemanager.LanguageManager.get_language') as mocked_get_language: # GIVEN: The language is German # 0x00C3 (A with diaresis) should be sorted as "A". 0x00DF (sharp s) should be sorted as "ss". mocked_get_language.return_value = 'de' unsorted_list = ['Auszug', 'Aushang', '\u00C4u\u00DFerung'] # WHEN: We sort the list and use get_locale_key() to generate the sorting keys sorted_list = sorted(unsorted_list, key=get_locale_key) # THEN: We get a properly sorted list self.assertEqual(['Aushang', '\u00C4u\u00DFerung', 'Auszug'], sorted_list, 'Strings should be sorted properly') def get_natural_key_test(self): """ Test the get_natural_key(string) function """ with patch('openlp.core.utils.languagemanager.LanguageManager.get_language') as mocked_get_language: # GIVEN: The language is English (a language, which sorts digits before letters) mocked_get_language.return_value = 'en' unsorted_list = ['item 10a', 'item 3b', '1st item'] # WHEN: We sort the list and use get_natural_key() to generate the sorting keys sorted_list = sorted(unsorted_list, key=get_natural_key) # THEN: We get a properly sorted list self.assertEqual(['1st item', 'item 3b', 'item 10a'], sorted_list, 'Numbers should be sorted naturally') def get_uno_instance_pipe_test(self): """ Test that when the UNO connection type is "pipe" the resolver is given the "pipe" URI """ # GIVEN: A mock resolver object and UNO_CONNECTION_TYPE is "pipe" mock_resolver = MagicMock() # WHEN: get_uno_instance() is called get_uno_instance(mock_resolver) # THEN: the resolve method is called with the correct argument mock_resolver.resolve.assert_called_with('uno:pipe,name=openlp_pipe;urp;StarOffice.ComponentContext') def get_uno_instance_socket_test(self): """ Test that when the UNO connection type is other than "pipe" the resolver is given the "socket" URI """ # GIVEN: A mock resolver object and UNO_CONNECTION_TYPE is "socket" mock_resolver = MagicMock() # WHEN: get_uno_instance() is called get_uno_instance(mock_resolver, 'socket') # THEN: the resolve method is called with the correct argument mock_resolver.resolve.assert_called_with('uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext') def get_user_agent_linux_test(self): """ Test that getting a user agent on Linux returns a user agent suitable for Linux """ with patch('openlp.core.utils.sys') as mocked_sys: # GIVEN: The system is Linux mocked_sys.platform = 'linux2' # WHEN: We call _get_user_agent() user_agent = _get_user_agent() # THEN: The user agent is a Linux (or ChromeOS) user agent result = 'Linux' in user_agent or 'CrOS' in user_agent self.assertTrue(result, 'The user agent should be a valid Linux user agent') def get_user_agent_windows_test(self): """ Test that getting a user agent on Windows returns a user agent suitable for Windows """ with patch('openlp.core.utils.sys') as mocked_sys: # GIVEN: The system is Linux mocked_sys.platform = 'win32' # WHEN: We call _get_user_agent() user_agent = _get_user_agent() # THEN: The user agent is a Linux (or ChromeOS) user agent self.assertIn('Windows', user_agent, 'The user agent should be a valid Windows user agent') def get_user_agent_macos_test(self): """ Test that getting a user agent on OS X returns a user agent suitable for OS X """ with patch('openlp.core.utils.sys') as mocked_sys: # GIVEN: The system is Linux mocked_sys.platform = 'darwin' # WHEN: We call _get_user_agent() user_agent = _get_user_agent() # THEN: The user agent is a Linux (or ChromeOS) user agent self.assertIn('Mac OS X', user_agent, 'The user agent should be a valid OS X user agent') def get_user_agent_default_test(self): """ Test that getting a user agent on a non-Linux/Windows/OS X platform returns the default user agent """ with patch('openlp.core.utils.sys') as mocked_sys: # GIVEN: The system is Linux mocked_sys.platform = 'freebsd' # WHEN: We call _get_user_agent() user_agent = _get_user_agent() # THEN: The user agent is a Linux (or ChromeOS) user agent self.assertIn('NetBSD', user_agent, 'The user agent should be the default user agent') def get_web_page_no_url_test(self): """ Test that sending a URL of None to the get_web_page method returns None """ # GIVEN: A None url test_url = None # WHEN: We try to get the test URL result = get_web_page(test_url) # THEN: None should be returned self.assertIsNone(result, 'The return value of get_web_page should be None') def get_web_page_test(self): """ Test that the get_web_page method works correctly """ with patch('openlp.core.utils.urllib.request.Request') as MockRequest, \ patch('openlp.core.utils.urllib.request.urlopen') as mock_urlopen, \ patch('openlp.core.utils._get_user_agent') as mock_get_user_agent, \ patch('openlp.core.utils.Registry') as MockRegistry: # GIVEN: Mocked out objects and a fake URL mocked_request_object = MagicMock() MockRequest.return_value = mocked_request_object mocked_page_object = MagicMock() mock_urlopen.return_value = mocked_page_object mock_get_user_agent.return_value = 'user_agent' fake_url = 'this://is.a.fake/url' # WHEN: The get_web_page() method is called returned_page = get_web_page(fake_url) # THEN: The correct methods are called with the correct arguments and a web page is returned MockRequest.assert_called_with(fake_url) mocked_request_object.add_header.assert_called_with('User-Agent', 'user_agent') self.assertEqual(1, mocked_request_object.add_header.call_count, 'There should only be 1 call to add_header') mock_get_user_agent.assert_called_with() mock_urlopen.assert_called_with(mocked_request_object, timeout=30) mocked_page_object.geturl.assert_called_with() self.assertEqual(0, MockRegistry.call_count, 'The Registry() object should have never been called') self.assertEqual(mocked_page_object, returned_page, 'The returned page should be the mock object') def get_web_page_with_header_test(self): """ Test that adding a header to the call to get_web_page() adds the header to the request """ with patch('openlp.core.utils.urllib.request.Request') as MockRequest, \ patch('openlp.core.utils.urllib.request.urlopen') as mock_urlopen, \ patch('openlp.core.utils._get_user_agent') as mock_get_user_agent: # GIVEN: Mocked out objects, a fake URL and a fake header mocked_request_object = MagicMock() MockRequest.return_value = mocked_request_object mocked_page_object = MagicMock() mock_urlopen.return_value = mocked_page_object mock_get_user_agent.return_value = 'user_agent' fake_url = 'this://is.a.fake/url' fake_header = ('Fake-Header', 'fake value') # WHEN: The get_web_page() method is called returned_page = get_web_page(fake_url, header=fake_header) # THEN: The correct methods are called with the correct arguments and a web page is returned MockRequest.assert_called_with(fake_url) mocked_request_object.add_header.assert_called_with(fake_header[0], fake_header[1]) self.assertEqual(2, mocked_request_object.add_header.call_count, 'There should only be 2 calls to add_header') mock_get_user_agent.assert_called_with() mock_urlopen.assert_called_with(mocked_request_object, timeout=30) mocked_page_object.geturl.assert_called_with() self.assertEqual(mocked_page_object, returned_page, 'The returned page should be the mock object') def get_web_page_with_user_agent_in_headers_test(self): """ Test that adding a user agent in the header when calling get_web_page() adds that user agent to the request """ with patch('openlp.core.utils.urllib.request.Request') as MockRequest, \ patch('openlp.core.utils.urllib.request.urlopen') as mock_urlopen, \ patch('openlp.core.utils._get_user_agent') as mock_get_user_agent: # GIVEN: Mocked out objects, a fake URL and a fake header mocked_request_object = MagicMock() MockRequest.return_value = mocked_request_object mocked_page_object = MagicMock() mock_urlopen.return_value = mocked_page_object fake_url = 'this://is.a.fake/url' user_agent_header = ('User-Agent', 'OpenLP/2.2.0') # WHEN: The get_web_page() method is called returned_page = get_web_page(fake_url, header=user_agent_header) # THEN: The correct methods are called with the correct arguments and a web page is returned MockRequest.assert_called_with(fake_url) mocked_request_object.add_header.assert_called_with(user_agent_header[0], user_agent_header[1]) self.assertEqual(1, mocked_request_object.add_header.call_count, 'There should only be 1 call to add_header') self.assertEqual(0, mock_get_user_agent.call_count, '_get_user_agent should not have been called') mock_urlopen.assert_called_with(mocked_request_object, timeout=30) mocked_page_object.geturl.assert_called_with() self.assertEqual(mocked_page_object, returned_page, 'The returned page should be the mock object') def get_web_page_update_openlp_test(self): """ Test that passing "update_openlp" as true to get_web_page calls Registry().get('app').process_events() """ with patch('openlp.core.utils.urllib.request.Request') as MockRequest, \ patch('openlp.core.utils.urllib.request.urlopen') as mock_urlopen, \ patch('openlp.core.utils._get_user_agent') as mock_get_user_agent, \ patch('openlp.core.utils.Registry') as MockRegistry: # GIVEN: Mocked out objects, a fake URL mocked_request_object = MagicMock() MockRequest.return_value = mocked_request_object mocked_page_object = MagicMock() mock_urlopen.return_value = mocked_page_object mock_get_user_agent.return_value = 'user_agent' mocked_registry_object = MagicMock() mocked_application_object = MagicMock() mocked_registry_object.get.return_value = mocked_application_object MockRegistry.return_value = mocked_registry_object fake_url = 'this://is.a.fake/url' # WHEN: The get_web_page() method is called returned_page = get_web_page(fake_url, update_openlp=True) # THEN: The correct methods are called with the correct arguments and a web page is returned MockRequest.assert_called_with(fake_url) mocked_request_object.add_header.assert_called_with('User-Agent', 'user_agent') self.assertEqual(1, mocked_request_object.add_header.call_count, 'There should only be 1 call to add_header') mock_urlopen.assert_called_with(mocked_request_object, timeout=30) mocked_page_object.geturl.assert_called_with() mocked_registry_object.get.assert_called_with('application') mocked_application_object.process_events.assert_called_with() self.assertEqual(mocked_page_object, returned_page, 'The returned page should be the mock object') OpenLP-2.4/tests/functional/openlp_core_utils/test_actions.py0000644000175000017500000002501712657640340023660 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.utils.actions package. """ from unittest import TestCase from PyQt5 import QtGui, QtCore, QtWidgets from openlp.core.common import Settings from openlp.core.utils import ActionList from openlp.core.utils.actions import CategoryActionList from tests.functional import MagicMock from tests.helpers.testmixin import TestMixin class TestCategoryActionList(TestCase): def setUp(self): """ Create an instance and a few example actions. """ self.action1 = MagicMock() self.action1.text.return_value = 'first' self.action2 = MagicMock() self.action2.text.return_value = 'second' self.list = CategoryActionList() def tearDown(self): """ Clean up """ del self.list def contains_test(self): """ Test the __contains__() method """ # GIVEN: The list. # WHEN: Add an action self.list.append(self.action1) # THEN: The actions should (not) be in the list. self.assertTrue(self.action1 in self.list) self.assertFalse(self.action2 in self.list) def len_test(self): """ Test the __len__ method """ # GIVEN: The list. # WHEN: Do nothing. # THEN: Check the length. self.assertEqual(len(self.list), 0, "The length should be 0.") # GIVEN: The list. # WHEN: Append an action. self.list.append(self.action1) # THEN: Check the length. self.assertEqual(len(self.list), 1, "The length should be 1.") def append_test(self): """ Test the append() method """ # GIVEN: The list. # WHEN: Append an action. self.list.append(self.action1) self.list.append(self.action2) # THEN: Check if the actions are in the list and check if they have the correct weights. self.assertTrue(self.action1 in self.list) self.assertTrue(self.action2 in self.list) self.assertEqual(self.list.actions[0], (0, self.action1)) self.assertEqual(self.list.actions[1], (1, self.action2)) def add_test(self): """ Test the add() method """ # GIVEN: The list and weights. action1_weight = 42 action2_weight = 41 # WHEN: Add actions and their weights. self.list.add(self.action1, action1_weight) self.list.add(self.action2, action2_weight) # THEN: Check if they were added and have the specified weights. self.assertTrue(self.action1 in self.list) self.assertTrue(self.action2 in self.list) # Now check if action1 is second and action2 is first (due to their weights). self.assertEqual(self.list.actions[0], (41, self.action2)) self.assertEqual(self.list.actions[1], (42, self.action1)) def remove_test(self): """ Test the remove() method """ # GIVEN: The list self.list.append(self.action1) # WHEN: Delete an item from the list. self.list.remove(self.action1) # THEN: Now the element should not be in the list anymore. self.assertFalse(self.action1 in self.list) # THEN: Check if an exception is raised when trying to remove a not present action. self.assertRaises(ValueError, self.list.remove, self.action2) class TestActionList(TestCase, TestMixin): """ Test the ActionList class """ def setUp(self): """ Prepare the tests """ self.action_list = ActionList.get_instance() self.build_settings() self.settings = Settings() self.settings.beginGroup('shortcuts') def tearDown(self): """ Clean up """ self.settings.endGroup() self.destroy_settings() def test_add_action_same_parent(self): """ ActionList test - Tests the add_action method. The actions have the same parent, the same shortcuts and both have the QtCore.Qt.WindowShortcut shortcut context set. """ # GIVEN: Two actions with the same shortcuts. parent = QtCore.QObject() action1 = QtWidgets.QAction(parent) action1.setObjectName('action1') action_with_same_shortcuts1 = QtWidgets.QAction(parent) action_with_same_shortcuts1.setObjectName('action_with_same_shortcuts1') # Add default shortcuts to Settings class. default_shortcuts = { 'shortcuts/action1': [QtGui.QKeySequence(QtCore.Qt.Key_A), QtGui.QKeySequence(QtCore.Qt.Key_B)], 'shortcuts/action_with_same_shortcuts1': [QtGui.QKeySequence(QtCore.Qt.Key_B), QtGui.QKeySequence(QtCore.Qt.Key_A)] } Settings.extend_default_settings(default_shortcuts) # WHEN: Add the two actions to the action list. self.action_list.add_action(action1, 'example_category') self.action_list.add_action(action_with_same_shortcuts1, 'example_category') # Remove the actions again. self.action_list.remove_action(action1, 'example_category') self.action_list.remove_action(action_with_same_shortcuts1, 'example_category') # THEN: As both actions have the same shortcuts, they should be removed from one action. assert len(action1.shortcuts()) == 2, 'The action should have two shortcut assigned.' assert len(action_with_same_shortcuts1.shortcuts()) == 0, 'The action should not have a shortcut assigned.' def test_add_action_different_parent(self): """ ActionList test - Tests the add_action method. The actions have the different parent, the same shortcuts and both have the QtCore.Qt.WindowShortcut shortcut context set. """ # GIVEN: Two actions with the same shortcuts. parent = QtCore.QObject() action2 = QtWidgets.QAction(parent) action2.setObjectName('action2') second_parent = QtCore.QObject() action_with_same_shortcuts2 = QtWidgets.QAction(second_parent) action_with_same_shortcuts2.setObjectName('action_with_same_shortcuts2') # Add default shortcuts to Settings class. default_shortcuts = { 'shortcuts/action2': [QtGui.QKeySequence(QtCore.Qt.Key_C), QtGui.QKeySequence(QtCore.Qt.Key_D)], 'shortcuts/action_with_same_shortcuts2': [QtGui.QKeySequence(QtCore.Qt.Key_D), QtGui.QKeySequence(QtCore.Qt.Key_C)] } Settings.extend_default_settings(default_shortcuts) # WHEN: Add the two actions to the action list. self.action_list.add_action(action2, 'example_category') self.action_list.add_action(action_with_same_shortcuts2, 'example_category') # Remove the actions again. self.action_list.remove_action(action2, 'example_category') self.action_list.remove_action(action_with_same_shortcuts2, 'example_category') # THEN: As both actions have the same shortcuts, they should be removed from one action. assert len(action2.shortcuts()) == 2, 'The action should have two shortcut assigned.' assert len(action_with_same_shortcuts2.shortcuts()) == 0, 'The action should not have a shortcut assigned.' def test_add_action_different_context(self): """ ActionList test - Tests the add_action method. The actions have the different parent, the same shortcuts and both have the QtCore.Qt.WidgetShortcut shortcut context set. """ # GIVEN: Two actions with the same shortcuts. parent = QtCore.QObject() action3 = QtWidgets.QAction(parent) action3.setObjectName('action3') action3.setShortcutContext(QtCore.Qt.WidgetShortcut) second_parent = QtCore.QObject() action_with_same_shortcuts3 = QtWidgets.QAction(second_parent) action_with_same_shortcuts3.setObjectName('action_with_same_shortcuts3') action_with_same_shortcuts3.setShortcutContext(QtCore.Qt.WidgetShortcut) # Add default shortcuts to Settings class. default_shortcuts = { 'shortcuts/action3': [QtGui.QKeySequence(QtCore.Qt.Key_E), QtGui.QKeySequence(QtCore.Qt.Key_F)], 'shortcuts/action_with_same_shortcuts3': [QtGui.QKeySequence(QtCore.Qt.Key_E), QtGui.QKeySequence(QtCore.Qt.Key_F)] } Settings.extend_default_settings(default_shortcuts) # WHEN: Add the two actions to the action list. self.action_list.add_action(action3, 'example_category2') self.action_list.add_action(action_with_same_shortcuts3, 'example_category2') # Remove the actions again. self.action_list.remove_action(action3, 'example_category2') self.action_list.remove_action(action_with_same_shortcuts3, 'example_category2') # THEN: Both action should keep their shortcuts. assert len(action3.shortcuts()) == 2, 'The action should have two shortcut assigned.' assert len(action_with_same_shortcuts3.shortcuts()) == 2, 'The action should have two shortcuts assigned.' OpenLP-2.4/tests/functional/openlp_core_utils/test_init.py0000644000175000017500000001373612657640340023170 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.utils.actions package. """ from unittest import TestCase from openlp.core.common.settings import Settings from openlp.core.utils import VersionThread, get_uno_command from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin class TestInitFunctions(TestMixin, TestCase): def setUp(self): """ Create an instance and a few example actions. """ self.build_settings() def tearDown(self): """ Clean up """ self.destroy_settings() def version_thread_triggered_test(self): """ Test the version thread call does not trigger UI :return: """ # GIVEN: a equal version setup and the data is not today. mocked_main_window = MagicMock() Settings().setValue('core/last version test', '1950-04-01') # WHEN: We check to see if the version is different . with patch('PyQt5.QtCore.QThread'),\ patch('openlp.core.utils.get_application_version') as mocked_get_application_version: mocked_get_application_version.return_value = {'version': '1.0.0', 'build': '', 'full': '2.0.4'} version_thread = VersionThread(mocked_main_window) version_thread.run() # THEN: If the version has changed the main window is notified self.assertTrue(mocked_main_window.openlp_version_check.emit.called, 'The main windows should have been notified') def get_uno_command_libreoffice_command_exists_test(self): """ Test the ``get_uno_command`` function uses the libreoffice command when available. :return: """ # GIVEN: A patched 'which' method which returns a path when called with 'libreoffice' with patch('openlp.core.utils.which', **{'side_effect': lambda command: {'libreoffice': '/usr/bin/libreoffice'}[command]}): # WHEN: Calling get_uno_command result = get_uno_command() # THEN: The command 'libreoffice' should be called with the appropriate parameters self.assertEquals(result, 'libreoffice --nologo --norestore --minimized --nodefault --nofirststartwizard' ' "--accept=pipe,name=openlp_pipe;urp;"') def get_uno_command_only_soffice_command_exists_test(self): """ Test the ``get_uno_command`` function uses the soffice command when the libreoffice command is not available. :return: """ # GIVEN: A patched 'which' method which returns None when called with 'libreoffice' and a path when called with # 'soffice' with patch('openlp.core.utils.which', **{'side_effect': lambda command: {'libreoffice': None, 'soffice': '/usr/bin/soffice'}[command]}): # WHEN: Calling get_uno_command result = get_uno_command() # THEN: The command 'soffice' should be called with the appropriate parameters self.assertEquals(result, 'soffice --nologo --norestore --minimized --nodefault --nofirststartwizard' ' "--accept=pipe,name=openlp_pipe;urp;"') def get_uno_command_when_no_command_exists_test(self): """ Test the ``get_uno_command`` function raises an FileNotFoundError when neither the libreoffice or soffice commands are available. :return: """ # GIVEN: A patched 'which' method which returns None with patch('openlp.core.utils.which', **{'return_value': None}): # WHEN: Calling get_uno_command # THEN: a FileNotFoundError exception should be raised self.assertRaises(FileNotFoundError, get_uno_command) def get_uno_command_connection_type_test(self): """ Test the ``get_uno_command`` function when the connection type is anything other than pipe. :return: """ # GIVEN: A patched 'which' method which returns 'libreoffice' with patch('openlp.core.utils.which', **{'return_value': 'libreoffice'}): # WHEN: Calling get_uno_command with a connection type other than pipe result = get_uno_command('socket') # THEN: The connection parameters should be set for socket self.assertEqual(result, 'libreoffice --nologo --norestore --minimized --nodefault --nofirststartwizard' ' "--accept=socket,host=localhost,port=2002;urp;"') OpenLP-2.4/tests/functional/openlp_core_utils/test_first_time.py0000644000175000017500000000526012657640340024363 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Package to test the openlp.core.utils.__init__ package. """ from unittest import TestCase import urllib.request import urllib.error import urllib.parse from tests.functional import MagicMock, patch from tests.helpers.testmixin import TestMixin from openlp.core.utils import CONNECTION_TIMEOUT, CONNECTION_RETRIES, get_web_page class TestFirstTimeWizard(TestMixin, TestCase): """ Test First Time Wizard import functions """ def webpage_connection_retry_test(self): """ Test get_web_page will attempt CONNECTION_RETRIES+1 connections - bug 1409031 """ # GIVEN: Initial settings and mocks with patch.object(urllib.request, 'urlopen') as mocked_urlopen: mocked_urlopen.side_effect = ConnectionError # WHEN: A webpage is requested try: get_web_page(url='http://localhost') except: pass # THEN: urlopen should have been called CONNECTION_RETRIES + 1 count self.assertEquals(mocked_urlopen.call_count, CONNECTION_RETRIES + 1, 'get_web_page() should have tried {} times'.format(CONNECTION_RETRIES)) OpenLP-2.4/resources/0000755000175000017500000000000012657640341013564 5ustar raoulraoulOpenLP-2.4/resources/openlp.desktop0000755000175000017500000000052712657640340016462 0ustar raoulraoul[Desktop Entry] Categories=AudioVideo; Exec=openlp %F GenericName=Church lyrics projection Comment=Project lyrics, bible verses, media and more. Icon=openlp MimeType=application/x-openlp-service; Name=OpenLP StartupNotify=true Terminal=false Type=Application Keywords=projection,multimedia,videos,music,songs,worship X-KDE-SubstituteUID=false OpenLP-2.4/resources/i18n/0000755000175000017500000000000012657640341014343 5ustar raoulraoulOpenLP-2.4/resources/i18n/en_ZA.ts0000644000175000017500000153651312657640340015724 0ustar raoulraoul AlertsPlugin &Alert &Alert Show an alert message. Show an alert message. Alert name singular Alert Alerts name plural Alerts Alerts container title Alerts <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message Alert Message Alert &text: Alert &text: &New &New &Save &Save Displ&ay Displ&ay Display && Cl&ose Display && Cl&ose New Alert New Alert &Parameter: &Parameter: No Parameter Found No Parameter Found You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? No Placeholder Found No Placeholder Found The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. Alert message created and displayed. AlertsPlugin.AlertsTab Font Font Font name: Font name: Font color: Font color: Background color: Background color: Font size: Font size: Alert timeout: Alert timeout: BiblesPlugin &Bible &Bible Bible name singular Bible Bibles name plural Bibles Bibles container title Bibles No Book Found No Book Found No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Import a Bible. Import a Bible. Add a new Bible. Add a new Bible. Edit the selected Bible. Edit the selected Bible. Delete the selected Bible. Delete the selected Bible. Preview the selected Bible. Preview the selected Bible. Send the selected Bible live. Send the selected Bible live. Add the selected Bible to the service. Add the selected Bible to the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. &Upgrade older Bibles &Upgrade older Bibles Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. Genesis Genesis Exodus Exodus Leviticus Leviticus Numbers Numbers Deuteronomy Deuteronomy Joshua Joshua Judges Judges Ruth Ruth 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Kings 2 Kings 2 Kings 1 Chronicles 1 Chronicles 2 Chronicles 2 Chronicles Ezra Ezra Nehemiah Nehemiah Esther Esther Job Job Psalms Psalms Proverbs Proverbs Ecclesiastes Ecclesiastes Song of Solomon Song of Solomon Isaiah Isaiah Jeremiah Jeremiah Lamentations Lamentations Ezekiel Ezekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadiah Jonah Jonah Micah Micah Nahum Nahum Habakkuk Habakkuk Zephaniah Zephaniah Haggai Haggai Zechariah Zechariah Malachi Malachi Matthew Matthew Mark Mark Luke Luke John John Acts Acts Romans Romans 1 Corinthians 1 Corinthians 2 Corinthians 2 Corinthians Galatians Galatians Ephesians Ephesians Philippians Philippians Colossians Colossians 1 Thessalonians 1 Thessalonians 2 Thessalonians 2 Thessalonians 1 Timothy 1 Timothy 2 Timothy 2 Timothy Titus Titus Philemon Philemon Hebrews Hebrews James James 1 Peter 1 Peter 2 Peter 2 Peter 1 John 1 John 2 John 2 John 3 John 3 John Jude Jude Revelation Revelation Judith Judith Wisdom Wisdom Tobit Tobit Sirach Sirach Baruch Baruch 1 Maccabees 1 Maccabees 2 Maccabees 2 Maccabees 3 Maccabees 3 Maccabees 4 Maccabees 4 Maccabees Rest of Daniel Rest of Daniel Rest of Esther Rest of Esther Prayer of Manasses Prayer of Manasses Letter of Jeremiah Letter of Jeremiah Prayer of Azariah Prayer of Azariah Susanna Susanna Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verse verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verses - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse end BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. You need to specify a book name for "%s". You need to specify a book name for "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Duplicate Book Name Duplicate Book Name The Book Name "%s" has been entered more than once. The Book Name "%s" has been entered more than once. BiblesPlugin.BibleManager Scripture Reference Error Scripture Reference Error Web Bible cannot be used Web Bible cannot be used Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. No Bibles Available No Bibles Available Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Verse Display Only show new chapter numbers Only show new chapter numbers Bible theme: Bible theme: No Brackets No Brackets ( And ) ( And ) { And } { And } [ And ] [ And ] Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. Display second Bible verses Display second Bible verses Custom Scripture References Custom Scripture References Verse Separator: Verse Separator: Range Separator: Range Separator: List Separator: List Separator: End Mark: End Mark: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. English English Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Bible Language Bible Language Application Language Application Language Show verse numbers Show verse numbers BiblesPlugin.BookNameDialog Select Book Name Select Book Name Current name: Current name: Corresponding name: Corresponding name: Show Books From Show Books From Old Testament Old Testament New Testament New Testament Apocrypha Apocrypha The following book name cannot be matched up internally. Please select the corresponding name from the list. The following book name cannot be matched up internally. Please select the corresponding name from the list. BiblesPlugin.BookNameForm You need to select a book. You need to select a book. BiblesPlugin.CSVBible Importing books... %s Importing books... %s Importing verses... done. Importing verses... done. BiblesPlugin.EditBibleForm Bible Editor Bible Editor License Details License Details Version name: Version name: Copyright: Copyright: Permissions: Permissions: Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Global Settings Global Settings Bible Language Bible Language Application Language Application Language English English This is a Web Download Bible. It is not possible to customize the Book Names. This is a Web Download Bible. It is not possible to customise the Book Names. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. To use the customised book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Registering Bible and loading books... Registering Language... Registering Language... Importing %s... Importing <book name>... Importing %s... Download Error Download Error There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Parse Error Parse Error There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. BiblesPlugin.ImportWizardForm Bible Import Wizard Bible Import Wizard This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Web Download Web Download Location: Location: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bible: Download Options Download Options Server: Server: Username: Username: Password: Password: Proxy Server (Optional) Proxy Server (Optional) License Details License Details Set up the Bible's license details. Set up the Bible's license details. Version name: Version name: Copyright: Copyright: Please wait while your Bible is imported. Please wait while your Bible is imported. You need to specify a file with books of the Bible to use in the import. You need to specify a file with books of the Bible to use in the import. You need to specify a file of Bible verses to import. You need to specify a file of Bible verses to import. You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. Your Bible import failed. Your Bible import failed. CSV File CSV File Bibleserver Bibleserver Permissions: Permissions: Bible file: Bible file: Books file: Books file: Verses file: Verses file: Registering Bible... Registering Bible... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Click to download bible list Download bible list Download bible list Error during download Error during download An error occurred while downloading the list of bibles from %s. An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language Select Language OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Language: Language: BiblesPlugin.LanguageForm You need to choose a language. You need to choose a language. BiblesPlugin.MediaItem Quick Quick Find: Find: Book: Book: Chapter: Chapter: Verse: Verse: From: From: To: To: Text Search Text Search Second: Second: Scripture Reference Scripture Reference Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Bible not fully loaded. Bible not fully loaded. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Search Scripture Reference... Search Scripture Reference... Search Text... Search Text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Advanced Advanced BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Select a Backup Directory Bible Upgrade Wizard Bible Upgrade Wizard This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Select Backup Directory Select Backup Directory Please select a backup directory for your Bibles Please select a backup directory for your Bibles Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. Please select a backup location for your Bibles. Backup Directory: Backup Directory: There is no need to backup my Bibles There is no need to backup my Bibles Select Bibles Select Bibles Please select the Bibles to upgrade Please select the Bibles to upgrade Upgrading Upgrading Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... Download Error Download Error To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete , %s failed , %s failed Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s Upgrade failed. Upgrade failed. You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. Starting upgrade... Starting upgrade... There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Custom Slide Custom Slides name plural Custom Slides Custom Slides container title Custom Slides Load a new custom slide. Load a new custom slide. Import a custom slide. Import a custom slide. Add a new custom slide. Add a new custom slide. Edit the selected custom slide. Edit the selected custom slide. Delete the selected custom slide. Delete the selected custom slide. Preview the selected custom slide. Preview the selected custom slide. Send the selected custom slide live. Send the selected custom slide live. Add the selected custom slide to the service. Add the selected custom slide to the service. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display Custom Display Display footer Display footer Import missing custom slides from service files Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides Edit Custom Slides &Title: &Title: Add a new slide at bottom. Add a new slide at bottom. Edit the selected slide. Edit the selected slide. Edit all the slides at once. Edit all the slides at once. Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. The&me: The&me: &Credits: &Credits: You need to type in a title. You need to type in a title. Ed&it All Ed&it All Insert Slide Insert Slide You need to add at least one slide. You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide Edit Slide CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. Image name singular Image Images name plural Images Images container title Images Load a new image. Load a new image. Add a new image. Add a new image. Edit the selected image. Edit the selected image. Delete the selected image. Delete the selected image. Preview the selected image. Preview the selected image. Send the selected image live. Send the selected image live. Add the selected image to the service. Add the selected image to the service. ImagePlugin.AddGroupForm Add group Add group Parent group: Parent group: Group name: Group name: You need to type in a group name. You need to type in a group name. Could not add the new group. Could not add the new group. This group already exists. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Select Image Group Add images to group: Add images to group: No group No group Existing group Existing group New group New group ImagePlugin.ExceptionDialog Select Attachment Select Attachment ImagePlugin.MediaItem Select Image(s) Select Image(s) You must select an image to replace the background with. You must select an image to replace the background with. Missing Image(s) Missing Image(s) The following image(s) no longer exist: %s The following image(s) no longer exist: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. There was no display item to amend. There was no display item to amend. -- Top-level group -- -- Top-level group -- You must select an image or group to delete. You must select an image or group to delete. Remove group Remove group Are you sure you want to remove "%s" and everything in it? Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Visible background for images with aspect ratio different to screen. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. Media name singular Media Media name plural Media Media container title Media Load new media. Load new media. Add new media. Add new media. Edit the selected media. Edit the selected media. Delete the selected media. Delete the selected media. Preview the selected media. Preview the selected media. Send the selected media live. Send the selected media live. Add the selected media to the service. Add the selected media to the service. MediaPlugin.MediaClipSelector Select Media Clip Select Media Clip Source Source Media path: Media path: Select drive from list Select drive from list Load disc Load disc Track Details Track Details Title: Title: Audio track: Audio track: Subtitle track: Subtitle track: HH:mm:ss.z HH:mm:ss.z Clip Range Clip Range Start point: Start point: Set start point Set start point Jump to start point Jump to start point End point: End point: Set end point Set end point Jump to end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given No path was given Given path does not exists Given path does not exists An error happened during initialization of VLC player An error happened during initialization of VLC player VLC player failed playing the media VLC player failed playing the media CD not loaded correctly CD not loaded correctly The CD was not loaded correctly, please re-load and try again. The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Set name of mediaclip Name of mediaclip: Name of mediaclip: Enter a valid name or cancel Enter a valid name or cancel Invalid character Invalid character The name of the mediaclip must not contain the character ":" The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Select Media You must select a media file to delete. You must select a media file to delete. You must select a media file to replace the background with. You must select a media file to replace the background with. There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. Missing Media File Missing Media File The file %s no longer exists. The file %s no longer exists. Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) There was no display item to amend. There was no display item to amend. Unsupported File Unsupported File Use Player: Use Player: VLC player required VLC player required VLC player required for playback of optical devices VLC player required for playback of optical devices Load CD/DVD Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. The optical disc %s is no longer available. Mediaclip already saved Mediaclip already saved This mediaclip has already been saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden Allow media player to be overridden Start Live items automatically Start Live items automatically OPenLP.MainWindow &Projector Manager &Projector Manager OpenLP Image Files Image Files Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Backup Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! Backup of the data folder failed! A backup of the data folder has been created at %s A backup of the data folder has been created at %s Open Open OpenLP.AboutForm Credits Credits License License build %s build %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. Volunteer Volunteer Project Lead Project Lead Developers Developers Contributors Contributors Packagers Packagers Testers Testers Translators Translators Afrikaans (af) Afrikaans (af) Czech (cs) Czech (cs) Danish (da) Danish (da) German (de) German (de) Greek (el) Greek (el) English, United Kingdom (en_GB) English, United Kingdom (en_GB) English, South Africa (en_ZA) English, South Africa (en_ZA) Spanish (es) Spanish (es) Estonian (et) Estonian (et) Finnish (fi) Finnish (fi) French (fr) French (fr) Hungarian (hu) Hungarian (hu) Indonesian (id) Indonesian (id) Japanese (ja) Japanese (ja) Norwegian BokmÃ¥l (nb) Norwegian BokmÃ¥l (nb) Dutch (nl) Dutch (nl) Polish (pl) Polish (pl) Portuguese, Brazil (pt_BR) Portuguese, Brazil (pt_BR) Russian (ru) Russian (ru) Swedish (sv) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Chinese(China) (zh_CN) Documentation Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings UI Settings Number of recent files to display: Number of recent files to display: Remember active media manager tab on startup Remember active media manager tab on startup Double-click to send items straight to live Double-click to send items straight to live Expand new service items on creation Expand new service items on creation Enable application exit confirmation Enable application exit confirmation Mouse Cursor Mouse Cursor Hide mouse cursor when over display window Hide mouse cursor when over display window Default Image Default Image Background color: Background color: Image file: Image file: Open File Open File Advanced Advanced Preview items when clicked in Media Manager Preview items when clicked in Media Manager Browse for an image file to display. Browse for an image file to display. Revert to the default OpenLP logo. Revert to the default OpenLP logo. Default Service Name Default Service Name Enable default service name Enable default service name Date and Time: Date and Time: Monday Monday Tuesday Tuesday Wednesday Wednesday Friday Friday Saturday Saturday Sunday Sunday Now Now Time when usual service starts. Time when usual service starts. Name: Name: Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. Revert to the default service name "%s". Revert to the default service name "%s". Example: Example: Bypass X11 Window Manager Bypass X11 Window Manager Syntax error. Syntax error. Data Location Data Location Current path: Current path: Custom path: Custom path: Browse for new data file location. Browse for new data file location. Set the data location to the default. Set the data location to the default. Cancel Cancel Cancel OpenLP data directory location change. Cancel OpenLP data directory location change. Copy data to new location. Copy data to new location. Copy the OpenLP data files to the new location. Copy the OpenLP data files to the new location. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. Data Directory Error Data Directory Error Select Data Directory Location Select Data Directory Location Confirm Data Directory Change Confirm Data Directory Change Reset Data Directory Reset Data Directory Overwrite Existing Data Overwrite Existing Data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Thursday Thursday Display Workarounds Display Workarounds Use alternating row colours in lists Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required Restart Required This change will only take effect once OpenLP has been restarted. This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. Click to select a colour. OpenLP.DB RGB RGB Video Video Digital Digital Storage Storage Network Network RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Storage 1 Storage 2 Storage 2 Storage 3 Storage 3 Storage 4 Storage 4 Storage 5 Storage 5 Storage 6 Storage 6 Storage 7 Storage 7 Storage 8 Storage 8 Storage 9 Storage 9 Network 1 Network 1 Network 2 Network 2 Network 3 Network 3 Network 4 Network 4 Network 5 Network 5 Network 6 Network 6 Network 7 Network 7 Network 8 Network 8 Network 9 Network 9 OpenLP.ExceptionDialog Error Occurred Error Occurred Send E-Mail Send E-Mail Save to File Save to File Attach File Attach File Description characters to enter : %s Description characters to enter : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Save Crash Report Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) OpenLP.FileRenameForm File Rename File Rename New File Name: New File Name: File Copy File Copy OpenLP.FirstTimeLanguageForm Select Translation Select Translation Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. Translation: Translation: OpenLP.FirstTimeWizard Songs Songs First Time Wizard First Time Wizard Welcome to the First Time Wizard Welcome to the First Time Wizard Activate required Plugins Activate required Plugins Select the Plugins you wish to use. Select the Plugins you wish to use. Bible Bible Images Images Presentations Presentations Media (Audio and Video) Media (Audio and Video) Allow remote access Allow remote access Monitor Song Usage Monitor Song Usage Allow Alerts Allow Alerts Default Settings Default Settings Downloading %s... Downloading %s... Enabling selected plugins... Enabling selected plugins... No Internet Connection No Internet Connection Unable to detect an Internet connection. Unable to detect an Internet connection. Sample Songs Sample Songs Select and download public domain songs. Select and download public domain songs. Sample Bibles Sample Bibles Select and download free Bibles. Select and download free Bibles. Sample Themes Sample Themes Select and download sample themes. Select and download sample themes. Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. Default output display: Default output display: Select default theme: Select default theme: Starting configuration process... Starting configuration process... Setting Up And Downloading Setting Up And Downloading Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. Setting Up Setting Up Custom Slides Custom Slides Finish Finish No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Download Error Download Error There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Downloading Resource Index Please wait while the resource index is downloaded. Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Please wait while OpenLP downloads the resource index file... Downloading and Configuring Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Please wait while resources are downloaded and OpenLP is configured. Network Error Network Error There was a network error attempting to connect to retrieve initial configuration information There was a network error attempting to connect to retrieve initial configuration information Cancel Cancel Unable to download some files Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Configure Formatting Tags Description Description Tag Tag Start HTML Start HTML End HTML End HTML Default Formatting Default Formatting Custom Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error Validation Error Description is missing Description is missing Tag is missing Tag is missing Tag %s already defined. Tag %s already defined. Description %s already defined. Description %s already defined. Start tag %s is not valid HTML Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Red Black Black Blue Blue Yellow Yellow Green Green Pink Pink Orange Orange Purple Purple White White Superscript Superscript Subscript Subscript Paragraph Paragraph Bold Bold Italics Italics Underline Underline Break Break OpenLP.GeneralTab General General Monitors Monitors Select monitor for output display: Select monitor for output display: Display if a single screen Display if a single screen Application Startup Application Startup Show blank screen warning Show blank screen warning Automatically open the last service Automatically open the last service Show the splash screen Show the splash screen Application Settings Application Settings Prompt to save before starting a new service Prompt to save before starting a new service Automatically preview next item in service Automatically preview next item in service sec sec CCLI Details CCLI Details SongSelect username: SongSelect username: SongSelect password: SongSelect password: X X Y Y Height Height Width Width Check for updates to OpenLP Check for updates to OpenLP Unblank display when adding new live item Unblank display when adding new live item Timed slide interval: Timed slide interval: Background Audio Background Audio Start background audio paused Start background audio paused Service Item Slide Limits Service Item Slide Limits Override display position: Override display position: Repeat track list Repeat track list Behavior of next/previous on the last/first slide: Behaviour of next/previous on the last/first slide: &Remain on Slide &Remain on Slide &Wrap around &Wrap around &Move to next/previous service item &Move to next/previous service item OpenLP.LanguageManager Language Language Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. OpenLP.MainDisplay OpenLP Display OpenLP Display OpenLP.MainWindow &File &File &Import &Import &Export &Export &View &View M&ode M&ode &Tools &Tools &Settings &Settings &Language &Language &Help &Help Service Manager Service Manager Theme Manager Theme Manager Open an existing service. Open an existing service. Save the current service to disk. Save the current service to disk. Save Service As Save Service As Save the current service under a new name. Save the current service under a new name. E&xit E&xit Quit OpenLP Quit OpenLP &Theme &Theme &Configure OpenLP... &Configure OpenLP... &Media Manager &Media Manager Toggle Media Manager Toggle Media Manager Toggle the visibility of the media manager. Toggle the visibility of the media manager. &Theme Manager &Theme Manager Toggle Theme Manager Toggle Theme Manager Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. &Service Manager &Service Manager Toggle Service Manager Toggle Service Manager Toggle the visibility of the service manager. Toggle the visibility of the service manager. &Preview Panel &Preview Panel Toggle Preview Panel Toggle Preview Panel Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. &Live Panel &Live Panel Toggle Live Panel Toggle Live Panel Toggle the visibility of the live panel. Toggle the visibility of the live panel. List the Plugins List the Plugins &User Guide &User Guide &About &About More information about OpenLP More information about OpenLP &Online Help &Online Help &Web Site &Web Site Use the system language, if available. Use the system language, if available. Set the interface language to %s Set the interface language to %s Add &Tool... Add &Tool... Add an application to the list of tools. Add an application to the list of tools. &Default &Default Set the view mode back to the default. Set the view mode back to the default. &Setup &Setup Set the view mode to Setup. Set the view mode to Setup. &Live &Live Set the view mode to Live. Set the view mode to Live. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP Version Updated OpenLP Version Updated OpenLP Main Display Blanked OpenLP Main Display Blanked The Main Display has been blanked out The Main Display has been blanked out Default Theme: %s Default Theme: %s English Please add the name of your language here English (ZA) Configure &Shortcuts... Configure &Shortcuts... Open &Data Folder... Open &Data Folder... Open the folder where songs, bibles and other data resides. Open the folder where songs, Bibles and other data resides. &Autodetect &Autodetect Update Theme Images Update Theme Images Update the preview images for all themes. Update the preview images for all themes. Print the current service. Print the current service. L&ock Panels L&ock Panels Prevent the panels being moved. Prevent the panels being moved. Re-run First Time Wizard Re-run First Time Wizard Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run First Time Wizard? Re-run First Time Wizard? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Clear List Clear List of recent files Clear List Clear the list of recent files. Clear the list of recent files. Configure &Formatting Tags... Configure &Formatting Tags... Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file Settings Settings Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine Import settings? Import settings? Open File Open File OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) Import settings Import settings OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Export Settings File Export Settings File OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) New Data Directory Error New Data Directory Error Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP Data directory copy failed %s OpenLP Data directory copy failed %s General General Library Library Jump to the search box of the current active plugin. Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Projector Manager Toggle Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Toggle the visibility of the Projector Manager Export setting error Export setting error The key "%s" does not have a default value so it will be skipped in this export. The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s An error occurred while exporting the settings: %s &Recent Services &Recent Services &New Service &New Service &Open Service &Open Service &Save Service &Save Service Save Service &As... Save Service &As... &Manage Plugins &Manage Plugins Exit OpenLP Exit OpenLP Are you sure you want to exit OpenLP? Are you sure you want to exit OpenLP? &Exit OpenLP &Exit OpenLP OpenLP.Manager Database Error Database Error The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s OpenLP cannot load your database. Database: %s OpenLP cannot load your database. Database: %s OpenLP.MediaManagerItem No Items Selected No Items Selected &Add to selected Service Item &Add to selected Service Item You must select one or more items to preview. You must select one or more items to preview. You must select one or more items to send live. You must select one or more items to send live. You must select one or more items. You must select one or more items. You must select an existing service item to add to. You must select an existing service item to add to. Invalid Service Item Invalid Service Item You must select a %s service item. You must select a %s service item. You must select one or more items to add. You must select one or more items to add. No Search Results No Search Results Invalid File Type Invalid File Type Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported &Clone &Clone Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tag is missing. <verse> tag is missing. <verse> tag is missing. OpenLP.PJLink1 Unknown status Unknown status No message No message Error while sending data to projector Error while sending data to projector Undefined command: Undefined command: OpenLP.PlayerTab Players Players Available Media Players Available Media Players Player Search Order Player Search Order Visible background for videos with aspect ratio different to screen. Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (unavailable) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" NOTE: To use VLC you must install the %s version OpenLP.PluginForm Plugin Details Plugin Details Status: Status: Active Active Inactive Inactive %s (Inactive) %s (Inactive) %s (Active) %s (Active) %s (Disabled) %s (Disabled) Manage Plugins Manage Plugins OpenLP.PrintServiceDialog Fit Page Fit Page Fit Width Fit Width OpenLP.PrintServiceForm Options Options Copy Copy Copy as HTML Copy as HTML Zoom In Zoom In Zoom Out Zoom Out Zoom Original Zoom Original Other Options Other Options Include slide text if available Include slide text if available Include service item notes Include service item notes Include play length of media items Include play length of media items Add page break before each text item Add page break before each text item Service Sheet Service Sheet Print Print Title: Title: Custom Footer Text: Custom Footer Text: OpenLP.ProjectorConstants OK OK General projector error General projector error Not connected error Not connected error Lamp error Lamp error Fan error Fan error High temperature detected High temperature detected Cover open detected Cover open detected Check filter Check filter Authentication Error Authentication Error Undefined Command Undefined Command Invalid Parameter Invalid Parameter Projector Busy Projector Busy Projector/Display Error Projector/Display Error Invalid packet received Invalid packet received Warning condition detected Warning condition detected Error condition detected Error condition detected PJLink class not supported PJLink class not supported Invalid prefix character Invalid prefix character The connection was refused by the peer (or timed out) The connection was refused by the peer (or timed out) The remote host closed the connection The remote host closed the connection The host address was not found The host address was not found The socket operation failed because the application lacked the required privileges The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The local system ran out of resources (e.g., too many sockets) The socket operation timed out The socket operation timed out The datagram was larger than the operating system's limit The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found The proxy address set with setProxy() was not found An unidentified error occurred An unidentified error occurred Not connected Not connected Connecting Connecting Connected Connected Getting status Getting status Off Off Initialize in progress Initialise in progress Power in standby Power in standby Warmup in progress Warmup in progress Power is on Power is on Cooldown in progress Cooldown in progress Projector Information available Projector Information available Sending data Sending data Received data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name Duplicate Name OpenLP.ProjectorEditForm Add New Projector Add New Projector Edit Projector Edit Projector IP Address IP Address Port Number Port Number PIN PIN Name Name Location Location Notes Notes Database Error Database Error There was an error saving projector information. See the log for the error There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add Projector Add a new projector Add a new projector Edit Projector Edit Projector Edit selected projector Edit selected projector Delete Projector Delete Projector Delete selected projector Delete selected projector Select Input Source Select Input Source Choose input source on selected projector Choose input source on selected projector View Projector View Projector View selected projector information View selected projector information Connect to selected projector Connect to selected projector Connect to selected projectors Connect to selected projectors Disconnect from selected projectors Disconnect from selected projectors Disconnect from selected projector Disconnect from selected projector Power on selected projector Power on selected projector Standby selected projector Standby selected projector Put selected projector in standby Put selected projector in standby Blank selected projector screen Blank selected projector screen Show selected projector screen Show selected projector screen &View Projector Information &View Projector Information &Edit Projector &Edit Projector &Connect Projector &Connect Projector D&isconnect Projector D&isconnect Projector Power &On Projector Power &On Projector Power O&ff Projector Power O&ff Projector Select &Input Select &Input Edit Input Source Edit Input Source &Blank Projector Screen &Blank Projector Screen &Show Projector Screen &Show Projector Screen &Delete Projector &Delete Projector Name Name IP IP Port Port Notes Notes Projector information not available at this time. Projector information not available at this time. Projector Name Projector Name Manufacturer Manufacturer Model Model Other info Other info Power status Power status Shutter is Shutter is Closed Closed Current source input is Current source input is Lamp Lamp On On Off Off Hours Hours No current errors or warnings No current errors or warnings Current errors/warnings Current errors/warnings Projector Information Projector Information No message No message Not Implemented Yet Not Implemented Yet Delete projector (%s) %s? Delete projector (%s) %s? Are you sure you want to delete this projector? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Fan Lamp Lamp Temperature Temperature Cover Cover Filter Filter Other Other OpenLP.ProjectorTab Projector Projector Communication Options Communication Options Connect to projectors on startup Connect to projectors on startup Socket timeout (seconds) Socket timeout (seconds) Poll time (seconds) Poll time (seconds) Tabbed dialog box Tabbed dialog box Single dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Duplicate IP Address Invalid IP Address Invalid IP Address Invalid Port Number Invalid Port Number OpenLP.ScreenList Screen Screen primary primary OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Length</strong>: %s [slide %d] [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Reorder Service Item OpenLP.ServiceManager Move to &top Move to &top Move item to the top of the service. Move item to the top of the service. Move &up Move &up Move item up one position in the service. Move item up one position in the service. Move &down Move &down Move item down one position in the service. Move item down one position in the service. Move to &bottom Move to &bottom Move item to the end of the service. Move item to the end of the service. &Delete From Service &Delete From Service Delete the selected item from the service. Delete the selected item from the service. &Add New Item &Add New Item &Add to Selected Item &Add to Selected Item &Edit Item &Edit Item &Reorder Item &Reorder Item &Notes &Notes &Change Item Theme &Change Item Theme File is not a valid service. File is not a valid service. Missing Display Handler Missing Display Handler Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive &Expand all &Expand all Expand all the service items. Expand all the service items. &Collapse all &Collapse all Collapse all the service items. Collapse all the service items. Open File Open File Moves the selection down the window. Moves the selection down the window. Move up Move up Moves the selection up the window. Moves the selection up the window. Go Live Go Live Send the selected item to Live. Send the selected item to Live. &Start Time &Start Time Show &Preview Show &Preview Modified Service Modified Service The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? Custom Service Notes: Custom Service Notes: Notes: Notes: Playing time: Playing time: Untitled Service Untitled Service File could not be opened because it is corrupt. File could not be opened because it is corrupt. Empty File Empty File This service file does not contain any data. This service file does not contain any data. Corrupt File Corrupt File Load an existing service. Load an existing service. Save this service. Save this service. Select a theme for the service. Select a theme for the service. Slide theme Slide theme Notes Notes Edit Edit Service copy only Service copy only Error Saving File Error Saving File There was an error saving your file. There was an error saving your file. Service File(s) Missing Service File(s) Missing &Rename... &Rename... Create New &Custom Slide Create New &Custom Slide &Auto play slides &Auto play slides Auto play slides &Loop Auto play slides &Loop Auto play slides &Once Auto play slides &Once &Delay between slides &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - inactive &Auto Start - active &Auto Start - active Input delay Input delay Delay between slides in seconds. Delay between slides in seconds. Rename item title Rename item title Title: Title: An error occurred while writing the service file: %s An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Service Item Notes OpenLP.SettingsForm Configure OpenLP Configure OpenLP OpenLP.ShortcutListDialog Action Action Shortcut Shortcut Duplicate Shortcut Duplicate Shortcut The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. Alternate Alternate Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Default Default Custom Custom Capture shortcut. Capture shortcut. Restore the default shortcut of this action. Restore the default shortcut of this action. Restore Default Shortcuts Restore Default Shortcuts Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? Configure Shortcuts Configure Shortcuts OpenLP.SlideController Hide Hide Go To Go To Blank Screen Blank Screen Blank to Theme Blank to Theme Show Desktop Show Desktop Previous Service Previous Service Next Service Next Service Escape Item Escape Item Move to previous. Move to previous. Move to next. Move to next. Play Slides Play Slides Delay between slides in seconds. Delay between slides in seconds. Move to live. Move to live. Add to Service. Add to Service. Edit and reload song preview. Edit and reload song preview. Start playing media. Start playing media. Pause audio. Pause audio. Pause playing media. Pause playing media. Stop playing media. Stop playing media. Video position. Video position. Audio Volume. Audio Volume. Go to "Verse" Go to "Verse" Go to "Chorus" Go to "Chorus" Go to "Bridge" Go to "Bridge" Go to "Pre-Chorus" Go to "Pre-Chorus" Go to "Intro" Go to "Intro" Go to "Ending" Go to "Ending" Go to "Other" Go to "Other" Previous Slide Previous Slide Next Slide Next Slide Pause Audio Pause Audio Background Audio Background Audio Go to next audio track. Go to next audio track. Tracks Tracks OpenLP.SourceSelectForm Select Projector Source Select Projector Source Edit Projector Source Text Edit Projector Source Text Ignoring current changes and return to OpenLP Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Save changes and return to OpenLP Delete entries for this projector Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Spelling Suggestions Formatting Tags Formatting Tags Language: Language: OpenLP.StartTimeForm Theme Layout Theme Layout The blue box shows the main area. The blue box shows the main area. The red box shows the footer. The red box shows the footer. OpenLP.StartTime_form Item Start and Finish Time Item Start and Finish Time Hours: Hours: Minutes: Minutes: Seconds: Seconds: Start Start Finish Finish Length Length Time Validation Error Time Validation Error Finish time is set after the end of the media item Finish time is set after the end of the media item Start time is after the finish time of the media item Start time is after the finish time of the media item OpenLP.ThemeForm (approximately %d lines per slide) (approximately %d lines per slide) OpenLP.ThemeManager Create a new theme. Create a new theme. Edit Theme Edit Theme Edit a theme. Edit a theme. Delete Theme Delete Theme Delete a theme. Delete a theme. Import Theme Import Theme Import a theme. Import a theme. Export Theme Export Theme Export a theme. Export a theme. &Edit Theme &Edit Theme &Delete Theme &Delete Theme Set As &Global Default Set As &Global Default %s (default) %s (default) You must select a theme to edit. You must select a theme to edit. You are unable to delete the default theme. You are unable to delete the default theme. You have not selected a theme. You have not selected a theme. Save Theme - (%s) Save Theme - (%s) Theme Exported Theme Exported Your theme has been successfully exported. Your theme has been successfully exported. Theme Export Failed Theme Export Failed Select Theme Import File Select Theme Import File File is not a valid theme. File is not a valid theme. &Copy Theme &Copy Theme &Rename Theme &Rename Theme &Export Theme &Export Theme You must select a theme to rename. You must select a theme to rename. Rename Confirmation Rename Confirmation Rename %s theme? Rename %s theme? You must select a theme to delete. You must select a theme to delete. Delete Confirmation Delete Confirmation Delete %s theme? Delete %s theme? Validation Error Validation Error A theme with this name already exists. A theme with this name already exists. Copy of %s Copy of <theme name> Copy of %s Theme Already Exists Theme Already Exists Theme %s already exists. Do you want to replace it? Theme %s already exists. Do you want to replace it? The theme export failed because this error occurred: %s The theme export failed because this error occurred: %s OpenLP Themes (*.otz) OpenLP Themes (*.otz) %s time(s) by %s %s time(s) by %s Unable to delete theme Unable to delete theme Theme is currently used %s Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Theme Wizard Welcome to the Theme Wizard Welcome to the Theme Wizard Set Up Background Set Up Background Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. Background type: Background type: Gradient Gradient Gradient: Gradient: Horizontal Horizontal Vertical Vertical Circular Circular Top Left - Bottom Right Top Left - Bottom Right Bottom Left - Top Right Bottom Left - Top Right Main Area Font Details Main Area Font Details Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text Font: Font: Size: Size: Line Spacing: Line Spacing: &Outline: &Outline: &Shadow: &Shadow: Bold Bold Italic Italic Footer Area Font Details Footer Area Font Details Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text Text Formatting Details Text Formatting Details Allows additional display formatting information to be defined Allows additional display formatting information to be defined Horizontal Align: Horizontal Align: Left Left Right Right Center Centre Output Area Locations Output Area Locations &Main Area &Main Area &Use default location &Use default location X position: X position: px px Y position: Y position: Width: Width: Height: Height: Use default location Use default location Theme name: Theme name: Edit Theme - %s Edit Theme - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Transitions: Transitions: &Footer Area &Footer Area Starting color: Starting color: Ending color: Ending color: Background color: Background color: Justify Justify Layout Preview Layout Preview Transparent Transparent Preview and Save Preview and Save Preview the theme and save it. Preview the theme and save it. Background Image Empty Background Image Empty Select Image Select Image Theme Name Missing Theme Name Missing There is no name for this theme. Please enter one. There is no name for this theme. Please enter one. Theme Name Invalid Theme Name Invalid Invalid theme name. Please enter one. Invalid theme name. Please enter one. Solid color Solid colour color: colour: Allows you to change and move the Main and Footer areas. Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. You have not selected a background image. Please select one before continuing. OpenLP.ThemesTab Global Theme Global Theme Theme Level Theme Level S&ong Level S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. &Service Level &Service Level Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. &Global Level &Global Level Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. Themes Themes Universal Settings Universal Settings &Wrap footer text &Wrap footer text OpenLP.Ui Delete the selected item. Delete the selected item. Move selection up one position. Move selection up one position. Move selection down one position. Move selection down one position. &Vertical Align: &Vertical Align: Finished import. Finished import. Format: Format: Importing Importing Importing "%s"... Importing "%s"... Select Import Source Select Import Source Select the import format and the location to import from. Select the import format and the location to import from. Open %s File Open %s File %p% %p% Ready. Ready. Starting import... Starting import... You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. Welcome to the Bible Import Wizard Welcome to the Bible Import Wizard Welcome to the Song Export Wizard Welcome to the Song Export Wizard Welcome to the Song Import Wizard Welcome to the Song Import Wizard Author Singular Author Authors Plural Authors © Copyright symbol. © Song Maintenance Song Maintenance Topic Singular Topic Topics Plural Topics Title and/or verses not found Title and/or verses not found XML syntax error XML syntax error Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard Open %s Folder Open %s Folder You need to specify one %s file to import from. A file type e.g. OpenSong You need to specify one %s file to import from. You need to specify one %s folder to import from. A song format e.g. PowerSong You need to specify one %s folder to import from. Importing Songs Importing Songs Welcome to the Duplicate Song Removal Wizard Welcome to the Duplicate Song Removal Wizard Written by Written by Author Unknown Author Unknown About About &Add &Add Add group Add group Advanced Advanced All Files All Files Automatic Automatic Background Color Background Colour Bottom Bottom Browse... Browse... Cancel Cancel CCLI number: CCLI number: Create a new service. Create a new service. Confirm Delete Confirm Delete Continuous Continuous Default Default Default Color: Default Colour: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M &Delete &Delete Display style: Display style: Duplicate Error Duplicate Error &Edit &Edit Empty Field Empty Field Error Error Export Export File File File Not Found File Not Found File %s not found. Please try selecting it individually. File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help Help h The abbreviated unit for hours h Invalid Folder Selected Singular Invalid Folder Selected Invalid File Selected Singular Invalid File Selected Invalid Files Selected Plural Invalid Files Selected Image Image Import Import Layout style: Layout style: Live Live Live Background Error Live Background Error Live Toolbar Live Toolbar Load Load Manufacturer Singular Manufacturer Manufacturers Plural Manufacturers Model Singular Model Models Plural Models m The abbreviated unit for minutes m Middle Middle New New New Service New Service New Theme New Theme Next Track Next Track No Folder Selected Singular No Folder Selected No File Selected Singular No File Selected No Files Selected Plural No Files Selected No Item Selected Singular No Item Selected No Items Selected Plural No Items Selected OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? Open service. Open service. Play Slides in Loop Play Slides in Loop Play Slides to End Play Slides to End Preview Preview Print Service Print Service Projector Singular Projector Projectors Plural Projectors Replace Background Replace Background Replace live background. Replace live background. Reset Background Reset Background Reset live background. Reset live background. s The abbreviated unit for seconds s Save && Preview Save && Preview Search Search Search Themes... Search bar place holder text Search Themes... You must select an item to delete. You must select an item to delete. You must select an item to edit. You must select an item to edit. Settings Settings Save Service Save Service Service Service Optional &Split Optional &Split Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. Start %s Start %s Stop Play Slides in Loop Stop Play Slides in Loop Stop Play Slides to End Stop Play Slides to End Theme Singular Theme Themes Plural Themes Tools Tools Top Top Unsupported File Unsupported File Verse Per Slide Verse Per Slide Verse Per Line Verse Per Line Version Version View View View Mode View Mode CCLI song number: CCLI song number: Preview Toolbar Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbook Songbooks Plural Songbooks OpenLP.core.lib %s and %s Locale list separator: 2 items %s and %s %s, and %s Locale list separator: end %s, and %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. Presentation name singular Presentation Presentations name plural Presentations Presentations container title Presentations Load a new presentation. Load a new presentation. Delete the selected presentation. Delete the selected presentation. Preview the selected presentation. Preview the selected presentation. Send the selected presentation live. Send the selected presentation live. Add the selected presentation to the service. Add the selected presentation to the service. PresentationPlugin.MediaItem Select Presentation(s) Select Presentation(s) Automatic Automatic Present using: Present using: File Exists File Exists A presentation with that filename already exists. A presentation with that filename already exists. This type of presentation is not supported. This type of presentation is not supported. Presentations (%s) Presentations (%s) Missing Presentation Missing Presentation The presentation %s is incomplete, please reload. The presentation %s is incomplete, please reload. The presentation %s no longer exists. The presentation %s no longer exists. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Available Controllers %s (unavailable) %s (unavailable) Allow presentation application to be overridden Allow presentation application to be overridden PDF options PDF options Use given full path for mudraw or ghostscript binary: Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. The program is not ghostscript or mudraw which is required. PowerPoint options PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. Remote name singular Remote Remotes name plural Remotes Remote container title Remote Server Config Change Server Config Change Server configuration changes will require a restart to take effect. Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager Service Manager Slide Controller Slide Controller Alerts Alerts Search Search Home Home Refresh Refresh Blank Blank Theme Theme Desktop Desktop Show Show Prev Prev Next Next Text Text Show Alert Show Alert Go Live Go Live Add to Service Add to Service Add &amp; Go to Service Add &amp; Go to Service No Results No Results Options Options Service Service Slides Slides Settings Settings Remote Remote Stage View Stage View Live View Live View RemotePlugin.RemoteTab Serve on IP address: Serve on IP address: Port number: Port number: Server Settings Server Settings Remote URL: Remote URL: Stage view URL: Stage view URL: Display stage time in 12h format Display stage time in 12h format Android App Android App Live view URL: Live view URL: HTTPS Server HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User Authentication User id: User id: Password: Password: Show thumbnails of non-text slides in remote and stage view. Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Song Usage Tracking &Delete Tracking Data &Delete Tracking Data Delete song usage data up to a specified date. Delete song usage data up to a specified date. &Extract Tracking Data &Extract Tracking Data Generate a report on song usage. Generate a report on song usage. Toggle Tracking Toggle Tracking Toggle the tracking of song usage. Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. SongUsage name singular SongUsage SongUsage name plural SongUsage SongUsage container title SongUsage Song Usage Song Usage Song usage tracking is active. Song usage tracking is active. Song usage tracking is inactive. Song usage tracking is inactive. display display printed printed SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Delete Song Usage Data Delete Selected Song Usage Events? Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? Deletion Successful Deletion Successful Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Song Usage Extraction Select Date Range Select Date Range to to Report Location Report Location Output File Location Output File Location usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Report Creation Report %s has been successfully created. Report %s has been successfully created. Output Path Not Selected Output Path Not Selected You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed Report Creation Failed An error occurred while creating the report: %s An error occurred while creating the report: %s SongsPlugin &Song &Song Import songs using the import wizard. Import songs using the import wizard. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. &Re-index Songs &Re-index Songs Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. Reindexing songs... Reindexing songs... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding Character Encoding The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. Song name singular Song Songs name plural Songs Songs container title Songs Exports songs using the export wizard. Exports songs using the export wizard. Add a new song. Add a new song. Edit the selected song. Edit the selected song. Delete the selected song. Delete the selected song. Preview the selected song. Preview the selected song. Send the selected song live. Send the selected song live. Add the selected song to the service. Add the selected song to the service. Reindexing songs Reindexing songs CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find &Duplicate Songs Find and remove duplicate songs in the song database. Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Words Music Author who wrote the music of a song Music Words and Music Author who wrote both lyrics and music of a song Words and Music Translation Author who translated the song Translation SongsPlugin.AuthorsForm Author Maintenance Author Maintenance Display name: Display name: First name: First name: Last name: Last name: You need to type in the first name of the author. You need to type in the first name of the author. You need to type in the last name of the author. You need to type in the last name of the author. You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? SongsPlugin.CCLIFileImport The file does not have a valid extension. The file does not have a valid extension. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Administered by %s "%s" could not be imported. %s "%s" could not be imported. %s Unexpected data formatting. Unexpected data formatting. No song text found. No song text found. [above are Song Tags with notes imported from EasyWorship] [above are Song Tags with notes imported from EasyWorship] This file does not exist. This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. This file is not a valid EasyWorship database. Could not retrieve encoding. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Custom Book Names SongsPlugin.EditSongForm Song Editor Song Editor &Title: &Title: Alt&ernate title: Alt&ernate title: &Lyrics: &Lyrics: &Verse order: &Verse order: Ed&it All Ed&it All Title && Lyrics Title && Lyrics &Add to Song &Add to Song &Remove &Remove A&dd to Song A&dd to Song R&emove R&emove New &Theme New &Theme Copyright Information Copyright Information Comments Comments Theme, Copyright Info && Comments Theme, Copyright Info && Comments Add Author Add Author This author does not exist, do you want to add them? This author does not exist, do you want to add them? This author is already in the list. This author is already in the list. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Add Topic Add Topic This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? This topic is already in the list. This topic is already in the list. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You need to type in a song title. You need to type in a song title. You need to type in at least one verse. You need to type in at least one verse. You need to have an author for this song. You need to have an author for this song. Linked Audio Linked Audio Add &File(s) Add &File(s) Add &Media Add &Media Remove &All Remove &All Open File(s) Open File(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> You have not entered a verse order. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order Invalid Verse Order &Edit Author Type &Edit Author Type Edit Author Type Edit Author Type Choose type for this author Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks &Manage Authors, Topics, Songbooks Add &to Song Add &to Song Re&move Re&move Authors, Topics && Songbooks Authors, Topics && Songbooks Add Songbook Add Songbook This Songbook does not exist, do you want to add it? This Songbook does not exist, do you want to add it? This Songbook is already in the list. This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Edit Verse &Verse type: &Verse type: &Insert &Insert Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. SongsPlugin.ExportWizardForm Song Export Wizard Song Export Wizard Select Songs Select Songs Check the songs you want to export. Check the songs you want to export. Uncheck All Uncheck All Check All Check All Select Directory Select Directory Directory: Directory: Exporting Exporting Please wait while your songs are exported. Please wait while your songs are exported. You need to add at least one Song to export. You need to add at least one Song to export. No Save Location specified No Save Location specified Starting export... Starting export... You need to specify a directory. You need to specify a directory. Select Destination Folder Select Destination Folder Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type Enable search as you type SongsPlugin.ImportWizardForm Select Document/Presentation Files Select Document/Presentation Files Song Import Wizard Song Import Wizard This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Generic Document/Presentation Generic Document/Presentation Add Files... Add Files... Remove File(s) Remove File(s) Please wait while your songs are imported. Please wait while your songs are imported. Words Of Worship Song Files Words Of Worship Song Files Songs Of Fellowship Song Files Songs Of Fellowship Song Files SongBeamer Files SongBeamer Files SongShow Plus Song Files SongShow Plus Song Files Foilpresenter Song Files Foilpresenter Song Files Copy Copy Save to File Save to File The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenLyrics Files OpenLyrics Files CCLI SongSelect Files CCLI SongSelect Files EasySlides XML File EasySlides XML File EasyWorship Song Database EasyWorship Song Database DreamBeam Song Files DreamBeam Song Files You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files SundayPlus Song Files This importer has been disabled. This importer has been disabled. MediaShout Database MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files SongPro Text Files SongPro (Export File) SongPro (Export File) In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu EasyWorship Service File EasyWorship Service File WorshipCenter Pro Song Files WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PowerPraise Song Files PresentationManager Song Files PresentationManager Song Files ProPresenter 4 Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant Files Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases OpenLP 2 Databases LyriX Files LyriX Files LyriX (Exported TXT-files) LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm Files VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Select Media File(s) Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. SongsPlugin.MediaItem Titles Titles Lyrics Lyrics CCLI License: CCLI License: Entire Song Entire Song Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. copy For song cloning copy Search Titles... Search Titles... Search Entire Song... Search Entire Song... Search Lyrics... Search Lyrics... Search Authors... Search Authors... Are you sure you want to delete the "%d" selected song(s)? Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Unable to open the MediaShout database. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Exporting "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. No songs to import. Verses not found. Missing "PART" header. Verses not found. Missing "PART" header. No %s files found. No %s files found. Invalid %s file. Unexpected byte value. Invalid %s file. Unexpected byte value. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. SongsPlugin.SongBookForm &Name: &Name: &Publisher: &Publisher: You need to type in a name for the book. You need to type in a name for the book. Songbook Maintenance Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Your song export failed. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Your song export failed because this error occurred: %s Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: The following songs could not be imported: Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice Unable to open file Unable to open file File not found File not found SongsPlugin.SongMaintenanceForm Could not add your author. Could not add your author. This author already exists. This author already exists. Could not add your topic. Could not add your topic. This topic already exists. This topic already exists. Could not add your book. Could not add your book. This book already exists. This book already exists. Could not save your changes. Could not save your changes. Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. Delete Author Delete Author Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. Delete Topic Delete Topic Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. Delete Book Delete Book Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Username: Password: Password: Save username and password Save username and password Login Login Search Text: Search Text: Search Search Found %s song(s) Found %s song(s) Logout Logout View View Title: Title: Author(s): Author(s): Copyright: Copyright: CCLI Number: CCLI Number: Lyrics: Lyrics: Back Back Import Import More than 1000 results More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Logging out... Save Username and Password Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In Error Logging In There was a problem logging in, perhaps your username or password is incorrect? There was a problem logging in, perhaps your username or password is incorrect? Song Imported Song Imported Incomplete song Incomplete song This song is missing some information, like the lyrics, and cannot be imported. This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Your song has been imported, would you like to import more songs? Stop Stop SongsPlugin.SongsTab Songs Mode Songs Mode Display verses on live tool bar Display verses on live tool bar Update service from song edit Update service from song edit Import missing songs from service files Import missing songs from service files Display songbook in footer Display songbook in footer Display "%s" symbol before copyright info Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Topic Maintenance Topic name: Topic name: You need to type in a topic name. You need to type in a topic name. SongsPlugin.VerseType Verse Verse Chorus Chorus Bridge Bridge Pre-Chorus Pre-Chorus Intro Intro Ending Ending Other Other SongsPlugin.VideoPsalmImport Error: %s Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Error reading CSV file. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s File not valid WorshipAssistant CSV format. File not valid WorshipAssistant CSV format. Record %d Record %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Error reading CSV file. File not valid ZionWorx CSV format. File not valid ZionWorx CSV format. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s Record %d Record %d Wizard Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Searching for duplicate songs. Please wait while your songs database is analyzed. Please wait while your songs database is analysed. Here you can decide which songs to remove and which ones to keep. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Review duplicate songs (%s/%s) Information Information No duplicate songs have been found in the database. No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/zh_TW.ts0000644000175000017500000152067212657640340015762 0ustar raoulraoul AlertsPlugin &Alert 警報(&A) Show an alert message. 顯示警報訊æ¯ã€‚ Alert name singular 警報 Alerts name plural 警報 Alerts container title 警報 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>警報æ’ä»¶</strong><br />警報æ’件控制在顯示器畫é¢é¡¯ç¤ºçš„警報字å¥ã€‚ AlertsPlugin.AlertForm Alert Message è­¦å ±è¨Šæ¯ Alert &text: 警報文字(&T): &New 新增(&N) &Save 存檔(&S) Displ&ay 顯示(&A) Display && Cl&ose 顯示並關閉(&O) New Alert 新的警報 &Parameter: åƒæ•¸(&P): No Parameter Found 找ä¸åˆ°åƒæ•¸ You have not entered a parameter to be replaced. Do you want to continue anyway? æ‚¨å°šæœªè¼¸å…¥åƒæ•¸æ›¿æ›,是å¦è¦ç¹¼çºŒï¼Ÿ No Placeholder Found 找ä¸åˆ°æç¤º The alert text does not contain '<>'. Do you want to continue anyway? è­¦å ±è¨Šæ¯æ²’有包å«'<>', 是å¦ç¹¼çºŒï¼Ÿ You haven't specified any text for your alert. Please type in some text before clicking New. 您尚未在警報文字欄指定任何文字。 請在新建å‰è¼¸å…¥ä¸€äº›æ–‡å­—。 AlertsPlugin.AlertsManager Alert message created and displayed. 警報訊æ¯å·²é¡¯ç¤ºã€‚ AlertsPlugin.AlertsTab Font å­—åž‹ Font name: å­—åž‹å稱: Font color: å­—åž‹é¡è‰²ï¼š Background color: 背景é¡è‰²ï¼š Font size: 字體大å°ï¼š Alert timeout: 警報中止: BiblesPlugin &Bible è–ç¶“(&B) Bible name singular è–ç¶“ Bibles name plural è–ç¶“ Bibles container title è–ç¶“ No Book Found 找ä¸åˆ°æ›¸å·å No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. 找ä¸åˆ°ç¬¦åˆæ›¸å·å。請檢查有無錯別字。 Import a Bible. 匯入一本è–經。 Add a new Bible. 新增一本è–經。 Edit the selected Bible. ç·¨è¼¯æ‰€é¸æ“‡çš„è–經。 Delete the selected Bible. åˆªé™¤æ‰€é¸æ“‡çš„è–經。 Preview the selected Bible. é è¦½æ‰€é¸æ“‡çš„è–經。 Send the selected Bible live. 傳逿‰€é¸æ“‡çš„è–經到ç¾å ´Live。 Add the selected Bible to the service. æ–°å¢žæ‰€é¸æ“‡çš„è–ç¶“åˆ°èšæœƒã€‚ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>è–ç¶“æ’ä»¶</strong><br />使用è–ç¶“æ’ä»¶åœ¨èšæœƒä¸­é¡¯ç¤ºä¸åŒçš„è–經來æºã€‚ &Upgrade older Bibles å‡ç´šèˆŠç‰ˆè–ç¶“(&U) Upgrade the Bible databases to the latest format. å‡ç´šè–經資料庫至最新的格å¼ã€‚ Genesis 創世紀 Exodus 出埃åŠè¨˜ Leviticus 利未記 Numbers 民數記 Deuteronomy 申命記 Joshua 約書亞記 Judges 士師記 Ruth 路得記 1 Samuel æ’’æ¯çˆ¾è¨˜ä¸Š 2 Samuel æ’’æ¯çˆ¾è¨˜ä¸‹ 1 Kings 列王記上 2 Kings 列王記下 1 Chronicles 歷代志上 2 Chronicles 歷代志下 Ezra 以斯拉記 Nehemiah 尼希米記 Esther 以斯帖記 Job 約伯記 Psalms 詩篇 Proverbs 箴言 Ecclesiastes 傳铿›¸ Song of Solomon é›…æ­Œ Isaiah 以賽亞書 Jeremiah 以賽亞書 Lamentations 耶利米哀歌 Ezekiel ä»¥è¥¿çµæ›¸ Daniel ä½†ä»¥ç†æ›¸ Hosea 何西阿書 Joel ç´„ç¥æ›¸ Amos é˜¿æ‘©å¸æ›¸ Obadiah 俄巴底亞書 Jonah 約拿書 Micah 彌迦書 Nahum 那鴻書 Habakkuk 哈巴谷書 Zephaniah 西番雅書 Haggai 哈該書 Zechariah 撒迦利書 Malachi 瑪拉基書 Matthew 馬太ç¦éŸ³ Mark 馬å¯ç¦éŸ³ Luke 路加ç¦éŸ³ John ç´„ç¿°ç¦éŸ³ Acts 使徒行傳 Romans 羅馬書 1 Corinthians å“¥æž—å¤šå‰æ›¸ 2 Corinthians 哥林多後書 Galatians 加拉太書 Ephesians 以弗所書 Philippians 腓立比書 Colossians 歌羅西書 1 Thessalonians å¸–æ’’ç¾…å°¼è¿¦å‰æ›¸ 2 Thessalonians 帖撒羅尼迦後書 1 Timothy ææ‘©å¤ªå‰æ›¸ 2 Timothy ææ‘©å¤ªå¾Œæ›¸ Titus æå¤šæ›¸ Philemon 腓利門書 Hebrews 希伯來書 James 雅儿›¸ 1 Peter 彼得剿›¸ 2 Peter 彼得後書 1 John 約翰壹書 2 John 約翰貳書 3 John ç´„ç¿°åƒæ›¸ Jude 猶大書 Revelation 啟示錄 Judith å‹å¼Ÿå¾·å‚³ Wisdom 智慧篇 Tobit 多俾亞傳 Sirach 德訓篇 Baruch 巴路克 1 Maccabees 瑪喀比一書 2 Maccabees 瑪喀比二書 3 Maccabees 瑪喀比三書 4 Maccabees 瑪喀比四書 Rest of Daniel 但以ç†è£œç¯‡ Rest of Esther 以斯帖補篇 Prayer of Manasses 瑪拿西禱言 Letter of Jeremiah 耶利米書信 Prayer of Azariah 亞薩利亞禱言 Susanna è˜‡æ’’ç´ Bel è²çˆ¾ 1 Esdras 厄斯德拉上 2 Esdras 厄斯德拉下 : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 節 V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 節 verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 節 verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 節 - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 到 , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 åŠ end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse çµæŸ BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. æ‚¨éœ€è¦æŒ‡å®šæ‚¨è–經的譯本å稱。 You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 您需è¦ç‚ºæ‚¨çš„è–經設定版權訊æ¯ã€‚ 在公開領域也必須標註。 Bible Exists è–經已存在 This Bible already exists. Please import a different Bible or first delete the existing one. æ­¤è–經譯本已存在。請匯入一個ä¸åŒçš„è–經譯本,或先刪除已存在的譯本。 You need to specify a book name for "%s". 您需è¦ç‚º "%s" 指定一個書å·å稱。 The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. 書å·å稱 "%s" 䏿­£ç¢º. 數字åªèƒ½æ”¾åœ¨é–‹é ­ä¸¦ä¸”å¿…é ˆå¾ŒæŽ¥ä¸€å€‹æˆ–å¤šå€‹éžæ•¸å­—å­—å…ƒ. Duplicate Book Name é‡è¤‡çš„æ›¸å·å稱 The Book Name "%s" has been entered more than once. 此書å·å稱 "%s" 已輸入ä¸åªä¸€æ¬¡ã€‚ BiblesPlugin.BibleManager Scripture Reference Error 經節åƒç…§éŒ¯èª¤ Web Bible cannot be used 無法使用網路è–ç¶“ Text Search is not available with Web Bibles. ä¸èƒ½åœ¨ç¶²è·¯è–經進行æœç´¢ã€‚ You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. 您沒有輸入æœå°‹çš„é—œéµå­—。 您å¯ä»¥ä½¿ç”¨ç©ºæ ¼ä¾†åˆ†é𔿉€æœ‰éœ€è¦è¢«æœå°‹çš„é—œéµå­—。 若想æœå°‹ä¸€äº›é—œéµå­—中的任何一個,請使用逗號作分隔。 There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. 找ä¸åˆ°è–經。請使用è–經匯入精éˆå®‰è£è–經。 No Bibles Available 沒有å¯ç”¨çš„è–ç¶“ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. 您的經文標示ä¸å—OpenLPæ”¯æŒæˆ–æ˜¯ç„¡æ•ˆçš„ï¼Œè«‹ç¢ºä¿æ‚¨çš„æ¨™ç¤ºç¬¦è™Ÿå’Œä¸‹åˆ—ä»»æ„ä¸€ç¨®æ ¼å¼æˆ–是請åƒé–±èªªæ˜Žæ–‡ä»¶ï¼š Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Book:書å·å Chapter: ç«  Verse:節 BiblesPlugin.BiblesTab Verse Display 經節顯示 Only show new chapter numbers åªé¡¯ç¤ºæ–°çš„第幾章 Bible theme: è–經佈景主題: No Brackets 沒有括號 ( And ) ( å’Œ ) { And } { å’Œ } [ And ] [ å’Œ ] Note: Changes do not affect verses already in the service. 注æ„: å·²ç¶“åœ¨èšæœƒä¸­çš„é …ç›®ä¸å—改變影響。 Display second Bible verses 顯示第二è–ç¶“ç¶“æ–‡ Custom Scripture References 自定義經文表示 Verse Separator: 經節分隔: Range Separator: 範åœåˆ†éš”: List Separator: 列表分隔: End Mark: çµæŸæ¨™è¨˜ï¼š Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. 定義多個符號需使用 "|" 來分隔。 欲使用é è¨­å€¼è«‹æ¸…除內容。 English ç¹é«”中文 Default Bible Language é è¨­è–經語言 Book name language in search field, search results and on display: 在æœå°‹ç¯„åœã€æœå°‹çµæžœåŠç•«é¢è¼¸å‡ºçš„æ›¸å·å稱語言: Bible Language è–經語言 Application Language 應用程å¼èªžè¨€ Show verse numbers 顯示經節數字 BiblesPlugin.BookNameDialog Select Book Name 鏿“‡ç¶“å·å稱 Current name: ç›®å‰å稱: Corresponding name: å°æ‡‰å稱: Show Books From 顯示書å·å¾ž Old Testament 舊約 New Testament æ–°ç´„ Apocrypha 次經 The following book name cannot be matched up internally. Please select the corresponding name from the list. 下列書å·å稱無法與內部書å·å°æ‡‰ã€‚è«‹å¾žåˆ—è¡¨ä¸­é¸æ“‡ç›¸å°æ‡‰çš„å稱。 BiblesPlugin.BookNameForm You need to select a book. 你需è¦é¸æ“‡ä¸€å·æ›¸ã€‚ BiblesPlugin.CSVBible Importing books... %s 匯入書å·... %s Importing verses... done. 匯入經文... 已完æˆã€‚ BiblesPlugin.EditBibleForm Bible Editor 編輯è–ç¶“ License Details 授權詳細資訊 Version name: 版本å稱: Copyright: 版權: Permissions: 權é™ï¼š Default Bible Language é è¨­è–經語言 Book name language in search field, search results and on display: 在æœå°‹ç¯„åœã€æœå°‹çµæžœåŠç•«é¢è¼¸å‡ºçš„æ›¸å·å稱語言: Global Settings 全域設定 Bible Language è–經語言 Application Language 應用程å¼èªžè¨€ English ç¹é«”中文 This is a Web Download Bible. It is not possible to customize the Book Names. 這是網路版è–經。無法自定書å·å稱。 To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. 欲使用自定義書å·å稱,在'後設資料(Meta Data)'é æˆ–OpenLP設定的'è–ç¶“'é é¢ä¸Š(è‹¥å·²é¸æ“‡å…¨åŸŸè¨­å®š) å¿…é ˆé¸æ“‡"è–經語言"。 BiblesPlugin.HTTPBible Registering Bible and loading books... 正在註冊è–經並載入書å·... Registering Language... 正在註冊語言... Importing %s... Importing <book name>... 匯入 %s... Download Error 下載錯誤 There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. ä¸‹è¼‰é¸æ“‡çš„ç¶“ç¯€æ™‚ç™¼ç”ŸéŒ¯èª¤ï¼Œè«‹æª¢æŸ¥æ‚¨çš„ç¶²è·¯é€£ç·šã€‚è‹¥ç‹€æ³æŒçºŒç™¼ç”Ÿï¼Œè«‹å›žå ±æ­¤éŒ¯èª¤ã€‚ Parse Error 語法錯誤 There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. è§£ç¢¼é¸æ“‡çš„ç¶“ç¯€æ™‚ç™¼ç”ŸéŒ¯èª¤ã€‚è‹¥ç‹€æ³æŒçºŒç™¼ç”Ÿï¼Œè«‹å›žå ±æ­¤éŒ¯èª¤ã€‚ BiblesPlugin.ImportWizardForm Bible Import Wizard è–ç¶“åŒ¯å…¥ç²¾éˆ This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. 這個精éˆå°‡å¹«åŠ©æ‚¨åŒ¯å…¥å„種格å¼çš„è–ç¶“ã€‚é»žæ“Šä¸‹ä¸€æ­¥æŒ‰éˆ•é–‹å§‹é¸æ“‡è¦åŒ¯å…¥çš„æ ¼å¼ã€‚ Web Download 網路下載 Location: ä½ç½®ï¼š Crosswalk Crosswalk BibleGateway BibleGateway Bible: è–經: Download Options 下載é¸é … Server: 伺æœå™¨ï¼š Username: 帳號: Password: 使用者密碼: Proxy Server (Optional) 代ç†ä¼ºæœå™¨ï¼š License Details 授權詳細資訊 Set up the Bible's license details. 設定è–經的授權詳細資料。 Version name: 版本å稱: Copyright: 版權: Please wait while your Bible is imported. è«‹ç¨ç­‰ï¼Œæ‚¨çš„è–經正在匯入。 You need to specify a file with books of the Bible to use in the import. æ‚¨éœ€è¦æŒ‡å®šä¸€å€‹å…·æœ‰å¯ç”¨æ–¼åŒ¯å…¥ä¹‹è–ç¶“ç¶“å·çš„æª”案。 You need to specify a file of Bible verses to import. æ‚¨éœ€è¦æŒ‡å®šè¦åŒ¯å…¥çš„è–經經文檔案。 You need to specify a version name for your Bible. æ‚¨éœ€è¦æŒ‡å®šæ‚¨è–經的譯本å稱。 You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 您需è¦ç‚ºæ‚¨çš„è–經設定版權訊æ¯ã€‚ 在公開領域也必須標註。 Bible Exists è–經已存在 This Bible already exists. Please import a different Bible or first delete the existing one. æ­¤è–經譯本已存在。請匯入一個ä¸åŒçš„è–經譯本,或先刪除已存在的譯本。 Your Bible import failed. 無法匯入你的è–經。 CSV File CSV檔案 Bibleserver Bibleserver Permissions: 權é™ï¼š Bible file: è–經檔案: Books file: æ›¸å·æª”: Verses file: 經文檔案: Registering Bible... 正在註冊è–ç¶“... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. 註冊è–經。請注æ„,å³å°‡ä¸‹è¼‰ç¶“文且需è¦ç¶²è·¯é€£ç·šã€‚ Click to download bible list 點擊下載è–經清單 Download bible list 下載è–經清單 Error during download 下載éŽç¨‹ç™¼ç”ŸéŒ¯èª¤ An error occurred while downloading the list of bibles from %s. 從 %s 下載è–經清單時發生錯誤。 BiblesPlugin.LanguageDialog Select Language 鏿“‡èªžè¨€ OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP無法確定這個è–經譯本的語言。請從下é¢çš„åˆ—è¡¨ä¸­é¸æ“‡èªžè¨€ã€‚ Language: 語言: BiblesPlugin.LanguageForm You need to choose a language. 你需è¦é¸æ“‡ä¸€å€‹èªžè¨€ã€‚ BiblesPlugin.MediaItem Quick 快速 Find: 尋找: Book: 書å·ï¼š Chapter: 章: Verse: 節: From: 從: To: 到: Text Search 文字æœå°‹ Second: 第二本: Scripture Reference ç¶“æ–‡åƒç…§ Toggle to keep or clear the previous results. 切æ›ä¿ç•™æˆ–清除之å‰çš„çµæžœã€‚ You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? 您ä¸èƒ½çµåˆå–®å’Œé›™è–經經節æœå°‹çµæžœã€‚ä½ è¦åˆªé™¤æœå°‹çµæžœä¸¦é–‹å§‹æ–°çš„æœå°‹ï¼Ÿ Bible not fully loaded. è–經未完整載入。 Information 資訊 The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. 第二è–ç¶“æ²’æœ‰åŒ…å«æ‰€æœ‰åœ¨ä¸»è–經的經文。將åªé¡¯ç¤ºå…©å€‹è–經皆有的經文。 %d ç¶“æ–‡æ²’æœ‰è¢«åˆ—å…¥çµæžœã€‚ Search Scripture Reference... æœå°‹ç¶“æ–‡åƒç…§... Search Text... æœå°‹æ–‡å­—... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. 您確定è¦å¾žOpenLP完全刪除“%sâ€è–經? 您è¦å†æ¬¡ä½¿ç”¨å®ƒå°‡éœ€è¦é‡æ–°å°Žå…¥é€™å€‹è–經。 Advanced 進階 BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. æä¾›ä¸æ­£ç¢ºçš„è–經文件類型。 OpenSong Bibleå¯è¢«å£“縮。匯入å‰å¿…須先解壓縮。 Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. æä¾›ä¸æ­£ç¢ºçš„è–經文件類型。 這看起來似乎是 Zefania XML è–經,請使用 Zefania é¸é …匯入。 BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... 匯入%(bookname)s %(chapter)s中... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... 刪除未使用的標籤(這å¯èƒ½éœ€è¦å¹¾åˆ†é˜ï¼‰... Importing %(bookname)s %(chapter)s... 匯入%(bookname)s %(chapter)s中... BiblesPlugin.UpgradeWizardForm Select a Backup Directory 鏿“‡å‚™ä»½ç›®éŒ„ Bible Upgrade Wizard è–ç¶“å‡ç´šç²¾éˆ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. 此精éˆå°‡å¹«åŠ©æ‚¨ç¾æœ‰çš„è–經從OpenLP 2 的舊版本å‡ç´šï¼Œé»žæ“Šä¸‹ä¸€æ­¥çš„æŒ‰éˆ•é–‹å§‹å‡ç´šç¨‹åºã€‚ Select Backup Directory 鏿“‡å‚™ä»½ç›®éŒ„ Please select a backup directory for your Bibles 請為您的è–ç¶“é¸æ“‡å‚™ä»½ç›®éŒ„ Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0 以å‰çš„版本無法使用å‡ç´šå¾Œçš„è–經。將建立目å‰è–ç¶“çš„å‚™ä»½ï¼Œå¦‚æžœä½ éœ€è¦æ¢å¾©åˆ° OpenLP 以å‰çš„版本,就å¯ä»¥ç°¡å–®åœ°å°‡æ–‡ä»¶è¤‡è£½å›žæ‚¨ OpenLP 資料目錄。有關如何æ¢å¾©æ–‡ä»¶çš„說明å¯ä»¥åœ¨æˆ‘們的 <a href="http://wiki.openlp.org/faq">常見å•題</a>。 Please select a backup location for your Bibles. 請為您的è–ç¶“é¸æ“‡å‚™ä»½è·¯å¾‘。 Backup Directory: 備份目錄: There is no need to backup my Bibles ä¸éœ€è¦å‚™ä»½æˆ‘çš„è–ç¶“ Select Bibles 鏿“‡è–ç¶“ Please select the Bibles to upgrade è«‹é¸æ“‡è¦å‡ç´šçš„è–ç¶“ Upgrading å‡ç´šä¸­ Please wait while your Bibles are upgraded. è«‹ç¨ç­‰ï¼Œæ‚¨çš„è–經正在å‡ç´šã€‚ The backup was not successful. To backup your Bibles you need permission to write to the given directory. 備份未æˆåŠŸã€‚ éœ€è¦æŒ‡å®šç›®éŒ„的寫入權é™ä¾†å‚™ä»½æ‚¨çš„è–經。 Upgrading Bible %s of %s: "%s" Failed 正在å‡ç´šè–ç¶“ %s çš„ %s:"%s" 失敗 Upgrading Bible %s of %s: "%s" Upgrading ... 正在å‡ç´šè–ç¶“ %s çš„ %s:"%s" å‡ç´šä¸­... Download Error 下載錯誤 To upgrade your Web Bibles an Internet connection is required. å‡ç´šç¶²è·¯è–經需è¦ç¶²éš›ç¶²è·¯é€£ç·šã€‚ Upgrading Bible %s of %s: "%s" Upgrading %s ... 正在å‡ç´šè–ç¶“ %s çš„ %s:"%s" 正在å‡ç´š %s ... Upgrading Bible %s of %s: "%s" Complete 正在å‡ç´šè–ç¶“ %s çš„ %s:"%s" å®Œæˆ , %s failed , %s 失敗 Upgrading Bible(s): %s successful%s 正在å‡ç´šè–經: %s æˆåŠŸ %s Upgrade failed. å‡ç´šå¤±æ•—。 You need to specify a backup directory for your Bibles. æ‚¨éœ€è¦æŒ‡å®šä¸€å€‹è–經備份資料夾。 Starting upgrade... é–‹å§‹å‡ç´š... There are no Bibles that need to be upgraded. 沒有è–經需è¦å‡ç´šã€‚ Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. æä¾›äº†ä¸æ­£ç¢ºçš„è–經文件類型, OpenSong è–經或許被壓縮éŽ. 您必須在導入å‰è§£å£“縮它們。 BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... 匯入%(bookname)s %(chapter)s中... CustomPlugin Custom Slide name singular 自訂幻燈片 Custom Slides name plural 自訂幻燈片 Custom Slides container title 自訂幻燈片 Load a new custom slide. 載入新幻燈片.。 Import a custom slide. 匯入一張幻燈片。 Add a new custom slide. 新增幻燈片。 Edit the selected custom slide. 編輯幻燈片。 Delete the selected custom slide. 刪除幻燈片。 Preview the selected custom slide. é è¦½å¹»ç‡ˆç‰‡ã€‚ Send the selected custom slide live. 傳é€å¹»ç‡ˆç‰‡è‡³ç¾å ´Live。 Add the selected custom slide to the service. æ–°å¢žå¹»ç‡ˆç‰‡è‡³èšæœƒã€‚ <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>自定義幻燈片æ’ä»¶</strong><br />自定義幻燈片æ’ä»¶æä¾›è¨­ç½®å¯åƒæ­Œæ›²ä¸€æ¨£æ”¾ç½®åœ¨èž¢å¹•上的自定義文字幻燈片的能力。這個æ’件在歌曲æ’ä»¶æä¾›äº†æ›´å¤§çš„自由度。 CustomPlugin.CustomTab Custom Display 自定義顯示 Display footer 顯示é å°¾ Import missing custom slides from service files å¾žèšæœƒç®¡ç†åŒ¯å…¥éºå¤±çš„自訂幻燈片檔案 CustomPlugin.EditCustomForm Edit Custom Slides 編輯幻燈片 &Title: 標題(&T): Add a new slide at bottom. 在底部新增一張幻燈片。 Edit the selected slide. 編輯幻燈片。 Edit all the slides at once. åŒæ™‚編輯全部的幻燈片。 Split a slide into two by inserting a slide splitter. æ’入一個幻燈片分格符號來將一張幻燈片分為兩張。 The&me: 佈景主題(&M): &Credits: åƒèˆ‡åå–®(&C): You need to type in a title. 你需è¦è¼¸å…¥æ¨™é¡Œã€‚ Ed&it All 編輯全部(&I) Insert Slide æ’入幻燈片 You need to add at least one slide. ä½ éœ€è¦æ–°å¢žè‡³å°‘一é å¹»ç‡ˆç‰‡ã€‚ CustomPlugin.EditVerseForm Edit Slide 編輯幻燈片 CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>圖片æ’ä»¶</strong><br />圖片æ’ä»¶æä¾›åœ–片顯示。<br /> 這個æ’件其中一個顯著的特徵是它å¯ä»¥åœ¨èšæœƒç®¡ç†ä¸­å°‡å¤šå¼µç…§ç‰‡åˆ†çµ„,更容易顯示多張照片。這個æ’件也å¯ä»¥ä½¿ç”¨OpenLP的計時循環效果來建立å¯è‡ªå‹•撥放的幻燈片效果。除此之外,該æ’件中的圖片å¯ä»¥ç”¨ä¾†è¦†è“‹ç•¶å‰ä¸»é¡Œçš„èƒŒæ™¯ï¼Œä½¿å¾—æ–‡å­—é …ç›®å¦‚æ­Œæ›²ä½¿ç”¨é¸æ“‡çš„åœ–ç‰‡ä½œç‚ºèƒŒæ™¯ï¼Œè€Œä¸æ˜¯ç”±ä½ˆæ™¯ä¸»é¡Œæ‰€æä¾›çš„背景。 Image name singular 圖片 Images name plural 圖片 Images container title 圖片 Load a new image. 載入新圖片。 Add a new image. 加入新圖片。 Edit the selected image. 編輯圖片。 Delete the selected image. 刪除圖片。 Preview the selected image. é è¦½åœ–片。 Send the selected image live. 傳é€åœ–片至ç¾å ´Live。 Add the selected image to the service. åŠ å…¥é¸æ“‡çš„åœ–ç‰‡åˆ°èšæœƒã€‚ ImagePlugin.AddGroupForm Add group 新增群組 Parent group: 主群組: Group name: 群組å稱: You need to type in a group name. 您需è¦è¼¸å…¥ä¸€å€‹ç¾¤çµ„å稱。 Could not add the new group. 無法新增新的群組。 This group already exists. 此群組已存在。 ImagePlugin.ChooseGroupForm Select Image Group 鏿“‡å½±åƒç¾¤çµ„ Add images to group: 新增圖片到群組: No group 無群組 Existing group ç¾æœ‰ç¾¤çµ„ New group 新群組 ImagePlugin.ExceptionDialog Select Attachment 鏿“‡é™„ä»¶ ImagePlugin.MediaItem Select Image(s) 鏿“‡åœ–片 You must select an image to replace the background with. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹åœ–案來替æ›èƒŒæ™¯ã€‚ Missing Image(s) éºå¤±åœ–片 The following image(s) no longer exist: %s 下列圖片已ä¸å­˜åœ¨ï¼š %s The following image(s) no longer exist: %s Do you want to add the other images anyway? 下列圖片已ä¸å­˜åœ¨ï¼š %s 您想è¦å¾žä»»ä½•地方加入其他圖片? There was a problem replacing your background, the image file "%s" no longer exists. 替æ›èƒŒæ™¯æ™‚發生錯誤,圖片 %s å·²ä¸å­˜åœ¨ã€‚ There was no display item to amend. 沒有顯示的項目å¯ä»¥ä¿®æ”¹ã€‚ -- Top-level group -- -- 最上層群組 -- You must select an image or group to delete. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹åœ–案或群組刪除。 Remove group 移除群組 Are you sure you want to remove "%s" and everything in it? 您確定想è¦ç§»é™¤ %s åŠæ‰€æœ‰å…§éƒ¨æ‰€æœ‰æ±è¥¿ï¼Ÿ ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. å¯è¦‹çš„背景圖片與螢幕長寬比例ä¸åŒã€‚ Media.player Audio è²éŸ³ Video å½±åƒ VLC is an external player which supports a number of different formats. VLC是一個外部播放器,支æ´å¤šç¨®ä¸åŒçš„æ ¼å¼ã€‚ Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit 是一款在網é ç€è¦½å™¨å…§åŸ·è¡Œçš„媒體播放器。這款播放器å¯ä»¥è®“文字通éŽå½±åƒä¾†å‘ˆç¾ã€‚ This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>媒體æ’ä»¶</strong><br />媒體æ’ä»¶æä¾›è²éŸ³èˆ‡å½±åƒçš„æ’­æ”¾ã€‚ Media name singular 媒體 Media name plural 媒體 Media container title 媒體 Load new media. 載入新媒體。 Add new media. 加入新媒體。 Edit the selected media. 編輯媒體。 Delete the selected media. 刪除媒體。 Preview the selected media. é è¦½åª’體。 Send the selected media live. 傳é€åª’體至ç¾å ´Live。 Add the selected media to the service. åŠ å…¥åˆ°èšæœƒã€‚ MediaPlugin.MediaClipSelector Select Media Clip 鏿“‡åª’體片段 Source ä¾†æº Media path: 媒體路徑: Select drive from list å¾žæ¸…å–®é¸æ“‡é©…å‹• Load disc 載入光碟 Track Details 軌é“細節 Title: 標題: Audio track: è²éŸ³è»Œï¼š Subtitle track: 副標題: HH:mm:ss.z HH:mm:ss.z Clip Range ç‰‡æ®µç¯„åœ Start point: 起始點: Set start point 設定起始點 Jump to start point 跳至起始點 End point: çµæŸé»žï¼š Set end point è¨­å®šçµæŸé»ž Jump to end point è·³è‡³çµæŸé»ž MediaPlugin.MediaClipSelectorForm No path was given 沒有é¸å–路徑 Given path does not exists é¸å–的路徑ä¸å­˜åœ¨ An error happened during initialization of VLC player åˆå§‹åŒ– VLC 播放器發生錯誤 VLC player failed playing the media 此媒體 VLC播放器無法播放 CD not loaded correctly CD無法正確載入 The CD was not loaded correctly, please re-load and try again. CDç„¡æ³•æ­£ç¢ºè¼‰å…¥ï¼Œè«‹é‡æ–°æ”¾å…¥å†é‡è©¦ã€‚ DVD not loaded correctly DVD無法正確載入 The DVD was not loaded correctly, please re-load and try again. DVDç„¡æ³•æ­£ç¢ºè¼‰å…¥ï¼Œè«‹é‡æ–°æ”¾å…¥å†é‡è©¦ã€‚ Set name of mediaclip 設定媒體片段的å稱 Name of mediaclip: 片段å稱: Enter a valid name or cancel 輸入有效的åç¨±æˆ–å–æ¶ˆ Invalid character 無效字元 The name of the mediaclip must not contain the character ":" 片段的å稱ä¸å¾—åŒ…å« ":" å­—å…ƒ MediaPlugin.MediaItem Select Media 鏿“‡åª’é«” You must select a media file to delete. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹è¦åˆªé™¤çš„媒體檔。 You must select a media file to replace the background with. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹åª’體檔來替æ›èƒŒæ™¯ã€‚ There was a problem replacing your background, the media file "%s" no longer exists. 替æ›èƒŒæ™¯æ™‚出ç¾ä¸€å€‹å•題, 媒體檔 "%s" å·²ä¸å­˜åœ¨ã€‚ Missing Media File éºå¤±åª’體檔案 The file %s no longer exists. 檔案 %s å·²ä¸å­˜åœ¨ã€‚ Videos (%s);;Audio (%s);;%s (*) å½±åƒ (%s);;è²éŸ³ (%s);;%s (*) There was no display item to amend. 沒有顯示的項目å¯ä»¥ä¿®æ”¹ã€‚ Unsupported File æª”æ¡ˆä¸æ”¯æ´ Use Player: 使用播放器: VLC player required éœ€è¦ VLC播放器 VLC player required for playback of optical devices è¦æ’­æ”¾çš„光碟需è¦VLC播放器 Load CD/DVD 載入 CD/DVD Load CD/DVD - only supported when VLC is installed and enabled 載入 CD/DVD - 僅支æ´åœ¨VLC已安è£ä¸”啟用 The optical disc %s is no longer available. 光碟 %s ä¸å¯ç”¨ã€‚ Mediaclip already saved 媒體片段已存檔 This mediaclip has already been saved 該媒體片段已儲存 MediaPlugin.MediaTab Allow media player to be overridden å…許媒體播放器被覆蓋 Start Live items automatically 自動啟動Liveé …ç›® OPenLP.MainWindow &Projector Manager 投影機管ç†(&P) OpenLP Image Files åœ–åƒæª” Information 資訊 Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? è–ç¶“æ ¼å¼å·²è®Šæ›´ã€‚ 您必須å‡ç´šç¾æœ‰çš„è–經。 ç¾åœ¨è®“OpenLPå‡ç´šå®ƒå€‘? Backup 備份 OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLPå·²å‡ç´šï¼Œæ‚¨æƒ³è¦å»ºç«‹ OpenLP資料文件夾 的備份嗎? Backup of the data folder failed! è³‡æ–™å¤¾å‚™ä»½å¤±æ•—ï¼ A backup of the data folder has been created at %s 已建立資料文件夾的備份在 %s Open 開啟 OpenLP.AboutForm Credits åƒèˆ‡è€… License 授權 build %s 版本 %s 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; version 2 of the License. é€™ä¸€ç¨‹åºæ˜¯è‡ªç”±è»Ÿé«”,你å¯ä»¥éµç…§è‡ªç”±è»Ÿé«”基金會出版的 GNU通用公共許å¯è­‰æ¢æ¬¾ç¬¬äºŒç‰ˆä¾†ä¿®æ”¹å’Œé‡æ–°ç™¼ä½ˆé€™ä¸€ç¨‹åºã€‚ 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 below for more details. é€™å€‹ç¨‹å¼æ˜¯åœ¨æœŸæœ›å®ƒæ˜¯å¯è¡Œçš„æƒ…æ³ä¸‹ç™¼å¸ƒï¼Œ 但是沒有任何擔ä¿ï¼Œç”šè‡³æ²’有暗示的é©ç”¨æ€§æˆ–é‡å°æ–¼ç‰¹å®šç”¨é€”çš„ä¿éšœã€‚è«‹åƒé–±ä¸‹åˆ—更多細節。 OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. Volunteer 志願者 Project Lead 專案負責人 Developers 開發人員 Contributors è²¢ç»è€… Packagers Testers 測試員 Translators 譯者 Afrikaans (af) å—éžè·è˜­èªž (af) Czech (cs) æ·å…‹èªž (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) 中文(China) (zh_CN) Documentation 文件 Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings 介é¢è¨­å®š Number of recent files to display: 顯示最近開啟文件的數é‡ï¼š Remember active media manager tab on startup 記ä½å•Ÿå‹•時啟用媒體管ç†é ç±¤ Double-click to send items straight to live 雙擊傳é€é¸æ“‡çš„項目至ç¾å ´Live Expand new service items on creation æ–°å¢žé …ç›®åˆ°èšæœƒæ™‚展開 Enable application exit confirmation 當應用程å¼é€€å‡ºæ™‚ç¢ºèª Mouse Cursor 滑鼠游標 Hide mouse cursor when over display window 移動到顯示畫é¢ä¸Šæ™‚éš±è—æ»‘é¼ éŠæ¨™ Default Image é è¨­åœ–片 Background color: 背景é¡è‰²ï¼š Image file: 圖片檔案: Open File 開啟檔案 Advanced 進階 Preview items when clicked in Media Manager 點擊在媒體管ç†ä¸­çš„項目時é è¦½ Browse for an image file to display. ç€è¦½åœ–片檔顯示。 Revert to the default OpenLP logo. 還原為é è¨­çš„OpenLP標誌 Default Service Name é è¨­èšæœƒå稱 Enable default service name 使用é è¨­èšæœƒå稱 Date and Time: æ™‚é–“åŠæ—¥æœŸï¼š Monday 星期一 Tuesday 星期二 Wednesday 星期三 Friday 星期五 Saturday 星期六 Sunday 星期日 Now ç¾åœ¨ Time when usual service starts. å¹³æ™‚èšæœƒé–‹å§‹æ™‚間。 Name: å稱: Consult the OpenLP manual for usage. åƒé–±OpenLP使用手冊。 Revert to the default service name "%s". æ¢å¾©é è¨­èšæœƒå稱 "%s"。 Example: 範例: Bypass X11 Window Manager ç¹žéŽ X11視窗管ç†å™¨ Syntax error. 語法錯誤。 Data Location 資料ä½ç½® Current path: ç›®å‰è·¯å¾‘: Custom path: 自訂路徑: Browse for new data file location. ç€è¦½æ–°çš„資料檔案ä½ç½®ã€‚ Set the data location to the default. 將資料ä½ç½®è¨­å®šæˆé è¨­ã€‚ Cancel å–æ¶ˆ Cancel OpenLP data directory location change. å–æ¶ˆ OpenLP 資料目錄ä½ç½®è®Šæ›´ã€‚ Copy data to new location. 複製資料到新ä½ç½®ã€‚ Copy the OpenLP data files to the new location. 複製 OpenLP 資料檔案到新ä½ç½®ã€‚ <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>警告:</strong> 新資料目錄ä½ç½®åŒ…å«OpenLP 資料檔案. 這些檔案將會在複製時被替æ›ã€‚ Data Directory Error 資料目錄錯誤 Select Data Directory Location 鏿“‡è³‡æ–™ç›®éŒ„ä½ç½® Confirm Data Directory Change ç¢ºèªæ›´æ”¹è³‡æ–™ç›®éŒ„ Reset Data Directory é‡è¨­è³‡æ–™ç›®éŒ„ Overwrite Existing Data 複寫已存在的資料 OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. 找ä¸åˆ° OpenLP 資料目錄 %s 這個資料目錄之å‰ç”± OpenLP çš„é è¨­ä½ç½®æ”¹è®Šè€Œä¾†ã€‚若新ä½ç½®æ˜¯åœ¨å¯ç§»å‹•媒體上,該媒體需è¦ç‚ºå¯ç”¨è¨­å‚™ é»žé¸ "å¦" åœæ­¢è¼‰å…¥OpenLP. å…許您修復這個å•題。 é»žé¸ "是" é‡è¨­è³‡æ–™ç›®éŒ„到é è¨­ä½ç½®ã€‚ Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. 您確定è¦è®Šæ›´ OpenLP 資料目錄的ä½ç½®åˆ°%s ? 此資料目錄將在 OpenLP 關閉後變更。 Thursday 星期四 Display Workarounds 顯示異常解決方法 Use alternating row colours in lists 在列表使用交替å¼è‰²å½© WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? 警告: æ‚¨é¸æ“‡çš„ä½ç½®: %s ä¼¼ä¹ŽåŒ…å« OpenLP 資料檔案. 您希望將這些文件替æ›ç‚ºç•¶å‰çš„資料檔案嗎? Restart Required 需è¦é‡æ–°å•Ÿå‹• This change will only take effect once OpenLP has been restarted. æ­¤è®Šæ›´åªæœƒåœ¨ OpenLP 釿–°å•Ÿå‹•後生效。 Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. é»žæ“Šä»¥é¸æ“‡é¡è‰²ã€‚ OpenLP.DB RGB RGB Video å½±åƒ Digital æ•¸ä½ Storage 儲存 Network 網路 RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 å½±åƒ 1 Video 2 å½±åƒ 2 Video 3 å½±åƒ 3 Video 4 å½±åƒ 4 Video 5 å½±åƒ 5 Video 6 å½±åƒ 6 Video 7 å½±åƒ 7 Video 8 å½±åƒ 8 Video 9 å½±åƒ 9 Digital 1 æ•¸ä½ 1 Digital 2 æ•¸ä½ 2 Digital 3 æ•¸ä½ 3 Digital 4 æ•¸ä½ 4 Digital 5 æ•¸ä½ 5 Digital 6 æ•¸ä½ 6 Digital 7 æ•¸ä½ 7 Digital 8 æ•¸ä½ 8 Digital 9 æ•¸ä½ 9 Storage 1 儲存 1 Storage 2 儲存 2 Storage 3 儲存 3 Storage 4 儲存 4 Storage 5 儲存 5 Storage 6 儲存 6 Storage 7 儲存 7 Storage 8 儲存 8 Storage 9 儲存 9 Network 1 網路 1 Network 2 網路 2 Network 3 網路 3 Network 4 網路 4 Network 5 網路 5 Network 6 網路 6 Network 7 網路 7 Network 8 網路 8 Network 9 網路 9 OpenLP.ExceptionDialog Error Occurred 發生錯誤 Send E-Mail 寄é€E-Mail Save to File 儲存為檔案 Attach File 附加檔案 Description characters to enter : %s 輸入æè¿°æ–‡å­—: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s å¹³å°: %s Save Crash Report 儲存崩潰報告 Text files (*.txt *.log *.text) 文字檔 (*.txt *.log *.text) OpenLP.FileRenameForm File Rename 釿–°å‘½å檔案 New File Name: 新檔案å稱: File Copy 複製檔案 OpenLP.FirstTimeLanguageForm Select Translation 鏿“‡ç¿»è­¯ Choose the translation you'd like to use in OpenLP. 鏿“‡æ‚¨å¸Œæœ›ä½¿ç”¨çš„OpenLP翻譯版本。 Translation: 翻譯: OpenLP.FirstTimeWizard Songs 歌曲 First Time Wizard 首次é…ç½®ç²¾éˆ Welcome to the First Time Wizard 歡迎使用首次é…ç½®ç²¾éˆ Activate required Plugins 啟用所需的æ’ä»¶ Select the Plugins you wish to use. 鏿“‡æ‚¨æƒ³ä½¿ç”¨çš„æ’ä»¶ã€‚ Bible è–ç¶“ Images 圖片 Presentations ç°¡å ± Media (Audio and Video) 媒體(è²éŸ³å’Œè¦–訊) Allow remote access å…許é ç«¯é€£ç·š Monitor Song Usage 監視歌曲使用記錄 Allow Alerts å…許警報 Default Settings é è¨­çš„設定 Downloading %s... 下載 %s 中... Enabling selected plugins... 啟用所é¸çš„æ’ä»¶... No Internet Connection 沒有連線到網際網路 Unable to detect an Internet connection. ç„¡æ³•åµæ¸¬åˆ°ç¶²éš›ç¶²è·¯é€£ç·šã€‚ Sample Songs 歌曲範本 Select and download public domain songs. 鏿“‡ä¸¦ä¸‹è¼‰å…¬å…±é ˜åŸŸçš„æ­Œæ›²ã€‚ Sample Bibles è–經範本 Select and download free Bibles. 鏿“‡ä¸¦ä¸‹è¼‰å…è²»è–經。 Sample Themes 佈景主題範本 Select and download sample themes. 鏿“‡ä¸¦ä¸‹è¼‰ä½ˆæ™¯ä¸»é¡Œç¯„例。 Set up default settings to be used by OpenLP. 使用 OpenLP é è¨­è¨­å®šã€‚ Default output display: é è¨­çš„輸出顯示: Select default theme: 鏿“‡é è¨­ä½ˆæ™¯ä¸»é¡Œï¼š Starting configuration process... 開始設定程åº... Setting Up And Downloading 設定並下載中 Please wait while OpenLP is set up and your data is downloaded. è«‹ç¨ç­‰ï¼ŒOpenLP在設定並下載您的資料。 Setting Up 設定 Custom Slides 自訂幻燈片 Finish å®Œæˆ No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. 找ä¸åˆ°ç¶²éš›ç¶²è·¯é€£ç·šã€‚首次é…置精éˆéœ€è¦ç¶²è·¯é€£æŽ¥ä»¥ä¾¿ä¸‹è¼‰æ­Œæ›²ç¯„本ã€è–ç¶“åŠä½ˆæ™¯ä¸»é¡Œã€‚ç¾åœ¨è«‹é»žæ“Š å®Œæˆ æŒ‰éˆ•é–‹å§‹OpenLPåˆå§‹è¨­å®š(沒有範本資料) ç¨å¾Œå†é‡æ–°åŸ·è¡Œé¦–次é…置精éˆä¸¦ä¸‹è¼‰ç¯„本資料,請檢查您的網路連線並在 OpenLP 中 鏿“‡"工具 / 釿–°åŸ·è¡Œé¦–次é…置精éˆ"。 Download Error 下載錯誤 There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. 下載éŽç¨‹ä¸­ç™¼ç”Ÿé€£ç·šå•題,所以接下來的下載將被跳éŽã€‚è«‹ç¨å¾Œå†é‡æ–°åŸ·è¡Œé¦–次é…置精éˆã€‚ Download complete. Click the %s button to return to OpenLP. 下載完æˆã€‚請點擊 %s 按扭回到OpenLP。 Download complete. Click the %s button to start OpenLP. 下載完æˆã€‚請點擊 %s 按扭啟動OpenLP。 Click the %s button to return to OpenLP. 請點擊 %s 按扭回到OpenLP。 Click the %s button to start OpenLP. 請點擊 %s 按扭啟動OpenLP。 There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. 下載éŽç¨‹ä¸­ç™¼ç”Ÿé€£ç·šå•題,所以接下來的下載將被跳éŽã€‚è«‹ç¨å¾Œå†é‡æ–°åŸ·è¡Œé¦–次é…置精éˆã€‚ This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. 該精éˆå°‡å¹«åŠ©æ‚¨é…ç½®OpenLP首次使用。點擊下é¢çš„ %s 按鈕開始。 To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. è¦å–消首次é…置精éˆ(而且ä¸å•Ÿå‹•OpenLP),請ç¾åœ¨é»žæ“Š %s 按鈕。 Downloading Resource Index 下載資æºç´¢å¼• Please wait while the resource index is downloaded. è«‹ç¨å€™ï¼Œè³‡æºç´¢å¼•正在下載。 Please wait while OpenLP downloads the resource index file... è«‹ç¨å€™ï¼ŒOpenLP下載資æºç´¢å¼•文件... Downloading and Configuring 下載並設定 Please wait while resources are downloaded and OpenLP is configured. è«‹ç¨å€™ï¼Œæ­£åœ¨ä¸‹è¼‰è³‡æºå’Œé…ç½®OpenLP。 Network Error 網路錯誤 There was a network error attempting to connect to retrieve initial configuration information 嘗試連接ç²å–åˆå§‹é…置資訊發生一個網路錯誤 Cancel å–æ¶ˆ Unable to download some files 無法下載一些檔案 OpenLP.FormattingTagDialog Configure Formatting Tags 設定格å¼åŒ–標籤 Description 說明 Tag 標籤 Start HTML é–‹å§‹HTML End HTML çµæŸHTML Default Formatting é è¨­æ ¼å¼ Custom Formatting å­—å®šæ ¼å¼ OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error 驗證錯誤 Description is missing æè¿°éºå¤± Tag is missing 標籤éºå¤± Tag %s already defined. 標籤 %s 已定義。 Description %s already defined. æè¿° %s 已定義。 Start tag %s is not valid HTML 起始標籤 %s 䏿˜¯æœ‰æ•ˆçš„HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red 紅色 Black 黑色 Blue è—色 Yellow 黃色 Green 綠色 Pink 粉紅色 Orange 橙色 Purple 紫色 White 白色 Superscript 上標 Subscript 下標 Paragraph æ®µè½ Bold ç²—é«” Italics 斜體 Underline 底線 Break 中斷 OpenLP.GeneralTab General 一般 Monitors 顯示器 Select monitor for output display: 鏿“‡é¡¯ç¤ºå™¨è¼¸å‡ºé¡¯ç¤ºï¼š Display if a single screen å¦‚æžœåªæœ‰å–®èž¢å¹•也顯示 Application Startup 程å¼å•Ÿå‹•時 Show blank screen warning 顯示空白畫é¢è­¦å‘Š Automatically open the last service è‡ªå‹•æ‰“é–‹æœ€å¾Œçš„èšæœƒ Show the splash screen é¡¯ç¤ºå•Ÿå‹•ç•«é¢ Application Settings 應用程å¼è¨­å®š Prompt to save before starting a new service é–‹å§‹æ–°èšæœƒå‰æç¤ºå„²å­˜ Automatically preview next item in service 自動é è¦½åœ¨èšæœƒä¸­ä¸‹ä¸€å€‹é …ç›® sec ç§’ CCLI Details CCLI詳細資訊 SongSelect username: SongSelect 帳號: SongSelect password: SongSelect 密碼: X X座標 Y Y座標 Height 高度 Width 寬度 Check for updates to OpenLP 檢查 OpenLP æ›´æ–° Unblank display when adding new live item 新增項目到ç¾å ´Live時啟動顯示 Timed slide interval: 投影片間隔時間: Background Audio 背景音樂 Start background audio paused æš«åœèƒŒæ™¯éŸ³æ¨‚ Service Item Slide Limits èšæœƒé …目幻燈片é™åˆ¶ Override display position: 覆蓋顯示ä½ç½®ï¼š Repeat track list é‡è¤‡è»Œé“清單 Behavior of next/previous on the last/first slide: 下一個/å‰ä¸€å€‹ 在 最後一個/第一個幻燈片的行為: &Remain on Slide ä¿æŒåœ¨å¹»ç‡ˆç‰‡(&R) &Wrap around 環繞(&W) &Move to next/previous service item 移到 下一個/å‰ä¸€å€‹ èšæœƒé …ç›®(&M) OpenLP.LanguageManager Language 語言 Please restart OpenLP to use your new language setting. ä½¿ç”¨æ–°èªžè¨€è¨­å®šè«‹é‡æ–°å•Ÿå‹•OpenLP。 OpenLP.MainDisplay OpenLP Display OpenLP 顯示 OpenLP.MainWindow &File 檔案(&F) &Import 匯入(&I) &Export 匯出(&E) &View 檢視(&V) M&ode 模å¼(&O) &Tools 工具(&T) &Settings 設定(&S) &Language 語言(&L) &Help 幫助(&H) Service Manager èšæœƒç®¡ç† Theme Manager ä½ˆæ™¯ä¸»é¡Œç®¡ç† Open an existing service. é–‹å•Ÿç¾æœ‰çš„èšæœƒã€‚ Save the current service to disk. 儲存目å‰çš„èšæœƒåˆ°ç£ç¢Ÿã€‚ Save Service As å„²å­˜èšæœƒåˆ° Save the current service under a new name. 儲存目å‰çš„èšæœƒåˆ°æ–°çš„å稱。 E&xit 離開(&E) Quit OpenLP 離開OpenLP &Theme 佈景主題(&T) &Configure OpenLP... 設置 OpenLP(&C)... &Media Manager 媒體管ç†(&M) Toggle Media Manager 切æ›åª’é«”ç®¡ç† Toggle the visibility of the media manager. 切æ›åª’體管ç†çš„å¯è¦‹æ€§ã€‚ &Theme Manager 佈景主題管ç†(&T) Toggle Theme Manager 切æ›ä½ˆæ™¯ä¸»é¡Œç®¡ç† Toggle the visibility of the theme manager. 切æ›ä½ˆæ™¯ä¸»é¡Œç®¡ç†çš„å¯è¦‹æ€§ã€‚ &Service Manager èšæœƒç®¡ç†(&S) Toggle Service Manager 切æ›èšæœƒç®¡ç† Toggle the visibility of the service manager. 切æ›èšæœƒç®¡ç†å¯è¦‹æ€§ã€‚ &Preview Panel é è¦½é¢æ¿(&P) Toggle Preview Panel 切æ›é è¦½é¢æ¿ Toggle the visibility of the preview panel. 切æ›é è¦½é¢æ¿çš„å¯è¦‹æ€§ã€‚ &Live Panel ç¾å ´Live颿¿(&L) Toggle Live Panel 切æ›ç¾å ´Live颿¿ Toggle the visibility of the live panel. 切æ›ç¾å ´Live颿¿çš„å¯è¦‹æ€§ã€‚ List the Plugins æ’件清單 &User Guide 使用手冊(&U) &About 關於(&A) More information about OpenLP 更多 OpenLP 資訊 &Online Help 線上幫助(&O) &Web Site 網站(&W) Use the system language, if available. 如果å¯ç”¨ï¼Œä½¿ç”¨ç³»çµ±èªžè¨€ã€‚ Set the interface language to %s 設定界é¢èªžè¨€ç‚º %s Add &Tool... 新增工具(&T)... Add an application to the list of tools. 新增應用程åºåˆ°å·¥å…·åˆ—表。 &Default é è¨­(&D) Set the view mode back to the default. å°‡æª¢è¦–æ¨¡å¼æ¢å¾©é è¨­å€¼ã€‚ &Setup 設置(&S) Set the view mode to Setup. 將檢視模å¼è¨­å®šç‚ºè¨­ç½®ã€‚ &Live ç¾å ´Live(&L) Set the view mode to Live. 將檢視模å¼è¨­å®šç‚ºç¾å ´ã€‚ Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP 版本 %s å·²å¯ä¸‹è¼‰(您目å‰ä½¿ç”¨çš„版本為 %s) 您å¯ä»¥å¾ž http://openlp.org 下載最新版本。 OpenLP Version Updated OpenLP 版本已更新 OpenLP Main Display Blanked OpenLP 主顯示已清空 The Main Display has been blanked out 主顯示已被清空 Default Theme: %s é è¨­ä½ˆæ™¯ä¸»é¡Œ: %s English Please add the name of your language here ç¹é«”中文 Configure &Shortcuts... 設置快æ·éµ(&S)... Open &Data Folder... 開啟檔案資料夾(&D)... Open the folder where songs, bibles and other data resides. 開啟歌曲ã€è–ç¶“åŠå…¶ä»–文件所在資料夾。 &Autodetect 自動檢測(&A) Update Theme Images 更新佈景主題圖片 Update the preview images for all themes. 為所有佈景主題更新é è¦½åœ–片。 Print the current service. 列å°ç›®å‰èšæœƒã€‚ L&ock Panels éŽ–å®šé¢æ¿(&L) Prevent the panels being moved. é˜²æ­¢ç§»å‹•é¢æ¿ã€‚ Re-run First Time Wizard 釿–°åŸ·è¡Œé¦–次é…ç½®ç²¾éˆ Re-run the First Time Wizard, importing songs, Bibles and themes. 釿–°åŸ·è¡Œé¦–次é…置精éˆï¼ŒåŒ¯å…¥æ­Œæ›²ã€è–ç¶“åŠä¸»é¡Œã€‚ Re-run First Time Wizard? 釿–°åŸ·è¡Œé¦–次é…置精éˆï¼Ÿ Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. 您確定è¦é‡æ–°åŸ·è¡Œé¦–次é…置精éˆå—Žï¼Ÿ 釿–°åŸ·è¡Œå¯èƒ½æœƒæ”¹è®Šæ‚¨ç•¶å‰çš„OpenLPé…置並å¯èƒ½åœ¨ä»¥å„²å­˜çš„æ­Œæ›²åˆ—è¡¨ä¸­æ·»åŠ æ­Œæ›²åŠæ”¹è®Šé»˜èªçš„佈景主題。 Clear List Clear List of recent files 清除列表 Clear the list of recent files. 清空最近使用的文件列表。 Configure &Formatting Tags... è¨­ç½®æ ¼å¼æ¨™ç±¤(&F)... Export OpenLP settings to a specified *.config file å°‡ OpenLP 設定匯出到指定的 *.config檔案 Settings 設定 Import OpenLP settings from a specified *.config file previously exported on this or another machine 從之å‰ç”±æœ¬æ©Ÿæˆ–其他機器所匯出的 config 文件匯入OpenLP設定 Import settings? 匯入設定? Open File 開啟檔案 OpenLP Export Settings Files (*.conf) OpenLP匯出設定檔 (*.conf) Import settings 匯入設定 OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP å³å°‡é—œé–‰ã€‚匯入的設定將會在下一次啟動 OpenLP 時套用。 Export Settings File 匯出設定檔 OpenLP Export Settings File (*.conf) OpenLP 匯出設定檔 (*.conf) New Data Directory Error 新的資料目錄錯誤 Copying OpenLP data to new data directory location - %s - Please wait for copy to finish 正在複製 OpenLP 資料到新的資料目錄ä½ç½® - %s - ï¼Œè«‹ç­‰å¾…è¤‡è£½å®Œæˆ OpenLP Data directory copy failed %s OpenLP 資料目錄複製失敗 %s General 一般 Library 工具庫 Jump to the search box of the current active plugin. 跳至當å‰ä½¿ç”¨ä¸­æ’ä»¶çš„æœå°‹æ¬„。 Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. 您確定è¦åŒ¯å…¥è¨­å®šå—Ž? åŒ¯å…¥è¨­å®šå°‡æœƒæ°¸ä¹…æ€§çš„æ”¹è®Šç›®å‰ OpenLP é…置。 åŒ¯å…¥ä¸æ­£ç¢ºçš„設定å¯èƒ½å°Žè‡´é£›é æœŸçš„行為或 OpenLP 䏿­£å¸¸çµ‚止。 The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. æ‚¨é¸æ“‡çš„æª”æ¡ˆä¼¼ä¹Žä¸æ˜¯æœ‰æ•ˆçš„ OpenLP 設定檔。 程åºå·²çµ‚止並且未作任何變更。 Projector Manager æŠ•å½±æ©Ÿç®¡ç† Toggle Projector Manager åˆ‡æ›æŠ•å½±æ©Ÿç®¡ç† Toggle the visibility of the Projector Manager åˆ‡æ›æŠ•å½±æ©Ÿç®¡ç†å¯è¦‹æ€§ Export setting error 匯出設定錯誤 The key "%s" does not have a default value so it will be skipped in this export. éµå€¼ï¼š%s ä¸å…·æœ‰é è¨­å€¼ï¼Œå› æ­¤åŒ¯å‡ºæ™‚è·³éŽã€‚ An error occurred while exporting the settings: %s 匯出設定時發生錯誤:%s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error 資料庫錯誤 The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s 正在載入的資料庫是由更新的 OpenLP 版本建立的。資料庫版本為 %d,OpenLPé è¨ˆç‰ˆæœ¬ç‚º %dã€‚è©²è³‡æ–™åº«å°‡ä¸æœƒè¼‰å…¥ã€‚ 資料庫: %s OpenLP cannot load your database. Database: %s OpenLP無法載入您的資料庫。 資料庫: %s OpenLP.MediaManagerItem No Items Selected æœªé¸æ“‡é …ç›® &Add to selected Service Item æ–°å¢žé¸æ“‡çš„é …ç›®åˆ°èšæœƒ(&A) You must select one or more items to preview. æ‚¨å¿…é ˆé¸æ“‡ä¸€æˆ–多個項目é è¦½ã€‚ You must select one or more items to send live. æ‚¨å¿…é ˆé¸æ“‡ä¸€æˆ–多個項目é€åˆ°ç¾å ´Live。 You must select one or more items. æ‚¨å¿…é ˆé¸æ“‡ä¸€æˆ–多個項目。 You must select an existing service item to add to. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹ç¾æœ‰çš„èšæœƒæ–°å¢žã€‚ Invalid Service Item ç„¡æ•ˆçš„èšæœƒé …ç›® You must select a %s service item. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹ %s èšæœƒé …目。 You must select one or more items to add. æ‚¨å¿…é ˆé¸æ“‡ä¸€æˆ–多個項目新增。 No Search Results 沒有æœå°‹çµæžœ Invalid File Type 無效的檔案類型 Invalid File %s. Suffix not supported 無效的檔案 %s。 副檔å䏿”¯æ´ &Clone 複製(&C) Duplicate files were found on import and were ignored. 匯入時發ç¾é‡è¤‡æª”案並忽略。 OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> 標籤éºå¤±ã€‚ <verse> tag is missing. <verse> 標籤éºå¤±ã€‚ OpenLP.PJLink1 Unknown status 未知狀態 No message æ²’æœ‰è¨Šæ¯ Error while sending data to projector 傳é€è³‡æ–™åˆ°æŠ•影機時發生錯誤 Undefined command: 未定義指令: OpenLP.PlayerTab Players 播放器 Available Media Players å¯ç”¨åª’體播放器 Player Search Order 播放器æœå°‹é †åº Visible background for videos with aspect ratio different to screen. 影片å¯è¦‹çš„背景與螢幕的長寬比ä¸åŒã€‚ %s (unavailable) %s (ä¸å¯ç”¨) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details æ’件詳細資訊 Status: 狀態: Active 已啟用 Inactive 未啟用 %s (Inactive) %s (未啟用) %s (Active) %s (已啟用) %s (Disabled) %s (ç¦ç”¨) Manage Plugins OpenLP.PrintServiceDialog Fit Page é©åˆé é¢ Fit Width é©åˆå¯¬åº¦ OpenLP.PrintServiceForm Options é¸é … Copy 複製 Copy as HTML 複製為 HTML Zoom In 放大 Zoom Out ç¸®å° Zoom Original åŽŸå§‹å¤§å° Other Options å…¶ä»–é¸é … Include slide text if available 包å«å¹»ç‡ˆç‰‡æ–‡å­—(如果å¯ç”¨) Include service item notes 包å«èšæœƒé …ç›®çš„ç­†è¨˜ Include play length of media items 包å«åª’體播放長度 Add page break before each text item æ¯å€‹æ–‡å­—é …ç›®å‰æ’入分é ç¬¦è™Ÿ Service Sheet èšæœƒæ‰‹å†Š Print åˆ—å° Title: 標題: Custom Footer Text: 自訂é è…³æ–‡å­—: OpenLP.ProjectorConstants OK OK General projector error 一般投影機錯誤 Not connected error 沒有連線錯誤 Lamp error 燈泡異常 Fan error 風扇異常 High temperature detected 高溫檢測 Cover open detected 開蓋檢測 Check filter 檢查濾波器 Authentication Error 驗證錯誤 Undefined Command 未定義指令: Invalid Parameter ç„¡æ•ˆåƒæ•¸ Projector Busy 投影機忙碌 Projector/Display Error 投影機 / 顯示器錯誤 Invalid packet received 接收å°åŒ…無效 Warning condition detected é è­¦ç‹€æ…‹æª¢æ¸¬ Error condition detected 錯誤狀態檢測 PJLink class not supported PJLinké¡žåˆ¥ä¸æ”¯æ´ Invalid prefix character 無效的å‰ç¶´å­—å…ƒ The connection was refused by the peer (or timed out) 連線拒絕(或逾時) The remote host closed the connection é ç«¯ä¸»æ©Ÿé—œé–‰é€£ç·š The host address was not found 找ä¸åˆ°ä¸»æ©Ÿä½å€ The socket operation failed because the application lacked the required privileges 連接æ“作失敗,因缺ä¹å¿…è¦çš„æ¬Šé™ The local system ran out of resources (e.g., too many sockets) 本地端沒有資æºäº†(例如:連接太多) The socket operation timed out 連接æ“作逾時 The datagram was larger than the operating system's limit 數據包比作業系統é™åˆ¶å¤§ An error occurred with the network (Possibly someone pulled the plug?) 網路發生錯誤(å¯èƒ½æœ‰äººæ‹”掉æ’頭?) The address specified with socket.bind() is already in use and was set to be exclusive socket.bind() 指定的ä½å€å·²åœ¨ä½¿ç”¨ä¸­ï¼Œè¢«è¨­ç½®ç‚ºç¨å æ¨¡å¼ The address specified to socket.bind() does not belong to the host 指定的socket.bind() ä½å€ä¸å±¬æ–¼ä¸»æ©Ÿ The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) 䏿”¯æ´æœ¬åœ°ä½œæ¥­ç³»çµ±è¦æ±‚的連接(EX:缺少支æ´IPv6) The socket is using a proxy, and the proxy requires authentication 連接使用代ç†ä¼ºæœå™¨Proxy,且代ç†ä¼ºæœå™¨éœ€è¦èªè­‰ The SSL/TLS handshake failed SSL / TLS 信號交æ›éŒ¯èª¤ The last operation attempted has not finished yet (still in progress in the background) 最後一個嘗試的æ“作尚未完æˆã€‚(ä»åœ¨èƒŒæ™¯ç¨‹åº) Could not contact the proxy server because the connection to that server was denied 無法連接代ç†ä¼ºæœå™¨ï¼Œå› ç‚ºé€£æŽ¥è©²ä¼ºæœå™¨è¢«æ‹’絕 The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) 到代ç†ä¼ºæœå™¨çš„連接æ„外地被關閉(連接到最後å°ç­‰å»ºç«‹ä¹‹å‰) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. 到代ç†ä¼ºæœå™¨çš„連接逾時或代ç†ä¼ºæœå™¨åœåœ¨å›žæ‡‰èªè­‰éšŽæ®µã€‚ The proxy address set with setProxy() was not found 設置setProxy()找ä¸åˆ°ä»£ç†ä¼ºæœå™¨ä½å€ An unidentified error occurred ç™¼ç”Ÿä¸æ˜ŽéŒ¯èª¤ Not connected 沒有連線 Connecting 連線中 Connected 已連線 Getting status å–得狀態 Off é—œ Initialize in progress 進行åˆå§‹åŒ–中 Power in standby é›»æºåœ¨å¾…機 Warmup in progress 正在進行熱機 Power is on é›»æºåœ¨é–‹å•Ÿ Cooldown in progress æ­£åœ¨é€²è¡Œå†·å» Projector Information available 投影機æä¾›çš„è¨Šæ¯ Sending data ç™¼é€æ•¸æ“š Received data 接收到的數據 The connection negotiation with the proxy server failed because the response from the proxy server could not be understood 與代ç†ä¼ºæœå™¨çš„連接å”商失敗,因為從代ç†ä¼ºæœå™¨çš„回應無法了解 OpenLP.ProjectorEdit Name Not Set 未設定å稱 You must enter a name for this entry.<br />Please enter a new name for this entry. 你必須為此項目輸入一個å稱。<br />請為這個項目輸入新的å稱。 Duplicate Name é‡è¤‡çš„å稱 OpenLP.ProjectorEditForm Add New Projector 新增投影機 Edit Projector 編輯投影機 IP Address IP ä½å€ Port Number 連接埠 PIN PIN Name å稱 Location ä½ç½® Notes 筆記 Database Error 資料庫錯誤 There was an error saving projector information. See the log for the error 儲存投影機資訊發生錯誤。請查看錯誤記錄 OpenLP.ProjectorManager Add Projector 新增投影機 Add a new projector 新增投影機 Edit Projector 編輯投影機 Edit selected projector 編輯投影機 Delete Projector 刪除投影機 Delete selected projector 刪除投影機 Select Input Source 鏿“‡è¼¸å…¥ä¾†æº Choose input source on selected projector 鏿“‡è¼¸å…¥ä¾†æº View Projector 查看投影機 View selected projector information 查看投影機資訊 Connect to selected projector é€£æŽ¥é¸æ“‡çš„æŠ•影機 Connect to selected projectors é€£æŽ¥é¸æ“‡çš„æŠ•影機 Disconnect from selected projectors é›¢ç·šé¸æ“‡çš„æŠ•影機 Disconnect from selected projector é›¢ç·šé¸æ“‡çš„æŠ•影機 Power on selected projector æ‰“é–‹æŠ•å½±æ©Ÿé›»æº Standby selected projector 鏿“‡çš„æŠ•影機待機 Put selected projector in standby 鏿“‡çš„æŠ•影機進入待機 Blank selected projector screen 鏿“‡çš„æŠ•影機畫é¢ç©ºç™½ Show selected projector screen 鏿“‡çš„æŠ•影機畫é¢é¡¯ç¤º &View Projector Information 檢視投影機資訊(&V) &Edit Projector 編輯投影機(&E) &Connect Projector 投影機連線(&C) D&isconnect Projector 投影機斷線(&I) Power &On Projector æŠ•å½±æ©Ÿé›»æºæ‰“é–‹(&O) Power O&ff Projector 投影機電æºé—œé–‰(&F) Select &Input 鏿“‡è¼¸å…¥(&I) Edit Input Source ä¿®æ”¹è¼¸å…¥ä¾†æº &Blank Projector Screen 投影機畫é¢ç©ºç™½(&B) &Show Projector Screen 投影機畫é¢é¡¯ç¤º(&S) &Delete Projector 刪除投影機(&D) Name å稱 IP IP Port 連接埠 Notes 筆記 Projector information not available at this time. 此時沒有å¯ä½¿ç”¨çš„æŠ•影機資訊。 Projector Name 投影機å稱 Manufacturer 製造商 Model 型號 Other info 其他資訊 Power status é›»æºç‹€æ…‹ Shutter is é–˜æ¿æ˜¯ Closed 關閉 Current source input is ç•¶å‰è¼¸å…¥ä¾†æºæ˜¯ Lamp 燈泡 On é–‹ Off é—œ Hours 時 No current errors or warnings ç•¶å‰æ²’有錯誤或警告 Current errors/warnings ç•¶å‰éŒ¯èª¤ / 警告 Projector Information 投影機資訊 No message æ²’æœ‰è¨Šæ¯ Not Implemented Yet 尚未實行 Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan 風扇 Lamp 燈泡 Temperature 溫度 Cover è“‹å­ Filter 濾波器 Other Oå…¶ä»– OpenLP.ProjectorTab Projector 投影機 Communication Options 連接é¸é … Connect to projectors on startup 啟動時連接到投影機 Socket timeout (seconds) 連接逾時 (ç§’) Poll time (seconds) ç²å–時間 (ç§’) Tabbed dialog box 標籤å¼å°è©±æ¡† Single dialog box 單一å°è©±æ¡† OpenLP.ProjectorWizard Duplicate IP Address é‡è¤‡çš„IPä½å€ Invalid IP Address 無效的IPä½å€ Invalid Port Number 無效的連接埠 OpenLP.ScreenList Screen 螢幕 primary 主è¦çš„ OpenLP.ServiceItem <strong>Start</strong>: %s <strong>é–‹å§‹</strong>: %s <strong>Length</strong>: %s <strong>長度</strong>: %s [slide %d] [幻燈片 %d] OpenLP.ServiceItemEditForm Reorder Service Item 釿–°æŽ’åˆ—èšæœƒç‰©ä»¶ OpenLP.ServiceManager Move to &top 置頂(&T) Move item to the top of the service. 移到最上方。 Move &up 上移(&U) Move item up one position in the service. å‘上移動一個ä½ç½®ã€‚ Move &down 下移(&D) Move item down one position in the service. å‘下移動一個ä½ç½®ã€‚ Move to &bottom 置底(&B) Move item to the end of the service. 移到最下方。 &Delete From Service å¾žèšæœƒä¸­åˆªé™¤(&D) Delete the selected item from the service. å¾žèšæœƒåˆªé™¤æ‰€é¸æ“‡çš„項目。 &Add New Item 添加新項目(&A) &Add to Selected Item æ–°å¢žåˆ°é¸æ“‡çš„é …ç›®(&A) &Edit Item 編輯(&E) &Reorder Item 釿–°æŽ’列項目(&R) &Notes 筆記(&N) &Change Item Theme 變更佈景主題(&C) File is not a valid service. æª”æ¡ˆä¸æ˜¯ä¸€å€‹æœ‰æ•ˆçš„èšæœƒã€‚ Missing Display Handler éºå¤±é¡¯ç¤ºè™•ç†å™¨ Your item cannot be displayed as there is no handler to display it 您的項目無法顯示,因為沒有處ç†å™¨ä¾†é¡¯ç¤ºå®ƒ Your item cannot be displayed as the plugin required to display it is missing or inactive 您的項目無法顯示,所需的æ’ä»¶éºå¤±æˆ–無效 &Expand all 全部展開(&E) Expand all the service items. å±•é–‹æ‰€æœ‰èšæœƒé …目。 &Collapse all 全部收åˆ(&C) Collapse all the service items. æ”¶åˆæ‰€æœ‰èšæœƒé …ç›®ã€‚ Open File 開啟檔案 Moves the selection down the window. 下移到窗å£ã€‚ Move up 上移 Moves the selection up the window. 下移到窗å£ã€‚ Go Live ç¾å ´Live Send the selected item to Live. 傳é€é¸æ“‡çš„項目至ç¾å ´Live。 &Start Time 開始時間(&S) Show &Preview é è¦½(&P) Modified Service èšæœƒå·²ä¿®æ”¹ The current service has been modified. Would you like to save this service? ç›®å‰çš„èšæœƒå·²ä¿®æ”¹ã€‚您想è¦å„²å­˜æ­¤èšæœƒå—Žï¼Ÿ Custom Service Notes: ç›®å‰èšæœƒç­†è¨˜ï¼š Notes: 筆記: Playing time: 播放時間: Untitled Service ç„¡æ¨™é¡Œèšæœƒ File could not be opened because it is corrupt. 檔案已æå£žç„¡æ³•開啟。 Empty File 空的檔案 This service file does not contain any data. æ­¤èšæœƒæª”案未包å«ä»»ä½•資料。 Corrupt File 壞的檔案 Load an existing service. è¼‰å…¥ç¾æœ‰èšæœƒã€‚ Save this service. å„²å­˜èšæœƒã€‚ Select a theme for the service. 鏿“‡ä½ˆæ™¯ä¸»é¡Œã€‚ Slide theme 幻燈片佈景主題 Notes 筆記 Edit 編輯 Service copy only è¤‡è£½èšæœƒ Error Saving File 儲存檔案錯誤 There was an error saving your file. 儲存檔案時發生錯誤。 Service File(s) Missing èšæœƒæª”案éºå¤± &Rename... 釿–°å‘½å(&R)... Create New &Custom Slide 建立新自訂幻燈片(&C) &Auto play slides 幻燈片自動撥放(&A) Auto play slides &Loop 自動循環播放幻燈片(&L) Auto play slides &Once 自動一次撥放幻燈片(&O) &Delay between slides 幻燈片間延é²(&D) OpenLP Service Files (*.osz *.oszl) OpenLP èšæœƒæª” (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP èšæœƒæª” (*.osz);; OpenLP èšæœƒæª”-精簡版 (*.oszl) OpenLP Service Files (*.osz);; OpenLP èšæœƒæª” (*.osz);; File is not a valid service. The content encoding is not UTF-8. ç„¡æ•ˆçš„èšæœƒæª”ã€‚ç·¨ç¢¼éž UTF-8 æ ¼å¼ã€‚ The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. 您正試著打開舊版格å¼çš„èšæœƒæª”。 請使用 OpenLP 2.0.2 æˆ–æ›´é«˜çš„ç‰ˆæœ¬å„²å­˜æ­¤èšæœƒã€‚ This file is either corrupt or it is not an OpenLP 2 service file. 此文件已æå£žæˆ–å®ƒä¸æ˜¯ä¸€å€‹ OpenLP 2 èšæœƒæª”。 &Auto Start - inactive 自動開始(&A) - 未啟用 &Auto Start - active 自動開始(&A) - 已啟用 Input delay è¼¸å…¥å»¶é² Delay between slides in seconds. 幻燈片之間延é²ã€‚ Rename item title 釿–°å‘½å標題 Title: 標題: An error occurred while writing the service file: %s å¯«å…¥èšæœƒæª”時發生錯誤:%s The following file(s) in the service are missing: %s These files will be removed if you continue to save. ä»¥ä¸‹èšæœƒä¸­çš„æ–‡ä»¶å·²éºå¤±ï¼š %s 如果您想繼續儲存則這些文件將被移除。 OpenLP.ServiceNoteForm Service Item Notes èšæœƒé …目筆記 OpenLP.SettingsForm Configure OpenLP OpenLP 設定 OpenLP.ShortcutListDialog Action 啟用 Shortcut å¿«æ·å»º Duplicate Shortcut 複製æ·å¾‘ The shortcut "%s" is already assigned to another action, please use a different shortcut. å¿«æ·éµ "%s" 已分é…給其他動作,請使用其他的快æ·éµã€‚ Alternate 替代 Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. 鏿“‡ä¸€å€‹å‹•ä½œä¸¦é»žæ“Šä¸€å€‹æŒ‰éˆ•ä¾†é–‹å§‹è¨˜éŒ„æ–°çš„ä¸»è¦æˆ–替代的快æ·éµã€‚ Default é è¨­ Custom 自訂 Capture shortcut. 記錄快æ·éµã€‚ Restore the default shortcut of this action. 將此動作æ¢å¾©é è¨­å¿«æ·éµã€‚ Restore Default Shortcuts 回復é è¨­æ·å¾‘ Do you want to restore all shortcuts to their defaults? 你確定è¦å›žå¾©å…¨éƒ¨æ·å¾‘為é è¨­å€¼ï¼Ÿ Configure Shortcuts 設定快æ·éµ OpenLP.SlideController Hide éš±è— Go To 到 Blank Screen é»‘å± Blank to Theme 空白佈景主題 Show Desktop é¡¯ç¤ºæ¡Œé¢ Previous Service ä¸Šä¸€å€‹èšæœƒ Next Service ä¸‹ä¸€å€‹èšæœƒ Escape Item é¿é–‹é …ç›® Move to previous. 移至å‰ä¸€é …。 Move to next. 移至下一項。 Play Slides 播放幻燈片 Delay between slides in seconds. 幻燈片之間延é²ã€‚ Move to live. 移動至ç¾å ´Live。 Add to Service. æ–°å¢žè‡³èšæœƒã€‚ Edit and reload song preview. ç·¨è¼¯ä¸¦é‡æ–°è¼‰å…¥æ­Œæ›²é è¦½ã€‚ Start playing media. 開始播放媒體。 Pause audio. è²éŸ³æš«åœã€‚ Pause playing media. æš«åœæ’­æ”¾åª’體。 Stop playing media. åœæ­¢æ’­æ”¾åª’體。 Video position. 影片ä½ç½®ã€‚ Audio Volume. è²éŸ³éŸ³é‡ã€‚ Go to "Verse" 切æ›åˆ°"主歌" Go to "Chorus" 切æ›åˆ°"副歌" Go to "Bridge" 切æ›åˆ°"橋段" Go to "Pre-Chorus" 切æ›åˆ°"å°Žæ­Œ" Go to "Intro" 切æ›åˆ°"å‰å¥" Go to "Ending" 切æ›åˆ°"çµå°¾" Go to "Other" 切æ›åˆ°"å…¶ä»–" Previous Slide 上一張幻燈片 Next Slide 下一張幻燈片 Pause Audio è²éŸ³æš«åœ Background Audio 背景音樂 Go to next audio track. 切æ›åˆ°ä¸‹ä¸€å€‹éŸ³è»Œã€‚ Tracks 音軌 OpenLP.SourceSelectForm Select Projector Source 鏿“‡æŠ•å½±æ©Ÿä¾†æº Edit Projector Source Text ç·¨è¼¯æŠ•å½±æ©Ÿä¾†æºæ–‡å­— Ignoring current changes and return to OpenLP 忽略當å‰çš„變更並回到 OpenLP Delete all user-defined text and revert to PJLink default text 刪除所有使用者自定文字並æ¢å¾© PJLink é è¨­æ–‡å­— Discard changes and reset to previous user-defined text 放棄變更並æ¢å¾©åˆ°ä¹‹å‰ä½¿ç”¨è€…定義的文字 Save changes and return to OpenLP 儲存變更並回到OpenLP Delete entries for this projector å¾žåˆ—è¡¨ä¸­åˆªé™¤é€™å°æŠ•å½±æ©Ÿ Are you sure you want to delete ALL user-defined source input text for this projector? 您確定è¦åˆªé™¤é€™å€‹æŠ•å½±æ©Ÿæ‰€æœ‰ä½¿ç”¨è€…è‡ªå®šç¾©çš„è¼¸å…¥ä¾†æºæ–‡å­—? OpenLP.SpellTextEdit Spelling Suggestions 拼寫建議 Formatting Tags æ ¼å¼æ¨™ç±¤ Language: 語言: OpenLP.StartTimeForm Theme Layout ä½ˆæ™¯ä¸»é¡Œç‰ˆé¢ The blue box shows the main area. è—色框是顯示的主è¦å€åŸŸã€‚ The red box shows the footer. 紅色框顯示é è…³ã€‚ OpenLP.StartTime_form Item Start and Finish Time é …ç›®å•Ÿå‹•å’ŒçµæŸæ™‚é–“ Hours: 時: Minutes: 分: Seconds: 第二本: Start é–‹å§‹ Finish å®Œæˆ Length 長度 Time Validation Error 時間驗證錯誤 Finish time is set after the end of the media item å®Œæˆæ™‚é–“æ˜¯åª’é«”é …ç›®çµæŸå¾Œ Start time is after the finish time of the media item é–‹å§‹æ™‚é–“æ˜¯åœ¨åª’é«”é …ç›®çµæŸæ™‚間之後 OpenLP.ThemeForm (approximately %d lines per slide) (æ¯å¼µå¹»ç‡ˆç‰‡å¤§ç´„ %d 行) OpenLP.ThemeManager Create a new theme. 新建佈景主題。 Edit Theme 編輯 Edit a theme. 編輯佈景主題。 Delete Theme 刪除 Delete a theme. 刪除佈景主題。 Import Theme 匯入佈景主題 Import a theme. 匯入佈景主題。 Export Theme 匯出佈景主題 Export a theme. 匯出佈景主題。 &Edit Theme 編輯佈景主題(&E) &Delete Theme 刪除佈景主題(&D) Set As &Global Default 設定為全域é è¨­(&G) %s (default) %s (é è¨­) You must select a theme to edit. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹è¦ç·¨è¼¯çš„佈景主題。 You are unable to delete the default theme. 您無法刪除é è¨­çš„佈景主題。 You have not selected a theme. æ‚¨æ²’æœ‰é¸æ“‡ä½ˆæ™¯ä¸»é¡Œã€‚ Save Theme - (%s) 儲存佈景主題 - (%s) Theme Exported 佈景主題已匯出 Your theme has been successfully exported. 您的佈景主題已æˆåŠŸåŒ¯å‡ºã€‚ Theme Export Failed 佈景主題匯出失敗 Select Theme Import File 鏿“‡åŒ¯å…¥çš„佈景主題檔案 File is not a valid theme. æª”æ¡ˆä¸æ˜¯ä¸€å€‹æœ‰æ•ˆçš„佈景主題。 &Copy Theme 複製佈景主題(&C) &Rename Theme é‡å‘½å佈景主題(&R) &Export Theme 匯出佈景主題(&E) You must select a theme to rename. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹è¦é‡å‘½å的佈景主題。 Rename Confirmation 確èªé‡æ–°å‘½å Rename %s theme? é‡å‘½å %s 佈景主題? You must select a theme to delete. æ‚¨å¿…é ˆé¸æ“‡ä¸€å€‹è¦åˆªé™¤çš„佈景主題。 Delete Confirmation 確èªåˆªé™¤ Delete %s theme? 刪除 %s 佈景主題? Validation Error 驗證錯誤 A theme with this name already exists. 已存在以這個檔案命å的佈景主題。 Copy of %s Copy of <theme name> 複製 %s Theme Already Exists 佈景主題已存在 Theme %s already exists. Do you want to replace it? 佈景主題 %s 已存在。您是å¦è¦æ›¿æ›ï¼Ÿ The theme export failed because this error occurred: %s 佈景主題匯出失敗,發生此錯誤:%s OpenLP Themes (*.otz) OpenLP 佈景主題 (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard ä½ˆæ™¯ä¸»é¡Œç²¾éˆ Welcome to the Theme Wizard æ­¡è¿Žä¾†åˆ°ä½ˆæ™¯ä¸»é¡Œç²¾éˆ Set Up Background 設定背景 Set up your theme's background according to the parameters below. 根據下é¢çš„åƒæ•¸è¨­å®šæ‚¨çš„佈景主題背景。 Background type: 背景種類: Gradient 漸層 Gradient: 漸層: Horizontal æ°´å¹³ Vertical 垂直 Circular 圓形 Top Left - Bottom Right 左上 - å³ä¸‹ Bottom Left - Top Right 左下 - å³ä¸Š Main Area Font Details 主è¦ç¯„åœå­—型細節 Define the font and display characteristics for the Display text 定義了顯示文字的字體和顯示屬性 Font: 字型: Size: 大å°ï¼š Line Spacing: 行è·ï¼š &Outline: 概述(&O) &Shadow: é™°å½±(&S) Bold ç²—é«” Italic 斜體 Footer Area Font Details é å°¾å€åŸŸå­—型細節 Define the font and display characteristics for the Footer text 定義é å°¾æ–‡å­—的字體和顯示屬性 Text Formatting Details 文字格å¼ç´°ç¯€ Allows additional display formatting information to be defined å…許定義附加的顯示格å¼è¨Šæ¯ Horizontal Align: æ°´å¹³å°é½Šï¼š Left å·¦ Right å³ Center 置中 Output Area Locations 輸出範åœä½ç½® &Main Area 主è¦ç¯„åœ(&M) &Use default location 使用é è¨­ä½ç½®(&U) X position: Xä½ç½®ï¼š px px Y position: Yä½ç½®ï¼š Width: 寬度: Height: 高度: Use default location 使用é è¨­ä½ç½® Theme name: 佈景主題å稱: Edit Theme - %s 編輯佈景主題 - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. 此精éˆå°‡å¹«åŠ©æ‚¨å‰µå»ºå’Œç·¨è¼¯æ‚¨çš„ä½ˆæ™¯ä¸»é¡Œã€‚é»žæ“Šä¸‹ä¸€æ­¥æŒ‰éˆ•é€²å…¥ç¨‹åºè¨­ç½®ä½ çš„背景。 Transitions: 轉æ›ï¼š &Footer Area é å°¾ç¯„åœ(&F) Starting color: 啟始é¡è‰²ï¼š Ending color: çµæŸé¡è‰²ï¼š Background color: 背景é¡è‰²ï¼š Justify å°é½Š Layout Preview 颿¿é è¦½ Transparent 逿˜Ž Preview and Save é è¦½ä¸¦å„²å­˜ Preview the theme and save it. é è¦½ä½ˆæ™¯ä¸»é¡Œä¸¦å„²å­˜å®ƒã€‚ Background Image Empty 背景圖片空白 Select Image 鏿“‡åœ–åƒ Theme Name Missing éºå¤±ä½ˆæ™¯ä¸»é¡Œå稱 There is no name for this theme. Please enter one. 這個佈景主題沒有å稱。請輸入一個å稱。 Theme Name Invalid 無效的佈景å稱 Invalid theme name. Please enter one. 無效的佈景å稱。請輸入一個å稱。 Solid color 純色 color: é¡è‰²ï¼š Allows you to change and move the Main and Footer areas. å…許您更改和移動主è¦å’Œé å°¾ç¯„åœã€‚ You have not selected a background image. Please select one before continuing. æ‚¨å°šæœªé¸æ“‡èƒŒæ™¯åœ–片。請繼續å‰å…ˆé¸æ“‡ä¸€å€‹åœ–片。 OpenLP.ThemesTab Global Theme 全域佈景主題 Theme Level 佈景等級 S&ong Level 歌曲等級(&O) Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. æ¯é¦–歌使用資料庫裡關è¯çš„佈景。 如果沒有關è¯çš„ä½ˆæ™¯ï¼Œå‰‡ä½¿ç”¨èšæœƒçš„ä½ˆæ™¯ï¼Œå¦‚æžœèšæœƒæ²’有佈景,則使用全域佈景。 &Service Level èšæœƒç­‰ç´š(&S) Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. ä½¿ç”¨èšæœƒçš„ä½ˆæ™¯è¦†è“‹æ‰€æœ‰æ­Œæ›²çš„ä½ˆæ™¯ï¼Œå¦‚æžœèšæœƒæ²’有佈景則使用全域佈景。 &Global Level 全域等級(&G) Use the global theme, overriding any themes associated with either the service or the songs. ä½¿ç”¨å…¨åŸŸä½ˆæ™¯ä¸»é¡Œï¼Œè¦†è“‹æ‰€æœ‰èšæœƒæˆ–歌曲關è¯çš„佈景主題。 Themes 佈景主題 Universal Settings 通用設定 &Wrap footer text é å°¾æ–‡å­—æ›è¡Œ(&W) OpenLP.Ui Delete the selected item. åˆªé™¤é¸æ“‡çš„項目。 Move selection up one position. å‘上移動一個ä½ç½®ã€‚ Move selection down one position. å‘下移動一個ä½ç½®ã€‚ &Vertical Align: 垂直å°é½Š(&V): Finished import. 匯入完æˆã€‚ Format: æ ¼å¼ï¼š Importing 匯入中 Importing "%s"... 匯入 %s 中... Select Import Source 鏿“‡åŒ¯å…¥ä¾†æº Select the import format and the location to import from. 鏿“‡åŒ¯å…¥æ ¼å¼èˆ‡åŒ¯å…¥çš„ä½ç½®ã€‚ Open %s File 開啟 %s 檔 %p% %p% Ready. 準備完æˆã€‚ Starting import... 開始匯入... You need to specify at least one %s file to import from. A file type e.g. OpenSong æ‚¨éœ€è¦æŒ‡å®šè‡³å°‘一個è¦åŒ¯å…¥çš„ %s 檔。 Welcome to the Bible Import Wizard 歡迎使用è–ç¶“åŒ¯å…¥ç²¾éˆ Welcome to the Song Export Wizard æ­¡è¿Žä½¿ç”¨æ­Œæ›²åŒ¯å‡ºç²¾éˆ Welcome to the Song Import Wizard æ­¡è¿Žä½¿ç”¨æ­Œæ›²åŒ¯å…¥ç²¾éˆ Author Singular 作者 Authors Plural 作者 © Copyright symbol. © Song Maintenance 歌曲維護 Topic Singular 主題 Topics Plural 主題 Title and/or verses not found 找ä¸åˆ°æ¨™é¡Œ å’Œ/或 æ®µè½ XML syntax error XML 語法錯誤 Welcome to the Bible Upgrade Wizard 歡迎使用è–ç¶“å‡ç´šç²¾éˆ Open %s Folder 開啟資料夾 %s You need to specify one %s file to import from. A file type e.g. OpenSong æ‚¨éœ€è¦æŒ‡å®šè‡³å°‘一個è¦åŒ¯å…¥çš„%s 檔案。 You need to specify one %s folder to import from. A song format e.g. PowerSong æ‚¨éœ€è¦æŒ‡å®šè‡³å°‘一個è¦åŒ¯å…¥çš„%s 資料夾。 Importing Songs 匯入歌曲中 Welcome to the Duplicate Song Removal Wizard 歡迎來到é‡è¤‡æ­Œæ›²æ¸…é™¤ç²¾éˆ Written by 撰寫 Author Unknown 未知作者 About 關於 &Add 新增(&A) Add group 新增群組 Advanced 進階 All Files 所有檔案 Automatic 自動 Background Color 背景é¡è‰² Bottom 底部 Browse... ç€è¦½... Cancel å–æ¶ˆ CCLI number: CCLI編號: Create a new service. æ–°å¢žä¸€å€‹èšæœƒã€‚ Confirm Delete 確èªåˆªé™¤ Continuous 連續 Default é è¨­ Default Color: é è¨­é¡è‰²ï¼š Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. èšæœƒ %Y-%m-%d %H-%M &Delete 刪除(&D) Display style: 顯示方å¼ï¼š Duplicate Error é‡è¤‡çš„錯誤 &Edit 編輯(&E) Empty Field 空白å€åŸŸ Error 錯誤 Export 匯出 File 檔案 File Not Found 找ä¸åˆ°æª”案 File %s not found. Please try selecting it individually. 找ä¸åˆ° %s 檔案。 請嘗試單ç¨é¸æ“‡ã€‚ pt Abbreviated font pointsize unit pt Help 幫助 h The abbreviated unit for hours 時 Invalid Folder Selected Singular 鏿“‡äº†ç„¡æ•ˆçš„資料夾 Invalid File Selected Singular 鏿“‡äº†ç„¡æ•ˆçš„æª”案 Invalid Files Selected Plural 鏿“‡äº†ç„¡æ•ˆçš„æª”案 Image 圖片 Import 匯入 Layout style: 布局樣å¼ï¼š Live ç¾å ´Live Live Background Error ç¾å ´Live背景錯誤 Live Toolbar ç¾å ´Live工具列 Load 載入 Manufacturer Singular 製造商 Manufacturers Plural 製造商 Model Singular 型號 Models Plural 型號 m The abbreviated unit for minutes 分 Middle 中間 New æ–° New Service æ–°èšæœƒ New Theme 新佈景主題 Next Track 下一個音軌 No Folder Selected Singular æœªé¸æ“‡è³‡æ–™å¤¾ No File Selected Singular æª”æ¡ˆæœªé¸æ“‡ No Files Selected Plural æª”æ¡ˆæœªé¸æ“‡ No Item Selected Singular é …ç›®æœªé¸æ“‡ No Items Selected Plural æœªé¸æ“‡é …ç›® OpenLP is already running. Do you wish to continue? OpenLP已在執行,您è¦ç¹¼çºŒå—Ž? Open service. é–‹å•Ÿèšæœƒã€‚ Play Slides in Loop 循環播放幻燈片 Play Slides to End 播放幻燈片至çµå°¾ Preview é è¦½ Print Service 列å°èšæœƒç®¡ç† Projector Singular 投影機 Projectors Plural 投影機 Replace Background 替æ›èƒŒæ™¯ Replace live background. 替æ›ç¾å ´Live背景。 Reset Background é‡è¨­èƒŒæ™¯ Reset live background. é‡è¨­ç¾å ´Live背景。 s The abbreviated unit for seconds ç§’ Save && Preview 儲存 && é è¦½ Search æœå°‹ Search Themes... Search bar place holder text æœå°‹ä½ˆæ™¯ä¸»é¡Œ... You must select an item to delete. æ‚¨å¿…é ˆé¸æ“‡è¦åˆªé™¤çš„項目。 You must select an item to edit. æ‚¨å¿…é ˆé¸æ“‡è¦ä¿®æ”¹çš„項目。 Settings 設定 Save Service å„²å­˜èšæœƒ Service èšæœƒ Optional &Split 鏿“‡åˆ†éš”(&S) Split a slide into two only if it does not fit on the screen as one slide. 如果一張幻燈片無法放置在一個螢幕上,則將它分為兩é ã€‚ Start %s é–‹å§‹ %s Stop Play Slides in Loop åœæ­¢å¾ªç’°æ’­æ”¾å¹»ç‡ˆç‰‡ Stop Play Slides to End åœæ­¢é †åºæ’­æ”¾å¹»ç‡ˆç‰‡åˆ°çµå°¾ Theme Singular 佈景主題 Themes Plural 佈景主題 Tools 工具 Top 上方 Unsupported File æª”æ¡ˆä¸æ”¯æ´ Verse Per Slide æ¯å¼µæŠ•影片 Verse Per Line æ¯ä¸€è¡Œ Version 版本 View 檢視 View Mode æª¢è¦–æ¨¡å¼ CCLI song number: CCLI歌曲編號: Preview Toolbar é è¦½å·¥å…·åˆ— OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s å’Œ %s %s, and %s Locale list separator: end %s, å’Œ %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface 鏿“‡ä¾†æºå°è©±æ¡†ç•Œé¢ PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>ç°¡å ±æ’ä»¶</strong><br />ç°¡å ±æ’ä»¶æä¾›ä½¿ç”¨è¨±å¤šä¸åŒçš„程å¼ä¾†å±•示。用戶å¯åœ¨ä¸‹æ‹‰å¼é¸å–®ä¸­é¸æ“‡å¯ä½¿ç”¨çš„呈ç¾ç¨‹å¼ã€‚ Presentation name singular ç°¡å ± Presentations name plural ç°¡å ± Presentations container title ç°¡å ± Load a new presentation. 載入新的簡報。 Delete the selected presentation. 刪除所é¸çš„簡報。 Preview the selected presentation. é è¦½æ‰€é¸æ“‡çš„簡報。 Send the selected presentation live. 傳é€é¸æ“‡çš„簡報至ç¾å ´Live. Add the selected presentation to the service. æ–°å¢žæ‰€é¸æ“‡çš„ç°¡å ±è‡³èšæœƒç®¡ç†ã€‚ PresentationPlugin.MediaItem Select Presentation(s) 鏿“‡ç°¡å ± Automatic 自動 Present using: ç›®å‰ä½¿ç”¨ï¼š File Exists 檔案已存在 A presentation with that filename already exists. 已存在以這個檔案å稱的簡報。 This type of presentation is not supported. 䏿”¯æ´æ­¤æ ¼å¼çš„簡報。 Presentations (%s) ç°¡å ± (%s) Missing Presentation ç°¡å ±éºå¤± The presentation %s is incomplete, please reload. ç°¡å ± %s ä¸å®Œå…¨ï¼Œè«‹é‡æ–°è¼‰å…¥ã€‚ The presentation %s no longer exists. ç°¡å ± %s å·²ä¸å­˜åœ¨ã€‚ PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. æ•´åˆPowerpoint時發生了錯誤,簡報å³å°‡çµæŸã€‚è‹¥æ‚¨å¸Œæœ›é¡¯ç¤ºï¼Œè«‹é‡æ–°å•Ÿå‹•簡報。 PresentationPlugin.PresentationTab Available Controllers å¯ç”¨æŽ§åˆ¶å™¨ %s (unavailable) %s (ä¸å¯ç”¨) Allow presentation application to be overridden å…許簡報應用程å¼è¢«è¦†è“‹ PDF options PDFé¸é … Use given full path for mudraw or ghostscript binary: 指定完整的mudraw或Ghostscript二進制文件路徑: Select mudraw or ghostscript binary. 鏿“‡mudraw或ghostscript的二進制文件。 The program is not ghostscript or mudraw which is required. 此程å¼ä¸æ˜¯Ghostscript或mudraw 所必需的。 PowerPoint options PowerPoint é¸é … Clicking on a selected slide in the slidecontroller advances to next effect. 點é¸åœ¨æ»‘桿控制器é¸å®šçš„幻燈片å‰é€²åˆ°ä¸‹ä¸€å€‹æ•ˆæžœã€‚ Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). 讓 PowerPoint 控制大å°å’Œé¡¯ç¤ºè¦–窗的ä½ç½® (解決方法é©ç”¨æ–¼Windows8的縮放å•題)。 RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>é ç«¯æ’ä»¶</strong><br />é ç«¯æ’ä»¶å¯ä»¥é€éŽç¶²é ç€è¦½å™¨æˆ–是é ç«¯APIå‘å¦ä¸€å°é›»è…¦ä¸Šæ­£åœ¨é€²è¡Œçš„OpenLP發é€è¨Šæ¯ã€‚ Remote name singular é ç«¯ Remotes name plural é ç«¯ Remote container title é ç«¯ Server Config Change 伺æœå™¨è¨­å®šæ”¹è®Š Server configuration changes will require a restart to take effect. 伺æœå™¨è¨­å®šæ”¹è®Šï¼Œéœ€é‡æ–°å•Ÿå‹•å¾Œæ‰æœƒç”Ÿæ•ˆã€‚ RemotePlugin.Mobile Service Manager èšæœƒç®¡ç† Slide Controller 幻燈片控制 Alerts 警報 Search æœå°‹ Home é¦–é  Refresh 釿–°æ•´ç† Blank é¡¯ç¤ºå–®è‰²ç•«é¢ Theme 佈景主題 Desktop æ¡Œé¢ Show 顯示 Prev é è¦½ Next 下一個 Text 文字 Show Alert 顯示警報 Go Live ç¾å ´Live Add to Service æ–°å¢žè‡³èšæœƒ Add &amp; Go to Service 新增 &amp; åˆ°èšæœƒ No Results æ²’æœ‰çµæžœ Options é¸é … Service èšæœƒ Slides 幻燈片 Settings 設定 Remote é ç«¯ Stage View èˆžå°æŸ¥çœ‹ Live View Live 顯示 RemotePlugin.RemoteTab Serve on IP address: 伺æœå™¨IPä½å€ï¼š Port number: 連接埠: Server Settings 伺æœå™¨è¨­å®š Remote URL: é ç«¯URL: Stage view URL: èˆžå°æª¢è¦– URL: Display stage time in 12h format 以12å°æ™‚制顯示ç¾éšŽæ®µæ™‚é–“ Android App Android App Live view URL: Live 檢視 URL: HTTPS Server HTTPS 伺æœå™¨ Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. 找ä¸åˆ° SSL æ†‘è­‰ã€‚é™¤éžæ‰¾åˆ° SSL 憑證,å¦å‰‡ HTTPS æœå‹™ç„¡æ³•使用。請åƒé–±ä½¿ç”¨æ‰‹å†Šä»¥çž­è§£æ›´å¤šè¨Šæ¯ã€‚ User Authentication 用戶èªè­‰ User id: 使用者ID: Password: 使用者密碼: Show thumbnails of non-text slides in remote and stage view. 在é ç«¯åŠèˆžå°ç›£çœ‹é¡¯ç¤ºç¸®åœ–。 Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. 掃æ QR Code 或 點擊 <a href="%s"> 下載 </a> 從 Google Play å®‰è£ Android App. SongUsagePlugin &Song Usage Tracking 歌曲使用追蹤(&S) &Delete Tracking Data 刪除追蹤資料(&D) Delete song usage data up to a specified date. 刪除指定日期的歌曲使用記錄。 &Extract Tracking Data 匯出追蹤資料(&E) Generate a report on song usage. 產生歌曲使用記錄報告。 Toggle Tracking 切æ›è¿½è¹¤ Toggle the tracking of song usage. 切æ›è¿½è¹¤æ­Œæ›²ä½¿ç”¨è¨˜éŒ„。 <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>歌曲使用記錄æ’ä»¶</strong><br />æ­¤æ’ä»¶è¿½è¹¤åœ¨èšæœƒè£¡æ­Œæ›²çš„使用記錄。 SongUsage name singular 歌曲使用記錄 SongUsage name plural 歌曲使用記錄 SongUsage container title 歌曲使用記錄 Song Usage 歌曲使用記錄 Song usage tracking is active. 追蹤歌曲使用記錄。(已啟用) Song usage tracking is inactive. 追蹤歌曲使用記錄。(未啟用) display 顯示 printed åˆ—å° SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data 刪除歌曲使用記錄 Delete Selected Song Usage Events? åˆªé™¤é¸æ“‡çš„æ­Œæ›²ä½¿ç”¨äº‹ä»¶è¨˜éŒ„? Are you sure you want to delete selected Song Usage data? 您確定想è¦åˆªé™¤é¸ä¸­çš„æ­Œæ›²ä½¿ç”¨è¨˜éŒ„? Deletion Successful 刪除æˆåŠŸ Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. 鏿“‡åˆªé™¤åœ¨æ­¤æ—¥æœŸä¹‹å‰çš„æ­Œæ›²ä½¿ç”¨è³‡æ–™ã€‚在該日期之å‰çš„記錄下所有資料將會永久刪除。 All requested data has been deleted successfully. æ‰€æœ‰è¦æ±‚的資料已æˆåŠŸåˆªé™¤ã€‚ SongUsagePlugin.SongUsageDetailForm Song Usage Extraction 收集歌曲使用記錄 Select Date Range 鏿“‡æ™‚é–“ç¯„åœ to 到 Report Location 報告ä½ç½® Output File Location 輸出檔案ä½ç½® usage_detail_%s_%s.txt Usage_Detail_%s_%s.txt Report Creation 建立報告 Report %s has been successfully created. 報告 %s å·²æˆåŠŸå»ºç«‹ã€‚ Output Path Not Selected æœªé¸æ“‡è¼¸å‡ºè·¯å¾‘ You have not set a valid output location for your song usage report. Please select an existing path on your computer. æ‚¨å°šæœªè¨­å®šä½¿ç”¨å ±å‘Šæœ‰æ•ˆçš„è¼¸å‡ºè·¯å¾‘ã€‚è«‹åœ¨æ‚¨çš„é›»è…¦ä¸Šé¸æ“‡ä¸€å€‹å­˜åœ¨çš„路徑。 Report Creation Failed 報告建立錯誤 An error occurred while creating the report: %s 建立報告時出ç¾ä¸€å€‹éŒ¯èª¤ï¼š%s SongsPlugin &Song 歌曲(&S) Import songs using the import wizard. 使用匯入精éˆä¾†åŒ¯å…¥æ­Œæ›²ã€‚ <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>歌曲æ’ä»¶</strong><br />歌曲æ’ä»¶æä¾›é¡¯ç¤ºåŠç®¡ç†æ­Œæ›²ã€‚ &Re-index Songs é‡å»ºæ­Œæ›²ç´¢å¼•(&R) Re-index the songs database to improve searching and ordering. é‡å»ºæ­Œæ›²ç´¢å¼•以æé«˜æœå°‹åпޒåºé€Ÿåº¦ã€‚ Reindexing songs... é‡å»ºæ­Œæ›²ç´¢å¼•中... Arabic (CP-1256) 阿拉伯語 (CP-1256) Baltic (CP-1257) 波羅的 (CP-1257) Central European (CP-1250) ä¸­æ­ (CP-1250) Cyrillic (CP-1251) 西里爾語 (CP-1251) Greek (CP-1253) 希臘語 (CP-1253) Hebrew (CP-1255) 希伯來語 (CP-1255) Japanese (CP-932) 日語 (CP-932) Korean (CP-949) 韓文 (CP-949) Simplified Chinese (CP-936) 簡體中文 (CP-936) Thai (CP-874) 泰語 (CP-874) Traditional Chinese (CP-950) ç¹é«”中文 (CP-950) Turkish (CP-1254) 土耳其語 (CP-1254) Vietnam (CP-1258) 越語 (CP-1258) Western European (CP-1252) è¥¿æ­ (CP-1252) Character Encoding 字元編碼 The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. 編碼é é¢è¨­ç½®æ­£ç¢ºçš„編碼來顯示字元。 é€šå¸¸æ‚¨æœ€å¥½é¸æ“‡é è¨­çš„編碼。 Please choose the character encoding. The encoding is responsible for the correct character representation. è«‹é¸æ“‡å­—元編碼。 編碼負責顯示正確的字元。 Song name singular 歌曲 Songs name plural 歌曲 Songs container title 歌曲 Exports songs using the export wizard. 使用匯出精éˆä¾†åŒ¯å‡ºæ­Œæ›²ã€‚ Add a new song. 新增一首歌曲。 Edit the selected song. ç·¨è¼¯æ‰€é¸æ“‡çš„æ­Œæ›²ã€‚ Delete the selected song. åˆªé™¤æ‰€é¸æ“‡çš„æ­Œæ›²ã€‚ Preview the selected song. é è¦½æ‰€é¸æ“‡çš„æ­Œæ›²ã€‚ Send the selected song live. 傳é€é¸æ“‡çš„æ­Œæ›²è‡³ç¾å ´Live。 Add the selected song to the service. æ–°å¢žæ‰€é¸æ“‡çš„æ­Œæ›²åˆ°èšæœƒã€‚ Reindexing songs é‡å»ºæ­Œæ›²ç´¢å¼•中 CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. 從 CCLI SongSelect æœå‹™ä¸­åŒ¯å…¥æ­Œæ›²ã€‚ Find &Duplicate Songs 尋找é‡è¤‡çš„æ­Œæ›²(&D) Find and remove duplicate songs in the song database. 在歌曲資料庫中尋找並刪除é‡è¤‡çš„æ­Œæ›²ã€‚ SongsPlugin.AuthorType Words Author who wrote the lyrics of a song 作詞 Music Author who wrote the music of a song 編曲 Words and Music Author who wrote both lyrics and music of a song 詞曲 Translation Author who translated the song 譯者 SongsPlugin.AuthorsForm Author Maintenance 作者維護 Display name: 顯示å稱: First name: å§“æ°ï¼š Last name: å字: You need to type in the first name of the author. 您必須輸入作者姓æ°ã€‚ You need to type in the last name of the author. 您必須輸入作者å字。 You have not set a display name for the author, combine the first and last names? 您尚未設定作者的顯示å稱,çµåˆå§“æ°èˆ‡å字? SongsPlugin.CCLIFileImport The file does not have a valid extension. 該檔案ä¸å…·æœ‰æ•ˆçš„副檔å。 SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. 無效的 DreamBeam 歌曲檔。 éºå¤±DreamSong 標籤。 SongsPlugin.EasyWorshipSongImport Administered by %s ç”± %s ç®¡ç† "%s" could not be imported. %s "%s" 無法匯入. %s Unexpected data formatting. æ„外的檔案格å¼ã€‚ No song text found. 找ä¸åˆ°æ­Œæ›²æ–‡å­—。 [above are Song Tags with notes imported from EasyWorship] [以上歌曲標籤匯入來自 EasyWorship] This file does not exist. 此檔案ä¸å­˜åœ¨ã€‚ Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. 找ä¸åˆ° "Songs.DB"檔。"Songs.DB"檔 必須放在相åŒçš„資料夾下。 This file is not a valid EasyWorship database. æ­¤æª”æ¡ˆä¸æ˜¯æœ‰æ•ˆçš„ EasyWorship 資料庫。 Could not retrieve encoding. 無法ç²å¾—編碼。 SongsPlugin.EditBibleForm Meta Data 後設資料(Meta Data) Custom Book Names 自訂書å·å稱 SongsPlugin.EditSongForm Song Editor 歌曲編輯器 &Title: 標題(&T): Alt&ernate title: 副標題(&E): &Lyrics: 歌詞(&L): &Verse order: 段è½é †åº(&V): Ed&it All 編輯全部(&I) Title && Lyrics 標題 && 歌詞 &Add to Song 新增至歌曲(&A) &Remove 移除(&R) A&dd to Song 新增至歌曲(&D) R&emove 移除(&E) New &Theme 新增佈景主題(&T) Copyright Information 版權資訊 Comments è©•è«– Theme, Copyright Info && Comments 佈景主題ã€ç‰ˆæ¬Šè³‡è¨Š && è©•è«– Add Author 新增作者 This author does not exist, do you want to add them? 此作者ä¸å­˜åœ¨ï¼Œæ‚¨æ˜¯å¦è¦æ–°å¢žï¼Ÿ This author is already in the list. 此作者已存在於列表。 You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. æ‚¨æ²’æœ‰é¸æ“‡æœ‰æ•ˆçš„ä½œè€…ã€‚å¾žåˆ—è¡¨ä¸­é¸æ“‡ä¸€ä½ä½œè€…ï¼Œæˆ–è¼¸å…¥ä¸€ä½æ–°ä½œè€…å稱並點é¸"將作者加入歌曲"按鈕。 Add Topic 新增主題 This topic does not exist, do you want to add it? 此主題ä¸å­˜åœ¨ï¼Œæ‚¨æ˜¯å¦è¦æ–°å¢žï¼Ÿ This topic is already in the list. 此主題已存在於列表。 You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. æ‚¨æ²’æœ‰é¸æ“‡æœ‰æ•ˆçš„ä¸»é¡Œã€‚å¾žåˆ—è¡¨ä¸­é¸æ“‡ä¸€å€‹ä¸»é¡Œï¼Œæˆ–輸入一個新主題å稱並點é¸"將主題加入歌曲"按鈕。 You need to type in a song title. 您需è¦è¼¸å…¥æ­Œæ›²æ¨™é¡Œã€‚ You need to type in at least one verse. 您需è¦è¼¸å…¥è‡³å°‘一段歌詞。 You need to have an author for this song. 您需è¦çµ¦é€™é¦–歌一ä½ä½œè€…。 Linked Audio 連çµè²éŸ³ Add &File(s) 加入檔案(&F) Add &Media 加入媒體(&M) Remove &All 移除全部(&A) Open File(s) 開啟檔案 <strong>Warning:</strong> Not all of the verses are in use. <strong>警告:</strong> 沒有使用所有的歌詞段è½ã€‚ <strong>Warning:</strong> You have not entered a verse order. <strong>警告:</strong> 您還沒有輸入歌詞段è½é †åºã€‚ There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. æ²’æœ‰ç›¸å°æ‡‰çš„ "%(invalid)s",有效輸入的為 "%(valid)s"。請輸入空格分隔段è½ã€‚ Invalid Verse Order 無效的段è½é †åº &Edit Author Type 編輯作者類型(&E) Edit Author Type 編輯作者類型 Choose type for this author ç‚ºä½œè€…é¸æ“‡ä¸€å€‹é¡žåž‹ There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse ç·¨è¼¯æ®µè½ &Verse type: 段è½é¡žåž‹(&V): &Insert æ’å…¥(&I) Split a slide into two by inserting a verse splitter. 加入一個分é ç¬¦è™Ÿå°‡å¹»ç‡ˆç‰‡åˆ†ç‚ºå…©é ã€‚ SongsPlugin.ExportWizardForm Song Export Wizard æ­Œæ›²åŒ¯å‡ºç²¾éˆ Select Songs 鏿“‡æ­Œæ›² Check the songs you want to export. 鏿“‡æ‚¨æƒ³åŒ¯å‡ºçš„æ­Œæ›²ã€‚ Uncheck All å–æ¶ˆæ‰€æœ‰ Check All å…¨é¸ Select Directory 鏿“‡ç›®éŒ„ Directory: 目錄: Exporting 匯出中 Please wait while your songs are exported. è«‹ç¨ç­‰ï¼Œæ‚¨çš„æ­Œæ›²æ­£åœ¨åŒ¯å‡ºã€‚ You need to add at least one Song to export. æ‚¨éœ€è¦æ–°å¢žè‡³å°‘一首歌曲匯出。 No Save Location specified 未指定儲存ä½ç½® Starting export... 開始匯出... You need to specify a directory. æ‚¨éœ€è¦æŒ‡å®šä¸€å€‹ç›®éŒ„。 Select Destination Folder 鏿“‡ç›®æ¨™è³‡æ–™å¤¾ Select the directory where you want the songs to be saved. 鏿“‡æ‚¨å¸Œæœ›å„²å­˜æ­Œæ›²çš„目錄。 This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. 這個精éˆå°‡å¹«åŠ©åŒ¯å‡ºæ‚¨çš„æ­Œæ›²ç‚ºé–‹æ”¾åŠå…費的 <strong>OpenLyrics</strong> 敬拜歌曲格å¼ã€‚ SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. 無效的Foilpresenter 歌曲檔。找ä¸åˆ°æ®µè½ã€‚ SongsPlugin.GeneralTab Enable search as you type å•Ÿç”¨å³æ™‚æœå°‹ SongsPlugin.ImportWizardForm Select Document/Presentation Files 鏿“‡ 文件/ç°¡å ± 檔 Song Import Wizard æ­Œæ›²åŒ¯å…¥ç²¾éˆ This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. 此精éˆå°‡å¹«åŠ©æ‚¨å¾žå„種格å¼åŒ¯å…¥æ­Œæ›²ã€‚點擊 下一步 按鈕進入程åºé¸æ“‡è¦åŒ¯å…¥çš„æ ¼å¼ã€‚ Generic Document/Presentation 通用文件/ç°¡å ± Add Files... 加入檔案... Remove File(s) 移除檔案 Please wait while your songs are imported. è«‹ç¨ç­‰ï¼Œæ‚¨çš„æ­Œæ›²æ­£åœ¨åŒ¯å…¥ã€‚ Words Of Worship Song Files Words Of Worship 歌曲檔 Songs Of Fellowship Song Files Songs Of Fellowship 歌曲檔 SongBeamer Files SongBeamer 檔 SongShow Plus Song Files SongShow Plus 歌曲檔 Foilpresenter Song Files Foilpresenter Song 檔 Copy 複製 Save to File 儲存為檔案 The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. 由於 OpenLP ç„¡æ³•å­˜å– OpenOffice 或 LibreOffice ,Songs of Fellowship 匯入器已被ç¦ç”¨ã€‚ The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. 由於OpenLP 無法存å–OpenOffice 或 LibreOffice,通用文件/ç°¡å ± åŒ¯å…¥å™¨å·²è¢«ç¦æ­¢ä½¿ç”¨ã€‚ OpenLyrics Files OpenLyrics 檔 CCLI SongSelect Files CCLI SongSelect 檔 EasySlides XML File EasySlides XML 檔 EasyWorship Song Database EasyWorship Song 資料庫 DreamBeam Song Files DreamBeam Song 檔 You need to specify a valid PowerSong 1.0 database folder. æ‚¨éœ€è¦æŒ‡å®šä¸€å€‹æœ‰æ•ˆçš„ PowerSong 1.0資料庫 文件夾。 ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. 先將 Zion Worx è³‡æ–™åº«è½‰æ›æˆ CSV 文字檔,說明請看 <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">使用手冊</a>。 SundayPlus Song Files SundayPlus 歌曲檔 This importer has been disabled. 匯入器已被ç¦ç”¨ã€‚ MediaShout Database MediaShout 資料庫 The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout 匯入器僅支æ´Windows。由於缺少 Pyrhon 模組已被ç¦ç”¨ã€‚如果您想è¦ä½¿ç”¨æ­¤åŒ¯å…¥å™¨ï¼Œå¿…é ˆå…ˆå®‰è£ "pyodbc" 模組。 SongPro Text Files SongPro 文字檔 SongPro (Export File) SongPro (匯入檔) In SongPro, export your songs using the File -> Export menu 在 SongPro 中,使用 檔案 -> 匯出 é¸å–®ä¾†åŒ¯å‡ºæ‚¨çš„æ­Œæ›² EasyWorship Service File EasyWorship Service 檔 WorshipCenter Pro Song Files WorshipCenter Pro 歌曲檔 The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Pro 匯入器僅支æ´Windows。由於缺少 Pyrhon 模組已被ç¦ç”¨ã€‚如果您想è¦ä½¿ç”¨æ­¤åŒ¯å…¥å™¨ï¼Œå¿…é ˆå…ˆå®‰è£ "pyodbc" 模組。 PowerPraise Song Files PowerPraise Song 檔 PresentationManager Song Files PresentationManager Song 檔 ProPresenter 4 Song Files ProPresenter 4 Song 檔 Worship Assistant Files Worship Assistant 檔 Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. 在 Worship Assistant 中,匯出資料庫到CSV檔。 OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) 鏿“‡åª’體檔 Select one or more audio files from the list below, and click OK to import them into this song. åœ¨åˆ—è¡¨ä¸­é¸æ“‡ä¸€æˆ–多個è²éŸ³æª”ï¼Œä¸¦é»žé¸ OK 將它們匯入到這首歌曲。 SongsPlugin.MediaItem Titles 標題 Lyrics 歌詞 CCLI License: CCLI授權: Entire Song 整首歌曲 Maintain the lists of authors, topics and books. 作者ã€ä¸»é¡ŒåŠæ­Œæœ¬åˆ—表維護。 copy For song cloning 複製 Search Titles... æœå°‹æ¨™é¡Œ... Search Entire Song... æœå°‹æ•´é¦–歌曲... Search Lyrics... æœå°‹æ­Œè©ž... Search Authors... æœå°‹ä½œè€…... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. 無法開啟 MediaShout 資料庫。 SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... 正在匯出 "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. 無效的 OpenSong 檔案。缺少歌曲標籤。 SongsPlugin.PowerSongImport No songs to import. 沒有歌曲匯入。 Verses not found. Missing "PART" header. 找ä¸åˆ°è©©æ­Œã€‚éºå¤± "PART" 標頭。 No %s files found. 找ä¸åˆ° %s 檔案。 Invalid %s file. Unexpected byte value. 無效的 %s æª”ã€‚æœªé æœŸçš„編碼。 Invalid %s file. Missing "TITLE" header. 無效的 %s 檔。éºå¤± "TITLE" 檔頭。 Invalid %s file. Missing "COPYRIGHTLINE" header. 無效的 %s 檔。éºå¤± "COPYRIGHTLINE" 檔頭。 SongsPlugin.SongBookForm &Name: å稱(&N): &Publisher: 出版者(&P): You need to type in a name for the book. 您需è¦è¼¸å…¥æ­Œæœ¬å稱。 Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. 您的歌曲匯出失敗。 Finished export. To import these files use the <strong>OpenLyrics</strong> importer. 匯出完æˆã€‚使用<strong>OpenLyrics</strong>匯入器匯入這些檔案。 Your song export failed because this error occurred: %s 您的歌曲匯出失敗因為發生錯誤 :%s SongsPlugin.SongImport copyright 版權 The following songs could not be imported: 無法匯入以下歌曲: Cannot access OpenOffice or LibreOffice ç„¡æ³•å­˜å– OpenOffice 或 LibreOffice Unable to open file 無法開啟文件 File not found 找ä¸åˆ°æª”案 SongsPlugin.SongMaintenanceForm Could not add your author. 無法新增您的作者。 This author already exists. 此作者已存在。 Could not add your topic. 無法新增您的主題。 This topic already exists. 此主題已存在。 Could not add your book. 無法新增您的歌本。 This book already exists. 此歌本已存在。 Could not save your changes. 無法儲存變更。 Could not save your modified author, because the author already exists. 無法儲存變更的作者,因為該作者已存在。 Could not save your modified topic, because it already exists. 無法儲存變更的主題,因為該主題已存在。 Delete Author 刪除作者 Are you sure you want to delete the selected author? 您確定想è¦åˆªé™¤é¸ä¸­çš„作者嗎? This author cannot be deleted, they are currently assigned to at least one song. 此作者無法刪除,它目å‰è‡³å°‘被指派給一首歌曲。 Delete Topic 刪除主題 Are you sure you want to delete the selected topic? 您確定想è¦åˆªé™¤é¸ä¸­çš„主題嗎? This topic cannot be deleted, it is currently assigned to at least one song. 此主題無法刪除,它目å‰è‡³å°‘被指派給一首歌曲。 Delete Book 刪除歌本 Are you sure you want to delete the selected book? 您確定想è¦åˆªé™¤é¸ä¸­çš„æ­Œæœ¬å—Ž? This book cannot be deleted, it is currently assigned to at least one song. 此歌本無法刪除,它目å‰è‡³å°‘被指派給一首歌曲。 The author %s already exists. Would you like to make songs with author %s use the existing author %s? 作者 %s 已存在。您想使歌曲作者 %s ä½¿ç”¨ç¾æœ‰çš„作者 %s å—Ž? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? 主題 %s 已存在。您想使歌曲主題 %s ä½¿ç”¨ç¾æœ‰çš„主題 %s å—Ž? The book %s already exists. Would you like to make songs with book %s use the existing book %s? 歌本 %s 已存在。您想使歌曲歌本 %s ä½¿ç”¨ç¾æœ‰çš„æ­Œæœ¬ %s å—Ž? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect 匯入器 <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>注æ„:</strong> 網路連線是為了從 CCLI SongSelect.匯入歌曲。 Username: 帳號: Password: 使用者密碼: Save username and password 儲存帳號åŠå¯†ç¢¼ Login 登入 Search Text: æœå°‹æ–‡å­—: Search æœå°‹ Found %s song(s) 找到 %s 首歌曲 Logout 登出 View 檢視 Title: 標題: Author(s): 作者: Copyright: 版權: CCLI Number: CCLI編號: Lyrics: 歌詞: Back 退後 Import 匯入 More than 1000 results è¶…éŽ 1000 æ¢çµæžœ Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. 您的æœå°‹çµæžœè¶…éŽ 1000 項,å³å°‡ä¸­æ­¢ã€‚è«‹ç¸®å°æ‚¨çš„æœå°‹ç¯„åœä»¥ç²å¾—æ›´ç²¾ç¢ºçš„çµæžœã€‚ Logging out... 登出中... Save Username and Password 儲存帳號åŠå¯†ç¢¼ WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. 警告: 儲存帳號åŠå¯†ç¢¼æ˜¯ä¸å®‰å…¨çš„,您的密碼將儲存æˆç°¡å–®çš„æ–‡å­—(未加密)。 鏿“‡ Yes 儲存密碼或 No å–æ¶ˆã€‚ Error Logging In 登入錯誤 There was a problem logging in, perhaps your username or password is incorrect? ç™»å…¥éŒ¯èª¤ï¼Œè«‹ç¢ºèªæ‚¨çš„å¸³è™Ÿæˆ–å¯†ç¢¼æ˜¯å¦æ­£ç¢ºï¼Ÿ Song Imported 歌曲匯入 Incomplete song 歌曲ä¸å®Œæ•´ This song is missing some information, like the lyrics, and cannot be imported. 這首歌éºå¤±æŸäº›è³‡è¨Šä»¥è‡³æ–¼ç„¡æ³•匯入,例如歌詞。 Your song has been imported, would you like to import more songs? 您的歌曲已匯入,您想匯入更多歌曲嗎? Stop SongsPlugin.SongsTab Songs Mode æ­Œæ›²æ¨¡å¼ Display verses on live tool bar 在ç¾å ´Liveå·¥å…·åˆ—é¡¯ç¤ºæ®µè½ Update service from song edit ç·¨è¼¯æ­Œè©žæ›´æ–°èšæœƒç®¡ç† Import missing songs from service files å¾žèšæœƒç®¡ç†æª”案中匯入éºå¤±çš„æ­Œæ›² Display songbook in footer é å°¾é¡¯ç¤ºæ­Œæœ¬ Display "%s" symbol before copyright info 於版權資訊å‰é¡¯ç¤º "%s" 符號 SongsPlugin.TopicsForm Topic Maintenance ä¸»é¡Œç®¡ç† Topic name: 主題å稱: You need to type in a topic name. 您需è¦è¼¸å…¥è‡³å°‘一個主題å稱。 SongsPlugin.VerseType Verse V主歌 Chorus C副歌 Bridge B橋段 Pre-Chorus På°Žæ­Œ Intro Iå‰å¥ Ending Eçµå°¾ Other Oå…¶ä»– SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. 讀å–CSV文件錯誤。 Line %d: %s 行 %d: %s Decoding error: %s 解碼錯誤: %s File not valid WorshipAssistant CSV format. æª”æ¡ˆéžæœ‰æ•ˆçš„WorshipAssistant CSVæ ¼å¼ã€‚ Record %d 錄製:%d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. 無法連線到 WorshipCenter Pro 資料庫。 SongsPlugin.ZionWorxImport Error reading CSV file. 讀å–CSV文件錯誤。 File not valid ZionWorx CSV format. æª”æ¡ˆéžæœ‰æ•ˆçš„ZionWorx CSVæ ¼å¼ã€‚ Line %d: %s 行 %d: %s Decoding error: %s 解碼錯誤: %s Record %d 錄製:%d Wizard Wizard ç²¾éˆ This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. 此精éˆå°‡å¹«åŠ©æ‚¨å¾žæ­Œæ›²è³‡æ–™åº«ä¸­ç§»é™¤é‡è¤‡çš„æ­Œæ›²ã€‚您將在é‡è¤‡çš„æ­Œæ›²ç§»é™¤å‰é‡æ–°æª¢è¦–å…§å®¹ï¼Œæ‰€ä»¥ä¸æœƒæœ‰æ­Œæ›²æœªç¶“æ‚¨çš„åŒæ„而刪除。 Searching for duplicate songs. æœå°‹é‡è¦†æ­Œæ›²ä¸­ã€‚ Please wait while your songs database is analyzed. è«‹ç¨ç­‰ï¼Œæ‚¨çš„æ­Œæ›²è³‡æ–™åº«æ­£åœ¨åˆ†æžã€‚ Here you can decide which songs to remove and which ones to keep. 在這裡,你å¯ä»¥æ±ºå®šåˆªé™¤ä¸¦ä¿ç•™å“ªäº›çš„æ­Œæ›²ã€‚ Review duplicate songs (%s/%s) 釿–°æª¢è¦–é‡è¤‡çš„æ­Œæ›² (%s / %s) Information 資訊 No duplicate songs have been found in the database. 資料庫中找ä¸åˆ°é‡è¤‡çš„æ­Œæ›²ã€‚ OpenLP-2.4/resources/i18n/th_TH.ts0000644000175000017500000170214312657640340015730 0ustar raoulraoul AlertsPlugin &Alert &à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Show an alert message. à¹à¸ªà¸”งข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Alert name singular à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Alerts name plural à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Alerts container title à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>ปลั๊à¸à¸­à¸´à¸™à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน</ strong><br />ปลั๊à¸à¸­à¸´à¸™à¹à¸ˆà¹‰à¸‡à¹€à¸•ือนควบคุมà¸à¸²à¸£à¹à¸ªà¸”งข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือนในหน้าจอ AlertsPlugin.AlertForm Alert Message ข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Alert &text: &ข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือน: &New &สร้างใหม่ &Save &บันทึภDispl&ay &à¹à¸ªà¸”งผล Display && Cl&ose à¹à¸ªà¸”งผล && ปิด New Alert ข้อความใหม่ &Parameter: &พารามิเตอร์: No Parameter Found ไม่พบพารามิเตอร์ You have not entered a parameter to be replaced. Do you want to continue anyway? คุณไม่ได้ป้อนพารามิเตอร์ให้à¹à¸—น คุณต้องà¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•่อไปหรือไม่? No Placeholder Found ไม่พบà¹à¸«à¸™à¹ˆà¸‡à¸—ี่อ้างอิงถึง The alert text does not contain '<>'. Do you want to continue anyway? ข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือนไม่มี '<>' คุณต้องà¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•่อไปหรือไม่? You haven't specified any text for your alert. Please type in some text before clicking New. คุณไม่ได้ป้อนข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือนใด ๆ โปรดป้อนข้อความà¸à¹ˆà¸­à¸™à¸„ลิà¸à¹ƒà¸«à¸¡à¹ˆ AlertsPlugin.AlertsManager Alert message created and displayed. สร้างข้อความà¹à¸ˆà¹‰à¸‡à¹€à¸•ือนà¹à¸¥à¸°à¹à¸ªà¸”งบนจอภาพ AlertsPlugin.AlertsTab Font ตัวอัà¸à¸©à¸£ Font name: ชื่อตัวอัà¸à¸©à¸£: Font color: สีตัวอัà¸à¸©à¸£: Background color: สีพื้นหลัง: Font size: ขนาดตัวอัà¸à¸©à¸£: Alert timeout: ระยะเวลาà¹à¸ˆà¹‰à¸‡à¹€à¸•ือน: BiblesPlugin &Bible &พระคัมภีร์ Bible name singular พระคัมภีร์ Bibles name plural พระคัมภีร์ Bibles container title พระคัมภีร์ No Book Found ไม่พบพระธรรมในพระคัมภีร์ No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. ไม่พบหนังสือในพระคัมภีร์ฉบับนี้ โปรดตรวจสอบว่าคุณสะà¸à¸”ชื่อหนังสือในพระคัมภีร์ฉบับนี้ได้อย่างถูà¸à¸•้อง Import a Bible. นำเข้าพระคัมภีร์ Add a new Bible. เพิ่มพระคัมภีร์ฉบับใหม่ Edit the selected Bible. à¹à¸à¹‰à¹„ขพระคัมภีร์ที่เลือภDelete the selected Bible. ลบพระคัมภีร์ที่เลือภPreview the selected Bible. à¹à¸ªà¸”งตัวอย่างพระคัมภีร์ที่เลือภSend the selected Bible live. ส่งพระคัมภีร์ที่เลือà¸à¹à¸ªà¸”งบนจอภาพ Add the selected Bible to the service. เพิ่มพระคัมภีร์ที่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸žà¸£à¸°à¸„ัมภีร์</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸žà¸£à¸°à¸„ัมภีร์ ช่วยในà¸à¸²à¸£à¹à¸ªà¸”งพระคัมภีร์ จาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸—ี่มาที่à¹à¸•à¸à¸•่างà¸à¸±à¸™ &Upgrade older Bibles &ปรับปรุงพระคัมภีร์ Upgrade the Bible databases to the latest format. ปรับปรุงà¸à¸²à¸™à¸‚้อมูลรูปà¹à¸šà¸šà¹ƒà¸«à¸¡à¹ˆà¸¥à¹ˆà¸²à¸ªà¸¸à¸”สำหรับพระคัมภีร์ Genesis ปà¸à¸¡à¸à¸²à¸¥ Exodus อพยพ Leviticus เลวีนิติ Numbers à¸à¸±à¸™à¸”ารวิถี Deuteronomy เฉลยธรมบัà¸à¸à¸±à¸•ิ Joshua โยชูวา Judges ผู้วินิจฉัย Ruth นางรูธ 1 Samuel 1 ซามูเอล 2 Samuel 2 ซามูเอล 1 Kings 1 พงศ์à¸à¸©à¸±à¸•ริย์ 2 Kings 2 พงศ์à¸à¸©à¸±à¸•ริย์ 1 Chronicles 1 พงศาวดาร 2 Chronicles 2 พงศาวดาร Ezra เอสรา Nehemiah เนหะมีย์ Esther เอสเธอร์ Job โยบ Psalms สดุดี Proverbs สุภาษิต Ecclesiastes ปัà¸à¸à¸²à¸ˆà¸²à¸£à¸¢à¹Œ Song of Solomon เพลงซาโลมอน Isaiah อิสยาห์ Jeremiah เยเรมีย์ Lamentations เพลงคร่ำครวภEzekiel เอเสเคียล Daniel ดาเนียล Hosea โฮเชยา Joel โยเอล Amos อาโมส Obadiah โอบาดีย์ Jonah โยนาห์ Micah มีคาห์ Nahum นาฮูม Habakkuk ฮะบาà¸à¸¸à¸ Zephaniah ศฟันยาห์ Haggai ฮัà¸à¸à¸±à¸¢ Zechariah เศคาริยาห์ Malachi มาลาคี Matthew มัทธิว Mark มาระโภLuke ลูà¸à¸² John ยอห์น Acts à¸à¸´à¸ˆà¸à¸²à¸£à¸‚องอัครทูต Romans โรม 1 Corinthians 1 โครินธ์ 2 Corinthians 2 โครินธ์ Galatians à¸à¸²à¸¥à¸²à¹€à¸—ีย Ephesians เอเฟซัส Philippians ฟิลิปปี Colossians โคโลสี 1 Thessalonians 1 เธสะโลนิà¸à¸² 2 Thessalonians 2 เธสะโลนิà¸à¸² 1 Timothy 1 ทิโมธี 2 Timothy 2 ทิโมธี Titus ทิตัส Philemon ฟีเลโมน Hebrews ฮีบรู James ยาà¸à¸­à¸š 1 Peter 1 เปโตร 2 Peter 2 เปโตร 1 John 1 ยอห์น 2 John 2 ยอห์น 3 John 3 ยอห์น Jude ยูดา Revelation วิวรณ์ Judith ยูดิธ Wisdom ปรีชาà¸à¸²à¸“ Tobit โทบิต Sirach บุตรสิรา Baruch ประà¸à¸²à¸¨à¸šà¸²à¸£à¸¸à¸„ 1 Maccabees 1 มัคคาบี 2 Maccabees 2 มัคคาบี 3 Maccabees 3 มัคคาบี 4 Maccabees 4 มัคคาบี Rest of Daniel ส่วนที่เหลือของหนังสือดาเนียล Rest of Esther ส่วนที่เหลือของหนังสือเอสเธอร์ Prayer of Manasses คำภาวนาของมนัสเสห์ Letter of Jeremiah จดหมายของเยเรมีย์ Prayer of Azariah คำภาวนาของอาซาริยา Susanna ซูซานนา Bel เบล 1 Esdras 1 เอสดราส 2 Esdras 2 เอสดราส : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 ข้อ V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 ข้อ verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 ข้อ verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 ข้อ - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 ถึง , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 à¹à¸¥à¸° end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse จบ BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. คุณต้องระบุชื่อฉบับของพระคัมภีร์ You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. คุณต้องใส่ลิขสิทธิ์พระคัมภีร์ของคุณ พระคัมภีร์ซึ่งเป็นของสาธารณะ ต้องมีà¸à¸²à¸£à¸£à¸°à¸šà¸¸à¸ªà¸´à¸—ธิ์ดังà¸à¸¥à¹ˆà¸²à¸§ Bible Exists พระคัมภีร์ที่มีอยู่ This Bible already exists. Please import a different Bible or first delete the existing one. พระคัมภีร์ฉบับนี้มีอยู่à¹à¸¥à¹‰à¸§ โปรดนำเข้าพระคัมภีร์ฉบับที่à¹à¸•à¸à¸•่างà¸à¸±à¸™ หรือลบพระคัมภีร์ฉบับที่มีอยู่à¹à¸¥à¹‰à¸§à¸­à¸­à¸à¸à¹ˆà¸­à¸™ You need to specify a book name for "%s". คุณต้องระบุชื่อหนังสือนี้สำหรับ "%s" The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. ชื่อหนังสือ "%s" ไม่ถูà¸à¸•้อง ตัวเลขสามารถใส่ได้เฉพาะตัวà¹à¸£à¸ à¹à¸¥à¸°à¸•้องตามด้วยอัà¸à¸©à¸£à¸—ี่ไม่ใช่ตัวเลข Duplicate Book Name ชื่อหนังสือซ้ำ The Book Name "%s" has been entered more than once. ชื่อหนังสือ "%s" ได้รับà¸à¸²à¸£à¸›à¹‰à¸­à¸™à¸¡à¸²à¸à¸à¸§à¹ˆà¸²à¸«à¸™à¸¶à¹ˆà¸‡à¸„รั้ง BiblesPlugin.BibleManager Scripture Reference Error เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸­à¹‰à¸²à¸‡à¸­à¸´à¸‡à¸žà¸£à¸°à¸„ัมภีร์ Web Bible cannot be used พระคัมภีร์ที่ดาวน์โหลดจาà¸à¹€à¸§à¹‡à¸šà¹„ซต์ไม่สามารถใช้ได้ Text Search is not available with Web Bibles. ไม่สามารถค้นหาข้อความจาà¸à¸žà¸£à¸°à¸„ัมภีร์ที่ดาวน์โหลดจาà¸à¹€à¸§à¹‡à¸šà¹„ซต์ได้ You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. คุณไม่ได้ระบุคำที่ต้องà¸à¸²à¸£à¸„้นหา ในà¸à¸²à¸£à¸„้นหาคำจาà¸à¸‚้อความ คุณสามารถà¹à¸šà¹ˆà¸‡à¸„ำà¹à¸•่ละคำด้วยช่องว่าง à¹à¸¥à¸°à¹€à¸„รื่องหมายจุลภาค ในà¸à¸²à¸£à¸„้นหาข้อความต้องมีคำอย่างน้อยหนึ่งคำ There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. ไม่มีà¸à¸²à¸£à¸•ิดตั้งพระคัมภีร์ในขณะนี้ โปรดใช้ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าเพื่อติดตั้งพระคัมภีร์ No Bibles Available พระคัมภีร์ไม่พร้อมใช้งาน Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. à¸à¸²à¸£à¸­à¹‰à¸²à¸‡à¸­à¸´à¸‡à¸žà¸£à¸°à¸„ัมภีร์ของคุณ อาจไม่ได้รับà¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™à¹‚ดย OpenLP หรือà¸à¸²à¸£à¸­à¹‰à¸²à¸‡à¸­à¸´à¸‡à¹„ม่ถูà¸à¸•้อง โปรดตรวจสอบให้à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸à¸²à¸£à¸­à¹‰à¸²à¸‡à¸­à¸´à¸‡à¸‚องคุณ สอดคล้องà¸à¸±à¸šà¸£à¸¹à¸›à¹à¸šà¸šà¸•่อไปนี้ หรือดูรายละเอียดเพิ่มเติมที่คู่มือà¹à¸™à¸°à¸™à¸³à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™: หนังสือ บทที่ หนังสือ บทที่%(range)sบทที่ หนังสือ บทที่%(verse)sข้อที่%(range)sข้อที่ หนังสือ บทที่%(verse)sข้อที่%(range)sข้อที่%(list)sข้อที่%(range)sข้อที่ หนังสือ บทที่%(verse)sข้อที่%(range)sข้อที่%(list)sบทที่%(verse)sข้อที่%(range)sข้อที่ หนังสือ บทที่%(verse)sข้อที่%(range)sบทที่%(verse)sข้อที่ BiblesPlugin.BiblesTab Verse Display à¹à¸ªà¸”งข้อพระคัมภีร์ Only show new chapter numbers à¹à¸ªà¸”งเฉพาะตัวเลขของข้อพระคัมภีร์ Bible theme: ธีมพระคัมภีร์: No Brackets ไม่มีวงเล็บ ( And ) ( à¹à¸¥à¸° ) { And } { à¹à¸¥à¸° } [ And ] [ à¹à¸¥à¸° ] Note: Changes do not affect verses already in the service. หมายเหตุ: ข้อพระคัมภีร์ที่อยู่ในà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ จะไม่ได้รับผลà¸à¸£à¸°à¸—บจาà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸™à¸µà¹‰ Display second Bible verses à¹à¸ªà¸”งพระคัมภีร์ฉบับที่สอง Custom Scripture References อ้างอิงพระคัมภีร์ที่à¸à¸³à¸«à¸™à¸”เอง Verse Separator: à¹à¸šà¹ˆà¸‡à¸‚้อ: Range Separator: à¹à¸šà¹ˆà¸‡à¹à¸–ว: List Separator: à¹à¸šà¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£: End Mark: จุดสิ้นสุด: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. มีหลายทางเลือà¸à¸—ี่ใช้à¹à¸šà¹ˆà¸‡à¸‚้อพระคัมภีร์ คุณอาจใช้à¹à¸–บà¹à¸™à¸§à¸•ั้ง "|" à¹à¸šà¹ˆà¸‡à¸‚้อออà¸à¸ˆà¸²à¸à¸à¸±à¸™ โปรดลบเส้นนี้เพื่อà¹à¸à¹‰à¹„ขà¸à¸¥à¸±à¸šà¹„ปใช้ค่าเริ่มต้น English ภาษาไทย Default Bible Language ภาษาเริ่มต้นของพระคัมภีร์ Book name language in search field, search results and on display: ภาษาของชื่อหนังสือในช่องค้นหา ผลà¸à¸²à¸£à¸„้นหาà¹à¸¥à¸°à¸à¸²à¸£à¹à¸ªà¸”งผล: Bible Language ภาษาของพระคัมภีร์ Application Language ภาษาของโปรà¹à¸à¸£à¸¡ Show verse numbers à¹à¸ªà¸”งไม้เลขของข้อ BiblesPlugin.BookNameDialog Select Book Name เลือà¸à¸Šà¸·à¹ˆà¸­à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­ Current name: ชื่อในขณะนี้: Corresponding name: ชื่อที่เหมือนà¸à¸±à¸™: Show Books From à¹à¸ªà¸”งหนังสือจาภOld Testament พันธสัà¸à¸à¸²à¹€à¸”ิม New Testament พันธสัà¸à¸à¸²à¹ƒà¸«à¸¡à¹ˆ Apocrypha พระคัมภีร์นอà¸à¸ªà¸²à¸£à¸£à¸°à¸šà¸š The following book name cannot be matched up internally. Please select the corresponding name from the list. ชื่อหนังสือต่อไปนี้ไม่ตรงà¸à¸±à¸šà¸Šà¸·à¹ˆà¸­à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­à¸—ี่มีอยู่ภายในโปรà¹à¸à¸£à¸¡ โปรดเลือà¸à¹ƒà¸Šà¹‰à¸Šà¸·à¹ˆà¸­à¸—ี่เหมาะสมจาà¸à¸£à¸²à¸¢à¸à¸²à¸£ BiblesPlugin.BookNameForm You need to select a book. คุณต้องเลือà¸à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­ BiblesPlugin.CSVBible Importing books... %s à¸à¸³à¸¥à¸±à¸‡à¸™à¸³à¹€à¸‚้าหนังสือ... %s Importing verses... done. นำเข้าข้อพระคัมภีร์... เสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ BiblesPlugin.EditBibleForm Bible Editor à¹à¸à¹‰à¹„ขพระคัมภีร์ License Details รายละเอียดสัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸• Version name: ชื่อฉบับ: Copyright: ลิขสิทธิ์: Permissions: à¸à¸²à¸£à¸­à¸™à¸¸à¸à¸²à¸•: Default Bible Language ภาษาเริ่มต้นของพระคัมภีร์ Book name language in search field, search results and on display: ภาษาของชื่อหนังสือในช่องค้นหา ผลà¸à¸²à¸£à¸„้นหาà¹à¸¥à¸°à¸à¸²à¸£à¹à¸ªà¸”งผล: Global Settings à¸à¸²à¸£à¸•ั้งค่าโดยรวม Bible Language ภาษาของพระคัมภีร์ Application Language ภาษาของโปรà¹à¸à¸£à¸¡ English ภาษาไทย This is a Web Download Bible. It is not possible to customize the Book Names. พระคัมภีร์ฉบับนี้ดาวน์โหลดมาจาà¸à¸­à¸´à¸™à¹€à¸—อร์เน็ต คุณไม่สามารถà¸à¸³à¸«à¸™à¸”รายชื่อหนังสือได้ To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. เมื่อต้องà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”รายชื่อหนังสือเอง ควรเลือà¸"ภาษาของพระคัมภีร์" ในหน้าà¸à¸²à¸£à¸›à¸£à¸±à¸šà¹à¸•่งพระคัมภีร์ของ OpenLP เมื่อคุณเลือภ"à¸à¸²à¸£à¸•ั้งค่าโดยรวม" BiblesPlugin.HTTPBible Registering Bible and loading books... à¸à¸³à¸¥à¸±à¸‡à¸¥à¸‡à¸—ะเบียนพระคัมภีร์à¹à¸¥à¸°à¸—ำà¸à¸²à¸£à¸šà¸£à¸£à¸ˆà¸¸à¸£à¸²à¸¢à¸à¸²à¸£à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­... Registering Language... à¸à¸³à¸¥à¸±à¸‡à¸¥à¸‡à¸—ะเบียนภาษา... Importing %s... Importing <book name>... à¸à¸³à¸¥à¸±à¸‡à¸™à¸³à¹€à¸‚้า %s... Download Error เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸”าวน์โหลด There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. เà¸à¸´à¸”ปัà¸à¸«à¸²à¹ƒà¸™à¸à¸²à¸£à¸”าวน์โหลดข้อความที่คุณเลือภโปรดตรวจสอบà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•่ออินเทอร์เน็ตของคุณ ถ้าข้อผิดพลาดยังปราà¸à¸à¸‚ึ้น โปรดพิจารณารายงานจุดบà¸à¸žà¸£à¹ˆà¸­à¸‡à¸™à¸µà¹‰ Parse Error วิเคราะห์ข้อผิดพลาด There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. เà¸à¸´à¸”ปัà¸à¸«à¸²à¸ªà¹ˆà¸§à¸™à¸—ี่คัดลอà¸à¸‚องข้อความที่คุณเลือภถ้าข้อผิดพลาดยังปราà¸à¸à¸‚ึ้น โปรดพิจารณารายงานจุดบà¸à¸žà¸£à¹ˆà¸­à¸‡à¸™à¸µà¹‰ BiblesPlugin.ImportWizardForm Bible Import Wizard ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าพระคัมภีร์ This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. ตัวช่วยสร้างนี้ ช่วยอำนวยความสะดวà¸à¹ƒà¸™à¸à¸²à¸£à¸™à¸³à¹€à¸‚้าพระคัมภีร์จาà¸à¸£à¸¹à¸›à¹à¸šà¸šà¸—ี่à¹à¸•à¸à¸•่างà¸à¸±à¸™ à¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸™à¸³à¹€à¸‚้าจะเริ่มต้นโดยà¸à¸²à¸£à¸„ลิà¸à¸—ี่ปุ่มถัดไปด้านล่าง à¹à¸¥à¹‰à¸§à¹€à¸¥à¸·à¸­à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸—ี่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าพระคัมภีร์ Web Download ดาวน์โหลดจาà¸à¹€à¸§à¹‡à¸šà¹„ซต์ Location: ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้ง: Crosswalk เว็บไซต์ Crosswalk BibleGateway เว็บไซต์ BibleGateway Bible: พระคัมภีร์: Download Options ตัวเลือà¸à¸à¸²à¸£à¸”าวน์โหลด Server: ที่อยู่ Server: Username: ชื่อผู้ใช้: Password: รหัสผ่าน: Proxy Server (Optional) Proxy Server (ตัวเลือà¸) License Details รายละเอียดสัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸• Set up the Bible's license details. รายละเอียดสัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸•ติดตั้งพระคัมภีร์ Version name: ชื่อฉบับ: Copyright: ลิขสิทธิ์: Please wait while your Bible is imported. โปรดรอสัà¸à¸„รู่ในขณะที่นำเข้าพระคัมภีร์ของคุณ You need to specify a file with books of the Bible to use in the import. คุณต้องระบุไฟล์ที่มีหนังสือของพระคัมภีร์ที่ใช้ในà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า You need to specify a file of Bible verses to import. คุณต้องระบุไฟล์ของข้อพระคัมภีร์สำหรับนำเข้า You need to specify a version name for your Bible. คุณต้องระบุชื่อฉบับของพระคัมภีร์ You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. คุณต้องใส่ลิขสิทธิ์พระคัมภีร์ของคุณ พระคัมภีร์ซึ่งเป็นของสาธารณะ ต้องมีà¸à¸²à¸£à¸£à¸°à¸šà¸¸à¸ªà¸´à¸—ธิ์ดังà¸à¸¥à¹ˆà¸²à¸§ Bible Exists พระคัมภีร์ที่มีอยู่ This Bible already exists. Please import a different Bible or first delete the existing one. พระคัมภีร์ฉบับนี้มีอยู่à¹à¸¥à¹‰à¸§ โปรดนำเข้าพระคัมภีร์ฉบับที่à¹à¸•à¸à¸•่างà¸à¸±à¸™ หรือลบพระคัมภีร์ฉบับที่มีอยู่à¹à¸¥à¹‰à¸§à¸­à¸­à¸à¸à¹ˆà¸­à¸™ Your Bible import failed. à¸à¸²à¸£à¸™à¸³à¹€à¸‚้าพระคัมภีร์ของคุณล้มเหลว CSV File ไฟล์ CSV Bibleserver เซิร์ฟเวอร์พระคัมภีร์ Permissions: à¸à¸²à¸£à¸­à¸™à¸¸à¸à¸²à¸•: Bible file: ไฟล์พระคัมภีร์: Books file: ไฟล์หนังสือ: Verses file: ไฟล์ข้อพระคัมภีร์: Registering Bible... à¸à¸³à¸¥à¸±à¸‡à¸¥à¸‡à¸—ะเบียนพระคัมภีร์... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. พระคัมภีร์ที่ลงทะเบียน โปรดทราบว่าข้อจะถูà¸à¸”าวน์โหลดตามความต้องà¸à¸²à¸£ ซึ่งจำเป็นเชื่อมต่ออินเทอร์เน็ต Click to download bible list คลิà¸à¹€à¸žà¸·à¹ˆà¸­à¸”าวน์โลดรายà¸à¸²à¸£à¸žà¸£à¸°à¸„ัมภีร์ Download bible list ดาวน์โลดรายà¸à¸²à¸£à¸žà¸£à¸°à¸„ัมภีร์ Error during download à¸à¸²à¸£à¸œà¸´à¸”พลาดเมื่อดาวน์โลด An error occurred while downloading the list of bibles from %s. เà¸à¸´à¸”à¸à¸²à¸£à¸œà¸´à¸”พลาดขึ้นเมื่อดาวน์โลดรายà¸à¸²à¸£à¸žà¸£à¸°à¸„ัมภีร์จาภ%s BiblesPlugin.LanguageDialog Select Language เลือà¸à¸ à¸²à¸©à¸² OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. โปรà¹à¸à¸£à¸¡ OpenLP ไม่สามารถà¸à¸³à¸«à¸™à¸”ภาษาของà¸à¸²à¸£à¹à¸›à¸¥à¸žà¸£à¸°à¸„ัมภีร์ฉบับนี้ได้ โปรดเลือà¸à¸ à¸²à¸©à¸²à¸ˆà¸²à¸à¸£à¸²à¸¢à¸à¸²à¸£à¸”้านล่าง Language: ภาษา: BiblesPlugin.LanguageForm You need to choose a language. คุณต้องเลือà¸à¸ à¸²à¸©à¸² BiblesPlugin.MediaItem Quick à¹à¸šà¸šà¸£à¸§à¸”เร็ว Find: ค้นหา: Book: หนังสือเพลง: Chapter: บทที่: Verse: ข้อที่: From: จาà¸: To: ถึง: Text Search ค้นหาข้อความ Second: ฉบับที่สอง: Scripture Reference อ้างอิงพระคัมภีร์ Toggle to keep or clear the previous results. ล็อคผลà¸à¸²à¸£à¸„้นหาà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰à¹„ว้ หรือลบผลà¸à¸²à¸£à¸„้นหาà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰à¸­à¸­à¸ You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? คุณไม่สามารถค้นหาข้อความจาà¸à¸žà¸£à¸°à¸„ัมภีร์ทั้งสองฉบับร่วมà¸à¸±à¸™à¹„ด้ คุณต้องà¸à¸²à¸£à¸¥à¸šà¸œà¸¥à¸à¸²à¸£à¸„้นหาà¹à¸¥à¸°à¹€à¸£à¸´à¹ˆà¸¡à¸„้นหาใหม่หรือไม่? Bible not fully loaded. à¸à¸²à¸£à¸šà¸£à¸£à¸ˆà¸¸à¸‚้อมูลของพระคัมภีร์ไม่สมบูรณ์ Information ข้อมูลข่าวสาร The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. พระคัมภีร์ฉบับที่สองบางข้อไม่มีในพระคัมภีร์ฉบับหลัภà¹à¸ªà¸”งเฉพาะข้อที่พบในพระคัมภีร์ทั้งสองฉบับ %d ข้อพระคัมภีร์ยังไม่ได้ถูà¸à¸£à¸§à¸¡à¹„ว้ในผลลัพธ์ Search Scripture Reference... ค้นหาโดยอ้างอิงพระคัมภีร์ ..... Search Text... ค้นหาข้อความ... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸šà¸žà¸£à¸°à¸„ัมภีร์ "%s" จาà¸à¹‚ปรà¹à¸à¸£à¸¡ OpenLP? ถ้าคุณต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ คุณต้องนำเข้าพระคัมภีร์ฉบับนี้อีà¸à¸„รั้ง Advanced ขั้นสูง BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. ประเภทของไฟล์พระคัมภีร์ไม่ถูà¸à¸•้อง ไฟล์พระคัมภีร์ของโปรà¹à¸à¸£à¸¡ OpenSong อาจถูà¸à¸šà¸µà¸šà¸­à¸±à¸” คุณต้องทำà¸à¸²à¸£à¸‚ยายไฟล์à¸à¹ˆà¸­à¸™à¸™à¸³à¹€à¸‚้า Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. ประเภทของไฟล์ของพระคัมภีร์ไม่ถูà¸à¸•้อง นี้ดูเหมือนพระคัมภีร์ XML Zefania à¸à¸£à¸¸à¸“าใช้ตัวเลือà¸à¸™à¸³à¹€à¸‚้า Zefania BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... นำเข้า %(bookname) %(chapter)... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... ลบà¹à¸—็à¸à¸—ี่ไม่ได้ใช้ (อาจจะใช้เวลาไม่à¸à¸µà¹ˆà¸™à¸²à¸—ี)... Importing %(bookname)s %(chapter)s... นำเข้า %(bookname) %(chapter)... BiblesPlugin.UpgradeWizardForm Select a Backup Directory เลือà¸à¹„ดเรà¸à¸—อรีสำหรับà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูล Bible Upgrade Wizard ตัวช่วยสร้างà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. ตัวช่วยสร้างนี้ ช่วยให้คุณสามารถปรับปรุงพระคัมภีร์ฉบับที่มีอยู่ จาà¸à¸‰à¸šà¸±à¸šà¸à¹ˆà¸­à¸™à¸‚องโปรà¹à¸à¸£à¸¡ OpenLP 2. คลิà¸à¸—ี่ปุ่มถัดไปด้านล่าง เพื่อเริ่มต้นà¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ Select Backup Directory เลือà¸à¹„ดเรà¸à¸—อรีสำหรับà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูล Please select a backup directory for your Bibles โปรดเลือà¸à¹„ดเรà¸à¸—อรีสำหรับà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลพระคัมภีร์ Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. โปรà¹à¸à¸£à¸¡à¸£à¸¸à¹ˆà¸™à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸² OpenLP 2.0 ไม่สามารถปรับปรุงพระคัมภีร์ได้ จะสร้างà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลของพระคัมภีร์ เพื่อให้คุณสามารถคัดลอà¸à¹„ฟล์à¸à¸¥à¸±à¸šà¹„ปยังไดเรà¸à¸—อรีของโปรà¹à¸à¸£à¸¡ OpenLP หาà¸à¸„ุณต้องà¸à¸²à¸£à¸à¸¥à¸±à¸šà¹„ปใช้โปรà¹à¸à¸£à¸¡ OpenLP รุ่นà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰ คำà¹à¸™à¸°à¸™à¸³à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸§à¸´à¸˜à¸µà¸à¸²à¸£à¸à¸¹à¹‰à¸„ืนไฟล์สามารถดูได้ใน <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. โปรดเลือà¸à¹„ดเรà¸à¸—อรีสำหรับà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลพระคัมภีร์ Backup Directory: ไดเรà¸à¸—อรีสำรองข้อมูล: There is no need to backup my Bibles ไม่ต้องà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลพระคัมภีร์ Select Bibles เลือà¸à¸žà¸£à¸°à¸„ัมภีร์ Please select the Bibles to upgrade เลือà¸à¸žà¸£à¸°à¸„ัมภีร์ที่ต้องà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ Upgrading à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ Please wait while your Bibles are upgraded. โปรดรอสัà¸à¸„รู่ในขณะที่à¸à¸³à¸¥à¸±à¸‡à¸—ำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ The backup was not successful. To backup your Bibles you need permission to write to the given directory. à¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลไม่สำเร็จ à¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸‚้อมูลพระคัมภีร์ คุณต้องได้รับอนุà¸à¸²à¸•ในà¸à¸²à¸£à¹€à¸‚ียนข้อมูลไปยังไดเรà¸à¸—อรีที่ระบุไว้ Upgrading Bible %s of %s: "%s" Failed à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ %s ของ %s: "%s" ล้มเหลว Upgrading Bible %s of %s: "%s" Upgrading ... à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ %s ของ %s: "%s" à¸à¸³à¸¥à¸±à¸‡à¸—ำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ ... Download Error เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸”าวน์โหลด To upgrade your Web Bibles an Internet connection is required. à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ผ่านทางเว็บไซต์ คุณต้องทำà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•่ออินเทอร์เน็ต Upgrading Bible %s of %s: "%s" Upgrading %s ... à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ %s of %s: "%s" à¸à¸³à¸¥à¸±à¸‡à¸—ำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ %s ... Upgrading Bible %s of %s: "%s" Complete à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ %s ของ %s: "%s" เสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ , %s failed , %s ล้มเหลว Upgrading Bible(s): %s successful%s à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์(s): %s เสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ %s Upgrade failed. à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§ You need to specify a backup directory for your Bibles. คุณต้องระบุไดเรà¸à¸—อรีสำหรับà¸à¸²à¸£à¸ªà¸³à¸£à¸­à¸‡à¸žà¸£à¸°à¸„ัมภีร์ของคุณ Starting upgrade... เริ่มต้นà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡... There are no Bibles that need to be upgraded. ไม่มีพระคัมภีร์ที่ต้องà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. ประเภทของไฟล์ของพระคัมภีร์ไม่ถูà¸à¸•้อง บางครั้งพระคัมภีร์ Zefania ถูà¸à¸šà¸µà¸šà¸­à¸±à¸” มันต้องถูà¸à¸‚ยายà¸à¹ˆà¸­à¸™à¸—ี่นำเข้าได้ BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... นำเข้า %(bookname) %(chapter)... CustomPlugin Custom Slide name singular ข้อความที่à¸à¸³à¸«à¸™à¸”เอง Custom Slides name plural ข้อความที่à¸à¸³à¸«à¸™à¸”เอง Custom Slides container title ข้อความที่à¸à¸³à¸«à¸™à¸”เอง Load a new custom slide. เพิ่มข้อความใหม่ Import a custom slide. นำเข้าข้อความ Add a new custom slide. เพิ่มข้อความใหม่ Edit the selected custom slide. à¹à¸à¹‰à¹„ขข้อความที่เลือภDelete the selected custom slide. ลบข้อความที่เลือภPreview the selected custom slide. à¹à¸ªà¸”งตัวอย่างข้อความที่เลือภSend the selected custom slide live. ส่งข้อความที่เลือà¸à¹à¸ªà¸”งบนจอภาพ Add the selected custom slide to the service. เพิ่มข้อความที่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>ปลั๊à¸à¸­à¸´à¸™à¸ à¸²à¸žà¸™à¸´à¹ˆà¸‡à¸›à¸£à¸±à¸šà¹€à¸­à¸‡</ strong><br /> ปลั๊à¸à¸­à¸´à¸™à¸ à¸²à¸žà¸™à¸´à¹ˆà¸‡à¸›à¸£à¸±à¸šà¹€à¸­à¸‡à¸—ำให้คุณเตรียมไว้ภาพนิ่งเอง à¹à¸¥à¸°à¹à¸ªà¸”งบนหน้าจอเช่นเดียวà¸à¸±à¸™à¸à¸±à¸šà¸šà¸—เพลงได้ ปลั๊à¸à¸­à¸´à¸™à¸™à¸µà¹‰à¹ƒà¸«à¹‰à¸­à¸´à¸ªà¸£à¸°à¸¡à¸²à¸à¸‚ึ้นà¸à¸§à¹ˆà¸²à¸›à¸¥à¸±à¹Šà¸à¸­à¸´à¸™à¸šà¸—เพลง CustomPlugin.CustomTab Custom Display à¸à¸³à¸«à¸™à¸”à¸à¸²à¸£à¹à¸ªà¸”งบนจอภาพ Display footer ส่วนล่างของà¸à¸²à¸£à¹à¸ªà¸”งบนจอภาพ Import missing custom slides from service files นำเข้าภาพนิ่งปรับเองที่ยังขาดอยู่จาà¸à¹„ฟล์บริà¸à¸²à¸£ CustomPlugin.EditCustomForm Edit Custom Slides à¹à¸à¹‰à¹„ขข้อความ &Title: &ชื่อเพลง: Add a new slide at bottom. เพิ่มข้อความใหม่ลงในช่องด้านล่าง Edit the selected slide. à¹à¸à¹‰à¹„ขข้อความที่เลือภEdit all the slides at once. à¹à¸à¹‰à¹„ขข้อความทั้งหมดในครั้งเดียว Split a slide into two by inserting a slide splitter. à¹à¸¢à¸à¸‚้อความออà¸à¹€à¸›à¹‡à¸™à¸ªà¹ˆà¸§à¸™à¹†à¹‚ดยà¹à¸—รà¸à¸•ัวà¹à¸¢à¸à¸‚้อความ The&me: &ธีม: &Credits: &ขอขอบคุณ: You need to type in a title. คุณต้องใส่หัวข้อ Ed&it All &à¹à¸à¹‰à¹„ขทั้งหมด Insert Slide à¹à¸—รà¸à¸ à¸²à¸žà¸™à¸´à¹ˆà¸‡ You need to add at least one slide. คุณต้องเพิ่มภาพนิ่งอันหนึ่งอย่างน้อย CustomPlugin.EditVerseForm Edit Slide à¹à¸à¹‰à¹„ขข้อความ CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸£à¸¹à¸›à¸ à¸²à¸ž</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸£à¸¹à¸›à¸ à¸²à¸žà¸ªà¸²à¸¡à¸²à¸£à¸–à¹à¸ªà¸”งรูปภาพ<br />หนึ่งในคุณสมบัติของโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸™à¸µà¹‰à¸„ือà¸à¸²à¸£à¸ˆà¸±à¸”à¸à¸¥à¸¸à¹ˆà¸¡à¸ à¸²à¸žà¸«à¸¥à¸²à¸¢à¸ à¸²à¸žà¹€à¸‚้าด้วยà¸à¸±à¸™ ช่วยลดความยุ่งยาà¸à¸à¸²à¸£à¹à¸ªà¸”งผลของภาพหลายภาพ โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸™à¸µà¹‰à¸¢à¸±à¸‡à¸ªà¸²à¸¡à¸²à¸£à¸–ใช้ประโยชน์จาà¸à¹‚ปรà¹à¸à¸£à¸¡ OpenLP "วนรอบตามเวลา"สร้างสไลด์โชว์ทำงานโดยอัตโนมัติ นอà¸à¸ˆà¸²à¸à¸™à¸µà¹‰à¸ à¸²à¸žà¸ªà¸²à¸¡à¸²à¸£à¸–ใช้à¹à¸—นที่ธีมปัจจุบัน เป็นพื้นหลัง ซึ่งทำให้รายà¸à¸²à¸£à¹€à¸Šà¹ˆà¸™ ข้อความ เพลง มีพื้นหลังจาà¸à¸ à¸²à¸žà¸—ี่เลือà¸à¹à¸—นพื้นหลังของธีม Image name singular รูปภาพ Images name plural รูปภาพ Images container title รูปภาพ Load a new image. เพิ่มรูปภาพใหม่ Add a new image. เพิ่มรูปภาพใหม่ Edit the selected image. à¹à¸à¹‰à¹„ขรูปภาพที่เลือภDelete the selected image. ลบรูปภาพที่เลือภPreview the selected image. à¹à¸ªà¸”งตัวอย่างรูปภาพที่เลือภSend the selected image live. ส่งรูปภาพที่เลือà¸à¹à¸ªà¸”งบนจอภาพ Add the selected image to the service. เพิ่มรูปภาพที่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ ImagePlugin.AddGroupForm Add group เพิ่มà¸à¸¥à¸¸à¹ˆà¸¡ Parent group: à¸à¸¥à¸¸à¹ˆà¸¡à¸›à¸à¸„รอง: Group name: ชื่อà¸à¸¥à¸¸à¹ˆà¸¡ You need to type in a group name. คุณต้องป้อนชื่อà¸à¸¥à¸¸à¹ˆà¸¡ Could not add the new group. ไม่สามารถเพิ่มà¸à¸¥à¸¸à¹ˆà¸¡à¹ƒà¸«à¸¡à¹ˆ This group already exists. à¸à¸¥à¸¸à¹ˆà¸¡à¸™à¸µà¹‰à¸¡à¸µà¸­à¸¢à¸¹à¹ˆà¹à¸¥à¹‰à¸§ ImagePlugin.ChooseGroupForm Select Image Group จงเลีอà¸à¸à¸¥à¸¸à¹ˆà¸¡à¸‚องรูปภาพ Add images to group: เพิ่มรูปภาพในà¸à¸¥à¸¸à¹ˆà¸¡: No group ไม่มีà¸à¸¥à¹ˆà¸¸à¸¡ Existing group à¸à¸¥à¸¸à¹ˆà¸¡à¸¡à¸µà¸­à¸¢à¸¹à¹ˆ New group à¸à¸¥à¸¸à¹ˆà¸¡à¹ƒà¸«à¸¡à¹ˆ ImagePlugin.ExceptionDialog Select Attachment เลือà¸à¸ªà¸´à¹ˆà¸‡à¸—ี่à¹à¸™à¸šà¸¡à¸² ImagePlugin.MediaItem Select Image(s) เลือà¸à¸£à¸¹à¸›à¸ à¸²à¸ž(s) You must select an image to replace the background with. คุณต้องเลือà¸à¸£à¸¹à¸›à¸ à¸²à¸žà¸—ี่ใช้เป็นพื้นหลัง Missing Image(s) รูปภาพ(s)หายไป The following image(s) no longer exist: %s รูปภาพ(s)ต่อไปนี้ไม่มีà¹à¸¥à¹‰à¸§: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? รูปภาพ(s)ต่อไปนี้ไม่มีà¹à¸¥à¹‰à¸§: %s คุณต้องà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡à¸£à¸¹à¸›à¸ à¸²à¸žà¸­à¸·à¹ˆà¸™à¹†à¸•่อไปหรือไม่? There was a problem replacing your background, the image file "%s" no longer exists. เà¸à¸´à¸”ปัà¸à¸«à¸²à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸žà¸·à¹‰à¸™à¸«à¸¥à¸±à¸‡à¸‚องคุณคือ ไฟล์รูปภาพ "%s" ไม่มีà¹à¸¥à¹‰à¸§ There was no display item to amend. มีรายà¸à¸²à¸£à¸—ี่ไม่à¹à¸ªà¸”งผลต้องทำà¸à¸²à¸£à¹à¸à¹‰à¹„ข -- Top-level group -- -- คลุ่มสูงสุด -- You must select an image or group to delete. Remove group ลบà¸à¸¥à¸¸à¹ˆà¸¡ Are you sure you want to remove "%s" and everything in it? คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸² อยาà¸à¸¥à¸š "%s" à¸à¸±à¸™à¸—ุà¸à¸ªà¸´à¹ˆà¸‡à¸—ี่อยู่ข้างในไหม ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. ภาพพื้นหลังที่มองเห็น มีอัตราส่วนความละเอียดà¹à¸•à¸à¸•่างจาà¸à¸—ี่มองเห็นบนจอภาพ Media.player Audio เสียง Video หนัง VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸Šà¹ˆà¸§à¸¢à¹ƒà¸«à¹‰à¸„ุณสามารถเล่นสื่อเสียงà¹à¸¥à¸°à¸§à¸´à¸”ีโอ Media name singular สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Media name plural สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Media container title สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Load new media. เพิ่มสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¹ƒà¸«à¸¡à¹ˆ Add new media. เพิ่มสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¹ƒà¸«à¸¡à¹ˆ Edit the selected media. à¹à¸à¹‰à¹„ขสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่เลือภDelete the selected media. ลบสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่เลือภPreview the selected media. à¹à¸ªà¸”งตัวอย่างสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่เลือภSend the selected media live. ส่งสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่เลือà¸à¹à¸ªà¸”งบนจอภาพ Add the selected media to the service. เพิ่มสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ MediaPlugin.MediaClipSelector Select Media Clip Source Media path: Select drive from list Load disc Track Details Title: หัวข้อ: Audio track: Subtitle track: HH:mm:ss.z ชช:นน:วว.ศ Clip Range Start point: Set start point Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media เลือà¸à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ You must select a media file to delete. คุณต้องเลือà¸à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่ต้องà¸à¸²à¸£à¸¥à¸šà¸­à¸­à¸ You must select a media file to replace the background with. คุณต้องเลือà¸à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่ต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¹€à¸›à¹‡à¸™à¸žà¸·à¹‰à¸™à¸«à¸¥à¸±à¸‡ There was a problem replacing your background, the media file "%s" no longer exists. เà¸à¸´à¸”ปัà¸à¸«à¸²à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸žà¸·à¹‰à¸™à¸«à¸¥à¸±à¸‡à¸‚องคุณคือ ไฟล์สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ "%s" ไม่มีà¹à¸¥à¹‰à¸§ Missing Media File ไฟล์สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸«à¸²à¸¢à¹„ป The file %s no longer exists. ไฟล์ %s ไม่มีà¹à¸¥à¹‰à¸§ Videos (%s);;Audio (%s);;%s (*) วีดีโอ (%s);;เสียง (%s);;%s (*) There was no display item to amend. มีรายà¸à¸²à¸£à¸—ี่ไม่à¹à¸ªà¸”งผลต้องทำà¸à¸²à¸£à¹à¸à¹‰à¹„ข Unsupported File ไฟล์ที่ไม่สนับสนุน Use Player: โปรà¹à¸à¸£à¸¡à¸—ี่ใช้เล่น: VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden อนุà¸à¸²à¸•ให้โปรà¹à¸à¸£à¸¡à¹€à¸¥à¹ˆà¸™à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸–ูà¸à¹à¸—นที่ได้ Start Live items automatically OPenLP.MainWindow &Projector Manager OpenLP Image Files ไฟล์รูปภาพ Information ข้อมูลข่าวสาร Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? รูปà¹à¸šà¸šà¸žà¸£à¸°à¸„ัมภีร์มีà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡ คุณทำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ที่มีอยู่ของคุณ ควรทำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹‚ปรà¹à¸à¸£à¸¡ OpenLP ในขณะนี้? Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits ขอขอบคุณ License สัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸• build %s สร้าง %s 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; version 2 of the License. โปรà¹à¸à¸£à¸¡à¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¸‹à¸­à¸Ÿà¸•์à¹à¸§à¸£à¹Œà¹€à¸ªà¸£à¸µ คุณสามารถà¹à¸ˆà¸à¸ˆà¹ˆà¸²à¸¢ à¹à¸¥à¸°/หรือ à¹à¸à¹‰à¹„ขได้ภายใต้เงื่อนไขของ GNU General Public License เผยà¹à¸žà¸£à¹ˆà¹‚ดย Free Software Foundation; รุ่นที่ 2 ของสัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸• 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 below for more details. โปรà¹à¸à¸£à¸¡à¸™à¸µà¹‰à¹€à¸œà¸¢à¹à¸žà¸£à¹ˆà¹‚ดยหวังว่าจะเป็นประโยชน์ à¹à¸•่ไม่มีà¸à¸²à¸£à¸£à¸±à¸šà¸›à¸£à¸°à¸à¸±à¸™à¹ƒà¸”ๆ ไม่มีà¹à¸¡à¹‰à¸à¸²à¸£à¸£à¸±à¸šà¸›à¸£à¸°à¸à¸±à¸™à¹€à¸Šà¸´à¸‡à¸žà¸²à¸“ิชย์ หรือเหมาะสมสำหรับวัตถุประสงค์โดยเฉพาะ สำหรับรายละเอียดเพิ่มเติมดูด้านล่าง OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. โปรà¹à¸à¸£à¸¡ OpenLP <version><revision> - เป็นโปรà¹à¸à¸£à¸¡ Open Source สำหรับฉายเนื้อเพลง โปรà¹à¸à¸£à¸¡ OpenLP คือซอฟต์à¹à¸§à¸£à¹Œà¹€à¸ªà¸£à¸µà¹ƒà¸Šà¹‰à¹ƒà¸™à¸‡à¸²à¸™à¸™à¸³à¹€à¸ªà¸™à¸­à¸‚องคริสตจัà¸à¸£ หรือสำหรับฉายเนื้อเพลง ใช้à¹à¸ªà¸”งเนื้อเพลง ข้อพระคัมภีร์ วิดีโอ รูปภาพ à¹à¸¥à¸°à¹à¸¡à¹‰à¸à¸£à¸°à¸—ั่งงานนำเสนอ(ถ้า Impress, PowerPoint หรือ PowerPoint Viewer ถูà¸à¸•ิดตั้ง) สำหรับà¸à¸²à¸£à¸™à¸¡à¸±à¸ªà¸à¸²à¸£à¹ƒà¸™à¸„ริสตจัà¸à¸£ à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸•้องมีคอมพิวเตอร์à¹à¸¥à¸°à¹€à¸„รื่องฉายโปรเจ็à¸à¹€à¸•อร์ ค้นหาข้อมูลเพิ่มเติมเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ปรà¹à¸à¸£à¸¡ OpenLP: http://openlp.org/ โปรà¹à¸à¸£à¸¡ OpenLP ถูà¸à¹€à¸‚ียนà¹à¸¥à¸°à¸”ูà¹à¸¥à¹‚ดยอาสาสมัคร หาà¸à¸„ุณต้องà¸à¸²à¸£à¹€à¸«à¹‡à¸™à¸‹à¸­à¸Ÿà¹à¸§à¸£à¹Œà¹€à¸ªà¸£à¸µ ที่เขียนสำหรับคริสเตียนมาà¸à¸‚ึ้น โปรดพิจารณาร่วมเป็นอาสาสมัคร โดยใช้ปุ่มด้านล่าง Volunteer อาสาสมัคร Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings ตั้งค่าà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸£à¹ˆà¸§à¸¡à¸à¸±à¸™ Number of recent files to display: จำนวนไฟล์ที่à¹à¸ªà¸”งล่าสุด: Remember active media manager tab on startup จดจำà¸à¸²à¸£à¹€à¸›à¸´à¸”ใช้งานà¹à¸—็บจัดà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸™à¸³à¹€à¸ªà¸™à¸­ เมื่อเริ่มต้นโปรà¹à¸à¸£à¸¡ Double-click to send items straight to live ดับเบิลคลิà¸à¹€à¸žà¸·à¹ˆà¸­à¸ªà¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¹„ปà¹à¸ªà¸”งบนจอภาพ Expand new service items on creation ขยายรายà¸à¸²à¸£à¸—ี่สร้างใหม่ในà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Enable application exit confirmation ขยายà¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¹ƒà¸™à¸«à¸™à¹‰à¸²à¸•่างà¸à¹ˆà¸­à¸™à¸­à¸­à¸à¸ˆà¸²à¸à¹‚ปรà¹à¸à¸£à¸¡ Mouse Cursor เคอร์เซอร์เมาส์ Hide mouse cursor when over display window ซ่อนเคอร์เซอร์ของเมาส์บนจอภาพ Default Image รูปภาพเริ่มต้น Background color: สีพื้นหลัง: Image file: ไฟล์รูปภาพ: Open File เปิดไฟล์ Advanced ขั้นสูง Preview items when clicked in Media Manager à¹à¸ªà¸”งตัวอย่างเมื่อคลิà¸à¸—ี่รายà¸à¸²à¸£à¹ƒà¸™à¹à¸—็บจัดà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸™à¸³à¹€à¸ªà¸™à¸­ Browse for an image file to display. เรียà¸à¸”ูไฟล์รูปภาพที่ต้องà¸à¸²à¸£à¹à¸ªà¸”ง Revert to the default OpenLP logo. à¸à¸¥à¸±à¸šà¹„ปใช้โลโà¸à¹‰à¹€à¸£à¸´à¹ˆà¸¡à¸•้นของโปรà¹à¸à¸£à¸¡ OpenLP Default Service Name ค่าเริ่มต้นของชื่อà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Enable default service name เปิดใช้งานค่าเริ่มต้นของชื่อà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Date and Time: วันที่à¹à¸¥à¸°à¹€à¸§à¸¥à¸²: Monday วันจันทร์ Tuesday วันอังคาร Wednesday วันพุธ Friday วันศุà¸à¸£à¹Œ Saturday วันเสาร์ Sunday วันอาทิตย์ Now ปัจจุบัน Time when usual service starts. เวลาปà¸à¸•ิที่เริ่มต้นà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Name: ชื่อ: Consult the OpenLP manual for usage. คู่มือà¹à¸™à¸°à¸™à¸³à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹‚ปรà¹à¸à¸£à¸¡ OpenLP Revert to the default service name "%s". à¸à¸¥à¸±à¸šà¹„ปใช้ค่าเริ่มต้นของชื่อà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ "%s" Example: ตัวอย่าง: Bypass X11 Window Manager เลี่ยง X11 Window Manager Syntax error. ผิดพลาดทางไวยาà¸à¸£à¸“์. Data Location ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งของข้อมูล Current path: เส้นทางปัจจุบัน: Custom path: เส้นทางที่à¸à¸³à¸«à¸™à¸”เอง: Browse for new data file location. เรียà¸à¸”ูตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งใหม่ของไฟล์ข้อมูล Set the data location to the default. ตั้งค่าตำà¹à¸™à¹ˆà¸‡à¸—ี่ตั้งของข้อมูลเป็นค่าเริ่มต้น Cancel ยà¸à¹€à¸¥à¸´à¸ Cancel OpenLP data directory location change. ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งไดเรà¸à¸—อรีข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP Copy data to new location. คัดลอà¸à¸‚้อมูลไปตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งใหม่ Copy the OpenLP data files to the new location. คัดลอà¸à¹„ฟล์ข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP ไปตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งใหม่ <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>คำเตือน:</strong> ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งไดเรà¸à¸—อรีใหม่มีไฟล์ข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP อยู่à¹à¸¥à¹‰à¸§ ไฟล์เหล่านี้จะถูà¸à¹à¸—นที่ระหว่างà¸à¸²à¸£à¸„ัดลอภData Directory Error เà¸à¸´à¸”ข้อผิดพลาดไดเรà¸à¸—อรีข้อมูล Select Data Directory Location เลือà¸à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งไดเรà¸à¸—อรีข้อมูล Confirm Data Directory Change ยืนยันà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹„ดเรà¸à¸—อรีข้อมูล Reset Data Directory ตั้งค่าไดเรà¸à¸—อรีข้อมูลใหม่ Overwrite Existing Data เขียนทับข้อมูลที่มีอยู่ OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. ไม่พบไดเรà¸à¸—อรีข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP %s ไดเรà¸à¸—อรีข้อมูลà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰ เปลี่ยนจาà¸à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¹€à¸£à¸´à¹ˆà¸¡à¸•้นของโปรà¹à¸à¸£à¸¡ OpenLP ถ้าตำà¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸«à¸¡à¹ˆà¹€à¸›à¹‡à¸™à¸­à¸¸à¸›à¸à¸£à¸“์ที่ถอดออà¸à¹„ด้ ต้องเชื่อมต่ออุปà¸à¸£à¸“์นั้นà¸à¹ˆà¸­à¸™ คลิà¸"ไม่" เพื่อหยุดà¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¸‚้อมูลโปรà¹à¸à¸£à¸¡ OpenLP ช่วยให้คุณสามารถà¹à¸à¹‰à¹„ขปัà¸à¸«à¸²à¸—ี่เà¸à¸´à¸”ขึ้น คลิภ"ใช่" เพื่อตั้งค่าไดเรà¸à¸—อรีข้อมูลไปยังตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งเริ่มต้น Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งไดเรà¸à¸—อรีข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP ไปที่: %s ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งจะถูà¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸«à¸¥à¸±à¸‡à¸ˆà¸²à¸à¸›à¸´à¸”โปรà¹à¸à¸£à¸¡ OpenLP Thursday Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งไดเรà¸à¸—อรีข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP ไปยังตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งเริ่มต้น? ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งนี้จะถูà¸à¹ƒà¸Šà¹‰à¸«à¸¥à¸±à¸‡à¸ˆà¸²à¸à¸›à¸´à¸”โปรà¹à¸à¸£à¸¡ OpenLP OpenLP.ColorButton Click to select a color. คลิà¸à¹€à¸žà¸·à¹ˆà¸­à¹€à¸¥à¸·à¸­à¸à¸ªà¸µ OpenLP.DB RGB Video หนัง Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred เà¸à¸´à¸”เหตุà¸à¸²à¸£à¸“์ผิดพลาดขึ้น Send E-Mail ส่ง E-Mail Save to File บันทึà¸à¹„ฟล์ Attach File ไฟล์à¹à¸™à¸š Description characters to enter : %s ป้อนคำอธิบาย : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s คำอธิบาย: %s Save Crash Report บันทึà¸à¸£à¸²à¸¢à¸‡à¸²à¸™à¸„วามผิดพลาด Text files (*.txt *.log *.text) ไฟล์ข้อความ(*.txt *.log *.text) OpenLP.FileRenameForm File Rename เปลี่ยนชื่อไฟล์ New File Name: ชื่อใหม่ไฟล์ File Copy คัดลอà¸à¹„ฟล์ OpenLP.FirstTimeLanguageForm Select Translation เลือà¸à¸ à¸²à¸©à¸²à¸—ี่มีà¸à¸²à¸£à¹à¸›à¸¥ Choose the translation you'd like to use in OpenLP. เลือà¸à¸ à¸²à¸©à¸²à¸—ี่มีà¸à¸²à¸£à¹à¸›à¸¥ ที่คุณต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¹ƒà¸™à¹‚ปรà¹à¸à¸£à¸¡ OpenLP Translation: ภาษาที่มีà¸à¸²à¸£à¹à¸›à¸¥: OpenLP.FirstTimeWizard Songs เพลง First Time Wizard ตัวช่วยสร้างครั้งà¹à¸£à¸ Welcome to the First Time Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างครั้งà¹à¸£à¸ Activate required Plugins เปิดใช้งานโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่จำเป็น Select the Plugins you wish to use. เลือà¸à¹‚ปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่คุณต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ Bible พระคัมภีร์ Images รูปภาพ Presentations งานนำเสนอ Media (Audio and Video) สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ (เสียงà¹à¸¥à¸°à¸§à¸´à¸”ีโอ) Allow remote access อนุà¸à¸²à¸•ให้เข้าถึงจาà¸à¸£à¸°à¸¢à¸°à¹„à¸à¸¥ Monitor Song Usage จอภาพà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Allow Alerts เปิดใช้งานà¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Default Settings ตั้งค่าเป็นเริ่มต้น Downloading %s... à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลด %s... Enabling selected plugins... เปิดใช้งานโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่เลือà¸... No Internet Connection ไม่มีà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•่ออินเทอร์เน็ต Unable to detect an Internet connection. ไม่สามารถเชื่อมต่ออินเทอร์เน็ตได้ Sample Songs เพลงตัวอย่าง Select and download public domain songs. เลือà¸à¹à¸¥à¸°à¸”าวน์โหลดเพลงที่เป็นของสาธารณะ Sample Bibles พระคัมภีร์ตัวอย่าง Select and download free Bibles. เลือà¸à¹à¸¥à¸°à¸”าวน์โหลดพระคัมภีร์ฟรี Sample Themes ธีมตัวอย่าง Select and download sample themes. เลือà¸à¹à¸¥à¸°à¸”าวน์โหลดธีมตัวอย่าง Set up default settings to be used by OpenLP. ตั้งค่าเริ่มต้นสำหรับà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹‚ปรà¹à¸à¸£à¸¡ OpenLP Default output display: ค่าเริ่มต้นà¸à¸²à¸£à¹à¸ªà¸”งผล: Select default theme: เลือà¸à¸˜à¸µà¸¡à¹€à¸£à¸´à¹ˆà¸¡à¸•้น: Starting configuration process... à¸à¸³à¸¥à¸±à¸‡à¹€à¸£à¸´à¹ˆà¸¡à¸•้นà¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸à¸²à¸£à¸•ั้งค่า... Setting Up And Downloading ทำà¸à¸²à¸£à¸•ั้งค่าà¹à¸¥à¸°à¸”าวน์โหลด Please wait while OpenLP is set up and your data is downloaded. โปรดรอสัà¸à¸„รู่ในขณะที่โปรà¹à¸à¸£à¸¡ OpenLP ทำà¸à¸²à¸£à¸•ั้งค่าà¹à¸¥à¸°à¸”าวน์โหลดข้อมูลของคุณ Setting Up ทำà¸à¸²à¸£à¸•ั้งค่า Custom Slides ข้อความที่à¸à¸³à¸«à¸™à¸”เอง Finish สิ้นสุด No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. ไม่มีà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•่ออินเทอร์เน็ต à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸•ัวช่วยสร้างครั้งà¹à¸£à¸à¸•้องเชื่อมต่ออินเทอร์เน็ต เพื่อให้สามารถดาวน์โหลดตัวอย่างเพลง พระคัมภีร์à¹à¸¥à¸°à¸˜à¸µà¸¡ คลิà¸à¸—ี่ปุ่ม เสร็จ เพื่อเริ่มต้นโปรà¹à¸à¸¡ OpenLP ด้วยค่าเริ่มต้นà¹à¸¥à¸°à¹„ม่มีข้อมูลตัวอย่าง เริ่มà¸à¸²à¸£à¸—ำงานตัวช่วยสร้างครั้งà¹à¸£à¸à¸­à¸µà¸à¸„รั้ง เพื่อนำเข้าข้อมูลตัวอย่างนี้ในเวลาต่อมา ตรวจสอบà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•่ออินเทอร์เน็ตของคุณ à¹à¸¥à¸°à¹€à¸£à¸´à¹ˆà¸¡à¸à¸²à¸£à¸—ำงานตัวช่วยสร้างครั้งà¹à¸£à¸à¸­à¸µà¸à¸„รั้ง โดยเลือà¸à¸—ี่ "เครื่องมือ / ตัวช่วยสร้างครั้งà¹à¸£à¸" จาà¸à¹‚ปรà¹à¸à¸£à¸¡ OpenLP Download Error เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸”าวน์โหลด There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel ยà¸à¹€à¸¥à¸´à¸ Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags ปรับà¹à¸•่งรูปà¹à¸šà¸šà¹à¸—็ภDescription คำอธิบาย Tag à¹à¸—็ภStart HTML เริ่ม HTML End HTML สิ้นสุด HTML Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML ที่นี่> Validation Error à¸à¸²à¸£à¸•รวจสอบเà¸à¸´à¸”ข้อผิดพลาด Description is missing Tag is missing Tag %s already defined. à¹à¸—็ภ%s à¸à¸³à¸«à¸™à¸”ไว้à¹à¸¥à¹‰à¸§ Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red สีà¹à¸”ง Black สีดำ Blue สีน้ำเงิน Yellow สีเหลือง Green สีเขียว Pink สีชมพู Orange สีส้ม Purple สีม่วง White สีขาว Superscript ตัวอัà¸à¸©à¸­à¸¢à¸¹à¹ˆà¸šà¸™à¸¡à¸¸à¸¡à¸‚วาของตัวอื่น Subscript ตัวอัà¸à¸©à¸£à¸­à¸¢à¸¹à¹ˆà¸•่ำà¸à¸§à¹ˆà¸²à¸•ัวอื่น Paragraph ย่อหน้า Bold หนา Italics ตัวเอียง Underline ขีดเส้นใต้ Break หยุด OpenLP.GeneralTab General ทั่วไป Monitors จอภาพ Select monitor for output display: เลือà¸à¸ˆà¸­à¸ à¸²à¸žà¸ªà¸³à¸«à¸£à¸±à¸šà¹ƒà¸Šà¹‰à¹à¸ªà¸”งผล: Display if a single screen à¹à¸ªà¸”งผลถ้ามีหน้าจอเดียว Application Startup เริ่มต้นโปรà¹à¸à¸£à¸¡ Show blank screen warning à¹à¸ªà¸”งคำเตือนเมื่อจอภาพมีค่าเป็น หน้าจอว่างเปล่า Automatically open the last service เปิดไฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ี่บันทึà¸à¹„ว้ครั้งล่าสุดโดยอัตโนมัติ Show the splash screen à¹à¸ªà¸”งหน้าจอต้อนรับà¸à¹ˆà¸­à¸™à¹€à¸£à¸´à¹ˆà¸¡à¹‚ปรà¹à¸à¸£à¸¡ Application Settings ตั้งค่าโปรà¹à¸à¸£à¸¡ Prompt to save before starting a new service เตือนให้มีà¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¸à¹ˆà¸­à¸™à¹€à¸£à¸´à¹ˆà¸¡à¸•้นà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹ƒà¸«à¸¡à¹ˆ Automatically preview next item in service à¹à¸ªà¸”งตัวอย่างรายà¸à¸²à¸£à¸–ัดไปโดยอัตโนมัติในà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ sec วินาที CCLI Details รายละเอียด CCLI SongSelect username: ชื่อผู้ใช้ SongSelect: SongSelect password: รหัสผ่าน SongSelect: X à¹à¸à¸™ X Y à¹à¸à¸™ Y Height ความสูง Width ความà¸à¸§à¹‰à¸²à¸‡ Check for updates to OpenLP ตรวจสอบà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹‚ปรà¹à¸à¸£à¸¡ OpenLP Unblank display when adding new live item ยà¸à¹€à¸¥à¸´à¸à¸«à¸™à¹‰à¸²à¸ˆà¸­à¸§à¹ˆà¸²à¸‡à¹€à¸›à¸¥à¹ˆà¸² เมื่อส่งรายà¸à¸²à¸£à¹ƒà¸«à¸¡à¹ˆà¹„ปà¹à¸ªà¸”งบนจอภาพ Timed slide interval: ระยะเวลาที่เลื่อน: Background Audio เสียงพื้นหลัง Start background audio paused หยุดใช้เสียงพื้นหลังชั่วคราว Service Item Slide Limits ขอบเขตà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¸£à¸²à¸¢à¸à¸²à¸£ Override display position: ตำà¹à¸«à¸™à¹ˆà¸‡à¸ˆà¸­à¸ à¸²à¸žà¸—ี่ซ้อนทับ: Repeat track list เล่นรายà¸à¸²à¸£à¹€à¸ªà¸µà¸¢à¸‡à¸‹à¹‰à¸³ Behavior of next/previous on the last/first slide: ลำดับถัดไป/ลำดับà¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²/ลำดับà¹à¸£à¸: &Remain on Slide &เลื่อนขึ้นเลื่อนลงอยู่ในรายà¸à¸²à¸£ &Wrap around &เลื่อนà¹à¸šà¸šà¸§à¸™à¸£à¸­à¸šà¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¸£à¸²à¸¢à¸à¸²à¸£ &Move to next/previous service item &เลื่อนต่อไปที่รายà¸à¸²à¸£à¸–ัดไป / รายà¸à¸²à¸£à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸² OpenLP.LanguageManager Language ภาษา Please restart OpenLP to use your new language setting. โปรดเริ่มต้นโปรà¹à¸à¸£à¸¡ OpenLP อีà¸à¸„รั้ง เมื่อคุณตั้งค่าภาษาใหม่ OpenLP.MainDisplay OpenLP Display à¹à¸ªà¸”งโปรà¹à¸à¸£à¸¡OpenLP OpenLP.MainWindow &File &ไฟล์ &Import &นำเข้าไฟล์ &Export &ส่งออà¸à¹„ฟล์ &View &มุมมอง M&ode &รูปà¹à¸šà¸šà¹‚ปรà¹à¸à¸£à¸¡ &Tools &เครื่องมือ &Settings &ตั้งค่าโปรà¹à¸à¸£à¸¡ &Language &ภาษา &Help &ช่วยเหลือ Service Manager à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Theme Manager จัดà¸à¸²à¸£à¸£à¸¹à¸›à¹à¸šà¸šà¸˜à¸µà¸¡ Open an existing service. เปิดใช้ไฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ี่มีอยู่à¹à¸¥à¹‰à¸§ Save the current service to disk. บันทึà¸à¸£à¸²à¸¢à¸à¸²à¸£à¹„ปที่จัดเà¸à¹‡à¸š Save Service As บันทึà¸à¸£à¸²à¸¢à¸à¸²à¸£à¹€à¸›à¹‡à¸™à¸Šà¸·à¹ˆà¸­à¸­à¸·à¹ˆà¸™ Save the current service under a new name. บันทึà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸—ี่จัดเà¸à¹‡à¸šà¹€à¸›à¹‡à¸™à¸Šà¸·à¹ˆà¸­à¹ƒà¸«à¸¡à¹ˆ E&xit &ออà¸à¸ˆà¸²à¸à¹‚ปรà¹à¸à¸£à¸¡ Quit OpenLP ปิดโปรà¹à¸à¸£à¸¡ OpenLP &Theme &ธีม &Configure OpenLP... &ปรับà¹à¸•่งโปรà¹à¸à¸£à¸¡ OpenLP... &Media Manager &จัดà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸™à¸³à¹€à¸ªà¸™à¸­ Toggle Media Manager ล็อคจัดà¸à¸²à¸£à¸™à¸³à¹€à¸ªà¸™à¸­ Toggle the visibility of the media manager. ล็อคà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องจัดà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸™à¸³à¹€à¸ªà¸™à¸­ &Theme Manager &จัดà¸à¸²à¸£à¸£à¸¹à¸›à¹à¸šà¸šà¸˜à¸µà¸¡ Toggle Theme Manager ล็อคจัดà¸à¸²à¸£à¸£à¸¹à¸›à¹à¸šà¸šà¸˜à¸µà¸¡ Toggle the visibility of the theme manager. ล็อคà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องจัดà¸à¸²à¸£à¸£à¸¹à¸›à¹à¸šà¸šà¸˜à¸µà¸¡ &Service Manager &à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Toggle Service Manager ล็อคà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Toggle the visibility of the service manager. ล็อคà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ &Preview Panel &à¸à¸£à¸­à¸šà¹à¸ªà¸”งตัวอย่าง Toggle Preview Panel ล็อคà¸à¸£à¸­à¸šà¹à¸ªà¸”งตัวอย่าง Toggle the visibility of the preview panel. ล็อดà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องà¸à¸£à¸­à¸šà¹à¸ªà¸”งตัวอย่าง &Live Panel &à¸à¸£à¸­à¸šà¹à¸ªà¸”งบนจอภาพ Toggle Live Panel ล็อคà¸à¸£à¸­à¸šà¹à¸ªà¸”งบนจอภาพ Toggle the visibility of the live panel. ล็อคà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องà¸à¸£à¸­à¸šà¹à¸ªà¸”งผลบนจอภาพ List the Plugins รายà¸à¸²à¸£à¹‚ปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸•่างๆ &User Guide &คู่มือà¹à¸™à¸°à¸™à¸³à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ &About &เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ปรà¹à¸à¸£à¸¡ More information about OpenLP ข้อมูลข่าวสารเพิ่มเติมเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ปรà¹à¸à¸£à¸¡ OpenLP &Online Help &คู่มือà¹à¸™à¸°à¸™à¸³à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸­à¸­à¸™à¹„ลน์ &Web Site &เว็บไซต์ Use the system language, if available. ใช้ภาษาของระบบ ถ้าใช้งานได้ Set the interface language to %s ตั้งค่าภาษาที่ใช้ร่วมà¸à¸±à¸™à¸ªà¸³à¸«à¸£à¸±à¸š %s Add &Tool... &เพิ่มเครื่องมือ... Add an application to the list of tools. เพิ่มโปรà¹à¸à¸£à¸¡à¹„ปที่รายà¸à¸²à¸£à¹€à¸„รื่องมือ &Default &ค่าเริ่มต้น Set the view mode back to the default. ตั้งค่ามุมมองรูปà¹à¸šà¸šà¸à¸¥à¸±à¸šà¹„ปใช้ค่าเริ่มต้น &Setup &à¸à¸²à¸£à¸•ิดตั้ง Set the view mode to Setup. ตั้งค่ามุมมองรูปà¹à¸šà¸šà¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£à¸•ิดตั้ง &Live &à¹à¸ªà¸”งบนจอภาพ Set the view mode to Live. ตั้งค่ามุมมองรูปà¹à¸šà¸šà¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸ªà¸”งบนจอภาพ Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. รุ่น %s ของโปรà¹à¸à¸£à¸¡ OpenLP ตอนนี้สามารถดาวน์โหลดได้à¹à¸¥à¹‰à¸§ (คุณà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¹‚ปรà¹à¸à¸£à¸¡ รุ่น %s) คุณสามารถดาวน์โหลดรุ่นล่าสุดได้จาภhttp://openlp.org/. OpenLP Version Updated ปรับปรุงรุ่นของโปรà¹à¸à¸£à¸¡ OpenLP OpenLP Main Display Blanked จอภาพหลัà¸à¸‚องโปรà¹à¸à¸£à¸¡ OpenLP ว่างเปล่า The Main Display has been blanked out จอภาพหลัà¸à¸–ูà¸à¸—ำให้ว่างเปล่า Default Theme: %s ธีมเริ่มต้น: %s English Please add the name of your language here ภาษาไทย Configure &Shortcuts... &ปรับà¹à¸•่งทางลัด... Open &Data Folder... &เปิดโฟลเดอร์ข้อมูล... Open the folder where songs, bibles and other data resides. เปิดโฟลเดอร์ที่มีเพลง พระคัมภีร์ à¹à¸¥à¸°à¸‚้อมูลอื่นๆอยู่ภายในนั้น &Autodetect &ตรวจหาอัตโนมัติ Update Theme Images ปรับปรุงรูปภาพของธีม Update the preview images for all themes. ปรับปรุงรูปภาพตัวอย่างสำหรับทุà¸à¸˜à¸µà¸¡ Print the current service. พิมพ์รายà¸à¸²à¸£à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™ L&ock Panels &ล็อคà¸à¸£à¸­à¸šà¸à¸²à¸£à¸—ำงาน Prevent the panels being moved. ป้องà¸à¸±à¸™à¹„ม่ให้à¸à¸£à¸­à¸šà¸à¸²à¸£à¸—ำงานต่างๆถูà¸à¸¢à¹‰à¸²à¸¢ Re-run First Time Wizard ตัวช่วยสร้างครั้งà¹à¸£à¸ Re-run the First Time Wizard, importing songs, Bibles and themes. เริ่มà¸à¸²à¸£à¸—ำงานตัวช่วยสร้างครั้งà¹à¸£à¸à¸­à¸µà¸à¸„รั้ง เพื่อนำเข้าเพลง พระคัมภีร์à¹à¸¥à¸°à¸˜à¸µà¸¡ Re-run First Time Wizard? เริ่มà¸à¸²à¸£à¸—ำงานตัวช่วยสร้างครั้งà¹à¸£à¸à¸­à¸µà¸à¸„รั้ง? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¹€à¸£à¸´à¹ˆà¸¡à¸à¸²à¸£à¸—ำงานตัวช่วยสร้างครั้งà¹à¸£à¸à¸­à¸µà¸à¸„รั้ง? เมื่อเริ่มà¸à¸²à¸£à¸—ำงานตัวช่วยสร้างนี้ อาจเปลี่ยนà¹à¸›à¸¥à¸‡à¸à¸²à¸£à¸•ั้งค่าปัจจุบันของโปรà¹à¸à¸£à¸¡ OpenLP à¹à¸¥à¸°à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸žà¸¥à¸‡à¹ƒà¸™à¸£à¸²à¸¢à¸à¸²à¸£à¹€à¸žà¸¥à¸‡à¸—ี่คุณมีอยู่à¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸£à¸¹à¸›à¹à¸šà¸šà¸˜à¸µà¸¡à¹€à¸£à¸´à¹ˆà¸¡à¸•้นของคุณ Clear List Clear List of recent files ล้างรายà¸à¸²à¸£ Clear the list of recent files. ล้างรายà¸à¸²à¸£à¹„ฟล์ล่าสุด Configure &Formatting Tags... &ปรับà¹à¸•่งรูปà¹à¸šà¸šà¹à¸—็à¸... Export OpenLP settings to a specified *.config file ส่งออà¸à¸à¸²à¸£à¸•ั้งค่าโปรà¹à¸à¸£à¸¡ OpenLP โดยระบุชื่อไฟล์ * .config Settings ตั้งค่า Import OpenLP settings from a specified *.config file previously exported on this or another machine นำเข้าà¸à¸²à¸£à¸•ั้งค่าโปรà¹à¸à¸£à¸¡ OpenLP จาà¸à¹„ฟล์ที่ระบุชื่อ * .config เลือà¸à¹„ฟล์ที่ส่งออà¸à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰ หรือไฟล์à¸à¸²à¸£à¸•ั้งค่าจาà¸à¹€à¸„รื่องอื่น Import settings? นำเข้าà¸à¸²à¸£à¸•ั้งค่า? Open File เปิดไฟล์ OpenLP Export Settings Files (*.conf) ส่งออà¸à¹„ฟล์à¸à¸²à¸£à¸•ั้งค่าโปรà¹à¸à¸£à¸¡ OpenLP (*.conf) Import settings นำเข้าà¸à¸²à¸£à¸•ั้งค่า OpenLP will now close. Imported settings will be applied the next time you start OpenLP. โปรà¹à¸à¸£à¸¡ OpenLP จะปิดตัวลงในขณะนี้ à¸à¸²à¸£à¸•ั้งค่าที่นำเข้าจะถูà¸à¸™à¸³à¸¡à¸²à¹ƒà¸Šà¹‰à¹ƒà¸™à¸„รั้งต่อไป เมื่อคุณเริ่มต้นโปรà¹à¸à¸£à¸¡ OpenLP Export Settings File ส่งออà¸à¹„ฟล์à¸à¸²à¸£à¸•ั้งค่า OpenLP Export Settings File (*.conf) ส่งออà¸à¹„ฟล์à¸à¸²à¸£à¸•ั้งค่าโปรà¹à¸à¸£à¸¡ OpenLP (*.conf) New Data Directory Error เà¸à¸´à¸”ข้อผิดพลาดไดเรà¸à¸—อรีข้อมูลใหม่ Copying OpenLP data to new data directory location - %s - Please wait for copy to finish à¸à¸³à¸¥à¸±à¸‡à¸„ัดลอà¸à¸‚้อมูลโปรà¹à¸à¸¡ OpenLP ไปยังตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งใหม่ของไดเรà¸à¸—อรีข้อมูล - %s - โปรดรอสัà¸à¸„รู่สำหรับà¸à¸²à¸£à¸„ัดลอà¸à¸—ี่จะเสร็จ OpenLP Data directory copy failed %s à¸à¸²à¸£à¸„ัดลอà¸à¹„ดเรà¸à¸—อรีข้อมูลโปรà¹à¸à¸£à¸¡ OpenLP ล้มเหลว %s General ทั่วไป Library Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error à¸à¸²à¸™à¸‚้อมูลเà¸à¸´à¸”ข้อผิดพลาด The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s à¸à¸²à¸™à¸‚้อมูลที่à¸à¸³à¸¥à¸±à¸‡à¸šà¸±à¸™à¸—ึภถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้นในรุ่นล่าสุดของโปรà¹à¸à¸£à¸¡ OpenLP à¸à¸²à¸™à¸‚้อมูลเป็นรุ่น %d ขณะที่คาดว่าโปรà¹à¸à¸£à¸¡ OpenLP เป็นรุ่น %d จึงไม่สามารถบันทึà¸à¸à¸²à¸™à¸‚้อมูลได้ à¸à¸²à¸™à¸‚้อมูล: %s OpenLP cannot load your database. Database: %s โปรà¹à¸à¸£à¸¡ OpenLP ไม่สามารถบันทึà¸à¸à¸²à¸™à¸‚้อมูลของคุณ à¸à¸²à¸™à¸‚้อมูล: %s OpenLP.MediaManagerItem No Items Selected ไม่มีรายà¸à¸²à¸£à¸—ี่เลือภ&Add to selected Service Item &เพิ่มรายà¸à¸²à¸£à¸—ีเลือภYou must select one or more items to preview. คุณต้องเลือà¸à¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸ªà¸”งตัวอย่าง You must select one or more items to send live. คุณต้องเลือà¸à¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸ªà¸”งบนจอภาพ You must select one or more items. คุณต้องเลือà¸à¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£ You must select an existing service item to add to. คุณต้องเลือà¸à¸ˆà¸²à¸à¸£à¸²à¸¢à¸à¸²à¸£à¸—ี่มีอยู่เพื่อเพิ่ม Invalid Service Item à¸à¸²à¸£à¸—ำรายà¸à¸²à¸£à¹„ม่ถูà¸à¸•้อง You must select a %s service item. คุณต้องเลือภ%s จัดทำรายà¸à¸²à¸£ You must select one or more items to add. คุณต้องเลือà¸à¸­à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸­à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¹€à¸žà¸·à¹ˆà¸­à¹€à¸žà¸´à¹ˆà¸¡ No Search Results ไม่พบผลลัพธ์จาà¸à¸à¸²à¸£à¸„้นหา Invalid File Type ชนิดของไฟล์ไม่ถูà¸à¸•้อง Invalid File %s. Suffix not supported ไฟล์ %s ไม่ถูà¸à¸•้อง นามสà¸à¸¸à¸¥à¹„ฟล์ไม่ได้รับà¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™ &Clone &สร้างสำเนาเหมือนà¸à¸±à¸™ Duplicate files were found on import and were ignored. พบว่ามีà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าไฟล์ที่ซ้ำà¸à¸±à¸™à¹à¸¥à¸°à¸–ูà¸à¸¡à¸­à¸‡à¸‚้าม OpenLP.OpenLyricsImportError <lyrics> tag is missing. <เนื้อเพลง> à¹à¸—็à¸à¸«à¸²à¸¢à¹„ป <verse> tag is missing. <ข้อความ> à¹à¸—็à¸à¸«à¸²à¸¢à¹„ป OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Available Media Players โปรà¹à¸à¸£à¸¡à¹€à¸¥à¹ˆà¸™à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸—ี่มี Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (ไม่สามารถใช้งานได้) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details รายละเอียดโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡ Status: สถานะ: Active เปิดใช้งาน Inactive ไม่ได้เปิดใช้งาน %s (Inactive) %s (ไม่ได้เปิดใช้งาน) %s (Active) %s (เปิดใช้งาน) %s (Disabled) %s (ปิดใช้งาน) Manage Plugins OpenLP.PrintServiceDialog Fit Page พอดีหน้า Fit Width พอดีความà¸à¸§à¹‰à¸²à¸‡ OpenLP.PrintServiceForm Options ตัวเลือภCopy คัดลอภCopy as HTML คัดลอà¸à¹€à¸›à¹‡à¸™ HTML Zoom In ซูมเข้า Zoom Out ซูมออภZoom Original เท่าต้นฉบับ Other Options ตัวเลือà¸à¸­à¸·à¹ˆà¸™ Include slide text if available ใส่ข้อความเลื่อนเข้าไปด้วย ถ้ามีอยู่ Include service item notes ใส่หมายเหตุà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹€à¸‚้าไปด้วย Include play length of media items ใส่ระยะเวลาà¸à¸²à¸£à¹€à¸¥à¹ˆà¸™à¸£à¸²à¸¢à¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¹€à¸‚้าไปด้วย Add page break before each text item เพิ่มตัวà¹à¸šà¹ˆà¸‡à¸«à¸™à¹‰à¸²à¸‚้อความà¹à¸•่ละรายà¸à¸²à¸£ Service Sheet เอà¸à¸ªà¸²à¸£à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Print พิมพ์ Title: หัวข้อ: Custom Footer Text: ข้อความส่วนล่างที่à¸à¸³à¸«à¸™à¸”เอง: OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes หมายเหตุ Database Error à¸à¸²à¸™à¸‚้อมูลเà¸à¸´à¸”ข้อผิดพลาด There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port Port Notes หมายเหตุ Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other Other อื่นๆ OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen à¹à¸ªà¸”งจอภาพที่ว่างเปล่า primary ตัวหลัภOpenLP.ServiceItem <strong>Start</strong>: %s <strong>เริ่มต้น</strong>: %s <strong>Length</strong>: %s <strong>ระยะเวลา</strong>: %s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item เรียงลำดับà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ OpenLP.ServiceManager Move to &top &เลื่อนขึ้นไปบนสุด Move item to the top of the service. ย้ายรายà¸à¸²à¸£à¸‚ึ้นไปที่ตำà¹à¸«à¸™à¹ˆà¸‡à¸šà¸™à¸ªà¸¸à¸”ของà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Move &up &เลื่อนขึ้น Move item up one position in the service. ย้ายรายà¸à¸²à¸£à¸‚ึ้นไปหนึ่งตำà¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸™à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Move &down &เลื่อนลง Move item down one position in the service. ย้ายรายà¸à¸²à¸£à¸¥à¸‡à¹„ปหนึ่งตำà¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸™à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Move to &bottom &เลื่อนลงไปล่างสุด Move item to the end of the service. ย้ายรายà¸à¸²à¸£à¸¥à¸‡à¹„ปที่ตำà¹à¸«à¸™à¹ˆà¸‡à¸¥à¹ˆà¸²à¸‡à¸ªà¸¸à¸”ของà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ &Delete From Service &ลบออà¸à¸ˆà¸²à¸à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Delete the selected item from the service. ลบรายà¸à¸²à¸£à¸—ี่เลือà¸à¸­à¸­à¸à¸ˆà¸²à¸à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ &Add New Item &เพิ่มรายà¸à¸²à¸£à¹ƒà¸«à¸¡à¹ˆ &Add to Selected Item &เพิ่มรายà¸à¸²à¸£à¸—ี่เลือภ&Edit Item &à¹à¸à¹‰à¹„ขรายà¸à¸²à¸£ &Reorder Item &เรียงลำดับรายà¸à¸²à¸£ &Notes &หมายเหตุ &Change Item Theme &เปลี่ยนธีมของรายà¸à¸²à¸£ File is not a valid service. ไฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹„ม่ถูà¸à¸•้อง Missing Display Handler ตัวดำเนินà¸à¸²à¸£à¹à¸ªà¸”งผลหายไป Your item cannot be displayed as there is no handler to display it รายà¸à¸²à¸£à¸‚องคุณไม่สามารถà¹à¸ªà¸”งผลได้ เนื่องจาà¸à¸•ัวดำเนินà¸à¸²à¸£à¹à¸ªà¸”งผลหายไป Your item cannot be displayed as the plugin required to display it is missing or inactive รายà¸à¸²à¸£à¸‚องคุณไม่สามารถà¹à¸ªà¸”งผลได้ เนื่องจาà¸à¹‚ปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่จำเป็นในà¸à¸²à¸£à¹à¸ªà¸”งผลหายไป หรือไม่ได้เปิดใช้งาน &Expand all &ขยายออà¸à¸—ั้งหมด Expand all the service items. ขยายรายà¸à¸²à¸£à¹ƒà¸™à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ั้งหมด &Collapse all &ยุบลงทั้งหมด Collapse all the service items. ยุบรายà¸à¸²à¸£à¹ƒà¸™à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ั้งหมด Open File เปิดไฟล์ Moves the selection down the window. ย้ายส่วนที่เลือà¸à¸¥à¸‡à¸«à¸™à¹‰à¸²à¸•่าง Move up เลื่อนขึ้น Moves the selection up the window. ย้ายส่วนที่เลือà¸à¸‚ึ้นหน้าต่าง Go Live à¹à¸ªà¸”งบนจอภาพ Send the selected item to Live. ส่งรายà¸à¸²à¸£à¸—ี่เลือà¸à¹„ปà¹à¸ªà¸”งบนจอภาพ &Start Time &เล่นสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¹ƒà¸™à¹€à¸§à¸¥à¸²à¸—ี่à¸à¸³à¸«à¸™à¸” Show &Preview &à¹à¸ªà¸”งตัวอย่าง Modified Service ปรับเปลี่ยนà¹à¸à¹‰à¹„ขรายà¸à¸²à¸£ The current service has been modified. Would you like to save this service? à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸¡à¸µà¸à¸²à¸£à¸›à¸£à¸±à¸šà¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸à¹‰à¹„ข คุณต้องà¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸™à¸µà¹‰à¸«à¸£à¸·à¸­à¹„ม่? Custom Service Notes: หมายเหตุà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ี่à¸à¸³à¸«à¸™à¸”เอง: Notes: หมายเหตุ: Playing time: เวลาเริ่มเล่น: Untitled Service ไม่ได้ตั้งชื่อà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ File could not be opened because it is corrupt. ไฟล์เสียหายไม่สามารถเปิดได้ Empty File ไฟล์ว่างเปล่า This service file does not contain any data. ไฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸™à¸µà¹‰à¹„ม่มีข้อมูลใดๆ Corrupt File ไฟล์เสียหาย Load an existing service. เรียà¸à¹ƒà¸Šà¹‰à¹„ฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ี่มีอยู่ Save this service. บันทึà¸à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Select a theme for the service. เลือà¸à¸˜à¸µà¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Slide theme ธีมà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Notes หมายเหตุ Edit à¹à¸à¹‰à¹„ข Service copy only คัดลอà¸à¹€à¸‰à¸žà¸²à¸°à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Error Saving File à¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¹„ฟล์เà¸à¸´à¸”ข้อผิดพลาด There was an error saving your file. เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¹„ฟล์ของคุณ Service File(s) Missing ไฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£(s) หายไป &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. หน่วงเวลาระหว่างà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¹€à¸›à¹‡à¸™à¸§à¸´à¸™à¸²à¸—ี Rename item title Title: หัวข้อ: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes หมายเหตุà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ OpenLP.SettingsForm Configure OpenLP ปรับà¹à¸•่งโปรà¹à¸à¸£à¸¡ OpenLP OpenLP.ShortcutListDialog Action à¸à¸²à¸£à¸à¸£à¸°à¸—ำ Shortcut ทางลัด Duplicate Shortcut ทางลัดซ้ำà¸à¸±à¸™ The shortcut "%s" is already assigned to another action, please use a different shortcut. ทางลัด "%s" ถูà¸à¸à¸³à¸«à¸™à¸”ให้à¸à¸±à¸šà¸à¸²à¸£à¸à¸£à¸°à¸—ำอื่นà¹à¸¥à¹‰à¸§ โปรดใช้ทางลัดที่ไม่เหมือนà¸à¸±à¸™ Alternate สำรอง Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. เลือà¸à¸à¸²à¸£à¸à¸£à¸°à¸—ำ à¹à¸¥à¹‰à¸§à¸à¸”à¹à¸›à¹‰à¸™à¸žà¸´à¸¡à¸žà¹Œà¸•ัวอà¸à¸©à¸£à¸—ี่ต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¹€à¸›à¹‡à¸™à¸—างลัดค้างไว้ à¹à¸¥à¸°à¸à¸”ปุ่มใดปุ่มหนึ่งด้านล่าง เพื่อเริ่มจับภาพตัวอัà¸à¸©à¸£à¹ƒà¸Šà¹‰à¹€à¸›à¹‡à¸™à¸—างลัดหลัà¸à¹ƒà¸«à¸¡à¹ˆ หรือทางลัดสำรอง Default ค่าเริ่มต้น Custom à¸à¸³à¸«à¸™à¸”เอง Capture shortcut. จับภาพตัวอัà¸à¸©à¸£à¹ƒà¸Šà¹‰à¹€à¸›à¹‡à¸™à¸—างลัด Restore the default shortcut of this action. เรียà¸à¸„ืนทางลัดเริ่มต้นของà¸à¸²à¸£à¸à¸£à¸°à¸—ำนี้ Restore Default Shortcuts เรียà¸à¸„ืนทางลัดเริ่มต้น Do you want to restore all shortcuts to their defaults? คุณต้องà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸à¸„ืนค่าเริ่มต้นทางลัดทั้งหมดใช่หรือไม่? Configure Shortcuts ปรับà¹à¸•่งทางลัด OpenLP.SlideController Hide ซ่อนไว้ Go To ไปที่ Blank Screen หน้าจอว่างเปล่า Blank to Theme ธีมที่ว่างเปล่า Show Desktop à¹à¸ªà¸”งเนื้อหาบนจอภาพ Previous Service รายà¸à¸²à¸£à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸² Next Service รายà¸à¸²à¸£à¸–ัดไป Escape Item หลีà¸à¹€à¸¥à¸µà¹ˆà¸¢à¸‡à¸£à¸²à¸¢à¸à¸²à¸£ Move to previous. ถอยหลัง Move to next. เดินหน้า Play Slides à¹à¸ªà¸”งà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Delay between slides in seconds. หน่วงเวลาระหว่างà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¹€à¸›à¹‡à¸™à¸§à¸´à¸™à¸²à¸—ี Move to live. ย้ายไปà¹à¸ªà¸”งบนจอภาพ Add to Service. เพิ่มไปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Edit and reload song preview. à¹à¸à¹‰à¹„ขà¹à¸¥à¸°à¹à¸ªà¸”งตัวอย่างเพลงที่à¹à¸à¹‰à¹„ขใหม่ Start playing media. เริ่มเล่นสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Pause audio. หยุดเสียงชั่วคราว Pause playing media. หยุดเล่นสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡à¸Šà¸±à¹ˆà¸§à¸„ราว Stop playing media. หยุดเล่นสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Video position. ตำà¹à¸«à¸™à¹ˆà¸‡à¸§à¸´à¸”ีโอ Audio Volume. ระดับเสียง Go to "Verse" ไปที่ "Verse" ท่อนร้อง Go to "Chorus" ไปที่ "Chorus" ร้องรับ Go to "Bridge" ไปที่ "Bridge" ท่อนที่ทำนองà¹à¸•à¸à¸•่างไป Go to "Pre-Chorus" ไปที่ "Pre-Chorus" ท่อนà¸à¹ˆà¸­à¸™à¹€à¸‚้าร้องรับ Go to "Intro" ไปที่ "Intro" ดนตรีà¸à¹ˆà¸­à¸™à¹€à¸£à¸´à¹ˆà¸¡à¸£à¹‰à¸­à¸‡ Go to "Ending" ไปที่ "Ending" ท่อนจบ Go to "Other" ไปที่ "Other" อื่นๆ Previous Slide เลื่อนถอยหลัง Next Slide เลื่อนไปข้างหน้า Pause Audio หยุดเสียงชั่วคราว Background Audio เสียงพื้นหลัง Go to next audio track. ไปที่ตำà¹à¸«à¸™à¹ˆà¸‡à¹€à¸ªà¸µà¸¢à¸‡à¸–ัดไป Tracks à¹à¸—ร็ค OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions คำà¹à¸™à¸°à¸™à¸³à¹ƒà¸™à¸à¸²à¸£à¸ªà¸°à¸à¸” Formatting Tags จัดรูปà¹à¸šà¸šà¹à¸—็ภLanguage: ภาษา: OpenLP.StartTimeForm Theme Layout เค้าโครงธีม The blue box shows the main area. à¸à¸¥à¹ˆà¸­à¸‡à¸ªà¸µà¸Ÿà¹‰à¸²à¹à¸ªà¸”งพื้นที่หลัภThe red box shows the footer. à¸à¸¥à¹ˆà¸­à¸‡à¸ªà¸µà¹à¸”งà¹à¸ªà¸”งส่วนล่าง OpenLP.StartTime_form Item Start and Finish Time เวลาเริ่มà¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¸ªà¸´à¹‰à¸™à¸ªà¸¸à¸” Hours: ชั่วโมง: Minutes: นาที: Seconds: วินาที: Start เริ่มต้น Finish สิ้นสุด Length ระยะเวลา Time Validation Error à¸à¸²à¸£à¸•รวจสอบเวลาเà¸à¸´à¸”ข้อผิดพลาด Finish time is set after the end of the media item เวลาสิ้นสุดคือเวลาที่ตั้งเป็นจุดสิ้นสุดของรายà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Start time is after the finish time of the media item เวลาเริ่มต้นคือเวลาที่ตั้งเป็นจุดเริ่มต้นของรายà¸à¸²à¸£à¸ªà¸·à¹ˆà¸­à¸ à¸²à¸žà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ OpenLP.ThemeForm (approximately %d lines per slide) (ประมาณ %d บรรทัดต่อà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™) OpenLP.ThemeManager Create a new theme. สร้างธีมใหม่ Edit Theme à¹à¸à¹‰à¹„ขธีม Edit a theme. à¹à¸à¹‰à¹„ขธีม Delete Theme ลบธีม Delete a theme. ลบธีม Import Theme นำเข้าธีม Import a theme. นำเข้าธีม Export Theme ส่งออà¸à¸˜à¸µà¸¡ Export a theme. ส่งออà¸à¸˜à¸µà¸¡ &Edit Theme &à¹à¸à¹‰à¹„ขธีม &Delete Theme &ลบธีม Set As &Global Default &ตั้งเป็นค่าเริ่มต้นโดยรวม %s (default) %s (ค่าเริ่มต้น) You must select a theme to edit. คุณต้องเลือà¸à¸˜à¸µà¸¡à¸—ี่ต้องà¸à¸²à¸£à¹à¸à¹‰à¹„ข You are unable to delete the default theme. คุณไม่สามารถลบธีมเริ่มต้นได้ You have not selected a theme. คุณไม่ได้เลือà¸à¸˜à¸µà¸¡ Save Theme - (%s) บันทึà¸à¸˜à¸µà¸¡ - (%s) Theme Exported ส่งออà¸à¸˜à¸µà¸¡ Your theme has been successfully exported. ส่งออà¸à¸˜à¸µà¸¡à¸‚องคุณเสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ Theme Export Failed ส่งออà¸à¸˜à¸µà¸¡à¸¥à¹‰à¸¡à¹€à¸«à¸¥à¸§ Select Theme Import File เลือà¸à¹„ฟล์ธีมที่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า File is not a valid theme. ไฟล์ธีมไม่ถูà¸à¸•้อง &Copy Theme &คัดลอà¸à¸˜à¸µà¸¡ &Rename Theme &เปลี่ยนชื่อธีม &Export Theme &ส่งออà¸à¸˜à¸µà¸¡ You must select a theme to rename. คุณต้องเลือà¸à¸˜à¸µà¸¡à¸—ี่ต้องà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸Šà¸·à¹ˆà¸­ Rename Confirmation ยืนยันà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸Šà¸·à¹ˆà¸­ Rename %s theme? เปลี่ยนชื่อธีม %s ? You must select a theme to delete. คุณต้องเลือà¸à¸˜à¸µà¸¡à¸—ี่ต้องà¸à¸²à¸£à¸¥à¸š Delete Confirmation ยืนยันà¸à¸²à¸£à¸¥à¸š Delete %s theme? ลบธีม %s ? Validation Error à¸à¸²à¸£à¸•รวจสอบเà¸à¸´à¸”ข้อผิดพลาด A theme with this name already exists. ชื่อธีมนี้มีอยู่à¹à¸¥à¹‰à¸§ Copy of %s Copy of <theme name> คัดลอà¸à¸ˆà¸²à¸ %s Theme Already Exists ธีมมีอยู่à¹à¸¥à¹‰à¸§ Theme %s already exists. Do you want to replace it? ธีม %s มีอยู่à¹à¸¥à¹‰à¸§ ต้องà¸à¸²à¸£à¸ˆà¸°à¹à¸—นที่หรือไม่? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard ตัวช่วยสร้างธีม Welcome to the Theme Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างธีม Set Up Background ตั้งค่าพื้นหลัง Set up your theme's background according to the parameters below. ตั้งค่าพื้นหลังธีมของคุณ ตามพารามิเตอร์ด้านล่าง Background type: ประเภทพื้นหลัง: Gradient ไล่ระดับสี Gradient: ไล่ระดับสี: Horizontal à¹à¸™à¸§à¸™à¸­à¸™ Vertical à¹à¸™à¸§à¸•ั้ง Circular เป็นวงà¸à¸¥ Top Left - Bottom Right บนซ้าย - ล่างขวา Bottom Left - Top Right ล่างซ้าย - บนขวา Main Area Font Details รายละเอียดตัวอัà¸à¸©à¸£à¸žà¸·à¹‰à¸™à¸—ี่หลัภDefine the font and display characteristics for the Display text à¸à¸³à¸«à¸™à¸”ลัà¸à¸©à¸“ะของตัวอัà¸à¸©à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸ªà¸”งผลข้อความ Font: ตัวอัà¸à¸©à¸£: Size: ขนาด: Line Spacing: ระยะห่างบรรทัด: &Outline: &เส้นรอบนอà¸: &Shadow: &เงา: Bold หนา Italic ตัวเอียง Footer Area Font Details รายละเอียดตัวอัà¸à¸©à¸£à¸ªà¹ˆà¸§à¸™à¸¥à¹ˆà¸²à¸‡à¸‚องพื้นที่ Define the font and display characteristics for the Footer text à¸à¸³à¸«à¸™à¸”ลัà¸à¸©à¸“ะของตัวอัà¸à¸©à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¹à¸ªà¸”งผลข้อความส่วนล่าง Text Formatting Details รายละเอียดà¸à¸²à¸£à¸ˆà¸±à¸”รูปà¹à¸šà¸šà¸‚้อความ Allows additional display formatting information to be defined ช่วยจัดรูปà¹à¸šà¸šà¸à¸²à¸£à¹à¸ªà¸”งผลเพิ่มเติมจาà¸à¸—ี่à¸à¸³à¸«à¸™à¸” Horizontal Align: ตà¹à¸²à¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸™à¹à¸™à¸§à¸™à¸­à¸™: Left ซ้าย Right ขวา Center ตรงà¸à¸¥à¸²à¸‡ Output Area Locations ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งของพื้นที่ส่งออภ&Main Area &พื้นที่หลัภ&Use default location &ใช้ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งเริ่มต้น X position: ตำà¹à¸«à¸™à¹ˆà¸‡ X: px px Y position: ตำà¹à¸«à¸™à¹ˆà¸‡ Y: Width: ความà¸à¸§à¹‰à¸²à¸‡: Height: ความสูง: Use default location ใช้ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งเริ่มต้น Theme name: ชื่อธีม: Edit Theme - %s à¹à¸à¹‰à¹„ขธีม - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. ตัวช่วยนี้จะช่วยให้คุณสามารถสร้างà¹à¸¥à¸°à¹à¸à¹‰à¹„ขธีมของคุณ คลิà¸à¸—ี่ปุ่มถัดไปด้านล่างเพื่อเริ่มต้นà¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£ โดยà¸à¸²à¸£à¸•ั้งค่าพื้นหลังของคุณ Transitions: à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™: &Footer Area &พื้นที่ส่วนล่าง Starting color: สีเริ่มต้น: Ending color: สีสิ้นสุด: Background color: สีพื้นหลัง: Justify จัดขอบ Layout Preview à¹à¸ªà¸”งตัวอย่างเค้าโครง Transparent โปร่งใส Preview and Save à¹à¸ªà¸”งตัวอย่างà¹à¸¥à¸°à¸šà¸±à¸™à¸—ึภPreview the theme and save it. à¹à¸ªà¸”งตัวอย่างธีมà¹à¸¥à¸°à¸šà¸±à¸™à¸—ึภBackground Image Empty ภาพพื้นหลังว่างเปล่า Select Image เลือà¸à¸£à¸¹à¸›à¸ à¸²à¸ž Theme Name Missing ชื่อธีมหายไป There is no name for this theme. Please enter one. ธีมชุดนี้ยังไม่มีชื่อ โปรดใส่ชื่ออีà¸à¸„รั้งหนึ่ง Theme Name Invalid ชื่อธีมไม่ถูà¸à¸•้อง Invalid theme name. Please enter one. ชื่อธีมไม่ถูà¸à¸•้อง โปรดใส่ชื่ออีà¸à¸„รั้งหนึ่ง Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. คุณไม่ได้เลือà¸à¸ à¸²à¸žà¸žà¸·à¹‰à¸™à¸«à¸¥à¸±à¸‡ โปรดเลือà¸à¸«à¸™à¸¶à¹ˆà¸‡à¸ à¸²à¸žà¸ªà¸³à¸«à¸£à¸±à¸šà¸”ำเนินà¸à¸²à¸£à¸•่อไป OpenLP.ThemesTab Global Theme ธีมโดยรวม Theme Level ระดับธีม S&ong Level &ระดับเพลง Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. ใช้ธีมของเพลงà¹à¸•่ละเพลงในà¸à¸²à¸™à¸‚้อมูล ถ้าเพลงนั้นไม่มีธีมของเพลงนั้นเอง จะใช้ธีมà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹à¸—นธีมของเพลง ถ้าà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ธีมเอาไว้ จึงใช้ธีมโดยรวมà¹à¸—น &Service Level &ระดับà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. ใช้ธีมของà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¸—ี่à¸à¸³à¸«à¸™à¸”เอาไว้à¹à¸—นธีมของเพลง ถ้าà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹„ม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ธีมเอาไว้ จึงใช้ธีมโดยรวมà¹à¸—น &Global Level &ระดับโดยรวม Use the global theme, overriding any themes associated with either the service or the songs. ใช้ธีมโดยรวมà¹à¸—นธีมà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ หรือธีมของเพลง Themes ธีม Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. ลบรายà¸à¸²à¸£à¸—ี่เลือภMove selection up one position. ย้ายส่วนที่เลือà¸à¸‚ึ้นไปหนึ่งตำà¹à¸«à¸™à¹ˆà¸‡ Move selection down one position. ย้ายส่วนที่เลือà¸à¸¥à¸‡à¹„ปหนึ่งตำà¹à¸«à¸™à¹ˆà¸‡ &Vertical Align: &ตà¹à¸²à¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸™à¹à¸™à¸§à¸•ั้ง: Finished import. นำเข้าเสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ Format: รูปà¹à¸šà¸š: Importing à¸à¸³à¸¥à¸±à¸‡à¸™à¸³à¹€à¸‚้า Importing "%s"... à¸à¸³à¸¥à¸±à¸‡à¸™à¸³à¹€à¸‚้า "%s"... Select Import Source เลือà¸à¹à¸«à¸¥à¹ˆà¸‡à¸™à¸³à¹€à¸‚้า Select the import format and the location to import from. เลือà¸à¸£à¸¹à¸›à¹à¸šà¸šà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าà¹à¸¥à¸°à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งสำหรับà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า Open %s File เปิดไฟล์ %s %p% %p% Ready. เตรียมพร้อม Starting import... เริ่มต้นนำเข้า... You need to specify at least one %s file to import from. A file type e.g. OpenSong คุณต้องเลือà¸à¹„ฟล์ %s อย่างน้อยหนึ่งไฟล์ ที่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า Welcome to the Bible Import Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าพระคัมภีร์ Welcome to the Song Export Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸à¹€à¸žà¸¥à¸‡ Welcome to the Song Import Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าเพลง Author Singular ผู้à¹à¸•่ง Authors Plural ผู้à¹à¸•่ง © Copyright symbol. © Song Maintenance สถานะเพลง Topic Singular หัวข้อ Topics Plural หัวข้อ Title and/or verses not found ไม่พบหัวข้อ à¹à¸¥à¸°/หรือบท XML syntax error XML ผิดพลาดทางไวยาà¸à¸£à¸“์ Welcome to the Bible Upgrade Wizard ยินดีต้อนรับสู่ตัวช่วยสร้างà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸žà¸£à¸°à¸„ัมภีร์ Open %s Folder เปิดโฟลเดอร์ %s You need to specify one %s file to import from. A file type e.g. OpenSong คุณต้องเลือà¸à¹„ฟล์ %s อย่างน้อยหนึ่งไฟล์ ที่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า You need to specify one %s folder to import from. A song format e.g. PowerSong คุณต้องเลือà¸à¹‚ฟลเดอร์ %s อย่างน้อยหนึ่งโฟลเดอร์ ที่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า Importing Songs à¸à¸³à¸¥à¸±à¸‡à¸™à¸³à¹€à¸‚้าเพลง Welcome to the Duplicate Song Removal Wizard Written by Author Unknown About เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š &Add &เพิ่ม Add group เพิ่มà¸à¸¥à¸¸à¹ˆà¸¡ Advanced ขั้นสูง All Files ทุà¸à¹„ฟล์ Automatic อัตโนมัติ Background Color สีพื้นหลัง Bottom ด้านล่าง Browse... เรียà¸à¸”ู... Cancel ยà¸à¹€à¸¥à¸´à¸ CCLI number: หมายเลข CCLI: Create a new service. สร้างà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹ƒà¸«à¸¡à¹ˆ Confirm Delete ยืนยันà¸à¸²à¸£à¸¥à¸š Continuous ต่อเนื่องà¸à¸±à¸™ Default ค่าเริ่มต้น Default Color: สีเริ่มต้น: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. รายà¸à¸²à¸£ %Y-%m-%d %H-%M &Delete &ลบ Display style: รูปà¹à¸šà¸šà¸—ี่à¹à¸ªà¸”ง: Duplicate Error เà¸à¸´à¸”ข้อผิดพลาดเหมือนà¸à¸±à¸™ &Edit &à¹à¸à¹‰à¹„ข Empty Field เขตข้อมูลว่างเปล่า Error ผิดพลาด Export ส่งออภFile ไฟล์ File Not Found ไม่พบไฟล์ File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help คำà¹à¸™à¸°à¸™à¸³à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ h The abbreviated unit for hours ชั่วโมง Invalid Folder Selected Singular โฟลเดอร์ที่เลือà¸à¹„ม่ถูà¸à¸•้อง Invalid File Selected Singular ไฟล์ที่เลือà¸à¹„ม่ถูà¸à¸•้อง Invalid Files Selected Plural ไฟล์ที่เลือà¸à¹„ม่ถูà¸à¸•้อง Image รูปภาพ Import นำเข้า Layout style: รูปà¹à¸šà¸š: Live à¹à¸ªà¸”งบนจอภาพ Live Background Error à¹à¸ªà¸”งพื้นหลังบนจอภาพเà¸à¸´à¸”ข้อผิดพลาด Live Toolbar à¹à¸–บเครื่องมือà¹à¸ªà¸”งบนจอภาพ Load บรรจุ Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes นาที Middle à¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡ New ใหม่ New Service à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹ƒà¸«à¸¡à¹ˆ New Theme ธีมใหม่ Next Track ตำà¹à¸«à¸™à¹ˆà¸‡à¸–ัดไป No Folder Selected Singular ไม่มีโฟลเดอร์ที่เลือภNo File Selected Singular ไม่มีไฟล์ที่เลือภNo Files Selected Plural ไม่มีไฟล์ที่เลือภNo Item Selected Singular ไม่มีรายà¸à¸²à¸£à¸—ี่เลือภNo Items Selected Plural ไม่มีรายà¸à¸²à¸£à¸—ี่เลือภOpenLP is already running. Do you wish to continue? โปรà¹à¸à¸£à¸¡ OpenLP เปิดทำงานอยู่à¹à¸¥à¹‰à¸§ คุณต้องà¸à¸²à¸£à¸”ำเนินà¸à¸²à¸£à¸•่อไปหรือไม่? Open service. เปิดà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Play Slides in Loop เลื่อนà¹à¸šà¸šà¸§à¸™à¸£à¸­à¸š Play Slides to End เลื่อนà¹à¸šà¸šà¸£à¸­à¸šà¹€à¸”ียว Preview à¹à¸ªà¸”งตัวอย่าง Print Service พิมพ์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Projector Singular Projectors Plural Replace Background à¹à¸—นที่พื้นหลัง Replace live background. à¹à¸—นที่พื้นหลังบนจอภาพ Reset Background ตั้งค่าพื้นหลังใหม่ Reset live background. ตั้งค่าพื้นหลังบนจอภาพใหม่ s The abbreviated unit for seconds วินาที Save && Preview บันทึภ&& à¹à¸ªà¸”งตัวอย่าง Search ค้นหา Search Themes... Search bar place holder text ค้นหาธีม... You must select an item to delete. คุณต้องเลือà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸—ี่ต้องà¸à¸²à¸£à¸¥à¸šà¸­à¸­à¸ You must select an item to edit. คุณต้องเลือà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸—ี่ต้องà¸à¸²à¸£à¹à¸à¹‰à¹„ข Settings ตั้งค่า Save Service บันทึà¸à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Service บริà¸à¸²à¸£ Optional &Split &à¹à¸¢à¸à¹à¸šà¸šà¸ªà¸¸à¹ˆà¸¡à¹€à¸¥à¸·à¸­à¸ Split a slide into two only if it does not fit on the screen as one slide. à¹à¸¢à¸à¸‚้อความที่เลื่อนออà¸à¹€à¸›à¹‡à¸™à¸ªà¸­à¸‡à¸ªà¹ˆà¸§à¸™à¹€à¸—่านั้น ถ้าข้อความไม่พอดีà¸à¸±à¸šà¸ˆà¸­à¸ à¸²à¸žà¹€à¸¡à¸·à¹ˆà¸­à¸—ำà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Start %s เริ่มต้น %s Stop Play Slides in Loop หยุดà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¹à¸šà¸šà¸§à¸™à¸£à¸­à¸š Stop Play Slides to End หยุดà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¹à¸šà¸šà¸£à¸­à¸šà¹€à¸”ียว Theme Singular à¹à¸ªà¸”งธีมที่ว่างเปล่า Themes Plural ธีม Tools เครื่องมือ Top ด้านบน Unsupported File ไฟล์ที่ไม่สนับสนุน Verse Per Slide หนึ่งข้อต่อà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Verse Per Line หลายข้อต่อà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Version ฉบับ View à¹à¸ªà¸”ง View Mode รูปà¹à¸šà¸šà¸—ี่à¹à¸ªà¸”ง CCLI song number: Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸‡à¸²à¸™à¸™à¸³à¹€à¸ªà¸™à¸­</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸‡à¸²à¸™à¸™à¸³à¹€à¸ªà¸™à¸­ สามารถà¹à¸ªà¸”งงานนำเสนอของชุดโปรà¹à¸à¸£à¸¡à¸—ี่à¹à¸•à¸à¸•่างà¸à¸±à¸™ ตัวเลือà¸à¸ªà¸³à¸«à¸£à¸±à¸šà¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¸à¸¥à¹ˆà¸­à¸‡à¸£à¸²à¸¢à¸à¸²à¸£à¸«à¸¥à¹ˆà¸™à¸¥à¸‡ Presentation name singular งานนำเสนอ Presentations name plural งานนำเสนอ Presentations container title งานนำเสนอ Load a new presentation. เพิ่มงานนำเสนอใหม่ Delete the selected presentation. ลบงานนำเสนอที่เลือภPreview the selected presentation. à¹à¸ªà¸”งตัวอย่างงานนำเสนอที่เลือภSend the selected presentation live. ส่งงานนำเสนอที่เลือà¸à¹„ปà¹à¸ªà¸”งบนจอภาพ Add the selected presentation to the service. เพิ่มงานนำเสนอที่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ PresentationPlugin.MediaItem Select Presentation(s) เลือà¸à¸‡à¸²à¸™à¸™à¸³à¹€à¸ªà¸™à¸­ Automatic อัตโนมัติ Present using: นำเสนอโดยใช้: File Exists ไฟล์ที่มีอยู่ A presentation with that filename already exists. งานนำเสนอชื่อไฟล์นี้มีอยู่à¹à¸¥à¹‰à¸§ This type of presentation is not supported. ประเภทของงานนำเสนอนี้ ไม่ได้รับà¸à¸²à¸£à¸ªà¸™à¸±à¸šà¸ªà¸™à¸¸à¸™ Presentations (%s) งานนำเสนอ (%s) Missing Presentation งานนำเสนอหายไป The presentation %s is incomplete, please reload. งานนำเสนอ %s ไม่สมบูรณ์ โปรดเพิ่มเข้ามาใหม่ The presentation %s no longer exists. งานนำเสนอ %s ไม่มีอีà¸à¸•่อไป PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers ตัวควบคุมที่ใช้งานได้ %s (unavailable) %s (ไม่สามารถใช้งานได้) Allow presentation application to be overridden อนุà¸à¸²à¸•ให้โปรà¹à¸à¸£à¸¡à¸‡à¸²à¸™à¸™à¸³à¹€à¸ªà¸™à¸­à¸–ูà¸à¹à¸—นที่ได้ PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥ ให้ความสามารถในà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸‚้อความไปยังโปรà¹à¸à¸£à¸¡ OpenLP รุ่นที่ทำงานอยู่บนเครื่องคอมพิวเตอร์ที่à¹à¸•à¸à¸•่างà¸à¸±à¸™ ผ่านทางเว็บเบราเซอร์ หรือผ่านทางตัวควบคุมระยะไà¸à¸¥ API Remote name singular à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥ Remotes name plural à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥ Remote container title à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥ Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Slide Controller ตัวควบคุมà¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Alerts à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Search ค้นหา Home หน้าหลัภRefresh à¸à¸²à¸£à¸Ÿà¸·à¹‰à¸™à¸Ÿà¸¹ Blank ว่างเปล่า Theme à¹à¸ªà¸”งธีมที่ว่างเปล่า Desktop à¹à¸ªà¸”งวอลล์เปเปอร์เดสà¸à¹Œà¸—อป Show à¹à¸ªà¸”ง Prev ย้อนà¸à¸¥à¸±à¸š Next ถัดไป Text ข้อความ Show Alert à¹à¸ªà¸”งà¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ือน Go Live à¹à¸ªà¸”งบนจอภาพ Add to Service เพิ่มไปที่บริà¸à¸²à¸£ Add &amp; Go to Service &amp; เพิ่มไปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ No Results ไม่มีผลลัพธ์ Options ตัวเลือภService บริà¸à¸²à¸£ Slides à¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™ Settings ตั้งค่า Remote à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥ Stage View Live View RemotePlugin.RemoteTab Serve on IP address: บันทึภIP address: Port number: หมายเลข Port: Server Settings ตั้งค่า Server Remote URL: URL à¸à¸²à¸£à¸„วบคุมระยะไà¸à¸¥: Stage view URL: URL à¸à¸²à¸£à¹à¸ªà¸”งผลระยะไà¸à¸¥: Display stage time in 12h format à¹à¸ªà¸”งเวลาในรูปà¹à¸šà¸š 12 ชั่วโมง Android App โปรà¹à¸à¸£à¸¡à¸ªà¸³à¸«à¸£à¸±à¸š Android Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: รหัสผ่าน: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &รายงานà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ &Delete Tracking Data &ลบข้อมูลà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Delete song usage data up to a specified date. ลบข้อมูลà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡à¸–ึงวันที่ระบุ &Extract Tracking Data &à¸à¸²à¸£à¸•ิดตามข้อมูล Generate a report on song usage. สร้างรายงานà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Toggle Tracking ล็อคà¸à¸²à¸£à¸•ิดตาม Toggle the tracking of song usage. ล็อคà¸à¸²à¸£à¸•ิดตามà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸™à¸µà¹‰ จะติดตามà¹à¸¥à¸°à¹€à¸à¹‡à¸šà¸‚้อมูลà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ ของà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£à¹ƒà¸™à¹à¸•่ละวัน SongUsage name singular à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ SongUsage name plural à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ SongUsage container title à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Song Usage à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Song usage tracking is active. ติดตามà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡à¸—ี่มีà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ Song usage tracking is inactive. ติดตามà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡à¸—ี่ไม่มีà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ display à¹à¸ªà¸”ง printed สั่งพิมพ์ SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data ลบข้อมูลà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Delete Selected Song Usage Events? ลบเหตุà¸à¸²à¸£à¸“์à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡à¸—ี่เลือà¸? Are you sure you want to delete selected Song Usage data? คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸šà¸‚้อมูลà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡à¸—ี่เลือà¸? Deletion Successful ลบเสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction คัดเลือà¸à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸žà¸¥à¸‡ Select Date Range เลือà¸à¸Šà¹ˆà¸§à¸‡à¸§à¸±à¸™à¸—ี่ to ถึง Report Location ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งรายงาน Output File Location ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งของไฟล์ที่ส่งออà¸à¸‚้อมูล usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation à¸à¸²à¸£à¸ªà¸£à¹‰à¸²à¸‡à¸£à¸²à¸¢à¸‡à¸²à¸™ Report %s has been successfully created. รายงาน %s สร้างเสร็จเรียบร้อยà¹à¸¥à¹‰à¸§ Output Path Not Selected ไม่ได้เลือà¸à¹€à¸ªà¹‰à¸™à¸—างà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸à¸‚้อมูล You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song &เพลง Import songs using the import wizard. นำเข้าเพลงโดยใช้ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸žà¸¥à¸‡</strong><br />โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸žà¸¥à¸‡à¹ƒà¸«à¹‰à¸„วามสามารถในà¸à¸²à¸£à¹à¸ªà¸”งà¹à¸¥à¸°à¸ˆà¸±à¸”à¸à¸²à¸£à¹€à¸žà¸¥à¸‡ &Re-index Songs &ฟื้นฟูสารบัà¸à¹€à¸žà¸¥à¸‡ Re-index the songs database to improve searching and ordering. à¸à¸²à¸£à¸Ÿà¸·à¹‰à¸™à¸Ÿà¸¹à¸ªà¸²à¸£à¸šà¸±à¸à¹€à¸žà¸¥à¸‡ à¸à¸²à¸™à¸‚้อมูลทำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸à¸²à¸£à¸„้นหาà¹à¸¥à¸°à¸ˆà¸±à¸”ลำดับเพลง Reindexing songs... à¸à¸³à¸¥à¸±à¸‡à¸Ÿà¸·à¹‰à¸™à¸Ÿà¸¹à¸ªà¸²à¸£à¸šà¸±à¸à¹€à¸žà¸¥à¸‡... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding เข้ารหัสตัวอัà¸à¸©à¸£ The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. หน้ารหัสเป็นผู้รับผิดชอบà¸à¸²à¸£à¸•ั้งค่า สำหรับà¸à¸²à¸£à¹à¸ªà¸”งà¹à¸—นที่ตัวอัà¸à¸©à¸£à¸—ี่ถูà¸à¸•้องอีà¸à¸„รั้ง โดยปà¸à¸•ิà¹à¸¥à¹‰à¸§à¸¡à¸µà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸•ัวเลือà¸à¹„ว้ให้คุณล่วงหน้า Please choose the character encoding. The encoding is responsible for the correct character representation. โปรดเลือà¸à¸à¸²à¸£à¹€à¸‚้ารหัสอัà¸à¸©à¸£ à¸à¸²à¸£à¹€à¸‚้ารหัสเป็นผู้รับผิดชอบ ในà¸à¸²à¸£à¹à¸—นที่ตัวอัà¸à¸©à¸£à¸—ี่ถูà¸à¸•้อง Song name singular เพลง Songs name plural เพลง Songs container title เพลง Exports songs using the export wizard. ส่งออà¸à¹€à¸žà¸¥à¸‡à¹‚ดยใช้ตัวช่วยสร้างà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸ Add a new song. เพิ่มเพลงใหม่ Edit the selected song. à¹à¸à¹‰à¹„ขเพลงที่เลือภDelete the selected song. ลบเพลงที่เลือภPreview the selected song. à¹à¸ªà¸”งตัวอย่างเพลงที่เลือภSend the selected song live. ส่งเพลงที่เลือà¸à¹„ปà¹à¸ªà¸”งบนจอภาพ Add the selected song to the service. เพิ่มเพลงที่เลือà¸à¹„ปที่à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Reindexing songs ฟื้นฟูสารบัà¸à¹€à¸žà¸¥à¸‡ CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song SongsPlugin.AuthorsForm Author Maintenance สถานะผู้à¹à¸•่ง Display name: ชื่อที่à¹à¸ªà¸”ง: First name: ชื่อ: Last name: นามสà¸à¸¸à¸¥: You need to type in the first name of the author. คุณต้องพิมพ์ชื่อของผู้à¹à¸•่ง You need to type in the last name of the author. คุณต้องพิมพ์นามสà¸à¸¸à¸¥à¸‚องผู้à¹à¸•่ง You have not set a display name for the author, combine the first and last names? คุณไม่ได้ใส่ค่าสำหรับà¹à¹à¸ªà¸”งชื่อของผู้à¹à¸•่ง โดยà¸à¸²à¸£à¸£à¸§à¸¡à¸Šà¸·à¹ˆà¸­à¹à¸¥à¸°à¸™à¸²à¸¡à¸ªà¸à¸¸à¸¥à¹„ว้ด้วยà¸à¸±à¸™? SongsPlugin.CCLIFileImport The file does not have a valid extension. ไฟล์มีนามสà¸à¸¸à¸¥à¹„ม่ถูà¸à¸•้อง SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s ดูà¹à¸¥à¹‚ดย %s "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data นิยามข้อมูล Custom Book Names ชื่อหนังสือที่à¸à¸³à¸«à¸™à¸”เอง SongsPlugin.EditSongForm Song Editor à¹à¸à¹‰à¹„ขเพลง &Title: &ชื่อเพลง: Alt&ernate title: &ชื่อเพลงสำรอง: &Lyrics: &เนื้อเพลง: &Verse order: &จัดลำดับท่อนเพลง: Ed&it All &à¹à¸à¹‰à¹„ขทั้งหมด Title && Lyrics ชื่อเพลง && เนือเพลง &Add to Song &เพิ่มไปที่เพลง &Remove &ลบออภA&dd to Song &เพิ่มไปที่เพลง R&emove &ลบออภNew &Theme &สร้างธีมใหม่ Copyright Information ข้อมูลลิขสิทธิ์ Comments ความคิดเห็น Theme, Copyright Info && Comments ธีม, ข้อมูลลิขสิทธิ์ && ความคิดเห็น Add Author เพิ่มชื่อผู้à¹à¸•่ง This author does not exist, do you want to add them? ชื่อผู้à¹à¸•่งไม่มีอยู่ในรายà¸à¸²à¸£ คุณต้องà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡à¸Šà¸·à¹ˆà¸­à¸œà¸¹à¹‰à¹à¸•่งหรือไม่? This author is already in the list. ชื่อผู้à¹à¸•่งมีอยู่à¹à¸¥à¹‰à¸§à¹ƒà¸™à¸£à¸²à¸¢à¸à¸²à¸£ You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. คุณเลือà¸à¸Šà¸·à¹ˆà¸­à¸œà¸¹à¹‰à¹à¸•่งไม่ถูà¸à¸•้อง เลือà¸à¸Šà¸·à¹ˆà¸­à¹ƒà¸”ชื่อหนึ่งจาà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸«à¸£à¸·à¸­à¸žà¸´à¸¡à¸žà¹Œà¸Šà¸·à¹ˆà¸­à¸œà¸¹à¹‰à¹à¸•่งใหม่ à¹à¸¥à¸°à¸„ลิà¸à¸—ี่ "เพิ่มผู้à¹à¸•่งไปที่เพลง" เพื่อเพิ่มชื่อผู้à¹à¸•่งใหม่ Add Topic เพิ่มหัวข้อ This topic does not exist, do you want to add it? หัวข้อไม่มีอยู่ในรายà¸à¸²à¸£ คุณต้องà¸à¸²à¸£à¹€à¸žà¸´à¹ˆà¸¡à¸«à¸±à¸§à¸‚้อหรือไม่? This topic is already in the list. หัวข้อนี้มีอยู่à¹à¸¥à¹‰à¸§à¹ƒà¸™à¸£à¸²à¸¢à¸à¸²à¸£ You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. คุณเลือà¸à¸«à¸±à¸§à¸‚้อไม่ถูà¸à¸•้อง เลือà¸à¸«à¸±à¸§à¸‚้อใดหัวข้อหนึ่งจาà¸à¸£à¸²à¸¢à¸à¸²à¸£à¸«à¸£à¸·à¸­à¸žà¸´à¸¡à¸žà¹Œà¸«à¸±à¸§à¸‚้อใหม่ à¹à¸¥à¸°à¸„ลิà¸à¸—ี่ "เพิ่มหัวข้อไปที่เพลง" เพื่อเพิ่มหัวข้อใหม่ You need to type in a song title. คุณต้องพิมพ์ชื่อเพลง You need to type in at least one verse. คุณต้องพิมพ์อย่างน้อยหนึ่งท่อน You need to have an author for this song. คุณต้องใส่ชื่อผู้à¹à¸•่งเพลงนี้ Linked Audio เสียงที่เชื่อมโยง Add &File(s) &เพิ่มไฟล์(s) Add &Media &เพิ่มสื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Remove &All &ลบออà¸à¸—ั้งหมด Open File(s) เปิดไฟล์(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>คำเตือน:</strong> ใส่ลำดับท่อนเพลงไม่ครบ หรือจัดลำดับไม่ถูà¸à¸•้อง <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse à¹à¸à¹‰à¹„ขท่อนเพลง &Verse type: &ประเภทเพลง: &Insert &à¹à¸—รภSplit a slide into two by inserting a verse splitter. à¹à¸¢à¸à¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¸­à¸­à¸à¹€à¸›à¹‡à¸™à¸ªà¸­à¸‡à¹‚ดยà¸à¸²à¸£à¹à¸—รà¸à¸•ัวà¹à¸¢à¸à¸—่อน SongsPlugin.ExportWizardForm Song Export Wizard ตัวช่วยสร้างà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸à¹€à¸žà¸¥à¸‡ Select Songs เลือà¸à¹€à¸žà¸¥à¸‡ Check the songs you want to export. ตรวจสอบเพลงที่คุณต้องà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸ Uncheck All ไม่เลือà¸à¸—ั้งหมด Check All เลือà¸à¸—ั้งหมด Select Directory เลือà¸à¹„ดเรà¸à¸—อรี Directory: ไดเรà¸à¸—อรี: Exporting à¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸ Please wait while your songs are exported. โปรดรอสัà¸à¸„รู่ในขณะที่เพลงของคุณถูà¸à¸ªà¹ˆà¸‡à¸­à¸­à¸ You need to add at least one Song to export. คุณต้องเพิ่มอย่างน้อยหนึ่งเพลงสำหรับà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸ No Save Location specified ไม่บันทึà¸à¸•ำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้งที่ระบุไว้ Starting export... เริ่มต้นà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸... You need to specify a directory. คุณต้องระบุไดเรà¸à¸—อรี Select Destination Folder เลือà¸à¹‚ฟลเดอร์ปลายทาง Select the directory where you want the songs to be saved. เลือà¸à¹„ดเรà¸à¸—อรีที่คุณต้องà¸à¸²à¸£à¸šà¸±à¸™à¸—ึà¸à¹€à¸žà¸¥à¸‡à¹„ว้ This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type เปิดใช้à¸à¸²à¸£à¸„้นหาในขณะที่คุณพิมพ์ SongsPlugin.ImportWizardForm Select Document/Presentation Files เลือà¸à¹„ฟล์เอà¸à¸ªà¸²à¸£/ไฟล์à¸à¸²à¸£à¸™à¸³à¹€à¸ªà¸™à¸­ Song Import Wizard ตัวช่วยสร้างà¸à¸²à¸£à¸™à¸³à¹€à¸‚้าเพลง This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. ตัวช่วยสร้างนี้ ช่วยให้คุณสามารถนำเข้าเพลงจาà¸à¸«à¸¥à¸²à¸à¸«à¸¥à¸²à¸¢à¸£à¸¹à¸›à¹à¸šà¸š คลิà¸à¸—ี่ปุ่มถัดไปด้านล่างเพื่อเริ่มต้นà¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£ โดยà¸à¸²à¸£à¹€à¸¥à¸·à¸­à¸à¸£à¸¹à¸›à¹à¸šà¸šà¸—ี่ต้องà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า Generic Document/Presentation เอà¸à¸ªà¸²à¸£à¸—ั่วไป/งานนำเสนอ Add Files... เพิ่มไฟล์... Remove File(s) ลบไฟล์(s)ออภPlease wait while your songs are imported. โปรดรอสัà¸à¸„รู่ในขณะที่เพลงของคุณถูà¸à¸™à¸³à¹€à¸‚้า Words Of Worship Song Files ไฟล์เพลงของ Words Of Worship Songs Of Fellowship Song Files ไฟล์เพลงของ Songs Of Fellowship SongBeamer Files ไฟล์ของ SongBeamer SongShow Plus Song Files ไฟล์เพลงของ SongShow Plus Foilpresenter Song Files ไฟล์เพลงของ Foilpresenter Copy คัดลอภSave to File บันทึà¸à¹„ฟล์ The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship ปิดใช้งานà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า เนื่องจาà¸à¹‚ปรà¹à¸à¸£à¸¡ OpenLP ไม่สามารถเข้าถึงโปรà¹à¸à¸£à¸¡ OpenOffice หรือ LibreOffice The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. เอà¸à¸ªà¸²à¸£à¸—ั่วไป/งานนำเสนอ ปิดใช้งานà¸à¸²à¸£à¸™à¸³à¹€à¸‚้า เนื่องจาà¸à¹‚ปรà¹à¸à¸£à¸¡ OpenLP ไม่สามารถเข้าถึงโปรà¹à¸à¸£à¸¡ OpenOffice หรือ LibreOffice OpenLyrics Files ไฟล์ของ OpenLyrics CCLI SongSelect Files ไฟล์ของ CCLI SongSelect EasySlides XML File ไฟล์ XML ของ EasySlides EasyWorship Song Database à¸à¸²à¸™à¸‚้อมูลเพลงของ EasyWorship DreamBeam Song Files ไฟล์เพลงของ DreamBeam You need to specify a valid PowerSong 1.0 database folder. คุณต้องระบุโฟลเดอร์à¸à¸²à¸™à¸‚้อมูลของ PowerSong 1.0 ให้ถูà¸à¸•้อง ZionWorx (CSV) ไฟล์ CSV ของโปรà¹à¸à¸£à¸¡ ZionWorx First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. คุณà¹à¸›à¸¥à¸‡à¸à¸²à¸™à¸‚้อมูลข ZionWorx เป็นไฟล์ข้อความ CSV เป็นครั้งà¹à¸£à¸ มีอธิบายไว้ใน <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a> SundayPlus Song Files ไฟล์เพลงของ SundayPlus This importer has been disabled. à¸à¸²à¸£à¸™à¸³à¹€à¸‚้านี้ถูà¸à¸›à¸´à¸”à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ MediaShout Database à¸à¸²à¸™à¸‚้อมูลของ MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. à¸à¸²à¸£à¸™à¸³à¹€à¸‚้าจาภMediaShout สนับสนุนเฉพาะบน Windows เท่านั้น ถูà¸à¸›à¸´à¸”ใช้งานเนื่องจาà¸à¹‚มดูลภาษาไพธอนหายไป ถ้าคุณต้องà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸à¸²à¸£à¸™à¸³à¹€à¸‚้านี้ คุณต้องติดตั้งโมดูล "pyodbc" SongPro Text Files ไฟล์ข้อความของ SongPro SongPro (Export File) SongPro (ไฟล์ที่ส่งออà¸) In SongPro, export your songs using the File -> Export menu ใน SongPro ส่งออà¸à¹€à¸žà¸¥à¸‡à¸‚องคุณโดยไปที่เมนู File -> Export EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) เลือà¸à¹„ฟล์(s)สื่อภาพà¹à¸¥à¸°à¹€à¸ªà¸µà¸¢à¸‡ Select one or more audio files from the list below, and click OK to import them into this song. เลือà¸à¹„ฟล์เสียงหนึ่งรายà¸à¸²à¸£à¸«à¸£à¸·à¸­à¸¡à¸²à¸à¸à¸§à¹ˆà¸²à¸ˆà¸²à¸à¸£à¸²à¸¢à¸à¸²à¸£à¸”้านล่าง à¹à¸¥à¸°à¸„ลิภOK เพื่อใส่ไว้ในเพลงนี้ SongsPlugin.MediaItem Titles ชื่อเพลง Lyrics เนื้อเพลง CCLI License: สัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸• CCLI: Entire Song เพลงทั้งหมด Maintain the lists of authors, topics and books. เà¸à¹‡à¸šà¸£à¸±à¸à¸©à¸²à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸­à¸‚องผู้à¹à¸•่ง, หัวข้อà¹à¸¥à¸°à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­ copy For song cloning คัดลอภSearch Titles... ค้นหาชื่อเพลง... Search Entire Song... ค้นหาเพลงทั้งหมด... Search Lyrics... ค้นหาเนื้อเพลง.. Search Authors... ค้นหาผู้à¹à¸•่ง... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. ไม่สามารถเปิดà¸à¸²à¸™à¸‚้อมูลของ MediaShout SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... à¸à¸³à¸¥à¸±à¸‡à¸ªà¹ˆà¸‡à¸­à¸­à¸ "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. ไม่มีเพลงที่นำเข้า Verses not found. Missing "PART" header. ไม่พบท่อนเพลง "PART" ส่วนหัวหายไป No %s files found. ไม่พบไฟล์ %s Invalid %s file. Unexpected byte value. ไฟล์ %s ไม่สามารถใช้งานได้ เà¸à¸´à¸”จาà¸à¸„่าไบต์ที่ไม่คาดคิด Invalid %s file. Missing "TITLE" header. ไฟล์ %s ไม่สามารถใช้งานได้ "TITLE" ส่วนหัวหายไป Invalid %s file. Missing "COPYRIGHTLINE" header. ไฟล์ %s ไม่สามารถใช้งานได้ "COPYRIGHTLINE" ส่วนหัวหายไป SongsPlugin.SongBookForm &Name: &ชื่อ: &Publisher: &ผู้จัดพิมพ์: You need to type in a name for the book. คุณต้องพิมพ์ชื่อของหนังสือเล่มนี้ Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. à¸à¸²à¸£à¸ªà¹ˆà¸‡à¸­à¸­à¸à¹€à¸žà¸¥à¸‡à¸‚องคุณล้มเหลว Finished export. To import these files use the <strong>OpenLyrics</strong> importer. ส่งออà¸à¹€à¸ªà¸£à¹‡à¸ˆà¹€à¸£à¸µà¸¢à¸šà¸£à¹‰à¸­à¸¢à¹à¸¥à¹‰à¸§ นำเข้าไฟล์เหล่านี้ไปใช้ใน <strong>OpenLyrics</strong> โดยเลือà¸à¸™à¸³à¹€à¸‚้า Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright ลิขสิทธิ์ The following songs could not be imported: เพลงต่อไปนี้ไม่สามารถนำเข้า: Cannot access OpenOffice or LibreOffice ไม่สามารถเข้าถึงโปรà¹à¸à¸£à¸¡ OpenOffice หรือ LibreOffice Unable to open file ไม่สามารถเปิดไฟล์ได้ File not found ไม่พบไฟล์ SongsPlugin.SongMaintenanceForm Could not add your author. ไม่สามารถเพิ่มชื่อผู้à¹à¸•่งของคุณ This author already exists. ชื่อผู้à¹à¸•่งชื่อนี้มีอยู่à¹à¸¥à¹‰à¸§ Could not add your topic. ไม่สามารถเพิ่มหัวข้อของคุณ This topic already exists. หัวข้อนี้มีอยู่à¹à¸¥à¹‰à¸§ Could not add your book. ไม่สามารถเพิ่มหนังสือของคุณ This book already exists. หนังสือเล่มนี้มีอยู่à¹à¸¥à¹‰à¸§ Could not save your changes. ไม่สามารถบันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸‚องคุณ Could not save your modified author, because the author already exists. ไม่สามารถบันทึà¸à¸Šà¸·à¹ˆà¸­à¸œà¸¹à¹‰à¹à¸•่งของคุณ เพราะชื่อผู้à¹à¸•่งชื่อนี้มีอยู่à¹à¸¥à¹‰à¸§ Could not save your modified topic, because it already exists. ไม่สามารถบันทึà¸à¸«à¸±à¸§à¸‚้อของคุณ เพราะหัวข้อนี้มีอยู่à¹à¸¥à¹‰à¸§ Delete Author ลบชื่อผู้à¹à¸•่ง Are you sure you want to delete the selected author? คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸šà¸Šà¸·à¹ˆà¸­à¸œà¸¹à¹‰à¹à¸•่งที่เลือà¸? This author cannot be deleted, they are currently assigned to at least one song. ชื่อผู้à¹à¸•่งคนนี้ไม่สามารถลบได้ มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ใช้อยู่ในเพลงขณะนี้อย่างน้อยหนึ่งเพลง Delete Topic ลบหัวข้อ Are you sure you want to delete the selected topic? คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸šà¸«à¸±à¸§à¸‚้อที่เลือà¸? This topic cannot be deleted, it is currently assigned to at least one song. หัวข้อนี้ไม่สามารถลบได้ มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ใช้อยู่ในเพลงขณะนี้อย่างน้อยหนึ่งเพลง Delete Book ลบหนังสือ Are you sure you want to delete the selected book? คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸šà¸«à¸™à¸±à¸‡à¸ªà¸·à¸­à¸—ี่เลือà¸? This book cannot be deleted, it is currently assigned to at least one song. หนังสือนี้ไม่สามารถลบได้ มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ใช้อยู่ในเพลงขณะนี้อย่างน้อยหนึ่งเพลง The author %s already exists. Would you like to make songs with author %s use the existing author %s? ชื่อผู้à¹à¸•่ง %s มีอยู่à¹à¸¥à¹‰à¸§ คุณต้องà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ใช้ชื่อผู้à¹à¸•่ง %s ให้à¸à¸±à¸šà¹€à¸žà¸¥à¸‡ ใช้ชื่อผู้à¹à¸•่ง %s ที่มีอยู่? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? หัวข้อ %s มีอยู่à¹à¸¥à¹‰à¸§ คุณต้องà¸à¸²à¸£à¸ˆà¸°à¸à¸³à¸«à¸™à¸”ใช้หัวข้อ %s ให้à¸à¸±à¸šà¹€à¸žà¸¥à¸‡ ใช้หัวข้อ %s ที่มีอยู่? The book %s already exists. Would you like to make songs with book %s use the existing book %s? ชื่อหนังสือ %s มีอยู่à¹à¸¥à¹‰à¸§ คุณต้องà¸à¸²à¸£à¸ˆà¸°à¸à¸³à¸«à¸™à¸”ใช้ชื่อหนังสือ %s ให้à¸à¸±à¸šà¹€à¸žà¸¥à¸‡ ใช้ชื่อหนังสือ %s ที่มีอยู่? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: ชื่อผู้ใช้: Password: รหัสผ่าน: Save username and password Login Search Text: Search ค้นหา Found %s song(s) Logout View à¹à¸ªà¸”ง Title: หัวข้อ: Author(s): Copyright: ลิขสิทธิ์: CCLI Number: Lyrics: Back Import นำเข้า More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode รูปà¹à¸šà¸šà¹€à¸žà¸¥à¸‡ Display verses on live tool bar à¹à¸ªà¸”งข้อความบนà¹à¸–บเครื่องมือà¹à¸ªà¸”งบนจอภาพ Update service from song edit ปรับปรุงà¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ จาà¸à¸à¸²à¸£à¹à¸à¹‰à¹„ขเพลง Import missing songs from service files นำเข้าเพลงที่หายไปจาà¸à¹„ฟล์à¸à¸²à¸£à¸ˆà¸±à¸”ทำรายà¸à¸²à¸£ Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance สถานะหัวข้อ Topic name: ชื่อหัวข้อ: You need to type in a topic name. คุณต้องพิมพ์ชื่อหัวข้อ SongsPlugin.VerseType Verse Verse ท่อนร้อง Chorus Chorus ร้องรับ Bridge Bridge ท่อนที่ทำนองà¹à¸•à¸à¸•่างไป Pre-Chorus Pre-Chorus ท่อนà¸à¹ˆà¸­à¸™à¸£à¹‰à¸­à¸‡à¸£à¸±à¸š Intro Intro ดนตรีà¸à¹ˆà¸­à¸™à¹€à¸£à¸´à¹ˆà¸¡à¸£à¹‰à¸­à¸‡ Ending Ending ท่อนจบ Other Other อื่นๆ SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸­à¹ˆà¸²à¸™à¹„ฟล์ CSV Line %d: %s บรรทัด %d: %s Decoding error: %s à¸à¸²à¸£à¸–อดรหัสเà¸à¸´à¸”ข้อผิดพลาด: %s File not valid WorshipAssistant CSV format. Record %d บันทึภ%d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸­à¹ˆà¸²à¸™à¹„ฟล์ CSV File not valid ZionWorx CSV format. รูปà¹à¸šà¸šà¹„ฟล์ CSV ของ ZionWorx ไม่ถูà¸à¸•้อง Line %d: %s บรรทัด %d: %s Decoding error: %s à¸à¸²à¸£à¸–อดรหัสเà¸à¸´à¸”ข้อผิดพลาด: %s Record %d บันทึภ%d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information ข้อมูลข่าวสาร No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/ta_LK.ts0000644000175000017500000171045012657640340015714 0ustar raoulraoul AlertsPlugin &Alert &எசà¯à®šà®°à®¿à®•à¯à®•ை செய Show an alert message. ஒர௠எசà¯à®šà®°à®¿à®•à¯à®•ை செயà¯à®¤à®¿ காடà¯à®Ÿà¯. Alert name singular எசà¯à®šà®°à®¿à®•à¯à®•ை செய Alerts name plural எசà¯à®šà®°à®¿à®•à¯à®•ைகள௠Alerts container title எசà¯à®šà®°à®¿à®•à¯à®•ைகள௠<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message எசà¯à®šà®°à®¿à®•à¯à®•ைகள௠செயà¯à®¤à®¿ Alert &text: எசà¯à®šà®°à®¿à®•à¯à®•ை செய &உரை &New &பà¯à®¤à®¿à®¯ &Save &சேமி Displ&ay காடà¯&சி Display && Cl&ose காடà¯à®šà®¿ && à®…&à®°à¯à®•ில௠New Alert பà¯à®¤à®¿à®¯ எசà¯à®šà®°à®¿à®•à¯à®•ை &Parameter: &அளவà¯à®°à¯: No Parameter Found அளவà¯à®°à¯ காணபà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ You have not entered a parameter to be replaced. Do you want to continue anyway? நீஙà¯à®•ள௠பதிலாக ஒர௠அளவà¯à®°à¯ உளà¯à®³à®¿à®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ. ⎠தொடர விரà¯à®®à¯à®ªà¯à®•ிறீரà¯à®•ளா? No Placeholder Found எநà¯à®¤ ஒதà¯à®•à¯à®•ிட இலà¯à®²à¯ˆ The alert text does not contain '<>'. Do you want to continue anyway? விழிபà¯à®ªà¯‚டà¯à®Ÿà®²à¯ உரை இலà¯à®²à¯ˆ '<>'. ⎠தொடர விரà¯à®®à¯à®ªà¯à®•ிறீரà¯à®•ளா? You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. எசà¯à®šà®°à®¿à®•à¯à®•ை செயà¯à®¤à®¿ உரà¯à®µà®¾à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ மறà¯à®±à¯à®®à¯ காணà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯. AlertsPlugin.AlertsTab Font எழà¯à®¤à¯à®¤à¯ Font name: எழà¯à®¤à¯à®¤à¯ பெயர௠Font color: எழà¯à®¤à¯à®¤à¯ வணà¯à®£à®®à¯ Background color: பினà¯à®©à®£à®¿ நிறமà¯: Font size: எழà¯à®¤à¯à®¤à¯ அளவ௠Alert timeout: à®®à¯à®Ÿà®¿à®¤à®²à¯ எசà¯à®šà®°à®¿à®•à¯à®•ை: BiblesPlugin &Bible &Bible Bible name singular வேதாகமம௠Bibles name plural அதிக பரிசà¯à®¤à¯à®¤ வேதாகமம௠Bibles container title அதிக பரிசà¯à®¤à¯à®¤ வேதாகமம௠No Book Found எதà¯à®µà¯à®®à®¿à®²à¯à®²à¯ˆ பà¯à®¤à¯à®¤à®• இலà¯à®²à¯ˆ No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. பொரà¯à®¤à¯à®¤à¯à®¤à®²à¯ பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®²à¯ இநà¯à®¤ காணபà¯à®ªà®Ÿà¯à®®à¯ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯ இலà¯à®²à¯ˆ பரிசà¯à®¤à¯à®¤ வேதாகமமà¯. நீஙà¯à®•ள௠சரியாக பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®©à¯ பெயர௠எழà¯à®¤à¯à®¤à¯à®•à¯à®•ூடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯ˆ எனà¯à®±à¯ பாரà¯à®™à¯à®•ளà¯. Import a Bible. ஒர௠பரிசà¯à®¤à¯à®¤ வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ Add a new Bible. ஒர௠பà¯à®¤à®¿à®¯ பரிசà¯à®¤à¯à®¤ வேதாகமம௠சேரà¯à®•à¯à®•வà¯à®® Edit the selected Bible. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠திரà¯à®¤à¯à®¤à®¿ Delete the selected Bible. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠நீகà¯à®•௠Preview the selected Bible. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯ Send the selected Bible live. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠அனà¯à®ªà¯à®ªà¯ Add the selected Bible to the service. சேவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠சேரà¯à®•à¯à®• <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>பரிசà¯à®¤à¯à®¤ வேதாகமம௠Plugin</strong><br />பரிசà¯à®¤à¯à®¤ வேதாகமம௠Plugin சேவையை போத௠பலà¯à®µà¯‡à®±à¯ ஆதாரஙà¯à®•ளில௠இரà¯à®¨à¯à®¤à¯ பைபிள௠வசனஙà¯à®•ள௠காடà¯à®Ÿ உதவà¯à®•ிறதà¯. &Upgrade older Bibles &மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯à®®à¯ பல பழைய பரிசà¯à®¤à¯à®¤ வேதாகமம௠Upgrade the Bible databases to the latest format. சமீபதà¯à®¤à®¿à®¯ வடிவம௠பரிசà¯à®¤à¯à®¤ வேதாகமம௠தரவà¯à®¤à¯à®¤à®³à®™à¯à®•ள௠மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤. Genesis ஆதியாகமம௠Exodus யாதà¯à®¤à®¿à®°à®¾à®•மம௠Leviticus லேவியராகமம௠Numbers எணà¯à®£à®¾à®•மம௠Deuteronomy உபாகமம௠Joshua யோசà¯à®µà®¾ Judges நியாயாதிபதிகள Ruth ரூத௠1 Samuel 1 சாமà¯à®µà¯‡à®²à¯ 2 Samuel 2 சாமà¯à®µà¯‡à®²à¯ 1 Kings 1 இராஜாகà¯à®•ள௠2 Kings 2 இராஜாகà¯à®•ள௠1 Chronicles 1 நாளாகமம௠2 Chronicles 2 நாளாகமம௠Ezra எஸà¯à®°à®¾ Nehemiah நெகேமியா Esther எஸà¯à®¤à®°à¯ Job யோப௠Psalms சஙà¯à®•ீதம௠Proverbs நீதிமொழிகள௠Ecclesiastes பிரசஙà¯à®•ி Song of Solomon உனà¯à®©à®¤à®ªà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ Isaiah à®à®šà®¾à®¯à®¾ Jeremiah எரேமியா Lamentations பà¯à®²à®®à¯à®ªà®²à¯ Ezekiel எசேகà¯à®•ியேல௠Daniel தானியேல Hosea ஓசியா Joel யோவேல Amos ஆமோஸ௠Obadiah ஒபதியா Jonah யோனா Micah மீகா Nahum நாகூம௠Habakkuk ஆபகூக௠Zephaniah செபà¯à®ªà®©à®¿à®¯à®¾ Haggai ஆகாய௠Zechariah சகரியா Malachi மலà¯à®•ியா Matthew மதà¯à®¤à¯‡à®¯à¯ Mark மாறà¯à®•௠Luke லூகà¯à®•ா John யோவான௠Acts அபà¯à®ªà¯‹à®¸à¯à®¤à®²à®° Romans ரோமர௠1 Corinthians 1 கொரிநà¯à®¤à®¿à®¯à®°à¯ 2 Corinthians 2 கொரிநà¯à®¤à®¿à®¯à®°à¯ Galatians கலாதà¯à®¤à®¿à®¯à®°à¯ Ephesians எபேசியர௠Philippians பிலிபà¯à®ªà®¿à®¯à®°à¯ Colossians கொலோசெயர௠1 Thessalonians 1 தெசலோனிகà¯à®•ேயர௠2 Thessalonians 2 தெசலோனிகà¯à®•ேயர௠1 Timothy 1 தீமோதà¯à®¤à¯‡à®¯à¯ 2 Timothy 2 தீமோதà¯à®¤à¯‡à®¯à¯ Titus தீதà¯à®¤à¯ Philemon பிலேமோன௠Hebrews எபிரேயர௠James யாகà¯à®•ோப௠1 Peter 1 பேதà¯à®°à¯ 2 Peter 2 பேதà¯à®°à¯ 1 John 1 யோவான௠2 John 2 யோவான௠3 John 3 யோவான௠Jude யூதா Revelation வெளி Judith ஜூடித௠Wisdom ஞானதà¯à®¤à¯ˆ Tobit டோபிட௠Sirach Sirach Baruch பரூச௠1 Maccabees 1 Maccabees 2 Maccabees 2 Maccabees 3 Maccabees 3 Maccabees 4 Maccabees 4 Maccabees Rest of Daniel டேனியல௠மீதமà¯à®³à¯à®³ Rest of Esther எஸà¯à®¤à®°à¯ மீதமà¯à®³à¯à®³ Prayer of Manasses Manasses பிராரà¯à®¤à¯à®¤à®©à¯ˆ Letter of Jeremiah ஜெரிமியா கடிதம௠Prayer of Azariah Azariah பிராரà¯à®¤à¯à®¤à®©à¯ˆ Susanna சà¯à®šà®¾à®©à®¾ Bel Bel 1 Esdras 1 எஸà¯à®Ÿà¯à®°à®¾à®¸à¯ 2 Esdras 2 எஸà¯à®Ÿà¯à®°à®¾à®¸à¯ : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 செயà¯à®¯ , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. உஙà¯à®•ள௠பதிபà¯à®ªà¯ பைபிள௠ஒர௠பெயரை கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. நீஙà¯à®•ள௠உஙà¯à®•ள௠வேதாகமம௠ஒர௠பதிபà¯à®ªà¯à®°à®¿à®®à¯ˆ அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯. பொத௠டொமைன௠பைபிள௠போனà¯à®± கà¯à®±à®¿à®¤à¯à®¤à®¤à¯ வேணà¯à®Ÿà¯à®®à¯. Bible Exists பைபிள௠உளà¯à®³à®¤à¯ This Bible already exists. Please import a different Bible or first delete the existing one. இநà¯à®¤ வேதாகமம௠மà¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. வேற௠வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ அலà¯à®²à®¤à¯ à®®à¯à®¤à®²à¯ இரà¯à®•à¯à®•à¯à®®à¯ ஒர௠நீகà¯à®•வà¯à®®à¯. You need to specify a book name for "%s". நீஙà¯à®•ள௠ஒர௠பà¯à®¤à¯à®¤à®•ம௠பெயரை கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯ "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. இநà¯à®¤ பà¯à®¤à¯à®¤à®•ம௠பெயர௠"%s" சரியான அலà¯à®². எணà¯à®•ள௠மடà¯à®Ÿà¯à®®à¯‡ ஆரமà¯à®ªà®¤à¯à®¤à®¿à®²à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¾à®®à¯ மறà¯à®±à¯à®®à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ அலà¯à®²à®¾à®¤ எண௠எழà¯à®¤à¯à®¤à¯à®•ள௠ஒனà¯à®±à¯ தொடரà¯à®¨à¯à®¤à¯ வேணà¯à®Ÿà¯à®®à¯. Duplicate Book Name பà¯à®¤à¯à®¤à®• பெயர௠நகல The Book Name "%s" has been entered more than once. இநà¯à®¤ பà¯à®¤à¯à®¤à®•ம௠பெயர௠"%s" கà¯à®•à¯à®®à¯ மேறà¯à®ªà®Ÿà¯à®Ÿ à®’à®°à¯à®®à¯à®±à¯ˆ நà¯à®´à¯ˆà®¨à¯à®¤à®¤à¯. BiblesPlugin.BibleManager Scripture Reference Error நூல௠கà¯à®±à®¿à®ªà¯à®ªà¯ பிழை Web Bible cannot be used இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ பரிசà¯à®¤à¯à®¤ வேதாகமம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ Text Search is not available with Web Bibles. உரை தேடà¯à®¤à®²à¯ இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ உடன௠இலà¯à®²à¯ˆ பரிசà¯à®¤à¯à®¤ வேதாகமமà¯. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. நீஙà¯à®•ள௠ஒர௠தேடல௠திறவà¯à®šà¯à®šà¯†à®¾à®²à¯ நà¯à®´à¯ˆà®¯ à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. ⎠நீஙà¯à®•ள௠உஙà¯à®•ள௠மà¯à®•à¯à®•ிய வாரà¯à®¤à¯à®¤à¯ˆà®•ள௠அனைதà¯à®¤à¯ தேட ஒர௠இடைவெளி மூலம௠வெவà¯à®µà¯‡à®±à¯ திறவà¯à®šà¯à®šà¯†à®¾à®±à¯à®•ளை பிரிகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯, நீஙà¯à®•ள௠அவரà¯à®•ளà¯à®•à¯à®•௠ஒர௠தேட ஒர௠கமா மூலம௠பிரிகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. பரிசà¯à®¤à¯à®¤ வேதாகமம௠தறà¯à®ªà¯‡à®¾à®¤à¯ நிறà¯à®µà®ªà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ உளà¯à®³à®©. ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ பரிசà¯à®¤à¯à®¤ வேதாகமம௠நிறà¯à®µ இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯à®®à¯. No Bibles Available எநà¯à®¤ பரிசà¯à®¤à¯à®¤ வேதாகமம௠கிடைகà¯à®•à¯à®®à¯ இலà¯à®²à¯ˆ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. உஙà¯à®•ள௠நூல௠கà¯à®±à®¿à®ªà¯à®ªà¯ ஒனà¯à®±à¯ OpenLP ஆதரவ௠அலà¯à®²à®¤à¯ தவறானத௠அலà¯à®². உஙà¯à®•ள௠கà¯à®±à®¿à®ªà¯à®ªà¯ பினà¯à®µà®°à¯à®®à¯ à®®à¯à®±à¯ˆà®•ளில௠ஒனà¯à®±à¯ ரதà¯à®¤à¯ போகிறத௠எனà¯à®ªà®¤à¯ˆ உறà¯à®¤à®¿ அலà¯à®²à®¤à¯ கைமà¯à®±à¯ˆ கலநà¯à®¤à®¾à®²à¯‡à®¾à®šà®¿à®•à¯à®•வà¯à®®à¯: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display வசனம௠காணà¯à®ªà®¿ Only show new chapter numbers பà¯à®¤à®¿à®¯ அதà¯à®¤à®¿à®¯à®¾à®¯à®®à¯ எணà¯à®•ள௠காடà¯à®Ÿ Bible theme: வேதாகமம௠தீமà¯: No Brackets எநà¯à®¤ அடைபà¯à®ªà¯à®•à¯à®•à¯à®±à®¿à®•ள௠இலà¯à®²à¯ˆ ( And ) ( மறà¯à®±à¯à®® ) { And } { மறà¯à®±à¯à®® } [ And ] [ மறà¯à®±à¯à®® ] Note: Changes do not affect verses already in the service. கà¯à®±à®¿à®ªà¯à®ªà¯: மாறà¯à®±à®™à¯à®•ள௠à®à®±à¯à®•னவே சேவையில௠உளà¯à®³ வசனஙà¯à®•ள௠பாதிபà¯à®ªà®¤à®¿à®²à¯à®²à¯ˆ. Display second Bible verses இரணà¯à®Ÿà®¾à®µà®¤à¯ வேதாகமம௠வசனஙà¯à®•ள௠காடà¯à®Ÿ Custom Scripture References தனிபயன௠பà¯à®©à®¿à®¤ கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠Verse Separator: வசனம௠பிரிபà¯à®ªà®¾à®©à¯: Range Separator: எலà¯à®²à¯ˆ பிரிபà¯à®ªà®¾à®©à¯: List Separator: படà¯à®Ÿà®¿à®¯à®²à¯ பிரிபà¯à®ªà®¾à®©à¯: End Mark: à®®à¯à®Ÿà®¿à®µà¯ மாரà¯à®•௠செயà¯à®¯à®µà¯‡à®£à¯à®Ÿà¯à®®à¯: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. பல மாறà¯à®±à¯ வசனம௠பிரிபà¯à®ªà®¾à®©à¯à®•ளà¯à®•à¯à®•௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®®à¯ அவரà¯à®•ள௠ஒர௠செஙà¯à®•à¯à®¤à¯à®¤à¯ படà¯à®Ÿà¯ˆ பிரிகà¯à®•பà¯à®ªà®Ÿà¯à®Ÿ வேணà¯à®Ÿà¯à®®à¯. "|" à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ மதிபà¯à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ இநà¯à®¤ தொக௠வரி அழிகà¯à®• தயவ௠செயà¯à®¤à¯. English ஆஙà¯à®•ிலம௠Default Bible Language à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ பைபிள௠மொழி Book name language in search field, search results and on display: தேடல௠தà¯à®±à¯ˆà®¯à®¿à®²à¯ பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®²à¯ பெயர௠மொழி, தேடல௠மà¯à®Ÿà®¿à®µà¯à®•ள௠மறà¯à®±à¯à®®à¯ காடà¯à®šà®¿: Bible Language பைபிள௠மொழி Application Language பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ மொழி Show verse numbers BiblesPlugin.BookNameDialog Select Book Name பà¯à®¤à¯à®¤à®• பெயர௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Current name: தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ பெயரà¯: Corresponding name: தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ பெயரà¯: Show Books From பà¯à®¤à¯à®¤à®•à®™à¯à®•ளை காடà¯à®Ÿà¯ Old Testament பழைய à®à®±à¯à®ªà®¾à®Ÿà¯ New Testament பà¯à®¤à®¿à®¯ à®à®±à¯à®ªà®¾à®Ÿ Apocrypha அதிகாரபà¯à®ªà¯‚à®°à¯à®µà®®à®±à¯à®± திரà¯à®®à®±à¯ˆ à®à®Ÿà¯à®•ள௠The following book name cannot be matched up internally. Please select the corresponding name from the list. பினà¯à®µà®°à¯à®®à¯ பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®²à¯ பெயர௠உளà¯à®¨à®¾à®Ÿà¯à®Ÿà®¿à®²à¯ பொரà¯à®¨à¯à®¤à¯à®®à¯ à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯. படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ பெயர௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. BiblesPlugin.BookNameForm You need to select a book. நீஙà¯à®•ள௠ஒர௠பà¯à®¤à¯à®¤à®•தà¯à®¤à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. BiblesPlugin.CSVBible Importing books... %s இறகà¯à®•à¯à®®à®¤à®¿ பà¯à®¤à¯à®¤à®•à®™à¯à®•ளà¯... %s Importing verses... done. வசனஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ ... à®®à¯à®Ÿà®¿à®¤à¯à®¤à¯ BiblesPlugin.EditBibleForm Bible Editor பைபிள௠எடிடà¯à®Ÿà®°à¯ License Details உரிமம௠விவரம௠Version name: பதிபà¯à®ªà¯ˆ பெயரà¯: Copyright: காபà¯à®ªà¯à®°à®¿à®®à¯ˆ: Permissions: அனà¯à®®à®¤à®¿à®•ளà¯: Default Bible Language à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ பைபிள௠மொழி Book name language in search field, search results and on display: தேடல௠பà¯à®²à®®à¯, தேடல௠மà¯à®Ÿà®¿à®µà¯à®•ள௠மறà¯à®±à¯à®®à¯ காடà¯à®šà®¿ பà¯à®¤à¯à®¤à®• பெயரை மொழி: Global Settings கà¯à®³à¯‡à®¾à®ªà®²à¯ அமைபà¯à®ªà¯à®•ள௠Bible Language பைபிள௠மொழி Application Language பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ மொழி English ஆஙà¯à®•ிலம௠This is a Web Download Bible. It is not possible to customize the Book Names. இநà¯à®¤ ஒர௠வலை பதிவிறகà¯à®•ம௠வேதாகமம௠உளà¯à®³à®¤à¯. அத௠பà¯à®¤à¯à®¤à®• பெயரà¯à®•ள௠தனிபà¯à®ªà®¯à®©à®¾à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. தனிபà¯à®ªà®¯à®©à®¾à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பà¯à®¤à¯à®¤à®•ம௠பெயரà¯à®•ளை பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤, "வேதாகமம௠மொழி" எனà¯à®± தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ Meta Data tab அலà¯à®²à®¤à¯ "உலகளாவிய அமைபà¯à®ªà¯à®•ளà¯" கடà¯à®Ÿà®®à¯ˆà®¤à¯à®¤à®²à¯ OpenLP பைபிள௠பகà¯à®•தà¯à®¤à®¿à®²à¯à®®à¯, தேரà¯à®µà¯. BiblesPlugin.HTTPBible Registering Bible and loading books... பதிவà¯à®šà¯†à®¯à¯à®¯à¯à®®à¯ வேதாகமம௠மறà¯à®±à¯à®®à¯ à®à®±à¯à®±à¯à®µà®¤à®¿à®²à¯ பà¯à®¤à¯à®¤à®•à®™à¯à®•ளà¯... Registering Language... மொழி பதிவ௠செயà¯à®¯... Importing %s... Importing <book name>... இறகà¯à®•à¯à®®à®¤à®¿ %s... Download Error பிழை பதிவிறகà¯à®•ம௠There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. உஙà¯à®•ள௠வசனம௠தேரà¯à®µà¯ பதிவிறகà¯à®•à¯à®®à¯ ஒர௠பிரசà¯à®šà®©à¯ˆ இரà¯à®¨à¯à®¤à®¤à¯. உஙà¯à®•ள௠இணைய இணைபà¯à®ªà¯ˆ சரிபாரà¯à®¤à¯à®¤à¯, இநà¯à®¤ பிழை à®à®±à¯à®ªà®Ÿà®²à®¾à®®à¯ தொடரà¯à®¨à¯à®¤à¯ ஒர௠பிழை அறிகà¯à®•ை கரà¯à®¤à¯à®¤à®¿à®²à¯ தயவ௠செயà¯à®¤à¯ தயவ௠செயà¯à®¤à¯. Parse Error பிழை பாகà¯à®ªà®Ÿà¯à®¤à¯à®¤ There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. உஙà¯à®•ள௠வசனம௠தேரà¯à®µà¯ பிரிதà¯à®¤à¯†à®Ÿà¯à®ªà¯à®ªà®¤à®¿à®²à¯ சிகà¯à®•ல௠à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯. இநà¯à®¤ பிழை à®à®±à¯à®ªà®Ÿà®²à®¾à®®à¯ தொடரà¯à®¨à¯à®¤à¯ ஒர௠பிழை அறிகà¯à®•ை à®®à¯à®¯à®±à¯à®šà®¿à®¯à¯à®™à¯à®•ளà¯. BiblesPlugin.ImportWizardForm Bible Import Wizard வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿ This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ நீஙà¯à®•ள௠பல வடிவமைபà¯à®ªà¯à®•ளில௠இரà¯à®¨à¯à®¤à¯ விவிலியஙà¯à®•ளà¯à®®à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ உதவà¯à®®à¯. இரà¯à®¨à¯à®¤à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ ஒர௠வடிவம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à¯ தà¯à®µà®™à¯à®•à¯à®®à¯ கீழே உளà¯à®³ அடà¯à®¤à¯à®¤ பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Web Download இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ பதிவிறகà¯à®•ம௠Location: இடமà¯: Crosswalk கிராஸà¯à®µà®¾à®•௠BibleGateway BibleGateway Bible: பரிசà¯à®¤à¯à®¤ வேதாகமமà¯: Download Options விரà¯à®ªà¯à®ªà®™à¯à®•ள௠பதிவிறகà¯à®•ம௠Server: சரà¯à®µà®°à¯: Username: பெயரà¯: Password: கடவà¯à®šà¯à®šà¯†à®¾à®²à¯à®²à¯ˆ: Proxy Server (Optional) பதிலாள௠சேவையகம௠(விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯) License Details உரிமம௠விவரம௠Set up the Bible's license details. வேதாகமம௠உரிம விவரஙà¯à®•ள௠அமைகà¯à®•. Version name: பதிபà¯à®ªà¯ˆ பெயரà¯: Copyright: காபà¯à®ªà¯à®°à®¿à®®à¯ˆ: Please wait while your Bible is imported. உஙà¯à®•ள௠வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ வரை காதà¯à®¤à®¿à®°à¯à®™à¯à®•ளà¯. You need to specify a file with books of the Bible to use in the import. நீஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ வேதாகமம௠பà¯à®¤à¯à®¤à®•à®™à¯à®•ளை ஒர௠கோபà¯à®ªà¯ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. You need to specify a file of Bible verses to import. நீஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ வேதாகமம௠வசனஙà¯à®•ள௠ஒர௠கோபà¯à®ªà¯ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. You need to specify a version name for your Bible. உஙà¯à®•ள௠பதிபà¯à®ªà¯ பைபிள௠ஒர௠பெயரை கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. நீஙà¯à®•ள௠உஙà¯à®•ள௠வேதாகமம௠ஒர௠பதிபà¯à®ªà¯à®°à®¿à®®à¯ˆ அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯. பொத௠டொமைன௠பைபிள௠போனà¯à®± கà¯à®±à®¿à®¤à¯à®¤à®¤à¯ வேணà¯à®Ÿà¯à®®à¯. Bible Exists பைபிள௠உளà¯à®³à®¤à¯ This Bible already exists. Please import a different Bible or first delete the existing one. இநà¯à®¤ வேதாகமம௠மà¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. வேற௠வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ அலà¯à®²à®¤à¯ à®®à¯à®¤à®²à¯ இரà¯à®•à¯à®•à¯à®®à¯ ஒர௠நீகà¯à®•வà¯à®®à¯. Your Bible import failed. உஙà¯à®•ள௠வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¨à¯à®¤à®¤à¯. CSV File CSV கோபà¯à®ªà¯ Bibleserver Bibleserver Permissions: அனà¯à®®à®¤à®¿à®•ளà¯: Bible file: வேதாகமம௠கோபà¯à®ªà¯: Books file: பà¯à®¤à¯à®¤à®•à®™à¯à®•ள௠கோபà¯à®ªà¯: Verses file: வசனஙà¯à®•ள கோபà¯à®ªà¯: Registering Bible... வேதாகமம௠பதிவ௠செயà¯à®¯... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Download bible list Error during download An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language மொழி தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP வேதாகமம௠இநà¯à®¤ மொழிபெயரà¯à®ªà¯à®ªà¯ மொழியை தீரà¯à®®à®¾à®©à®¿à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. கீழே உளà¯à®³ படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ மொழி தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. Language: மொழி: BiblesPlugin.LanguageForm You need to choose a language. நீஙà¯à®•ள௠ஒர௠மொழி தேரà¯à®µà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. BiblesPlugin.MediaItem Quick வேகமாக Find: கணà¯à®Ÿà®±à®¿à®¯: Book: பà¯à®¤à¯à®¤à®•à®®à¯: Chapter: பாடமà¯: Verse: வசனமà¯: From: இரà¯à®¨à¯à®¤à¯: To: அநà¯à®¤: Text Search உரை தேடல௠Second: இரணà¯à®Ÿà®¾à®µà®¤à¯: Scripture Reference நூல௠கà¯à®±à®¿à®ªà¯à®ªà¯ Toggle to keep or clear the previous results. à®®à¯à®¨à¯à®¤à¯ˆà®¯ à®®à¯à®Ÿà®¿à®µà¯à®•ளை வைதà¯à®¤à¯ அலà¯à®²à®¤à¯ அழிகà¯à®• மாறà¯à®µà®¤à®±à¯à®•à¯. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? நீஙà¯à®•ள௠ஒறà¯à®±à¯ˆ மறà¯à®±à¯à®®à¯ இரடà¯à®Ÿà¯ˆ வேதாகமம௠வசனம௠தேடல௠மà¯à®Ÿà®¿à®µà¯à®•ளை இணைகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯. உஙà¯à®•ள௠தேடல௠மà¯à®Ÿà®¿à®µà¯à®•ளை நீகà¯à®• மறà¯à®±à¯à®®à¯ ஒர௠பà¯à®¤à®¿à®¯ தேடலை தொடஙà¯à®• வேணà¯à®Ÿà¯à®®à®¾? Bible not fully loaded. வேதாகமம௠மà¯à®´à¯à®µà®¤à¯à®®à¯ à®à®±à¯à®±. Information தகவல௠The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. இரணà¯à®Ÿà®¾à®µà®¤à¯ வேதாகமம௠மà¯à®•à¯à®•ிய வேதாகமதà¯à®¤à®¿à®²à¯ அனைதà¯à®¤à¯ வசனஙà¯à®•ள௠இலà¯à®²à¯ˆ. இரணà¯à®Ÿà¯ விவிலியஙà¯à®•ளà¯à®®à¯ காணபà¯à®ªà®Ÿà¯à®®à¯ மடà¯à®Ÿà¯à®®à¯‡ வசனஙà¯à®•ள௠காணà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯. %d வசனஙà¯à®•ள௠மà¯à®Ÿà®¿à®µà¯ சேரà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. Search Scripture Reference... தேடல௠பà¯à®©à®¿à®¤ கà¯à®±à®¿à®ªà¯à®ªà¯ ... Search Text... உரை தேட ... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. நீஙà¯à®•ள௠மà¯à®±à¯à®±à®¿à®²à¯à®®à¯ நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾ "%s" பைபிள௠OpenLP இரà¯à®¨à¯à®¤à¯? நீஙà¯à®•ள௠இநà¯à®¤ பைபிள௠மீணà¯à®Ÿà¯à®®à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ மீணà¯à®Ÿà¯à®®à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. Advanced à®®à¯à®©à¯à®©à¯‡à®±à®¿à®¯ BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. தவறான பைபிள௠கோபà¯à®ªà¯ வகை வழஙà¯à®•பà¯à®ªà®Ÿà¯à®®à¯. OpenSong விவிலியஙà¯à®•ளà¯à®®à¯ சà¯à®°à¯à®•à¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ. நீஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ à®®à¯à®©à¯ அவரà¯à®•ள௠decompress வேணà¯à®Ÿà¯à®®à¯. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory ஒர௠காபà¯à®ªà¯ அடைவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ Bible Upgrade Wizard வேதாகமம௠மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯ வழிகாடà¯à®Ÿà®¿ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ நீஙà¯à®•ள௠OpenLP 2 ஒர௠மà¯à®©à¯ பதிபà¯à®ªà¯ உஙà¯à®•ள௠à®à®±à¯à®•னவே விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ உதவà¯à®®à¯. மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ தà¯à®µà®™à¯à®•à¯à®®à¯ கீழே உளà¯à®³ அடà¯à®¤à¯à®¤ பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Select Backup Directory காபà¯à®ªà¯ அடைவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ Please select a backup directory for your Bibles உஙà¯à®•ள௠விவிலியஙà¯à®•ளà¯à®®à¯ ஒர௠காபà¯à®ªà¯ அடைவ௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0 à®®à¯à®¨à¯à®¤à¯ˆà®¯ வெளியீடà¯à®•ளில௠மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®Ÿ விவிலியஙà¯à®•ளà¯à®®à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. நீஙà¯à®•ள௠OpenLP à®®à¯à®¨à¯à®¤à¯ˆà®¯ வெளியீடà¯à®Ÿà®¿à®²à¯ மாறà¯à®±à®¿à®¯à®®à¯ˆà®•à¯à®• வேணà¯à®Ÿà¯à®®à¯ எனà¯à®±à®¾à®²à¯ நீஙà¯à®•ள௠உஙà¯à®•ள௠OpenLP தரவ௠அடைவ௠திரà¯à®®à¯à®ª கோபà¯à®ªà¯à®•ளை நகலெடà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ எனà¯à®±à¯ இநà¯à®¤ உஙà¯à®•ள௠தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ விவிலியஙà¯à®•ளà¯à®®à¯ ஒர௠காபà¯à®ªà¯ உரà¯à®µà®¾à®•à¯à®•à¯à®®à¯. கோபà¯à®ªà¯à®•ளை மீடà¯à®• எவà¯à®µà®¾à®±à¯ நம௠காணலாமà¯<a href="http://wiki.openlp.org/faq">அடிகà¯à®•டி கேடà¯à®•பà¯à®ªà®Ÿà¯à®®à¯ கேளà¯à®µà®¿à®•ளà¯</a>. Please select a backup location for your Bibles. உஙà¯à®•ள௠விவிலியஙà¯à®•ளà¯à®®à¯ ஒர௠காபà¯à®ªà¯ இரà¯à®ªà¯à®ªà®¿à®Ÿà®¤à¯à®¤à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. Backup Directory: காபà¯à®ªà¯ அடைவà¯: There is no need to backup my Bibles என௠விவிலியஙà¯à®•ளà¯à®®à¯ காபà¯à®ªà¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà®¿à®¯ அவசியம௠இலà¯à®²à¯ˆ Select Bibles விவிலியஙà¯à®•ளà¯à®®à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Please select the Bibles to upgrade விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Upgrading மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®®à¯ Please wait while your Bibles are upgraded. உஙà¯à®•ள௠விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®®à¯ போத௠UpgradingPlease காதà¯à®¤à®¿à®°à¯à®•à¯à®•. The backup was not successful. To backup your Bibles you need permission to write to the given directory. காபà¯à®ªà¯ வெறà¯à®±à®¿à®•ரமாக அமையவிலà¯à®²à¯ˆ. நீஙà¯à®•ள௠கொடà¯à®¤à¯à®¤ அடைவில௠எழà¯à®¤ அனà¯à®®à®¤à®¿ தேவை உஙà¯à®•ள௠விவிலியஙà¯à®•ளà¯à®®à¯ காபà¯à®ªà¯†à®Ÿà¯à®•à¯à®•. Upgrading Bible %s of %s: "%s" Failed தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ வேதாகமம௠%s of %s: "%s" தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¨à¯à®¤à®¤à¯ Upgrading Bible %s of %s: "%s" Upgrading ... தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ வேதாகமம௠%s of %s: "%s" தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯... Download Error பிழை பதிவிறகà¯à®•ம௠To upgrade your Web Bibles an Internet connection is required. உஙà¯à®•ள௠வலை விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ ஒர௠இணைய இணைபà¯à®ªà¯ தேவை. Upgrading Bible %s of %s: "%s" Upgrading %s ... தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ வேதாகமம௠%s of %s: "%s" தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ %s ... Upgrading Bible %s of %s: "%s" Complete தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ வேதாகமம௠%s of %s: "%s" à®®à¯à®Ÿà®¿à®•à¯à®• , %s failed , %s பிழை Upgrading Bible(s): %s successful%s தரதà¯à®¤à¯ˆ உயரà¯à®¤à¯à®¤à¯à®¤à®²à¯ வேதாகமம௠(களà¯): %s நனà¯à®±à®¾à®• à®®à¯à®Ÿà®¿à®¤à¯à®¤à¯%s Upgrade failed. மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¨à¯à®¤à®¤à¯. You need to specify a backup directory for your Bibles. உஙà¯à®•ள௠விவிலியஙà¯à®•ளà¯à®®à¯ ஒர௠காபà¯à®ªà¯ அடைவ௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. Starting upgrade... மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®Ÿ ஆரமà¯à®ª... There are no Bibles that need to be upgraded. ஒர௠விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿ வேணà¯à®Ÿà¯à®®à¯ எனà¯à®±à¯ இலà¯à®²à¯ˆ. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular விரà¯à®ªà¯à®ª படவிலà¯à®²à¯ˆ Custom Slides name plural தனிபயன௠படவிலà¯à®²à¯ˆà®•ள௠Custom Slides container title தனிபயன௠படவிலà¯à®²à¯ˆà®•ள௠Load a new custom slide. பà¯à®¤à®¿à®¯ தனிபà¯à®ªà®¯à®©à¯ ஸà¯à®²à¯ˆà®Ÿà¯ˆ à®à®±à¯à®±. Import a custom slide. விரà¯à®ªà¯à®ª படவிலà¯à®²à¯ˆ இறகà¯à®•à¯à®®à®¤à®¿. Add a new custom slide. பà¯à®¤à®¿à®¯ தனிபà¯à®ªà®¯à®©à¯ ஸà¯à®²à¯ˆà®Ÿà¯ˆ சேரà¯à®•à¯à®•. Edit the selected custom slide. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ விரà¯à®ªà¯à®ª படவிலà¯à®²à¯ˆ திரà¯à®¤à¯à®¤. Delete the selected custom slide. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ விரà¯à®ªà¯à®ª ஸà¯à®²à¯ˆà®Ÿà¯ˆ நீகà¯à®•. Preview the selected custom slide. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ விரà¯à®ªà¯à®ª படவிலà¯à®²à¯ˆ à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯. Send the selected custom slide live. தறà¯à®šà®®à®¯à®®à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ விரà¯à®ªà¯à®ª படவிலà¯à®²à¯ˆ அனà¯à®ªà¯à®ª. Add the selected custom slide to the service. சேவைகà¯à®•௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ விரà¯à®ªà¯à®ª ஸà¯à®²à¯ˆà®Ÿà¯ˆ சேரà¯à®•à¯à®•. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display தனிபà¯à®ªà®¯à®©à¯ காடà¯à®šà®¿ Display footer அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ காடà¯à®Ÿ Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides தனிபயன௠படவிலà¯à®²à¯ˆà®•ள௠திரà¯à®¤à¯à®¤ &Title: &தலைபà¯à®ªà¯: Add a new slide at bottom. கீழே ஒர௠பà¯à®¤à®¿à®¯ ஸà¯à®²à¯ˆà®Ÿà¯ˆ சேரà¯à®•à¯à®•. Edit the selected slide. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஸà¯à®²à¯ˆà®Ÿà¯ திரà¯à®¤à¯à®¤. Edit all the slides at once. ஒரே நேரதà¯à®¤à®¿à®²à¯ அனைதà¯à®¤à¯ ஸà¯à®²à¯ˆà®Ÿà¯à®•ளையà¯à®®à¯ திரà¯à®¤à¯à®¤. Split a slide into two by inserting a slide splitter. ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ பிரிபà¯à®ªà®¿ சேரà¯à®¤à¯à®¤à¯à®•à¯à®•ொளà¯à®µà®¤à®©à¯ மூலம௠இரணà¯à®Ÿà¯ ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ பிரிநà¯à®¤à®¤à¯. The&me: தீ&à®®à¯: &Credits: &வரவà¯à®•ளை: You need to type in a title. நீஙà¯à®•ள௠ஒர௠தலைபà¯à®ªà¯ˆ தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. Ed&it All அனைதà¯à®¤à¯ தொ&க௠Insert Slide படவிலà¯à®²à¯ˆà®¯à¯ˆ சேரà¯à®•à¯à®• You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide படவிலà¯à®²à¯ˆ பதிபà¯à®ªà®¿ CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>படம௠Plugin</strong><br />படதà¯à®¤à¯ˆ Plugin படஙà¯à®•ளை காணà¯à®ªà®¿à®•à¯à®•à¯à®®à¯ வழஙà¯à®•à¯à®•ிறதà¯.<br /> இநà¯à®¤ Plugin மேனà¯à®®à¯ˆà®¯à®¾à®© à®…à®®à¯à®šà®™à¯à®•ள௠ஒர௠சேவையை மேலாளர௠ஒனà¯à®±à®¾à®• படஙà¯à®•ளை பல கà¯à®´à¯ திறன௠ஆகà¯à®®à¯. பல படஙà¯à®•ளை காணà¯à®ªà®¿à®•à¯à®•à¯à®®à¯ எளிதாகà¯à®•à¯à®®à¯. இநà¯à®¤ Plugin அநà¯à®¤ தானாக இயஙà¯à®•à¯à®®à¯ ஒர௠காடà¯à®šà®¿à®¯à¯ˆ உரà¯à®µà®¾à®•à¯à®• OpenLP தான௠"காலகà¯à®•ெட௠வளைவà¯" à®…à®®à¯à®šà®¤à¯à®¤à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à®¾à®®à¯. இநà¯à®¤ கூடà¯à®¤à®²à®¾à®•, Plugin இரà¯à®¨à¯à®¤à¯ படஙà¯à®•ளை தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ தீம௠பினà¯à®©à®£à®¿ பà¯à®±à®•à¯à®•ணிகà¯à®• பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯. அதறà¯à®•௠பதிலாக வழஙà¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பினà¯à®©à®£à®¿ ஒர௠பினà¯à®©à®£à®¿ போனà¯à®± தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படதà¯à®¤à¯ˆ கொணà¯à®Ÿ இசை போனà¯à®± உரை சாரà¯à®¨à¯à®¤ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ளை வழஙà¯à®•à¯à®µà®¤à¯à®®à®¾à®© இத௠Image name singular படம௠Images name plural படிமஙà¯à®•ள௠Images container title படிமஙà¯à®•ள௠Load a new image. ஒர௠பà¯à®¤à®¿à®¯ படதà¯à®¤à¯ˆ à®à®±à¯à®±. Add a new image. ஒர௠பà¯à®¤à®¿à®¯ படதà¯à®¤à¯ˆ சேரà¯à®•à¯à®•. Edit the selected image. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படதà¯à®¤à¯ˆ திரà¯à®¤à¯à®¤. Delete the selected image. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படதà¯à®¤à¯ˆ நீகà¯à®•à¯. Preview the selected image. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படதà¯à®¤à¯ˆ à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯. Send the selected image live. தறà¯à®šà®®à®¯à®®à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படம௠அனà¯à®ªà¯à®ª. Add the selected image to the service. சேவைகà¯à®•௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ படதà¯à®¤à¯ˆ சேரà¯à®•à¯à®•. ImagePlugin.AddGroupForm Add group Parent group: Group name: You need to type in a group name. Could not add the new group. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Add images to group: No group Existing group New group ImagePlugin.ExceptionDialog Select Attachment இணைபà¯à®ªà¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®® ImagePlugin.MediaItem Select Image(s) தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ படம௠(களà¯) You must select an image to replace the background with. நீஙà¯à®•ள௠பினà¯à®©à®£à®¿ பதிலாக ஒர௠படதà¯à®¤à¯ˆ தேரà¯à®µà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯ Missing Image(s) காணாமல௠போன படம௠(களà¯) The following image(s) no longer exist: %s இநà¯à®¤ படம௠(களà¯) இலà¯à®²à¯ˆ: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? பினà¯à®µà®°à¯à®®à¯ படதà¯à®¤à¯ˆ (களà¯) இனி இலà¯à®²à¯ˆ: %s இரà¯à®ªà¯à®ªà®¿à®©à¯à®®à¯ மறà¯à®± படஙà¯à®•ளை சேரà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à®¾? There was a problem replacing your background, the image file "%s" no longer exists. உஙà¯à®•ள௠பினà¯à®©à®£à®¿ பதிலாக ஒர௠பிரசà¯à®šà®©à¯ˆ இரà¯à®¨à¯à®¤à®¤à¯, பட கோபà¯à®ªà¯ "%s" இலà¯à®²à¯ˆ. There was no display item to amend. திரà¯à®¤à¯à®¤à¯à®®à¯ இலà¯à®²à¯ˆ காடà¯à®šà®¿ பொரà¯à®³à®¾à®• இரà¯à®¨à¯à®¤à®¤à¯. -- Top-level group -- You must select an image or group to delete. Remove group Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. திரையில௠பலà¯à®µà¯‡à®±à¯ à®…à®®à¯à®šà®®à¯ விகிதம௠படஙà¯à®•ளை பாரà¯à®•à¯à®• பினà¯à®©à®£à®¿. Media.player Audio Video VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>ஊடக Plugin</strong><br /> ஊடக Plugin ஆடியோ மறà¯à®±à¯à®®à¯ வீடியோ பினà¯à®©à®£à®¿ வழஙà¯à®•à¯à®•ிறதà¯. Media name singular ஊடக Media name plural ஊடக Media container title ஊடக Load new media. பà¯à®¤à®¿à®¯ ஊடக à®à®±à¯à®±. Add new media. பà¯à®¤à®¿à®¯ ஊடக சேரà¯à®•à¯à®•வà¯à®®à¯. Edit the selected media. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஊடக திரà¯à®¤à¯à®¤à¯. Delete the selected media. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஊடக நீகà¯à®•௠Preview the selected media. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஊடக à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯. Send the selected media live. தறà¯à®šà®®à®¯à®®à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஊடக அனà¯à®ªà¯à®ª Add the selected media to the service. சேவைகà¯à®•௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ ஊடக சேரà¯à®•à¯à®•வà¯à®®à¯ MediaPlugin.MediaClipSelector Select Media Clip Source Media path: Select drive from list Load disc Track Details Title: தலைபà¯à®ªà¯: Audio track: Subtitle track: HH:mm:ss.z Clip Range Start point: Set start point Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media ஊடக தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ You must select a media file to delete. நீஙà¯à®•ள௠ஒர௠ஊடக கோபà¯à®ªà¯ நீகà¯à®• ஒர௠கோபà¯à®ªà¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. You must select a media file to replace the background with. நீஙà¯à®•ள௠பினà¯à®©à®£à®¿ இடமாறà¯à®±à®®à¯ செயà¯à®¯ ஒர௠ஊடக கோபà¯à®ªà¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. There was a problem replacing your background, the media file "%s" no longer exists. உஙà¯à®•ள௠பினà¯à®©à®£à®¿ பதிலாக ஒர௠பிரசà¯à®šà®©à¯ˆ உளà¯à®³à®¤à¯, ஊடக கோபà¯à®ªà¯ "%s" இலà¯à®²à¯ˆ. Missing Media File ஊடக கோபà¯à®ªà¯ காணவிலà¯à®²à¯ˆ The file %s no longer exists. கோபà¯à®ªà¯ %s உளà¯à®³à®¤à¯ இலà¯à®²à¯ˆ. Videos (%s);;Audio (%s);;%s (*) வீடியோகà¯à®•ள (%s);;ஆடியோ (%s);;%s (*) There was no display item to amend. திரà¯à®¤à¯à®¤à¯à®®à¯ இலà¯à®²à¯ˆ காடà¯à®šà®¿ பொரà¯à®³à®¾à®• இரà¯à®¨à¯à®¤à®¤à¯. Unsupported File ஆதரிகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ கோபà¯à®ªà¯ Use Player: பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ பிளேயர௠VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden மீடியா பிளேயர௠மேலெழà¯à®¤à®ªà¯à®ªà®Ÿà®²à®¾à®®à¯ அனà¯à®®à®¤à®¿ Start Live items automatically OPenLP.MainWindow &Projector Manager OpenLP Image Files படம௠கோபà¯à®ªà¯à®•ள௠Information தகவல௠Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? வேதாகமம௠வடிவம௠மாறிவிடà¯à®Ÿà®¤à¯. நீஙà¯à®•ள௠உஙà¯à®•ள௠இரà¯à®•à¯à®•à¯à®®à¯ விவிலியஙà¯à®•ளà¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ வேணà¯à®Ÿà¯à®®à¯. OpenLP இபà¯à®ªà¯‡à®¾à®¤à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ வேணà¯à®Ÿà¯à®®à¯? Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits நறà¯à®ªà¯†à®¯à®°à¯à®•ளை License உரிமம௠build %s கடà¯à®Ÿ %s 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; version 2 of the License. இநà¯à®¤ திடà¯à®Ÿà®¤à¯à®¤à®¿à®©à¯ ஒர௠இலவச மெனà¯à®ªà¯†à®¾à®°à¯à®³à¯; நீஙà¯à®•ள௠விதிகளின௠கீழ௠அத௠மறà¯à®µà®¿à®¨à®¿à®¯à¯‡à®¾à®•ம௠/ அலà¯à®²à®¤à¯ அதை மாறà¯à®± à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ GNU General Public License என வெளியிடபà¯à®ªà®Ÿà¯à®Ÿà®¤à¯ Free Software Foundation; version 2 of the License. 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 below for more details. இநà¯à®¤ திடà¯à®Ÿà®®à¯ பயனà¯à®³à¯à®³à®¤à®¾à®• இரà¯à®•à¯à®•à¯à®®à¯ எனà¯à®±à¯ நமà¯à®ªà®¿à®•à¯à®•ையில௠விநியோகிகà¯à®•பà¯à®ªà®Ÿà¯à®•ிறதà¯, ஆனால௠எநà¯à®¤ உதà¯à®¤à®°à®µà®¾à®¤à®®à¯à®®à¯ இலà¯à®²à®¾à®¤à®¤à¯; ஒர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ நோகà¯à®•தà¯à®¤à¯à®•à¯à®•௠சநà¯à®¤à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®¤à®²à¯ அலà¯à®²à®¤à¯ கூட மறைமà¯à®•மான காபà¯à®ªà¯à®±à¯à®¤à®¿à®•ளà¯à®®à¯ இலà¯à®²à®¾à®®à®²à¯. மேலà¯à®®à¯ விவரஙà¯à®•ளà¯à®•à¯à®•௠கீழே காணà¯à®•. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - திற மூல பாடலà¯à®µà®°à®¿à®•ளை கணிபà¯à®ªà¯ OpenLP பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ வணஙà¯à®• சபைகà¯à®•ாக (ஈரà¯à®•à¯à®•, பவரà¯à®ªà®¾à®¯à®¿à®£à¯à®Ÿà¯ அலà¯à®²à®¤à¯ பவரà¯à®ªà®¾à®¯à®¿à®£à¯à®Ÿà¯ பாரà¯à®µà¯ˆà®¯à®¾à®³à®°à¯ நிறà¯à®µà®ªà¯à®ªà®Ÿà¯à®Ÿà®¿à®°à¯à®¨à¯à®¤à®¾à®²à¯) பாடலà¯à®•ளà¯, பைபிள௠வசனஙà¯à®•ளà¯, வீடியோகà¯à®•ளà¯, படஙà¯à®•ளà¯, மறà¯à®±à¯à®®à¯ விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ளை ஸà¯à®²à¯ˆà®Ÿà¯à®•ளை காடà¯à®Ÿ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®•ிறத௠இலவச தேவாலயதà¯à®¤à®¿à®²à¯ வழஙà¯à®•ல௠மெனà¯à®ªà¯†à®¾à®°à¯à®³à¯, அலà¯à®²à®¤à¯ பாடல௠திடà¯à®Ÿà®®à¯ மெனà¯à®ªà¯†à®¾à®°à¯à®³à¯ ஆகà¯à®®à¯ ஒர௠கணினி மறà¯à®±à¯à®®à¯ ஒர௠தரவ௠பà¯à®°à¯†à®¾à®œà¯†à®•à¯à®Ÿà®°à¯ OpenLP பறà¯à®±à®¿ மேலà¯à®®à¯ அறிய.: http://openlp.org/ OpenLP தொணà¯à®Ÿà®°à¯à®•ள௠எழà¯à®¤à®¿ பராமரிகà¯à®•பà¯à®ªà®Ÿà¯à®•ிறதà¯. மேலà¯à®®à¯ இலவச கிரிஸà¯à®¤à¯à®µà®°à¯ மெனà¯à®ªà¯†à®¾à®°à¯à®³à¯ எழà¯à®¤à®¿ பாரà¯à®•à¯à®• விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯, கீழே உளà¯à®³ பொதà¯à®¤à®¾à®©à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ தனà¯à®©à®¾à®°à¯à®µ à®®à¯à®¯à®±à¯à®šà®¿à®¯à¯à®™à¯à®•ளà¯. Volunteer மேறà¯à®•ொள௠Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings பயனர௠இடைமà¯à®• அமைபà¯à®ªà¯à®•ள௠Number of recent files to display: காணà¯à®ªà®¿à®•à¯à®• சமீபதà¯à®¤à®¿à®¯ கோபà¯à®ªà¯à®•ளை எணà¯: Remember active media manager tab on startup செயலில௠ஊடக மேலாளர௠நினைவிரà¯à®•à¯à®•ிறதா தொடகà¯à®•தà¯à®¤à®¿à®²à¯ தாவல௠Double-click to send items straight to live உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள தறà¯à®šà®®à®¯à®®à¯ அனà¯à®ªà¯à®ª இரà¯à®®à®Ÿà®™à¯à®•ாக கிளிக செய Expand new service items on creation உரà¯à®µà®¾à®•à¯à®•ம௠பà¯à®¤à®¿à®¯ சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠விரிவாகà¯à®•ம௠Enable application exit confirmation பயனà¯à®ªà®¾à®Ÿà¯ வெளியேறà¯à®®à¯ உறà¯à®¤à®¿ செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤ Mouse Cursor இடஞà¯à®šà¯à®Ÿà¯à®Ÿà®¿à®¯à¯ˆ Hide mouse cursor when over display window இடஞà¯à®šà¯à®Ÿà¯à®Ÿà®¿à®¯à¯ˆ மறைகà¯à®• போத௠காடà¯à®šà®¿ ஜனà¯à®©à®²à¯ வழியாக Default Image இயலà¯à®ªà®¾à®© படம௠Background color: பினà¯à®©à®£à®¿ நிறமà¯: Image file: படம௠கோபà¯à®ªà¯: Open File திற கோபà¯à®ªà¯ Advanced à®®à¯à®©à¯à®©à¯‡à®±à®¿à®¯ Preview items when clicked in Media Manager à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠ஊடக மேலாளர௠சொடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯ போத௠Browse for an image file to display. காணà¯à®ªà®¿à®•à¯à®• ஒர௠படதà¯à®¤à¯ˆ கோபà¯à®ªà¯ உலவ. Revert to the default OpenLP logo. à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ OpenLP லோகோ மீடà¯à®Ÿà¯†à®Ÿà¯. Default Service Name இயலà¯à®ªà®¾à®© சேவையை பெயர Enable default service name இயலà¯à®ªà®¾à®© சேவை பெயர௠செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤ Date and Time: தேதி மறà¯à®±à¯à®®à¯ நேரமà¯: Monday திஙà¯à®•டà¯à®•ிழமை Tuesday செவà¯à®µà®¾à®¯à¯à®•à¯à®•ிழமை Wednesday பà¯à®¤à®©à¯à®•ிழமை Friday வெளà¯à®³à®¿ Saturday சனிகà¯à®•ிழமை Sunday ஞாயிறà¯à®±à¯à®•à¯à®•ிழமை Now இபà¯à®ªà¯†à®¾à®´à¯à®¤à¯ Time when usual service starts. வழகà¯à®•à®®à¯à®ªà¯‡à®¾à®²à¯ சேவையை தொடஙà¯à®•à¯à®®à¯à®¨à¯‡à®°à®®à¯. Name: பெயரà¯: Consult the OpenLP manual for usage. பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯à®•à¯à®•௠OpenLP கையேடà¯à®Ÿà®¿à®©à¯ˆ. Revert to the default service name "%s". இயலà¯à®ªà®¾à®© சேவை பெயர௠மாறà¯à®±à®¿à®¯à®®à¯ˆ "%s". Example: உதாரணமாக: Bypass X11 Window Manager விணà¯à®Ÿà¯‡à®¾ மேலாளர௠பà¯à®±à®µà®´à®¿ X11 Syntax error. தொடரியல௠பிழை. Data Location தரவ௠இடம௠Current path: இபà¯à®ªà¯†à®¾à®´à¯à®¤à¯ பாதையை: Custom path: உஙà¯à®•ள௠பாதையை: Browse for new data file location. பà¯à®¤à®¿à®¯ தரவ௠கோபà¯à®ªà¯ இடதà¯à®¤à®¿à®±à¯à®•௠உலவ. Set the data location to the default. à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ தரவ௠இடதà¯à®¤à®¿à®²à¯ அமைகà¯à®•. Cancel ரதà¯à®¤à¯ Cancel OpenLP data directory location change. OpenLP தரவ௠அடைவ௠இடம௠மாறà¯à®±à®®à¯ ரதà¯à®¤à¯. Copy data to new location. பà¯à®¤à®¿à®¯ இடதà¯à®¤à®¿à®±à¯à®•௠தரவ௠நகலெடà¯à®•à¯à®•. Copy the OpenLP data files to the new location. பà¯à®¤à®¿à®¯ இடதà¯à®¤à®¿à®±à¯à®•௠OpenLP தரவ௠கோபà¯à®ªà¯à®•ளை நகலெடà¯à®•à¯à®•. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>எசà¯à®šà®°à®¿à®•à¯à®•ை:</strong> பà¯à®¤à®¿à®¯ தரவ௠அடைவ௠இடம௠OpenLP தரவ௠கோபà¯à®ªà¯à®•ளை கொணà¯à®Ÿà¯à®³à¯à®³à®¤à¯. இநà¯à®¤ கோபà¯à®ªà¯à®•ள௠ஒர௠பிரதியை போத௠இடமாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®®à¯. Data Directory Error தரவ௠இடதà¯à®¤à®¿à®²à¯ பிழை Select Data Directory Location தரவ௠இடம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ Confirm Data Directory Change தரவ௠அடைவ௠மாறà¯à®±à®®à¯ உறà¯à®¤à®¿ Reset Data Directory தரவ௠இடதà¯à®¤à®¿à®²à¯ மீடà¯à®Ÿà®®à¯ˆ Overwrite Existing Data à®à®±à¯à®•னவே தகவலà¯à®•ள௠மேலெழà¯à®¤à¯à®®à¯ OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP தரவ௠அடைவ௠இலà¯à®²à¯ˆ %s இநà¯à®¤ தரவ௠அடைவ௠மà¯à®©à¯à®©à®°à¯ OpenLP à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ இடம௠மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯. பà¯à®¤à®¿à®¯ இடம௠நீகà¯à®•கà¯à®•ூடிய ஊடகதà¯à®¤à®¿à®²à¯ இரà¯à®¨à¯à®¤à®¾à®²à¯, அநà¯à®¤ ஊடக கிடைகà¯à®• வேணà¯à®Ÿà¯à®®à¯. OpenLP à®à®±à¯à®±à¯à®®à¯ நிறà¯à®¤à¯à®¤ "இலà¯à®²à¯ˆ" எனà¯à®ªà®¤à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. நீஙà¯à®•ள௠இநà¯à®¤ சிகà¯à®•லை தீரà¯à®•à¯à®• அனà¯à®®à®¤à®¿à®•à¯à®•ிறதà¯. இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ இரà¯à®ªà¯à®ªà®¿à®Ÿà®®à¯ தரவ௠அடைவ௠மீடà¯à®Ÿà®®à¯ˆà®•à¯à®• "ஆமà¯" கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. நீஙà¯à®•ள௠OpenLP தரவ௠அடைவ௠இடம௠மாறà¯à®± வேணà¯à®Ÿà¯à®®à®¾: %s OpenLP மூடபà¯à®ªà®Ÿà¯à®®à¯ போத௠தரவ௠அடைவ௠மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®®à¯. Thursday Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. நீஙà¯à®•ள௠மà¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ இடதà¯à®¤à®¿à®±à¯à®•௠OpenLP தரவ௠அடைவ௠இடம௠மாறà¯à®± வேணà¯à®Ÿà¯à®®à®¾? OpenLP மூடிய பிறக௠இநà¯à®¤ இடம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®®à¯. OpenLP.ColorButton Click to select a color. ஒர௠வணà¯à®£ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• கிளிகà¯. OpenLP.DB RGB Video Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ Send E-Mail மினà¯à®©à®žà¯à®šà®²à¯ அனà¯à®ªà¯à®ª Save to File கோபà¯à®ªà¯ சேமிகà¯à®• Attach File கோபà¯à®ªà¯ˆ இணை Description characters to enter : %s விளகà¯à®•ம௠எழà¯à®¤à¯à®¤à¯à®•ள௠நà¯à®´à¯ˆà®¯: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s தளமà¯: %s Save Crash Report கà¯à®°à®¾à®·à¯ அறிகà¯à®•ையை சேமிகà¯à®• Text files (*.txt *.log *.text) உரை கோபà¯à®ªà¯à®•ள (*.txt *.log *.text) OpenLP.FileRenameForm File Rename மறà¯à®ªà¯†à®¯à®°à®¿à®Ÿà¯ தாகà¯à®•ல௠New File Name: பà¯à®¤à®¿à®¯ கோபà¯à®ªà¯ பெயரà¯: File Copy கோபà¯à®ªà¯ நகல௠OpenLP.FirstTimeLanguageForm Select Translation மொழிபெயரà¯à®ªà¯à®ªà¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Choose the translation you'd like to use in OpenLP. நீஙà¯à®•ள௠OpenLP பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ விரà¯à®®à¯à®ªà¯à®®à¯ மொழிபெயரà¯à®ªà¯à®ªà¯ தேரà¯à®µà¯. Translation: மொழிபெயரà¯à®ªà¯à®ªà¯: OpenLP.FirstTimeWizard Songs பாடலà¯à®•ள௠First Time Wizard à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ Welcome to the First Time Wizard à®®à¯à®¤à®²à®¿à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ வரவேறà¯à®•ிறோம௠Activate required Plugins தேவையான Plugins செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤ Select the Plugins you wish to use. நீஙà¯à®•ள௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®®à¯ விரà¯à®®à¯à®ªà¯à®®à¯ Plugins தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. Bible வேதாகமம௠Images படிமஙà¯à®•ள௠Presentations விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ள௠Media (Audio and Video) ஊடக (ஆடியோ ,வீடியோ) Allow remote access தொலைநிலை அணà¯à®•ல௠அனà¯à®®à®¤à®¿ Monitor Song Usage பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ கணà¯à®•ாணிகà¯à®• Allow Alerts எசà¯à®šà®°à®¿à®•à¯à®•ை அனà¯à®®à®¤à®¿ Default Settings இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ அமைபà¯à®ªà¯à®•ள௠Downloading %s... பதிவிறகà¯à®•à¯à®•ிறத௠%s... Enabling selected plugins... தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ plugins செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•ிறத௠... No Internet Connection இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ இணைபà¯à®ªà¯ இலà¯à®²à¯ˆ Unable to detect an Internet connection. இணைய இணைபà¯à®ªà¯ கணà¯à®Ÿà®±à®¿à®¯ à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. Sample Songs மாதிரி பாடலà¯à®•ள௠Select and download public domain songs. பொத௠டொமைன௠இசை தேரà¯à®µà¯ மறà¯à®±à¯à®®à¯ பதிவிறகà¯à®•. Sample Bibles மாதிரி விவிலியஙà¯à®•ளà¯à®®à¯ Select and download free Bibles. ேரà¯à®µà¯ மறà¯à®±à¯à®®à¯ இலவச விவிலியஙà¯à®•ளà¯à®®à¯ பதிவிறகà¯à®•. Sample Themes மாதிரி தீமà¯à®•ள௠Select and download sample themes. தேரà¯à®µà¯ மறà¯à®±à¯à®®à¯ மாதிரி கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯à®•ள௠பதிவிறகà¯à®•. Set up default settings to be used by OpenLP. OpenLP பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ வேணà¯à®Ÿà®¿à®¯ இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ அமைபà¯à®ªà¯à®•ளை அமைகà¯à®•வà¯à®®à¯. Default output display: இயலà¯à®ªà®¾à®© வெளிபà¯à®ªà®¾à®Ÿà¯ காடà¯à®šà®¿: Select default theme: இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ தீம௠தேரà¯à®µà¯: Starting configuration process... கடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯ பணியை தà¯à®µà®•à¯à®• ... Setting Up And Downloading அமைகà¯à®•வà¯à®®à¯ மறà¯à®±à¯à®®à¯ பதிவிறகà¯à®•à¯à®•ிறத௠Please wait while OpenLP is set up and your data is downloaded. OpenLP அமைகà¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯ உஙà¯à®•ள௠தரவ௠பதிவிறகà¯à®•ம௠வரை காதà¯à®¤à®¿à®°à¯à®•à¯à®•வà¯à®®à¯. Setting Up அமைகà¯à®•வà¯à®®à¯ Custom Slides தனிபயன௠படவிலà¯à®²à¯ˆà®•ள௠Finish à®®à¯à®Ÿà®¿à®•à¯à®• No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. இணைய இணைபà¯à®ªà¯ கிடைதà¯à®¤à®¤à¯ இலà¯à®²à¯ˆ. மாதிரி பாடலà¯à®•ளà¯, விவிலியஙà¯à®•ளà¯à®®à¯ மறà¯à®±à¯à®®à¯ தீமà¯à®•ளை பதிவிறகà¯à®• à®®à¯à®Ÿà®¿à®¯à¯à®®à¯ பொரà¯à®Ÿà¯à®Ÿà¯ à®®à¯à®¤à®²à¯ நேரம௠வழிகாடà¯à®Ÿà®¿ இணைய இணைபà¯à®ªà¯ தேவை. ஆரமà¯à®ª அமைபà¯à®ªà¯à®•ள௠மறà¯à®±à¯à®®à¯ மாதிரி தரவ௠OpenLP தொடஙà¯à®• இபà¯à®ªà¯‡à®¾à®¤à¯ பினிஷ௠பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ மீணà¯à®Ÿà¯à®®à¯ இயகà¯à®• மறà¯à®±à¯à®®à¯ ஒர௠பினà¯à®©à®°à¯ நேரதà¯à®¤à®¿à®²à¯ இநà¯à®¤ மாதிரி தரவ௠இறகà¯à®•à¯à®®à®¤à®¿, உஙà¯à®•ள௠இணைய இணைபà¯à®ªà¯ சரிபாரà¯à®•à¯à®• இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ "கரà¯à®µà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®ªà¯à®ªà®¤à®©à¯ மூலம௠மீணà¯à®Ÿà¯à®®à¯ இயகà¯à®• / OpenLP இரà¯à®¨à¯à®¤à¯ "à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ மீணà¯à®Ÿà¯à®®à¯ இயகà¯à®•. Download Error பிழை பதிவிறகà¯à®•ம௠There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel ரதà¯à®¤à¯ Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags வடிவமைதà¯à®¤à®²à¯ கà¯à®±à®¿à®šà¯à®šà¯†à®¾à®±à¯à®•ள௠கடà¯à®Ÿà®®à¯ˆà®•à¯à®• Description விளகà¯à®•ம௠Tag Tag Start HTML HTML தொடஙà¯à®•௠End HTML HTML à®®à¯à®Ÿà®¿à®µà¯à®•à¯à®•௠Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error செலà¯à®²à®¤à¯à®¤à®•à¯à®•தாகà¯à®•à¯à®¤à®²à¯à®®à¯ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ Description is missing Tag is missing Tag %s already defined. Tag %s à®à®±à¯à®•னவே இரà¯à®•à¯à®•ிறதà¯. Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red சிவபà¯à®ªà¯ Black கரà¯à®ªà¯à®ªà¯ Blue நீலம௠Yellow மஞà¯à®šà®³à¯ Green பசà¯à®šà¯ˆ Pink இளஞà¯à®šà®¿à®µà®ªà¯à®ªà¯ Orange ஆரஞà¯à®šà¯ Purple ஊதா வரà¯à®£à®®à¯ White வெணà¯à®®à¯ˆà®¯à®¾à®© Superscript Superscript Subscript Subscript Paragraph பதà¯à®¤à®¿ Bold போலà¯à®Ÿà¯ Italics இடாலிகà¯à®¸à®¿à®²à¯ Underline வலியà¯à®±à¯à®¤à¯à®¤à¯ Break இடைநிறà¯à®¤à¯à®¤à¯ OpenLP.GeneralTab General பொதà¯à®µà®¾à®© Monitors திரைகள௠Select monitor for output display: வெளியீட௠காடà¯à®šà®¿à®•à¯à®•௠கணà¯à®•ாணிகà¯à®• தேரà¯à®µà¯: Display if a single screen காணà¯à®ªà®¿à®•à¯à®• ஒர௠ஒறà¯à®±à¯ˆ திரை Application Startup பயனà¯à®ªà®¾à®Ÿà¯ தொடகà¯à®• Show blank screen warning வெறà¯à®±à¯ திரையில௠எசà¯à®šà®°à®¿à®•à¯à®•ை காடà¯à®Ÿà¯ Automatically open the last service தானாக கடநà¯à®¤ சேவையை திறகà¯à®• Show the splash screen தெறிதà¯à®¤à®¾à®²à¯ திரையில௠காணà¯à®ªà®¿à®•à¯à®• Application Settings பயனà¯à®ªà®¾à®Ÿà¯ அமைபà¯à®ªà¯à®•ள௠Prompt to save before starting a new service ஒர௠பà¯à®¤à®¿à®¯ சேவையை தà¯à®µà®™à¯à®•à¯à®®à¯ à®®à¯à®©à¯ சேமிகà¯à®• கேடà¯à®•à¯à®®à¯ Automatically preview next item in service தானாக சேவை அடà¯à®¤à¯à®¤ உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®¤à¯à®¤à¯ˆ sec sec CCLI Details CCLI விவரம௠SongSelect username: SongSelect பயனரà¯à®ªà¯†à®¯à®°à¯: SongSelect password: SongSelect கடவà¯à®šà¯à®šà¯†à®¾à®²à¯à®²à¯ˆ: X X Y Y Height உயரம௠Width அகலம௠Check for updates to OpenLP மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯à®•ள௠OpenLP எனà¯à®±à¯ சோதிகà¯à®• Unblank display when adding new live item பà¯à®¤à®¿à®¯ உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ சேரà¯à®•à¯à®•à¯à®®à¯ போத௠வெறà¯à®±à¯ டிஸà¯à®ªà¯à®³à¯‡ மீளமை செய௠Timed slide interval: நேரம௠மà¯à®Ÿà®¿à®¨à¯à®¤à¯à®µà®¿à®Ÿà¯à®Ÿà®¤à¯ ஸà¯à®²à¯ˆà®Ÿà¯ இடைவெளியிலà¯: Background Audio பினà¯à®©à®£à®¿ இசை Start background audio paused தொடஙà¯à®•௠பினà¯à®©à®£à®¿ ஆடியோ இடைநிறà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®®à¯ Service Item Slide Limits சேவையை பொரà¯à®³à¯ படவிலà¯à®²à¯ˆ எலà¯à®²à¯ˆà®•ள௠Override display position: நிலையை காடà¯à®Ÿ பà¯à®±à®•à¯à®•ணிகà¯à®•: Repeat track list டிராக௠படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ மீணà¯à®Ÿà¯à®®à¯ போடà¯à®Ÿà¯ Behavior of next/previous on the last/first slide: அடà¯à®¤à¯à®¤ / à®®à¯à®¨à¯à®¤à¯ˆà®¯ கடைசி / à®®à¯à®¤à®²à¯ ஸà¯à®²à¯ˆà®Ÿà¯ நடதà¯à®¤à¯ˆ: &Remain on Slide &படவிலà¯à®²à¯ˆ இரà¯à®•à¯à®•à¯à®®à¯ &Wrap around &சà¯à®±à¯à®±à®¿ வளைதà¯à®¤à¯à®•à¯à®•ொளà¯à®•ினà¯à®±à®© &Move to next/previous service item &à®®à¯à®¨à¯à®¤à¯ˆà®¯ / அடà¯à®¤à¯à®¤ சேவை உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ வைகà¯à®• OpenLP.LanguageManager Language மொழி Please restart OpenLP to use your new language setting. உஙà¯à®•ள௠பà¯à®¤à®¿à®¯ மொழி அமைபà¯à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ OpenLP மறà¯à®¤à¯†à®¾à®Ÿà®•à¯à®•ம௠செயà¯à®•. OpenLP.MainDisplay OpenLP Display OpenLP காடà¯à®šà®¿ OpenLP.MainWindow &File &கோபà¯à®ªà¯ &Import &இறகà¯à®•à¯à®®à®¤à®¿ &Export &à®à®±à¯à®±à¯à®®à®¤à®¿ &View &பாரà¯à®•à¯à®• M&ode ப&யனà¯à®®à¯à®±à¯ˆ &Tools &கரà¯à®µà®¿à®•ள௠&Settings &அமைபà¯à®ªà¯à®•ள௠&Language &மொழி &Help &உதவி Service Manager சேவையை மேலாளர௠Theme Manager தீம௠மேலாளர௠Open an existing service. à®à®±à¯à®•னவே சேவை திறகà¯à®•. Save the current service to disk. வடà¯à®Ÿà¯ தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ சேவை சேமி. Save Service As சேவையை இவà¯à®µà®¾à®±à¯ சேமி Save the current service under a new name. ஒர௠பà¯à®¤à®¿à®¯ பெயரின௠கீழ௠நடபà¯à®ªà¯ சேவை சேமி. E&xit வெ&ளியேற Quit OpenLP OpenLP à®®à¯à®Ÿà®¿ &Theme &தீம௠&Configure OpenLP... &OpenLP கடà¯à®Ÿà®®à¯ˆà®•à¯à®• ... &Media Manager &ஊடக மேலாளர௠Toggle Media Manager நிலைமாறà¯à®±à¯ ஊடக மேலாளர௠Toggle the visibility of the media manager. ஊடக மேலாளர௠தெரிவà¯à®¨à®¿à®²à¯ˆà®¯à¯ˆ மாறà¯à®µà®¤à®±à¯à®•à¯. &Theme Manager &தீம௠மேலாளர௠Toggle Theme Manager நிலைமாறà¯à®±à¯ கரà¯à®¤à¯à®¤à¯ மேலாளர௠Toggle the visibility of the theme manager. தீம௠மேலாளர௠தெரிவà¯à®¨à®¿à®²à¯ˆà®¯à¯ˆ மாறà¯à®µà®¤à®±à¯à®•à¯. &Service Manager &சேவையை மேலாளர௠Toggle Service Manager நிலைமாறà¯à®±à¯ சேவையை மேலாளர௠Toggle the visibility of the service manager. சேவையை மேலாளர௠தெரிவà¯à®¨à®¿à®²à¯ˆà®¯à¯ˆ மாறà¯à®µà®¤à®±à¯à®•à¯. &Preview Panel &à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ பலகம௠Toggle Preview Panel நிலைமாறà¯à®±à¯ à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯ கà¯à®´à¯ Toggle the visibility of the preview panel. à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ கà¯à®´à¯à®µà®¿à®©à¯ தனà¯à®®à¯ˆ மாறà¯à®µà®¤à®±à¯à®•à¯. &Live Panel &தறà¯à®šà®®à®¯à®®à¯ பலகம௠Toggle Live Panel நிலைமாறà¯à®±à¯ தறà¯à®šà®®à®¯à®®à¯ பலகம௠Toggle the visibility of the live panel. நேரடி கà¯à®´à¯à®µà®¿à®©à¯ தனà¯à®®à¯ˆ மாறà¯à®µà®¤à®±à¯à®•à¯. List the Plugins Plugin காணà¯à®ªà®¿ &User Guide &பயனர௠வழிகாடà¯à®Ÿà®¿ &About &பறà¯à®±à®¿ More information about OpenLP OpenLP பறà¯à®±à®¿ மேலà¯à®®à¯ தகவல &Online Help &இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ உதவி &Web Site &இணà¯à®Ÿà®°à¯à®¨à¯†à®Ÿà¯ பகà¯à®•ம௠Use the system language, if available. கிடைகà¯à®•à¯à®®à¯ இரà¯à®¨à¯à®¤à®¾à®²à¯, கணினி மொழி பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. Set the interface language to %s இடைமà¯à®• மொழி அமைதà¯à®¤à®²à¯ இடம௠%s Add &Tool... சேரà¯à®•à¯à®•லாம௠&கரà¯à®µà®¿ ... Add an application to the list of tools. கரà¯à®µà®¿à®•ள௠படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ ஒர௠பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ˆ சேரà¯à®•à¯à®•. &Default &தவறà¯à®¤à®²à¯ Set the view mode back to the default. மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ காடà¯à®šà®¿ பயனà¯à®®à¯à®±à¯ˆ அமைதà¯à®¤à®²à¯. &Setup &அமைபà¯à®ªà¯ à®®à¯à®±à¯ˆ Set the view mode to Setup. அமைபà¯à®ªà®¤à¯ காடà¯à®šà®¿ பயனà¯à®®à¯à®±à¯ˆ அமைதà¯à®¤à®²à¯. &Live &தறà¯à®šà®®à®¯à®®à¯ Set the view mode to Live. காடà¯à®šà®¿ à®®à¯à®±à¯ˆà®¯à®¿à®²à¯ அமைகà¯à®•பà¯à®ªà®Ÿ தறà¯à®šà®®à®¯à®®à¯ Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. பதிபà¯à®ªà¯ˆ %s OpenLP இபà¯à®ªà¯‡à®¾à®¤à¯ பதிவிறகà¯à®• கிடைகà¯à®•à¯à®®à¯ எனà¯à®± (நீஙà¯à®•ள௠தறà¯à®šà®®à®¯à®®à¯ பதிபà¯à®ªà®¿à®²à¯ இயஙà¯à®•à¯à®®à¯%s). நீஙà¯à®•ள௠http://openlp.org/ சமீபதà¯à®¤à®¿à®¯ பதிபà¯à®ªà¯ˆ பதிவிறகà¯à®•ம௠செயà¯à®¤à¯ கொளà¯à®³à®²à®¾à®®à¯. OpenLP Version Updated OpenLP பதிபà¯à®ªà¯ பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯ OpenLP Main Display Blanked OpenLP à®®à¯à®•à¯à®•ிய காடà¯à®šà®¿ வெறà¯à®±à®¾à®• The Main Display has been blanked out à®®à¯à®•à¯à®•ிய காடà¯à®šà®¿ அவà¯à®Ÿà¯ வெறà¯à®±à®¾à®• Default Theme: %s இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ தீமà¯: %s English Please add the name of your language here ஆஙà¯à®•ிலம௠Configure &Shortcuts... உளà¯à®³à®®à¯ˆà®•à¯à®•வà¯à®®à¯ &கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿à®•ளை... Open &Data Folder... திறநà¯à®¤ &தரவ௠அடைவà¯... Open the folder where songs, bibles and other data resides. இசை, பைபிள௠மறà¯à®±à¯à®®à¯ பிற தரவ௠வாழà¯à®•ிறத௠கோபà¯à®ªà¯à®±à¯ˆà®¯à¯ˆ திறகà¯à®•. &Autodetect &Autodetect Update Theme Images தீம௠படஙà¯à®•ள௠பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®• Update the preview images for all themes. அனைதà¯à®¤à¯ கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯à®•ள௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ படஙà¯à®•ளை மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤. Print the current service. தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ சேவையை அசà¯à®šà®¿à®Ÿà¯à®Ÿà¯. L&ock Panels பலகஙà¯à®•ள௠பாரà¯&à®™à¯à®•ள௠Prevent the panels being moved. நகரà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®•ிறத௠பேனலà¯à®•ள௠தடà¯à®•à¯à®•. Re-run First Time Wizard மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ செயà¯à®¯ Re-run the First Time Wizard, importing songs, Bibles and themes. மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ செயà¯à®¯, இசை, விவிலியஙà¯à®•ளà¯à®®à¯ மறà¯à®±à¯à®®à¯ தீமà¯à®•ளை இறகà¯à®•à¯à®®à®¤à®¿. Re-run First Time Wizard? மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®¤à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ செயà¯à®µà®¤à¯? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. நீஙà¯à®•ள௠மà¯à®¤à®²à®¿à®²à¯ நேரம௠விசாரà¯à®Ÿà¯ மீணà¯à®Ÿà¯à®®à¯ இயகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? மீணà¯à®Ÿà¯à®®à¯ இயஙà¯à®•à¯à®®à¯ இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ உஙà¯à®•ள௠தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ OpenLP கடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯ மாறà¯à®±à®™à¯à®•ள௠மறà¯à®±à¯à®®à¯ சாதà¯à®¤à®¿à®¯à®®à®¾à®© à®à®±à¯à®•னவே இசை படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ இசை சேரà¯à®•à¯à®•, உஙà¯à®•ள௠இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ தீம௠மாறà¯à®±à®²à®¾à®®à¯. Clear List Clear List of recent files தெளிவான படà¯à®Ÿà®¿à®¯à®²à¯ Clear the list of recent files. சமீபதà¯à®¤à®¿à®¯ கோபà¯à®ªà¯à®•ளை அழிகà¯à®•வà¯à®®à¯. Configure &Formatting Tags... உளà¯à®³à®®à¯ˆà®•à¯à®•வà¯à®®à¯ &நீகà¯à®•௠Tags... Export OpenLP settings to a specified *.config file ஒர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ வகையில௠OpenLP à®à®±à¯à®±à¯à®®à®¤à®¿ அமைபà¯à®ªà¯à®•ள௠*.config file Settings அமைபà¯à®ªà¯à®•ள௠Import OpenLP settings from a specified *.config file previously exported on this or another machine ஒர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ இரà¯à®¨à¯à®¤à¯ OpenLP இறகà¯à®•à¯à®®à®¤à®¿ அமைபà¯à®ªà¯à®•ள௠*.config file தாகà¯à®•ல௠மà¯à®©à¯à®©à®°à¯ இநà¯à®¤ அலà¯à®²à®¤à¯ மறà¯à®±à¯†à®¾à®°à¯ கணினியில௠à®à®±à¯à®±à¯à®®à®¤à®¿ Import settings? அமைபà¯à®ªà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®µà®¤à¯? Open File திற கோபà¯à®ªà¯ OpenLP Export Settings Files (*.conf) OpenLP à®à®±à¯à®±à¯à®®à®¤à®¿ அமைபà¯à®ªà¯à®•ள௠கோபà¯à®ªà¯à®•ள௠(*.conf) Import settings அமைபà¯à®ªà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP இபà¯à®ªà¯‡à®¾à®¤à¯ மூடிவிடà¯à®®à¯. இறகà¯à®•à¯à®®à®¤à®¿ அமைபà¯à®ªà¯à®•ளை நீஙà¯à®•ள௠OpenLP தொடஙà¯à®• அடà¯à®¤à¯à®¤ à®®à¯à®±à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®ªà¯à®ªà®Ÿà¯à®®à¯. Export Settings File அமைபà¯à®ªà¯à®•ள௠கோபà¯à®ªà¯ à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®• OpenLP Export Settings File (*.conf) OpenLP à®à®±à¯à®±à¯à®®à®¤à®¿ அமைபà¯à®ªà¯à®•ள௠கோபà¯à®ª (*.conf) New Data Directory Error பà¯à®¤à®¿à®¯ தகவலà¯à®•ள௠டைரகà¯à®Ÿà®°à®¿ பிழை Copying OpenLP data to new data directory location - %s - Please wait for copy to finish பà¯à®¤à®¿à®¯ தரவ௠அடைவ௠இடதà¯à®¤à®¿à®±à¯à®•௠OpenLP தரவ௠நகல௠- %s - நகல௠மà¯à®Ÿà®¿à®•à¯à®• காதà¯à®¤à®¿à®°à¯à®•à¯à®•வà¯à®® OpenLP Data directory copy failed %s OpenLP தரவ௠அடைவ௠நகல௠தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¨à¯à®¤à®¤à¯ %s General பொதà¯à®µà®¾à®© Library Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error தரவà¯à®¤à¯à®¤à®³ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s à®à®±à¯à®±à®¾à®®à®²à¯ தரவà¯à®¤à¯à®¤à®³ OpenLP மிகவà¯à®®à¯ சமீபதà¯à®¤à®¿à®¯ பதிபà¯à®ªà¯ ல௠உரà¯à®µà®¾à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯. தரவà¯à®¤à¯à®¤à®³ பதிபà¯à®ªà¯ %d, OpenLP பதிபà¯à®ªà¯ எதிரà¯à®ªà®¾à®°à¯à®•à¯à®•ிறத௠போத௠%d. The database will not be loaded. Database: %s OpenLP cannot load your database. Database: %s OpenLP உஙà¯à®•ள௠தரவà¯à®¤à¯à®¤à®³ தரவà¯à®¤à¯à®¤à®³à®®à¯ à®à®±à¯à®± à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯: %s OpenLP.MediaManagerItem No Items Selected ஒர௠உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ &Add to selected Service Item &தேரà¯à®µà¯ சேவைகள௠உரà¯à®ªà¯à®ªà®Ÿà®¿ சேரà¯à®•à¯à®•வà¯à®®à¯ You must select one or more items to preview. நீஙà¯à®•ள௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. You must select one or more items to send live. நீஙà¯à®•ள௠தறà¯à®šà®®à®¯à®®à¯ அனà¯à®ªà¯à®ª ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. You must select one or more items. நீஙà¯à®•ள௠ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. You must select an existing service item to add to. நீஙà¯à®•ள௠சேரà¯à®•à¯à®• à®à®±à¯à®•னவே சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. Invalid Service Item தவறான சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿ You must select a %s service item. நீஙà¯à®•ள௠ஒர௠%s சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. You must select one or more items to add. நீஙà¯à®•ள௠சேரà¯à®•à¯à®• ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. No Search Results தேடல௠மà¯à®Ÿà®¿à®µà¯à®•ள௠இலà¯à®²à¯ˆ Invalid File Type தவறான கோபà¯à®ªà¯ வகை Invalid File %s. Suffix not supported தவறான கோபà¯à®ªà¯ %s. பினà¯à®©à¯†à®¾à®Ÿà¯à®Ÿà¯ ஆதரவ௠&Clone &கà¯à®³à¯‡à®¾à®©à¯ செயà¯à®µà®¤à¯ Duplicate files were found on import and were ignored. நகல௠கோபà¯à®ªà¯à®•ளை இறகà¯à®•à¯à®®à®¤à®¿ காணபà¯à®ªà®Ÿà¯à®®à¯ மறà¯à®±à¯à®®à¯ பà¯à®±à®•à¯à®•ணிகà¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®©à®°à¯. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tag இலà¯à®²à¯ˆ. <verse> tag is missing. <verse> tag இலà¯à®²à¯ˆ. OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Available Media Players கிடைகà¯à®•à¯à®® மீடியா பிளேயர௠Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (இலà¯à®²à¯ˆ) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details Plugin விவரம௠Status: இபà¯à®ªà¯‡à®¾à®¤à¯ தகà¯à®¤à®¿: Active செயலில௠Inactive ஜடமான %s (Inactive) %s (ஜடமான) %s (Active) %s (செயலிலà¯) %s (Disabled) %s (à®®à¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯) Manage Plugins OpenLP.PrintServiceDialog Fit Page சரியா பகà¯à®• செயà¯à®µà®¤à¯ Fit Width சரியா அகலம௠செயà¯à®µà®¤à¯ OpenLP.PrintServiceForm Options விரà¯à®ªà¯à®ªà®™à¯à®•ள௠Copy நகலெடà¯à®•à¯à®• Copy as HTML நகலெடà¯à®•à¯à®• HTML Zoom In பெரிதாகà¯à®•௠Zoom Out சிறிதாகà¯à®•வோ Zoom Original இதறà¯à®•௠மà¯à®©à¯à®©à®°à¯ பெரிதாகà¯à®• Other Options மறà¯à®± விரà¯à®ªà¯à®ªà®™à¯à®•ள௠Include slide text if available ஸà¯à®²à¯ˆà®Ÿà¯ உரை ஆகியவை கிடைகà¯à®•à¯à®®à¯ எனà¯à®±à®¾à®²à¯ Include service item notes சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠ஆகியவை அடஙà¯à®•à¯à®®à¯ Include play length of media items ஊடக பொரà¯à®Ÿà¯à®•ளை நீளம௠விளையாட அடஙà¯à®•à¯à®®à¯ Add page break before each text item ஒவà¯à®µà¯†à®¾à®°à¯ உரை உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ à®®à¯à®©à¯ பகà¯à®•ம௠மà¯à®±à®¿à®¤à¯à®¤à¯ சேரà¯à®•à¯à®•லாம௠Service Sheet சேவையை Sheet Print அசà¯à®šà®¿à®Ÿà¯à®Ÿà¯ Title: தலைபà¯à®ªà¯: Custom Footer Text: தனிபயன௠அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯ உரை: OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠Database Error தரவà¯à®¤à¯à®¤à®³ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port தà¯à®±à¯ˆà®®à¯à®•ம௠Notes கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other வேற௠OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen திரை primary à®®à¯à®¤à®©à¯à®®à¯ˆà®¯à®¾à®© OpenLP.ServiceItem <strong>Start</strong>: %s <strong>ஆரமà¯à®ªà®¿</strong>: %s <strong>Length</strong>: %s <strong>நீளமà¯</strong>: %s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item சேவையை பொரà¯à®³à¯ மறà¯à®µà®°à®¿à®šà¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯ OpenLP.ServiceManager Move to &top &மேலே போடà¯à®Ÿà¯ Move item to the top of the service. உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ சேவையை மேல௠போடà¯à®Ÿà¯. Move &up போடà¯à®Ÿ &மேல௠Move item up one position in the service. உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ சேவையை ஒர௠இடதà¯à®¤à®¿à®²à¯ மேல௠போடà¯à®Ÿà¯. Move &down போடà¯à®Ÿ &கீழே Move item down one position in the service. உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ சேவையை ஒர௠இடதà¯à®¤à®¿à®²à¯ கீழே போடà¯à®Ÿà¯. Move to &bottom போடà¯à®Ÿ &கீழே Move item to the end of the service. உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ சேவையை à®®à¯à®Ÿà®¿à®µà®¿à®²à¯ போடà¯à®Ÿà¯. &Delete From Service &சேவைகள௠நீகà¯à®•௠Delete the selected item from the service. சேவையை இரà¯à®¨à¯à®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ நீகà¯à®•à¯. &Add New Item &பà¯à®¤à®¿à®¯ சேர௠&Add to Selected Item &தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பொரà¯à®³à¯ சேரà¯à®•à¯à®•வà¯à®®à¯ &Edit Item &உரà¯à®ªà¯à®ªà®Ÿà®¿ தொக௠செயà¯à®µà®¤à¯ &Reorder Item &உரà¯à®ªà¯à®ªà®Ÿà®¿ மறà¯à®µà®°à®¿à®šà¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯ &Notes &கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠&Change Item Theme &உரà¯à®ªà¯à®ªà®Ÿà®¿ தீம௠மாறà¯à®± File is not a valid service. கோபà¯à®ªà¯ ஒர௠செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®¾à®•à¯à®®à¯ சேவையை அலà¯à®². Missing Display Handler காடà¯à®šà®¿ ஹேணà¯à®Ÿà¯à®²à®°à¯ காணவிலà¯à®²à¯ˆ Your item cannot be displayed as there is no handler to display it அதை காணà¯à®ªà®¿à®•à¯à®• இலà¯à®²à¯ˆ கையாளà¯à®¤à®²à¯ உளà¯à®³à®¤à¯ போல௠உஙà¯à®•ள௠உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ காணà¯à®ªà®¿à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ Your item cannot be displayed as the plugin required to display it is missing or inactive உஙà¯à®•ள௠உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ அதை காணவிலà¯à®²à¯ˆ அலà¯à®²à®¤à¯ செயலறà¯à®±à¯ காடà¯à®Ÿ வேணà¯à®Ÿà¯à®®à¯ நீடà¯à®šà®¿à®¯à®¾à®• காணà¯à®ªà®¿à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ &Expand all &அனைதà¯à®¤à¯ விரிவாகà¯à®• Expand all the service items. அனைதà¯à®¤à¯ விரிவாகà¯à®• சேவையை பொரà¯à®Ÿà¯à®•ளà¯. &Collapse all &அனைதà¯à®¤à¯ˆà®¯à¯à®®à¯ சà¯à®°à¯à®•à¯à®•௠Collapse all the service items. அனைதà¯à®¤à¯ சேவையை பொரà¯à®Ÿà¯à®•ள௠உடைநà¯à®¤à¯. Open File திற கோபà¯à®ªà¯ Moves the selection down the window. சாளரதà¯à®¤à®¿à®©à¯ கீழே தேரà¯à®µà¯ நகரà¯à®®à¯. Move up மேலே போக Moves the selection up the window. சாளரம௠மேலே தேரà¯à®µà¯ போக. Go Live தறà¯à®ªà¯‡à®¾à®¤à¯ போக Send the selected item to Live. தறà¯à®šà®®à®¯à®®à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ அனà¯à®ªà¯à®ª &Start Time &தொடஙà¯à®•௠நேரம௠Show &Preview காணà¯à®ªà®¿ &à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯ Modified Service மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿ சேவையை The current service has been modified. Would you like to save this service? தறà¯à®ªà¯‡à®¾à®¤à¯ˆà®¯ சேவை மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. இநà¯à®¤ சேவை சேமிகà¯à®• விரà¯à®®à¯à®ªà¯à®•ிறீரà¯à®•ளா? Custom Service Notes: தனிபயன௠சேவையை கà¯à®±à®¿à®ªà¯à®ªà¯à®•ளà¯: Notes: கà¯à®±à®¿à®ªà¯à®ªà¯à®•ளà¯: Playing time: தொடஙà¯à®•ி நேரமà¯: Untitled Service தலைபà¯à®ªà®¿à®Ÿà®¾à®¤ சேவையை File could not be opened because it is corrupt. இத௠ஊழல௠à®à®©à¯†à®©à®¿à®²à¯ கோபà¯à®ªà¯ திறகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. Empty File காலியாக கோபà¯à®ªà¯ This service file does not contain any data. இநà¯à®¤ சேவையை கோபà¯à®ªà®¿à®²à¯ தரவ௠à®à®¤à¯à®®à¯ இலà¯à®²à¯ˆ. Corrupt File ஊழல௠மிகà¯à®¨à¯à®¤ கோபà¯à®ªà¯ Load an existing service. à®à®±à¯à®•னவே சேவையை à®à®±à¯à®±. Save this service. இநà¯à®¤ சேவையை சேமி. Select a theme for the service. சேவையை ஒர௠தீம௠தேரà¯à®µà¯. Slide theme ஸà¯à®²à¯ˆà®Ÿà¯ தீம௠Notes கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள௠Edit பதிபà¯à®ªà®¿ Service copy only சேவையை நகல௠மடà¯à®Ÿà¯à®®à¯‡ Error Saving File பிழை சேமிபà¯à®ªà¯ கோபà¯à®ªà¯ There was an error saving your file. உஙà¯à®•ள௠கோபà¯à®ªà¯ˆ சேமிபà¯à®ªà®¤à®¿à®²à¯ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯. Service File(s) Missing சேவையை கோபà¯à®ªà¯ (களà¯) இலà¯à®²à¯ˆ &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. நொடிகளில௠ஸà¯à®²à¯ˆà®Ÿà¯à®•ள௠இடையே தாமதமà¯. Rename item title Title: தலைபà¯à®ªà¯: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes சேவையை உரà¯à®ªà¯à®ªà®Ÿà®¿ கà¯à®±à®¿à®ªà¯à®ªà¯à®•ள OpenLP.SettingsForm Configure OpenLP OpenLP உளà¯à®³à®®à¯ˆà®•à¯à®•வà¯à®®à¯ OpenLP.ShortcutListDialog Action செயல௠Shortcut கà¯à®±à¯à®•à¯à®•௠வழி Duplicate Shortcut கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿ நகல௠The shortcut "%s" is already assigned to another action, please use a different shortcut. கà¯à®±à¯à®•à¯à®•௠வழி "%s" à®à®±à¯à®•னவே மறà¯à®±à¯†à®¾à®°à¯ நடவடிகà¯à®•ை ஒதà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯, வேற௠கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà¯à®®à¯. Alternate மாறà¯à®ªà®Ÿà¯à®Ÿ Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. ஒர௠நடவடிகà¯à®•ை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à¯ à®®à¯à®±à¯ˆà®¯à¯‡, ஒர௠பà¯à®¤à®¿à®¯ à®®à¯à®¤à®©à¯à®®à¯ˆà®¯à®¾à®© அலà¯à®²à®¤à¯ மாறà¯à®±à¯ கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿ கைபà¯à®ªà®±à¯à®±à®¿ தொடஙà¯à®• பினà¯à®µà®°à¯à®®à¯ பொதà¯à®¤à®¾à®©à¯à®•ளில௠ஒனà¯à®±à¯ˆ கிளிகà¯. Default தவறà¯à®¤à®²à¯ Custom வழகà¯à®•ம௠Capture shortcut. கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿ பிடிகà¯à®•à¯à®®à¯. Restore the default shortcut of this action. இநà¯à®¤ நடவடிகà¯à®•ை à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿ மீடà¯à®•. Restore Default Shortcuts இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿à®•ள௠மீடà¯à®• Do you want to restore all shortcuts to their defaults? அவரà¯à®•ள௠இயலà¯à®ªà®¾à®• அனைதà¯à®¤à¯ கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿à®•ளை மீடà¯à®• வேணà¯à®Ÿà¯à®®à¯? Configure Shortcuts கà¯à®±à¯à®•à¯à®•à¯à®µà®´à®¿à®•ள௠உளà¯à®³à®®à¯ˆà®•à¯à®•வà¯à®®à¯ OpenLP.SlideController Hide மறைகà¯à®• Go To செலà¯à®²à¯à®®à®¿à®Ÿà®® Blank Screen வெறà¯à®®à¯ˆà®¯à®¾à®• திரை Blank to Theme தீம௠வெறà¯à®®à¯ˆà®¯à®¾à®© Show Desktop டெஸà¯à®•à¯à®Ÿà®¾à®ªà¯ காணà¯à®ªà®¿ Previous Service à®®à¯à®¨à¯à®¤à¯ˆà®¯ சேவையை Next Service அடà¯à®¤à¯à®¤ சேவையை Escape Item தபà¯à®ª உரà¯à®ªà¯à®ªà®Ÿà®¿ Move to previous. à®®à¯à®¨à¯à®¤à¯ˆà®¯ போக. Move to next. அடà¯à®¤à¯à®¤ போக. Play Slides ஸà¯à®²à¯ˆà®Ÿà¯à®•ளை போடà¯à®Ÿà¯ Delay between slides in seconds. நொடிகளில௠ஸà¯à®²à¯ˆà®Ÿà¯à®•ள௠இடையே தாமதமà¯. Move to live. தறà¯à®šà®®à®¯à®®à¯ போக Add to Service. சேவைகள௠சேரà¯à®•à¯à®• Edit and reload song preview. தொக௠மறà¯à®±à¯à®®à¯ பாடல௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ à®à®±à¯à®±à®µà¯à®®à¯. Start playing media. ஊடக போடà¯à®Ÿà¯ தொடஙà¯à®•à¯. Pause audio. இடைநிறà¯à®¤à¯à®¤à¯ ஆடியோ. Pause playing media. இடைநிறà¯à®¤à¯à®¤à¯ ஊடக போடà¯à®Ÿà¯. Stop playing media. ஊடக போடà¯à®Ÿà¯ நிறà¯à®¤à¯à®¤. Video position. வீடியோ நிலை. Audio Volume. ஆடியோ தொகà¯à®¤à®¿. Go to "Verse" "வசனமà¯" போக Go to "Chorus" "கோரஸà¯" போக Go to "Bridge" "Bridge" போக Go to "Pre-Chorus" "à®®à¯à®©à¯ கோரஸà¯" போக Go to "Intro" "இனà¯à®Ÿà¯à®°à¯‡à®¾" போக Go to "Ending" "à®®à¯à®Ÿà®¿à®µà¯" போக Go to "Other" "வேறà¯" போக Previous Slide à®®à¯à®¨à¯à®¤à¯ˆà®¯ படவிலà¯à®²à¯ˆ Next Slide அடà¯à®¤à¯à®¤ படவிலà¯à®²à¯ˆ Pause Audio இடைநிறà¯à®¤à¯à®¤à¯ ஆடியோ Background Audio பினà¯à®©à®£à®¿ இசை Go to next audio track. அடà¯à®¤à¯à®¤ ஆடியோ டிராக௠செனà¯à®±à¯. Tracks தடஙà¯à®•ள௠OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions எழà¯à®¤à¯à®¤à¯ சரிபாரà¯à®ªà¯à®ªà¯ பரிநà¯à®¤à¯à®°à¯ˆà®•ள Formatting Tags Tags அழிகà¯à®• Language: மொழி: OpenLP.StartTimeForm Theme Layout தீம௠தளவமைபà¯à®ªà¯ The blue box shows the main area. நீல பெடà¯à®Ÿà®¿ à®®à¯à®•à¯à®•ிய பகà¯à®¤à®¿ காடà¯à®Ÿà¯à®•ிறதà¯. The red box shows the footer. சிவபà¯à®ªà¯ பெடà¯à®Ÿà®¿à®¯à®¿à®²à¯ அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ காடà¯à®Ÿà¯à®•ிறதà¯. OpenLP.StartTime_form Item Start and Finish Time உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ நேரம௠தொடகà¯à®•ம௠மறà¯à®±à¯à®®à¯ நிறைவ௠Hours: மணிநேரமà¯: Minutes: நிமிடஙà¯à®•ளà¯: Seconds: விநாடிகளà¯: Start தொடஙà¯à®•௠Finish à®®à¯à®Ÿà®¿à®•à¯à®• Length நீளம௠Time Validation Error நேரம௠செலà¯à®²à®¤à¯à®¤à®•à¯à®•தாகà¯à®•à¯à®¤à®²à¯à®®à¯ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ Finish time is set after the end of the media item இறà¯à®¤à®¿ நேரதà¯à®¤à®¿à®²à¯ ஊடக உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ à®®à¯à®Ÿà®¿à®µà®¿à®²à¯ அமைகà¯à®•பà¯à®ªà®Ÿà¯à®•ிறத௠Start time is after the finish time of the media item தொடகà¯à®• நேரம௠ஊடக உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à®¿à®©à¯ பூசà¯à®šà¯ நேரம௠கழிதà¯à®¤à¯ தான௠OpenLP.ThemeForm (approximately %d lines per slide) (தோராயமாக %d ஸà¯à®²à¯ˆà®Ÿà¯ ஒவà¯à®µà¯†à®¾à®°à¯ வரிகளà¯à®®à¯) OpenLP.ThemeManager Create a new theme. ஒர௠பà¯à®¤à®¿à®¯ தீம௠உரà¯à®µà®¾à®•à¯à®•. Edit Theme தீம௠பதிபà¯à®ªà®¿ Edit a theme. ஒர௠தீம௠பதிபà¯à®ªà®¿ Delete Theme தீம௠நீகà¯à®•௠Delete a theme. ஒர௠தீம௠நீகà¯à®•à¯. Import Theme தீம௠இறகà¯à®•à¯à®®à®¤à®¿ Import a theme. ஒர௠தீம௠இறகà¯à®•à¯à®®à®¤à®¿. Export Theme தீம௠à®à®±à¯à®±à¯à®®à®¤à®¿ Export a theme. ஒர௠தீம௠à®à®±à¯à®±à¯à®®à®¤à®¿. &Edit Theme &தீம௠பதிபà¯à®ªà®¿ &Delete Theme &தீம௠நீகà¯à®•௠Set As &Global Default அமை &கà¯à®³à¯‡à®¾à®ªà®²à¯ இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ %s (default) %s (இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ) You must select a theme to edit. நீஙà¯à®•ள௠திரà¯à®¤à¯à®¤ ஒர௠தீம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. You are unable to delete the default theme. நீஙà¯à®•ள௠மà¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ தீம௠நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. You have not selected a theme. நீஙà¯à®•ள௠ஒர௠தீம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•விலà¯à®²à¯ˆ. Save Theme - (%s) தீம௠சேமிகà¯à®• - (%s) Theme Exported தீம௠à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿ Your theme has been successfully exported. உஙà¯à®•ள௠தீம௠வெறà¯à®±à®¿à®•ரமாக à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯. Theme Export Failed தீம௠à®à®±à¯à®±à¯à®®à®¤à®¿ தோலà¯à®µà®¿à®¯à¯à®±à¯à®±à®¤à¯ Select Theme Import File தீம௠இறகà¯à®•à¯à®®à®¤à®¿ கோபà¯à®ªà¯ தேரà¯à®µà¯ File is not a valid theme. கோபà¯à®ªà¯ சரியான தீம௠அலà¯à®². &Copy Theme &தீம௠நகல௠&Rename Theme &தீம௠மறà¯à®ªà¯†à®¯à®°à®¿à®Ÿà¯ &Export Theme &தீம௠à®à®±à¯à®±à¯à®®à®¤à®¿ You must select a theme to rename. நீஙà¯à®•ள௠மறà¯à®ªà¯†à®¯à®°à®¿à®Ÿ ஒர௠தீம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. Rename Confirmation உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ மறà¯à®ªà¯†à®¯à®°à®¿à®Ÿà¯ Rename %s theme? மறà¯à®ªà¯†à®¯à®°à®¿à®Ÿà¯ %s தீமà¯? You must select a theme to delete. நீஙà¯à®•ள௠நீகà¯à®• ஒர௠தீம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. Delete Confirmation உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ நீகà¯à®•௠Delete %s theme? தீம௠நீகà¯à®• %s வேணà¯à®Ÿà¯à®®à®¾? Validation Error செலà¯à®²à®¤à¯à®¤à®•à¯à®•தாகà¯à®•à¯à®¤à®²à¯à®®à¯ பிழை à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à¯ A theme with this name already exists. இநà¯à®¤ பெயர௠ஒர௠தீம௠à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. Copy of %s Copy of <theme name> நகல௠%s Theme Already Exists தீம௠à®à®±à¯à®•ெனவே உளà¯à®³à®¤à¯ Theme %s already exists. Do you want to replace it? தீம௠%s à®®à¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. நீஙà¯à®•ள௠அதை மாறà¯à®± விரà¯à®®à¯à®ªà¯à®•ிறீரà¯à®•ளா? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard தீம௠வழிகாடà¯à®Ÿà®¿ Welcome to the Theme Wizard தீம௠வழிகாடà¯à®Ÿà®¿ வரவேறà¯à®•ிறோம Set Up Background பினà¯à®©à®£à®¿ அமை Set up your theme's background according to the parameters below. கீழே அளவà¯à®°à¯à®•à¯à®•ள௠à®à®±à¯à®ª உஙà¯à®•ள௠தீம௠பினà¯à®©à®£à®¿ அமைகà¯à®•. Background type: பினà¯à®©à®£à®¿ வகை: Gradient சரிவ௠Gradient: சாயà¯à®µà¯: Horizontal மடà¯à®Ÿà®®à®¾à®© Vertical செஙà¯à®•à¯à®¤à¯à®¤à¯ Circular சà¯à®±à¯à®±à®±à®¿à®•à¯à®•ை Top Left - Bottom Right மேல௠இடத௠- கீழே வலத௠Bottom Left - Top Right கீழே இடத௠- மேலà¯à®µà®²à®¤à¯ Main Area Font Details à®®à¯à®•à¯à®•ிய பகà¯à®¤à®¿ எழà¯à®¤à¯à®¤à¯à®°à¯ விவரம௠Define the font and display characteristics for the Display text காடà¯à®šà®¿ உரை எழà¯à®¤à¯à®¤à¯à®°à¯ மறà¯à®±à¯à®®à¯ காடà¯à®šà®¿ பணà¯à®ªà¯à®•ள௠வரையறà¯à®•à¯à®•ினà¯à®±à®© Font: எழà¯à®¤à¯à®¤à¯à®°à¯: Size: அளவà¯: Line Spacing: வரி இடைவெளி: &Outline: &வெளிகà¯à®•ோடà¯: &Shadow: &நிழலà¯: Bold போலà¯à®Ÿà¯ Italic (அசà¯à®šà¯†à®´à¯à®¤à¯à®¤à¯à®•à¯à®•ள௠வலபà¯à®ªà®•à¯à®•à®®à¯) சாயà¯à®¨à¯à®¤à¯à®³à¯à®³ Footer Area Font Details அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯ பகà¯à®¤à®¿ எழà¯à®¤à¯à®¤à¯à®°à¯ விவரம௠Define the font and display characteristics for the Footer text அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯ உரை எழà¯à®¤à¯à®¤à¯à®°à¯ மறà¯à®±à¯à®®à¯ காடà¯à®šà®¿ பணà¯à®ªà¯à®•ள௠வரையறà¯à®•à¯à®•ினà¯à®±à®© Text Formatting Details உரை வடிவமைதà¯à®¤à®²à¯ விவரம௠Allows additional display formatting information to be defined கூடà¯à®¤à®²à¯ காடà¯à®šà®¿ வடிவமைபà¯à®ªà¯ˆ தகவல௠வரையறà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ அனà¯à®®à®¤à®¿à®•à¯à®•ிறத௠Horizontal Align: சீரமை கிடைமடà¯à®Ÿ: Left இடத௠Right வலத௠Center மையம௠Output Area Locations வெளியீட௠பகà¯à®¤à®¿ இரà¯à®ªà¯à®ªà®¿à®Ÿà®™à¯à®•ள௠&Main Area &à®®à¯à®•à¯à®•ிய பரபà¯à®ªà¯ &Use default location &இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ இரà¯à®ªà¯à®ªà®¿à®Ÿà®®à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ X position: X நிலை: px px Y position: Y நிலை: Width: அகலமà¯: Height: உயரமà¯: Use default location இயலà¯à®ªà¯à®¨à®¿à®²à¯ˆ இரà¯à®ªà¯à®ªà®¿à®Ÿà®®à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ Theme name: தீம௠பெயரà¯: Edit Theme - %s தீம௠திரà¯à®¤à¯à®¤à¯ - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ உஙà¯à®•ள௠கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯à®•ள௠உரà¯à®µà®¾à®•à¯à®• மறà¯à®±à¯à®®à¯ திரà¯à®¤à¯à®¤ உதவà¯à®®à¯. உஙà¯à®•ள௠பினà¯à®©à®£à®¿ அமைகà¯à®• செயலாகà¯à®•தà¯à®¤à¯ˆ தொடஙà¯à®•, கீழே உளà¯à®³ அடà¯à®¤à¯à®¤ பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Transitions: டà¯à®°à®¾à®©à¯à®šà®¿à®·à®©à¯à®¸à¯: &Footer Area அடிகà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯ பரபà¯à®ªà¯ Starting color: வணà¯à®£ தொடஙà¯à®•ி: Ending color: வணà¯à®£ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯: Background color: பினà¯à®©à®£à®¿ நிறமà¯: Justify நியாயபà¯à®ªà®Ÿà¯à®¤à¯à®¤ Layout Preview தளவமைபà¯à®ªà¯ à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®®à¯ Transparent ஒளி பà¯à®•à¯à®®à¯ Preview and Save மாதிரிகà¯à®•ாடà¯à®šà®¿à®¯à¯ˆ சேமிகà¯à®•வà¯à®®à¯ Preview the theme and save it. தீம௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®¤à¯à®¤à¯ˆ மறà¯à®±à¯à®®à¯ அதை காபà¯à®ªà®¾à®±à¯à®±. Background Image Empty வெறà¯à®±à¯ பினà¯à®©à®£à®¿ படம௠Select Image பட தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ Theme Name Missing தீம௠பெயர௠காணவிலà¯à®²à¯ˆ There is no name for this theme. Please enter one. இநà¯à®¤ தீம௠எநà¯à®¤ பெயர௠உளà¯à®³à®¤à¯. ஒர௠உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯. Theme Name Invalid தீம௠பெயர௠பிழை Invalid theme name. Please enter one. தவறான தீம௠பெயரà¯. ஒர௠உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯. Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. நீஙà¯à®•ள௠ஒர௠பினà¯à®©à®£à®¿ படதà¯à®¤à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•விலà¯à®²à¯ˆ. தொடரà¯à®µà®¤à®±à¯à®•௠மà¯à®©à¯, ஒர௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. OpenLP.ThemesTab Global Theme கà¯à®³à¯‡à®¾à®ªà®²à¯ தீம௠Theme Level தீம௠மடà¯à®Ÿà®®à¯ S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. தரவà¯à®¤à¯à®¤à®³ ஒவà¯à®µà¯†à®¾à®°à¯ பாடல௠இரà¯à®¨à¯à®¤à¯ தீம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. ஒர௠பாடல௠அத௠தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ ஒர௠தீம௠இலà¯à®²à¯ˆ எனà¯à®±à®¾à®²à¯, பின௠சேவையை கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. சேவையை ஒர௠தீம௠இலà¯à®²à¯ˆ எனà¯à®±à®¾à®²à¯, உலக தீம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. &Service Level &சேவைகள௠மடà¯à®Ÿà®®à¯ Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. தனிபà¯à®ªà®Ÿà¯à®Ÿ இசை 'கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯à®•ள௠எநà¯à®¤ overriding, சேவையில௠இரà¯à®¨à¯à®¤à¯ தீம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. சேவையை ஒர௠தீம௠இலà¯à®²à¯ˆ எனà¯à®±à®¾à®²à¯, உலக தீம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. &Global Level &கà¯à®³à¯‡à®¾à®ªà®²à¯ மடà¯à®Ÿà®®à¯ Use the global theme, overriding any themes associated with either the service or the songs. சேவையை அலà¯à®²à®¤à¯ இசை அலà¯à®²à®¤à¯ தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ எநà¯à®¤ கரà¯à®ªà¯à®ªà¯†à®¾à®°à¯à®³à¯à®•ள௠overriding, உலக தீம௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤. Themes தீமà¯à®•ள௠Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ உரà¯à®ªà¯à®ªà®Ÿà®¿ நீகà¯à®•வா. Move selection up one position. ஒர௠நிலை வரை தேரà¯à®µà¯ போடà¯. Move selection down one position. ஒர௠நிலையில௠கீழே தேரà¯à®µà¯ போட. &Vertical Align: &செஙà¯à®•à¯à®¤à¯à®¤à¯ சீரமை: Finished import. இறகà¯à®•à¯à®®à®¤à®¿ à®®à¯à®Ÿà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ. Format: வடிவமà¯: Importing இறகà¯à®•à¯à®®à®¤à®¿ Importing "%s"... இறகà¯à®•à¯à®®à®¤à®¿ "%s"... Select Import Source இறகà¯à®•à¯à®®à®¤à®¿ மூல தேரà¯à®µà¯ Select the import format and the location to import from. இறகà¯à®•à¯à®®à®¤à®¿ வடிவம௠மறà¯à®±à¯à®®à¯ இரà¯à®¨à¯à®¤à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ இடம௠தேரà¯à®µà¯. Open %s File கோபà¯à®ªà¯ %s திற %p% %p% Ready. à®®à¯à®Ÿà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ Starting import... இறகà¯à®•à¯à®®à®¤à®¿ தொடஙà¯à®•à¯à®®à¯... You need to specify at least one %s file to import from. A file type e.g. OpenSong நீஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ கà¯à®±à¯ˆà®¨à¯à®¤à®¤à¯ ஒர௠%s கோபà¯à®ªà¯ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. Welcome to the Bible Import Wizard வேதாகமம௠இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿ வரவேறà¯à®•ிறோம௠Welcome to the Song Export Wizard பாடல௠à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®¯à¯à®®à¯ விசாரà¯à®Ÿà¯ வரவேறà¯à®•ிறோம௠Welcome to the Song Import Wizard பாடல௠இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿ வரவேறà¯à®•ிறோம௠Author Singular நூலாசிரியர௠Authors Plural நூலாசிரியரà¯à®•ள௠© Copyright symbol. © Song Maintenance பாடல௠பராமரிபà¯à®ªà¯ Topic Singular தலைபà¯à®ªà¯ Topics Plural தலைபà¯à®ªà¯à®•ள௠Title and/or verses not found தலைபà¯à®ªà¯ மறà¯à®±à¯à®®à¯ / அலà¯à®²à®¤à¯ வசனஙà¯à®•ள௠இலà¯à®²à¯ˆ XML syntax error XML syntax பிழை Welcome to the Bible Upgrade Wizard வேதாகமம௠மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯ வழிகாடà¯à®Ÿà®¿ வரவேறà¯à®•ிறோம௠Open %s Folder கோபà¯à®ªà¯à®±à¯ˆ %s திற You need to specify one %s file to import from. A file type e.g. OpenSong நீஙà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ ஒர௠%s கள௠கோபà¯à®ªà¯ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. You need to specify one %s folder to import from. A song format e.g. PowerSong நீஙà¯à®•ள௠ஒர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯ %s இரà¯à®¨à¯à®¤à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ அடைவà¯à®•à¯à®•à¯. Importing Songs இறகà¯à®•à¯à®®à®¤à®¿ பாடலà¯à®•ள௠Welcome to the Duplicate Song Removal Wizard Written by Author Unknown About பறà¯à®±à®¿ &Add &சேர௠Add group Advanced à®®à¯à®©à¯à®©à¯‡à®±à®¿à®¯ All Files அனைதà¯à®¤à¯ கோபà¯à®ªà¯à®•ள௠Automatic தானாக Background Color பினà¯à®ªà¯à®² நிறம௠Bottom கீழே Browse... உலவ... Cancel ரதà¯à®¤à¯ CCLI number: CCLI எணà¯à®£à¯ˆ: Create a new service. ஒர௠பà¯à®¤à®¿à®¯ சேவையை உரà¯à®µà®¾à®•à¯à®•. Confirm Delete நீகà¯à®•௠உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤ Continuous தொடரà¯à®¨à¯à®¤ Default தவறà¯à®¤à®²à¯ Default Color: இயலà¯à®ªà®¾à®© நிறமà¯: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. சேவையை %Y-%m-%d %H-%M &Delete &நீகà¯à®•வா Display style: பாணி காடà¯à®Ÿ: Duplicate Error பிழை நகல௠&Edit &பதிபà¯à®ªà®¿ Empty Field காலியாக Field Error பிழை Export à®à®±à¯à®±à¯à®®à®¤à®¿ File கோபà¯à®ªà¯ File Not Found File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help உதவி h The abbreviated unit for hours h Invalid Folder Selected Singular தவறான கோபà¯à®ªà¯à®±à¯ˆà®¯à¯ˆ தெரிவ௠Invalid File Selected Singular தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à®¤à¯ˆ தவறான கோபà¯à®ªà¯ Invalid Files Selected Plural தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à®¤à¯ˆ தவறான கோபà¯à®ªà¯à®•ள௠Image படம௠Import இறகà¯à®•à¯à®®à®¤à®¿ Layout style: அமைபà¯à®ªà¯ பாணி: Live தறà¯à®ªà¯‡à®¾à®¤à¯ Live Background Error தறà¯à®ªà¯‡à®¾à®¤à¯ பினà¯à®©à®£à®¿ பிழை Live Toolbar தறà¯à®ªà¯‡à®¾à®¤à¯ கரà¯à®µà®¿à®ªà¯à®ªà®Ÿà¯à®Ÿà¯ˆ Load Load Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes m Middle நடà¯à®µà®¿à®²à¯ New பà¯à®¤à®¿à®¯ New Service பà¯à®¤à®¿à®¯ சேவைகள௠New Theme பà¯à®¤à®¿à®¯ தீம௠Next Track அடà¯à®¤à¯à®¤ பாடல௠No Folder Selected Singular இலà¯à®²à¯ˆ கோபà¯à®ªà¯à®±à¯ˆà®¯à¯ˆ தெரிவ No File Selected Singular ஒர௠கோபà¯à®ªà¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ No Files Selected Plural ஒர௠கோபà¯à®ªà¯à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ No Item Selected Singular ஒர௠உரà¯à®ªà¯à®ªà®Ÿà®¿ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ No Items Selected Plural ஒர௠உரà¯à®ªà¯à®ªà®Ÿà®¿à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ இலà¯à®²à¯ˆ OpenLP is already running. Do you wish to continue? OpenLP à®à®±à¯à®•னவே இயஙà¯à®•à¯à®®à¯. நீஙà¯à®•ள௠தொடர விரà¯à®®à¯à®ªà¯à®•ிறீரà¯à®•ளா? Open service. சேவையை திறகà¯à®•. Play Slides in Loop படவிலà¯à®²à¯ˆà®•ள௠சà¯à®´à®±à¯à®šà®¿ செயà¯à®¯à®µà¯‡à®£à¯à®Ÿà¯à®®à¯ Play Slides to End படவிலà¯à®²à¯ˆà®•ள௠மà¯à®Ÿà®¿à®µà¯à®•à¯à®•௠வரை செயà¯à®¯à®µà¯‡à®£à¯à®Ÿà¯à®®à¯ Preview à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ Print Service சேவைகள௠அசà¯à®šà®¿à®Ÿ Projector Singular Projectors Plural Replace Background பினà¯à®©à®£à®¿ மாறà¯à®±à®µà¯à®®à¯ Replace live background. தறà¯à®ªà¯‡à®¾à®¤à¯ பினà¯à®©à®£à®¿ பதிலாக. Reset Background பினà¯à®©à®£à®¿ மீடà¯à®Ÿà®®à¯ˆ Reset live background. தறà¯à®ªà¯‡à®¾à®¤à¯ பினà¯à®©à®£à®¿ மீடà¯à®Ÿà®®à¯ˆ. s The abbreviated unit for seconds s Save && Preview à®®à¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿ && சேமிகà¯à®• Search தேடல௠Search Themes... Search bar place holder text தேடல௠தீமà¯à®•ள௠... You must select an item to delete. நீஙà¯à®•ள௠நீகà¯à®• உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ வேணà¯à®Ÿà¯à®®à¯. You must select an item to edit. நீஙà¯à®•ள௠திரà¯à®¤à¯à®¤ உரà¯à®ªà¯à®ªà®Ÿà®¿à®¯à¯ˆ வேணà¯à®Ÿà¯à®®à¯. Settings அமைபà¯à®ªà¯à®•ள௠Save Service சேவைகள௠சேமிகà¯à®• Service சேவையை Optional &Split விரà¯à®ªà¯à®ª &பிரி Split a slide into two only if it does not fit on the screen as one slide. அத௠ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ என திரையில௠பொரà¯à®¨à¯à®¤à¯à®®à¯ இலà¯à®²à¯ˆ மடà¯à®Ÿà¯à®®à¯‡ இரணà¯à®Ÿà¯ ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ பிரிநà¯à®¤à®¤à¯.விவரஙà¯à®•ளà¯à®ªà®°à®¿à®¨à¯à®¤à¯à®°à¯ˆà®•ளà¯à®µà®°à®²à®¾à®±à¯ Start %s தொடஙà¯à®•௠%s Stop Play Slides in Loop படவிலà¯à®²à¯ˆà®•ள௠சà¯à®´à®±à¯à®šà®¿ இயகà¯à®•௠நிறà¯à®¤à¯à®¤à¯ Stop Play Slides to End படவிலà¯à®²à¯ˆà®•ள௠மà¯à®Ÿà®¿à®µà®¿à®²à¯ நிறà¯à®¤à¯à®¤à¯ Theme Singular தீம௠Themes Plural தீமà¯à®•ள௠Tools கரà¯à®µà®¿à®•ள௠Top மேலே Unsupported File ஆதரிகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ கோபà¯à®ªà¯ Verse Per Slide ஒவà¯à®µà¯†à®¾à®°à¯ செயà¯à®¯à¯à®³à¯à®•ள௠ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ Verse Per Line ஒவà¯à®µà¯†à®¾à®°à¯ செயà¯à®¯à¯à®³à¯à®•ள௠ஒர வரிசை Version பதிபà¯à®ªà¯ˆ View பாரà¯à®•à¯à®• View Mode பாரà¯à®•à¯à®• à®®à¯à®±à¯ˆ CCLI song number: Preview Toolbar OpenLP OpenLp Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ Plugin</strong><br /> வழஙà¯à®•ல௠plugin பலà¯à®µà¯‡à®±à¯ திடà¯à®Ÿà®™à¯à®•ள௠பல பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ள௠காடà¯à®Ÿ உதவà¯à®•ிறதà¯. இனà¯à®©à¯à®®à¯ வழஙà¯à®•ல௠திடà¯à®Ÿà®™à¯à®•ள௠தேரà¯à®µà¯ பெடà¯à®Ÿà®¿à®¯à¯ˆ கீழே ஒர௠தà¯à®³à®¿ பயனர௠கிடைகà¯à®•à¯à®®à¯. Presentation name singular விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ Presentations name plural விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ள௠Presentations container title விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ள௠Load a new presentation. ஒர௠பà¯à®¤à®¿à®¯ விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®¯à¯ˆ à®à®±à¯à®±. Delete the selected presentation. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®¯à¯ˆ நீகà¯à®•à¯. Preview the selected presentation. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ வழஙà¯à®•ல௠மà¯à®©à¯à®©à¯‡à®¾à®Ÿà¯à®Ÿà®¤à¯à®¤à¯ˆ. Send the selected presentation live. தறà¯à®ªà¯‡à®¾à®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ வழஙà¯à®•ல௠அனà¯à®ªà¯à®ª. Add the selected presentation to the service. சேவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ வழஙà¯à®•ல௠சேரà¯à®•à¯à®•லாமà¯. PresentationPlugin.MediaItem Select Presentation(s) தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ வழஙà¯à®•ல௠(களà¯) Automatic தானாக Present using: பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ à®®à¯à®©à¯à®µà¯ˆà®•à¯à®•: File Exists கோபà¯à®ªà¯ உளà¯à®³à®¤à¯ A presentation with that filename already exists. அநà¯à®¤ கோபà¯à®ªà¯ ஒர௠காடà¯à®šà®¿ à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. This type of presentation is not supported. இபà¯à®ªà¯‡à®¾à®¤à¯ இநà¯à®¤ வகை ஆதரிகà¯à®•விலà¯à®²à¯ˆ. Presentations (%s) விளகà¯à®•கà¯à®•ாடà¯à®šà®¿à®•ள௠(%s) Missing Presentation விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ காணவிலà¯à®²à¯ˆ The presentation %s is incomplete, please reload. விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ %s à®®à¯à®´à¯à®®à¯ˆà®¯à®¾à®©à®¤à®¾à®• இலà¯à®²à¯ˆ, மீணà¯à®Ÿà¯à®®à¯ à®à®±à¯à®±à¯à®•. The presentation %s no longer exists. விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ %s இலà¯à®²à¯ˆ. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers கிடைகà¯à®•à¯à®®à¯ கடà¯à®Ÿà¯à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿à®•ளின %s (unavailable) %s (இலà¯à®²à¯ˆ) Allow presentation application to be overridden விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ மேலெழà¯à®¤à®ªà¯à®ªà®Ÿà®²à®¾à®®à¯ அனà¯à®®à®¤à®¿ PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />Remote ஒர௠இணைய உலாவி மூலம௠அலà¯à®²à®¤à¯ API remot மூலம௠வேற௠ஒர௠கணினியில௠OpenLP ஒர௠இயஙà¯à®•à¯à®®à¯ பதிபà¯à®ªà¯ செயà¯à®¤à®¿à®•ளை அனà¯à®ªà¯à®ª உதவà¯à®•ிறதà¯. Remote name singular தொலை Remotes name plural தொலைகள Remote container title தொலை Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager சேவையை மேலாளர௠Slide Controller ஸà¯à®²à¯ˆà®Ÿà¯ கடà¯à®Ÿà¯à®ªà¯à®ªà®¾à®Ÿà¯à®Ÿà®¾à®³à®°à¯ Alerts எசà¯à®šà®°à®¿à®•à¯à®•ைகள௠Search தேடல௠Home வீடà¯à®Ÿà¯ Refresh பà¯à®¤à¯à®ªà¯à®ªà®¿ Blank காலியான Theme தீம௠Desktop டெஸà¯à®•à¯à®Ÿà®¾à®ªà¯ Show காணà¯à®ªà®¿ Prev à®®à¯à®¨à¯à®¤à¯ˆà®¯ Next அடà¯à®¤à¯à®¤à¯ Text உரை Show Alert விழிபà¯à®ªà¯‚டà¯à®Ÿà®²à¯ காணà¯à®ªà®¿ Go Live தறà¯à®ªà¯‡à®¾à®¤à¯ போக Add to Service சேவைகள௠சேரà¯à®•à¯à®• Add &amp; Go to Service சேர௠&ஆமà¯à®ªà¯; சேவைகள௠போ No Results à®®à¯à®Ÿà®¿à®µà¯ இலà¯à®²à¯ˆ Options விரà¯à®ªà¯à®ªà®™à¯à®•ள௠Service சேவையை Slides ஸà¯à®²à¯ˆà®Ÿà¯à®•ள௠Settings அமைபà¯à®ªà¯à®•ள௠Remote தொலை Stage View Live View RemotePlugin.RemoteTab Serve on IP address: சேவை IPà®®à¯à®•வரி : Port number: போரà¯à®Ÿà¯ எணà¯à®£à¯ˆ: Server Settings சரà¯à®µà®°à¯ அமைபà¯à®ªà¯à®•ள௠Remote URL: தொலை URL: Stage view URL: மேடை காடà¯à®šà®¿ URL: Display stage time in 12h format 12h வடிவில௠மேடை நேரம௠காடà¯à®Ÿ Android App Android பயனà¯à®ªà®¾à®Ÿà¯ Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: கடவà¯à®šà¯à®šà¯†à®¾à®²à¯à®²à¯ˆ: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ கணà¯à®•ாணிபà¯à®ª &Delete Tracking Data &நோடà¯à®Ÿ தரவ௠நீகà¯à®•௠Delete song usage data up to a specified date. ஒர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ தேதிகà¯à®•௠பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ தகவலà¯à®•ளை நீகà¯à®•à¯. &Extract Tracking Data &நோடà¯à®Ÿ தரவ௠பிரிதà¯à®¤à¯†à®Ÿà¯à®•à¯à®• Generate a report on song usage. பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ ஒர௠அறிகà¯à®•ையை உரà¯à®µà®¾à®•à¯à®•. Toggle Tracking கணà¯à®•ாணிபà¯à®ªà¯ மாறà¯à®µà®¤à®±à¯à®•௠Toggle the tracking of song usage. பாடல௠பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ டிராகà¯à®•ிங௠நிலைமாறà¯à®±à¯. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br /> இநà¯à®¤ plugin சேவைகளை பாடலà¯à®•ளில௠பயனà¯à®ªà®¾à®Ÿà¯ டிராகà¯à®•à¯à®•ளà¯. SongUsage name singular SongUsage SongUsage name plural SongUsage SongUsage container title SongUsage Song Usage பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ Song usage tracking is active. பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ கணà¯à®•ாணிபà¯à®ªà¯ தீவிரமாக உளà¯à®³à®¤à¯. Song usage tracking is inactive. பாடல௠பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ டிராகà¯à®•ிங௠மà¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. display காடà¯à®Ÿà¯ printed அசà¯à®šà®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿ SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ தரவ௠நீகà¯à®•௠Delete Selected Song Usage Events? தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ நிகழà¯à®µà¯à®•ள௠நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? Are you sure you want to delete selected Song Usage data? நீஙà¯à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ தரவ௠நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? Deletion Successful நீகà¯à®•ியதை à®®à¯à®Ÿà®¿à®¨à¯à®¤ Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction பாடல௠பயனà¯à®ªà®¾à®Ÿà¯ பிரிதà¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à®² Select Date Range தேதி வீசà¯à®šà¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ to செயà¯à®¯ Report Location இடம௠சொலà¯à®² Output File Location வெளியீட௠கோபà¯à®ªà¯ இடம௠usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation அறிகà¯à®•ை உரà¯à®µà®¾à®•à¯à®•ம௠Report %s has been successfully created. அறிகà¯à®•ை %s உரà¯à®µà®¾à®•à¯à®•ிய à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯. Output Path Not Selected வெளியீட௠பாதை தேரà¯à®µà®¾à®•விலà¯à®²à¯ˆ You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song &பாடà¯à®Ÿà¯ Import songs using the import wizard. இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿à®¯à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ இசை இறகà¯à®•à¯à®®à®¤à®¿. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. strong>பாடà¯à®Ÿà¯ Plugin</strong><br /> இசை plugin இசை காணà¯à®ªà®¿à®•à¯à®• மறà¯à®±à¯à®®à¯ மேலாணà¯à®®à¯ˆ திறன௠வழஙà¯à®•à¯à®•ிறதà¯. &Re-index Songs &மீணà¯à®Ÿà¯à®®à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ பாடலà¯à®•ள௠Re-index the songs database to improve searching and ordering. தேடி மறà¯à®±à¯à®®à¯ வரிசைபà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®®à¯ மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ மற௠கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ இசை தொகà¯à®ªà¯à®ªà¯. Reindexing songs... டà¯à®Ÿà®µà®£à¯ˆà®¯à®¿à®Ÿà¯à®¤à®²à¯ இசை மீணà¯à®Ÿà¯à®®à¯ ... Arabic (CP-1256) அரப௠(CP-1256) Baltic (CP-1257) பாலà¯à®Ÿà®¿à®•௠(CP-1257) Central European (CP-1250) மதà¯à®¤à®¿à®¯ à®à®°à¯‡à®¾à®ªà¯à®ªà®¿à®¯ (CP-1250) Cyrillic (CP-1251) சிரிலிக௠(CP-1251) Greek (CP-1253) கிரேகà¯à®•ம௠(CP-1253) Hebrew (CP-1255) ஹீபà¯à®°à¯‚ (CP-1255) Japanese (CP-932) ஜபà¯à®ªà®©à¯€à®¸à¯ (CP-932) Korean (CP-949) கொரிய (CP-949) Simplified Chinese (CP-936) எளிமையான சீன (CP-936) Thai (CP-874) தாய௠(CP-874) Traditional Chinese (CP-950) பாரமà¯à®ªà®°à®¿à®¯à®®à®¾à®© சீன (CP-950) Turkish (CP-1254) தà¯à®°à¯à®•à¯à®•ிய (CP-1254) Vietnam (CP-1258) வியடà¯à®¨à®¾à®®à¯ (CP-1258) Western European (CP-1252) மேறà¯à®•௠à®à®°à¯‡à®¾à®ªà¯à®ªà®¿à®¯ (CP-1252) Character Encoding எழà¯à®¤à¯à®¤à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆ The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Codepage அமைபà¯à®ªà¯ˆ சரியான தனà¯à®®à¯ˆà®¯à¯ˆ பிரதிநிதிதà¯à®¤à¯à®µà®®à¯ பொறà¯à®ªà¯à®ªà¯. பொதà¯à®µà®¾à®• நீஙà¯à®•ள௠preselected தேரà¯à®µà¯ நனà¯à®±à®¾à®• இரà¯à®•à¯à®•à¯à®®à¯. Please choose the character encoding. The encoding is responsible for the correct character representation. எழà¯à®¤à¯à®¤à¯à®°à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®¯à¯ˆ தேரà¯à®µà¯ செயà¯à®¯à®µà¯à®®à¯. கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ சரியான தனà¯à®®à¯ˆ பிரதிநிதிதà¯à®¤à¯à®µà®®à¯ பொறà¯à®ªà¯à®ªà¯. Song name singular பாடà¯à®Ÿà¯ Songs name plural பாடலà¯à®•ள௠Songs container title பாடலà¯à®•ள௠Exports songs using the export wizard. à®à®±à¯à®±à¯à®®à®¤à®¿ à®à®±à¯à®±à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿à®¯à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ பாடலà¯à®•ளà¯. Add a new song. ஒர௠பà¯à®¤à®¿à®¯ பாடல௠சேரà¯à®•à¯à®•. Edit the selected song. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பாடல௠பதிபà¯à®ªà®¿. Delete the selected song. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பாடல௠நீகà¯à®•à¯. Preview the selected song. தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பாடல௠மாதிரி. Send the selected song live. தறà¯à®ªà¯‡à®¾à®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பாடல௠அனà¯à®ªà¯à®ª. Add the selected song to the service. சேவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ பாடல௠சேரà¯à®•à¯à®•லாமà¯. Reindexing songs அடà¯à®Ÿà®µà®£à¯ˆà®¯à®¿à®Ÿà¯à®¤à®²à¯ பாடலà¯à®•ள௠மீணà¯à®Ÿà¯à®®à¯ CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song SongsPlugin.AuthorsForm Author Maintenance நூலாசிரியர௠பராமரிபà¯à®ªà¯ Display name: காணà¯à®ªà®¿à®•à¯à®•பெயரà¯: First name: à®®à¯à®¤à®²à¯ பெயரà¯: Last name: கடைசி பெயரà¯: You need to type in the first name of the author. நீஙà¯à®•ள௠நூலாசிரியர௠மà¯à®¤à®²à¯ பெயரை தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. You need to type in the last name of the author. நீஙà¯à®•ள௠நூலாசிரியர௠கடைசி பெயர௠தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. You have not set a display name for the author, combine the first and last names? நீஙà¯à®•ள௠நூலாசிரியர௠ஒர௠காடà¯à®šà®¿ பெயரை அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯, à®®à¯à®¤à®²à¯ மறà¯à®±à¯à®®à¯ கடைசி பெயரà¯à®•ளை சேரà¯à®¤à¯à®¤à¯? SongsPlugin.CCLIFileImport The file does not have a valid extension. கோபà¯à®ªà¯ ஒர௠செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®¾à®•à¯à®®à¯ நீடà¯à®Ÿà®¿à®ªà¯à®ªà¯ இலà¯à®²à¯ˆ. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s ஆல௠நிரà¯à®µà®•ிகà¯à®•பà¯à®ªà®Ÿà¯à®•ிறத௠%s "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names தனிபயன௠பà¯à®¤à¯à®¤à®• பெயரà¯à®•ள SongsPlugin.EditSongForm Song Editor பாடல௠எடிடà¯à®Ÿà®°à¯ &Title: &தலைபà¯à®ªà¯: Alt&ernate title: மாறà¯&படà¯à®Ÿ தலைபà¯à®ªà¯: &Lyrics: &பாடலà¯à®µà®°à®¿à®•ளை: &Verse order: &வசனம௠ஒழà¯à®™à¯à®•à¯: Ed&it All அனைதà¯à®¤à¯ தொ&க௠Title && Lyrics தலைபà¯à®ªà¯ && பாடல௠வரிகள௠&Add to Song &பாடல௠சேரà¯à®•à¯à®•வà¯à®®à¯ &Remove &நீகà¯à®• A&dd to Song பாடல௠சே&à®°à¯à®•à¯à®•வà¯à®®à¯ R&emove நீ&கà¯à®• New &Theme பà¯à®¤à®¿à®¯ &தீம௠Copyright Information பதிபà¯à®ªà¯à®°à®¿à®®à¯ˆ விவரம௠Comments கரà¯à®¤à¯à®¤à¯à®°à¯ˆà®•ள௠Theme, Copyright Info && Comments தீமà¯, பதிபà¯à®ªà¯à®°à®¿à®®à¯ˆ தகவல௠&& கரà¯à®¤à¯à®¤à¯à®°à¯ˆà®•ள௠Add Author படைபà¯à®ªà®¾à®³à®°à¯ சேரà¯à®•à¯à®•லாம௠This author does not exist, do you want to add them? இநà¯à®¤ நூலாசிரியர௠இலà¯à®²à¯ˆ, நீஙà¯à®•ள௠அவரà¯à®•ளை சேரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à®¾? This author is already in the list. இநà¯à®¤ நூலாசிரியர௠படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. நீஙà¯à®•ள௠சரியான நூலாசிரியர௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ இலà¯à®²à¯ˆ. அலà¯à®²à®¤à¯ ஒர௠பà¯à®¤à®¿à®¯ நூலாசிரியர௠படà¯à®Ÿà®¿à®¯à®²à¯, அலà¯à®²à®¤à¯ வகை இரà¯à®¨à¯à®¤à¯ ஒர௠நூலாசிரியர௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ மறà¯à®±à¯à®®à¯ பà¯à®¤à®¿à®¯ நூலாசிரியர௠சேரà¯à®•à¯à®• "பாடல௠என ஆசிரியர௠சேரà¯à®•à¯à®•வà¯à®®à¯" பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Add Topic தலைபà¯à®ªà¯ சேரà¯à®•à¯à®•லாம௠This topic does not exist, do you want to add it? இநà¯à®¤ தலைபà¯à®ªà¯ˆ இலà¯à®²à¯ˆ, நீஙà¯à®•ள௠இதை சேரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à®¾? This topic is already in the list. இநà¯à®¤ தலைபà¯à®ªà¯ˆ படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. நீஙà¯à®•ள௠சரியான தலைபà¯à®ªà¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•விலà¯à®²à¯ˆ. அலà¯à®²à®¤à¯ ஒர௠பà¯à®¤à®¿à®¯ தலைபà¯à®ªà®¿à®²à¯ ஒர௠படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ தலைபà¯à®ªà¯ˆ, அலà¯à®²à®¤à¯ வகை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ மறà¯à®±à¯à®®à¯ பà¯à®¤à®¿à®¯ தலைபà¯à®ªà¯ˆ சேரà¯à®•à¯à®• "பாடல௠எனà¯à®±à¯ தலைபà¯à®ªà¯ சேரà¯à®•à¯à®•வà¯à®®à¯" பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. You need to type in a song title. நீஙà¯à®•ள௠ஒர௠பாடலான பெயர௠தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. You need to type in at least one verse. நீஙà¯à®•ள௠கà¯à®±à¯ˆà®¨à¯à®¤à®¤à¯ ஒர௠வசனம௠தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. You need to have an author for this song. இநà¯à®¤ பாடல௠ஒர௠நூலாசிரியர௠இரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. Linked Audio இணைநà¯à®¤ ஆடியோ Add &File(s) கோபà¯à®ªà¯ மறà¯à®±à¯à®®à¯ &சேரà¯à®•à¯à®•லாம௠(களà¯) Add &Media சேரà¯à®•à¯à®•லாம௠&ஊடக Remove &All அனைதà¯à®¤à¯ &நீகà¯à®• Open File(s) கோபà¯à®ªà¯ (களà¯) திற <strong>Warning:</strong> Not all of the verses are in use. <strong>எசà¯à®šà®°à®¿à®•à¯à®•ை:</strong> Not all of the verses are in use. வசனஙà¯à®•ளில௠எலà¯à®²à®¾ பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà®¿à®²à¯ இலà¯à®²à¯ˆ. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse பதிபà¯à®ªà®¿ வசனம௠&Verse type: &வசனம௠அமைபà¯à®ªà¯: &Insert &செரà¯à®•௠Split a slide into two by inserting a verse splitter. ஒர௠வசனம௠பிரிபà¯à®ªà®¿ சேரà¯à®¤à¯à®¤à¯à®•à¯à®•ொளà¯à®µà®¤à®©à¯ மூலம௠இரணà¯à®Ÿà¯ ஒர௠ஸà¯à®²à¯ˆà®Ÿà¯ பிரிநà¯à®¤à®¤à¯. SongsPlugin.ExportWizardForm Song Export Wizard பாடல௠à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®¯à¯à®®à¯ விசாரà¯à®Ÿà¯ Select Songs பாடலà¯à®•ள௠தேரà¯à®µà¯ Check the songs you want to export. நீஙà¯à®•ள௠à®à®±à¯à®±à¯à®®à®¤à®¿ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯ இசை பாரà¯à®™à¯à®•ளà¯. Uncheck All எலà¯à®²à®¾à®µà®±à¯à®±à®¿à®¯à¯à®®à¯ ஒடà¯à®Ÿà¯à®®à¯†à®¾à®¤à¯à®¤à®®à®¾à®• அகறà¯à®±à®¿à®µà®¿à®Ÿ Check All அனைதà¯à®¤à¯ சரிபாரà¯à®¤à¯à®¤à¯ Select Directory அடைவை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯ Directory: அடைவà¯: Exporting à®à®±à¯à®±à¯à®®à®¤à®¿ Please wait while your songs are exported. உஙà¯à®•ள௠இசை à®à®±à¯à®±à¯à®®à®¤à®¿ காதà¯à®¤à®¿à®°à¯à®™à¯à®•ளà¯. You need to add at least one Song to export. நீஙà¯à®•ள௠à®à®±à¯à®±à¯à®®à®¤à®¿ கà¯à®±à¯ˆà®¨à¯à®¤à®¤à¯ ஒர௠பாடல௠சேரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯. No Save Location specified எநà¯à®¤ கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®Ÿ இடதà¯à®¤à¯ˆ சேமிகà¯à®•வà¯à®®à¯ இலà¯à®²à¯ˆ Starting export... à®à®±à¯à®±à¯à®®à®¤à®¿ தொடஙà¯à®•à¯à®®à¯... You need to specify a directory. நீஙà¯à®•ள௠ஒர௠அடைவை கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯. Select Destination Folder கோபà¯à®ªà¯à®±à¯ˆà®¯à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯ Select the directory where you want the songs to be saved. நீஙà¯à®•ள௠இசை சேமிகà¯à®• விரà¯à®®à¯à®ªà¯à®®à¯ அடைவ௠தேரà¯à®µà¯. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type நீஙà¯à®•ள௠தடà¯à®Ÿà®šà¯à®šà¯ தேடல௠செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤ SongsPlugin.ImportWizardForm Select Document/Presentation Files ஆவண / வழஙà¯à®•ல௠கோபà¯à®ªà¯à®•ள௠தேரà¯à®µà¯ Song Import Wizard பாடல௠இறகà¯à®•à¯à®®à®¤à®¿ வழிகாடà¯à®Ÿà®¿ This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. இநà¯à®¤ வழிகாடà¯à®Ÿà®¿ நீஙà¯à®•ள௠பல வடிவமைபà¯à®ªà¯à®•ளில௠இரà¯à®¨à¯à®¤à¯ இசை இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ உதவà¯à®®à¯. இரà¯à®¨à¯à®¤à¯ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ ஒர௠வடிவம௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à¯ தà¯à®µà®™à¯à®•à¯à®®à¯ கீழே உளà¯à®³ அடà¯à®¤à¯à®¤ பொதà¯à®¤à®¾à®©à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. Generic Document/Presentation பொதà¯à®µà®¾à®© ஆவண / வழஙà¯à®•ல௠Add Files... கோபà¯à®ªà¯à®•ள௠சேரà¯à®•à¯à®•லாமà¯... Remove File(s) கோபà¯à®ªà¯ (களà¯) நீகà¯à®• Please wait while your songs are imported. உஙà¯à®•ள௠இசை இறகà¯à®•à¯à®®à®¤à®¿ காதà¯à®¤à®¿à®°à¯à®™à¯à®•ளà¯. Words Of Worship Song Files வழிபாட௠பாடல௠கோபà¯à®ªà¯à®•ளை வாரà¯à®¤à¯à®¤à¯ˆà®•ள௠Songs Of Fellowship Song Files Songs Of Fellowship பாடல௠கோபà¯à®ªà¯à®•ள௠SongBeamer Files SongBeamer கோபà¯à®ªà¯à®•ள௠SongShow Plus Song Files SongShow Plus பாடல௠கோபà¯à®ªà¯à®•ள௠Foilpresenter Song Files Foilpresenter பாடல௠கோபà¯à®ªà¯à®•ள௠Copy நகலெடà¯à®•à¯à®• Save to File கோபà¯à®ªà¯ சேமிகà¯à®• The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Fellowship importer பாடலà¯à®•ள௠மà¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à®¾à®²à¯, OpenLP à®à®©à¯†à®©à®¿à®²à¯ OpenOffice அலà¯à®²à®¤à¯ LibreOffice திறகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenLP இபà¯à®ªà¯†à®¾à®´à¯à®¤à¯ OpenOffice அலà¯à®²à®¤à¯ LibreOffice திறகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯, à®à®©à¯†à®©à®¿à®²à¯ generic ஆவணம௠/ விளகà¯à®•கà¯à®•ாடà¯à®šà®¿ இறகà¯à®•à¯à®®à®¤à®¿à®¯à®¾à®³à®°à¯ à®®à¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. OpenLyrics Files OpenLyrics கோபà¯à®ª CCLI SongSelect Files CCLI SongSelect கோபà¯à®ªà¯à®•ள௠EasySlides XML File EasySlides XML கோபà¯à®ªà¯à®•ள௠EasyWorship Song Database பாடல௠தரவà¯à®¤à¯à®¤à®³à®®à¯ DreamBeam Song Files DreamBeam பாடல௠கோபà¯à®ªà¯à®•ள௠You need to specify a valid PowerSong 1.0 database folder. நீஙà¯à®•ள௠சரியான கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿ வேணà¯à®Ÿà¯à®®à¯ PowerSong 1.0 database அடைவை. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. à®®à¯à®¤à®²à®¿à®²à¯ உஙà¯à®•ள௠மாறà¯à®± ZionWorx ஒர௠CSV உரை கோபà¯à®ªà®¿à®²à¯ தரவà¯à®¤à¯à®¤à®³, என விளகà¯à®•ினார௠<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files SundayPlus பாடல௠கோபà¯à®ªà¯à®•ள௠This importer has been disabled. இநà¯à®¤ இறகà¯à®•à¯à®®à®¤à®¿à®¯à®¾à®³à®°à¯ à®®à¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. MediaShout Database MediaShout தரவà¯à®¤à¯à®¤à®³à®®à¯ The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout இறகà¯à®•à¯à®®à®¤à®¿à®¯à®¾à®³à®°à¯ இத௠விணà¯à®Ÿà¯‡à®¾à®¸à¯ இல௠மடà¯à®Ÿà¯à®®à¯‡ தà¯à®£à¯ˆà®ªà¯à®°à®¿à®•ிறதà¯. அத௠ஒர௠விடà¯à®ªà®Ÿà¯à®Ÿ Python தொகà¯à®¤à®¿ காரணமாக à®®à¯à®Ÿà®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. இநà¯à®¤ இறகà¯à®•à¯à®®à®¤à®¿à®¯à®¾à®³à®°à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯, நீஙà¯à®•ள௠"pyodbc" தொகà¯à®¤à®¿ நிறà¯à®µ வேணà¯à®Ÿà¯à®®à¯. SongPro Text Files SongPro உரை கோபà¯à®ªà¯à®•ள௠SongPro (Export File) SongPro (à®à®±à¯à®±à¯à®®à®¤à®¿ கோபà¯à®ªà¯) In SongPro, export your songs using the File -> Export menu SongPro உளà¯à®³, கோபà¯à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿ உஙà¯à®•ள௠பாடலà¯à®•ள௠à®à®±à¯à®±à¯à®®à®¤à®¿ -> à®à®±à¯à®±à¯à®®à®¤à®¿ படà¯à®Ÿà®¿ EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ மீடியா கோபà¯à®ªà¯ (களà¯) Select one or more audio files from the list below, and click OK to import them into this song. கீழே உளà¯à®³ படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ ஒனà¯à®±à¯ அலà¯à®²à®¤à¯ அதறà¯à®•௠மேறà¯à®ªà®Ÿà¯à®Ÿ ஆடியோ கோபà¯à®ªà¯à®•ளை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯, மறà¯à®±à¯à®®à¯ இநà¯à®¤ பாடல௠அவறà¯à®±à¯ˆ இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ சரி எனà¯à®ªà®¤à¯ˆ கிளிக௠செயà¯à®¯à®µà¯à®®à¯. SongsPlugin.MediaItem Titles தலைபà¯à®ªà¯à®•ள௠Lyrics பாடலà¯à®µà®°à®¿à®•ளை CCLI License: CCLI உரிமமà¯: Entire Song à®®à¯à®´à¯ பாடல௠Maintain the lists of authors, topics and books. ஆசிரியரà¯à®•ளà¯, தலைபà¯à®ªà¯à®•ள௠மறà¯à®±à¯à®®à¯ பà¯à®¤à¯à®¤à®•à®™à¯à®•ள௠படà¯à®Ÿà®¿à®¯à®²à¯ˆ பராமரிகà¯à®•. copy For song cloning நகலெடà¯à®•à¯à®• Search Titles... தேடல௠தலைபà¯à®ªà¯à®•ள௠... Search Entire Song... à®®à¯à®´à¯ பாடல௠தேட ... Search Lyrics... தேடல௠பாடலà¯à®µà®°à®¿à®•ளை ... Search Authors... தேடல௠ஆசிரியரà¯à®•ளையà¯à®®à¯ ... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. MediaShout database திறகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... à®à®±à¯à®±à¯à®®à®¤à®¿ %s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. இறகà¯à®•à¯à®®à®¤à®¿ பாடலà¯à®•ள௠இலà¯à®²à¯ˆ. Verses not found. Missing "PART" header. செயà¯à®¯à¯à®³à¯à®•ள௠இலà¯à®²à¯ˆ. "பாகமà¯" மேறà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯ இலà¯à®²à¯ˆ. No %s files found. எநà¯à®¤ %s கோபà¯à®ªà¯à®•ளà¯à®®à¯ இலà¯à®²à¯ˆ. Invalid %s file. Unexpected byte value. தவறான %s கோபà¯à®ªà¯. எதிரà¯à®ªà®¾à®°à®¾à®¤ பைட௠மதிபà¯à®ªà¯. Invalid %s file. Missing "TITLE" header. தவறான %s கோபà¯à®ªà¯. "TITLE" header இலà¯à®²à¯ˆ. Invalid %s file. Missing "COPYRIGHTLINE" header. தவறான %s கோபà¯à®ªà¯. "COPYRIGHTLINE" header இலà¯à®²à¯ˆ. SongsPlugin.SongBookForm &Name: &பெயரà¯: &Publisher: &வெளியீடà¯à®Ÿà®¾à®³à®°à¯: You need to type in a name for the book. நீஙà¯à®•ள௠பà¯à®¤à¯à®¤à®•தà¯à®¤à¯ˆ ஒர௠பெயரை தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. உஙà¯à®•ள௠பாடல௠à®à®±à¯à®±à¯à®®à®¤à®¿ தோலà¯à®µà®¿à®¯à®Ÿà¯ˆà®¨à¯à®¤à®¤à¯. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. à®à®±à¯à®±à¯à®®à®¤à®¿ à®®à¯à®Ÿà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ. இநà¯à®¤ கோபà¯à®ªà¯à®•ளை இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright பதிபà¯à®ªà¯à®°à®¿à®®à¯ˆ The following songs could not be imported: இநà¯à®¤ இசை இறகà¯à®•à¯à®®à®¤à®¿ செயà¯à®¯ à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯: Cannot access OpenOffice or LibreOffice OpenOffice அலà¯à®²à®¤à¯ LibreOffice அணà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯ Unable to open file கோபà¯à®ªà¯ˆ திறகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ File not found கோபà¯à®ªà¯ காணவிலà¯à®²à¯ˆ SongsPlugin.SongMaintenanceForm Could not add your author. உஙà¯à®•ள௠நூலாசிரியர௠சேரà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. This author already exists. இநà¯à®¤ நூலாசிரியர௠மà¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. Could not add your topic. உஙà¯à®•ள௠தலைபà¯à®ªà¯ˆ சேரà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. This topic already exists. இநà¯à®¤ தலைபà¯à®ªà¯ à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. Could not add your book. உஙà¯à®•ள௠பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®²à¯ சேரà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. This book already exists. இநà¯à®¤ பà¯à®¤à¯à®¤à®•ம௠மà¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. Could not save your changes. உஙà¯à®•ள௠மாறà¯à®±à®™à¯à®•ளை சேமிகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. Could not save your modified author, because the author already exists. நூலாசிரியர௠à®à®±à¯à®•னவே உளà¯à®³à®¤à¯, à®à®©à¯†à®©à®¿à®²à¯, உஙà¯à®•ள௠மணிகà¯à®•௠நூலாசிரியர௠காபà¯à®ªà®¾à®±à¯à®± à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. Could not save your modified topic, because it already exists. இத௠à®à®±à¯à®•னவே உளà¯à®³à®¤à¯, à®à®©à¯†à®©à®¿à®²à¯, உஙà¯à®•ள௠மணிகà¯à®•௠தலைபà¯à®ªà¯ˆ சேமிகà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. Delete Author படைபà¯à®ªà®¾à®³à®°à¯ நீகà¯à®•௠Are you sure you want to delete the selected author? நீஙà¯à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ நூலாசிரியர௠நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? This author cannot be deleted, they are currently assigned to at least one song. இநà¯à®¤ நூலாசிரியர௠நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯, அவரà¯à®•ள௠தறà¯à®šà®®à®¯à®®à¯ கà¯à®±à¯ˆà®¨à¯à®¤à®ªà®Ÿà¯à®šà®®à¯ ஒர௠பாடல௠ஒதà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯. Delete Topic தலைபà¯à®ªà¯ நீகà¯à®•௠Are you sure you want to delete the selected topic? நீஙà¯à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ தலைபà¯à®ªà¯ நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? This topic cannot be deleted, it is currently assigned to at least one song. இநà¯à®¤ தலைபà¯à®ªà¯ˆ நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯, அத௠தறà¯à®šà®®à®¯à®®à¯ கà¯à®±à¯ˆà®¨à¯à®¤à®¤à¯ ஒர௠பாடல௠ஒதà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯. Delete Book பà¯à®¤à¯à®¤à®• நீகà¯à®•௠Are you sure you want to delete the selected book? நீஙà¯à®•ள௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பà¯à®¤à¯à®¤à®•ம௠நீகà¯à®• வேணà¯à®Ÿà¯à®®à®¾? This book cannot be deleted, it is currently assigned to at least one song. இநà¯à®¤ பà¯à®¤à¯à®¤à®•ம௠நீகà¯à®• à®®à¯à®Ÿà®¿à®¯à®¾à®¤à¯, அத௠தறà¯à®šà®®à®¯à®®à¯ கà¯à®±à¯ˆà®¨à¯à®¤à®¤à¯ ஒர௠பாடல௠ஒதà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯. The author %s already exists. Would you like to make songs with author %s use the existing author %s? இநà¯à®¤ நூலாசிரியர௠%s à®®à¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. நீஙà¯à®•ள௠நூலாசிரியர௠எனà¯à®± இசை செயà¯à®¯ விரà¯à®®à¯à®ªà¯à®•ிறேன௠%s à®à®±à¯à®•னவே இரà¯à®•à¯à®•à¯à®®à¯ நூலாசிரியர௠பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®®à¯%s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? இநà¯à®¤ தலைபà¯à®ªà¯ˆ %s à®®à¯à®©à¯à®ªà¯‡ இரà¯à®•à¯à®•ிறதà¯. நீஙà¯à®•ள௠தலைபà¯à®ªà¯ˆ கொணà¯à®Ÿ இசை செயà¯à®¯ விரà¯à®®à¯à®ªà¯à®•ிறேன௠%s à®à®±à¯à®•னவே தலைபà¯à®ªà¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? இநà¯à®¤ பà¯à®¤à¯à®¤à®•ம௠%s à®à®±à¯à®•னவே உளà¯à®³à®¤à¯. நீஙà¯à®•ள௠பà¯à®¤à¯à®¤à®•ம௠இசை செயà¯à®¯ விரà¯à®®à¯à®ªà¯à®•ிறேன௠%s à®à®±à¯à®•னவே பà¯à®¤à¯à®¤à®•தà¯à®¤à®¿à®²à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: பெயரà¯: Password: கடவà¯à®šà¯à®šà¯†à®¾à®²à¯à®²à¯ˆ: Save username and password Login Search Text: Search தேடல௠Found %s song(s) Logout View பாரà¯à®•à¯à®• Title: தலைபà¯à®ªà¯: Author(s): Copyright: காபà¯à®ªà¯à®°à®¿à®®à¯ˆ: CCLI Number: Lyrics: Back Import இறகà¯à®•à¯à®®à®¤à®¿ More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode பாடலà¯à®•ள௠மà¯à®±à¯ˆ Display verses on live tool bar நேரடி கரà¯à®µà®¿ படà¯à®Ÿà®¿à®¯à®¿à®²à¯ வசனஙà¯à®•ள௠காணà¯à®ªà®¿à®•à¯à®• Update service from song edit பாடல௠தொக௠இரà¯à®¨à¯à®¤à¯ சேவையை மேமà¯à®ªà®Ÿà¯à®¤à¯à®¤ Import missing songs from service files சேவை கோபà¯à®ªà¯à®•ளை காணவிலà¯à®²à¯ˆ பாடலà¯à®•ள௠இறகà¯à®•à¯à®®à®¤à®¿ Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance தலைபà¯à®ª பராமரிபà¯à®ªà¯ Topic name: தலைபà¯à®ªà¯ பெயரà¯: You need to type in a topic name. நீஙà¯à®•ள௠ஒர௠தலைபà¯à®ªà¯ˆ பெயரை தடà¯à®Ÿà®šà¯à®šà¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. SongsPlugin.VerseType Verse வசனம௠Chorus கோரஸ௠Bridge Bridge Pre-Chorus à®®à¯à®©à¯ கோரஸ௠Intro அறிமà¯à®•மே Ending à®®à¯à®Ÿà®¿à®µà¯à®•à¯à®•௠Other வேற௠SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. படிபà¯à®ªà®¤à®¿à®²à¯ பிழை CSV கோபà¯à®ªà¯. Line %d: %s வரிசை %d: %s Decoding error: %s நீகà¯à®•தà¯à®¤à®¿à®±à¯à®•௠பிழை: %s File not valid WorshipAssistant CSV format. Record %d சாதனையை %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. படிபà¯à®ªà®¤à®¿à®²à¯ பிழை CSV கோபà¯à®ªà¯. File not valid ZionWorx CSV format. செலà¯à®²à®¾à®¤ ZionWorx CSV வடிவதà¯à®¤à®¿à®²à¯ தாகà¯à®•லà¯. Line %d: %s வரிசை %d: %s Decoding error: %s நீகà¯à®•தà¯à®¤à®¿à®±à¯à®•௠பிழை: %s Record %d சாதனையை %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information தகவல௠No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/lt.ts0000644000175000017500000156076612657640340015356 0ustar raoulraoul AlertsPlugin &Alert Ä®&spÄ—jimas Show an alert message. Rodyti įspÄ—jamÄ…jį praneÅ¡imÄ…. Alert name singular Ä®spÄ—jimas Alerts name plural Ä®spÄ—jimai Alerts container title Ä®spÄ—jimai <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Ä®spÄ—jimo papildinys</strong><br />Ä®spÄ—jimo papildinys valdo įspÄ—jimų rodymÄ… ekrane. AlertsPlugin.AlertForm Alert Message Ä®spÄ—jamasis PraneÅ¡imas Alert &text: Ä®spÄ—jimo &tekstas: &New &Naujas &Save IÅ¡&saugoti Displ&ay &Rodyti Display && Cl&ose Rodyti ir &Uždaryti New Alert Naujas Ä®spÄ—jimas &Parameter: &Parametras: No Parameter Found Parametras Nerastas You have not entered a parameter to be replaced. Do you want to continue anyway? NeįvedÄ—te pakeiÄiamo parametro. Ar vistiek norite tÄ™sti? No Placeholder Found Vietaženklis Nerastas The alert text does not contain '<>'. Do you want to continue anyway? Ä®spÄ—jimo tekste nÄ—ra '<>'. Ar vistiek norite tÄ™sti? You haven't specified any text for your alert. Please type in some text before clicking New. Savo įspÄ—jamajam praneÅ¡imui nenurodÄ—te jokio teksto. PraÅ¡ome prieÅ¡ spustelÄ—jant Naujas, įraÅ¡yti tekstÄ…. AlertsPlugin.AlertsManager Alert message created and displayed. Ä®spÄ—jimo praneÅ¡imas sukurtas ir yra rodomas. AlertsPlugin.AlertsTab Font Å riftas Font name: Å rifto pavadinimas: Font color: Å rifto spalva: Background color: Fono spalva: Font size: Fono Å¡riftas: Alert timeout: Ä®spÄ—jimui skirtas laikas: BiblesPlugin &Bible &BiblijÄ… Bible name singular Biblija Bibles name plural Biblijos Bibles container title Biblijos No Book Found Knyga Nerasta No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Å ioje Biblijoje nepavyko rasti atitinkanÄios knygos. Patikrinkite ar teisingai parašėte knygos pavadinimÄ…. Import a Bible. Importuoti BiblijÄ…. Add a new Bible. PridÄ—ti naujÄ… BiblijÄ…. Edit the selected Bible. Redaguoti pasirinktÄ… BiblijÄ…. Delete the selected Bible. IÅ¡trinti pasirinktÄ… BiblijÄ…. Preview the selected Bible. PeržiÅ«rÄ—ti pasirinktÄ… BiblijÄ…. Send the selected Bible live. Rodyti pasirinktÄ… BiblijÄ… Gyvai. Add the selected Bible to the service. PridÄ—ti pasirinktÄ… BiblijÄ… prie pamaldų programos. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Biblijos Papildinys</strong><br />Biblijos papildinys suteikia galimybÄ™ pamaldų metu rodyti Biblijos eilutes iÅ¡ įvairių Å¡altinių. &Upgrade older Bibles Na&ujinti senesnes Biblijas Upgrade the Bible databases to the latest format. Atnaujinti Biblijos duomenų bazes iki paskiausio formato. Genesis Pradžios Exodus Išėjimo Leviticus Kunigų Numbers SkaiÄių Deuteronomy Pakartoto Ä®statymo Joshua JozuÄ—s Judges TeisÄ—jų Ruth Rutos 1 Samuel 1 Samuelio 2 Samuel 2 Samuelio 1 Kings 1 Karalių 2 Kings 2 Karalių 1 Chronicles 1 Kronikų 2 Chronicles 2 Kronikų Ezra Ezdro Nehemiah Nehemijo Esther Esteros Job Jobo Psalms PsalmÄ—s Proverbs Patarlių Ecclesiastes Ekleziasto Song of Solomon Giesmių giesmÄ—s Isaiah Izaijo Jeremiah Jeremijo Lamentations Raudų Ezekiel Ezekielio Daniel Danielio Hosea OzÄ—jo Joel Joelio Amos Amoso Obadiah Abdijo Jonah Jonos Micah MichÄ—jo Nahum Nahumo Habakkuk Habakuko Zephaniah Sofonijo Haggai AgÄ—jo Zechariah Zacharijo Malachi Malachijo Matthew Mato Mark Morkaus Luke Luko John Jono Acts ApaÅ¡talų darbai Romans RomieÄiams 1 Corinthians 1 KorintieÄiams 2 Corinthians 2 KorintieÄiams Galatians Galatams Ephesians EfezieÄiams Philippians FilipieÄiams Colossians KolosieÄiams 1 Thessalonians 1 TesalonikieÄiams 2 Thessalonians 2 TesalonikieÄiams 1 Timothy 1 Timotiejui 2 Timothy 2 Timotiejui Titus Titui Philemon Filemonui Hebrews Hebrajams James JokÅ«bui 1 Peter 1 Petro 2 Peter 2 Petro 1 John 1 Jono 2 John 2 Jono 3 John 3 Jono Jude Judo Revelation ApreiÅ¡kimo Jonui Judith Juditos Wisdom IÅ¡minties Tobit Tobito Sirach Siracido Baruch Barucho 1 Maccabees 1 MakabÄ—jų 2 Maccabees 2 MakabÄ—jų 3 Maccabees 3 MakabÄ—jų 4 Maccabees 4 MakabÄ—jų Rest of Daniel Danieliaus likusi dalis Rest of Esther Esteros likusi dalis Prayer of Manasses Manaso Malda Letter of Jeremiah Jeremijo LaiÅ¡kas Prayer of Azariah Azarijo Malda Susanna Susana Bel Belas ir drakonas 1 Esdras 1 Ezdro 2 Esdras 2 Ezdro : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 eil V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 E verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 eilute verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 eilutes - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 iki , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 ir end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse galas BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Turite nurodyti savo Biblijos versijos pavadinimÄ…. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Privalote Biblijai nustatyti autorių teises. Biblijos VieÅ¡ojoje Srityje turi bÅ«ti pažymÄ—tos kaip tokios. Bible Exists Biblija Jau Yra This Bible already exists. Please import a different Bible or first delete the existing one. Tokia Biblija jau yra. PraÅ¡ome importuoti kitÄ… BiblijÄ… arba iÅ¡ pradžių iÅ¡trinti, esanÄiÄ… BiblijÄ…. You need to specify a book name for "%s". Turite nurodyti knygos pavadinimÄ… knygai "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Knygos pavadinimas "%s" nÄ—ra teisingas. SkaiÄiai gali bÅ«ti naudojami tik pradžioje, o po jų privalo sekti vienas ar daugiau neskaitinių simbolių. Duplicate Book Name Dublikuoti Knygos PavadinimÄ… The Book Name "%s" has been entered more than once. Knygos Pavadinimas "%s" įvestas daugiau kaip vienÄ… kartÄ…. BiblesPlugin.BibleManager Scripture Reference Error Å ventojo RaÅ¡to Nuorodos Klaida Web Bible cannot be used Žiniatinklio Biblija negali bÅ«ti naudojama Text Search is not available with Web Bibles. TekstinÄ— PaieÅ¡ka yra neprieinama Žiniatinklio Biblijose. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. JÅ«s neįvedÄ—te paieÅ¡kos raktažodžio. Galite atskirti skirtingus raktažodžius tarpais, kad atliktumÄ—te visų raktažodžių paieÅ¡kÄ… ir galite atskirti juos kableliais, kad ieÅ¡kotumÄ—te kurio nors vieno iÅ¡ jų. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Å iuo metu nÄ—ra įdiegtų Biblijų. PraÅ¡ome naudoti Importavimo Vedlį, norint įdiegti vienÄ… ar daugiau Biblijų. No Bibles Available NÄ—ra Prieinamų Biblijų Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. JÅ«sų Å ventojo RaÅ¡to nuoroda yra nepalaikoma OpenLP arba yra neteisinga. PraÅ¡ome įsitikinti, kad jÅ«sų nuoroda atitinka vienÄ… iÅ¡ sekanÄių Å¡ablonų arba ieÅ¡kokite infomacijos vartotojo vadove: Knygos Skyrius Knygos Skyrius%(range)sSkyrius Knygos Skyrius%(verse)sEilutÄ—%(range)sEilutÄ— Knygos Skyrius%(verse)sEilutÄ—%(range)sEilutÄ—%(list)sEilutÄ—%(range)sEilutÄ— Knygos Skyrius%(verse)sEilutÄ—%(range)sEilutÄ—%(list)sSkyrius%(verse)sEilutÄ—%(range)sEilutÄ— Knygos Skyrius%(verse)sEilutÄ—%(range)sSkyrius%(verse)sEilutÄ— BiblesPlugin.BiblesTab Verse Display EiluÄių Rodymas Only show new chapter numbers Rodyti tik naujo skyriaus numerius Bible theme: Biblijos tema: No Brackets Be Skliaustelių ( And ) ( Ir ) { And } { Ir } [ And ] [ Ir ] Note: Changes do not affect verses already in the service. Pastaba: PokyÄiai neįtakos, jau pamaldų programoje esanÄių, eiluÄių. Display second Bible verses Rodyti antros Biblijos eilutes Custom Scripture References Tinkintos Å ventojo RaÅ¡to Nuorodos Verse Separator: EilutÄ—s Skirtukas: Range Separator: Atkarpos Skirtukas: List Separator: SÄ…raÅ¡o Skirtukas: End Mark: Pabaigos Skirtukas: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Gali bÅ«ti nurodyti keli alternatyvÅ«s eiluÄių skirtukai. Jie turi bÅ«ti atskirti vertikalia juosta "|". NorÄ—dami naudoti numatytÄ…jÄ… reikÅ¡mÄ™, iÅ¡valykite Å¡iÄ… eilutÄ™. English Lithuanian Default Bible Language Numatytoji Biblijos Kalba Book name language in search field, search results and on display: Knygų pavadinimų kalba paieÅ¡kos laukelyje, paieÅ¡kos rezultatuose ir ekrane: Bible Language Biblijos Kalba Application Language Progamos Kalba Show verse numbers Rodyti eiluÄių numerius BiblesPlugin.BookNameDialog Select Book Name Pasirinkite Knygos PavadinimÄ… Current name: Dabartinis pavadinimas: Corresponding name: Atitinkamas pavadinimas: Show Books From Rodyti Knygas IÅ¡ Old Testament Senasis Testamentas New Testament Naujasis Testamentas Apocrypha Apokrifas The following book name cannot be matched up internally. Please select the corresponding name from the list. Å i knyga negalÄ—jo bÅ«ti sutapatinta iÅ¡ vidaus. PraÅ¡ome pasirinkti atitinkamÄ… pavadinimÄ… iÅ¡ sÄ…raÅ¡o. BiblesPlugin.BookNameForm You need to select a book. Turite pasirinkti knygÄ…. BiblesPlugin.CSVBible Importing books... %s Importuojamos knygos... %s Importing verses... done. Importuojamos eilutÄ—s... atlikta. BiblesPlugin.EditBibleForm Bible Editor Biblijos Redaktorius License Details IÅ¡samiau apie LicencijÄ… Version name: Versijos pavadinimas: Copyright: Autorių TeisÄ—s: Permissions: Leidimai: Default Bible Language Numatytoji Biblijos Kalba Book name language in search field, search results and on display: Knygų pavadinimų kalba paieÅ¡kos laukelyje, paieÅ¡kos rezultatuose ir ekrane: Global Settings GlobalÅ«s Nustatymai Bible Language Biblijos Kalba Application Language Progamos Kalba English Lithuanian This is a Web Download Bible. It is not possible to customize the Book Names. Tai yra per Žiniatinklį Atsiųsta Biblija. Neįmanoma nustatyti pasirinktinus Knygų Pavadinimus. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Norint naudoti pasirinktinus knygų pavadinimus, Meta Duomenų kortelÄ—je arba, jeigu pasirinkti "GlobalÅ«s nustatymai", OpenLP KonfigÅ«racijoje, Biblijos skiltyje, privalo bÅ«ti pasirinkta "Biblijos kalba". BiblesPlugin.HTTPBible Registering Bible and loading books... Registruojama Biblija ir įkeliamos knygos... Registering Language... Registruojama Kalba... Importing %s... Importing <book name>... Importuojama %s... Download Error Atsisiuntimo Klaida There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Atsirado problemų, atsiunÄiant jÅ«sų eiluÄių pasirinkimÄ…. PraÅ¡ome patikrinti savo interneto ryšį, ir jei Å¡i klaida iÅ¡lieka, praÅ¡ome praneÅ¡ti apie klaidÄ…. Parse Error Analizavimo Klaida There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Atsirado problemų, iÅ¡skleidžiant jÅ«sų eiluÄių pasirinkimÄ…. Jei Å¡i klaida kartosis, praÅ¡ome pasvarstyti praneÅ¡ti apie klaidÄ…. BiblesPlugin.ImportWizardForm Bible Import Wizard Biblijos Importavimo Vedlys This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Å is vedlys padÄ—s jums importuoti Biblijas iÅ¡ įvairių formatų. Žemiau, spustelÄ—kite mygtukÄ… Kitas, kad pradÄ—tumÄ—te procesÄ…, pasirinkdami formatÄ…, iÅ¡ kurio importuoti. Web Download Atsiuntimas per Žiniatinklį Location: Vieta: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Biblija: Download Options Atsisiuntimo Parinktys Server: Serveris: Username: Naudotojo vardas: Password: Slaptažodis: Proxy Server (Optional) Ä®galiotasis Serveris (NebÅ«tina) License Details IÅ¡samiau apie LicencijÄ… Set up the Bible's license details. Nustatykite Biblijos licencijos detales. Version name: Versijos pavadinimas: Copyright: Autorių TeisÄ—s: Please wait while your Bible is imported. PraÅ¡ome palaukti, kol bus importuota jÅ«sų Biblija. You need to specify a file with books of the Bible to use in the import. Turite nurodyti failÄ… su Biblijos knygomis, iÅ¡ kurio importuosite. You need to specify a file of Bible verses to import. Turite nurodyti Biblijos eiluÄių failÄ… iÅ¡ kurio importuosite. You need to specify a version name for your Bible. Turite nurodyti savo Biblijos versijos pavadinimÄ…. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Privalote Biblijai nustatyti autorių teises. Biblijos VieÅ¡ojoje Srityje turi bÅ«ti pažymÄ—tos kaip tokios. Bible Exists Biblija Jau Yra This Bible already exists. Please import a different Bible or first delete the existing one. Tokia Biblija jau yra. PraÅ¡ome importuoti kitÄ… BiblijÄ… arba iÅ¡ pradžių iÅ¡trinti, esanÄiÄ… BiblijÄ…. Your Bible import failed. Biblijos importavimas nepavyko. CSV File CSV Failas Bibleserver Bibleserver Permissions: Leidimai: Bible file: Biblijos failas: Books file: Knygų failas: Verses file: EiluÄių failas: Registering Bible... Registruojama Biblija... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registruota Biblija. PraÅ¡ome atkreipti dÄ—mesį, kad eilutÄ—s bus atsiunÄiamos tik jų užklausus, todÄ—l interneto ryÅ¡ys yra bÅ«tinas. Click to download bible list SpustelÄ—kite, norÄ—dami atsisiųsti Biblijų sÄ…rašą Download bible list Atsisiųsti Biblijų sÄ…rašą Error during download Klaida atsiuntimo metu An error occurred while downloading the list of bibles from %s. Ä®vyko klaida, atsiunÄiant Biblijų sÄ…rašą iÅ¡ %s. BiblesPlugin.LanguageDialog Select Language Pasirinkite KalbÄ… OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP nepavyko nustatyti Å¡io Biblijos vertimo kalbos. PraÅ¡ome pasirinkti kalbÄ… iÅ¡ apaÄioje esanÄio sÄ…raÅ¡o. Language: Kalba: BiblesPlugin.LanguageForm You need to choose a language. Turite pasirinkti kalbÄ…. BiblesPlugin.MediaItem Quick Greita Find: Rasti: Book: Knyga: Chapter: Skyrius: Verse: EilutÄ—: From: Nuo: To: Iki: Text Search IeÅ¡koti Teksto Second: Antra: Scripture Reference Å ventojo RaÅ¡to Nuoroda Toggle to keep or clear the previous results. Perjunkite, kad iÅ¡laikytumÄ—te ar iÅ¡valytumÄ—te ankstesnius rezultatus. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? JÅ«s negalite derinti vienos ir dviejų dalių Biblijos eiluÄių paieÅ¡kos rezultatų. Ar norite iÅ¡trinti savo paieÅ¡kos rezultatus ir pradÄ—ti naujÄ… paieÅ¡kÄ…? Bible not fully loaded. Biblija ne pilnai įkelta. Information Informacija The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Antroje Biblijoje nÄ—ra visų eiluÄių, kurios yra pagrindinÄ—je Biblijoje. Bus rodomos tik eilutÄ—s rastos abiejose Biblijose. %d eiluÄių nebuvo įtraukta į rezultatus. Search Scripture Reference... Å ventojo RaÅ¡to Nuorodos PaieÅ¡ka... Search Text... IeÅ¡koti Tekste... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Ar tikrai norite pilnai iÅ¡trinti "%s" BiblijÄ… iÅ¡ OpenLP? Norint vÄ—l ja naudotis, jums reikÄ—s iÅ¡ naujo jÄ… importuoti. Advanced IÅ¡plÄ—stinÄ— BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Pateiktas neteisingas Biblijos failo tipas. OpenSong Biblijos gali bÅ«ti suglaudintos. PrieÅ¡ importuodami, iÅ¡ pradžių, privalote jas iÅ¡skleisti. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Pateiktas neteisingas Biblijos failo tipas. Jis atrodo kaip Zefania XML biblija, praÅ¡ome naudoti Zefania importavimo parinktį. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importuojama %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Å alinamos nenaudojamos žymÄ—s (tai gali užtrukti kelias minutes)... Importing %(bookname)s %(chapter)s... Importuojama %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Pasirinkite AtsarginÄ—s Kopijos KatalogÄ… Bible Upgrade Wizard Biblijos Naujinimo Vedlys This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Å is vedlys padÄ—s jums atnaujinti savo dabartines Biblijas nuo ankstesnÄ—s, nei OpenLP 2, versijos. Žemiau, spustelÄ—kite mygtukÄ… Kitas, kad pradÄ—tumÄ—te naujinimo procesÄ…. Select Backup Directory Pasirinkite AtsarginÄ—s Kopijos KatalogÄ… Please select a backup directory for your Bibles PraÅ¡ome pasirinkti jÅ«sų Biblijų atsarginių kopijų katalogÄ… Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Ankstesni OpenLP 2.0 leidimai negali naudoti atnaujintas Biblijas. ÄŒia bus sukurta jÅ«sų dabartinių Biblijų atsarginÄ— kopija, tam atvejui, jeigu reikÄ—s grįžti į ankstesnÄ™ OpenLP versijÄ…, taip galÄ—site lengvai nukopijuoti failus į ankstesnį OpenLP duomenų katalogÄ…. InstrukcijÄ…, kaip atkurti failus, galite rasti mÅ«sų <a href="http://wiki.openlp.org/faq">Dažniausiai Užduodamuose Klausimuose</a>. Please select a backup location for your Bibles. PraÅ¡ome pasirinkti jÅ«sų Biblijų atsarginių kopijų vietÄ…. Backup Directory: AtsarginÄ—s Kopijos Katalogas: There is no need to backup my Bibles NÄ—ra reikalo daryti atsarginÄ™ mano Biblijų kopijÄ… Select Bibles Pasirinkite Biblijas Please select the Bibles to upgrade PraÅ¡ome pasirinkti norimas naujinti Biblijas Upgrading Naujinama Please wait while your Bibles are upgraded. PraÅ¡ome palaukti, kol yra naujinamos jÅ«sų Biblijos. The backup was not successful. To backup your Bibles you need permission to write to the given directory. AtsarginÄ—s kopijos kÅ«rimas nesÄ—kmingas. NorÄ—dami sukurti atsarginÄ™, savo Biblijų, kopijÄ…, privalote turÄ—ti įraÅ¡ymo prieigos teisÄ™ duotam katalogui. Upgrading Bible %s of %s: "%s" Failed Naujinama Biblija %s iÅ¡ %s: "%s" Nepavyko Upgrading Bible %s of %s: "%s" Upgrading ... Naujinama Biblija %s iÅ¡ %s: "%s" Naujinama ... Download Error Atsisiuntimo Klaida To upgrade your Web Bibles an Internet connection is required. Norint naujinti jÅ«sų Žiniatinklio Biblijas, reikalingas interneto ryÅ¡ys. Upgrading Bible %s of %s: "%s" Upgrading %s ... Naujinama Biblija %s iÅ¡ %s: "%s" Naujinama %s ... Upgrading Bible %s of %s: "%s" Complete Naujinama Biblija %s iÅ¡ %s: "%s" Atlikta , %s failed , %s nepavyko Upgrading Bible(s): %s successful%s Biblijos(-ų) Naujinimas: %s sÄ—kmingas%s Upgrade failed. Naujinimas nepavyko. You need to specify a backup directory for your Bibles. Turite nurodyti atsarginÄ—s kopijos katalogÄ… savo Biblijoms. Starting upgrade... Pradedamas naujinimas... There are no Bibles that need to be upgraded. NÄ—ra Biblijų, kurias reikÄ—tų naujinti. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Pateiktas neteisingas Biblijos failo tipas. Zefania Biblijos gali bÅ«ti suglaudintos. PrieÅ¡ importuodami, iÅ¡ pradžių, privalote jas iÅ¡skleisti. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importuojama %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Tinkinta SkaidrÄ— Custom Slides name plural Tinkintos SkaidrÄ—s Custom Slides container title Tinkintos SkaidrÄ—s Load a new custom slide. Ä®kelti naujÄ… tinkintÄ… skaidrÄ™. Import a custom slide. Importuoti tinkintÄ… skaidrÄ™. Add a new custom slide. PridÄ—ti naujÄ… tinkintÄ… skaidrÄ™. Edit the selected custom slide. Redaguoti pasirinktÄ… tinkintÄ… skaidrÄ™. Delete the selected custom slide. IÅ¡trinti pasirinktÄ… tinkintÄ… skaidrÄ™. Preview the selected custom slide. PeržiÅ«rÄ—ti pasirinktÄ… tinkintÄ… skaidrÄ™. Send the selected custom slide live. Rodyti pasirinktÄ… tinkintÄ… skaidrÄ™ Gyvai. Add the selected custom slide to the service. PridÄ—ti pasirinktÄ… tinkintÄ… skaidrÄ™ prie pamaldų programos. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Tinkintos SkaidrÄ—s Papildinys </strong><br />Tinkintos skaidrÄ—s papildinys suteikia galimybÄ™ nustatinÄ—ti tinkinto teksto skaidres, kurios gali bÅ«ti rodomos ekrane taip pat, kaip ir giesmÄ—s. Å is papildinys, palyginus su giesmių papildiniu, suteikia daugiau laisvÄ—s. CustomPlugin.CustomTab Custom Display Tinkintas Rodinys Display footer Rodyti poraÅ¡tÄ™ Import missing custom slides from service files Importuoti trÅ«kstamas tinkintas skaidres iÅ¡ pamaldų programos failų CustomPlugin.EditCustomForm Edit Custom Slides Redaguoti Tinkintas Skaidres &Title: &Pavadinimas: Add a new slide at bottom. PridÄ—ti naujÄ… skaidrÄ™ apaÄioje. Edit the selected slide. Redaguoti pasirinktÄ… skaidrÄ™. Edit all the slides at once. Redaguoti visas skaidres iÅ¡ karto. Split a slide into two by inserting a slide splitter. Padalinti skaidrÄ™ į dvi, įterpiant skaidrÄ—s skirtukÄ…. The&me: Te&ma: &Credits: &PadÄ—kos: You need to type in a title. Turite įraÅ¡yti pavadinimÄ…. Ed&it All Re&daguoti VisÄ… Insert Slide Ä®terpti SkaidrÄ™ You need to add at least one slide. JÅ«s turite pridÄ—ti bent vienÄ… skaidrÄ™. CustomPlugin.EditVerseForm Edit Slide Redaguoti SkaidrÄ™ CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Paveikslo Papildinys</strong><br />Paveikslo papildinys suteikia paveikslų rodymo galimybÄ™.<br />Vienas iÅ¡ Å¡io papildinio iÅ¡skirtinių bruožų yra galimybÄ— Pamaldų Programos TvarkytuvÄ—je kartu grupuoti tam tikrÄ… paveikslų skaiÄių, taip padarant kelių paveikslų rodymÄ… dar lengvesnį. Å is papildinys taip pat naudojasi OpenLP "laiko ciklo" funkcija, kad sukurtų prezentacijÄ…, kuri yra automatiÅ¡kai paleidžiama. Be to, paveikslai iÅ¡ papildinio gali bÅ«ti naudojami esamos temos fono nustelbimui, kas savo ruožtu sukuria tekstu pagrįstus elementus, tokius kaip giesmÄ— su pasirinktu paveikslu, naudojamu kaip fonas, vietoj fono pateikiamo kartu su tema. Image name singular Paveikslas Images name plural Paveikslai Images container title Paveikslai Load a new image. Ä®kelti naujÄ… paveikslÄ…. Add a new image. PridÄ—ti naujÄ… paveikslÄ…. Edit the selected image. Redaguoti pasirinktÄ… paveikslÄ…. Delete the selected image. IÅ¡trinti pasirinktÄ… paveikslÄ…. Preview the selected image. PeržiÅ«rÄ—ti pasirinktÄ… paveikslÄ…. Send the selected image live. Rodyti pasirinktÄ… paveikslÄ… Gyvai. Add the selected image to the service. PridÄ—ti pasirinktÄ… paveikslÄ… prie pamaldų programos. ImagePlugin.AddGroupForm Add group PridÄ—ti grupÄ™ Parent group: PirminÄ— grupÄ—: Group name: GrupÄ—s pavadinimas: You need to type in a group name. Turite įraÅ¡yti grupÄ—s pavadinimÄ…. Could not add the new group. Nepavyko pridÄ—ti naujos grupÄ—s. This group already exists. Tokia grupÄ— jau yra. ImagePlugin.ChooseGroupForm Select Image Group Pasirinkite Paveikslų GrupÄ™ Add images to group: PridÄ—ti paveikslus į grupÄ™: No group Be grupÄ—s Existing group Jau esanÄiÄ… grupÄ™ New group NaujÄ… grupÄ™ ImagePlugin.ExceptionDialog Select Attachment Pasirinkti PriedÄ… ImagePlugin.MediaItem Select Image(s) Pasirinkite PaveikslÄ…(-us) You must select an image to replace the background with. Privalote pasirinkti paveikslÄ…, kuriuo pakeisite fonÄ…. Missing Image(s) TrÅ«ksta Paveikslo(-ų) The following image(s) no longer exist: %s SekanÄio paveikslo(-ų) daugiau nÄ—ra: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? SekanÄio paveikslo(-ų) daugiau nÄ—ra: %s Ar vistiek norite pridÄ—ti kitus paveikslus? There was a problem replacing your background, the image file "%s" no longer exists. Atsirado problemų, keiÄiant jÅ«sų fonÄ…, paveikslų failo "%s" daugiau nebÄ—ra. There was no display item to amend. Nebuvo rodymo elementų, kuriuos galima buvo pridÄ—ti. -- Top-level group -- -- AukÅ¡Äiausio lygio grupÄ— -- You must select an image or group to delete. Privalote pasirinkti paveikslÄ… ar grupÄ™, kuriÄ… Å¡alinsite. Remove group Å alinti grupÄ™ Are you sure you want to remove "%s" and everything in it? Ar tikrai norite Å¡alinti "%s" ir viskÄ… kas joje yra? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Matomas, paveikslų su kitokia nei ekrano proporcija, fonas. Media.player Audio Garso Ä®raÅ¡ai Video Vaizdo Ä®raÅ¡ai VLC is an external player which supports a number of different formats. VLC yra iÅ¡orinis grotuvas, kuris palaiko didelį įvairių formatų skaiÄių. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit yra medija grotuvas, kuris vykdomas narÅ¡yklÄ—s viduje. Å is grotuvas leidžia atvaizduoti tekstÄ… virÅ¡ vaizdo. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Medija Papildinys</strong><br />Medija papildinys atsako už garso ir vaizdo įrašų grojimÄ…. Media name singular Medija Media name plural Medija Media container title Medija Load new media. Ä®kelti naujÄ… medijÄ…. Add new media. PridÄ—ti naujÄ… medijÄ…. Edit the selected media. Redaguoti pasirinktÄ… medijÄ…. Delete the selected media. IÅ¡trinti pasirinktÄ… medijÄ…. Preview the selected media. PeržiÅ«rÄ—ti pasirinktÄ… medijÄ…. Send the selected media live. Rodyti pasirinktÄ… medijÄ… Gyvai. Add the selected media to the service. PridÄ—ti pasirinktÄ… medijÄ… prie pamaldų programos. MediaPlugin.MediaClipSelector Select Media Clip Pasirinkti Medija IÅ¡karpÄ… Source Å altinis Media path: Medijos kelias: Select drive from list Pasirinkti diskÄ… iÅ¡ sÄ…raÅ¡o Load disc Ä®kelti diskÄ… Track Details IÅ¡samiau apie Takelį Title: Pavadinimas: Audio track: Garso takelis: Subtitle track: Subtitrų takelis: HH:mm:ss.z HH:mm:ss.z Clip Range IÅ¡karpos Rėžis Start point: Pradžios taÅ¡kas: Set start point Nustatyti pradžios taÅ¡kÄ… Jump to start point PerÅ¡okti į pradžios taÅ¡kÄ… End point: Pabaigos taÅ¡kas: Set end point Nustatyti pabaigos taÅ¡kÄ… Jump to end point PerÅ¡okti į pabaigos taÅ¡kÄ… MediaPlugin.MediaClipSelectorForm No path was given Nenurodytas kelias Given path does not exists Nurodyto kelio nÄ—ra An error happened during initialization of VLC player Ä®vyko klaida VLC grotuvo inicijavimo metu VLC player failed playing the media VLC grotuvui nepavyko groti medijos CD not loaded correctly CD neįsikÄ—lÄ— teisingai The CD was not loaded correctly, please re-load and try again. CD nebuvo įkeltas teisingai, praÅ¡ome įkelti iÅ¡ naujo ir bandyti dar kartÄ…. DVD not loaded correctly DVD įkeltas neteisingai The DVD was not loaded correctly, please re-load and try again. DVD buvo įkeltas neteisingai, praÅ¡ome įkelti iÅ¡ naujo ir bandyti dar kartÄ…. Set name of mediaclip Nustatyti medija iÅ¡karpos pavadinimÄ… Name of mediaclip: Medija iÅ¡karpos pavadinimas: Enter a valid name or cancel Ä®veskite teisingÄ… pavadinimÄ… arba atÅ¡aukite Invalid character Netesingas simbolis The name of the mediaclip must not contain the character ":" Medija iÅ¡karpos pavadinime negali bÅ«ti simbolio ":" MediaPlugin.MediaItem Select Media Pasirinkite MedijÄ… You must select a media file to delete. Privalote pasirinkti norimÄ… iÅ¡trinti medija failÄ…. You must select a media file to replace the background with. Privalote pasirinkti medija failÄ…, kuriuo pakeisite fonÄ…. There was a problem replacing your background, the media file "%s" no longer exists. Ä®vyko problema, keiÄiant jÅ«sų fonÄ…, medijos failo "%s" nebÄ—ra. Missing Media File TrÅ«ksta Medija Failo The file %s no longer exists. Failo %s jau nebÄ—ra. Videos (%s);;Audio (%s);;%s (*) Vaizdo įraÅ¡ai (%s);;Garso įraÅ¡ai (%s);;%s (*) There was no display item to amend. Nebuvo rodymo elementų, kuriuos galima buvo pridÄ—ti. Unsupported File Nepalaikomas Failas Use Player: Naudoti GrotuvÄ…: VLC player required Reikalingas VLC grotuvas VLC player required for playback of optical devices Optinių įrenginių grojimui reikalingas VLC grotuvas Load CD/DVD Ä®kelti CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Ä®kelti CD/DVD - palaikoma tik tuomet, kai yra įdiegta ir įjungta VLC The optical disc %s is no longer available. Optinis diskas %s daugiau neprieinamas. Mediaclip already saved Medijos iÅ¡karpa jau iÅ¡saugota This mediaclip has already been saved Å i medijos iÅ¡karpa jau yra iÅ¡saugota MediaPlugin.MediaTab Allow media player to be overridden Leisti medija grotuvui bÅ«ti nustelbtam Start Live items automatically AutomatiÅ¡kai paleisti Gyvai rodomus elementus OPenLP.MainWindow &Projector Manager &Projektorių TvarkytuvÄ— OpenLP Image Files Paveikslų Failai Information Informacija Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Biblijos formatas pasikeitÄ—. Turite atnaujinti dabartines Biblijas. Ar OpenLP turÄ—tų naujinti dabar? Backup AtsarginÄ— Kopija OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP buvo atnaujinta, ar norite sukurti atsarginÄ™ OpenLP duomenų aplanko kopijÄ…? Backup of the data folder failed! Nepavyko sukurti duomenų aplanko atsarginÄ™ kopijÄ…! A backup of the data folder has been created at %s Duomenų aplanko atsarginÄ— kopija buvo sukurta %s Open Atidaryti OpenLP.AboutForm Credits PadÄ—kos License Licencija build %s versija %s 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; version 2 of the License. Å i programa yra laisva programinÄ— įranga; jÅ«s galite jÄ… platinti ir/arba modifikuoti remdamiesi Free Software Foundation paskelbtomis GNU Bendrosios VieÅ¡osios Licencijos sÄ…lygomis; licencijos 2 versija. 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 below for more details. Å i programa platinama, tikintis, kad ji bus naudinga, taÄiau BE JOKIŲ GARANTIJŲ; netgi be numanomos PARDAVIMO ar TINKAMUMO TAM TIKRAM TIKSLUI garantijos. IÅ¡samiau apie tai, žiÅ«rÄ—kite žemiau. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Atvirojo Kodo Giesmių Žodžių Projekcija OpenLP yra bažnyÄioms skirta, laisva pateikÄių programinÄ— įranga, arba giesmių žodžių projekcijos programinÄ— įranga, naudojama giesmių skaidrių, Biblijos eiluÄių, vaizdo, paveikslų, ir netgi pateikÄių (jei Impress, PowerPoint ar PowerPoint Viewer yra įdiegti) rodymui bažnyÄioje, Å¡lovinimo metu, naudojant kompiuterį ir projektorių. Sužinokite daugiau apie OpenLP: http://openlp.org/ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jÅ«s norÄ—tumÄ—te matyti daugiau KrikÅ¡ÄioniÅ¡kos programinÄ—s įrangos, praÅ¡ome prisidÄ—ti ir savanoriauti, pasinaudojant žemiau esanÄiu mygtuku. Volunteer Savanoriauti Project Lead Projekto vadovas Developers KÅ«rÄ—jai Contributors Talkininkai Packagers Pakuotojai Testers Testuotojai Translators VertÄ—jai Afrikaans (af) Czech (cs) ÄŒekų (cs) Danish (da) Danų (da) German (de) VokieÄių (de) Greek (el) Graikų (el) English, United Kingdom (en_GB) Anglų, JungtinÄ— KaralystÄ— (en_GB) English, South Africa (en_ZA) Anglų, Pietų Afrika (en_ZA) Spanish (es) Ispanų (es) Estonian (et) Estų (et) Finnish (fi) Suomių (fi) French (fr) PrancÅ«zų (fr) Hungarian (hu) Vengrų (hu) Indonesian (id) Japanese (ja) Japonų (ja) Norwegian BokmÃ¥l (nb) Norvegų BokmÃ¥l (nb) Dutch (nl) Olandų (nl) Polish (pl) Lenkų (pl) Portuguese, Brazil (pt_BR) Portugalų, Brazilija (pt_BR) Russian (ru) Rusų (ru) Swedish (sv) Å vedų (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Kinų(Kinija) (zh_CN) Documentation Dokumentacija Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Sukurta su Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen piktogramos: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Autorių TeisÄ—s © 2004-2016 %s Autorių Teisių dalys © 2004-2016 %s OpenLP.AdvancedTab UI Settings Vartotojo SÄ…sajos Nustatymai Number of recent files to display: Rodomų paskiausių failų skaiÄius: Remember active media manager tab on startup Atsiminti aktyviÄ… medija tvarkytuvÄ—s kortelÄ™, paleidus programÄ… Double-click to send items straight to live Dvigubas spustelÄ—jimas pradeda rodyti elementus Gyvai Expand new service items on creation SukÅ«rus, iÅ¡skleisti naujus pamaldų programos elementus Enable application exit confirmation Ä®jungti išėjimo iÅ¡ programos patvirtinimÄ… Mouse Cursor PelÄ—s Žymeklis Hide mouse cursor when over display window SlÄ—pti pelÄ—s žymeklį, kai jis yra virÅ¡ rodymo lango Default Image Numatytasis Paveikslas Background color: Fono spalva: Image file: Paveikslo failas: Open File Atidaryti FailÄ… Advanced IÅ¡plÄ—stinÄ— Preview items when clicked in Media Manager PeržiÅ«rÄ—ti elementus, kai ant jų spustelÄ—jama Medija TvarkytuvÄ—je Browse for an image file to display. NarÅ¡yti, ieÅ¡kant rodymui skirto paveikslų failo. Revert to the default OpenLP logo. Atkurti numatytajį OpenLP logotipÄ…. Default Service Name Numatytasis Pamaldų Pavadinimas Enable default service name Ä®jungti numatytÄ…jį pamaldų pavadinimÄ… Date and Time: Data ir Laikas: Monday Pirmadienis Tuesday Antradienis Wednesday TreÄiadienis Friday Penktadienis Saturday Å eÅ¡tadienis Sunday Sekmadienis Now Dabar Time when usual service starts. Laikas, kada įprastai prasideda pamaldos. Name: Pavadinimas: Consult the OpenLP manual for usage. IÅ¡samesnÄ—s informacijos kaip naudoti, ieÅ¡kokite OpenLP vartotojo vadove. Revert to the default service name "%s". Atkurti numatytÄ…jį pamaldų pavadinimÄ… "%s". Example: Pavyzdys: Bypass X11 Window Manager Apeiti X11 Langų TvarkytuvÄ™ Syntax error. SintaksÄ—s klaida. Data Location Duomenų Vieta Current path: Dabartinis kelias: Custom path: Tinkintas kelias: Browse for new data file location. NarÅ¡yti naujÄ… duomenų failų vietÄ…. Set the data location to the default. Nustatyti numatytÄ…jÄ… duomenų vietÄ…. Cancel AtÅ¡aukti Cancel OpenLP data directory location change. AtÅ¡aukti OpenLP duomenų katalogo vietos pakeitimÄ…. Copy data to new location. Kopijuoti duomenis į naujÄ… vietÄ…. Copy the OpenLP data files to the new location. Kopijuoti OpenLP duomenų failus į naujÄ…jÄ… vietÄ…. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>Ä®SPÄ–JIMAS:</strong> Naujame duomenų kataloge yra OpenLP duomenų failai. Å ie failai kopijavimo metu BUS pakeisti. Data Directory Error Duomenų Katalogo Klaida Select Data Directory Location Pasirinkite Duomenų Katalogo VietÄ… Confirm Data Directory Change Patvirtinkite Duomenų Katalogo PakeitimÄ… Reset Data Directory Atkurti Duomenų KatalogÄ… Overwrite Existing Data Pakeisti Esamus Duomenis OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP duomenų katalogas buvo nerastas %s AnksÄiau, Å¡i duomenų katalogo vieta buvo pakeista į kitokiÄ…, nei numatyta OpenLP. Jeigu nauja vieta yra keiÄiamoje laikmenoje, tuomet, Å¡i laikmena privalo tapti prieinama. SpustelÄ—kite "Ne", kad sustabdytumÄ—te OpenLP įkelimÄ…, taip leidžiant jums patiems iÅ¡sprÄ™sti problemÄ…. SpustelÄ—kite "Taip", kad atkurtumÄ—te duomenų katalogo vietÄ… į numatytÄ…jÄ…. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Ar tikrai norite pakeisti OpenLP duomenų katalogo vietÄ… į: %s Duomenų katalogas bus pakeistas, uždarius OpenLP. Thursday Ketvirtadienis Display Workarounds Rodyti ApÄ—jimus Use alternating row colours in lists SÄ…raÅ¡uose naudoti kintamÄ…sias eiluÄių spalvas WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Ä®SPÄ–JIMAS: Atrodo, kad vietoje, kuriÄ… pasirinkote %s yra OpenLP duomenų failai. Ar norÄ—tumÄ—te pakeisti tuos failus esamais duomenų failais? Restart Required Reikalingas paleidimas iÅ¡ naujo This change will only take effect once OpenLP has been restarted. Å is pakeitimas įsigalios tik tada, kai OpenLP bus paleista iÅ¡ naujo. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. SpustelÄ—kite, norÄ—dami pasirinkti spalvÄ…. OpenLP.DB RGB RGB Video Vaizdo Ä®raÅ¡ai Digital Skaitmeninis Storage Talpykla Network Tinklas RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Vaizdas 1 Video 2 Vaizdas 2 Video 3 Vaizdas 3 Video 4 Vaizdas 4 Video 5 Vaizdas 5 Video 6 Vaizdas 6 Video 7 Vaizdas 7 Video 8 Vaizdas 8 Video 9 Vaizdas 9 Digital 1 Skaitmeninis 1 Digital 2 Skaitmeninis 2 Digital 3 Skaitmeninis 3 Digital 4 Skaitmeninis 4 Digital 5 Skaitmeninis 5 Digital 6 Skaitmeninis 6 Digital 7 Skaitmeninis 7 Digital 8 Skaitmeninis 8 Digital 9 Skaitmeninis 9 Storage 1 Talpykla 1 Storage 2 Talpykla 2 Storage 3 Talpykla 3 Storage 4 Talpykla 4 Storage 5 Talpykla 5 Storage 6 Talpykla 6 Storage 7 Talpykla 7 Storage 8 Talpykla 8 Storage 9 Talpykla 9 Network 1 Tinklas 1 Network 2 Tinklas 2 Network 3 Tinklas 3 Network 4 Tinklas 4 Network 5 Tinklas 5 Network 6 Tinklas 6 Network 7 Tinklas 7 Network 8 Tinklas 8 Network 9 Tinklas 9 OpenLP.ExceptionDialog Error Occurred Ä®vyko Klaida Send E-Mail Siųsti El. laiÅ¡kÄ… Save to File IÅ¡saugoti į FailÄ… Attach File Prisegti FailÄ… Description characters to enter : %s Ä®vesti apraÅ¡o simbolių : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) PraÅ¡ome įvesti aprašą kÄ… darÄ—te, kas privertÄ— atsirasti Å¡iÄ… klaidÄ…. Jei įmanoma, raÅ¡ykite anglų kalba. (Mažiausiai 20 simbolių) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oj! OpenLP susidÅ«rÄ— su problema ir nesugebÄ—jo pasitaisyti. Žemiau, langelyje esanÄiame tekste, yra informacija, kuri gali bÅ«ti naudinga OpenLP kÅ«rÄ—jams, tad praÅ¡ome iÅ¡siųsti jÄ… elektroniniu paÅ¡tu į bugs@openlp.org, kartu su iÅ¡samiu apraÅ¡u, pasakojanÄiu kÄ… veikÄ—te, kai įvyko klaida. Taip pat pridÄ—kite failus, kurie galÄ—jo sukelti problemÄ…. OpenLP.ExceptionForm Platform: %s Platforma: %s Save Crash Report IÅ¡saugoti Strigties AtaskaitÄ… Text files (*.txt *.log *.text) Tekstiniai failai (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Pervadinti FailÄ… New File Name: Naujas Failo Pavadinimas: File Copy Kopijuoti FailÄ… OpenLP.FirstTimeLanguageForm Select Translation Pasirinkite VertimÄ… Choose the translation you'd like to use in OpenLP. Pasirinkite vertimÄ…, kurį norÄ—tumÄ—te naudoti OpenLP. Translation: Vertimas: OpenLP.FirstTimeWizard Songs GiesmÄ—s First Time Wizard Pirmojo Karto Vedlys Welcome to the First Time Wizard Sveiki AtvykÄ™ į Pirmojo Karto Vedlį Activate required Plugins Aktyvuokite reikiamus Papildinius Select the Plugins you wish to use. Pasirinkite Papildinius, kuriuos norÄ—tumÄ—te naudoti. Bible Biblija Images Paveikslai Presentations Pateiktys Media (Audio and Video) Medija (Garso ir Vaizdo Ä®raÅ¡ai) Allow remote access Leisti nuotolinÄ™ prieigÄ… Monitor Song Usage PrižiÅ«rÄ—ti Giesmių NaudojimÄ… Allow Alerts Leisti Ä®spÄ—jimus Default Settings Numatytieji Nustatymai Downloading %s... AtsiunÄiama %s... Enabling selected plugins... Ä®jungiami pasirinkti papildiniai... No Internet Connection NÄ—ra Interneto RyÅ¡io Unable to detect an Internet connection. Nepavyko aptikti interneto ryÅ¡io. Sample Songs PavyzdinÄ—s GiesmÄ—s Select and download public domain songs. Pasirinkite ir atsisiųskite vieÅ¡osios srities giesmes. Sample Bibles PavyzdinÄ—s Biblijos Select and download free Bibles. Pasirinkite ir atsisiųskite nemokamas Biblijas. Sample Themes PavyzdinÄ—s Temos Select and download sample themes. Pasirinkite ir atsisiųskite pavyzdines temas. Set up default settings to be used by OpenLP. Nustatykite numatytuosius nustatymus, kuriuos naudos OpenLP. Default output display: Numatytasis iÅ¡vesties ekranas: Select default theme: Pasirinkite numatytÄ…jÄ… temÄ…: Starting configuration process... Pradedamas konfigÅ«racijos procesas... Setting Up And Downloading Nustatymas ir Atsiuntimas Please wait while OpenLP is set up and your data is downloaded. PraÅ¡ome palaukti kol OpenLP bus nustatyta ir jÅ«sų duomenys atsiųsti. Setting Up Nustatoma Custom Slides Tinkintos SkaidrÄ—s Finish Pabaiga No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Neaptikta Interneto ryÅ¡io. Pirmojo Karto Vedlys reikalauja Interneto ryÅ¡io, kad galÄ—tų atsiųsti pavyzdines giesmes, Biblijas ir temas. SpustelÄ—kite Pabaigos mygtukÄ… dabar, kad paleistumÄ—te OpenLP su pradiniais nustatymais ir be jokių pavyzdinių duomenų. NorÄ—dami iÅ¡ naujo paleisti Pirmojo Karto Vedlį ir importuoti Å¡iuos pavyzdinius duomenis vÄ—liau, patikrinkite savo Interneto ryšį ir iÅ¡ naujo paleiskite šį vedlį, pasirinkdami programoje OpenLP "Ä®rankiai/IÅ¡ naujo paleisti Pirmojo Karto Vedlį". Download Error Atsisiuntimo Klaida There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Atsiuntimo metu įvyko ryÅ¡io klaida, tolimesni atsiuntimai bus praleisti. Pabandykite iÅ¡ naujo paleisti Pirmojo Karto Vedlį vÄ—liau. Download complete. Click the %s button to return to OpenLP. Atsiuntimas užbaigtas. SpustelÄ—kite mygtukÄ… %s, kad grįžtumÄ—te į OpenLP. Download complete. Click the %s button to start OpenLP. Atsiuntimas užbaigtas. SpustelÄ—kite mygtukÄ… %s, kad paleistumÄ—te OpenLP. Click the %s button to return to OpenLP. SpustelÄ—kite mygtukÄ… %s, kad grįžtumÄ—te į OpenLP. Click the %s button to start OpenLP. SpustelÄ—kite mygtukÄ… %s, kad paleistumÄ—te OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Atsiuntimo metu atsirado ryÅ¡io problemų, todÄ—l tolimesni atsiuntimai bus praleisti. VÄ—liau pabandykite iÅ¡ naujo paleisti Pirmojo Karto Vedlį. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Å is vedlys padÄ—s jums sukonfigÅ«ruoti OpenLP pradiniam naudojimui. Kad pradÄ—tumÄ—te, spustelÄ—kite apaÄioje esantį mygtukÄ… %s. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Kad visiÅ¡kai atÅ¡auktumÄ—te Pirmojo Karto Vedlį (ir nepaleistumÄ—te OpenLP), spustelÄ—kite dabar mygtukÄ… %s. Downloading Resource Index AtsiunÄiamas IÅ¡tekliaus Indeksas Please wait while the resource index is downloaded. PraÅ¡ome palaukti, kol bus atsiųstas iÅ¡tekliaus indeksas. Please wait while OpenLP downloads the resource index file... PraÅ¡ome palaukti, kol OpenLP atsiųs iÅ¡tekliaus indekso failÄ…... Downloading and Configuring AtsiunÄiama ir KonfigÅ«ruojama Please wait while resources are downloaded and OpenLP is configured. PraÅ¡ome palaukti, kol bus atsiųsti iÅ¡tekliai ir konfigÅ«ruota OpenLP. Network Error Tinklo Klaida There was a network error attempting to connect to retrieve initial configuration information Ä®vyko tinklo klaida, bandant prisijungti ir gauti pradinÄ™ sÄ…rankos informacijÄ… Cancel AtÅ¡aukti Unable to download some files Nepavyko atsisiųsti kai kurių failų OpenLP.FormattingTagDialog Configure Formatting Tags KonfigÅ«ruoti Formatavimo Žymes Description ApraÅ¡as Tag ŽymÄ— Start HTML Pradžios HTML End HTML Pabaigos HTML Default Formatting Numatytasis Formatavimas Custom Formatting Pasirinktinis Formatavimas OpenLP.FormattingTagForm <HTML here> <HTML Äia> Validation Error Tikrinimo Klaida Description is missing TrÅ«ksta apraÅ¡o Tag is missing TrÅ«ksta žymÄ—s Tag %s already defined. ŽymÄ— %s jau yra apibrėžta. Description %s already defined. ApraÅ¡as %s jau yra apibrėžtas. Start tag %s is not valid HTML Pradžios žymÄ— %s nÄ—ra teisingas HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Raudona Black Juoda Blue MÄ—lyna Yellow Geltona Green Žalia Pink RožinÄ— Orange OranžinÄ— Purple VioletinÄ— White Balta Superscript VirÅ¡utinis indeksas Subscript Apatinis indeksas Paragraph Pastraipa Bold Pusjuodis Italics Kursyvas Underline Pabrauktas Break Lūžis OpenLP.GeneralTab General Bendra Monitors Vaizduokliai Select monitor for output display: Pasirinkite vaizduoklį iÅ¡vesties ekranui: Display if a single screen Rodyti jei vienas ekranas Application Startup Programos Paleidimas Show blank screen warning Rodyti tuÅ¡Äio ekrano įspÄ—jimÄ… Automatically open the last service AutomatiÅ¡kai atidaryti paskiausiÄ… pamaldų programÄ… Show the splash screen Rodyti pristatymo langÄ… Application Settings Programos Nustatymai Prompt to save before starting a new service Raginti iÅ¡saugoti, prieÅ¡ pradedant naujÄ… pamaldų programÄ… Automatically preview next item in service AutomatiÅ¡kai peržiÅ«rÄ—ti kitÄ… pamaldų programos elementÄ… sec sek CCLI Details CCLI DetalÄ—s SongSelect username: SongSelect naudotojo vardas: SongSelect password: SongSelect slaptažodis: X X Y Y Height AukÅ¡tis Width Plotis Check for updates to OpenLP Patikrinti ar yra atnaujinimų OpenLP Unblank display when adding new live item Atidengti ekranÄ…, kai į rodymÄ… Gyvai, pridedamas naujas elementas Timed slide interval: SkaidrÄ—s laiko intervalas: Background Audio Fono Garsas Start background audio paused PradÄ—ti, pristabdžius fono garso įrašą Service Item Slide Limits Pamaldų Programos Elemento SkaidrÄ—s Ribos Override display position: Nustelbti rodymo pozicijÄ…: Repeat track list Kartoti takelių sÄ…rašą Behavior of next/previous on the last/first slide: Perjungimo kita/ankstesnÄ—, elgsena, esant paskutinei/pirmai skaidrei: &Remain on Slide &Pasilikti SkaidrÄ—je &Wrap around P&rasukinÄ—ti skaidres &Move to next/previous service item P&ereiti prie kito/ankstesnio pamaldų programos elemento OpenLP.LanguageManager Language Kalba Please restart OpenLP to use your new language setting. NorÄ—dami naudotis naujais kalbos nustatymais, paleiskite OpenLP iÅ¡ naujo. OpenLP.MainDisplay OpenLP Display OpenLP Ekranas OpenLP.MainWindow &File &Failas &Import I&mportuoti &Export &Eksportuoti &View &Rodinys M&ode &Veiksena &Tools Ä®r&ankiai &Settings &Nustatymai &Language Ka&lba &Help &Pagalba Service Manager Pamaldų Programos TvarkytuvÄ— Theme Manager Temų TvarkytuvÄ— Open an existing service. Atidaryti esamÄ… pamaldų programÄ…. Save the current service to disk. IÅ¡saugoti dabartinÄ™ pamaldų programÄ… į diskÄ…. Save Service As IÅ¡saugoti Pamaldų ProgramÄ… Kaip Save the current service under a new name. IÅ¡saugoti dabartinÄ™ pamaldų programÄ… nauju pavadinimu. E&xit &IÅ¡eiti Quit OpenLP Baigti OpenLP darbÄ… &Theme &TemÄ… &Configure OpenLP... &KonfigÅ«ruoti OpenLP... &Media Manager &Medija TvarkytuvÄ— Toggle Media Manager Perjungti Medija TvarkytuvÄ™ Toggle the visibility of the media manager. Perjungti medija tvarkytuvÄ—s matomumÄ…. &Theme Manager &Temų TvarkytuvÄ— Toggle Theme Manager Perjungti Temų TvarkytuvÄ™ Toggle the visibility of the theme manager. Perjungti temų tvarkytuvÄ—s matomumÄ…. &Service Manager Pama&ldų Programos TvarkytuvÄ— Toggle Service Manager Perjungti Pamaldų Programos TvarkytuvÄ™ Toggle the visibility of the service manager. Perjungti pamaldų programos tvarkytuvÄ—s matomumÄ…. &Preview Panel P&eržiÅ«ros Skydelis Toggle Preview Panel Perjungti PeržiÅ«ros Skydelį Toggle the visibility of the preview panel. Perjungti peržiÅ«ros skydelio matomumÄ…. &Live Panel G&yvai Skydelis Toggle Live Panel Perjungti Skydelį Gyvai Toggle the visibility of the live panel. Perjungti skydelio Gyvai matomumÄ…. List the Plugins IÅ¡vardinti Papildinius &User Guide &Naudotojo Vadovas &About &Apie More information about OpenLP Daugiau informacijos apie OpenLP &Online Help Pagalba &Internete &Web Site &Tinklalapis Use the system language, if available. Jei įmanoma, naudoti sistemos kalbÄ…. Set the interface language to %s Nustatyti sÄ…sajos kalbÄ… į %s Add &Tool... PridÄ—ti Ä®&rankį... Add an application to the list of tools. PridÄ—ti programÄ… į įrankų sÄ…rašą. &Default &Numatytoji Set the view mode back to the default. Nustatyti rodinio veiksenÄ… į numatytÄ…jÄ…. &Setup &Parengimo Set the view mode to Setup. Nustatyti rodinio veiksenÄ… į Parengimo. &Live &Gyvo rodymo Set the view mode to Live. Nustatyti rodinio veiksenÄ… į Gyvo rodymo. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP versija %s yra prieinama atsiuntimui (Å¡iuo metu jÅ«sų vykdoma versija yra %s). Galite atsisiųsti paskiausiÄ… versijÄ… iÅ¡ http://openlp.org/. OpenLP Version Updated OpenLP Versija Atnaujinta OpenLP Main Display Blanked OpenLP Pagrindinis Ekranas Uždengtas The Main Display has been blanked out Pagrindinis Ekranas buvo uždengtas Default Theme: %s Numatytoji Tema: %s English Please add the name of your language here Lithuanian Configure &Shortcuts... KonfigÅ«ruoti &SparÄiuosius KlaviÅ¡us... Open &Data Folder... Atidaryti &Duomenų AplankÄ….... Open the folder where songs, bibles and other data resides. Atidaryti aplankÄ…, kuriame yra giesmÄ—s, Biblijos bei kiti duomenys. &Autodetect &Aptikti automatiÅ¡kai Update Theme Images Atnaujinti Temos Paveikslus Update the preview images for all themes. Atnaujinti visų temų peržiÅ«ros paveikslus. Print the current service. Spausdinti dabartinÄ™ pamaldų programÄ…. L&ock Panels &Užrakinti Skydelius Prevent the panels being moved. Neleisti perkelti skydelius. Re-run First Time Wizard IÅ¡ naujo paleisti Pirmojo Karto Vedlį Re-run the First Time Wizard, importing songs, Bibles and themes. IÅ¡ naujo paleisti Pirmojo Karto Vedlį, giesmių, Biblijų ir temų importavimui. Re-run First Time Wizard? Paleisti Pirmojo Karto Vedlį iÅ¡ naujo? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Ar tikrai norite paleisti Pirmojo Karto Vedlį iÅ¡ naujo? Å io vedlio paleidimas iÅ¡ naujo, gali pakeisti jÅ«sų dabartinÄ™ OpenLP konfigÅ«racijÄ… ir, galbÅ«t, į esanÄių giesmių sÄ…rašą, pridÄ—ti giesmių bei pakeisti jÅ«sų numatytÄ…jÄ… temÄ…. Clear List Clear List of recent files IÅ¡valyti SÄ…rašą Clear the list of recent files. IÅ¡valyti paskiausių failų sÄ…rašą. Configure &Formatting Tags... KonfigÅ«ruoti &Formatavimo Žymes Export OpenLP settings to a specified *.config file Eksportuoti OpenLP nustatymus į nurodytÄ… *.config failÄ… Settings Nustatymus Import OpenLP settings from a specified *.config file previously exported on this or another machine Importuoti OpenLP nustatymus iÅ¡ nurodyto *.config failo, kuris ankÅ¡Äiau buvo eksportuotas Å¡iame ar kitame kompiuteryje Import settings? Importuoti nustatymus? Open File Atidaryti FailÄ… OpenLP Export Settings Files (*.conf) OpenLP Eksportuoti Nustatymų Failai (*.conf) Import settings Importavimo nustatymai OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP dabar bus uždaryta. Importuoti nustatymai bus pritaikyti kitÄ… kartÄ…, paleidus OpenLP. Export Settings File Eksportuoti Nustatymų FailÄ… OpenLP Export Settings File (*.conf) OpenLP Eksportuotas Nustatymų Failas (*.conf) New Data Directory Error Naujo Duomenų Katalogo Klaida Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP duomenys kopijuojami į naujÄ… duomenų katalogo vietÄ… - %s - PraÅ¡ome palaukti, kol bus užbaigtas kopijavimas OpenLP Data directory copy failed %s OpenLP Duomenų katalogo kopijavimas nepavyko %s General Bendra Library Biblioteka Jump to the search box of the current active plugin. Pereiti prie dabartinio aktyvaus papildinio paieÅ¡kos lango. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Ar tikrai norite importuoti nustatymus? Nustatymų importavimas padarys pastovius pakeitimus jÅ«sų dabartinei OpenLP konfigÅ«racijai. Neteisingų nustatymų importavimas gali sukelti nepastoviÄ… elgsenÄ… arba nenormalius OpenLP darbo trikdžius. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Failas, kurį pasirinkote, neatrodo kaip teisingas OpenLP nustatymų failas. Apdorojimas buvo nutrauktas ir nepadaryta jokių pokyÄių. Projector Manager Projektorių TvarkytuvÄ— Toggle Projector Manager Perjungti Projektorių TvarkytuvÄ™ Toggle the visibility of the Projector Manager Perjungti Projektorių TvarkytuvÄ—s matomumÄ… Export setting error Nustatymų eksportavimo klaida The key "%s" does not have a default value so it will be skipped in this export. Raktas "%s" neturi numatytosios reikÅ¡mÄ—s, todÄ—l Å¡iame eksportavime jis bus praleistas. An error occurred while exporting the settings: %s Eksportuojant nustatymus įvyko klaida: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins &Tvarkyti papildinius Exit OpenLP IÅ¡eiti iÅ¡ OpenLP Are you sure you want to exit OpenLP? Ar tikrai norite iÅ¡eiti iÅ¡ OpenLP? &Exit OpenLP IÅ¡&eiti iÅ¡ OpenLP OpenLP.Manager Database Error Duomenų BazÄ—s Klaida The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Ä®keliama duomenų bazÄ— buvo sukurta, naudojant naujesnÄ™ OpenLP versijÄ…. Duomenų bazÄ—s versija yra %d, tuo tarpu OpenLP reikalauja versijos %d. Duomenų bazÄ— nebus įkelta. Duomenų bazÄ—: %s OpenLP cannot load your database. Database: %s OpenLP nepavyko įkelti jÅ«sų duomenų bazÄ—s. Duomenų bazÄ—: %s OpenLP.MediaManagerItem No Items Selected Nepasirinkti Elementai &Add to selected Service Item &PridÄ—ti prie pasirinkto Pamaldų programos elemento You must select one or more items to preview. PeržiÅ«rai, privalote pasirinkti vienÄ… ar daugiau elementų. You must select one or more items to send live. Rodymui Gyvai, privalote pasirinkti vienÄ… ar daugiau elementų. You must select one or more items. Privalote pasirinkti vienÄ… ar daugiau elementų. You must select an existing service item to add to. Privalote pasirinkti prie kurio, jau esanÄio, pamaldų programos elemento pridÄ—ti. Invalid Service Item Neteisingas Pamaldų Programos Elementas You must select a %s service item. Privalote pasirinkti pamaldų programos elementÄ… %s. You must select one or more items to add. Privalote pasirinkti vienÄ… ar daugiau elementų, kuriuos pridÄ—site. No Search Results Jokių PaieÅ¡kos Rezultatų Invalid File Type Neteisingas Failo Tipas Invalid File %s. Suffix not supported Neteisingas Failas %s. Nepalaikoma priesaga &Clone &Dublikuoti Duplicate files were found on import and were ignored. Importuojant, buvo rasti failų dublikatai ir jų buvo nepaisoma. OpenLP.OpenLyricsImportError <lyrics> tag is missing. TrÅ«ksta <lyrics> žymÄ—s. <verse> tag is missing. TrÅ«ksta <verse> žymÄ—s. OpenLP.PJLink1 Unknown status Nežinoma bÅ«sena No message NÄ—ra praneÅ¡imų Error while sending data to projector Klaida, siunÄiant duomenis į projektorių Undefined command: Neapibrėžta komanda: OpenLP.PlayerTab Players Grotuvai Available Media Players Prieinami Medija Grotuvai Player Search Order Grotuvų PaieÅ¡kos Tvarka Visible background for videos with aspect ratio different to screen. Matomas, vaizdo įrašų su kitokia nei ekrano proporcija, fonas. %s (unavailable) %s (neprieinama) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" PASTABA: NorÄ—dami naudoti VLC, privalote įdiegti %s versijÄ… OpenLP.PluginForm Plugin Details IÅ¡samiau apie Papildinį Status: BÅ«sena: Active Aktyvus Inactive Neaktyvus %s (Inactive) %s (Neaktyvus) %s (Active) %s (Aktyvus) %s (Disabled) %s (IÅ¡jungta) Manage Plugins Tvarkyti papildinius OpenLP.PrintServiceDialog Fit Page Priderinti prie Puslapio Fit Width Priderinti prie PloÄio OpenLP.PrintServiceForm Options Parinktys Copy Kopijuoti Copy as HTML Kopijuoti kaip HTML Zoom In Didinti Zoom Out Mažinti Zoom Original Normalus Mastelis Other Options Kitos Parinktys Include slide text if available Ä®traukti skaidrÄ—s tekstÄ…, jei prieinamas Include service item notes Ä®traukti pamaldų programos pastabas Include play length of media items Ä®traukti medija elementų grojimo trukmÄ™ Add page break before each text item PridÄ—ti puslapių skirtukÄ…, prieÅ¡ kiekvienÄ… tekstinį elementÄ… Service Sheet Pamaldų Programos Lapas Print Spausdinti Title: Pavadinimas: Custom Footer Text: Tinkintas PoraÅ¡tÄ—s Tekstas: OpenLP.ProjectorConstants OK OK General projector error Bendra projektoriaus klaida Not connected error Jungimosi klaida Lamp error Lempos klaida Fan error Ventiliatoriaus klaida High temperature detected Aptikta aukÅ¡ta temperatÅ«ra Cover open detected Aptiktas atidarytas dangtis Check filter Patikrinkite filtrÄ… Authentication Error TapatybÄ—s Nustatymo Klaida Undefined Command Neapibrėžta Komanda Invalid Parameter Neteisingas Parametras Projector Busy Projektorius Užimtas Projector/Display Error Projektoriaus/Ekrano Klaida Invalid packet received Gautas neteisingas duomenų paketas Warning condition detected Aptikta įspÄ—jimo bÅ«sena Error condition detected Aptikta klaidos bÅ«sena PJLink class not supported PJLink klasÄ— yra nepalaikoma Invalid prefix character Neteisingas prieÅ¡delio simbolis The connection was refused by the peer (or timed out) RyÅ¡ys buvo atmestas kitos pusÄ—s (arba baigÄ—si jam skirtas laikas) The remote host closed the connection Nuotolinis kompiuteris nutraukÄ— ryšį The host address was not found Kompiuterio adresas nerastas The socket operation failed because the application lacked the required privileges Jungties operacija nepavyko, nes programai trÅ«ko reikiamų prieigų The local system ran out of resources (e.g., too many sockets) VietinÄ— sistema iÅ¡eikvojo visus iÅ¡teklius (pvz., per daug jungÄių) The socket operation timed out BaigÄ—si jungties operacijai skirtas laikas The datagram was larger than the operating system's limit Duomenų paketas buvo didesnis nei leidžia nustatytos operacinÄ—s sistemos ribos An error occurred with the network (Possibly someone pulled the plug?) Ä®vyko su tinklu susijusi klaida (Galimai, kažkas iÅ¡traukÄ— kiÅ¡tukÄ…?) The address specified with socket.bind() is already in use and was set to be exclusive Adresas nurodytas su socket.bind() jau yra naudojamas ir buvo nustatytas bÅ«ti iÅ¡skirtiniu The address specified to socket.bind() does not belong to the host socket.bind() nurodytas adresas nepriklauso kompiuteriui The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Užklausta jungties operacija yra nepalaikoma vietinÄ—s operacinÄ—s sistemos (pvz., nÄ—ra IPv6 palaikymo) The socket is using a proxy, and the proxy requires authentication Jungtis naudoja įgaliotÄ…jį serverį, o Å¡is reikalauja tapatybÄ—s nustatymo The SSL/TLS handshake failed SSL/TLS pasisveikinimas nepavyko The last operation attempted has not finished yet (still in progress in the background) Dar nebaigta paskutinÄ— bandyta operacija (vis dar eigoje fone) Could not contact the proxy server because the connection to that server was denied Nepavyko susisiekti su įgaliotoju serveriu, nes ryÅ¡ys su serveriu buvo atmestas The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) RyÅ¡ys su įgaliotuoju serveriu buvo netikÄ—tai nutrauktas (prieÅ¡ tai, kai buvo užmegztas ryÅ¡ys su kita puse) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. BaigÄ—si susijungimui su įgaliotuoju serveriu skirtas laikas arba įgaliotasis serveris nustojo atsakinÄ—ti tapatybÄ—s nustatymo etape. The proxy address set with setProxy() was not found Ä®galiotojo serverio adresas nustatytas su setProxy() nebuvo rastas An unidentified error occurred Ä®vyko nenustatyta klaida Not connected Neprisijungta Connecting Jungiamasi Connected Prisijungta Getting status Gaunama bÅ«sena Off IÅ¡jungta Initialize in progress Inicijavimas eigoje Power in standby Energijos taupymo veiksena Warmup in progress Vyksta įšilimas Power is on Maitinimas įjungtas Cooldown in progress Vyksta atauÅ¡imas Projector Information available Projektoriaus informacija prieinama Sending data SiunÄiami duomenys Received data Gaunami duomenys The connection negotiation with the proxy server failed because the response from the proxy server could not be understood RyÅ¡io užmezgimas su įgaliotuoju serveriu nepavyko, nes nepavyko suprasti iÅ¡ įgaliotojo serverio gauto atsakymo OpenLP.ProjectorEdit Name Not Set Nenustatytas Pavadinimas You must enter a name for this entry.<br />Please enter a new name for this entry. Privalote Å¡iam įraÅ¡ui įvesti pavadinimÄ….<br />PraÅ¡ome Å¡iam įraÅ¡ui įvesti naujÄ… pavadinimÄ…. Duplicate Name Dubliuoti PavadinimÄ… OpenLP.ProjectorEditForm Add New Projector PridÄ—ti NaujÄ… Projektorių Edit Projector Redaguoti Projektorių IP Address IP Adresas Port Number Prievado Numeris PIN PIN Name Pavadinimas Location Vieta Notes Pastabos Database Error Duomenų BazÄ—s Klaida There was an error saving projector information. See the log for the error Ä®vyko klaida, iÅ¡saugant projektoriaus informacijÄ…. IÅ¡samesnei informacijai apie klaidÄ…, žiÅ«rÄ—kite žurnalÄ… OpenLP.ProjectorManager Add Projector PridÄ—ti Projektorių Add a new projector PridÄ—ti naujÄ… projektorių Edit Projector Redaguoti Projektorių Edit selected projector Redaguoti pasirinktÄ… projektorių Delete Projector IÅ¡trinti Projektorių Delete selected projector IÅ¡trinti pasirinktÄ… projektorių Select Input Source Pasirinkti Ä®vesties Å altinį Choose input source on selected projector Pasirinkti pasirinkto projektoriaus įvesties Å¡altinį View Projector Rodyti Projektorių View selected projector information ŽiÅ«rÄ—ti pasirinkto projektoriaus informacijÄ… Connect to selected projector Prisijungti prie pasirinkto projektoriaus Connect to selected projectors Prisijungti prie pasirinktų projektorių Disconnect from selected projectors Atsijungti nuo pasirinktų projektorių Disconnect from selected projector Atsijungti nuo pasirinkto projektoriaus Power on selected projector Ä®jungti pasirinktÄ… projektorių Standby selected projector PradÄ—ti projektoriaus bÅ«dÄ—jimo veiksenÄ… Put selected projector in standby Ä®vesti projektorių į bÅ«dÄ—jimo veiksenÄ… Blank selected projector screen Uždengti pasirinkto projektoriaus ekranÄ… Show selected projector screen Rodyti pasirinkto projektoriaus ekranÄ… &View Projector Information ŽiÅ«&rÄ—ti Projektoriaus InformacijÄ… &Edit Projector R&edaguoti Projektorių &Connect Projector &Prijungti Projektorių D&isconnect Projector &Atjungti Projektorių Power &On Projector Ä®&jungti Projektorių Power O&ff Projector &IÅ¡jungti Projektorių Select &Input Pasirinkt&i Ä®vestį Edit Input Source Redaguoti Ä®vesties Å altinį &Blank Projector Screen &Uždengti Projektoriaus EkranÄ… &Show Projector Screen &Rodyti Projektoriaus EkranÄ… &Delete Projector &IÅ¡trinti Projektorių Name Pavadinimas IP IP Port Prievadas Notes Pastabos Projector information not available at this time. Å iuo metu projektoriaus informacija yra neprieinama. Projector Name Projektoriaus Pavadinimas Manufacturer Gamintojas Model Modelis Other info Kita informacija Power status Maitinimo bÅ«sena Shutter is SklendÄ— yra Closed Uždaryta Current source input is Esama Å¡altinio įvestis yra Lamp Lempa On Ä®jungta Off IÅ¡jungta Hours Valandų No current errors or warnings NÄ—ra esamų klaidų/įspÄ—jimų Current errors/warnings Esamos klaidos/įspÄ—jimai Projector Information Projektoriaus Informacija No message NÄ—ra praneÅ¡imų Not Implemented Yet Dar neįgyvendinta Delete projector (%s) %s? IÅ¡trinti projektorių (%s) %s? Are you sure you want to delete this projector? Ar tikrai norite iÅ¡trinti šį projektorių? OpenLP.ProjectorPJLink Fan Ventiliatorius Lamp Lempa Temperature TemperatÅ«ra Cover Dangtis Filter Filtras Other Kita OpenLP.ProjectorTab Projector Projektorius Communication Options Komunikacijos Parinktys Connect to projectors on startup Paleidus programÄ…, prisijungti prie projektorių Socket timeout (seconds) Jungimo laiko limitas (sekundÄ—s) Poll time (seconds) Apklausos laikas (sekundÄ—s) Tabbed dialog box Dialogo langelis su kortelÄ—mis Single dialog box Vienas dialogo langelis OpenLP.ProjectorWizard Duplicate IP Address Dublikuoti IP AdresÄ… Invalid IP Address Neteisingas IP Adresas Invalid Port Number Neteisingas Prievado Numeris OpenLP.ScreenList Screen Ekrano primary pirminis OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Pradžia</strong>: %s <strong>Length</strong>: %s <strong>TrukmÄ—</strong>: %s [slide %d] [skaidrÄ— %d] OpenLP.ServiceItemEditForm Reorder Service Item Pertvarkyti Pamaldų Programos ElementÄ… OpenLP.ServiceManager Move to &top Perkelti į pa&tį viršų Move item to the top of the service. Perkelti elementÄ… į patį pamaldų programos viršų. Move &up Perkelti a&ukÅ¡Äiau Move item up one position in the service. Perkelti elementÄ… pamaldų programoje viena pozicija aukÅ¡Äiau. Move &down Perkelti ž&emiau Move item down one position in the service. Perkelti elementÄ… pamaldų programoje viena pozicija žemiau. Move to &bottom Perkelti į paÄiÄ… apaÄiÄ… Move item to the end of the service. Perkelti elementÄ… į patį pamaldų programos galÄ…. &Delete From Service &IÅ¡trinti iÅ¡ Pamaldų Programos Delete the selected item from the service. IÅ¡trinti pasirinktÄ… elementÄ… iÅ¡ pamaldų programos. &Add New Item &PridÄ—ti NaujÄ… ElementÄ… &Add to Selected Item &PridÄ—ti prie Pasirinkto Elemento &Edit Item &Redaguoti ElementÄ… &Reorder Item Pe&rtvarkyti ElementÄ… &Notes &Pastabos &Change Item Theme Pa&keisti Elemento TemÄ… File is not a valid service. Failas nÄ—ra teisinga pamaldų programa. Missing Display Handler TrÅ«ksta Ekrano DoroklÄ—s Your item cannot be displayed as there is no handler to display it JÅ«sų elementas negali bÅ«ti rodomas, kadangi nÄ—ra doroklÄ—s, kuri jį rodytų Your item cannot be displayed as the plugin required to display it is missing or inactive JÅ«sų elementas negali bÅ«ti rodomas, nes trÅ«ksta rodymui reikalingo papildinio arba jis nÄ—ra įdiegtas &Expand all ViskÄ… iÅ¡skl&eisti Expand all the service items. IÅ¡skleisti visus pamaldų programos elementus. &Collapse all ViskÄ… sus&kleisti Collapse all the service items. Suskleisti visus pamaldų programos elementus. Open File Atidaryti FailÄ… Moves the selection down the window. Perkelia pasirinkimÄ… žemyn. Move up Perkelti aukÅ¡Äiau Moves the selection up the window. Perkelia pasirinkimÄ… aukÅ¡tyn. Go Live Rodyti Gyvai Send the selected item to Live. Siųsti pasirinktÄ… elementÄ… į Gyvai. &Start Time Pradžio&s laikas Show &Preview Ro&dyti PeržiÅ«roje Modified Service Pakeista Pamaldų Programa The current service has been modified. Would you like to save this service? DabartinÄ— pamaldų programa buvo pakeista. Ar norÄ—tumÄ—te iÅ¡saugoti Å¡iÄ… pamaldų programÄ…? Custom Service Notes: Pasirinktinos Pamaldų Programos Pastabos: Notes: Pastabos: Playing time: Grojimo laikas: Untitled Service BevardÄ— Pamaldų Programa File could not be opened because it is corrupt. Nepavyko atidaryti failo, nes jis yra pažeistas. Empty File TuÅ¡Äias Failas This service file does not contain any data. Å iame pamaldų programos faile nÄ—ra jokių duomenų. Corrupt File Pažeistas Failas Load an existing service. Ä®kelti jau esanÄiÄ… pamaldų programÄ…. Save this service. IÅ¡saugoti Å¡iÄ… pamaldų programÄ…. Select a theme for the service. Pasirinkite temÄ… pamaldoms. Slide theme SkaidrÄ—s tema Notes Pastabos Edit Redaguoti Service copy only Kopijuoti tik pamaldų programÄ… Error Saving File Klaida, bandant IÅ¡saugoti FailÄ… There was an error saving your file. Ä®vyko klaida, bandant iÅ¡saugoti jÅ«sų failÄ…. Service File(s) Missing TrÅ«ksta Pamaldų Programos Failo(-ų) &Rename... &Pervadinti... Create New &Custom Slide Sukurti NaujÄ… &TinkintÄ… SkaidrÄ™ &Auto play slides &AutomatiÅ¡kai rodyti skaidres Auto play slides &Loop AutomatiÅ¡kai rodyti skaidres &Ciklu Auto play slides &Once AutomatiÅ¡kai rodyti skaidres &VienÄ… kartÄ… &Delay between slides &PauzÄ— tarp skaidrių OpenLP Service Files (*.osz *.oszl) OpenLP Pamaldų Programos Failai (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Pamaldų Programos Failai (*.osz);; OpenLP Pamaldų Programos Filai - mažieji (*.oszl) OpenLP Service Files (*.osz);; OpenLP Pamaldų Programos Failai (*.osz);; File is not a valid service. The content encoding is not UTF-8. Filas nÄ—ra teisinga pamaldų programa. Turinio koduotÄ— nÄ—ra UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Pamaldų programos failas, kurį bandote atidaryti yra seno formato. PraÅ¡ome iÅ¡saugoti jį, naudojant OpenLP 2.0.2 ar vÄ—lesnÄ™ versijÄ…. This file is either corrupt or it is not an OpenLP 2 service file. Å is failas yra pažeistas arba tai nÄ—ra OpenLP 2 pamaldų programos failas. &Auto Start - inactive &Automatinis Paleidimas - neaktyvus &Auto Start - active &Automatinis Paleidimas - aktyvus Input delay Ä®vesties pauzÄ— Delay between slides in seconds. PauzÄ— tarp skaidrių sekundÄ—mis. Rename item title Pervadinti elemento pavadinimÄ… Title: Pavadinimas: An error occurred while writing the service file: %s Ä®vyko klaida, įraÅ¡inÄ—jant pamaldų programos failÄ…: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Pamaldų programoje trÅ«ksta Å¡io failo(-ų): %s Jei tÄ™site iÅ¡saugojimÄ…, Å¡ie failai bus paÅ¡alinti. OpenLP.ServiceNoteForm Service Item Notes Pamaldų Programos Elemento Pastabos OpenLP.SettingsForm Configure OpenLP KonfigÅ«ruoti OpenLP OpenLP.ShortcutListDialog Action Veiksmas Shortcut Spartusis KlaviÅ¡as Duplicate Shortcut Dublikuoti Spartųjį Klavišą The shortcut "%s" is already assigned to another action, please use a different shortcut. Spartusis klaviÅ¡as "%s" jau yra priskirtas kitam veiksmui, praÅ¡ome naudoti kitÄ… spartųjį klavišą. Alternate Alternatyvus Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Pasirinkite veiksmÄ… ir nuspauskite vienÄ… iÅ¡ žemiau esanÄių mygtukų, kad pradÄ—tumÄ—te įvedinÄ—ti naujÄ… pirminį ar alternatyvų spartųjį klavišą, atitinkamai. Default Numatytoji Custom Pasirinktinas Capture shortcut. Ä®vesti spartųjį klavišą. Restore the default shortcut of this action. Atkurti numatytÄ…jį Å¡io veiksmo spartųjį klavišą. Restore Default Shortcuts Atkurti Numatytuosius SparÄiuosius KlaviÅ¡us Do you want to restore all shortcuts to their defaults? Ar norite atstatyti visų sparÄiųjų klavišų numatytÄ…sias reikÅ¡mes? Configure Shortcuts KonfigÅ«ruoti SparÄiuosius KlaviÅ¡us OpenLP.SlideController Hide SlÄ—pti Go To Pereiti Prie Blank Screen Uždengti EkranÄ… Blank to Theme Rodyti Temos FonÄ… Show Desktop Rodyti Darbalaukį Previous Service AnkstesnÄ— Pamaldų programa Next Service Kita Pamaldų programa Escape Item IÅ¡trÅ«kimo Elementas Move to previous. Pereiti prie ankstesnio. Move to next. Pereiti prie kito. Play Slides Rodyti Skaidres Delay between slides in seconds. PauzÄ— tarp skaidrių sekundÄ—mis. Move to live. Rodyti Gyvai. Add to Service. PridÄ—ti prie Pamaldų Programos. Edit and reload song preview. Redaguoti ir iÅ¡ naujo įkelti giesmÄ—s peržiÅ«rÄ…. Start playing media. PradÄ—ti groti medijÄ…. Pause audio. Pristabdyti garso įrašą. Pause playing media. Pristabdyti medijos grojimÄ…. Stop playing media. Stabdyti medijos grojimÄ…. Video position. Video įraÅ¡o vieta. Audio Volume. Garso Ä®rašų Garsumas. Go to "Verse" Pereiti prie "Posmelio" Go to "Chorus" Pereiti prie "Priegiesmio" Go to "Bridge" Pereiti prie "Tiltelio" Go to "Pre-Chorus" Pereiti prie "PrieÅ¡-Priegiesmio" Go to "Intro" Pereiti prie "Įžangos" Go to "Ending" Pereiti prie "Pabaigos" Go to "Other" Pereiti prie "Kita" Previous Slide AnkstesnÄ— SkaidrÄ— Next Slide Kita SkaidrÄ— Pause Audio Pristabdyti Garso Takelį Background Audio Fono Garsas Go to next audio track. Pereiti prie kito garso takelio. Tracks Takeliai OpenLP.SourceSelectForm Select Projector Source Pasirinkti Projektoriaus Å altinį Edit Projector Source Text Redaguoti Projektoriaus Å altinio TekstÄ… Ignoring current changes and return to OpenLP Nepaisyti esamų pakeitimų ir grįžti į OpenLP Delete all user-defined text and revert to PJLink default text IÅ¡trinti visÄ… naudotojo apibrėžtÄ… tekstÄ… ir grįžti prie PJLink numatytojo teksto Discard changes and reset to previous user-defined text Atmesti pakeitimus ir atstatyti ankstesnį naudotojo apibrėžtÄ… tekstÄ… Save changes and return to OpenLP iÅ¡saugoti pakeitimus ir grįžti į OpenLP Delete entries for this projector IÅ¡trinti Å¡io projektoriaus įraÅ¡us Are you sure you want to delete ALL user-defined source input text for this projector? Ar tikrai norite iÅ¡trinti VISÄ„ naudotojo apibrėžtÄ… Å¡altinio įvesties tekstÄ… Å¡iam projektoriui? OpenLP.SpellTextEdit Spelling Suggestions RaÅ¡ybos Tikrinimo PasiÅ«lymai Formatting Tags Formatavimo ŽymÄ—s Language: Kalba: OpenLP.StartTimeForm Theme Layout Temos IÅ¡dÄ—stymas The blue box shows the main area. MÄ—lynas staÄiakampis nurodo pagrindinÄ™ sritį. The red box shows the footer. Raudonas staÄiakampis nurodo poraÅ¡tÄ™. OpenLP.StartTime_form Item Start and Finish Time Elemento Pradžios ir Pabaigos Laikas Hours: Valandos: Minutes: MinutÄ—s: Seconds: SekundÄ—s: Start Pradžia Finish Pabaiga Length TrukmÄ— Time Validation Error Laiko Tikrinimo Klaida Finish time is set after the end of the media item Pabaigos laikas yra nustatytas po medijos elemento pabaigos Start time is after the finish time of the media item Pradžios laikas yra nustatytas po medijos elemento pabaigos laiko OpenLP.ThemeForm (approximately %d lines per slide) (apytiksliai %d eiluÄių skaidrÄ—je) OpenLP.ThemeManager Create a new theme. Sukurti naujÄ… temÄ…. Edit Theme Redaguoti TemÄ… Edit a theme. Redaguoti temÄ…. Delete Theme IÅ¡trinti TemÄ… Delete a theme. IÅ¡trinti temÄ…. Import Theme Importuoti TemÄ… Import a theme. Importuoti temÄ…. Export Theme Eksportuoti TemÄ… Export a theme. Eksportuoti temÄ…. &Edit Theme &Redaguoti TemÄ… &Delete Theme &IÅ¡trinti TemÄ… Set As &Global Default Nustatyti &Globaliai NumatytÄ…ja %s (default) %s (pagal numatymÄ…) You must select a theme to edit. Privalote pasirinkti kuriÄ… temÄ… norite redaguoti. You are unable to delete the default theme. Negalite iÅ¡trinti numatytosios temos. You have not selected a theme. JÅ«s nepasirinkote temos. Save Theme - (%s) IÅ¡saugoti TemÄ… - (%s) Theme Exported Tema Eksportuota Your theme has been successfully exported. JÅ«sų tema buvo sÄ—kmingai eksportuota. Theme Export Failed Temos Eksportavimas Nepavyko Select Theme Import File Pasirinkite Temos Importavimo FailÄ… File is not a valid theme. Failas nÄ—ra teisinga tema. &Copy Theme &Kopijuoti TemÄ… &Rename Theme &Pervadinti TemÄ… &Export Theme &Eksportuoti TemÄ… You must select a theme to rename. Privalote pasirinkti kuriÄ… temÄ… norite pervadinti. Rename Confirmation Pervadinimo Patvirtinimas Rename %s theme? Pervadinti %s temÄ…? You must select a theme to delete. Privalote pasirinkti kuriÄ… temÄ… norite iÅ¡trinti. Delete Confirmation IÅ¡trynimo Patvirtinimas Delete %s theme? IÅ¡trinti %s temÄ…? Validation Error Tikrinimo Klaida A theme with this name already exists. Tema tokiu pavadinimu jau yra. Copy of %s Copy of <theme name> %s kopija Theme Already Exists Tema Jau Yra Theme %s already exists. Do you want to replace it? Tema %s jau yra. Ar norite jÄ… pakeisti? The theme export failed because this error occurred: %s Temos eksportavimas nepavyko, nes įvyko Å¡i klaida: %s OpenLP Themes (*.otz) OpenLP Temos (*.otz) %s time(s) by %s Unable to delete theme Nepavyko iÅ¡trinti temos Theme is currently used %s Tema Å¡iuo metu yra naudojama %s OpenLP.ThemeWizard Theme Wizard Temos Vedlys Welcome to the Theme Wizard Sveiki AtvykÄ™ į Temos Vedlį Set Up Background Nustatykite FonÄ… Set up your theme's background according to the parameters below. Nusistatykite savo temos fonÄ…, pagal žemiau pateiktus parametrus. Background type: Fono tipas: Gradient Gradientas Gradient: Gradientas: Horizontal Horizontalus Vertical Vertikalus Circular Apskritimu Top Left - Bottom Right VirÅ¡utinÄ— KairÄ— - ApatinÄ— DeÅ¡inÄ— Bottom Left - Top Right ApatinÄ— KairÄ— - VirÅ¡utinÄ— DeÅ¡inÄ— Main Area Font Details PagrindinÄ—s Srities Å rifto DetalÄ—s Define the font and display characteristics for the Display text Apibrėžkite Å¡rifto ir rodymo charakteristikas Ekrano tekstui Font: Å riftas: Size: Dydis: Line Spacing: EiluÄių Intervalai: &Outline: &KontÅ«ras: &Shadow: Å &ešėlis: Bold Pusjuodis Italic Kursyvas Footer Area Font Details PoraÅ¡tÄ—s Srities Å rifto DetalÄ—s Define the font and display characteristics for the Footer text Apibrėžkite Å¡rifto ir rodymo charakteristikas PoraÅ¡tÄ—s tekstui Text Formatting Details Teksto Formatavimo DetalÄ—s Allows additional display formatting information to be defined Leidžia apibrėžti papildomÄ… rodymo formatavimo informacijÄ… Horizontal Align: Horizontalus Lygiavimas: Left KairÄ—je Right DeÅ¡inÄ—je Center Centre Output Area Locations IÅ¡vesties SriÄių Vietos &Main Area &PagrindinÄ— Sritis &Use default location &Naudoti numatytÄ…jÄ… vietÄ… X position: X vieta: px tÅ¡k Y position: Y vieta: Width: Plotis: Height: AukÅ¡tis: Use default location Naudoti numatytÄ…jÄ… vietÄ… Theme name: Temos pavadinimas: Edit Theme - %s Redaguoti TemÄ… - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Å is vedlys padÄ—s jums kurti ir redaguoti savo temas. SpustelÄ—kite, žemiau esantį, mygtukÄ… toliau, kad pradÄ—tumÄ—te savo fono nustatymÄ…. Transitions: PerÄ—jimai: &Footer Area &PoraÅ¡tÄ—s Sritis Starting color: PradinÄ— spalva: Ending color: GalutinÄ— spalva: Background color: Fono spalva: Justify IÅ¡ abiejų pusių Layout Preview IÅ¡dÄ—stymo PeržiÅ«ra Transparent Permatomas Preview and Save PeržiÅ«ra ir IÅ¡saugojimas Preview the theme and save it. PeržiÅ«rÄ—kite temÄ… ir jÄ… iÅ¡saugokite. Background Image Empty Fono Paveikslas TuÅ¡Äias Select Image Pasirinkite PaveikslÄ… Theme Name Missing TrÅ«ksta Temos Pavadinimo There is no name for this theme. Please enter one. NÄ—ra Å¡ios temos pavadinimo. PraÅ¡ome įraÅ¡yti pavadinimÄ…. Theme Name Invalid Neteisingas Temos Pavadinimas Invalid theme name. Please enter one. Neteisingas temos pavadinimas. PraÅ¡ome įraÅ¡yti pavadinimÄ…. Solid color Vientisa spalva color: Spalva: Allows you to change and move the Main and Footer areas. Leidžia jums keisti ir perkelti PagrindinÄ™ ir PoraÅ¡tÄ—s sritį. You have not selected a background image. Please select one before continuing. JÅ«s nepasirinkote fono paveikslÄ—lio. PrieÅ¡ tÄ™siant, praÅ¡ome pasirinkti fono paveikslÄ—lį. OpenLP.ThemesTab Global Theme Globali Tema Theme Level Temos Lygis S&ong Level Gies&mių Lygis Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Taikyti temÄ… kiekvienai, duomenų bazÄ—je esanÄiai, giesmei. Jeigu giesmÄ— neturi su ja susietos temos, tuomet pamaldų temÄ…. Jei pamaldos neturi temos, tuomet naudoti globaliÄ… temÄ…. &Service Level &Pamaldų Programos Lygis Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Taikyti pamaldų programos temÄ…, nustelbiant bet kokias atskirų giesmių temas. Jeigu pamaldų programa neturi temos, tuomet taikyti globalų lygį. &Global Level &Globalus Lygis Use the global theme, overriding any themes associated with either the service or the songs. Taikyti globaliÄ… temÄ…, nustelbiant bet kokias temas, susietas su pamaldomis ar giesmÄ—mis. Themes Temos Universal Settings UniversalÅ«s Nustatymai &Wrap footer text &Laužyti poraÅ¡tÄ—s tekstÄ… OpenLP.Ui Delete the selected item. IÅ¡trinti pasirinktÄ… elementÄ…. Move selection up one position. Perkelti pasirinkimÄ… viena pozicija aukÅ¡Äiau. Move selection down one position. Perkelti pasirinkimÄ… viena pozicija žemiau. &Vertical Align: &Vertikalus Lygiavimas: Finished import. Importavimas užbaigtas. Format: Formatas: Importing Importuojama Importing "%s"... Importuojama "%s"... Select Import Source Pasirinkite Importavimo Å altinį Select the import format and the location to import from. Pasirinkite importavimo formatÄ… ir vietÄ… iÅ¡ kurios importuosite. Open %s File Atidaryti %s FailÄ… %p% %p% Ready. Pasiruošę. Starting import... Pradedamas importavimas... You need to specify at least one %s file to import from. A file type e.g. OpenSong JÅ«s turite nurodyti bent vienÄ… %s failÄ…, iÅ¡ kurio importuoti. Welcome to the Bible Import Wizard Sveiki AtvykÄ™ į Biblijos Importavimo Vedlį Welcome to the Song Export Wizard Sveiki AtvykÄ™ į Giesmių Eksportavimo Vedlį Welcome to the Song Import Wizard Sveiki AtvykÄ™ į Giesmių Importavimo Vedlį Author Singular Autorius Authors Plural Autoriai © Copyright symbol. © Song Maintenance Giesmių PriežiÅ«ra Topic Singular Tema Topics Plural Temos Title and/or verses not found Nerastas pavadinimas ir/arba posmeliai XML syntax error XML sintaksÄ—s klaida Welcome to the Bible Upgrade Wizard Sveiki AtvykÄ™ į Biblijos Naujinimo Vedlį Open %s Folder Atidaryti %s Folder You need to specify one %s file to import from. A file type e.g. OpenSong Turite nurodyti vienÄ… %s failÄ… iÅ¡ kurio importuosite. You need to specify one %s folder to import from. A song format e.g. PowerSong Turite nurodyti vienÄ… %s aplankÄ… iÅ¡ kurio importuosite. Importing Songs Importuojamos GiesmÄ—s Welcome to the Duplicate Song Removal Wizard Sveiki AtvykÄ™ į Giesmių Dublikatų Å alinimo Vedlį Written by Parašė Author Unknown Nežinomas Autorius About Apie &Add &PridÄ—ti Add group PridÄ—ti grupÄ™ Advanced IÅ¡plÄ—stinÄ— All Files Visi Failai Automatic AutomatiÅ¡kai Background Color Fono Spalva Bottom ApaÄioje Browse... NarÅ¡yti... Cancel AtÅ¡aukti CCLI number: CCLI numeris: Create a new service. Sukurti naujÄ… pamaldų programÄ…. Confirm Delete Patvirtinkite iÅ¡trynimÄ… Continuous IÅ¡tisai Default Numatytoji Default Color: Numatytoji Spalva: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Pamaldos %Y-%m-%d %H-%M &Delete &IÅ¡trinti Display style: Rodymo stilius: Duplicate Error Dublikavimo Klaida &Edit &Redaguoti Empty Field TuÅ¡Äias Laukas Error Klaida Export Eksportuoti File Failas File Not Found Failas Nerastas File %s not found. Please try selecting it individually. Failas %s nerastas. PraÅ¡ome jÅ«sų pasirinkti jį patiems. pt Abbreviated font pointsize unit tÅ¡k. Help Pagalba h The abbreviated unit for hours val. Invalid Folder Selected Singular Pasirinktas Neteisingas Aplankas Invalid File Selected Singular Pasirinktas Neteisingas Failas Invalid Files Selected Plural Pasirinkti Neteisingi Failai Image Paveikslas Import Importuoti Layout style: IÅ¡dÄ—stymo stilius: Live Gyvai Live Background Error Rodymo Gyvai Fono Klaida Live Toolbar Rodymo Gyvai Ä®rankių Juosta Load Ä®kelti Manufacturer Singular Gamintojas Manufacturers Plural Gamintojai Model Singular Modelis Models Plural Modeliai m The abbreviated unit for minutes min. Middle Viduryje New Naujas New Service Nauja Pamaldų Programa New Theme Nauja Tema Next Track Kitas Takelis No Folder Selected Singular Nepasirinktas Aplankas No File Selected Singular Nepasirinktas Failas No Files Selected Plural Nepasirinkti Failai No Item Selected Singular Nepasirinktas Elementas No Items Selected Plural Nepasirinkti Elementai OpenLP is already running. Do you wish to continue? OpenLP jau yra vykdoma. Ar norite tÄ™sti? Open service. Atidaryti pamaldų programÄ…. Play Slides in Loop Rodyti Skaidres Ciklu Play Slides to End Rodyti Skaidres iki Galo Preview PeržiÅ«ra Print Service Spausdinti Pamaldų ProgramÄ… Projector Singular Projektorius Projectors Plural Projektoriai Replace Background Pakeisti FonÄ… Replace live background. Pakeisti rodymo Gyvai fonÄ…. Reset Background Atstatyti FonÄ… Reset live background. Atkurti rodymo Gyvai fonÄ…. s The abbreviated unit for seconds sek. Save && Preview IÅ¡saugoti ir PeržiÅ«rÄ—ti Search PaieÅ¡ka Search Themes... Search bar place holder text Temų PaieÅ¡ka... You must select an item to delete. Privalote pasirinkti norimÄ… iÅ¡trinti elementÄ…. You must select an item to edit. Privalote pasirinkti norimÄ… redaguoti elementÄ…. Settings Nustatymus Save Service IÅ¡saugoti Pamaldų ProgramÄ… Service Pamaldų Programa Optional &Split Pasirinktinis Pa&dalinimas Split a slide into two only if it does not fit on the screen as one slide. Padalinti skaidrÄ™ į dvi tik tuo atveju, jeigu ji ekrane netelpa kaip viena skaidrÄ—. Start %s PradÄ—ti %s Stop Play Slides in Loop Nustoti Rodyti Skaidres Ciklu Stop Play Slides to End Nustoti Rodyti Skaidres iki Galo Theme Singular Temos Themes Plural Temos Tools Ä®rankiai Top VirÅ¡uje Unsupported File Nepalaikomas Failas Verse Per Slide Kiekviena Biblijos eilutÄ— atskiroje skaidrÄ—je Verse Per Line Kiekviena Biblijos eilutÄ— naujoje eilutÄ—je Version Versija View Rodinys View Mode Rodinio Veiksena CCLI song number: CCLI giesmÄ—s numeris: Preview Toolbar PeržiÅ«ros Ä®rankių juosta OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s ir %s %s, and %s Locale list separator: end %s, ir %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Å altinio pasirinkimo dialogo sÄ…saja PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Pateikties Papildinys</strong><br />Pateikties papildinys suteikia galimybÄ™ rodyti pateiktis, naudojant kelias skirtingas programas. Prieinamas pateikÄių programas naudotojas gali pasirinkti iÅ¡skleidžiamajame langelyje. Presentation name singular Pateiktis Presentations name plural Pateiktys Presentations container title Pateiktys Load a new presentation. Ä®kelti naujÄ… pateiktį. Delete the selected presentation. IÅ¡trinti pasirinktÄ… pateiktį. Preview the selected presentation. PeržiÅ«rÄ—ti pasirinktÄ… pateiktį. Send the selected presentation live. Siųsti pasirinktÄ… pateiktį į rodymÄ… Gyvai. Add the selected presentation to the service. PridÄ—ti pasirinktÄ… pateiktį į pamaldų programÄ…. PresentationPlugin.MediaItem Select Presentation(s) Pasirinkite Pateiktį(-is) Automatic AutomatiÅ¡kai Present using: Pateikti, naudojant: File Exists Failas Jau Yra A presentation with that filename already exists. Pateiktis tokiu failo pavadinimu jau yra. This type of presentation is not supported. Å is pateikties tipas nÄ—ra palaikomas. Presentations (%s) Pateiktys (%s) Missing Presentation TrÅ«ksta Pateikties The presentation %s is incomplete, please reload. Pateiktis %s yra nepilna, praÅ¡ome įkelti iÅ¡ naujo. The presentation %s no longer exists. Pateikties %s jau nebÄ—ra. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Powerpoint integravime įvyko klaida ir pateiktis bus sustabdyta. Paleiskite pateiktį iÅ¡ naujo, jei norite jÄ… pristatyti. PresentationPlugin.PresentationTab Available Controllers Prieinami Valdikliai %s (unavailable) %s (neprieinama) Allow presentation application to be overridden Leisti pateikÄių programai bÅ«ti nustelbtai PDF options PDF parinktys Use given full path for mudraw or ghostscript binary: Naudoti nurodytÄ… pilnÄ… keliÄ… mudraw ar ghostscript dvejetainÄ—ms: Select mudraw or ghostscript binary. Pasirinkite mudraw ar ghostscript dvejetaines. The program is not ghostscript or mudraw which is required. Programa nÄ—ra reikiamas ghostscript ar mudraw. PowerPoint options PowerPoint parinktys Clicking on a selected slide in the slidecontroller advances to next effect. SpustelÄ—jimas skaidrių sÄ…raÅ¡e ant pasirinktos skaidrÄ—s pradeda perÄ—jimÄ… į kitÄ… efektÄ…/veiksmÄ…. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Leisti PowerPoint valdyti pateikties lango dydį ir vietÄ… (Windows 8 mastelio keitimo problÄ—mos apÄ—jimas). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>NuotolinÄ—s Prieigos Papildinys</strong><br />NuotolinÄ—s prieigos papildinys suteikia galimybÄ™ siųsti praneÅ¡imus kitame kompiuteryje vykdomai OpenLP versijai per žiniatinklio narÅ¡yklÄ™ ar per nuotolinÄ™ API sÄ…sajÄ…. Remote name singular NuotolinÄ— prieiga Remotes name plural NuotolinÄ—s prieigos Remote container title NuotolinÄ— prieiga Server Config Change Serverio KonfigÅ«racijos Pasikeitimas Server configuration changes will require a restart to take effect. Serverio konfigÅ«racijos pakeitimų įsigaliojimui reikalingas paleidimas iÅ¡ naujo. RemotePlugin.Mobile Service Manager Pamaldų Programos TvarkytuvÄ— Slide Controller Skaidrių Valdiklis Alerts Ä®spÄ—jimai Search PaieÅ¡ka Home Pradžia Refresh Ä®kelti iÅ¡ naujo Blank Uždengti Theme Temos Desktop Darbalaukis Show Rodyti Prev AnkstesnÄ— Next Kitas Text Tekstas Show Alert Rodyti Ä®spÄ—jimÄ… Go Live Rodyti Gyvai Add to Service PridÄ—ti prie Pamaldų Programos Add &amp; Go to Service PridÄ—ti ir pereiti prie Pamaldų programos No Results NÄ—ra Rezultatų Options Parinktys Service Pamaldų Programa Slides SkaidrÄ—s Settings Nustatymus Remote NuotolinÄ— prieiga Stage View Scenos Rodinys Live View Gyvas Rodinys RemotePlugin.RemoteTab Serve on IP address: Aptarnavimo IP adresas: Port number: Prievado numeris: Server Settings Serverio Nustatymai Remote URL: Nuotolinis URL: Stage view URL: Scenos rodinio URL: Display stage time in 12h format Rodyti scenos laikÄ… 12 valandų formatu Android App Android Programa Live view URL: Gyvo rodinio URL: HTTPS Server HTTPS Serveris Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Nepavyko rasti SSL sertifikato. HTTPS serveris nebus prieinamas tol, kol nebus rastas SSL sertifikatas. IÅ¡samesnÄ—s informacijos ieÅ¡kokite naudojimo vadove. User Authentication Naudotojo TapatybÄ—s Nustatymas User id: Naudotojo id: Password: Slaptažodis: Show thumbnails of non-text slides in remote and stage view. Rodyti netekstinių skaidrių miniatiÅ«ras nuotoliniame ir scenos rodinyje. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Nuskenuokite QR kodÄ… arba spustelÄ—kite <a href="%s">atsisiųsti</a>, kad įdiegtumÄ—te Android programÄ… iÅ¡ Google Play. SongUsagePlugin &Song Usage Tracking Giesmių &Naudojimo Sekimas &Delete Tracking Data IÅ¡&trinti Sekimo Duomenis Delete song usage data up to a specified date. IÅ¡trinti giesmių naudojimo duomenis iki nurodytos datos. &Extract Tracking Data IÅ¡&skleisti Sekimo Duomenis Generate a report on song usage. Kurti giesmių naudojimo ataskaitÄ…. Toggle Tracking Perjungti SekimÄ… Toggle the tracking of song usage. Perjungti giesmių naudojimo sekimÄ…. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Giesmių Naudojimo Papildinys</strong><br />Å is papildinys seka giesmių naudojimÄ… pamaldų metu. SongUsage name singular Giesmių Naudojimas SongUsage name plural Giesmių Naudojimas SongUsage container title Giesmių Naudojimas Song Usage Giesmių Naudojimas Song usage tracking is active. Giesmių naudojimo sekimas yra aktyvus. Song usage tracking is inactive. Giesmių naudojimo sekimas yra neaktyvus. display ekranas printed atspausdinta SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data IÅ¡trinti Giesmių Naudojimo Duomenis Delete Selected Song Usage Events? IÅ¡trinti Pasirinktus Giesmių Naudojimo Ä®vykius? Are you sure you want to delete selected Song Usage data? Ar tikrai norite iÅ¡trinti pasirinktus Giesmių Naudojimo duomenis? Deletion Successful IÅ¡trynimas SÄ—kmingas Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Pasirinkite datÄ…, iki kurios turÄ—tų bÅ«ti iÅ¡trinti giesmių naudojimo duomenys. Visi iki Å¡ios datos įraÅ¡yti duomenys bus negrįžtamai iÅ¡trinti. All requested data has been deleted successfully. Visi užklausti duomenys buvo sÄ—kmingai iÅ¡trinti. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Giesmių Naudojimo IÅ¡skleidimas Select Date Range Pasirinkite Datos AtkarpÄ… to iki Report Location Ataskaitos Vieta Output File Location IÅ¡vesties Failo Vieta usage_detail_%s_%s.txt naudojimo_informacija_%s_%s.txt Report Creation Ataskaitos KÅ«rimas Report %s has been successfully created. Ataskaita %s sÄ—kmingai sukurta. Output Path Not Selected Nepasirinktas IÅ¡vesties Kelias You have not set a valid output location for your song usage report. Please select an existing path on your computer. JÅ«s nepasirinkote savo giesmių naudojimo ataskaitai teisingos iÅ¡vesties vietos. PraÅ¡ome pasirinkti, savo kompiuteryje esantį, keliÄ…. Report Creation Failed Ataskaitos KÅ«rimas Nepavyko An error occurred while creating the report: %s Ä®vyko klaida, kuriant ataskaitÄ…: %s SongsPlugin &Song &GiesmÄ™ Import songs using the import wizard. Importuoti giesmes, naudojant importavimo vedlį. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Giesmių Papildinys</strong><br />Giesmių papildinys suteikia galimybÄ™ rodyti bei valdyti giesmes. &Re-index Songs IÅ¡ naujo &indeksuoti Giesmes Re-index the songs database to improve searching and ordering. IÅ¡ naujo indeksuoti giesmių duomenų bazÄ™, siekiant pagerinti paieÅ¡kÄ… ir rikiavimÄ…. Reindexing songs... IÅ¡ naujo indeksuojamos giesmÄ—s... Arabic (CP-1256) Arabų (CP-1256) Baltic (CP-1257) Baltų (CP-1257) Central European (CP-1250) Vidurio Europos (CP-1250) Cyrillic (CP-1251) Kirilica (CP-1251) Greek (CP-1253) Graikų (CP-1253) Hebrew (CP-1255) Hebrajų (CP-1255) Japanese (CP-932) Japonų (CP-932) Korean (CP-949) KorÄ—jieÄių (CP-949) Simplified Chinese (CP-936) Kinų, supaprastintoji (CP-936) Thai (CP-874) Tajų (CP-874) Traditional Chinese (CP-950) Kinų, tradicinÄ— (CP-950) Turkish (CP-1254) Turkų (CP-1254) Vietnam (CP-1258) VietnamieÄių (CP-1258) Western European (CP-1252) Vakarų Europos (CP-1252) Character Encoding Simbolių KoduotÄ— The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. KoduotÄ—s nustatymas atsako už teisingÄ… simbolių atvaizdavimÄ…. Dažniausiai, tinka iÅ¡ anksto parinktas pasirinkimas. Please choose the character encoding. The encoding is responsible for the correct character representation. PraÅ¡ome pasirinkti simbolių koduotÄ™. KoduotÄ— atsakinga už teisingÄ… simbolių atvaizdavimÄ…. Song name singular GiesmÄ— Songs name plural GiesmÄ—s Songs container title GiesmÄ—s Exports songs using the export wizard. Eksportuoja giesmes per eksportavimo vedlį. Add a new song. PridÄ—ti naujÄ… giesmÄ™. Edit the selected song. Redaguoti pasirinktÄ… giesmÄ™. Delete the selected song. IÅ¡trinti pasirinktÄ… giesmÄ™. Preview the selected song. PeržiÅ«rÄ—ti pasirinktÄ… giesmÄ™. Send the selected song live. Siųsti pasirinktÄ… giesmÄ™ į rodymÄ… Gyvai. Add the selected song to the service. PridÄ—ti pasirinktÄ… giesmÄ™ į pamaldų programÄ…. Reindexing songs IÅ¡ naujo indeksuojamos giesmÄ—s CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importuoti giesmes iÅ¡ CCLI SongSelect tarnybos. Find &Duplicate Songs Rasti &Giesmių Dublikatus Find and remove duplicate songs in the song database. Rasti ir paÅ¡alinti giesmių duomenų bazÄ—je esanÄius, giesmių dublikatus. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Žodžiai Music Author who wrote the music of a song Muzika Words and Music Author who wrote both lyrics and music of a song Žodžiai ir Muzika Translation Author who translated the song Vertimas SongsPlugin.AuthorsForm Author Maintenance Autorių PriežiÅ«ra Display name: Rodomas vardas: First name: Vardas: Last name: PavardÄ—: You need to type in the first name of the author. Turite įraÅ¡yti autoriaus vardÄ…. You need to type in the last name of the author. Turite įraÅ¡yti autoriaus pavardÄ™. You have not set a display name for the author, combine the first and last names? JÅ«s nenustatÄ—te rodomÄ… autoriaus vardÄ…, sujungti vardÄ… ir pavardÄ™? SongsPlugin.CCLIFileImport The file does not have a valid extension. Failas neturi teisingo plÄ—tinio. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Neteisingas DreamBeam giesmÄ—s failas. TrÅ«ksta DreamSong žymÄ—s. SongsPlugin.EasyWorshipSongImport Administered by %s Administruoja %s "%s" could not be imported. %s Nepavyko importuoti "%s". %s Unexpected data formatting. NetikÄ—tas duomenų formatavimas. No song text found. Nerasta giesmÄ—s teksto. [above are Song Tags with notes imported from EasyWorship] [aukÅ¡Äiau yra giesmÄ—s žymÄ—s su pastabomis, importuotomis iÅ¡ EasyWorship] This file does not exist. Å io failo nÄ—ra. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Nepavyko rasti "Songs.MB" failo. Jis turÄ—tų bÅ«ti tame paÄiame aplanke, kuriame yra failas "Songs.DB". This file is not a valid EasyWorship database. Å is failas nÄ—ra teisinga EasyWorship duomenų bazÄ—. Could not retrieve encoding. Nepavyko nuskaityti koduotÄ—s. SongsPlugin.EditBibleForm Meta Data Meta Duomenys Custom Book Names Pasirinktini Knygų Pavadinimai SongsPlugin.EditSongForm Song Editor GiesmÄ—s Redaktorius &Title: &Pavadinimas: Alt&ernate title: Alt&ernatyvus pavadinimas: &Lyrics: GiesmÄ—s žodžiai: &Verse order: P&osmelių tvarka: Ed&it All Re&daguoti VisÄ… Title && Lyrics Pavadinimas ir GiesmÄ—s žodžiai &Add to Song &PridÄ—ti prie GiesmÄ—s &Remove PaÅ¡a&linti A&dd to Song Pri&dÄ—ti prie GiesmÄ—s R&emove Å a&linti New &Theme Nauja &Tema Copyright Information Autorių Teisių Informacija Comments Komentarai Theme, Copyright Info && Comments Tema, Autorių TeisÄ—s ir Komentarai Add Author PridÄ—ti Autorių This author does not exist, do you want to add them? Tokio autoriaus nÄ—ra, ar norite jį pridÄ—ti? This author is already in the list. Å is autorius jau yra sÄ…raÅ¡e. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. JÅ«s nepasirinkote teisingo autoriaus. Arba pasirinkite autorių iÅ¡ sÄ…raÅ¡o, arba įraÅ¡ykite naujÄ… autorių ir spustelÄ—kite mygtukÄ… "PridÄ—ti prie GiesmÄ—s", kad pridÄ—tumÄ—te naujÄ… autorių. Add Topic PridÄ—ti TemÄ… This topic does not exist, do you want to add it? Tokios temos nÄ—ra, ar norite jÄ… pridÄ—ti? This topic is already in the list. Å i tema jau yra sÄ…raÅ¡e. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. JÅ«s nepasirinkote teisingos temos. Arba pasirinkite temÄ… iÅ¡ sÄ…raÅ¡o, arba įraÅ¡ykite naujÄ… temÄ… ir spustelÄ—kite mygtukÄ… "PridÄ—ti prie GiesmÄ—s", kad pridÄ—tumÄ—te naujÄ… temÄ…. You need to type in a song title. Turite įraÅ¡yti giesmÄ—s pavadinimÄ…. You need to type in at least one verse. Turite įraÅ¡yti bent vienÄ… posmelį. You need to have an author for this song. Å i giesmÄ— privalo turÄ—ti autorių. Linked Audio SusijÄ™ Garso Ä®raÅ¡ai Add &File(s) PridÄ—ti &FailÄ…(-us) Add &Media PridÄ—ti &MedijÄ… Remove &All Å alinti &ViskÄ… Open File(s) Atidaryti FailÄ…(-us) <strong>Warning:</strong> Not all of the verses are in use. <strong>Ä®spÄ—jimas:</strong> Panaudoti ne visi posmeliai. <strong>Warning:</strong> You have not entered a verse order. <strong>Ä®spÄ—jimas:</strong> JÅ«s neįvedÄ—te posmelių tvarkos. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. NÄ—ra posmelio, atitinkanÄio "%(invalid)s". Teisingi įraÅ¡ai yra %(valid)s. PraÅ¡ome įvesti tarpais atskirtus posmelius. Invalid Verse Order Neteisinga Posmelių Tvarka &Edit Author Type &Keisti Autoriaus TipÄ… Edit Author Type Keisti Autoriaus TipÄ… Choose type for this author Pasirinkite Å¡iam autoriui tipÄ… There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks &Tvarkyti Autorius, Temas, Giesmynus Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? Tokio giesmyno nÄ—ra, ar norite jį pridÄ—ti? This Songbook is already in the list. Å is giesmynas jau yra sÄ…raÅ¡e. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Redaguoti &Verse type: &Posmo tipas: &Insert Ä®&terpti Split a slide into two by inserting a verse splitter. Padalinti skaidrÄ™ į dvi, įterpiant posmelio skirtukÄ…. SongsPlugin.ExportWizardForm Song Export Wizard Giesmių Eksportavimo Vedlys Select Songs Pasirinkite Giesmes Check the songs you want to export. PažymÄ—kite giesmes, kurias norite eksportuoti. Uncheck All Nuimti žymÄ—jimÄ… nuo visų Check All PažymÄ—ti Visas Select Directory Pasirinkite KatalogÄ… Directory: Katalogas: Exporting Eksportuojama Please wait while your songs are exported. PraÅ¡ome palaukti, kol jÅ«sų giesmÄ—s yra eksportuojamos. You need to add at least one Song to export. Eksportavimui, turite pridÄ—ti bent vienÄ… GiesmÄ™. No Save Location specified Nenurodyta IÅ¡saugojimo vieta Starting export... Pradedamas eksportavimas... You need to specify a directory. Privalote nurodyti katalogÄ…. Select Destination Folder Pasirinkite Paskirties AplankÄ… Select the directory where you want the songs to be saved. Pasirinkite katalogÄ…, kuriame norite, kad bÅ«tų iÅ¡saugotos giesmÄ—s. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Å is vedlys padÄ—s jums eksportuoti savo giesmes į atvirÄ… ir nemokamÄ… <strong>OpenLyrics </strong> Å¡lovinimo giesmÄ—s formatÄ…. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Neteisingas Foilpresenter giesmÄ—s failas. Nerasta posmelių. SongsPlugin.GeneralTab Enable search as you type Ä®jungti paieÅ¡kÄ… rinkimo metu SongsPlugin.ImportWizardForm Select Document/Presentation Files Pasirinkite DokumentÄ…/Pateikties Failus Song Import Wizard Giesmių Importavimo Vedlys This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Å is vedlys padÄ—s jums importuoti giesmes iÅ¡ įvairių formatų. Žemiau, spustelÄ—kite mygtukÄ… Kitas, kad pradÄ—tumÄ—te procesÄ…, pasirinkdami formatÄ…, iÅ¡ kurio importuoti. Generic Document/Presentation Bendrinis Dokumentas/Pateiktis Add Files... PridÄ—ti Failus... Remove File(s) Å alinti FailÄ…(-us) Please wait while your songs are imported. PraÅ¡ome palaukti, kol bus importuotos jÅ«sų giesmÄ—s. Words Of Worship Song Files Words Of Worship Giesmių Failai Songs Of Fellowship Song Files Songs Of Fellowship Giesmių Failai SongBeamer Files SongBeamer Failai SongShow Plus Song Files SongShow Plus Giesmių Failai Foilpresenter Song Files Foilpresenter Giesmių Failai Copy Kopijuoti Save to File IÅ¡saugoti į FailÄ… The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importavimo įrankis buvo iÅ¡jungtas, nes OpenLP negali pasiekti OpenOffice ar LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Bendrinis dokumento/pateikties importavimo įrankis buvo iÅ¡jungtas, nes OpenLP negali pasiekti OpenOffice ar LibreOffice. OpenLyrics Files OpenLyrics Failai CCLI SongSelect Files CCLI SongSelect Failai EasySlides XML File EasySlides XML Failas EasyWorship Song Database EasyWorship Giesmių Duomenų BazÄ— DreamBeam Song Files DreamBeam Giesmių Failai You need to specify a valid PowerSong 1.0 database folder. Turite nurodyti teisingÄ… PowerSong 1.0 duomenų bazÄ—s aplankÄ…. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. IÅ¡ pradžių konvertuokite savo ZionWorx duomenų bazÄ™ į CSV tekstinį failÄ…, kaip tai yra paaiÅ¡kinta <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Naudotojo Vadove</a>. SundayPlus Song Files SundayPlus Giesmių Failai This importer has been disabled. Å is importavimo įrankis buvo iÅ¡jungtas. MediaShout Database MediaShout Duomenų BazÄ— The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importavimo įrankis yra palaikomas tik operacinÄ—je sistemoje Windows. Jis buvo iÅ¡jungtas dÄ—l trÅ«kstamo Python modulio. NorÄ—dami naudotis Å¡iuo moduliu, turÄ—site įdiegti "pyodbc" modulį. SongPro Text Files SongPro Tekstiniai Failai SongPro (Export File) SongPro (Eksportavimo Failas) In SongPro, export your songs using the File -> Export menu Programoje SongPro, eksportuokite savo giesmes, naudodami meniu Failas->Eksportavimas EasyWorship Service File EasyWorship Pamaldų Programos Failas WorshipCenter Pro Song Files WorshipCenter Pro Giesmių Failai The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Pro importavimo įrankis yra palaikomas tik operacinÄ—je sistemoje Windows. Jis buvo iÅ¡jungtas dÄ—l trÅ«kstamo Python modulio. NorÄ—dami naudotis Å¡iuo moduliu, turÄ—site įdiegti "pyodbc" modulį. PowerPraise Song Files PowerPraise Giesmių Failai PresentationManager Song Files PresentationManager Giesmių Failai ProPresenter 4 Song Files ProPresenter 4 Giesmių Failai Worship Assistant Files Worship Assistant Failai Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Programoje Worship Assistant, eksportuokite savo Duomenų BazÄ™ į CSV failÄ…. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases OpenLP 2 duomenų bazÄ—s LyriX Files LyriX failai LyriX (Exported TXT-files) LyriX (Eksportuoti TXT-failai) VideoPsalm Files VideoPsalm failai VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s VideoPsalm giesmynai įprastai yra saugomi kataloge %s SongsPlugin.LyrixImport Error: %s Klaida: %s SongsPlugin.MediaFilesForm Select Media File(s) Pasirinkite Medija FailÄ…(-us) Select one or more audio files from the list below, and click OK to import them into this song. Žemiau pasirinkite vienÄ… ar daugiau garso įraÅ¡o failų ir spustelÄ—kite Gerai, kad importuotumÄ—te juos į Å¡iÄ… giesmÄ™. SongsPlugin.MediaItem Titles Pavadinimai Lyrics GiesmÄ—s žodžiai CCLI License: CCLI Licencija: Entire Song Visoje GiesmÄ—je Maintain the lists of authors, topics and books. PrižiÅ«rÄ—ti autorių, temų ir giesmynų sÄ…raÅ¡us. copy For song cloning kopijuoti Search Titles... Pavadinimų PaieÅ¡ka... Search Entire Song... PaieÅ¡ka Visoje GiesmÄ—je... Search Lyrics... GiesmÄ—s Žodžių PaieÅ¡ka... Search Authors... Autorių PaieÅ¡ka... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Nepavyko atidaryti MediaShout duomenų bazÄ—s. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Neteisinga OpenLP 2 giesmių duomenų bazÄ—. SongsPlugin.OpenLyricsExport Exporting "%s"... Eksportuojama "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Neteisingas OpenSong giesmÄ—s failas. TrÅ«ksta giesmÄ—s žymÄ—s. SongsPlugin.PowerSongImport No songs to import. NÄ—ra giesmių, kurias importuoti. Verses not found. Missing "PART" header. EilutÄ—s nerastos. TrÅ«ksta "PART" antraÅ¡tÄ—s. No %s files found. Nerasta %s failų. Invalid %s file. Unexpected byte value. Neteisingas %s failas. NetikÄ—ta baito reikÅ¡mÄ—. Invalid %s file. Missing "TITLE" header. Neteisingas %s failas. TrÅ«ksta "TITLE" antraÅ¡tÄ—s. Invalid %s file. Missing "COPYRIGHTLINE" header. Neteisingas %s failas. TrÅ«ksta "COPYRIGHTLINE" antraÅ¡tÄ—s. SongsPlugin.SongBookForm &Name: &Pavadinimas: &Publisher: &LeidÄ—jas: You need to type in a name for the book. Turite įraÅ¡yti knygos pavadinimÄ…. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. JÅ«sų giesmių eksportavimas nepavyko. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Eksportavimas užbaigtas. Kad importuotumÄ—te Å¡iuos failus, naudokite <strong>OpenLyrics</strong> importavimo įrankį. Your song export failed because this error occurred: %s JÅ«sų giesmių importavimas nepavyko, nes įvyko Å¡i klaida: %s SongsPlugin.SongImport copyright autorių teisÄ—s The following songs could not be imported: Nepavyko importuoti sekanÄių giesmių: Cannot access OpenOffice or LibreOffice Nepavyko prieiti prie OpenOffice ar LibreOffice Unable to open file Nepavyko atidaryti failÄ… File not found Failas nerastas SongsPlugin.SongMaintenanceForm Could not add your author. Nepavyko pridÄ—ti autoriaus. This author already exists. Å is autorius jau yra. Could not add your topic. Nepavyko pridÄ—ti jÅ«sų temos. This topic already exists. Tokia tema jau yra. Could not add your book. Nepavyko pridÄ—ti jÅ«sų knygos. This book already exists. Å i knyga jau yra. Could not save your changes. Nepavyko iÅ¡saugoti jÅ«sų pakeitimų. Could not save your modified author, because the author already exists. Nepavyko iÅ¡saugoti jÅ«sų modifikuoto autoriaus, nes jis jau yra. Could not save your modified topic, because it already exists. Nepavyko iÅ¡saugoti jÅ«sų modifikuotos temos, nes ji jau yra. Delete Author IÅ¡trinti Autorių Are you sure you want to delete the selected author? Ar tikrai norite iÅ¡trinti pasirinktÄ… autorių? This author cannot be deleted, they are currently assigned to at least one song. Å is autorius negali bÅ«ti iÅ¡trintas, nes jis yra priskirtas, mažiausiai, vienai giesmei. Delete Topic IÅ¡trinti TemÄ… Are you sure you want to delete the selected topic? Ar tikrai norite iÅ¡trinti pasirinktÄ… temÄ…? This topic cannot be deleted, it is currently assigned to at least one song. Å i tema negali bÅ«ti iÅ¡trinta, nes ji yra priskirta, mažiausiai, vienai giesmei. Delete Book IÅ¡trinti KnygÄ… Are you sure you want to delete the selected book? Ar tikrai norite iÅ¡trinti pasirinktÄ… knygÄ…? This book cannot be deleted, it is currently assigned to at least one song. Å i knyga negali bÅ«ti iÅ¡trinta, nes ji yra priskirta, mažiausiai, vienai giesmei. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autorius %s jau yra. Ar norÄ—tumÄ—te, kad giesmÄ—s, kurių autorius %s, naudotų esantį autorių %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Tema %s jau yra. Ar norÄ—tumÄ—te, kad giesmÄ—s, kurių tema %s, naudotų esanÄiÄ… temÄ… %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Knyga %s jau yra. Ar norÄ—tumÄ—te, kad giesmÄ—s, kurių knyga %s, naudotų esanÄiÄ… knygÄ… %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Importavimo Ä®rankis <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Pastaba:</strong> Giesmių iÅ¡ CCLI SongSelect tarnybos importavimui, reikalingas interneto ryÅ¡ys. Username: Naudotojo vardas: Password: Slaptažodis: Save username and password IÅ¡saugoti naudotojo vardÄ… ir slaptažodį Login Prisijungti Search Text: PaieÅ¡kos Tekstas: Search PaieÅ¡ka Found %s song(s) Rasta %s giesmÄ—(-ių) Logout Atsijungti View Rodinys Title: Pavadinimas: Author(s): Autorius(-iai): Copyright: Autorių TeisÄ—s: CCLI Number: CCLI Numeris: Lyrics: GiesmÄ—s žodžiai: Back Grįžti Import Importuoti More than 1000 results Daugiau kaip 1000 rezultatų Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. JÅ«sų paieÅ¡ka grąžino daugiau kaip 1000 rezultatų ir buvo sustabdyta. PraÅ¡ome patobulinti savo paieÅ¡kÄ…, kad bÅ«tų gauti tikslesni rezultatai. Logging out... Atsijungiama... Save Username and Password IÅ¡saugoti Naudotojo VardÄ… ir Slaptažodį WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Ä®SPÄ–JIMAS: Naudotojo vardo ir slaptažodžio iÅ¡saugojimas yra NESAUGUS, jÅ«sų slaptažodis yra laikomas GRYNO TEKSTO pavidalu. SpustelÄ—kite Taip, kad iÅ¡saugotumÄ—te savo slaptažodį arba Ne, kad tai atÅ¡auktumÄ—te. Error Logging In Prisijungimo Klaida There was a problem logging in, perhaps your username or password is incorrect? Ä®vyko prisijungimo klaida, galbÅ«t, jÅ«sų naudotojo vardas arba slaptažodis yra neteisingas? Song Imported GiesmÄ— Importuota Incomplete song Neužbaigta giesmÄ— This song is missing some information, like the lyrics, and cannot be imported. Å ioje giesmÄ—je trÅ«ksta kai kurios informacijos, tokios kaip giesmÄ—s žodžiai, todÄ—l ji negali bÅ«ti importuota. Your song has been imported, would you like to import more songs? JÅ«sų giesmÄ— importuota, ar norÄ—tumÄ—te importuoti daugiau giesmių? Stop SongsPlugin.SongsTab Songs Mode Giesmių Veiksena Display verses on live tool bar Rodyti posmelius rodymo Gyvai įrankių juostoje Update service from song edit Atnaujinti pamaldų programÄ…, redaguojant giesmÄ™ Import missing songs from service files Importuoti trÅ«kstamas giesmes iÅ¡ pamaldų programos failų Display songbook in footer Rodyti giesmynÄ… poraÅ¡tÄ—je Display "%s" symbol before copyright info PrieÅ¡ autorių teisių informacijÄ… rodyti "%s" simbolį SongsPlugin.TopicsForm Topic Maintenance Temų PriežiÅ«ra Topic name: Temos pavadinimas: You need to type in a topic name. Turite įraÅ¡yti temos pavadinimÄ…. SongsPlugin.VerseType Verse Posmelis Chorus Priegiesmis Bridge Tiltelis Pre-Chorus PrieÅ¡-Priegiesmis Intro Įžanga Ending Pabaiga Other Kita SongsPlugin.VideoPsalmImport Error: %s Klaida: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Klaida, skaitant CSV failÄ…. Line %d: %s EilutÄ— %d: %s Decoding error: %s Dekodavimo klaida: %s File not valid WorshipAssistant CSV format. Failas yra neteisingo WorshipAssistant CSV formato. Record %d Ä®raÅ¡as %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Neįmanoma prisijungti prie WorshipCenter Pro duomenų bazÄ—s. SongsPlugin.ZionWorxImport Error reading CSV file. Klaida, skaitant CSV failÄ…. File not valid ZionWorx CSV format. Failas nÄ—ra teisingo ZionWorx CSV formato. Line %d: %s EilutÄ— %d: %s Decoding error: %s Dekodavimo klaida: %s Record %d Ä®raÅ¡as %d Wizard Wizard Vedlys This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Å is vedlys padÄ—s jums paÅ¡alinti giesmių dublikatus iÅ¡ giesmių duomenų bazÄ—s. JÅ«s turÄ—site galimybÄ™ peržiÅ«rÄ—ti kiekvienÄ… galimÄ… giesmÄ—s dublikatÄ… prieÅ¡ tai, kai jis bus iÅ¡trintas. Taigi, be jÅ«sų aiÅ¡kaus pritarimo nebus paÅ¡alinta nei viena giesmÄ—. Searching for duplicate songs. IeÅ¡koma giesmių dublikatų. Please wait while your songs database is analyzed. PraÅ¡ome palaukti, kol bus iÅ¡analizuota jÅ«sų giesmių duomenų bazÄ—. Here you can decide which songs to remove and which ones to keep. ÄŒia galite nusprÄ™sti, kurias giesmes paÅ¡alinti, o kurias palikti. Review duplicate songs (%s/%s) PeržiÅ«rÄ—ti giesmių dublikatus (%s/%s) Information Informacija No duplicate songs have been found in the database. Duomenų bazÄ—je nerasta giesmių dublikatų. OpenLP-2.4/resources/i18n/ja.ts0000644000175000017500000160000412657640340015305 0ustar raoulraoul AlertsPlugin &Alert 警告(&A) Show an alert message. 警告メッセージを表示ã—ã¾ã™ã€‚ Alert name singular 警告 Alerts name plural 警告 Alerts container title 警告 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>警告プラグイン</strong><br />警告プラグインã¯ã€ç”»é¢ã¸ã®è­¦å‘Šã®è¡¨ç¤ºã‚’制御ã—ã¾ã™ã€‚ AlertsPlugin.AlertForm Alert Message 警告メッセージ Alert &text: 警告テキスト(&T): &New æ–°è¦ä½œæˆ(&N) &Save ä¿å­˜(&S) Displ&ay 表示(&A) Display && Cl&ose 表示ã—ã¦é–‰ã˜ã‚‹(&O) New Alert æ–°ã—ã„警告 &Parameter: パラメータ(&P): No Parameter Found 引数ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ You have not entered a parameter to be replaced. Do you want to continue anyway? ç½®æ›ã™ã‚‹å¼•æ•°ãŒå…¥åŠ›ã•れã¦ã„ã¾ã›ã‚“。 ç¶šã‘ã¾ã™ã‹? No Placeholder Found プレースホルダーãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ The alert text does not contain '<>'. Do you want to continue anyway? 警告テキストã¯ã€'<>'ã‚’å«ã¿ã¾ã›ã‚“。 処ç†ã‚’ç¶šã‘ã¦ã‚‚よã‚ã—ã„ã§ã™ã‹? You haven't specified any text for your alert. Please type in some text before clicking New. 警告テキストãŒä½•も指定ã•れã¦ã„ã¾ã›ã‚“。 æ–°è¦ä½œæˆã‚’クリックã™ã‚‹å‰ã«ãƒ†ã‚­ã‚¹ãƒˆã‚’入力ã—ã¦ãã ã•ã„。 AlertsPlugin.AlertsManager Alert message created and displayed. 警告メッセージを作æˆã—ã¦è¡¨ç¤ºã—ã¾ã—ãŸã€‚ AlertsPlugin.AlertsTab Font フォント Font name: フォントå: Font color: 文字色: Background color: 背景色: Font size: フォント サイズ: Alert timeout: 警告ã®ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆ: BiblesPlugin &Bible è–æ›¸(&B) Bible name singular è–æ›¸ Bibles name plural è–æ›¸ Bibles container title è–æ›¸ No Book Found 書åãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. 書åãŒã“ã®è–書ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。書åãŒæ­£ã—ã„ã‹ç¢ºèªã—ã¦ãã ã•ã„。 Import a Bible. è–æ›¸ã‚’インãƒãƒ¼ãƒˆã—ã¾ã™ã€‚ Add a new Bible. æ–°ã—ã„è–æ›¸ã‚’追加ã—ã¾ã™ã€‚ Edit the selected Bible. é¸æŠžã•れãŸè–書を編集ã—ã¾ã™ã€‚ Delete the selected Bible. é¸æŠžã•れãŸè–書を削除ã—ã¾ã™ã€‚ Preview the selected Bible. é¸æŠžã•れãŸè–書をプレビューã—ã¾ã™ã€‚ Send the selected Bible live. é¸æŠžã•れãŸè–書をライブã¸é€ä¿¡ã—ã¾ã™ã€‚ Add the selected Bible to the service. é¸æŠžã•れãŸè–書を礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>è–æ›¸ãƒ—ラグイン</strong><br />è–æ›¸ãƒ—ラグインã¯ã€ç¤¼æ‹ãƒ—ãƒ­ã‚°ãƒ©ãƒ ã§æ§˜ã€…ãªè¨³ã®å¾¡è¨€è‘‰ã‚’表示ã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚ &Upgrade older Bibles å¤ã„è–æ›¸ã‚’æ›´æ–°(&U) Upgrade the Bible databases to the latest format. è–æ›¸ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’最新ã®å½¢å¼ã«æ›´æ–°ã—ã¾ã™ã€‚ Genesis 創世記 Exodus 出エジプト記 Leviticus レビ記 Numbers 民数記 Deuteronomy 申命記 Joshua ヨシュア記 Judges 士師記 Ruth ルツ記 1 Samuel サムエル記上 2 Samuel サムエル記下 1 Kings 列王記上 2 Kings 列王記下 1 Chronicles 歴代誌上 2 Chronicles 歴代誌下 Ezra エズラ記 Nehemiah ãƒãƒ˜ãƒŸãƒ¤è¨˜ Esther エステル記 Job ヨブ記 Psalms è©©ç·¨ Proverbs 箴言 Ecclesiastes コヘレトã®è¨€è‘‰ Song of Solomon é›…æ­Œ Isaiah イザヤ書 Jeremiah エレミヤ書 Lamentations 哀歌 Ezekiel エゼキエル書 Daniel ダニエル書 Hosea ホセア書 Joel ヨエル書 Amos アモス書 Obadiah オãƒãƒ‡ãƒ¤æ›¸ Jonah ヨナ書 Micah ミカ書 Nahum ナホム書 Habakkuk ãƒãƒã‚¯ã‚¯æ›¸ Zephaniah ゼファニヤ書 Haggai ãƒã‚¬ã‚¤æ›¸ Zechariah ゼカリヤ書 Malachi マラキ書 Matthew マタイã«ã‚ˆã‚‹ç¦éŸ³æ›¸ Mark マルコã«ã‚ˆã‚‹ç¦éŸ³æ›¸ Luke ルカã«ã‚ˆã‚‹ç¦éŸ³æ›¸ John ヨãƒãƒã«ã‚ˆã‚‹ç¦éŸ³æ›¸ Acts 使徒言行録 Romans ローマã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ 1 Corinthians コリントã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ä¸€ 2 Corinthians コリントã®ä¿¡å¾’ã¸ã®æ‰‹ç´™äºŒ Galatians ガラテヤã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ Ephesians エフェソã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ Philippians フィリピã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ Colossians コロサイã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ 1 Thessalonians テサロニケã®ä¿¡å¾’ã¸ã®æ‰‹ç´™ä¸€ 2 Thessalonians テサロニケã®ä¿¡å¾’ã¸ã®æ‰‹ç´™äºŒ 1 Timothy テモテã¸ã®æ‰‹ç´™ä¸€ 2 Timothy テモテã¸ã®æ‰‹ç´™äºŒ Titus テトスã¸ã®æ‰‹ç´™ Philemon フィレモンã¸ã®æ‰‹ç´™ Hebrews ヘブライ人ã¸ã®æ‰‹ç´™ James ãƒ¤ã‚³ãƒ–ã®æ‰‹ç´™ 1 Peter ãƒšãƒˆãƒ­ã®æ‰‹ç´™ä¸€ 2 Peter ãƒšãƒˆãƒ­ã®æ‰‹ç´™äºŒ 1 John ヨãƒãƒã®æ‰‹ç´™ä¸€ 2 John ヨãƒãƒã®æ‰‹ç´™äºŒ 3 John ヨãƒãƒã®æ‰‹ç´™ä¸‰ Jude ãƒ¦ãƒ€ã®æ‰‹ç´™ Revelation ヨãƒãƒã®é»™ç¤ºéŒ² Judith ユディト記 Wisdom 知æµã®æ›¸ Tobit トビト記 Sirach ã‚·ãƒ©æ›¸ã€”é›†ä¼šã®æ›¸ã€• Baruch ãƒãƒ«ã‚¯æ›¸ 1 Maccabees マカãƒã‚¤è¨˜ä¸€ 2 Maccabees マカãƒã‚¤è¨˜äºŒ 3 Maccabees マカãƒã‚¤è¨˜ä¸‰ 4 Maccabees マカãƒã‚¤è¨˜å›› Rest of Daniel ãƒ€ãƒ‹ã‚¨ãƒ«æ›¸è£œéº Rest of Esther ã‚¨ã‚¹ãƒ†ãƒ«è¨˜è£œéº Prayer of Manasses マナセã®ç¥ˆã‚Š Letter of Jeremiah ã‚¨ãƒ¬ãƒŸãƒ¤ã®æ‰‹ç´™ Prayer of Azariah アザルヤã®ç¥ˆã‚Š Susanna スザンナ Bel ベル 1 Esdras 第1エスドラス書 2 Esdras 第2エスドラス書 : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 : V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 : verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 : verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 : - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 ã‹ã‚‰ , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 㨠end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse 最後 BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. è–æ›¸ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³åを指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. è–æ›¸ã®è‘—作権情報を設定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚パブリックドメインã®è–書ã¯ãã®ã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã•れã¦ã„ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Bible Exists è–æ›¸ãŒå­˜åœ¨ã—ã¾ã™ This Bible already exists. Please import a different Bible or first delete the existing one. ã“ã®è–æ›¸ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ä»–ã®è–書をインãƒãƒ¼ãƒˆã™ã‚‹ã‹ã€å­˜åœ¨ã™ã‚‹è–書を削除ã—ã¦ãã ã•ã„。 You need to specify a book name for "%s". 「%sã€ã®æ›¸åを設定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. 書å「%sã€ã¯æ­£ã—ãã‚りã¾ã›ã‚“。 æ•°å­—ã¯æœ€åˆã®ã¿ã«ä½¿ç”¨ã—ã€ æ•°å­—ä»¥å¤–ã®æ–‡å­—ãŒç¶šãå¿…è¦ãŒã‚りã¾ã™ã€‚ Duplicate Book Name 書åãŒé‡è¤‡ã—ã¦ã„ã¾ã™ The Book Name "%s" has been entered more than once. 書å「%sã€ã¯2回以上入力ã•れã¾ã—ãŸã€‚ BiblesPlugin.BibleManager Scripture Reference Error 書å章節番å·ã‚¨ãƒ©ãƒ¼ Web Bible cannot be used ã‚¦ã‚§ãƒ–è–æ›¸ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“ Text Search is not available with Web Bibles. テキスト検索ã¯ã‚¦ã‚§ãƒ–è–æ›¸ã§ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“。 You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. 検索キーワードãŒå…¥åŠ›ã•れã¦ã„ã¾ã›ã‚“。 複数ã®ã‚­ãƒ¼ãƒ¯ãƒ¼ãƒ‰ã‚’スペースã§åŒºåˆ‡ã‚‹ã¨ã™ã¹ã¦ã«è©²å½“ã™ã‚‹ç®‡æ‰€ã‚’検索ã—ã€ã‚«ãƒ³ãƒž (,) ã§åŒºåˆ‡ã‚‹ã¨ã„ãšã‚Œã‹ã«è©²å½“ã™ã‚‹ç®‡æ‰€ã‚’検索ã—ã¾ã™ã€‚ There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. 利用ã§ãã‚‹è–æ›¸ãŒã‚りã¾ã›ã‚“。インãƒãƒ¼ãƒˆ ウィザードを利用ã—ã¦ã€ä¸€ã¤ä»¥ä¸Šã®è–書をインストールã—ã¦ãã ã•ã„。 No Bibles Available 利用ã§ãã‚‹è–æ›¸ç¿»è¨³ãŒã‚りã¾ã›ã‚“ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. å‚ç…§è–å¥ã®å½¢å¼ãŒã€OpenLPã«ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。以下ã®ãƒ‘ã‚¿ãƒ¼ãƒ³ã«æº–æ‹ ã—ãŸå‚ç…§è–å¥ã§ã‚る事を確èªä¸‹ã•ã„。 書 ç«  書 ç« %(range)sç«  書 ç« %(verse)s節%(range)s節 書 ç« %(verse)s節%(range)s節%(list)s節%(range)s節 書 ç« %(verse)s節%(range)s節%(list)sç« %(verse)s節%(range)s節 書 ç« %(verse)s節%(range)sç« %(verse)s節 BiblesPlugin.BiblesTab Verse Display è–å¥ã®è¡¨ç¤º Only show new chapter numbers åˆã‚ã®ç« ç•ªå·ã®ã¿ã‚’表示 Bible theme: è–æ›¸ã®ãƒ†ãƒ¼ãƒž: No Brackets 括弧ãªã— ( And ) ( 㨠) { And } { 㨠} [ And ] [ 㨠] Note: Changes do not affect verses already in the service. 注æ„: æ—¢ã«ç¤¼æ‹ãƒ—ログラムã«å«ã¾ã‚Œã‚‹å¾¡è¨€è‘‰ã¯å¤‰æ›´ã•れã¾ã›ã‚“。 Display second Bible verses 2 ã¤ã®è–å¥ã‚’表示 Custom Scripture References å‚ç…§è–å¥ã®æ–¹å¼ Verse Separator: 節区切: Range Separator: 範囲区切: List Separator: リスト区切: End Mark: 終了マーク: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. 複数ã®ç¯€ã‚»ãƒ‘レータを設定ã§ãã¾ã™ã€‚ 縦棒"|"ã«ã¦åŒºåˆ‡ã£ã¦ãã ã•ã„。 ã“ã®ã‚¨ãƒ‡ã‚£ãƒƒãƒˆãƒœãƒƒã‚¯ã‚¹ã‚’クリアã™ã‚‹ã“ã¨ã§ã€ãƒ‡ãƒ•ォルトã®è¨­å®šã¨ãªã‚Šã¾ã™ã€‚ English 日本語 Default Bible Language 既定ã®è–書言語 Book name language in search field, search results and on display: æ¤œç´¢ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ãƒ»æ¤œç´¢çµæžœãƒ»ç”»é¢è¡¨ç¤ºã®è¨³å: Bible Language è–æ›¸ã®è¨€èªž Application Language アプリケーションã®è¨€èªž Show verse numbers 節番å·ã‚’表示 BiblesPlugin.BookNameDialog Select Book Name 書åã‚’é¸æŠž Current name: ç¾åœ¨ã®åå‰: Corresponding name: 対応ã™ã‚‹åå‰: Show Books From 絞込㿠Old Testament æ—§ç´„ New Testament æ–°ç´„ Apocrypha æ—§ç´„è–æ›¸ç¶šç·¨ The following book name cannot be matched up internally. Please select the corresponding name from the list. ä»¥ä¸‹ã®æ›¸åã¯å†…éƒ¨ã®æ›¸åã¨ä¸€è‡´ã—ã¾ã›ã‚“ã§ã—ãŸã€‚対応ã™ã‚‹ã‚‚ã®ã‚’一覧ã‹ã‚‰é¸æŠžã—ã¦ãã ã•ã„。 BiblesPlugin.BookNameForm You need to select a book. 書åã‚’é¸æŠžã—ã¦ãã ã•ã„。 BiblesPlugin.CSVBible Importing books... %s 書åをインãƒãƒ¼ãƒˆä¸­... %s Importing verses... done. 節をインãƒãƒ¼ãƒˆä¸­... 完了。 BiblesPlugin.EditBibleForm Bible Editor è–æ›¸ã‚¨ãƒ‡ã‚£ã‚¿ License Details ライセンスã®è©³ç´° Version name: 訳å: Copyright: 著作権: Permissions: 使用許å¯: Default Bible Language 既定ã®è–書言語 Book name language in search field, search results and on display: æ¤œç´¢ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ãƒ»æ¤œç´¢çµæžœãƒ»ç”»é¢ã«è¡¨ç¤ºã•れる訳å: Global Settings 全体設定 Bible Language è–æ›¸ã®è¨€èªž Application Language アプリケーションã®è¨€èªž English 日本語 This is a Web Download Bible. It is not possible to customize the Book Names. ã‚¦ã‚§ãƒ–è–æ›¸ã¯è¨³åを変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。 To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. ä»»æ„ã®æ›¸åを使用ã™ã‚‹ã«ã¯ã€ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã‚¿ãƒ–ã«ã¦&quot;è–æ›¸è¨€èªž&quot;ã‚’é¸æŠžã™ã‚‹ã‹ã€&quot;全体設定&quot;ã®è–書タブã«ã¦è¨­å®šã— ã¦ãã ã•ã„。 BiblesPlugin.HTTPBible Registering Bible and loading books... è–æ›¸ã‚’ç™»éŒ²ã—æ›¸åã‚’å–è¾¼ã¿ä¸­... Registering Language... 言語を登録中... Importing %s... Importing <book name>... %sをインãƒãƒ¼ãƒˆä¸­... Download Error ダウンロード エラー There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. é¸æŠžã•れãŸè–書ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚インターãƒãƒƒãƒˆæŽ¥ç¶šã‚’確èªã—ã€ãれã§ã‚‚エラーãŒç¹°ã‚Šè¿”ã—ã¦èµ·ã“ã‚‹å ´åˆã¯ã€ãƒã‚°å ±å‘Šã‚’検討ã—ã¦ãã ã•ã„。 Parse Error 構文エラー There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. é¸æŠžã•れãŸè–書ã®å±•é–‹ã«å¤±æ•—ã—ã¾ã—ãŸã€‚エラーãŒç¹°ã‚Šè¿”ã—ã¦èµ·ã“ã‚‹å ´åˆã¯ã€ãƒã‚°å ±å‘Šã‚’検討ã—ã¦ãã ã•ã„。 BiblesPlugin.ImportWizardForm Bible Import Wizard è–æ›¸ã‚¤ãƒ³ãƒãƒ¼ãƒˆ ウィザード This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€æ§˜ã€…ãªè–書ã®ãƒ‡ãƒ¼ã‚¿ã‚’インãƒãƒ¼ãƒˆã§ãã¾ã™ã€‚次ã¸ãƒœã‚¿ãƒ³ã‚’クリックã—ã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹è–書ã®ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã‚’é¸æŠžã—ã¦ãã ã•ã„。 Web Download ウェブã‹ã‚‰ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ Location: 場所: Crosswalk Crosswalk BibleGateway BibleGateway Bible: è–æ›¸: Download Options ダウンロード オプション Server: サーãƒ: Username: ユーザå: Password: パスワード: Proxy Server (Optional) プロキシ サーム(çœç•¥å¯) License Details ライセンスã®è©³ç´° Set up the Bible's license details. è–æ›¸ã®ãƒ©ã‚¤ã‚»ãƒ³ã‚¹ã®è©³ç´°ã‚’設定ã—ã¦ãã ã•ã„。 Version name: 訳å: Copyright: 著作権: Please wait while your Bible is imported. è–æ›¸ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆãŒå®Œäº†ã™ã‚‹ã¾ã§ãŠå¾…ã¡ãã ã•ã„。 You need to specify a file with books of the Bible to use in the import. インãƒãƒ¼ãƒˆã™ã‚‹è–æ›¸ã®æ›¸ç°¡ã‚’指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to specify a file of Bible verses to import. インãƒãƒ¼ãƒˆã™ã‚‹ç¯€ã‚’指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to specify a version name for your Bible. è–æ›¸ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³åを指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. è–æ›¸ã®è‘—作権情報を設定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚パブリックドメインã®è–書ã¯ãã®ã‚ˆã†ã«ãƒžãƒ¼ã‚¯ã•れã¦ã„ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Bible Exists è–æ›¸ãŒå­˜åœ¨ã—ã¾ã™ This Bible already exists. Please import a different Bible or first delete the existing one. ã“ã®è–æ›¸ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ä»–ã®è–書をインãƒãƒ¼ãƒˆã™ã‚‹ã‹ã€å­˜åœ¨ã™ã‚‹è–書を削除ã—ã¦ãã ã•ã„。 Your Bible import failed. è–æ›¸ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚ CSV File CSV ファイル Bibleserver Bibleserver Permissions: 使用許å¯: Bible file: è–æ›¸è¨³: Books file: 書簡: Verses file: 節: Registering Bible... è–æ›¸ã‚’登録中... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. è–æ›¸ã‚’登録ã—ã¾ã—ãŸã€‚本文ã¯ä½¿ç”¨æ™‚ã«ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã•れるãŸã‚ã€ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šãŒå¿…è¦ãªã“ã¨ã«æ³¨æ„ã—ã¦ãã ã•ã„。 Click to download bible list クリックã™ã‚‹ã¨è–書訳ã®ä¸€è¦§ã‚’ダウンロードã—ã¾ã™ Download bible list è–æ›¸è¨³ã®ä¸€è¦§ã‚’ダウンロード Error during download ダウンロードエラー An error occurred while downloading the list of bibles from %s. %sã‹ã‚‰è–書訳ã®ä¸€è¦§ã‚’ダウンロード中ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ BiblesPlugin.LanguageDialog Select Language è¨€èªžã‚’é¸æŠž OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ã¯ã“ã®è–書ã®è¨³ã®è¨€èªžã‚’判定ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚以下ã®ä¸€è¦§ã‹ã‚‰è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„。 Language: 言語: BiblesPlugin.LanguageForm You need to choose a language. è¨€èªžã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ BiblesPlugin.MediaItem Quick 高速 Find: 検索: Book: 書å: Chapter: ç« : Verse: 節: From: é–‹å§‹: To: 終了: Text Search テキスト検索 Second: 第二訳: Scripture Reference å‚ç…§è–å¥ Toggle to keep or clear the previous results. çµæžœã‚’ä¿æŒã™ã‚‹ã‹æ¶ˆåŽ»ã™ã‚‹ã‹ã‚’切り替ãˆã¾ã™ã€‚ You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? 1 ã¤ã®è–書ã¨è¤‡æ•°ã®è–æ›¸ã®æ¤œç´¢çµæžœã®çµåˆã¯ã§ãã¾ã›ã‚“ã€‚æ¤œç´¢çµæžœã‚’削除ã—ã¦å†æ¤œç´¢ã—ã¾ã™ã‹? Bible not fully loaded. è–æ›¸ãŒå®Œå…¨ã«èª­ã¿è¾¼ã¾ã‚Œã¦ã„ã¾ã›ã‚“。 Information 情報 The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. 第二訳ã«ã¯æ¤œç´¢ã—ãŸç®‡æ‰€ã™ã¹ã¦ãŒå«ã¾ã‚Œã¦ã„ã¾ã›ã‚“。両方ã®è–書ã«å«ã¾ã‚Œã¦ã„る箇所を表示ã—ã¾ã™ã€‚第 %d 節ãŒé™¤å¤–ã•れã¾ã™ã€‚ Search Scripture Reference... å‚ç…§è–å¥ã‚’検索中... Search Text... テキストを検索中... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. 本当ã«OpenLPã‹ã‚‰è–書"%s"を削除ã—ã¦ã‚‚良ã„ã§ã™ã‹ã€‚ ã‚‚ã†ä¸€åº¦ä½¿ç”¨ã™ã‚‹ã«ã¯ã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ç›´ã™å¿…è¦ãŒã‚りã¾ã™ã€‚ Advanced 詳細設定 BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. 䏿­£ãªè–書ファイルã§ã™ã€‚OpenSongã®è–書ã¯åœ§ç¸®ã•れã¦ã„ã‚‹ã“ã¨ãŒã‚りã¾ã™ã€‚ãã®å ´åˆã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹å‰ã«å±•é–‹ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. 䏿­£ãªè–書ファイルã§ã™ã€‚Zefania XML è–æ›¸ã®ã‚ˆã†ã§ã™ã®ã§ã€Zefaniaインãƒãƒ¼ãƒˆã‚ªãƒ—ションを使用ã—ã¦ãã ã•ã„。 BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s章をインãƒãƒ¼ãƒˆä¸­... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... 使用ã—ã¦ã„ãªã„タグを削除 (数分ã‹ã‹ã‚‹ã“ã¨ãŒã‚りã¾ã™)... Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s章をインãƒãƒ¼ãƒˆä¸­... BiblesPlugin.UpgradeWizardForm Select a Backup Directory ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ— ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠž Bible Upgrade Wizard è–æ›¸æ›´æ–°ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€å¤ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®OpenLP 2ã®è–書を更新をã—ã¾ã™ã€‚次ã¸ã‚’クリックã—ã¦ã€æ›´æ–°ä½œæ¥­ã‚’å§‹ã‚ã¦ãã ã•ã„。 Select Backup Directory ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ— ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠž Please select a backup directory for your Bibles è–æ›¸ã‚’ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã™ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„ Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0 ã®å‰ã®ãƒªãƒªãƒ¼ã‚¹ã§ã¯æ›´æ–°ã—ãŸè–書を使用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã¯ç¾åœ¨ã®è–書ã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—を作æˆã™ã‚‹ã®ã§ã€å‰ã®ãƒªãƒªãƒ¼ã‚¹ã‚’使用ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã¨ãã«ã¯ã€ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã‚’ OpenLP ã®ãƒ‡ãƒ¼ã‚¿ ディレクトリã«ã‚³ãƒ”ーã—ã¦ãã ã•ã„。 Please select a backup location for your Bibles. è–æ›¸ã‚’ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã™ã‚‹å ´æ‰€ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Backup Directory: ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ— ディレクトリ: There is no need to backup my Bibles è–æ›¸ã‚’ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã—ãªã„ Select Bibles è–æ›¸ã‚’é¸æŠž Please select the Bibles to upgrade æ›´æ–°ã™ã‚‹è–æ›¸ã‚’é¸æŠž Upgrading 更新中 Please wait while your Bibles are upgraded. è–æ›¸ã®æ›´æ–°ãŒå®Œäº†ã™ã‚‹ã¾ã§ãŠå¾…ã¡ãã ã•ã„。 The backup was not successful. To backup your Bibles you need permission to write to the given directory. ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ è–æ›¸ã‚’ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã™ã‚‹ãŸã‚ã€æŒ‡å®šã•れãŸãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«æ›¸ãè¾¼ã¿æ¨©é™ãŒã‚ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。 Upgrading Bible %s of %s: "%s" Failed è–æ›¸ã®æ›´æ–°ä¸­(%s/%s): "%s" 失敗 Upgrading Bible %s of %s: "%s" Upgrading ... è–æ›¸ã®æ›´æ–°ä¸­(%s/%s): "%s" 更新中... Download Error ダウンロード エラー To upgrade your Web Bibles an Internet connection is required. ã‚¦ã‚§ãƒ–è–æ›¸ã‚’æ›´æ–°ã™ã‚‹ã«ã¯ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šãŒå¿…è¦ã§ã™ã€‚ Upgrading Bible %s of %s: "%s" Upgrading %s ... è–æ›¸ã‚’更新中(%s/%s): "%s" 更新中 %s... Upgrading Bible %s of %s: "%s" Complete è–æ›¸ã‚’更新中(%s/%s): "%s" 完了 , %s failed , 失敗: %s Upgrading Bible(s): %s successful%s è–æ›¸ã‚’更新中: æˆåŠŸ: %s%s Upgrade failed. æ›´æ–°ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ You need to specify a backup directory for your Bibles. è–æ›¸ã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ— ディレクトリを指定ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Starting upgrade... 更新を開始中... There are no Bibles that need to be upgraded. æ›´æ–°ã™ã‚‹è–書ã¯ã‚りã¾ã›ã‚“。 Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. 䏿­£ãªè–書ファイルã§ã™ã€‚Zefaniaã®è–書ã¯åœ§ç¸®ã•れã¦ã„ã‚‹ã“ã¨ãŒã‚りã¾ã™ã€‚ãã®å ´åˆã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹å‰ã«å±•é–‹ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s章をインãƒãƒ¼ãƒˆä¸­... CustomPlugin Custom Slide name singular カスタム スライド Custom Slides name plural カスタムスライド Custom Slides container title カスタムスライド Load a new custom slide. æ–°ã—ã„カスタム スライドを読ã¿è¾¼ã¿ã¾ã™ã€‚ Import a custom slide. カスタム スライドをインãƒãƒ¼ãƒˆã—ã¾ã™ã€‚ Add a new custom slide. æ–°ã—ã„カスタム スライドを追加ã—ã¾ã™ã€‚ Edit the selected custom slide. é¸æŠžã•れãŸã‚«ã‚¹ã‚¿ãƒ  スライドを編集ã—ã¾ã™ã€‚ Delete the selected custom slide. é¸æŠžã•れãŸã‚«ã‚¹ã‚¿ãƒ  スライドを削除ã—ã¾ã™ã€‚ Preview the selected custom slide. é¸æŠžã•れãŸã‚«ã‚¹ã‚¿ãƒ  スライドをプレビューã—ã¾ã™ã€‚ Send the selected custom slide live. é¸æŠžã•れãŸã‚«ã‚¹ã‚¿ãƒ  スライドをライブã¸é€ã‚Šã¾ã™ã€‚ Add the selected custom slide to the service. é¸æŠžã•れãŸã‚«ã‚¹ã‚¿ãƒ  スライドを礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>カスタム スライド プラグイン </strong><br />カスタム スライド プラグインã¯ã€ä»»æ„ã®ãƒ†ã‚­ã‚¹ãƒˆã‚’賛美ãªã©ã¨åŒæ§˜ã«è¡¨ç¤ºã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚è³›ç¾Žãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã‚ˆã‚Šã‚‚è‡ªç”±ãªæ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚ CustomPlugin.CustomTab Custom Display カスタム表示 Display footer フッターを表示 Import missing custom slides from service files ä¸è¶³ã™ã‚‹ã‚«ã‚¹ã‚¿ãƒ ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’礼æ‹ãƒ—ログラムã‹ã‚‰å–り込む CustomPlugin.EditCustomForm Edit Custom Slides カスタム スライドを編集 &Title: タイトル(&T): Add a new slide at bottom. ä¸€ç•ªä¸‹ã«æ–°è¦ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’追加ã—ã¾ã™ã€‚ Edit the selected slide. é¸æŠžã•れãŸã‚¹ãƒ©ã‚¤ãƒ‰ã‚’編集ã—ã¾ã™ã€‚ Edit all the slides at once. ã™ã¹ã¦ã®ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’一度ã«ç·¨é›†ã—ã¾ã™ã€‚ Split a slide into two by inserting a slide splitter. スライド分割機能を用ã„ã€ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’分割ã—ã¾ã™ã€‚ The&me: テーマ(&M): &Credits: クレジット(&C): You need to type in a title. タイトルã®å…¥åŠ›ãŒå¿…è¦ã§ã™ã€‚ Ed&it All å…¨ã¦ç·¨é›†(&E) Insert Slide スライドを挿入 You need to add at least one slide. 最低1æžšã®ã‚¹ãƒ©ã‚¤ãƒ‰ãŒå¿…è¦ã§ã™ CustomPlugin.EditVerseForm Edit Slide スライド編集 CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>ç”»åƒãƒ—ラグイン</strong><br />ç”»åƒãƒ—ラグインã¯ã€ç”»åƒã‚’表示ã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚<br />礼æ‹ãƒ—ログラムã§è¤‡æ•°ã®ç”»åƒã‚’グループ化ã—ãŸã‚Šã€è¤‡æ•°ã®ç”»åƒã‚’ç°¡å˜ã«è¡¨ç¤ºã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚タイムアウト ãƒ«ãƒ¼ãƒ—ã®æ©Ÿèƒ½ã‚’使用ã—ã¦ã‚¹ãƒ©ã‚¤ãƒ‰ã‚·ãƒ§ãƒ¼ã‚’自動的ã«è¡¨ç¤ºã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ã•らã«ã€è³›ç¾Žãªã©ã®ãƒ†ã‚­ã‚¹ãƒˆ ベースã®é …ç›®ã®èƒŒæ™¯ã‚’ã€å¤–è¦³ãƒ†ãƒ¼ãƒžã§æŒ‡å®šã•れãŸã‚‚ã®ã‹ã‚‰ã“ã®ãƒ—ラグインã®ç”»åƒã«å¤‰æ›´ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ Image name singular ç”»åƒ Images name plural ç”»åƒ Images container title ç”»åƒ Load a new image. æ–°ã—ã„ç”»åƒã‚’読ã¿è¾¼ã¿ã¾ã™ã€‚ Add a new image. æ–°ã—ã„ç”»åƒã‚’追加ã—ã¾ã™ã€‚ Edit the selected image. é¸æŠžã•れãŸç”»åƒã‚’編集ã—ã¾ã™ã€‚ Delete the selected image. é¸æŠžã•れãŸç”»åƒã‚’削除ã—ã¾ã™ã€‚ Preview the selected image. é¸æŠžã•れãŸç”»åƒã‚’プレビューã—ã¾ã™ã€‚ Send the selected image live. é¸æŠžã•れãŸç”»åƒã‚’ライブã¸é€ä¿¡ã—ã¾ã™ã€‚ Add the selected image to the service. é¸æŠžã•れãŸç”»åƒã‚’礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ ImagePlugin.AddGroupForm Add group グループを追加 Parent group: 上ä½ã‚°ãƒ«ãƒ¼ãƒ—: Group name: グループå: You need to type in a group name. グループåを入力ã—ã¦ãã ã•ã„。 Could not add the new group. æ–°ã—ã„グループを追加ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ This group already exists. ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ ImagePlugin.ChooseGroupForm Select Image Group ç”»åƒã‚°ãƒ«ãƒ¼ãƒ—ã‚’é¸æŠž Add images to group: ç”»åƒã‚’グループã«è¿½åŠ : No group グループãªã— Existing group 存在ã™ã‚‹ã‚°ãƒ«ãƒ¼ãƒ— New group æ–°ã—ã„グループ ImagePlugin.ExceptionDialog Select Attachment æ·»ä»˜ã‚’é¸æŠž ImagePlugin.MediaItem Select Image(s) ç”»åƒã‚’é¸æŠž You must select an image to replace the background with. 背景を置æ›ã™ã‚‹ç”»åƒã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Missing Image(s) ç”»åƒãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ The following image(s) no longer exist: %s 以下ã®ç”»åƒã¯å­˜åœ¨ã—ã¾ã›ã‚“: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? 以下ã®ç”»åƒã¯å­˜åœ¨ã—ã¾ã›ã‚“: %s ãれã§ã‚‚ä»–ã®ç”»åƒã‚’追加ã—ã¾ã™ã‹? There was a problem replacing your background, the image file "%s" no longer exists. 背景を置æ›ã™ã‚‹éš›ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ç”»åƒãƒ•ァイル "%s" ãŒå­˜åœ¨ã—ã¾ã›ã‚“。 There was no display item to amend. çµåˆã™ã‚‹é …ç›®ãŒã‚りã¾ã›ã‚“。 -- Top-level group -- -- 最上ä½ã‚°ãƒ«ãƒ¼ãƒ— -- You must select an image or group to delete. 削除ã™ã‚‹ç”»åƒã‹ã‚°ãƒ«ãƒ¼ãƒ—ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Remove group グループを削除 Are you sure you want to remove "%s" and everything in it? 「%sã€ã¨ãã®ä¸­ã®é …目全ã¦ã‚’削除ã—ã¦ã‚ˆã„ã§ã™ã‹? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. アスペクト比ãŒã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã¨ç•°ãªã‚‹ç”»åƒãŒèƒŒæ™¯ã¨ã—ã¦è¡¨ç¤ºã•れã¾ã™ã€‚ Media.player Audio 音声 Video ビデオ VLC is an external player which supports a number of different formats. VLCã¯å¤–部プレーヤã§ã€æ§˜ã€…ãªç¨®é¡žã®ãƒ•ォーマットをサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã™ã€‚ Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkitã¯ã‚¦ã‚§ãƒ–ブラウザ内ã§å‹•作ã™ã‚‹ãƒ¡ãƒ‡ã‚£ã‚¢ãƒ—レーヤーã§ã™ã€‚ã“ã®ãƒ—レーヤã«ã‚ˆã‚Šãƒ“デオã®ä¸Šã«ãƒ†ã‚­ã‚¹ãƒˆã‚’æç”»ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>メディア プラグイン</strong><br />メディア プラグインã¯ã€éŸ³å£°ã‚„動画をå†ç”Ÿã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚ Media name singular メディア Media name plural メディア Media container title メディア Load new media. æ–°ã—ã„メディアを読ã¿è¾¼ã¿ã¾ã™ã€‚ Add new media. æ–°ã—ã„メディアを追加ã—ã¾ã™ã€‚ Edit the selected media. é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’編集ã—ã¾ã™ã€‚ Delete the selected media. é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’削除ã—ã¾ã™ã€‚ Preview the selected media. é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’プレビューã—ã¾ã™ã€‚ Send the selected media live. é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’ライブã¸é€ã‚Šã¾ã™ã€‚ Add the selected media to the service. é¸æŠžã—ãŸãƒ¡ãƒ‡ã‚£ã‚¢ã‚’礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ MediaPlugin.MediaClipSelector Select Media Clip ãƒ¡ãƒ‡ã‚£ã‚¢ã‚¯ãƒªãƒƒãƒ—ã‚’é¸æŠž Source ソース Media path: メディアã®ãƒ‘ス: Select drive from list 一覧ã‹ã‚‰ãƒ‰ãƒ©ã‚¤ãƒ–ã‚’é¸æŠž Load disc ディスクã®èª­ã¿è¾¼ã¿ Track Details トラックã®è©³ç´° Title: タイトル: Audio track: 音声トラック: Subtitle track: サブタイトルトラック: HH:mm:ss.z HH:mm:ss.z Clip Range クリップ範囲 Start point: é–‹å§‹ä½ç½®: Set start point é–‹å§‹ä½ç½®ã‚’設定 Jump to start point é–‹å§‹ä½ç½®ã«ç§»å‹• End point: 終了ä½ç½®: Set end point 終了ä½ç½®ã‚’設定 Jump to end point 終了ä½ç½®ã«ç§»å‹• MediaPlugin.MediaClipSelectorForm No path was given パスãŒå…¥åŠ›ã•れã¦ã„ã¾ã›ã‚“。 Given path does not exists 入力ã•れãŸãƒ‘スã¯å­˜åœ¨ã—ã¾ã›ã‚“。 An error happened during initialization of VLC player VLCメディアプレーヤーã®åˆæœŸåŒ–中ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ VLC player failed playing the media VLCメディアプレーヤーã«ã‚ˆã‚‹å†ç”Ÿã«å¤±æ•—ã—ã¾ã—ãŸã€‚ CD not loaded correctly CDã®èª­ã¿è¾¼ã¿ã«å¤±æ•— The CD was not loaded correctly, please re-load and try again. CDã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ディスクを入れ直ã—ã¦ãã ã•ã„。 DVD not loaded correctly DVDã®èª­ã¿è¾¼ã¿ã«å¤±æ•— The DVD was not loaded correctly, please re-load and try again. DVDã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ディスクを入れ直ã—ã¦ãã ã•ã„。 Set name of mediaclip メディアクリップã®åå‰ã‚’設定 Name of mediaclip: メディアクリップã®åå‰: Enter a valid name or cancel 有効ãªåå‰ã‚’入力ã™ã‚‹ã‹ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã—ã¦ãã ã•ã„ Invalid character ç„¡åŠ¹ãªæ–‡å­— The name of the mediaclip must not contain the character ":" メディアクリップã®åå‰ã«ã¯ã€Œ:ã€ã‚’å«ã¾ãªã„ã§ãã ã•ã„。 MediaPlugin.MediaItem Select Media ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’é¸æŠž You must select a media file to delete. 削除ã™ã‚‹ãƒ¡ãƒ‡ã‚£ã‚¢ ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You must select a media file to replace the background with. 背景を置æ›ã™ã‚‹ãƒ¡ãƒ‡ã‚£ã‚¢ ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ There was a problem replacing your background, the media file "%s" no longer exists. 背景を置æ›ã™ã‚‹éš›ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚メディア ファイル"%s"ã¯å­˜åœ¨ã—ã¾ã›ã‚“。 Missing Media File メディア ファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ The file %s no longer exists. ファイル %s ãŒå­˜åœ¨ã—ã¾ã›ã‚“。 Videos (%s);;Audio (%s);;%s (*) å‹•ç”» (%s);;音声 (%s);;%s (*) There was no display item to amend. çµåˆã™ã‚‹é …ç›®ãŒã‚りã¾ã›ã‚“。 Unsupported File 無効ãªãƒ•ァイル Use Player: 使用ã™ã‚‹å†ç”Ÿã‚½ãƒ•ト: VLC player required VLCメディアプレーヤーãŒå¿…è¦ VLC player required for playback of optical devices 光ディスクã®å†ç”Ÿã«ã¯VLCメディアプレーヤーãŒå¿…è¦ã§ã™ Load CD/DVD CD・DVDã®èª­ã¿è¾¼ã¿ Load CD/DVD - only supported when VLC is installed and enabled CD・DVDã®èª­ã¿è¾¼ã¿ - VLCãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れ有効ã«ãªã£ã¦ã„ã‚‹å ´åˆã®ã¿æœ‰åй The optical disc %s is no longer available. 光ディスク %s ã¯æœ‰åйã§ã¯ã‚りã¾ã›ã‚“。 Mediaclip already saved ãƒ¡ãƒ‡ã‚£ã‚¢ã‚¯ãƒªãƒƒãƒ—ã¯æ—¢ã«ä¿å­˜ã•れã¦ã„ã¾ã™ This mediaclip has already been saved ã“ã®ãƒ¡ãƒ‡ã‚£ã‚¢ã‚¯ãƒªãƒƒãƒ—ã¯æ—¢ã«ä¿å­˜ã•れã¦ã„ã¾ã™ã€‚ MediaPlugin.MediaTab Allow media player to be overridden メディアプレーヤを上書ãå¯èƒ½ã«ã™ã‚‹ Start Live items automatically ライブ項目を自動ã§å†ç”Ÿ OPenLP.MainWindow &Projector Manager プロジェクタ マãƒãƒ¼ã‚¸ãƒ£ (&P) OpenLP Image Files ç”»åƒãƒ•ァイル Information 情報 Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? è–æ›¸ã®å½¢å¼ãŒå¤‰æ›´ã•れã¾ã—ãŸã€‚ è–æ›¸ã‚’æ›´æ–°ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ 今ã™ã OpenLP ãŒæ›´æ–°ã—ã¦ã‚‚ã„ã„ã§ã™ã‹? Backup ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ— OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLPãŒã‚¢ãƒƒãƒ—グレードã•れã¾ã—ãŸã€‚OpenLPデータをãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã—ã¾ã™ã‹? Backup of the data folder failed! データã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ A backup of the data folder has been created at %s %sã«ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ãŒä½œæˆã•れã¾ã—㟠Open é–‹ã OpenLP.AboutForm Credits クレジット License ライセンス build %s ビルド %s 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; version 2 of the License. ã“ã®ãƒ—ログラムã¯ãƒ•リーソフトウェアã§ã™ã€‚ã‚ãªãŸã¯ã“れをã€ãƒ•リーソフトウェア財団ã«ã‚ˆã£ã¦ç™ºè¡Œã•れãŸGNU一般公衆利用許諾書ãƒãƒ¼ã‚¸ãƒ§ãƒ³2ãŒå®šã‚ã‚‹æ¡ä»¶ã®ä¸‹ã§å†é ’布ã¾ãŸã¯æ”¹å¤‰ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ 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 below for more details. ã“ã®ãƒ—ログラムã¯ã€çš†æ§˜ã®ãŠå½¹ã«ç«‹ã¦ã‚‹ã¨æœŸå¾…ã—ã¦é…布ã—ã¦ã„ã¾ã™ã€‚ã—ã‹ã—ã€å®Œå…¨ã«ç„¡ä¿éšœã§ã‚ã‚‹ã“ã¨ã‚’ç†è§£ã—ã¦ãã ã•ã„。商å“ã¨ã—ã¦ã®æš—é»™ã®ä¿éšœã¨ã—ã¦ã®å•†å“驿 ¼æ€§ã‚„特定ã®ä½¿ç”¨é©åˆæ€§ã‚‚ã‚りã¾ã›ã‚“。詳ã—ãã¯ä»¥ä¸‹ã‚’ãŠèª­ã¿ãã ã•ã„。 OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - オープンソース賛美詞投射ソフトウェア OpenLP ã¯ã€æ•™ä¼šå°‚用ã®ãƒ•リーã®ãƒ—レゼンテーションåŠã³è³›ç¾Žè©žæŠ•射ソフトウェアã§ã™ã€‚パソコンã¨ãƒ—ロジェクターを用ã„ã¦ã€è–書箇所ã€ç”»åƒã¾ãŸä»–プレゼンテーションデータ (OpenOffice.org ã‚„ PowerPoint/Viewer ãŒå¿…è¦) を表示ã§ãã¾ã™ã€‚ http://openlp.org/ ã«ã¦è©³ã—ãã”紹介ã—ã¦ãŠã‚Šã¾ã™ã€‚ OpenLP ã¯ã€ãƒœãƒ©ãƒ³ãƒ†ã‚£ã‚¢ã®æ‰‹ã§é–‹ç™ºä¿å®ˆã•れã¦ã„ã¾ã™ã€‚ã‚‚ã£ã¨å¤šãã®ã‚¯ãƒªã‚¹ãƒãƒ£ãƒ³ã®æ‰‹ã«ã‚ˆã‚‹ãƒ•リーã®ã‚½ãƒ•トウェア開発ã«èˆˆå‘³ãŒã‚ã‚‹æ–¹ã¯ã€ä»¥ä¸‹ã®ãƒœã‚¿ãƒ³ã‹ã‚‰ã©ã†ãžã€‚ Volunteer 貢献者 Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings UI 設定 Number of recent files to display: 最近使用ã—ãŸãƒ•ァイルã®è¡¨ç¤ºæ•°: Remember active media manager tab on startup 起動時ã«å‰å›žã®ãƒ¡ãƒ‡ã‚£ã‚¢ マãƒãƒ¼ã‚¸ãƒ£ã‚’é–‹ã Double-click to send items straight to live ダブル クリックã§é …目を直接ライブã¸é€ä¿¡ Expand new service items on creation 礼æ‹é …ç›®ã®ä½œæˆæ™‚ã«å±•é–‹ Enable application exit confirmation アプリケーションã®çµ‚了時ã«ç¢ºèª Mouse Cursor マウス カーソル Hide mouse cursor when over display window ディスプレイ ウィンドウã®ä¸Šã§ã¯ã€ãƒžã‚¦ã‚¹ カーソルを隠㙠Default Image 既定ã®ç”»åƒ Background color: 背景色: Image file: ç”»åƒãƒ•ァイル: Open File ファイルを開ã Advanced 詳細設定 Preview items when clicked in Media Manager メディア マãƒãƒ¼ã‚¸ãƒ£ã§ã‚¯ãƒªãƒƒã‚¯æ™‚ã«é …目をプレビュー Browse for an image file to display. 表示ã™ã‚‹ç”»åƒãƒ•ァイルをå‚ç…§ã™ã‚‹ã€‚ Revert to the default OpenLP logo. 既定㮠OpenLP ãƒ­ã‚´ã«æˆ»ã™ã€‚ Default Service Name 既定ã®ç¤¼æ‹å Enable default service name 既定ã®ç¤¼æ‹åを有効ã«ã™ã‚‹ Date and Time: æ—¥ä»˜ã¨æ™‚刻: Monday 月曜日 Tuesday ç«æ›œæ—¥ Wednesday 水曜日 Friday 金曜日 Saturday 土曜日 Sunday 日曜日 Now ç¾åœ¨ Time when usual service starts. 普段ã®ç¤¼æ‹é–‹å§‹æ™‚刻。 Name: åå‰: Consult the OpenLP manual for usage. 詳細ã¯OpenLPã®ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ã‚’ã”覧ãã ã•ã„。 Revert to the default service name "%s". 既定ã®ç¤¼æ‹å「%sã€ã«æˆ»ã™ã€‚ Example: 例: Bypass X11 Window Manager X11ã‚’ãƒã‚¤ãƒ‘スã™ã‚‹ Syntax error. 構文エラーã§ã™ã€‚ Data Location データã®ä¿å­˜å ´æ‰€ Current path: ç¾åœ¨ã®ãƒ‘ス: Custom path: カスタムã®ãƒ‘ス: Browse for new data file location. データファイルã®ä¿å­˜å ´æ‰€ã‚’ブラウズã™ã‚‹ã€‚ Set the data location to the default. データã®ä¿å­˜å ´ã‚’デフォルトã«è¨­å®šã™ã‚‹ã€‚ Cancel キャンセル Cancel OpenLP data directory location change. OpenLPã®ãƒ‡ãƒ¼ã‚¿ã®ä¿å­˜å ´æ‰€ã®å¤‰æ›´ã‚’キャンセルã™ã‚‹ã€‚ Copy data to new location. データを新ã—ã„ä¿å­˜å ´æ‰€ã¸ã‚³ãƒ”ーã™ã‚‹ã€‚ Copy the OpenLP data files to the new location. OpenLPã®ãƒ‡ãƒ¼ã‚¿ãƒ•ァイルを新ã—ã„ä¿å­˜å ´æ‰€ã¸ã‚³ãƒ”ーã™ã‚‹ã€‚ <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>警告:</strong> æ–°ã—ã„データã®ä¿å­˜å ´æ‰€ã«ã¯ã™ã§ã«OpenLPã®ãƒ‡ãƒ¼ã‚¿ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚ã“れらã®ãƒ•ァイルã¯ç½®æ›ã•れã¾ã™ã€‚ Data Directory Error ä¿å­˜å ´æ‰€ã‚¨ãƒ©ãƒ¼ Select Data Directory Location データã®ä¿å­˜å ´æ‰€ã‚’é¸ã¶ Confirm Data Directory Change データã®ä¿å­˜å ´æ‰€ã®å¤‰æ›´ã‚’ç¢ºèª Reset Data Directory データã®ä¿å­˜å ´æ‰€ã‚’リセット Overwrite Existing Data 存在ã™ã‚‹ãƒ‡ãƒ¼ã‚¿ã®ä¸Šæ›¸ã OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLPã®ä¿å­˜å ´æ‰€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ %s ã“ã®ä¿å­˜å ´æ‰€ã¯ä»¥å‰ã«ãƒ‡ãƒ•ォルトã®å ´æ‰€ã‹ã‚‰å¤‰æ›´ã•れã¦ã„ã¾ã™ã€‚ã‚‚ã—æ–°ã—ã„場所ãŒå–り外ã—å¯èƒ½ãªãƒ¡ãƒ‡ã‚£ã‚¢ä¸Šã§ã‚ã£ãŸå ´åˆã€ãã®ãƒ¡ãƒ‡ã‚£ã‚¢ãŒä½¿ç”¨å‡ºæ¥ã‚‹ã‚ˆã†ã«ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ 「ã„ã„ãˆã€ã‚’クリックã™ã‚‹ã¨OpenLPã®é–‹å§‹ã‚’中断ã—ã¾ã™ã€‚ã“ã®å•題を修正ã—ã¦ãã ã•ã„。 「ã¯ã„ã€ã‚’クリックã™ã‚‹ã¨ãƒ‡ãƒ•ォルトã®å ´æ‰€ã«æˆ»ã—ã¾ã™ã€‚ Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. 本当ã«OpenLPã®ä¿å­˜å ´æ‰€ã‚’以下ã«å¤‰æ›´ã—ã¦ã‚ˆã„ã§ã™ã‹? %s OpenLPãŒçµ‚了ã—ãŸæ™‚ã«ä¿å­˜å ´æ‰€ãŒå¤‰æ›´ã•れã¾ã™ã€‚ Thursday 木曜日 Display Workarounds 表示ã«é–¢ã™ã‚‹ãƒ¯ãƒ¼ã‚¯ã‚¢ãƒ©ã‚¦ãƒ³ãƒ‰ Use alternating row colours in lists 一覧ã«ç¸žæ¨¡æ§˜ã‚’ã¤ã‘ã‚‹ WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? 警告: é¸æŠžã•れãŸä»¥ä¸‹ã®å ´æ‰€ã¯æ—¢ã«OpenLPã®ãƒ‡ãƒ¼ã‚¿ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚既存ã®ãƒ•ァイルをç¾åœ¨ã®ãƒ•ァイルã§ç½®ãæ›ãˆã¾ã™ã‹ã€‚ %s Restart Required å†èµ·å‹•ãŒå¿…è¦ This change will only take effect once OpenLP has been restarted. ã“ã®å¤‰æ›´ã¯OpenLPã®å†èµ·å‹•後ã«é©ç”¨ã•れã¾ã™ã€‚ Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLPã®ãƒ‡ãƒ¼ã‚¿ä¿å­˜å ´æ‰€ã‚’デフォルトã«å¤‰æ›´ã—ã¦è‰¯ã„ã§ã™ã‹? ã“ã®ä¿å­˜å ´æ‰€ã¯OpenLPã®çµ‚了後より使用ã•れã¾ã™ã€‚ OpenLP.ColorButton Click to select a color. クリックã—ã¦è‰²ã‚’é¸æŠžã—ã¾ã™ã€‚ OpenLP.DB RGB RGB Video ビデオ Digital ディジタル Storage ストレージ Network ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 ビデオ 1 Video 2 ビデオ 2 Video 3 ビデオ 3 Video 4 ビデオ 4 Video 5 ビデオ 5 Video 6 ビデオ 6 Video 7 ビデオ 7 Video 8 ビデオ 8 Video 9 ビデオ 9 Digital 1 ディジタル 1 Digital 2 ディジタル 2 Digital 3 ディジタル 3 Digital 4 ディジタル 4 Digital 5 ディジタル 5 Digital 6 ディジタル 6 Digital 7 ディジタル 7 Digital 8 ディジタル 8 Digital 9 ディジタル 9 Storage 1 ストレージ 1 Storage 2 ストレージ 2 Storage 3 ストレージ 3 Storage 4 ストレージ 4 Storage 5 ストレージ 5 Storage 6 ストレージ 6 Storage 7 ストレージ 7 Storage 8 ストレージ 8 Storage 9 ストレージ 9 Network 1 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 1 Network 2 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 2 Network 3 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 3 Network 4 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 4 Network 5 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 5 Network 6 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 6 Network 7 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 7 Network 8 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 8 Network 9 ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ 9 OpenLP.ExceptionDialog Error Occurred エラーãŒç™ºç”Ÿã—ã¾ã—㟠Send E-Mail メールをé€ä¿¡ Save to File ファイルã«ä¿å­˜ Attach File ファイルを添付 Description characters to enter : %s 説明 : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s プラットフォーム: %s Save Crash Report クラッシュ報告をä¿å­˜ Text files (*.txt *.log *.text) テキスト ファイル (*.txt *.log *.text) OpenLP.FileRenameForm File Rename ファイルåを変更 New File Name: æ–°ã—ã„ファイルå: File Copy ファイルをコピー OpenLP.FirstTimeLanguageForm Select Translation ç¿»è¨³è¨€èªžã‚’é¸æŠž Choose the translation you'd like to use in OpenLP. OpenLP ã§åˆ©ç”¨ã™ã‚‹è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„。 Translation: 翻訳言語: OpenLP.FirstTimeWizard Songs 賛美 First Time Wizard åˆå›žèµ·å‹•ウィザード Welcome to the First Time Wizard åˆå›žèµ·å‹•ウィザードã¸ã‚ˆã†ã“ã Activate required Plugins å¿…è¦ãªãƒ—ラグインを有効化ã™ã‚‹ Select the Plugins you wish to use. ã”利用ã«ãªã‚‹ãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Bible è–æ›¸ Images ç”»åƒ Presentations プレゼンテーション Media (Audio and Video) メディア(音声ã¨å‹•ç”») Allow remote access ãƒªãƒ¢ãƒ¼ãƒˆã‚¢ã‚¯ã‚»ã‚¹ã‚’è¨±å¯ Monitor Song Usage 賛美利用記録 Allow Alerts è­¦å‘Šã‚’è¨±å¯ Default Settings 既定設定 Downloading %s... ダウンロード中 %s... Enabling selected plugins... é¸æŠžã•れãŸãƒ—ラグインを有効ã«ã—ã¦ã„ã¾ã™... No Internet Connection インターãƒãƒƒãƒˆæŽ¥ç¶šãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ Unable to detect an Internet connection. インターãƒãƒƒãƒˆæŽ¥ç¶šãŒæ¤œçŸ¥ã•れã¾ã›ã‚“ã§ã—ãŸã€‚ Sample Songs サンプル賛美 Select and download public domain songs. パブリックドメインã®è³›ç¾Žã‚’é¸æŠžã™ã‚‹äº‹ã§ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã§ãã¾ã™ã€‚ Sample Bibles ã‚µãƒ³ãƒ—ãƒ«è–æ›¸ Select and download free Bibles. 以下ã®ãƒ•ãƒªãƒ¼è–æ›¸ã‚’é¸æŠžã™ã‚‹äº‹ã§ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã§ãã¾ã™ã€‚ Sample Themes サンプル外観テーマ Select and download sample themes. ã‚µãƒ³ãƒ—ãƒ«å¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠžã™ã‚‹äº‹ã§ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã§ãã¾ã™ã€‚ Set up default settings to be used by OpenLP. 既定設定ãŒOpenLPã«ä½¿ã‚れるよã†ã«ã‚»ãƒƒãƒˆã‚¢ãƒƒãƒ—ã—ã¾ã™ã€‚ Default output display: 既定出力先: Select default theme: æ—¢å®šå¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠž: Starting configuration process... 設定処ç†ã‚’é–‹å§‹ã—ã¦ã„ã¾ã™... Setting Up And Downloading 設定ã¨ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ä¸­ Please wait while OpenLP is set up and your data is downloaded. OpenLPãŒã‚»ãƒƒãƒˆã‚¢ãƒƒãƒ—ã•れã€ã‚ãªãŸã®ãƒ‡ãƒ¼ã‚¿ãŒã‚¤ãƒ³ãƒãƒ¼ãƒˆã•れるã¾ã§ãŠå¾…ã¡ä¸‹ã•ã„。 Setting Up 設定中 Custom Slides カスタムスライド Finish 終了 No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. インターãƒãƒƒãƒˆã«æŽ¥ç¶šã§ãã¾ã›ã‚“。終了ボタンをクリックã—ã€ã‚µãƒ³ãƒ—ルデータ無ã—ã§åˆæœŸè¨­å®šã®ã¾ã¾OpenLPã‚’èµ·å‹•ã—ã¦ãã ã•ã„。 åˆå›žèµ·å‹•ウィザードをもã†ä¸€åº¦å®Ÿè¡Œã—ã¦ã‚µãƒ³ãƒ—ルデータをインãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€&quot;ツール/åˆå›žèµ·å‹•ウィザードã®å†å®Ÿè¡Œ&quot;ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Download Error ダウンロード エラー There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ä¸­ã«æŽ¥ç¶šã«é–¢ã™ã‚‹å•題ãŒç™ºç”Ÿã—ã€ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã‚’中断ã—ã¾ã—ãŸã€‚後ã§åˆå›žèµ·å‹•ウィザードを実行ã—ãªãŠã—ã¦ãã ã•ã„。 Download complete. Click the %s button to return to OpenLP. ダウンロードãŒå®Œäº†ã—ã¾ã—ãŸã€‚%sボタンを押ã—ã¦OpenLPã«æˆ»ã£ã¦ãã ã•ã„。 Download complete. Click the %s button to start OpenLP. ダウンロードãŒå®Œäº†ã—ã¾ã—ãŸã€‚%sボタンをクリックã™ã‚‹ã¨ OpenLP ãŒé–‹å§‹ã—ã¾ã™ã€‚ Click the %s button to return to OpenLP. %sボタンをクリックã™ã‚‹ã¨OpenLPã«æˆ»ã‚Šã¾ã™ã€‚ Click the %s button to start OpenLP. %sをクリックã™ã‚‹ã¨ã€OpenLPã‚’é–‹å§‹ã—ã¾ã™ã€‚ There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ä¸­ã«æŽ¥ç¶šã«é–¢ã™ã‚‹å•題ãŒç™ºç”Ÿã—ã€ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã‚’中断ã—ã¾ã—ãŸã€‚後ã§åˆå›žèµ·å‹•ウィザードを実行ã—ãªãŠã—ã¦ãã ã•ã„。 This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€OpenLPã‚’åˆã‚ã¦ä½¿ç”¨ã™ã‚‹éš›ã®è¨­å®šã‚’ã—ã¾ã™ã€‚%sをクリックã—ã¦é–‹å§‹ã—ã¦ãã ã•ã„。 To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. åˆå›žèµ·å‹•ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã‚’çµ‚äº†ã—æ¬¡å›žã‹ã‚‰è¡¨ç¤ºã—ãªã„ãŸã‚ã«ã¯ã€%sボタンをクリックã—ã¦ãã ã•ã„。 Downloading Resource Index リソース一覧をダウンロード中 Please wait while the resource index is downloaded. リソース一覧ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ãŒå®Œäº†ã™ã‚‹ã¾ã§ãŠå¾…ã¡ãã ã•ã„。 Please wait while OpenLP downloads the resource index file... OpenLPãŒãƒªã‚½ãƒ¼ã‚¹ä¸€è¦§ã‚’ダウンロードã—ã¦ã„ã¾ã™ã€‚ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„... Downloading and Configuring ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã¨æ§‹æˆ Please wait while resources are downloaded and OpenLP is configured. リソースã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã¨æ§‹æˆã‚’行ãªã£ã¦ã„ã¾ã™ã€‚ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。 Network Error ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚¨ãƒ©ãƒ¼ There was a network error attempting to connect to retrieve initial configuration information ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚¨ãƒ©ãƒ¼ã«ã‚ˆã‚ŠåˆæœŸè¨­å®šã®æƒ…報をå–得出æ¥ã¾ã›ã‚“ã§ã—ãŸã€‚ Cancel キャンセル Unable to download some files ã„ãã¤ã‹ã®ãƒ•ァイルをダウンロードã§ãã¾ã›ã‚“ OpenLP.FormattingTagDialog Configure Formatting Tags 書å¼ã‚¿ã‚°ã‚’設定 Description 説明 Tag ã‚¿ã‚° Start HTML é–‹å§‹HTML End HTML 終了HTML Default Formatting 既定ã®ãƒ•ォーマット Custom Formatting カスタムフォーマット OpenLP.FormattingTagForm <HTML here> <html here> Validation Error 検証エラー Description is missing 説明ãŒä¸è¶³ã—ã¦ã„ã¾ã™ Tag is missing ã‚¿ã‚°ãŒã¿ã¤ã‹ã‚Šã¾ã›ã‚“ Tag %s already defined. タグ「%sã€ã¯æ—¢ã«å®šç¾©ã•れã¦ã„ã¾ã™ã€‚ Description %s already defined. 説明 %s ã¯æ—¢ã«å®šç¾©ã•れã¦ã„ã¾ã™ã€‚ Start tag %s is not valid HTML é–‹å§‹ã‚¿ã‚°%sã¯æœ‰åйãªHTMLã§ã¯ã‚りã¾ã›ã‚“ End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red 赤 Black é»’ Blue é’ Yellow 黄 Green ç·‘ Pink ピンク Orange æ©™ Purple ç´« White 白 Superscript 上付ã Subscript 下付ã Paragraph æ®µè½ Bold 太字 Italics 斜体 Underline 下線 Break 改行 OpenLP.GeneralTab General 全般 Monitors モニタ Select monitor for output display: ç”»é¢ã‚’出力ã™ã‚‹ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã‚’é¸æŠž: Display if a single screen スクリーン㌠1 ã¤ã—ã‹ãªãã¦ã‚‚表示 Application Startup アプリケーションã®èµ·å‹• Show blank screen warning 警告中ã«ã¯ç©ºç™½ã®ç”»é¢ã‚’表示 Automatically open the last service 自動的ã«å‰å›žã®ç¤¼æ‹ãƒ—ログラムを開ã Show the splash screen スプラッシュ スクリーンを表示 Application Settings アプリケーションã®è¨­å®š Prompt to save before starting a new service æ–°ã—ã„礼æ‹ãƒ—ログラムを開始ã™ã‚‹å‰ã«ä¿å­˜ã‚’ç¢ºèª Automatically preview next item in service 礼æ‹ãƒ—ãƒ­ã‚°ãƒ©ãƒ å†…ã®æ¬¡ã®é …目を自動的ã«ãƒ—レビュー sec ç§’ CCLI Details CCLI 詳細 SongSelect username: SongSelect ユーザå: SongSelect password: SongSelect パスワード: X X Y Y Height 高㕠Width å¹… Check for updates to OpenLP OpenLP ã®æ›´æ–°ã‚’ç¢ºèª Unblank display when adding new live item ライブ項目ã®è¿½åŠ æ™‚ã«ãƒ–ランクを解除 Timed slide interval: 時間付ãスライドã®é–“éš”: Background Audio ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰éŸ³å£° Start background audio paused ä¸€æ™‚åœæ­¢ä¸­ã®ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰éŸ³å£°ã‚’å†ç”Ÿ Service Item Slide Limits 礼æ‹é …目スライドã®ä¸Šé™ Override display position: 表示ä½ç½®ã‚’上書ã: Repeat track list 音声トラックã®ä¸€è¦§ã‚’繰り返ã—å†ç”Ÿ Behavior of next/previous on the last/first slide: ã‚¹ãƒ©ã‚¤ãƒ‰ã®æœ€å¾Œ/最åˆã§æ¬¡/å‰ã¸ç§»å‹•ã™ã‚‹å‹•作: &Remain on Slide 移動ã—ãªã„(&R) &Wrap around 周回ã™ã‚‹(&W) &Move to next/previous service item 次/å‰ã®ç¤¼æ‹é …ç›®ã¸ç§»å‹•(&M) OpenLP.LanguageManager Language 言語 Please restart OpenLP to use your new language setting. æ–°ã—ã„言語設定を使用ã«ã¯ OpenLP ã‚’å†èµ·å‹•ã—ã¦ãã ã•ã„。 OpenLP.MainDisplay OpenLP Display OpenLP ディスプレイ OpenLP.MainWindow &File ファイル(&F) &Import インãƒãƒ¼ãƒˆ(&I) &Export エクスãƒãƒ¼ãƒˆ(&E) &View 表示(&V) M&ode モード(&O) &Tools ツール(&T) &Settings 設定(&S) &Language 言語(&L) &Help ヘルプ(&H) Service Manager 礼æ‹ãƒ—ログラム Theme Manager テーマ マãƒãƒ¼ã‚¸ãƒ£ Open an existing service. 存在ã™ã‚‹ç¤¼æ‹ãƒ—ログラムを開ãã¾ã™ã€‚ Save the current service to disk. ç¾åœ¨ã®ç¤¼æ‹ãƒ—ログラムをディスクã«ä¿å­˜ã—ã¾ã™ã€‚ Save Service As åå‰ã‚’ã¤ã‘ã¦ç¤¼æ‹ãƒ—ログラムをä¿å­˜ Save the current service under a new name. ç¾åœ¨ã®ç¤¼æ‹ãƒ—ログラムを新ã—ã„åå‰ã§ä¿å­˜ã—ã¾ã™ã€‚ E&xit 終了(&X) Quit OpenLP OpenLP を終了 &Theme テーマ(&T) &Configure OpenLP... OpenLP ã®è¨­å®š(&C)... &Media Manager メディア マãƒãƒ¼ã‚¸ãƒ£(&M) Toggle Media Manager メディア マãƒãƒ¼ã‚¸ãƒ£ã‚’切り替ãˆã‚‹ Toggle the visibility of the media manager. メディア マãƒãƒ¼ã‚¸ãƒ£ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã¾ã™ã€‚ &Theme Manager テーマ マãƒãƒ¼ã‚¸ãƒ£(&T) Toggle Theme Manager テーマ マãƒãƒ¼ã‚¸ãƒ£ã®åˆ‡ã‚Šæ›¿ãˆ Toggle the visibility of the theme manager. テーマ マãƒãƒ¼ã‚¸ãƒ£ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã¾ã™ã€‚ &Service Manager 礼æ‹ãƒ—ログラム管ç†(&S) Toggle Service Manager 礼æ‹ãƒ—ログラムã®åˆ‡ã‚Šæ›¿ãˆ Toggle the visibility of the service manager. 礼æ‹ãƒ—ログラムã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã‚‹ã€‚ &Preview Panel プレビュー パãƒãƒ«(&P) Toggle Preview Panel プレビュー パãƒãƒ«ã®åˆ‡ã‚Šæ›¿ãˆ Toggle the visibility of the preview panel. プレビュー パãƒãƒ«ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã¾ã™ã€‚ &Live Panel ライブ パãƒãƒ«(&L) Toggle Live Panel ライブ パãƒãƒ«ã®åˆ‡ã‚Šæ›¿ãˆ Toggle the visibility of the live panel. ライブ パãƒãƒ«ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã‚‹ã€‚ List the Plugins プラグイン一覧を表示ã—ã¾ã™ &User Guide ユーザ ガイド(&U) &About ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…å ±(&A) More information about OpenLP OpenLP ã®è©³ç´°æƒ…å ± &Online Help オンライン ヘルプ(&O) &Web Site ウェブ サイト(&W) Use the system language, if available. å¯èƒ½ã§ã‚れã°ã‚·ã‚¹ãƒ†ãƒ è¨€èªžã‚’使用ã—ã¾ã™ã€‚ Set the interface language to %s インタフェース言語を %s ã«è¨­å®š Add &Tool... ツールを追加(&T)... Add an application to the list of tools. ツールã®ä¸€è¦§ã«ã‚¢ãƒ—リケーションを追加ã—ã¾ã™ã€‚ &Default 既定値(&D) Set the view mode back to the default. è¡¨ç¤ºãƒ¢ãƒ¼ãƒ‰ã‚’æ—¢å®šã«æˆ»ã—ã¾ã™ã€‚ &Setup 設定(&S) Set the view mode to Setup. 表示モードを設定ã—ã¾ã™ã€‚ &Live ライブ(&L) Set the view mode to Live. 表示モードをライブã«ã—ã¾ã™ã€‚ Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s をダウンロードã§ãã¾ã™ã€‚(ç¾åœ¨ã”利用ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯ %s ã§ã™ã€‚) http://openlp.org/ ã‹ã‚‰æœ€æ–°ç‰ˆã‚’ダウンロードã§ãã¾ã™ã€‚ OpenLP Version Updated OpenLPã®ã‚¢ãƒƒãƒ—デートãŒã‚りã¾ã™ OpenLP Main Display Blanked OpenLP ã®ãƒ—ライマリ ディスプレイãŒãƒ–ランクã§ã™ The Main Display has been blanked out OpenLP ã®ãƒ—ライマリ ディスプレイãŒãƒ–ランクã«ãªã‚Šã¾ã—㟠Default Theme: %s 既定ã®ãƒ†ãƒ¼ãƒž: %s English Please add the name of your language here 日本語 Configure &Shortcuts... ショートカットã®è¨­å®š(&S)... Open &Data Folder... データフォルダを開ã(&D)... Open the folder where songs, bibles and other data resides. 賛美ã€è–書データãªã©ã®ãƒ‡ãƒ¼ã‚¿ãŒå«ã¾ã‚Œã¦ã„るフォルダを開ã。 &Autodetect 自動検出(&A) Update Theme Images テーマã®ç¸®å°ç”»åƒã‚’æ›´æ–° Update the preview images for all themes. å…¨ã¦ã®ãƒ†ãƒ¼ãƒžã®ç¸®å°ç”»åƒã‚’æ›´æ–°ã—ã¾ã™ã€‚ Print the current service. ç¾åœ¨ã®ç¤¼æ‹ãƒ—ログラムをå°åˆ·ã—ã¾ã™ã€‚ L&ock Panels パãƒãƒ«ã‚’固定(&L) Prevent the panels being moved. パãƒãƒ«ãŒå‹•ãã®ã‚’妨ã’る。 Re-run First Time Wizard åˆå›žèµ·å‹•ウィザードã®å†å®Ÿè¡Œ Re-run the First Time Wizard, importing songs, Bibles and themes. åˆå›žèµ·å‹•ウィザードをå†å®Ÿè¡Œã—ã€è³›ç¾Žã‚„è–æ›¸ã€ãƒ†ãƒ¼ãƒžã‚’インãƒãƒ¼ãƒˆã™ã‚‹ã€‚ Re-run First Time Wizard? åˆå›žèµ·å‹•ウィザードをå†å®Ÿè¡Œã—ã¾ã™ã‹? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. 本当ã«åˆå›žèµ·å‹•ウィザードをå†å®Ÿè¡Œã—ã¾ã™ã‹? åˆå›žèµ·å‹•ウィザードをå†å®Ÿè¡Œã™ã‚‹ã¨ã€ç¾åœ¨ã®OpenLP設定ãŠã‚ˆã³æ—¢å­˜ã®è³›ç¾Žã‚„テーマãŒå¤‰æ›´ã•れるã“ã¨ãŒã‚りã¾ã™ã€‚ Clear List Clear List of recent files 一覧を消去 Clear the list of recent files. 最近使用ã—ãŸãƒ•ァイルã®ä¸€è¦§ã‚’消去ã—ã¾ã™ã€‚ Configure &Formatting Tags... 書å¼ã‚¿ã‚°ã‚’設定(&F)... Export OpenLP settings to a specified *.config file OpenLPã®è¨­å®šã‚’ファイルã¸ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ Settings 設定 Import OpenLP settings from a specified *.config file previously exported on this or another machine 以å‰ã«ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã—ãŸãƒ•ァイルã‹ã‚‰ OpenLP ã®è¨­å®šã‚’インãƒãƒ¼ãƒˆ Import settings? 設定をインãƒãƒ¼ãƒˆã—ã¾ã™ã‹? Open File ファイルを開ã OpenLP Export Settings Files (*.conf) OpenLP エクスãƒãƒ¼ãƒˆè¨­å®šãƒ•ァイル (*.conf) Import settings 設定ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆ OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP を終了ã•ã›ã¾ã™ã€‚インãƒãƒ¼ãƒˆã•れãŸè¨­å®šã¯æ¬¡ã®èµ·å‹•時ã«é©ç”¨ã•れã¾ã™ã€‚ Export Settings File 設定ファイルã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ OpenLP Export Settings File (*.conf) OpenLP 設定ファイル (*.conf) New Data Directory Error æ–°ã—ã„ä¿å­˜å ´æ‰€ã®ã‚¨ãƒ©ãƒ¼ Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLPデータを新ã—ã„ä¿å­˜å ´æ‰€ (%s) ã¸ã‚³ãƒ”ーã—ã¦ã„ã¾ã™ã€‚コピーãŒçµ‚了ã™ã‚‹ã¾ã§ãŠå¾…ã¡ãã ã•ã„。 OpenLP Data directory copy failed %s OpenLPä¿å­˜å ´æ‰€ã®ã‚³ãƒ”ーã«å¤±æ•— %s General 全般 Library ライブラリ Jump to the search box of the current active plugin. ç¾åœ¨æœ‰åйãªãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã®æ¤œç´¢ãƒœãƒƒã‚¯ã‚¹ã«ã‚¸ãƒ£ãƒ³ãƒ—ã—ã¾ã™ã€‚ Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. 本当ã«è¨­å®šã‚’インãƒãƒ¼ãƒˆã—ã¾ã™ã‹? 設定をインãƒãƒ¼ãƒˆã™ã‚‹ã¨ç¾åœ¨ã®OpenLPã®è¨­å®šãŒå¤±ã‚れã¾ã™ã€‚ 䏿­£ãªè¨­å®šã‚’インãƒãƒ¼ãƒˆã™ã‚‹ã¨ç•°å¸¸ãªå‹•作やOpenLPã®ç•°å¸¸çµ‚了ã®åŽŸå› ã¨ãªã‚Šã¾ã™ã€‚ The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. é¸æŠžã•れãŸãƒ•ã‚¡ã‚¤ãƒ«ã¯æœ‰åйãªOpenLP設定ファイルã§ã¯ã‚りã¾ã›ã‚“。 処ç†ã¯ä¸­æ–­ã•れã€è¨­å®šã¯å¤‰æ›´ã•れã¾ã›ã‚“ã§ã—ãŸã€‚ Projector Manager プロジェクタマãƒãƒ¼ã‚¸ãƒ£ Toggle Projector Manager プロジェクタマãƒãƒ¼ã‚¸ãƒ£ã®åˆ‡ã‚Šæ›¿ãˆ Toggle the visibility of the Projector Manager プロジェクターマãƒãƒ¼ã‚¸ãƒ£ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替㈠Export setting error 設定ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—㟠The key "%s" does not have a default value so it will be skipped in this export. 項目「%sã€ã«ã¯å€¤ãŒè¨­å®šã•れã¦ã„ãªã„ãŸã‚ã€ã‚¹ã‚­ãƒƒãƒ—ã—ã¾ã™ã€‚ An error occurred while exporting the settings: %s 設定ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error データベースエラー The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s 読ã¿è¾¼ã¾ã‚ŒãŸãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã¯æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®OpenLPã§ä½œæˆã•れã¾ã—ãŸã€‚データベースã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯%dã§ã™ãŒã€OpenLPã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã¯%dã§ã™ã€‚データベースã¯èª­ã¿è¾¼ã¾ã‚Œã¾ã›ã‚“。 データベース: %s OpenLP cannot load your database. Database: %s OpenLPã¯ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’読ã¿è¾¼ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。 データベース: %s OpenLP.MediaManagerItem No Items Selected 一ã¤ã®é …ç›®ã‚‚é¸æŠžã•れã¦ã„ã¾ã›ã‚“ &Add to selected Service Item é¸æŠžã•れãŸç¤¼æ‹é …ç›®ã«è¿½åŠ (&A) You must select one or more items to preview. プレビューã™ã‚‹ã«ã¯ 1 ã¤ä»¥ä¸Šã®é …ç›®ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You must select one or more items to send live. ライブã«é€ä¿¡ã™ã‚‹ã«ã¯ 1 ã¤ä»¥ä¸Šã®é …ç›®ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You must select one or more items. 1 ã¤ä»¥ä¸Šã®é …ç›®ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You must select an existing service item to add to. 追加ã™ã‚‹ã«ã¯æ—¢å­˜ã®ç¤¼æ‹é …ç›®ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Invalid Service Item 無効ãªç¤¼æ‹é …ç›® You must select a %s service item. %sã®é …ç›®ã‚’é¸æŠžã—ã¦ãã ã•ã„。 You must select one or more items to add. 追加ã™ã‚‹ã«ã¯ã€ä¸€ã¤ä»¥ä¸Šã®é …ç›®ã‚’é¸æŠžã—ã¦ãã ã•ã„。 No Search Results 見ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—㟠Invalid File Type 無効ãªãƒ•ァイルタイプ Invalid File %s. Suffix not supported %sã¯ç„¡åйãªãƒ•ァイルã§ã™ã€‚ æ‹¡å¼µå­ãŒã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“ &Clone é–‰ã˜ã‚‹(&C) Duplicate files were found on import and were ignored. インãƒãƒ¼ãƒˆä¸­ã«é‡è¤‡ã™ã‚‹ãƒ•ァイルãŒè¦‹ã¤ã‹ã‚Šã€ç„¡è¦–ã•れã¾ã—ãŸã€‚ OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics>ã‚¿ã‚°ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 <verse> tag is missing. <verse>ã‚¿ã‚°ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 OpenLP.PJLink1 Unknown status 䏿˜ŽãªçŠ¶æ…‹ No message メッセージãªã— Error while sending data to projector データをプロジェクタã«é€ä¿¡ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—㟠Undefined command: 定義ã•れã¦ã„ãªã„コマンド: OpenLP.PlayerTab Players å†ç”Ÿã‚½ãƒ•ト Available Media Players 利用å¯èƒ½ãªå†ç”Ÿã‚½ãƒ•ト Player Search Order å†ç”Ÿã‚½ãƒ•トã®é †åº Visible background for videos with aspect ratio different to screen. アスペクト比ãŒã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã¨ç•°ãªã‚‹ãƒ“デオãŒèƒŒæ™¯ã¨ã—ã¦è¡¨ç¤ºã•れã¾ã™ã€‚ %s (unavailable) %s (利用ä¸å¯èƒ½) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details プラグイン詳細 Status: 状æ³: Active 有効 Inactive 無効 %s (Inactive) %s (無効) %s (Active) %s (有効) %s (Disabled) %s (無効) Manage Plugins OpenLP.PrintServiceDialog Fit Page サイズをページã«åˆã‚ã›ã‚‹ Fit Width ã‚µã‚¤ã‚ºã‚’ãƒšãƒ¼ã‚¸ã®æ¨ªå¹…ã«åˆã‚ã›ã‚‹ OpenLP.PrintServiceForm Options オプション Copy コピー Copy as HTML HTMLã¨ã—ã¦ã‚³ãƒ”ー Zoom In ズームイン Zoom Out ズームアウト Zoom Original 既定ã®ã‚ºãƒ¼ãƒ ã«æˆ»ã™ Other Options ãã®ä»–ã®ã‚ªãƒ—ション Include slide text if available å¯èƒ½ã§ã‚れã°ã€ã‚¹ãƒ©ã‚¤ãƒ‰ãƒ†ã‚­ã‚¹ãƒˆã‚’å«ã‚ã‚‹ Include service item notes 礼æ‹é …目メモをå«ã‚ã‚‹ Include play length of media items メディア項目ã®å†ç”Ÿæ™‚é–“ã‚’å«ã‚ã‚‹ Add page break before each text item ãƒ†ã‚­ã‚¹ãƒˆé …ç›®æ¯Žã«æ”¹ãƒšãƒ¼ã‚¸ Service Sheet 礼æ‹ã‚·ãƒ¼ãƒˆ Print å°åˆ· Title: タイトル: Custom Footer Text: カスタムフッターテキスト: OpenLP.ProjectorConstants OK OK General projector error 一般的ãªãƒ—ロジェクタエラー Not connected error 未接続エラー Lamp error ランプエラー Fan error ファンエラー High temperature detected 温度ãŒé«˜ã™ãŽã¾ã™ Cover open detected ã‚«ãƒãƒ¼ãŒé–‹ã„ã¦ã„ã¾ã™ Check filter ãƒ•ã‚£ãƒ«ã‚¿ãƒ¼ã‚’ç¢ºèª Authentication Error èªè¨¼ã‚¨ãƒ©ãƒ¼ Undefined Command 定義ã•れã¦ã„ãªã„コマンド Invalid Parameter 無効ãªãƒ‘ラメータ Projector Busy 混雑中 Projector/Display Error プロジェクタ/ディスプレイエラー Invalid packet received 無効ãªãƒ‘ケットをå—ä¿¡ã—ã¾ã—㟠Warning condition detected 警告ãŒã‚りã¾ã™ Error condition detected エラーãŒã‚りã¾ã™ PJLink class not supported PJLinkクラスãŒã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“ Invalid prefix character 無効ãªãƒ—リフィックス文字ã§ã™ The connection was refused by the peer (or timed out) æŽ¥ç¶šãŒæ‹’å¦ã•れãŸã‹ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆãŒç™ºç”Ÿã—ã¾ã—㟠The remote host closed the connection ãƒªãƒ¢ãƒ¼ãƒˆãƒ›ã‚¹ãƒˆãŒæŽ¥ç¶šã‚’åˆ‡æ–­ã—ã¾ã—㟠The host address was not found ホストアドレスãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ The socket operation failed because the application lacked the required privileges å¿…è¦ãªæ¨©é™ãŒä¸è¶³ã—ã¦ã„ã‚‹ãŸã‚ソケット処ç†ã«å¤±æ•—ã—ã¾ã—㟠The local system ran out of resources (e.g., too many sockets) ローカルシステムã®ãƒªã‚½ãƒ¼ã‚¹ãŒä¸è¶³ã—ã¦ã„ã¾ã™ (ソケットã®ä½¿ã„ã™ãŽãªã©) The socket operation timed out ソケット処ç†ãŒã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆã—ã¾ã—㟠The datagram was larger than the operating system's limit データã®å¤§ãã•ãŒOSã®åˆ¶é™ã‚’è¶…ãˆã¦ã„ã¾ã™ An error occurred with the network (Possibly someone pulled the plug?) ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã«é–¢ã™ã‚‹ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—㟠(ãƒ—ãƒ©ã‚°ãŒæŠœã‘ã¦ã„ã¾ã›ã‚“ã‹?) The address specified with socket.bind() is already in use and was set to be exclusive socket.bind()ã§æŒ‡å®šã•れãŸã‚¢ãƒ‰ãƒ¬ã‚¹ã¯æ—¢ã«ä½¿ç”¨ã•れã¦ãŠã‚Šã€æŽ’ä»–ã«è¨­å®šã•れã¦ã„ã¾ã™ã€‚ The address specified to socket.bind() does not belong to the host socket.bind()ã§æŒ‡å®šã•れãŸã‚¢ãƒ‰ãƒ¬ã‚¹ã¯ãƒ›ã‚¹ãƒˆã«å±žã—ã¦ã„ã¾ã›ã‚“。 The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) è¦æ±‚ã•れãŸã‚½ã‚±ãƒƒãƒˆå‡¦ç†ã¯ãƒ­ãƒ¼ã‚«ãƒ«OSã§ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。(IPv6ã®ä¸è¶³ãªã©) The socket is using a proxy, and the proxy requires authentication プロキシãŒä½¿ç”¨ã•れã¦ãŠã‚Šã€èªè¨¼ãŒå¿…è¦ã§ã™ã€‚ The SSL/TLS handshake failed SSL/TLSãƒãƒ³ãƒ‰ã‚·ã‚§ã‚¤ã‚¯ã«å¤±æ•—ã—ã¾ã—㟠The last operation attempted has not finished yet (still in progress in the background) æœ€å¾Œã®æ“作ã¯çµ‚了ã—ã¦ã„ã¾ã›ã‚“ (ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã§å®Ÿè¡Œä¸­ã§ã™) Could not contact the proxy server because the connection to that server was denied æŽ¥ç¶šãŒæ‹’å¦ã•れãŸãŸã‚プロキシサーãƒã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—㟠The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) プロキシサーãƒã¸ã®æŽ¥ç¶šãŒåˆ‡æ–­ã•れã¾ã—ãŸã€‚(æœ€çµ‚ç‚¹ã¸æŽ¥ç¶šã§ãã‚‹å‰ã«) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. プロキシサーãƒã¸ã®æŽ¥ç¶šãŒã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆã—ãŸã‹ã€èªè¨¼ã®æ®µéšŽã§å¿œç­”ãŒã‚りã¾ã›ã‚“。 The proxy address set with setProxy() was not found setProxy()ã§è¨­å®šã•れãŸãƒ—ロキシアドレスãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ An unidentified error occurred 䏿˜Žãªã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿ Not connected 未接続 Connecting 接続中 Connected 接続済 Getting status 状態をå–得中 Off Off Initialize in progress åˆæœŸåŒ–中 Power in standby スタンãƒã‚¤ä¸­ Warmup in progress 準備中 Power is on é›»æºãŒå…¥ã£ã¦ã„ã‚‹ Cooldown in progress 冷å´ä¸­ Projector Information available プロジェクタ情報ãŒã‚りã¾ã™ Sending data データをé€ä¿¡ä¸­ Received data å—信データ The connection negotiation with the proxy server failed because the response from the proxy server could not be understood プロキシサーãƒã¸ã®æŽ¥ç¶šã«å¤±æ•—ã—ã¾ã—ãŸã€‚プロキシサーãƒãƒ¼ã‹ã‚‰ã®å¿œç­”ã‚’ç†è§£ã§ãã¾ã›ã‚“。 OpenLP.ProjectorEdit Name Not Set åå‰ãŒæœªè¨­å®š You must enter a name for this entry.<br />Please enter a new name for this entry. ã“ã®é …ç›®ã«åå‰ã‚’入力ã—ã¦ãã ã•ã„。<br />ã“ã®é …ç›®ã«æ–°ã—ã„åå‰ã‚’入力ã—ã¦ãã ã•ã„。 Duplicate Name åå‰ãŒé‡è¤‡ã—ã¾ã™ OpenLP.ProjectorEditForm Add New Projector æ–°ã—ã„プロジェクタを追加 Edit Projector プロジェクタを編集 IP Address IPアドレス Port Number ãƒãƒ¼ãƒˆç•ªå· PIN PIN Name åå‰ Location 場所 Notes メモ Database Error データベースエラー There was an error saving projector information. See the log for the error プロジェクタ情報をä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ログを確èªã—ã¦ãã ã•ã„。 OpenLP.ProjectorManager Add Projector プロジェクタを追加 Add a new projector æ–°ã—ã„プロジェクタを追加ã—ã¾ã™ Edit Projector プロジェクタを編集 Edit selected projector é¸æŠžã—ãŸãƒ—ロジェクタを編集ã—ã¾ã™ Delete Projector プロジェクタを削除 Delete selected projector é¸æŠžã—ãŸãƒ—ロジェクタを削除ã—ã¾ã™ Select Input Source å…¥åŠ›ã‚’é¸æŠž Choose input source on selected projector é¸æŠžã—ãŸãƒ—ロジェクタã®å…¥åŠ›ã‚’é¸æŠžã—ã¾ã™ View Projector プロジェクタを表示 View selected projector information é¸æŠžã—ãŸãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã®æƒ…報を表示ã—ã¾ã™ Connect to selected projector é¸æŠžã—ãŸãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã«æŽ¥ç¶š Connect to selected projectors é¸æŠžã—ãŸãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã«æŽ¥ç¶š Disconnect from selected projectors é¸æŠžã—ãŸãƒ—ロジェクタã‹ã‚‰åˆ‡æ–­ Disconnect from selected projector é¸æŠžã—ãŸãƒ—ロジェクタã‹ã‚‰åˆ‡æ–­ Power on selected projector é¸æŠžã—ãŸãƒ—ロジェクタã®é›»æºæŠ•å…¥ Standby selected projector é¸æŠžã—ãŸãƒ—ロジェクタをスタンãƒã‚¤ Put selected projector in standby é¸æŠžã—ãŸãƒ—ロジェクタをスタンãƒã‚¤çŠ¶æ…‹ã«ã—ã¾ã™ Blank selected projector screen é¸æŠžã—ãŸãƒ—ロジェクタをブランクã«ã—ã¾ã™ Show selected projector screen é¸æŠžã—ãŸãƒ—ロジェクタã®ãƒ–ランクを解除ã—ã¾ã™ &View Projector Information プロジェクタ情報ã®è¡¨ç¤º (&V) &Edit Projector プロジェクタを編集 (&E) &Connect Projector ãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã«æŽ¥ç¶š (&C) D&isconnect Projector プロジェクタã‹ã‚‰åˆ‡æ–­ (&D) Power &On Projector プロジェクタã®é›»æºæŠ•å…¥ (&O) Power O&ff Projector プロジェクタã®é›»æºåˆ‡æ–­ (&F) Select &Input å…¥åŠ›ã‚’é¸æŠž (&I) Edit Input Source 入力を編集 &Blank Projector Screen プロジェクタをブランクã«ã™ã‚‹ (&B) &Show Projector Screen プロジェクタã®ãƒ–ランクを解除 (&S) &Delete Projector プロジェクタを削除 (&D) Name åå‰ IP IP Port ãƒãƒ¼ãƒˆ Notes メモ Projector information not available at this time. ãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã®æƒ…報をå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Projector Name プロジェクタå Manufacturer 製造元 Model 型番 Other info ãã®ä»– Power status é›»æº Shutter is シャッター㌠Closed é–‰ã˜ã¦ã„ã‚‹ Current source input is ç¾åœ¨ã®å…¥åŠ›ã¯ Lamp ランプ On On Off Off Hours 時間 No current errors or warnings エラーや警告ã¯ã‚りã¾ã›ã‚“ Current errors/warnings ç¾åœ¨ã®ã‚¨ãƒ©ãƒ¼/警告 Projector Information プロジェクタ情報 No message メッセージãªã— Not Implemented Yet 未実装 Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan ファン Lamp ランプ Temperature 温度 Cover ã‚«ãƒãƒ¼ Filter フィルター Other ãã®ä»– OpenLP.ProjectorTab Projector プロジェクタ Communication Options 通信オプション Connect to projectors on startup 起動時ã«ãƒ—ãƒ­ã‚¸ã‚§ã‚¯ã‚¿ã¸æŽ¥ç¶šã™ã‚‹ Socket timeout (seconds) ソケットタイムアウト (ç§’) Poll time (seconds) ãƒãƒ¼ãƒ«æ™‚é–“ (ç§’) Tabbed dialog box タブ付ダイアログ Single dialog box シングルダイアログ OpenLP.ProjectorWizard Duplicate IP Address é‡è¤‡ã™ã‚‹IPアドレス Invalid IP Address 無効ãªIPアドレス Invalid Port Number 無効ãªãƒãƒ¼ãƒˆç•ªå· OpenLP.ScreenList Screen スクリーン primary プライマリ OpenLP.ServiceItem <strong>Start</strong>: %s <strong>é–‹å§‹</strong>: %s <strong>Length</strong>: %s <strong>é•·ã•</strong>: %s [slide %d] [スライド %d] OpenLP.ServiceItemEditForm Reorder Service Item 礼æ‹é …ç›®ã‚’ä¸¦ã¹æ›¿ãˆ OpenLP.ServiceManager Move to &top 一番上ã«ç§»å‹•(&t) Move item to the top of the service. é¸æŠžã—ãŸé …目を最も上ã«ç§»å‹•ã™ã‚‹ã€‚ Move &up 一ã¤ä¸Šã«ç§»å‹•(&u) Move item up one position in the service. é¸æŠžã—ãŸé …目を1ã¤ä¸Šã«ç§»å‹•ã™ã‚‹ã€‚ Move &down 一ã¤ä¸‹ã«ç§»å‹•(&d) Move item down one position in the service. é¸æŠžã—ãŸé …目を1ã¤ä¸‹ã«ç§»å‹•ã™ã‚‹ã€‚ Move to &bottom 一番下ã«ç§»å‹•(&b) Move item to the end of the service. é¸æŠžã—ãŸé …目を最も下ã«ç§»å‹•ã™ã‚‹ã€‚ &Delete From Service 削除(&D) Delete the selected item from the service. é¸æŠžã—ãŸé …目を礼æ‹ãƒ—ログラムã‹ã‚‰å‰Šé™¤ã™ã‚‹ã€‚ &Add New Item æ–°ã—ã„項目を追加(&A) &Add to Selected Item é¸æŠžã•れãŸé …目を追加(&A) &Edit Item é …ç›®ã®ç·¨é›†(&E) &Reorder Item é …ç›®ã‚’ä¸¦ã¹æ›¿ãˆ(&R) &Notes メモ(&N) &Change Item Theme é …ç›®ã®å¤–観テーマを変更(&C) File is not a valid service. 礼æ‹ãƒ—ãƒ­ã‚°ãƒ©ãƒ ãƒ•ã‚¡ã‚¤ãƒ«ãŒæœ‰åйã§ã‚りã¾ã›ã‚“。 Missing Display Handler ディスプレイãƒãƒ³ãƒ‰ãƒ©ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ Your item cannot be displayed as there is no handler to display it ディスプレイãƒãƒ³ãƒ‰ãƒ©ãŒè¦‹ã¤ã‹ã‚‰ãªã„ãŸã‚項目を表示ã™ã‚‹äº‹ãŒã§ãã¾ã›ã‚“ Your item cannot be displayed as the plugin required to display it is missing or inactive å¿…è¦ãªãƒ—ラグインãŒè¦‹ã¤ã‹ã‚‰ãªã„ã‹ç„¡åйãªãŸã‚ã€é …目を表示ã™ã‚‹äº‹ãŒã§ãã¾ã›ã‚“ &Expand all ã™ã¹ã¦å±•é–‹(&E) Expand all the service items. å…¨ã¦ã®é …目を展開ã™ã‚‹ã€‚ &Collapse all ã™ã¹ã¦æŠ˜ã‚Šç•³ã‚€(&C) Collapse all the service items. å…¨ã¦ã®é …目を折り畳ã¿ã¾ã™ã€‚ Open File ファイルを開ã Moves the selection down the window. é¸æŠžã‚’ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ä¸‹ã«ç§»å‹•ã™ã‚‹ã€‚ Move up 上ã«ç§»å‹• Moves the selection up the window. é¸æŠžã‚’ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ä¸Šã«ç§»å‹•ã™ã‚‹ã€‚ Go Live ライブã¸é€ã‚‹ Send the selected item to Live. é¸æŠžã•れãŸé …目をライブ表示ã™ã‚‹ã€‚ &Start Time 開始時間(&S) Show &Preview プレビュー表示(&P) Modified Service 礼æ‹ãƒ—ログラムã®ç·¨é›† The current service has been modified. Would you like to save this service? ç¾åœ¨ã®ç¤¼æ‹ãƒ—ログラムã¯ã€ç·¨é›†ã•れã¦ã„ã¾ã™ã€‚ä¿å­˜ã—ã¾ã™ã‹? Custom Service Notes: 礼æ‹é …目メモ: Notes: メモ: Playing time: å†ç”Ÿæ™‚é–“: Untitled Service 無題 File could not be opened because it is corrupt. ファイルãŒç ´æã—ã¦ã„ã‚‹ãŸã‚é–‹ã‘ã¾ã›ã‚“。 Empty File 空ã®ãƒ•ァイル This service file does not contain any data. ã“ã®ç¤¼æ‹ãƒ—ログラムファイルã¯ç©ºã§ã™ã€‚ Corrupt File ç ´æã—ãŸãƒ•ァイル Load an existing service. 既存ã®ç¤¼æ‹ãƒ—ログラムを読ã¿è¾¼ã¿ã¾ã™ã€‚ Save this service. 礼æ‹ãƒ—ログラムをä¿å­˜ã—ã¾ã™ã€‚ Select a theme for the service. 礼æ‹ãƒ—ログラムã®å¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠžã—ã¾ã™ã€‚ Slide theme スライド外観テーマ Notes メモ Edit 編集 Service copy only 礼æ‹é …ç›®ã®ã¿ç·¨é›† Error Saving File ファイルä¿å­˜ã‚¨ãƒ©ãƒ¼ There was an error saving your file. ファイルã®ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ Service File(s) Missing 礼æ‹ãƒ—ログラムファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ &Rename... åå‰ã®å¤‰æ›´... (&R) Create New &Custom Slide æ–°ã—ã„ã‚«ã‚¹ã‚¿ãƒ ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’ä½œæˆ (&C) &Auto play slides 自動å†ç”Ÿ (&A) Auto play slides &Loop 自動å†ç”Ÿã‚’繰り返㗠(&L) Auto play slides &Once 自動å†ç”Ÿã‚’繰り返ã•ãªã„ (&O) &Delay between slides ã‚¹ãƒ©ã‚¤ãƒ‰é–“ã®æ™‚é–“ (&D) OpenLP Service Files (*.osz *.oszl) OpenLP 礼æ‹ãƒ—ログラムファイル (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP 礼æ‹ãƒ—ログラムファイル (*.osz);; OpenLP 礼æ‹ãƒ—ログラムファイル - ライト (*.oszl) OpenLP Service Files (*.osz);; OpenLP 礼æ‹ãƒ—ログラムファイル (*.osz);; File is not a valid service. The content encoding is not UTF-8. ãƒ•ã‚¡ã‚¤ãƒ«ãŒæœ‰åйã§ã‚りã¾ã›ã‚“。 エンコードãŒUTF-8ã§ã‚りã¾ã›ã‚“。 The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. ã“ã®ãƒ•ァイルã¯å¤ã„å½¢å¼ã§ã™ã€‚ OpenLP 2.0.2以上ã§ä¿å­˜ã—ã¦ãã ã•ã„。 This file is either corrupt or it is not an OpenLP 2 service file. ファイルãŒç ´æã—ã¦ã„ã‚‹ã‹OpenLP 2ã®ç¤¼æ‹ãƒ—ログラムファイルファイルã§ã¯ã‚りã¾ã›ã‚“。 &Auto Start - inactive 自動å†ç”Ÿ (&A) - 無効 &Auto Start - active 自動å†ç”Ÿ (&A) - 有効 Input delay 入力é…å»¶ Delay between slides in seconds. スライドã®å†ç”Ÿæ™‚é–“ã‚’ç§’ã§æŒ‡å®šã™ã‚‹ã€‚ Rename item title タイトルを編集 Title: タイトル: An error occurred while writing the service file: %s 礼æ‹é …目ファイルã®ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. 以下ã®ãƒ•ァイルãŒä¸è¶³ã—ã¦ã„ã¾ã™: %s ä¿å­˜ã‚’続行ã™ã‚‹ã¨ã€ã“ã®ãƒ•ァイルã¯å‰Šé™¤ã•れã¾ã™ã€‚ OpenLP.ServiceNoteForm Service Item Notes 礼æ‹é …目メモ OpenLP.SettingsForm Configure OpenLP OpenLPã®è¨­å®š OpenLP.ShortcutListDialog Action 動作 Shortcut ショートカット Duplicate Shortcut ショートカットã®é‡è¤‡ The shortcut "%s" is already assigned to another action, please use a different shortcut. ã“ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆ"%s"ã¯æ—¢ã«ä»–ã®å‹•作ã«å‰²ã‚ŠæŒ¯ã‚‰ã‚Œã¦ã„ã¾ã™ã€‚ä»–ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’ã”利用ãã ã•ã„。 Alternate 代替 Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. å‹•ä½œã‚’é¸æŠžã—ã¦ä¸‹ã®ãƒœã‚¿ãƒ³ã‚’クリックã—ã€æ–°ã—ã„ショートカットを入力ã—ã¦ãã ã•ã„。 Default åˆæœŸè¨­å®š Custom カスタム Capture shortcut. ショートカットを入力ã™ã‚‹ã€‚ Restore the default shortcut of this action. ã“ã®å‹•作ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’åˆæœŸå€¤ã«æˆ»ã™ã€‚ Restore Default Shortcuts ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’åˆæœŸè¨­å®šã«æˆ»ã™ Do you want to restore all shortcuts to their defaults? å…¨ã¦ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’åˆæœŸè¨­å®šã«æˆ»ã—ã¾ã™ã‹? Configure Shortcuts ショートカットã®è¨­å®š OpenLP.SlideController Hide éš ã™ Go To ジャンプ Blank Screen スクリーンをブランク Blank to Theme 外観テーマã«ãƒ–ランク Show Desktop デスクトップを表示 Previous Service å‰ã®ç¤¼æ‹ãƒ—ログラム Next Service 次ã®ç¤¼æ‹ãƒ—ログラム Escape Item 項目をエスケープ Move to previous. å‰ã«ç§»å‹•。 Move to next. 次ã«ç§»å‹•。 Play Slides スライドをå†ç”Ÿ Delay between slides in seconds. スライドã®å†ç”Ÿæ™‚é–“ã‚’ç§’ã§æŒ‡å®šã™ã‚‹ã€‚ Move to live. ライブã¸ç§»å‹•ã™ã‚‹ã€‚ Add to Service. 礼æ‹ãƒ—ログラムã¸è¿½åŠ ã™ã‚‹ã€‚ Edit and reload song preview. 編集ã—プレビューをå†èª­ã¿è¾¼ã¿ã™ã‚‹ã€‚ Start playing media. メディアã®å†ç”Ÿã‚’é–‹å§‹ã™ã‚‹ã€‚ Pause audio. éŸ³å£°ã‚’ä¸€æ™‚åœæ­¢ã—ã¾ã™ã€‚ Pause playing media. å†ç”Ÿä¸­ã®ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’ä¸€æ™‚åœæ­¢ã—ã¾ã™ã€‚ Stop playing media. å†ç”Ÿä¸­ã®ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’åœæ­¢ã—ã¾ã™ã€‚ Video position. ビデオã®è¡¨ç¤ºä½ç½®ã€‚ Audio Volume. ボリューム。 Go to "Verse" "ãƒãƒ¼ã‚¹"ã¸ç§»å‹• Go to "Chorus" "コーラス"ã¸ç§»å‹• Go to "Bridge" "ブリッジ"ã¸ç§»å‹• Go to "Pre-Chorus" "é–“å¥"ã¸ç§»å‹• Go to "Intro" "åºå¥"ã¸ç§»å‹• Go to "Ending" "エンディング"ã¸ç§»å‹• Go to "Other" "ãã®ä»–"ã¸ç§»å‹• Previous Slide å‰ã®ã‚¹ãƒ©ã‚¤ãƒ‰ Next Slide 次ã®ã‚¹ãƒ©ã‚¤ãƒ‰ Pause Audio 音声ã®ä¸€æ™‚åœæ­¢ Background Audio ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰éŸ³å£° Go to next audio track. 次ã®éŸ³å£°ãƒˆãƒ©ãƒƒã‚¯ã¸é€²ã¿ã¾ã™ã€‚ Tracks トラック OpenLP.SourceSelectForm Select Projector Source プロジェクタã®å…¥åŠ›ã‚’é¸æŠž Edit Projector Source Text プロジェクタã®å…¥åŠ›ãƒ†ã‚­ã‚¹ãƒˆã‚’ç·¨é›† Ignoring current changes and return to OpenLP ç¾åœ¨ã®å¤‰æ›´ã‚’破棄ã—OpenLPã«æˆ»ã‚Šã¾ã™ Delete all user-defined text and revert to PJLink default text ã™ã¹ã¦ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©ãƒ†ã‚­ã‚¹ãƒˆã‚’削除ã—ã€PJLinkã®è¦å®šãƒ†ã‚­ã‚¹ãƒˆã«æˆ»ã—ã¾ã™ Discard changes and reset to previous user-defined text 変更を破棄ã—ã€ä»¥å‰ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©ãƒ†ã‚­ã‚¹ãƒˆã«æˆ»ã—ã¾ã™ Save changes and return to OpenLP 変更をä¿å­˜ã—OpenLPã«æˆ»ã‚Šã¾ã™ Delete entries for this projector ã“ã®ãƒ—ロジェクタを一覧ã‹ã‚‰å‰Šé™¤ã—ã¾ã™ Are you sure you want to delete ALL user-defined source input text for this projector? ã“ã®ãƒ—ロジェクタã®ã€Œã™ã¹ã¦ã®ã€ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©å…¥åŠ›ãƒ†ã‚­ã‚¹ãƒˆã‚’å‰Šé™¤ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹? OpenLP.SpellTextEdit Spelling Suggestions 綴りã®ã‚µã‚¸ã‚§ã‚¹ãƒˆ Formatting Tags タグフォーマット Language: 言語: OpenLP.StartTimeForm Theme Layout テーマ レイアウト The blue box shows the main area. メイン領域ã«é’ã„ボックスãŒè¡¨ç¤ºã•れã¾ã™ã€‚ The red box shows the footer. フッターã«èµ¤ã„ボックスãŒè¡¨ç¤ºã•れã¾ã™ã€‚ OpenLP.StartTime_form Item Start and Finish Time é …ç›®ã®é–‹å§‹çµ‚了時間 Hours: 時: Minutes: 分: Seconds: ç§’: Start é–‹å§‹ Finish 終了 Length é•·ã• Time Validation Error 時間検証エラー Finish time is set after the end of the media item 終了時間ãŒãƒ¡ãƒ‡ã‚£ã‚¢é …ç›®ã®çµ‚了より後ã«è¨­å®šã•れã¦ã„ã¾ã™ Start time is after the finish time of the media item 開始時間ãŒãƒ¡ãƒ‡ã‚£ã‚¢é …ç›®ã®çµ‚了時間より後ã«è¨­å®šã•れã¦ã„ã¾ã™ OpenLP.ThemeForm (approximately %d lines per slide) (スライド1æžšã«ãŠã‚ˆã%d行) OpenLP.ThemeManager Create a new theme. æ–°ã—ã„外観テーマを作æˆã™ã‚‹ã€‚ Edit Theme 外観テーマ編集 Edit a theme. 外観テーマã®ç·¨é›†ã™ã‚‹ã€‚ Delete Theme 外観テーマ削除 Delete a theme. 外観テーマã®å‰Šé™¤ã™ã‚‹ã€‚ Import Theme 外観テーマインãƒãƒ¼ãƒˆ Import a theme. 外観テーマã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã‚’ã™ã‚‹ã€‚ Export Theme 外観テーマã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ Export a theme. 外観テーマã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã‚’ã™ã‚‹ã€‚ &Edit Theme 外観テーマã®ç·¨é›†(&E) &Delete Theme 外観テーマã®å‰Šé™¤(&D) Set As &Global Default å…¨ä½“ã®æ—¢å®šã¨ã—ã¦è¨­å®š(&G)) %s (default) %s (既定) You must select a theme to edit. 編集ã™ã‚‹å¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠžã—ã¦ãã ã•ã„。 You are unable to delete the default theme. 既定ã®å¤–観テーマを削除ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“。 You have not selected a theme. 外観テーマã®é¸æŠžãŒã‚りã¾ã›ã‚“。 Save Theme - (%s) 外観テーマをä¿å­˜ - (%s) Theme Exported 外観テーマエクスãƒãƒ¼ãƒˆ Your theme has been successfully exported. å¤–è¦³ãƒ†ãƒ¼ãƒžã¯æ­£å¸¸ã«ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã•れã¾ã—ãŸã€‚ Theme Export Failed 外観テーマã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆå¤±æ•— Select Theme Import File インãƒãƒ¼ãƒˆå¯¾è±¡ã®å¤–è¦³ãƒ†ãƒ¼ãƒžãƒ•ã‚¡ã‚¤ãƒ«é¸æŠž File is not a valid theme. 無効ãªå¤–観テーマファイルã§ã™ã€‚ &Copy Theme 外観テーマã®ã‚³ãƒ”ー(&C) &Rename Theme 外観テーマã®åå‰ã‚’変更(&N) &Export Theme 外観テーマã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ(&E) You must select a theme to rename. åå‰ã‚’変更ã™ã‚‹å¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠžã—ã¦ãã ã•ã„。 Rename Confirmation åå‰å¤‰æ›´ç¢ºèª Rename %s theme? %s外観テーマã®åå‰ã‚’変更ã—ã¾ã™ã€‚宜ã—ã„ã§ã™ã‹? You must select a theme to delete. 削除ã™ã‚‹å¤–è¦³ãƒ†ãƒ¼ãƒžã‚’é¸æŠžã—ã¦ãã ã•ã„。 Delete Confirmation å‰Šé™¤ç¢ºèª Delete %s theme? %s 外観テーマを削除ã—ã¾ã™ã€‚宜ã—ã„ã§ã™ã‹? Validation Error 検証エラー A theme with this name already exists. åŒåã®å¤–è¦³ãƒ†ãƒ¼ãƒžãŒæ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ Copy of %s Copy of <theme name> Copy of %s Theme Already Exists ãƒ†ãƒ¼ãƒžãŒæ—¢ã«å­˜åœ¨ Theme %s already exists. Do you want to replace it? テーマ%sã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚上書ãã—ã¾ã™ã‹? The theme export failed because this error occurred: %s ã“ã®ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ãŸãŸã‚テーマã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸ: %s OpenLP Themes (*.otz) OpenLP テーマファイル (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard 外観テーマウィザード Welcome to the Theme Wizard 外観テーマウィザードをよã†ã“ã Set Up Background 背景設定 Set up your theme's background according to the parameters below. 以下ã®é …ç›®ã«å¿œã˜ã¦ã€å¤–観テーマã«ä½¿ç”¨ã™ã‚‹èƒŒæ™¯ã‚’設定ã—ã¦ãã ã•ã„。 Background type: 背景ã®ç¨®é¡ž: Gradient グラデーション Gradient: グラデーション: Horizontal 横 Vertical 縦 Circular 放射状 Top Left - Bottom Right 左上 - å³ä¸‹ Bottom Left - Top Right 左下 - å³ä¸Š Main Area Font Details 中央表示エリアã®ãƒ•ォント詳細 Define the font and display characteristics for the Display text 中央エリアã®è¡¨ç¤ºã®ãŸã‚ã®æ–‡å­—設定ã¨ãƒ•ォントを定義ã—ã¦ãã ã•ã„ Font: フォント: Size: 文字サイズ: Line Spacing: 文字間: &Outline: アウトライン(&O): &Shadow: å½±(&S): Bold 太字 Italic 斜体 Footer Area Font Details フッターフォント詳細 Define the font and display characteristics for the Footer text フッター表示ã®ãŸã‚ã®æ–‡å­—設定ã¨ãƒ•ォントを定義ã—ã¦ãã ã•ã„ Text Formatting Details テキストフォーマット詳細 Allows additional display formatting information to be defined 追加ã®è¡¨ç¤ºãƒ•ォーマット情報ãŒå®šç¾©ã•れる事を許å¯ã™ã‚‹ Horizontal Align: æ°´å¹³ä½ç½®: Left å·¦æƒãˆ Right 峿ƒãˆ Center 中央æƒãˆ Output Area Locations 出力エリアã®å ´æ‰€ &Main Area 中央エリア(&M) &Use default location 既定ã®å ´æ‰€ã‚’使ã†(&U) X position: Xä½ç½®: px px Y position: Yä½ç½®: Width: å¹…: Height: 高: Use default location 既定ã®å ´æ‰€ã‚’使ㆠTheme name: 外観テーマå: Edit Theme - %s 外観テーマ編集 - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€å¤–観テーマを作æˆã—編集ã—ã¾ã™ã€‚次ã¸ã‚’クリックã—ã¦ã€èƒŒæ™¯ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Transitions: 切り替ãˆ: &Footer Area フッター(&F) Starting color: 色1: Ending color: 色2: Background color: 背景色: Justify æƒãˆã‚‹ Layout Preview レイアウト プレビュー Transparent 逿˜Ž Preview and Save ä¿å­˜ã—プレビュー Preview the theme and save it. 外観テーマをä¿å­˜ã—プレビューã—ã¾ã™ã€‚ Background Image Empty 背景画åƒãŒå­˜åœ¨ã—ã¾ã›ã‚“ Select Image ç”»åƒã®é¸æŠž Theme Name Missing 外観テーマåãŒä¸æ˜Žã§ã™ There is no name for this theme. Please enter one. 外観テーマåãŒã‚りã¾ã›ã‚“。入力ã—ã¦ãã ã•ã„。 Theme Name Invalid 無効ãªå¤–観テーマå Invalid theme name. Please enter one. 無効ãªå¤–観テーマåã§ã™ã€‚入力ã—ã¦ãã ã•ã„。 Solid color å˜è‰² color: 色: Allows you to change and move the Main and Footer areas. 中央エリアã¨ãƒ•ッターエリアã®å ´æ‰€ã‚’変更ã™ã‚‹ã€‚ You have not selected a background image. Please select one before continuing. 背景ã®ç”»åƒãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“。続行ã™ã‚‹å‰ã«é¸æŠžã—ã¦ãã ã•ã„。 OpenLP.ThemesTab Global Theme 全体外観テーマ Theme Level 外観テーマレベル S&ong Level 賛美レベル(&O) Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. データベース内ã®ãれãžã‚Œã®è³›ç¾Žã®å¤–観テーマを使用ã—ã¾ã™ã€‚賛美ã«å¤–観テーマãŒè¨­å®šã•れã¦ã„ãªã„å ´åˆã€ç¤¼æ‹ãƒ—ログラムã®å¤–観テーマを使用ã—ã¾ã™ã€‚礼æ‹ãƒ—ログラムã«å¤–観テーマãŒè¨­å®šã•れã¦ã„ãªã‘れã°ã€å…¨ä½“設定ã®å¤–観テーマを使用ã—ã¾ã™ã€‚ &Service Level 礼æ‹ãƒ—ログラムレベル(&S) Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. 礼æ‹ãƒ—ログラムã®å¤–観テーマを用ã„ã€è³›ç¾Žå€‹ã€…ã®å¤–観テーマを上書ãã—ã¾ã™ã€‚礼æ‹ãƒ—ログラムã«å¤–観テーマãŒè¨­å®šã•れã¦ã„ãªã‘れã°ã€å…¨ä½“設定ã®å¤–観テーマを使用ã—ã¾ã™ã€‚ &Global Level 全体レベル(&G) Use the global theme, overriding any themes associated with either the service or the songs. 全体外観テーマを用ã„ã€ã™ã¹ã¦ã®ç¤¼æ‹ãƒ—ログラムや賛美ã«é–¢é€£ä»˜ã‘られãŸå¤–観テーマを上書ãã—ã¾ã™ã€‚ Themes 外観テーマ Universal Settings 全体設定 &Wrap footer text フッターを折り返㙠(&W) OpenLP.Ui Delete the selected item. é¸æŠžã•れãŸé …目を削除。 Move selection up one position. é¸æŠžã•れãŸé …目を一ã¤ä¸Šã’る。 Move selection down one position. é¸æŠžã•れãŸé …目を一ã¤ä¸‹ã’る。 &Vertical Align: 垂直整列(&V): Finished import. インãƒãƒ¼ãƒˆã®å®Œäº†ã€‚ Format: 書å¼: Importing インãƒãƒ¼ãƒˆä¸­ Importing "%s"... "%s"をインãƒãƒ¼ãƒˆä¸­... Select Import Source インãƒãƒ¼ãƒˆå…ƒã‚’é¸æŠž Select the import format and the location to import from. インãƒãƒ¼ãƒˆå½¢å¼ã¨ã‚¤ãƒ³ãƒãƒ¼ãƒˆå…ƒã‚’é¸æŠžã—ã¦ä¸‹ã•ã„。 Open %s File %sファイルを開ã %p% %p% Ready. 準備完了。 Starting import... インãƒãƒ¼ãƒˆã‚’é–‹å§‹ã—ã¦ã„ã¾ã™.... You need to specify at least one %s file to import from. A file type e.g. OpenSong インãƒãƒ¼ãƒˆå…ƒã¨ãªã‚‹%sファイルを最低一ã¤é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Welcome to the Bible Import Wizard è–æ›¸ã‚¤ãƒ³ãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã¸ã‚ˆã†ã“ã Welcome to the Song Export Wizard 賛美エクスãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã¸ã‚ˆã†ã“ã Welcome to the Song Import Wizard 賛美インãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã¸ã‚ˆã†ã“ã Author Singular アーティスト Authors Plural アーティスト © Copyright symbol. © Song Maintenance 賛美ã®ä¿å®ˆ Topic Singular 題目 Topics Plural 題目 Title and/or verses not found タイトル/歌詞ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ XML syntax error XML構文エラー Welcome to the Bible Upgrade Wizard è–æ›¸æ›´æ–°ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã¸ã‚ˆã†ã“ã Open %s Folder %sフォルダを開ã You need to specify one %s file to import from. A file type e.g. OpenSong インãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã«%sãƒ•ã‚¡ã‚¤ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„。 You need to specify one %s folder to import from. A song format e.g. PowerSong インãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã«%sãƒ•ã‚©ãƒ«ãƒ€ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Importing Songs 賛美ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆ Welcome to the Duplicate Song Removal Wizard é‡è¤‡è³›ç¾Žé™¤åŽ»ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã¸ã‚ˆã†ã“ã Written by 著者 Author Unknown 䏿˜Ž About 情報 &Add 追加(&A) Add group グループを追加 Advanced 詳細設定 All Files å…¨ã¦ã®ãƒ•ァイル Automatic 自動 Background Color 背景色 Bottom 下部 Browse... å‚ç…§... Cancel キャンセル CCLI number: CCLI番å·: Create a new service. æ–°è¦ç¤¼æ‹ãƒ—ログラムを作æˆã—ã¾ã™ã€‚ Confirm Delete å‰Šé™¤ç¢ºèª Continuous 連続 Default åˆæœŸè¨­å®š Default Color: 既定色: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M &Delete 削除(&D) Display style: 表示スタイル: Duplicate Error é‡è¤‡ã‚¨ãƒ©ãƒ¼ &Edit 編集(&E) Empty Field 空ã®ãƒ•ィールド Error エラー Export エクスãƒãƒ¼ãƒˆ File ファイル File Not Found ファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ File %s not found. Please try selecting it individually. ファイル %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 1個ãšã¤åˆ¥ã€…ã«é¸æŠžã—ã¦ã¿ã¦ãã ã•ã„。 pt Abbreviated font pointsize unit pt Help ヘルプ h The abbreviated unit for hours 時 Invalid Folder Selected Singular 無効ãªãƒ•ォルダãŒé¸æŠžã•れã¾ã—㟠Invalid File Selected Singular 無効ãªãƒ•ァイルãŒé¸æŠžã•れã¾ã—㟠Invalid Files Selected Plural 無効ãªãƒ•ァイルãŒé¸æŠžã•れã¾ã—㟠Image ç”»åƒ Import インãƒãƒ¼ãƒˆ Layout style: レイアウトスタイル: Live ライブ Live Background Error ライブ背景エラー Live Toolbar ライブツールãƒãƒ¼ Load 読ã¿è¾¼ã¿ Manufacturer Singular 製造元 Manufacturers Plural 製造元 Model Singular 型番 Models Plural 型番 m The abbreviated unit for minutes 分 Middle 中央部 New æ–°è¦ New Service æ–°ã—ã„礼æ‹ãƒ—ログラム New Theme æ–°ã—ã„外観テーマ Next Track 次ã®ãƒˆãƒ©ãƒƒã‚¯ No Folder Selected Singular フォルダãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“ No File Selected Singular ファイルãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“ No Files Selected Plural ファイルãŒä¸€ã¤ã‚‚é¸æŠžã•れã¦ã„ã¾ã›ã‚“ No Item Selected Singular é …ç›®ãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“ No Items Selected Plural 一ã¤ã®é …ç›®ã‚‚é¸æŠžã•れã¦ã„ã¾ã›ã‚“ OpenLP is already running. Do you wish to continue? OpenLPã¯æ—¢ã«å®Ÿè¡Œã•れã¦ã„ã¾ã™ã€‚ç¶šã‘ã¾ã™ã‹? Open service. 礼æ‹ãƒ—ログラムを開ãã¾ã™ã€‚ Play Slides in Loop スライドを繰り返ã—å†ç”Ÿ Play Slides to End スライドを最後ã¾ã§å†ç”Ÿ Preview プレビュー Print Service 礼æ‹ãƒ—ログラムをå°åˆ· Projector Singular プロジェクタ Projectors Plural プロジェクタ Replace Background èƒŒæ™¯ã‚’ç½®æ› Replace live background. ライブã®èƒŒæ™¯ã‚’ç½®æ›ã—ã¾ã™ã€‚ Reset Background 背景をリセット Reset live background. ライブã®èƒŒæ™¯ã‚’リセットã—ã¾ã™ã€‚ s The abbreviated unit for seconds ç§’ Save && Preview ä¿å­˜ã—ã¦ãƒ—レビュー Search 検索 Search Themes... Search bar place holder text ãƒ†ãƒ¼ãƒžã®æ¤œç´¢... You must select an item to delete. 削除ã™ã‚‹é …ç›®ã‚’é¸æŠžã—ã¦ä¸‹ã•ã„。 You must select an item to edit. 編集ã™ã‚‹é …ç›®ã‚’é¸æŠžã—ã¦ä¸‹ã•ã„。 Settings 設定 Save Service 礼æ‹ãƒ—ログラムã®ä¿å­˜ Service 礼æ‹ãƒ—ログラム Optional &Split オプションã®åˆ†å‰²(&S) Split a slide into two only if it does not fit on the screen as one slide. 1æžšã®ã‚¹ãƒ©ã‚¤ãƒ‰ã«ç´ã¾ã‚‰ãªã„ã¨ãã®ã¿ã€ã‚¹ãƒ©ã‚¤ãƒ‰ãŒåˆ†å‰²ã•れã¾ã™ã€‚ Start %s é–‹å§‹ %s Stop Play Slides in Loop スライドã®ç¹°ã‚Šè¿”ã—å†ç”Ÿã‚’åœæ­¢ Stop Play Slides to End スライドã®å†ç”Ÿã‚’åœæ­¢ Theme Singular 外観テーマ Themes Plural 外観テーマ Tools ツール Top 上部 Unsupported File 無効ãªãƒ•ァイル Verse Per Slide スライドã«1節 Verse Per Line 1行ã«1節 Version ãƒãƒ¼ã‚¸ãƒ§ãƒ³ View 表示 View Mode 表示モード CCLI song number: CCLI song番å·: Preview Toolbar プレビュー ツールãƒãƒ¼ OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %sã¨%s %s, and %s Locale list separator: end %sã€%s %s, %s Locale list separator: middle %sã€%s %s, %s Locale list separator: start %sã€%s Openlp.ProjectorTab Source select dialog interface インãƒãƒ¼ãƒˆå…ƒã‚’é¸æŠž PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>プレゼンテーションプラグイン</strong><br />プレゼンテーションプラグインã¯ã€å¤–部ã®ãƒ—ログラムを使用ã—ã¦ãƒ—レゼンテーションを表示ã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚使用å¯èƒ½ãªãƒ—ログラムã¯ã€ãƒ‰ãƒ­ãƒƒãƒ—ダウンボックスã‹ã‚‰é¸æŠžã§ãã¾ã™ã€‚ Presentation name singular プレゼンテーション Presentations name plural プレゼンテーション Presentations container title プレゼンテーション Load a new presentation. æ–°ã—ã„プレゼンテーションを読ã¿è¾¼ã¿ã¾ã™ã€‚ Delete the selected presentation. é¸æŠžã—ãŸãƒ—レゼンテーションを削除ã—ã¾ã™ã€‚ Preview the selected presentation. é¸æŠžã—ãŸãƒ—レゼンテーションをプレビューã—ã¾ã™ã€‚ Send the selected presentation live. é¸æŠžã—ãŸãƒ—レゼンテーションをライブã¸é€ã‚Šã¾ã™ã€‚ Add the selected presentation to the service. é¸æŠžã—ãŸãƒ—レゼンテーションを礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ PresentationPlugin.MediaItem Select Presentation(s) ãƒ—ãƒ¬ã‚¼ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³é¸æŠž Automatic 自動 Present using: 使用プレゼン: File Exists ファイルãŒå­˜åœ¨ã—ã¾ã™ A presentation with that filename already exists. ãã®ãƒ•ァイルåã®ãƒ—ãƒ¬ã‚¼ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ This type of presentation is not supported. ã“ã®ã‚¿ã‚¤ãƒ—ã®ãƒ—レゼンテーションã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ãŠã‚Šã¾ã›ã‚“。 Presentations (%s) プレゼンテーション (%s) Missing Presentation 䏿˜Žãªãƒ—レゼンテーション The presentation %s is incomplete, please reload. プレゼンテーション%sã¯ä¸å®Œå…¨ã§ã™ã€‚å†èª­ã¿è¾¼ã¿ã—ã¦ãã ã•ã„。 The presentation %s no longer exists. プレゼンテーション %s ã¯å­˜åœ¨ã—ã¾ã›ã‚“。 PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PowerPointã¨ã®é€šä¿¡ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã€ãƒ—レゼンテーションãŒçµ‚了ã—ã¾ã—ãŸã€‚表示ã™ã‚‹ã«ã¯ã€ãƒ—レゼンテーションをもã†ä¸€åº¦é–‹å§‹ã—ã¦ãã ã•ã„。 PresentationPlugin.PresentationTab Available Controllers 使用å¯èƒ½ãªã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ© %s (unavailable) %s (利用ä¸å¯èƒ½) Allow presentation application to be overridden プレゼンテーションアプリケーションã®ä¸Šæ›¸ãã‚’å¯èƒ½ã«ã™ã‚‹ PDF options PDFオプション Use given full path for mudraw or ghostscript binary: mudrawã¾ãŸã¯ghostscriptã®ãƒ•ルパスを設定ã™ã‚‹ Select mudraw or ghostscript binary. mudrawã¾ãŸã¯ghostscriptã®ãƒã‚¤ãƒŠãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 The program is not ghostscript or mudraw which is required. å¿…è¦ãªmudrawã¾ãŸã¯ghostscriptã®ãƒ—ログラムã§ã¯ã‚りã¾ã›ã‚“。 PowerPoint options PowerPointオプション Clicking on a selected slide in the slidecontroller advances to next effect. スライドコントローラã§ç¾åœ¨ã®ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’クリックã—ãŸæ™‚ã€åˆ‡ã‚Šæ›¿ãˆåŠ¹æžœã‚’è¡Œã†ã€‚ Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). PowerPointãŒãƒ—レゼンテーションウィンドウã®ä½ç½®ã¨å¤§ãã•を変更ã™ã‚‹ã“ã¨ã‚’許å¯ã™ã‚‹ã€‚ (Windows 8ã«ãŠã‘るスケーリングå•題ã®å¯¾å‡¦) RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>é éš”æ“ä½œãƒ—ãƒ©ã‚°ã‚¤ãƒ³</strong><br />é éš”æ“ä½œãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã¯ã€ã‚¦ã‚§ãƒ–ブラウザやé éš”æ“ä½œAPIを使用ã—ã¦ã€ä»–ã®ã‚³ãƒ³ãƒ”ュータ上ã®OpenLPã‚’æ“作ã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚ Remote name singular é éš”æ“ä½œ Remotes name plural é éš”æ“ä½œ Remote container title é éš”æ“ä½œ Server Config Change サーãƒè¨­å®šã®å¤‰æ›´ Server configuration changes will require a restart to take effect. サーãƒè¨­å®šã®å¤‰æ›´ã‚’é©ç”¨ã™ã‚‹ã«ã¯ã€å†èµ·å‹•ãŒå¿…è¦ã§ã™ã€‚ RemotePlugin.Mobile Service Manager 礼æ‹ãƒ—ログラム Slide Controller スライドコントローラ Alerts 警告 Search 検索 Home ホーム Refresh å†èª­è¾¼ Blank ブランク Theme 外観テーマ Desktop デスクトップ Show 表示 Prev å‰ Next 次 Text テキスト Show Alert 警告を表示 Go Live ライブã¸é€ã‚‹ Add to Service 礼æ‹é …ç›®ã¸è¿½åŠ  Add &amp; Go to Service 追加ã—礼æ‹ãƒ—ログラムã¸ç§»å‹• No Results 見ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—㟠Options オプション Service 礼æ‹ãƒ—ログラム Slides スライド Settings 設定 Remote é éš”æ“ä½œ Stage View Live View RemotePlugin.RemoteTab Serve on IP address: å¾…ã¡å—ã‘ã‚‹IPアドレス: Port number: ãƒãƒ¼ãƒˆç•ªå·: Server Settings サーãƒè¨­å®š Remote URL: é éš”æ“ä½œURL: Stage view URL: ステージビューURL: Display stage time in 12h format ã‚¹ãƒ†ãƒ¼ã‚¸ã®æ™‚刻を12時間ã§è¡¨ç¤º Android App Android App Live view URL: ライブビューURL: HTTPS Server HTTPSサーãƒãƒ¼ Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. SSL証明書ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。SSL証明書ãŒè¦‹ã¤ã‹ã‚‰ãªã„å ´åˆã€HTTPSサーãƒã¯ä½¿ç”¨ã§ãã¾ã›n。詳細ã¯ãƒžãƒ‹ãƒ¥ã‚¢ãƒ«ã‚’ã”覧ãã ã•ã„。 User Authentication ユーザèªè¨¼ User id: ユーザID: Password: パスワード: Show thumbnails of non-text slides in remote and stage view. é éš”æ“ä½œã¨ã‚¹ãƒ†ãƒ¼ã‚¸ãƒ“ューã«ãŠã„ã¦ã€ãƒ†ã‚­ã‚¹ãƒˆã‚¹ãƒ©ã‚¤ãƒ‰ä»¥å¤–ã®ç¸®å°ç”»åƒã‚’表示ã™ã‚‹ã€‚ Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking 賛美ã®åˆ©ç”¨è¨˜éŒ²(&S) &Delete Tracking Data 利用記録を削除(&D) Delete song usage data up to a specified date. 削除ã™ã‚‹åˆ©ç”¨è¨˜éŒ²ã®å¯¾è±¡ã¨ãªã‚‹ã¾ã§ã®æ—¥ä»˜ã‚’指定ã—ã¦ãã ã•ã„。 &Extract Tracking Data åˆ©ç”¨è¨˜éŒ²ã®æŠ½å‡º(&E) Generate a report on song usage. 利用記録ã®ãƒ¬ãƒãƒ¼ãƒˆã‚’出力ã™ã‚‹ã€‚ Toggle Tracking 記録ã®åˆ‡ã‚Šæ›¿ãˆ Toggle the tracking of song usage. 賛美ã®åˆ©ç”¨è¨˜éŒ²ã®åˆ‡ã‚Šæ›¿ãˆã‚‹ã€‚ <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />ã“ã®ãƒ—ラグインã¯ã€è³›ç¾Žã®åˆ©ç”¨é »åº¦ã‚’記録ã—ã¾ã™ã€‚ SongUsage name singular 利用記録 SongUsage name plural 利用記録 SongUsage container title 利用記録 Song Usage 利用記録 Song usage tracking is active. 賛美ã®åˆ©ç”¨è¨˜éŒ²ãŒæœ‰åйã§ã™ã€‚ Song usage tracking is inactive. 賛美ã®åˆ©ç”¨è¨˜éŒ²ãŒç„¡åйã§ã™ã€‚ display 表示 printed å°åˆ·æ¸ˆã¿ SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data 利用記録削除 Delete Selected Song Usage Events? é¸æŠžã•れãŸè³›ç¾Žã®åˆ©ç”¨è¨˜éŒ²ã‚’削除ã—ã¾ã™ã‹? Are you sure you want to delete selected Song Usage data? é¸æŠžã•れãŸè³›ç¾Žã®åˆ©ç”¨è¨˜éŒ²ã‚’削除ã—ã¾ã™ã€‚よã‚ã—ã„ã§ã™ã‹? Deletion Successful 正常ã«å‰Šé™¤ã•れã¾ã—㟠Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. 利用記録を削除ã™ã‚‹æ—¥ã‚’é¸æŠžã—ã¦ãã ã•ã„。 ã“ã®æ—¥ä»¥å‰ã®è¨˜éŒ²ã¯å…¨ã¦å‰Šé™¤ã•れã¾ã™ã€‚ All requested data has been deleted successfully. 正常ã«å‰Šé™¤ã•れã¾ã—ãŸã€‚ SongUsagePlugin.SongUsageDetailForm Song Usage Extraction è³›ç¾Žåˆ©ç”¨è¨˜éŒ²ã®æŠ½å‡º Select Date Range è³›ç¾Žåˆ©ç”¨ã®æœŸé–“ to ã‹ã‚‰ Report Location レãƒãƒ¼ãƒˆã®å‡ºåŠ› Output File Location レãƒãƒ¼ãƒˆã®å‡ºåŠ›å ´æ‰€ usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation レãƒãƒ¼ãƒˆç”Ÿæˆ Report %s has been successfully created. レãƒãƒ¼ãƒˆ %s - ã¯æ­£å¸¸ã«ç”Ÿæˆã•れã¾ã—ãŸã€‚ Output Path Not Selected 出力先ãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“ You have not set a valid output location for your song usage report. Please select an existing path on your computer. 賛美利用記録レãƒãƒ¼ãƒˆã®å‡ºåŠ›å…ˆãŒç„¡åйã§ã™ã€‚コンピューター上ã«å­˜åœ¨ã™ã‚‹ãƒ•ã‚©ãƒ«ãƒ€ã‚’é¸æŠžã—ã¦ä¸‹ã•ã„。 Report Creation Failed レãƒãƒ¼ãƒˆä½œæˆã«å¤±æ•— An error occurred while creating the report: %s 賛美利用記録レãƒãƒ¼ãƒˆã®ä½œæˆä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ: %s SongsPlugin &Song 賛美(&S) Import songs using the import wizard. インãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã‚’使用ã—ã¦è³›ç¾Žã‚’インãƒãƒ¼ãƒˆã—ã¾ã™ã€‚ <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>賛美プラグイン</strong><br />賛美プラグインã¯ã€è³›ç¾Žã‚’表示ã—管ç†ã™ã‚‹æ©Ÿèƒ½ã‚’æä¾›ã—ã¾ã™ã€‚ &Re-index Songs 賛美ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚’å†ä½œæˆ(&R) Re-index the songs database to improve searching and ordering. 賛美データベースã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚’å†ä½œæˆã—ã€æ¤œç´¢ã‚„ä¸¦ã¹æ›¿ãˆã‚’速ãã—ã¾ã™ã€‚ Reindexing songs... 賛美ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚’å†ä½œæˆä¸­... Arabic (CP-1256) アラブ語 (CP-1256) Baltic (CP-1257) ãƒãƒ«ãƒˆèªž (CP-1257) Central European (CP-1250) 中央ヨーロッパ (CP-1250) Cyrillic (CP-1251) キリル文字 (CP-1251) Greek (CP-1253) ギリシャ語 (CP-1253) Hebrew (CP-1255) ヘブライ語 (CP-1255) Japanese (CP-932) 日本語 (CP-932) Korean (CP-949) 韓国語 (CP-949) Simplified Chinese (CP-936) 簡体中国語 (CP-936) Thai (CP-874) タイ語 (CP-874) Traditional Chinese (CP-950) ç¹ä½“中国語 (CP-950) Turkish (CP-1254) トルコ語 (CP-1254) Vietnam (CP-1258) ベトナム語 (CP-1258) Western European (CP-1252) 西ヨーロッパ (CP-1252) Character Encoding 文字コード The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. 文字コード設定ã¯ã€æ–‡å­—ãŒæ­£å¸¸ã«è¡¨ç¤ºã•れるã®ã«å¿…è¦ãªè¨­å®šã§ã™ã€‚é€šå¸¸ã€æ—¢å®šè¨­å®šã§å•題ã‚りã¾ã›ã‚“。 Please choose the character encoding. The encoding is responsible for the correct character representation. æ–‡å­—ã‚³ãƒ¼ãƒ‰ã‚’é¸æŠžã—ã¦ãã ã•ã„ã€‚æ–‡å­—ãŒæ­£å¸¸ã«è¡¨ç¤ºã•れるã®ã«å¿…è¦ãªè¨­å®šã§ã™ã€‚ Song name singular 賛美 Songs name plural 賛美 Songs container title 賛美 Exports songs using the export wizard. エクスãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã‚’使ã£ã¦è³›ç¾Žã‚’エクスãƒãƒ¼ãƒˆã™ã‚‹ã€‚ Add a new song. 賛美を追加ã—ã¾ã™ã€‚ Edit the selected song. é¸æŠžã—ãŸè³›ç¾Žã‚’編集ã—ã¾ã™ã€‚ Delete the selected song. é¸æŠžã—ãŸè³›ç¾Žã‚’削除ã—ã¾ã™ã€‚ Preview the selected song. é¸æŠžã—ãŸè³›ç¾Žã‚’プレビューã—ã¾ã™ã€‚ Send the selected song live. é¸æŠžã—ãŸè³›ç¾Žã‚’ライブã¸é€ã‚Šã¾ã™ã€‚ Add the selected song to the service. é¸æŠžã—ãŸè³›ç¾Žã‚’礼æ‹ãƒ—ログラムã«è¿½åŠ ã—ã¾ã™ã€‚ Reindexing songs 賛美ã®ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚’å†ä½œæˆ CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. CCLIã®SongSelectサービスã‹ã‚‰è³›ç¾Žã‚’インãƒãƒ¼ãƒˆã—ã¾ã™ã€‚ Find &Duplicate Songs é‡è¤‡ã™ã‚‹è³›ç¾Žã‚’探㙠(&D) Find and remove duplicate songs in the song database. データベース中ã®é‡è¤‡ã™ã‚‹è³›ç¾Žã‚’探ã—ã€å‰Šé™¤ã—ã¾ã™ã€‚ SongsPlugin.AuthorType Words Author who wrote the lyrics of a song 作詞 Music Author who wrote the music of a song 作曲 Words and Music Author who wrote both lyrics and music of a song 作詞・作曲 Translation Author who translated the song 翻訳 SongsPlugin.AuthorsForm Author Maintenance アーティストをä¿å®ˆ Display name: 表示å: First name: å: Last name: å§“: You need to type in the first name of the author. åを入力ã—ã¦ãã ã•ã„。 You need to type in the last name of the author. 姓を入力ã—ã¦ãã ã•ã„。 You have not set a display name for the author, combine the first and last names? 表示åãŒè¨­å®šã•れã¦ã„ã¾ã›ã‚“。åã¨å§“ã‚’åˆã‚ã›ã¾ã™ã‹? SongsPlugin.CCLIFileImport The file does not have a valid extension. ãƒ•ã‚¡ã‚¤ãƒ«ã®æ‹¡å¼µå­ãŒç„¡åйã§ã™ã€‚ SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. 無効ãªDreamBeam songファイルã§ã™ã€‚DreamSong tagãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ SongsPlugin.EasyWorshipSongImport Administered by %s %s ã«ã‚ˆã£ã¦ç®¡ç†ã•れã¦ã„ã¾ã™ "%s" could not be imported. %s 「%sã€ã¯ã‚¤ãƒ³ãƒãƒ¼ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸã€‚%s Unexpected data formatting. 予期ã›ã¬ãƒ‡ãƒ¼ã‚¿ãƒ•ォーマット No song text found. 歌詞ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ [above are Song Tags with notes imported from EasyWorship] [ã“れã¯EasyWorshipã‹ã‚‰ã‚¤ãƒ³ãƒãƒ¼ãƒˆã•れãŸSong Tagsã§ã™] This file does not exist. ファイルãŒå­˜åœ¨ã—ã¾ã›ã‚“。 Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. ファイル「Songs.MBã€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。Songs.DBã¨åŒã˜ãƒ•ォルダã«ä¿å­˜ã•れã¦ã„ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ This file is not a valid EasyWorship database. 有効ãªEasyWorshipã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã§ã¯ã‚りã¾ã›ã‚“。 Could not retrieve encoding. エンコードをå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ SongsPlugin.EditBibleForm Meta Data メタデータ Custom Book Names ä»»æ„ã®æ›¸å SongsPlugin.EditSongForm Song Editor ソングエディタ &Title: タイトル(&T): Alt&ernate title: サブタイトル(&e): &Lyrics: 賛美詞(&L): &Verse order: 節順(&V): Ed&it All å…¨ã¦ç·¨é›†(&E) Title && Lyrics タイトル && 賛美詞 &Add to Song 賛美ã«è¿½åŠ (&A) &Remove 削除(&R) A&dd to Song 賛美ã«è¿½åŠ (&A) R&emove 削除(&e) New &Theme æ–°ã—ã„外観テーマ(&N) Copyright Information 著作権情報 Comments コメント Theme, Copyright Info && Comments 外観テーマã€è‘—作情報 && コメント Add Author アーティストを追加 This author does not exist, do you want to add them? アーティストãŒå­˜åœ¨ã—ã¾ã›ã‚“。追加ã—ã¾ã™ã‹? This author is already in the list. æ—¢ã«ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã¯ä¸€è¦§ã«å­˜åœ¨ã—ã¾ã™ã€‚ You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. 有効ãªã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã‚’é¸æŠžã—ã¦ãã ã•ã„。一覧ã‹ã‚‰é¸æŠžã™ã‚‹ã‹æ–°ã—ã„アーティストを入力ã—ã€"賛美ã«ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã‚’追加"をクリックã—ã¦ãã ã•ã„。 Add Topic トピックを追加 This topic does not exist, do you want to add it? ã“ã®ãƒˆãƒ”ックã¯å­˜åœ¨ã—ã¾ã›ã‚“。追加ã—ã¾ã™ã‹? This topic is already in the list. ã“ã®ãƒˆãƒ”ãƒƒã‚¯ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. 有効ãªãƒˆãƒ”ãƒƒã‚¯ã‚’é¸æŠžã—ã¦ãã ã•ã„。一覧ã‹ã‚‰é¸æŠžã™ã‚‹ã‹æ–°ã—ã„トピックを入力ã—ã€"賛美ã«ãƒˆãƒ”ックを追加"をクリックã—ã¦ãã ã•ã„。 You need to type in a song title. 賛美ã®ã‚¿ã‚¤ãƒˆãƒ«ã‚’入力ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to type in at least one verse. 最低一ã¤ã®ãƒãƒ¼ã‚¹ã‚’入力ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ You need to have an author for this song. アーティストを入力ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ Linked Audio 関連付ã‘られãŸéŸ³å£° Add &File(s) ファイルを追加(&F) Add &Media メディアを追加(&M) Remove &All ã™ã¹ã¦å‰Šé™¤(&A) Open File(s) ファイルを開ã <strong>Warning:</strong> Not all of the verses are in use. <strong>警告:</strong> å…¨ã¦ã®ç®‡æ‰€ãŒä½¿ç”¨ã•れã¦ã„ã¾ã›ã‚“。 <strong>Warning:</strong> You have not entered a verse order. <strong>警告:</strong> There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. 「%(invalid)sã€ã«å¯¾å¿œã™ã‚‹ç¯€ãŒã‚りã¾ã›ã‚“。有効ãªç¯€ã¯ä»¥ä¸‹ã®é€šã‚Šã§ã™ã€‚スペース区切りã§ç¯€ã‚’入力ã—ã¦ãã ã•ã„。 %(valid)s Invalid Verse Order ç¯€é †ãŒæ­£ã—ãã‚りã¾ã›ã‚“ &Edit Author Type 著者ã®ç¨®é¡žã‚’編集 (&E) Edit Author Type 著者ã®ç¨®é¡žã‚’編集 Choose type for this author 著者ã®ç¨®é¡žã‚’é¸æŠž There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse ãƒãƒ¼ã‚¹ç·¨é›† &Verse type: ãƒãƒ¼ã‚¹ã®ã‚¿ã‚¤ãƒ—(&): &Insert 挿入(&I) Split a slide into two by inserting a verse splitter. スライド分割機能を用ã„ã€ã‚¹ãƒ©ã‚¤ãƒ‰ã‚’分割ã—ã¦ãã ã•ã„。 SongsPlugin.ExportWizardForm Song Export Wizard 賛美エクスãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ Select Songs è³›ç¾Žã‚’é¸æŠžã—ã¦ä¸‹ã•ã„ Check the songs you want to export. エクスãƒãƒ¼ãƒˆã—ãŸã„賛美をãƒã‚§ãƒƒã‚¯ã—ã¦ä¸‹ã•ã„。 Uncheck All ã™ã¹ã¦ã®ãƒã‚§ãƒƒã‚¯ã‚’外㙠Check All ã™ã¹ã¦ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ Select Directory ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžã—ã¦ä¸‹ã•ã„ Directory: ディレクトリ: Exporting エクスãƒãƒ¼ãƒˆä¸­ Please wait while your songs are exported. 賛美をエクスãƒãƒ¼ãƒˆã—ã¦ã„る間今ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。 You need to add at least one Song to export. エクスãƒãƒ¼ãƒˆã™ã‚‹æœ€ä½Žä¸€ã¤ã®è³›ç¾Žã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ No Save Location specified ä¿å­˜å…ˆãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“ Starting export... エクスãƒãƒ¼ãƒˆã‚’é–‹å§‹ã—ã¦ã„ã¾ã™... You need to specify a directory. ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžã—ã¦ä¸‹ã•ã„。 Select Destination Folder å‡ºåŠ›å…ˆãƒ•ã‚©ãƒ«ãƒ€ã‚’é¸æŠžã—ã¦ä¸‹ã•ã„ Select the directory where you want the songs to be saved. 賛美をä¿å­˜ã—ãŸã„ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžã—ã¦ãã ã•ã„。 This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€ã‚ªãƒ¼ãƒ—ンã§ç„¡å„Ÿãª<strong>OpenLyrics</strong> worship songå½¢å¼ã¨ã—ã¦è³›ç¾Žã‚’エクスãƒãƒ¼ãƒˆã§ãã¾ã™ã€‚ SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. 無効ãªFoilpresenterファイルã§ã™ã€‚歌詞ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 SongsPlugin.GeneralTab Enable search as you type 入力ã¨åŒæ™‚ã«æ¤œç´¢ã™ã‚‹ SongsPlugin.ImportWizardForm Select Document/Presentation Files ドキュメント/ãƒ—ãƒ¬ã‚¼ãƒ³ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ãƒ•ã‚¡ã‚¤ãƒ«é¸æŠž Song Import Wizard 賛美インãƒãƒ¼ãƒˆã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã€æ§˜ã€…ãªå½¢å¼ã®è³›ç¾Žã‚’インãƒãƒ¼ãƒˆã—ã¾ã™ã€‚次ã¸ã‚’クリックã—ã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ãƒ•ァイルã®å½¢å¼ã‚’é¸æŠžã—ã¦ãã ã•ã„。 Generic Document/Presentation 汎用ドキュメント/プレゼンテーション Add Files... ファイルã®è¿½åŠ ... Remove File(s) ファイルã®å‰Šé™¤ Please wait while your songs are imported. 賛美ãŒã‚¤ãƒ³ãƒãƒ¼ãƒˆã•れるã¾ã§ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。 Words Of Worship Song Files Words Of Worship Song ファイル Songs Of Fellowship Song Files Songs Of Fellowship Song ファイル SongBeamer Files SongBeamerファイル SongShow Plus Song Files SongShow Plus Songファイル Foilpresenter Song Files Foilpresenter Song ファイル Copy コピー Save to File ファイルã«ä¿å­˜ The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeã¾ãŸã¯LibreOfficeã«æŽ¥ç¶šã§ããªã„ãŸã‚ã€Songs of Fellowshipã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ©Ÿèƒ½ã¯ç„¡åйã«ãªã£ã¦ã„ã¾ã™ã€‚ The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeã¾ãŸã¯LibreOfficeã«æŽ¥ç¶šã§ããªã„ãŸã‚ã€æ±Žç”¨ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆ/プレゼンテーションã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ©Ÿèƒ½ã¯ç„¡åйã«ãªã£ã¦ã„ã¾ã™ã€‚ OpenLyrics Files OpenLyricsファイル CCLI SongSelect Files CCLI SongSelectファイル EasySlides XML File Easy Slides XMLファイル EasyWorship Song Database EasyWorship Songデータベース DreamBeam Song Files DreamBeam Song ファイル You need to specify a valid PowerSong 1.0 database folder. 有効ãªPowerSong 1.0ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ãƒ•ã‚©ãƒ¼ãƒ«ãƒ€ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚ ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>ã«å¾“ã£ã¦ZionWorxデータベースファイルをCSVã¸å¤‰æ›ã—ã¦ãã ã•ã„。 SundayPlus Song Files SundayPlus Songファイル This importer has been disabled. ã“ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。 MediaShout Database MediaShoutデータベース The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShoutã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã¯Windowsã®ã¿ã§åˆ©ç”¨å¯èƒ½ã§ã™ã€‚ã“ã®æ©Ÿèƒ½ã‚’使用ã™ã‚‹ãŸã‚ã«ã¯ã€Pythonã®"pyodbc"モジュールをインストールã—ã¦ãã ã•ã„。 SongPro Text Files SongProテキストファイル SongPro (Export File) SongPro (エクスãƒãƒ¼ãƒˆãƒ•ァイル) In SongPro, export your songs using the File -> Export menu SongProã«ãŠã„ã¦ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã®File-&gt;Exportã‹ã‚‰ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。 EasyWorship Service File EasyWorship Serviceファイル WorshipCenter Pro Song Files WorshipCenter Pro Songファイル The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Proã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã¯Windowsã®ã¿ã§åˆ©ç”¨å¯èƒ½ã§ã™ã€‚ã“ã®æ©Ÿèƒ½ã‚’使用ã™ã‚‹ãŸã‚ã«ã¯ã€Pythonã®"pyodbc"モジュールをインストールã—ã¦ãã ã•ã„。 PowerPraise Song Files PowerPraise Songファイル PresentationManager Song Files PresentationManager Songファイル ProPresenter 4 Song Files ProPresenter 4 Songファイル Worship Assistant Files Worship Assistantファイル Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Worship Assistantをインãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‹ã‚‰CSVファイルã§ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。 OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) ãƒ¡ãƒ‡ã‚£ã‚¢ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é¸æŠž Select one or more audio files from the list below, and click OK to import them into this song. 音声ファイルを下ã®ä¸€è¦§ã‹ã‚‰1ã¤ä»¥ä¸Šé¸æŠžã—ã€OKをクリックã—ã¦ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。 SongsPlugin.MediaItem Titles タイトル Lyrics 賛美詞 CCLI License: CCLI ライセンス: Entire Song 賛美全体 Maintain the lists of authors, topics and books. アーティストã€ãƒˆãƒ”ックã¨ã‚¢ãƒ«ãƒãƒ ã®ä¸€è¦§ã‚’ä¿å®ˆã—ã¾ã™ã€‚ copy For song cloning コピー Search Titles... タイトルを検索... Search Entire Song... å…¨ã¦ã®ãƒ‡ãƒ¼ã‚¿ã‚’検索... Search Lyrics... 歌詞を検索... Search Authors... 著者を検索... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. MediaShoutデータベースを開ã‘ã¾ã›ã‚“。 SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... 「%sã€ã‚’エクスãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã™... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. 無効ãªOpenSong songファイルã§ã™ã€‚song tagãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ SongsPlugin.PowerSongImport No songs to import. インãƒãƒ¼ãƒˆã™ã‚‹è³›ç¾ŽãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 Verses not found. Missing "PART" header. 歌詞ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。"PART"ヘッダãŒä¸è¶³ã—ã¦ã„ã¾ã™ã€‚ No %s files found. %sファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 Invalid %s file. Unexpected byte value. 無効ãª%sファイルã§ã™ã€‚予期ã›ã¬ãƒã‚¤ãƒˆãŒã¿ã¤ã‹ã‚Šã¾ã—ãŸã€‚ Invalid %s file. Missing "TITLE" header. 無効ãª%sファイルã§ã™ã€‚"TITLE"ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 Invalid %s file. Missing "COPYRIGHTLINE" header. 無効ãª%sファイルã§ã™ã€‚"COPYRIGHTLINE"ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。 SongsPlugin.SongBookForm &Name: åå‰(&N): &Publisher: 発行元(&P): You need to type in a name for the book. アルãƒãƒ åを入力ã—ã¦ãã ã•ã„。 Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. 賛美ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚ Finished export. To import these files use the <strong>OpenLyrics</strong> importer. エクスãƒãƒ¼ãƒˆãŒå®Œäº†ã—ã¾ã—ãŸã€‚インãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€<strong>OpenLyrics</strong>インãƒãƒ¼ã‚¿ã‚’使用ã—ã¦ãã ã•ã„。 Your song export failed because this error occurred: %s ã“ã®ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ãŸãŸã‚ã€è³›ç¾Žã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸ: %s SongsPlugin.SongImport copyright 著作権 The following songs could not be imported: 以下ã®è³›ç¾Žã¯ã‚¤ãƒ³ãƒãƒ¼ãƒˆã§ãã¾ã›ã‚“ã§ã—ãŸ: Cannot access OpenOffice or LibreOffice OpenOfficeã¾ãŸã¯LibreOfficeã«æŽ¥ç¶šã§ãã¾ã›ã‚“ Unable to open file ファイルを開ã‘ã¾ã›ã‚“ File not found ファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ SongsPlugin.SongMaintenanceForm Could not add your author. アーティストãŒè¿½åŠ ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ This author already exists. ã“ã®ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã¯æ—¢ã«ç™»éŒ²ã•れã¦ã„ã¾ã™ã€‚ Could not add your topic. トピックã®è¿½åŠ ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ This topic already exists. ãƒˆãƒ”ãƒƒã‚¯ãŒæ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚ Could not add your book. アルãƒãƒ ãŒè¿½åŠ ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ This book already exists. æ—¢ã«ã“ã®ã‚¢ãƒ«ãƒãƒ ãŒå­˜åœ¨ã—ã¾ã™ã€‚ Could not save your changes. 変更ãŒä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Could not save your modified author, because the author already exists. æ—¢ã«ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆãŒç™»éŒ²ã•れã¦ã„ã‚‹ãŸã‚ã€å¤‰æ›´ã‚’ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Could not save your modified topic, because it already exists. æ—¢ã«é¡Œç›®ç™»éŒ²ã•れã¦ã„ã‚‹ãŸã‚ã€å¤‰æ›´ã‚’ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Delete Author アーティスト削除 Are you sure you want to delete the selected author? é¸æŠžã•れãŸã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã‚’削除ã—ã¾ã™ã‹? This author cannot be deleted, they are currently assigned to at least one song. 最低一ã¤ã®è³›ç¾Žã«å‰²ã‚ŠæŒ¯ã‚‰ã‚Œã¦ã„ã‚‹ãŸã‚ã€ã“ã®ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆã‚’削除ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Delete Topic トピックã®å‰Šé™¤ Are you sure you want to delete the selected topic? é¸æŠžã•れãŸãƒˆãƒ”ックを削除ã—ã¾ã™ã‹? This topic cannot be deleted, it is currently assigned to at least one song. 最低一ã¤ã®è³›ç¾Žã«å‰²ã‚ŠæŒ¯ã‚‰ã‚Œã¦ã„ã‚‹ãŸã‚ã€ã“ã®ãƒˆãƒ”ックを削除ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ Delete Book アルãƒãƒ å‰Šé™¤ Are you sure you want to delete the selected book? é¸æŠžã•れãŸã‚¢ãƒ«ãƒãƒ ã‚’削除ã—ã¾ã™ã‹? This book cannot be deleted, it is currently assigned to at least one song. 最低一ã¤ã®è³›ç¾Žã«å‰²ã‚ŠæŒ¯ã‚‰ã‚Œã¦ã„ã‚‹ãŸã‚ã€ã“ã®ã‚¢ãƒ«ãƒãƒ ã‚’削除ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ The author %s already exists. Would you like to make songs with author %s use the existing author %s? アーティスト%sã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚既存ã®ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆ%sを用ã„ã€ã‚¢ãƒ¼ãƒ†ã‚£ã‚¹ãƒˆ%sã§è³›ç¾Žã‚’作りã¾ã™ã‹? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? 題目%sã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚既存ã®é¡Œç›®%sを用ã„ã€é¡Œç›®%sã§è³›ç¾Žã‚’作りã¾ã™ã‹? The book %s already exists. Would you like to make songs with book %s use the existing book %s? アルãƒãƒ %sã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚既存ã®ã‚¢ãƒ«ãƒãƒ %sを用ã„ã€ã‚¢ãƒ«ãƒãƒ %sã§è³›ç¾Žã‚’作りã¾ã™ã‹? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelectインãƒãƒ¼ã‚¿ãƒ¼ <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>注æ„:</strong> CCLI SongSelectã‹ã‚‰ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ã«ã¯ã€ã‚¤ãƒ³ã‚¿ãƒ¼ãƒãƒƒãƒˆæŽ¥ç¶šãŒå¿…è¦ã§ã™ã€‚ Username: ユーザå: Password: パスワード: Save username and password ユーザåã¨ãƒ‘スワードã®ä¿å­˜ Login ログイン Search Text: テキスト検索: Search 検索 Found %s song(s) %s個ã®è³›ç¾ŽãŒè¦‹ã¤ã‹ã‚Šã¾ã—㟠Logout ログアウト View 表示 Title: タイトル: Author(s): 著者: Copyright: 著作権: CCLI Number: CCLI番å·: Lyrics: 歌詞: Back 戻る Import インãƒãƒ¼ãƒˆ More than 1000 results 1000件以上ã®çµæžœ Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. æ¤œç´¢çµæžœãŒ1000ä»¶ã‚’è¶…ãˆãŸãŸã‚ã€æ¤œç´¢ã‚’åœæ­¢ã—ã¾ã—ãŸã€‚検索キーワードを修正ã—ã¦ãã ã•ã„。 Logging out... ログアウト中... Save Username and Password ユーザåã¨ãƒ‘スワードã®ä¿å­˜ WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. 警告: ユーザåã¨ãƒ‘スワードã®ä¿å­˜ã¯å®‰å…¨ã§ã¯ã‚りã¾ã›ã‚“。パスワードã¯å¹³æ–‡ã§ä¿å­˜ã•れã¾ã™ã€‚ã¯ã„をクリックã™ã‚‹ã¨ãƒ‘スワードをä¿å­˜ã—ã€ã„ã„ãˆã‚’クリックã™ã‚‹ã¨ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã—ã¾ã™ã€‚ Error Logging In ログインエラー There was a problem logging in, perhaps your username or password is incorrect? ログイン中ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ユーザåã¾ãŸã¯ãƒ‘スワードを間é•ã£ã¦ã„ã¾ã›ã‚“ã‹? Song Imported 賛美ãŒã‚¤ãƒ³ãƒãƒ¼ãƒˆã•れã¾ã—㟠Incomplete song ä¸å®Œå…¨ãªè®ƒç¾Ž This song is missing some information, like the lyrics, and cannot be imported. ã“ã®è®ƒç¾Žã¯ã„ãã¤ã‹ã®æƒ…å ± (歌詞ãªã©) ãŒä¸è¶³ã—ã¦ãŠã‚Šã€ã‚¤ãƒ³ãƒãƒ¼ãƒˆã§ãã¾ã›ã‚“。 Your song has been imported, would you like to import more songs? 讃美ã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆãŒå®Œäº†ã—ã¾ã—ãŸã€‚ã•らã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã‚’ç¶šã‘ã¾ã™ã‹? Stop SongsPlugin.SongsTab Songs Mode 賛美モード Display verses on live tool bar ライブツールãƒãƒ¼ã«ãƒãƒ¼ã‚¹ã‚’表示 Update service from song edit 編集後ã«ç¤¼æ‹ãƒ—ログラムを更新 Import missing songs from service files ä¸è¶³ã—ã¦ã„る賛美を礼æ‹ãƒ•ァイルã‹ã‚‰ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ Display songbook in footer フッターã«ã‚½ãƒ³ã‚°ãƒ–ックを表示 Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance 題目ä¿å®ˆ Topic name: 題目å: You need to type in a topic name. 題目åを入力ã—ã¦ãã ã•ã„。 SongsPlugin.VerseType Verse ãƒãƒ¼ã‚¹ Chorus コーラス Bridge ブリッジ Pre-Chorus é–“å¥ Intro åºå¥ Ending エンディング Other ãã®ä»– SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. CSVファイルã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ Line %d: %s %d行: %s Decoding error: %s デコードエラー: %s File not valid WorshipAssistant CSV format. ãƒ•ã‚¡ã‚¤ãƒ«ã¯æœ‰åйãªWorshipAssistant CSVå½¢å¼ã§ã¯ã‚りã¾ã›ã‚“。 Record %d レコード %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. WorshipCenter Proãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«æŽ¥ç¶šã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ SongsPlugin.ZionWorxImport Error reading CSV file. CSVファイルã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ File not valid ZionWorx CSV format. ãƒ•ã‚¡ã‚¤ãƒ«ã¯æœ‰åйãªZionWorx CSVå½¢å¼ã§ã¯ã‚りã¾ã›ã‚“。 Line %d: %s %d行: %s Decoding error: %s デコードエラー: %s Record %d レコード %d Wizard Wizard ウィザード This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. ã“ã®ã‚¦ã‚£ã‚¶ãƒ¼ãƒ‰ã§ã¯é‡è¤‡ã™ã‚‹è³›ç¾Žã®å‰Šé™¤ã‚’ãŠæ‰‹ä¼ã„ã—ã¾ã™ã€‚é‡è¤‡ã®ç–‘ã„ãŒã‚る賛美を削除ã™ã‚‹å‰ã«ç¢ºèªã™ã‚‹ã“ã¨ãŒã§ãã€åŒæ„ãªã—ã«å‰Šé™¤ã™ã‚‹ã“ã¨ã¯ã‚りã¾ã›ã‚“。 Searching for duplicate songs. é‡è¤‡ã™ã‚‹è³›ç¾Žã‚’探ã—ã¾ã™ã€‚ Please wait while your songs database is analyzed. 賛美ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’è§£æžä¸­ã§ã™ã€‚ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。 Here you can decide which songs to remove and which ones to keep. 削除ã™ã‚‹è³›ç¾Žã¨ä¿æŒã™ã‚‹è³›ç¾Žã‚’é¸æŠžã§ãã¾ã™ã€‚ Review duplicate songs (%s/%s) é‡è¤‡ã™ã‚‹è³›ç¾Žã‚’ç¢ºèª (%s/%s) Information 情報 No duplicate songs have been found in the database. データベースã«é‡è¤‡ã™ã‚‹è³›ç¾Žã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ OpenLP-2.4/resources/i18n/fi.ts0000644000175000017500000156034412657640340015325 0ustar raoulraoul AlertsPlugin &Alert &Uusi huomioviesti Show an alert message. Näytä huomioviesti. Alert name singular Huomioviestit Alerts name plural Huomioviestit Alerts container title Huomioviestit <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Huomioviestit</strong><br /><br/> Tämä moduuli mahdollistaa huomioviestien<br/> näyttämisen esityksen aikana. AlertsPlugin.AlertForm Alert Message Uusi huomioviesti Alert &text: &Viesti: &New &Tallenna pohjaksi &Save &Tallenna Displ&ay &Näytä Display && Cl&ose Näytä && &Sulje New Alert Uusi huomioviestijavascript:; &Parameter: &Muuttuja: No Parameter Found Muuttujaa ei löydy You have not entered a parameter to be replaced. Do you want to continue anyway? Viestissä oleva <> muuttuja on tyhjä! â€Muuttuja†kenttä on tyhjä, haluatko jatkaa siitä huolimatta? No Placeholder Found Viesti ei sisällä muuttujaa <> The alert text does not contain '<>'. Do you want to continue anyway? Viestissä ei ole <> muuttujaa. Haluatko jatkaa siitä huolimatta? Voit lisätä muuttujan kirjoittamalla <> osaksi viestiä. Esimerkki: Viesti: Auto <> tukkii pelastustien. Muuttuja: ABC-123 Näytetään: Auto ABC-123 tukkii pelastustien. You haven't specified any text for your alert. Please type in some text before clicking New. Tyhjää pohjaa ei voida luoda, viesti ei voi olla tyhjä. Luodaksesi uuden pohjan, sinun on kirjoitettava "Viesti" kenttään tekstiä. AlertsPlugin.AlertsManager Alert message created and displayed. Huomioviesti on luotu ja näytetty. AlertsPlugin.AlertsTab Font Fontti Font name: Fontin nimi: Font color: Fontin väri: Background color: Taustan väri: Font size: Fontin koko: Alert timeout: Huomioviestin kesto: BiblesPlugin &Bible &Raamattu Bible name singular Raamatut Bibles name plural Raamatut Bibles container title Raamatut No Book Found Kirjaa ei löydy No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Vastaavaa kirjaa ei löytynyt käännöksestä. Ole hyvä ja tarkista oikeinkirjoitus. Import a Bible. Tuo Raamattu. Add a new Bible. Lisää uusi Raamattu. Edit the selected Bible. Muokkaa valittua Raamattua. Delete the selected Bible. Poista valittu Raamattu. Preview the selected Bible. Esikatsele valittua Raamatunpaikkaa. Send the selected Bible live. Lähetä valittu paikka Esitykseen. Add the selected Bible to the service. Lisää valittu Raamatunpaikka Listaan. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Raamatut</strong><br/><br/> Tämän moduulin avulla voidaan näyttää Raamatuntekstejä eri lähteistä. &Upgrade older Bibles &Päivitä vanhempia Raamattuja Upgrade the Bible databases to the latest format. Päivitä Raamattutietokannat uusimpaan tiedostomuotoon. Genesis 1. Mooseksen kirja Exodus 2. Mooseksen kirja Leviticus 3. Mooseksen kirja Numbers 4. Mooseksen kirja Deuteronomy 5. Mooseksen kirja Joshua Joosuan kirja Judges Tuomarien kirja Ruth Ruutin kirja 1 Samuel 1. Samuelin kirja 2 Samuel 2. Samuelin kirja 1 Kings 1. Kuninkaiden kirja 2 Kings 2. Kuninkaiden kirja 1 Chronicles 1. Aikakirja 2 Chronicles 2. Aikakirja Ezra Esran kirja Nehemiah Nehemian kirja Esther Esterin kirja Job Jobin kirja Psalms Psalmit Proverbs Sananlaskujen kirja Ecclesiastes Saarnaajan kirja Song of Solomon Laulujen laulu Isaiah Jesajan kirja Jeremiah Jeremian kirja Lamentations Valitusvirret Ezekiel Hesekielin kirja Daniel Danielin kirja Hosea Hoosean kirja Joel Joelin kirja Amos Aamoksen kirja Obadiah Obadjan kirja Jonah Joonan kirja Micah Miikan kirja Nahum Nahumin kirja Habakkuk Habakukin kirja Zephaniah Sefanjan kirja Haggai Haggain kirja Zechariah Sakarjan kirja Malachi Malakian kirja Matthew Matteuksen evankeliumi Mark Markuksen evankeliumi Luke Luukkaan evankeliumi John Johanneksen evankeliumi Acts Apostolien teot Romans Roomalaiskirje 1 Corinthians 1. Korinttolaiskirje 2 Corinthians 2. Korinttolaiskirje Galatians Galatalaiskirje Ephesians Efesolaiskirje Philippians Filippiläiskirje Colossians Kolossalaiskirje 1 Thessalonians 1. Tessalonikalaiskirje 2 Thessalonians 2. Tessalonikalaiskirje 1 Timothy 1. Timoteuskirje 2 Timothy 2. Timoteuskirje Titus Tituksen kirje Philemon Filemonin kirje Hebrews Heprealaiskirje James Jaakobin kirje 1 Peter 1. Pietarin kirje 2 Peter 2. Pietarin kirje 1 John 1. Johanneksen kirje 2 John 2. Johanneksen kirje 3 John 3. Johanneksen kirje Jude Juudaksen kirje Revelation Ilmestyskirja Judith Juudit Wisdom Viisauden kirja Tobit Tobit Sirach Siirakin kirja Baruch Baruk 1 Maccabees 1. Makkabealaiskirja 2 Maccabees 2. Makkabealaiskirja 3 Maccabees 3. Makkabealaiskirja 4 Maccabees 4. Makkabealaiskirja Rest of Daniel Danielin kirjan lisäykset Rest of Esther Esterin kirjan lisäykset Prayer of Manasses Manassen rukous Letter of Jeremiah Jeremian kirje Prayer of Azariah Asariaan rukous Susanna Susanna Bel Bel ja loikäärme 1 Esdras 1. Esran kirja 2 Esdras 2. Esran kirja : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 j V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 J verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 jae verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 jakeet - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 * and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 ja end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse loppu BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Ole hyvä ja nimeä Raamattu. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Raamatun tekijänoikeus kenttä ei voi olla tyhjä! Ole hyvä ja kirjoita tekijänoikeuskenttään jotakin. Bible Exists Raamattu on jo olemassa This Bible already exists. Please import a different Bible or first delete the existing one. Raamattu on jo olemassa. Ole hyvä ja tuo jokin toinen Raamattu tai poista ensin nykyinen versio. You need to specify a book name for "%s". Sinun pitää määritellä kirjan nimi "%s":lle. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Kirjan nimi "%s" ei ole kelvollinen. Numeroita voi käyttää ainoastaan alussa ja sitä täytyy seuraata ainakin yksi tai useampia ei-numeerisia merkkejä. Duplicate Book Name Päällekkäinen kirjan nimi The Book Name "%s" has been entered more than once. Kirjan nimi "%s" on syötetty enemmän kuin kerran. BiblesPlugin.BibleManager Scripture Reference Error Virhe jaeviitteessä Web Bible cannot be used Nettiraamattua ei voi käyttää Text Search is not available with Web Bibles. Tekstihaku ei ole käytettävissä nettiraamatuista. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Et ole antanut hakusanaa. Voit antaa useita eri hakusanoja välilyönnillä erotettuna, jos etsit niitä yhtenä lauseena. Jos sanat on erotettu pilkulla, etsitään niistä mitä tahansa. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Raamattuja ei ole asennettuna. Ole hyvä ja käytä ohjattua toimintoa asentaaksesi yhden tai useampia Raamattuja. No Bibles Available Raamattuja ei ole saatavilla Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Jaeviitteet voivat noudattaa seuraavia malleja: Kirja luku | 1. Moos 1 Kirja luku%(range)sluku | Kor 2%(range)s3 Kirja luku%(verse)sjae%(range)sjae | Joos 5%(verse)s3%(range)s6 Kirja luku%(verse)sjae%(range)sjae%(list)sjae%(range)sjae | Ps 5%(verse)s3-5%(list)s9%(range)s11 Kirja luku%(verse)sjae%(range)sjae%(list)sluku%(verse)sjae%(range)sjae | Joh 1%(verse)s5%(range)s7%(list)s3%(verse)s16%(range)s17 Kirja luku%(verse)sjae%(range)sluku%(verse)sjae | Apos 8%(verse)s16%(range)s9%(verse)s2 Kirjoista voi käyttää lyhenteitä, mutta ne seuraavat kirjojen pitkiä nimiä eivätkä saa päätyä pisteisiin. BiblesPlugin.BiblesTab Verse Display Jakeiden näyttäminen Only show new chapter numbers Näytä luvun numero vain ensimmäisessä jakeessa Bible theme: Käytettävä teema: No Brackets Ei sulkuja ( And ) ( ja ) { And } { ja } [ And ] [ ja ] Note: Changes do not affect verses already in the service. Huomio: Muutokset eivät vaikuta Listassa oleviin kohteisiin. Display second Bible verses Näytä vertailutekstin valinnan kenttä Custom Scripture References Mukautetut jaeviitteet Verse Separator: Jakeen erotinmerkki: Range Separator: Alueen erotinmerkki: List Separator: Luettelon erotinmerkki: End Mark: Loppumerkki: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Useampia vaihtoehtoisia jakeen erotinmerkkejä voidaan määritellä. Ne pitää erottaa pystyviivalla "|". Käyttääksesi oletusarvoja tyhjennä tämä kenttä. English Suomi Default Bible Language Kirjojen nimien kieli Book name language in search field, search results and on display: Kirjan nimen kieli hakukentässä, hakutuloksissa ja näytöllä. Bible Language Raamatun kieli Application Language Sovelluksen kieli Show verse numbers Näytä luku ja jae numerot BiblesPlugin.BookNameDialog Select Book Name Valitse kirjan nimi Current name: Kirjan nimi: Corresponding name: Vastaava nimi: Show Books From Näytä nimilistassa Old Testament Vanha testamentti New Testament Uusi testamentti Apocrypha Deuterokanoniset kirjat The following book name cannot be matched up internally. Please select the corresponding name from the list. Kirjanimeä ei tunnistettu, ole hyvä ja valitse <br> listasta vastaava suomenkielinen käännös BiblesPlugin.BookNameForm You need to select a book. SInun pitää valita kirja. BiblesPlugin.CSVBible Importing books... %s Tuodaan kirjoja... %s Importing verses... done. Tuodaan jakeita... valmis. BiblesPlugin.EditBibleForm Bible Editor Raamatun muokkaaminen License Details Nimi ja tekijänoikeudet Version name: Käännöksen nimi: Copyright: Tekijäinoikeudet: Permissions: Luvat: Default Bible Language Kirjojen nimien kieli Book name language in search field, search results and on display: Kieli, jota käytetään Raamatun kirjoissa niin haussa kuin Esityksessäkin. Global Settings Yleiset asetukset Bible Language Raamatun kieli Application Language Sovelluksen kieli English Suomi This is a Web Download Bible. It is not possible to customize the Book Names. Tämä käännös haetaan netin kautta. Netistä haettavien käännösten kirjoja ei voida uudelleennimetä. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Voit halutessasi uudelleenimetä käännöksen raamatunkirjat. Jos käännökset eivät toimi, tarkista â€Asetukset > Raamatut†sivulta, ettei Raamattujen kieleksi ole valittu â€Englantiaâ€. BiblesPlugin.HTTPBible Registering Bible and loading books... Rekisteröidään Raamattua ja ladataan kirjoja... Registering Language... Rekisteröidään kieli... Importing %s... Importing <book name>... Tuodaan %s... Download Error Latauksen aikana tapahtui virhe There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ohjelma havaitsi ongelmia valittujen jakeiden lataamisessa. Ole hyvä ja tarkasta internet-yhteyden toimivuus. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. Parse Error Jäsennysvirhe There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ohjelma havaitsi ongelmia valittujen jakeiden purkamisessa. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. BiblesPlugin.ImportWizardForm Bible Import Wizard Raamatun ohjattu tuonti This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. <font size="4">Tämä toiminto auttaa sinua lisäämään ohjelmaan <br> raamatunkäännöksiä eri tiedostomuodoista. <br><br> Paina â€Seuraava†aloittaaksesi. </font> Web Download Lataaminen netistä Location: Sijainti: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Raamattu: Download Options Laamisen asetukset Server: Palvelin: Username: Käyttäjätunnus: Password: Salasana: Proxy Server (Optional) Välityspalvelin (oma palvelin) License Details Nimi ja tekijänoikeudet Set up the Bible's license details. Aseta Raamatun tekstin käyttöoikeuden tiedot. Version name: Käännöksen nimi: Copyright: Tekijäinoikeudet: Please wait while your Bible is imported. Ole hyvä ja odota kunnes Raamattu on tuotu järjestelmään. You need to specify a file with books of the Bible to use in the import. Valitse tiedosto tuotavaksi, jossa on Raamatun tekstissä käytetyt kirjojen nimet. You need to specify a file of Bible verses to import. Valitse tiedosto tuotavaksi, jossa on Raamatun teksti jakeittain. You need to specify a version name for your Bible. Sinun pitää määritellä käännöksen nimi Raamatulle You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Raamatun tekijänoikeus kenttä ei voi olla tyhjä! Ole hyvä ja kirjoita tekijänoikeuskenttään jotakin. Bible Exists Raamattu on jo olemassa This Bible already exists. Please import a different Bible or first delete the existing one. Raamattu on jo olemassa. Ole hyvä ja tuo jokin toinen Raamattu tai poista ensin nykyinen versio. Your Bible import failed. Raamatun tuonti epäonnistui. CSV File CSV-tiedosto Bibleserver Raamattupalvelin Permissions: Luvat: Bible file: Raamattutiedosto: Books file: Kirjatiedosto: Verses file: Jaetiedosto: Registering Bible... Rekisteröidään Raamattua... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Raamattu rekisteröity. Jakeet ladataan käytettäessä verkon välityksellä, siksi tähän tarvitaan nettiyhteys. Click to download bible list Klikkaa ladataksesi luettelo Raamatuista Download bible list Lataa raamattuluettelo Error during download Virhe ladattaessa An error occurred while downloading the list of bibles from %s. Virhe ladattaessa raamattuluetteloa sivustolta %s. BiblesPlugin.LanguageDialog Select Language Valitse kieli OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei pysty määrittelemään tässä Raamatun käännöksessä käytettyä kieltä. Ole hyvä ja valitse kieli alla olevasta luettelosta. Language: Kieli: BiblesPlugin.LanguageForm You need to choose a language. Sinun tulee valita kieli. BiblesPlugin.MediaItem Quick Pikahaku Find: Etsi: Book: Kirja: Chapter: Luku: Verse: Jae: From: Alkaen: To: Asti: Text Search Hakusanoilla Second: Vertailuteksti: Scripture Reference Jaeviite Toggle to keep or clear the previous results. Vaihda valinta pitääksesi tai pyyhkiäksesi edelliset tulokset. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Et voi yhdistää yhden ja kahden käännöksen jaehakujen tuloksia. Haluatko poistaa hakutulokset ja aloittaa uuden haun? Bible not fully loaded. Raamattu ei latautunut kokonaan. Information Tietoa The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Toissijainen Raamattu ei sisällä kaikkia ensisijaisen käännöksen jakeita. Vain ne jakeet, jotka ovat kummassakin käännöksessä, voidaan näyttää. %d jaetta jätettiin pois hakutuloksista. Search Scripture Reference... Hae jaeviittauksin... Search Text... Hae hakusanoilla... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Huomio! Haluatko varmasti poistaa "%s" Raamatun OpenLP:stä? Jos poistat Raamatun, et voi käyttää sitä ellet asenna sitä uudestaan. Advanced Paikan valinta BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Virheellinen raamattu-tiedostotyyppi. OpenSong Raamatut saattavat olla pakattuja. Tiedosto pitää purkaa ennen tuontia. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Virheellinen raamattu-tiedostotyyppi. Tämä vaikuttaa Zefania XML-raamatulta, ole hyvä ja käytä Zefania tuontia. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Tuodaan %(bookname) %(chapter)... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Poistetaan käyttämättömiä tageja (tämä voi kestää muutamia minuutteja)... Importing %(bookname)s %(chapter)s... Tuodaan %(bookname) %(chapter)... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Valitse tiedostosijainti varmuuskopiolle Bible Upgrade Wizard Ohjattu Raamatun päivitys This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. <font size="4">Tämä toiminto auttaa sinua päivittämään nykyiset Raamattusi <br> uudempaan OpenLP:n versioon. <br><br> Paina â€Seuraava†aloittaaksesi. </font> Select Backup Directory Valitse tiedostosijainti varmuuskopiolle Please select a backup directory for your Bibles Valitse tiedostosijainti, jonne haluat varmuuskopioida Raamattusi Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Raamattujen tiedostomuoto uudistui versiossa 2.1. <br> Aiemmat OpenLP:n versiot eivät pysty avaamaan päivitettyjä<br> raamattutiedostoja. Vanhanmuotoiset Raamattusi varmuuskopioidaan<br> ja voit halutessasi käyttää niitä sijoittamalla ne OpenLP:n vanhemman<br> version tiedostokansioon.<br><br> Lisätietoja löydät englanniksi artikkelista: <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. Ole hyvä ja valitse sijainti varmuuskopioille. Backup Directory: Varmuuskopion tiedostosijainti: There is no need to backup my Bibles Raamatunkäännöksiä ei tarvitse varmuuskopioida Select Bibles Valitse Raamatut Please select the Bibles to upgrade Ole hyvä ja valitse Raamatut päivitettäväksi Upgrading Päivitetään Please wait while your Bibles are upgraded. Ole hyvä ja odota, kunnes Raamatut on päivitetty. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varmuuskopiointi epäonnistui. OpenLP:llä ei ole muokkausoikeutta annettuun tiedostosijaintiin. Yritä tallentamista toiseen tiedostosijaintiin. Upgrading Bible %s of %s: "%s" Failed Päivitetään Raamattua %s/%s: "%s" Epäonnistui Upgrading Bible %s of %s: "%s" Upgrading ... Päivitetään Raamattua %s/%s: "%s" Päivitetään ... Download Error Latauksen aikana tapahtui virhe To upgrade your Web Bibles an Internet connection is required. Nettiraamattujen päivittämiseksi tarvitaan internet-yhteys. Upgrading Bible %s of %s: "%s" Upgrading %s ... Päivitetään Raamattua %s/%s: "%s" Päivitetään %s ... Upgrading Bible %s of %s: "%s" Complete Päivitetään Raamattua %s/%s: "%s" Valmis , %s failed , %s epäonnistui Upgrading Bible(s): %s successful%s Päivitetään Raamattuja: %s onnistui %s. Upgrade failed. Päivitys epäonnistui. You need to specify a backup directory for your Bibles. Anna tiedostosijainti Raamattujen varmuuskopioille. Starting upgrade... Aloitetaan päivitys... There are no Bibles that need to be upgraded. Raamattuihin ei ole uusia päivityksiä. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Raamattujen: %(success)d päivitys onnistui %(failed_text)s Jakeet ladataan käytettäessä verkon välityksellä, siksi tähän tarvitaan nettiyhteys. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Virheellinen raamattu-tiedostotyyppi. Tämä vaikuttaa pakatulta Zefania XML-raamatulta, ole hyvä ja pura tiedosto ennen tuontia. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Tuodaan %(bookname) %(chapter)... CustomPlugin Custom Slide name singular Tekstidiat Custom Slides name plural Tekstidiat Custom Slides container title Tekstidiat Load a new custom slide. Lataa uusi tekstidia Import a custom slide. Tuo tekstidia Add a new custom slide. Lisää uusi tekstidia. Edit the selected custom slide. Muokkaa valittua tekstidiaa. Delete the selected custom slide. Poista valittu tekstidia. Preview the selected custom slide. Esikatsele valittua tekstidiaa. Send the selected custom slide live. Lähetä valittu tekstidia Esitykseen. Add the selected custom slide to the service. Lisää valittu tekstidia Listaan. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Tekstidiat</strong><br/><br/> Tämän moduulin avulla voidaan näyttää tekstidioja. Tekstidioja on mahdollista muokata lauluja vapaammin tiettyjä tarkoituksia varten. CustomPlugin.CustomTab Custom Display Tekstidiat Display footer Näytä alatunniste Import missing custom slides from service files Tuo puuttuvat tekstidiat Listasta CustomPlugin.EditCustomForm Edit Custom Slides Muokkaa tekstidioja &Title: &Nimi: Add a new slide at bottom. Lisää uusi dia loppuun. Edit the selected slide. Muokkaa valittua diaa. Edit all the slides at once. Muokkaa kaikki dioja kerralla. Split a slide into two by inserting a slide splitter. Jaa dia kahteen osaan lisäämällä splitterin. The&me: Tee&ma: &Credits: &Lopputeksti: You need to type in a title. Dian â€Otsikko†ei voi olla tyhjä. Ed&it All Muokkaa &kaikkia Insert Slide Lisää dia You need to add at least one slide. Sinun pitää lisätä ainakin yksi dia. CustomPlugin.EditVerseForm Edit Slide Tekstidian muokkaus CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Haluatko varmasti poistaa valitut tekstidiat? Valittuna poistettavaksi on: %d dia/diaa ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Kuvat</strong><br/><br/> Tämä moduuli mahdollistaa <br/> kuvien näyttämisen. <br/><br/> Moduulin avulla voidaan esimerkiksi <br/> luoda kuvista ryhmiä, toistaa niitä<br/> automaattisesti sekä asettaa taustakuvia. Image name singular Kuvat Images name plural Kuvat Images container title Kuvat Load a new image. Tuo kuvia Add a new image. Lisää uusi kuva. Edit the selected image. Muokkaa valittua kuvaa. Delete the selected image. Poista valittu kuva tai ryhmä. Preview the selected image. Esikatsele valittua kuvaa. Send the selected image live. Lähetä valittu kuva Esitykseen. Add the selected image to the service. Lisää valittu kuva Listaan. ImagePlugin.AddGroupForm Add group Luo ryhmä Parent group: Ylempi ryhmä: Group name: Ryhmän nimi: You need to type in a group name. Sinun pitää syöttää ryhmälle nimi. Could not add the new group. Ryhmää ei voida lisätä. This group already exists. Ryhmä on jo olemassa. ImagePlugin.ChooseGroupForm Select Image Group Valitse ryhmä Add images to group: Lisää kuvia ryhmään: No group Ei ryhmää Existing group Olemassaoleva ryhmä New group Uusi ryhmä ImagePlugin.ExceptionDialog Select Attachment Valitse liite ImagePlugin.MediaItem Select Image(s) Valitse kuva(t) You must select an image to replace the background with. Sinun pitää valita kuva, jolla korvaa taustan. Missing Image(s) Puuttuvat kuva(t) The following image(s) no longer exist: %s Seuraavaa kuvaa (kuvia) ei enää ole olemassa: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Seuraavaa kuvaa (kuvia) ei ole enää olemassa: %s Haluatko siitä huolimatta lisätä muut valitut kuvat? There was a problem replacing your background, the image file "%s" no longer exists. Taustakuvan korvaaminen ei onnistunut. Kuvatiedosto "%s" ei ole enää olemassa. There was no display item to amend. Muutettavaa näytön kohdetta ei ole. -- Top-level group -- -- Päätason ryhmä -- You must select an image or group to delete. Valitse kuva tai ryhmä poistoa varten. Remove group Ryhmän poistaminen Are you sure you want to remove "%s" and everything in it? Oletko varma, että haluat poistaa "%s" ja kaikki sen tiedot? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Taustaväri kuville jotka eivät täytä koko näyttöä. Media.player Audio Ääni Video Video VLC is an external player which supports a number of different formats. VLC on ulkoinen soitin, joka tukee lukuista joukkoa eri tiedostomuotoja. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit on nettiselaimessa toimiva mediasoitin. Soitin sallii tekstin tulostamisen videon päälle. This media player uses your operating system to provide media capabilities. Tämä mediasoitin käyttää käyttöjärjestelmän resursseja median toistamiseen. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media</strong><br/><br/> Tämän moduulin avulla on mahdollista<br/> toistaa video ja äänitiedostoja.<br/><br/> Nämä vaativat toimiakseen mediasoittimen. Media name singular Media Media name plural Media Media container title Media Load new media. Tuo videoita tai äänitiedostoja. Add new media. Lisää uusi media. Edit the selected media. Muokkaa valittua mediaa. Delete the selected media. Poista valittu media. Preview the selected media. Esikatsele valittua mediaa. Send the selected media live. Lähetä valittu media Esitykseen. Add the selected media to the service. Lisää valittu media Listaan. MediaPlugin.MediaClipSelector Select Media Clip Levyn toisto Source Levyaseman sijainti Media path: Lähde: Select drive from list Valitse asema luettelosta Load disc Avaa levy Track Details Valitse toiston asetukset Title: Nimi: Audio track: Ääniraita: Subtitle track: Tekstitys: HH:mm:ss.z TT:mm:ss.z Clip Range Leikkausalue Start point: Alkupiste: Set start point Aseta alkupiste Jump to start point Siirry alkuun End point: Loppupiste: Set end point Aseta loppupiste Jump to end point Siirry loppuun MediaPlugin.MediaClipSelectorForm No path was given Polkua ei annettu Given path does not exists Annettua polkua ei ole olemassa An error happened during initialization of VLC player Virhe alustustettaessa VLC-soitinta VLC player failed playing the media VLC-soitin ei voi soittaa mediaa CD not loaded correctly CD:tä ei ladattu oikein The CD was not loaded correctly, please re-load and try again. CD:tä ei ladattu oikein, yritä avata se uudestaan. DVD not loaded correctly DVD:tä ei ladattu oikein The DVD was not loaded correctly, please re-load and try again. DVD:tä ei ladattu oikein, yritä avata se uudestaan. Set name of mediaclip Nimeäminen Name of mediaclip: Nimi toistoa varten: Enter a valid name or cancel Anna kelvollinen nimi tai peruuta Invalid character Virheellinen merkki The name of the mediaclip must not contain the character ":" Mediatiedoston nimessä ei voi käyttää kaksoispistettä ":" MediaPlugin.MediaItem Select Media Valitse media You must select a media file to delete. Sinun täytyy valita mediatiedosto poistettavaksi. You must select a media file to replace the background with. Sinun täytyy valita mediatiedosto, jolla taustakuva korvataan. There was a problem replacing your background, the media file "%s" no longer exists. Taustakuvan korvaamisessa on ongelmia, mediatiedosto '%s" ei ole enää saatavilla. Missing Media File Puuttuva mediatiedosto The file %s no longer exists. Tätä tiedostoa ei enää löydetty sijainnista: %s Tiedosto on joko siirretty, poistettu tai uudelleennimetty. Videos (%s);;Audio (%s);;%s (*) Videoita (%s);;Äänitiedostoja (%s);;%s (*) There was no display item to amend. Muutettavaa näytön kohdetta ei ole. Unsupported File Tiedostomuotoa ei tueta. Use Player: Käytä soitinta: VLC player required VLC-soitin vaaditaan VLC player required for playback of optical devices VLC-soitin vaaditaan optisten medioiden soittamiseksi Load CD/DVD Avaa CD/DVD. Load CD/DVD - only supported when VLC is installed and enabled Levyjen toisto edellyttää koneeseen asennettua VLC:tä ja sen käyttöönottoa asetuksista. The optical disc %s is no longer available. Optinen levy %s ei ole käytettävissä. Mediaclip already saved Medialeike on jo tallennettu This mediaclip has already been saved Medialeike on tallennettu aiemmin MediaPlugin.MediaTab Allow media player to be overridden Salli mediasoittimen valinta Start Live items automatically Aloita Esityksen kohteet automaattisesti OPenLP.MainWindow &Projector Manager &Projektorien hallinta OpenLP Image Files Kuvatiedostot Information Tietoa Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Raamatun tiedostomuoto on muuttunut. Sinun tarvitsee päivittää aiemmin asennetut Raamatut. Pitäisikö OpenLP:n päivittää ne nyt? Backup Varmuuskopinti OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP on päivitetty, haluatko varmuuskopioida OpenLP:n vanhan tiedostokansion? Backup of the data folder failed! Tiedostokansion varmuuskopionti epäonnistui! A backup of the data folder has been created at %s Tiedostokansio on varmuuskopioitu kansioon: %s Open Avaa OpenLP.AboutForm Credits Kiitokset License Lisenssi build %s build %s 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; version 2 of the License. Tämä on ilmainen sovellus, voit jakaa tai tehdä siihen muutoksia vapaasti seuraavaan lisenssiin perustuen: GNU General Public License version 2 Free Software Foundation 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 below for more details. Tätä ohjelmaa levitetään siinä toivossa, että se olisi hyödyllinen. Ohjelman toiminnalle ei anneta minkäänlaisia oikeudellisia takuita. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP on ilmainen, avoimeen lähdekoodiin perustuva sovellus joka suunniteltiin seurakuntakäyttöön. Sovelluksella voidaan näyttää esimerkiksi laulunsanoja, Raamatunpaikkoja, videoita ja presentaatioita. Jotkin ominaisuudet edellyttävät ulkoisen sovelluksen, kuten PowerPointin, LibreOfficen tai PowerPoint Viewerin asentamista presentaatioita varten tai VLC mediasoitinta videoiden toistoon. Lisätietoa OpenLP:stä löydät ohjelman kotisivuilta: http://openlp.org/ OpenLP on toteutettu täysin vapaaehtoisvoimin, jos haluat auttaa ohjelman kehityksessä, voit painaa alla olevaa painiketta ja ottaa selvää eri tavoista olla mukana. (Sivusto Englanniksi.) Volunteer Haluan auttaa Project Lead Projektin johtaminen Developers Kehittäjät Contributors Avustajat Packagers Paketoijat Testers Testaajat Translators Kääntäjät Afrikaans (af) Afrikaans (af) Czech (cs) Tsekki (cs) Danish (da) Tanska (da) German (de) Saksa (de) Greek (el) Kreikka (el) English, United Kingdom (en_GB) Englanti, UK (en_GB) English, South Africa (en_ZA) Englanti, Etelä-Afrikka (en_ZA) Spanish (es) Espanja (es) Estonian (et) Viro (et) Finnish (fi) Suomi (fi) French (fr) Ranska (fr) Hungarian (hu) Unkari (hu) Indonesian (id) Indonesia (id) Japanese (ja) Japani (ja) Norwegian BokmÃ¥l (nb) Norja (nb) Dutch (nl) Hollanti (nl) Polish (pl) Puola (pl) Portuguese, Brazil (pt_BR) Portugali, Brasilia (pt_BR) Russian (ru) Venäjä (ru) Swedish (sv) Ruotsi (sv) Tamil(Sri-Lanka) (ta_LK) Tamili (Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Kiina(Kiina) (zh_CN) Documentation Dokumentointi Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ OpenLP on toteutettu seuraavia teknologioita hyödyntäen: Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Suurin kiitos - Johannes 3:16 "Sillä niin on Jumala maailmaa rakastanut, että hän antoi ainokaisen Poikansa, ettei yksikään,joka häneen uskoo, hukkuisi, vaan hänellä olisi iankaikkinen elämä" Kiitos kuuluu Jumalalle meidän Isällemme, joka lähetti Poikansa kuolemaan ristillä puolestamme ja antoi meidän syntimme anteeksi. Haluamme tarjota tämän ohjelmiston ilmaiseksi – Kuolihan Jeesus puolestamme vaikkemme sitä ansainneet. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Tekijäinoikeudet © 2004-2016 %s Osittaiset tekijäinoikeudet © 2004-2016 %s OpenLP.AdvancedTab UI Settings Käyttöliittymän asetukset Number of recent files to display: Viimeisimpien listatiedostojen määrä: Remember active media manager tab on startup Avaa käynnistäessä sulkiessa avoimena ollut kirjasto Double-click to send items straight to live Lähetä kohde Esitykseen tuplaklikkaamalla Expand new service items on creation Näytä uudet Listan kohteet laajennettuina Enable application exit confirmation Vahvista sovelluksen sulkeminen Mouse Cursor Hiiren osoitin Hide mouse cursor when over display window Piilota hiiren osoitin, kun se on näyttöikkunan päällä Default Image Taustakuva ohjelman käynnistyttyä Background color: Taustan väri: Image file: Kuvatiedosto: Open File Tiedoston valinta Advanced Paikan valinta Preview items when clicked in Media Manager Esikatsele kirjaston kohdetta klikkaamalla Browse for an image file to display. Selaa näytettäviä kuvia. Revert to the default OpenLP logo. Palauta oletusarvoinen OpenLP logo. Default Service Name Listan oletusnimi Enable default service name Käytä Listoissa oletusnimeä Date and Time: Päivä ja aika: Monday Maanantai Tuesday Tiistai Wednesday Keskiviikko Friday Perjantai Saturday Lauantai Sunday Sunnuntai Now Nyt Time when usual service starts. Ajankohta, jolloin jumalanpalvelus yleensä alkaa. Name: Nimi: Consult the OpenLP manual for usage. Tarkista OpenLP:n ohjekirjasta käyttö. Revert to the default service name "%s". Palauta oletusarvoinen Listan nimi "%s" Example: Esimerkki: Bypass X11 Window Manager Ohita X11:n ikkunamanageri (ei koske Windows tai Mac käyttäjiä, jos käytössäsi on Linux, tämä voi ratkaista näyttöongelmia) Syntax error. Kielioppivirhe Data Location Tietojen sijainti Current path: Nykyinen polku: Custom path: Mukautettu polku: Browse for new data file location. Valitse uusi tiedostojen sijainti. Set the data location to the default. Palauta tiedostokansion oletussijainti Cancel Peruuta Cancel OpenLP data directory location change. Peruuta OpenLP:n tiedostokansion sijainnin muuttaminen. Copy data to new location. Kopioi tiedot uuteen sijaintiin. Copy the OpenLP data files to the new location. Kopioi OpenLP:n tiedostokansio uuteen sijaintiin. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>HUOMIO:</strong> Uudessa tiedostokansion sijainnissa on jo ennestään OpenLP:n tiedostoja. Nämä tiedostot tuhotaan kopioinnin yhteydessä. Data Directory Error Tiedostokansion virhe Select Data Directory Location Valitse tiedostokansion sijainti Confirm Data Directory Change Vahvista tiedostokansion sijainnin muuttaminen Reset Data Directory Nollaa tiedostokansio Overwrite Existing Data Ylikirjoita olemassaolevat tiedot OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP tiedostokansiota ei löytynyt %s Tämä tiedostokansio sijaitsi siirrettävällä levyllä jota OpenLP ei löydä. Jos valitset "Ei" voit yrittää korjata ongelmaa itse. Paina "Kyllä" palauttaaksesi tiedostokansion oletussijaintiin. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Oletko varma, etta haluat muuttaa OpenLP:n tiedostokansion tiedostosijainnin seuraavaksi: %s Muutos tehdään, kun OpenLP suljetaan seuraavan kerran. Thursday Torstai Display Workarounds Erikoisasetukset Use alternating row colours in lists Värjää joka toinen luetteloiden kohteista WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? HUOMIO: Sijainti, jonka olet valinnut %s näyttää sisältävän OpenLP:n tiedostoja. Oletko varma, että haluat korvata nämä tiedostot nykyisillä tiedostoilla? Restart Required Uudelleenkäynnistys vaaditaan This change will only take effect once OpenLP has been restarted. Muutokset tuleva voimaan vasta, kun OpenLP on käynnistetty uudelleen. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Oletko varma, että haluat muutaa OpenLP:n datahakemiston sijainnin oletussijainniksi? Tätä sijaintia käytetään sen jälkeen, kun OpenLP on ensin suljettu. OpenLP.ColorButton Click to select a color. Valitse väri klikkaamalla. OpenLP.DB RGB RGB Video Video Digital Digitaalinen Storage Tietovarasto Network Verkko RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digitaalinen 1 Digital 2 Digitaalinen 2 Digital 3 Digitaalinen 3 Digital 4 Digitaalinen 4 Digital 5 Digitaalinen 5 Digital 6 Digitaalinen 6 Digital 7 Digitaalinen 7 Digital 8 Digitaalinen 8 Digital 9 Digitaalinen 9 Storage 1 Tietovarasto 1 Storage 2 Tietovarasto 2 Storage 3 Tietovarasto 3 Storage 4 Tietovarasto 4 Storage 5 Tietovarasto 5 Storage 6 Tietovarasto 6 Storage 7 Tietovarasto 7 Storage 8 Tietovarasto 8 Storage 9 Tietovarasto 9 Network 1 Verkko 1 Network 2 Verkko 2 Network 3 Verkko 3 Network 4 Verkko 4 Network 5 Verkko 5 Network 6 Verkko 6 Network 7 Verkko 7 Network 8 Verkko 8 Network 9 Verkko 9 OpenLP.ExceptionDialog Error Occurred Tapahtui virhe Send E-Mail Lähetä sähköposti Save to File Tallenna tiedostoksi Attach File Liitä tiedosto Description characters to enter : %s <strong>Kuvauksen 20 merkin minimipituudesta on jäljellä %s merkkiä.</strong> Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Ole hyvä ja kirjoita alapuolella olevaan tekstikenttään mitä olit tekemässä, kun virhe tapahtui. (Mielellään englanniksi) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. <strong>Voi ei, OpenLP kohtasi virheen</strong> joka keskeytti ohjelman toiminnan!<br><br> <strong>Voit auttaa</strong> ohjelman kehittäjiä lähettämällä alle kerätyn virheraportin<br>tutkintaa varten sähköpostilla osoitteeseen: <strong>bugs@openlp.org</strong><br><br> <strong>Jos käytössäsi ei ole sähköpostisovellusta,</strong> voit tallentaa<br> virheraportin tiedostoksi ja lähettää sen itse sähköpostilla selaimen kautta.<br><br> OpenLP.ExceptionForm Platform: %s Järjestelmä: %s Save Crash Report Tallenna virheraportti Text files (*.txt *.log *.text) Teksti tiedostot (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Uudelleennimeäminen New File Name: Uusi tiedostonimi: File Copy Tiedoston kopiointi OpenLP.FirstTimeLanguageForm Select Translation Valitse käännös Choose the translation you'd like to use in OpenLP. Valitse käännös, jota haluat käyttää OpenLP:ssä Translation: Käännös: OpenLP.FirstTimeWizard Songs Laulut First Time Wizard Ensimmäisen käyttökerran avustaja Welcome to the First Time Wizard Ensimmäisen käyttökerran avustaja Activate required Plugins Moduulien valinta Select the Plugins you wish to use. Valitse listasta ne ohjelman osat joita haluat käyttää. Moduulit ovat olennainen osa ohjelmaa, ilman erityistä syytä kannattaa ne kaikki pitää päällä. Bible Raamatut Images Kuvat Presentations Presentaatiot Media (Audio and Video) Media (Ääni ja videotiedostot) Allow remote access Etäkäyttö (Kuten selaimella tai älypuhelimella) Monitor Song Usage Laulujen käyttötilastointi Allow Alerts Huomioviestit Default Settings Perusasetukset Downloading %s... Ladataan %s... Enabling selected plugins... Aktivoidaan valittuja moduuleja... No Internet Connection Ei internetyhteyttä Unable to detect an Internet connection. Toimivaa internetyhteyttä ei saatavilla. Sample Songs Tekijänoikeusvapaita lauluja Select and download public domain songs. Valitse listasta esimerkkilauluja halutuilla kielillä. Sample Bibles Tekijänoikeusvapaita Raamatunkäännöksiä Select and download free Bibles. Valitse listasta ne Raamatunkäännökset jotka haluat ladata. Sample Themes Esimerkkiteemat Select and download sample themes. Voit ladata sovellukseen esimerkkiteemoja valitsemalla listasta haluamasi. Set up default settings to be used by OpenLP. Valitse näyttö jota haluat käyttää esitykseen sekä yleinen teema. Default output display: Näyttö ulostuloa varten: Select default theme: Yleinen teema: Starting configuration process... Konfigurointiprosessi alkaa... Setting Up And Downloading Määritetään asetuksia ja ladataan Please wait while OpenLP is set up and your data is downloaded. Ole hyvä ja odota kunnes OpenLP on määrittänyt asetukset ja kaikki tiedostot on ladattu. Setting Up Otetaan käyttöön Custom Slides Tekstidiat Finish Loppu No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ei internetyhteyttä. Ensikäynnistyksen ohjattu toiminto tarvitsee internet yhteyden ladatakseen vapaasti ladattavia lauluja, Raamattuja ja teemoja. Paina 'Lopeta'-painiketta käynnistääksesi OpenLP oletusarvoisilla asetuksilla. Voit halutessasi suorittaa ensiasennuksen ohjatun toiminnon myöhemmin "Työkalut" valikon kautta. Download Error Latauksen aikana tapahtui virhe There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Oli yhteysongelmia lataamisen aikana, minkä tähden seuraavat lataukset jätetään välistä. Yritä ajaa uudelleen Ensimmäisen käynnistyksen avustaja myöhemmin. Download complete. Click the %s button to return to OpenLP. Lataus on valmis. Paina %s painiketta palataksesi OpenLP-ohjelmaan. Download complete. Click the %s button to start OpenLP. Lataus valmis. Paina %s käynnistääksesi OpenLP. Click the %s button to return to OpenLP. <font size="4">Kaikki on nyt valmista, paina %s palataksesi sovellukseen.</font> Click the %s button to start OpenLP. <font size="4">Kaikki on valmista, paina %s ja aloita sovelluksen käyttö.</font> There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Oli yhteysongelmia lataamisen aikana, minkä tähden seuraavat lataukset jätetään välistä. Yritä ajaa Ensimmäisen käynnistyksen avustaja uudelleen myöhemmin. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. <font size="4">Tervetuloa!<br><br> Tämä avustustoiminto auttaa sinua OpenLP:n käyttöönotossa. <br> Paina %s aloittaaksesi.</font> To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Keskeyttääksesi ensiasennuksen ohjatun toiminnon kokonaan (ei käynnistetä OpenLP:tä), paina %s -painiketta nyt. Downloading Resource Index Ladataan resursseja... Please wait while the resource index is downloaded. Resursseja ladataan, tämän pitäisi viedä vain hetki. Please wait while OpenLP downloads the resource index file... Ladataan tarvittavia resursseja... Downloading and Configuring Lataaminen ja konfigurointi Please wait while resources are downloaded and OpenLP is configured. Ole hyvä ja odota kunnes resurssit ovat latautuneet ja OpenLP on konfiguroitu. Network Error Verkkovirhe There was a network error attempting to connect to retrieve initial configuration information Verkkovirhe ladatessa oletusasetuksia palvelimelta Cancel Peruuta Unable to download some files Joitain tiedostoja ei voitu ladata OpenLP.FormattingTagDialog Configure Formatting Tags Tekstin muotoilutunnuksien hallinta Description Efekti Tag Tunnus Start HTML HTML koodin alku End HTML HTML koodin loppu Default Formatting <font size="4">Tunnukset mahdollistavat tekstin muotoilun teemasta poikkeavaksi.<br><br> Käyttö: Maalaa tekstiä laulua tai tekstidiaa muokatessa ja klikkaa hiiren oikeaa painiketta, valitse muotoilu. <br> Voit myös kirjoitaa tunnuksen itse: {tunnus} teksti johon muotoilu tulee {/tunnus}</font><br> Custom Formatting Omat muotoilutunnukset OpenLP.FormattingTagForm <HTML here> <Kirjoita HTML koodi tähän> Validation Error Virhe Description is missing Kuvaus ei voi olla tyhjä Tag is missing Tunnus puuttuu Tag %s already defined. Tunnus%s on jo määritelty. Description %s already defined. Kuvaus %s on jo määritelty. Start tag %s is not valid HTML Aloitustunnus%s ei ole kelvollista HTML:ää End tag %(end)s does not match end tag for start tag %(start)s Lopetus tunnus %(end)s ei täsmää aloitus tunnuksen %(start)s lopetus tunnukseen. OpenLP.FormattingTags Red Punainen Black Musta Blue Sininen Yellow Keltainen Green Vihreä Pink Vaaleanpunainen Orange Oranssi Purple Purppura White Valkoinen Superscript Yläindeksi Subscript Alaindeksi Paragraph Kappale Bold Lihavointi Italics Kursiivi Underline Alleviivaus Break Rivinvaihto OpenLP.GeneralTab General Yleiset Monitors Näytöt Select monitor for output display: Valitse näyttö ulostuloa varten: Display if a single screen Näytä Esitys ensisijaisessa näytössä, jos toista näyttöä ei ole kytketty Application Startup Ohjelman käynnistys Show blank screen warning Varoita pimennetystä näytöstä Automatically open the last service Avaa edellinen Lista automaattisesti Show the splash screen Näytä OpenLP:n logo käynnistyksen aikana Application Settings Sovelluksen asetukset Prompt to save before starting a new service Pyydä tallentamaan ennen uuden Listan luomista Automatically preview next item in service Näytä esikatselu automaattisesti Listan seuraavalle kohteelle sec s CCLI Details CCLI tiedot SongSelect username: SongSelect käyttäjätunnus: SongSelect password: SongSelect salasana: X X Y Y Height Korkeus Width Leveys Check for updates to OpenLP Tarkista OpenLP:n päivitykset Unblank display when adding new live item Lopeta näytön pimennys, kun kohde lähetetään Esitykseen Timed slide interval: Automaattisen toiston nopeus: Background Audio Taustamusiikki Start background audio paused Aloita taustamusiikki pysäytettynä Service Item Slide Limits Esityksen kierto Override display position: Ylimäärittele näytön sijainti: Repeat track list Toista kappaleluettelo Behavior of next/previous on the last/first slide: Kun viimeistä diaa toistetaan ja siirrytään seuraavaan tai, kun ensimmäistä diaa toistetaan ja siirrytään edelliseen: &Remain on Slide &Mitään ei tapahdu &Wrap around &Siirry ensimmäiseen tai viimeiseen diaan &Move to next/previous service item &Lähetä seuraava tai edellinen Listan kohde Esitykseen OpenLP.LanguageManager Language Kieli Please restart OpenLP to use your new language setting. Ole hyvä ja käynnistä OpenLP uudelleen käyttääksesi uusia kieliasetuksia. OpenLP.MainDisplay OpenLP Display OpenLP Näyttö OpenLP.MainWindow &File &Tiedosto &Import &Tuo tiedostosta... &Export Vie tiedostoksi… &View &Ulkoasu M&ode &Valmisasettelut &Tools &Työkalut &Settings &Asetukset &Language &Kieli &Help &Ohjeet Service Manager Lista Theme Manager Teemat Open an existing service. Avaa Listatiedosto. Save the current service to disk. Tallenna nykyinen Lista. Save Service As Tallenna Lista nimellä Save the current service under a new name. Tallenna nykyinen Lista uudella nimellä. E&xit &Sulje sovellus Quit OpenLP Sulje OpenLP. &Theme T&eema &Configure OpenLP... &Määritä asetukset &Media Manager &Kirjastot Toggle Media Manager Näytä / piilota kirjastot Toggle the visibility of the media manager. Näytä tai piilota kirjastot. &Theme Manager &Teemat Toggle Theme Manager Näytä / piilota Teemat Toggle the visibility of the theme manager. Näytä tai piilota teemojen hallinta. &Service Manager &Lista Toggle Service Manager Näytä / piilota Lista Toggle the visibility of the service manager. Näytä tai piilota Lista. &Preview Panel &Esikatselu Toggle Preview Panel Näytä / piilota esikatselu Toggle the visibility of the preview panel. Näytä tai piilota esikatselu. &Live Panel &Esitys Toggle Live Panel Näytä / piilota Esitys Toggle the visibility of the live panel. Näytä tai piilota Esitys. List the Plugins Lista moduuleista &User Guide &Käyttöohjeet &About &Tietoa OpenLP:stä More information about OpenLP Lisätietoa OpenLP:sta &Online Help &Ohjeet verkossa &Web Site &Kotisivut Use the system language, if available. Käytä järjestelmän kieltä, jos se on saatavilla. Set the interface language to %s Aseta käyttöliittymän kieleksi %s Add &Tool... Lisää &Työkalu... Add an application to the list of tools. Lisää sovellus työkalujen luetteloon. &Default &Oletusulkoasu Set the view mode back to the default. Palauta oletusarvoiset ulkoasuasetukset. &Setup &Esikatselu Set the view mode to Setup. Käytä esikatselua korostavaa asettelua. &Live &Esitys Set the view mode to Live. Käytä Esitystä korostavaa asettelua. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP on nyt päivitettävissä versioon: %s Nykyinen versiosi on: %s Voit ladata päivityksen osoitteesta: http://openlp.org/ OpenLP Version Updated OpenLP:n versio on nyt päivitetty. OpenLP Main Display Blanked OpenLP:n Esitys on pimennetty The Main Display has been blanked out Esityksen näyttö on pimennetty Default Theme: %s Yleinen teema: %s English Please add the name of your language here Suomi Configure &Shortcuts... &Pikanäppäimet Open &Data Folder... Avaa &Tiedostokansion sijainti Open the folder where songs, bibles and other data resides. Avaa kansio, jossa laulut, Raamatut ja muut tiedot sijaitsevat. &Autodetect &Tunnista automaattisesti Update Theme Images Päivitä teemojen kuvat Update the preview images for all themes. Päivitä kaikkien teemojen esikatselukuvat. Print the current service. Tulosta nykyinen Lista. L&ock Panels &Lukitse nämä asetukset Prevent the panels being moved. Estä ulkoasun osien näkyvyyden muuttaminen. Re-run First Time Wizard Suorita ensimmäisen käyttökerran avustaja Re-run the First Time Wizard, importing songs, Bibles and themes. Suorita ensimmäisen käyttökerran avustaja uudelleen. Voit tuoda sovellukseen lauluja, Raamattuja ja teemoja. Re-run First Time Wizard? Ensimmäisen käyttökerran avustaja - Vahvistus Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Haluatko varmasti suorittaa ensimmäisen käyttökerran avustajan? Tämän avulla voidaan muuttaa joitakin asetuksia sekä ladata esimerkiksi lauluja ja Raamattuja. Clear List Clear List of recent files Tyhjennä luettelo Clear the list of recent files. Tyhjentää viimeksi käytettyjen listatiedostojen luettelon. Configure &Formatting Tags... Tekstin &muotoilutunnukset Export OpenLP settings to a specified *.config file Tallenna OpenLP:n asetukset *.conf tiedostoksi. Settings Asetukset Import OpenLP settings from a specified *.config file previously exported on this or another machine Tuo OpenLP:n asetukset .config muotoisesta asetustiedostosta. Import settings? Tuodaanko asetukset? Open File Tiedoston valinta OpenLP Export Settings Files (*.conf) OpenLP:n asetukset (*.conf) Import settings Tuo asetukset OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sulkeutuu nyt. Tuodut asetukset otetaan käyttöön seuraavan käynnistyksen yhteydessä. Export Settings File Vie asetustiedosto OpenLP Export Settings File (*.conf) OpenLP:n asetukset (*.conf) New Data Directory Error Virhe uudessa tiedostokansiossa Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopioidaan OpenLP:n tiedostoja uuteen tiedostokansion sijaintiin - %s - Ole hyvä ja odota kopioinnin loppumista. OpenLP Data directory copy failed %s OpenLP:n tiedostokansion kopiointi epäonnistui %s General Yleiset Library Kirjastot Jump to the search box of the current active plugin. Siirry aktiivisen liitännäisen hakukenttään. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Haluatko varmasti tuoda asetukset?<br><br> Asetusten tuominen muuttaa sovelluksen käyttämiä asetuksia.<br><br> Viallinen asetustiedosto voi aiheuttaa virheellistä<br> toimintaa ja ohjelma saattaa sulkeutua yllättäen. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Tiedosto, jonka olet valinnut ei ole kelvollinen OpenLP:n asetustiedosto. Käsittely on keskeytetty eikä muutoksia ole tehty. Projector Manager Projektorien hallinta Toggle Projector Manager Näytä / piilota projektorin hallinta Toggle the visibility of the Projector Manager Näytä tai piilota projektorin hallinta. Export setting error Asetusten vienti epäonnistui The key "%s" does not have a default value so it will be skipped in this export. Painikkeella "%s" ei ole oletusarvoa, joten se jätetään välistä tietoja vietäessä. An error occurred while exporting the settings: %s Virhe asetusten viennin aikana: %s &Recent Services &Viimeisimmät Listatiedostot &New Service &Uusi Lista &Open Service &Avaa Listatiedosto &Save Service &Tallenna Lista Save Service &As... Tallenna Lista &nimellä... &Manage Plugins &Moduulien hallinta Exit OpenLP Sulje OpenLP Are you sure you want to exit OpenLP? Haluatko varmasti sulkea OpenLP:n? &Exit OpenLP &Sulje OpenLP OpenLP.Manager Database Error Tietokantavirhe The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Tietokanta, jota yritetään tuoda, on luotu uudemmalla OpenLP:n versiolla. Tietokannan versio on %d, nykyisen asennuksen versio on: %d. Tietokantaa ei voida tuoda. Tietokanta: %s. OpenLP cannot load your database. Database: %s OpenLP ei voi tuoda tietokantaa. Tietokanta: %s. OpenLP.MediaManagerItem No Items Selected Valinta on tyhjä &Add to selected Service Item &Lisää osaksi Listan kuvaryhmää You must select one or more items to preview. Sinun pitää valita yksi tai useampi kohta esikatseluun. You must select one or more items to send live. Valitse yksi tai useampi kohde lähetettäväksi Esitykseen. You must select one or more items. Sinun pitää valita yksi tai useampi kohta. You must select an existing service item to add to. Sinun täytyy valita Listan kohta johon haluat lisätä. Invalid Service Item Vihreellinen Listan kohta You must select a %s service item. Ole hyvä ja valitse Listasta %s johon haluat lisätä Kuvan(t). Voit lisätä Kuvia ainoastaan Listassa jo oleviin Kuviin. You must select one or more items to add. Sinun täytyy valita yksi tai useampi kohta lisättäväksi. No Search Results Ei hakutuloksia Invalid File Type Virheellinen tiedostomuoto Invalid File %s. Suffix not supported Virheellinen tiedosto: %s. Tiedostopäätettä ei tueta. &Clone &Luo kopio Duplicate files were found on import and were ignored. Tuotaesa löytyi päällekkäisiä tiedostoja ja ne ohitettiin. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> Tunniste puuttuu. <verse> tag is missing. <verse> Tunniste puuttuu. OpenLP.PJLink1 Unknown status Tilaa ei tunnisteta No message Ei viestiä Error while sending data to projector Virhe lähetettäessä tiedot projektorille Undefined command: Määrittelemätön komento: OpenLP.PlayerTab Players Mediasoittimet Available Media Players Saatavilla olevat mediasoittimet Player Search Order Soittimen hakujärjestys Visible background for videos with aspect ratio different to screen. Taustaväri videoille jotka eivät täytä koko näyttöä. %s (unavailable) %s (ei saatavilla) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" HUOM! Käyttääksesi VLC:tä sinun on asennettava versio %s OpenLP.PluginForm Plugin Details Moduulin tiedot Status: Tila: Active Käytössä Inactive Poissa käytöstä %s (Inactive) %s (Poissa käytöstä) %s (Active) %s (Käytössä) %s (Disabled) %s (Estetty) Manage Plugins Moduulien hallinta OpenLP.PrintServiceDialog Fit Page Sovita sivulle Fit Width Sovita leveyteen OpenLP.PrintServiceForm Options Asetukset Copy Kopioi Copy as HTML Kopioi HTML:nä Zoom In Lähennä Zoom Out Loitonna Zoom Original Alkuperäiseen kokoon Other Options Muut asetukset Include slide text if available Ota mukaan dian teksti, jos saatavilla Include service item notes Ota mukaan muistiinpanot Include play length of media items Ota mukaan toistettavan median pituus Add page break before each text item Lisää sivunvaihto ennen jokaista tekstiä Service Sheet OpenLP:n lista Print Tulosta Title: Nimi: Custom Footer Text: Mukautettu alatunniste: OpenLP.ProjectorConstants OK OK General projector error Yleinen projektorivirhe Not connected error Yhteysvirhe Lamp error Lampun virhe Fan error Jäähdytyksen virhe High temperature detected Liian korkea lämpötila havaittu Cover open detected Kansi on avoinna Check filter Tarkista suodatin Authentication Error Kirjautusmisvirhe Undefined Command Määrittelemätön komento Invalid Parameter Virheellinen arvo Projector Busy Projektori varattu Projector/Display Error Projektori/Näyttövirhe Invalid packet received Virheellinen paketti vastaanotettu Warning condition detected Varoitustila havaittu Error condition detected Virhetila havaittu PJLink class not supported PJLink luokka ei ole tuettu Invalid prefix character Virheellinen etuliite The connection was refused by the peer (or timed out) Toinen osapuoli kieltäytyi yhteydestä (tai aikakatkaisu) The remote host closed the connection Etäpalvelin sulki yhteyden The host address was not found Palvelimen osoitetta ei löytynyt The socket operation failed because the application lacked the required privileges Ohjelmalla ei ole riittäviä oikeuksia socket-rajanpinnan käyttämiseksi The local system ran out of resources (e.g., too many sockets) Paikallisen järjestelmän resurssit loppuivat (esim. liikaa socketteja) The socket operation timed out Aikakatkaisu socket käytössä The datagram was larger than the operating system's limit Datagrammi oli suurempi kuin käyttöjärjestelmän rajoitus sallii An error occurred with the network (Possibly someone pulled the plug?) Verkkovirhe (Mahdollisesti joku irroitti verkkojohdon?) The address specified with socket.bind() is already in use and was set to be exclusive Annettu socket.bind() on jo käytössä eikä sitä ole sallittu jaettava The address specified to socket.bind() does not belong to the host Socket.bind() osoite on määritelty kuuluvaksi toiselle palvelulle The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Socket -toiminto ei ole tuettu paikallisessa käyttöjärjestelmässä (esim. IPV6-tuki puuttuu) The socket is using a proxy, and the proxy requires authentication Socket käyttää välityspalvelinta ja se vaatii tunnistautumisen The SSL/TLS handshake failed SSL/TLS kättely epäonnistui The last operation attempted has not finished yet (still in progress in the background) Viimeisintä toimintoa ei ole vielä suoritettu loppuun. (Toimintoa suoritetaan yhä taustalla) Could not contact the proxy server because the connection to that server was denied Ei saada yhteyttä välityspalvelimeen, koska yhteys palvelimeen on kielletty The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Yhteys välityspalvelimeen on katkaistu odottamattomasti (ennen kuin yhteys on muodostunut toiseen koneeseen) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Yhteys välityspalvelimeen on aikakatkaistu tai välityspalvelin on lakannut vastaamasta tunnistautumisvaiheessa. The proxy address set with setProxy() was not found Välityspalvelimen setProxy() osoitetta ei löytynyt An unidentified error occurred Määrittelemätön virhe on tapahtunut Not connected Ei yhteyttä Connecting Yhdistetään Connected Yhdistetty Getting status Vastaanotettaan tila Off Pois Initialize in progress Alustus käynnissä Power in standby Standby -tila Warmup in progress Lämpenee Power is on Virta on päällä Cooldown in progress Jäähdytellään Projector Information available Projektorin tiedot on saatavilla Sending data Lähetetään tietoja Received data Vastaanotettaan tietoa The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Yhteyden muodostaminen välityspalvelimeen epäonnistui, koska palvelin ei ymmärtänyt pyyntöä OpenLP.ProjectorEdit Name Not Set Nimeä ei ole asetettu You must enter a name for this entry.<br />Please enter a new name for this entry. Sinun pitää antaa nimi syötteellesi.<br />Ole hyvä ja anna uusi nimi. Duplicate Name Nimi on jo käytössä OpenLP.ProjectorEditForm Add New Projector Lisää uusi projektori. Edit Projector Muokkaa projektoria. IP Address IP-osoite Port Number Portti PIN PIN Name Nimi Location Sijainti Notes Muistiinpanot Database Error Tietokantavirhe There was an error saving projector information. See the log for the error Tapahtui virhe projektorin tietojen tallennuksessa. Katso logista virhettä OpenLP.ProjectorManager Add Projector Lisää projektori. Add a new projector Lisää uusi projektori. Edit Projector Muokkaa projektoria. Edit selected projector Muokkaa valittua projektoria. Delete Projector Poista projektori. Delete selected projector Poista valittu projektori. Select Input Source Valitse sisääntulon lähde Choose input source on selected projector Valitse sisääntulo valitulle projektorille View Projector Näytä projektori. View selected projector information Näytä valitun projektorin tiedot Connect to selected projector Yhdistä valittu projektori. Connect to selected projectors Yhdistä valitut projektorit. Disconnect from selected projectors Lopeta yhteys valittuihin projektoreihin Disconnect from selected projector Lopeta yhteys valittuun projektoriin. Power on selected projector Kytke valittu projektori päälle. Standby selected projector Projektori standby -tilaan. Put selected projector in standby Aseta valittu projektori standby -tilaan. Blank selected projector screen Pimennä valittu projektorinäyttö. Show selected projector screen Näytä valittu projektorinäyttö. &View Projector Information &Näytä projektorin tiedot. &Edit Projector &Muokkaa projektoria. &Connect Projector &Yhdistä projektori. D&isconnect Projector K&ytke projektori pois. Power &On Projector Käynnistä projektori. Power O&ff Projector Sammuta projektori. Select &Input &Valitse tulo Edit Input Source Muokkaa tuloa &Blank Projector Screen &Pimennä projektorin näyttö. &Show Projector Screen &Näytä projektorin näyttö. &Delete Projector P&oista projektori. Name Nimi IP IP Port Portti Notes Muistiinpanot Projector information not available at this time. Projektorin tiedot eivät ole saatavilla juuri nyt Projector Name Projektorin nimi Manufacturer Valmistaja Model Malli Other info Muut tiedot Power status Virran tila Shutter is Sulkija on Closed suljettu Current source input is Nykyinen tulo on Lamp Lamppu On Päällä Off Pois Hours Tuntia No current errors or warnings Ei virheitä tai varoituksia Current errors/warnings Nykyiset virheet/varoiutukset Projector Information Projektorin tiedot No message Ei viestiä Not Implemented Yet Ei ole vielä toteutettu Delete projector (%s) %s? Haluatko poistaa projektorin (%s) %s? Are you sure you want to delete this projector? Haluatko varmasti poistaa tämän projektorin? OpenLP.ProjectorPJLink Fan Tuuletin Lamp Lamppu Temperature Lämpötila Cover Peite Filter Suodin Other Muu OpenLP.ProjectorTab Projector Projektori Communication Options Tiedonsiirron asetukset Connect to projectors on startup Yhdistä projektorit käynnistäessä Socket timeout (seconds) Socketin aikakatkaisu (sekuntia) Poll time (seconds) Virkistysaika (sekuntia) Tabbed dialog box Välilehdin varustettu viesti-ikkuna Single dialog box Yksinkertainen viesti-ikkuna OpenLP.ProjectorWizard Duplicate IP Address Päällekkäinen IP-osoite Invalid IP Address Virheellinen IP-osoite Invalid Port Number Virheellinen porttinumero OpenLP.ScreenList Screen Näyttö primary ensisijainen OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Alku</strong>: %s <strong>Length</strong>: %s <strong>Pituus</strong>: %s [slide %d] [dia %d] OpenLP.ServiceItemEditForm Reorder Service Item Uudelleenjärjestä Lista OpenLP.ServiceManager Move to &top Siirrä &ylös Move item to the top of the service. Siirrä kohde Listan ensimmäiseksi. Move &up Siirrä &ylös Move item up one position in the service. Siirrä kohde yhden ylemmäksi Listassa. Move &down Siirrä &alas Move item down one position in the service. Siirrä kohde yhden alemmaksi Listassa. Move to &bottom Siirrä &loppuun Move item to the end of the service. Siirrä kohde Listan viimeiseksi. &Delete From Service &Poista Listasta Delete the selected item from the service. Poista valittu kohde Listasta. &Add New Item &Lisää uusi rivi &Add to Selected Item Lisää valittuun kohtaan &Edit Item &Muokkaa valittua kohdetta &Reorder Item Järjestä &uudelleen &Notes Muistiin&panot &Change Item Theme &Muuta kohteen teemaa File is not a valid service. Tiedosto ei ole kelvollinen OpenLP:n Lista. Missing Display Handler Puuttuva näytön käsittelijä Your item cannot be displayed as there is no handler to display it Näyttöelementtiä ei voi näyttää, koska sen näyttämiseen ei ole määritelty näyttöä. Your item cannot be displayed as the plugin required to display it is missing or inactive Kohdetta ei voida näyttää! Kohteen tarvitsemaa moduulia ei ole asennettu tai se on otettu pois käytöstä. Voit hallita moduuleja â€Asetukset†valikon kautta. &Expand all &Laajenna kaikki Expand all the service items. Laajenna kaikki Listan kohteet. &Collapse all &Supista kaikki Collapse all the service items. Supista kaikki Listan kohteet. Open File Tiedoston valinta Moves the selection down the window. Siirtää valinnan alas ikkunassa. Move up Siirrä ylös Moves the selection up the window. Siirtää valinnan ylös ikkunassa. Go Live Lähetä Esitykseen Send the selected item to Live. Lähetä kohde Esitykseen. &Start Time &Alku aika Show &Preview &Esikatsele Modified Service Sulkeminen The current service has been modified. Would you like to save this service? Nykyistä Listaa on muokattu, haluatko tallentaa sen? Custom Service Notes: Mukautetun Listan muistiinpanot: Notes: Muistiinpanot: Playing time: Toistoaika: Untitled Service Tallentamaton Lista File could not be opened because it is corrupt. Tiedostoa ei voida avata, koska sen sisältö on turmeltunut. Empty File Tyhjä tiedosto This service file does not contain any data. Listatiedosto on tyhjä. Corrupt File Turmeltunut tiedosto Load an existing service. Avaa Listatiedosto. Save this service. Tallenna tämä Lista. Select a theme for the service. Valitse teema Listalle. Slide theme Dian teema Notes Muistiinpanot Edit Muokkaa valittua Service copy only Vain ajoilstan kopio Error Saving File Virhe tallennettaessa tiedostoa There was an error saving your file. Tiedoston tallentamisessa tapahtui virhe. Service File(s) Missing Jumalanpalveluksen tiedosto(t) puuttuvat &Rename... &Uudelleennimeä Create New &Custom Slide Luo kohteesta &Tekstidia &Auto play slides Toista &automaatisesti Auto play slides &Loop Toista &loputtomasti. Auto play slides &Once Toista &loppuun. &Delay between slides &Viive diojen välissä. OpenLP Service Files (*.osz *.oszl) OpenLP:n Lista (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP:n Lista (*.osz);; OpenLP:n Lista - ilman liitetiedostoja (*.oszl) OpenLP Service Files (*.osz);; OpenLP:n Lista (*.osz);; File is not a valid service. The content encoding is not UTF-8. Tiedosto ei ole kelvollinen Lista. Sisältö ei ole UTF-8 muodossa. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Lista, jota yrität käyttää on vanhempaa muotoa. Tallenna se käyttäen OpenLP:n versiota 2.0.2. tai uudempaa. This file is either corrupt or it is not an OpenLP 2 service file. Tämä tiedosto on vahingoittunut tai se ei ole OpenLP 2 Lista. &Auto Start - inactive &Automaattinen toisto - Ei päällä &Auto Start - active &Automaattinen toisto - päällä Input delay Vaihtoaika Delay between slides in seconds. Automaattisen toiston vaihtoaika sekunteina. Rename item title &Uudelleennimeä otsikko Title: Nimi: An error occurred while writing the service file: %s Virhe kirjoitettaessa Listan tiedostoa: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Seuraavat Listan tiedosto(t) puuttuvat: %s Nämä tiedostot poistetaan jos tallennat. OpenLP.ServiceNoteForm Service Item Notes Listan kohteen muistiinpanot OpenLP.SettingsForm Configure OpenLP Asetukset OpenLP.ShortcutListDialog Action Toiminta Shortcut Pikanäppäin Duplicate Shortcut Painike on jo käytössä The shortcut "%s" is already assigned to another action, please use a different shortcut. Pikanäppäin "%s" on varattu jo toiseen käyttöön, ole hyvä ja valitse jokin toinen. Alternate Vaihtoehtoinen Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Valitse toiminto ja paina jotain alla olevista painikkeista nauhoittaaksesi uuden pääasiallisen tai vaihtoehtoisen pikanäppäimen. Default Oletusarvo Custom Mukautettu Capture shortcut. Nauhoita pikanäppäin. Restore the default shortcut of this action. Palauta toiminnon oletusarvoinen pikanäppäin. Restore Default Shortcuts Palauta oletusarvoiset pikanäppäimet Do you want to restore all shortcuts to their defaults? Oletko varma, että haluat palauttaa kaikki pikanäppäimet oletusarvoiksi. Configure Shortcuts Muokkaa Pikanäppäimiä OpenLP.SlideController Hide Piilota Go To Säkeen valinta Blank Screen Pimennä näyttö. Blank to Theme Näytä vain teeman tausta. Show Desktop Näytä työpöytä. Previous Service Siirry edelliseen Listan kohteeseen Next Service Siirry seuraavaan Listan kohteeseen Escape Item Piilota Esityksessä oleva kohde Move to previous. Siirry edelliseen. Move to next. Siirry seuraavaan. Play Slides Toista diat Delay between slides in seconds. Automaattisen toiston vaihtoaika sekunteina. Move to live. Lähetä Esitykseen. Add to Service. Lisää Listaan. Edit and reload song preview. Muokkaa ja esikatsele. Start playing media. Aloita median toistaminen Pause audio. Pysäytä kappale. Pause playing media. Pysäytä median toistaminen. Stop playing media. Keskeytä median toistaminen. Video position. Videon kohta. Audio Volume. Äänenvoimakkuus Go to "Verse" Siirry "Säkeistöön" Go to "Chorus" Siirry "Kertosäkeeseen" Go to "Bridge" Siirry "Bridgeen (C-osaan)" Go to "Pre-Chorus" Siirry "Esi-kertosäkeeseen" Go to "Intro" Siirry "Introon" Go to "Ending" Siirry "Lopetukseen" Go to "Other" Siirry "Muuhun" Previous Slide Edellinen dia Next Slide Seuraava dia Pause Audio Keskeytä toisto Background Audio Taustamusiikki Go to next audio track. Aloita seuraava kappale Tracks Kappaleet OpenLP.SourceSelectForm Select Projector Source Valitse projektorin lähtö Edit Projector Source Text Muokkaa projektorin lähdön tekstiä Ignoring current changes and return to OpenLP Ohitetaan nykyiset muutokset ja palataan OpenLP:hen Delete all user-defined text and revert to PJLink default text Poista käyttäjän määrittämä teksti ja palauta PJLink:in oletusteksti. Discard changes and reset to previous user-defined text Hylkää muutokset ja palaa edeltäviin käyttäjän määrittelemiin teksteihin Save changes and return to OpenLP Tallenna muutokset ja palaa OpenLP:hen Delete entries for this projector Poista tämän projektorin tiedot Are you sure you want to delete ALL user-defined source input text for this projector? Oletko varma, että haluat poistaa KAIKKI käyttäjän määrittelemät tekstit tälle projektorille? OpenLP.SpellTextEdit Spelling Suggestions Tavutus ehdotuksia Formatting Tags Tekstin muotoilu Language: Kieli: OpenLP.StartTimeForm Theme Layout Teeman ulkoasu The blue box shows the main area. Sininen laatikko on alue, jolla teksti näytetään. The red box shows the footer. Punainen laatikko näyttää alatunnisteelle varatun alueen. OpenLP.StartTime_form Item Start and Finish Time Rivin alku- ja loppuaika Hours: Tunnit: Minutes: Minuutit: Seconds: Sekunnit: Start Alku Finish Loppu Length Pituus Time Validation Error Aikamääreessä on virhe Finish time is set after the end of the media item Loppuaika on asetettu median kokonaispituuden yli. Start time is after the finish time of the media item Alkuaika on asetettu median kokonaispituuden yli. OpenLP.ThemeForm (approximately %d lines per slide) Näytölle mahtuu %d riviä tekstiä tällä koolla ja nykyisillä näyttöasetuksilla. OpenLP.ThemeManager Create a new theme. Luo uusi teema. Edit Theme Muokkaa teemaa Edit a theme. Muokkaa teemaa. Delete Theme Poista teema Delete a theme. Poista teema. Import Theme Tuo teema Import a theme. Tuo teema. Export Theme Vie teema Export a theme. Vie teema. &Edit Theme &Muokkaa teemaa &Delete Theme &Poista teema Set As &Global Default Aseta &Yleiseksi teemaksi %s (default) %s (Oletus) You must select a theme to edit. Sinun pitää valita muokattava teema. You are unable to delete the default theme. Et voi poistaa "Yleiseksi" asetettua teemaa. You have not selected a theme. Teemaa ei ole valittu. Ole hyvä ja valitse haluttu teema teemojen listasta. Save Theme - (%s) Tallenna teema - (%s) Theme Exported Teema viety Your theme has been successfully exported. Valitsemasi teeman vienti onnistui. Theme Export Failed Teeman vienti epäonnistui Select Theme Import File Valitse tuotava OpenLP:n teematiedosto File is not a valid theme. Tiedosto ei ole kelvollinen teema. &Copy Theme &Luo kopio &Rename Theme &Uudelleennimeä teema &Export Theme &Vie teema You must select a theme to rename. Sinun pitää valita uudelleennimettävä teema. Rename Confirmation Nimeämisen vahvistaminen Rename %s theme? Uudelleennimetäänkö %s teema? You must select a theme to delete. Sinun pitää valita poistettava teema. Delete Confirmation Poistaminen Delete %s theme? Haluatko varmasti poistaa teeman: %s Validation Error Virhe A theme with this name already exists. Teema tällä nimellä on jo olemassa. Copy of %s Copy of <theme name> Kopio %s:sta Theme Already Exists Teema on jo olemassa Theme %s already exists. Do you want to replace it? Teema %s on jo olemassa. Tahdotko korvata sen? The theme export failed because this error occurred: %s Teeman vienti epäonnistui, koska tämä virhe tapahtui: %s OpenLP Themes (*.otz) OpenLP Teema (*.otz) %s time(s) by %s %s kerta(a) %s :sta Unable to delete theme Teemaa ei voi poistaa Theme is currently used %s Teemaa ei voida poistaa, siihen on yhdistetty: %s OpenLP.ThemeWizard Theme Wizard Teemojen ohjattu toiminto Welcome to the Theme Wizard Uuden teeman luonti Set Up Background Taustan asetukset Set up your theme's background according to the parameters below. Valitse listasta haluttu tausta. Läpinäkyvä tausta mahdollistaa esimerkiksi PowerPoint tai videotaustojen käyttämisen erillisellä ohjelmalla. Background type: Valitse haluttu tausta: Gradient Liukuväri Gradient: Kuvio: Horizontal Vaakasuora Vertical Pystysuora Circular Säteittäinen Top Left - Bottom Right Ylhäältä vasemmalta - alas oikealle Bottom Left - Top Right Alhaalta vasemmalta - ylhäälle oikealle Main Area Font Details Fontin asetukset Define the font and display characteristics for the Display text Valitse käytettävä fontti ja muotoilut. Font: Fontti: Size: Koko: Line Spacing: Riviväli: &Outline: &Ääriviivat &Shadow: &Varjostus Bold Lihavointi Italic Kursiivi Footer Area Font Details Alatunnisteen fontti Define the font and display characteristics for the Footer text Valitse käytettävä fontti ja muotoilut alatunnisteessa. Text Formatting Details Tekstin lisäasetukset Allows additional display formatting information to be defined Valitse tekstin tasauksen ja siirtymäefektien asetukset. Horizontal Align: Vaakasuora tasaus: Left Vasempaan reunaan Right Oikeaan reunaan Center Keskitetty Output Area Locations Näyttöalueen asetukset &Main Area &Tekstialue &Use default location &Määritä automaattisesti X position: Vaakatason sisennys: px pikseliä Y position: Pystytason sisennys: Width: Leveys: Height: Korkeus: Use default location Määritä automaattisesti Theme name: Teeman nimi: Edit Theme - %s Muokkaa teemaa - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. <font size="4">Tämän työkalun avulla voit luoda uuden teeman.<br> Aloita teeman luonti painamalla 'Seuraava'.</font> Transitions: Näytä siirtymäefekti diaa vaihtaessa: &Footer Area &Alatunniste Starting color: Aloittava väri: Ending color: Lopettava väri: Background color: Taustan väri: Justify Tasaa molemmat reunat Layout Preview Ulkoasun esikatselu Transparent Läpinäkyvä Preview and Save Teeman yhteenveto Preview the theme and save it. Voit nyt tallentaa teeman tai palata muokkaukseen. Alapuolella on malli teeman ulkoasusta. Background Image Empty Taustakuva tyhjä Select Image Valitse kuva Theme Name Missing Teeman nimikenttä on tyhjä There is no name for this theme. Please enter one. <font size="4">Teema tarvitsee nimen, anna teemalle nimi ennen tallentamista. </font> Theme Name Invalid Teeman nimi on virheellinen Invalid theme name. Please enter one. Teeman nimi on kelvoton. Ole hyvä ja anna uusi. Solid color Yhtenäinen väri color: Väri: Allows you to change and move the Main and Footer areas. Voit halutessasi muuttaa käytettävissä olevaa näytön resoluutiota sekä tekstin sisennystä reunoilta. You have not selected a background image. Please select one before continuing. Taustakuvaa ei ole valittu. Sinun on valittava kuva ennen kuin voit jatkaa eteenpäin. OpenLP.ThemesTab Global Theme Yleinen teema Theme Level Teemojen toiminta S&ong Level &Kohdekohtainen Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Käytä kohdekohtaisia teemoja. Voit valita eri lauluille ja tekstidioille omat teemansa. Raamatut käyttävät Raamatuille määriteltyä teemaa. Jos kohteelle ei ole määritetty omaa teemaa, käytetään Listan teemaa, jos Listalla ei ole teemaa käytetään Yleistä teemaa. &Service Level &Listan taso Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Käytä Listan teemaa ja korvaa sillä kohdekohtaiset teemat. Jos Listalla ei ole teemaa, käytetään Yleistä teemaa sen sijaan. &Global Level &Yleinen taso Use the global theme, overriding any themes associated with either the service or the songs. Käytä Yleistä teemaa ja korvaa sillä kohdekohtaiset ja Listan teemat. Themes Teema Universal Settings Yleiset asetukset &Wrap footer text &Rivitä alatunnisteen teksti OpenLP.Ui Delete the selected item. Poista valittu kohta. Move selection up one position. Siirrä valintaa ylöspäin yhden pykälän. Move selection down one position. Siirrä valintaa alaspäin yhden pykälän. &Vertical Align: Pystysuuntainen tasaus: Finished import. Tuominen valmis. Format: Tiedostomuoto: Importing Tuominen Importing "%s"... Tuodaan "%s"... Select Import Source Valitse tuonnin lähde Select the import format and the location to import from. Valitse tuotavan tiedoston muoto ja sijainti. Open %s File Avaa %s tiedosto %p% %p% Ready. Valmis. Starting import... Aloitetaan tuontia... You need to specify at least one %s file to import from. A file type e.g. OpenSong Sinun pitää määritellä vähintää yksi %s tiedosto tuotavaksi. Welcome to the Bible Import Wizard Raamattujen tuonti Welcome to the Song Export Wizard Laulujen vienti Welcome to the Song Import Wizard Laulujen tuonti Author Singular Tekijä Authors Plural Tekijät © Copyright symbol. © Song Maintenance Laulujen ylläpito Topic Singular Aihe Topics Plural Aiheet Title and/or verses not found Otsikko ja / tai jakeet eivät löytyneet XML syntax error XML kielioppivirhe Welcome to the Bible Upgrade Wizard Raamattujen päivittäminen Open %s Folder Avaa %s kansio You need to specify one %s file to import from. A file type e.g. OpenSong Sinun tulee määritellä ainakin yksi %s tiedosto tuotavaksi. You need to specify one %s folder to import from. A song format e.g. PowerSong Sinun on määritettävä vähintään yksi %s kansio, josta haluat tuoda tiedostoja. Importing Songs Tuodaan lauluja Welcome to the Duplicate Song Removal Wizard Päällekkäisten laulujen haku Written by Sanat Author Unknown Tekijä tuntematon About Tietoja &Add &Lisää Add group Luo ryhmä Advanced Paikan valinta All Files Kaikki tiedostot Automatic Automaattinen Background Color Taustaväri Bottom Alareunaan Browse... Selaa... Cancel Peruuta CCLI number: CCLI numero: Create a new service. Luo uusi Lista. Confirm Delete Vahvista poisto Continuous Jatkuva Default Oletusarvo Default Color: Taustan väri: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Lista-%d.%m.%Y luotu %H.%M &Delete &Poista Display style: Numeroiden sulut: Duplicate Error Päällekkäisyys virhe &Edit &Muokkaa Empty Field Tyhjä kenttä Error Virhe Export Vienti File Tiedosto File Not Found Tiedostoa ei löydy File %s not found. Please try selecting it individually. Tiedostoa %s ei löydy. Ole hyvä ja yritä valita se erikseen. pt Abbreviated font pointsize unit pt Help Ohjeet h The abbreviated unit for hours h Invalid Folder Selected Singular Valittu tiedostosijainti on virheellinen Invalid File Selected Singular Virheellinen tiedosto on valittu Invalid Files Selected Plural Virheelliset tiedostot on valittu Image Kuvat Import Tuo tiedosta… Layout style: Rivitys: Live Esitys Live Background Error Esityksen taustan virhe Live Toolbar Esityksen-työkalurivi Load Lataa Manufacturer Singular Valmistaja Manufacturers Plural Valmistajat Model Singular Malli Models Plural Mallit m The abbreviated unit for minutes m Middle Keskitetty New Uusi New Service Uusi Lista New Theme Uusi teema Next Track Seuraava kappale No Folder Selected Singular Kansiota ei ole valittu No File Selected Singular Yhtään tiedostoa ei ole valittu No Files Selected Plural Tiedostoja ei ole valittu No Item Selected Singular Tyhjä kenttä No Items Selected Plural Valinta on tyhjä OpenLP is already running. Do you wish to continue? OpenLP on jo käynnissä. Haluatko silti jatkaa? Open service. Avaa Lista. Play Slides in Loop Toista loputtomasti Play Slides to End Toista loppuun Preview Esikatselu Print Service Tulosta Lista Projector Singular Projektori Projectors Plural Projektorit Replace Background Korvaa tausta Replace live background. Korvaa Esityksen tausta. Reset Background Nollaa tausta Reset live background. Palauta Esityksen tausta. s The abbreviated unit for seconds s Save && Preview Tallenna && Esikatsele Search Etsi Search Themes... Search bar place holder text Hae teeman mukaan... You must select an item to delete. Sinun pitää valita poistettava kohta. You must select an item to edit. Siniun pitää valita muokattava kohta. Settings Asetukset Save Service Listan tallentaminen Service Lista Optional &Split &Puolituskohta Split a slide into two only if it does not fit on the screen as one slide. Jos teksti ei mahdu yhdelle dialle, voit lisätä haluamasi jakokohdan. Start %s Käynnistä %s Stop Play Slides in Loop Keskeytä loputon toisto Stop Play Slides to End Keskeytä loppuun asti toistaminen Theme Singular Teema Themes Plural Teema Tools Työkalut Top Yläreunaan Unsupported File Tiedostomuotoa ei tueta. Verse Per Slide Jae per dia Verse Per Line Jae per rivi Version Käännös View Näytä View Mode Näyttötila CCLI song number: CCLI laulun numero: Preview Toolbar Esikatselun työkalurivi OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Taustakuvan korvaaminen ei ole käytettävissä jos WebKit mediasoitinta ei ole otettu käyttöön asetuksista. Songbook Singular Laulukirja Songbooks Plural Laulukirjat OpenLP.core.lib %s and %s Locale list separator: 2 items %s ja %s %s, and %s Locale list separator: end %s, ja %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Lähdön valinnan käyttöliittymä PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentaatiot</strong><br/><br/> Tämä moduuli mahdollistaa presentaatioiden, kuten diaesityksien ja .pdf tiedostojen näyttämisen.<br/><br/> Presentaatiot tarvitsevat avukseen sopivat ohjaimet. Diaesityksiin tarvitaan esimerkiksi joko Power Point tai Libre Office. <br/><br/> Ohjaimia on mahdollista tarkkailla<br/> â€Asetukset†valikon kautta. Presentation name singular Presentaatiot Presentations name plural Presentaatiot Presentations container title Presentaatiot Load a new presentation. Tuo presentaatio. Delete the selected presentation. Poista valittu presentaatio. Preview the selected presentation. Esikatsele valittua presentaatiota. Send the selected presentation live. Lähetä valittu presentaatio Esitykseen. Add the selected presentation to the service. Lisää valittu presentaatio Listaan. PresentationPlugin.MediaItem Select Presentation(s) Valitse Presentaatio(t) Automatic Automaattinen Present using: Esitä käyttäen: File Exists Tiedosto on jo olemassa A presentation with that filename already exists. Tällä nimellä löytyy jo toinen presentaatio. This type of presentation is not supported. Tämän muotoista esitysgrafiikkaa ei tueta. Presentations (%s) Presentaatiot (%s) Missing Presentation Presentaatiota ei löydy The presentation %s is incomplete, please reload. Presentaatio %s on vioittunut, yritä avata tiedostoa uudestaan. The presentation %s no longer exists. Tiedostoa: %s ei enää ole - se on poistettu, siirretty tai uudelleennimetty. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Jokin meni pieleen ja PowerPoint ei toiminut odotetusti. Käynnistä esitys uudelleen, jos tahdot esittää sen. PresentationPlugin.PresentationTab Available Controllers Käytettävissä olevat sovellukset %s (unavailable) %s (ei saatavilla) Allow presentation application to be overridden Salli esityssovelluksen valinta Presentaatioille PDF options PDF asetukset Use given full path for mudraw or ghostscript binary: Määritä polku mudraw tai ghostscript ohjelmaan. (OpenLP käyttää oletuksena sisäänrakennettua) Select mudraw or ghostscript binary. Valitse mudraw tai ghostscript ohjelman sijainti. The program is not ghostscript or mudraw which is required. Ohjelma ei ole ghostscript eikä mudraw, mitä tarvitaan. PowerPoint options PowerPoint:in asetukset Clicking on a selected slide in the slidecontroller advances to next effect. Toista diaesityksen efektit, kuten animaatiot ja siirtymät. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Anna PowerPointin määritellä käytettävät näyttöasetukset (Voi korjata Windows 8:n ja 10:n liityviä PowePoint ongelmia) RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Etähallinta </strong><br/><br/> Tämä moduuli mahdollistaa OpenLP:n etäkäytön<br/> esimerkiksi toiselta koneelta tai Android puhelimella. <br><br> Moduulin avulla on myös mahdollista välittää<br> Esitys verkkoselaimeen sekä käyttää lavanäkymää. Remote name singular Etähallinta Remotes name plural Etähallinta Remote container title Etähallinta Server Config Change Palvelimen asetuksien muuttaminen Server configuration changes will require a restart to take effect. Palvelimen asetusten muutokset vaativat uudelleenkäynnityksen ennen käyttöönottoa. RemotePlugin.Mobile Service Manager Lista Slide Controller Esitys Alerts Huomioviestit Search Etsi Home Koti Refresh Päivitä Blank Pimennä Theme Teema Desktop Työpöytä Show Näytä Prev Edellinen Next Seuraava Text Teksti Show Alert Näytä huomioviesti Go Live Lähetä Esitykseen Add to Service Lisää Listaan Add &amp; Go to Service Lisää &amp;Siirry Listaan No Results Ei tuloksia Options Asetukset Service Lista Slides Esitys Settings Asetukset Remote Etähallinta Stage View Lavanäyttö Live View Esitysnäkymä RemotePlugin.RemoteTab Serve on IP address: IP osoite: Port number: Portti: Server Settings Palvelimen asetukset Remote URL: Etähallinnan osoite: Stage view URL: Lavanäytön osoite: Display stage time in 12h format Näytä aika 12-tunnin muodossa Android App Android sovellus Live view URL: Esitysnäkymän osoite: HTTPS Server HTTPS palvelin Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. SSL sertifikaattia ei löydy. HTTPS palvelinta ei voi käyttää ellei SSL sertifikaattia ole saatavilla. Katso ohjekirjasta lisätietoja. User Authentication Käyttäjän todentaminen User id: Käyttäjän id: Password: Salasana: Show thumbnails of non-text slides in remote and stage view. Näytä pienet kuvat tekstittömistä dioista etähallinnassa ja lavanäkymässä Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Skannaa QR-koodi tai <a href="%s">klikkaa tästä</a> ja asenna Android-sovellus Google Play:stä. SongUsagePlugin &Song Usage Tracking &Laulujen tilastointi &Delete Tracking Data &Poista tilastot Delete song usage data up to a specified date. Poista laulujen tilastotiedot tiettyyn päivään saakka. &Extract Tracking Data Tallenna nimellä Generate a report on song usage. Tee raportti laulujen käytöstä. Toggle Tracking Tilastointi päälle/pois Toggle the tracking of song usage. Laulujen käyttötilastointi päälle / pois. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Laulujen käyttötilastointi</strong><br/><br/> Tämän moduulin avulla voidaan<br/> tilastoida käytettyjä lauluja. SongUsage name singular Laulujen käyttötilastointi SongUsage name plural Laulujen käyttötilastointi SongUsage container title Laulujen käyttötilastointi Song Usage Laulun käyttötilasto Song usage tracking is active. Laulujen käyttötilastointi on päällä. Song usage tracking is inactive. Laulujen käyttötilastointi ei ole päällä. display näyttö printed tulostettu SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Poista laulujen käyttötilastoinnin tiedot Delete Selected Song Usage Events? Poistetaanko laulujen käyttötilastoinnin tiedot? Are you sure you want to delete selected Song Usage data? Oletko varma, että haluat poistaa laulujen käyttötilastoinnin tiedot? Deletion Successful Poisto onnistui Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Valitse päivämäärä, mihin saakka laulujen käyttötilastot poistetaan. Kaikki tallennetut tiedot ennen tätä päivää poistetaan pysyvästi. All requested data has been deleted successfully. Kaikki pyydetyt tiedot on poistettu onnistuneesti. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Käyttötilaston purkaminen Select Date Range Valitse päivämääräväli to - Report Location Raportin sijainti Output File Location Kohdetiedoston sijainti usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Raportin luominen Report %s has been successfully created. Raportti %s on onnistuneesti luotu. Output Path Not Selected Kohdetiedostoa ei ole valittu You have not set a valid output location for your song usage report. Please select an existing path on your computer. Et ole antanut kelvollista sijaintia kohteeksi laulujen käyttötilastolle. Ole hyvä ja valitse olemassaoleva kansio tietokoneestasi. Report Creation Failed Raportin luominen epäonnistui An error occurred while creating the report: %s Tapahtui virhe, kun luotiin raporttia: %s SongsPlugin &Song &Laulut Import songs using the import wizard. Tuo lauluja käyttäen tuonnin ohjattua toimintoa. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Laulut</strong><br/><br/> Tämä moduuli mahdollistaa laulujen<br/> näyttämisen ja hallinnoinnin. &Re-index Songs &Uudelleen-indeksoi laulut Re-index the songs database to improve searching and ordering. Laulujen uudelleen-indeksointi parantaa tietokannan nopeutta etsimisessä ja järjestämisessä. Reindexing songs... Laulutietokantaa järjestellään… Arabic (CP-1256) Arabialainen (CP-1256) Baltic (CP-1257) Balttia (CP-1257) Central European (CP-1250) Keski-Eurooppa (CP-1250) Cyrillic (CP-1251) Kyrillinen (CP-1251) Greek (CP-1253) Kreikka (CP-1253) Hebrew (CP-1255) Heprea (CP-1255) Japanese (CP-932) Japani (CP-932) Korean (CP-949) Korea (CP-949) Simplified Chinese (CP-936) Kiina Simplified (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Kiina Traditional (CP-950) Turkish (CP-1254) Turkki (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Läntinen Eurooppa (CP-1252) Character Encoding Merkistö The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Koodisivuasetus määrittelee tekstille oikean merkistöesityksen. Yleensä esivalittu merkistö on varsin toimiva valinta. Please choose the character encoding. The encoding is responsible for the correct character representation. Ole hyvä ja valitse merkistön enkoodaus. Enkoodaus määrittelee tekstille oikean merkistöesityksen. Song name singular Laulut Songs name plural Laulut Songs container title Laulut Exports songs using the export wizard. Vie lauluja käyttäen tuonnin ohjattua toimintoa. Add a new song. Lisää uusi laulu. Edit the selected song. Muokkaa valittua laulua. Delete the selected song. Poista valittu laulu. Preview the selected song. Esikatsele valittua laulua. Send the selected song live. Lähetä valittu laulu Esitykseen. Add the selected song to the service. Lisää valittu laulu Listaan. Reindexing songs Uudelleenindeksoidaan lauluja CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Tuo laulut CCLI SongSelect Listatiedostosta. Find &Duplicate Songs &Päällekkäisten laulujen haku Find and remove duplicate songs in the song database. Hae ja poista päällekkäisiä lauluja. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Sanat Music Author who wrote the music of a song Sävellys Words and Music Author who wrote both lyrics and music of a song Sanat ja Sävellys Translation Author who translated the song Käännös SongsPlugin.AuthorsForm Author Maintenance Tekijöiden ylläpito Display name: Näytön nimi: First name: Etunimi: Last name: Sukunimi: You need to type in the first name of the author. Sinun pitää syöttää tekijän etunimi. You need to type in the last name of the author. Sinun pitää syöttää tekijän sukunimi. You have not set a display name for the author, combine the first and last names? Et ole asettanut näyttönimeä tekijälle, yhdistetäänkö etu- ja sukunimet? SongsPlugin.CCLIFileImport The file does not have a valid extension. Tiedostolla ei ole kelvollista päätettä. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Virheellinen DreamBeam laulutiedosto. DreamSong tagi puuttuu. SongsPlugin.EasyWorshipSongImport Administered by %s Ylläpitäjä %s "%s" could not be imported. %s "%s" ei voi tuoda. %s Unexpected data formatting. Odottamaton tiedostomuoto. No song text found. Laulun sanoja ei löydy. [above are Song Tags with notes imported from EasyWorship] [yllä on laulun tagit muistiinpanoineen, jotka on tuotu EasyWorshipistä] This file does not exist. Tätä tiedostoa ei ole olemassa. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Tiedostoa "Songs.MB" ei löydetty. Varmista, että se on tallennettuna samaan kansioon kuin â€Songs.DB†tiedosto. This file is not a valid EasyWorship database. Tämä tiedosto ei ole kelvollinen EasyWorship tietokanta. Could not retrieve encoding. Enkoodattua sisältöä ei voida vastaanottaa. SongsPlugin.EditBibleForm Meta Data Tiedot - Kieli Custom Book Names Kirjojen nimet SongsPlugin.EditSongForm Song Editor Laulun muokkaus &Title: &Nimi: Alt&ernate title: &Vaihtoehtoinen nimi: &Lyrics: &Sanat: &Verse order: &Säkeiden järjestys: Ed&it All Muokkaa &kaikkia Title && Lyrics Nimi - Sanat &Add to Song &Lisää tekijä &Remove &Poista A&dd to Song &Lisää aihe R&emove &Poista New &Theme Uusi &Teema Copyright Information Tekijäinoikeudet Comments Kommentit Theme, Copyright Info && Comments Teema - Tekijäinoikeudet - Kommentit Add Author Lisää tekijä This author does not exist, do you want to add them? Tätä tekijää ei ole olemassa, haluatko lisätä sen? This author is already in the list. Tämä tekijä on jo luettelossa. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Sinun pitää valita kelvollinen tekijä. Valitse tekijä joko luettelosta tai kirjoita uusi tekijä ja paina "Lisää tekijä lauluun" -painiketta. Add Topic Lisää aihe This topic does not exist, do you want to add it? Tätä aihetta ei ole olemassa, tahdotko sinä lisätä sen? This topic is already in the list. Tämä aihe on jo luettelossa. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. <font size="4">Aihe ei voi olla tyhjä, kirjoita haluttu aihe tai<br> valitse jo olemassa oleva aihe listasta.<font size="4"> You need to type in a song title. Laulun â€Nimi†ei voi olla tyhjä. You need to type in at least one verse. Sinun pitää syöttää ainakin yksi jae. You need to have an author for this song. Sinun pitää määritellä tekijä tälle laululle. Linked Audio Taustamusiikki Add &File(s) Lisää &Tiedosto(t) Add &Media Lisää &Media Remove &All Poista &Kaikki Open File(s) Avaa tiedosto(t) <strong>Warning:</strong> Not all of the verses are in use. <strong>Varoitus:</strong> Puuttuvia säkeitä ei voida näyttää jos niitä ei lisätä. <strong>Warning:</strong> You have not entered a verse order. <strong>Huom:</strong> Voit halutessasi muuttaa säkeiden järjestystä kirjaamalla lyhenteet kenttään. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Ei löydy vastinetta jakeelle "%(invalid)". Kelvolliset jaeviitteet ovat %(valid) Ole hyvä ja syötä jaeviitteet välilyönnein erotettuina. Invalid Verse Order Säkeiden järjestys on virheellinen &Edit Author Type &Muokkaa tekijän tyyppiä Edit Author Type Muokkaa tekijän tyyppiä Choose type for this author Valitse tyyppi tällä tekijälle There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Ei löydy vastinetta jakeille "%(invalid)s". Kelvollisia jaeviitteitä ovat %(valid)s Ole hyvä ja syötä jaeviitteet välilyönnein erotettuina. &Manage Authors, Topics, Songbooks &Muokkaa Tekijöitä, Aiheita ja Laulukirjoja Add &to Song Lisää &Lauluun Re&move &Poista Authors, Topics && Songbooks Tekijät - Aiheet - Laulukirjat Add Songbook Lisää Laulukirja This Songbook does not exist, do you want to add it? Laulukirjaa ei ole olemassa, haluatko luoda sen? This Songbook is already in the list. Laulukirja on jo listassa You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Et ole valinnut kelvollista laulukirjaa. Valitse laulukirja listasta tai lisää uusi laulukirja painamalla â€Lisää lauluun†painiketta. SongsPlugin.EditVerseForm Edit Verse Sanojen muokkaus &Verse type: &Säkeen tyyppi: &Insert &Lisää Split a slide into two by inserting a verse splitter. Jaa dia kahteen osaan lisäämällä jakeen jakaja. SongsPlugin.ExportWizardForm Song Export Wizard Laulujen viennin ohjattu toiminto Select Songs Laulujen valinta Check the songs you want to export. Valitse laulut, jotka haluat tallentaa. Uncheck All Poista valinnat Check All Valitse kaikki Select Directory Valitse tiedostosijainti Directory: Tiedostosijainti: Exporting Tallennetaan... Please wait while your songs are exported. Lauluja tallennetaan, ole hyvä ja odota hetki. You need to add at least one Song to export. Sinun pitää lisätä ainakin yksi laulu vietäväksi. No Save Location specified Sijaintia tallennukselle ei ole määritelty Starting export... Aloitetaan vienti... You need to specify a directory. Sinun täytyy määritellä tiedostosijainti. Select Destination Folder Valitse tiedostosijainti. Select the directory where you want the songs to be saved. Valitse tiedostosijainti, jonne haluat tallentaa laulut. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. <font size="4">Tämä toiminto auttaa sinua tallentamaan<br> laulusi <strong>OpenLyrics</strong> muotoon. <br><br>Näin OpenLyrics tiedostomuotoa tukevat <br> sovellukset pystyvät käyttämään laulujasi.<br><br> Paina "Seuraava" aloittaaksesi</font> SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Virheellinen Foilpresenter -laulutiedosto. Jakeita ei löydy. SongsPlugin.GeneralTab Enable search as you type Etsi jo kirjoitettaessa SongsPlugin.ImportWizardForm Select Document/Presentation Files Valitse asiakirja/esitysgrafiikka tiedostot Song Import Wizard Laulujen tuonti This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. <font size="4">Tämä toiminto auttaa sinua tuomaan ohjelmaan lauluja erilaisista tiedostoista. <br><br> Paina â€Seuraava†aloittaaksesi.</font> Generic Document/Presentation Geneerinen asiakirja/esitysgrafiikka Add Files... Lisää tiedostoja... Remove File(s) Poista tiedosto(ja) Please wait while your songs are imported. Ole hyvä ja odota, kunnes laulut on tuotu. Words Of Worship Song Files Words Of Worship -laulutiedostot Songs Of Fellowship Song Files Songs Of Fellowship -laulutiedostot SongBeamer Files SongBeamer -laulutiedostot SongShow Plus Song Files SongShow Plus -laulutiedostot Foilpresenter Song Files Foilpresenter -laulutiedostot Copy Kopioi Save to File Tallenna tiedostoksi The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship tuonti on pois käytöstä, koska OpenLP ei havaitse OpenOffice tai LibreOffice -ohjelmisto asennettuna. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Geneerinen asiakirjan/esitysgrafiikan tuonti on poissa käytöstä, koska OpenLP ei havaitse asennettua OpenOffice tai LiberOffice -ohjelmistoa. OpenLyrics Files OpenLyrics tiedostot CCLI SongSelect Files CCLI SongSelect tiedostot EasySlides XML File EasySlides XML-tiedosto EasyWorship Song Database EasyWorship tietokanta DreamBeam Song Files DreamBeam laulutiedostot You need to specify a valid PowerSong 1.0 database folder. Annetun tiedostosijainnin pitää sisältää toimiva PowerSong 1.0 tietokanta. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Ensiksi muunna ZionWorx tietokanta CSV-tekstiksi niin kuin on selitetty <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Käyttöohjeessa</a>. SundayPlus Song Files SundayPlus laulutiedostot This importer has been disabled. Tämä tuontitoiminto on estetty. MediaShout Database MediaShout tietokanta The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout tuonti on tuettu ainoastaan Windowsissa. Se on estetty, koska tarvittavaa Python-moduulia ei ole. Jos tahdot käyttää tätä tuontia, sinun pitää asentaa "pyodbc" moduuli. SongPro Text Files SongPro tekstitiedostot SongPro (Export File) SongPro (vientitiedosto) In SongPro, export your songs using the File -> Export menu SongProssa, vie ensin laulut käyttäen File->Export valikkoa. EasyWorship Service File EasyWorship Lista WorshipCenter Pro Song Files WorshipCenter Pro laulutiedostot The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Pro tuonti on tuettu ainoastaan Windowsissa. Se on estetty, koska tarvittavaa Python-moduulia ei ole. Jos tahdot käyttää tätä tuontia, sinun pitää asentaa "pyodbc" moduuli. PowerPraise Song Files PowerPraise laulutiedostot PresentationManager Song Files PresentationManager laulutiedostot ProPresenter 4 Song Files ProPresenter 4 laulutiedostot Worship Assistant Files Worship Assistant tiedostot Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Worship Assistantista tuo tietokantasi CSV tiedostona. OpenLyrics or OpenLP 2 Exported Song OpenLyrics tai OpenLP 2:sta tuotu laulu OpenLP 2 Databases OpenLP 2:n tietokannat LyriX Files LyriX Tiedostot LyriX (Exported TXT-files) Viety LyriX tiedosto (.TXT) VideoPsalm Files VideoPsalm:in laulutiedosto VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s VideoPsalm laulukirjat sijaitsevat normaalisti kansiossa %s SongsPlugin.LyrixImport Error: %s Virhe: %s SongsPlugin.MediaFilesForm Select Media File(s) Valitse mediatiedosto(t) Select one or more audio files from the list below, and click OK to import them into this song. Valitse yksi tai useampia äänitiedosto alla olevasta luettelosta ja paina OK liittääksesi ne tähän lauluun. SongsPlugin.MediaItem Titles Nimi Lyrics Sanat CCLI License: CCLI Lisenssi Entire Song Nimi tai sanat Maintain the lists of authors, topics and books. Ylläpidä luetteloa tekijöistä, kappaleista ja laulukirjoista. copy For song cloning kopioi Search Titles... Hae nimellä... Search Entire Song... Hae nimellä tai sanoilla... Search Lyrics... Hae sanoilla... Search Authors... Hae tekijöitä... Are you sure you want to delete the "%d" selected song(s)? Haluatko varmasti poistaa valitut laulut? Valittuna poistettavaksi on: %d laulu/laulua Search Songbooks... Hae Laulukirjan mukaan... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Ei voi avata MediaShout tietokantaa. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Valittu tiedosto ei ole yhteensopiva OpenLP 2:n tietokanta SongsPlugin.OpenLyricsExport Exporting "%s"... Tallennetaan "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Virheellinen OpenSong laulutiedosto. Laulun tunniste puuttuu. SongsPlugin.PowerSongImport No songs to import. Ei lauluja tuotavaksi. Verses not found. Missing "PART" header. Jakeita ei löytynyt. Puuttuva "PART" tunniste. No %s files found. Ei %s tiedostoja löytynyt. Invalid %s file. Unexpected byte value. Virheellinen %s tiedosto. Odottamaton tavun arvo. Invalid %s file. Missing "TITLE" header. Virheellinen %s tiedosto. "TITLE" tunniste puuttuu. Invalid %s file. Missing "COPYRIGHTLINE" header. Virheellinen %s tiedosto. Puuttuva "COPYRIGHTLINE" tunniste. SongsPlugin.SongBookForm &Name: &Nimi &Publisher: &Kustantaja You need to type in a name for the book. Sinun pitää antaa kirjalle nimi. Songbook Maintenance Laulukirjan ylläpito SongsPlugin.SongExportForm Your song export failed. Laulun vienti epäonnistui. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Valmista! Voit avata tiedoston toisessa asennuksessa <strong>OpenLyrics</strong> tuonnin avulla. Your song export failed because this error occurred: %s Laulujen vienti epäonnistui, koska tämä virhe tapahtui: %s SongsPlugin.SongImport copyright tekijäinoikeudet The following songs could not be imported: Seuraavia lauluja ei voi tuoda: Cannot access OpenOffice or LibreOffice OpenOffice tai LibreOffice -ohjelmistoa ei löydy. Unable to open file Ei voida avata tiedostoa File not found Tiedostoa ei löydy SongsPlugin.SongMaintenanceForm Could not add your author. Tekijää ei voida lisätä. This author already exists. Tämä tekijä on jo olemassa. Could not add your topic. Aihetta ei voida lisätä. This topic already exists. Aihe on jo olemassa. Could not add your book. Kirjaa ei voida lisätä. This book already exists. Tämä kirja on jo olemassa. Could not save your changes. Muutoksia ei voida tallentaa. Could not save your modified author, because the author already exists. Ei voida tallentaa muokattua tekijää, koska tekijä on jo olemassa. Could not save your modified topic, because it already exists. Ei voida tallentaa muokattua aihetta, koska se on jo olemassa. Delete Author Poista tekijä Are you sure you want to delete the selected author? Oletko varma, että haluat poistaa valitun tekijän? This author cannot be deleted, they are currently assigned to at least one song. Tätä tekijää ei voida poistaa, koska sitä käytetään ainakin yhdessä laulussa. Delete Topic Poista aihe Are you sure you want to delete the selected topic? Oletko varma, että haluat poistaa valitun aiheen? This topic cannot be deleted, it is currently assigned to at least one song. Tätä aihetta ei voi poistaa, koska se on käytössä ainakin yhdessä laulussa. Delete Book Poista kirja Are you sure you want to delete the selected book? Haluatko varmasti poistaa valitun kirjan? This book cannot be deleted, it is currently assigned to at least one song. Tätä kirjaa ei voi poistaa, koska sitä käytetään ainakin yhdessä laulussa. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Tekijä %s on jo olemassa. Tahdotko muuttaa ne laulut, jotka on tehnyt %s käyttämään tekijänä %s. The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Aihe %s on jo olemassa. Tahdotko muuttaa laulut aiheella %s käyttämään olemassa olevaa aihetta %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Kirja %s on jo olemassa. Tahdotko muuttaa ne laulut, jotka kuuluvat kirjaan %s kuulumaan kirjaan %s. SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect tuonti <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Huomaa:</strong> Internet yhteys vaaditaan, jotta voidaan tuoda lauluja CCLI SongSelectistä. Username: Käyttäjätunnus: Password: Salasana: Save username and password Tallenna käyttäjätunnus ja salasana Login Kirjautuminen Search Text: Hae tekstiä: Search Etsi Found %s song(s) Löytyi %s laulu(a) Logout Kirjaudu ulos View Näytä Title: Nimi: Author(s): Tekijä(t): Copyright: Tekijäinoikeudet: CCLI Number: CCLI numero: Lyrics: Sanoitus: Back Takaisin Import Tuo tiedosta… More than 1000 results Yli 1000 hakuosumaa Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Haku palautti enemmän kuin 1000 osumaa, joten se pysäytettiin. Ole hyvä ja tarkenna hakua saadaksesi tarkemmat tulokset. Logging out... Kirjaudutaan ulos... Save Username and Password Tallenna käyttäjänimi ja salasana WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. VAROITUS: Käyttäjätunnuksen ja salasanan tallentaminen on TURVATONTA, salasana tallennetaan tekstinä. Klikkaa Kyllä tallentaaksesi salasana ja Ei peruaksesi sen. Error Logging In Virhe kirjautuessa There was a problem logging in, perhaps your username or password is incorrect? Kirjautumisessa oli ongelmia, ehkä käyttäjätunnus tai salasana on virheellinen? Song Imported Laulu on tuotu Incomplete song Keskeneräinen laulu This song is missing some information, like the lyrics, and cannot be imported. Tästä laulusta puuttuu osa tiedoista, kuten sanoitus ja sitä ei voi täten tuoda. Your song has been imported, would you like to import more songs? Laulusi on tuotu, haluaisitko tuoda lisää lauluja? Stop Lopeta SongsPlugin.SongsTab Songs Mode Laulut Display verses on live tool bar Näytä jakeet Esityksen-työkalurivillä Update service from song edit Päivitä Lista laulun muokkauksesta Import missing songs from service files Tuo puuttuvat laulut Listatiedostoista Display songbook in footer Näytä laulukirja alatunnisteessa Display "%s" symbol before copyright info Näytä "%s" symboli ennen tekijäinoikeusinfoa. SongsPlugin.TopicsForm Topic Maintenance Aiheiden ylläpito Topic name: Aiheen nimi: You need to type in a topic name. Sinun pitää syöttää nimi aiheelle. SongsPlugin.VerseType Verse Säe Chorus Kertosäe Bridge Bridge (C-osa) Pre-Chorus Esi-kertosäe Intro Intro Ending Lopetus Other Muu SongsPlugin.VideoPsalmImport Error: %s Virhe: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Virheellinen Words of Worship tiedosto. Puuttuva "%s" otsikko.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Virheellinen Words of Worship tiedosto. Puuttuva "%s" merkkijono.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Virhe luettaessa CSV-tiedostoa. Line %d: %s Rivi %d. %s Decoding error: %s Dekoodauksen virhe: %s File not valid WorshipAssistant CSV format. Tiedosto ei ole kelvollista WorshipAssistant CSV muotoa. Record %d Tietue %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Yhdistäminen WorshipCenter Pro tietokantaan ei onnistu. SongsPlugin.ZionWorxImport Error reading CSV file. Virhe luettaessa CSV-tiedostoa. File not valid ZionWorx CSV format. Tiedosto ei ole kelvollista ZionWorx CSV -muotoa. Line %d: %s Rivi %d. %s Decoding error: %s Dekoodauksen virhe: %s Record %d Tietue %d Wizard Wizard Avustaja This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Tämä avustaja auttaa päällekkäisten laulujen löytämisessä. Avustaja hakee päällekkäisiä lauluja, voit itse valita poistatko ne vai et. Avustaja ei siis poista lauluja ilman hyväksyntääsi. Searching for duplicate songs. Etsitään päällekkäisiä lauluja... Please wait while your songs database is analyzed. Ole hyvä ja odota, kunnes laulutietokanta on analysoitu. Here you can decide which songs to remove and which ones to keep. Täällä voit päättää, mitkä laulut poistetaan ja mitkä säilytetään. Review duplicate songs (%s/%s) Päällekkäisten laulujen tarkastelu (%s/%s) Information Tietoa No duplicate songs have been found in the database. Päällekkäisiä lauluja ei löytynyt. OpenLP-2.4/resources/i18n/nb.ts0000644000175000017500000154260212657640340015323 0ustar raoulraoul AlertsPlugin &Alert &Melding Show an alert message. Vis en melding. Alert name singular Melding Alerts name plural Meldinger Alerts container title Meldinger <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Meldinger</strong><br />Dette programtillegget kontrollerer visningen av varsel- og opplysningsmeldinger. AlertsPlugin.AlertForm Alert Message Meldinger Alert &text: Meldings&tekst: &New &Ny &Save &Lagre Displ&ay Vi&s Display && Cl&ose Vis && L&ukk New Alert Ny melding &Parameter: &Parameter: No Parameter Found Ingen parametre funnet You have not entered a parameter to be replaced. Do you want to continue anyway? Du har ikke angitt et parameter i feltet. Vil du fortsette? No Placeholder Found Ingen plassholder funnet The alert text does not contain '<>'. Do you want to continue anyway? Meldingsteksten inneholder ikke '<>'. Vil du fortsette likevel? You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke spesifisert noen tekst for meldingen. Vennligst skriv inn tekst før du klikker Ny. AlertsPlugin.AlertsManager Alert message created and displayed. Meldingen er laget og vist. AlertsPlugin.AlertsTab Font Skrifttype Font name: Skriftnavn: Font color: Skriftfarge: Background color: Bakgrunnsfarge: Font size: Skriftstørrelse: Alert timeout: Meldingsvarighet: BiblesPlugin &Bible &Bibel Bible name singular Bibel Bibles name plural Bibler Bibles container title Bibler No Book Found Ingen bok funnet No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen samsvarende bok ble funnet i denne Bibelen. Sjekk at du har stavet navnet pÃ¥ boken riktig. Import a Bible. Importer en ny bibel. Add a new Bible. Legg til en ny bibel. Edit the selected Bible. Rediger valgte bibel. Delete the selected Bible. Slett valgte bibel. Preview the selected Bible. ForhÃ¥ndsvis valgte bibel. Send the selected Bible live. Fremvis valgte bibel. Add the selected Bible to the service. Legg valgte bibelsitat til møteprogrammet. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibeltillegg</strong><br />Dette tillegget gjør det mulig Ã¥ vise bibelsitat fra ulike kilder under en gudstjeneste/møte. &Upgrade older Bibles &Oppgraderer eldre bibler Upgrade the Bible databases to the latest format. Oppgrader bibeldatabasen til nyeste format. Genesis 1. Mosebok Exodus 2. Mosebok Leviticus 3. Mosebok Numbers 4. Mosebok Deuteronomy 5. Mosebok Joshua Josva Judges Dommerne Ruth Rut 1 Samuel 1. Samuel 2 Samuel 2. Samuel 1 Kings 1. Kongebok 2 Kings 2. Kongebok 1 Chronicles 1. Krønikebok 2 Chronicles 2. Krønikebok Ezra Esra Nehemiah Nehemja Esther Ester Job Job Psalms Salmene Proverbs OrdsprÃ¥kene Ecclesiastes Forkynneren Song of Solomon Høysangen Isaiah Jesaja Jeremiah Jeremia Lamentations Klagesangene Ezekiel Esekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadja Jonah Jona Micah Mika Nahum Nahum Habakkuk Habakkuk Zephaniah Sefanja Haggai Haggai Zechariah Sakarja Malachi Malaki Matthew Matteus Mark Markus Luke Lukas John Johannes Acts Apostlenes gjerninger Romans Romerne 1 Corinthians 1. Korinterne 2 Corinthians 2. Korinterne Galatians Galaterne Ephesians Efeserne Philippians Filipperne Colossians Kolosserne 1 Thessalonians 1. Tessalonikerne 2 Thessalonians 2. Tessalonikerne 1 Timothy 1. Timoteus 2 Timothy 2. Timoteus Titus Titus Philemon Filemon Hebrews Hebreerne James Jakob 1 Peter 1. Peter 2 Peter 2. Peter 1 John 1. Johannes 2 John 2. Johannes 3 John 3. Johannes Jude Judas Revelation Ã…penbaringen Judith Judit Wisdom Visdomsboken Tobit Tobit Sirach Sirak Baruch Baruk 1 Maccabees 1. Makkabeerne 2 Maccabees 2. Makkabeerne 3 Maccabees 3. Makkabeerne 4 Maccabees 4. Makkabeerne Rest of Daniel Tillegg til Daniel Rest of Esther Tillegg til Ester Prayer of Manasses Manasses bønn Letter of Jeremiah Jeremias brev Prayer of Azariah Azarias bønn Susanna Susanna Bel Bel 1 Esdras 3. Esra 2 Esdras 4. Esra : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 vers - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 til , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 og end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse slutt BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Du mÃ¥ angi et navn pÃ¥ bibeloversettelsen. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du mÃ¥ angi rettighetene for Bibelen. Offentlig eiendom ("Public Domain") bibler mÃ¥ markeres som dette. Bible Exists Bibelen finnes allerede This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibelen finnes allerede. Vennligst importer en annen bibel eller slett den eksisterende. You need to specify a book name for "%s". Du mÃ¥ angi et boknavn for "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Boknavnet "%s" er ikke riktig. Tall kan bare brukes først i navnet og mÃ¥ etterfølges av en eller flere ikke-numeriske tegn. Duplicate Book Name Dublett boknavn The Book Name "%s" has been entered more than once. Boknavnet "%s" har blitt angitt flere ganger. BiblesPlugin.BibleManager Scripture Reference Error Feil i bibelreferanse Web Bible cannot be used Nettbibel kan ikke brukes Text Search is not available with Web Bibles. Tekstsøk er ikke tilgjengelig med nettbibler. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du har ikke angitt et søkeord. Du kan skille ulike søkeord med mellomrom for Ã¥ søke etter alle søkeordene dine, og du kan skille dem med komma for Ã¥ søke etter ett av dem. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det er ingen bibler installert. Vennligst bruk importveiviseren for Ã¥ installere en eller flere bibler. No Bibles Available Ingen bibler tilgjengelig Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Din skriftstedhenvisning er enten ikke støttet av OpenLP eller er ugyldig. Vennligst sørg for at din referanse oppfyller ett av følgende mønstre eller se i manualen: Bok kapittel Bok kapittel%(range)sKapittel Bok kapittel%(verse)sVers%(range)sVers Bok kapittel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Bok kapittel%(verse)sVers%(range)sVers%(list)sKapittel%(verse)sVers%(range)sVerse Bok kapittel%(verse)sVers%(range)sKapittel%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Versvisning Only show new chapter numbers Vis bare nye kapittelnumre Bible theme: Bibeltema: No Brackets Ingen klammer ( And ) ( Og ) { And } { Og } [ And ] [ Og ] Note: Changes do not affect verses already in the service. Merk: Endringer pÃ¥virker ikke vers som allerede finnes i møteprogrammet. Display second Bible verses Vis alternative bibelvers Custom Scripture References Egendefinerte skriftstedhenvisninger Verse Separator: Vers-skilletegn: Range Separator: Utvalgs-skilletegn: List Separator: Listeskillere: End Mark: Sluttmerker: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Flere alternative versskilletegn kan defineres. De mÃ¥ skilles med en loddrett strek. "|" Vennligst tøm denne redigeringslinjen for Ã¥ bruke standardverdien. English Norsk (bokmÃ¥l) Default Bible Language Standard bibelsprÃ¥k Book name language in search field, search results and on display: Boknavn sprÃ¥k i søkefelt, søkeresultat og pÃ¥ skjerm: Bible Language BibelsprÃ¥k Application Language ProgramsprÃ¥k Show verse numbers Vis versnumrene BiblesPlugin.BookNameDialog Select Book Name Velg bok Current name: Gjeldende navn: Corresponding name: Tilsvarende navn: Show Books From Vis bøker fra Old Testament Det gamle testamente New Testament Det nye testamente Apocrypha Apokryfene The following book name cannot be matched up internally. Please select the corresponding name from the list. Følgende boknavn stemmer ikke med interne navn. Vennligst velg et tilhørende navn fra listen. BiblesPlugin.BookNameForm You need to select a book. Du mÃ¥ velge bok. BiblesPlugin.CSVBible Importing books... %s Importerer bøker... %s Importing verses... done. Importerer vers... utført. BiblesPlugin.EditBibleForm Bible Editor Bibelredigerer License Details Lisensdetaljer Version name: Versjonnavn: Copyright: Copyright: Permissions: Rettigheter: Default Bible Language Standard bibelsprÃ¥k Book name language in search field, search results and on display: Boknavn sprÃ¥k i søkefelt, søkeresultat og pÃ¥ skjerm: Global Settings Globale innstillinger Bible Language BibelsprÃ¥k Application Language ProgramsprÃ¥k English Norsk (bokmÃ¥l) This is a Web Download Bible. It is not possible to customize the Book Names. Dette er en nettbibel. Det er ikke mulig Ã¥ tilpasse boknavn. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Hvis du vil bruke tilpassede boknavn, mÃ¥ "BibelsprÃ¥k" velges i fliken Metadata, eller hvis "Globale innstillinger" er valgt, pÃ¥ Bibel-siden i OpenLP Innstillinger. BiblesPlugin.HTTPBible Registering Bible and loading books... Registrerer bibel og laster bøker... Registering Language... Registrerer sprÃ¥k... Importing %s... Importing <book name>... Importerer %s... Download Error Nedlastingsfeil There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det oppstod et problem ved nedlastingen av de valgte versene. Vennligst sjekk internettilkoblingen. Dersom denne feilen vedvarer, vær vennlig Ã¥ rapportere feilen. Parse Error Analysefeil There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det oppstod et problem ved uthenting av de valgte versene. Dersom denne feilen vedvarer, vær vennlig Ã¥ rapportere feilen. BiblesPlugin.ImportWizardForm Bible Import Wizard Verktøy for bibelimport This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Denne veiviseren vil hjelpe deg Ã¥ importere bibler fra en rekke ulike formater. For Ã¥ starte importen klikk pÃ¥ "Neste-knappen" og velg sÃ¥ format og sted Ã¥ importere fra. Web Download Nettnedlastning Location: Plassering/kilde: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bibel: Download Options Nedlastingsalternativer Server: Server: Username: Brukernavn: Password: Passord: Proxy Server (Optional) Proxyserver (valgfritt) License Details Lisensdetaljer Set up the Bible's license details. Sett opp Bibelens lisensdetaljer. Version name: Versjonnavn: Copyright: Copyright: Please wait while your Bible is imported. Vennligst vent mens bibelen blir importert. You need to specify a file with books of the Bible to use in the import. Du mÃ¥ angi en fil som inneholder bøkene i bibelen du vil importere. You need to specify a file of Bible verses to import. Du mÃ¥ angi en fil med bibelvers som skal importeres. You need to specify a version name for your Bible. Du mÃ¥ angi et navn pÃ¥ bibeloversettelsen. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du mÃ¥ angi rettighetene for Bibelen. Offentlig eiendom ("Public Domain") bibler mÃ¥ markeres som dette. Bible Exists Bibelen finnes allerede This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibelen finnes allerede. Vennligst importer en annen bibel eller slett den eksisterende. Your Bible import failed. Bibelimport mislyktes. CSV File CSV-fil Bibleserver Bibelserver Permissions: Rettigheter: Bible file: Bibelfil: Books file: Bokfil: Verses file: Versfil: Registering Bible... Registrerer Bibel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrert bibel. Vær oppmerksom pÃ¥ at versene blir nedlastet pÃ¥ din forespørsel. Internettilkobling er pÃ¥krevd. Click to download bible list Klikk for Ã¥ laste ned bibelliste Download bible list Laste ned bibelliste Error during download Feil under nedlasting An error occurred while downloading the list of bibles from %s. En feil oppstod under nedlasting av listen over bibler fra %s. BiblesPlugin.LanguageDialog Select Language Velg sprÃ¥k OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP er ikke i stand til Ã¥ fastslÃ¥ sprÃ¥ket i oversettelsen av denne bibelen. Velg sprÃ¥k fra listen under. Language: SprÃ¥k: BiblesPlugin.LanguageForm You need to choose a language. Du mÃ¥ velge sprÃ¥k. BiblesPlugin.MediaItem Quick Hurtig Find: Søk: Book: Bok: Chapter: Kapittel: Verse: Vers: From: Fra: To: Til: Text Search Tekstsøk Second: Alternativ: Scripture Reference Bibelreferanse Toggle to keep or clear the previous results. Velg for Ã¥ beholde eller slette tidligere resultat. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Du kan ikke kombinere enkle og doble søkeresultater for bibelvers. Ønsker du Ã¥ slette dine søkeresultater og starte et nytt søk? Bible not fully loaded. Bibelen er ikke fullstendig lastet. Information Informasjon The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den andre bibelen inneholder ikke alle versene i hovedbibelen. Bare vers funnet i begge vil bli vist. %d vers er ikke med i resultatet. Search Scripture Reference... Søk skriftsted... Search Text... Søk tekst... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Er du sikker pÃ¥ at du vil slette "%s" bibel fra OpenLP? Du mÃ¥ importere denne bibelen pÃ¥ nytt for Ã¥ bruke den igjen. Advanced Avansert BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ugyldig filtype for valgte bibel. OpenSong-bibler kan være komprimert. Du mÃ¥ dekomprimere dem før import. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Feil bibelfiltype lagt inn. Dette ser ut som en Zefania XML-bibel, vennligst bruk Zefania import alternativet. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Fjerner ubrukte tagger (dette kan ta noen minutter) ... Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Velg en backupmappe Bible Upgrade Wizard Oppgraderingsveiviser This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Denne veiviseren hjelper deg til Ã¥ oppgradere dine eksisterende bibler fra en tidligere versjon av OpenLP 2. Klikk neste nedenfor for Ã¥ starte oppgraderingen. Select Backup Directory Velg backupmappe Please select a backup directory for your Bibles Vennligst velg en backupmappe for dine bibler Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Tidligere versjoner av OpenLP 2.0 kan ikke benytte oppgraderte bibler. Dette vil opprette en backup av dine eksisterende bibler slik at du enkelt kan kopiere filene tilbake til OpenLP fillageret dersom du behøver Ã¥ gÃ¥ tilbake til en tidligere versjon av programmet. Instruksjoner pÃ¥ hvordan du kan gjenopprette filene kan finnes i vÃ¥r <a href="http://wiki.openlp.org/faq">Ofte Spurte SpørsmÃ¥l (FAQ)</a>. Please select a backup location for your Bibles. Velg backupstasjon for dine bibler. Backup Directory: Backupkatalog: There is no need to backup my Bibles Det er ikke nødvendig Ã¥ sikkerhetskopiere mine bibler Select Bibles Velg bibel Please select the Bibles to upgrade Velg bibel som skal oppgraderes Upgrading Oppgraderer Please wait while your Bibles are upgraded. Vennligst vent mens dine bibler blir oppgradert. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Backup mislyktes. For Ã¥ ta backup av dine filer mÃ¥ du ha tillatelse til Ã¥ skrive til den angitte mappen. Upgrading Bible %s of %s: "%s" Failed Bibeloppgradering %s av %s: "%s" mislyktes Upgrading Bible %s of %s: "%s" Upgrading ... Oppgraderer bibel %s av %s: "%s" Oppgraderer ... Download Error Nedlastingsfeil To upgrade your Web Bibles an Internet connection is required. For Ã¥ oppgradere din internettbibel er tilkobling til internett pÃ¥krevd. Upgrading Bible %s of %s: "%s" Upgrading %s ... Oppgraderer bibel %s av %s: "%s" Oppgraderer %s... Upgrading Bible %s of %s: "%s" Complete Oppgraderer bibel %s av %s: "%s" Utført , %s failed , %s feilet Upgrading Bible(s): %s successful%s Oppgraderer bibel(er): %s vellykket%s Upgrade failed. Oppgraderingen mislyktes. You need to specify a backup directory for your Bibles. Du mÃ¥ spesifisere en mappe for backup av dine bibler. Starting upgrade... Starter oppgradering... There are no Bibles that need to be upgraded. Det er ingen bibler som trenger oppgradering. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Oppgradering bibel(bibler): %(success)d vellykket%(failed_text)s Vær oppmerksom pÃ¥ at versene fra nettbibler blir nedlastet pÃ¥ din forespørsel. Internettilkobling er pÃ¥krevd. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Feil bibelfiltype oppgitt. Zefania-bibler kan være komprimert. Du mÃ¥ dekomprimere dem før import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Egendefinert lysbilde Custom Slides name plural Egendefinerte lysbilder Custom Slides container title Egendefinerte lysbilder Load a new custom slide. Vis et nytt egendefinert lysbilde. Import a custom slide. Importer et egendefinert lysbilde. Add a new custom slide. Legg til et egendefinert lysbilde. Edit the selected custom slide. Rediger valgte lysbilde. Delete the selected custom slide. Slett valgte lysbilde. Preview the selected custom slide. ForhÃ¥ndsvis valgte lysbilde. Send the selected custom slide live. Fremvis valgte lysbilde. Add the selected custom slide to the service. Legg valgte lysbilde til møteprogrammet. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Brukerdefinert lysbilde</strong><br/> Programtillegget for brukerdefinert lysbilde gir en større frihet til Ã¥ lage egne lysbilder som kan vises pÃ¥ samme mÃ¥te som sanger. CustomPlugin.CustomTab Custom Display Tilpasset visning Display footer Vis bunntekst Import missing custom slides from service files Importer manglende egendefinerte lysbilder fra møteprogramfilene CustomPlugin.EditCustomForm Edit Custom Slides Rediger egendefinerte lysbilder &Title: &Tittel: Add a new slide at bottom. Legg til nytt lysbilde nederst. Edit the selected slide. Rediger markert lysbilde. Edit all the slides at once. Rediger alle lysbilder pÃ¥ en gang. Split a slide into two by inserting a slide splitter. Del lysbilde i to ved Ã¥ sette inn en lysbildedeler. The&me: Tem&a: &Credits: &Credits: You need to type in a title. Du mÃ¥ skrive inn en tittel. Ed&it All Red&iger alle Insert Slide Sett inn lysbilde You need to add at least one slide. Du mÃ¥ legge til minst ett lysbilde. CustomPlugin.EditVerseForm Edit Slide Rediger bilde CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Er du sikker pÃ¥ at du vil slette de "%d" valgte egendefinerte bilde(ne)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Bildetillegg</strong><br/>Bildetillegget gir mulighet til visning av bilder.<br />Et av særtrekkene med dette tillegget er muligheten til Ã¥ gruppere flere bilder sammen i møteprogrammet, noe som gjør visning av flere bilder enklere. Programtillegget kan ogsÃ¥ benytte seg av OpenLP's "tidsbestemte løkke-funksjon" til Ã¥ lage en lysbildefremvisning som kjører automatisk. I tillegg kan bilder fra tillegget brukes til Ã¥ overstyre gjeldende temabakgrunn, noe som gir tekstbaserte bilder som sanger det valgte bildet som bakgrunn. Image name singular Bilde Images name plural Bilder Images container title Bilder Load a new image. Last et nytt bilde. Add a new image. Legg til et nytt bilde. Edit the selected image. Rediger valgte bilde. Delete the selected image. Slett valgte bilde. Preview the selected image. ForhÃ¥ndsvis valgte bilde. Send the selected image live. Send valgte bilde til skjerm. Add the selected image to the service. Legg valgte bilde til møteprogrammet. ImagePlugin.AddGroupForm Add group Legg til gruppe Parent group: Mor-gruppe: Group name: Gruppenavn: You need to type in a group name. Du mÃ¥ skrive inn et gruppenavn. Could not add the new group. Kunne ikke legge til den nye gruppen. This group already exists. Denne gruppen finnes allerede. ImagePlugin.ChooseGroupForm Select Image Group Velg bildegruppe Add images to group: Legg bilder til gruppe: No group Ingen gruppe Existing group Eksisterende gruppe New group Ny gruppe ImagePlugin.ExceptionDialog Select Attachment Velg vedlegg ImagePlugin.MediaItem Select Image(s) Velg bilde(r) You must select an image to replace the background with. Du mÃ¥ velge et bilde Ã¥ erstatte bakgrunnen med. Missing Image(s) Bilde(r) mangler The following image(s) no longer exist: %s De(t) følgende bilde(r) finnes ikke lenger: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? De følgende bilde(r) finnes ikke lenger: %s Vil du likevel legge til de andre bildene? There was a problem replacing your background, the image file "%s" no longer exists. Det oppstod et problem ved erstatting av bakgrunnen, bildefilen "%s" finnes ikke lenger. There was no display item to amend. Det var ikke noe visningselement Ã¥ legge til. -- Top-level group -- -- Topp-nivÃ¥ gruppe -- You must select an image or group to delete. Du mÃ¥ velge et bilde eller en gruppe som skal slettes. Remove group Fjern gruppe Are you sure you want to remove "%s" and everything in it? Er du sikker pÃ¥ at du vil fjerne "%s" med alt innhold? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Synlig bakgrunn for bilder med bildeformat annerledes enn skjermen. Media.player Audio Lyd Video Video VLC is an external player which supports a number of different formats. VLC er en ekstern spiller som støtter et antall forskjellige formater. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit er en mediespiller som kjøres i en nettleser. Denne spilleren gjør det mulig Ã¥ gjengi tekst over video. This media player uses your operating system to provide media capabilities. Denne mediespilleren bruker operativsystemet for Ã¥ gi mediefunksjoner. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Mediatillegg</strong><br/>Mediatillegget tilbyr avspilling av lyd og video. Media name singular Media Media name plural Media Media container title Media Load new media. Last ny mediafil. Add new media. Legg til nytt media. Edit the selected media. Rediger valgte media. Delete the selected media. Slett valgte media. Preview the selected media. ForhÃ¥ndsvis valgte media. Send the selected media live. Fremvis valgte media. Add the selected media to the service. Legg valgte media til møteprogram. MediaPlugin.MediaClipSelector Select Media Clip Velg medieklipp Source Kilde Media path: Sti til mediefil: Select drive from list Velg stasjon fra liste Load disc Last inn disk Track Details Spor detaljer Title: Tittel: Audio track: Lydspor: Subtitle track: Undertekst: HH:mm:ss.z HH:mm:ss.z Clip Range Klipplengde Start point: Startsted: Set start point Angi startpunkt Jump to start point GÃ¥ til startpunkt End point: Sluttpunkt: Set end point Angi sluttpunkt Jump to end point GÃ¥ til sluttpunkt MediaPlugin.MediaClipSelectorForm No path was given Ingen sti var angitt Given path does not exists Angitt sti eksisterer ikke An error happened during initialization of VLC player En feil oppstod under oppstart av VLC mediaspiller VLC player failed playing the media VLC mislyktes i avspillingen CD not loaded correctly CD er ikke lagt riktig i The CD was not loaded correctly, please re-load and try again. CD ikke lagt riktig i, prøv igjen. DVD not loaded correctly DVD er ikke lagt riktig i The DVD was not loaded correctly, please re-load and try again. DVD er ikke lagt riktig i, prøv igjen. Set name of mediaclip Navngi medieklipp Name of mediaclip: Navn pÃ¥ medieklipp: Enter a valid name or cancel Angi et gyldig navn eller avbryt Invalid character Ugyldig tegn The name of the mediaclip must not contain the character ":" Navnet pÃ¥ medieklippet kan ikke inneholde tegnet ":" MediaPlugin.MediaItem Select Media Velg media You must select a media file to delete. Du mÃ¥ velge en mediefil som skal slettes. You must select a media file to replace the background with. Du mÃ¥ velge en fil Ã¥ erstatte bakgrunnen med. There was a problem replacing your background, the media file "%s" no longer exists. Det oppstod et problem ved bytting av bakgrunn, filen "%s" finnes ikke lenger. Missing Media File Mediefil mangler The file %s no longer exists. Filen %s finnes ikke lenger. Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) There was no display item to amend. Det var ikke noe visningselement Ã¥ legge til. Unsupported File Denne filtypen støttes ikke Use Player: Bruk mediaspiller: VLC player required VLC mediaspiller er pÃ¥krevd VLC player required for playback of optical devices VLC mediaspiller er nødvendig for avspilling av optiske enheter Load CD/DVD Legg til CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Legg til CD/DVD - støttes bare nÃ¥r VLC er installert og aktivert The optical disc %s is no longer available. Den optiske platen %s er ikke lenger tilgjengelig. Mediaclip already saved Mediaklippet er allerede lagret This mediaclip has already been saved Dette mediaklippet har allerede blitt lagret MediaPlugin.MediaTab Allow media player to be overridden Tillat mediaspiller Ã¥ bli overstyrt Start Live items automatically Start automatisk OPenLP.MainWindow &Projector Manager Behandle &prosjektorinnstillinger OpenLP Image Files Bildefiler Information Informasjon Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bibelformatet er forandret. Du mÃ¥ oppgradere eksisterende bibler. Vil du at OpenLP skal oppgradere nÃ¥? Backup Sikkerhetskopi OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP har blitt oppgradert, vil du opprette en sikkerhetskopi av OpenLPs datamappe? Backup of the data folder failed! Sikkerhetskopieringen mislyktes! A backup of the data folder has been created at %s En sikkerhetskopi av datamappen er opprettet i %s Open Ã…pne OpenLP.AboutForm Credits Medvirkende License Lisens build %s build %s 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; version 2 of the License. Dette programmet er gratis programvare; du kan redistribuere det og/eller modifisere det under vilkÃ¥rene i GNU General Public License, versjon 2, utgitt av Free Software Foundation. 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 below for more details. Dette programmet er distribuert i det hÃ¥p at det vil være nyttig, men UTEN NOEN FORM FOR GARANTI; selv uten underforstÃ¥tte garantier om SALGBARHET eller ANVENDELIGHET FOR ET SPESIELT FORMÃ…L. Se nedenfor for flere detaljer. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP er et gratis presentasjonsprogram for menigheter og forsamlinger. Det kan brukes i kirker og bedehus til Ã¥ vise sangtekster, bibelvers, videoer, bilder og til og med presentasjoner (hvis Impress, PowerPoint eller PowerPoint Viewer er installert) ved hjelp av datamaskin og dataprojektor. Finn ut mer om OpenLP: http://openlp.org/ OpenLP er skrevet og vedlikeholdt av frivillige. Hvis du ønsker at det blir skrevet mer gratis kristen programvare, kan du vurdere et frivillig bidrag ved Ã¥ klikke pÃ¥ knappen nedenfor. Volunteer Frivillig Project Lead Prosjektleder Developers Utviklere Contributors Bidragsytere Packagers Pakkere Testers Testere Translators Oversettere Afrikaans (af) Afrikaans (af) Czech (cs) Tsjekkisk(cs) Danish (da) Dansk (da) German (de) Tysk (de) Greek (el) Gresk (el) English, United Kingdom (en_GB) Engelsk, Storbritannia (en_GB) English, South Africa (en_ZA) Engelsk, Sør-Afrika (en_ZA) Spanish (es) Spansk (es) Estonian (et) Estisk (et) Finnish (fi) Finsk (fi) French (fr) Fransk (fr) Hungarian (hu) Ungarsk (hu) Indonesian (id) Indonesisk (id) Japanese (ja) Japansk (ja) Norwegian BokmÃ¥l (nb) Norsk bokmÃ¥l (nb) Dutch (nl) Nederlansk (nl) Polish (pl) Polsk (pl) Portuguese, Brazil (pt_BR) Portugesisk, Brasil (pt_BR) Russian (ru) Russisk (ru) Swedish (sv) Svensk (sv) Tamil(Sri-Lanka) (ta_LK) Tamilsk(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Kinesisk(Kina) (zh_CN) Documentation Dokumentasjon Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Fremstilt med Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Til slutt "For sÃ¥ høyt har Gud elsket verden at han ga sin Sønn, den enbÃ¥rne, for at hver den som tror pÃ¥ ham, ikke skal gÃ¥ fortapt, men ha evig liv." -- Joh 3:16 Og sist, men ikke minst, takken gÃ¥r til Gud vÃ¥r far, for at han sendte sin Sønn for Ã¥ dø pÃ¥ korset, og satte oss fri fra synd. Fordi Han har satt oss fri gir vi deg dette programmet fritt uten omkostninger, Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Delvis copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Innstillinger for brukergrensesnitt Number of recent files to display: Antall nylig brukte filer som skal vises: Remember active media manager tab on startup Husk aktiv fane i innholdselementer ved oppstart Double-click to send items straight to live Dobbelklikk for Ã¥ sende poster direkte til fremvisning Expand new service items on creation Utvid nye programposter ved opprettelse Enable application exit confirmation Aktiver avslutningsbekreftelse Mouse Cursor Musepekeren Hide mouse cursor when over display window Skjul musepekeren nÃ¥r den er over visningsvinduet Default Image Standard bilde Background color: Bakgrunnsfarge: Image file: Bildefil: Open File Ã…pne fil Advanced Avansert Preview items when clicked in Media Manager ForhÃ¥ndsvis poster markert i Innholdselementer Browse for an image file to display. Søk etter en bildefil som skal vises. Revert to the default OpenLP logo. GÃ¥ tilbake til standard OpenLP logo. Default Service Name Standard møteprogramnavn Enable default service name Aktiver standard møteprogramnavn Date and Time: Dato og tid: Monday Mandag Tuesday Tirsdag Wednesday Onsdag Friday Fredag Saturday Lørdag Sunday Søndag Now NÃ¥ Time when usual service starts. Tidspunkt nÃ¥r møtet normalt starter. Name: Navn: Consult the OpenLP manual for usage. Se OpenLP brukermanual for bruk. Revert to the default service name "%s". Tilbakestill til standard møteprogramnavn "%s". Example: Eksempel: Bypass X11 Window Manager ForbigÃ¥ X11 Window Manager Syntax error. Syntaksfeil. Data Location Sti til lagringsomrÃ¥de Current path: Gjeldende sti: Custom path: Egendefinert sti: Browse for new data file location. Bla for ny datafilplassering. Set the data location to the default. Tilbakestill til standard dataplassering. Cancel Avbryt Cancel OpenLP data directory location change. Avbryt endring av datafilplasseringen i OpenLP. Copy data to new location. Kopier data til ny plassering. Copy the OpenLP data files to the new location. Kopier OpenLP datafiler til den nye plasseringen. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ADVARSEL:</strong> Den nye datakatalogen inneholder OpenLP data filer. Disse filene VIL bli overskrevet under kopieringen. Data Directory Error Datakatalogfeil Select Data Directory Location Velg plassering for datakatalog Confirm Data Directory Change Bekreft endring av datakatalog Reset Data Directory Tilbakestill datakatalog Overwrite Existing Data Overskriv eksisterende data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP datakatalog ble ikke funnet %s Denne katalogen ble tidligere endret fra OpenLP standardplassering. Hvis den nye plasseringen var pÃ¥ flyttbare medier, mÃ¥ disse gjøres tilgjengelig. Klikk "Nei" for Ã¥ stoppe oppstarten av OpenLP. slik at du kan løse problemet. Klikk "Ja" for Ã¥ nullstille datakatalogen til standardplasseringen. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Er du sikker pÃ¥ at du vil endre plasseringen av OpenLP datakatalog til: %s Datakatalogen vil bli endret nÃ¥r OpenLP blir lukket. Thursday Torsdag Display Workarounds Grafikkløsninger Use alternating row colours in lists Bruk vekslende radfarger i lister WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? ADVARSEL: Plasseringen du har valgt %s synes Ã¥ inneholde OpenLP datafiler. Ønsker du Ã¥ erstatte disse filene med gjeldende datafiler? Restart Required Omstart pÃ¥krevd This change will only take effect once OpenLP has been restarted. Denne endringen vil bare tre i kraft nÃ¥r OpenLP har blitt startet pÃ¥ nytt. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Er du sikker pÃ¥ at du vil endre plasseringen av OpenLP datakatalogen til standardplassering? Denne plasseringen vil bli brukt etter OpenLP er lukket. OpenLP.ColorButton Click to select a color. Klikk for Ã¥ velge farge. OpenLP.DB RGB RGB Video Video Digital Digital Storage Lager Network Nettverk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Lager 1 Storage 2 Lager 2 Storage 3 Lager 3 Storage 4 Lager 4 Storage 5 Lager 5 Storage 6 Lager 6 Storage 7 Lager 7 Storage 8 Lager 8 Storage 9 Lager 9 Network 1 Nettverk 1 Network 2 Nettverk 2 Network 3 Nettverk 3 Network 4 Nettverk 4 Network 5 Nettverk 5 Network 6 Nettverk 6 Network 7 Nettverk 7 Network 8 Nettverk 8 Network 9 Nettverk 9 OpenLP.ExceptionDialog Error Occurred Feil oppstod Send E-Mail Send e-post Save to File Lagre til fil Attach File Legg ved fil Description characters to enter : %s Skriv forklarende tekst: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Legg ved en beskrivelse over hva du gjorde som forÃ¥rsaket denne feilen. Om mulig skriv pÃ¥ engelsk. (Minimum 20 tegn) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oops! Det oppstod et problem i OpenLP som ikke kunne gjenopprettes. Teksten i boksen nedenfor inneholder informasjon som kan være nyttig for OpenLP's utviklere. Vennligst send en e-post til bugs@openlp.org sammen med en detaljert beskrivelse av hva du gjorde da problemet oppstod. Legg ogsÃ¥ ved eventuelle filer som utløste problemet. OpenLP.ExceptionForm Platform: %s Plattform: %s Save Crash Report Lagre krasjrapport Text files (*.txt *.log *.text) Tekstfiler (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Skift navn pÃ¥ filen New File Name: Nytt filnavn: File Copy Kopier fil OpenLP.FirstTimeLanguageForm Select Translation Velg oversettelse Choose the translation you'd like to use in OpenLP. Velg oversettelse som du vil bruke i OpenLP. Translation: Oversettelse: OpenLP.FirstTimeWizard Songs Sanger First Time Wizard Oppstartsveiviser Welcome to the First Time Wizard Velkommen til oppstartsveiviseren Activate required Plugins Aktiver nødvendige programtillegg Select the Plugins you wish to use. Velg tillegg som du ønsker Ã¥ bruke. Bible Bibel Images Bilder Presentations Presentasjoner Media (Audio and Video) Media (Lyd og video) Allow remote access Tillat fjernstyring Monitor Song Usage OvervÃ¥k bruk av sanger Allow Alerts Tillat varselmeldinger Default Settings Standardinnstillinger Downloading %s... Nedlasting %s... Enabling selected plugins... Aktiverer programtillegg... No Internet Connection Ingen internettilkobling Unable to detect an Internet connection. Umulig Ã¥ oppdage en internettilkobling. Sample Songs Eksempelsanger Select and download public domain songs. Velg og last ned "public domain" sanger. Sample Bibles Eksempelbibler Select and download free Bibles. Velg og last ned gratis bibler. Sample Themes Eksempeltema Select and download sample themes. Velg og last ned eksempeltema. Set up default settings to be used by OpenLP. Sett opp standardinnstillinger for OpenLP. Default output display: Standard framvisningsskjerm: Select default theme: Velg standard tema: Starting configuration process... Starter konfigurasjonsprosessen... Setting Up And Downloading Setter opp og laster ned Please wait while OpenLP is set up and your data is downloaded. Vennligst vent mens OpenLP blir satt opp og data lastet ned. Setting Up Setter opp Custom Slides Egendefinerte lysbilder Finish Slutt No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ingen Internettilkobling ble funnet. Oppstartsveiviseren trenger en Internett-tilkobling for Ã¥ kunne laste ned eksempelsanger, bibler og temaer. Klikk Fullfør-knappen for Ã¥ starte OpenLP og utføre innledende innstillinger uten eksempeldata. For Ã¥ kjøre oppstartsveiviseren og importere disse eksempeldata pÃ¥ et senere tidspunkt, kan du kontrollere Internettilkoblingen og kjøre denne veiviseren ved Ã¥ velge "Verktøy / Kjør oppstartsveiviser pÃ¥ nytt" fra OpenLP. Download Error Nedlastingsfeil There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Det var forbindelsesproblemer, sÃ¥ videre nedlasting ble avsluttet. Prøv Ã¥ kjøre oppstartsveiviseren senere. Download complete. Click the %s button to return to OpenLP. Nedlasting fullført. Klikk pÃ¥ %s for Ã¥ gÃ¥ tilbake til OpenLP. Download complete. Click the %s button to start OpenLP. Nedlasting fullført. Klikk pÃ¥ %s knappen for Ã¥ starte OpenLP. Click the %s button to return to OpenLP. Klikk pÃ¥ %s for Ã¥ gÃ¥ tilbake til OpenLP. Click the %s button to start OpenLP. Klikk pÃ¥ %s knappen for Ã¥ starte OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Det var forbindelsesproblemer under nedlastingen, sÃ¥ videre nedlasting ble avsluttet. Prøv Ã¥ kjøre oppstartsveiviseren senere. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Denne veiviseren hjelper deg Ã¥ sette opp OpenLP for førstegangs bruk. Klikk %s knappen for Ã¥ starte. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. For Ã¥ avbryte oppstartsveiviseren fullstendig (og ikke starte OpenLP), trykk pÃ¥ %s knappen nÃ¥. Downloading Resource Index Laster ned ressursindeks Please wait while the resource index is downloaded. Vennligst vent mens ressursindeksen lastes ned. Please wait while OpenLP downloads the resource index file... Vennligst vent mens OpenLP laster ned ressursindeksfilen ... Downloading and Configuring Laster ned og konfigurerer Please wait while resources are downloaded and OpenLP is configured. Vennligst vent mens ressursene blir lastet ned og OpenLP konfigurert. Network Error Nettverksfeil There was a network error attempting to connect to retrieve initial configuration information Det oppstod en nettverksfeil under forsøket pÃ¥ Ã¥ koble til og hente innledende konfigurasjonsinformasjon Cancel Avbryt Unable to download some files Noen filer er umulig Ã¥ laste ned OpenLP.FormattingTagDialog Configure Formatting Tags Konfigurer formateringskoder Description Beskrivelse Tag Kode Start HTML Start HTML End HTML Slutt HTML Default Formatting Standard formatering Custom Formatting Egendefinert formatering OpenLP.FormattingTagForm <HTML here> <Sett inn HTML-kode her> Validation Error Kontrollfeil Description is missing Beskrivelse mangler Tag is missing Tagg mangler Tag %s already defined. Tagg %s er allerede definert. Description %s already defined. Beskrivelse %s er allerede definert. Start tag %s is not valid HTML Start tagg %s er ikke gyldig HTMLkode End tag %(end)s does not match end tag for start tag %(start)s Slutttagg %(end)s stemmer ikke overens med slutttagg for starttagg %(start)s OpenLP.FormattingTags Red Rød Black Svart Blue BlÃ¥ Yellow Gul Green Grønn Pink Rosa Orange Oransje Purple Lilla White Hvit Superscript Overstilt tekst Subscript Understilt tekst Paragraph Avsnitt Bold Fet Italics SkrÃ¥stilt Underline Understrek Break Mellomrom OpenLP.GeneralTab General Generell Monitors Skjermer Select monitor for output display: Velg skjerm som innhold skal vises pÃ¥: Display if a single screen Vis dersom enkel skjerm Application Startup Programoppstart Show blank screen warning Vis "blank skjerm"-advarsel Automatically open the last service Ã…pne forrige møteprogram automatisk Show the splash screen Vis logo Application Settings Møteprograminnstillinger Prompt to save before starting a new service Spør om Ã¥ lagre før du starter et nytt møteprogram Automatically preview next item in service Automatisk forhÃ¥ndsvis neste post i møteprogrammet sec sek CCLI Details CCLI-detaljer SongSelect username: SongSelect brukernavn: SongSelect password: SongSelect passord: X X Y Y Height Høyde Width Bredde Check for updates to OpenLP Se etter oppdateringer til OpenLP Unblank display when adding new live item Gjør skjerm synlig nÃ¥r nytt element blir lagt til Timed slide interval: Tidsbestemt lysbildeintervall: Background Audio Bakgrunnslyd Start background audio paused Start med bakgrunnslyd pauset Service Item Slide Limits Bildeveksling Override display position: Manuell skjermposisjon: Repeat track list Gjenta spilleliste Behavior of next/previous on the last/first slide: Innstilling for navigering gjennom bildene: &Remain on Slide &Bli pÃ¥ siste bilde i sangen &Wrap around &Gjennom sangen - starte om &Move to next/previous service item &Gjennom sangen - neste post pÃ¥ programmet OpenLP.LanguageManager Language SprÃ¥k Please restart OpenLP to use your new language setting. Vennligst start OpenLP pÃ¥ nytt for Ã¥ bruke de nye sprÃ¥kinnstillingene. OpenLP.MainDisplay OpenLP Display OpenLP Display OpenLP.MainWindow &File &Fil &Import &Importer &Export &Eksporter &View &Vis M&ode M&odus &Tools V&erktøy &Settings &Innstillinger &Language &SprÃ¥k &Help &Hjelp Service Manager Møteprogram Theme Manager Temabehandler Open an existing service. Ã…pne et allerede eksisterende møteprogram. Save the current service to disk. Lagre gjeldende møteprogram til disk. Save Service As Lagre møteprogram som Save the current service under a new name. Lagre gjeldende møteprogram med et nytt navn. E&xit &Avslutt Quit OpenLP Avslutt OpenLP &Theme &Tema &Configure OpenLP... &Sett opp OpenLP... &Media Manager &Innholdselementer (Bibliotek) Toggle Media Manager Vis Innholdselementer Toggle the visibility of the media manager. SlÃ¥ pÃ¥/av Innholdselementer. &Theme Manager &Temabehandler Toggle Theme Manager Vis temabehandler Toggle the visibility of the theme manager. SlÃ¥ pÃ¥/av temabehandler. &Service Manager &Møteprogram Toggle Service Manager Vis møteprogram Toggle the visibility of the service manager. SlÃ¥ pÃ¥/av møteprogrambehandler. &Preview Panel &ForhÃ¥ndsvisningspanel Toggle Preview Panel Vis forhÃ¥ndsvisningspanel Toggle the visibility of the preview panel. SlÃ¥ pÃ¥/av forhÃ¥ndsvisningspanel. &Live Panel Fr&emvisningspanel Toggle Live Panel Vis Fremvisningspanel Toggle the visibility of the live panel. SlÃ¥ pÃ¥/av fremvisningpanel. List the Plugins List opp tilleggsmoduler &User Guide &Brukerveiledning &About &Om More information about OpenLP Mer informasjon om OpenLP &Online Help Online &hjelp &Web Site &Nettside Use the system language, if available. Bruk systemsprÃ¥k dersom tilgjengelig. Set the interface language to %s Sett brukersprÃ¥k til %s Add &Tool... Legg til v&erktøy... Add an application to the list of tools. Legg til en applikasjon i verktøylisten. &Default &Standard Set the view mode back to the default. Tilbakestill programmet til standard visning. &Setup &Planlegging Set the view mode to Setup. Sett progammet i planleggingmodus. &Live &Fremvisning Set the view mode to Live. Sett programmet i fremvisningmodus. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Versjon %s av OpenLP er nÃ¥ tilgjengelig for nedlasting (du bruker versjon %s). Du kan laste ned siste versjon fra http://openlp.org/. OpenLP Version Updated OpenLP er oppdatert OpenLP Main Display Blanked OpenLP visningsskjerm er avslÃ¥tt The Main Display has been blanked out Visningsskjerm er avslÃ¥tt Default Theme: %s Standard tema: %s English Please add the name of your language here Norsk (bokmÃ¥l) Configure &Shortcuts... Konfigurer &hurtigtaster... Open &Data Folder... Ã…pne &datakatalog... Open the folder where songs, bibles and other data resides. Ã…pne mappen der sanger, bibler og andre data lagres. &Autodetect Oppdag &automatisk Update Theme Images Oppdater temabilder Update the preview images for all themes. Oppdater forhÃ¥ndsvisningsbilder for alle tema. Print the current service. Skriv ut gjeldende møteprogram. L&ock Panels L&Ã¥s paneler Prevent the panels being moved. Forhindre at paneler blir flyttet. Re-run First Time Wizard Kjør oppstartsveiviseren pÃ¥ nytt Re-run the First Time Wizard, importing songs, Bibles and themes. Kjør oppstartsveiviseren pÃ¥ nytt og importer sanger, bibler og tema. Re-run First Time Wizard? Vil du kjøre oppstartsveiviseren pÃ¥ nytt? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Vil du kjøre oppstartsveiviseren pÃ¥ nytt? Dersom du kjører veiviseren pÃ¥ nytt vil det sannsynlig føre til forandringer i gjeldende oppsett i OpenLP og legge til sanger i eksisterende sangliste og bytte gjeldene tema. Clear List Clear List of recent files Tøm listen Clear the list of recent files. Tøm listen over siste brukte møteprogram. Configure &Formatting Tags... Konfigurerer &formateringskoder... Export OpenLP settings to a specified *.config file Eksporter OpenLP-innstillingene til en spesifisert *.config-fil Settings Innstillinger Import OpenLP settings from a specified *.config file previously exported on this or another machine Importer OpenLP-innstillier fra en spesifisert *.config fil som tidligere er eksportert fra denne eller en annen datamaskin Import settings? Vil du importere innstillinger? Open File Ã…pne fil OpenLP Export Settings Files (*.conf) OpenLP eksportinnstillingsfiler (*.conf) Import settings Importer innstillinger OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP vil nÃ¥ avsluttes. Importerte innstillinger blir aktive ved neste oppstart av OpenLP. Export Settings File Eksporter innstillingsfil OpenLP Export Settings File (*.conf) OpenLP eksportinnstillingsfiler (*.conf) New Data Directory Error Ny datakatalog feil Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopierer OpenLP data til ny datakatalogplassering - %s. Vent til kopieringen er ferdig OpenLP Data directory copy failed %s Kopiering til OpenLP datakatalog mislyktes %s General Generell Library Bibliotek Jump to the search box of the current active plugin. GÃ¥ til søkeboksen for den aktive plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Er du sikker pÃ¥ at du vil importere innstillinger? Ã… importere innstillinger vil gjøre permanente forandringer i din nÃ¥værende OpenLP konfigurasjon. Dersom du importerer feil innstillinger kan det føre til uberegnelig opptreden eller OpenLP avsluttes unormalt. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Filen du valgte ser ikke ut til Ã¥ være en gyldig OpenLP innstillingsfil Behandlingen er avsluttet og ingen endringer er gjort. Projector Manager Projektorbehandler Toggle Projector Manager Vis projektorbehandler Toggle the visibility of the Projector Manager SlÃ¥r pÃ¥/av projektorbehandler Export setting error Eksportinnstillingene er feil The key "%s" does not have a default value so it will be skipped in this export. Tasten "%s" har ikke en standardverdi, sÃ¥ den vil bli hoppet over i denne eksporten. An error occurred while exporting the settings: %s Det oppstod en feil under eksport av innstillingene: %s &Recent Services Sist brukte &møteprogram &New Service &Nytt møteprogram &Open Service &Ã…pne møteprogram. &Save Service &Lagre møteprogram Save Service &As... Lagre møteprogram &som &Manage Plugins &Behandle Tilleggsmoduler Exit OpenLP Avslutt OpenLP Are you sure you want to exit OpenLP? Er du sikker pÃ¥ at du vil avslutte OpenLP? &Exit OpenLP &Avslutt OpenLP OpenLP.Manager Database Error Databasefeil The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Databasen som ble forsøkt lastet er laget i en nyere versjon av OpenLP. Databasen har versjon %d, OpenLP krever versjon %d. Databasen blir ikke lastet. Database: %s OpenLP cannot load your database. Database: %s OpenLP kan ikke laste databasen. Database: %s OpenLP.MediaManagerItem No Items Selected Ingen poster er valgt &Add to selected Service Item &Legg til i valgt post i møteprogrammet You must select one or more items to preview. Du mÃ¥ velge en eller flere poster som skal forhÃ¥ndsvises. You must select one or more items to send live. Du mÃ¥ velge en eller flere poster som skal fremvises. You must select one or more items. Du mÃ¥ velge en eller flere poster. You must select an existing service item to add to. Du mÃ¥ velge en eksisterende post i møteprogrammet som skal legges til. Invalid Service Item Ugyldig møteprogrampost You must select a %s service item. Du mÃ¥ velge en post av typen %s i møteprogrammet. You must select one or more items to add. Du mÃ¥ velge en eller flere poster som skal legges til. No Search Results Ingen søkeresultat Invalid File Type Ugyldig filtype Invalid File %s. Suffix not supported Ugyldig fil %s. Filendelsen støttes ikke &Clone &Klone Duplicate files were found on import and were ignored. Doble versjoner av filene ble funnet ved importen og ble ignorert. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tagg mangler. <verse> tag is missing. <verse> tagg mangler. OpenLP.PJLink1 Unknown status Ukjent status No message Ingen melding Error while sending data to projector Feil under sending av data til projektor Undefined command: Udefinert kommando: OpenLP.PlayerTab Players Spillere Available Media Players Tilgjengelige mediaspillere Player Search Order Søkerekkefølge for mediaspillere Visible background for videos with aspect ratio different to screen. Synlig bakgrunn for videoer med størrelsesformat annerledes enn skjermen. %s (unavailable) %s (utilgjengelig) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" MERK: For Ã¥ bruke VLC mÃ¥ du installere versjon %s OpenLP.PluginForm Plugin Details Moduldetaljer Status: Status: Active Aktiv Inactive Inaktiv %s (Inactive) %s (Inaktiv) %s (Active) %s (Aktiv) %s (Disabled) %s (Deaktivert) Manage Plugins Behandle tilleggsmoduler OpenLP.PrintServiceDialog Fit Page Tilpass til siden Fit Width Tilpass til bredden OpenLP.PrintServiceForm Options Alternativer Copy Kopier Copy as HTML Kopier som HTML Zoom In Zoom inn Zoom Out Zoom ut Zoom Original Tilbakestill zoom Other Options Andre alternativ Include slide text if available Inkluder sidetekst dersom tilgjengelig Include service item notes Inkluder notater Include play length of media items Inkluder spillelengde for mediaelementer Add page break before each text item Legg til sideskift for hvert tekstelement Service Sheet Møteprogram Print Skriv ut Title: Tittel: Custom Footer Text: Egendefinert bunntekst: OpenLP.ProjectorConstants OK OK General projector error Generell projektorfeil Not connected error "Ikke tilkoblet"-feil Lamp error Lampefeil Fan error Viftefeil High temperature detected Oppdaget høy temperatur Cover open detected Oppdaget Ã¥pent deksel Check filter Kontroller filter Authentication Error Godkjenningsfeil Undefined Command Udefinert kommando Invalid Parameter Ugyldig parameter Projector Busy Projektor opptatt Projector/Display Error Projektor/skjermfeil Invalid packet received Ugyldig pakke mottatt Warning condition detected Varseltilstand oppdaget Error condition detected Feiltilstand oppdaget PJLink class not supported PJLink klasse støttes ikke Invalid prefix character Ugyldig prefikstegn The connection was refused by the peer (or timed out) Tilkoblingen ble nektet av noden (eller pÃ¥ grunn av tidsavbrudd) The remote host closed the connection Den eksterne verten har avsluttet tilkoblingen The host address was not found Vertsadressen ble ikke funnet The socket operation failed because the application lacked the required privileges Tilkoblingen mislyktes fordi programmet manglet de nødvendige rettigheter The local system ran out of resources (e.g., too many sockets) Det lokale systemet gikk tom for ressurser (for eksempel for mange tilkoblinger) The socket operation timed out Tilkobling ble tidsavbrutt The datagram was larger than the operating system's limit Datagrammet var større enn operativsystemets kapasitet An error occurred with the network (Possibly someone pulled the plug?) Det oppstod en feil med nettverket (Kanskje var det noen som trakk ut pluggen?) The address specified with socket.bind() is already in use and was set to be exclusive Adressen spesifisert med socket.bind() er allerede i bruk, og ble satt til Ã¥ være eksklusiv The address specified to socket.bind() does not belong to the host Adressen spesifisert til socket.bind() hører ikke til verten The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Den forespurte tilkoblingsoperasjonen er ikke støttet av det lokale operativsystemet (for eksempel mangel pÃ¥ IPv6-støtte) The socket is using a proxy, and the proxy requires authentication Tilkoblingen bruker en proxy, og proxyen krever godkjenning The SSL/TLS handshake failed SSL/TLS handshake mislyktes The last operation attempted has not finished yet (still in progress in the background) Siste forsøk er ennÃ¥ ikke ferdig (det pÃ¥gÃ¥r fortsatt i bakgrunnen) Could not contact the proxy server because the connection to that server was denied Kunne ikke kontakte proxy-serveren fordi tilkoblingen til serveren det gjelder ble avvist The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Tilkoblingen til proxy-serveren ble stengt uventet (før tilkoblingen til den endelige node ble etablert) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Tilkoblingen til proxy-serveren ble tidsavbrutt eller proxy-serveren sluttet Ã¥ svare i godkjenningsfasen. The proxy address set with setProxy() was not found Proxy-adresse angitt med setProxy() ble ikke funnet An unidentified error occurred En ukjent feil oppstod Not connected Ikke tilkoblet Connecting Kobler til Connected Tilkoblet Getting status Mottar status Off Av Initialize in progress Initialisering pÃ¥gÃ¥r Power in standby Strøm i standby Warmup in progress Oppvarming pÃ¥gÃ¥r Power is on Strømmen er slÃ¥tt pÃ¥ Cooldown in progress Avkjøling pÃ¥gÃ¥r Projector Information available Projektorinformasjon er tilgjengelig Sending data Sender data Received data Mottatte data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Tilkoblingen med proxy-serveren mislyktes fordi responsen fra proxy-serveren ikke kunne forstÃ¥s OpenLP.ProjectorEdit Name Not Set Navn ikke angitt You must enter a name for this entry.<br />Please enter a new name for this entry. Du mÃ¥ skrive inn et navn for denne oppføringen. <br/> Vennligst skriv inn et nytt navn for denne oppføringen. Duplicate Name Navnet er allerede i bruk OpenLP.ProjectorEditForm Add New Projector Legg til ny projektor Edit Projector Rediger projektor IP Address IP-adresse Port Number Port nummer PIN PIN kode Name Navn Location Plassering Notes Notater Database Error Databasefeil There was an error saving projector information. See the log for the error Det oppsto en feil ved lagring av projektorinformasjonen. Se i loggen for informasjon OpenLP.ProjectorManager Add Projector Legg til projektor Add a new projector Legg til en ny projektor Edit Projector Rediger projektor Edit selected projector Rediger valgte projektor Delete Projector Slett projektor Delete selected projector Slett valgte projektor Select Input Source Velg inngangskilde Choose input source on selected projector Velg inngangskilde for valgte projektor View Projector Vis projektor View selected projector information Vis informasjon for valgte projektor Connect to selected projector Koble til valgte projektor Connect to selected projectors Koble til valgte projektorer Disconnect from selected projectors Koble fra valgte projektorer Disconnect from selected projector Koble fra valgte projektor Power on selected projector SlÃ¥ pÃ¥ valgte projektor Standby selected projector Valgte projektor i ventemodus Put selected projector in standby Sett valgt projektor i ventemodus Blank selected projector screen Slukk valgte projektorskjerm Show selected projector screen Vis valgte projektorskjerm &View Projector Information &Vis projektorinformasjon &Edit Projector &Rediger projektor &Connect Projector &Koble til projektor D&isconnect Projector Koble &fra projektor Power &On Projector SlÃ¥r &pÃ¥ projektor Power O&ff Projector SlÃ¥r &av projektor Select &Input Velg &inndata Edit Input Source Rediger inngangskilkde &Blank Projector Screen &Slukk projektorskjerm &Show Projector Screen &Vis projektorskjerm &Delete Projector &Slett projektor Name Navn IP IP Port Port Notes Notater Projector information not available at this time. Projektorinformasjon er ikke tilgjengelig for øyeblikket. Projector Name Projektornavn Manufacturer Produsent Model Modell Other info Annen informasjon Power status Strømstatus Shutter is Lukkeren er Closed Lukket Current source input is Gjeldende kildeinngang er Lamp Lampe On PÃ¥ Off Av Hours Timer No current errors or warnings Ingen aktuelle feil eller advarsler Current errors/warnings Aktuelle feil/advarsler Projector Information Projektorinformasjon No message Ingen melding Not Implemented Yet Ikke implementert ennÃ¥ Delete projector (%s) %s? Slett projektor (%s) %s? Are you sure you want to delete this projector? Er du sikker pÃ¥ at du vil slette denne projektoren? OpenLP.ProjectorPJLink Fan Vifte Lamp Lampe Temperature Temperatur Cover Deksel Filter Filter Other Tilleggsinformasjon OpenLP.ProjectorTab Projector Projektor Communication Options Kommunikasjonsalternativer Connect to projectors on startup Koble til projektorer ved oppstart Socket timeout (seconds) Socket tidsavbrudd i (sekunder) Poll time (seconds) Kontrolltid (sekunder) Tabbed dialog box Dialogboks med kategorier Single dialog box Enkel dialogboks OpenLP.ProjectorWizard Duplicate IP Address Gjentatt IP-adresse Invalid IP Address Ugyldig IPadresse Invalid Port Number Ugyldig portnummer OpenLP.ScreenList Screen Skjerm primary primær OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Lengde</strong>: %s [slide %d] [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Omorganiser programpost OpenLP.ServiceManager Move to &top Flytt &øverst Move item to the top of the service. Legg posten øverst pÃ¥ møteprogrammet. Move &up Flytt &opp Move item up one position in the service. Flytter posten opp et steg. Move &down Flytt &ned Move item down one position in the service. Flytter posten et steg ned. Move to &bottom Flytt neder&st Move item to the end of the service. Legg posten sist pÃ¥ møteprogrammet. &Delete From Service &Slett fra møteprogrammet Delete the selected item from the service. Slett valgte post fra programmet. &Add New Item &Legg til ny post &Add to Selected Item Legg til i &valgt post &Edit Item &Rediger post &Reorder Item &Omorganiser post &Notes &Notater &Change Item Theme &Skift postens tema File is not a valid service. Filen er ikke gyldig møteprogramfil. Missing Display Handler Visningsmodul mangler Your item cannot be displayed as there is no handler to display it Posten kan ikke vises fordi visningsmodul mangler Your item cannot be displayed as the plugin required to display it is missing or inactive Posten kan ikke vises fordi nødvendig programtillegg enten mangler eller er inaktiv &Expand all &Utvid alle Expand all the service items. Utvid alle postene i møteprogrammet. &Collapse all &Skjul alle Collapse all the service items. Skjul alle poster i programmet. Open File Ã…pne fil Moves the selection down the window. Flytter utvalget nedover vinduet. Move up Flytte opp Moves the selection up the window. Flytter utvalget oppover vinduet. Go Live Send til fremvisning Send the selected item to Live. Sender valgt element til fremvisning. &Start Time &Starttid Show &Preview &ForhÃ¥ndsvis Modified Service Endret møteprogram The current service has been modified. Would you like to save this service? Gjeldende møteprogram er endret. Vil du lagre? Custom Service Notes: Egne møteprogramnotater: Notes: Notater: Playing time: Spilletid: Untitled Service Møteprogram uten navn File could not be opened because it is corrupt. Filen kunne ikke Ã¥pnes fordi den er skadet. Empty File Tom fil This service file does not contain any data. Denne møteprogram filen er tom. Corrupt File Skadet fil Load an existing service. Ã…pne en eksisterende møteprogramfil. Save this service. Lagre dette møteprogrammet. Select a theme for the service. Velg et tema for møteprogrammet. Slide theme Lysbildetema Notes Notater Edit Redigere Service copy only Bare kopi i møteprogrammet Error Saving File Feil under lagring av fil There was an error saving your file. Det oppstod en feil under lagringen av filen. Service File(s) Missing Møteprogramfil(er) mangler &Rename... &Endre navn... Create New &Custom Slide Opprett nytt egendefinert &lysbilde &Auto play slides Vis lysbilde &automatisk Auto play slides &Loop Vis lysbilder i &løkke Auto play slides &Once Vis lysbilde &en gang &Delay between slides &Pause mellom lysbildene OpenLP Service Files (*.osz *.oszl) OpenLP Møteprogramfiler (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Møteprogramfiler (*.osz);; OpenLP Møteprogramfiler - lett (*.oszl) OpenLP Service Files (*.osz);; OpenLP Møteprogramfiler (*.osz);; File is not a valid service. The content encoding is not UTF-8. Filen er ikke et gyldig møteprogram Innholdet er ikke i UTF-8 koding The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Møteprogramfilen du prøver Ã¥ Ã¥pne er i et gammelt format. Vennligst lagre den med OpenLP 2.0.2 eller nyere. This file is either corrupt or it is not an OpenLP 2 service file. Denne filen er enten skadet eller den er ikke en OpenLP 2 møteprogramfil. &Auto Start - inactive &Auto start - inaktiv &Auto Start - active &Autostart - aktiv Input delay Inngangsforsinkelse Delay between slides in seconds. Ventetid mellom bildene i sekunder. Rename item title Endre navn pÃ¥ møteprogrampost Title: Tittel: An error occurred while writing the service file: %s Det oppstod en feil under skriving av møteprogramfilen: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Følgende fil(er) i møteprogrammet mangler: %s Disse filene vil bli fjernet hvis du fortsetter til lagre. OpenLP.ServiceNoteForm Service Item Notes Programpostnotater OpenLP.SettingsForm Configure OpenLP Konfigurer OpenLP OpenLP.ShortcutListDialog Action Handling Shortcut Hurtigtast Duplicate Shortcut Dublett snarvei The shortcut "%s" is already assigned to another action, please use a different shortcut. Hurtigtasten "%s" er allerede brukt til en annen handling, bruk en annen hurtigtast. Alternate Alternativ Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Velg en handling og trykk pÃ¥ knappene nedenfor for Ã¥ lage en ny primær eller en alternativ hurtigtast. Default Standard Custom Egendefinert Capture shortcut. Opprette hurtigtast. Restore the default shortcut of this action. Tilbakestill til standard hurtigtast for denne handlingen. Restore Default Shortcuts Tilbakestill til standard hurtigtast Do you want to restore all shortcuts to their defaults? Ønsker du Ã¥ tilbakestille alle hurtigtaster til standard verdier? Configure Shortcuts Konfigurer hurtigtaster OpenLP.SlideController Hide Skjul Go To GÃ¥ til Blank Screen Vis sort skjerm Blank to Theme Vis tema Show Desktop Vis skrivebord Previous Service Forrige møteprogram Next Service Neste møteprogram Escape Item Avbryt post Move to previous. Flytt til forrige. Move to next. Flytt til neste. Play Slides Spill sider Delay between slides in seconds. Ventetid mellom bildene i sekunder. Move to live. Flytt til fremvisning. Add to Service. Legg til i møteprogram. Edit and reload song preview. Rediger og oppdater forhÃ¥ndsvisning. Start playing media. Start avspilling av media. Pause audio. Pause lyden. Pause playing media. Pause avspilling av media. Stop playing media. Stopp avspilling av media. Video position. Videoposisjon. Audio Volume. Lydvolum. Go to "Verse" GÃ¥ til "Vers" Go to "Chorus" GÃ¥ til "Refreng" Go to "Bridge" GÃ¥ til "Mellomspill" Go to "Pre-Chorus" GÃ¥ til "Bro" Go to "Intro" GÃ¥ til "Intro" Go to "Ending" GÃ¥ til "Avslutt" Go to "Other" GÃ¥ til "Tilleggsinformasjon" Previous Slide Forrige bilde Next Slide Neste bilde Pause Audio Pause lyd Background Audio Bakgrunnslyd Go to next audio track. GÃ¥ til neste lydspor. Tracks Spor OpenLP.SourceSelectForm Select Projector Source Velg projektorkilde Edit Projector Source Text Rediger projektorkildetekst Ignoring current changes and return to OpenLP Ignorerer de aktuelle endringene og gÃ¥ tilbake til OpenLP Delete all user-defined text and revert to PJLink default text Slett all brukerdefinert tekst og gÃ¥ tilbake til PJLink standardtekst Discard changes and reset to previous user-defined text Forkast endringene og tilbakestill til forrige brukerdefinerte tekst Save changes and return to OpenLP Lagre endringer og gÃ¥ tilbake til OpenLP Delete entries for this projector Slett oppføringer for denne projektoren Are you sure you want to delete ALL user-defined source input text for this projector? Er du sikker pÃ¥ at du vil slette all brukerdefinert inndata tekst for denne projektoren? OpenLP.SpellTextEdit Spelling Suggestions Staveforslag Formatting Tags Formateringstagger Language: SprÃ¥k: OpenLP.StartTimeForm Theme Layout Temalayout The blue box shows the main area. Den blÃ¥ ruten viser hovedomrÃ¥det. The red box shows the footer. Den røde ruten viser bunnteksten. OpenLP.StartTime_form Item Start and Finish Time Start- og sluttid Hours: Timer: Minutes: Minutter: Seconds: Sekunder: Start Start Finish Slutt Length Lengde Time Validation Error Tidskontrollfeil Finish time is set after the end of the media item Sluttiden er satt til etter slutten av mediaposten Start time is after the finish time of the media item Starttiden er etter sluttiden av mediaposten OpenLP.ThemeForm (approximately %d lines per slide) (ca. %d linjer per bilde) OpenLP.ThemeManager Create a new theme. Lag et nytt tema. Edit Theme Rediger tema Edit a theme. Rediger et tema. Delete Theme Slett tema Delete a theme. Slett et tema. Import Theme Importer tema Import a theme. Importer et tema. Export Theme Eksporter tema Export a theme. Eksporter et tema. &Edit Theme &Rediger tema &Delete Theme &Slett tema Set As &Global Default Sett som &globalt tema %s (default) %s (standard) You must select a theme to edit. Du mÃ¥ velge et tema Ã¥ redigere. You are unable to delete the default theme. Du kan ikke slette standardtemaet. You have not selected a theme. Du har ikke valgt et tema. Save Theme - (%s) Lagre tema - (%s) Theme Exported Tema eksportert Your theme has been successfully exported. Temaet har blitt eksportert uten problemer. Theme Export Failed Temaeksporten var mislykket Select Theme Import File Velg en tema importfil File is not a valid theme. Filen er ikke et gyldig tema. &Copy Theme &Kopier tema &Rename Theme &Endre navn pÃ¥ tema &Export Theme &Eksporter tema You must select a theme to rename. Du mÃ¥ velge et tema som skal endre navn. Rename Confirmation Bekreft navneendring Rename %s theme? Endre navn pÃ¥ tema %s? You must select a theme to delete. Du mÃ¥ velge et tema som skal slettes. Delete Confirmation Bekreft sletting Delete %s theme? Slett %s tema? Validation Error Kontrollfeil A theme with this name already exists. Et tema med dette navnet finnes allerede. Copy of %s Copy of <theme name> Kopi av %s Theme Already Exists Tema finnes allerede Theme %s already exists. Do you want to replace it? Temaet %s finnes allerede. Vil du erstatte det? The theme export failed because this error occurred: %s Eksport av tema mislyktes fordi denne feilen oppstod: %s OpenLP Themes (*.otz) OpenLP temaer (*.otz) %s time(s) by %s %s gang(er) med %s Unable to delete theme Kan ikke slette tema Theme is currently used %s Temaet er for tiden i bruk %s OpenLP.ThemeWizard Theme Wizard Temaveiviser Welcome to the Theme Wizard Velkommen til temaveiviseren Set Up Background Sett opp bakgrunn Set up your theme's background according to the parameters below. Sett opp temabakgrunn i henhold til parameterne nedenfor. Background type: Bakgrunnstype: Gradient Gradient Gradient: Gradient: Horizontal Horisontal Vertical Vertikal Circular Sirkulær Top Left - Bottom Right Øverst til venstre - Nederst til høyre Bottom Left - Top Right Nederst til venstre - Øverst til høyre Main Area Font Details Fontdetaljer for hovedfeltet Define the font and display characteristics for the Display text Angi skriftstørrelsen og egenskaper for visningsteksten Font: Font: Size: Størrelse: Line Spacing: Linjeavstand: &Outline: &Kontur: &Shadow: &Skygge: Bold Fet Italic Kursiv Footer Area Font Details Fontdetaljer for bunntekstomrÃ¥det Define the font and display characteristics for the Footer text Angi skriftstørrelsen og egenskaper for bunnteksten Text Formatting Details Tekstformatering Allows additional display formatting information to be defined Ytterlige innstillingsmuligheter for hvordan teksten skal vises Horizontal Align: Vannrett justering: Left Venstre Right Høyre Center Midten Output Area Locations Plassering av tekst &Main Area &HovedomrÃ¥det &Use default location &Bruk standard plassering X position: X posisjon: px px Y position: Y posisjon: Width: Bredde: Height: Høyde: Use default location Bruk standard plassering Theme name: Tema navn: Edit Theme - %s Rediger tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Denne veiviseren vil hjelpe deg Ã¥ lage og redigere dine temaer. Klikk pÃ¥ Neste-knappen under for Ã¥ starte oppsettet av bakgrunnen. Transitions: Overganger: &Footer Area &Bunntekst Starting color: Startfarge: Ending color: Sluttfarge: Background color: Bakgrunnsfarge: Justify Finjuster Layout Preview ForhÃ¥ndsvisning av layout Transparent Gjennomsiktig Preview and Save ForhÃ¥ndsvis og lagre Preview the theme and save it. ForhÃ¥ndsvis og lagre temaet. Background Image Empty Bakgrunnsbilde er tomt Select Image Velg bilde Theme Name Missing Temanavn mangler There is no name for this theme. Please enter one. Du har ikke angitt navn for temaet. Vennligst legg til navn. Theme Name Invalid Ugyldig temanavn Invalid theme name. Please enter one. Ugyldig temanavn. Velg et nytt. Solid color Ensfarget color: farge: Allows you to change and move the Main and Footer areas. Her kan du endre og flytte tekst- og bunntekst omrÃ¥dene. You have not selected a background image. Please select one before continuing. Du har ikke valgt et bakgrunnsbilde. Vennligst velg et før du fortsetter. OpenLP.ThemesTab Global Theme Globalt tema Theme Level TemanivÃ¥ S&ong Level S&angnivÃ¥ Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Bruker temaet fra hver sang i databasen. Hvis en sang ikke har et tema tilknyttet, brukes program tema. Hvis møteprogrammet ikke har et tema, brukes det globale tema. &Service Level &ProgramnivÃ¥ Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Bruk temaet fra møteprogrammet og ignorer individuelle sangtema. Dersom det ikke er satt opp spesielt tema for møtet bruk globalt tema. &Global Level &Globalt nivÃ¥ Use the global theme, overriding any themes associated with either the service or the songs. Bruker globalt tema, og overstyrer eventuelle temaer tilknyttet enten møteprogrammet eller sangene. Themes Temaer Universal Settings Universelle innstillinger &Wrap footer text &Bryt bunntekst OpenLP.Ui Delete the selected item. Slett valgte post. Move selection up one position. Flytt valgte ett steg opp. Move selection down one position. Flytt valgte ett steg ned. &Vertical Align: &Vertikal justering: Finished import. Import fullført. Format: Format: Importing Importerer Importing "%s"... Importerer "%s"... Select Import Source Velg importkilde Select the import format and the location to import from. Velg importformat og plasseringen du vil importere fra. Open %s File Ã…pne %s fil %p% %p% Ready. Klar. Starting import... Starter import... You need to specify at least one %s file to import from. A file type e.g. OpenSong Du mÃ¥ angi minst én %s fil som du vil importere fra. Welcome to the Bible Import Wizard Velkommen til bibelimportveiviseren Welcome to the Song Export Wizard Velkommen til sangeksportveiviseren Welcome to the Song Import Wizard Velkommen til sangimportveiviseren Author Singular Forfatter Authors Plural Forfattere © Copyright symbol. © Song Maintenance Vedlikehold av sanger Topic Singular Emne Topics Plural Emner Title and/or verses not found Tittel og/eller vers ikke funnet XML syntax error XML syntaksfeil Welcome to the Bible Upgrade Wizard Velkommen til bibeloppgradering-veiviseren Open %s Folder Ã…pne %s mappe You need to specify one %s file to import from. A file type e.g. OpenSong Du mÃ¥ angi en %s fil du vil importere fra. You need to specify one %s folder to import from. A song format e.g. PowerSong Du mÃ¥ angi en %s mappe du vil importere fra. Importing Songs Importerer sanger Welcome to the Duplicate Song Removal Wizard Velkommen til veiviseren for fjerning av sangduplikater Written by Skrevet av Author Unknown Ukjent forfatter About Om &Add &Legg til Add group Legg til gruppe Advanced Avansert All Files Alle filer Automatic Automatisk Background Color Bakgrunnsfarge Bottom Bunn Browse... Bla... Cancel Avbryt CCLI number: CCLI nummer: Create a new service. Lag et nytt møteprogram. Confirm Delete Bekreft sletting Continuous Kontinuerlig Default Standard Default Color: Standard farge: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Møteprogram %Y-%m-%d %H-%M &Delete &Slett Display style: Visningsstil: Duplicate Error Duplikatfeil &Edit &Rediger Empty Field Tomt felt Error Feil Export Eksporter File Fil File Not Found Fil ikke funnet File %s not found. Please try selecting it individually. Fil %s ikke funnet. Vennligst prøv Ã¥ velge den individuelt. pt Abbreviated font pointsize unit pt Help Hjelp h The abbreviated unit for hours h Invalid Folder Selected Singular Ugyldig mappe valgt Invalid File Selected Singular Ugyldig fil valgt Invalid Files Selected Plural Ugyldige filer valgt Image Bilde Import Importere Layout style: Layout stil: Live Fremvisning Live Background Error Fremvisning bakgrunns feil Live Toolbar Fremvisning - verktøylinje Load Laste Manufacturer Singular Produsent Manufacturers Plural Produsenter Model Singular Modell Models Plural Modeller m The abbreviated unit for minutes m Middle Midten New Ny New Service Nytt møteprogram New Theme Nytt tema Next Track Neste spor No Folder Selected Singular Ingen mappe valgt No File Selected Singular Ingen fil er valgt No Files Selected Plural Inger filer er valgt No Item Selected Singular Ingen post er valgt No Items Selected Plural Ingen poster er valgt OpenLP is already running. Do you wish to continue? OpenLP kjører allerede. Vil du fortsette? Open service. Ã…pne møteprogram. Play Slides in Loop Kontinuerlig visning av sider Play Slides to End Vis sider til "siste side" Preview ForhÃ¥ndsvisning Print Service Skriv ut møteprogram Projector Singular Projektor Projectors Plural Projektorer Replace Background Erstatt bakgrunn Replace live background. Bytt fremvisningbakgrunn. Reset Background Tilbakestill bakgrunn Reset live background. Tilbakestill fremvisningbakgrunn. s The abbreviated unit for seconds s Save && Preview Lagre && ForhÃ¥ndsvisning Search Søk Search Themes... Search bar place holder text Søk tema... You must select an item to delete. Du mÃ¥ velge en post Ã¥ slette. You must select an item to edit. Du mÃ¥ velge en post Ã¥ redigere. Settings Innstillinger Save Service Lagre møteprogram Service Møteprogram Optional &Split Valgfri &deling Split a slide into two only if it does not fit on the screen as one slide. Splitte en side i to bare hvis det ikke passer pÃ¥ skjermen som en side. Start %s Start %s Stop Play Slides in Loop Stopp kontinuerlig visning Stop Play Slides to End Stopp visning av sider "til siste side" Theme Singular Tema Themes Plural Temaer Tools Verktøy Top Topp Unsupported File Filtypen støttes ikke Verse Per Slide Vers pr side Verse Per Line Vers pr linje Version Versjon View Vis View Mode Visningsmodus CCLI song number: CCLI sang nummer: Preview Toolbar ForhÃ¥ndsvisning - verktøylinje OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. En kan ikke bytte fremvist bakgrunnsbilde nÃ¥r WebKit spilleren er deaktivert. Songbook Singular Sangbok Songbooks Plural Sangbøker OpenLP.core.lib %s and %s Locale list separator: 2 items %s og %s %s, and %s Locale list separator: end %s, og %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Velge kildegrensesnitt PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Programtillegget for presentasjoner</strong><br/>Programtillegget gir mulighet til Ã¥ vise presentasjoner ved hjelp av en rekke ulike programmer. Valget av tilgjengelige presentasjonsprogrammer er tilgjengelig for brukeren i en nedtrekksboks. Presentation name singular Presentasjon Presentations name plural Presentasjoner Presentations container title Presentasjoner Load a new presentation. Last en ny presentasjon. Delete the selected presentation. Slett den valgte presentasjonen. Preview the selected presentation. ForhÃ¥ndsvis den valgte presentasjonen. Send the selected presentation live. Fremvis valgte presentasjon. Add the selected presentation to the service. Legg valgte presentasjon til møteprogrammet. PresentationPlugin.MediaItem Select Presentation(s) Velg presentasjon(er) Automatic Automatisk Present using: Presenter ved hjelp av: File Exists Filen eksisterer allerede A presentation with that filename already exists. En presentasjon med dette filnavnet eksisterer allerede. This type of presentation is not supported. Denne type presentasjoner er ikke støttet. Presentations (%s) Presentasjoner (%s) Missing Presentation Presentasjonen mangler The presentation %s is incomplete, please reload. Presentasjonen %s er ufullstendig, vennligst oppdater. The presentation %s no longer exists. Presentasjonen %s eksisterer ikke lenger. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Det oppstod en feil i Powerpointintegrasjonen og presentasjonen vil bli stoppet. Start presentasjonen pÃ¥ nytt hvis du ønsker Ã¥ fortsette. PresentationPlugin.PresentationTab Available Controllers Tilgjengelige presentasjonsprogram %s (unavailable) %s (utilgjengelig) Allow presentation application to be overridden Tillat presentasjonsprogrammet Ã¥ bli overstyrt PDF options PDF-valg Use given full path for mudraw or ghostscript binary: Bruk fullstendig bane for mudraw eller ghost binary: Select mudraw or ghostscript binary. Velg mudraw eller ghost binary. The program is not ghostscript or mudraw which is required. Programmet er ikke ghostscript eller mudraw som er nødvendig. PowerPoint options PowerPoint valg Clicking on a selected slide in the slidecontroller advances to next effect. Ved Ã¥ klikke pÃ¥ et valgt lysbilde i fremvisningskontrollen; fortsetter til neste effekt. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). La PowerPoint kontrollere størrelsen og posisjonen til presentasjonsvinduet (løsning pÃ¥ Windows 8 skalerings problemer) RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Fjernstyringsprogramtillegget</strong><br/> Dette fjernstyringstillegget gir mulighet til Ã¥ sende meldinger til en kjørende versjon av OpenLP pÃ¥ en annen datamaskin via en nettleser eller via en fjernstyrings-app. Remote name singular Fjernstyring Remotes name plural Fjernstyringer Remote container title Fjernstyring Server Config Change Endre serverinnstillingene Server configuration changes will require a restart to take effect. Endring av serverinnstillingene krever omstart for Ã¥ tre i kraft. RemotePlugin.Mobile Service Manager Møteprogram Slide Controller Fremvisningskontroll Alerts Meldinger Search Søk Home Hjem Refresh Oppdater Blank Slukk Theme Tema Desktop Skrivebord Show Vis Prev Forrige Next Neste Text Tekst Show Alert Vis melding Go Live Send til fremvisning Add to Service Legg til i møteprogram Add &amp; Go to Service Legg til &amp; gÃ¥ til møteprogram No Results Ingen resultat Options Alternativer Service Møteprogram Slides Bilder Settings Innstillinger Remote Fjernstyring Stage View Scenevisning Live View Skjermvisning RemotePlugin.RemoteTab Serve on IP address: Bruk IP-adresse: Port number: Portnummer: Server Settings Serverinnstillinger Remote URL: Fjernstyring URL: Stage view URL: Scenevisning URL: Display stage time in 12h format Vis scenetiden i 12-timersformat Android App Android App Live view URL: Skjermvisning URL: HTTPS Server HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Kunne ikke finne et SSL-sertifikat. HTTPS-serveren vil ikke være tilgjengelig med mindre et SSL-sertifikat er funnet. Se i bruksanvisningen for mer informasjon. User Authentication Brukergodkjenning User id: Bruker-id: Password: Passord: Show thumbnails of non-text slides in remote and stage view. Vis miniatyrbilder av ikke-tekst slides i fjernstyrings- og scenevisning. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Skann QR-koden eller klikk <a href="%s">last ned</a> for Ã¥ installere Android appen fra Google Play. SongUsagePlugin &Song Usage Tracking &Logging av sangbruk &Delete Tracking Data &Slett loggdata Delete song usage data up to a specified date. Slett loggdata til en gitt dato. &Extract Tracking Data &Ta utdrag av loggdata Generate a report on song usage. Generere en rapport om sangbruken. Toggle Tracking SlÃ¥ pÃ¥ logging Toggle the tracking of song usage. SlÃ¥r logging av sanger av/pÃ¥. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Sangbrukmodulen</strong><br/>Dette programtillegget logger bruken av sangene pÃ¥ møtene. SongUsage name singular Sangbruk SongUsage name plural Sangbruk SongUsage container title Sangbruk Song Usage Sangbruk Song usage tracking is active. Sanglogging er aktiv. Song usage tracking is inactive. Sanglogging er ikke aktiv. display vise printed utskrevet SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Slett sangbruksdata Delete Selected Song Usage Events? Slette valgte hendelser i loggen? Are you sure you want to delete selected Song Usage data? Er du sikker at du ønsker Ã¥ slette valgte data? Deletion Successful Sletting vellykket Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Velg en dato som sangbruksdata skal slettes fram til. Alle data som er registrert før denne datoen vil bli varig slettet. All requested data has been deleted successfully. Sletting av alle valgte data var vellykket. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Hente ut sangbruksdata Select Date Range Velg datoomrÃ¥de to til Report Location MÃ¥lmappe Output File Location Ut-fil plassering usage_detail_%s_%s.txt bruks_detaljer_%s_%s.txt Report Creation Rapport opprettet Report %s has been successfully created. Rapport %s er opprettet uten problem. Output Path Not Selected MÃ¥lmappe er ikke valgt You have not set a valid output location for your song usage report. Please select an existing path on your computer. Du mÃ¥ velge en gyldig mÃ¥l-mappe for sangbrukrapporten. Velg en eksisterende sti pÃ¥ harddisken. Report Creation Failed Rapportopprettelsen mislyktes An error occurred while creating the report: %s Det oppstod en feil ved oppretting av rapporten: %s SongsPlugin &Song &Sang Import songs using the import wizard. Importere sanger med importveiviseren. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Sangprogramtillegg</strong><br/> Dette tillegget gir mulighet til Ã¥ vise og administrere sanger. &Re-index Songs &Oppdatere sangindeksen Re-index the songs database to improve searching and ordering. Reindekserer sangdatabasen for Ã¥ oppnÃ¥ bedre inndeling og søking. Reindexing songs... Indekserer sanger pÃ¥ nytt ... Arabic (CP-1256) Arabisk (CP-1256) Baltic (CP-1257) Baltisk (CP-1257) Central European (CP-1250) Sentraleuropeisk (CP-1250) Cyrillic (CP-1251) Kyrillisk (CP-1251) Greek (CP-1253) Gresk (CP-1253) Hebrew (CP-1255) Hebraisk (CP-1255) Japanese (CP-932) Japansk (CP-932) Korean (CP-949) Koreansk (CP-949) Simplified Chinese (CP-936) Forenklet kinesisk (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Tradisjonell kinesisk (CP-950) Turkish (CP-1254) Tyrkisk (CP-1254) Vietnam (CP-1258) Vietnamesisk (CP-1258) Western European (CP-1252) Vesteuropeisk (CP-1252) Character Encoding Tegnkoding The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Tegntabell-innstillingen er avgjørende for riktige tegn. Vanligvis fungerer forhÃ¥ndsvalgt innstilling. Please choose the character encoding. The encoding is responsible for the correct character representation. Velg tegntabellinnstilling. Innstillingen er avgjørende for riktige tegn. Song name singular Sang Songs name plural Sanger Songs container title Sanger Exports songs using the export wizard. Eksporter sanger ved hjelp av eksport-veiviseren. Add a new song. Legg til en ny sang. Edit the selected song. Rediger valgte sang. Delete the selected song. Slett valgte sang. Preview the selected song. ForhÃ¥ndsvis valgte sang. Send the selected song live. Send valgte sang til fremvisning. Add the selected song to the service. Legg valgte sang til møteprogrammet. Reindexing songs Indekserer sanger pÃ¥ nytt CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importer sanger fra CCLI's SongSelect. Find &Duplicate Songs Finn sang&duplikater Find and remove duplicate songs in the song database. Finne og fjern sangduplikater fra sangdatabasen. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Tekst Music Author who wrote the music of a song Melodi Words and Music Author who wrote both lyrics and music of a song Tekst og melodi Translation Author who translated the song Oversettelse SongsPlugin.AuthorsForm Author Maintenance Behandle forfatterdata Display name: Vis navn: First name: Fornavn: Last name: Etternavn: You need to type in the first name of the author. Du mÃ¥ oppgi forfatterens fornavn. You need to type in the last name of the author. Du mÃ¥ oppgi forfatterens etternavn. You have not set a display name for the author, combine the first and last names? Du har ikke satt et visningsnavn til forfatteren, kombiner for- og etternavn. SongsPlugin.CCLIFileImport The file does not have a valid extension. Filen mangler en gyldig filendelse. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ugyldig DreamBeam sangfil. Mangler DreamSong tagg. SongsPlugin.EasyWorshipSongImport Administered by %s Administreres av %s "%s" could not be imported. %s "%s" kunne ikke importeres. %s Unexpected data formatting. Uventet dataformatering. No song text found. Ingen sangtekst funnet. [above are Song Tags with notes imported from EasyWorship] [ovenfor er sang-tillegg med notater importert fra EasyWorship] This file does not exist. Denne filen eksisterer ikke. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Kunne ikke finne "Songs.MB" filen. Det mÃ¥ være i samme mappe som "Songs.DB" filen. This file is not a valid EasyWorship database. Denne filen er ikke en gyldig EasyWorship database. Could not retrieve encoding. Kunne ikke hente koding. SongsPlugin.EditBibleForm Meta Data Metadata Custom Book Names Egendefinerte boknavn SongsPlugin.EditSongForm Song Editor Sangredigeringsverktøy &Title: &Tittel: Alt&ernate title: &Alternativ tittel: &Lyrics: &Sangtekst: &Verse order: &Versrekkefølge: Ed&it All Red&iger alle Title && Lyrics Tittel && sangtekst &Add to Song &Tilføye sang &Remove &Fjerne A&dd to Song Til&føye sangen R&emove F&jerne New &Theme Nytt &tema Copyright Information Copyright-informasjon Comments Kommentarer Theme, Copyright Info && Comments Tema, copyright info && kommentarer Add Author Legg til forfatter This author does not exist, do you want to add them? Denne forfatteren eksisterer ikke, skal den opprettes? This author is already in the list. Denne forfatteren er allerede pÃ¥ listen. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Du har ikke valgt et gyldig forfatternavn. Enten velg en forfatter fra listen eller skriv inn en ny forfatter og klikk "Legg til forfatter" -knappen for Ã¥ legge til en ny forfatter. Add Topic Legg til emne This topic does not exist, do you want to add it? Dette emnet eksisterer ikke, skal det opprettes? This topic is already in the list. Dette emnet eksisterer allerede i listen. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Du har ikke valgt et gyldig emne. Enten velger du et emne fra listen, eller skriv inn et nytt emne og klikk pÃ¥ "Legg til emne"-knappen for Ã¥ legge til det nye emnet. You need to type in a song title. Du mÃ¥ oppgi sangtittel. You need to type in at least one verse. Du mÃ¥ skrive inn minst ett vers. You need to have an author for this song. Du mÃ¥ angi en forfatter til denne sangen. Linked Audio Tilkoblet lydfil Add &File(s) Legg til &fil(er) Add &Media &Legg til media Remove &All Fjern &alle Open File(s) Ã…pne fil(er) <strong>Warning:</strong> Not all of the verses are in use. <strong>Advarsel:</strong> Ikke alle versene er i bruk. <strong>Warning:</strong> You have not entered a verse order. <strong>Advarsel:</strong> Du har ikke angitt versrekkefølge. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Det er ingen vers tilsvarende "%(invalid)s". Gyldige oppføringer er %(valid)s. Fyll inn versene adskilt med mellomrom. Invalid Verse Order Feil versrekkefølge &Edit Author Type &Rediger forfatterkategori Edit Author Type Rediger forfatterkategori Choose type for this author Velg kategori for denne forfatteren There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Det er ingen vers tilsvarende "%(invalid)s". Gyldig oppføring er %(valid)s. Fyll inn versene adskilt med mellomrom. &Manage Authors, Topics, Songbooks &Behandle forfattere, emner og sangbøker Add &to Song &Tilføye sang Re&move &Fjern Authors, Topics && Songbooks Forfattere, emner && sangbøker Add Songbook Legg til sangbok This Songbook does not exist, do you want to add it? Denne sangboken eksisterer ikke, skal den opprettes? This Songbook is already in the list. Denne sangboken finnes allerede i listen. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Du har ikke valgt en gyldig sangbok. Du kan enten velge en sangbok fra listen, eller lag en ny sangbok og klikk pÃ¥ "Tilføye sang" knappen for Ã¥ legge til den nye sangboken. SongsPlugin.EditVerseForm Edit Verse Rediger vers &Verse type: &Verstype: &Insert Set &inn Split a slide into two by inserting a verse splitter. Splitte siden i to ved Ã¥ sette et verssplitter. SongsPlugin.ExportWizardForm Song Export Wizard Veiviser for sangeksport Select Songs Velg sanger Check the songs you want to export. Merk sangene du vil eksportere. Uncheck All Fjern all merking Check All Merk alle Select Directory Velg katalog Directory: Katalog: Exporting Eksporterer Please wait while your songs are exported. Vennligst vent mens sangene blir eksportert. You need to add at least one Song to export. Du mÃ¥ legge til minst én sang som skal eksporteres. No Save Location specified LagringsomrÃ¥det er ikke angitt Starting export... Starter eksporten... You need to specify a directory. Du mÃ¥ angi en katalog. Select Destination Folder Velg mÃ¥lmappe Select the directory where you want the songs to be saved. Velg katalogen hvor du vil sangene skal lagres. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Denne veiviseren vil hjelpe til Ã¥ eksportere sangene til det Ã¥pne og gratis <strong>OpenLyrics</strong> sangfremviser-formatet. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ugyldig Foilpresenter sangfil. Ingen vers funnet. SongsPlugin.GeneralTab Enable search as you type Aktiver søk mens du skriver SongsPlugin.ImportWizardForm Select Document/Presentation Files Velg dokument/presentasjonsfiler Song Import Wizard Veiviser for sangimport This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Denne veiviseren vil hjelpe deg Ã¥ importere sanger fra en rekke formater. For Ã¥ starte importen klikk pÃ¥ "Neste-knappen" og sÃ¥ velg format og sted Ã¥ importere fra. Generic Document/Presentation Generic Document/Presentation Add Files... Legg til filer... Remove File(s) Fjern filer(er) Please wait while your songs are imported. Vennligst vent mens sangene importeres. Words Of Worship Song Files Words Of Worship sangfiler Songs Of Fellowship Song Files Songs Of Fellowship sangfiler SongBeamer Files SongBeamer filer SongShow Plus Song Files SongShow Plus sangfiler Foilpresenter Song Files Foilpresenter sangfiler Copy Kopier Save to File Lagre til fil The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. "Songs of Fellowship"-importøren har blitt deaktivert fordi OpenLP ikke fÃ¥r tilgang til OpenOffice eller LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Den generiske dokument/presentasjon importøren har blitt deaktivert fordi OpenLP ikke fÃ¥r tilgang til OpenOffice eller LibreOffice. OpenLyrics Files OpenLyrics filer CCLI SongSelect Files CCLI SongSelect-filer EasySlides XML File EasySlides XML-fil EasyWorship Song Database EasyWorship sangdatabase DreamBeam Song Files DreamBeam Sangfiler You need to specify a valid PowerSong 1.0 database folder. Du mÃ¥ angi en gyldig PowerSong 1.0 databasemappe. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Først mÃ¥ du konvertere ZionWorx databasen til en CSV tekstfil, som forklart i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx"> brukerveiledningen</a>. SundayPlus Song Files SundayPlus sangfiler This importer has been disabled. Denne importfunksjonen er deaktivert. MediaShout Database MediaShout database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importfunksjonen for MediaShout støttes bare i Windows. Den har blitt deaktivert pÃ¥ grunn av en manglende Python-modul. Hvis du ønsker Ã¥ bruke denne importøren, mÃ¥ du installere "pyodbc" modulen. SongPro Text Files SongPro tekstfiler SongPro (Export File) SongPro (eksportfil) In SongPro, export your songs using the File -> Export menu I SongPro eksporterer du sangene ved hjelp av File -> Export menyen EasyWorship Service File EasyWorship møteprogramfil WorshipCenter Pro Song Files WorshipCenter Pro sangfiler The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importfunksjonen for MediaShout støttes bare i Windows. Den har blitt deaktivert pÃ¥ grunn av en manglende Python-modul. Hvis du ønsker Ã¥ bruke denne importøren, mÃ¥ du installere "pyodbc" modulen. PowerPraise Song Files PowerPraise sangfiler PresentationManager Song Files PresentationManager sangfiler ProPresenter 4 Song Files ProPresenter 4 sangfiler Worship Assistant Files Worship Assistant filer Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. I Worship Assistant mÃ¥ du eksportere din database til en CSV fil. OpenLyrics or OpenLP 2 Exported Song OpenLyrics eller OpenLP 2 eksporterte sanger OpenLP 2 Databases OpenLP 2 databaser LyriX Files LyriX Filer LyriX (Exported TXT-files) LyriX (Eksporterte TXT-filer) VideoPsalm Files VideoPsalm Filer VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s VideoPsalm sangbøker finnes vanligvis i %s SongsPlugin.LyrixImport Error: %s Feil: %s SongsPlugin.MediaFilesForm Select Media File(s) Velg mediafilel(er) Select one or more audio files from the list below, and click OK to import them into this song. Velg en eller flere lydfiler fra listen nedenfor, og klikk OK for Ã¥ importere dem inn i denne sangen. SongsPlugin.MediaItem Titles Titler Lyrics Sangtekster CCLI License: CCLI Lisens: Entire Song Hele sangen Maintain the lists of authors, topics and books. Vedlikeholde listene over forfattere, emner og bøker. copy For song cloning kopi Search Titles... Søk titler... Search Entire Song... Søk i hele sanginnholdet... Search Lyrics... Søk i sangtekster... Search Authors... Søk forfattere... Are you sure you want to delete the "%d" selected song(s)? Er du sikker pÃ¥ at du vil slette de "%d" valgte sang(ene)? Search Songbooks... Søk i sangbøker SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Kan ikke Ã¥pne MediaShout databasen. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Ikke en gyldig OpenLP 2 sangdatabase. SongsPlugin.OpenLyricsExport Exporting "%s"... Eksporterer "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ugyldig OpenSong sangfil. Mangler sang tagg. SongsPlugin.PowerSongImport No songs to import. Ingen sanger Ã¥ importere. Verses not found. Missing "PART" header. Versene ikke funnet. Mangler "PART" overskrift. No %s files found. Ingen %s fler funnet. Invalid %s file. Unexpected byte value. Ugyldig %s fil. Uventet byteverdi. Invalid %s file. Missing "TITLE" header. Ugyldig %s fil. Mangler "TITLE" overskrift. Invalid %s file. Missing "COPYRIGHTLINE" header. Ugyldig %s fil. Manglende "COPYRIGHTLINE" overskrift. SongsPlugin.SongBookForm &Name: &Navn: &Publisher: &Forlegger: You need to type in a name for the book. Du mÃ¥ skrive inn et navn pÃ¥ boken. Songbook Maintenance Vedlikehold av sangbøker SongsPlugin.SongExportForm Your song export failed. Sangeksporten mislyktes. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Ferdig eksport. For Ã¥ importere disse filene bruk <strong>OpenLyrics</strong>-importøren. Your song export failed because this error occurred: %s Eksport av sangen mislyktes fordi denne feilen oppstod: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: Følgende sanger kunne ikke importeres: Cannot access OpenOffice or LibreOffice FÃ¥r ikke tilgang til OpenOffice eller LibreOffice Unable to open file Kan ikke Ã¥pne fil File not found Fil ikke funnet SongsPlugin.SongMaintenanceForm Could not add your author. Kunne ikke legge til forfatteren. This author already exists. Denne forfatteren finnes allerede. Could not add your topic. Kunne ikke legge til emnet. This topic already exists. Dette emnet finnes allerede. Could not add your book. Kunne ikke legge til boken. This book already exists. Denne boken finnes allerede. Could not save your changes. Kunne ikke lagre endringene. Could not save your modified author, because the author already exists. Kunne ikke lagre den endrede forfatteren fordi forfatteren finnes allerede. Could not save your modified topic, because it already exists. Kunne ikke lagre det endrede emnet, fordi det finnes allerede. Delete Author Slett forfatter Are you sure you want to delete the selected author? Er du sikker pÃ¥ at du vil slette den valgte forfatteren? This author cannot be deleted, they are currently assigned to at least one song. Denne forfatteren kan ikke slettes. Den er for øyeblikket tilknyttet minst én sang. Delete Topic Slett emne Are you sure you want to delete the selected topic? Er du sikker pÃ¥ at du vil slette valgte emne? This topic cannot be deleted, it is currently assigned to at least one song. Dette emnet kan ikke slettes. Det er for øyeblikket tilknyttet minst én sang. Delete Book Slett bok Are you sure you want to delete the selected book? Er du sikker pÃ¥ at du vil slette valgte bok? This book cannot be deleted, it is currently assigned to at least one song. Denne boken kan ikke slettes. Den er for øyeblikket tilknyttet minst én sang. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Forfatteren %s finnes allerede. Vil du lage sanger med forfatter %s bruk den eksisterende forfatter %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Emnet %s finnes allerede. Vil du lage sanger med emne %s bruk det eksisterende emne %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Boken %s finnes allerede. Vil du lage sanger med bok %s bruk den eksisterende bok %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect importør <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Merk:</strong> En Internettilkobling er nødvendig for Ã¥ importere sanger fra CLLI SongSelect. Username: Brukernavn: Password: Passord: Save username and password Lagre brukernavn og passord Login Logg inn Search Text: Søketekst: Search Søk Found %s song(s) Fant %s sang(er) Logout Logg ut View Vis Title: Tittel: Author(s): Forfatter(e): Copyright: Copyright: CCLI Number: CCLI Nummer: Lyrics: Sangtekster: Back Tilbake Import Importere More than 1000 results Mer enn 1000 treff Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Søket har gitt mer enn 1000 treff, og av den grunn stoppet. Vennligst avgrens søket for Ã¥ oppnÃ¥ et bedre resultat. Logging out... Logger av... Save Username and Password Lagre brukernavn og passord WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. ADVARSEL: Ã… lagre ditt brukernavn og passord her er usikkert, passordet blir lagret i klartekst. Klikk Ja/Yes for Ã¥ lagre passordet eller Nei/No for Ã¥ avbryte dette. Error Logging In Feil ved innlogging There was a problem logging in, perhaps your username or password is incorrect? Det var problemer med Ã¥ logge inn, kanskje brukernavn eller passord er feil? Song Imported Sang importert Incomplete song Ufullstendig sang This song is missing some information, like the lyrics, and cannot be imported. Denne sangen har noen mangler, f. eks sangteksten, og kan derfor ikke importeres. Your song has been imported, would you like to import more songs? Sangen har blitt importert, ønsker du Ã¥ importere flere sanger? Stop Stopp SongsPlugin.SongsTab Songs Mode Sangmodus Display verses on live tool bar Vis versene pÃ¥ fremvis - verktøylinje Update service from song edit Oppgrader sanger ogsÃ¥ i møteprogramet Import missing songs from service files Importer manglende sanger fra møteprogram filene Display songbook in footer Vis sangbok i bunntekst Display "%s" symbol before copyright info Sett "%s" symbol foran copyright informasjonen SongsPlugin.TopicsForm Topic Maintenance Vedlikehold av emner Topic name: Emnenavn: You need to type in a topic name. Vennligst skriv inn et emnenavn. SongsPlugin.VerseType Verse Vers Chorus Refreng Bridge Stikk Pre-Chorus Bro Intro Intro Ending Avslutning Other Tilleggsinformasjon SongsPlugin.VideoPsalmImport Error: %s Feil: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Ugyldig Words of Worship sangfil. Mangler "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Ugyldig Words of Worship sang fil. Mangler "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Feil ved lesing av CSV-fil. Line %d: %s Linje %d: %s Decoding error: %s Dekodingsfeil: %s File not valid WorshipAssistant CSV format. Filen er ikke i gyldig WorshipAssistant CSV-format. Record %d Post %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Kan ikke opprette kontakt med WorshipCenter Pro databasen. SongsPlugin.ZionWorxImport Error reading CSV file. Feil ved lesing av CSV-fil. File not valid ZionWorx CSV format. Filen er ikke i gyldig ZionWorx CSV-format. Line %d: %s Linje %d: %s Decoding error: %s Dekodingsfeil: %s Record %d Post %d Wizard Wizard Veiviser This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Denne veiviseren vil hjelpe deg Ã¥ fjerne sangduplikater fra sangdatabasen. Du fÃ¥r muligheten til Ã¥ vurdere alle potensielle duplikater før de slettes, ingen sanger vil bli slettet uten din godkjenning. Searching for duplicate songs. Søker etter sangduplikater. Please wait while your songs database is analyzed. Vennligst vent mens sangdatabasen blir analysert. Here you can decide which songs to remove and which ones to keep. Her kan du velge hvilke sanger du vil slette eller beholde. Review duplicate songs (%s/%s) GjennomgÃ¥ sangduplikater (%s/%s) Information Informasjon No duplicate songs have been found in the database. Ingen sangduplikater er blitt funnet i databasen. OpenLP-2.4/resources/i18n/cs.ts0000644000175000017500000155476312657640340015344 0ustar raoulraoul AlertsPlugin &Alert &UpozornÄ›ní Show an alert message. Zobrazit vzkaz upozornÄ›ní. Alert name singular UpozornÄ›ní Alerts name plural UpozornÄ›ní Alerts container title UpozornÄ›ní <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Modul upozornÄ›ní</strong><br />Modul upozornÄ›ní umožňuje zobrazovat různé hlášky a upozornÄ›ní na zobrazovací obrazovce. AlertsPlugin.AlertForm Alert Message Vzkaz upozornÄ›ní Alert &text: &Text upozornÄ›ní: &New &Nový &Save &Uložit Displ&ay &Zobrazit Display && Cl&ose Zobrazit a za&vřít New Alert Nové upozornÄ›ní &Parameter: &Parametr: No Parameter Found Parametr nenalezen You have not entered a parameter to be replaced. Do you want to continue anyway? Nebyl zadán žádný parametr pro nahrazení. Chcete pÅ™esto pokraÄovat? No Placeholder Found Zástupný znak nenalezen The alert text does not contain '<>'. Do you want to continue anyway? Text upozornÄ›ní neobsahuje '<>'. Chcete pÅ™esto pokraÄovat? You haven't specified any text for your alert. Please type in some text before clicking New. Nebyl zadán žádný text upozornÄ›ní. PÅ™ed klepnutím na Nový prosím zadejte nÄ›jaký text. AlertsPlugin.AlertsManager Alert message created and displayed. Vzkaz upozornÄ›ní byl vytvoÅ™en a zobrazen. AlertsPlugin.AlertsTab Font Písmo Font name: Název písma: Font color: Barva písma: Background color: Barva pozadí: Font size: Velikost písma: Alert timeout: ÄŒas vyprÅ¡ení upozornÄ›ní: BiblesPlugin &Bible &Bible Bible name singular Bible Bibles name plural Bible Bibles container title Bible No Book Found Kniha nenalezena No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. V Bibli nebyla nalezena odpovídající kniha. Prověřte, že název knihy byl zadán správnÄ›. Import a Bible. Import Bible. Add a new Bible. PÅ™idat novou Bibli. Edit the selected Bible. Upravit vybranou Bibli. Delete the selected Bible. Smazat vybranou Bibli. Preview the selected Bible. Náhled vybrané Bible. Send the selected Bible live. Zobrazit vybranou Bibli naživo. Add the selected Bible to the service. PÅ™idat vybranou Bibli ke službÄ›. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Modul Bible</strong><br />Modul Bible umožňuje bÄ›hem služby zobrazovat verÅ¡e z různých zdrojů. &Upgrade older Bibles &Aktualizovat starší Bibles Upgrade the Bible databases to the latest format. Povýšit databáze Bible na nejnovÄ›jší formát. Genesis 1. Mojžíšova Exodus 2. Mojžíšova Leviticus 3. Mojžíšova Numbers 4. Mojžíšova Deuteronomy 5. Mojžíšova Joshua Jozue Judges Soudců Ruth Rút 1 Samuel 1. Samuelova 2 Samuel 2. Samuelova 1 Kings 1. Královská 2 Kings 2. Královská 1 Chronicles 1. Paralipomenon 2 Chronicles 2. Paralipomenon Ezra Ezdráš Nehemiah Nehemjáš Esther Ester Job Jób Psalms Žalmy Proverbs Přísloví Ecclesiastes Kazatel Song of Solomon Píseň písní Isaiah Izajáš Jeremiah Jeremjáš Lamentations PlÃ¡Ä Ezekiel Ezechiel Daniel Daniel Hosea Ozeáš Joel Jóel Amos Ãmos Obadiah Abdijáš Jonah Jonáš Micah Micheáš Nahum Nahum Habakkuk Abakuk Zephaniah Sofonjáš Haggai Ageus Zechariah Zacharjáš Malachi Malachiáš Matthew MatouÅ¡ Mark Marek Luke Lukáš John Jan Acts Skutky apoÅ¡tolské Romans Římanům 1 Corinthians 1. Korintským 2 Corinthians 2. Korintským Galatians Galatským Ephesians Efezským Philippians Filipským Colossians Koloským 1 Thessalonians 1. Tesalonickým 2 Thessalonians 2. Tesalonickým 1 Timothy 1. Timoteovi 2 Timothy 2. Timoteovi Titus Titovi Philemon Filemonovi Hebrews Židům James List Jakubův 1 Peter 1. list Petrův 2 Peter 2. list Petrův 1 John 1. list Janův 2 John 2. list Janův 3 John 3. list Janův Jude List Judův Revelation Zjevení Janovo Judith Júdit Wisdom Kniha moudrosti Tobit Tobijáš Sirach Sírachovec Baruch Báruk 1 Maccabees 1. Makabejská 2 Maccabees 2. Makabejská 3 Maccabees 3. Makabejská 4 Maccabees 4. Makabejská Rest of Daniel Zbytek Daniele Rest of Esther Zbytek Ester Prayer of Manasses Modlitba Manasese Letter of Jeremiah Jeremiášův Dopis Prayer of Azariah Modlitba Azarjáše Susanna Zuzana Bel Bel 1 Esdras 1. Ezdrášova 2 Esdras 2. Ezdrášova : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verÅ¡ verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verÅ¡e - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 do , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 a end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse konec BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Je nutno uvést název verze Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Bibli je potÅ™eba nastavit autorská práva. Bible, které jsou volná díla (Public Domain), je nutno takto oznaÄit. Bible Exists Bible existuje This Bible already exists. Please import a different Bible or first delete the existing one. Tato Bible už existuje. Importujte prosím jinou Bibli nebo nejdříve smažte tu existující. You need to specify a book name for "%s". Je nutno uvést název knihy pro "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. "%s" není správný název knihy. Čísla mohou být použita jen na zaÄátku a pak musí následovat jeden nebo více neÄíslných znaků. Duplicate Book Name Duplicitní název knihy The Book Name "%s" has been entered more than once. "%s" jako název knihy byl zadán více než jednou. BiblesPlugin.BibleManager Scripture Reference Error Chyba v odkazu do Bible Web Bible cannot be used Bibli z www nelze použít Text Search is not available with Web Bibles. Hledání textu není dostupné v Bibli z www. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nebylo zadáno slovo pro hledání. K hledání textu obsahující vÅ¡echna slova je nutno tato slova oddÄ›lit mezerou. OddÄ›lením slov Äárkou se bude hledat text obsahující alespoň jedno ze zadaných slov. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Žádné Bible nejsou nainstalovány. K pÅ™idání jedné nebo více Biblí prosím použijte Průvodce importem. No Bibles Available Žádné Bible k dispozici Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Odkaz z Bible buÄto není podporován aplikací OpenLP nebo je neplatný. UjistÄ›te se prosím, že odkaz odpovídá jednomu z následujících vzorů nebo další detaily viz manuál: Kniha Kapitola Kniha Kapitola%(range)sKapitola Kniha Kapitola%(verse)sVerÅ¡%(range)sVerÅ¡ Kniha Kapitola%(verse)sVerÅ¡%(range)sVerÅ¡%(list)sVerÅ¡%(range)sVerÅ¡ Kniha Kapitola%(verse)sVerÅ¡%(range)sVerÅ¡%(list)sKapitola%(verse)sVerÅ¡%(range)sVerÅ¡ Kniha Kapitola%(verse)sVerÅ¡%(range)sKapitola%(verse)sVerÅ¡ BiblesPlugin.BiblesTab Verse Display Zobrazit verÅ¡ Only show new chapter numbers Zobrazit jen Äíslo nové kapitoly Bible theme: Motiv Bible: No Brackets Žádné závorky ( And ) ( A ) { And } { A } [ And ] [ A ] Note: Changes do not affect verses already in the service. Poznámka: VerÅ¡e, které jsou už ve službÄ›, nejsou zmÄ›nami ovlivnÄ›ny. Display second Bible verses Zobrazit druhé verÅ¡e z Bible Custom Scripture References Uživatelské odkazy z Bible Verse Separator: OddÄ›lovaÄ veršů: Range Separator: OddÄ›lovaÄ rozsahů: List Separator: OddÄ›lovaÄ seznamů: End Mark: UkonÄovací znaÄka: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Lze definovat více oddÄ›lovaÄů verÅ¡e. Musí být oddÄ›leny vislou Äárou "|". Pro použití výchozí hodnoty smažte tento řádek. English ÄŒeÅ¡tina Default Bible Language Výchozí jazyk Bible Book name language in search field, search results and on display: Jazyk názvů knih ve vyhledávacím poli, výsledcích vyhledávání a pÅ™i zobrazení: Bible Language Jazyk Bible Application Language Jazyk aplikace Show verse numbers Zobrazit Äísla veršů BiblesPlugin.BookNameDialog Select Book Name Vybrat název knihy Current name: SouÄasný název: Corresponding name: Odpovídající název: Show Books From Zobrazit knihy od Old Testament Starý zákon New Testament Nový zákon Apocrypha Apokryfy The following book name cannot be matched up internally. Please select the corresponding name from the list. Pro následující název knihy není odpovídající vnitÅ™ní název. Vyberte prosím odpovídající název ze seznamu. BiblesPlugin.BookNameForm You need to select a book. Je potÅ™eba vybrat knihu. BiblesPlugin.CSVBible Importing books... %s Importuji knihy... %s Importing verses... done. Importuji verÅ¡e... hotovo. BiblesPlugin.EditBibleForm Bible Editor Editor Bible License Details Podrobnosti k licenci Version name: Název verze: Copyright: Autorská práva: Permissions: Povolení: Default Bible Language Výchozí jazyk Bible Book name language in search field, search results and on display: Jazyk názvů knih ve vyhledávacím poli, výsledcích vyhledávání a pÅ™i zobrazení: Global Settings Globální nastavení Bible Language Jazyk Bible Application Language Jazyk aplikace English ÄŒeÅ¡tina This is a Web Download Bible. It is not possible to customize the Book Names. Toto je Bible stahovaná z Internetu. Není možné pÅ™izpůsobit si názvy knih. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Pro pÅ™izpůsobení názvů knih musí být vybrán "Jazyk Bible" v kartÄ› Meta Data nebo na stránce Bible v Nastavení OpenLP, pokud je vybráno "Globální nastavení". BiblesPlugin.HTTPBible Registering Bible and loading books... Registruji Bibli a stahuji knihy... Registering Language... Registruji jazyk... Importing %s... Importing <book name>... Importuji %s... Download Error Chyba stahování There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. PÅ™i stahování výbÄ›ru veršů se vyskytl problém. Prosím prověřte své internetové pÅ™ipojení. Pokud se tato chyba stále objevuje, zvaÅ¡te prosím nahlášení chyby. Parse Error Chyba zpracování There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. PÅ™i rozbalování výbÄ›ru veršů se vyskytl problém. Pokud se tato chyba stále objevuje, zvaÅ¡te prosím nahlášení chyby. BiblesPlugin.ImportWizardForm Bible Import Wizard Průvodce importem Bible This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Tento průvodce usnadní import Biblí z různých formátů. Proces importu se spustí klepnutím níže na tlaÄítko další. Potom vyberte formát, ze kterého se bude Bible importovat. Web Download Stáhnutí z www Location: UmístÄ›ní: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bible: Download Options Volby stahování Server: Server: Username: Uživatelské jméno: Password: Heslo: Proxy Server (Optional) Proxy Server (Volitelné) License Details Podrobnosti k licenci Set up the Bible's license details. Nastavit podrobnosti k licenci Bible. Version name: Název verze: Copyright: Autorská práva: Please wait while your Bible is imported. PoÄkejte prosím, než se Bible naimportuje. You need to specify a file with books of the Bible to use in the import. Je potÅ™eba urÄit soubor s knihami Bible. Tento soubor se použije pÅ™i importu. You need to specify a file of Bible verses to import. K importu je tÅ™eba urÄit soubor s verÅ¡emi Bible. You need to specify a version name for your Bible. Je nutno uvést název verze Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Bibli je potÅ™eba nastavit autorská práva. Bible, které jsou volná díla (Public Domain), je nutno takto oznaÄit. Bible Exists Bible existuje This Bible already exists. Please import a different Bible or first delete the existing one. Tato Bible už existuje. Importujte prosím jinou Bibli nebo nejdříve smažte tu existující. Your Bible import failed. Import Bible selhal. CSV File CSV soubor Bibleserver Bibleserver Permissions: Povolení: Bible file: Soubor s Biblí: Books file: Soubor s knihami: Verses file: Soubor s verÅ¡i: Registering Bible... Registruji Bibli... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bible registrována. UpozornÄ›ní: VerÅ¡e budou stahovány na vyžádání a proto je vyžadováno internetové pÅ™ipojení. Click to download bible list KlepnÄ›te pro stažení seznamu Biblí Download bible list Stáhnout seznam Biblí Error during download Chyba bÄ›hem stahování An error occurred while downloading the list of bibles from %s. Vznikla chyba pÅ™i stahování seznamu Biblí z %s. BiblesPlugin.LanguageDialog Select Language Vybrat jazyk OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP není schopen urÄit jazyk tohoto pÅ™ekladu Bible. Vyberte prosím jazyk ze seznamu níže. Language: Jazyk: BiblesPlugin.LanguageForm You need to choose a language. Je potÅ™eba vybrat jazyk. BiblesPlugin.MediaItem Quick Rychlý Find: Hledat: Book: ZpÄ›vník: Chapter: Kapitola: Verse: VerÅ¡: From: Od: To: Do: Text Search Hledání textu Second: Druhý: Scripture Reference Odkaz do Bible Toggle to keep or clear the previous results. PÅ™epnout ponechání nebo smazání pÅ™edchozích výsledků. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nelze kombinovat jednoduché a dvojité výsledky hledání veršů v Bibli. PÅ™ejete si smazat výsledky hledání a zaÄít s novým vyhledáváním? Bible not fully loaded. Bible není naÄtena celá. Information Informace The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druhá Bible neobsahuje vÅ¡echny verÅ¡e jako jsou v hlavní Bibli. Budou zobrazeny jen verÅ¡e nalezené v obou Biblích. %d veršů nebylo zahrnuto ve výsledcích. Search Scripture Reference... Hledat odkaz do Bible... Search Text... Hledat text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Jste si jist, že chcete úplnÄ› vymazat Bibli "%s" z OpenLP? Pro použití bude potÅ™eba naimportovat Bibli znovu. Advanced PokroÄilé BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Zadán nesprávný typ souboru s Biblí. OpenSong Bible mohou být komprimovány. PÅ™ed importem je tÅ™eba je rozbalit. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Zadán nesprávný typ souboru s Biblí. Tento soubor vypadá jako Zefania XML bible. Prosím použijte volbu importovat z formátu Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importuji %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Odstraňuji nepoužívané znaÄky (může trvat nÄ›kolik minut)... Importing %(bookname)s %(chapter)s... Importuji %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Vybrat složku pro zálohu Bible Upgrade Wizard Průvodce aktualizací Bible This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Tento průvodce pomáhá s aktualizací existujcích Biblí z pÅ™edchozí verze OpenLP 2. Pro spuÅ¡tÄ›ní aktualizace klepnÄ› níže na tlaÄítko Další. Select Backup Directory Vybrat složku pro zálohu Please select a backup directory for your Bibles Vyberte prosím složku pro zálohu Biblí Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. PÅ™edchozí vydání OpenLP 2.0 nejsou schopny aktualizovat Bible. Bude vytvoÅ™ena záloha souÄasných Biblí, aby bylo možné v případÄ› potÅ™eby jednoduÅ¡e nakopírovat soubory zpÄ›t do datové složky aplikace OpenLP. Instrukce, jak obnovit soubory, lze nalézt v <a href="http://wiki.openlp.org/faq">Äasto kladené otázky</a>. Please select a backup location for your Bibles. Vyberte prosím umístÄ›ní pro zálohu Biblí. Backup Directory: Složka pro zálohu: There is no need to backup my Bibles Není potÅ™eba zálohovat Bible Select Bibles Vybrat Bible Please select the Bibles to upgrade Vyberte prosím Bible k aktualizaci Upgrading Aktualizuji Please wait while your Bibles are upgraded. PoÄkejte prosím, než budou Bible aktualizovány. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Záloha nebyla úspěšná. Pro zálohu Biblí je nutno oprávnÄ›ní k zápisu do zadané složky. Upgrading Bible %s of %s: "%s" Failed Aktualizuji Bibli %s z %s: "%s" Selhalo Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizuji Bibli %s z %s: "%s" Aktualizuji ... Download Error Chyba stahování To upgrade your Web Bibles an Internet connection is required. Pro aktualizaci Biblí z www je vyžadováno internetové pÅ™ipojení. Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizuji Bibli %s z %s: "%s" Aktualizuji %s ... Upgrading Bible %s of %s: "%s" Complete Aktualizuji Bibli %s z %s: "%s" DokonÄeno , %s failed , %s selhalo Upgrading Bible(s): %s successful%s Aktualizace Biblí: %s úspěšné%s Upgrade failed. Aktualizace selhala. You need to specify a backup directory for your Bibles. Je potÅ™eba upÅ™esnit složku pro zálohu Biblí. Starting upgrade... SpouÅ¡tím aktualizaci... There are no Bibles that need to be upgraded. Žádné Bible nepotÅ™ebují aktualizovat. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualizace Biblí: %(success)d úspěšné%(failed_text)s UpozornÄ›ní: VerÅ¡e z www Bible budou stáhnuty na vyžádání a proto je vyžadováno internetové pÅ™ipojení. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Zadán nesprávný typ souboru s Biblí. Zefania Bible mohou být komprimovány. PÅ™ed importem je tÅ™eba je nejdříve rozbalit. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importuji %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Uživatelský snímek Custom Slides name plural Uživatelské snímky Custom Slides container title Uživatelské snímky Load a new custom slide. NaÄíst nový uživatelský snímek. Import a custom slide. Import uživatelského snímku. Add a new custom slide. PÅ™idat nový uživatelský snímek. Edit the selected custom slide. Upravit vybraný uživatelský snímek. Delete the selected custom slide. Smazat vybraný uživatelský snímek. Preview the selected custom slide. Náhled vybraného uživatelského snímku. Send the selected custom slide live. Zobrazit vybraný uživatelský snímek naživo. Add the selected custom slide to the service. PÅ™idat vybraný uživatelský snímek ke službÄ›. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Modul uživatelský snímek</strong><br />Modul uživatelský snímek dovoluje nastavit snímkům libovolný text, který může být zobrazen na obrazovce stejným způsobem jako písnÄ›. Tento modul poskytuje vÄ›tší volnost než modul písnÄ›. CustomPlugin.CustomTab Custom Display Uživatelské zobrazení Display footer PatiÄka zobrazení Import missing custom slides from service files Import chybÄ›jících uživatelských snímků ze souborů služby CustomPlugin.EditCustomForm Edit Custom Slides Upravit vlastní snímky &Title: &Název: Add a new slide at bottom. PÅ™idat nový snímek na konec. Edit the selected slide. Upravit vybraný snímek. Edit all the slides at once. Upravit vÅ¡echny snímky najednou. Split a slide into two by inserting a slide splitter. Vložením oddÄ›lovaÄe se snímek rozdÄ›lí na dva. The&me: &Motiv: &Credits: &Zásluhy: You need to type in a title. Je nutno zadat název. Ed&it All &Upravit vÅ¡e Insert Slide Vložit snímek You need to add at least one slide. Je potÅ™eba pÅ™idat alespoň jeden snímek. CustomPlugin.EditVerseForm Edit Slide Upravit snímek CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Jste si jisti, že chcete smazat "%d" vybraných uživatelských snímků? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Modul obrázek</strong><br />Modul obrázek se stará o zobrazování obrázků.<br />Jedna z charakteristických funkcí tohoto modulu je schopnost ve správci služby seskupit nÄ›kolik obrázků dohromady. Tato vlastnost zjednoduÅ¡uje zobrazení více obrázků. Tento modul také využívá vlastnosti "Äasová smyÄka" aplikace OpenLP a je tudíž možno vytvoÅ™it prezentaci obrázků, která poběží samostatnÄ›. Nadto lze využitím obrázků z modulu pÅ™ekrýt pozadí souÄasného motivu. Image name singular Obrázek Images name plural Obrázky Images container title Obrázky Load a new image. NaÄíst nový obrázek. Add a new image. PÅ™idat nový obrázek. Edit the selected image. Upravit vybraný obrázek. Delete the selected image. Smazat vybraný obrázek. Preview the selected image. Náhled vybraného obrázku. Send the selected image live. Zobrazit vybraný obrázek naživo. Add the selected image to the service. PÅ™idat vybraný obrázek ke službÄ›. ImagePlugin.AddGroupForm Add group PÅ™idat skupinu Parent group: NadÅ™azená skupina Group name: Název skupiny: You need to type in a group name. Je potÅ™eba zadat název skupiny. Could not add the new group. Nemohu pÅ™idat novou skupinu. This group already exists. Tato skupina již existuje. ImagePlugin.ChooseGroupForm Select Image Group Vybrat skupinu obrázků Add images to group: PÅ™idat obrázky ke skupinÄ›: No group Žádná skupina Existing group Existující skupina New group Nová skupina ImagePlugin.ExceptionDialog Select Attachment Vybrat přílohu ImagePlugin.MediaItem Select Image(s) Vybrat obrázky You must select an image to replace the background with. K nahrazení pozadí musíte nejdříve vybrat obrázek. Missing Image(s) ChybÄ›jící obrázky The following image(s) no longer exist: %s Následující obrázky už neexistují: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Následující obrázky už neexistují: % Chcete pÅ™idat ostatní obrázky? There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahrazením pozadí. Obrázek "%s" už neexistuje. There was no display item to amend. Žádná položka k zobrazení nebyla pozmÄ›nÄ›na. -- Top-level group -- -- Nejvyšší skupina -- You must select an image or group to delete. Je tÅ™eba vybrat obrázek nebo skupinu ke smazání. Remove group Odstranit skupinu Are you sure you want to remove "%s" and everything in it? Jste si jist, že chcete odstranit "%s" a vÅ¡e co obsahuje? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Viditelné pozadí pro obrázky s jiným pomÄ›rem stran než má obrazovka. Media.player Audio Zvuk Video Video VLC is an external player which supports a number of different formats. VLC je externí pÅ™ehrávaÄ médií, který podporuje mnoho různých formátů. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit je pÅ™ehrávaÄ médií, který běží v internetovém prohlížeÄi. Tento pÅ™ehrávaÄ dovoluje umístit text nad video. This media player uses your operating system to provide media capabilities. Tento pÅ™ehrávaÄ médií využívá pro pÅ™ehrávání schopností operaÄního systému. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Modul média</strong><br />Modul média umožňuje pÅ™ehrávat audio a video. Media name singular Média Media name plural Média Media container title Média Load new media. NaÄíst nové médium. Add new media. PÅ™idat nové médium. Edit the selected media. Upravit vybrané médium. Delete the selected media. Smazat vybrané médium. Preview the selected media. Náhled vybraného média. Send the selected media live. Zobrazit vybrané médium naživo. Add the selected media to the service. PÅ™idat vybrané médium ke službÄ›. MediaPlugin.MediaClipSelector Select Media Clip Vybrat klip Source Zdroj Media path: Cesta: Select drive from list Vybrat mechaniku ze seznamu Load disc NaÄíst disk Track Details Podrobnosti stopy Title: Nadpis: Audio track: Zvuková stopa: Subtitle track: Stopa titulků: HH:mm:ss.z HH:mm:ss.d Clip Range Rozsah klipu Start point: ZaÄátek: Set start point Nastavit zaÄátek Jump to start point PÅ™eskoÄit na zaÄátek End point: Konec: Set end point Nastavit konec Jump to end point PÅ™eskoÄit na konec MediaPlugin.MediaClipSelectorForm No path was given Nebyla zadána cesta Given path does not exists Zadaná cesta neexistuje An error happened during initialization of VLC player PÅ™i inicializaci pÅ™ehrávaÄe VLC vznikla chyba VLC player failed playing the media VLC pÅ™ehrávaÄ selhal pÅ™i pÅ™ehrávání médií CD not loaded correctly CD není správnÄ› naÄteno The CD was not loaded correctly, please re-load and try again. CD nebylo správnÄ› naÄteno. Prosím naÄtÄ›te CD jeÅ¡tÄ› jednou a zkuste to znovu. DVD not loaded correctly DVD není správnÄ› naÄteno The DVD was not loaded correctly, please re-load and try again. DVD nebylo správnÄ› naÄteno. Prosím naÄtÄ›te DVD jeÅ¡tÄ› jednou a zkuste to znovu. Set name of mediaclip Nastavit název klipu Name of mediaclip: Název klipu: Enter a valid name or cancel Zadejte platný název nebo zruÅ¡te Invalid character Neplatný znak The name of the mediaclip must not contain the character ":" Název klipu nesmí obsahovat znak ":" MediaPlugin.MediaItem Select Media Vybrat médium You must select a media file to delete. Ke smazání musíte nejdříve vybrat soubor s médiem. You must select a media file to replace the background with. K nahrazení pozadí musíte nejdříve vybrat soubor s médiem. There was a problem replacing your background, the media file "%s" no longer exists. Problém s nahrazením pozadí. Soubor s médiem "%s" už neexistuje. Missing Media File ChybÄ›jící soubory s médii The file %s no longer exists. Soubor %s už neexistuje. Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) There was no display item to amend. Žádná položka k zobrazení nebyla pozmÄ›nÄ›na. Unsupported File Nepodporovaný soubor Use Player: Použít pÅ™ehrávaÄ: VLC player required Vyžadován pÅ™ehrávaÄ VLC VLC player required for playback of optical devices Pro pÅ™ehrávání optických disků je vyžadován pÅ™ehrávaÄ VLC Load CD/DVD NaÄíst CD/DVD Load CD/DVD - only supported when VLC is installed and enabled NaÄíst CD/DVD - podporováno jen když je nainstalovaný a zapnutý pÅ™ehrávaÄ VLC The optical disc %s is no longer available. Optický disk %s už není dostupný. Mediaclip already saved Klip již uložen This mediaclip has already been saved Tento klip byl již uložen MediaPlugin.MediaTab Allow media player to be overridden Povolit pÅ™ekrytí pÅ™ehrávaÄe médií Start Live items automatically Automaticky spouÅ¡tÄ›t položky Naživo OPenLP.MainWindow &Projector Manager Správce &projektorů OpenLP Image Files Soubory s obrázky Information Informace Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Formát Bible byl zmÄ›nÄ›n. Existující Bible musí být aktualizovány. Má se aktualizace provét teÄ? Backup Zálohování OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Byla nainstalována nová verze aplikace OpenLP. PÅ™ejete si vytvoÅ™it zálohu datové složky aplikace OpenLP? Backup of the data folder failed! Zálohování datové složky selhalo! A backup of the data folder has been created at %s Záloha datové složky byla vytvoÅ™ena v %s Open Otevřít OpenLP.AboutForm Credits Zásluhy License Licence build %s sestavení %s 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; version 2 of the License. Tento program je svobodný software; můžete jej šířit a modifikovat podle ustanovení GNU General Public License, vydávané Free Software Foundation; a to podle verze 2 této licence. 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 below for more details. Tato aplikace je šířena v nadÄ›ji, že bude užiteÄná, avÅ¡ak BEZ JAKÉKOLI ZÃRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URÄŒITà ÚČEL. Další podrobnosti viz níže. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source prezentace textů písní OpenLP je volnÄ› dostupný kÅ™esÅ¥anský software nebo také software pro prezentaci textů písní. PÅ™i kÅ™esÅ¥anských bohoslužbách slouží k zobrazení písní, veršů z Bible, videí, obrázků a dokonce prezentací (pokud Impress, PowerPoint nebo PowerPoint Viewer je instalován). K používání je nutný poÄítaÄ a dataprojektor. Více informací o OpenLP: http://openlp.org/ OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volnÄ› dostupného kÅ™esÅ¥anského software, zvažte jestli se také nezapojit do vytváření OpenLP. Můžete tak uÄinit tlaÄítkem níže. Volunteer Dobrovolník Project Lead Vedení projektu Developers Vývojáři Contributors PÅ™ispÄ›vatelé Packagers BalíÄkovaÄi Testers TesteÅ™i Translators PÅ™ekladatelé Afrikaans (af) AfrikánÅ¡tina (af) Czech (cs) ÄŒeÅ¡tina (cs) Danish (da) DánÄtina (da) German (de) NÄ›mÄina (de) Greek (el) ŘeÄtina (el) English, United Kingdom (en_GB) AngliÄtina, Spojené království (en_GB) English, South Africa (en_ZA) AngliÄtina, Jihoafrická republika (en_ZA) Spanish (es) Å panÄ›lÅ¡tina (es) Estonian (et) EstonÅ¡tina (et) Finnish (fi) FinÅ¡tina (fi) French (fr) FrancouzÅ¡tina (fr) Hungarian (hu) MaÄarÅ¡tina (hu) Indonesian (id) Indonéština (id) Japanese (ja) JaponÅ¡tina (ja) Norwegian BokmÃ¥l (nb) NorÅ¡tina BokmÃ¥l (nb) Dutch (nl) NizozemÅ¡tina (nl) Polish (pl) PolÅ¡tina (pl) Portuguese, Brazil (pt_BR) PortugalÅ¡tina, Brazílie (pt_BR) Russian (ru) RuÅ¡tina (ru) Swedish (sv) Å védÅ¡tina (sv) Tamil(Sri-Lanka) (ta_LK) TamilÅ¡tina(Å rí Lanka) (ta_LK) Chinese(China) (zh_CN) ČínÅ¡tina(Čína) (zh_CN) Documentation Dokumentace Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ VytvoÅ™eno za použití Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. ZávÄ›reÄné zásluhy "NeboÅ¥ Bůh tak miluje svÄ›t, že dal svého jediného Syna, aby žádný, kdo v nÄ›ho věří, nezahynul, ale mÄ›l život vÄ›Äný." -- Jan 3:16 V neposlední Å™adÄ›, hlavní podÄ›kování patří Bohu, naÅ¡emu Otci, že poslal Svého Syna zemřít na kříži a osvobodit nás od hříchu. PÅ™inášíme tuto aplikaci zdarma, protože On nás osvobodil. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Autorská práva © 2004-2016 %s ČásteÄná autorská práva © 2004-2016 %s OpenLP.AdvancedTab UI Settings Nastavení rozhraní Number of recent files to display: PoÄet zobrazených nedávných souborů: Remember active media manager tab on startup Pamatovat si pÅ™i spuÅ¡tÄ›ní aktivní kartu správce médií Double-click to send items straight to live Dvojklik zobrazí položku přímo naživo Expand new service items on creation PÅ™i vytvoÅ™ení rozbalit nové položky služby Enable application exit confirmation Zapnout potvrzování ukonÄení aplikace Mouse Cursor Kurzor myÅ¡i Hide mouse cursor when over display window Skrýt kurzor myÅ¡i v oknÄ› zobrazení Default Image Výchozí obrázek Background color: Barva pozadí: Image file: Soubor s obrázkem: Open File Otevřít soubor Advanced PokroÄilé Preview items when clicked in Media Manager Náhled položek pÅ™i klepnutí ve správci médií Browse for an image file to display. Procházet pro obrázek k zobrazení. Revert to the default OpenLP logo. Vrátit na výchozí OpenLP logo. Default Service Name Výchozí název služby Enable default service name Zapnout výchozí název služby Date and Time: Datum a Äas: Monday PondÄ›lí Tuesday Úterý Wednesday StÅ™eda Friday Pátek Saturday Sobota Sunday NedÄ›le Now TeÄ Time when usual service starts. ÄŒas, kdy obvykle zaÄíná bohoslužba. Name: Název: Consult the OpenLP manual for usage. Pro použití se podívejte do dokumentace. Revert to the default service name "%s". Vrátit na výchozí název služby "%s". Example: Příklad: Bypass X11 Window Manager Obejít správce oken X11 Syntax error. Chyba syntaxe. Data Location UmístÄ›ní dat Current path: SouÄasná cesta: Custom path: Uživatelská cesta: Browse for new data file location. Procházet pro nové umístÄ›ní datových souborů. Set the data location to the default. Nastavit umístÄ›ní dat na výchozí. Cancel ZruÅ¡it Cancel OpenLP data directory location change. ZruÅ¡it zmÄ›nu umístÄ›ní datové složky OpenLP. Copy data to new location. Kopírovat data do nového umístÄ›ní. Copy the OpenLP data files to the new location. Kopírovat datové soubory OpenLP do nového umístÄ›ní. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VAROVÃNÃ:</strong> Nové umístnÄ›ní datové složky už obsahuje datové soubory OpenLP. Tyto soubory BUDOU nahrazeny bÄ›hem kopírování. Data Directory Error Chyba datové složky Select Data Directory Location Vybrat umístÄ›ní datové složky Confirm Data Directory Change Potvrdit zmÄ›nu datové složky Reset Data Directory Obnovit datovou složku Overwrite Existing Data PÅ™epsat existující data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Datová složka OpenLP nebyla nalezena %s Výchozí umístÄ›ní OpenLP bylo dříve zmÄ›nÄ›no na tuto složku. Pokud nové umístÄ›ní bylo na výmÄ›nném zařízení, je nutno dané zařízení nejdříve pÅ™ipojit. KlepnÄ›te na "Ne", aby se pÅ™eruÅ¡ilo naÄítání OpenLP. To umožní opravit daný problém. KlepnÄ›te na "Ano", aby se datová složka nastavila na výchozí umístÄ›ní. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Jste si jist, že chcede zmÄ›nit umístÄ›ní datové složky OpenLP na: %s Toto umístÄ›ní se použije po zavÅ™ení aplikace OpenLP. Thursday ÄŒtvrtek Display Workarounds Vychytávky zobrazení Use alternating row colours in lists V seznamech pro lepší pÅ™ehlednost střídat barvu pozadí řádku WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? VAROVÃNÃ: Vypadá to, že vybrané umístÄ›ní %s už obsahuje datové soubory OpenLP. PÅ™ejete si nahradit tyto soubory souÄasnými datovými soubory? Restart Required Požadován restart This change will only take effect once OpenLP has been restarted. Tato zmÄ›na se projeví až po opÄ›tovném spuÅ¡tÄ›ní aplikace OpenLP. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Jste si jisti, že chcede zmÄ›nit umístÄ›ní datové složky OpenLP na výchozí umístÄ›ní? Toto umístÄ›ní se použije po zavÅ™ení aplikace OpenLP. OpenLP.ColorButton Click to select a color. Klepnout pro výbÄ›r barvy. OpenLP.DB RGB RGB Video Video Digital Digitální Storage ÚložiÅ¡tÄ› Network Síť RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digitální 1 Digital 2 Digitální 2 Digital 3 Digitální 3 Digital 4 Digitální 4 Digital 5 Digitální 5 Digital 6 Digitální 6 Digital 7 Digitální 7 Digital 8 Digitální 8 Digital 9 Digitální 9 Storage 1 ÚložiÅ¡tÄ› 1 Storage 2 ÚložiÅ¡tÄ› 2 Storage 3 ÚložiÅ¡tÄ› 3 Storage 4 ÚložiÅ¡tÄ› 4 Storage 5 ÚložiÅ¡tÄ› 5 Storage 6 ÚložiÅ¡tÄ› 6 Storage 7 ÚložiÅ¡tÄ› 7 Storage 8 ÚložiÅ¡tÄ› 8 Storage 9 ÚložiÅ¡tÄ› 9 Network 1 Síť 1 Network 2 Síť 2 Network 3 Síť 3 Network 4 Síť 4 Network 5 Síť 5 Network 6 Síť 6 Network 7 Síť 7 Network 8 Síť 8 Network 9 Síť 9 OpenLP.ExceptionDialog Error Occurred Vznikla chyba Send E-Mail Poslat e-mail Save to File Uložit do souboru Attach File PÅ™iložit soubor Description characters to enter : %s Znaky popisu pro vložení : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Zadejte prosím popis toho, co jste provádÄ›l, když vznikla tato chyba. Pokud možno, piÅ¡te v angliÄtinÄ›. (MinimálnÄ› 20 písmen) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Jejda! V aplikaci OpenLP vznikl problém, ze kterého není možné se zotavit. Text v polícku níže obsahuje informace, které mohou být užiteÄné pro vývojáře aplikace OpenLP. ZaÅ¡lete je prosím spolu s podrobným popisem toho, co jste dÄ›lal, když problém vzniknul, na adresu bugs@openlp.org. Také pÅ™iložte jakékoliv soubory, co spustili tento problém. OpenLP.ExceptionForm Platform: %s Platforma: %s Save Crash Report Uložit hlášení o pádu Text files (*.txt *.log *.text) Textové soubory (*.txt *.log *.text) OpenLP.FileRenameForm File Rename PÅ™ejmenovat soubor New File Name: Nový název souboru: File Copy Kopírovat soubor OpenLP.FirstTimeLanguageForm Select Translation Vybrat pÅ™eklad Choose the translation you'd like to use in OpenLP. Vyberte pÅ™eklad, který bude používat aplikace OpenLP. Translation: PÅ™eklad: OpenLP.FirstTimeWizard Songs PísnÄ› First Time Wizard Průvodce prvním spuÅ¡tÄ›ní Welcome to the First Time Wizard Vítá Vás Průvodce prvním spuÅ¡tÄ›ní Activate required Plugins Zapnout požadované moduly Select the Plugins you wish to use. Vyberte moduly, které chcete používat. Bible Bible Images Obrázky Presentations Prezentace Media (Audio and Video) Média (audio a video) Allow remote access Povolit vzdálený přístup Monitor Song Usage Sledovat užívání písní Allow Alerts Povolit upozornÄ›ní Default Settings Výchozí nastavení Downloading %s... Stahuji %s... Enabling selected plugins... Zapínám vybrané moduly... No Internet Connection Žádné pÅ™ipojení k Internetu Unable to detect an Internet connection. NezdaÅ™ila se detekce internetového pÅ™ipojení. Sample Songs Ukázky písní Select and download public domain songs. Vybrat a stáhnout písnÄ› s nechránÄ›nými autorskými právy. Sample Bibles Ukázky Biblí Select and download free Bibles. Vybrat a stáhnout volnÄ› dostupné Bible. Sample Themes Ukázky motivů Select and download sample themes. Vybrat a stáhnout ukázky motivů. Set up default settings to be used by OpenLP. Nastavit výchozí nastavení pro aplikaci OpenLP. Default output display: Výchozí výstup zobrazit na: Select default theme: Vybrat výchozí motiv: Starting configuration process... SpouÅ¡tím průbÄ›h nastavení... Setting Up And Downloading Nastavuji a stahuji Please wait while OpenLP is set up and your data is downloaded. PoÄkejte prosím, než bude aplikace OpenLP nastavena a data stáhnuta. Setting Up Nastavuji Custom Slides Uživatelské snímky Finish Konec No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Internetové pÅ™ipojení není dostupné. Průvodce prvním spuÅ¡tÄ›ní potÅ™ebuje internetové pÅ™ipojení pro stažení ukázek písní, Biblí a motivů. KlepnÄ›te na tlaÄiko Konec pro spuÅ¡tÄ›ní aplikace OpenLP ve výchozím nastavení a bez ukázkových dat. Pro opÄ›tovné spuÅ¡tÄ›ní Průvodce prvním spuÅ¡tÄ›ní a importování ukázkových dat, prověřte své internetové pÅ™ipojení. Průvodce lze opÄ›t spustit vybráním v aplikace OpenLP menu "Nástroje/Spustit Průvodce prvním spuÅ¡tÄ›ní". Download Error Chyba stahování There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. BÄ›hem stahování doÅ¡lo k chybÄ› se spojením a další stahování bude pÅ™eskoÄeno. Zkuste spustit Průvodce prvním spuÅ¡tÄ›ní pozdÄ›ji. Download complete. Click the %s button to return to OpenLP. Stahování dokonÄeno. Klepnutím na tlaÄítko %s dojde k návratu do aplikace OpenLP. Download complete. Click the %s button to start OpenLP. Stahování dokonÄeno. Klepnutím na tlaÄítko %s se spustí aplikace OpenLP. Click the %s button to return to OpenLP. Klepnutím na tlaÄítko %s dojde k návratu do aplikace OpenLP. Click the %s button to start OpenLP. Klepnutím na tlaÄítko %s se spustí aplikace OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. BÄ›hem stahování doÅ¡lo k chybÄ› se spojením a další stahování bude pÅ™eskoÄeno. Zkuste spustit Průvodce prvním spuÅ¡tÄ›ní pozdÄ›ji. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Tento průvodce pomáhá nastavit OpenLP pro první použití. Pro start klepnÄ›te níže na tlaÄítko %s. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. ÚplnÄ› zruÅ¡it Průvodce prvním spuÅ¡tÄ›ní (OpenLP nebude spuÅ¡tÄ›no), klepnÄ›te teÄ na tlaÄítko %s. Downloading Resource Index Stahuji zdrojový index Please wait while the resource index is downloaded. PoÄkejte prosím, než se stáhne zdrojový index. Please wait while OpenLP downloads the resource index file... PoÄkejte prosím, než aplikace OpenLP stáhne soubor zdrojového indexu... Downloading and Configuring Stahování a nastavení Please wait while resources are downloaded and OpenLP is configured. PoÄkejte prosím, než budou zdroje stažené a aplikace OpenLP nakonfigurovaná. Network Error Chyba sítÄ› There was a network error attempting to connect to retrieve initial configuration information PÅ™i pokusu o získání poÄáteÄních informací o nastavení vznikla chyba sítÄ›. Cancel ZruÅ¡it Unable to download some files Nelze stáhnout nÄ›které soubory OpenLP.FormattingTagDialog Configure Formatting Tags Nastavit formátovací znaÄky Description Popis Tag ZnaÄka Start HTML ZaÄátek HTML End HTML Konec HTML Default Formatting Výchozí formátování Custom Formatting Uživatelské formátování OpenLP.FormattingTagForm <HTML here> <HTML zde> Validation Error Chyba ověřování Description is missing ChybÄ›jící popis Tag is missing ChybÄ›jící znaÄka Tag %s already defined. ZnaÄka %s je už definovaná. Description %s already defined. Popis %s je již definovaný. Start tag %s is not valid HTML PoÄáteÄní znaÄka %s není ve formátu HTML End tag %(end)s does not match end tag for start tag %(start)s Koncová znaÄka %(end)s neodpovídá ukonÄení k poÄáteÄní znaÄce %(start)s OpenLP.FormattingTags Red ÄŒervená Black ÄŒerná Blue Modrá Yellow Žlutá Green Zelená Pink Růžová Orange Oranžová Purple Fialová White Bílá Superscript Horní index Subscript Dolní index Paragraph Odstavec Bold TuÄné Italics Kurzíva Underline Podtržené Break Zalomení OpenLP.GeneralTab General Obecné Monitors Monitory Select monitor for output display: Vybrat monitor pro výstupní zobrazení: Display if a single screen Zobrazení pÅ™i jedné obrazovce Application Startup SpuÅ¡tÄ›ní aplikace Show blank screen warning Zobrazit varování pÅ™i prázdné obrazovce Automatically open the last service Automaticky otevřít poslední službu Show the splash screen Zobrazit úvodní obrazovku Application Settings Nastavení aplikace Prompt to save before starting a new service PÅ™ed spuÅ¡tÄ›ním nové služby se ptát na uložení Automatically preview next item in service Automatický náhled další položky ve službÄ› sec sek CCLI Details CCLI podrobnosti SongSelect username: SongSelect uživatelské jméno: SongSelect password: SongSelect heslo: X X Y Y Height Výška Width Šířka Check for updates to OpenLP Kontrola aktualizací aplikace OpenLP Unblank display when adding new live item Odkrýt zobrazení pÅ™i pÅ™idání nové položky naživo Timed slide interval: ÄŒasový interval mezi snímky: Background Audio Zvuk na pozadí Start background audio paused Spustit audio na pozadí pozastavené Service Item Slide Limits Omezení snímku položky služby Override display position: PÅ™ekrýt pozici zobrazení: Repeat track list Opakovat seznam stop Behavior of next/previous on the last/first slide: Chování další/pÅ™edchozí na posledním/prvním snímku: &Remain on Slide &Zůstat na snímku &Wrap around &SkoÄit na první/poslední snímek &Move to next/previous service item &PÅ™esun na další/pÅ™edchozí položku ve službÄ› OpenLP.LanguageManager Language Jazyk Please restart OpenLP to use your new language setting. ZmÄ›ny nastavení jazyka se projeví restartováním aplikace OpenLP. OpenLP.MainDisplay OpenLP Display Zobrazení OpenLP OpenLP.MainWindow &File &Soubor &Import &Import &Export &Export &View &Zobrazit M&ode &Režim &Tools &Nástroje &Settings &Nastavení &Language &Jazyk &Help &NápovÄ›da Service Manager Správce služby Theme Manager Správce motivů Open an existing service. Otevřít existující službu. Save the current service to disk. Uložit souÄasnou službu na disk. Save Service As Uložit službu jako Save the current service under a new name. Uložit souÄasnou službu s novým názvem. E&xit U&konÄit Quit OpenLP UkonÄit OpenLP &Theme &Motiv &Configure OpenLP... &Nastavení OpenLP &Media Manager Správce &médií Toggle Media Manager PÅ™epnout správce médií Toggle the visibility of the media manager. PÅ™epnout viditelnost správce médií. &Theme Manager Správce &motivů Toggle Theme Manager PÅ™epnout správce motivů Toggle the visibility of the theme manager. PÅ™epnout viditelnost správce motivů. &Service Manager Správce &služby Toggle Service Manager PÅ™epnout správce služby Toggle the visibility of the service manager. PÅ™epnout viditelnost správce služby. &Preview Panel Panel &Náhled Toggle Preview Panel PÅ™epnout panel Náhled Toggle the visibility of the preview panel. PÅ™epnout viditelnost panelu náhled. &Live Panel Panel Na&živo Toggle Live Panel PÅ™epnout panel Naživo Toggle the visibility of the live panel. PÅ™epnout viditelnost panelu naživo. List the Plugins Vypsat moduly &User Guide &Uživatelská příruÄka &About &O aplikaci More information about OpenLP Více informací o aplikaci OpenLP &Online Help &Online nápovÄ›da &Web Site &Webová stránka Use the system language, if available. Použít jazyk systému, pokud je dostupný. Set the interface language to %s Jazyk rozhraní nastaven na %s Add &Tool... PÅ™idat &nástroj... Add an application to the list of tools. PÅ™idat aplikaci do seznamu nástrojů. &Default &Výchozí Set the view mode back to the default. Nastavit režim zobrazení zpÄ›t na výchozí. &Setup &Nastavení Set the view mode to Setup. Nastavit režim zobrazení na Nastavení. &Live &Naživo Set the view mode to Live. Nastavit režim zobrazení na Naživo. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Ke stažení je dostupná verze %s aplikace OpenLP (v souÄasné dobÄ› používáte verzi %s). NejnovÄ›jší verzi lze stáhnout z http://openlp.org/. OpenLP Version Updated Verze OpenLP aktualizována OpenLP Main Display Blanked Hlavní zobrazení OpenLP je prázdné The Main Display has been blanked out Hlavní zobrazení nastaveno na prázdný snímek Default Theme: %s Výchozí motiv: %s English Please add the name of your language here ÄŒeÅ¡tina Configure &Shortcuts... &Klávesové zkratky Open &Data Folder... Otevřít složku s &daty... Open the folder where songs, bibles and other data resides. Otevřít složku, kde se nachází písnÄ›, Bible a ostatní data. &Autodetect &Automaticky detekovat Update Theme Images Aktualizace obrázků motivu Update the preview images for all themes. Aktualizovat náhledy obrázků vÅ¡ech motivů. Print the current service. Tisk souÄasné služby. L&ock Panels &Uzamknout panely Prevent the panels being moved. Zabrání pÅ™esunu panelů. Re-run First Time Wizard Průvodce prvním spuÅ¡tÄ›ní Re-run the First Time Wizard, importing songs, Bibles and themes. Znovu spustit Průvodce prvním spuÅ¡tÄ›ní, importovat písnÄ›, Bible a motivy. Re-run First Time Wizard? Znovu spustit Průvodce prvním spuÅ¡tÄ›ní? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Jste si jist, že chcete znovu spustit Průvodce prvním spuÅ¡tÄ›ní? ZnovuspuÅ¡tÄ›ním tohoto průvodce může dojít ke zmÄ›nÄ› souÄasného nastavení aplikace OpenLP a pravdÄ›podobnÄ› budou pÅ™idány písnÄ› k existujícímu seznamu a zmÄ›nÄ›n výchozí motiv. Clear List Clear List of recent files Vyprázdnit seznam Clear the list of recent files. Vyprázdnit seznam nedávných souborů. Configure &Formatting Tags... &Formátovací znaÄky Export OpenLP settings to a specified *.config file Export nastavení OpenLP do urÄitého *.config souboru Settings Nastavení Import OpenLP settings from a specified *.config file previously exported on this or another machine Import nastavení OpenLP ze urÄitého *.config souboru dříve exportovaného na tomto nebo jiném stroji Import settings? Importovat nastavení? Open File Otevřít soubor OpenLP Export Settings Files (*.conf) Soubory exportovaného nastavení OpenLP (*.conf) Import settings Import nastavení OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Aplikace OpenLP se nyní zavÅ™e. Importovaná nastavení se použijí pÅ™i příštim spuÅ¡tÄ›ní. Export Settings File Soubor exportovaného nastavení OpenLP Export Settings File (*.conf) Soubor exportovaného nastavení OpenLP (*.conf) New Data Directory Error Chyba nové datové složky Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopíruji datovou složku aplikace OpenLP do nového umístÄ›ní - %s - PoÄkejte prosím na dokonÄení kopírování OpenLP Data directory copy failed %s Kopírování datové složky OpenLP selhalo %s General Obecné Library Knihovna Jump to the search box of the current active plugin. SkoÄit na vyhledávací pole souÄasného aktivního modulu. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Jste si jist, že chcete importovat nastavení? Importováním nastavení dojde k trvalým zmÄ›nám souÄasného nastavení aplikace OpenLP. Importování nesprávných nastavení může zapříÄinit náladové chování nebo nenormální ukonÄení aplikace OpenLP. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Vybraný soubor nevypadá jako formát souboru s nastavením OpenLP. Zpracování bylo pÅ™eruÅ¡eno a žádná zmÄ›na se neprovedla. Projector Manager Správce projektorů Toggle Projector Manager PÅ™epnout správce projektorů Toggle the visibility of the Projector Manager PÅ™epnout viditelnost správce projektorů Export setting error Chyba exportu nastavení The key "%s" does not have a default value so it will be skipped in this export. KlÃ­Ä "%s" nemá výchozí hodnotu a bude tudíž pÅ™i tomto exportu pÅ™eskoÄen. An error occurred while exporting the settings: %s PÅ™i exportu nastavení vznikla chyba: %s &Recent Services &Nedávné služby &New Service &Nová služba &Open Service &Otevřít službu &Save Service &Uložit službu Save Service &As... Uložit službu &jako &Manage Plugins &Spravovat moduly Exit OpenLP UkonÄit OpenLP Are you sure you want to exit OpenLP? Jste si jist, že chcete ukonÄit aplikaci OpenLP? &Exit OpenLP &UkonÄit OpenLP OpenLP.Manager Database Error Chyba databáze The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Databáze k naÄtení byla vytvoÅ™ena v novÄ›jší verzi aplikace OpenLP. Verze databáze je %d, zatímco OpenLP oÄekává verzi %d. Databáze nebude naÄtena. Databáze: %s OpenLP cannot load your database. Database: %s OpenLP nemůže naÄíst databázi.. Databáze: %s OpenLP.MediaManagerItem No Items Selected Nevybrány žádné položky &Add to selected Service Item &PÅ™idat k vybrané Položce Služby You must select one or more items to preview. Pro náhled je tÅ™eba vybrat jednu nebo více položek. You must select one or more items to send live. Pro zobrazení naživo je potÅ™eba vybrat jednu nebo více položek. You must select one or more items. Je tÅ™eba vybrat jednu nebo více položek. You must select an existing service item to add to. K pÅ™idání Je tÅ™eba vybrat existující položku služby. Invalid Service Item Neplatná Položka služby You must select a %s service item. Je tÅ™eba vybrat %s položku služby. You must select one or more items to add. Pro pÅ™idání Je tÅ™eba vybrat jednu nebo více položek. No Search Results Žádné výsledky hledání Invalid File Type Neplatný typ souboru Invalid File %s. Suffix not supported Soubor v neznámém formátu %s. Přípona není podporovaná &Clone &Klonovat Duplicate files were found on import and were ignored. PÅ™i importu byly nalezeny duplicitní soubory a byly ignorovány. OpenLP.OpenLyricsImportError <lyrics> tag is missing. ChybÄ›jící znaÄka <lyrics>. <verse> tag is missing. ChybÄ›jící znaÄka <verse>. OpenLP.PJLink1 Unknown status Neznámý stav No message Žádná zpráva Error while sending data to projector Chyba pÅ™i posílání dat projektoru Undefined command: Nedefinovaný příkaz: OpenLP.PlayerTab Players PÅ™ehrávaÄe Available Media Players Dostupné pÅ™ehrávaÄe médií Player Search Order PoÅ™adí použití pÅ™ehrávaÄů Visible background for videos with aspect ratio different to screen. Viditelné pozadí pro videa s jiným pomÄ›rem stran než má obrazovka. %s (unavailable) %s (nedostupný) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" Poznámka: Aby se dalo použít VLC je potÅ™eba nainstalovat verzi %s OpenLP.PluginForm Plugin Details Podrobnosti k modulu Status: Stav: Active Aktivní Inactive Neaktivní %s (Inactive) %s (Neaktivní) %s (Active) %s (Aktivní) %s (Disabled) %s (Vypnuto) Manage Plugins Spravovat moduly OpenLP.PrintServiceDialog Fit Page PÅ™izpůsobit stránce Fit Width PÅ™izpůsobit šířce OpenLP.PrintServiceForm Options Možnosti Copy Kopírovat Copy as HTML Kopírovat jako HTML Zoom In ZvÄ›tÅ¡it Zoom Out ZmenÅ¡it Zoom Original Původní velikost Other Options Ostatní možnosti Include slide text if available Zahrnout text snímku, pokud je k dispozici Include service item notes Zahrnout poznámky položky služby Include play length of media items Zahrnout délku pÅ™ehrávání mediálních položek Add page break before each text item PÅ™idat zalomení stránky pÅ™ed každou textovou položku Service Sheet List služby Print Tisk Title: Nadpis: Custom Footer Text: Uživatelský text zápatí: OpenLP.ProjectorConstants OK OK General projector error Obecná chyba projektoru Not connected error Chyba nepÅ™ipojení Lamp error Chyba lampy Fan error Chyba ventilátoru High temperature detected ZjiÅ¡tÄ›na vysoká teplota Cover open detected ZjiÅ¡tÄ›n otevÅ™ený kryt Check filter Prověřit filtr Authentication Error Chyba ověření Undefined Command Nedefinovaný příkaz Invalid Parameter Neplatný parametr Projector Busy Projektor zaneprázdnÄ›n Projector/Display Error Chyba projektoru/zobrazení Invalid packet received PÅ™ijat neplatný paket Warning condition detected ZjiÅ¡tÄ›n varovný stav Error condition detected ZjiÅ¡tÄ›n chybový stav PJLink class not supported PJLink třída není podporovaná Invalid prefix character Neplatný znak přípony The connection was refused by the peer (or timed out) Spojení odmítnuto druhou stranou (nebo vyprÅ¡el Äas) The remote host closed the connection Vzdálený stroj zavÅ™el spojení The host address was not found Adresa stroje nebyla nalezena The socket operation failed because the application lacked the required privileges Operace soketu selhala protože aplikace nemá požadovaná oprávnÄ›ni The local system ran out of resources (e.g., too many sockets) Váš operaÄní systém nemá dostatek prostÅ™edků (napÅ™. příliÅ¡ mnoho soketů) The socket operation timed out Operace soketu vyprÅ¡ela The datagram was larger than the operating system's limit Datagram byl vÄ›tší než omezení operaÄního systému An error occurred with the network (Possibly someone pulled the plug?) Vznikla chyba v síti. An error occurred with the network (Možná nÄ›kdo vypojil zástrÄku?) The address specified with socket.bind() is already in use and was set to be exclusive Adresa specifikovaná pro socket.bind() se již používá a byla nastavena na výhradní režim The address specified to socket.bind() does not belong to the host Adresa specifikovaná pro socket.bind() stroji nepatří The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Požadovaná operace soketu není podporovaná Vaším operaÄním systémem (napÅ™. chybÄ›jící podpora IPv6) The socket is using a proxy, and the proxy requires authentication Soket používá proxy server a ten vyžaduje ověření The SSL/TLS handshake failed Selhal SSL/TLS handshake The last operation attempted has not finished yet (still in progress in the background) Poslední pokus operace jeÅ¡tÄ› neskonÄil (stále probíhá na pozadí) Could not contact the proxy server because the connection to that server was denied Nemohu se spojit s proxy serverem protože spojení k tomuto serveru bylo odmítnuto The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Spojení s proxy serverem bylo neÄekanÄ› uzavÅ™eno (dříve, než bylo vytvoÅ™eno spojení s druhou stranou) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. VyprÅ¡el Äas spojení s proxy serverem nebo proxy server pÅ™estal odpovídat bÄ›hem ověřívací fáze. The proxy address set with setProxy() was not found Adresa proxy serveru nastavená v setProxy() nebyla nalezena An unidentified error occurred Vznikla neidentifikovatelná chyba Not connected NepÅ™ipojen Connecting PÅ™ipojuji se Connected PÅ™ipojen Getting status Získávám stav Off Vypnuto Initialize in progress Probíhá inicializace Power in standby Úsporný režim Warmup in progress Probíhá zahřívání Power is on Zapnuto Cooldown in progress Probíhá chlazení Projector Information available Informace k projektoru dostupné Sending data Posílám data Received data PÅ™ijímám data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Vyjednávání spolení s proxy serverem selhalo protože se nepodaÅ™ilo porozumÄ›t odpovÄ›di od proxy serveru OpenLP.ProjectorEdit Name Not Set Název nenastaven You must enter a name for this entry.<br />Please enter a new name for this entry. Pro tuto položku je tÅ™eba zadat název.<br />Zadejte prosím název pro tuto položku. Duplicate Name Duplicitní název OpenLP.ProjectorEditForm Add New Projector PÅ™idat nový projektor Edit Projector Upravit projektor IP Address IP adresa Port Number Číslo portu PIN PIN Name Název Location UmístÄ›ní Notes Poznámky Database Error Chyba databáze There was an error saving projector information. See the log for the error Vznikla chyba bÄ›hem ukládání informací o projektoru. Pro informace o chybÄ› viz log. OpenLP.ProjectorManager Add Projector PÅ™idat projektor Add a new projector PÅ™idat nový projektor Edit Projector Upravit projektor Edit selected projector Upravit vybraný projektor Delete Projector Smazat projektor Delete selected projector Smazat vybraný projektor Select Input Source Vybrat zdroj vstupu Choose input source on selected projector Vybrat zdroj vstupu u vybraného projektoru View Projector Zobrazit projektor View selected projector information Zobrazit informace k vybranému projektoru Connect to selected projector PÅ™ipojit se k vybranému projektoru Connect to selected projectors PÅ™ipojit se k vybraným projektorům Disconnect from selected projectors Odpojit se od vybraných projektorů Disconnect from selected projector Odpojit se od vybraného projektoru Power on selected projector Zapnout vybraný projektor Standby selected projector Úsporný režim pro vybraný projektor Put selected projector in standby PÅ™epne vybraný projektor do úsporného režimu Blank selected projector screen Prázdná obrazovka na vybraném projektoru Show selected projector screen Zobrazit vybranou obrazovku projektoru &View Projector Information &Zobrazit informace o projectoru &Edit Projector &Upravit projektor &Connect Projector &PÅ™ipojit projektor D&isconnect Projector &Odpojit projektor Power &On Projector Z&apnout projektor Power O&ff Projector &Vypnout projektor Select &Input Vybrat &vstup Edit Input Source Upravit zdroj vstupu &Blank Projector Screen &Prázdná obrazovka na projektoru &Show Projector Screen &Zobrazit obrazovku projektoru &Delete Projector &Smazat projektor Name Název IP IP Port Port Notes Poznámky Projector information not available at this time. Informace o projektoru teÄ nejsou dostupné. Projector Name Název projektoru Manufacturer Výrobce Model Model Other info Ostatní informace Power status Stav napájení Shutter is Clona je Closed ZavÅ™eno Current source input is SouÄasným zdroje vstupu je Lamp Lampa On Zapnuto Off Vypnuto Hours Hodin No current errors or warnings Žádné souÄasné chyby nebo varování Current errors/warnings SouÄasné chyby/varování Projector Information Informace k projektoru No message Žádná zpráva Not Implemented Yet Není jeÅ¡tÄ› implementováno Delete projector (%s) %s? Smazat projektor (%s) %s? Are you sure you want to delete this projector? Jste si jisti, že chcete smazat tento projektor? OpenLP.ProjectorPJLink Fan Ventilátor Lamp Lampa Temperature Teplota Cover Kryt Filter Filtr Other Ostatní OpenLP.ProjectorTab Projector Projektor Communication Options Možnosti komunikace Connect to projectors on startup PÅ™ipojit se k projektorům pÅ™i spuÅ¡tÄ›ní Socket timeout (seconds) ÄŒasový limit socketu (sekundy) Poll time (seconds) ÄŒas průzkumu (sekundy) Tabbed dialog box Dialogové okno s panely Single dialog box Samostatné dialogové okno OpenLP.ProjectorWizard Duplicate IP Address Duplicitní IP adresa Invalid IP Address Neplatná IP adresa Invalid Port Number Neplatné Äíslo portu OpenLP.ScreenList Screen Obrazovka primary Primární OpenLP.ServiceItem <strong>Start</strong>: %s <strong>ZaÄátek</strong>: %s <strong>Length</strong>: %s <strong>Délka</strong>: %s [slide %d] [snímek %d] OpenLP.ServiceItemEditForm Reorder Service Item ZmÄ›nit poÅ™adí Položky služby OpenLP.ServiceManager Move to &top PÅ™esun &nahoru Move item to the top of the service. PÅ™esun položky ve službÄ› úplnÄ› nahoru. Move &up PÅ™esun &výše Move item up one position in the service. PÅ™esun položky ve službÄ› o jednu pozici výše. Move &down P?esun &níže Move item down one position in the service. P?esun položky ve služb? o jednu pozici níže. Move to &bottom PÅ™esun &dolu Move item to the end of the service. PÅ™esun položky ve službÄ› úplnÄ› dolů. &Delete From Service &Smazat ze služby Delete the selected item from the service. Smazat vybranou položku ze služby. &Add New Item &PÅ™idat novou položku &Add to Selected Item &PÅ™idat k vybrané položce &Edit Item &Upravit položku &Reorder Item &ZmÄ›nit poÅ™adí položky &Notes &Poznámky &Change Item Theme &ZmÄ›nit motiv položky File is not a valid service. Soubor není ve formátu služby. Missing Display Handler ChybÄ›jící obsluha zobrazení Your item cannot be displayed as there is no handler to display it Položku není možno zobrazit, protože chybí obsluha pro její zobrazení Your item cannot be displayed as the plugin required to display it is missing or inactive Položku není možno zobrazit, protože modul potÅ™ebný pro zobrazení položky chybí nebo je neaktivní &Expand all &Rozvinou vÅ¡e Expand all the service items. Rozvinout vÅ¡echny položky služby. &Collapse all &Svinout vÅ¡e Collapse all the service items. Svinout vÅ¡echny položky služby. Open File Otevřít soubor Moves the selection down the window. PÅ™esune výbÄ›r v rámci okna dolu. Move up PÅ™esun nahoru Moves the selection up the window. PÅ™esune výbÄ›r v rámci okna nahoru. Go Live Zobrazit naživo Send the selected item to Live. Zobrazí vybranou položku naživo. &Start Time &Spustit Äas Show &Preview Zobrazit &náhled Modified Service ZmÄ›nÄ›ná služba The current service has been modified. Would you like to save this service? SouÄasná služba byla zmÄ›nÄ›na. PÅ™ejete si službu uložit? Custom Service Notes: Poznámky Uživatelský služby: Notes: Poznámky: Playing time: ÄŒas pÅ™ehrávání: Untitled Service Prázdná služba File could not be opened because it is corrupt. Soubor se nepodaÅ™ilo otevřít, protože je poÅ¡kozený. Empty File Prázdný soubor This service file does not contain any data. Tento soubor služby neobsahuje žádná data. Corrupt File PoÅ¡kozený soubor Load an existing service. NaÄíst existující službu. Save this service. Uložit tuto službu. Select a theme for the service. Vybrat motiv pro službu. Slide theme Motiv snímku Notes Poznámky Edit Upravit Service copy only Kopírovat jen službu Error Saving File Chyba pÅ™i ukládání souboru There was an error saving your file. Vznikla chyba pÅ™i ukládání souboru. Service File(s) Missing ChybÄ›jící soubor(y) služby &Rename... &PÅ™ejmenovat... Create New &Custom Slide VytvoÅ™it &uživatelský snímek &Auto play slides &PÅ™ehrát snímky automaticky Auto play slides &Loop PÅ™ehrát snímky ve &smyÄce Auto play slides &Once PÅ™ehrát snímky &jednou &Delay between slides ZpoždÄ›ní mezi s nímky OpenLP Service Files (*.osz *.oszl) OpenLP soubory služby (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP soubory služby (*.osz);; OpenLP soubory služby - odlehÄení (*.oszl) OpenLP Service Files (*.osz);; OpenLP soubory služby (*.osz);; File is not a valid service. The content encoding is not UTF-8. Soubor není ve formátu služby. Obsah souboru není v kódování UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Soubor se službou, který zkoušíte otevřít, je ve starém formátu. Uložte ho prosím v aplikaci OpenLP 2.0.2 nebo novÄ›jší. This file is either corrupt or it is not an OpenLP 2 service file. Soubor je buÄto poÅ¡kozen nebo se nejedná o soubor se službou z aplikace OpenLP 2. &Auto Start - inactive &Automatické spuÅ¡tÄ›ní - neaktivní &Auto Start - active &Automatické spuÅ¡tÄ›ní - neaktivní Input delay ZpoždÄ›ní vstupu Delay between slides in seconds. ZpoždÄ›ní mezi s nímky v sekundách. Rename item title PÅ™ejmenovat nadpis položky Title: Nadpis: An error occurred while writing the service file: %s PÅ™i z8exportu nastavení vznikla chyba: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Následující soubor(y) ve službÄ› chybí: %s Tyto souby se vymažou, pokud službu uložíte. OpenLP.ServiceNoteForm Service Item Notes Poznámky položky služby OpenLP.SettingsForm Configure OpenLP Nastavení OpenLP OpenLP.ShortcutListDialog Action ÄŒinnost Shortcut Zkratka Duplicate Shortcut Duplicitní zkratka The shortcut "%s" is already assigned to another action, please use a different shortcut. Zkratka "%s" je už pÅ™iÅ™azena jiné Äinnosti. Použijte prosím jinou zkratku. Alternate Alternativa Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Zadání nové hlavní nebo alternativní zkratky se spustí vybráním Äinnosti a klepnutím na jedno z tlaÄítek níže. Default Výchozí Custom Uživatelský Capture shortcut. Zachytit zkratku. Restore the default shortcut of this action. Obnovit výchozí zkratku Äinnosti. Restore Default Shortcuts Obnovit výchozí zkratku Do you want to restore all shortcuts to their defaults? Chcete obnovit vÅ¡echny zkratky na jejich výchozí hodnoty? Configure Shortcuts Nastavit zkratky OpenLP.SlideController Hide Skrýt Go To PÅ™ejít na Blank Screen Prázdná obrazovka Blank to Theme Prázdný motiv Show Desktop Zobrazit plochu Previous Service PÅ™edchozí služba Next Service Další služba Escape Item ZruÅ¡it položku Move to previous. PÅ™esun na pÅ™edchozí. Move to next. PÅ™eson na další. Play Slides PÅ™ehrát snímky Delay between slides in seconds. ZpoždÄ›ní mezi s nímky v sekundách. Move to live. PÅ™esun naživo. Add to Service. PÅ™idat ke službÄ›. Edit and reload song preview. Upravit a znovu naÄíst náhled písnÄ›. Start playing media. Spustit pÅ™ehrávání média. Pause audio. Pozastavit zvuk. Pause playing media. Pozastavit pÅ™ehrávání média. Stop playing media. Zastavit pÅ™ehrávání média. Video position. UmístÄ›ní videa. Audio Volume. Hlasitost zvuku. Go to "Verse" PÅ™ejít na "Sloka" Go to "Chorus" PÅ™ejít na "Refrén" Go to "Bridge" PÅ™ejít na "PÅ™echod" Go to "Pre-Chorus" PÅ™ejít na "PÅ™edrefrén" Go to "Intro" PÅ™ejít na "Úvod" Go to "Ending" PÅ™ejít na "ZakonÄení" Go to "Other" PÅ™ejít na "Ostatní" Previous Slide PÅ™edchozí snímek Next Slide Další snímek Pause Audio Pozastavit zvuk Background Audio Zvuk na pozadí Go to next audio track. PÅ™ejít na další zvukovou stopu. Tracks Stopy OpenLP.SourceSelectForm Select Projector Source Vybrat zdroj projektoru Edit Projector Source Text Upravit text zdroje projektoru Ignoring current changes and return to OpenLP Ignorovat souÄasné zmÄ›ny a vrátit se do aplikace OpenLP Delete all user-defined text and revert to PJLink default text Smazat vÅ¡echen uživatelem definovaný text a vrátit se k výchozímu text PJLink. Discard changes and reset to previous user-defined text Zahodit zmÄ›ny a vrátit se k pÅ™edchozímu uživatelem definovanému textu. Save changes and return to OpenLP Uložit zmÄ›ny a vrátit se do aplikace OpenLP Delete entries for this projector Smazat údaje pro tento projektor Are you sure you want to delete ALL user-defined source input text for this projector? Jste si jist, že chcete smazat VÅ ECHNY uživatelem definované zdroje vstupního textu pro tento projektor? OpenLP.SpellTextEdit Spelling Suggestions Návrhy pravopisu Formatting Tags Formátovací znaÄky Language: Jazyk: OpenLP.StartTimeForm Theme Layout Rozvržení motivu The blue box shows the main area. Modré pole ukazuje hlavní oblast. The red box shows the footer. ÄŒervené pole ukazuje zápatí. OpenLP.StartTime_form Item Start and Finish Time ÄŒas zaÄátku a konce položky Hours: Hodiny: Minutes: Minuty: Seconds: Sekundy: Start ZaÄátek Finish Konec Length Délka Time Validation Error Chyba pÅ™i ověření Äasu Finish time is set after the end of the media item ÄŒas konce je nastaven po Äasu konce mediální položky Start time is after the finish time of the media item ÄŒas zaÄátku je nastaven po Äasu konce mediální položky OpenLP.ThemeForm (approximately %d lines per slide) (pÅ™ibližnÄ› %d řádek na snímek) OpenLP.ThemeManager Create a new theme. Vytvoří nový motiv. Edit Theme Upravit motiv Edit a theme. Upraví motiv. Delete Theme Smazat motiv Delete a theme. Smaže motiv. Import Theme Import motivu Import a theme. Importuje motiv. Export Theme Export motivu Export a theme. Exportuje motiv. &Edit Theme &Upravit motiv &Delete Theme &Smazat motiv Set As &Global Default Nastavit jako &Globální výchozí %s (default) %s (výchozí) You must select a theme to edit. Pro úpravy je tÅ™eba vybrat motiv. You are unable to delete the default theme. Není možno smazat výchozí motiv. You have not selected a theme. Není vybrán žádný motiv. Save Theme - (%s) Uložit motiv - (%s) Theme Exported Motiv exportován Your theme has been successfully exported. Motiv byl úspěšnÄ› exportován. Theme Export Failed Export motivu selhal Select Theme Import File Vybrat soubor k importu motivu File is not a valid theme. Soubor není ve formátu motivu. &Copy Theme &Kopírovat motiv &Rename Theme &PÅ™ejmenovat motiv &Export Theme &Export motivu You must select a theme to rename. K pÅ™ejmenování je tÅ™eba vybrat motiv. Rename Confirmation Potvrzení pÅ™ejmenování Rename %s theme? PÅ™ejmenovat motiv %s? You must select a theme to delete. Pro smazání je tÅ™eba vybrat motiv. Delete Confirmation Potvrzení smazání Delete %s theme? Smazat motiv %s? Validation Error Chyba ověřování A theme with this name already exists. Motiv s tímto názvem již existuje. Copy of %s Copy of <theme name> Kopie %s Theme Already Exists Motiv již existuje Theme %s already exists. Do you want to replace it? Motiv %s již existuje. Chcete ho nahradit? The theme export failed because this error occurred: %s Export motivu selhal, protože vznikla tato chyba: %s OpenLP Themes (*.otz) OpenLP motivy (*.otz) %s time(s) by %s Unable to delete theme Nelze smazat motiv Theme is currently used %s Motiv se nyní používá %s OpenLP.ThemeWizard Theme Wizard Průvodce motivem Welcome to the Theme Wizard Vítá Vás Průvodce motivem Set Up Background Nastavení pozadí Set up your theme's background according to the parameters below. Podle parametrů níže nastavte pozadí motivu. Background type: Typ pozadí: Gradient PÅ™echod Gradient: PÅ™echod: Horizontal Vodorovný Vertical Svislý Circular Kruhový Top Left - Bottom Right Vlevo nahoÅ™e - vpravo dole Bottom Left - Top Right Vlevo dole - vpravo nahoÅ™e Main Area Font Details Podrobnosti písma hlavní oblasti Define the font and display characteristics for the Display text Definovat písmo a charakteristiku zobrazení pro zobrazený text Font: Písmo: Size: Velikost: Line Spacing: Řádkování: &Outline: &Obrys: &Shadow: &Stín: Bold TuÄné Italic Kurzíva Footer Area Font Details Podrobnosti písma oblasti zápatí Define the font and display characteristics for the Footer text Definovat písmo a charakteristiku zobrazení pro text zápatí Text Formatting Details Podrobnosti formátování textu Allows additional display formatting information to be defined Dovoluje definovat další formátovací informace zobrazení Horizontal Align: Vodorovné zarovnání: Left Vlevo Right Vpravo Center Na stÅ™ed Output Area Locations UmístÄ›ní výstupní oblasti &Main Area &Hlavní oblast &Use default location &Použít výchozí umístÄ›ní X position: Pozice X: px px Y position: Pozice Y: Width: Šířka: Height: Výška: Use default location Použít výchozí umístÄ›ní Theme name: Název motivu: Edit Theme - %s Upravit motiv - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Tento průvodce pomáhá s vytvoÅ™ením a úpravou motivů. KlepnÄ›te níže na tlaÄítko další pro pokraÄování v nastavení pozadí. Transitions: PÅ™echody: &Footer Area Oblast &zápatí Starting color: Barva zaÄátku: Ending color: Barva konce: Background color: Barva pozadí: Justify Do bloku Layout Preview Náhled rozvržení Transparent Průhledný Preview and Save Náhled a uložit Preview the theme and save it. Náhled motivu a motiv uložit. Background Image Empty Prázdný obrázek pozadí Select Image Vybrat obrázek Theme Name Missing Chybí název motivu There is no name for this theme. Please enter one. Není vyplnÄ›n název motivu. Prosím zadejte ho. Theme Name Invalid Neplatný název motivu Invalid theme name. Please enter one. Neplatný název motivu. Prosím zadejte nový. Solid color Plná barva color: barva: Allows you to change and move the Main and Footer areas. Dovoluje zmÄ›nit a pÅ™esunout hlavní oblast a oblast zápatí. You have not selected a background image. Please select one before continuing. Nebyl vybrán obrázek pozadí. PÅ™ed pokraÄování prosím jeden vyberte. OpenLP.ThemesTab Global Theme Globální motiv Theme Level Úroveň motivu S&ong Level &Píseň Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Použít motiv z každé písnÄ› z databáze. Pokud píseň nemá pÅ™iÅ™azen motiv, potom se použije motiv služby. Pokud služba nemá motiv, pak se použije globální motiv. &Service Level &Služba Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Použitím motivu ze služby se pÅ™ekryje motiv jednotlivých písní. Pokud služba nemá motiv, tak se použije globální motiv. &Global Level &Globální Use the global theme, overriding any themes associated with either the service or the songs. Použitím globálního motivu se pÅ™ekryjí motivy, které jsou pÅ™iÅ™azeny službám nebo písním. Themes Motivy Universal Settings VÅ¡eobecné nastavení &Wrap footer text &Zalomit text zápatí OpenLP.Ui Delete the selected item. Smazat vybranou položku. Move selection up one position. PÅ™esun výbÄ›ru o jednu pozici výše. Move selection down one position. PÅ™esun výbÄ›ru o jednu pozici níže. &Vertical Align: &Svislé zarovnání: Finished import. Import dokonÄen. Format: Formát: Importing Importuji Importing "%s"... Importuji "%s"... Select Import Source Vybrat zdroj importu Select the import format and the location to import from. Vyberte formát importu a umístÄ›ní, ze kterého se má importovat. Open %s File Otevřít soubor %s %p% %p% Ready. PÅ™ipraven. Starting import... SpouÅ¡tím import... You need to specify at least one %s file to import from. A file type e.g. OpenSong Je tÅ™eba specifikovat alespoň jeden %s soubor, ze kterého se bude importovat. Welcome to the Bible Import Wizard Vítá Vás Průvodce importu Bible Welcome to the Song Export Wizard Vítá Vás Průvodce exportu písní Welcome to the Song Import Wizard Vítá Vás Průvodce importu písní Author Singular Autor Authors Plural AutoÅ™i © Copyright symbol. © Song Maintenance Údržba písní Topic Singular Téma Topics Plural Témata Title and/or verses not found Název a/nebo slova nenalezeny XML syntax error Chyba v syntaxi XML Welcome to the Bible Upgrade Wizard Vítá Vás Průvodce aktualizací Biblí Open %s Folder Otevřít složku %s You need to specify one %s file to import from. A file type e.g. OpenSong Je potÅ™eba upÅ™esnit jeden %s soubor, ze kterého se bude importovat. You need to specify one %s folder to import from. A song format e.g. PowerSong Je potÅ™eba upÅ™esnit jednu %s složku, ze které se bude importovat. Importing Songs Import písní Welcome to the Duplicate Song Removal Wizard Vítá Vás Průvodce odstranÄ›ním duplicitních písní Written by Napsal Author Unknown Neznámý autor About O aplikaci &Add &PÅ™idat Add group PÅ™idat skupinu Advanced PokroÄilé All Files VÅ¡echny soubory Automatic Automaticky Background Color Barva pozadí Bottom Dole Browse... Procházet... Cancel ZruÅ¡it CCLI number: CCLI Äíslo: Create a new service. VytvoÅ™it novou službu. Confirm Delete Potvrdit smazání Continuous Spojitý Default Výchozí Default Color: Výchozí barva: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Služba %Y-%m-%d %H-%M &Delete &Smazat Display style: Styl zobrazení: Duplicate Error Duplicitní chyba &Edit &Upravit Empty Field Prázdné pole Error Chyba Export Export File Soubor File Not Found Soubor nenalezen File %s not found. Please try selecting it individually. Soubor %s nenalezen. Prosím zkuste ho vybrat jednotlivÄ›. pt Abbreviated font pointsize unit pt Help NápovÄ›da h The abbreviated unit for hours hod Invalid Folder Selected Singular Vybraná neplatná složka Invalid File Selected Singular Vybraný neplatný soubor Invalid Files Selected Plural Vybrané neplatné soubory Image Obrázek Import Import Layout style: Styl rozvržení: Live Naživo Live Background Error Chyba v pozadí naživo Live Toolbar Nástrojová liÅ¡ta Naživo Load NaÄíst Manufacturer Singular Výrobce Manufacturers Plural Výrobci Model Singular Model Models Plural Modely m The abbreviated unit for minutes min Middle UprostÅ™ed New Nový New Service Nová služba New Theme Nový motiv Next Track Další stopa No Folder Selected Singular Nevybraná žádná složka No File Selected Singular Nevybrán žádný soubor No Files Selected Plural Nevybrány žádné soubory No Item Selected Singular Nevybrána žádná položka No Items Selected Plural Nevybrány žádné položky OpenLP is already running. Do you wish to continue? Aplikace OpenLP je už spuÅ¡tÄ›na. PÅ™ejete si pokraÄovat? Open service. Otevřít službu. Play Slides in Loop PÅ™ehrát snímky ve smyÄce Play Slides to End PÅ™ehrát snímky ke konci Preview Náhled Print Service Tisk služby Projector Singular Projektor Projectors Plural Projektory Replace Background Nahradit pozadí Replace live background. Nahradit pozadí naživo. Reset Background Obnovit pozadí Reset live background. Obnovit pozadí naživo. s The abbreviated unit for seconds s Save && Preview Uložit a náhled Search Hledat Search Themes... Search bar place holder text Hledat motiv... You must select an item to delete. Je tÅ™eba vybrat nÄ›jakou položku ke smazání. You must select an item to edit. Je tÅ™eba vybrat nÄ›jakou položku k úpravám. Settings Nastavení Save Service Uložit službu Service Služba Optional &Split Volitelné &rozdÄ›lení Split a slide into two only if it does not fit on the screen as one slide. RozdÄ›lit snímek na dva jen v případÄ›, že se nevejde na obrazovku jako jeden snímek. Start %s Spustit %s Stop Play Slides in Loop Zastavit pÅ™ehrávání snímků ve smyÄce Stop Play Slides to End Zastavit pÅ™ehrávání snímků ke konci Theme Singular Motiv Themes Plural Motivy Tools Nástroje Top NahoÅ™e Unsupported File Nepodporovaný soubor Verse Per Slide VerÅ¡ na snímek Verse Per Line VerÅ¡ na jeden řádek Version Verze View Zobrazit View Mode Režim zobrazení CCLI song number: CCLI Äíslo písnÄ›: Preview Toolbar Nástrojová liÅ¡ta Náhled OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Nahradit živé pozadí (live background) není dostupné když je pÅ™ehrávaÄ WebKit zakázaný. Songbook Singular ZpÄ›vník Songbooks Plural ZpÄ›vníky OpenLP.core.lib %s and %s Locale list separator: 2 items %s a %s %s, and %s Locale list separator: end %s, a %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Rozhraní výbÄ›ru zdroje PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Modul prezentace</strong><br />Modul prezentace dovoluje zobrazovat prezentace z nÄ›kolika různých programů. VýbÄ›r dostupných prezentaÄních programů je uživateli přístupný v rozbalovacím menu. Presentation name singular Prezentace Presentations name plural Prezentace Presentations container title Prezentace Load a new presentation. NaÄíst novou prezentaci. Delete the selected presentation. Smazat vybranou prezentaci. Preview the selected presentation. Náhled vybrané prezentace. Send the selected presentation live. Zobrazit vybranou prezentaci naživo. Add the selected presentation to the service. PÅ™idat vybranou prezentaci ke službÄ›. PresentationPlugin.MediaItem Select Presentation(s) Vybrat prezentace Automatic Automaticky Present using: Nyní používající: File Exists Soubor existuje A presentation with that filename already exists. Prezentace s tímto názvem souboru už existuje. This type of presentation is not supported. Tento typ prezentace není podporován. Presentations (%s) Prezentace (%s) Missing Presentation ChybÄ›jící prezentace The presentation %s is incomplete, please reload. Prezentace %s není kompletní. NaÄtÄ›te ji znovu. The presentation %s no longer exists. Prezentace %s už neexistuje. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Vznikla chyba se zaÄlenÄ›ní Powerpoint prezentace a prezentace bude zastavena. Pokud si pÅ™ejete prezentaci zobrazit, spusÅ¥te ji znovu. PresentationPlugin.PresentationTab Available Controllers Dostupné ovládání %s (unavailable) %s (nedostupný) Allow presentation application to be overridden Povolit pÅ™ekrytí prezentaÄní aplikace PDF options Možnosti PDF Use given full path for mudraw or ghostscript binary: Použít úplnou cestu k programu mudraw nebo ghostscript: Select mudraw or ghostscript binary. Vybrat program mudraw nebo ghostscript The program is not ghostscript or mudraw which is required. Vybraný program není ani ghostscript ani mudraw. Jeden z nich je vyžadován. PowerPoint options Možnosti PowerPointu Clicking on a selected slide in the slidecontroller advances to next effect. Klepnutí na vybraný snímek v seznamu snímků spustí dalsí efekt (volba opraví efekty a animace PowerPoint prezentacích). Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Nechat PowerPoint řídit velikost a umístÄ›ní prezentaÄního okna (Å™eší problém se zmÄ›nou velikosti ve Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Modul dálkové ovládání</strong><br />Modul dálkové ovládání poskytuje schopnost zasílat zprávy aplikaci OpenLP běžící na jiném poÄítaÄi. Zprávy je možno posílat internetovým prohlížeÄem nebo vzdáleným API. Remote name singular Dálkové ovládání Remotes name plural Dálková ovládání Remote container title Dálkové ovládání Server Config Change ZmÄ›na nastavení serveru Server configuration changes will require a restart to take effect. Aby se projevily ZmÄ›ny nastavení serveru, je nutné aplikaci ukonÄit a znovu spustit. RemotePlugin.Mobile Service Manager Správce služby Slide Controller Ovládání snímku Alerts UpozornÄ›ní Search Hledat Home Domů Refresh Obnovit Blank Prázdný Theme Motiv Desktop Plocha Show Zobrazit Prev PÅ™edchozí Next Další Text Text Show Alert Zobrazit upozornÄ›ní Go Live Zobrazit naživo Add to Service PÅ™idat ke službÄ› Add &amp; Go to Service PÅ™idat &amp; PÅ™ejít ke službÄ› No Results Žádné hledání Options Možnosti Service Služba Slides Snímky Settings Nastavení Remote Dálkové ovládání Stage View Zobrazení na pódiu Live View Zobrazení naživo RemotePlugin.RemoteTab Serve on IP address: Poslouchat na IP adresse: Port number: Číslo portu: Server Settings Nastavení serveru Remote URL: URL dálkového ovládání: Stage view URL: URL zobrazení na pódiu: Display stage time in 12h format Zobrazit Äas na pódiu ve 12hodinovém formátu Android App Android aplikace Live view URL: URL zobrazení naživo: HTTPS Server HTTPS server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Nemohu najít SSL certifikát. HTTPS server nebude dostupný, dokud nebude nalezen SSL certifikát. Pro více informací viz dokumentaci. User Authentication Ověření uživatele User id: ID uživatatele: Password: Heslo: Show thumbnails of non-text slides in remote and stage view. Zobrazit miniatury netextových snímků v dálkovém ovládání a v zobrazení na pódiu. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Naskenujte QR kód nebo pro instalaci Android aplikace ze služby Google Play klepnÄ›te na <a href="%s">stáhnout</a>. SongUsagePlugin &Song Usage Tracking Sledování použití &písní &Delete Tracking Data &Smazat data sledování Delete song usage data up to a specified date. Smazat data použití písní až ke konkrétnímu kalendářnímu datu. &Extract Tracking Data &Rozbalit data sledování Generate a report on song usage. VytvoÅ™it hlášení z používání písní. Toggle Tracking PÅ™epnout sledování Toggle the tracking of song usage. PÅ™epnout sledování použití písní. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Modul používání písní</strong><br />Tento modul sleduje používání písní ve službách. SongUsage name singular Používání písní SongUsage name plural Používání písní SongUsage container title Používání písní Song Usage Používání písní Song usage tracking is active. Sledování použití písní je zapnuto. Song usage tracking is inactive. Sledování použití písní je vypnuto. display zobrazení printed vytisknutý SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Smazat data používání písní Delete Selected Song Usage Events? Smazat události vybraného používání písní? Are you sure you want to delete selected Song Usage data? Jste si jist, že chcete smazat vybraná data o používání písní? Deletion Successful Smazání úspěšné Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vyberte datum, ke kterému se smažou data o používání písní. VÅ¡echna data, zaznamenaná pÅ™ed tímto datem budou natrvalo smazána. All requested data has been deleted successfully. VÅ¡echna požadovaná data byla úspěšnÄ› smazána. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Rozbalení používání písní Select Date Range Vybrat rozsah datumu to do Report Location UmístÄ›ní hlášení Output File Location UmístÄ›ní výstupního souboru usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation VytvoÅ™ení hlášení Report %s has been successfully created. Hlášení %s bylo úspěšnÄ› vytvoÅ™eno. Output Path Not Selected Nevybrána výstupní cesta You have not set a valid output location for your song usage report. Please select an existing path on your computer. Není nastavená složka pro výstup z hlášení používání písní. Prosím vyberte existující složku ve vaÅ¡em poÄítaÄi. Report Creation Failed VytvoÅ™ení hlášení selhalo An error occurred while creating the report: %s PÅ™i vytváření hlášení vznikla chyba: %s SongsPlugin &Song &Píseň Import songs using the import wizard. Importovat písnÄ› použitím průvodce importem. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Modul písnÄ›</strong><br />Modul písnÄ› umožňuje zobrazovat a spravovat písnÄ›. &Re-index Songs &PÅ™eindexace písnÄ› Re-index the songs database to improve searching and ordering. PÅ™eindexovat písnÄ› v databázi pro vylepÅ¡ení hledání a Å™azení. Reindexing songs... PÅ™eindexovávám písnÄ›... Arabic (CP-1256) ArabÅ¡tina (CP-1256) Baltic (CP-1257) Baltské jazyky (CP-1257) Central European (CP-1250) StÅ™edoevropské jazyky (CP-1250) Cyrillic (CP-1251) Cyrilice (CP-1251) Greek (CP-1253) ŘeÄtina (CP-1253) Hebrew (CP-1255) HebrejÅ¡tina (CP-1255) Japanese (CP-932) JaponÅ¡tina (CP-932) Korean (CP-949) KorejÅ¡tina (CP-949) Simplified Chinese (CP-936) ZjednoduÅ¡ená ÄínÅ¡tina (CP-936) Thai (CP-874) ThajÅ¡tina (CP-874) Traditional Chinese (CP-950) TradiÄní ÄínÅ¡tina (CP-950) Turkish (CP-1254) TureÄtina (CP-1254) Vietnam (CP-1258) VietnamÅ¡tina (CP-1258) Western European (CP-1252) Západoevropské jazyky (CP-1252) Character Encoding Kódování znaků The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Nastavení kódové stránky zodpovídá za správnou reprezentaci znaků. PÅ™edvybraná volba by obvykle mÄ›la být správná. Please choose the character encoding. The encoding is responsible for the correct character representation. Vyberte prosím kódování znaků. Kódování zodpovídá za správnou reprezentaci znaků. Song name singular Píseň Songs name plural PísnÄ› Songs container title PísnÄ› Exports songs using the export wizard. Exportovat písnÄ› použitím průvodce exportem. Add a new song. PÅ™idat novou píseň. Edit the selected song. Upravit vybranou píseň. Delete the selected song. Smazat vybranou píseň. Preview the selected song. Náhled vybrané písnÄ›. Send the selected song live. Zobrazit vybranou píseň naživo. Add the selected song to the service. PÅ™idat vybranou píseň ke službÄ›. Reindexing songs PÅ™eindexovávám písnÄ› CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Import písní ze služby CCLI SongSelect. Find &Duplicate Songs &Duplicitní (zdvojené) písnÄ› Find and remove duplicate songs in the song database. Najít a odstranit duplicitní (zdvojené) písnÄ› v databázi písní. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Text Music Author who wrote the music of a song Hudba Words and Music Author who wrote both lyrics and music of a song Hudba a text Translation Author who translated the song PÅ™eklad SongsPlugin.AuthorsForm Author Maintenance Údržba autorů Display name: Zobrazené jméno: First name: KÅ™estní jméno: Last name: Příjmení: You need to type in the first name of the author. Je potÅ™eba zadat kÅ™estní jméno autora. You need to type in the last name of the author. Je potÅ™eba zadat příjmení autora. You have not set a display name for the author, combine the first and last names? Zobrazené jméno autora není zadáno. Má se zkombinovat kÅ™estní jméno a příjmení? SongsPlugin.CCLIFileImport The file does not have a valid extension. Soubor nemá platnou příponu. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Neplatný DreamBeam soubor s písní. ChybÄ›jící znaÄka DreamSong. SongsPlugin.EasyWorshipSongImport Administered by %s Spravuje %s "%s" could not be imported. %s "%s" nemohlo být importováno. %s Unexpected data formatting. NeoÄekávané formátování dat. No song text found. Žádný text písnÄ› nenalezen. [above are Song Tags with notes imported from EasyWorship] [výše jsou znaÄky písní s poznámkami importovanými z EasyWorship] This file does not exist. Tento soubor neexistuje. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Nemohu najít soubor "Songs.MB". Musí být ve stejné složce jako soubor "Songs.DB". This file is not a valid EasyWorship database. Soubor není ve formátu databáze EasyWorship. Could not retrieve encoding. Nemohu získat kódování. SongsPlugin.EditBibleForm Meta Data Meta data Custom Book Names Uživatelské názvy knih SongsPlugin.EditSongForm Song Editor Editor písnÄ› &Title: &Název: Alt&ernate title: &Jiný název: &Lyrics: &Text písnÄ›: &Verse order: &PoÅ™adí veršů: Ed&it All &Upravit vÅ¡e Title && Lyrics Název a text písnÄ› &Add to Song &PÅ™idat k písni &Remove &Odstranit A&dd to Song &PÅ™idat k písni R&emove &Odstranit New &Theme Nový &motiv Copyright Information Informace o autorském právu Comments Komentáře Theme, Copyright Info && Comments Motiv, autorská práva a komentáře Add Author PÅ™idat autora This author does not exist, do you want to add them? Tento autor neexistuje. Chcete ho pÅ™idat? This author is already in the list. Tento autor je už v seznamu. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Není vybrán platný autor. BuÄto vyberte autora ze seznamu nebo zadejte nového autora a pro pÅ™idání nového autora klepnÄ›te na tlaÄítko "PÅ™idat autora k písni". Add Topic PÅ™idat téma This topic does not exist, do you want to add it? Toto téma neexistuje. Chcete ho pÅ™idat? This topic is already in the list. Toto téma je už v seznamu. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Není vybráno platné téma. BuÄto vyberte téma ze seznamu nebo zadejte nové téma a pro pÅ™idání nového tématu klepnÄ›te na tlaÄítko "PÅ™idat téma k písni". You need to type in a song title. Je potÅ™eba zadat název písne. You need to type in at least one verse. Je potÅ™eba zadat alespoň jednu sloku. You need to have an author for this song. Pro tuto píseň je potÅ™eba zadat autora. Linked Audio PÅ™ipojený zvuk Add &File(s) PÅ™idat &soubor(y) Add &Media PÅ™idat &Médium Remove &All Odstranit &VÅ¡e Open File(s) Otevřít soubor(y) <strong>Warning:</strong> Not all of the verses are in use. <strong>Varování:</strong> Nejsou použity vÅ¡echny sloky. <strong>Warning:</strong> You have not entered a verse order. <strong>Varování:</strong> Nebylo zadáno poÅ™adí slok. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Sloka odpovídající "%(invalid)s" neexistuje. Platné položky jsou %(valid)s. Prosím zadejte sloky oddÄ›lené mezerou. Invalid Verse Order Neplatné poÅ™adí veršů &Edit Author Type &Upravit druh autora Edit Author Type Uprava druhu autora Choose type for this author Vybrat druh pro tohoto autora There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Sloky odpovídající "%(invalid)s" neexistují. Platné položky jsou %(valid)s. Prosím zadejte sloky oddÄ›lené mezerou. &Manage Authors, Topics, Songbooks &Správa autorů, témat, zpÄ›vníků Add &to Song &PÅ™idat k písni Re&move &Odstranit Authors, Topics && Songbooks AutoÅ™i, témata a zpÄ›vníky Add Songbook PÅ™idat zpÄ›vník This Songbook does not exist, do you want to add it? Tento zpÄ›vník neexistuje. Chcete ho pÅ™idat? This Songbook is already in the list. Tento zpÄ›vník je už v seznamu. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Není vybrán platný zpÄ›vník. BuÄto vyberte zpÄ›vník ze seznamu nebo zadejte nový zpÄ›vník a pro pÅ™idání nového zpÄ›vníku klepnÄ›te na tlaÄítko "PÅ™idat k písni". SongsPlugin.EditVerseForm Edit Verse Upravit sloku &Verse type: &Typ sloky: &Insert &Vložit Split a slide into two by inserting a verse splitter. Vložením oddÄ›lovaÄe slok se snímek rozdÄ›lí na dva. SongsPlugin.ExportWizardForm Song Export Wizard Průvodce exportem písní Select Songs Vybrat písnÄ› Check the songs you want to export. ZaÅ¡krtnÄ›te písnÄ›, které chcete exportovat. Uncheck All OdÅ¡krtnout vÅ¡e Check All ZaÅ¡krtnout vÅ¡e Select Directory Vybrat složku Directory: Složka: Exporting Exportuji Please wait while your songs are exported. PoÄkejte prosím, než budou písnÄ› vyexportovány. You need to add at least one Song to export. Je potÅ™eba pÅ™idat k exportu alespoň jednu píseň. No Save Location specified Není zadáno umístÄ›ní pro uložení Starting export... SpouÅ¡tím export... You need to specify a directory. Je potÅ™eba zadat složku. Select Destination Folder Vybrat cílovou složku Select the directory where you want the songs to be saved. Vybrat složku, kam se budou ukládat písnÄ›. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Tento průvode pomáhá exportovat písnÄ› do formátu <strong>OpenLyrics</strong>. Jedná se o bezplatný a otevÅ™ený formát pro chvály. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Neplatný Folpresenter soubor s písní. Žádné sloky nenalezeny. SongsPlugin.GeneralTab Enable search as you type Zapnout hledat bÄ›hem psaní SongsPlugin.ImportWizardForm Select Document/Presentation Files Vybrat dokumentové/prezentaÄní soubory Song Import Wizard Průvodce importem písní This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Tento průvodce pomáhá importovat písnÄ› z různých formátů. Importování se spustí klepnutím níže na tlaÄítko další a výbÄ›rem formátu, ze kterého se bude importovat. Generic Document/Presentation Obecný dokument/prezentace Add Files... PÅ™idat soubory... Remove File(s) Odstranit soubory Please wait while your songs are imported. PoÄkejte prosím, než budou písnÄ› naimportovány. Words Of Worship Song Files Words of Worship soubory s písnÄ›mi Songs Of Fellowship Song Files Songs Of Fellowship soubory s písnÄ›mi SongBeamer Files SongBeamer soubory SongShow Plus Song Files SongShow Plus soubory s písnÄ›mi Foilpresenter Song Files Foilpresenter soubory s písnÄ›mi Copy Kopírovat Save to File Uložit do souboru The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import z aplikace Songs of Fellowship byl zakázán, protože aplikace OpenLP nemůže pÅ™istupovat k aplikacím OpenOffice nebo LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import obecných dokumentů/prezentaci byl zakázán, protože aplikace OpenLP nemůže pÅ™istupovat k aplikacím OpenOffice nebo LibreOffice. OpenLyrics Files Soubory OpenLyrics CCLI SongSelect Files CCLI SongSelect soubory EasySlides XML File XML soubory EasySlides EasyWorship Song Database Databáze písní EasyWorship DreamBeam Song Files DreamBeam soubory s písnÄ›mi You need to specify a valid PowerSong 1.0 database folder. Je potÅ™eba upÅ™esnit platnou složku s databází PowerSong 1.0. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Nejprve je nutno pÅ™evést databázi ZionWorx do textového CSV souboru, jak je vysvÄ›tleno v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">uživatelské dokumentaci</a>. SundayPlus Song Files SundayPlus soubory s písnÄ›mi This importer has been disabled. Import pro tento formát byl zakázán. MediaShout Database Databáze MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Import z aplikace MediaShout je podporován jen ve Windows. Byl zakázán kvůli chybÄ›jícímu Python modulu. Pokud si pÅ™ejete použít import z této aplikace, je potÅ™eba nainstalovat modul "pyodbc". SongPro Text Files SongPro textové soubory SongPro (Export File) SongPro (exportovaný soubor) In SongPro, export your songs using the File -> Export menu V aplikaci SongPro se písnÄ› exportují pÅ™es menu File -> Export EasyWorship Service File EasyWorship soubory služby WorshipCenter Pro Song Files WorshipCenter Pro soubory s písnÄ›mi The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Import z aplikace WorshipCenter Pro je podporován jen ve Windows. Byl zakázán kvůli chybÄ›jícímu Python modulu. Pokud si pÅ™ejete použít import z této aplikace, je potÅ™eba nainstalovat modul "pyodbc". PowerPraise Song Files PowerPraise soubory s písnÄ›mi PresentationManager Song Files PresentationManager soubory s písnÄ›mi ProPresenter 4 Song Files ProPresenter 4 soubory s písnÄ›mi Worship Assistant Files Worship Assistant soubory Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. V aplikace Worship Assistant exportujte databázi do souboru CSV. OpenLyrics or OpenLP 2 Exported Song OpenLyrics nebo písnÄ› exportované z OpenLP 2 OpenLP 2 Databases Databáze OpenLP 2 LyriX Files LyriX soubory LyriX (Exported TXT-files) LyriX (Exportované TXT-soubory) VideoPsalm Files VideoPsalm soubory VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s ZpÄ›vníky VideoPsalm jsou běžnÄ› umístÄ›ny v %s SongsPlugin.LyrixImport Error: %s Chyba: %s SongsPlugin.MediaFilesForm Select Media File(s) Vybrat mediální soubor(y) Select one or more audio files from the list below, and click OK to import them into this song. Vyberte jeden nebo více zvukových souborů ze seznamu níže a k písni je lze importovat klepnutím na tlaÄítko OK. SongsPlugin.MediaItem Titles Názvy Lyrics Text písnÄ› CCLI License: CCLI Licence: Entire Song Celá píseň Maintain the lists of authors, topics and books. Spravovat seznamy autorů, témat a zpÄ›vníků. copy For song cloning kopírovat Search Titles... Hledat název... Search Entire Song... Hledat celou píseň... Search Lyrics... Hledat text písnÄ›... Search Authors... Hledat autory... Are you sure you want to delete the "%d" selected song(s)? Jste si jisti, že chcete smazat "%d" vybraných písní? Search Songbooks... Hledat zpÄ›vníky... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Není možno otevřít databázi MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Neplatná databáze písní OpenLP 2. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportuji "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Neplatný OpenSong soubor s písní. ChybÄ›jící znaÄka písnÄ›. SongsPlugin.PowerSongImport No songs to import. Žádné písnÄ› k importu. Verses not found. Missing "PART" header. Sloky nenalezeny. ChybÄ›jící hlaviÄka "PART". No %s files found. Nenalezeny žádné soubory %s. Invalid %s file. Unexpected byte value. Neplatný soubor %s. NeoÄekávaná bajtová hodnota. Invalid %s file. Missing "TITLE" header. Neplatný soubor %s. ChybÄ›jící hlaviÄka "TITLE". Invalid %s file. Missing "COPYRIGHTLINE" header. Neplatný soubor %s. ChybÄ›jící hlaviÄka "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: &Název: &Publisher: &Vydavatel: You need to type in a name for the book. Je potÅ™eba zadat název zpÄ›vníku. Songbook Maintenance Údržba zpÄ›vníku SongsPlugin.SongExportForm Your song export failed. Export písnÄ› selhal. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export dokonÄen. Pro import tÄ›chto souborů použijte import z <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s Export písnÄ› selhal, protože vnikla chyba: %s SongsPlugin.SongImport copyright autorská práva The following songs could not be imported: Následující písnÄ› nemohly být importovány: Cannot access OpenOffice or LibreOffice Nelze pÅ™istupovat k aplikacím OpenOffice nebo LibreOffice Unable to open file Nelze otevřít soubor File not found Soubor nenalezen SongsPlugin.SongMaintenanceForm Could not add your author. Nemohu pÅ™idat autora. This author already exists. Tento autor již existuje. Could not add your topic. Nemohu pÅ™idat téma. This topic already exists. Toto téma již existuje. Could not add your book. Nemohu pÅ™idat zpÄ›vník. This book already exists. Tento zpÄ›vník již existuje. Could not save your changes. Nemohu uložit zmÄ›ny. Could not save your modified author, because the author already exists. Nemohu uložit upraveného autora, protože tento autor již existuje. Could not save your modified topic, because it already exists. Nemohu uložit upravené téma, protože již existuje. Delete Author Smazat autora Are you sure you want to delete the selected author? Jste si jist, že chcete smazat vybraného autora? This author cannot be deleted, they are currently assigned to at least one song. Nemohu smazat autora, protože je v souÄasné dobÄ› pÅ™iÅ™azen alespoň k jedné písni. Delete Topic Smazat téma Are you sure you want to delete the selected topic? Jste si jist, že chcete smazat vybrané téma? This topic cannot be deleted, it is currently assigned to at least one song. Nemohu smazat toto téma, protože je v souÄasné dobÄ› pÅ™iÅ™azeno alespoň k jedné písni. Delete Book Smazat zpÄ›vník Are you sure you want to delete the selected book? Jste si jist, že chcete smazat vybraný zpÄ›vník? This book cannot be deleted, it is currently assigned to at least one song. Nemohu smazat tento zpÄ›vník, protože je v souÄasné dobÄ› pÅ™iÅ™azen alespoň k jedné písni. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s již existuje. PÅ™ejete si vytvoÅ™it písnÄ› s autorem %s a použít již existujícího autora %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Téma %s již existuje. PÅ™ejete si vytvoÅ™it písnÄ› s tématem %s a použít již existující téma %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? ZpÄ›vník %s již existuje. PÅ™ejete si vytvořít písnÄ› se zpÄ›vníkem %s a použít již existující zpÄ›vník %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect import <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Poznámka:</strong> Pro import písní z CCLI SongSelect je vyžadování internetové pÅ™ipojení. Username: Uživatelské jméno: Password: Heslo: Save username and password Uložit pÅ™ihlaÅ¡ovací jméno uživatele a heslo Login PÅ™ihlásit Search Text: Hledaný text: Search Hledat Found %s song(s) Nalezeno %s písní Logout Odhlásit View Zobrazit Title: Nadpis: Author(s): AutoÅ™i: Copyright: Autorská práva: CCLI Number: CCLI Äíslo: Lyrics: Text písnÄ›: Back ZpÄ›t Import Import More than 1000 results Více než 1000 výsledků Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. VaÅ¡e hledání bylo zastaveno, protože bylo nalezeno více než 1000 záznamů. Prosím upÅ™esnÄ›te hledání, aby výsledky byly pÅ™esnÄ›jší. Logging out... OdhlaÅ¡uji se... Save Username and Password Uložit pÅ™ihlaÅ¡ovací jméno a heslo WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. VAROVÃNÃ: Uložení jména a hesla NENà ZABEZPEÄŒENÉ, heslo bude uloženo nezabezpeÄenÄ› jako OTEVŘENà TEXT. Pro uložení hesla klepnÄ›te na Ano nebo na Ne pro zruÅ¡ení a heslo nebude uloženo. Error Logging In Chyba pÅ™ihlaÅ¡ování There was a problem logging in, perhaps your username or password is incorrect? PÅ™ihlášení se nezdaÅ™ilo. Možná nesprávné uživatelské jméno nebo heslo? Song Imported PísnÄ› naimportovány Incomplete song Neúplná píseň This song is missing some information, like the lyrics, and cannot be imported. U písnÄ› chybí nÄ›které informace jako například text a tudíž import není možný. Your song has been imported, would you like to import more songs? Píseň byla naimportována. PÅ™ejete si importovat další písnÄ›? Stop Zastavit SongsPlugin.SongsTab Songs Mode Režim písnÄ› Display verses on live tool bar Zobrazit sloky v nástrojové liÅ¡tÄ› naživo Update service from song edit Aktualizovat službu pÅ™i úpravÄ› písnÄ› Import missing songs from service files Importovat chybÄ›jících písnÄ› ze souborů služby Display songbook in footer Zobrazit název zpÄ›vníku v zápatí Display "%s" symbol before copyright info Zobrazit symbol "%s" pÅ™ed informacemi o autorských právech SongsPlugin.TopicsForm Topic Maintenance Údržba témat Topic name: Název tématu: You need to type in a topic name. Je potÅ™eba zadat název tématu. SongsPlugin.VerseType Verse Sloka Chorus Refrén Bridge PÅ™echod Pre-Chorus PÅ™edrefrén Intro PÅ™edehra Ending ZakonÄení Other Ostatní SongsPlugin.VideoPsalmImport Error: %s Chyba: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Nepaltný Words of Worship soubor s písní. ChybÄ›jící hlaviÄka %s".WoW soubor\nSlova písnÄ› Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Neplatný Words of Worship soubor s písní. ChybÄ›jící Å™etÄ›zec "%s". CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Chyba pÅ™i Ätení CSV souboru. Line %d: %s Řádek %d: %s Decoding error: %s Chyba dekódování: %s File not valid WorshipAssistant CSV format. Soubor není ve formátu WorshipAssistant CSV. Record %d Záznam %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. NepodaÅ™ilo se pÅ™ipojit k databázi WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Chyba pÅ™i Ätení CSV souboru. File not valid ZionWorx CSV format. Soubor není ve formátu ZionWorx CSV. Line %d: %s Řádek %d: %s Decoding error: %s Chyba dekódování: %s Record %d Záznam %d Wizard Wizard Průvodce This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Tento průvodce pomáhá odstranit z databáze písní duplicitní (zdvojené) písnÄ›. PÅ™ed smazáním bude možnost pÅ™ekontrolovat každou duplicitní píseň. Žádná píseň nebude smazána bez VaÅ¡eho výslovného souhlasu. Searching for duplicate songs. Hledám duplicitní písnÄ›. Please wait while your songs database is analyzed. PoÄkejte prosím, než bude dokonÄena analýza databáze písní. Here you can decide which songs to remove and which ones to keep. Zde se můžete rozhodnout, které písnÄ› odstranit, a které ponechat. Review duplicate songs (%s/%s) PÅ™ekontrolovat duplicitní písnÄ› (%s/%s) Information Informace No duplicate songs have been found in the database. V databázi nebyly nalezeny žádné duplicitní písnÄ›. OpenLP-2.4/resources/i18n/fr.ts0000644000175000017500000157247712657640340015350 0ustar raoulraoul AlertsPlugin &Alert &Alerte Show an alert message. Afficher un message d'alerte. Alert name singular Alerte Alerts name plural Alertes Alerts container title Alertes <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Module Alertes</strong><br />Le module d'alerte permet l'affichage de messages d'avertissements sur l'écran de présentation. AlertsPlugin.AlertForm Alert Message Message d'alerte Alert &text: &Texte d'Alerte : &New &Nouveau &Save &Enregistrer Displ&ay A&fficher Display && Cl&ose &Afficher && Fermer New Alert Nouvelle alerte &Parameter: &Paramètre : No Parameter Found Aucun paramètre n'a été trouvé You have not entered a parameter to be replaced. Do you want to continue anyway? Vous n'avez entré aucun paramètre à remplacer. Voulez-vous tout de même continuer ? No Placeholder Found Aucun espace réservé trouvé The alert text does not contain '<>'. Do you want to continue anyway? Le texte d'alerte ne contient pas '<>'. Voulez-vous tout de même continuer ? You haven't specified any text for your alert. Please type in some text before clicking New. Vous n'avez pas spécifié de texte pour votre alerte. Veuillez entrer votre message puis cliquer sur Nouveau. AlertsPlugin.AlertsManager Alert message created and displayed. Message d'alerte créé et affiché. AlertsPlugin.AlertsTab Font Police Font name: Nom de la police : Font color: Couleur de la police : Background color: Couleur de fond : Font size: Taille de la police : Alert timeout: Temps d'alerte : BiblesPlugin &Bible &Bible Bible name singular Bible Bibles name plural Bibles Bibles container title Bibles No Book Found Aucun livre trouvé No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Aucun livre correspondant n'a été trouvé dans cette Bible. Vérifiez que vous avez correctement écrit le nom du livre. Import a Bible. Importer une Bible. Add a new Bible. Ajoute une nouvelle Bible. Edit the selected Bible. Édite la bible sélectionnée. Delete the selected Bible. Supprime la Bible sélectionnée. Preview the selected Bible. Prévisualiser la Bible sélectionnée. Send the selected Bible live. Envoie la Bible sélectionnée au direct. Add the selected Bible to the service. Ajoute la Bible sélectionnée au service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Module Bible</strong><br />Le Module Bible permet d'afficher des versets bibliques de différentes sources pendant le service. &Upgrade older Bibles Mettre à &jour les anciennes Bibles Upgrade the Bible databases to the latest format. Mettre à jour les bases de données de Bible au nouveau format. Genesis Genèse Exodus Exode Leviticus Lévitique Numbers Nombres Deuteronomy Deutéronome Joshua Josué Judges Juges Ruth Ruth 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Rois 2 Kings 2 Rois 1 Chronicles 1 Chroniques 2 Chronicles 2 Chroniques Ezra Esdras Nehemiah Néhémie Esther Esther Job Job Psalms Psaumes Proverbs Proverbes Ecclesiastes Ecclésiaste Song of Solomon Cantique Isaiah Esaïe Jeremiah Jérémie Lamentations Lamentations Ezekiel Ezéchiel Daniel Daniel Hosea Osée Joel Joël Amos Amos Obadiah Abdias Jonah Jonas Micah Michée Nahum Nahum Habakkuk Habacuc Zephaniah Sophonie Haggai Aggée Zechariah Zacharie Malachi Malachie Matthew Matthieu Mark Marc Luke Luc John Jean Acts Actes Romans Romains 1 Corinthians 1 Corinthiens 2 Corinthians 2 Corinthiens Galatians Galates Ephesians Ephésiens Philippians Philippiens Colossians Colossiens 1 Thessalonians 1 Thessaloniciens 2 Thessalonians 2 Thessaloniciens 1 Timothy 1 Timothée 2 Timothy 2 Timothée Titus Tite Philemon Philémon Hebrews Hébreux James Jacques 1 Peter 1 Pierre 2 Peter 2 Pierre 1 John 1 Jean 2 John 2 Jean 3 John 3 Jean Jude Jude Revelation Apocalypse Judith Judith Wisdom Sagesse Tobit Tobit Sirach Siracide Baruch Baruch 1 Maccabees 1 Macchabées 2 Maccabees 2 Macchabées 3 Maccabees 3 Macchabées 4 Maccabees 4 Macchabées Rest of Daniel Suppléments de Daniel Rest of Esther Suppléments d'Esther Prayer of Manasses Prière de Manassé Letter of Jeremiah Lettre de Jérémie Prayer of Azariah Prière d'Azariah Susanna Suzanne Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verset verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 versets - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 à , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 et end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse fin BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Vous devez spécifier le nom de la version de votre Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Vous devez définir un copyright pour votre Bible. Les Bibles dans le Domaine Publique doivent être indiquées comme telle. Bible Exists Bible existante This Bible already exists. Please import a different Bible or first delete the existing one. Cette Bible existe déjà. Veuillez importer une autre Bible ou supprimer la Bible existante. You need to specify a book name for "%s". Vous devez spécifier un nom de livre pour "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Le nom du livre "%s" est incorrect. Les nombres peuvent être utilisés uniquement au début et doivent être suivis par un ou plusieurs caractères non numériques. Duplicate Book Name Dupliquer le nom du livre The Book Name "%s" has been entered more than once. Le nom du livre "%s" a été entré plus d'une fois. BiblesPlugin.BibleManager Scripture Reference Error Écriture de référence erronée Web Bible cannot be used Les Bible Web ne peut être utilisée Text Search is not available with Web Bibles. La recherche textuelle n'est pas disponible avec les Bibles Web. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Vous n'avez pas spécifié de mot clé de recherche. Vous pouvez séparer vos mots clés par un espace afin de tous les rechercher ou les séparer par une virgule afin de rechercher l'un d'entre eux. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Il n'y a pas de Bibles actuellement installée. Veuillez utiliser l'assistant d'importation pour installer une ou plusieurs Bibles. No Bibles Available Aucune Bible disponible Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Votre référence biblique n'est pas supportée par OpenLP ou est invalide. Veuillez vous assurer que votre référence est conforme à l'un des motifs ci-dessous ou consultez le manuel d'utilisation :⎠⎠Livre Chapitre⎠Livre Chapitre%(range)sChapitre⎠Livre Chapitre%(verse)sVerset%(range)sVerset⎠Livre Chapitre%(verse)sVerset%(range)sVerset%(list)sVerset%(range)sVerset⎠Livre Chapitre%(verse)sVerset%(range)sVerset%(list)sChapitre%(verse)sVerset%(range)sVerset⎠Livre Chapitre%(verse)sVerset%(range)sChapitre%(verse)sVerset BiblesPlugin.BiblesTab Verse Display Affichage de versets Only show new chapter numbers Afficher uniquement les nouveaux numéros de chapitre Bible theme: Thème : No Brackets Pas de parenthèses ( And ) ( et ) { And } { et } [ And ] [ et ] Note: Changes do not affect verses already in the service. Remarque : Les modifications ne s'appliquent pas aux versets déjà dans le service. Display second Bible verses Afficher les versets de la seconde Bible Custom Scripture References Références bibliques personnalisées Verse Separator: Séparateur de verset : Range Separator: Séparateur d'intervalle : List Separator: Séparateur de liste : End Mark: Marque de fin : Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Plusieurs séparateurs de versets peuvent être définis.⎠Ils doivent être séparés par la barre verticale "|".⎠Veuillez supprimer cette ligne pour utiliser la valeur par défaut. English Français Default Bible Language Langue de la bible par défaut Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : Bible Language Langue de la bible Application Language Langue de l'application Show verse numbers Voir les numéros de versets BiblesPlugin.BookNameDialog Select Book Name Sélectionner le nom du livre Current name: Nom courant : Corresponding name: Nom correspondant : Show Books From Afficher le formulaire des livres Old Testament Ancien testament New Testament Nouveau testament Apocrypha Apocryphes The following book name cannot be matched up internally. Please select the corresponding name from the list. Le nom du livre suivant ne correspond pas. Veuillez sélectionner le bon nom dans la liste. BiblesPlugin.BookNameForm You need to select a book. Vous devez sélectionner un livre. BiblesPlugin.CSVBible Importing books... %s Import des livres... %s Importing verses... done. Import des versets... terminé. BiblesPlugin.EditBibleForm Bible Editor Éditeur de bible License Details Détails de la licence Version name: Nom de la version : Copyright: Droits d'auteur : Permissions: Autorisations : Default Bible Language Langue de la bible par défaut Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : Global Settings Paramètres généraux Bible Language Langue de la bible Application Language Langue de l'application English Français This is a Web Download Bible. It is not possible to customize the Book Names. C'est une Bible Web téléchargée. Ce n'est pas possible de personnaliser le nom des livres. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Pour utiliser les noms de livres personnalisés, "Langue de bible" doit être sélectionné à partir de l'onglet Méta données ou, si "Paramètres globales" est sélectionné, dans la page Bible de la configuration d'OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Enregistrement de la Bible et chargement des livres... Registering Language... Enregistrement des langues... Importing %s... Importing <book name>... Importation %s... Download Error Erreur de téléchargement There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Un problème de téléchargement de votre sélection de verset a été rencontré. Vérifiez votre connexion Internet et si cette erreur persiste merci de signaler ce dysfonctionnement. Parse Error Erreur syntaxique There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Un problème a été rencontré durant l'extraction de votre sélection de verset. Si cette erreur persiste merci de signaler ce dysfonctionnement. BiblesPlugin.ImportWizardForm Bible Import Wizard Assistant d'import de Bible This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Cet assistant vous permet d'importer des bibles de différents formats. Cliquez sur le bouton suivant si dessous pour démarrer le processus en sélectionnant le format à importer. Web Download Téléchargement Web Location: Emplacement : Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bible : Download Options Options de téléchargement Server: Serveur : Username: Nom d'utilisateur : Password: Mot de passe : Proxy Server (Optional) Serveur Proxy (Facultatif) License Details Détails de la licence Set up the Bible's license details. Mise en place des details de la licence de la Bible. Version name: Nom de la version : Copyright: Droits d'auteur : Please wait while your Bible is imported. Merci de patienter durant l'importation de la Bible. You need to specify a file with books of the Bible to use in the import. Veuillez sélectionner un fichier contenant les livres de la Bible à utiliser dans l'import. You need to specify a file of Bible verses to import. Veuillez sélectionner un fichier de versets bibliques à importer. You need to specify a version name for your Bible. Vous devez spécifier le nom de la version de votre Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Vous devez définir un copyright pour votre Bible. Les Bibles dans le Domaine Publique doivent être indiquées comme telle. Bible Exists Bible existante This Bible already exists. Please import a different Bible or first delete the existing one. Cette Bible existe déjà. Veuillez importer une autre Bible ou supprimer la Bible existante. Your Bible import failed. L'import de votre Bible à échoué. CSV File Fichier CSV Bibleserver Bibleserver Permissions: Autorisations : Bible file: Fichier Bible : Books file: Fichier de livres : Verses file: Fichier de versets : Registering Bible... Enregistrement de la Bible... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bible enregistrée. Veuillez noter que les versets seront téléchargés à la demande, par conséquent une connexion Internet sera nécessaire. Click to download bible list Cliquer pour télécharger la liste des bibles Download bible list Télécharge la liste des bibles Error during download Erreur durant le téléchargement An error occurred while downloading the list of bibles from %s. Une erreur est survenue lors du téléchargement de la liste des bibles depuis %s. BiblesPlugin.LanguageDialog Select Language Sélectionner la langue OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ne peut déterminer la langue de cette traduction de la Bible. Veillez sélectionner la langue dans la liste suivante. Language: Langue : BiblesPlugin.LanguageForm You need to choose a language. Vous devez choisir une langue. BiblesPlugin.MediaItem Quick Rapide Find: Recherche : Book: Carnet de chants : Chapter: Chapitre : Verse: Verset : From: De : To: A : Text Search Recherche de texte Second: Deuxième : Scripture Reference Référence biblique Toggle to keep or clear the previous results. Cocher pour garder ou effacer le résultat précédent. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Vous ne pouvez pas combiner les résultats de recherche pour les versets bibliques simples et doubles. Voulez-vous effacer les résultats et effectuer une nouvelle recherche ? Bible not fully loaded. Bible partiellement chargée. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La seconde Bible ne contient pas tous les versets présents dans la Bible principale. Seulement les versets trouvés dans les deux Bibles seront affichés. %d versets n'ont pas été inclus dans les résultats. Search Scripture Reference... Recherche de référence biblique... Search Text... Recherche dans le texte... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Êtes-vous sûrs de vouloir complètement supprimer la Bible "%s" d'OpenLP? Vous devrez réimporter cette Bible avant de pouvoir l'utiliser de nouveau. Advanced Avancé BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Fichier Bible incorrect. Les Bibles OpenSong peuvent être compressées. Vous devez les décompresser avant de les importer. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Fichier Bible incorrect. Ca ressemble à une bible au format Zefania XML, veuillez utiliser les options d'import Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Import de %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Retirer les balises inutilisées (cela peut prendre quelques minutes)... Importing %(bookname)s %(chapter)s... Import de %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Sélectionner un répertoire de sauvegarde Bible Upgrade Wizard Assistant de mise a jours des Bibles This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Cet assistant vous permet de mettre à jour vos Bibles de version antérieures à OpenLP 2. Cliquer sur le bouton suivant ci-dessous afin de commencer le processus de mise a jour. Select Backup Directory Sélectionner un répertoire de sauvegarde Please select a backup directory for your Bibles Veuillez sélectionner un répertoire de sauvegarde pour vos Bibles Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Les versions précédentes d'OpenLP 2.0 ne sont pas capables d'utiliser les Bibles mises à jour. Une sauvegarde de vos Bibles va être effectuée de sorte que vous puissiez simplement copier ces fichiers vers votre répertoire de données d'OpenLP si vous avez besoin de revenir à une version précédente de OpenLP. La procédure de restauration des fichiers est disponible dans notre <a href="http://wiki.openlp.org/faq">Foire aux questions</ a>. Please select a backup location for your Bibles. Veuillez sélectionner un répertoire de sauvegarde pour vos Bibles. Backup Directory: Répertoire de sauvegarde : There is no need to backup my Bibles Il n'est pas nécessaire de sauvegarder mes Bibles Select Bibles Sélectionner des Bibles Please select the Bibles to upgrade Veuillez sélectionner les Bibles à mettre à jour Upgrading Mise à jour Please wait while your Bibles are upgraded. Merci de patienter durant la mise à jour de vos Bibles. The backup was not successful. To backup your Bibles you need permission to write to the given directory. La sauvegarde à échouée. Pour sauvegarder vos Bibles vous devez disposer des droits en écriture sur le répertoire donné. Upgrading Bible %s of %s: "%s" Failed Mise à jour de la Bible %s sur %s : "%s" Échouée Upgrading Bible %s of %s: "%s" Upgrading ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour ... Download Error Erreur de téléchargement To upgrade your Web Bibles an Internet connection is required. Pour mettre à jour vos Bibles Web, une connexion à Internet est nécessaire. Upgrading Bible %s of %s: "%s" Upgrading %s ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour %s ... Upgrading Bible %s of %s: "%s" Complete Mise a jour de la Bible %s sur %s : "%s" Terminée , %s failed , %s échouée Upgrading Bible(s): %s successful%s Mise à jour de(s) (la) Bible(s) : %s avec succès%s Upgrade failed. La mise à jour a échouée. You need to specify a backup directory for your Bibles. Vous devez spécifier un répertoire de sauvegarde pour vos Bibles. Starting upgrade... Démarrage de la mise à jour... There are no Bibles that need to be upgraded. Il n'y a pas de Bibles à mettre à jour. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Mise a jour de(s) (la) Bible(s) : %(success)d avec succès%(failed_text)s Veuillez noter que les versets des Bibles Web seront téléchargés à la demande, par conséquent une connexion Internet sera nécessaire. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Fichier Bible incorrecte. Les bibles Zefania peuvent être compressées. Vous devez les décompresser avant de les importer. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Import de %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Diapositive personnalisée Custom Slides name plural Diapositives personnalisées Custom Slides container title Diapositives personnalisées Load a new custom slide. Charge une nouvelle diapositive personnalisée. Import a custom slide. Importe une diapositive personnalisée. Add a new custom slide. Ajoute la diapositive personnalisée sélectionnée. Edit the selected custom slide. Édite la diapositive personnalisée sélectionnée. Delete the selected custom slide. Supprime la diapositive personnalisée sélectionnée. Preview the selected custom slide. Prévisualiser la diapositive personnalisée sélectionnée. Send the selected custom slide live. Envoie la diapositive personnalisée sélectionnée au direct. Add the selected custom slide to the service. Ajoute la diapositive personnalisée sélectionnée au service. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Module Diapositive personnalisé</strong><br />Le module de diapositive personnalisé permet de créer des diapositives textuelles personnalisées affichées de la même manière que les chants. Ce module permet une grande liberté par rapport au module chant. CustomPlugin.CustomTab Custom Display Affichage Personnalisé Display footer Afficher le pied de page Import missing custom slides from service files Importer les diapositives personnalisées du fichier du service CustomPlugin.EditCustomForm Edit Custom Slides Édite les diapositives personnalisées &Title: &Titre : Add a new slide at bottom. Ajoute une nouvelle diapositive en bas. Edit the selected slide. Édite la diapositive sélectionnée. Edit all the slides at once. Édite toutes les diapositives en une. Split a slide into two by inserting a slide splitter. Sépare la diapositive en deux en insérant un séparateur de diapositive. The&me: Thè&me : &Credits: &Crédits : You need to type in a title. Vous devez spécifier un titre. Ed&it All Édite &tous Insert Slide Insère une diapositive You need to add at least one slide. Vous devez ajouter au moins une diapositive. CustomPlugin.EditVerseForm Edit Slide Éditer la diapo CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Etes-vous sur de vouloir supprimer les "%d" diapositive(s) personnalisée(s) sélectionnée(s) ? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Module Image</strong><br />Le module Image permet l'affichage d'images.<br />L'une des particularités de ce module est la possibilité de regrouper plusieurs images en un seul élément dans le gestionnaire de services, ce qui facilite son affichage. Ce module permet également de faire défiler les images en boucle avec une pause entre chacune d'elles. Les images du module peuvent également être utilisées pour remplacer l'arrière-plan du thème en cours. Image name singular Image Images name plural Images Images container title Images Load a new image. Charge une nouvelle image. Add a new image. Ajoute une nouvelle image. Edit the selected image. Édite l'image sélectionnée. Delete the selected image. Supprime l'image sélectionnée. Preview the selected image. Prévisualiser l'image sélectionnée. Send the selected image live. Envoie l'image sélectionnée au direct. Add the selected image to the service. Ajoute l'image sélectionnée au service. ImagePlugin.AddGroupForm Add group Ajouter un groupe Parent group: Groupe parent : Group name: Nom du groupe : You need to type in a group name. Vous devez entrer un nom de groupe. Could not add the new group. Impossible d'ajouter un nouveau groupe. This group already exists. Ce groupe existe déjà. ImagePlugin.ChooseGroupForm Select Image Group Sélection le groupe d'images Add images to group: Ajouter des images au groupe : No group Aucun groupe Existing group Groupe existant New group Nouveau groupe ImagePlugin.ExceptionDialog Select Attachment Sélectionner un objet ImagePlugin.MediaItem Select Image(s) Sélectionner une (des) Image(s) You must select an image to replace the background with. Vous devez sélectionner une image pour remplacer le fond. Missing Image(s) Image(s) manquante The following image(s) no longer exist: %s L(es) image(s) suivante(s) n'existe(nt) plus : %s The following image(s) no longer exist: %s Do you want to add the other images anyway? L(es) image(s) suivante(s) n'existe(nt) plus : %s Voulez-vous ajouter les autres images malgré tout ? There was a problem replacing your background, the image file "%s" no longer exists. Impossible de remplacer votre fond, le fichier image "%s" n'existe plus. There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. -- Top-level group -- -- Groupe principal -- You must select an image or group to delete. Vous devez sélectionner une image ou un groupe à supprimer. Remove group Retirer un groupe Are you sure you want to remove "%s" and everything in it? Etes-vous sûr de vouloir supprimer %s et tout ce qu'il contient ? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Fond d'écran visible pour les images avec un ratio différent de celui de l'écran. Media.player Audio Audio Video Vidéo VLC is an external player which supports a number of different formats. VLC est un lecteur externe qui supporte de nombreux formats différents. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit est un lecteur de médias embarqué dans un navigateur. Ce lecteur permet l'affichage de texte sur de la vidéo. This media player uses your operating system to provide media capabilities. Ce lecteur multimédia s'appuie sur les capacités de votre système d'exploitation. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Module Média</strong><br />Le module Média permet de lire des fichiers audio et vidéo. Media name singular Médias Media name plural Médias Media container title Médias Load new media. Charge un nouveau média. Add new media. Ajoute un nouveau média. Edit the selected media. Édite le média sélectionné. Delete the selected media. Supprime le média sélectionné. Preview the selected media. Prévisualiser le média sélectionné. Send the selected media live. Envoie le média sélectionné au direct. Add the selected media to the service. Ajoute le média sélectionné au service. MediaPlugin.MediaClipSelector Select Media Clip Choisir le clip multimédia Source Source Media path: Chemin du média : Select drive from list Choisir le disque dans la liste Load disc Charger disque Track Details Détails de la piste Title: Titre : Audio track: Piste audio : Subtitle track: Sous-titre de la piste : HH:mm:ss.z HH:mm:ss.z Clip Range Taille du clip Start point: Point de départ : Set start point Régler le point de départ Jump to start point Aller au point de départ End point: Fin : Set end point Régler la fin Jump to end point Aller à la fin MediaPlugin.MediaClipSelectorForm No path was given Aucun chemin spécifié Given path does not exists Le chemin donné n'existe pas An error happened during initialization of VLC player Une erreur est survenue lors de l'initialisation de VLC player VLC player failed playing the media VLC player n'arrive pas à lire le média CD not loaded correctly CD incorrectement chargé The CD was not loaded correctly, please re-load and try again. Le CD ne s'est pas correctement chargé, merci de le recharger. DVD not loaded correctly DVD incorrectement chargé The DVD was not loaded correctly, please re-load and try again. Le DVD ne s'est pas correctement chargé, merci de le recharger. Set name of mediaclip Nommer le clip multimédia Name of mediaclip: Nom du clip multimédia : Enter a valid name or cancel Entrer un nom valide ou annuler Invalid character Caractère invalide The name of the mediaclip must not contain the character ":" Le nom du clip multimédia ne soit pas contenir de caractère ":" MediaPlugin.MediaItem Select Media Média sélectionné You must select a media file to delete. Vous devez sélectionner un fichier média à supprimer. You must select a media file to replace the background with. Vous devez sélectionner un fichier média pour qu'il puisse remplacer le fond. There was a problem replacing your background, the media file "%s" no longer exists. Impossible de remplacer le fond du direct, le fichier média "%s" n'existe plus. Missing Media File Fichier média manquant The file %s no longer exists. Le fichier %s n'existe plus. Videos (%s);;Audio (%s);;%s (*) Vidéos (%s);;Audio (%s);;%s (*) There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. Unsupported File Fichier non supporté Use Player: Utiliser le lecteur : VLC player required Lecteur VLC requis VLC player required for playback of optical devices Lecteur VLC requis pour lire les périphériques optiques Load CD/DVD Charger CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Charger CD/DVD - seulement supporté si VLC est installé et activé The optical disc %s is no longer available. Le disque optique %s n'est plus disponible. Mediaclip already saved Clip multimédia déjà sauvegardé This mediaclip has already been saved Ce clip multimédia a déjà été sauvegardé MediaPlugin.MediaTab Allow media player to be overridden Autoriser le lecteur de média à être surcharger Start Live items automatically Démarrer les articles du live automatiquement OPenLP.MainWindow &Projector Manager Gestionnaire de &projecteurs OpenLP Image Files Fichiers image Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Le format de Bible à changé. Vous devez mettre à jour vos Bibles existantes. Voulez-vous que OpenLP effectue la mise à jour maintenant ? Backup Sauvegarde OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP a été mis à jour, voulez-vous faire sauvegarder le répertoire de données d'OpenLP ? Backup of the data folder failed! Sauvegarde du répertoire des données échoué ! A backup of the data folder has been created at %s Une sauvegarde du répertoire des données a été créée à %s Open Ouvrir OpenLP.AboutForm Credits Crédits License Licence build %s révision %s 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; version 2 of the License. Ce programme est un logiciel libre; vous pouvez le redistribuer et/ou le modifier au titre des clauses de la Licence Publique Générale GNU, telle que publiée par la Free Software Foundation; version 2 de la Licence. 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 below for more details. Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE, sans même la garantie implicite de COMMERCIALISATION ou D'ADAPTATION A UN USAGE PARTICULIER. Voir ci-dessous pour plus de détails. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection (projection de paroles open source) OpenLP est un logiciel de présentation ou de projection de paroles destiné aux églises. Pendant la louange, il permet d'afficher des chants, des versets bibliques, des vidéos, des images, et même des diaporamas (si Impress, PowerPoint ou PowerPoint Viewer est installé), à l'aide d'un ordinateur et d'un vidéo projecteur. Apprenez-en plus au sujet d'OpenLP: http://openlp.org OpenLP est développé et maintenu par des bénévoles. Si vous souhaitez voir développer d'autres logiciels libres chrétiens, envisagez de devenir bénévole en cliquant le bouton ci-dessous. Volunteer Aidez-nous Project Lead Chef de projet Developers Développeurs Contributors Contributeurs Packagers Packageurs Testers Testeurs Translators Traducteurs Afrikaans (af) Afrikaans (af) Czech (cs) Tchèque (cs) Danish (da) Danois (da) German (de) Allemand (de) Greek (el) Grec (el) English, United Kingdom (en_GB) Anglais, Royaume Uni (en_GB) English, South Africa (en_ZA) Anglais, Afrique du Sud (en_ZA) Spanish (es) Espanol (es) Estonian (et) Estonien (et) Finnish (fi) Finlandais (fi) French (fr) Français (fr) Hungarian (hu) Hongrois (hu) Indonesian (id) Indonésien (id) Japanese (ja) Japonais (ja) Norwegian BokmÃ¥l (nb) Norvégien bokmÃ¥l (nb) Dutch (nl) Hollandais (nl) Polish (pl) Polonais (pl) Portuguese, Brazil (pt_BR) Portugais, Brésil (pt_BR) Russian (ru) Russe (ru) Swedish (sv) Suédois (sv) Tamil(Sri-Lanka) (ta_LK) Tamil, Sri-Lanka (ta_LK) Chinese(China) (zh_CN) Chinois, Chine (zh_CN) Documentation Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Développé avec Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Crédit final "Car Dieu a tant aimé le monde qu'il a donné son Fils unique, afin que quiconque croit en lui ne périsse point, mais qu'il ait la vie éternelle" -- Jean 3:16 Le crédit final revient à Dieu notre père pour avoir envoyé son fils mourir sur la croix afin de nous délivrer du péché. Nous mettons ce logiciel à votre disposition gratuitement parce qu'il nous a donné gratuitement. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Propriétés de l'interface utilisateur Number of recent files to display: Nombre de fichiers récents à afficher : Remember active media manager tab on startup Se souvenir de l'onglet actif du gestionnaire de média au démarrage Double-click to send items straight to live Double-cliquer pour envoyer les éléments directement au live Expand new service items on creation Étendre les nouveaux éléments du service à la création Enable application exit confirmation Demander une confirmation avant de quitter l'application Mouse Cursor Curseur de la souris Hide mouse cursor when over display window Cacher le curseur de la souris quand elle se trouve sur l'écran live Default Image Image par défaut Background color: Couleur de fond : Image file: Fichier image : Open File Ouvrir un fichier Advanced Avancé Preview items when clicked in Media Manager Prévisualiser l’élément cliqué du gestionnaire de média Browse for an image file to display. Parcoure pour trouver une image à afficher. Revert to the default OpenLP logo. Retour au logo OpenLP par défaut. Default Service Name Nom de service par défaut Enable default service name Activer le nom de service par défaut Date and Time: Date et Heure : Monday Lundi Tuesday Mardi Wednesday Mercredi Friday Vendredi Saturday Samedi Sunday Dimanche Now Maintenant Time when usual service starts. Heure de début du service habituelle. Name: Nom : Consult the OpenLP manual for usage. Veuillez consulter le manuel d'OpenLP. Revert to the default service name "%s". Restaurer le nom du service par défaut "%s". Example: Exemple : Bypass X11 Window Manager Contourner le gestionnaire de fenêtres X11 Syntax error. Erreur de syntaxe. Data Location Emplacement des données Current path: Chemin courant : Custom path: Chemin personnalisé : Browse for new data file location. Sélectionnez un nouvel emplacement pour le fichier de données. Set the data location to the default. Définir cet emplacement pour les données comme emplacement par défaut. Cancel Annuler Cancel OpenLP data directory location change. Annuler le changement d'emplacement du dossier de données d'OpenLP. Copy data to new location. Copier les données vers un nouvel emplacement. Copy the OpenLP data files to the new location. Copier les fichiers de données d'OpenLP vers le nouvel emplacement. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ATTENTION:</strong> Le nouveau dossier de données contient des fichiers de données OpenLP. Ces fichiers seront remplacés pendant la copie. Data Directory Error Erreur du dossier de données Select Data Directory Location Sélectionnez un emplacement pour le dossier de données Confirm Data Directory Change Confirmez le changement de dossier de données Reset Data Directory Remise à zéro du dossier de données Overwrite Existing Data Écraser les données existantes OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Le répertoire de données d'OpenLP est introuvable: %s Ce répertoire de données a été changé de l'emplacement par défaut. Si le nouvel emplacement est sur un support amovible, ce support doit être rendu disponible. Cliquez "non" pour arreter le chargement d'OpenLP. Vous pourrez alors corriger le problème. Cliquez "oui" pour réinitialiser le répertoire de données à son emplacement par défaut. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Êtes-vous sûrs de vouloir changer l'emplacement du répertoire de données d'OpenLP? Le nouveau répertoire sera: %s Le répertoire de données changera lorsque vous fermerez OpenLP. Thursday Jeudi Display Workarounds Afficher contournements Use alternating row colours in lists Utiliser une couleur de ligne alternative dans la liste WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? AVERTISSEMENT: L'emplacement que vous avez sélectionné %s contient apparemment des fichiers de données OpenLP. Voulez-vous remplacer ces fichiers avec les fichiers de données courants? Restart Required Redémarrage requis This change will only take effect once OpenLP has been restarted. Cette modification ne prendra effet qu'une fois OpenLP redémarré. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Etes-vous sûr de vouloir restaurer l'emplacement du dossier de données par défaut d'OpenLP ? Cet emplacement sera utilisé après avoir fermé OpenLP. OpenLP.ColorButton Click to select a color. Clique pour sélectionner une couleur. OpenLP.DB RGB RVB Video Vidéo Digital Numérique Storage Stockage Network Réseau RGB 1 RVB 1 RGB 2 RVB 2 RGB 3 RVB 3 RGB 4 RVB 4 RGB 5 RVB 5 RGB 6 RVB 6 RGB 7 RVB 7 RGB 8 RVB 8 RGB 9 RVB 9 Video 1 Vidéo 1 Video 2 Vidéo 2 Video 3 Vidéo 3 Video 4 Vidéo 4 Video 5 Vidéo 5 Video 6 Vidéo 6 Video 7 Vidéo 7 Video 8 Vidéo 8 Video 9 Vidéo 9 Digital 1 Numérique 1 Digital 2 Numérique 2 Digital 3 Numérique 3 Digital 4 Numérique 4 Digital 5 Numérique 5 Digital 6 Numérique 6 Digital 7 Numérique 7 Digital 8 Numérique 8 Digital 9 Numérique 9 Storage 1 Stockage 1 Storage 2 Stockage 2 Storage 3 Stockage 3 Storage 4 Stockage 4 Storage 5 Stockage 5 Storage 6 Stockage 6 Storage 7 Stockage 7 Storage 8 Stockage 8 Storage 9 Stockage 9 Network 1 Réseau 1 Network 2 Réseau 2 Network 3 Réseau 3 Network 4 Réseau 4 Network 5 Réseau 5 Network 6 Réseau 6 Network 7 Réseau 7 Network 8 Réseau 8 Network 9 Réseau 9 OpenLP.ExceptionDialog Error Occurred Erreur survenue Send E-Mail Envoyer un courriel Save to File Enregistre dans un fichier Attach File Attacher un fichier Description characters to enter : %s Description : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Veuillez entrer une description de ce que vous faisiez au moment de l'erreur. Écrivez si possible en anglais. (Minimum 20 caractères) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oups! OpenLP a rencontré un problème et ne peut pas continuer à s'exécuter. Le texte dans le champ ci-dessous contient des informations qui pourraient être utiles aux développeurs d'OpenLP, veuillez s'il vous plaît envoyer un courriel à bugs@openlp.org, avec une description détaillée de ce que vous faisiez lorsque le problème est survenu. Veuillez joindre également les fichiers qui ont provoqués l'erreur. OpenLP.ExceptionForm Platform: %s Plateforme : %s Save Crash Report Enregistrer le rapport d'erreur Text files (*.txt *.log *.text) Fichiers texte (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Renomme le fichier New File Name: Nouveau nom de fichier : File Copy Copie le fichier OpenLP.FirstTimeLanguageForm Select Translation Sélectionner la traduction Choose the translation you'd like to use in OpenLP. Choisir la traduction que vous voulez utiliser dans OpenLP. Translation: Traduction : OpenLP.FirstTimeWizard Songs Chants First Time Wizard Assistant de démarrage Welcome to the First Time Wizard Bienvenue dans l'assistant de démarrage Activate required Plugins Activer les modules requis Select the Plugins you wish to use. Sélectionnez les modules que vous souhaitez utiliser. Bible Bible Images Images Presentations Présentations Media (Audio and Video) Média (Audio et Vidéo) Allow remote access Permettre l’accès à distance Monitor Song Usage Suivre l'utilisation des chants Allow Alerts Permettre l'utilisation d'Alertes Default Settings Paramètres par défaut Downloading %s... Téléchargement %s... Enabling selected plugins... Activer les modules sélectionnés... No Internet Connection Pas de connexion à Internet Unable to detect an Internet connection. Aucune connexion à Internet. Sample Songs Chants d'exemple Select and download public domain songs. Sélectionner et télécharger des chants du domaine public. Sample Bibles Bibles d'exemple Select and download free Bibles. Sélectionner et télécharger des Bibles gratuites. Sample Themes Exemple de Thèmes Select and download sample themes. Sélectionner et télécharger des exemples de thèmes. Set up default settings to be used by OpenLP. Définir les paramètres par défaut pour être utilisé par OpenLP. Default output display: Sortie d'écran par défaut : Select default theme: Sélectionner le thème pas défaut : Starting configuration process... Démarrage du processus de configuration... Setting Up And Downloading Paramétrage et téléchargement Please wait while OpenLP is set up and your data is downloaded. Merci de patienter durant le paramétrage d'OpenLP et le téléchargement de vos données. Setting Up Paramétrage Custom Slides Diapositives personnalisées Finish Fini No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Aucune connexion internet trouvée. L'assistant de démarrage a besoin d'une connexion internet afin de télécharger les examplaires de chansons, de Bibles, et de thèmes. Cliquez sur Finir pour démarrer OpenLP avec la configuration par défaut sans données exemplaires. Pour relancer l'assistant de démarrage et importer ces données exemplaires plus tard, vérifiez votre connexion internet et relancez cet assistant en sélectionnant "Outils/Relancer l'assistant de démarrage" dans OpenLP. Download Error Erreur de téléchargement There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Il y a eu un problème de connexion durant le téléchargement, les prochains téléchargements seront ignorés. Esasyez de ré-executer l'Assistant de Premier Démarrage plus tard. Download complete. Click the %s button to return to OpenLP. Téléchargement terminé. Cliquez sur le bouton %s pour revenir à OpenLP. Download complete. Click the %s button to start OpenLP. Téléchargement terminé. Cliquez sur le bouton %s pour démarrer OpenLP. Click the %s button to return to OpenLP. Cliquez sur le bouton %s pour revenir à OpenLP. Click the %s button to start OpenLP. Cliquez sur le bouton %s pour démarrer OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Il y a eu un problème de connexion durant le téléchargement, les prochains téléchargements seront ignorés. Esasyez de ré-executer l'Assistant de Premier Démarrage plus tard. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Cet assistant vous permet de configurer OpenLP pour sa première utilisation. Cliquez sur le bouton %s pour démarrer. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliquez sur le bouton %s maintenant. Downloading Resource Index Téléchargement de l'index des ressources Please wait while the resource index is downloaded. Merci de patienter durant le téléchargement de l'index des ressources. Please wait while OpenLP downloads the resource index file... Merci de patienter pendant qu'OpenLP télécharge le fichier d'index des ressources... Downloading and Configuring Téléchargement et configuration en cours Please wait while resources are downloaded and OpenLP is configured. Merci de patienter pendant le téléchargement des ressources et la configuration d'OpenLP. Network Error Erreur réseau There was a network error attempting to connect to retrieve initial configuration information Il y a eu une erreur réseau durant la connexion pour la récupération des informations de configuration initiales Cancel Annuler Unable to download some files Impossible de télécharger certains fichiers OpenLP.FormattingTagDialog Configure Formatting Tags Configurer les balises de formatage Description Description Tag Balise Start HTML HTML de début End HTML HTML de fin Default Formatting Formatage par défaut Custom Formatting Formatage personnalisé OpenLP.FormattingTagForm <HTML here> <HTML ici> Validation Error Erreur de validation Description is missing La description est manquante Tag is missing La balise est manquante Tag %s already defined. Balise %s déjà définie. Description %s already defined. Description %s déjà définie. Start tag %s is not valid HTML Balise ouvrante %s n'est pas valide au format HTML End tag %(end)s does not match end tag for start tag %(start)s Baliste fermante %(end)s ne correspond pas à la fermeture pour la balise ouvrante %(start)s OpenLP.FormattingTags Red Rouge Black Noir Blue Bleu Yellow Jaune Green Vert Pink Rose Orange Orange Purple Pourpre White Blanc Superscript Exposant Subscript Indice Paragraph Paragraphe Bold Gras Italics Italiques Underline Souligner Break Retour à la ligne OpenLP.GeneralTab General Général Monitors Moniteurs Select monitor for output display: Sélectionner l’écran pour la sortie d'affichage live : Display if a single screen Afficher si il n'y a qu'un écran Application Startup Démarrage de l'application Show blank screen warning Afficher un avertissement d'écran vide Automatically open the last service Ouvrir automatiquement le dernier service Show the splash screen Afficher l'écran de démarrage Application Settings Préférence de l'application Prompt to save before starting a new service Demander d'enregistrer avant de commencer un nouveau service Automatically preview next item in service Prévisualiser automatiquement l'élément suivant du service sec sec CCLI Details CCLI détails SongSelect username: Nom d'utilisateur SongSelect : SongSelect password: Mot de passe SongSelect : X X Y Y Height Hauteur Width Largeur Check for updates to OpenLP Vérifie si des mises à jours d'OpenLP sont disponibles Unblank display when adding new live item Retirer l'écran noir lors de l'ajout de nouveaux éléments au direct Timed slide interval: Intervalle de temps entre les diapositives : Background Audio Audio en fond Start background audio paused Démarrer le son de fond en pause Service Item Slide Limits Limites des éléments de service Override display position: Surcharger la position d'affichage : Repeat track list Répéter la liste des pistes Behavior of next/previous on the last/first slide: Comportement suivant/précédent sur la dernière/première diapositive : &Remain on Slide &Rester sur la diapositive &Wrap around &Retour à la ligne automatique &Move to next/previous service item &Déplacer l'élément du service vers suivant/précédent OpenLP.LanguageManager Language Langage Please restart OpenLP to use your new language setting. Veuillez redémarrer OpenLP pour utiliser votre nouveau paramétrage de langue. OpenLP.MainDisplay OpenLP Display Affichage OpenLP OpenLP.MainWindow &File &Fichier &Import &Import &Export E&xport &View &Visualiser M&ode M&ode &Tools &Outils &Settings O&ptions &Language &Langue &Help &Aide Service Manager Gestionnaire de services Theme Manager Gestionnaire de thèmes Open an existing service. Ouvrir un service existant. Save the current service to disk. Enregistre le service courant sur le disque. Save Service As Enregistrer le service sous Save the current service under a new name. Enregistre le service courant sous un nouveau nom. E&xit &Quitter Quit OpenLP Quitter OpenLP &Theme &Thème &Configure OpenLP... &Configuration d'OpenLP... &Media Manager Gestionnaire de &médias Toggle Media Manager Gestionnaire de Média Toggle the visibility of the media manager. Change la visibilité du gestionnaire de média. &Theme Manager Gestionnaire de &thèmes Toggle Theme Manager Gestionnaire de Thème Toggle the visibility of the theme manager. Change la visibilité du gestionnaire de tème. &Service Manager Gestionnaire de &services Toggle Service Manager Gestionnaire de service Toggle the visibility of the service manager. Change la visibilité du gestionnaire de service. &Preview Panel Panneau de &prévisualisation Toggle Preview Panel Panneau de prévisualisation Toggle the visibility of the preview panel. Change la visibilité du panel de prévisualisation. &Live Panel Panneau du &direct Toggle Live Panel Panneau du direct Toggle the visibility of the live panel. Change la visibilité du directe. List the Plugins Liste des modules &User Guide &Guide utilisateur &About À &propos More information about OpenLP Plus d'information sur OpenLP &Online Help &Aide en ligne &Web Site Site &Web Use the system language, if available. Utilise le langage système, si disponible. Set the interface language to %s Défini la langue de l'interface à %s Add &Tool... Ajoute un &outils... Add an application to the list of tools. Ajoute une application à la liste des outils. &Default &Défaut Set the view mode back to the default. Redéfini le mode vue comme par défaut. &Setup &Configuration Set the view mode to Setup. Mode vue Configuration. &Live &Direct Set the view mode to Live. Mode vue Direct. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. La version %s d'OpenLP est maintenant disponible au téléchargement (vous utiliser actuellement la version %s). Vous pouvez télécharger la dernière version à partir de http://openlp.org/. OpenLP Version Updated Version d'OpenLP mis à jour OpenLP Main Display Blanked OpenLP affichage principal noirci The Main Display has been blanked out L'affichage principal a été noirci Default Theme: %s Thème par défaut : %s English Please add the name of your language here Français Configure &Shortcuts... Personnalisation des &raccourcis... Open &Data Folder... &Ouvrir le répertoire de données... Open the folder where songs, bibles and other data resides. Ouvrir le répertoire où se trouve les chants, bibles et autres données. &Autodetect &Détecter automatiquement Update Theme Images Mettre à jour les images de thèmes Update the preview images for all themes. Mettre à jour les images de tous les thèmes. Print the current service. Imprimer le service courant. L&ock Panels &Verrouille les panneaux Prevent the panels being moved. Empêcher les panneaux d'être déplacé. Re-run First Time Wizard Re-démarrer l'assistant de démarrage Re-run the First Time Wizard, importing songs, Bibles and themes. Re-démarrer l'assistant de démarrage, importer les chants, Bibles et thèmes. Re-run First Time Wizard? Re-démarrer l'assistant de démarrage ? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Êtes vous sûr de vouloir re-démarrer l'assistant de démarrage ? Re-démarrer cet assistant peut apporter des modifications à votre configuration actuelle d'OpenLP, éventuellement ajouter des chants à votre liste de chants existante et changer votre thème par défaut. Clear List Clear List of recent files Vide la liste Clear the list of recent files. Vide la liste des fichiers récents. Configure &Formatting Tags... Configurer les &balises de formatage... Export OpenLP settings to a specified *.config file Exporte la configuration d'OpenLP vers un fichier *.config spécifié Settings Paramètres Import OpenLP settings from a specified *.config file previously exported on this or another machine Importe la configuration d'OpenLP à partir d'un fichier *.config précédemment exporté depuis un autre ordinateur. Import settings? Import de la configuration ? Open File Ouvrir un fichier OpenLP Export Settings Files (*.conf) Fichier de configuration OpenLP (*.conf) Import settings Import de la configuration OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP va se terminer maintenant. La Configuration importée va être appliquée au prochain démarrage. Export Settings File Export de la configuration OpenLP Export Settings File (*.conf) Fichier d'export de la configuration d'OpenLP (*.conf) New Data Directory Error Erreur du nouveau dossier de données Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copie des données OpenLP au nouvel emplacement - %s - Veuillez attendre que la copie se termine OpenLP Data directory copy failed %s La copie du répertoire de données OpenLP a échoué %s General Général Library Bibliothèque Jump to the search box of the current active plugin. Aller au champ de recherche du plugin actif actuel. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Êtes-vous sûr de vouloir importer la configuration ? Importer la configuration va changer de façon permanente votre configuration d'OpenLP. Importer une configuration incorrect peut provoquer des comportements imprévisible d'OpenLP et le fermer anormalement. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Le fichier que vous avez sélectionné ne semble pas être un fichier de configuration OpenLP valide. L'opération est terminée et aucun changement n'a été fait. Projector Manager Gestionnaire de projecteurs Toggle Projector Manager Afficher/Masquer le gestionnaire de projecteurs Toggle the visibility of the Projector Manager Change la visibilité du manageur de projecteurs Export setting error Erreur de configuration des exports The key "%s" does not have a default value so it will be skipped in this export. La clé "%s" n'a pas de valeur par défaut, elle ne sera donc pas exportée. An error occurred while exporting the settings: %s Une erreur est survenue lors de l'export des paramètres : %s &Recent Services Services &récents &New Service &Nouveau service &Open Service &Ouvrir le service &Save Service &Enregistrer le service Save Service &As... Enregistrer le service so&us... &Manage Plugins &Gestion des extensions Exit OpenLP Quitter OpenLP Are you sure you want to exit OpenLP? Êtes vous sur de vouloir quitter OpenLP ? &Exit OpenLP &Quitter OpenLP OpenLP.Manager Database Error Erreur de base de données The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s La base de données utilisée a été créé avec une version plus récente d'OpenLP. La base de données est en version %d, tandis que OpenLP attend la version %d. La base de données ne peux pas être chargée. Base de données: %s OpenLP cannot load your database. Database: %s OpenLP ne peut pas charger votre base de données. Base de données: %s OpenLP.MediaManagerItem No Items Selected Aucun éléments sélectionnés &Add to selected Service Item &Ajoute à l'élément sélectionné du service You must select one or more items to preview. Vous devez sélectionner un ou plusieurs éléments à prévisualiser. You must select one or more items to send live. Vous devez sélectionner un ou plusieurs éléments pour les envoyer au direct. You must select one or more items. Vous devez sélectionner un ou plusieurs éléments. You must select an existing service item to add to. Vous devez sélectionner un élément existant du service pour l'ajouter. Invalid Service Item Élément du service invalide You must select a %s service item. Vous devez sélectionner un %s élément du service. You must select one or more items to add. Vous devez sélectionner un ou plusieurs éléments à ajouter. No Search Results Aucun résultat de recherche Invalid File Type Type de fichier invalide Invalid File %s. Suffix not supported Fichier invalide %s. Extension non supportée &Clone &Clone Duplicate files were found on import and were ignored. Des fichiers dupliqués on été trouvé dans l'import et ont été ignorés. OpenLP.OpenLyricsImportError <lyrics> tag is missing. La balise <lyrics> est manquante. <verse> tag is missing. La balise <verse> est manquante. OpenLP.PJLink1 Unknown status Status inconnu No message Pas de message Error while sending data to projector Erreur lors de l'envoi de données au projecteur Undefined command: Commande indéfinie : OpenLP.PlayerTab Players Lecteurs Available Media Players Lecteurs de Média disponibles Player Search Order Ordre de recherche du lecteur Visible background for videos with aspect ratio different to screen. Fond d'écran visible pour les vidéos avec un ratio différent de celui de l'écran. %s (unavailable) %s (non disponible) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" REMARQUE: Pour utiliser VLC vous devez installer la version %s OpenLP.PluginForm Plugin Details Détails du module Status: État : Active Actif Inactive Inactif %s (Inactive) %s (Inactif) %s (Active) %s (Actif) %s (Disabled) %s (Désactivé) Manage Plugins Gestion des extensions OpenLP.PrintServiceDialog Fit Page Ajuster à la page Fit Width Ajuster à la largeur OpenLP.PrintServiceForm Options Options Copy Copier Copy as HTML Copier comme de l'HTML Zoom In Zoom avant Zoom Out Zoom arrière Zoom Original Zoom d'origine Other Options Autres options Include slide text if available Inclure le texte des diapositives si disponible Include service item notes Inclure les notes des éléments du service Include play length of media items Inclure la durée des éléments média Add page break before each text item Ajoute des sauts de page entre chaque éléments Service Sheet Feuille de service Print Imprimer Title: Titre : Custom Footer Text: Texte de pied de page personnalisé : OpenLP.ProjectorConstants OK OK General projector error Erreur générale de projecteur Not connected error Erreur de connexion Lamp error Erreur d'ampoule Fan error Erreur de ventilateur High temperature detected Détection de température élevée Cover open detected Détection d'ouverture du couvercle Check filter Vérifiez le filtre Authentication Error Erreur d'identification Undefined Command Commande indéfinie Invalid Parameter Paramètre invalide Projector Busy Projecteur occupé Projector/Display Error Erreur de projecteur / affichage Invalid packet received Paquets reçus invalides Warning condition detected Alertes détectées Error condition detected Erreurs détectées PJLink class not supported Classe PJLink non supportée Invalid prefix character Caractère de préfixe invalide The connection was refused by the peer (or timed out) La connexion est refusée par le pair (ou délai dépassé) The remote host closed the connection L'hôte distant a fermé la connexion The host address was not found L'adresse de l'hôte n'est pas trouvée The socket operation failed because the application lacked the required privileges L'opération de connection a échoué parce que l'application n'a pas les droits nécessaires The local system ran out of resources (e.g., too many sockets) Le sytème local n'a plus de ressources (ex : trop de connexions) The socket operation timed out L'opération de connexion est dépassée The datagram was larger than the operating system's limit La trame réseau est plus longue que ne l'autorise le système d'exploitation An error occurred with the network (Possibly someone pulled the plug?) Une erreur réseau est survenue (Quelqu'un a débranché le câble ?) The address specified with socket.bind() is already in use and was set to be exclusive L'adresse spécifiée avec socket.bind() est déjà utilisée et est à usage exclusive. The address specified to socket.bind() does not belong to the host L'adresse donnée à socket.bind() n'appartient à l'hôte The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) L'opération de connexion n'est pas supportée par le système d'exploitation (ex : IPv6 non supporté) The socket is using a proxy, and the proxy requires authentication La connexion utilise un proxy qui demande une authentification The SSL/TLS handshake failed La validation SSL/TLS a échouée The last operation attempted has not finished yet (still in progress in the background) La dernière tentative n'est pas encore finie (toujours en cours en arrière plan) Could not contact the proxy server because the connection to that server was denied Ne peut pas joindre le serveur proxy car la connexion au serveur est refusée The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) La connexion au serveur proxy s'est coupée inopinément (avant que la connexion au destinataire final soit établie) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. La délai de la connexion au serveur proxy est dépassé ou le serveur proxy ne répond plus durant la phase d'identification. The proxy address set with setProxy() was not found L'adresse proxy configuré avec setProxy() n'est pas trouvée An unidentified error occurred Une erreur non identifiée est survenue Not connected Non connecté Connecting En cours de connexion Connected Connecté Getting status Récupération du status Off Eteind Initialize in progress Initialisation en cours Power in standby Alimentation en veille Warmup in progress Préchauffage en cours Power is on Alimentation démarrée Cooldown in progress Refroidissement en cours Projector Information available Informations du projecteur disponibles Sending data Envoi de données Received data Réception de données The connection negotiation with the proxy server failed because the response from the proxy server could not be understood La négociation de la connexion avec le serveur proxy a échoué car la réponse du serveur n'est pas compréhensible OpenLP.ProjectorEdit Name Not Set Nom non défini You must enter a name for this entry.<br />Please enter a new name for this entry. Vous devez saisir un nom pour cette entrée.<br />Merci de saisir un nouveau nom pour cette entrée. Duplicate Name Nom dupliqué OpenLP.ProjectorEditForm Add New Projector Ajouter nouveau projecteur Edit Projector Modifier projecteur IP Address Adresse IP Port Number Numéro de port PIN NIP Name Nom Location Localisation Notes Notes Database Error Erreur de base de données There was an error saving projector information. See the log for the error Erreur lors de la sauvegarde des informations du projecteur. Voir le journal pour l'erreur OpenLP.ProjectorManager Add Projector Ajouter projecteur Add a new projector Ajouter un nouveau projecteur Edit Projector Modifier projecteur Edit selected projector Editer projecteur sélectionné Delete Projector Supprimer projecteur Delete selected projector Supprimer projecteur sélectionné Select Input Source Choisir la source en entrée Choose input source on selected projector Choisir la source en entrée pour le projecteur sélectionné View Projector Voir projecteur View selected projector information Voir les informations du projecteur sélectionné Connect to selected projector Connecter le projecteur sélectionné Connect to selected projectors Connecter les projecteurs sélectionnés Disconnect from selected projectors Déconnecter les projecteurs sélectionnés Disconnect from selected projector Déconnecter le projecteur sélectionné Power on selected projector Allumer le projecteur sélectionné Standby selected projector Mettre en veille le projecteur sélectionné Put selected projector in standby Mettre le projecteur sélectionné en veille Blank selected projector screen Obscurcir le projecteur sélectionner Show selected projector screen Voir l'écran des projecteurs sélectionnés &View Projector Information &Voir projecteur informations &Edit Projector Modifi&er projecteur &Connect Projector &Connecter le projecteur D&isconnect Projector Déconnect&er le projecteur Power &On Projector Allumer projecteur Power O&ff Projector Eteindre projecteur Select &Input Cho&isir entrée Edit Input Source Modifier la source d'entrée &Blank Projector Screen Masquer l'écran du projecteur &Show Projector Screen Afficher l'écran du projecteur &Delete Projector Supprimer le projecteur Name Nom IP IP Port Port Notes Notes Projector information not available at this time. Informations du projecteur indisponibles pour l'instant. Projector Name Nom du projecteur Manufacturer Constructeur Model Modèle Other info Autres infos Power status Status de l'alimentation Shutter is Le cache est Closed Fermé Current source input is Entrée actuelle est Lamp Ampoule On Allumé Off Eteind Hours Heures No current errors or warnings Pas d'erreurs ou alertes actuellement Current errors/warnings Erreurs/alertes en cours Projector Information Information du projecteur No message Pas de message Not Implemented Yet Pas encore implémenté Delete projector (%s) %s? Supprimer le projecteur (%s) %s ? Are you sure you want to delete this projector? Êtes-vous sûr de bien vouloir supprimer ce projecteur ? OpenLP.ProjectorPJLink Fan Ventilateur Lamp Ampoule Temperature Température Cover Couvercle Filter Filtre Other Autre OpenLP.ProjectorTab Projector Projecteur Communication Options Options de communication Connect to projectors on startup Connecter aux projecteurs au démarrage Socket timeout (seconds) Délai de connection réseau (secondes) Poll time (seconds) Temps d'interrogation (secondes) Tabbed dialog box Boîte de dialogue à onglets Single dialog box Boîte de dialogue seule OpenLP.ProjectorWizard Duplicate IP Address Adresse IP dupliquée Invalid IP Address Adresse IP invalide Invalid Port Number Numéro de port invalide OpenLP.ScreenList Screen Écran primary primaire OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Début</strong> : %s <strong>Length</strong>: %s <strong>Longueur</strong> : %s [slide %d] [diapo %d] OpenLP.ServiceItemEditForm Reorder Service Item Réordonne les éléments du service OpenLP.ServiceManager Move to &top Place en &premier Move item to the top of the service. Place l'élément au début du service. Move &up Déplace en &haut Move item up one position in the service. Déplace l'élément d'une position en haut. Move &down Déplace en &bas Move item down one position in the service. Déplace l'élément d'une position en bas. Move to &bottom Place en &dernier Move item to the end of the service. Place l'élément a la fin du service. &Delete From Service &Retirer du service Delete the selected item from the service. Retirer l'élément sélectionné du service. &Add New Item &Ajoute un nouvel élément &Add to Selected Item &Ajoute à l'élément sélectionné &Edit Item &Édite l'élément &Reorder Item &Réordonne l'élément &Notes &Notes &Change Item Theme &Change le thème de l'élément File is not a valid service. Le fichier n'est pas un fichier de service valide. Missing Display Handler Composant d'affichage manquant Your item cannot be displayed as there is no handler to display it Votre élément ne peut pas être affiché parce qu'il n'y a pas de composant pour l'afficher Your item cannot be displayed as the plugin required to display it is missing or inactive Votre élément ne peut pas être affiché parce que le module nécessaire est manquant ou désactivé &Expand all &Développer tout Expand all the service items. Développe tous les éléments du service. &Collapse all &Réduire tout Collapse all the service items. Réduit tous les éléments du service. Open File Ouvrir un fichier Moves the selection down the window. Déplace la sélection en bas de la fenêtre. Move up Déplace en haut Moves the selection up the window. Déplace la sélection en haut de la fenêtre. Go Live Lance le direct Send the selected item to Live. Afficher l'élément sélectionné en direct. &Start Time Temps de &début Show &Preview Afficher en &prévisualisation Modified Service Service modifié The current service has been modified. Would you like to save this service? Le service courant à été modifié. Voulez-vous l'enregistrer ? Custom Service Notes: Notes de service : Notes: Notes : Playing time: Durée du service : Untitled Service Service sans titre File could not be opened because it is corrupt. Le fichier ne peux être ouvert car il est corrompu. Empty File Fichier vide This service file does not contain any data. Ce fichier de service ne contient aucune donnée. Corrupt File Fichier corrompu Load an existing service. Charge un service existant. Save this service. Enregistre ce service. Select a theme for the service. Sélectionner un thème pour le service. Slide theme Thème de diapositive Notes Notes Edit Édite Service copy only Copie de service uniquement Error Saving File Erreur de sauvegarde du fichier There was an error saving your file. Une erreur est survenue lors de la sauvegarde de votre fichier. Service File(s) Missing Fichier(s) service manquant &Rename... &Renommer Create New &Custom Slide &Créer nouvelle diapositive personnalisée &Auto play slides Jouer les diapositives &automatiquement Auto play slides &Loop Jouer les diapositives automatiquement en &boucle Auto play slides &Once Jouer les diapositives automatiquement une &seule fois &Delay between slides Intervalle entre les diapositives OpenLP Service Files (*.osz *.oszl) Fichier service OpenLP (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) Fichier service OpenLP (*.osz);; Fichier service OpenLP - lite (*.oszl) OpenLP Service Files (*.osz);; Fichier service OpenLP (*.osz);; File is not a valid service. The content encoding is not UTF-8. Le fichier n'est pas un fichier de service valide. Le contenu n'est pas de l'UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Le fichier service que vous tentez d'ouvrir est dans un ancien format. Merci de l'enregistrer sous OpenLP 2.0.2 ou supérieur. This file is either corrupt or it is not an OpenLP 2 service file. Ce fichier est sois corrompu ou n'est pas un fichier de service OpenLP 2. &Auto Start - inactive Démarrage &auto - inactif &Auto Start - active Démarrage &auto - actif Input delay Retard de l'entrée Delay between slides in seconds. Intervalle entre les diapositives en secondes. Rename item title Renommer titre article Title: Titre : An error occurred while writing the service file: %s Une erreur est survenue lors de l'écriture dans le fichier du service : %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Les fichiers suivants sont absents du service : %s Ces fichiers seront supprimés si vous continuez la sauvegarde. OpenLP.ServiceNoteForm Service Item Notes Notes sur l'élément du service OpenLP.SettingsForm Configure OpenLP Configuration d'OpenLP OpenLP.ShortcutListDialog Action Action Shortcut Raccourci Duplicate Shortcut Raccourci dupliqué The shortcut "%s" is already assigned to another action, please use a different shortcut. Le raccourci "%s" est déjà assigné à une autre action, veuillez utiliser un autre raccourci. Alternate Alternatif Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Sélectionnez une action puis cliquez sur un des boutons ci-dessous pour capturer un nouveau raccourci principal ou secondaire. Default Défaut Custom Personnalisé Capture shortcut. Capture un raccourci. Restore the default shortcut of this action. Restaure le raccourci par défaut de cette action. Restore Default Shortcuts Restaure les raccourcis par défaut Do you want to restore all shortcuts to their defaults? Voulez vous restaurer tous les raccourcis par leur valeur par défaut ? Configure Shortcuts Configurer les raccourcis OpenLP.SlideController Hide Cacher Go To Aller à Blank Screen Écran noir Blank to Theme Thème vide Show Desktop Afficher le bureau Previous Service Service précédent Next Service Service suivant Escape Item Élément d'échappement Move to previous. Déplace au précédant. Move to next. Déplace au suivant. Play Slides Joue les diapositives Delay between slides in seconds. Intervalle entre les diapositives en secondes. Move to live. Déplacer sur le direct. Add to Service. Ajoute au service. Edit and reload song preview. Édite et recharge la prévisualisation du chant. Start playing media. Joue le média. Pause audio. Mettre en pause la lecture audio. Pause playing media. Mettre en pause la lecture. Stop playing media. Arrêter la lecture. Video position. Position vidéo. Audio Volume. Volume sonore. Go to "Verse" Aller au "Couplet" Go to "Chorus" Aller au "Refrain" Go to "Bridge" Aller au "Pont" Go to "Pre-Chorus" Aller au "Pré-Refrain" Go to "Intro" Aller à "Intro" Go to "Ending" Aller à "Fin" Go to "Other" Aller à "Autre" Previous Slide Diapositive précédente Next Slide Diapositive suivante Pause Audio Pause Audio Background Audio Audio en fond Go to next audio track. Aller à la piste audio suivante. Tracks Pistes OpenLP.SourceSelectForm Select Projector Source Choisir la source du projecteur Edit Projector Source Text Modifier le texte de la source du projecteur Ignoring current changes and return to OpenLP Ignorer les changements actuels et retourner à OpenLP Delete all user-defined text and revert to PJLink default text Supprimer le texte personnalisé et recharger le texte par défaut de PJLink Discard changes and reset to previous user-defined text Annuler les modifications et recharger le texte personnalisé précédent Save changes and return to OpenLP Sauvegarder les changements et retourner à OpenLP Delete entries for this projector Supprimer les entrées pour ce projecteur Are you sure you want to delete ALL user-defined source input text for this projector? Êtes-vous sûr de bien vouloir supprimer tout le texte d'entrée source de ce projecteur ? OpenLP.SpellTextEdit Spelling Suggestions Suggestions orthographiques Formatting Tags Tags de formatage Language: Langue : OpenLP.StartTimeForm Theme Layout Disposition du thème The blue box shows the main area. La boîte bleu indique la zone principale. The red box shows the footer. La boîte rouge indique la zone de pied de page. OpenLP.StartTime_form Item Start and Finish Time Temps de début et de fin de l'élément Hours: Heures : Minutes: Minutes : Seconds: Secondes : Start Début Finish Fini Length Longueur Time Validation Error Erreur de validation du temps Finish time is set after the end of the media item Le temps de fin est défini après la fin de l’élément média Start time is after the finish time of the media item Le temps de début est après le temps de fin de l'élément média OpenLP.ThemeForm (approximately %d lines per slide) (environ %d lignes par diapo) OpenLP.ThemeManager Create a new theme. Crée un nouveau thème. Edit Theme Édite le thème Edit a theme. Édite un thème. Delete Theme Supprime le thème Delete a theme. Supprime un thème. Import Theme Import le thème Import a theme. Import un thème. Export Theme Export le thème Export a theme. Export un thème. &Edit Theme &Édite le thème &Delete Theme &Supprime le thème Set As &Global Default Définir comme défaut &Global %s (default) %s (défaut) You must select a theme to edit. Vous devez sélectionner un thème à éditer. You are unable to delete the default theme. Vous ne pouvez pas supprimer le thème par défaut. You have not selected a theme. Vous n'avez pas sélectionner de thème. Save Theme - (%s) Enregistre le thème - (%s) Theme Exported Thème exporté Your theme has been successfully exported. Votre thème a été exporté avec succès. Theme Export Failed L'export du thème a échoué Select Theme Import File Sélectionner le fichier thème à importer File is not a valid theme. Le fichier n'est pas un thème valide. &Copy Theme &Copie le thème &Rename Theme &Renomme le thème &Export Theme &Exporte le thème You must select a theme to rename. Vous devez sélectionner un thème à renommer. Rename Confirmation Confirme le renommage Rename %s theme? Renomme le thème %s ? You must select a theme to delete. Vous devez sélectionner un thème à supprimer. Delete Confirmation Confirmation de suppression Delete %s theme? Supprime le thème %s ? Validation Error Erreur de validation A theme with this name already exists. Un autre thème porte déjà ce nom. Copy of %s Copy of <theme name> Copie de %s Theme Already Exists Le thème existe déjà Theme %s already exists. Do you want to replace it? Le thème %s existe déjà. Voulez-vous le remplacer? The theme export failed because this error occurred: %s L'export du thème a échoué car cette erreur est survenue : %s OpenLP Themes (*.otz) Thèmes OpenLP (*.otz) %s time(s) by %s %s fois par %s Unable to delete theme Impossible de supprimer le thème Theme is currently used %s Le thème est actuellement utilisé %s OpenLP.ThemeWizard Theme Wizard Assistant de thème Welcome to the Theme Wizard Bienvenue dans l'assistant de thème Set Up Background Choisir le font Set up your theme's background according to the parameters below. Choisir le fond de votre thème à l'aide des paramètres ci-dessous. Background type: Type de fond : Gradient Dégradé Gradient: Dégradé : Horizontal Horizontal Vertical Vertical Circular Circulaire Top Left - Bottom Right Haut gauche - Bas droite Bottom Left - Top Right Bas gauche - Haut droite Main Area Font Details Détails de la police de la zone principale Define the font and display characteristics for the Display text Définir la police et les caractéristique d'affichage de ce texte Font: Police : Size: Taille : Line Spacing: Espace entre les lignes : &Outline: &Contour : &Shadow: &Ombre : Bold Gras Italic Italique Footer Area Font Details Détails de la police de la zone du pied de page Define the font and display characteristics for the Footer text Définir la police et les caractéristiques d'affichage du texte de pied de page Text Formatting Details Détails de formatage du texte Allows additional display formatting information to be defined Permet de définir des paramètres d'affichage supplémentaires Horizontal Align: Alignement horizontal : Left Gauche Right Droite Center Centré Output Area Locations Emplacement de la zone d'affichage &Main Area Zone &principale &Use default location &Utilise l'emplacement par défaut X position: Position x : px px Y position: Position y : Width: Largeur : Height: Hauteur : Use default location Utilise l'emplacement par défaut Theme name: Nom du thème : Edit Theme - %s Édite le thème - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Cet assistant vous permet de créer et d'éditer vos thèmes. Cliquer sur le bouton suivant pour démarrer le processus en choisissant votre fond. Transitions: Transitions : &Footer Area Zone de &pied de page Starting color: Couleur de début : Ending color: Couleur de fin : Background color: Couleur de fond : Justify Justifier Layout Preview Prévisualiser la mise en page Transparent Transparent Preview and Save Prévisualiser et Sauvegarder Preview the theme and save it. Prévisualiser le thème et le sauvegarder. Background Image Empty L'image de fond est vide Select Image Sélectionnez une image Theme Name Missing Nom du thème manquant There is no name for this theme. Please enter one. Ce thème n'a pas de nom. Veuillez en saisir un. Theme Name Invalid Nom du thème invalide Invalid theme name. Please enter one. Nom du thème invalide. Veuillez en saisir un. Solid color Couleur unie color: couleur : Allows you to change and move the Main and Footer areas. Permet de déplacer les zones principale et de pied de page. You have not selected a background image. Please select one before continuing. Vous n'avez pas sélectionné une image de fond. Veuillez en sélectionner une avant de continuer. OpenLP.ThemesTab Global Theme Thème global Theme Level Politique d'application du thème S&ong Level Politique d'application du &chant Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Utilise le thème pour chaque chants de la base de données. Si un chant n'a pas de thème associé, le thème du service est utilisé. Si le service n'a pas de thème, le thème global est utilisé. &Service Level Politique d'application du &service Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Utilise le thème du service, surcharge le thème de chaque chants. Si le service n'a pas de thème, le thème global est utilisé. &Global Level Niveau &global Use the global theme, overriding any themes associated with either the service or the songs. Utilise le thème global, surcharge tous les thèmes associés aux services ou aux chants. Themes Thèmes Universal Settings Paramètres globaux &Wrap footer text &Envelopper le texte de pied de page OpenLP.Ui Delete the selected item. Supprime l'élément sélectionné. Move selection up one position. Déplace la sélection d'une position vers le haut. Move selection down one position. Déplace la sélection d'une position vers le bas. &Vertical Align: Alignement &vertical : Finished import. Import terminé. Format: Format : Importing Import en cours Importing "%s"... Importation de "%s"... Select Import Source Sélectionnez la source à importer Select the import format and the location to import from. Sélectionner le format d'import et le chemin du fichier à importer. Open %s File Ouvrir le fichier %s %p% %p% Ready. Prêt. Starting import... Démarrage de l'import... You need to specify at least one %s file to import from. A file type e.g. OpenSong Vous devez spécifier au moins un fichier de %s à importer. Welcome to the Bible Import Wizard Bienvenue dans l'assistant d'import de Bible Welcome to the Song Export Wizard Bienvenue dans l'assistant d'export de Chant Welcome to the Song Import Wizard Bienvenue dans l'assistant d'import de Chant Author Singular Auteur Authors Plural Auteurs © Copyright symbol. © Song Maintenance Entretien des Chants Topic Singular Sujet Topics Plural Sujets Title and/or verses not found Titre et/ou paragraphe non trouvé XML syntax error Erreur de syntaxe XML Welcome to the Bible Upgrade Wizard Bienvenue dans l'assistant de mise à jour de Bible Open %s Folder Ouvrir le dossier %s You need to specify one %s file to import from. A file type e.g. OpenSong Vous devez spécifier un fichier %s à importer. You need to specify one %s folder to import from. A song format e.g. PowerSong Vous devez spécifier un dossier %s à importer. Importing Songs Import de chansons en cours Welcome to the Duplicate Song Removal Wizard Bienvenue dans l'assistant de suppression des chants en double Written by Ecrit par Author Unknown Auteur inconnu About A propos de &Add &Ajoute Add group Ajouter un groupe Advanced Avancé All Files Tous les Fichiers Automatic Automatique Background Color Couleur de fond Bottom Bas Browse... Parcourir... Cancel Annuler CCLI number: Numéro CCLI : Create a new service. Crée un nouveau service. Confirm Delete Confirme la suppression Continuous Continu Default Défaut Default Color: Couleur par défaut : Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M &Delete &Supprime Display style: Style d'affichage : Duplicate Error Erreur de duplication &Edit &Édite Empty Field Champ vide Error Erreur Export Export File Fichier File Not Found Fichier non trouvé File %s not found. Please try selecting it individually. Fichier %s non trouvé. Essayez de le sélectionner à part. pt Abbreviated font pointsize unit pt Help Aide h The abbreviated unit for hours h Invalid Folder Selected Singular Dossier sélectionné invalide Invalid File Selected Singular Fichier sélectionné invalide Invalid Files Selected Plural Fichiers sélectionnés invalides Image Image Import Importer Layout style: Type de disposition : Live Direct Live Background Error Erreur de fond du direct Live Toolbar Bar d'outils direct Load Charge Manufacturer Singular Constructeur Manufacturers Plural Constructeurs Model Singular Modèle Models Plural Modèles m The abbreviated unit for minutes m Middle Milieu New Nouveau New Service Nouveau service New Theme Nouveau thème Next Track Piste suivante No Folder Selected Singular Aucun dossier sélectionné No File Selected Singular Pas de fichier sélectionné No Files Selected Plural Aucun fichiers sélectionnés No Item Selected Singular Aucun élément sélectionné No Items Selected Plural Aucun éléments sélectionnés OpenLP is already running. Do you wish to continue? OpenLP est déjà en cours d'utilisation. Voulez-vous continuer ? Open service. Ouvrir le service. Play Slides in Loop Afficher les diapositives en boucle Play Slides to End Afficher les diapositives jusqu’à la fin Preview Prévisualisation Print Service Imprimer le service Projector Singular Projecteur Projectors Plural Projecteurs Replace Background Remplace le fond Replace live background. Remplace le fond du direct. Reset Background Réinitialiser le fond Reset live background. Restaure le fond du direct. s The abbreviated unit for seconds s Save && Preview Enregistrer && prévisualiser Search Recherche Search Themes... Search bar place holder text Recherche dans les thèmes... You must select an item to delete. Vous devez sélectionner un élément à supprimer. You must select an item to edit. Vous devez sélectionner un élément à éditer. Settings Paramètres Save Service Enregistre le service Service Service Optional &Split Optionnel &Partager Split a slide into two only if it does not fit on the screen as one slide. Divisez la diapositive en deux seulement si elle ne loge pas sur l'écran. Start %s Début %s Stop Play Slides in Loop Arrête la boucle de diapositive Stop Play Slides to End Arrête la boucle de diapositive à la fin Theme Singular Thème Themes Plural Thèmes Tools Outils Top Haut Unsupported File Fichier non supporté Verse Per Slide Un verset par diapositive Verse Per Line Un verset par ligne Version Version View Afficher View Mode Mode d'affichage CCLI song number: Numéro de chant CCLI : Preview Toolbar Prévisualiser barre d'outils OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s et %s %s, and %s Locale list separator: end %s, et %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Interface de sélection de la source PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Module de présentation</strong><br />Le module de présentation permet d'afficher des présentations issues d'autres logiciels. La liste des logiciels disponibles se trouve dans les options d'OpenLP rubrique Présentation. Presentation name singular Présentation Presentations name plural Présentations Presentations container title Présentations Load a new presentation. Charge une nouvelle présentation. Delete the selected presentation. Supprime la présentation sélectionnée. Preview the selected presentation. Prévisualiser la présentation sélectionnée. Send the selected presentation live. Envoie la présentation sélectionnée au direct. Add the selected presentation to the service. Ajoute la présentation sélectionnée au service. PresentationPlugin.MediaItem Select Presentation(s) Sélectionner un(des) Présentation(s) Automatic Automatique Present using: Actuellement utilisé : File Exists Ce fichier existe A presentation with that filename already exists. Une présentation utilise déjà ce nom de fichier. This type of presentation is not supported. Ce type de présentation n'est pas supporté. Presentations (%s) Présentations (%s) Missing Presentation Présentation manquante The presentation %s is incomplete, please reload. La présentation %s est incomplète, veuillez la recharger. The presentation %s no longer exists. La présentation %s n'existe plus. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Un erreur s'est produite lors de l'intégration de Powerpoint et la présentation va être arrêtée. Veuillez relancer la relancer si nécessaire. PresentationPlugin.PresentationTab Available Controllers Logiciels de présentation disponibles %s (unavailable) %s (non disponible) Allow presentation application to be overridden Autoriser l'application de présentation à être surcharger PDF options Options PDF Use given full path for mudraw or ghostscript binary: Utilisez le chemin fourni pour mudraw ou l'exécutable de ghostscript : Select mudraw or ghostscript binary. Sélectionnez mudraw ou l'exécutable ghostscript. The program is not ghostscript or mudraw which is required. Le programme qui a été fourni n'est pas mudraw ni ghostscript. PowerPoint options Options PowerPoint Clicking on a selected slide in the slidecontroller advances to next effect. En cliquant sur une diapositive sélectionnée dans le contrôleur de diapositives permet de passer à l'effet suivant. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Laisser PowerPoint contrôler la taille et la position de la fenêtre de présentation (contournement du problème de mise à l'échelle de Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Module Contrôle à distance</strong><br />Le module de contrôle à distance permet d'envoyer des messages à une instance d'OpenLP fonctionnant sur un autre ordinateur au moyen d'une interface web ou au travers d'une API. Remote name singular Contrôle à distance Remotes name plural Contrôles à distance Remote container title Contrôle à distance Server Config Change Changer la configuration serveur Server configuration changes will require a restart to take effect. Les changements de configuration du serveur ne prendront effet qu'au redémarrage. RemotePlugin.Mobile Service Manager Gestionnaire de services Slide Controller Contrôleur de diapositive Alerts Alertes Search Recherche Home Accueil Refresh Rafraîchir Blank Vide Theme Thème Desktop Bureau Show Affiche Prev Préc Next Suivant Text Texte Show Alert Affiche une alerte Go Live Lance le direct Add to Service Ajouter au service Add &amp; Go to Service Ajouter &amp; Se rendre au Service No Results Pas de résultats Options Options Service Service Slides Diapos Settings Paramètres Remote Contrôle à distance Stage View Prompteur Live View Vue du direct RemotePlugin.RemoteTab Serve on IP address: Ecoute sur l'adresse IP : Port number: Numéro de port : Server Settings Configuration du serveur Remote URL: URL du contrôle à distance : Stage view URL: URL du Prompteur : Display stage time in 12h format Affiche l'heure du prompteur au format 12h Android App Application Android Live view URL: URL du direct : HTTPS Server Serveur HTTPS Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Ne peut pas trouver de certificat SSL. Le serveur HTTPS ne sera pas disponible sans certificat SSL. Merci de vous reporter au manuel pour plus d'informations. User Authentication Indentification utilisateur User id: ID utilisateur : Password: Mot de passe : Show thumbnails of non-text slides in remote and stage view. Afficher les miniatures des diapositives sans texte sur la vue distante et le prompteur. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scannez le QR code ou cliquez sur <a href="%s">télécharger</a> pour installer l'application Android à partir de Google Play. SongUsagePlugin &Song Usage Tracking Suivre de l'utilisation des &chants &Delete Tracking Data &Supprime les données de suivi Delete song usage data up to a specified date. Supprime les données de l'utilisation des chants jusqu'à une date donnée. &Extract Tracking Data &Extraire les données de suivi Generate a report on song usage. Génère un rapport de l'utilisation des chants. Toggle Tracking Activer/Désactiver le suivi Toggle the tracking of song usage. Activer/Désactiver le suivi de l'utilisation des chants. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Module de suivi des chants</strong><br />Ce module permet d'effectuer des statistiques sur la projection des chants. SongUsage name singular Suivi de l'utilisation des chants SongUsage name plural Suivi de l'utilisation des chants SongUsage container title Suivi de l'utilisation des chants Song Usage Suivi de l'utilisation des chants Song usage tracking is active. Le suivi de l'utilisation des chants est actif. Song usage tracking is inactive. Le suivi de l'utilisation des chants est inactif. display affiche printed imprimé SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Supprime les données de suivi de l'utilisation des chants Delete Selected Song Usage Events? Supprime les événements sélectionné ? Are you sure you want to delete selected Song Usage data? Êtes vous sur de vouloir supprimer les données de suivi sélectionnées ? Deletion Successful Suppression effectuée Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Sélectionnez la date jusqu'à laquelle les données d'utilisation des chants devra être supprimé. Toutes les données enregistrées avant cette date seront définitivement supprimées. All requested data has been deleted successfully. Toutes les données demandées ont été supprimées avec succès. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Extraction de l'utilisation des chants Select Date Range Sélectionner une période to à Report Location Emplacement du rapport Output File Location Emplacement du fichier de sortie usage_detail_%s_%s.txt rapport_d_utilisation_%s_%s.txt Report Creation Création du rapport Report %s has been successfully created. Le rapport %s à été crée avec succès. Output Path Not Selected Répertoire de destination non sélectionné You have not set a valid output location for your song usage report. Please select an existing path on your computer. Vous n'avez pas défini de répertoire de destination valide pour votre rapport d'utilisation des chants. Veuillez sélectionner un répertoire existant sur votre ordinateur. Report Creation Failed Création du rapport en échec An error occurred while creating the report: %s Une erreur est survenue lors de la création du rapport : %s SongsPlugin &Song &Chant Import songs using the import wizard. Importer des chants en utilisant l'assistant d'import. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Module Chants</strong><br />Le module Chants permet d'afficher et de gérer des chants. &Re-index Songs &Ré-indexation des Chants Re-index the songs database to improve searching and ordering. Ré-indexation de la base de données des chants pour accélérer la recherche et le tri. Reindexing songs... Ré-indexation des chants en cours... Arabic (CP-1256) Arabe (CP-1256) Baltic (CP-1257) Baltique (CP-1257) Central European (CP-1250) Europe centrale (CP-1250) Cyrillic (CP-1251) Cyrillique (CP-1251) Greek (CP-1253) Grecque (CP-1253) Hebrew (CP-1255) Hébreux (CP-1255) Japanese (CP-932) Japonais (CP-932) Korean (CP-949) Coréen (CP-949) Simplified Chinese (CP-936) Chinois simplifié (CP-936) Thai (CP-874) Thaï (CP-874) Traditional Chinese (CP-950) Chinois Traditionnel (CP-950) Turkish (CP-1254) Turque (CP-1254) Vietnam (CP-1258) Vietnamiens (CP-1258) Western European (CP-1252) Europe de l'ouest (CP-1252) Character Encoding Encodage des caractères The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Le paramétrage de la table des caractères permet un affichage correct des caractères. L'option déjà sélectionnée est en général la bonne. Please choose the character encoding. The encoding is responsible for the correct character representation. Veuillez choisir l'encodage des caractères. L'encodage permet un affichage correct des caractères. Song name singular Chant Songs name plural Chants Songs container title Chants Exports songs using the export wizard. Export des chants en utilisant l'assistant d'export. Add a new song. Ajoute un nouveau chant. Edit the selected song. Édite le chant sélectionné. Delete the selected song. Supprime le chant sélectionné. Preview the selected song. Prévisualiser le chant sélectionné. Send the selected song live. Envoie le chant sélectionné au direct. Add the selected song to the service. Ajoute le chant sélectionné au service. Reindexing songs Réindexation des chansons en cours CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importer les chants à partir du service SongSelect CCLI. Find &Duplicate Songs Trouver chants &dupliqués Find and remove duplicate songs in the song database. Trouve et supprime les doublons dans la base des chants. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Paroles Music Author who wrote the music of a song Musique Words and Music Author who wrote both lyrics and music of a song Paroles et musique Translation Author who translated the song Traduction SongsPlugin.AuthorsForm Author Maintenance Auteur de maintenance Display name: Nom affiché : First name: Prénom : Last name: Nom : You need to type in the first name of the author. Vous devez entrer le prénom de l'auteur. You need to type in the last name of the author. Vous devez entrer le nom de l'auteur. You have not set a display name for the author, combine the first and last names? Nous n'avez pas défini de nom à afficher pour l'auteur, combiner le prénom et le nom ? SongsPlugin.CCLIFileImport The file does not have a valid extension. Le fichier a une extension non valide. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Fichier DreamBeam invalide. Balise DreamSong manquante. SongsPlugin.EasyWorshipSongImport Administered by %s Administré par %s "%s" could not be imported. %s "%s" ne peut pas être importé. %s Unexpected data formatting. Format de fichier inattendu. No song text found. Aucun chant n'a été trouvé. [above are Song Tags with notes imported from EasyWorship] [ci-dessus les balises des chants avec des notes importées de EasyWorship] This file does not exist. Ce fichier n'existe pas. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Ne trouve pas le fichier "Songs.MB". Il doit être dans le même dossier que le fichier "Songs.DB". This file is not a valid EasyWorship database. Ce fichier n'est pas une base EasyWorship valide. Could not retrieve encoding. Impossible de trouver l'encodage. SongsPlugin.EditBibleForm Meta Data Méta données Custom Book Names Noms de livres personnalisés SongsPlugin.EditSongForm Song Editor Éditeur de Chant &Title: &Titre : Alt&ernate title: Titre alt&ernatif : &Lyrics: &Paroles : &Verse order: Ordre des &paragraphes : Ed&it All Édite &tous Title && Lyrics Titre && paroles &Add to Song &Ajoute au Chant &Remove &Supprime A&dd to Song A&joute au Chant R&emove &Supprime New &Theme Nouveau &thème Copyright Information Information du copyright Comments Commentaires Theme, Copyright Info && Comments Thème, copyright && commentaires Add Author Ajoute un auteur This author does not exist, do you want to add them? Cet auteur n'existe pas, voulez-vous l'ajouter ? This author is already in the list. Cet auteur ce trouve déjà dans la liste. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Vous n'avez pas sélectionné un auteur valide. Vous pouvez sélectionner un auteur dans la liste, ou entrer le nom d'un nouvel auteur et cliquez sur "Ajouter un auteur au Chant". Add Topic Ajoute un sujet This topic does not exist, do you want to add it? Ce sujet n'existe pas voulez-vous l'ajouter ? This topic is already in the list. Ce sujet ce trouve déjà dans la liste. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Vous n'avez pas sélectionné de sujet valide. Vous pouvez sélectionner un sujet dans la liste, ou entrer le nom d'un nouveau sujet et cliquez sur "Ajouter un sujet au Chant". You need to type in a song title. Vous devez entrer un titre pour ce chant. You need to type in at least one verse. Vous devez entrer au moins un paragraphe. You need to have an author for this song. Vous devez entrer un auteur pour ce chant. Linked Audio Fichier audio attaché Add &File(s) Ajoute un(des) &fichier(s) Add &Media Ajoute un &média Remove &All Supprime &tout Open File(s) Ouvrir un(des) fichier(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Attention :</strong> Tous les versets ne sont pas utilisés. <strong>Warning:</strong> You have not entered a verse order. <strong>Attention :</strong> Vous n'avez pas entré d'ordre de verset. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Il n'y a pas de strophe correspondant à "%(invalid)s". Les valeurs possibles sont %(valid)s. Veuillez entrer les strophes séparées par des espaces. Invalid Verse Order Ordre des paragraphes invalides &Edit Author Type &Modifier le type d'auteur Edit Author Type Modifier le type d'auteur Choose type for this author Choisir un type pour cet auteur There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Il n'y a pas de strophe correspondant à "%(invalid)s". Les valeurs possibles sont %(valid)s. Veuillez entrer les strophes séparées par des espaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Édite le paragraphe &Verse type: &Type de paragraphe : &Insert &Insère Split a slide into two by inserting a verse splitter. Divise une diapositive en deux en insérant un séparateur de paragraphe. SongsPlugin.ExportWizardForm Song Export Wizard Assistant d'export de chant Select Songs Sélectionner des chants Check the songs you want to export. Coche les chants que vous voulez exporter. Uncheck All Décoche tous Check All Coche tous Select Directory Sélectionner un répertoire Directory: Répertoire : Exporting Exportation Please wait while your songs are exported. Merci d'attendre que vos chants soient exportés. You need to add at least one Song to export. Vous devez exporter au moins un chant. No Save Location specified Aucun emplacement de sauvegarde défini Starting export... Démarre l'export... You need to specify a directory. Vous devez spécifier un répertoire. Select Destination Folder Sélectionner le répertoire de destination Select the directory where you want the songs to be saved. Sélectionner le répertoire où vous voulez enregistrer vos chants. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Cet assistant vous aide à exporter vos chants au format de chants de louange libre et gratuit <strong>OpenLyrics</strong>. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Fichier Foilpresenter invalide. Pas de couplet trouvé. SongsPlugin.GeneralTab Enable search as you type Activer la recherche à la frappe SongsPlugin.ImportWizardForm Select Document/Presentation Files Sélectionner les fichiers Document/Présentation Song Import Wizard Assistant d'import de Chant This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Cet assistant vous permet d'importer des chants de divers formats. Cliquez sur le bouton suivant ci-dessous pour démarrer le processus en sélectionnant le format à importer. Generic Document/Presentation Document/Présentation générique Add Files... Ajoute des fichiers... Remove File(s) Supprime un(des) fichier(s) Please wait while your songs are imported. Veuillez patienter pendant l'import de vos chants. Words Of Worship Song Files Fichiers Chant Words Of Worship Songs Of Fellowship Song Files Fichiers Chant Songs Of Fellowship SongBeamer Files Fichiers SongBeamer SongShow Plus Song Files Fichiers Chant SongShow Plus Foilpresenter Song Files Fichiers Chant Foilpresenter Copy Copier Save to File Enregistre dans un fichier The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import de chants Fellowship a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import générique de document/présentation a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. OpenLyrics Files Fichiers OpenLyrics CCLI SongSelect Files CCLI Song Sélectionner Fichiers EasySlides XML File Fichier XML EasySlides EasyWorship Song Database Base de données de chants d'EasyWorship DreamBeam Song Files Fichiers chants DreamBeam You need to specify a valid PowerSong 1.0 database folder. Vous devez spécifier un dossier de données PowerSong 1.0 valide. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. D'abord, convertissez votre base de données ZionWorx à un fichier texte CSV, comme c'est expliqué dans le <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">manuel utilisateur</a>. SundayPlus Song Files Fichier chants SundayPlus This importer has been disabled. Cet importeur a été désactivé. MediaShout Database Base de données MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. L'importeur MediaShout n'est supporté que sous Windows. Il a été désactivé à cause d'un module Python manquant. Si vous voulez utiliser cet importeur, vous devez installer le module "pyodbc". SongPro Text Files Fichiers texte SongPro SongPro (Export File) SongPro (Fichiers exportés) In SongPro, export your songs using the File -> Export menu Dans SongPro, exportez vos chansons en utilisant le menu Fichier -> Exporter EasyWorship Service File Fichier de service EasyWorship WorshipCenter Pro Song Files Fichier WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. L'import WorshipCenter Pro ne fonctionne que sous Windows. Il a été désactivé à cause d'un module Python manquant. Si vous voulez importer, vous devez installer le module "pyodbc". PowerPraise Song Files Fichiers PowerPraise PresentationManager Song Files Fichiers PresentationManager ProPresenter 4 Song Files Fichiers ProPresenter 4 Worship Assistant Files Fichiers Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. À partir de Worship Assistant, exportez votre base en fichier CSV. OpenLyrics or OpenLP 2 Exported Song Chant exporté en OpenLyrics ou OpenLP 2.0 OpenLP 2 Databases Base de données OpenLP 2 LyriX Files Fichiers LyriX LyriX (Exported TXT-files) LyriX (Fichiers TXT exportés) VideoPsalm Files Fichiers VideoPsalm VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s Les carnets de chants de VideoPsalm se trouvent en général dans %s SongsPlugin.LyrixImport Error: %s Erreur: %s SongsPlugin.MediaFilesForm Select Media File(s) Sélectionner un(des) fichier(s) média Select one or more audio files from the list below, and click OK to import them into this song. Sélectionnez un ou plusieurs fichier depuis la liste ci-dessous, et cliquez sur le bouton OK pour les importer dans ce chant. SongsPlugin.MediaItem Titles Titres Lyrics Paroles CCLI License: Licence CCLI : Entire Song Chant entier Maintain the lists of authors, topics and books. Maintenir la liste des auteurs, sujets et carnets de chants. copy For song cloning copier Search Titles... Recherche dans les titres... Search Entire Song... Recherche dans le chant entier... Search Lyrics... Recherche dans les paroles... Search Authors... Recherche dans les auteurs... Are you sure you want to delete the "%d" selected song(s)? Etes-vous sur de vouloir supprimer les "%d" chant(s) sélectionné(s) ? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Impossible d'ouvrir la base de données MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Base de données de chant OpenLP 2 invalide. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportation "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Fichier OpenSong invalide. Balise song manquante. SongsPlugin.PowerSongImport No songs to import. Aucun chant à importer. Verses not found. Missing "PART" header. Versets non trouvé. Entête "PART" manquante. No %s files found. Aucun fichier %s trouvé. Invalid %s file. Unexpected byte value. Fichier %s invalide. Octet inattendu. Invalid %s file. Missing "TITLE" header. Fichier %s invalide. Entête "TITLE" manquant. Invalid %s file. Missing "COPYRIGHTLINE" header. Fichier %s invalide. Entête "COPYRIGHTLINE" manquant. SongsPlugin.SongBookForm &Name: &Nom : &Publisher: &Éditeur : You need to type in a name for the book. Vous devez entrer un nom pour le carnet de chants. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Votre export de chant a échoué. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export terminé. Pour importer ces fichiers utilisez l’outil d'import <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s L'export du chant a échoué car cette erreur est survenue : %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: Les chants suivants ne peuvent être importé : Cannot access OpenOffice or LibreOffice Impossible d’accéder à OpenOffice ou LibreOffice Unable to open file Impossible d'ouvrir le fichier File not found Fichier non trouvé SongsPlugin.SongMaintenanceForm Could not add your author. Impossible d'ajouter votre auteur. This author already exists. Cet auteur existe déjà. Could not add your topic. Impossible d'ajouter votre sujet. This topic already exists. Ce sujet existe déjà. Could not add your book. Impossible d'ajouter votre carnet de chants. This book already exists. Ce carnet de chants existe déjà. Could not save your changes. Impossible d'enregistrer vos modifications. Could not save your modified author, because the author already exists. Impossible d'enregistrer vos modifications de l'auteur, car l'auteur existe déjà. Could not save your modified topic, because it already exists. Impossible d'enregistrer vos modifications du sujet, car le sujet existe déjà. Delete Author Supprime l'auteur Are you sure you want to delete the selected author? Êtes-vous sûr de bien vouloir supprimer l'auteur sélectionné ? This author cannot be deleted, they are currently assigned to at least one song. Cet auteur ne peut être supprimé, il est actuellement utilisé par au moins un chant. Delete Topic Supprime le sujet Are you sure you want to delete the selected topic? Êtes-vous sûr de bien vouloir supprimer le sujet sélectionné ? This topic cannot be deleted, it is currently assigned to at least one song. Ce sujet ne peut être supprimé, il est actuellement utilisé par au moins un chant. Delete Book Supprime le carnet de chants Are you sure you want to delete the selected book? Êtes-vous sûr de bien vouloir supprimer le carnet de chants sélectionné ? This book cannot be deleted, it is currently assigned to at least one song. Ce carnet de chants ne peut être supprimé, il est actuellement utilisé par au moins un chant. The author %s already exists. Would you like to make songs with author %s use the existing author %s? L'auteur %s existe déjà. Voulez-vous faire en sorte que les chants avec l'auteur %s utilise l'auteur existant %s ? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Le sujet %s existe déjà. Voulez-vous faire en sorte que les chants avec le sujet %s utilise le sujet existant %s ? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Le carnet de chants %s existe déjà. Voulez-vous faire en sorte que les chants du carnet de chants %s utilisent le carnet de chants existant %s ? SongsPlugin.SongSelectForm CCLI SongSelect Importer Import CCLI SongSelect <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Remarque :</strong> Une connexion internet est nécessaire pour importer des chants depuis CCLI SongSelect. Username: Nom d'utilisateur : Password: Mot de passe : Save username and password Sauvegarder nom d'utilisateur et mot de passe Login Connexion Search Text: Recherche dans le texte : Search Recherche Found %s song(s) %s chant(s) trouvé(s) Logout Déconnexion View Affiche Title: Titre : Author(s): Auteur(s): Copyright: Droits d'auteur : CCLI Number: Numéro CCLI : Lyrics: Paroles : Back Arrière Import Import More than 1000 results Plus de 1000 résultats Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Le résultat de votre recherche contient plus de 1000 résultats, elle a été arrêtée. Veuillez affiner votre recherche. Logging out... Déconnexion... Save Username and Password Sauvegarder nom d'utilisateur et mot de passe WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. ATTENTION: Enregistrer votre nom d'utilisateur et votre mot de passe n'est pas sécurisé, votre mot de passe sera conservé en clair. Cliquez sur Oui pour l'enregistrer malgré tout ou Non pour annuler. Error Logging In Erreur de connexion There was a problem logging in, perhaps your username or password is incorrect? Il y a eu une erreur de connexion, peut-être un compte ou mot de passe incorrect ? Song Imported Chant importé Incomplete song Chant incomplet This song is missing some information, like the lyrics, and cannot be imported. Il manque des informations à ce chant, comme des paroles, il ne peut pas être importé. Your song has been imported, would you like to import more songs? Votre chant a été importé, voulez-vous importer plus de chants ? Stop SongsPlugin.SongsTab Songs Mode Options de Chants Display verses on live tool bar Affiche les paragraphes dans la barre d'outils du direct Update service from song edit Mettre à jour le service après une modification de chant Import missing songs from service files Importer les chants manquant des fichiers du service Display songbook in footer Affiche le recueil dans le pied de page Display "%s" symbol before copyright info Afficher le symbole "%s" avant l'information de copyright SongsPlugin.TopicsForm Topic Maintenance Maintenance des sujets Topic name: Nom du sujet : You need to type in a topic name. Vous devez entrer un nom de sujet. SongsPlugin.VerseType Verse Couplet Chorus Refrain Bridge Pont Pre-Chorus F-Pré-refrain Intro Introduction Ending Fin Other Autre SongsPlugin.VideoPsalmImport Error: %s Erreur: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Fichier Words of Worship invalide. Entête "%s" manquante. Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Fichier Words of Worship invalide. Chaine "%s" string.CSongDoc::CBlock manquante. SongsPlugin.WorshipAssistantImport Error reading CSV file. Impossible de lire le fichier CSV. Line %d: %s Ligne %d: %s Decoding error: %s Erreur de décodage: %s File not valid WorshipAssistant CSV format. Format de fichier CSV WorshipAssistant invalide. Record %d Entrée %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Impossible de connecter la base WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Impossible de lire le fichier CSV. File not valid ZionWorx CSV format. Format de fichier CSV ZionWorx invalide. Line %d: %s Ligne %d: %s Decoding error: %s Erreur de décodage: %s Record %d Entrée %d Wizard Wizard Assistant This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Cet assistant va vous permettre de supprimer tous les chants en double. Vous pourrez les vérifier uns par uns avant qu'ils ne soient supprimés. Searching for duplicate songs. Recherche des chants dupliqués. Please wait while your songs database is analyzed. Veuillez patienter durant l'analyse de la base des chants. Here you can decide which songs to remove and which ones to keep. Vous pouvez choisir ici quels chants supprimer et lesquels garder. Review duplicate songs (%s/%s) Examine les chants en double (%s/%s) Information Information No duplicate songs have been found in the database. Pas de chants en double trouvé dans la base de données. OpenLP-2.4/resources/i18n/af.ts0000644000175000017500000151013312657640340015304 0ustar raoulraoul AlertsPlugin &Alert W&aarskuwing Show an alert message. Vertoon 'n waarskuwing boodskap. Alert name singular Waarskuwing Alerts name plural Waarskuwings Alerts container title Waarskuwings <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Waarskuwings Mini-program</strong><br />Die waarskuwings mini-program beheer die vertoning van waarskuwings op die skerm. AlertsPlugin.AlertForm Alert Message Waarskuwing Boodskap Alert &text: Waarskuwing &teks: &New &Nuwe &Save &Stoor Displ&ay V&ertoon Display && Cl&ose Vert&oon && Maak toe New Alert Nuwe Waarskuwing &Parameter: &Parameter: No Parameter Found Geen Parameter Gevind nie You have not entered a parameter to be replaced. Do you want to continue anyway? Daar is nie 'n parameter gegee om te vervang nie. Gaan steeds voort? No Placeholder Found Geen Plekhouer Gevind nie The alert text does not contain '<>'. Do you want to continue anyway? Die attent-teks bevat nie '<>' nie. Gaan steeds voort? You haven't specified any text for your alert. Please type in some text before clicking New. Daar is geen teks vir die waarskuwing verskaf nie. Tik asseblief in sommige teks voor te kliek Nuwe. AlertsPlugin.AlertsManager Alert message created and displayed. Waarskuwing boodskap geskep en vertoon. AlertsPlugin.AlertsTab Font Skrif Font name: Skrif naam: Font color: Skrif kleur: Background color: Agtergrond kleur: Font size: Skrif grootte: Alert timeout: Waarskuwing verstreke-tyd: BiblesPlugin &Bible &Bybel Bible name singular Bybel Bibles name plural Bybels Bibles container title Bybels No Book Found Geen Boek Gevind nie No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Geen passende boek kon in hierdie Bybel gevind word nie. Gaan na dat die naam van die boek korrek gespel is. Import a Bible. Voer 'n Bybel in. Add a new Bible. Voeg 'n nuwe Bybel by. Edit the selected Bible. Redigeer geselekteerde Bybel. Delete the selected Bible. Wis die geselekteerde Bybel uit. Preview the selected Bible. Voorskou die geselekteerde Bybel. Send the selected Bible live. Stuur die geselekteerde Bybel regstreeks. Add the selected Bible to the service. Voeg die geselekteerde Bybel by die diens. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bybel Mini-program</strong<br />Die Bybel mini-program verskaf die vermoë om Bybelverse vanaf verskillende bronne te vertoon tydens die diens. &Upgrade older Bibles &Opgradeer ouer Bybels Upgrade the Bible databases to the latest format. Opgradeer die Bybel databasisse na die nuutste formaat. Genesis Genesis Exodus Eksodus Leviticus Livitikus Numbers Numeri Deuteronomy Deuterononium Joshua Josua Judges Rigters Ruth Rut 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Konings 2 Kings 2 Konings 1 Chronicles 1 Kronieke 2 Chronicles 2 Kronieke Ezra Esra Nehemiah Nehemia Esther Ester Job Job Psalms Psalms Proverbs Spreuke van Salomo Ecclesiastes Prediker Song of Solomon Hooglied van Salomo Isaiah Jesaja Jeremiah Jeremia Lamentations Klaagliedere van Jeremia Ezekiel Esegiël Daniel Daniël Hosea Hosea Joel Joël Amos Amos Obadiah Obadja Jonah Jona Micah Miga Nahum Nahum Habakkuk Habakuk Zephaniah Sefanja Haggai Haggai Zechariah Sagaria Malachi Maleagi Matthew Matteus Mark Markus Luke Lukas John Johannes Acts Handelinge Romans Romeine 1 Corinthians 1 Korintiërs 2 Corinthians 2 Korintiërs Galatians Galasiërs Ephesians Effesiërs Philippians Filippense Colossians Kolossense 1 Thessalonians 1 Tessalonisense 2 Thessalonians 2 Tessalonisense 1 Timothy 1 Timoteus 2 Timothy 2 Timoteus Titus Titus Philemon Filemon Hebrews Hebreërs James Jakobus 1 Peter 1 Petrus 2 Peter 2 Petrus 1 John 1 Johannes 2 John 2 Johannes 3 John 3 Johannes Jude Judas Revelation Openbaring Judith Judit Wisdom Wysheid van Salomo Tobit Tobit Sirach Sirag Baruch Barug 1 Maccabees 1 Makkabeërs 2 Maccabees 2 Makkabeërs 3 Maccabees 3 Makkabeërs 4 Maccabees 4 Makkabeërs Rest of Daniel Byvoegings tot Daniël Rest of Esther Byvoegings tot Ester Prayer of Manasses Gebed van Manasse Letter of Jeremiah Brief van Jeremia Prayer of Azariah Gebed van Asarja Susanna Susanna Bel Bel en die Draak 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verse - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 tot , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 en end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse einde BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Dit is nodig dat 'n weergawe naam vir die Bybel gespesifiseer word. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 'n Kopiereg moet vir jou Bybel ingestel word. Bybels in die Publieke Domein moet sodanig gemerk word. Bible Exists Bybel Bestaan This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in, of wis eerstens die bestaande een uit. You need to specify a book name for "%s". 'n Boek naam moet vir "%s" gespesifiseer word. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Die boek naam "%s" is nie korrek nie. Nommers kan slegs aan die begin gebruik word en moet gevolg word deur een of meer nie-numeriese karrakters. Duplicate Book Name Duplikaat Boek Naam The Book Name "%s" has been entered more than once. Die Boek Naam "%s" is meer as een keer ingevoer. BiblesPlugin.BibleManager Scripture Reference Error Skrif Verwysing Fout Web Bible cannot be used Web Bybel kan nie gebruik word nie Text Search is not available with Web Bibles. Teks Soektog is nie beskikbaar met Web Bybels nie. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Daar is nie 'n soek sleutelwoord ingevoer nie. Vir 'n soektog wat alle sleutelwoorde bevat, skei die woorde deur middel van 'n spasie. Vir 'n soektog wat een van die sleutelwoorde bevat, skei die woorde deur middel van 'n komma. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Huidig is daar geen Bybels geïnstalleer nie. Gebruik asseblief die Invoer Gids om een of meer Bybels te installeer. No Bibles Available Geeb Bybels Beskikbaar nie Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Die skrifgedeelte verwysing is óf nie ondersteun deur OpenLP nie, of ongeldig. Maak asseblief seker dat die verwysing voldoen aan die volgende patrone of gaan die handleiding na: Boek Hoofstuk Boek Hoofstuk%(range)sHoofstuk⎠Boek Hoofstuk%(verse)sVers%(range)sVers⎠Boek Hoofstuk%(verse)sVers%(range)sVers%(list)sVers%(range)sVers⎠Boek Hoofstuk%(verse)sVers%(range)sVers%(list)sHoofstuk%(verse)sVers%(range)sVers⎠Boek Hoofstuk%(verse)sVers%(range)sHoofstuk%(verse)sVers BiblesPlugin.BiblesTab Verse Display Vers Vertoning Only show new chapter numbers Vertoon net nuwe hoofstuk nommers Bible theme: Bybel tema: No Brackets Geen Hakkies ( And ) ( En ) { And } { En } [ And ] [ En ] Note: Changes do not affect verses already in the service. Nota: Veranderinge affekteer nie verse wat reeds in die diens is nie. Display second Bible verses Vertoon tweede Bybel se verse Custom Scripture References Aangepasde Skrifgedeelte Verwysing Verse Separator: Vers Verdeler: Range Separator: Reeks Verdeler: List Separator: Lys Verdeler: End Mark: End Merk: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Veelvoudige alternatiewe vers verdelers mag gedefinieer word. Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. English Engels Default Bible Language Verstek Bybel Taal Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: Bible Language Bybel Taal Application Language Program Taal Show verse numbers Wys versnommers BiblesPlugin.BookNameDialog Select Book Name Selekteer Boek Naam Current name: Huidige naam: Corresponding name: Ooreenstemmende naam: Show Books From Wys Boeke Van Old Testament Ou Testament New Testament Nuwe Testament Apocrypha Apokriewe The following book name cannot be matched up internally. Please select the corresponding name from the list. Die volgende boek name kon nie intern gepas word nie. Kies asseblief die ooreenstemmende naam van die lys. BiblesPlugin.BookNameForm You need to select a book. Kies asseblief 'n boek. BiblesPlugin.CSVBible Importing books... %s Boek invoer... %s Importing verses... done. Vers invoer... voltooi. BiblesPlugin.EditBibleForm Bible Editor Bybel Redigeerder License Details Lisensie Besonderhede Version name: Weergawe naam: Copyright: Kopiereg: Permissions: Toestemming: Default Bible Language Verstek Bybel Taal Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: Global Settings Globale Instellings Bible Language Bybel Taal Application Language Program Taal English Engels This is a Web Download Bible. It is not possible to customize the Book Names. Hierdie is 'n Web Aflaai Bybel. Dit is nie moontlik om die Boek Name aan te pas nie. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Om eie boek name te gebruik, "Bybel taal" moet in die Meta Data blad gekies wees, of wanneer "Globale instellings" geselekteer is, op die Bybel bladsy OpenLP Instelling. BiblesPlugin.HTTPBible Registering Bible and loading books... Registreer Bybel en laai boeke... Registering Language... Taal registrasie... Importing %s... Importing <book name>... Voer %s in... Download Error Aflaai Fout There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie af te laai. Gaan die Internet konneksie na en as hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. Parse Error Ontleed Fout There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie te onttrek. As hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. BiblesPlugin.ImportWizardForm Bible Import Wizard Bybel Invoer Gids This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Hierdie gids sal u help om Bybels van 'n verskeidenheid formate in te voer. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies om in te voer. Web Download Web Aflaai Location: Ligging: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bybel: Download Options Aflaai Opsies Server: Bediener: Username: Gebruikersnaam: Password: Wagwoord: Proxy Server (Optional) Tussenganger Bediener (Opsioneel) License Details Lisensie Besonderhede Set up the Bible's license details. Stel hierdie Bybel se lisensie besonderhede op. Version name: Weergawe naam: Copyright: Kopiereg: Please wait while your Bible is imported. Wag asseblief terwyl u Bybel ingevoer word. You need to specify a file with books of the Bible to use in the import. 'n Lêer met boeke van die Bybel moet gespesifiseer word vir gebruik tydens die invoer. You need to specify a file of Bible verses to import. 'n Lêer met Bybel verse moet gespesifiseer word om in te voer. You need to specify a version name for your Bible. Dit is nodig dat 'n weergawe naam vir die Bybel gespesifiseer word. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 'n Kopiereg moet vir jou Bybel ingestel word. Bybels in die Publieke Domein moet sodanig gemerk word. Bible Exists Bybel Bestaan This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in, of wis eerstens die bestaande een uit. Your Bible import failed. Die Bybel invoer het misluk. CSV File KGW Lêer Bibleserver Bybelbediener Permissions: Toestemming: Bible file: Bybel lêer: Books file: Boeke lêer: Verses file: Verse lêer: Registering Bible... Bybel word geregistreer... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Geregistreer Bybel. Neem asseblief kennis dat verse sal afgelaai word op aanvraag en dus 'n internet-verbinding is nodig. Click to download bible list Klik om die Bybel lys tw aflaai Download bible list Aflaai Bybel lys Error during download Fout tydens aflaai An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language Kies 'n Taal OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is nie in staat om die taal van hierdie vertaling Bybel te bepaal nie. Kies asseblief die taal van die lys hieronder. Language: Taal: BiblesPlugin.LanguageForm You need to choose a language. Kies asseblief 'n taal. BiblesPlugin.MediaItem Quick Vinnig Find: Vind: Book: Boek: Chapter: Hoofstuk: Verse: Vers: From: Vanaf: To: Tot: Text Search Teks Soektog Second: Tweede: Scripture Reference Skrif Verwysing Toggle to keep or clear the previous results. Wissel om die vorige resultate te behou of te verwyder. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkel en dubbel Bybel-vers soek-resultate kan nie gekombineer word nie. Wis die resultate uit en begin 'n nuwe soektog? Bible not fully loaded. Die Bybel is nie ten volle gelaai nie. Information Informasie The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die tweede Bybel het nie al die verse wat in die hoof Bybel is nie. Slegs verse wat in beide Bybels voorkom, sal gewys word. %d verse is nie by die resultate ingesluit nie. Search Scripture Reference... Soek Skriflesing Verwysing... Search Text... Soek Teks... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Wis Bybel "%s" geheel en al vanaf OpenLP? Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. Advanced Gevorderd BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ongeldige Bybel lêer Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Kies 'n Rugsteun Ligging Bible Upgrade Wizard Bybel Opgradeer Gids This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Hierdie gids sal help om die bestaande Bybels vanaf 'n vorige weergawe van OpenLP 2.0 op te gradeer. Kliek die volgende knoppie hier-onder om die opgradeer proses te begin. Select Backup Directory Kies Rugsteun Ligging Please select a backup directory for your Bibles Kies asseblief 'n rugsteun liging vir die Bybels Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Vorige weergawes van OpenLP 2.0 is nie in staat om opgegradeerde Bybels te gebruik nie. Hierdie sal 'n rugsteun van die bestaande Bybels maak sodat indien dit nodig is om terug te gaan na 'n vorige weergawe van OpenLP, die Bybels net terug gekopiër kan word. Instruksies oor hoe om lêers te herstel kan gevind word by ons <a href="http://wiki.openlp.org/faq">Gereelde Vrae</a>. Please select a backup location for your Bibles. Kies asseblief 'n rugsteun ligging vir die Bybels. Backup Directory: Rugsteun Ligging: There is no need to backup my Bibles Dit is nie nodig om die Bybels op te gradeer nie Select Bibles Kies Bybels Please select the Bibles to upgrade Kies asseblief die Bybels om op te gradeer Upgrading Opgradeer Please wait while your Bibles are upgraded. Wag asseblief terwyl die Bybels opgradeer word. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Die rugsteun was nie suksesvol nie. Om die Bybels op te gradeer word skryf-toestemming benodig vir die gegewe lêer. Upgrading Bible %s of %s: "%s" Failed Opgradeer Bybel %s van %s: "%s" Gevaal Upgrading Bible %s of %s: "%s" Upgrading ... Opgradeer Bybel %s van %s: "%s" Opgradeer ... Download Error Aflaai Fout To upgrade your Web Bibles an Internet connection is required. Om die Web Bybels op te gradeer is 'n Internet verbinding nodig. Upgrading Bible %s of %s: "%s" Upgrading %s ... Opgradeer Bybel %s van %s: "%s" Opgradering %s... Upgrading Bible %s of %s: "%s" Complete Opgradeer Bybel %s van %s: "%s" Volledig , %s failed , %s het gevaal Upgrading Bible(s): %s successful%s Opgradeer Bybel(s): %s suksesvol %s Upgrade failed. Opgradeer het gevaal. You need to specify a backup directory for your Bibles. 'n Rugsteun Ligging moet vir die Bybels gespesifiseer word. Starting upgrade... Opgradering begin... There are no Bibles that need to be upgraded. Daar is geen Bybels wat opgradering benodig nie. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Aangepasde Skyfie Custom Slides name plural Aangepasde Skyfies Custom Slides container title Aangepasde Skyfies Load a new custom slide. Laai 'n nuwe aangepasde skyfie. Import a custom slide. Voer 'n aangepasde skyfie in. Add a new custom slide. Voeg 'n nuwe aangepasde skyfie by. Edit the selected custom slide. Redigeer die geselekteerde aangepasde skyfie. Delete the selected custom slide. Wis die geselekteerde aangepasde skyfie uit. Preview the selected custom slide. Skou die geselekteerde aangepasde skyfie. Send the selected custom slide live. Stuur die geselekteerde aangepasde skuifie regstreeks. Add the selected custom slide to the service. Voeg die geselekteerde aangepasde skyfie by die diens. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display Aangepasde Vertoning Display footer Vertoon voetspasie Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides Redigeer Aangepaste Skyfies &Title: &Titel: Add a new slide at bottom. Voeg nuwe skyfie by aan die onderkant. Edit the selected slide. Redigeer die geselekteerde skyfie. Edit all the slides at once. Redigeer al die skyfies tegelyk. Split a slide into two by inserting a slide splitter. Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. The&me: Te&ma: &Credits: &Krediete: You need to type in a title. 'n Titel word benodig. Ed&it All Red&igeer Alles Insert Slide Voeg 'n Skyfie in You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide Redigeer Skyfie CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het. Image name singular Beeld Images name plural Beelde Images container title Beelde Load a new image. Laai 'n nuwe beeld. Add a new image. Voeg 'n nuwe beeld by. Edit the selected image. Redigeer die geselekteerde beeld. Delete the selected image. Wis die geselekteerde beeld uit. Preview the selected image. Skou die geselekteerde beeld. Send the selected image live. Stuur die geselekteerde beeld regstreeks. Add the selected image to the service. Voeg die geselekteerde beeld by die diens. ImagePlugin.AddGroupForm Add group Parent group: Group name: You need to type in a group name. Could not add the new group. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Add images to group: No group Existing group New group ImagePlugin.ExceptionDialog Select Attachment Selekteer Aanhangsel ImagePlugin.MediaItem Select Image(s) Selekteer beeld(e) You must select an image to replace the background with. 'n Beeld wat die agtergrond vervang moet gekies word. Missing Image(s) Vermisde Beeld(e) The following image(s) no longer exist: %s Die volgende beeld(e) bestaan nie meer nie: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Die volgende beeld(e) bestaan nie meer nie: %s Voeg steeds die ander beelde by? There was a problem replacing your background, the image file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die beeld lêer "%s" bestaan ine meer nie. There was no display item to amend. Daar was geen vertoon item om by te voeg nie. -- Top-level group -- You must select an image or group to delete. Remove group Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Visuele agtergrond vir beelde met 'n aspek verhouding wat verskil met dié van die skerm. Media.player Audio Video VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video. Media name singular Media Media name plural Media Media container title Media Load new media. Laai nuwe media. Add new media. Voeg nuwe media by. Edit the selected media. Redigeer di geselekteerde media. Delete the selected media. Wis die giselekteerde media uit. Preview the selected media. Skou die geselekteerde media. Send the selected media live. Stuur die geselekteerde media regstreeks. Add the selected media to the service. Voeg die geselekteerde media by die diens. MediaPlugin.MediaClipSelector Select Media Clip Source Media path: Select drive from list Load disc Track Details Title: Titel: Audio track: Subtitle track: HH:mm:ss.z Clip Range Start point: Set start point Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Selekteer Media You must select a media file to delete. 'n Media lêer om uit te wis moet geselekteer word. You must select a media file to replace the background with. 'n Media lêer wat die agtergrond vervang moet gekies word. There was a problem replacing your background, the media file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die media lêer "%s" bestaan nie meer nie. Missing Media File Vermisde Media Lêer The file %s no longer exists. Die lêer %s bestaan nie meer nie. Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) There was no display item to amend. Daar was geen vertoon item om by te voeg nie. Unsupported File Lêer nie Ondersteun nie Use Player: Gebruik Speler: VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden Laat toe dat media speler oorheers word Start Live items automatically OPenLP.MainWindow &Projector Manager OpenLP Image Files Beeld Lêers Information Informasie Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bybel formaat het verander. Die bestaande Bybels moet opgradeer word. Moet OpenLP dit nou opgradeer? Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits Krediete License Lisensie build %s bou %s 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; version 2 of the License. Hierdie program is gratis sagteware, u kan dit herversprei en / of wysig onder die voorwaardes van die GNU General Public License, soos gepubliseer deur die Free Software Foundation; weergawe 2 van die lisensie. 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 below for more details. Hierdie program word versprei in die hoop dat dit nuttig sal wees, maar SONDER ENIGE WAARBORG; sonder die geïmpliseerde waarborg van VERHANDELBAARHEID of GESKIKTHEID VIR 'N SPESIFIEKE DOEL. Sien hieronder vir meer inligting. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is gratis kerklike aanbieding of liedere projeksie sagteware, wat gebruik word om skyfies van liedere, Bybel verse, videos, beelde en selfs aanbiedinge (as Impress, PowerPoint of PowerPoint Viewer geïnstalleer is) te vertoon deur gebruik te maak van 'n rekenaar en 'n data projektor. Vind meer uit aangaande OpenLP: http://openlp.org/ OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christelike sagteware wil sien, oorweeg dit asseblief om ook vrywillig te wees deur die knoppie hieronder te gebruik. Volunteer Vrywilliger Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings GK (UI) Verstellings Number of recent files to display: Hoeveelheid onlangse lêers om te vertoon: Remember active media manager tab on startup Onthou die laaste media bestuurder oortjie wanneer die program begin Double-click to send items straight to live Dubbel-kliek om die items regstreeks te stuur Expand new service items on creation Sit die nuwe diens items uit wanneer dit geskep word Enable application exit confirmation Stel die program in staat om die uitgang bevestiging te vertoon Mouse Cursor Muis Wyser Hide mouse cursor when over display window Steek die muis wyser weg wanneer dit oor die vertoon venster beweeg Default Image Verstek Beeld Background color: Agtergrond kleur: Image file: Beeld lêer: Open File Maak Lêer oop Advanced Gevorderd Preview items when clicked in Media Manager Skou items wanneer gekliek word in die Media Bestuurder Browse for an image file to display. Blaai vir 'n beeld lêer om te vertoon. Revert to the default OpenLP logo. Verander terug na die verstek OpenLP logo. Default Service Name Verstek Diens Naam Enable default service name Laat verstek diens naam toe Date and Time: Datum en Tyd: Monday Maandag Tuesday Dinsdag Wednesday Woensdag Friday Vrydag Saturday Saterdag Sunday Sondag Now Nou Time when usual service starts. Tyd wanneer gewone diens begin. Name: Naam: Consult the OpenLP manual for usage. Konsulteer die OpenLP handleiding vir gebruik. Revert to the default service name "%s". Herstel tot die verstek diens naam "%s". Example: Voorbeeld: Bypass X11 Window Manager Werk om X11 Venster Bestuurder Syntax error. Sintaks fout. Data Location Data Ligging Current path: Huidige pad: Custom path: Eie pad: Browse for new data file location. Blaai vir nuwe data lêer ligging. Set the data location to the default. Stel die data ligging na die verstek ligging. Cancel Kanselleer Cancel OpenLP data directory location change. Kanselleer OpenLP data lêer ligging verandering. Copy data to new location. Kopiër data na nuwe ligging. Copy the OpenLP data files to the new location. Kopiër die OpenLP data lêers na die nuwe ligging. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WAARSKUWING:</strong> Nuwe data lêer ligging bevat OpenLP data lêers. Hierdie lêers SAL vervang word gedurende kopiëring. Data Directory Error Data Lêer Fout Select Data Directory Location Selekteer Data Lêer Ligging Confirm Data Directory Change Bevestig Data Lêer Verandering Reset Data Directory Herstel Data Lêer Overwrite Existing Data Oorskryf Bestaande Data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data gids was nie gevind nie %s Hierdie data gids was voorheen verander vanaf die OpenLP verstek ligging. As die nuwe op verwyderbare media was, moet daardie media weer beskikbaar gemaak word. Kliek "Nee" om die laai van OpenLP te staak, en jou toe te laat om die probleem op te los. Kliek "Ja" om die data gids na die verstek ligging te herstel. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Verander die ligging van die OpenLP data gids sekerlik na: %s Die data gids sal verander word wanneer OpenLP toe gemaak word. Thursday Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Verander die OpenLP data lêer sekerlik na die verstek ligging toe? Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. OpenLP.ColorButton Click to select a color. Kliek om 'n kleur te kies. OpenLP.DB RGB Video Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred 'n Fout het opgeduik Send E-Mail Stuur E-pos Save to File Stoor na Lêer Attach File Heg 'n Lêer aan Description characters to enter : %s Beskrywende karakters om in te voer: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Platvorm: %s Save Crash Report Stoor Bots Verslag Text files (*.txt *.log *.text) Teks lêers (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Lêer Hernoem New File Name: Nuwe Lêer Naam: File Copy Lêer Kopieër OpenLP.FirstTimeLanguageForm Select Translation Kies Vertaling Choose the translation you'd like to use in OpenLP. Kies die taal wat gebruik moet word in OpenLP. Translation: Vertaling: OpenLP.FirstTimeWizard Songs Liedere First Time Wizard Eerste Keer Gids Welcome to the First Time Wizard Welkom by die Eerste Keer Gids Activate required Plugins Aktiveer nodige Miniprogramme Select the Plugins you wish to use. Kies die Miniprogramme wat gebruik moet word. Bible Bybel Images Beelde Presentations Aanbiedinge Media (Audio and Video) Media (Klank en Video) Allow remote access Laat afgeleë toegang toe Monitor Song Usage Monitor Lied-Gebruik Allow Alerts Laat Waarskuwings Toe Default Settings Verstek Instellings Downloading %s... Aflaai %s... Enabling selected plugins... Skakel geselekteerde miniprogramme aan... No Internet Connection Geen Internet Verbinding Unable to detect an Internet connection. Nie in staat om 'n Internet verbinding op te spoor nie. Sample Songs Voorbeeld Liedere Select and download public domain songs. Kies en laai liedere vanaf die publieke domein. Sample Bibles Voorbeeld Bybels Select and download free Bibles. Kies en laai gratis Bybels af. Sample Themes Voorbeeld Temas Select and download sample themes. Kies en laai voorbeeld temas af. Set up default settings to be used by OpenLP. Stel verstek instellings wat deur OpenLP gebruik moet word. Default output display: Verstek uitgaande vertoning: Select default theme: Kies verstek tema: Starting configuration process... Konfigurasie proses begin... Setting Up And Downloading Opstel en Afliaai Please wait while OpenLP is set up and your data is downloaded. Wag asseblief terwyl OpenLP opgestel en die data afgelaai word. Setting Up Opstel Custom Slides Aangepasde Skyfies Finish Eindig No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Geen Internet verbinding was gevind nie. Die Eerste Keer Gids benodig 'n Internet konneksie in orde om voorbeeld liedere, Bybels en temas af te laai. Kliek die Voltooi knoppie nou om OpenLP te begin met begin instellings en geen voorbeeld data nie. Om weer die Eerste Keer Gids te gebruik en hierdie voorbeeld data om 'n latere stadium in te voer, gaan jou Internet konneksie na en begin weer hierdie gids deur "Gereedskap/Eerste Keer Gids" vanaf OpenLP te begin. Download Error Aflaai Fout There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel Kanselleer Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Konfigureer Formattering Etiket Description Beskrywing Tag Etiket Start HTML Begin HTML End HTML Eindig HTML Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML hier> Validation Error Validerings Fout Description is missing Tag is missing Tag %s already defined. Etiket %s alreeds gedefinieër. Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Rooi Black Swart Blue Blou Yellow Geel Green Groen Pink Pienk Orange Oranje Purple Pers White Wit Superscript Bo-skrif Subscript Onder-skrif Paragraph Paragraaf Bold Vetdruk Italics Italiaans Underline Onderlyn Break Breek OpenLP.GeneralTab General Algemeen Monitors Monitors Select monitor for output display: Selekteer monitor vir uitgaande vertoning: Display if a single screen Vertoon as dit 'n enkel skerm is Application Startup Applikasie Aanskakel Show blank screen warning Vertoon leë skerm waarskuwing Automatically open the last service Maak vanself die laaste diens oop Show the splash screen Wys die spatsel skerm Application Settings Program Verstellings Prompt to save before starting a new service Vra om te stoor voordat 'n nuwe diens begin word Automatically preview next item in service Wys voorskou van volgende item in diens automaties sec sek CCLI Details CCLI Inligting SongSelect username: SongSelect gebruikersnaam: SongSelect password: SongSelect wagwoord: X X Y Y Height Hoogte Width Wydte Check for updates to OpenLP Kyk vir opdaterings van OpenLP Unblank display when adding new live item Verwyder blanko vertoning wanneer 'n nuwe regstreekse item bygevoeg word Timed slide interval: Tyd-gedrewe skyfie interval: Background Audio Agtergrond Oudio Start background audio paused Begin agtergrond oudio gestop Service Item Slide Limits Diens Item Skyfie Limiete Override display position: Oorheers vertoon ligging: Repeat track list Herhaal snit lys Behavior of next/previous on the last/first slide: Gedrag van die vorige/volgende op die laaste/eerste skyfie: &Remain on Slide &Bly op Skyfie &Wrap around Omvou &Move to next/previous service item Beweeg na volgende/vorige diens ite&m OpenLP.LanguageManager Language Taal Please restart OpenLP to use your new language setting. Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. OpenLP.MainDisplay OpenLP Display OpenLP Vertooning OpenLP.MainWindow &File &Lêer &Import &Invoer &Export Uitvo&er &View &Bekyk M&ode M&odus &Tools &Gereedskap &Settings Ver&stellings &Language Taa&l &Help &Hulp Service Manager Diens Bestuurder Theme Manager Tema Bestuurder Open an existing service. Maak 'n bestaande diens oop. Save the current service to disk. Stoor die huidige diens na skyf. Save Service As Stoor Diens As Save the current service under a new name. Stoor die huidige diens onder 'n nuwe naam. E&xit &Uitgang Quit OpenLP Sluit OpenLP Af &Theme &Tema &Configure OpenLP... &Konfigureer OpenLP... &Media Manager &Media Bestuurder Toggle Media Manager Wissel Media Bestuurder Toggle the visibility of the media manager. Wissel sigbaarheid van die media bestuurder. &Theme Manager &Tema Bestuurder Toggle Theme Manager Wissel Tema Bestuurder Toggle the visibility of the theme manager. Wissel sigbaarheid van die tema bestuurder. &Service Manager &Diens Bestuurder Toggle Service Manager Wissel Diens Bestuurder Toggle the visibility of the service manager. Wissel sigbaarheid van die diens bestuurder. &Preview Panel Voorskou &Paneel Toggle Preview Panel Wissel Voorskou Paneel Toggle the visibility of the preview panel. Wissel sigbaarheid van die voorskou paneel. &Live Panel Regstreekse Panee&l Toggle Live Panel Wissel Regstreekse Paneel Toggle the visibility of the live panel. Wissel sigbaarheid van die regstreekse paneel. List the Plugins Lys die Mini-programme &User Guide Gebr&uikers Gids &About &Aangaande More information about OpenLP Meer inligting aangaande OpenLP &Online Help &Aanlyn Hulp &Web Site &Web Tuiste Use the system language, if available. Gebruik die sisteem se taal as dit beskikbaar is. Set the interface language to %s Verstel die koppelvlak taal na %s Add &Tool... Voeg Gereedskaps&tuk by... Add an application to the list of tools. Voeg 'n applikasie by die lys van gereedskapstukke. &Default &Verstek Set the view mode back to the default. Verstel skou modus terug na verstek modus. &Setup Op&stel Set the view mode to Setup. Verstel die skou modus na Opstel modus. &Live &Regstreeks Set the view mode to Live. Verstel die skou modus na Regstreeks. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Weergawe %s van OpenLP is nou beskikbaar vir aflaai (tans word weergawe %s gebruik). Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. OpenLP Version Updated OpenLP Weergawe is Opdateer OpenLP Main Display Blanked OpenLP Hoof Vertoning Blanko The Main Display has been blanked out Die Hoof Skerm is afgeskakel Default Theme: %s Verstek Tema: %s English Please add the name of your language here Engels Configure &Shortcuts... Konfigureer Kor&tpaaie... Open &Data Folder... Maak &Data Lêer oop... Open the folder where songs, bibles and other data resides. Maak die lêer waar liedere, bybels en ander data is, oop. &Autodetect Spoor outom&aties op Update Theme Images Opdateer Tema Beelde Update the preview images for all themes. Opdateer die voorskou beelde vir alle temas. Print the current service. Druk die huidige diens. L&ock Panels Sl&uit Panele Prevent the panels being moved. Voorkom dat die panele rondgeskuif word. Re-run First Time Wizard Her-gebruik Eerste Keer Gids Re-run the First Time Wizard, importing songs, Bibles and themes. Her-gebruik die Eerste Keer Gids om liedere, Bybels en tema's in te voer. Re-run First Time Wizard? Her-gebruik Eerste Keer Gids? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Is u seker u wil weer die Eerste-ker Gids gebruik? Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasie aanbring en kan moontlik liedere byvoeg by die bestaande liedere lys en kan ook die verstek tema verander. Clear List Clear List of recent files Maak Lys Skoon Clear the list of recent files. Maak die lys van onlangse lêers skoon. Configure &Formatting Tags... Konfigureer &Formattering Etikette... Export OpenLP settings to a specified *.config file Voer OpenLP verstellings uit na 'n spesifieke *.config lêer Settings Instellings Import OpenLP settings from a specified *.config file previously exported on this or another machine Voer OpenLP verstellings in vanaf 'n gespesifiseerde *.config lêer wat voorheen op hierdie of 'n ander masjien uitgevoer is Import settings? Voer verstellings in? Open File Maak Lêer oop OpenLP Export Settings Files (*.conf) OpenLP Uitvoer Verstelling Lêers (*.conf) Import settings Voer verstellings in OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sal nou toe maak. Ingevoerde verstellings sal toegepas word die volgende keer as OpenLP begin word. Export Settings File Voer Verstellings Lêer Uit OpenLP Export Settings File (*.conf) OpenLP Uitvoer Verstellings Lêer (*.conf) New Data Directory Error Nuwe Data Lêer Fout Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP data word na 'n nuwe data gids - %s - gekopiër. Wag asseblief totdat dit voltooi is. OpenLP Data directory copy failed %s Kopiëring van OpenLP Data gids het gevaal %s General Algemeen Library Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error Databasis Fout The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Die databasis wat gelaai is, was geskep in 'n meer onlangse weergawe van OpenLP. Die databasis is weergawe %d, terwyl OpenLP weergawe %d verwag. Die databasis sal nie gelaai word nie. Databasis: %s OpenLP cannot load your database. Database: %s OpenLP kan nie die databasis laai nie. Databasis: %s OpenLP.MediaManagerItem No Items Selected Geen items geselekteer nie &Add to selected Service Item &Voeg by die geselekteerde Diens item You must select one or more items to preview. Kies een of meer items vir die voorskou. You must select one or more items to send live. Kies een of meer items vir regstreekse uitsending. You must select one or more items. Kies een of meer items. You must select an existing service item to add to. 'n Bestaande diens item moet geselekteer word om by by te voeg. Invalid Service Item Ongeldige Diens Item You must select a %s service item. Kies 'n %s diens item. You must select one or more items to add. Kies een of meer items om by te voeg. No Search Results Geen Soek Resultate Invalid File Type Ongeldige Lêer Tipe Invalid File %s. Suffix not supported Ongeldige Lêer %s. Agtervoegsel nie ondersteun nie &Clone &Kloon Duplicate files were found on import and were ignored. Duplikaat lêers gevind tydens invoer en is geïgnoreer. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> etiket is vermis. <verse> tag is missing. <verse> etiket is vermis. OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Available Media Players Beskikbare Media Spelers Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (onbeskikbaar) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details Mini-program Besonderhede Status: Status: Active Aktief Inactive Onaktief %s (Inactive) %s (Onaktief) %s (Active) %s (Aktief) %s (Disabled) %s (Onaktief) Manage Plugins OpenLP.PrintServiceDialog Fit Page Pas Blaai Fit Width Pas Wydte OpenLP.PrintServiceForm Options Opsies Copy Kopieër Copy as HTML Kopieër as HTML Zoom In Zoom In Zoom Out Zoem Uit Zoom Original Zoem Oorspronklike Other Options Ander Opsies Include slide text if available Sluit skyfie teks in indien beskikbaar Include service item notes Sluit diens item notas in Include play length of media items Sluit die speel tyd van die media items in Add page break before each text item Voeg 'n bladsy-breking voor elke teks item Service Sheet Diens Blad Print Druk Title: Titel: Custom Footer Text: Verpersoonlike Voetskrif Teks: OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes Notas Database Error Databasis Fout There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port Poort Notes Notas Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other Ander OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen Skerm primary primêr OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Begin</strong>: %s <strong>Length</strong>: %s <strong>Durasie</strong>: %s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Hergroepeer Diens Item OpenLP.ServiceManager Move to &top Skuif boon&toe Move item to the top of the service. Skuif item tot heel bo in die diens. Move &up Sk&uif op Move item up one position in the service. Skuif item een posisie boontoe in die diens. Move &down Skuif &af Move item down one position in the service. Skuif item een posisie af in die diens. Move to &bottom Skuif &tot heel onder Move item to the end of the service. Skuif item tot aan die einde van die diens. &Delete From Service Wis uit vanaf die &Diens Delete the selected item from the service. Wis geselekteerde item van die diens af. &Add New Item &Voeg Nuwe Item By &Add to Selected Item &Voeg by Geselekteerde Item &Edit Item R&edigeer Item &Reorder Item Ve&rander Item orde &Notes &Notas &Change Item Theme &Verander Item Tema File is not a valid service. Lêer is nie 'n geldige diens nie. Missing Display Handler Vermisde Vertoon Hanteerder Your item cannot be displayed as there is no handler to display it Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie Your item cannot be displayed as the plugin required to display it is missing or inactive Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is &Expand all Br&ei alles uit Expand all the service items. Brei al die diens items uit. &Collapse all Sto&rt alles ineen Collapse all the service items. Stort al die diens items ineen. Open File Maak Lêer oop Moves the selection down the window. Skuif die geselekteerde afwaarts in die venster. Move up Skuif op Moves the selection up the window. Skuif die geselekteerde opwaarts in die venster. Go Live Gaan Regstreeks Send the selected item to Live. Stuur die geselekteerde item Regstreeks. &Start Time &Begin Tyd Show &Preview Wys &Voorskou Modified Service Redigeer Diens The current service has been modified. Would you like to save this service? Die huidige diens was verander. Stoor hierdie diens? Custom Service Notes: Aangepasde Diens Notas: Notes: Notas: Playing time: Speel tyd: Untitled Service Ongetitelde Diens File could not be opened because it is corrupt. Lêer kon nie oopgemaak word nie omdat dit korrup is. Empty File Leë Lêer This service file does not contain any data. Die diens lêer het geen data inhoud nie. Corrupt File Korrupte Lêer Load an existing service. Laai 'n bestaande diens. Save this service. Stoor die diens. Select a theme for the service. Kies 'n tema vir die diens. Slide theme Skyfie tema Notes Notas Edit Redigeer Service copy only Slegs diens kopie. Error Saving File Fout gedurende Lêer Stooring There was an error saving your file. Daar was 'n probleem om die lêer te stoor. Service File(s) Missing Diens Lêer(s) Vermis &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. Vertraging tussen skyfies in sekondes. Rename item title Title: Titel: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Diens Item Notas OpenLP.SettingsForm Configure OpenLP Konfigureer OpenLP OpenLP.ShortcutListDialog Action Aksie Shortcut Kortpad Duplicate Shortcut Duplikaat Kortpad The shortcut "%s" is already assigned to another action, please use a different shortcut. Die kortpad "%s" is alreeds toegeken aan 'n ander aksie, kies asseblief 'n ander kortpad. Alternate Alternatief Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Kies 'n aksie en kliek een van die knoppies hieronder om 'n primêre of alternatiewe kortpad vas te vang. Default Verstek Custom Aanpasing Capture shortcut. Vang kortpad. Restore the default shortcut of this action. Stel die verstek kortpad terug vir hierdie aksie. Restore Default Shortcuts Herstel Verstek Kortpaaie Do you want to restore all shortcuts to their defaults? Herstel alle kortpaaie na hul verstek waarde? Configure Shortcuts Konfigureer Kortpaaie OpenLP.SlideController Hide Verskuil Go To Gaan Na Blank Screen Blanko Skerm Blank to Theme Blanko na Tema Show Desktop Wys Werkskerm Previous Service Vorige Diens Next Service Volgende Diens Escape Item Ontsnap Item Move to previous. Skuif terug. Move to next. Skuif volgende. Play Slides Speel Skyfies Delay between slides in seconds. Vertraging tussen skyfies in sekondes. Move to live. Skuif na regstreeks. Add to Service. Voeg by Diens. Edit and reload song preview. Redigeer en herlaai lied voorskou. Start playing media. Begin media speel. Pause audio. Stop oudio. Pause playing media. Halt spelende media. Stop playing media. Stop spelende media. Video position. Video posisie. Audio Volume. Oudio Volume. Go to "Verse" Gaan na "Vers" Go to "Chorus" Gaan na "Koor" Go to "Bridge" Gaan na "Brug" Go to "Pre-Chorus" Gaan na "Pre-Koor" Go to "Intro" Gaan na "Inleiding" Go to "Ending" Gaan na "Einde" Go to "Other" Gaan na "Ander" Previous Slide Vorige Skyfie Next Slide Volgende Skyfie Pause Audio Hou Oudio Background Audio Agtergrond Oudio Go to next audio track. Gaan na die volgende oudio snit. Tracks Snitte OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Spelling Voorstelle Formatting Tags Uitleg Hakkies Language: Taal: OpenLP.StartTimeForm Theme Layout Tema Uitleg The blue box shows the main area. Die blou boks wys die hoof area. The red box shows the footer. Die rooi boks wys die voet area. OpenLP.StartTime_form Item Start and Finish Time Item Begin en End Tyd Hours: Ure: Minutes: Minute: Seconds: Sekondes: Start Begin Finish Eindig Length Lengte Time Validation Error Tyd Validasie Fout Finish time is set after the end of the media item End tyd is na die einde van die media item gestel Start time is after the finish time of the media item Begin tyd is na die eind tyd van die media item OpenLP.ThemeForm (approximately %d lines per slide) (ongeveer %d lyne per skyfie) OpenLP.ThemeManager Create a new theme. Skep 'n nuwe tema. Edit Theme Redigeer Tema Edit a theme. Redigeer 'n tema. Delete Theme Wis Tema Uit Delete a theme. Wis 'n tema uit. Import Theme Voer Tema In Import a theme. Voer 'n tema in. Export Theme Voer Tema Uit Export a theme. Voer 'n tema uit. &Edit Theme R&edigeer Tema &Delete Theme &Wis Tema uit Set As &Global Default Stel in As &Globale Standaard %s (default) %s (standaard) You must select a theme to edit. Kies 'n tema om te redigeer. You are unable to delete the default theme. Die standaard tema kan nie uitgewis word nie. You have not selected a theme. Geen tema is geselekteer nie. Save Theme - (%s) Stoor Tema - (%s) Theme Exported Tema Uitvoer Your theme has been successfully exported. Die tema was suksesvol uitgevoer. Theme Export Failed Tema Uitvoer het Misluk Select Theme Import File Kies Tema Invoer Lêer File is not a valid theme. Lêer is nie 'n geldige tema nie. &Copy Theme &Kopieër Tema &Rename Theme He&rnoem Tema &Export Theme Vo&er Tema uit You must select a theme to rename. Kies 'n tema om te hernoem. Rename Confirmation Hernoem Bevestiging Rename %s theme? Hernoem %s tema? You must select a theme to delete. Kies 'n tema om uit te wis. Delete Confirmation Uitwis Bevestiging Delete %s theme? Wis %s tema uit? Validation Error Validerings Fout A theme with this name already exists. 'n Tema met hierdie naam bestaan alreeds. Copy of %s Copy of <theme name> Duplikaat van %s Theme Already Exists Tema Bestaan Reeds Theme %s already exists. Do you want to replace it? Tema %s bestaan alreeds. Wil jy dit vervang? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Tema Gids Welcome to the Theme Wizard Welkom by die Tema Gids Set Up Background Stel die Agtergrond Op Set up your theme's background according to the parameters below. Stel jou tema se agtergrond op volgens die parameters hier onder. Background type: Agtergrond tipe: Gradient Gradiënt Gradient: Gradiënt: Horizontal Horisontaal Vertical Vertikaal Circular Sirkelvormig Top Left - Bottom Right Links Bo - Regs Onder Bottom Left - Top Right Links Onder - Regs Bo Main Area Font Details Hoof Area Skrif Gegewens Define the font and display characteristics for the Display text Definieër die skrif en vertoon karrakters vir die Vertoon teks Font: Skrif: Size: Grootte: Line Spacing: Lyn Spasiëring: &Outline: &Buitelyn: &Shadow: &Skaduwee: Bold Vetdruk Italic Italiaans Footer Area Font Details Voetskrif Area Skrif Gegewens Define the font and display characteristics for the Footer text Definieër die skrif en vertoon karraktereienskappe vir die Voetskrif teks Text Formatting Details Teks Formattering Gegewens Allows additional display formatting information to be defined Laat toe dat addisionele vertoon formattering inligting gedifinieër word Horizontal Align: Horisontale Sporing: Left Links Right Regs Center Middel Output Area Locations Uitvoer Area Liggings &Main Area &Hoof Area &Use default location Gebr&uik verstek ligging X position: X posisie: px px Y position: Y posisie: Width: Wydte: Height: Hoogte: Use default location Gebruik verstek ligging Theme name: Tema naam: Edit Theme - %s Redigeer Tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Hierdie gids sal help om temas te skep en te redigeer. Klik die volgende knoppie hieronder om die proses te begin deur jou agtergrond op te stel. Transitions: Oorskakel effekte: &Footer Area &Voetskrif Area Starting color: Begin Kleur: Ending color: Eind Kleur: Background color: Agtergrond kleur: Justify Uitsgespan Layout Preview Uitleg Voorskou Transparent Deurskynend Preview and Save Skou en Stoor Preview the theme and save it. Skou die tema en stoor dit. Background Image Empty Leë Agtergrond Beeld Select Image Selekteer Beeld Theme Name Missing Tema Naam Vermis There is no name for this theme. Please enter one. Daar is geen naam vir hierdie tema nie. Voer asseblief een in. Theme Name Invalid Tema Naam Ongeldig Invalid theme name. Please enter one. Ongeldige tema naam. Voer asseblief een in. Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. 'n Agtergrond beeld is nie gekies nie. Kies asseblief een voor jy aangaan. OpenLP.ThemesTab Global Theme Globale Tema Theme Level Tema Vlak S&ong Level Lied Vl&ak Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. &Service Level Dien&s Vlak Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. &Global Level &Globale Vlak Use the global theme, overriding any themes associated with either the service or the songs. Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. Themes Temas Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. Wis die geselekteerde item uit. Move selection up one position. Skuif die seleksie een posisie op. Move selection down one position. Skuif die seleksie een posisie af. &Vertical Align: &Vertikale Sporing: Finished import. Invoer voltooi. Format: Formaat: Importing Invoer Importing "%s"... "%s" ingevoer... Select Import Source Selekteer Invoer Bron Select the import format and the location to import from. Selekteer die invoer vormaat en die ligging vanwaar invoer geskied. Open %s File Maak %s Lêer Oop %p% %p% Ready. Gereed. Starting import... Invoer begin... You need to specify at least one %s file to import from. A file type e.g. OpenSong Spesifiseer ten minste een %s lêer om vanaf in te voer. Welcome to the Bible Import Wizard Welkom by die Bybel Invoer Gids Welcome to the Song Export Wizard Welkom by die Lied Uitvoer Gids Welcome to the Song Import Wizard Welkom by die Lied Invoer Gids Author Singular Outeur Authors Plural Outeure © Copyright symbol. © Song Maintenance Lied Onderhoud Topic Singular Onderwerp Topics Plural Onderwerpe Title and/or verses not found Titel en/of verse nie gevind XML syntax error XML sintaks fout Welcome to the Bible Upgrade Wizard Welkom by die Bybel Opgradeer Gids Open %s Folder Maak %s Gids Oop You need to specify one %s file to import from. A file type e.g. OpenSong Een %s lêer moet gespesifiseer word om vanaf in te voer. You need to specify one %s folder to import from. A song format e.g. PowerSong Een %s gids moet gespesifiseer word om vanaf in te voer. Importing Songs Voer Liedere In Welcome to the Duplicate Song Removal Wizard Written by Author Unknown About Aangaande &Add &Voeg by Add group Advanced Gevorderd All Files Alle Lêers Automatic Automaties Background Color Agtergrond Kleur Bottom Onder Browse... Deursoek... Cancel Kanselleer CCLI number: CCLI nommer: Create a new service. Skep 'n nuwe diens. Confirm Delete Bevesting Uitwissing Continuous Aaneen-lopend Default Verstek Default Color: Verstek Kleur: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Diens %Y-%m-%d %H-%M &Delete &Wis Uit Display style: Vertoon styl: Duplicate Error Dupliseer Fout &Edit R&edigeer Empty Field Leë Veld Error Fout Export Uitvoer File Lêer File Not Found Lêer nie gevind nie File %s not found. Please try selecting it individually. Lêer %s nie gevind nie. Probeer asseblief om dit individueel te kies. pt Abbreviated font pointsize unit pt Help Hulp h The abbreviated unit for hours h Invalid Folder Selected Singular Ongeldige Gids Geselekteer Invalid File Selected Singular Ongeldige Lêer Geselekteer Invalid Files Selected Plural Ongeldige Lêer Geselekteer Image Beeld Import Voer in Layout style: Uitleg styl: Live Regstreeks Live Background Error Regstreekse Agtergrond Fout Live Toolbar Regstreekse Gereedskapsbalk Load Laai Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes m Middle Middel New Nuwe New Service Nuwe Diens New Theme Nuwe Tema Next Track Volgende Snit No Folder Selected Singular Geen Gids Geselekteer nie No File Selected Singular Geen Lêer Geselekteer nie No Files Selected Plural Geen Leêrs Geselekteer nie No Item Selected Singular Geen Item Geselekteer nie No Items Selected Plural Geen items geselekteer nie OpenLP is already running. Do you wish to continue? OpenLP is reeds ana die gang. Gaan voort? Open service. Maak 'n diens oop. Play Slides in Loop Speel Skyfies in Herhaling Play Slides to End Speel Skyfies tot Einde Preview Voorskou Print Service Druk Diens uit Projector Singular Projectors Plural Replace Background Vervang Agtergrond Replace live background. Vervang regstreekse agtergrond. Reset Background Herstel Agtergrond Reset live background. Herstel regstreekse agtergrond. s The abbreviated unit for seconds s Save && Preview Stoor && Voorskou Search Soek Search Themes... Search bar place holder text Soek Temas... You must select an item to delete. Kies 'n item om uit te wis. You must select an item to edit. Selekteer 'n item om te regideer. Settings Instellings Save Service Stoor Diens Service Diens Optional &Split Op&sionele Verdeling Split a slide into two only if it does not fit on the screen as one slide. Verdeel 'n skyfie slegs in twee wanneer dit nie op die skerm as 'n enkele skyfie sal pas nie. Start %s Begin %s Stop Play Slides in Loop Staak Skyfies in Herhaling Stop Play Slides to End Staak Skyfies tot Einde Theme Singular Tema Themes Plural Temas Tools Gereedskap Top Bo Unsupported File Lêer nie Ondersteun nie Verse Per Slide Vers Per Skyfie Verse Per Line Vers Per Lyn Version Weergawe View Vertoon View Mode Vertoon Modus CCLI song number: Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys. Presentation name singular Aanbieding Presentations name plural Aanbiedinge Presentations container title Aanbiedinge Load a new presentation. Laai 'n nuwe aanbieding. Delete the selected presentation. Wis die geselekteerde aanbieding uit. Preview the selected presentation. Skou die geselekteerde aanbieding. Send the selected presentation live. Stuur die geselekteerde aanbieding regstreeks. Add the selected presentation to the service. Voeg die geselekteerde aanabieding by die diens. PresentationPlugin.MediaItem Select Presentation(s) Selekteer Aanbieding(e) Automatic Automaties Present using: Bied aan met: File Exists Lêer Bestaan Reeds A presentation with that filename already exists. 'n Aanbieding met daardie lêernaam bestaan reeds. This type of presentation is not supported. Hierdie tipe aanbieding word nie ondersteun nie. Presentations (%s) Aanbiedinge (%s) Missing Presentation Vermisde Aanbieding The presentation %s is incomplete, please reload. Die aanbieding %s is onvolledig, herlaai asseblief. The presentation %s no longer exists. Die aanbieding %s bestaan nie meer nie. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Beskikbare Beheerders %s (unavailable) %s (onbeskikbaar) Allow presentation application to be overridden Laat toe dat die program oorheers word PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API). Remote name singular Afstandbeheer Remotes name plural Afstandbehere Remote container title Afstandbeheer Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager Diens Bestuurder Slide Controller Skyfie Beheerder Alerts Waarskuwings Search Soek Home Tuis Refresh Verfris Blank Blanko Theme Tema Desktop Werkskerm Show Wys Prev Vorige Next Volgende Text Teks Show Alert Wys Waarskuwing Go Live Gaan Regstreeks Add to Service Voeg by Diens Add &amp; Go to Service Voeg by &amp; Gaan na Diens No Results Geen Resultate Options Opsies Service Diens Slides Skyfies Settings Instellings Remote Afstandbeheer Stage View Live View RemotePlugin.RemoteTab Serve on IP address: Bedien op hierdie IP adres: Port number: Poort nommer: Server Settings Bediener Verstellings Remote URL: Afgeleë URL: Stage view URL: Verhoog vertoning URL: Display stage time in 12h format Vertoon verhoog tyd in 12 uur formaat Android App Android Program Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: Wagwoord: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Volg Lied Gebruik &Delete Tracking Data Wis Volg &Data Uit Delete song usage data up to a specified date. Wis lied volg data uit tot en met 'n spesifieke datum. &Extract Tracking Data Onttr&ek Volg Data Generate a report on song usage. Genereer 'n verslag oor lied-gebruik. Toggle Tracking Wissel Volging Toggle the tracking of song usage. Wissel lied-gebruik volging. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste. SongUsage name singular Lied Gebruik SongUsage name plural Lied Gebruik SongUsage container title Lied Gebruik Song Usage Lied Gebruik Song usage tracking is active. Lied gebruik volging is aktief. Song usage tracking is inactive. Lied gebruik volging is onaktief. display vertoon printed gedruk SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Wis Lied Gebruik Data Uit Delete Selected Song Usage Events? Wis Geselekteerde Lied Gebruik Gebeure uit? Are you sure you want to delete selected Song Usage data? Wis regtig die geselekteerde Diens Gebruik data uit? Deletion Successful Uitwissing Suksesvol Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Diens Gebruik Ontrekking Select Date Range Selekteer Datum Grense to tot Report Location Rapporteer Ligging Output File Location Uitvoer Lêer Ligging usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Verslag Skepping Report %s has been successfully created. Verslag %s was suksesvol geskep. Output Path Not Selected Skryf Ligging Nie Gekies Nie You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song &Lied Import songs using the import wizard. Voer liedere in deur van die invoer helper gebruik te maak. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur. &Re-index Songs He&r-indeks Liedere Re-index the songs database to improve searching and ordering. Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter. Reindexing songs... Besig om liedere indek te herskep... Arabic (CP-1256) Arabies (CP-1256) Baltic (CP-1257) Balties (CP-1257) Central European (CP-1250) Sentraal Europees (CP-1250) Cyrillic (CP-1251) Cyrillies (CP-1251) Greek (CP-1253) Grieks (CP-1253) Hebrew (CP-1255) Hebreeus (CP-1255) Japanese (CP-932) Japanees (CP-932) Korean (CP-949) Koreaans (CP-949) Simplified Chinese (CP-936) Vereenvoudigde Chinees (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Tradisionele Chinees (CP-950) Turkish (CP-1254) Turks (CP-1254) Vietnam (CP-1258) Viëtnamees (CP-1258) Western European (CP-1252) Wes-Europees (CP-1252) Character Encoding Karrakter Enkodering The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Die kodeblad instelling is verantwoordelik vir die korrekte karrakter voorstelling. Gewoonlik is die reeds-geselekteerde keuse voldoende. Please choose the character encoding. The encoding is responsible for the correct character representation. Kies asseblief die karrakter enkodering. Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. Song name singular Lied Songs name plural Liedere Songs container title Liedere Exports songs using the export wizard. Voer liedere uit deur gebruik te maak van die uitvoer gids. Add a new song. Voeg 'n nuwe lied by. Edit the selected song. Redigeer die geselekteerde lied. Delete the selected song. Wis die geselekteerde lied uit. Preview the selected song. Skou die geselekteerde lied. Send the selected song live. Stuur die geselekteerde lied regstreeks. Add the selected song to the service. Voeg die geselekteerde lied by die diens. Reindexing songs Her-indekseer liedere CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song SongsPlugin.AuthorsForm Author Maintenance Outeur Onderhoud Display name: Vertoon naam: First name: Voornaam: Last name: Van: You need to type in the first name of the author. U moet die naam van die skrywer invul. You need to type in the last name of the author. U moet ten minste die skrywer se naam invoer. You have not set a display name for the author, combine the first and last names? 'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word? SongsPlugin.CCLIFileImport The file does not have a valid extension. Die lêer het nie 'n geldige verlening nie. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Toegedien deur %s "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Eie Boek Name SongsPlugin.EditSongForm Song Editor Lied Redigeerder &Title: &Titel: Alt&ernate title: Alt&ernatiewe titel: &Lyrics: &Lirieke: &Verse order: &Vers orde: Ed&it All Red&igeer Alles Title && Lyrics Titel && Lirieke &Add to Song &Voeg by Lied &Remove Ve&rwyder A&dd to Song Voeg by Lie&d R&emove V&erwyder New &Theme Nuwe &Tema Copyright Information Kopiereg Informasie Comments Kommentaar Theme, Copyright Info && Comments Tema, Kopiereg Informasie && Kommentaar Add Author Voeg Skrywer By This author does not exist, do you want to add them? Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word? This author is already in the list. Hierdie skrywer is alreeds in die lys. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg. Add Topic Voeg Onderwerp by This topic does not exist, do you want to add it? Die onderwerp bestaan nie. Voeg dit by? This topic is already in the list. Die onderwerp is reeds in die lys. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg. You need to type in a song title. Tik 'n lied titel in. You need to type in at least one verse. Ten minste een vers moet ingevoer word. You need to have an author for this song. Daar word 'n outeur benodig vir hierdie lied. Linked Audio Geskakelde Oudio Add &File(s) &Voeg Leêr(s) By Add &Media Voeg &Media By Remove &All Verwyder &Alles Open File(s) Maak Lêer(s) Oop <strong>Warning:</strong> Not all of the verses are in use. <strong>Waarskuwing:</strong> Nie al die verse is in gebruik nie. <strong>Warning:</strong> You have not entered a verse order. <strong>Waarskuwing:</strong>'n Vers orde is nie ingevoer nie. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Redigeer Vers &Verse type: &Vers tipe: &Insert Sit Tussen-&in Split a slide into two by inserting a verse splitter. Verdeel 'n skyfie in twee deur 'n vers-verdeler in te sit. SongsPlugin.ExportWizardForm Song Export Wizard Lied Uitvoer Gids Select Songs Kies Liedere Check the songs you want to export. Merk die liediere wat uitgevoer moet vord. Uncheck All Merk Alles Af Check All Merk Alles Aan Select Directory Kies Lêer-gids Directory: Lêer Gids: Exporting Uitvoer Please wait while your songs are exported. Wag asseblief terwyl die liedere uitgevoer word. You need to add at least one Song to export. Ten minste een lied moet bygevoeg word om uit te voer. No Save Location specified Geen Stoor Ligging gespesifiseer nie Starting export... Uitvoer begin... You need to specify a directory. 'n Lêer gids moet gespesifiseer word. Select Destination Folder Kies Bestemming Lêer gids Select the directory where you want the songs to be saved. Kies die gids waar die liedere gestoor moet word. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ongeldige Foilpresenter lied lêer. Geen verse gevin die. SongsPlugin.GeneralTab Enable search as you type Bekragtig soek soos getik word SongsPlugin.ImportWizardForm Select Document/Presentation Files Selekteer Dokument/Aanbieding Lêers Song Import Wizard Lied Invoer Gids This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. Generic Document/Presentation Generiese Dokumentasie/Aanbieding Add Files... Voeg Lêers by... Remove File(s) Verwyder Lêer(s) Please wait while your songs are imported. Wag asseblief terwyl die liedere ingevoer word. Words Of Worship Song Files Words Of Worship Lied Lêers Songs Of Fellowship Song Files Songs Of Fellowship Lied Lêers SongBeamer Files SongBeamer Lêers SongShow Plus Song Files SongShow Plus Lied Lêers Foilpresenter Song Files Foilpresenter Lied Lêers Copy Kopieër Save to File Stoor na Lêer The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. OpenLyrics Files OpenLyrics Lêers CCLI SongSelect Files CCLI SongSelect Lêers EasySlides XML File EeasySlides XML Lêer EasyWorship Song Database EasyWorship Lied Databasis DreamBeam Song Files DreamBeam Lied Lêers You need to specify a valid PowerSong 1.0 database folder. 'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>. SundayPlus Song Files SundayPlus Lied Leêrs This importer has been disabled. Hierdie invoerder is onaktief gestel. MediaShout Database MediaShout Databasis The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Die MediaShout invoerder word slegs ondersteun op Windows. Dit is vanweë 'n vermiste Python module, gedeaktiveer. As jy hierdie invoerder wil gebruik, sal jy die "pyodbc" module moet installeer. SongPro Text Files SongPro Teks Leêrs SongPro (Export File) SongPro (Voer Leêr uit) In SongPro, export your songs using the File -> Export menu In SongPro, voer liedere uit deur middel van die Leêr -> Uitvoer spyskaart EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Selekteer Media Lêer(s) Select one or more audio files from the list below, and click OK to import them into this song. Selekteer een of meer oudio lêers van die lys hieronder, en kliek OK om hulle na hierdie lied in te voer. SongsPlugin.MediaItem Titles Titels Lyrics Lirieke CCLI License: CCLI Lisensie: Entire Song Volledige Lied Maintain the lists of authors, topics and books. Onderhou die lys van skrywers, onderwerpe en boeke. copy For song cloning kopieër Search Titles... Soek Titels... Search Entire Song... Soek deur hele Lied... Search Lyrics... Soek Lirieke... Search Authors... Soek Outeure... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Die MediaShout databasis kan nie oopgemaak word nie. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Uitvoer "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. Geen liedere om in te voer nie. Verses not found. Missing "PART" header. Verse nie gevind nie. Vermis "PART" opskrif. No %s files found. Geen %s lêers gevind nie. Invalid %s file. Unexpected byte value. Ongeldige %s lêer. Onverwagse greep waarde. Invalid %s file. Missing "TITLE" header. Ongeldige %s lêer. Vermis "TITLE" hofie. Invalid %s file. Missing "COPYRIGHTLINE" header. Ongeldige %s lêer. Vermis "COPYRIGHTLINE" hofie. SongsPlugin.SongBookForm &Name: &Naam: &Publisher: &Uitgewer: You need to type in a name for the book. 'n Naam vir die boek moet ingevoer word. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Die lied uitvoer het misluk. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Uitvoer voltooi. Om hierdie lêers in te voer, gebruik die <strong>OpenLyrics</strong> invoerder. Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright kopiereg The following songs could not be imported: Die volgende liedere kon nie ingevoer word nie: Cannot access OpenOffice or LibreOffice Het nie toegang tot OpenOffice of LibreOffice nie Unable to open file Kan nie lêer oopmaak nie File not found Lêer nie gevind nie SongsPlugin.SongMaintenanceForm Could not add your author. Skrywer kon nie bygevoeg word nie. This author already exists. Die skrywer bestaan reeds. Could not add your topic. Onderwerp kon nie bygevoeg word nie. This topic already exists. Hierdie onderwerp bestaan reeds. Could not add your book. Boek kon nie bygevoeg word nie. This book already exists. Hierdie boek bestaan reeds. Could not save your changes. Veranderinge kon nie gestoor word nie. Could not save your modified author, because the author already exists. Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan. Could not save your modified topic, because it already exists. Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds. Delete Author Wis Skrywer Uit Are you sure you want to delete the selected author? Wis die geselekteerde skrywer uit? This author cannot be deleted, they are currently assigned to at least one song. Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is. Delete Topic Wis Onderwerp Uit Are you sure you want to delete the selected topic? Wis die geselekteerde onderwerp uit? This topic cannot be deleted, it is currently assigned to at least one song. Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. Delete Book Wis Boek Uit Are you sure you want to delete the selected book? Wis die geselekteerde boek uit? This book cannot be deleted, it is currently assigned to at least one song. Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Die outeur %s bestaan alreeds. Moet liedere met die outeur %s die bestaande outeur %s gebruik? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Die onderwerp %s bestaan alreeds. Moet liedere met die onderwerp %s die bestaande onderwerp %s gebruik? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Die boek %s bestaan reeds. Moed liedere met die doek %s gebruik maak van bestaande boek %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Gebruikersnaam: Password: Wagwoord: Save username and password Login Search Text: Search Soek Found %s song(s) Logout View Vertoon Title: Titel: Author(s): Copyright: Kopiereg: CCLI Number: Lyrics: Back Terug Import Voer in More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode Liedere Modus Display verses on live tool bar Vertoon verse op regstreekse gereedskap staaf Update service from song edit Opdateer diens van lied-redigering Import missing songs from service files Voer vermisde liedere in vanaf diens lêers Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Onderwerp Onderhoud Topic name: Onderwerp naam: You need to type in a topic name. 'n Onderwerp naam moet ingevoer word. SongsPlugin.VerseType Verse Vers Chorus Koor Bridge Brug Pre-Chorus Voor-Refrein Intro Inleiding Ending Slot Other Ander SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Probleem om CSV lêer te lees. Line %d: %s Lyn %d: %s Decoding error: %s Dekodering fout: %s File not valid WorshipAssistant CSV format. Record %d Opname %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Probleem om CSV lêer te lees. File not valid ZionWorx CSV format. Lêer nie geldige ZionWorx CSV formaat nie. Line %d: %s Lyn %d: %s Decoding error: %s Dekodering fout: %s Record %d Opname %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information Informasie No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/sv.ts0000644000175000017500000153633712657640340015364 0ustar raoulraoul AlertsPlugin &Alert &Meddelande Show an alert message. Visa ett publikt meddelande. Alert name singular Meddelande Alerts name plural Meddelanden Alerts container title Meddelanden <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Meddelandemodul</strong><br />Meddelandemodulen kontrollerar visning av meddelanden pÃ¥ skärmen. AlertsPlugin.AlertForm Alert Message Meddelande Alert &text: Meddelande&text: &New &Nytt &Save &Spara Displ&ay &Visa Display && Cl&ose Visa && stän&g New Alert Nytt meddelande &Parameter: &Parameter: No Parameter Found Parameter saknas You have not entered a parameter to be replaced. Do you want to continue anyway? Du har inte angivit nÃ¥gon parameter. Vill du fortsätta ändÃ¥? No Placeholder Found PlatshÃ¥llare saknas The alert text does not contain '<>'. Do you want to continue anyway? Meddelandet innehÃ¥ller inte '<>'. Vill du fortsätta ändÃ¥? You haven't specified any text for your alert. Please type in some text before clicking New. Du har inte angivit nÃ¥gon text för ditt meddelande. Skriv in din text innan du klickar pÃ¥ Nytt. AlertsPlugin.AlertsManager Alert message created and displayed. Meddelande skapat och visat. AlertsPlugin.AlertsTab Font Teckensnitt Font name: Teckensnitt: Font color: Teckenfärg: Background color: Bakgrundsfärg: Font size: Teckenstorlek: Alert timeout: Visningstid: BiblesPlugin &Bible &Bibel Bible name singular Bibel Bibles name plural Biblar Bibles container title Biblar No Book Found Bok saknas No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen bok hittades i vald bibel. Kontrollera stavningen av bokens namn. Import a Bible. Importera en bibelöversättning. Add a new Bible. Lägg till en ny bibel. Edit the selected Bible. Redigera vald bibel. Delete the selected Bible. Ta bort vald bibel. Preview the selected Bible. Förhandsgranska bibeltexten. Send the selected Bible live. Visa bibeltexten live. Add the selected Bible to the service. Lägg till bibeltexten i körschemat. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibelmodul</strong><br />Bibelmodulen gör det möjligt att visa bibelverser frÃ¥n olika översättningar under gudstjänsten. &Upgrade older Bibles &Uppgradera äldre biblar Upgrade the Bible databases to the latest format. Uppgradera bibeldatabasen till det senaste formatet. Genesis Första Moseboken Exodus Andra Moseboken Leviticus Tredje Moseboken Numbers Fjärde Moseboken Deuteronomy Femte Moseboken Joshua Josua Judges Domarboken Ruth Rut 1 Samuel Första Samuelsboken 2 Samuel Andra Samuelsboken 1 Kings Första Kungaboken 2 Kings Andra Kungaboken 1 Chronicles Första Krönikeboken 2 Chronicles Andra Krönikeboken Ezra Esra Nehemiah Nehemja Esther Ester Job Job Psalms Psaltaren Proverbs OrdsprÃ¥ksboken Ecclesiastes Predikaren Song of Solomon Höga Visan Isaiah Jesaja Jeremiah Jeremia Lamentations Klagovisorna Ezekiel Hesekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadja Jonah Jona Micah Mika Nahum Nahum Habakkuk Habackuk Zephaniah Sefanja Haggai Haggaj Zechariah Sakarja Malachi Malaki Matthew Matteusevangeliet Mark Markusevangeliet Luke Lukasevangeliet John Johannesevangeliet Acts Apostlagärningarna Romans Romarbrevet 1 Corinthians Första Korinthierbrevet 2 Corinthians Andra Korinthierbrevet Galatians Galaterbrevet Ephesians Efesierbrevet Philippians Filipperbrevet Colossians Kolosserbrevet 1 Thessalonians Första Thessalonikerbrevet 2 Thessalonians Andra Thessalonikerbrevet 1 Timothy Första Timotheosbrevet 2 Timothy Andra Timotheosbrevet Titus Titusbrevet Philemon Filemonbrevet Hebrews Hebreerbrevet James Jakobsbrevet 1 Peter Första Petrusbrevet 2 Peter Andra Petrusbrevet 1 John Första Johannesbrevet 2 John Andra Johannesbrevet 3 John Tredje Johannesbrevet Jude Judasbrevet Revelation Uppenbarelseboken Judith Judit Wisdom Salomos vishet Tobit Tobit Sirach Jesus Syraks vishet Baruch Baruk 1 Maccabees Första Mackabeerboken 2 Maccabees Andra Mackabeerboken 3 Maccabees Tredje Mackabeerboken 4 Maccabees Fjärde Mackabeerboken Rest of Daniel Tillägg till Daniel Rest of Esther Ester enligt den grekiska texten Prayer of Manasses Manasses bön Letter of Jeremiah Jeremias brev Prayer of Azariah Asarjas bön Susanna Susanna i badet Bel Bel i Babylon 1 Esdras Tredje Esra 2 Esdras Fjärde Esra : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verserna - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 till , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 och end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse slutet BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Du mÃ¥ste ange ett namn pÃ¥ bibelöversättningen. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du mÃ¥ste ange copyright för bibeln. Biblar i public domain mÃ¥ste markeras som sÃ¥dana. Bible Exists Bibeln finns redan This Bible already exists. Please import a different Bible or first delete the existing one. Bibeln finns redan. Importera en annan bibel eller ta först bort den existerande. You need to specify a book name for "%s". Du mÃ¥ste ange ett boknamn för "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Boknamnet "%s" är inte korrekt. Siffror kan bara användas i början och mÃ¥ste följas av ett eller flera ickenumeriska tecken. Duplicate Book Name Dublettnamn pÃ¥ bok The Book Name "%s" has been entered more than once. Boknamnet "%s" har angivits flera gÃ¥nger. BiblesPlugin.BibleManager Scripture Reference Error Felaktig bibelreferens Web Bible cannot be used Webb-bibel kan inte användas Text Search is not available with Web Bibles. Textsökning är inte tillgänglig för webb-biblar. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du angav inget sökord. Du kan ange flera sökord avskilda med mellanslag för att söka pÃ¥ alla sökord och du kan avskilja sökorden med kommatecken för att söka efter ett av sökorden. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det finns inga biblar installerade. Använd guiden för bibelimport och installera en eller flera bibelöversättningar. No Bibles Available Inga biblar tillgängliga Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Antingen stöds bibelreferensen inte av OpenLP, eller sÃ¥ är den ogiltig. Kontrollera att bibelreferensen överensstämmer med nÃ¥got av följande mönster, eller läs om funktionen i manualen: Bok Kapitel Bok Kapitel%(range)sKapitel Bok Kapitel%(verse)sVers%(range)sVers Bok Kapitel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Bok Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers%(range)sVers Bok Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers BiblesPlugin.BiblesTab Verse Display Visning av bibeltext Only show new chapter numbers Visa bara nummer för nya kapitel Bible theme: Bibeltema: No Brackets Inga parenteser ( And ) ( och ) { And } { och } [ And ] [ och ] Note: Changes do not affect verses already in the service. Observera: Ändringar kommer inte att pÃ¥verka verser som redan finns i körschemat. Display second Bible verses Visa andra bibelns verser Custom Scripture References Anpassade bibelreferenser Verse Separator: Versavskiljare: Range Separator: Intervallavskiljare: List Separator: Listavskiljare: End Mark: Slutmärke: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Flera alternativa versavskiljare kan definieras. De mÃ¥ste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. English Svenska Default Bible Language Förvalt bibelsprÃ¥k Book name language in search field, search results and on display: SprÃ¥k pÃ¥ boknamn i sökfält, sökresultat och vid visning: Bible Language BibelsprÃ¥k Application Language Programmets sprÃ¥k Show verse numbers Visa versnummer BiblesPlugin.BookNameDialog Select Book Name Välj bok Current name: Nuvarande namn: Corresponding name: Motsvarande namn: Show Books From Visa böcker frÃ¥n Old Testament Gamla testamentet New Testament Nya testamentet Apocrypha Apokryferna The following book name cannot be matched up internally. Please select the corresponding name from the list. Följande boknamn kan inte kopplas till nÃ¥gon bok. Välj tillhörande namn frÃ¥n listan. BiblesPlugin.BookNameForm You need to select a book. Du mÃ¥ste välja en bok. BiblesPlugin.CSVBible Importing books... %s Importerar böcker... %s Importing verses... done. Importerar verser... klart. BiblesPlugin.EditBibleForm Bible Editor Bibelredigering License Details Licensdetaljer Version name: Namn pÃ¥ översättningen: Copyright: Copyright: Permissions: TillstÃ¥nd: Default Bible Language Förvalt bibelsprÃ¥k Book name language in search field, search results and on display: SprÃ¥k pÃ¥ boknamn i sökfält, sökresultat och vid visning: Global Settings Globala inställningar Bible Language BibelsprÃ¥k Application Language Programmets sprÃ¥k English Svenska This is a Web Download Bible. It is not possible to customize the Book Names. Det här är en webb-bibel. Det gÃ¥r inte att anpassa boknamnen. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. För att kunna använda anpassade boknamn mÃ¥ste "BibelsprÃ¥k" vara valt under fliken "Metadata" eller, om "Globala inställningar" är valt, pÃ¥ bibelsidan i OpenLP-inställningarna. BiblesPlugin.HTTPBible Registering Bible and loading books... Registrerar bibel och laddar böcker... Registering Language... Registrerar sprÃ¥k... Importing %s... Importing <book name>... Importerar %s... Download Error Fel vid nedladdning There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det uppstod problem vid nedladdningen av versurvalet. Kontrollera Internetanslutningen och om problemet Ã¥terkommer, överväg att rapportera det som en bugg. Parse Error Fel vid tolkning There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det uppstod problem vid extraherande av vers-urvalet. Om problemet uppstÃ¥r igen, överväg att rapportera det som en bugg. BiblesPlugin.ImportWizardForm Bible Import Wizard Guiden för bibelimport This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Den här guiden hjälper dig importera biblar frÃ¥n en mängd olika format. Klicka pÃ¥ Nästa för att fortsätta med importen. Web Download Nedladdning frÃ¥n Internet Location: Källa: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bibel: Download Options Alternativ för nedladdning Server: Server: Username: Användarnamn: Password: Lösenord: Proxy Server (Optional) Proxyserver (frivilligt) License Details Licensdetaljer Set up the Bible's license details. Skriv in bibelns licensuppgifter. Version name: Namn pÃ¥ översättningen: Copyright: Copyright: Please wait while your Bible is imported. Vänta medan bibeln importeras. You need to specify a file with books of the Bible to use in the import. Du mÃ¥ste välja en fil med bibelböcker att använda i importen. You need to specify a file of Bible verses to import. Du mÃ¥ste välja en fil med bibelverser att importera. You need to specify a version name for your Bible. Du mÃ¥ste ange ett namn pÃ¥ bibelöversättningen. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du mÃ¥ste ange copyright för bibeln. Biblar i public domain mÃ¥ste markeras som sÃ¥dana. Bible Exists Bibeln finns redan This Bible already exists. Please import a different Bible or first delete the existing one. Bibeln finns redan. Importera en annan bibel eller ta först bort den existerande. Your Bible import failed. Bibelimporten misslyckades. CSV File CSV-fil Bibleserver Bibelserver Permissions: TillstÃ¥nd: Bible file: Bibelfil: Books file: Bokfil: Verses file: Versfil: Registering Bible... Registrerar bibel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bibel registrerad. Observera att verserna kommer att laddas ner vid behov och därför behövs en internetanslutning. Click to download bible list Klicka för att ladda ner bibellista Download bible list Ladda ner bibellista Error during download Fel vid nedladdning An error occurred while downloading the list of bibles from %s. Ett fel uppstod vid nerladdning av listan med biblar frÃ¥n %s. BiblesPlugin.LanguageDialog Select Language Välj sprÃ¥k OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan inte avgöra den här bibelöversättningens sprÃ¥k. Välj sprÃ¥k frÃ¥n listan nedan. Language: SprÃ¥k: BiblesPlugin.LanguageForm You need to choose a language. Du mÃ¥ste välja ett sprÃ¥k. BiblesPlugin.MediaItem Quick Enkelt Find: Sök efter: Book: Bok: Chapter: Kapitel: Verse: Vers: From: FrÃ¥n: To: Till: Text Search Textsökning Second: Alternativ: Scripture Reference Bibelreferens Toggle to keep or clear the previous results. Växla mellan att behÃ¥lla eller rensa föregÃ¥ende sökresultat. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Du kan inte kombinera resultat frÃ¥n sökning i en bibel med resultat frÃ¥n sökning i tvÃ¥ biblar. Vill du ta bort dina sökresultat och starta en ny sökning? Bible not fully loaded. Bibeln är inte helt laddad. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den alternativa bibelöversättningen innehÃ¥ller inte alla verser som finns i huvudöversättningen. Endast verser som finns i bÃ¥da översättningar kommer att visas. %d verser har utelämnats. Search Scripture Reference... Sök bibelvers... Search Text... Sök text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Är du säker pÃ¥ att du vill ta bort bibeln "%s" helt frÃ¥n OpenLP? För att bibeln ska gÃ¥ att använda igen mÃ¥ste den importeras pÃ¥ nytt. Advanced Avancerat BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ogiltig filtyp pÃ¥ den valda bibeln. OpenSong-biblar kan vara komprimerade. Du mÃ¥ste packa upp dem före import. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Ogiltig filtyp pÃ¥ den valda bibeln. Det här verkar vara en Zefania XML-bibel. Använd importverktyget för Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importerar %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Tar bort oanvända taggar (det här kan ta nÃ¥gra minuter)... Importing %(bookname)s %(chapter)s... Importerar %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Välj en mapp för säkerhetskopiering Bible Upgrade Wizard Bibeluppgraderingsguiden This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Den här guiden hjälper dig att uppgradera dina befintliga biblar frÃ¥n en tidigare version av OpenLP 2. Klicka pÃ¥ Nästa för att starta uppgraderingsprocessen. Select Backup Directory Välj mapp för säkerhetskopiering Please select a backup directory for your Bibles Välj en mapp för säkerhetskopiering av dina biblar Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Tidigare utgÃ¥vor av OpenLP 2.0 kan inte använda uppgraderade biblar. Nu skapas en säkerhetskopia av dina nuvarande biblar sÃ¥ att du enkelt kan kopiera tillbaks filerna till din OpenLP-datakatalog om du skulle behöva Ã¥tergÃ¥ till en tidigare utgÃ¥va av OpenLP. Instruktioner om hur man Ã¥terställer finns i vÃ¥r <a href="http://wiki.openlp.org/faq">FAQ</a>. Please select a backup location for your Bibles. Välj en mapp för säkerhetskopiering av dina biblar. Backup Directory: Mapp för säkerhetskopiering: There is no need to backup my Bibles Det är inte nödvändigt med säkerhetskopiering av mina biblar Select Bibles Välj biblar Please select the Bibles to upgrade Välj biblar att uppgradera Upgrading Uppgraderar Please wait while your Bibles are upgraded. Vänta medan biblarna uppgraderas. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Säkerhetskopieringen lyckades inte. För att kunna göra en säkerhetskopia av dina biblar krävs skrivrättigheter i den givna mappen. Upgrading Bible %s of %s: "%s" Failed Uppgraderar bibel %s av %s: "%s" Misslyckades Upgrading Bible %s of %s: "%s" Upgrading ... Uppgraderar bibel %s av %s: "%s" Uppgraderar ... Download Error Fel vid nedladdning To upgrade your Web Bibles an Internet connection is required. För att uppgradera dina webb-biblar krävs en Internetanslutning. Upgrading Bible %s of %s: "%s" Upgrading %s ... Uppgraderar bibel %s av %s: "%s" Uppgraderar %s ... Upgrading Bible %s of %s: "%s" Complete Uppgraderar bibel %s av %s: "%s" Färdig , %s failed , %s misslyckades Upgrading Bible(s): %s successful%s Uppgradering av biblar: %s lyckades%s Upgrade failed. Uppgradering misslyckades. You need to specify a backup directory for your Bibles. Du mÃ¥ste välja en mapp för säkerhetskopiering av dina biblar. Starting upgrade... Startar uppgradering... There are no Bibles that need to be upgraded. Det finns inga biblar som behöver uppgraderas. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Ogiltig filtyp pÃ¥ den valda bibeln. Zefania-biblar kan vara komprimerade. Du mÃ¥ste packa upp dem före import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importerar %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Anpassad sida Custom Slides name plural Anpassade sidor Custom Slides container title Anpassade sidor Load a new custom slide. Ladda en ny uppsättning sidor. Import a custom slide. Importera en uppsättning sidor. Add a new custom slide. Lägg till en ny uppsättning sidor. Edit the selected custom slide. Redigera den valda uppsättningen sidor. Delete the selected custom slide. Ta bort den valda uppsättningen sidor. Preview the selected custom slide. Förhandsgranska den valda uppsättningen sidor. Send the selected custom slide live. Visa den valda uppsättningen sidor live. Add the selected custom slide to the service. Lägg till den valda uppsättningen sidor i körschemat. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Modul för anpassade sidor</strong><br />Modulen för anpassade sidor gör det möjligt att skapa anpassade textsidor som kan visas pÃ¥ skärmen pÃ¥ samma sätt som sÃ¥nger. Modulen ger större frihet än sÃ¥ngmodulen. CustomPlugin.CustomTab Custom Display Anpassad visning Display footer Visa sidfot Import missing custom slides from service files Importera saknade anpassade sidor frÃ¥n körschemafiler CustomPlugin.EditCustomForm Edit Custom Slides Redigera anpassade diabilder &Title: &Titel: Add a new slide at bottom. Lägg till en ny diabild sist. Edit the selected slide. Redigera vald diabild. Edit all the slides at once. Redigera alla diabilder pÃ¥ en gÃ¥ng. Split a slide into two by inserting a slide splitter. Dela diabilden i tvÃ¥ genom att lägga till en diabild delare. The&me: Te&ma: &Credits: &Erkännande: You need to type in a title. Du mÃ¥ste ange en titel. Ed&it All Red&igera alla Insert Slide Infoga sida You need to add at least one slide. Du mÃ¥ste lägga till Ã¥tminstone en sida. CustomPlugin.EditVerseForm Edit Slide Redigera bild CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Bildmodul</strong><br />Bildmodulen erbjuder visning av bilder.<br />En av funktionerna i modulen är möjligheten att gruppera bilder i körschemat, vilket gör visning av flera bilder enklare. Modulen kan även använda OpenLP:s funktion för "tidsstyrd bildväxling" för att skapa ett bildspel som rullar automatiskt. Dessutom kan bilder frÃ¥n modulen användas för att ersätta det aktuella temats bakgrund, sÃ¥ att textbaserade sidor som till exempel sÃ¥nger visas med den valda bilden som bakgrund i stället för temats bakgrund. Image name singular Bild Images name plural Bilder Images container title Bilder Load a new image. Ladda en ny bild. Add a new image. Lägg till en ny bild. Edit the selected image. Redigera den valda bilden. Delete the selected image. Ta bort den valda bilden. Preview the selected image. Förhandsgranska den valda bilden. Send the selected image live. Visa den valda bilden live. Add the selected image to the service. Lägg till den valda bilden i körschemat. ImagePlugin.AddGroupForm Add group Lägg till grupp Parent group: Skapa i: Group name: Gruppnamn: You need to type in a group name. Du mÃ¥ste ange ett gruppnamn. Could not add the new group. Kunde inte lägga till den nya gruppen. This group already exists. Gruppen finns redan. ImagePlugin.ChooseGroupForm Select Image Group Välj bildgrupp Add images to group: Lägg till bilder till grupp: No group Ingen grupp Existing group Befintlig grupp New group Ny grupp ImagePlugin.ExceptionDialog Select Attachment Välj bilaga ImagePlugin.MediaItem Select Image(s) Välj bild(er) You must select an image to replace the background with. Du mÃ¥ste välja en bild att ersätta bakgrundsbilden med. Missing Image(s) Bild(er) saknas The following image(s) no longer exist: %s Följande bild(er) finns inte längre: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Följande bild(er) finns inte längre: %s Vill du lägga till dom andra bilderna ändÃ¥? There was a problem replacing your background, the image file "%s" no longer exists. Det uppstod ett problem med att ersätta din bakgrund, bildfilen "%s" finns inte längre. There was no display item to amend. Det fanns ingen visningspost att ändra. -- Top-level group -- -- ToppnivÃ¥ -- You must select an image or group to delete. Du mÃ¥ste välja en bild eller grupp att ta bort. Remove group Ta bort grupp Are you sure you want to remove "%s" and everything in it? Vill du verkligen ta bort "%s" och allt därunder? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Synlig bakgrund för bilder med annat bildformat än skärmen. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC är en extern spelare som stödjer en mängd olika format. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit är en mediaspelare som kör i en webbläsare. Den här spelaren kan rendera text över video. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Mediamodul</strong><br />Mediamodulen gör det möjligt att spela upp ljud och video. Media name singular Media Media name plural Media Media container title Media Load new media. Ladda en ny mediafil. Add new media. Lägg till media. Edit the selected media. Redigera den valda mediaposten. Delete the selected media. Ta bort den valda mediaposten. Preview the selected media. Förhandsgranska den valda mediaposten. Send the selected media live. Visa den valda mediaposten live. Add the selected media to the service. Lägg till den valda mediaposten i körschemat. MediaPlugin.MediaClipSelector Select Media Clip Välj mediaklipp Source Källa Media path: Sökväg till media: Select drive from list Välj enhet frÃ¥n listan Load disc Ladda disk Track Details SpÃ¥rdetaljer Title: Titel: Audio track: LjudspÃ¥r: Subtitle track: UndertextspÃ¥r: HH:mm:ss.z HH:mm:ss.zzz Clip Range Avgränsning Start point: Startpunkt: Set start point Välj startpunkt Jump to start point Hoppa till startpunkt End point: Slutpunkt: Set end point Välj slutpunkt Jump to end point Hoppa till slutpunkt MediaPlugin.MediaClipSelectorForm No path was given Ingen sökväg angavs Given path does not exists Den angivna sökvägen finns inte An error happened during initialization of VLC player Ett fel inträffade vid start av mediaspelaren VLC VLC player failed playing the media Mediaspelaren VLC kunde inte spela upp mediastycket CD not loaded correctly CD:n laddades inte korrekt The CD was not loaded correctly, please re-load and try again. CD:n laddades inte korrekt. Ta ut och mata in CD:n och försök igen. DVD not loaded correctly DVD:n laddades inte korrekt The DVD was not loaded correctly, please re-load and try again. DVD:n laddades inte korrekt. Ta ut och mata in disken och försök igen. Set name of mediaclip Välj namn pÃ¥ mediaklipp Name of mediaclip: Namn pÃ¥ mediaklipp: Enter a valid name or cancel Ange ett giltigt namn eller avbryt Invalid character Ogiltigt tecken The name of the mediaclip must not contain the character ":" Mediaklippets namn fÃ¥r inte innehÃ¥lla tecknet ":" MediaPlugin.MediaItem Select Media Välj media You must select a media file to delete. Du mÃ¥ste välja en mediafil för borttagning. You must select a media file to replace the background with. Du mÃ¥ste välja en mediafil att ersätta bakgrunden med. There was a problem replacing your background, the media file "%s" no longer exists. Det uppstod problem när bakgrunden skulle ersättas: mediafilen "%s" finns inte längre. Missing Media File Mediafil saknas The file %s no longer exists. Filen %s finns inte längre. Videos (%s);;Audio (%s);;%s (*) Videor (%s);;Ljud (%s);;%s (*) There was no display item to amend. Det fanns ingen visningspost att ändra. Unsupported File Ej stödd fil Use Player: Använd uppspelare: VLC player required Mediaspelaren VLC krävs VLC player required for playback of optical devices Mediaspelaren VLC krävs för uppspelning av optiska enheter Load CD/DVD Ladda CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Ladda CD/DVD - stöds endast när VLC är installerat och aktiverat The optical disc %s is no longer available. Den optiska disken %s är inte längre tillgänglig. Mediaclip already saved Mediaklippet redan sparat This mediaclip has already been saved Det här mediaklippet har redan sparats MediaPlugin.MediaTab Allow media player to be overridden TillÃ¥t Ã¥sidosättning av vald mediaspelare Start Live items automatically Starta liveposter automatiskt OPenLP.MainWindow &Projector Manager &Projektorhantering OpenLP Image Files Bildfiler Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bibelformatet har ändrats. Du mÃ¥ste uppgradera dina existerande biblar. Ska OpenLP uppgradera nu? Backup Säkerhetskopiering OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP har uppgraderats. Vill du skapa en säkerhetskopia av OpenLP:s datamapp? Backup of the data folder failed! Säkerhetskopiering av datamappen misslyckades! A backup of the data folder has been created at %s En säkerhetskopia av datamappen har skapats i %s Open Öppen OpenLP.AboutForm Credits Lista över medverkande License Licens build %s build %s 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; version 2 of the License. Det här programmet är fri mjukvara; du fÃ¥r sprida den vidare och/eller ändra i den under villkoren i GNU General Public License sÃ¥ som publicerade av Free Software Foundation; version 2 av licensen. 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 below for more details. Det här programmet ges ut i hopp om att det kan vara användbart, men UTAN NÃ…GON GARANTI; inte ens nÃ¥gon underförstÃ¥dd garanti vid köp eller lämplighet för ett särskilt ändamÃ¥l. Se nedan för mer detaljer. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Öppen källkods-program för sÃ¥ngvisning OpenLP är fri mjukvara för kyrkpresentation eller sÃ¥ngvisning, gjord för att visa sÃ¥ngtexter, bibeltexter, videor, bilder och även presentationer (om Impress, PowerPoint eller PowerPoint Viewer är installerat) i gudstjänster med hjälp av dator och projektor. Läs mer om OpenLP: http://openlp.org/ OpenLP utvecklas och underhÃ¥lls av frivilliga. Om du vill se mer fri kristen mjukvara utvecklad, klicka gärna pÃ¥ knappen nedan för att se hur du kan bidra. Volunteer Bidra Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Inställningar för användargränssnitt Number of recent files to display: Antal tidigare körscheman att visa: Remember active media manager tab on startup Kom ihÃ¥g aktiv mediaflik vid start Double-click to send items straight to live Dubbelklicka för att visa poster live Expand new service items on creation Expandera nya poster i körschemat vid skapandet Enable application exit confirmation Bekräfta för att avsluta programmet Mouse Cursor Muspekare Hide mouse cursor when over display window Dölj muspekaren över visningsfönstret Default Image Standardbild Background color: Bakgrundsfärg: Image file: Bildfil: Open File Öppna fil Advanced Avancerat Preview items when clicked in Media Manager Förhandsgranska poster vid klick i mediahanteringen Browse for an image file to display. Välj en bildfil att visa. Revert to the default OpenLP logo. Ã…terställ till OpenLP:s standardlogotyp. Default Service Name Förvalt namn pÃ¥ körschema Enable default service name Aktivera förvalt namn pÃ¥ körschema Date and Time: Datum och tid: Monday MÃ¥ndag Tuesday Tisdag Wednesday Onsdag Friday Fredag Saturday Lördag Sunday Söndag Now Nu Time when usual service starts. Tid när schemat vanligen börjar. Name: Namn: Consult the OpenLP manual for usage. Läs i OpenLP-manualen för information om funktionen. Revert to the default service name "%s". Ã…terställ till körschemats standardnamn "%s". Example: Exempel: Bypass X11 Window Manager KringgÃ¥ X11:s fönsterhanterare Syntax error. Syntaxfel. Data Location Datalagring Current path: Nuvarande sökväg: Custom path: Anpassad sökväg: Browse for new data file location. Bläddra efter ny plats för datalagring. Set the data location to the default. Ã…terställ plats för datalagring till standardinställningen. Cancel Avbryt Cancel OpenLP data directory location change. Avbryt ändring av plats för OpenLP:s datalagring. Copy data to new location. Kopiera data till ny plats. Copy the OpenLP data files to the new location. Kopiera OpenLP:s data till den nya platsen. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VARNING:</strong> Den nya datakatalogen innehÃ¥ller OpenLP-datafiler. Dessa filer kommer att ersättas vid kopieringen. Data Directory Error Datakatalogfel Select Data Directory Location Välj plats för datakatalog Confirm Data Directory Change Bekräfta ändring av datakatalog Reset Data Directory Ã…terställ datakatalog Overwrite Existing Data Skriv över befintlig data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP:s datakatalog hittades inte %s Datakatalogen har tidigare ändrats frÃ¥n OpenLP:s förvalda plats. Om den nya platsen var pÃ¥ ett portabelt lagringsmedium mÃ¥ste det finnas tillgängligt. Klicka "Nej" för att avbryta starten av OpenLP sÃ¥ att du kan lösa problemet. Klicka "Ja" för att Ã¥terställa datakatalogen till förvald plats. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Är du säker pÃ¥ att du vill ändra plats för OpenLP:s datakatalog till: %s Datakatalogen kommer att ändras när OpenLP avslutas. Thursday Torsdag Display Workarounds Grafikfixar Use alternating row colours in lists Varva radfärger i listor WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? VARNING: Platsen du har valt %s verkar innehÃ¥lla OpenLP-data. Är du säker pÃ¥ att du vill ersätta de filerna med nuvarande data? Restart Required Omstart krävs This change will only take effect once OpenLP has been restarted. Den här ändringen börjar gälla när OpenLP har startats om. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Är du säker pÃ¥ att du vill ändra platsen för OpenLP:s data till standardinställningen? Den nya platsen kommer att användas efter att OpenLP har avslutats. OpenLP.ColorButton Click to select a color. Klicka för att välja en färg. OpenLP.DB RGB RGB Video Video Digital Digital Storage Lagringsutrymme Network Nätverk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Lagringsutrymme 1 Storage 2 Lagringsutrymme 2 Storage 3 Lagringsutrymme 3 Storage 4 Lagringsutrymme 4 Storage 5 Lagringsutrymme 5 Storage 6 Lagringsutrymme 6 Storage 7 Lagringsutrymme 7 Storage 8 Lagringsutrymme 8 Storage 9 Lagringsutrymme 9 Network 1 Nätverk 1 Network 2 Nätverk 2 Network 3 Nätverk 3 Network 4 Nätverk 4 Network 5 Nätverk 5 Network 6 Nätverk 6 Network 7 Nätverk 7 Network 8 Nätverk 8 Network 9 Nätverk 9 OpenLP.ExceptionDialog Error Occurred Fel uppstod Send E-Mail Skicka e-post Save to File Spara till fil Attach File Lägg till fil Description characters to enter : %s Beskrivningstecken att ange: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Plattform: %s Save Crash Report Spara kraschrapport Text files (*.txt *.log *.text) Textfiler (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Byt namn pÃ¥ fil New File Name: Nytt filnamn: File Copy Kopiera fil OpenLP.FirstTimeLanguageForm Select Translation Välj sprÃ¥k Choose the translation you'd like to use in OpenLP. Välj sprÃ¥k som du vill använda i OpenLP. Translation: SprÃ¥k: OpenLP.FirstTimeWizard Songs SÃ¥nger First Time Wizard Kom igÃ¥ng-guiden Welcome to the First Time Wizard Välkommen till Kom igÃ¥ng-guiden Activate required Plugins Aktivera önskade moduler Select the Plugins you wish to use. Välj de moduler du vill använda. Bible Bibel Images Bilder Presentations Presentationer Media (Audio and Video) Media (ljud och video) Allow remote access TillÃ¥t fjärrÃ¥tkomst Monitor Song Usage Loggning av sÃ¥nganvändning Allow Alerts TillÃ¥t meddelanden Default Settings Standardinställningar Downloading %s... Hämtar %s... Enabling selected plugins... Aktivera valda moduler... No Internet Connection Ingen Internetanslutning Unable to detect an Internet connection. Lyckades inte ansluta till Internet. Sample Songs ExempelsÃ¥nger Select and download public domain songs. Välj och ladda ner sÃ¥nger som är i public domain. Sample Bibles Exempelbiblar Select and download free Bibles. Välj och ladda ner fria bibelöversättningar. Sample Themes Exempelteman Select and download sample themes. Välj och ladda ner exempelteman. Set up default settings to be used by OpenLP. Gör standardinställningar för OpenLP. Default output display: Standardskärm för visning: Select default theme: Välj standardtema: Starting configuration process... Startar konfigurationsprocess... Setting Up And Downloading Ställer in och laddar ner Please wait while OpenLP is set up and your data is downloaded. Vänta medan OpenLP ställs in och din data laddas ner. Setting Up Ställer in Custom Slides Anpassade sidor Finish Slut No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ingen Internetanslutning hittades. Kom igÃ¥ng-guiden behöver en Internetanslutning för att kunna ladda ner ett urval av sÃ¥nger, biblar och teman. Klicka pÃ¥ knappen Slutför nu för att starta OpenLP med grundinställningarna och utan data. För att köra Kom igÃ¥ng-guiden igen och importera exempeldatan senare, kontrollera din Internetanslutning och starta om den här guiden genom att välja "Verktyg/Kör Kom igÃ¥ng-guiden" frÃ¥n OpenLP. Download Error Fel vid nedladdning There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Problem med anslutningen uppstod vid nedladdningen, sÃ¥ resten av nedladdningarna kommer att hoppas över. Försök att köra Kom igÃ¥ng-guiden senare. Download complete. Click the %s button to return to OpenLP. Nedladdningen färdig. Klicka pÃ¥ knappen %s för att Ã¥tergÃ¥ till OpenLP. Download complete. Click the %s button to start OpenLP. Nedladdningen färdig. Klicka pÃ¥ knappen %s för att starta OpenLP. Click the %s button to return to OpenLP. Klicka pÃ¥ knappen %s för att Ã¥tergÃ¥ till OpenLP. Click the %s button to start OpenLP. Klicka pÃ¥ knappen %s för att starta OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Problem med anslutningen uppstod vid nedladdningen, sÃ¥ resten av nedladdningarna kommer att hoppas över. Försök att köra Kom igÃ¥ng-guiden senare. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Den här guiden hjälper dig att ställa in OpenLP för användning första gÃ¥ngen. Klicka pÃ¥ knappen %s nedan för att starta. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. För att avbryta Kom igÃ¥ng-guiden helt (och inte starta OpenLP), klicka pÃ¥ knappen %s nu. Downloading Resource Index Laddar ner resursindex Please wait while the resource index is downloaded. Vänta medan resursindexet laddas ner. Please wait while OpenLP downloads the resource index file... Vänta medan OpenLP laddar ner resursindexfilen... Downloading and Configuring Laddar ner och konfigurerar Please wait while resources are downloaded and OpenLP is configured. Vänta medan resurser laddas ner och OpenLP konfigureras. Network Error Nätverksfel There was a network error attempting to connect to retrieve initial configuration information Det uppstod ett nätverksfel när anslutning för hämtning av grundläggande inställningar skulle göras Cancel Avbryt Unable to download some files Kunde inte ladda ner vissa filer OpenLP.FormattingTagDialog Configure Formatting Tags Konfigurera format-taggar Description Beskrivning Tag Tagg Start HTML Start-HTML End HTML Slut-HTML Default Formatting Standardformatering Custom Formatting Anpassad formatering OpenLP.FormattingTagForm <HTML here> <HTML här> Validation Error Valideringsfel Description is missing Beskrivning saknas Tag is missing Tagg saknas Tag %s already defined. Taggen %s finns redan. Description %s already defined. Beskrivningen %s är redan definierad. Start tag %s is not valid HTML Starttaggen %s är inte giltig HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Röd Black Svart Blue BlÃ¥ Yellow Gul Green Grön Pink Rosa Orange Orange Purple Lila White Vit Superscript Upphöjt Subscript Nedsänkt Paragraph Stycke Bold Fetstil Italics Kursiv Underline Understruken Break Radbrytning OpenLP.GeneralTab General Allmänt Monitors Skärmar Select monitor for output display: Välj skärm för bildvisning: Display if a single screen Visa även pÃ¥ ensam skärm Application Startup Programstart Show blank screen warning Visa varning vid tom skärm Automatically open the last service Öppna det senaste körschemat automatiskt Show the splash screen Visa startbilden Application Settings Programinställningar Prompt to save before starting a new service FrÃ¥ga om att spara innan ett nytt körschema skapas Automatically preview next item in service Förhandsgranska nästa post i körschemat automatiskt sec sekunder CCLI Details CCLI-detaljer SongSelect username: SongSelect användarnamn: SongSelect password: SongSelect lösenord: X X Y Y Height Höjd Width Bredd Check for updates to OpenLP Sök efter uppdateringar till OpenLP Unblank display when adding new live item Lägg ut bilden direkt när en ny live-bild läggs till Timed slide interval: Tidsstyrd bildväxling: Background Audio Bakgrundsljud Start background audio paused Starta bakgrundsljud pausat Service Item Slide Limits Bildväxlingsgräns Override display position: Manuell skärmposition: Repeat track list Repetera spellistan Behavior of next/previous on the last/first slide: Inställning för nästa/föregÃ¥ende vid sista/första bilden: &Remain on Slide &Stanna pÃ¥ bilden &Wrap around Börja &om &Move to next/previous service item &GÃ¥ till nästa/föregÃ¥ende post i körschemat OpenLP.LanguageManager Language SprÃ¥k Please restart OpenLP to use your new language setting. Vänligen starta om OpenLP för att aktivera dina nya sprÃ¥kinställningar. OpenLP.MainDisplay OpenLP Display OpenLP-visning OpenLP.MainWindow &File &Arkiv &Import &Importera &Export &Exportera &View &Visa M&ode &Läge &Tools &Verktyg &Settings &Inställningar &Language &SprÃ¥k &Help &Hjälp Service Manager Körschema Theme Manager Temahantering Open an existing service. Öppna ett befintligt körschema. Save the current service to disk. Spara det nuvarande körschemat till disk. Save Service As Spara körschema som Save the current service under a new name. Spara det nuvarande körschemat under ett nytt namn. E&xit A&vsluta Quit OpenLP Avsluta OpenLP &Theme &Tema &Configure OpenLP... &Konfigurera OpenLP... &Media Manager &Mediahantering Toggle Media Manager Växla mediahantering Toggle the visibility of the media manager. Växla visning av mediahanteringen. &Theme Manager &Temahantering Toggle Theme Manager Växla temahanteringen Toggle the visibility of the theme manager. Växla visning av temahanteringen. &Service Manager &Körschema Toggle Service Manager Växla körschema Toggle the visibility of the service manager. Växla visning av körschemat. &Preview Panel &Förhandsgranskningpanel Toggle Preview Panel Växla förhandsgranskning Toggle the visibility of the preview panel. Växla visning av förhandsgranskning. &Live Panel Li&ve Toggle Live Panel Växla live-rutan Toggle the visibility of the live panel. Växla visning av live-rutan. List the Plugins Lista modulerna &User Guide &Bruksanvisning &About &Om More information about OpenLP Mer information om OpenLP &Online Help &Hjälp online &Web Site &Webbplats Use the system language, if available. Använd systemsprÃ¥ket om möjligt. Set the interface language to %s Sätt användargränssnittets sprÃ¥k till %s Add &Tool... Lägg till &verktyg... Add an application to the list of tools. Lägg till en applikation i verktygslistan. &Default &Standard Set the view mode back to the default. Ã…terställ visningslayouten till standardinställningen. &Setup &Förberedelse Set the view mode to Setup. Ställ in visningslayouten förberedelseläge. &Live &Live Set the view mode to Live. Ställ in visningslayouten till live-läge. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Version %s av OpenLP är nu tillgänglig för hämtning (du kör för närvarande version %s). Du kan ladda ner den senaste versionen frÃ¥n http://openlp.org/. OpenLP Version Updated Ny version av OpenLP OpenLP Main Display Blanked OpenLPs huvudbild släckt The Main Display has been blanked out Huvudbilden har släckts Default Theme: %s Standardtema: %s English Please add the name of your language here Svenska Configure &Shortcuts... Konfigurera &genvägar... Open &Data Folder... Öppna &datakatalog... Open the folder where songs, bibles and other data resides. Öppna mappen där sÃ¥nger, biblar och annan data lagras. &Autodetect Detektera &automatiskt Update Theme Images Uppdatera temabilder Update the preview images for all themes. Uppdatera förhandsgranskningsbilder för alla teman. Print the current service. Skriv ut den nuvarande körschemat. L&ock Panels L&Ã¥s paneler Prevent the panels being moved. Förhindra att panelerna flyttas. Re-run First Time Wizard Kör Kom igÃ¥ng-guiden Re-run the First Time Wizard, importing songs, Bibles and themes. Kör Kom igÃ¥ng-guiden och importera sÃ¥nger, biblar och teman. Re-run First Time Wizard? Kör Kom igÃ¥ng-guiden? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Är du säker pÃ¥ att du vill köra Kom igÃ¥ng-guiden? Om du kör den här guiden kan din nuvarande konfiguration av OpenLP komma att ändras, sÃ¥nger eventuellt läggas till din befintliga sÃ¥nglista, och standardtemat bytas. Clear List Clear List of recent files Rensa listan Clear the list of recent files. Rensa listan med senaste körscheman. Configure &Formatting Tags... Konfigurera &format-taggar... Export OpenLP settings to a specified *.config file Exportera OpenLP-inställningar till en given *.config-fil Settings Inställningar Import OpenLP settings from a specified *.config file previously exported on this or another machine Importera OpenLP-inställningar frÃ¥n en given *.config-fil som tidigare har exporterats pÃ¥ den här datorn eller nÃ¥gon annan Import settings? Importera inställningar? Open File Öppna fil OpenLP Export Settings Files (*.conf) OpenLP-inställningsfiler (*.conf) Import settings Importera inställningar OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP kommer nu att avslutas. Importerade inställningar kommer att tillämpas nästa gÃ¥ng du startar OpenLP. Export Settings File Exportera inställningsfil OpenLP Export Settings File (*.conf) OpenLP-inställningsfiler (*.conf) New Data Directory Error Ny datakatalog-fel Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopierar OpenLP-data till ny plats för datakatalogen - %s - Vänta tills kopieringen är avslutad OpenLP Data directory copy failed %s Kopiering av OpenLP:s datakatalog misslyckades %s General Allmänt Library Bibliotek Jump to the search box of the current active plugin. Hoppa till sökrutan för den aktiva modulen. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Är du säker pÃ¥ att du vill importera inställningar? Om du importerar inställningar görs bestÃ¥ende ändringar i din nuvarande OpenLP-konfiguration. Att importera inställningar kan leda till oväntade beteenden eller att OpenLP avslutas onormalt. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Filen du valde verkar inte vara en giltig OpenLP-konfigurationsfil. Processen har avbrutits och inga ändringar gjordes. Projector Manager Projektorhantering Toggle Projector Manager Växla projektorhanteringen Toggle the visibility of the Projector Manager Växla visning av projektorhanteringen Export setting error Fel vid inställningsexport The key "%s" does not have a default value so it will be skipped in this export. Attributet "%s" har inget standardvärde, sÃ¥ det kommer att hoppas över i den här exporten. An error occurred while exporting the settings: %s Ett fel inträffade när inställningarna exporterades: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error Databasfel The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Databasen som skulle laddas är skapad i en nyare version av OpenLP. Databasen har version %d, och OpenLP kräver version %d. Databasen kommer inte att laddas. Databas: %s OpenLP cannot load your database. Database: %s OpenLP kan inte ladda databasen. Databas: %s OpenLP.MediaManagerItem No Items Selected Inga poster valda &Add to selected Service Item &Lägg till i vald post i körschemat You must select one or more items to preview. Du mÃ¥ste välja en eller flera poster att förhandsgranska. You must select one or more items to send live. Du mÃ¥ste välja en eller flera poster att visa live. You must select one or more items. Du mÃ¥ste välja en eller flera poster. You must select an existing service item to add to. Du mÃ¥ste välja en befintlig post i körschemat att lägga till i. Invalid Service Item Ogiltig körschemapost You must select a %s service item. Du mÃ¥ste välja en post av typen %s i körschemat. You must select one or more items to add. Du mÃ¥ste välja en eller flera poster att lägga till. No Search Results Inga sökresultat Invalid File Type Ogiltig filtyp Invalid File %s. Suffix not supported Ogiltig fil %s. Filändelsen stöds ej &Clone &Klona Duplicate files were found on import and were ignored. Dubblettfiler hittades vid importen och ignorerades. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics>-tagg saknas. <verse> tag is missing. <verse>-tagg saknas. OpenLP.PJLink1 Unknown status Okänd status No message Inget meddelande Error while sending data to projector Fel vid sändning av data till projektorn Undefined command: Odefinierat kommando: OpenLP.PlayerTab Players Spelare Available Media Players Tillgängliga mediaspelare Player Search Order Sökordning för spelare Visible background for videos with aspect ratio different to screen. Bakgrund till videor med annat bildförhÃ¥llande än skärmen. %s (unavailable) %s (ej tillgänglig) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details Moduldetaljer Status: Status: Active Aktiv Inactive Inaktiv %s (Inactive) %s (Inaktiv) %s (Active) %s (Aktiv) %s (Disabled) %s (Ej valbar) Manage Plugins OpenLP.PrintServiceDialog Fit Page Passa sidan Fit Width Passa bredden OpenLP.PrintServiceForm Options Alternativ Copy Kopiera Copy as HTML Kopiera som HTML Zoom In Zooma in Zoom Out Zooma ut Zoom Original Ã…terställ zoom Other Options Övriga alternativ Include slide text if available Inkludera sidtext om tillgänglig Include service item notes Inkludera anteckningar Include play length of media items Inkludera spellängd för mediaposter Add page break before each text item Lägg till sidbrytning före varje textpost Service Sheet Körschema Print Skriv ut Title: Titel: Custom Footer Text: Anpassad sidfot: OpenLP.ProjectorConstants OK OK General projector error Allmänt projektorfel Not connected error Anslutningsfel Lamp error Lampfel Fan error Fläktfel High temperature detected Hög temperatur uppmätt Cover open detected Öppet hölje upptäckt Check filter Kontrollera filter Authentication Error Autentiseringsfel Undefined Command Odefinierat kommando Invalid Parameter Ogiltig parameter Projector Busy Projektor upptagen Projector/Display Error Projektor-/skärmfel Invalid packet received Ogiltigt paket mottaget Warning condition detected VarningstillstÃ¥nd upptäckt Error condition detected FeltillstÃ¥nd upptäckt PJLink class not supported PJLink-klass ej stödd Invalid prefix character Ogiltigt prefixtecken The connection was refused by the peer (or timed out) Anslutningen nekades av noden (eller tog för lÃ¥ng tid) The remote host closed the connection Fjärrvärden stängde anslutningen The host address was not found Värdadressen hittades inte The socket operation failed because the application lacked the required privileges Socket-operationen misslyckades eftersom programmet saknade rättigheter The local system ran out of resources (e.g., too many sockets) Det lokalal systemet fick slut pÃ¥ resurser (t.ex. för mÃ¥nga socketar) The socket operation timed out Socket-operationen tog för lÃ¥ng tid The datagram was larger than the operating system's limit Datapaketet var större än operativsystemets begränsning An error occurred with the network (Possibly someone pulled the plug?) Ett fel inträffade med nätverket (drog nÃ¥gon ur sladden?) The address specified with socket.bind() is already in use and was set to be exclusive Adressen för socket.bind() används redan och var inställd att vara exklusiv The address specified to socket.bind() does not belong to the host Adressen för socket.bind() tillhör inte värden The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Den begärda socket-operationen stöds inte av det lokala operativsystemet (t.ex. bristande IPv6-stöd) The socket is using a proxy, and the proxy requires authentication Socketen använder en proxy och proxyn kräver autentisering The SSL/TLS handshake failed SSL/TLS-handskakningen misslyckades The last operation attempted has not finished yet (still in progress in the background) Den senast startade operationen har inte blivit klar än (kör fortfarande i bakgrunden) Could not contact the proxy server because the connection to that server was denied Kunde inte kontakta proxyservern eftersom anslutningen till den servern nekades The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Anslutningen till proxyservern stängdes oväntat (innan anslutningen till slutnoden hade etablerats) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Anslutningen till proxyservern tog för lÃ¥ng tid, alternativt slutade servern att svara under autentiseringsfasen. The proxy address set with setProxy() was not found Proxyadressen som angavs med setProxy() hittades An unidentified error occurred Ett oidentifierat fel inträffade Not connected Ej ansluten Connecting Ansluter Connected Ansluten Getting status Hämtar status Off Av Initialize in progress Initialisering pÃ¥gÃ¥r Power in standby Ställd i standby Warmup in progress Uppvärmning pÃ¥gÃ¥r Power is on PÃ¥slagen Cooldown in progress Nedkylning pÃ¥gÃ¥r Projector Information available Projektorinformation tillgänglig Sending data Sänder data Received data Tog emot data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Anslutning till proxyservern misslyckades eftersom svaret frÃ¥n proxyservern inte gick att tolka OpenLP.ProjectorEdit Name Not Set Namn inte inställt You must enter a name for this entry.<br />Please enter a new name for this entry. Du mÃ¥ste ange ett namn för den här posten.<br />Ange ett nytt namn för den här posten. Duplicate Name Dublettnamn OpenLP.ProjectorEditForm Add New Projector Lägg till ny projektor Edit Projector Redigera projektor IP Address IP-adress Port Number Portnummer PIN PIN Name Namn Location Plats Notes Anteckningar Database Error Databasfel There was an error saving projector information. See the log for the error Det uppstod ett fel när projektorinformationen skulle sparas. Se felet i loggen OpenLP.ProjectorManager Add Projector Lägg till projektor Add a new projector Lägg till en ny projektor Edit Projector Redigera projektor Edit selected projector Redigera den valda projektorn Delete Projector Ta bort projektor Delete selected projector Ta bort den valda projektorn Select Input Source Välj bildkälla Choose input source on selected projector Välj bildkälla för den valda projektorn View Projector Visa projektor View selected projector information Visa information om den valda projektorn Connect to selected projector Anslut till den valda projektorn Connect to selected projectors Anslut till de valda projektorerna Disconnect from selected projectors Koppla frÃ¥n de valda projektorerna Disconnect from selected projector Koppla frÃ¥n den valda projektorn Power on selected projector Starta den valda projektorn Standby selected projector Ställ projektor i viloläge Put selected projector in standby Försätt den valda projektorn i viloläge Blank selected projector screen Släck den valda projektorns bild Show selected projector screen Visa den valda projektorns bild &View Projector Information Visa &projektorinformation &Edit Projector &Redigera projektor &Connect Projector &Anslut projektor D&isconnect Projector &Koppla frÃ¥n projektor Power &On Projector &Starta projektor Power O&ff Projector St&äng av projektor Select &Input Välj &ingÃ¥ng Edit Input Source Redigera bildkälla &Blank Projector Screen S&läck projektorbild &Show Projector Screen Visa projektor&bild &Delete Projector &Ta bort projektor Name Namn IP IP Port Port Notes Anteckningar Projector information not available at this time. Projektorinformation finns inte tillgänglig för tillfället. Projector Name Projektornamn Manufacturer Tillverkare Model Modell Other info Övrig info Power status Driftstatus Shutter is Bildluckan är Closed Stängd Current source input is Nuvarande bildkälla är Lamp Lampa On PÃ¥ Off Av Hours Timmar No current errors or warnings Inga fel eller varningar just nu Current errors/warnings Nuvarande fel/varningar Projector Information Projektorinformation No message Inget meddelande Not Implemented Yet Inte implementerat ännu Delete projector (%s) %s? Ta bort projektor (%s) %s? Are you sure you want to delete this projector? Är du säker pÃ¥ att du vill ta bort den här projektorn? OpenLP.ProjectorPJLink Fan Fläkt Lamp Lampa Temperature Temperatur Cover Hölje Filter Filter Other Övrigt OpenLP.ProjectorTab Projector Projektor Communication Options Kommunikationsinställningar Connect to projectors on startup Anslut till projektorer vid start Socket timeout (seconds) Socket-timeout (sekunder) Poll time (seconds) FrÃ¥geintervall (sekunder) Tabbed dialog box Flikindelad dialogruta Single dialog box Odelad dialogruta OpenLP.ProjectorWizard Duplicate IP Address Dublett-IP-adress Invalid IP Address Ogiltig IP-adress Invalid Port Number Ogiltigt portnummer OpenLP.ScreenList Screen Skärm primary primär OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Längd</strong>: %s [slide %d] [bild %d] OpenLP.ServiceItemEditForm Reorder Service Item Arrangera om körschemapost OpenLP.ServiceManager Move to &top Lägg &först Move item to the top of the service. Lägg posten först i körschemat. Move &up Flytta &upp Move item up one position in the service. Flytta upp posten ett steg i körschemat. Move &down Flytta &ner Move item down one position in the service. Flytta ner posten ett steg i körschemat. Move to &bottom Lägg &sist Move item to the end of the service. Lägg posten sist i körschemat. &Delete From Service &Ta bort frÃ¥n körschemat Delete the selected item from the service. Ta bort den valda posten frÃ¥n körschemat. &Add New Item &Lägg till ny post &Add to Selected Item Lägg till i &vald post &Edit Item &Redigera post &Reorder Item Arrangera &om post &Notes &Anteckningar &Change Item Theme &Byt postens tema File is not a valid service. Filen är inte ett giltigt körschema. Missing Display Handler Visningsmodul saknas Your item cannot be displayed as there is no handler to display it Posten kan inte visas eftersom det inte finns nÃ¥gon visningsmodul för att visa den Your item cannot be displayed as the plugin required to display it is missing or inactive Posten kan inte visas eftersom modulen som krävs för att visa den saknas eller är inaktiv &Expand all &Expandera alla Expand all the service items. Expandera alla poster i körschemat. &Collapse all &Fäll ihop alla Collapse all the service items. Fäll ihop alla poster i körschemat. Open File Öppna fil Moves the selection down the window. Flyttar urvalet nerÃ¥t i fönstret. Move up Flytta upp Moves the selection up the window. Flyttar urvalet uppÃ¥t i fönstret. Go Live Lägg ut bilden Send the selected item to Live. Visa den valda posten live. &Start Time &Starttid Show &Preview &Förhandsgranska Modified Service Körschemat ändrat The current service has been modified. Would you like to save this service? Det nuvarande körschemat har ändrats. Vill du spara körschemat? Custom Service Notes: Egna körschemaanteckningar: Notes: Anteckningar: Playing time: Speltid: Untitled Service Nytt körschema File could not be opened because it is corrupt. Filen kunde inte öppnas eftersom den är korrupt. Empty File Tom fil This service file does not contain any data. Det här körschemat innehÃ¥ller inte nÃ¥gon data. Corrupt File Korrupt fil Load an existing service. Ladda ett befintligt körschema. Save this service. Spara körschemat. Select a theme for the service. Välj ett tema för körschemat. Slide theme Sidtema Notes Anteckningar Edit Redigera Service copy only Endast kopian i körschemat Error Saving File Fel vid filsparande There was an error saving your file. Det inträffade ett fel när filen skulle sparas. Service File(s) Missing Fil(er) i körschemat saknas &Rename... &Byt namn... Create New &Custom Slide Skapa ny an&passad sida &Auto play slides &Växla sidor automatiskt Auto play slides &Loop Växla sidor automatiskt i &loop Auto play slides &Once Växla sidor automatiskt &en gÃ¥ng &Delay between slides &Tid mellan växling OpenLP Service Files (*.osz *.oszl) OpenLP körschemafiler (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP körschemafiler (*.osz);; OpenLP körschemafiler - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP körschemafiler (*.osz);; File is not a valid service. The content encoding is not UTF-8. Filen är inte ett giltigt körschema. InnehÃ¥llets teckenkodning är inte UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Körschemat som du försöker öppna har ett gammalt format. Spara om den med OpenLP 2.0.2 eller nyare. This file is either corrupt or it is not an OpenLP 2 service file. Filen är antingen skadad eller sÃ¥ är det inte en körschemafil för OpenLP 2. &Auto Start - inactive &Autostart - inaktiverat &Auto Start - active &Autostart - aktiverat Input delay Inmatningsfördröjning Delay between slides in seconds. Tid i sekunder mellan sidorna. Rename item title Byt titel pÃ¥ post Title: Titel: An error occurred while writing the service file: %s Ett fel inträffade när körschemafilen skrevs: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Följande fil(er) i körschemat saknas: %s Filerna kommer att tas bort frÃ¥n körschemat om du gÃ¥r vidare och sparar. OpenLP.ServiceNoteForm Service Item Notes Körschemaanteckningar OpenLP.SettingsForm Configure OpenLP Konfigurera OpenLP OpenLP.ShortcutListDialog Action Ã…tgärd Shortcut Genväg Duplicate Shortcut Dubblett The shortcut "%s" is already assigned to another action, please use a different shortcut. Genvägen "%s" är redan kopplad till en annan Ã¥tgärd; välj en annan genväg. Alternate Alternativ Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Välj en Ã¥tgärd och använd knapparna nedan för att skapa en ny primär eller alternativ genväg. Default Standard Custom Anpassad Capture shortcut. Skapa genväg. Restore the default shortcut of this action. Ã…terställ till standardgenvägen för den här Ã¥tgärden. Restore Default Shortcuts Ã…terställ till standardgenvägar Do you want to restore all shortcuts to their defaults? Vill du Ã¥terställa alla genvägar till standardvärdena? Configure Shortcuts Konfigurera genvägar OpenLP.SlideController Hide Dölj Go To GÃ¥ till Blank Screen Släck skärm Blank to Theme Släck till tema Show Desktop Visa skrivbord Previous Service FöregÃ¥ende post Next Service Nästa post Escape Item Avbryt post Move to previous. Flytta till föregÃ¥ende. Move to next. Flytta till nästa. Play Slides Sidvisning Delay between slides in seconds. Tid i sekunder mellan sidorna. Move to live. Visa live. Add to Service. Lägg till i körschema. Edit and reload song preview. Redigera och uppdatera förhandsvisning. Start playing media. Starta uppspelning. Pause audio. Pausa ljud. Pause playing media. Pausa spelande media. Stop playing media. Stoppa spelande media. Video position. Videoposition. Audio Volume. Ljudvolym. Go to "Verse" GÃ¥ till "Vers" Go to "Chorus" GÃ¥ till "Refräng" Go to "Bridge" GÃ¥ till "Stick" Go to "Pre-Chorus" GÃ¥ till "Brygga" Go to "Intro" GÃ¥ till "Intro" Go to "Ending" GÃ¥ till "Avslut" Go to "Other" GÃ¥ till "Övrigt" Previous Slide FöregÃ¥ende bild Next Slide Nästa bild Pause Audio Pausa ljud Background Audio Bakgrundsljud Go to next audio track. GÃ¥ till nästa ljudspÃ¥r Tracks SpÃ¥r OpenLP.SourceSelectForm Select Projector Source Välj projektorkälla Edit Projector Source Text Redigera text för projektorkälla Ignoring current changes and return to OpenLP Ignorera gjorda ändringar och Ã¥tergÃ¥ till OpenLP Delete all user-defined text and revert to PJLink default text Ta bort all text frÃ¥n användaren och Ã¥terställ till PJLinks standardtext Discard changes and reset to previous user-defined text Förkasta ändringar och Ã¥terställ till tidigare användarinställda text Save changes and return to OpenLP Spara ändringar och Ã¥tergÃ¥ till OpenLP Delete entries for this projector Ta bort uppgifter för den här projektorn Are you sure you want to delete ALL user-defined source input text for this projector? Är du säker pÃ¥ att du vill ta bort ALL användarinställd text för bildkälla för den här projektorn? OpenLP.SpellTextEdit Spelling Suggestions Stavningsförslag Formatting Tags Format-taggar Language: SprÃ¥k: OpenLP.StartTimeForm Theme Layout Temalayout The blue box shows the main area. Den blÃ¥a rutan visar huvudytan. The red box shows the footer. Den röda rutan visar sidfoten. OpenLP.StartTime_form Item Start and Finish Time Start- och sluttid Hours: Timmar: Minutes: Minuter: Seconds: Sekunder: Start Start Finish Slut Length Längd Time Validation Error Tidvalideringsfel Finish time is set after the end of the media item Sluttiden är satt till efter mediapostens slut Start time is after the finish time of the media item Starttiden är efter mediapostens slut OpenLP.ThemeForm (approximately %d lines per slide) (ungefär %d rader per sida) OpenLP.ThemeManager Create a new theme. Skapa ett nytt tema. Edit Theme Redigera tema Edit a theme. Redigera tema. Delete Theme Ta bort tema Delete a theme. Ta bort tema. Import Theme Importera tema Import a theme. Importera tema. Export Theme Exportera tema Export a theme. Exportera tema. &Edit Theme &Redigera tema &Delete Theme &Ta bort tema Set As &Global Default Ange som &globalt tema %s (default) %s (standard) You must select a theme to edit. Du mÃ¥ste välja ett tema att redigera. You are unable to delete the default theme. Du kan inte ta bort standardtemat. You have not selected a theme. Du har inte valt ett tema. Save Theme - (%s) Spara tema - (%s) Theme Exported Tema exporterat Your theme has been successfully exported. Temat exporterades utan problem. Theme Export Failed Temaexport misslyckades Select Theme Import File Välj temafil File is not a valid theme. Filen är inte ett giltigt tema. &Copy Theme &Kopiera tema &Rename Theme &Byt namn pÃ¥ tema &Export Theme &Exportera tema You must select a theme to rename. Du mÃ¥ste välja ett tema att byta namn pÃ¥. Rename Confirmation Bekräftelse av namnbyte Rename %s theme? Byt namn pÃ¥ temat %s? You must select a theme to delete. Du mÃ¥ste välja ett tema att ta bort. Delete Confirmation Borttagningsbekräftelse Delete %s theme? Ta bort temat %s? Validation Error Valideringsfel A theme with this name already exists. Ett tema med det här namnet finns redan. Copy of %s Copy of <theme name> Kopia av %s Theme Already Exists Tema finns redan Theme %s already exists. Do you want to replace it? Temat %s finns redan. Vill du ersätta det? The theme export failed because this error occurred: %s Temaexporten misslyckades med följande fel: %s OpenLP Themes (*.otz) OpenLP-teman (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Temaguiden Welcome to the Theme Wizard Välkommen till temaguiden Set Up Background Ställ in bakgrund Set up your theme's background according to the parameters below. Ställ in temats bakgrund enligt parametrarna nedan. Background type: Bakgrundstyp: Gradient Gradient Gradient: Gradient: Horizontal Horisontell Vertical Vertikal Circular Cirkulär Top Left - Bottom Right Uppe vänster - nere höger Bottom Left - Top Right Nere vänster - uppe höger Main Area Font Details Huvudytans tecken Define the font and display characteristics for the Display text Definiera font och egenskaper för visningstexten Font: Teckensnitt: Size: Storlek: Line Spacing: RadavstÃ¥nd: &Outline: &Kant: &Shadow: Sk&ugga: Bold Fetstil Italic Kursiv Footer Area Font Details Sidfotens tecken Define the font and display characteristics for the Footer text Definiera font och egenskaper för sidfotstexten Text Formatting Details Textformatering Allows additional display formatting information to be defined Ytterligare inställningsmöjligheter för visningsformatet Horizontal Align: Horisontell justering: Left Vänster Right Höger Center Centrera Output Area Locations Visningsytornas positioner &Main Area &Huvudyta &Use default location Använd &standardposition X position: X-position: px px Y position: Y-position: Width: Bredd: Height: Höjd: Use default location Använd standardposition Theme name: Temanamn: Edit Theme - %s Redigera tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Den här guiden hjälper dig att skapa och redigera dina teman. Klicka pÃ¥ Nästa för att börja processen med att ställa in bakgrund. Transitions: ÖvergÃ¥ngar: &Footer Area &Sidfotsyta Starting color: Startfärg: Ending color: Slutfärg: Background color: Bakgrundsfärg: Justify Marginaljustera Layout Preview Förhandsgranskning av layout Transparent Transparent Preview and Save Förhandsgranska och spara Preview the theme and save it. Förhanskgranska temat och spara det. Background Image Empty Bakgrundsbild tom Select Image Välj bild Theme Name Missing Temanamn saknas There is no name for this theme. Please enter one. Temat saknar namn. Välj ett namn för temat. Theme Name Invalid Temanamn ogiltigt Invalid theme name. Please enter one. Ogiltigt namn pÃ¥ temat. Välj ett nytt. Solid color Enfärgad color: Färg: Allows you to change and move the Main and Footer areas. LÃ¥ter dig ändra och flytta huvudytan och sidfotsytan. You have not selected a background image. Please select one before continuing. Du har inte valt bakgrundsbild. Välj en innan du fortsätter. OpenLP.ThemesTab Global Theme Globalt tema Theme Level TemanivÃ¥ S&ong Level &SÃ¥ngnivÃ¥ Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Använd temat för varje sÃ¥ng i databasen indviduellt. Om en sÃ¥ng inte har ett associerat tema, använd körschemats tema. Om körschemat inte har ett tema, använd det globala temat. &Service Level &KörschemanivÃ¥ Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Använd temat för körschemat och ignorera sÃ¥ngernas individuella teman. Om körschemat inte har ett tema, använd det globala temat. &Global Level &Global nivÃ¥ Use the global theme, overriding any themes associated with either the service or the songs. Använd det globala temat och ignorera teman associerade med körschemat eller sÃ¥ngerna. Themes Teman Universal Settings Allmänna inställningar &Wrap footer text &Radbryt sidfottext OpenLP.Ui Delete the selected item. Ta bort den valda posten. Move selection up one position. Flytta upp urvalet ett steg. Move selection down one position. Flytta ner urvalet ett steg. &Vertical Align: &Vertikal justering: Finished import. Importen är slutförd. Format: Format: Importing Importerar Importing "%s"... Importerar "%s"... Select Import Source Välj importkälla Select the import format and the location to import from. Välj importformat och plats att importera frÃ¥n. Open %s File Öppna %s-fil %p% %p % Ready. Klar. Starting import... Startar import... You need to specify at least one %s file to import from. A file type e.g. OpenSong Du mÃ¥ste ange Ã¥tminstone en %s-fil att importera frÃ¥n. Welcome to the Bible Import Wizard Välkommen till bibelimportguiden Welcome to the Song Export Wizard Välkommen till sÃ¥ngexportguiden Welcome to the Song Import Wizard Välkommen till sÃ¥ngimportguiden Author Singular Författare Authors Plural Författare © Copyright symbol. © Song Maintenance SÃ¥ngunderhÃ¥ll Topic Singular Ämne Topics Plural Ämnen Title and/or verses not found Titel och/eller verser hittades inte XML syntax error XML-syntaxfel Welcome to the Bible Upgrade Wizard Välkommen till bibeluppgraderingsguiden Open %s Folder Öppna %s-katalog You need to specify one %s file to import from. A file type e.g. OpenSong Du mÃ¥ste ange en %s-fil att importera frÃ¥n. You need to specify one %s folder to import from. A song format e.g. PowerSong Du mÃ¥ste ange en %s-katalog att importera frÃ¥n. Importing Songs Importerar sÃ¥nger Welcome to the Duplicate Song Removal Wizard Välkommen till guiden för borttagning av sÃ¥ngdubletter Written by Skriven av Author Unknown Okänd författare About Om &Add &Lägg till Add group Lägg till grupp Advanced Avancerat All Files Alla filer Automatic Automatiskt Background Color Bakgrundsfärg Bottom Botten Browse... Bläddra... Cancel Avbryt CCLI number: CCLI-nummer: Create a new service. Skapa ett nytt körschema. Confirm Delete Bekräfta borttagning Continuous Kontinuerlig Default Standard Default Color: Standardfärg: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Körschema %Y-%m-%d %H-%M &Delete &Ta bort Display style: Visningsstil: Duplicate Error Dubblettfel &Edit &Redigera Empty Field Tomt fält Error Fel Export Exportera File Fil File Not Found Hittar inte fil File %s not found. Please try selecting it individually. Filen %s hittas inte. Försök att välja den separat. pt Abbreviated font pointsize unit pt Help Hjälp h The abbreviated unit for hours h Invalid Folder Selected Singular Felaktig katalog vald Invalid File Selected Singular Felaktig fil vald Invalid Files Selected Plural Felaktiga filer valda Image Bild Import Importera Layout style: Layout: Live Live Live Background Error Live-bakgrundsproblem Live Toolbar Live-verktygsrad Load Ladda Manufacturer Singular Tillverkare Manufacturers Plural Tillverkare Model Singular Modell Models Plural Modeller m The abbreviated unit for minutes min Middle Mitten New Nytt New Service Nytt körschema New Theme Nytt tema Next Track Nästa spÃ¥r No Folder Selected Singular Ingen katalog vald No File Selected Singular Ingen fil vald No Files Selected Plural Inga filer valda No Item Selected Singular Ingen post vald No Items Selected Plural Inga poster valda OpenLP is already running. Do you wish to continue? OpenLP körs redan. Vill du fortsätta? Open service. Öppna körschema. Play Slides in Loop Kör visning i slinga Play Slides to End Kör visning till slutet Preview Förhandsgranskning Print Service Skriv ut körschema Projector Singular Projektor Projectors Plural Projektorer Replace Background Ersätt bakgrund Replace live background. Ersätt live-bakgrund. Reset Background Ã…terställ bakgrund Reset live background. Ã…terställ live-bakgrund. s The abbreviated unit for seconds s Save && Preview Spara && förhandsgranska Search Sök Search Themes... Search bar place holder text Sök teman... You must select an item to delete. Du mÃ¥ste välja en post att ta bort. You must select an item to edit. Du mÃ¥ste välja en post att redigera. Settings Inställningar Save Service Spara körschema Service Körschema Optional &Split &Brytanvisning Split a slide into two only if it does not fit on the screen as one slide. Dela en sida i tvÃ¥ bara om den inte ryms som en sida pÃ¥ skärmen. Start %s Starta %s Stop Play Slides in Loop Stoppa slingvisning Stop Play Slides to End Stoppa visning till slutet Theme Singular Tema Themes Plural Teman Tools Verktyg Top Toppen Unsupported File Ej stödd fil Verse Per Slide En vers per sida Verse Per Line En vers per rad Version Version View Visa View Mode Visningsläge CCLI song number: CCLI-sÃ¥ngnummer: Preview Toolbar Förhandsgranskningsverktygsrad OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s och %s %s, and %s Locale list separator: end %s, och %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Gränssnitt för val av källa PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentationsmodul</strong><br />Presentationsmodulen ger möjlighet att visa presentationer med en mängd olika program. Val av presentationsprogram görs av användaren i en flervalslista. Presentation name singular Presentation Presentations name plural Presentationer Presentations container title Presentationer Load a new presentation. Ladda en ny presentation. Delete the selected presentation. Ta bort den valda presentationen. Preview the selected presentation. Förhandsgranska den valda presentationen. Send the selected presentation live. Visa den valda presentationen live. Add the selected presentation to the service. Lägg till den valda presentationen i körschemat. PresentationPlugin.MediaItem Select Presentation(s) Välj presentation(er) Automatic Automatiskt Present using: Presentera med: File Exists Fil finns redan A presentation with that filename already exists. En presentation med det namnet finns redan. This type of presentation is not supported. Den här presentationstypen stöds inte. Presentations (%s) Presentationer (%s) Missing Presentation Presentation saknas The presentation %s is incomplete, please reload. Presentationen %s är inte komplett. Försök att ladda om den. The presentation %s no longer exists. Presentationen %s finns inte längre. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Ett fel inträffade i Powerpoint-integrationen och presentationen kommer att avbrytas. Starta om presentationen om du vill visa den. PresentationPlugin.PresentationTab Available Controllers Tillgängliga presentationsprogram %s (unavailable) %s (ej tillgänglig) Allow presentation application to be overridden TillÃ¥t Ã¥sidosättning av valt presentationsprogram PDF options PDF-alternativ Use given full path for mudraw or ghostscript binary: Använd följande fulla sökväg till körbar fil för mudraw eller ghostscript: Select mudraw or ghostscript binary. Välj körbar fil för mudraw eller ghostscript. The program is not ghostscript or mudraw which is required. Programmet är inte ghostscript eller mudraw, vilket krävs. PowerPoint options PowerPoint-alternativ Clicking on a selected slide in the slidecontroller advances to next effect. Klick pÃ¥ en vald bild i bildkontrollen tar fram nästa effekt. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). LÃ¥t PowerPoint kontrollera storlek och position pÃ¥ presentationsfönstret (tillfällig lösning pÃ¥ skalningsproblem i Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Fjärrstyrningsmodul</strong><br />Fjärrstyrningsmodulen ger möjlighet att skicka meddelanden till OpenLP pÃ¥ en annan dator via en webbläsare eller via fjärrstyrnings-API:et. Remote name singular Fjärrstyrning Remotes name plural Fjärrstyrningar Remote container title Fjärrstyrning Server Config Change Ändring av serverinställningar Server configuration changes will require a restart to take effect. Ändring av serverinställningar kräver en omstart för att börja gälla. RemotePlugin.Mobile Service Manager Körschema Slide Controller Bildkontroll Alerts Meddelanden Search Sök Home Hem Refresh Uppdatera Blank Släck Theme Tema Desktop Skrivbord Show Visa Prev Förra Next Nästa Text Text Show Alert Visa meddelande Go Live Lägg ut bilden Add to Service Lägg till i körschema Add &amp; Go to Service Lägg till &amp; gÃ¥ till körschema No Results Inga resultat Options Alternativ Service Körschema Slides Bilder Settings Inställningar Remote Fjärrstyrning Stage View Scenbild Live View Live-bild RemotePlugin.RemoteTab Serve on IP address: Kör pÃ¥ IP-adress: Port number: Portnummer: Server Settings Serverinställningar Remote URL: Fjärrstyrningsadress: Stage view URL: Scenbildsadress: Display stage time in 12h format Visa scentiden i 12-timmarsformat Android App Android-app Live view URL: URL till livebild: HTTPS Server HTTPS-server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Kunde inte hitta ett SSL-certifikat. HTTPS-servern kommer inte att vara tillgänglig om inte ett SSL-certifikat hittas. Läs i manualen för mer information. User Authentication Användarautentisering User id: Användar-ID: Password: Lösenord: Show thumbnails of non-text slides in remote and stage view. Visa miniatyrer av icketextbilder i fjärrstyrning och scenbild. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Skanna QR-koden eller klicka <a href="%s">ladda ner</a> för att installera Android-appen frÃ¥n Google Play. SongUsagePlugin &Song Usage Tracking &SÃ¥ngloggning &Delete Tracking Data &Ta bort loggdata Delete song usage data up to a specified date. Ta bort sÃ¥nganvändningsdata fram till ett givet datum. &Extract Tracking Data &Extrahera loggdata Generate a report on song usage. Generera en rapport över sÃ¥nganvändning. Toggle Tracking Växla loggning Toggle the tracking of song usage. Växla sÃ¥ngloggning pÃ¥/av. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SÃ¥nganvändningsmodul</strong><br />Den här modulen loggar användning av sÃ¥ngerna som visas. SongUsage name singular SÃ¥nganvändning SongUsage name plural SÃ¥nganvändning SongUsage container title SÃ¥nganvändning Song Usage SÃ¥nganvändning Song usage tracking is active. SÃ¥ngloggning är aktiv. Song usage tracking is inactive. SÃ¥ngloggning är inaktiv. display visa printed utskriven SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Ta bort sÃ¥nganvändningsdata Delete Selected Song Usage Events? Ta bort vald sÃ¥nganvändningsdata? Are you sure you want to delete selected Song Usage data? Vill du verkligen ta bort vald sÃ¥nganvändningsdata? Deletion Successful Borttagning lyckades Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Välj datum fram till vilket sÃ¥nganvändningshistorik ska tas bort. All data sparad före detta datum kommer att tas bort permanent. All requested data has been deleted successfully. All begärd data har tagits bort. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction SÃ¥nganvändningsutdrag Select Date Range Välj datumspann to till Report Location MÃ¥lmapp Output File Location Lagringssökväg usage_detail_%s_%s.txt användning_%s_%s.txt Report Creation Rapportskapande Report %s has been successfully created. Rapport %s skapades utan problem. Output Path Not Selected MÃ¥lmapp inte vald You have not set a valid output location for your song usage report. Please select an existing path on your computer. Du har inte valt en giltig plats där sÃ¥nganvändningsrapporten kan skapas. Välj en sökväg till en befintlig mapp pÃ¥ din dator. Report Creation Failed Rapportskapande misslyckades An error occurred while creating the report: %s Ett fel inträffade när rapporten skapades: %s SongsPlugin &Song &SÃ¥ng Import songs using the import wizard. Importera sÃ¥nger med importguiden. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>SÃ¥ngmodul</strong><br />SÃ¥ngmodulen ger möjlighet att visa och hantera sÃ¥nger. &Re-index Songs Uppdatera sÃ¥ng&index Re-index the songs database to improve searching and ordering. Indexera om sÃ¥ngdatabasen för att förbättra sökning och sortering. Reindexing songs... Indexerar om sÃ¥nger... Arabic (CP-1256) Arabiska (CP-1256) Baltic (CP-1257) Baltiska (CP-1257) Central European (CP-1250) Centraleuropeisk (CP-1250) Cyrillic (CP-1251) Kyrilliska (CP-1251) Greek (CP-1253) Grekiska (CP-1253) Hebrew (CP-1255) Hebreiska (CP-1255) Japanese (CP-932) Japanska (CP-932) Korean (CP-949) Koreanska (CP-949) Simplified Chinese (CP-936) Förenklad kinesiska (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditionell kinesiska (CP-950) Turkish (CP-1254) Turkiska (CP-1254) Vietnam (CP-1258) Vietnamesiska (CP-1258) Western European (CP-1252) Västeuropeisk (CP-1252) Character Encoding Teckenkodning The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Inställningen av teckenuppsättning ansvarar för rätt teckenrepresentation. Vanligtvis fungerar den förvalda inställningen bra. Please choose the character encoding. The encoding is responsible for the correct character representation. Välj teckenkodning. Teckenkodningen ansvarar för rätt teckenrepresentation. Song name singular SÃ¥ng Songs name plural SÃ¥nger Songs container title SÃ¥nger Exports songs using the export wizard. Exportera sÃ¥nger med exportguiden. Add a new song. Lägg till en ny sÃ¥ng. Edit the selected song. Redigera den valda sÃ¥ngen. Delete the selected song. Ta bort den valda sÃ¥ngen. Preview the selected song. Förhandsgranska den valda sÃ¥ngen. Send the selected song live. Visa den valda sÃ¥ngen live. Add the selected song to the service. Lägg till den valda sÃ¥ngen i körschemat. Reindexing songs Indexerar om sÃ¥nger CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importera sÃ¥nger frÃ¥n CCLI:s SongSelect-tjänst. Find &Duplicate Songs Leta efter sÃ¥ng&dubletter Find and remove duplicate songs in the song database. Sök efter och ta bort dubletter av sÃ¥nger i sÃ¥ngdatabasen. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Text Music Author who wrote the music of a song Musik Words and Music Author who wrote both lyrics and music of a song Text och musik Translation Author who translated the song Översättning SongsPlugin.AuthorsForm Author Maintenance Författarhantering Display name: Visningsnamn: First name: Förnamn: Last name: Efternamn: You need to type in the first name of the author. Du mÃ¥ste ange författarens förnamn. You need to type in the last name of the author. Du mÃ¥ste ange författarens efternamn. You have not set a display name for the author, combine the first and last names? Du har inte angett ett visningsnamn för författaren; kombinera för- och efternamn? SongsPlugin.CCLIFileImport The file does not have a valid extension. Filen saknar giltig filändelse. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ogiltig DreamBeam-sÃ¥ngfil. DreamSong-tagg saknas. SongsPlugin.EasyWorshipSongImport Administered by %s Administrerad av %s "%s" could not be imported. %s "%s" kunde inte importeras. %s Unexpected data formatting. Okänt dataformat. No song text found. Ingen sÃ¥ngtext hittades. [above are Song Tags with notes imported from EasyWorship] [här ovan är sÃ¥ngtaggar med anteckningar importerade frÃ¥n EasyWorship] This file does not exist. Den här filen finns inte. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Kunde inte hitta filen "Songs.MB". Den mÃ¥ste ligga i samma mapp som filen "Songs.DB". This file is not a valid EasyWorship database. Den här filen är inte en giltig EasyWorship-databas. Could not retrieve encoding. Kunde inte fastställa kodning. SongsPlugin.EditBibleForm Meta Data Metadata Custom Book Names Anpassade boknamn SongsPlugin.EditSongForm Song Editor SÃ¥ngredigering &Title: &Titel: Alt&ernate title: &Alternativ titel: &Lyrics: &SÃ¥ngtext: &Verse order: &Versordning: Ed&it All Red&igera alla Title && Lyrics Titel && sÃ¥ngtext &Add to Song &Lägg till för sÃ¥ng &Remove &Ta bort A&dd to Song Lä&gg till för sÃ¥ng R&emove Ta &bort New &Theme Nytt &tema Copyright Information Copyrightinformation Comments Kommentarer Theme, Copyright Info && Comments Tema, copyrightinfo && kommentarer Add Author Lägg till författare This author does not exist, do you want to add them? Författaren finns inte; vill du lägga till den? This author is already in the list. Författaren finns redan i listan. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Du har inte valt en giltig författare. Välj antingen en författare frÃ¥n listan, eller skriv in en ny författare och klicka "Lägg till för sÃ¥ng" för att lägga till den nya författaren. Add Topic Lägg till ämne This topic does not exist, do you want to add it? Ämnet finns inte; vill du skapa det? This topic is already in the list. Ämnet finns redan i listan. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Du har inte valt ett giltigt ämne. Välj antingen ett ämne frÃ¥n listan, eller skriv in ett nytt ämne och klicka "Lägg till för sÃ¥ng" för att lägga till det nya ämnet. You need to type in a song title. Du mÃ¥ste ange en sÃ¥ngtitel. You need to type in at least one verse. Du mÃ¥ste ange Ã¥tminstone en vers. You need to have an author for this song. Du mÃ¥ste ange en författare för sÃ¥ngen. Linked Audio Länkat ljud Add &File(s) Lägg till &fil(er) Add &Media Lägg till &media Remove &All &Ta bort alla Open File(s) Öppna fil(er) <strong>Warning:</strong> Not all of the verses are in use. <strong>Varning:</strong> Alla verser används inte. <strong>Warning:</strong> You have not entered a verse order. <strong>Varning:</strong> Du har inte angivit nÃ¥gon versordning. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Det finns ingen vers som svarar mot "%(invalid)s". Giltiga poster är %(valid)s. Ange verserna separerade med blanksteg. Invalid Verse Order Ogiltig versordning &Edit Author Type Redigera &författartyp Edit Author Type Redigera författartyp Choose type for this author Välj typ för den här författaren There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Redigera vers &Verse type: &Verstyp: &Insert &Infoga Split a slide into two by inserting a verse splitter. Dela en sida i tvÃ¥ genom att infoga en versdelare. SongsPlugin.ExportWizardForm Song Export Wizard SÃ¥ngexportguiden Select Songs Välj sÃ¥nger Check the songs you want to export. Kryssa för sÃ¥ngerna du vill exportera. Uncheck All Kryssa ingen Check All Kryssa alla Select Directory Välj mapp Directory: Mapp: Exporting Exporterar Please wait while your songs are exported. Vänta medan sÃ¥ngerna exporteras. You need to add at least one Song to export. Du mÃ¥ste lägga till minst en sÃ¥ng att exportera. No Save Location specified Ingen mÃ¥lmapp angiven Starting export... Startar export... You need to specify a directory. Du mÃ¥ste ange en mapp. Select Destination Folder Välj mÃ¥lmapp Select the directory where you want the songs to be saved. Välj mappen där du vill att sÃ¥ngerna sparas. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Den här guiden hjälper dig att exportera dina sÃ¥nger till det öppna och fria <strong>OpenLyrics</strong>-formatet för sÃ¥nger. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ogiltig Foilpresenter-sÃ¥ngfil. Inga verser hittades. SongsPlugin.GeneralTab Enable search as you type Sök när du skriver SongsPlugin.ImportWizardForm Select Document/Presentation Files Välj dokument/presentation Song Import Wizard SÃ¥ngimportguiden This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Den här guiden hjälper dig att importera sÃ¥nger frÃ¥n en mängd olika format. Klicka pÃ¥ Nästa för att börja processen med att välja ett format att importera frÃ¥n. Generic Document/Presentation Vanligt dokument/presentation Add Files... Lägg till filer... Remove File(s) Ta bort fil(er) Please wait while your songs are imported. Vänta medan sÃ¥ngerna importeras. Words Of Worship Song Files Words of Worship-sÃ¥ngfiler Songs Of Fellowship Song Files Songs of Fellowship-sÃ¥ngfiler SongBeamer Files SongBeamer-filer SongShow Plus Song Files SongShow Plus-sÃ¥ngfiler Foilpresenter Song Files Foilpresenter-sÃ¥ngfiler Copy Kopiera Save to File Spara till fil The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av Songs of Fellowship har inaktiverats eftersom OpenLP inte kan hitta OpenOffice eller LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av vanliga dokument/presentationer har inaktiverats eftersom OpenLP inte hittar OpenOffice eller LibreOffice. OpenLyrics Files OpenLyrics-filer CCLI SongSelect Files CCLI SongSelect-filer EasySlides XML File EasySlides XML-fil EasyWorship Song Database EasyWorship sÃ¥ngdatabas DreamBeam Song Files DreamBeam sÃ¥ngfiler You need to specify a valid PowerSong 1.0 database folder. Du mÃ¥ste ange en giltig PowerSong 1.0-databaskatalog. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Konvertera först din ZionWorx-databas till en CSV-textfil, som beskrivs i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Användarmanualen</a>. SundayPlus Song Files SundayPlus-sÃ¥ngfiler This importer has been disabled. Den här importfunktionen har inaktiverats. MediaShout Database MediaShout-databas The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importfunktionen för MediaShout stöds bara pÃ¥ Windows. Den har inaktiverats pÃ¥ grund av en saknad Python-modul. Om du vill använda den här importfunktionen mÃ¥ste du installera modulen "pyodbc". SongPro Text Files SongPro-textfiler SongPro (Export File) SongPro (exporterad fil) In SongPro, export your songs using the File -> Export menu I SongPro exporterar du sÃ¥nger via menyn Arkiv -> Exportera EasyWorship Service File EasyWorship-körschemafil WorshipCenter Pro Song Files WorshipCenter Pro Song-filer The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importverktyget för WorshipCenter Pro stöds endast pÃ¥ Windows. Det har inaktiverats pÃ¥ grund av en saknad Python-modul. Om du vill använda det här importverktyget mÃ¥ste du installera modulen "pyodbc". PowerPraise Song Files PowerPraise-sÃ¥ngfiler PresentationManager Song Files PresentationManager-sÃ¥ngfiler ProPresenter 4 Song Files ProPresenter 4-sÃ¥ngfiler Worship Assistant Files Worship Assistant-filer Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Exportera din databas i Worship Assistant till en CSV-fil. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Välj mediafil(er) Select one or more audio files from the list below, and click OK to import them into this song. Välj en eller flera ljudfiler frÃ¥n listan nedan, och klicka OK för att importera dem till sÃ¥ngen. SongsPlugin.MediaItem Titles Titel Lyrics SÃ¥ngtext CCLI License: CCLI-licens: Entire Song Allt sÃ¥nginnehÃ¥ll Maintain the lists of authors, topics and books. UnderhÃ¥ll listan över författare, ämnen och böcker. copy For song cloning kopia Search Titles... Sök titel... Search Entire Song... Sök i allt sÃ¥nginnehÃ¥ll... Search Lyrics... Sök i sÃ¥ngtexter... Search Authors... Sök författare... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Kan inte öppna MediaShout-databasen. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Exporterar "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ogiltig OpenSong-sÃ¥ngfil. song-tagg saknas. SongsPlugin.PowerSongImport No songs to import. Inga sÃ¥nger att importera. Verses not found. Missing "PART" header. Inga verser hittade. "PART"-huvud saknas. No %s files found. Inga %s-filer hittades. Invalid %s file. Unexpected byte value. Ogiltig %s-fil. Oväntat byte-värde. Invalid %s file. Missing "TITLE" header. Ogiltig %s-fil. "TITLE"-huvud saknas. Invalid %s file. Missing "COPYRIGHTLINE" header. Ogiltig %s-fil. "COPYRIGHTLINE"-huvud saknas. SongsPlugin.SongBookForm &Name: &Namn: &Publisher: &Utgivare: You need to type in a name for the book. Du mÃ¥ste ange ett namn pÃ¥ boken. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. SÃ¥ngexporten misslyckades. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exporten är slutförd. För att importera filerna, använd importen <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s SÃ¥ngexporten misslyckades med följande fel: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: De följande sÃ¥ngerna kunde inte importeras: Cannot access OpenOffice or LibreOffice Kan inte hitta OpenOffice eller LibreOffice Unable to open file Kan inte öppna fil File not found Fil hittas inte SongsPlugin.SongMaintenanceForm Could not add your author. Kunde inte lägga till författaren. This author already exists. Författaren finns redan. Could not add your topic. Kunde inte lägga till ämnet. This topic already exists. Ämnet finns redan. Could not add your book. Kunde inte lägga till boken. This book already exists. Boken finns redan. Could not save your changes. Kunde inte spara ändringarna. Could not save your modified author, because the author already exists. Kunde inte spara den ändrade författaren eftersom den redan finns. Could not save your modified topic, because it already exists. Kunde inte spara det ändrade ämnet eftersom det redan finns. Delete Author Ta bort författare Are you sure you want to delete the selected author? Är du säker pÃ¥ att du vill ta bort den valda författaren? This author cannot be deleted, they are currently assigned to at least one song. Författaren kan inte tas bort; den används för närvarande av minst en sÃ¥ng. Delete Topic Ta bort ämne Are you sure you want to delete the selected topic? Är du säker pÃ¥ att du vill ta bort det valda ämnet? This topic cannot be deleted, it is currently assigned to at least one song. Ämnet kan inte tas bort; det används för närvarande av minst en sÃ¥ng. Delete Book Ta bort bok Are you sure you want to delete the selected book? Är du säker pÃ¥ att du vill ta bort den valda boken? This book cannot be deleted, it is currently assigned to at least one song. Boken kan inte tas bort; den används för närvarande av minst en sÃ¥ng. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Författaren %s finns redan. Vill du lÃ¥ta sÃ¥nger med författaren %s använda den befintliga författaren %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ämnet %s finns redan. Vill du lÃ¥ta sÃ¥nger med ämnet %s använda det befintliga ämnet %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Boken %s finns redan. Vill du lÃ¥ta sÃ¥nger med boken %s använda den befintliga boken %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect-importverktyg <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Observera:</strong>En internetanslutning krävs för att importera sÃ¥nger frÃ¥n CCLI SongSelect. Username: Användarnamn: Password: Lösenord: Save username and password Spara användarnamn och lösenord Login Logga in Search Text: Sök text: Search Sök Found %s song(s) Hittade %s sÃ¥ng(er) Logout Logga ut View Visa Title: Titel: Author(s): Författare: Copyright: Copyright: CCLI Number: CCLI-nummer: Lyrics: Text: Back Tillbaka Import Importera More than 1000 results Mer än 1000 resultat Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Din sökning gav mer än 1000 resultat och har stoppats. Förfina din sökning för att fÃ¥ bättre resultat. Logging out... Loggar ut... Save Username and Password Spara användarnamn och lösenord WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. VARNING: Att spara användarnamn och lösenord är OSÄKERT eftersom ditt lösenord sparas i KLARTEXT. Klicka Ja för att spara ditt lösenord eller Nej för att avbryta. Error Logging In Fel vid inloggning There was a problem logging in, perhaps your username or password is incorrect? Det uppstod ett problem vid inloggningen. Kanske är ditt användarnamn eller lösenord felaktigt? Song Imported SÃ¥ng importerad Incomplete song Ofullständig sÃ¥ng This song is missing some information, like the lyrics, and cannot be imported. Den här sÃ¥ngen saknar viss information, som t.ex. texten, och kan inte importeras. Your song has been imported, would you like to import more songs? SÃ¥ngen har importerats. Vill du importera fler sÃ¥nger? Stop SongsPlugin.SongsTab Songs Mode SÃ¥ngläge Display verses on live tool bar Visa verser i live-verktygsraden Update service from song edit Uppdatera körschemat frÃ¥n sÃ¥ngredigeringen Import missing songs from service files Importera saknade sÃ¥nger frÃ¥n körschemafiler Display songbook in footer Visa sÃ¥ngbok i sidfot Display "%s" symbol before copyright info Visa %s-symbol framför copyright-info SongsPlugin.TopicsForm Topic Maintenance ÄmnesunderhÃ¥ll Topic name: Ämnesnamn: You need to type in a topic name. Du mÃ¥ste ange ett ämnesnamn. SongsPlugin.VerseType Verse Vers Chorus Refräng Bridge Stick Pre-Chorus Brygga Intro Intro Ending Avslut Other Övrigt SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Fel vid läsning frÃ¥n CSV-fil. Line %d: %s Rad %d: %s Decoding error: %s Avkodningsfel: %s File not valid WorshipAssistant CSV format. Filen är inte i ett giltigt WorshipAssistant-CSV-format. Record %d Post %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Kunde inte ansluta till WorshipCenterPro-databasen. SongsPlugin.ZionWorxImport Error reading CSV file. Fel vid läsning frÃ¥n CSV-fil. File not valid ZionWorx CSV format. Filen är inte i giltigt ZionWorx CSV-format. Line %d: %s Rad %d: %s Decoding error: %s Avkodningsfel: %s Record %d Post %d Wizard Wizard Guide This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Den här guiden hjälper dig att ta bort dubletter av sÃ¥nger frÃ¥n sÃ¥ngdatabasen. Du kommer att fÃ¥ möjlighet att titta igenom varje potentiell sÃ¥ngdublett innan den tas bort. Inga sÃ¥nger kommer alltsÃ¥ att tas bort utan ditt direkta godkännande. Searching for duplicate songs. Sökning efter sÃ¥ngdubletter. Please wait while your songs database is analyzed. Vänta medan sÃ¥ngdatabasen analyseras. Here you can decide which songs to remove and which ones to keep. Här kan du bestämma vilka sÃ¥nger som ska tas bort och vilka som ska behÃ¥llas. Review duplicate songs (%s/%s) Visa sÃ¥ngdubletter (%s/%s) Information Information No duplicate songs have been found in the database. Inga sÃ¥ngdubletter hittades i databasen. OpenLP-2.4/resources/i18n/ko.ts0000644000175000017500000150760312657640340015337 0ustar raoulraoul AlertsPlugin &Alert 알림 Show an alert message. 알림 메세지를 ë³´ì—¬ì¤ë‹ˆë‹¤. Alert name singular 알림 Alerts name plural 알림 Alerts container title 알림 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>알림 플러그ì¸</strong><br />알림 플러그ì¸ì€ 화면ìƒì˜ 알림 표시를 설정합니다. AlertsPlugin.AlertForm Alert Message 알림 메세지 Alert &text: 알림 문구(&T): &New 새로 만들기(&N) &Save 저장(&S) Displ&ay 화면 표시(&A) Display && Cl&ose 화면 표시 후 닫기(&O) New Alert 새 알림 &Parameter: 매개변수(&P): No Parameter Found 매개변수가 없습니다. You have not entered a parameter to be replaced. Do you want to continue anyway? 변경할 매개변수를 입력하지 않았습니다. ê³„ì† ì§„í–‰í• ê¹Œìš”? No Placeholder Found 플레ì´ìФ 홀ë”ê°€ 없습니다. The alert text does not contain '<>'. Do you want to continue anyway? ì•Œë¦¼ë¬¸ì— '<>'ê°€ 없습니다. ê³„ì† ì§„í–‰í• ê¹Œìš”? You haven't specified any text for your alert. Please type in some text before clicking New. 알림 표시 문구를 지정하지 않았습니다. 새로 만들기를 누르기 ì „ì— ë¬¸êµ¬ë¥¼ 입력하세요. AlertsPlugin.AlertsManager Alert message created and displayed. 알림 메세지를 만들고 표시했습니다. AlertsPlugin.AlertsTab Font 글꼴 Font name: 글꼴: Font color: 글꼴색: Background color: 배경색: Font size: 글꼴 í¬ê¸°: Alert timeout: 경고 ì§€ì†ì‹œê°„: BiblesPlugin &Bible 성경(&B) Bible name singular 성경 Bibles name plural 성경 Bibles container title 성경 No Book Found 성서 ì—†ìŒ No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. ì¼ì¹˜í•˜ëŠ” ì´ë¦„ì„ ê°€ì§„ 성서를 성경ì—서 ì°¾ì„ ìˆ˜ 없습니다. ì´ë¦„ì„ ì˜¬ë°”ë¥´ê²Œ 입력했는지 확ì¸í•˜ì‹­ì‹œì˜¤. Import a Bible. 성경 가져오기. Add a new Bible. 새성경 추가하기. Edit the selected Bible. ì„ íƒí•œ 성경 수정하기. Delete the selected Bible. ì„ íƒí•œ 성경 삭제하기. Preview the selected Bible. ì„ íƒí•œ 성경 미리보기. Send the selected Bible live. ì„ íƒí•œ 성경 실황로 보내기. Add the selected Bible to the service. ì„ íƒí•œ 성경 예배 항목으로 보내기. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>성경 플러그ì¸</ STRONG> <br /> 성경플러그ì¸ì€ 예배 ì¤‘ì— ì„œë¡œ 다른 ì›ë³¸ì—서 성경 êµ¬ì ˆì„ ë¶ˆëŸ¬ì™€ 표시 하는 ê¸°ëŠ¥ì„ ì œê³µí•©ë‹ˆë‹¤. &Upgrade older Bibles ì˜¤ëž˜ëœ ì„±ê²½ 업그레ì´ë“œ(&U) Upgrade the Bible databases to the latest format. ì„±ê²½ì˜ ë°ì´í„°ë² ì´ìŠ¤ë¥¼ 최신 형ì‹ìœ¼ë¡œ 업그레ì´ë“œí•©ë‹ˆë‹¤. Genesis 창세기 Exodus 출애굽기 Leviticus 레위기 Numbers 민수기 Deuteronomy 신명기 Joshua 여호수아 Judges 사사기 Ruth 룻기 1 Samuel ì‚¬ë¬´ì—˜ìƒ 2 Samuel 사무엘하 1 Kings ì—´ì™•ê¸°ìƒ 2 Kings 열왕기하 1 Chronicles ì—­ëŒ€ê¸°ìƒ 2 Chronicles 역대기하 Ezra ì—ìŠ¤ë¼ Nehemiah ëŠí—¤ë¯¸ì•¼ Esther ì—ìŠ¤ë” Job 욥기 Psalms 시편 Proverbs ìž ì–¸ Ecclesiastes ì „ë„서 Song of Solomon ì•„ê°€ Isaiah ì´ì‚¬ì•¼ Jeremiah 예레미야 Lamentations 예레미야애가 Ezekiel ì—스겔 Daniel 다니엘 Hosea 호세아 Joel 요엘 Amos 아모스 Obadiah 오바댜 Jonah 요나 Micah 미가 Nahum 나훔 Habakkuk 하박국 Zephaniah ìŠ¤ë°”ëƒ Haggai 학개 Zechariah 스가랴 Malachi ë§ë¼ê¸° Matthew ë§ˆíƒœë³µìŒ Mark ë§ˆê°€ë³µìŒ Luke ëˆ„ê°€ë³µìŒ John ìš”í•œë³µìŒ Acts 사ë„행전 Romans 로마서 1 Corinthians 고린ë„전서 2 Corinthians 고린ë„후서 Galatians ê°ˆë¼ë””아서 Ephesians ì—베소서 Philippians 빌립보서 Colossians 골로새서 1 Thessalonians ë°ì‚´ë¡œë‹ˆê°€ì „서 2 Thessalonians ë°ì‚´ë¡œë‹ˆê°€í›„서 1 Timothy 디모ë°ì „서 2 Timothy 디모ë°í›„서 Titus ë””ë„서 Philemon 빌레몬서 Hebrews 히브리서 James 야고보서 1 Peter 베드로전서 2 Peter 베드로후서 1 John 요한1서 2 John 요한2서 3 John 요한3서 Jude 유다서 Revelation ìš”í•œê³„ì‹œë¡ Judith 유딧기 Wisdom 지혜서 Tobit 토빗기 Sirach 집회서 Baruch 바룩서 1 Maccabees 마카베오기 ìƒê¶Œ 2 Maccabees 마카베오기 하권 3 Maccabees 마카베오기 ì œ 3서 4 Maccabees 마카베오기 ì œ 4서 Rest of Daniel 다니엘 ì†íޏ Rest of Esther ì—ìŠ¤ë” ì†íޏ Prayer of Manasses ë¯€ë‚˜ìŽ„ì˜ ê¸°ë„ Letter of Jeremiah 예레미야서 Prayer of Azariah ì•„ìžë¦¬ì•„ì˜ ê¸°ë„와 세 ì²­ë…„ì˜ ì°¬ì†¡ Susanna 수산나 Bel 벨 1 Esdras ì—ìŠ¤ë“œë¼ 1서 2 Esdras ì—ìŠ¤ë“œë¼ 2서 : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 ì ˆ V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 ì ˆ verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 ì ˆ verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 ì ˆ - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 ~ , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 와 end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse 마침 BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. ì„±ê²½ì˜ ë²„ì „ ì´ë¦„ì„ ì§€ì •í•´ì•¼í•©ë‹ˆë‹¤. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ì„±ê²½ì— ëŒ€í•œ ì €ìž‘ê¶Œì„ ì„¤ì •í•´ì•¼í•©ë‹ˆë‹¤. 공개 ë„ë©”ì¸ì—있는 ì„±ê²½ì€ ê³µê°œ ë„ë©”ì¸ìœ¼ë¡œ 표시해야합니다. Bible Exists ì´ë¯¸ìžˆëŠ” 성경 입니다 This Bible already exists. Please import a different Bible or first delete the existing one. ì´ ì„±ê²½ì€ ì´ë¯¸ 존재합니다. 다른 ì„±ê²½ì„ ê°€ì ¸ 오거나 먼저 ê¸°ì¡´ì˜ ì„±ê²½ì„ ì‚­ì œ 해주세요. You need to specify a book name for "%s". "%s"ì˜ ì„œëª…ì„ ì§€ì •í•´ì•¼í•©ë‹ˆë‹¤. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. "%s" ì„œëª…ì´ ì˜¬ë°”ë¥´ì§€ 않습니다. 숫ìžëŠ” 시작 ë¶€ë¶„ì— ë§Œ 사용할 수 있으며 하나 ì´ìƒì˜ ë¹„ìˆ«ìž ë¬¸ìžê°€ ë”°ë¼ì™€ì•¼í•©ë‹ˆë‹¤. Duplicate Book Name 서명 복사 The Book Name "%s" has been entered more than once. "%s" ì„œëª…ì„ í•œ 번 ì´ìƒ 입력했습니다. BiblesPlugin.BibleManager Scripture Reference Error 성경 참조 오류 Web Bible cannot be used 웹 ì„±ê²½ì€ ì‚¬ìš©í•  수 없습니다 Text Search is not available with Web Bibles. í…스트 ê²€ìƒ‰ì€ ì›¹ 성경ì—서 사용할 수 없습니다. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. 검색 키워드를 입력하지 않았습니다. 모든 키워드는 스페ì´ìŠ¤ë¡œ 다른 키워드를 분리해서 검색할 수 ​​있습니다. ë˜í•œ 쉼표로 ê°ê°ì˜ 키워드를 구분 í•  ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. 현재 설치한 ì„±ê²½ì´ ì—†ìŠµë‹ˆë‹¤. ì„±ê²½ì„ ì„¤ì¹˜í•˜ë ¤ë©´ 가져오기 마법사를 사용하십시오. No Bibles Available 성경 ì—†ìŒ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. 성경 참조 ë°©ì‹ì€ OpenLPì—서 ì§€ì›í•˜ì§€ 않거나 잘못ë˜ì—ˆìŠµë‹ˆë‹¤. 참조가 ë‹¤ìŒ í˜•ì‹ ì¤‘ 하나와 ì¼ì¹˜í•˜ê±°ë‚˜ 설명서와 ì¼ì¹˜í•˜ëŠ”ì§€ 확ì¸í•˜ì‹­ì‹œì˜¤: 서 장 서 장%(range)s장 서 장%(verse)sì ˆ%(range)sì ˆ 서 장%(verse)sì ˆ%(range)sì ˆ%(list)sì ˆ%(range)sì ˆ 서 장%(verse)sì ˆ%(range)sì ˆ%(list)s장%(verse)sì ˆ%(range)sì ˆ 서 장%(verse)sì ˆ%(range)s장%(verse)sì ˆ BiblesPlugin.BiblesTab Verse Display 구절 표시 Only show new chapter numbers 새로운 장 번호만 ë³´ì´ê¸° Bible theme: 성경 테마: No Brackets 괄호 숨기기 ( And ) ( 와 ) { And } { 와 } [ And ] [ 와 ] Note: Changes do not affect verses already in the service. 참고: ì´ë¯¸ 서비스 ì¤‘ì¸ êµ¬ì ˆì— ëŒ€í•´ì„œëŠ” ë³€ê²½ì‚¬í•­ì´ ì ìš©ë˜ì§€ 않습니다. Display second Bible verses ë‘ ë²ˆì§¸ 성경 êµ¬ì ˆì„ í‘œì‹œ Custom Scripture References ì‚¬ìš©ìž ì •ì˜ ì„±ê²½ 참조 Verse Separator: ì ˆ 구분ìž: Range Separator: 범위 구분ìž: List Separator: ëª©ë¡ êµ¬ë¶„ìž: End Mark: 마침 기호: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. 여러 ëŒ€ì‘ ì ˆ 구분ìžë¥¼ 지정할 수 있습니다. ìˆ˜ì§ ë§‰ëŒ€ "|"를 사용하여 구분할 수 있습니다. ê¸°ë³¸ê°’ì„ ì‚¬ìš©í•˜ë ¤ë©´ ì´ ì¤„ì€ ë¹„ì›Œë‘십시오. English Korean Default Bible Language 기본 성경 언어 Book name language in search field, search results and on display: 검색 입력창, 검색 ê²°ê³¼, 표시 ë‚´ìš©ì—서 사용할 ì±… ì´ë¦„ 언어 ì´ë¦„입니다: Bible Language 성경 언어 Application Language 프로그램 언어 Show verse numbers 구절 번호 표시 BiblesPlugin.BookNameDialog Select Book Name ì„±ê²½ì„ ì„ íƒí•˜ì„¸ìš” Current name: 현재 ì´ë¦„ : Corresponding name: 해당 ì´ë¦„ : Show Books From ë‹¤ìŒ ë²”ìœ„ë¶€í„° 성서 표시 Old Testament 구약 New Testament 신약 Apocrypha 외경 The following book name cannot be matched up internally. Please select the corresponding name from the list. ë‹¤ìŒ ì„œëª…ì€ ë‚´ë¶€ì ìœ¼ë¡œ ì¼ì¹˜í•  수 없습니다. 목ë¡ì—서 관련 ëª…ì¹­ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤. BiblesPlugin.BookNameForm You need to select a book. ì„ ê²½ì±…ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. BiblesPlugin.CSVBible Importing books... %s ì„ ê²½ì±…ì„ ê°€ì ¸ì˜¤ëŠ” 중... %s Importing verses... done. 구절 가져오는 중... 완료. BiblesPlugin.EditBibleForm Bible Editor 성경 편집 License Details ë¼ì´ì„ ìФ ì •ë³´ Version name: 버전 ì´ë¦„: Copyright: 저작권: Permissions: 권한: Default Bible Language 기본 성경 언어 Book name language in search field, search results and on display: 검색 ì°½ì˜ ì„œëª… 언어, 검색 ê²°ê³¼, í™”ë©´ì— ë‚˜íƒ€ë‚¼ 항목: Global Settings ì „ì—­ 설정 Bible Language 성경 언어 Application Language 프로그램 언어 English Korean This is a Web Download Bible. It is not possible to customize the Book Names. 웹 다운로드 성경입니다. ì„œëª…ì„ ì‚¬ìš©ìžê°€ 멋대로 입력할 수 없습니다. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. ì„œëª…ì„ ìž„ì˜ëŒ€ë¡œ 입력하여 사용하려면, 미디어 ë°ì´í„° 탭ì—서 "성경 언어"를 ì„ íƒí•´ì•¼í•˜ë©°, "ì „ì—­ 설정"ì„ ì„ íƒí–ˆë‹¤ë©´ OpenLP ì„¤ì •ì˜ ì„±ê²½ 페ì´ì§€ì—서 ì„ íƒí•´ì•¼ 합니다. BiblesPlugin.HTTPBible Registering Bible and loading books... ì„±ê²½ì„ ë“±ë¡í•˜ê³  성서 불러오는 중... Registering Language... 언어 ë“±ë¡ ì¤‘... Importing %s... Importing <book name>... %s 가져오는 중... Download Error 다운로드 오류 There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. ì„ íƒí•œ 구절 ë‹¤ìš´ë¡œë“œì— ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤. ì¸í„°ë„· ì—°ê²°ì„ í™•ì¸í•˜ì‹­ì‹œì˜¤. ì´ ì˜¤ë¥˜ê°€ ê³„ì† ì¼ì–´ë‚˜ë©´ 버그를 보고하십시오. Parse Error í•´ì„ ì˜¤ë¥˜ There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. ì„ íƒí•œ 구절 ì„ ë³„ì— ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤. ì´ ì˜¤ë¥˜ê°€ ê³„ì† ì¼ì–´ë‚˜ë©´ 버그를 보고하십시오. BiblesPlugin.ImportWizardForm Bible Import Wizard 성경 가져오기 마법사 This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. ì´ ë§ˆë²•ì‚¬ëŠ” 여러가지 형ì‹ì˜ ì„±ê²½ì„ ê°€ì ¸ì˜¤ë„ë¡ ì•ˆë‚´í•´ë“œë¦½ë‹ˆë‹¤. ë‹¤ìŒ ë²„íŠ¼ì„ ëˆŒëŸ¬ì„œ 가져올 ì„±ê²½ì˜ í˜•ì‹ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤. Web Download 웹 다운로드 Location: 위치: Crosswalk Crosswalk BibleGateway BibleGateway Bible: 성경: Download Options 다운로드 옵션 Server: 서버: Username: ì‚¬ìš©ìž ì´ë¦„: Password: 암호: Proxy Server (Optional) 프ë¡ì‹œ 서버 (ì„ íƒ) License Details ë¼ì´ì„ ìФ ì •ë³´ Set up the Bible's license details. ì„±ê²½ì˜ ë¼ì´ì„¼ìФ 세부 ì‚¬í•­ì„ ì„¤ì •í•©ë‹ˆë‹¤. Version name: 버전 ì´ë¦„: Copyright: 저작권: Please wait while your Bible is imported. 성경 가져오기를 진행하는 ë™ì•ˆ 기다려주세요. You need to specify a file with books of the Bible to use in the import. ë¶ˆëŸ¬ì˜¤ê¸°ì— ì“¸ 성경 파ì¼ì„ 지정해야합니다. You need to specify a file of Bible verses to import. 불러올 수있는 성경 êµ¬ì ˆì˜ íŒŒì¼ì„ 지정해야합니다. You need to specify a version name for your Bible. ì„±ê²½ì˜ ë²„ì „ ì´ë¦„ì„ ì§€ì •í•´ì•¼í•©ë‹ˆë‹¤. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ì„±ê²½ì— ëŒ€í•œ ì €ìž‘ê¶Œì„ ì„¤ì •í•´ì•¼í•©ë‹ˆë‹¤. 공개 ë„ë©”ì¸ì—있는 ì„±ê²½ì€ ê³µê°œ ë„ë©”ì¸ìœ¼ë¡œ 표시해야합니다. Bible Exists ì´ë¯¸ìžˆëŠ” 성경 입니다 This Bible already exists. Please import a different Bible or first delete the existing one. ì´ ì„±ê²½ì€ ì´ë¯¸ 존재합니다. 다른 ì„±ê²½ì„ ê°€ì ¸ 오거나 먼저 ê¸°ì¡´ì˜ ì„±ê²½ì„ ì‚­ì œ 해주세요. Your Bible import failed. 성경 가져오기 실패. CSV File CSVíŒŒì¼ Bibleserver 성경서버 Permissions: 권한: Bible file: 성경파ì¼: Books file: ì±… 파ì¼: Verses file: 구절 파ì¼: Registering Bible... 성경 ë“±ë¡ ì¤‘... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. ì„±ê²½ì„ ë“±ë¡í–ˆìŠµë‹ˆë‹¤. ê° êµ¬ì ˆì€ ìš”ì²­í•  때 다운로드하므로 ì¸í„°ë„· ì—°ê²°ì´ í•„ìš”í•¨ì„ ì°¸ê³ í•˜ì‹­ì‹œì˜¤. Click to download bible list 성경 목ë¡ì„ 다운로드 하려면 í´ë¦­í•˜ì‹­ì‹œì˜¤ Download bible list 성경 다운로드 ëª©ë¡ Error during download 다운로드 중 오류 An error occurred while downloading the list of bibles from %s. %sì—서 성경 목ë¡ì„ 다운로드하는 중 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤. BiblesPlugin.LanguageDialog Select Language 언어 ì„ íƒí•˜ì„¸ìš” OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLPì—서 성경 번역 언어를 확ì¸í•  수 없습니다. 아래 항목 중 언어를 ì„ íƒí•˜ì‹­ì‹œì˜¤. Language: 언어: BiblesPlugin.LanguageForm You need to choose a language. 언어를 ì„ íƒ í•˜ì‹­ì‹œì˜¤. BiblesPlugin.MediaItem Quick 빠른 검색 Find: 찾기: Book: ì±…: Chapter: 장: Verse: ì ˆ: From: 부터: To: 까지: Text Search í…스트 검색 Second: ë‘번째: Scripture Reference 성경 참조 Toggle to keep or clear the previous results. ì´ì „ì˜ ê²°ê³¼ë¥¼ 유지하거나 취소합니다. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? ë‹¨ì¼ ë˜ëŠ” ì´ì¤‘ 성경 검색 결과를 í•©ì¹  수 없습니다. 검색 결과를 삭제하고 새로 검색하시겠습니까? Bible not fully loaded. ì„±ê²½ì„ ì™„ì „ížˆ 불러오지 않았습니다. Information ì •ë³´ The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. ë‘ ë²ˆì§¸ 성경ì—는 주 ì„±ê²½ì— ìžˆëŠ” 모든 êµ¬ì ˆì´ ì—†ìŠµë‹ˆë‹¤. ë‘ ì„±ê²½ì¤‘ 한 구절만 나타납니다. ê²°ê³¼ì— êµ¬ì ˆ %d개는 í¬í•¨í•˜ì§€ 않았습니다. Search Scripture Reference... 성경 참조 검색... Search Text... 문구 검색... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. ì •ë§ OpenLPì—서 "%s" ì„±ê²½ì„ ì™„ì „ížˆ 삭제하시겠습니까? 다시 사용하려면 ì´ ì„±ê²½ì„ ë‹¤ì‹œ 가져와야합니다. Advanced 고급 설정 BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. 성경 íŒŒì¼ í˜•ì‹ì´ 들어있는 내용과 다릅니다. OpenSong 성서는 ì••ì¶• 형ì‹ì¼ì§€ 모릅니다. 가져오기 ì „ì— ì••ì¶•ì„ í’€ì–´ì•¼í•©ë‹ˆë‹¤. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. 성경 íŒŒì¼ í˜•ì‹ì´ 들어있는 내용과 다릅니다. Zefania XML 성경 형ì‹ì¸ 것 같습니다. Zefania 가져오기 ì˜µì…˜ì„ ì‚¬ìš©í•˜ì‹­ì‹œì˜¤. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s 가져오는 중... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... 사용하지 않는 태그 제거 중(몇 ë¶„ 걸립니다)... Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s 가져오는 중... BiblesPlugin.UpgradeWizardForm Select a Backup Directory 백업 디렉터리 ì„ íƒ Bible Upgrade Wizard 성경 업그레ì´ë“œ 마법사 This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. ì´ ë§ˆë²•ì‚¬ëŠ” OpenLP 2ì˜ ì´ì „ 버전ì—서 ê¸°ì¡´ì˜ ì„±ê²½ì„ ì—…ê·¸ë ˆì´ë“œì— ë„ì›€ì„ ì¤ë‹ˆë‹¤. 업그레ì´ë“œ 절차를 시작하려면 í•˜ë‹¨ì˜ ë‹¤ìŒ ë‹¨ì¶”ë¥¼ 누르십시오. Select Backup Directory 백업 디렉토리를 ì„ íƒ Please select a backup directory for your Bibles ì„±ê²½ì„ ë°±ì—…í•  디렉터리를 ì„ íƒí•˜ì‹­ì‹œì˜¤ Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0 ì´ì „ 버전ì—서는 업그레ì´ë“œ ë²„ì „ì˜ ì„±ê²½ì„ ì‚¬ìš©í•  수 없습니다. OpenLPì˜ ì´ì „ 버전으로 ë˜ëŒë ¸ì„ 때 간단히 다시 OpenLP ë°ì´í„° ë””ë ‰í„°ë¦¬ì— íŒŒì¼ì„ 복사 í•  수 있ë„ë¡ í˜„ìž¬ ì„±ê²½ì˜ ë°±ì—…ì„ ë§Œë“­ë‹ˆë‹¤. íŒŒì¼ ë³µì› ë°©ë²• ì§€ì¹¨ì€ <a href="http://wiki.openlp.org/faq">ìžì£¼ 묻는 질문 ​​(FAQ)</ a>ì—서 확ì¸í•  수 있습니다. Please select a backup location for your Bibles. ì„±ê²½ì„ ë°±ì—…í•  위치를 ì„ íƒí•˜ì‹­ì‹œì˜¤. Backup Directory: 백업 디렉터리: There is no need to backup my Bibles ë‚´ ì„±ê²½ì„ ë°±ì—…í•  필요가 없습니다 Select Bibles 성경 ì„ íƒ Please select the Bibles to upgrade 업그레ì´ë“œí•  ì„±ê²½ì„ ì„ íƒí•˜ì‹­ì‹œì˜¤ Upgrading 업그레ì´ë“œ 중 Please wait while your Bibles are upgraded. ì„±ê²½ì„ ì—…ê·¸ë ˆì´ë“œí•˜ëŠ” ë™ì•ˆ 기다리십시오. The backup was not successful. To backup your Bibles you need permission to write to the given directory. ë°±ì—…ì„ ì„±ê³µì ìœ¼ë¡œ 진행하지 못했습니다. ì„±ê²½ì„ ë°±ì—…í•˜ë ¤ë©´ ì§€ì •ëœ ë””ë ‰í† ë¦¬ì— ì“°ê¸° ê¶Œí•œì„ ì§€ì •í•´ì•¼í•©ë‹ˆë‹¤. Upgrading Bible %s of %s: "%s" Failed 성경 %2$s중 %1$s 업그레ì´ë“œ 중: "%3$s" 실패 Upgrading Bible %s of %s: "%s" Upgrading ... 성경 %2$s 중 %1$s 업그레ì´ë“œ 중: "%s" 업그레ì´ë“œ 중 ... Download Error 다운로드 오류 To upgrade your Web Bibles an Internet connection is required. 웹 ì„±ê²½ì„ ì—…ê·¸ë ˆì´ë“œí•˜ë ¤ë©´ ì¸í„°ë„· ì—°ê²°ì´ í•„ìš”í•©ë‹ˆë‹¤. Upgrading Bible %s of %s: "%s" Upgrading %s ... 성경 %2$s 중 %1$s 업그레ì´ë“œ 중: "%3$s" 업그레ì´ë“œ 중 %s ... Upgrading Bible %s of %s: "%s" Complete 성경 %2$s 중 %1$s 업그레ì´ë“œ 중: "%3$s" 완료 , %s failed , %s 실패 Upgrading Bible(s): %s successful%s 성경 업그레ì´ë“œ 중: %s 성공%s Upgrade failed. 업그레ì´ë“œ 실패. You need to specify a backup directory for your Bibles. ì„±ê²½ì˜ ë°±ì—… 디렉터리를 지정해야합니다. Starting upgrade... 업그레ì´ë“œë¥¼ 시작 중... There are no Bibles that need to be upgraded. 업그레ì´ë“œí•  ì„±ê²½ì´ ì—†ìŠµë‹ˆë‹¤. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. 성경 íŒŒì¼ í˜•ì‹ì´ 들어있는 내용과 다릅니다. Zefania 성경 형ì‹ì€ ì••ì¶• ìƒíƒœì¸ 것 같습니다. 가져오기 ì „ ì••ì¶•ì„ í’€ì–´ì•¼í•©ë‹ˆë‹¤. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s 가져오는 중... CustomPlugin Custom Slide name singular ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ Custom Slides name plural ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ Custom Slides container title ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ Load a new custom slide. 새 ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 불러옵니다. Import a custom slide. ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 가져옵니다. Add a new custom slide. 새 ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 추가합니다. Edit the selected custom slide. ì„ íƒí•œ ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 편집합니다. Delete the selected custom slide. ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 삭제합니다. Preview the selected custom slide. ì„ íƒí•œ ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œë¥¼ 미리 봅니다. Send the selected custom slide live. ì„ íƒí•œ ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ 실시간으로 보냅니다. Add the selected custom slide to the service. ì„œë¹„ìŠ¤ì— ì„ íƒí•œ ì‚¬ìš©ìž ì •ì˜ ìŠ¬ë¼ì´ë“œë¥¼ 추가합니다. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>ì‚¬ìš©ìž ì •ì˜ ìŠ¬ë¼ì´ë“œ í”ŒëŸ¬ê·¸ì¸ </strong><br />ì‚¬ìš©ìž ì •ì˜ ìŠ¬ë¼ì´ë“œ 플러그ì¸ì—서는 í™”ë©´ì— í‘œì‹œí•  수 있는 가사 문구 슬ë¼ì´ë“œ 설정 ê¸°ëŠ¥ì„ ì œê³µí•©ë‹ˆë‹¤. ì´ í”ŒëŸ¬ê·¸ì¸ì€ 가사 í”ŒëŸ¬ê·¸ì¸ ì´ìƒì˜ ìžìœ ë„를 제공합니다. CustomPlugin.CustomTab Custom Display ì‚¬ìš©ìž ì§€ì • ë””ìŠ¤í”Œë ˆì´ Display footer ë””ìŠ¤í”Œë ˆì´ ê¼¬ë¦¬ë§ Import missing custom slides from service files 예배 ë‚´ìš© 파ì¼ì—서 ë¹ ì§„ ì‚¬ìš©ìž ì •ì˜ ìŠ¬ë¼ì´ë“œë¥¼ 가져옵니다 CustomPlugin.EditCustomForm Edit Custom Slides ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ 수정 &Title: 제목(&T): Add a new slide at bottom. 맨 ì•„ëž˜ì— ìƒˆ 슬ë¼ì´ë“œë¥¼ 추가. Edit the selected slide. ì„ íƒí•œ 슬ë¼ì´ë“œë¥¼ 수정합니다. Edit all the slides at once. 한 ë²ˆì— ëª¨ë“  슬ë¼ì´ë“œë¥¼ 편집 Split a slide into two by inserting a slide splitter. 슬ë¼ì´ë“œ ë¶„í• ì„ ì„ ì‚½ìž…í•˜ì—¬ ë‘ ìŠ¬ë¼ì´ë“œë¡œ 나눕니다. The&me: 테마(&M) &Credits: 만든 사람(&C): You need to type in a title. ì œëª©ì„ ìž…ë ¥í•´ì•¼í•©ë‹ˆë‹¤. Ed&it All ëª¨ë‘ íŽ¸ì§‘(&I) Insert Slide 슬ë¼ì´ë“œ 추가 You need to add at least one slide. 최소한 í•˜ë‚˜ì˜ ìŠ¬ë¼ì´ë“œë¥¼ 추가해야합니다. CustomPlugin.EditVerseForm Edit Slide 스ë¼ì´ë“œ 수정 CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>그림 플러그ì¸</ STRONG><br />그림 플러그ì¸ì€ 그림 표시 ê¸°ëŠ¥ì„ ì œê³µí•©ë‹ˆë‹¤.<br />ì´ í”ŒëŸ¬ê·¸ì¸ì˜ ì°¨ë³„ì  íŠ¹ì§• 중 하나는 서비스 관리ìžì—서 여러 ê·¸ë¦¼ì„ í•˜ë‚˜ë¡œ 쉽게 묶어 í™”ë©´ì— í‘œì‹œí•©ë‹ˆë‹¤. ë˜í•œ ìžë™ìœ¼ë¡œ 실행하는 슬ë¼ì´ë“œ 쇼를 í•  수 있ë„ë¡ "ì¼ì • 시간 반복" ê¸°ëŠ¥ì„ ì‚¬ìš©í•  수 있습니다. 플러그ì¸ì˜ ê·¸ë¦¼ì€ í˜„ìž¬ í…Œë§ˆì˜ ë°”íƒ• 화면으로 바꿀 수 있으며, ì´ ë°”íƒ• í™”ë©´ì€ í…Œë§ˆì—서 제공하는 ë°°ê²½ 대신 ì„ íƒí•œ ì´ë¯¸ì§€ì™€ 함께 í™”ë©´ì— ë¶™ì–´ìžˆëŠ” í…스트 기반 노래 í•­ëª©ì„ í‘œì‹œí•©ë‹ˆë‹¤. Image name singular 그림 Images name plural 그림 Images container title 그림 Load a new image. 새 ê·¸ë¦¼ì„ ë¶ˆëŸ¬ì˜µë‹ˆë‹¤. Add a new image. 새 ê·¸ë¦¼ì„ ì¶”ê°€í•©ë‹ˆë‹¤. Edit the selected image. ì„ íƒí•œ ê·¸ë¦¼ì„ íŽ¸ì§‘í•©ë‹ˆë‹¤. Delete the selected image. ì„ íƒí•œ ê·¸ë¦¼ì„ ì‚­ì œí•©ë‹ˆë‹¤. Preview the selected image. ì„ íƒí•œ ê·¸ë¦¼ì„ ë¯¸ë¦¬ 봅니다. Send the selected image live. ì„ íƒí•œ ê·¸ë¦¼ì„ ì‹¤í™©ìœ¼ë¡œ 보냅니다. Add the selected image to the service. ì„ íƒí•œ ê·¸ë¦¼ì„ ì˜ˆë°° í•­ëª©ì— ì¶”ê°€í•©ë‹ˆë‹¤. ImagePlugin.AddGroupForm Add group ëª¨ìŒ ì¶”ê°€ Parent group: ìƒìœ„ ëª¨ìŒ Group name: ëª¨ìŒ ì´ë¦„: You need to type in a group name. ëª¨ìŒ ì´ë¦„ì„ ìž…ë ¥í•´ì•¼í•©ë‹ˆë‹¤. Could not add the new group. 새 모ìŒì„ 추가할 수 없습니다. This group already exists. ì´ ëª¨ìŒì´ ì´ë¯¸ 있습니다. ImagePlugin.ChooseGroupForm Select Image Group 그림 ëª¨ìŒ ì„ íƒ Add images to group: ê·¸ë¦¼ì„ ëª¨ìŒì— 추가: No group ëª¨ìŒ ì—†ìŒ Existing group ê¸°ì¡´ì˜ ëª¨ìŒ New group 새 ëª¨ìŒ ImagePlugin.ExceptionDialog Select Attachment 첨부 ì„ íƒ ImagePlugin.MediaItem Select Image(s) 그림 ì„ íƒ You must select an image to replace the background with. 바탕 화면으로 바꿀 ê·¸ë¦¼ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Missing Image(s) 그림 ì—†ìŒ The following image(s) no longer exist: %s ë‹¤ìŒ ê·¸ë¦¼ì´ ì—†ìŠµë‹ˆë‹¤: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? ë‹¤ìŒ ê·¸ë¦¼ì´ ì—†ìŠµë‹ˆë‹¤: %s ê·¸ëž˜ë„ ë‹¤ë¥¸ ê·¸ë¦¼ì„ ì¶”ê°€í•˜ì‹œê² ìŠµë‹ˆê¹Œ? There was a problem replacing your background, the image file "%s" no longer exists. 바탕 화면 ë°”ê¾¸ê¸°ì— ë¬¸ì œê°€ 있습니다. "%s" 그림 파ì¼ì´ 없습니다. There was no display item to amend. 새로 ê³ ì¹  표시 í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤. -- Top-level group -- -- ìƒìœ„ ëª¨ìŒ -- You must select an image or group to delete. 삭제할 그림 ë˜ëŠ” 모ìŒì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Remove group ëª¨ìŒ ì œê±° Are you sure you want to remove "%s" and everything in it? ì •ë§ë¡œ "%s"와 ì—¬ê¸°ì— ë“¤ì–´ìžˆëŠ” 모든 í•­ëª©ì„ ì œê±°í•˜ê² ìŠµë‹ˆê¹Œ? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. 화면과 다른 ë¹„ìœ¨ì˜ ê·¸ë¦¼ì„ ë°”íƒ• í™”ë©´ì— í‘œì‹œ Media.player Audio ìŒì•… Video ë™ì˜ìƒ VLC is an external player which supports a number of different formats. VLC는 여러가지 형ì‹ì„ ì§€ì›í•˜ëŠ” 외부 ìž¬ìƒ í”„ë¡œê·¸ëž¨ìž…ë‹ˆë‹¤. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkitì€ ì›¹ 브ë¼ìš°ì €ì—서 ë™ìž‘하는 미디어 ìž¬ìƒ í”„ë¡œê·¸ëž¨ìž…ë‹ˆë‹¤. ì´ ë¯¸ë””ì–´ 재ìƒê¸°ëŠ” ë™ì˜ìƒì— 문구를 ë„울 수 있게 합니다. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>미디어 플러그ì¸</strong><br />ìŒì•…ê³¼ ë™ì˜ìƒì„ 재ìƒí•˜ëŠ” 미디어 플러그ì¸ìž…니다. Media name singular 미디어 Media name plural 미디어 Media container title 미디어 Load new media. 새 미디어를 불러옵니다. Add new media. 새 미디어를 추가합니다. Edit the selected media. ì„ íƒí•œ 미디어를 수정합니다. Delete the selected media. ì„ íƒí•œ 미디어를 삭제합니다. Preview the selected media. ì„ íƒí•œ 미디어를 미리 봅니다. Send the selected media live. ì„ íƒí•œ 미디어를 실황으로 보냅니다. Add the selected media to the service. ì„ íƒí•œ 미디어를 ì„œë¹„ìŠ¤ì— ì¶”ê°€í•©ë‹ˆë‹¤. MediaPlugin.MediaClipSelector Select Media Clip 미디어 í´ë¦½ ì„ íƒ Source ì›ë³¸ Media path: 미디어 경로: Select drive from list 목ë¡ì—서 드ë¼ì´ë¸Œ ì„ íƒ Load disc ë””ìŠ¤í¬ ë¶ˆëŸ¬ì˜¤ê¸° Track Details 트랙 세부정보 Title: 제목: Audio track: 오디오 트랙: Subtitle track: 부제 트랙: HH:mm:ss.z HH:mm:ss.z Clip Range í´ë¦½ 범위 Start point: 시작ì : Set start point ì‹œìž‘ì  ì„¤ì • Jump to start point 시작ì ìœ¼ë¡œ 건너뛰기 End point: ëì : Set end point ëì  ì„¤ì • Jump to end point ëì ìœ¼ë¡œ 건너뛰기 MediaPlugin.MediaClipSelectorForm No path was given 경로를 지정하지 ì•ŠìŒ Given path does not exists 주어진 경로가 없습니다 An error happened during initialization of VLC player VLC 재ìƒê¸° 초기화 중 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤ VLC player failed playing the media VLC 재ìƒê¸°ê°€ 미디어 재ìƒì— 실패했습니다 CD not loaded correctly CD를 올바르게 불러오지 ì•ŠìŒ The CD was not loaded correctly, please re-load and try again. CD를 올바르게 불러오지 않았습니다. 다시 불러오신후 시ë„하십시오. DVD not loaded correctly DVD를 올바르게 불러오지 ì•ŠìŒ The DVD was not loaded correctly, please re-load and try again. DVD를 올바르게 불러오지 않았습니다. 다시 불러오신후 시ë„하십시오. Set name of mediaclip 미디어 í´ë¦½ ì´ë¦„ 설정 Name of mediaclip: 미디어 í´ë¦½ ì´ë¦„: Enter a valid name or cancel 올바른 ì´ë¦„ì„ ìž…ë ¥í•˜ê±°ë‚˜ 취소하십시오 Invalid character ìž˜ëª»ëœ ë¬¸ìž The name of the mediaclip must not contain the character ":" 미디어 í´ë¦½ ì´ë¦„ì— ":" 문ìžê°€ 들어있으면 안ë©ë‹ˆë‹¤ MediaPlugin.MediaItem Select Media 미디어 ì„ íƒ You must select a media file to delete. 삭제할 미디어 파ì¼ì„ ì„ íƒí•´ì•¼ 합니다 You must select a media file to replace the background with. 백그ë¼ìš´ë“œë¡œ 대체할 미디어 파ì¼ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. There was a problem replacing your background, the media file "%s" no longer exists. 백그ë¼ìš´ë“œë¡œ ëŒ€ì²´í•˜ëŠ”ë° ë¬¸ì œê°€ 있습니다. "%s" 미디어 파ì¼ì´ ë”ì´ìƒ 없습니다. Missing Media File 미디어 íŒŒì¼ ì‚¬ë¼ì§ The file %s no longer exists. %s 파ì¼ì´ 없습니다. Videos (%s);;Audio (%s);;%s (*) ë™ì˜ìƒ(%s);;오디오(%s);;%s(*) There was no display item to amend. 새로 ê³ ì¹  표시 í•­ëª©ì´ ì—†ìŠµë‹ˆë‹¤. Unsupported File ì§€ì›í•˜ì§€ 않는 íŒŒì¼ Use Player: ìž¬ìƒ í”„ë¡œê·¸ëž¨ ì„ íƒ: VLC player required VLC 재ìƒê¸°ê°€ 필요함 VLC player required for playback of optical devices ê´‘ 드ë¼ì´ë¸Œ 장치를 재ìƒí•˜ë ¤ë©´ VLC 재ìƒê¸°ê°€ 필요합니다 Load CD/DVD CD/DVD 불러오기 Load CD/DVD - only supported when VLC is installed and enabled CD/DVD 불러오기 - VLC를 설치했고 사용할 수 ìžˆì„ ë•Œë§Œ ì§€ì›í•©ë‹ˆë‹¤ The optical disc %s is no longer available. %s ê´‘ 디스í¬ë¥¼ ë”ì´ìƒ 사용할 수 없습니다. Mediaclip already saved 미디어 í´ë¦½ì„ ì´ë¯¸ 저장함 This mediaclip has already been saved 미디어 í´ë¦½ì„ ì´ë¯¸ 저장했습니다 MediaPlugin.MediaTab Allow media player to be overridden ìž¬ìƒ í”„ë¡œê·¸ëž¨ 대체 허용 Start Live items automatically ë¼ì´ë¸Œ í•­ëª©ì„ ìžë™ìœ¼ë¡œ 시작 OPenLP.MainWindow &Projector Manager 프로ì í„° 관리ìž(&P) OpenLP Image Files ì´ë¯¸ì§€ íŒŒì¼ Information ì •ë³´ Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? 성경 형ì‹ì´ 바뀌었습니다. 기존 성서를 업그레ì´ë“œí•´ì•¼í•©ë‹ˆë‹¤. 지금 OpenLP 업그레ì´ë“œë¥¼ 진행할까요? Backup 백업 OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP를 업그레ì´ë“œí–ˆìŠµë‹ˆë‹¤. OpenLP ë°ì´í„°í´ë” ë°±ì—…ì„ ë§Œë“œì‹œê² ìŠµë‹ˆê¹Œ? Backup of the data folder failed! ë°ì´í„° í´ë” ë°±ì—…ì— ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤! A backup of the data folder has been created at %s ë°ì´í„° í´ë” ë°±ì—…ì„ %sì— ë§Œë“¤ì—ˆìŠµë‹ˆë‹¤ Open 열기 OpenLP.AboutForm Credits 만든 사람 License ë¼ì´ì„ ìФ build %s 빌드 %s 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; version 2 of the License. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. Volunteer Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings UI 설정 Number of recent files to display: 표시할 최근 íŒŒì¼ ê°¯ìˆ˜: Remember active media manager tab on startup 시작할 때 활성화한 미디어 ê´€ë¦¬ìž íƒ­ 기억 Double-click to send items straight to live í•­ëª©ì„ ë‘ ë²ˆ 누르면 실황으로 바로 보냄 Expand new service items on creation 새 예배 ë‚´ìš© í•­ëª©ì„ ë§Œë“¤ 때 확장 Enable application exit confirmation 프로그램 나가기 í™•ì¸ í™œì„±í™” Mouse Cursor 마우스 커서 Hide mouse cursor when over display window 표시 ì°½ 위로 커서가 지나갈 때 마우스 커서 숨김 Default Image 기본 ì´ë¯¸ì§€ Background color: 배경색: Image file: ì´ë¯¸ì§€ 파ì¼: Open File íŒŒì¼ ì—´ê¸° Advanced 고급 설정 Preview items when clicked in Media Manager 미디어 관리ìžì—서 í´ë¦­í–ˆì„ 때 미리볼 항목 Browse for an image file to display. í™”ë©´ì— í‘œì‹œí•  그림 파ì¼ì„ íƒìƒ‰í•©ë‹ˆë‹¤. Revert to the default OpenLP logo. OpenLP 로고를 기본 ìƒíƒœë¡œ ë˜ëŒë¦½ë‹ˆë‹¤. Default Service Name 기본 예배 ë‚´ìš© ì´ë¦„ Enable default service name 기본 예배 ë‚´ìš© ì´ë¦„ 활성화 Date and Time: 날짜와 시간: Monday ì›”ìš”ì¼ Tuesday í™”ìš”ì¼ Wednesday ìˆ˜ìš”ì¼ Friday ê¸ˆìš”ì¼ Saturday í† ìš”ì¼ Sunday ì¼ìš”ì¼ Now 지금 Time when usual service starts. ì¼ë°˜ì ìœ¼ë¡œ 예배를 시작하는 시간입니다. Name: 명칭: Consult the OpenLP manual for usage. 사용 ë°©ë²•ì€ OpenLP 설명서를 참고하십시오. Revert to the default service name "%s". 기본 예배 ë‚´ìš© ì´ë¦„ "%s"(으)로 ë³µì›í•©ë‹ˆë‹¤. Example: 예: Bypass X11 Window Manager X11 ì°½ ê´€ë¦¬ìž ê±´ë„ˆë›°ê¸° Syntax error. 문법 오류. Data Location ë°ì´í„° 위치 Current path: 현재 경로: Custom path: ì‚¬ìš©ìž ì •ì˜ ê²½ë¡œ: Browse for new data file location. 새 ë°ì´í„° íŒŒì¼ ìœ„ì¹˜ë¥¼ íƒìƒ‰í•©ë‹ˆë‹¤. Set the data location to the default. ë°ì´í„° 위치를 기본값으로 설정합니다. Cancel 취소 Cancel OpenLP data directory location change. OpenLP ë°ì´í„° 디렉토리 ë³€ê²½ì„ ì·¨ì†Œí•©ë‹ˆë‹¤. Copy data to new location. ë°ì´í„°ë¥¼ 새로운 위치로 복사합니다. Copy the OpenLP data files to the new location. OpenLP ë°ì´í„°ë¥¼ 새로운 위치로 복사합니다. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>경고:</strong> 새로운 ìœ„ì¹˜ì— OpenLP ë°ì´í„° 파ì¼ì´ 있습니다. 복사 하는 ë™ì•ˆ 해당 파ì¼ì€ ë°”ë€ë‹ˆë‹¤. Data Directory Error ë°ì´í„° 디렉터리 오류 Select Data Directory Location ë°ì´í„° 디렉터리 위치 ì„ íƒ Confirm Data Directory Change ë°ì´í„° 디렉터리 바꿈 í™•ì¸ Reset Data Directory ë°ì´í„° 디렉토리를 초기화 Overwrite Existing Data 기존 ë°ì´í„°ë¥¼ ë®ì–´ì”니다 OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP ë°ì´í„° 디렉터리를 ì°¾ì„ ìˆ˜ 없습니다. %s ì´ ë°ì´í„° 디렉터리는 ì´ë¯¸ OpenLP 기본 위치ì—서 바꿨습니다. 새 위치가 ì´ë™ì‹ 저장소ë¼ë©´, ì‹œìŠ¤í…œì— ë¶™ì–´ìžˆì–´ì•¼í•©ë‹ˆë‹¤. OpenLP ì—서 불러오는 ë™ìž‘ì„ ë©ˆì¶”ë ¤ë©´ "아니요"를 누르십시오. 문제를 í•´ê²°í•  수 있습니다. 기본 위치로 ë°ì´í„° 디렉터리를 ë˜ëŒë¦¬ë ¤ë©´ "예"를 누르십시오. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. OpenLP ë°ì´í„° 디렉터리 위치를 ë‹¤ìŒ ê²½ë¡œë¡œ 바꾸시겠습니까? %s ì´ ë°ì´í„° 디렉터리는 OpenLP를 ë‹«ì•˜ì„ ë•Œ ë°”ë€ë‹ˆë‹¤. Thursday ëª©ìš”ì¼ Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? 경고: ì„ íƒí•œ 경로 %s ì— OpenLP ë°ì´í„° 파ì¼ì´ 들어있습니다. ì´ íŒŒì¼ì„ 현재 ë°ì´í„° 파ì¼ë¡œ 바꾸시겠습니까? Restart Required 다시 시작 í•„ìš” This change will only take effect once OpenLP has been restarted. 여기서 바꾼 ì„¤ì •ì€ OpenLP를 다시 ì‹œìž‘í–ˆì„ ë•Œ ì ìš©ë©ë‹ˆë‹¤. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. 색ìƒì„ ì„ íƒí•˜ë ¤ë©´ í´ë¦­í•˜ì„¸ìš”. OpenLP.DB RGB RGB Video ë™ì˜ìƒ Digital 디지털 Storage 저장소 Network ë„¤íŠ¸ì›Œí¬ RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 비디오 1 Video 2 비디오 2 Video 3 비디오 3 Video 4 비디오 4 Video 5 비디오 5 Video 6 비디오 6 Video 7 비디오 7 Video 8 비디오 8 Video 9 비디오 9 Digital 1 디지털 1 Digital 2 디지털 2 Digital 3 디지털 3 Digital 4 디지털 4 Digital 5 디지털 5 Digital 6 디지털 6 Digital 7 디지털 7 Digital 8 디지털 8 Digital 9 디지털 9 Storage 1 저장소 1 Storage 2 저장소 2 Storage 3 저장소 3 Storage 4 저장소 4 Storage 5 저장소 5 Storage 6 저장소 6 Storage 7 저장소 7 Storage 8 저장소 8 Storage 9 저장소 9 Network 1 ë„¤íŠ¸ì›Œí¬ 1 Network 2 ë„¤íŠ¸ì›Œí¬ 2 Network 3 ë„¤íŠ¸ì›Œí¬ 3 Network 4 ë„¤íŠ¸ì›Œí¬ 4 Network 5 ë„¤íŠ¸ì›Œí¬ 5 Network 6 ë„¤íŠ¸ì›Œí¬ 6 Network 7 ë„¤íŠ¸ì›Œí¬ 7 Network 8 ë„¤íŠ¸ì›Œí¬ 8 Network 9 ë„¤íŠ¸ì›Œí¬ 9 OpenLP.ExceptionDialog Error Occurred 오류 ë°œìƒ Send E-Mail ì´ë©”ì¼ ë³´ë‚´ê¸° Save to File 파ì¼ë¡œ 저장하기 Attach File íŒŒì¼ ì²¨ë¶€ Description characters to enter : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Save Crash Report 오류 보고서 저장 Text files (*.txt *.log *.text) í…스트 íŒŒì¼ (*.txt *.log *.text) OpenLP.FileRenameForm File Rename New File Name: File Copy íŒŒì¼ ë³µì‚¬ OpenLP.FirstTimeLanguageForm Select Translation Choose the translation you'd like to use in OpenLP. Translation: 번역 OpenLP.FirstTimeWizard Songs 곡 First Time Wizard 초기 마법사 Welcome to the First Time Wizard Activate required Plugins Select the Plugins you wish to use. Bible 성경 Images 그림 Presentations Media (Audio and Video) 미디어 (오디오, 비디오) Allow remote access Monitor Song Usage Allow Alerts Default Settings 기본 설정 Downloading %s... Enabling selected plugins... No Internet Connection Unable to detect an Internet connection. ì¸í„°ë„· ì—°ê²°ì„ í™•ì¸í•  수 없습니다. Sample Songs 샘플 ìŒì•… Select and download public domain songs. Sample Bibles 샘플 성경 Select and download free Bibles. 무료 ì„±ê²½ì„ ë‹¤ìš´ë°›ê¸° Sample Themes 샘플 테마 Select and download sample themes. Set up default settings to be used by OpenLP. Default output display: Select default theme: Starting configuration process... Setting Up And Downloading Please wait while OpenLP is set up and your data is downloaded. Setting Up Custom Slides ì‚¬ìš©ìž ì§€ì • 슬ë¼ì´ë“œ Finish 마침 No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Download Error 다운로드 오류 There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error ë„¤íŠ¸ì›Œí¬ ì˜¤ë¥˜ There was a network error attempting to connect to retrieve initial configuration information Cancel 취소 Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Description 설명 Tag 태그 Start HTML HTML 시작 End HTML HTML ë Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTMLì„ ì—¬ê¸°ì—> Validation Error ê²€ì¦ ì˜¤ë¥˜ Description is missing Tag is missing Tag %s already defined. Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red 빨강 Black 검정 Blue 파랑 Yellow 노랑 Green ì´ˆë¡ Pink ë¶„í™ Orange 주황 Purple ë³´ë¼ White í™”ì´íЏ Superscript Subscript Paragraph 문단 Bold 굵게 Italics 기울임 ê¼´ Underline 밑줄 Break OpenLP.GeneralTab General ì¼ë°˜ Monitors Select monitor for output display: Display if a single screen Application Startup Show blank screen warning Automatically open the last service Show the splash screen Application Settings 프로그램 설정 Prompt to save before starting a new service Automatically preview next item in service sec ì´ˆ CCLI Details SongSelect username: SongSelect password: X 가로 Y 세로 Height ë†’ì´ Width 너비 Check for updates to OpenLP Unblank display when adding new live item Timed slide interval: Background Audio ë°°ê²½ 오디오 Start background audio paused Service Item Slide Limits Override display position: Repeat track list Behavior of next/previous on the last/first slide: &Remain on Slide &Wrap around &Move to next/previous service item OpenLP.LanguageManager Language 언어 Please restart OpenLP to use your new language setting. OpenLP.MainDisplay OpenLP Display OpenLP 화면 OpenLP.MainWindow &File 파ì¼(&F) &Import 가져오기(&I) &Export 내보내기(&E) &View 보기(&V) M&ode ìƒíƒœ(&O) &Tools ë„구(&T) &Settings 설정(&S) &Language 언어(&L) &Help ë„움ë§(&H) Service Manager 예배 ë‚´ìš© ê´€ë¦¬ìž Theme Manager 테마 ê´€ë¦¬ìž Open an existing service. 기존 예배 ë‚´ìš©ì„ ì—½ë‹ˆë‹¤. Save the current service to disk. 현재 예배 ë‚´ìš©ì„ ë””ìŠ¤í¬ì— 저장합니다. Save Service As 새로운 ì´ë¦„으로 예배 ë‚´ìš© 저장 Save the current service under a new name. 현재 예배 ë‚´ìš©ì„ ìƒˆ ì´ë¦„으로 저장합니다. E&xit 나가기(&X) Quit OpenLP OpenLP를 ë냅니다 &Theme 테마(&T) &Configure OpenLP... OpenLP 설정(&C)... &Media Manager 미디어 관리ìž(&M) Toggle Media Manager 미디어 ê´€ë¦¬ìž ìƒíƒœ 전환 Toggle the visibility of the media manager. 미디어 관리ìžì˜ 표시 여부를 전환합니다. &Theme Manager 테마 관리ìž(&T) Toggle Theme Manager 테마 ê´€ë¦¬ìž ìƒíƒœ 전환 Toggle the visibility of the theme manager. 테마 관리ìžì˜ 표시 여부를 전환합니다. &Service Manager 서비스 관리ìž(&S) Toggle Service Manager 서비스 ê´€ë¦¬ìž ìƒíƒœ 전환 Toggle the visibility of the service manager. 서비스 관리ìžì˜ 표시 여부를 전환합니다. &Preview Panel 미리보기 패ë„(&P) Toggle Preview Panel 미리보기 íŒ¨ë„ ìƒíƒœ 전환 Toggle the visibility of the preview panel. 미리보기 패ë„ì˜ í‘œì‹œ 여부를 전환합니다. &Live Panel ë¼ì´ë¸Œ 패ë„(&L) Toggle Live Panel ë¼ì´ë¸Œ íŒ¨ë„ ìƒíƒœ 전환 Toggle the visibility of the live panel. ë¼ì´ë¸Œ 패ë„ì˜ í‘œì‹œ 여부를 전환합니다. List the Plugins í”ŒëŸ¬ê·¸ì¸ ëª©ë¡ì„ 표시합니다 &User Guide ì‚¬ìš©ìž ì•ˆë‚´ì„œ(&U) &About ì •ë³´(&A) More information about OpenLP OpenLPì˜ ìžì„¸í•œ ì •ë³´ &Online Help 온ë¼ì¸ ë„움ë§(&O) &Web Site 웹 사ì´íЏ(&W) Use the system language, if available. 가능하다면 시스템 언어를 사용합니다. Set the interface language to %s ì¸í„°íŽ˜ì´ìФ 언어를 %s(으)로 설정 Add &Tool... ë„구 추가(&T)... Add an application to the list of tools. í”„ë¡œê·¸ëž¨ì— ë„구 목ë¡ì„ 추가합니다. &Default 기본값(&D) Set the view mode back to the default. 보기 ìƒíƒœë¥¼ 기본 값대로 설정합니다. &Setup 설정(&S) Set the view mode to Setup. 설정 í™”ë©´ì˜ ë³´ê¸° ìƒíƒœë¥¼ 설정합니다. &Live 실황(&L) Set the view mode to Live. 보기 모드를 실황으로 설정합니다. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP 버전 %sì„ ë‹¤ìš´ë¡œë“œí•  수 있습니다(현재 %s ë²„ì „ì„ ì‹¤í–‰ì¤‘). http://openlp.org/ì—서 최신 ë²„ì „ì„ ë‹¤ìš´ë¡œë“œí•  수 있습니다. OpenLP Version Updated OpenLP 버전 ì—…ë°ì´íŠ¸í•¨ OpenLP Main Display Blanked OpenLP 주 화면 비움 The Main Display has been blanked out 주 í™”ë©´ì„ ë¹„ì›Œë†“ì•˜ìŠµë‹ˆë‹¤ Default Theme: %s 기본 테마: %s English Please add the name of your language here Korean Configure &Shortcuts... 바로 가기 설정(&S)... Open &Data Folder... ë°ì´í„° í´ë” 열기(&D)... Open the folder where songs, bibles and other data resides. 노래, 성경, 기타 ë°ì´í„°ê°€ 있는 í´ë”를 엽니다. &Autodetect ìžë™ ê°ì§€(&A) Update Theme Images 테마 그림 ì—…ë°ì´íЏ Update the preview images for all themes. 모든 í…Œë§ˆì˜ ë¯¸ë¦¬ë³´ê¸° ê·¸ë¦¼ì„ ì—…ë°ì´íŠ¸í•©ë‹ˆë‹¤. Print the current service. 현재 서비스를 ì¸ì‡„합니다. L&ock Panels íŒ¨ë„ ìž ê¸ˆ(&L) Prevent the panels being moved. íŒ¨ë„ ì˜®ê¸°ê¸° ë°©ì§€. Re-run First Time Wizard 초기 마법사 다시 실행 Re-run the First Time Wizard, importing songs, Bibles and themes. 노래, 성경, 테마를 가져오는 초기 마법사를 다시 실행합니다. Re-run First Time Wizard? 초기 마법사를 다시 실행하시겠습니까? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Clear List Clear List of recent files ëª©ë¡ ì§€ìš°ê¸° Clear the list of recent files. 최근 íŒŒì¼ ëª©ë¡ì„ ì§€ì›ë‹ˆë‹¤. Configure &Formatting Tags... í¬ë§¤íŒ… 태그 설정(&F)... Export OpenLP settings to a specified *.config file OpenLP ì„¤ì •ì„ ì§€ì • *.config 파ì¼ë¡œ 내보냅니다 Settings 설정 Import OpenLP settings from a specified *.config file previously exported on this or another machine ì´ ë¨¸ì‹  ë˜ëŠ” 다른 머신ì—서 앞서 내보낸 지정 *.config 파ì¼ë¡œë¶€í„° OpenLP ì„¤ì •ì„ ê°€ì ¸ì˜µë‹ˆë‹¤ Import settings? ì„¤ì •ì„ ê°€ì ¸ì˜¬ê¹Œìš”? Open File íŒŒì¼ ì—´ê¸° OpenLP Export Settings Files (*.conf) OpenLP 내보내기 설정 파ì¼(*.conf) Import settings 설정 가져오기 OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP를 닫습니다. 가져온 ì„¤ì •ì€ ë‹¤ìŒì— OpenLP를 시작할 때 ë°˜ì˜í•©ë‹ˆë‹¤. Export Settings File 내보내기 설정 íŒŒì¼ OpenLP Export Settings File (*.conf) OpenLP 내보내기 설정 파ì¼(*.conf) New Data Directory Error 새 ë°ì´í„° 디렉터리 오류 Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP ë°ì´í„°ë¥¼ 새 ë°ì´í„° 디렉터리 ìœ„ì¹˜ì— ë³µì‚¬ì¤‘ - %s - 복사를 마칠 때까지 기다리십시오 OpenLP Data directory copy failed %s OpenLP ë°ì´í„° 디렉터리 ë³µì‚¬ì— ì‹¤íŒ¨ %s General ì¼ë°˜ Library ë¼ì´ë¸ŒëŸ¬ë¦¬ Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. ì„ íƒí•˜ì‹  파ì¼ì€ ì ì ˆí•œ OpenLP 설정 파ì¼ì´ 아닌 것 같습니다. ìž‘ì—…ì€ ì¤‘ë‹¨ë˜ì—ˆìœ¼ë©° 아무 ê²ƒë„ ë³€ê²½ë˜ì§€ 않았습니다. Projector Manager 프로ì í„° ê´€ë¦¬ìž Toggle Projector Manager 프로ì í„° ê´€ë¦¬ìž ì „í™˜ Toggle the visibility of the Projector Manager 프로ì í„° ê´€ë¦¬ìž ê°€ì‹œì„± ìƒíƒœë¥¼ 전환합니다 Export setting error 내보내기 설정 오류 The key "%s" does not have a default value so it will be skipped in this export. "%s" í‚¤ì— ê¸°ë³¸ ê°’ì´ ì—†ì–´ 내보내기 과정ì—서 건너ëœë‹ˆë‹¤. An error occurred while exporting the settings: %s ì„¤ì •ì„ ë‚´ë³´ë‚´ëŠ” 중 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error ë°ì´í„°ë² ì´ìФ 오류 The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s ê¸°ì¡´ì— ë¶ˆëŸ¬ì˜¨ ë°ì´í„°ë² ì´ìŠ¤ëŠ” OpenLP 최신 버전ì—서 만들었습니다. ë°ì´í„°ë² ì´ìФ ë²„ì „ì€ %d(ì´)지만, OpenLPì—서 필요한 ë²„ì „ì€ %d 입니다. ë°ì´í„°ë² ì´ìŠ¤ë¥¼ 불러오지 않았습니다. ë°ì´í„°ë² ì´ìФ: %s OpenLP cannot load your database. Database: %s OpenLPì—서 ë°ì´í„°ë² ì´ìŠ¤ë¥¼ 불러올 수 없습니다. ë°ì´í„°ë² ì´ìФ: %s OpenLP.MediaManagerItem No Items Selected ì„ íƒí•œ 항목 ì—†ìŒ &Add to selected Service Item ì„ íƒí•œ 서비스 항목 추가(&A) You must select one or more items to preview. 미리 ë³¼ 하나 ì´ìƒì˜ í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You must select one or more items to send live. 실황으로 보낼 하나 ì´ìƒì˜ í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You must select one or more items. 하나 ì´ìƒì˜ í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You must select an existing service item to add to. 추가할 기존 서비스 í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Invalid Service Item ìž˜ëª»ëœ ì„œë¹„ìŠ¤ 항목 You must select a %s service item. %s 서비스 í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You must select one or more items to add. 하나 ì´ìƒì˜ 추가 ì•„ì´í…œì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. No Search Results 검색 ê²°ê³¼ ì—†ìŒ Invalid File Type ìž˜ëª»ëœ íŒŒì¼ í˜•ì‹ Invalid File %s. Suffix not supported %s 파ì¼ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤. 접미부를 ì§€ì›í•˜ì§€ 않습니다 &Clone 복제(&C) Duplicate files were found on import and were ignored. 가져오기 ê³¼ì •ì— ì¤‘ë³µ 파ì¼ì„ 찾았으며 건너뛰었습니다. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> 태그가 없습니다. <verse> tag is missing. <verse> 태그가 없습니다. OpenLP.PJLink1 Unknown status 알 수 없는 ìƒíƒœ No message 메시지 ì—†ìŒ Error while sending data to projector 프로ì í„°ì— ë°ì´í„° 보내는 중 오류 Undefined command: 지정하지 ì•Šì€ ëª…ë ¹: OpenLP.PlayerTab Players ìž¬ìƒ í”„ë¡œê·¸ëž¨ Available Media Players 존재하는 미디어 ìž¬ìƒ í”„ë¡œê·¸ëž¨ Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (ì—†ìŒ) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details í”ŒëŸ¬ê·¸ì¸ ì„¸ë¶€ ì •ë³´ Status: ìƒíƒœ: Active 활성 Inactive 비활성 %s (Inactive) %s (비활성) %s (Active) %s (활성) %s (Disabled) %s (사용 안함) Manage Plugins OpenLP.PrintServiceDialog Fit Page 페ì´ì§€ì— 맞춤 Fit Width í­ ë§žì¶¤ OpenLP.PrintServiceForm Options 옵션 Copy 복사하기 Copy as HTML HTML로 복사 Zoom In 확대 Zoom Out 축소 Zoom Original ì›ëž˜ í¬ê¸°ë¡œ Other Options 기타 옵션 Include slide text if available 가능할 경우 슬ë¼ì´ë“œ 문구 í¬í•¨ Include service item notes 서비스 항목 참고 í¬í•¨ Include play length of media items 미디어 í•­ëª©ì˜ ìž¬ìƒ ì‹œê°„ ê¸¸ì´ í¬í•¨ Add page break before each text item ê°ê°ì˜ 문구 항목 ì•žì— íŽ˜ì´ì§€ 건너뛰기 ë¬¸ìž ì¶”ê°€ Service Sheet 서비스 시트 Print ì¸ì‡„ Title: 제목: Custom Footer Text: ì‚¬ìš©ìž ì •ì˜ ê¼¬ë¦¿ë§ ë¬¸êµ¬: OpenLP.ProjectorConstants OK í™•ì¸ General projector error ì¼ë°˜ 프로ì í„° 오류 Not connected error 연결하지 ì•ŠìŒ ì˜¤ë¥˜ Lamp error 램프 오류 Fan error 환í’기 오류 High temperature detected 고온 ê°ì§€ Cover open detected ë®ê°œ 개방 ê°ì§€ Check filter í•„í„° í™•ì¸ Authentication Error ì¸ì¦ 오류 Undefined Command ì •ì˜í•˜ì§€ ì•Šì€ ëª…ë ¹ Invalid Parameter ìž˜ëª»ëœ ë§¤ê°œë³€ìˆ˜ Projector Busy 프로ì í„° 사용 중 Projector/Display Error 프로ì í„°/화면 오류 Invalid packet received ìž˜ëª»ëœ íŒ¨í‚· 수신 Warning condition detected 경고 ìƒíƒœ ê°ì§€ Error condition detected 오류 ìƒíƒœ ê°ì§€ PJLink class not supported PJLink í´ëž˜ìŠ¤ë¥¼ ì§€ì›í•˜ì§€ ì•ŠìŒ Invalid prefix character ìž˜ëª»ëœ ì ‘ë‘ ë¬¸ìž The connection was refused by the peer (or timed out) 피어가 ì—°ê²°ì„ ê±°ì ˆí•¨(ë˜ëŠ” 시간 초과) The remote host closed the connection ì›ê²© í˜¸ìŠ¤íŠ¸ì˜ ì—°ê²°ì´ ëŠì–´ì¡ŒìŠµë‹ˆë‹¤ The host address was not found 호스트 주소를 ì°¾ì„ ìˆ˜ 없습니다 The socket operation failed because the application lacked the required privileges 프로그램ì—서 필요한 ê¶Œí•œì´ ë¹ ì ¸ 소켓 ì²˜ë¦¬ì— ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤ The local system ran out of resources (e.g., too many sockets) 로컬 ì‹œìŠ¤í…œì˜ ìžì›ì´ 부족합니다(예: 소켓 수 초과) The socket operation timed out 소켓 처리 ì‹œê°„ì´ ì§€ë‚¬ìŠµë‹ˆë‹¤ The datagram was larger than the operating system's limit ë°ì´í„°ê·¸ëž¨ í¬ê¸°ê°€ ìš´ì˜ì²´ì œì—서 허용하는 í¬ê¸°ë¥¼ 넘었습니다 An error occurred with the network (Possibly someone pulled the plug?) 네트워í¬ì— 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤(누군가가 플러그를 뽑았ì„ì§€ë„?) The address specified with socket.bind() is already in use and was set to be exclusive socket.bind()로 지정한 주소가 ì´ë¯¸ 사용중ì´ë©° ë°°íƒ€ì  ì£¼ì†Œë¡œ 설정했습니다 The address specified to socket.bind() does not belong to the host socket.bind()로 지정한 주소는 호스트 주소가 아닙니다 The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) 요청한 소켓 처리를 로컬 ìš´ì˜ì²´ì œì—서 ì§€ì›í•˜ì§€ 않습니다(예: IPv6 ì§€ì› ê¸°ëŠ¥ ë¹ ì§) The socket is using a proxy, and the proxy requires authentication ì†Œì¼“ì€ í”„ë¡ì‹œë¥¼ 거치며 프ë¡ì‹œì—서 ì¸ì¦ì´ 필요합니다. The SSL/TLS handshake failed SSL/TLS 처리 과정 실패 The last operation attempted has not finished yet (still in progress in the background) 마지막 처리 시ë„ê°€ ì•„ì§ ë나지 않았습니다(여전히 백그ë¼ìš´ë“œì—서 처리 중) Could not contact the proxy server because the connection to that server was denied 서버 ì—°ê²°ì´ ê±°ë¶€ë˜ì–´ 프ë¡ì‹œ ì„œë²„ì— ì—°ê²°í•  수 없습니다 The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) 서버 ì—°ê²°ì´ ì˜ˆìƒì¹˜ 않게 ëŠê²¼ìŠµë‹ˆë‹¤(마지막 í”¼ì–´ë¡œì˜ ì—°ê²°ì´ ì„±ë¦½í•˜ê¸° ì „) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. 프ë¡ì‹œ 서버 ì—°ê²° ì‹œê°„ì„ ì´ˆê³¼í–ˆê±°ë‚˜ ì¸ì¦ 과정ì—서 프ë¡ì‹œ 서버 ì‘ë‹µì´ ë©ˆì¶”ì—ˆìŠµë‹ˆë‹¤. The proxy address set with setProxy() was not found setProxy()로 설정한 프ë¡ì‹œ 주소가 없습니다 An unidentified error occurred ë‹¨ì¼ ì‹ë³„ 오류 ë°œìƒ Not connected 연결하지 ì•ŠìŒ Connecting ì—°ê²° 중 Connected 연결함 Getting status ìƒíƒœ 가져오는 중 Off ë” Initialize in progress 초기화 ì§„í–‰ 중 Power in standby 대기모드 ì „ì› Warmup in progress 예열 ì§„í–‰ 중 Power is on ì „ì› ì¼œì§ Cooldown in progress ëƒ‰ê° ì§„í–‰ 중 Projector Information available 존재하는 프로ì íЏ ì •ë³´ Sending data ë°ì´í„° 보내는 중 Received data ë°ì´í„° 수신함 The connection negotiation with the proxy server failed because the response from the proxy server could not be understood 프ë¡ì‹œ 서버ì—서 온 ì‘ë‹µì„ í•´ì„í•  수 없어 프ë¡ì‹œ 서버 ì—°ê²° 과정 ì²˜ë¦¬ì— ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤. OpenLP.ProjectorEdit Name Not Set ì´ë¦„ 설정하지 ì•ŠìŒ You must enter a name for this entry.<br />Please enter a new name for this entry. ì´ í•­ëª©ì˜ ì´ë¦„ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤.<br />ì´ í•­ëª©ì˜ ìƒˆ ì´ë¦„ì„ ìž…ë ¥í•˜ì‹­ì‹œì˜¤. Duplicate Name 중복 ì´ë¦„ OpenLP.ProjectorEditForm Add New Projector 새 프로ì í„° 추가 Edit Projector 프로ì í„° 편집 IP Address IP 주소 Port Number í¬íЏ 번호 PIN PIN Name 명칭 Location 위치 Notes 참고 Database Error ë°ì´í„°ë² ì´ìФ 오류 There was an error saving projector information. See the log for the error 프로ì í„° ì •ë³´ ì €ìž¥ì— ì˜¤ë¥˜ê°€ 있습니다. 오류 로그를 살펴보십시오 OpenLP.ProjectorManager Add Projector 프로ì í„° 추가 Add a new projector 새 프로ì í„°ë¥¼ 추가합니다 Edit Projector 프로ì í„° 편집 Edit selected projector ì„ íƒí•œ 프로ì í„°ë¥¼ 편집합니다 Delete Projector 프로ì í„° ì‚­ì œ Delete selected projector ì„ íƒí•œ 프로ì í„°ë¥¼ 삭제합니다 Select Input Source ìž…ë ¥ 소스 ì„ íƒ Choose input source on selected projector ì„ íƒí•œ 프로ì í„°ì˜ ìž…ë ¥ 소스를 ì„ íƒí•©ë‹ˆë‹¤ View Projector 프로ì í„° 보기 View selected projector information ì„ íƒí•œ 프로ì í„°ì˜ 정보를 봅니다 Connect to selected projector ì„ íƒí•œ 프로ì í„°ì— ì—°ê²° Connect to selected projectors ì„ íƒí•œ 프로ì í„°ì— 연결합니다 Disconnect from selected projectors ì„ íƒí•œ 프로ì í„° ì—°ê²° ëŠê¸° Disconnect from selected projector ì„ íƒí•œ 프로ì í„° ì—°ê²°ì„ ëŠìŠµë‹ˆë‹¤ Power on selected projector ì„ íƒí•œ 프로ì í„° ì „ì› ì¼œê¸° Standby selected projector ì„ íƒí•œ 프로ì í„° 대기모드 ì§„ìž… Put selected projector in standby ì„ íƒí•œ 프로ì í„°ë¥¼ 대기모드로 놓습니다 Blank selected projector screen ì„ íƒí•œ 프로ì í„° 화면 비우기 Show selected projector screen ì„ íƒí•œ 프로ì íЏ 화면 표시 &View Projector Information 프로ì í„° ì •ë³´ 보기(&V) &Edit Projector 프로ì í„° 편집(&E) &Connect Projector 프로ì í„° 연결하기(&C) D&isconnect Projector 프로ì í„° ì—°ê²° ëŠê¸°(&I) Power &On Projector 프로ì í„° ì „ì› ì¼œê¸°(&O) Power O&ff Projector 프로ì í„° ì „ì› ë„기(&F) Select &Input ìž…ë ¥ ì„ íƒ(&I) Edit Input Source ìž…ë ¥ 소스 편집 &Blank Projector Screen 프로ì í„° 화면 비우기(&B) &Show Projector Screen 프로ì í„° 화면 표시(&S) &Delete Projector 프로ì í„° 제거(&D) Name 명칭 IP IP Port í¬íЏ Notes 참고 Projector information not available at this time. 현재 프로ì í„° 정보를 ì°¾ì„ ìˆ˜ 없습니다. Projector Name 프로ì í„° ì´ë¦„ Manufacturer 제조사 Model ëª¨ë¸ Other info 기타 ì •ë³´ Power status ì „ì› ìƒíƒœ Shutter is ë®ê°œ: Closed 닫힘 Current source input is 현재 ìž…ë ¥ 소스 Lamp 램프 On 켬 Off ë” Hours 시간 No current errors or warnings 현재 오류 ë˜ëŠ” 경고 ì—†ìŒ Current errors/warnings 현재 오류/경고 Projector Information 프로ì í„° ì •ë³´ No message 메시지 ì—†ìŒ Not Implemented Yet ì•„ì§ êµ¬í˜„í•˜ì§€ ì•ŠìŒ Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan 냉ê°íŒ¬ Lamp 램프 Temperature ì˜¨ë„ Cover ë®ê°œ Filter í•„í„° Other 기타 OpenLP.ProjectorTab Projector 프로ì í„° Communication Options 통신 옵션 Connect to projectors on startup 시작시 프로ì í„° ì—°ê²° Socket timeout (seconds) 소켓 제한시간(ì´ˆ) Poll time (seconds) í´ë§ 시간(ì´ˆ) Tabbed dialog box 탭 대화ìƒìž Single dialog box ë‹¨ì¼ ëŒ€í™”ìƒìž OpenLP.ProjectorWizard Duplicate IP Address ì¤‘ë³µëœ IP 주소 Invalid IP Address ìž˜ëª»ëœ IP 주소 Invalid Port Number ìž˜ëª»ëœ í¬íЏ 번호 OpenLP.ScreenList Screen 화면 primary 첫번째 OpenLP.ServiceItem <strong>Start</strong>: %s <strong>시작</strong>: %s <strong>Length</strong>: %s <strong>길ì´</strong>: %s [slide %d] [%d번 슬ë¼ì´ë“œ] OpenLP.ServiceItemEditForm Reorder Service Item 예배 항목 재정렬 OpenLP.ServiceManager Move to &top ìƒìœ„로 ì´ë™(&T) Move item to the top of the service. 서비스 ìƒìœ„로 í•­ëª©ì„ ì´ë™í•©ë‹ˆë‹¤. Move &up 위로 ì´ë™(&U) Move item up one position in the service. ì„œë¹„ìŠ¤ì˜ ìœ„ 부분으로 í•­ëª©ì„ ì´ë™í•©ë‹ˆë‹¤. Move &down 아래로 ì´ë™(&D) Move item down one position in the service. ì„œë¹„ìŠ¤ì˜ ì•„ëž˜ 부분으로 í•­ëª©ì„ ì´ë™í•©ë‹ˆë‹¤. Move to &bottom 하단으로 ì´ë™(&B) Move item to the end of the service. ì„œë¹„ìŠ¤ì˜ ë 부분으로 í•­ëª©ì„ ì´ë™í•©ë‹ˆë‹¤. &Delete From Service &예배ì—서 ì‚­ì œ Delete the selected item from the service. ì„ íƒí•œ í•­ëª©ì„ ì˜ˆë°°ì—서 제거합니다. &Add New Item &새로운 항목 추가 &Add to Selected Item &Edit Item &항목 수정 &Reorder Item &Notes &Change Item Theme File is not a valid service. Missing Display Handler Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as the plugin required to display it is missing or inactive &Expand all &ëª¨ë‘ íŽ¼ì¹˜ê¸° Expand all the service items. 모든 예배 í•­ëª©ì„ íŽ¼ì¹©ë‹ˆë‹¤. &Collapse all &ëª¨ë‘ ì ‘ê¸° Collapse all the service items. 모든 예배 í•­ëª©ì„ ì ‘ìŠµë‹ˆë‹¤. Open File íŒŒì¼ ì—´ê¸° Moves the selection down the window. Move up Moves the selection up the window. Go Live Send the selected item to Live. &Start Time 시작 시간(&S) Show &Preview 미리 보기 표시(&P) Modified Service The current service has been modified. Would you like to save this service? 현재 예배가 수정ë˜ì—ˆìŠµë‹ˆë‹¤. ì´ ì˜ˆë°°ë¥¼ 저장할 까요? Custom Service Notes: 개별 예배 참고: Notes: 노트: Playing time: ìž¬ìƒ ì‹œê°„: Untitled Service 제목 없는 예배 File could not be opened because it is corrupt. 파ì¼ì´ 깨져 ì—´ 수 없습니다. Empty File 빈 íŒŒì¼ This service file does not contain any data. 예배 파ì¼ì— ë°ì´í„°ê°€ 없습니다. Corrupt File íŒŒì¼ ê¹¨ì§ Load an existing service. 기존 예배 ë‚´ìš©ì„ ë¶ˆëŸ¬ì˜µë‹ˆë‹¤. Save this service. ì´ ì˜ˆë°°ë¥¼ 저장합니다. Select a theme for the service. 예배 ë‚´ìš©ì— ëŒ€í•œ 테마를 ì„ íƒí•˜ì‹­ì‹œì˜¤. Slide theme 스ë¼ì´ë“œ 테마 Notes 참고 Edit 수정 Service copy only Error Saving File íŒŒì¼ ì €ìž¥ 오류 There was an error saving your file. íŒŒì¼ ì €ìž¥ 중 오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤. Service File(s) Missing 예배 íŒŒì¼ ë¹ ì§ &Rename... ì´ë¦„ 바꾸기(&R)... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP 예배 íŒŒì¼ (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP 예배 íŒŒì¼ (*.osz);; OpenLP 예배 íŒŒì¼ - 간소 í˜•ì‹ (*.oszl) OpenLP Service Files (*.osz);; OpenLP 예배 íŒŒì¼ (*.osz);; File is not a valid service. The content encoding is not UTF-8. 올바른 예배 íŒŒì¼ í˜•ì‹ì´ 아닙니다. ë‚´ìš© ì¸ì½”ë”©ì´ UTF-8ì´ ì•„ë‹™ë‹ˆë‹¤. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. 현재 불러오려는 예배 파ì¼ì€ ì˜¤ëž˜ëœ í˜•ì‹ìž…니다. OpenLP 2.0.2 í˜¹ì€ ì´ìƒì˜ 버전으로 저장하세요. This file is either corrupt or it is not an OpenLP 2 service file. ì´ íŒŒì¼ì€ ì†ìƒë˜ì—ˆê±°ë‚˜ OpenLP 2 예배 파ì¼ì´ 아닙니다. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. Rename item title Title: 제목: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes OpenLP.SettingsForm Configure OpenLP OpenLP 설정 OpenLP.ShortcutListDialog Action ë™ìž‘ Shortcut 단축키 Duplicate Shortcut 단축키 중복 The shortcut "%s" is already assigned to another action, please use a different shortcut. "%s" 단축키를 ì´ë¯¸ 다른 ë™ìž‘ì— í• ë‹¹í–ˆìŠµë‹ˆë‹¤. 다른 바로 Alternate Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Default 기본 Custom Capture shortcut. Restore the default shortcut of this action. ì´ ë™ìž‘ì— ëŒ€í•œ 기본 단축키를 복구합니다. Restore Default Shortcuts 기본 단축키 복구 Do you want to restore all shortcuts to their defaults? 모든 단축키를 기본 값으로 복구하시겠습니까? Configure Shortcuts 단축키 설정 OpenLP.SlideController Hide 숨김 Go To 다ìŒìœ¼ë¡œ ì´ë™ Blank Screen 빈 화면 Blank to Theme 빈 테마 Show Desktop 바탕화면 표시 Previous Service ì´ì „ 예배 Next Service ë‹¤ìŒ ì˜ˆë°° Escape Item Move to previous. Move to next. Play Slides Delay between slides in seconds. Move to live. Add to Service. Edit and reload song preview. Start playing media. 미디어 ìž¬ìƒ ì‹œìž‘. Pause audio. Pause playing media. 미디어 ìž¬ìƒ ì¼ì‹œ 중지. Stop playing media. 미디어 ìž¬ìƒ ì¤‘ë‹¨. Video position. Audio Volume. Go to "Verse" Go to "Chorus" Go to "Bridge" Go to "Pre-Chorus" Go to "Intro" Go to "Ending" Go to "Other" Previous Slide 앞 슬ë¼ì´ë“œ Next Slide ë‹¤ìŒ ìŠ¤ë¼ì´ë“œ Pause Audio 오디오 잠시 멈춤 Background Audio ë°°ê²½ 오디오 Go to next audio track. ë‹¤ìŒ ì˜¤ë””ì˜¤ 트랙으로 ì´ë™í•©ë‹ˆë‹¤. Tracks 트랙 OpenLP.SourceSelectForm Select Projector Source 프로ì í„° ì„ íƒ Edit Projector Source Text 프로ì í„° í…스트 편집 Ignoring current changes and return to OpenLP 현재 ë°”ë€ ë‚´ìš©ì„ ë¬´ì‹œí•˜ê³  OpenLP로 복귀 Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP 바꾸니 ë‚´ìš©ì„ ì €ìž¥í•˜ê³  OpenLP로 복귀 Delete entries for this projector ì´ í”„ë¡œì í„°ì˜ 항목 ì‚­ì œ Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Formatting Tags Language: 언어: OpenLP.StartTimeForm Theme Layout The blue box shows the main area. The red box shows the footer. OpenLP.StartTime_form Item Start and Finish Time Hours: 시간: Minutes: ë¶„: Seconds: ì´ˆ: Start 시작 Finish 마침 Length ê¸¸ì´ Time Validation Error 시간 ê²€ì¦ ì˜¤ë¥˜ Finish time is set after the end of the media item 마침 ì‹œê°„ì„ ë¯¸ë””ì–´ 항목 ë 다ìŒì— 설정했습니다 Start time is after the finish time of the media item 시작 ì‹œê°„ì´ ë¯¸ë””ì–´ 항목 마침 ì‹œê°„ì˜ ë‹¤ìŒìž…니다 OpenLP.ThemeForm (approximately %d lines per slide) (슬ë¼ì´ë“œë‹¹ í‰ê·  %d 줄) OpenLP.ThemeManager Create a new theme. 새 테마를 만듭니다. Edit Theme 테마 수정 Edit a theme. 테마를 수정합니다. Delete Theme 테마 ì‚­ì œ Delete a theme. 테마를 삭제합니다. Import Theme 테마 가저오기 Import a theme. 테마를 가저옵니다. Export Theme 테마 내보내기 Export a theme. 테마를 내보냅니다. &Edit Theme 테마 수정(&E) &Delete Theme 테마 ì‚­ì œ(&D) Set As &Global Default ì „ì—­ 기본값으로 설정(&G) %s (default) %s (기본) You must select a theme to edit. 편집할 테마를 ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You are unable to delete the default theme. 기본 테마를 삭제할 수 없습니다. You have not selected a theme. 테마를 ì„ íƒí•˜ì§€ 않았습니다. Save Theme - (%s) Theme Exported 테마 내보냄 Your theme has been successfully exported. 테마를 성공ì ìœ¼ë¡œ 내보냈습니다. Theme Export Failed 테마 내보내기 실패 Select Theme Import File 테마를 가져올 íŒŒì¼ ì„ íƒ File is not a valid theme. 올바른 테마 파ì¼ì´ 아닙니다. &Copy Theme 테마 복사(&C) &Rename Theme 테마 ì´ë¦„ 바꾸기(&R) &Export Theme 테마 내보내기(&E) You must select a theme to rename. ì´ë¦„ì„ ë°”ê¿€ 테마를 ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Rename Confirmation ì´ë¦„ 바꾸기 í™•ì¸ Rename %s theme? %s í…Œë§ˆì˜ ì´ë¦„ì„ ë°”ê¾¸ì‹œê² ìŠµë‹ˆê¹Œ? You must select a theme to delete. 삭제할 테마를 ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Delete Confirmation ì‚­ì œ í™•ì¸ Delete %s theme? %s 테마를 삭제하시겠습니까? Validation Error ê²€ì¦ ì˜¤ë¥˜ A theme with this name already exists. ì´ ì´ë¦„ì„ ê°€ì§„ 테마가 ì´ë¯¸ 있습니다. Copy of %s Copy of <theme name> %s 사본 Theme Already Exists ì´ë¯¸ 있는 테마 Theme %s already exists. Do you want to replace it? %s 테마가 ì´ë¯¸ 있습니다. 바꾸시겠습니까? The theme export failed because this error occurred: %s 오류가 ë°œìƒí•˜ì—¬ 테마 ë‚´ë³´ë‚´ê¸°ì— ì‹¤íŒ¨í–ˆìŠµë‹ˆë‹¤: %s OpenLP Themes (*.otz) OpenLP 테마 (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard 테마 마법사 Welcome to the Theme Wizard 테마 마법사를 사용하시는 여러분 반갑습니다 Set Up Background ë°°ê²½ 설정 Set up your theme's background according to the parameters below. í•˜ë‹¨ì˜ ë§¤ê°œ 변수 ê°’ì— ë”°ë¼ í…Œë§ˆì˜ ë°°ê²½ì„ ì„¤ì •í•©ë‹ˆë‹¤. Background type: ë°°ê²½ 형ì‹: Gradient 그레디언트 Gradient: 그레디언트: Horizontal ìˆ˜í‰ Vertical ìˆ˜ì§ Circular ì›í˜• Top Left - Bottom Right 좌측 ìƒë‹¨ - 우측 하단 Bottom Left - Top Right 좌측 하단 - 우측 ìƒë‹¨ Main Area Font Details 주 ì˜ì—­ 글꼴 세부 모양새 Define the font and display characteristics for the Display text 표시 문ìžì—´ì˜ 글꼴 ë° í‘œì‹œ 모양새를 ì •ì˜í•©ë‹ˆë‹¤ Font: 글꼴: Size: í¬ê¸°: Line Spacing: 줄 간격: &Outline: 외곽선(&O): &Shadow: 그림ìž(&S): Bold 굵게 Italic 기울임 ê¼´ Footer Area Font Details Define the font and display characteristics for the Footer text Text Formatting Details Allows additional display formatting information to be defined Horizontal Align: ìˆ˜í‰ ì •ë ¬: Left 좌측 Right 우측 Center ê°€ìš´ë° Output Area Locations 출력 ì˜ì—­ 위치 &Main Area 주 ì˜ì—­(&M) &Use default location 기본 위치 사용(&U) X position: X 위치: px px Y position: Y 위치: Width: 너비: Height: 높ì´: Use default location 기본 위치 사용 Theme name: 테마 ì´ë¦„: Edit Theme - %s 테마 수정 - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. ì´ ë§ˆë²•ì‚¬ëŠ” 테마를 만들고 편집하ë„ë¡ ë„와ì¤ë‹ˆë‹¤. ë°°ê²½ì„ ì„¤ì •í•˜ì—¬ ê³¼ì •ì„ ì‹œìž‘í•˜ë ¤ë©´ ë‹¤ìŒ ë‹¨ì¶”ë¥¼ 누르십시오. Transitions: 변환: &Footer Area ê°ì£¼ ì˜ì—­(&F) Starting color: 시작 색ìƒ: Ending color: 마침 색ìƒ: Background color: 배경색: Justify 균등 배치 Layout Preview 배치 미리보기 Transparent Preview and Save 미리보고 저장 Preview the theme and save it. 테마를 미리 ë³´ê³  저장합니다. Background Image Empty ë°°ê²½ 그림 ì—†ìŒ Select Image ì´ë¯¸ì§€ë¥¼ ì„ íƒí•˜ì„¸ìš” Theme Name Missing 테마 ì´ë¦„ ë¹ ì§ There is no name for this theme. Please enter one. ì´ í…Œë§ˆì— ì´ë¦„ì´ ì—†ìŠµë‹ˆë‹¤. ì´ë¦„ì„ ìž…ë ¥í•˜ì‹­ì‹œì˜¤. Theme Name Invalid 테마 ì´ë¦„ì´ ìž˜ëª»ë¨ Invalid theme name. Please enter one. ìž˜ëª»ëœ í…Œë§ˆ ì´ë¦„입니다. 테마 ì´ë¦„ì„ ìž…ë ¥í•˜ì‹­ì‹œì˜¤. Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. OpenLP.ThemesTab Global Theme Theme Level S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. &Service Level Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. &Global Level Use the global theme, overriding any themes associated with either the service or the songs. Themes 테마 Universal Settings 공통 설정 &Wrap footer text ê°ì£¼ ìžë™ 줄 바꿈(&W) OpenLP.Ui Delete the selected item. ì„ íƒí•œ í•­ëª©ì„ ì‚­ì œí•©ë‹ˆë‹¤. Move selection up one position. ì„ íƒ í•­ëª©ì„ í•œ 단계 위로 ì´ë™í•©ë‹ˆë‹¤. Move selection down one position. ì„ íƒ í•­ëª©ì„ í•œë‹¨ê³„ 아래로 ì´ë™í•©ë‹ˆë‹¤. &Vertical Align: ìˆ˜ì§ ì •ë ¬(&V): Finished import. 가져오기를 마쳤습니다. Format: 형ì‹: Importing 가져오는 중 Importing "%s"... "%s" 가져오기... Select Import Source 가져올 ì›ë³¸ ì„ íƒ Select the import format and the location to import from. 가져오기 í˜•ì‹ ë° ê°€ì ¸ì˜¬ 위치를 ì„ íƒí•˜ì‹­ì‹œì˜¤. Open %s File %s íŒŒì¼ ì—´ê¸° %p% %p% Ready. 준비. Starting import... 가져오기 시작함... You need to specify at least one %s file to import from. A file type e.g. OpenSong ìµœì†Œí•œì˜ ê°€ì ¸ì˜¬ %s 파ì¼ì„ 지정해야합니다. Welcome to the Bible Import Wizard 성경 가져오기 마법사를 사용하시는 여러분 반갑습니다 Welcome to the Song Export Wizard 곡 내보내기 마법사를 사용하시는 여러분 반갑습니다 Welcome to the Song Import Wizard 곡 가져오기 마법사를 사용하시는 여러분 반갑습니다 Author Singular ìž‘ì„±ìž Authors Plural ìž‘ì„±ìž Â© Copyright symbol. © Song Maintenance 곡 관리 Topic Singular 주제 Topics Plural 주제 Title and/or verses not found 제목 ë˜ëŠ” ì ˆì´ ì—†ìŠµë‹ˆë‹¤ XML syntax error XML 문법 오류 Welcome to the Bible Upgrade Wizard 성경 업그레ì´ë“œ 마법사를 사용하시는 여러분 반갑습니다 Open %s Folder %s í´ë” 열기 You need to specify one %s file to import from. A file type e.g. OpenSong 가져올 %s 파ì¼ì„ 지정해야합니다. You need to specify one %s folder to import from. A song format e.g. PowerSong 가져올 %s í´ë”를 지정해야합니다. Importing Songs 곡 가져오는 중 Welcome to the Duplicate Song Removal Wizard 중복 곡 제거 마법사를 사용하시는 여러분 반갑습니다 Written by 작성ìž: Author Unknown 알 수 없는 ìž‘ì„±ìž About ì •ë³´ &Add 추가(&A) Add group ëª¨ìŒ ì¶”ê°€ Advanced 고급 설정 All Files 모든 íŒŒì¼ Automatic ìžë™ Background Color 배경색 Bottom 아래 Browse... 찾아보기... Cancel 취소 CCLI number: CCLI 번호: Create a new service. 새 예배 ìžë£Œë¥¼ 만듭니다. Confirm Delete ì‚­ì œ í™•ì¸ Continuous Default 기본 Default Color: 기본 색ìƒ: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. 예베 %Y-%m-%d %H-%M &Delete ì‚­ì œ(&D) Display style: 표시 ë°©ì‹: Duplicate Error 복제 오류 &Edit 수정(&E) Empty Field 빈 ë‚´ìš© Error 오류 Export 내보내기 File íŒŒì¼ File Not Found 파ì¼ì´ 없습니다 File %s not found. Please try selecting it individually. %s 파ì¼ì´ 없습니다. 파ì¼ì„ 하나씩 ì„ íƒí•´ë³´ì‹­ì‹œì˜¤. pt Abbreviated font pointsize unit pt Help ë„ì›€ë§ h The abbreviated unit for hours h Invalid Folder Selected Singular ìž˜ëª»ëœ í´ë” ì„ íƒí•¨ Invalid File Selected Singular ìž˜ëª»ëœ íŒŒì¼ ì„ íƒí•¨ Invalid Files Selected Plural ìž˜ëª»ëœ íŒŒì¼ ì„ íƒí•¨ Image 그림 Import 가져오기 Layout style: 배치 ë°©ì‹: Live ë¼ì´ë¸Œ Live Background Error ë¼ì´ë¸Œ ë°°ê²½ 오류 Live Toolbar ë¼ì´ë¸Œ ë„구 ëª¨ìŒ Load 불러오기 Manufacturer Singular 제조사 Manufacturers Plural 제조사 Model Singular ëª¨ë¸ Models Plural ëª¨ë¸ m The abbreviated unit for minutes m Middle ê°€ìš´ë° New 새로 만들기 New Service 새 예배 New Theme 새 테마 Next Track ë‹¤ìŒ íŠ¸ëž™ No Folder Selected Singular ì„ íƒí•œ í´ë” ì—†ìŒ No File Selected Singular ì„ íƒí•œ íŒŒì¼ ì—†ìŒ No Files Selected Plural ì„ íƒí•œ íŒŒì¼ ì—†ìŒ No Item Selected Singular ì„ íƒí•œ 항목 ì—†ìŒ No Items Selected Plural ì„ íƒí•œ 항목 ì—†ìŒ OpenLP is already running. Do you wish to continue? OpenLP를 ì´ë¯¸ 실행중입니다. 계ì†í•˜ì‹œê² ìŠµë‹ˆê¹Œ? Open service. 예배를 엽니다. Play Slides in Loop 슬ë¼ì´ë“œ 반복 ìž¬ìƒ Play Slides to End 슬ë¼ì´ë“œë¥¼ ë까지 ìž¬ìƒ Preview 미리보기 Print Service ì¸ì‡„ 서비스 Projector Singular 프로ì í„° Projectors Plural 프로ì í„° Replace Background ë°°ê²½ 바꾸기 Replace live background. ë¼ì´ë¸Œ ë°°ê²½ì„ ë°”ê¿‰ë‹ˆë‹¤. Reset Background ë°°ê²½ 초기화 Reset live background. ë¼ì´ë¸Œ ë°°ê²½ì„ ì´ˆê¸°í™”í•©ë‹ˆë‹¤. s The abbreviated unit for seconds Save && Preview 저장하고 미리보기 Search 검색 Search Themes... Search bar place holder text 테마 검색... You must select an item to delete. 삭제할 í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. You must select an item to edit. 편집할 í•­ëª©ì„ ì„ íƒí•´ì•¼í•©ë‹ˆë‹¤. Settings 설정 Save Service 예배 저장 Service 예배 Optional &Split Split a slide into two only if it does not fit on the screen as one slide. Start %s %s 시작 Stop Play Slides in Loop 슬ë¼ì´ë“œ 반복 ìž¬ìƒ ë©ˆì¶¤ Stop Play Slides to End 마지막 슬ë¼ì´ë“œ 표시 후 멈춤 Theme Singular 테마 Themes Plural 테마 Tools ë„구 Top ìƒë‹¨ Unsupported File ì§€ì›í•˜ì§€ 않는 íŒŒì¼ Verse Per Slide 슬ë¼ì´ë“œ 당 ì ˆ 표시 Verse Per Line 한 줄 당 ì ˆ 표시 Version 버전 View 보기 View Mode 보기 ìƒíƒœ CCLI song number: CCLI 곡 번호: Preview Toolbar 미리보기 ë„구 ëª¨ìŒ OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s와(ê³¼) %s %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. Presentation name singular Presentations name plural Presentations container title Load a new presentation. Delete the selected presentation. Preview the selected presentation. Send the selected presentation live. Add the selected presentation to the service. PresentationPlugin.MediaItem Select Presentation(s) Automatic ìžë™ Present using: File Exists A presentation with that filename already exists. This type of presentation is not supported. Presentations (%s) Missing Presentation The presentation %s is incomplete, please reload. The presentation %s no longer exists. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers %s (unavailable) %s (ì—†ìŒ) Allow presentation application to be overridden PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. Remote name singular Remotes name plural Remote container title Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager 예배 ë‚´ìš© ê´€ë¦¬ìž Slide Controller Alerts 경고 Search 검색 Home Refresh Blank Theme 테마 Desktop Show Prev Next ë‹¤ìŒ Text Show Alert Go Live Add to Service Add &amp; Go to Service No Results Options 옵션 Service 예배 Slides Settings 설정 Remote Stage View Live View RemotePlugin.RemoteTab Serve on IP address: Port number: Server Settings Remote URL: Stage view URL: Display stage time in 12h format Android App Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: 암호: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Delete Tracking Data Delete song usage data up to a specified date. &Extract Tracking Data Generate a report on song usage. Toggle Tracking Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. SongUsage name singular SongUsage name plural SongUsage container title Song Usage Song usage tracking is active. Song usage tracking is inactive. display printed SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? Deletion Successful Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Select Date Range to ~ Report Location Output File Location usage_detail_%s_%s.txt Report Creation Report %s has been successfully created. Output Path Not Selected You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song Import songs using the import wizard. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. &Re-index Songs Re-index the songs database to improve searching and ordering. Reindexing songs... Arabic (CP-1256) Baltic (CP-1257) Central European (CP-1250) Cyrillic (CP-1251) Greek (CP-1253) Hebrew (CP-1255) Japanese (CP-932) Korean (CP-949) Simplified Chinese (CP-936) Thai (CP-874) Traditional Chinese (CP-950) Turkish (CP-1254) Vietnam (CP-1258) Western European (CP-1252) Character Encoding The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Please choose the character encoding. The encoding is responsible for the correct character representation. Song name singular Songs name plural 곡 Songs container title 곡 Exports songs using the export wizard. Add a new song. 새 노래를 추가합니다. Edit the selected song. ì„ íƒí•œ 노래를 편집합니다. Delete the selected song. ì„ íƒí•œ 노래를 삭제합니다. Preview the selected song. ì„ íƒí•œ 노래를 미리 들어봅니다. Send the selected song live. ì„ íƒí•œ 노래를 실시간으로 내보냅니다. Add the selected song to the service. ì„ íƒí•œ 노래를 ì„œë¹„ìŠ¤ì— ì¶”ê°€í•©ë‹ˆë‹¤. Reindexing songs 노래 다시 ì¸ë±ì‹±í•˜ëŠ” 중 CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs 중복 노래 찾기(&D) Find and remove duplicate songs in the song database. 노래 ë°ì´í„°ë² ì´ìФì—서 중복 노래를 찾아 제거합니다. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song 단어 Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song 번역 SongsPlugin.AuthorsForm Author Maintenance ì €ìž‘ìž ê´€ë¦¬ Display name: 표시 ì´ë¦„: First name: ì´ë¦„: Last name: 성: You need to type in the first name of the author. ì €ìž‘ìž ì´ë¦„ì„ ìž…ë ¥í•´ì•¼í•©ë‹ˆë‹¤. You need to type in the last name of the author. ì €ìž‘ìž ì„±ì„ ìž…ë ¥í•´ì•¼í•©ë‹ˆë‹¤. You have not set a display name for the author, combine the first and last names? ì €ìž‘ìž í‘œì‹œ ì´ë¦„ì„ ì„¤ì •í•˜ì§€ 않았습니다. 성과 ì´ë¦„ì„ í•©ì³ë„£ì„까요? SongsPlugin.CCLIFileImport The file does not have a valid extension. íŒŒì¼ ì´ë¦„ì— ìœ íš¨í•œ 확장ìžê°€ 없습니다. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. ìž˜ëª»ëœ DreamBeam 노래 파ì¼ìž…니다. DreamBeam 태그가 빠졌습니다. SongsPlugin.EasyWorshipSongImport Administered by %s %s(ì´)ê°€ 관리함 "%s" could not be imported. %s "%s" 노래를 가져올 수 없습니다. %s Unexpected data formatting. 예ìƒì¹˜ 못한 ë°ì´í„° 형ì‹ìž…니다. No song text found. 노래 í…스트가 없습니다. [above are Song Tags with notes imported from EasyWorship] This file does not exist. 파ì¼ì´ 없습니다. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data 메타ë°ì´í„° Custom Book Names ì‚¬ìš©ìž ì •ì˜ ì±… ì´ë¦„ SongsPlugin.EditSongForm Song Editor 노래 편집기 &Title: 제목(&T): Alt&ernate title: 대체 제목(&E): &Lyrics: 가사(&L): &Verse order: ì ˆ 순서(&V): Ed&it All ëª¨ë‘ íŽ¸ì§‘(&I) Title && Lyrics ì´ë¦„ ë° ê°€ì‚¬(&&) &Add to Song 노래 추가(&A) &Remove 제거(&R) A&dd to Song ë…¸ëž˜ì— ì¶”ê°€(&D) R&emove 제거(&E) New &Theme Copyright Information 저작권 ì •ë³´ Comments 설명 Theme, Copyright Info && Comments Add Author This author does not exist, do you want to add them? This author is already in the list. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Add Topic This topic does not exist, do you want to add it? This topic is already in the list. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You need to type in a song title. You need to type in at least one verse. You need to have an author for this song. Linked Audio Add &File(s) Add &Media 미디어 추가(&M) Remove &All Open File(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse &Verse type: &Insert Split a slide into two by inserting a verse splitter. SongsPlugin.ExportWizardForm Song Export Wizard Select Songs Check the songs you want to export. Uncheck All Check All Select Directory Directory: Exporting Please wait while your songs are exported. You need to add at least one Song to export. No Save Location specified Starting export... You need to specify a directory. Select Destination Folder Select the directory where you want the songs to be saved. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type SongsPlugin.ImportWizardForm Select Document/Presentation Files Song Import Wizard This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Generic Document/Presentation Add Files... 파ì¼ì¶”ê°€... Remove File(s) 파ì¼ì‚­ì œ Please wait while your songs are imported. ìŒì•…ì„ ê°€ì ¸ì˜¤ëŠ” 중입니다. Words Of Worship Song Files Songs Of Fellowship Song Files SongBeamer Files SongShow Plus Song Files Foilpresenter Song Files Copy 복사하기 Save to File 파ì¼ë¡œ 저장하기 The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenLyrics Files CCLI SongSelect Files EasySlides XML File EasyWorship Song Database DreamBeam Song Files You need to specify a valid PowerSong 1.0 database folder. ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files This importer has been disabled. MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files SongPro (Export File) In SongPro, export your songs using the File -> Export menu EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s 오류: %s SongsPlugin.MediaFilesForm Select Media File(s) 미디어 파ì¼(여러개) ì„ íƒí•˜ì„¸ìš” Select one or more audio files from the list below, and click OK to import them into this song. SongsPlugin.MediaItem Titles Lyrics 가사 CCLI License: Entire Song Maintain the lists of authors, topics and books. copy For song cloning 복사하기 Search Titles... Search Entire Song... Search Lyrics... 가사 검색... Search Authors... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. Verses not found. Missing "PART" header. No %s files found. Invalid %s file. Unexpected byte value. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. SongsPlugin.SongBookForm &Name: &Publisher: You need to type in a name for the book. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. ìŒì•…불러오기 실패. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright The following songs could not be imported: Cannot access OpenOffice or LibreOffice Unable to open file File not found SongsPlugin.SongMaintenanceForm Could not add your author. This author already exists. Could not add your topic. This topic already exists. Could not add your book. This book already exists. Could not save your changes. Could not save your modified author, because the author already exists. Could not save your modified topic, because it already exists. Delete Author Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. Delete Topic Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. Delete Book ì„ ê²½ 삭제하기 Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. The author %s already exists. Would you like to make songs with author %s use the existing author %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: ì‚¬ìš©ìž ì´ë¦„: Password: 암호: Save username and password ì•„ì´ë”” ë° ë¹„ë°€ë²ˆí˜¸ 저장하기 Login ë¡œê·¸ì¸ Search Text: 문구 검색: Search 검색 Found %s song(s) %s곡 찾았습니다. Logout 로그아웃 View 보기 Title: 제목: Author(s): 작곡ìž: Copyright: 저작권: CCLI Number: CCLI 번호 Lyrics: 가사: Back 뒤로 Import 가져오기 More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password ì‚¬ìš©ìž ëª…ê³¼ 암호 저장 WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. 경고: 사용ìžëª…ê³¼ 암호를 저장하는 ê²ƒì€ ì•ˆì „í•˜ì§€ 못 합니다. 암호는 í‰ë¬¸ìœ¼ë¡œ 저장ë©ë‹ˆë‹¤. 암호를 저장하시려면 예를 누르시거나 취소하시려면 아니오를 누르세요. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? ë¡œê·¸ì¸ ì¤‘ 문제가 ìƒê²¼ìŠµë‹ˆë‹¤. 사용ìžëª…ì´ë‚˜ 암호가 잘 못 ëœê²ƒ 같습니다. Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop 멈추기 SongsPlugin.SongsTab Songs Mode Display verses on live tool bar Update service from song edit Import missing songs from service files Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Topic name: You need to type in a topic name. SongsPlugin.VerseType Verse ì ˆ Chorus 후렴 Bridge 브리지 Pre-Chorus Pre-전주 Intro 전주 Ending 아웃트로 Other 기타 SongsPlugin.VideoPsalmImport Error: %s 오류: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Line %d: %s Decoding error: %s File not valid WorshipAssistant CSV format. Record %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. File not valid ZionWorx CSV format. Line %d: %s Decoding error: %s Record %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information ì •ë³´ No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/zh_CN.ts0000644000175000017500000147463512657640340015737 0ustar raoulraoul AlertsPlugin &Alert 警告(A) Show an alert message. 显示一个警告信æ¯. Alert name singular 警告 Alerts name plural 警告 Alerts container title 警告 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message è­¦å‘Šä¿¡æ¯ Alert &text: 警告文本(T): &New 新建(N) &Save ä¿å­˜(S) Displ&ay 显示(A) Display && Cl&ose 显示关闭(O) New Alert 新建警告 &Parameter: 傿•°(P): No Parameter Found æœªæ‰¾åˆ°å‚æ•° You have not entered a parameter to be replaced. Do you want to continue anyway? 您还没有输入需è¦è¢«æ›¿æ¢çš„傿•°ï¼Œä»ç„¶å¸Œæœ›ç»§ç»­å—? No Placeholder Found 未找到å ä½ç¬¦ The alert text does not contain '<>'. Do you want to continue anyway? 警告文字并ä¸åŒ…å«'<>'。 您ä¾ç„¶å¸Œæœ›ç»§ç»­å—? You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. 警告信æ¯å·²åˆ›å»ºå¹¶æ˜¾ç¤º. AlertsPlugin.AlertsTab Font 字体 Font name: 字体å称: Font color: 字体颜色: Background color: 背景颜色: Font size: å­—å·ï¼š Alert timeout: 警告时长: BiblesPlugin &Bible 圣ç»(B) Bible name singular åœ£ç» Bibles name plural åœ£ç» Bibles container title åœ£ç» No Book Found æœªæ‰¾åˆ°ä»»ä½•ä¹¦å· No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. 在这本圣ç»ä¸­æœªå‘现任何匹é…的书å·ï¼Œè¯·æ£€æŸ¥æ‚¨è¾“å…¥çš„ä¹¦åæ˜¯å¦æ­£ç¡®ã€‚ Import a Bible. å¯¼å…¥ä¸€æœ¬åœ£ç» Add a new Bible. æ–°å¢žä¸€æœ¬åœ£ç» Edit the selected Bible. ç¼–è¾‘é€‰ä¸­çš„åœ£ç» Delete the selected Bible. åˆ é™¤é€‰ä¸­çš„åœ£ç» Preview the selected Bible. é¢„è§ˆé€‰ä¸­çš„åœ£ç» Send the selected Bible live. 将选中的圣ç»å‘é€åˆ°çŽ°åœº Add the selected Bible to the service. 将选中的圣ç»å¢žåŠ åˆ°èšä¼š <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>åœ£ç»æ’ä»¶</strong><br />åœ¨æ•¬æ‹œæ—¶åœ£ç»æ’ä»¶æä¾›ä»Žä¸åŒæ¥æºæ˜¾ç¤ºåœ£ç»ç»èŠ‚çš„åŠŸèƒ½ &Upgrade older Bibles å‡çº§æ—§ç‰ˆæœ¬çš„圣ç»(U) Upgrade the Bible databases to the latest format. å‡çº§åœ£ç»æ•°æ®åº“åˆ°æœ€æ–°çš„æ ¼å¼ Genesis 创世纪 Exodus 出埃åŠè®° Leviticus 利未记 Numbers æ°‘æ•°è®° Deuteronomy 申命记 Joshua 约书亚记 Judges 士师记 Ruth 路得记 1 Samuel æ’’æ¯è€³è®°ä¸Š 2 Samuel æ’’æ¯è€³è®°ä¸‹ 1 Kings 列王纪上 2 Kings 列王纪下 1 Chronicles 历代志上 2 Chronicles 历代志下 Ezra 以斯拉记 Nehemiah 尼希米记 Esther 以斯帖记 Job 约伯记 Psalms 诗篇 Proverbs 箴言 Ecclesiastes ä¼ é“书 Song of Solomon é›…æ­Œ Isaiah 以赛亚书 Jeremiah 耶利米书 Lamentations 耶利米哀歌 Ezekiel 以西结书 Daniel 但以ç†ä¹¦ Hosea 何西阿书 Joel 约ç¥ä¹¦ Amos 阿摩å¸ä¹¦ Obadiah 俄巴底亚书 Jonah 约拿书 Micah 弥迦书 Nahum 那鸿书 Habakkuk 哈巴谷书 Zephaniah 西番雅书 Haggai 哈该书 Zechariah 撒加利亚书 Malachi 玛拉基书 Matthew 马太ç¦éŸ³ Mark 马å¯ç¦éŸ³ Luke 路加ç¦éŸ³ John 约翰ç¦éŸ³ Acts 使徒行传 Romans 罗马书 1 Corinthians 哥林多å‰ä¹¦ 2 Corinthians 哥林多åŽä¹¦ Galatians 加拉太书 Ephesians 以弗所书 Philippians 腓力比书 Colossians 哥罗西书 1 Thessalonians 帖撒罗尼迦å‰ä¹¦ 2 Thessalonians 帖撒罗尼迦åŽä¹¦ 1 Timothy ææ‘©å¤ªå‰ä¹¦ 2 Timothy ææ‘©å¤ªåŽä¹¦ Titus æå¤šä¹¦ Philemon 腓力门书 Hebrews 希伯æ¥ä¹¦ James é›…å„书 1 Peter 彼得å‰ä¹¦ 2 Peter 彼得åŽä¹¦ 1 John 约翰一书 2 John 约翰二书 3 John 约翰三书 Jude 犹大书 Revelation å¯ç¤ºå½• Judith 犹滴传 Wisdom 智慧篇 Tobit 多比传 Sirach 德训篇 Baruch å·´é²ä¹¦ 1 Maccabees 马加比一书 2 Maccabees 马加比二书 3 Maccabees 马加比三书 4 Maccabees 马加比四书 Rest of Daniel 但以ç†è¡¥ç¼– Rest of Esther 以斯帖补编 Prayer of Manasses 玛拿西祷言 Letter of Jeremiah 耶利米书信 Prayer of Azariah äºšæ’’åˆ©é›…ç¥·è¯ Susanna è‹çŠå¨œä¼  Bel 比勒 1 Esdras 艾斯达å‰ä¹¦ 2 Esdras 艾斯达åŽä¹¦ : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 到 , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. 您需è¦ä¸ºæ‚¨çš„åœ£ç»æŒ‡å®šä¸€ä¸ªç‰ˆæœ¬å称。 You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 您需è¦ä¸ºæ‚¨çš„圣ç»è®¾ç½®ç‰ˆæƒã€‚在公有领域的圣ç»éœ€è¦è¢«æ ‡æ³¨å‡ºæ¥ã€‚ Bible Exists 圣ç»ç‰ˆæœ¬å­˜åœ¨ This Bible already exists. Please import a different Bible or first delete the existing one. 该版本圣ç»å·²å­˜åœ¨ã€‚请导入一个ä¸åŒç‰ˆæœ¬çš„åœ£ç»æˆ–是先删除已存在的那个。 You need to specify a book name for "%s". 您需è¦ä¸º"%s"指定一个书å·å。 The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. 书å·åç§° "%s"䏿­£ç¡®ã€‚ æ•°å­—åªèƒ½æ”¾åœ¨å¼€å¤´å¹¶ä¸”å¿…é¡»åŽæŽ¥ä¸€ä¸ªæˆ–å¤šä¸ªéžæ•°å­—字符。 Duplicate Book Name é‡å¤çš„书å·å The Book Name "%s" has been entered more than once. 书å·å"%s"已被输入过一次 BiblesPlugin.BibleManager Scripture Reference Error ç»æ–‡æ ‡è¯†é”™è¯¯ Web Bible cannot be used æ— æ³•ä½¿ç”¨ç½‘ç»œåœ£ç» Text Search is not available with Web Bibles. 无法在网络圣ç»ä¸Šå¯ç”¨æ–‡æœ¬æœç´¢ You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. 您没有输入æœç´¢çš„关键字。您å¯ä»¥ä½¿ç”¨ç©ºæ ¼æ¥åˆ†é𔿉€æœ‰éœ€è¦è¢«æœç´¢çš„关键字。若想æœç´¢å‡ ä¸ªå…³é”®å­—ä¸­çš„ä»»ä½•ä¸€ä¸ªï¼Œè¯·ä½¿ç”¨é€—å·æ¥åˆ†éš”它们。 There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. 尚未安装任何圣ç»ï¼Œè¯·ä½¿ç”¨å¯¼å…¥å‘导æ¥å®‰è£…ä¸€ä¸ªæˆ–å¤šä¸ªç‰ˆæœ¬çš„åœ£ç» No Bibles Available 无任何圣ç»å¯ç”¨ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. æ‚¨çš„ç»æ–‡æ ‡è¯†ä¸å—OpenLPæ”¯æŒæˆ–æ˜¯æ— æ•ˆçš„ï¼Œè¯·ç¡®ä¿æ‚¨çš„æ ‡è¯†ç¬¦å’Œä¸‹åˆ—ä»»æ„ä¸€ç§æ ¼å¼æˆ–是å‚阅说明文档: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display ç»èŠ‚æ˜¾ç¤º Only show new chapter numbers åªæ˜¾ç¤ºæ–°çš„ç¯‡ç« å· Bible theme: 圣ç»ä¸»é¢˜ï¼š No Brackets æ— æ‹¬å· ( And ) ( å’Œ ) { And } { å’Œ } [ And ] [ å’Œ ] Note: Changes do not affect verses already in the service. 注æ„: 改动并ä¸å½±å“已在敬拜仪å¼ä¸­çš„ç»æ–‡ Display second Bible verses 显示第二ç§åœ£ç»ç»æ–‡ Custom Scripture References è‡ªå®šä¹‰ç»æ–‡æ ‡è¯† Verse Separator: ç»èŠ‚åˆ†éš”ç¬¦ï¼š Range Separator: 范围分隔符: List Separator: 表å•分隔符: End Mark: 终止符: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. å¯å®šä¹‰å¤šç§ä¸åŒçš„ç»èŠ‚åˆ†éš”ç¬¦ã€‚ 它们必须被一æ¡ç«–线"|"分隔。 è‹¥è¦ä½¿ç”¨é»˜è®¤å€¼ï¼Œè¯·æ¸…空这一行。 English 中文 Default Bible Language 默认圣ç»è¯­è¨€ Book name language in search field, search results and on display: 书å·å称语言在æœç´¢æ ï¼Œ æœç´¢ç»“果和显示器上: Bible Language 圣ç»è¯­è¨€ Application Language 应用程åºè¯­è¨€ Show verse numbers BiblesPlugin.BookNameDialog Select Book Name 选择书å·å Current name: 当å‰å称: Corresponding name: 对应å称: Show Books From 显示书å·ä»Ž Old Testament 旧约 New Testament 新约 Apocrypha æ¬¡ç» The following book name cannot be matched up internally. Please select the corresponding name from the list. 以下书å·å无法进行内部é…对。请从列表中选择对应的å称。 BiblesPlugin.BookNameForm You need to select a book. 您需è¦é€‰æ‹©ä¸€å†Œä¹¦å·ã€‚ BiblesPlugin.CSVBible Importing books... %s 正在导入书å·... %s Importing verses... done. 正在导入ç»èŠ‚... 完æˆã€‚ BiblesPlugin.EditBibleForm Bible Editor 圣ç»ç¼–辑器 License Details 许å¯è¯ç»†èŠ‚ Version name: 版本å称: Copyright: 版æƒï¼š Permissions: æƒé™ï¼š Default Bible Language 默认圣ç»è¯­è¨€ Book name language in search field, search results and on display: 书å·å称语言在æœç´¢æ ï¼Œæœç´¢ç»“果和显示器上: Global Settings 全局设定 Bible Language 圣ç»è¯­è¨€ Application Language 应用程åºè¯­è¨€ English 中文 This is a Web Download Bible. It is not possible to customize the Book Names. 这是一本网络版圣ç»ã€‚ ä¸å¯èƒ½è‡ªå®šä¹‰ä¹¦å·å。 To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. è¦ä½¿ç”¨è‡ªå®šä¹‰ä¹¦å·å称,"圣ç»è¯­è¨€" 必须在Metaæ•°æ®æ ‡ç­¾ä¸Šè¢«é€‰ä¸­ï¼Œæˆ–者,在é…ç½®OpenLP里的圣ç»é¡µé¢ä¸Šï¼ˆå¦‚果已选择 "全局设定"çš„è¯ï¼‰ã€‚ BiblesPlugin.HTTPBible Registering Bible and loading books... 正在注册圣ç»å¹¶è½½å…¥ä¹¦å·... Registering Language... 正在注册语言... Importing %s... Importing <book name>... 正在导入 %s... Download Error 下载时出现错误 There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. 在下载您选择的ç»èŠ‚æ—¶å‡ºçŽ°ä¸€ä¸ªé—®é¢˜ã€‚è¯·æ£€æŸ¥æ‚¨çš„ç½‘ç»œè¿žæŽ¥ï¼Œå¦‚æžœæ­¤é”™è¯¯ç»§ç»­å‡ºçŽ°è¯·è€ƒè™‘æŠ¥å‘Šè½¯ä»¶ç¼ºé™·ã€‚ Parse Error è§£æžé”™è¯¯ There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. 在解包您选择的ç»èŠ‚æ—¶å‡ºçŽ°é—®é¢˜ã€‚å¦‚æžœæ­¤é”™è¯¯ç»§ç»­å‡ºçŽ°è¯·è€ƒè™‘æŠ¥å‘Šè½¯ä»¶ç¼ºé™·ã€‚ BiblesPlugin.ImportWizardForm Bible Import Wizard 圣ç»å¯¼å…¥å‘导 This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. 该å‘导将帮助您导入å„ç§ä¸åŒæ ¼å¼çš„圣ç»ã€‚点击下é¢çš„ä¸‹ä¸€æ­¥é€‰æ‹©å¯¼å…¥çš„æ ¼å¼æ¥å¯åŠ¨å¯¼å…¥è¿‡ç¨‹ã€‚ Web Download 网络下载 Location: ä½ç½®ï¼š Crosswalk Crosswalk BibleGateway BibleGateway Bible: 圣ç»ï¼š Download Options 下载选项 Server: æœåŠ¡å™¨ï¼š Username: 用户å: Password: 密ç ï¼š Proxy Server (Optional) ä»£ç†æœåС噍(å¯é€‰) License Details 许å¯è¯ç»†èŠ‚ Set up the Bible's license details. 设置圣ç»çš„许å¯è¯ç»†èŠ‚ Version name: 版本å称: Copyright: 版æƒï¼š Please wait while your Bible is imported. 请ç¨ç­‰ï¼Œæ­£åœ¨å¯¼å…¥æ‚¨çš„圣ç»ã€‚ You need to specify a file with books of the Bible to use in the import. æ‚¨éœ€è¦æŒ‡å®šåŒ…å«åœ£ç»ä¹¦å·çš„æ–‡ä»¶æ¥ä½¿ç”¨å¯¼å…¥ã€‚ You need to specify a file of Bible verses to import. æ‚¨éœ€è¦æŒ‡å®šåŒ…å«åœ£ç»ç»èŠ‚çš„æ–‡ä»¶æ¥ä½¿ç”¨å¯¼å…¥ã€‚ You need to specify a version name for your Bible. 您需è¦ä¸ºæ‚¨çš„åœ£ç»æŒ‡å®šä¸€ä¸ªç‰ˆæœ¬å称。 You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 您需è¦ä¸ºæ‚¨çš„圣ç»è®¾ç½®ç‰ˆæƒã€‚在公有领域的圣ç»éœ€è¦è¢«æ ‡æ³¨å‡ºæ¥ã€‚ Bible Exists 圣ç»ç‰ˆæœ¬å­˜åœ¨ This Bible already exists. Please import a different Bible or first delete the existing one. 该版本圣ç»å·²å­˜åœ¨ã€‚请导入一个ä¸åŒç‰ˆæœ¬çš„åœ£ç»æˆ–是先删除已存在的那个。 Your Bible import failed. 你的圣ç»å¯¼å…¥å¤±è´¥ CSV File CSV文件 Bibleserver åœ£ç»æœåС噍 Permissions: æƒé™ï¼š Bible file: åœ£ç»æ–‡ä»¶ï¼š Books file: 书巿–‡ä»¶ï¼š Verses file: ç»èŠ‚æ–‡ä»¶ï¼š Registering Bible... 正在注册圣ç»... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Download bible list Error during download An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language 选择语言 OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP无法确定此翻译本圣ç»çš„语言,请在下列èœå•中选择语言。 Language: 语言: BiblesPlugin.LanguageForm You need to choose a language. 您需è¦é€‰æ‹©ä¸€ç§è¯­è¨€ã€‚ BiblesPlugin.MediaItem Quick 快速 Find: 寻找: Book: 曲集: Chapter: 篇章: Verse: ç»èŠ‚ï¼š From: 从: To: 到: Text Search 文本æœç´¢ Second: 第二版本: Scripture Reference ç»æ–‡å‡ºå¤„: Toggle to keep or clear the previous results. 切æ¢ä¿ç•™æˆ–清空之å‰çš„结果。 You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? 您ä¸èƒ½ç»“åˆå•å’ŒåŒåœ£ç»ç»èŠ‚æœç´¢ç»“果。您希望删除æœç´¢ç»“果并开始新的æœç´¢å—? Bible not fully loaded. åœ£ç»æ²¡æœ‰å®Œå…¨è½½å…¥ã€‚ Information ä¿¡æ¯ The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. 第二本圣ç»å¹¶ä¸åŒ…å«ä¸»åœ£ç»é‡Œæ‰€æœ‰çš„ç»èŠ‚ã€‚åªæœ‰ä¸¤æœ¬åœ£ç»éƒ½åŒ…å«çš„ç»èŠ‚æ‰ä¼šè¢«æ˜¾ç¤ºã€‚ %dæ¡ç»èŠ‚æ²¡æœ‰è¢«åŒ…æ‹¬åœ¨ç»“æžœé‡Œã€‚ Search Scripture Reference... æœç´¢ç»æ–‡å‡ºå¤„... Search Text... æœç´¢æ–‡æœ¬... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. 您确认è¦ä»ŽOpenLP彻底删除 "%s" 圣ç»ï¼Ÿ è¦å†æ¬¡ä½¿ç”¨ï¼Œæ‚¨éœ€è¦é‡æ–°å¯¼å…¥ã€‚ Advanced 高级 BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. æä¾›äº†ä¸æ­£ç¡®çš„åœ£ç»æ–‡ä»¶ã€‚OpenSong圣ç»ä¹Ÿè®¸è¢«åŽ‹ç¼©è¿‡ã€‚æ‚¨å¿…é¡»åœ¨å¯¼å…¥å‰è§£åŽ‹å®ƒä»¬ã€‚ Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory 选择一个备份目录 Bible Upgrade Wizard 圣ç»å‡çº§å‘导 This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. 该å‘导将帮助您å‡çº§æ‚¨ç›®å‰OpenLP 2之å‰ç‰ˆæœ¬çš„圣ç»ã€‚点击下é¢çš„下一步æ¥å¼€å§‹å‡çº§è¿‡ç¨‹ Select Backup Directory 选择备份目录 Please select a backup directory for your Bibles 请为您的圣ç»é€‰æ‹©ä¸€ä¸ªå¤‡ä»½ç›®å½• Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0之å‰å‘布的版本将无法使用å‡çº§è¿‡çš„圣ç»ã€‚这将会为您目å‰çš„圣ç»åˆ›å»ºä¸€ä¸ªå¤‡ä»½ï¼Œå› æ­¤å¦‚æžœæ‚¨éœ€è¦æ¢å¤åˆ°è¿‡åŽ»å‘布的OpenLP,您å¯ä»¥ç®€å•地将文件å¤åˆ¶å›žOpenLP的数æ®ç›®å½•。如何æ¢å¤æ–‡ä»¶çš„æŒ‡å¯¼å¯åœ¨æˆ‘们的<a href="http://wiki.openlp.org/faq">常è§é—®é¢˜</a>里找到。 Please select a backup location for your Bibles. 请为您的圣ç»é€‰æ‹©ä¸€ä¸ªå¤‡ä»½ç›®å½• Backup Directory: 备份目录: There is no need to backup my Bibles ä¸éœ€è¦å¤‡ä»½æˆ‘çš„åœ£ç» Select Bibles 选择圣ç»ç‰ˆæœ¬ Please select the Bibles to upgrade 请选择需è¦å‡çº§çš„åœ£ç» Upgrading 正在å‡çº§ Please wait while your Bibles are upgraded. 请ç¨ç­‰ï¼Œæ‚¨çš„åœ£ç»æ­£åœ¨è¢«å‡çº§ã€‚ The backup was not successful. To backup your Bibles you need permission to write to the given directory. 备份䏿ˆåŠŸã€‚ 您需è¦å¯¹ç»™å®šçš„目录有写入æƒé™æ‰èƒ½å¤‡ä»½æ‚¨çš„圣ç»ã€‚ Upgrading Bible %s of %s: "%s" Failed 正在å‡çº§ç¬¬%s本圣ç»ï¼Œæ€»å…±%s本:"%s" 失败 Upgrading Bible %s of %s: "%s" Upgrading ... 正在å‡çº§ç¬¬%s本圣ç»ï¼Œæ€»å…±%s本: "%s" 正在å‡çº§... Download Error 下载时出现错误 To upgrade your Web Bibles an Internet connection is required. å‡çº§æ‚¨çš„网络圣ç»éœ€è¦ç½‘络连接 Upgrading Bible %s of %s: "%s" Upgrading %s ... 正在å‡çº§ç¬¬%s本圣ç»ï¼Œæ€»å…±%s本: "%s" 正在å‡çº§ %s... Upgrading Bible %s of %s: "%s" Complete 正在å‡çº§ç¬¬%s本圣ç»ï¼Œæ€»å…±%s本: "%s" å®Œæˆ , %s failed , %s 失败 Upgrading Bible(s): %s successful%s å‡çº§åœ£ç»: %s æˆåŠŸ%s Upgrade failed. å‡çº§å¤±è´¥ You need to specify a backup directory for your Bibles. 您需è¦ä¸ºæ‚¨çš„åœ£ç»æŒ‡å®šä¸€ä¸ªå¤‡ä»½ç›®å½• Starting upgrade... 正在开始å‡çº§... There are no Bibles that need to be upgraded. 没有任何圣ç»ç‰ˆæœ¬éœ€è¦å‡çº§ã€‚ Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular 自定义幻ç¯ç‰‡ Custom Slides name plural 自定义幻ç¯ç‰‡ Custom Slides container title 自定义幻ç¯ç‰‡ Load a new custom slide. 载入一张新的自定义幻ç¯ç‰‡ã€‚ Import a custom slide. 导入一张自定义幻ç¯ç‰‡ã€‚ Add a new custom slide. 新增一张自定义幻ç¯ç‰‡ã€‚ Edit the selected custom slide. 编辑选中的自定义幻ç¯ç‰‡ã€‚ Delete the selected custom slide. 删除选中的自定义幻ç¯ç‰‡ã€‚ Preview the selected custom slide. 预览选中的自定义幻ç¯ç‰‡ Send the selected custom slide live. 将选中的自定义幻ç¯ç‰‡å‘é€åˆ°çŽ°åœº Add the selected custom slide to the service. 将选中的自定义幻ç¯ç‰‡æ·»åŠ åˆ°æ•¬æ‹œä»ªå¼é‡Œã€‚ <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display 自定义显示 Display footer 显示页脚 Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides 编辑自定义幻ç¯ç‰‡ &Title: 标题(T): Add a new slide at bottom. 在底部新增一张幻ç¯ç‰‡ Edit the selected slide. 编辑所选中的幻ç¯ç‰‡ Edit all the slides at once. åŒæ—¶ç¼–辑所有幻ç¯ç‰‡ Split a slide into two by inserting a slide splitter. æ’入一个幻ç¯ç‰‡åˆ†éš”符æ¥å°†ä¸€å¼ å¹»ç¯ç‰‡æ‹†åˆ†ä¸ºä¸¤å¼  The&me: 主题(M): &Credits: 制作åå•(C): You need to type in a title. 您需è¦è¾“入一个标题 Ed&it All 编辑所有(I) Insert Slide æ’入幻ç¯ç‰‡ You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide 编辑幻ç¯ç‰‡ CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>图片æ’ä»¶</strong><br />图片æ’ä»¶æä¾›å›¾ç‰‡å±•示。<br />这个æ’ä»¶å…¶ä¸­ä¸€ä¸ªæ˜¾è‘—çš„ç‰¹å¾æ˜¯å®ƒå¯åœ¨æ•¬æ‹œç®¡ç†å™¨ä¸­å°†å¤šå¼ ç…§ç‰‡åˆ†ç»„,使显示多张照片更容易。这个æ’件也å¯ä»¥ä½¿ç”¨OpenLPçš„è®¡æ—¶å¾ªçŽ¯ç‰¹å¾æ¥åˆ›å»ºå¯è‡ªåŠ¨æ’­æ”¾çš„å¹»ç¯æ¼”示。除此以外,该æ’件中的图片å¯ä»¥è¢«ç”¨æ¥è¦†ç›–当å‰ä¸»é¢˜çš„èƒŒæ™¯ï¼Œä½¿åŸºäºŽæ–‡æœ¬çš„é¡¹ç›®ï¼ˆæ¯”å¦‚æ­Œæ›²ï¼‰ä½¿ç”¨é€‰ä¸­çš„å›¾ç‰‡ä½œä¸ºèƒŒæ™¯è€Œä¸æ˜¯ä¸»é¢˜æä¾›çš„背景。 Image name singular 图片 Images name plural 图片 Images container title 图片 Load a new image. 载入一张新图片 Add a new image. 新增一张图片 Edit the selected image. 编辑选中的图片 Delete the selected image. 删除选中的图片 Preview the selected image. 预览选中的图片 Send the selected image live. 将选中的图片å‘é€åˆ°çŽ°åœºã€‚ Add the selected image to the service. 将选中的图片添加到敬拜仪å¼é‡Œã€‚ ImagePlugin.AddGroupForm Add group Parent group: Group name: You need to type in a group name. Could not add the new group. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Add images to group: No group Existing group New group ImagePlugin.ExceptionDialog Select Attachment 选择附件 ImagePlugin.MediaItem Select Image(s) 选择图片 You must select an image to replace the background with. æ‚¨å¿…é¡»é€‰æ‹©ä¸€å¼ å›¾ç‰‡æ¥æ›¿æ¢èƒŒæ™¯ã€‚ Missing Image(s) é—失图片 The following image(s) no longer exist: %s 以下图片已ä¸å­˜åœ¨ï¼š%s The following image(s) no longer exist: %s Do you want to add the other images anyway? 以下图片已ä¸å­˜åœ¨ï¼š%s 您ä»ç„¶æƒ³åŠ å…¥å…¶å®ƒå›¾ç‰‡å—? There was a problem replacing your background, the image file "%s" no longer exists. 替æ¢èƒŒæ™¯æ—¶å‡ºçŽ°ä¸€ä¸ªé—®é¢˜ï¼Œå›¾ç‰‡æ–‡ä»¶"%s"å·²ä¸å­˜åœ¨ã€‚ There was no display item to amend. 没有显示项目å¯ä»¥ä¿®æ”¹ -- Top-level group -- You must select an image or group to delete. Remove group Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. 长宽比例与å±å¹•ä¸åŒçš„图片的å¯è§èƒŒæ™¯ Media.player Audio Video VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>媒体æ’ä»¶</strong><br />媒体æ’ä»¶æä¾›éŸ³é¢‘和视频的回放。 Media name singular 媒体 Media name plural 媒体 Media container title 媒体 Load new media. 载入新媒体 Add new media. 新增媒体 Edit the selected media. 编辑选中的媒体 Delete the selected media. 删除选中的媒体 Preview the selected media. 预览选中的媒体 Send the selected media live. 将选中的媒体å‘é€åˆ°çŽ°åœº Add the selected media to the service. å°†é€‰ä¸­çš„åª’ä½“æ·»åŠ åˆ°æ•¬æ‹œä»ªå¼ MediaPlugin.MediaClipSelector Select Media Clip Source Media path: Select drive from list Load disc Track Details Title: 标题: Audio track: Subtitle track: HH:mm:ss.z Clip Range Start point: Set start point Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media 选择媒体 You must select a media file to delete. 您必须先选中一个媒体文件æ‰èƒ½åˆ é™¤ You must select a media file to replace the background with. æ‚¨å¿…é¡»é€‰æ‹©ä¸€ä¸ªåª’ä½“æ–‡ä»¶æ¥æ›¿æ¢èƒŒæ™¯ã€‚ There was a problem replacing your background, the media file "%s" no longer exists. æ›¿æ¢æ‚¨çš„背景时å‘生问题,媒体文件"%s"å·²ä¸å­˜åœ¨ã€‚ Missing Media File 缺少媒体文件 The file %s no longer exists. 文件 %s å·²ä¸å­˜åœ¨ã€‚ Videos (%s);;Audio (%s);;%s (*) 视频 (%s);;音频 (%s);;%s (*) There was no display item to amend. 没有显示项目å¯ä»¥ä¿®æ”¹ Unsupported File 䏿”¯æŒçš„æ–‡ä»¶ Use Player: 使用播放器: VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden å…许媒体播放器被覆盖 Start Live items automatically OPenLP.MainWindow &Projector Manager OpenLP Image Files 图片文件 Information ä¿¡æ¯ Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? åœ£ç»æ ¼å¼å·²æ”¹å˜ï¼Œ 您必须å‡çº§æ‚¨çŽ°æœ‰çš„åœ£ç»ã€‚ 希望OpenLP现在就å‡çº§å®ƒä»¬å—? Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits å‚与人åå• License è®¸å¯ build %s 修订 %s 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; version 2 of the License. è¿™ä¸ªç¨‹åºæ˜¯è‡ªç”±è½¯ä»¶ï¼Œæ‚¨å¯ä»¥åœ¨ç”±è‡ªç”±è½¯ä»¶åŸºé‡‘会å‘布的GNU通用公共许å¯è¯çš„æ¡æ¬¾ï¼Œç¬¬2版的许å¯ä¸‹é‡æ–°åˆ†é…å’Œ/或修改它。 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 below for more details. è¿™ä¸ªç¨‹åºæ˜¯åœ¨å®ƒå°†ä¼šæœ‰ç”¨çš„æœŸæœ›ä¸‹åˆ†å‘的,但没有任何ä¿éšœï¼Œç”šè‡³æ²¡æœ‰ä»»ä½•暗示的适销性或针对特定用途的ä¿éšœã€‚å‚阅以下更多细节。 OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - å¼€æºæ­Œè¯æ¼”示 OpenLP是一个å…è´¹çš„æ•™ä¼šæ¼”ç¤ºè½¯ä»¶ï¼Œæˆ–æ­Œè¯æ¼”示软件,被用在教会敬拜时使用电脑和数字投影仪æ¥å±•示歌è¯ï¼Œåœ£ç»ç»èŠ‚ï¼Œè§†é¢‘ï¼Œå›¾ç‰‡ï¼Œç”šè‡³å¹»ç¯ç‰‡æ¼”示(如果已安装Impress, PowerPoint或PowerPoint Viewerçš„è¯)。 å‚阅更多OpenLP的信æ¯: http://openlp.org/ OpenLPæ˜¯ç”±å¿—æ„¿è€…ç¼–å†™å’Œç»´æŠ¤çš„ã€‚å¦‚æžœæ‚¨æƒ³çœ‹åˆ°æ›´å¤šåŸºç£æ•™çš„软件被编写出æ¥ï¼Œè¯·è€ƒè™‘点击下é¢çš„æŒ‰é’®æ¥å¿—愿加入。 Volunteer 志愿者 Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings 用户界é¢è®¾ç½® Number of recent files to display: 显示最近文件个数: Remember active media manager tab on startup è®°å¾—å¯åŠ¨æ—¶å¯ç”¨åª’体管ç†å™¨æ ‡ç­¾ Double-click to send items straight to live åŒå‡»ç›´æŽ¥å°†é¡¹ç›®å‘é€åˆ°çŽ°åœº Expand new service items on creation 创建时扩展新的敬拜仪å¼é¡¹ç›® Enable application exit confirmation å¯ç”¨åº”用程åºé€€å‡ºæ—¶ç¡®è®¤ Mouse Cursor 鼠标指针 Hide mouse cursor when over display window å½“ç§»åŠ¨åˆ°æ˜¾ç¤ºçª—å£æ—¶éšè—鼠标指针 Default Image 默认图片 Background color: 背景颜色: Image file: 图片文件: Open File 打开文件 Advanced 高级 Preview items when clicked in Media Manager 点击媒体管ç†å™¨ä¸­çš„项目时å¯ç”¨é¢„览 Browse for an image file to display. æµè§ˆä¸€ä¸ªå›¾ç‰‡æ–‡ä»¶æ¥æ˜¾ç¤º Revert to the default OpenLP logo. æ¢å¤ä¸ºé»˜è®¤çš„OpenLP标志 Default Service Name 默认敬拜仪å¼åç§° Enable default service name å¯ç”¨é»˜è®¤æ•¬æ‹œä»ªå¼åç§° Date and Time: 时间和日期: Monday 周一 Tuesday 周二 Wednesday 周三 Friday 周五 Saturday 周六 Sunday 周日 Now 现在 Time when usual service starts. 通常敬拜开始时间 Name: å称: Consult the OpenLP manual for usage. å‚阅OpenLP说明书æ¥ä½¿ç”¨ã€‚ Revert to the default service name "%s". æ¢å¤ä¸ºé»˜è®¤çš„æ•¬æ‹œä»ªå¼åç§° "%s"。 Example: 样本: Bypass X11 Window Manager 绕过X11窗å£ç®¡ç†å™¨ Syntax error. 语法错误。 Data Location æ•°æ®ä½ç½® Current path: 当å‰è·¯å¾„: Custom path: 自定义路径: Browse for new data file location. æµè§ˆæ–°çš„æ•°æ®æ–‡ä»¶ä½ç½® Set the data location to the default. 将数æ®ä½ç½®è®¾ç½®ä¸ºé»˜è®¤ã€‚ Cancel å–æ¶ˆ Cancel OpenLP data directory location change. å–æ¶ˆOpenLPæ•°æ®ç›®å½•ä½ç½®çš„æ”¹å˜ Copy data to new location. å¤åˆ¶æ•°æ®åˆ°æ–°ä½ç½® Copy the OpenLP data files to the new location. å°†OpenLPæ•°æ®æ–‡ä»¶å¤åˆ¶åˆ°æ–°ä½ç½®ã€‚ <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>警告:</strong> æ–°æ•°æ®ç›®å½•包å«OpenLPæ•°æ®æ–‡ä»¶ã€‚这些文件将会在å¤åˆ¶æ—¶è¢«æ›¿æ¢ã€‚ Data Directory Error æ•°æ®ç›®å½•错误 Select Data Directory Location 选择数æ®ç›®å½•ä½ç½® Confirm Data Directory Change 确认数æ®ç›®å½•æ”¹å˜ Reset Data Directory é‡ç½®æ•°æ®ç›®å½• Overwrite Existing Data è¦†ç›–å·²å­˜åœ¨çš„æ•°æ® OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. 未找到OpenLPæ•°æ®ç›®å½• %s 这个数æ®ç›®å½•之å‰ç”±OpenLP的默认ä½ç½®æ”¹å˜è€Œæ¥ã€‚如果新ä½ç½®æ˜¯åœ¨ä¸€ä¸ªå¯ç§»åŠ¨åª’ä»‹ä¸Šï¼Œè¯¥åª’ä»‹éœ€è¦æˆä¸ºå¯ç”¨ 点击 "å¦" æ¥åœæ­¢åŠ è½½OpenLP,å…许您修å¤è¿™ä¸ªé—®é¢˜ã€‚ 点击 "是" æ¥é‡ç½®æ•°æ®ç›®å½•到默认ä½ç½®ã€‚ Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. 您确定è¦å°†OpenLP的数æ®ç›®å½•ä½ç½®æ”¹å˜ä¸ºï¼š %s æ•°æ®ç›®å½•将在OpenLP关闭时改å˜ã€‚ Thursday Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. æ‚¨ç¡®å®šè¦æ”¹å˜OpenLPæ•°æ®ç›®å½•çš„ä½ç½®åˆ°é»˜è®¤ä½ç½®å—? 该ä½ç½®å°†ä¼šåœ¨OpenLP关闭时被使用。 OpenLP.ColorButton Click to select a color. 点击以选å–一ç§é¢œè‰²ã€‚ OpenLP.DB RGB Video Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred å‘生错误 Send E-Mail å‘é€é‚®ä»¶ Save to File ä¿å­˜åˆ°æ–‡ä»¶ Attach File 附加文件 Description characters to enter : %s 输入æè¿°æ–‡å­—: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s å¹³å°ï¼š%s Save Crash Report ä¿å­˜å´©æºƒæŠ¥å‘Š Text files (*.txt *.log *.text) 文本文件(*.txt *.log *.text) OpenLP.FileRenameForm File Rename é‡å‘½å文件 New File Name: 新建文件å: File Copy å¤åˆ¶æ–‡ä»¶ OpenLP.FirstTimeLanguageForm Select Translation 选择翻译版本 Choose the translation you'd like to use in OpenLP. 选择您希望使用的OpenLP翻译版本。 Translation: 翻译版本: OpenLP.FirstTimeWizard Songs 歌曲 First Time Wizard 首次使用å‘导 Welcome to the First Time Wizard 欢迎æ¥åˆ°é¦–次使用å‘导 Activate required Plugins å¯ç”¨æ‰€éœ€çš„æ’ä»¶ Select the Plugins you wish to use. 选择您希望使用的æ’件。 Bible åœ£ç» Images 图片 Presentations 演示 Media (Audio and Video) 媒体(音频与视频) Allow remote access å…许远程访问 Monitor Song Usage 监视歌曲使用 Allow Alerts å…许警告 Default Settings 默认设置 Downloading %s... 正在下载 %s... Enabling selected plugins... 正在å¯ç”¨é€‰ä¸­çš„æ’ä»¶... No Internet Connection 无网络连接 Unable to detect an Internet connection. 未检测到Internet网络连接 Sample Songs 歌曲样本 Select and download public domain songs. 选择并下载属于公有领域的歌曲 Sample Bibles åœ£ç»æ ·æœ¬ Select and download free Bibles. 选择并下载å…费圣ç»ã€‚ Sample Themes 主题样本 Select and download sample themes. 选择并下载主题样本。 Set up default settings to be used by OpenLP. 设置OpenLP将使用的默认设定。 Default output display: 默认输出显示: Select default theme: 选择默认主题: Starting configuration process... 正在å¯åЍé…置进程... Setting Up And Downloading 正在设置并下载 Please wait while OpenLP is set up and your data is downloaded. 请ç¨ç­‰ï¼ŒOpenLP正在进行设置并下载您的数æ®ã€‚ Setting Up 正在设置 Custom Slides 自定义幻ç¯ç‰‡ Finish ç»“æŸ No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. 没有å‘现Internet网络连接。首次è¿è¡Œå‘导需è¦ä¸€ä¸ªç½‘络连接æ‰å¯ä»¥ä¸‹è½½æ­Œæ›²ï¼Œåœ£ç»å’Œä¸»é¢˜æ ·æœ¬ã€‚çŽ°åœ¨ç‚¹å‡»ç»“æŸæŒ‰é’®æ¥ä»¥åˆå§‹è®¾å®šå’Œæ— æ ·æœ¬æ•°æ®çš„状æ€ä¸‹å¯åЍOpenLP。 è¦åœ¨ä»¥åŽé‡æ–°è¿è¡Œé¦–次è¿è¡Œå‘导并导入这些样本数æ®ï¼Œæ£€æŸ¥æ‚¨çš„网络连接并在OpenLP里选择"工具/釿–°è¿è¡Œé¦–次è¿è¡Œå‘导"。 Download Error 下载时出现错误 There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel å–æ¶ˆ Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags é…ç½®æ ¼å¼æ ‡ç­¾ Description æè¿° Tag 标签 Start HTML HTMLèµ·å§‹ End HTML HTML终止 Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error 校验错误 Description is missing Tag is missing Tag %s already defined. 标签 %s 已被定义。 Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red 红色 Black 黑色 Blue è“色 Yellow 黄色 Green 绿色 Pink 粉红 Orange 橘黄 Purple 紫色 White 白色 Superscript 上标 Subscript 下标 Paragraph æ®µè½ Bold 粗体 Italics 斜体 Underline 下划线 Break æ¢è¡Œ OpenLP.GeneralTab General 通用 Monitors 监视器 Select monitor for output display: 选择输出监视器: Display if a single screen 显示如果是å•å±å¹• Application Startup 应用程åºå¯åЍ Show blank screen warning 显示空白å±å¹•警告 Automatically open the last service è‡ªåŠ¨æ‰“å¼€æœ€æ–°çš„æ•¬æ‹œä»ªå¼ Show the splash screen 显示斑点å±å¹• Application Settings 应用程åºè®¾ç½® Prompt to save before starting a new service 在开始新的敬拜仪å¼å‰æç¤ºä¿å­˜ Automatically preview next item in service åœ¨æ•¬æ‹œä»ªå¼æ—¶è‡ªåŠ¨é¢„è§ˆä¸‹ä¸€ä¸ªé¡¹ç›® sec ç§’ CCLI Details CCLI细节 SongSelect username: SongSelect 用户å: SongSelect password: SongSelect 密ç ï¼š X X Y Y Height 高度 Width 宽度 Check for updates to OpenLP 检查OpenLPæ›´æ–° Unblank display when adding new live item å½“æ·»åŠ é¡¹ç›®æ—¶å–æ¶ˆå±å¹•空白 Timed slide interval: 计时幻ç¯ç‰‡é—´éš”: Background Audio 背景音频 Start background audio paused å¼€å§‹èƒŒæ™¯éŸ³é¢‘å·²æš‚åœ Service Item Slide Limits 敬拜仪å¼é¡¹ç›®å¹»ç¯ç‰‡é™åˆ¶ï¼š Override display position: 覆盖显示ä½ç½®ï¼š Repeat track list é‡å¤éŸ³è½¨åˆ—表 Behavior of next/previous on the last/first slide: 在 第一张/最åŽä¸€å¼  å¹»ç¯ç‰‡æ—¶ 下一张/上一张 的行为 &Remain on Slide åœç•™åœ¨å½“å‰å¹»ç¯ç‰‡(R) &Wrap around 绕回开头(W) &Move to next/previous service item 移至下一个/上一个敬拜仪å¼é¡¹ç›®(M) OpenLP.LanguageManager Language 语言 Please restart OpenLP to use your new language setting. è¯·é‡æ–°å¯åЍOpenLPæ¥ä½¿ç”¨æ‚¨æ–°çš„语言设置。 OpenLP.MainDisplay OpenLP Display OpenLP 显示 OpenLP.MainWindow &File 文件(F) &Import 导入(I) &Export 导出(E) &View 显示(V) M&ode 模å¼(O) &Tools 工具(T) &Settings 设定(S) &Language 语言(L) &Help 帮助(H) Service Manager 敬拜仪å¼ç®¡ç†å™¨ Theme Manager 主题管ç†å™¨ Open an existing service. 打开一个存在的敬拜仪å¼ã€‚ Save the current service to disk. 将当å‰çš„æ•¬æ‹œä»ªå¼ä¿å­˜åˆ°ç£ç›˜ã€‚ Save Service As 敬拜仪å¼å¦å­˜ä¸º Save the current service under a new name. 以新åç§°ä¿å­˜å½“å‰çš„æ•¬æ‹œä»ªå¼ã€‚ E&xit 退出(X) Quit OpenLP 退出OpenLP &Theme 主题(T) &Configure OpenLP... é…ç½®OpenLP(C) &Media Manager 媒体管ç†å™¨(M) Toggle Media Manager 切æ¢åª’体管ç†å™¨ Toggle the visibility of the media manager. 切æ¢åª’体管ç†å™¨å¯è§åº¦ã€‚ &Theme Manager 主题管ç†å™¨(T) Toggle Theme Manager 切æ¢ä¸»é¢˜ç®¡ç†å™¨ Toggle the visibility of the theme manager. 切æ¢ä¸»é¢˜ç®¡ç†å™¨å¯è§åº¦ã€‚ &Service Manager 敬拜仪å¼ç®¡ç†å™¨(S) Toggle Service Manager åˆ‡æ¢æ•¬æ‹œä»ªå¼ç®¡ç†å™¨ Toggle the visibility of the service manager. åˆ‡æ¢æ•¬æ‹œä»ªå¼ç®¡ç†å™¨å¯è§åº¦ã€‚ &Preview Panel é¢„è§ˆé¢æ¿(P) Toggle Preview Panel 切æ¢é¢„è§ˆé¢æ¿ Toggle the visibility of the preview panel. 切æ¢é¢„è§ˆé¢æ¿å¯è§åº¦ã€‚ &Live Panel çŽ°åœºé¢æ¿(L) Toggle Live Panel 切æ¢çŽ°åœºé¢æ¿ Toggle the visibility of the live panel. 切æ¢çŽ°åœºé¢æ¿å¯è§åº¦ã€‚ List the Plugins 列出æ’ä»¶ &User Guide 用户指å—(U) &About 关于(A) More information about OpenLP 更多关于OpenLPçš„ä¿¡æ¯ &Online Help 在线帮助(O) &Web Site 网站(W) Use the system language, if available. 如果å¯ç”¨ï¼Œä½¿ç”¨ç³»ç»Ÿè¯­è¨€ã€‚ Set the interface language to %s 将界é¢è¯­è¨€è®¾ç½®ä¸º%s Add &Tool... 添加工具(T) Add an application to the list of tools. å‘工具列表中添加应用。 &Default 默认(D) Set the view mode back to the default. 将查看模å¼è®¾å®šå›žé»˜è®¤ã€‚ &Setup 设置(S) Set the view mode to Setup. 将查看模å¼è®¾å®šä¸ºè®¾ç½® &Live 现场(L) Set the view mode to Live. 将查看模å¼è®¾å®šä¸ºçŽ°åœºã€‚ Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. 版本为 %s çš„OpenLPå·²ç»å¯ä»¥ä¸‹è½½äº†ï¼ˆæ‚¨ç›®å‰æ­£åœ¨ä½¿ç”¨çš„版本为%s). 您å¯ä»¥ä»Žhttp://openlp.org/上下载最新版本。 OpenLP Version Updated OpenLP版本已å‡çº§ OpenLP Main Display Blanked OpenLP主显示已清空 The Main Display has been blanked out 主显示已ç»è¢«å®Œå…¨æ¸…空 Default Theme: %s 默认主题: %s English Please add the name of your language here 中文 Configure &Shortcuts... é…置快æ·é”®(S) Open &Data Folder... æ‰“å¼€æ•°æ®æ–‡ä»¶å¤¹(D)... Open the folder where songs, bibles and other data resides. 打开歌曲,圣ç»åŠå…¶å®ƒæ•°æ®æ‰€åœ¨çš„æ–‡ä»¶å¤¹ã€‚ &Autodetect 自动检测(A) Update Theme Images 更新主题图片 Update the preview images for all themes. 为所有主题更新预览图片。 Print the current service. 打å°å½“剿•¬æ‹œä»ªå¼ L&ock Panels é”å®šé¢æ¿(O) Prevent the panels being moved. é˜²æ­¢ç§»åŠ¨é¢æ¿ã€‚ Re-run First Time Wizard 釿–°è¿è¡Œé¦–次è¿è¡Œå‘导 Re-run the First Time Wizard, importing songs, Bibles and themes. 釿–°è¿è¡Œé¦–次è¿è¡Œå‘导,导入歌曲,圣ç»å’Œä¸»é¢˜ã€‚ Re-run First Time Wizard? 冿¬¡è¿è¡Œé¦–次è¿è¡Œå‘导? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. 您确定è¦å†æ¬¡è¿è¡Œé¦–次è¿è¡Œå‘导å—? 冿¬¡è¿è¡Œè¿™ä¸ªæƒ³åˆ°å¯èƒ½ä¼šæ”¹å˜æ‚¨å½“å‰çš„OpenLPé…置并å¯èƒ½å‘您已存的歌曲列表中添加歌曲和改å˜é»˜è®¤çš„主题。 Clear List Clear List of recent files 清空列表 Clear the list of recent files. 清空最近使用的文件列表 Configure &Formatting Tags... é…ç½®æ ¼å¼æ ‡ç­¾(F) Export OpenLP settings to a specified *.config file å°†OpenLP设定导出为指定的*.config文件 Settings 设定 Import OpenLP settings from a specified *.config file previously exported on this or another machine 从之å‰ç”±æœ¬æœºæˆ–其它机器上导出的一个指定*.config文件里导入OpenLP设定 Import settings? 导入设定? Open File 打开文件 OpenLP Export Settings Files (*.conf) OpenLP导出设定文件(*.conf) Import settings 导入设定 OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLPå³å°†å…³é—­ã€‚导入的设定将会在下一次您å¯åЍOpenLP时应用。 Export Settings File 导出设定文件 OpenLP Export Settings File (*.conf) OpenLP导出设定文件(*.conf) New Data Directory Error æ–°æ•°æ®ç›®å½•错误 Copying OpenLP data to new data directory location - %s - Please wait for copy to finish 正在å¤åˆ¶OpenLPæ•°æ®åˆ°æ–°çš„æ•°æ®ç›®å½•ä½ç½® - %s - 请等待å¤åˆ¶å®Œæˆã€‚ OpenLP Data directory copy failed %s OpenLPæ•°æ®ç›®å½•å¤åˆ¶å¤±è´¥ %s General 通用 Library Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error æ•°æ®åº“错误 The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s OpenLP cannot load your database. Database: %s OpenLP无法加载您的数æ®åº“。 æ•°æ®åº“: %s OpenLP.MediaManagerItem No Items Selected 未选择项目 &Add to selected Service Item 添加到选中的敬拜仪å¼é¡¹ç›®(A) You must select one or more items to preview. 您必须选择一个或多个项目æ¥é¢„览。 You must select one or more items to send live. 您必须选择一个或多个项目æ¥å‘é€åˆ°çŽ°åœº You must select one or more items. 您必须选择一个或多个项目。 You must select an existing service item to add to. 您必须选择一个已存在的敬拜仪å¼é¡¹ç›®æ¥è¢«æ·»åŠ  Invalid Service Item 无效的敬拜仪å¼é¡¹ç›® You must select a %s service item. 您必须选择一个%s敬拜仪å¼é¡¹ç›®ã€‚ You must select one or more items to add. æ‚¨å¿…é¡»é€‰æ‹©ä¸€ä¸ªæˆ–å¤šä¸ªé¡¹ç›®æ¥æ·»åŠ ã€‚ No Search Results æ— æœç´¢ç»“æžœ Invalid File Type 无效的文件类型 Invalid File %s. Suffix not supported 无效的文件 %s。 䏿”¯æŒè¯¥åŽç¼€ &Clone 建立副本(C) Duplicate files were found on import and were ignored. 在导入时å‘现并忽略了é‡å¤çš„æ–‡ä»¶ OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> 标签丢失。 <verse> tag is missing. <verse> 标签丢失。 OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Available Media Players å¯ç”¨åª’体播放器 Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (ä¸å¯ç”¨) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details æ’件详情 Status: 状æ€ï¼š Active å·²å¯ç”¨ Inactive 未å¯ç”¨ %s (Inactive) %s (未å¯ç”¨) %s (Active) %s (å·²å¯ç”¨) %s (Disabled) %s (ç¦ç”¨) Manage Plugins OpenLP.PrintServiceDialog Fit Page 适åˆé¡µé¢ Fit Width 适åˆå®½åº¦ OpenLP.PrintServiceForm Options 选项 Copy å¤åˆ¶ Copy as HTML å¤åˆ¶ä¸ºHTML Zoom In 放大 Zoom Out ç¼©å° Zoom Original 缩放到原始尺寸 Other Options 其它选项 Include slide text if available 如果å¯ç”¨ï¼ŒåŒ…括幻ç¯ç‰‡æ–‡å­— Include service item notes åŒ…å«æ•¬æ‹œä»ªå¼é¡¹ç›®æ³¨æ„事项 Include play length of media items 包å«åª’体项目的播放时长 Add page break before each text item 在æ¯ä¸ªæ–‡æœ¬é¡¹ç›®å‰æ·»åР页颿¢è¡Œç¬¦ Service Sheet 敬拜仪å¼å•å¼  Print æ‰“å° Title: 标题: Custom Footer Text: 自定义页脚文本: OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes æ³¨æ„ Database Error æ•°æ®åº“错误 There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port ç«¯å£ Notes æ³¨æ„ Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other 其它 OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen å±å¹• primary ä¸»è¦ OpenLP.ServiceItem <strong>Start</strong>: %s <strong>开始</strong>:%s <strong>Length</strong>: %s <strong>长度</strong>:%s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item 釿–°æŽ’列敬拜仪å¼é¡¹ç›® OpenLP.ServiceManager Move to &top 置顶(T) Move item to the top of the service. 将项目移至敬拜仪å¼é¡¶éƒ¨ Move &up 上移(U) Move item up one position in the service. 在该敬拜仪å¼ä¸­ä¸Šç§»ä¸€ä½é¡¹ç›® Move &down 下移(D) Move item down one position in the service. 在该敬拜仪å¼ä¸­ä¸‹ç§»ä¸€ä½é¡¹ç›® Move to &bottom 置底(B) Move item to the end of the service. 将项目移至敬拜仪å¼åº•部 &Delete From Service 从敬拜仪å¼ä¸­åˆ é™¤ Delete the selected item from the service. 从敬拜仪å¼ä¸­åˆ é™¤é€‰ä¸­çš„项目 &Add New Item 添加新项目(A) &Add to Selected Item 添加到选中的项目(A) &Edit Item 编辑项目(E) &Reorder Item 釿–°æŽ’列项目(R) &Notes 注æ„事项(N) &Change Item Theme 改å˜é¡¹ç›®ä¸»é¢˜(C) File is not a valid service. æ–‡ä»¶ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„æ•¬æ‹œä»ªå¼ã€‚ Missing Display Handler 缺少显示处ç†ç¨‹åº Your item cannot be displayed as there is no handler to display it 由于没有相关的处ç†ç¨‹åºï¼Œæ‚¨çš„项目无法显示 Your item cannot be displayed as the plugin required to display it is missing or inactive 由于缺少或未å¯ç”¨æ˜¾ç¤ºè¯¥é¡¹ç›®çš„æ’ä»¶ï¼Œä½ çš„é¡¹ç›®æ— æ³•æ˜¾ç¤ºã€‚ &Expand all 扩展所有(E) Expand all the service items. 扩展所有敬拜仪å¼é¡¹ç›®ã€‚ &Collapse all 收起所有(C) Collapse all the service items. 收起所有敬拜仪å¼é¡¹ç›®ã€‚ Open File 打开文件 Moves the selection down the window. 将选项下移到窗å£ã€‚ Move up 上移 Moves the selection up the window. å°†é€‰é¡¹ä¸Šç§»åˆ°çª—å£ Go Live å‘é€åˆ°çŽ°åœº Send the selected item to Live. 将选中的项目å‘é€è‡³çŽ°åœº &Start Time 开始时间(S) Show &Preview 显示预览(P) Modified Service å·²ä¿®æ”¹çš„æ•¬æ‹œä»ªå¼ The current service has been modified. Would you like to save this service? 当剿•¬æ‹œä»ªå¼å·²è¢«ä¿®æ”¹ã€‚您想ä¿å­˜è¿™ä¸ªæ•¬æ‹œä»ªå¼å—? Custom Service Notes: è‡ªå®šä¹‰æ•¬æ‹œä»ªå¼æ³¨æ„事项: Notes: 注æ„事项: Playing time: 播放时间: Untitled Service æœªå‘½åæ•¬æ‹œä»ªå¼ File could not be opened because it is corrupt. 文件已æŸå,无法打开。 Empty File 空文件 This service file does not contain any data. è¿™ä¸ªæ•¬æ‹œä»ªå¼æ–‡ä»¶ä¸åŒ…å«ä»»ä½•æ•°æ®ã€‚ Corrupt File æŸå的文件 Load an existing service. 加载一个存在的敬拜仪å¼ã€‚ Save this service. ä¿æŒè¿™ä¸ªæ•¬æ‹œä»ªå¼ã€‚ Select a theme for the service. 选择该敬拜仪å¼çš„主题。 Slide theme å¹»ç¯ç‰‡ä¸»é¢˜ Notes æ³¨æ„ Edit 编辑 Service copy only ä»…å¤åˆ¶æ•¬æ‹œä»ªå¼ Error Saving File ä¿å­˜æ–‡ä»¶æ—¶å‘生错误 There was an error saving your file. ä¿å­˜æ‚¨çš„æ–‡ä»¶æ—¶å‘生了一个错误。 Service File(s) Missing æ•¬æ‹œä»ªå¼æ–‡ä»¶ä¸¢å¤± &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. å¹»ç¯ç‰‡ä¹‹é—´å»¶æ—¶ Rename item title Title: 标题: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes 敬拜项目注æ„事项 OpenLP.SettingsForm Configure OpenLP é…ç½®OpenLP OpenLP.ShortcutListDialog Action 动作 Shortcut å¿«æ·æ–¹å¼ Duplicate Shortcut é‡å¤çš„å¿«æ·é”® The shortcut "%s" is already assigned to another action, please use a different shortcut. å¿«æ·é”® "%s" 已被指派给å¦ä¸€ä¸ªåŠ¨ä½œï¼Œè¯·ä½¿ç”¨ä¸€ä¸ªä¸åŒçš„å¿«æ·é”®ã€‚ Alternate 代替的 Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. 选择一个动作并点击以下一个按钮æ¥åˆ†åˆ«å¼€å§‹è®°å½•一个新的主è¦çš„æˆ–替代的快æ·é”®ã€‚ Default 默认 Custom 自定义 Capture shortcut. 记录快æ·é”®ã€‚ Restore the default shortcut of this action. 将此动作的快æ·é”®æ¢å¤ä¸ºé»˜è®¤ã€‚ Restore Default Shortcuts æ¢å¤ä¸ºé»˜è®¤å¿«æ·é”® Do you want to restore all shortcuts to their defaults? 您想将所有快æ·é”®æ¢å¤ä¸ºé»˜è®¤å—? Configure Shortcuts é…置快æ·é”® OpenLP.SlideController Hide éšè— Go To 转到 Blank Screen 清空å±å¹• Blank to Theme 清空å±å¹•到主题 Show Desktop æ˜¾ç¤ºæ¡Œé¢ Previous Service ä¸Šä¸€ä¸ªæ•¬æ‹œä»ªå¼ Next Service ä¸‹ä¸€ä¸ªæ•¬æ‹œä»ªå¼ Escape Item é¿å¼€é¡¹ç›® Move to previous. 移到å‰ä¸€é¡¹ Move to next. 移到åŽä¸€é¡¹ Play Slides 播放幻ç¯ç‰‡ Delay between slides in seconds. å¹»ç¯ç‰‡ä¹‹é—´å»¶æ—¶ Move to live. 移到现场 Add to Service. æ·»åŠ åˆ°æ•¬æ‹œä»ªå¼ Edit and reload song preview. ç¼–è¾‘å¹¶é‡æ–°è½½å…¥æ­Œæ›²é¢„览 Start playing media. 开始播放媒体 Pause audio. æš‚åœå£°éŸ³ Pause playing media. æš‚åœåª’体播放 Stop playing media. åœæ­¢åª’体播放 Video position. 视频ä½ç½® Audio Volume. éŸ³é¢‘éŸ³é‡ Go to "Verse" 转到"主歌" Go to "Chorus" 转到 "副歌" Go to "Bridge" 转到"桥段" Go to "Pre-Chorus" 转到 "导歌" Go to "Intro" 转到"å‰å¥" Go to "Ending" 转到 "结尾" Go to "Other" 转到 "其它" Previous Slide 上一张幻ç¯ç‰‡ Next Slide 下一张幻ç¯ç‰‡ Pause Audio æš‚åœéŸ³é¢‘ Background Audio 背景音频 Go to next audio track. 切到下一个音轨 Tracks 音轨 OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions 拼写建议 Formatting Tags æ ¼å¼æ ‡ç­¾ Language: 语言: OpenLP.StartTimeForm Theme Layout 主题布局 The blue box shows the main area. è“è‰²åŒºå—æ˜¾ç¤ºä¸»åŒºåŸŸã€‚ The red box shows the footer. çº¢è‰²åŒºå—æ˜¾ç¤ºé¡µè„šã€‚ OpenLP.StartTime_form Item Start and Finish Time é¡¹ç›®å¼€å§‹å’Œç»“æŸæ—¶é—´ Hours: å°æ—¶ï¼š Minutes: 分钟: Seconds: 秒: Start 开始 Finish ç»“æŸ Length 长度 Time Validation Error 时间校验错误 Finish time is set after the end of the media item 终止时间被设置为媒体项目结æŸä¹‹åŽ Start time is after the finish time of the media item å¼€å§‹æ—¶é—´åœ¨åª’ä½“é¡¹ç›®ç»ˆæ­¢æ—¶é—´ä¹‹åŽ OpenLP.ThemeForm (approximately %d lines per slide) (大约æ¯å¼ å¹»ç¯ç‰‡%d行) OpenLP.ThemeManager Create a new theme. 新建一个主题 Edit Theme 编辑主题 Edit a theme. 编辑一个主题 Delete Theme 删除主题 Delete a theme. 删除一个主题 Import Theme 导入主题 Import a theme. 导入一个主题 Export Theme 导出主题 Export a theme. 导出一个主题 &Edit Theme 编辑主题(E) &Delete Theme 删除主题(D) Set As &Global Default 设定为全局默认(G) %s (default) %s (默认) You must select a theme to edit. 您必须先选择一个主题æ¥ç¼–辑 You are unable to delete the default theme. 您ä¸èƒ½åˆ é™¤é»˜è®¤ä¸»é¢˜ You have not selected a theme. 您还没有选中一个主题 Save Theme - (%s) ä¿å­˜ä¸»é¢˜ - (%s) Theme Exported 主题已导出 Your theme has been successfully exported. 您的主题已æˆåŠŸå¯¼å‡ºã€‚ Theme Export Failed 主题导出失败 Select Theme Import File 选择è¦å¯¼å…¥çš„主题文件 File is not a valid theme. æ–‡ä»¶ä¸æ˜¯ä¸€ä¸ªæœ‰æ•ˆçš„主题 &Copy Theme å¤åˆ¶ä¸»é¢˜(C) &Rename Theme é‡å‘½å主题(R) &Export Theme 导出主题(E) You must select a theme to rename. 您必须选择一个主题æ¥é‡å‘½å Rename Confirmation 确认é‡å‘½å Rename %s theme? é‡å‘½å %s 主题? You must select a theme to delete. 您必须选择一个主题æ¥åˆ é™¤ã€‚ Delete Confirmation 确认删除 Delete %s theme? 删除 %s 主题? Validation Error 校验错误 A theme with this name already exists. 以这个å字的主题已ç»å­˜åœ¨ã€‚ Copy of %s Copy of <theme name> %s的副本 Theme Already Exists 主题已存在 Theme %s already exists. Do you want to replace it? 主题 %s å·²å­˜åœ¨ã€‚æ‚¨æƒ³è¦æ›¿æ¢å®ƒå—? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard 主题å‘导 Welcome to the Theme Wizard 欢迎æ¥åˆ°ä¸»é¢˜å‘导 Set Up Background 设置背景 Set up your theme's background according to the parameters below. æ ¹æ®ä¸‹åˆ—傿•°è®¾ç½®æ‚¨çš„主题背景。 Background type: 背景类型: Gradient æ¸å˜ Gradient: æ¸å˜ï¼š Horizontal æ°´å¹³ Vertical 垂直 Circular 圆形 Top Left - Bottom Right 左上 - å³ä¸‹ Bottom Left - Top Right 左下 - å³ä¸Š Main Area Font Details 主区域字体细节 Define the font and display characteristics for the Display text 为显示文字定义字体和显示特性 Font: 字体: Size: å­—å·ï¼š Line Spacing: 行è·ï¼š &Outline: 轮廓(O): &Shadow: 阴影(S): Bold 粗体 Italic 斜体 Footer Area Font Details 页脚区域字体细节 Define the font and display characteristics for the Footer text ä¸ºé¡µè„šæ–‡å­—å®šä¹‰å­—ä½“å’Œæ˜¾ç¤ºç‰¹å¾ Text Formatting Details 文字格å¼ç»†èŠ‚ Allows additional display formatting information to be defined å…许定义更多的显示格å¼ä¿¡æ¯ Horizontal Align: 水平对é½ï¼š Left å±…å·¦ Right å±…å³ Center 居中 Output Area Locations 输出区域ä½ç½® &Main Area 主区域(M) &Use default location 使用默认ä½ç½®(U) X position: Xåæ ‡ï¼š px åƒç´  Y position: Yåæ ‡ï¼š Width: 宽度: Height: 高度: Use default location 使用默认ä½ç½® Theme name: 主题å称: Edit Theme - %s 编辑主题 - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. 这个å‘导将帮助您创建并编辑您的主题。è¦å¼€å§‹è¿™ä¸ªè¿‡ç¨‹ï¼Œç‚¹å‡»ä¸‹é¢çš„下一步按钮设置您的背景。 Transitions: 过渡: &Footer Area 页脚区域(F) Starting color: 起始颜色: Ending color: 结æŸé¢œè‰²ï¼š Background color: 背景颜色: Justify å¯¹é½ Layout Preview 预览布局 Transparent 逿˜Ž Preview and Save 预览并ä¿å­˜ Preview the theme and save it. 预览并ä¿å­˜ä¸»é¢˜ Background Image Empty 背景图片空白 Select Image 选择图片 Theme Name Missing 缺少主题åç§° There is no name for this theme. Please enter one. 这个主题还没有å字,请输入一个。 Theme Name Invalid 无效的主题å Invalid theme name. Please enter one. 无效的主题å字,请输入å¦ä¸€ä¸ªã€‚ Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. 您尚未选择一张背景图片。请在继续å‰é€‰æ‹©ä¸€å¼ ã€‚ OpenLP.ThemesTab Global Theme 全局主题 Theme Level 主题级别 S&ong Level 歌曲级别(O) Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. 使用æ¯é¦–歌曲在数æ®åº“里的主题。如果一首歌曲没有主题与之关è”,那么使用敬拜仪å¼çš„主题。如果敬拜仪å¼ä¸åŒ…å«ä¸»é¢˜ï¼Œé‚£ä¹ˆä½¿ç”¨å…¨å±€ä¸»é¢˜ã€‚ &Service Level 敬拜仪å¼çº§åˆ«(S) Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. 使用敬拜仪å¼çš„主题,覆盖任何歌曲的主题。如果敬拜仪å¼ä¸åŒ…å«ä¸»é¢˜ï¼Œé‚£ä¹ˆä½¿ç”¨å…¨å±€ä¸»é¢˜ã€‚ &Global Level 全局级别(G) Use the global theme, overriding any themes associated with either the service or the songs. ä½¿ç”¨å…¨å±€ä¸»é¢˜ï¼Œè¦†ç›–ä»»ä½•ä¸Žæ•¬æ‹œä»ªå¼æˆ–歌曲关è”的主题。 Themes 主题 Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. 删除选中的项目。 Move selection up one position. 上移一ä½é€‰é¡¹ã€‚ Move selection down one position. 下移一ä½é€‰é¡¹ã€‚ &Vertical Align: 垂直对é½(V): Finished import. 导入完æˆã€‚ Format: æ ¼å¼ï¼š Importing 正在导入 Importing "%s"... 正在导入"%s"... Select Import Source é€‰æ‹©å¯¼å…¥æº Select the import format and the location to import from. 选择导入格å¼å’Œè¢«å¯¼å…¥çš„ä½ç½® Open %s File 打开 %s 文件 %p% %p% Ready. 准备就绪。 Starting import... 正在开始导入... You need to specify at least one %s file to import from. A file type e.g. OpenSong æ‚¨éœ€è¦æŒ‡å®šè‡³å°‘一个 %s 文件æ¥å¯¼å…¥ã€‚ Welcome to the Bible Import Wizard 欢迎æ¥åˆ°åœ£ç»å¯¼å…¥å‘导 Welcome to the Song Export Wizard 欢迎æ¥åˆ°æ­Œæ›²å¯¼å‡ºå‘导 Welcome to the Song Import Wizard 欢迎æ¥åˆ°æ­Œæ›²å¯¼å…¥å‘导 Author Singular 作者 Authors Plural 作者 © Copyright symbol. © Song Maintenance 歌曲维护 Topic Singular 题目 Topics Plural 题目 Title and/or verses not found 未找到标题和/æˆ–æ®µè½ XML syntax error XML语法错误 Welcome to the Bible Upgrade Wizard 欢迎æ¥åˆ°åœ£ç»å‡çº§å‘导 Open %s Folder 打开 %s 文件夹 You need to specify one %s file to import from. A file type e.g. OpenSong æ‚¨éœ€è¦æŒ‡å®šä¸€ä¸ª%s文件æ¥å¯¼å…¥ã€‚ You need to specify one %s folder to import from. A song format e.g. PowerSong æ‚¨éœ€è¦æŒ‡å®šä¸€ä¸ª%s文件夹æ¥å¯¼å…¥ã€‚ Importing Songs 导入歌曲 Welcome to the Duplicate Song Removal Wizard Written by Author Unknown About 关于 &Add 添加(A) Add group Advanced 高级 All Files 所有文件 Automatic 自动 Background Color 背景颜色 Bottom 底部 Browse... æµè§ˆ... Cancel å–æ¶ˆ CCLI number: CCLIå·ç ï¼š Create a new service. åˆ›å»ºä¸€ä¸ªæ–°çš„æ•¬æ‹œä»ªå¼ Confirm Delete 确认删除 Continuous 连续的 Default 默认 Default Color: 默认颜色: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. æ•¬æ‹œä»ªå¼ %Y-%m-%d %H-%M &Delete 删除(D) Display style: 显示风格: Duplicate Error é‡å¤é”™è¯¯ &Edit 编辑(E) Empty Field 空白区域 Error 错误 Export 导出 File 文件 File Not Found File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit 点 Help 帮助 h The abbreviated unit for hours æ—¶ Invalid Folder Selected Singular 选中了无效的文件夹 Invalid File Selected Singular 选中了无效的文件 Invalid Files Selected Plural 选中了无效的文件 Image 图片 Import 导入 Layout style: 布局风格: Live 现场 Live Background Error 现场背景错误 Live Toolbar çŽ°åœºå·¥å…·æ  Load 载入 Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes 分 Middle 中间 New 新建 New Service æ–°å»ºæ•¬æ‹œä»ªå¼ New Theme 新建主题 Next Track 下一个音轨 No Folder Selected Singular 未选择文件夹 No File Selected Singular 未选择文件 No Files Selected Plural 未选择文件 No Item Selected Singular 未选择项目 No Items Selected Plural 未选择项目 OpenLP is already running. Do you wish to continue? OpenLPå·²ç»åœ¨è¿è¡Œäº†ã€‚您希望继续å—? Open service. 打开敬拜仪å¼ã€‚ Play Slides in Loop 循环播放幻ç¯ç‰‡ Play Slides to End é¡ºåºæ’­æ”¾å¹»ç¯ç‰‡ Preview 预览 Print Service æ‰“å°æœåŠ¡ Projector Singular Projectors Plural Replace Background 替æ¢èƒŒæ™¯ Replace live background. 替æ¢çŽ°åœºèƒŒæ™¯ Reset Background é‡ç½®èƒŒæ™¯ Reset live background. é‡ç½®çŽ°åœºèƒŒæ™¯ s The abbreviated unit for seconds ç§’ Save && Preview ä¿å­˜é¢„览 Search æœç´¢ Search Themes... Search bar place holder text æœç´¢ä¸»é¢˜... You must select an item to delete. 您必须选择一个项目æ¥åˆ é™¤ã€‚ You must select an item to edit. 您必须选择一个项目æ¥ç¼–辑。 Settings 设定 Save Service ä¿å­˜æ•¬æ‹œä»ªå¼ Service æ•¬æ‹œä»ªå¼ Optional &Split å¯é€‰åˆ†éš”(S) Split a slide into two only if it does not fit on the screen as one slide. 如果一张幻ç¯ç‰‡æ— æ³•放置在一个å±å¹•上,那么将它分为两张。 Start %s 开始 %s Stop Play Slides in Loop åœæ­¢å¾ªçŽ¯æ’­æ”¾å¹»ç¯ç‰‡ Stop Play Slides to End åœæ­¢é¡ºåºæ’­æ”¾å¹»ç¯ç‰‡ Theme Singular 主题 Themes Plural 主题 Tools 工具 Top 顶部 Unsupported File 䏿”¯æŒçš„æ–‡ä»¶ Verse Per Slide æ¯é¡µæ˜¾ç¤ºç»èŠ‚ Verse Per Line æ¯è¡Œæ˜¾ç¤ºç»èŠ‚ Version 版本 View 查看 View Mode æ˜¾ç¤ºæ¨¡å¼ CCLI song number: Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>演示æ’ä»¶</strong><br />演示æ’ä»¶æä¾›ä½¿ç”¨è®¸å¤šä¸åŒçš„ç¨‹åºæ¥å±•示演示的能力。用户å¯åœ¨ä¸‹æ‹‰èœå•中选择å¯ç”¨çš„æ¼”示程åºé€‰é¡¹ã€‚ Presentation name singular 演示 Presentations name plural 演示 Presentations container title 演示 Load a new presentation. 加载一个新演示。 Delete the selected presentation. 删除选中的演示。 Preview the selected presentation. 预览选中的演示。 Send the selected presentation live. 将选中的演示å‘é€åˆ°çŽ°åœºã€‚ Add the selected presentation to the service. 将选中的演示å‘é€åˆ°æ•¬æ‹œä»ªå¼ã€‚ PresentationPlugin.MediaItem Select Presentation(s) 选择演示 Automatic 自动 Present using: 演示使用: File Exists 文件存在 A presentation with that filename already exists. 以这个å字命å的演示文件已存在。 This type of presentation is not supported. 䏿”¯æŒè¯¥ç±»åž‹çš„æ¼”示文件。 Presentations (%s) 演示 (%s) Missing Presentation 丢失演示文件 The presentation %s is incomplete, please reload. 演示文件%sä¸å®Œæ•´ï¼Œè¯·é‡æ–°è½½å…¥ã€‚ The presentation %s no longer exists. 演示文件%så·²ä¸å­˜åœ¨ã€‚ PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers å¯ç”¨æŽ§åˆ¶å™¨ %s (unavailable) %s (ä¸å¯ç”¨) Allow presentation application to be overridden å…许演示程åºè¢«è¦†ç›– PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>饿ާæ’ä»¶</strong><br />饿ާæ’ä»¶å¯ä»¥é€è¿‡ç½‘页æµè§ˆå™¨æˆ–是远程APIå‘å¦ä¸€å°ç”µè„‘上正在è¿è¡Œçš„OpenLPå‘é€ä¿¡æ¯ã€‚ Remote name singular 饿ާ Remotes name plural 饿ާ Remote container title 饿ާ Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager 敬拜仪å¼ç®¡ç†å™¨ Slide Controller å¹»ç¯ç‰‡æŽ§åˆ¶å™¨ Alerts 警告 Search æœç´¢ Home 主页 Refresh 刷新 Blank 空白 Theme 主题 Desktop æ¡Œé¢ Show 显示 Prev 上一个 Next 下一个 Text 文本 Show Alert 显示警告 Go Live å‘é€åˆ°çŽ°åœº Add to Service æ·»åŠ åˆ°æ•¬æ‹œä»ªå¼ Add &amp; Go to Service 添加 &amp; è½¬åˆ°æ•¬æ‹œä»ªå¼ No Results 没有结果 Options 选项 Service æ•¬æ‹œä»ªå¼ Slides å¹»ç¯ç‰‡ Settings 设定 Remote 饿ާ Stage View Live View RemotePlugin.RemoteTab Serve on IP address: æœåŠ¡äºŽIP地å€ï¼š Port number: 端å£ï¼š Server Settings æœåŠ¡å™¨è®¾ç½® Remote URL: 远程URL: Stage view URL: 舞å°è§†å›¾URL: Display stage time in 12h format 以12å°æ—¶åˆ¶æ˜¾ç¤ºèˆžå°æ—¶é—´ã€‚ Android App Android应用 Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: 密ç ï¼š Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking 歌曲使用状况跟踪(S) &Delete Tracking Data 删除跟踪数æ®(D) Delete song usage data up to a specified date. 删除指定日期之å‰çš„æ­Œæ›²ä½¿ç”¨æ•°æ®ã€‚ &Extract Tracking Data æå–跟踪数æ®(E) Generate a report on song usage. ç”Ÿæˆæ­Œæ›²ä½¿ç”¨æŠ¥å‘Š Toggle Tracking 切æ¢è·Ÿè¸ª Toggle the tracking of song usage. åˆ‡æ¢æ­Œæ›²ä½¿ç”¨è·Ÿè¸ªã€‚ <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>歌曲使用状况æ’ä»¶</strong><br />这个æ’件跟踪在敬拜仪å¼ä¸­æ­Œæ›²çš„使用状况。 SongUsage name singular 歌曲使用 SongUsage name plural 歌曲使用 SongUsage container title 歌曲使用 Song Usage 歌曲使用 Song usage tracking is active. 歌曲使用跟踪已å¯ç”¨ã€‚ Song usage tracking is inactive. 歌曲使用跟踪未å¯ç”¨ã€‚ display 显示 printed å·²æ‰“å° SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data åˆ é™¤æ­Œæ›²ä½¿ç”¨æ•°æ® Delete Selected Song Usage Events? 删除选中的歌曲使用事件? Are you sure you want to delete selected Song Usage data? 您确定想删除选中的歌曲使用数æ®ï¼Ÿ Deletion Successful 删除æˆåŠŸ Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction 歌曲使用状况æå– Select Date Range 选择日期范围 to 到 Report Location 报告ä½ç½® Output File Location 输出文件ä½ç½® usage_detail_%s_%s.txt 使用细节_%s_%s.txt Report Creation 创建报告 Report %s has been successfully created. 报告 %s å·²æˆåŠŸåˆ›å»ºã€‚ Output Path Not Selected 未选择输出路径 You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song 歌曲(S) Import songs using the import wizard. 使用导入å‘导æ¥å¯¼å…¥æ­Œæ›²ã€‚ <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>歌曲æ’ä»¶</strong><br />歌曲æ’ä»¶æä¾›äº†æ˜¾ç¤ºå’Œç®¡ç†æ­Œæ›²çš„能力。 &Re-index Songs 釿–°ç´¢å¼•歌曲(R) Re-index the songs database to improve searching and ordering. 釿–°ç´¢å¼•歌曲数æ®åº“æ¥æ”¹å–„æœç´¢å’ŒæŽ’列 Reindexing songs... æ­£åœ¨é‡æ–°ç´¢å¼•歌曲... Arabic (CP-1256) 阿拉伯文(CP-1256) Baltic (CP-1257) 波罗的海文 (CP-1257) Central European (CP-1250) 中欧(CP-1250) Cyrillic (CP-1251) 西里尔文 (CP-1251) Greek (CP-1253) 希腊文 (CP-1253) Hebrew (CP-1255) å¸Œä¼¯æ¥æ–‡ (CP-1225) Japanese (CP-932) 日文 (CP-932) Korean (CP-949) 韩文 (CP-949) Simplified Chinese (CP-936) 简体中文(CP-936) Thai (CP-874) æ³°æ–‡(CP-874) Traditional Chinese (CP-950) ç¹ä½“中文(CP-950) Turkish (CP-1254) 土耳其文 (CP-1254) Vietnam (CP-1258) è¶Šå—æ–‡ (CP-1258) Western European (CP-1252) 西欧 (CP-1252) Character Encoding å­—ç¬¦ç¼–ç  The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. ç¼–ç è®¾å®šè´Ÿè´£æ­£ç¡®çš„字符表示。 通常您会满æ„预选的设定。 Please choose the character encoding. The encoding is responsible for the correct character representation. 请选择字符编ç ã€‚ 该编ç è´Ÿè´£æ­£ç¡®çš„字符表示。 Song name singular 歌曲 Songs name plural 歌曲 Songs container title 歌曲 Exports songs using the export wizard. 使用导出å‘导æ¥å¯¼å‡ºæ­Œæ›²ã€‚ Add a new song. 新增一首歌曲。 Edit the selected song. 编辑选中的歌曲。 Delete the selected song. 删除选中的歌曲。 Preview the selected song. 预览选中的歌曲。 Send the selected song live. 将选中的歌曲å‘é€åˆ°çŽ°åœº Add the selected song to the service. æ·»åŠ é€‰ä¸­çš„æ­Œæ›²é“æ•¬æ‹œä»ªå¼ Reindexing songs 釿–°ç´¢å¼•歌曲 CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song SongsPlugin.AuthorsForm Author Maintenance 作者维护 Display name: 显示å称: First name: å: Last name: 姓: You need to type in the first name of the author. 您需è¦è¾“入作者的å。 You need to type in the last name of the author. 您需è¦è¾“入作者的姓。 You have not set a display name for the author, combine the first and last names? 您尚未设定作者的显示å称,是å¦å°†å§“å组åˆèµ·æ¥ï¼Ÿ SongsPlugin.CCLIFileImport The file does not have a valid extension. 此文件没有有效的扩展å。 SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s ç”± %s ç®¡ç† "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Metaæ•°æ® Custom Book Names 自定义书å·å SongsPlugin.EditSongForm Song Editor 歌曲编辑器 &Title: 标题(T): Alt&ernate title: 副标题(E): &Lyrics: æ­Œè¯(L): &Verse order: 段è½é¡ºåº(V): Ed&it All 编辑所有(I) Title && Lyrics æ ‡é¢˜æ­Œè¯ &Add to Song 添加到歌曲(A) &Remove 移除(R) A&dd to Song 添加到歌曲(D) R&emove 移除(E) New &Theme 新建主题(T) Copyright Information 版æƒä¿¡æ¯ Comments 评论 Theme, Copyright Info && Comments 主题,版æƒä¿¡æ¯ 评论 Add Author 添加作者 This author does not exist, do you want to add them? 该作者åç§°ä¸å­˜åœ¨ï¼Œæ‚¨å¸Œæœ›åР入他们å—? This author is already in the list. 该作者已在列表上。 You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. 您没有选择有效的作者。从列表中选择一个作者,或者输入一个新作者å称并点击"将作者添加到歌曲"æŒ‰é’®æ¥æ–°å¢žä¸€ä¸ªä½œè€…å。 Add Topic 添加题目 This topic does not exist, do you want to add it? 该题目ä¸å­˜åœ¨ï¼Œæ‚¨æƒ³è¦æ·»åŠ å®ƒå—? This topic is already in the list. 该题目已在列表上 You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. 您还没有选择一个有效的题目。从列表中选择一个题目,或是输入一个新题目并点击"将题目添加到歌曲"æŒ‰é’®æ¥æ·»åŠ ä¸€ä¸ªæ–°é¢˜ç›®ã€‚ You need to type in a song title. 您需è¦ä¸ºæ­Œæ›²è¾“入标题。 You need to type in at least one verse. 您需è¦è¾“入至少一段歌è¯ã€‚ You need to have an author for this song. 您需è¦ç»™è¿™é¦–歌曲一个作者。 Linked Audio å…³è”的音频 Add &File(s) 添加文件(F) Add &Media 添加媒体(M) Remove &All 移除所有(A) Open File(s) 打开文件 <strong>Warning:</strong> Not all of the verses are in use. <strong>警告:</strong> 没有使用所有歌è¯ã€‚ <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse ç¼–è¾‘æ®µè½ &Verse type: 段è½ç±»åž‹(V): &Insert æ’å…¥(I) Split a slide into two by inserting a verse splitter. 添加一个歌è¯åˆ†éš”ç¬¦æ¥æ‹†åˆ†ä¸€å¼ å¹»ç¯ç‰‡ã€‚ SongsPlugin.ExportWizardForm Song Export Wizard 歌曲导出å‘导 Select Songs 选择歌曲 Check the songs you want to export. 选择您希望导出的歌曲。 Uncheck All å…¨ä¸é€‰ Check All 全选 Select Directory 选择目录 Directory: 目录: Exporting 正在导出 Please wait while your songs are exported. 请ç¨ç­‰ï¼Œæ‚¨çš„æ­Œæ›²æ­£åœ¨å¯¼å‡ºã€‚ You need to add at least one Song to export. æ‚¨éœ€è¦æ·»åŠ è‡³å°‘ä¸€é¦–æ­Œæ›²æ¥å¯¼å‡ºã€‚ No Save Location specified 未指定ä¿å­˜ä½ç½® Starting export... 正在开始导出... You need to specify a directory. æ‚¨éœ€è¦æŒ‡å®šä¸€ä¸ªç›®å½• Select Destination Folder 选择目标文件夹 Select the directory where you want the songs to be saved. 选择您希望ä¿å­˜æ­Œæ›²çš„目录 This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type å¯ç”¨å³æ•²å³æœ SongsPlugin.ImportWizardForm Select Document/Presentation Files 选择文档/演示文件 Song Import Wizard 歌曲导入å‘导 This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. 这个å‘导将帮助您导入ä¸åŒæ ¼å¼çš„æ­Œæ›²ã€‚点击下é¢çš„ä¸‹ä¸€æ­¥é€‰æ‹©å¯¼å…¥æ ¼å¼æ¥å¼€å§‹è¿™ä¸ªè¿‡ç¨‹ã€‚ Generic Document/Presentation 通用文档/演示 Add Files... 添加文件... Remove File(s) 移除文件 Please wait while your songs are imported. 请等待,您的歌曲正在被导入。 Words Of Worship Song Files Word Of Worship 歌曲文件 Songs Of Fellowship Song Files Songs Of Fellowship 歌曲文件 SongBeamer Files SongBeamer 文件 SongShow Plus Song Files SongShow Plus 歌曲文件 Foilpresenter Song Files Foilpresenter 歌曲文件 Copy å¤åˆ¶ Save to File ä¿å­˜åˆ°æ–‡ä»¶ The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. 由于OpenLP无法访问OpenOffice或LibreOffice,Songs of Fellowship导入器已被ç¦ç”¨ã€‚ The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. 由于OpenLP无法访问OpenOffice或LibreOffice,通用文档/演示导入器已被ç¦ç”¨ã€‚ OpenLyrics Files OpenLyrics文件 CCLI SongSelect Files CCLI SongSelect 文件 EasySlides XML File EasySlides XML 文件 EasyWorship Song Database EasyWorship 歌曲数æ®åº“ DreamBeam Song Files DreamBeam 歌曲文件 You need to specify a valid PowerSong 1.0 database folder. æ‚¨éœ€è¦æŒ‡å®šä¸€ä¸ªæœ‰æ•ˆçš„PowerSong 1.0 æ•°æ®åº“文件夹。 ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. 首先将您的ZionWorxæ•°æ®åº“转æ¢ä¸ºä¸€ä¸ªCSV文本文件,如<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">用户指å—</a>所解释的。 SundayPlus Song Files SundayPlus 歌曲文件 This importer has been disabled. 这个导入器已被ç¦ç”¨ã€‚ MediaShout Database MediaShout æ•°æ®åº“ The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout仅支æŒWindows。由于缺少Python模å—它已被ç¦ç”¨ã€‚如果您想使用这个导入器,您需è¦å®‰è£…"pyodbc"模å—。 SongPro Text Files SongPro 文本文件 SongPro (Export File) SongPro (导出文件) In SongPro, export your songs using the File -> Export menu 在SongPro里, 使用 文件->导出 èœå•æ¥å¯¼å‡ºæ‚¨çš„æ­Œæ›² EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) 选择媒体文件 Select one or more audio files from the list below, and click OK to import them into this song. 在以下列表中选择一个或多个音频文件,并点击OKæ¥å°†å®ƒä»¬å¯¼å…¥åˆ°è¿™é¦–歌曲。 SongsPlugin.MediaItem Titles 标题 Lyrics æ­Œè¯ CCLI License: CCLI许å¯ï¼š Entire Song 整首歌曲 Maintain the lists of authors, topics and books. 维护作者,题目和曲集列表 copy For song cloning 建立歌曲副本 Search Titles... æœç´¢æ ‡é¢˜... Search Entire Song... æœç´¢æ•´é¦–歌曲... Search Lyrics... æœç´¢æ­Œè¯... Search Authors... æœç´¢ä½œè€… Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. 无法打开MediaShoutæ•°æ®åº“。 SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... 正在导出"%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. 没有歌曲å¯ä»¥å¯¼å…¥ã€‚ Verses not found. Missing "PART" header. 未找到歌è¯ã€‚缺少 "PART" 标头。 No %s files found. 未找到%s文件 Invalid %s file. Unexpected byte value. 无效的%s文件。éžé¢„期的编ç å€¼ã€‚ Invalid %s file. Missing "TITLE" header. 无效的%s文件。缺少 "TITLE" 标头。 Invalid %s file. Missing "COPYRIGHTLINE" header. 无效的%s文件。缺少 "COPYRIGHTLINE" 标头。 SongsPlugin.SongBookForm &Name: åç§°(N): &Publisher: 出版商(P): You need to type in a name for the book. 您需è¦ä¸ºæ›²é›†è¾“入一个åç§° Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. 您的歌曲导出失败。 Finished export. To import these files use the <strong>OpenLyrics</strong> importer. 导出完æˆã€‚è¦å¯¼å…¥è¿™äº›æ–‡ä»¶ï¼Œä½¿ç”¨<strong>OpenLyrics</strong>导入器 Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright ç‰ˆæƒ The following songs could not be imported: 无法导入以下歌曲: Cannot access OpenOffice or LibreOffice 无法访问OpenOffice或LibreOffice Unable to open file 无法打开文件 File not found 找ä¸åˆ°æ–‡ä»¶ SongsPlugin.SongMaintenanceForm Could not add your author. 无法添加您的作者åç§° This author already exists. 该作者å称已存在 Could not add your topic. 无法加入您的题目 This topic already exists. 该题目已存在 Could not add your book. æ— æ³•åŠ å…¥æ‚¨çš„ä¹¦å· This book already exists. 该书å·å·²å­˜åœ¨ Could not save your changes. 无法ä¿å­˜æ”¹åŠ¨ã€‚ Could not save your modified author, because the author already exists. 无法ä¿å­˜æ‚¨æ”¹åŠ¨çš„ä½œè€…å,因为该作者å已存在 Could not save your modified topic, because it already exists. 无法ä¿å­˜æ‚¨æ”¹åŠ¨çš„é¢˜ç›®ï¼Œå› ä¸ºå®ƒå·²ç»å­˜åœ¨äº†ã€‚ Delete Author 删除作者å Are you sure you want to delete the selected author? 你真的è¦åˆ é™¤é€‰ä¸­çš„作者åå—? This author cannot be deleted, they are currently assigned to at least one song. è¯¥ä½œè€…åæ— æ³•被删除,它目å‰è‡³å°‘被指派给了一首歌。 Delete Topic 删除题目 Are you sure you want to delete the selected topic? 您确定è¦åˆ é™¤é€‰ä¸­çš„题目å—? This topic cannot be deleted, it is currently assigned to at least one song. 该题目无法被删除,它目å‰å·²è¢«æŒ‡æ´¾ç»™äº†è‡³å°‘一首歌。 Delete Book 删除曲集 Are you sure you want to delete the selected book? 您真的è¦åˆ é™¤é€‰ä¸­çš„æ›²é›†å—? This book cannot be deleted, it is currently assigned to at least one song. 无法删除这个曲集,它当å‰è¢«æŒ‡æ´¾ç»™è‡³å°‘一首歌曲。 The author %s already exists. Would you like to make songs with author %s use the existing author %s? 作者å%så·²å­˜åœ¨ã€‚æ‚¨æƒ³å–æ¶ˆåˆ›å»ºä½œè€…å%s,并用已存在的作者å%s制作歌曲å—? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? 题目%så·²å­˜åœ¨ã€‚æ‚¨æƒ³å–æ¶ˆåˆ›å»ºé¢˜ç›®%s,并用已存在的题目%s制作歌曲å—? The book %s already exists. Would you like to make songs with book %s use the existing book %s? 曲集%så·²å­˜åœ¨ã€‚æ‚¨æƒ³å–æ¶ˆåˆ›å»ºæ›²é›†%s,并用已存在的曲集%s制作歌曲å—? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: 用户å: Password: 密ç ï¼š Save username and password Login Search Text: Search æœç´¢ Found %s song(s) Logout View 查看 Title: 标题: Author(s): Copyright: 版æƒï¼š CCLI Number: Lyrics: Back Import 导入 More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode æ­Œæ›²æ¨¡å¼ Display verses on live tool bar 在现场工具æ ä¸­æ˜¾ç¤ºæ­Œè¯ Update service from song edit 从音ä¹ç¼–è¾‘ä¸­æ›´æ–°æ•¬æ‹œä»ªå¼ Import missing songs from service files ä»Žæ•¬æ‹œä»ªå¼æ–‡ä»¶ä¸­å¯¼å…¥ä¸¢å¤±çš„æ­Œæ›² Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance 题目维护 Topic name: 题目å称: You need to type in a topic name. 您需è¦è¾“入一个题目åç§° SongsPlugin.VerseType Verse 主歌 Chorus 副歌 Bridge 桥段 Pre-Chorus 导歌 Intro å‰å¥ Ending ç»“æŸ Other 其它 SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. 读å–CSV文件å‘生错误。 Line %d: %s 行 %d: %s Decoding error: %s è§£ç é”™è¯¯ï¼š %s File not valid WorshipAssistant CSV format. Record %d 录制 %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. 读å–CSV文件å‘生错误。 File not valid ZionWorx CSV format. 文件ä¸ä¸ºæœ‰æ•ˆçš„ZionWorx CSVæ ¼å¼ã€‚ Line %d: %s 行 %d: %s Decoding error: %s è§£ç é”™è¯¯ï¼š %s Record %d 录制 %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information ä¿¡æ¯ No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/hu.ts0000644000175000017500000156114112657640340015337 0ustar raoulraoul AlertsPlugin &Alert &Riasztás Show an alert message. Riasztási üzenetet jelenít meg. Alert name singular Riasztás Alerts name plural Riasztások Alerts container title Riasztások <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Riasztás bÅ‘vítmény</strong><br />A riasztás bÅ‘vítmény kezeli a figyelmeztetéseket és a felhívásokat a vetítÅ‘n. AlertsPlugin.AlertForm Alert Message Riasztási üzenet Alert &text: Riasztás &szövege: &New &Új &Save &Mentés Displ&ay M&egjelenítés Display && Cl&ose Megjele&nítés és bezárás New Alert Új riasztás &Parameter: &Paraméter: No Parameter Found Nem található a paraméter You have not entered a parameter to be replaced. Do you want to continue anyway? Nincs megadva a cserélendÅ‘ paraméter. Folytatható? No Placeholder Found Nem található a helyjelölÅ‘ The alert text does not contain '<>'. Do you want to continue anyway? A riasztás szövege nem tartalmaz „<>†karaktereket. Folytatható? You haven't specified any text for your alert. Please type in some text before clicking New. A riasztás szövege nincs megadva. Adj meg valamilyen szöveget az Új gombra való kattintás elÅ‘tt. AlertsPlugin.AlertsManager Alert message created and displayed. A riasztási üzenet létrejött és megjelent. AlertsPlugin.AlertsTab Font Betűkészlet Font name: Betűkészlet neve: Font color: Betűszín: Background color: Háttérszín: Font size: Betűméret: Alert timeout: Riasztás idÅ‘tartama: BiblesPlugin &Bible &Biblia Bible name singular Biblia Bibles name plural Bibliák Bibles container title Bibliák No Book Found Nincs ilyen könyv No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. A kért könyv nem található ebben a Bibliában. Kérlek, ellenÅ‘rizd a könyv nevének helyesírását. Import a Bible. Biblia importálása. Add a new Bible. Biblia hozzáadása. Edit the selected Bible. A kijelölt Biblia szerkesztése. Delete the selected Bible. A kijelölt Biblia törlése. Preview the selected Bible. A kijelölt Biblia elÅ‘nézete. Send the selected Bible live. A kijelölt Biblia élÅ‘ adásba küldése. Add the selected Bible to the service. A kijelölt Biblia hozzáadása a szolgálati sorrendhez. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Biblia bÅ‘vítmény</strong><br />A Biblia bÅ‘vítmény különféle forrásokból származó igehelyek vetítését teszi lehetÅ‘vé a szolgálat alatt. &Upgrade older Bibles &Régebbi Bibliák frissítése Upgrade the Bible databases to the latest format. Frissíti a Biblia adatbázisokat a legutolsó formátumra. Genesis Teremtés Exodus Kivonulás Leviticus Leviták Numbers Számok Deuteronomy Második Törvénykönyv Joshua Józsue Judges Bírák Ruth Rút 1 Samuel 1. Sámuel 2 Samuel 2. Sámuel 1 Kings 1. Királyok 2 Kings 2. Királyok 1 Chronicles 1. Krónikák 2 Chronicles 2. Krónikák Ezra Ezdrás Nehemiah Nehemiás Esther Eszter Job Jób Psalms Zsoltárok Proverbs Példabeszédek Ecclesiastes Prédikátor Song of Solomon Énekek éneke Isaiah Izajás Jeremiah Jeremiás Lamentations Jeremiás siralmai Ezekiel Ezekiel Daniel Dániel Hosea Ozeás Joel Joel Amos Ãmosz Obadiah Abdiás Jonah Jónás Micah Mikeás Nahum Náhum Habakkuk Habakuk Zephaniah Szofoniás Haggai Aggeus Zechariah Zakariás Malachi Malakiás Matthew Máté Mark Márk Luke Lukács John János Acts Apostolok Cselekedetei Romans Római 1 Corinthians 1. Korintusi 2 Corinthians 2. Korintusi Galatians Galata Ephesians Efezusi Philippians Filippi Colossians Kolosszei 1 Thessalonians 1. Tesszaloniki 2 Thessalonians 2. Tesszaloniki 1 Timothy 1. Timóteus 2 Timothy 2. Timóteus Titus Titusz Philemon Filemon Hebrews Zsidók James Jakab 1 Peter 1. Péter 2 Peter 2. Péter 1 John 1. János 2 John 2. János 3 John 3. János Jude Júdás Revelation Jelenések Judith Judit Wisdom Bölcsesség Tobit Tóbiás Sirach Sirák fia Baruch Báruk 1 Maccabees 1. Makkabeusok 2 Maccabees 2. Makkabeusok 3 Maccabees 3. Makkabeusok 4 Maccabees 4. Makkabeusok Rest of Daniel Dániel maradék Rest of Esther Eszter maradék Prayer of Manasses Manassze imája Letter of Jeremiah Jeremiás levele Prayer of Azariah Azarja imája Susanna Zsuzsanna Bel Bél és a sárkány 1 Esdras Ezdrás 2 Esdras Nehemiás : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 , v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 versek - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 – , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 . and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 és end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse vége BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Meg kell adni a Biblia verziószámát. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Meg kell adni a Biblia szerzÅ‘i jogait. A közkincs Bibliákat meg kell jelölni ilyennek. Bible Exists LétezÅ‘ Biblia This Bible already exists. Please import a different Bible or first delete the existing one. Ez a Biblia már létezik. Kérlek, importálj egy másik Bibliát vagy elÅ‘bb töröld a meglévÅ‘t. You need to specify a book name for "%s". Meg kell adni a könyv nevét: %s. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. A könyv neve nem megfelelÅ‘: %s. Szám csak az elején lehet és ezt követni kell néhány nem numerikus karakternek. Duplicate Book Name Azonos könyvnév The Book Name "%s" has been entered more than once. E könyvnév többször lett megadva: %s. BiblesPlugin.BibleManager Scripture Reference Error Igehely-hivatkozási hiba Web Bible cannot be used Online Biblia nem használható Text Search is not available with Web Bibles. A keresés nem érhetÅ‘ el online Biblián. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nincs megadva keresési kifejezés. Több kifejezés is megadható. Szóközzel történÅ‘ elválasztás esetén minden egyes kifejezésre történik a keresés, míg vesszÅ‘vel való elválasztás esetén csak az egyikre. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Jelenleg nincs telepített Biblia. Kérlek, használd a Bibliaimportáló tündért Bibliák telepítéséhez. No Bibles Available Nincsenek elérhetÅ‘ Bibliák Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Ezt az igehely-hivatkozást nem támogatja az OpenLP vagy nem helyes. Kérlek, ellenÅ‘rizd, hogy a hivatkozás megfelel-e az egyik alábbi mintának, illetve segítségért tekints meg a kézikönyvet. Könyv fejezet Könyv fejezet%(range)sfejezet Könyv fejezet%(verse)svers%(range)svers Könyv fejezet%(verse)svers%(range)svers%(list)svers%(range)svers Könyv fejezet%(verse)svers%(range)svers%(list)sfejezet%(verse)svers%(range)svers Könyv fejezet%(verse)svers%(range)sfejezet%(verse)svers BiblesPlugin.BiblesTab Verse Display Versek megjelenítés Only show new chapter numbers Csak az új fejezetszámok megjelenítése Bible theme: Biblia téma: No Brackets Nincsenek zárójelek ( And ) ( és ) { And } { és } [ And ] [ és ] Note: Changes do not affect verses already in the service. Megjegyzés: A módosítások nem érintik a már a szolgálati sorrendben lévÅ‘ verseket. Display second Bible verses Második Biblia verseinek megjelenítése Custom Scripture References Egyedi szentírási hivatkozások Verse Separator: Versek elválasztása: Range Separator: Tartományok elválasztása: List Separator: Felsorolások elválasztása: End Mark: Vég jelölése: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Több alternatív versszak elválasztó definiálható. Egy függÅ‘leges vonal („|â€) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. English Magyar Default Bible Language Alapértelmezett bibliai nyelv Book name language in search field, search results and on display: A keresési mezÅ‘ben, a találati sorrendben és a képernyÅ‘n megjelenÅ‘ könyvnevek alapértelmezett nyelve: Bible Language Biblia nyelve Application Language Alkalmazás nyelve Show verse numbers Versszakok számának megjelenítése BiblesPlugin.BookNameDialog Select Book Name Könyv nevének kijelölése Current name: Jelenlegi név: Corresponding name: MegfelelÅ‘ név: Show Books From Könyvek szűrése Old Testament Ószövetség New Testament Újszövetség Apocrypha Apokrif The following book name cannot be matched up internally. Please select the corresponding name from the list. A következÅ‘ könyvnév nem ismerhetÅ‘ fel. Jelölj ki egy helyes nevet a következÅ‘ listából. BiblesPlugin.BookNameForm You need to select a book. Ki kell jelölni egy könyvet. BiblesPlugin.CSVBible Importing books... %s Könyvek importálása… %s Importing verses... done. Versek importálása… kész. BiblesPlugin.EditBibleForm Bible Editor Biblia szerkesztÅ‘ License Details Licenc részletei Version name: Verziónév: Copyright: SzerzÅ‘i jog: Permissions: Engedélyek: Default Bible Language Alapértelmezett bibliai nyelv Book name language in search field, search results and on display: A keresési mezÅ‘ben, a találati sorrendben és a képernyÅ‘n megjelenÅ‘ könyvnevek alapértelmezett nyelve: Global Settings Globális beállítások Bible Language Biblia nyelve Application Language Alkalmazás nyelve English Magyar This is a Web Download Bible. It is not possible to customize the Book Names. Ez egy webrÅ‘l letöltött Biblia. Nincs lehetÅ‘ség a könyvnevek módosítására. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Az egyedi könyvnevek alkalmazásához a „Biblia nyelve†beállítást kell alkalmazni a metaadat fülön, vagy „Globális beállítások†esetén az OpenLP beállításai között a „Biblia†lapon. BiblesPlugin.HTTPBible Registering Bible and loading books... Biblia regisztrálása és a könyvek betöltése… Registering Language... Nyelv regisztrálása… Importing %s... Importing <book name>... Importálás: %s… Download Error Letöltési hiba There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Probléma történt a kijelölt versek letöltésekor. Kérem, ellenÅ‘rizd a az internetkapcsolatot, és ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. Parse Error Feldolgozási hiba There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Probléma történt a kijelölt versek kicsomagolásakor. Ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. BiblesPlugin.ImportWizardForm Bible Import Wizard Bibliaimportáló tündér This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. A tündér segít a különféle formátumú bibliák importálásában. Kattints az alábbi KövetkezÅ‘ gombra a folyamat elsÅ‘ lépésének indításhoz, a formátum kiválasztásához. Web Download Webes letöltés Location: Hely: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Biblia: Download Options Letöltési beállítások Server: Szerver: Username: Felhasználói név: Password: Jelszó: Proxy Server (Optional) Proxy szerver (választható) License Details Licenc részletei Set up the Bible's license details. Ãllítsd be a Biblia licenc részleteit. Version name: Verziónév: Copyright: SzerzÅ‘i jog: Please wait while your Bible is imported. Kérlek, várj, míg a Biblia importálás alatt áll. You need to specify a file with books of the Bible to use in the import. Meg kell adni egy fájlt a bibliai könyvekrÅ‘l az importáláshoz. You need to specify a file of Bible verses to import. Meg kell adni egy fájlt a bibliai versekrÅ‘l az importáláshoz. You need to specify a version name for your Bible. Meg kell adni a Biblia verziószámát. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Meg kell adni a Biblia szerzÅ‘i jogait. A közkincs Bibliákat meg kell jelölni ilyennek. Bible Exists LétezÅ‘ Biblia This Bible already exists. Please import a different Bible or first delete the existing one. Ez a Biblia már létezik. Kérlek, importálj egy másik Bibliát vagy elÅ‘bb töröld a meglévÅ‘t. Your Bible import failed. A Biblia importálása nem sikerült. CSV File CSV fájl Bibleserver Bibleserver Permissions: Engedélyek: Bible file: Biblia-fájl: Books file: Könyvfájl: Verses file: Versfájl: Registering Bible... Biblia regisztrálása… Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Biblia regisztrálva. Megjegyzés: a versek csak kérésre lesznek letöltve és akkor is internet kapcsolat szükségeltetik. Click to download bible list Biblia-lista letöltése Download bible list Letöltés Error during download Hiba a letöltés során An error occurred while downloading the list of bibles from %s. Hiba történt az alábbi helyrÅ‘l való Biblia-lista letöltése során: %s. BiblesPlugin.LanguageDialog Select Language Nyelvválasztás OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Az OpenLP nem képes megállapítani a bibliafordítás nyelvét. Kérem, válassz nyelvet az alábbi listából. Language: Nyelv: BiblesPlugin.LanguageForm You need to choose a language. Ki kell jelölni egy nyelvet. BiblesPlugin.MediaItem Quick Gyors Find: Keresés: Book: Könyv: Chapter: Fejezet: Verse: Vers: From: InnentÅ‘l: To: Idáig: Text Search Szöveg keresése Second: Második: Scripture Reference Igehely-hivatkozás Toggle to keep or clear the previous results. Ãtváltás az elÅ‘zÅ‘ eredmény megÅ‘rzése, ill. törlése között. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Az egyes és a kettÅ‘zött bibliaversek nem kombinálhatók. Töröljük a keresési eredményt és kezdjünk egy újabbat? Bible not fully loaded. A Biblia nem töltÅ‘dött be teljesen. Information Információ The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A második Biblia nem tartalmaz minden verset, ami az elsÅ‘ben megtalálható. Csak a mindkét Bibliában fellelhetÅ‘ versek fognak megjelenni. Ezek a versek nem lesznek megtalálhatóak: %d. Search Scripture Reference... Igehely keresése… Search Text... Szöveg keresése… Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Valóban teljes egészében törölhetÅ‘ ez a Biblia az OpenLP-bÅ‘l: %s? Az esetleges újbóli alkalmazásához újra be kell majd importálni. Advanced Haladó BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. A megadott Biblia-fájl hibás. Az OpenSong Bibliák lehet, hogy tömörítve vannak. Ki kell tömöríteni Å‘ket importálás elÅ‘tt. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. A megadott Biblia-fájl hibás. Úgy tűnik, ez egy Zefania XML biblia, alkalmazd a Zefania importálási beállítást. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importálás: %(bookname) %(chapter) fejezet BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Nem használt címkék eltávolítása (ez eltarthat pár percig)… Importing %(bookname)s %(chapter)s... Importálás: %(bookname) %(chapter) fejezet BiblesPlugin.UpgradeWizardForm Select a Backup Directory Jelölj ki egy mappát a biztonsági mentésnek Bible Upgrade Wizard BibliafrissítÅ‘ tündér This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. A tündér segít az OpenLP 2 korábbi verzióiból származó bibliák frissítésében. Kattints az alábbi KövetkezÅ‘ gombra a folyamat indításhoz. Select Backup Directory Biztonsági mentés mappája Please select a backup directory for your Bibles Jelölj ki egy mappát a bibliáid biztonsági mentésének Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Az OpenLP 2.0 elÅ‘zÅ‘ verziói nem képesek a frissített bibliákat alkalmazni. Ez a tündér segít biztonsági mentést készíteni a jelenlegi bibliákról, így ha vissza kell térni az OpenLP egy régebbi verziójára, akkor ezeket csak be kell majd másolni az OpenLP adatmappájába. A helyreállítási tudnivalók a <a href="http://wiki.openlp.org/faq">Gyakran ismételt kérdések</a> között találhatók. Please select a backup location for your Bibles. Jelölj ki egy helyet a bibliáid biztonsági mentésének. Backup Directory: Biztonsági mentés helye: There is no need to backup my Bibles Nincs szükség biztonsági másolatra Select Bibles Bibliák kijelölése Please select the Bibles to upgrade Jelöld ki a frissítendÅ‘ bibliákat Upgrading Frissítés Please wait while your Bibles are upgraded. Kérlek, várj, míg a bibliák frissítés alatt állnak. The backup was not successful. To backup your Bibles you need permission to write to the given directory. A biztonsági mentés nem volt sikeres. A bibliák biztonsági mentéséhez írási jogosultság szükséges a megadott mappára. Upgrading Bible %s of %s: "%s" Failed Biblia frissítése: %s/%s: „%s†Sikertelen Upgrading Bible %s of %s: "%s" Upgrading ... Biblia frissítése: %s/%s: „%s†Frissítés… Download Error Letöltési hiba To upgrade your Web Bibles an Internet connection is required. A webes bibliák frissítéséhez internet kapcsolat szükséges. Upgrading Bible %s of %s: "%s" Upgrading %s ... Biblia frissítése: %s/%s: „%s†Frissítés: %s … Upgrading Bible %s of %s: "%s" Complete Biblia frissítése: %s/%s: „%s†Kész , %s failed , %s sikertelen Upgrading Bible(s): %s successful%s Biblia frissítése: %s teljesítve %s Upgrade failed. A frissítés nem sikerült. You need to specify a backup directory for your Bibles. Meg kell adni egy könyvtárat a bibliák biztonsági mentéséhez. Starting upgrade... Frissítés indítása… There are no Bibles that need to be upgraded. Nincsenek frissítésre szoruló bibliák. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Bibliák frissítése: %(success)d teljesítve %(failed_text)s. Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor is internet kapcsolat szükségeltetik. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. A megadott Biblia-fájl hibás. A Zefania bibliák tömörítve lehetnek. Ki kell csomagolni Å‘ket az importálásuk elÅ‘tt. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importálás: %(bookname) %(chapter) fejezet CustomPlugin Custom Slide name singular Speciális dia Custom Slides name plural Speciális diák Custom Slides container title Speciális diák Load a new custom slide. Új speciális dia betöltése. Import a custom slide. Speciális dia importálása. Add a new custom slide. Új speciális dia hozzáadása. Edit the selected custom slide. A kijelölt speciális dia szerkesztése. Delete the selected custom slide. A kijelölt speciális dia törlése. Preview the selected custom slide. A kijelölt speciális dia elÅ‘nézete. Send the selected custom slide live. A kijelölt speciális dia élÅ‘ adásba küldése. Add the selected custom slide to the service. A kijelölt speciális dia hozzáadása a szolgálati sorrendhez. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Speciális dia bÅ‘vítmény</strong><br />A speciális dia bÅ‘vítmény dalokhoz hasonló egyéni diasor vetítését teszi lehetÅ‘vé. Ugyanakkor több szabadságot enged meg, mint a dal bÅ‘vítmény. CustomPlugin.CustomTab Custom Display Speciális dia megjelenése Display footer Lábléc megjelenítése Import missing custom slides from service files Hiányzó speciális diák importálása a szolgálati fájlokból CustomPlugin.EditCustomForm Edit Custom Slides Speciális diasor szerkesztése &Title: &Cím: Add a new slide at bottom. Új dia hozzáadása alulra. Edit the selected slide. Kijelölt dia szerkesztése. Edit all the slides at once. Minden kijelölt dia szerkesztése egyszerre. Split a slide into two by inserting a slide splitter. Dia ketté vágása egy diaelválasztó beszúrásával. The&me: &Téma: &Credits: &KözreműködÅ‘k: You need to type in a title. Meg kell adnod a címet. Ed&it All &Összes szerkesztése Insert Slide Dia beszúrása You need to add at least one slide. Meg kell adni legalább egy diát. CustomPlugin.EditVerseForm Edit Slide Dia szerkesztése CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Valóban törölhetÅ‘ a kijelölt „%d†speciális dia? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Kép bÅ‘vítmény</strong><br />A kép a bÅ‘vítmény különféle képek vetítését teszi lehetÅ‘vé.<br />A bÅ‘vítmény egyik különös figyelmet érdemlÅ‘ képessége az, hogy képes a sorrendkezelÅ‘n csoportba foglalni a képeket, így könnyebbé téve képek tömeges vetítését. A bÅ‘vítmény képes az OpenLP „idÅ‘zített körkörös†lejátszásra is, amivel a diasort automatikusan tudjuk léptetni. Továbbá, a bÅ‘vítményben megadott képekkel felülírhatjuk a téma háttérképét, így a szöveg alapú elemek ‒ mint pl. a dalok ‒ a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett. Image name singular Kép Images name plural Képek Images container title Képek Load a new image. Új kép betöltése. Add a new image. Új kép hozzáadása. Edit the selected image. A kijelölt kép szerkesztése. Delete the selected image. A kijelölt kép törlése. Preview the selected image. A kijelölt kép elÅ‘nézete. Send the selected image live. A kijelölt kép élÅ‘ adásba küldése. Add the selected image to the service. A kijelölt kép hozzáadása a szolgálati sorrendhez. ImagePlugin.AddGroupForm Add group Csoport hozzáadása Parent group: SzülÅ‘ csoport: Group name: Csoport neve: You need to type in a group name. Meg kell adni egy csoportnevet. Could not add the new group. A csoportot nem lehet hozzáadni. This group already exists. Ez a csoport már létezik. ImagePlugin.ChooseGroupForm Select Image Group Képcsoport kijelölése Add images to group: Kép hozzáadása a csoporthoz: No group Nincs csoport Existing group LétezÅ‘ csoport New group Új csoport ImagePlugin.ExceptionDialog Select Attachment Melléklet kijelölése ImagePlugin.MediaItem Select Image(s) Képek kijelölése You must select an image to replace the background with. Ki kell jelölni egy képet a háttér cseréjéhez. Missing Image(s) Hiányzó képek The following image(s) no longer exist: %s A következÅ‘ képek már nem léteznek: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? A következÅ‘ képek már nem léteznek: %s Szeretnél más képeket megadni? There was a problem replacing your background, the image file "%s" no longer exists. Probléma történt a háttér cseréje során, a kép nem létezik: %s There was no display item to amend. Nem volt módosított megjelenÅ‘ elem. -- Top-level group -- -- LegfelsÅ‘bb szintű csoport -- You must select an image or group to delete. Ki kell jelölni egy képet vagy csoportot a törléshez. Remove group Csoport eltávolítása Are you sure you want to remove "%s" and everything in it? %s valóban törölhetÅ‘ teljes tartalmával együtt? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. A kép mögött látható háttér eltérÅ‘ képernyÅ‘arány esetén. Media.player Audio Hang Video Videó VLC is an external player which supports a number of different formats. A VLC egy külsÅ‘ lejátszó, amely több különbözÅ‘ formátumot támogat. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. A Webkit egy a böngészÅ‘ben futó médialejátszó, amely lehetÅ‘vé teszi, hogy a szöveg videó felett jelenjen meg. This media player uses your operating system to provide media capabilities. Ez egy médialejátszó, amely együttműködik az operációs rendszerrel a média képességek érdekében. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Média bÅ‘vítmény</strong><br />A média bÅ‘vítmény hangok és videók lejátszását teszi lehetÅ‘vé. Media name singular Média Media name plural Média Media container title Média Load new media. Új médiafájl betöltése. Add new media. Új médiafájl hozzáadása. Edit the selected media. A kijelölt médiafájl szerkesztése. Delete the selected media. A kijelölt médiafájl törlése. Preview the selected media. A kijelölt médiafájl elÅ‘nézete. Send the selected media live. A kijelölt médiafájl élÅ‘ adásba küldése. Add the selected media to the service. A kijelölt médiafájl hozzáadása a szolgálati sorrendhez. MediaPlugin.MediaClipSelector Select Media Clip Médiaklip kijelölése Source Forrás Media path: Média útvonala: Select drive from list Jelöld ki a meghajtót a listából Load disc Lemez betöltése Track Details Szám részletei Title: Cím: Audio track: Hangsáv: Subtitle track: Feliratsáv: HH:mm:ss.z HH:mm:ss.z Clip Range Kliptartomány Start point: KezdÅ‘pont: Set start point KezdÅ‘pont megjelölése Jump to start point Ugrás a kezdÅ‘pontra End point: Végpont: Set end point Végpont megjelölése Jump to end point Ugrás a végpontra MediaPlugin.MediaClipSelectorForm No path was given Nincs megadva útvonal Given path does not exists A megadott útvonal nem létezik An error happened during initialization of VLC player A VLC lejátszó indításakor hiba történt VLC player failed playing the media A VLC nem tudta lejátszani a médiát CD not loaded correctly A CD nem töltÅ‘dött be helyesen The CD was not loaded correctly, please re-load and try again. A CD nem töltÅ‘dött be helyesen, meg kell próbálni újra betölteni. DVD not loaded correctly A DVD nem töltÅ‘dött be helyesen The DVD was not loaded correctly, please re-load and try again. A DVD nem töltÅ‘dött be helyesen, meg kell próbálni újra betölteni. Set name of mediaclip Klip nevének módosítása Name of mediaclip: Klip neve: Enter a valid name or cancel Érvényes nevet kell megadni vagy elvetni Invalid character Érvénytelen karakter The name of the mediaclip must not contain the character ":" A médiaklip neve nem tartalmazhat „:†karaktert MediaPlugin.MediaItem Select Media Médiafájl kijelölése You must select a media file to delete. Ki kell jelölni egy médiafájlt a törléshez. You must select a media file to replace the background with. Ki kell jelölni médiafájlt a háttér cseréjéhez. There was a problem replacing your background, the media file "%s" no longer exists. Probléma történt a háttér cseréje során, a médiafájl nem létezik: %s Missing Media File Hiányzó médiafájl The file %s no longer exists. A fájl nem létezik: %s Videos (%s);;Audio (%s);;%s (*) Videók (%s);;Hang (%s);;%s (*) There was no display item to amend. Nem volt módosított megjelenÅ‘ elem. Unsupported File Nem támogatott fájl Use Player: Lejátszó alkalmazása: VLC player required VLC lejátszó szükséges VLC player required for playback of optical devices VLC lejátszó szükséges az optikai eszközök lejátszásához Load CD/DVD CD/DVD betöltése Load CD/DVD - only supported when VLC is installed and enabled CD/DVD betöltése ‒ csak telepített és engedélyezett VLC esetén támogatott The optical disc %s is no longer available. Az optikai lemez már nem elérhetÅ‘: %s Mediaclip already saved A médiaklip el van mentve This mediaclip has already been saved A médiaklip már el volt mentve MediaPlugin.MediaTab Allow media player to be overridden Lejátszó felülírásának engedélyezése Start Live items automatically ÉlÅ‘ adásban lévÅ‘ elemek automatikus indítása OPenLP.MainWindow &Projector Manager &ProjektorkezelÅ‘ OpenLP Image Files Képfájlok Information Információ Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? A bibliák formátuma megváltozott, ezért frissíteni kell a már meglévÅ‘ bibliákat. Frissítheti most az OpenLP? Backup Biztonsági mentés OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Az OpenLP frissítve lett, készüljön biztonsági mentés az OpenLP adatmappájáról? Backup of the data folder failed! Az adatmappa biztonsági mentése nem sikerült! A backup of the data folder has been created at %s Az adatmappa biztonsági mentése létrehozva ide: %s Open Megnyitás OpenLP.AboutForm Credits KözreműködÅ‘k License Licenc build %s %s. build 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; version 2 of the License. Ez egy szabad szoftver; terjeszthetÅ‘, illetve módosítható a GNU Ãltalános Közreadási Feltételek dokumentumában leírtak szerint ‒ 2. verzió ‒, melyet a Szabad Szoftver Alapítvány ad ki. 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 below for more details. Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az eladhatóságra vagy valamely célra való alkalmazhatóságra való származtatott garanciát is beleértve. A további részleteket lásd alább. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> – Nyílt forrású dalszöveg vetítÅ‘ Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítÅ‘ szabad szoftver, mely használható énekek, bibliai versek, videók, képek és bemutatók (ha az Impress, a PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. Többet az OpenLP-rÅ‘l: http://openlp.org/ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több keresztény számítógépes programot, az alábbi gombbal vedd fontolóra az önkéntes részvételt. Volunteer Önkéntesség Project Lead Projektvezetés Developers FejlesztÅ‘k Contributors Hozzájárulók Packagers CsomagkészítÅ‘k Testers TesztelÅ‘k Translators Fordítók Afrikaans (af) Búr (af) Czech (cs) Cseh (cs) Danish (da) Dán (da) German (de) Német (de) Greek (el) Görög (el) English, United Kingdom (en_GB) Angol, Egyesült Királyság (en_GB) English, South Africa (en_ZA) Angol, Dél-Afrikai Köztársaság (en_ZA) Spanish (es) Spanyol (es) Estonian (et) Észt (et) Finnish (fi) Finn (fi) French (fr) Francia (fr) Hungarian (hu) Magyar (hu) Indonesian (id) Indonéz (id) Japanese (ja) Japán (ja) Norwegian BokmÃ¥l (nb) Norvég bokmÃ¥l (nb) Dutch (nl) Holland (nl) Polish (pl) Lengyel (pl) Portuguese, Brazil (pt_BR) Brazíliai portugál (pt_BR) Russian (ru) Orosz (ru) Swedish (sv) Svéd (sv) Tamil(Sri-Lanka) (ta_LK) Tamil (Srí Lanka) (ta_LK) Chinese(China) (zh_CN) Kínai (Kína) (zh_CN) Documentation Dokumentáció Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Build Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen ikonok: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. VégsÅ‘ köszönet „Úgy szerette Isten a világot, hogy egyszülött Fiát adta oda, hogy egyetlen benne hívÅ‘ se vesszen el, hanem örök élete legyen.†‒ Jn 3,16 És végül, de nem utolsósorban, a végsÅ‘ köszönet Istené, Atyánké, mert elküldte a Fiát, hogy meghaljon a kereszten, megszabadítva bennünket a bűntÅ‘l. Ezért ezt a programot szabadnak és ingyenesnek készítettük, mert Å tett minket szabaddá. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s SzerzÅ‘i jog © 2004-2016 %s Részleges szerzÅ‘i jog © 2004-2016 %s OpenLP.AdvancedTab UI Settings Felhasználói felület beállításai Number of recent files to display: ElÅ‘zmények megjelenítésének hossza: Remember active media manager tab on startup Újraindításkor az aktív médiakezelÅ‘ fülek visszaállítása Double-click to send items straight to live Dupla kattintással az elemek azonnali élÅ‘ adásba küldése Expand new service items on creation Sorrendbe kerülÅ‘ elemek kibontása létrehozásukkor Enable application exit confirmation Kilépési megerÅ‘sítés engedélyezése Mouse Cursor Egérmutató Hide mouse cursor when over display window Egérmutató elrejtése a vetítési ablak felett Default Image Alapértelmezett kép Background color: Háttérszín: Image file: Képfájl: Open File Fájl megnyitása Advanced Haladó Preview items when clicked in Media Manager Elem elÅ‘nézete a médiakezelÅ‘ben való kattintáskor Browse for an image file to display. Tallózd be a megjelenítendÅ‘ képfájlt. Revert to the default OpenLP logo. Az eredeti OpenLP logó visszaállítása. Default Service Name Alapértelmezett szolgálati sorrend neve Enable default service name Alapértelmezett szolgálati sorrendnév Date and Time: Dátum és idÅ‘: Monday HétfÅ‘ Tuesday Kedd Wednesday Szerda Friday Péntek Saturday Szombat Sunday Vasárnap Now Most Time when usual service starts. A szolgálat szokásos kezdete. Name: Név: Consult the OpenLP manual for usage. Segítség az OpenLP kézikönyvben. Revert to the default service name "%s". Alapértelmezett név helyreállítása: %s. Example: Példa: Bypass X11 Window Manager X11 ablakkezelÅ‘ megkerülése Syntax error. Szintaktikai hiba. Data Location Adatok helye Current path: Jelenlegi útvonal: Custom path: Egyedi útvonal: Browse for new data file location. Tallózd be az adatállományok helyét. Set the data location to the default. Eredeti adathely visszaállítása. Cancel Mégsem Cancel OpenLP data directory location change. Az OpenLP adathely-modósításának visszavonása. Copy data to new location. Adatok másolása az új helyre. Copy the OpenLP data files to the new location. Az OpenLP adatállományainak az új helyre való másolása. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>FIGYELMEZTETÉS:</strong> Az új mappa már tartalmaz OpenLP adatállományokat, melyek felül lesznek írva másoláskor. Data Directory Error Adatmappa hiba Select Data Directory Location Adatmappa helyének kijelölése Confirm Data Directory Change Adatmappa változásának megerÅ‘sítése Reset Data Directory Adatmappa visszaállítása Overwrite Existing Data MeglévÅ‘ adatok felülírása OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Az OpenLP adatmappa nem található %s Az OpenLP alapértelmezett mappája elÅ‘zÅ‘leg meg lett változtatva. Ha ez az új hely egy cserélhetÅ‘ adathordozón volt, azt újra elérhetÅ‘vé kell tenni. A „Nem†gomb megszakítja az OpenLP betöltését, lehetÅ‘séget adva a hiba javítására. Az „Igen†gomb helyreállítja az adatmappát az alapértelmezett helyre. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Valóban szeretnéd az OpenLP adatmappa helyét megváltoztatni erre a helyre? %s Az OpenLP bezárása után jut érvényre a változás. Thursday Csütörtök Display Workarounds MegkerülÅ‘ megjelenítési megoldások Use alternating row colours in lists Váltakozó színek alkalmazása a felrosolásokban WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? FIGYELMEZTETÉS: A kijelölt %s mappa már tartalmaz OpenLP adatállományokat. Valóban felülírhatók ezek a fájlok az aktuális adatfájlokkal? Restart Required Újraindítás szükséges This change will only take effect once OpenLP has been restarted. Az OpenLP újraindítása során jut érvényre a változás. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Valóban visszaállítható az OpenLP adatmappa az eredeti helyre? Az OpenLP bezárása után jut érvényre a változás. OpenLP.ColorButton Click to select a color. Kattints a szín kijelöléséhez. OpenLP.DB RGB RGB Video Videó Digital Digitális Storage Tároló Network Hálózat RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Videó 1 Video 2 Videó 2 Video 3 Videó 3 Video 4 Videó 4 Video 5 Videó 5 Video 6 Videó 6 Video 7 Videó 7 Video 8 Videó 8 Video 9 Videó 9 Digital 1 Digitális 1 Digital 2 Digitális 2 Digital 3 Digitális 3 Digital 4 Digitális 4 Digital 5 Digitális 5 Digital 6 Digitális 6 Digital 7 Digitális 7 Digital 8 Digitális 8 Digital 9 Digitális 9 Storage 1 Tároló 1 Storage 2 Tároló 2 Storage 3 Tároló 3 Storage 4 Tároló 4 Storage 5 Tároló 5 Storage 6 Tároló 6 Storage 7 Tároló 7 Storage 8 Tároló 8 Storage 9 Tároló 9 Network 1 Hálózat 1 Network 2 Hálózat 2 Network 3 Hálózat 3 Network 4 Hálózat 4 Network 5 Hálózat 5 Network 6 Hálózat 6 Network 7 Hálózat 7 Network 8 Hálózat 8 Network 9 Hálózat 9 OpenLP.ExceptionDialog Error Occurred Hiba történt Send E-Mail E-mail küldése Save to File Mentés fájlba Attach File Fájl csatolása Description characters to enter : %s Leírás: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Ãrd le mit tettél, ami a hibához vezetett. LehetÅ‘ség szerint angolul. (minimum 20 karakter) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alsó szövegdoboz olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztÅ‘i számára, tehát kérjük, küld el a bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen hol és mit tettél, amikor a hiba történt. Csatolj minden olyan állományt, amely a hibához vezetett. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Összeomlási jelentés mentése Text files (*.txt *.log *.text) Szövegfájlok (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Fájl átnevezése New File Name: Új fájl neve: File Copy Fájl másolása OpenLP.FirstTimeLanguageForm Select Translation Fordítás kijelölése Choose the translation you'd like to use in OpenLP. Válassz egy fordítást, amit használni szeretnél az OpenLP-ben. Translation: Fordítás: OpenLP.FirstTimeWizard Songs Dalok First Time Wizard ElsÅ‘ indítás tündér Welcome to the First Time Wizard Üdvözlet az elsÅ‘ indítás tündérben Activate required Plugins Igényelt bÅ‘vítmények aktiválása Select the Plugins you wish to use. Jelöld ki az alkalmazni kívánt bÅ‘vítményeket. Bible Biblia Images Képek Presentations Bemutatók Media (Audio and Video) Média (hang és videó) Allow remote access Távirányító Monitor Song Usage Dalstatisztika Allow Alerts Riasztások engedélyezése Default Settings Alapértelmezett beállítások Downloading %s... Letöltés %s… Enabling selected plugins... Kijelölt bÅ‘vítmények engedélyezése… No Internet Connection Nincs internet kapcsolat Unable to detect an Internet connection. Nem sikerült internet kapcsolatot észlelni. Sample Songs Példa dalok Select and download public domain songs. Közkincs dalok kijelölése és letöltése. Sample Bibles Példa bibliák Select and download free Bibles. Szabad bibliák kijelölése és letöltése. Sample Themes Példa témák Select and download sample themes. Példa témák kijelölése és letöltése. Set up default settings to be used by OpenLP. Az OpenLP alapértelmezett beállításai. Default output display: Alapértelmezett kimeneti képernyÅ‘: Select default theme: Alapértelmezett téma kijelölése: Starting configuration process... Beállítási folyamat kezdése… Setting Up And Downloading Beállítás és letöltés Please wait while OpenLP is set up and your data is downloaded. Várj, amíg az OpenLP beállítások érvényre jutnak és míg az adatok letöltÅ‘dnek. Setting Up Beállítás Custom Slides Speciális diák Finish Befejezés No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Nem sikerült internetkapcsolatot találni. Az ElsÅ‘ indítás tündérnek internetkapcsolatra van szüksége ahhoz, hogy a példa dalokat, bibliákat és témákat le lehessen letölteni. A Befejezés gombra való kattintással az OpenLP alapértelmezett beállításokkal és a példaadatok nélkül indul el. Az ElsÅ‘ indítás tündér újbóli indításához és a példaadatok késÅ‘bbi betöltéséhez ellenÅ‘rizd az internetkapcsolatot és futtasd újra ezt a tündért az OpenLP Eszközök > ElsÅ‘ indítás tündér menüpontjával. Download Error Letöltési hiba There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Kapcsolódási hiba történt a letöltés közben, ezért a letöltés megszakadt. Ajánlott az ElsÅ‘ indítás tündér újbóli futtatása. Download complete. Click the %s button to return to OpenLP. A letöltés befejezÅ‘dött. Visszatérés az OpeLP-be az alábbi %s gombbal. Download complete. Click the %s button to start OpenLP. A letöltés befejezÅ‘dött. Az OpeLP indítása az alábbi %s gombbal. Click the %s button to return to OpenLP. Visszatérés az OpenLP-be az alábbi %s gombbal. Click the %s button to start OpenLP. Az OpenLP indításaó az alábbi %s gombbal. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Kapcsolódási hiba történt a letöltés közben, ezért a letöltés megszakadt. Ajánlott az ElsÅ‘ indítás tündér újbóli futtatása. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. A tündér segít elkezdeni az OpenLP használatát. Kattints az alábbi %s gombra az indításhoz. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. A tündér teljes leállításához (és az OpenLP bezárásához) kattints az alábbi %s gombra. Downloading Resource Index Forrás tartalomjegyzékének letöltése Please wait while the resource index is downloaded. Kérlek, várj, míg a forrás tartalomjegyzéke letöltÅ‘dik. Please wait while OpenLP downloads the resource index file... Kérlek, várj, míg az OpenLP letölti a forrás tartalomjegyzékét… Downloading and Configuring Letöltés és beállítás Please wait while resources are downloaded and OpenLP is configured. Kérlek, várj, míg a források letöltÅ‘dnek és az OpenLP beállításra kerül. Network Error Hálózati hiba There was a network error attempting to connect to retrieve initial configuration information Hálózati hiba történt a kezdÅ‘ beállító információk letöltése közben Cancel Mégsem Unable to download some files Nem sikerült letölteni néhány fájlt. OpenLP.FormattingTagDialog Configure Formatting Tags Formázó címkék beállítása Description Leírás Tag Címke Start HTML Nyitó HTML End HTML BefejezÅ‘ HTML Default Formatting Alapértelmezett formázás Custom Formatting Egyedi formázás OpenLP.FormattingTagForm <HTML here> <HTML-t ide> Validation Error Érvényességi hiba Description is missing Hiányzik a leírás Tag is missing Hiányzik a címke Tag %s already defined. A címke már létezik: %s. Description %s already defined. A leírás már létezik: %s. Start tag %s is not valid HTML A kezdÅ‘ %s címke nem érvényes HTML End tag %(end)s does not match end tag for start tag %(start)s A záró %(end)s címke nem egyezik a %(start)s kezdÅ‘ címkével. OpenLP.FormattingTags Red Vörös Black Fekete Blue Kék Yellow Sárga Green Zöld Pink Rózsaszín Orange Narancs Purple Lila White Fehér Superscript FelsÅ‘ index Subscript Alsó index Paragraph Bekezdés Bold Félkövér Italics DÅ‘lt Underline Aláhúzott Break Sortörés OpenLP.GeneralTab General Ãltalános Monitors KijelzÅ‘k Select monitor for output display: Vetítési képernyÅ‘ kijelölése: Display if a single screen Megjelenítés egy képernyÅ‘ esetén Application Startup Alkalmazásindítás Show blank screen warning Figyelmeztetés megjelenítése az elsötétített képernyÅ‘rÅ‘l Automatically open the last service Utolsó sorrend automatikus megnyitása Show the splash screen IndítóképernyÅ‘ megjelenítése Application Settings Alkalmazásbeállítások Prompt to save before starting a new service Rákérdezés mentésre új sorrend létrehozása elÅ‘tt Automatically preview next item in service KövetkezÅ‘ elem automatikus elÅ‘nézete a sorrendben sec mp CCLI Details CCLI részletek SongSelect username: SongSelect felhasználói név: SongSelect password: SongSelect jelszó: X X Y Y Height Magasság Width Szélesség Check for updates to OpenLP Frissítés keresése az OpenLP-hez Unblank display when adding new live item KépernyÅ‘ elsötétítésének visszavonása új elem élÅ‘ adásba küldésekor Timed slide interval: IdÅ‘zített dia intervalluma: Background Audio Háttérzene Start background audio paused Leállított háttérzene indítása Service Item Slide Limits Sorrendben lévÅ‘ diák határai Override display position: Megjelenítési pozíció felülbírálása: Repeat track list Zenei számok ismétlése Behavior of next/previous on the last/first slide: A következÅ‘/elÅ‘zÅ‘ gombok viselkedése az elsÅ‘ és az utolsó diánál: &Remain on Slide &Maradjon a dián &Wrap around &Kezdje elölrÅ‘l &Move to next/previous service item &Ugorjon a következÅ‘/elÅ‘zÅ‘ sorrendben lévÅ‘ elemre OpenLP.LanguageManager Language Nyelv Please restart OpenLP to use your new language setting. A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe. OpenLP.MainDisplay OpenLP Display OpenLP megjelenítés OpenLP.MainWindow &File &Fájl &Import &Importálás &Export &Exportálás &View &Nézet M&ode &Mód &Tools &Eszközök &Settings &Beállítások &Language &Nyelv &Help &Súgó Service Manager SorrendkezelÅ‘ Theme Manager TémakezelÅ‘ Open an existing service. MeglévÅ‘ sorrend megnyitása. Save the current service to disk. Aktuális sorrend mentése lemezre. Save Service As Sorrend mentése másként Save the current service under a new name. Az aktuális sorrend más néven való mentése. E&xit &Kilépés Quit OpenLP OpenLP bezárása &Theme &Téma &Configure OpenLP... OpenLP &beállítása… &Media Manager &MédiakezelÅ‘ Toggle Media Manager MédiakezelÅ‘ átváltása Toggle the visibility of the media manager. A médiakezelÅ‘ láthatóságának átváltása. &Theme Manager &TémakezelÅ‘ Toggle Theme Manager TémakezelÅ‘ átváltása Toggle the visibility of the theme manager. A témakezelÅ‘ láthatóságának átváltása. &Service Manager &SorrendkezelÅ‘ Toggle Service Manager SorrendkezelÅ‘ átváltása Toggle the visibility of the service manager. A sorrendkezelÅ‘ láthatóságának átváltása. &Preview Panel &ElÅ‘nézet panel Toggle Preview Panel ElÅ‘nézet panel átváltása Toggle the visibility of the preview panel. Az elÅ‘nézet panel láthatóságának átváltása. &Live Panel &ÉlÅ‘ adás panel Toggle Live Panel ÉlÅ‘ adás panel átváltása Toggle the visibility of the live panel. Az élÅ‘ adás panel láthatóságának átváltása. List the Plugins BÅ‘vítmények listája &User Guide &Felhasználói kézikönyv &About &Névjegy More information about OpenLP További információk az OpenLP-rÅ‘l &Online Help &Online súgó &Web Site &Weboldal Use the system language, if available. Rendszernyelv használata, ha elérhetÅ‘. Set the interface language to %s A felhasználói felület nyelvének átváltása erre: %s Add &Tool... &Eszköz hozzáadása… Add an application to the list of tools. Egy alkalmazás hozzáadása az eszközök listához. &Default &Alapértelmezett Set the view mode back to the default. Nézetmód visszaállítása az alapértelmezettre. &Setup &Szerkesztés Set the view mode to Setup. Nézetmód váltása a Beállítás módra. &Live &ÉlÅ‘ adás Set the view mode to Live. Nézetmód váltása az ÉlÅ‘ módra. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Már letölthetÅ‘ az OpenLP %s verziója (jelenleg a %s verzió fut). A legfrissebb verzió a http://openlp.org/ oldalról szerezhetÅ‘ be. OpenLP Version Updated OpenLP verziófrissítés OpenLP Main Display Blanked Elsötétített OpenLP fÅ‘ képernyÅ‘ The Main Display has been blanked out A fÅ‘ képernyÅ‘ el lett sötétítve Default Theme: %s Alapértelmezett téma: %s English Please add the name of your language here Magyar Configure &Shortcuts... &Gyorsbillentyűk beállítása… Open &Data Folder... &Adatmappa megnyitása… Open the folder where songs, bibles and other data resides. A dalokat, bibliákat és egyéb adatokat tartalmazó mappa megnyitása. &Autodetect &Automatikus felismerés Update Theme Images Témaképek frissítése Update the preview images for all themes. Összes téma elÅ‘nézeti képének frissítése. Print the current service. Az aktuális sorrend nyomtatása. L&ock Panels Panelek &zárolása Prevent the panels being moved. Megakadályozza a panelek mozgatását. Re-run First Time Wizard ElsÅ‘ indítás tündér Re-run the First Time Wizard, importing songs, Bibles and themes. ElsÅ‘ indítás tündér újbóli futtatása dalok, bibliák, témák importálásához. Re-run First Time Wizard? Újra futtatható az ElsÅ‘ indítás tündér? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Valóban újra futtatható az ElsÅ‘ indítás tündér? A tündér újbóli futtatása során megváltozhatnak az OpenLP aktuális beállításai, az alapértelmezett téma és új dalok adhatók hozzá a jelenlegi dallistákhoz. Clear List Clear List of recent files Lista törlése Clear the list of recent files. Törli a legutóbbi fájlok listáját. Configure &Formatting Tags... Formázó &címkék beállítása… Export OpenLP settings to a specified *.config file OpenLP beállításainak mentése egy specifikus *.config fájlba Settings Beállítások Import OpenLP settings from a specified *.config file previously exported on this or another machine Az OpenLP beállításainak betöltése egy elÅ‘zÅ‘leg ezen vagy egy másik gépen exportált specifikus *.config fájlból Import settings? Beállítások betöltése? Open File Fájl megnyitása OpenLP Export Settings Files (*.conf) OpenLP exportált beállító fájlok (*.conf) Import settings Importálási beállítások OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Az OpenLP most leáll. Az importált beállítások az OpenLP következÅ‘ indításakor lépnek érvénybe. Export Settings File Exportált beállító fájl OpenLP Export Settings File (*.conf) OpenLP exportált beállító fájl (*.conf) New Data Directory Error Új adatmappa hiba Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Az OpenLP adatok új helyre való másolása folyamatban - %s - Várj a folyamat befejezÅ‘déséig OpenLP Data directory copy failed %s Az OpenLP adatmappa másolása nem sikerül %s General Ãltalános Library Könyvtár Jump to the search box of the current active plugin. Ugrás az aktuális bÅ‘vítmény keresési mezÅ‘jére. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Valóban betölthetÅ‘k a beállítások? A beállítások betöltése tartós változásokat okoz a OpenLP jelenlegi beállításain. Hibás beállítások betöltése rendellenes működést okozhat, vagy akár az OpenLP abnormális megszakadását is. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. A kijelölt fájl nem tűnik érvényes OpenLP beállítás fájlnak. A folyamat megszakad és a változások nem lesznek elmentve. Projector Manager ProjektorkezelÅ‘ Toggle Projector Manager ProjektorkezelÅ‘ átváltása Toggle the visibility of the Projector Manager ProjektorkezelÅ‘ láthatóságának átváltása. Export setting error Exportbeállítási hiba The key "%s" does not have a default value so it will be skipped in this export. A következÅ‘ kulcsnak nincs alapértelmezett értéke, ezért ki lesz hagyva az exportálásból: „%sâ€. An error occurred while exporting the settings: %s Hiba történt a beállítás exportálása közben: %s &Recent Services &Legutóbbi sorrendek &New Service Ú&j sorrend &Open Service Sorrend &megnyitása. &Save Service Sorrend menté&se Save Service &As... S&orrend mentése másként &Manage Plugins &BeépülÅ‘k kezelése Exit OpenLP OpenLP bezárása Are you sure you want to exit OpenLP? Valóban bezárható az OpenLP? &Exit OpenLP OpenLP be&zárása OpenLP.Manager Database Error Adatbázis hiba The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s A betöltés alatt álló adatbázis az OpenLP egy frissebb változatával készült. Az adatbázis verziószáma: %d, míg az OpenLP %d verziót vár el. Az adatbázis nem lesz betöltve. Adatbázis: %s OpenLP cannot load your database. Database: %s Az OpenLP nem képes beolvasni az adatbázist. Adatbázis: %s OpenLP.MediaManagerItem No Items Selected Nincsenek kijelölt elemek &Add to selected Service Item &Hozzáadás a kijelölt sorrendelemhez You must select one or more items to preview. Ki kell jelölni egy elemet az elÅ‘nézethez. You must select one or more items to send live. Ki kell jelölni egy élÅ‘ adásba küldendÅ‘ elemet. You must select one or more items. Ki kell jelölni egy vagy több elemet. You must select an existing service item to add to. Ki kell jelölni egy sorrendelemet, amihez hozzá szeretnél adni. Invalid Service Item Érvénytelen sorrendelem You must select a %s service item. Ki kell jelölni egy %s sorrendelemet. You must select one or more items to add. Ki kell jelölni egy vagy több elemet a hozzáadáshoz. No Search Results Nincs találat Invalid File Type Érvénytelen fájltípus Invalid File %s. Suffix not supported Érvénytelen fájl: %s. Az utótag nem támogatott &Clone &Klónozás Duplicate files were found on import and were ignored. Importálás közben duplikált fájl bukkant elÅ‘, figyelmen kívül lett hagyva. OpenLP.OpenLyricsImportError <lyrics> tag is missing. A <lyrics> címke hiányzik. <verse> tag is missing. A <verse> címke hiányzik. OpenLP.PJLink1 Unknown status Ismeretlen állapot No message Nincs üzenet Error while sending data to projector Hiba az adat projektorhoz való továbbításában Undefined command: Definiálatlan parancs: OpenLP.PlayerTab Players Lejátszók Available Media Players ElérhetÅ‘ médialejátszók Player Search Order Lejátszók keresési sorrendje Visible background for videos with aspect ratio different to screen. A videó mögött látható háttér eltérÅ‘ képernyÅ‘arány esetén. %s (unavailable) %s (elérhetetlen) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" MEGJEGYZÉS: A VLC használatához ezt a verziót szükséges telepíteni: %s version OpenLP.PluginForm Plugin Details BÅ‘vítmény részletei Status: Ãllapot: Active Aktív Inactive Inaktív %s (Inactive) %s (inaktív) %s (Active) %s (aktív) %s (Disabled) %s (letiltott) Manage Plugins BeépülÅ‘k kezelése OpenLP.PrintServiceDialog Fit Page Oldal kitöltése Fit Width Szélesség kitöltése OpenLP.PrintServiceForm Options Beállítások Copy Másolás Copy as HTML Másolás HTML-ként Zoom In Nagyítás Zoom Out Kicsinyítés Zoom Original Eredeti nagyítás Other Options További beállítások Include slide text if available Dia szövegének beillesztése, ha elérhetÅ‘ Include service item notes Sorrendelem megjegyzéseinek beillesztése Include play length of media items Sorrendelem lejátszási hosszának beillesztése Add page break before each text item Oldaltörés hozzáadása minden szöveg elé Service Sheet Szolgálati adatlap Print Nyomtatás Title: Cím: Custom Footer Text: Egyedi lábjegyzet szöveg: OpenLP.ProjectorConstants OK OK General projector error Ãltalános projektor hiba Not connected error Nem csatlakozik hiba Lamp error Lámpa hiba Fan error Ventilátor hiba High temperature detected Magas hÅ‘mérséglet észlelve Cover open detected Nyitott fedél észlelve Check filter EllenÅ‘rizni kell a szűrÅ‘t Authentication Error Azonosítási hiba Undefined Command Definiálatlan parancs Invalid Parameter Érvénytelen paraméter Projector Busy A projektor foglalt Projector/Display Error Projektor/KépernyÅ‘ hiba Invalid packet received Érvénytelen fogadott csomag Warning condition detected FigyelmeztetÅ‘ állapot észlelve Error condition detected Hiba állapot észlelve PJLink class not supported A PJLink osztály nem támogatott Invalid prefix character Érvénytelen elÅ‘tag karakter The connection was refused by the peer (or timed out) A kapcsolatot a partner elutasította (vagy lejárt) The remote host closed the connection A távoli gép lezárta a kapcsolatot The host address was not found A gép címe nem található The socket operation failed because the application lacked the required privileges A foglalatművelet hibába ütközött, mivel az alkalmazás nem rendelkezik megfelelÅ‘ jogosultságokkal The local system ran out of resources (e.g., too many sockets) A helyi rendszer erÅ‘forrási elfogytak (pl. túl sok foglalat) The socket operation timed out A foglalatművelet idÅ‘túllépés miatt megszakadt The datagram was larger than the operating system's limit A datagram nagyobb az operációs rendszer által kezeltnél An error occurred with the network (Possibly someone pulled the plug?) Hiba a hálózatban (Valaki esetleg kihúzta a csatlakozót?) The address specified with socket.bind() is already in use and was set to be exclusive A socket.bind() által meghatározott cím már használatban van és kizárólagosnak lett jelölve The address specified to socket.bind() does not belong to the host A socket.bind() által meghatározott cím nem tartozik a géphez The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) A kért foglalatműveletet nem támogatja a helyi operációs rendszer (pl. hiányzik az IPv6 támogatás) The socket is using a proxy, and the proxy requires authentication A foglalat proxyt használ és a proxy felhasználói azonosítást igényel The SSL/TLS handshake failed Az SSL/TLS kézfogás meghiúsult The last operation attempted has not finished yet (still in progress in the background) Az utolsó művelet nem fejezÅ‘dött be (még fut a háttérben) Could not contact the proxy server because the connection to that server was denied Nem lehet csatlakozni a proxy szerverhez, mivel a kapcsolatot a szerver elutasította The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) A proxy szerverhez való kapcsolódás váratlanul lezárult (mielÅ‘tt a végsÅ‘ partnerrel kiépült volna) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. A proxy szerverhez való kapcsolódás idÅ‘túllépés miatt megszakadt vagy a proxy szerver válasza megállt felhasználói azonosítás fázisban. The proxy address set with setProxy() was not found A setProxy() által megadott proxy cím nem található An unidentified error occurred Nem definiált hiba történt Not connected Nem csatlakozik hiba Connecting Kapcsolódás Connected Kapcsolódva Getting status Ãllapot lekérdezése Off Kikapcsolva Initialize in progress ElÅ‘készítés folyamatban Power in standby Energiatakarékos állapotban Warmup in progress Bemelegítés folyamatban Power is on Bekapcsolva Cooldown in progress Lehűtés folyamatban Projector Information available Projektorinformációk elérhetÅ‘k Sending data Adatok küldése Received data Adatok fogadása The connection negotiation with the proxy server failed because the response from the proxy server could not be understood A kapcsolódás egyeztetése sikertelen a proxy szerverrel, mivel a proxy szerver válasza értelmezhetetlen OpenLP.ProjectorEdit Name Not Set Név nincs beállítva You must enter a name for this entry.<br />Please enter a new name for this entry. Meg kell adni egy új nevet a bejegyzéshez. Duplicate Name Duplikált név OpenLP.ProjectorEditForm Add New Projector Új projektor hozzáadása Edit Projector Projektor szerkesztése IP Address IP cím Port Number Portszám PIN PIN Name Név Location Hely Notes Jegyzetek Database Error Adatbázis hiba There was an error saving projector information. See the log for the error Hiba a projektorinformációk mentése közben. További információk a naplóban. OpenLP.ProjectorManager Add Projector Projektor hozzáadása Add a new projector Új projektor hozzáadása Edit Projector Projektor szerkesztése Edit selected projector A kijelölt projektor szerkesztése Delete Projector Projektor törlése Delete selected projector A kijelölt projektor törlése Select Input Source Bemeneti forrás kijelölése Choose input source on selected projector Adj meg egy bemeneti forrást a kijelölt projektor számára View Projector Projektor megtekintése View selected projector information Kijelölt projektorinformáció megtekintése Connect to selected projector Kapcsolódás a kijelölt projektorhoz Connect to selected projectors Kapcsolódás a kijelölt projektorokhoz Disconnect from selected projectors Lekapcsolódás a kijelölt projektorról Disconnect from selected projector Lekapcsolódás a kijelölt projektorokról Power on selected projector Kijelölt projektor bekapcsolása Standby selected projector Kijelölt projektor takarékba Put selected projector in standby Kijelölt projektor energiatakarékos állapotba küldése Blank selected projector screen Kijelölt projektor elsötítése Show selected projector screen Kijelölt projektor képének felkapcsolása &View Projector Information Projektorinformációk &megtekintése &Edit Projector Projektor &szerkesztése &Connect Projector &Kapcsolódás a projektorhoz D&isconnect Projector &Lekapcsolódás a projektorról Power &On Projector Projektor &bekapcsolása Power O&ff Projector Projektor &kikapcsolása Select &Input &Bemenet kijelölése Edit Input Source Bemeneti forrás szerkesztése &Blank Projector Screen Projektor &elsötítése &Show Projector Screen Projektor &kivilágítása &Delete Projector Projektor &törlése Name Név IP IP Port Portszám Notes Jegyzetek Projector information not available at this time. Projektorinformációk jelenleg nem állnak rendelkezésre. Projector Name Projektor neve Manufacturer Gyártó Model Modell Other info További információ Power status Üzemállapot Shutter is Zár… Closed Bezárva Current source input is Aktuális bemenet: Lamp Lámpa On Bekapcsolva Off Kikapcsolva Hours Óra No current errors or warnings Nincsenek hibák vagy figyelmeztetések Current errors/warnings Aktuális hibák és figyelmeztetések Projector Information Projektorinformációk No message Nincs üzenet Not Implemented Yet Nincs megvalósítva még Delete projector (%s) %s? TörölhetÅ‘ a projektor: (%s) %s? Are you sure you want to delete this projector? Valóban törölhetÅ‘ a projektor? OpenLP.ProjectorPJLink Fan HűtÅ‘ Lamp Lámpa Temperature HÅ‘mérséglet Cover FedÅ‘ Filter SzűrÅ‘ Other Más OpenLP.ProjectorTab Projector Projektor Communication Options Kommunikációs beállítások Connect to projectors on startup Indításkor kapcsolódás a projektorokhoz Socket timeout (seconds) Foglalat idÅ‘túllépés (másodperc) Poll time (seconds) Szavazási idÅ‘ (másodperc) Tabbed dialog box Párbeszédablak fülekkel Single dialog box Egyszerű párbeszédablak OpenLP.ProjectorWizard Duplicate IP Address Duplikált IP cím Invalid IP Address Érvénytelen IP cím Invalid Port Number Érvénytelen portszám OpenLP.ScreenList Screen KépernyÅ‘ primary elsÅ‘dleges OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Kezdés</strong>: %s <strong>Length</strong>: %s <strong>Hossz</strong>: %s [slide %d] [%d dia] OpenLP.ServiceItemEditForm Reorder Service Item Sorrendelemek újrarendezése OpenLP.ServiceManager Move to &top Mozgatás &felülre Move item to the top of the service. Elem mozgatása a sorrend elejére. Move &up Mozgatás f&eljebb Move item up one position in the service. Elem mozgatása a sorrendben eggyel feljebb. Move &down Mozgatás &lejjebb Move item down one position in the service. Elem mozgatása a sorrendben eggyel lejjebb. Move to &bottom Mozgatás &alulra Move item to the end of the service. Elem mozgatása a sorrend végére. &Delete From Service &Törlés a sorrendbÅ‘l Delete the selected item from the service. Kijelölt elem törlése a sorrendbÅ‘l. &Add New Item Új elem &hozzáadása &Add to Selected Item &Hozzáadás a kijelölt elemhez &Edit Item &Elem szerkesztése &Reorder Item Elem újra&rendezése &Notes &Jegyzetek &Change Item Theme Elem témájának &módosítása File is not a valid service. A fájl nem érvényes sorrend. Missing Display Handler Hiányzó képernyÅ‘kezelÅ‘ Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelÅ‘, amely megjelenítené Your item cannot be displayed as the plugin required to display it is missing or inactive Az elemet nem lehet megjeleníteni, mert a bÅ‘vítmény, amely kezelné, hiányzik vagy inaktív &Expand all Mind &kibontása Expand all the service items. Minden sorrendben lévÅ‘ elem kibontása. &Collapse all Mind össze&csukása Collapse all the service items. Minden sorrendben lévÅ‘ elem összecsukása. Open File Fájl megnyitása Moves the selection down the window. A kijelölést lejjebb mozgatja az ablakban. Move up Mozgatás feljebb Moves the selection up the window. A kijelölést feljebb mozgatja az ablakban. Go Live ÉlÅ‘ adásba Send the selected item to Live. A kijelölt elem élÅ‘ adásba küldése. &Start Time &KezdÅ‘ idÅ‘pont Show &Preview &ElÅ‘nézet megjelenítése Modified Service Módosított sorrend The current service has been modified. Would you like to save this service? Az aktuális sorrend módosult. Szeretnéd elmenteni? Custom Service Notes: Egyedi sorrendelem-jegyzetek: Notes: Jegyzetek: Playing time: Lejátszási idÅ‘: Untitled Service Névtelen sorrend File could not be opened because it is corrupt. A fájl nem nyitható meg, mivel sérült. Empty File Üres fájl This service file does not contain any data. A szolgálati sorrendfájl nem tartalmaz semmilyen adatot. Corrupt File Sérült fájl Load an existing service. Egy meglévÅ‘ szolgálati sorrend betöltése. Save this service. Sorrend mentése. Select a theme for the service. Jelöljön ki egy témát a sorrendhez. Slide theme Dia témája Notes Jegyzetek Edit Szerkesztés Service copy only A sorrend csak másolható Error Saving File Ãllománymentési hiba There was an error saving your file. Hiba történt az állomány mentésekor. Service File(s) Missing Hiányzó sorrendfájl &Rename... Ãt&nevezés Create New &Custom Slide Új &speciális dia létrehozása &Auto play slides Automatikus diavetítés Auto play slides &Loop Automatikus &ismétlÅ‘dÅ‘ diavetítés Auto play slides &Once Automatikus &egyszeri diavetítés &Delay between slides &Diák közötti késleltetés OpenLP Service Files (*.osz *.oszl) OpenLP sorrendfájlok (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP sorrendfájlok (*.osz *.oszl);; OpenLP sorrendfájlok - egyszerű (*.oszl) OpenLP Service Files (*.osz);; OpenLP sorrendfájlok (*.osz);; File is not a valid service. The content encoding is not UTF-8. A fájl nem érvényes sorrend. A tartalom kódolása nem UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. A megnyitni próbált sorrendfájl régi formátumú. Legalább OpenLP 2.0.2-val kell elmenteni. This file is either corrupt or it is not an OpenLP 2 service file. A fájl vagy sérült vagy nem OpenLP 2 szolgálati sorrendfájl. &Auto Start - inactive &Automatikus indítás - inaktív &Auto Start - active &Automatikus indítás - aktív Input delay Bemeneti késleltetés Delay between slides in seconds. Diák közötti késleltetés másodpercben. Rename item title Elem címének átnevezése Title: Cím: An error occurred while writing the service file: %s Hiba történt a szolgálati sorrendfájl mentése közben: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. A következÅ‘ fájlok hiányoznak a sorrendbÅ‘l: %s Ezen fájlok el lesznek távolítva, ha folytatódik a mentés. OpenLP.ServiceNoteForm Service Item Notes Sorrendelemjegyzet OpenLP.SettingsForm Configure OpenLP OpenLP beállítása OpenLP.ShortcutListDialog Action Parancs Shortcut Gyorsbillentyű Duplicate Shortcut Azonos gyorsbillentyű The shortcut "%s" is already assigned to another action, please use a different shortcut. A gyorsbillentyű már foglalt: %s Alternate Alternatív Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Jelölj ki egy parancsot és kattints egyenként az egyik alul található gombra az elsÅ‘dleges vagy alternatív gyorsbillentyű elfogásához. Default Alapértelmezett Custom Egyéni Capture shortcut. Gyorsbillentyű elfogása. Restore the default shortcut of this action. Az eredeti gyorsbillentyű visszaállítása. Restore Default Shortcuts Alapértelmezett gyorsbillentyűk visszaállítása Do you want to restore all shortcuts to their defaults? Valóban minden gyorsbillentyű visszaállítandó az alapértelmezettjére? Configure Shortcuts Gyorsbillentyűk beállítása OpenLP.SlideController Hide Elrejtés Go To Ugrás Blank Screen KépernyÅ‘ elsötétítése Blank to Theme Elsötétítés a témára Show Desktop Asztal megjelenítése Previous Service ElÅ‘zÅ‘ sorrend Next Service KövetkezÅ‘ sorrend Escape Item Kilépés az elembÅ‘l Move to previous. Mozgatás az elÅ‘zÅ‘re. Move to next. Mozgatás a következÅ‘re. Play Slides Diák vetítése Delay between slides in seconds. Diák közötti késleltetés másodpercben. Move to live. ÉlÅ‘ adásba küldés. Add to Service. Hozzáadás a sorrendhez. Edit and reload song preview. Szerkesztés és az dal elÅ‘nézetének újraolvasása. Start playing media. Médialejátszás indítása. Pause audio. Hang szüneteltetése. Pause playing media. Médialejátszás leállítása. Stop playing media. Médialejátszás szüneteltetése. Video position. Videó pozíciója. Audio Volume. HangerÅ‘. Go to "Verse" Ugrás a „versszakra†Go to "Chorus" Ugrás a „refrénre†Go to "Bridge" Ugrás a „hídra†Go to "Pre-Chorus" Ugrás az „elÅ‘refrénre†Go to "Intro" Ugrás a „bevezetésre†Go to "Ending" Ugrás a „lezárásra†Go to "Other" Ugrás a „másra†Previous Slide ElÅ‘zÅ‘ dia Next Slide KövetkezÅ‘ dia Pause Audio Hang szüneteltetése Background Audio Háttérzene Go to next audio track. Ugrás a következÅ‘ zenei számra. Tracks Zenei számok OpenLP.SourceSelectForm Select Projector Source Projektor forrás kijelölése Edit Projector Source Text Projektor forrásszöveg szerkesztése Ignoring current changes and return to OpenLP Aktuális módosítások elvetése és visszatérés az OpenLP-be. Delete all user-defined text and revert to PJLink default text Minden felhasználó által definiált szöveg törlése és visszatérés a PJLink alapértelmezett szövegéhez Discard changes and reset to previous user-defined text Módosítások elvetése és visszatérés az elÅ‘zÅ‘, felhasználó által definiált szöveghez Save changes and return to OpenLP Módosítások mentése és visszatérés az OpenLP-be Delete entries for this projector A projektor bejegyzéseinek törlése Are you sure you want to delete ALL user-defined source input text for this projector? Valóban törölhetÅ‘ MINDEN felhasználó által definiált forrás bementi szöveg ehhez a projektorhoz? OpenLP.SpellTextEdit Spelling Suggestions Helyesírási javaslatok Formatting Tags Formázó címkék Language: Nyelv: OpenLP.StartTimeForm Theme Layout Téma elrendezése The blue box shows the main area. Kék keret jelzi a fÅ‘ tartalmat. The red box shows the footer. Vörös keret jelzi a láblécet. OpenLP.StartTime_form Item Start and Finish Time Elem kezdÅ‘- és befejezÅ‘idÅ‘ Hours: Óra: Minutes: Perc: Seconds: Másodperc: Start Kezdés Finish Befejezés Length Hosszúság Time Validation Error Időérvényességi hiba Finish time is set after the end of the media item A médiaelem befejezÅ‘ idÅ‘pontja késÅ‘bbre van állítva van, mint a hossza Start time is after the finish time of the media item A médiaelem kezdÅ‘ idÅ‘pontja késÅ‘bbre van állítva, mint a befejezése OpenLP.ThemeForm (approximately %d lines per slide) (kb. %d sor diánként) OpenLP.ThemeManager Create a new theme. Új téma létrehozása. Edit Theme Téma szerkesztése Edit a theme. Egy téma szerkesztése. Delete Theme Téma törlése Delete a theme. Egy téma törlése. Import Theme Téma importálása Import a theme. Egy téma importálása. Export Theme Téma exportálása Export a theme. Egy téma exportálása. &Edit Theme Téma sz&erkesztése &Delete Theme Téma &törlése Set As &Global Default Beállítás &globális alapértelmezetté %s (default) %s (alapértelmezett) You must select a theme to edit. Ki kell jelölni egy témát a szerkesztéshez. You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. You have not selected a theme. Nincs kijelölve egy téma sem. Save Theme - (%s) Téma mentése – (%s) Theme Exported Téma exportálva Your theme has been successfully exported. A téma sikeresen exportálásra került. Theme Export Failed A téma exportálása nem sikerült Select Theme Import File Importálandó téma fájl kijelölése File is not a valid theme. Nem érvényes témafájl. &Copy Theme Téma &másolása &Rename Theme Téma át&nevezése &Export Theme Téma e&xportálása You must select a theme to rename. Ki kell jelölni egy témát az átnevezéséhez. Rename Confirmation Ãtnevezési megerÅ‘sítés Rename %s theme? A téma átnevezhetÅ‘: %s? You must select a theme to delete. Ki kell jelölni egy témát a törléshez. Delete Confirmation Törlés megerÅ‘sítése Delete %s theme? TörölhetÅ‘ ez a téma: %s? Validation Error Érvényességi hiba A theme with this name already exists. Ilyen fájlnéven már létezik egy téma. Copy of %s Copy of <theme name> %s másolata Theme Already Exists A téma már létezik Theme %s already exists. Do you want to replace it? Ez a téma már létezik: %s. Szeretnéd felülírni? The theme export failed because this error occurred: %s A téma exportja sikertelen a következÅ‘ hiba miatt: %s OpenLP Themes (*.otz) OpenLP témák (*.otz) %s time(s) by %s IdÅ‘: %s/%s Unable to delete theme A témát nem lehet törölni. Theme is currently used %s A témát használja: %s OpenLP.ThemeWizard Theme Wizard Téma tündér Welcome to the Theme Wizard Üdvözlet a téma tündérben Set Up Background Háttér beállítása Set up your theme's background according to the parameters below. A téma háttere az alábbi paraméterekkel állítható be. Background type: Háttér típusa: Gradient Színátmenet Gradient: Színátmenet: Horizontal Vízszintes Vertical FüggÅ‘leges Circular Körkörös Top Left - Bottom Right Bal felsÅ‘ sarokból jobb alsó sarokba Bottom Left - Top Right Bal alsó sarokból jobb felsÅ‘ sarokba Main Area Font Details FÅ‘ tartalom betűkészletének jellemzÅ‘i Define the font and display characteristics for the Display text A fÅ‘ szöveg betűkészlete és megjelenési tulajdonságai Font: Betűkészlet: Size: Méret: Line Spacing: Sorköz: &Outline: &Körvonal: &Shadow: &Ãrnyék: Bold Félkövér Italic DÅ‘lt Footer Area Font Details Lábléc betűkészletének jellemzÅ‘i Define the font and display characteristics for the Footer text A lábléc szöveg betűkészlete és megjelenési tulajdonságai Text Formatting Details Szövegformázás jellemzÅ‘i Allows additional display formatting information to be defined További megjelenési formázások Horizontal Align: Vízszintes igazítás: Left Balra zárt Right Jobbra zárt Center Középre igazított Output Area Locations Pozíciók &Main Area &FÅ‘ szöveg &Use default location &Alapértelmezett helyen X position: X pozíció: px px Y position: Y pozíció: Width: Szélesség: Height: Magasság: Use default location Alapértelmezett helyen Theme name: Téma neve: Edit Theme - %s Téma szerkesztése – %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. A tündér segít témákat létrehozni és módosítani. Kattints az alábbi KövetkezÅ‘ gombra a folyamat elsÅ‘ lépésének indításhoz, a háttér beállításához. Transitions: Ãtmenetek: &Footer Area &Lábléc Starting color: KezdÅ‘ szín: Ending color: BefejezÅ‘ szín: Background color: Háttérszín: Justify Sorkizárt Layout Preview Elrendezés elÅ‘nézete Transparent Ãtlátszó Preview and Save ElÅ‘nézet és mentés Preview the theme and save it. Téma elÅ‘nézete és mentése. Background Image Empty Háttérkép üres Select Image Kép kijelölése Theme Name Missing Téma neve nincs megadva There is no name for this theme. Please enter one. A témának nincs neve, meg kell adni. Theme Name Invalid Érvénytelen témanév Invalid theme name. Please enter one. A téma neve érvénytelen, érvényeset kell megadni. Solid color Homogén szín color: Szín: Allows you to change and move the Main and Footer areas. A fÅ‘ szöveg és a lábléc helyzetének mozgatása. You have not selected a background image. Please select one before continuing. Nincs kijelölt háttérkép. Meg kell adni egyet a folytatás elÅ‘tt. OpenLP.ThemesTab Global Theme Globális téma Theme Level Téma szint S&ong Level &Dal szint Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálati sorrendhez beállított alkalmazása. Ha a sorrendhez sincs téma beállítva, akkor a globális téma alkalmazása. &Service Level Szolgálati &sorrend szint Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. A szolgálati sorrendhez beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálati sorrendhez nincs téma beállítva, akkor a globális téma alkalmazása. &Global Level &Globális szint Use the global theme, overriding any themes associated with either the service or the songs. A globális téma alkalmazása, vagyis a szolgálati sorrendhez, ill. a dalokhoz beállított témák felülírása. Themes Témák Universal Settings Univerzális beállítások &Wrap footer text Lábjegyzetszöveg megtörése OpenLP.Ui Delete the selected item. A kijelölt elem törlése. Move selection up one position. A kijelölés eggyel feljebb helyezése. Move selection down one position. A kijelölés eggyel lejjebb helyezése. &Vertical Align: &FüggÅ‘leges igazítás: Finished import. Az importálás befejezÅ‘dött. Format: Formátum: Importing Importálás Importing "%s"... Importálás „%sâ€â€¦ Select Import Source Importálandó forrás kijelölése Select the import format and the location to import from. Jelöld ki az importálás formátumát és az importálás helyét. Open %s File %s fájl megnyitása %p% %p% Ready. Kész. Starting import... Importálás indítása… You need to specify at least one %s file to import from. A file type e.g. OpenSong Meg kell adni legalább egy %s fájlt az importáláshoz. Welcome to the Bible Import Wizard Üdvözlet a Bibliaimportáló tündérben Welcome to the Song Export Wizard Üdvözlet a dalexportáló tündérben Welcome to the Song Import Wizard Üdvözlet a dalimportáló tündérben Author Singular SzerzÅ‘ Authors Plural SzerzÅ‘k © Copyright symbol. © Song Maintenance Dalok kezelése Topic Singular Témakör Topics Plural Témakörök Title and/or verses not found A cím és/vagy a versszak nem található XML syntax error XML szintaktikai hiba Welcome to the Bible Upgrade Wizard Üdvözlet a BibliafrissítÅ‘ tündérben Open %s Folder %s mappa megnyitása You need to specify one %s file to import from. A file type e.g. OpenSong Meg kell adni egy %s fájlt az importáláshoz. You need to specify one %s folder to import from. A song format e.g. PowerSong Meg kell adni egy %s mappát az importáláshoz. Importing Songs Dalok importálása Welcome to the Duplicate Song Removal Wizard Üdvözlet a duplikált dalok eltávolítása tündérben Written by SzerzÅ‘ Author Unknown ismeretlen szerzÅ‘ About Névjegy &Add &Hozzáadás Add group Csoport hozzáadása Advanced Haladó All Files Minden fájl Automatic Automatikus Background Color Háttérszín Bottom Alulra Browse... Tallózás… Cancel Mégsem CCLI number: CCLI szám: Create a new service. Új szolgálati sorrend létrehozása. Confirm Delete Törlés megerÅ‘sítése Continuous Folytonos Default Alapértelmezett Default Color: Alapértelmezett szín: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Sorrend %Y-%m-%d %H-%M &Delete &Törlés Display style: Megjelenítési stílus: Duplicate Error Duplikátum hiba &Edit &Szerkesztés Empty Field Üres mezÅ‘ Error Hiba Export Exportálás File Fájl File Not Found A fájl nem található File %s not found. Please try selecting it individually. %s fájl nem található. Meg lehet próbálni egyenként kijelölni a fájlokat. pt Abbreviated font pointsize unit pt Help Súgó h The abbreviated unit for hours ó Invalid Folder Selected Singular Érvénytelen kijelölt mappa Invalid File Selected Singular Érvénytelen kijelölt állomány Invalid Files Selected Plural Érvénytelen kijelölt állományok Image Kép Import Importálás Layout style: Elrendezés: Live ÉlÅ‘ Live Background Error ÉlÅ‘ háttér hiba Live Toolbar ÉlÅ‘ eszköztár Load Betöltés Manufacturer Singular Gyártó Manufacturers Plural Gyártók Model Singular Modell Models Plural Modellek m The abbreviated unit for minutes p Middle Középre New Új New Service Új sorrend New Theme Új téma Next Track KövetkezÅ‘ szám No Folder Selected Singular Nincs kijelölt mappa No File Selected Singular Nincs kijelölt fájl No Files Selected Plural Nincsenek kijelölt fájlok No Item Selected Singular Nincs kijelölt elem No Items Selected Plural Nincsenek kijelölt elemek OpenLP is already running. Do you wish to continue? Az OpenLP már fut. Folytatható? Open service. Sorrend megnyitása. Play Slides in Loop IsmétlÅ‘dÅ‘ diavetítés Play Slides to End Diavetítés a végéig Preview ElÅ‘nézet Print Service Szolgálati sorrend nyomtatása Projector Singular Projektor Projectors Plural Projektorok Replace Background Háttér cseréje Replace live background. ÉlÅ‘ adás hátterének cseréje. Reset Background Háttér visszaállítása Reset live background. ÉlÅ‘ adás hátterének visszaállítása. s The abbreviated unit for seconds mp Save && Preview Mentés és elÅ‘nézet Search Keresés Search Themes... Search bar place holder text Témák keresése… You must select an item to delete. Ki kell jelölni egy törlendÅ‘ elemet. You must select an item to edit. Ki kell jelölni egy szerkesztendÅ‘ elemet. Settings Beállítások Save Service Sorrend mentése Service Sorrend Optional &Split &Feltételes törés Split a slide into two only if it does not fit on the screen as one slide. Diák kettéválasztása csak akkor, ha nem fér ki a képernyÅ‘n egy diaként. Start %s Kezdés %s Stop Play Slides in Loop IsmétlÅ‘dÅ‘ vetítés megállítása Stop Play Slides to End Vetítés megállítása Theme Singular Téma Themes Plural Témák Tools Eszközök Top Felülre Unsupported File Nem támogatott fájl Verse Per Slide Egy vers diánként Verse Per Line Egy vers soronként Version Verzió View Nézet View Mode Nézetmód CCLI song number: CCLI dal száma: Preview Toolbar ElÅ‘nézet eszköztár OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Az élÅ‘ háttér cseréje nem elérhetÅ‘, ha a WebKit lejátszó tiltva van. Songbook Singular Énekeskönyv Songbooks Plural Énekeskönyvek OpenLP.core.lib %s and %s Locale list separator: 2 items %s és %s %s, and %s Locale list separator: end %s, és %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface ForráskijelölÅ‘ párbeszédpanel felület PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Bemutató bÅ‘vítmény</strong><br />A bemutató bÅ‘vítmény különbözÅ‘ külsÅ‘ programok segítségével bemutatók megjelenítését teszi lehetÅ‘vé. A prezentációs programok egy listából választhatók ki. Presentation name singular Bemutató Presentations name plural Bemutatók Presentations container title Bemutatók Load a new presentation. Új bemutató betöltése. Delete the selected presentation. A kijelölt bemutató törlése. Preview the selected presentation. A kijelölt bemutató elÅ‘nézete. Send the selected presentation live. A kijelölt bemutató élÅ‘ adásba küldése. Add the selected presentation to the service. A kijelölt bemutató hozzáadása a sorrendhez. PresentationPlugin.MediaItem Select Presentation(s) Bemutatók kijelölése Automatic Automatikus Present using: Bemutatás ezzel: File Exists A fájl létezik A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. This type of presentation is not supported. Ez a bemutató típus nem támogatott. Presentations (%s) Bemutatók (%s) Missing Presentation Hiányzó bemutató The presentation %s is incomplete, please reload. A bemutató hiányos, újra kell tölteni: %s. The presentation %s no longer exists. A bemutató már nem létezik: %s. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Hiba történt a Powerpoint integrációban, ezért a prezentáció leáll. Újraindítással lehet újra bemutatni a prezentációt. PresentationPlugin.PresentationTab Available Controllers ElérhetÅ‘ vezérlÅ‘k %s (unavailable) %s (elérhetetlen) Allow presentation application to be overridden A bemutató program felülírásának engedélyezése PDF options PDF beállítások Use given full path for mudraw or ghostscript binary: A megadott teljes útvonal alkalmazása a mudraw vagy a ghostscript bináris számára: Select mudraw or ghostscript binary. Jelöld ki a mudraw vagy a ghostscript binárist. The program is not ghostscript or mudraw which is required. A megadott program nem a szükséges ghostscript vagy a mudraw. PowerPoint options PowerPoint beállítások Clicking on a selected slide in the slidecontroller advances to next effect. A diakezelÅ‘ben a kijelölt diára való kattintással elÅ‘relép a következÅ‘ hatásra. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Hagyjuk, hogy a PowerPoint kezelje a bemutató ablak méretét és pozícióját (Windows 8 átméretezési hiba megkerülése). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Távirányító bÅ‘vítmény</strong><br />A távirányító bÅ‘vítmény egy böngészÅ‘ vagy egy távoli API segítségével lehetÅ‘vé teszi egy másik számítógépen futó OpenLP számára való üzenetküldést. Remote name singular Távirányító Remotes name plural Távirányítók Remote container title Távirányító Server Config Change Szerver beállítások módosítása Server configuration changes will require a restart to take effect. A szerver beállítások módosítása után újraindítás szükséges a változások érvényre jutásához. RemotePlugin.Mobile Service Manager SorrendkezelÅ‘ Slide Controller DiakezelÅ‘ Alerts Riasztások Search Keresés Home KezdÅ‘lap Refresh Frissítés Blank Elsötétítés Theme Téma Desktop Asztal Show Vetítés Prev ElÅ‘zÅ‘ Next KövetkezÅ‘ Text Szöveg Show Alert Értesítés megjelenítése Go Live ÉlÅ‘ adásba Add to Service Hozzáadás a sorrendhez Add &amp; Go to Service Hozzáadás és ugrás a sorrendre No Results Nincs találat Options Beállítások Service Sorrend Slides Diák Settings Beállítások Remote Távirányító Stage View Színpadi nézet Live View ÉlÅ‘ nézet RemotePlugin.RemoteTab Serve on IP address: Szolgáltatás IP címe: Port number: Port száma: Server Settings Szerver beállítások Remote URL: Távirányító URL: Stage view URL: Színpadi nézet URL: Display stage time in 12h format IdÅ‘kijelzés a színpadi nézeten 12 órás formában Android App Android alkalmazás Live view URL: ÉlÅ‘ adás nézet URL: HTTPS Server HTTPS szerver Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Nem található SSL tanúsítvány. A HTTPS szervert nem lehet elérni SSL tanúsítvány nélkül. Lásd a súgót a további információkért. User Authentication Felhasználói azonosítás User id: Felhasználói azonosító: Password: Jelszó: Show thumbnails of non-text slides in remote and stage view. ElÅ‘nézetek megjelenítése a nem szövegalapú diák esetén a távoli és a színpadi nézetben. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Szkenneld be a QR kódot vagy kattints az Android alkalmazás <a href="%s">letöltéséhez</a> a Google Play-bÅ‘l. SongUsagePlugin &Song Usage Tracking &Dalstatisztika rögzítése &Delete Tracking Data Rögzített adatok &törlése Delete song usage data up to a specified date. Dalstatisztika adatok törlése egy meghatározott dátumig. &Extract Tracking Data Rögzített adatok &kicsomagolása Generate a report on song usage. Dalstatisztika-jelentés összeállítása. Toggle Tracking Rögzítés Toggle the tracking of song usage. Dalstatisztika rögzítésének átváltása. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Dalstatisztika bÅ‘vítmény</strong><br />Ez a bÅ‘vítmény rögzíti, hogy a dalok mikor lettek vetítve egy élÅ‘ szolgálat vagy istentisztelet során. SongUsage name singular Dalstatisztika SongUsage name plural Dalstatisztika SongUsage container title Dalstatisztika Song Usage Dalstatisztika Song usage tracking is active. A dalstatisztika rögzítésre kerül. Song usage tracking is inactive. A dalstatisztika nincs rögzítés alatt. display megjelenítés printed nyomtatás SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Dalstatisztika adatok törlése Delete Selected Song Usage Events? Valóban törölhetÅ‘k a kijelölt dalstatisztika események? Are you sure you want to delete selected Song Usage data? Valóban törölhetÅ‘k a kijelölt dalstatisztika adatok? Deletion Successful Sikeres törlés Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Ki kell választani egy dátumot, amely elÅ‘tt a statisztika adatok törlése kerülnek. Minden ezelÅ‘tt rögzített adat véglegesen törlÅ‘dni fog. All requested data has been deleted successfully. Minden kért adat sikeresen törlésre került. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Dalstatisztika kicsomagolása Select Date Range IdÅ‘intervallum kijelölése to – Report Location Helyszín jelentése Output File Location Kimeneti fájl elérési útvonala usage_detail_%s_%s.txt Dalstatisztika_%s%s.txt Report Creation Riport készítése Report %s has been successfully created. A riport sikeresen elkészült: %s. Output Path Not Selected Nem kijelölt kimeneti útvonal You have not set a valid output location for your song usage report. Please select an existing path on your computer. Nem létezÅ‘ útvonal lett megadva a dalstatisztika riporthoz. Jelölj ki egy érvényes útvonalat a számítógépen. Report Creation Failed Riportkészítési hiba An error occurred while creating the report: %s Hiba történt a riport készítése közben: %s SongsPlugin &Song &Dal Import songs using the import wizard. Dalok importálása az importálás tündérrel. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Dal bÅ‘vítmény</strong><br />A dal bÅ‘vítmény dalok megjelenítését és kezelését teszi lehetÅ‘vé. &Re-index Songs Dalok újra&indexelése Re-index the songs database to improve searching and ordering. A dalok adatbázisának újraindexelése a keresés és a rendezés javításához. Reindexing songs... Dalok indexelése folyamatban… Arabic (CP-1256) Arab (CP-1256) Baltic (CP-1257) Balti (CP-1257) Central European (CP-1250) Közép-európai (CP-1250) Cyrillic (CP-1251) Cirill (CP-1251) Greek (CP-1253) Görög (CP-1253) Hebrew (CP-1255) Héber (CP-1255) Japanese (CP-932) Japán (CP-932) Korean (CP-949) Koreai (CP-949) Simplified Chinese (CP-936) Egyszerűsített kínai (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Hagyományos kínai (CP-950) Turkish (CP-1254) Török (CP-1254) Vietnam (CP-1258) Vietnami (CP-1258) Western European (CP-1252) Nyugat-európai (CP-1252) Character Encoding Karakterkódolás The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. A kódlap beállítás felelÅ‘s a karakterek helyes megjelenítéséért. Ãltalában az elÅ‘re beállított érték megfelelÅ‘. Please choose the character encoding. The encoding is responsible for the correct character representation. Válaszd ki a karakterkódolást. A kódlap felelÅ‘s a karakterek helyes megjelenítéséért. Song name singular Dal Songs name plural Dalok Songs container title Dalok Exports songs using the export wizard. Dalok exportálása a dalexportáló tündérrel. Add a new song. Új dal hozzáadása. Edit the selected song. A kijelölt dal szerkesztése. Delete the selected song. A kijelölt dal törlése. Preview the selected song. A kijelölt dal elÅ‘nézete. Send the selected song live. A kijelölt dal élÅ‘ adásba küldése. Add the selected song to the service. A kijelölt dal hozzáadása a sorrendhez. Reindexing songs Dalok újraindexelése CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Dalok importálása a CCLI SongSelect szolgáltatásából. Find &Duplicate Songs &Duplikált dalok keresése Find and remove duplicate songs in the song database. Duplikált dalok keresése és eltávolítása az adatbázisból. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Szöveg Music Author who wrote the music of a song Zene Words and Music Author who wrote both lyrics and music of a song Zene és szöveg Translation Author who translated the song Fordítás SongsPlugin.AuthorsForm Author Maintenance SzerzÅ‘k kezelése Display name: Megjelenített név: First name: Keresztnév: Last name: Vezetéknév: You need to type in the first name of the author. Meg kell adni a szerzÅ‘ vezetéknevét. You need to type in the last name of the author. Meg kell adni a szerzÅ‘ keresztnevét. You have not set a display name for the author, combine the first and last names? Nincs megadva a szerzÅ‘ megjelenített neve, legyen előállítva a vezeték és keresztnevébÅ‘l? SongsPlugin.CCLIFileImport The file does not have a valid extension. A fájlnév nem tartalmaz valós kiterjesztést. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Érvénytelen DreamBeam dalfájl. Hiányzik a DreamSong címke. SongsPlugin.EasyWorshipSongImport Administered by %s Adminisztrálta: %s "%s" could not be imported. %s Nem importálható: „%s†%s Unexpected data formatting. Nem várt adatformázás. No song text found. A dalszöveg nem található. [above are Song Tags with notes imported from EasyWorship] [felül találhatók az EasyWorship-bÅ‘l megjegyzésekkel importál dal címkék] This file does not exist. A fájl nem létezik. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Nem található a Songs.MB fájl. Ugyanabban a mappában kell lennie, mint a Songs.DB fájlnak. This file is not a valid EasyWorship database. A fájl nem érvényes EasyWorship adatbázis. Could not retrieve encoding. Nem sikerült letölteni a kódolást. SongsPlugin.EditBibleForm Meta Data Metaadat Custom Book Names Egyedi könyvnevek SongsPlugin.EditSongForm Song Editor DalszerkesztÅ‘ &Title: &Cím: Alt&ernate title: &Alternatív cím: &Lyrics: &Dalszöveg: &Verse order: Versszak&sorrend: Ed&it All &Összes szerkesztése Title && Lyrics Cím és szöveg &Add to Song &Hozzáadás &Remove &Eltávolítás A&dd to Song H&ozzáadás R&emove &Eltávolítás New &Theme Új &téma Copyright Information SzerzÅ‘i jogi információ Comments Megjegyzések Theme, Copyright Info && Comments Téma, © és megjegyzés Add Author SzerzÅ‘ hozzáadása This author does not exist, do you want to add them? Ez a szerzÅ‘ még nem létezik, valóban hozzá kívánja adni? This author is already in the list. A szerzÅ‘ már benne van a listában. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Nincs kijelölve egyetlen szerzÅ‘ sem. Vagy válassz egy szerzÅ‘t a listából, vagy írj az új szerzÅ‘ mezÅ‘be és kattints a Hozzáadás gombra a szerzÅ‘ megjelöléséhez. Add Topic Témakör hozzáadása This topic does not exist, do you want to add it? Ez a témakör még nem létezik, szeretnéd hozzáadni? This topic is already in the list. A témakör már benne van a listában. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Nincs kijelölve egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezÅ‘be és kattints a Hozzáadás gombra a témakör megjelöléséhez. You need to type in a song title. Add meg a dal címét. You need to type in at least one verse. Legalább egy versszakot meg kell adnod. You need to have an author for this song. Egy szerzÅ‘t meg kell adnod ehhez a dalhoz. Linked Audio Fájl Add &File(s) Fájl &hozzáadása Add &Media &Médiafájl hozzáadása Remove &All Fájlok &eltávolítása Open File(s) Fájlok megnyitása <strong>Warning:</strong> Not all of the verses are in use. <strong>Figyelmeztetés:</strong> Nincs minden versszak alkalmazva. <strong>Warning:</strong> You have not entered a verse order. <strong>Figyelmeztetés:</strong> A versszaksorrend nincs megadva. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Nincs érvénytelen versszak: „%(invalid)sâ€. Az érvényes bejegyzések: „%(valid)sâ€. A versszakokat szóközzel elválasztva kell megadni. Invalid Verse Order Érvénytelen versszaksorrend &Edit Author Type SzerzÅ‘&típus szerkesztése Edit Author Type SzerzÅ‘típus szerkesztése Choose type for this author Ki kell jelölni a szerzÅ‘ típusát There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Nincsenek ezeknek megfelelÅ‘ versszakok: „%(invalid)sâ€. Az érvényes bejegyzések: „%(valid)sâ€. A versszakokat szóközzel elválasztva kell megadni. &Manage Authors, Topics, Songbooks SzerzÅ‘, témakör, könyv &kezelése Add &to Song Hozzáadás a &dalhoz Re&move &Eltávolítás Authors, Topics && Songbooks SzerzÅ‘, témakör és könyv Add Songbook Énekeskönyv hozzáadása This Songbook does not exist, do you want to add it? Ez az énekeskönyv még nem létezik, szeretnéd hozzáadni a listához? This Songbook is already in the list. Ez a énekeskönyv már szerepel a listában. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Nincs kijelölve egyetlen énekeskönyv sem. Vagy válassz egy énekeskönyvet a listából, vagy írj az új énekeskönyv mezÅ‘be és kattints a Hozzáadás gombra az énekeskönyv megjelöléséhez. SongsPlugin.EditVerseForm Edit Verse Versszak szerkesztése &Verse type: Versszak &típusa: &Insert &Beszúrás Split a slide into two by inserting a verse splitter. Dia kettéválasztása versszakelválasztó beszúrásával. SongsPlugin.ExportWizardForm Song Export Wizard Dalexportáló tündér Select Songs Dalok kijelölése Check the songs you want to export. Jelöld ki az exportálandó dalokat. Uncheck All Minden kijelölés eltávolítása Check All Mindent kijelöl Select Directory Mappa kijelölése Directory: Mappa: Exporting Exportálás Please wait while your songs are exported. Várj, míg a dalok exportálódnak. You need to add at least one Song to export. Ki kell jelölni legalább egy dalt az exportáláshoz. No Save Location specified Nincs megadva a mentési hely Starting export... Exportálás indítása… You need to specify a directory. Egy mappát kell megadni. Select Destination Folder Célmappa kijelölése Select the directory where you want the songs to be saved. Jelöld ki a mappát, ahová a dalok mentésre kerülnek. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. A tündér segít a dalok szabad és ingyenes <strong>OpenLyrics</strong> formátumba való exportálásában. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Érvénytelen Foilpresenter dalfájl. Versszakok nem találhatók benne. SongsPlugin.GeneralTab Enable search as you type Gépelés közbeni keresés engedélyezése SongsPlugin.ImportWizardForm Select Document/Presentation Files Jelölj ki egy dokumentum vagy egy bemutató fájlokat Song Import Wizard Dalimportáló tündér This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. A tündér segít a különféle formátumú dalok importálásában. Kattints az alábbi KövetkezÅ‘ gombra a folyamat elsÅ‘ lépésének indításhoz, a formátum kijelöléséhez. Generic Document/Presentation Ãltalános dokumentum vagy bemutató Add Files... Fájlok hozzáadása… Remove File(s) Fájlok törlése Please wait while your songs are imported. Kérlek, várj, míg a dalok importálás alatt állnak. Words Of Worship Song Files Words of Worship dalfájlok Songs Of Fellowship Song Files Songs Of Fellowship dalfájlok SongBeamer Files SongBeamer fájlok SongShow Plus Song Files SongShow Plus dalfájlok Foilpresenter Song Files Foilpresenter dalfájlok Copy Másolás Save to File Mentés fájlba The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A Songs of Fellowship importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Az általános dokumentum, ill. bemutató importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. OpenLyrics Files OpenLyrics fájlok CCLI SongSelect Files CCLI SongSelect fájlok EasySlides XML File EasySlides XML fájl EasyWorship Song Database EasyWorship dal adatbázis DreamBeam Song Files DreamBeam dalfájlok You need to specify a valid PowerSong 1.0 database folder. Meg kell adni egy érvényes PowerSong 1.0 adatbázis mappát. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. ElÅ‘bb CSV szövegfájllá kell konvertálni a ZionWorx adatbázist a <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Felhasználói kézikönyv</a> útmutatása szerint. SundayPlus Song Files SundayPlus dalfájlok This importer has been disabled. Ez az importáló le lett tiltva. MediaShout Database MediaShout adatbázis The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A MediaShout importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a „pyodbc†modult. SongPro Text Files SongPro szövegfájlok SongPro (Export File) SongPro (export fájl) In SongPro, export your songs using the File -> Export menu SongPro-ban a Fájl -> Exportálás menüpontban lehet exportálni a dalokat EasyWorship Service File EasyWorship sorrendfájl WorshipCenter Pro Song Files WorshipCenter Pro dalfájlok The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A WorshipCenter Pro importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a „pyodbc†modult. PowerPraise Song Files PowerPraise dalfájlok PresentationManager Song Files PresentationManager dal fájlok ProPresenter 4 Song Files ProPresenter 4 dalfájlok Worship Assistant Files Worship Assistant fájlok Worship Assistant (CSV) Worship Assistant fájlok (CSV) In Worship Assistant, export your Database to a CSV file. A Worship Assistant programban CSV fájlba kell exportálni az adatbázist. OpenLyrics or OpenLP 2 Exported Song OpenLyrics vagy OpenLP 2 exportált dal OpenLP 2 Databases OpenLP 2 adatbázisok LyriX Files LyriX fájlok LyriX (Exported TXT-files) LyriX (exportált TXT fájlok) VideoPsalm Files VideoPsalm fájlok VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s A VideoPsalm énekeskönyvek általában itt találhatóak: %s SongsPlugin.LyrixImport Error: %s Hiba: %s SongsPlugin.MediaFilesForm Select Media File(s) Médiafájlok kijelölése Select one or more audio files from the list below, and click OK to import them into this song. Jelölj ki egy vagy több hangfájlt az alábbi listából és kattints az OK gombra a dalba való importálásukhoz. SongsPlugin.MediaItem Titles Címek Lyrics Dalszöveg CCLI License: CCLI licenc: Entire Song Teljes dal Maintain the lists of authors, topics and books. SzerzÅ‘k, témakörök, könyvek listájának kezelése. copy For song cloning másolat Search Titles... Címek keresése… Search Entire Song... Teljes dal keresése… Search Lyrics... Dalszöveg keresése… Search Authors... SzerzÅ‘k keresése… Are you sure you want to delete the "%d" selected song(s)? Valóban törölhetÅ‘ a kijelöl „%d†dal? Search Songbooks... Énekeskönyvek keresése… SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Nem sikerült megnyitni a MediaShout adatbázist. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Ez nem egy OpenLP 2 daladatbázis. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportálás „%sâ€â€¦ SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Érvénytelen OpenSong dalfájl. Hiányzik a „song†címke. SongsPlugin.PowerSongImport No songs to import. Nincsenek importálható dalok. Verses not found. Missing "PART" header. Versszakok nem találhatók. Hiányzik a „PART†fejléc. No %s files found. A fájlok nem találhatók %s. Invalid %s file. Unexpected byte value. Érvénytelen fájl: %s. Nem várt bájt érték. Invalid %s file. Missing "TITLE" header. Érvénytelen fájl: %s. Hiányzó „TITLE†fejléc. Invalid %s file. Missing "COPYRIGHTLINE" header. Érvénytelen fájl: %s. Hiányzó „COPYRIGHTLINE†fejléc. SongsPlugin.SongBookForm &Name: &Név: &Publisher: &Kiadó: You need to type in a name for the book. Meg kell adni a könyv nevét. Songbook Maintenance Énekeskönyvek kezelése SongsPlugin.SongExportForm Your song export failed. Dalexportálás meghiúsult. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportálás befejezÅ‘dött. Ezen fájlok importálásához majd az <strong>OpenLyrics</strong> importálót vedd igénybe. Your song export failed because this error occurred: %s A dal exportja sikertelen a következÅ‘ hiba miatt: %s SongsPlugin.SongImport copyright szerzÅ‘i jog The following songs could not be imported: A következÅ‘ dalok nem importálhatók: Cannot access OpenOffice or LibreOffice Nem lehet elérni az OpenOffice-t vagy a LibreOffice-t Unable to open file Nem sikerült megnyitni a fájlt File not found A fájl nem található SongsPlugin.SongMaintenanceForm Could not add your author. A szerzÅ‘t nem lehet hozzáadni. This author already exists. Ez a szerzÅ‘ már létezik. Could not add your topic. A témakört nem lehet hozzáadni. This topic already exists. Ez a témakör már létezik. Could not add your book. A könyvet nem lehet hozzáadni. This book already exists. Ez a könyv már létezik. Could not save your changes. A módosításokat nem lehet elmenteni. Could not save your modified author, because the author already exists. A módosított szerzÅ‘t nem lehet elmenteni, mivel már a szerzÅ‘ létezik. Could not save your modified topic, because it already exists. A módosított témakört nem lehet elmenteni, mivel már létezik. Delete Author SzerzÅ‘ törlése Are you sure you want to delete the selected author? Valóban törölhetÅ‘ a kijelölt szerzÅ‘? This author cannot be deleted, they are currently assigned to at least one song. Ezt a szerzÅ‘t nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. Delete Topic Témakör törlése Are you sure you want to delete the selected topic? Valóban törölhetÅ‘ a kijelölt témakör? This topic cannot be deleted, it is currently assigned to at least one song. Ezt a témakört nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. Delete Book Könyv törlése Are you sure you want to delete the selected book? Valóban törölhetÅ‘ a kijelölt könyv? This book cannot be deleted, it is currently assigned to at least one song. Ezt a könyvet nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ez a szerzÅ‘ már létezik: %s. Szeretnéd, hogy a dal – melynek szerzÅ‘je %s – a már létezÅ‘ szerzÅ‘ (%s) dalai közé kerüljön rögzítésre? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ez a témakör már létezik: %s. Szeretnéd, hogy a dal – melynek témaköre: %s – a már létezÅ‘ témakörben (%s) kerüljön rögzítésre? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Ez a könyv már létezik: %s. Szeretnéd, hogy a dal – melynek könyve: %s – a már létezÅ‘ könyvben (%s) kerüljön rögzítésre? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect importáló <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Figyelem:</strong> Internet kapcsolat szükséges a CCLI SongSelect adatbázisból való importáláshoz. Username: Felhasználói név: Password: Jelszó: Save username and password Felhasználói név és jelszó mentése Login Belépés Search Text: Keresett szöveg: Search Keresés Found %s song(s) %s talált dal Logout Kilépés View Nézet Title: Cím: Author(s): SzerzÅ‘(k): Copyright: SzerzÅ‘i jog: CCLI Number: CCLI szám: Lyrics: Dalszöveg: Back Vissza Import Importálás More than 1000 results Több, mint 1000 találat Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. A keresés több, mint 1000 találatod adott, ezért le lett állítva. Pontosabb keresési feltételeket kell megadni. Logging out... Kilépés… Save Username and Password Felhasználói név és jelszó mentése WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. FIGYELMEZTETÉS: A felhasználói név és a jelszó mentése NEM BIZTONSÃGOS, mivel a jelszó EGYSZERŰ SZÖVEGKÉNT lesz mentve. Az Igennel a jelszó mentésre kerül, a Nemmel megszakad a mentés. Error Logging In Bejelentkezési hiba There was a problem logging in, perhaps your username or password is incorrect? Hiba történt a bejelentkezés során. Lehetséges, hogy a felhasználói név vagy a jelszó nem pontos? Song Imported Sikeres dalimportálás Incomplete song Hiányos dal This song is missing some information, like the lyrics, and cannot be imported. A dalból hiányzik néhány lapvetÅ‘ információ, mint pl. a szöveg, így az nem importálható. Your song has been imported, would you like to import more songs? A dal sikeresen importálva lett. Új dalok importálása? Stop Megállítás SongsPlugin.SongsTab Songs Mode Dalmód Display verses on live tool bar Versszakok megjelenítése az élÅ‘ adás eszköztáron Update service from song edit Sorrendben lévÅ‘ példány frissítése a dal módosításakor Import missing songs from service files Hiányzó dalok importálása a szolgálati fájlokból Display songbook in footer Énekeskönyv megjelenítése a láblécben Display "%s" symbol before copyright info „%s†szimbólum megjelenítése a szerzÅ‘i jogi infó elÅ‘tt SongsPlugin.TopicsForm Topic Maintenance Témakörök kezelése Topic name: Témakör neve: You need to type in a topic name. Meg kell adni egy témakörnevet. SongsPlugin.VerseType Verse Versszak Chorus Refrén Bridge Híd Pre-Chorus ElÅ‘refrén Intro Bevezetés Ending Lezárás Other Más SongsPlugin.VideoPsalmImport Error: %s Hiba: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Érvénytelen Words of Worship dalfájl. Hiányzik: „%s†header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Érvénytelen Words of Worship dalfájl. Hiányzik: „%s†string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Hiba a CSV fájl olvasása közben. Line %d: %s %d sor: %s Decoding error: %s Dekódolási hiba: %s File not valid WorshipAssistant CSV format. A fájl nem érvényes WorshipAssistant CSV formátumú. Record %d %d rekord SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Nem lehet csatlakozni a WorshipCenter Pro adatbázishoz. SongsPlugin.ZionWorxImport Error reading CSV file. Hiba a CSV fájl olvasása közben. File not valid ZionWorx CSV format. A fájl nem érvényes ZionWorx CSV formátumú. Line %d: %s %d sor: %s Decoding error: %s Dekódolási hiba: %s Record %d %d rekord Wizard Wizard Tündér This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. A tündér segít eltávolítani a duplikált dalokat az adatbázisból. LehetÅ‘ség van minden potenciális duplikátum dal áttekintésére a törlése elÅ‘tt. Dal nem törlÅ‘dik kifejezett jóváhagyás nélkül. Searching for duplicate songs. Duplikált dalok keresése. Please wait while your songs database is analyzed. Türelem, az adatbázis elemzése folyamatban van. Here you can decide which songs to remove and which ones to keep. Itt adható meg, hogy melyik dal legyen törölve és melyik maradjon meg. Review duplicate songs (%s/%s) Duplikált dalok áttekintése (%s/%s) Information Információ No duplicate songs have been found in the database. Nem találhatóak duplikált dalok az adatbázisban. OpenLP-2.4/resources/i18n/et.ts0000644000175000017500000154117012657640340015333 0ustar raoulraoul AlertsPlugin &Alert &Teade Show an alert message. Teate kuvamine. Alert name singular Teade Alerts name plural Teated Alerts container title Teated <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Teadete plugin</strong><br />Teadete plugin juhib teadete näitamist ekraanil. AlertsPlugin.AlertForm Alert Message Teate sõnum Alert &text: Teate &tekst: &New &Uus &Save &Salvesta Displ&ay &Kuva Display && Cl&ose Kuva && &sulge New Alert Uus teade &Parameter: &Parameeter: No Parameter Found Parameetreid ei leitud You have not entered a parameter to be replaced. Do you want to continue anyway? Sa ei ole sisestanud parameetrit, mida asendada. Kas tahad siiski jätkata? No Placeholder Found Kohahoidjat ei leitud The alert text does not contain '<>'. Do you want to continue anyway? Teate tekst ei sisalda '<>' märke. Kas tahad siiski jätkata? You haven't specified any text for your alert. Please type in some text before clicking New. Sa pole oma teatele teksti lisanud. Enne nupu Uus vajutamist sisesta mingi tekst. AlertsPlugin.AlertsManager Alert message created and displayed. Teate sõnum loodi ja kuvati. AlertsPlugin.AlertsTab Font Font Font name: Fondi nimi: Font color: Teksti värvus: Background color: Tausta värvus: Font size: Teksti suurus: Alert timeout: Teate kestus: BiblesPlugin &Bible &Piibel Bible name singular Piibel Bibles name plural Piiblid Bibles container title Piiblid No Book Found Ühtegi raamatut ei leitud No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Sellest Piiblist ei leitud vastavat raamatut. Kontrolli, kas sa sisestasid raamatu nime õigesti. Import a Bible. Piibli importimine. Add a new Bible. Uue Piibli lisamine. Edit the selected Bible. Valitud Piibli muutmine. Delete the selected Bible. Valitud Piibli kustutamine. Preview the selected Bible. Valitud Piibli eelvaade. Send the selected Bible live. Valitud Piibli saatmine ekraanile. Add the selected Bible to the service. Valitud Piibli lisamine teenistusele. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Piibli plugin</strong><br />Piibli plugin võimaldab kuvada teenistuse ajal eri allikatest piiblisalme. &Upgrade older Bibles &Uuenda vanemad Piiblid Upgrade the Bible databases to the latest format. Piiblite andmebaaside uuendamine uusimasse vormingusse. Genesis 1. Moosese Exodus 2. Moosese Leviticus 3. Moosese Numbers 4. Moosese Deuteronomy 5. Moosese Joshua Joosua Judges Kohtumõistjate Ruth Rutt 1 Samuel 1. Saamueli 2 Samuel 2. Saamueli 1 Kings 1. Kuningate 2 Kings 2. Kuningate 1 Chronicles 1. Ajaraamat 2 Chronicles 2. Ajaraamat Ezra Esra Nehemiah Nehemja Esther Ester Job Iiob Psalms Psalmid Proverbs Õpetussõnad Ecclesiastes Koguja Song of Solomon Ülemlaul Isaiah Jesaja Jeremiah Jeremia Lamentations Nutulaulud Ezekiel Hesekiel Daniel Taaniel Hosea Hoosea Joel Joel Amos Aamos Obadiah Obadja Jonah Joona Micah Miika Nahum Nahum Habakkuk Habakuk Zephaniah Sefanja Haggai Haggai Zechariah Sakarja Malachi Malaki Matthew Matteuse Mark Markuse Luke Luuka John Johannese Acts Apostlite teod Romans Roomlastele 1 Corinthians 1. Korintlastele 2 Corinthians 2. Korintlastele Galatians Galaatlastele Ephesians Efeslastele Philippians Filiplastele Colossians Koloslastele 1 Thessalonians 1. Tessalooniklastele 2 Thessalonians 2. Tessalooniklastele 1 Timothy 1. Timoteosele 2 Timothy 2. Timoteosele Titus Tiitusele Philemon Fileemonile Hebrews Heebrealastele James Jaakobuse 1 Peter 1. Peetruse 2 Peter 2. Peetruse 1 John 1. Johannese 2 John 2. Johannese 3 John 3. Johannese Jude Juuda Revelation Ilmutus Judith Juudit Wisdom Saalomoni tarkuse raamat Tobit Toobit Sirach Siirak Baruch Baaruk 1 Maccabees 1. Makkabite 2 Maccabees 2. Makkabite 3 Maccabees 3. Makkabite 4 Maccabees 4. Makkabite Rest of Daniel Taanieli raamatu lisad Rest of Esther Estri raamatu lisad Prayer of Manasses Manasse palved Letter of Jeremiah Jeremija kiri Prayer of Azariah Asarja palve Susanna Susanna Bel Bel 1 Esdras 1. Esdra 2 Esdras 2. Esdra : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 s V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 S verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 salm verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 salmid - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 kuni , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 ja end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse lõpp BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Sa pead Piibli versioonile määrama nime. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Sa pead Piibli autoriõiguse omaniku määrama. Kui Piibel kuulub üldsuse omandisse (Public domain), siis märgi see vastavalt. Bible Exists Piibel on juba olemas This Bible already exists. Please import a different Bible or first delete the existing one. Piibel on juba olemas. Impordi Piibel teise nimega või kustuta enne olemasolev Piibel. You need to specify a book name for "%s". Pead "%s" jaoks raamatu nime määrama. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Raamatu nimi "%s" ei ole õige. Numbrid võivad asuda ainult alguses ning nende järel peab olema mõni täht. Duplicate Book Name Dubleeriv raamatu nimi The Book Name "%s" has been entered more than once. Raamatu nimi "%s" on juba ühe korra sisestatud. BiblesPlugin.BibleManager Scripture Reference Error Kirjakohaviite tõrge Web Bible cannot be used Veebipiiblit pole võimalik kasutada Text Search is not available with Web Bibles. Tekstiotsing veebipiiblist pole võimalik. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Sa ei sisestanud otsingusõna. Sa võid eraldada võtmesõnad tühikuga, et otsida neid kõiki, või eraldada need komaga, et otsitaks ühte neist. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Praegu pole ühtegi Piiblit paigaldatud. Palun paigalda mõni Piibel importimise nõustaja abil. No Bibles Available Ühtegi Piiblit pole saadaval Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Sisestatud kirjakohaviide pole toetatud või on vigane. Palun veendu, et see vastab ühele järgnevatest mustritest või loe käsiraamatut: Raamat peatükk Raamat peatükk%(range)speatükk Raamat peatükk%(verse)ssalm%(range)ssalm Raamat peatükk%(verse)ssalm%(range)ssalm%(list)ssalm%(range)ssalm Raamat peatükk%(verse)ssalm%(range)ssalm%(list)speatükk%(verse)ssalm%(range)ssalm Raamat peatükk%(verse)ssalm%(range)speatükk%(verse)ssalm BiblesPlugin.BiblesTab Verse Display Salmi kuvamine Only show new chapter numbers Kuvatakse ainult uute peatükkide numbreid Bible theme: Piibli kujundus: No Brackets Ilma sulgudeta ( And ) ( ja ) { And } { ja } [ And ] [ ja ] Note: Changes do not affect verses already in the service. Märkus: Muudatused ei rakendu juba teenistuses olevatele salmidele. Display second Bible verses Piiblit kuvatakse kahes keeles Custom Scripture References Kohandatud kirjakohaviited Verse Separator: Salmide eraldaja: Range Separator: Vahemike eraldaja: List Separator: Loendi eraldaja: End Mark: Lõpu märk: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Võib määrata mitu alternatiivset salmieraldajat. Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. English Estonian Default Bible Language Piibli vaikimisi keel Book name language in search field, search results and on display: Raamatu nimede keel otsinguväljal, otsingutulemustes ja ekraanil: Bible Language Piibli keel Application Language Rakenduse keel Show verse numbers Salminumbrite näitamine BiblesPlugin.BookNameDialog Select Book Name Vali raamatu nimi Current name: Praegune nimi: Corresponding name: Vastav nimi: Show Books From Näidatakse ainult Old Testament Vana testament New Testament Uus testament Apocrypha Apokrüüfid The following book name cannot be matched up internally. Please select the corresponding name from the list. Järgneva raamatu nimele ei leitud vastet. Palun vali õige nimi loetelust. BiblesPlugin.BookNameForm You need to select a book. Pead valima raamatu. BiblesPlugin.CSVBible Importing books... %s Raamatute importimine... %s Importing verses... done. Salmide importimine... valmis. BiblesPlugin.EditBibleForm Bible Editor Piibliredaktor License Details Litsentsi andmed Version name: Versiooni nimi: Copyright: Autoriõigus: Permissions: Lubatud: Default Bible Language Piibli vaikimisi keel Book name language in search field, search results and on display: Raamatu nime keel otsinguväljal, otsingutulemustes ja ekraanil: Global Settings Globaalsätted Bible Language Piibli keel Application Language Rakenduse keel English Estonian This is a Web Download Bible. It is not possible to customize the Book Names. See on veebipiibel. Veebipiibli raamatute nimesid pole võimalik muuta. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Kohandatud raamatunimede kasutamiseks peab metaandmete kaardil või, kui kasutatakse "Globaalsätteid", Piibli lehel OpenLP seadistuse all olema valitud "Piibli keel". BiblesPlugin.HTTPBible Registering Bible and loading books... Piibli registreerimine ja raamatute laadimine... Registering Language... Keele registreerimine... Importing %s... Importing <book name>... Raamatu %s importimine... Download Error Tõrge allalaadimisel There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Valitud salmide allalaadimisel esines viga. Kontrolli oma internetiühendust ning kui see viga kordub, teata sellest veast. Parse Error Parsimise viga There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Sinu salmide vahemiku analüüsimisel esines viga. Kui see viga kordub, siis palun teata sellest veast. BiblesPlugin.ImportWizardForm Bible Import Wizard Piibli importimise nõustaja This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. See nõustaja aitab erinevates vormingutes Piibleid importida. Klõpsa all asuvale edasi nupule, et alustada vormingu valimisest, millest importida. Web Download Veebist allalaadimine Location: Asukoht: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Piibel: Download Options Allalaadimise valikud Server: Server: Username: Kasutajanimi: Password: Parool: Proxy Server (Optional) Proksiserver (valikuline) License Details Litsentsi andmed Set up the Bible's license details. Määra Piibli litsentsi andmed. Version name: Versiooni nimi: Copyright: Autoriõigus: Please wait while your Bible is imported. Palun oota, kuni sinu Piiblit imporditakse. You need to specify a file with books of the Bible to use in the import. Pead määrama faili, mis sisaldab piibliraamatuid, mida tahad importida. You need to specify a file of Bible verses to import. Pead ette andma piiblisalmide faili, mida importida. You need to specify a version name for your Bible. Sa pead Piibli versioonile määrama nime. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Sa pead Piibli autoriõiguse omaniku määrama. Kui Piibel kuulub üldsuse omandisse (Public domain), siis märgi see vastavalt. Bible Exists Piibel on juba olemas This Bible already exists. Please import a different Bible or first delete the existing one. Piibel on juba olemas. Impordi Piibel teise nimega või kustuta enne olemasolev Piibel. Your Bible import failed. Piibli importimine nurjus. CSV File CSV fail Bibleserver Piibliserver Permissions: Lubatud: Bible file: Piibli fail: Books file: Raamatute fail: Verses file: Salmide fail: Registering Bible... Piibli registreerimine... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registreeritud piibel. Pane tähele, et salmid laaditakse alla siis, kui neid vaja on, seetõttu on selle kasutamiseks vaja internetiühendust. Click to download bible list Klõpsa piiblite nimekirja allalaadimiseks Download bible list Laadi alla piiblite nimekiri Error during download Viga allalaadimisel An error occurred while downloading the list of bibles from %s. Piiblite nimekirja allalaadimisel serverist %s esines viga. BiblesPlugin.LanguageDialog Select Language Keele valimine OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei suuda tuvastada selle piiblitõlke keelt. Palun vali keel järgnevast loendist. Language: Keel: BiblesPlugin.LanguageForm You need to choose a language. Pead valima keele. BiblesPlugin.MediaItem Quick Kiirotsing Find: Otsing: Book: Raamat: Chapter: Peatükk: Verse: Salm: From: Algus: To: Kuni: Text Search Tekstiotsing Second: Teine: Scripture Reference Salmiviide Toggle to keep or clear the previous results. Vajuta eelmiste tulemuste säilitamiseks või eemaldamiseks. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Ühe- ja kahekeelseid piiblisalmide otsitulemusi pole võimalik kombineerida. Kas tahad otsingu tulemused kustutada ja alustada uue otsinguga? Bible not fully loaded. Piibel ei ole täielikult laaditud. Information Andmed The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Teine Piibel ei sisalda kõiki salme, mis on peamises Piiblis. Näidatakse ainult neid salme, mis leiduvad mõlemas Piiblis. %d salmi ei kaasatud tulemustesse. Search Scripture Reference... Piibliviite otsing... Search Text... Teksti otsing... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Kas sa kindlasti tahad kustutada "%s" piibli OpenLP-st? Et jälle seda piiblit kasutada, pead selle uuesti importima. Advanced Täpsem BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. See piibli fail ei ole õiges vormingus. OpenSong vormingus piiblid võivad olla pakitud. Enne importimist pead need lahti pakkima. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Anti sobimatu piiblifail. See näeb välja nagu Zefania XML Piibel, seega palun kasuta Zefania importimise valikut. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s importimine... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Kasutamata siltide eemaldamine (võib võtta mõne minuti)... Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s importimine... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Varunduskataloogi valimine Bible Upgrade Wizard Piibli uuendamise nõustaja This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. See nõustaja aitab uuendada olemasolevaid Piibleid eelnevatelt OpenLP 2 versioonidelt. Uuendamise alustamiseks klõpsa edasi. Select Backup Directory Varunduskausta valimine Please select a backup directory for your Bibles Vali oma Piiblitele varunduskataloog Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Eelmised OpenLP 2.0 versioonid ei suuda kasutada uuendatud Piibleid. Sellega luuakse sinu praegustest Piiblistest varukoopia, et sa saaksid failid kopeerida tagasi OpenLP andmekataloogi, kui sa pead minema tagasi OpenLP eelmisele versioonile. Juhised failide taastamiseks leiad <a href="http://wiki.openlp.org/faq">Korduma Kippuvatest Küsimustest</a>. Please select a backup location for your Bibles. Palun vali oma Piiblite varundamise jaoks kataloog. Backup Directory: Varunduskataloog: There is no need to backup my Bibles Pole vajadust mu Piibleid varundada Select Bibles Piiblite valimine Please select the Bibles to upgrade Palun vali Piiblid, mida uuendada Upgrading Uuendamine Please wait while your Bibles are upgraded. Palun oota, kuni Piibleid uuendatakse. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varundamine ei õnnestunud. Piiblite varundamiseks peab sul olema õigus antud kataloogi kirjutada. Upgrading Bible %s of %s: "%s" Failed %s Piibli uuendamine %s-st : "%s" Nurjus Upgrading Bible %s of %s: "%s" Upgrading ... %s Piibli uuendamine %s-st : "%s" Uuendamine... Download Error Tõrge allalaadimisel To upgrade your Web Bibles an Internet connection is required. Veebipiiblite uuendamiseks on vajalik internetiühendus. Upgrading Bible %s of %s: "%s" Upgrading %s ... %s Piibli uuendamine (kokku %s-st): "%s" %s uuendamine... Upgrading Bible %s of %s: "%s" Complete %s. Piibli uuendamine (kokku %s-st): "%s" Valmis , %s failed , %s nurjus Upgrading Bible(s): %s successful%s Piibli(te) uuendamine: %s edukas%s Upgrade failed. Uuendamine nurjus. You need to specify a backup directory for your Bibles. Pead määrama Piiblite varundamise kataloogi. Starting upgrade... Uuendamise alustamine... There are no Bibles that need to be upgraded. Pole ühtegi Piiblit, mis vajaks uuendamist. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Piiblite uuendamine: %(success)d edukas %(failed_text)s Palun pane tähele, et veebipiiblitest laaditakse salmid alla siis, kui neid kasutatakse, selle pärast on ka kasutades vaja internetiühendust. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Anti sobimatu piiblifail. Zefania Piiblid võivad olla pakitud. Need tuleb enne importimist lahti pakkida. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... %(bookname)s %(chapter)s importimine... CustomPlugin Custom Slide name singular Kohandatud slaid Custom Slides name plural Kohandatud slaidid Custom Slides container title Kohandatud slaidid Load a new custom slide. Uue kohandatud slaidi laadimine. Import a custom slide. Kohandatud slaidi importimine. Add a new custom slide. Uue kohandatud slaidi lisamine. Edit the selected custom slide. Valitud kohandatud slaidi muutmine. Delete the selected custom slide. Valitud kohandatud slaidi kustutamine. Preview the selected custom slide. Valitud kohandatud slaidi eelvaatlus. Send the selected custom slide live. Valitud kohandatud slaidi saatmine ekraanile. Add the selected custom slide to the service. Valitud kohandatud slaidi lisamine teenistusele. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Kohandatud slaidide plugin</strong><br />Kohandatud slaidide plugin võimaldab ekraanil oma tekstiga slaide kuvada, samuti nagu kuvatakse laule, kuid pakub suuremat vabadust kui laulude plugin. CustomPlugin.CustomTab Custom Display Kohandatud kuva Display footer Jaluse kuvamine Import missing custom slides from service files Puuduvate kohandatud slaidide importimine teenistuse failidest CustomPlugin.EditCustomForm Edit Custom Slides Kohandatud slaidide muutmine &Title: &Pealkiri: Add a new slide at bottom. Uue slaidi lisamine kõige alumiseks. Edit the selected slide. Valitud slaidi muutmine. Edit all the slides at once. Kõigi slaidide muutmine ühekorraga. Split a slide into two by inserting a slide splitter. Slaidi lõikamine kaheks, sisestades slaidide eraldaja. The&me: &Kujundus: &Credits: &Autorid: You need to type in a title. Pead sisestama pealkirja. Ed&it All Muuda &kõiki Insert Slide Uus slaid You need to add at least one slide. Pead lisama vähemalt ühe slaidi. CustomPlugin.EditVerseForm Edit Slide Slaidi redigeerimine CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Pildiplugin</strong><br />Pildiplugin võimaldab piltide kuvamise.<br />Üks selle plugina tähtsamaid võimalusi on piltide grupeerimine teenistuse halduris, muutes paljude piltide koos kuvamise lihtsamaks. See plugin võib kasutada ka ajastatud slaidivahetust automaatse slaidiesitluse tegemiseks. Lisaks sellele võib plugina pilte kasutada aktiivse kujunduse tausta asendamiseks. Image name singular Pilt Images name plural Pildid Images container title Pildid Load a new image. Uue pildi laadimine. Add a new image. Uue pildi lisamine. Edit the selected image. Valitud pildi muutmine. Delete the selected image. Valitud pildi kustutamine. Preview the selected image. Valitud pildi eelvaatlus. Send the selected image live. Valitud pildi saatmine ekraanile. Add the selected image to the service. Valitud pildi lisamine teenistusele. ImagePlugin.AddGroupForm Add group Lisa grupp Parent group: Ülemine grupp: Group name: Grupi nimi: You need to type in a group name. Pead sisestama grupi nime. Could not add the new group. Uut gruppi pole võimalik lisada. This group already exists. See grupp on juba olemas. ImagePlugin.ChooseGroupForm Select Image Group Pildi grupi valimine Add images to group: Piltide lisamine gruppi: No group Gruppi pole Existing group Olemasolev grupp New group Uus grupp ImagePlugin.ExceptionDialog Select Attachment Manuse valimine ImagePlugin.MediaItem Select Image(s) Piltide valimine You must select an image to replace the background with. Pead enne valima pildi, millega tausta asendada. Missing Image(s) Puuduvad pildid The following image(s) no longer exist: %s Järgnevaid pilte enam pole: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Järgnevaid pilte enam pole: %s Kas tahad teised pildid sellest hoolimata lisada? There was a problem replacing your background, the image file "%s" no longer exists. Tausta asendamisel esines viga, pildifaili "%s" enam pole. There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. -- Top-level group -- -- Ülemine grupp -- You must select an image or group to delete. Pead valima kõigepealt pildi või grupi, mida tahad kustutada. Remove group Eemalda grupp Are you sure you want to remove "%s" and everything in it? Kas sa kindlasti tahad eemaldada "%s" ja kõik selles grupis asuva? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Tausta värvus piltidel, mille külgede suhe ei vasta ekraani küljesuhtele. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC on väline esitaja, mis toetab hulganisti erinevaid vorminguid. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit on meediaesitaja, mis töötab veebibrauseris. Selle esitajaga on võimalik renderdada tekst video peale. This media player uses your operating system to provide media capabilities. See meediaesitaja kasutab operatsioonisüsteemi meedia võimalusi. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Meediaplugin</strong><br />Meediaplugin võimaldab audio- ja videofailide taasesitamise. Media name singular Meedia Media name plural Meedia Media container title Meedia Load new media. Uue meedia laadimine. Add new media. Uue meedia lisamine. Edit the selected media. Valitud meedia muutmine. Delete the selected media. Valitud meedia kustutamine. Preview the selected media. Valitud meedia eelvaatlus. Send the selected media live. Valitud meedia saatmine ekraanile. Add the selected media to the service. Valitud meedia lisamine teenistusele. MediaPlugin.MediaClipSelector Select Media Clip Meedia valimine Source Allikas Media path: Meedia asukoht: Select drive from list Vali ketas nimekirjast Load disc Ava plaat Track Details Raja andmed Title: Pealkiri: Audio track: Helirada: Subtitle track: Subtiitrite rada: HH:mm:ss.z HH:mm:ss.z Clip Range Klipi asukoht Start point: Algus: Set start point Alguse määramine Jump to start point Algusesse liikumine End point: Lõpp: Set end point Lõpu määramine Jump to end point Lõppu liikumine MediaPlugin.MediaClipSelectorForm No path was given Asukoht pole määratud Given path does not exists Antud asukohta pole An error happened during initialization of VLC player VLC mängija käivitamisel esines viga VLC player failed playing the media VLC mängija ei suuda meediat esitada CD not loaded correctly CD pole korrektselt laaditud The CD was not loaded correctly, please re-load and try again. CD pole korrektselt sisestatud, sisesta see uuesti ja proovi veel. DVD not loaded correctly DVD pole õigesti sisestatud The DVD was not loaded correctly, please re-load and try again. DVD pole õigesti sisestatud, sisesta see uuesti ja proovi jälle. Set name of mediaclip Meedialõigu nimi Name of mediaclip: Meedialõigu nimi: Enter a valid name or cancel Sisesta sobiv nimi või loobu Invalid character Sobimatu märk The name of the mediaclip must not contain the character ":" Meedialõigu nimi ei tohi sisaldada koolonit ":" MediaPlugin.MediaItem Select Media Meedia valimine You must select a media file to delete. Pead enne valima meedia, mida kustutada. You must select a media file to replace the background with. Pead enne valima meediafaili, millega tausta asendada. There was a problem replacing your background, the media file "%s" no longer exists. Tausta asendamisel esines viga, meediafaili "%s" enam pole. Missing Media File Puuduv meediafail The file %s no longer exists. Faili %s ei ole enam olemas. Videos (%s);;Audio (%s);;%s (*) Videod (%s);;Audio (%s);;%s (*) There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. Unsupported File Fail pole toetatud: Use Player: Kasutatav meediaesitaja: VLC player required Vaja on VLC mängijat VLC player required for playback of optical devices Plaatide esitamiseks on vaja VLC mängijat Load CD/DVD Laadi CD/DVD Load CD/DVD - only supported when VLC is installed and enabled CD/DVD laadimine - saadaval ainult siis, kui VLC on paigaldatud ja lubatud The optical disc %s is no longer available. Optiline plaat %s pole enam saadaval. Mediaclip already saved Meedia klipp juba salvestatud This mediaclip has already been saved Meedia klipp on juba salvestatud MediaPlugin.MediaTab Allow media player to be overridden Meediaesitajat saab käsitsi vahetada Start Live items automatically Ekraanile minevad asjad pannakse automaatselt käima OPenLP.MainWindow &Projector Manager &Projektorihaldur OpenLP Image Files Pildifailid Information Andmed Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Piibli vorming on muutunud. Sa pead olemasolevad Piiblid uuendama. Kas OpenLP peaks kohe uuendamist alustama? Backup Varundus OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP on uuendatud. Kas tahad OpenLP andmekaustast luua varukoopia? Backup of the data folder failed! Andmekausta varundamine nurjus! A backup of the data folder has been created at %s Andmekausta varukoopia loodi kohta %s Open Ava OpenLP.AboutForm Credits Autorid License Litsents build %s kompileering %s 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; version 2 of the License. See programm on vaba tarkvara; te võite seda edasi levitada ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi tingimustele, nagu need on Vaba Tarkvara Fondi poolt avaldatud; vastavalt Litsentsi versioonile number 2. 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 below for more details. Seda programmi levitatakse lootuses, et see on kasulik, kuid ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS EESMÄRGIKS. Üksikasjade suhtes vaata GNU Üldist Avalikku Litsentsi. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP on tasuta kiriku esitlustarkvara või laulusõnade kuvaja, mis kuvab nii laule, piiblikohti, videoid, pilte ning isegi esitlusi (kui on paigaldatud Impress, PowerPoint või PowerPoint Viewer) kasutades selleks ainult arvutit ja projektorit. Uuri OpenLP kohta lähemalt: http://openlp.org OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem tasuta kristlikku tarkvara, siis võib-olla tahad ise vabatahtlikuna kaasa aidata? Klõpsa alumisele nupule Volunteer Hakkan vabatahtlikuks Project Lead Projekti juht Developers Arendajad Contributors Kaastöölised Packagers Pakendajad Testers Testijad Translators Tõlkijad Afrikaans (af) Afrikaani (af) Czech (cs) TÅ¡ehhi (cs) Danish (da) Taani (da) German (de) Saksa (de) Greek (el) Kreeka (el) English, United Kingdom (en_GB) Inglise, Suurbritannia (en_GB) English, South Africa (en_ZA) Inglise, Lõuna-Aafrika (en_ZA) Spanish (es) Hispaania (es) Estonian (et) Eesti (et) Finnish (fi) Soome (fi) French (fr) Prantsuse (fr) Hungarian (hu) Ungari (hu) Indonesian (id) Indoneesia (id) Japanese (ja) Jaapani (ja) Norwegian BokmÃ¥l (nb) Norra BokmÃ¥l (nb) Dutch (nl) Hollandi (nl) Polish (pl) Poola (pl) Portuguese, Brazil (pt_BR) Portugali, Brasiilia (pt_BR) Russian (ru) Vene (ru) Swedish (sv) Rootsi (sv) Tamil(Sri-Lanka) (ta_LK) Tail (Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Hiina (zh_CN) Documentation Dokumentatsioon Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Kasutatud tehnoloogiad Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Lõputänu "Sest nõnda on Jumal maailma armastanud, et ta oma ainusündinud Poja on andnud, et ükski, kes temasse usub, ei hukkuks, vaid et tal oleks igavene elu." Johannese 3:16 Ning päris viimane, kuid ei vähem oluline tänu on Jumalale, meie Isale, kes saatis oma Poja ristile surema, et vabastada meid patust. See tarkvara on tasuta ja vaba, kuna Tema on meid vabaks teinud. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Autoriõigus © 2004-2016 %s Osaline autoriõigus © 2004-2016 %s OpenLP.AdvancedTab UI Settings Kasutajaliidese sätted Number of recent files to display: Kuvatavate hiljutiste failide arv: Remember active media manager tab on startup Käivitumisel avatakse viimati avatud meediahalduri osa Double-click to send items straight to live Topeltklõps otse ekraanile saatmiseks Expand new service items on creation Uued teenistuse kirjed on loomisel laiendatud Enable application exit confirmation Rakenduse lõpetamise teabe lubamine Mouse Cursor Hiirekursor Hide mouse cursor when over display window Ekraaniakna kohal peidetakse hiirekursor Default Image Vaikimisi pilt Background color: Tausta värvus: Image file: Pildifail: Open File Faili avamine Advanced Täpsem Preview items when clicked in Media Manager Meediahalduris klõpsamisel kuvatakse eelvaade Browse for an image file to display. Kuvatava pildi valimine. Revert to the default OpenLP logo. Vaikimisi OpenLP logo kasutamine. Default Service Name Teenistuse vaikimisi nimi Enable default service name Teenistuse vaikimisi nimi lubatud Date and Time: Kuupäev ja kellaaeg: Monday Esmaspäeval Tuesday Teisipäeval Wednesday Kolmapäeval Friday Reedel Saturday Laupäeval Sunday Pühapäeval Now Praegu Time when usual service starts. Mis kell teenistus tavaliselt algab. Name: Nimi: Consult the OpenLP manual for usage. Kasutuse kohta lähemalt OpenLP käsiraamatust. Revert to the default service name "%s". Teenistuse vaikimisi vaikenime "%s" taastamine. Example: Näidis: Bypass X11 Window Manager X11 aknahaldur jäetakse vahele Syntax error. Süntaksi viga. Data Location Andmete asukoht Current path: Praegune asukoht: Custom path: Kohandatud asukoht: Browse for new data file location. Sirvimine andmete faili uue asukoha leidmiseks. Set the data location to the default. Andmete vaikimisi asukoha taastamine. Cancel Loobu Cancel OpenLP data directory location change. Loobu OpenLP andmete kataloogi asukoha muutusest. Copy data to new location. Kopeeri andmed uude asukohta. Copy the OpenLP data files to the new location. OpenLP andmefailide kopeerimine uude asukohta. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>HOIATUS:</strong> Uus OpenLP andmefailide kataloog juba sisaldab andmefaile. Kopeerimisel need failid ASENDATAKSE. Data Directory Error Andmete kataloogi tõrge Select Data Directory Location Andmekausta asukoha valimine Confirm Data Directory Change Andmekausta muutmise kinnitus Reset Data Directory Taasta esialgne andmekaust Overwrite Existing Data Olemasolevate andmete ülekirjutamine OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP andmekataloogi ei leitud %s Andmekataloogi asukoht on varem muudetud ning see pole enam vaikimisi asukoht. Kui see oli määratud eemaldatavale andmekandjale, siis tuleb andmekandja enne ühendada. Klõpsa "Ei", et peatada OpenLP laadimine, mis võimaldab sul vea parandada. Klõpsa "Jah", et kasutada andmekataloogi vaikimisi asukohta. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Kas sa oled kindel, et tahad määrata OpenLP andmekataloogiks: %s Andmekataloog muudetakse OpenLP sulgemisel. Thursday Neljapäev Display Workarounds Kuvamise trikid Use alternating row colours in lists Loeteludes vahelduvate värvide kasutamine WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? HOIATUS: Valitud asukoht %s juba sisaldab OpenLP andmefaile. Kas tahad sealsed failid asendada praeguste andmefailidega? Restart Required Vajalik on taaskäivitus This change will only take effect once OpenLP has been restarted. See muudatus jõustub alles pärast OpenLP uuesti käivitamist. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Kas sa oled kindel, et tahad taastada OpenLP andmekausta vaikimisi asukoha? Seda asukohta kasutatakse pärast OpenLP sulgemist. OpenLP.ColorButton Click to select a color. Klõpsa värvi valimiseks. OpenLP.DB RGB RGB Video Video Digital Digitaalne Storage Andmeruum Network Võrk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digitaalne 1 Digital 2 Digitaalne 2 Digital 3 Digitaalne 3 Digital 4 Digitaalne 4 Digital 5 Digitaalne 5 Digital 6 Digitaalne 6 Digital 7 Digitaalne 7 Digital 8 Digitaalne 8 Digital 9 Digitaalne 9 Storage 1 Andmeruum 1 Storage 2 Andmeruum 2 Storage 3 Andmeruum 3 Storage 4 Andmeruum 4 Storage 5 Andmeruum 5 Storage 6 Andmeruum 6 Storage 7 Andmeruum 7 Storage 8 Andmeruum 8 Storage 9 Andmeruum 9 Network 1 Võrk 1 Network 2 Võrk 2 Network 3 Võrk 3 Network 4 Võrk 4 Network 5 Võrk 5 Network 6 Võrk 6 Network 7 Võrk 7 Network 8 Võrk 8 Network 9 Võrk 9 OpenLP.ExceptionDialog Error Occurred Esines viga Send E-Mail Saada e-kiri Save to File Salvesta faili Attach File Pane fail kaasa Description characters to enter : %s Puuduvad tähed kirjelduses: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Palun kirjelda siin, mida sa parasjagu tegid, mis kutsus selle vea esile. (vähemalt 20 tähte) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Uups! OpenLP-s esines viga, millest ei suudetud üle saada. Alumises kastis olev tekst võib olla kasulik OpenLP arendajatele, palun meili see aadressil bugs@openlp.org koos täpse kirjeldusega sellest, mida sa parasjagu tegid, kui probleem esines. OpenLP.ExceptionForm Platform: %s Platvorm: %s Save Crash Report Vearaporti salvestamine Text files (*.txt *.log *.text) Tekstifailid (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Faili ümbernimetamine New File Name: Faili uus nimi: File Copy Faili kopeerimine OpenLP.FirstTimeLanguageForm Select Translation Tõlke valimine Choose the translation you'd like to use in OpenLP. Vali keel, milles tahad OpenLP-d kasutada. Translation: Keel: OpenLP.FirstTimeWizard Songs Laulud First Time Wizard Esmakäivituse nõustaja Welcome to the First Time Wizard Tere tulemast esmakäivituse nõustajasse Activate required Plugins Vajalike pluginate sisselülitamine Select the Plugins you wish to use. Vali pluginad, mida tahad kasutada. Bible Piibel Images Pildid Presentations Esitlused Media (Audio and Video) Meedia (audio ja video) Allow remote access Kaugligipääs Monitor Song Usage Laulukasutuse monitooring Allow Alerts Teadaanded Default Settings Vaikimisi sätted Downloading %s... %s allalaadimine... Enabling selected plugins... Valitud pluginate sisselülitamine... No Internet Connection Internetiühendust pole Unable to detect an Internet connection. Internetiühendust ei leitud. Sample Songs Näidislaulud Select and download public domain songs. Vali ja laadi alla avalikku omandisse kuuluvaid laule. Sample Bibles Näidispiiblid Select and download free Bibles. Vabade Piiblite valimine ja allalaadimine. Sample Themes Näidiskujundused Select and download sample themes. Näidiskujunduste valimine ja allalaadimine. Set up default settings to be used by OpenLP. OpenLP jaoks vaikimisi sätete määramine. Default output display: Vaikimisi ekraani kuva: Select default theme: Vali vaikimisi kujundus: Starting configuration process... Seadistamise alustamine... Setting Up And Downloading Seadistamine ja allalaadimine Please wait while OpenLP is set up and your data is downloaded. Palun oota, kuni OpenLP-d seadistatakse ja andmeid allalaaditakse. Setting Up Seadistamine Custom Slides Kohandatud slaidid Finish Lõpp No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Internetiühendust ei leitud. Esmakäivituse nõustaja vajab internetiühendust näidislaulude, piiblite ja kujunduste allalaadimiseks. OpenLP käivitamiseks tehaseseadistuses ja ilma näidisandmeteta klõpsa lõpetamise nupule. Esmakäivituse nõustaja hiljem uuesti käivitamiseks kontrolli oma internetiühendust ja käivita see nõustaja uuesti OpenLP menüüst "Tööriistad/Esmakäivituse nõustaja". Download Error Tõrge allalaadimisel There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Allalaadimise käigus esines ühenduse viga, seega järgnevaid asju ei laadita alla. Võid proovida esmakäivituse nõustajat hiljem uuesti käivitada. Download complete. Click the %s button to return to OpenLP. Allalaadimine lõpetatud. Klõpsa %s nupul, et minna tagasi OpenLPsse. Download complete. Click the %s button to start OpenLP. Allalaadimine lõpetatud. Klõpsa %s nupul, et käivitada OpenLP. Click the %s button to return to OpenLP. Klõpsa %s nupul, et minna tagasi OpenLPsse. Click the %s button to start OpenLP. Klõpsa %s nupul, et käivitada OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Allalaadimise käigus esines ühenduse viga, seega järgnevaid allalaadimise jäetakse vahele. Võid proovida esmakäivituse nõustajat hiljem uuesti käivitada. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. See nõustaja aitab teha OpenLP kasutamiseks esmase seadistuse. Klõpsa all %s nupule, et alustada. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Et katkestada esmakäivituse nõustaja täielikult (ja jätta OpenLP käivitamata), klõpsa all %s nupule. Downloading Resource Index Ressursside indeksi allalaadimine Please wait while the resource index is downloaded. Palun oota, kuni ressursside indeksi faili alla laaditakse... Please wait while OpenLP downloads the resource index file... Palun oota, kuni OpenLP laadib alla ressursside indeksi faili... Downloading and Configuring Allalaadimine ja seadistamine Please wait while resources are downloaded and OpenLP is configured. Palun oota, kuni andmeid alla laaditakse ja OpenLP ära seadistatakse. Network Error Võrgu viga There was a network error attempting to connect to retrieve initial configuration information Esialgse seadistuse andmete hankimise katsel esines võrgu viga Cancel Loobu Unable to download some files Mõnede failide allalaadimine ei õnnestunud OpenLP.FormattingTagDialog Configure Formatting Tags Vormindussiltide seadistamine Description Kirjeldus Tag Märgis Start HTML Alustav HTML End HTML Lõpetav HTML Default Formatting Vaikimisi vormindus Custom Formatting Muudetud vormindus OpenLP.FormattingTagForm <HTML here> <HTML siia> Validation Error Valideerimise viga Description is missing Kirjeldus puudub Tag is missing Silt puudub Tag %s already defined. Märgis %s on juba defineeritud. Description %s already defined. Kirjeldus %s on juba määratud. Start tag %s is not valid HTML Algusmärk %s ei ole sobiv HTML End tag %(end)s does not match end tag for start tag %(start)s Lõpusilt %(end)s ei kattu alustava sildiga %(start)s OpenLP.FormattingTags Red Punane Black Must Blue Sinine Yellow Kollane Green Roheline Pink Roosa Orange Oranž Purple Lilla White Valge Superscript Ülaindeks Subscript Alaindeks Paragraph Lõik Bold Rasvane Italics Kursiiv Underline Allajoonitud Break Murdmine OpenLP.GeneralTab General Üldine Monitors Monitorid Select monitor for output display: Peamise kuva ekraan: Display if a single screen Kuvatakse ka, kui on ainult üks ekraan Application Startup Rakenduse käivitumine Show blank screen warning Kuvatakse tühjendatud ekraani hoiatust Automatically open the last service Automaatselt avatakse viimane teenistus Show the splash screen Käivitumisel kuvatakse logo Application Settings Rakenduse sätted Prompt to save before starting a new service Uue teenistuse alustamisel pakutakse eelmise salvestamist Automatically preview next item in service Teenistuse järgmise elemendi automaatne eelvaatlus sec s CCLI Details CCLI andmed SongSelect username: SongSelecti kasutajanimi: SongSelect password: SongSelecti parool: X X Y Y Height Kõrgus Width Laius Check for updates to OpenLP OpenLP uuenduste kontrollimine Unblank display when adding new live item Ekraanile saatmisel võetakse ekraani tühjendamine maha Timed slide interval: Ajastatud slaidi kestus: Background Audio Taustamuusika Start background audio paused Taustamuusika on alguses pausitud Service Item Slide Limits Teenistuse elemendi slaidi mõõtmed Override display position: Kuva asukoha käsitsi muutmine: Repeat track list Lugude loendi kordamine Behavior of next/previous on the last/first slide: Järgmise/eelmise käitumine viimasel/esimesel slaidil: &Remain on Slide &Jäädakse slaidile &Wrap around &Teenistuse elementi korratakse &Move to next/previous service item &Liigutakse järgmisele teenistuse elemendile OpenLP.LanguageManager Language Keel Please restart OpenLP to use your new language setting. Uue keele kasutamiseks käivita OpenLP uuesti. OpenLP.MainDisplay OpenLP Display OpenLP kuva OpenLP.MainWindow &File &Fail &Import &Impordi &Export &Ekspordi &View &Vaade M&ode &Režiim &Tools &Tööriistad &Settings &Sätted &Language &Keel &Help A&bi Service Manager Teenistuse haldur Theme Manager Kujunduste haldur Open an existing service. Olemasoleva teenistuse avamine. Save the current service to disk. Praeguse teenistuse salvestamine kettale. Save Service As Salvesta teenistus kui Save the current service under a new name. Praeguse teenistuse salvestamine uue nimega. E&xit &Välju Quit OpenLP Lahku OpenLPst &Theme &Kujundus &Configure OpenLP... &Seadista OpenLP... &Media Manager &Meediahaldur Toggle Media Manager Meediahalduri lüliti Toggle the visibility of the media manager. Meediahalduri nähtavuse ümberlüliti. &Theme Manager &Kujunduse haldur Toggle Theme Manager Kujunduse halduri lüliti Toggle the visibility of the theme manager. Kujunduse halduri nähtavuse ümberlülitamine. &Service Manager &Teenistuse haldur Toggle Service Manager Teenistuse halduri lüliti Toggle the visibility of the service manager. Teenistuse halduri nähtavuse ümberlülitamine. &Preview Panel &Eelvaatluspaneel Toggle Preview Panel Eelvaatluspaneeli lüliti Toggle the visibility of the preview panel. Eelvaatluspaneeli nähtavuse ümberlülitamine. &Live Panel &Ekraani paneel Toggle Live Panel Ekraani paneeli lüliti Toggle the visibility of the live panel. Ekraani paneeli nähtavuse muutmine. List the Plugins Pluginate loend &User Guide &Kasutajajuhend &About &Lähemalt More information about OpenLP Lähem teave OpenLP kohta &Online Help &Abi veebis &Web Site &Veebileht Use the system language, if available. Kui saadaval, kasutatakse süsteemi keelt. Set the interface language to %s Kasutajaliidese keeleks %s määramine Add &Tool... Lisa &tööriist... Add an application to the list of tools. Rakenduse lisamine tööriistade loendisse. &Default &Vaikimisi Set the view mode back to the default. Vaikimisi kuvarežiimi taastamine. &Setup &Ettevalmistus Set the view mode to Setup. Ettevalmistuse kuvarežiimi valimine. &Live &Otse Set the view mode to Live. Vaate režiimiks ekraanivaate valimine. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP versioon %s on nüüd allalaadimiseks saadaval (sina kasutad praegu versiooni %s). Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/. OpenLP Version Updated OpenLP uuendus OpenLP Main Display Blanked OpenLP peakuva on tühi The Main Display has been blanked out Peakuva on tühi Default Theme: %s Vaikimisi kujundus: %s English Please add the name of your language here Estonian Configure &Shortcuts... &Kiirklahvide seadistamine... Open &Data Folder... Ava &andmete kataloog... Open the folder where songs, bibles and other data resides. Laulude, Piiblite ja muude andmete kataloogi avamine. &Autodetect &Isetuvastus Update Theme Images Uuenda kujunduste pildid Update the preview images for all themes. Kõigi teemade eelvaatepiltide uuendamine. Print the current service. Praeguse teenistuse printimine. L&ock Panels &Lukusta paneelid Prevent the panels being moved. Paneelide liigutamise kaitse. Re-run First Time Wizard Käivita esmanõustaja uuesti Re-run the First Time Wizard, importing songs, Bibles and themes. Käivita esmanõustaja uuesti laulude, Piiblite ja kujunduste importimiseks. Re-run First Time Wizard? Kas käivitada esmanõustaja uuesti? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Kas oled kindel, et tahad esmakäivituse nõustaja uuesti käivitada? Selle nõustaja taaskäivitamine muudab sinu praegust OpenLP seadistust ja võib lisada laule olemasolevate laulude loetelusse ning muuta vaikimisi kujundust. Clear List Clear List of recent files Tühjenda loend Clear the list of recent files. Hiljutiste failide nimekirja tühjendamine. Configure &Formatting Tags... &Vormindusmärgised... Export OpenLP settings to a specified *.config file OpenLP sätete eksportimine määratud *.config faili Settings Sätted Import OpenLP settings from a specified *.config file previously exported on this or another machine OpenLP sätete importimine määratud *.config failist, mis on varem sellest või mõnest teisest arvutist eksporditud. Import settings? Kas importida sätted? Open File Faili avamine OpenLP Export Settings Files (*.conf) OpenLP eksporditud sätete failid (*.conf) Import settings Sätete importimine OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sulgub nüüd. Imporditud sätted rakenduvad OpenLP järgmisel käivitumisel. Export Settings File Sättefaili eksportimine OpenLP Export Settings File (*.conf) OpenLP eksporditud sätete fail (*.conf) New Data Directory Error Uue andmekausta viga Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP andmete kopeerimine uude andmekataloogi - %s - palun oota, kuni kopeerimine lõpeb... OpenLP Data directory copy failed %s OpenLP andmekataloogi kopeerimine nurjus %s General Üldine Library Kogu Jump to the search box of the current active plugin. Parasjagu aktiivse plugina otsingulahtrisse liikumine. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Kas tahad kindlasti sätted importida? Sätete importimine muudab jäädavalt sinu praegust OpenLP seadistust. Väärade sätete importimine võib põhjustada OpenLP väära käitumist või sulgumist. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Valitud fail ei tundu olema OpenLP sätete fail. Selle töötlemine katkestati ja ühtegi muudatust ei tehtud. Projector Manager Projektori haldur Toggle Projector Manager Projektori halduri lüliti Toggle the visibility of the Projector Manager Projektori halduri nähtavuse muutmine Export setting error Sätete eksportimise viga The key "%s" does not have a default value so it will be skipped in this export. Võtmel "%s" pole vaikimisi väärtust, seetõttu jäetakse see eksportimisel vahele. An error occurred while exporting the settings: %s Sätete eksportimisel esines viga: %s &Recent Services &Hiljutised teenistused &New Service &Uus teenistus &Open Service &Ava teenistus &Save Service &Salvesta teenistus Save Service &As... Salvesta teenistus &kui... &Manage Plugins &Pluginate haldamine Exit OpenLP OpenLPst väljumine Are you sure you want to exit OpenLP? Kas tahad kindlasti OpenLP sulgeda? &Exit OpenLP &Sulge OpenLP OpenLP.Manager Database Error Andmebaasi viga The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Laaditav andmebaas loodi mõne OpenLP vanema versiooniga. Andmebaasi praegune versioon on %d, kuid OpenLP ootab versiooni %d. Andmebaasi ei laadita. Andmebaas: %s OpenLP cannot load your database. Database: %s OpenLP ei suuda sinu andmebaasi laadida. Andmebaas: %s OpenLP.MediaManagerItem No Items Selected Ühtegi elementi pole valitud &Add to selected Service Item &Lisa valitud teenistuse elemendile You must select one or more items to preview. Sa pead valima vähemalt ühe kirje, mida eelvaadelda. You must select one or more items to send live. Sa pead valima vähemalt ühe kirje, mida tahad ekraanil näidata. You must select one or more items. Pead valima vähemalt ühe elemendi. You must select an existing service item to add to. Pead valima olemasoleva teenistuse, millele lisada. Invalid Service Item Vigane teenistuse element You must select a %s service item. Pead valima teenistuse elemendi %s. You must select one or more items to add. Pead valima vähemalt ühe kirje, mida tahad lisada. No Search Results Otsing ei andnud tulemusi Invalid File Type Sobimatut liiki fail Invalid File %s. Suffix not supported Sobimatu fail %s. Selle lõpuga fail ei ole toetatud &Clone &Klooni Duplicate files were found on import and were ignored. Importimisel tuvastati duplikaatfailid ning neid eirati. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Puudub <lyrics> silt. <verse> tag is missing. Puudub <verse> silt. OpenLP.PJLink1 Unknown status Tundmatu olek No message Teateid pole Error while sending data to projector Viga andmete saatmisel projektorisse Undefined command: Määratlemata käsk: OpenLP.PlayerTab Players Esitajad Available Media Players Saadaolevad meediaesitajad Player Search Order Esitaja otsingu järjekord Visible background for videos with aspect ratio different to screen. Nähtav taust videotel, mis ei täida kogu ekraani. %s (unavailable) %s (pole saadaval) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" MÄRKUS: VLC kasutamiseks tuleb paigaldada %s versioon OpenLP.PluginForm Plugin Details Plugina andmed Status: Olek: Active Aktiivne Inactive Pole aktiivne %s (Inactive) %s (pole aktiivne) %s (Active) %s (aktiivne) %s (Disabled) %s (keelatud) Manage Plugins Pluginate haldamine OpenLP.PrintServiceDialog Fit Page Mahuta lehele Fit Width Mahuta laius OpenLP.PrintServiceForm Options Valikud Copy Kopeeri Copy as HTML Kopeeri HTMLina Zoom In Suurendamine Zoom Out Vähendamine Zoom Original Originaalsuurus Other Options Muud valikud Include slide text if available Slaidi tekst, kui saadaval Include service item notes Teenistuse kirje märkmed Include play length of media items Meediakirjete pikkus Add page break before each text item Iga tekstikirje algab uuelt lehelt Service Sheet Teenistuse leht Print Prindi Title: Pealkiri: Custom Footer Text: Kohandatud jaluse tekst: OpenLP.ProjectorConstants OK Olgu General projector error Üldine projektori viga Not connected error Viga, pole ühendatud Lamp error Lambi viga Fan error Ventilaatori viga High temperature detected Tuvastati liiga kõrge temperatuur Cover open detected Tuvastati, et luuk on avatud Check filter Kontrolli filtrit Authentication Error Autentimise viga Undefined Command Tundmatu käsk Invalid Parameter Sobimatu parameeter Projector Busy Projektor on hõivatud Projector/Display Error Projektori/kuvari viga Invalid packet received Saadi sobimatu pakett Warning condition detected Tuvastati ohtlik seisukord Error condition detected Tuvastati veaga seisukord PJLink class not supported PJLink klass pole toetatud Invalid prefix character Sobimatu prefiksi märk The connection was refused by the peer (or timed out) Teine osapool keeldus ühendusest (või see aegus) The remote host closed the connection Teine osapool sulges ühenduse The host address was not found Hosti aadressi ei leitud The socket operation failed because the application lacked the required privileges Pesa käsitlemine nurjus, kuna rakendusel puuduvad vajalikud õigused The local system ran out of resources (e.g., too many sockets) Kohalikus süsteemis lõppesid ressursid (n.t liiga palju pesi) The socket operation timed out Pesa toiming aegus The datagram was larger than the operating system's limit Andmestik oli operatsioonisüsteemi piirangust suurem An error occurred with the network (Possibly someone pulled the plug?) Esines võrgu viga (võib-olla tõmbas keegi juhtme välja?) The address specified with socket.bind() is already in use and was set to be exclusive socket.bind()-iga määratud aadress on juba kasutusel ning kasutus on märgitud välistavaks. The address specified to socket.bind() does not belong to the host socket.bind()-iga määratud aadress ei kuulu sellele hostile. The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Nõutud pesa tegevus ei ole sinu operatsioonisüsteemi poolt toetatud (nt puudub IPv6 tugi). The socket is using a proxy, and the proxy requires authentication Valitud pesa kasutab proksit, mis nõuab autentimist. The SSL/TLS handshake failed SSL/TLS käepigistus nurjus The last operation attempted has not finished yet (still in progress in the background) Viimane üritatud tegevus pole veel lõpetatud (endiselt toimub taustal). Could not contact the proxy server because the connection to that server was denied Proksiserveriga ühendusest keelduti. The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Ühendus proksiserveriga sulgus ootamatult (enne kui ühendus loodi lõpliku partneriga). The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Ühendus proksiserverisse aegus või proksiserver lõpetas autentimise faasis vastamise. The proxy address set with setProxy() was not found setProxy()-ga määratud proksiaadressi ei leitud An unidentified error occurred Esines tundmatu viga Not connected Pole ühendatud Connecting Ühendumine Connected Ühendatud Getting status Oleku hankimine Off Väljas Initialize in progress Käivitamine on pooleli Power in standby Ootel (vool on järel) Warmup in progress Soojendamine pooleli Power is on Sisselülitatud Cooldown in progress Jahutamine on pooleli Projector Information available Projektori andmed on saadaval Sending data Andmete saatmine Received data Saadi andmeid The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Ühenduse loomise läbirääkimised proksiserveriga nurjusid, kuna proksiserveri vastust ei suudetud mõista. OpenLP.ProjectorEdit Name Not Set Nimi pole määratud You must enter a name for this entry.<br />Please enter a new name for this entry. Selle kirje jaoks pead sisestama nime.<br />Palun sisesta sellele uus nimi. Duplicate Name Dubleeriv nimi OpenLP.ProjectorEditForm Add New Projector Uue projektori lisamine Edit Projector Muuda projektorit IP Address IP-aadress Port Number Pordi nimi PIN PIN Name Nimi Location Asukoht Notes Märkmed Database Error Andmebaasi viga There was an error saving projector information. See the log for the error Projektori andmete salvestamisel esines viga. Veateate leiad logist. OpenLP.ProjectorManager Add Projector Lisa projektor Add a new projector Uue projektori lisamine Edit Projector Muuda projektorit Edit selected projector Valitud projektori muutmine Delete Projector Kustuta projektor Delete selected projector Valitud projektori kustutamine Select Input Source Sisendi valimine Choose input source on selected projector Valitud projektori videosisendi valimine View Projector Projektori andmed View selected projector information Valitud projektori andmete vaatamine Connect to selected projector Valitud projektoriga ühendumine Connect to selected projectors Valitud projektoritega ühendumine Disconnect from selected projectors Valitud projektoritega ühenduse katkestamine Disconnect from selected projector Valitud projektoriga ühenduse katkestamine Power on selected projector Valitud projektori sisselülitamine Standby selected projector Valitud projektori uinakusse panemine Put selected projector in standby Valitud projektori uinakusse panemine Blank selected projector screen Valitud projektori ekraan mustaks Show selected projector screen Valitud projektori ekraanil jälle pildi näitamine &View Projector Information &Kuva projektori andmeid &Edit Projector &Muuda projektorit &Connect Projector Ü&henda projektor D&isconnect Projector &Katkesta ühendus Power &On Projector Lülita projektor &sisse Power O&ff Projector Lülita projektor &välja Select &Input Vali s&isend Edit Input Source Sisendi muutmine &Blank Projector Screen &Tühi projektori ekraan &Show Projector Screen &Näita projektori ekraani &Delete Projector &Kustuta projektor Name Nimi IP IP Port Port Notes Märkmed Projector information not available at this time. Projektori andmed pole praegu saadaval Projector Name Projektori nimi Manufacturer Tootja Model Mudel Other info Muud andmed Power status Sisselülitamise olek Shutter is Katiku asend Closed Suletud Current source input is Praegune sisend on Lamp Lamp On Sees Off Väljas Hours Töötunnid No current errors or warnings Ühtegi viga või hoiatust pole Current errors/warnings Praegused vead/hoiatused Projector Information Projektori andmed No message Teateid pole Not Implemented Yet Pole toetatud Delete projector (%s) %s? Kas kustutada projektor (%s) %s? Are you sure you want to delete this projector? Kas tahad kindlasti kustutada selle projektori? OpenLP.ProjectorPJLink Fan Ventilaator Lamp Lamp Temperature Temperatuur Cover Kaas Filter Filter Other Muu OpenLP.ProjectorTab Projector Projektor Communication Options Ühenduse valikud Connect to projectors on startup Projektoritega ühendumine käivitumisel Socket timeout (seconds) Sokli aegumine (sekundites) Poll time (seconds) Pollimise sagedus (sekundites) Tabbed dialog box Sakkidega dialoogiaken Single dialog box Üks dialoogiaken OpenLP.ProjectorWizard Duplicate IP Address Dubleeriv IP-aadress Invalid IP Address Vigane IP-aadress Invalid Port Number Vigane pordi number OpenLP.ScreenList Screen Ekraan primary peamine OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Algus</strong>: %s <strong>Length</strong>: %s <strong>Kestus</strong>: %s [slide %d] [slaid %d] OpenLP.ServiceItemEditForm Reorder Service Item Teenistuse elementide ümberjärjestamine OpenLP.ServiceManager Move to &top Tõsta ü&lemiseks Move item to the top of the service. Teenistuse algusesse tõstmine. Move &up Liiguta &üles Move item up one position in the service. Elemendi liigutamine teenistuses ühe koha võrra ettepoole. Move &down Liiguta &alla Move item down one position in the service. Elemendi liigutamine teenistuses ühe koha võrra tahapoole. Move to &bottom Tõsta &alumiseks Move item to the end of the service. Teenistuse lõppu tõstmine. &Delete From Service &Kustuta teenistusest Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. &Add New Item &Lisa uus element &Add to Selected Item &Lisa valitud elemendile &Edit Item &Muuda kirjet &Reorder Item &Muuda elemendi kohta järjekorras &Notes &Märkmed &Change Item Theme &Muuda elemendi kujundust File is not a valid service. Fail pole sobiv teenistus. Missing Display Handler Puudub kuvakäsitleja Your item cannot be displayed as there is no handler to display it Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm Your item cannot be displayed as the plugin required to display it is missing or inactive Seda elementi pole võimalik näidata, kuna vajalik plugin on puudu või pole aktiivne &Expand all &Laienda kõik Expand all the service items. Kõigi teenistuse kirjete laiendamine. &Collapse all &Ahenda kõik Collapse all the service items. Kõigi teenistuse kirjete ahendamine. Open File Faili avamine Moves the selection down the window. Valiku tõstmine aknas allapoole. Move up Liiguta üles Moves the selection up the window. Valiku tõstmine aknas ülespoole. Go Live Ekraanile Send the selected item to Live. Valitud kirje saatmine ekraanile. &Start Time &Alguse aeg Show &Preview Näita &eelvaadet Modified Service Teenistust on muudetud The current service has been modified. Would you like to save this service? Praegust teenistust on muudetud. Kas tahad selle teenistuse salvestada? Custom Service Notes: Kohandatud teenistuse märkmed: Notes: Märkmed: Playing time: Kestus: Untitled Service Pealkirjata teenistus File could not be opened because it is corrupt. Faili pole võimalik avada, kuna see on rikutud. Empty File Tühi fail This service file does not contain any data. Selles teenistuse failis pole andmeid. Corrupt File Rikutud fail Load an existing service. Olemasoleva teenistuse laadimine. Save this service. Selle teenistuse salvestamine. Select a theme for the service. Teenistuse jaoks kujunduse valimine. Slide theme Slaidi kujundus Notes Märkmed Edit Muuda Service copy only Ainult teenistuse koopia Error Saving File Viga faili salvestamisel There was an error saving your file. Sinu faili salvestamisel esines tõrge. Service File(s) Missing Teenistuse failid on puudu &Rename... &Muuda nime... Create New &Custom Slide Loo uus &kohandatud slaid &Auto play slides Slaidide &automaatesitus Auto play slides &Loop Slaidide automaatne &kordamine Auto play slides &Once Slaidide ü&ks automaatesitus &Delay between slides &Viivitus slaidide vahel OpenLP Service Files (*.osz *.oszl) OpenLP teenistuse failid (*osz *oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP teenistuse failid (*.osz);; OpenLP teenistuse failid - kerge (*.oszl) OpenLP Service Files (*.osz);; OpenLP teenistuse failid (*.osz);; File is not a valid service. The content encoding is not UTF-8. Fail pole sobiv teenistus. Sisu pole kodeeritud UTF-8 vormingus. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Teenistuse fail, mida püüad avada, on vanas vormingus. Palun salvesta see OpenLP 2.0.2-ga või uuemaga. This file is either corrupt or it is not an OpenLP 2 service file. Fail on kas rikutud või see pole OpenLP 2 teenistuse fail. &Auto Start - inactive &Automaatesitus - pole aktiivne &Auto Start - active &Automaatesitus - aktiivne Input delay Sisendi viivitus Delay between slides in seconds. Viivitus slaidide vahel sekundites. Rename item title Muuda kirje pealkirja Title: Pealkiri: An error occurred while writing the service file: %s Teenistuse faili kirjutamisel esines viga: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Teenistusest puuduvad järgmised failid: %s Need failid eemaldatakse, kui sa otsustad siiski salvestada. OpenLP.ServiceNoteForm Service Item Notes Teenistuse elemendi märkmed OpenLP.SettingsForm Configure OpenLP Seadista OpenLP OpenLP.ShortcutListDialog Action Tegevus Shortcut Kiirklahv Duplicate Shortcut Dubleeriv kiirklahv The shortcut "%s" is already assigned to another action, please use a different shortcut. Kiirklahv "%s" on juba seotud teise tegevusega, kasuta mingit muud kiirklahvi. Alternate Muuda Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vali tegevus ja klõpsa kummalgi alumisel nupul, et salvestada uus peamine või alternatiivne kiirklahv. Default Vaikimisi Custom Kohandatud Capture shortcut. Kiirklahvi salvestamine. Restore the default shortcut of this action. Selle tegevuse vaikimisi kiirklahvi taastamine. Restore Default Shortcuts Vaikimisi kiirklahvide taastamine Do you want to restore all shortcuts to their defaults? Kas tahad taastada kõigi kiirklahvide vaikimisi väärtused? Configure Shortcuts Seadista kiirklahve OpenLP.SlideController Hide Peida Go To Mine Blank Screen Ekraani tühjendamine Blank to Theme Kujunduse tausta näitamine Show Desktop Töölaua näitamine Previous Service Eelmine teenistus Next Service Järgmine teenistus Escape Item Kuva sulgemine Move to previous. Eelmisele liikumine. Move to next. Järgmisele liikumine. Play Slides Slaidide esitamine Delay between slides in seconds. Viivitus slaidide vahel sekundites. Move to live. Ekraanile saatmine. Add to Service. Teenistusele lisamine. Edit and reload song preview. Laulu muutmine ja eelvaate uuesti laadimine. Start playing media. Meedia esitamise alustamine. Pause audio. Audio pausimine. Pause playing media. Meedia esitamise pausimine. Stop playing media. Meedia esitamise peatamine. Video position. Video asukoht. Audio Volume. Helivaljus. Go to "Verse" Mine salmile Go to "Chorus" Mine refräänile Go to "Bridge" Mine vahemängule Go to "Pre-Chorus" Mine eelrefräänile Go to "Intro" Mine sissejuhatusele Go to "Ending" Mine lõpetusele Go to "Other" Mine muule osale Previous Slide Eelmine slaid Next Slide Järgmine slaid Pause Audio Audio pausimine Background Audio Taustamuusika Go to next audio track. Järgmisele muusikapalale liikumine. Tracks Palad OpenLP.SourceSelectForm Select Projector Source Projektori allika valimine Edit Projector Source Text Projektori allikteksti muutmine Ignoring current changes and return to OpenLP Praeguste muudatuste eiramine ja OpenLPsse naasmine Delete all user-defined text and revert to PJLink default text Kustuta kõik kasutaja määratud tekst ja taasta PJLink'i vaikimisi tekst. Discard changes and reset to previous user-defined text Hülga muudatused ja taasta eelmine kasutaja määratud tekst Save changes and return to OpenLP Salvesta muudatused ja naase OpenLPsse Delete entries for this projector Kustuta selle projektori andmed Are you sure you want to delete ALL user-defined source input text for this projector? Kas oled kindel, et tahad kustutada KÕIK kasutaja poolt selle projektori jaoks määratud sisendteksti? OpenLP.SpellTextEdit Spelling Suggestions Õigekirjasoovitused Formatting Tags Vormindussildid Language: Keel: OpenLP.StartTimeForm Theme Layout Kujunduse paigutus The blue box shows the main area. Sinine raam näitab peaala. The red box shows the footer. Punane raam näitab jalust. OpenLP.StartTime_form Item Start and Finish Time Elemendi algus ja lõpp Hours: Tundi: Minutes: Minutit: Seconds: Sekundit: Start Algus Finish Lõpp Length Kestus Time Validation Error Valesti sisestatud aeg Finish time is set after the end of the media item Lõpetamise aeg on pärast meedia lõppu. Start time is after the finish time of the media item Alustamise aeg on pärast meedia lõppu. OpenLP.ThemeForm (approximately %d lines per slide) (umbes %d rida slaidil) OpenLP.ThemeManager Create a new theme. Uue kujunduse loomine. Edit Theme Kujunduse muutmine Edit a theme. Kujunduse muutmine. Delete Theme Kujunduse kustutamine Delete a theme. Kujunduse kustutamine. Import Theme Kujunduse importimine Import a theme. Kujunduse importimine. Export Theme Kujunduse eksportimine Export a theme. Kujunduse eksportimine. &Edit Theme Kujunduse &muutmine &Delete Theme Kujunduse &kustutamine Set As &Global Default Määra &globaalseks vaikeväärtuseks %s (default) %s (vaikimisi) You must select a theme to edit. Pead valima kujunduse, mida muuta. You are unable to delete the default theme. Vaikimisi kujundust pole võimalik kustutada. You have not selected a theme. Sa ei ole kujundust valinud. Save Theme - (%s) Salvesta kujundus - (%s) Theme Exported Kujundus eksporditud Your theme has been successfully exported. Sinu kujundus on edukalt eksporditud. Theme Export Failed Kujunduse eksportimine nurjus Select Theme Import File Importimiseks kujunduse faili valimine File is not a valid theme. See fail ei ole sobilik kujundus. &Copy Theme &Kopeeri kujundust &Rename Theme &Nimeta kujundus ümber &Export Theme &Ekspordi kujundus You must select a theme to rename. Pead valima kujunduse, mida ümber nimetada. Rename Confirmation Ümbernimetamise kinnitus Rename %s theme? Kas anda kujundusele %s uus nimi? You must select a theme to delete. Pead valima kujunduse, mida tahad kustutada. Delete Confirmation Kustutamise kinnitus Delete %s theme? Kas kustutada kujundus %s? Validation Error Valideerimise viga A theme with this name already exists. Sellenimeline teema on juba olemas. Copy of %s Copy of <theme name> %s (koopia) Theme Already Exists Kujundus on juba olemas Theme %s already exists. Do you want to replace it? Kujundus %s on juba olemas. Kas tahad selle asendada? The theme export failed because this error occurred: %s Kujunduse eksportimine nurjus, kuna esines järgmine viga: %s OpenLP Themes (*.otz) OpenLP kujundused (*.otz) %s time(s) by %s %s kord(a) pluginas %s Unable to delete theme Kujundust pole võimalik kustutada Theme is currently used %s Teema on praegu kasutusel %s OpenLP.ThemeWizard Theme Wizard Kujunduse nõustaja Welcome to the Theme Wizard Tere tulemast kujunduse nõustajasse Set Up Background Tausta määramine Set up your theme's background according to the parameters below. Määra kujunduse taust, kasutades järgnevaid parameetreid. Background type: Tausta liik: Gradient Üleminek Gradient: Üleminek: Horizontal Horisontaalne Vertical Vertikaalne Circular Radiaalne Top Left - Bottom Right Loodest kagusse Bottom Left - Top Right Edelast kirdesse Main Area Font Details Peamise teksti üksikasjad Define the font and display characteristics for the Display text Määra font ja teised teksti omadused Font: Font: Size: Suurus: Line Spacing: Reavahe: &Outline: &Kontuurjoon: &Shadow: &Vari: Bold Rasvane Italic Kaldkiri Footer Area Font Details Jaluse fondi üksikasjad Define the font and display characteristics for the Footer text Määra jaluse font ja muud omadused Text Formatting Details Teksti vorminduse üksikasjad Allows additional display formatting information to be defined Võimaldab määrata lisavorminduse andmeid Horizontal Align: Rõhtjoondus: Left Vasakul Right Paremal Center Keskel Output Area Locations Väljundala asukoht &Main Area &Peamine ala &Use default location &Vaikimisi asukoha kasutamine X position: X-asukoht: px px Y position: Y-asukoht: Width: Laius: Height: Kõrgus: Use default location Vaikimisi asukoha kasutamine Theme name: Kujunduse nimi: Edit Theme - %s Teema muutmine - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. See nõustaja aitab kujundusi luua ja muuta. Klõpsa edasi nupul, et alustada tausta määramisest. Transitions: Üleminekud: &Footer Area &Jaluse ala Starting color: Algusvärvus: Ending color: Lõppvärvus: Background color: Tausta värvus: Justify Rööpjoondus Layout Preview Kujunduse eelvaade Transparent Läbipaistev Preview and Save Eelvaatle ja salvesta Preview the theme and save it. Kujunduse eelvaade ja salvestamine. Background Image Empty Taustapilt on tühi Select Image Pildi valimine Theme Name Missing Kujunduse nimi puudub There is no name for this theme. Please enter one. Sellel kujundusel pole nime. Palun sisesta nimi. Theme Name Invalid Kujunduse nimi pole sobiv. Invalid theme name. Please enter one. Kujunduse nimi ei sobi. Palun sisesta uus nimi. Solid color Ühtlane värv color: värv: Allows you to change and move the Main and Footer areas. Võimaldab muuta ja liigutada peamise teksti ja jaluse ala. You have not selected a background image. Please select one before continuing. Sa pole valinud taustapilti. Palun vali enne jätkamist taustapilt. OpenLP.ThemesTab Global Theme Üldine kujundus Theme Level Kujunduse tase S&ong Level &Laulu tase Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Laul kuvatakse sellele andmebaasis määratud kujundusega. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust. &Service Level &Teenistuse tase Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. &Global Level &Üleüldine tase Use the global theme, overriding any themes associated with either the service or the songs. Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. Themes Kujundused Universal Settings Universaalsed sätted &Wrap footer text Jaluse teksti &reamurdmine OpenLP.Ui Delete the selected item. Valitud kirje kustutamine. Move selection up one position. Valiku liigutamine ühe koha võrra ülespoole. Move selection down one position. Valiku liigutamine ühe koha võrra allapoole. &Vertical Align: &Vertikaaljoondus: Finished import. Importimine lõpetatud. Format: Vorming: Importing Importimine Importing "%s"... "%s" importimine... Select Import Source Importimise allika valimine Select the import format and the location to import from. Vali importimise vorming ja asukoht, kust importida. Open %s File %s faili avamine %p% %p% Ready. Valmis. Starting import... Importimise alustamine... You need to specify at least one %s file to import from. A file type e.g. OpenSong Pead määrama vähemalt ühe %s faili, millest importida. Welcome to the Bible Import Wizard Tere tulemast Piibli importimise nõustajasse Welcome to the Song Export Wizard Tere tulemast laulude eksportimise nõustajasse Welcome to the Song Import Wizard Tere tulemast laulude importimise nõustajasse Author Singular Autor Authors Plural Autorid © Copyright symbol. © Song Maintenance Laulude haldus Topic Singular Teema Topics Plural Teemad Title and/or verses not found Pealkirja ja/või salme ei leitud XML syntax error XML süntaksi viga Welcome to the Bible Upgrade Wizard Tere tulemast Piibli uuendamise nõustajasse Open %s Folder Ava %s kaust You need to specify one %s file to import from. A file type e.g. OpenSong Pead valim ühe %s faili, millest importida. You need to specify one %s folder to import from. A song format e.g. PowerSong Pead valima ühe %s kausta, millest importida. Importing Songs Laulude importimine Welcome to the Duplicate Song Removal Wizard Tere tulemast duplikaatlaulude eemaldamise nõustajasse Written by Autor Author Unknown Autor teadmata About Rakendusest &Add &Lisa Add group Lisa grupp Advanced Täpsem All Files Kõik failid Automatic Automaatne Background Color Taustavärv Bottom All Browse... Lehitse... Cancel Loobu CCLI number: CCLI number: Create a new service. Uue teenistuse loomine. Confirm Delete Kustutamise kinnitus Continuous Jätkuv Default Vaikimisi Default Color: Vaikimisi värvus: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Teenistus %Y-%m-%d %H-%M &Delete &Kustuta Display style: Kuvalaad: Duplicate Error Korduse viga &Edit &Muuda Empty Field Tühi väli Error Viga Export Ekspordi File Fail File Not Found Faili ei leitud File %s not found. Please try selecting it individually. Faili %s ei leitud. Palun vali see eraldi. pt Abbreviated font pointsize unit pt Help Abi h The abbreviated unit for hours t Invalid Folder Selected Singular Valiti sobimatu kataloog Invalid File Selected Singular Valiti sobimatu fail Invalid Files Selected Plural Valiti sobimatud failid Image Pilt Import Impordi Layout style: Paigutuse laad: Live Ekraan Live Background Error Ekraani tausta viga Live Toolbar Ekraani tööriistariba Load Laadi Manufacturer Singular Tootja Manufacturers Plural Tootjad Model Singular Mudel Models Plural Mudelid m The abbreviated unit for minutes m Middle Keskel New Uus New Service Uus teenistus New Theme Uus kujundus Next Track Järgmine pala No Folder Selected Singular Ühtegi kasuta pole valitud No File Selected Singular Ühtegi faili pole valitud No Files Selected Plural Ühtegi faili pole valitud No Item Selected Singular Ühtegi elementi pole valitud No Items Selected Plural Ühtegi elementi pole valitud OpenLP is already running. Do you wish to continue? OpenLP juba töötab. Kas tahad jätkata? Open service. Teenistuse avamine. Play Slides in Loop Slaide korratakse Play Slides to End Slaide näidatakse üks kord Preview Eelvaade Print Service Teenistuse printimine Projector Singular Projektor Projectors Plural Projektorid Replace Background Tausta asendamine Replace live background. Ekraanil tausta asendamine. Reset Background Tausta lähtestamine Reset live background. Ekraanil esialgse tausta taastamine. s The abbreviated unit for seconds s Save && Preview Salvesta && eelvaatle Search Otsi Search Themes... Search bar place holder text Teemade otsing... You must select an item to delete. Pead valima elemendi, mida tahad kustutada. You must select an item to edit. Pead valima elemendi, mida tahad muuta. Settings Sätted Save Service Teenistuse salvestamine Service Teenistus Optional &Split Valikuline &slaidivahetus Split a slide into two only if it does not fit on the screen as one slide. Slaidi kaheks tükeldamine ainult juhul, kui see ei mahu tervikuna ekraanile. Start %s Algus %s Stop Play Slides in Loop Slaidide kordamise lõpetamine Stop Play Slides to End Slaidide ühekordse näitamise lõpetamine Theme Singular Kujundus Themes Plural Kujundused Tools Tööriistad Top Üleval Unsupported File Fail pole toetatud: Verse Per Slide Iga salm eraldi slaidil Verse Per Line Iga salm eraldi real Version Versioon View Vaade View Mode Vaate režiim CCLI song number: CCLI laulunumber: Preview Toolbar Tööriistariba eelvaade OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s ja %s %s, and %s Locale list separator: end %s, ja %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Allika valiku dialoogi liides PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Esitluse plugin</strong><br />Esitluse plugin võimaldab näidata esitlusi erinevate programmidega. Saadaolevate esitlusprogrammide valik on saadaval valikukastis. Presentation name singular Esitlus Presentations name plural Esitlused Presentations container title Esitlused Load a new presentation. Uue esitluse laadimine. Delete the selected presentation. Valitud esitluse kustutamine. Preview the selected presentation. Valitud esitluse eelvaade. Send the selected presentation live. Valitud esitluse saatmine ekraanile. Add the selected presentation to the service. Valitud esitluse lisamine teenistusele. PresentationPlugin.MediaItem Select Presentation(s) Esitluste valimine Automatic Automaatne Present using: Esitluseks kasutatakse: File Exists Fail on olemas A presentation with that filename already exists. Sellise nimega esitluse fail on juba olemas. This type of presentation is not supported. Seda liiki esitlus ei ole toetatud. Presentations (%s) Esitlused (%s) Missing Presentation Puuduv esitlus The presentation %s is incomplete, please reload. Esitlus %s pole täielik, palun laadi uuesti. The presentation %s no longer exists. Esitlust %s pole enam olemas. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Powerpointi integratsioonil esines viga ja esitlus jääb pooleli. Alusta esitlust uuesti, kui sa siiski tahad seda näidata. PresentationPlugin.PresentationTab Available Controllers Saadaolevad juhtijad %s (unavailable) %s (pole saadaval) Allow presentation application to be overridden Esitluste rakendust saab käsitsi muuta PDF options PDFi valikud Use given full path for mudraw or ghostscript binary: Kasutatakse järgmist mudraw'i või ghostscript'i binaarfaili täielikku asukohta: Select mudraw or ghostscript binary. Vali mudraw'i või ghostscript'i binaarfail. The program is not ghostscript or mudraw which is required. See fail peab olema ghostscript'i või mudraw'i vormingus, aga pole. PowerPoint options PowerPointi valikud Clicking on a selected slide in the slidecontroller advances to next effect. Valitud slaidi klõpsamine slaidivahetajas sooritab järgmise sammu. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). PowerPointil lubatakse juhtida esitlusakne asukohta ja suurust (trikk Windows 8 skaleerimisprobleemi jaoks). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <b>Kaugjuhtimisplugin</b><br>See plugin võimaldab töötavale openlp programmile teadete saatmise teisest arvutist veebilehitseja või mõne muu rakenduse kaudu.<br>Selle peamine rakendus on teadete saatmine lastehoiust. Remote name singular Kaugjuhtimine Remotes name plural Kaugjuhtimine Remote container title Kaugjuhtimine Server Config Change Serveri seadistuse muutus Server configuration changes will require a restart to take effect. Serveri seadistuse muutused rakenduvad pärast taaskäivitust. RemotePlugin.Mobile Service Manager Teenistuse haldur Slide Controller Slaidikontroller Alerts Teated Search Otsi Home Kodu Refresh Värskenda Blank Tühjenda Theme Kujundus Desktop Töölaud Show Näita Prev Eelm Next Järgmine Text Tekst Show Alert Kuva teade Go Live Ekraanile Add to Service Lisa teenistusele Add &amp; Go to Service Lisa ja liigu teenistusse No Results Tulemusi pole Options Valikud Service Teenistus Slides Slaidid Settings Sätted Remote Kaugjuhtimine Stage View Lavavaade Live View Ekraan RemotePlugin.RemoteTab Serve on IP address: Serveeritakse ainult IP-aadressilt: Port number: Pordi number: Server Settings Serveri sätted Remote URL: Kaugjuhtimise URL: Stage view URL: Lavavaate URL: Display stage time in 12h format Laval kuvatakse aega 12-tunni vormingus Android App Androidi rakendus Live view URL: Ekraanivaate UR: HTTPS Server HTTPS server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. SSL sertifikaati ei leitud. HTTPS server ei ole saadaval kui SSL sertifikaati ei leita. Loe selle kohta käsiraamatust. User Authentication Kasutaja autentimine User id: Kasutaja ID: Password: Parool: Show thumbnails of non-text slides in remote and stage view. Mitte-teksti slaididest näidatakse kaug- ja lavavaates pisipilte. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Skanni QR koodi või klõpsa Androidi rakenduse <a href="%s">allalaadimiseks</a> Google Playst. SongUsagePlugin &Song Usage Tracking &Laulude kasutuse jälgimine &Delete Tracking Data &Kustuta kogutud andmed Delete song usage data up to a specified date. Laulukasutuse andmete kustutamine kuni antud kuupäevani. &Extract Tracking Data &Eralda laulukasutuse andmed Generate a report on song usage. Genereeri raport laulude kasutuse kohta. Toggle Tracking Laulukasutuse jälgimine Toggle the tracking of song usage. Laulukasutuse jälgimise sisse- ja väljalülitamine. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. SongUsage name singular Laulukasutus SongUsage name plural Laulukasutus SongUsage container title Laulukasutus Song Usage Laulude kasutus Song usage tracking is active. Laulukasutuse jälgimine on aktiivne Song usage tracking is inactive. Laulukasutuse jälgimine pole aktiivne. display kuva printed prinditud SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Laulukasutuse andmete kustutamine Delete Selected Song Usage Events? Kas kustutada valitud laulude kasutamise sündmused? Are you sure you want to delete selected Song Usage data? Kas oled kindel, et tahad kustutada valitud laulude kasutuse andmed? Deletion Successful Kustutamine edukas Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Kuupäeva valimine, millest vanemad laulukasutused andmed tuleks kustutada. Kõik kuni selle kuupäevani salvestatud andmed kustutatakse pöördumatult. All requested data has been deleted successfully. Kõik päritud andmed kustutati edukalt. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Laulukasutuse salvestamine Select Date Range Vali kuupäevade vahemik to kuni Report Location Raporti asukoht Output File Location Väljundfaili asukoht usage_detail_%s_%s.txt laulukasutuse_andmed_%s_%s.txt Report Creation Raporti koostamine Report %s has been successfully created. Raport %s on edukalt loodud. Output Path Not Selected Sihtkohta pole valitud You have not set a valid output location for your song usage report. Please select an existing path on your computer. Sa pole valinud sobivat laulukasutuse raporti asukohta. Palun vali mõni sinu arvutis asuv olemasolev kaust. Report Creation Failed Raporti koostamine nurjus An error occurred while creating the report: %s Raporti koostamisel esines viga: %s SongsPlugin &Song &Laul Import songs using the import wizard. Laulude importimine importimise nõustajaga. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. &Re-index Songs &Indekseeri laulud uuesti Re-index the songs database to improve searching and ordering. Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda. Reindexing songs... Laulude kordusindekseerimine... Arabic (CP-1256) Araabia (CP-1256) Baltic (CP-1257) Balti (CP-1257) Central European (CP-1250) Kesk-Euroopa (CP-1250) Cyrillic (CP-1251) Kirillitsa (CP-1251) Greek (CP-1253) Kreeka (CP-1253) Hebrew (CP-1255) Heebrea (CP-1255) Japanese (CP-932) Jaapani (CP-932) Korean (CP-949) Korea (CP-949) Simplified Chinese (CP-936) Lihtsustatud Hiina (CP-936) Thai (CP-874) Tai (CP-874) Traditional Chinese (CP-950) Tradistiooniline Hiina (CP-950) Turkish (CP-1254) Türgi (CP-1254) Vietnam (CP-1258) Vietnami (CP-1258) Western European (CP-1252) Lääne-Euroopa (CP-1252) Character Encoding Märgikodeering The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Kodeering on vajalik märkide õige esitamise jaoks. Tavaliselt on vaikimisi valik õige. Please choose the character encoding. The encoding is responsible for the correct character representation. Palun vali märgikodeering. Kodeering on vajalik märkide õige esitamise jaoks. Song name singular Laul Songs name plural Laulud Songs container title Laulud Exports songs using the export wizard. Eksportimise nõustaja abil laulude eksportimine. Add a new song. Uue laulu lisamine. Edit the selected song. Valitud laulu muutmine. Delete the selected song. Valitud laulu kustutamine. Preview the selected song. Valitud laulu eelvaade. Send the selected song live. Valitud laulu saatmine ekraanile. Add the selected song to the service. Valitud laulu lisamine teenistusele. Reindexing songs Laulude uuesti indekseerimine CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Laulude importimine CCLI SongSelect teenusest. Find &Duplicate Songs Leia &dubleerivad laulud Find and remove duplicate songs in the song database. Dubleerivate laulude otsimine ja eemaldamine laulude andmebaasist. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Sõnad Music Author who wrote the music of a song Muusika Words and Music Author who wrote both lyrics and music of a song Sõnad ja muusika Translation Author who translated the song Tõlge SongsPlugin.AuthorsForm Author Maintenance Autorite haldus Display name: Täisnimi: First name: Eesnimi: Last name: Perekonnanimi: You need to type in the first name of the author. Pead sisestama autori eesnime. You need to type in the last name of the author. Pead sisestama autori perekonnanime. You have not set a display name for the author, combine the first and last names? Sa ei ole sisestanud autori kuvamise nime, kas see tuleks kombineerida ees- ja perekonnanimest? SongsPlugin.CCLIFileImport The file does not have a valid extension. Sellel failil pole sobiv laiend. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Vigane DreamBeam laulufail. Puudub DreamSongi silt. SongsPlugin.EasyWorshipSongImport Administered by %s Haldab %s "%s" could not be imported. %s "%s" pole võimalik importida. %s Unexpected data formatting. Ootamatu andmevorming. No song text found. Lauluteksti ei leitud. [above are Song Tags with notes imported from EasyWorship] [ülemised laulusildid on koos märkustega imporditud EasyWorshipist] This file does not exist. Faili pole olemas. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. "Songs.MB" faili ei leitud. See peaks olema "Songs.DB" failiga samas kaustas. This file is not a valid EasyWorship database. See fail ei ole sobiv EasyWorship andmebaas. Could not retrieve encoding. Kodeeringut pole võimalik hankida. SongsPlugin.EditBibleForm Meta Data Metaandmed Custom Book Names Kohandatud raamatunimed SongsPlugin.EditSongForm Song Editor Lauluredaktor &Title: &Pealkiri: Alt&ernate title: &Teine pealkiri: &Lyrics: &Sõnad: &Verse order: &Salmide järjekord: Ed&it All Muuda &kõiki Title && Lyrics Pealkiri && sõnad &Add to Song &Lisa laulule &Remove &Eemalda A&dd to Song L&isa laulule R&emove &Eemalda New &Theme Uus &kujundus Copyright Information Autoriõiguse andmed Comments Kommentaarid Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid Add Author Autori lisamine This author does not exist, do you want to add them? Seda autorit veel pole, kas tahad autori lisada? This author is already in the list. See autor juba on loendis. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Sa ei ole valinud ühtegi sobilikku autorit. Vali autor loendist või sisesta uue autori nimi ja klõpsa uue nupul "Lisa laulule autor". Add Topic Teema lisamine This topic does not exist, do you want to add it? Sellist teemat pole. Kas tahad selle lisada? This topic is already in the list. See teema juba on loendis. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Sa pole valinud sobivat teemat. Vali teema kas loendist või sisesta uus teema ja selle lisamiseks klõpsa nupule "Lisa laulule teema". You need to type in a song title. Pead sisestama laulu pealkirja. You need to type in at least one verse. Pead sisestama vähemalt ühe salmi. You need to have an author for this song. Pead lisama sellele laulule autori. Linked Audio Lingitud audio Add &File(s) Lisa &faile Add &Media Lisa &meediat Remove &All Eemalda &kõik Open File(s) Failide avamine <strong>Warning:</strong> Not all of the verses are in use. <strong>Hoiatus</strong> Mitte kõik salmid pole kasutusel. <strong>Warning:</strong> You have not entered a verse order. <strong>Hoiatus:</strong> sa pole sisestanud salmide järjekorda. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Pole salmi, mis vastaks "%(invalid)s". Sobivad kanded on %(valid)s. Palun eralda salmid tühikutega. Invalid Verse Order Sobimatu salmijärjekord &Edit Author Type &Muuda autori liiki Edit Author Type Autori liigi muutmine Choose type for this author Vali selle autori liik There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Pole salme, mis vastaksid "%(invalid)s". Sobivad kanded on %(valid)s. Palun eralda salmid tühikutega. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Salmi muutmine &Verse type: &Salmi liik: &Insert &Sisesta Split a slide into two by inserting a verse splitter. Slaidi tükeldamine slaidipoolitajaga. SongsPlugin.ExportWizardForm Song Export Wizard Laulude eksportimise nõustaja Select Songs Laulude valimine Check the songs you want to export. Vali laulud, mida tahad eksportida. Uncheck All Eemalda märgistus Check All Märgi kõik Select Directory Kataloogi valimine Directory: Kataloog: Exporting Eksportimine Please wait while your songs are exported. Palun oota, kuni kõik laulud on eksporditud. You need to add at least one Song to export. Pead lisama vähemalt ühe laulu, mida tahad eksportida. No Save Location specified Salvestamise asukohta pole määratud Starting export... Eksportimise alustamine... You need to specify a directory. Pead määrama kataloogi. Select Destination Folder Sihtkausta valimine Select the directory where you want the songs to be saved. Vali kataloog, kuhu tahad laulu salvestada. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. See nõustaja aitab laule eksportida avatud ja vabas <strong>OpenLyricsi</strong> ülistuslaulude vormingus. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Vigane Foilpresenteri laulufail. Salme ei leitud. SongsPlugin.GeneralTab Enable search as you type Otsing sisestamise ajal SongsPlugin.ImportWizardForm Select Document/Presentation Files Dokumentide/esitluste valimine Song Import Wizard Laulude importimise nõustaja This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. See nõustaja aitab importida paljudes erinevates vormingutes laule. Klõpsa all asuvat edasi nuppu, et jätkata importimise vormingu valimisega. Generic Document/Presentation Tavaline dokument/esitlus Add Files... Lisa faile... Remove File(s) Faili(de) eemaldamine Please wait while your songs are imported. Palun oota, kuni laule imporditakse. Words Of Worship Song Files Words Of Worship Song failid Songs Of Fellowship Song Files Songs Of Fellowship laulufailid SongBeamer Files SongBeameri laulufailid SongShow Plus Song Files SongShow Plus laulufailid Foilpresenter Song Files Foilpresenteri laulufailid Copy Kopeeri Save to File Salvesta faili The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship importija on keelatud, kuna OpenLP-l puudub ligiäpääs OpenOffice'le või LibreOffice'le. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Tavalise dokumendi/esitluse importija on keelatud, kuna OpenLP-l puudub ligipääs OpenOffice'le või LibreOffice'le. OpenLyrics Files OpenLyrics failid CCLI SongSelect Files CCLI SongSelecti failid EasySlides XML File EasySlides XML fail EasyWorship Song Database EasyWorship laulude andmebaas DreamBeam Song Files DreamBeam'i laulufailid You need to specify a valid PowerSong 1.0 database folder. Pead valima õige PowerSong 1.0 andmebaasi kataloogi. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Kõigepealt teisenda oma ZionWorx andmebaas CSV tekstifailiks, vastavalt juhendile <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">kasutaja käsiraamatus</a>. SundayPlus Song Files SundayPlus'i laulufailid This importer has been disabled. Importija on keelatud. MediaShout Database MediaShout andmebaas The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importija töötab ainult Windowsi platvormil. See on keelatud puuduva Pythoni mooduli pärast. Selle importija kasutamiseks pead paigaldama "pyodbc" mooduli. SongPro Text Files SongPro tekstifailid SongPro (Export File) SongPro (eksportfail) In SongPro, export your songs using the File -> Export menu Ekspordi oma laulud SongPro menüüst kasutades File -> Export. EasyWorship Service File EasyWorship teenistuse fail WorshipCenter Pro Song Files WorshipCenter Pro laulufailid The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Pro importija on toetatud ainult Windowsis. See on keelatud, kuna vajalik Pythoni moodul puudub. Kui tahad seda importijat kasutada, paigalda "pyodbc" moodul. PowerPraise Song Files PowerPraise laulufailid PresentationManager Song Files PresentationManager'i laulufailid ProPresenter 4 Song Files ProPresenter 4 laulufailid Worship Assistant Files Worship Assistant failid Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Worship Assistant'is ekspordi oma andmebaas CSV faili. OpenLyrics or OpenLP 2 Exported Song OpenLyrics või OpenLP 2.0-st eksporditud laul OpenLP 2 Databases OpenLP 2.0 andmebaasid LyriX Files LyriX failid LyriX (Exported TXT-files) LyriX (eksporditud tekstifailid) VideoPsalm Files VideoPsalmi failid VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s VideoPsalmi laulikud asuvad tavaliselt kaustas %s SongsPlugin.LyrixImport Error: %s Viga: %s SongsPlugin.MediaFilesForm Select Media File(s) Meediafailide valimine Select one or more audio files from the list below, and click OK to import them into this song. Vali järgnevast loendist vähemalt üks audiofail ning klõpsa nupule Olgu, et seda sellesse laulu importida. SongsPlugin.MediaItem Titles Pealkirjad Lyrics Laulusõnad CCLI License: CCLI litsents: Entire Song Kogu laulust Maintain the lists of authors, topics and books. Autorite, teemade ja laulikute loendi haldamine. copy For song cloning koopia Search Titles... Pealkirjade otsing... Search Entire Song... Otsing kogu laulust... Search Lyrics... Laulusõnade otsing... Search Authors... Autorite otsing... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. MediaShout andmebaasi ei suudetud avada. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. See pole korrektne OpenLP 2 laulude andmebaas. SongsPlugin.OpenLyricsExport Exporting "%s"... "%s" eksportimine... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Vigane OpenSong laulufail. Selles puudub silt "song". SongsPlugin.PowerSongImport No songs to import. Pole laule, mida importida. Verses not found. Missing "PART" header. Salme ei leitud. "PART" päis puudub. No %s files found. Ühtegi %s faili ei leitud. Invalid %s file. Unexpected byte value. Sobimatu %s fail. Ootamatu väärtusega bait. Invalid %s file. Missing "TITLE" header. Sobimatu %s fail. Puudub "TITLE" päis. Invalid %s file. Missing "COPYRIGHTLINE" header. Sobimatu %s fail. Puudub "COPYRIGHTLINE" päis. SongsPlugin.SongBookForm &Name: &Nimi: &Publisher: &Kirjastaja: You need to type in a name for the book. Pead sisestama lauliku nime. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Laulude eksportimine nurjus. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Eksportimine lõpetati. Nende failide importimiseks kasuta <strong>OpenLyrics</strong> importijat. Your song export failed because this error occurred: %s Sinu laulu eksportimine nurjus, kuna esines viga: %s SongsPlugin.SongImport copyright autoriõigus The following songs could not be imported: Järgnevaid laule polnud võimalik importida: Cannot access OpenOffice or LibreOffice Puudub ligipääs OpenOffice'le või LibreOffice'le Unable to open file Faili avamine ei õnnestunud File not found Faili ei leitud SongsPlugin.SongMaintenanceForm Could not add your author. Autori lisamine pole võimalik. This author already exists. See autor on juba olemas. Could not add your topic. Sinu teema lisamine pole võimalik. This topic already exists. Teema on juba olemas. Could not add your book. Lauliku lisamine pole võimalik. This book already exists. See laulik on juba olemas. Could not save your changes. Muudatuste salvestamine pole võimalik. Could not save your modified author, because the author already exists. Sinu muudetud autorit pole võimalik salvestada, kuna autor on juba olemas. Could not save your modified topic, because it already exists. Sinu muudetud teemat pole võimalik salvestada, kuna selline on juba olemas. Delete Author Autori kustutamine Are you sure you want to delete the selected author? Kas oled kindel, et tahad kustutada valitud autori? This author cannot be deleted, they are currently assigned to at least one song. Seda autorit pole võimalik kustutada, kuna ta on märgitud vähemalt ühe laulu autoriks. Delete Topic Teema kustutamine Are you sure you want to delete the selected topic? Kas oled kindel, et tahad valitud teema kustutada? This topic cannot be deleted, it is currently assigned to at least one song. Seda teemat pole võimalik kustutada, kuna see on märgib vähemalt ühte laulu. Delete Book Lauliku kustutamine Are you sure you want to delete the selected book? Kas oled kindel, et tahad valitud lauliku kustutada? This book cannot be deleted, it is currently assigned to at least one song. Seda laulikut pole võimalik kustutada, kuna vähemalt üks laul kuulub sellesse laulikusse. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s on juba olemas. Kas sa tahad, et laulud autoriga %s liidetaks olemasolevale autorile %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Teema %s on juba olemas. Kas sa tahad, et laulud teemaga %s kasutaksid olemasolevat teemat %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Laulik %s on juba olemas. Kas sa tahad, et lauliku %s laulud liidetaks olemasoleva laulikuga %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect'i importija <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Märkus:</strong> Laulude importimiseks CCLI SongSelect'ist on vajalik internetiühendus. Username: Kasutajanimi: Password: Parool: Save username and password Salvesta kasutajanimi ja parool Login Logi sisse Search Text: Otsi teksti: Search Otsi Found %s song(s) Leiti %s laul(u) Logout Logi välja View Vaade Title: Pealkiri: Author(s): Autor(id): Copyright: Autoriõigus: CCLI Number: CCLI number: Lyrics: Laulusõnad: Back Tagasi Import Impordi More than 1000 results Üle 1000 tulemuse Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Sinu otsing tagastas üle 1000 tulemuse, see peatati. Palun täpsusta otsingut, et saada paremad tulemused. Logging out... Väljalogimine... Save Username and Password Salvesta kasutajanimi ja parool WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. HOIATUS: Sinu kasutajanime ja parooli salvestamine on EBATURVALINE, sinu parool salvestatakse LIHTTEKSTINA. Klõpsa jah, et parool siiski salvestada või ei, et sellest loobuda. Error Logging In Viga sisselogimisel There was a problem logging in, perhaps your username or password is incorrect? Sisselogimisel esines viga, võib-olla on kasutajanimi või parool valed? Song Imported Laul imporditud Incomplete song Poolik laul This song is missing some information, like the lyrics, and cannot be imported. Laulust puudub osa andmeid, näiteks sõnad, seda ei saa importida. Your song has been imported, would you like to import more songs? Sinu laul imporditi. Kas tahad veel laule importida? Stop SongsPlugin.SongsTab Songs Mode Laulurežiim Display verses on live tool bar Salme kuvatakse ekraani tööriistaribal Update service from song edit Teenistuse uuendamine laulu muutmisel Import missing songs from service files Teenistuse failidest imporditakse puuduvad laulud Display songbook in footer Jaluses kuvatakse lauliku infot Display "%s" symbol before copyright info Enne autoriõiguste infot "%s" märgi kuvamine SongsPlugin.TopicsForm Topic Maintenance Teemade haldus Topic name: Teema nimi: You need to type in a topic name. Pead sisestama teema nime. SongsPlugin.VerseType Verse Salm Chorus Refrään Bridge Vahemäng Pre-Chorus Eelrefrään Intro Sissejuhatus Ending Lõpetus Other Muu SongsPlugin.VideoPsalmImport Error: %s Viga: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Vigane Words of Worship laulufail. Puudu on "%s" päis. Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Vigane Words of Worship laulufail. Puudu on "%s" sõne. SongsPlugin.WorshipAssistantImport Error reading CSV file. Viga CSV faili lugemisel. Line %d: %s Rida %d: %s Decoding error: %s Viga dekodeerimisel: %s File not valid WorshipAssistant CSV format. Fail pole korrektses WorshipAssistant CSV vormingus. Record %d Kirje %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. WorshipCenter Pro andmebaasiga pole võimalik ühenduda. SongsPlugin.ZionWorxImport Error reading CSV file. Viga CSV faili lugemisel. File not valid ZionWorx CSV format. Fail ei ole korrektses ZionWorx CSV vormingus. Line %d: %s Rida %d: %s Decoding error: %s Viga dekodeerimisel: %s Record %d Kirje %d Wizard Wizard Nõustaja This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. See nõustaja aitab sul eemaldada topeltlaulud lauluandmebaasist. Sa saad üle vaadata kõik võimalikud topeltlaulud enne nende kustutamist. Seega ühtegi laulu ei kustutata ilma sinu selgesõnalise kinnituseta. Searching for duplicate songs. Topeltlaulude otsimine Please wait while your songs database is analyzed. Palun oota, kuni laulude andmebaasi analüüsitakse Here you can decide which songs to remove and which ones to keep. Siin saad valida, millised laulud salvestada ja millised eemaldada. Review duplicate songs (%s/%s) Eemalda dubleerivad laulud (%s/%s) Information Andmed No duplicate songs have been found in the database. Andmebaasist ei leitud ühtegi dubleerivat laulu. OpenLP-2.4/resources/i18n/da.ts0000644000175000017500000154543512657640340015317 0ustar raoulraoul AlertsPlugin &Alert &Meddelelse Show an alert message. Vis en meddelelse. Alert name singular Meddelelse Alerts name plural Meddelelser Alerts container title Meddelelser <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Meddelelse-udvidelse</strong><br />Dette udvidelsesmodul kontrollerer visningen af meddelelser pÃ¥ skærmen. AlertsPlugin.AlertForm Alert Message Meddelelse Alert &text: Te&kst: &New &Ny &Save &Gem Displ&ay V&is Display && Cl&ose Vis && l&uk New Alert Ny meddelelse &Parameter: &Parameter: No Parameter Found Intet parameter fundet You have not entered a parameter to be replaced. Do you want to continue anyway? Du har ikke indtastet et parameter der skal erstattes. Vil du fortsætte alligevel? No Placeholder Found Ingen pladsholder fundet The alert text does not contain '<>'. Do you want to continue anyway? Meddelelsesteksten indeholder ikke '<>'. Vil du fortsætte alligevel? You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke angivet nogen tekst i din meddelelse. Skriv noget tekst og klik sÃ¥ pÃ¥ Ny. AlertsPlugin.AlertsManager Alert message created and displayed. Meddelelse oprettet og vist. AlertsPlugin.AlertsTab Font Skrifttype Font name: Skriftnavn: Font color: Skriftfarve: Background color: Baggrundsfarve: Font size: Skriftstørrelse: Alert timeout: Varighed af meddelse: BiblesPlugin &Bible &Bibel Bible name singular Bibel Bibles name plural Bibler Bibles container title Bibler No Book Found Ingen bog fundet No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen matchende bog kunne findes i denne bibel. Tjek om du har stavet bogens navn rigtigt. Import a Bible. Importér en bibel. Add a new Bible. Tilføj en ny bibel. Edit the selected Bible. Redigér den valgte bibel. Delete the selected Bible. Slet den valgte bibel. Preview the selected Bible. ForhÃ¥ndsvis den valgte bibel. Send the selected Bible live. Fremvis den valgte bibel. Add the selected Bible to the service. Tilføj den valgte bibel til program. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibel-udvidelse</strong><br />Dette udvidelsesmodul gør det muligt at vise bibelvers fra forskellige kilder i løbet af gudstjenesten. &Upgrade older Bibles &Opgradér ældre bibler Upgrade the Bible databases to the latest format. Opgradér bibel-databaserne til det nyeste format. Genesis 1. Mosebog Exodus 2. Mosebog Leviticus 3. Mosebog Numbers 4. Mosebog Deuteronomy 5. Mosebog Joshua Josvabogen Judges Dommerbogen Ruth Ruths Bog 1 Samuel 1. Samuelsbog 2 Samuel 2. Samuelsbog 1 Kings 1. Kongebog 2 Kings 2. Kongebog 1 Chronicles 1. Krønikebog 2 Chronicles 2. Krønikebog Ezra Ezras Bog Nehemiah Nehemias' Bog Esther Esters Bog Job Jobs Bog Psalms Salmernes Bog Proverbs Ordsprogenes Bog Ecclesiastes Prædikerens Bog Song of Solomon Højsangen Isaiah Esajas' Bog Jeremiah Jeremias' Bog Lamentations Klagesangene Ezekiel Ezekiels Bog Daniel Daniels Bog Hosea Hoseas' Bog Joel Joels Bog Amos Amos' Bog Obadiah Obadias' Bog Jonah Jonas' Bog Micah Mikas Bog Nahum Nahums Bog Habakkuk Habakkuks Bog Zephaniah Sefanias' Bog Haggai Haggajs Bog Zechariah Zakarias' Bog Malachi Malakias' Bog Matthew Matthæusevangeliet Mark Markusevangeliet Luke Lukasevangeliet John Johannesevangeliet Acts Apostlenes Gerninger Romans Romerbrevet 1 Corinthians 1. Korintherbrev 2 Corinthians 2. Korintherbrev Galatians Galaterbrevet Ephesians Efeserbrevet Philippians Filipperbrevet Colossians Kolossenserbrevet 1 Thessalonians 1. Thessalonikerbrev 2 Thessalonians 2. Thessalonikerbrev 1 Timothy 1. Timotheusbrev 2 Timothy 2. Timotheusbrev Titus Titusbrevet Philemon Filemonbrevet Hebrews Hebræerbrevet James Jakobsbrevet 1 Peter 1. Petersbrev 2 Peter 2. Petersbrev 1 John 1. Johannesbrev 2 John 2. Johannesbrev 3 John 3. Johannesbrev Jude Judasbrevet Revelation Johannes' Ã…benbaring Judith Judits Bog Wisdom Visdommens Bog Tobit Tobits Bog Sirach Siraks Bog Baruch Baruks Bog 1 Maccabees 1. Makkabæerbog 2 Maccabees 2. Makkabæerbog 3 Maccabees 3. Makkabæerbog 4 Maccabees 4. Makkabæerbog Rest of Daniel Tilføjelser til Daniels Bog Rest of Esther Tilføjelser til Esters Bog Prayer of Manasses Manasses Bøn Letter of Jeremiah Jeremias' Brev Prayer of Azariah Azarias Bøn Susanna Susannah Bel Bel og Dragen 1 Esdras 3. Esdras 2 Esdras 4. Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 vers - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 til , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 og end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse slut BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Du skal angive et udgavenavn til din bibel. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du skal angive din bibels ophavsret. Bibler i Public Domain skal markeres som sÃ¥dan. Bible Exists Bibel eksisterer This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibel eksisterer allerede. Importér en anden bibel for at slette den eksisterende. You need to specify a book name for "%s". Du skal angive et bognavn for "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Bognavnet "%s" er ikke korrekt. Tal kan kun benyttes i begyndelsen og skal følges af et eller flere ikke-numeriske tegn. Duplicate Book Name Duplikeret bognavn The Book Name "%s" has been entered more than once. Bognavnet "%s" er blevet brugt mere end én gang. BiblesPlugin.BibleManager Scripture Reference Error Fejl med skriftsted Web Bible cannot be used Online bibel kan ikke benyttes Text Search is not available with Web Bibles. Tekstsøgning virker ikke med online bibler. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du indtastede ikke et søgeord. Du kan opdele forskellige søgeord med mellemrum for at søge efter alle søgeordene, og du kan opdele dem med et komma for at søge efter ét af dem. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Der er ikke installeret nogle bibler pÃ¥ nuværende tidspunkt. Benyt importerings-guiden til at installere én eller flere bibler. No Bibles Available Ingen bibler tilgængelige Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Din skriftstedshenvisning er enten ikke understøttet af OpenLP, eller ogsÃ¥ er den ugyldig. Se efter om din henvisning er i overensstemmelse med et af de følgende mønstre, eller konsultér manualen. Bog Kapitel Bog Kapitel%(range)sKapitel Bog Kapitel%(verse)sVers%(range)sVers Bog Kapitel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Bog Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers%(range)sVers Bog Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers BiblesPlugin.BiblesTab Verse Display Visning af vers Only show new chapter numbers Vis kun nye kapitelnumre Bible theme: Bibeltema: No Brackets Ingen paranteser ( And ) ( Og ) { And } { Og } [ And ] [ Og ] Note: Changes do not affect verses already in the service. Bemærk: Ændringer pÃ¥virker ikke vers der allerede er tilføjet til programmet. Display second Bible verses Vis sekundære bibelvers Custom Scripture References Brugerdefinerede skriftstedshenvisninger Verse Separator: Vers-separator: Range Separator: Rækkevidde-separator: List Separator: Liste-separator: End Mark: Slutmærke: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Flere forskellige vers-separatorere kan angives. De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. English Dansk Default Bible Language Standardsprog for bibler Book name language in search field, search results and on display: Sproget for bognavne i søgefelt, søgeresultater og ved visning: Bible Language Bibelsprog Application Language Programsprog Show verse numbers Vis versnumre BiblesPlugin.BookNameDialog Select Book Name Vælg bogens navn Current name: Nuværende navn: Corresponding name: Tilsvarende navn: Show Books From Vis bøger fra Old Testament Gamle Testamente New Testament Nye Testamente Apocrypha Apokryfe skrifter The following book name cannot be matched up internally. Please select the corresponding name from the list. Det følgende bognavn kan ikke findes internt. Vælg det tilsvarende navn fra listen. BiblesPlugin.BookNameForm You need to select a book. Du er nødt til først at vælge en bog. BiblesPlugin.CSVBible Importing books... %s Importerer bøger... %s Importing verses... done. Importerer vers... færdig. BiblesPlugin.EditBibleForm Bible Editor Bibelredigering License Details Licensdetaljer Version name: Navn pÃ¥ udgave: Copyright: Ophavsret: Permissions: Tilladelser: Default Bible Language Standardsprog for bibler Book name language in search field, search results and on display: Sprog for bognavn i søgefelt, søgeresultater og ved visning: Global Settings Globale indstillinger Bible Language Bibelsprog Application Language Programsprog English Dansk This is a Web Download Bible. It is not possible to customize the Book Names. Dette er en bibel som er hentet fra internettet. Det er ikke muligt at tilpasse bognavnene. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. For at benytte brugerdefinerede bognavne skal "Bibelsprog" være valgt i metadata-fanen, eller hvis "Globale indstillinger" er valgt, pÃ¥ bibel-siden i Konfigurér OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Registrerer bibelen og indlæser bøger... Registering Language... Registrerer sprog... Importing %s... Importing <book name>... Importerer %s... Download Error Hentningsfejl There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Der opstod en fejl ved hentningen af dit valg af vers. Efterse din internetforbindelse, og hvis fejlen fortsat opstÃ¥r sÃ¥ overvej at rapportere fejlen. Parse Error Fortolkningfejl There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Der opstod et problem med at udpakke dit valg af vers. Hvis denne fejl fortsætter med at opstÃ¥, sÃ¥ overvej at rapportere fejlen. BiblesPlugin.ImportWizardForm Bible Import Wizard Guide til importering af bibler This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Denne guide vil hjælpe dig med at importere bibler i forskellige formater. Klik pÃ¥ næsteknappen herunder for at begynde processen ved at vælge et format at importere fra. Web Download Hentning fra nettet Location: Placering: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bibel: Download Options Hentingsmuligheder Server: Server: Username: Brugernavn: Password: Adgangskode: Proxy Server (Optional) Proxy server (valgfri) License Details Licensdetaljer Set up the Bible's license details. Indstil bibelens licensdetaljer. Version name: Navn pÃ¥ udgave: Copyright: Ophavsret: Please wait while your Bible is imported. Vent venligst imens din bibel bliver importeret. You need to specify a file with books of the Bible to use in the import. Angiv en fil med bøger fra Bibelen der skal importeres. You need to specify a file of Bible verses to import. Vælg en fil med bibelvers der skal importeres. You need to specify a version name for your Bible. Du skal angive et udgavenavn til din bibel. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du skal angive din bibels ophavsret. Bibler i Public Domain skal markeres som sÃ¥dan. Bible Exists Bibel eksisterer This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibel eksisterer allerede. Importér en anden bibel for at slette den eksisterende. Your Bible import failed. Din bibelimport slog fejl. CSV File CSV-fil Bibleserver Bibelserver Permissions: Tilladelser: Bible file: Bibelfil: Books file: Bogfil: Verses file: Versfil: Registering Bible... Registrerer bibel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrerede bibel. Bemærk venligst at vers hentes pÃ¥ forespørgsel og at en internetforbindelse derfor er pÃ¥krævet. Click to download bible list Klik for at hente liste over bibler Download bible list Hent liste over bibler Error during download Fejl under hentning An error occurred while downloading the list of bibles from %s. Der opstod en fejl under hentningen af listen af bibler fra %s BiblesPlugin.LanguageDialog Select Language Vælg sprog OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP er ikke i stand til at bestemme bibeloversættelsens sprog. Vælg sproget fra listen herunder. Language: Sprog: BiblesPlugin.LanguageForm You need to choose a language. Du er nødt til at vælge et sprog. BiblesPlugin.MediaItem Quick Hurtig Find: Find: Book: Bog: Chapter: Kapitel: Verse: Vers: From: Fra: To: Til: Text Search Tekstsøgning Second: Anden: Scripture Reference Skriftsted Toggle to keep or clear the previous results. Vælg om du vil beholde eller fjerne de forrige resultater. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Du kan ikke kombinere søgeresultater som indeholder bÃ¥de enkelte og dobbelte bibelvers. Vil du slette dine søgeresultater og begynde en ny søgning? Bible not fully loaded. Bibel ikke færdigindlæst. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den sekundære bibel indeholder ikke alle versene der er i den primære bibel. Kun de vers der kan findes i begge bibler vil blive vist. %d vers er ikke blevet inkluderet blandt resultaterne. Search Scripture Reference... Søg skriftstedshenvisning... Search Text... Søgetekst... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Er du sikker pÃ¥ at du vil slette bibelen "%s" fra OpenLP? Du bliver nødt til at genimportere denne bibel for at bruge den igen. Advanced Avanceret BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Forkert bibel-filtype. OpenSong-bibler er muligvis komprimerede. Du er nødt til at udpakke dem før at de kan importeres. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Forkert bibel-filtype. Dette ligner en Zefania XML bibel, prøv at vælge import af Zefania i stedet. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Fjerner ubrugte tags (dette kan tage et par minutter)... Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Vælg en mappe til sikkerhedskopiering Bible Upgrade Wizard Guide til opgradering af bibler This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Denne guide vil hjælpe dig med at opgradere dine eksisterende bibler fra en tidligere udgave af OpenLP 2. Klik pÃ¥ næste-knappen herunder for at begynde opgraderingen. Select Backup Directory Vælg mappe til sikkerhedskopiering Please select a backup directory for your Bibles Vælg en mappe til sikkerhedskopiering af dine bibler Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Tidligere udgaver af OpenLP 2.0 kan ikke benytte opgraderede bibler. Dette vil lave en sikkerhedskopi af dine nuværende bibler, sÃ¥ at du simpelt og nemt kan kopiere filerne tilbage til din OpenLP datamappe, hvis du fÃ¥r brug for at gÃ¥ tilbage til en tidligere udgave af OpenLP. Vejledning til hvordan man genopretter filer kan findes blandt vores <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. Vælg en placering til sikkerhedskopier af dine bibler. Backup Directory: Mappe til sikkerhedskopiering: There is no need to backup my Bibles Der er ikke brug for at lave sikkerhedskopier af mine bibler Select Bibles Vælg bibler Please select the Bibles to upgrade Vælg de bibler der skal opgraderes Upgrading Opgraderer Please wait while your Bibles are upgraded. Vent imens dine bibler bliver opgraderet. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Sikkerhedskopieringen mislykkedes. For at sikkerhedskopiere dine bibler skal du have tilladelse til at skrive til den givne mappe. Upgrading Bible %s of %s: "%s" Failed Opgradering af bibel %s af %s: "%s" Slog fejl Upgrading Bible %s of %s: "%s" Upgrading ... Opgraderer bibel %s af %s: "%s" Opgraderer ... Download Error Hentningsfejl To upgrade your Web Bibles an Internet connection is required. For at opgradere dine netbibler skal der være forbindelse til internettet. Upgrading Bible %s of %s: "%s" Upgrading %s ... Opgraderer bibel %s af %s: "%s" Opgraderer %s ... Upgrading Bible %s of %s: "%s" Complete Opgraderer bibel %s af %s: "%s" Færdig , %s failed , %s slog fejl Upgrading Bible(s): %s successful%s Opgradering af bibler: %s fuldført%s Upgrade failed. Opgradering slog fejl. You need to specify a backup directory for your Bibles. Du er skal vælge en mappe til sikkerhedskopier af dine bibler. Starting upgrade... PÃ¥begynder opgradering... There are no Bibles that need to be upgraded. Der er ingen bibler der har brug for at blive opgraderet. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Opgraderer bibel(er): %(success)d lykkedes %(falied_text)s Læg mærke til at vers fra netbibler hentes ved forspørgsel og en internetforbindelse er derfor pÃ¥krævet. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Forkert bibel-filtype. Zefania-bibler er muligvis komprimerede. Du er nødt til at udpakke dem før at de kan importeres. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importerer %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Brugerdefineret dias Custom Slides name plural Brugerdefinerede dias Custom Slides container title Brugerdefinerede dias Load a new custom slide. Indlæs et nyt brugerdefineret dias. Import a custom slide. Importér et brugerdefineret dias. Add a new custom slide. Tilføj et nyt brugerdefineret dias. Edit the selected custom slide. Redigér det valgte brugerdefinerede dias. Delete the selected custom slide. Slet det valgte brugerdefinerede dias. Preview the selected custom slide. ForhÃ¥ndsvis det valgte brugerdefinerede dias. Send the selected custom slide live. Fremvis det valgte brugerdefinerede dias. Add the selected custom slide to the service. Tilføj det valgte brugerdefinerede dias til programmet. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>"Brugerdefineret dias"-udvidelse</strong><br />Dette udvidelsesmodul giver mulighed for at lave brugerdefinerede tekstdias der kan vises pÃ¥ skærmen pÃ¥ samme mÃ¥de som sangteksterne. Denne tilføjelse giver større frihed end sangtilføjelsen. CustomPlugin.CustomTab Custom Display Brugerdefineret visning Display footer Vis sidefod Import missing custom slides from service files Importér manglende brugerdefinerede dias fra programfiler CustomPlugin.EditCustomForm Edit Custom Slides Redigér brugerdefinerede dias &Title: &Titel: Add a new slide at bottom. Tilføj et nyt dias i bunden. Edit the selected slide. Redigér det valgte dias. Edit all the slides at once. Redigér alle dias pÃ¥ samme tid. Split a slide into two by inserting a slide splitter. Del et dias op i to ved at indsætte en diasopdeler. The&me: T&ema: &Credits: &Bidragsydere: You need to type in a title. Du skal skrive en titel. Ed&it All Re&digér alle Insert Slide Indsæt dias You need to add at least one slide. Du skal tilføje mindst ét dias. CustomPlugin.EditVerseForm Edit Slide Redigér dias CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Er du sikker pÃ¥ at du vil slette de %d valgte brugerdefinerede dias? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Billede-udvidelse</strong><br />Dette udvidelsesmodul gør det muligt at vise billeder <br/>En af denne udvidelses særlige egenskaber er evnen til at gruppere en række billeder i programhÃ¥ndteringen, hvilket gør det nemmere at vise flere billeder i træk. Denne udvidelse kan ogsÃ¥ benytte OpenLPs automatiske afspilning til at lave et diasshow der kører af sig selv. Udover det kan billeder fra denne udvidelse benyttes til at tilsidesætte det nuværende temas baggrund, hvilket viser tekstbaserede punkter som sange med det valgte billede som baggrund istedet for baggrunden forsynet af temaet. Image name singular Billede Images name plural Billeder Images container title Billeder Load a new image. Indlæs et nyt billede. Add a new image. Tilføj et nyt billede. Edit the selected image. Redigér det valgte billede. Delete the selected image. Slet det valgte billede. Preview the selected image. ForhÃ¥ndsvis det valgte billede. Send the selected image live. Fremvis det valgte billede. Add the selected image to the service. Tilføj det valgte billede til programmet. ImagePlugin.AddGroupForm Add group Tilføj gruppe Parent group: Overordnet gruppe: Group name: Gruppenavn: You need to type in a group name. Du skal skrive et gruppenavn Could not add the new group. Kunne ikke tilføje den nye gruppe. This group already exists. Denne gruppe eksisterer allerede. ImagePlugin.ChooseGroupForm Select Image Group Vælg billedgruppe Add images to group: Tilføj billeder til gruppe: No group Ingen gruppe Existing group Eksisterende gruppe New group Ny gruppe ImagePlugin.ExceptionDialog Select Attachment Vælg bilag ImagePlugin.MediaItem Select Image(s) Vælg billede(r) You must select an image to replace the background with. Du skal vælge et billede til at erstatte baggrunden. Missing Image(s) Manglende billede(r) The following image(s) no longer exist: %s De følgende billeder eksisterer ikke længere: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? De følgende billeder eksisterer ikke længere: %s Vil du tilføje de andre billeder alligevel? There was a problem replacing your background, the image file "%s" no longer exists. Der opstod et problem med at erstatte din baggrund; billedfilen "%s" eksisterer ikke længere. There was no display item to amend. Der var intet visningspunkt at ændre. -- Top-level group -- -- Øverste gruppe -- You must select an image or group to delete. Du skal vælge en gruppe eller et billede der skal slettes. Remove group Fjern gruppe Are you sure you want to remove "%s" and everything in it? Er du sikker pÃ¥ at du vil slette "%s" og alt deri? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Synlig baggrund for billeder med anderledes dimensionsforhold end skærm. Media.player Audio Lyd Video Video VLC is an external player which supports a number of different formats. VLC er en ekstern medieafspiller som understøtter en lang række forskellige formater. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit er en medieafspiller som afvikles i en web browser. Denne medieafspiller kan vise tekst oven pÃ¥ video. This media player uses your operating system to provide media capabilities. Denne medieafspiller benytter dit styresystem til at afspille medier. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Medie-udvidelse</strong><br />Dette udvidelsesmodul gør det muligt at afspille lyd og video. Media name singular Medie Media name plural Medie Media container title Medie Load new media. Indlæs nye medier. Add new media. Tilføj nye medier. Edit the selected media. Redigér de valgte medier. Delete the selected media. Slet de valgte medier. Preview the selected media. ForhÃ¥ndsvis de valgte medier. Send the selected media live. Fremvis det valgte medie. Add the selected media to the service. Tilføj de valgte medier til programmet. MediaPlugin.MediaClipSelector Select Media Clip Vælg medieklip Source Kilde Media path: Sti til medie: Select drive from list Vælg drev fra liste Load disc Indlæs disk Track Details Spordetaljer Title: Titel: Audio track: Lyd spor: Subtitle track: Undertekst spor: HH:mm:ss.z TT:mm:ss.z Clip Range Klip længde Start point: Startpunkt: Set start point Sæt startpunkt Jump to start point Hop til startpunkt End point: Slutpunkt Set end point Sæt slutpunkt Jump to end point Hop til slutpunkt MediaPlugin.MediaClipSelectorForm No path was given Ingen sti blev angivet Given path does not exists Den angivne sti eksisterer ikke An error happened during initialization of VLC player Der opstod en fejl under initialiseringen af VLC afspilleren VLC player failed playing the media VLC afspilleren kunne ikke afspille mediet CD not loaded correctly CD'en blev ikke indlæst korrekt The CD was not loaded correctly, please re-load and try again. CD'en blev ikke indlæst korrekt, prøv at indlæse den igen. DVD not loaded correctly DVD'en blev ikke indlæst korrekt The DVD was not loaded correctly, please re-load and try again. DVD'en blev ikke indlæst korrekt, prøv at indlæse den igen. Set name of mediaclip Angiv medieklippets navn Name of mediaclip: Medieklippets navn: Enter a valid name or cancel Indtast et gyldigt navn eller afbryd Invalid character Ugyldigt tegn The name of the mediaclip must not contain the character ":" Medieklippets navn mÃ¥ ikke indholde tegnet ":" MediaPlugin.MediaItem Select Media Vælg medier You must select a media file to delete. Vælg den mediefil du vil slette. You must select a media file to replace the background with. Vælg den mediefil du vil erstatte baggrunden med. There was a problem replacing your background, the media file "%s" no longer exists. Der opstod et problem med at erstatte din baggrund. Mediefilen "%s" eksisterer ikke længere. Missing Media File Manglende mediefil The file %s no longer exists. Filen %s eksisterer ikke længere. Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) There was no display item to amend. Der var intet visningspunkt at ændre. Unsupported File Ikke-understøttet fil Use Player: Benyt afspiller: VLC player required VLC-afspilleren er pÃ¥krævet VLC player required for playback of optical devices VLC-afspilleren er pÃ¥krævet for at kunne afspille fra optiske drev Load CD/DVD Indlæs CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Indlæs CD/DVD - kun understøttet nÃ¥r VLC er installeret og slÃ¥et til The optical disc %s is no longer available. Det optiske drev %s er ikke længere tilgængeligt. Mediaclip already saved Medieklip er allerede gemt This mediaclip has already been saved Dette medieklip er allerede blevet gemt MediaPlugin.MediaTab Allow media player to be overridden Tillad at medieafspilleren bliver tilsidesat Start Live items automatically Start fremvisningspunkter automatisk OPenLP.MainWindow &Projector Manager Pro&jektorhÃ¥ndtering OpenLP Image Files Billedfiler Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bibelformatet er blevet ændret. Du er nødt til at opgradere dine nuværende bibler. Skal OpenLP opgradere dem nu? Backup Sikkerhedskopi OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP er blevet opgraderet, vil du oprette en sikkerhedskopi af OpenLPs data mappe? Backup of the data folder failed! Sikkerhedskopiering af datamappen fejlede! A backup of the data folder has been created at %s En sikkerhedskopi af datamappen blev oprettet i %s Open Ã…ben OpenLP.AboutForm Credits Bidragsydere License Licens build %s build %s 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; version 2 of the License. Dette program er fri software; du kan redistribuere det og/eller ændre det under vilkÃ¥rene angivet i GNU General Public License som er udgivet af Free Software Foundation; udgave 2 af licensen. 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 below for more details. Dette program udgives i hÃ¥bet om at det vil være brugbart, men UDEN NOGEN GARANTI; endda uden den forudsatte garanti om SALGSEGNETHED eller EGNETHED TIL ET BESTEMT FORMÃ…L. Se herunder for flere detaljer. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP er et gratis program til projektorfremvisning i kirker, eller til fremvisning af sangtekster, og kan benyttes til at fremvise dias med sange, bibelvers, videoer, billeder og endda præsentationer (Hvis Impress, PowerPoint, eller PowerPoint Viewer er installeret) til gudstjenester ved hjælp af en computer og en projektor. Lær mere om OpenLP: http://openlp.org/ OpenLP er skrevet og vedligeholdt af frivillige. Hvis du ønsker at se flere gratis kristne programmer blive skrevet, sÃ¥ overvej venligst at melde dig som frivillig pÃ¥ knappen herunder. Volunteer Giv en hÃ¥nd Project Lead Projektleder Developers Udviklere Contributors Bidragsydere Packagers Pakkere Testers Testere Translators Oversættere Afrikaans (af) Afrikaans (af) Czech (cs) Tjekkisk (cs) Danish (da) Dansk (da) German (de) Tysk (de) Greek (el) Græsk (el) English, United Kingdom (en_GB) Engelsk, Storbritannien (en_GB) English, South Africa (en_ZA) Engelsk, Sydafrika (en_ZA) Spanish (es) Spansk (es) Estonian (et) Estisk (et) Finnish (fi) Finsk (fi) French (fr) Fransk (fr) Hungarian (hu) Ungarsk (hu) Indonesian (id) Indonesisk (id) Japanese (ja) Japansk (ja) Norwegian BokmÃ¥l (nb) Norsk BokmÃ¥l (nb) Dutch (nl) Hollandsk (nl) Polish (pl) Polsk (pl) Portuguese, Brazil (pt_BR) Portugisisk, Brasilien (pt_BR) Russian (ru) Russisk (ru) Swedish (sv) Svensk (sv) Tamil(Sri-Lanka) (ta_LK) Tamilsk (Sri Lanka) (ta_LK) Chinese(China) (zh_CN) Kinesisk (Kina) (zh_CN) Documentation Dokumentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Lavet med Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Afsluttende tak "For sÃ¥ledes elskede Gud verden at han gav sin enebÃ¥rne søn for at enhver som tror pÃ¥ ham ikke skal fortabes, men have evigt liv." -- Johannes 3:16 Og sidst, men ikke mindst, gÃ¥r den sidste tak til Gud vor fader, for at sende sin søn til at dø pÃ¥ korset, og derved sætte os fri fra synd. Vi bringer dette stykke software gratis til dig fordi Han har gjort os fri. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Delvis copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Brugerfladeindstillinger Number of recent files to display: Antal af seneste filer der skal vises: Remember active media manager tab on startup Husk den aktive mediehÃ¥ndteringsfane ved opstart Double-click to send items straight to live Dobbeltklik for at fremvise punkter direkte Expand new service items on creation Udvid nye programpunkter ved oprettelse Enable application exit confirmation Benyt bekræftigelse før lukning af programmet Mouse Cursor Musemarkør Hide mouse cursor when over display window Gem musemarkøren nÃ¥r den er over visningsvinduet Default Image Standardbillede Background color: Baggrundsfarve: Image file: Billedfil: Open File Ã…bn fil Advanced Avanceret Preview items when clicked in Media Manager ForhÃ¥ndsvis elementer nÃ¥r de klikkes pÃ¥ i mediehÃ¥ndteringen Browse for an image file to display. Find en billedfil som skal vises. Revert to the default OpenLP logo. Vend tilbage til OpenLPs standardlogo. Default Service Name Standard programnavn Enable default service name Benyt standardnavn for programmer Date and Time: Dato og tid: Monday Mandag Tuesday Tirsdag Wednesday Onsdag Friday Fredag Saturday Lørdag Sunday Søndag Now Nu Time when usual service starts. Klokkeslet hvor mødet normalt begynder. Name: Navn: Consult the OpenLP manual for usage. Se OpenLP-manualen for hjælp til brug. Revert to the default service name "%s". GÃ¥ tilbage til standardnavnet for programmer "%s". Example: Eksempel: Bypass X11 Window Manager OmgÃ¥ X11 vindueshÃ¥ndtering Syntax error. Syntaksfejl. Data Location Placering af data Current path: Nuværende sti: Custom path: Brugerdefineret sti: Browse for new data file location. Vælg et nyt sted til opbevaring af data. Set the data location to the default. Sæt dataplaceringen til standard. Cancel Annullér Cancel OpenLP data directory location change. Annullér ændringen af placeringen af OpenLP-data. Copy data to new location. Kopiér data til ny placering. Copy the OpenLP data files to the new location. Kopiér OpenLP datafilerne til en ny placering. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ADVARSEL:</strong> Den nye datamappe indeholder OpenLP datafiler. Disse filer vil blive slettet under en kopiering. Data Directory Error Fejl i datamappe Select Data Directory Location Vælg placeringen af datamappen Confirm Data Directory Change Bekræft ændringen af datamappen Reset Data Directory Nulstil datamappe Overwrite Existing Data Overskriv eksisterende data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP datamappe blev ikke fundet %s Denne datamappe blev tidligere ændret fra OpenLPs standardplacering. Hvis den nye placering var pÃ¥ et flytbart medie, sÃ¥ er dette medie nødt til at blive gjort tilgængelig. Klik "Nej" for at stoppe med at indlæse OpenLP, sÃ¥ at du kan ordne problemet. Klik "Ja" for at nulstille datamappen til dens standardplacering. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Er du sikker pÃ¥ at du vil ændre placeringen af OpenLP-datamappen til: %s Datamappen vil blive ændret nÃ¥r OpenLP lukkes. Thursday Torsdag Display Workarounds Skærmløsninger Use alternating row colours in lists Brug skiftende farver i lister WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? ADVARSEL: Placeringen du har valgt %s ser ud til at indeholde OpenLP-datafiler. Ønsker du at erstatte disse filer med de nuværende datafiler? Restart Required Genstart er pÃ¥krævet This change will only take effect once OpenLP has been restarted. Denne ændring træder først i kræft nÃ¥r OpenLP er blevet genstartet. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Er du sikker pÃ¥ at du vil ændre placeringen af datamappen til standard-placeringen? Denne placering vil blive benyttet nÃ¥r OpenLP lukkes. OpenLP.ColorButton Click to select a color. Klik for at vælge en farve. OpenLP.DB RGB RGB Video Video Digital Digital Storage Lager Network Netværk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Lager 1 Storage 2 Lager 2 Storage 3 Lager 3 Storage 4 Lager 4 Storage 5 Lager 5 Storage 6 Lager 6 Storage 7 Lager 7 Storage 8 Lager 8 Storage 9 Lager 9 Network 1 Netværk 1 Network 2 Netværk 2 Network 3 Netværk 3 Network 4 Netværk 4 Network 5 Netværk 5 Network 6 Netværk 6 Network 7 Netværk 7 Network 8 Netværk 8 Network 9 Netværk 9 OpenLP.ExceptionDialog Error Occurred Der opstod en fejl Send E-Mail Send e-mail Save to File Gem til fil Attach File Vedhæft fil Description characters to enter : %s Antal tegn i beskrivelsen der skal indtastes : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Indtast venligst en beskrivelse af det du foretog dig der fik denne fejl til at opstÃ¥. Skriv helst pÃ¥ engelsk. (Mindst 20 tegn) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Ups! OpenLP stødte ind i et problem, og kunne ikke gendanne. Teksten i kassen herunder indeholder information, som kan være nyttig for OpenLP-udviklerne, sÃ¥ send venligst en e-mail til bugs@openlp.org sammen med en detaljeret beskrivelse af, hvad du foretog dig da problemet opstod. Tilføj ogsÃ¥ de filer, der fik problemet til at opstÃ¥. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Gem fejlrapport Text files (*.txt *.log *.text) Tekst-filer (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Omdøb fil New File Name: Nyt filnavn: File Copy Kopiér fil OpenLP.FirstTimeLanguageForm Select Translation Vælg oversættelse Choose the translation you'd like to use in OpenLP. Vælg den oversættelse du ønsker at benytte i OpenLP. Translation: Oversættelse: OpenLP.FirstTimeWizard Songs Sange First Time Wizard Velkomstguide Welcome to the First Time Wizard Velkommen til velkomstguiden Activate required Plugins Aktivér pÃ¥krævede udvidelser Select the Plugins you wish to use. Vælg de udvidelser du ønsker at benytte. Bible Bibel Images Billeder Presentations Præsentationer Media (Audio and Video) Medier (lyd og video) Allow remote access Tillad fjernadgang Monitor Song Usage OvervÃ¥g sangforbrug Allow Alerts Vis meddelelser Default Settings Standardindstillinger Downloading %s... Henter %s... Enabling selected plugins... Aktiverer valgte udvidelser... No Internet Connection Ingen internetforbindelse Unable to detect an Internet connection. Kunne ikke detektere en internetforbindelse. Sample Songs Eksempler pÃ¥ sange Select and download public domain songs. Vælg og hent offentligt tilgængelige sange. Sample Bibles Eksempler pÃ¥ bibler Select and download free Bibles. Vælg og hent gratis bibler. Sample Themes Eksempler pÃ¥ temaer Select and download sample themes. Vælg og hent eksempler pÃ¥ temaer. Set up default settings to be used by OpenLP. Indstil standardindstillingerne som skal benyttes af OpenLP. Default output display: Standard output-skærm: Select default theme: Vælg standardtema: Starting configuration process... Starter konfigureringsproces... Setting Up And Downloading Sætter op og henter Please wait while OpenLP is set up and your data is downloaded. Vent venligst pÃ¥ at OpenLP indstilles og dine data hentes. Setting Up Sætter op Custom Slides Brugerdefinerede dias Finish Slut No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ingen internetforbindelse blev fundet. Velkomstguiden har brug for en internetforbindelse for at kunne hente eksempler pÃ¥ sange, bibler og temaer. Klik pÃ¥ Færdig-knappen nu for at starte OpenLP med de grundlæggende indstillinger, men uden eksempeldata. For at køre velkomstguiden igen og importere disse eksempeldata pÃ¥ et senere tidspunkt, skal du tjekke din internetforbindelse og køre denne guide igen ved at vælge "Værktøjer/Kør velkomstguide igen" fra OpenLP. Download Error Hentningsfejl There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Der var problemer med forbindelsen under hentning fra internettet, sÃ¥ yderligere hentninger springes over. Prøv at køre velkomstguiden igen senere. Download complete. Click the %s button to return to OpenLP. Hentning færdig. Klik pÃ¥ %s-knappen for at vende tilbage til OpenLP. Download complete. Click the %s button to start OpenLP. Hentning færdig. Klik pÃ¥ %s-knappen for at starte OpenLP. Click the %s button to return to OpenLP. Klik pÃ¥ %s-knappen for at vende tilbage til OpenLP. Click the %s button to start OpenLP. Klik pÃ¥ %s-knappen for at starte OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Der var problemer med forbindelsen under hentning fra internettet, sÃ¥ yderligere hentninger springes over. Prøv at køre velkomstguiden igen senere. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Denne guide vil hjælpe dig med at konfigurere OpenLP til brug for første gang. Tryk pÃ¥ %s-knappen herunder for at begynde. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. For at annullere velkomstguiden fuldstændigt (uden at starte OpenLP), sÃ¥ klik pÃ¥ %s-knappen nu. Downloading Resource Index Henter ressourceoversigt Please wait while the resource index is downloaded. Vent venligst mens ressourceoversigten hentes. Please wait while OpenLP downloads the resource index file... Vent venligst mens OpenLP henter ressourceoversigten... Downloading and Configuring Henter og konfigurerer Please wait while resources are downloaded and OpenLP is configured. Vent venligst mens ressource hentes og OpenLP konfigureres. Network Error Netværksfejl There was a network error attempting to connect to retrieve initial configuration information Der opstod en netværksfejl under forsøget pÃ¥ at hente information om den indledende konfiguration. Cancel Annullér Unable to download some files Nogle bibler kunne ikke hentes OpenLP.FormattingTagDialog Configure Formatting Tags Konfigurér formatteringsmærker Description Beskrivelse Tag Mærke Start HTML Start HTML End HTML Afslut HTML Default Formatting Standardformattering Custom Formatting Brugerdefineret formattering OpenLP.FormattingTagForm <HTML here> <HTML her> Validation Error Valideringsfejl Description is missing Beskrivelse mangler Tag is missing Mærke mangler Tag %s already defined. Mærke %s er allerede defineret. Description %s already defined. Beskrivelse %s er allerede defineret. Start tag %s is not valid HTML Startmærke %s er ikke gyldig HTML End tag %(end)s does not match end tag for start tag %(start)s Slutmærke %(end)s passer ikke sammen med slutmærke %(start)s OpenLP.FormattingTags Red Rød Black Sort Blue BlÃ¥ Yellow Gul Green Grøn Pink Lyserød Orange Orange Purple Lilla White Hvid Superscript Hævet skrift Subscript Sænket skrift Paragraph Afsnit Bold Fed Italics Kursiv Underline Understreget Break Linjeskift OpenLP.GeneralTab General Generelt Monitors Skærme Select monitor for output display: Vælg skærm til visning af output: Display if a single screen Vis ogsÃ¥ hvis der kun er en enkelt skærm Application Startup Programopstart Show blank screen warning Vis advarsel ved mørkelagt skærm Automatically open the last service Ã…bn automatisk det seneste program Show the splash screen Vis logo Application Settings Programindstillinger Prompt to save before starting a new service Spørg om gem før nyt program oprettes Automatically preview next item in service ForhÃ¥ndvis automatisk det næste punkt pÃ¥ programmet sec sek CCLI Details CCLI-detaljer SongSelect username: SongSelect brugernavn: SongSelect password: SongSelect adgangskode: X X Y Y Height Højde Width Bredde Check for updates to OpenLP Søg efter opdateringer til OpenLP Unblank display when adding new live item Stop mørkelægning nÃ¥r nyt fremvisningspunkt tilføjes Timed slide interval: Interval mellem automatisk diasskift: Background Audio Baggrundslyd Start background audio paused Start baggrundslyd pÃ¥ pause Service Item Slide Limits Begrænsninger for programpunkter i dias Override display position: Tilsidesæt visningsposition: Repeat track list Gentag sætliste Behavior of next/previous on the last/first slide: Opførsel for næste/forrige pÃ¥ det sidste/første dias: &Remain on Slide &Bliv pÃ¥ dias &Wrap around &Start forfra &Move to next/previous service item &GÃ¥ til næste/forrige programpunkt OpenLP.LanguageManager Language Sprog Please restart OpenLP to use your new language setting. Genstart OpenLP for at benytte dine nye sprogindstillinger. OpenLP.MainDisplay OpenLP Display OpenLP-visning OpenLP.MainWindow &File &Fil &Import &Importér &Export &Eksportér &View &Vis M&ode &Opsætning &Tools V&ærktøjer &Settings &Indstillinger &Language &Sprog &Help &Hjælp Service Manager ProgramhÃ¥ndtering Theme Manager TemahÃ¥ndtering Open an existing service. Ã…bn et eksisterende program. Save the current service to disk. Gem det nuværende program pÃ¥ disk. Save Service As Gem program som Save the current service under a new name. Gem det nuværende program under et nyt navn. E&xit A&fslut Quit OpenLP Luk OpenLP &Theme &Tema &Configure OpenLP... &Indstil OpenLP... &Media Manager &MediehÃ¥ndtering Toggle Media Manager SlÃ¥ mediehÃ¥ndteringen til Toggle the visibility of the media manager. Angiv om mediehÃ¥ndteringen skal være synlig. &Theme Manager &TemahÃ¥ndtering Toggle Theme Manager SlÃ¥ temahÃ¥ndteringen til Toggle the visibility of the theme manager. Angiv om temahÃ¥ndteringen skal være synlig. &Service Manager &ProgramhÃ¥ndtering Toggle Service Manager SlÃ¥ programhÃ¥ndteringen til Toggle the visibility of the service manager. Angiv om programhÃ¥ndteringen skal være synlig. &Preview Panel For&hÃ¥ndsvisningspanel Toggle Preview Panel AlÃ¥ forhÃ¥ndsvisningspanelet til Toggle the visibility of the preview panel. Angiv om forhÃ¥ndsvisningspanelet skal være synligt. &Live Panel &Fremvisningspanel Toggle Live Panel SlÃ¥ fremvisningspanelet til Toggle the visibility of the live panel. Angiv om fremvisningspanelet skal være synligt. List the Plugins Vis udvidelsesmodulerne &User Guide &Brugerguide &About O&m More information about OpenLP Mere information om OpenLP &Online Help &Online hjælp &Web Site &Hjemmeside Use the system language, if available. Benyt systemsproget, hvis det er muligt. Set the interface language to %s Sæt brugerfladens sprog til %s Add &Tool... Tilføj &Værktøj... Add an application to the list of tools. Tilføj et program til listen over værktøjer. &Default &Standard Set the view mode back to the default. Sæt visningsopsætningen tilbage til standard. &Setup &Opsætning Set the view mode to Setup. Sæt visningsopsætningen til Opsætning. &Live &Fremvisning Set the view mode to Live. Sæt visningsopsætningen til Fremvisning. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Udgave %s af OpenLP er nu tilgængelig (du bruger nu udgave %s). Du kan hente den seneste udgave fra http://openlp.org/. OpenLP Version Updated OpenLP version opdateret OpenLP Main Display Blanked OpenLPs hovedvisning er mørkelagt The Main Display has been blanked out Hovedvisningen er mørkelagt Default Theme: %s Standard tema: %s English Please add the name of your language here Dansk Configure &Shortcuts... Konfigurér g&enveje... Open &Data Folder... Ã…bn &datamappe... Open the folder where songs, bibles and other data resides. Ã…bn den mappe hvor sange, bibler og andre data er placeret. &Autodetect &Autodetektér Update Theme Images Opdatér temabilleder Update the preview images for all themes. Opdatér forhÃ¥ndsvisningsbillederne for alle temaer. Print the current service. Udskriv det nuværende program. L&ock Panels L&Ã¥s paneler Prevent the panels being moved. Forhindr panelerne i at flyttes. Re-run First Time Wizard Kør velkomstguide igen Re-run the First Time Wizard, importing songs, Bibles and themes. Kør velkomstguiden igen, hvor du importerer sange, bibler og temaer. Re-run First Time Wizard? Kør velkomstguide igen? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Er du sikker pÃ¥ at du vil køre velkomstguiden igen? At køre velkomstguiden igen kan medføre ændringer i din nuværende OpenLP konfiguration, og kan muligvis tilføje sange til din eksisterende sangliste og ændre dit standard-tema. Clear List Clear List of recent files Ryd liste Clear the list of recent files. Ryd liste over seneste filer. Configure &Formatting Tags... Konfigurér &formateringsmærker... Export OpenLP settings to a specified *.config file Eksportér OpenLP-indstillinger til en speciferet *.config-fil Settings Indstillinger Import OpenLP settings from a specified *.config file previously exported on this or another machine Importér OpenLP-indstillinger fra en specificeret *.config-fil som er eksporteret pÃ¥ denne-, eller en anden computer Import settings? Importér indstillinger? Open File Ã…bn fil OpenLP Export Settings Files (*.conf) Eksporterede OpenLP-indstillingsfiler (*.conf) Import settings Importér indstillinger OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP lukker nu ned. Importerede indstillinger vil blive anvendt næste gang du starter OpenLP. Export Settings File Eksportér indstillingsfil OpenLP Export Settings File (*.conf) OpenLP-eksporteret indstillingsfil (*.conf) New Data Directory Error Fejl ved ny datamappe Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopierer OpenLP-data til en ny datamappeplacering - %s - Vent venligst til at kopieringen er færdig OpenLP Data directory copy failed %s Kopieringen af OpenLP datamappen slog fejl %s General Generelt Library Bibliotek Jump to the search box of the current active plugin. Hop til den aktive udvidelses søgeboks. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Er du sikker pÃ¥ at du vil importere indstillinger? Ved importering af indstillinger vil der laves permanente ændringer ved din nuværende OpenLP-konfiguration. Importering af ukorrekte indstillinger kan forÃ¥rsage uregelmæssig opførsel eller at OpenLP lukker uventet. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Den fil du har valgt ser ikke ud til at være en gyldig OpenLP-indstillingsfil. Behandlingen er blevet termineret og ingen ændringer er blevet foretaget. Projector Manager ProjektorhÃ¥ndtering Toggle Projector Manager SlÃ¥ projektorhÃ¥ndteringen til Toggle the visibility of the Projector Manager Angiv om projektorhÃ¥ndtering skal være synlig. Export setting error Fejl ved eksporten af indstillinger The key "%s" does not have a default value so it will be skipped in this export. Nøglen "%s" har ikke nogen standardværdi, sÃ¥ den vil blive sprunget over i denne eksport. An error occurred while exporting the settings: %s Der opstod en fejl under eksporten af indstillingerne: %s &Recent Services &Seneste programmer &New Service &Nyt program &Open Service &Ã…bn program &Save Service &Gem program Save Service &As... Gem program &som... &Manage Plugins &HÃ¥ndtér udvidelser Exit OpenLP Afslut OpenLP Are you sure you want to exit OpenLP? Er du sikker pÃ¥ at du vil afslutte OpenLP? &Exit OpenLP &Afslut OpenLP OpenLP.Manager Database Error Databasefejl The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Databasen der er ved at blive indlæst blev oprettet i en nyere udgave af OpenLP. Databasen er udgave %d, mens OpenLP forventer udgave %d. Databasen vil ikke blive indlæst. Database: %s OpenLP cannot load your database. Database: %s OpenLP kan ikke læse din database. Database: %s OpenLP.MediaManagerItem No Items Selected Ingen punkter valgt &Add to selected Service Item &Tilføj til valgte programpunkt You must select one or more items to preview. Du er nødt vælge et eller flere punkter for at forhÃ¥ndsvise. You must select one or more items to send live. Du er nødt til at vælge et eller flere punkter for at fremvise. You must select one or more items. Du skal vælge et, eller flere punkter. You must select an existing service item to add to. Du er nødt til at vælge et eksisterende programpunkt for at tilføje. Invalid Service Item Ugyldigt programpunkt You must select a %s service item. Du er nødt til at vælge et %s programpunkt. You must select one or more items to add. Du er nødt til at vælge et eller flere punkter for at tilføje. No Search Results Ingen søgeresultater Invalid File Type Ugyldig filtype Invalid File %s. Suffix not supported Ugyldig fil %s. Endelsen er ikke understøttet &Clone &Klon Duplicate files were found on import and were ignored. Duplikerede filer blev fundet ved importeringen og blev ignoreret. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics>-mærke mangler. <verse> tag is missing. <verse>-mærke mangler. OpenLP.PJLink1 Unknown status Ukendt status No message Ingen besked Error while sending data to projector Fejl under afsendelse af data til projektor Undefined command: Udefineret kommando: OpenLP.PlayerTab Players Afspillere Available Media Players Tilgængelige medieafspillere Player Search Order Afspilningsrækkefølge Visible background for videos with aspect ratio different to screen. Synlig baggrund for billeder med anderledes dimensionsforhold end skærm. %s (unavailable) %s (ikke tilgængelig) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" BEMÆRK: For at bruge VLC skal du installere %s udgaven OpenLP.PluginForm Plugin Details Detaljer om udvidelser Status: Status: Active Aktiv Inactive Inaktiv %s (Inactive) %s (Inaktiv) %s (Active) %s (Aktiv) %s (Disabled) %s (deaktiveret) Manage Plugins HÃ¥ndtér udvidelser OpenLP.PrintServiceDialog Fit Page Tilpas til siden Fit Width Tilpas til bredden OpenLP.PrintServiceForm Options Valgmuligheder Copy Kopiér Copy as HTML Kopiér som HTML Zoom In Zoom ind Zoom Out Zoom ud Zoom Original Zoom Original Other Options Andre indstillinger Include slide text if available Inkludér diastekst, hvis tilgængelig Include service item notes Inkludér noter til programpunkt Include play length of media items Inkludér længden af mediepunkter Add page break before each text item Tilføj sideskift før hvert tekstpunkt Service Sheet Program Print Udskriv Title: Titel: Custom Footer Text: Brugerdefineret sidefod: OpenLP.ProjectorConstants OK Ok General projector error Generel projektor-fejl Not connected error Fejl med forbindelsen Lamp error Fejl med lampe Fan error Fejl med blæser High temperature detected Detekterede høj temperatur Cover open detected Detekterede Ã¥bent dæksel Check filter Tjek filter Authentication Error Fejl med godkendelse Undefined Command Udefineret kommando Invalid Parameter Ugyldigt parameter Projector Busy Projektor optaget Projector/Display Error Fejl med projektor/skærm Invalid packet received Ugyldig pakke modtaget Warning condition detected Advarselstilstand detekteret Error condition detected Fejltilstand detekteret PJLink class not supported PJLink klasse er ikke understøttet Invalid prefix character Ugyldigt foranstÃ¥ende tegn The connection was refused by the peer (or timed out) Forbindelsen blev afvist af den anden part (eller udløb) The remote host closed the connection Fjernværten har lukket forbindelsen The host address was not found Værtsadressen blev ikke fundet The socket operation failed because the application lacked the required privileges Socket-operationen fejlede da programmet mangler de nødvendige rettigheder The local system ran out of resources (e.g., too many sockets) Den lokale computer løb tør for ressourcer (f.eks. for mange sockets) The socket operation timed out Socket-operationen tog for lang tid The datagram was larger than the operating system's limit Datagrammet var større en styresystemets grænse An error occurred with the network (Possibly someone pulled the plug?) Der opstod en netværksfejl (faldt stikket ud?) The address specified with socket.bind() is already in use and was set to be exclusive Adressen der blev angivet med socket.bind() er allerede i brug og var sat som eksklusiv The address specified to socket.bind() does not belong to the host Adressen angivet til socket.bind() tilhører ikke værten The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Den forsøgte socket-operation er ikke understøttet af det lokale styresystem (f.eks. manglende understøttelse af IPv6) The socket is using a proxy, and the proxy requires authentication Socket'en bruger en proxy og denne proxy kræver godkendelse The SSL/TLS handshake failed SSL/TLS-hÃ¥ndtrykket fejlede The last operation attempted has not finished yet (still in progress in the background) Den sidst forsøgte operation er endnu ikke afsluttet (er stadig i gang i baggrunden) Could not contact the proxy server because the connection to that server was denied Kunne ikke kontakte proxy-serveren fordi forbindelse til serveren blev nægtet The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Forbindelsen til proxy-serveren blev uventet lukket (før forbindelsen til den endelige modtager blev etableret) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Forbindelsen til proxy-serveren tog for lang tid eller proxy-serveren stoppede med at svare under godkendelsesfasen. The proxy address set with setProxy() was not found Proxy-adressen angivet med setProxy() blev ikke fundet An unidentified error occurred En uidentificeret fejl opstod Not connected Ikke forbundet Connecting Forbinder Connected Forbundet Getting status Henter status Off Slukket Initialize in progress Initialisering i gang Power in standby Standby Warmup in progress Opvarmning i gang Power is on Tændt Cooldown in progress Afkøling i gang Projector Information available Projektor-information tilgængelig Sending data Sender data Received data Modtager data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Oprettelsen af forbindelsen til proxy-serveren fejlede pÃ¥ grund af et uforstÃ¥eligt svar fra proxy-serveren OpenLP.ProjectorEdit Name Not Set Navn ikke angivet You must enter a name for this entry.<br />Please enter a new name for this entry. Du skal indtaste et navn for denne post<br />Indtast venligst et nyt navn for denne post. Duplicate Name Duplikeret navn OpenLP.ProjectorEditForm Add New Projector Tilføj ny projektor Edit Projector Redigér projektor IP Address IP adresse Port Number Portnummer PIN PIN Name Navn Location Placering Notes Noter Database Error Databasefejl There was an error saving projector information. See the log for the error Der opstod en fejl med at gemme projektorinformationen. Se fejlen i loggen. OpenLP.ProjectorManager Add Projector Tilføj projektor Add a new projector Tilføj en ny projektor Edit Projector Redigér projektor Edit selected projector Redigér den valgte projektor Delete Projector Slet projektor Delete selected projector Slet den valgte projektor Select Input Source Vælg inputkilde Choose input source on selected projector Vælg inputkilde pÃ¥ den valgte projektor View Projector Vis projektor View selected projector information Vis information om den valgte projektor Connect to selected projector Forbind til den valgte projektor Connect to selected projectors Forbind til de valgte projektorer Disconnect from selected projectors Afbryd forbindelsen til de valgte projektorer Disconnect from selected projector Afbryd forbindelsen til den valgte projektor Power on selected projector Tænd den valgte projektor Standby selected projector Sæt den valgte projektor i standby Put selected projector in standby Sæt den valgte projektor i standby Blank selected projector screen Mørkelæg den valgte projektor skærm Show selected projector screen Vis den valgte projektor-skærm &View Projector Information &Vis information om projektor &Edit Projector &Rediger projektor &Connect Projector &Forbind til projektor D&isconnect Projector &Afbryd forbindelsen til projektor Power &On Projector &Tænd projektor Power O&ff Projector &Sluk projektor Select &Input &Vælg input Edit Input Source Rediger inputkilde &Blank Projector Screen &Mørkelæg projektor-skærm &Show Projector Screen V&is projektor-skærm &Delete Projector S&let Projektor Name Navn IP IP Port Port Notes Noter Projector information not available at this time. Projektorinformation er ikke tilgængelig i øjeblikket. Projector Name Projektornavn Manufacturer Producent Model Model Other info Andre informationer Power status Tilstand Shutter is Lukkeren er Closed Lukket Current source input is Nuværende inputkilde er Lamp Lampe On Tændt Off Slukket Hours Timer No current errors or warnings Ingen aktuelle fejl eller advarsler Current errors/warnings Aktuelle fejl/advarsler Projector Information Projektorinformation No message Ingen besked Not Implemented Yet Endnu ikke implementeret Delete projector (%s) %s? Slet projektor (%s) %s? Are you sure you want to delete this projector? Er du sikker pÃ¥ at du vil slette denne projektor? OpenLP.ProjectorPJLink Fan Blæser Lamp Lampe Temperature Temperatur Cover Dæksel Filter Filter Other Anden OpenLP.ProjectorTab Projector Projektor Communication Options Kommunikationsindstillinger Connect to projectors on startup Forbind til projektorer ved opstart Socket timeout (seconds) Socket timeout (sekunder) Poll time (seconds) Poll time (sekunder) Tabbed dialog box Dialogboks med faneblad Single dialog box En dialogboks OpenLP.ProjectorWizard Duplicate IP Address Duplikeret IP adresse Invalid IP Address Ugyldig IP adresse Invalid Port Number Ugyldigt portnummer OpenLP.ScreenList Screen Skærm primary primær OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Varighed</strong>: %s [slide %d] [dias %d] OpenLP.ServiceItemEditForm Reorder Service Item Omrokér programpunkt OpenLP.ServiceManager Move to &top Flyt til &top Move item to the top of the service. Flyt punkt til toppen af programmet. Move &up Flyt &op Move item up one position in the service. Flyt punkt en placering op i programmet. Move &down Flyt &ned Move item down one position in the service. Flyt punkt en placering ned i programmet. Move to &bottom Flyt til &bunden Move item to the end of the service. Flyt punkt til slutningen af programmet. &Delete From Service &Slet fra programmet Delete the selected item from the service. Slet det valgte punkt fra programmet. &Add New Item &Tilføj nyt punkt &Add to Selected Item &Tilføj til det valgte punkt &Edit Item &Redigér punkt &Reorder Item &Omrokér punkt &Notes &Noter &Change Item Theme &Ændr tema for punkt File is not a valid service. Fil er ikke et gyldigt program. Missing Display Handler Mangler visningsmodul Your item cannot be displayed as there is no handler to display it Dit punkt kan ikke blive vist da der ikke er noget modul til at vise det Your item cannot be displayed as the plugin required to display it is missing or inactive Dit punkt kan ikke vises da udvidelsesmodulet der skal vise det enten mangler, eller er inaktivt &Expand all &Udvid alle Expand all the service items. Udvid alle programpunkterne. &Collapse all &Sammenfold alle Collapse all the service items. Sammenfold alle programpunkterne. Open File Ã…bn fil Moves the selection down the window. Flytter markeringen ned i vinduet. Move up Flyt op Moves the selection up the window. Flytter markeringen op i vinduet. Go Live Fremvis Send the selected item to Live. Fremvis det valgte punkt. &Start Time &Starttid Show &Preview &ForhÃ¥ndsvis Modified Service Ændret program The current service has been modified. Would you like to save this service? Det nuværende program er blevet ændret. Vil du gemme dette program? Custom Service Notes: Brugerdefinerede program-noter: Notes: Noter: Playing time: Afspilningstid: Untitled Service Unavngivet program File could not be opened because it is corrupt. Fil kunne ikke Ã¥bnes da den er defekt. Empty File Tom fil This service file does not contain any data. Denne programfil indeholder ingen data. Corrupt File Defekt fil Load an existing service. Indlæs et eksisterende program. Save this service. Gem dette program. Select a theme for the service. Vælg et tema for dette program. Slide theme Diastema Notes Noter Edit Redigér Service copy only Bare kopi i programmet Error Saving File Fejl ved lagring af fil There was an error saving your file. Der opstod en fejl ved lagring af din fil. Service File(s) Missing Programfil(er) mangler &Rename... &Omdøb... Create New &Custom Slide Opret ny &brugerdefineret dias &Auto play slides &Automatisk dias afspilning Auto play slides &Loop Automatisk &gentagende dias afspilning Auto play slides &Once Automatisk &enkelt dias afspilning &Delay between slides &Forsinkelse mellem dias OpenLP Service Files (*.osz *.oszl) OpenLP-programfiler (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP programfiler (*.osz);; OpenLP programfiler - let (*.oszl) OpenLP Service Files (*.osz);; OpenLP-programfiler (*.osz);; File is not a valid service. The content encoding is not UTF-8. Fil er ikke et gyldigt program. Indholdets kodning er ikke i UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Programfilen du prøver at Ã¥bne er i et gammelt format. Gem den med OpenLP 2.0.2 eller nyere. This file is either corrupt or it is not an OpenLP 2 service file. Denne fil er enten defekt, eller ogsÃ¥ er det ikke en OpenLP 2 programfil. &Auto Start - inactive &Automatisk start - inaktiv &Auto Start - active &Automatisk start - aktiv Input delay Input forsinkelse Delay between slides in seconds. Forsinkelse mellem dias i sekunder. Rename item title OmdÃ¥b punkt titel Title: Titel: An error occurred while writing the service file: %s Der opstod en fejl under skrivningen af programfilen: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. De følgende filer i programmet mangler: %s Disse filer vil blive fjernet hvis du fortsætter med at gemme. OpenLP.ServiceNoteForm Service Item Notes Noter til programpunkter OpenLP.SettingsForm Configure OpenLP Konfigurér OpenLP OpenLP.ShortcutListDialog Action Handling Shortcut Genvej Duplicate Shortcut Duplikér genvej The shortcut "%s" is already assigned to another action, please use a different shortcut. Genvejen "%s" er allerede tilknyttet en anden handling, brug en anden genvej. Alternate Alternativ Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vælg en handling og tryk pÃ¥ en af knapperne herunder for at opfange en ny primær- eller alternativ genvej. Default Standard Custom Brugerdefineret Capture shortcut. Indfang genvej. Restore the default shortcut of this action. Gendan denne handlings standardgenvej. Restore Default Shortcuts Gendan standardgenveje Do you want to restore all shortcuts to their defaults? Vil du gendanne alle genveje til deres standardværdier? Configure Shortcuts Konfigurér genveje OpenLP.SlideController Hide Gem Go To GÃ¥ til Blank Screen Mørkelæg skærm Blank to Theme Vis temabaggrund Show Desktop Vis skrivebord Previous Service Forrige program Next Service Næste Program Escape Item Forlad punkt Move to previous. GÃ¥ til forrige. Move to next. GÃ¥ til næste. Play Slides Afspil dias Delay between slides in seconds. Forsinkelse mellem dias i sekunder. Move to live. Fremvis. Add to Service. Tilføj til program. Edit and reload song preview. Redigér og genindlæs forhÃ¥ndsvisning af sang. Start playing media. Start afspilning af medie. Pause audio. Sæt lyd pÃ¥ pause. Pause playing media. Sæt afspilning af medie pÃ¥ pause. Stop playing media. Stop afspilning af medie. Video position. Video position. Audio Volume. Lydstyrke. Go to "Verse" GÃ¥ til "Vers" Go to "Chorus" GÃ¥ til "Omkvæd" Go to "Bridge" GÃ¥ til "C-stykke" Go to "Pre-Chorus" GÃ¥ til "Bro" Go to "Intro" GÃ¥ til "Intro" Go to "Ending" GÃ¥ til "Slutning" Go to "Other" GÃ¥ til "Anden" Previous Slide Forrige dias Next Slide Næste dias Pause Audio Sæt lyd pÃ¥ pause Background Audio Baggrundslyd Go to next audio track. GÃ¥ til næste lydspor. Tracks Spor OpenLP.SourceSelectForm Select Projector Source Væg projektor kilde Edit Projector Source Text Redigér projektor kilde tekst Ignoring current changes and return to OpenLP Ignorer aktuelle ændringer og vend tilbage til OpenLP Delete all user-defined text and revert to PJLink default text Slet alt brugerdefineret tekst og vend tilbage til PJLink standard tekst. Discard changes and reset to previous user-defined text Fjern ændringer og gÃ¥ tilbage til sidste brugerdefinerede tekst Save changes and return to OpenLP Gem ændringer og vend tilbage til OpenLP Delete entries for this projector Slet poster for denne projektor Are you sure you want to delete ALL user-defined source input text for this projector? Er du sikker pÃ¥ at du vil slette ALLE brugerdefinerede kildeinput tekster for denne projektor? OpenLP.SpellTextEdit Spelling Suggestions Forslag til stavning Formatting Tags Formatteringsmærker Language: Sprog: OpenLP.StartTimeForm Theme Layout Tema-layout The blue box shows the main area. Den blÃ¥ kasse viser hovedomrÃ¥det. The red box shows the footer. Den røde kasse viser sidefoden. OpenLP.StartTime_form Item Start and Finish Time Starttid og sluttid for punkt Hours: Timer: Minutes: Minutter: Seconds: Sekunder: Start Begynd Finish Slut Length Længde Time Validation Error Fejl ved validering af tid Finish time is set after the end of the media item Sluttid sættes efter slutningen af mediepunktet Start time is after the finish time of the media item Starttiden er efter mediepunktets sluttid OpenLP.ThemeForm (approximately %d lines per slide) (omkring %d linjer per dias) OpenLP.ThemeManager Create a new theme. Opret et nyt tema. Edit Theme Redigér tema Edit a theme. Redigér et tema. Delete Theme Slet tema Delete a theme. Slet et tema. Import Theme Importér tema Import a theme. Importér et tema. Export Theme Eksportér tema Export a theme. Eksportér et tema. &Edit Theme &Redigér tema &Delete Theme &Slet tema Set As &Global Default Indstil som &global standard %s (default) %s (standard) You must select a theme to edit. Vælg det tema der skal redigeres. You are unable to delete the default theme. Du kan ikke slette standardtemaet. You have not selected a theme. Du har ikke valgt et tema. Save Theme - (%s) Gem tema - (%s) Theme Exported Tema eksporteret Your theme has been successfully exported. Dit tema er nu blevet eksporteret. Theme Export Failed Eksport af tema slog fejl Select Theme Import File Vælg tema-importfil File is not a valid theme. Filen er ikke et gyldigt tema. &Copy Theme &Kopiér tema &Rename Theme &Omdøb tema &Export Theme &Eksportér tema You must select a theme to rename. Vælg det tema der skal omdøbes. Rename Confirmation Bekræft omdøbning Rename %s theme? Omdøb temaet %s? You must select a theme to delete. Vælg det tema der skal slettes. Delete Confirmation Bekræft sletning Delete %s theme? Slet temaet %s? Validation Error Valideringsfejl A theme with this name already exists. Et tema med dette navn eksisterer allerede. Copy of %s Copy of <theme name> Kopi af %s Theme Already Exists Tema eksisterer allerede Theme %s already exists. Do you want to replace it? Tema %s eksisterer allerede. Ønsker du at erstatte det? The theme export failed because this error occurred: %s Temaeksporten fejlede pÃ¥ grund af denne fejl opstod: %s OpenLP Themes (*.otz) OpenLP temaer (*.otz) %s time(s) by %s Unable to delete theme Ikke i stand til at slette tema Theme is currently used %s Tema er i brug %s OpenLP.ThemeWizard Theme Wizard Temaguide Welcome to the Theme Wizard Velkommen til temaguiden Set Up Background Indstil baggrund Set up your theme's background according to the parameters below. Indstil dit temas baggrund i henhold til parametrene herunder. Background type: Baggrundstype: Gradient Overgang Gradient: Overgang: Horizontal Vandret Vertical Lodret Circular Cirkulær Top Left - Bottom Right Øverst til venstre - nederst til højre Bottom Left - Top Right Nederst til venstre - øverst til højre Main Area Font Details Skriftdetaljer for hovedomrÃ¥det Define the font and display characteristics for the Display text Bestem skrifttypen og andre detaljer for visningsteksten Font: Skrifttype: Size: Størrelse: Line Spacing: Linjeafstand: &Outline: &Kant: &Shadow: &Skygge: Bold Fed Italic Kursiv Footer Area Font Details Skriftdetaljer for sidefoden Define the font and display characteristics for the Footer text Bestem skrifttypen og andre detaljer for teksten i sidefoden Text Formatting Details Detaljeret tekstformattering Allows additional display formatting information to be defined Yderligere indstillingsmuligheder for hvordan teksten skal vises Horizontal Align: Justér horisontalt: Left Venstre Right Højre Center Centrér Output Area Locations Placeringer for output-omrÃ¥det &Main Area &HovedomrÃ¥de &Use default location &Benyt standardplacering X position: X position: px px Y position: Y position: Width: Bredde: Height: Højde: Use default location Benyt standardplacering Theme name: Temanavn: Edit Theme - %s Redigér tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Denne guide vil hjælp dig med at oprette og redigere dine temaer. Klik pÃ¥ næste-knappen for at begynde processen ved at indstille din baggrund. Transitions: Overgange: &Footer Area &SidefodsomrÃ¥de Starting color: Startfarve: Ending color: Slutfarve: Background color: Baggrundsfarve: Justify Lige margener Layout Preview ForhÃ¥ndsvisning af layout Transparent Gennemsigtig Preview and Save Gennemse og gem Preview the theme and save it. Gennemse temaet og gem det. Background Image Empty Baggrundsbillede er tomt Select Image Vælg billede Theme Name Missing Temanavn mangler There is no name for this theme. Please enter one. Der er ikke givet noget navn til dette tema. Indtast venligst et. Theme Name Invalid Temanavn ugyldigt Invalid theme name. Please enter one. Ugyldigt temanavn. Indtast venligst et nyt. Solid color Ensfarvet color: farve: Allows you to change and move the Main and Footer areas. Gør dig i stand til at ændre og flytte hovedomrÃ¥det og sidefodsomrÃ¥det. You have not selected a background image. Please select one before continuing. Du har ikke valgt et baggrundsbillede. Vælg venligst et før du fortsætter. OpenLP.ThemesTab Global Theme Globalt tema Theme Level Temaniveau S&ong Level S&angniveau Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Benytter hver enkelte sangs individuelle tema. Hvis en sang ikke er forbundet med et tema benyttes programmets tema. Hvis programmet ikke har et tema tilknyttet, da benyttes det globale tema. &Service Level &Programniveau Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Benytter programmets tema, hvorved de individuelle sanges temaer tilsidesættes. Hvis programmet ikke har et tema tilknyttet, da benyttes det globale tema. &Global Level &Globalt niveau Use the global theme, overriding any themes associated with either the service or the songs. Benytter det globale tema, hvormed alle temaer tilknyttet enten programmet eller de individuelle sange tilsidesættes. Themes Temaer Universal Settings Universale indstillinger &Wrap footer text &Ombryd tekst i sidefoden OpenLP.Ui Delete the selected item. Slet det valgte punkt. Move selection up one position. Flyt markering en position op. Move selection down one position. Flyt markering en position ned. &Vertical Align: &Justér lodret: Finished import. Fuldførte importering. Format: Format: Importing Importerer Importing "%s"... Importerer "%s"... Select Import Source Vælg importkilde Select the import format and the location to import from. Vælg importkilden og placeringen der skal importeres fra. Open %s File Ã…bn filen %s %p% %p% Ready. Klar. Starting import... PÃ¥begynder importering... You need to specify at least one %s file to import from. A file type e.g. OpenSong Du skal angive mindst én %s-fil at importere fra. Welcome to the Bible Import Wizard Velkommen til guiden til importering af bibler Welcome to the Song Export Wizard Velkommen til guiden til eksportering af sange Welcome to the Song Import Wizard Velkommen til guiden til importering af sange Author Singular Forfatter Authors Plural Forfattere © Copyright symbol. © Song Maintenance SanghÃ¥ndtering Topic Singular Emne Topics Plural Emner Title and/or verses not found Titel og/eller vers ikke fundet XML syntax error XML syntaksfejl Welcome to the Bible Upgrade Wizard Velkommen til guiden til opgradering af bibler Open %s Folder Ã…bn %s mappe You need to specify one %s file to import from. A file type e.g. OpenSong Du skal vælge en %s-fil at importere fra. You need to specify one %s folder to import from. A song format e.g. PowerSong Du skal vælge en %s-mappe at importere fra. Importing Songs Importerer sange Welcome to the Duplicate Song Removal Wizard Velkommen til guiden til fjernelse af duplikerede sange Written by Skrevet af Author Unknown Ukendt forfatter About Om &Add &Tilføj Add group Tilføj gruppe Advanced Avanceret All Files Alle filer Automatic Automatisk Background Color Baggrundsfarve Bottom Bund Browse... Gennemse... Cancel Annullér CCLI number: CCLI-nummer: Create a new service. Opret et nyt program. Confirm Delete Bekræft sletning Continuous Uafbrudt Default Standard Default Color: Standardfarve: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Program %d-%m-%Y %H-%M &Delete &Slet Display style: Visningsstil: Duplicate Error Duplikeringsfejl &Edit &Redigér Empty Field Tomt felt Error Fejl Export Eksportér File Fil File Not Found Fil ikke fundet File %s not found. Please try selecting it individually. Filen %s kunne ikke findes. Prøv at vælg den individuelt. pt Abbreviated font pointsize unit pkt Help Hjælp h The abbreviated unit for hours t Invalid Folder Selected Singular Ugyldig mappe valgt Invalid File Selected Singular Ugyldigt fil valgt Invalid Files Selected Plural Ugyldige filer valgt Image Billede Import Importér Layout style: Layoutstil: Live Fremvisning Live Background Error Fejl med fremvisningsbaggrund Live Toolbar Værktøjslinje for fremvisning Load Indlæs Manufacturer Singular Producent Manufacturers Plural Producenter Model Singular Model Models Plural Modeller m The abbreviated unit for minutes m Middle Midt New Ny New Service Nyt program New Theme Nyt tema Next Track Næste spor No Folder Selected Singular Ingen mappe valgt No File Selected Singular Ingen fil valgt No Files Selected Plural Ingen filer valgt No Item Selected Singular Intet punkt valgt No Items Selected Plural Ingen punkter valgt OpenLP is already running. Do you wish to continue? OpenLP kører allerede. Vil du fortsætte? Open service. Ã…bn program. Play Slides in Loop Afspil dias i løkke Play Slides to End Afspil dias til slut Preview ForhÃ¥ndsvisning Print Service Udskriv program Projector Singular Projektor Projectors Plural Projektorer Replace Background Erstat baggrund Replace live background. Erstat fremvisningsbaggrund. Reset Background Nulstil baggrund Reset live background. Nulstil fremvisningsbaggrund. s The abbreviated unit for seconds s Save && Preview Gem && forhÃ¥ndsvis Search Søg Search Themes... Search bar place holder text Søg efter temaer... You must select an item to delete. Vælg et punkt der skal slettes. You must select an item to edit. Vælg et punkt der skal redigeres. Settings Indstillinger Save Service Gem program Service Program Optional &Split Valgfri &opdeling Split a slide into two only if it does not fit on the screen as one slide. Del kun et dias op i to, hvis det ikke kan passe ind pÃ¥ skærmen som ét dias. Start %s Begynd %s Stop Play Slides in Loop Stop afspilning af dias i løkke Stop Play Slides to End Stop afspilning af dias til slut Theme Singular Tema Themes Plural Temaer Tools Værktøjer Top Top Unsupported File Ikke-understøttet fil Verse Per Slide Vers per dias Verse Per Line Vers per linje Version Udgave View Vis View Mode Visningstilstand CCLI song number: CCLI sang nummer: Preview Toolbar ForhÃ¥ndsvisningspanel OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s og %s %s, and %s Locale list separator: end %s, og %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Grænseflade for valg af kilde PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Præsentation-udvidelse</strong><br />Dette udvidelsesmodul gør det muligt at vise præsentationer med en række forskellige programmer. Valget mellem tilgængelige præsentationsprogrammer er tilgængelig for brugeren i en rulleliste. Presentation name singular Præsentation Presentations name plural Præsentationer Presentations container title Præsentationer Load a new presentation. Indlæs en ny præsentation. Delete the selected presentation. Slet den valgte præsentation. Preview the selected presentation. ForhÃ¥ndsvis den valgte præsentation. Send the selected presentation live. Fremvis den valgte præsentation. Add the selected presentation to the service. Tilføj den valgte præsentation til programmet. PresentationPlugin.MediaItem Select Presentation(s) Vælg præsentation(er) Automatic Automatisk Present using: Præsentér med: File Exists Fil eksisterer A presentation with that filename already exists. En præsentation med dette filnavn eksisterer allerede. This type of presentation is not supported. Denne type præsentation er ikke understøttet. Presentations (%s) Præsentationer (%s) Missing Presentation Manglende præsentation The presentation %s is incomplete, please reload. Præsentationen %s er ufuldstændig. Vær venlig at genindlæse den. The presentation %s no longer exists. Præsentationen %s eksisterer ikke længere. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Der opstod en fejl i Powerpoint-integrationen og presentationen vil blive stoppet. Start presentationen igen hvis du vil vise den. PresentationPlugin.PresentationTab Available Controllers Tilgængelige programmer %s (unavailable) %s (ikke tilgængelig) Allow presentation application to be overridden Tillad at præsentationsprogrammet tilsidesættes PDF options PDF indstillinger Use given full path for mudraw or ghostscript binary: Anvend den angivne fulde sti til en kørbar fil for enten mudraw eller ghostscript: Select mudraw or ghostscript binary. Vælg en kørbar fil for enten mudraw eller ghostscript. The program is not ghostscript or mudraw which is required. Programmet er ikke ghostscript eller mudraw, hvilket er krævet. PowerPoint options PowerPoint indstillinger Clicking on a selected slide in the slidecontroller advances to next effect. Klik pÃ¥ et valgt dias i diasfremviseren afspiller næste effekt. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Lad PowerPoint kontrollere størrelsen og positionen af præsentationsvinduet (en omgÃ¥else for et problem med skalering i Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Fjernbetjening-udvidelse</strong><br />Fjernbetjeningsudvidelsen gør det muligt at sende beskeder til en kørende udgave af OpenLP pÃ¥ en anden computer gennem en webbrowser, eller gennem fjernbetjenings API'en. Remote name singular Fjernbetjening Remotes name plural Fjernbetjeninger Remote container title Fjernbetjening Server Config Change Server konfigurationsændring Server configuration changes will require a restart to take effect. Server konfigurationsændringerne kræver en genstart for at træde i kraft. RemotePlugin.Mobile Service Manager ProgramhÃ¥ndtering Slide Controller DiashÃ¥ndtering Alerts Meddelelser Search Søg Home Hjem Refresh Opdatér Blank Mørkelæg Theme Tema Desktop Skrivebord Show Vis Prev Forrige Next Næste Text Tekst Show Alert Vis meddelelse Go Live Fremvis Add to Service Tilføj til program Add &amp; Go to Service Tilføj &amp; GÃ¥ til program No Results Ingen resultater Options Valgmuligheder Service Program Slides Dias Settings Indstillinger Remote Fjernbetjening Stage View Scenevisning Live View Præsentationsvisning RemotePlugin.RemoteTab Serve on IP address: Benyt følgende IP-adresse: Port number: Port nummer: Server Settings Serverindstillinger Remote URL: Fjern-URL: Stage view URL: Scenevisning-URL: Display stage time in 12h format Vis scenetiden i 12-timer format Android App Android App Live view URL: Præsentationsvisnings URL: HTTPS Server HTTPS server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Kunne ikke finde et SSL certifikat. HTTPS serveren er ikke tilgængelig medmindre et SSL certifikat kan findes. Se venligst manualen for mere information. User Authentication Bruger godkendelse User id: Bruger id Password: Adgangskode: Show thumbnails of non-text slides in remote and stage view. Vis miniaturebilleder af ikke-tekst dias i fjernbetjening og scenevisning. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Skan QR-koden, eller klik <a href="%s">hent</a> for at installere Android app'en fra Google Play. SongUsagePlugin &Song Usage Tracking &Logning af sangforbrug &Delete Tracking Data &Slet logdata Delete song usage data up to a specified date. Slet sangforbrugsdata op til en angivet dato. &Extract Tracking Data &Udtræk logdata Generate a report on song usage. Opret en rapport over sangforbruget. Toggle Tracking SlÃ¥ logning til/fra Toggle the tracking of song usage. SlÃ¥ logning af sangforbrug til/fra. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Sangforbrug-udvidelse</strong><br />Dette udvidelsesmodul logger forbruget af sange i programmer. SongUsage name singular Sangforbrug SongUsage name plural Sangforbrug SongUsage container title Sangforbrug Song Usage Sangforbrug Song usage tracking is active. Logning af sangforbrug er slÃ¥et til. Song usage tracking is inactive. Logning af sangforbrug er ikke slÃ¥et til. display vis printed udskrevet SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Slet sangforbrugsdata Delete Selected Song Usage Events? Slet valgte sangforbrugsbegivenheder? Are you sure you want to delete selected Song Usage data? Er du sikker pÃ¥ at du vil slette de valgte sangforbrugsdata? Deletion Successful Sletning fuldført Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vælg op til hvilken dato sangforbrugsdata skal slettes. Al data optaget før denne dato vil blive slettet permanent. All requested data has been deleted successfully. Alt den angivne data er nu blevet slettet. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Udtrækning af sangforbrug Select Date Range Angiv tidsinterval to til Report Location Placering af rapport Output File Location Placering af output-fil usage_detail_%s_%s.txt forbrugsdetaljer_%s_%s.txt Report Creation Oprettelse af rapport Report %s has been successfully created. Rapport %s er blevet oprettet. Output Path Not Selected Output-sti er ikke valgt You have not set a valid output location for your song usage report. Please select an existing path on your computer. Du har ikke valgt en gyldig placering for din sangforbrugsrapport. Vælg venligst en eksisterende sti pÃ¥ din computer. Report Creation Failed Report oprettelse fejlede An error occurred while creating the report: %s Der opstod en fejl under oprettelse af rapporten: %s SongsPlugin &Song &Sang Import songs using the import wizard. Importér sange med importguiden. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Sang-udvidelse</strong><br />Dette udvidelsesmodul gør det muligt at vise og hÃ¥ndtere sange. &Re-index Songs &Genindeksér sange Re-index the songs database to improve searching and ordering. Genindeksér sangene i databasen for at forbedre søgning og sortering. Reindexing songs... Genindekserer sange... Arabic (CP-1256) Arabisk (CP-1256) Baltic (CP-1257) Baltisk (CP-1257) Central European (CP-1250) Centraleuropæisk (CP-1250) Cyrillic (CP-1251) Kyrillisk (CP-1251) Greek (CP-1253) Græsk (CP-1253) Hebrew (CP-1255) Hebraisk (CP-1255) Japanese (CP-932) Japansk (CP-932) Korean (CP-949) Koreansk (CP-949) Simplified Chinese (CP-936) Simplificeret kinesisk (CP-936) Thai (CP-874) Thailandsk (CP-874) Traditional Chinese (CP-950) Traditionelt kinesisk (CP-950) Turkish (CP-1254) Tyrkisk (CP-1254) Vietnam (CP-1258) Vietnamesisk (CP-1258) Western European (CP-1252) Vesteuropæisk (CP-1252) Character Encoding Tegnkodning The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Indstillingen af tegnkodningstabellen er ansvarlig for den korrekte gengivelse af tegn. For det meste er den forudvalgte god som den er. Please choose the character encoding. The encoding is responsible for the correct character representation. Vælg tegnkodningen. Tegnkodningen er ansvarlig for den korrekte visning af tegn. Song name singular Sang Songs name plural Sange Songs container title Sange Exports songs using the export wizard. Eksportér sange med eksportguiden. Add a new song. Tilføj en ny sang. Edit the selected song. Redigér den valgte sang. Delete the selected song. Slet den valgte sang. Preview the selected song. ForhÃ¥ndsvis den valgte sang. Send the selected song live. Fremvis den valgte sang. Add the selected song to the service. Tilføj de valgte sange til programmet. Reindexing songs Genindeksér sange CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importer sang from CCLI's SongSelect tjeneste Find &Duplicate Songs &Find sang dubletter Find and remove duplicate songs in the song database. Find og fjern sang dubletter i sangdatabasen. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Tekst Music Author who wrote the music of a song Musik Words and Music Author who wrote both lyrics and music of a song Tekst og musik Translation Author who translated the song Oversættelse SongsPlugin.AuthorsForm Author Maintenance ForfatterhÃ¥ndtering Display name: Visningsnavn: First name: Fornavn: Last name: Efternavn: You need to type in the first name of the author. Skriv forfatterens fornavn. You need to type in the last name of the author. Skriv forfatterens efternavn. You have not set a display name for the author, combine the first and last names? Du har ikke valgt et visningsnavn til forfatteren. Kombinér for- og efternavn? SongsPlugin.CCLIFileImport The file does not have a valid extension. Filen har ikke en gyldig endelse. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ugyldig DreamBeam sangfil. DreamSong elementet mangler. SongsPlugin.EasyWorshipSongImport Administered by %s Administreret af %s "%s" could not be imported. %s "%s" kunne ikke importeres. %s Unexpected data formatting. Uventet data formattering. No song text found. Ingen sang tekst fundet. [above are Song Tags with notes imported from EasyWorship] [ovenstÃ¥ende er Song Tags med noter importeret fra EasyWorship] This file does not exist. Denne fil eksisterer ikke. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Kunne ikke finde filen "Songs.MB". Den skal være i samme mappe som filen "Songs.DB". This file is not a valid EasyWorship database. Filen er ikke en gyldig EasyWorship database. Could not retrieve encoding. Kunne ikke hente tekstkodning. SongsPlugin.EditBibleForm Meta Data Metadata Custom Book Names Brugerdefinerede bognavne SongsPlugin.EditSongForm Song Editor Sangredigering &Title: &Titel: Alt&ernate title: Alt&ernativ titel: &Lyrics: &Sangtekst: &Verse order: &Rækkefølge af vers: Ed&it All Re&digér alle Title && Lyrics Titel && sangtekst &Add to Song &Tilføj til sang &Remove &Fjern A&dd to Song T&ilføj til sang R&emove F&jern New &Theme Nyt &tema Copyright Information Information om ophavsret Comments Kommentarer Theme, Copyright Info && Comments Tema, ophavsret && kommentarer Add Author Tilføj forfatter This author does not exist, do you want to add them? Denne forfatter eksisterer ikke. Vil du tilføje dem? This author is already in the list. Denne forfatter er allerede pÃ¥ listen. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Du har ikke valgt en gyldig forfatter. Vælg enten en forfatter fra listen, eller indtast en ny forfatter og klik pÃ¥ "Tilføj forfatter til sang"-knappen for at tilføje den nye forfatter. Add Topic Tilføj emne This topic does not exist, do you want to add it? Dette emne eksisterer ikke. Vil du tilføje det? This topic is already in the list. Dette emne er allerede pÃ¥ listen. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Du har ikke valgt et gyldigt emne. Vælg enten et emne fra listen, eller indtast et nyt emne og klik pÃ¥ "Tilføj emne til sang"-knappen for at tilføje det nye emne. You need to type in a song title. Vælg først en sangtitel. You need to type in at least one verse. Skriv mindst ét vers. You need to have an author for this song. Du mangler en forfatter til denne sang. Linked Audio Sammenkædet lydspor Add &File(s) Tilføj &fil(er) Add &Media Tilføj &medier Remove &All Fjern &alt Open File(s) Ã…bn fil(er) <strong>Warning:</strong> Not all of the verses are in use. <strong>Advarsel:</strong> Ikke alle versene er i brug. <strong>Warning:</strong> You have not entered a verse order. <strong>Advarsel:</strong> Du har ikke indtastet en rækkefølge for versene. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Der er intet vers svarende til "%(invalid)s". Gyldige værdier er %(valid)s. Indtast venligst versene adskildt af mellemrum. Invalid Verse Order Ugyldig versrækkefølge &Edit Author Type &Rediger forfattertype Edit Author Type Rediger forfattertype Choose type for this author Vælg type for denne forfatter There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Der er ingen vers svarende til "%(invalid)s". Gyldige værdier er %(valid)s. Indtast venligst versene adskildt af mellemrum. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Redigér vers &Verse type: &Verstype: &Insert &Indsæt Split a slide into two by inserting a verse splitter. Del et dias i to ved at indsætte en versopdeler. SongsPlugin.ExportWizardForm Song Export Wizard Guide til eksportering af sange Select Songs Vælg sange Check the songs you want to export. Markér de sange du vil eksportere. Uncheck All Afmarkér alle Check All Markér alle Select Directory Vælg mappe Directory: Mappe: Exporting Eksporterer Please wait while your songs are exported. Vent imens dines sange eksporteres. You need to add at least one Song to export. Vælg mindst én sang der skal eksporteres. No Save Location specified Ingen placering angivet til at gemme Starting export... PÃ¥begynder eksportering... You need to specify a directory. Du er nødt til at vælge en mappe. Select Destination Folder Vælg en destinationsmappe Select the directory where you want the songs to be saved. Vælg den mappe hvori du ønsker at gemme sangene. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Denne guide vil hjælp dig med at eksportere dine sange til det Ã¥bne og frie <strong>OpenLyrics</strong> lovsangsformat. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ugyldig Foilpresenter sang-fil. Kunne ikke finde nogen vers. SongsPlugin.GeneralTab Enable search as you type SlÃ¥ søg-mens-du-skriver til SongsPlugin.ImportWizardForm Select Document/Presentation Files Vælg dokument-/præsentationfiler Song Import Wizard Guide til import af sange This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Denne guide vil hjælpe dig med at importere sange fra forskellige formater. Klik pÃ¥ næste-knappen herunder for at pÃ¥begynde processen ved at vælge et format du vil importere fra. Generic Document/Presentation Almindeligt dokument/præsentation Add Files... Tilføj filer... Remove File(s) Fjern fil(er) Please wait while your songs are imported. Vent imens dine sange bliver importeret. Words Of Worship Song Files Words Of Worship sangfiler Songs Of Fellowship Song Files Songs Of Fellowship sangfiler SongBeamer Files SongBeamer filer SongShow Plus Song Files SongShow Plus sangfiler Foilpresenter Song Files Foilpresenter sangfiler Copy Kopiér Save to File Gem til fil The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship-importeringen er blevet deaktiveret pÃ¥ grund af at OpenLP ikke kan oprette forbindelse til OpenOffice, eller LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Importeringen af dokumenter/præsentationer er blevet slÃ¥et fra, da OpenLP ikke kan tilgÃ¥ OpenOffice eller LibreOffice. OpenLyrics Files OpenLyrics filer CCLI SongSelect Files CCLI SongSelect-filer EasySlides XML File EasySlides XML-fil EasyWorship Song Database EasyWorship sangdatabase DreamBeam Song Files DreamBeam sangfiler You need to specify a valid PowerSong 1.0 database folder. Du skal angive en gyldig PowerSong 1.0-database-mappe. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Konvertér først din ZionWorx-database til en CSV-tekstfil, som forklaret i<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">BrugerhÃ¥ndbogen</a>. SundayPlus Song Files SundayPlus sangfiler This importer has been disabled. Denne importør er slÃ¥et fra. MediaShout Database MediaShout-database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importeringen fra MediaShout er kun understøttet pÃ¥ Windows. Det er deaktiveret pÃ¥ grund af et manglende Python-modul. Hvis du ønsker at bruge denne importør, skal du installere "pyodbc"-modulet. SongPro Text Files SongPro-tekstfiler SongPro (Export File) SongPro (Eksportfil) In SongPro, export your songs using the File -> Export menu I SongPro eksporterer du dine sange ved at benytte eksporteringsmenuen i File -> Export menu EasyWorship Service File EasyWorship programfil WorshipCenter Pro Song Files WorshipCenter Pro sangfiler The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importeringen fra WorshipCenter Pro er kun understøttet pÃ¥ Windows. Det er deaktiveret pÃ¥ grund af et manglende Python-modul. Hvis du ønsker at bruge denne importør, skal du installere "pyodbc"-modulet. PowerPraise Song Files PowerPraise sangfiler PresentationManager Song Files PresentationManager sangfiler ProPresenter 4 Song Files ProPresenter 4 sangfiler Worship Assistant Files Worship Assistant filer Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. I Worship Assistant, eksporter din database til en CSV fil. OpenLyrics or OpenLP 2 Exported Song OpenLyrics eller OpenLP 2 eksporteret sang OpenLP 2 Databases OpenLP 2 databaser LyriX Files LyriX-filer LyriX (Exported TXT-files) LyriX (Eksporterede TXT-filer) VideoPsalm Files VideoPsalm-filer VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s VideoPsalm-sangbøger er normalt placeret i %s SongsPlugin.LyrixImport Error: %s Fejl: %s SongsPlugin.MediaFilesForm Select Media File(s) Vælg mediefil(er) Select one or more audio files from the list below, and click OK to import them into this song. Vælg én eller flere lydfiler fra listen herunder, og klik OK for at importere dem ind i denne sang. SongsPlugin.MediaItem Titles Titler Lyrics Sangtekst CCLI License: CCLI-licens: Entire Song Hele sang Maintain the lists of authors, topics and books. Vedligehold listen over forfattere, emner og bøger. copy For song cloning kopi Search Titles... Søg blandt titler... Search Entire Song... Søg hele sang... Search Lyrics... Søg sangtekster... Search Authors... Søg forfattere... Are you sure you want to delete the "%d" selected song(s)? Er du sikker pÃ¥ at du vil slette de %d valgte sang(e)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Kunne ikke Ã¥bne MediaShout databasen. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Ikke en gyldig OpenLP 2 sangdatabase. SongsPlugin.OpenLyricsExport Exporting "%s"... Eksporterer "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ugyldig OpenSong fil. Mangler song-element. SongsPlugin.PowerSongImport No songs to import. Ingen sange der kan importeres. Verses not found. Missing "PART" header. Versene kunne ikke findes. Manglende "PART" header. No %s files found. Ingen %s filer fundet. Invalid %s file. Unexpected byte value. Ugyldig %s-fil. Uforventet byte-værdi. Invalid %s file. Missing "TITLE" header. Ugyldig %s-fil. Mangler sidehovedet "TITLE". Invalid %s file. Missing "COPYRIGHTLINE" header. Ugyldig %s-fil. Mangler sidehovedet "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: &Navn: &Publisher: &Udgiver: You need to type in a name for the book. Du skal indtaste et navn for denne bog. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Din sangeksportering slog fejl. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Ekporteringen er færdig. Benyt <strong>OpenLyrics</strong>-importøren for at importere disse filer. Your song export failed because this error occurred: %s Sangeksporten fejlede ppÃ¥ grund af denne fejl: %s SongsPlugin.SongImport copyright ophavsret The following songs could not be imported: De følgende sange kunne ikke importeres: Cannot access OpenOffice or LibreOffice Kan ikke tilgÃ¥ OpenOffice eller LibreOffice Unable to open file Kunne ikke Ã¥bne fil File not found Fil ikke fundet SongsPlugin.SongMaintenanceForm Could not add your author. Kunne ikke tilføje din forfatter. This author already exists. Denne forfatter eksisterer allerede. Could not add your topic. Kunne ikke tilføje dit emne. This topic already exists. Dette emne eksisterer allerede. Could not add your book. Kunne ikke tilføje din bog. This book already exists. Denne bog eksisterer allerede. Could not save your changes. Kunne ikke gemme dine ændringer. Could not save your modified author, because the author already exists. Kunne ikke gemme din ændrede forfatter, da denne forfatter allerede eksisterer. Could not save your modified topic, because it already exists. Kunne ikke gemme dit ændrede emne, da det allerede eksisterer. Delete Author Slet forfatter Are you sure you want to delete the selected author? Er du sikker pÃ¥ at du vil slette den valgte forfatter? This author cannot be deleted, they are currently assigned to at least one song. Denne forfatter kan ikke slettes, da den er tilkyttet til mindst én sang. Delete Topic Slet emne Are you sure you want to delete the selected topic? Er du sikker pÃ¥ at du vil slette det valgte emne? This topic cannot be deleted, it is currently assigned to at least one song. Dette emne kan ikke slettes, da den er tilkyttet til mindst én sang. Delete Book Slet bog Are you sure you want to delete the selected book? Er du sikker pÃ¥ at du vil slette den valgte bog? This book cannot be deleted, it is currently assigned to at least one song. Denne bog kan ikke slettes, da den er tilkyttet til mindst én sang. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Forfatteren %s eksisterer allerede. Vil du fÃ¥ sangene med forfatter %s til at benytte den eksisterende forfatter %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Emnet %s eksisterer allerede. Vil du fÃ¥ sangene med emne %s til at benytte det eksisterende emne %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Bogen %s eksisterer allerede. Vil du fÃ¥ sangene med bog %s til at benytte den eksisterende bog %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect importør <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Bemærk:</strong> Der kræver forbindelse til internettet for at kunne importerer sange from CCLI SongSelect. Username: Brugernavn: Password: Adgangskode: Save username and password Gem brugernavn og kode Login Log ind Search Text: Søgetekst: Search Søg Found %s song(s) Fandt %s sang(e) Logout Log ud View Vis Title: Titel: Author(s): Forfatter(e)? Copyright: Ophavsret: CCLI Number: CCLI nummer: Lyrics: Sangtekster: Back Tilbage Import Importér More than 1000 results Mere end 1000 resultater Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Din søgning har returneret mere end 1000 resultater og er blevet stoppet. Præciser venligst din søgning for at fÃ¥ bedre resultater. Logging out... Logger ud... Save Username and Password Gem brugernavn og kode WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. ADVARSEL: At gemme dit brugernavn og kode er USIKKERT, din kode gemmes i KLARTEKST. Klik Ja for at gemme din kode eller Nej for at annullere dette. Error Logging In Fejl ved indlogning There was a problem logging in, perhaps your username or password is incorrect? Der opstod et problem ved indlogning, mÃ¥ske er dit brugernavn og kode forkert? Song Imported Sang importeret Incomplete song Ufuldstændig sang This song is missing some information, like the lyrics, and cannot be imported. Denne sang mangler noget information, som f.eks. sangteksten, og kan ikke importeres. Your song has been imported, would you like to import more songs? Sangen er blevet importeret, vil du importere flere sange? Stop SongsPlugin.SongsTab Songs Mode Sangtilstand Display verses on live tool bar Vis vers pÃ¥ fremvisningsværktøjslinjen Update service from song edit Opdatér program efter redigering af sang Import missing songs from service files Importér manglende sange fra programfiler Display songbook in footer Vis sangbog i sidefod Display "%s" symbol before copyright info Vis "%s" symbol før ophavsrets information SongsPlugin.TopicsForm Topic Maintenance Vedligeholdelse af emner Topic name: Emnenavn: You need to type in a topic name. Du skal skrive et emnenavn. SongsPlugin.VerseType Verse Vers Chorus Omkvæd Bridge C-stykke Pre-Chorus Bro Intro Intro Ending Slutning Other Anden SongsPlugin.VideoPsalmImport Error: %s Fejl: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Ugyldig Words of Worship fil. Mangler "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Ugyldig Words of Worship sang. Mangler "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Fejl ved læsning af CSV-fil. Line %d: %s Linje %d: %s Decoding error: %s Afkodningsfejl: %s File not valid WorshipAssistant CSV format. Fil er ikke i et gyldigt WorshipAssistant CSV-format. Record %d Optag %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Kunne ikke forbinde til WorshipCenter Pro databasen. SongsPlugin.ZionWorxImport Error reading CSV file. Fejl ved læsning af CSV-fil. File not valid ZionWorx CSV format. Filen er ikke et gyldigt ZionWorx CSV-format. Line %d: %s Linje %d: %s Decoding error: %s Afkodningsfejl: %s Record %d Optag %d Wizard Wizard Guide This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Denne guide vil hjælpe dig med at fjerne sangdubletter fra sangdatabasen. Du fÃ¥r mulighed for at gennemse alle potentielle sangdubletter før de slettes. Ingen sange slettes uden at du har godkendt det. Searching for duplicate songs. Søger efter sangdubletter. Please wait while your songs database is analyzed. Vent venligst mens din sangdatabase analyseres. Here you can decide which songs to remove and which ones to keep. Her kan du vælge hvilke sange du vil fjerne og hvilke du vil beholde. Review duplicate songs (%s/%s) Gennemse sangdubletter (%s/%s) Information Information No duplicate songs have been found in the database. Ingen sangdubletter blev fundet i databasen. OpenLP-2.4/resources/i18n/sk.ts0000644000175000017500000155570012657640340015344 0ustar raoulraoul AlertsPlugin &Alert &Upozornenie Show an alert message. ZobraziÅ¥ upozornenie. Alert name singular Upozornenie Alerts name plural Upozornenia Alerts container title Upozornenia <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Modul upozornení</strong><br />Modul upozornení umožňuje zobrazovat rôzne hlášky a upozornenia na zobrazovacej obrazovke. AlertsPlugin.AlertForm Alert Message Upozornenie Alert &text: &Text upozornenia: &New &Nový &Save &UložiÅ¥ Displ&ay &ZobraziÅ¥ Display && Cl&ose ZobraziÅ¥ a za&vrieÅ¥ New Alert Nové upozornenie &Parameter: &Parameter: No Parameter Found Parameter sa nepodarilo nájsÅ¥ You have not entered a parameter to be replaced. Do you want to continue anyway? Nebol zadaný žiadny parameter pre nahradenie. Chcete napriek tomu pokraÄovat? No Placeholder Found Zástupný znak sa nepodarilo nájsÅ¥ The alert text does not contain '<>'. Do you want to continue anyway? Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokraÄovat? You haven't specified any text for your alert. Please type in some text before clicking New. Nebol zadaný žiadny text upozornenia. Pred kliknutím na Nový prosím zadajte nejaký text. AlertsPlugin.AlertsManager Alert message created and displayed. Upozorňovacia správa bola vytvorená a zobrazená. AlertsPlugin.AlertsTab Font Písmo Font name: Názov písma: Font color: Farba písma: Background color: Farba pozadia: Font size: VeľkosÅ¥ písma: Alert timeout: ÄŒas pre vyprÅ¡anie upozornenia: BiblesPlugin &Bible &Biblia Bible name singular Biblia Bibles name plural Biblie Bibles container title Biblie No Book Found Kniha sa nenaÅ¡la No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. V Bibli sa nenaÅ¡la hľadaná kniha. Uistite sa, že názov knihy bol zadaný správne. Import a Bible. Import Biblie. Add a new Bible. PridaÅ¥ novú Bibliu. Edit the selected Bible. UpraviÅ¥ oznaÄenú Bibliu. Delete the selected Bible. ZmazaÅ¥ oznaÄenú Bibliu. Preview the selected Bible. Náhľad oznaÄenej Biblie. Send the selected Bible live. ZobraziÅ¥ oznaÄenú Bibliu naživo. Add the selected Bible to the service. PridaÅ¥ oznaÄenú Bibliu do služby. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Modul Biblia</strong><br />Modul Biblia umožňuje poÄay služby zobrazovaÅ¥ verÅ¡e z rôznych zdrojov. &Upgrade older Bibles &AktualizovaÅ¥ starÅ¡ie Biblie Upgrade the Bible databases to the latest format. AktualizovaÅ¥ databázu Biblie na najnovší formát. Genesis 1. kniha MojžiÅ¡ova (Genezis) Exodus 2. kniha MojžiÅ¡ova (Exodus) Leviticus 3. kniha MojžiÅ¡ova (Levitikus) Numbers 4. kniha MojžiÅ¡ova (Numeri) Deuteronomy 5. kniha MojžiÅ¡ova (Deuteronómium) Joshua Jozue Judges Kniha sudcov Ruth Rút 1 Samuel 1. kniha Samuelova 2 Samuel 2. kniha Samuelova 1 Kings 1. kniha kráľov 2 Kings 2. kniha kráľov 1 Chronicles 1. kniha kroník 2 Chronicles 2. kniha kroník Ezra Ezdráš Nehemiah Nehemiáš Esther Ester Job Jób Psalms Žalmy Proverbs Príslovia Ecclesiastes Kazateľ Song of Solomon Pieseň Å alamúnova Isaiah Izaiáš Jeremiah Jeremiáš Lamentations Náreky Ezekiel Ezechiel Daniel Daniel Hosea Ozeáš Joel Joel Amos Ãmos Obadiah Abdijáš Jonah Jonáš Micah Micheáš Nahum Nahum Habakkuk Habakuk Zephaniah Sofoniáš Haggai Aggeus Zechariah Zachariáš Malachi Malachiáš Matthew Evanjelium podľa Matúša Mark Evanjelium podľa Marka Luke Evanjelium podľa Lukáša John Evanjelium podľa Jána Acts Skutky apoÅ¡tolov Romans List Rimanom 1 Corinthians 1. list KorinÅ¥anom 2 Corinthians 2. list KorinÅ¥anom Galatians List GalaÅ¥anom Ephesians List Efezanom Philippians List Filipanom Colossians List Kolosanom 1 Thessalonians 1. list SolúnÄanom 2 Thessalonians 2. list SolúnÄanom 1 Timothy 1. list Timotejovi 2 Timothy 2. list Timotejovi Titus List Títovi Philemon List Filemonovi Hebrews List Hebrejom James Jakubov list 1 Peter 1. Petrov list 2 Peter 2. Petrov list 1 John 1. Jánov list 2 John 2. Jánov list 3 John 3. Jánov list Jude Júdov list Revelation Zjavenie Jána Judith Judita Wisdom Kniha múdrosti Tobit Tobiáš Sirach Sirachovec Baruch Kniha proroka Barucha 1 Maccabees 1. kniha Machabejcov 2 Maccabees 2. kniha Machabejcov 3 Maccabees 3. kniha Machabejcov 4 Maccabees 4. kniha Machabejcov Rest of Daniel ZvyÅ¡ok Daniela Rest of Esther ZvyÅ¡ok Ester Prayer of Manasses Modlitba Manasses Letter of Jeremiah Jeremiášov list Prayer of Azariah Modlitba Azariáša Susanna Zuzana Bel Bel 1 Esdras 1. kniha Ezdrášova 2 Esdras 2. kniha Ezdrášova : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verÅ¡ verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verÅ¡e - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 do , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 a end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse koniec BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Je nutné uviesÅ¥ názov verzie Biblie. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Biblii je potrebné nastaviÅ¥ autorské práva. Biblie v Public Domain je nutné takto oznaÄiÅ¥. Bible Exists Biblia existuje This Bible already exists. Please import a different Bible or first delete the existing one. Táto Biblia už existuje. Importujte prosím inú Bibliu alebo najskôr zmažte tú existujúcu. You need to specify a book name for "%s". Je nutné uviesÅ¥ názov knihy pre "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Názov knihy "%s" nie je správny. Čísla môžu byÅ¥ použité len na zaÄiatku a tak musí nasledovaÅ¥ jeden alebo viac neÄíselných znakov. Duplicate Book Name Duplicitný názov knihy The Book Name "%s" has been entered more than once. Názov knihy "%s" bol zadaný viac ako raz. BiblesPlugin.BibleManager Scripture Reference Error Chyba v odkaze Biblie Web Bible cannot be used Biblia z www sa nedá použiÅ¥ Text Search is not available with Web Bibles. Hľadanie textu nie je dostupné v Biblii z www. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nebolo zadané slovo pre vyhľadávanie. Na vyhľadávanie textu obsahujúceho vÅ¡etky slová je potrebné tieto slová oddelit medzerou. Oddelením slov Äiarkou sa bude vyhľadávaÅ¥ text obsahujúcí aspoň jedno zo zadaných slov. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Žiadne Biblie nie sú nainÅ¡talované. Na pridanie jednej alebo viac Biblii prosím použite Sprievodcu importom. No Bibles Available Žiadne Biblie k dispozícii. Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Odkaz z Biblie buÄ nie je podporovaný aplikáciou OpenLP, alebo je neplatný. Uistite sa prosím, že odkaz odpovedá jednému z nasledujúcich vzorov alebo sa obráťte na manuál: Kapitola Knihy Kapitola Knihy%(range)s Kapitola Knihy%(verse)sVerÅ¡%(range)sVerÅ¡ Kapitola Knihy%(verse)sVerÅ¡%(range)sVerÅ¡%(list)sVerÅ¡%(range)sVerÅ¡ Kapitola Knihy%(verse)sVerÅ¡%(range)sVerÅ¡%(list)sKapitola%(verse)sVerÅ¡%(range)sVerÅ¡ Kapitola Knihy%(verse)sVerÅ¡%(range)sKapitola%(verse)sVerÅ¡ BiblesPlugin.BiblesTab Verse Display ZobraziÅ¥ verÅ¡ Only show new chapter numbers ZobraziÅ¥ len Äíslo novej kapitoly Bible theme: Motív Biblie: No Brackets Žiadne zátvorky ( And ) ( A ) { And } { A } [ And ] [ A ] Note: Changes do not affect verses already in the service. Poznámka: VerÅ¡e, ktoré sú už v službe, nie sú ovplyvnené zmenami. Display second Bible verses ZobraziÅ¥ druhé verÅ¡e z Biblie Custom Scripture References Vlastné odkazy z Biblie. Verse Separator: OddeľovaÄ verÅ¡ov: Range Separator: OddeľovaÄ rozsahov: List Separator: OddeľovaÄ zoznamov: End Mark: UkonÄovacia znaÄka: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Je možné definovaÅ¥ viac oddeľovaÄov verÅ¡a. Tie musia byÅ¥ oddelené zvislou Äiarou "|". Pre použitie predvolenej hodnoty zmažte tento riadok. English SlovenÄina Default Bible Language Predvolený jazyk Biblie Book name language in search field, search results and on display: Jazyk názvu knihy vo vyhľadávacom poli, výsledkoch vyhľadávania a pri zobrazení: Bible Language Jazyk Biblie Application Language Jazyk aplikácie Show verse numbers ZobraziÅ¥ Äíslovanie slôh BiblesPlugin.BookNameDialog Select Book Name VybraÅ¥ názov knihy Current name: SúÄasný názov: Corresponding name: Zodpovedajúci názov: Show Books From ZobraziÅ¥ knihy od Old Testament Starý zákon New Testament Nový zákon Apocrypha Apokryfy The following book name cannot be matched up internally. Please select the corresponding name from the list. Pre nasledujúci názov knihy nie je zodpovedajúci vnútorný názov. Prosím vyberte zodpovedajúci názov zo zoznamu. BiblesPlugin.BookNameForm You need to select a book. Je potrebné vybraÅ¥ knihu. BiblesPlugin.CSVBible Importing books... %s Importovanie kníh... %s Importing verses... done. Importovanie verÅ¡ov... dokonÄené. BiblesPlugin.EditBibleForm Bible Editor Editor Biblie License Details Podrobnosti k licencii Version name: Názov verzie Copyright: Autorské práva: Permissions: Povolenia: Default Bible Language Predvolený jazyk Biblie Book name language in search field, search results and on display: Jazyk názvu knihy vo vyhľadávacom poli, výsledky vyhľadávania a pri zobrazení: Global Settings Globálne nastavenia Bible Language Jazyk Biblie Application Language Jazyk aplikácie English SlovenÄina This is a Web Download Bible. It is not possible to customize the Book Names. Toto je Biblia stiahnutá z internetu. Nie je možné prispôsobiÅ¥ názvy kníh. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Pre prispôsobenie názvov kníh musí byÅ¥ vybraný "Jazyk Biblie" v karte Meta Dáta alebo na stránke Biblie v nastavení OpenLP, ak je vybrané "Globálne nastavenie" BiblesPlugin.HTTPBible Registering Bible and loading books... Registrujem Bibliu a sÅ¥ahujem knihy... Registering Language... Registrujem jazyk... Importing %s... Importing <book name>... Importujem %s... Download Error Chyba pri sÅ¥ahovaní There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Pri sÅ¥ahovaní výberu verÅ¡ov sa vyskytol problém. Prosím preverte svoje internetové pripojenie. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. Parse Error Chyba pri spracovaní There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Pri rozbalovaní výberu verÅ¡ov sa vyskytol problém. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. BiblesPlugin.ImportWizardForm Bible Import Wizard Sprievodca importom Biblie This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Tento sprievodca uľahÄí import Biblií z rôzných formátov. Proces importu sa spustí klepnutím nižšie na tlaÄítko Äalší. Potom vyberte formát, z ktorého sa bude Biblia importovaÅ¥. Web Download Stiahnutie z webu Location: Umiestnenie: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Biblia: Download Options Voľby sÅ¥ahovania Server: Server: Username: Používateľské meno: Password: Heslo: Proxy Server (Optional) Proxy Server (Voliteľné) License Details Podrobnosti k licencii Set up the Bible's license details. NastaviÅ¥ podrobnosti k licencii Biblie Version name: Názov verzie Copyright: Autorské práva: Please wait while your Bible is imported. Prosím poÄkajte, kým sa Biblia importuje. You need to specify a file with books of the Bible to use in the import. Je potrebné urÄiÅ¥ súbor s knihami Biblie. Tento súbor sa použije pri importe. You need to specify a file of Bible verses to import. Pre import je potrebné urÄiÅ¥ súbor s verÅ¡ami Biblie. You need to specify a version name for your Bible. Je nutné uviesÅ¥ názov verzie Biblie. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Biblii je potrebné nastaviÅ¥ autorské práva. Biblie v Public Domain je nutné takto oznaÄiÅ¥. Bible Exists Biblia existuje This Bible already exists. Please import a different Bible or first delete the existing one. Táto Biblia už existuje. Importujte prosím inú Bibliu alebo najskôr zmažte tú existujúcu. Your Bible import failed. Import Biblie sa nepodaril. CSV File CSV súbor Bibleserver Bibleserver Permissions: Povolenia: Bible file: Súbor s Bibliou: Books file: Súbor s knihami: Verses file: Súbor s verÅ¡ami: Registering Bible... Registrujem Bibliu... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrovaná Biblia. Vezmite prosím na vedomie, že verÅ¡e budú sÅ¥ahované na vyžiadanie, preto je potrebné internetové pripojenie. Click to download bible list Kliknite pre stiahnutie zoznamu Biblií Download bible list StiahnuÅ¥ zoznam Biblií Error during download Chyba poÄas sÅ¥ahovania An error occurred while downloading the list of bibles from %s. Vznikla chyba pri sÅ¥ahovaní zoznamu Biblií z %s. BiblesPlugin.LanguageDialog Select Language Vyber jazyk OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP nie je schopný urÄiÅ¥ jazyk tohto prekladu Biblie. Vyberte prosím jazyk zo zoznamu nižšie. Language: Jazyk: BiblesPlugin.LanguageForm You need to choose a language. Je potrebné vybraÅ¥ jazyk. BiblesPlugin.MediaItem Quick Rýchly Find: HľadaÅ¥: Book: Kniha: Chapter: Kapitola: Verse: VerÅ¡: From: Od: To: Do: Text Search Vyhľadávanie textu Second: Druhý: Scripture Reference Odkaz do Biblie Toggle to keep or clear the previous results. Prepnúť ponechanie alebo zmazanie predchádzajúcich výsledkov. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nie je možné kombinovaÅ¥ jednoduché a dvojité výsledky hľadania verÅ¡ov v Bibli. Prajete si zmazaÅ¥ výsledky hľadania a zaÄaÅ¥ s novým vyhľadávaním? Bible not fully loaded. Biblia nie je naÄítaná celá. Information Informácie The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druhá Biblia neobsahuje vÅ¡etky verÅ¡e ako sú v hlavnej Biblii. Budú zobrazené len verÅ¡e nájdené v obidvoch Bibliách. %d verÅ¡ov nebolo zahrnutých vo výsledkoch. Search Scripture Reference... VyhľadávaÅ¥ odkaz do Biblie... Search Text... VyhľadávaÅ¥ text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Ste si istí, že chcete úplne vymazaÅ¥ Bibliu "%s" z OpenLP? Pre použite bude potrebné naimportovaÅ¥ Bibliu znovu. Advanced PokroÄilé BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Bol zadaný nesprávny typ súboru Biblie. OpenSong Biblie môžu byÅ¥ komprimované. Pred importom je nutné ich rozbaliÅ¥. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Bol zadaný nesprávny typ súboru Biblie. Tento typ vyzerá ako Zefania XML biblia, prosím použite Zefania import. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importovanie %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Odstraňujem nepoužívané znaÄky (bude to chvíľu trvaÅ¥) ... Importing %(bookname)s %(chapter)s... Importovanie %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory VybraÅ¥ prieÄinok pre zálohu Bible Upgrade Wizard Sprievodca aktualizácie Biblie This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Tento sprievodca pomáhá s aktualizáciou existujúcich Biblií z predchádzajúcej verzie OpenLP 2. Pre spustenie aktualizácie kliknite nižšie na tlaÄítko ÄŽalej. Select Backup Directory VybraÅ¥ preÄinok pre zálohu Please select a backup directory for your Bibles Vyberte prosím prieÄinok pre zálohu Biblií Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Predchádzajúce vydania OpenLP 2.0 nie sú schopné aktualizovaÅ¥ Bibliu. Bude vytvorená záloha súÄasných Biblií, aby bylo možné v prípadÄ› potreby jednoducho nakopírovaÅ¥ súbory späť do dátoveho priÄinku aplikácie OpenLP. InÅ¡trukcie, ako obnoviÅ¥ súbory, nájdete v <a href="http://wiki.openlp.org/faq">Äasto kladených otázkach</a>. Please select a backup location for your Bibles. Vyberte prosím umiestenie pre zálohu Biblie. Backup Directory: PrieÄinok pre zálohu: There is no need to backup my Bibles Nie je potrebné zálohovaÅ¥ Bibliu Select Bibles VybraÅ¥ Bibliu Please select the Bibles to upgrade Vyberte prosím Bibliu na aktualizáciu Upgrading Aktualizujuem Please wait while your Bibles are upgraded. ÄŒakajte prosím, až budú Biblie aktualizované. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Záloha nebola úspeÅ¡ná. Pre zálohu Biblií je potrebné oprávnenie k zápisu do zadaného prieÄinku. Upgrading Bible %s of %s: "%s" Failed Aktualizácia Biblie %s z %s: "%s" Zlyhala Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem ... Download Error Chyba pri sÅ¥ahovaní To upgrade your Web Bibles an Internet connection is required. Pre aktualizáciu Biblií z www je potrebné internetové pripojenie. Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem %s ... Upgrading Bible %s of %s: "%s" Complete Aktualizujem Biblie %s z %s: "%s" DokonÄené , %s failed , %s zlyhalo Upgrading Bible(s): %s successful%s Aktualizácia Biblií: %s úspeÅ¡ná%s Upgrade failed. Aktualizácia zlyhala. You need to specify a backup directory for your Bibles. Je potrebné upresniÅ¥ prieÄinok pre zálohu Biblií. Starting upgrade... Spúšťam aktualizáciu... There are no Bibles that need to be upgraded. Nie sú žiadne Biblie, ktoré treba aktualizovaÅ¥. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualizácia Biblií: %(success)d úspeÅ¡ná%(failed_text)s Upozornenie: VerÅ¡e z www Biblie budú stiahnuté na vyžiadanie a preto je potrebné internetové pripojenie. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Bol zadaný nesprávny typ súboru Biblie. Zefania Biblie môžu byÅ¥ komprimované. Pred importom je nutné ich rozbaliÅ¥. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importovanie %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Vlastný snímok Custom Slides name plural Vlastné snímky Custom Slides container title Vlastné snímky Load a new custom slide. NaÄítaj nový vlastný snímok. Import a custom slide. Import vlastného snímku. Add a new custom slide. PridaÅ¥ nový vlastný snímok. Edit the selected custom slide. UpraviÅ¥ vybraný vlastný snímok. Delete the selected custom slide. ZmazaÅ¥ vybraný vlastný snímok. Preview the selected custom slide. ZobraziÅ¥ vybraný vlastný snímok. Send the selected custom slide live. ZobraziÅ¥ vybraný vlastný snímok naživo. Add the selected custom slide to the service. Pridaj vybraný vlastný snímok do služby <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Doplnok - vlastný snímok</strong><br />Vlastný snímok poskytuje možnosÅ¥ nastaviÅ¥ vlastné textové snímky, ktoré môžu byÅ¥ zobrazené na obrazovke rovnako ako piesne . Tento modul poskytuje väÄÅ¡ie možnosti s modulmi piesní. CustomPlugin.CustomTab Custom Display Vlastné zobrazenie. Display footer Päta zobrazenia. Import missing custom slides from service files Import chýbajúcich piesní zo súborov služby. CustomPlugin.EditCustomForm Edit Custom Slides UpraviÅ¥ vlastné snímky &Title: &Názov: Add a new slide at bottom. PridaÅ¥ nový snímok na spodok. Edit the selected slide. UpraviÅ¥ vybraný snímok. Edit all the slides at once. UpraviÅ¥ vÅ¡etky snímky naraz. Split a slide into two by inserting a slide splitter. Vložením oddeľovaÄa sa snímok rozdelí na dva. The&me: &Motív: &Credits: &Zásluhy: You need to type in a title. Je potrebné zadaÅ¥ názov. Ed&it All &UpraviÅ¥ vÅ¡etko Insert Slide VložiÅ¥ snímok You need to add at least one slide. Musíte vložiÅ¥ aspoň jeden snímok. CustomPlugin.EditVerseForm Edit Slide UpraviÅ¥ snímok CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Ste si istý, že chcete zmazaÅ¥ "%d" vybraných užívateľských snímkov(y)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Modul obrázok</strong><br />Modul obrázok sa stará o zobrazovanie obrázkov.<br />Jednou z charakteristických funkcí tohto modulu je schopnosÅ¥ v správcovi služby zoskúpiÅ¥ niekoľko obrázkov dohromady. Táto vlastnosÅ¥ zjednoduÅ¡uje zobrazenie viacero obrázkov. Tento modul tiež využívá vlastnosti "Äasová smyÄka" aplikace OpenLP a je tiež možné vytvoriÅ¥ prezentáciu obrázkov, které pobežia samostatne. Taktiež využitím obrázkov z modulu je možné prekryÅ¥ pozadie súÄasného motívu. Image name singular Obrázok Images name plural Obrázky Images container title Obrázky Load a new image. NaÄítaÅ¥ nový obrázok. Add a new image. PridaÅ¥ nový obrázok. Edit the selected image. UpraviÅ¥ vybraný obrázok. Delete the selected image. ZmazaÅ¥ vybraný obrázok. Preview the selected image. Náhľad vybraného obrázku. Send the selected image live. ZobraziÅ¥ vybraný obrázok naživo. Add the selected image to the service. PridaÅ¥ vybraný obrázok do služby. ImagePlugin.AddGroupForm Add group PridaÅ¥ skupinu Parent group: Nadradená skupina: Group name: Názov skupiny: You need to type in a group name. Musíte napísaÅ¥ názov skupiny. Could not add the new group. Nie je možné pridaÅ¥ novú skupinu. This group already exists. Skupina už existuje. ImagePlugin.ChooseGroupForm Select Image Group VybraÅ¥ skupinu obrázkov Add images to group: PridaÅ¥ obrázky do skupiny: No group Žiadna skupina Existing group Existujúca skupina New group Nová skupina ImagePlugin.ExceptionDialog Select Attachment VybraÅ¥ prílohu ImagePlugin.MediaItem Select Image(s) VybraÅ¥ obrázky You must select an image to replace the background with. Pre nahradenie pozadia musíte najskôr vybraÅ¥ obrázok. Missing Image(s) Chýbajúce obrázky The following image(s) no longer exist: %s Nasledujúce obrázky už neexistujú: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Nasledujúci obrázok(y) neexistujú.%s Chcete pridaÅ¥ Äaľšie obrázky? There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahradením pozadia. Obrázok "%s" už neexistuje. There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. -- Top-level group -- -- Najvyššia skupina -- You must select an image or group to delete. Musíte vybraÅ¥ obrázok alebo skupinu na zmazanie. Remove group OdobraÅ¥ skupinu Are you sure you want to remove "%s" and everything in it? Ste si istý, že chcete zmazaÅ¥ "%s" a vÅ¡etko v tom? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Viditeľné pozadie pre obrázky s iným pomerom strán než má obrazovka. Media.player Audio Zvuk Video Video VLC is an external player which supports a number of different formats. VLC je externý prehrávaÄ s podporou prehrávania rôznych súborov. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit je prehrávaÄ, ktorý beží vo webovom prehliadaÄi. Tento prehrávaÄ vie prehrávaÅ¥ texty v obraze. This media player uses your operating system to provide media capabilities. Tento prehrávaÄ médií využíva na prehrávanie schopnosti operaÄného systému. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Modul média</strong><br />Modul média umožňuje prehrávaÅ¥ audio a video. Media name singular Média Media name plural Média Media container title Média Load new media. NaÄítaÅ¥ nové médium. Add new media. PridaÅ¥ nové médium. Edit the selected media. UpraviÅ¥ vybrané médium. Delete the selected media. ZmazaÅ¥ vybrané médium. Preview the selected media. Náhľad vybraného média. Send the selected media live. ZobraziÅ¥ vybrané médium naživo. Add the selected media to the service. PridaÅ¥ vybrané médium do služby. MediaPlugin.MediaClipSelector Select Media Clip VybraÅ¥ médium Source Zdroj Media path: Cesta k médiu: Select drive from list Vyber zariadenie zo zoznamu Load disc NaÄítaÅ¥ disk Track Details Podrobnosti stopy Title: Nadpis: Audio track: Zvuková stopa: Subtitle track: Titulky: HH:mm:ss.z HH:mm:ss.z Clip Range Rozsah klipu Start point: Å tartovacia znaÄka: Set start point NastaviÅ¥ Å¡tartovaciu znaÄku Jump to start point Skok na Å¡tartovaciu znaÄku End point: Koncová znaÄka: Set end point NastaviÅ¥ koncovú znaÄku Jump to end point Skok na koncovú znaÄku MediaPlugin.MediaClipSelectorForm No path was given Nebola zadaná žiadna cesta Given path does not exists Zadaná cesta neexistuje An error happened during initialization of VLC player Vyskytla sa chyba poÄas inicializácie VLC prehrávaÄa VLC player failed playing the media VLC player zlyhal pri prehrávaní média CD not loaded correctly CD sa nepodarilo preÄítaÅ¥ The CD was not loaded correctly, please re-load and try again. CD sa nepodarilo preÄítaÅ¥, pokúste sa vložiÅ¥ disk a skúste nahraÅ¥ eÅ¡te raz. DVD not loaded correctly DVD sa nepodarilo preÄítaÅ¥ The DVD was not loaded correctly, please re-load and try again. DVD sa nepodarilo preÄítaÅ¥, pokúste sa vložiÅ¥ disk a skúste nahraÅ¥ eÅ¡te raz. Set name of mediaclip Nastav názov médiu Name of mediaclip: Názov média Enter a valid name or cancel Vložte platný názov alebo zruÅ¡te Invalid character Neplatný znak The name of the mediaclip must not contain the character ":" Názov média nemôže obsahovaÅ¥ ":" MediaPlugin.MediaItem Select Media VybraÅ¥ médium You must select a media file to delete. Pre zmazanie musíte najskôr vybraÅ¥ súbor s médiom. You must select a media file to replace the background with. Pre nahradenie pozadia musíte najskôr vybraÅ¥ súbor s médiom. There was a problem replacing your background, the media file "%s" no longer exists. Problém s nahradením pozadia. Súbor s médiom "%s" už neexistuje. Missing Media File Chybajúce súbory s médiami The file %s no longer exists. Súbor %s už neexistuje. Videos (%s);;Audio (%s);;%s (*) Video (%s);;Zvuk (%s);;%s (*) There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. Unsupported File Nepodporovaný súbor Use Player: PoužiÅ¥ prehrávaÄ: VLC player required Požadovaný VLC prehrávaÄ VLC player required for playback of optical devices Na prehrávanie optických diskov je potrebný VLC prehrávaÄ Load CD/DVD NahraÅ¥ CD/DVD Load CD/DVD - only supported when VLC is installed and enabled NahraÅ¥ CD/DVD - podporované iba s nainÅ¡talovaným VLC prehrávaÄom The optical disc %s is no longer available. Optický disk %s už nie je k dispozícii. Mediaclip already saved Klip už uložený This mediaclip has already been saved Klip už bol uložený MediaPlugin.MediaTab Allow media player to be overridden PovoliÅ¥ prekrytie prehrávaÄa médií. Start Live items automatically Automaticky spustiÅ¥ prehrávanie položky Naživo OPenLP.MainWindow &Projector Manager Správca &projektorov OpenLP Image Files Súbory obrázkov Information Informácie Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Formát Biblie sa zmenil. Je nutné upgradovaÅ¥ existujúcu Bibliu. Má OpenLP upgradovaÅ¥ teraz? Backup Záloha OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Bola nainÅ¡talovaná nová verzia OpenLP, chcete vytvoriÅ¥ zálohu dátového prieÄinka OpenLP? Backup of the data folder failed! Záloha dátového prieÄinku zlyhala! A backup of the data folder has been created at %s Záloha dátoveho prieÄinku bola vytvorená v %s Open OtvoriÅ¥ OpenLP.AboutForm Credits Kredity License Licencia build %s vytvorené %s 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; version 2 of the License. Tento program je slobodný softvér, môžete ho šíriÅ¥ a / alebo modifikovaÅ¥ podľa ustanovení GNU General Public License, vydávanej Free Software Foundation, verzia 2 tejto licencie. 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 below for more details. Tento program je rozÅ¡irovaný v nádeji, že bude užitoÄný, ale BEZ AKEJKOĽVEK ZÃRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URÄŒITà ÚČEL. Pozri dole pre ÄalÅ¡ie podrobnosti. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source premietanie textov piesní. OpenLP je voľne dostupný kresÅ¥anský softvér pre premietanie textov piesní. Pri kresÅ¥anských bohoslužbách slúži k zobrazeniu piesní, verÅ¡ov z Biblie, videí, obrázkov a dokonca prezentácií (ak Impress, PowerPoint alebo PowerPoint Viewer je inÅ¡talovaný). K používaniu je potrebný poÄítaÄ a dataprojektor. Viac informácií o OpenLP: http://openlp.org/ OpenLP je tvorený a spravovaný dobrovoľníkmi. Ak by ste chceli vidieÅ¥ viac voľne dostupného kresÅ¥anského softvéru, zvážte prosím, Äi sa tiež nechcete zapojiÅ¥ do tvorby OpenLP. Môžte tak spraviÅ¥ pomocou tlaÄidla nižšie. Volunteer Dobrovoľník Project Lead Vedenie projektu Developers Vývojári Contributors Prispievatelia Packagers BalíÄkovaÄi Testers Testeri Translators Prekladatelia Afrikaans (af) AfrikánÄina (af) Czech (cs) ÄŒeÅ¡tina (cs) Danish (da) Dánsky (da) German (de) NÄ›mÄina (de) Greek (el) GréÄtina (el) English, United Kingdom (en_GB) AngliÄtina, Spojené Kráľovstvo (en_GB) English, South Africa (en_ZA) AngliÄtina, Jihoafrická republika (en_ZA) Spanish (es) Å panielÄina (es) Estonian (et) EstónÄina (et) Finnish (fi) FínÅ¡tina (fi) French (fr) FrancúzÅ¡tina (fr) Hungarian (hu) MaÄarÄina (hu) Indonesian (id) Indonéština (id) Japanese (ja) JaponÄina (ja) Norwegian BokmÃ¥l (nb) NórÄina BokmÃ¥l (nb) Dutch (nl) HolandÄina (nl) Polish (pl) PolÅ¡tina (pl) Portuguese, Brazil (pt_BR) PortugalÄina, Brazília (pt_BR) Russian (ru) RuÅ¡tina (ru) Swedish (sv) Å védÄina (sv) Tamil(Sri-Lanka) (ta_LK) TamilÄina(Srí Lanka) (ta_LK) Chinese(China) (zh_CN) ČínÅ¡tina(Čína) (zh_CN) Documentation Dokumentácia Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Vytvorené za použitia Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. ZávereÄné zásluhy "VeÄ Boh tak miloval svet, že dal svojho jednorodeného Syna, aby nezahynul nik, kto v neho verí, ale aby mal veÄný život." -- Ján 3:16 V neposlednej rade, hlavné poÄakovanie patrí Bohu, nášmu Otcovi, že poslal Svojho Syna zomrieÅ¥ na kríži a oslobodil nás od hriechu. Prinášame túto aplikáciu zdarma, protože On nás oslobodil. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Autorské práva © 2004-2016 %s ÄŒiastoÄné autorská práva © 2004-2016 %s OpenLP.AdvancedTab UI Settings Nastavenia používateľského rozhrania Number of recent files to display: PoÄet zobrazených nedávnych súborov: Remember active media manager tab on startup ZapamätaÅ¥ si akívnu kartu správcu médií pri spustení Double-click to send items straight to live Dvojklik pre zobrazenie položiek Naživo Expand new service items on creation RozbaliÅ¥ nové položky služby pri vytváraní. Enable application exit confirmation PovoliÅ¥ potvrdenie ukonÄenia aplikácie Mouse Cursor Kurzor myÅ¡i Hide mouse cursor when over display window SkryÅ¥ kurzor myÅ¡i poÄas prechodu cez okno zobrazenia Default Image Východzí obrázok Background color: Farba pozadia: Image file: Obrázok: Open File OtvoriÅ¥ súbor Advanced PokroÄilé Preview items when clicked in Media Manager Náhľad položiek po kliknutí v správcovi médií Browse for an image file to display. PrehľadávaÅ¥ obrázky na zobrazenie. Revert to the default OpenLP logo. ObnoviÅ¥ pôvodné OpenLP logo. Default Service Name Predvolený názov služby Enable default service name Zapnúť predvolený názov služby. Date and Time: Dátum a Äas: Monday Pondelok Tuesday Utorok Wednesday Streda Friday Piatok Saturday Sobota Sunday Nedeľa Now Teraz Time when usual service starts. ÄŒas, kedy obvykle zaÄína služba. Name: Názov: Consult the OpenLP manual for usage. Pre použitie sa obráťte na OpenLP manuál. Revert to the default service name "%s". VrátiÅ¥ na predvolený názov služby "%s". Example: Príklad: Bypass X11 Window Manager ObísÅ¥ správcu okien X11 Syntax error. Chyba syntaxe. Data Location Umiestnenie dát Current path: Aktuálna cesta: Custom path: Používateľská cesta: Browse for new data file location. PrehľadávaÅ¥ nové umiestnenie dátových súborov. Set the data location to the default. NastaviÅ¥ umiestnenie dát na predvolené. Cancel ZruÅ¡iÅ¥ Cancel OpenLP data directory location change. ZruÅ¡iÅ¥ zmenu umiestnenia dátového prieÄinku OpenLP. Copy data to new location. KopírovaÅ¥ dáta do nového umiestnenia. Copy the OpenLP data files to the new location. KopírovaÅ¥ dátové súbory OpenLP do nového umiestnenia. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VAROVANIE:</strong>Nové umiestnenie dátového prieÄinku už obsahuje dátové súbory OpenLP. Tieto súbory BUDÚ nahradené poÄas kopírovania. Data Directory Error Chyba dátového prieÄinku. Select Data Directory Location VybraÅ¥ umiestnenie dátového prieÄinku. Confirm Data Directory Change PotvrdiÅ¥ zmenu dátového prieÄinku. Reset Data Directory ObnoviÅ¥ dátový prieÄinok Overwrite Existing Data PrepísaÅ¥ existujúce údaje OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Dátový prieÄinok OpenLP nebol nájdený %s Predvolené umiestnenie OpenLP bolo skôr zmenené na tento prieÄinok. Ak bolo nové umiestnenie na výmeniteľnom zariadení, je nutné dané zariadenie najskôr pripojiÅ¥. Kliknite na "Nie", aby sa preruÅ¡ilo naÄítanie OpenLP. To umožní opraviÅ¥ daný problém. Kliknite na "Ãno", aby sa dátový prieÄinok nastavil na predvolené umiestnenie. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Ste si istý, že chcete zmeniÅ¥ umiestnenie dátového prieÄinku OpenLP na: %s Toto umiestnenie bude zmenené po zatvorení aplikácie OpenLP. Thursday Å tvrtok Display Workarounds Zobraz pracovnú plochu Use alternating row colours in lists PoužiÅ¥ striedanie farieb v riadkoch WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? VAROVANIE: Umiestnenie %s ktoré ste vybrali zrejme obsahuje dátové súbory aplikácie OpenLP. Prajete si nahradiÅ¥ tieto súbory aktuálnymi dátovými súbormi? Restart Required Požadovaný reÅ¡tart This change will only take effect once OpenLP has been restarted. Táto zmena sa prejaví až po reÅ¡tarte programu OpenLP. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Ste si istý, že chcete zmeniÅ¥ umiestnenie dátového prieÄinku OpenLP na predvolené umiestnenie? Toto umiestnenie sa použije po zatvorení aplikácie OpenLP. OpenLP.ColorButton Click to select a color. Kliknúť pre výber farby. OpenLP.DB RGB RGB Video Video Digital Digitálne Storage Úložisko Network SieÅ¥ RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digitálne 1 Digital 2 Digitálne 2 Digital 3 Digitálne 3 Digital 4 Digitálne 4 Digital 5 Digitálne 5 Digital 6 Digitálne 6 Digital 7 Digitálne 7 Digital 8 Digitálne 8 Digital 9 Digitálne 9 Storage 1 Úložisko 1 Storage 2 Úložisko 2 Storage 3 Úložisko 3 Storage 4 Úložisko 4 Storage 5 Úložisko 5 Storage 6 Úložisko 6 Storage 7 Úložisko 7 Storage 8 Úložisko 8 Storage 9 Úložisko 9 Network 1 SieÅ¥ 1 Network 2 SieÅ¥ 2 Network 3 SieÅ¥ 3 Network 4 SieÅ¥ 4 Network 5 SieÅ¥ 5 Network 6 SieÅ¥ 6 Network 7 SieÅ¥ 7 Network 8 SieÅ¥ 8 Network 9 SieÅ¥ 9 OpenLP.ExceptionDialog Error Occurred Vyskytla sa chyba Send E-Mail PoslaÅ¥ email. Save to File UložiÅ¥ do súboru Attach File PripojiÅ¥ súbor Description characters to enter : %s Popisné znaky na potvrdenie : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Prosím, popíšte, Äo ste robili, keÄ sa vyskytla táto chyba. Pokiaľ možno v angliÄtine. (Najmenej 20 znakov) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Ups! V OpenLP sa vyskytol problém a program sa nemohol obnoviÅ¥. Text v poli nižšie obsahuje informácie, ktoré by mohli byÅ¥ užitoÄné pre OpenLP vývojárov. Prosím poÅ¡lite e-mail na bugs@openlp.org spolu s podrobným popisom toho, Äo ste robili, keÄ sa problém vyskytol. Tak isto pripojte akékoľvek súbory, ktoré spustili tento problém. OpenLP.ExceptionForm Platform: %s Platforma: %s Save Crash Report UložiÅ¥ správu o zlyhaní Text files (*.txt *.log *.text) Textové súbory (*.txt *.log *.text) OpenLP.FileRenameForm File Rename PremenovaÅ¥ súboru New File Name: Nový názov súboru: File Copy KopírovaÅ¥ súbor OpenLP.FirstTimeLanguageForm Select Translation VybraÅ¥ preklad Choose the translation you'd like to use in OpenLP. Vyber preklad, ktorý chceÅ¡ použiÅ¥ v OpenLP. Translation: Preklad: OpenLP.FirstTimeWizard Songs Piesne First Time Wizard Sprievodca prvým spustením Welcome to the First Time Wizard Vitajte v sprievodcovi prvým sputením Activate required Plugins Aktivácia požadovaných pluginov Select the Plugins you wish to use. Vyberte pluginy, ktoré chcete použiÅ¥. Bible Biblia Images Obrázky Presentations Prezentácie Media (Audio and Video) Médiá (Zvuk a Video) Allow remote access Povolenie vzdialeného prístupu Monitor Song Usage Sledovanie použitia piesní Allow Alerts PovoliÅ¥ upozornenia Default Settings Pôvodné nastavenia. Downloading %s... SÅ¥ahovanie %s... Enabling selected plugins... Povoľujem vybraté pluginy... No Internet Connection Žiadne internetové pripojenie Unable to detect an Internet connection. Nedá sa zistiÅ¥ internetové pripojenie. Sample Songs Ukážkové piesne Select and download public domain songs. VybraÅ¥ a stiahnuÅ¥ verejne dostupné piesne. Sample Bibles Ukážkové Biblie. Select and download free Bibles. VybraÅ¥ a stiahnuÅ¥ voľne dostupné Biblie. Sample Themes Ukážkové témy Select and download sample themes. VybraÅ¥ a stiahnuÅ¥ ukážkové témy. Set up default settings to be used by OpenLP. NastaviÅ¥ pôvodné nastavenia použité v OpenLP Default output display: Pôvodné výstupné zobrazenie: Select default theme: Vyber základnú tému. Starting configuration process... Å tartovanie konfiguraÄného procesu... Setting Up And Downloading Nastavovanie a sÅ¥ahovanie Please wait while OpenLP is set up and your data is downloaded. ÄŒakajte prosím, pokiaľ bude aplikácia OpenLP nastavená a dáta stiahnuté. Setting Up Nastavovanie Custom Slides Vlastné snímky Finish Koniec No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Internetové pripojenie nie je dostupné. Sprievodca prvým spustením potrebuje internetové pripojenie pre stiahnutie ukážok piesní, Biblií a motívov. Kliknite na tlaÄidlo Koniec pre spustenie aplikácie OpenLP s predvoleným nastavením a bez vzorových dát. Ak chcete znovu spustiÅ¥ sprievodcu a importovaÅ¥ tieto vzorové dáta na neskorÅ¡iu dobru, skontrolujte svoje internetové pripojenie a znovu spustite tohto sprievodcu výberom "Nastavenia/ Znovu spustiÅ¥ sprievodcu prvým spustením" z OpenLP. Download Error Chyba pri sÅ¥ahovaní There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Vyskytol sa problém s pripojením poÄas sÅ¥ahovania, ÄalÅ¡ie sÅ¥ahovanie bude preskoÄené. Pokúste sa znovu sputiÅ¥ Sprievodcu po prvom spustení. Download complete. Click the %s button to return to OpenLP. SÅ¥ahovanie dokonÄené. Kliknutím na tlaÄítko %s sa vrátite do aplikácie OpenLP. Download complete. Click the %s button to start OpenLP. SÅ¥ahovanie dokonÄené. Kliknutím na tlaÄítko %s spustíte aplikáciu OpenLP. Click the %s button to return to OpenLP. Kliknutím na tlaÄítko %s sa vrátite do aplikácie OpenLP. Click the %s button to start OpenLP. Kliknutím na tlaÄítko %s spustíte aplikáciu OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Vyskytol sa problém s pripojením poÄas sÅ¥ahovania, ÄalÅ¡ie sÅ¥ahovanie bude preskoÄené. Pokúste sa znovu sputiÅ¥ Sprievodcu po prvom spustení. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Tento sprievodca vám pomôže nakonfigurovaÅ¥ OpenLP pre prvotné použitie. Pre Å¡tart kliknite na tlaÄitko %s. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Ak chcete úplne zruÅ¡iÅ¥ sprievodcu prvým spustením (a nespustiÅ¥ OpenLP), kliknite na tlaÄítko %s. Downloading Resource Index SÅ¥ahujem zdrojový index Please wait while the resource index is downloaded. ÄŒakajte prosím, až bude stiahnutý zdrojový index. Please wait while OpenLP downloads the resource index file... ÄŒakajte prosím, pokiaľ aplikácia OpenLP stiahne zdrojový index... Downloading and Configuring SÅ¥ahovanie a nastavovanie Please wait while resources are downloaded and OpenLP is configured. PoÄkajte prosím až budú stiahnuté vÅ¡etky zdroje a aplikácia OpenLP bude nakonfigurovaná. Network Error Chyba siete There was a network error attempting to connect to retrieve initial configuration information Pri pokuse o získanie poÄiatoÄného nastavenia vznikla chyba siete Cancel ZruÅ¡iÅ¥ Unable to download some files Niektoré súbory nie je možné stiahnuÅ¥ OpenLP.FormattingTagDialog Configure Formatting Tags NastaviÅ¥ formátovacie znaÄky Description Popis Tag ZnaÄka Start HTML ZaÄiatok HTML End HTML Koniec HTML Default Formatting Å tandartné formátovanie Custom Formatting Vlastné formátovanie OpenLP.FormattingTagForm <HTML here> <HTML tu> Validation Error Chyba overovania Description is missing Chýba popis Tag is missing Chýba znaÄka Tag %s already defined. ZnaÄka %s je už definovaná. Description %s already defined. Popis %s je už definovaný. Start tag %s is not valid HTML ZaÄiatoÄná znaÄka %s nie je platná znaÄka HTML End tag %(end)s does not match end tag for start tag %(start)s Koncová znaÄka %(end)s nezodpovedá uzatváracej znaÄke k znaÄke %(start)s OpenLP.FormattingTags Red ÄŒervená Black ÄŒierna Blue Modrá Yellow Žltá Green Zelená Pink Ružová Orange Oranžová Purple Fialová White Biela Superscript Horný index Subscript Dolný index Paragraph Odstavec Bold TuÄné Italics Kurzíva Underline PodÄiarknuté Break Zalomenie OpenLP.GeneralTab General VÅ¡eobecné Monitors Monitory Select monitor for output display: VybraÅ¥ monitor pre výstupné zobrazenie Display if a single screen Zobrazenie pri jednej obrazovke Application Startup Spustenie aplikácie Show blank screen warning ZobraziÅ¥ varovanie pri prázdnej obrazovke Automatically open the last service Automaticky otvoriÅ¥ poslednú službu Show the splash screen ZobraziÅ¥ úvodnú obrazovku Application Settings Nastavenie aplikácie Prompt to save before starting a new service Pred spustením novej služby sa pýtaÅ¥ na uloženie. Automatically preview next item in service Automatický náhľad ÄalÅ¡ej položky v službe sec sek CCLI Details CCLI Detaily SongSelect username: SongSelect používateľské meno: SongSelect password: SongSelect heslo: X X Y Y Height Výška Width Šírka Check for updates to OpenLP Kontrola aktualizácií aplikácie OpenLP Unblank display when adding new live item OdkryÅ¥ zobrazenie pri pridávaní novej položky naživo Timed slide interval: ÄŒasový interval medzi snímkami: Background Audio Zvuk na pozadí Start background audio paused SpustiÅ¥ zvuk na pozadí pozastavený Service Item Slide Limits Obmedzenia snímku položky služby Override display position: PrekryÅ¥ pozíciu zobrazenia: Repeat track list OpakovaÅ¥ zoznam stôp Behavior of next/previous on the last/first slide: Správanie nasledujúceho/predchádzajúceho na poslednom/prvom snímku: &Remain on Slide &ZostaÅ¥ na snímku &Wrap around &Skok na prvý/posledný snímok &Move to next/previous service item &Presuň na nasledujúcu/predchádzajúcu položku v službe OpenLP.LanguageManager Language Jazyk Please restart OpenLP to use your new language setting. Zmeny nastavenia jazyka sa prejavia po reÅ¡tartovaní aplikácie OpenLP. OpenLP.MainDisplay OpenLP Display Zobrazenie OpenLP OpenLP.MainWindow &File &Súbor &Import &Import &Export &Export &View &ZobraziÅ¥ M&ode &Réžim &Tools &Nástroje &Settings Nas&tavenia &Language &Jazyk &Help &Pomocník Service Manager Správca služby Theme Manager Správca motívov Open an existing service. OtvoriÅ¥ existujúcu službu. Save the current service to disk. UložiÅ¥ súÄasnú službu na disk. Save Service As UložiÅ¥ službu ako Save the current service under a new name. UložiÅ¥ súÄasnú službu s novým názvom E&xit &UkonÄiÅ¥ Quit OpenLP UkonÄiÅ¥ OpenLP &Theme &Motív &Configure OpenLP... &NastaviÅ¥ OpenLP &Media Manager &Správca médií Toggle Media Manager Prepnúť správcu médií Toggle the visibility of the media manager. Prepnúť viditeľnosÅ¥ správcu médií. &Theme Manager &Správca motívov Toggle Theme Manager Prepnúť správcu motívu Toggle the visibility of the theme manager. Prepnúť viditeľnosÅ¥ správcu motívu. &Service Manager &Správca služby Toggle Service Manager Prepnúť správcu služby Toggle the visibility of the service manager. Prepnúť viditeľnosÅ¥ správcu služby. &Preview Panel &Panel náhľadu Toggle Preview Panel Prepnúť panel náhľadu Toggle the visibility of the preview panel. Prepnúť viditeľnosÅ¥ panelu náhľadu. &Live Panel &Panel Naživo Toggle Live Panel Prepnúť panel Naživo Toggle the visibility of the live panel. Prepnúť viditeľnosÅ¥ panelu Naživo. List the Plugins VypísaÅ¥ moduly &User Guide &Používateľská príruÄka &About &O aplikácii More information about OpenLP Viac informácií o aplikácii OpenLP &Online Help &Online pomocník &Web Site &Webová stránka Use the system language, if available. PoužiÅ¥ jazyk systému, ak je dostupný. Set the interface language to %s Jazyk rozhrania nastavený na %s Add &Tool... PridaÅ¥ &nástroj... Add an application to the list of tools. PridaÅ¥ aplikáciu do zoznamu nástrojov. &Default &Predvolený Set the view mode back to the default. NastaviÅ¥ režim zobrazenia späť na predvolený. &Setup &Náhľad Set the view mode to Setup. &NastaviÅ¥ režim zobrazenia na Nastavenie &Live &Naživo Set the view mode to Live. NastaviÅ¥ režim zobrazenia na Naživo. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Na stiahnutie je dostupná verzia %s aplikácie OpenLP (v súÄasnej dobe používate verziu %s). NajnovÅ¡iu verziu si môžte stiahnuÅ¥ z http://openlp.org/. OpenLP Version Updated Verzia OpenLP bola aktualizovaná OpenLP Main Display Blanked Hlavné zobrazenie OpenLP je prázdne The Main Display has been blanked out Hlavné zobrazenie je vymazané. Default Theme: %s Predvolený motív: %s English Please add the name of your language here SlovenÄina Configure &Shortcuts... Klávesové &skratky... Open &Data Folder... OtvoriÅ¥ &dátový prieÄinok... Open the folder where songs, bibles and other data resides. OtvoriÅ¥ prieÄinok, kde sa nachádzajú piesne, biblie a ostatné dáta. &Autodetect &Automaticky detekovaÅ¥ Update Theme Images AktualizovaÅ¥ obrázky motívov Update the preview images for all themes. AktualizovaÅ¥ náhľady obrázkov vÅ¡etkých motívov Print the current service. TlaÄiÅ¥ aktuálnu službu. L&ock Panels &Zamknúť panely Prevent the panels being moved. ZabrániÅ¥ presunu panelov. Re-run First Time Wizard Znovu spustiÅ¥ Sprievodcu prvým spustením. Re-run the First Time Wizard, importing songs, Bibles and themes. Znovu spustiÅ¥ Sprievodcu prvým spustením, importovaÅ¥ piesne, biblie a motívy. Re-run First Time Wizard? SpustiÅ¥ znovu Sprievodcu prvým spustením? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Ste si istý, že chcete znova spustiÅ¥ Sprievodcu prvým spustením? Znovu spustením tohto sprievodcu môže dojsÅ¥ k zmenám aktuálneho nastavenia aplikácie OpenLP a pravdepodobne budú pridané piesne k existujúcemu zoznamu a zmenený predvolený motív. Clear List Clear List of recent files VyprádzniÅ¥ zoznam Clear the list of recent files. VyprázdniÅ¥ zoznam nedávnych súborov. Configure &Formatting Tags... NastaviÅ¥ &formátovacie znaÄky... Export OpenLP settings to a specified *.config file Export OpenLP nastavení do urÄitého *.config súboru Settings Nastavenia Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP nastavenia z urÄitého *.config súboru predtým exportovaného na tomto alebo inom stroji. Import settings? ImportovaÅ¥ nastavenia? Open File OtvoriÅ¥ súbor OpenLP Export Settings Files (*.conf) Súbory exportovaného nastavenia OpenLP (*.conf) Import settings Import nastavení OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Aplikácia OpenLP sa teraz ukonÄí. Importované nastavenia sa použijú pri ÄalÅ¡om spustení. Export Settings File Súbor exportovaného nastavenia. OpenLP Export Settings File (*.conf) Súbor exportovaného nastavenia OpenLP (*.conf) New Data Directory Error Chyba nového dátového prieÄinka Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopírovanie OpenLP dát do nového umiestnenia dátového prieÄinka - %s - PoÄkajte prosím na dokokonÄenie kopírovania. OpenLP Data directory copy failed %s Kopírovanie dátového prieÄinku OpenLP zlyhalo %s General VÅ¡eobecné Library Knižnica Jump to the search box of the current active plugin. SkoÄiÅ¥ na vyhľadávacie pole aktuálneho aktívneho pluginu. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. ChceÅ¡ importovaÅ¥ tieto nastavenia? Tieto importované nastavenia trvalo zmenia súÄasnú konfiguráciu OpenLP. Import nesprávných nastavení môže viesÅ¥ k neoÄakávanému správaniu alebo padaniu aplikácie OpenLP. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Vybraný súbor nie je platný súbor s OpenLP nastaveniami.. Proces bude ukonÄený a žiadne zmeny sa neuložia. Projector Manager Správca &projektora Toggle Projector Manager Prepnúť správcu projektora Toggle the visibility of the Projector Manager Prepnúť viditeľnosÅ¥ správcu projektora Export setting error Chyba exportu nastavenia The key "%s" does not have a default value so it will be skipped in this export. KÄ¾ÃºÄ "%s" nemá východziu hodnotu a preto bude pri tomto exporte preskoÄený. An error occurred while exporting the settings: %s Vyskytla sa chyba pri exporte nastavení: %s &Recent Services Ne&dávne služby &New Service &Nová služba &Open Service &OtvoriÅ¥ službu &Save Service &UložiÅ¥ službu Save Service &As... Uložit službu &ako &Manage Plugins SpravovaÅ¥ &moduly Exit OpenLP UkonÄiÅ¥ OpenLP Are you sure you want to exit OpenLP? Chcete naozaj ukonÄiÅ¥ aplikáciu OpenLP? &Exit OpenLP U&konÄit OpenLP OpenLP.Manager Database Error Chyba databázy The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Databáza na naÄítanie bola vytvorená v novÅ¡ej verzii aplikácie OpenLP. Verzia databázy je %d, zatiaľ Äo OpenLP oÄakáva verziu %d. Databáza nebude naÄítaná. Databáza: %s OpenLP cannot load your database. Database: %s Aplikácia OpenLP nemôže naÄítaÅ¥ databázu. Databáza: %s OpenLP.MediaManagerItem No Items Selected Nevybrané žiadne položky &Add to selected Service Item &PridaÅ¥ k vybranej položke služby You must select one or more items to preview. K náhľadu je potrebné vybraÅ¥ jednu alebo viac položiek. You must select one or more items to send live. Pre zobrazenie naživo je potrebné vybraÅ¥ jednu alebo viac položiek. You must select one or more items. Je potrebné vybraÅ¥ jednu alebo viac položiek. You must select an existing service item to add to. K pridaniu je potrebné vybraÅ¥ existujúcu položku služby. Invalid Service Item Neplatná položka služby You must select a %s service item. Je potrebné vybraÅ¥ %s položku služby. You must select one or more items to add. Pre pridanie je potrebné vybraÅ¥ jednu alebo viac položiek. No Search Results Žiadne výsledky vyhľadávania. Invalid File Type Neplatný typ súboru. Invalid File %s. Suffix not supported Nepltný súbor %s. Prípona nie je podporovaná &Clone &KlonovaÅ¥ Duplicate files were found on import and were ignored. Pri importe boli nájdené duplicitné súbory, ktoré boli ignorované. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Chýbajúca znaÄka <lyrics>. <verse> tag is missing. Chýbajúca znaÄka <verse>. OpenLP.PJLink1 Unknown status Neznámy stav No message Žiadna správa Error while sending data to projector Chyba pri posielaní dát do projetora Undefined command: Nedefinovaný príkaz: OpenLP.PlayerTab Players PrehrávaÄe Available Media Players Dostupné prehrávaÄe médií Player Search Order Poradie vyhľadávania prehrávaÄov Visible background for videos with aspect ratio different to screen. Viditeľné pozadie pre videa s iným pomerom strán než má obrazovka. %s (unavailable) %s (nedostupný) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" Poznámka: Aby sa dalo použiÅ¥ VLC je potrebné nainÅ¡talovaÅ¥ verziu %s OpenLP.PluginForm Plugin Details Podrobnosti k modulu. Status: Stav: Active Aktívny Inactive Neaktívny %s (Inactive) %s (Neaktívny) %s (Active) %s (Aktívny) %s (Disabled) %s (Vypnutý) Manage Plugins SpravovaÅ¥ moduly OpenLP.PrintServiceDialog Fit Page PrispôsobiÅ¥ stránke Fit Width PrispôsobiÅ¥ šírke OpenLP.PrintServiceForm Options Možnosti Copy KopírovaÅ¥ Copy as HTML KopírovaÅ¥ ako HTML Zoom In ZväÄÅ¡iÅ¥ Zoom Out ZmenÅ¡iÅ¥ Zoom Original Pôvodná veľkosÅ¥ Other Options Ostatné možnosti Include slide text if available Zahrnúť text snímku, ak je k dispozícii Include service item notes Zahrnúť poznámky položky služby Include play length of media items Zahrnúť dĺžku prehrávania mediálnych položiek Add page break before each text item PridaÅ¥ zalomenie stránky pred každou položkou textu Service Sheet List služby Print TlaÄ Title: Nadpis: Custom Footer Text: Vlastný text zápätia: OpenLP.ProjectorConstants OK OK General projector error VÅ¡eobecná chyba projektora Not connected error Chyba pripojenia Lamp error Chyba lampy Fan error Chyba ventilátora High temperature detected Zistená vysoká teplota Cover open detected Zistený otvorený kryt Check filter Kontrola filtra Authentication Error Chyba prihlásenia Undefined Command Nedefinovaný príkaz Invalid Parameter Chybný parameter Projector Busy Projektor zaneprázdnený Projector/Display Error Chyba projektora/zobrazenia Invalid packet received Prijatý neplatný paket Warning condition detected Zistený varovný stav Error condition detected Zistený chybový stav PJLink class not supported PJLink trieda nepodporovaná Invalid prefix character Neplatný znak prípony The connection was refused by the peer (or timed out) Spojenie odmietnuté druhou stranou (alebo vyprÅ¡al Äas) The remote host closed the connection Vzdialené zariadenie ukonÄilo spojenie The host address was not found Adresa zariadenia nebola nájdená The socket operation failed because the application lacked the required privileges Operácia soketu zlyhala pretože aplikácia nema potrebné oprávnenia The local system ran out of resources (e.g., too many sockets) Váš operaÄný systém nemá dostatok prostriedkov (napr. príliÅ¡ veľa soketov) The socket operation timed out Operácia soketu vyprÅ¡ala The datagram was larger than the operating system's limit Datagram bol väÄší ako limity operaÄného systému An error occurred with the network (Possibly someone pulled the plug?) Vznikla chyba v sieti (Možno niekto vytiahol zástrÄku) The address specified with socket.bind() is already in use and was set to be exclusive Å pecifikovaná adresa pre socket.bind() sa už používa a bola nastavena na výhradný režim The address specified to socket.bind() does not belong to the host Å pecifikovaná adresa pre socket.bind() nepatrí zariadeniu The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Požadovaná operácia soketu nie je podporovaná vaÅ¡im operaÄným systémom (napr. chýbajúca podpora IPv6) The socket is using a proxy, and the proxy requires authentication Soket používa proxy server a ten požaduje overenie The SSL/TLS handshake failed Zlyhala kominikácia SSL/TLS The last operation attempted has not finished yet (still in progress in the background) Posledný pokus operácie stále prebieha (stále prebieha na pozadí) Could not contact the proxy server because the connection to that server was denied Spojenie s proxy serverom zlyhalo pretože spojenie k tomuto serveru bolo odmietnuté The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Spojenie s proxy serverom bolo neÄakane uzavreté (predtým než bolo vytvorené spojenie s druhou stranou) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Spojenie s proxy serverom vyprÅ¡alo alebo proxy server prestal odpovedaÅ¥ poÄas overovacej fázy The proxy address set with setProxy() was not found Adresa proxy servera nastavená v setProxy() nebola nájdená An unidentified error occurred Vznikla neidentifikovateľná chyba Not connected Nepripojený Connecting Pripájam Connected Pripojený Getting status ZisÅ¥ujem stav Off Vypnuté Initialize in progress Prebieha inicializácia Power in standby Úsporný režim Warmup in progress Prebieha zahrievanie Power is on Napájanie je zapnuté Cooldown in progress Prebieha ochladzovanie Projector Information available Informácie o projektore k dispozícii Sending data Posielam data Received data Prijímam data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Vytvorenie spojenia s proxy serverom zlyhalo pretože sa nepodarilo porozumiet odpovede z proxy servera OpenLP.ProjectorEdit Name Not Set Názov nenastavený You must enter a name for this entry.<br />Please enter a new name for this entry. Musíte zadaÅ¥ názov pre položku.<br />Pros9m zadajte nový názov pre položku. Duplicate Name Duplicitný názov OpenLP.ProjectorEditForm Add New Projector PridaÅ¥ nový projektor Edit Projector UpraviÅ¥ projektor IP Address IP adresa Port Number Číslo portu PIN PIN Name Názov Location Umiestnenie Notes Poznámky Database Error Chyba databázy There was an error saving projector information. See the log for the error Vznikla chyba pri ukladaní informacií o projektore. Viac o chybe v logovacom súbore. OpenLP.ProjectorManager Add Projector PridaÅ¥ projektor Add a new projector PridaÅ¥ nový projektor Edit Projector UpraviÅ¥ projektor Edit selected projector UpraviÅ¥ vybraný projektor Delete Projector ZmazaÅ¥ projektor Delete selected projector ZmazaÅ¥ vybraný projektor Select Input Source VybraÅ¥ zdroj vstupu Choose input source on selected projector VybraÅ¥ zdroj vstupu u vybraného projektoru View Projector ZobraziÅ¥ projektor View selected projector information ZobraziÅ¥ informácie k vybranému projektoru Connect to selected projector PripojiÅ¥ sa k vybranému projektoru Connect to selected projectors PripojiÅ¥ sa k vybraným projektorom Disconnect from selected projectors OdpojiÅ¥ sa od vybraných projektorov Disconnect from selected projector OdpojiÅ¥ sa od vybraného projektoru Power on selected projector Zapnúť vybraný projektor Standby selected projector Úsporný režim pre vybraný projektor Put selected projector in standby Prepnúť vybraný projektor do úsporného režimu Blank selected projector screen Prázdna obrazovka na vybranom projektore Show selected projector screen ZobraziÅ¥ obrazovku na vybranom projektore &View Projector Information &ZobraziÅ¥ informácie o projektore &Edit Projector &UpraviÅ¥ projektor &Connect Projector &PripojiÅ¥ projektor D&isconnect Projector &OdpojiÅ¥ projektor Power &On Projector Z&apnúť projektor Power O&ff Projector &Vypnúť projektor Select &Input VybraÅ¥ vst&up Edit Input Source UpraviÅ¥ zdroj vstupu &Blank Projector Screen &Prázdna obrazovka na projektore &Show Projector Screen ZobraziÅ¥ &obrazovku na projektore &Delete Projector &ZmazaÅ¥ projektor Name Názov IP IP Port Port Notes Poznámky Projector information not available at this time. Informácie o projektore nie sú teraz dostupné. Projector Name Názov projektora Manufacturer Výrobca Model Model Other info Ostatné informácie Power status Stav napájania Shutter is Clona je Closed Zavretá Current source input is Aktuálnym zdrojom vstupu je Lamp Lampa On Zapnuté Off Vypnuté Hours Hodín No current errors or warnings Momentálne nie sú žiadne chyby alebo varovania Current errors/warnings Aktuálne chyby/varovania Projector Information Informácie o projektore No message Žiadna správa Not Implemented Yet EÅ¡te nie je implementované Delete projector (%s) %s? ZmazaÅ¥ projektor (%s) %s? Are you sure you want to delete this projector? Ste si istý, že chcete zmazaÅ¥ tento projektor? OpenLP.ProjectorPJLink Fan Ventilátor Lamp Lampa Temperature Teplota Cover Kryt Filter Filter Other ÄŽalÅ¡ie OpenLP.ProjectorTab Projector Projektor Communication Options Možnosti komunikácie Connect to projectors on startup PripojiÅ¥ sa k projektorom pri Å¡tarte Socket timeout (seconds) ÄŒasový limit soketu (sekundy) Poll time (seconds) ÄŒas vyhľadávania (sekundy) Tabbed dialog box Dialogové okno s panelmi Single dialog box Samostané dialogové okno OpenLP.ProjectorWizard Duplicate IP Address Duplicitná IP adresa Invalid IP Address Neplatná IP adresa Invalid Port Number Neplatné Äíslo portu OpenLP.ScreenList Screen Obrazovka primary Primárny OpenLP.ServiceItem <strong>Start</strong>: %s <strong>ZaÄiatok</strong>:%s <strong>Length</strong>: %s <strong>Dĺžka</strong>:%s [slide %d] [snímok %d] OpenLP.ServiceItemEditForm Reorder Service Item ZmeniÅ¥ poradie položky služby OpenLP.ServiceManager Move to &top Presuň na &zaÄiatok Move item to the top of the service. Presuň položku do hornej Äasti služby. Move &up Pohyb &nahor Move item up one position in the service. Presuň položku nahor o jednu pozíciu v službe. Move &down Pohyb &nadol Move item down one position in the service. Presuň položku nadol o jednu pozíciu v službe. Move to &bottom Presun &dole Move item to the end of the service. Presuň položku v službe na koniec. &Delete From Service &VymazaÅ¥ zo služby Delete the selected item from the service. VymazaÅ¥ vybranú položku zo služby. &Add New Item &PridaÅ¥ novú položku &Add to Selected Item &PridaÅ¥ k vybranej položke &Edit Item &UpraviÅ¥ položku &Reorder Item &ZmeniÅ¥ poradie položky &Notes &Poznámky &Change Item Theme &ZmeniÅ¥ motív položky File is not a valid service. Súbor nemá formát služby. Missing Display Handler Chýba manažér zobrazenia Your item cannot be displayed as there is no handler to display it Položku nie je možné zobraziÅ¥, pretože chýba manažér pre jej zobrazenie Your item cannot be displayed as the plugin required to display it is missing or inactive Položku nie je možné zobraziÅ¥, pretože modul potrebný k zobrazeniu chýba alebo je neaktívny &Expand all &RozbaliÅ¥ vÅ¡etko Expand all the service items. RozbaliÅ¥ vÅ¡etky položky služby. &Collapse all &ZabaliÅ¥ vÅ¡etko Collapse all the service items. ZabaliÅ¥ vÅ¡etky položky služby. Open File OtvoriÅ¥ súbor Moves the selection down the window. Presuň výberu v rámci okna nadol. Move up Pohyb nahor Moves the selection up the window. Presuň výberu v rámci okna nahor. Go Live ZobraziÅ¥ Naživo Send the selected item to Live. OdoslaÅ¥ vybranú položku Naživo. &Start Time &SpustiÅ¥ Äas Show &Preview ZobraziÅ¥ &náhľad Modified Service Zmenená služba The current service has been modified. Would you like to save this service? Aktuálna služba bola zmenená. Prajete si službu uložiÅ¥? Custom Service Notes: Používateľské poznámky služby: Notes: Poznámky: Playing time: ÄŒas prehrávania: Untitled Service Nepomenovaná služba File could not be opened because it is corrupt. Súbor sa nepodarilo otvoriÅ¥, pretože je poÅ¡kodený. Empty File Prádzny súbor This service file does not contain any data. Tento súbor služby neobsahuje žiadne dáta. Corrupt File PoÅ¡kodený súbor Load an existing service. NaÄítaÅ¥ existujúcu službu. Save this service. UložiÅ¥ túto službu. Select a theme for the service. VybraÅ¥ motív pre službu. Slide theme Motív snímku Notes Poznámky Edit UpraviÅ¥ Service copy only KopírovaÅ¥ len službu Error Saving File Chyba pri ukladaní súboru. There was an error saving your file. Chyba pri ukladaní súboru. Service File(s) Missing Chýbajúci súbor(y) služby &Rename... &PremenovaÅ¥... Create New &Custom Slide VytvoriÅ¥ nový &vlastný snímok &Auto play slides &Automaticky prehraÅ¥ snímok Auto play slides &Loop Automaticky prehraÅ¥ snímok &Opakovane Auto play slides &Once Automaticky prehraÅ¥ snímok opakovane &Raz &Delay between slides Oneskorenie &Medzi snímkami OpenLP Service Files (*.osz *.oszl) OpenLP súbory služby (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP súbory služby (*.osz);; OpenLP súbory služby - malé (*.oszl);; OpenLP Service Files (*.osz);; OpenLP súbory služby (*.osz);; File is not a valid service. The content encoding is not UTF-8. Súbor nie je platný súbor služby. Obsah súboru nie je v kódovaní UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Tento súbor služby je v starom formáte. Prosím uložte to v OpenLP 2.0.2 alebo vyššej verzii. This file is either corrupt or it is not an OpenLP 2 service file. Tento súbor je buÄ poÅ¡kodený alebo nie je súbor služby OpenLP 2. &Auto Start - inactive &Auto Å¡tart - neaktívny &Auto Start - active &Auto Å¡tart - aktívny Input delay Oneskorenie vstupu Delay between slides in seconds. Oneskorenie medzi snímkami v sekundách. Rename item title PremenovaÅ¥ nadpis položky Title: Nadpis: An error occurred while writing the service file: %s Vyskytla sa chyba pri zápise súboru služby: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Nasledujúci súbor(y) v službe chýba: %s Tieto súbory budú vymazané ak budeÅ¥e pokraÄovaÅ¥ v ukladaní. OpenLP.ServiceNoteForm Service Item Notes Poznámky položky služby OpenLP.SettingsForm Configure OpenLP NastaviÅ¥ OpenLP OpenLP.ShortcutListDialog Action ÄŒinnosÅ¥ Shortcut Skratka Duplicate Shortcut Duplicitná skratka The shortcut "%s" is already assigned to another action, please use a different shortcut. Skratka "%s" je už priradená inej Äinnosti, prosím použite inú skratku. Alternate Alternatíva Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Zadanie novej hlavnej alebo alternatívnej skratky sa spustí vybraním Äinnosti a kliknutím na jedno z tlaÄidiel nižšie. Default Predvolená Custom Používateľská Capture shortcut. ZachytiÅ¥ skratku. Restore the default shortcut of this action. ObnoviÅ¥ predvolenú skratku Äinnosti. Restore Default Shortcuts ObnoviÅ¥ predvolenú skratku Do you want to restore all shortcuts to their defaults? Chcete obnoviÅ¥ vÅ¡etky skratky na ich predvolené hodnoty? Configure Shortcuts NastaviÅ¥ skratky OpenLP.SlideController Hide SkryÅ¥ Go To PrejsÅ¥ na Blank Screen Prázdna obrazovka Blank to Theme Prázdny motív Show Desktop ZobraziÅ¥ plochu Previous Service Predchádzajúca služba Next Service Nasledujúca služba Escape Item ZruÅ¡iÅ¥ položku Move to previous. Predchádzajúci Move to next. Nasledujúci Play Slides PrehraÅ¥ snímky Delay between slides in seconds. Oneskorenie medzi snímkami v sekundách. Move to live. Naživo Add to Service. PridaÅ¥ k službe. Edit and reload song preview. UpraviÅ¥ a znovu naÄítaÅ¥ náhľad piesne. Start playing media. SpustiÅ¥ prehrávanie média. Pause audio. PozastaviÅ¥ zvuk. Pause playing media. PozastaviÅ¥ prehrávanie média. Stop playing media. ZastaviÅ¥ prehrávanie média. Video position. Pozícia vo videu. Audio Volume. HlasitosÅ¥ zvuku. Go to "Verse" PrejsÅ¥ na "Sloha" Go to "Chorus" PrejsÅ¥ na "Refrén" Go to "Bridge" PrejsÅ¥ na "Prechod" Go to "Pre-Chorus" PrejsÅ¥ na "Predrefrén" Go to "Intro" PrejsÅ¥ na "Úvod" Go to "Ending" PrejsÅ¥ na "ZakonÄenie" Go to "Other" PrejsÅ¥ na "Ostatné" Previous Slide Predchádzajúci snímok Next Slide Nasledujúci snímok Pause Audio PozastaviÅ¥ zvuk Background Audio Zvuk na pozadí Go to next audio track. PrejsÅ¥ na ÄalÅ¡iu zvukovú stopu. Tracks Stopy OpenLP.SourceSelectForm Select Projector Source VybraÅ¥ zdroj projektora Edit Projector Source Text UpraviÅ¥ text zdroja projektora Ignoring current changes and return to OpenLP IgnorovaÅ¥ aktuálne zmeny a vrátiÅ¥ sa do aplikácie OpenLP Delete all user-defined text and revert to PJLink default text ZmazaÅ¥ celý užívateľom definovaný text a vrátiÅ¥ predvolený text PJLink Discard changes and reset to previous user-defined text ZahodiÅ¥ zmeny a obnoviÅ¥ predchádzajúci užívateľom definovaný text Save changes and return to OpenLP UložiÅ¥ zmeny a vrátiÅ¥ sa do aplikácie OpenLP Delete entries for this projector ZmazaÅ¥ údaje pre tento projektor Are you sure you want to delete ALL user-defined source input text for this projector? Ste si istý, že chcete zmazaÅ¥ VÅ ETKY používateľom definované texty pre tento projektor? OpenLP.SpellTextEdit Spelling Suggestions Návrhy pravopisu Formatting Tags Formátovacie znaÄky Language: Jazyk: OpenLP.StartTimeForm Theme Layout Rozmiestnenie motívu The blue box shows the main area. Modré políÄko ukazuje hlavnú oblasÅ¥. The red box shows the footer. ÄŒervené políÄko ukazuje zápätie OpenLP.StartTime_form Item Start and Finish Time ÄŒas zaÄiatku a konca položky Hours: Hodiny: Minutes: Minúty: Seconds: Sekundy: Start ZaÄiatok Finish Koniec Length Dĺžka Time Validation Error Chyba pri overení Äasu Finish time is set after the end of the media item ÄŒas konca je nastavený po Äase konca mediálnej položky Start time is after the finish time of the media item ÄŒas zaÄiatku je nastavený po Äase konca mediálnej položky OpenLP.ThemeForm (approximately %d lines per slide) (približne %d riadok na snímok OpenLP.ThemeManager Create a new theme. Nový motív Edit Theme UpraviÅ¥ motív Edit a theme. UpraviÅ¥ motív Delete Theme ZmazaÅ¥ motív Delete a theme. OdstrániÅ¥ motív Import Theme Import motívu Import a theme. ImportovaÅ¥ motív Export Theme Export motívu Export a theme. ExportovaÅ¥ motív &Edit Theme &UpraviÅ¥ motív &Delete Theme &ZmazaÅ¥ motív Set As &Global Default NastaviÅ¥ ako &Globálny predvolený %s (default) %s (predvolený) You must select a theme to edit. Pre úpravy je potrebné vybraÅ¥ motív. You are unable to delete the default theme. Nie je možné zmazaÅ¥ predvolený motív You have not selected a theme. Nie je vybraný žiadny motív Save Theme - (%s) UložiÅ¥ motív - (%s) Theme Exported Motív exportovaný Your theme has been successfully exported. Motív bol úspeÅ¡ne exportovaný. Theme Export Failed Export motívu zlyhal Select Theme Import File VybraÅ¥ súbor k importu motívu File is not a valid theme. Súbor nie je platný motív. &Copy Theme &KopírovaÅ¥ motív &Rename Theme &PremenovaÅ¥ motív &Export Theme &Export motívu You must select a theme to rename. K premenovaniu je potrebné vybraÅ¥ motív. Rename Confirmation Potvrdenie premenovania Rename %s theme? PremenovaÅ¥ motív %s? You must select a theme to delete. Pre zmazanie je potrebné vybraÅ¥ motív. Delete Confirmation Potvrdenie zmazania. Delete %s theme? ZmazaÅ¥ motív %s? Validation Error Chyba overovania A theme with this name already exists. Motív s týmto názvom už existuje. Copy of %s Copy of <theme name> Kópia %s Theme Already Exists Motív už existuje Theme %s already exists. Do you want to replace it? Motív %s už existuje. Chcete ho nahradiÅ¥? The theme export failed because this error occurred: %s Export témy zlyhal pretože nastala táto chyba: %s OpenLP Themes (*.otz) OpenLP motívy (*.otz) %s time(s) by %s %s krát použité v %s Unable to delete theme Nie je možné zmazaÅ¥ motív Theme is currently used %s Motív sa práve používa %s OpenLP.ThemeWizard Theme Wizard Sprievodca motívom Welcome to the Theme Wizard Vitajte v sprievodcovi motívom Set Up Background Nastavenie pozadia Set up your theme's background according to the parameters below. Podľa parametrov nižšie nastavte pozadie motívu. Background type: Typ pozadia: Gradient Stúpanie Gradient: Stúpanie: Horizontal Vodorovný Vertical Zvislý Circular Kruhový Top Left - Bottom Right Vľavo hore - vpravo dole Bottom Left - Top Right Vľavo dole - vpravo hore Main Area Font Details Podrobnosti písma hlavnej oblasti Define the font and display characteristics for the Display text DefinovaÅ¥ písmo a charakteristiku zobrazenia pre zobrazený text Font: Písmo: Size: VeľkosÅ¥: Line Spacing: Riadkovanie: &Outline: &Okraj: &Shadow: &Tieň: Bold TuÄné Italic Kurzíva Footer Area Font Details Podrobnosti písma oblasti zápätia Define the font and display characteristics for the Footer text DefinovaÅ¥ písmo a charakteristiku zobrazenia pre text zápätia Text Formatting Details Podrobnosti formátovania textu Allows additional display formatting information to be defined Povoľuje definovaÅ¥ ÄalÅ¡ie formátovacie infromácie zobrazenia Horizontal Align: Vodorovné zarovnanie Left Vľavo Right Vpravo Center Na stred Output Area Locations Umiestnenie výstupných oblastí &Main Area &Hlavná oblasÅ¥ &Use default location &PoužiÅ¥ predvolené umiestnenie X position: Pozícia X: px px Y position: Pozícia Y: Width: Šírka: Height: Výška: Use default location PoužiÅ¥ predvolené umiestnenie Theme name: Názov motívu: Edit Theme - %s UpraviÅ¥ motív - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Tento sprievodca vám pomôže vytvoriÅ¥ a upravovaÅ¥ svoje motívy. Pre spustenie procesu nastavení vášho pozadia kliknite nižšie na tlaÄidlo Äalší. Transitions: Prechody: &Footer Area &OblasÅ¥ zápätia Starting color: Farba zaÄiatku: Ending color: Farba konca: Background color: Farba pozadia: Justify Do bloku Layout Preview Náhľad rozmiestnenia Transparent Priehľadný Preview and Save Náhľad a uložiÅ¥ Preview the theme and save it. Náhľad motívu a uložiÅ¥ ho. Background Image Empty Prázdny obrázok pozadia Select Image VybraÅ¥ obrázok Theme Name Missing Chýba názov motívu There is no name for this theme. Please enter one. Nie je vyplnený názov motívu. Prosím zadajte ho. Theme Name Invalid Neplatný názov motívu Invalid theme name. Please enter one. Neplatný názov motívu. Prosím zadajte nový. Solid color Jednofarebné color: farba: Allows you to change and move the Main and Footer areas. Umožňuje zmeniÅ¥ a presunúť hlavnú oblasÅ¥ a oblasÅ¥ zápätia. You have not selected a background image. Please select one before continuing. Nebol vybraný obrázok pozadia. Pred pokraÄovaním prosím jeden vyberte. OpenLP.ThemesTab Global Theme Globálny motív Theme Level Úroveň motívu S&ong Level Úroveň piesne Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Použitie motívu z každej piesne z databázy. Ak pieseň nemá priradený motív, použije sa globálny motív. &Service Level &Úroveň služby Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Použítím motívu zo služby sa prekryje motív jednotlivých piesní. Ak pieseň nemá priradený motív, použije sa globálny motív. &Global Level &Globálna úroveň Use the global theme, overriding any themes associated with either the service or the songs. Použítím globálneho motívu sa prekryjú motívy, ktoré sú priradené službám alebo piesňam. Themes Motívy Universal Settings VÅ¡eobecné nastavenia &Wrap footer text &ZalomiÅ¥ text zápätia OpenLP.Ui Delete the selected item. ZmazaÅ¥ vybranú položku. Move selection up one position. Presun výberu o jednu pozíciu vyššie Move selection down one position. Presun výberu o jednu pozíciu nižšie. &Vertical Align: &Zvislé zarovnanie: Finished import. Import ukonÄený. Format: Formát: Importing Importovanie Importing "%s"... Importovanie "%s"... Select Import Source VybraÅ¥ zdroj importu Select the import format and the location to import from. Vyberte formát importu a umiestnenia, z ktorého sa má importovaÅ¥. Open %s File OtvoriÅ¥ súbor %s %p% %p% Ready. Pripravený Starting import... Spustenie importu... You need to specify at least one %s file to import from. A file type e.g. OpenSong Je potrebné Å¡pecifikovaÅ¥ aspon jeden %s súbor, z ktorého sa bude importovaÅ¥. Welcome to the Bible Import Wizard Vitajte v sprievodcovi importu Biblie Welcome to the Song Export Wizard Vitajte v sprievodcovi exportu piesní. Welcome to the Song Import Wizard Vitajte v sprievodcovi importu piesní. Author Singular Autor Authors Plural Autori © Copyright symbol. © Song Maintenance Údržba piesne Topic Singular Téma Topics Plural Témy Title and/or verses not found Názov a/alebo slova nenájdené XML syntax error Chyba v syntaxi XML Welcome to the Bible Upgrade Wizard Vitajte v sprievodcovi aktualizácií Biblie. Open %s Folder Otvorte %s prieÄinok You need to specify one %s file to import from. A file type e.g. OpenSong UrÄte jeden %s súbor z kade sa bude importovaÅ¥. You need to specify one %s folder to import from. A song format e.g. PowerSong UrÄte jeden %s prieÄinok z kadiaľ sa bude importovaÅ¥. Importing Songs Import piesní Welcome to the Duplicate Song Removal Wizard Vitajte v sprievodcovi odobratia duplicitných piesní Written by Napísal Author Unknown Autor neznámy About O aplikácii &Add &PridaÅ¥ Add group PridaÅ¥ skupinu Advanced PokroÄilé All Files VÅ¡etky súbory Automatic Automaticky Background Color Farba pozadia Bottom Dole Browse... PrehliadaÅ¥... Cancel ZruÅ¡iÅ¥ CCLI number: CCLI Äíslo: Create a new service. VytvoriÅ¥ novú službu Confirm Delete PotvrdiÅ¥ zmazanie Continuous Spojitý Default Predvolená Default Color: Predvolená farba: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Služba %Y-%m-%d %H-%M &Delete &ZmazaÅ¥ Display style: Å týl zobrazenia Duplicate Error Duplicitná chyba &Edit &UpraviÅ¥ Empty Field Prázdne pole Error Chyba Export Export File Súbor File Not Found Súbor nebol nájdený File %s not found. Please try selecting it individually. Súbor %s nebol nájdený. Skúste to prosím výberom individuálne. pt Abbreviated font pointsize unit pt Help Pomocník h The abbreviated unit for hours h Invalid Folder Selected Singular Vybrali ste nesprávny prieÄinok Invalid File Selected Singular Vybrali ste nesprávny súbor Invalid Files Selected Plural Vybrali ste nesprávne súbory Image Obrázok Import Import Layout style: Å týl rozmiestnenia Live Naživo Live Background Error Chyba v pozadí naživo Live Toolbar Nástrojová liÅ¡ta naživo Load NaÄítaÅ¥ Manufacturer Singular Výrobca Manufacturers Plural Výrobci Model Singular Model Models Plural Modely m The abbreviated unit for minutes min Middle Uprostred New Nový New Service Nová služba New Theme Nový motív Next Track Nasledujúca stopa No Folder Selected Singular Nevybrali ste žiadny prieÄinok No File Selected Singular Nevybraný žiadny súbor No Files Selected Plural Nevybrané žiadne súbory No Item Selected Singular Nevybraná žiadna položka No Items Selected Plural Nevybrané žiadne položky OpenLP is already running. Do you wish to continue? Aplikácia OpenLP je už spustená. Prajete si pokraÄovaÅ¥? Open service. OtvoriÅ¥ službu Play Slides in Loop PrehraÅ¥ snímky v sluÄke Play Slides to End PrehraÅ¥ snímky na konci Preview Náhľad Print Service TlaÄ služby Projector Singular Projektor Projectors Plural Projektory Replace Background NahradiÅ¥ pozadie Replace live background. NahradiÅ¥ pozadie naživo. Reset Background ObnoviÅ¥ pozadie Reset live background. ObnoviÅ¥ pozadie naživo. s The abbreviated unit for seconds s Save && Preview UložiÅ¥ &náhľad Search HľadaÅ¥ Search Themes... Search bar place holder text VyhľadávaÅ¥ motív... You must select an item to delete. Je potrebné vybraÅ¥ nejakú položku na zmazanie. You must select an item to edit. Je potrebné vybraÅ¥ nejakú položku k úpravám. Settings Nastavenia Save Service UložiÅ¥ službu Service Služba Optional &Split Volitelné &rozdelenie Split a slide into two only if it does not fit on the screen as one slide. Rozdelenie snímok na 2 len v prípade, ak sa nezmestí na obrazovku ako jeden snímok. Start %s SpustiÅ¥ %s Stop Play Slides in Loop ZastaviÅ¥ prehrávanie snímkov v sluÄke Stop Play Slides to End ZastaviÅ¥ prehrávanie snímkov na konci Theme Singular Motív Themes Plural Motívy Tools Nástroje Top Vrchol Unsupported File Nepodporovaný súbor Verse Per Slide VerÅ¡ na snímok Verse Per Line VerÅ¡ na jeden riadok Version Verzia View ZobraziÅ¥ View Mode Réžim zobrazenia CCLI song number: CCLI Äíslo piesne: Preview Toolbar Nástrojová liÅ¡ta náhľadu OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. NahradiÅ¥ živé pozadie (live background) nie je dostupné keÄ je prehrávaÄ WebKit zakázaný. Songbook Singular Spevník Songbooks Plural Spevníky OpenLP.core.lib %s and %s Locale list separator: 2 items %s a %s %s, and %s Locale list separator: end %s, a %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Zdroj výberu dialógového rozhrania PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong> Modul prezentácie</strong><br/>Modul prezentácie poskytuje zobrazovaÅ¥ prezentácie pomocou rôznych programov. Výber dostupných prezentaÄných programov je užívateľovi prístupný v rozbaľovacom menu. Presentation name singular Prezentácia Presentations name plural Prezentácie Presentations container title Prezentácie Load a new presentation. NaÄítaÅ¥ novú prezentáciu Delete the selected presentation. ZmazaÅ¥ vybranú prezentáciu Preview the selected presentation. Náhľad vybranej prezentácie. Send the selected presentation live. OdoslaÅ¥ vybranú prezentáciu naživo. Add the selected presentation to the service. PridaÅ¥ vybranú prezentáciu k službe. PresentationPlugin.MediaItem Select Presentation(s) VybraÅ¥ prezentáciu (e) Automatic Automaticky Present using: PrezentovaÅ¥ pomocou: File Exists Súbor existuje A presentation with that filename already exists. Prezentácia s týmto názvom súboru už existuje. This type of presentation is not supported. Tento typ prezentácie nie je podporovaný. Presentations (%s) Prezentácie (%s) Missing Presentation Chýbajúca prezentácia The presentation %s is incomplete, please reload. Prezentácia %s nie je kompletná, opäť ju naÄítajte. The presentation %s no longer exists. Prezentácia %s už neexistuje. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Vznikla chyba pri integrácií Powerpointu a prezentácia bude ukonÄená. Ak chete zobraziÅ¥ prezentáciu, spustite ju znovu. PresentationPlugin.PresentationTab Available Controllers Dostupné ovládanie %s (unavailable) %s (nedostupný) Allow presentation application to be overridden PovoliÅ¥ prekrytie prezentaÄnej aplikácie. PDF options PDF možnosti Use given full path for mudraw or ghostscript binary: Použite celú cestu k mudraw alebo ghostscript: Select mudraw or ghostscript binary. Vyberte mudraw alebo ghostscript. The program is not ghostscript or mudraw which is required. Program nie je ghostscript alebo mudraw, ktorý je potrebný. PowerPoint options PowerPoint možnosti Clicking on a selected slide in the slidecontroller advances to next effect. Kliknutím na vybratý snímok v ovládaní postúpi do dalÅ¡ieho efektu. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). NechaÅ¥ PowerPoint urÄovaÅ¥ veľkosÅ¥ a pozíciu prezentaÄného okna (rieÅ¡enie problému veľkosti vo Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Vzdialený Modul</strong><br/>Vzdialený modul poskytuje možnosÅ¥ odosielaÅ¥ správy na bežiacu verziu aplikácie OpenLP na inom poÄítaÄi pomocou webového prehliadaÄa alebo vzdialeným API Remote name singular Vzdialený Remotes name plural Vzdialené Remote container title Vzdialený Server Config Change Zmena nastavenia servera Server configuration changes will require a restart to take effect. Zmena nastavenia servera vyžaduje reÅ¡tart. RemotePlugin.Mobile Service Manager Správca služby Slide Controller Ovládanie snímku Alerts Upozornenia Search HľadaÅ¥ Home Domov Refresh ObnoviÅ¥ Blank Prázdny Theme Motív Desktop Plocha Show ZobraziÅ¥ Prev Predchádzajúci Next Nasledujúci Text Text Show Alert ZobraziÅ¥ upozornenie Go Live ZobraziÅ¥ Naživo Add to Service PridaÅ¥ k službe Add &amp; Go to Service PridaÅ¥ &amp; PrejsÅ¥ k službe No Results Žiadne výsledky Options Možnosti Service Služba Slides Snímky Settings Nastavenia Remote Vzdialený Stage View Pódiové zobrazenie Live View Zobrazenie naživo RemotePlugin.RemoteTab Serve on IP address: ZdieľaÅ¥ na IP adrese: Port number: Číslo portu: Server Settings Nastavenie serveru Remote URL: Vzdialená URL: Stage view URL: Náhľad stage URL: Display stage time in 12h format ZobraziÅ¥ Äas v 12-hodinovom formáte Android App Android aplikácia Live view URL: URL Naživo: HTTPS Server HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Nemôžem nájsÅ¥ SSL certifikát. HTTPS server nebude dostupný pokiaľ nebude SSL certifikát. Prosím pozrite manuál pre viac informácií. User Authentication Autentifikácia používateľa User id: Používateľ: Password: Heslo: Show thumbnails of non-text slides in remote and stage view. ZobraziÅ¥ miniatúry netextových snímkov vo vzdialenom ovládaní a na pódiovom zobrazení Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Naskenujte QR kód alebo klinite na <a href="%s">stiahnuÅ¥</a> pre inÅ¡taláciu Android aplikácie zo služby Google Play. SongUsagePlugin &Song Usage Tracking &Sledovanie použitia piesne &Delete Tracking Data &ZmazaÅ¥ dáta sledovania Delete song usage data up to a specified date. ZmazaÅ¥ dáta použitia piesne až ku konkrétnemu dátumu. &Extract Tracking Data &RozbaliÅ¥ dáta sledovania Generate a report on song usage. VytvoriÅ¥ hlásenie z použitia piesne. Toggle Tracking Prepnúť sledovanie Toggle the tracking of song usage. Prepnúť sledovanie použitia piesne. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Modul použitia piesne</strong><br/>Tento modul sleduje používanie piesní v službách. SongUsage name singular Používanie piesne SongUsage name plural Používanie piesne SongUsage container title Používanie piesne Song Usage Používanie piesne Song usage tracking is active. Sledovanie použitia piesne je zapnuté. Song usage tracking is inactive. Sledovanie použitia piesne je vypnuté. display zobrazenie printed vytlaÄený SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data ZmazaÅ¥ dáta použitia piesne Delete Selected Song Usage Events? ZmazaÅ¥ udalosti vybraného použitia piesne? Are you sure you want to delete selected Song Usage data? Ste si istý, že chcete zmazaÅ¥ vybrané dáta o použití piesne? Deletion Successful ÚspeÅ¡ne zmazané Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vyberte dátum, ku ktorému budu zmazané dáta o použití piesne. VÅ¡etky dáta zaznamenávané pred týmto dátumom budú natrvalo zmazané. All requested data has been deleted successfully. VÅ¡etky požadované dáta boli úspeÅ¡ne zmazané. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Rozbalenie použitia piesne Select Date Range VybraÅ¥ rozsah dátumu to do Report Location Umiestnenie hlásenia Output File Location Umiestnenie výstupného súboru usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Vytvorenie hlásenia Report %s has been successfully created. Hlásenie %s bolo úspeÅ¡ne vytvorené. Output Path Not Selected Nebola vybraná žiadna výstupná cesta. You have not set a valid output location for your song usage report. Please select an existing path on your computer. Nie je nastavené platné výstupné umiestnenie pre hlásenie použitia piesne. Prosím vyberte existujúcu cestu vo vaÅ¡om poÄítaÄi. Report Creation Failed Vytvorenie hlásenia zlyhalo An error occurred while creating the report: %s Vyskytla sa chyba pri vytváraní hlásenia: %s SongsPlugin &Song &Pieseň Import songs using the import wizard. Import piesní sprievodcom importu. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Modul piesní</strong><br/>Modul piesní umožňuje zobrazovaÅ¥ spravovaÅ¥ piesne. &Re-index Songs &Preindexovanie piesní Re-index the songs database to improve searching and ordering. PreindexovaÅ¥ piesne v databáze pre lepÅ¡ie vyhľadávanie a usporiadanie. Reindexing songs... Preindexovanie piesní... Arabic (CP-1256) ArabÄina (CP-1256) Baltic (CP-1257) Baltské jazyky (CP-1257) Central European (CP-1250) Stredoeurópske jazyky (CP-1250) Cyrillic (CP-1251) Cyrilika (CP-1251) Greek (CP-1253) GréÄtina (CP-1253) Hebrew (CP-1255) HebrejÄina (CP-1255) Japanese (CP-932) JaponÄina (CP-932) Korean (CP-949) KórejÄina (CP-949) Simplified Chinese (CP-936) ZjednoduÅ¡ená ÄínÅ¡tina (CP-936) Thai (CP-874) Thajský jazyk (CP-874) Traditional Chinese (CP-950) TradiÄná ÄínÅ¡tina (CP-950) Turkish (CP-1254) TureÄtina (CP-1254) Vietnam (CP-1258) VietnamÄina (CP-1258) Western European (CP-1252) Západoeurópske jazyky (CP-1252) Character Encoding Kódovanie znakov The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Nastavenie kódovej stránky zodpovedá za správnu reprezentáciu znakov. Predvybraná voľba by zvyÄajne mala byÅ¥ správna. Please choose the character encoding. The encoding is responsible for the correct character representation. Vyberte prosím kódovanie znakov. Kódovanie zodpovedí za správnu reprezentáciu znakov. Song name singular Pieseň Songs name plural Piesne Songs container title Piesne Exports songs using the export wizard. Exportovanie piesní sprievodcom exportu. Add a new song. PridaÅ¥ novú pieseň. Edit the selected song. UpraviÅ¥ vybratú pieseň. Delete the selected song. ZmazaÅ¥ vybratú pieseň. Preview the selected song. Náhľad vybratej piesne. Send the selected song live. OdoslaÅ¥ vybranú pieseň naživo. Add the selected song to the service. PridaÅ¥ vybranú pieseň k službe. Reindexing songs Preindexácia piesní CCLI SongSelect Súbory CCLI SongSelect Import songs from CCLI's SongSelect service. Import pesniÄiek z CCLI SongSelect služby. Find &Duplicate Songs NájsÅ¥ &duplicitné piesne Find and remove duplicate songs in the song database. NájsÅ¥ a vymazaÅ¥ duplicitné piesne z databázy piesní. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Slová Music Author who wrote the music of a song Hudba Words and Music Author who wrote both lyrics and music of a song Slová a hudba Translation Author who translated the song Preklad SongsPlugin.AuthorsForm Author Maintenance Údržba autora Display name: Zobrazené meno: First name: Krstné meno: Last name: Priezvisko: You need to type in the first name of the author. Je potrebné zadaÅ¥ krstné meno autora. You need to type in the last name of the author. Je potrebné zadaÅ¥ priezvisko autora. You have not set a display name for the author, combine the first and last names? Zobrazené meno autora nie je nastavené. Chcete skombinovaÅ¥ krstné meno a priezvisko? SongsPlugin.CCLIFileImport The file does not have a valid extension. Súbor nemá platnú príponu. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Nesprávny DreamBeam súbor. Chýbajúce DreamBeam znaÄky. SongsPlugin.EasyWorshipSongImport Administered by %s Spravuje %s "%s" could not be imported. %s "%s" nemôže byÅ¥ nahraný. %s Unexpected data formatting. NeoÄakávané formátovanie. No song text found. Nenájdený žiadny text piesne. [above are Song Tags with notes imported from EasyWorship] [vyššie sú znaÄky piesní s poznámkami importovanými z EasyWorship] This file does not exist. Tento súbor neexistuje Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Nie je možné nájsÅ¥ súbor "Songs.MB". Ten musí byÅ¥ v rovnakom adresáry ako súbor "Songs.DB". This file is not a valid EasyWorship database. Súbor nie je v databázovom formáte EasyWorship Could not retrieve encoding. Nie je možné zístiÅ¥ kódovanie. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Používateľské názvy kníh SongsPlugin.EditSongForm Song Editor Editor piesne &Title: &Názov: Alt&ernate title: &Iný názov: &Lyrics: &Text piesne: &Verse order: &Poradie verÅ¡ov: Ed&it All &UpraviÅ¥ vÅ¡etko Title && Lyrics Názov a text piesne &Add to Song &PridaÅ¥ k piesni &Remove &OdstrániÅ¥ A&dd to Song &PridaÅ¥ k piesni R&emove &OdstrániÅ¥ New &Theme Nový &motív Copyright Information Informácie o autorský právach Comments Komentáre Theme, Copyright Info && Comments Motív, autorské práva a komentáre Add Author PridaÅ¥ autora This author does not exist, do you want to add them? Tento autor neexistuje. Chcete ho pridaÅ¥? This author is already in the list. Tento autor je už v zozname You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Nie je vybraný platný autor. BuÄ vyberiete autora zo zoznamu, alebo zadáte nového autora a pre pridanie nového autora kliknete na tlaÄidlo "PridaÅ¥ autora k piesni". Add Topic PridaÅ¥ tému This topic does not exist, do you want to add it? Táto téma neexistuje. Chcete ju pridaÅ¥? This topic is already in the list. Táto téma je už v zozname. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Nie je vybraná platná téma. BuÄ vyberiete tému zo zoznamu, alebo zadáte novú tému a pridanie novej témy kliknete na tlaÄidlo "PridaÅ¥ tému k piesni". You need to type in a song title. Je potrebné zadaÅ¥ názov piesne. You need to type in at least one verse. Je potrebné zadaÅ¥ aspoň jednu slohu. You need to have an author for this song. Pre túto pieseň je potrebné zadaÅ¥ autora. Linked Audio Súvisiaci zvuk Add &File(s) PridaÅ¥ &Súbor (y) Add &Media PridaÅ¥ &Médium Remove &All OdstrániÅ¥ &VÅ¡etko Open File(s) OtvoriÅ¥ súbor (y) <strong>Warning:</strong> Not all of the verses are in use. <strong>Varovanie:</strong> Nie sú použité vÅ¡etky slohy. <strong>Warning:</strong> You have not entered a verse order. <strong>Upozornenie:</strong> Nevložili ste poradie verÅ¡ov. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Niesú žiadne verÅ¡e ako "%(invalid)s". Správne sú %(valid)s, Prosím vložte verÅ¡e oddelené medzerou. Invalid Verse Order Nesprávne poradie verÅ¡ov &Edit Author Type &UpraviÅ¥ typ autora Edit Author Type Úprava typu autora Choose type for this author VybraÅ¥ typ pre tohto autora There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Niesú žiadne verÅ¡e ako "%(invalid)s". Správne sú %(valid)s, Prosím vložte verÅ¡e oddelené medzerou. &Manage Authors, Topics, Songbooks &Správa autorov, tém a spevníkov Add &to Song &PridaÅ¥ k piesni Re&move &OdstrániÅ¥ Authors, Topics && Songbooks Autori, témy a spevníky Add Songbook PridaÅ¥ spevník This Songbook does not exist, do you want to add it? Tento spevník neexistuje. Chcete ho pridaÅ¥? This Songbook is already in the list. Tento spevník je už v zozname. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Nie je vybraný platný spevník. BuÄ vyberiete spevník zo zoznamu, alebo zadáte nový spevník a pre pridanie nového spevníku kliknete na tlaÄidlo "PridaÅ¥ k piesni". SongsPlugin.EditVerseForm Edit Verse UpraviÅ¥ verÅ¡ &Verse type: &Typ verÅ¡a &Insert &VložiÅ¥ Split a slide into two by inserting a verse splitter. Vložením oddeľovaÄa sloh sa snímok rozdelí na dva snímky. SongsPlugin.ExportWizardForm Song Export Wizard Sprievodca exportom piesne Select Songs VybraÅ¥ piesne Check the songs you want to export. ZaÅ¡krtnite piesne, ktoré chcete exportovaÅ¥. Uncheck All OdoznaÄiÅ¥ vÅ¡etko Check All OznaÄiÅ¥ vÅ¡etko Select Directory VybraÅ¥ prieÄinok: Directory: PrieÄinok: Exporting Exportovanie Please wait while your songs are exported. ÄŒakajte prosím, kým budú vaÅ¡e piesne exportované. You need to add at least one Song to export. Je potrebné pridaÅ¥ k exportu aspoň jednu pieseň No Save Location specified Nie je zadané umiestnenie pre uloženie. Starting export... Spustenie exportu... You need to specify a directory. Je potrebné zadaÅ¥ prieÄinok. Select Destination Folder VybraÅ¥ cielový prieÄinok. Select the directory where you want the songs to be saved. VybraÅ¥ prieÄinok, kde chcete ukladaÅ¥ piesne. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Tento sprievodca vám pomôže s exportom vaÅ¡ich piesní do otvoreného a volne šíriteľného formátu pre chvály <strong>OpenLyrics</strong>. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Nesprávny Foilpresenter súbor. Žiadne verÅ¡e. SongsPlugin.GeneralTab Enable search as you type Zapnúť vyhľadávanie poÄas písania. SongsPlugin.ImportWizardForm Select Document/Presentation Files VybraÅ¥ dokumentové/prezentaÄné súbory Song Import Wizard Sprievodca importom piesní. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Tento sprievodca vám pomôže importovaÅ¥ piesne z rôznych formátov. Importovanie sa spustí kliknutím nižšie na tlaÄidlo Äalší a výberom formátu, z ktorého sa bude importovaÅ¥. Generic Document/Presentation VÅ¡eobecný dokument/prezentácia Add Files... PridaÅ¥ súbory... Remove File(s) OdstrániÅ¥ súbor(y) Please wait while your songs are imported. ÄŒakajte prosím, kým budú vaÅ¡e piesne naimportované. Words Of Worship Song Files Súbory s piesňami Words of Worship Songs Of Fellowship Song Files Súbory s piesňami Songs Of Fellowship SongBeamer Files Súbory SongBeamer SongShow Plus Song Files Súbory s piesňami SongShow Plus Foilpresenter Song Files Súbory s piesňami Foilpresenter Copy KopírovaÅ¥ Save to File UložiÅ¥ do súboru The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import zo Song of Fellowship bol zakázaný, pretože aplikácia OpenLP nemôže pristupovaÅ¥ k aplikáciám OpenOffice alebo LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import vÅ¡eobecných dokumentov/prezenácií bol zakázaný, pretože aplikácia OpenLP nemôže pristupovaÅ¥ k aplikáciám OpenOffice alebo LibreOffice. OpenLyrics Files Súbory OpenLyrics CCLI SongSelect Files Súbory CCLI SongSelect EasySlides XML File XML súbory EasySlides EasyWorship Song Database Databáza piesní EasyWorship DreamBeam Song Files Súbory Piesní DreamBeam You need to specify a valid PowerSong 1.0 database folder. Musíte upresniÅ¥ správny prieÄinok PowerSong 1.0 databázy. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Najprv prekonvertuj tvoju ZionWorx databázu na CSV textový súbor, ako je to vysvetlené v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Užívateľskom Manuály</a>. SundayPlus Song Files Súbory s piesňami SundayPlus This importer has been disabled. Tento importér bol zakázaný. MediaShout Database Databáza MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importér je podporovaný len vo Windows. Bol zakázaný kôli chýbajúcemu Python modulu. Ak si prajete používaÅ¥ tento importér, bude potrebné nainÅ¡talovaÅ¥ modul "pyodbc". SongPro Text Files Textové súbory SongPro SongPro (Export File) SongPro (exportovaný súbor) In SongPro, export your songs using the File -> Export menu V aplikácii SongPro sa piesne exportujú cez menu File -> Export EasyWorship Service File Súbor služby EasyWorship WorshipCenter Pro Song Files Súbor piesní WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. WorshipCenter Pro importér je podporovaný len vo Windows. Bol zakázaný kôli chýbajúcemu Python modulu. Ak si prajete používaÅ¥ tento importér, bude potrebné nainÅ¡talovaÅ¥ modul "pyodbc". PowerPraise Song Files Súbor piesní PowerPraise PresentationManager Song Files Súbor piesní PresentationManager ProPresenter 4 Song Files Súbor piesní ProPresenter 4 Worship Assistant Files Súbory Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. V aplikácií Worship Assistant exportujte databázu do CSV súboru. OpenLyrics or OpenLP 2 Exported Song OpenLyrics alebo piesne exportované z OpenLP 2 OpenLP 2 Databases Databázy OpenLP 2 LyriX Files LyriX súbory LyriX (Exported TXT-files) LyriX (Exportované TXT-soubory) VideoPsalm Files VideoPsalm súbory VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s Spevníky VideoPsalm sú bežne umiestnené v %s SongsPlugin.LyrixImport Error: %s Chyba: %s SongsPlugin.MediaFilesForm Select Media File(s) VybraÅ¥ mediálny súbor (y) Select one or more audio files from the list below, and click OK to import them into this song. Vyberte jeden alebo viac zvukových súborov zo zoznamu nižšie a importovaÅ¥ ich k piesni je možné kliknutím na tlaÄidlo OK. SongsPlugin.MediaItem Titles Názvy Lyrics Text piesne CCLI License: CCLI Licencia: Entire Song Celá pieseň Maintain the lists of authors, topics and books. SpravovaÅ¥ zoznamy autorov, tém a kníh. copy For song cloning kopírovaÅ¥ Search Titles... VyhľadávaÅ¥ názov... Search Entire Song... VyhľadávaÅ¥ celú pieseň... Search Lyrics... VyhľadávaÅ¥ text piesne... Search Authors... VyhľadávaÅ¥ autorov... Are you sure you want to delete the "%d" selected song(s)? Ste si istý, že chcete zmazaÅ¥ "%d" vybraných piesní(e)? Search Songbooks... VyhľadávaÅ¥ spevníky... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Nie je možné otvoriÅ¥ databázu MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Neplatná databáza piesní OpenLP 2. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportovanie "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Nesprávny OpenSong súbor. Chýbajúce znaÄky. SongsPlugin.PowerSongImport No songs to import. Žiadne piesne nie sú na vloženie. Verses not found. Missing "PART" header. VerÅ¡e neboli nájdené. Chýba "ÄŒASŤ" hlaviÄka. No %s files found. Nenájdené žiadne súbory %s Invalid %s file. Unexpected byte value. Neplatný súbor %s. NeoÄakávaná hodnota bajtu. Invalid %s file. Missing "TITLE" header. Neplatný súbor %s. Chýbajúca hlaviÄka "TITLE" Invalid %s file. Missing "COPYRIGHTLINE" header. Neplatný súbor %s. Chýbajúca hlaviÄka "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: &Názov: &Publisher: &Vydavateľ: You need to type in a name for the book. Je potrebné zadaÅ¥ názov knihy. Songbook Maintenance Údržba spevníku SongsPlugin.SongExportForm Your song export failed. Export piesne zlyhal. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export bol dokonÄený. Pre import týchto súborov použite import z <strong>OpenLyrics</strong> Your song export failed because this error occurred: %s Export piesne zlyhal pretože nastala táto chyba: %s SongsPlugin.SongImport copyright autorské práva The following songs could not be imported: Nasledujúce piesne nemôžu byÅ¥ importované: Cannot access OpenOffice or LibreOffice Žiadny prístup k aplikáciám OpenOffice alebo LibreOffice Unable to open file Nejde otvoríť súbor File not found Súbor nebol nájdený SongsPlugin.SongMaintenanceForm Could not add your author. Nie je možné pridaÅ¥ autora. This author already exists. Tento autor už existuje. Could not add your topic. Nie je možné pridaÅ¥ tému. This topic already exists. Táto téma už existuje Could not add your book. Nie je možné pridaÅ¥ knihu. This book already exists. Táto kniha už existuje. Could not save your changes. Nie je možné uložiÅ¥ zmeny. Could not save your modified author, because the author already exists. Nie je možné uložiÅ¥ upraveného autora, pretože tento autor už existuje. Could not save your modified topic, because it already exists. Nie je možné uložiÅ¥ upravenú tému, pretože už existuje. Delete Author ZmazaÅ¥ autora Are you sure you want to delete the selected author? Ste si istý, že chcete zmazaÅ¥ vybraného autora? This author cannot be deleted, they are currently assigned to at least one song. Tento autor nemôže byÅ¥ zmazaný, pretože je v súÄastnosti priradený najmenej k jednej piesni. Delete Topic ZmazaÅ¥ tému Are you sure you want to delete the selected topic? Ste si istý, že chcete zmazaÅ¥ vybranú tému? This topic cannot be deleted, it is currently assigned to at least one song. Táto téma nemôže byÅ¥ zmazaná, pretože je v súÄastnosti priradená najmenej k jednej piesni. Delete Book ZmazaÅ¥ spevník Are you sure you want to delete the selected book? Ste si istý, že chcete zmazaÅ¥ vybranú knihu? This book cannot be deleted, it is currently assigned to at least one song. Táto kniha nemôže byÅ¥ zmazaná, pretože je v súÄastnosti priradená najmenej k jednej piesni. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s už existuje. Prajete si vytvoriÅ¥ piesne s autorom %s a použiÅ¥ už existujúceho autora %s ? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Téma %s už existuje. Prajete si vytvoriÅ¥ piesne s témou %s a použiÅ¥ už existujúcu tému %s ? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Kniha %s už existuje. Prajete si vytvoriÅ¥ piesne s knihou %s a použiÅ¥ už existujúcu knihu %s ? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SelectSong import <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Poznámka:</strong> Pre import z CCLI SongSelect je potrebné internetové pripojenie. Username: Používateľské meno: Password: Heslo: Save username and password UložiÅ¥ prihlasovacie meno a heslo Login PrihlásiÅ¥ Search Text: Hľadaný text: Search HľadaÅ¥ Found %s song(s) Najdené %s piesní Logout OdhlásiÅ¥ View ZobraziÅ¥ Title: Nadpis: Author(s): Autor(y): Copyright: Autorské práva: CCLI Number: CCLI Äislo: Lyrics: Text piesne: Back Naspäť Import Import More than 1000 results Viac ako 1000 výsledkov Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Vyhľadávanie bolo zastavené, pretože bolo nájdených viac ako 1000 záznamov. Prosím upresnite vyhľadávanie, aby ste spresnili výsledok. Logging out... Odhlasovanie... Save Username and Password UložiÅ¥ prihlasovacie meno a heslo WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. VAROVANIE: Uloženie mena a hesla nie je BEZPEÄŒNÉ, heslo bude uložené ako ÄŒITATEĽNà TEXT. Pre uloženie hesla klinite Ãno alebo kliknite Nie pre zruÅ¡enie bez uloženia. Error Logging In Chyba prihlasovania There was a problem logging in, perhaps your username or password is incorrect? Nastal problém s prihlásením. Možno ste zadali nesprávne meno alebo heslo. Song Imported Pieseň naimportovaná Incomplete song Neúplná pieseň This song is missing some information, like the lyrics, and cannot be imported. Pri tejto piesni chýbajú niektoré informácie, ako napríklad text, a preto nie je možné importovaÅ¥. Your song has been imported, would you like to import more songs? Pieseň bola naimportovaná, chcete importovaÅ¥ ÄalÅ¡ie pesniÄky? Stop ZastaviÅ¥ SongsPlugin.SongsTab Songs Mode Réžim piesne Display verses on live tool bar ZobraziÅ¥ slohy v nástrojovej liÅ¡te naživo Update service from song edit AktualizovaÅ¥ službu pri úprave piesne. Import missing songs from service files Import chýbajúcich piesní zo služby súborov. Display songbook in footer ZobraziÅ¥ názov spevníku v zápätí Display "%s" symbol before copyright info ZobraziÅ¥ symbol "%s" pred informáciami o autorských právach SongsPlugin.TopicsForm Topic Maintenance Údržba témy Topic name: Názov témy You need to type in a topic name. Je potrebné zadaÅ¥ názov témy. SongsPlugin.VerseType Verse Sloha Chorus Refrén Bridge Prechod Pre-Chorus Predrefrén Intro Intro Ending ZakonÄenie Other ÄŽalÅ¡ie SongsPlugin.VideoPsalmImport Error: %s Chyba: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Neplatný súbor Word of Worship. Chýbajúca hlaviÄka "%s". WoW súbor\nSlová piesne Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Chybný súbor Words of Worship. Chýba reÅ¥azec "%s". CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Chyba pri Äítaní CSV súboru. Line %d: %s Riadok %d: %s Decoding error: %s Chyba dekódovania: %s File not valid WorshipAssistant CSV format. Nesprávny CSV formát súboru WorshipAssistant. Record %d Záznam %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Nie je možné napojiÅ¥ sa na WorshipCenter Pro databázu. SongsPlugin.ZionWorxImport Error reading CSV file. Chyba pri Äítaní CSV súboru. File not valid ZionWorx CSV format. Súbor nemá správny CSV formát programu ZionWorx. Line %d: %s Riadok %d: %s Decoding error: %s Chyba dekódovania: %s Record %d Záznam %d Wizard Wizard Sprievodca This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Tento sprievodca vám pomôže s výmazom duplicitných piesní z databázy. Budete maÅ¥ možnosÅ¥ prezrieÅ¥ si každú dvojicu piesní pred ich vymazaním. Takže žiadna pesniÄka nebude vymazaná bez vášho súhlasu. Searching for duplicate songs. Vyhľadávanie duplicitných piesní. Please wait while your songs database is analyzed. ÄŒakajte prosím, kým budú vaÅ¡e piesne zanalyzované. Here you can decide which songs to remove and which ones to keep. Tu možete vybraÅ¥ ktoré piesne budú vymazané a ktoré budú ponechané. Review duplicate songs (%s/%s) PrezrieÅ¥ duplicitné piesne (%s/%s) Information Informácie No duplicate songs have been found in the database. Žiadne duplicitné piesne neboli nájdené. OpenLP-2.4/resources/i18n/bg.ts0000644000175000017500000162402012657640340015307 0ustar raoulraoul AlertsPlugin &Alert &Сигнал Show an alert message. Покажи Ñигнално Ñъобщение Alert name singular Сигнал Alerts name plural Сигнали Alerts container title Сигнали <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Добавка за Ñигнали</strong><br />Добавката за Ñигнали контролира показването на Ñигнали на екрана. AlertsPlugin.AlertForm Alert Message Сигнално Ñъобщение Alert &text: ТекÑÑ‚ на Ñигнала &New &Ðов &Save &Запази Displ&ay По&кажи Display && Cl&ose Покажи && Затвори New Alert Ðов Ñигнал &Parameter: &Параметър No Parameter Found ÐÑма намерени параметри You have not entered a parameter to be replaced. Do you want to continue anyway? Ðе Ñте задали промÑна на параметъра. ИÑкате ли да продължите въпреки това? No Placeholder Found ÐÑма намерен приемник The alert text does not contain '<>'. Do you want to continue anyway? Сигналът не Ñъдържа '<>'.⎠ИÑкате ли да продължите вÑе пак? You haven't specified any text for your alert. Please type in some text before clicking New. Ðе Ñте дали никакъв текÑÑ‚ на Ð²Ð°ÑˆÐ¸Ñ Ñигнал. ÐœÐ¾Ð»Ñ Ð½Ð°Ð¿Ð¸ÑˆÐµÑ‚Ðµ нещо преди да натиÑнете бутона Ðов. AlertsPlugin.AlertsManager Alert message created and displayed. Сигналното Ñъобщение е Ñъздадено и показано. AlertsPlugin.AlertsTab Font Шрифт Font name: Име на шрифта: Font color: ЦвÑÑ‚ на шрифта: Background color: ЦвÑÑ‚ за фон: Font size: Размер на шрифта: Alert timeout: Срок на Ñигнала BiblesPlugin &Bible &Ð‘Ð¸Ð±Ð»Ð¸Ñ Bible name singular Ð‘Ð¸Ð±Ð»Ð¸Ñ Bibles name plural Библии Bibles container title Библии No Book Found ÐÑма намерена книга No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ðе може да бъде намерена ÑъответÑтваща книга в тази БиблиÑта. Проверете вÑрно ли Ñте въвели името! Import a Bible. Импортирай БиблиÑ. Add a new Bible. Добави нова БиблиÑ. Edit the selected Bible. Редактирай избраната БиблиÑ. Delete the selected Bible. Изтрии избраната БиблиÑ. Preview the selected Bible. Преглед на избраната БиблиÑ. Send the selected Bible live. Изпрати избраната Ð‘Ð¸Ð±Ð»Ð¸Ñ Add the selected Bible to the service. Добави избраната Ð‘Ð¸Ð±Ð»Ð¸Ñ ÐºÑŠÐ¼ подредбата. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Добавка за БиблиÑ</strong><br / >Добавката за БиблиÑта дава възможноÑÑ‚ да Ñе показват библейÑки Ñтихове от различни иÑточници по време на Ñлужбата. &Upgrade older Bibles Ðктуализирай Ñтари Библии. Upgrade the Bible databases to the latest format. Ðктуализирай базата данни на БиблиÑта към поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ Genesis Битие Exodus Изход Leviticus Левит Numbers ЧиÑла Deuteronomy Второзаконие Joshua ИÑÑƒÑ Ðавиев Judges Съдии Ruth Рут 1 Samuel 1 Царе 2 Samuel 2 Царе 1 Kings 3 Царе 2 Kings 4 Царе 1 Chronicles 1 ЛетопиÑи 2 Chronicles 2 ЛетопиÑи Ezra Ездра Nehemiah ÐÐµÐµÐ¼Ð¸Ñ Esther ЕÑтир Job Йов Psalms ПÑалми Proverbs Притчи Ecclesiastes ЕклеÑиаÑÑ‚ Song of Solomon ПеÑен на пеÑните Isaiah ИÑÐ°Ñ Jeremiah Ð•Ñ€ÐµÐ¼Ð¸Ñ Lamentations Плачът на Ð•Ñ€ÐµÐ¼Ð¸Ñ Ezekiel Езекил Daniel Данаил Hosea ОÑÐ¸Ñ Joel Йоил Amos ÐÐ¼Ð¾Ñ Obadiah Ðвдии Jonah Йона Micah Михей Nahum Ðаум Habakkuk Ðвакум Zephaniah Софоний Haggai Ðгей Zechariah Ð—Ð°Ñ…Ð°Ñ€Ð¸Ñ Malachi ÐœÐ°Ð»Ð°Ñ…Ð¸Ñ Matthew Матей Mark Марк Luke Лука John Йоан Acts Дела Romans РимлÑни 1 Corinthians 1 КоринтÑни 2 Corinthians 2 КортинтÑни Galatians ГалатÑни Ephesians ЕфеÑÑни Philippians ФилипÑни Colossians КолоÑÑни 1 Thessalonians 1 Солунци 2 Thessalonians 2 Солунци 1 Timothy 1 Тимотей 2 Timothy 2 Тимотей Titus Тит Philemon Филимон Hebrews Евреи James Яков 1 Peter 1 Петрово 2 Peter 2 Петрово 1 John 1 Йоан 2 John 2 Йоан 3 John 3 Йоан Jude Юда Revelation Откровение Judith Юдит Wisdom МъдроÑÑ‚ Tobit Товит Sirach ИÑÑƒÑ Ð¡Ð¸Ñ€Ð°Ñ…Ð¾Ð² Baruch Варух 1 Maccabees 1 Макавей 2 Maccabees 2 Макавей 3 Maccabees 3 Макавей 4 Maccabees 4 Макавей Rest of Daniel Rest of Daniel Rest of Esther Rest of Esther Prayer of Manasses Prayer of Manasses Letter of Jeremiah Letter of Jeremiah Prayer of Azariah Prayer of Azariah Susanna Сузана Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 к V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 К verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 куплет verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 Куплети - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 до , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 и end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse край BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. ТрÑбва да укажеш верÑиÑта на БиблиÑта You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ТрÑбва да Ñе въведе копирайт за тази БиблиÑ. Библиите в ÐŸÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð¸Ñ Ð´Ð¾Ð¼ÐµÐ¹Ð½ Ñледва да Ñе маркират така. Bible Exists БиблиÑта е налична This Bible already exists. Please import a different Bible or first delete the existing one. Тази Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð²ÐµÑ‡Ðµ е налична. ÐœÐ¾Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¸Ñ€Ð°Ð¹Ñ‚Ðµ друга Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð¸Ð»Ð¸ първо изтрийте наличната. You need to specify a book name for "%s". ТрÑбва да въведете име на "%s" книга. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Името на "%s" книга е некоректно.⎠Ðомерата може да Ñа Ñамо в началото и трÑбва да⎠бъдат Ñледвани от енда или повече букви. Duplicate Book Name Дублирано име на книга The Book Name "%s" has been entered more than once. Името на "%s" книга е въведено повече от веднъж. BiblesPlugin.BibleManager Scripture Reference Error Грешна препратка Web Bible cannot be used БиблиÑта от Мрежата не може да бъде използвана Text Search is not available with Web Bibles. Ðе е налична уÑлугата за търÑене на текÑÑ‚ е Библиите от Мрежата You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Ðе Ñте въвели дума за търÑене. За търÑене на вÑички от нÑколко кодови думи, може да ги раделите Ñ Ð¸Ð½Ñ‚ÐµÑ€Ð²Ð°Ð», а за търÑене на вÑÑка една поотделно - може да ги разделите Ñ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Ð’ момента нÑма инÑталирани Библии. ÐœÐ¾Ð»Ñ Ð¸Ð·Ð¿Ð¾Ð»Ð·Ð²Ð°Ð¹Ñ‚Ðµ Помощника за Вмъкване, за да инÑталирате една или повече Библии. No Bibles Available ÐÑма налични Библии. Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Вашата препратка не е поддържана от OpenLP или е невалидна. ÐœÐ¾Ð»Ñ ÑƒÐ²ÐµÑ€ÐµÑ‚Ðµ Ñе, че препратката Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñ Ð½Ð° Ñледните примери или вижте в упътването:⎠⎠Book Chapter⎠Book Chapter%(range)sChapter⎠Book Chapter%(verse)sVerse%(range)sVerse⎠Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse⎠Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse⎠Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Показване на Ñтих Only show new chapter numbers Покажи Ñамо номерата на новите глави от книгата Bible theme: Тема за БиблиÑта No Brackets без Ñкоби ( And ) ( и ) { And } { и } [ And ] [ и ] Note: Changes do not affect verses already in the service. Бележка: Промените не влиÑÑÑ‚ на Ñтиховете които Ñа вече в Ñлужбата. Display second Bible verses Покажи втори Ñтих от БиблиÑта Custom Scripture References ПотребителÑки библейÑки препратки Verse Separator: Разделител за Ñтихове: Range Separator: Разделител за паÑаж: List Separator: Разделител за лиÑÑ‚: End Mark: ОтбелÑзка за край: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Може да бъде поÑочен повече от един разделител на Ñтихове.⎠Те трÑбва да бъдат разделени Ñ Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»Ð½Ð° черта "|".âŽ ÐœÐ¾Ð»Ñ Ð¿Ñ€ÐµÐ¼Ð°Ñ…Ð½ÐµÑ‚Ðµ редактираното за да използвате ÑтойноÑтта по подразбиране. English ÐнглийÑки Default Bible Language Език нз БиблиÑта по подразбиране Book name language in search field, search results and on display: Език на търÑене в полето за книги,⎠резултати и на диÑплеÑ: Bible Language Език на БиблиÑта Application Language Език на програмата Show verse numbers Покажи номерата на Ñтиховете BiblesPlugin.BookNameDialog Select Book Name Избери име на книга Current name: Сегашно име Corresponding name: СъответÑтващо име: Show Books From Покажи формата за книги Old Testament Стар Завет New Testament Ðов Завет Apocrypha Ðпокрифни The following book name cannot be matched up internally. Please select the corresponding name from the list. Тази книга не може да бъде заÑечена. ÐœÐ¾Ð»Ñ Ð¸Ð·Ð±ÐµÑ€ÐµÑ‚Ðµ Ñъответната книга от ÑпиÑъка! BiblesPlugin.BookNameForm You need to select a book. ТрÑбва да избереш книга. BiblesPlugin.CSVBible Importing books... %s Импортиране на книги... %s Importing verses... done. Импортиране на Ñтихове... готво. BiblesPlugin.EditBibleForm Bible Editor Редактор за Библии License Details Детайли за лиценза Version name: ВерÑиÑ: Copyright: Копирайт: Permissions: РазрешениÑ: Default Bible Language Език нз БиблиÑта по подразбиране Book name language in search field, search results and on display: Език на търÑене в полето за книги, резултати и на диÑплеÑ: Global Settings Глобални наÑтройки Bible Language Език на БиблиÑта Application Language Език на програмата English ÐнглийÑки This is a Web Download Bible. It is not possible to customize the Book Names. Това е Web Ñвалена БиблиÑ. Ðе е възможно ръчно да Ñе задават имената на книгите. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. За да използвате ръчно зададени имена на книги "Език на БиблиÑта" трвбва да бъде избран в ÑекциÑта мета данни или ако "Глобални наÑтройки" е маркирано на ÑекциÑта Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð² конфигуриране на OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... РегиÑтриране на превода и зареждане на книгите... Registering Language... РегиÑтриране на Език... Importing %s... Importing <book name>... Импортиране %s... Download Error Грешка при ÑвалÑне There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Имаше проблем при ÑвалÑнето на избраните Ñтихове. ÐœÐ¾Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐµÑ‚Ðµ Ñи връзката към Интернет, и в Ñлучай, че грешката продължи да Ñе получава, Ð¼Ð¾Ð»Ñ Ð¾Ð±Ð¼Ð¸Ñлете възможноÑтта да Ñъобщите за грешка в програмата. Parse Error Грешка при ÑÐ¸Ð½Ñ‚Ð°ÐºÑ‚Ð¸Ñ‡Ð½Ð¸Ñ Ñ€Ð°Ð·Ð±Ð¾Ñ€. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Имаше проблем при извличането на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ñ‚ Ð²Ð°Ñ Ñтихове. Ð’ Ñлучай, че грешката продължи да Ñе получава, Ð¼Ð¾Ð»Ñ Ð¾Ð±Ð¼Ð¸Ñлете възможноÑтта да Ñъобщите за грешка в програмата. BiblesPlugin.ImportWizardForm Bible Import Wizard Помощник за импортиране на Библии This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Тази поредица от екрани ще ви помогне да вмъкнете Библии от множеÑтво формати. Щракнете на ÑледващиÑÑ‚ бутон отдолу за да започнете процеÑа чрез избор на формат от който ще вмъквате. Web Download СвалÑне от Мрежата Location: МÑÑто: Crosswalk Crosswalk BibleGateway BibleGateway Bible: БиблиÑ: Download Options Опции за ÑвалÑне Server: Сървър: Username: ПотребителÑко име: Password: Парола: Proxy Server (Optional) ПрокÑи Ñървър (Optional) License Details Детайли за лиценза Set up the Bible's license details. Задайте детайлите за лиценза на библейÑÐºÐ¸Ñ Ð¿Ñ€ÐµÐ²Ð¾Ð´. Version name: ВерÑиÑ: Copyright: Копирайт: Please wait while your Bible is imported. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ докато Ñе внаÑÑ Ð¿Ñ€ÐµÐ²Ð¾Ð´Ð°. You need to specify a file with books of the Bible to use in the import. ТрÑбва да поÑочите файл Ñ Ð±Ð¸Ð±Ð»ÐµÐ¹Ñки книги за внаÑÑне You need to specify a file of Bible verses to import. ТрÑбва да поÑочите файл Ñ Ð±Ð¸Ð±Ð»ÐµÐ¹Ñки Ñтихове за внаÑÑне You need to specify a version name for your Bible. ТрÑбва да укажеш верÑиÑта на БиблиÑта You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ТрÑбва да Ñе въведе копирайт за тази БиблиÑ. Библиите в ÐŸÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð¸Ñ Ð´Ð¾Ð¼ÐµÐ¹Ð½ Ñледва да Ñе маркират така. Bible Exists БиблиÑта е налична This Bible already exists. Please import a different Bible or first delete the existing one. Тази Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð²ÐµÑ‡Ðµ е налична. ÐœÐ¾Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¸Ñ€Ð°Ð¹Ñ‚Ðµ друга Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð¸Ð»Ð¸ първо изтрийте наличната. Your Bible import failed. ВнаÑÑнето на БиблиÑта Ñе провали. CSV File CSV Фаил Bibleserver Bibleserver Permissions: РазрешениÑ: Bible file: Файл Ñ Ð‘Ð¸Ð±Ð»Ð¸Ñ Books file: Файл Ñ ÐºÐ½Ð¸Ð³Ð¸: Verses file: Файл ÑÑŠÑ Ñтихове: Registering Bible... РегиÑтриране на БиблиÑта Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. РегиÑтрирана БиблиÑ. ÐœÐ¾Ð»Ñ Ð¸Ð¼Ð°Ð¹Ñ‚Ðµ в предвид, че показваните Ñтихове не Ñе запомнÑÑ‚ на компютъра и за това е нужна поÑтоÑнна връзка към Интернет. Click to download bible list Кликни и Ñвали лиÑта Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¸ за ÑвалÑне. Download bible list СвалÑне на ÑпиÑък Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¸ Error during download Грешка по време на ÑвалÑнето An error occurred while downloading the list of bibles from %s. Ð’ процеÑа на ÑвалÑне на ÑпиÑъка Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¸ от %s Ñе поÑви грешка. BiblesPlugin.LanguageDialog Select Language ПоÑочи език OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP е в невъзможноÑÑ‚ да определи езика на този превод на БиблиÑта. ÐœÐ¾Ð»Ñ Ð¸Ð·Ð±ÐµÑ€ÐµÑ‚Ðµ езика от ÑпиÑъка по-долу. Language: Език: BiblesPlugin.LanguageForm You need to choose a language. Има нужда да изберете езика. BiblesPlugin.MediaItem Quick Бързо Find: ТърÑи: Book: ПеÑнарка: Chapter: Глава: Verse: Стих: From: От: To: До: Text Search ТърÑи в текÑта Second: Втори: Scripture Reference Препратка Toggle to keep or clear the previous results. Изберете за да запазите или да изчиÑтите предишните резултати. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Ðе може да комбинирате резултатите от търÑене на Ñтихове между търÑене в една и две Библии. Желаете ли да изтриете Ñегашните резултати от търÑенето и да започнете ново? Bible not fully loaded. БиблиÑта не е напълно заредена Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Втората Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð½Ðµ Ñъдържа вÑички Ñтихове които Ñа в оÑновната. Само Ñтиховете намерени и в двете Библии ще бъдат показани. %d Ñтиха не Ñа включени в резултата от търÑенето. Search Scripture Reference... ТърÑи препратка... Search Text... ТърÑи текÑÑ‚... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. ÐаиÑтина ли иÑкате да изтриете напълно "%s" Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð¾Ñ‚ OpenLP? Ще е необходимо да импортирате БиблиÑта, за да Ñ Ð¸Ð·Ð¿Ð¾Ð»Ð·Ð²Ð°Ñ‚Ðµ отново. Advanced Допълнителни BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Използва Ñе неправилен тип файл за БиблиÑ. OpenSong Библиите може да Ñа компреÑирани. ТрÑбва да ги декомпреÑирате преди да ги импортирате. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Импортиране на %(bookname) %(chapter)... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... Импортиране на %(bookname) %(chapter)... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Изберете Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° резервно копие Bible Upgrade Wizard Помощник за Ð°ÐºÑ‚ÑƒÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° библейÑÐºÐ¸Ñ Ð¿Ñ€ÐµÐ²Ð¾Ð´ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Помощника ще ви ÑъдейÑтва за да надградите ÑъщеÑтвуващите Библии от предишни верÑии на OpenLP 2. Щракнете на бутона по-долу за да Ñтартирате процеÑа на надграждане. Select Backup Directory Изберете Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° резервно копие Please select a backup directory for your Bibles Изберете Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° резервно копие за вашите Библии Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Предишните Ð¸Ð·Ð´Ð°Ð½Ð¸Ñ Ð½Ð° OpenLP 2.0 нÑмат възможноÑÑ‚ да използват актуализирани преводи. Така ще Ñе направи резервно копие на Ñегашните библии, така че да можете проÑто да копирате файловете обратно в директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP ако трÑбва да Ñе върнете към предишна верÑÐ¸Ñ Ð½Ð° програмата. ИнÑтрукции как да възтановите файловете можете да намерите в нашите <a href="http://wiki.openlp.org/faq">чеÑто задавани въпроÑи</a>. Please select a backup location for your Bibles. МолÑ, изберете мÑÑто където да бъдат запазени Ñтарите файлове на Библиите. Backup Directory: Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° резервното копие There is no need to backup my Bibles ÐÑма нужда да запазвам файлове на Библиите. Select Bibles Изберете библейÑки преводи Please select the Bibles to upgrade ÐœÐ¾Ð»Ñ Ð¿Ð¾Ñочете превод за Ð°ÐºÑ‚ÑƒÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Upgrading Ðктуализиране Please wait while your Bibles are upgraded. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ докато Ñе актуализират преводите на БиблиÑта The backup was not successful. To backup your Bibles you need permission to write to the given directory. Запазването е неуÑпешно. За да оÑъщеÑтвите запазването трÑбва да имате разрешение за пиÑане в поÑочената от Ð²Ð°Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ. Upgrading Bible %s of %s: "%s" Failed Ðктуализиране на БиблиÑта %s of %s: "%s"⎠Провалено Upgrading Bible %s of %s: "%s" Upgrading ... Ðктуализиране на БиблиÑта %s of %s: "%s"⎠Ðктуализиране ... Download Error Грешка при ÑвалÑне To upgrade your Web Bibles an Internet connection is required. За да обновите Библиите ползвани през Мрежата Ñе изиÑква връзка към Интернет. Upgrading Bible %s of %s: "%s" Upgrading %s ... Ðктуализиране на БиблиÑта %s of %s: "%s"⎠Ðктуализиране %s ... Upgrading Bible %s of %s: "%s" Complete Ðктуализиране на БиблиÑта %s of %s: "%s"⎠Завършено , %s failed , %s провалено Upgrading Bible(s): %s successful%s Ðктуализиране на библейÑки превод(и): %s уÑпешно%s Upgrade failed. Ðктуализирането Ñе провали. You need to specify a backup directory for your Bibles. Ðеобходимо е да укажете Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° резервни ÐºÐ¾Ð¿Ð¸Ñ Ð½Ð° Библиите. Starting upgrade... Започване на надграждането... There are no Bibles that need to be upgraded. ÐÑма Библии които да е необходимо да Ñе надградÑÑ‚. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Импортиране на %(bookname) %(chapter)... CustomPlugin Custom Slide name singular ПотребителÑки Ñлайд Custom Slides name plural ПотребителÑки Ñлайдове Custom Slides container title ПотребителÑки Ñлайдове Load a new custom slide. Зреди нов потребителÑки Ñлайд Import a custom slide. Импортирай потребителÑки Ñлайд Add a new custom slide. Добави нов потребителÑки Ñлайд Edit the selected custom slide. Редактирай Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки Ñлайд Delete the selected custom slide. Изтрий Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки Ñлайд Preview the selected custom slide. Преглед на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки Ñлайд Send the selected custom slide live. ПуÑни Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки Ñлайд на живо. Add the selected custom slide to the service. Добави Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки Ñлайд към Ñлужбата <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Ðадбавка за потребителÑки кадър</strong><br /> Ðадбавката за потребителÑки кадър дава възможноÑÑ‚ да направите кадри Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки текÑÑ‚, които да бъдат прожектирани както пеÑните. Ðадбавката дава по-голÑма Ñвобода от надбавката за пеÑни. CustomPlugin.CustomTab Custom Display ПотребителÑки екран Display footer Покажи колонтитул Import missing custom slides from service files Импортирай липÑващи пеÑни от фаилове за Ñлужба CustomPlugin.EditCustomForm Edit Custom Slides Редактирай потребителÑки Ñлайдове &Title: Заглавие: Add a new slide at bottom. Добави нов поÑледен Ñлайд Edit the selected slide. Редактирай Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñлайд Edit all the slides at once. Редактирай вÑички Ñлайдове наведнъж. Split a slide into two by inserting a slide splitter. Раздели Ñлайд, чрез вмъкване на разделител. The&me: Тема &Credits: ЗаÑлуги You need to type in a title. ТрÑбва да въведете заглавие Ed&it All Редактирай вÑичко Insert Slide Вмъкни Ñлайд You need to add at least one slide. ТрÑбва да добавите поне един Ñлайд. CustomPlugin.EditVerseForm Edit Slide Редактиране на Ñлайд CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Ðадбавка за картини</strong><br />Ðадбавката за картини дава възможноÑÑ‚ показването на картини.<br /> Една от отличителните черти на тази надбавка е възможноÑтта да групирате нÑколко Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð·Ð°ÐµÐ´Ð½Ð¾ в мениджъра за Ñлужбата, като прави показването на нÑколко Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¿Ð¾-леÑно. Тази надбавка може да Ñе ползва OpenLP функциÑта "времева нишка" за Ñъздаване на Ñлайдшоу, което върви автоматично. Ð’ допълнение към това, надбавката за картини може да Ñе използва за заобикалÑне на фона на текущата тема, което прави текÑтово-базирани продукти като пеÑни Ñ Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¾Ñ‚Ð¾ изображение като фон, вмеÑто на фона от темата. Image name singular Изображение Images name plural Картини Images container title Картини Load a new image. Зареди нова картина Add a new image. Добави нова картина Edit the selected image. Редактирай избраната картина Delete the selected image. Изтрий избраната картина Preview the selected image. Преглед на избраната картина Send the selected image live. ПуÑни избраната картина на живо. Add the selected image to the service. Добавете избраната картина към Ñлужбата. ImagePlugin.AddGroupForm Add group Добави група Parent group: Първоначална група Group name: Има на групата: You need to type in a group name. ТрÑбва да Ñе въведе име на групата. Could not add the new group. Ðе може да Ñе добави нова група. This group already exists. Тази група Ñ Ð¸Ð¼Ð° вече. ImagePlugin.ChooseGroupForm Select Image Group Избери картина на групата Add images to group: Избери картини към групата No group ÐÑма група Existing group СъщеÑтвуваща група New group Ðова група ImagePlugin.ExceptionDialog Select Attachment Изберете прикачен файл ImagePlugin.MediaItem Select Image(s) Изберете картина(и) You must select an image to replace the background with. ТрÑбва да изберете картина, Ñ ÐºÐ¾Ñто да замените фона. Missing Image(s) ЛипÑваща катина The following image(s) no longer exist: %s Следната(ите) картина(и) не ÑъщеÑтвуват вече: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Следната(ите) картина(и) не ÑъщеÑтвуват вече: %s ⎠ИÑкате ли да добавите другите картини вÑе пак? There was a problem replacing your background, the image file "%s" no longer exists. Имаше проблем при замеÑтването на фона, файла Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸ÐµÑ‚Ð¾ "%s" вече не ÑъщеÑтвува. There was no display item to amend. ÐÑма какво да Ñе коригира. -- Top-level group -- -- Ðай-оÑновна група -- You must select an image or group to delete. ТрÑбва да изберете картина или група за да Ñ Ð¸Ð·Ñ‚Ñ€Ð¸ÐµÑ‚Ðµ. Remove group Премахни група Are you sure you want to remove "%s" and everything in it? ÐаиÑтина ли да Ñе изтриÑÑ‚ "%s" и вÑичко в Ñ‚ÑÑ…? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Видим фон за картини Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ различен от екрана. Media.player Audio Ðудио Video Видео VLC is an external player which supports a number of different formats. VLC е външен плеър, който поддържа много различни формати. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit е Ð¼ÐµÐ´Ð¸Ñ Ð¿Ð»ÐµÑŠÑ€, който върви в уеб браузър. Той позволÑва визуализирането на текÑта върху видеото. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>ÐœÐµÐ´Ð¸Ñ ÐŸÐ»ÑŠÐ³Ð¸Ð½</strong><br />Тази добавка обезпечава възпроизвеждането на звук и видео. Media name singular ÐœÐµÐ´Ð¸Ñ Media name plural ÐœÐµÐ´Ð¸Ñ Media container title ÐœÐµÐ´Ð¸Ñ Load new media. Заредете нов Ð¼ÐµÐ´Ð¸Ñ Ñ„Ð°Ð¹Ð» Add new media. Добавете нов Ð¼ÐµÐ´Ð¸Ñ Ñ„Ð°Ð¹Ð». Edit the selected media. Редактирайте Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¼ÐµÐ´Ð¸Ñ Ñ„Ð°Ð¹Ð» Delete the selected media. Изтрийте Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð²Ð¸Ð´ÐµÐ¾ файл Preview the selected media. Преглед на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð²Ð¸Ð´ÐµÐ¾ файл Send the selected media live. ПуÑнете Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð²Ð¸Ð´ÐµÐ¾ файл на живо Add the selected media to the service. Добави избраната Ð¼ÐµÐ´Ð¸Ñ ÐºÑŠÐ¼ Ñлужбата. MediaPlugin.MediaClipSelector Select Media Clip Избор на медиен клип Source Източник Media path: Път към медиÑта: Select drive from list Избор диÑк от ÑпиÑъка Load disc Зареждане на диÑк Track Details Title: Заглавие: Audio track: Subtitle track: HH:mm:ss.z Clip Range Обхват на клипа Start point: Ðачална точка Set start point УÑтановÑване на начална точка Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Избери ÐœÐµÐ´Ð¸Ñ You must select a media file to delete. ТрÑбва да изберете медиен файл за да го изтриете. You must select a media file to replace the background with. ТрÑбва да изберете медиен файл Ñ ÐºÐ¾Ð¹Ñ‚Ð¾ да замените фона. There was a problem replacing your background, the media file "%s" no longer exists. Имаше проблем при замеÑтването на фона,Ð¼ÐµÐ´Ð¸Ð¹Ð½Ð¸Ñ Ñ„Ð°Ð¹Ð» "%s" вече не ÑъщеÑтвува. Missing Media File ЛипÑващ медиен файл. The file %s no longer exists. Файлът %s вече не ÑъщеÑтвува. Videos (%s);;Audio (%s);;%s (*) Видео (%s);;Ðудио (%s);;%s (*) There was no display item to amend. ÐÑма какво да Ñе коригира. Unsupported File Ðеподдържан файл Use Player: Използвай Плейър. VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden Позволи Ð¼ÐµÐ´Ð¸Ñ Ð¿Ð»ÐµÑŠÑ€Ð° да бъде преÑкочен Start Live items automatically Ðвтоматично Ñтартиране на Ðа живо елементите OPenLP.MainWindow &Projector Manager OpenLP Image Files Файлове Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Формата на БиблиÑта Ñе промени. ТрÑбва да надградите ÑъщеÑтвуващите Библии. Да ги надгради ли OpenLP Ñега? Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits ЗаÑлуги License Лиценз build %s издание %s 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; version 2 of the License. Тази програма е Ñвободно приложение, можете да да Ñ Ñ€Ð°Ð·Ð¿Ñ€Ð¾ÑтранÑвате и/или да внаÑÑте промени в Ð½ÐµÑ Ñпазвайки уÑловиÑта на ГÐУ Общ Публичен Лиценз, както е публикуван от Ð¤Ð¾Ð½Ð´Ð°Ñ†Ð¸Ñ Ð¡Ð²Ð¾Ð±Ð¾Ð´ÐµÐ½ Софтуер; верÑÐ¸Ñ 2 на Лиценза. 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 below for more details. Тази програма Ñе разпроÑтранÑва Ñ Ð½Ð°Ð´ÐµÐ¶Ð´Ð°Ñ‚Ð°, че ще бъде полезна, но за това не Ñе дава никаква гаранциÑ; без дори коÑвена Ð³Ð°Ñ€Ð°Ð½Ñ†Ð¸Ñ ÐºÐ°Ñ‚Ð¾ ПРОДУКТ ГОДЕРЗРПРОДÐЖБРили ВЪВ ВЪЗМОЖÐОСТ ДРСЛУЖИ ЗРОПРЕДЕЛЕÐРЦЕЛ. За повече информациÑ, погледнете по-долу. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Ñвободен Ñофтуер Ñ Ð¾Ñ‚Ð²Ð¾Ñ€ÐµÐ½ код за църковни презентации или презентации на текÑÑ‚, който Ñе използва за прожектиране на Ñлайдове Ñ Ð¿ÐµÑни, библейÑки Ñтихове, видео, картини и дори презентации (ако е инÑталиран Impress, PowerPoint или PowerPoint Viewer) за църковно поклонение Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€ и проектор. Разберете повече за OpenLP на: http://openlp.org/ OpenLP Ñе програмира и разработва от доброволци. Ðко иÑкате да разберете повече за програмиране на Ñвободен хриÑтиÑнÑки Ñофтуер, Ð¼Ð¾Ð»Ñ Ð¾Ð±Ð¼Ð¸Ñлете вашето доброволчеÑтво като ползвате бутона по-долу. Volunteer Доброволец Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings ÐаÑтройки на потребителÑÐºÐ¸Ñ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ. Number of recent files to display: Брой на Ñкорошно показваните файлове: Remember active media manager tab on startup Запомни раздела за Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¸Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ» на задачи, при Ñтартиране. Double-click to send items straight to live Двойно щракване за директно изпращане на обекта към Екрана. Expand new service items on creation РазширÑване на новите обекти при Ñъздаването им. Enable application exit confirmation Включва потвърждение при Ñпиране на приложението. Mouse Cursor Показалец на Мишката Hide mouse cursor when over display window Скрий показалеца на мишката когато е върху прозореца за показване. Default Image Изображение за показване по подразбиране. Background color: ЦвÑÑ‚ за фон: Image file: Файл на изображение: Open File Отвори файл Advanced Допълнителни Preview items when clicked in Media Manager Предварителен преглед на обектите когато за избрани в ÐœÐµÐ´Ð¸Ð¹Ð½Ð¸Ñ Ð£Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ». Browse for an image file to display. Прегледай за избор на файл на изображение за показване. Revert to the default OpenLP logo. Възвърни OpenLP логото което е по подразбиране Default Service Name Име на Ñлужбата по подразбиране Enable default service name Ðктивирай име на Ñлужбата по подразбиране Date and Time: Дата и чаÑ: Monday Понеделник Tuesday Вторник Wednesday СрÑда Friday Петък Saturday Събота Sunday ÐÐµÐ´ÐµÐ»Ñ Now Сега Time when usual service starts. Кога на започване на Ñлужбата по принцип. Name: Име Consult the OpenLP manual for usage. За ползване Ñе конÑултирайте Ñ ÑƒÐ¿ÑŠÑ‚Ð²Ð°Ð½ÐµÑ‚Ð¾ на OpenLP Revert to the default service name "%s". Върни към име на Ñлужбата по подразбиране "%s". Example: Пример: Bypass X11 Window Manager ЗаобикалÑне на X11 Window Manager Syntax error. Синтактична грешка Data Location МÑÑто на данните Current path: Сегашен път: Custom path: ПотребителÑки път: Browse for new data file location. РазлиÑти за ново мÑÑто на файла Ñ Ð´Ð°Ð½Ð½Ð¸. Set the data location to the default. Ðаправи мÑÑтото на данните по подразбиране. Cancel Откажи Cancel OpenLP data directory location change. Откажи промÑната на директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP. Copy data to new location. Копирай данните на ново мÑÑто. Copy the OpenLP data files to the new location. Копирай файловете Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLPна ново мÑÑто. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ПРЕДУПРЕЖДЕÐИЕ:</strong> Ðовата Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñъдържа файлове Ñ Ð´Ð°Ð½Ð½Ð¸ OpenLP. Ще бъдат измеÑтени при копирането. Data Directory Error Грешка Ñ Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñта Ñ Ð´Ð°Ð½Ð½Ð¸ Select Data Directory Location Избери мÑÑто на директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ Confirm Data Directory Change Потвърди промÑната на директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ Reset Data Directory Върни наÑтройките за директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ Overwrite Existing Data Презапиши върху наличните данни OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. ДиректориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP не беше открита %s Тази Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ Ð´Ð°Ð½Ð½Ð¸ е променена и не е директориÑта по подразбиране. Ðко новото мÑÑто е било на преноÑим диÑк, той трÑбва да бъде включен отново.. Кликни "No" за да Ñе Ñпре зареждането на OpenLP. и да може да Ñе оправи проблема. Кликни "Yes" за да Ñе върнат наÑтройките по подразбиране за директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. ÐаиÑтина ли да Ñе Ñмени мÑÑтото на директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP на: %s ДиректориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ ще бъде Ñменена, когато OpenLP Ñе затвори. Thursday Четвъртък Display Workarounds Покажи Ñ€ÐµÑˆÐµÐ½Ð¸Ñ Use alternating row colours in lists Използвай редуващи Ñе цветове на редовете от ÑпиÑъците WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? ПРЕДУПРЕЖДЕÐИЕ: Избраното мÑÑто %s Ñъдържа файлове Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP. Да бъдат ли замеÑтени Ñ Ñ‚ÐµÐ·Ð¸ файлове Ñ Ð´Ð°Ð½Ð½Ð¸? Restart Required ИзиÑква Ñе реÑтартиране This change will only take effect once OpenLP has been restarted. Ефект от промÑната ще има Ñамо Ñлед реÑтартиране на OpenLP. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. ÐаиÑтина ли да бъде Ñменена директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP Ñ Ñ‚Ð°Ð·Ð¸ по подразбиране? Това ще е мÑÑтото, което ще Ñе ползва Ñлед затварÑнето на OpenLP. OpenLP.ColorButton Click to select a color. Щракни за да избереш цвÑÑ‚. OpenLP.DB RGB Video Видео Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred ÐаÑтъпи Грешка Send E-Mail Изпрати E-Mail. Save to File Запази във файл Attach File Прикачи файл Description characters to enter : %s Брой букви за обÑÑнение : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Платформа: %s⎠Save Crash Report Запази доклад на забиването Text files (*.txt *.log *.text) ТекÑтови файлове (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Преименувай файл New File Name: Име на нов файл File Copy Копирай файл OpenLP.FirstTimeLanguageForm Select Translation Избери превод Choose the translation you'd like to use in OpenLP. Избери превод на OpenLP. Translation: Превод: OpenLP.FirstTimeWizard Songs ПеÑни First Time Wizard Първоначален помощник Welcome to the First Time Wizard ЗаповÑдайте в Ð¿ÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº! Activate required Plugins Ðктивирай необходимите добавки Select the Plugins you wish to use. Избери добавките, които да бъдат ползвани. Bible Ð‘Ð¸Ð±Ð»Ð¸Ñ Images Картини Presentations Презентации Media (Audio and Video) МедиÑ(Ðудио и Видео) Allow remote access Позволи диÑтанционен доÑтъп Monitor Song Usage Следи ползването на пеÑни Allow Alerts Позволи Ðларми Default Settings Първоначални наÑтройки Downloading %s... СвалÑне %s... Enabling selected plugins... ПуÑкане на избраните добавки... No Internet Connection ÐÑма интернет връзка Unable to detect an Internet connection. ÐÑма намерена интернет връзка Sample Songs ПеÑни за модел Select and download public domain songs. Избери и Ñвали пеÑни от публичен домейн Sample Bibles Библии като модел Select and download free Bibles. Избери и Ñвали Ñвободни за ÑвалÑне Библии. Sample Themes Теми за модел Select and download sample themes. Избери и Ñвали модели на теми Set up default settings to be used by OpenLP. Задай първоначалните наÑтройки на OpenLP. Default output display: ДиÑплей по подразбиране Select default theme: Избери тема по подразбиране Starting configuration process... Стартиране на конфигурационен процеÑ... Setting Up And Downloading ÐаÑтройване и СвалÑне Please wait while OpenLP is set up and your data is downloaded. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹ докато OpenLP Ñе наÑтрои и Ñвали нужните данни! Setting Up ÐаÑтройване Custom Slides ПотребителÑки Ñлайдове Finish Край No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ðе е намерена Интернет връзка. ПървоначалниÑÑ‚ помощник Ñе нуждае от интернет връзка за да може да изтегли примерни пеÑни, библии и теми. Кликни бутона за край за да Ñтартираш OpenLP наÑтроена, но без примерни данни.⎠⎠За да Ñтартираш отново Ð¿ÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº и да импортираш примерните данни провери интернет връзката и избери "ИнÑтрументи/Стартирай пак Ð¿ÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ð¸Ðº" от менюто на програмата. Download Error Грешка при ÑвалÑне There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel Откажи Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Конфигурирай отметките за форматиране Description ОпиÑание Tag Отметка Start HTML Ðачало на HTML End HTML Край на HTML Default Formatting Форматиране по подразбиране Custom Formatting ПотребителÑко форматиране OpenLP.FormattingTagForm <HTML here> <HTML тук> Validation Error Грешка при утвърждаване. Description is missing ЛипÑва опиÑание Tag is missing Отметката липÑва Tag %s already defined. Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Червено Black Черно Blue Синьо Yellow Жълто Green Зелено Pink Розово Orange Оранжево Purple Лилаво White БÑло Superscript Горен Ð¸Ð½Ð´ÐµÐºÑ Subscript Долен Ð¸Ð½Ð´ÐµÐºÑ Paragraph Параграф Bold Удебелен Italics Ðаклонен Underline Подчертан Break Ðов ред OpenLP.GeneralTab General Главен Monitors Монитори Select monitor for output display: Избери монитор за външно пуÑкане Display if a single screen Покажи ако е единичен екран Application Startup Стартиране на програма Show blank screen warning Покажи предупреждение черен екран Automatically open the last service Ðвтоматично отвори поÑледната Ñлужба Show the splash screen Покажи начално лого Application Settings ÐаÑтройки на програмата Prompt to save before starting a new service ÐапомнÑне да запазиш преди Ñтартиране на нова Ñлужба Automatically preview next item in service Ðвтоматичен преглед на Ñледваща точка в Ñлужбата sec Ñек. CCLI Details CCLI детайли SongSelect username: ПротребителÑко име за SongSelect SongSelect password: Парола за SongSelect X X Y Y Height ВиÑочина Width Широчина Check for updates to OpenLP Провери за актуализации за OpenLP Unblank display when adding new live item Махни черен екран при добавÑне на нов Ñлайд за прожектиране Timed slide interval: Интервал за Ñрок на Ñлайд: Background Audio Фохово аудио Start background audio paused Стартирай фоновото аудио на пауза Service Item Slide Limits ÐžÐ³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ Ð½Ð° Ñлайд Ñ Ð¾Ð±ÐµÐºÑ‚Ð¸ на Ñлужбата Override display position: ПреÑкочи позициÑта на диÑÐ¿Ð»ÐµÑ Repeat track list Повтори ÑпиÑъка Ñ Ð¿Ð°Ñ€Ñ‡ÐµÑ‚Ð° Behavior of next/previous on the last/first slide: Поведение на Ñледващ/предишен на поÑледен/първи Ñлайд: &Remain on Slide ОÑтани на Ñлайда &Wrap around Свий в рамка &Move to next/previous service item Иди на Ñледващ/предишен обект на Ñлужбата OpenLP.LanguageManager Language Език Please restart OpenLP to use your new language setting. ÐœÐ¾Ð»Ñ Ñ€ÐµÑтартирай OpenLP за ползване на новите езикови наÑтройки OpenLP.MainDisplay OpenLP Display ДиÑплей за OpenLP OpenLP.MainWindow &File &Файл &Import &Импортиране &Export &ЕкÑпортиране &View &Изглед M&ode &Вид &Tools Ин&Ñтрументи &Settings &ÐаÑтройки &Language Е&зик &Help &Помощ Service Manager Управление на Ñлужба Theme Manager Управление на теми Open an existing service. Отвори налична Ñлужба Save the current service to disk. Запази наÑтоÑщата Ñлужба на диÑк Save Service As Запази Ñлужбата като Save the current service under a new name. Запази наÑтоÑщата Ñлужба под друго име E&xit Из&ход Quit OpenLP Изключи OpenLP &Theme Т&ема &Configure OpenLP... &Конфигурирай OpenLP... &Media Manager &Управление на Ð¼ÐµÐ´Ð¸Ñ Toggle Media Manager Закачи управление на проекти Toggle the visibility of the media manager. Закачи показването на управлението на Ð¼ÐµÐ´Ð¸Ñ &Theme Manager &Управление на теми Toggle Theme Manager Закачи управление на теми Toggle the visibility of the theme manager. Закачи показването на управлението на теми &Service Manager &Управление на Ñлужба Toggle Service Manager Закачи управление на Ñлужба Toggle the visibility of the service manager. Закачи показването на управлението на Ñлужба &Preview Panel Панел за преглед Toggle Preview Panel Закачи панела за преглед Toggle the visibility of the preview panel. Закачи показването на панел за преглед &Live Panel Панел Прожектиране Toggle Live Panel Закачи панел Прожектиране Toggle the visibility of the live panel. Закачи показването на управлението на панела Прожектиране List the Plugins РазлиÑти добавките &User Guide Справо&чник на Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ &About &ОтноÑно More information about OpenLP Повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° OpenLP &Online Help &Помощ онлайн &Web Site &Уеб Ñтраница Use the system language, if available. Ползвай ÑиÑÑ‚ÐµÐ¼Ð½Ð¸Ñ ÐµÐ·Ð¸Ðº по възможноÑÑ‚ Set the interface language to %s Задай езика на програмата на %s Add &Tool... Добави &инÑтрумент... Add an application to the list of tools. Добави програма към лиÑта Ñ Ð¸Ð½Ñтрументи &Default &По подразбиране Set the view mode back to the default. Задай вида изглед на програмата по подразбиране &Setup &ÐаÑтройки Set the view mode to Setup. Задай вид изглед на наÑтройване &Live ÐŸÑ€Ð¾Ð¶ÐµÐºÑ†Ð¸Ñ Set the view mode to Live. Задай вид изглед Прожектиране Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Има верÑÐ¸Ñ %s на OpenLP за ÑвалÑне (вие ползвате %s верÑÐ¸Ñ Ð² момента). ⎠⎠Можете да изтеглите поÑледната верÑÐ¸Ñ Ð¾Ñ‚ http://openlp.org/. OpenLP Version Updated Ðктуализирана е верÑиÑта на OpenLP OpenLP Main Display Blanked ОÑÐ½Ð¾Ð²Ð½Ð¸Ñ Ð´Ð¸Ñплей на OpenLP е затъмнен The Main Display has been blanked out Махнато е затъмнението на оÑÐ½Ð¾Ð²Ð½Ð¸Ñ Ð´Ð¸Ñплей Default Theme: %s Тема по подразбиране: %s English Please add the name of your language here ÐнглийÑки Configure &Shortcuts... ÐаÑтрой &Преки пътища Open &Data Folder... Отвори &Папка Ñ Ð´Ð°Ð½Ð½Ð¸ Open the folder where songs, bibles and other data resides. Отвори папката Ñъдържаща пеÑни, библии и други данни. &Autodetect &Ðвтоматично откриване Update Theme Images Ðктуализирай картините на темата Update the preview images for all themes. Ðктуализирай прегледа за вÑички теми. Print the current service. Принтирай избраната Ñлужба L&ock Panels За&ключи панелите Prevent the panels being moved. Предпази панелите от меÑтене. Re-run First Time Wizard Стартирай пак ÐŸÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº Re-run the First Time Wizard, importing songs, Bibles and themes. Стартирай пак ÐŸÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¸Ñ€Ð°Ð½Ðµ на пеÑни, библии теми Re-run First Time Wizard? Да Ñе Ñтартира пак ÐŸÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. ÐаиÑтина ли да Ñе Ñтартира ÐŸÑŠÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº?⎠⎠Повторното Ñтартиране ще промени Ñегашните наÑтройки на OpenLP както и да промени темата по подразбиране и да добави пеÑни към ÑпиÑъка Ñ Ð¿ÐµÑни. Clear List Clear List of recent files ИзчиÑти ÑпиÑъка Clear the list of recent files. ИзчиÑти ÑпиÑъка на поÑледно отварÑните файлове. Configure &Formatting Tags... Конфигурирай отметките за &форматиране Export OpenLP settings to a specified *.config file ЕкÑпортирай наÑтройките на OpenLP в указан *.config файл Settings ÐаÑтройки Import OpenLP settings from a specified *.config file previously exported on this or another machine ЕкÑпортирай наÑтройките на OpenLP в указан *.config файл предишно екÑпортиран на този или друг компютър Import settings? Да Ñе импортират ли наÑтройките? Open File Отвори файл OpenLP Export Settings Files (*.conf) Фалове Ñ ÐµÐºÑпортирани наÑтройки на OpenLP (*.conf) Import settings Импортирай наÑтройки OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP Ñега ще Ñе изключи. Импортираните наÑтройки ще Ñе приложат при Ñледващо Ñтартиране на OpenLP. Export Settings File ЕкÑпортирай файла Ñ Ð½Ð°Ñтройки OpenLP Export Settings File (*.conf) Файйл Ñ Ð½Ð°Ñтройки за екÑпотриране(*.conf) на OpenLP New Data Directory Error Грешка Ñ Ð½Ð¾Ð²Ð°Ñ‚Ð° Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ Ð´Ð°Ð½Ð½Ð¸ Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kопират Ñе данните на OpenLP на новото мÑÑто - %s - ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ копирането да завърши. OpenLP Data directory copy failed %s Копирането на директориÑта Ñ Ð´Ð°Ð½Ð½Ð¸ на OpenLP Ñе провали %s General Главен Library Библиотека Jump to the search box of the current active plugin. Иди към кутиÑта за търÑене на текущата активна добавка. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. ÐаиÑтина ли да Ñе импортират наÑтройките? Това ще направи поÑтоÑнни промени в конфигурациÑта на OpenLP. Импортирането на неправилни наÑтройки може да предизвика некоректно поведение на програмата или неочакваното и Ñпиране. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Файлът, когото Ñте избрали Ñвно е невалиден файл Ñ Ð½Ð°Ñтройки на OpenLP. ПроцеÑÑŠÑ‚ е ÑпрÑн и не Ñа направени никакви промени. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error Грешка в базата данни The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Зададената база данни е Ñъздадена от по ранна верÑÐ¸Ñ Ð½Ð° OpenLP. ВерÑиÑта на базата данни е %d, а Ñе очаква верÑÐ¸Ñ %d. Базата данни нÑма да Ñе зареди.⎠⎠База данни: %s OpenLP cannot load your database. Database: %s OpenLP не може да зареди вашата база данни.⎠⎠База данни: %s OpenLP.MediaManagerItem No Items Selected Ðе Ñа избрани обекти &Add to selected Service Item Добави Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ за Ñлужба You must select one or more items to preview. ТрÑбва да избереш един или повече обекти за преглед. You must select one or more items to send live. ТрÑбва да избереш един или повече обекти за прожектиране. You must select one or more items. ТрÑбва да избереш един или повече обекти. You must select an existing service item to add to. ТрÑбва да избереш един или повече налични обекти на Ñлужбата за добавÑне. Invalid Service Item Ðевалиден обект за Ñлужба You must select a %s service item. ТрÑбва да избереш %s обект. You must select one or more items to add. ТрÑбва да избереш един или повече обекти за добавÑне. No Search Results ÐÑма намерени резултати Invalid File Type Ðевалиден тип файл Invalid File %s. Suffix not supported Ðевалиден файл %s.⎠Ðеподдържан ÑÑƒÑ„Ð¸ÐºÑ &Clone &Клонирай Duplicate files were found on import and were ignored. ПовтарÑщи Ñе файлове бÑха намерени при импортирането и бÑха игнорирани. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Отметката <текÑÑ‚> липÑва. <verse> tag is missing. Отметката <куплет> липÑва. OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Плеъри Available Media Players Ðалични медийни програми. Player Search Order Ред на търÑене на плеърите Visible background for videos with aspect ratio different to screen. Видим фон за видео Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€ различен от екрана. %s (unavailable) %s (неналични) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details Детайли на добавката Status: СтатуÑ: Active Ðктивна Inactive Ðеактивна %s (Inactive) %s (Ðеактивна) %s (Active) %s (Ðктивна) %s (Disabled) %s (Изключена) Manage Plugins OpenLP.PrintServiceDialog Fit Page Запълни Ñтраницата Fit Width Запълни ширината на лиÑта OpenLP.PrintServiceForm Options Опции Copy Копирай Copy as HTML Копирай като HTML Zoom In Приближи Zoom Out Отдалечи Zoom Original Първоначално Other Options Други опции Include slide text if available Включи и текÑта на Ñлайда Include service item notes Включи и бележки за Ñлужбата Include play length of media items Включи и времетраене на медиÑта Add page break before each text item Добави нов ред преди вÑеки отделен текÑÑ‚ Service Sheet ЛиÑтовка на Ñжужбата Print Принтиране Title: Заглавие: Custom Footer Text: ТекÑÑ‚ за долен колонтитул OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes Бележки Database Error Грешка в базата данни There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port Порт Notes Бележки Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other Друго OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen Екран primary Първи OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Старт</strong>: %s <strong>Length</strong>: %s <strong>Дължина</strong>: %s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Пренареди обекта на Ñлужбата OpenLP.ServiceManager Move to &top ПремеÑти най-отгоре Move item to the top of the service. ПремеÑти обект най-отгоре на Ñлужбата Move &up ПремеÑти нагоре Move item up one position in the service. ПремеÑти обекта една Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ñ Ð½Ð°Ð³Ð¾Ñ€Ðµ. Move &down ПремеÑти надолу Move item down one position in the service. ПремеÑти обекта една Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ñ Ð½Ð°Ð´Ð¾Ð»Ñƒ. Move to &bottom ПремеÑти най-отдолу Move item to the end of the service. ПремеÑти обекта Ð½Ð°ÐºÑ€Ð°Ñ Ð½Ð° Ñлужбата. &Delete From Service Изтрий от Ñлужбата Delete the selected item from the service. Изтрий Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ от Ñлужбата. &Add New Item Добави Ðов обект &Add to Selected Item Собави към Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ &Edit Item Редактирай обекта &Reorder Item Пренареди обекта &Notes Бележки &Change Item Theme Смени темата на обекта File is not a valid service. Файлът не е валидна Ñлужба. Missing Display Handler ЛипÑващa процедура за диÑÐ¿Ð»ÐµÑ Your item cannot be displayed as there is no handler to display it Обекта ви не може да Ñе покаже понеже нÑма процедура за това. Your item cannot be displayed as the plugin required to display it is missing or inactive Обекта ви не може да бъде показан понеже добавката коÑто Ñе занимава Ñ Ñ‚Ð¾Ð²Ð° не е активирана или липÑва. &Expand all Разгъни вÑички Expand all the service items. Разгъни вÑички обекти в Ñлужбата &Collapse all Събери вÑички Collapse all the service items. Събери вÑички обекти в Ñлужбата Open File Отвори файл Moves the selection down the window. ПремеÑти ÑелекциÑта надолу в прозореца Move up ПремеÑти нагоре Moves the selection up the window. ПремеÑти ÑелекциÑта нагоре в прозореца Go Live Прожектирай Send the selected item to Live. Изпрати Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ за прожектиране &Start Time Стартово време Show &Preview Покажи преглед Modified Service Променена Ñлужба The current service has been modified. Would you like to save this service? Тази Ñлужба беше променена. Да бъде ли запазена? Custom Service Notes: ПотребителÑки бележки за Ñлужбата: Notes: Бележки: Playing time: ПродължителноÑÑ‚: Untitled Service Ðеозаглавена Ñлужба File could not be opened because it is corrupt. Файлът е повреден и не може да бъде отворен. Empty File Празен файл. This service file does not contain any data. Ð’ този файл за Ñлужба нÑма никакви данни. Corrupt File Повреден файл Load an existing service. Зареди налична Ñлужба. Save this service. Запази тази Ñлужба Select a theme for the service. Избери тема за Ñлужбата. Slide theme Тена на Ñлайда Notes Бележки Edit Редактирай Service copy only Само копие на Ñлужбата Error Saving File Грешка при запазването на файла There was an error saving your file. Стана грешка при запазването на файла Service File(s) Missing Файл (файлове) от Ñлужбата липÑват &Rename... &Преименувай... Create New &Custom Slide Създай нов &ПотребителÑки Ñлайд &Auto play slides Ðвтоматично пуÑкане на Ñлайдове Auto play slides &Loop Ðвтоматично пуÑкане на Ñлайдове &Превъртане Auto play slides &Once Ðвтоматично пуÑкане на Ñлайдове &Веднъж &Delay between slides &Zabawqne mevdu slajdowete OpenLP Service Files (*.osz *.oszl) Файлове за Ñлужба на OpenLP (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) Файлове за Ñлужба на OpenLP (*.osz);; Файлове за Ñлужба на OpenLP - олекотени (*.oszl) OpenLP Service Files (*.osz);; Файлове за Ñлужба на OpenLP (*.osz);; File is not a valid service. The content encoding is not UTF-8. Файлът не е валидна Ñлужба. Кодирането на текÑта не е UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Файлът за Ñлужба, който иÑкате да отворите в Ñтар формат. ÐœÐ¾Ð»Ñ Ð·Ð°Ð¿Ð°Ð·ÐµÑ‚Ðµ го като ползвте OpenLP 2.0.2 или по нов. This file is either corrupt or it is not an OpenLP 2 service file. Този файл е повреден или не е OpenLP 2 файл за Ñлужба. &Auto Start - inactive &Ðвтоматичен Ñтарт - неактивен &Auto Start - active &Ðвтоматичен Ñтарт - активен Input delay Вмъкни забавÑне Delay between slides in seconds. ЗабавÑне между Ñлайдовете в Ñекунди. Rename item title Преименувай заглавието Title: Заглавие: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Бележки на обекта на Ñлужбата OpenLP.SettingsForm Configure OpenLP Конфигурирай OpenLP OpenLP.ShortcutListDialog Action ДейÑтвие Shortcut ПрÑк път Duplicate Shortcut Повторение на прÑк път The shortcut "%s" is already assigned to another action, please use a different shortcut. ПрекиÑÑ‚ път "%s" е вече Ñвързан Ñ Ð´Ñ€ÑƒÐ³Ð¾ дейÑтвие. ÐœÐ¾Ð»Ñ Ð¿Ð¾Ð»Ð·Ð²Ð°Ð¹Ñ‚Ðµ друг прÑк път! Alternate Ðлтернативен Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Избери дейÑтвие и кликни на един от бутоните по-долу за да започне прихващане на нов или алтернативен прÑк път. Default По подразбиране Custom ПотребителÑки Capture shortcut. Прихвани прÑк път. Restore the default shortcut of this action. ВъзÑтанови Ð¿Ñ€ÐµÐºÐ¸Ñ Ð¿ÑŠÑ‚ по подразбиране за това дейÑтвие. Restore Default Shortcuts ВъзÑтанови преките пътища по подразбиране Do you want to restore all shortcuts to their defaults? ÐаиÑтина ли да възÑтанови вÑички преки пътища по подразбиране Configure Shortcuts Конфигурирай преките пътища OpenLP.SlideController Hide Скрии Go To Иди на Blank Screen Празен екран Blank to Theme Празен Ñ Ñ‚ÐµÐ¼Ð° Show Desktop Покажи ДеÑктопа Previous Service Предишна Ñлужба Next Service Следваща Ñлужба Escape Item Избегни обект Move to previous. Иди на предишен Move to next. Иди на Ñледващ Play Slides ПуÑни Ñлайдовете Delay between slides in seconds. ЗабавÑне между Ñлайдовете в Ñекунди. Move to live. Прожектирай Add to Service. Добави към Ñлужбата. Edit and reload song preview. Редактирай и презареди прегледа на пеÑента. Start playing media. ПуÑни медиÑ. Pause audio. Пауза Pause playing media. Сложи на пауза Stop playing media. Спри медиÑта Video position. ÐŸÐ¾Ð·Ð¸Ñ†Ð¸Ñ Ð½Ð° видеото Audio Volume. Сила на звука Go to "Verse" Иди на "куплет" Go to "Chorus" Иди на "припев" Go to "Bridge" Иди на "бридж" Go to "Pre-Chorus" Иди на "пред припев" Go to "Intro" Иди на "интро" Go to "Ending" Иди на "завършек" Go to "Other" Иди на "друго" Previous Slide Предишен Ñлайд Next Slide Следващ Ñлайд Pause Audio Ðудио на пауза Background Audio Фохово аудио Go to next audio track. Иди на Ñледващото парче Tracks Парчета OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions ÐŸÑ€ÐµÐ´Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð·Ð° Ð¿Ñ€Ð°Ð²Ð¾Ð¿Ð¸Ñ Formatting Tags Отметки за форматиране Language: Език: OpenLP.StartTimeForm Theme Layout Оформление на тема The blue box shows the main area. СинÑта рамка показва оÑновната облаÑÑ‚ The red box shows the footer. Червената рамка показва Ð´Ð¾Ð»Ð½Ð¸Ñ ÐºÐ¾Ð»Ð¾Ð½Ñ‚Ð¸Ñ‚ÑƒÐ» OpenLP.StartTime_form Item Start and Finish Time Време на Ñтарт и край на обект Hours: ЧаÑове: Minutes: Минути: Seconds: Секунди: Start Старт Finish Край Length ПродължителноÑÑ‚ Time Validation Error Грешка при потвърждение на времето Finish time is set after the end of the media item Времето за край е зададено Ñлед ÐºÑ€Ð°Ñ Ð½Ð° Ð¼ÐµÐ´Ð¸Ð¹Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ Start time is after the finish time of the media item Времето за Ñтарт е зададено Ñлед ÐºÑ€Ð°Ñ Ð½Ð° Ð¼ÐµÐ´Ð¸Ð¹Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚ OpenLP.ThemeForm (approximately %d lines per slide) (приблизително %d реда на Ñлайд) OpenLP.ThemeManager Create a new theme. Създай нова тема Edit Theme Редактирай темата Edit a theme. Редактирай темата Delete Theme Изтрий темата Delete a theme. Изтрий темата Import Theme Импортирай тема Import a theme. Импортирай тема Export Theme ЕкÑпортирай темата Export a theme. ЕкÑпортирай темата &Edit Theme Редактирай темата &Delete Theme Изтрии темата Set As &Global Default Задай като глобално по подразбиране %s (default) %s (по подразбиране) You must select a theme to edit. ТрÑбва темата да бъде избрана за да Ñе редактира. You are unable to delete the default theme. Темата по подразбиране не може да бъде изтрита. You have not selected a theme. Ðе е избрана тема. Save Theme - (%s) Запази темата - (%s) Theme Exported Темата е екÑпортирана Your theme has been successfully exported. Темата е уÑпешно екÑпортирана Theme Export Failed ЕкÑпортирането на темата Ñе провали. Select Theme Import File Избери файл за импортиране на тема File is not a valid theme. Файлът не е валидна тема. &Copy Theme Копирай темата &Rename Theme Преименувай темата &Export Theme ЕкÑпортирай темата You must select a theme to rename. Темата трÑбва да е избрана за да Ñе преименува. Rename Confirmation Порвръждение на преименуването Rename %s theme? Да Ñе преименува ли темата %s? You must select a theme to delete. Темата трÑбва да е избрана за да Ñе изтрие. Delete Confirmation Порвръждение на изтриването Delete %s theme? Да Ñе изтрие ли темата %s? Validation Error Грешка при утвърждаване. A theme with this name already exists. Тема Ñ Ñ‚Ð¾Ð²Ð° име вече ÑъщеÑтвува. Copy of %s Copy of <theme name> Копие на %s Theme Already Exists Вече има такава тема Theme %s already exists. Do you want to replace it? Темата %s вече е налична. Да бъде ли измеÑтена? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Съветника за Теми. Welcome to the Theme Wizard Добре дошли в Ñъветника за Теми. Set Up Background ÐаÑтройка на фона Set up your theme's background according to the parameters below. ÐаÑтройте фон за темата Ñпоред параметрите по долу. Background type: Тип на фона: Gradient Преливащ Gradient: Преливащ: Horizontal Хоризонтално Vertical Вертикално Circular Кръгово Top Left - Bottom Right ЛÑво Горе - ДÑÑно Долу. Bottom Left - Top Right ЛÑво Долу - ДÑÑно Горе Main Area Font Details ПодробноÑти за Шрифт на оÑновната облаÑÑ‚ Define the font and display characteristics for the Display text Определете шрифта и характериÑтиките за показване на ТекÑта Font: Шрифт: Size: Размер Line Spacing: РазÑтоÑние на междуредието &Outline: Очертание &Shadow: СÑнка Bold Удебелен Italic Ðаклонен Footer Area Font Details Детайли на шрифта на колонтитула Define the font and display characteristics for the Footer text ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтиките на шрифта и диÑÐ¿Ð»ÐµÑ Ð½Ð° колонтитула Text Formatting Details Детайли на форматирането на текÑта Allows additional display formatting information to be defined ПозволÑва да бъде определена допълнителна Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° форматирането на диÑÐ¿Ð»ÐµÑ Horizontal Align: Хоризонтално подравнÑване: Left ЛÑво Right ДÑÑно Center Център Output Area Locations ОблаÑÑ‚ на показване &Main Area ОÑновна облаÑÑ‚ &Use default location Ползвай позициÑта по подразбиране X position: Ð¥ позициÑ: px px Y position: Y позициÑ: Width: Ширина: Height: ВиÑочина: Use default location Ползвай мÑÑтото по подразбиране Theme name: Име на темата: Edit Theme - %s Редактирай тема - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. С този помощник ще можете да Ñъздавате и редактирате вашите теми. Кликнете на бутона "Ñледващ" Transitions: Преходи: &Footer Area ОблаÑÑ‚ на колонтитула Starting color: Започващ цвÑÑ‚: Ending color: Завършващ цвÑÑ‚: Background color: ЦвÑÑ‚ за фон: Justify ДвуÑтранно Layout Preview Преглед на оформлението Transparent Прозрачен Preview and Save Преглед и запомнÑне Preview the theme and save it. Преглед на темата и запомнÑнето и. Background Image Empty Празен фон Select Image Избери картина Theme Name Missing ЛипÑва име на темата There is no name for this theme. Please enter one. Тази тема нÑма име. ÐœÐ¾Ð»Ñ Ð²ÑŠÐ²ÐµÐ´ÐµÑ‚Ðµ го. Theme Name Invalid Името на темата е невалидно. Invalid theme name. Please enter one. Ðевалидно име на темата. ÐœÐ¾Ð»Ñ Ð²ÑŠÐ²ÐµÐ´ÐµÑ‚Ðµ друго. Solid color Плътен цвÑÑ‚ color: цвÑÑ‚: Allows you to change and move the Main and Footer areas. ПозволÑва да Ñе променÑÑ‚ и меÑÑ‚ÑÑ‚ ОÑновната облаÑÑ‚ и тази на Колонтитула. You have not selected a background image. Please select one before continuing. Ðе е указана картина за фон. ÐœÐ¾Ð»Ñ Ð¸Ð·Ð±ÐµÑ€ÐµÑ‚Ðµ една преди да продължите! OpenLP.ThemesTab Global Theme Глобална тема Theme Level Ðиво тема S&ong Level Ðиво пеÑен Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Ползва Ñе темата на вÑÑка пеÑен запиÑана в базата данни. Ðко пеÑента не е аÑоциирана Ñ Ñ‚ÐµÐ¼Ð° Ñе ползва темата на Ñлужбата. Ðко и Ñлужбата нÑма зададена тема тогава Ñе ползва глобалната. &Service Level Ðиво Ñлужба Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Ползва Ñе темата на Ñлужбата като Ñе игнорират темите на отделните пеÑни. Ðко Ñлужбата нÑма тема Ñе ползва глобалната. &Global Level Глобално ниво Use the global theme, overriding any themes associated with either the service or the songs. Ползване на глобалната тема като измеÑтва вÑÑкакви теми на Ñлужби или пеÑни. Themes Теми Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. Изтрий Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚. Move selection up one position. ПремеÑти избраното една Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ñ Ð½Ð°Ð³Ð¾Ñ€Ðµ. Move selection down one position. ПремеÑти избраното една Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ñ Ð½Ð°Ð´Ð¾Ð»Ñƒ. &Vertical Align: Вертикално подравнÑване: Finished import. Завършено импортиране. Format: Формат: Importing Импортиране Importing "%s"... Импортиране "%s"... Select Import Source Избери източник за импортиране Select the import format and the location to import from. Избери формат и източник за импортиране Open %s File Отвори %s файл %p% %p% Ready. Готово. Starting import... Започване на импортирането... You need to specify at least one %s file to import from. A file type e.g. OpenSong ТрÑбва да поÑочите поне един %s файл, от който да Ñе импортира. Welcome to the Bible Import Wizard Добре дошли при помощника за импортиране на Библии Welcome to the Song Export Wizard Добре дошли при помощника за екÑпортиране на пеÑни Welcome to the Song Import Wizard Добре дошли при помощника за импортиране на пеÑни Author Singular Ðвтор Authors Plural Ðвтори © Copyright symbol. © Song Maintenance Ползване на пеÑен Topic Singular Тема Topics Plural Теми Title and/or verses not found Заглавие и/или Ñтих липÑват XML syntax error XML Ñинтактична грешка Welcome to the Bible Upgrade Wizard Добре дошъл в Съветника за обновÑване на Ð‘Ð¸Ð±Ð»Ð¸Ñ Open %s Folder Отвори папка %s You need to specify one %s file to import from. A file type e.g. OpenSong ТрÑбва да изберете файл %s, от който да импортирате You need to specify one %s folder to import from. A song format e.g. PowerSong ТрÑбва да изберете папка %s, от коÑто да импортирате Importing Songs Импортиране на пеÑни Welcome to the Duplicate Song Removal Wizard Добре дошли при помощника за премахване на дублирани пеÑни Written by ÐапиÑана от Author Unknown ÐеизвеÑтен автор About ОтноÑно &Add Добави Add group Добави група Advanced Допълнителни All Files Ð’Ñички файлове Automatic Ðвтоматично Background Color ЦвÑÑ‚ на фона Bottom Отдолу Browse... разлиÑти... Cancel Откажи CCLI number: CCLI номер: Create a new service. Създай нова Ñлужба. Confirm Delete Потвърди изтриване Continuous продължаващ Default По подразбиране Default Color: ОÑновен цвÑÑ‚ Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Служба %Y-%m-%d %H-%M &Delete &Изтрий Display style: Стил на показване: Duplicate Error Грешка Ñ Ð´ÑƒÐ±Ð»Ð¸Ñ€Ð°Ð½Ðµ &Edit &Редактирай Empty Field Празно поле Error Грешка Export ЕкÑпортирай File Файл File Not Found Ðе е намерен файла. File %s not found. Please try selecting it individually. Файла %s не е намерен. Опитайте Ñе да ги избирате един по един.. pt Abbreviated font pointsize unit Ñ‚. Help Помощ h The abbreviated unit for hours ч. Invalid Folder Selected Singular Избрана е невалидна папка Invalid File Selected Singular Избран е невалиден файл Invalid Files Selected Plural Избрани Ñа невалидни файлове Image Изображение Import Импортирай Layout style: Стил на оформление Live ÐŸÑ€Ð¾Ð¶ÐµÐºÑ†Ð¸Ñ Live Background Error Грешка в фона на ПрожекциÑта Live Toolbar Лента Ñ Ð¸Ð½Ñтрументи за Прожектиране Load Зареди Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes мин. Middle Среден New Ðов New Service Ðова Служба New Theme Ðова Тема Next Track Следващо парче No Folder Selected Singular Ðе е избрана папка No File Selected Singular Ðе е избран файл No Files Selected Plural Ðе Ñа избрани файлове No Item Selected Singular Ðе е избран Обект No Items Selected Plural Ðе Ñа избрани обекти OpenLP is already running. Do you wish to continue? OpenLP вече работи. Желаете ли да продължите? Open service. ОтварÑне на Служба. Play Slides in Loop Изпълни Ñлайдовете в Повторение Play Slides to End Изпълни Ñлайдовете до ÐºÑ€Ð°Ñ Preview Преглед Print Service Печат на Служба Projector Singular Projectors Plural Replace Background Замени фона Replace live background. Замени фона на ПрожекциÑта Reset Background Обнови фона Reset live background. Сложи първоначални наÑтройки на фона на ПрожекциÑта s The abbreviated unit for seconds Ñ Save && Preview Ð—Ð°Ð¿Ð¸Ñ Ð¸ Преглед Search ТърÑене Search Themes... Search bar place holder text ТърÑи теми... You must select an item to delete. ТрÑбва да е избран обектът за да Ñе изтрие. You must select an item to edit. ТрÑбва да е избран обектът за да Ñе редактира. Settings ÐаÑтройки Save Service Запази Ñлужбата Service Служба Optional &Split РазделÑне по избор Split a slide into two only if it does not fit on the screen as one slide. Ð Ð°Ð·Ð´ÐµÐ»Ñ Ñлайда на две в Ñлучай, че като един не Ñе Ñъбира на екрана. Start %s Старт %s Stop Play Slides in Loop Спри изпълнение при повторение Stop Play Slides to End Спри изпълнение до ÐºÑ€Ð°Ñ Theme Singular Тема Themes Plural Теми Tools ИнÑтрументи Top най-отгоре Unsupported File Ðеподдържан файл Verse Per Slide По Ñтих за Слайд Verse Per Line По Ñтих за Ð›Ð¸Ð½Ð¸Ñ Version ВерÑÐ¸Ñ View Преглед View Mode Изглед за Преглед CCLI song number: Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s и %s %s, and %s Locale list separator: end %s, и %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Добавка за презентации</strong><br /> С добавката за презентации Ñе показват презентации като Ñе ползват външни програми. Може да изберете такава програма от падащото меню. Presentation name singular ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Presentations name plural Презентации Presentations container title Презентации Load a new presentation. Зареди нова Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Delete the selected presentation. Изтрий избраната презентациÑ. Preview the selected presentation. Преглед на избраната Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Send the selected presentation live. Прожектиране на избраната презентациÑ. Add the selected presentation to the service. Добави избраната Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ ÐºÑŠÐ¼ Ñлужбата. PresentationPlugin.MediaItem Select Presentation(s) Избери презентациÑ(и) Automatic Ðвтоматично Present using: Сега използвани File Exists Файлът е наличен A presentation with that filename already exists. Вече има Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ñ Ñ‚Ð¾Ð²Ð° име. This type of presentation is not supported. Този тип Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ð½Ðµ е поддържан. Presentations (%s) Презентации (%s) Missing Presentation ЛипÑваща Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ The presentation %s is incomplete, please reload. ПрезентациÑта %s е непълна. ÐœÐ¾Ð»Ñ Ð¿Ñ€ÐµÐ·Ð°Ñ€ÐµÐ´ÐµÑ‚Ðµ! The presentation %s no longer exists. ПрезентациÑта %s вече не е налична. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Ðалични контролери %s (unavailable) %s (неналични) Allow presentation application to be overridden ПозволÑва презентационната програма да бъде преÑкочена PDF options опции за PDF Use given full path for mudraw or ghostscript binary: Ползвай Ð´Ð°Ð´ÐµÐ½Ð¸Ñ Ð¿ÑŠÐ»ÐµÐ½ път за mudraw или ghostscript binary: Select mudraw or ghostscript binary. Избери mudraw или ghostscript binary. The program is not ghostscript or mudraw which is required. Програмата не е ghostscript или mudraw, което Ñе изиÑква. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Добавка за диÑтанционно</strong><br /> С добавката за диÑтанционно може да Ñе пращат команди към работеща верÑÐ¸Ñ Ð½Ð° OpenLP на друг компютър чрез браузър или отдалечено API. Remote name singular ДиÑтанционно Remotes name plural ДиÑтанционни Remote container title ДиÑтанционно Server Config Change ПромÑна на Ñървърната ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Server configuration changes will require a restart to take effect. За да имат ефект промените на Ñървърната ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¸Ð·Ð¸Ñкват реÑтарт. RemotePlugin.Mobile Service Manager Управление на Ñлужба Slide Controller Контролер на Ñлайд Alerts Сигнали Search ТърÑене Home Ðачало Refresh Обнови Blank Празен Theme Тема Desktop ДеÑктоп Show Покажи Prev Пред. Next След. Text ТекÑÑ‚ Show Alert Покажи Ñигнал Go Live Прожектирай Add to Service Добави към Ñлужбата Add &amp; Go to Service Добави amp; Иди на Служба No Results ÐÑма резултати Options Опции Service Служба Slides Слайдове Settings ÐаÑтройки Remote ДиÑтанционно Stage View Live View RemotePlugin.RemoteTab Serve on IP address: Свържи на IP адреÑ: Port number: Ðомер на порт: Server Settings ÐаÑтройки на Ñървъра Remote URL: ДиÑтанционно URL: Stage view URL: URL на Ñцена: Display stage time in 12h format Показвай времето на Ñцената в 12ч. формат Android App Програма за андроид Live view URL: URL на живо: HTTPS Server HTTPS Сървър Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Ðе намирам SSL Ñертификат. HTTPS Ñървърът нÑма да е на разположение докато не е намерен SSL Ñертификат. МолÑ, вижте упътването за повече информациÑ. User Authentication УдоÑтоверÑване на потребител User id: ПотребителÑки номер: Password: Парола: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking ПроÑледÑване ползването на пеÑни &Delete Tracking Data Изтрии данните от проÑледÑването Delete song usage data up to a specified date. Изтрии данните за ползването на пеÑните до дадена дата. &Extract Tracking Data Извличане на данните от проÑледÑването Generate a report on song usage. Създай рапорт за ползването на пеÑните. Toggle Tracking Закачи проÑледÑване Toggle the tracking of song usage. Закачи проÑледÑване на ползването на пеÑните <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Добавка за ползването на пеÑните</strong><br />Тази добавка проÑледÑва ползването на пеÑните в Ñлужбите. SongUsage name singular Ползване на пеÑните SongUsage name plural Ползване на пеÑните SongUsage container title Ползване на пеÑните Song Usage Ползване на пеÑните Song usage tracking is active. ПроÑледÑването на ползването на пеÑните е активирано. Song usage tracking is inactive. ПроÑледÑването на ползването на пеÑните не е активирано. display Покажи printed принтирано SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Изтрий данните за ползването на пеÑните Delete Selected Song Usage Events? Да Ñе изтриÑÑ‚ ли избраните данни за ползването на пеÑните? Are you sure you want to delete selected Song Usage data? ÐаиÑтина ли да Ñе изтриÑÑ‚ ли избраните данни за ползването на пеÑните? Deletion Successful Изтриването е уÑпешно. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Изберете дата, до коÑто данните за ползването на пеÑните ще бъдат изтрити. Ð’Ñички данни преди тази дата ще бъдат изцÑло изтрити. All requested data has been deleted successfully. Ð’Ñичките поÑочени данни Ñа изтрити уÑпешно. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Извличане на ползването на пеÑните Select Date Range Задайте Ñрок to до Report Location МеÑтоположение на рапорта Output File Location МеÑтоположение на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ñ„Ð°Ð¹Ð». usage_detail_%s_%s.txt Данни за ползването%s_%s.txt Report Creation Създаване на рапорт Report %s has been successfully created. Рапортът ⎠%s ⎠беше уÑпешно Ñъздаден. Output Path Not Selected Ðе е зададен мÑÑто за запазването You have not set a valid output location for your song usage report. Please select an existing path on your computer. Ðе е зададено валидно меÑтоположение на Ð¸Ð·Ñ…Ð¾Ð´Ð½Ð¸Ñ Ñ„Ð°Ð¹Ð» за рапорта. ÐœÐ¾Ð»Ñ Ð¿Ð¾Ñочете налично мÑÑто на Ð²Ð°ÑˆÐ¸Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song ПеÑен Import songs using the import wizard. Импортирай пеÑни чрез помощника за импортиране. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Добавка за пеÑни</strong><br />Добавката за пеÑни дава възможноÑÑ‚ да Ñе показват и управлÑват пеÑните. &Re-index Songs Преподреди пеÑните Re-index the songs database to improve searching and ordering. Преподреди базата данни Ñ Ð¿ÐµÑни за да Ñе подобри търÑенето и подредбата. Reindexing songs... Преподреждане на пеÑните... Arabic (CP-1256) ÐрабÑки (CP-1256) Baltic (CP-1257) БалтийÑки (CP-1257) Central European (CP-1250) Централно европейÑки (CP-1250) Cyrillic (CP-1251) Кирилица (CP-1251) Greek (CP-1253) Гръцки (CP-1253) Hebrew (CP-1255) ЕврейÑки (CP-1255) Japanese (CP-932) ЯпонÑки (CP-932) Korean (CP-949) КорейÑки (CP-949) Simplified Chinese (CP-936) КитайÑки (CP-936) Thai (CP-874) ТайванÑки (CP-874) Traditional Chinese (CP-950) Традиционен китайÑки (CP-950) Turkish (CP-1254) ТурÑки (CP-1254) Vietnam (CP-1258) ВиетнамÑки (CP-1258) Western European (CP-1252) Западно европейÑки (CP-1252) Character Encoding Кодиране на буквите The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. ÐаÑтройката на езиковото кодиране отговарÑ⎠за правилното изпиÑване на буквите.⎠Обикновенно Ð¿Ñ€ÐµÐ´Ð²Ð°Ñ€Ð¸Ñ‚ÐµÐ»Ð½Ð¸Ñ Ð¸Ð·Ð±Ð¾Ñ€ на кодиране е корктен. Please choose the character encoding. The encoding is responsible for the correct character representation. ÐœÐ¾Ð»Ñ Ð¸Ð·Ð±ÐµÑ€ÐµÑ‚Ðµ езиково кодиране на буквите.⎠Езиковото кодиране Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñ Ð·Ð° правилното изпиÑване на буквите. Song name singular ПеÑен Songs name plural ПеÑни Songs container title ПеÑни Exports songs using the export wizard. ЕкÑпортирай пеÑните ÑÑŠÑ ÑÑŠÐ¾Ñ‚Ð²ÐµÑ‚Ð½Ð¸Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰Ð½Ð¸Ðº Add a new song. Добави нова пеÑен Edit the selected song. Редактирай избраната пеÑен. Delete the selected song. Изтрии избраната пеÑен Preview the selected song. Преглед на избраната пеÑен Send the selected song live. Прожектирай избраната пеÑен Add the selected song to the service. Добави избраната пеÑен към Ñлужбата Reindexing songs Преподреди пеÑните CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Импортирай пеÑни от CCLI's SongSelect Ñлужба. Find &Duplicate Songs Ðамери &Дублирани пеÑни Find and remove duplicate songs in the song database. Ðамери и премахни дублирани пеÑни в базата данни Ñ Ð¿ÐµÑни. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song ТекÑÑ‚ Music Author who wrote the music of a song Музика Words and Music Author who wrote both lyrics and music of a song ТекÑÑ‚ и Музика Translation Author who translated the song Превод SongsPlugin.AuthorsForm Author Maintenance Поддръжка на авторите Display name: Име, което да Ñе показва: First name: СобÑтвено име: Last name: ФамилиÑ: You need to type in the first name of the author. ТрÑбва да Ñе въведе ÑобÑтвеното име на автора You need to type in the last name of the author. ТрÑбва да Ñе въведе фамилиÑта на автора. You have not set a display name for the author, combine the first and last names? Ðе е въведено името, което да Ñе показва. Да Ñе комбинират ли име и Ñ„Ð°Ð¼Ð¸Ð»Ð¸Ñ Ð½Ð° автора? SongsPlugin.CCLIFileImport The file does not have a valid extension. Файлът нÑма валидно окончание SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ðевалиден DreamBeam файл на пеÑен. ЛипÑваща DreamSong отметка. SongsPlugin.EasyWorshipSongImport Administered by %s ÐдминиÑтрирано от %s "%s" could not be imported. %s "%s"не може да Ñе импортира. %s Unexpected data formatting. Ðеочакван формат на данни. No song text found. Ðе е намерен текÑÑ‚ на пеÑен. [above are Song Tags with notes imported from EasyWorship] [отгоре Ñа Отметките за ПеÑни Ñ Ð±ÐµÐ»ÐµÐ¶ÐºÐ¸ импортирани от EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Мета данни Custom Book Names Ръчно зададени имена на книги SongsPlugin.EditSongForm Song Editor Редактор на пеÑен &Title: Заглавие: Alt&ernate title: Ðлтернативно заглавие: &Lyrics: ТекÑÑ‚: &Verse order: Ред на куплетите: Ed&it All Редактирай вÑичко Title && Lyrics Заглавие и текÑÑ‚ &Add to Song Добави към пеÑента &Remove Премахни A&dd to Song Добави към пеÑента R&emove Премахни New &Theme Ðова тема Copyright Information Копирайт Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Comments Коментари Theme, Copyright Info && Comments Тема, копирайт && коментари Add Author Добави автор This author does not exist, do you want to add them? Този автор го нÑма в ÑпиÑъка, да го Ð´Ð¾Ð±Ð°Ð²Ñ Ð»Ð¸? This author is already in the list. Ðвторът вече е в ÑпиÑъка You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Ðе Ñте задали валидно име на автор. Добавете от ÑпиÑъка или напишете ново име и натиÑнете бутона за добавÑне на автор. Add Topic Добави тема This topic does not exist, do you want to add it? ÐÑма такава тема, да Ñ Ð´Ð¾Ð±Ð°Ð²Ñ Ð»Ð¸? This topic is already in the list. Темата е вече в ÑпиÑъка You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Ðе Ñте задали валидна тема. Добавете от ÑпиÑъка или напишете нова и натиÑнете бутона за добавÑне на тема. You need to type in a song title. ТрÑбва да дадете заглавие на пеÑента. You need to type in at least one verse. ТрÑбва да има поне един куплет. You need to have an author for this song. ТрÑбва да има автор на пеÑента. Linked Audio Свързано аудио Add &File(s) Добави файл(ове) Add &Media Добави Ð¼ÐµÐ´Ð¸Ñ Remove &All Премахни вÑичко Open File(s) Отвори файл(ове) <strong>Warning:</strong> Not all of the verses are in use. <strong>Предупреждение:</strong> Ðе вÑички куплети Ñа в употреба. <strong>Warning:</strong> You have not entered a verse order. <strong>Предупреждение:</strong> Ðе Ñте въвели реда на Ñтиховете. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. ÐÑма куплет, който да Ð¾Ñ‚Ð³Ð¾Ð²Ð°Ñ€Ñ Ð½Ð° "%(invalid)s". Валидни впиÑÐ²Ð°Ð½Ð¸Ñ Ñа %(valid)s. МолÑ, въведете Ñтиховете разделени от празен интервал. Invalid Verse Order Ðевалиден ред на куплетите: &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Редактирай куплет &Verse type: Тип куплет: &Insert Вмъкни Split a slide into two by inserting a verse splitter. Раздели Ñлайда на две Ñ Ð²Ð¼ÑŠÐºÐ²Ð°Ð½Ðµ на разделител. SongsPlugin.ExportWizardForm Song Export Wizard Помощник за екÑпортиране на пеÑни Select Songs Избери пеÑни Check the songs you want to export. Отметни пеÑните, които да Ñе екÑпортират. Uncheck All Махни вÑички отметки Check All Отметни вÑички Select Directory Избери Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Directory: ДиректориÑ: Exporting ЕкÑпортиране Please wait while your songs are exported. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ докато пеÑните Ñе екÑпортират. You need to add at least one Song to export. ТрÑбва да добавите поне една пеÑен за екÑпортиране. No Save Location specified Ðе е указано мÑÑто за запазване Starting export... Започване на екÑпортирането... You need to specify a directory. ТрÑбва да укажете Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Select Destination Folder Изберете папка Select the directory where you want the songs to be saved. Изберете папка където да Ñе запазÑÑ‚ пеÑните This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. С този помощник ще можете да екÑпортирате пеÑните в Ð¾Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð¸Ñ Ð¸ Ñвободен <strong>OpenLyrics</strong> worship song формат. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ðевалиден файл за Foilpresenter. Ðе Ñа намерени Ñтихове. SongsPlugin.GeneralTab Enable search as you type Ðктивирай търÑене докато пишеш SongsPlugin.ImportWizardForm Select Document/Presentation Files Избери файл на документ/Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Song Import Wizard Помощник за импортиране на пеÑни This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. С този помощник може да импортирате пеÑни от различни формати. ÐатиÑнете бутона по-долу за да започне процеÑа на избиране на формат, от който да Ñе импотира. Generic Document/Presentation Общ документ/Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Add Files... Добави файлове... Remove File(s) Премахни файл(ове) Please wait while your songs are imported. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ докато пеÑните Ñе импортират! Words Of Worship Song Files Файлове Ñ Ð¿ÐµÑни на Words Of Worship Songs Of Fellowship Song Files Файлове Ñ Ð¿ÐµÑни на Songs Of Fellowship SongBeamer Files Файлове Ñ Ð¿ÐµÑни на SongBeamer SongShow Plus Song Files Файлове Ñ Ð¿ÐµÑни на SongShow Plus Foilpresenter Song Files Файлове Ñ Ð¿ÐµÑни на Foilpresenter Copy Копирай Save to File Запази във файл The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Импортирането на Songs of Fellowship изключи защото OpenLP нÑма доÑтъп до OpenOffice или LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Импортирането на общ документ/Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ð¸Ð·ÐºÐ»ÑŽÑ‡Ð¸ защото OpenLP нÑма доÑтъп до OpenOffice или LibreOffice. OpenLyrics Files Файлове на OpenLyrics CCLI SongSelect Files Файлове CCLI SongSelect EasySlides XML File Файл EasySlides XML EasyWorship Song Database База данни Ñ Ð¿ÐµÑни на EasyWorship DreamBeam Song Files Файлове Ñ Ð¿ÐµÑни на DreamBeam You need to specify a valid PowerSong 1.0 database folder. ТрÑбва да укажете валидна папка Ñ Ð±Ð°Ð·Ð° данни на PowerSong 1.0 ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Първо конвентирайте базата данни на ZionWorx в текÑтов фаил CSV, както е обÑÑнено в упътването <a href="http://manual.openlp.org/songs.html#importing-from-zionworx"> SundayPlus Song Files Файлове Ñ Ñ‚ÐµÐºÑтове на пеÑни за SyndayPlus This importer has been disabled. Този метод за импортиране е изключен. MediaShout Database База данни за MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Този метод за импортиране Ñе поддържа Ñамо в Windows. Бил е изключен поради липÑваш модул за Python. Ð’ Ñлучай че иÑкате да използвате този метод, ще трÑбва да инÑталирате модула "pyodbc". SongPro Text Files ТекÑтови файл за SongPro SongPro (Export File) SongPro (ЕкÑпортиран файл) In SongPro, export your songs using the File -> Export menu Ð’ SongPro екÑпортирайте пеÑните като ползвате менюто Файл-> ЕкÑпорт. EasyWorship Service File Файл за Ñлужба на EasyWorship WorshipCenter Pro Song Files Файлове Ñ Ð¿ÐµÑни на WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Този метод за импортиране Ñе поддържа Ñамо в Windows. Бил е изключен поради липÑваш модул за Python. Ð’ Ñлучай че иÑкате да използвате този метод, ще трÑбва да инÑталирате модула "pyodbc". PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Избери файл(ове) Ñ Ð¼ÐµÐ´Ð¸Ñ Select one or more audio files from the list below, and click OK to import them into this song. Избери един или повече файлове от ÑпиÑъка по-долу и кликни ОК за да бъдат импортирани към тази пеÑен. SongsPlugin.MediaItem Titles Ð—Ð°Ð³Ð»Ð°Ð²Ð¸Ñ Lyrics ТекÑтове CCLI License: CCLI лиценз: Entire Song ЦÑлата пеÑен Maintain the lists of authors, topics and books. Поддръжка на ÑпиÑъка Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð¸, теми и пеÑнарки. copy For song cloning копие Search Titles... ТърÑи заглавиÑ... Search Entire Song... ТърÑи цÑла пеÑен... Search Lyrics... ТърÑи текÑÑ‚... Search Authors... ТърÑи автори... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. ÐеуÑпех при отварÑне на базата данни на MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... ЕкÑпортиране "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ðевалиден OpenSong файл на пеÑен. ЛипÑваща отметка на пеÑен. SongsPlugin.PowerSongImport No songs to import. ÐÑма пеÑни за импортиране Verses not found. Missing "PART" header. Куплетите не Ñа намерени. ЛипÑва заглавката "PART". No %s files found. ÐÑма намерен фаил %s. Invalid %s file. Unexpected byte value. Ðевалиден файл %s. Ðеочаквана байт ÑтойноÑÑ‚. Invalid %s file. Missing "TITLE" header. Ðевалиден файл %s. ЛипÑваща заглавка "TITLE". Invalid %s file. Missing "COPYRIGHTLINE" header. Ðевалиден файл %s. ЛипÑваща заглавка "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: Име &Publisher: Издател You need to type in a name for the book. ТрÑбва да въведете име на пеÑнарката Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. ЕкÑпортирането на пеÑента Ñе провали. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. ЕкÑпортирането завърши. За да импортирате тези файлове изберете <strong>OpenLyrics</strong> Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright копирайт The following songs could not be imported: Следните пеÑни не же да Ñе импортират: Cannot access OpenOffice or LibreOffice ÐÑма доÑтъп до OpenOffice или LibreOffice Unable to open file Ðе може да Ñе отвори файла File not found Файлът не е намерен SongsPlugin.SongMaintenanceForm Could not add your author. Ðе може да Ñе добави автора This author already exists. Този автор го има вече. Could not add your topic. Ðе може да Ñе добави темата This topic already exists. Тази тема Ñ Ð¸Ð¼Ð° вече. Could not add your book. Ðе може да Ñе добави пеÑнарката. This book already exists. Тази пеÑнарка вече Ñ Ð¸Ð¼Ð° Could not save your changes. Ðе могат да Ñе запазÑÑ‚ промените Could not save your modified author, because the author already exists. Ðе може да Ñе запази промÑната във името на автора, защото такова име вече ÑъщеÑтвува. Could not save your modified topic, because it already exists. Ðе може да Ñе запази промÑната на темата, защото такава има вече. Delete Author Изтрий автор Are you sure you want to delete the selected author? ÐаиÑтина ли авторът да бъде изтрит? This author cannot be deleted, they are currently assigned to at least one song. Ðвторът не може да бъде изтрит, защото е Ñвързан Ñ Ð¿Ð¾Ð½Ðµ една пеÑен. Delete Topic Изтрии тема Are you sure you want to delete the selected topic? ÐаиÑтина ли темата да бъде изтрита? This topic cannot be deleted, it is currently assigned to at least one song. Темата не може да бъде изтрита, защото е Ñвързана Ñ Ð¿Ð¾Ð½Ðµ една пеÑен. Delete Book Изтрии пеÑнарка Are you sure you want to delete the selected book? ÐаиÑтина ли пеÑнарката да бъде изтрита? This book cannot be deleted, it is currently assigned to at least one song. ПеÑнарката не може да бъде изтрита, защото е Ñвързана Ñ Ð¿Ð¾Ð½Ðµ една пеÑен. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Вече има автор %s. Бихте ли иÑкали вмеÑто автора %s, когото Ñте въвели като автор на преÑните да Ñе ползва %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Вече има тема %s. Бихте ли иÑкали вмеÑто темата %s, коÑто Ñте въвели да Ñе ползва %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Вече има пеÑнарка %s. Бихте ли иÑкали вмеÑто %s, коÑто Ñте въвели да Ñе ползва %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: ПотребителÑко име: Password: Парола: Save username and password Login Search Text: Search ТърÑене Found %s song(s) Logout View Преглед Title: Заглавие: Author(s): Copyright: Копирайт: CCLI Number: Lyrics: Back Import Импортирай More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode ФормулÑÑ€ за пеÑни Display verses on live tool bar Показвай куплетите на помощното табло за прожектиране Update service from song edit Обнови Ñлужбата от редактиране на пеÑни Import missing songs from service files Импортирай липÑващи пеÑни от фаилове за Ñлужба Display songbook in footer Покажи пеÑнарка в бележка под Ð»Ð¸Ð½Ð¸Ñ Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Поддръжка на теми Topic name: Име на тема: You need to type in a topic name. ТрÑбва да Ñе въведе име на темата SongsPlugin.VerseType Verse Куплет Chorus Припев Bridge Бридж Pre-Chorus Предприпев Intro Интро Ending Завършек Other Друго SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Грешка при четене на CSV файла. Line %d: %s Ð›Ð¸Ð½Ð¸Ñ %d: %s Decoding error: %s Грешка при декодиране: %s File not valid WorshipAssistant CSV format. Record %d Ð—Ð°Ð¿Ð¸Ñ %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Ðе може да Ñе Ñвърже Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Грешка при четене на CSV файла. File not valid ZionWorx CSV format. Файла не във правилен ZionWorx CSV формат. Line %d: %s Ð›Ð¸Ð½Ð¸Ñ %d: %s Decoding error: %s Грешка при декодиране: %s Record %d Ð—Ð°Ð¿Ð¸Ñ %d Wizard Wizard Помощник This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Този помощник ще ви помогна да премахнете дублирани пеÑни от базата данни Ñ Ð¿ÐµÑни. Ще имате възможноÑÑ‚ да прегледате вÑÑко възможно дублиране на пеÑен преди да е изтрито. Така нÑма да бъде изтрита пеÑен без вашето изрично одобрение, Searching for duplicate songs. ТърÑене на дублирани пеÑни. Please wait while your songs database is analyzed. ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ докато базата данни на пеÑните Ñе анализира. Here you can decide which songs to remove and which ones to keep. Тук можете да решите кои пеÑни да премахнете и кои да запазите. Review duplicate songs (%s/%s) Прегледай дублираните пеÑни (%s/%s) Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ No duplicate songs have been found in the database. Ðе бÑха намерени дублирани пеÑни в базата данни. OpenLP-2.4/resources/i18n/id.ts0000644000175000017500000154703712657640340015327 0ustar raoulraoul AlertsPlugin &Alert &Peringatan Show an alert message. Menampilkan suatu pesan peringatan. Alert name singular Peringatan Alerts name plural Peringatan-Peringatan Alerts container title Peringatan-Peringatan <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Plugin Peringatan</strong><br>Plugin Peringatan mengendalikan penampilan peringatan di layar tampilan. AlertsPlugin.AlertForm Alert Message Pesan Peringatan Alert &text: Teks &peringatan: &New &Baru &Save &Simpan Displ&ay &Tampilkan Display && Cl&ose Tampilkan dan &Tutup New Alert Peringatan Baru &Parameter: &Parameter: No Parameter Found Parameter Tidak Ditemukan You have not entered a parameter to be replaced. Do you want to continue anyway? Anda belum memasukkan parameter baru. Tetap lanjutkan? No Placeholder Found Tempat Penampung Tidak Ditemukan The alert text does not contain '<>'. Do you want to continue anyway? Teks peringatan tidak berisikan '<>'. Tetap lanjutkan? You haven't specified any text for your alert. Please type in some text before clicking New. Teks isi peringatan belum ditentukan. Silakan masukkan teks sebelum memilih Baru. AlertsPlugin.AlertsManager Alert message created and displayed. Pesan peringatan telah dibuat dan ditampilkan. AlertsPlugin.AlertsTab Font Fon Font name: Nama fon: Font color: Warna fon: Background color: Warna latar: Font size: Ukuran fon: Alert timeout: Batas-waktu peringatan: BiblesPlugin &Bible &Alkitab Bible name singular Alkitab Bibles name plural Alkitab Bibles container title Alkitab No Book Found Kitab Tidak Ditemukan No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Kitab tidak ditemukan dalam Alkitab ini. Periksa apakah Anda telah mengeja nama kitab dengan benar. Import a Bible. Impor Alkitab. Add a new Bible. Tambahkan Alkitab baru. Edit the selected Bible. Sunting Alkitab terpilih. Delete the selected Bible. Hapus Alkitab terpilih. Preview the selected Bible. Pratinjau Alkitab terpilih. Send the selected Bible live. Tayangkan Alkitab terpilih. Add the selected Bible to the service. Tambahkan Alkitab terpilih ke Layanan. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Plugin Alkitab</strong><br />Plugin Alkitab menyediakan kemampuan untuk menampilkan ayat Alkitab dari sumber yang berbeda selama Layanan dijalankan. &Upgrade older Bibles &Mutakhirkan Alkitab lama Upgrade the Bible databases to the latest format. Mutakhirkan basis-data Alkitab ke format terakhir. Genesis Kejadian Exodus Keluaran Leviticus Imamat Numbers Bilangan Deuteronomy Ulangan Joshua Yosua Judges Hakim Hakim Ruth Rut 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Raja Raja 2 Kings 2 Raja Raja 1 Chronicles 1 Tawarikh 2 Chronicles 2 Tawarikh Ezra Ezra Nehemiah Nehemia Esther Ester Job Ayub Psalms Mazmur Proverbs Amsal Ecclesiastes Pengkotbah Song of Solomon Kidung Agung Isaiah Yesaya Jeremiah Yeremia Lamentations Ratapan Ezekiel Yehezkiel Daniel Daniel Hosea Hosea Joel Yoel Amos Amos Obadiah Obaja Jonah Yunus Micah Mikha Nahum Nahum Habakkuk Habakuk Zephaniah Zefanya Haggai Hagai Zechariah Zakharia Malachi Maleakhi Matthew Matius Mark Markus Luke Lukas John Yohanes Acts Kisah Para Rasul Romans Roma 1 Corinthians 1 Korintus 2 Corinthians 2 Korintus Galatians Galatia Ephesians Efesus Philippians Filipi Colossians Kolose 1 Thessalonians 1 Tesalonika 2 Thessalonians 2 Tesalonika 1 Timothy 1 Timotius 2 Timothy 2 Timotius Titus Titus Philemon Filemon Hebrews Ibrani James Yakobus 1 Peter 1 Petrus 2 Peter 2 Petrus 1 John 1 Yohanes 2 John 2 Yohanes 3 John 3 Yohanes Jude Yudas Revelation Wahyu Judith Yudit Wisdom Kebijaksanaan Salomo Tobit Tobit Sirach Sirakh Baruch Barukh 1 Maccabees 1 Makabe 2 Maccabees 2 Makabe 3 Maccabees 3 Maccabees 4 Maccabees 4 Maccabees Rest of Daniel Tamb. Daniel Rest of Esther Tamb. Ester Prayer of Manasses Prayer of Manasses Letter of Jeremiah Letter of Jeremiah Prayer of Azariah Prayer of Azariah Susanna Susanna Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 ayat verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 ayat-ayat - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 ke , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 dan end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse akhir BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Anda harus menentukan suatu nama versi untuk Alkitab. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Domain Publik harus ditandai seperti itu. Bible Exists Alkitab Sudah Ada This Bible already exists. Please import a different Bible or first delete the existing one. Alkitab sudah ada. Silakan impor Alkitab lain atau hapus dahulu yang sudah ada. You need to specify a book name for "%s". Anda harus menentukan suatu nama kitab untuk "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Nama kitab "%s" tidak benar. Nomor hanya dapat digunakan di awal dan harus diikuti oleh satu atau lebih karakter non-numerik. Duplicate Book Name Duplikasi Nama Kitab The Book Name "%s" has been entered more than once. Nama kitab "%s" dimasukkan lebih dari sekali. BiblesPlugin.BibleManager Scripture Reference Error Kesalahan Referensi Alkitab Web Bible cannot be used Alkitab Web tidak dapat digunakan Text Search is not available with Web Bibles. Penelusuran teks tidak dapat dilakukan untuk Alkitab Web. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Anda tidak memasukkan kata kunci penelusuran. Anda dapat memisahkan kata kunci dengan spasi untuk menelusuri seluruh kata kunci dan Anda dapat memisahkan kata kunci dengan koma untuk menelusuri salah satu kata kunci. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. TIdak ada Alkitab terpasang. Silakan gunakan Wisaya Impor untuk memasang satu atau beberapa Alkitab. No Bibles Available Alkitab tidak tersedia Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Referensi Alkitab tidak ada dukungan oleh OpenLP atau tidak valid. Pastikan referensi Anda sesuai dengan salah satu pola berikut atau lihat panduan: Bab Bab%(range)sBab Bab%(verse)sAyat%(range)sAyat Bab%(verse)sAyat%(range)sAyat%(list)sAyat%(range)sAyat Bab%(verse)sAyat%(range)sAyat%(list)sBab%(verse)sAyat%(range)sAyat Bab%(verse)sAyat%(range)sBab%(verse)sAyat BiblesPlugin.BiblesTab Verse Display Tampilan Ayat Only show new chapter numbers Hanya tampilkan nomor bab baru Bible theme: Tema Alkitab: No Brackets Tanpa Tanda Kurung ( And ) ( Dan ) { And } { Dan } [ And ] [ Dan ] Note: Changes do not affect verses already in the service. Catatan: Perubahan tidak mempengaruhi ayat yang sudah ada di Layanan. Display second Bible verses Tampilkan ayat Alkitab kedua (beda versi) Custom Scripture References Referensi Alkitab Kustom Verse Separator: Pemisah Ayat: Range Separator: Pemisah Kisaran: List Separator: Pemisah Daftar: End Mark: Tanda Akhir: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Beberapa alternatif pemisah ayat dapat ditetapkan. Semuanya harus dipisahkan oleh sebuah palang vertikal "|". Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. English Bahasa Inggris Default Bible Language Bahasa Alkitab Bawaan Book name language in search field, search results and on display: Bahasa Kitab di bidang penelusuran, hasil penelusuran, dan tampilan: Bible Language Bahasa Alkitab Application Language Bahasa Aplikasi Show verse numbers Tampilkan nomor ayat BiblesPlugin.BookNameDialog Select Book Name Pilih Nama Kitab Current name: Nama saat ini: Corresponding name: Nama yang sesuai: Show Books From Tampilkan Kitab Dari Old Testament Perjanjian Lama New Testament Perjanjian Baru Apocrypha Apokrif The following book name cannot be matched up internally. Please select the corresponding name from the list. Nama kitab berikut tidak dapat dicocokkan dengan sistem. Silakan pilih yang sesuai dari daftar. BiblesPlugin.BookNameForm You need to select a book. Anda harus memilih sebuah kitab. BiblesPlugin.CSVBible Importing books... %s Mengimpor kitab... %s Importing verses... done. Mengimpor ayat... selesai. BiblesPlugin.EditBibleForm Bible Editor Penyunting Alkitab License Details Rincian Lisensi Version name: Nama versi: Copyright: Hak Cipta: Permissions: Izin: Default Bible Language Bahasa Alkitab Bawaan Book name language in search field, search results and on display: Bahasa Kitab di bidang penelusuran, hasil penelusuran, dan tampilan: Global Settings Setelan Global Bible Language Bahasa Alkitab Application Language Bahasa Aplikasi English Bahasa Inggris This is a Web Download Bible. It is not possible to customize the Book Names. Ini suatu Alkitab Unduhan dari Web. Tidak mungkin untuk mengubahsuaikan Nama Kitab. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Untuk menggunakan nama kitab yang diubahsuaikan, "Bahasa Alkitab" harus dipilih pada tab Meta Data atau, jika "Setelan Global" dipilih, pada halaman Alkitab dalam Mengkonfigurasi OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Mendaftarkan Alkitab dan memuat kitab... Registering Language... Mendaftarkan bahasa... Importing %s... Importing <book name>... Mengimpor %s... Download Error Kesalahan Unduhan There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ada masalah dalam mengunduh ayat yang terpilih. Silakan periksa sambungan internet Anda dan jika kesalahan ini berlanjut, pertimbangkan untuk melaporkan hal ini sebagai bug. Parse Error Kesalahan Penguraian There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ada masalah dalam mengekstrak ayat yang terpilih. Jika kesalahan ini berlanjut, silakan pertimbangkan untuk melaporkan hal ini sebagai bug. BiblesPlugin.ImportWizardForm Bible Import Wizard Wisaya Impor Alkitab This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Wisaya ini akan membantu Anda mengimpor Alkitab dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. Web Download Unduhan dari Web Location: Lokasi: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Alkitab: Download Options Opsi Unduhan Server: Server: Username: Nama Pengguna: Password: Kata sandi: Proxy Server (Optional) Server Proxy (Opsional) License Details Rincian Lisensi Set up the Bible's license details. Siapkan rincian lisensi Alkitab. Version name: Nama versi: Copyright: Hak Cipta: Please wait while your Bible is imported. Silakan tunggu selama Alkitab diimpor. You need to specify a file with books of the Bible to use in the import. Anda harus menentukan suatu berkas yang berisi kitab-kitab Alkitab untuk digunakan dalam impor. You need to specify a file of Bible verses to import. Anda harus menentukan suatu berkas ayat Alkitab untuk diimpor. You need to specify a version name for your Bible. Anda harus menentukan suatu nama versi untuk Alkitab. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Domain Publik harus ditandai seperti itu. Bible Exists Alkitab Sudah Ada This Bible already exists. Please import a different Bible or first delete the existing one. Alkitab sudah ada. Silakan impor Alkitab lain atau hapus dahulu yang sudah ada. Your Bible import failed. Impor Alkitab gagal. CSV File Berkas CSV Bibleserver Bibleserver Permissions: Izin: Bible file: Berkas Alkitab: Books file: Berkas kitab: Verses file: Berkas ayat: Registering Bible... Mendaftarkan Alkitab... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Alkitab telah terdaftar. Perlu diketahui bahwa ayat-ayat akan diunduh sesuai permintaan dan membutuhkan sambungan internet. Click to download bible list Klik untuk mengunduh daftar Alkitab Download bible list Pengunduhan daftar Alkitab Error during download Terjadi kesalahan saat pengunduhan An error occurred while downloading the list of bibles from %s. Terjadi kesalahan saat mengunduh daftar Alkitab dari %s. BiblesPlugin.LanguageDialog Select Language Pilih Bahasa OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP tidak dapat menentukan bahasa untuk terjemahan Alkitab ini. Silakan pilih bahasa dari daftar di bawah. Language: Bahasa: BiblesPlugin.LanguageForm You need to choose a language. Anda harus memilih sebuah bahasa. BiblesPlugin.MediaItem Quick Cepat Find: Temukan: Book: Buku Lagu: Chapter: Bab: Verse: Ayat: From: Dari: To: Sampai: Text Search Penelusuran Teks Second: Kedua: Scripture Reference Referensi Alkitab Toggle to keep or clear the previous results. Simpan atau hapus hasil sebelumnya. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Anda tidak dapat menggabungkan hasil penelusuran ayat dari dua versi Alkitab. Apakah Anda ingin menghapus hasil penelusuran dan mulai penelusuran baru? Bible not fully loaded. Alkitab belum termuat seluruhnya. Information Informasi The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Alkitab kedua tidak berisikan seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. Ayat %d belum dimasukkan pada hasil. Search Scripture Reference... Telusuri Referensi Alkitab... Search Text... Telusuri Teks... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Anda yakin ingin menghapus keseluruhan Alkitab "%s" dari OpenLP? Anda harus mengimpor ulang Alkitab ini untuk menggunakannya kembali. Advanced Lanjutan BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Jenis berkas Alkitab tidak benar. Alkitab OpenSong mungkin dikompresi. Anda harus lakukan dekompresi sebelum mengimpor. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Jenis berkas Alkitab tidak benar. Nampaknya seperti sebuah alkitab XML Zefania, silakan gunakan opsi impor Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Mengimpor %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Menghapus label yang tidak digunakan ( mungkin butuh waktu beberapa menit)... Importing %(bookname)s %(chapter)s... Mengimpor %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Pilih Direktori Cadangan Bible Upgrade Wizard Wisaya Pemutakhiran Alkitab This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Wisaya ini akan membantu ada memutakhirkan Alkitab yang tersedia dari OpenLP 2 versi sebelumnya. Klik tombol Selanjutnya untuk memulai proses pemutakhirkan. Select Backup Directory Pilih Direktori Cadangan Please select a backup directory for your Bibles Silakan pilih direktori cadangan untuk Alkitab Anda Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Rilis sebelumnya dari OpenLP 2.0 tidak dapat menggunakan Alkitab termutakhirkan. Langkah ini akan membuat pencadangan Alkitab saat ini sehingga Anda tinggal menyalin berkas-berkas ke direktori data OpenLP jika Anda perlu kembali ke rilis sebelumnya dari OpenLP. Silakan lihat <a href="http://wiki.openlp.org/faq">Pertanyaan yang Sering Ditanyakan</a>. Please select a backup location for your Bibles. Silakan pilh sebuah lokasi cadangan untuk Alkitab Anda. Backup Directory: Direktori Cadangan: There is no need to backup my Bibles Tidak perlu membuat pencadangan Alkitab Select Bibles Pilih Alkitab Please select the Bibles to upgrade Silakan pilih Alkitab untuk dimutakhirkan Upgrading Memutakhirkan Please wait while your Bibles are upgraded. Silakan tunggu selama Alkitab sedang dimutakhirkan. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Pencadangan tidak berhasil. Untuk mencadangkan Alkitab Anda perlu izin untuk menulis di direktori terpilih. Upgrading Bible %s of %s: "%s" Failed Memutakhirkan Alkitab %s dari %s: "%s" Gagal Upgrading Bible %s of %s: "%s" Upgrading ... Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan ... Download Error Kesalahan Unduhan To upgrade your Web Bibles an Internet connection is required. Untuk memutakhirkan Alkitab Web, sambungan internet dibutuhkan. Upgrading Bible %s of %s: "%s" Upgrading %s ... Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan %s ... Upgrading Bible %s of %s: "%s" Complete Memutakhirkan Alkitab %s dari %s: "%s" Selesai , %s failed , %s gagal Upgrading Bible(s): %s successful%s Memutakhirkan (beberapa) Alkitab: %s berhasil%s Upgrade failed. Pemutakhiran gagal. You need to specify a backup directory for your Bibles. Anda harus menentukan sebuah direktori cadangan untuk Alkitab Anda. Starting upgrade... Memulai pemutakhiran... There are no Bibles that need to be upgraded. Tidak ada Alkitab yang perlu dimutakhirkan. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Memutakhirkan Alkitab: %(success)d berhasil%(failed_text)s Perlu diketahui bahwa ayat dari Alkitab Web akan diunduh sesuai permintaan dan sambungan internet dibutuhkan. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Jenis berkas Alkitab tidak benar. Alkitab Zefania mungkin dikompresi. Anda harus lakukan dekompresi sebelum mengimpor. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Mengimpor %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Salindia Kustom Custom Slides name plural Salindia Kustom Custom Slides container title Salindia Kustom Load a new custom slide. Muat sebuah salindia kustom. Import a custom slide. Impor sebuah salindia kustom. Add a new custom slide. Tambahkan sebuah salindia kustom. Edit the selected custom slide. Sunting salindia kustom terpilih. Delete the selected custom slide. Hapus salindia kustom terpilih. Preview the selected custom slide. Pratinjau salindia kustom terpilih. Send the selected custom slide live. Tayangkan salindia kustom terpilih. Add the selected custom slide to the service. Tambahkan salindia kustom terpilih ke Layanan. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Plugin Salindia Kustom </strong><br />Plugin salindia kustom menyediakan kemampuan untuk menyiapkan salindia teks kustom yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. CustomPlugin.CustomTab Custom Display Tampilan Kustom Display footer Tampilkan Catatan Kaki Import missing custom slides from service files Impor salindia kustom yang hilang dari berkas Layanan CustomPlugin.EditCustomForm Edit Custom Slides Sunting Salindia Kustom &Title: &Judul: Add a new slide at bottom. Tambahkan suatu salindia baru di dasar. Edit the selected slide. Sunting salindia terpilih. Edit all the slides at once. Sunting seluruh salindia bersamaan. Split a slide into two by inserting a slide splitter. Pisah salindia menjadi dua menggunakan pemisah salindia. The&me: Te&ma: &Credits: &Kredit: You need to type in a title. Anda harus mengetikkan judul. Ed&it All Sunting &Semua Insert Slide Sisipkan Salindia You need to add at least one slide. Anda harus masukkan setidaknya satu salindia. CustomPlugin.EditVerseForm Edit Slide Sunting Salindia CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Anda yakin ingin menghapus "%d" salindia() kustom terpilih ini? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Plugin Gambar</strong><br />Plugin gambar memungkinkan penayangan gambar.<br />Salah satu keunggulan fitur ini adalah kemampuan untuk menggabungkan beberapa gambar pada Manajer Layanan, yang menjadikan penayangan beberapa gambar lebih mudah. Plugin ini juga dapat menggunakan "pengulangan terwaktu" dari OpenLP untuk membuat penayangan salindia berjalan otomatis. Sebagai tambahan, gambar dari plugin dapat digunakan untuk menggantikan latar tema yang sedang digunakan, yang mana menjadikan butir berbasis teks seperti lagu dengan gambar pilihan sebagai latar bukan dari latar yang disediakan oleh tema. Image name singular Gambar Images name plural Gambar Images container title Gambar Load a new image. Muat gambar baru. Add a new image. Tambahkan suatu gambar baru. Edit the selected image. Sunting gambar terpilih. Delete the selected image. Hapus gambar terpilih. Preview the selected image. Pratinjau gambar terpilih. Send the selected image live. Tayangkan gambar terpilih. Add the selected image to the service. Tambahkan gambar terpilih ke Layanan. ImagePlugin.AddGroupForm Add group Tambahkan grup Parent group: Grup induk: Group name: Nama grup: You need to type in a group name. Anda harus mengetikkan nama grup. Could not add the new group. Tidak dapat menambahkan grup tersebut. This group already exists. Grup ini sudah ada. ImagePlugin.ChooseGroupForm Select Image Group Pilih Grup Gambar Add images to group: Tambahkan gambar ke grup: No group Tanpa grup Existing group Grup yang Ada New group Grup baru ImagePlugin.ExceptionDialog Select Attachment Pilih Lampiran ImagePlugin.MediaItem Select Image(s) Pilih (beberapa) Gambar You must select an image to replace the background with. Anda harus memilih suatu gambar untuk menggantikan latar. Missing Image(s) (Beberapa) Gambar Hilang The following image(s) no longer exist: %s (Beberapa) Gambar berikut tidak ada lagi: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? (Beberapa) Gambar berikut tidak ada lagi: %s Anda tetap ingin menambah gambar lain? There was a problem replacing your background, the image file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas gambar "%s" tidak ada lagi. There was no display item to amend. Tidak ada butir tampilan untuk diubah. -- Top-level group -- -- Grup tingkatan-atas -- You must select an image or group to delete. Anda harus memilih suatu gambar atau grup untuk menghapusnya. Remove group Hapus grup Are you sure you want to remove "%s" and everything in it? Anda yakin ingin menghapus "%s" and semua isinya? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Latar yang dapat terlihat untuk gambar dengan rasio aspek yang berbeda dengan layar. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC adalah suatu pemutar eksternal yang mendukung sejumlah format yang berbeda. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit adalah suatu pemutar media yang berjalan dalam peramban web. Pemutar ini memungkinkan pemunculan teks pada video. This media player uses your operating system to provide media capabilities. Pemutar media ini menggunakan sistem operasi Anda untuk menyediakan berbagai kemampuan media. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Plugin Media</strong><br />Plugin Media mampu memainkan audio dan video. Media name singular Media Media name plural Media Media container title Media Load new media. Muat media baru. Add new media. Tambahkan media baru. Edit the selected media. Sunting media terpilih. Delete the selected media. Hapus media terpilih. Preview the selected media. Pratinjau media terpilih. Send the selected media live. Tayangkan media terpilih. Add the selected media to the service. Tambahkan media terpilih ke Layanan. MediaPlugin.MediaClipSelector Select Media Clip Pilih Klip Media Source Sumber Media path: Jalur media: Select drive from list Pilih penggerak dari daftar Load disc Muat disk Track Details Rincian Trek Title: Judul Audio track: Trek audio: Subtitle track: Trek sub-judul: HH:mm:ss.z HH:mm:ss.z Clip Range Kisaran Klip Start point: Titik mulai: Set start point Setel titik mulai Jump to start point Pindah ke titik mulai End point: Titik akhir: Set end point Setel titik akhir Jump to end point Pindah ke titik akhir MediaPlugin.MediaClipSelectorForm No path was given Jalur yang dipilih belum ada Given path does not exists Jalur yang dipilih tidak ada An error happened during initialization of VLC player Terjadi kesalahan saat inisialisasi pemutar VLC VLC player failed playing the media Pemutar VLC gagal memainkan media CD not loaded correctly CD tidak termuat dengan benar The CD was not loaded correctly, please re-load and try again. CD tidak termuat dengan benar, silakan muat-ulang dan coba lagi. DVD not loaded correctly DVD tidak termuat dengan benar The DVD was not loaded correctly, please re-load and try again. DVD tidak termuat dengan benar, silakan muat-ulang dan coba lagi. Set name of mediaclip Tentukan nama klip media Name of mediaclip: Nama klip media: Enter a valid name or cancel Masukkan nama yang valid atau batal Invalid character Karakter tidak valid The name of the mediaclip must not contain the character ":" Nama klip media tidak dapat berisikan karakter ":" MediaPlugin.MediaItem Select Media Pilih Media You must select a media file to delete. Anda harus memilih sebuah berkas media untuk dihapus. You must select a media file to replace the background with. Anda harus memilih sebuah media untuk menggantikan latar. There was a problem replacing your background, the media file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas media "%s" tidak ada lagi. Missing Media File Berkas Media Hilang The file %s no longer exists. Berkas %s tidak ada lagi. Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) There was no display item to amend. Tidak ada butir tampilan untuk diubah. Unsupported File Tidak Ada Dukungan untuk Berkas Use Player: Gunakan Pemutar: VLC player required Butuh pemutar VLC VLC player required for playback of optical devices Butuh pemutar VLC untuk pemutaran perangkat optik Load CD/DVD Muat CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Muat CD/DVD - hanya didukung jika VLC terpasang dan diaktifkan The optical disc %s is no longer available. Disk optik %s tidak lagi tersedia. Mediaclip already saved Klip media telah tersimpan This mediaclip has already been saved Klip media ini telah tersimpan sebelumnya MediaPlugin.MediaTab Allow media player to be overridden Izinkan pemutar media untuk digantikan Start Live items automatically Mulai butir Tayang secara otomatis OPenLP.MainWindow &Projector Manager &Manajer Proyektor OpenLP Image Files Berkas Gambar Information Informasi Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Format Alkitab sudah diubah. Anda harus memutakhirkan Alkitab yang sekarang. Haruskah OpenLP dimutakhirkan sekarang? Backup Pencadangan OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP telah dimutakhirkan, Anda ingin membuat sebuah cadangan folder data OpenLP? Backup of the data folder failed! Pencadangan folder data gagal! A backup of the data folder has been created at %s Sebuah cadangan folder data telah dibuat di %s Open Buka OpenLP.AboutForm Credits Kredit License Lisensi build %s buatan %s 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; version 2 of the License. Program ini adalah perangkat lunak gratis; Anda dapat menyebarluaskannya dan / atau memodifikasinya di bawah ketentuan GNU General Public License seperti yang diterbitkan oleh Free Software Foundation; Lisensi versi 2. 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 below for more details. Program ini disebarluaskan dengan harapan bahwa akan berguna, tetapi TANPA JAMINAN APAPUN; bahkan tanpa jaminan yang termasuk pada PERDAGANGAN atau KECOCOKAN UNTUK SUATU TUJUAN TERTENTU. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Proyeksi Lirik Open-Source OpenLP adalah perangkat lunak presentasi gratis untuk gereja, atau perangkat lunak proyeksi lirik, digunakan untuk menampilkan salindia lagu, ayat Alkitab, video, gambar, dan berkas presentasi (jika Impress, PowerPoint atau PowerPoint Viewer terpasang) bagi acara penyembahan gereja dengan menggunakan komputer dan proyektor data. Ketahui lebih lanjut tentang OpenLP: http://openlp.org/ OpenLP dibuat dan dikelola oleh sukarelawan. Jika Anda ingin menyaksikan lebih banyak perangkat lunak Kristiani yang dibuat dengan gratis, silakan pertimbangkan untuk menjadi sukarelawan dengan menggunakan tombol di bawah ini. Volunteer Sukarelawan Project Lead Pemimipin Proyek Developers Para Pengembang Contributors Para Kontributor Packagers Para Pemaket Testers Para Penguji Coba Translators Para Penterjemah Afrikaans (af) Afrikanas (af) Czech (cs) Ceko (cs) Danish (da) Denmark (da) German (de) Jerman (de) Greek (el) Yunani (el) English, United Kingdom (en_GB) Inggris, Britania Raya (en_GB) English, South Africa (en_ZA) Inggris, Afrika Selatan (en_ZA) Spanish (es) Spanyol (es) Estonian (et) Estonia (et) Finnish (fi) Finlandia (fl) French (fr) Perancis (fr) Hungarian (hu) Hongaria (hu) Indonesian (id) Indonesia (id) Japanese (ja) Jepang (ja) Norwegian BokmÃ¥l (nb) BokmÃ¥l Norwegia (nb) Dutch (nl) Belanda (nl) Polish (pl) Polandia (pl) Portuguese, Brazil (pt_BR) Portugis, Brasil (pt_BR) Russian (ru) Rusia (ru) Swedish (sv) Swedia (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Tionghoa(Cina) (zh_CN) Documentation Dokumentasi Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Dibuat dengan Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Ikon-ikon Oxygen: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Kredit Akhir "Karena begitu besar kasih Allah akan dunia ini, sehingga Ia telah mengaruniakan Anak-Nya yang tunggal, supaya setiap orang yang percaya kepada- Nya tidak binasa, melainkan beroleh hidup yang kekal." -- Yohanes 3:16 Dan yang terakhir tapi terutama, kredit akhir kepada Allah Bapa kita, yang mengirimkan Putra-Nya untuk mati di kayu salib, untuk membebaskan kita dari dosa. Kami berikan perangkat lunak ini kepada Anda dengan gratis karena Dia telah membebaskan kita. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Hak cipta © 2004-2016 %s Bagian hak cipta © 2004-2016 %s OpenLP.AdvancedTab UI Settings Setelan Antarmuka Number of recent files to display: Jumlah berkas terbaru untuk ditampilkan: Remember active media manager tab on startup Ingat tab Manajer Media yang aktif saat memulai OpenLP Double-click to send items straight to live Klik-ganda untuk langsung menayangkan butir Expand new service items on creation Kembangkan butir Layanan baru saat dibuat Enable application exit confirmation Gunakan konfirmasi aplikasi keluar Mouse Cursor Kursor Tetikus Hide mouse cursor when over display window Sembunyikan kursor tetikus saat melewati jendela tampilan Default Image Gambar Bawaan Background color: Warna latar: Image file: Berkas gambar: Open File Membuka Berkas Advanced Lanjutan Preview items when clicked in Media Manager Pratinjau butir saat diklik pada Manajer Media Browse for an image file to display. Menelusuri sebuah berkas gambar untuk ditampilkan. Revert to the default OpenLP logo. Kembalikan ke logo OpenLP bawaan. Default Service Name Nama Layanan Bawaan Enable default service name Gunakan nama Layanan bawaan Date and Time: Tanggal dan Waktu: Monday Senin Tuesday Selasa Wednesday Rabu Friday Jumat Saturday Sabtu Sunday Minggu Now Sekarang Time when usual service starts. Saat Layanan biasa dimulai. Name: Nama: Consult the OpenLP manual for usage. Lihat panduan OpenLP untuk penggunaan. Revert to the default service name "%s". Kembalikan ke nama Layanan bawaan "%s". Example: Contoh: Bypass X11 Window Manager Abaikan Window Manager X11 Syntax error. Kesalahan sintaks. Data Location Lokasi Data Current path: Jalur saat ini: Custom path: Jalur kustom: Browse for new data file location. Telusuri lokasi berkas data baru. Set the data location to the default. Setel lokasi data menjadi bawaan. Cancel Batal Cancel OpenLP data directory location change. Batalkan perubahan lokasi direktori data OpenLP Copy data to new location. Salin data ke lokasi baru. Copy the OpenLP data files to the new location. Salin berkas data OpenLP ke lokasi baru. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>PERINGATAN:</strong> Lokasi direktori data baru berisi berkas data OpenLP. Berkas ini AKAN digantikan saat penyalinan. Data Directory Error Kesalahan Direktori Data Select Data Directory Location Pilih Lokasi Direktori Data Confirm Data Directory Change Konfirmasi Perubahan Direktori Data Reset Data Directory Setel-Ulang Direktori Data Overwrite Existing Data Tulis-Timpa Data yang Ada OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Direktori data OpenLP tidak ditemukan %s Direktori data ini telah berubah dari lokasi bawaan OpenLP. Jika lokasi baru ada pada media yang dapat dipindahkan, media tersebut harus siap digunakan. Klik "Tidak" untuk stop pemuatan OpenLP, sehinga Anda dapat memperbaiki masalah. Klik "Ya" untuk setel-ulang direktori data ke lokasi bawaan. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Anda yakin ingin mengubah lokasi direktori data OpenLP ke: %s Direktori data akan diubah setelah OpenLP ditutup. Thursday Kamis Display Workarounds Tampilkan Solusi Use alternating row colours in lists Gunakan warna baris dalam daftar secara bergantian WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? PERINGATAN: Lokasi yang Anda pilih %s nampaknya berisi berkas data OpenLP. Anda ingin mengganti berkas tersebut dengan berkas data saat ini? Restart Required Butuh Dimulai-ulang This change will only take effect once OpenLP has been restarted. Perubahan ini hanya akan diterapkan setelah OpenLP dimulai-ulang. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Anda yakin ingin mengubah lokasi direktori data OpenLP ke lokasi bawaan? Lokasi ini akan digunakan setelah OpenLP ditutup. OpenLP.ColorButton Click to select a color. Klik untuk memilih warna. OpenLP.DB RGB RGB Video Video Digital Digital Storage Penyimpanan Network Jaringan RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Penyimpanan 1 Storage 2 Penyimpanan 2 Storage 3 Penyimpanan 3 Storage 4 Penyimpanan 4 Storage 5 Penyimpanan 5 Storage 6 Penyimpanan 6 Storage 7 Penyimpanan 7 Storage 8 Penyimpanan 8 Storage 9 Penyimpanan 9 Network 1 Jaringan 1 Network 2 Jaringan 2 Network 3 Jaringan 3 Network 4 Jaringan 4 Network 5 Jaringan 5 Network 6 Jaringan 6 Network 7 Jaringan 7 Network 8 Jaringan 8 Network 9 Jaringan 9 OpenLP.ExceptionDialog Error Occurred Terjadi Kesalahan Send E-Mail Kirim Email Save to File Simpan jadi Berkas Attach File Lampirkan Berkas Description characters to enter : %s Deskripsi karakter untuk dimasukkan: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Silakan masukkan deskripsi dari apa yang Anda lakukan sehingga kesalahan ini terjadi. Jika memungkinkan, mohon tuliskan dalam bahasa Inggris. (Paling sedikit 20 karakter) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Ups! OpenLP mengalami masalah yang tidak dapat diatasi. Teks di kotak bawah berisikan informasi yang mungkin dapat membantu pengembang OpenLP, jadi silakan kirim via email ke bugs@openlp.org, bersama dengan deskripsi detail apa yang Anda lakukan saat masalah terjadi. Juga lampikan berkas apa pun yang memicu masalah tersebut. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Simpan Laporan Crash Text files (*.txt *.log *.text) Berkas teks (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Penamaan-ulang Berkas New File Name: Nama Berkas Baru: File Copy Salin Berkas OpenLP.FirstTimeLanguageForm Select Translation Pilih Terjemahan Choose the translation you'd like to use in OpenLP. Pilih terjemahan yang ingin Anda gunakan di OpenLP. Translation: Terjemahan: OpenLP.FirstTimeWizard Songs Lagu First Time Wizard Wisaya Kali Pertama Welcome to the First Time Wizard Selamat datang di Wisaya Kali Pertama Activate required Plugins Mengaktivasi Plugin yang dibutuhkan Select the Plugins you wish to use. Pilih Plugin yang ingin digunakan. Bible Alkitab Images Gambar Presentations Presentasi Media (Audio and Video) Media (Audio dan Video) Allow remote access Izinkan akses remote Monitor Song Usage Catat Penggunaan Lagu Allow Alerts Izinkan Peringatan Default Settings Setelan Bawaan Downloading %s... Mengunduh %s... Enabling selected plugins... Mengaktifkan plugin terpilih... No Internet Connection Tidak Tersambung ke Internet Unable to detect an Internet connection. Tidak dapat mendeteksi sambungan Internet. Sample Songs Contoh Lagu Select and download public domain songs. Pilih dan unduh lagu domain publik. Sample Bibles Contoh Alkitab Select and download free Bibles. Pilih dan unduh Alkitab gratis. Sample Themes Contoh Tema Select and download sample themes. Pilih dan unduh contoh tema. Set up default settings to be used by OpenLP. Siapkan setelan bawaan untuk digunakan oleh OpenLP. Default output display: Tampilan keluaran bawaan: Select default theme: Pilih tema bawaan: Starting configuration process... Memulai proses konfigurasi... Setting Up And Downloading Persiapan dan Pengunduhan Please wait while OpenLP is set up and your data is downloaded. Silakan tunggu selama OpenLP dipersiapkan dan data Anda diunduh. Setting Up Persiapan Custom Slides Salindia Kustom Finish Selesai No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Sambungan internet tidak ditemukan. Wisaya Kali Pertama membutuhkan sambungan internet agar dapat mengunduh contoh lagu, Alkitab, dan tema. Klik tombol Selesai untuk memulai OpenLP dengan setelan awal dan tanpa data contoh. Untuk menjalankan lagi Wisaya Kali Pertama dan mengimpor data contoh di lain waktu, periksa sambungan Internet Anda dan jalankan lagi wisaya ini dengan memilih "Alat / Jalankan lagi Wisaya Kali Pertama" pada OpenLP. Download Error Kesalahan Unduhan There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ada masalah sambungan saat pengunduhan, jadi unduhan berikutnya akan dilewatkan. Cobalah untuk menjalankan Wisaya Kali Pertama beberapa saat lagi. Download complete. Click the %s button to return to OpenLP. Pengunduhan selesai. Klik tombol %s untuk kembali ke OpenLP. Download complete. Click the %s button to start OpenLP. Pengunduhan selesai. Klik tombol %s untuk memulai OpenLP. Click the %s button to return to OpenLP. Klik tombol %s untuk kembali ke OpenLP. Click the %s button to start OpenLP. Klik tombol %s untuk memulai OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ada masalah sambungan saat mengunduh, jadi unduhan berikutnya akan dilewatkan. Cobalah untuk menjalankan Wisaya Kali Pertama beberapa saat lagi. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Wisaya ini akan membantu Anda mengkonfigurasi OpenLP untuk penggunaan pertama kali. Klik tombol %s di bawah untuk memulainya. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Untuk membatalkan sepenuhnya Wisaya Kali Pertama (dan tidak memulai OpenLP), klik tombol %s sekarang. Downloading Resource Index Mengunduh Indeks Sumber Please wait while the resource index is downloaded. Silakan tunggu selama indeks sumber diunduh. Please wait while OpenLP downloads the resource index file... Silakan tunggu selama OpenLP mengunduh berkas indeks sumber... Downloading and Configuring Pengunduhan dan Pengkonfigurasian Please wait while resources are downloaded and OpenLP is configured. Silakan tunggu selama sumber-sumber diunduh dan OpenLP dikonfigurasikan. Network Error Kesalahan Jaringan There was a network error attempting to connect to retrieve initial configuration information Ada kesalahan jaringan saat mencoba menyambungkan untuk mengambil informasi konfigurasi awal Cancel Batal Unable to download some files Tidak dapat mengunduh beberapa berkas OpenLP.FormattingTagDialog Configure Formatting Tags Mengkonfigurasi Label Pemformatan Description Deskripsi Tag Label Start HTML Mulai HTML End HTML Akhiri HTML Default Formatting Pemformatan Bawaan Custom Formatting Pemformatan Kustom OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error Kesalahan Validasi Description is missing Deskripsi hilang Tag is missing Label hilang Tag %s already defined. Label %s sudah pernah ditetapkan. Description %s already defined. Deskripsi %s sudah pernah ditetapkan. Start tag %s is not valid HTML Label mulai %s bukanlah HTML yang valid End tag %(end)s does not match end tag for start tag %(start)s Label akhir %(end)s tidak cocok dengan label akhir untuk label mulai %(start)s OpenLP.FormattingTags Red Merah Black Hitam Blue Biru Yellow Kuning Green Hijau Pink Merah Muda Orange Oranye Purple Ungu White Putih Superscript Tulis-atas Subscript Tulis-bawah Paragraph Paragraf Bold Tebal Italics Miring Underline Garis Bawah Break Pisah OpenLP.GeneralTab General Umum Monitors Monitor Select monitor for output display: Pilih monitor untuk tampilan keluaran: Display if a single screen Tampilkan jika layar tunggal Application Startup Awal Mulai Aplikasi Show blank screen warning Tampilkan peringatan layar kosong Automatically open the last service Buka Layanan terakhir secara otomatis Show the splash screen Tampilkan layar pembuka Application Settings Setelan Aplikasi Prompt to save before starting a new service Sarankan untuk menyimpan sebelum memulai Layanan baru Automatically preview next item in service Pratinjau secara otomatis butir selanjutnya pada Layanan sec dtk CCLI Details Rincian CCLI SongSelect username: Nama pengguna SongSelect: SongSelect password: Kata sandi SongSelect: X X Y Y Height Tinggi Width Lebar Check for updates to OpenLP Periksa pembaruan untuk OpenLP Unblank display when adding new live item Jangan kosongkan layar saat menambah butir Tayang baru Timed slide interval: Selang waktu salindia: Background Audio Audio Latar Start background audio paused Mulai audio latar terjeda Service Item Slide Limits Batasan Salindia Butir Layanan Override display position: Gantikan posisi tampilan: Repeat track list Ulangi daftar lagu Behavior of next/previous on the last/first slide: Aturan selanjutnya/sebelumnya dari salindia terakhir/pertama: &Remain on Slide &Tetap pada Salindia &Wrap around &Pindah ke Salindia selanjutnya/sebelumnya pada butir Layanan yang sama &Move to next/previous service item &Pindah ke butir Layanan selanjutnya/sebelumnya OpenLP.LanguageManager Language Bahasa Please restart OpenLP to use your new language setting. Silakan memulai-ulang OpenLP untuk menggunakan setelan bahasa baru. OpenLP.MainDisplay OpenLP Display Tampilan OpenLP OpenLP.MainWindow &File &Berkas &Import &Impor &Export &Ekspor &View &Tinjau M&ode M&ode &Tools &Alat &Settings &Setelan &Language &Bahasa &Help &Bantuan Service Manager Manajer Layanan Theme Manager Manajer Tema Open an existing service. Buka Layanan yang ada. Save the current service to disk. Simpan Layanan saat ini ke dalam disk. Save Service As Simpan Layanan Sebagai Save the current service under a new name. Simpan Layanan saat ini dengan nama baru. E&xit Kelua&r Quit OpenLP Keluar dari OpenLP &Theme &Tema &Configure OpenLP... &Mengkonfigurasi OpenLP... &Media Manager &Manajer Media Toggle Media Manager Ganti Manajer Media Toggle the visibility of the media manager. Ganti visibilitas Manajer Media. &Theme Manager &Manajer Tema Toggle Theme Manager Ganti Manajer Tema Toggle the visibility of the theme manager. Ganti visibilitas Manajer Tema. &Service Manager &Manajer Layanan Toggle Service Manager Ganti Manajer Layanan Toggle the visibility of the service manager. Ganti visibilitas Manajer Layanan. &Preview Panel Panel &Pratinjau Toggle Preview Panel Ganti Panel Pratinjau Toggle the visibility of the preview panel. Ganti visibilitas panel pratinjau. &Live Panel &Panel Tayang Toggle Live Panel Ganti Panel Tayang Toggle the visibility of the live panel. Ganti visibilitas panel Tayang. List the Plugins Mendaftarkan Plugin &User Guide &Tuntunan Pengguna &About Tent&ang More information about OpenLP Informasi lebih lanjut tentang OpenLP &Online Help Bantuan &Daring &Web Site Situs &Web Use the system language, if available. Gunakan bahasa sistem, jika tersedia. Set the interface language to %s Setel bahasa antarmuka menjadi %s Add &Tool... Tambahkan &Alat... Add an application to the list of tools. Tambahkan sebuah aplikasi ke daftar alat. &Default &Bawaan Set the view mode back to the default. Setel mode tinjauan ke bawaan. &Setup &Persiapan Set the view mode to Setup. Setel mode tinjauan ke Persiapan. &Live &Tayang Set the view mode to Live. Setel mode tinjauan ke Tayang. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP versi %s siap untuk diunduh (Anda saat ini menjalankan versi %s). Versi terbaru dapat diunduh dari http://openlp.org/. OpenLP Version Updated Versi OpenLP Terbarui OpenLP Main Display Blanked Tampilan Utama OpenLP Kosong The Main Display has been blanked out Tampilan Utama telah dikosongkan Default Theme: %s Tema Bawaan: %s English Please add the name of your language here Bahasa Inggris Configure &Shortcuts... Mengkonfigurasi &Pintasan... Open &Data Folder... Buka &Folder Data... Open the folder where songs, bibles and other data resides. Buka folder tempat lagu, Alkitab, dan data lain disimpan. &Autodetect &Deteksi Otomatis Update Theme Images Perbarui Gambar Tema Update the preview images for all themes. Perbarui gambar pratinjau untuk semua tema. Print the current service. Cetak Layanan sekarang. L&ock Panels Kunci Pane&l Prevent the panels being moved. Hindari panel untuk dipindahkan. Re-run First Time Wizard Jalankan lagi Wisaya Kali Pertama Re-run the First Time Wizard, importing songs, Bibles and themes. Jalankan lagi Wisaya Kali Pertama, mengimpor lagu, Alkitab, dan tema. Re-run First Time Wizard? Jalankan lagi Wisaya Kali Pertama? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Anda yakin ingin menjalankan lagi Wisaya Kali Pertama? Menjalankan lagi wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mungkin menambah lagu ke dalam daftar lagu dan mengubah tema bawaan. Clear List Clear List of recent files Bersihkan Daftar Clear the list of recent files. Bersihkan daftar berkas terbaru. Configure &Formatting Tags... Mengkonfigurasi Label Pem&formatan... Export OpenLP settings to a specified *.config file Ekspor setelan OpenLP ke sebuah berkas *.config Settings Setelan Import OpenLP settings from a specified *.config file previously exported on this or another machine Impor setelan OpenLP dari sebuah berkas *.config yang telah diekspor dari komputer ini atau komputer lain Import settings? Impor setelan? Open File Membuka Berkas OpenLP Export Settings Files (*.conf) Berkas Ekspor Setelan OpenLP (*.conf) Import settings Impor setelan OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sekarang akan ditutup. Setelan yang di-impor akan diterapkan saat berikutnya Anda memulai OpenLP. Export Settings File Ekspor Berkas Setelan OpenLP Export Settings File (*.conf) Berkas Ekspor Setelan OpenLP (*.conf) New Data Directory Error Kesalahan Direktori Data Baru Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Sedang menyalin data OpenLP ke lokasi direktori data baru - %s - Silakan tunggu penyalinan selesai OpenLP Data directory copy failed %s Penyalinan direktori data OpenLP gagal %s General Umum Library Pustaka Jump to the search box of the current active plugin. Pindah ke kotak pencarian plugin yang aktif saat ini. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Anda yakin ingin meng-impor setelan? Mengimpor setelan akan membuat perubahan permanen pada konfigurasi OpenLP Anda saat ini. Mengimpor setelan yang salah dapat menyebabkan perilaku tak menentu atau OpenLP berakhir secara tidak wajar. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Berkas yang Anda pilih nampaknya berkas setelan OpenLP yang valid. Proses telah dihentikan dan tidak ada perubahan yang telah dibuat. Projector Manager Manajer Proyektor Toggle Projector Manager Ganti Manajer Proyektor Toggle the visibility of the Projector Manager Ganti visibilitas Manajer Proyektor Export setting error Kesalahan setelan ekspor The key "%s" does not have a default value so it will be skipped in this export. Kunci "%s" tidak memiliki nilai bawaan sehingga akan dilewatkan saat ekspor kali ini. An error occurred while exporting the settings: %s Terjadi kesalahan saat mengekspor setelan: %s &Recent Services &Layanan Sekarang &New Service &Layanan Baru &Open Service &Buka Layanan &Save Service &Simpan Layanan Save Service &As... Simpan Layanan &Sebagai... &Manage Plugins &Kelola Plugin Exit OpenLP Keluar dari OpenLP Are you sure you want to exit OpenLP? Anda yakin ingin keluar dari OpenLP? &Exit OpenLP &Keluar dari OpenLP OpenLP.Manager Database Error Kesalahan Basis-Data The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Basis-data yang sedang dimuat dibuat dalam versi OpenLP yang lebih baru. Basis-data adalah versi %d, sedangkan OpenLP membutuhkan versi %d. Basis-data tidak akan dimuat. Basis-Data : %s OpenLP cannot load your database. Database: %s OpenLP tidak dapat memuat basis-data Anda. Basis-Data : %s OpenLP.MediaManagerItem No Items Selected Tidak Ada Satupun Butir Terpilih &Add to selected Service Item &Tambahkan ke Butir Layanan terpilih You must select one or more items to preview. Anda harus memilih satu atau beberapa butir untuk dipratinjau. You must select one or more items to send live. Anda harus memilih satu atau beberapa butir untuk ditayangkan. You must select one or more items. Anda harus memilih satu atau beberapa butir. You must select an existing service item to add to. Anda harus memilih sebuah Butir Layanan yang ada untuk ditambahkan. Invalid Service Item Butir Layanan Tidak Valid You must select a %s service item. Anda harus memilih sebuah butir Layanan %s. You must select one or more items to add. Anda harus memilih satu atau lebih butir untuk menambahkan. No Search Results Tidak Ada Hasil Penelusuran Invalid File Type Jenis Berkas Tidak Valid Invalid File %s. Suffix not supported Berkas Tidak Valid %s. Tidak ada dukungan untuk akhiran ini &Clone &Kloning Duplicate files were found on import and were ignored. Berkas duplikat ditemukan saat impor dan diabaikan. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Label <lyrics> hilang. <verse> tag is missing. Label <verse> hilang. OpenLP.PJLink1 Unknown status Status tak diketahui No message Tak ada pesan Error while sending data to projector Terjadi kesalahan saat mengirim data ke proyektor Undefined command: Perintah tak dapat didefinisikan: OpenLP.PlayerTab Players Pemutar Available Media Players Pemutar Media yang Tersedia Player Search Order Susunan Penelusuran Pemutar Visible background for videos with aspect ratio different to screen. Latar yang dapat terlihat untuk video dengan rasio aspek yang berbeda dengan layar. %s (unavailable) %s (tidak tersedia) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" Catatan: Untuk menggunakan VLC, Anda harus memasang versi %s OpenLP.PluginForm Plugin Details Rincian Plugin Status: Status: Active Aktif Inactive Nonaktif %s (Inactive) %s (Nonaktif) %s (Active) %s (Aktif) %s (Disabled) %s (Dinonaktifkan) Manage Plugins Kelola Plugin OpenLP.PrintServiceDialog Fit Page Pas dengan Halaman Fit Width Pas dengan Lebar OpenLP.PrintServiceForm Options Opsi Copy Salin Copy as HTML Salin sebagai HTML Zoom In Perbesar Zoom Out Perkecil Zoom Original Kembalikan Ukuran Other Options Opsi Lain Include slide text if available Sertakan teks salindia jika tersedia Include service item notes Masukkan catatan butir Layanan Include play length of media items Masukkan durasi permainan butir media Add page break before each text item Tambahkan pemisah sebelum tiap butir teks Service Sheet Lembar Layanan Print Cetak Title: Judul Custom Footer Text: Teks Catatan Kaki Kustom: OpenLP.ProjectorConstants OK OK General projector error Kesalahan proyektor secara umum Not connected error Kesalahan tidak tersambung Lamp error Kesalahan lampu Fan error Kesalahan kipas High temperature detected Suhu tinggi terdeteksi Cover open detected Penutup yang terbuka terdeteksi Check filter Periksa filter Authentication Error Kesalahan Otentikasi Undefined Command Perintah Tak Dapat Didefinisikan Invalid Parameter Parameter Tidak Valid Projector Busy Proyektor Sibuk Projector/Display Error Kesalahan Proyektor/Penayang Invalid packet received Paket yang tidak valid diterima Warning condition detected Kondisi yang perlu diperhatikan terdeteksi Error condition detected Kondisi kesalahan terdeteksi PJLink class not supported Tidak ada dukungan untuk class PJLink Invalid prefix character Awalan karakter tidak valid The connection was refused by the peer (or timed out) Sambungan ditolak oleh peer (atau melampaui batas waktu) The remote host closed the connection Host remote telah menutup sambungan The host address was not found Alamat host tidak ditemukan The socket operation failed because the application lacked the required privileges Pengoperasian socket gagal karena aplikasi tidak memiliki hak khusus yang dibutuhkan The local system ran out of resources (e.g., too many sockets) Sistem lokal telah kehabisan sumber daya (mis. terlalu banyak socket) The socket operation timed out Pengoperasian socket telah melampaui batas waktu The datagram was larger than the operating system's limit Datagram lebih besar dari batas yang dimiliki sistem operasi An error occurred with the network (Possibly someone pulled the plug?) Terjadi kesalahan pada jaringan (Mungkin seseorang mencabut sambungannya?) The address specified with socket.bind() is already in use and was set to be exclusive Alamat yang ditentukan dengan socket.bind() sedang digunakan dan telah disetel eksklusif The address specified to socket.bind() does not belong to the host Alamat yang ditentukan dengan socket.bind() bukanlah milik host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Pengoperasian socket yang diminta tidak didukung oleh sistem operasi lokal (mis. tiada dukungan IPv6) The socket is using a proxy, and the proxy requires authentication Socket tersebut menggunakan sebuah proxy yang membutuhkan otentikasi The SSL/TLS handshake failed Proses negosiasi SSL/TLS gagal The last operation attempted has not finished yet (still in progress in the background) Pengoperasian terakhir masih diupayakan dan belum selesai (masih berlangsung di latar sistem) Could not contact the proxy server because the connection to that server was denied Tidak dapat menghubungi server proxy karena sambungan ke server tersebut ditolak The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Sambungan ke server proxy ditutup secara tak terduga (sebelum sambungan ke peer akhir terjadi) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Sambungan ke server proxy telah melampaui batas waktu atau server proxy berhenti merespon saat tahapan otentikasi. The proxy address set with setProxy() was not found Alamat proxy yang telah ditentukan dengan setProxy() tidak ditemukan An unidentified error occurred Terjadi suatu kesalahan yang tak teridentifikasi Not connected Tidak tersambung Connecting Menyambungkan Connected Tersambung Getting status Mendapatkan status Off Padam Initialize in progress Inisialisasi sedang berlangsung Power in standby Daya sedang siaga Warmup in progress Pemanasan sedang berlangsung Power is on Daya sedang hidup Cooldown in progress Pendinginan sedang berlangsung Projector Information available Informasi Proyektor tersedia Sending data Mengirim data Received data Data yang diterima The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Negosiasi sambungan dengan server proxy gagal karena respon dari server proxy tidak dapat dipahami OpenLP.ProjectorEdit Name Not Set Nama Belum Ditetapkan You must enter a name for this entry.<br />Please enter a new name for this entry. Anda harus masukkan sebuah nama untuk entri ini.<br />Silakan masukkan sebuah nama untuk entri ini. Duplicate Name Duplikasi Nama OpenLP.ProjectorEditForm Add New Projector Tambahkan Proyektor Baru Edit Projector Sunting Proyektor IP Address Alamat IP Port Number Nomor Port PIN PIN Name Nama Location Lokasi Notes Catatan Database Error Kesalahan Basis-Data There was an error saving projector information. See the log for the error Terjadi kesalahan saat menyimpan informasi proyektor. Lihatlah log untuk kesalahan tersebut OpenLP.ProjectorManager Add Projector Tambahkan Proyektor Add a new projector Tambahkan sebuah proyektor baru Edit Projector Sunting Proyektor Edit selected projector Sunting proyektor terpilih Delete Projector Hapus Proyektor Delete selected projector Hapus proyektor terpilih Select Input Source Pilih Sumber Masukan Choose input source on selected projector Pilih sumber masukan pada proyektor terpilih View Projector Tinjau Proyektor View selected projector information Tinjau informasi proyektor terpilih Connect to selected projector Sambungkan ke proyektor terpilih Connect to selected projectors Sambungkan ke proyektor-proyektor terpilih Disconnect from selected projectors Putus sambungan dari proyektor-proyektor terpilih Disconnect from selected projector Putus sambungan dari proyektor terpilih Power on selected projector Hidupkan proyektor terpilih Standby selected projector Siagakan proyektor terpilih Put selected projector in standby Siagakan proyektor terpilih Blank selected projector screen Kosongkan layar proyektor terplih Show selected projector screen Tampilkan layar proyektor terpilih &View Projector Information &Tinjau Informasi Proyektor &Edit Projector &Sunting Proyektor &Connect Projector &Sambungkan Proyektor D&isconnect Projector &Putus-sambungan Proyektor Power &On Projector Hidupkan &Proyektor Power O&ff Projector Padamkan &Proyektor Select &Input Pilih &Masukan Edit Input Source Sunting Sumber Masukan &Blank Projector Screen &Kosongkan Layar Proyektor &Show Projector Screen &Tampilkan Layar Proyektor &Delete Projector &Hapus Proyektor Name Nama IP IP Port Port Notes Catatan Projector information not available at this time. Informasi proyektor saat ini tidak tersedia. Projector Name Nama Proyektor Manufacturer Pembuat Model Model Other info Info lainnya Power status Status daya Shutter is Posisi shutter: Closed Tutup Current source input is Sumber masukan saat ini adalah Lamp Lampu On Hidup Off Padam Hours Hitungan jam No current errors or warnings Tidak ada kesalahan atau peringatan pada saat ini Current errors/warnings Kesalahan/peringatan saat ini Projector Information Informasi Proyektor No message Tak ada pesan Not Implemented Yet Belum Diimplementasikan Delete projector (%s) %s? Hapus proyektor (%s) %s? Are you sure you want to delete this projector? Anda yakin ingin menghapus proyektor ini? OpenLP.ProjectorPJLink Fan Kipas Lamp Lampu Temperature Suhu Cover Penutup Filter Filter Other Lainnya OpenLP.ProjectorTab Projector Proyektor Communication Options Opsi Komunikasi Connect to projectors on startup Sambungkan ke proyektor saat memulai OpenLP Socket timeout (seconds) Batas waktu socket (detik) Poll time (seconds) Waktu Poll (detik) Tabbed dialog box Kotak dialog multi-tab Single dialog box Kotak dialog tunggal OpenLP.ProjectorWizard Duplicate IP Address Duplikasi Alamat IP Invalid IP Address Alamat IP Tidak Valid Invalid Port Number Nomor Port Tidak Valid OpenLP.ScreenList Screen Layar primary Utama OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Mulai</strong>: %s <strong>Length</strong>: %s <strong>Durasi</strong>: %s [slide %d] [salindia %d] OpenLP.ServiceItemEditForm Reorder Service Item Susun-Ulang Butir Layanan OpenLP.ServiceManager Move to &top Pindahkan ke &puncak Move item to the top of the service. Pindahkan butir ke puncak daftar Layanan. Move &up Naikkan Move item up one position in the service. Naikkan butir satu posisi pada daftar Layanan. Move &down Turunkan Move item down one position in the service. Turunkan butir satu posisi pada daftar Layanan. Move to &bottom Pindahkan ke &dasar Move item to the end of the service. Pindahkan butir ke akhir daftar Layanan. &Delete From Service &Hapus dari Layanan Delete the selected item from the service. Hapus butir terpilih dari Layanan. &Add New Item &Tambahkan Butir Baru &Add to Selected Item &Tambahkan ke Butir Terpilih &Edit Item &Sunting Butir &Reorder Item &Susun-Ulang Butir &Notes &Catatan &Change Item Theme &Ubah Tema Butir File is not a valid service. Berkas bukanlah Layanan yang valid. Missing Display Handler Penangan Tayang Hilang Your item cannot be displayed as there is no handler to display it Butir tidak dapat ditayangkan karena tidak ada penangan untuk menayangkannya Your item cannot be displayed as the plugin required to display it is missing or inactive Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau nonaktif &Expand all &Kembangkan semua Expand all the service items. Kembangkan seluruh butir Layanan. &Collapse all &Kempiskan semua Collapse all the service items. Kempiskan seluruh butir Layanan. Open File Membuka Berkas Moves the selection down the window. Pindahkan pilihan ke bawah jendela. Move up Naikkan Moves the selection up the window. Pindahkan pilihan ke atas jendela. Go Live Tayangkan Send the selected item to Live. Tayangkan butir terpilih. &Start Time &Waktu Mulai Show &Preview Tampilkan &Pratinjau Modified Service Layanan Termodifikasi The current service has been modified. Would you like to save this service? Layanan sekarang telah termodifikasi. Ingin menyimpan Layanan ini? Custom Service Notes: Catatan Layanan Kustom: Notes: Catatan : Playing time: Waktu permainan: Untitled Service Layanan Tanpa Judul File could not be opened because it is corrupt. Berkas tidak dapat dibuka karena rusak. Empty File Berkas Kosong This service file does not contain any data. Berkas Layanan ini tidak berisi data apapun. Corrupt File Berkas Rusak Load an existing service. Muat Layanan yang ada saat ini. Save this service. Simpan Layanan ini. Select a theme for the service. Pilih suatu tema untuk Layanan Slide theme Tema salindia Notes Catatan Edit Sunting Service copy only Salinan Layanan saja Error Saving File Kesalahan Saat Menyimpan Berkas There was an error saving your file. Terjadi kesalahan saat menyimpan berkas Anda. Service File(s) Missing (Beberapa) Berkas Layanan Hilang &Rename... &Namai-ulang... Create New &Custom Slide Buat Salindia &Kustom Baru &Auto play slides &Mainkan otomatis salindia Auto play slides &Loop Mainkan otomatis salindia &Berulang Auto play slides &Once Mainkan otomatis salindia &Sekali &Delay between slides &Penundaan antar salindia OpenLP Service Files (*.osz *.oszl) Berkas Layanan OpenLP (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) Berkas Layanan OpenLP (*.osz);; Berkas Layanan OpenLP - lite (*.oszl) OpenLP Service Files (*.osz);; Berkas Layanan OpenLP (*.osz);; File is not a valid service. The content encoding is not UTF-8. Berkas bukanlah Layanan yang valid. Pengodean kontennya bukan UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Berkas layanan yang Anda coba buka adalah dalam format lama. Silakan menyimpannya dengan OpenLP 2.0.2 atau lebih tinggi. This file is either corrupt or it is not an OpenLP 2 service file. Berkas ini rusak atau bukan suatu berkas layanan OpenLP 2. &Auto Start - inactive &Mulai Otomatis - nonaktif &Auto Start - active &Mulai Otomatis - aktif Input delay Penundaan masukan Delay between slides in seconds. Penundaan antar salindia dalam hitungan detik. Rename item title Namai-ulang judul butir Title: Judul An error occurred while writing the service file: %s Terjadi kesalahan saat menulis berkas layanan: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. (Beberapa) berkas berikut dalam Layanan telah hilang: %s Berkas-berkas ini akan dihapus apabila Anda lanjutkan menyimpan. OpenLP.ServiceNoteForm Service Item Notes Catatan Butir Layanan OpenLP.SettingsForm Configure OpenLP Mengkonfigurasi OpenLP OpenLP.ShortcutListDialog Action Aksi Shortcut Pintasan Duplicate Shortcut Duplikasi Pintasan The shortcut "%s" is already assigned to another action, please use a different shortcut. Pintasan "%s" sudah diterapkan untuk aksi lain, silakan gunakan Pintasan yang berbeda. Alternate Alternatif Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Pilih suatu aksi dan klik salah satu tombol di bawah ini untuk menentukan, berturut-turut, pintasan utama atau pintasan alternatif yang baru. Default Bawaan Custom Kustom Capture shortcut. Menentukan pintasan. Restore the default shortcut of this action. Mengembalikan pintasan bawaan untuk aksi ini. Restore Default Shortcuts Mengembalikan Pintasan Bawaan Do you want to restore all shortcuts to their defaults? Apakah Anda ingin mengembalikan semua pintasan ke bawaan-nya masing-masing? Configure Shortcuts Mengkonfigurasi Pintasan OpenLP.SlideController Hide Sembunyikan Go To Tuju Ke Blank Screen Layar Kosong Blank to Theme Kosongkan jadi Tema Show Desktop Tampilkan Desktop Previous Service Layanan Sebelumnya Next Service Layanan Selanjutnya Escape Item Butir Keluar Move to previous. Pindah ke sebelumnya. Move to next. Pindah ke selanjutnya. Play Slides Mainkan Salindia Delay between slides in seconds. Penundaan antar salindia dalam hitungan detik. Move to live. Pindah ke Tayang. Add to Service. Tambahkan ke Layanan. Edit and reload song preview. Sunting dan muat-ulang pratinjau lagu. Start playing media. Mulai mainkan media. Pause audio. Sela audio. Pause playing media. Sela media yang sedang dimainkan. Stop playing media. Stop media yang sedang dimainkan. Video position. Posisi video. Audio Volume. Volume Audio. Go to "Verse" Tuju ke "Bait" Go to "Chorus" Tuju ke "Refrain" Go to "Bridge" Tuju ke "Bridge" Go to "Pre-Chorus" Tuju ke "Pra-Refrain" Go to "Intro" Tuju ke "Intro" Go to "Ending" Tuju ke "Ending" Go to "Other" Tuju ke "Lainnya" Previous Slide Salindia Sebelumnya Next Slide Salindia Selanjutnya Pause Audio Sela Audio Background Audio Audio Latar Go to next audio track. Tuju ke trek audio selanjutnya. Tracks Trek OpenLP.SourceSelectForm Select Projector Source Pilih Sumber Proyektor Edit Projector Source Text Sunting Teks Sumber Proyektor Ignoring current changes and return to OpenLP Abaikan perubahan saat ini dan kembali ke OpenLP Delete all user-defined text and revert to PJLink default text Hapus semua teks yang-ditetapkan-pengguna dan kembalikan ke teks bawaan PJLink Discard changes and reset to previous user-defined text Batalkan perubahan dan setel-ulang ke teks yang-ditetapkan-pengguna sebelumnya Save changes and return to OpenLP Simpan perubahan dan kembali ke OpenLP Delete entries for this projector Hapus entri untuk proyektor ini Are you sure you want to delete ALL user-defined source input text for this projector? Anda yakin ingin menghapus SEMUA teks sumber masukan yang-ditetapkan-pengguna untuk proyektor ini? OpenLP.SpellTextEdit Spelling Suggestions Saran Ejaan Formatting Tags Label Pemformatan Language: Bahasa: OpenLP.StartTimeForm Theme Layout Tata-Letak Tema The blue box shows the main area. Kotak biru menunjukkan area utama. The red box shows the footer. Kotak merah menunjukkan Catatan Kaki. OpenLP.StartTime_form Item Start and Finish Time Butir Waktu Mulai & Selesai Hours: Hitungan jam: Minutes: Hitungan menit: Seconds: Hitungan detik: Start Mulai Finish Selesai Length Durasi Time Validation Error Kesalahan Validasi Waktu Finish time is set after the end of the media item Waktu selesai disetel setelah akhir butir media Start time is after the finish time of the media item Waktu mulai diatur setelah waktu selesai butir media OpenLP.ThemeForm (approximately %d lines per slide) (sekitar %d baris per salindia) OpenLP.ThemeManager Create a new theme. Buat suatu tema baru. Edit Theme Sunting Tema Edit a theme. Sunting suatu tema. Delete Theme Hapus Tema Delete a theme. Hapus suatu tema. Import Theme Impor Tema Import a theme. Impor suatu tema. Export Theme Ekspor Tema Export a theme. Ekspor suatu tema. &Edit Theme &Sunting Tema &Delete Theme &Hapus Tema Set As &Global Default Setel Sebagai &Bawaan Global %s (default) %s (bawaan) You must select a theme to edit. Anda harus memilih suatu tema untuk disunting. You are unable to delete the default theme. Anda tidak dapat menghapus tema bawaan. You have not selected a theme. Anda belum memilih suatu tema. Save Theme - (%s) Simpan Tema - (%s) Theme Exported Tema Telah Diekspor Your theme has been successfully exported. Tema pilihan Anda berhasil diekspor. Theme Export Failed Ekspor Tema Gagal Select Theme Import File Pilih Berkas Tema Untuk Diimpor File is not a valid theme. Berkas bukan suatu tema yang valid. &Copy Theme &Salin Tema &Rename Theme &Namai-ulang Berkas &Export Theme &Ekspor Tema You must select a theme to rename. Anda harus memilih suatu tema untuk dinamai-ulang. Rename Confirmation Konfirmasi Penamaan-ulang Rename %s theme? Namai-ulang tema %s? You must select a theme to delete. Anda harus memilih suatu tema untuk dihapus. Delete Confirmation Konfirmasi Penghapusan Delete %s theme? Hapus tema %s? Validation Error Kesalahan Validasi A theme with this name already exists. Suatu tema dengan nama ini sudah ada. Copy of %s Copy of <theme name> Salinan %s Theme Already Exists Tema Sudah Ada Theme %s already exists. Do you want to replace it? Tema %s sudah ada. Anda ingin menggantinya? The theme export failed because this error occurred: %s Ekspor tema gagal karena terjadi kesalahan berikut: %s OpenLP Themes (*.otz) Tema OpenLP (*.otz) %s time(s) by %s %s kali oleh %s Unable to delete theme Tidak dapat menghapus tema Theme is currently used %s Tema yang digunakan sekarang %s OpenLP.ThemeWizard Theme Wizard Wisaya Tema Welcome to the Theme Wizard Selamat Datang di Wisaya Tema Set Up Background Siapkan Latar Set up your theme's background according to the parameters below. Siapkan latar tema Anda berdasarkan parameter di bawah ini. Background type: Jenis latar: Gradient Gradien Gradient: Gradien: Horizontal Horisontal Vertical Vertikal Circular Sirkular Top Left - Bottom Right Kiri Atas - Kanan Bawah Bottom Left - Top Right Kiri Bawah - Kanan Atas Main Area Font Details Rincian Fon di Area Utama Define the font and display characteristics for the Display text Tetapkan karakteristik fon dan tampilan untuk teks Tampilan Font: Fon: Size: Ukuran: Line Spacing: Jarak antar Baris: &Outline: &Garis Besar: &Shadow: &Bayangan: Bold Tebal Italic Miring Footer Area Font Details Rincian Fon di Catatan Kaki Define the font and display characteristics for the Footer text Tetapkan karakteristik fon dan tampilan untuk teks Catatan Kaki Text Formatting Details Rincian Pemformatan Teks Allows additional display formatting information to be defined Izinkan informasi dari format tampilan tambahan untuk ditetapkan Horizontal Align: Sejajarkan Horisontal: Left Kiri Right Kanan Center Tengah Output Area Locations Lokasi Area Keluaran &Main Area &Area Utama &Use default location &Gunakan lokasi bawaan X position: Posisi X: px pks Y position: Posisi Y: Width: Lebar: Height: Tinggi: Use default location Gunakan lokasi bawaan Theme name: Nama tema: Edit Theme - %s Sunting Tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Wisaya ini akan membantu Anda untuk membuat dan menyunting tema Anda. Klik tombol Selanjutnya di bawah ini untuk memulai proses dengan menyiapkan latar Anda. Transitions: Transisi: &Footer Area &Area Catatan Kaki Starting color: Warna mulai: Ending color: Warna akhir: Background color: Warna latar: Justify Justifikasi Layout Preview Pratinjau Tata-Letak Transparent Transparan Preview and Save Pratinjau dan Simpan Preview the theme and save it. Pratinjau tema dan simpan. Background Image Empty Gambar Latar Kosong Select Image Pilih Gambar Theme Name Missing Nama Tema Hilang There is no name for this theme. Please enter one. Tidak ada nama untuk tema ini. Silakan masukkan suatu nama. Theme Name Invalid Nama Tema Tidak Valid Invalid theme name. Please enter one. Nama Tema Tidak Valid. Silakan masukkan suatu nama yang valid. Solid color Warna pekat color: warna: Allows you to change and move the Main and Footer areas. Izinkan Anda untuk mengubah dan memindahkan area Utama dan Catatan Kaki. You have not selected a background image. Please select one before continuing. Anda belum memilih suatu gambar latar. Silakan pilih satu sebelum melanjutkan. OpenLP.ThemesTab Global Theme Tema Global Theme Level Tingkatan Tema S&ong Level Tingkatan Lagu Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Gunakan tema dari setiap lagu dalam basis-data. Jika sebuah lagu tidak memiliki tema yang terkait dengannya, tema Layanan akan digunakan. Jika Layanan tidak memiliki tema, tema global akan digunakan. &Service Level &Tingkatan Layanan Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Gunakan tema dari Layanan, mengesampingkan apapun tema lagu individual. Jika Layanan tidak memiliki tema, tema global akan digunakan. &Global Level &Tingkatan Global Use the global theme, overriding any themes associated with either the service or the songs. Gunakan tema global, mengesampingkan apapun tema yang terkait dengan Layanan atau lagu. Themes Tema Universal Settings Setelan Universal &Wrap footer text &Sembunyikan teks Catatan Kaki OpenLP.Ui Delete the selected item. Hapus butir terpilih. Move selection up one position. Naikkan pilihan satu posisi. Move selection down one position. Turunkan pilihan satu posisi. &Vertical Align: &Sejajarkan Vertikal: Finished import. Impor selesai. Format: Format: Importing Mengimpor Importing "%s"... Mengimpor "%s"... Select Import Source Pilih Sumber Impor Select the import format and the location to import from. Pilih format impor dan lokasi sumber. Open %s File Buka Berkas %s %p% %p% Ready. Siap. Starting import... Memulai impor... You need to specify at least one %s file to import from. A file type e.g. OpenSong Anda harus menentukan setidaknya satu berkas %s untuk diimpor. Welcome to the Bible Import Wizard Selamat Datang di Wisaya Impor Alkitab Welcome to the Song Export Wizard Selamat Datang di Wisaya Ekspor Lagu Welcome to the Song Import Wizard Selamat Datang di Wisaya Impor Lagu Author Singular Pengarang Authors Plural Pengarang © Copyright symbol. © Song Maintenance Pengelolaan Lagu Topic Singular Topik Topics Plural Topik Title and/or verses not found Judul dan/atau bait-bait tidak ditemukan XML syntax error Kesalahan sintaks XML Welcome to the Bible Upgrade Wizard Selamat Datang di Wisaya Pemutakhiran Alkitab Open %s Folder Buka Folder %s You need to specify one %s file to import from. A file type e.g. OpenSong Anda harus menentukan sebuah berkas %s untuk diimpor. You need to specify one %s folder to import from. A song format e.g. PowerSong Anda harus menentukan sebuah folder %s untuk diimpor. Importing Songs Mengimpor Lagu Welcome to the Duplicate Song Removal Wizard Selamat datang di Wisaya Penghapus Lagu Duplikat Written by Ditulis oleh Author Unknown Pengarang Tak Diketahui About Tentang &Add &Tambahkan Add group Tambahkan grup Advanced Lanjutan All Files Semua Berkas Automatic Otomatis Background Color Warna Latar Bottom Dasar Browse... Menelusuri... Cancel Batal CCLI number: Nomor CCLI: Create a new service. Buat suatu Layanan baru. Confirm Delete Konfirmasi Penghapusan Continuous Kontinu Default Bawaan Default Color: Warna Bawaan: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Layanan %d-%m-%Y %H-%M &Delete &Hapus Display style: Gaya tampilan: Duplicate Error Kesalahan Duplikasi &Edit &Sunting Empty Field Bidang Kosong Error Kesalahan Export Ekspor File Berkas File Not Found Berkas Tidak Ditemukan File %s not found. Please try selecting it individually. Berkas %s tidak ditemukan. Silakan coba memilih secara individu. pt Abbreviated font pointsize unit pn Help Bantuan h The abbreviated unit for hours jam Invalid Folder Selected Singular Folder Terpilih Tidak Valid Invalid File Selected Singular Berkas Terpilih Tidak Valid Invalid Files Selected Plural Beberapa Berkas Terpilih Tidak Valid Image Gambar Import Impor Layout style: Gaya tata-letak: Live Tayang Live Background Error Kesalahan Latar Tayang Live Toolbar Bilah Alat Tayang Load Muat Manufacturer Singular Pembuat Manufacturers Plural Para Pembuat Model Singular Model Models Plural Model-model m The abbreviated unit for minutes mnt Middle Tengah New Baru New Service Layanan Baru New Theme Tema Baru Next Track Trek Selanjutnya No Folder Selected Singular Tidak Ada Folder Terpilih No File Selected Singular Tidak Ada Berkas Terpilih No Files Selected Plural Tidak Ada Satupun Berkas Terpilih No Item Selected Singular Tidak Ada Butir Terpilih No Items Selected Plural Tidak Ada Satupun Butir Terpilih OpenLP is already running. Do you wish to continue? OpenLP sudah berjalan. Anda ingin melanjutkan? Open service. Buka Layanan. Play Slides in Loop Mainkan Semua Salindia Berulang-ulang Play Slides to End Mainkan Semua Salindia sampai Akhir Preview Pratinjau Print Service Cetak Layanan Projector Singular Proyektor Projectors Plural Proyektor-proyektor Replace Background Ganti Latar Replace live background. Ganti Latar Tayang. Reset Background Setel-Ulang Latar Reset live background. Setel-Ulang latar Tayang. s The abbreviated unit for seconds dtk Save && Preview Simpan && Pratinjau Search Penelusuran Search Themes... Search bar place holder text Telusuri Tema... You must select an item to delete. Anda harus memilih suatu butir untuk dihapus. You must select an item to edit. Anda harus memilih suatu butir untuk disunting. Settings Setelan Save Service Simpan Layanan Service Layanan Optional &Split Pisah &Opsional Split a slide into two only if it does not fit on the screen as one slide. Pisah salindia menjadi dua jika tidak muat pada layar sebagai satu salindia. Start %s Mulai %s Stop Play Slides in Loop Stop Mainkan Semua Salindia Berulang-ulang Stop Play Slides to End Stop Mainkan Semua Salindia sampai Akhir Theme Singular Tema Themes Plural Tema Tools Alat Top Puncak Unsupported File Tidak Ada Dukungan untuk Berkas Verse Per Slide Ayat per Salindia Verse Per Line Ayat per Baris Version Versi View Tinjau View Mode Mode Tinjauan CCLI song number: Nomor lagu CCLI: Preview Toolbar Bilah Alat Pratinjau OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Ganti latar tayang tidak tersedia jika pemutar WebKit dinonaktifkan. Songbook Singular Buku Lagu Songbooks Plural Buku-buku Lagu OpenLP.core.lib %s and %s Locale list separator: 2 items %s dan %s %s, and %s Locale list separator: end %s, dan %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Antarmuka pemilihan sumber PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Plugin Presentasi</strong><br />Plugin presentasi menyediakan kemampuan untuk menampilkan presentasi dengan sejumlah program berbeda. Pemilihan program presentasi yang ada tersedia untuk pengguna dalam kotak tarik-turun. Presentation name singular Presentasi Presentations name plural Presentasi Presentations container title Presentasi Load a new presentation. Muat suatu presentasi baru. Delete the selected presentation. Hapus presentasi terpilih. Preview the selected presentation. Pratinjau presentasi terpilih. Send the selected presentation live. Tayangkan presentasi terpilih. Add the selected presentation to the service. Tambahkan presentasi terpilih ke Layanan. PresentationPlugin.MediaItem Select Presentation(s) Pilih (beberapa) Presentasi Automatic Otomatis Present using: Tampilkan dengan: File Exists Berkas Sudah Ada A presentation with that filename already exists. Suatu presentasi dengan nama itu sudah ada. This type of presentation is not supported. Tidak ada dukungan untuk presentasi jenis ini. Presentations (%s) Presentasi (%s) Missing Presentation Presentasi Hilang The presentation %s is incomplete, please reload. Presentasi %s tidak lengkap, silakan muat-ulang. The presentation %s no longer exists. Presentasi %s tidak ada lagi. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Terjadi kesalahan dalam integrasi PowerPoint dan presentasi akan dihentikan. Silakan mulai-ulang presentasi jika Anda ingin menampilkannya. PresentationPlugin.PresentationTab Available Controllers Pengontrol yang Tersedia %s (unavailable) %s (tidak tersedia) Allow presentation application to be overridden Izinkan aplikasi presentasi untuk digantikan PDF options Opsi PDF Use given full path for mudraw or ghostscript binary: Gunakan sepenuhnya jalur yang diberikan untuk biner mudraw atau ghostscript: Select mudraw or ghostscript binary. Pilih biner mudraw atau ghostscript. The program is not ghostscript or mudraw which is required. Program tersebut bukanlah ghostscript ataupun mudraw yang dibutuhkan. PowerPoint options Opsi PowerPoint Clicking on a selected slide in the slidecontroller advances to next effect. Klik di salindia terpilih pada pengontrol salindia akan melanjutkannya ke efek berikutnya. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Ijinkan PowerPoint mengendalikan ukuran dan posisi jendela presentasi (solusi atas permasalahan di Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Plugin Remote</strong><br/>Plugin Remote menyediakan kemampuan untuk mengirimkan pesan ke versi OpenLP yang sedang berjalan pada suatu komputer berbeda via peramban web atau melalui API remote. Remote name singular Remote Remotes name plural Remote Remote container title Remote Server Config Change Konfigurasi Server Berubah Server configuration changes will require a restart to take effect. Perubahan konfigurasi server butuh pemulaian-ulang agar dapat diterapkan. RemotePlugin.Mobile Service Manager Manajer Layanan Slide Controller Pengontrol Salindia Alerts Peringatan-Peringatan Search Penelusuran Home Beranda Refresh Segarkan-ulang Blank Kosong Theme Tema Desktop Desktop Show Tampilkan Prev Sebelumnya Next Selanjutnya Text Teks Show Alert Tampilkan Peringatan Go Live Tayangkan Add to Service Tambahkan ke Layanan Add &amp; Go to Service Tambahkan &amp; Tuju ke Layanan No Results Tidak Ada Hasil Options Opsi Service Layanan Slides Salindia Settings Setelan Remote Remote Stage View Tinjuan Bertahap Live View Tinjauan Tayang RemotePlugin.RemoteTab Serve on IP address: Tugaskan di alamat IP: Port number: Nomor port: Server Settings Setelan Server Remote URL: URL remote: Stage view URL: URL tinjauan bertahap: Display stage time in 12h format Tampilkan waktu bertahap dalam format 12 jam Android App Apl. Android Live view URL: URL tinjauan Tayang: HTTPS Server Server HTTPS Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Tidak dapat menemukan sertifikat SSL. Server HTTPS tidak akan tersedia kecuali sertifikat SSL ditemukan. Silakan lihat panduan untuk informasi lebih lanjut. User Authentication Otentikasi Pengguna User id: ID Pengguna: Password: Kata sandi: Show thumbnails of non-text slides in remote and stage view. Tampilkan thumbnail dari salindia yang bukan teks pada remote dan tinjauan bertahap. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Pindai kode QR atau klik <a href="%s">unduh</a> untuk memasang aplikasi Android dari Google Play. SongUsagePlugin &Song Usage Tracking &Pelacakan Penggunaan Lagu &Delete Tracking Data &Hapus Data Pelacakan Delete song usage data up to a specified date. Hapus data penggunaan lagu sampai tanggal tertentu. &Extract Tracking Data &Ekstrak Data Pelacakan Generate a report on song usage. Hasilkan suatu laporan mengenai penggunaan lagu Toggle Tracking Ganti Pelacakan Toggle the tracking of song usage. Ganti pelacakan penggunaan lagu <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Plugin PenggunaanLagu</strong><br />Plugin ini melacak penggunaan lagu dalam Layanan. SongUsage name singular PenggunaanLagu SongUsage name plural PenggunaanLagu SongUsage container title PenggunaanLagu Song Usage Penggunaan Lagu Song usage tracking is active. Pelacakan penggunaan lagu aktif. Song usage tracking is inactive. Pelacakan penggunaan lagu nonaktif. display tampilkan printed tercetak SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Hapus Data Penggunaan Lagu Delete Selected Song Usage Events? Hapus Event Penggunaan Lagu Terpilih? Are you sure you want to delete selected Song Usage data? Anda yakin ingin menghapus data Penggunaan Lagu terpilih? Deletion Successful Penghapusan Berhasil Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Pilih tanggal sampai dengan mana data penggunaan lagu akan dihapus. Semua data terekam sebelum tanggal ini akan dihapus secara permanen. All requested data has been deleted successfully. Semua data yang diminta telah berhasil dihapus. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Ekstraksi Penggunaan Lagu Select Date Range Pilih Kisaran Tanggal to ke Report Location Laporkan Lokasi Output File Location Lokasi Berkas Keluaran usage_detail_%s_%s.txt rincian_penggunaan_%s_%s.txt Report Creation Pembuatan Laporan Report %s has been successfully created. Laporan %s telah berhasil dibuat. Output Path Not Selected Jalur Keluaran Belum Terpilih You have not set a valid output location for your song usage report. Please select an existing path on your computer. Anda belum menetapkan lokasi keluaran yang valid untuk laporan penggunaan lagu. Silakan pilih suatu jalur yang ada di komputer Anda. Report Creation Failed Pembuatan Laporan Gagal An error occurred while creating the report: %s Terjadi kesalahan saat membuat laporan: %s SongsPlugin &Song &Lagu Import songs using the import wizard. Impor lagu dengan wisaya impor <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Plugin Lagu</strong><br />Plugin Lagu menyediakan kemampuan untuk menampilkan dan mengelola lagu. &Re-index Songs &Indeks-ulang Lagu Re-index the songs database to improve searching and ordering. Indeks-ulang basis-data lagu untuk mempercepat penelusuran dan penyusunan. Reindexing songs... Mengindeks-ulang Lagu... Arabic (CP-1256) Arab (CP-1256) Baltic (CP-1257) Baltik (CP-1257) Central European (CP-1250) Eropa Tengah (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Yunani (CP-1253) Hebrew (CP-1255) Ibrani (CP-1255) Japanese (CP-932) Jepang (CP-932) Korean (CP-949) Korea (CP-949) Simplified Chinese (CP-936) Mandarin - Sederhana (CP-936) Thai (CP-874) Thailand (CP-874) Traditional Chinese (CP-950) Mandarin - Tradisional (CP-950) Turkish (CP-1254) Turki (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Eropa Barat (CP-1252) Character Encoding Pengodean Karakter The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Setelan halaman-kode ini bertanggung-jawab atas representasi karakter yang benar. Biasanya pilihan yang dipilih sebelumnya sudah baik. Please choose the character encoding. The encoding is responsible for the correct character representation. Silakan pilih pengodean karakter. Pengodean ini bertanggung-jawab atas representasi karakter yang benar. Song name singular Lagu Songs name plural Lagu Songs container title Lagu Exports songs using the export wizard. Ekspor lagu dengan wisaya ekspor. Add a new song. Tambahkan sebuah lagu baru. Edit the selected song. Sunting lagu terpilih. Delete the selected song. Hapus lagu terpilih. Preview the selected song. Pratinjau lagu terpilih. Send the selected song live. Tayangkan lagu terpilih. Add the selected song to the service. Tambahkan lagu terpilih ke Layanan Reindexing songs Mengindeks-ulang lagu CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Impor lagu dari layanan CCLI SongSelect. Find &Duplicate Songs Temukan &Lagu Duplikat Find and remove duplicate songs in the song database. Temukan dan hapus lagu duplikat di basis-data lagu. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Teks Music Author who wrote the music of a song Musik Words and Music Author who wrote both lyrics and music of a song Teks dan Musik Translation Author who translated the song Terjemahan SongsPlugin.AuthorsForm Author Maintenance Pengelolaan Pengarang Display name: Nama tampilan: First name: Nama depan: Last name: Nama belakang: You need to type in the first name of the author. Anda harus masukkan nama depan pengarang. You need to type in the last name of the author. Anda harus masukkan nama belakang pengarang. You have not set a display name for the author, combine the first and last names? Anda belum menetapkan nama tampilan pengarang. Kombinasikan nama depan dan belakang? SongsPlugin.CCLIFileImport The file does not have a valid extension. Berkas tidak memiliki ekstensi yang valid. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Berkas lagu DreamBeam tidak valid. Label DreamSong hilang. SongsPlugin.EasyWorshipSongImport Administered by %s Dikelola oleh %s "%s" could not be imported. %s "%s" tidak dapat diimpor. %s Unexpected data formatting. Pemformatan data tak terduga. No song text found. Teks lagu tidak ditemukan. [above are Song Tags with notes imported from EasyWorship] [di atas adalah Label Lagu beserta catatannya yang diimpor dari EasyWorship] This file does not exist. Berkas ini tidak ada. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Tidak dapat menemukan berkas "Songs.MB". Berkas tersebut harus berada pada folder yang sama dengan "Songs.DB". This file is not a valid EasyWorship database. Berkas ini bukanlah sebuah basis-data EasyWorship yang valid. Could not retrieve encoding. Pengodean tak dapat diperoleh kembali. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Nama Kitab Kustom SongsPlugin.EditSongForm Song Editor Penyunting Lagu &Title: &Judul: Alt&ernate title: Judul &alternatif: &Lyrics: &Lirik: &Verse order: &Susunan bait: Ed&it All Sunting &Semua Title && Lyrics Judul && Lirik &Add to Song &Tambahkan ke Lagu &Remove &Hapus A&dd to Song Tambahkan ke Lagu R&emove Singkirkan New &Theme Tema &Baru Copyright Information Informasi Hak Cipta Comments Komentar Theme, Copyright Info && Comments Tema, Info Hak Cipta, && Komentar Add Author Tambahkan Pengarang This author does not exist, do you want to add them? Pengarang ini tidak ada, Anda ingin menambahkannya? This author is already in the list. Pengarang ini sudah ada dalam daftar. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Anda belum memilih pengarang yang valid. Pilihlah suatu pengarang dari daftar, atau ketik suatu pengarang baru dan klik tombol "Tambahkan Pengarang ke Lagu" untuk menambahkan pengarang baru tersebut. Add Topic Tambahkan Topik This topic does not exist, do you want to add it? Topik ini tidak ada, Anda ingin menambahkannya? This topic is already in the list. Topik ini sudah ada dalam daftar. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Anda belum memilih topik yang valid. Pilihlah suatu topik dari daftar, atau ketik sebuah topik baru dan klik tombol "Tambahkan Topik ke Lagu" untuk menambahkan topik baru tersebut. You need to type in a song title. Anda harus mengetikkan judul lagu. You need to type in at least one verse. Anda harus mengetikkan setidaknya satu bait. You need to have an author for this song. Anda harus masukkan suatu pengarang untuk lagu ini. Linked Audio Audio Terhubung Add &File(s) Tambahkan &(beberapa) Berkas Add &Media Tambahkan &Media Remove &All Hapus &Semua Open File(s) Buka (beberapa) Berkas <strong>Warning:</strong> Not all of the verses are in use. <strong>Peringatan:</strong> Tidak semua bait tersebut digunakan. <strong>Warning:</strong> You have not entered a verse order. <strong>Peringatan:</strong> Anda belum memasukkan susunan bait. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Tidak ada bait yang sesuai dengan "%(invalid)s". Entri yang valid adalah %(valid)s. Silakan masukan bait-bait tersebut dan pisahkan dengan spasi. Invalid Verse Order Susunan Bait Tidak Valid &Edit Author Type &Sunting Jenis Pengarang Edit Author Type Sunting Jenis Pengarang Choose type for this author Pilih jenis untuk pengarang ini There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Tidak ada bait yang sesuai dengan "%(invalid)s". Entri yang valid adalah %(valid)s. Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. &Manage Authors, Topics, Songbooks &Kelola Pengarang, Topik, Buku Lagu Add &to Song Tambahkan &ke Lagu Re&move Ha&pus Authors, Topics && Songbooks Pengarang, Topik, && Buku Lagu Add Songbook Tambahkan Buku Lagu This Songbook does not exist, do you want to add it? Buku lagu ini tidak ada, Anda ingin menambahkannya? This Songbook is already in the list. Buku Lagu ini sudah ada dalam daftar. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Anda belum memilih Buku Lagu yang valid. Pilihlah sebuah Buku Lagu dari daftar, atau ketik sebuah Buku Lagu baru dan klik tombol "Tambahkan ke Lagu" untuk menambahkan Buku Lagu baru tersebut. SongsPlugin.EditVerseForm Edit Verse Sunting Bait &Verse type: &Jenis bait: &Insert &Sisipkan Split a slide into two by inserting a verse splitter. Pisah salindia menggunakan pemisah bait. SongsPlugin.ExportWizardForm Song Export Wizard Wisaya Ekspor Lagu Select Songs Pilih Lagu Check the songs you want to export. Centang lagu-lagu yang ingin Anda ekspor: Uncheck All Hapus Semua Centang Check All Centang Semua Select Directory Pilih Direktori Directory: Direktori: Exporting Mengekspor Please wait while your songs are exported. Silakan tunggu selama lagu diekspor. You need to add at least one Song to export. Anda harus masukkan setidaknya satu lagu untuk diekspor. No Save Location specified Lokasi Penyimpanan Belum Ditentukan Starting export... Memulai ekspor... You need to specify a directory. Anda harus menentukan sebuah direktori. Select Destination Folder Pilih Folder Tujuan Select the directory where you want the songs to be saved. Pilih direktori untuk menyimpan lagu. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Wisaya ini akan membantu Anda mengekspor lagu ke format lagu penyembahan <strong>OpenLyrics</strong> yang terbuka dan gratis. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Berkas lagu Foilpresenter tidak valid. Bait tidak ditemukan. SongsPlugin.GeneralTab Enable search as you type Gunakan penelusuran saat Anda mengetikkannya SongsPlugin.ImportWizardForm Select Document/Presentation Files Pilih Dokumen / Berkas Presentasi Song Import Wizard Wisaya Impor Lagu This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Wisaya ini akan membantu Anda mengimpor lagu dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. Generic Document/Presentation Dokumen / Presentasi Generik Add Files... Tambahkan Berkas... Remove File(s) Hapus (beberapa) Berkas Please wait while your songs are imported. Silakan tunggu selama lagu diimpor. Words Of Worship Song Files Berkas Lagu Words of Worship Songs Of Fellowship Song Files Berkas Lagu Song Of Fellowship SongBeamer Files Berkas SongBeamer SongShow Plus Song Files Berkas Lagu SongShow Plus Foilpresenter Song Files Berkas Lagu Foilpresenter Copy Salin Save to File Simpan jadi Berkas The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Pengimpor Songs of Fellowhip telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Pengimpor dokumen / presentasi generik telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. OpenLyrics Files Berkas OpenLyrics CCLI SongSelect Files Berkas CCLI SongSelect EasySlides XML File Berkas XML EasySlides EasyWorship Song Database Basis-Data Lagu EasyWorship DreamBeam Song Files Berkas Lagu DreamBeam You need to specify a valid PowerSong 1.0 database folder. Anda harus menentukan folder basis-data PowerSong 1.0 yang valid. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Pertama konversi dahulu basis-data ZionWorx ke berkas teks CSV, seperti yang dijelaskan pada <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Panduan Pengguna</a>. SundayPlus Song Files Berkas Lagu SundayPlus This importer has been disabled. Pengimpor telah dinonaktifkan. MediaShout Database Basis-data MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Pengimpor MediaShout hanya didukung dalam Windows. Pengimpor telah dinonaktifkan karena ada modul Python yang hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "pyodbc". SongPro Text Files Berkas Teks SongPro SongPro (Export File) SongPro (Berkas Ekspor) In SongPro, export your songs using the File -> Export menu Pada SongPro, ekspor lagu menggunakan menu Berkas -> Ekspor EasyWorship Service File Berkas Layanan EasyWorship WorshipCenter Pro Song Files Berkas Lagu WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Pengimpor WorshipCenter Pro hanya didukung dalam Windows. Pengimpor telah dinonaktifkan karena ada modul Python yang hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "pyodbc". PowerPraise Song Files Berkas Lagu PowerPraise PresentationManager Song Files Berkas Lagu PresentationManager ProPresenter 4 Song Files Berkas Lagu ProPresenter 4 Worship Assistant Files Berkas Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Dalam Worship Assistant, ekspor Basis-Data Anda ke sebuah berkas CSV. OpenLyrics or OpenLP 2 Exported Song Lagu OpenLyrics atau OpenLP 2.0 yang telah diekspor OpenLP 2 Databases Basis-data OpenLP 2 LyriX Files Berkas LyriX LyriX (Exported TXT-files) Lyrix (berkas TXT yang telah diekspor) VideoPsalm Files Berkas VideoPsalm VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s Buku lagu VideoPsalm biasanya terletak di %s SongsPlugin.LyrixImport Error: %s Kesalahan: %s SongsPlugin.MediaFilesForm Select Media File(s) Pilih (beberapa) Berkas Media Select one or more audio files from the list below, and click OK to import them into this song. Pilih satu atau lebih berkas audio dari daftar di bawah, dan klik OK untuk mengimpornya ke lagu ini. SongsPlugin.MediaItem Titles Judul Lyrics Lirik CCLI License: Lisensi CCLI: Entire Song Keseluruhan Lagu Maintain the lists of authors, topics and books. Kelola daftar pengarang, topik, dan buku. copy For song cloning salin Search Titles... Telusuri Judul... Search Entire Song... Telusuri Seluruh Lagu... Search Lyrics... Telusuri Lirik... Search Authors... Telusuri Pengarang... Are you sure you want to delete the "%d" selected song(s)? Anda yakin ingin menghapus "%d" lagu() terpilih ini? Search Songbooks... Telusuri Buku Lagu... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Tidak dapat membuka basis-data MediaShout SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Bukan basis-data lagu OpenLP 2.0 yang valid. SongsPlugin.OpenLyricsExport Exporting "%s"... Mengekspor "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Berkas lagu OpenSong tidak valid. Label lagu hilang. SongsPlugin.PowerSongImport No songs to import. Tidak ada lagu untuk diimpor. Verses not found. Missing "PART" header. Bait tidak ditemukan. Header "PART" hilang. No %s files found. Berkas %s tidak ditemukan. Invalid %s file. Unexpected byte value. Berkas %s tidak valid. Nilai byte tak terduga. Invalid %s file. Missing "TITLE" header. Berkas %s tidak valid. Header "TITLE" hilang. Invalid %s file. Missing "COPYRIGHTLINE" header. Berkas %s tidak valid. Header "COPYRIGHTLINE" hilang. SongsPlugin.SongBookForm &Name: &Nama: &Publisher: &Penerbit: You need to type in a name for the book. Anda harus mengetikkan nama untuk buku lagu. Songbook Maintenance Pengelolaan Buku Lagu SongsPlugin.SongExportForm Your song export failed. Ekspor lagu gagal. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Ekspor selesai. Untuk mengimpor berkas ini gunakan pengimpor <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s Ekspor lagu gagal karena terjadi kesalahan berikut: %s SongsPlugin.SongImport copyright hak cipta The following songs could not be imported: Lagu berikut tidak dapat diimpor: Cannot access OpenOffice or LibreOffice Tidak dapat mengakses OpenOffice atau LibreOffice Unable to open file Tidak dapat membuka berkas File not found Berkas tidak ditemukan SongsPlugin.SongMaintenanceForm Could not add your author. Tidak dapat menambahkan pengarang. This author already exists. Pengarang sudah ada. Could not add your topic. Tidak dapat menambahkan topik. This topic already exists. Topik sudah ada. Could not add your book. Tidak dapat menambahkan buku lagu. This book already exists. Buku lagu sudah ada. Could not save your changes. Tidak dapat menyimpan perubahan. Could not save your modified author, because the author already exists. Tidak dapat menyimpan pengarang yang telah dimodifikasi, karena sudah ada. Could not save your modified topic, because it already exists. Tidak dapat menyimpan topik yang telah dimodifikasi, karena sudah ada. Delete Author Hapus Pengarang Are you sure you want to delete the selected author? Anda yakin ingin menghapus pengarang terpilih? This author cannot be deleted, they are currently assigned to at least one song. Pengarang tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. Delete Topic Hapus Topik Are you sure you want to delete the selected topic? Anda yakin ingin menghapus topik terpilih? This topic cannot be deleted, it is currently assigned to at least one song. Topik tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. Delete Book Hapus Buku Lagu Are you sure you want to delete the selected book? Anda yakin ingin menghapus buku lagu terpilih? This book cannot be deleted, it is currently assigned to at least one song. Buku lagu tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Pengarang %s sudah ada. Anda ingin membuat lagu dengan pengarang %s menggunakan pengarang %s yang sudah ada? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Topik %s sudah ada. Anda ingin membuat lagu dengan topik %s menggunakan topik %s yang sudah ada? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Buku lagu %s sudah ada. Anda ingin membuat lagu dengan buku lagu %s menggunakan buku lagu %s yang sudah ada? SongsPlugin.SongSelectForm CCLI SongSelect Importer Pengimpor CCLI SongSelect <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Catatan:</strong> Sambungan internet dibutuhkan untuk mengimpor lagu-lagu dari CCLI SongSelect. Username: Nama Pengguna: Password: Kata sandi: Save username and password Simpan nama pengguna dan kata sandi Login Masuk Search Text: Telusuri Teks: Search Penelusuran Found %s song(s) %s lagu (- lagu) ditemukan Logout Keluar View Tinjau Title: Judul Author(s): Pengarang (- pengarang) : Copyright: Hak Cipta: CCLI Number: Nomor CCLI: Lyrics: Lirik: Back Kembali Import Impor More than 1000 results Lebih dari 1000 hasil Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Penelusuran Anda menghasilkan lebih dari 1000 hasil sehingga dihentikan. Silakan perbaiki penelusuran Anda untuk mendapatkan hasil yang lebih baik. Logging out... Menuju keluar... Save Username and Password Simpan Nama Pengguna dan Kata Sandi WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. PERINGATAN: Menyimpan nama pengguna dan kata sandi Anda TIDAKLAH AMAN, kata sandi Anda akan tersimpan dalam TEKS BIASA. Klik Ya untuk menyimpannya atau Tidak untuk membatalkannya. Error Logging In Kesalahan Saat Hendak Masuk There was a problem logging in, perhaps your username or password is incorrect? Terjadi kesalahan saat hendak masuk, mungkin nama pengguna atau kata sandi Anda salah? Song Imported Lagu Telah Diimpor Incomplete song Lagu yang tidak lengkap This song is missing some information, like the lyrics, and cannot be imported. Lagu ini kehilangan beberapa informasi, kemungkinan liriknya, dan tidak dapat diimpor. Your song has been imported, would you like to import more songs? Lagu Anda telah diimpor, Anda ingin mengimpor lagu-lagu lain? Stop Stop SongsPlugin.SongsTab Songs Mode Mode Lagu Display verses on live tool bar Tampilkan semua bait pada Bilah Alat Tayang Update service from song edit Perbarui Layanan dari penyuntingan lagu Import missing songs from service files Impor lagu yang hilang dari berkas Layanan Display songbook in footer Tampilkan buku lagu di Catatan Kaki Display "%s" symbol before copyright info Tampilkan "%s" simbol sebelum info hak cipta SongsPlugin.TopicsForm Topic Maintenance Pengelolaan Topik Topic name: Nama topik: You need to type in a topic name. Anda harus mengetikkan nama topik. SongsPlugin.VerseType Verse Bait Chorus Refrain Bridge Bridge Pre-Chorus Pra-Refrain Intro Intro Ending Ending Other Lainnya SongsPlugin.VideoPsalmImport Error: %s Kesalahan: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Berkas lagu Words of Wordship tidak valid. "%s" header.WoW File\nSong Words hilang Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Berkas lagu Words of Worship tidak valid. "%s" string.CSongDoc::CBlock hilang SongsPlugin.WorshipAssistantImport Error reading CSV file. Kesalahan pembacaan berkas CSV. Line %d: %s Baris %d: %s Decoding error: %s Kesalahan pendekodean: %s File not valid WorshipAssistant CSV format. Berkas bukan berupa format CSV Worship Assistant yang valid. Record %d Rekaman %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Tidak dapat tersambung dengan basis-data WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Kesalahan pembacaan berkas CSV. File not valid ZionWorx CSV format. Berkas bukan berupa format CSV ZionWorx yang valid. Line %d: %s Baris %d: %s Decoding error: %s Kesalahan pendekodean: %s Record %d Rekaman %d Wizard Wizard Wisaya This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Wisaya ini akan membantu Anda untuk menghapus lagu duplikat dari basis-data lagu. Anda akan memiliki kesempatan untuk meninjau setiap lagu yang berpotensi duplikat sebelum dihapus. Jadi tidak ada lagu yang akan dihapus tanpa persetujuan eksplisit Anda. Searching for duplicate songs. Menelusuri lagu-lagu duplikat. Please wait while your songs database is analyzed. Silakan tunggu selama basis-data lagu Anda dianalisa. Here you can decide which songs to remove and which ones to keep. Di sini Anda dapat menentukan lagu yang ingin dihapus ataupun disimpan. Review duplicate songs (%s/%s) Meninjau lagu-lagu duplikat (%s/%s) Information Informasi No duplicate songs have been found in the database. Lagu duplikat tidak ditemukan di basis-data. OpenLP-2.4/resources/i18n/ru.ts0000644000175000017500000167123412657640340015356 0ustar raoulraoul AlertsPlugin &Alert О&повещение Show an alert message. Показать текÑÑ‚ оповещениÑ. Alert name singular Оповещение Alerts name plural ÐžÐ¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ Alerts container title ÐžÐ¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>ОповещениÑ</strong><br />Плагин управлÑет выводом на Ñкран различных оповещений. AlertsPlugin.AlertForm Alert Message Оповещение Alert &text: ТекÑÑ‚ &оповещениÑ: &New &Добавить &Save &Сохранить Displ&ay &Показать Display && Cl&ose Показать и &закрыть New Alert Добавление Ð¾Ð¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ &Parameter: П&араметр: No Parameter Found Параметр не найден You have not entered a parameter to be replaced. Do you want to continue anyway? Ð’Ñ‹ не указали параметр Ð´Ð»Ñ Ð·Ð°Ð¼ÐµÐ½Ñ‹ в текÑте. Ð’Ñе равно продолжить? No Placeholder Found МеÑто вÑтавки параметра не найдено The alert text does not contain '<>'. Do you want to continue anyway? Ð’ текÑте Ð¾Ð¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ Ð½Ðµ указано меÑто Ð´Ð»Ñ Ð²Ñтавки параметра (<>). Ð’Ñе равно продолжить? You haven't specified any text for your alert. Please type in some text before clicking New. Ð’Ñ‹ не указали текÑÑ‚ оповещениÑ. ПожалуйÑта введите текÑÑ‚ перед добавлением. AlertsPlugin.AlertsManager Alert message created and displayed. ТекÑÑ‚ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ñоздан и показан. AlertsPlugin.AlertsTab Font Параметры Font name: Шрифт: Font color: Цвет текÑта: Background color: Цвет фона: Font size: Размер шрифта: Alert timeout: Ð’Ñ€ÐµÐ¼Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ: BiblesPlugin &Bible &Ð‘Ð¸Ð±Ð»Ð¸Ñ Bible name singular Ð‘Ð¸Ð±Ð»Ð¸Ñ Bibles name plural Библии Bibles container title Библии No Book Found Книги не найдены No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ðе было найдено подходÑщей книги в Ñтой Библии. Проверьте что вы правильно указали название книги. Import a Bible. Импортировать Библию. Add a new Bible. Добавить Библию. Edit the selected Bible. Изменить выбранную Библию. Delete the selected Bible. Удалить выбранную Библию. Preview the selected Bible. ПроÑмотреть выбранную Библию. Send the selected Bible live. Показать выбранную Библию в прÑмом Ñфире. Add the selected Bible to the service. Добавить выбранную Библию в Ñлужение. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Библии</strong><br />Плагин предоÑтавлÑет возможноÑть показывать отрывки из Библии во Ð²Ñ€ÐµÐ¼Ñ ÑлужениÑ. &Upgrade older Bibles &Обновить Ñтарые Библии Upgrade the Bible databases to the latest format. Обновить формат базы данных Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸. Genesis Бытие Exodus ИÑход Leviticus Левит Numbers ЧиÑла Deuteronomy Второзаконие Joshua ИиÑуÑа Ðавина Judges Судей Ruth Руфь 1 Samuel 1 ЦарÑтв 2 Samuel 2 ЦарÑтв 1 Kings 3 ЦарÑтв 2 Kings 4 ЦарÑтв 1 Chronicles 1 Паралипоменон 2 Chronicles 2 Паралипоменон Ezra Ездры Nehemiah Ðеемии Esther ЕÑфирь Job Иова Psalms ПÑалтирь Proverbs Притчи Ecclesiastes ЕкклеÑиаÑÑ‚ Song of Solomon ПеÑÐ½Ñ ÐŸÐµÑней Isaiah ИÑаии Jeremiah Иеремии Lamentations Плач Иеремии Ezekiel Ð˜ÐµÐ·ÐµÐºÐ¸Ð¸Ð»Ñ Daniel Даниила Hosea ОÑии Joel Ð˜Ð¾Ð¸Ð»Ñ Amos ÐмоÑа Obadiah ÐÐ²Ð´Ð¸Ñ Jonah Ионы Micah ÐœÐ¸Ñ…ÐµÑ Nahum Ðаума Habakkuk Ðввакума Zephaniah Софонии Haggai ÐÐ³Ð³ÐµÑ Zechariah Захарии Malachi Малахии Matthew От ÐœÐ°Ñ‚Ñ„ÐµÑ Mark От Марка Luke От Луки John От Иоанна Acts ДеÑÐ½Ð¸Ñ Romans РимлÑнам 1 Corinthians 1 КоринфÑнам 2 Corinthians 2 КоринфÑнам Galatians Галатам Ephesians ЕфеÑÑнам Philippians Филиппийцам Colossians КолоÑÑÑнам 1 Thessalonians 1 ФеÑÑалоникийцам 2 Thessalonians 2 ФеÑÑалоникийцам 1 Timothy 1 Тимофею 2 Timothy 2 Тимофею Titus Титу Philemon Филимону Hebrews ЕвреÑм James Иакова 1 Peter 1 Петра 2 Peter 2 Петра 1 John 1 Иоанна 2 John 2 Иоанна 3 John 3 Иоанна Jude Иуды Revelation Откровение Judith Юдифь Wisdom ПремудроÑти Соломона Tobit Товита Sirach ПремудроÑти ИиÑуÑа, Ñына Сирахова Baruch Варуха 1 Maccabees 1 Маккавеев 2 Maccabees 2 Маккавеев 3 Maccabees 3 Маккавеев 4 Maccabees 4 Маккавеев Rest of Daniel Ð”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ðº Даниилу Rest of Esther Ð”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ðº ЕÑфири Prayer of Manasses Молитва МанаÑÑии Letter of Jeremiah ПоÑлание Иеремии Prayer of Azariah Молитва Ðзарии Susanna СуÑанна Bel Бел и Дракон 1 Esdras 1 Ездры 2 Esdras 2 Ездры : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 Ñ V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 С verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 Стих verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 Стихи - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 до , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 и end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse окончание BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Ðеобходимо указать верÑию Библии. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Ðеобходимо указать авторÑкие права Библии. Переводы Библии, находÑщиеÑÑ Ð² Ñвободном доÑтупе, должны быть помечены как таковые. Bible Exists Ð‘Ð¸Ð±Ð»Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует This Bible already exists. Please import a different Bible or first delete the existing one. Эта Ð‘Ð¸Ð±Ð»Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует. ПожалуйÑта, импортируйте другую Библию или Ñначала удалите ÑущеÑтвующую. You need to specify a book name for "%s". Ðеобходимо указать название книги Ð´Ð»Ñ "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Ðекорректное название книги "%s". Цифры могут быть указаны только в начале названиÑ, и поÑле них должен быть Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ один не цифровой Ñимвол. Duplicate Book Name Повторное название книги The Book Name "%s" has been entered more than once. Ðазвание книги "%s" введено более одного раза. BiblesPlugin.BibleManager Scripture Reference Error Ðе указана Ñтрока поиÑка Web Bible cannot be used Ð¡ÐµÑ‚ÐµÐ²Ð°Ñ Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð½Ðµ может быть иÑпользована Text Search is not available with Web Bibles. ТекÑтовый поиÑк недоÑтупен Ð´Ð»Ñ Ñетевых Библий. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Ðеобходимо указать ключевое Ñлово Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка. Ключевые Ñлова можно разделить пробелами, чтобы иÑкать фразу целиком, или запÑтыми, чтобы иÑкать каждое из указанных ключевых Ñлов. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Ð’ наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ð¸ одна Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð½Ðµ уÑтановлена. ПожалуйÑта, воÑпользуйтеÑÑŒ маÑтером импорта, чтобы уÑтановить одну или неÑколько Библий. No Bibles Available Библии отÑутÑтвуют Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Ðекорректный формат ÑÑылки. ПожалуйÑта, убедитеÑÑŒ, что ÑÑылка ÑоответÑтвует одному из шаблонов: Книга Глава Книга Глава%(range)sГлава Книга Глава%(verse)sСтих%(range)sСтих Книга Глава%(verse)sСтих%(range)sСтих%(list)sСтих%(range)sСтих Книга Глава%(verse)sСтих%(range)sСтих%(list)sГлава%(verse)sСтих%(range)sСтих Книга Глава%(verse)sСтих%(range)sГлава%(verse)sСтих BiblesPlugin.BiblesTab Verse Display Отображение Ñтихов Only show new chapter numbers Показывать только номера новых глав Bible theme: Тема Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸: No Brackets Без Ñкобок ( And ) ( XXX ) { And } { XXX } [ And ] [ XXX ] Note: Changes do not affect verses already in the service. Обратите внимание: Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð½Ðµ повлиÑÑŽÑ‚ на Ñтихи, уже добавленные в Ñлужение. Display second Bible verses Показать альтернативный перевод Custom Scripture References ПользовательÑкие ÑÑылки на текÑÑ‚ Библии Verse Separator: Символ Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñтихов: Range Separator: Символ Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ð½Ñ‚ÐµÑ€Ð²Ð°Ð»Ð¾Ð²: List Separator: Символ Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ ÑпиÑков: End Mark: Символ окончаниÑ: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Можно определить неÑколько Ñимволов Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñтихов. Они должны быть указаны через вертикальную черту "|". ПожалуйÑта, удалите Ñтот текÑÑ‚, чтобы иÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию. English РуÑÑкий Default Bible Language Язык Библии по умолчанию Book name language in search field, search results and on display: Язык, на котором показывать название книги в поле поиÑка, результатах поиÑка и на Ñкране: Bible Language Язык Библии Application Language Язык Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Show verse numbers Показывать номера Ñтихов BiblesPlugin.BookNameDialog Select Book Name Выберите название книги Current name: Текущее название: Corresponding name: СоответÑтвующее название: Show Books From Показать книги из Old Testament Ветхий Завет New Testament Ðовый Завет Apocrypha Ðпокрифы The following book name cannot be matched up internally. Please select the corresponding name from the list. Следующее название книги не может быть ÑопоÑтавлено внутренне. ПожалуйÑта, выберите ÑоответÑтвующее название из ÑпиÑка. BiblesPlugin.BookNameForm You need to select a book. Ðеобходимо выбрать книгу. BiblesPlugin.CSVBible Importing books... %s Импорт книг... %s Importing verses... done. Импорт Ñтихов... готово. BiblesPlugin.EditBibleForm Bible Editor Редактор Библии License Details УÑÐ»Ð¾Ð²Ð¸Ñ Ð»Ð¸Ñ†ÐµÐ½Ð·Ð¸Ð¸ Version name: ВерÑиÑ: Copyright: ÐвторÑкие права: Permissions: РазрешениÑ: Default Bible Language Язык Библии по умолчанию Book name language in search field, search results and on display: Язык имени книги в поле поиÑка, результатах поиÑка и на диÑплее: Global Settings Глобальные наÑтройки Bible Language Язык Библии Application Language Язык Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ English РуÑÑкий This is a Web Download Bible. It is not possible to customize the Book Names. ÐаÑтройка названий книг недоÑтупна Ð´Ð»Ñ Ñетевых Библий. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. ПользовательÑкие Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ ÐºÐ½Ð¸Ð³ иÑпользуютÑÑ, еÑли в наÑтройках Библии выбран "Язык Библии". BiblesPlugin.HTTPBible Registering Bible and loading books... РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸ и загрузка книг... Registering Language... РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ñзыка... Importing %s... Importing <book name>... Импорт %s... Download Error Ошибка ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Возникла проблема при Ñкачивании выбранных Ñтихов. ПожалуйÑта, проверьте подключение к Интернету. Parse Error Ошибка обработки There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Возникла проблема при раÑпаковке выбранных Ñтихов. BiblesPlugin.ImportWizardForm Bible Import Wizard МаÑтер импорта Библии This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Этот маÑтер предназначен Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° Библий из различных форматов. Ðажмите кнопку Далее, чтобы перейти к выбору формата Библии. Web Download Загрузка из Ñети Location: РаÑположение: Crosswalk Crosswalk BibleGateway BibleGateway Bible: БиблиÑ: Download Options Параметры ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ Server: Сервер: Username: Пользователь: Password: Пароль: Proxy Server (Optional) ПрокÑи Ñервер (опционально) License Details ОпиÑание лицензии Set up the Bible's license details. Укажите уÑÐ»Ð¾Ð²Ð¸Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸. Version name: ВерÑиÑ: Copyright: ÐвторÑкие права: Please wait while your Bible is imported. ПроизводитÑÑ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚ Библий. ПожалуйÑта, подождите. You need to specify a file with books of the Bible to use in the import. Ðеобходимо указать файл Ñо ÑпиÑком книг Библии Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°. You need to specify a file of Bible verses to import. Ðеобходимо указать файл Ñ Ñодержимым Ñтихов Библии Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°. You need to specify a version name for your Bible. Ðеобходимо указать верÑию Библии. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Ðеобходимо указать авторÑкие права Библии. Переводы Библии, находÑщиеÑÑ Ð² Ñвободном доÑтупе, должны быть помечены как таковые. Bible Exists Ð‘Ð¸Ð±Ð»Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует This Bible already exists. Please import a different Bible or first delete the existing one. Эта Ð‘Ð¸Ð±Ð»Ð¸Ñ ÑƒÐ¶Ðµ ÑущеÑтвует. ПожалуйÑта, импортируйте другую Библию или Ñначала удалите ÑущеÑтвующую. Your Bible import failed. Ðе удалоÑÑŒ импортировать Библию. CSV File Файл CSV Bibleserver Bibleserver Permissions: РазрешениÑ: Bible file: Файл Библии: Books file: Файл книг: Verses file: Файл Ñтихов: Registering Bible... РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸. ПожалуйÑта, помните о том, что Ñтихи будут ÑкачиватьÑÑ Ð¿Ð¾ мере необходимоÑти, поÑтому Ð´Ð»Ñ Ð¸Ñ… иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½ÐµÐ¾Ð±Ñ…Ð¾Ð´Ð¸Ð¼Ð¾ подключение к Интернету. Click to download bible list Ðажмите, чтобы получить ÑпиÑок Библий Download bible list Получить ÑпиÑок Библий Error during download Ошибки в процеÑÑе ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ An error occurred while downloading the list of bibles from %s. Возникла ошибка при Ñкачивании ÑпиÑка Библий из %s. BiblesPlugin.LanguageDialog Select Language Выберите Ñзык OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Ðе удалоÑÑŒ определить Ñзык Ñтого перевода Библии. Выберите Ñзык перевода из ÑпиÑка. Language: Язык: BiblesPlugin.LanguageForm You need to choose a language. Ðеобходимо выбрать Ñзык. BiblesPlugin.MediaItem Quick ПоиÑк Find: ПоиÑк: Book: Книга: Chapter: Глава: Verse: Стих: From: Ðачало: To: Конец: Text Search ПоиÑк по текÑту Second: Ðльтернативный: Scripture Reference СÑылка на текÑÑ‚ Библии Toggle to keep or clear the previous results. СохранÑть или очищать предыдущие результаты поиÑка. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Ðе разрешаетÑÑ Ñовмещать результаты поиÑка одного Ñтиха Ñ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð°Ð¼Ð¸ поиÑка неÑкольких Ñтихов. ОчиÑтить результаты поиÑка и начать новый поиÑк? Bible not fully loaded. Ð‘Ð¸Ð±Ð»Ð¸Ñ Ð·Ð°Ð³Ñ€ÑƒÐ¶ÐµÐ½Ð° не полноÑтью. Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Ðльтернативный перевод Библии не Ñодержит вÑех Ñтихов, которые ÑодержатÑÑ Ð² оÑновном переводе. Будут показаны только те Ñтихи, которые найдены в обоих вариантах перевода. Будет пропущено Ñтихов: %d. Search Scripture Reference... ПоиÑк по ÑÑылке на текÑÑ‚ Библии... Search Text... ПоиÑк по текÑту Библии... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Удалить Библию "%s" из OpenLP? Ð”Ð»Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð½Ð¾Ð³Ð¾ иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸, необходимо будет Ñнова ее импортироать. Advanced Ручной выбор BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ðекорректный формат файла Библии. Файлы в формате OpenSong могут быть Ñжаты. Ðеобходимо раÑпаковать их перед импортом. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Ðекорректный формат файла Библии. Попробуйте иÑпользовать формат Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Импорт %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Удаление неиÑпользуемых тегов (Ñто может занÑть некоторое времÑ)... Importing %(bookname)s %(chapter)s... Импорт %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Выберите папку Ð´Ð»Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии Bible Upgrade Wizard МаÑтер Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸ This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Этот маÑтер предназначен Ð´Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð¼ÐµÑŽÑ‰Ð¸Ñ…ÑÑ Ð‘Ð¸Ð±Ð»Ð¸Ð¹ Ñ Ð¿Ñ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð¸Ñ… верÑий OpenLP 2. Ðажмите кнопку Далее, чтобы начать процеÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ. Select Backup Directory Выберите каталог Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии Please select a backup directory for your Bibles Выберите каталог Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии ваших Библий Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Предыдущие верÑии OpenLP 2.0 не Ñмогут иÑпользовать обновленные Библии. Резервное копирование ваших Библий производитÑÑ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы вы могли проÑто Ñкопировать файлы в каталог данных OpenLP в Ñлучае необходимоÑти возврата на предыдущую верÑию OpenLP. ИнÑтрукции о том, как воÑÑтановить файлы, могут быть найдены на Ñайте в разделе <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. ПожалуйÑта, укажите каталог Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии ваших Библий. Backup Directory: Каталог резервной копии: There is no need to backup my Bibles ВыполнÑть резервное копирование Библий нет необходимоÑти Select Bibles Выберите Библии Please select the Bibles to upgrade Выберите Библии Ð´Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Upgrading Обновление Please wait while your Bibles are upgraded. ПроизводитÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ðµ Библий. ПожалуйÑта, подождите. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Ðе удалоÑÑŒ Ñоздать резервную копию. Ð”Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии ваших Библий требуетÑÑ Ð´Ð¾Ñтуп на запиÑÑŒ к указанный каталог. Upgrading Bible %s of %s: "%s" Failed Обновление Библий %s из %s: "%s" Ошибка Upgrading Bible %s of %s: "%s" Upgrading ... Обновление Библий %s из %s: "%s" Обновление ... Download Error Ошибка ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ To upgrade your Web Bibles an Internet connection is required. Ð”Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñетевых Библий необходимо подключение к Интернету. Upgrading Bible %s of %s: "%s" Upgrading %s ... Обновление Библий %s из %s: "%s" Обновление %s ... Upgrading Bible %s of %s: "%s" Complete Обновление Библий %s из %s: "%s" Завершено , %s failed Ðе удалоÑÑŒ обновить: %s Upgrading Bible(s): %s successful%s Обновлено Библий: %s.%s Upgrade failed. Обновление не удалоÑÑŒ. You need to specify a backup directory for your Bibles. Ðеобходимо указать каталог Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии ваших Библий. Starting upgrade... Ðачало обновлениÑ... There are no Bibles that need to be upgraded. Ðет Библий, которым необходимо обновление. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Обновлено Библий: %(success)d.%(failed_text)s Стихи Ñетевых Библий будут ÑкачиватьÑÑ Ð¿Ð¾ мере необходимоÑти, поÑтому при их иÑпользовании может потребоватьÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ðµ к Интернету. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Ðекорректный формат файла Библии. Файлы в формате Zefania могут быть Ñжаты. Ðеобходимо раÑпаковать их перед импортом. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Импорт %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Произвольный Ñлайд Custom Slides name plural Произвольные Ñлайды Custom Slides container title Произвольные Ñлайды Load a new custom slide. Загрузить новый произвольный Ñлайд. Import a custom slide. Импортировать произвольный Ñлайд. Add a new custom slide. Добавить новый произвольный Ñлайд. Edit the selected custom slide. Изменить выбранный произвольный Ñлайд. Delete the selected custom slide. Удалить выбранный произвольный Ñлайд. Preview the selected custom slide. ПроÑмотреть выбранный произвольный Ñлайд. Send the selected custom slide live. Показать выбранный произвольный Ñлайд в прÑмом Ñфире. Add the selected custom slide to the service. Добавить выбранный произвольный Ñлайд в Ñлужение. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Произвольные Ñлайды</strong><br />Плагин предоÑтавлÑет возможноÑть ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¾Ð¸Ð·Ð²Ð¾Ð»ÑŒÐ½Ñ‹Ñ… текÑтовых Ñлайдов, который могут быть показаны подобно Ñлайдам пеÑен. Этот плагин дает больше Ñвободы по Ñравнению Ñ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ пеÑен. CustomPlugin.CustomTab Custom Display Отображение Display footer Показывать подпиÑÑŒ Import missing custom slides from service files Импортировать не найденные произвольные Ñлайды из файла ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ CustomPlugin.EditCustomForm Edit Custom Slides Редактор произвольных Ñлайдов &Title: &Ðазвание: Add a new slide at bottom. Добавить новый Ñлайд. Edit the selected slide. Изменить выбранный Ñлайд. Edit all the slides at once. Редактировать вÑе Ñлайды Ñразу. Split a slide into two by inserting a slide splitter. Ð’Ñтавить разделитель Ñлайда на Ñлучай, еÑли он не будует помещатьÑÑ Ð½Ð° одном Ñкране. The&me: Те&ма: &Credits: &ПодпиÑÑŒ: You need to type in a title. Ðеобходимо ввеÑти название. Ed&it All &Редактировать вÑе Insert Slide Слайд You need to add at least one slide. Ðеобходимо добавить как минимум один Ñлайд. CustomPlugin.EditVerseForm Edit Slide Редактировать Ñлайд CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Удалить выбранные произвольные Ñлайды (выбрано Ñлайдов: %d)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>ИзображениÑ</strong><br />Плагин позволÑет отображать изображениÑ.<br />Одной из отличительных возможноÑтей Ñтого плагина ÑвлÑетÑÑ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñть группировать выбранные изображениÑ, что делает работу Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð¼ количеÑтвом изображений более легкой. Этот плагин также позволÑет показывать Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² режиме Ñлайд-шоу. Ð’ дополнение к Ñтому, Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð· плагина могут быть иÑпользованы, чтобы заменить текущий фон, что позволÑет отображать текÑтовые Ñлементы, такие как пеÑни, Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ñ‹Ð¼ изображением в качеÑтве фона, вмеÑто фона, который указан в теме. Image name singular Изображение Images name plural Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Images container title Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Load a new image. Загрузить новое изображение. Add a new image. Добавить новое изображение. Edit the selected image. Изменить выбранное изображение. Delete the selected image. Удалить выбранное изображение. Preview the selected image. ПроÑмотреть выбранное изображение. Send the selected image live. Показать выбранное изображение в прÑмом Ñфире. Add the selected image to the service. Добавить выбранное изображение в Служение. ImagePlugin.AddGroupForm Add group Добавить группу Parent group: РодительÑÐºÐ°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°: Group name: Ðазвание группы: You need to type in a group name. Ðеобходимо ввеÑти название группы. Could not add the new group. Ðе удалоÑÑŒ добавить новую группу. This group already exists. Эта группа уже ÑущеÑтвует. ImagePlugin.ChooseGroupForm Select Image Group Выберите группу изображений Add images to group: Добавить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² группу: No group Без группы Existing group СущеÑÑ‚Ð²ÑƒÑŽÑ‰Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð° New group ÐÐ¾Ð²Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð° ImagePlugin.ExceptionDialog Select Attachment Выберите вложение ImagePlugin.MediaItem Select Image(s) Выберите изображение(Ñ) You must select an image to replace the background with. Ðеобходимо выбрать изображение Ð´Ð»Ñ Ð·Ð°Ð¼ÐµÐ½Ñ‹ фона. Missing Image(s) ОтÑутÑтвует изображение(Ñ) The following image(s) no longer exist: %s Следующие Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð±Ð¾Ð»ÑŒÑˆÐµ не ÑущеÑтвуют: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Следующие изображений больше не ÑущеÑтвуют: %s Добавить оÑтальные изображениÑ? There was a problem replacing your background, the image file "%s" no longer exists. Возникла проблема при замене фона, файл "%s" больше не ÑущеÑтвует. There was no display item to amend. ОтÑутÑтвует Ñлемент Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ð¹. -- Top-level group -- -- Группа верхнего ÑƒÑ€Ð¾Ð²Ð½Ñ -- You must select an image or group to delete. Ðеобходимо выбрать изображение или группу Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ. Remove group Удалить группу Are you sure you want to remove "%s" and everything in it? Удалить группу"%s" вмеÑте Ñо вÑеми изображениÑми? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Видимый фон Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹ Ñ Ñоотношением Ñторон отличным от Ñкрана. Media.player Audio Ðудио Video Видео VLC is an external player which supports a number of different formats. VLC - Ñто внешний плеер, который поддерживает множеÑтво различных форматов. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit ÑвлÑетÑÑ Ð¼ÐµÐ´Ð¸Ð°-плеером, который работает в браузере. Этот плеер позволÑет выводить текÑÑ‚ поверх видео на Ñкране. This media player uses your operating system to provide media capabilities. Этот медиаплеер иÑпользует операционную ÑиÑтему Ð´Ð»Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð². MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Мультимедиа</strong><br />Плагин предоÑтавлÑет возможноÑть воÑпроизводить различные аудио и видео материалы. Media name singular Мультимедиа Media name plural Мультимедиа Media container title Мультимедиа Load new media. Загрузить новый клип. Add new media. Добавить новый клип. Edit the selected media. Изменить выбранный клип. Delete the selected media. Удалить выбранный клип. Preview the selected media. ПроÑмотреть выбранный клип. Send the selected media live. Показать выбранный клип в прÑмом Ñфире. Add the selected media to the service. Добавить выбранный клип в Ñлужение. MediaPlugin.MediaClipSelector Select Media Clip Выберите клип Source ИÑточник Media path: Путь к клипу: Select drive from list Выберите диÑк из ÑпиÑка Load disc Загрузить диÑк Track Details Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Title: Ðазвание: Audio track: Ðудио дорожка: Subtitle track: Дорожка Ñубтитров: HH:mm:ss.z ЧЧ:мм:ÑÑ.м Clip Range Диапазон Start point: ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ð°Ñ Ñ‚Ð¾Ñ‡ÐºÐ°: Set start point УÑтановить Jump to start point Перейти End point: ÐšÐ¾Ð½ÐµÑ‡Ð½Ð°Ñ Ñ‚Ð¾Ñ‡ÐºÐ°: Set end point УÑтановить Jump to end point Перейти MediaPlugin.MediaClipSelectorForm No path was given Ðе указан путь Given path does not exists Указанный путь не ÑущеÑтвует An error happened during initialization of VLC player Произошла ошибка при инициализации VLC плеера VLC player failed playing the media VLC плеер не Ñмог воÑпроизвеÑти медиа CD not loaded correctly CD не загружен корректно The CD was not loaded correctly, please re-load and try again. CD не был загружен корректно, пожалуйÑта, перезагрузите его и попытайтеÑÑŒ Ñнова. DVD not loaded correctly DVD не загружен корректно The DVD was not loaded correctly, please re-load and try again. DVD не был загружен корректно, пожалуйÑта, перезагрузите его и попытайтеÑÑŒ Ñнова. Set name of mediaclip Укажите Ð¸Ð¼Ñ Ð¼ÐµÐ´Ð¸Ð°ÐºÐ»Ð¸Ð¿Ð° Name of mediaclip: Ð˜Ð¼Ñ Ð¼ÐµÐ´Ð¸Ð°ÐºÐ»Ð¸Ð¿Ð°: Enter a valid name or cancel Введите правильное Ð¸Ð¼Ñ Ð¸Ð»Ð¸ отмените Invalid character Ðеверный Ñимвол The name of the mediaclip must not contain the character ":" Ðазвание медиа-клипа не должны Ñодержать Ñимвол ":" MediaPlugin.MediaItem Select Media Выберите клип You must select a media file to delete. Ðеобходимо выбрать файл Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ. You must select a media file to replace the background with. Ðеобходимо выбрать клип Ð´Ð»Ñ Ð·Ð°Ð¼ÐµÐ½Ñ‹ фона. There was a problem replacing your background, the media file "%s" no longer exists. Файл "%s" Ð´Ð»Ñ Ð·Ð°Ð¼ÐµÐ½Ñ‹ фона не найден. Missing Media File ОтÑутÑтвует файл The file %s no longer exists. Файл %s не ÑущеÑтвует. Videos (%s);;Audio (%s);;%s (*) Видео (%s);;Ðудио (%s);;%s (*) There was no display item to amend. ОтÑутÑтвует Ñлемент Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ð¹. Unsupported File Формат файла не поддерживаетÑÑ Use Player: ИÑпользовать плеер: VLC player required ТребуетÑÑ Ð¿Ð»ÐµÐµÑ€ VLC VLC player required for playback of optical devices Ð”Ð»Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ Ð¾Ð¿Ñ‚Ð¸Ñ‡ÐµÑких диÑков требуетÑÑ Ð¿Ð»ÐµÐµÑ€ VLC Load CD/DVD Загрузить CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Загрузить CD/DVD (поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ при уÑтановленном VLC) The optical disc %s is no longer available. ОптичеÑкий диÑк %s больше не доÑтупен. Mediaclip already saved Клип уже Ñохранен This mediaclip has already been saved Клип уже был Ñохранен MediaPlugin.MediaTab Allow media player to be overridden Разрешить медиа плееру быть переопределенным Start Live items automatically Ðачинать прÑмой Ñфир автоматичеÑки OPenLP.MainWindow &Projector Manager Окно &проекторов OpenLP Image Files Файлы изображений Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Формат Библий был изменен. Ðеобходимо обновить ÑущеÑтвующие Библии. Выполнить обновление прÑмо ÑейчаÑ? Backup Ð ÐµÐ·ÐµÑ€Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? ВерÑÐ¸Ñ OpenLP была обновлена. Выполнить резервное копирование каталога Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸? Backup of the data folder failed! Ðе удалоÑÑŒ выполнить резервное копирование каталога Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸! A backup of the data folder has been created at %s Ð ÐµÐ·ÐµÑ€Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ Ð¿Ð°Ð¿ÐºÐ¸ Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸ была Ñоздана в %s Open Открыт OpenLP.AboutForm Credits БлагодарноÑти License Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ build %s билд %s 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; version 2 of the License. Данный продукт ÑвлÑетÑÑ Ñвободным программным обеÑпечением. Ð’Ñ‹ можете раÑпроÑтранÑть и/или изменÑть его в ÑоответÑтвии Ñ ÑƒÑловиÑми GNU General Public License второй верÑии (GPL v2), опубликованной Free Software Foundation. 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 below for more details. Эта программа раÑпроÑтранÑетÑÑ Ð² надежде, что она будет полезна, но БЕЗ КÐКИХ-ЛИБО ГÐРÐÐТИЙ; даже без подразумеваемой гарантии ТОВÐРÐОЙ ПРИГОДÐОСТИ или ПРИГОДÐОСТИ ДЛЯ ОСОБЫХ ÐУЖД. Детали Ñмотрите ниже. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> — Open Source Lyrics Projection OpenLP — Ñто Ñвободное программное обеÑпечение Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñлайдов пеÑен, Ñтихов из Библии, видео, изображений и даже Ñторонних презентаций (при наличии уÑтановленных Impress, PowerPoint или PowerPoint Viewer) во Ð²Ñ€ÐµÐ¼Ñ Ñ†ÐµÑ€ÐºÐ¾Ð²Ð½Ð¾Ð³Ð¾ проÑÐ»Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ Ð¸Ñпользованием перÑонального компьютера и видео проектора. Сайт проекта: http://openlp.org/ OpenLP разрабатываетÑÑ Ð¸ поддерживаетÑÑ Ð´Ð¾Ð±Ñ€Ð¾Ð²Ð¾Ð»ÑŒÑ†Ð°Ð¼Ð¸. ЕÑли вы хотите оказать помощь в развитии Ñвободного хриÑтианÑкого программного обеÑпечениÑ, пожалуйÑта, раÑÑмотрите возможные варианты учаÑÑ‚Ð¸Ñ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ кнопки ниже. Volunteer ПринÑть учаÑтие Project Lead РуководÑтво проектом (Project Lead) Developers Разработка (Developers) Contributors СодейÑтвие (Contributors) Packagers Сборка (Packagers) Testers ТеÑтирование (Testers) Translators Перевод (Translators) Afrikaans (af) ÐÑ„Ñ€Ð¸ÐºÐ°Ð°Ð½Ñ (af) Czech (cs) ЧешÑкий (cs) Danish (da) ДатÑкий (da) German (de) Ðемецкий (de) Greek (el) ГречеÑкий (el) English, United Kingdom (en_GB) ÐнглийÑкий, Ð’ÐµÐ»Ð¸ÐºÐ¾Ð±Ñ€Ð¸Ñ‚Ð°Ð½Ð¸Ñ (en_GB) English, South Africa (en_ZA) ÐнглийÑкий, Ð®Ð¶Ð½Ð°Ñ Ðфрика (en_ZA) Spanish (es) ИÑпанÑкий (es) Estonian (et) ЭÑтонÑкий (et) Finnish (fi) ФинÑкий (fi) French (fr) ФранцузÑкий (fr) Hungarian (hu) ВенгерÑкий (hu) Indonesian (id) ИндонезийÑкий (id) Japanese (ja) ЯпонÑкий (ja) Norwegian BokmÃ¥l (nb) ÐорвежÑкий (nb) Dutch (nl) ДатÑкий (nl) Polish (pl) ПольÑкий (pl) Portuguese, Brazil (pt_BR) ПортугальÑкий, Ð‘Ñ€Ð°Ð·Ð¸Ð»Ð¸Ñ (pt_BR) Russian (ru) РуÑÑкий (ru) Swedish (sv) ШведÑкий (sv) Tamil(Sri-Lanka) (ta_LK) ТамильÑкий, Шри-Ланка (ta_LK) Chinese(China) (zh_CN) КитайÑкий (zh_CN) Documentation Ð”Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Собрано Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ: Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Ð—Ð°Ð²ÐµÑ€ÑˆÐ°ÑŽÑ‰Ð°Ñ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ð½Ð¾Ñть «Ибо так возлюбил Бог мир, что отдал Сына Своего Единородного, дабы вÑÑкий, верующий в Ðего, не погиб, но имел жизнь вечную» (Ин 3:16) И в завершение, выражаем нашу главную благодарноÑть Богу нашему Отцу за то, что Он отправил Своего Сына умереть на креÑте и оÑвободить Ð½Ð°Ñ Ð¾Ñ‚ греха. Мы предоÑтавлÑем Ñто программное обеÑпечение даром, потому что Бог оÑвободил Ð½Ð°Ñ Ð´Ð°Ñ€Ð¾Ð¼. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings ÐаÑтройки интерфейÑа Number of recent files to display: КоличеÑтво недавних файлов: Remember active media manager tab on startup Запоминать активную вкладку библиотеки при запуÑке Double-click to send items straight to live Ðачинать прÑмой Ñфир по двойному щелчку мыши Expand new service items on creation Разворачивать новый Ñлемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Enable application exit confirmation Запрашивать подтверждение при выходе Mouse Cursor КурÑор мыши Hide mouse cursor when over display window ПрÑтать курÑор мыши на Ñкране прÑмого Ñфира Default Image Изображение по умолчанию Background color: Цвет фона: Image file: Файл изображениÑ: Open File Открыть файл Advanced Дополнительно Preview items when clicked in Media Manager Открывать проÑмотр Ñлементов библиотеки по нажатию мыши Browse for an image file to display. Выбрать файл Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ. Revert to the default OpenLP logo. ВернутьÑÑ Ðº логотипу OpenLP. Default Service Name Ðазвание ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию Enable default service name Предлагать название ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию Date and Time: Дата и времÑ: Monday Понедельник Tuesday Четверг Wednesday Среда Friday ПÑтница Saturday Суббота Sunday ВоÑкреÑенье Now Ð¡ÐµÐ¹Ñ‡Ð°Ñ Time when usual service starts. ВремÑ, в которое обычно начинаетÑÑ Ñлужение. Name: Ðазвание: Consult the OpenLP manual for usage. Формат Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½ в руководÑтве Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ OpenLP. Revert to the default service name "%s". Вернуть название ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию: "%s". Example: Пример: Bypass X11 Window Manager Обходить X11 Window Manager Syntax error. Ошибка ÑинтакÑиÑа. Data Location Хранение данных Current path: Текущий путь: Custom path: Выбранный путь: Browse for new data file location. Выбрать новый каталог Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ…. Set the data location to the default. УÑтановить каталог данных по умолчанию. Cancel Отмена Cancel OpenLP data directory location change. Отменить изменение каталога данных OpenLP. Copy data to new location. Скопировать данные в новый каталог. Copy the OpenLP data files to the new location. Скопировать файлы данных OpenLP в новый каталог.. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ПРЕДУПРЕЖДЕÐИЕ:</strong> Ðовый каталог данных уже Ñодержит файлы данных OpenLP. Эти файлы будут перезапиÑаны в процеÑÑе копированиÑ. Data Directory Error Ðекорректный каталог данных Select Data Directory Location Выберите каталог Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… Confirm Data Directory Change Подтвердите изменение каталога данных Reset Data Directory СброÑить каталог данных Overwrite Existing Data ПерезапиÑать ÑущеÑтвующие данные OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Ðе найден каталог Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼Ð¸ OpenLP. %s ЕÑли каталог находитÑÑ Ð½Ð° Ñъемном ноÑителе, Ñтот ноÑитель должен быть доÑтупен в ÑиÑтеме. Ðажмите «Ðет», чтобы оÑтановить загрузку OpenLP и дать возможноÑть иÑправить проблему вручную. Ðажмите «Да», чтобы ÑброÑить каталог данных на путь по умолчанию. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Изменить каталог Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… OpenLP? Ðовый каталог: %s Каталог данных будет изменен поÑле Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ OpenLP. Thursday Четверг Display Workarounds Проблемы Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸ÐµÐ¼ Use alternating row colours in lists ИÑпользовать различные цвета Ñтрок в ÑпиÑках WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? ПРЕДУПРЕЖДЕÐИЕ: Выбранный каталог Ñодержит файлы данных OpenLP. %s Заменить Ñти файлы текущими файлами данных? Restart Required ТребуетÑÑ Ð¿ÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑк программы This change will only take effect once OpenLP has been restarted. Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²ÑтупÑÑ‚ в Ñилу поÑле перезапуÑка программы. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Сменить каталог данных OpenLP на каталог по умолчанию? Этот каталог будет иÑпользован поÑле Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ OpenLP. OpenLP.ColorButton Click to select a color. Ðажмите, чтобы выбрать цвет. OpenLP.DB RGB RGB Video Видео Digital Digital Storage Storage Network Network RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Storage 1 Storage 2 Storage 2 Storage 3 Storage 3 Storage 4 Storage 4 Storage 5 Storage 5 Storage 6 Storage 6 Storage 7 Storage 7 Storage 8 Storage 8 Storage 9 Storage 9 Network 1 Network 1 Network 2 Network 2 Network 3 Network 3 Network 4 Network 4 Network 5 Network 5 Network 6 Network 6 Network 7 Network 7 Network 8 Network 8 Network 9 Network 9 OpenLP.ExceptionDialog Error Occurred Возникла ошибка Send E-Mail Отправить e-mail Save to File Сохранить в файл Attach File Приложить файл Description characters to enter : %s ОÑталоÑÑŒ Ñимволов Ð´Ð»Ñ Ð²Ð²Ð¾Ð´Ð°: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) ПожалуйÑта, опишите дейÑтвиÑ, которые привели к возникновению ошибки. По возможноÑти иÑпользуйте английÑкий Ñзык. (Минимум 20 Ñимволов) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. УпÑ! К Ñожалению, при работе OpenLP возникла неизвеÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°. ТекÑÑ‚ ниже Ñодержит информацию, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð¼Ð¾Ð¶ÐµÑ‚ быть полезна разработчикам OpenLP. ПожалуйÑта, отправьте его по адреÑу bugs@openlp.org вмеÑте Ñ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ñ‹Ð¼ опиÑанием дейÑтвий, которые привели к возникновению ошибки. ЕÑли ошибка возникла при работе Ñ ÐºÐ°ÐºÐ¸Ð¼Ð¸-то файлами, приложите их тоже. OpenLP.ExceptionForm Platform: %s Платформа: %s Save Crash Report Сохранить отчет об ошибке Text files (*.txt *.log *.text) ТекÑтовый файл (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Переименование файла New File Name: Ðовое Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°: File Copy Копирование файла OpenLP.FirstTimeLanguageForm Select Translation Выберите перевод Choose the translation you'd like to use in OpenLP. Выберите перевод, иÑпользуемый в интерфейÑе OpenLP. Translation: Перевод: OpenLP.FirstTimeWizard Songs ПеÑни First Time Wizard МаÑтер первого запуÑка Welcome to the First Time Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер первого запуÑка Activate required Plugins Выберите необходимые плагины Select the Plugins you wish to use. Выберите плагины, которые хотите иÑпользовать. Bible Ð‘Ð¸Ð±Ð»Ð¸Ñ Images Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Presentations Презентации Media (Audio and Video) Мультимедиа (видео и аудио) Allow remote access Разрешить удаленный доÑтуп Monitor Song Usage ОтÑлеживать иÑпользование пеÑен Allow Alerts Разрешить Ð¾Ð¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ Default Settings ÐаÑтройки по умолчанию Downloading %s... Скачивание %s... Enabling selected plugins... Разрешение выбранных плагинов... No Internet Connection ОтÑутÑтвует подключение к Интернету Unable to detect an Internet connection. Ðе удалоÑÑŒ уÑтановить подключение к Интернету. Sample Songs Сборники пеÑен Select and download public domain songs. Выберите и загрузите пеÑни. Sample Bibles Библии Select and download free Bibles. Выберите и загрузите Библии. Sample Themes Темы Select and download sample themes. Выберите и загрузите темы. Set up default settings to be used by OpenLP. УÑтановите наÑтройки по умолчанию Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð² OpenLP. Default output display: Монитор Ð´Ð»Ñ Ð¿Ð¾ÐºÐ°Ð·Ð° по умолчанию: Select default theme: Тема по умолчанию: Starting configuration process... ЗапуÑк процеÑÑа конфигурированиÑ... Setting Up And Downloading ÐаÑтройка и Ñкачивание данных Please wait while OpenLP is set up and your data is downloaded. ПроизводитÑÑ Ð½Ð°Ñтройка OpenLP и Ñкачивание данных. ПожалуйÑта, подождите. Setting Up ÐаÑтройка Custom Slides Произвольные Ñлайды Finish Завершить No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Ðе удалоÑÑŒ обнаружить подключение к Интернету. МаÑтеру первого запуÑка необходимо подключение к Интернету, чтобы Ñкачать образцы пеÑен, Библии и темы. Ðажмите на кнопку «Завершить» ÑейчаÑ, чтобы запуÑтить OpenLP Ñ Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ñ‹Ð¼Ð¸ наÑтройками и без ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ…. Скачать Ñти данные можно позже. Ð”Ð»Ñ Ñтого проверьте подключение к Интернету и повторно запуÑтите маÑтер первого запуÑка, выбрав в меню OpenLP пункт «ИнÑтрументы / ЗапуÑк маÑтера первого запуÑка». Download Error Ошибка ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ð’ процеÑÑе ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ Ð²Ð¾Ð·Ð½Ð¸ÐºÐ»Ð° ошибка подключениÑ, поÑтому Ñкачивание оÑтальных файлов будет пропущено. Попробуйте перезапуÑтить маÑтер первого запуÑка позже. Download complete. Click the %s button to return to OpenLP. Скачивание данных завершено. Ðажмите кнопку %s, чтобы вернутьÑÑ Ð² OpenLP. Download complete. Click the %s button to start OpenLP. Скачивание данных завершено. Ðажмите кнопку %s, чтобы запуÑтить OpenLP. Click the %s button to return to OpenLP. Ðажмите кнопку %s, чтобы вернутьÑÑ Ð² OpenLP. Click the %s button to start OpenLP. Ðажмите кнопку %s, чтобы запуÑтить OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ð’ процеÑÑе ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ Ð²Ð¾Ð·Ð½Ð¸ÐºÐ»Ð° ошибка подключениÑ, поÑтому Ñкачивание оÑтальных файлов будет пропущено. Попробуйте перезапуÑтить маÑтер первого запуÑка позже. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Этот маÑтер предназначен Ð´Ð»Ñ Ð¿ÐµÑ€Ð²Ð¾Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð¾Ð¹ наÑтройки OpenLP. Ðажмите кнопку %s, чтобы начать. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Чтобы полноÑтью оÑтановить маÑтер первого запуÑка (и не запуÑкать OpenLP), нажмите кнопку %s ÑейчаÑ. Downloading Resource Index Скачивание ÑпиÑка реÑурÑов Please wait while the resource index is downloaded. ПроизводитÑÑ Ñкачивание ÑпиÑка реÑурÑов. ПожалуйÑта, подождите. Please wait while OpenLP downloads the resource index file... ПроизводитÑÑ Ñкачивание файла Ñо ÑпиÑком доÑтупных реÑурÑов. ПожалуйÑта, подождите... Downloading and Configuring Скачивание и наÑтройка Please wait while resources are downloaded and OpenLP is configured. ПроизводитÑÑ Ñкачивание реÑурÑов и наÑтройка OpenLP. ПожалуйÑта, подождите. Network Error Ошибка Ñети There was a network error attempting to connect to retrieve initial configuration information Возникла ошибка Ñети при попытке Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð¾Ð¹ конфигурационной информации Cancel Отмена Unable to download some files Ðе удалоÑÑŒ Ñкачать некоторые файлы OpenLP.FormattingTagDialog Configure Formatting Tags ÐаÑтроить теги Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Description ОпиÑание Tag ТÑг Start HTML Ðачало HTML End HTML Окончание HTML Default Formatting Стандартное форматирование Custom Formatting ПользовательÑкое форматирование OpenLP.FormattingTagForm <HTML here> <HTML здеÑÑŒ> Validation Error Ошибка проверки Description is missing ОтÑутÑтвует опиÑание Tag is missing ОтÑутÑтвует тег Tag %s already defined. Тег %s уже определен. Description %s already defined. ОпиÑание %s уже определено. Start tag %s is not valid HTML Открывающий тег %s не ÑоответÑтвует формату HTML End tag %(end)s does not match end tag for start tag %(start)s Завершающий тег %(end)s не ÑоответÑтвует открывающему тегу %(start)s OpenLP.FormattingTags Red КраÑный Black Ðазад Blue Синий Yellow Желтый Green Зеленый Pink Розовый Orange Оранжевый Purple Пурпурный White Белый Superscript ÐадÑтрочный Subscript ПодÑтрочный Paragraph Параграф Bold Жирный Italics КурÑив Underline Подчеркивание Break Разрыв OpenLP.GeneralTab General Общие Monitors Мониторы Select monitor for output display: Выберите монитор Ð´Ð»Ñ Ð¿Ð¾ÐºÐ°Ð·Ð°: Display if a single screen Показывать прÑмой Ñфир, еÑли доÑтупен только один монитор Application Startup ЗапуÑк Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Show blank screen warning Показывать черный Ñкран Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Automatically open the last service ÐвтоматичеÑки загружать поÑледнее Ñлужение Show the splash screen Показывать вÑплывающую заÑтавку Application Settings ÐаÑтройки Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Prompt to save before starting a new service Запрашивать Ñохранение текущего ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð¿ÐµÑ€ÐµÐ´ Ñозданием нового Automatically preview next item in service ÐвтоматичеÑки открывать проÑмотр Ñледующего Ñлемента в Ñлужении sec Ñек CCLI Details Детали CCLI SongSelect username: Пользователь SongSelect: SongSelect password: Пароль SongSelect: X Ð¥ Y Y Height Ð’Ñ‹Ñота Width Ширина Check for updates to OpenLP ПроверÑть Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ OpenLP Unblank display when adding new live item Отключать режим пуÑтого Ñкрана при добавлении нового Ñлемента в прÑмой Ñфир Timed slide interval: Интервал показа: Background Audio Фоновое аудио Start background audio paused Ставить фоновое аудио на паузу при воÑпроизведении Service Item Slide Limits ÐžÐ³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ Ñлайдов ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Override display position: ПереопределÑть положение Ñкрана: Repeat track list ПовторÑть дорожки в ÑпиÑке Behavior of next/previous on the last/first slide: ДейÑтвие кнопок Вперед/Ðазад на поÑледнем/первом Ñлайде: &Remain on Slide &ОÑтаватьÑÑ Ð½Ð° текущем Ñлайде &Wrap around &ВернутьÑÑ Ðº началу &Move to next/previous service item &Перейти к Ñледующему/предыдущему Ñлементу ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ OpenLP.LanguageManager Language Язык Please restart OpenLP to use your new language setting. ПерезапуÑтите OpenLP, чтобы новые Ñзыковые наÑтройки вÑтупили в Ñилу. OpenLP.MainDisplay OpenLP Display Экран OpenLP OpenLP.MainWindow &File &Файл &Import &Импорт &Export &ЭкÑпорт &View &Вид M&ode Р&ежим &Tools &ИнÑтрументы &Settings &ÐаÑтройки &Language &Язык &Help &Помощь Service Manager Служение Theme Manager Темы Open an existing service. Открыть Ñохраненное Ñлужение. Save the current service to disk. Сохранить текущее Ñлужение на диÑк. Save Service As Сохранить Ñлужение под новым именем Save the current service under a new name. Сохранить текущее Ñлужение под новым именем. E&xit Ð’Ñ‹&ход Quit OpenLP Завершить работу OpenLP &Theme Т&ема &Configure OpenLP... &ÐаÑтроить OpenLP... &Media Manager Окно &библиотеки Toggle Media Manager Переключить окно библиотеки Toggle the visibility of the media manager. Переключить отображение окна ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¾Ð¹. &Theme Manager Окно &тем Toggle Theme Manager Переключить окно тем Toggle the visibility of the theme manager. Переключить отображение окна ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ‚ÐµÐ¼Ð°Ð¼Ð¸. &Service Manager Окно &ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Toggle Service Manager Переключить окно ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Toggle the visibility of the service manager. Переключить Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¾ÐºÐ½Ð° управлÑÐµÐ½Ð¸Ñ Ñлужением. &Preview Panel Окно пре&дпроÑмотра Toggle Preview Panel Переключить окно предпроÑмотра Toggle the visibility of the preview panel. Переключить отображение окна предпроÑмотра. &Live Panel Окно прÑмого &Ñфира Toggle Live Panel Переключить окно прÑмого Ñфира Toggle the visibility of the live panel. Переключить отображение окна прÑмого Ñфира. List the Plugins СпиÑок плагинов &User Guide &РуководÑтво Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ &About &О программе More information about OpenLP Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ программе OpenLP &Online Help &Помощь онлайн &Web Site &Сайт Use the system language, if available. ИÑпользовать ÑиÑтемный Ñзык, еÑли доÑтупно. Set the interface language to %s Изменить Ñзык интерфейÑа на %s Add &Tool... Добавить &инÑтрумент... Add an application to the list of tools. Добавить приложение к ÑпиÑку инÑтрументов. &Default &По умолчанию Set the view mode back to the default. УÑтановить вид в режим по умолчанию. &Setup &Подготовка Set the view mode to Setup. УÑтановить вид в режим подготовки к Ñлужению. &Live &ПрÑмой Ñфир Set the view mode to Live. УÑтановить вид в режим прÑмого Ñфира. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Ð”Ð»Ñ ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ Ð´Ð¾Ñтупна верÑÐ¸Ñ OpenLP %s (ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸ÑпользуетÑÑ Ð²ÐµÑ€ÑÐ¸Ñ %s). Ð’Ñ‹ можете Ñкачать поÑледнюю верÑию на Ñайте http://openlp.org/. OpenLP Version Updated Обновление OpenLP OpenLP Main Display Blanked Главный Ñкран OpenLP очищен The Main Display has been blanked out Главный Ñкран был очищен Default Theme: %s Тема по умолчанию: %s English Please add the name of your language here РуÑÑкий Configure &Shortcuts... ÐаÑтроить &клавиатурные комбинации... Open &Data Folder... Открыть &каталог данных... Open the folder where songs, bibles and other data resides. Открыть каталог Ñ€Ð°Ð·Ð¼ÐµÑ‰ÐµÐ½Ð¸Ñ Ð¿ÐµÑен, Библий и других данных. &Autodetect &Ðвтоопределение Update Theme Images Обновить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚ÐµÐ¼Ñ‹ Update the preview images for all themes. Обновить миниатюры вÑех тем. Print the current service. РаÑпечатать текущее Ñлужение. L&ock Panels За&блокировать окна Prevent the panels being moved. Предотвратить перемещение окон. Re-run First Time Wizard ПерезапуÑтить маÑтер первого запуÑка Re-run the First Time Wizard, importing songs, Bibles and themes. ПерезапуÑтить маÑтер первого запуÑка Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° пеÑен, Библий и тем. Re-run First Time Wizard? ПерезапуÑтить маÑтер первого запуÑка? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. ПерезапуÑтить маÑтер первого запуÑка? МаÑтер может внеÑти Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² текущей конфигурации OpenLP, добавить пеÑни к ÑущеÑтвующему ÑпиÑку и изменить тему по умолчанию. Clear List Clear List of recent files ОчиÑтить ÑпиÑок Clear the list of recent files. ОчиÑтить ÑпиÑок поÑледних файлов. Configure &Formatting Tags... ÐаÑтроить теги &форматированиÑ... Export OpenLP settings to a specified *.config file ЭкÑпортировать наÑтройки OpenLP в указанный.*.config файл Settings ÐаÑтройки Import OpenLP settings from a specified *.config file previously exported on this or another machine Импортировать наÑтройки OpenLP из указанного.*.config файла, ранее ÑкÑпортированного Ñ Ñтой или другой машины Import settings? Импортировать наÑтройки? Open File Открыть файл OpenLP Export Settings Files (*.conf) Файлы ÑкÑпорта наÑтроек OpenLP (*.conf) Import settings Импортировать наÑтройки OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP будет закрыта. Импортированные наÑтройки будут применены при Ñледующем запуÑке программы. Export Settings File ЭкÑпортировать файл наÑтроек OpenLP Export Settings File (*.conf) Файлы ÑкÑпорта наÑтроек OpenLP (*.conf) New Data Directory Error Ошибка Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð° данных Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Копирование данных OpenLP в новый каталог: %s. ПожалуйÑта, подождите OpenLP Data directory copy failed %s Ðе удалоÑÑŒ Ñкопировать каталог данных OpenLP %s General Общие Library Библиотека Jump to the search box of the current active plugin. Перейти в поле поиÑка текущего активного плагина. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Импортировать наÑтройки? – Импортирование новых наÑтроек внеÑет поÑтоÑнные Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² текущую конфигурацию OpenLP. – Импортирование некорректных наÑтроек может привеÑти к ошибкам или вылетам OpenLP. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Выбранный файл, Ñкорее вÑего, не Ñодержит наÑтройки OpenLP. Обработка файла прервана. Ð¢ÐµÐºÑƒÑ‰Ð°Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¾Ñтавлена без изменений. Projector Manager Проекторы Toggle Projector Manager Переключить окно проекторов Toggle the visibility of the Projector Manager Переключить отображение окна ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð¾Ñ€Ð°Ð¼Ð¸ Export setting error Ошибка при ÑкÑпорте наÑтроек The key "%s" does not have a default value so it will be skipped in this export. Ключ "%s" не имеет Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию, поÑтому будет пропущен при ÑкÑпорте файла наÑтроек. An error occurred while exporting the settings: %s Возникла ошибка во Ð²Ñ€ÐµÐ¼Ñ ÑкÑпорта наÑтроек: %s &Recent Services ПоÑ&ледние ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ &New Service &Ðовое Ñлужение &Open Service &Открыть Ñлужение &Save Service &Сохранить Ñлужение Save Service &As... Сохранить Ñлужение &как... &Manage Plugins СпиÑок &плагинов Exit OpenLP Выход из OpenLP Are you sure you want to exit OpenLP? Завершить работу OpenLP? &Exit OpenLP Ð’Ñ‹&ход OpenLP.Manager Database Error Ошибка базы данных The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Ð—Ð°Ð³Ñ€ÑƒÐ¶Ð°ÐµÐ¼Ð°Ñ Ð±Ð°Ð·Ð° данных была Ñоздана в более ранней верÑии OpenLP. База данных имеет верÑию %d (требуетÑÑ Ð²ÐµÑ€ÑÐ¸Ñ %d). База данных не будет загружена База данных: %s OpenLP cannot load your database. Database: %s OpenLP не может загрузить базу данных. База данных: %s OpenLP.MediaManagerItem No Items Selected Ðе выделены Ñлементы &Add to selected Service Item &Добавить к выбранному Ñлементу ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ You must select one or more items to preview. Ðеобходимо выбрать Ñлементы Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра. You must select one or more items to send live. Ðеобходимо выбрать Ñлементы Ð´Ð»Ñ Ð¿Ñ€Ñмого Ñфира. You must select one or more items. Ðеобходимо выбрать один или более Ñлементов. You must select an existing service item to add to. Ðеобходимо выбрать ÑущеÑтвующий Ñлемент ÑлужениÑ. Invalid Service Item Ðекорртекный Ñлемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ You must select a %s service item. Ðеобходимо выбрать Ñлемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ %s. You must select one or more items to add. Ðеобходимо выбрать один или неÑколько Ñлементов Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ. No Search Results Результаты поиÑка отÑутÑтвуют Invalid File Type Ðекорректный тип файла Invalid File %s. Suffix not supported Ðекорректный файл %s. РаÑширение не поддерживаетÑÑ &Clone &Клонировать Duplicate files were found on import and were ignored. Ð’ процеÑÑе импорта были пропущены дубликаты файлов. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Ðе найден тег <lyrics>. <verse> tag is missing. Ðе найден тег <verse>. OpenLP.PJLink1 Unknown status ÐеизвеÑтный ÑÑ‚Ð°Ñ‚ÑƒÑ No message Ðет ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Error while sending data to projector Ошибка при отправке данных проектору Undefined command: ÐеизвеÑÑ‚Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð°: OpenLP.PlayerTab Players Плееры Available Media Players ДоÑтупные медиа плееры Player Search Order ПорÑдок выбора плееров Visible background for videos with aspect ratio different to screen. Видимый фон Ð´Ð»Ñ Ð²Ð¸Ð´ÐµÐ¾ Ñ Ñоотношением Ñторон, отличным от Ñкрана. %s (unavailable) %s (недоÑтупно) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" ПРИМЕЧÐÐИЕ: Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ VLC требуетÑÑ ÑƒÑтановить верÑию %s OpenLP.PluginForm Plugin Details ОпиÑание плагина Status: СоÑтоÑние: Active Ðктивирован Inactive Деактивирован %s (Inactive) %s (Деактивирован) %s (Active) %s (Ðктивирован) %s (Disabled) %s (Отключен) Manage Plugins СпиÑок плагинов OpenLP.PrintServiceDialog Fit Page ВпиÑать в Ñтраницу Fit Width ВпиÑать по ширине OpenLP.PrintServiceForm Options ÐаÑтройки Copy Копировать Copy as HTML Копировать как HTML Zoom In Увеличить Zoom Out Уменьшить Zoom Original 1:1 Other Options Другие наÑтройки Include slide text if available Ð’Ñтавить текÑÑ‚ Ñлайда Include service item notes Ð’Ñтавить заметки Include play length of media items Ð’Ñтавить Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² Add page break before each text item Добавить разрыв Ñтраницы перед каждым текÑтовым Ñлементом Service Sheet Служение Print Печать Title: Ðазвание: Custom Footer Text: Заметки к Ñлужению: OpenLP.ProjectorConstants OK ОК General projector error ÐžÐ±Ñ‰Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° проектора Not connected error Ошибка Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ðº проектору Lamp error Ошибка лампы проектора Fan error Ошибка вентиллÑтора проектора High temperature detected Ð’Ñ‹ÑÐ¾ÐºÐ°Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð° в проекторе Cover open detected Открыта крышка проектора Check filter Проверьте фильтры проектора Authentication Error Ошибка авторизации Undefined Command ÐеизвеÑÑ‚Ð½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° Invalid Parameter Ðеверный параметр Projector Busy Проектор занÑÑ‚ Projector/Display Error Ошибка проектора/монитора Invalid packet received Получен неизвеÑтный пакет Warning condition detected СоÑтоÑние Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Error condition detected СоÑтоÑние ошибки PJLink class not supported КлаÑÑ PJLink не поддерживаетÑÑ Invalid prefix character ÐезивеÑтный Ñимвол префикÑа The connection was refused by the peer (or timed out) Подключение было отклонено удаленной Ñтороной (или превышено Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ) The remote host closed the connection Подключение разорвано удаленной Ñтороной The host address was not found ÐÐ´Ñ€ÐµÑ Ð½Ðµ найден The socket operation failed because the application lacked the required privileges Программе не хватает прав доÑтупа Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ñокетом The local system ran out of resources (e.g., too many sockets) Ðе хватает ÑиÑтемных реÑурÑов (например, открыто Ñлишком много Ñокетов) The socket operation timed out Превышено Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¿Ð¾ Ñокету The datagram was larger than the operating system's limit Размер дÑйтаграммы превыÑил ÑиÑтемные Ð¾Ð³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ An error occurred with the network (Possibly someone pulled the plug?) Возникла ошибка Ñети (возможно, кто-то вытащил кабель?) The address specified with socket.bind() is already in use and was set to be exclusive ÐдреÑ, переданный функции socket.bind(), уже кем-то иÑпользуетÑÑ Ð² ÑкÑклюзивном режиме The address specified to socket.bind() does not belong to the host ÐдреÑ, переданный функции socket.bind(), не ÑвлÑетÑÑ Ð°Ð´Ñ€ÐµÑом локальной машины The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Ð—Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ Ð¿Ð¾ Ñокету не поддерживаетÑÑ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð¾Ð¹ ÑиÑтемой (например, нет поддержки IPv6) The socket is using a proxy, and the proxy requires authentication Сокет работает через прокÑи Ñервер, который требует авторизации The SSL/TLS handshake failed Ðе удалоÑÑŒ ÑоглаÑовать протокол SSL/TLS (handshake failed) The last operation attempted has not finished yet (still in progress in the background) ÐŸÑ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ ÐµÑ‰Ðµ не закончена (вÑе еще выполнÑетÑÑ Ð² фоновом режиме) Could not contact the proxy server because the connection to that server was denied Подключение к прокÑи Ñерверу было отклонено The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Подключение к прокÑи Ñерверу было неожиданно разорвано (до Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ðº целевой машине) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Превышено Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‚Ð²ÐµÑ‚Ð° от прокÑи Ñервера. The proxy address set with setProxy() was not found ÐÐ´Ñ€ÐµÑ Ð¿Ñ€Ð¾ÐºÑи Ñервера, переданный функции setProxy(), не найден An unidentified error occurred Возникла неизвеÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ° Ñокета Not connected Ðе подключено Connecting Подключение Connected Подключено Getting status Получение ÑтатуÑа Off Питание отключено Initialize in progress Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Power in standby Режим Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Warmup in progress Пробуждение Power is on Питание включено Cooldown in progress Охлаждение Projector Information available Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ проекторе Sending data Отправка данных Received data Данные получены The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Ðе удалоÑÑŒ раÑпознать ответ от прокÑи Ñервера OpenLP.ProjectorEdit Name Not Set Ðет Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ You must enter a name for this entry.<br />Please enter a new name for this entry. Ðеобходимо ввеÑти название проектора. Duplicate Name Ðазвание уже ÑущеÑтвует OpenLP.ProjectorEditForm Add New Projector Добавить новый проектор Edit Projector Изменить параметры проектора IP Address IP Ð°Ð´Ñ€ÐµÑ Port Number Ðомер порта PIN Пароль Name Ðазвание Location МеÑтоположение Notes Заметки Database Error Ошибка базы данных There was an error saving projector information. See the log for the error Возникла ошибка при Ñохранении информации о проекторе. Смотрите лог ошибок OpenLP.ProjectorManager Add Projector Добавить проектор Add a new projector Добавить новый проектор Edit Projector Изменить проектор Edit selected projector Изменить параметры выбранного проектора Delete Projector Удалить проектор Delete selected projector Удалить выбранный проектор Select Input Source Выберите иÑточник входного Ñигнала Choose input source on selected projector Выбрать иÑточник входного Ñигнала на выбранном проекторе View Projector Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ View selected projector information ПроÑмотреть информацию о выбранном проекторе Connect to selected projector ПодключитьÑÑ Ðº выбранному проектору Connect to selected projectors ПодключитьÑÑ Ðº выбранным проекторам Disconnect from selected projectors ОтключитьÑÑ Ð¾Ñ‚ выбранных проекторов Disconnect from selected projector ОтключитьÑÑ Ð¾Ñ‚ выбранного проектора Power on selected projector Включить питание на выбранном проекторе Standby selected projector Режим Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð½Ð° выбранном проекторе Put selected projector in standby ПеревеÑти выбранный проектор в режим Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Blank selected projector screen ВывеÑти пуÑтой Ñкран в выбранном проекторе Show selected projector screen Убрать пуÑтой Ñкран на выбранном проекторе &View Projector Information Ин&Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ &Edit Projector &Изменить &Connect Projector &ПодключитьÑÑ D&isconnect Projector &ОтключитьÑÑ Power &On Projector &Включить питание Power O&ff Projector Отклю&чить питание Select &Input Выберите и&Ñточник Edit Input Source Изменить иÑточник &Blank Projector Screen П&уÑтой Ñкран &Show Projector Screen У&брать пуÑтой Ñкран &Delete Projector У&далить Name Ðазвание IP IP-Ð°Ð´Ñ€ÐµÑ Port Ðомер порта Notes Заметки Projector information not available at this time. Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ проекторе в данный момент недоÑтупна. Projector Name Ðазвание проектора Manufacturer Производитель Model Модель Other info Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Power status СоÑтоÑние Ð¿Ð¸Ñ‚Ð°Ð½Ð¸Ñ Shutter is СоÑтоÑние затвора Closed Закрыт Current source input is Текущий иÑточник входного Ñигнала Lamp Лампа On Включена Off Отключена Hours ЧаÑов No current errors or warnings Ðет ошибок и предупреждений Current errors/warnings Текущие ошибки/Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Projector Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ проекторе No message Ðет ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Not Implemented Yet Еще не реализовано Delete projector (%s) %s? Удалить проектор (%s) %s? Are you sure you want to delete this projector? Удалить указанный проектор? OpenLP.ProjectorPJLink Fan ВентиллÑтор Lamp Лампа Temperature Температура Cover Крышка Filter Фильтр Other Другое OpenLP.ProjectorTab Projector Проектор Communication Options ÐаÑтройки Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Connect to projectors on startup ПодключатьÑÑ Ðº проекторам при запуÑке программы Socket timeout (seconds) Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¿Ð¾ Ñокетам (в Ñекундах) Poll time (seconds) Период опроÑа (в Ñекундах) Tabbed dialog box Диалог Ñ Ð·Ð°ÐºÐ»Ð°Ð´ÐºÐ°Ð¼Ð¸ Single dialog box Одиночный диалог OpenLP.ProjectorWizard Duplicate IP Address Повторный IP Ð°Ð´Ñ€ÐµÑ Invalid IP Address Ðекорректный IP Ð°Ð´Ñ€ÐµÑ Invalid Port Number Ðекорректный номер порта OpenLP.ScreenList Screen Экран primary оÑновной OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Ðачало</strong>: %s <strong>Length</strong>: %s <strong>ПродолжительноÑть</strong>: %s [slide %d] [Ñлайд %d] OpenLP.ServiceItemEditForm Reorder Service Item УпорÑдочить Ñлементы ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ OpenLP.ServiceManager Move to &top ПеремеÑтить в &начало Move item to the top of the service. ПеремеÑтить Ñлемент в начало ÑлужениÑ. Move &up ПеремеÑтить &выше Move item up one position in the service. ПеремеÑтить Ñлемент на одну позицию вверх в Ñлужении. Move &down ПеремеÑтить н&иже Move item down one position in the service. ПеремеÑтить Ñлемент на одну позицию вниз в Ñлужении. Move to &bottom ПеремеÑтить в &конец Move item to the end of the service. ПеремеÑтить Ñлемент в конец ÑлужениÑ. &Delete From Service &Удалить из ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Delete the selected item from the service. Удалить выбранный Ñлемент из ÑлужениÑ. &Add New Item &Добавить новый Ñлемент &Add to Selected Item &Добавить к выбранному Ñлементу &Edit Item &Изменить &Reorder Item &УпорÑдочить Ñлементы &Notes &Заметки &Change Item Theme &Изменить тему Ñлемента File is not a valid service. Файл не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼ файлом ÑлужениÑ. Missing Display Handler ОтÑутÑтвует плагин Your item cannot be displayed as there is no handler to display it Элемент не может быть показан, так как отÑутÑтвует ÑоответÑтвующий плагин Your item cannot be displayed as the plugin required to display it is missing or inactive Элемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð½Ðµ может быть показан, поÑкольку требуемый плагин отÑутÑтвует или отключен &Expand all &Развернуть вÑе Expand all the service items. Развернуть вÑе Ñлементы ÑлужениÑ. &Collapse all &Свернуть вÑе Collapse all the service items. Свернуть вÑе Ñлементы ÑлужениÑ. Open File Открыть файл Moves the selection down the window. Передвинуть выделенное вниз окна. Move up Передвинуть вверх Moves the selection up the window. Передвинуть выделенное вверх окна. Go Live ПрÑмой Ñфир Send the selected item to Live. Показать выбранный Ñлемент в прÑмом Ñфире. &Start Time &Ð’Ñ€ÐµÐ¼Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° Show &Preview &ПроÑмотр Modified Service Измененное Ñлужение The current service has been modified. Would you like to save this service? Текущее Ñлужение было изменено. Сохранить Ñлужение? Custom Service Notes: Заметки к Ñлужению: Notes: Заметки: Playing time: Ð’Ñ€ÐµÐ¼Ñ Ð¸Ð³Ñ€Ñ‹: Untitled Service Служение без Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ File could not be opened because it is corrupt. Файл не может быть открыт, поÑкольку он поврежден. Empty File ПуÑтой файл This service file does not contain any data. Файл ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð½Ðµ Ñодержит данных. Corrupt File Поврежденный файл Load an existing service. Загрузить ÑущеÑтвующее Ñлужение. Save this service. Сохранить Ñто Ñлужение. Select a theme for the service. Выберите тему Ð´Ð»Ñ ÑлужениÑ. Slide theme Тема Ñлайда Notes Заметки Edit Редактировать Service copy only ÐšÐ¾Ð¿Ð¸Ñ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Error Saving File Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° There was an error saving your file. Была ошибка при Ñохранении вашего файла. Service File(s) Missing Файл(Ñ‹) Ð¡Ð»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð½Ðµ найдены &Rename... &Переименовать... Create New &Custom Slide Создать новый &произвольный Ñлайд &Auto play slides &ÐвтоматичеÑÐºÐ°Ñ Ñмена Ñлайдов Auto play slides &Loop &ЦикличеÑки Auto play slides &Once &Однократно &Delay between slides &Пауза между Ñлайдами OpenLP Service Files (*.osz *.oszl) OpenLP файлы Ñлужений (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP файлы Ñлужений (*.osz);; OpenLP файлы Ñлужений - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP файлы ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ (*.osz);; File is not a valid service. The content encoding is not UTF-8. Файл не ÑоответÑтвует формату ÑлужениÑ. Содержимое файла имеет кодировку, отличную от UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Файл ÑлужениÑ, который вы пытаетеÑÑŒ открыть, в Ñтаром формате. ПожалуйÑта, Ñохраните его, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ OpenLP 2.0.2 или выше. This file is either corrupt or it is not an OpenLP 2 service file. Этот файл либо поврежден или Ñто не файл ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ OpenLP 2. &Auto Start - inactive &ÐвтозапуÑк - неактивно &Auto Start - active &ÐвтозапуÑк - активно Input delay Введите задержку Delay between slides in seconds. Задержка между Ñлайдами в Ñекундах. Rename item title Переименовать заголовок Ñлемента Title: Ðазвание: An error occurred while writing the service file: %s Произошла ошибка в процеÑÑе запиÑи файла ÑлужениÑ: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Следующие файлы в Ñлужении не найдены: %s Эти файлы будут удалены, еÑли вы продолжите ÑохранÑть. OpenLP.ServiceNoteForm Service Item Notes Заметки OpenLP.SettingsForm Configure OpenLP ÐаÑтроить OpenLP OpenLP.ShortcutListDialog Action ДейÑтвие Shortcut Сочетание клавиш Duplicate Shortcut Дублировать Ñочетание клавиш The shortcut "%s" is already assigned to another action, please use a different shortcut. Сочетание "%s" уже назначено Ð´Ð»Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð³Ð¾ дейÑтвиÑ. ПожалуйÑта, иÑпользуйте другое Ñочетание клавиш. Alternate Ðльтернатива Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Выберите дейÑтвие и щелкните на кнопку ниже, чтобы начать иÑпользование оÑновного или альтернативного ÑÐ¾Ñ‡ÐµÑ‚Ð°Ð½Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ñˆ. Default По умолчанию Custom ОÑобое Capture shortcut. ИÑпользовать. Restore the default shortcut of this action. ВоÑÑтановить Ñочетание клавиш по умолчанию Ð´Ð»Ñ Ñтого дейÑтвиÑ. Restore Default Shortcuts ВоÑÑтановить вÑе клавиши быÑтрого доÑтупа по умолчанию Do you want to restore all shortcuts to their defaults? ВоÑÑтановить вÑе клавиши быÑтрого доÑтупа на Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию? Configure Shortcuts ÐаÑтроить клавиши быÑтрого доÑтупа OpenLP.SlideController Hide Скрыть Go To Перейти к Blank Screen ПуÑтой Ñкран Blank to Theme Фон темы Show Desktop Показать рабочий Ñтол Previous Service Предыдущий Ñлемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Next Service Следующий Ñлемент ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Escape Item Убрать Ñлемент Move to previous. Перейти к предыдущему. Move to next. Перейти к Ñледующему. Play Slides ÐвтоматичеÑÐºÐ°Ñ Ñмена Ñлайдов Delay between slides in seconds. Задержка между Ñлайдами в Ñекундах. Move to live. Показать в прÑмом Ñфире. Add to Service. Добавить к Ñлужению. Edit and reload song preview. Изменить и перезагрузить предпроÑмотр пеÑни. Start playing media. Ðачать воÑпроизведение медиа файла. Pause audio. ПриоÑтановить воÑпроизведение аудио. Pause playing media. ПриоÑтановить воÑпроизведение медиа файла. Stop playing media. ОÑтановить воÑпроизведение. Video position. Положение видео. Audio Volume. ГромкоÑть. Go to "Verse" Перейти к "Стиху" Go to "Chorus" Перейти к "Припеву" Go to "Bridge" Перейти к "МоÑту" Go to "Pre-Chorus" Перейти к "Пред-припеву" Go to "Intro" Перейти к "Проигрышу" Go to "Ending" Перейти к "Окончанию" Go to "Other" Перейти к "Другому" Previous Slide Предыдущий Ñлайд Next Slide Следующий Ñлайд Pause Audio ПриоÑтановить аудио Background Audio Фоновое аудио Go to next audio track. Перейти к Ñледующей аудио дорожке. Tracks Дорожки OpenLP.SourceSelectForm Select Projector Source Выберите иÑточник проектора Edit Projector Source Text Изменить иÑточник проектора Ignoring current changes and return to OpenLP Отменить вÑе Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¸ вернутьÑÑ Ðº OpenLP Delete all user-defined text and revert to PJLink default text Удалить веÑÑŒ введенный текÑÑ‚ и вернуть к текÑту по умолчанию из PJLink Discard changes and reset to previous user-defined text Отменить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¸ воÑÑтановить введенный ранее текÑÑ‚ Save changes and return to OpenLP Сохранить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¸ вернутьÑÑ Ðº OpenLP Delete entries for this projector Удалить запиÑи Ð´Ð»Ñ Ñтого проектора Are you sure you want to delete ALL user-defined source input text for this projector? Удалить ВЕСЬ введенный текÑÑ‚ Ð´Ð»Ñ Ñтого проектора? OpenLP.SpellTextEdit Spelling Suggestions ПравопиÑание Formatting Tags Теги Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Language: Язык: OpenLP.StartTimeForm Theme Layout Вывод темы The blue box shows the main area. Синий прÑмоугольник показывает оÑновную облаÑть. The red box shows the footer. КраÑный прÑмоугольник показывает подпиÑÑŒ. OpenLP.StartTime_form Item Start and Finish Time Ð’Ñ€ÐµÐ¼Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° и конца Ð´Ð»Ñ Ñлемента Hours: ЧаÑов: Minutes: Минут: Seconds: Секунд: Start Ðачало Finish Завершить Length ДлительноÑть Time Validation Error Ошибка проверки времени Finish time is set after the end of the media item Ð’Ñ€ÐµÐ¼Ñ Ð¾ÐºÐ¾Ð½Ñ‡Ð°Ð½Ð¸Ñ Ð±Ð¾Ð»ÑŒÑˆÐµ длительноÑти медиа файла Start time is after the finish time of the media item Ð’Ñ€ÐµÐ¼Ñ Ð½Ð°Ñ‡Ð°Ð»Ð¾ больше длительноÑти медиа файла OpenLP.ThemeForm (approximately %d lines per slide) (приблизительно %d Ñтрок на Ñлайде) OpenLP.ThemeManager Create a new theme. Создать новую тему. Edit Theme Изменить тему Edit a theme. Изменить тему. Delete Theme Удалить тему Delete a theme. Удалить тему. Import Theme Импортировать тему Import a theme. Импортировать тему. Export Theme ЭкÑпортировать тему Export a theme. ЭкÑпортировать тему. &Edit Theme &Изменить тему &Delete Theme У&далить тему Set As &Global Default Сделать &глобальной темой по умолчанию %s (default) %s (по умолчанию) You must select a theme to edit. Ðеобходимо выбрать тему Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ. You are unable to delete the default theme. Ð’Ñ‹ не можете удалить тему, назначенную темой по умолчанию. You have not selected a theme. Ð’Ñ‹ не выбрали тему. Save Theme - (%s) Сохранить тему - (%s) Theme Exported Тема ÑкÑпортирована Your theme has been successfully exported. Ваша тема была уÑпешна ÑкÑпортирована. Theme Export Failed Ðе удалоÑÑŒ ÑкÑпортировать тему Select Theme Import File Выберите файл темы Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° File is not a valid theme. Файл не ÑвлÑетÑÑ Ñ‚ÐµÐ¼Ð¾Ð¹. &Copy Theme С&копировать тему &Rename Theme &Переименовать тему &Export Theme &ЭкÑпортировать тему You must select a theme to rename. Ðеобходимо выбрать тему Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð¸Ñ. Rename Confirmation Подтверждение Ð¿ÐµÑ€ÐµÐ¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð¸Ñ Rename %s theme? Переименовать тему %s? You must select a theme to delete. Ðеобходимо выбрать тему Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ. Delete Confirmation Подтверждение ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Delete %s theme? Удалить тему %s? Validation Error Ошибка проверки A theme with this name already exists. Тема Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже ÑущеÑтвует. Copy of %s Copy of <theme name> ÐšÐ¾Ð¿Ð¸Ñ %s Theme Already Exists Тема уже ÑущеÑтвует Theme %s already exists. Do you want to replace it? Тема %s уже ÑущеÑтвует. Заменить ее? The theme export failed because this error occurred: %s ЭкÑпорт темы не удалÑÑ Ð¸Ð·-за возникшей ошибки: %s OpenLP Themes (*.otz) Тема OpenLP (*.otz) %s time(s) by %s %s раз(а) плагином %s Unable to delete theme Ðе удалоÑÑŒ удалить тему Theme is currently used %s ИÑпользование темы: %s OpenLP.ThemeWizard Theme Wizard МаÑтер тем Welcome to the Theme Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер тем Set Up Background Выбор фона Set up your theme's background according to the parameters below. УÑтановите фон темы в ÑоответÑтвии Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð°Ð¼Ð¸. Background type: Тип фона: Gradient Градиент Gradient: Градиент: Horizontal Горизонтальный Vertical Вертикальный Circular Круговой Top Left - Bottom Right Верх Ñлева - низ Ñправа Bottom Left - Top Right Ðиз Ñлева - верх Ñправа Main Area Font Details Шрифт оÑновной облаÑти Define the font and display characteristics for the Display text Определите шрифт и характериÑтики диÑÐ¿Ð»ÐµÑ Font: Шрифт: Size: Размер: Line Spacing: Интервал: &Outline: &Контур: &Shadow: &Тень: Bold Жирный Italic КурÑив Footer Area Font Details ÐаÑтройки шрифта подпиÑи Define the font and display characteristics for the Footer text Определите шрифт Ð´Ð»Ñ Ð¿Ð¾Ð´Ð¿Ð¸Ñи Text Formatting Details ÐаÑтройки Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта Allows additional display formatting information to be defined Разрешить дополнительные наÑтройки Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Horizontal Align: Ð“Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ð¿Ñ€Ð¸Ð²Ñзка: Left Слева Right Справа Center По центру Output Area Locations РаÑположение облаÑти вывода &Main Area &ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¾Ð±Ð»Ð°Ñть &Use default location &ИÑпользовать положение по умолчанию X position: ÐŸÐ¾Ð·Ð¸Ñ†Ð¸Ñ Ð¥: px px Y position: ÐŸÐ¾Ð·Ð¸Ñ†Ð¸Ñ Y: Width: Ширина: Height: Ð’Ñ‹Ñота: Use default location ИÑпользовать раÑположение по умолчанию Theme name: Ðазвание темы: Edit Theme - %s Изменить тему - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Этот маÑтер предназначен Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¸ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñ‚ÐµÐ¼. Ðажмите кнопку Далее, чтобы начать процеÑÑ Ð½Ð°Ñтройки темы. Transitions: Переходы: &Footer Area &ОблаÑть подпиÑи Starting color: Ðачальный цвет: Ending color: Конечный цвет: Background color: Цвет фона: Justify По ширине Layout Preview ПроÑмотр вывода Transparent ПрозрачноÑть Preview and Save ПроÑмотреть и Ñохранить Preview the theme and save it. ПроÑмотрите тему и Ñохраните ее. Background Image Empty Ð¤Ð¾Ð½Ð¾Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ° не указана Select Image Выберите изображение Theme Name Missing Ðазвание темы отÑутÑтвует There is no name for this theme. Please enter one. Ðе указано название темы. Укажите его. Theme Name Invalid Ðазвание темы неверное Invalid theme name. Please enter one. Ðаверное название темы. ИÑправьте его. Solid color Ð¡Ð¿Ð»Ð¾ÑˆÐ½Ð°Ñ Ð·Ð°Ð»Ð¸Ð²ÐºÐ° color: цвет: Allows you to change and move the Main and Footer areas. ПозволÑет изменÑть и перемещать оÑновную облаÑть и облаÑть подвала. You have not selected a background image. Please select one before continuing. Ðе выбрано фоновое изображение. ПожалуйÑта, выберете прежде чем продолжить. OpenLP.ThemesTab Global Theme ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¢ÐµÐ¼Ð° Theme Level Уровень Темы S&ong Level У&ровень пеÑен Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. ИÑпользовать тему Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð¹ пеÑни. ЕÑли пеÑÐ½Ñ Ð½Ðµ имеет Ñпециальную тему, назначенную ей, иначе иÑпользовать тему ÑлужениÑ. ЕÑли тема ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð½Ðµ иÑпользуетÑÑ, иÑпользуетÑÑ Ð¾ÑÐ½Ð¾Ð²Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð°. &Service Level &Уровень ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. ИÑпользовать тему ÑлужениÑ, заменÑÑ Ð¸Ð½Ð´Ð¸Ð²Ð¸Ð´ÑƒÐ°Ð»ÑŒÐ½Ñ‹Ðµ наÑтройки пеÑен. ЕÑли тема ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Ð½Ðµ ÑущеÑтвует, иÑпользуетÑÑ Ð¾ÑÐ½Ð¾Ð²Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð°. &Global Level &ОÑновной уровень Use the global theme, overriding any themes associated with either the service or the songs. ИÑпользуетÑÑ Ð¾ÑÐ½Ð¾Ð²Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð°, заменÑÑ Ð²Ñе темы назначенные Ñлужению или пеÑне. Themes Темы Universal Settings УниверÑальные ÐаÑтройки &Wrap footer text &Оборачивать текÑÑ‚ подвала OpenLP.Ui Delete the selected item. Удалить выбранный Ñлемент. Move selection up one position. ПеремеÑтить выше. Move selection down one position. ПеремеÑтить ниже. &Vertical Align: &Вертикальное выравнивание: Finished import. Импорт завершено. Format: Формат: Importing Импорт Importing "%s"... ИмпортируетÑÑ "%s"... Select Import Source Выберите иÑточник импорта Select the import format and the location to import from. Выберите формат импорта и укажите иÑточник. Open %s File Открыть файл %s %p% %p% Ready. Готов. Starting import... Ðачинаю импорт... You need to specify at least one %s file to import from. A file type e.g. OpenSong Ðеобходимо указать по крайней мере один файл %s Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° из него. Welcome to the Bible Import Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер импорта Библий Welcome to the Song Export Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер ÑкÑпорта пеÑен Welcome to the Song Import Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер импорта пеÑен Author Singular Ðвтор Authors Plural Ðвторы © Copyright symbol. © Song Maintenance СпиÑки Topic Singular Тематика Topics Plural Тематика Title and/or verses not found Ðазвание и/или Ñтих не найден XML syntax error Ошибка ÑинтакÑиÑа XML Welcome to the Bible Upgrade Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð‘Ð¸Ð±Ð»Ð¸Ð¸ Open %s Folder Открыть папку %s You need to specify one %s file to import from. A file type e.g. OpenSong Ðеобходимо указать один файл %s Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°. You need to specify one %s folder to import from. A song format e.g. PowerSong Ðеобходимо указать один каталог %s Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°. Importing Songs Импорт пеÑен Welcome to the Duplicate Song Removal Wizard Ð’Ð°Ñ Ð¿Ñ€Ð¸Ð²ÐµÑ‚Ñтвует маÑтер ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð´ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ‚Ð¾Ð² пеÑен Written by Ðвторы Author Unknown Ðвтор не извеÑтен About О программе &Add &Добавить Add group Добавить группу Advanced Дополнительно All Files Ð’Ñе файлы Automatic ÐвтоматичеÑки Background Color Цвет фона Bottom Вниз Browse... Обзор... Cancel Отмена CCLI number: Ðомер CCLI: Create a new service. Создать новое Ñлужение. Confirm Delete Подтвердите удаление Continuous Ðепрерывно Default По умолчанию Default Color: Цвет по умолчанию: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Служение %Y-%m-%d %H-%M &Delete У&далить Display style: Стиль отображениÑ: Duplicate Error Ошибка Ð´ÑƒÐ±Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ &Edit &Изменить Empty Field ПуÑтое поле Error Ошибка Export ЭкÑпорт File Файл File Not Found Файл не найден File %s not found. Please try selecting it individually. Файл %s не найден. ПожалуйÑта, попробуйте выбрать его отдельно. pt Abbreviated font pointsize unit пт Help Помощь h The abbreviated unit for hours ч Invalid Folder Selected Singular Выбран некорректный каталог Invalid File Selected Singular Выбран некорректный файл Invalid Files Selected Plural Выбраны некорректные файлы Image Изображение Import Импорт Layout style: Отображение: Live ПрÑмой Ñфир Live Background Error Ошибка фона прÑмого Ñфира Live Toolbar Панель прÑмого Ñфира Load Загрузить Manufacturer Singular Производитель Manufacturers Plural Производители Model Singular Модель Models Plural Модели m The abbreviated unit for minutes мин Middle По центру New Ðовое New Service Ðовое Ñлужение New Theme ÐÐ¾Ð²Ð°Ñ Ñ‚ÐµÐ¼Ð° Next Track Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð´Ð¾Ñ€Ð¾Ð¶ÐºÐ° No Folder Selected Singular Каталог не выбран No File Selected Singular Файл не выбран No Files Selected Plural Файлы не выбраны No Item Selected Singular Элемент не выбран No Items Selected Plural Элементы не выбраны OpenLP is already running. Do you wish to continue? OpenLP уже запущен. Ð’Ñе равно продолжить? Open service. Открыть Ñлужение. Play Slides in Loop ЗапуÑтить цикличеÑкую Ñмену Ñлайдов Play Slides to End ЗапуÑтить однократную Ñмену Ñлайдов Preview ПроÑмотр Print Service РаÑпечатать Ñлужение Projector Singular Проектор Projectors Plural Проекторы Replace Background Заменить фон Replace live background. Заменить фон прÑмого Ñфира. Reset Background СброÑить фон Reset live background. СброÑить фон прÑмого Ñфира. s The abbreviated unit for seconds Ñек Save && Preview Сохранить и проÑмотреть Search ПоиÑк Search Themes... Search bar place holder text ПоиÑк тем... You must select an item to delete. Ðеобходимо выбрать Ñлемент Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ. You must select an item to edit. Ðеобходимо выбрать Ñлемент Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ. Settings ÐаÑтройки Save Service Сохранить Ñлужение Service Служение Optional &Split &Разделитель Split a slide into two only if it does not fit on the screen as one slide. Разделить Ñлайд на два, еÑли он не помещаетÑÑ Ñ†ÐµÐ»Ð¸ÐºÐ¾Ð¼ на Ñкране. Start %s Ðачало %s Stop Play Slides in Loop ОÑтановить цикличеÑкую Ñмену Ñлайдов Stop Play Slides to End ОÑтановить однократную Ñмену Ñлайдов Theme Singular Тема Themes Plural Темы Tools ИнÑтрументы Top Вверх Unsupported File Ðе поддерживаемый файл Verse Per Slide Стих на Ñлайд Verse Per Line Стих на абзац Version ВерÑÐ¸Ñ View ПроÑмотр View Mode Режим проÑмотра CCLI song number: Ðомер пеÑни CCLI: Preview Toolbar Панель проÑмотра OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Замена фона недоÑтупна при отключенном плеере WebKit. Songbook Singular Сборник Songbooks Plural Сборники OpenLP.core.lib %s and %s Locale list separator: 2 items %s и %s %s, and %s Locale list separator: end %s и %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Диалог выбора иÑточника PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Презентации</strong><br />Плагин предоÑтавлÑет возможноÑть показывать презентации, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ñторонние программы. Выбор доÑтупных программ презентаций доÑтупен пользователю в выпадающем ÑпиÑке. Presentation name singular ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Presentations name plural Презентации Presentations container title Презентации Load a new presentation. Загрузить новую презентацию. Delete the selected presentation. Удалить выбранную презентацию. Preview the selected presentation. ПредпроÑмотр выбранной презентации. Send the selected presentation live. Показать выбранную презентацию в прÑмом Ñфире. Add the selected presentation to the service. Добавить выбранную презентацию в Ñлужение. PresentationPlugin.MediaItem Select Presentation(s) Выберите презентации Automatic ÐвтоматичеÑки Present using: Показывать Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ: File Exists Файл ÑущеÑтвует A presentation with that filename already exists. ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже ÑущеÑтвует. This type of presentation is not supported. Этот тип презентации не поддерживаетÑÑ. Presentations (%s) Презентации (%s) Missing Presentation Ðе найдена Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ The presentation %s is incomplete, please reload. ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ %s не закончена, пожалуйÑта обновите. The presentation %s no longer exists. ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ %s больше не ÑущеÑтвует. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Возникла ошибка при показе презентации Powerpoint. ÐŸÑ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ð±ÑƒÐ´ÐµÑ‚ оÑтановлена, но ее можно перезапуÑтить заново. PresentationPlugin.PresentationTab Available Controllers ДоÑтупные Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ %s (unavailable) %s (недоÑтупно) Allow presentation application to be overridden Разрешить программе презентаций быть переопределенной PDF options Параметры PDF Use given full path for mudraw or ghostscript binary: ИÑпользовать указанный путь к иÑполнÑемому файлу mudraw или ghostscript: Select mudraw or ghostscript binary. Выберите mudraw или ghostscript иÑполнÑемый файл. The program is not ghostscript or mudraw which is required. Программа не ÑвлÑетÑÑ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸ÐµÐ¼ ghostscript или mudraw. PowerPoint options Параметры PowerPoint Clicking on a selected slide in the slidecontroller advances to next effect. При нажатии на выбранный Ñлайд в управлении Ñлайдами запуÑкает переход к Ñледующему Ñффекту. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Разрешить Powerpoint управлÑть размером и положением окна презентации (Ð´Ð»Ñ Ñ€ÐµÑˆÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼ Ñ Ð¼Ð°Ñштабированием в Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Удаленное управление</strong><br />Плагин предоÑтавлÑет возможноÑть отправлÑть ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² работающую программу OpenLP на другом компьютере через браузер или через API удаленного доÑтупа. Remote name singular Удаленное управление Remotes name plural Удаленное управление Remote container title Удаленное управление Server Config Change Изменение наÑтроек Ñервера Server configuration changes will require a restart to take effect. Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² наÑтройках Ñервера будут применены поÑле перезапуÑка. RemotePlugin.Mobile Service Manager Служение Slide Controller Управление Ñлайдами Alerts ÐžÐ¿Ð¾Ð²ÐµÑ‰ÐµÐ½Ð¸Ñ Search ПоиÑк Home Домой Refresh Обновить Blank ПуÑтой Ñкран Theme Тема Desktop Рабочий Ñтол Show Показать Prev Предыдущий Next Следующий Text ТекÑÑ‚ Show Alert Показать оповещение Go Live ПрÑмой Ñфир Add to Service Добавить в Ñлужение Add &amp; Go to Service Добавить и перейти к Ñлужению No Results Ðет результатов Options Опции Service Служение Slides Слайды Settings ÐаÑтройки Remote Удаленное управление Stage View Вид Ñо Ñцены Live View Вид прÑмого Ñфира RemotePlugin.RemoteTab Serve on IP address: IP адреÑ: Port number: Ðомер порта: Server Settings ÐаÑтройки Ñервера Remote URL: СÑылка Ð´Ð»Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ: Stage view URL: СÑылка Ð´Ð»Ñ Ñцены: Display stage time in 12h format Показывать Ð²Ñ€ÐµÐ¼Ñ Ð² режиме Ñо Ñцены в 12-чаÑовом формате Android App Android App Live view URL: СÑылка Ð´Ð»Ñ Ð¿Ñ€Ñмого Ñфира: HTTPS Server Сервер HTTPS Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Сервер HTTPS недоÑтупен, так как не удалоÑÑŒ найти Ñертификат SSL. ОбратитеÑÑŒ к руководÑтву, чтобы получить подробную информацию. User Authentication ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ User id: Пользователь: Password: Пароль: Show thumbnails of non-text slides in remote and stage view. Показывать миниатюры Ñлайдов в режимах Ð´Ð»Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸ Ð´Ð»Ñ Ñцены. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. ПроÑканируйте QR-код или нажмите на <a href="%s">ÑÑылку</a>, чтобы уÑтановить приложение Ð´Ð»Ñ Android из Google Play. SongUsagePlugin &Song Usage Tracking &ОтÑлеживание иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿ÐµÑен &Delete Tracking Data &Удалить данные об иÑпользовании Delete song usage data up to a specified date. Удалить данные иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿ÐµÑен до указанной даты. &Extract Tracking Data &Извлечь данные об иÑпользовании Generate a report on song usage. Отчет по иÑпользованию пеÑен. Toggle Tracking Переключить отÑлеживание Toggle the tracking of song usage. Переключить отÑлеживание иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿ÐµÑен. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>ИÑпользование пеÑен</strong><br />Плагин отÑлеживает иÑпользование пеÑен в ÑлужениÑÑ…. SongUsage name singular ИÑпользование пеÑен SongUsage name plural ИÑпользование пеÑен SongUsage container title ИÑпользование пеÑен Song Usage ИÑпользование пеÑен Song usage tracking is active. ОтÑлеживание иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿ÐµÑен выключено. Song usage tracking is inactive. ОтÑлеживание иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿ÐµÑен включено. display Ñкран printed напечатано SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Удалить информацию об иÑпользовании пеÑен Delete Selected Song Usage Events? Удалить выбранную информацию об иÑпользовании? Are you sure you want to delete selected Song Usage data? Удалить выбранную информацию об иÑпользовании пеÑен? Deletion Successful Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ ÑƒÑпешно удалена Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Укажите конечную дату Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¸. Ð’ÑÑ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± иÑпользовании пеÑен, запиÑÐ°Ð½Ð½Ð°Ñ Ð´Ð¾ выбранной даты, будет удалена навÑегда. All requested data has been deleted successfully. Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¸ уÑпешно удалена. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction ИÑпользование пеÑен Извлечение Select Date Range Выберите период дат to до Report Location РаÑположение отчета Output File Location РаÑположение файла вывода usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Создание отчета Report %s has been successfully created. Отчет ⎠%s ⎠был уÑпешно Ñформирован. Output Path Not Selected Путь вывода не указан You have not set a valid output location for your song usage report. Please select an existing path on your computer. Ðе указан каталог Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ñ‡ÐµÑ‚Ð¾Ð² об иÑпользовании пеÑен. ПожалуйÑта, выберите один из ÑущеÑтвующих на диÑке каталогов. Report Creation Failed Ðе удалоÑÑŒ Ñгенерировать отчет An error occurred while creating the report: %s Произошла ошибка в процеÑÑе ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‚Ñ‡ÐµÑ‚Ð°: %s SongsPlugin &Song &ПеÑÐ½Ñ Import songs using the import wizard. Импортировать пеÑни Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ маÑтера импорта. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>ПеÑни</strong><br />Плагин предоÑтавлÑет возможноÑть Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¸ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿ÐµÑнÑми. &Re-index Songs &ПереиндекÑировать пеÑни Re-index the songs database to improve searching and ordering. ПереиндекÑировать пеÑни, чтобы улучшить поиÑк и Ñортировку. Reindexing songs... ИндекÑÐ°Ñ†Ð¸Ñ Ð¿ÐµÑен... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding Кодировка Ñимволов The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Кодировка влиÑет на корректноÑть Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚ÐµÐºÑтовых Ñимволов. Обычно подходит кодировка, Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки. Please choose the character encoding. The encoding is responsible for the correct character representation. ПожалуйÑта, выберите кодировку Ñимволов. Кодировка ответÑтвенна за корректное отображение Ñимволов. Song name singular ПеÑÐ½Ñ Songs name plural ПеÑни Songs container title ПеÑни Exports songs using the export wizard. ЭкÑпортировать пеÑни Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ маÑтера ÑкÑпорта. Add a new song. Добавить новую пеÑню. Edit the selected song. Редактировать выбранную пеÑню. Delete the selected song. Удалить выбранную пеÑню. Preview the selected song. ПроÑмотреть выбранную пеÑню. Send the selected song live. Показать выбранную пеÑню в прÑмом Ñфире. Add the selected song to the service. Добавить выбранную пеÑню в Ñлужение. Reindexing songs РеиндекÑÐ°Ñ†Ð¸Ñ Ð¿ÐµÑен CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Импорт пеÑен из ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ CCLI SongSelect. Find &Duplicate Songs Ðайти &дубликаты пеÑен Find and remove duplicate songs in the song database. Ðайти и удалить дубликаты пеÑен в базе данных пеÑен. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Слова Music Author who wrote the music of a song Музыка Words and Music Author who wrote both lyrics and music of a song Слова и музыка Translation Author who translated the song Перевод SongsPlugin.AuthorsForm Author Maintenance Ðвтор Display name: Отображаемое имÑ: First name: ИмÑ: Last name: ФамилиÑ: You need to type in the first name of the author. Ðеобходимо указать Ð¸Ð¼Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð°. You need to type in the last name of the author. Ðеобходимо указать фамилию автора. You have not set a display name for the author, combine the first and last names? Ð’Ñ‹ не указали отображаемое Ð¸Ð¼Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð°. ИÑпользовать комбинацию имени и фамилии? SongsPlugin.CCLIFileImport The file does not have a valid extension. Файл имеет неправильное раÑширение. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ðе верный файл пеÑен DreamBeam. Пропущен DreamSong Ñ‚Ñг. SongsPlugin.EasyWorshipSongImport Administered by %s ÐдминиÑтрируетÑÑ %s "%s" could not be imported. %s "%s" не может быть импортирована. %s Unexpected data formatting. ÐеизвеÑтный формат данных. No song text found. Ðе найден текÑÑ‚ пеÑни. [above are Song Tags with notes imported from EasyWorship] [ниже перечиÑлены теги пеÑен и заметки, импортированные из EasyWorship] This file does not exist. Этот файл не ÑущеÑтвует. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Ðе удалоÑÑŒ найти файл "Songs.MB". Он должен находитьÑÑ Ð² одном каталоге Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð¼ "Songs.DB". This file is not a valid EasyWorship database. Файл не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð¾Ð¹ базой данных EasyWorship. Could not retrieve encoding. Ðе удалоÑÑŒ определить ÑпоÑоб кодированиÑ. SongsPlugin.EditBibleForm Meta Data Метаданные Custom Book Names ПользовательÑкие Ñборники SongsPlugin.EditSongForm Song Editor Редактор пеÑни &Title: &Ðазвание: Alt&ernate title: Д&ополнительное название: &Lyrics: &ТекÑÑ‚: &Verse order: ПорÑдок &куплетов: Ed&it All &Целиком Title && Lyrics ПеÑÐ½Ñ &Add to Song &Добавить к пеÑне &Remove Уда&лить A&dd to Song Д&обавить к пеÑне R&emove Уда&лить New &Theme &ÐÐ¾Ð²Ð°Ñ Ñ‚ÐµÐ¼Ð° Copyright Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± авторÑких правах Comments Комментарии Theme, Copyright Info && Comments Дополнительно Add Author Добавить автора This author does not exist, do you want to add them? Ðвтор не найден в базе. Хотите добавить его? This author is already in the list. Этот автор уже приÑутÑвует в ÑпиÑке. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Ðе выбран автор. Выберите его из ÑпиÑка или введите новое имÑ. Add Topic Добавить тематику This topic does not exist, do you want to add it? Тематика не найдена в базе. Хотите добавить ее? This topic is already in the list. Тематика уже приÑутÑтвует в ÑпиÑке. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Ðе выбрана тематика. Выберите ее из ÑпиÑка или введите новую. You need to type in a song title. Ðеобходимо указать название пеÑни. You need to type in at least one verse. Ðеобходимо ввеÑти текÑÑ‚ пеÑни. You need to have an author for this song. Ðеобходимо добавить автора к Ñтой пеÑне. Linked Audio СвÑзанное аудио Add &File(s) Добавить &файл(Ñ‹) Add &Media Добавить из &мультимедиа Remove &All Удалить &вÑе Open File(s) Открыть файл(Ñ‹) <strong>Warning:</strong> Not all of the verses are in use. <strong>Предупреждение:</strong> иÑпользуютÑÑ Ð½Ðµ вÑе куплеты. <strong>Warning:</strong> You have not entered a verse order. <strong>Предупреждение:</strong> не указан порÑдок куплетов. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Ðе найден куплет "%(invalid)s". Корректно указаны: %(valid)s. ПожалуйÑта, введите куплеты через пробел. Invalid Verse Order Ðекорректный порÑдок куплетов &Edit Author Type &Изменить вид авторÑтва Edit Author Type Изменить вид авторÑтва Choose type for this author Выберите вид авторÑтва There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Ðе найдены куплеты "%(invalid)s". Корректно указаны: %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks &Редактировать ÑпиÑки Add &to Song До&бавить к пеÑне Re&move &Удалить Authors, Topics && Songbooks Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Add Songbook Добавить Ñборник This Songbook does not exist, do you want to add it? Добавить Ñборник? This Songbook is already in the list. Сборник уже в ÑпиÑке. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Ðе выбран Ñборник. Ðеобходимо выбрать Ñборник из ÑпиÑка или ввеÑти название нового Ñборник и нажать "Добавить к пеÑне". SongsPlugin.EditVerseForm Edit Verse Изменить текÑÑ‚ &Verse type: &Тип: &Insert &Ð’Ñтавить Split a slide into two by inserting a verse splitter. Ð’Ñтавить разделитель Ñлайдов. SongsPlugin.ExportWizardForm Song Export Wizard МаÑтер ÑкÑпорта пеÑен Select Songs Выберите пеÑни Ð´Ð»Ñ ÑкÑпорта Check the songs you want to export. Выберите пеÑни, которые вы хотите ÑкÑпортировать. Uncheck All СброÑить вÑе Check All Выбрать вÑе Select Directory Выберите каталог Directory: Каталог: Exporting ЭкÑпортирую Please wait while your songs are exported. ПроизводитÑÑ ÑкÑпортирование выбранных пеÑен. ПожалуйÑта, подождите. You need to add at least one Song to export. Ðеобходимо выбрать Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ одну пеÑню Ð´Ð»Ñ ÑкÑпорта. No Save Location specified Ðе выбрано меÑто ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Starting export... Ðачинаю ÑкÑпорт... You need to specify a directory. Ðеобходимо указать каталог. Select Destination Folder Выберите каталог Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Select the directory where you want the songs to be saved. Выберите каталог, в котором вы хотите Ñохранить пеÑни. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Этот маÑтер предназначен Ð´Ð»Ñ ÑкÑпорта пеÑен в открытый формат <strong>OpenLyrics</strong>. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ðекорректный файл пеÑен Foilpresenter. Ðе найдены куплеты. SongsPlugin.GeneralTab Enable search as you type Включить поиÑк при вводе SongsPlugin.ImportWizardForm Select Document/Presentation Files Выберите файл документа или презентации Song Import Wizard МаÑтер импорта пеÑен This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Этот маÑтер предназначен Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° пеÑен из различных форматов. Выберите кнопку Далее, чтобы перейти к выбору формата Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°. Generic Document/Presentation Обычный документ или Ð¿Ñ€ÐµÐ·ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Add Files... Добавить файлы... Remove File(s) Удалить файл(Ñ‹) Please wait while your songs are imported. ПроизводитÑÑ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚ пеÑен. ПожалуйÑта, подождите. Words Of Worship Song Files Words Of Worship Songs Of Fellowship Song Files Songs Of Fellowship SongBeamer Files SongBeamer SongShow Plus Song Files SongShow Plus Foilpresenter Song Files Foilpresenter Copy Копировать Save to File Сохранить в файл The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Импорт из Songs of Fellowship отключен, так как OpenLP не может получить доÑтуп к OpenOffice или LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Импорт из обычных документов или презентаций отключен, так как OpenLP не может получить доÑтуп к OpenOffice или LibreOffice. OpenLyrics Files OpenLyrics CCLI SongSelect Files CCLI SongSelect EasySlides XML File EasySlides EasyWorship Song Database EasyWorship DreamBeam Song Files DreamBeam You need to specify a valid PowerSong 1.0 database folder. Ðеобходимо указать корректный каталог Ñ Ð±Ð°Ð·Ð¾Ð¹ данных PowerSong 1.0. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Сначала Ñконвертируйте ZionWorx базу в текÑтовый файл CSV, как объÑÑнÑетÑÑ Ð² <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">РуководÑтве пользователÑ</a>. SundayPlus Song Files SundayPlus This importer has been disabled. Импорт из Ñтого формата отключен. MediaShout Database MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Импорт из MediaShout поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в Windows. ЕÑли вы хотите импортировать из Ñтого формата, вам нужно уÑтановить Python модуль "pyodbc". SongPro Text Files SongPro (Text File) SongPro (Export File) SongPro (Export File) In SongPro, export your songs using the File -> Export menu Ð’ SongPro, ÑкÑпортируйте пеÑни Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ меню File -> Export EasyWorship Service File EasyWorship WorshipCenter Pro Song Files WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Импорт из WorshipCenter Pro поддерживаетÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в Windows. ЕÑли вы хотите импортировать из Ñтого формата, вам нужно уÑтановить Python модуль "pyodbc". PowerPraise Song Files PowerPraise PresentationManager Song Files PresentationManager ProPresenter 4 Song Files ProPresenter 4 Worship Assistant Files Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Ð’ Worship Assistant, ÑкÑпортируйте базу данных в текÑтовый файл CSV. OpenLyrics or OpenLP 2 Exported Song OpenLyrics или OpenLP 2 OpenLP 2 Databases OpenLP 2 LyriX Files LyriX LyriX (Exported TXT-files) LyriX (TXT) VideoPsalm Files VideoPsalm VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s ПеÑни VideoPsalm обычно раÑположены в %s SongsPlugin.LyrixImport Error: %s Ошибка импорта из LyriX: %s SongsPlugin.MediaFilesForm Select Media File(s) Выберите мультимедиа файл(Ñ‹) Select one or more audio files from the list below, and click OK to import them into this song. Выберите один или более аудио файлов из ÑпиÑка ниже, и нажмите ОК Ð´Ð»Ñ Ð¸Ñ… импорта в Ñту пеÑню. SongsPlugin.MediaItem Titles По названию Lyrics По текÑту CCLI License: Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ CCLI: Entire Song Везде Maintain the lists of authors, topics and books. Редактировать ÑпиÑки авторов, тематик и Ñборников пеÑен. copy For song cloning ÐºÐ¾Ð¿Ð¸Ñ Search Titles... ПоиÑк по названию... Search Entire Song... ПоиÑк по вÑему Ñодержимому пеÑен... Search Lyrics... ПоиÑк по текÑту пеÑен... Search Authors... ПоиÑк по авторам... Are you sure you want to delete the "%d" selected song(s)? Удалить выбранные пеÑни (выбрано пеÑен: %d)? Search Songbooks... ПоиÑк Ñборников... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Ðевозможно открыть базу данных MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Файл не ÑвлÑетÑÑ Ð±Ð°Ð·Ð¾Ð¹ данных OpenLP 2. SongsPlugin.OpenLyricsExport Exporting "%s"... ЭкÑпортирую "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ðекорректный файл OpenSong. Ðе найден тег пеÑни. SongsPlugin.PowerSongImport No songs to import. Ðет пеÑен Ð´Ð»Ñ Ð¸Ð¼Ð¾Ñ€Ñ‚Ð°. Verses not found. Missing "PART" header. Стихи не найдены. Пропущен заголовок "PART". No %s files found. %s файлов не найдено. Invalid %s file. Unexpected byte value. Ðеправильный файл %s. Ðеожиданное бинарное значение. Invalid %s file. Missing "TITLE" header. Ðеправильный файл %s. Ðе найден "TITLE" заголовок. Invalid %s file. Missing "COPYRIGHTLINE" header. Ðеправильный файл %s. Ðе найден "COPYRIGHTLINE" заголовок. SongsPlugin.SongBookForm &Name: &Ðазвание: &Publisher: &Издатель: You need to type in a name for the book. Ðеобходимо ввеÑти название Ñборника. Songbook Maintenance СпиÑки SongsPlugin.SongExportForm Your song export failed. Ðе удалоÑÑŒ ÑкÑпортировать пеÑню. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Окончено ÑкÑпортирование. Ð”Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° Ñти файлов иÑпользуйте <strong>OpenLyrics</strong> импортер. Your song export failed because this error occurred: %s ЭкÑпорт вашей пеÑни не удалÑÑ Ð¸Ð·-за возникшей ошибки: %s SongsPlugin.SongImport copyright авторÑкие права The following songs could not be imported: Следующие пеÑни не могут быть импортированы: Cannot access OpenOffice or LibreOffice Ðет доÑтупа к OpenOffice или LibreOffice Unable to open file Ðе удаетÑÑ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ÑŒ файл File not found Файл не найден SongsPlugin.SongMaintenanceForm Could not add your author. Ðе возможно добавить вашего автора. This author already exists. Этот автор уже ÑущеÑтвует. Could not add your topic. Ðе удалоÑÑŒ добавить тематику. This topic already exists. Эта тематика уже ÑущеÑтвует. Could not add your book. Ðе удалоÑÑŒ добавить Ñборник. This book already exists. Этот Ñборник уже ÑущеÑтвует. Could not save your changes. Ðе возможно Ñохранить ваши изменениÑ. Could not save your modified author, because the author already exists. Ðе возможно Ñохранить вашего измененного автора, так как Ñтот автор уже ÑущеÑтвует. Could not save your modified topic, because it already exists. Ðе удалоÑÑŒ Ñохранить тематику, так как она уже ÑущеÑтвует. Delete Author Удалить автора Are you sure you want to delete the selected author? Удалить выбранного автора? This author cannot be deleted, they are currently assigned to at least one song. Этот автор не может быть удален, он приÑвоен как минимум одной пеÑне. Delete Topic Удалить тематику Are you sure you want to delete the selected topic? Удалить выбранную тематику? This topic cannot be deleted, it is currently assigned to at least one song. Эта тематика не может быть удалена, так как она приÑвоена как минимум одной пеÑне. Delete Book Удалить Ñборник Are you sure you want to delete the selected book? Удалить выбранный Ñборник? This book cannot be deleted, it is currently assigned to at least one song. Этот Ñборник не может быть удален, он приÑвоена как минимум одной пеÑне. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ðвтор %s уже ÑущеÑтвует. Хотите приÑвоить пеÑне Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð¼ %s ÑущеÑтвующего автора %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Тематика %s уже ÑущеÑтвует. Хотите перевеÑти пеÑни Ñ Ñ‚ÐµÐ¼Ð°Ñ‚Ð¸ÐºÐ¾Ð¹ %s на ÑущеÑтвующую тематику %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Сборник %s уже ÑущеÑтвует. Хотите приÑвоить пеÑне Ñо Ñборником %s ÑущеÑтвующий Ñборник %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Импорт <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Примечание:</strong> Подключение к Интернету требуетÑÑ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы импортировать пеÑни из CCLI SongSelect. Username: Логин: Password: Пароль: Save username and password Сохранение имени Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ Ð¿Ð°Ñ€Ð¾Ð»Ñ Login Вход Search Text: ПоиÑк в текÑте: Search ПоиÑк Found %s song(s) Ðайдена %s пеÑнÑ(и) Logout Выход View ПроÑмотр Title: Ðазвание: Author(s): Ðвтор(Ñ‹): Copyright: ÐвторÑкие права: CCLI Number: Ðомер CCLI: Lyrics: Слова: Back Черный Import Импорт More than 1000 results Более чем 1000 Ñовпадений Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. ПоиÑк дал более тыÑÑчи результатов и поÑтому был оÑтановлен. ПожалуйÑта, уточните текÑÑ‚ поиÑка. Logging out... Выход... Save Username and Password Сохранение имени Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ Ð¿Ð°Ñ€Ð¾Ð»Ñ WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Ð’ÐИМÐÐИЕ: Сохранение ваше Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ пароль небезопаÑно, пароль хранитÑÑ Ð² виде обычного текÑта. Ðажмите Да, чтобы Ñохранить Ñвой пароль или Ðет, чтобы отменить Ñто. Error Logging In Ошибка авторизации There was a problem logging in, perhaps your username or password is incorrect? Был проблема входа в ÑиÑтему, может быть, ваше Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ пароль неверен? Song Imported ПеÑÐ½Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð° Incomplete song ÐÐµÐ¿Ð¾Ð»Ð½Ð°Ñ Ð¿ÐµÑÐ½Ñ This song is missing some information, like the lyrics, and cannot be imported. Ð’ Ñтой пеÑне не хватает такой информации, такой Ñтихи, и она не может быть импортирована. Your song has been imported, would you like to import more songs? Ваша пеÑÐ½Ñ Ð±Ñ‹Ð»Ð° импортирована, вы хотели бы еще импортировать пеÑни? Stop ОÑтановить SongsPlugin.SongsTab Songs Mode Режим пеÑен Display verses on live tool bar Показать куплеты в окне прÑмого Ñфира Update service from song edit Обновить Ñлужение из редактора пеÑен Import missing songs from service files Импортировать не найденные пеÑни из файла ÑÐ»ÑƒÐ¶ÐµÐ½Ð¸Ñ Display songbook in footer Показывать Ñборник пеÑен внизу Ñкрана Display "%s" symbol before copyright info Показывать Ñимвол "%s" в информации об авторÑком праве SongsPlugin.TopicsForm Topic Maintenance Тематика Topic name: Тематика: You need to type in a topic name. Ðеобходимо ввеÑти тематику. SongsPlugin.VerseType Verse Verse (куплет) Chorus Chorus (припев) Bridge Bridge (моÑÑ‚) Pre-Chorus Pre-Chorus (пред-припев) Intro Intro (проигрыш) Ending Ending (окончание) Other Other (другое) SongsPlugin.VideoPsalmImport Error: %s Ошибка: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Ðекорректный файл Words of Worship. Ðе найден заголовок %s Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Ðекорректный файл Words of Worship. Ðе найдена Ñтрока "%s" SongsPlugin.WorshipAssistantImport Error reading CSV file. Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ CSV файла. Line %d: %s Строка %d: %s Decoding error: %s Ошибка декодированиÑ: %s File not valid WorshipAssistant CSV format. Файл не ÑоответÑтвует формату WorshipAssistant CSV. Record %d ЗапиÑÑŒ %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Ðе удалоÑÑŒ подключитьÑÑ Ðº базе данных WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ CSV файла. File not valid ZionWorx CSV format. Файл не правильного ZionWorx CSV формата. Line %d: %s Строка %d: %s Decoding error: %s Ошибка декодированиÑ: %s Record %d ЗапиÑÑŒ %d Wizard Wizard МаÑтер This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Этот маÑтер предназначен Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð´ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ‚Ð¾Ð² пеÑен из базы данных. Ð’Ñ‹ будете иметь возможноÑть проÑмотреть вÑе потенциальные дубликаты пеÑен, прежде чем они будут удалены. ПеÑни не будут удалены без Ñвного подтверждениÑ. Searching for duplicate songs. ПоиÑк дубликатов пеÑен. Please wait while your songs database is analyzed. ПожалуйÑта, подождите, пока Ваша база данных пеÑни анализируетÑÑ. Here you can decide which songs to remove and which ones to keep. ЗдеÑÑŒ вы можете решить, какие пеÑни удалить, а какие оÑтавить. Review duplicate songs (%s/%s) Обзор дубликатов пеÑен (%s/%s) Information Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ No duplicate songs have been found in the database. Дубликаты пеÑен не были найдены в базе. OpenLP-2.4/resources/i18n/nl.ts0000644000175000017500000155055512657640340015343 0ustar raoulraoul AlertsPlugin &Alert W&aarschuwing Show an alert message. Toon waarschuwingsberichten. Alert name singular Waarschuwing Alerts name plural Waarschuwingen Alerts container title Waarschuwingen <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Waarschuwingsplug-in</strong><br />De waarschuwingsplug-in regelt de weergave van waarschuwingen op het scherm. AlertsPlugin.AlertForm Alert Message Waarschuwing Alert &text: Waarschuwings&tekst: &New &Nieuw &Save Op&slaan Displ&ay Wee&rgeven Display && Cl&ose &Weergeven && sluiten New Alert Nieuwe waarschuwing &Parameter: &Parameter: No Parameter Found Geen parameters gevonden You have not entered a parameter to be replaced. Do you want to continue anyway? U heeft geen parameter opgegeven die vervangen moet worden. Toch doorgaan? No Placeholder Found Geen tijdelijke aanduiding gevonden The alert text does not contain '<>'. Do you want to continue anyway? De waarschuwingstekst bevat geen '<>'. Wilt u toch doorgaan? You haven't specified any text for your alert. Please type in some text before clicking New. De waarschuwingstekst is leeg. Voer eerst tekst in voordat u op Nieuw klikt. AlertsPlugin.AlertsManager Alert message created and displayed. Waarschuwing gemaakt en weergegeven. AlertsPlugin.AlertsTab Font Lettertype Font name: Naam lettertype: Font color: Letterkleur: Background color: Achtergrondkleur: Font size: Lettergrootte: Alert timeout: Tijdsduur: BiblesPlugin &Bible &Bijbel Bible name singular Bijbel Bibles name plural Bijbels Bibles container title Bijbels No Book Found Geen bijbelboek gevonden No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Er kon geen bijbelboek met die naam gevonden worden. Controleer de spelling. Import a Bible. Importeer een bijbel. Add a new Bible. Voeg een nieuwe bijbel toe. Edit the selected Bible. Geselecteerde bijbel bewerken. Delete the selected Bible. Geselecteerde bijbel verwijderen. Preview the selected Bible. Geselecteerde bijbeltekst in voorbeeldscherm tonen. Send the selected Bible live. Geselecteerde bijbeltekst live tonen. Add the selected Bible to the service. Geselecteerde bijbeltekst aan de liturgie toevoegen. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bijbelplug-in</strong><br />De Bijbelplug-in voorziet in de mogelijkheid bijbelteksten uit verschillende bronnen weer te geven tijdens de dienst. &Upgrade older Bibles &Upgrade oude bijbels Upgrade the Bible databases to the latest format. Upgrade de bijbeldatabases naar de meest recente indeling. Genesis Genesis Exodus Exodus Leviticus Leviticus Numbers Numeri Deuteronomy Deuteronomium Joshua Jozua Judges Rechters Ruth Ruth 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Koningen 2 Kings 2 Koningen 1 Chronicles 1 Kronieken 2 Chronicles 2 Kronieken Ezra Ezra Nehemiah Nehemia Esther Ester Job Job Psalms Psalmen Proverbs Spreuken Ecclesiastes Prediker Song of Solomon Hooglied Isaiah Jesaja Jeremiah Jeremia Lamentations Klaagliederen Ezekiel Ezechiël Daniel Daniël Hosea Hosea Joel Joël Amos Amos Obadiah Obadja Jonah Jona Micah Micha Nahum Nahum Habakkuk Habakuk Zephaniah Sefanja Haggai Haggai Zechariah Zacharia Malachi Maleachi Matthew Matteüs Mark Marcus Luke Lucas John Johannes Acts Handelingen Romans Romeinen 1 Corinthians 1 Korintiërs 2 Corinthians 2 Korintiërs Galatians Galaten Ephesians Efeziërs Philippians Filippenzen Colossians Kolossenzen 1 Thessalonians 1 Tessalonicenzen 2 Thessalonians 2 Tessalonicenzen 1 Timothy 1 Timoteüs 2 Timothy 2 Timoteüs Titus Titus Philemon Filemon Hebrews Hebreeën James Jakobus 1 Peter 1 Petrus 2 Peter 2 Petrus 1 John 1 Johannes 2 John 2 Johannes 3 John 3 Johannes Jude Judas Revelation Openbaring Judith Judit Wisdom Wijsheid Tobit Tobit Sirach Sirach Baruch Baruch 1 Maccabees 1 Makkabeeën 2 Maccabees 2 Makkabeeën 3 Maccabees 3 Makkabeeën 4 Maccabees 4 Makkabeeën Rest of Daniel Toevoegingen aan Daniël Rest of Esther Ester (Grieks) Prayer of Manasses Manasse Letter of Jeremiah Brief van Jeremia Prayer of Azariah Gebed van Azaria Susanna Susanna Bel Bel en de draak 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verzen - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 tot , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 en end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse einde BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. U moet een naam opgeven voor deze versie van de bijbel. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. U moet opgeven welke copyrights gelden voor deze bijbelvertaling. Bijbels in het publieke domein moeten als zodanig gemarkeerd worden. Bible Exists Bijbel bestaat al This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbelvertaling bestaat reeds. Importeer een andere vertaling of verwijder eerst de bestaande versie. You need to specify a book name for "%s". U moet een naam opgeven voor het bijbelboek "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. De naam voor het bijbelboek "%s" is niet correct. Nummers mogen alleen aan het begin gebruikt worden en moeten gevolgd worden door een of meerdere niet-nummer lettertekens. Duplicate Book Name Duplicaat gevonden The Book Name "%s" has been entered more than once. De naam van het bijbelboek "%s" is meer dan één keer opgegeven. BiblesPlugin.BibleManager Scripture Reference Error Fout in schriftverwijzing Web Bible cannot be used Online bijbels kunnen niet worden gebruikt Text Search is not available with Web Bibles. In online bijbels kunt u niet zoeken op tekst. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Geen zoekterm opgegeven. Woorden met een spatie ertussen betekent zoeken naar alle woorden, woorden met een komma ertussen betekent zoeken naar de afzonderlijke woorden. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Er zijn geen bijbels geïnstalleerd. Gebruik de Import Assistent om een of meerdere bijbels te installeren. No Bibles Available Geen bijbels beschikbaar Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. De opgegeven tekstverwijzing wordt niet herkend door OpenLP of is ongeldig. Gebruik een van onderstaande patronen of raadpleeg de handleiding: Boek Hoofdstuk Boek Hoofdstuk%(range)sHoofdstuk Boek Hoofdstuk%(verse)sVers%(range)sVers Boek Hoofdstuk%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Boek Hoofdstuk%(verse)sVers%(range)sVers%(list)sHoofdstuk%(verse)sVers%(range)sVers Boek Hoofdstuk%(verse)sVers%(range)sHoofdstuk%(verse)sVers BiblesPlugin.BiblesTab Verse Display Bijbeltekst weergave Only show new chapter numbers Toon alleen nieuw hoodstuknummer Bible theme: Bijbel thema: No Brackets Geen haakjes ( And ) ( en ) { And } { en } [ And ] [ en ] Note: Changes do not affect verses already in the service. Opmerking: Wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zijn opgenomen. Display second Bible verses Toon tweede bijbelvertaling Custom Scripture References Aangepaste schriftverwijzingen Verse Separator: Vers scheidingsteken: Range Separator: Bereik scheidingsteken: List Separator: Lijst scheidingsteken: End Mark: Eind teken: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Meerdere alternatieve vers-scheidingstekens mogen worden opgegeven. Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. English Dutch Default Bible Language Standaardtaal bijbel Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: Bible Language Taal bijbel Application Language Programmataal Show verse numbers Toon versnummers BiblesPlugin.BookNameDialog Select Book Name Selecteer naam bijbelboek Current name: Huidige naam: Corresponding name: Overeenkomstige naam: Show Books From Toon boeken uit Old Testament Oude Testament New Testament Nieuwe Testament Apocrypha Apocriefe boeken The following book name cannot be matched up internally. Please select the corresponding name from the list. Voor de volgende namen van bijbelboeken is geen passend alternatief. Selecteer het juiste bijbelboek uit de lijst. BiblesPlugin.BookNameForm You need to select a book. Selecteer een boek. BiblesPlugin.CSVBible Importing books... %s Importeren bijbelboeken... %s Importing verses... done. Importeren bijbelverzen... klaar. BiblesPlugin.EditBibleForm Bible Editor Bijbel editor License Details Licentiedetails Version name: Versie naam: Copyright: Copyright: Permissions: Rechten: Default Bible Language Standaardtaal bijbel Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: Global Settings Globale instellingen Bible Language Taal bijbel Application Language Programmataal English Dutch This is a Web Download Bible. It is not possible to customize the Book Names. Deze bijbelvertaling is een download-bijbel. De namen van bijbelboeken kunnen niet aangepast worden. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Om aangepaste namen voor bijbelboeken te gebruiken, moet "Bijbeltaal" geselecteerd zijn op het tabblad "Algemene informatie" of, als "Globale instellingen" is geselecteerd, op de "Bijbel" pagina in "Instellingen". BiblesPlugin.HTTPBible Registering Bible and loading books... Bezig met registreren van bijbel en laden van boeken... Registering Language... Bezig met registreren van de taal... Importing %s... Importing <book name>... Bezig met importeren van "%s"... Download Error Downloadfout There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Er is een fout opgetreden bij het downloaden van de bijbelverzen. Controleer uw internetverbinding. Als dit probleem zich blijft herhalen is er misschien sprake van een programmafout. Parse Error Verwerkingsfout There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Er is een fout opgetreden bij het uitpakken van de bijbelverzen. Als dit probleem zich blijft herhalen is er misschien sprake van een programmafout. BiblesPlugin.ImportWizardForm Bible Import Wizard Bijbel Import Assistent This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Deze Assistent helpt u bijbels van verschillende bestandsformaten te importeren. Om de Assistent te starten klikt op volgende. Web Download Onlinebijbel Location: Locatie: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bijbelvertaling: Download Options Downloadopties Server: Server: Username: Gebruikersnaam: Password: Wachtwoord: Proxy Server (Optional) Proxyserver (optioneel) License Details Licentiedetails Set up the Bible's license details. Geef aan welke licentievoorwaarden gelden voor deze bijbelvertaling. Version name: Versie naam: Copyright: Copyright: Please wait while your Bible is imported. Een moment geduld. De bijbelvertaling wordt geïmporteerd. You need to specify a file with books of the Bible to use in the import. Er moet een bestand met beschikbare bijbelboeken opgegeven worden. You need to specify a file of Bible verses to import. Er moet een bestand met bijbelverzen opgegeven worden. You need to specify a version name for your Bible. U moet een naam opgeven voor deze versie van de bijbel. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. U moet opgeven welke copyrights gelden voor deze bijbelvertaling. Bijbels in het publieke domein moeten als zodanig gemarkeerd worden. Bible Exists Bijbel bestaat al This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbelvertaling bestaat reeds. Importeer een andere vertaling of verwijder eerst de bestaande versie. Your Bible import failed. Het importeren is mislukt. CSV File CSV bestand Bibleserver Bibleserver.com Permissions: Rechten: Bible file: Bijbel bestand: Books file: Bijbelboeken bestand: Verses file: Bijbelverzen bestand: Registering Bible... Bezig met registreren van bijbel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bijbel geregistreerd. Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding is dus noodzakelijk. Click to download bible list Klik om de bijbellijst te downloaden Download bible list Download bijbellijst Error during download Fout tijdens het downloaden An error occurred while downloading the list of bibles from %s. Er is een fout opgetreden bij het downloaden van de bijbellijst van %s. BiblesPlugin.LanguageDialog Select Language Selecteer taal OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan niet bepalen in welke taal deze Bijbel is geschreven. Selecteer een taal uit de onderstaande lijst. Language: Taal: BiblesPlugin.LanguageForm You need to choose a language. Geef een taal op. BiblesPlugin.MediaItem Quick Snelzoeken Find: Vind: Book: Boek: Chapter: Hoofdstuk: Verse: Vers: From: Van: To: Tot: Text Search Zoek in tekst Second: Tweede: Scripture Reference Schriftverwijzing Toggle to keep or clear the previous results. Zoekresultaten wel / niet behouden. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkele en dubbele bijbelvers zoekresultaten kunnen niet gecombineerd worden. Resultaten wissen en opnieuw beginnen? Bible not fully loaded. Bijbel niet geheel geladen. Information Informatie The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. De tweede bijbelvertaling bevat niet alle verzen die in de eerste bijbelvertaling staan. Alleen de verzen die in beide vertalingen voorkomen worden getoond. %d verzen zijn niet opgenomen in de resultaten. Search Scripture Reference... Zoek schriftverwijzing Search Text... Zoek tekst... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Weet u zeker dat u de bijbel "%s" uit OpenLP wilt verwijderen? De bijbel moet opnieuw geïmporteerd worden om weer gebruikt te kunnen worden. Advanced Geavanceerd BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect bijbelbestand. OpenSong bijbels kunnen gecomprimeerd zijn en moeten uitgepakt worden vóór het importeren. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Incorrect bijbelbestand. Het lijkt een Zefania XML bijbel te zijn, waarvoor u de Zefania importoptie kunt gebruiken. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Bezig met importeren van %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Ongebruikte tags verwijderen (dit kan enkele minuten duren)... Importing %(bookname)s %(chapter)s... Bezig met importeren van %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Selecteer backupmap Bible Upgrade Wizard Bijbel Upgrade Assistent This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Deze Assistent helpt u bestaande bijbels bij te werken van een eerdere indeling van OpenLP 2. Om de Assistent te starten klikt op volgende. Select Backup Directory Selecteer backupmap Please select a backup directory for your Bibles Selecteer een map om de backup van uw bijbels in op te slaan Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Eerdere versies van OpenLP 2.0 kunnen de nieuwe bijbelbestanden niet lezen. De assistent maakt een backup van uw huidige bestanden zodat u eenvoudig de bijbels terug kunt zetten in de OpenLP datamap voor het geval u met een oude versie van OpenLP moet werken. Instructies hoe de oorspronkelijke bestanden te herstellen staan in de <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a> (engelstalig). Please select a backup location for your Bibles. Selecteer een map om de backup van uw bijbels in op te slaan. Backup Directory: Backupmap: There is no need to backup my Bibles Er hoeft geen backup gemaakt te worden Select Bibles Selecteer bijbels Please select the Bibles to upgrade Selecteer de bijbels om bij te werken Upgrading Bijwerken Please wait while your Bibles are upgraded. Een moment geduld. De bijbels worden bijgewerkt. The backup was not successful. To backup your Bibles you need permission to write to the given directory. De backup is mislukt. Om bijbels bij te werken moet de map schrijfbaar zijn. Upgrading Bible %s of %s: "%s" Failed Bijwerken bijbel %s van %s: "%s" Mislukt Upgrading Bible %s of %s: "%s" Upgrading ... Bijwerken bijbel %s van %s: "%s" Bijwerken ... Download Error Downloadfout To upgrade your Web Bibles an Internet connection is required. Om online bijbels bij te werken is een internetverbinding noodzakelijk. Upgrading Bible %s of %s: "%s" Upgrading %s ... Bijwerken bijbel %s van %s: "%s" Bijwerken %s ... Upgrading Bible %s of %s: "%s" Complete Bijwerken bijbel %s van %s: "%s" Klaar , %s failed , %s mislukt Upgrading Bible(s): %s successful%s Bijwerken bijbel(s): %s gelukt%s Upgrade failed. Bijwerken mislukt. You need to specify a backup directory for your Bibles. Selecteer een map om de backup van uw bijbels in op te slaan. Starting upgrade... Start bijwerken... There are no Bibles that need to be upgraded. Er zijn geen bijbels om bij te werken. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Bijwerken bijbel(s): %(success)d gelukt%(failed_text)s Let op, de bijbelverzen van internetbijbels worden gedownload wanneer deze nodig zijn. Een internetverbinding is dan noodzakelijk. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Incorrect bijbelbestand. Zefania bijbels kunnen gecomprimeerd zijn en moeten uitgepakt worden vóór het importeren. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Bezig met importeren van %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Aangepaste dia Custom Slides name plural Aangepaste dia’s Custom Slides container title Aangepaste dia’s Load a new custom slide. Aangepaste dia laden. Import a custom slide. Aangepaste dia importeren. Add a new custom slide. Aangepaste dia toevoegen. Edit the selected custom slide. Geselecteerde dia bewerken. Delete the selected custom slide. Geselecteerde dia verwijderen. Preview the selected custom slide. Voorbeeld van geselecteerde dia bekijken. Send the selected custom slide live. Toon geselecteerde dia live. Add the selected custom slide to the service. Geselecteerde dia aan liturgie toevoegen. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Aangepaste Dia plug-in</strong><br />De Aangepaste Dia plug-in voorziet in mogelijkheden aangepaste tekst weer te geven op dezelfde manier als liederen. Deze plugin voorziet in meer mogelijkheden dan de Lied plugin. CustomPlugin.CustomTab Custom Display Aangepaste weergave Display footer Voettekst weergeven Import missing custom slides from service files Importeer ontbrekende aangepaste dia's uit liturgiebestand CustomPlugin.EditCustomForm Edit Custom Slides Aangepaste dia's bewerken &Title: &Titel: Add a new slide at bottom. Nieuwe dia onderaan toevoegen. Edit the selected slide. Geselecteerde dia bewerken. Edit all the slides at once. Alle dia's tegelijk bewerken. Split a slide into two by inserting a slide splitter. Dia splitsen door een dia 'splitter' in te voegen. The&me: The&ma: &Credits: &Auteur: You need to type in a title. Geef een titel op. Ed&it All &Alles bewerken Insert Slide Dia invoegen You need to add at least one slide. Voeg minimaal één dia toe. CustomPlugin.EditVerseForm Edit Slide Dia bewerken CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Weet u zeker dat u de "%d" geslecteerde dia(s) wilt verwijderen? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Afbeeldingen plug-in</strong><br />De afbeeldingen plug-in voorziet in de mogelijkheid afbeeldingen te laten zien.<br />Een van de bijzondere mogelijkheden is dat meerdere afbeeldingen als groep in de liturgie worden opgenomen, zodat weergave van meerdere afbeeldingen eenvoudiger wordt. Deze plug-in maakt doorlopende diashows (bijv. om de 3 sec. een nieuwe dia) mogelijk. Ook kun met deze plug-in de achtergrondafbeelding van het thema vervangen met een andere afbeelding. Ook de combinatie van tekst en beeld is mogelijk. Image name singular Afbeelding Images name plural Afbeeldingen Images container title Afbeeldingen Load a new image. Nieuwe afbeelding laden. Add a new image. Nieuwe afbeelding toevoegen. Edit the selected image. Geselecteerde afbeelding bewerken. Delete the selected image. Geselecteerde afbeelding verwijderen. Preview the selected image. Voorbeeld van geselecteerde afbeelding bekijken. Send the selected image live. Geselecteerde afbeelding live tonen. Add the selected image to the service. Geselecteerde afbeelding aan liturgie toevoegen. ImagePlugin.AddGroupForm Add group Voeg groep toe Parent group: Bovenliggende groep Group name: Groepsnaam: You need to type in a group name. U moet een groepsnaam invullen. Could not add the new group. Kon de nieuwe groep niet toevoegen. This group already exists. Deze groep bestaat al. ImagePlugin.ChooseGroupForm Select Image Group Selecteer afbeelding groep Add images to group: Voeg afbeeldingen toe aan groep: No group Geen groep Existing group Bestaande groep New group Nieuwe groep ImagePlugin.ExceptionDialog Select Attachment Selecteer bijlage ImagePlugin.MediaItem Select Image(s) Selecteer afbeelding(en) You must select an image to replace the background with. Selecteer een afbeelding om de achtergrond te vervangen. Missing Image(s) Ontbrekende afbeelding(en) The following image(s) no longer exist: %s De volgende afbeelding(en) ontbreken: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? De volgende afbeelding(en) ontbreken: %s De andere afbeeldingen alsnog toevoegen? There was a problem replacing your background, the image file "%s" no longer exists. Achtergrond kan niet vervangen worden omdat de afbeelding "%s" ontbreekt. There was no display item to amend. Er wordt geen item weergegeven dat aangepast kan worden. -- Top-level group -- -- Hoogste niveau groep -- You must select an image or group to delete. Selecteer een afbeelding of groep om te verwijderen. Remove group Verwijder groep Are you sure you want to remove "%s" and everything in it? Weet u zeker dat u "%s" en alles daarin wilt verwijderen? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Zichtbare achtergrond voor afbeeldingen met een andere verhouding dan het scherm. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC is een externe speler die veel verschillende bestandsformaten ondersteunt. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit is een mediaplayer die draait binnen een browser. Deze speler maakt het mogelijk tekst over een video heen te vertonen. This media player uses your operating system to provide media capabilities. Deze mediaspeler gebruikt de afspeelmogelijkheden van het besturingssysteem. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media plug-in</strong><br />De media plug-in voorziet in de mogelijkheid om audio en video af te spelen. Media name singular Media Media name plural Media Media container title Media Load new media. Nieuwe media laden. Add new media. Nieuwe media toevoegen. Edit the selected media. Geselecteerd mediabestand bewerken. Delete the selected media. Geselecteerd mediabestand verwijderen. Preview the selected media. Toon voorbeeld van geselecteerd mediabestand. Send the selected media live. Geselecteerd mediabestand live tonen. Add the selected media to the service. Geselecteerd mediabestand aan liturgie toevoegen. MediaPlugin.MediaClipSelector Select Media Clip Selecteer fragment Source Bron Media path: Media pad: Select drive from list Selecteer de speler uit de lijst Load disc Schijf laden Track Details Trackdetails Title: Titel: Audio track: Geluidsspoor: Subtitle track: Ondertiteling: HH:mm:ss.z HH:mm:ss.z Clip Range Fragmentdetails Start point: Startpunt: Set start point Startpunt instellen Jump to start point Spring naar startpunt End point: Eindpunt: Set end point Eindpunt instellen Jump to end point Spring naar eindpunt MediaPlugin.MediaClipSelectorForm No path was given Er is geen pad opgegeven Given path does not exists Het opgegeven pad bestaat niet An error happened during initialization of VLC player Er is een fout opgetreden bij het initialiseren van VLC VLC player failed playing the media VLC kon de schijf niet afspelen CD not loaded correctly CD niet correct geladen The CD was not loaded correctly, please re-load and try again. De CD is niet correct geladen. Probeer het alstublieft nogmaals. DVD not loaded correctly DVD niet correct geladen The DVD was not loaded correctly, please re-load and try again. De DVD is niet correct geladen. Probeer het alstublieft nogmaals. Set name of mediaclip Naam van het fragment instellen Name of mediaclip: Naam van het fragment: Enter a valid name or cancel Voer een geldige naam in of klik op Annuleren Invalid character Ongeldig teken The name of the mediaclip must not contain the character ":" De naam van het fragment mag het teken ":" niet bevatten MediaPlugin.MediaItem Select Media Selecteer mediabestand You must select a media file to delete. Selecteer een mediabestand om te verwijderen. You must select a media file to replace the background with. Selecteer een mediabestand om de achtergrond mee te vervangen. There was a problem replacing your background, the media file "%s" no longer exists. Probleem met het vervangen van de achtergrond, omdat het bestand "%s" niet meer bestaat. Missing Media File Ontbrekend mediabestand The file %s no longer exists. Mediabestand %s bestaat niet meer. Videos (%s);;Audio (%s);;%s (*) Video’s (%s);;Audio (%s);;%s (*) There was no display item to amend. Er wordt geen item weergegeven dat aangepast kan worden. Unsupported File Bestandsformaat wordt niet ondersteund Use Player: Gebruik speler: VLC player required VLC speler nodig VLC player required for playback of optical devices De VLC speler is nodig om CD's en DVD's af te kunnen spelen. Load CD/DVD CD/DVD laden Load CD/DVD - only supported when VLC is installed and enabled CD/DVD laden - alleen mogelijk wanneer VLC geïnstalleerd is The optical disc %s is no longer available. De schijf %s is niet meer beschikbaar. Mediaclip already saved Fragment was al opgeslagen This mediaclip has already been saved Dit fragment was al opgeslagen MediaPlugin.MediaTab Allow media player to be overridden Andere mediaspeler selecteren toestaan Start Live items automatically Start Live items automatisch OPenLP.MainWindow &Projector Manager &Projectorbeheer OpenLP Image Files Afbeeldingsbestanden Information Informatie Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bijbel bestandsformaat is gewijzigd. Bestaande bijbels moeten worden bijgewerkt. Wilt u dat OpenLP dat nu doet? Backup Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP is geüpgraded, wilt u een backup maken van OpenLP's datamap? Backup of the data folder failed! Backup van de datamap is mislukt! A backup of the data folder has been created at %s Een backup van de datamap is maakt in %s Open Open OpenLP.AboutForm Credits Credits License Licentie build %s build %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is gratis presentatiesoftware voor kerken. Het kan gebruikt worden voor het projecteren van liedteksten, bijbelverzen, video's, afbeeldingen en zelfs bestaande presentaties uit Powerpoint. Lees meer over OpenLP: http://openlp.org/ OpenLP wordt gemaakt en onderhouden door vrijwilligers. Als je meer gratis Christelijke software wilt zien, denk er eens over om zelf vrijwilliger te worden. Meedoen kan via de onderstaande knop. Volunteer Doe mee Project Lead Projectleider Developers Ontwikkelaars Contributors Bijdragers Packagers Packagers Testers Testers Translators Vertalers Afrikaans (af) Afrikaans (af) Czech (cs) Tsjechisch (cs) Danish (da) Deens (da) German (de) Duits (de) Greek (el) Gries (el) English, United Kingdom (en_GB) Engels, Verenigd Koninkrijk (en_GB) English, South Africa (en_ZA) Engels, Zuid Afrika (en_ZA) Spanish (es) Spaans (es) Estonian (et) Estisch (et) Finnish (fi) Fins (fi) French (fr) Frans (fr) Hungarian (hu) Hongaars (hu) Indonesian (id) Indonisisch (id) Japanese (ja) Japans (ja) Norwegian BokmÃ¥l (nb) Noors, BokmÃ¥l (nb) Dutch (nl) Nederlands (nl) Polish (pl) Pools (pl) Portuguese, Brazil (pt_BR) Portugees, Brazilië (pt_BR) Russian (ru) Russisch (ru) Swedish (sv) Zweeds (sv) Tamil(Sri-Lanka) (ta_LK) Tamil (Sri Lanka) (ta_LK) Chinese(China) (zh_CN) Chinees (China) (zh_CN) Documentation Documentatie Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Gebouwd met Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Laatste dankbetuiging "Want God had de wereld zo lief dat hij zijn enige Zoon heeft gegeven, opdat iedereen die in hem gelooft niet verloren gaat, maar eeuwig leven heeft." -- Joh. 3:16 Tenslotte gaat onze laatste dankbetuiging naar God onze Vader, omdat hij Zijn Zoon gegeven heeft om voor ons aan het kruis te sterven, zodat onze zonden vergeven kunnen worden. Wij ontwikkelen deze software gratis voor u omdat Hij ons bevrijd heeft. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Gedeelten copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Programma instellingen Number of recent files to display: Aantal recent geopende bestanden: Remember active media manager tab on startup Laatstgeopende tab opslaan Double-click to send items straight to live Dubbelklikken om onderdelen direct aan live toe te voegen Expand new service items on creation Nieuwe liturgieonderdelen automatisch uitklappen Enable application exit confirmation Afsluiten OpenLP bevestigen Mouse Cursor Muisaanwijzer Hide mouse cursor when over display window Verberg muisaanwijzer in het weergavevenster Default Image Standaard afbeelding Background color: Achtergrondkleur: Image file: Afbeeldingsbestand: Open File Open bestand Advanced Geavanceerd Preview items when clicked in Media Manager Voorbeeld direct laten zien bij aanklikken in Media beheer tab Browse for an image file to display. Kies een afbeelding van deze computer. Revert to the default OpenLP logo. Herstel standaard OpenLP logo. Default Service Name Standaard liturgienaam Enable default service name Gebruik standaard liturgienaam Date and Time: Datum en tijd: Monday maandag Tuesday dinsdag Wednesday woensdag Friday vrijdag Saturday zaterdag Sunday zondag Now Nu Time when usual service starts. Begintijd gewone dienst Name: Naam: Consult the OpenLP manual for usage. Raadpleeg de OpenLP handleiding voor gebruik. Revert to the default service name "%s". Herstel de standaard liturgienaam "%s". Example: Voorbeeld: Bypass X11 Window Manager Negeer X11 Window Manager Syntax error. Syntax fout. Data Location Bestandslocatie Current path: Huidige pad: Custom path: Aangepast pad: Browse for new data file location. Selecteer een nieuwe locatie voor de databestanden. Set the data location to the default. Herstel bestandslocatie naar standaard. Cancel Annuleer Cancel OpenLP data directory location change. Annuleer OpenLP bestandslocatie wijziging. Copy data to new location. Kopieer data naar de nieuwe bestandslocatie. Copy the OpenLP data files to the new location. Kopieer OpenLP data naar de nieuwe bestandslocatie. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>LET OP:</strong> In de nieuwe bestandslocatie staan al OpenLP data bestanden. Die bestanden worden vervangen tijdens kopieren. Data Directory Error Bestandslocatie fout Select Data Directory Location Selecteer bestandslocatie Confirm Data Directory Change Bevestig wijziging bestandslocatie Reset Data Directory Herstel bestandslocatie Overwrite Existing Data Overschrijf bestaande data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data directory is niet gevonden %s Deze data directory werd onlangs gewijzigd ten opzichte van de OpenLP standaardlocatie. Als de nieuwe locatie op een verwijderbare schijf staat, moet u nu eerst zelf zorgen dat de schijf beschikbaar is. Klik "Nee" om OpenLP niet verder te laden en eerst het probleem te verhelpen. Klik "Ja" om de standaardinstellingen te gebruiken. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Weet u zeker dat u de locatie van de OpenLP datadirectory wilt veranderen in: %s De datadirectory zal worden gewijzigd bij het afsluiten van OpenLP. Thursday Donderdag Display Workarounds Weergeven omwegen Use alternating row colours in lists Gebruik wisselende rijkleuren in lijsten WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? WAARSCHUWING: De locatie die u heeft gekozen %s lijkt al OpenLP data bestanden te bevatten. Wilt u de oude bestanden vervangen met de huidige? Restart Required Herstarten vereist This change will only take effect once OpenLP has been restarted. Deze wijziging werkt pas nadat OpenLP opnieuw is gestart. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Weet u zeker dat u de bestandslocatie van de OpenLP data wilt herstellen naar de standaardlocatie? Deze bestandslocatie wordt pas gebruikt nadat OpenLP is afgesloten. OpenLP.ColorButton Click to select a color. Klik om een kleur te kiezen. OpenLP.DB RGB RGB Video Video Digital Digitaal Storage Opslag Network Netwerk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digitaal 1 Digital 2 Digitaal 2 Digital 3 Digitaal 3 Digital 4 Digitaal 4 Digital 5 Digitaal 5 Digital 6 Digitaal 6 Digital 7 Digitaal 7 Digital 8 Digitaal 8 Digital 9 Digitaal 9 Storage 1 Opslag 1 Storage 2 Opslag 2 Storage 3 Opslag 3 Storage 4 Opslag 4 Storage 5 Opslag 5 Storage 6 Opslag 6 Storage 7 Opslag 7 Storage 8 Opslag 8 Storage 9 Opslag 9 Network 1 Netwerk 1 Network 2 Netwerk 2 Network 3 Netwerk 3 Network 4 Netwerk 4 Network 5 Netwerk 5 Network 6 Netwerk 6 Network 7 Netwerk 7 Network 8 Netwerk 8 Network 9 Netwerk 9 OpenLP.ExceptionDialog Error Occurred Fout Send E-Mail Stuur e-mail Save to File Opslaan als bestand Attach File Voeg bestand toe Description characters to enter : %s Tekens beschikbaar voor beschrijving: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Omschrijf in het Engels wat u deed toen deze fout zich voordeed (minstens 20 tekens gebruiken) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oeps! OpenLP heeft een probleem en kan het niet zelf oplossen. De tekst in het onderste venster bevat informatie waarmee de OpenLP ontwikkelaars iets kunnen. Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving (in het Engels) van het probleem en hoe het ontstond. Indien van toepassing, voeg het bestand toe dat het probleem veroorzaakte. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Crash rapport opslaan Text files (*.txt *.log *.text) Tekstbestand (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Bestand hernoemen New File Name: Nieuwe bestandsnaam: File Copy Bestand kopiëren OpenLP.FirstTimeLanguageForm Select Translation Selecteer taal Choose the translation you'd like to use in OpenLP. Kies de taal waarin u OpenLP wilt gebruiken. Translation: Taal: OpenLP.FirstTimeWizard Songs Liederen First Time Wizard Eerste Keer Assistent Welcome to the First Time Wizard Welkom bij de Eerste Keer Assistent Activate required Plugins Activeer noodzakelijke plug-ins Select the Plugins you wish to use. Selecteer de plug-ins die u gaat gebruiken. Bible Bijbel Images Afbeeldingen Presentations Presentaties Media (Audio and Video) Media (audio en video) Allow remote access Toegang op afstand toestaan Monitor Song Usage Liedgebruik bijhouden Allow Alerts Toon berichten Default Settings Standaardinstellingen Downloading %s... Bezig met downloaden van %s... Enabling selected plugins... Bezig met inschakelen van geselecteerde plug-ins... No Internet Connection Geen internetverbinding Unable to detect an Internet connection. OpenLP kan geen internetverbinding vinden. Sample Songs Voorbeeldliederen Select and download public domain songs. Selecteer en download liederen uit het publieke domein. Sample Bibles Voorbeeldbijbels Select and download free Bibles. Selecteer en download (gratis) bijbels uit het publieke domein. Sample Themes Voorbeeldthema's Select and download sample themes. Selecteer en download voorbeeldthema's. Set up default settings to be used by OpenLP. Stel standaardinstellingen in voor OpenLP. Default output display: Standaard presentatiescherm: Select default theme: Selecteer standaard thema: Starting configuration process... Het configuratieproces wordt gestart... Setting Up And Downloading Instellen en downloaden Please wait while OpenLP is set up and your data is downloaded. Een moment geduld terwijl OpenLP ingesteld wordt en de voorbeeldgegevens worden gedownload. Setting Up Instellen Custom Slides Aangepaste dia’s Finish Voltooien No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Geen internetverbinding gevonden. De Eerste Keer Assistent heeft een internetverbinding nodig om voorbeelden van liederen, bijbels en thema's te downloaden. Klik op Voltooien om OpenLP op te starten met standaardinstellingen zonder voorbeelddata. U kunt op een later tijdstip de Eerste Keer Assistent opnieuw starten om deze voorbeelddata alsnog te downloaden. Controleer dan of uw internetverbinding correct functioneert en kies in het menu van OpenLP de optie "Hulpmiddelen / Herstart Eerste Keer Assistent". Download Error Downloadfout There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Er is een verbindingsprobleem opgetreden tijdens het downloaden. Volgende downloads zullen overgeslagen worden. Probeer alstublieft de Eerste Keer Assistent later nogmaals te starten. Download complete. Click the %s button to return to OpenLP. Download afgerond. Klik op %s om terug te keren naar OpenLP. Download complete. Click the %s button to start OpenLP. Download afgerond. Klik op %s om OpenLP te starten. Click the %s button to return to OpenLP. Klik op %s om terug te keren naar OpenLP. Click the %s button to start OpenLP. Klik op %s om OpenLP te starten. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Er is een verbindingsprobleem opgetreden tijdens het downloaden. Volgende downloads zullen overgeslagen worden. Probeer alstublieft de Eerste Keer Assistent later nogmaals te starten. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Deze assistent helpt u bij het instellen van OpenLP voor het eerste gebruik. Klik op %s om te beginnen. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Om de Eerste Keer Assistent te annuleren (zonder OpenLP te starten), klik op %s. Downloading Resource Index Bezig met downloaden van bronindex Please wait while the resource index is downloaded. Een moment geduld. De bronindex wordt gedownload. Please wait while OpenLP downloads the resource index file... Een moment geduld. OpenLP downloadt de bronindex... Downloading and Configuring Bezig met downloaden en instellen Please wait while resources are downloaded and OpenLP is configured. Een moment geduld. De bronnen worden gedownload en OpenLP wordt ingesteld. Network Error Netwerkfout There was a network error attempting to connect to retrieve initial configuration information Er is een netwerkfout opgetreden tijdens het ophalen van de standaardinstellingen Cancel Annuleer Unable to download some files Kon sommige bestanden niet downloaden OpenLP.FormattingTagDialog Configure Formatting Tags Configureer opmaaktags Description Omschrijving Tag Tag Start HTML Start HTML End HTML Eind HTML Default Formatting Standaard opmaak Custom Formatting Aangepaste opmaak OpenLP.FormattingTagForm <HTML here> <HTML hier> Validation Error Validatie fout Description is missing Omschrijving ontbreekt Tag is missing Tag ontbreekt Tag %s already defined. Tag %s bestaat al. Description %s already defined. Omschrijving %s is al gedefinieerd. Start tag %s is not valid HTML Starttag %s is geen correcte HTML End tag %(end)s does not match end tag for start tag %(start)s Eindtag %(end)s komt niet overeen met de verwachte eindtag van starttag %(start)s OpenLP.FormattingTags Red Rood Black Zwart Blue Blauw Yellow Geel Green Groen Pink Roze Orange Oranje Purple Paars White Wit Superscript Superscript Subscript Subscript Paragraph Paragraaf Bold Vet Italics Cursief Underline Onderstreept Break Breek af OpenLP.GeneralTab General Algemeen Monitors Beeldschermen Select monitor for output display: Projectiescherm: Display if a single screen Weergeven bij enkel scherm Application Startup Programma start Show blank screen warning Toon leeg scherm waarschuwing Automatically open the last service Automatisch laatste liturgie openen Show the splash screen Toon splash screen Application Settings Programma instellingen Prompt to save before starting a new service Waarschuw om werk op te slaan bij het beginnen van een nieuwe liturgie Automatically preview next item in service Automatisch volgend onderdeel van liturgie tonen sec sec CCLI Details CCLI-details SongSelect username: SongSelect gebruikersnaam: SongSelect password: SongSelect wachtwoord: X X Y Y Height Hoogte Width Breedte Check for updates to OpenLP Controleer op updates voor OpenLP Unblank display when adding new live item Leeg scherm uitschakelen als er een nieuw live item wordt toegevoegd Timed slide interval: Tijd tussen dia’s: Background Audio Achtergrondgeluid Start background audio paused Start achtergrondgeluid gepauzeerd Service Item Slide Limits Dia navigatie beperkingen Override display position: Overschrijf scherm positie: Repeat track list Herhaal tracklijst Behavior of next/previous on the last/first slide: Gedrag van volgende/vorige op de laatste en eerste dia: &Remain on Slide &Blijf op dia &Wrap around &Verder aan begin/eind &Move to next/previous service item &Naar het volgende/volgende liturgieonderdeel OpenLP.LanguageManager Language Taal Please restart OpenLP to use your new language setting. Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken. OpenLP.MainDisplay OpenLP Display OpenLP Weergave OpenLP.MainWindow &File &Bestand &Import &Importeren &Export &Exporteren &View &Weergave M&ode M&odus &Tools &Hulpmiddelen &Settings &Instellingen &Language Taa&l &Help &Help Service Manager Liturgiebeheer Theme Manager Themabeheer Open an existing service. Open een bestaande liturgie. Save the current service to disk. De huidige liturgie opslaan. Save Service As Liturgie opslaan als Save the current service under a new name. Deze liturgie onder een andere naam opslaan. E&xit &Afsluiten Quit OpenLP OpenLP afsluiten &Theme &Thema &Configure OpenLP... &Instellingen... &Media Manager &Mediabeheer Toggle Media Manager Mediabeheer wel / niet tonen Toggle the visibility of the media manager. Mediabeheer wel / niet tonen. &Theme Manager &Themabeheer Toggle Theme Manager Themabeheer wel / niet tonen Toggle the visibility of the theme manager. Themabeheer wel / niet tonen. &Service Manager &Liturgiebeheer Toggle Service Manager Liturgiebeheer wel / niet tonen Toggle the visibility of the service manager. Liturgiebeheer wel / niet tonen. &Preview Panel &Voorbeeld paneel Toggle Preview Panel Voorbeeld paneel wel / niet tonen Toggle the visibility of the preview panel. Voorbeeld paneel wel / niet tonen. &Live Panel &Live paneel Toggle Live Panel Live paneel wel / niet tonen Toggle the visibility of the live panel. Live paneel wel / niet tonen. List the Plugins Lijst met plug-ins =uitbreidingen van OpenLP &User Guide Gebr&uikshandleiding &About &Over OpenLP More information about OpenLP Meer informatie over OpenLP &Online Help &Online hulp &Web Site &Website Use the system language, if available. Gebruik standaardtaal van het systeem, indien mogelijk. Set the interface language to %s %s als taal in OpenLP gebruiken Add &Tool... Hulpprogramma &toevoegen... Add an application to the list of tools. Voeg een hulpprogramma toe aan de lijst. &Default &Standaard Set the view mode back to the default. Terug naar de standaard weergave modus. &Setup &Voorbereiding Set the view mode to Setup. Weergave modus naar Voorbereiding. &Live &Live Set the view mode to Live. Weergave modus naar Live. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Versie %s van OpenLP is beschikbaar (huidige versie: %s). U kunt de laatste versie op http://openlp.org/ downloaden. OpenLP Version Updated Nieuwe OpenLP versie beschikbaar OpenLP Main Display Blanked OpenLP projectie uitgeschakeld The Main Display has been blanked out Projectie is uitgeschakeld: scherm staat op zwart Default Theme: %s Standaardthema: %s English Please add the name of your language here Dutch Configure &Shortcuts... &Sneltoetsen instellen... Open &Data Folder... Open &datamap... Open the folder where songs, bibles and other data resides. Open de map waar liederen, bijbels en andere data staat. &Autodetect &Autodetecteer Update Theme Images Thema afbeeldingen bijwerken Update the preview images for all themes. Voorbeeldafbeeldingen bijwerken voor alle thema’s. Print the current service. De huidige liturgie afdrukken. L&ock Panels Panelen op sl&ot Prevent the panels being moved. Voorkomen dat panelen verschuiven. Re-run First Time Wizard Herstart Eerste Keer Assistent Re-run the First Time Wizard, importing songs, Bibles and themes. Herstart Eerste Keer Assistent, importeer voorbeeldliederen, bijbels en thema’s. Re-run First Time Wizard? Herstart Eerste Keer Assistent? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Weet u zeker dat u de Eerste Keer Assistent opnieuw wilt starten? De Eerste Keer Assistent opnieuw starten zou veranderingen in uw huidige OpenLP instellingen kunnen maken en mogelijk liederen aan uw huidige lijst kunnen toevoegen en uw standaardthema wijzigen. Clear List Clear List of recent files Lijst leegmaken Clear the list of recent files. Maak de lijst met recente bestanden leeg. Configure &Formatting Tags... Configureer &opmaak tags... Export OpenLP settings to a specified *.config file Exporteer OpenLP instellingen naar een *.config bestand Settings Instellingen Import OpenLP settings from a specified *.config file previously exported on this or another machine Importeer OpenLP instellingen uit een bestaand *.config bestand afkomstig van deze of een andere computer Import settings? Importeer instellingen? Open File Open bestand OpenLP Export Settings Files (*.conf) OpenLP Export instellingsbestanden (*.config) Import settings Importeer instellingen OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sluit nu af. De geïmporteeerde instellingen worden bij de volgende start van OpenLP toegepast. Export Settings File Exporteer instellingen OpenLP Export Settings File (*.conf) OpenLP Export instellingsbestand (*.config) New Data Directory Error Nieuwe bestandslocatie fout Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP data wordt nu naar de nieuwe datamaplocatie gekopieerd - %s - Een moment geduld alstublieft OpenLP Data directory copy failed %s OpenLP data directory kopiëren is mislukt %s General Algemeen Library Bibliotheek Jump to the search box of the current active plugin. Ga naar het zoekveld van de momenteel actieve plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Weet u zeker dat u instellingen wilt importeren? Instellingen importeren zal uw huidige OpenLP configuratie veranderen. Incorrecte instellingen importeren veroorzaakt onvoorspelbare effecten of OpenLP kan spontaan stoppen. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Het geslecteerde bestand is geen geldig OpenLP settings bestand. Verwerking is gestopt en er is niets veranderd. Projector Manager Projectorbeheer Toggle Projector Manager Projectorbeheer wel / niet tonen Toggle the visibility of the Projector Manager Projectorbeheer wel / niet tonen Export setting error Exportfout The key "%s" does not have a default value so it will be skipped in this export. De sleutel "%s" heeft geen standaardwaarde waardoor hij overgeslagen wordt in deze export. An error occurred while exporting the settings: %s Er is een fout opgetreden tijdens het exporteren van de instellingen: %s &Recent Services &Recente liturgiën &New Service &Nieuwe liturgie &Open Service &Open liturgie &Save Service Liturgie op&slaan Save Service &As... Liturgie opslaan &als... &Manage Plugins Plug-ins beheren Exit OpenLP OpenLP afsluiten Are you sure you want to exit OpenLP? OpenLP afsluiten? &Exit OpenLP OpenLP afsluit&en OpenLP.Manager Database Error Database fout The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s De database die u wilt laden is gemaakt in een nieuwere versie van OpenLP. De database is versie %d, terwijl OpenLP versie %d verwacht. De database zal niet worden geladen. Database: %s OpenLP cannot load your database. Database: %s OpenLP kan uw database niet laden. Database: %s OpenLP.MediaManagerItem No Items Selected Geen items geselecteerd &Add to selected Service Item &Voeg toe aan geselecteerde liturgie-item You must select one or more items to preview. Selecteer een of meerdere onderdelen om als voorbeeld te laten zien. You must select one or more items to send live. Selecteer een of meerdere onderdelen om live te tonen. You must select one or more items. Selecteer een of meerdere onderdelen. You must select an existing service item to add to. Selecteer een liturgie om deze onderdelen aan toe te voegen. Invalid Service Item Ongeldigl liturgie-onderdeel You must select a %s service item. Selecteer een %s liturgie-onderdeel. You must select one or more items to add. Selecteer een of meerdere onderdelen om toe te voegen. No Search Results Niets gevonden Invalid File Type Ongeldig bestandsformaat Invalid File %s. Suffix not supported Ongeldig bestand %s. Extensie niet ondersteund &Clone &Kloon Duplicate files were found on import and were ignored. Identieke bestanden die bij het importeren zijn gevonden worden genegeerd. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tag niet gevonden. <verse> tag is missing. <verse> tag niet gevonden. OpenLP.PJLink1 Unknown status Onbekende status No message Geen bericht Error while sending data to projector Fout tijdens het zenden van data naar de projector Undefined command: Ongedefinieerd commando: OpenLP.PlayerTab Players Spelers Available Media Players Beschikbare mediaspelers Player Search Order Speler zoekvolgorde Visible background for videos with aspect ratio different to screen. Zichtbare achtergrond voor video's met een andere verhouding dan het scherm. %s (unavailable) %s (niet beschikbaar) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" LET OP: Om VLC te kunnen gebruiken moet u de %s-versie installeren OpenLP.PluginForm Plugin Details Plug-in details Status: Status: Active Actief Inactive Inactief %s (Inactive) %s (inactief) %s (Active) %s (actief) %s (Disabled) %s (uitgeschakeld) Manage Plugins Plug-ins beheren OpenLP.PrintServiceDialog Fit Page Passend maken op de pagina Fit Width Aanpassen aan pagina breedte OpenLP.PrintServiceForm Options Opties Copy Kopieer Copy as HTML Kopieer als HTML Zoom In Inzoomen Zoom Out Uitzoomen Zoom Original Werkelijke grootte Other Options Overige opties Include slide text if available Inclusief diatekst indien beschikbaar Include service item notes Inclusief liturgie-opmerkingen Include play length of media items Inclusief afspeellengte van media items Add page break before each text item Voeg een pagina-einde toe voor elk tekst item Service Sheet Liturgie blad Print Afdrukken Title: Titel: Custom Footer Text: Aangepaste voettekst: OpenLP.ProjectorConstants OK OK General projector error Algemene projectorfout Not connected error Fout: niet verbonden Lamp error Fout met de lamp Fan error Fout met de ventilator High temperature detected Hoge temperatuur gedetecteerd Cover open detected Klep open Check filter Controleer filter Authentication Error Authenticatieprobleem Undefined Command Ongedefinieerd commando Invalid Parameter Ongeldige parameter Projector Busy Projector bezet Projector/Display Error Projector-/schermfout Invalid packet received Ongeldig packet ontvangen Warning condition detected Waarschuwingssituatie gedetecteerd Error condition detected Foutsituatie gedetecteerd PJLink class not supported PJLink klasse wordt niet ondersteund Invalid prefix character Ongeldig voorloopteken The connection was refused by the peer (or timed out) De verbinding is geweigerd of mislukt The remote host closed the connection De externe host heeft de verbinding verbroken The host address was not found Het adres is niet gevonden The socket operation failed because the application lacked the required privileges De socketbewerking is mislukt doordat het programma de vereiste privileges mist The local system ran out of resources (e.g., too many sockets) Het lokale systeem heeft te weinig bronnen beschikbaar The socket operation timed out De socketbewerking is gestopt door een time-out The datagram was larger than the operating system's limit Het datagram was groter dan de limiet van het besturingssysteem An error occurred with the network (Possibly someone pulled the plug?) Er is een netwerkfout opgetreden (is de kabel ontkoppeld?) The address specified with socket.bind() is already in use and was set to be exclusive Het adres gebruikt in socket.bind() is al in gebruik en is ingesteld als exclusief The address specified to socket.bind() does not belong to the host Het adres gebruikt in socket.bind() bestaat niet op de computer The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) De socketbewerking wordt niet ondersteund door het besturingssysteem (bijvoorbeeld als IPv6-ondersteuning mist) The socket is using a proxy, and the proxy requires authentication De socket gebruikt een proxy waarvoor authenticatie nodig is The SSL/TLS handshake failed De SSL/TLS handshake is mislukt The last operation attempted has not finished yet (still in progress in the background) De vorige bewerking is nog niet afgerond (loopt door in de achtergrond) Could not contact the proxy server because the connection to that server was denied De verbinding met de proxyserver is geweigerd The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) De verbinding met de proxyserver is onverwachts verbroken (voordat de uiteindelijke verbinding tot stand gekomen is) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. De verbinding met de proxyserver is verlopen of de proxyserver heeft geen antwoord gegeven in de authenticatiefase. The proxy address set with setProxy() was not found Het proxyserveradres meegegeven aan setProxy() is niet gevonden An unidentified error occurred Er is een onbekende fout opgetreden Not connected Niet verbonden Connecting Verbinding maken Connected Verbonden Getting status Status opvragen Off Uit Initialize in progress Initialisatie bezig Power in standby Standby Warmup in progress Opwarmen bezig Power is on Ingeschakeld Cooldown in progress Afkoelen bezig Projector Information available Projectorinformatie beschikbaar Sending data Gegevens versturen Received data Gegevens ontvangen The connection negotiation with the proxy server failed because the response from the proxy server could not be understood De verbinding met de proxyserver is mislukt doordat de antwoorden van de proxyserver niet herkend worden OpenLP.ProjectorEdit Name Not Set Naam niet ingesteld You must enter a name for this entry.<br />Please enter a new name for this entry. U moet een naam opgeven voor dit item.<br />Geef alstublieft een naam op voor dit item. Duplicate Name Dubbele naam OpenLP.ProjectorEditForm Add New Projector Nieuwe projector toevoegen Edit Projector Projector aanpassen IP Address IP-adres Port Number Poortnummer PIN PIN Name Naam Location Locatie Notes Aantekeningen Database Error Database fout There was an error saving projector information. See the log for the error Er is een fout opgetreden bij het opslaan van de projectorinformatie. Kijk in het logbestand voor de foutmelding OpenLP.ProjectorManager Add Projector Projector toevoegen Add a new projector Voeg een nieuwe projector toe Edit Projector Projector aanpassen Edit selected projector Geselecteerde projector aanpassen Delete Projector Projector verwijderen Delete selected projector Verwijder geselecteerde projector Select Input Source Selecteer invoerbron Choose input source on selected projector Selecteer invoerbron op geselecteerde projector View Projector Bekijk projector View selected projector information Bekijk informatie van geselecteerde projector Connect to selected projector Verbind met geselecteerde projector Connect to selected projectors Verbind met geselecteerde projectors Disconnect from selected projectors Verbreek verbinding met geselecteerde projectors Disconnect from selected projector Verbreek verbinding met geselecteerde projector Power on selected projector Geselecteerde projector inschakelen Standby selected projector Geselecteerde projector uitschakelen Put selected projector in standby Geselecteerde projector in standby zetten Blank selected projector screen Geselecteerd projectorscherm leegmaken Show selected projector screen Geselecteerd projectorscherm weergeven &View Projector Information Projectorinformatie &bekijken &Edit Projector Projector &aanpassen &Connect Projector Projector &verbinden D&isconnect Projector V&erbinding met projector verbreken Power &On Projector Projector &inschakelen Power O&ff Projector Projector &uitschakelen Select &Input Selecteer i&nvoerbron Edit Input Source Invoerbron bewerken &Blank Projector Screen Projectorscherm &leegmaken &Show Projector Screen Projectorscherm &weergeven &Delete Projector Projector verwij&deren Name Naam IP IP-adres Port Poort Notes Aantekeningen Projector information not available at this time. Projectorinformatie is momenteel niet beschikbaar. Projector Name Projectornaam Manufacturer Fabrikant Model Model Other info Overige informatie Power status Status Shutter is Lensbescherming is Closed Dicht Current source input is Huidige invoerbron is Lamp Lamp On Aan Off Uit Hours Uren No current errors or warnings Geen fouten en waarschuwingen Current errors/warnings Fouten en waarschuwingen Projector Information Projectorinformatie No message Geen bericht Not Implemented Yet Nog niet geïmplementeerd Delete projector (%s) %s? Verwijder projector (%s) %s? Are you sure you want to delete this projector? Weet u zeker dat u deze projector wilt verwijderen? OpenLP.ProjectorPJLink Fan Ventilator Lamp Lamp Temperature Temperatuur Cover Klep Filter Filter Other Overig OpenLP.ProjectorTab Projector Projector Communication Options Verbindingsinstellingen Connect to projectors on startup Verbind met projectors tijdens het opstarten Socket timeout (seconds) Socket timeout (seconden) Poll time (seconds) Poll tijd (seconden) Tabbed dialog box Dialoogvenster met tabs Single dialog box Enkel dialoogvenster OpenLP.ProjectorWizard Duplicate IP Address Dubbel IP-adres Invalid IP Address Ongeldig IP-adres Invalid Port Number Ongeldig poortnummer OpenLP.ScreenList Screen Scherm primary primair scherm OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Lengte</strong>: %s [slide %d] [dia %d] OpenLP.ServiceItemEditForm Reorder Service Item Liturgie-onderdelen herschikken OpenLP.ServiceManager Move to &top Bovenaan plaa&tsen Move item to the top of the service. Plaats dit onderdeel bovenaan. Move &up Verplaats &omhoog Move item up one position in the service. Verplaats een plek omhoog. Move &down Verplaats o&mlaag Move item down one position in the service. Verplaats een plek omlaag. Move to &bottom Onderaan &plaatsen Move item to the end of the service. Plaats dit onderdeel onderaan. &Delete From Service Verwij&deren uit de liturgie Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. &Add New Item &Voeg toe &Add to Selected Item &Voeg toe aan geselecteerd item &Edit Item B&ewerk onderdeel &Reorder Item He&rschik onderdeel &Notes Aa&ntekeningen &Change Item Theme &Wijzig onderdeel thema File is not a valid service. Geen geldig liturgiebestand. Missing Display Handler Ontbrekende weergaveregelaar Your item cannot be displayed as there is no handler to display it Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt Your item cannot be displayed as the plugin required to display it is missing or inactive Dit onderdeel kan niet weergegeven worden omdat de benodigde plug-in ontbreekt of inactief is &Expand all Alles &uitklappen Expand all the service items. Alle liturgie-onderdelen uitklappen. &Collapse all Alles &inklappen Collapse all the service items. Alle liturgie-onderdelen inklappen. Open File Open bestand Moves the selection down the window. Verplaatst de selectie omlaag. Move up Verplaats omhoog Moves the selection up the window. Verplaatst de selectie omhoog. Go Live Ga live Send the selected item to Live. Toon selectie live. &Start Time &Starttijd Show &Preview Toon &voorbeeld Modified Service Gewijzigde liturgie The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? Custom Service Notes: Aangepaste liturgie aantekeningen: Notes: Aantekeningen: Playing time: Speeltijd: Untitled Service Liturgie zonder naam File could not be opened because it is corrupt. Bestand kan niet worden geopend omdat het beschadigd is. Empty File Leeg bestand This service file does not contain any data. Deze liturgie bevat nog geen gegevens. Corrupt File Corrupt bestand Load an existing service. Laad een bestaande liturgie. Save this service. Deze liturgie opslaan. Select a theme for the service. Selecteer een thema voor de liturgie. Slide theme Dia thema Notes Aantekeningen Edit Bewerk Service copy only Liturgie alleen kopiëren Error Saving File Fout bij het opslaan There was an error saving your file. Er is een fout opgetreden tijdens het opslaan van het bestand. Service File(s) Missing Ontbrekend(e) liturgiebestand(en) &Rename... He&rnoemen... Create New &Custom Slide &Creëren nieuwe aangepaste dia &Auto play slides &Automatisch afspelen dia's Auto play slides &Loop Automatisch door&lopend dia's afspelen Auto play slides &Once Automatisch &eenmalig dia's afspelen &Delay between slides Pauze tussen dia’s. OpenLP Service Files (*.osz *.oszl) OpenLP Service bestanden (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service bestanden (*.osz);; OpenLP Service bestanden - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service bestanden (*.osz);; File is not a valid service. The content encoding is not UTF-8. Bestand is geen geldige liturgie. De encoding van de inhoud is niet UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Het liturgiebestand dat u probeert te openen heeft een verouderd formaat. Slaat u het nogmaals op met OpenLP 2.0.2 of hoger. This file is either corrupt or it is not an OpenLP 2 service file. Het bestand is beschadigd of is geen OpenLP 2 liturgiebestand. &Auto Start - inactive &Auto Start - inactief &Auto Start - active &Auto Start - actief Input delay Invoeren vertraging Delay between slides in seconds. Pauze tussen dia’s in seconden. Rename item title Titel hernoemen Title: Titel: An error occurred while writing the service file: %s Er is een fout opgetreden tijdens het opslaan van het liturgiebestand: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. De volgende bestand(en) in de dienst ontbreken: %s Deze bestanden worden verwijderd als u doorgaat met opslaan. OpenLP.ServiceNoteForm Service Item Notes Aantekeningen OpenLP.SettingsForm Configure OpenLP Configureer OpenLP OpenLP.ShortcutListDialog Action Actie Shortcut Sneltoets Duplicate Shortcut Sneltoets dupliceren The shortcut "%s" is already assigned to another action, please use a different shortcut. De sneltoets "%s" wordt al voor een andere actie gebruikt. Kies een andere toetscombinatie. Alternate Alternatief Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecteer een actie en klik op één van de knoppen hieronder om respectievelijk een primaire of alternatieve sneltoets vast te leggen. Default Standaard Custom Aangepast Capture shortcut. Sneltoets vastleggen. Restore the default shortcut of this action. Herstel de standaard sneltoets voor de actie. Restore Default Shortcuts Herstel alle standaard sneltoetsen Do you want to restore all shortcuts to their defaults? Weet u zeker dat u alle standaard sneltoetsen wilt herstellen? Configure Shortcuts Sneltoetsen instellen OpenLP.SlideController Hide Verbergen Go To Ga naar Blank Screen Zwart scherm Blank to Theme Leeg scherm met thema Show Desktop Toon bureaublad Previous Service Vorige liturgie Next Service Volgende liturgie Escape Item Onderdeel annuleren Move to previous. Vorige. Move to next. Volgende. Play Slides Dia’s tonen Delay between slides in seconds. Pauze tussen dia’s in seconden. Move to live. Toon live. Add to Service. Voeg toe aan liturgie. Edit and reload song preview. Bewerken en liedvoorbeeld opnieuw laden. Start playing media. Start afspelen media. Pause audio. Pauzeer audio. Pause playing media. Afspelen pauzeren. Stop playing media. Afspelen stoppen. Video position. Video positie. Audio Volume. Audio volume. Go to "Verse" Ga naar "Vers" Go to "Chorus" Ga naar "Refrein" Go to "Bridge" Ga naar "Bridge" Go to "Pre-Chorus" Ga naar "pre-Refrein" Go to "Intro" Ga naar "Intro" Go to "Ending" Ga naar "Einde" Go to "Other" Ga naar "Overige" Previous Slide Vorige dia Next Slide Volgende dia Pause Audio Pauzeer audio Background Audio Achtergrondgeluid Go to next audio track. Ga naar de volgende audiotrack. Tracks Tracks OpenLP.SourceSelectForm Select Projector Source Selecteer projectorbron Edit Projector Source Text Projectorbron-tekst aanpassen Ignoring current changes and return to OpenLP Vergeet de wijzigingen en keer terug naar OpenLP Delete all user-defined text and revert to PJLink default text Verwijder alle aangepaste teksten en herstel de standaardteksten van PJLink Discard changes and reset to previous user-defined text Vergeet aanpassingen en herstel de vorige aangepaste tekst Save changes and return to OpenLP Wijzigingen opslaan en terugkeren naar OpenLP Delete entries for this projector Verwijder items voor deze projector Are you sure you want to delete ALL user-defined source input text for this projector? Weet u zeker dat u ALLE ingevoerde bronteksten van deze projector wilt verwijderen? OpenLP.SpellTextEdit Spelling Suggestions Spelling suggesties Formatting Tags Opmaaktags Language: Taal: OpenLP.StartTimeForm Theme Layout Thema layout The blue box shows the main area. Het blauwe vlak toont het hoofdgebied. The red box shows the footer. Het rode vlak toont het gebied voor de voettekst. OpenLP.StartTime_form Item Start and Finish Time Item start- en eindtijd Hours: Uren: Minutes: Minuten: Seconds: Seconden: Start Start Finish Voltooien Length Lengte Time Validation Error Tijd validatie fout Finish time is set after the end of the media item Eindtijd is ingesteld tot na het eind van het media item Start time is after the finish time of the media item Starttijd is ingesteld tot na het eind van het media item OpenLP.ThemeForm (approximately %d lines per slide) (ongeveer %d regels per dia) OpenLP.ThemeManager Create a new theme. Maak een nieuw thema. Edit Theme Bewerk thema Edit a theme. Bewerk een thema. Delete Theme Verwijder thema Delete a theme. Verwijder thema. Import Theme Importeer thema Import a theme. Importeer thema. Export Theme Exporteer thema Export a theme. Exporteer thema. &Edit Theme B&ewerk thema &Delete Theme Verwij&der thema Set As &Global Default Instellen als al&gemene standaard %s (default) %s (standaard) You must select a theme to edit. Selecteer een thema om te bewerken. You are unable to delete the default theme. Het standaard thema kan niet worden verwijderd. You have not selected a theme. Selecteer een thema. Save Theme - (%s) Thema opslaan - (%s) Theme Exported Thema geëxporteerd Your theme has been successfully exported. Het thema is succesvol geëxporteerd. Theme Export Failed Exporteren thema is mislukt Select Theme Import File Selecteer te importeren thema-bestand File is not a valid theme. Geen geldig thema-bestand. &Copy Theme &Kopieer thema &Rename Theme He&rnoem thema &Export Theme &Exporteer thema You must select a theme to rename. Selecteer een thema om te hernoemen. Rename Confirmation Bevestig hernoemen Rename %s theme? %s thema hernoemen? You must select a theme to delete. Selecteer een thema om te verwijderen. Delete Confirmation Bevestig verwijderen Delete %s theme? %s thema verwijderen? Validation Error Validatie fout A theme with this name already exists. Er bestaat al een thema met deze naam. Copy of %s Copy of <theme name> Kopie van %s Theme Already Exists Thema bestaat al Theme %s already exists. Do you want to replace it? Thema %s bestaat reeds. Vervangen? The theme export failed because this error occurred: %s Er is een fout opgetreden bij het exporteren van het thema: %s OpenLP Themes (*.otz) OpenLP Thema's (*.otz) %s time(s) by %s %s keer door %s Unable to delete theme Het thema kan niet worden verwijderd Theme is currently used %s Thema is momenteel in gebruik %s OpenLP.ThemeWizard Theme Wizard Thema Assistent Welcome to the Theme Wizard Welkom bij de Thema Assistent Set Up Background Achtergrond instellen Set up your theme's background according to the parameters below. Thema achtergrond instellen met onderstaande parameters. Background type: Achtergrond type: Gradient Kleurverloop Gradient: Kleurverloop: Horizontal Horizontaal Vertical Verticaal Circular Radiaal Top Left - Bottom Right Links boven - rechts onder Bottom Left - Top Right Links onder - Rechts boven Main Area Font Details Lettertype instellingen hoofdgebied Define the font and display characteristics for the Display text Stel de eigenschappen voor de tekstweergave in Font: Lettertype: Size: Grootte: Line Spacing: Interlinie: &Outline: &Omtrek: &Shadow: &Schaduw: Bold Vet Italic Cursief Footer Area Font Details Lettertype instellingen voettekst Define the font and display characteristics for the Footer text Stel de eigenschappen voor de voettekst weergave in Text Formatting Details Tekst opmaak eigenschappen Allows additional display formatting information to be defined Toestaan dat er afwijkende opmaak kan worden bepaald Horizontal Align: Horizontaal uitlijnen: Left Links Right Rechts Center Centreren Output Area Locations Uitvoer gebied locaties &Main Area &Hoofdgebied &Use default location Gebr&uik standaardlocatie X position: X positie: px px Y position: Y positie: Width: Breedte: Height: Hoogte: Use default location Gebruik standaardlocatie Theme name: Themanaam: Edit Theme - %s Bewerk thema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Deze Assistent helpt bij het maken en bewerken van thema's. Klik op volgende om als eerste stap een achtergrond in te stellen. Transitions: Overgangen: &Footer Area &Voettekst gebied Starting color: Beginkleur: Ending color: Eindkleur: Background color: Achtergrondkleur: Justify Uitvullen Layout Preview Layout voorbeeld Transparent Transparant Preview and Save Voorbeeld en opslaan Preview the theme and save it. Toon een voorbeeld en sla het thema op. Background Image Empty Achtergrondafbeelding leeg Select Image Selecteer afbeelding Theme Name Missing Thema naam ontbreekt There is no name for this theme. Please enter one. Dit thema heeft geen naam. Voer een naam in. Theme Name Invalid Thema naam ongeldig Invalid theme name. Please enter one. De naam van het thema is niet geldig. Voer een andere naam in. Solid color Vaste kleur color: kleur: Allows you to change and move the Main and Footer areas. Toestaan dat tekstvelden gewijzigd en verplaatst worden. You have not selected a background image. Please select one before continuing. Geen achtergrondafbeelding geselecteerd. Selecteer er een om door te gaan. OpenLP.ThemesTab Global Theme Globaal thema Theme Level Thema niveau S&ong Level &Lied niveau Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Gebruik het liedspecifieke thema uit de database. Als een lied geen eigen thema heeft, gebruik dan het thema van de liturgie. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. &Service Level &Liturgie niveau Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Gebruik het thema van de liturgie en negeer de liedspecifieke thema's. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. &Global Level &Globaal niveau Use the global theme, overriding any themes associated with either the service or the songs. Gebruik het globale thema en negeer alle specifieke thema's van liturgie en liederen. Themes Thema's Universal Settings Globale instellingen &Wrap footer text Tekstterugloop in onderschrift OpenLP.Ui Delete the selected item. Verwijder het geselecteerde item. Move selection up one position. Verplaats selectie een plek naar boven. Move selection down one position. Verplaats selectie een plek naar beneden. &Vertical Align: &Verticaal uitlijnen: Finished import. Importeren afgerond. Format: Formaat: Importing Importeren Importing "%s"... Bezig met importeren van "%s"... Select Import Source Selecteer te importeren bestand Select the import format and the location to import from. Selecteer te importeren bestand en het bestandsformaat. Open %s File Open %s bestand %p% %p% Ready. Klaar. Starting import... Start importeren... You need to specify at least one %s file to import from. A file type e.g. OpenSong Selecteer minstens één %s bestand om te importeren. Welcome to the Bible Import Wizard Welkom bij de Bijbel Importeren Assistent Welcome to the Song Export Wizard Welkom bij de Lied Exporteren Assistent Welcome to the Song Import Wizard Welkom bij de Lied Importeren Assistent Author Singular Auteur Authors Plural Auteurs © Copyright symbol. © Song Maintenance Liedbeheer Topic Singular Onderwerp Topics Plural Onderwerpen Title and/or verses not found Titel en/of verzen niet gevonden XML syntax error XML syntax fout Welcome to the Bible Upgrade Wizard Welkom bij de Bijbel Upgrade Assistent Open %s Folder Open %s map You need to specify one %s file to import from. A file type e.g. OpenSong Specificeer een %s bestand om vanuit te importeren. You need to specify one %s folder to import from. A song format e.g. PowerSong Specificeer een %s map om uit te importeren. Importing Songs Liederen importeren Welcome to the Duplicate Song Removal Wizard Welkom bij de Dubbele Liederen Verwijderingsassistent Written by Geschreven door Author Unknown Auteur onbekend About Over &Add &Toevoegen Add group Voeg groep toe Advanced Geavanceerd All Files Alle bestanden Automatic Automatisch Background Color Achtergrondkleur Bottom Onder Browse... Bladeren... Cancel Annuleer CCLI number: CCLI nummer: Create a new service. Maak nieuwe liturgie. Confirm Delete Bevestig verwijderen Continuous Doorlopend Default Standaard Default Color: Standaardkleur: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Liturgie %d-%m-%Y %H-%M &Delete Verwij&deren Display style: Weergave stijl: Duplicate Error Duplicaat fout &Edit &Bewerken Empty Field Leeg veld Error Fout Export Exporteren File Bestand File Not Found Bestand niet gevonden File %s not found. Please try selecting it individually. Bestand %s niet gevonden. Probeer elk bestand individueel te selecteren. pt Abbreviated font pointsize unit pt Help Help h The abbreviated unit for hours u Invalid Folder Selected Singular Ongeldige map geselecteerd Invalid File Selected Singular Ongeldig bestand geselecteerd Invalid Files Selected Plural Ongeldige bestanden geselecteerd Image Afbeelding Import Importeren Layout style: Dia layout: Live Live Live Background Error Live achtergrond fout Live Toolbar Live Werkbalk Load Laad Manufacturer Singular Fabrikant Manufacturers Plural Fabrikanten Model Singular Model Models Plural Modellen m The abbreviated unit for minutes m Middle Midden New Nieuw New Service Nieuwe liturgie New Theme Nieuw thema Next Track Volgende track No Folder Selected Singular Geen map geselecteerd No File Selected Singular Geen bestand geselecteerd No Files Selected Plural Geen bestanden geselecteerd No Item Selected Singular Geen item geselecteerd No Items Selected Plural Geen items geselecteerd OpenLP is already running. Do you wish to continue? OpenLP is reeds gestart. Weet u zeker dat u wilt doorgaan? Open service. Open liturgie. Play Slides in Loop Dia’s doorlopend tonen Play Slides to End Dia’s tonen tot eind Preview Voorbeeld Print Service Liturgie afdrukken Projector Singular Projector Projectors Plural Projectors Replace Background Vervang achtergrond Replace live background. Vervang Live achtergrond. Reset Background Herstel achtergrond Reset live background. Herstel Live achtergrond. s The abbreviated unit for seconds s Save && Preview Opslaan && voorbeeld bekijken Search Zoek Search Themes... Search bar place holder text Zoek op thema... You must select an item to delete. Selecteer een item om te verwijderen. You must select an item to edit. Selecteer een item om te bewerken. Settings Instellingen Save Service Liturgie opslaan Service Liturgie Optional &Split Optioneel &splitsen Split a slide into two only if it does not fit on the screen as one slide. Dia opdelen als de inhoud niet op één dia past. Start %s Start %s Stop Play Slides in Loop Stop dia’s doorlopend tonen Stop Play Slides to End Stop dia’s tonen tot eind Theme Singular Thema Themes Plural Thema's Tools Hulpmiddelen Top Boven Unsupported File Bestandsformaat wordt niet ondersteund Verse Per Slide Bijbelvers per dia Verse Per Line Bijbelvers per regel Version Versie View Weergave View Mode Weergave modus CCLI song number: CCLI liednummer: Preview Toolbar Voorbeeld Werkbalk OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Vervang live achtergrond is niet beschikbaar wanneer de WebKit-speler uitgeschakeld is. Songbook Singular Liedboek Songbooks Plural Liedboeken OpenLP.core.lib %s and %s Locale list separator: 2 items %s en %s %s, and %s Locale list separator: end %s en %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Bronselectie dialoogvenster PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentatie plug-in</strong><br />De presentatie plug-in voorziet in de mogelijkheid om verschillende soorten presentaties weer te geven. Met een keuzemenu kan gekozen worden uit de beschikbare presentatiesoftware. Presentation name singular Presentatie Presentations name plural Presentaties Presentations container title Presentaties Load a new presentation. Laad nieuwe presentatie. Delete the selected presentation. Geselecteerde presentatie verwijderen. Preview the selected presentation. Geef van geselecteerde presentatie voorbeeld weer. Send the selected presentation live. Geselecteerde presentatie Live tonen. Add the selected presentation to the service. Voeg geselecteerde presentatie toe aan de liturgie. PresentationPlugin.MediaItem Select Presentation(s) Selecteer presentatie(s) Automatic Automatisch Present using: Presenteren met: File Exists Bestand bestaat A presentation with that filename already exists. Er bestaat al een presentatie met die naam. This type of presentation is not supported. Dit type presentatie wordt niet ondersteund. Presentations (%s) Presentaties (%s) Missing Presentation Ontbrekende presentatie The presentation %s is incomplete, please reload. Presentatie %s is niet compleet, herlaad a.u.b. The presentation %s no longer exists. Presentatie %s bestaat niet meer. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Er is een fout opgetreden in de Powerpoint-integratie waardoor de presentatie zal worden gestopt. U kunt de presentatie herstarten om verder te gaan met presenteren. PresentationPlugin.PresentationTab Available Controllers Beschikbare presentatieprogramma's %s (unavailable) %s (niet beschikbaar) Allow presentation application to be overridden Ander presentatieprogramma selecteren toestaan PDF options PDF-instellingen Use given full path for mudraw or ghostscript binary: Gebruik het volledige pad voor de mudraw of ghostscript driver: Select mudraw or ghostscript binary. Selecteer de mudraw of ghostscript driver. The program is not ghostscript or mudraw which is required. Het programma is niet de ghostscript of mudraw driver die vereist is. PowerPoint options PowerPoint-instellingen Clicking on a selected slide in the slidecontroller advances to next effect. Klikken op huidige dia in de diabesturing opent de volgende dia. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Laat PowerPoint de grootte en positie van het presentatievenster bepalen (nodig op Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote plug-in</strong><br />The remote plug-in voorziet in de mogelijkheid berichten te sturen naar een draaiende versie van OpenLP op een andere computer via een web-browser of via de remote API. Remote name singular Remote Remotes name plural Remotes Remote container title Remote Server Config Change Server configuratiewijziging Server configuration changes will require a restart to take effect. Server configuratiewijzigingen vereisen een herstart om actief te worden. RemotePlugin.Mobile Service Manager Liturgiebeheer Slide Controller Diabesturing Alerts Waarschuwingen Search Zoek Home Startpagina Refresh Vernieuwen Blank Leeg scherm Theme Thema Desktop Bureaublad Show Toon Prev Vorige Next Volgende Text Tekst Show Alert Toon waarschuwingen Go Live Ga live Add to Service Voeg aan liturgie toe Add &amp; Go to Service Toevoegen &amp; ga naar liturgie No Results Niets gevonden Options Opties Service Liturgie Slides Dia’s Settings Instellingen Remote Remote Stage View Podiumweergave Live View Live kijken RemotePlugin.RemoteTab Serve on IP address: Beschikbaar via IP-adres: Port number: Poort nummer: Server Settings Server instellingen Remote URL: Remote URL: Stage view URL: Podium weergave URL: Display stage time in 12h format Toon tijd in am/pm formaat Android App Android App Live view URL: Live meekijk URL: HTTPS Server HTTPS server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Kon geen SSL certificaat vinden. De HTTPS server is niet beschikbaar, totdat een SSL certificaat wordt gevonden. Lees de documentatie voor meer informatie. User Authentication Gebruikersverificatie User id: Gebruikersnaam: Password: Wachtwoord: Show thumbnails of non-text slides in remote and stage view. Toon miniatuurweergaven van niet-tekst-dia's in remote- en podiumweergaven. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scan de QR-code of klik op <a href="%s">download</a> om de Android-app te installeren via Google Play. SongUsagePlugin &Song Usage Tracking &Liedgebruik bijhouden &Delete Tracking Data Verwij&der liedgebruik gegevens Delete song usage data up to a specified date. Verwijder alle gegevens over liedgebruik tot een bepaalde datum. &Extract Tracking Data &Exporteer liedgebruik gegevens Generate a report on song usage. Geneer rapportage liedgebruik. Toggle Tracking Gegevens bijhouden aan|uit Toggle the tracking of song usage. Liedgebruik gegevens bijhouden aan of uit zetten. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Liedgebruik plug-in</strong><br />Met deze plug-in kunt u bijhouden welke liederen tijdens de vieringen gezongen worden. SongUsage name singular Liedgebruik SongUsage name plural Liedgebruik SongUsage container title Liedgebruik Song Usage Liedgebruik Song usage tracking is active. Liedgebruik bijhouden is actief. Song usage tracking is inactive. Liedgebruik bijhouden is inactief. display weergave printed afgedrukt SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Liedgebruik gegevens verwijderen Delete Selected Song Usage Events? Wilt u de liedgebruik gegevens verwijderen? Are you sure you want to delete selected Song Usage data? Weet u zeker dat u de liedgebruik gegevens wilt verwijderen? Deletion Successful Succesvol verwijderd Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecteer de datum tot wanneer de liedgebruikgegevens verwijderd moeten worden. Alle gegevens van voor die datum zullen worden verwijderd. All requested data has been deleted successfully. Alle opgegeven data is succesvol verwijderd. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Liedgebruik gegevens exporteren Select Date Range Selecteer periode to tot Report Location Locatie rapport Output File Location Bestandslocatie usage_detail_%s_%s.txt liedgebruik_details_%s_%s.txt Report Creation Rapportage opslaan Report %s has been successfully created. Rapportage %s is gemaakt. Output Path Not Selected Uitvoer pad niet geselecteerd You have not set a valid output location for your song usage report. Please select an existing path on your computer. Geen geldige bestandslocatie opgegeven om de rapportage liedgebruik op te slaan. Kies een bestaande map op uw computer. Report Creation Failed Overzicht maken mislukt An error occurred while creating the report: %s Er is een fout opgetreden bij het maken van het overzicht: %s SongsPlugin &Song &Lied Import songs using the import wizard. Importeer liederen met de Importeren Assistent. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Lied plug-in</strong><br />De lied plug-in regelt de weergave en het beheer van liederen. &Re-index Songs He&r-indexeer liederen Re-index the songs database to improve searching and ordering. Her-indexeer de liederen in de database om het zoeken en ordenen te verbeteren. Reindexing songs... Liederen her-indexeren... Arabic (CP-1256) Arabisch (CP-1256) Baltic (CP-1257) Baltisch (CP-1257) Central European (CP-1250) Centraal Europees (CP-1250) Cyrillic (CP-1251) Cyrillisch (CP-1251) Greek (CP-1253) Grieks (CP-1253) Hebrew (CP-1255) Hebreeuws (CP-1255) Japanese (CP-932) Japans (CP-932) Korean (CP-949) Koreaans (CP-949) Simplified Chinese (CP-936) Chinees, eenvoudig (CP-936) Thai (CP-874) Thais (CP-874) Traditional Chinese (CP-950) Traditioneel Chinees (CP-950) Turkish (CP-1254) Turks (CP-1254) Vietnam (CP-1258) Vietnamees (CP-1258) Western European (CP-1252) Westeuropees (CP-1252) Character Encoding Tekst codering The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens. Meestal voldoet de suggestie van OpenLP. Please choose the character encoding. The encoding is responsible for the correct character representation. Kies een tekstcodering (codepage). De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens. Song name singular Lied Songs name plural Liederen Songs container title Liederen Exports songs using the export wizard. Exporteer liederen met de Exporteren Assistent. Add a new song. Voeg nieuw lied toe. Edit the selected song. Bewerk het geselecteerde lied. Delete the selected song. Verwijder het geselecteerde lied. Preview the selected song. Toon voorbeeld van het geselecteerde lied. Send the selected song live. Toon het geselecteerde lied Live. Add the selected song to the service. Voeg geselecteerd lied toe aan de liturgie. Reindexing songs Herindexeren liederen CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importeer liederen vanuit CCLI's SongSelect service. Find &Duplicate Songs Zoek &dubbele liederen Find and remove duplicate songs in the song database. Zoek en verwijder dubbele liederen in de liederendatabase. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Tekst Music Author who wrote the music of a song Muziek Words and Music Author who wrote both lyrics and music of a song Tekst en muziek Translation Author who translated the song Vertaling SongsPlugin.AuthorsForm Author Maintenance Auteur beheer Display name: Weergave naam: First name: Voornaam: Last name: Achternaam: You need to type in the first name of the author. De voornaam van de auteur moet worden opgegeven. You need to type in the last name of the author. De achternaam van de auteur moet worden opgegeven. You have not set a display name for the author, combine the first and last names? Geen weergave naam opgegeven. Moeten de voor- en achternaam gecombineerd worden? SongsPlugin.CCLIFileImport The file does not have a valid extension. Dit bestand heeft geen geldige extensie. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ongeldig DreamBeam liedbestand. Ontbrekende DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Beheerd door %s "%s" could not be imported. %s "%s" kon niet worden geïmporteerd. %s Unexpected data formatting. Onverwacht bestandsformaat. No song text found. Geen liedtekst gevonden. [above are Song Tags with notes imported from EasyWorship] [hierboven staan Liedtags met noten die zijn geïmporteerd uit EasyWorship] This file does not exist. Het bestand bestaat niet. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Kon het bestand "Songs.MB" niet vinden. Het moet in dezelfde map staan als het bestand "Songs.DB". This file is not a valid EasyWorship database. Dit is geen geldige EasyWorship-database. Could not retrieve encoding. Kon de encoding niet bepalen. SongsPlugin.EditBibleForm Meta Data Algemene informatie Custom Book Names Aangepaste namen bijbelboeken SongsPlugin.EditSongForm Song Editor Lied editor &Title: &Titel: Alt&ernate title: Alt&ernatieve titel: &Lyrics: Lied&tekst: &Verse order: &Vers volgorde: Ed&it All &Alles bewerken Title && Lyrics Titel && Liedtekst &Add to Song Voeg toe &aan lied &Remove Ve&rwijderen A&dd to Song Voeg toe &aan lied R&emove V&erwijderen New &Theme Nieuw &Thema Copyright Information Copyright Comments Commentaren Theme, Copyright Info && Comments Thema, Copyright && Commentaren Add Author Voeg auteur toe This author does not exist, do you want to add them? Deze auteur bestaat nog niet, toevoegen? This author is already in the list. Deze auteur staat al in de lijst. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Geen auteur geselecteerd. Kies een auteur uit de lijst of voeg er een toe door de naam in te typen en op de knop "Voeg auteur toe" te klikken. Add Topic Voeg onderwerp toe This topic does not exist, do you want to add it? Dit onderwerp bestaat nog niet, toevoegen? This topic is already in the list. Dit onderwerp staat al in de lijst. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Geen geldig onderwerp geselecteerd. Kies een onderwerp uit de lijst of type een nieuw onderwerp en klik op "Nieuw onderwerp toevoegen". You need to type in a song title. Vul de titel van het lied in. You need to type in at least one verse. Vul minstens de tekst van één couplet in. You need to have an author for this song. Selecteer minimaal één auteur voor dit lied. Linked Audio Gekoppelde audio Add &File(s) Bestand(en) &toevoegen Add &Media Voeg &Media toe Remove &All &Alles verwijderen Open File(s) Open bestand(en) <strong>Warning:</strong> Not all of the verses are in use. <strong>Let op:</strong> Niet alle verzen worden gebruikt. <strong>Warning:</strong> You have not entered a verse order. <strong>Waarschuwing:</strong> U hebt geen volgorde opgegeven voor de verzen. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Er is geen vers dat overeenkomen met "%(invalid)s". Geldige waarden zijn %(valid)s. Geef de verzen op gescheiden door spaties. Invalid Verse Order Ongeldige vers volgorde &Edit Author Type Aut&eurstype aanpassen Edit Author Type Auteurstype aanpassen Choose type for this author Kies het type van deze auteur There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Er zijn geen verzen die overeenkomen met "%(invalid)s". Geldige waarden zijn %(valid)s. Geef de verzen op gescheiden door spaties. &Manage Authors, Topics, Songbooks &Beheer auteurs, onderwerpen, liedboeken Add &to Song Voeg toe &aan lied Re&move Ver&wijderen Authors, Topics && Songbooks Auteurs, onderwerpen && liedboeken Add Songbook Voeg liedboek toe This Songbook does not exist, do you want to add it? Dit liedboek bestaat nog niet, toevoegen? This Songbook is already in the list. Dit liedboek staat al in de lijst. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Geen geldig liedboek geselecteerd. Kies een liedboek uit de lijst of type de naam van een liedboek en klik op "Nieuw liedboek toevoegen". SongsPlugin.EditVerseForm Edit Verse Couplet bewerken &Verse type: Co&uplet type: &Insert &Invoegen Split a slide into two by inserting a verse splitter. Dia opsplitsen door een dia 'splitter' in te voegen. SongsPlugin.ExportWizardForm Song Export Wizard Lied Exporteren Assistent Select Songs Selecteer liederen Check the songs you want to export. Selecteer de liederen die u wilt exporteren. Uncheck All Deselecteer alles Check All Selecteer alles Select Directory Selecteer map Directory: Map: Exporting Exporteren Please wait while your songs are exported. Een moment geduld terwijl de liederen worden geëxporteerd. You need to add at least one Song to export. Kies minstens één lied om te exporteren. No Save Location specified Geen map opgegeven Starting export... Start exporteren... You need to specify a directory. Geef aan waar het bestand moet worden opgeslagen. Select Destination Folder Selecteer een doelmap Select the directory where you want the songs to be saved. Selecteer een map waarin de liederen moeten worden bewaard. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Deze assistent helpt u bij het exporteren van liederen naar het open en vrije <strong>OpenLyrics</strong> worship lied formaat. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Onbruikbaar Foilpresenter liederenbestand. Geen verzen gevonden. SongsPlugin.GeneralTab Enable search as you type Zoeken tijdens het typen SongsPlugin.ImportWizardForm Select Document/Presentation Files Selecteer Documenten/Presentatie bestanden Song Import Wizard Lied Importeren Assistent This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Deze Assistent helpt liederen in verschillende bestandsformaten te importeren in OpenLP. Klik op volgende en kies daarna het bestandsformaat van het te importeren lied. Generic Document/Presentation Algemeen Document/Presentatie Add Files... Toevoegen... Remove File(s) Verwijder bestand(en) Please wait while your songs are imported. Een moment geduld terwijl de liederen worden geïmporteerd. Words Of Worship Song Files Words Of Worship liedbestanden Songs Of Fellowship Song Files Songs Of Fellowship liedbestanden SongBeamer Files SongBeamer bestanden SongShow Plus Song Files SongShow Plus liedbestanden Foilpresenter Song Files Foilpresenter liedbestanden Copy Kopieer Save to File Opslaan als bestand The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship import is uitgeschakeld omdat OpenLP zowel OpenOffice als LibreOffice niet kan vinden op deze computer. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Algemeen document/presentatie import is uitgeschakeld omdat OpenLP zowel OpenOffice als LibreOffice niet kan vinden op deze computer. OpenLyrics Files OpenLyrics bestanden CCLI SongSelect Files CCLI SongSelect bestanden EasySlides XML File EasySlides XML bestand EasyWorship Song Database EasyWorship lied database DreamBeam Song Files DreamBeam liedbestanden You need to specify a valid PowerSong 1.0 database folder. Specificeer een geldige PowerSong 1.0 databasemap. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Converteer uw ZionWorx database eerst naar een CSV tekstbestand, zoals staat uitgelegd in de Engelstalige <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">gebruikershandleiding</a>. SundayPlus Song Files SundayPlus liedbestanden This importer has been disabled. Deze importeerder is uitgeschakeld. MediaShout Database MediaShout database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importeren wordt alleen ondersteund onder Windows. Het is uitgeschakeld omdat een bepaalde Python module ontbreekt. Om te kunnen importeren moet u de "pyodbc" module installeren. SongPro Text Files SongPro tekstbestanden SongPro (Export File) SongPro (geëxporteerd bestand) In SongPro, export your songs using the File -> Export menu Exporteer de liederen in SongPro via het menu File -> Export EasyWorship Service File EasyWorship dienstbestand WorshipCenter Pro Song Files WorshipCenter Pro liedbestanden The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. De WorshipCenter Pro-importeerder wordt alleen ondersteund op Windows. Het is uitgeschakeld door een missende Python-module. Als u deze importeerder wilt gebruiken, moet u de module "pyodbc" installeren. PowerPraise Song Files PowerPraise liedbestanden PresentationManager Song Files PresentationManager liedbestanden ProPresenter 4 Song Files ProPresenter 4 liedbestanden Worship Assistant Files Worship Assistant bestanden Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Exporteer uw database naar een CSV-bestand vanuit Worship Assistant. OpenLyrics or OpenLP 2 Exported Song OpenLyrics of OpenLP 2 geëxporteerd lied OpenLP 2 Databases OpenLP 2 Databases LyriX Files LyriX-bestanden LyriX (Exported TXT-files) LyriX (geëxporteerde TXT-bestanden) VideoPsalm Files VideoPsalm-bestanden VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s De VideoPsalm-bundels staan normaal in %s SongsPlugin.LyrixImport Error: %s Fout: %s SongsPlugin.MediaFilesForm Select Media File(s) Selecteer media bestand(en) Select one or more audio files from the list below, and click OK to import them into this song. Selecteer een of meerdere audiobestanden uit de lijst en klik OK om te importeren in dit lied. SongsPlugin.MediaItem Titles Titels Lyrics Liedtekst CCLI License: CCLI Licentie: Entire Song Gehele lied Maintain the lists of authors, topics and books. Beheer de lijst met auteurs, onderwerpen en liedboeken. copy For song cloning kopieer Search Titles... Zoek op titel... Search Entire Song... Doorzoek gehele lied... Search Lyrics... Doorzoek liedtekst... Search Authors... Zoek op auteur... Are you sure you want to delete the "%d" selected song(s)? Weet u zeker dat u deze "%d" liederen wilt verwijderen? Search Songbooks... Zoek liedboek... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Kan de MediaShout database niet openen. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Geen geldige OpenLP 2 liederendatabase. SongsPlugin.OpenLyricsExport Exporting "%s"... Bezig met exporteren van "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ongeldig OpenSong-liedbestand. Ontbrekende liedtag. SongsPlugin.PowerSongImport No songs to import. Geen liederen om te importeren. Verses not found. Missing "PART" header. Coupletten niet gevonden. Ontbrekende "PART" header. No %s files found. Geen %s bestanden gevonden. Invalid %s file. Unexpected byte value. Ongeldig %s bestand. Onverwachte bytewaarde. Invalid %s file. Missing "TITLE" header. Ongeldig %s bestand. Ontbrekende "TITLE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. Ongeldig %s bestand. Ontbrekende "COPYRIGHTLINE" header. SongsPlugin.SongBookForm &Name: &Naam: &Publisher: &Uitgever: You need to type in a name for the book. Er moet een naam worden opgegeven. Songbook Maintenance Liedboekbeheer SongsPlugin.SongExportForm Your song export failed. Liederen export is mislukt. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Klaar met exporteren. Om deze bestanden te importeren gebruik <strong>OpenLyrics</strong> importeren. Your song export failed because this error occurred: %s Er is een fout opgetreden bij het exporteren van het lied: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: De volgende liederen konden niet worden geïmporteerd: Cannot access OpenOffice or LibreOffice Kan OpenOffice of LibreOffice niet bereiken Unable to open file Kan bestand niet openen File not found Bestand niet gevonden SongsPlugin.SongMaintenanceForm Could not add your author. Kon de auteur niet toevoegen. This author already exists. Deze auteur bestaat al. Could not add your topic. Kon dit onderwerp niet toevoegen. This topic already exists. Dit onderwerp bestaat al. Could not add your book. Kon dit boek niet toevoegen. This book already exists. Dit boek bestaat al. Could not save your changes. De wijzigingen kunnen niet opgeslagen worden. Could not save your modified author, because the author already exists. Kan de auteur niet opslaan, omdat deze reeds bestaat. Could not save your modified topic, because it already exists. Kan dit onderwerp niet opslaan, omdat het reeds bestaat. Delete Author Auteur verwijderen Are you sure you want to delete the selected author? Weet u zeker dat u de auteur wilt verwijderen? This author cannot be deleted, they are currently assigned to at least one song. Deze auteur kan niet worden verwijderd omdat er nog een lied aan is gekoppeld. Delete Topic Onderwerp verwijderen Are you sure you want to delete the selected topic? Weet u zeker dat u dit onderwerp wilt verwijderen? This topic cannot be deleted, it is currently assigned to at least one song. Dit onderwerp kan niet worden verwijderd omdat er nog een lied aan is gekoppeld. Delete Book Verwijder boek Are you sure you want to delete the selected book? Weet u zeker dat u dit boek wilt verwijderen? This book cannot be deleted, it is currently assigned to at least one song. Dit boek kan niet worden verwijderd omdat er nog een lied aan is gekoppeld. The author %s already exists. Would you like to make songs with author %s use the existing author %s? De auteur %s bestaat al. Liederen met auteur %s aan de bestaande auteur %s koppelen? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Het onderwerp %s bestaat al. Liederen met onderwerp %s aan het bestaande onderwerp %s koppelen? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Het boek %s bestaat al. Liederen uit het boek %s aan het bestaande boek %s koppelen? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect importeerder <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Let op:</strong> Een internetverbinding is nodig om liederen te kunnen importeren van CCLI SongSelect. Username: Gebruikersnaam: Password: Wachtwoord: Save username and password Gebruikersnaam en wachtwoord opslaan Login Inloggen Search Text: Zoektekst: Search Zoek Found %s song(s) %s lied(eren) gevonden Logout Uitloggen View Weergave Title: Titel: Author(s): Auteur(s): Copyright: Copyright: CCLI Number: CCLI-nummer: Lyrics: Teksten: Back Terug Import Importeren More than 1000 results Meer dan 1000 resultaten Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Uw zoekopdracht heeft meer dan 1000 resultaten opgeleverd en is afgebroken. Maak uw opdracht specifieker voor betere resultaten. Logging out... Bezig met uitloggen... Save Username and Password Gebruikersnaam en wachtwoord opslaan WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. WAARSCHUWING: Uw gebruikersnaam en wachtwoord opslaan is NIET VEILIG omdat ze leesbaar worden opgeslagen. Klik op Ja om toch op te slaan of op Nee om te annuleren. Error Logging In Loginfout There was a problem logging in, perhaps your username or password is incorrect? Er was een probleem bij het inloggen, misschien is uw gebruikersnaam of wachtwoord incorrect? Song Imported Lied geïmporteerd Incomplete song Incompleet lied This song is missing some information, like the lyrics, and cannot be imported. Dit lied mist informatie, zoals bijvoorbeeld de liedtekst, waardoor het niet geïmporteerd kan worden. Your song has been imported, would you like to import more songs? Het lied is geïmporteerd. Wilt u meer liederen importeren? Stop Stop SongsPlugin.SongsTab Songs Mode Lied instellingen Display verses on live tool bar Coupletten weergeven op Live werkbalk Update service from song edit Liturgie bijwerken met bewerkt lied Import missing songs from service files Importeer ontbrekende liederen uit liturgiebestand Display songbook in footer Weergeven liedboek in voettekst Display "%s" symbol before copyright info Geef "%s"-symbool weer vóór copyrightinformatie SongsPlugin.TopicsForm Topic Maintenance Onderwerp onderhoud Topic name: Onderwerp naam: You need to type in a topic name. U moet een onderwerp invullen. SongsPlugin.VerseType Verse Couplet Chorus Refrein Bridge Bridge Pre-Chorus Tussenspel Intro Intro Ending Eind Other Overig SongsPlugin.VideoPsalmImport Error: %s Fout: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Ongeldig Words of Worship liedbestand. Ontbrekende "%s" kop.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Ongeldig Words of Worship liedbestand. Ontbrekende "%s" regel.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Fout bij het lezen van CSV bestand. Line %d: %s Regel %d: %s Decoding error: %s Fout bij decoderen: %s File not valid WorshipAssistant CSV format. Bestand is geen geldig WorshipAssistant CSV-bestand. Record %d Vermelding %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Kon niet verbinden met de WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Fout bij het lezen van CSV bestand. File not valid ZionWorx CSV format. Bestand heeft geen geldige ZionWorx CSV indeling. Line %d: %s Regel %d: %s Decoding error: %s Fout bij decoderen: %s Record %d Vermelding %d Wizard Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Deze assistent zal u helpen om dubbele liederen uit de database te verwijderen. U heeft de mogelijkheid om ieder lied te bekijken voordat die verwijderd wordt. Er zullen geen liederen worden verwijderd zonder uw expliciete toestemming. Searching for duplicate songs. Zoeken naar dubbele liederen. Please wait while your songs database is analyzed. Een moment geduld. De liederendatabase wordt geanalyseerd. Here you can decide which songs to remove and which ones to keep. Hier kunt u bepalen welke liederen moeten worden verwijderd of bewaard. Review duplicate songs (%s/%s) Bekijk dubbele liederen (%s/%s) Information Informatie No duplicate songs have been found in the database. Er zijn geen dubbele liederen gevonden in de database. OpenLP-2.4/resources/i18n/pl.ts0000644000175000017500000154217412657640340015343 0ustar raoulraoul AlertsPlugin &Alert &Komunikat Show an alert message. WyÅ›wietl komunikat. Alert name singular Komunikaty Alerts name plural Komunikaty Alerts container title Komunikaty <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Wtyczka Komunikatów</strong><br />Wtyczka Komunikatów kontroluje wyÅ›wietlanie komunikatów na ekranie. AlertsPlugin.AlertForm Alert Message Komunikat Alert &text: &Treść komunikatu: &New &Nowy &Save Zapi&sz Displ&ay &WyÅ›wietl Display && Cl&ose W&yÅ›wietl i zamknij New Alert Nowy komunikat &Parameter: &Parametr: No Parameter Found Nie znaleziono żadnego parametru You have not entered a parameter to be replaced. Do you want to continue anyway? Nie wprowadziÅ‚eÅ› parametru do zastÄ…pienia. Czy mimo to chcesz kontynuować? No Placeholder Found Nie znaleziono symbolu zastÄ™pczego The alert text does not contain '<>'. Do you want to continue anyway? Tekst ostrzegawczy nie zawiera '<>'. Czy mimo to chcesz kontynuować? You haven't specified any text for your alert. Please type in some text before clicking New. Nie zdeklarowaÅ‚eÅ› treÅ›ci komunikatu. ProszÄ™, wpisz test zanim wciÅ›niesz "Nowy". AlertsPlugin.AlertsManager Alert message created and displayed. Komunikat zostaÅ‚ stworzony i wyÅ›wietlony. AlertsPlugin.AlertsTab Font Czcionka Font name: Nazwa czcionki: Font color: Kolor czcionki: Background color: Kolor tÅ‚a: Font size: Wielkość czcionki: Alert timeout: Czas komunikatu: BiblesPlugin &Bible &Biblia Bible name singular Biblia Bibles name plural Biblie Bibles container title Biblie No Book Found Nie znaleziono KsiÄ™gi No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Nie znaleziono odpowiadajÄ…cej ksiÄ™gi w Biblii. Sprawdź, czy zapisaÅ‚eÅ› nazwÄ™ ksiÄ™gi poprawnie. Import a Bible. Importuj BibliÄ™ Add a new Bible. Dodaj nowÄ… BibliÄ™. Edit the selected Bible. Edytuj zaznaczonÄ… BibliÄ™ Delete the selected Bible. UsuÅ„ zaznaczonÄ… BibliÄ™ Preview the selected Bible. PodglÄ…d zaznaczonej Biblii Send the selected Bible live. WyÅ›wietl zaznaczonÄ… BibliÄ™ na ekranie Add the selected Bible to the service. Dodaj zaznaczonÄ… BibliÄ™ do planu nabożeÅ„stwa <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Wtyczka Biblii</strong><br />Wtyczka Biblii zapewnia możliwość wyÅ›wietlania wersetów biblijnych z różnych źródeÅ‚ podczas nabożeÅ„stwa. &Upgrade older Bibles &Uaktualnij starsze Biblie Upgrade the Bible databases to the latest format. Zaktualizuj bazÄ™ danych Biblii do najnowszego formatu. Genesis Ks. Rodzaju Exodus Ks. WyjÅ›cia Leviticus Ks. KapÅ‚aÅ„ska Numbers Ks. Liczb Deuteronomy Ks. Powt. Prawa Joshua Ks. Jozuego Judges Ks. SÄ™dziów Ruth Ks. Rut 1 Samuel 1 Ks. Samuela 2 Samuel 2 Ks. Samuela 1 Kings 1 Ks. Królewska 2 Kings 2 Ks. Królewska 1 Chronicles 1 Ks. Kronik 2 Chronicles 2 Ks. Kronik Ezra Ks. Ezdrasza Nehemiah Ks. Nehemiasza Esther Ks. Estery Job Ks. Hioba Psalms Ks. Psalmów Proverbs Ks. Przysłów Ecclesiastes Ks. Koheleta Song of Solomon Pieśń nad pieÅ›niami Isaiah Ks. Izajasza Jeremiah Ks. Jeremiasza Lamentations Lamentacje Jeremiasza Ezekiel Ks. Ezechiela Daniel Ks. Daniela Hosea Ks. Ozeasza Joel Ks. Joela Amos Ks. Amosa Obadiah Ks. Abdiasza Jonah Ks. Jonasza Micah Ks. Micheasza Nahum Ks. Nahuma Habakkuk Ks. Habakuka Zephaniah Ks. Sofoniasza Haggai Ks. Aggeusza Zechariah Ks. Zachariasza Malachi Ks. Malachiasza Matthew Ew. Mateusza Mark Ew. Marka Luke Ew. Åukasza John Ew. Jana Acts Dzieje Apost. Romans List do Rzymian 1 Corinthians 1 list do Koryntian 2 Corinthians 2 list do Koryntian Galatians List do Galatów Ephesians List do Efezjan Philippians List do Filipian Colossians List do Kolosan 1 Thessalonians 1 List do Tesaloniczan 2 Thessalonians 2 List do Tesaloniczan 1 Timothy 1 List do Tymoteusza 2 Timothy 2 List do Tymoteusza Titus List do Tytusa Philemon List do Filemona Hebrews List do Hebrajczyków James List Jakuba 1 Peter 1 List Piotra 2 Peter 2 List Piotra 1 John 1 List Jana 2 John 2 List Jana 3 John 3 List Jana Jude List Judy Revelation Apokalipsa Judith Ks. Judyty Wisdom Ks. MÄ…droÅ›ci Tobit Ks. Tobiasza Sirach MÄ…drość Syracha Baruch Ks. Barucha 1 Maccabees 1 Ks. Machabejska 2 Maccabees 2 Ks. Machabejska 3 Maccabees 3 Ks. Machabejska 4 Maccabees 4 Ks. Machabejska Rest of Daniel Reszta Ks. Daniela Rest of Esther Reszta Ks. Estery Prayer of Manasses Modlitwa Manassesa Letter of Jeremiah List Jeremiasza Prayer of Azariah Modlitwa Azariasza Susanna Zuzanna Bel Bel 1 Esdras 3 Ks. Ezdrasza 2 Esdras 4 Ks. Ezdrasza : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 w V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 W verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 werset verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 wersety - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 do , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 i end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse do koÅ„ca BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Musisz podać nazwÄ™ tÅ‚umaczenia tej Biblii. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Musisz ustawić prawa autorskie Biblii. Biblie domeny publicznej muszÄ… zostać oznaczone. Bible Exists Biblia istnieje This Bible already exists. Please import a different Bible or first delete the existing one. Ta Biblia już istnieje. ProszÄ™ zaimportować innÄ… lub usunąć już istniejÄ…cÄ…. You need to specify a book name for "%s". Musisz sprecyzować nazwÄ™ ksiÄ™gi dla "%s" The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Nazwa ksiÄ™gi "%s" nie jest poprawna. Liczby mogÄ… zostać użyte jedynie na poczÄ…tku i poprzedzać tekst. Duplicate Book Name Powiel nazwÄ™ ksiÄ™gi The Book Name "%s" has been entered more than once. Nazwa ksiÄ™gi "%s" zostaÅ‚a wpisana wiÄ™cej niż raz. BiblesPlugin.BibleManager Scripture Reference Error Błąd odnoÅ›nika Pisma Web Bible cannot be used Biblia internetowa nie może być użyta Text Search is not available with Web Bibles. Wyszukiwanie tekstu jest niedostÄ™pne dla Biblii internetowych. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nie wprowadzono słów kluczowych wyszukiwania. Możesz oddzielić sÅ‚owa spacjÄ…, by wyszukać wszystkie sÅ‚owa kluczowe oraz możesz rozdzielić je przecinkami, aby wyszukać tylko jedno z nich. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Nie zainstalowano żadnych tekstów Biblijnych. Użyj Kreatora Importu aby zainstalować teksty bibijne. No Bibles Available Å»adna Biblia nie jest dostÄ™pna Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Twój odnoÅ›nik nie jest wspierany przez OpenLP bÄ…dź jest błędny. ProszÄ™, upewnij siÄ™, że Twoje odniesienie pasuje do jednego z poniższych wzorów. KsiÄ™ga RozdziaÅ‚ KsiÄ™ga RozdziaÅ‚%(range)sRozdziaÅ‚ KsiÄ™ga RozdziaÅ‚%(verse)sWerset%(range)sWerset KsiÄ™ga RozdziaÅ‚%(verse)sWerset%(range)sWerset%(list)sWerset%(range)sWerset KsiÄ™ga RozdziaÅ‚%(verse)sWerset%(range)sWerset%(list)sRozdziaÅ‚%(verse)sWerset%(range)sWerset KsiÄ™ga RozdziaÅ‚%(verse)sWerset%(range)sRozdziaÅ‚%(verse)sWerset BiblesPlugin.BiblesTab Verse Display WyÅ›wietlanie wersetów Only show new chapter numbers Pokaż tylko numery nowych rozdziałów Bible theme: Motyw Biblii: No Brackets Brak klamer ( And ) ( i ) { And } { i } [ And ] [ i ] Note: Changes do not affect verses already in the service. Uwaga: Zmiany nie wpÅ‚ywajÄ… na wersety dodane do planu nabożeÅ„stwa. Display second Bible verses WyÅ›wietl kolejne wersety biblijne Custom Scripture References OdnoÅ›niki do Pisma Verse Separator: Separator wersetów (przed numerem wersetu): Range Separator: Separator zakresu: List Separator: Separator wymienianych elementów: End Mark: KoÅ„cowy znak: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Alternatywne separatory wersów mogÄ… być zdefiniowane. MuszÄ… one być odseparowane poziomÄ… kreskÄ… "|". ProszÄ™ zatwierdzić, by użyć domyÅ›lnej wartoÅ›ci. English Polish Default Bible Language DomyÅ›lny jÄ™zyk Biblii Book name language in search field, search results and on display: Nazwy ksiÄ…g w polu wyszukiwania, wyniki wyszukiwania i wyniki na ekranie: Bible Language JÄ™zyk Biblii Application Language JÄ™zyk programu Show verse numbers Pokaż numer wersetu BiblesPlugin.BookNameDialog Select Book Name Wybierz nazwÄ™ KsiÄ™gi Current name: Obecna nazwa: Corresponding name: Odpowiednia nazwa: Show Books From Pokaż KsiÄ™gi z Old Testament Stary Testament New Testament Nowy Testament Apocrypha Apokryfy The following book name cannot be matched up internally. Please select the corresponding name from the list. NastÄ™pujÄ…ca ksiÄ™ga nie może zostać dopasowana. ProszÄ™ wybrać odpowiedniÄ… nazwÄ™ z listy. BiblesPlugin.BookNameForm You need to select a book. Musisz zaznaczyć ksiÄ™gÄ™. BiblesPlugin.CSVBible Importing books... %s Import ksiÄ…g ... %s Importing verses... done. Import wersów... wykonano. BiblesPlugin.EditBibleForm Bible Editor Edytor Biblii License Details Szczegóły licencji Version name: Nazwa wersji: Copyright: Prawa autorskie: Permissions: Zezwolenia: Default Bible Language DomyÅ›lny jÄ™zyk Biblii Book name language in search field, search results and on display: Nazwy ksiÄ…g w polu wyszukiwania, wyniki wyszukiwania i wyniki na ekranie: Global Settings Globalne ustawienia Bible Language JÄ™zyk Biblii Application Language JÄ™zyk programu English Polish This is a Web Download Bible. It is not possible to customize the Book Names. To jest pobrana Biblia internetowa. Nie można dostosowywać i zmieniać nazw ksiÄ…g. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Aby użyć innych nazw KsiÄ…g, musi być zaznaczony "jÄ™zyk Biblii" w zakÅ‚adce metadanych lub gdy "Globalne ustawienia" sÄ… zaznaczone, na stronie Biblia w Konfiguracji OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Rejestrowanie Biblii i wczytywanie ksiÄ…g... Registering Language... Rejestrowanie jÄ™zyka... Importing %s... Importing <book name>... Importowanie %s... Download Error Błąd pobierania There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. WystÄ…piÅ‚ problem podczas pobierania wybranych wersetów. Sprawdź swoje połączenie internetowe, a jeÅ›li błąd nadal wystÄ™puje, należy rozważyć zgÅ‚oszenie błędu oprogramowania. Parse Error Błąd przetwarzania There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. WystÄ…piÅ‚ problem wyodrÄ™bnienia wybranego wersetu. JeÅ›li błąd nadal wystÄ™puje należy rozważyć zgÅ‚oszenie błędu oprogramowania BiblesPlugin.ImportWizardForm Bible Import Wizard Kreator importu Biblii This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Ten kreator pomoże ci zaimportować BibliÄ™ z różnych formatów. Kliknij "dalej", aby rozpocząć proces przez wybranie formatu poczÄ…tkowego. Web Download Pobieranie z internetu Location: Lokalizacja: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Biblia: Download Options Opcje pobierania Server: Serwer: Username: Nazwa użytkownika: Password: HasÅ‚o: Proxy Server (Optional) Serwer Proxy (opcjonalnie) License Details Szczegóły licencji Set up the Bible's license details. Ustaw szczegóły licencyjne ?! Biblii Version name: Nazwa wersji: Copyright: Prawa autorskie: Please wait while your Bible is imported. ProszÄ™ czekać, aż Biblia zostanie zaimportowana. You need to specify a file with books of the Bible to use in the import. Sprecyzuj plik z ksiÄ™gami Biblii aby móc użyć go do importu. You need to specify a file of Bible verses to import. Musisz okreÅ›lić plik z wersetami biblijnymi, aby móc importować You need to specify a version name for your Bible. Musisz podać nazwÄ™ tÅ‚umaczenia tej Biblii. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Musisz ustawić prawa autorskie Biblii. Biblie domeny publicznej muszÄ… zostać oznaczone. Bible Exists Biblia istnieje This Bible already exists. Please import a different Bible or first delete the existing one. Ta Biblia już istnieje. ProszÄ™ zaimportować innÄ… lub usunąć już istniejÄ…cÄ…. Your Bible import failed. Import Biblii zakoÅ„czony niepowodzeniem CSV File Plik CSV Bibleserver Bibleserver Permissions: Zezwolenia: Bible file: Plik Biblii: Books file: Plik KsiÄ…g: Verses file: Plik wersetów: Registering Bible... Rejestrowanie Biblii... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Biblia dodana. Zwróć uwagÄ™ na to, że wersety bÄ™dÄ… pobierane na bieżąco, wiÄ™c wymagane jest połączenie z internetem. Click to download bible list Kliknij, by pobrać pakiet biblii Download bible list Pobierz pakiet biblii Error during download Błąd pobierania An error occurred while downloading the list of bibles from %s. PojawiÅ‚ siÄ™ problem podczas pobierania pakietu biblii od %s BiblesPlugin.LanguageDialog Select Language Wybierz jÄ™zyk OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP nie jest w stanie okreÅ›lić jÄ™zyka tego tÅ‚umaczenia Biblii. ProszÄ™ wybierz jÄ™zyk z poniższej listy. Language: JÄ™zyk: BiblesPlugin.LanguageForm You need to choose a language. Musisz wybrać jakiÅ› jÄ™zyk BiblesPlugin.MediaItem Quick Szybko Find: Znajdź: Book: KsiÄ™ga: Chapter: RozdziaÅ‚: Verse: Werset: From: Od: To: Do: Text Search Wyszukaj tekst: Second: Drugie: Scripture Reference OdnoÅ›nik biblijny Toggle to keep or clear the previous results. Kliknij, aby zachować lub wyczyÅ›cić poprzednie wyniki. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nie możesz łączyć pojedyÅ„czych i podwójnych wersetów Biblii w wynikach wyszukiwania. Czy chcesz usunąć wyniki wyszukiwania i rozpocząć kolejne wyszukiwanie? Bible not fully loaded. Biblia nie jest wczytana w peÅ‚ni. Information Informacja The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druga Biblia nie zawiera wszystkich wersetów, które wystÄ™pujÄ… w głównej Biblii. Jedynie wersety znalezione w obu tÅ‚umaczeniach zostanÄ… wyÅ›wietlone. %d wersety nie zostaÅ‚y zawarte w wynikach. Search Scripture Reference... Wpisz odnoÅ›nik... Search Text... Przeszukaj tekst... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Czy jesteÅ› pewien, że chcesz zupeÅ‚nie usunąć "%s" BibliÄ™ z OpenLP? BÄ™dziesz musiaÅ‚ zaimportować jÄ… ponownie, aby móc jej znowu używać. Advanced Zaawansowane BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. NiewÅ‚aÅ›ciwy typ Biblii. Biblie na OpenSong'a mogÄ… być skompresowane. Musisz je rozpakować przed importowaniem. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. NieprawidÅ‚owy format Biblii. WyglÄ…da ona na BibliÄ™ Zefania XML, wiÄ™c proszÄ™ użyć opcji importu Zefania BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importowanie %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Usuwanie nieużywanych tagów (to może zająć kilka minut)... Importing %(bookname)s %(chapter)s... Importowanie %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Wybierz folder kopii zapasowej Bible Upgrade Wizard Kreator Aktualizacji Biblii This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Ten kreator pozwoli ci na aktualizacjÄ™ istniejÄ…cej Biblii z poprzedniej wersji OpenLP 2. Kliknij "dalej", aby rozpocząć proces aktualizacji. Select Backup Directory Wybierz folder kopii zapasowej Please select a backup directory for your Bibles Wybierz folder kopii zapasowej dla twoich Biblii Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Poprzednie wydania OpenLP 2.0 nie mogÄ… używać zaktualizowanych Biblii. Zostanie utworzona kopia zapasowa obecnych Biblii, wiÄ™c możesz po prostu skopiować dane z powrotem do katalogu OpenLP w przypadku gdy bÄ™dziesz potrzebowaÅ‚ powrócić do poprzedniego wydania OpenLP. Instrukcje jak przywrócić pliki można znaleźć w naszym dziale <a href="http://wiki.openlp.org/faq">Frequently Asked Questions - Najczęściej Zadawane Pytania</a>. Please select a backup location for your Bibles. ProszÄ™ wybrać lokalizacjÄ™ kopii zapasowej twojej Biblii. Backup Directory: Katalog kopii zapasowej: There is no need to backup my Bibles Nie ma potrzeby tworzenia kopii zapasowej Biblii Select Bibles Wybierz BibliÄ™ Please select the Bibles to upgrade ProszÄ™ wybrać Biblie do zaktualizowania Upgrading Aktualizacja Please wait while your Bibles are upgraded. ProszÄ™ czekać, trwa aktualizacja Biblii. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Tworzenie kopii zapasowej zakoÅ„czone niepowodzeniem. ⎠Aby utworzyć kopiÄ™ zapasowÄ… twojej Biblii musisz mieć uprawnienia do zapisywania w danym folderze. Upgrading Bible %s of %s: "%s" Failed Aktualizowanie Biblii %s z %s: "%s" Niepowodzenie Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizowanie Biblii %s z %s: "%s" Aktualizowanie w toku... Download Error Błąd pobierania To upgrade your Web Bibles an Internet connection is required. Aby aktualizować twoje internetowe Biblie wymagane jest połączenie z internetem. Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizowanie Biblii %s z %s: "%s" Aktualizowanie %s.. Upgrading Bible %s of %s: "%s" Complete Aktualizowanie Biblii %s z %s: "%s" UkoÅ„czono! , %s failed %s niepowodzenie Upgrading Bible(s): %s successful%s Aktualizowanie Biblii: %s successful%s Upgrade failed. Aktualizacja zakoÅ„czona niepowodzeniem. You need to specify a backup directory for your Bibles. Musisz okreÅ›lić katalog dla kopii zapasowej twojej Biblii. Starting upgrade... Rozpoczynanie aktualizacji... There are no Bibles that need to be upgraded. Brak Biblii wymagajÄ…cych aktualizacji. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. = BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importowanie %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Slajd tekstowy Custom Slides name plural Slajdy tekstowe Custom Slides container title Slajdy tekstowe Load a new custom slide. Wczytaj nowy slajd tekstowy. Import a custom slide. Importuj slajd tekstowy. Add a new custom slide. Dodaj nowy slajd tekstowy Edit the selected custom slide. Edytuj wybrany slajd tekstowy Delete the selected custom slide. UsuÅ„ wybrany slajd tekstowy Preview the selected custom slide. PodglÄ…d wybranego slajdu tekstowego Send the selected custom slide live. WyÅ›wietl wybrany slajd tekstowy na ekranie Add the selected custom slide to the service. Dodaj wybrany slajd tekstowy do planu nabożeÅ„stwa <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Wtyczka Slajdu Tekstowego</strong> Wtyczka Slajdu Tekstowego umożliwia umieszczanie zwykÅ‚ych ciÄ…gów znaków na ekranie, tak jak piosenek. Wtyczka zapewnia wiÄ™kszÄ… wolność od wtyczki pieÅ›ni. CustomPlugin.CustomTab Custom Display WyÅ›wietlanie Display footer WyÅ›wietl stopkÄ™ Import missing custom slides from service files Zaimportuj brakujÄ…ce slajdy tekstowe z plików planu nabożeÅ„stwa CustomPlugin.EditCustomForm Edit Custom Slides Edytuj slajdy tekstowe &Title: &TytuÅ‚: Add a new slide at bottom. Dodaj nowy slajd na dole. Edit the selected slide. Edytuj wybrany slajd. Edit all the slides at once. Edytuj wszystkie slajdy natychmiast. Split a slide into two by inserting a slide splitter. Połącz dwa slajdy w jeden za pomocÄ… łączenia slajdów. The&me: Motyw: &Credits: &Twórcy: You need to type in a title. Musisz napisać tytuÅ‚. Ed&it All Edytuj caÅ‚ość Insert Slide Wstaw slajd You need to add at least one slide. Musisz dodać przynajmniej jeden slajd CustomPlugin.EditVerseForm Edit Slide Edytuj slajd CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Wtyczka Obrazów</strong><br />Wtyczka Obrazów zapewnia wyÅ›wietlanie obrazów. <br /> JednÄ… z wyróżniajÄ…cych cech tej wtyczki jest możliwość grupowania kilku zdjęć razem z Menadżerem PosÅ‚ugi, dziÄ™ki czemu wyÅ›wietlanie zdjęć jest Å‚atwiejsze. Można także wykorzystać pÄ™tlÄ™ czasowÄ… do tworzenia pokazu slajdów, który uruchamia siÄ™ automatycznie. Pozwala ona także na zmianÄ™ tÅ‚a wyÅ›wietlanych pieÅ›ni. Image name singular Obraz Images name plural Obrazy Images container title Obrazy Load a new image. Wczytaj nowy obraz Add a new image. Dodaj nowy obraz. Edit the selected image. Edytuj wybrany obraz. Delete the selected image. UsuÅ„ zaznaczony obraz Preview the selected image. PodglÄ…d zaznaczonego obrazu Send the selected image live. WyÅ›wietl wybrany obraz na ekranie Add the selected image to the service. Dodaj zaznaczony obraz do planu nabożeÅ„stwa ImagePlugin.AddGroupForm Add group Dodaj grupÄ™ Parent group: Grupa nadrzÄ™dna Group name: Nazwa grupy You need to type in a group name. Musisz wpisać nazwÄ™ grupy Could not add the new group. Nie można dodać nowej grupy. This group already exists. Ta grupa już istnieje. ImagePlugin.ChooseGroupForm Select Image Group Wybierz obraz grupy Add images to group: Dodaj obraz do grupy: No group Brak grupy Existing group IstniejÄ…ca grupa New group Nowa grupa ImagePlugin.ExceptionDialog Select Attachment Wybierz załącznik ImagePlugin.MediaItem Select Image(s) Wybierz obraz(y) You must select an image to replace the background with. Musisz zaznaczyć obraz, by użyć go jako tÅ‚o. Missing Image(s) BrakujÄ…ce obrazy The following image(s) no longer exist: %s NastÄ™pujÄ…ce obrazy nie istniejÄ…: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? NastÄ™pujÄ…ce obrazy nie istniejÄ…: %s Czy mimo to chcesz dodać inne? There was a problem replacing your background, the image file "%s" no longer exists. NastÄ…piÅ‚ problem ze zmianÄ… tÅ‚a, plik "%s" nie istnieje. There was no display item to amend. Brak projektora. -- Top-level group -- -- NadrzÄ™dna grupa -- You must select an image or group to delete. Musisz wybrać obraz lub grupÄ™ do usuniÄ™cia Remove group UsuÅ„ grupÄ™ Are you sure you want to remove "%s" and everything in it? JesteÅ› pewien, że chcesz usunąć "%s" i całą zawartość? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. TÅ‚o dla obrazów o innych proporcjach niż ekran. Media.player Audio Audio Video Wideo VLC is an external player which supports a number of different formats. VLC jest zewnÄ™trznym odtwarzaczem, który obsÅ‚uguje wiele różnych formatów plików multimedialnych. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit to odtwarzacz, który dziaÅ‚a w przeglÄ…darce Internetowej. Pozwala on na przedstawienie tekstu na filmie wideo. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Wtyczka Multimedialna</strong><br />Wtyczka Multimedialna zapewnia odtwarzanie audio i video. Media name singular Multimedia Media name plural Multimedia Media container title Multimedia Load new media. Wczytaj film, bÄ…dź plik dźwiÄ™kowy Add new media. Dodaj nowe multimedia. Edit the selected media. Edytuj zaznaczone multimedia Delete the selected media. UsuÅ„ zaznaczone multimedia Preview the selected media. PodglÄ…d zaznaczonych multimediów Send the selected media live. WyÅ›wietl wybrane multimedia na ekranie Add the selected media to the service. Dodaj wybrane multimedia do planu nabożeÅ„stwa. MediaPlugin.MediaClipSelector Select Media Clip Wybierz klip wideo Source ŹródÅ‚o Media path: Åšcieżka multimediów: Select drive from list Wybierz noÅ›nik z listy Load disc ZaÅ‚aduj dysk Track Details Szczegóły pliku Title: TytuÅ‚: Audio track: Plik audio: Subtitle track: PodtytuÅ‚ pliku: HH:mm:ss.z GG:mm:ss.z Clip Range Zakres klipu Start point: PoczÄ…tek: Set start point Ustaw punkt poczÄ…tkowy Jump to start point Przejdź do punktu koÅ„cowego End point: Koniec: Set end point Dodaj punkt koÅ„cowy Jump to end point Przejdź do punktu koÅ„cowego MediaPlugin.MediaClipSelectorForm No path was given Brak Å›cieżki Given path does not exists Podana Å›cieżka nie istnieje An error happened during initialization of VLC player WystÄ…piÅ‚ błąd podczas uruchamiania odtwarzacza VLC VLC player failed playing the media Odtwarzacz VLC nie odtworzyÅ‚ poprawnie pliku. CD not loaded correctly CD nie zostaÅ‚a zaÅ‚adowana poprawnie The CD was not loaded correctly, please re-load and try again. PÅ‚yta CD nie zostaÅ‚a zaÅ‚adowana poprawnie, proszÄ™ spróbuj ponownie. DVD not loaded correctly DVD nie zostaÅ‚a zaÅ‚adowana poprawnie The DVD was not loaded correctly, please re-load and try again. PÅ‚yta DVD nie zostaÅ‚a zaÅ‚adowana poprawnie, proszÄ™ spróbuj ponownie. Set name of mediaclip Wpisz nazwÄ™ klipu Name of mediaclip: Nazwa klipu: Enter a valid name or cancel Wpisz poprawnÄ… nazwÄ™ lub anuluj Invalid character NieprawidÅ‚owy znak The name of the mediaclip must not contain the character ":" Nazwa klipu nie może zawierać znaku ":" MediaPlugin.MediaItem Select Media Wybierz multimedia You must select a media file to delete. Musisz zaznaczyć plik do usuniÄ™cia. You must select a media file to replace the background with. Musisz zaznaczyć plik, by użyć go jako tÅ‚o. There was a problem replacing your background, the media file "%s" no longer exists. WystÄ…piÅ‚ problem ze zmianÄ… tÅ‚a, plik "%s" nie istnieje. Missing Media File BrakujÄ…cy plik multimedialny The file %s no longer exists. Plik %s nie istnieje Videos (%s);;Audio (%s);;%s (*) Wideo (%s);;Audio (%s);;%s (*) There was no display item to amend. Brak projektora. Unsupported File NieobsÅ‚ugiwany plik Use Player: Użyj odtwarzacza: VLC player required Odtwarzacz VLC wymagany VLC player required for playback of optical devices Odtwarzacz VLC jest wymagany do odtwarzania urzÄ…dzeÅ„ Load CD/DVD ZaÅ‚aduj CD/DVD Load CD/DVD - only supported when VLC is installed and enabled ZaÅ‚aduj CD/DVD - jedynie, gdy VLC jest zainstalowane i aktywowane The optical disc %s is no longer available. Dysk optyczny %s nie jest już dostÄ™pny. Mediaclip already saved Klip zostaÅ‚ już zapisany This mediaclip has already been saved Ten klip zostaÅ‚ już zapisany MediaPlugin.MediaTab Allow media player to be overridden Pokaż wybór odtwarzacza w Multimediach Start Live items automatically Odtwarzaj automatycznie OPenLP.MainWindow &Projector Manager P&rojektory OpenLP Image Files Pliki obrazów Information Informacja Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Format Biblii zostaÅ‚ zmieniony Musisz uaktualnić istniejÄ…ce Biblie. Czy OpenLP ma to zrobić teraz? Backup Kopia zapasowa OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP zostaÅ‚o zaktualizowane. Czy chcesz utworzyć kopiÄ™ zapasowÄ… danych OpenLP? Backup of the data folder failed! Nie udaÅ‚o siÄ™ stworzyć kopii zapasowej! A backup of the data folder has been created at %s Kopia zapasowa zostaÅ‚a utworzona w %s Open Otwórz OpenLP.AboutForm Credits ZasÅ‚ugi License Licencja build %s zbuduj %s 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; version 2 of the License. Ten program jest wolnym oprogramowaniem; możesz go rozpowszechniać i/lub modyfikować pod warunkami Powszechnej Licencji Publicznej GNU, wydanej przez FundacjÄ™ Wolnego Oprogramowania - wedÅ‚ug wersji drugiej tej Licencji. 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 below for more details. Program zostaÅ‚ rozpowszechniony z nadziejÄ…, iż bÄ™dzie on użyteczny, lecz BEZ Å»ADNEJ GWARANCJI; nawet bez sugerowania HANDLOWEJ gwarancji lub PRZYDATNOÅšCI DO OKREÅšLONEGO CELU. WiÄ™cej informacji poniżej. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - OtwartoźródÅ‚owy Menadżer PieÅ›ni OpenLP jest wolnym programem do obsÅ‚ugi multimediów w koÅ›ciele. Umożliwia on wyÅ›wietlanie pieÅ›ni, prezentacji, tekstów biblijnych, filmów, zdjęć, a nawet prezentacji (jeÅ›li Impress, PowerPoint lub PowerPoint Viewer jest zainstalowany). Dowiedz siÄ™ wiÄ™cej o OpenLP: http://openlp.org/ OpenLP jest pisany i wspierany przez wolontariuszy. JeÅ›li chciaÅ‚byÅ›, aby powstawaÅ‚o wiÄ™cej wolnych, chrzeÅ›cijaÅ„skich programów, proszÄ™ rozważ współpracÄ™ przez naciÅ›niÄ™cie poniższego przycisku. Volunteer ChcÄ™ pomóc! Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Ustawienia interfejsu Number of recent files to display: Liczba ostatnio wyÅ›wietlanych plików: Remember active media manager tab on startup ZapamiÄ™taj aktywnÄ… kartÄ™ menedżera multimediów przy starcie Double-click to send items straight to live Kliknij podwójnie, aby wyÅ›wietlić element na ekranie Expand new service items on creation RozwiÅ„ nowe elementy w planie nabożeÅ„stwa Enable application exit confirmation Włącz potwierdzenie wyjÅ›cia z programu Mouse Cursor Kursor myszy Hide mouse cursor when over display window Ukryj kursor myszy, gdy jest na ekranie Default Image DomyÅ›lny obraz Background color: Kolor tÅ‚a: Image file: Plik obrazu: Open File Otwórz plik Advanced Zaawansowane Preview items when clicked in Media Manager PodglÄ…d klikniÄ™tych elementów w menedżerze multimediów Browse for an image file to display. Wybierz obrazek do wyÅ›wietlania Revert to the default OpenLP logo. Przywróć domyÅ›lne logo OpenLP Default Service Name DomyÅ›lna nazwa planu nabożeÅ„stwa Enable default service name Ustaw domyÅ›lnÄ… nazwÄ™ planu nabożeÅ„stwa Date and Time: Czas i data: Monday PoniedziaÅ‚ek Tuesday Wtorek Wednesday Åšroda Friday PiÄ…tek Saturday Sobota Sunday Niedziela Now Teraz Time when usual service starts. Standardowa godzina rozpoczÄ™cia. Name: Nazwa: Consult the OpenLP manual for usage. Zaznajom siÄ™ z instrukcjÄ… obsÅ‚ugi OpenLP. Revert to the default service name "%s". Przywróć domyÅ›lnÄ… nazwÄ™: "%s" Example: PrzykÅ‚ad: Bypass X11 Window Manager PomiÅ„ menadżer okien X11 Syntax error. Błąd skÅ‚adni. Data Location Lokalizacja danych Current path: Aktualna Å›cieżka: Custom path: Inna Å›cieżka: Browse for new data file location. Wybierz nowÄ… lokalizacjÄ™ bazy OpenLP Set the data location to the default. Przywróć domyÅ›lnÄ… Å›cieżkÄ™ do bazy OpenLP Cancel Anuluj Cancel OpenLP data directory location change. Anuluj zmianÄ™ lokalizacji katalogu OpenLP. Copy data to new location. Skopiuj dane do nowej lokalizacji. Copy the OpenLP data files to the new location. Skopiuj pliki danych OpenLP do nowej lokalizacji. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>Uwaga:</strong> Nowa lokalizacja katalogu danych zawiera dane z plikami OpenLP. Te pliki bÄ™dÄ… zastÄ…pione podczas kopiowania. Data Directory Error Błąd katalogu danych Select Data Directory Location Zaznacz katalog lokalizacji danych Confirm Data Directory Change Potwierdź zmianÄ™ katalogu plików Reset Data Directory Zresetuj katalog z danymi Overwrite Existing Data Nadpisz istniejÄ…ce dane OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. JeÅ›li nowa lokalizacja jest na zewnÄ™trznym urzÄ…dzeniu, to musi być ono podłączone. NaciÅ›nij "Nie", aby zatrzymać Å‚adowanie programu. DziÄ™ki temu bÄ™dziesz mógÅ‚ naprawić problem. NaciÅ›nij "Tak", aby zresetować katalog z danymi w domyÅ›lnej lokalizacji. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Czy jesteÅ› pewien, że chcesz zmienić lokalizacjÄ™ katalogu OpenLP z danymi na: %s Katalog z danymi zostanie zmieniony jak OpenLP zostanie zamkniÄ™ty. Thursday Czwartek Display Workarounds Ustawienia ekranu Use alternating row colours in lists Zastosuj naprzemienne kolory rzÄ™dów WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? UWAGA: Wybrana lokalizacja %s zawiera pliki z danymi OpenLP. Czy chcesz zastÄ…pić te pliki aktualnymi plikami danych? Restart Required Wymagany restart This change will only take effect once OpenLP has been restarted. Zmiany bÄ™dÄ… zastosowane po ponownym uruchomieniu OpenLP. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Czy jesteÅ› pewien, że chcesz zmienić lokalizacjÄ™ katalogu z danymi OpenLP na domyÅ›lne? Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamkniÄ™ty. OpenLP.ColorButton Click to select a color. Kliknij aby wybrać kolor OpenLP.DB RGB RGB Video Wideo Digital Cyfrowy Storage Network Sieć RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Wideo 1 Video 2 Wideo 2 Video 3 Wideo 3 Video 4 Wideo 4 Video 5 Wideo 5 Video 6 Wideo 6 Video 7 Wideo 7 Video 8 Wideo 8 Video 9 Wideo 9 Digital 1 Cyfrowy 1 Digital 2 Cyfrowy 2 Digital 3 Cyfrowy 3 Digital 4 Cyfrowy 4 Digital 5 Cyfrowy 5 Digital 6 Cyfrowy 6 Digital 7 Cyfrowy 7 Digital 8 Cyfrowy 8 Digital 9 Cyfrowy 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Sieć 1 Network 2 Sieć 2 Network 3 Sieć 3 Network 4 Sieć 4 Network 5 Sieć 5 Network 6 Sieć 6 Network 7 Sieć 7 Network 8 Sieć 8 Network 9 Sieć 9 OpenLP.ExceptionDialog Error Occurred WystÄ…piÅ‚ błąd Send E-Mail WyÅ›lij e-mail Save to File Zapisz do pliku Attach File Dołącz plik Description characters to enter : %s Wpisz jeszcze przynajmniej %s znaków. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Platforma: %s Save Crash Report Zapisz raport o awarii Text files (*.txt *.log *.text) Pliki tekstowe (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Zmiana nazwy pliku New File Name: Nowa nazwa pliku: File Copy Kopiuj plik OpenLP.FirstTimeLanguageForm Select Translation Wybierz jÄ™zyk Choose the translation you'd like to use in OpenLP. Wybierz jÄ™zyk, którego chcesz używać w OpenLP. Translation: JÄ™zyk: OpenLP.FirstTimeWizard Songs PieÅ›ni First Time Wizard Kreator pierwszego uruchomienia Welcome to the First Time Wizard Witaj w kreatorze pierwszego uruchomienia Activate required Plugins Aktywuj wymagane wtyczki Select the Plugins you wish to use. Wybierz wtyczki, których chcesz używać. Bible Biblia Images Obrazy Presentations Prezentacje Media (Audio and Video) Multimedia (pliki audio i wideo) Allow remote access Zezwól na zdalny dostÄ™p Monitor Song Usage Statystyki użycia pieÅ›ni Allow Alerts Komunikaty Default Settings Ustawienia domyÅ›lne Downloading %s... Pobieranie %s... Enabling selected plugins... Aktywowanie wybranych wtyczek... No Internet Connection Brak połączenia z Internetem Unable to detect an Internet connection. Nie można wykryć połączenia internetowego. Sample Songs PrzykÅ‚adowe pieÅ›ni Select and download public domain songs. Zaznacz i pobierz pieÅ›ni ww danych jÄ™zykach Sample Bibles PrzykÅ‚adowe Biblie Select and download free Bibles. Zaznacz i pobierz darmowe Biblie. Sample Themes PrzykÅ‚adowe motywy Select and download sample themes. Zaznacz i pobierz przykÅ‚adowe motywy. Set up default settings to be used by OpenLP. Ustal domyÅ›lne ustawienia dla OpenLP. Default output display: DomyÅ›lny ekran wyjÅ›ciowy: Select default theme: Wybierz domyÅ›lny motyw: Starting configuration process... Rozpoczynanie procesu konfiguracji... Setting Up And Downloading Konfigurowanie i Pobieranie Please wait while OpenLP is set up and your data is downloaded. ProszÄ™ czekać - OpenLP konfiguruje i pobiera dane Setting Up Konfigurowanie Custom Slides Slajdy tekstowe Finish ZakoÅ„czenie No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Brak połączenia internetowego. Kreator pierwszego uruchomienia potrzebuje połączenia z internetem, aby móc pobierać przykÅ‚adowe pieÅ›ni, Biblie i motywy. NaciÅ›nij przycisk ZakoÅ„cz, aby włączyć OpenLP z wstÄ™pnymi ustawieniami, bez przykÅ‚adowych danych. Aby uruchomić Kreator pierwszego uruchomienia i zaimportować przykÅ‚adowe dane później, sprawdź połączenie internetowe i uruchom ponownie ten kreator przez zaznaczanie "NarzÄ™dzia/Włącz kreator pierwszego uruchomienia" w OpenLP. Download Error Błąd pobierania There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. WystÄ…piÅ‚ problem połączenia internetowego podczas pobierania, wiÄ™c pominiÄ™to pobieranie kolejnych plików. Spróbuj później uruchomić kreator pierwszego uruchomienia ponownie. Download complete. Click the %s button to return to OpenLP. Pobieranie zakoÅ„czone. Kliknij przycisk %s, by wrócić do OpenLP. Download complete. Click the %s button to start OpenLP. Pobieranie zakoÅ„czone. Kliknij przycisk %s, by uruchomić OpenLP. Click the %s button to return to OpenLP. Kliknij przycisk %s, by wrócić do OpenLP. Click the %s button to start OpenLP. Kliknij przycisk %s, by uruchomić OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. WystÄ…piÅ‚ problem połączenia internetowego podczas pobierania, wiÄ™c pominiÄ™to pobieranie kolejnych plików. Spróbuj później uruchomić kreator pierwszego uruchomienia ponownie. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Ten kreator pomoże ci wstÄ™pnie skonfigurować OpenLP. Kliknij przycisk %s, by rozpocząć. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. By anulować kreatora pierwszego uruchomienia caÅ‚kowicie (i nie uruchamiać OpenLP), wciÅ›nij teraz przycisk %s. Downloading Resource Index Pobieranie źródeÅ‚ Please wait while the resource index is downloaded. ProszÄ™ czekać, aż źródÅ‚a zostanÄ… pobrane zostanie pobrany Please wait while OpenLP downloads the resource index file... ProszÄ™ czekać, OpenLP pobiera plik indeksujÄ…cy zasoby... Downloading and Configuring Pobieranie i Konfiguracja Please wait while resources are downloaded and OpenLP is configured. ProszÄ™ czekać, zasoby sÄ… pobierane i OpenLP jest konfigurowany. Network Error Błąd sieci There was a network error attempting to connect to retrieve initial configuration information WystÄ…piÅ‚ błąd sieci. Próba ponownego połączenia z sieciÄ… by pobrać informacje o konfiguracji poczÄ…tkowej. Cancel Anuluj Unable to download some files Nie można pobrać niektórych plików OpenLP.FormattingTagDialog Configure Formatting Tags Konfiguracja znaczniki formatowania Description Opis Tag Znacznik Start HTML PoczÄ…tek HTML End HTML Koniec HTML Default Formatting DomyÅ›lne formatowanie Custom Formatting Dodatkowe formatowanie OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error Błąd walidacji Description is missing Brak opisu Tag is missing Brak tagu Tag %s already defined. Znacznik %s już zostaÅ‚ zdefiniowany. Description %s already defined. Opis %s zostaÅ‚ już zdeklarowany. Start tag %s is not valid HTML Tag %s nie odpowiada HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Czerwony Black Czarny Blue Niebieski Yellow Żółty Green Zielony Pink Różowy Orange PomaraÅ„czowy Purple Fioletowy White BiaÅ‚y Superscript Indeks górny Subscript Indeks dolny Paragraph Paragraf Bold Pogrubienie Italics Kursywa Underline PodkreÅ›lenie Break Przerwa OpenLP.GeneralTab General Ogólne Monitors Ekrany Select monitor for output display: Wybierz ekran wyjÅ›ciowy: Display if a single screen WyÅ›wietl, jeÅ›li jest tylko jeden ekran Application Startup Start programu Show blank screen warning Pokazuj ostrzeżenia o wygaszonym ekranie Automatically open the last service Automatycznie otwórz ostatni plan nabożeÅ„stwa Show the splash screen Pokaż ekran powitalny Application Settings Ustawienia OpenLP Prompt to save before starting a new service Proponuj zapisanie przed tworzeniem nowego planu Automatically preview next item in service Automatyczny podglÄ…d nastÄ™pnego elementu planu nabożeÅ„stwa sec sek CCLI Details Szczegóły CCLI SongSelect username: Użytkownik SongSelect: SongSelect password: HasÅ‚o SongSelect: X X Y Y Height Wysokość Width Szerokość Check for updates to OpenLP Sprawdź aktualizacje OpenLP Unblank display when adding new live item Wyłącz wygaszenie ekranu podczas wyÅ›wietlania nowego elementu na ekranie Timed slide interval: Czas zmieniania slajdów: Background Audio Muzyka w tle Start background audio paused Rozpocznij granie muzyki w tle Service Item Slide Limits Elementy graniczne planu Override display position: Ustaw poÅ‚ożenie obrazu: Repeat track list Powtarzaj listÄ™ utworów Behavior of next/previous on the last/first slide: Zachowanie akcji nastÄ™pny/poprzedni w ostatnim/pierwszym slajdzie: &Remain on Slide Pozostaw ten slajd &Wrap around &Od poczÄ…tku &Move to next/previous service item PrzenieÅ› do nastÄ™pnego/poprzedniego elementu nabożeÅ„stwa OpenLP.LanguageManager Language JÄ™zyk Please restart OpenLP to use your new language setting. Aby użyć nowego jÄ™zyka uruchom ponownie OpenLP. OpenLP.MainDisplay OpenLP Display WyÅ›wietlacz OpenLP OpenLP.MainWindow &File &Plik &Import &Importuj &Export &Eksportuj &View &Widok M&ode &Tryb &Tools &NarzÄ™dzia &Settings &Ustawienia &Language &JÄ™zyk &Help Pomo&c Service Manager Plan NabożeÅ„stwa Theme Manager Motywy Open an existing service. Otwórz istniejÄ…cy plan nabożeÅ„stwa Save the current service to disk. Zapisz obecny plan nabożeÅ„stwa na dysk. Save Service As Zapisz plan nabożeÅ„stwa jako Save the current service under a new name. Zapisz bieżący plan nabożeÅ„stwa pod nowÄ… nazwÄ… E&xit &WyjÅ›cie Quit OpenLP Wyjdź z OpenLP &Theme &Motyw &Configure OpenLP... Konfiguruj &OpenLP... &Media Manager &Multimedia Toggle Media Manager Przełącz menedżera multimediów Toggle the visibility of the media manager. Przełącz widoczność menedżera multimediów. &Theme Manager Moty&wy Toggle Theme Manager Przełącz menedżera motywów. Toggle the visibility of the theme manager. Przełącz widoczność menedżera motywów. &Service Manager Plan &nabożeÅ„stw Toggle Service Manager Przełącz menedżera planu nabożeÅ„stwa Toggle the visibility of the service manager. Przełącz widoczność menedżera planu nabożeÅ„stwa. &Preview Panel Panel p&odglÄ…du Toggle Preview Panel Przełącz panel podglÄ…du Toggle the visibility of the preview panel. Przełącz widoczność panelu podglÄ…du. &Live Panel Panel &ekranu Toggle Live Panel Przełącz panel ekranu Toggle the visibility of the live panel. Przełącz widoczność panelu ekranu. List the Plugins Lista wtyczek &User Guide PodrÄ™cznik użytkownika &About &O programie More information about OpenLP WiÄ™cej informacji o OpenLP &Online Help &Pomoc online &Web Site &Strona internetowa Use the system language, if available. Użyj jÄ™zyka systemu, jeÅ›li jest dostÄ™pny. Set the interface language to %s Ustaw jÄ™zyk interfejsu na %s Add &Tool... Dodaj narzÄ™dzie... Add an application to the list of tools. Dodaj aplikacjÄ™ do listy narzÄ™dzi. &Default &DomyÅ›lny Set the view mode back to the default. Przywróć tryb podglÄ…du do domyÅ›lnych ustawieÅ„. &Setup &Start Set the view mode to Setup. Ustaw tryb widoku w konfiguracji. &Live &Ekran Set the view mode to Live. Ustaw tryb widoku na ekranie. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Wersja %s OpenLP jest teraz dostÄ™pna do pobrania (obecnie używasz wersji %s). Możesz pobrać najnowszÄ… wersjÄ™ z http://openlp.org/. OpenLP Version Updated Wersja OpenLP zaktualizowana OpenLP Main Display Blanked Główny Ekran OpenLP Wygaszony The Main Display has been blanked out Główny Ekran zostaÅ‚ odłączony Default Theme: %s DomyÅ›lny motyw: %s English Please add the name of your language here Polish Configure &Shortcuts... Konfiguruj &skróty... Open &Data Folder... &Otwórz katalog programu... Open the folder where songs, bibles and other data resides. Otwórz folder w którym pieÅ›ni, Biblie i inne dane sÄ… przechowywane. &Autodetect &Wykryj automatycznie Update Theme Images Aktualizuj obrazy motywów Update the preview images for all themes. Zaktualizuj obrazy podglÄ…du dla wszystkich motywów. Print the current service. Drukuj bieżący plan nabożeÅ„stwa L&ock Panels &Zablokuj panele Prevent the panels being moved. Zapobiegaj przenoszeniu paneli. Re-run First Time Wizard Włącz kreator pierwszego uruchomienia Re-run the First Time Wizard, importing songs, Bibles and themes. Włączanie kreatora pierwszego uruchomienia, importowanie pieÅ›ni, Biblii i motywów. Re-run First Time Wizard? Czy uruchomić kreator pierwszego uruchomienia? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Czy jesteÅ› pewien, że chcesz ponownie włączyć kreator pierwszego uruchomienia? Uruchamianie go ponownie może spowodować zmiany w obecnej konfiguracji OpenLP, dodać pieÅ›ni do istniejÄ…cej już bazy i zmienić domyÅ›lny motyw. Clear List Clear List of recent files Wyczyść listÄ™ Clear the list of recent files. Wyczyść listÄ™ ostatnich plików. Configure &Formatting Tags... &Konfiguruj znaczniki formatowania... Export OpenLP settings to a specified *.config file Eksportuj ustawienia OpenLP do okreÅ›lonego pliku *.config Settings Ustawienia Import OpenLP settings from a specified *.config file previously exported on this or another machine Importuj ustawienia OpenLP z okreÅ›lonego pliku *.config, wczeÅ›niej wyeksportowanego na tym, bÄ…dź innym urzÄ…dzeniu. Import settings? Importować ustawienia? Open File Otwórz plik OpenLP Export Settings Files (*.conf) Wyeksportowane pliki ustawieÅ„ OpenLP (*.conf) Import settings Importowanie ustawieÅ„ OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP teraz siÄ™ wyłączy. Importowane ustawienia bÄ™dÄ… zastosowane nastÄ™pnym razem po włączeniu OpenLP Export Settings File Eksportowanie ustawieÅ„ OpenLP Export Settings File (*.conf) Eksport pliku ustawieÅ„ OpenLP (*.conf) New Data Directory Error Błąd nowego katalogu z danymi Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopiowanie danych OpenLP do nowej lokalizacji - %s - ProszÄ™ zaczekać, aż zakoÅ„czenie OpenLP Data directory copy failed %s Kopiowanie katalogu z danymi zakoÅ„czone niepowodzeniem %s General Ogólne Library Katalog Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. JesteÅ› pewien, że chcesz importować ustawienia? Importowane ustawienia mogÄ… trwale zmienić konfiguracjÄ™ OpenLP. Importowanie błędnych ustawiaÅ„ może objawiać siÄ™ niepoprawnym dziaÅ‚aniem OpenLP. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Wybrany plik nie wydaje siÄ™ być poprawnym plikiem ustawieÅ„ OpenLP Proces zostaÅ‚ zatrzymany i nie wykonano żadnych zmian. Projector Manager Projektory Toggle Projector Manager Przełącz menedżer projektorów Toggle the visibility of the Projector Manager Przełącz widoczność menedżera projektorów Export setting error Błąd eksportu ustawieÅ„ The key "%s" does not have a default value so it will be skipped in this export. Klucz "%s" nie posiada domyÅ›lnej wartoÅ›ci, wiÄ™c zostanie pominiÄ™ty w tym eksporcie. An error occurred while exporting the settings: %s WystÄ…piÅ‚ błąd podczas eksportowania ustawieÅ„: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error Błąd bazy danych The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Wczytywana baza danych zostaÅ‚a stworzona we wczeÅ›niejszych wersjach OpenLP. Wersja bazy danych: %d, podczas gdy OpenLP przewiduje wersji %d. Baza danych nie zostanie wczytana. Baza danych: %s OpenLP cannot load your database. Database: %s OpenLP nie może wczytać Twojej bazy danych. Baza danych: %s OpenLP.MediaManagerItem No Items Selected Nie wybrano żadnych pozycji &Add to selected Service Item Dodaj do zaznaczonego elementu planu nabożeÅ„stwa You must select one or more items to preview. Musisz zaznaczyć przynajmniej jeden element, aby uruchomić podglÄ…d. You must select one or more items to send live. Musisz zaznaczyć przynajmniej jeden element, aby pokazać go na ekranie. You must select one or more items. Musisz zaznaczyć jeden lub wiÄ™cej elementów. You must select an existing service item to add to. Musisz wybrać istniejÄ…cÄ… pozycjÄ™, by jÄ… dodać. Invalid Service Item NiewÅ‚aÅ›ciwy element planu You must select a %s service item. Musisz zaznaczyć %s element planu nabożeÅ„stwa. You must select one or more items to add. Musisz zaznaczyć jeden lub wiÄ™cej elementów, aby go dodać. No Search Results Brak wyników wyszukiwania Invalid File Type ZÅ‚y rodzaj pliku Invalid File %s. Suffix not supported NiewÅ‚aÅ›ciwy plik %s. NieobsÅ‚ugiwany przyrostek. &Clone &Kopiuj Duplicate files were found on import and were ignored. PowtarzajÄ…ce siÄ™ pliki zostaÅ‚y znalezione i zignorowane. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Brakuje znacznika <lyrics>. <verse> tag is missing. Brakuje znacznika <verse>. OpenLP.PJLink1 Unknown status Nieznany status No message Brak wiadomoÅ›ci Error while sending data to projector Błąd podczas wysyÅ‚ania danych do projektora Undefined command: Niezdefiniowana komenda: OpenLP.PlayerTab Players Odtwarzacze Available Media Players DostÄ™pne odtwarzacze Player Search Order Hierarchia odtwarzaczy Visible background for videos with aspect ratio different to screen. Jest to tÅ‚o dla filmów o innych proporcjach niż ekran. %s (unavailable) %s (niedostÄ™pny) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details Wtyczka szczegółów Status: Status: Active Aktywny Inactive Nieaktywny %s (Inactive) %s (Nieaktywny) %s (Active) %s (Aktywny) %s (Disabled) %s (Uszkodzony) Manage Plugins OpenLP.PrintServiceDialog Fit Page Dopasuj do strony Fit Width Dopasuj do szerokoÅ›ci OpenLP.PrintServiceForm Options Opcje Copy Kopiuj Copy as HTML Kopiuj jako HTML Zoom In PowiÄ™ksz Zoom Out Pomniejsz Zoom Original Oryginalny rozmiar Other Options Inne opcje Include slide text if available Wydrukuj również slajd z tekstem, jeÅ›li dostÄ™pny Include service item notes Wydrukuj również notatki Include play length of media items Wydrukuj również czas trwania filmów Add page break before each text item Dodaj stronÄ™ przerwy przed każdÄ… pozycjÄ… tekstowÄ… Service Sheet Plan nabożeÅ„stwa Print Drukuj Title: TytuÅ‚: Custom Footer Text: Niestandardowy tekst stopki: OpenLP.ProjectorConstants OK OK General projector error Błąd ogólny projektora Not connected error Błąd braku połączenia Lamp error Błąd lampy Fan error Błąd wiatraka High temperature detected Wykryta wysoka temperatura Cover open detected Wykryto otwartÄ… pokrywÄ™ Check filter Sprawdź filtr Authentication Error Błąd autoryzacji Undefined Command Niezdefiniowana komenda Invalid Parameter NieprawidÅ‚owy parametr Projector Busy Projektor zajÄ™ty Projector/Display Error Błąd projektora/wyÅ›wietlacza Invalid packet received NieprawidÅ‚owy pakiet Warning condition detected Wykryto stan ostrzegawczy Error condition detected Wykryto stan błędu PJLink class not supported Klasa PJlink nie jest wspierana Invalid prefix character NieprawidÅ‚owy znak przedrostka The connection was refused by the peer (or timed out) Połączenie zostaÅ‚o odrzucone przez serwer (bÄ…dź przekroczono limit czasowy) The remote host closed the connection Serwer przerwaÅ‚ połączenie The host address was not found Nie znaleziono serwera The socket operation failed because the application lacked the required privileges DziaÅ‚anie socketu zakoÅ„czone niepowodzeniem przez brak wymaganych uprawnieÅ„ The local system ran out of resources (e.g., too many sockets) System wykorzystaÅ‚ caÅ‚e zasoby (np. za dużo socketów) The socket operation timed out DziaÅ‚anie socketu przekroczyÅ‚o limit czasu The datagram was larger than the operating system's limit Dane byÅ‚y wiÄ™ksze niż limit systemu operacyjnego An error occurred with the network (Possibly someone pulled the plug?) WystÄ…piÅ‚ błąd z sieciÄ… (możliwe, że ktoÅ› wyciÄ…gnÄ…Å‚ wtyczkÄ™?) The address specified with socket.bind() is already in use and was set to be exclusive Adres ustalony przez socket.bind() jest w użyciu, a zostaÅ‚ ustawiony jako unikalny The address specified to socket.bind() does not belong to the host Adres ustalony do socket.bind() nie należy do gospodarza The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) To dziaÅ‚anie socketu nie jest obsÅ‚ugiwane na lokalnym systemie operacyjnym (np. brak wsparcia dla IPv6) The socket is using a proxy, and the proxy requires authentication Socket używa proxy, a proxy wymaga uwierzytelnienia The SSL/TLS handshake failed Handshake SSL/TLS zakoÅ„czony niepowodzeniem The last operation attempted has not finished yet (still in progress in the background) Poprzednia próba wykonania nie skoÅ„czyÅ‚a siÄ™ jeszcze (wciąż dziaÅ‚a w tle) Could not contact the proxy server because the connection to that server was denied Połączenie z serwerem proxy zakoÅ„czone niepowodzeniem, ponieważ połączenie z serwerem zostaÅ‚o odrzucone The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Połączenie z serwerem proxy zostaÅ‚o niespodziewanie zakoÅ„czone (wczeÅ›niej połączenie z serwerem byÅ‚o ustanowione) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Przekroczono limit czasowy połączenia z serwerem proxy, albo serwer przestaÅ‚ odpowiadać w trakcie uwierzytelniania. The proxy address set with setProxy() was not found Adres proxy ustanowiony przez setProxy() nie zostaÅ‚ odnaleziony An unidentified error occurred WystÄ…piÅ‚ nieokreÅ›lony błąd Not connected Niepołączono Connecting ÅÄ…czenie Connected Połączono Getting status Otrzymywanie statusu Off WyÅ‚. Initialize in progress Uruchamianie trwa Power in standby Awaryjne zasilanie Warmup in progress Power is on Zasilanie jest włączone Cooldown in progress Trwa chÅ‚odzenie Projector Information available DostÄ™pne informacje o projektorze Sending data WysyÅ‚anie danych Received data Otrzymano dane The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Próba połączenia z serwerem proxy zakoÅ„czyÅ‚a siÄ™ niepowodzeniem, dlatego, że odpowiedź serwera nie może zostać zrozumiana OpenLP.ProjectorEdit Name Not Set Nie ustawiono nazwy You must enter a name for this entry.<br />Please enter a new name for this entry. Musisz wprowadzić nazwÄ™. Duplicate Name Powielona nazwa OpenLP.ProjectorEditForm Add New Projector Dodaj nowy projektor Edit Projector Edytuj projektor IP Address Adres IP Port Number Numer portu PIN PIN Name Nazwa Location Lokalizacja Notes Notatki Database Error Błąd bazy danych There was an error saving projector information. See the log for the error WystÄ…piÅ‚ problem podczas zapisywania informacji o projektorze. Zobacz na log błędu. OpenLP.ProjectorManager Add Projector Dodaj projektor Add a new projector Dodaj nowy projektor Edit Projector Edytuj projektor Edit selected projector Edytuj wybrany projektor Delete Projector UsuÅ„ projektor Delete selected projector UsuÅ„ wybrany projektor Select Input Source Wybierz źródÅ‚o wejÅ›cia Choose input source on selected projector Wybierz źródÅ‚o wejÅ›cia do wybranego projektora View Projector Widok projektora View selected projector information Widok wybranego projektora Connect to selected projector Połącz z wybranym projektorem Connect to selected projectors Połącz z wybranymi projektorami Disconnect from selected projectors Odłącz od wybranych projektorów Disconnect from selected projector Odłącz od wybranego projektora Power on selected projector Włącz wybrany projektor Standby selected projector UÅ›pij wybrany projektor Put selected projector in standby UÅ›pij wybrany projektor Blank selected projector screen WygaÅ› ekran wybranego projektora Show selected projector screen Pokaż obraz wybranego projektora &View Projector Information &Widok informacji o projektorze &Edit Projector &Edytuj projektor &Connect Projector &Połącz z projektorem D&isconnect Projector &Odłącz projektor Power &On Projector Włącz projektor Power O&ff Projector Wyłącz projektor Select &Input Wybierz źródÅ‚o Edit Input Source Edytuj źródÅ‚o wejÅ›cia &Blank Projector Screen &WygaÅ› ekran projektora &Show Projector Screen &Pokaż ekran projektora &Delete Projector &UsuÅ„ projektor Name Nazwa IP IP Port Port Notes Notatki Projector information not available at this time. Informacje o projektorze nie sÄ… w tej chwili dostÄ™pne Projector Name Nazwa projektora Manufacturer Producent Model Model Other info Inne informacje Power status Status zasilania Shutter is Closed ZamkniÄ™ty Current source input is Obecnym źródÅ‚em jest Lamp Lampa On WÅ‚. Off WyÅ‚. Hours Godzin No current errors or warnings Obecnie brak błędów/ostrzeżeÅ„ Current errors/warnings Obecne błędy/ostrzeżenia Projector Information Informacje o projektorze No message Brak wiadomoÅ›ci Not Implemented Yet Jeszcze nie zastosowano Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Wiatrak Lamp Lampa Temperature Temperatura Cover Filter Filtr Other Inne OpenLP.ProjectorTab Projector Projektor Communication Options Opcje komunikacji Connect to projectors on startup Połącz z projektorami przy uruchomieniu programu Socket timeout (seconds) Limit czasu socketu (sekundy): Poll time (seconds) Czas odpytywania (sekundy): Tabbed dialog box Okno dialogowe z kartami Single dialog box Pojedyncze okno dialogowe OpenLP.ProjectorWizard Duplicate IP Address Powiel adres IP Invalid IP Address NieprawidÅ‚owy adres IP Invalid Port Number NiewÅ‚aÅ›ciwy numer portu OpenLP.ScreenList Screen Ekran primary główny OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>DÅ‚ugość</strong>: %s [slide %d] [slajd %d] OpenLP.ServiceItemEditForm Reorder Service Item ZmieÅ„ kolejność pozycji w planie nabożeÅ„stwa OpenLP.ServiceManager Move to &top PrzenieÅ› na górÄ™ Move item to the top of the service. PrzenieÅ› pozycjÄ™ na górÄ™ listy Move &up PrzenieÅ› wyżej Move item up one position in the service. PrzenieÅ› element o jeden w górÄ™ Move &down PrzenieÅ› niżej Move item down one position in the service. PrzenieÅ› element o jeden w dół Move to &bottom PrzenieÅ› na dół Move item to the end of the service. PrzenieÅ› pozycjÄ™ na dół listy &Delete From Service &UsuÅ„ z planu Delete the selected item from the service. UsuÅ„ wybranÄ… pozycjÄ™ z planu &Add New Item Dodaj nowÄ… pozycjÄ™ &Add to Selected Item Dodaj do wybranej pozycji &Edit Item &Edytuj element &Reorder Item &ZmieÅ„ kolejność &Notes &Notatki &Change Item Theme ZmieÅ„ &motyw dla elementu File is not a valid service. Plik nie odpowiada planowi nabożeÅ„stwa. Missing Display Handler Brak sterownika wyÅ›wietlacza Your item cannot be displayed as there is no handler to display it Pozycja nie może zostać wyÅ›wietlona, jeÅ›li nie ma wÅ‚aÅ›ciwych sterowników Your item cannot be displayed as the plugin required to display it is missing or inactive Pozycja nie może zostać wyÅ›wietlona, jeÅ›li brakuje wymaganej wtyczki lub jest nieaktywna &Expand all RozwiÅ„ wszystko Expand all the service items. RozwiÅ„ wszystkie pozycje planu &Collapse all ZwiÅ„ wszystko Collapse all the service items. ZwiÅ„ wszystkie pozycje planu Open File Otwórz plik Moves the selection down the window. PrzesuÅ„ zaznaczenie w dół okna. Move up PrzesuÅ„ w górÄ™ Moves the selection up the window. PrzesuÅ„ zaznaczenie w górÄ™ okna. Go Live WyÅ›wietl na ekranie Send the selected item to Live. WyÅ›wietl wybranÄ… pozycjÄ™ na ekranie &Start Time Czas startu Show &Preview &PodglÄ…d Modified Service Zmodyfikowany plan The current service has been modified. Would you like to save this service? Bieżący plan nabożeÅ„stwa zostaÅ‚ zmodyfikowany. Czy chciaÅ‚byÅ› go zapisać? Custom Service Notes: Notatki z planu Notes: Notatki Playing time: Czas odtwarzania: Untitled Service Plan bez tytuÅ‚u File could not be opened because it is corrupt. Plik nie może być otwarty, ponieważ jest uszkodzony. Empty File Pusty plik This service file does not contain any data. Ten plik nie zawiera danych. Corrupt File Uszkodzony plik Load an existing service. Otwórz istniejÄ…cy plan nabożeÅ„stwa Save this service. Zapisz plan nabożeÅ„stwa Select a theme for the service. Wybierz motyw dla planu nabożeÅ„stwa Slide theme Motyw slajdu Notes Notatki Edit Edytuj Service copy only Plan tylko do kopiowania Error Saving File Błąd zapisywania pliku There was an error saving your file. Błąd w zapisywaniu Twojego pliku. Service File(s) Missing Brakuje pliku planu nabożeÅ„stw &Rename... &ZmieÅ„ nazwÄ™ Create New &Custom Slide Utwórz nowy &slajd tekstowy &Auto play slides &Auto odtwarzanie pokazu slajdów Auto play slides &Loop Automatyczne przełączanie slajdów &ZapÄ™tl Auto play slides &Once Automatyczne przełączanie slajdów &Raz &Delay between slides &Opóźnienie pomiÄ™dzy slajdami OpenLP Service Files (*.osz *.oszl) Pliki planu nabożeÅ„stw OpenLP (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) Pliki planu nabożeÅ„stw OpenLP (*.osz);; Pliki planu nabożeÅ„stw OpenLP -lite (*.oszl) OpenLP Service Files (*.osz);; Pliki planu nabożeÅ„stw OpenLP (*.osz);; File is not a valid service. The content encoding is not UTF-8. NieprawidÅ‚owy plik planu nabożeÅ„stwa. Treść pliku nie zawiera UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Plan nabożeÅ„stwa, który chcesz otworzyć, jest w starym formacie. ProszÄ™, zapisz go za pomocÄ… OpenLP 2.0.2 lub nowszym. This file is either corrupt or it is not an OpenLP 2 service file. Ten plik jest uszkodzony lub nie jest planem nabożeÅ„stwa OpenLP 2. &Auto Start - inactive &Auto Start - nieaktywny &Auto Start - active &Auto Start - aktywny Input delay Opóźnienie źródÅ‚a Delay between slides in seconds. Opóźnienie miÄ™dzy slajdami w sekundach Rename item title ZmieÅ„ nazwÄ™ elementu Title: TytuÅ‚: An error occurred while writing the service file: %s WystÄ…piÅ‚ błąd podczas zapisywania pliku nabożeÅ„stwa : %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Brak nastÄ™pujÄ…cych elementów nabożeÅ„stwa: %s ZostanÄ… one usuniÄ™te, jeÅ›li bÄ™dziesz kontynuowaÅ‚/ OpenLP.ServiceNoteForm Service Item Notes Notatki z planu OpenLP.SettingsForm Configure OpenLP Konfiguruj OpenLP OpenLP.ShortcutListDialog Action Akcja Shortcut Skróty Duplicate Shortcut Powiel skróty The shortcut "%s" is already assigned to another action, please use a different shortcut. Skrót "%s" już jest przypisany innemu dziaÅ‚aniu, proszÄ™ użyć innego skrótu Alternate ZastÄ™pca Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Wybierz akcjÄ™ i wciÅ›nij jeden z przycisków poniżej, by tworzyć odpowiednio podstawowe i alternatywne skróty. Default DomyÅ›lny Custom Niestandardowy Capture shortcut. Stwórz skróty. Restore the default shortcut of this action. Przywróć domyÅ›lny skrót tej akcji. Restore Default Shortcuts Przywróć domyÅ›lne skróty Do you want to restore all shortcuts to their defaults? Czy chcesz przywrócić domyÅ›lne skróty? Configure Shortcuts Konfiguruj skróty OpenLP.SlideController Hide Ukryj Go To Idź do Blank Screen WygaÅ› Ekran Blank to Theme Pokaż motyw Show Desktop Pokaż pulpit Previous Service Poprzedni plan Next Service NastÄ™pny plan Escape Item Przerwij wyÅ›wietlanie Move to previous. Przejdź do poprzedniego Move to next. Przejdź do kolejnego Play Slides Uruchom slajdy Delay between slides in seconds. Opóźnienie miÄ™dzy slajdami w sekundach Move to live. WyÅ›wietl na ekranie Add to Service. Dodaj do planu nabożeÅ„stwa Edit and reload song preview. Edytuj i zaÅ‚aduj ponownie podglÄ…d pieÅ›ni. Start playing media. Zacznij odtwarzanie multimediów. Pause audio. Przerwij audio. Pause playing media. Przerwij odtwarzanie multimediów. Stop playing media. Zatrzymaj odtwarzanie multimediów. Video position. Element wideo. Audio Volume. GÅ‚oÅ›ność. Go to "Verse" Idź do "Zwrotka" Go to "Chorus" Idź do "Refren" Go to "Bridge" Idź do "Bridge" Go to "Pre-Chorus" Idź do "Pre-Chorus" Go to "Intro" Idź do "WejÅ›cie" Go to "Ending" Idź do "ZakoÅ„czenie" Go to "Other" Idź do "Inne" Previous Slide Poprzedni slajd Next Slide NastÄ™pny slajd Pause Audio Przerwij audio Background Audio Muzyka w tle Go to next audio track. Przejdź do nastÄ™pnego utworu. Tracks Utwór OpenLP.SourceSelectForm Select Projector Source Wybierz źródÅ‚o projektora Edit Projector Source Text Edytuj tekst źródÅ‚a projektora Ignoring current changes and return to OpenLP Anuluj zmiany i wróć do OpenLP Delete all user-defined text and revert to PJLink default text UsuÅ„ caÅ‚y tekst zdefiniowany przez użytkownika i przywróć domyÅ›lny dla PJLink Discard changes and reset to previous user-defined text Anuluj zmiany i przywróć poprzednio podany tekst Save changes and return to OpenLP Zapisz zmiany i wróć do OpenLP Delete entries for this projector UsuÅ„ wpisy dla tego projektora Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Sugestie pisowni Formatting Tags Znaczniki formatowania Language: JÄ™zyk: OpenLP.StartTimeForm Theme Layout UkÅ‚ad motywu The blue box shows the main area. Niebieski kolor wyznacza główny obszar. The red box shows the footer. Czerwony kolor wyznacza stopkÄ™. OpenLP.StartTime_form Item Start and Finish Time Czas rozpoczÄ™cia i zakoÅ„czenia Hours: Godziny: Minutes: Minuty: Seconds: Sekundy: Start RozpoczÄ™cie Finish ZakoÅ„czenie Length DÅ‚ugość Time Validation Error Błąd weryfikacji czasu Finish time is set after the end of the media item Czas zakoÅ„czenia jest ustawiony po zakoÅ„czeniu multimediów Start time is after the finish time of the media item Czas rozpoczÄ™cia jest ustawiony po zakoÅ„czeniu multimediów OpenLP.ThemeForm (approximately %d lines per slide) (maksymalnie %d linijek na slajd) OpenLP.ThemeManager Create a new theme. Stwórz nowy motyw Edit Theme Edytuj motyw Edit a theme. Edytuj motyw Delete Theme UsuÅ„ motyw Delete a theme. UsuÅ„ motyw Import Theme Importuj motyw Import a theme. Importuj motyw Export Theme Eksportuj motyw Export a theme. Eksportuj motyw &Edit Theme &Edytuj motyw &Delete Theme &UsuÅ„ motyw Set As &Global Default Ustaw jako &domyÅ›lny %s (default) %s (domyÅ›lny) You must select a theme to edit. Musisz zaznaczyć motyw do edycji. You are unable to delete the default theme. Nie możesz usunąć domyÅ›lnego motywu. You have not selected a theme. Nie wybraÅ‚eÅ› motywu. Save Theme - (%s) Zapisz motyw -(%s) Theme Exported Motyw wyeksportowano Your theme has been successfully exported. Motyw zostaÅ‚ pomyÅ›lnie wyeksportowany. Theme Export Failed Eksport motywu siÄ™ nie powiódÅ‚. Select Theme Import File Wybierz plik importu motywu File is not a valid theme. Plik nie jest wÅ‚aÅ›ciwym motywem. &Copy Theme &Kopiuj motyw &Rename Theme &ZmieÅ„ nazwÄ™ motywu &Export Theme Eksportuj &motyw You must select a theme to rename. Musisz zaznaczyć motyw, aby zmienić jego nazwÄ™. Rename Confirmation Potwierdzenie zmiany nazwy Rename %s theme? Zmienić nazwÄ™ motywu %s? You must select a theme to delete. Musisz zaznaczyć motywy do usuniÄ™cia. Delete Confirmation UsuÅ„ potwierdzenie Delete %s theme? Usunąć motyw %s? Validation Error Błąd walidacji A theme with this name already exists. Motyw o tej nazwie już istnieje. Copy of %s Copy of <theme name> Kopia %s Theme Already Exists Motyw już istnieje Theme %s already exists. Do you want to replace it? Motyw %s już istnieje. Czy chcesz go zastÄ…pić? The theme export failed because this error occurred: %s Eksport motywów siÄ™ nie powiódÅ‚ z powodu błędu: %s OpenLP Themes (*.otz) Motywy OpenLP (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Kreator Motywów Welcome to the Theme Wizard Witaj w kreatorze motywów Set Up Background Ustaw tÅ‚o Set up your theme's background according to the parameters below. Ustaw tÅ‚o motywu stosownie do poniższych parametrów. Background type: Typ tÅ‚a: Gradient Gradient Gradient: Gradient: Horizontal Poziomo Vertical Pionowo Circular PierÅ›cieniowy Top Left - Bottom Right Górne lewo - Dolne prawo Bottom Left - Top Right Dolne lewo - Górne prawo Main Area Font Details Szczegóły czcionki głównego obszaru Define the font and display characteristics for the Display text Zdefiniuj czcionkÄ™ i wyznacz wÅ‚aÅ›ciwoÅ›ci wyÅ›wietlanego tekstu Font: Czcionka: Size: Rozmiar: Line Spacing: OdstÄ™py miÄ™dzy linijkami: &Outline: Kontur: &Shadow: CieÅ„: Bold Pogrubienie Italic Kursywa Footer Area Font Details Szczegóły czcionki obszaru stopki Define the font and display characteristics for the Footer text Zdefiniuj czcionki i wyÅ›wietlane wÅ‚aÅ›ciwoÅ›ci stopki Text Formatting Details Szczegóły formatowania tekstu Allows additional display formatting information to be defined Pozwala na edycjÄ™ dodatkowych parametrów formatowania tekstu. Horizontal Align: Wyrównanie poziome: Left Do lewej Right Do prawej Center Do Å›rodka Output Area Locations Lokalizacje obszaru wyjÅ›ciowego &Main Area Obszar &główny &Use default location &Użyj domyÅ›lnej lokalizacji X position: pozycja X: px px Y position: pozycja Y: Width: Szerokość: Height: Wysokość: Use default location Użyj domyÅ›lnej lokalizacji Theme name: Nazwa motywu: Edit Theme - %s Edytuj motyw - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Ten kreator pomoże ci tworzyć i edytować motywy. Kliknij "dalej", aby zacząć ten proces od ustawienia tÅ‚a. Transitions: PrzejÅ›cia: &Footer Area Obszar &stopki Starting color: Kolor poczÄ…tkowy: Ending color: Kolor koÅ„cowy: Background color: Kolor tÅ‚a: Justify Justuj Layout Preview PodglÄ…d ukÅ‚adu Transparent Przezroczysty Preview and Save PodglÄ…d i Zapis Preview the theme and save it. PodglÄ…d i zapisz motyw. Background Image Empty Pusty obraz tÅ‚a Select Image Wybierz obraz Theme Name Missing BrakujÄ…ca nazwa motywu There is no name for this theme. Please enter one. Ten motyw nie ma nazwy. ProszÄ™, wpisz jakÄ…Å›. Theme Name Invalid NiewÅ‚aÅ›ciwa nazwa motywu Invalid theme name. Please enter one. NiewÅ‚aÅ›ciwa nazwa motywu. ProszÄ™, wpisz jakÄ…Å›. Solid color Jednolity kolor color: kolor: Allows you to change and move the Main and Footer areas. Pozwala zmieniać i przenosić obszar główny i stopkÄ™. You have not selected a background image. Please select one before continuing. Nie podaÅ‚eÅ› obrazka tÅ‚a. ProszÄ™, wybierz jeden zanim kontynuujesz. OpenLP.ThemesTab Global Theme DomyÅ›lny motyw Theme Level Poziom motywu S&ong Level Poziom pieÅ›ni Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Używa motywu każdej pieÅ›ni z bazy danych. JeÅ›li pieśń nie ma przypisanego motywu, używa motywu nabożeÅ„stwa. JeÅ›li nabożeÅ„stwo nie ma motywu, używa motywu domyÅ›lnego. &Service Level Poziom nabożeÅ„stwa Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Używa motywu przypisanego nabożeÅ„stwu ignorujÄ…c indywidualne motywy pieÅ›ni. JeÅ›li nabożeÅ„stwo nie ma motywu, używa motywu domyÅ›lnego. &Global Level Poziom globalny Use the global theme, overriding any themes associated with either the service or the songs. Użyj motywu domyÅ›lnego ignorujÄ…c motyw przypisany nabożeÅ„stwu lub pieÅ›ni. Themes Motywy Universal Settings Ustawienia ogólne &Wrap footer text &Ukryj tekst stopki OpenLP.Ui Delete the selected item. UsuÅ„ zaznaczonÄ… pozycjÄ™ Move selection up one position. PrzenieÅ› zaznaczony w górÄ™ Move selection down one position. PrzenieÅ› zaznaczony w dół &Vertical Align: Wyrównanie pionowe: Finished import. Importowanie zakoÅ„czone. Format: Format: Importing Importowanie Importing "%s"... Importowanie "%s"... Select Import Source Wybierz źródÅ‚o importu Select the import format and the location to import from. Wybierz format importu i jego lokalizacjÄ™. Open %s File Otwórz plik %s %p% %p% Ready. Gotowy. Starting import... Zaczynanie importowania... You need to specify at least one %s file to import from. A file type e.g. OpenSong Musisz okreÅ›lić przynajmniej jeden %s plik do importowania. Welcome to the Bible Import Wizard Witamy w Kreatorze Importu Biblii Welcome to the Song Export Wizard Witamy w Kreatorze Eksportu PieÅ›ni Welcome to the Song Import Wizard Witamy w Kreatorze Importu PieÅ›ni Author Singular Autor Authors Plural Autorzy © Copyright symbol. © Song Maintenance ZarzÄ…dzanie pieÅ›niami Topic Singular Temat Topics Plural Tematy Title and/or verses not found TytuÅ‚ lub wersety nie zostaÅ‚y znalezione XML syntax error Błąd skÅ‚adni XML Welcome to the Bible Upgrade Wizard Witaj w Kreatorze Aktualizowania Biblii Open %s Folder Otwórz folder %s You need to specify one %s file to import from. A file type e.g. OpenSong Musisz sprecyzować plik %s, by z niego importować. You need to specify one %s folder to import from. A song format e.g. PowerSong Musisz podać jeden %s katalog, aby importować z niego. Importing Songs Importowanie pieÅ›ni Welcome to the Duplicate Song Removal Wizard Witaj w Kreatorze Usuwania Duplikatów PieÅ›ni Written by Napisane przez Author Unknown Autor nieznany About Informacje &Add &Dodaj Add group Dodaj grupÄ™ Advanced Zaawansowane All Files Wszystkie pliki Automatic Automatycznie Background Color Kolor tÅ‚a Bottom Dół Browse... Szukaj... Cancel Anuluj CCLI number: Numer CCLI: Create a new service. Stwórz nowy plan nabożeÅ„stwa Confirm Delete Potwierdź usuwanie Continuous Tekst ciÄ…gÅ‚y Default DomyÅ›lny Default Color: DomyÅ›lny kolor: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Plan %Y-%m-%d %H-%M &Delete &UsuÅ„ Display style: Styl wyÅ›wietlania: Duplicate Error Błąd powielania &Edit &Edytuj Empty Field Puste pole Error Błąd Export Eksport File Plik File Not Found Nie znaleziono pliku File %s not found. Please try selecting it individually. Plik %s nie zostaÅ‚ znaleziony.⎠ProszÄ™ zaznaczyć go rÄ™cznie. pt Abbreviated font pointsize unit Help Pomoc h The abbreviated unit for hours h Invalid Folder Selected Singular Zaznaczono niewÅ‚aÅ›ciwy katalog Invalid File Selected Singular Zaznaczono niewÅ‚aÅ›ciwy plik Invalid Files Selected Plural Zaznaczono niewÅ‚aÅ›ciwe pliki Image Obraz Import Import Layout style: UkÅ‚ad: Live Ekran Live Background Error Błąd ekranu głównego Live Toolbar Pasek narzÄ™dzi ekranu głównego Load Åaduj Manufacturer Singular Producent Manufacturers Plural Producenci Model Singular Model Models Plural Modele m The abbreviated unit for minutes m Middle Åšrodek New Nowy New Service Nowy plan nabożeÅ„stwa New Theme Nowy motyw Next Track NastÄ™pny utwór No Folder Selected Singular Nie zaznaczono żadnego katalogu No File Selected Singular Nie zaznaczono pliku No Files Selected Plural Nie zaznaczono plików No Item Selected Singular Nie zaznaczono żadnego elementu No Items Selected Plural Nie wybrano żadnych pozycji OpenLP is already running. Do you wish to continue? OpenLP jest włączone. Czy chcesz kontynuować? Open service. Otwórz plan nabożeÅ„stwa. Play Slides in Loop Odtwarzaj slajdy w kółko Play Slides to End Odtwórz slajdy do koÅ„ca Preview PodglÄ…d Print Service Drukuj plan nabożeÅ„stwa Projector Singular Projektor Projectors Plural Projektory Replace Background ZastÄ…p tÅ‚o Replace live background. ZastÄ…p tÅ‚o ekranu głównego Reset Background Resetuj tÅ‚o Reset live background. Resetuj tÅ‚o ekranu głównego s The abbreviated unit for seconds s Save && Preview Zapisz && PodglÄ…d Search Szukaj Search Themes... Search bar place holder text Przeszukaj motywy... You must select an item to delete. Musisz wybrać pozycjÄ™ do usuniÄ™cia You must select an item to edit. Musisz wybrać pozycjÄ™ do edycji Settings Ustawienia Save Service Zapisz plan nabożeÅ„stwa Service Plan Optional &Split &Opcjonalny podziaÅ‚ Split a slide into two only if it does not fit on the screen as one slide. Podziel slajd na dwa, jeÅ›li tekst nie zmieÅ›ci siÄ™ na jednym. Start %s Start %s Stop Play Slides in Loop ZakoÅ„cz odtwarzanie slajdów w kółko Stop Play Slides to End ZakoÅ„cz odtwarzanie slajdów do koÅ„ca Theme Singular Motyw Themes Plural Motywy Tools NarzÄ™dzia Top Góra Unsupported File NieobsÅ‚ugiwany plik Verse Per Slide Werset na slajd Verse Per Line Werset na linijkÄ™ Version Wersja View Widok View Mode Tryb widoku CCLI song number: Numer CCLI pieÅ›ni: Preview Toolbar Pasek narzÄ™dzi PodglÄ…du OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s i %s %s, and %s Locale list separator: end %s, i %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Interfejs wybory źródÅ‚a: PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Wtyczka Prezentacji</strong><br />Wtyczka Prezentacji zapewnia możliwość przedstawiania prezentacji za pomocÄ… wielu programów. Wybór odpowiedniego programu prezentacji jest udostÄ™pniony użytkownikowi na liÅ›cie wyboru. Presentation name singular Prezentacja Presentations name plural Prezentacje Presentations container title Prezentacje Load a new presentation. Wczytaj nowÄ… prezentacjÄ™ Delete the selected presentation. UsuÅ„ zaznaczonÄ… prezentacjÄ™ Preview the selected presentation. PodglÄ…d zaznaczonej prezentacji Send the selected presentation live. WyÅ›wietl prezentacjÄ™ na ekranie Add the selected presentation to the service. Dodaj zaznaczonÄ… prezentacjÄ™ do planu nabożeÅ„stwa PresentationPlugin.MediaItem Select Presentation(s) Zaznacz prezentacjÄ™ Automatic Automatycznie Present using: Użyj programu: File Exists Plik istnieje A presentation with that filename already exists. Prezentacja o tej nazwie już istnieje. This type of presentation is not supported. Ten typ prezentacji nie jest obsÅ‚ugiwany. Presentations (%s) Prezentacje (%s) Missing Presentation BrakujÄ…ca prezentacja The presentation %s is incomplete, please reload. Prezentacja %s jest niekompletna, proszÄ™ wczytaj ponownie. The presentation %s no longer exists. Prezentacja %s już nie istnieje. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. WystÄ…piÅ‚ błąd we współpracy z Powerpointem i prezentacja zostanie zatrzymana. Uruchom jÄ… ponownie, jeÅ›li chcesz jÄ… zaprezentować. PresentationPlugin.PresentationTab Available Controllers Używane oprogramowanie prezentacji %s (unavailable) %s (niedostÄ™pny) Allow presentation application to be overridden Pokaż wybór programu w Prezentacjach PDF options Opcje PDF Use given full path for mudraw or ghostscript binary: Użyj poniższej Å›cieżki do programu mudraw lub ghostscript: Select mudraw or ghostscript binary. Zaznacz program mudraw albo ghostscript. The program is not ghostscript or mudraw which is required. Nie wybraÅ‚eÅ› ani programu ghostscript, ani mudraw. PowerPoint options Opcje PowerPoint Clicking on a selected slide in the slidecontroller advances to next effect. KlikniÄ™cie na zaznaczony slajd powoduje wyÅ›wietlenie kolejnego slajdu. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Pozwól programowi PowerPoint kontrolować wielkość i pozycjÄ™ okna prezentacji (obejÅ›cie problemu skalowania w Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Wtyczka OpenLP Zdalny</strong><br />Wtyczka OpenLP Zdalny umożliwia przełączanie i wyÅ›wietlanie slajdów, wysyÅ‚anie komunikatów na różnych urzÄ…dzeniach przez przeglÄ…darkÄ™, bÄ…dź przez zdalne API. Remote name singular Zdalny dostÄ™p Remotes name plural Zdalne Remote container title Zdalny dostÄ™p Server Config Change Zmiana konfiguracji serwera Server configuration changes will require a restart to take effect. Zmiana ustawieÅ„ wymaga RemotePlugin.Mobile Service Manager Plan NabożeÅ„stwa Slide Controller Slajdy Alerts Komunikaty Search Szukaj Home Home Refresh OdÅ›wież Blank WygaÅ› Theme Motyw Desktop Pulpit Show Pokaż Prev Poprzedni Next NastÄ™pny Text Tekst Show Alert WyÅ›wietl Go Live WyÅ›wietl na ekranie Add to Service Dodaj do Planu NabożeÅ„stwa Add &amp; Go to Service Add &amp; Go to Service No Results Brak wyników Options Opcje Service Plan Slides Slajdy Settings Ustawienia Remote Zdalny dostÄ™p Stage View Scena Live View Ekran RemotePlugin.RemoteTab Serve on IP address: Adres IP: Port number: Numer portu: Server Settings Ustawienia serwera Remote URL: URL zdalnego OpenLP: Stage view URL: URL sceny: Display stage time in 12h format WyÅ›wietl czas w 12-godzinnym formacie Android App Aplikacja na Androida Live view URL: URL ekranu: HTTPS Server Serwer HTTPS Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Nie znaleziono certyfikatu SSL. Serwer HTTPS nie bÄ™dzie dostÄ™pny bez tego certyfikatu. WiÄ™cej informacji znajdziesz w instrukcji. User Authentication Uwierzytelnienie użytkownika User id: ID użytkownika: Password: HasÅ‚o: Show thumbnails of non-text slides in remote and stage view. Pokaż miniaturki graficznych slajdów w zdalnym OpenLP. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Zeskanuj kod QR lub kliknij <a href="%s">pobierz</a>, aby zainstalować aplikacjÄ™ z Google Play. SongUsagePlugin &Song Usage Tracking Statystyki &używania pieÅ›ni &Delete Tracking Data &UsuÅ„ dotychczasowe dane Delete song usage data up to a specified date. UsuÅ„ dane użycia piosenki do okreÅ›lonej daty. &Extract Tracking Data &Eksportuj dane Generate a report on song usage. Generuj raport używalnoÅ›ci pieÅ›ni. Toggle Tracking Włącz Å›ledzenie Toggle the tracking of song usage. Włącz Å›ledzenie pieÅ›ni. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Wtyczka Statystyk PieÅ›ni</strong><br />Ta wtyczka zapisuje wykorzystanie pieÅ›ni. SongUsage name singular Zastosowanie PieÅ›ni SongUsage name plural Zastosowanie PieÅ›ni SongUsage container title Zastosowanie PieÅ›ni Song Usage Zastosowanie PieÅ›ni Song usage tracking is active. Åšledzenie pieÅ›ni jest włączone Song usage tracking is inactive. Åšledzenie pieÅ›ni jest wyłączone display wyÅ›wietl printed wydrukowany SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data UsuÅ„ dane używalnoÅ›ci pieÅ›ni Delete Selected Song Usage Events? Usunąć zaznaczone wydarzenia używalnoÅ›ci pieÅ›ni? Are you sure you want to delete selected Song Usage data? Czy na pewno chcesz usunąć zaznaczone dane wykorzystania pieÅ›ni? Deletion Successful Usuwanie przebiegÅ‚o pomyÅ›lnie Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Wybierz do kiedy dane dotyczÄ…ce użycia pieÅ›ni zostanÄ… usuniÄ™te. Wszystkie dane zapisane przed tÄ… datÄ… bÄ™dÄ… nieodwracalnie usuniÄ™te. All requested data has been deleted successfully. Wszystkie wybrane pliki zostaÅ‚y pomyÅ›lnie usuniÄ™te SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Raportowanie używalnoÅ›ci pieÅ›ni Select Date Range Wybierz zakres dat to do Report Location Katalog: Output File Location Lokalizacja pliku wyjÅ›ciowego usage_detail_%s_%s.txt uzywalność_piesni_%s_%s.txt Report Creation Tworzenie raportu Report %s has been successfully created. Raport %s zostaÅ‚ pomyÅ›lnie stworzony. Output Path Not Selected Åšcieżka wyjÅ›ciowa nie jest zaznaczona You have not set a valid output location for your song usage report. Please select an existing path on your computer. Nie ustawiono wÅ‚aÅ›ciwej lokalizacji dla raportu użycia pieÅ›ni. ProszÄ™ wybrać istniejÄ…cÄ… Å›cieżkÄ™ na twoim komputerze. Report Creation Failed Niepowodzenie w tworzeniu raportu An error occurred while creating the report: %s WystÄ…piÅ‚ błąd podczas tworzenia raportu: %s SongsPlugin &Song &Pieśń Import songs using the import wizard. Importuj pieÅ›ni używajÄ…c kreatora importu. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Wtyczka PieÅ›ni</strong><br />Wtyczka pieÅ›ni zapewnia możliwość wyÅ›wietlania i zarzÄ…dzania pieÅ›niami. &Re-index Songs &Przeindeksuj pieÅ›ni Re-index the songs database to improve searching and ordering. Przeindeksuj bazÄ™ pieÅ›ni, aby przyspieszyć wyszukiwanie i porzÄ…dkowanie. Reindexing songs... Przeindeksowywanie pieÅ›ni... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding Kodowanie znaków The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Tablica znaków jest odpowiedzialna za wÅ‚aÅ›ciwe reprezentowanie znaków Zazwyczaj domyÅ›lny wybór jest najlepszy. Please choose the character encoding. The encoding is responsible for the correct character representation. ProszÄ™ wybierz kodowanie znaków. Kodowanie znaków jest odpowiedzialne za ich wÅ‚aÅ›ciwÄ… reprezentacjÄ™. Song name singular Pieśń Songs name plural PieÅ›ni Songs container title PieÅ›ni Exports songs using the export wizard. Eksportuj pieÅ›ni używajÄ…c kreatora eksportu Add a new song. Dodaj nowÄ… pieśń Edit the selected song. Edytuj wybranÄ… pieśń Delete the selected song. UsuÅ„ wybranÄ… pieśń Preview the selected song. PodglÄ…d wybranej pieÅ›ni Send the selected song live. WyÅ›wietl zaznaczonÄ… pieśń na ekranie Add the selected song to the service. Dodaj wybranÄ… pieśń do planu nabożeÅ„stwa Reindexing songs Przeindeksowywanie pieÅ›ni CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importuj pieÅ›ni z CCLI SongSelect Find &Duplicate Songs &Znajdź powtarzajÄ…ce siÄ™ pieÅ›ni Find and remove duplicate songs in the song database. Znajdź i usuÅ„ powtarzajÄ…ce siÄ™ pieÅ›ni z bazy danych. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song SÅ‚owa Music Author who wrote the music of a song Muzyka Words and Music Author who wrote both lyrics and music of a song SÅ‚owa i muzyka Translation Author who translated the song JÄ™zyk SongsPlugin.AuthorsForm Author Maintenance Spis autorów Display name: WyÅ›wietlana nazwa: First name: ImiÄ™: Last name: Nazwisko: You need to type in the first name of the author. Wpisz imiÄ™ autora. You need to type in the last name of the author. Wpisz nazwisko autora. You have not set a display name for the author, combine the first and last names? Nie ustawiÅ‚eÅ› wyÅ›wietlanej nazwy autora. Połączyć imiÄ™ i nazwisko? SongsPlugin.CCLIFileImport The file does not have a valid extension. Ten plik ma niewÅ‚aÅ›ciwe rozszerzenie. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. NiewÅ‚aÅ›ciwy plik DreamBeam. Brak tagu DreamSong. SongsPlugin.EasyWorshipSongImport Administered by %s Administrowanie przez %s "%s" could not be imported. %s "%s" nie mógÅ‚ zostać zaimportowany. %s Unexpected data formatting. Niespodziewane formatowanie danych. No song text found. Nie znaleziono testu pieÅ›ni. [above are Song Tags with notes imported from EasyWorship] [powyżej znajdujÄ… siÄ™ Znaczniki PieÅ›ni wraz z notatkami zaimportowanymi z EasyWorship] This file does not exist. Ten plik nie istnieje. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Nie znaleziono pliku "Songs.MB". Musi on siÄ™ znajdować w tym samym folderze co plik "Songs.DB". This file is not a valid EasyWorship database. Ten plik nie jest poprawnÄ… bazÄ… danych EasyWorship. Could not retrieve encoding. Nie można ustalić kodowania. SongsPlugin.EditBibleForm Meta Data Metadane Custom Book Names Nazwy ksiÄ…g SongsPlugin.EditSongForm Song Editor Edytor pieÅ›ni &Title: &TytuÅ‚: Alt&ernate title: Alternatywny tytuÅ‚: &Lyrics: SÅ‚owa: &Verse order: Kolejność zwrotek: Ed&it All Edytuj caÅ‚ość Title && Lyrics TytuÅ‚ i sÅ‚owa &Add to Song Dodaj do &pieÅ›ni &Remove &UsuÅ„ A&dd to Song D&odaj do pieÅ›ni R&emove U&suÅ„ New &Theme &Nowy motyw Copyright Information Informacje o prawach autorskich Comments Komentarze Theme, Copyright Info && Comments Motywy, prawa autorskie, komentarze Add Author Dodaj autora This author does not exist, do you want to add them? Ten autor nie istnieje, czy chcesz go dodać? This author is already in the list. Ten autor już wystÄ™puje na liÅ›cie. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Nie wybraÅ‚eÅ› wÅ‚aÅ›ciwego autora. Wybierz autora z listy lub wpisz nowego autora i wybierz "Dodaj autora do pieÅ›ni", by dodać nowego autora. Add Topic Dodaj temat This topic does not exist, do you want to add it? Ten temat nie istnieje, czy chcesz go dodać? This topic is already in the list. Ten temat już istnieje. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Nie wybraÅ‚eÅ› wÅ‚aÅ›ciwego tematu. Wybierz temat z listy lub wpisz nowy temat i wybierz "Dodaj temat pieÅ›ni", by dodać nowy temat. You need to type in a song title. Musisz podać tytuÅ‚ pieÅ›ni. You need to type in at least one verse. Musisz wpisać przynajmniej jednÄ… zwrotkÄ™. You need to have an author for this song. Musisz wpisać autora pieÅ›ni. Linked Audio Dołączone audio Add &File(s) &Dodaj plik(i) Add &Media Dodaj &multimedia Remove &All UsuÅ„ &wszystko Open File(s) Otwórz plik(i) <strong>Warning:</strong> Not all of the verses are in use. <strong>Uwaga:</strong> Nie wszystkie zwrotki sÄ… w użyciu. <strong>Warning:</strong> You have not entered a verse order. <strong>Uwaga:</strong> Nie ustaliÅ‚eÅ› kolejnoÅ›ci zwrotek. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Nie ma zwrotki o oznaczeniu "%(invalid)s". WÅ‚aÅ›ciwymi oznaczeniami sÄ…: %(valid)s. ProszÄ™, wpisz zwrotki oddzielajÄ…c je spacjÄ…. Invalid Verse Order NiewÅ‚aÅ›ciwa kolejność zwrotek &Edit Author Type &Edytuj typ autora Edit Author Type Edytuj typ autora Choose type for this author Wybierz typ dla tego autora There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Edytuj wersety &Verse type: Typ zwrotek: &Insert &Wstaw Split a slide into two by inserting a verse splitter. Podziel slajd na dwa przez dodanie rozdzielacza. SongsPlugin.ExportWizardForm Song Export Wizard Kreator Eksportu PieÅ›ni Select Songs Wybierz pieÅ›ni Check the songs you want to export. Wybierz pieÅ›ni, które chcesz eksportować. Uncheck All Odznacz wszystkie Check All Zaznacz wszystkie Select Directory Wybierz katalog Directory: Katalog: Exporting Eksportowanie Please wait while your songs are exported. ProszÄ™ czekać, trwa eksportowanie pieÅ›ni. You need to add at least one Song to export. Musisz wybrać przynajmniej jednÄ… pieśń do eksportu. No Save Location specified Nie podano lokalizacji do zapisania Starting export... Zaczynanie eksportowania... You need to specify a directory. Musisz wybrać jakiÅ› katalog. Select Destination Folder Wybierz folder docelowy Select the directory where you want the songs to be saved. Wybierz katalog, w którym chcesz zapisać pieÅ›ni. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Ten kreator pozwala eksportować pieÅ›ni do otwartoźródÅ‚owego i darmowego formatu <strong>OpenLyrics </strong> SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. NiewÅ‚aÅ›ciwy plik Foilpresenter. Nie znaleziono żadnych zwrotek. SongsPlugin.GeneralTab Enable search as you type Umożliwiaj wyszukiwanie podczas pisania SongsPlugin.ImportWizardForm Select Document/Presentation Files Wybierz pliki dokumentu/prezentacji Song Import Wizard Kreator importowania pieÅ›ni This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Ten kreator pomoże ci zaimportować pieÅ›ni z różnych formatów. Kliknij "dalej", aby zacząć proces poprzez wybieranie formatu, z którego bÄ™dziemy importować. Generic Document/Presentation Ogólny dokument/prezentacja Add Files... Dodaj pliki... Remove File(s) UsuÅ„ plik(i) Please wait while your songs are imported. ProszÄ™ czekać, trwa importowanie pieÅ›ni. Words Of Worship Song Files Pliki pieÅ›ni Słów Uwielbienia (Words of Worship) Songs Of Fellowship Song Files Pliki Songs Of Fellowship Song SongBeamer Files Pliki SongBeamer SongShow Plus Song Files Pliki SongShow Plus Song Foilpresenter Song Files Pliki pieÅ›ni Foilpresenter Copy Kopiuj Save to File Zapisz do pliku The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Importer Songs of Fellowship zostaÅ‚ zatrzymany, ponieważ OpenLP nie może uzyskać dostÄ™pu do OpenOffice lub LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Ogólny importer dokumentu/prezentacji zostaÅ‚ uznany za uszkodzony, ponieważ OpenLP nie może uzyskać dostÄ™pu do OpenOffice lub LibreOffice. OpenLyrics Files Pliki OpenLyric CCLI SongSelect Files Pliki CCLI SongSelect EasySlides XML File Pliki EasySlides XML EasyWorship Song Database Baza pieÅ›ni EasyWorship DreamBeam Song Files Pliki pieÅ›ni DreamBeam You need to specify a valid PowerSong 1.0 database folder. Musisz podać wÅ‚aÅ›ciwy folder z bazÄ… danych programu PowerSong 1.0. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Najpierw przekonwertuj swojÄ… bazÄ™ danych ZionWorx do pliku tekstowego CSV tak, jak jest wytÅ‚umaczone tutaj <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files Pliki pieÅ›ni SundayPlus This importer has been disabled. Ten importer zostaÅ‚ wyłączony. MediaShout Database Baza danych MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importer MediaShout jest wspierany jedynie na Windowsie. ZostaÅ‚ wyłączony z powodu brakujÄ…cego moduÅ‚u Pythona. JeÅ›li chcesz go użyć, to zainstaluj moduÅ‚ "pyodbc". SongPro Text Files Pliki tekstowe SongPro SongPro (Export File) SongPro (Eksport plików) In SongPro, export your songs using the File -> Export menu W SongPro, wyeksportuj pieÅ›ni używajÄ…c Plik -> Eksport EasyWorship Service File Pliki planu nabożeÅ„stwa EasyWorship WorshipCenter Pro Song Files Pliki z pieÅ›niami programu WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importer WorshipCenter Pro jest wspierany jedynie na Windowsie. ZostaÅ‚ on wyłączony ze wzglÄ™du na brakujÄ…cy moduÅ‚ Pythona. Jeżeli chcesz użyć tego importera, musisz zainstalować moduÅ‚ "pyodbc". PowerPraise Song Files Pliki z pieÅ›niami PowerPraise PresentationManager Song Files Pliki z pieÅ›niami PresentationManager ProPresenter 4 Song Files ProPresenter 4 pliki pieÅ›ni Worship Assistant Files Pliki programu Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Wyeksportuj bazÄ™ programu Worship Assistant do pliku CSV. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Wybierz pliki multimedialne Select one or more audio files from the list below, and click OK to import them into this song. Wybierz jedno lub wiÄ™cej audio z listy poniżej i wybierz OK, by importować je do tej pieÅ›ni. SongsPlugin.MediaItem Titles TytuÅ‚y Lyrics SÅ‚owa CCLI License: Licencja CCLI: Entire Song CaÅ‚a pieśń Maintain the lists of authors, topics and books. ZarzÄ…dzaj listami autorów, tematów i Å›piewników copy For song cloning kopiuj Search Titles... Przeszukaj tytuÅ‚... Search Entire Song... Przeszukaj całą pieśń... Search Lyrics... Przeszukaj sÅ‚owa pieÅ›ni... Search Authors... Przeszukaj autorów... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Nie można otworzyć bazy danych MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Eksportowanie "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. NiewÅ‚aÅ›ciwy plik OpenSong. Brak tagu pieÅ›ni. SongsPlugin.PowerSongImport No songs to import. Brak pieÅ›ni do importu. Verses not found. Missing "PART" header. Nie znaleziono zwrotek. Brakuje nagłówka "PART" No %s files found. Nie znaleziono plików %s. Invalid %s file. Unexpected byte value. NiewÅ‚aÅ›ciwy plik %s. Nieoczekiwana wartość. Invalid %s file. Missing "TITLE" header. NiewÅ‚aÅ›ciwy plik %s. BrakujÄ…cy "TYTUÅ" nagłówka. Invalid %s file. Missing "COPYRIGHTLINE" header. NiewÅ‚aÅ›ciwy plik %s. BrakujÄ…cy "PRAWAAUTORSKIE" nagłówka. SongsPlugin.SongBookForm &Name: &Nazwa: &Publisher: &Wydawca: You need to type in a name for the book. Musisz wpisać nazwÄ™ Å›piewnika. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Eksport pieÅ›ni zakoÅ„czony niepowodzeniem. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Eskport zakoÅ„czony. Aby importować te pliki, użyj <strong>OpenLyrics</strong> importera. Your song export failed because this error occurred: %s Niepowodzenie eksportu pieÅ›ni z powodu błędu: %s SongsPlugin.SongImport copyright prawa autorskie The following songs could not be imported: NastÄ™pujÄ…ce pieÅ›ni nie mogÄ… zostać importowane: Cannot access OpenOffice or LibreOffice Brak dojÅ›cia do OpenOffice lub LibreOffice Unable to open file Niemożliwy do otwarcia plik File not found Nie znaleziono pliku SongsPlugin.SongMaintenanceForm Could not add your author. Nie można dodać autora. This author already exists. Ten autor już istnieje. Could not add your topic. Temat nie mógÅ‚ zostać dodany. This topic already exists. Ten temat już istnieje. Could not add your book. Åšpiewnik nie mógÅ‚ zostać dodany. This book already exists. Ten Å›piewnik już istnieje. Could not save your changes. Nie można zapisać Twoich zmian. Could not save your modified author, because the author already exists. Nie można zapisać autora, ponieważ on już istnieje. Could not save your modified topic, because it already exists. Nie można zapisać tematu, ponieważ on już istnieje. Delete Author UsuÅ„ autora Are you sure you want to delete the selected author? Czy na pewno chcesz usunąć wybranego autora? This author cannot be deleted, they are currently assigned to at least one song. Autor nie może zostać usuniÄ™ty, jest przypisany do przynajmniej jednej pieÅ›ni. Delete Topic UsuÅ„ temat Are you sure you want to delete the selected topic? Czy na pewno chcesz usunąć wybrany temat? This topic cannot be deleted, it is currently assigned to at least one song. Temat nie może zostać usuniÄ™ty, jest przypisany do przynajmniej jednej pieÅ›ni. Delete Book UsuÅ„ Å›piewnik Are you sure you want to delete the selected book? Czy na pewno chcesz usunąć wybrany Å›piewnik? This book cannot be deleted, it is currently assigned to at least one song. Åšpiewnik nie może zostać usuniÄ™ty, jest przypisany do przynajmniej jednej pieÅ›ni. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s już istnieje. Czy chcesz pieÅ›ni autora %s przypisać istniejÄ…cemu autorowi %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Temat %s już istnieje. Czy chcesz pieÅ›ni o temacie %s przypisać istniejÄ…cemu tematowi %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Åšpiewnik %s już istnieje. Czy chcesz pieÅ›ni ze Å›piewnika %s przypisać istniejÄ…cemu Å›piewnikowi %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer Importowanie CCLI SongSelect <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Uwaga:</strong> Połączenie z internetem jest wymagane, by importować pieÅ›ni z CCLI SongSelect. Username: Nazwa użytkownika: Password: HasÅ‚o: Save username and password Zapisz nazwÄ™ użytkownika i hasÅ‚o Login Login Search Text: Wyszukaj tekst: Search Szukaj Found %s song(s) Znaleziono %s pieśń(i) Logout Wyloguj View Widok Title: TytuÅ‚: Author(s): Autor(rzy): Copyright: Prawa autorskie: CCLI Number: Numer CCLI: Lyrics: SÅ‚owa: Back Wróć Import Import More than 1000 results Ponad 1000 wyników Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Twoje wyszukiwanie przyniosÅ‚o ponad 1000 wyników, wiÄ™c zostaÅ‚o zatrzymane. ProszÄ™, dopracuj swoje wyszukiwanie, by otrzymać lepsze wyniki. Logging out... Wylogowywanie... Save Username and Password Zapisz nazwÄ™ użytkownika i hasÅ‚o WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. UWAGA: Zapisywanie nazwy użytkownika i hasÅ‚a jest NIEBEZPIECZNE, twoje hasÅ‚o jest zapisane jako ZWYKÅY TEKST. Kliknij Tak, by zapisać hasÅ‚o lub Nie, by anulować. Error Logging In Błąd logowania There was a problem logging in, perhaps your username or password is incorrect? WystÄ…piÅ‚ problem logowania, być może nazwa użytkownika lub hasÅ‚o jest niepoprawna? Song Imported PieÅ›ni zaimportowano Incomplete song Niekompletna pieśń This song is missing some information, like the lyrics, and cannot be imported. W tej pieÅ›ni czegoÅ› brakuje, np. słów, i nie może zostać zaimportowana. Your song has been imported, would you like to import more songs? Pieśń zostaÅ‚a zaimportowana, czy chcesz zaimportować ich wiÄ™cej? Stop SongsPlugin.SongsTab Songs Mode Tryb pieÅ›ni Display verses on live tool bar WyÅ›wietlaj sÅ‚owa w sekcji ekranu Update service from song edit Uaktualnij plan nabożeÅ„stwa po edycji pieÅ›ni Import missing songs from service files Importuj brakujÄ…ce pieÅ›ni z plików Display songbook in footer WyÅ›wietl nazwÄ™ Å›piewnika w stopce Display "%s" symbol before copyright info WyÅ›wietlaj symbol "%s" przed informacjÄ… o prawach autorskich SongsPlugin.TopicsForm Topic Maintenance Spis tematów Topic name: Nazwa tematu: You need to type in a topic name. Musisz wpisać nazwÄ™ tematu. SongsPlugin.VerseType Verse Zwrotka Chorus Refren Bridge Bridge Pre-Chorus Pre-Chorus Intro Intro Ending ZakoÅ„czenie Other Inne SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Błąd czytania pliku CSV Line %d: %s Linijka %d: %s Decoding error: %s Błąd dekodowania: %s File not valid WorshipAssistant CSV format. Plik niewÅ‚aÅ›ciwy wg formatu WorshipAssisant CSV. Record %d Nagraj %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Nie można połączyć z bazÄ… danych WorshipCenter Pro SongsPlugin.ZionWorxImport Error reading CSV file. Błąd czytania pliku CSV File not valid ZionWorx CSV format. Plik nie jest formatu ZionWorx CSV. Line %d: %s Linijka %d: %s Decoding error: %s Błąd dekodowania: %s Record %d Nagraj %d Wizard Wizard Kreator This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Ten kreator pomoże ci usunąć powtarzajÄ…ce siÄ™ pieÅ›ni z bazy danych. Masz możliwość przeglÄ…du każdej potencjalnie powtarzajÄ…cej siÄ™ pieÅ›ni, wiÄ™c żadna nie zostanie usuniÄ™ta bez twojej zgody. Searching for duplicate songs. Szukanie powtarzajÄ…cych siÄ™ piosenek. Please wait while your songs database is analyzed. ProszÄ™ czekać, pieÅ›ni z bazy sÄ… analizowane. Here you can decide which songs to remove and which ones to keep. Tu możesz zdecydować które pieÅ›ni usunąć, a które zachować. Review duplicate songs (%s/%s) PrzeglÄ…d powtarzajÄ…cych siÄ™ pieÅ›ni (%s/%s) Information Informacja No duplicate songs have been found in the database. Nie znaleziono żadnych powtarzajÄ…cych siÄ™ pieÅ›ni w bazie. OpenLP-2.4/resources/i18n/el.ts0000644000175000017500000162326212657640340015326 0ustar raoulraoul AlertsPlugin &Alert &Ειδοποίηση Show an alert message. Εμφάνιση ενός μηνÏματος ειδοποίησης. Alert name singular Ειδοποίηση Alerts name plural Ειδοποιήσεις Alerts container title Ειδοποιήσεις <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message Μήνυμα Ειδοποίησης Alert &text: &Κείμενο Ειδοποίησης: &New &Îέο &Save &Αποθήκευση Displ&ay ΠαÏουσί&αση Display && Cl&ose ΠαÏουσίαση && Κλ&είσιμο New Alert Îέα Ειδοποίηση &Parameter: &ΠαÏάμετÏος: No Parameter Found Δεν Î’Ïέθηκε ΠαÏάμετÏος You have not entered a parameter to be replaced. Do you want to continue anyway? Δεν έχετε εισαγάγει μια παÏάμετÏο Ï€Ïος αντικατάσταση. Θέλετε να συνεχίσετε οπωσδήποτε; No Placeholder Found Δεν Î’Ïέθηκε Σελιδοδείκτης The alert text does not contain '<>'. Do you want to continue anyway? Η ειδοποίηση δεν πεÏιέχει '<>'. Θέλετε να συνεχίσετε οπωσδήποτε; You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. Η ειδοποίηση δημιουÏγήθηκε και Ï€Ïοβλήθηκε. AlertsPlugin.AlertsTab Font ΓÏαμματοσειÏά Font name: Ονομασία γÏαμματοσειÏάς: Font color: ΧÏώμα γÏαμματοσειÏάς: Background color: ΧÏώμα φόντου: Font size: Μέγεθος γÏαμματοσειÏάς: Alert timeout: ΧÏόνος αναμονής: BiblesPlugin &Bible &Βίβλος Bible name singular Βίβλος Bibles name plural Βίβλοι Bibles container title Βίβλοι No Book Found Δεν βÏέθηκε κανένα βιβλίο No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Δεν βÏέθηκε βιβλίο που να ταιÏιάζει στην Βίβλο αυτή. Ελέγξτε την οÏθογÏαφία του βιβλίου. Import a Bible. Εισαγωγή μιας Βίβλου. Add a new Bible. ΠÏοσθήκη νέας Βίβλου. Edit the selected Bible. ΕπεξεÏγασία επιλεγμένης Βίβλου. Delete the selected Bible. ΔιαγÏαφή της επιλεγμένης Βίβλου. Preview the selected Bible. ΠÏοεπισκόπηση επιλεγμένης Βίβλου. Send the selected Bible live. ΠÏοβολή της επιλεγμένης Βίβλου. Add the selected Bible to the service. ΠÏοσθήκη της επιλεγμένης Βίβλου Ï€Ïος χÏήση. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>ΠÏόσθετο Βίβλων</strong><br />Το Ï€Ïόσθετο Βίβλων παÏέχει την δυνατότητα να εμφανίζονται εδάφια Βίβλων από διαφοÏετικές πηγές κατά την λειτουÏγία. &Upgrade older Bibles &Αναβάθμιση παλαιότεÏων Βίβλων Upgrade the Bible databases to the latest format. Αναβάθμιση της βάσης δεδομένων Βίβλων στην τελευταία μοÏφή. Genesis Γένεση Exodus Έξοδος Leviticus Λευιτικό Numbers ΑÏιθμοί Deuteronomy ΔευτεÏονόμιο Joshua ΙησοÏÏ‚ του Îαυή Judges ΚÏιτές Ruth Ρουθ 1 Samuel 1 Σαμουήλ 2 Samuel 2 Σαμουήλ 1 Kings 1 Βασιλέων 2 Kings 2 Βασιλέων 1 Chronicles 1 ΧÏονικών 2 Chronicles 2 ΧÏονικών Ezra ΈσδÏας Nehemiah Îεεμίας Esther Î•ÏƒÎ¸Î®Ï Job Ιώβ Psalms Ψαλμοί Proverbs ΠαÏοιμίες Ecclesiastes Εκκλησιαστής Song of Solomon Άσμα Ασμάτων Isaiah ΗσαÎας Jeremiah ΙεÏεμίας Lamentations ΘÏήνοι Ezekiel Ιεζεκιήλ Daniel Δανιήλ Hosea Ωσηέ Joel Ιωήλ Amos Αμώς Obadiah Î‘Î²Î´Î¹Î¿Ï Jonah Ιωνάς Micah Μιχαίας Nahum ÎαοÏμ Habakkuk ΑββακοÏμ Zephaniah Σοφονίας Haggai Αγγαίος Zechariah ΖαχαÏίας Malachi Μαλαχίας Matthew Ματθαίος Mark ΜάÏκος Luke Λουκάς John Ιωάννης Acts ΠÏάξεις Romans Ρωμαίους 1 Corinthians 1 ΚοÏινθίους 2 Corinthians 2 ΚοÏινθίους Galatians Γαλάτες Ephesians Εφεσίους Philippians Φιλιππησίους Colossians Κολοσσαείς 1 Thessalonians 1 Θεσσαλονικείς 2 Thessalonians 2 Θεσσαλονικείς 1 Timothy 1 Τιμόθεο 2 Timothy 2 Τιμόθεο Titus Τίτο Philemon Φιλήμονα Hebrews ΕβÏαίους James Ιακώβου 1 Peter 1 ΠέτÏου 2 Peter 2 ΠέτÏου 1 John 1 Ιωάννου 2 John 2 Ιωάννου 3 John 3 Ιωάννου Jude ΙοÏδα Revelation Αποκάλυψη Judith Ιουδίθ Wisdom Σοφία Σολομώντος Tobit Τωβίτ Sirach Σοφία ΣειÏάχ Baruch ΒαÏοÏχ 1 Maccabees 1 Μακκαβαίων 2 Maccabees 2 Μακκαβαίων 3 Maccabees 3 Μακκαβαίων 4 Maccabees 4 Μακκαβαίων Rest of Daniel Υπόλοιπο Δανιήλ Rest of Esther Υπόλοιπο Î•ÏƒÎ¸Î®Ï Prayer of Manasses ΠÏοσευχή του Μανασσή Letter of Jeremiah Επιστολή του ΙεÏεμία Prayer of Azariah ΠÏοσευχή ΑζαÏίου Susanna Σουσάννα Bel Βηλ 1 Esdras 1 ΈσδÏας 2 Esdras 2 ΈσδÏας : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 έως , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. ΠÏέπει να καθοÏίσετε όνομα έκδοσης για την Βίβλο σας. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ΠÏέπει να θέσετε πνευματικά δικαιώματα για την Βίβλο σας. Οι Βίβλοι στο Δημόσιο Domain Ï€Ïέπει να σημειώνονται ως δημόσιες. Bible Exists ΥπάÏχουσα Βίβλος This Bible already exists. Please import a different Bible or first delete the existing one. Αυτή η Βίβλος υπάÏχει ήδη. ΠαÏακαλοÏμε εισάγετε μια διαφοÏετική Βίβλο ή Ï€Ïώτα διαγÏάψτε την ήδη υπάÏχουσα. You need to specify a book name for "%s". ΠÏέπει να οÏίσετε όνομα βιβλίου για το "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Το όνομα βιβλίου "%s" δεν είναι σωστό. Οι αÏιθμοί μποÏοÏν να χÏησιμοποιηθοÏν μόνο στην αÏχή και Ï€Ïέπει να ακολουθοÏνται από έναν ή παÏαπάνω μη αÏιθμητικοÏÏ‚ χαÏακτήÏες. Duplicate Book Name ΑντίγÏαφο Ονομασίας Βιβλίου The Book Name "%s" has been entered more than once. Η Ονομασία Βιβλίου "%s" έχει εισαχθεί πάνω από μία φοÏές. BiblesPlugin.BibleManager Scripture Reference Error Σφάλμα ΑναφοÏάς Βίβλου Web Bible cannot be used Η Βίβλος Web δεν μποÏεί να χÏησιμοποιηθεί Text Search is not available with Web Bibles. Η Αναζήτηση Κειμένου δεν είναι διαθέσιμη με Βίβλους Web. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Δεν δώσατε λέξη Ï€Ïος αναζήτηση. ΜποÏείτε να διαχωÏίσετε διαφοÏετικές λέξεις με κενό για να αναζητήσετε για όλες τις λέξεις και μποÏείτε να τις διαχωÏίσετε με κόμμα για να αναζητήσετε για μια από αυτές. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Δεν υπάÏχουν εγκατεστημένες Βίβλοι. ΧÏησιμοποιήστε τον Οδηγό Εισαγωγής για να εγκαταστήσετε μία η πεÏισσότεÏες Βίβλους. No Bibles Available Βίβλοι Μη Διαθέσιμοι Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Η βιβλική σας παÏαπομπή είτε δεν υποστηÏίζεται από το OpenLP ή είναι ακατάλληλη. ΠαÏακαλώ επιβεβαιώστε ότι η παÏαπομπή σας συμμοÏφώνεται με ένα από τα παÏακάτω Ï€Ïότυπα ή συμβουλευτείτε το εγχειÏίδιο χÏήσης: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Εμφάνιση Εδαφίου Only show new chapter numbers Εμφάνιση μόνο των αÏιθμών νέων κεφαλαίων Bible theme: Θέμα Βίβλου: No Brackets Απουσία ΠαÏενθέσεων ( And ) ( Και ) { And } { Και } [ And ] [ Και ] Note: Changes do not affect verses already in the service. Σημείωση: Οι αλλαγές δεν επηÏεάζουν τα εδάφια που χÏησιμοποιοÏνται. Display second Bible verses Εμφάνιση εδαφίων δεÏτεÏης Βίβλου Custom Scripture References Εξατομικευμένες Βιβλικές ΠαÏαπομπές Verse Separator: ΔιαχωÏιστής Εδαφίων: Range Separator: ΔιαχωÏιστής ΕÏÏους: List Separator: ΔιαχωÏιστής Λίστας: End Mark: Σήμανση Τέλους Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. ΜποÏοÏν να οÏιστοÏν πολλαπλοί εναλλακτικοί διαχωÏιστές εδαφίων. ΠÏέπει να διαχωÏίζονται από το σÏμβολο "|". ΠαÏακαλώ σβήστε αυτή την γÏαμμή για χÏήση της Ï€ÏοκαθοÏισμένης τιμής. English Αγγλικά Default Bible Language ΠÏοεπιλεγμένη Γλώσσα Βίβλου Book name language in search field, search results and on display: Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης, στα αποτελέσματα αναζήτησης και στην εμφάνιση: Bible Language Γλώσσα Βίβλου Application Language Γλώσσα ΕφαÏμογής Show verse numbers BiblesPlugin.BookNameDialog Select Book Name Επιλέξτε Όνομα Βιβλίου Current name: ΤÏέχον όνομα: Corresponding name: Αντίστοιχο όνομα: Show Books From Εμφάνιση Βιβλίων Από Old Testament Παλαιά Διαθήκη New Testament Καινή Διαθήκη Apocrypha ΑπόκÏυφα The following book name cannot be matched up internally. Please select the corresponding name from the list. Το ακόλουθο όνομα βιβλίου δεν βÏέθηκε εσωτεÏικά. ΠαÏακαλοÏμε επιλέξτε το αντίστοιχο αγγλικό όνομα από την λίστα. BiblesPlugin.BookNameForm You need to select a book. ΠÏέπει να επιλέξετε ένα βιβλίο. BiblesPlugin.CSVBible Importing books... %s Εισαγωγή βιβλίων... %s Importing verses... done. Εισαγωγή εδαφίων... ολοκληÏώθηκε. BiblesPlugin.EditBibleForm Bible Editor Συντάκτης Βίβλου License Details ΛεπτομέÏειες Άδειας Version name: Όνομα έκδοσης: Copyright: Πνευματικά Δικαιώματα: Permissions: Άδειες: Default Bible Language ΠÏοεπιλεγμένη Γλώσσα Βίβλου Book name language in search field, search results and on display: Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης, στα αποτελέσματα αναζήτησης και στην εμφάνιση: Global Settings Καθολικές Ρυθμίσεις Bible Language Γλώσσα Βίβλου Application Language Γλώσσα ΕφαÏμογής English Αγγλικά This is a Web Download Bible. It is not possible to customize the Book Names. Αυτή είναι μία Βίβλος Κατεβασμένη από το Internet. Δεν είναι δυνατή η Ï„Ïοποποίηση των ονομάτων των Βιβλίων. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Για χÏήση των παÏαμετÏοποιημένων ονομάτων βιβλίων, η "Γλώσσα Βίβλου" Ï€Ïέπει να έχει επιλεχθεί στην καÏτέλα Meta Data, ή αν έχει επιλεχθεί το "Καθολικές Ρυθμίσεις", στην σελίδα Βίβλων του Î¼ÎµÎ½Î¿Ï Î¡Ïθμιση του OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... ΕγγÏαφή Βίβλου και φόÏτωμα βιβλίων... Registering Language... ΕγγÏαφή Γλώσσας... Importing %s... Importing <book name>... Εισαγωγή %s... Download Error Σφάλμα Λήψης There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. ΥπήÏξε ένα Ï€Ïόβλημα κατά την λήψη των επιλεγμένων εδαφίων. ΠαÏακαλοÏμε ελέγξτε την σÏνδεση στο Internet και αν αυτό το σφάλμα επανεμφανιστεί παÏακαλοÏμε σκεφτείτε να κάνετε αναφοÏά σφάλματος. Parse Error Σφάλμα Ανάλυσης There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. ΥπήÏξε Ï€Ïόβλημα κατά την εξαγωγή των επιλεγμένων εδαφίων σας. Αν αυτό το σφάλμα επανεμφανιστεί σκεφτείτε να κάνετε μια αναφοÏά σφάλματος. BiblesPlugin.ImportWizardForm Bible Import Wizard Οδηγός Εισαγωγής Βίβλου This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Ο οδηγός αυτός θα σας βοηθήσει στην εισαγωγή Βίβλων από μια ποικιλία Ï„Ïπων. Κάντε κλικ στο πλήκτÏο επόμενο παÏακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας έναν Ï„Ïπο αÏχείου Ï€Ïος εισαγωγή. Web Download Λήψη μέσω Web Location: Τοποθεσία: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Βίβλος: Download Options Επιλογές Λήψης Server: ΕξυπηÏετητής: Username: Όνομα ΧÏήστη: Password: Κωδικός: Proxy Server (Optional) ΕξυπηÏετητής Proxy (ΠÏοαιÏετικό) License Details ΛεπτομέÏειες Άδειας Set up the Bible's license details. Ρυθμίστε τις λεπτομέÏειες άδειας της Βίβλου. Version name: Όνομα έκδοσης: Copyright: Πνευματικά Δικαιώματα: Please wait while your Bible is imported. ΠαÏακαλοÏμε πεÏιμένετε όσο η Βίβλος σας εισάγεται. You need to specify a file with books of the Bible to use in the import. ΠÏέπει να καθοÏίσετε ένα αÏχείο με βιβλία της Βίβλου για να χÏησιμοποιήσετε για εισαγωγή. You need to specify a file of Bible verses to import. ΠÏέπει να καθοÏίσετε ένα αÏχείο εδαφίων της Βίβλου Ï€Ïος εισαγωγή. You need to specify a version name for your Bible. ΠÏέπει να καθοÏίσετε όνομα έκδοσης για την Βίβλο σας. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. ΠÏέπει να θέσετε πνευματικά δικαιώματα για την Βίβλο σας. Οι Βίβλοι στο Δημόσιο Domain Ï€Ïέπει να σημειώνονται ως δημόσιες. Bible Exists ΥπάÏχουσα Βίβλος This Bible already exists. Please import a different Bible or first delete the existing one. Αυτή η Βίβλος υπάÏχει ήδη. ΠαÏακαλοÏμε εισάγετε μια διαφοÏετική Βίβλο ή Ï€Ïώτα διαγÏάψτε την ήδη υπάÏχουσα. Your Bible import failed. Η εισαγωγή της Βίβλου σας απέτυχε. CSV File ΑÏχείο CSV Bibleserver ΕξυπηÏετητής Βίβλου Permissions: Άδειες: Bible file: ΑÏχείο Βίβλου: Books file: ΑÏχείο Βιβλίων: Verses file: ΑÏχείο εδαφίων: Registering Bible... ΚαταχώÏηση Βίβλου... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Download bible list Error during download An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language Επιλογή Γλώσσας OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Το OpenLP δεν μποÏεί να αναγνωÏίσει την γλώσσα αυτής της μετάφÏασης της Βίβλου. ΠαÏακαλοÏμε επιλέξτε την γλώσσα από την παÏακάτω λίστα. Language: Γλώσσα: BiblesPlugin.LanguageForm You need to choose a language. ΠÏέπει να επιλέξετε μια γλώσσα. BiblesPlugin.MediaItem Quick ΓÏήγοÏο Find: ΕÏÏεση: Book: Βιβλίο: Chapter: Κεφάλαιο: Verse: Εδάφιο: From: Από: To: Έως: Text Search Αναζήτηση Κειμένου Second: ΔεÏτεÏο: Scripture Reference ΑναφοÏά ΓÏαφής Toggle to keep or clear the previous results. Εναλλαγή διατήÏησης ή καθαÏÎ¹ÏƒÎ¼Î¿Ï Ï„Ï‰Î½ Ï€ÏοηγοÏμενων αποτελεσμάτων. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Δεν μποÏείτε να συνδυάσετε αποτελέσματα αναζητήσεων μονών και διπλών εδαφίων Βίβλου. Θέλετε να διαγÏάψετε τα αποτελέσματα αναζήτησης και να ξεκινήσετε νέα αναζήτηση; Bible not fully loaded. Βίβλος ατελώς φοÏτωμένη. Information ΠληÏοφοÏίες The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Η δεÏτεÏη Βίβλος δεν πεÏιέχει όλα τα εδάφια που υπάÏχουν στην κÏÏια Βίβλο. Θα εμφανιστοÏν μόνο τα εδάφια που βÏίσκονται και στις δÏο Βίβλους. %d εδάφια δεν έχουν συμπεÏιληφθεί στα αποτελέσματα. Search Scripture Reference... Αναζήτηση ΑναφοÏάς Βίβλου... Search Text... Αναζήτηση Κειμένου... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Είστε σίγουÏοι ότι θέλετε να διαγÏάψετε την "%s" Βίβλο από το OpenLP; Θα χÏειαστεί να την κάνετε εισαγωγή εκ νέου για να την χÏησιμοποιήσετε. Advanced Για Ï€ÏοχωÏημένους BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Δώσατε λάθος Ï„Ïπο αÏχείου Βίβλου. Οι Βίβλοι Ï„Ïπου OpenSong μποÏεί να είναι συμπιεσμένες. ΠÏέπει να τις αποσυμπιέσετε Ï€Ïιν την εισαγωγή τους. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Επιλέξτε έναν Κατάλογο ΑντιγÏάφων Ασφαλείας Bible Upgrade Wizard Οδηγός Αναβάθμισης Βίβλου This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Ο οδηγός αυτός θα σας βοηθήσει να αναβαθμίσετε τις υπάÏχουσες Βίβλους σας από μία Ï€ÏοηγοÏμενη έκδοση του OpenLP 2. Κάντε κλικ στο πλήκτÏο επόμενο παÏακάτω για να ξεκινήσετε την διαδικασία αναβάθμισης. Select Backup Directory Επιλέξτε Φάκελο ΑντιγÏάφων Ασφαλείας Please select a backup directory for your Bibles ΠαÏακαλοÏμε επιλέξτε έναν φάκελο αντιγÏάφων ασφαλείας για τις Βίβλους σας Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Οι Ï€ÏοηγοÏμενες εκδόσεις του OpenLP 2.0 δεν μποÏοÏν να χÏησιμοποιήσουν αναβαθμισμένες Βίβλους. ΕτοÏτο το εÏγαλείο θα δημιουÏγήσει αντίγÏαφο ασφαλείας των Ï„Ïεχόντων Βίβλων σας ώστε να αντιγÏάψετε απλά τα αÏχεία πίσω στον φάκελο του OpenLP αν χÏειαστείτε να γυÏίσετε σε μια Ï€ÏοηγοÏμενη έκδοση του OpenLP. Οδηγίες για το πως θα επαναφέÏετε τα αÏχεία μποÏείτε να βÏείτε στις <a href="http://wiki.openlp.org/faq"> Συχνές ΕÏωτήσεις</a>. Please select a backup location for your Bibles. ΠαÏακαλοÏμε επιλέξτε μία τοποθεσία για αντίγÏαφα ασφαλείας για τις Βίβλους σας. Backup Directory: Φάκελος ΑντιγÏάφων Ασφαλείας: There is no need to backup my Bibles Δεν είναι απαÏαίτητο να κάνω αντίγÏαφα ασφαλείας των Βίβλων μου Select Bibles Επιλογή Βίβλων Please select the Bibles to upgrade ΠαÏακαλοÏμε επιλέξτε τις Βίβλους Ï€Ïος αναβάθμιση Upgrading Αναβάθμιση Please wait while your Bibles are upgraded. ΠαÏακαλοÏμε πεÏιμένετε όσο αναβαθμίζονται οι Βίβλοι σας. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Η δημιουÏγία αντιγÏάφων ασφαλείας δεν ήταν επιτυχής. Για αντίγÏαφα ασφαλείας των Βίβλων σας χÏειάζεστε δικαιώματα εγγÏαφής στον δηλωμένο φάκελο. Upgrading Bible %s of %s: "%s" Failed Αναβάθμιση Βίβλου %s από %s: "%s" Απέτυχε Upgrading Bible %s of %s: "%s" Upgrading ... Αναβάθμιση Βίβλου %s από %s: "%s" Αναβάθμιση ... Download Error Σφάλμα Λήψης To upgrade your Web Bibles an Internet connection is required. Για αναβάθμιση των Βίβλων Web χÏειάζεστε σÏνδεση στο Internet. Upgrading Bible %s of %s: "%s" Upgrading %s ... Αναβάθμιση Βίβλου %s από %s: "%s" Αναβάθμιση %s ... Upgrading Bible %s of %s: "%s" Complete Αναβάθμιση Βίβλου %s από %s: "%s" ΟλοκληÏώθηκε , %s failed , %s απέτυχε Upgrading Bible(s): %s successful%s Αναβάθμιση Βίβλου(-ων): %s επιτυχής%s Upgrade failed. Η Αναβάθμιση απέτυχε. You need to specify a backup directory for your Bibles. ΠÏέπει να καθοÏίσετε έναν φάκελο αντιγÏάφων ασφαλείας για τις Βίβλους σας. Starting upgrade... ΈναÏξη αναβάθμισης... There are no Bibles that need to be upgraded. Δεν υπάÏχουν Βίβλοι που χÏειάζονται αναβάθμιση. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Εξατομικευμένη Διαφάνεια Custom Slides name plural Εξατομικευμένες Διαφάνειες Custom Slides container title Εξατομικευμένες Διαφάνειες Load a new custom slide. ΦόÏτωση νέας εξατομικευμένης διαφάνειας. Import a custom slide. Εισαγωγή εξατομικευμένης διαφάνειας. Add a new custom slide. ΠÏοσθήκη νέας εξατομικευμένης διαφάνειας. Edit the selected custom slide. ΕπεξεÏγασία της επιλεγμένης εξατομικευμένης διαφάνειας. Delete the selected custom slide. ΔιαγÏαφή της επιλεγμένης εξατομικευμένης διαφάνειας. Preview the selected custom slide. ΠÏοεπισκόπηση της επιλεγμένης εξατομικευμένης διαφάνειας. Send the selected custom slide live. ΠÏοβολή της επιλεγμένης εξατομικευμένης διαφάνειας. Add the selected custom slide to the service. ΠÏοσθήκη της επιλεγμένης εξατομικευμένης διαφάνειας σε λειτουÏγία. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display Εξατομικευμένη ΠÏοβολή Display footer ΠÏοβολή υποσέλιδου Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides ΕπεξεÏγασία Εξατομικευμένων Διαφανειών &Title: &Τίτλος: Add a new slide at bottom. ΠÏοσθήκη νέας διαφάνειας κάτω. Edit the selected slide. ΕπεξεÏγασία επιλεγμένης διαφάνειας. Edit all the slides at once. ΕπεξεÏγασία όλων των διαφανειών ταυτόχÏονα. Split a slide into two by inserting a slide splitter. ΧωÏίστε μια διαφάνεια σε δÏο με εισαγωγή ενός διαχωÏιστή διαφανειών. The&me: Θέ&μα: &Credits: &Πιστώσεις: You need to type in a title. ΠÏέπει να δηλώσετε έναν τίτλο. Ed&it All Ε&πεξεÏγασία Όλων Insert Slide Εισαγωγή Διαφάνειας You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide ΕπεξεÏγασία Διαφάνειας CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>ΠÏόσθετο Εικόνας</strong><br />Το Ï€Ïόσθετο εικόνας παÏέχει την Ï€Ïοβολή εικόνων.<br />Ένα από τα εξέχοντα χαÏακτηÏιστικά Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… Ï€Ïόσθετου είναι η δυνατότητα να ομαδοποιήσετε πολλές εικόνες μαζί στον διαχειÏιστή λειτουÏγίας, κάνοντας την εμφάνιση πολλών εικόνων ευκολότεÏη. Επίσης μποÏεί να κάνει χÏήση του χαÏακτηÏÎ¹ÏƒÏ„Î¹ÎºÎ¿Ï "Ï€ÏογÏαμματισμένη επανάληψη" για την δημιουÏγία παÏουσίασης διαφανειών που Ï„Ïέχει αυτόματα. ΕπιπÏόσθετα εικόνες του Ï€Ïόσθετου μποÏοÏν να χÏησιμοποιηθοÏν για παÏάκαμψη του φόντου του Ï„Ïέχοντος θέματος, το οποίο αποδίδει αντικείμενα κειμένου όπως τα Ï„ÏαγοÏδια με την επιλεγμένη εικόνα ως φόντο αντί του φόντου που παÏέχεται από το θέμα. Image name singular Εικόνα Images name plural Εικόνες Images container title Εικόνες Load a new image. ΦόÏτωση νέας εικόνας. Add a new image. ΠÏοσθήκη νέας εικόνας. Edit the selected image. ΕπεξεÏγασία επιλεγμένης εικόνας. Delete the selected image. ΔιαγÏαφή επιλεγμένης εικόνας. Preview the selected image. ΠÏοεπισκόπηση επιλεγμένης εικόνας. Send the selected image live. ΠÏοβολή της επιλεγμένης εικόνας. Add the selected image to the service. ΠÏοβολή της επιλεγμένης εικόνας σε λειτουÏγία. ImagePlugin.AddGroupForm Add group Parent group: Group name: You need to type in a group name. Could not add the new group. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Add images to group: No group Existing group New group ImagePlugin.ExceptionDialog Select Attachment Επιλογή Επισυναπτόμενου ImagePlugin.MediaItem Select Image(s) Επιλογή Εικόνας(-ων) You must select an image to replace the background with. ΠÏέπει να επιλέξετε μια εικόνα με την οποία θα αντικαταστήσετε το φόντο. Missing Image(s) ΑποÏσες Εικόνες The following image(s) no longer exist: %s Οι ακόλουθες εικόνες δεν υπάÏχουν πια: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Οι ακόλουθες εικόνες δεν υπάÏχουν πια: %s Θέλετε να Ï€Ïοσθέσετε τις άλλες εικόνες οπωσδήποτε; There was a problem replacing your background, the image file "%s" no longer exists. ΥπήÏξε Ï€Ïόβλημα κατά την αντικατάσταση του φόντου, το αÏχείο εικόνας "%s" δεν υπάÏχει πια. There was no display item to amend. Δεν υπήÏξε αντικείμενο Ï€Ïος Ï€Ïοβολή για διόÏθωση. -- Top-level group -- You must select an image or group to delete. Remove group Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. ΟÏατό φόντο για εικόνες με διαφοÏετικές αναλογίες από την οθόνη. Media.player Audio Video VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>ΠÏόσθετο Πολυμέσων</strong><br />Το Ï€Ïόσθετο πολυμέσων παÏέχει την αναπαÏαγωγή ήχου και βίντεο. Media name singular Πολυμέσα Media name plural Πολυμέσα Media container title Πολυμέσα Load new media. ΦόÏτωση νέων πολυμέσων. Add new media. ΠÏοσθήκη νέων πολυμέσων. Edit the selected media. ΕπεξεÏγασία επιλεγμένων πολυμέσων. Delete the selected media. ΔιαγÏαφή επιλεγμένων πολυμέσων. Preview the selected media. ΠÏοεπισκόπηση επιλεγμένων πολυμέσων. Send the selected media live. ΠÏοβολή επιλεγμένων πολυμέσων. Add the selected media to the service. ΠÏοσθήκη επιλεγμένων πολυμέσων σε λειτουÏγία. MediaPlugin.MediaClipSelector Select Media Clip Source Media path: Select drive from list Load disc Track Details Title: Τίτλος: Audio track: Subtitle track: HH:mm:ss.z Clip Range Start point: Set start point Jump to start point End point: Set end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given Given path does not exists An error happened during initialization of VLC player VLC player failed playing the media CD not loaded correctly The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Name of mediaclip: Enter a valid name or cancel Invalid character The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Επιλογή πολυμέσων You must select a media file to delete. ΠÏέπει να επιλέξετε ένα αÏχείο πολυμέσων για διαγÏαφή. You must select a media file to replace the background with. ΠÏέπει να επιλέξετε ένα αÏχείο πολυμέσων με το οποίο θα αντικαταστήσετε το φόντο. There was a problem replacing your background, the media file "%s" no longer exists. ΥπήÏξε Ï€Ïόβλημα κατά την αντικατάσταση του φόντου, τα αÏχεία πολυμέσων "%s" δεν υπάÏχουν πια. Missing Media File Απόντα ΑÏχεία Πολυμέσων The file %s no longer exists. Το αÏχείο %s δεν υπάÏχει πια. Videos (%s);;Audio (%s);;%s (*) Βίντεο (%s);;Ήχος (%s);;%s (*) There was no display item to amend. Δεν υπήÏξε αντικείμενο Ï€Ïος Ï€Ïοβολή για διόÏθωση. Unsupported File Μη υποστηÏιζόμενο ΑÏχείο Use Player: ΧÏήση ΠÏογÏάμματος ΑναπαÏαγωγής: VLC player required VLC player required for playback of optical devices Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. Mediaclip already saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden ΕπιτÏέψτε την παÏάκαμψη του Ï€ÏογÏάμματος αναπαÏαγωγής πολυμέσων Start Live items automatically OPenLP.MainWindow &Projector Manager OpenLP Image Files ΑÏχεία Εικόνων Information ΠληÏοφοÏίες Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Η μοÏφή των Βίβλων έχει αλλάξει. ΠÏέπει να αναβαθμίσετε τις υπάÏχουσες Βίβλους. Îα τις αναβαθμίσει το OpenLP τώÏα; Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! A backup of the data folder has been created at %s Open OpenLP.AboutForm Credits Πιστώσεις License Άδεια build %s έκδοση %s 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; version 2 of the License. Το Ï€ÏόγÏαμμα αυτό είναι δωÏεάν, μποÏείτε να κάνετε αναδιανομή ή/και να το Ï„Ïοποποιήσετε υπό τους ÏŒÏους της Γενικής Δημόσιας Άδειας GNU όπως αυτή έχει εκδοθεί από την Free Software Foundation, έκδοση 2 της Άδειας. 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 below for more details. Αυτό το Ï€ÏόγÏαμμα διανέμεται με την ελπίδα ότι θα είναι χÏήσιμο, αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ, χωÏίς καν την συνεπαγόμενη εγγÏηση ΕΜΠΟΡΙΚΟΤΗΤΑΣ ή ΧΡΗΣΗΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕÎΟ ΣΚΟΠΟ. Δείτε παÏακάτω για πεÏισσότεÏες λεπτομέÏειες. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - ΠÏόγÏαμμα ΠÏοβολής Στίχων Î‘Î½Î¿Î¹Ï‡Ï„Î¿Ï ÎšÏŽÎ´Î¹ÎºÎ± Το OpenLP είναι δωÏεάν λογισμικό Ï€Ïοβολής για εκκλησίες, ή λογισμικό Ï€Ïοβολής στίχων, που χÏησιμοποιείται για την Ï€Ïοβολή διαφανειών Ïμνων, εδαφίων Βίβλου, βίντεο, εικόνων ή ακόμη και παÏουσιάσεων (αν έχουν εγκατασταθεί το Impress, το PowerPoint ή το PowerPoint Viewer) κατά την λατÏεία της εκκλησίας με την χÏήση ενός υπολογιστή και ενός Ï€Ïοβολέα. ΑνακαλÏψτε πεÏισσότεÏα για το OpenLP: http://opnelp.org/ Το OpenLP γÏάφεται και υποστηÏίζεται από εθελοντές. Αν θα θέλατε να δείτε να γÏάφεται πεÏισσότεÏο ΧÏιστιανικό λογισμικό, παÏακαλοÏμε σκεφτείτε να συνεισφέÏετε εθελοντικά χÏησιμοποιώντας το παÏακάτω πλήκτÏο. Volunteer Εθελοντική ΠÏοσφοÏά Project Lead Developers Contributors Packagers Testers Translators Afrikaans (af) Czech (cs) Danish (da) German (de) Greek (el) English, United Kingdom (en_GB) English, South Africa (en_ZA) Spanish (es) Estonian (et) Finnish (fi) French (fr) Hungarian (hu) Indonesian (id) Japanese (ja) Norwegian BokmÃ¥l (nb) Dutch (nl) Polish (pl) Portuguese, Brazil (pt_BR) Russian (ru) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Επιλογές Διεπαφής Number of recent files to display: ΑÏιθμός Ï€Ïόσφατων αÏχείων Ï€Ïος απεικόνιση: Remember active media manager tab on startup Θυμήσου την καÏτέλα του ενεÏÎ³Î¿Ï Î´Î¹Î±Ï‡ÎµÎ¹Ïιστή πολυμέσων κατά την εκκίνηση Double-click to send items straight to live ΠÏοβολή αντικειμένου άμεσα με διπλό κλικ Expand new service items on creation Ανάπτυξη νέων αντικειμένων λειτουÏγίας κατά την δημιουÏγία Enable application exit confirmation ΕνεÏγοποίηση επιβεβαίωσης κατά την έξοδο Mouse Cursor Δείκτης Î Î¿Î½Ï„Î¹ÎºÎ¹Î¿Ï Hide mouse cursor when over display window ΑπόκÏυψη δείκτη Ï€Î¿Î½Ï„Î¹ÎºÎ¹Î¿Ï Î±Ï€ÏŒ το παÏάθυÏο Ï€Ïοβολής Default Image ΠÏοκαθοÏισμένη Εικόνα Background color: ΧÏώμα φόντου: Image file: ΑÏχείο εικόνας: Open File Άνοιγμα ΑÏχείου Advanced Για Ï€ÏοχωÏημένους Preview items when clicked in Media Manager ΠÏοεπισκόπηση αντικειμένων κατά το κλικ στον ΔιαχειÏιστή Πολυμέσων Browse for an image file to display. Αναζήτηση για αÏχείο εικόνας Ï€Ïος Ï€Ïοβολή. Revert to the default OpenLP logo. ΕπαναφοÏά στο Ï€ÏοκαθοÏισμένο λογότυπο του OpenLP. Default Service Name ΠÏοκαθοÏισμένη Ονομασία ΛειτουÏγίας Enable default service name ΕνεÏγοποίηση ΠÏοκαθοÏισμένης Ονομασίας ΛειτουÏγίας Date and Time: ΗμεÏομηνία και ÎÏα: Monday ΔευτέÏα Tuesday ΤÏίτη Wednesday ΤετάÏτη Friday ΠαÏασκευή Saturday Σάββατο Sunday ΚυÏιακή Now ΤώÏα Time when usual service starts. Συνήθης ÏŽÏα έναÏξης λειτουÏγίας. Name: Όνομα: Consult the OpenLP manual for usage. Συμβουλευτείτε το εγχειÏίδιο του OpenLP για την χÏήση. Revert to the default service name "%s". ΕπαναφοÏά στο Ï€ÏοκαθοÏισμένο όνομα λειτουÏγίας "%s" Example: ΠαÏάδειγμα: Bypass X11 Window Manager ΠαÏάκαμψη ΔιαχειÏιστή ΠαÏαθÏÏων X11 Syntax error. Σφάλμα ΣÏνταξης. Data Location Τοποθεσία Δεδομένων Current path: ΤÏέχουσα τοποθεσία: Custom path: ΠαÏαμετÏοποιημένη τοποθεσία: Browse for new data file location. Άνοιγμα πεÏιηγητή για νέα τοποθεσία αÏχείων δεδομένων. Set the data location to the default. ΟÏίστε την τοποθεσία δεδομένων στην Ï€ÏοκαθοÏισμένη τοποθεσία. Cancel ΑκÏÏωση Cancel OpenLP data directory location change. ΑκυÏώστε την αλλαγή τοποθεσίας του φακέλου δεδομένων του OpenLP. Copy data to new location. ΑντιγÏαφή δεδομένων σε νέα τοποθεσία. Copy the OpenLP data files to the new location. ΑντιγÏαφή των αÏχείων δεδομένων του OpenLP στην νέα τοποθεσία. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ΠΡΟΣΟΧΗ:</strong> Η τοποθεσία του νέου φακέλου δεδομένων πεÏιέχει τα αÏχεία δεδομένων του OpenLP. Τα αÏχεία αυτά θα αντικατασταθοÏν κατά την αντιγÏαφή. Data Directory Error Σφάλμα Φακέλου Δεδομένων Select Data Directory Location Επιλογή Τοποθεσίας Φακέλου Δεδομένων Confirm Data Directory Change Επιβεβαίωση Αλλαγής Φακέλου Δεδομένων Reset Data Directory ΕπαναφοÏά Φακέλου Δεδομένων Overwrite Existing Data Αντικατάσταση ΥπάÏχοντων Δεδομένων OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Δεν βÏέθηκε ο φάκελος δεδομένων του OpenLP. %s Ο φάκελος αυτός έχει αλλαχτεί από την Ï€ÏοκαθοÏισμένη από το Ï€ÏόγÏαμμα τοποθεσία. Αν η νέα τοποθεσία ήταν σε αφαιÏοÏμενο μέσο, το μέσο αυτό θα Ï€Ïέπει να είναι διαθέσιμο. Κάντε κλικ στο "Όχι" για να σταματήσετε την φόÏτωση του OpenLP επιτÏέποντάς σας να διοÏθώσετε το Ï€Ïόβλημα. Κάντε κλικ στο "Îαι" για να επαναφέÏετε τον φάκελο δεδομένων στην Ï€ÏοκαθοÏισμένη τοποθεσία. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Είστε σίγουÏοι ότι θέλετε να αλλάξετε την τοποθεσία του φακέλου δεδομένων στο: %s Ο φάκελος δεδομένων θα αλλαχτεί μόλις κλείσετε το OpenLP. Thursday Display Workarounds Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Είστε σίγουÏοι ότι θέλετε να αλλάξετε την τοποθεσία του φακέλου δεδομένων του OpenLP στην Ï€ÏοκαθοÏισμένη τοποθεσία; Η τοποθεσία αυτή θα χÏησιμοποιηθεί Î±Ï†Î¿Ï ÎºÎ»ÎµÎ¯ÏƒÎµÏ„Îµ το OpenLP. OpenLP.ColorButton Click to select a color. Κάντε κλικ για επιλογή χÏώματος. OpenLP.DB RGB Video Digital Storage Network RGB 1 RGB 2 RGB 3 RGB 4 RGB 5 RGB 6 RGB 7 RGB 8 RGB 9 Video 1 Video 2 Video 3 Video 4 Video 5 Video 6 Video 7 Video 8 Video 9 Digital 1 Digital 2 Digital 3 Digital 4 Digital 5 Digital 6 Digital 7 Digital 8 Digital 9 Storage 1 Storage 2 Storage 3 Storage 4 Storage 5 Storage 6 Storage 7 Storage 8 Storage 9 Network 1 Network 2 Network 3 Network 4 Network 5 Network 6 Network 7 Network 8 Network 9 OpenLP.ExceptionDialog Error Occurred ΠαÏουσιάστηκε Σφάλμα Send E-Mail Αποστολή E-Mail Save to File Αποθήκευση στο ΑÏχείο Attach File ΕπισÏναψη ΑÏχείου Description characters to enter : %s ΧαÏακτήÏες πεÏιγÏαφής Ï€Ïος εισαγωγή: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s ΠλατφόÏμα: %s Save Crash Report Αποθήκευση ΑναφοÏάς Σφάλματος Text files (*.txt *.log *.text) ΑÏχεία κειμένου (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Μετονομασία ΑÏχείου New File Name: Îέο Όνομα ΑÏχείου: File Copy ΑντιγÏαφή ΑÏχείου OpenLP.FirstTimeLanguageForm Select Translation Επιλογή ΜετάφÏασης Choose the translation you'd like to use in OpenLP. Επιλέξτε την μετάφÏαση που θέλετε να χÏησιμοποιήσετε στο OpenLP. Translation: ΜετάφÏαση: OpenLP.FirstTimeWizard Songs Ύμνοι First Time Wizard Οδηγός ΠÏώτης Εκτέλεσης Welcome to the First Time Wizard Καλώς οÏίσατε στον Οδηγό ΠÏώτης Εκτέλεσης Activate required Plugins ΕνεÏγοποίηση απαιτοÏμενων ΠÏόσθετων Select the Plugins you wish to use. Επιλέξτε τα ΠÏόσθετα που θέλετε να χÏησιμοποιήσετε. Bible Βίβλος Images Εικόνες Presentations ΠαÏουσιάσεις Media (Audio and Video) Πολυμέσα (Ήχος και Βίντεο) Allow remote access ΕπιτÏέψτε απομακÏυσμένη Ï€Ïόσβαση Monitor Song Usage Επίβλεψη ΧÏήσης ΤÏαγουδιών Allow Alerts ΕπιτÏέψτε τις Ειδοποιήσεις Default Settings ΠÏοκαθοÏισμένες Ρυθμίσεις Downloading %s... Λήψη %s... Enabling selected plugins... ΕνεÏγοποίηση των επιλεγμένων ΠÏόσθετων... No Internet Connection Καμία ΣÏνδεση ΔιαδικτÏου Unable to detect an Internet connection. Δεν μποÏεί να ανιχνευθεί σÏνδεση στο διαδίκτυο. Sample Songs Δείγματα ΤÏαγουδιών Select and download public domain songs. Επιλογή και λήψη Ï„Ïαγουδιών του δημόσιου πεδίου. Sample Bibles Δείγματα Βίβλων Select and download free Bibles. Επιλογή και λήψη δωÏεάν Βίβλων. Sample Themes Δείγματα Θεμάτων Select and download sample themes. Επιλογή και λήψη δειγμάτων θεμάτων. Set up default settings to be used by OpenLP. Θέστε τις Ï€ÏοκαθοÏισμένες Ïυθμίσεις για χÏήση από το OpenLP. Default output display: ΠÏοκαθοÏισμένη έξοδος Ï€Ïοβολής: Select default theme: Επιλογή Ï€ÏοκαθοÏισμένου θέματος: Starting configuration process... Εκκίνηση διαδικασίας διαμόÏφωσης... Setting Up And Downloading ΔιαμόÏφωση Και Λήψη Please wait while OpenLP is set up and your data is downloaded. ΠεÏιμένετε όσο το OpenLP διαμοÏφώνεται και γίνεται λήψη των δεδομένων σας. Setting Up ΔιαμόÏφωση Custom Slides Εξατομικευμένες Διαφάνειες Finish Τέλος No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Δεν βÏέθηκε σÏνδεση στο διαδίκτυο. Ο Οδηγός ΠÏώτης Εκτέλεσης χÏειάζεται σÏνδεση στο διαδίκτυο ώστε να κάνει λήψη δειγμάτων Ïμνων, Βίβλων και θεμάτων. Πιέστε το πλήκτÏο τεÏÎ¼Î±Ï„Î¹ÏƒÎ¼Î¿Ï Ï„ÏŽÏα για να ξεκινήσετε το OpenLP με τις αÏχικές Ïυθμίσεις και χωÏίς δείγματα δεδομένων. Για επανεκτέλεση του ÎŸÎ´Î·Î³Î¿Ï Î Ïώτης Εκτέλεσης και εισαγωγή των δειγμάτων δεδομένων σε ÏστεÏη στιγμή, ελέγξτε την σÏνδεσή σας στο διαδίκτυο και ξανατÏέξτε αυτόν τον οδηγό επιλέγοντας "ΕÏγαλεία/ Επανεκτέλεση ÎŸÎ´Î·Î³Î¿Ï Î Ïώτης Εκτέλεσης" από το OpenLP. Download Error Σφάλμα Λήψης There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Network Error There was a network error attempting to connect to retrieve initial configuration information Cancel ΑκÏÏωση Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags ΡÏθμιση Ετικετών ΜοÏφοποίησης Description ΠεÏιγÏαφή Tag Ετικέτα Start HTML ΈναÏξη HTML End HTML Τέλος HTML Default Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML εδώ> Validation Error Σφάλμα Ελέγχου Description is missing Tag is missing Tag %s already defined. Η ετικέτα %s έχει ήδη οÏιστεί. Description %s already defined. Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Κόκκινο Black ΜαÏÏο Blue Μπλε Yellow ΚίτÏινο Green ΠÏάσινο Pink Ροζ Orange ΠοÏτοκαλί Purple Μωβ White ΆσπÏο Superscript Εκθέτης Subscript Δείκτης Paragraph ΠαÏάγÏαφος Bold Έντονη γÏαφή Italics Πλάγια γÏαφή Underline ΥπογÏάμμιση Break Διακοπή OpenLP.GeneralTab General Γενικά Monitors Οθόνες Select monitor for output display: Επιλογή οθόνης για Ï€Ïοβολή: Display if a single screen Εμφάνιση αν υπάÏχει μόνο μια οθόνη Application Startup ΈναÏξη ΕφαÏμογής Show blank screen warning Εμφάνιση ειδοποίησης κενής οθόνης Automatically open the last service Αυτόματο άνοιγμα της τελευταίας λειτουÏγίας Show the splash screen Εμφάνιση της οθόνης καλωσοÏίσματος Application Settings Ρυθμίσεις ΕφαÏμογής Prompt to save before starting a new service ΕÏώτηση για αποθήκευση Ï€Ïιν την έναÏξη νέας λειτουÏγίας Automatically preview next item in service Αυτόματη Ï€Ïοεπισκόπηση του επόμενου αντικειμένου στην λειτουÏγία sec δευτ CCLI Details ΠληÏοφοÏίες CCLI SongSelect username: Όνομα χÏήστη SongSelect: SongSelect password: Κωδικός SongSelect: X X Y Y Height Ύψος Width Πλάτος Check for updates to OpenLP Έλεγχος για ενημεÏώσεις του OpenLP Unblank display when adding new live item Απευθείας Ï€Ïοβολή όταν Ï€Ïοστίθεται νέο αντικείμενο Timed slide interval: ΧÏονικό διάστημα διαφάνειας: Background Audio Κομμάτι Φόντου Start background audio paused Εκκίνηση του ήχου υπόβαθÏου σε παÏση Service Item Slide Limits ÎŒÏια Διαφάνειας Αντικειμένου ΛειτουÏγίας Override display position: Αγνόηση θέσης εμφάνισης: Repeat track list Επανάληψη λίστας κομματιών Behavior of next/previous on the last/first slide: ΣυμπεÏιφοÏά επόμενης/Ï€ÏοηγοÏμενης κατά την τελευταία/Ï€Ïώτη διαφάνεια: &Remain on Slide &ΠαÏαμονή στην Διαφάνεια &Wrap around &ΠεÏιτÏλιξη &Move to next/previous service item &Μετακίνηση στην επόμενο/Ï€ÏοηγοÏμενο στοιχείο λειτουÏγίας OpenLP.LanguageManager Language Γλώσσα Please restart OpenLP to use your new language setting. ΠαÏακαλοÏμε επανεκκινήστε το OpenLP για να ενεÏγοποιηθεί η νέα γλώσσα. OpenLP.MainDisplay OpenLP Display ΠÏοβολή του OpenLP OpenLP.MainWindow &File &ΑÏχείο &Import &Εισαγωγή &Export Εξα&γωγή &View &ΠÏοβολή M&ode Λ&ειτουÏγία &Tools &ΕÏγαλεία &Settings &Ρυθμίσεις &Language &Γλώσσα &Help &Βοήθεια Service Manager ΔιαχειÏιστής ΛειτουÏγίας Theme Manager ΔιαχειÏιστής Θεμάτων Open an existing service. Άνοιγμα υπάÏχουσας λειτουÏγίας. Save the current service to disk. Αποθήκευση Ï„Ïέχουσας λειτουÏγίας στον δίσκο. Save Service As Αποθήκευση ΛειτουÏγίας Ως Save the current service under a new name. Αποθήκευση Ï„Ïέχουσας λειτουÏγίας υπό νέο όνομα. E&xit Έ&ξοδος Quit OpenLP Έξοδος από το OpenLP &Theme &Θέμα &Configure OpenLP... &ΡÏθμιση του OpenLP... &Media Manager &ΔιαχειÏιστής Πολυμέσων Toggle Media Manager Εναλλαγή ΔιαχειÏιστή Πολυμέσων Toggle the visibility of the media manager. Εναλλαγή εμφάνισης του διαχειÏιστή πολυμέσων. &Theme Manager ΔιαχειÏιστής &Θεμάτων Toggle Theme Manager Εναλλαγή ΔιαχειÏιστή Θεμάτων Toggle the visibility of the theme manager. Εναλλαγή εμφάνισης του διαχειÏιστή θεμάτων. &Service Manager ΔιαχειÏιστής &ΛειτουÏγίας Toggle Service Manager Εναλλαγή ΔιαχειÏιστή ΛειτουÏγίας Toggle the visibility of the service manager. Εναλλαγή εμφάνισης του διαχειÏιστή λειτουÏγίας. &Preview Panel &Οθόνη ΠÏοεπισκόπησης Toggle Preview Panel Εναλλαγή Οθόνης ΠÏοεπισκόπησης Toggle the visibility of the preview panel. Εναλλαγή εμφάνισης της οθόνης Ï€Ïοεπισκόπησης. &Live Panel Οθόνη Π&Ïοβολής Toggle Live Panel Εναλλαγή Οθόνης ΠÏοβολής Toggle the visibility of the live panel. Εναλλαγή εμφάνισης της οθόνης Ï€Ïοβολής. List the Plugins Λίστα των ΠÏόσθετων &User Guide &Οδηγίες ΧÏήστη &About &Σχετικά More information about OpenLP ΠεÏισσότεÏες πληÏοφοÏίες για το OpenLP &Online Help &Online Βοήθεια &Web Site &Ιστοσελίδα Use the system language, if available. ΧÏήση της γλώσσας συστήματος, αν διατίθεται. Set the interface language to %s Θέστε την γλώσσα σε %s Add &Tool... ΕÏγαλείο &ΠÏοσθήκης... Add an application to the list of tools. ΠÏοσθήκη εφαÏμογής στην λίστα των εÏγαλείων. &Default &ΠÏοκαθοÏισμένο Set the view mode back to the default. Θέστε την Ï€Ïοβολή στην Ï€ÏοκαθοÏισμένη. &Setup &Εγκατάσταση Set the view mode to Setup. Θέστε την Ï€Ïοβολή στην Εγκατάσταση. &Live &Ζωντανά Set the view mode to Live. Θέστε την Ï€Ïοβολή σε Ζωντανά. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Η έκδοση %s του OpenLP είναι διαθέσιμη για κατέβασμα (έχετε την έκδοση %s). ΜποÏείτε να κατεβάσετε την τελευταία έκδοση από το http://openlp.org/. OpenLP Version Updated Η έκδοση του OpenLP αναβαθμίστηκε OpenLP Main Display Blanked ΚÏÏια Οθόνη του OpenLP Κενή The Main Display has been blanked out Η ΚÏÏια Οθόνη εκκενώθηκε Default Theme: %s ΠÏοκαθοÏισμένο Θέμα: %s English Please add the name of your language here Αγγλικά Configure &Shortcuts... ΡÏθμιση &ΣυντομεÏσεων... Open &Data Folder... Άνοιγμα Φακέλου &Δεδομένων... Open the folder where songs, bibles and other data resides. Άνοιγμα του φακέλου που πεÏιέχει τους Ïμνους, τις βίβλους και άλλα δεδομένα. &Autodetect &Αυτόματη Ανίχνευση Update Theme Images ΕνημέÏωση Εικόνων Θέματος Update the preview images for all themes. ΕνημέÏωση των εικόνων Ï€Ïοεπισκόπησης όλων των θεμάτων. Print the current service. ΕκτÏπωση της Ï„Ïέχουσας λειτουÏγίας. L&ock Panels &Κλείδωμα των Πάνελ Prevent the panels being moved. ΑποτÏοπή της μετακίνησης των πάνελ. Re-run First Time Wizard Επανεκτέλεση ÎŸÎ´Î·Î³Î¿Ï Î Ïώτης Εκτέλεσης Re-run the First Time Wizard, importing songs, Bibles and themes. Επανεκτέλεση του ÎŸÎ´Î·Î³Î¿Ï Î Ïώτης Εκτέλεσης, για την εισαγωγή Ïμνων, Βίβλων και θεμάτων. Re-run First Time Wizard? Επανεκτέλεση ÎŸÎ´Î·Î³Î¿Ï Î Ïώτης Εκτέλεσης; Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Είστε σίγουÏοι ότι θέλετε να επανεκτελέσετε τον Οδηγό ΠÏώτης Εκτέλεσης; Η επαντεκτέλεσή του μποÏεί να επιφέÏει αλλαγές στις Ï„Ïέχουσες Ïυθμίσεις του OpenLP και πιθανότατα να Ï€Ïοσθέσει Ïμνους στην υπάÏχουσα λίστα Ïμνων σας και να αλλάξει το Ï€ÏοκαθοÏισμένο θέμα σας. Clear List Clear List of recent files ΕκκαθάÏιση Λίστας Clear the list of recent files. ΕκκαθάÏιση της λίστας Ï€Ïόσφατων αÏχείων. Configure &Formatting Tags... ΡÏθμιση Ετικετών &ΜοÏφοποίησης... Export OpenLP settings to a specified *.config file Εξαγωγή των Ïυθμίσεων το OpenLP σε καθοÏισμένο αÏχείο *.config Settings Ρυθμίσεις Import OpenLP settings from a specified *.config file previously exported on this or another machine Εισαγωγή Ïυθμίσεων του OpenLP από καθοÏισμένο αÏχείο *.config που έχει εξαχθεί Ï€Ïοηγουμένως από αυτόν ή άλλον υπολογιστή Import settings? Εισαγωγή Ρυθμίσεων; Open File Άνοιγμα ΑÏχείου OpenLP Export Settings Files (*.conf) Εξαγωγή ΑÏχείων Ρυθμίσεων του OpenLP (*.conf) Import settings Ρυθμίσεις εισαγωγής OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Το OpenLP θα τεÏματιστεί. Οι εισηγμένες Ïυθμίσεις θα εφαÏμοστοÏν την επόμενη φοÏά που θα ξεκινήσετε το OpenLP. Export Settings File Εξαγωγή ΑÏχείου Ρυθμίσεων OpenLP Export Settings File (*.conf) Εξαγωγή ΑÏχείων Ρυθμίσεων του OpenLP (*.conf) New Data Directory Error Σφάλμα Îέου Φακέλου Δεδομένων Copying OpenLP data to new data directory location - %s - Please wait for copy to finish ΑντιγÏαφή των δεδομένων του OpenLP στην νέα τοποθεσία του φακέλου δεδομένων - %s - ΠαÏακαλοÏμε πεÏιμένετε να τελειώσει η αντιγÏαφή OpenLP Data directory copy failed %s Η αντιγÏαφή του φακέλου των αÏχείων δεδομένων του OpenLP έχει αποτÏχει %s General Γενικά Library Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Export setting error The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s &Recent Services &New Service &Open Service &Save Service Save Service &As... &Manage Plugins Exit OpenLP Are you sure you want to exit OpenLP? &Exit OpenLP OpenLP.Manager Database Error Σφάλμα Βάσης Δεδομένων The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Η υπό φόÏτωση βάση δεδομένων δημιουÏγήθηκε από μια νεότεÏη έκδοση του OpenLP. Η βάση δεδομένων είναι έκδοσης %d, ενώ το OpenLP αναμένει την έκδοση %d. Η βάση δεδομένων δεν θα φοÏτωθεί. Βάση Δεδομένων: %s OpenLP cannot load your database. Database: %s Το OpenLP δεν μποÏεί να φοÏτώσει την βάση δεδομένων σας. Βάση Δεδομένων: %s OpenLP.MediaManagerItem No Items Selected Δεν Επιλέχθηκαν Αντικείμενα &Add to selected Service Item &ΠÏοσθήκη στο επιλεγμένο Αντικείμενο ΛειτουÏγίας You must select one or more items to preview. ΠÏέπει να επιλέξετε ένα ή πεÏισσότεÏα αντικείμενα για Ï€Ïοεπισκόπηση. You must select one or more items to send live. ΠÏέπει να επιλέξετε ένα ή πεÏισσότεÏα αντικείμενα για Ï€Ïοβολή. You must select one or more items. ΠÏέπει να επιλέξετε ένα ή πεÏισσότεÏα αντικείμενα. You must select an existing service item to add to. ΠÏέπει να επιλέξετε ένα υπάÏχον αντικείμενο λειτουÏγίας στο οποίο να Ï€Ïοσθέσετε. Invalid Service Item Ακατάλληλο Αντικείμενο ΛειτουÏγίας You must select a %s service item. ΠÏέπει να επιλέξετε ένα %s αντικείμενο λειτουÏγίας. You must select one or more items to add. ΠÏέπει να επιλέξετε ένα ή πεÏισσότεÏα αντικείμενα για Ï€Ïοσθήκη. No Search Results Κανένα Αποτέλεσμα Αναζήτησης Invalid File Type Ακατάλληλος ΤÏπος ΑÏχείου Invalid File %s. Suffix not supported Ακατάλληλο ΑÏχείο %s. Μη υποστηÏιζόμενη κατάληξη &Clone &ΑντιγÏαφή Duplicate files were found on import and were ignored. Κατά την εισαγωγή των αÏχείων βÏέθηκαν διπλά αÏχεία που αγνοήθηκαν. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Η ετικέτα <lyrics> απουσιάζει. <verse> tag is missing. Η ετικέτα <verse> απουσιάζει. OpenLP.PJLink1 Unknown status No message Error while sending data to projector Undefined command: OpenLP.PlayerTab Players Available Media Players Διαθέσιμα ΠÏογÏάμματα ΑναπαÏαγωγής Player Search Order Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (μη διαθέσιμο) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" OpenLP.PluginForm Plugin Details ΛεπτομέÏειες ΠÏόσθετου Status: Κατάσταση: Active ΕνεÏγό Inactive ΑνενεÏγό %s (Inactive) %s (ΑνενεÏγό) %s (Active) %s (ΕνεÏγό) %s (Disabled) %s (ΑπενεÏγοποιημένο) Manage Plugins OpenLP.PrintServiceDialog Fit Page Πλάτος Σελίδας Fit Width Πλάτος Κειμένου OpenLP.PrintServiceForm Options Επιλογές Copy ΑντιγÏαφή Copy as HTML ΑντιγÏαφή ως HTML Zoom In Μεγέθυνση Zoom Out ΣμίκÏυνση Zoom Original ΑÏχικό Ζουμ Other Options Άλλες Επιλογές Include slide text if available ΣυμπεÏίληψη κειμένου διαφάνειας αν διατίθεται Include service item notes ΣυμπεÏίληψη σημειώσεων αντικειμένου λειτουÏγίας Include play length of media items ΣυμπεÏίληψη διάÏκειας των αντικειμένων πολυμέσων Add page break before each text item ΠÏοσθήκη αλλαγής σελίδας Ï€Ïιν από κάθε αντικείμενο κειμένου Service Sheet Σελίδα ΛειτουÏγίας Print ΕκτÏπωση Title: Τίτλος: Custom Footer Text: Εξατομικευμένο Κείμενο Υποσέλιδου: OpenLP.ProjectorConstants OK General projector error Not connected error Lamp error Fan error High temperature detected Cover open detected Check filter Authentication Error Undefined Command Invalid Parameter Projector Busy Projector/Display Error Invalid packet received Warning condition detected Error condition detected PJLink class not supported Invalid prefix character The connection was refused by the peer (or timed out) The remote host closed the connection The host address was not found The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The socket operation timed out The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Not connected Connecting Connected Getting status Off Initialize in progress Power in standby Warmup in progress Power is on Cooldown in progress Projector Information available Sending data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name OpenLP.ProjectorEditForm Add New Projector Edit Projector IP Address Port Number PIN Name Location Notes Σημειώσεις Database Error Σφάλμα Βάσης Δεδομένων There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add a new projector Edit Projector Edit selected projector Delete Projector Delete selected projector Select Input Source Choose input source on selected projector View Projector View selected projector information Connect to selected projector Connect to selected projectors Disconnect from selected projectors Disconnect from selected projector Power on selected projector Standby selected projector Put selected projector in standby Blank selected projector screen Show selected projector screen &View Projector Information &Edit Projector &Connect Projector D&isconnect Projector Power &On Projector Power O&ff Projector Select &Input Edit Input Source &Blank Projector Screen &Show Projector Screen &Delete Projector Name IP Port ΘÏÏα Notes Σημειώσεις Projector information not available at this time. Projector Name Manufacturer Model Other info Power status Shutter is Closed Current source input is Lamp On Off Hours No current errors or warnings Current errors/warnings Projector Information No message Not Implemented Yet Delete projector (%s) %s? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Lamp Temperature Cover Filter Other Άλλο OpenLP.ProjectorTab Projector Communication Options Connect to projectors on startup Socket timeout (seconds) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Invalid IP Address Invalid Port Number OpenLP.ScreenList Screen Οθόνη primary ΠÏωτεÏων OpenLP.ServiceItem <strong>Start</strong>: %s <strong>ΈναÏξη</strong>: %s <strong>Length</strong>: %s <strong>ΔιάÏκεια</strong>: %s [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Ανακατανομή Αντικειμένων ΛειτουÏγίας OpenLP.ServiceManager Move to &top Μετακίνηση στην &κοÏυφή Move item to the top of the service. Μετακίνηση αντικειμένου στην κοÏυφή της λειτουÏγίας. Move &up Μετακίνηση &επάνω Move item up one position in the service. Μετακίνηση μία θέση επάνω στην λειτουÏγία. Move &down Μετακίνηση κά&τω Move item down one position in the service. Μετακίνηση μία θέση κάτω στην λειτουÏγία. Move to &bottom Μετακίνηση στο &τέλος Move item to the end of the service. Μετακίνηση στο τέλος της λειτουÏγίας. &Delete From Service &ΔιαγÏαφή Από την ΛειτουÏγία Delete the selected item from the service. ΔιαγÏαφή του επιλεγμένου αντικειμένου από την λειτουÏγία. &Add New Item &ΠÏοσθήκη Îέου Αντικειμένου &Add to Selected Item &ΠÏοσθήκη στο Επιλεγμένο Αντικείμενο &Edit Item &ΕπεξεÏγασία Αντικειμένου &Reorder Item &Ανακατανομή Αντικειμένου &Notes &Σημειώσεις &Change Item Theme &Αλλαγή Θέματος Αντικειμένου File is not a valid service. Το αÏχείο δεν είναι αÏχείο κατάλληλης λειτουÏγίας. Missing Display Handler Απουσία ΔιαχειÏιστή ΠÏοβολής Your item cannot be displayed as there is no handler to display it Το αντικείμενό σας δεν μποÏεί να Ï€Ïοβληθεί Î±Ï†Î¿Ï Î´ÎµÎ½ υπάÏχει διαχειÏιστής για να το Ï€Ïοβάλλει Your item cannot be displayed as the plugin required to display it is missing or inactive Το αντικείμενό σας δεν μποÏεί να Ï€Ïοβληθεί Î±Ï†Î¿Ï Ï„Î¿ Ï€Ïόσθετο που απαιτείται για την Ï€Ïοβολή απουσιάζει ή είναι ανενεÏγό &Expand all &Ανάπτυξη όλων Expand all the service items. Ανάπτυξη όλων των αντικειμένων λειτουÏγίας. &Collapse all &ΣÏμπτυξη όλων Collapse all the service items. ΣÏμπτυξη όλων των αντικειμένων λειτουÏγίας. Open File Άνοιγμα ΑÏχείου Moves the selection down the window. Μετακίνηση της επιλογής κάτω στο παÏάθυÏο. Move up Μετακίνηση επάνω Moves the selection up the window. Μετακίνηση της επιλογής Ï€Ïος τα πάνω στο παÏάθυÏο. Go Live Μετάβαση σε ΠÏοβολή Send the selected item to Live. ΠÏοβολή του επιλεγμένου αντικειμένου. &Start Time ÎÏα &ΈναÏξης Show &Preview ΠÏοβολή &ΠÏοεπισκόπησης Modified Service ΤÏοποποιημένη ΛειτουÏγία The current service has been modified. Would you like to save this service? Η Ï„Ïέχουσα λειτουÏγία έχει Ï„Ïοποποιηθεί. Θέλετε να αποθηκεÏσετε ετοÏτη την λειτουÏγία; Custom Service Notes: Εξατομικευμένες Σημειώσεις ΛειτουÏγίας: Notes: Σημειώσεις: Playing time: ΧÏόνος ΑναπαÏαγωγής: Untitled Service Ανώνυμη ΛειτουÏγία File could not be opened because it is corrupt. Το αÏχείο δεν ανοίχθηκε επειδή είναι φθαÏμένο. Empty File Κενό ΑÏχείο This service file does not contain any data. ΕτοÏτο το αÏχείο λειτουÏγίας δεν πεÏιέχει δεδομένα. Corrupt File ΦθαÏμένο ΑÏχείο Load an existing service. Άνοιγμα υπάÏχουσας λειτουÏγίας. Save this service. Αποθήκευση ετοÏτης της λειτουÏγίας. Select a theme for the service. Επιλέξτε ένα θέμα για την λειτουÏγία. Slide theme Θέμα διαφάνειας Notes Σημειώσεις Edit ΕπεξεÏγασία Service copy only ΕπεξεÏγασία αντιγÏάφου μόνο Error Saving File Σφάλμα Αποθήκευσης ΑÏχείου There was an error saving your file. ΥπήÏξε σφάλμα κατά την αποθήκευση του αÏχείου σας. Service File(s) Missing Απουσία ΑÏχείου ΛειτουÏγίας &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. ΚαθυστέÏηση Î¼ÎµÏ„Î±Î¾Ï Î´Î¹Î±Ï†Î±Î½ÎµÎ¹ÏŽÎ½ σε δευτεÏόλεπτα. Rename item title Title: Τίτλος: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Σημειώσεις Αντικειμένου ΛειτουÏγίας OpenLP.SettingsForm Configure OpenLP ΡÏθμιση του OpenLP OpenLP.ShortcutListDialog Action ΕνέÏγεια Shortcut Συντόμευση Duplicate Shortcut ΑντίγÏαφο Συντόμευσης The shortcut "%s" is already assigned to another action, please use a different shortcut. Η συντόμευση "%s" έχει ήδη ανατεθεί σε άλλη ενέÏγεια, παÏακαλοÏμε χÏησιμοποιήστε διαφοÏετική συντόμευση. Alternate Εναλλακτική Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Επιλέξτε μια ενέÏγεια και πιέστε ένα από τα παÏακάτω πλήκτÏα για να ξεκινήσετε την καταγÏαφή μιας κÏÏιας ή εναλλακτικής συντόμευσης, αντίστοιχα. Default ΠÏοκαθοÏισμένο Custom Εξατομικευμένο Capture shortcut. ΚαταγÏαφή συντόμευσης. Restore the default shortcut of this action. Αποκατάσταση της Ï€ÏοκαθοÏισμένης συντόμευσης αυτής της ενέÏγειας. Restore Default Shortcuts Αποκατάσταση ΠÏοκαθοÏισμένων ΣυντομεÏσεων Do you want to restore all shortcuts to their defaults? Θέλετε να αποκαταστήσετε όλες τις συντομεÏσεις στις Ï€ÏοκαθοÏισμένες; Configure Shortcuts ΡÏθμιση ΣυντομεÏσεων OpenLP.SlideController Hide ΑπόκÏυψη Go To Μετάβαση Blank Screen Κενή Οθόνη Blank to Theme ΠÏοβολή Θέματος Show Desktop Εμφάνιση Επιφάνειας ΕÏγασίας Previous Service ΠÏοηγοÏμενη ΛειτουÏγία Next Service Επόμενη ΛειτουÏγία Escape Item Αποφυγή Αντικειμένου Move to previous. Μετακίνηση στο Ï€ÏοηγοÏμενο. Move to next. Μετακίνηση στο επόμενο. Play Slides ΑναπαÏαγωγή Διαφανειών Delay between slides in seconds. ΚαθυστέÏηση Î¼ÎµÏ„Î±Î¾Ï Î´Î¹Î±Ï†Î±Î½ÎµÎ¹ÏŽÎ½ σε δευτεÏόλεπτα. Move to live. ΜεταφοÏά σε Ï€Ïοβολή. Add to Service. ΠÏοσθήκη στην ΛειτουÏγία. Edit and reload song preview. ΕπεξεÏγασία και επαναφόÏτωση Ï€Ïοεπισκόπισης Ïμνου. Start playing media. ΈναÏξη αναπαÏαγωγής πολυμέσων. Pause audio. ΠαÏση ήχου. Pause playing media. ΠαÏση αναπαÏαγωγής πολυμέσων. Stop playing media. Σταμάτημα αναπαÏγωγής πολυμέσων. Video position. Θέση Video. Audio Volume. Ένταση Ήχου. Go to "Verse" Πήγαινε στην "ΣτÏοφή" Go to "Chorus" Πήγαινε στην "Επωδό" Go to "Bridge" Πήγαινε στην "ΓέφυÏα" Go to "Pre-Chorus" Πήγαινε στην "ΠÏο-Επωδό" Go to "Intro" Πήγαινε στην "Εισαγωγή" Go to "Ending" Πήγαινε στο"Τέλος" Go to "Other" Πήγαινε στο "Άλλο" Previous Slide ΠÏοηγοÏμενη Διαφάνεια Next Slide Επόμενη Διαφάνεια Pause Audio Κομμάτι σε Αναμονή Background Audio Κομμάτι Φόντου Go to next audio track. Μετάβαση στο επόμενο κομμάτι. Tracks Κομμάτια OpenLP.SourceSelectForm Select Projector Source Edit Projector Source Text Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions ΠÏοτάσεις ΟÏθογÏαφίας Formatting Tags Ετικέτες ΜοÏφοποίησης Language: Γλώσσα: OpenLP.StartTimeForm Theme Layout Σχέδιο Θέματος The blue box shows the main area. Το μπλε κουτί δείχνει την κÏÏια πεÏιοχή. The red box shows the footer. Το κόκκινο κουτί δείχνει το υποσέλιδο. OpenLP.StartTime_form Item Start and Finish Time ÎÏα ΈναÏξης και Λήξης Αντικειμένου Hours: ÎÏες: Minutes: Λεπτά: Seconds: ΔευτεÏόλεπτα: Start ΈναÏξη Finish Τέλος Length ΔιάÏκεια Time Validation Error Σφάλμα Ελέγχου ΧÏόνου Finish time is set after the end of the media item Ο χÏόνος λήξης έχει τεθεί μετά το πέÏας του αντικειμένου πολυμέσων Start time is after the finish time of the media item Ο χÏόνος έναÏξης έχει τεθεί μετά το πέÏας του αντικειμένου πολυμέσων OpenLP.ThemeForm (approximately %d lines per slide) (πεÏίπου %d γÏαμμές ανά διαφάνεια) OpenLP.ThemeManager Create a new theme. ΔημιουÏγία νέου θέματος. Edit Theme ΕπεξεÏγασία Θέματος Edit a theme. ΕπεξεÏγασία ενός θέματος. Delete Theme ΔιαγÏαφή Θέματος Delete a theme. ΔιαγÏαφή ενός θέματος. Import Theme Εισαγωγή Θέματος Import a theme. Εισαγωγή ενός θέματος. Export Theme Εξαγωγή Θέματος Export a theme. Εξαγωγή ενός θέματος. &Edit Theme &ΕπεξεÏγασία Θέματος &Delete Theme &ΔιαγÏαφή Θέματος Set As &Global Default ΟÏισμός Ως &Γενικής ΠÏοεπιλογής %s (default) %s (Ï€ÏοκαθοÏισμένο) You must select a theme to edit. ΠÏέπει να επιλέξετε ένα θέμα Ï€Ïος επεξεÏγασία. You are unable to delete the default theme. Δεν μποÏείτε να διαγÏάψετε το Ï€ÏοκαθοÏισμένο θέμα. You have not selected a theme. Δεν έχετε επιλέξει θέμα. Save Theme - (%s) Αποθήκευση Θέματος - (%s) Theme Exported Θέμα Εξήχθη Your theme has been successfully exported. Το θέμα σας εξήχθη επιτυχώς. Theme Export Failed Εξαγωγή Θέματος Απέτυχε Select Theme Import File Επιλέξτε ΑÏχείο Εισαγωγής Θέματος File is not a valid theme. Το αÏχείο δεν αποτελεί έγκυÏο θέμα. &Copy Theme &ΑντιγÏαφή Θέματος &Rename Theme &Μετονομασία Θέματος &Export Theme &Εξαγωγή Θέματος You must select a theme to rename. ΠÏέπει να επιλέξετε ένα θέμα για μετονομασία. Rename Confirmation Επιβεβαίωση Μετονομασίας Rename %s theme? Μετονομασία θέματος %s; You must select a theme to delete. ΠÏέπει να επιλέξετε ένα θέμα Ï€Ïος διαγÏαφή. Delete Confirmation Επιβεβαίωση ΔιαγÏαφής Delete %s theme? ΔιαγÏαφή θέματος %s; Validation Error Σφάλμα Ελέγχου A theme with this name already exists. ΥπάÏχει ήδη θέμα με αυτό το όνομα. Copy of %s Copy of <theme name> ΑντιγÏαφή του %s Theme Already Exists Ήδη ΥπαÏκτό Θέμα Theme %s already exists. Do you want to replace it? Το Θέμα %s υπάÏχει ήδη. Θέλετε να το αντικαταστήσετε; The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Οδηγός Θεμάτων Welcome to the Theme Wizard ΚαλωσοÏίσατε στον Οδηγό Θεμάτων Set Up Background ΚαθοÏισμός Φόντου Set up your theme's background according to the parameters below. ΚαθοÏίστε το φόντο του θέματός σας σÏμφωνα με τις παÏακάτω παÏαμέτÏους. Background type: ΤÏπος φόντου: Gradient Διαβάθμιση Gradient: Διαβάθμιση: Horizontal ΟÏιζόντια Vertical Κάθετα Circular Κυκλικά Top Left - Bottom Right Πάνω ΑÏιστεÏά - Κάτω Δεξιά Bottom Left - Top Right Κάτω ΑÏιστεÏά - Πάνω Δεξιά Main Area Font Details ΛεπτομέÏειες ΓÏαμματοσειÏάς ΚÏÏιας ΠεÏιοχής Define the font and display characteristics for the Display text ΚαθοÏίστε την γÏαμματοσειÏά και τα χαÏακτηÏιστικά Ï€Ïοβολής του κειμένου ΠÏοβολής Font: ΓÏαμματοσειÏά: Size: Μέγεθος: Line Spacing: Διάκενο: &Outline: &ΠεÏίγÏαμμα: &Shadow: &Σκίαση: Bold Έντονη γÏαφή Italic Πλάγια ΓÏαφή Footer Area Font Details ΛεπτομέÏειες ΓÏαμματοσειÏάς Υποσέλιδου Define the font and display characteristics for the Footer text ΚαθοÏίστε την γÏαμματοσειÏά και τα χαÏακτηÏιστικά Ï€Ïοβολής για το κείμενο Υποσέλιδου Text Formatting Details ΛεπτομέÏειες ΜοÏφοποίησης Κειμένου Allows additional display formatting information to be defined ΕπιτÏέπει να καθοÏιστοÏν Ï€Ïόσθετες λεπτομέÏειες μοÏφοποίησης Ï€Ïοβολής Horizontal Align: ΟÏιζόντια ΕυθυγÏάμμιση: Left ΑÏιστεÏά Right Δεξιά Center ΚέντÏο Output Area Locations Τοποθεσία ΠεÏιοχών ΠÏοβολής &Main Area &ΚÏÏια ΠεÏιοχή &Use default location &ΧÏήση ΠÏοκαθοÏισμένης Θέσης X position: Θέση X: px px Y position: Θέση Y: Width: Πλάτος: Height: Ύψος: Use default location ΧÏήση Ï€ÏοκαθοÏισμένης θέσης Theme name: Όνομα θέματος: Edit Theme - %s ΕπεξεÏγασία Θέματος - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Ο οδηγός αυτός θα σας βοηθήσει να δημιουÏγήσετε και να επεξεÏγαστείτε τα θέματά σας. Πιέστε το πλήκτÏο επόμενο παÏακάτω για να ξεκινήσετε την διαδικασία οÏίζοντας το φόντο. Transitions: Μεταβάσεις: &Footer Area ΠεÏιοχή &Υποσέλιδου Starting color: ΧÏώμα έναÏξης: Ending color: ΧÏώμα τεÏματισμοÏ: Background color: ΧÏώμα φόντου: Justify ΕυθυγÏάμμιση Layout Preview ΠÏοεπισκόπηση Σχεδίου Transparent Διαφανές Preview and Save ΠÏοεπισκόπηση και Αποθήκευση Preview the theme and save it. ΠÏοεπισκόπηση του θέματος και απόθήκευσή του. Background Image Empty Εικόνα Φόντου ΑποÏσα Select Image Επιλογή Εικόνας Theme Name Missing Ονομασία Θέματος Απουσιάζει There is no name for this theme. Please enter one. Δεν υπάÏχει ονομασία για αυτό το θέμα. Εισάγετε ένα όνομα. Theme Name Invalid Ακατάλληλο Όνομα Θέματος Invalid theme name. Please enter one. Ακατάλληλο όνομα θέματος. Εισάγετε ένα όνομα. Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. Δεν έχετε επιλέξει εικόνα για το φόντο. Επιλέξτε μία Ï€Ïιν συνεχίσετε. OpenLP.ThemesTab Global Theme Καθολικό Θέμα Theme Level Επίπεδο Θέματος S&ong Level Επίπεδο &Ύμνου Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. ΧÏήση του θέματος από κάθε Ïμνο στην βάση δεδομένων. Αν ένας Ïμνος δεν έχει ένα θέμα συνδεόμενο με αυτόν, θα γίνει χÏήση του θέματος της λειτουÏγίας. Αν η λειτουÏγία δεν έχει θέμα, τότε θα γίνει χÏήση του ÎºÎ±Î¸Î¿Î»Î¹ÎºÎ¿Ï Î¸Î­Î¼Î±Ï„Î¿Ï‚. &Service Level Επίπεδο &ΛειτουÏγίας Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. ΧÏήση του θέματος της λειτουÏγίας, παÏακάμπτοντας τα θέματα των Ïμνων. Αν η λειτουÏγία δεν έχει θέμα, θα χÏησιμοποιηθεί το καθολικό θέμα. &Global Level &Καθολικό Επίπεδο Use the global theme, overriding any themes associated with either the service or the songs. ΧÏήση του ÎºÎ±Î¸Î¿Î»Î¹ÎºÎ¿Ï Î¸Î­Î¼Î±Ï„Î¿Ï‚, παÏακάμπτοντας όλα τα υπόλοιπα θέματα λειτουÏγίας ή Ïμνων. Themes Θέματα Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. ΔιαγÏαφή επιλεγμένου αντικειμένου. Move selection up one position. ΜεταφοÏά επιλογής μία θέση επάνω. Move selection down one position. ΜεταφοÏά επιλογής μία θέση κάτω. &Vertical Align: &Κάθετη ΕυθυγÏάμμιση: Finished import. Τέλος εισαγωγής. Format: ΜοÏφή: Importing Εισαγωγή Importing "%s"... Εισαγωγή του "%s"... Select Import Source Επιλέξτε Μέσο Εισαγωγής Select the import format and the location to import from. Επιλέξτε την μοÏφή εισαγωγής και την τοποθεσία από την οποία θα γίνει η εισαγωγή. Open %s File Άνοιγμα %s ΑÏχείου %p% %p% Ready. Έτοιμο. Starting import... ΈναÏξη εισαγωγής... You need to specify at least one %s file to import from. A file type e.g. OpenSong ΠÏέπει να καθοÏίσετε τουλάχιστον ένα %s αÏχείο από το οποίο να γίνει εισαγωγή. Welcome to the Bible Import Wizard ΚαλωσοÏίσατε στον Οδηγό Εισαγωγής Βίβλου Welcome to the Song Export Wizard ΚαλωσοÏίσατε στον Οδηγό Εξαγωγής Ύμνου Welcome to the Song Import Wizard ΚαλωσοÏίσατε στον Οδηγό Εισαγωγής Ύμνου Author Singular ΣυγγÏαφέας Authors Plural ΣυγγÏαφείς © Copyright symbol. © Song Maintenance ΔιαχείÏιση Ύμνων Topic Singular ΚατηγοÏία Topics Plural ΚατηγοÏίες Title and/or verses not found Δεν βÏέθηκαν τίτλος και/ή εδάφια XML syntax error Συντακτικό λάθος XML Welcome to the Bible Upgrade Wizard ΚαλωσοÏίσατε στον Οδηγό Αναβάθμισης Βίβλου Open %s Folder Άνοιγμα %s Φακέλου You need to specify one %s file to import from. A file type e.g. OpenSong ΠÏέπει να καθοÏίσετε ένα %s αÏχείο από το οποίο να γίνει εισαγωγή. You need to specify one %s folder to import from. A song format e.g. PowerSong ΠÏέπει να καθοÏίσετε έναν %s φάκελο από τον οποίο θα γίνει εισαγωγή. Importing Songs Εισαγωγή Ύμνων Welcome to the Duplicate Song Removal Wizard Written by Author Unknown About Σχετικά &Add &ΠÏοσθήκη Add group Advanced Για Ï€ÏοχωÏημένους All Files Όλα τα ΑÏχεία Automatic Αυτόματο Background Color ΧÏώμα Φόντου Bottom Κάτω Browse... Αναζήτηση... Cancel ΑκÏÏωση CCLI number: ΑÏιθμός CCLI: Create a new service. ΔημιουÏγία νέας λειτουÏγίας. Confirm Delete Επιβεβαίωση ΔιαγÏαφής Continuous Συνεχές Default ΠÏοκαθοÏισμένο Default Color: ΠÏοκαθοÏισμένο ΧÏώμα: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. ΛειτουÏγία %Y-%m-%d %H-%M &Delete &ΔιαγÏαφή Display style: Στυλ ΠαÏουσίασης: Duplicate Error Σφάλμα ΑντίγÏαφου &Edit &ΕπεξεÏγασία Empty Field Κενό Πεδίο Error Σφάλμα Export Εξαγωγή File ΑÏχείο File Not Found File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help Βοήθεια h The abbreviated unit for hours ω Invalid Folder Selected Singular Επιλέχθηκε Ακατάλληλος Φάκελος Invalid File Selected Singular Επιλέχθηκε Ακατάλληλο ΑÏχείο Invalid Files Selected Plural Επιλέχθηκαν Ακατάλληλα ΑÏχεία Image Εικόνα Import Εισαγωγή Layout style: Στυλ σχεδίου: Live Ζωντανά Live Background Error Σφάλμα Φόντου ΠÏοβολής Live Toolbar ΕÏγαλειοθήκη ΠÏοβολής Load ΦόÏτωση Manufacturer Singular Manufacturers Plural Model Singular Models Plural m The abbreviated unit for minutes λ Middle Μέσο New Îέο New Service Îέα ΛειτουÏγία New Theme Îέο Θέμα Next Track Επόμενο Κομμάτι No Folder Selected Singular Δεν Επιλέχτηκε Φάκελος No File Selected Singular Δεν Επιλέχθηκε ΑÏχείο No Files Selected Plural Δεν Επιλέχθηκαν ΑÏχεία No Item Selected Singular Δεν Επιλέχθηκε Αντικείμενο No Items Selected Plural Δεν Επιλέχθηκαν Αντικείμενα OpenLP is already running. Do you wish to continue? Το OpenLP ήδη εκτελείται. Θέλετε να συνεχίσετε; Open service. Άνοιγμα λειτουÏγίας. Play Slides in Loop ΑναπαÏαγωγή Διαφανειών Κυκλικά Play Slides to End ΑναπαÏαγωγή Διαφανειών έως Τέλους Preview ΠÏοεπισκόπηση Print Service ΕκτÏπωση ΛειτουÏγίας Projector Singular Projectors Plural Replace Background Αντικατάσταση Φόντου Replace live background. Αντικατάσταση του Ï€Ïοβαλλόμενου φόντου. Reset Background ΕπαναφοÏά Φόντου Reset live background. ΕπαναφοÏά Ï€Ïοβαλλόμενου φόντου. s The abbreviated unit for seconds δ Save && Preview Αποθήκευση && ΠÏοεπισκόπηση Search Αναζήτηση Search Themes... Search bar place holder text Αναζήτηση Θεμάτων... You must select an item to delete. ΠÏέπει να επιλέξετε ένα αντικείμενο Ï€Ïος διαγÏαφή. You must select an item to edit. ΠÏέπει να επιλέξετε ένα αντικείμενο για επεξεÏγασία. Settings Ρυθμίσεις Save Service Αποθήκευση ΛειτουÏγίας Service ΛειτουÏγία Optional &Split ΠÏοαιÏετικός &ΔιαχωÏισμός Split a slide into two only if it does not fit on the screen as one slide. ΔιαίÏεση μιας διαφάνειας σε δÏο μόνο αν δεν χωÏά στην οθόνη ως μια διαφάνεια. Start %s ΈναÏξη %s Stop Play Slides in Loop ΤεÏματισμός Κυκλικής ΑναπαÏαγωγής Διαφανειών Stop Play Slides to End ΤεÏματισμός ΑναπαÏαγωγής Διαφανειών έως Τέλους Theme Singular Θέμα Themes Plural Θέματα Tools ΕÏγαλεία Top ΚοÏυφή Unsupported File Μη υποστηÏιζόμενο ΑÏχείο Verse Per Slide Εδάφιο Ανά Διαφάνεια Verse Per Line Εδάφιο Ανά ΓÏαμμή Version Έκδοση View ΠÏοβολή View Mode ΛειτουÏγία ΠÏοβολής CCLI song number: Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>ΠÏόσθετο ΠαÏουσιάσεων</strong><br />Το Ï€Ïόσθετο παÏουσιάσεων παÏέχει την δυνατότητα να εμφανίζονται παÏουσιάσεις με χÏήση μιας σειÏάς διαφοÏετικών Ï€ÏογÏαμμάτων. Η επιλογή από τα διαθέσιμα Ï€ÏογÏάμματα είναι δυνατή στον χÏήστη μέσω σχετικής λίστας. Presentation name singular ΠαÏουσίαση Presentations name plural ΠαÏουσιάσεις Presentations container title ΠαÏουσιάσεις Load a new presentation. ΦόÏτωση νέας παÏουσίασης. Delete the selected presentation. ΔιαγÏαφή επιλεγμένης παÏουσίασης. Preview the selected presentation. ΠÏοεπισκόπηση επιλεγμένης παÏουσίασης. Send the selected presentation live. ΠÏοβολή της επιλεγμένης παÏουσίασης. Add the selected presentation to the service. ΠÏόσθεση της επιλεγμένης παÏουσίασης στην λειτουÏγία. PresentationPlugin.MediaItem Select Presentation(s) Επιλογή ΠαÏουσίασης (-εων) Automatic Αυτόματο Present using: ΠαÏουσίαση με χÏήση: File Exists Ήδη ΥπάÏχον ΑÏχείο A presentation with that filename already exists. Ήδη υπάÏχει παÏουσίαση με αυτό το όνομα. This type of presentation is not supported. Αυτός ο Ï„Ïπος παÏουσίασης δεν υποστηÏίζεται. Presentations (%s) ΠαÏουσιάσεις (%s) Missing Presentation ΑποÏσα ΠαÏουσίαση The presentation %s is incomplete, please reload. Η παÏουσίαση %s είναι ατελής, παÏακαλοÏμε φοÏτώστε την ξανά. The presentation %s no longer exists. Η παÏουσίαση %s δεν υπάÏχει πλέον. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Διαθέσιμοι Ελεγκτές %s (unavailable) %s (μη διαθέσιμο) Allow presentation application to be overridden ΕπιτÏέψτε την παÏάκαμψη του Ï€ÏογÏάμματος παÏουσίασης PDF options Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>ΠÏόσθετο ΤηλεχειÏισμοÏ</strong><br />Το Ï€Ïόσθετο τηλεχειÏÎ¹ÏƒÎ¼Î¿Ï Ï€Î±Ïέχει την δυνατότητα να αποστείλετε μηνÏματα σε μία υπό εκτέλεση έκδοση του OpenLP σε διαφοÏετικό υπολογιστή μέσω web browser είτε μέσω του API τηλεχειÏισμοÏ. Remote name singular ΤηλεχειÏισμός Remotes name plural ΤηλεχειÏιστήÏια Remote container title ΤηλεχειÏισμός Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager ΔιαχειÏιστής ΛειτουÏγίας Slide Controller Ελεγκτής Διαφανειών Alerts Ειδοποιήσεις Search Αναζήτηση Home ΑÏχική Σελίδα Refresh Ανανέωση Blank Κενό Theme Θέμα Desktop Επιφάνεια ΕÏγασίας Show ΠÏοβολή Prev ΠÏοήγ Next Επόμενο Text Κείμενο Show Alert Εμφάνιση Ειδοποίησης Go Live Μετάβαση σε ΠÏοβολή Add to Service ΠÏοσθήκη στην ΛειτουÏγία Add &amp; Go to Service ΠÏοσθήκη &amp; Μετάβαση στην ΛειτουÏγία No Results Κανένα Αποτέλεσμα Options Επιλογές Service ΛειτουÏγία Slides Διαφάνειες Settings Ρυθμίσεις Remote ΤηλεχειÏισμός Stage View Live View RemotePlugin.RemoteTab Serve on IP address: ΕξυπηÏέτηση στην διεÏθυνση IP: Port number: ΑÏιθμός θÏÏας: Server Settings Επιλογές ΕξυπηÏετητή Remote URL: ΑπομακÏυσμένη URL: Stage view URL: URL ΠÏοβολής πίστας: Display stage time in 12h format Εμφάνιση χÏόνου πίστας σε 12ωÏη μοÏφή Android App ΕφαÏμογή Android Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: Κωδικός: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &ΠαÏακολοÏθηση ΧÏήσης Ύμνων &Delete Tracking Data &ΔιαγÏαφή Δεδομένων ΠαÏακολοÏθησης Delete song usage data up to a specified date. ΔιαγÏαφή των δεδομένων χÏήσης έως μια καθοÏισμένη ημεÏομηνία. &Extract Tracking Data &Εξαγωγή Δεδομένων ΠαÏακολοÏθησης Generate a report on song usage. ΠαÏαγωγή αναφοÏάς για την χÏήση Ïμνων. Toggle Tracking Εναλλαγή ΠαÏακολοÏθησης Toggle the tracking of song usage. Εναλλαγή της παÏακολοÏθησης της χÏήσης Ïμνων. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>ΠÏόσθετο ΠαÏακολοÏθησης Ύμνων</strong><br />Αυτό το Ï€Ïόσθετο παÏακολουθε'ι την χÏήση των Ïμνων στις λειτουÏγίες. SongUsage name singular ΧÏήση Ύμνων SongUsage name plural ΧÏήση Ύμνων SongUsage container title ΧÏήση Ύμνων Song Usage ΧÏήση Ύμνων Song usage tracking is active. Η παÏακολοÏθηση της χÏήσης Ύμνων είναι ενεÏγή. Song usage tracking is inactive. Η παÏακολοÏθηση της χÏήσης Ύμνων είναι ανενεÏγή. display εμφάνιση printed εκτυπώθηκε SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data ΔιαγÏαφή Δεδομένων ΧÏήσης Ύμνων Delete Selected Song Usage Events? ΔιαγÏαφή των Επιλεγμένων Συμβάντων ΧÏήσης Ύμνων; Are you sure you want to delete selected Song Usage data? Είστε σιγουÏοι ότι θέλετε να διαγÏάψετε τα επιλεγμένα δεδομένα ΧÏήσης Ύμνων; Deletion Successful ΔιαγÏαφή Επιτυχής Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Εξαγωγή ΧÏήσης Ύμνων Select Date Range Επιλέξτε ΧÏονική ΠεÏίοδο to έως Report Location ΑναφέÏατε Τοποθεσία Output File Location Τοποθεσία Εξαγωγής ΑÏχείου usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation ΔημιουÏγία ΑναφοÏάς Report %s has been successfully created. Η ΑναφοÏα %s έχει δημιουÏγηθεί επιτυχώς. Output Path Not Selected Δεν Επιλέχθηκε Τοποθεσία Εξαγωγής You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song &Ύμνος Import songs using the import wizard. Εισαγωγή Ïμνων με χÏηση του Î¿Î´Î·Î³Î¿Ï ÎµÎ¹ÏƒÎ±Î³Ï‰Î³Î®Ï‚. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>ΠÏοσθετο Ύμνων</strong><br />Το Ï€Ïοσθετο Ïμνων παÏέχει την δυνατότητα Ï€Ïοβολής και διαχείÏισης Ïμνων. &Re-index Songs &Ανακατανομή Ύμνων Re-index the songs database to improve searching and ordering. Ανακατανομή της βάσης δεδομένων Ïμνων για την βελτίωση της αναζήτησης και της κατανομής. Reindexing songs... Ανακατομή Ύμνων... Arabic (CP-1256) ΑÏαβικά (CP-1256) Baltic (CP-1257) Βαλτική (CP-1257) Central European (CP-1250) ΚεντÏικής ΕυÏώπης (CP-1250) Cyrillic (CP-1251) ΚυÏιλλικά (CP-1251) Greek (CP-1253) Ελληνικά (CP-1253) Hebrew (CP-1255) ΕβÏαϊκά (CP-1255) Japanese (CP-932) Ιαπωνέζικα (CP-932) Korean (CP-949) ΚοÏεάτικα (CP-949) Simplified Chinese (CP-936) Απλοποιημένα Κινέζικα (CP-936) Thai (CP-874) Τάυ (CP-874) Traditional Chinese (CP-950) ΠαÏαδοσιακά Κινέζικα (CP-950) Turkish (CP-1254) ΤοÏÏκικα (CP-1254) Vietnam (CP-1258) Βιετναμέζικα (CP-1258) Western European (CP-1252) Δυτικής ΕυÏώπης (CP-1252) Character Encoding Κωδικοποίηση ΧαÏακτήÏων The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Η ÏÏθμιση κωδικοσελίδας είναι υπεÏθυνη για την οÏθή εμφάνιση των χαÏακτήÏων. Συνήθως είστε εντάξει με την Ï€Ïοεπιλεγμένη κωδικοσελίδα. Please choose the character encoding. The encoding is responsible for the correct character representation. ΠαÏακαλοÏμε επιλέξτε την κωδικοποίηση των χαÏακτήÏων. Η κωδικοποιήση ειναι υπεÏθυνη για την οÏθή εμφάνιση των χαÏακτήÏων. Song name singular Ύμνος Songs name plural Ύμνοι Songs container title Ύμνοι Exports songs using the export wizard. Εξαγωγή Ïμνων με χÏήση του Î¿Î´Î·Î³Î¿Ï ÎµÎ¾Î±Î³Ï‰Î³Î®Ï‚. Add a new song. ΠÏοσθήκη νέου Ïμνου. Edit the selected song. ΕπεξεÏγασία του επιλεγμένου Ïμνου. Delete the selected song. ΔιαγÏαφή του επιλεγμένου Ïμνου. Preview the selected song. ΠÏοεπισκόπηση του επιλεγμένου Ïμνου. Send the selected song live. Μετάβαση του επιελεγμένου Ïμνου Ï€Ïος Ï€Ïοβολή. Add the selected song to the service. ΠÏοσθήκη του επιλεγμένου Ïμνου στην λειτουÏγία. Reindexing songs Ανακατομή Ïμνων CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Music Author who wrote the music of a song Words and Music Author who wrote both lyrics and music of a song Translation Author who translated the song SongsPlugin.AuthorsForm Author Maintenance ΕπεξεÏγασία ΣυγγÏαφέα Display name: Εμαφανιζ'ομενο όνομα: First name: Όνομα: Last name: Επίθετο: You need to type in the first name of the author. ΠÏέπει να εισάγετε το όνομα του συγγÏαφέα. You need to type in the last name of the author. ΠÏέπει να εισάγετε το επίθετο του συγγÏαφέα. You have not set a display name for the author, combine the first and last names? Δεν δηλώσατε εμφανιζομενο όνομα συγγÏαφέα, να συνδυαστοÏν όνομα και επίθετο; SongsPlugin.CCLIFileImport The file does not have a valid extension. Το αÏχείο δεν έχει έγκυÏη επέκταση. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s ΔιαχείÏιση από %s "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names ΠαÏαμετÏοποιημένα Ονόματα Βιβλίων SongsPlugin.EditSongForm Song Editor ΕπεξεÏγασία Ύμνων &Title: &Τίτλος: Alt&ernate title: &Εναλλαγή τίτλου: &Lyrics: &Στίχοι: &Verse order: ΣειÏά &ΣτÏοφών: Ed&it All Ε&πεξεÏγασία Όλων Title && Lyrics Τίτλος && Στίχοι &Add to Song &ΠÏοσθήκη στον Ύμνο &Remove &ΑφαίÏεση A&dd to Song ΠÏο&σθήκη στον Ύμνο R&emove ΑφαίÏεσ&η New &Theme Îέο &Θέμα Copyright Information ΠληÏοφοÏίες Πνευματικών Δικαιωμάτων Comments Σχόλια Theme, Copyright Info && Comments Θέμα, ΠληÏοφοÏίες Πνευματικών Δικαιωμάτων && Σχόλια Add Author ΠÏοσθήκη ΣυγγÏαφέα This author does not exist, do you want to add them? Αυτός ο συγγÏαφέας δεν υπάÏχει, θέλετε να τον Ï€Ïοσθέσετε; This author is already in the list. Αυτός ο συγγÏαφέας είναι ήδη στην λίστα. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Δεν επιλέξατε έγκυÏο συγγÏαφέα. Είτε επιλέξτε έναν συγγÏαφέα από την λίστα, είτε πληκτÏολογείστε έναν νέο συγγÏαφέα και πιέστε "ΠÏοσθήκη ΣυγγÏαφέα στον Ύμνο" για να Ï€Ïοσθέσετε τον νέο συγγÏαφέα. Add Topic ΠÏοσθήκη ΚατηγοÏίας This topic does not exist, do you want to add it? Η κατηγοÏία δεν υπάÏχει, θέλετε να την Ï€Ïοσθέσετε; This topic is already in the list. Η κατηγοÏία υπάÏχει ήδη στην λίστα. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Δεν επιλέξατε έγκυÏη κατηγοÏία. Είτε επιλέξτε μια κατηγοÏία από την λίστα, είτε πληκτÏολογήστε μια νέα κατηγοÏία και πιέστε "ΠÏοσθήκη ΚατηγοÏίας στον Ύμνο" για να Ï€Ïοσθέσετε την νέα κατηγοÏία. You need to type in a song title. ΠÏέπει να δώσετε έναν τίτλο στον Ïμνο. You need to type in at least one verse. ΠÏέπει να πληκτÏολογήσετε τουλάχιστον ένα εδάφιο. You need to have an author for this song. ΠÏέπει να έχετε έναν συγγÏαφέα για αυτόν τον Ïμνο. Linked Audio Συνδεδεμένος Ήχος Add &File(s) ΠÏοσθήκη &ΑÏχείου(-ων) Add &Media ΠÏοσθήκη &Πολυμέσων Remove &All &ΑφαίÏεση Όλων Open File(s) Άνοιγμα ΑÏχείου(-ων) <strong>Warning:</strong> Not all of the verses are in use. <strong>ΠÏοειδοποίηση:</strong> Δεν χÏησιμοποιοÏνται όλα τα εδάφια. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type Edit Author Type Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse ΕπεξεÏγασία Εδαφίου &Verse type: &ΤÏπος ΣτÏοφής: &Insert &Εισαγωγή Split a slide into two by inserting a verse splitter. ΔιαχωÏισμός μιας διαφάνειας σε δÏο με εισαγωγή ενός διαχωÏιστή στÏοφών. SongsPlugin.ExportWizardForm Song Export Wizard Οδηγός Εξαγωγής Ύμνων Select Songs Επιλέξτε Ύμνους Check the songs you want to export. Επιλέξτε τους Ïμνους που θέλετε να εξάγετε. Uncheck All Αποεπιλογή Όλων Check All Επιλογή Όλων Select Directory Επιλογή Φακέλου Directory: Φάκελος: Exporting Εγαγωγή Please wait while your songs are exported. ΠαÏακαλοÏμε πεÏιμένετε όσο εξάγονται οι Ïμνοι σας. You need to add at least one Song to export. ΠÏέπει να επιλέξετε τουλάχιστον έναν Ύμνο Ï€Ïος εξαγωγή. No Save Location specified Δεν οÏίστηκε Τοποθεσία Αποθήκευσης Starting export... Εκκίνηση εξαγωγής... You need to specify a directory. ΠÏέπει να οÏίσετε έναν φάκελο. Select Destination Folder Επιλογή Φακέλου ΠÏοοÏÎ¹ÏƒÎ¼Î¿Ï Select the directory where you want the songs to be saved. Επιλέξτε τον φάκελο στον οποίο θέλετε να αποθηκεÏσετε τους Ïμνους σας. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type ΕνεÏγοποίηση αναζήτησης κατά την πληκτÏολόγηση SongsPlugin.ImportWizardForm Select Document/Presentation Files Επιλέξτε ΑÏχεία ΕγγÏάφων/ΠαÏουσιάσεων Song Import Wizard Οδηγός Εισαγωγής Ύμνων This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Ο οδηγός αυτος θα σας βοηθήσει να εισάγετε Ïμνους διαφόÏων μοÏφών. Κάντε κλικ στο κουμπί "επόμενο" παÏακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας την μοÏφή από την οποία θέλετε να εισάγετε. Generic Document/Presentation Γενικό ΈγγÏαφο/ΠαÏουσίαση Add Files... ΠÏοσθήκη ΑÏχειων... Remove File(s) ΑφαιÏεση ΑÏχείων Please wait while your songs are imported. ΠαÏακαλοÏμε πεÏιμένετε όσο οι Ïμνοι σας εισάγονται. Words Of Worship Song Files ΑÏχεία Ύμνων Words Of Worship Songs Of Fellowship Song Files ΑÏχεία Ύμνων Songs Of Fellowship SongBeamer Files ΑÏχεία SongBeamer SongShow Plus Song Files ΑÏχεία Ύμνων SongShow Plus Foilpresenter Song Files ΑÏχεία Ύμνων Foilpresenter Copy ΑντιγÏαφή Save to File Αποθήκευση στο ΑÏχείο The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αÏχείων Ï„Ïπου Songs of Fellowship έχει απενεÏγοποιηθεί επειδή το OpenLP δεν έχει Ï€Ïοσβαση στο OpenOffice ή το Libreoffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αÏχείων Î³ÎµÎ½Î¹ÎºÎ¿Ï Ï„Ïπου έχει απενεÏγοποιηθεί επειδή το OpenLP δεν έχει Ï€Ïοσβαση στο OpenOffice ή το Libreoffice. OpenLyrics Files ΑÏχεία OpenLyrics CCLI SongSelect Files ΑÏχεία CCLI SongSelect EasySlides XML File ΑÏχείο EasySlides XML EasyWorship Song Database Βάση Δεδομένων Ύμνων EasyWorship DreamBeam Song Files ΑÏχεία Ύμνων DreamBeam You need to specify a valid PowerSong 1.0 database folder. ΠÏέπει να καθοÏίσετε έναν έγκυÏο φάκελο βάσης δεδομένων του PowerSong 1.0. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. ΠÏώτα μετατÏέψτε την βάση δεδομένων του ZionWorx σε αÏχείο κειμένου CSV, όπως πεÏιγÏάφεται στο <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files ΑÏχεία Ύμνων SundayPlus This importer has been disabled. Το Ï€ÏόγÏαμμα εισαγωγής έχει απενεÏγοποιηθεί. MediaShout Database Βάση Δεδομένων MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Το Ï€ÏόγÏαμμα εισαγωγής Mediashout υποστηÏίζεται μόνο στα Windows. Έχει απενεÏγοποιηθεί λόγω μιας αποÏσας Ï€Ïοσθήκης του Python. Αν θέλετε να χÏησιμοποιήσετε το Ï€ÏόγÏαμμα εισαγωγής θα χÏειαστεί να εγκαταστήσετε το Ï€Ïόσθετο "pyodbc". SongPro Text Files ΑÏχεία Κειμένου SongPro SongPro (Export File) SongPro (Εξαγωγή ΑÏχείου) In SongPro, export your songs using the File -> Export menu Στο SongPro, να εξάγετε τους Ïμνους σας χÏησιμοποιώντας το Î¼ÎµÎ½Î¿Ï File->Export EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Επιλογή ΑÏχείων Πολυμέσων Select one or more audio files from the list below, and click OK to import them into this song. Επιλέξτε ένα ή πεÏισσοτεÏα αÏχεία ήχου από την παÏακάτω λίστα και κάντε κλικ στο OK για να τα εισάγετε σε αυτόν τον Ïμνο. SongsPlugin.MediaItem Titles Τίτλοι Lyrics Στίχοι CCLI License: Άδεια CCLI: Entire Song ΟλόκληÏος Ύμνος Maintain the lists of authors, topics and books. ΔιατήÏηση της λίστας συγγÏαφέων, θεμάτων και βιβλίων. copy For song cloning αντιγÏαφή Search Titles... Αναζήτηση Τίτλων... Search Entire Song... Αναζήτηση ΟλόκληÏου Ύμνου... Search Lyrics... Αναζήτηση Στίχων... Search Authors... Αναζήτηση ΣυγγÏαφέων... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Δεν ήταν δυνατό να ανοιχτή η βάση δεδομένων MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Εξαγωγή "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. Κανένας Ïμνος Ï€Ïος εισαγωγή. Verses not found. Missing "PART" header. Δεν βÏέθηκαν εδάφια. Απουσιάζει η κεφαλίδα "PART". No %s files found. Δεν βÏέθηκαν αÏχεία %s. Invalid %s file. Unexpected byte value. Μη έγκυÏο αÏχείο %s. Μη αναμενόμενη τιμή byte. Invalid %s file. Missing "TITLE" header. Μη έγκυÏο αÏχείο %s. Απουσία κεφαλίδας "TITLE". Invalid %s file. Missing "COPYRIGHTLINE" header. Μη έγκυÏο αÏχείο %s. Απουσία κεφαλίδας "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: Όν&ομα: &Publisher: &Εκδότης: You need to type in a name for the book. ΠÏέπει να δώσετε ένα όνομα για το βιβλίο. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Η εξαγωγή του βιβλίου σας απέτυχε. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Τέλος Εξαγωγής. Για εισαγωγή αυτών των αÏχείων χÏησιμοποιήστε το <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright πνευματικά δικαιώματα The following songs could not be imported: Τα ακόλουθα Ï„ÏαγοÏδια δεν εισήχθηκαν: Cannot access OpenOffice or LibreOffice Δεν είναι δυνατή η Ï€Ïόσβαση στο OpenOffice ή το LibreOffice Unable to open file ΑδÏνατο το άνοιγμα του αÏχείου File not found Το αÏχείο δεν βÏέθηκε SongsPlugin.SongMaintenanceForm Could not add your author. Ο συγγÏαφέας σας δεν Ï€Ïοστέθηκε. This author already exists. Ο συγγÏαφέας ήδη υπάÏχει. Could not add your topic. Δεν Ï€Ïοστέθηκε η κατηγοÏία σας. This topic already exists. Η κατηγοÏία υπάÏχει ήδη. Could not add your book. Το βιβλίο σας δεν Ï€Ïοστέθηκε. This book already exists. Αυτό το βιβλίο ήδη υπάÏχει. Could not save your changes. Οι αλλαγές σαν δεν αποθηκεÏτηκαν. Could not save your modified author, because the author already exists. Ο συγγÏαφέας σας δεν αποθηκεÏτηκε, επειδή υπάÏχει ήδη. Could not save your modified topic, because it already exists. Η Ï„Ïοποποιημένη κατηγοÏία σας δεν αποθηκεÏτηκε, επειδή υπάÏχει ήδη. Delete Author ΔιαγÏαφή ΣυγγÏαφέα Are you sure you want to delete the selected author? ΣίγουÏα θέλετε να διαγÏάψετε τον επιλεγμένο συγγÏαφέα; This author cannot be deleted, they are currently assigned to at least one song. Αυτός ο συγγÏαφέας δεν μποÏεί να διαγÏαφεί, είναι συνδεδεμένος με τουλάχιστον έναν Ïμνο. Delete Topic ΔιαγÏαφή ΚατηγοÏίας Are you sure you want to delete the selected topic? ΣίγουÏα θέλετε να διαγÏάψετε την επιλεγμένη κατηγοÏία; This topic cannot be deleted, it is currently assigned to at least one song. Η κατηγοÏία δεν μποÏεί να διαγÏαφεί, είναι συνδεδεμένη με τουλάχιστον έναν Ïμνο. Delete Book ΔιαγÏαφή Βιβλίου Are you sure you want to delete the selected book? ΣίγουÏα θέλετε να διαγÏάψετε το επιλεγμένο βιβλίο; This book cannot be deleted, it is currently assigned to at least one song. Αυτό το βιβλίο δεν μποÏεί να διαγÏαφεί, είναι συνδεδεμένο με τουλάχιστον έναν Ïμνο. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ο συγγÏαφέας %s υπάÏχει ήδη. Θέλετε να κάνετε τους Ïμνους με συγγÏαφέα τον %s να χÏησιμοποιοÏν τον υπάÏχοντα συγγÏαφέα %s; The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Η κατηγοÏία %s υπάÏχει ήδη. Θέλετε να κάνετε τους Ïμνους με κατηγοÏία %s να χÏησιμοποιοÏν την υπάÏχουσα κατηγοÏία %s; The book %s already exists. Would you like to make songs with book %s use the existing book %s? Το βιβλίο %s υπάÏχει ήδη. Θέλετε να κάνετε τους Ïμνους με το βιβλίο %s να χÏησιμοποιοÏν το υπάÏχον βιβλίο %s; SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Όνομα ΧÏήστη: Password: Κωδικός: Save username and password Login Search Text: Search Αναζήτηση Found %s song(s) Logout View ΠÏοβολή Title: Τίτλος: Author(s): Copyright: Πνευματικά Δικαιώματα: CCLI Number: Lyrics: Back Πίσω Import Εισαγωγή More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode ΛειτουÏγία Ύμνων Display verses on live tool bar ΠÏοβολή των εδαφίων στην εÏγαλειοθήκη Ï€Ïοβολής Update service from song edit ΕνημέÏωση λειτουÏγίας από την επεξεÏγασία Ïμνων Import missing songs from service files Εισαγωγή απόντων Ïμνων από αÏχεία λειτουÏγίας Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance ΣυντήÏηση ΚατηγοÏιών Topic name: Όνομα κατηγοÏίας: You need to type in a topic name. ΠÏέπει να δώσετε ένα όνομα κατηγοÏίας. SongsPlugin.VerseType Verse Εδάφιο Chorus ΡεφÏαίν Bridge ΓέφυÏα Pre-Chorus ΠÏο-ΡεφÏαίν Intro Εισαγωγή Ending Τέλος Other Άλλο SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Σφάλμα κατά την ανάγνωση του αÏχείου CSV. Line %d: %s ΓÏαμμή %d: %s Decoding error: %s Σφάλμα αποκωδικοποίησης: %s File not valid WorshipAssistant CSV format. Record %d ΕγγÏαφή %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Σφάλμα κατά την ανάγνωση του αÏχείου CSV. File not valid ZionWorx CSV format. Το αÏχείο δεν έχει την κατάλληλη μοÏφή του ZionWorx CSV. Line %d: %s ΓÏαμμή %d: %s Decoding error: %s Σφάλμα αποκωδικοποίησης: %s Record %d ΕγγÏαφή %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information ΠληÏοφοÏίες No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/en_GB.ts0000644000175000017500000153645212657640340015704 0ustar raoulraoul AlertsPlugin &Alert &Alert Show an alert message. Show an alert message. Alert name singular Alert Alerts name plural Alerts Alerts container title Alerts <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message Alert Message Alert &text: Alert &text: &New &New &Save &Save Displ&ay Displ&ay Display && Cl&ose Display && Cl&ose New Alert New Alert &Parameter: &Parameter: No Parameter Found No Parameter Found You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? No Placeholder Found No Placeholder Found The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. Alert message created and displayed. AlertsPlugin.AlertsTab Font Font Font name: Font name: Font color: Font color: Background color: Background color: Font size: Font size: Alert timeout: Alert timeout: BiblesPlugin &Bible &Bible Bible name singular Bible Bibles name plural Bibles Bibles container title Bibles No Book Found No Book Found No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Import a Bible. Import a Bible. Add a new Bible. Add a new Bible. Edit the selected Bible. Edit the selected Bible. Delete the selected Bible. Delete the selected Bible. Preview the selected Bible. Preview the selected Bible. Send the selected Bible live. Send the selected Bible live. Add the selected Bible to the service. Add the selected Bible to the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. &Upgrade older Bibles &Upgrade older Bibles Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. Genesis Genesis Exodus Exodus Leviticus Leviticus Numbers Numbers Deuteronomy Deuteronomy Joshua Joshua Judges Judges Ruth Ruth 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Kings 2 Kings 2 Kings 1 Chronicles 1 Chronicles 2 Chronicles 2 Chronicles Ezra Ezra Nehemiah Nehemiah Esther Esther Job Job Psalms Psalms Proverbs Proverbs Ecclesiastes Ecclesiastes Song of Solomon Song of Solomon Isaiah Isaiah Jeremiah Jeremiah Lamentations Lamentations Ezekiel Ezekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadiah Jonah Jonah Micah Micah Nahum Nahum Habakkuk Habakkuk Zephaniah Zephaniah Haggai Haggai Zechariah Zechariah Malachi Malachi Matthew Matthew Mark Mark Luke Luke John John Acts Acts Romans Romans 1 Corinthians 1 Corinthians 2 Corinthians 2 Corinthians Galatians Galatians Ephesians Ephesians Philippians Philippians Colossians Colossians 1 Thessalonians 1 Thessalonians 2 Thessalonians 2 Thessalonians 1 Timothy 1 Timothy 2 Timothy 2 Timothy Titus Titus Philemon Philemon Hebrews Hebrews James James 1 Peter 1 Peter 2 Peter 2 Peter 1 John 1 John 2 John 2 John 3 John 3 John Jude Jude Revelation Revelation Judith Judith Wisdom Wisdom Tobit Tobit Sirach Sirach Baruch Baruch 1 Maccabees 1 Maccabees 2 Maccabees 2 Maccabees 3 Maccabees 3 Maccabees 4 Maccabees 4 Maccabees Rest of Daniel Rest of Daniel Rest of Esther Rest of Esther Prayer of Manasses Prayer of Manasses Letter of Jeremiah Letter of Jeremiah Prayer of Azariah Prayer of Azariah Susanna Susanna Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verse verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verses - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse end BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. You need to specify a book name for "%s". You need to specify a book name for "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Duplicate Book Name Duplicate Book Name The Book Name "%s" has been entered more than once. The Book Name "%s" has been entered more than once. BiblesPlugin.BibleManager Scripture Reference Error Scripture Reference Error Web Bible cannot be used Web Bible cannot be used Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. No Bibles Available No Bibles Available Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Verse Display Only show new chapter numbers Only show new chapter numbers Bible theme: Bible theme: No Brackets No Brackets ( And ) ( And ) { And } { And } [ And ] [ And ] Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. Display second Bible verses Display second Bible verses Custom Scripture References Custom Scripture References Verse Separator: Verse Separator: Range Separator: Range Separator: List Separator: List Separator: End Mark: End Mark: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. English English Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Bible Language Bible Language Application Language Application Language Show verse numbers Show verse numbers BiblesPlugin.BookNameDialog Select Book Name Select Book Name Current name: Current name: Corresponding name: Corresponding name: Show Books From Show Books From Old Testament Old Testament New Testament New Testament Apocrypha Apocrypha The following book name cannot be matched up internally. Please select the corresponding name from the list. The following book name cannot be matched up internally. Please select the corresponding name from the list. BiblesPlugin.BookNameForm You need to select a book. You need to select a book. BiblesPlugin.CSVBible Importing books... %s Importing books... %s Importing verses... done. Importing verses... done. BiblesPlugin.EditBibleForm Bible Editor Bible Editor License Details Licence Details Version name: Version name: Copyright: Copyright: Permissions: Permissions: Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Global Settings Global Settings Bible Language Bible Language Application Language Application Language English English This is a Web Download Bible. It is not possible to customize the Book Names. This is a Web Download Bible. It is not possible to customize the Book Names. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Registering Bible and loading books... Registering Language... Registering Language... Importing %s... Importing <book name>... Importing %s... Download Error Download Error There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Parse Error Parse Error There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. BiblesPlugin.ImportWizardForm Bible Import Wizard Bible Import Wizard This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Web Download Web Download Location: Location: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bible: Download Options Download Options Server: Server: Username: Username: Password: Password: Proxy Server (Optional) Proxy Server (Optional) License Details Licence Details Set up the Bible's license details. Set up the Bible's licence details. Version name: Version name: Copyright: Copyright: Please wait while your Bible is imported. Please wait while your Bible is imported. You need to specify a file with books of the Bible to use in the import. You need to specify a file with books of the Bible to use in the import. You need to specify a file of Bible verses to import. You need to specify a file of Bible verses to import. You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. Your Bible import failed. Your Bible import failed. CSV File CSV File Bibleserver Bibleserver Permissions: Permissions: Bible file: Bible file: Books file: Books file: Verses file: Verses file: Registering Bible... Registering Bible... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Click to download bible list Download bible list Download bible list Error during download Error during download An error occurred while downloading the list of bibles from %s. An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language Select Language OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Language: Language: BiblesPlugin.LanguageForm You need to choose a language. You need to choose a language. BiblesPlugin.MediaItem Quick Quick Find: Find: Book: Book: Chapter: Chapter: Verse: Verse: From: From: To: To: Text Search Text Search Second: Second: Scripture Reference Scripture Reference Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Bible not fully loaded. Bible not fully loaded. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Search Scripture Reference... Search Scripture Reference... Search Text... Search Text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Advanced Advanced BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Select a Backup Directory Bible Upgrade Wizard Bible Upgrade Wizard This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Select Backup Directory Select Backup Directory Please select a backup directory for your Bibles Please select a backup directory for your Bibles Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. Please select a backup location for your Bibles. Backup Directory: Backup Directory: There is no need to backup my Bibles There is no need to backup my Bibles Select Bibles Select Bibles Please select the Bibles to upgrade Please select the Bibles to upgrade Upgrading Upgrading Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... Download Error Download Error To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete , %s failed , %s failed Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s Upgrade failed. Upgrade failed. You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. Starting upgrade... Starting upgrade... There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Custom Slide Custom Slides name plural Custom Slides Custom Slides container title Custom Slides Load a new custom slide. Load a new custom slide. Import a custom slide. Import a custom slide. Add a new custom slide. Add a new custom slide. Edit the selected custom slide. Edit the selected custom slide. Delete the selected custom slide. Delete the selected custom slide. Preview the selected custom slide. Preview the selected custom slide. Send the selected custom slide live. Send the selected custom slide live. Add the selected custom slide to the service. Add the selected custom slide to the service. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display Custom Display Display footer Display footer Import missing custom slides from service files Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides Edit Custom Slides &Title: &Title: Add a new slide at bottom. Add a new slide at bottom. Edit the selected slide. Edit the selected slide. Edit all the slides at once. Edit all the slides at once. Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. The&me: The&me: &Credits: &Credits: You need to type in a title. You need to type in a title. Ed&it All Ed&it All Insert Slide Insert Slide You need to add at least one slide. You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide Edit Slide CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Are you sure you want to delete the %d selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. Image name singular Image Images name plural Images Images container title Images Load a new image. Load a new image. Add a new image. Add a new image. Edit the selected image. Edit the selected image. Delete the selected image. Delete the selected image. Preview the selected image. Preview the selected image. Send the selected image live. Send the selected image live. Add the selected image to the service. Add the selected image to the service. ImagePlugin.AddGroupForm Add group Add group Parent group: Parent group: Group name: Group name: You need to type in a group name. You need to type in a group name. Could not add the new group. Could not add the new group. This group already exists. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Select Image Group Add images to group: Add images to group: No group No group Existing group Existing group New group New group ImagePlugin.ExceptionDialog Select Attachment Select Attachment ImagePlugin.MediaItem Select Image(s) Select Image(s) You must select an image to replace the background with. You must select an image to replace the background with. Missing Image(s) Missing Image(s) The following image(s) no longer exist: %s The following image(s) no longer exist: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. There was no display item to amend. There was no display item to amend. -- Top-level group -- -- Top-level group -- You must select an image or group to delete. You must select an image or group to delete. Remove group Remove group Are you sure you want to remove "%s" and everything in it? Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Visible background for images with aspect ratio different to screen. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. Media name singular Media Media name plural Media Media container title Media Load new media. Load new media. Add new media. Add new media. Edit the selected media. Edit the selected media. Delete the selected media. Delete the selected media. Preview the selected media. Preview the selected media. Send the selected media live. Send the selected media live. Add the selected media to the service. Add the selected media to the service. MediaPlugin.MediaClipSelector Select Media Clip Select Media Clip Source Source Media path: Media path: Select drive from list Select drive from list Load disc Load disc Track Details Track Details Title: Title: Audio track: Audio track: Subtitle track: Subtitle track: HH:mm:ss.z HH:mm:ss.z Clip Range Clip Range Start point: Start point: Set start point Set start point Jump to start point Jump to start point End point: End point: Set end point Set end point Jump to end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given No path was given Given path does not exists Given path does not exists An error happened during initialization of VLC player An error happened during initialization of VLC player VLC player failed playing the media VLC player failed playing the media CD not loaded correctly CD not loaded correctly The CD was not loaded correctly, please re-load and try again. The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Set name of mediaclip Name of mediaclip: Name of mediaclip: Enter a valid name or cancel Enter a valid name or cancel Invalid character Invalid character The name of the mediaclip must not contain the character ":" The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Select Media You must select a media file to delete. You must select a media file to delete. You must select a media file to replace the background with. You must select a media file to replace the background with. There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. Missing Media File Missing Media File The file %s no longer exists. The file %s no longer exists. Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) There was no display item to amend. There was no display item to amend. Unsupported File Unsupported File Use Player: Use Player: VLC player required VLC player required VLC player required for playback of optical devices VLC player required for playback of optical devices Load CD/DVD Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. The optical disc %s is no longer available. Mediaclip already saved Mediaclip already saved This mediaclip has already been saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden Allow media player to be overridden Start Live items automatically Start Live items automatically OPenLP.MainWindow &Projector Manager &Projector Manager OpenLP Image Files Image Files Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Backup Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! Backup of the data folder failed! A backup of the data folder has been created at %s A backup of the data folder has been created at %s Open Open OpenLP.AboutForm Credits Credits License License build %s build %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. Volunteer Volunteer Project Lead Project Lead Developers Developers Contributors Contributors Packagers Packagers Testers Testers Translators Translators Afrikaans (af) Afrikaans (af) Czech (cs) Czech (cs) Danish (da) Danish (da) German (de) German (de) Greek (el) Greek (el) English, United Kingdom (en_GB) English, United Kingdom (en_GB) English, South Africa (en_ZA) English, South Africa (en_ZA) Spanish (es) Spanish (es) Estonian (et) Estonian (et) Finnish (fi) Finnish (fi) French (fr) French (fr) Hungarian (hu) Hungarian (hu) Indonesian (id) Indonesian (id) Japanese (ja) Japanese (ja) Norwegian BokmÃ¥l (nb) Norwegian BokmÃ¥l (nb) Dutch (nl) Dutch (nl) Polish (pl) Polish (pl) Portuguese, Brazil (pt_BR) Portuguese, Brazil (pt_BR) Russian (ru) Russian (ru) Swedish (sv) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Chinese(China) (zh_CN) Documentation Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings UI Settings Number of recent files to display: Number of recent files to display: Remember active media manager tab on startup Remember active media manager tab on startup Double-click to send items straight to live Double-click to send items straight to live Expand new service items on creation Expand new service items on creation Enable application exit confirmation Enable application exit confirmation Mouse Cursor Mouse Cursor Hide mouse cursor when over display window Hide mouse cursor when over display window Default Image Default Image Background color: Background color: Image file: Image file: Open File Open File Advanced Advanced Preview items when clicked in Media Manager Preview items when clicked in Media Manager Browse for an image file to display. Browse for an image file to display. Revert to the default OpenLP logo. Revert to the default OpenLP logo. Default Service Name Default Service Name Enable default service name Enable default service name Date and Time: Date and Time: Monday Monday Tuesday Tuesday Wednesday Wednesday Friday Friday Saturday Saturday Sunday Sunday Now Now Time when usual service starts. Time when usual service starts. Name: Name: Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. Revert to the default service name "%s". Revert to the default service name "%s". Example: Example: Bypass X11 Window Manager Bypass X11 Window Manager Syntax error. Syntax error. Data Location Data Location Current path: Current path: Custom path: Custom path: Browse for new data file location. Browse for new data file location. Set the data location to the default. Set the data location to the default. Cancel Cancel Cancel OpenLP data directory location change. Cancel OpenLP data directory location change. Copy data to new location. Copy data to new location. Copy the OpenLP data files to the new location. Copy the OpenLP data files to the new location. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. Data Directory Error Data Directory Error Select Data Directory Location Select Data Directory Location Confirm Data Directory Change Confirm Data Directory Change Reset Data Directory Reset Data Directory Overwrite Existing Data Overwrite Existing Data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Thursday Thursday Display Workarounds Display Workarounds Use alternating row colours in lists Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required Restart Required This change will only take effect once OpenLP has been restarted. This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. Click to select a colour. OpenLP.DB RGB RGB Video Video Digital Digital Storage Storage Network Network RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Storage 1 Storage 2 Storage 2 Storage 3 Storage 3 Storage 4 Storage 4 Storage 5 Storage 5 Storage 6 Storage 6 Storage 7 Storage 7 Storage 8 Storage 8 Storage 9 Storage 9 Network 1 Network 1 Network 2 Network 2 Network 3 Network 3 Network 4 Network 4 Network 5 Network 5 Network 6 Network 6 Network 7 Network 7 Network 8 Network 8 Network 9 Network 9 OpenLP.ExceptionDialog Error Occurred Error Occurred Send E-Mail Send E-Mail Save to File Save to File Attach File Attach File Description characters to enter : %s Description characters to enter : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Save Crash Report Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) OpenLP.FileRenameForm File Rename File Rename New File Name: New File Name: File Copy File Copy OpenLP.FirstTimeLanguageForm Select Translation Select Translation Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. Translation: Translation: OpenLP.FirstTimeWizard Songs Songs First Time Wizard First Time Wizard Welcome to the First Time Wizard Welcome to the First Time Wizard Activate required Plugins Activate required Plugins Select the Plugins you wish to use. Select the Plugins you wish to use. Bible Bible Images Images Presentations Presentations Media (Audio and Video) Media (Audio and Video) Allow remote access Allow remote access Monitor Song Usage Monitor Song Usage Allow Alerts Allow Alerts Default Settings Default Settings Downloading %s... Downloading %s... Enabling selected plugins... Enabling selected plugins... No Internet Connection No Internet Connection Unable to detect an Internet connection. Unable to detect an Internet connection. Sample Songs Sample Songs Select and download public domain songs. Select and download public domain songs. Sample Bibles Sample Bibles Select and download free Bibles. Select and download free Bibles. Sample Themes Sample Themes Select and download sample themes. Select and download sample themes. Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. Default output display: Default output display: Select default theme: Select default theme: Starting configuration process... Starting configuration process... Setting Up And Downloading Setting Up And Downloading Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. Setting Up Setting Up Custom Slides Custom Slides Finish Finish No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Download Error Download Error There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Downloading Resource Index Please wait while the resource index is downloaded. Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Please wait while OpenLP downloads the resource index file... Downloading and Configuring Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Please wait while resources are downloaded and OpenLP is configured. Network Error Network Error There was a network error attempting to connect to retrieve initial configuration information There was a network error attempting to connect to retrieve initial configuration information Cancel Cancel Unable to download some files Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Configure Formatting Tags Description Description Tag Tag Start HTML Start HTML End HTML End HTML Default Formatting Default Formatting Custom Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error Validation Error Description is missing Description is missing Tag is missing Tag is missing Tag %s already defined. Tag %s already defined. Description %s already defined. Description %s already defined. Start tag %s is not valid HTML Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Red Black Black Blue Blue Yellow Yellow Green Green Pink Pink Orange Orange Purple Purple White White Superscript Superscript Subscript Subscript Paragraph Paragraph Bold Bold Italics Italics Underline Underline Break Break OpenLP.GeneralTab General General Monitors Monitors Select monitor for output display: Select monitor for output display: Display if a single screen Display if a single screen Application Startup Application Startup Show blank screen warning Show blank screen warning Automatically open the last service Automatically open the last service Show the splash screen Show the splash screen Application Settings Application Settings Prompt to save before starting a new service Prompt to save before starting a new service Automatically preview next item in service Automatically preview next item in service sec sec CCLI Details CCLI Details SongSelect username: SongSelect username: SongSelect password: SongSelect password: X X Y Y Height Height Width Width Check for updates to OpenLP Check for updates to OpenLP Unblank display when adding new live item Unblank display when adding new live item Timed slide interval: Timed slide interval: Background Audio Background Audio Start background audio paused Start background audio paused Service Item Slide Limits Service Item Slide Limits Override display position: Override display position: Repeat track list Repeat track list Behavior of next/previous on the last/first slide: Behavior of next/previous on the last/first slide: &Remain on Slide &Remain on Slide &Wrap around &Wrap around &Move to next/previous service item &Move to next/previous service item OpenLP.LanguageManager Language Language Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. OpenLP.MainDisplay OpenLP Display OpenLP Display OpenLP.MainWindow &File &File &Import &Import &Export &Export &View &View M&ode M&ode &Tools &Tools &Settings &Settings &Language &Language &Help &Help Service Manager Service Manager Theme Manager Theme Manager Open an existing service. Open an existing service. Save the current service to disk. Save the current service to disk. Save Service As Save Service As Save the current service under a new name. Save the current service under a new name. E&xit E&xit Quit OpenLP Quit OpenLP &Theme &Theme &Configure OpenLP... &Configure OpenLP... &Media Manager &Media Manager Toggle Media Manager Toggle Media Manager Toggle the visibility of the media manager. Toggle the visibility of the media manager. &Theme Manager &Theme Manager Toggle Theme Manager Toggle Theme Manager Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. &Service Manager &Service Manager Toggle Service Manager Toggle Service Manager Toggle the visibility of the service manager. Toggle the visibility of the service manager. &Preview Panel &Preview Panel Toggle Preview Panel Toggle Preview Panel Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. &Live Panel &Live Panel Toggle Live Panel Toggle Live Panel Toggle the visibility of the live panel. Toggle the visibility of the live panel. List the Plugins List the Plugins &User Guide &User Guide &About &About More information about OpenLP More information about OpenLP &Online Help &Online Help &Web Site &Web Site Use the system language, if available. Use the system language, if available. Set the interface language to %s Set the interface language to %s Add &Tool... Add &Tool... Add an application to the list of tools. Add an application to the list of tools. &Default &Default Set the view mode back to the default. Set the view mode back to the default. &Setup &Setup Set the view mode to Setup. Set the view mode to Setup. &Live &Live Set the view mode to Live. Set the view mode to Live. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP Version Updated OpenLP Version Updated OpenLP Main Display Blanked OpenLP Main Display Blanked The Main Display has been blanked out The Main Display has been blanked out Default Theme: %s Default Theme: %s English Please add the name of your language here English Configure &Shortcuts... Configure &Shortcuts... Open &Data Folder... Open &Data Folder... Open the folder where songs, bibles and other data resides. Open the folder where songs, Bibles and other data resides. &Autodetect &Autodetect Update Theme Images Update Theme Images Update the preview images for all themes. Update the preview images for all themes. Print the current service. Print the current service. L&ock Panels L&ock Panels Prevent the panels being moved. Prevent the panels being moved. Re-run First Time Wizard Re-run First Time Wizard Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run First Time Wizard? Re-run First Time Wizard? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Clear List Clear List of recent files Clear List Clear the list of recent files. Clear the list of recent files. Configure &Formatting Tags... Configure &Formatting Tags... Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file Settings Settings Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine Import settings? Import settings? Open File Open File OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) Import settings Import settings OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Export Settings File Export Settings File OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) New Data Directory Error New Data Directory Error Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP Data directory copy failed %s OpenLP Data directory copy failed %s General General Library Library Jump to the search box of the current active plugin. Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Projector Manager Toggle Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Toggle the visibility of the Projector Manager Export setting error Export setting error The key "%s" does not have a default value so it will be skipped in this export. The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s An error occurred while exporting the settings: %s &Recent Services &Recent Services &New Service &New Service &Open Service &Open Service &Save Service &Save Service Save Service &As... Save Service &As... &Manage Plugins &Manage Plugins Exit OpenLP Exit OpenLP Are you sure you want to exit OpenLP? Are you sure you want to exit OpenLP? &Exit OpenLP &Exit OpenLP OpenLP.Manager Database Error Database Error The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s OpenLP cannot load your database. Database: %s OpenLP cannot load your database. Database: %s OpenLP.MediaManagerItem No Items Selected No Items Selected &Add to selected Service Item &Add to selected Service Item You must select one or more items to preview. You must select one or more items to preview. You must select one or more items to send live. You must select one or more items to send live. You must select one or more items. You must select one or more items. You must select an existing service item to add to. You must select an existing service item to add to. Invalid Service Item Invalid Service Item You must select a %s service item. You must select a %s service item. You must select one or more items to add. You must select one or more items to add. No Search Results No Search Results Invalid File Type Invalid File Type Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported &Clone &Clone Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tag is missing. <verse> tag is missing. <verse> tag is missing. OpenLP.PJLink1 Unknown status Unknown status No message No message Error while sending data to projector Error while sending data to projector Undefined command: Undefined command: OpenLP.PlayerTab Players Players Available Media Players Available Media Players Player Search Order Player Search Order Visible background for videos with aspect ratio different to screen. Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (unavailable) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" NOTE: To use VLC you must install the %s version OpenLP.PluginForm Plugin Details Plugin Details Status: Status: Active Active Inactive Inactive %s (Inactive) %s (Inactive) %s (Active) %s (Active) %s (Disabled) %s (Disabled) Manage Plugins Manage Plugins OpenLP.PrintServiceDialog Fit Page Fit Page Fit Width Fit Width OpenLP.PrintServiceForm Options Options Copy Copy Copy as HTML Copy as HTML Zoom In Zoom In Zoom Out Zoom Out Zoom Original Zoom Original Other Options Other Options Include slide text if available Include slide text if available Include service item notes Include service item notes Include play length of media items Include play length of media items Add page break before each text item Add page break before each text item Service Sheet Service Sheet Print Print Title: Title: Custom Footer Text: Custom Footer Text: OpenLP.ProjectorConstants OK OK General projector error General projector error Not connected error Not connected error Lamp error Lamp error Fan error Fan error High temperature detected High temperature detected Cover open detected Cover open detected Check filter Check filter Authentication Error Authentication Error Undefined Command Undefined Command Invalid Parameter Invalid Parameter Projector Busy Projector Busy Projector/Display Error Projector/Display Error Invalid packet received Invalid packet received Warning condition detected Warning condition detected Error condition detected Error condition detected PJLink class not supported PJLink class not supported Invalid prefix character Invalid prefix character The connection was refused by the peer (or timed out) The connection was refused by the peer (or timed out) The remote host closed the connection The remote host closed the connection The host address was not found The host address was not found The socket operation failed because the application lacked the required privileges The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The local system ran out of resources (e.g., too many sockets) The socket operation timed out The socket operation timed out The datagram was larger than the operating system's limit The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found The proxy address set with setProxy() was not found An unidentified error occurred An unidentified error occurred Not connected Not connected Connecting Connecting Connected Connected Getting status Getting status Off Off Initialize in progress Initialize in progress Power in standby Power in standby Warmup in progress Warmup in progress Power is on Power is on Cooldown in progress Cooldown in progress Projector Information available Projector Information available Sending data Sending data Received data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name Duplicate Name OpenLP.ProjectorEditForm Add New Projector Add New Projector Edit Projector Edit Projector IP Address IP Address Port Number Port Number PIN PIN Name Name Location Location Notes Notes Database Error Database Error There was an error saving projector information. See the log for the error There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add Projector Add a new projector Add a new projector Edit Projector Edit Projector Edit selected projector Edit selected projector Delete Projector Delete Projector Delete selected projector Delete selected projector Select Input Source Select Input Source Choose input source on selected projector Choose input source on selected projector View Projector View Projector View selected projector information View selected projector information Connect to selected projector Connect to selected projector Connect to selected projectors Connect to selected projectors Disconnect from selected projectors Disconnect from selected projectors Disconnect from selected projector Disconnect from selected projector Power on selected projector Power on selected projector Standby selected projector Standby selected projector Put selected projector in standby Put selected projector in standby Blank selected projector screen Blank selected projector screen Show selected projector screen Show selected projector screen &View Projector Information &View Projector Information &Edit Projector &Edit Projector &Connect Projector &Connect Projector D&isconnect Projector D&isconnect Projector Power &On Projector Power &On Projector Power O&ff Projector Power O&ff Projector Select &Input Select &Input Edit Input Source Edit Input Source &Blank Projector Screen &Blank Projector Screen &Show Projector Screen &Show Projector Screen &Delete Projector &Delete Projector Name Name IP IP Port Port Notes Notes Projector information not available at this time. Projector information not available at this time. Projector Name Projector Name Manufacturer Manufacturer Model Model Other info Other info Power status Power status Shutter is Shutter is Closed Closed Current source input is Current source input is Lamp Lamp On On Off Off Hours Hours No current errors or warnings No current errors or warnings Current errors/warnings Current errors/warnings Projector Information Projector Information No message No message Not Implemented Yet Not Implemented Yet Delete projector (%s) %s? Delete projector (%s) %s? Are you sure you want to delete this projector? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Fan Lamp Lamp Temperature Temperature Cover Cover Filter Filter Other Other OpenLP.ProjectorTab Projector Projector Communication Options Communication Options Connect to projectors on startup Connect to projectors on startup Socket timeout (seconds) Socket timeout (seconds) Poll time (seconds) Poll time (seconds) Tabbed dialog box Tabbed dialog box Single dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Duplicate IP Address Invalid IP Address Invalid IP Address Invalid Port Number Invalid Port Number OpenLP.ScreenList Screen Screen primary primary OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Length</strong>: %s [slide %d] [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Reorder Service Item OpenLP.ServiceManager Move to &top Move to &top Move item to the top of the service. Move item to the top of the service. Move &up Move &up Move item up one position in the service. Move item up one position in the service. Move &down Move &down Move item down one position in the service. Move item down one position in the service. Move to &bottom Move to &bottom Move item to the end of the service. Move item to the end of the service. &Delete From Service &Delete From Service Delete the selected item from the service. Delete the selected item from the service. &Add New Item &Add New Item &Add to Selected Item &Add to Selected Item &Edit Item &Edit Item &Reorder Item &Reorder Item &Notes &Notes &Change Item Theme &Change Item Theme File is not a valid service. File is not a valid service. Missing Display Handler Missing Display Handler Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive &Expand all &Expand all Expand all the service items. Expand all the service items. &Collapse all &Collapse all Collapse all the service items. Collapse all the service items. Open File Open File Moves the selection down the window. Moves the selection down the window. Move up Move up Moves the selection up the window. Moves the selection up the window. Go Live Go Live Send the selected item to Live. Send the selected item to Live. &Start Time &Start Time Show &Preview Show &Preview Modified Service Modified Service The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? Custom Service Notes: Custom Service Notes: Notes: Notes: Playing time: Playing time: Untitled Service Untitled Service File could not be opened because it is corrupt. File could not be opened because it is corrupt. Empty File Empty File This service file does not contain any data. This service file does not contain any data. Corrupt File Corrupt File Load an existing service. Load an existing service. Save this service. Save this service. Select a theme for the service. Select a theme for the service. Slide theme Slide theme Notes Notes Edit Edit Service copy only Service copy only Error Saving File Error Saving File There was an error saving your file. There was an error saving your file. Service File(s) Missing Service File(s) Missing &Rename... &Rename... Create New &Custom Slide Create New &Custom Slide &Auto play slides &Auto play slides Auto play slides &Loop Auto play slides &Loop Auto play slides &Once Auto play slides &Once &Delay between slides &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - inactive &Auto Start - active &Auto Start - active Input delay Input delay Delay between slides in seconds. Delay between slides in seconds. Rename item title Rename item title Title: Title: An error occurred while writing the service file: %s An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Service Item Notes OpenLP.SettingsForm Configure OpenLP Configure OpenLP OpenLP.ShortcutListDialog Action Action Shortcut Shortcut Duplicate Shortcut Duplicate Shortcut The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. Alternate Alternate Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Default Default Custom Custom Capture shortcut. Capture shortcut. Restore the default shortcut of this action. Restore the default shortcut of this action. Restore Default Shortcuts Restore Default Shortcuts Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? Configure Shortcuts Configure Shortcuts OpenLP.SlideController Hide Hide Go To Go To Blank Screen Blank Screen Blank to Theme Blank to Theme Show Desktop Show Desktop Previous Service Previous Service Next Service Next Service Escape Item Escape Item Move to previous. Move to previous. Move to next. Move to next. Play Slides Play Slides Delay between slides in seconds. Delay between slides in seconds. Move to live. Move to live. Add to Service. Add to Service. Edit and reload song preview. Edit and reload song preview. Start playing media. Start playing media. Pause audio. Pause audio. Pause playing media. Pause playing media. Stop playing media. Stop playing media. Video position. Video position. Audio Volume. Audio Volume. Go to "Verse" Go to "Verse" Go to "Chorus" Go to "Chorus" Go to "Bridge" Go to "Bridge" Go to "Pre-Chorus" Go to "Pre-Chorus" Go to "Intro" Go to "Intro" Go to "Ending" Go to "Ending" Go to "Other" Go to "Other" Previous Slide Previous Slide Next Slide Next Slide Pause Audio Pause Audio Background Audio Background Audio Go to next audio track. Go to next audio track. Tracks Tracks OpenLP.SourceSelectForm Select Projector Source Select Projector Source Edit Projector Source Text Edit Projector Source Text Ignoring current changes and return to OpenLP Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Save changes and return to OpenLP Delete entries for this projector Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Spelling Suggestions Formatting Tags Formatting Tags Language: Language: OpenLP.StartTimeForm Theme Layout Theme Layout The blue box shows the main area. The blue box shows the main area. The red box shows the footer. The red box shows the footer. OpenLP.StartTime_form Item Start and Finish Time Item Start and Finish Time Hours: Hours: Minutes: Minutes: Seconds: Seconds: Start Start Finish Finish Length Length Time Validation Error Time Validation Error Finish time is set after the end of the media item Finish time is set after the end of the media item Start time is after the finish time of the media item Start time is after the finish time of the media item OpenLP.ThemeForm (approximately %d lines per slide) (approximately %d lines per slide) OpenLP.ThemeManager Create a new theme. Create a new theme. Edit Theme Edit Theme Edit a theme. Edit a theme. Delete Theme Delete Theme Delete a theme. Delete a theme. Import Theme Import Theme Import a theme. Import a theme. Export Theme Export Theme Export a theme. Export a theme. &Edit Theme &Edit Theme &Delete Theme &Delete Theme Set As &Global Default Set As &Global Default %s (default) %s (default) You must select a theme to edit. You must select a theme to edit. You are unable to delete the default theme. You are unable to delete the default theme. You have not selected a theme. You have not selected a theme. Save Theme - (%s) Save Theme - (%s) Theme Exported Theme Exported Your theme has been successfully exported. Your theme has been successfully exported. Theme Export Failed Theme Export Failed Select Theme Import File Select Theme Import File File is not a valid theme. File is not a valid theme. &Copy Theme &Copy Theme &Rename Theme &Rename Theme &Export Theme &Export Theme You must select a theme to rename. You must select a theme to rename. Rename Confirmation Rename Confirmation Rename %s theme? Rename %s theme? You must select a theme to delete. You must select a theme to delete. Delete Confirmation Delete Confirmation Delete %s theme? Delete %s theme? Validation Error Validation Error A theme with this name already exists. A theme with this name already exists. Copy of %s Copy of <theme name> Copy of %s Theme Already Exists Theme Already Exists Theme %s already exists. Do you want to replace it? Theme %s already exists. Do you want to replace it? The theme export failed because this error occurred: %s The theme export failed because this error occurred: %s OpenLP Themes (*.otz) OpenLP Themes (*.otz) %s time(s) by %s %s time(s) by %s Unable to delete theme Unable to delete theme Theme is currently used %s Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Theme Wizard Welcome to the Theme Wizard Welcome to the Theme Wizard Set Up Background Set Up Background Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. Background type: Background type: Gradient Gradient Gradient: Gradient: Horizontal Horizontal Vertical Vertical Circular Circular Top Left - Bottom Right Top Left - Bottom Right Bottom Left - Top Right Bottom Left - Top Right Main Area Font Details Main Area Font Details Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text Font: Font: Size: Size: Line Spacing: Line Spacing: &Outline: &Outline: &Shadow: &Shadow: Bold Bold Italic Italic Footer Area Font Details Footer Area Font Details Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text Text Formatting Details Text Formatting Details Allows additional display formatting information to be defined Allows additional display formatting information to be defined Horizontal Align: Horizontal Align: Left Left Right Right Center Centre Output Area Locations Output Area Locations &Main Area &Main Area &Use default location &Use default location X position: X position: px px Y position: Y position: Width: Width: Height: Height: Use default location Use default location Theme name: Theme name: Edit Theme - %s Edit Theme - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Transitions: Transitions: &Footer Area &Footer Area Starting color: Starting color: Ending color: Ending color: Background color: Background color: Justify Justify Layout Preview Layout Preview Transparent Transparent Preview and Save Preview and Save Preview the theme and save it. Preview the theme and save it. Background Image Empty Background Image Empty Select Image Select Image Theme Name Missing Theme Name Missing There is no name for this theme. Please enter one. There is no name for this theme. Please enter one. Theme Name Invalid Theme Name Invalid Invalid theme name. Please enter one. Invalid theme name. Please enter one. Solid color Solid color color: color: Allows you to change and move the Main and Footer areas. Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. You have not selected a background image. Please select one before continuing. OpenLP.ThemesTab Global Theme Global Theme Theme Level Theme Level S&ong Level S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. &Service Level &Service Level Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. &Global Level &Global Level Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. Themes Themes Universal Settings Universal Settings &Wrap footer text &Wrap footer text OpenLP.Ui Delete the selected item. Delete the selected item. Move selection up one position. Move selection up one position. Move selection down one position. Move selection down one position. &Vertical Align: &Vertical Align: Finished import. Finished import. Format: Format: Importing Importing Importing "%s"... Importing "%s"... Select Import Source Select Import Source Select the import format and the location to import from. Select the import format and the location to import from. Open %s File Open %s File %p% %p% Ready. Ready. Starting import... Starting import... You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. Welcome to the Bible Import Wizard Welcome to the Bible Import Wizard Welcome to the Song Export Wizard Welcome to the Song Export Wizard Welcome to the Song Import Wizard Welcome to the Song Import Wizard Author Singular Author Authors Plural Authors © Copyright symbol. © Song Maintenance Song Maintenance Topic Singular Topic Topics Plural Topics Title and/or verses not found Title and/or verses not found XML syntax error XML syntax error Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard Open %s Folder Open %s Folder You need to specify one %s file to import from. A file type e.g. OpenSong You need to specify one %s file to import from. You need to specify one %s folder to import from. A song format e.g. PowerSong You need to specify one %s folder to import from. Importing Songs Importing Songs Welcome to the Duplicate Song Removal Wizard Welcome to the Duplicate Song Removal Wizard Written by Written by Author Unknown Author Unknown About About &Add &Add Add group Add group Advanced Advanced All Files All Files Automatic Automatic Background Color Background Color Bottom Bottom Browse... Browse... Cancel Cancel CCLI number: CCLI number: Create a new service. Create a new service. Confirm Delete Confirm Delete Continuous Continuous Default Default Default Color: Default Color: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M &Delete &Delete Display style: Display style: Duplicate Error Duplicate Error &Edit &Edit Empty Field Empty Field Error Error Export Export File File File Not Found File Not Found File %s not found. Please try selecting it individually. File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help Help h The abbreviated unit for hours h Invalid Folder Selected Singular Invalid Folder Selected Invalid File Selected Singular Invalid File Selected Invalid Files Selected Plural Invalid Files Selected Image Image Import Import Layout style: Layout style: Live Live Live Background Error Live Background Error Live Toolbar Live Toolbar Load Load Manufacturer Singular Manufacturer Manufacturers Plural Manufacturers Model Singular Model Models Plural Models m The abbreviated unit for minutes m Middle Middle New New New Service New Service New Theme New Theme Next Track Next Track No Folder Selected Singular No Folder Selected No File Selected Singular No File Selected No Files Selected Plural No Files Selected No Item Selected Singular No Item Selected No Items Selected Plural No Items Selected OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? Open service. Open service. Play Slides in Loop Play Slides in Loop Play Slides to End Play Slides to End Preview Preview Print Service Print Service Projector Singular Projector Projectors Plural Projectors Replace Background Replace Background Replace live background. Replace live background. Reset Background Reset Background Reset live background. Reset live background. s The abbreviated unit for seconds s Save && Preview Save && Preview Search Search Search Themes... Search bar place holder text Search Themes... You must select an item to delete. You must select an item to delete. You must select an item to edit. You must select an item to edit. Settings Settings Save Service Save Service Service Service Optional &Split Optional &Split Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. Start %s Start %s Stop Play Slides in Loop Stop Play Slides in Loop Stop Play Slides to End Stop Play Slides to End Theme Singular Theme Themes Plural Themes Tools Tools Top Top Unsupported File Unsupported File Verse Per Slide Verse Per Slide Verse Per Line Verse Per Line Version Version View View View Mode View Mode CCLI song number: CCLI song number: Preview Toolbar Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbook Songbooks Plural Songbooks OpenLP.core.lib %s and %s Locale list separator: 2 items %s and %s %s, and %s Locale list separator: end %s, and %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. Presentation name singular Presentation Presentations name plural Presentations Presentations container title Presentations Load a new presentation. Load a new presentation. Delete the selected presentation. Delete the selected presentation. Preview the selected presentation. Preview the selected presentation. Send the selected presentation live. Send the selected presentation live. Add the selected presentation to the service. Add the selected presentation to the service. PresentationPlugin.MediaItem Select Presentation(s) Select Presentation(s) Automatic Automatic Present using: Present using: File Exists File Exists A presentation with that filename already exists. A presentation with that filename already exists. This type of presentation is not supported. This type of presentation is not supported. Presentations (%s) Presentations (%s) Missing Presentation Missing Presentation The presentation %s is incomplete, please reload. The presentation %s is incomplete, please reload. The presentation %s no longer exists. The presentation %s no longer exists. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Available Controllers %s (unavailable) %s (unavailable) Allow presentation application to be overridden Allow presentation application to be overridden PDF options PDF options Use given full path for mudraw or ghostscript binary: Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. The program is not ghostscript or mudraw which is required. PowerPoint options PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. Remote name singular Remote Remotes name plural Remotes Remote container title Remote Server Config Change Server Config Change Server configuration changes will require a restart to take effect. Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager Service Manager Slide Controller Slide Controller Alerts Alerts Search Search Home Home Refresh Refresh Blank Blank Theme Theme Desktop Desktop Show Show Prev Prev Next Next Text Text Show Alert Show Alert Go Live Go Live Add to Service Add to Service Add &amp; Go to Service Add &amp; Go to Service No Results No Results Options Options Service Service Slides Slides Settings Settings Remote Remote Stage View Stage View Live View Live View RemotePlugin.RemoteTab Serve on IP address: Serve on IP address: Port number: Port number: Server Settings Server Settings Remote URL: Remote URL: Stage view URL: Stage view URL: Display stage time in 12h format Display stage time in 12h format Android App Android App Live view URL: Live view URL: HTTPS Server HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User Authentication User id: User id: Password: Password: Show thumbnails of non-text slides in remote and stage view. Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Song Usage Tracking &Delete Tracking Data &Delete Tracking Data Delete song usage data up to a specified date. Delete song usage data up to a specified date. &Extract Tracking Data &Extract Tracking Data Generate a report on song usage. Generate a report on song usage. Toggle Tracking Toggle Tracking Toggle the tracking of song usage. Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. SongUsage name singular SongUsage SongUsage name plural SongUsage SongUsage container title SongUsage Song Usage Song Usage Song usage tracking is active. Song usage tracking is active. Song usage tracking is inactive. Song usage tracking is inactive. display display printed printed SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Delete Song Usage Data Delete Selected Song Usage Events? Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? Deletion Successful Deletion Successful Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Song Usage Extraction Select Date Range Select Date Range to to Report Location Report Location Output File Location Output File Location usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Report Creation Report %s has been successfully created. Report %s has been successfully created. Output Path Not Selected Output Path Not Selected You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed Report Creation Failed An error occurred while creating the report: %s An error occurred while creating the report: %s SongsPlugin &Song &Song Import songs using the import wizard. Import songs using the import wizard. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. &Re-index Songs &Re-index Songs Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. Reindexing songs... Reindexing songs... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding Character Encoding The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. Song name singular Song Songs name plural Songs Songs container title Songs Exports songs using the export wizard. Exports songs using the export wizard. Add a new song. Add a new song. Edit the selected song. Edit the selected song. Delete the selected song. Delete the selected song. Preview the selected song. Preview the selected song. Send the selected song live. Send the selected song live. Add the selected song to the service. Add the selected song to the service. Reindexing songs Reindexing songs CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find &Duplicate Songs Find and remove duplicate songs in the song database. Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Words Music Author who wrote the music of a song Music Words and Music Author who wrote both lyrics and music of a song Words and Music Translation Author who translated the song Translation SongsPlugin.AuthorsForm Author Maintenance Author Maintenance Display name: Display name: First name: First name: Last name: Last name: You need to type in the first name of the author. You need to type in the first name of the author. You need to type in the last name of the author. You need to type in the last name of the author. You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? SongsPlugin.CCLIFileImport The file does not have a valid extension. The file does not have a valid extension. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Administered by %s "%s" could not be imported. %s "%s" could not be imported. %s Unexpected data formatting. Unexpected data formatting. No song text found. No song text found. [above are Song Tags with notes imported from EasyWorship] [above are Song Tags with notes imported from EasyWorship] This file does not exist. This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. This file is not a valid EasyWorship database. Could not retrieve encoding. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Custom Book Names SongsPlugin.EditSongForm Song Editor Song Editor &Title: &Title: Alt&ernate title: Alt&ernate title: &Lyrics: &Lyrics: &Verse order: &Verse order: Ed&it All Ed&it All Title && Lyrics Title && Lyrics &Add to Song &Add to Song &Remove &Remove A&dd to Song A&dd to Song R&emove R&emove New &Theme New &Theme Copyright Information Copyright Information Comments Comments Theme, Copyright Info && Comments Theme, Copyright Info && Comments Add Author Add Author This author does not exist, do you want to add them? This author does not exist, do you want to add them? This author is already in the list. This author is already in the list. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Add Topic Add Topic This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? This topic is already in the list. This topic is already in the list. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You need to type in a song title. You need to type in a song title. You need to type in at least one verse. You need to type in at least one verse. You need to have an author for this song. You need to have an author for this song. Linked Audio Linked Audio Add &File(s) Add &File(s) Add &Media Add &Media Remove &All Remove &All Open File(s) Open File(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> You have not entered a verse order. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order Invalid Verse Order &Edit Author Type &Edit Author Type Edit Author Type Edit Author Type Choose type for this author Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks &Manage Authors, Topics, Songbooks Add &to Song Add &to Song Re&move Re&move Authors, Topics && Songbooks Authors, Topics && Songbooks Add Songbook Add Songbook This Songbook does not exist, do you want to add it? This Songbook does not exist, do you want to add it? This Songbook is already in the list. This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Edit Verse &Verse type: &Verse type: &Insert &Insert Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. SongsPlugin.ExportWizardForm Song Export Wizard Song Export Wizard Select Songs Select Songs Check the songs you want to export. Check the songs you want to export. Uncheck All Uncheck All Check All Check All Select Directory Select Directory Directory: Directory: Exporting Exporting Please wait while your songs are exported. Please wait while your songs are exported. You need to add at least one Song to export. You need to add at least one Song to export. No Save Location specified No Save Location specified Starting export... Starting export... You need to specify a directory. You need to specify a directory. Select Destination Folder Select Destination Folder Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type Enable search as you type SongsPlugin.ImportWizardForm Select Document/Presentation Files Select Document/Presentation Files Song Import Wizard Song Import Wizard This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Generic Document/Presentation Generic Document/Presentation Add Files... Add Files... Remove File(s) Remove File(s) Please wait while your songs are imported. Please wait while your songs are imported. Words Of Worship Song Files Words Of Worship Song Files Songs Of Fellowship Song Files Songs Of Fellowship Song Files SongBeamer Files SongBeamer Files SongShow Plus Song Files SongShow Plus Song Files Foilpresenter Song Files Foilpresenter Song Files Copy Copy Save to File Save to File The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenLyrics Files OpenLyrics Files CCLI SongSelect Files CCLI SongSelect Files EasySlides XML File EasySlides XML File EasyWorship Song Database EasyWorship Song Database DreamBeam Song Files DreamBeam Song Files You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files SundayPlus Song Files This importer has been disabled. This importer has been disabled. MediaShout Database MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files SongPro Text Files SongPro (Export File) SongPro (Export File) In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu EasyWorship Service File EasyWorship Service File WorshipCenter Pro Song Files WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PowerPraise Song Files PresentationManager Song Files PresentationManager Song Files ProPresenter 4 Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant Files Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases OpenLP 2 Databases LyriX Files LyriX Files LyriX (Exported TXT-files) LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm Files VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Select Media File(s) Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. SongsPlugin.MediaItem Titles Titles Lyrics Lyrics CCLI License: CCLI Licence: Entire Song Entire Song Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. copy For song cloning copy Search Titles... Search Titles... Search Entire Song... Search Entire Song... Search Lyrics... Search Lyrics... Search Authors... Search Authors... Are you sure you want to delete the "%d" selected song(s)? Are you sure you want to delete the %d selected song(s)? Search Songbooks... Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Unable to open the MediaShout database. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Exporting "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. No songs to import. Verses not found. Missing "PART" header. Verses not found. Missing "PART" header. No %s files found. No %s files found. Invalid %s file. Unexpected byte value. Invalid %s file. Unexpected byte value. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. SongsPlugin.SongBookForm &Name: &Name: &Publisher: &Publisher: You need to type in a name for the book. You need to type in a name for the book. Songbook Maintenance Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Your song export failed. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Your song export failed because this error occurred: %s Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: The following songs could not be imported: Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice Unable to open file Unable to open file File not found File not found SongsPlugin.SongMaintenanceForm Could not add your author. Could not add your author. This author already exists. This author already exists. Could not add your topic. Could not add your topic. This topic already exists. This topic already exists. Could not add your book. Could not add your book. This book already exists. This book already exists. Could not save your changes. Could not save your changes. Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. Delete Author Delete Author Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. Delete Topic Delete Topic Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. Delete Book Delete Book Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Username: Password: Password: Save username and password Save username and password Login Login Search Text: Search Text: Search Search Found %s song(s) Found %s song(s) Logout Logout View View Title: Title: Author(s): Author(s): Copyright: Copyright: CCLI Number: CCLI Number: Lyrics: Lyrics: Back Back Import Import More than 1000 results More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Logging out... Save Username and Password Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In Error Logging In There was a problem logging in, perhaps your username or password is incorrect? There was a problem logging in, perhaps your username or password is incorrect? Song Imported Song Imported Incomplete song Incomplete song This song is missing some information, like the lyrics, and cannot be imported. This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Your song has been imported, would you like to import more songs? Stop Stop SongsPlugin.SongsTab Songs Mode Songs Mode Display verses on live tool bar Display verses on live tool bar Update service from song edit Update service from song edit Import missing songs from service files Import missing songs from service files Display songbook in footer Display songbook in footer Display "%s" symbol before copyright info Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Topic Maintenance Topic name: Topic name: You need to type in a topic name. You need to type in a topic name. SongsPlugin.VerseType Verse Verse Chorus Chorus Bridge Bridge Pre-Chorus Pre-Chorus Intro Intro Ending Ending Other Other SongsPlugin.VideoPsalmImport Error: %s Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Error reading CSV file. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s File not valid WorshipAssistant CSV format. File not valid WorshipAssistant CSV format. Record %d Record %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Error reading CSV file. File not valid ZionWorx CSV format. File not valid ZionWorx CSV format. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s Record %d Record %d Wizard Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Searching for duplicate songs. Please wait while your songs database is analyzed. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Review duplicate songs (%s/%s) Information Information No duplicate songs have been found in the database. No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/es.ts0000644000175000017500000155137212657640340015337 0ustar raoulraoul AlertsPlugin &Alert &Aviso Show an alert message. Mostrar un Aviso. Alert name singular Aviso Alerts name plural Avisos Alerts container title Avisos <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Complemento de Avisos</strong><br />El complemento de Avisos controla la visualización de mensajes de Avisos en pantalla. AlertsPlugin.AlertForm Alert Message Aviso Alert &text: &Texto del Aviso: &New &Nuevo &Save &Guardar Displ&ay Mostr&ar Display && Cl&ose M&ostrar y Cerrar New Alert Nuevo Aviso &Parameter: &Parámetro: No Parameter Found Parámetro no encontrado You have not entered a parameter to be replaced. Do you want to continue anyway? No ha ingresado un parámetro para reemplazar. ¿Desea continuar de todos modos? No Placeholder Found Marcador no encontrado The alert text does not contain '<>'. Do you want to continue anyway? El texto del Aviso contiene '< >'. ¿Desea continuar de todos modos? You haven't specified any text for your alert. Please type in some text before clicking New. No ha especificado ningún texto para su Aviso. Por favor, escriba algún texto antes de hacer clic en Nuevo. AlertsPlugin.AlertsManager Alert message created and displayed. Aviso creado y mostrado. AlertsPlugin.AlertsTab Font Fuente Font name: Nombre de la Fuente: Font color: Color de Fuente: Background color: Color del Fondo: Font size: Tamaño de Fuente: Alert timeout: Tiempo para Mostrar el Aviso: BiblesPlugin &Bible &Biblia Bible name singular Biblia Bibles name plural Biblias Bibles container title Biblias No Book Found Libro no encontrado No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No se encontró el Libro en esta Biblia. Revise que el nombre del Libro esté escrito correctamente. Import a Bible. Importar una Biblia. Add a new Bible. Agregar una Biblia nueva. Edit the selected Bible. Editar la Biblia seleccionada. Delete the selected Bible. Eliminar la Biblia seleccionada. Preview the selected Bible. Vista previa de la Biblia seleccionada. Send the selected Bible live. Proyectar la Biblia seleccionada. Add the selected Bible to the service. Agregar la Biblia seleccionada al servicio. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Complemento de Biblias</strong><br />El complemento de Biblias permite mostrar versículos de diversas fuentes durante el servicio. &Upgrade older Bibles &Actualizar Biblias antiguas Upgrade the Bible databases to the latest format. Actualizar la Base de Datos de Biblias al formato más reciente. Genesis Génesis Exodus Éxodo Leviticus Levítico Numbers Números Deuteronomy Deuteronomio Joshua Josué Judges Jueces Ruth Rut 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Reyes 2 Kings 2 Reyes 1 Chronicles 1 Crónicas 2 Chronicles 2 Crónicas Ezra Esdras Nehemiah Nehemías Esther Ester Job Job Psalms Salmos Proverbs Proverbios Ecclesiastes Eclesiastés Song of Solomon Cantares Isaiah Isaías Jeremiah Jeremías Lamentations Lamentaciones Ezekiel Ezequiel Daniel Daniel Hosea Oseas Joel Joel Amos Amós Obadiah Abdías Jonah Jonás Micah Miqueas Nahum Nahúm Habakkuk Habacuc Zephaniah Sofonías Haggai Hageo Zechariah Zacarías Malachi Malaquías Matthew Mateo Mark Marcos Luke Lucas John Juan Acts Hechos Romans Romanos 1 Corinthians 1 Corintios 2 Corinthians 2 Corintios Galatians Gálatas Ephesians Efesios Philippians Filipenses Colossians Colosenses 1 Thessalonians 1 Tesalonicenses 2 Thessalonians 2 Tesalonicenses 1 Timothy 1 Timoteo 2 Timothy 2 Timoteo Titus Tito Philemon Filemón Hebrews Hebreos James Santiago 1 Peter 1 Pedro 2 Peter 2 Pedro 1 John 1 Juan 2 John 2 Juan 3 John 3 Juan Jude Judas Revelation Apocalipsis Judith Judit Wisdom Sabiduría Tobit Tobías Sirach Sirácida Baruch Baruc 1 Maccabees 1 Macabeos 2 Maccabees 2 Macabeos 3 Maccabees 3 Macabeos 4 Maccabees 4 Macabeos Rest of Daniel Resto de Daniel Rest of Esther Resto de Ester Prayer of Manasses Oración de Manasés Letter of Jeremiah Epístola de Jeremías Prayer of Azariah Oración de Azarías Susanna Susana Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 versículo verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 versículos - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 hasta , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 y end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse fin BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Debe ingresar un nombre de versión para esta Biblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Debe establecer la información de Derechos de Autor de esta Biblia. Si es de Dominio Público, debe indicarlo. Bible Exists Ya existe ésta Biblia This Bible already exists. Please import a different Bible or first delete the existing one. Ésta Biblia ya existe. Por favor, importe una Biblia diferente, o antes, borre la ya existente. You need to specify a book name for "%s". Debe especificar un Nombre de Libro para "%s" The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. El Nombre de Libro "%s" no es correcto. Solo se pueden utilizar números al principio y dicho número debe ser seguido de uno o más caracteres no numéricos. Duplicate Book Name Nombre de Libro Duplicado The Book Name "%s" has been entered more than once. El Nombre de Libro "%s" se ha ingresado más de una vez. BiblesPlugin.BibleManager Scripture Reference Error Error de Referencia Bíblica Web Bible cannot be used No se puede usar la Biblia Web Text Search is not available with Web Bibles. La búsqueda no esta disponible para Biblias Web. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. No ingresó una palabra para buscar. Puede separar diferentes palabras con un espacio para hacer una búsqueda de todas las palabras, y puede separarlas con una coma para realizar una búsqueda de una de ellas. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. No existen Biblias instaladas actualmente. Puede usar el Asistente de Importación para instalar una o más Biblias. No Bibles Available Biblias no disponibles Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. La Referencia Bíblica no es soportada por OpenLP, o es inválida. Por favor, verifique que su Referencia esté formada por uno de los siguientes patrones, o consulte el manual. Libro Capítulo Libro Capítulo %(range)s Capítulo Libro Capítulo %(verse)s Versículo %(range)s Versículo Libro Capítulo %(verse)s Versículo %(range)s Versículo %(list)s Versículo %(range)s Versículo Libro Capítulo %(verse)s Versículo %(range)s Versículo %(list)s Capítulo %(verse)s Versículo %(range)s Versículo Libro Capítulo %(verse)s Versículo %(range)s Capítulo %(verse)s Versículo BiblesPlugin.BiblesTab Verse Display Mostrar Versículos Only show new chapter numbers Sólo mostrar números para Capítulos Nuevos Bible theme: Tema para la Biblia: No Brackets Sin paréntesis ( And ) ( Y ) { And } { Y } [ And ] [ Y ] Note: Changes do not affect verses already in the service. Nota: Los cambios no afectan a los versículos que ya están en el servicio. Display second Bible verses Mostrar versículos secundarios Custom Scripture References Referencias Bíblicas Personalizadas Verse Separator: Separador de Versículos: Range Separator: Separador de Rango: List Separator: Separador de Lista: End Mark: Marca de Final: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Se pueden definir Separadores de Versículos alternativos. Deben estar separados por una barra "|". Por favor, borre el contenido de este cuadro para usar el valor predeterminado. English Inglés Default Bible Language Idioma de Biblia predeterminado Book name language in search field, search results and on display: Idioma de los Nombres de Libros en el campo de búsqueda, resultados de búsqueda y en pantalla: Bible Language Idioma de la Biblia Application Language Idioma de la Aplicación Show verse numbers Mostar Número de Versículo BiblesPlugin.BookNameDialog Select Book Name Seleccione el Nombre del Libro Current name: Nombre actual: Corresponding name: Nombre correspondiente: Show Books From Mostrar libros desde Old Testament Antiguo Testamento New Testament Nuevo Testamento Apocrypha Apócrifos The following book name cannot be matched up internally. Please select the corresponding name from the list. El siguiente Nombre de Libro no pudo ser empatado internamente. Por favor, seleccione el Nombre de Libro correspondiente de la siguiente lista. BiblesPlugin.BookNameForm You need to select a book. Debe seleccionar un Libro. BiblesPlugin.CSVBible Importing books... %s Importando Libros... %s Importing verses... done. Importando Versículos... Hecho. BiblesPlugin.EditBibleForm Bible Editor Editor de Biblias License Details Detalles de licencia Version name: Nombre de versión: Copyright: Derechos Reservados: Permissions: Permisos: Default Bible Language Idioma de Biblia predeterminada Book name language in search field, search results and on display: Idioma del Nombre de Libro en el campo de búsqueda, resultados de búsqueda y en pantalla. Global Settings Configuraciones Globales Bible Language Idioma de la Biblia Application Language Idioma de la Aplicación English Inglés This is a Web Download Bible. It is not possible to customize the Book Names. Esta es una Biblia de Descarga Web. No es posible personalizar los Nombres de Libro. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Para utilizar Nombres de Libro personalizados, "Idioma de la Biblia" debe estar seleccionado en la pestaña Metadatos, o, si está seleccionada la "Configuración Global", en la página Biblias en en el menú Configurar OpenLP . BiblesPlugin.HTTPBible Registering Bible and loading books... Registrando Biblia y cargando Libros... Registering Language... Registrando Idioma... Importing %s... Importing <book name>... Importando %s... Download Error Error de descarga There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Hubo un problema al descargar los Versículos seleccionados. Por favor, revise su conexión a Internet. Si el error persiste, considere reportar esta falla. Parse Error Error de análisis There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Hubo un problema al extraer los versículos seleccionados. Si el error persiste, considere reportar esta falla. BiblesPlugin.ImportWizardForm Bible Import Wizard Asistente para Importación de Biblias This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. Web Download Descarga Web Location: Ubicación: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Biblia: Download Options Opciones de descarga Server: Servidor: Username: Usuario: Password: Contraseña: Proxy Server (Optional) Servidor Proxy (Opcional) License Details Detalles de Licencia Set up the Bible's license details. Establezca los detalles de licencia de la Biblia. Version name: Nombre de versión: Copyright: Copyright: Please wait while your Bible is imported. Por favor, espere mientras la Biblia es importada. You need to specify a file with books of the Bible to use in the import. Debe especificar un archivo que contenga los libros de la Biblia para importar. You need to specify a file of Bible verses to import. Debe especificar un archivo que contenga los versículos de la Biblia para importar. You need to specify a version name for your Bible. Debe ingresar un nombre de versión para esta Biblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público, debe indicarlo. Bible Exists Ya existe la Biblia This Bible already exists. Please import a different Bible or first delete the existing one. Ya existe esta Biblia. Por favor importe una diferente o borre la anterior antes de continuar. Your Bible import failed. La importación de su Biblia falló. CSV File Archivo CSV Bibleserver Servidor Permissions: Permisos: Bible file: Archivo de biblia: Books file: Archivo de libros: Verses file: Archivo de versículos: Registering Bible... Registrando Biblia... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Biblia registrada. Note que los versículos se descargarán según sea necesario, por lo que debe contar con una conexión a internet. Click to download bible list Presione para descargar la lista de biblias Download bible list Descargar lista de biblias Error during download Error durante descarga An error occurred while downloading the list of bibles from %s. Se produjo un error al descargar la lista de biblias de %s. BiblesPlugin.LanguageDialog Select Language Seleccionar Idioma OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP no puede determinar el idioma de esta versión de la Biblia. Por favor, seleccione uno de la siguiente lista. Language: Idioma: BiblesPlugin.LanguageForm You need to choose a language. Debe elegir un idioma. BiblesPlugin.MediaItem Quick Rápida Find: Buscar: Book: Libro: Chapter: Capítulo: Verse: Versículo: From: Desde: To: Hasta: Text Search Buscar texto Second: Paralela: Scripture Reference Referencia Bíblica Toggle to keep or clear the previous results. Alterna entre conservar o borrar los resultados previos. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? No puede mezclar búsquedas individuales y dobles. ¿Desea borrar los resultados y abrir una búsqueda nueva? Bible not fully loaded. Biblia incompleta. Information Información The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La Biblia secundaria no contiene todos los versículos de la Biblia principal. Solo se muestran los versículos comunes. Versículos %d no se incluyen en los resultados. Search Scripture Reference... Buscar Referencia Bíblica... Search Text... Buscar Texto... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Desea eliminar completamente la Biblia "%s" de OpenLP? Deberá reimportar esta Biblia para utilizarla de nuevo. Advanced Avanzado BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Tipo de archivo incorrecto. Las Biblias OpenSong pueden estar comprimidas y es necesario extraerlas antes de la importación. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Tipo de Biblia incorrecta. Esta puede ser una bilbia Zefania XML, por favor use la opcion de importación Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Eliminando etiquetas no utilizadas (esto puede tardar algunos minutos)... Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Seleccione un directorio de respaldo Bible Upgrade Wizard Asistente para actualizar biblias This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Este asistente le ayudará a actualizar sus Biblias desde versiones anteriores a OpenLP 2. Presione Siguiente para iniciar el proceso. Select Backup Directory Directorio de respaldo Please select a backup directory for your Bibles Por favor seleccione un directorio de respaldo para sus Biblias Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Las versiones anteriores a OpenLP 2.0 no pueden utilizar las Biblias actualizadas. Se creará un respaldo de sus Biblias actuales en caso de que tenga que utilizar una versión anterior del programa. Las instrucciones para restaurar los archivos están en nuestro <a href="http://wiki.openlp.org/faq">FAQ</a>. Please select a backup location for your Bibles. Por favor seleccione una ubicación para los respaldos. Backup Directory: Directorio de respaldo: There is no need to backup my Bibles No es necesario respaldar mis Biblias Select Bibles Seleccione Biblias Please select the Bibles to upgrade Por favor seleccione las Biblias a actualizar Upgrading Actualizando Please wait while your Bibles are upgraded. Por favor espere mientras sus Biblias son actualizadas. The backup was not successful. To backup your Bibles you need permission to write to the given directory. El respaldo no fue exitoso. Para respaldar sus Biblias debe tener permisos de escritura en el directorio seleccionado. Upgrading Bible %s of %s: "%s" Failed Actualizando Biblia %s de %s: "%s" Fallidas Upgrading Bible %s of %s: "%s" Upgrading ... Actualizando Biblia %s de %s: "%s" Actualizando... Download Error Error de descarga To upgrade your Web Bibles an Internet connection is required. Para actualizar sus Biblias se requiere de una conexión a internet. Upgrading Bible %s of %s: "%s" Upgrading %s ... Actualizando Biblia %s de %s: "%s" Actualizando %s... Upgrading Bible %s of %s: "%s" Complete Actualizando Biblia %s de %s: "%s" Completado , %s failed , %s fallidas Upgrading Bible(s): %s successful%s Actualizando Biblia(s): %s exitosas%s Upgrade failed. Actualización fallida. You need to specify a backup directory for your Bibles. Debe especificar un directorio de respaldo para sus Biblias. Starting upgrade... Iniciando actualización... There are no Bibles that need to be upgraded. Las Biblias ya se encuentran actualizadas. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Actualizando Biblia(s): %(success)d con éxito %(failed_text)s Por favor, tome en cuenta que los Versículos de las Biblias Web serán descargados bajo demanda, (conforme se vayan necesitando) por lo que se requiere de una conexión a Internet activa. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Archivo de Biblia incorrecto. Las Biblias Zefania pueden estar comprimidas. Debe descomprimirlas antes de importarlas. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Diapositiva Custom Slides name plural Diapositivas Custom Slides container title Diapositivas Load a new custom slide. Cargar nueva diapositiva. Import a custom slide. Importar nueva diapositiva. Add a new custom slide. Agregar nueva diapositiva. Edit the selected custom slide. Editar diapositiva seleccionada. Delete the selected custom slide. Eliminar diapositiva seleccionada. Preview the selected custom slide. Vista previa de la diapositiva seleccionada. Send the selected custom slide live. Proyectar diapositiva seleccionada. Add the selected custom slide to the service. Agregar diapositiva al servicio. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Diapositivas</strong><br />Este complemento le permite mostrar diapositivas de texto, de igual manera que se muestran las canciones. Ofrece una mayor libertad que el complemento de canciones. CustomPlugin.CustomTab Custom Display Personalización Display footer Mostrar pie de página Import missing custom slides from service files Importar diapositivas especiales faltantes desde el archivo de servicio CustomPlugin.EditCustomForm Edit Custom Slides Editar diapositivas &Title: &Título: Add a new slide at bottom. Nueva diapositiva al final. Edit the selected slide. Editar la diapositiva seleccionada. Edit all the slides at once. Editar todas las diapositivas a la vez. Split a slide into two by inserting a slide splitter. Dividir la diapositiva insertando un separador. The&me: Te&ma: &Credits: &Créditos: You need to type in a title. Debe escribir un título. Ed&it All Ed&itar todo Insert Slide Insertar You need to add at least one slide. Debe agregar al menos una diapositiva. CustomPlugin.EditVerseForm Edit Slide Editar Diapositiva CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? ¿Desea borrar la(s) %n diapositiva(s) seleccionada(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Complemento de Imagen</strong><br />Este complemento permite proyectar imágenes.<br />Una de sus características es que permite agrupar imágenes para facilitar su proyección. Este complemento puede utilizar el "bucle de tiempo" de OpenLP para crear una presentación que avance automáticamente. Además, las imágenes de este complemento se pueden utilizar para reemplazar la imagen de fondo del tema actual. Image name singular Imagen Images name plural Imágenes Images container title Imágenes Load a new image. Cargar una imagen nueva. Add a new image. Agregar una imagen nueva. Edit the selected image. Editar la imagen seleccionada. Delete the selected image. Eliminar la imagen seleccionada. Preview the selected image. Vista previa de la imagen seleccionada. Send the selected image live. Proyectar la imagen seleccionada. Add the selected image to the service. Agregar esta imagen al servicio. ImagePlugin.AddGroupForm Add group Agregar grupo Parent group: Grupo principal: Group name: Nombre de grupo: You need to type in a group name. Debe escribir un nombre para el grupo. Could not add the new group. No se pudo agregar el grupo nuevo. This group already exists. Este grupo ya existe. ImagePlugin.ChooseGroupForm Select Image Group Seleccione el Grupo de Imágenes Add images to group: Agregar imágenes al grupo: No group Sin grupo Existing group Grupo existente New group Nuevo grupo ImagePlugin.ExceptionDialog Select Attachment Seleccionar archivo adjunto ImagePlugin.MediaItem Select Image(s) Seleccionar imagen(es) You must select an image to replace the background with. Debe seleccionar una imagen para reemplazar el fondo. Missing Image(s) Imagen(es) faltante(s) The following image(s) no longer exist: %s La siguiente imagen(es) ya no está disponible: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? La siguiente imagen(es) ya no está disponible: %s ¿Desea agregar las demás imágenes? There was a problem replacing your background, the image file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. There was no display item to amend. Ningún elemento para corregir. -- Top-level group -- -- Grupo de nivel principal -- You must select an image or group to delete. Debe seleccionar una imagen o grupo para eliminar. Remove group Quitar grupo Are you sure you want to remove "%s" and everything in it? ¿Desea realmente eliminar "%s" y todo su contenido? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Fondo visible para canciones con aspecto diferente al de la pantalla. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC es un reproductor externo que soporta varios formatos diferentes. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit es un reproductor multimedia que se ejecuta en un explorador de internet. Le permite reproducir texto sobre el video. This media player uses your operating system to provide media capabilities. Éste reproductor de medios usa su sistema operativo para proveer capacidades multimedia. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Complemento de Medios</strong><br />El complemento de medios permite reproducir audio y video. Media name singular Medios Media name plural Medios Media container title Medios Load new media. Cargar un medio nuevo. Add new media. Agregar un medio nuevo. Edit the selected media. Editar el medio seleccionado. Delete the selected media. Eliminar el medio seleccionado. Preview the selected media. Vista previa del medio seleccionado. Send the selected media live. Proyectar el medio seleccionado. Add the selected media to the service. Agregar este medio al servicio. MediaPlugin.MediaClipSelector Select Media Clip Seleccione un Clip de Video Source Fuente Media path: Ubicación: Select drive from list Seleccione una unidad de la lista Load disc Cargar disco Track Details Detalles de Pista Title: Título: Audio track: Pista de Audio: Subtitle track: Pista de subtítulos: HH:mm:ss.z HH:mm:ss.z Clip Range Rango del Clip Start point: Punto inicial: Set start point Establecer el punto de inicio Jump to start point Ir al punto inicial End point: Punto final: Set end point Establecer el punto final Jump to end point Ir al punto final MediaPlugin.MediaClipSelectorForm No path was given No existe una ruta Given path does not exists La ruta proporcionada no existe An error happened during initialization of VLC player Ocurrió un error al abrir el reproductor VLC VLC player failed playing the media El reproductor VLC falló al reproducir el contenido. CD not loaded correctly No se cargó el CD The CD was not loaded correctly, please re-load and try again. No se cargó el CD, por favor revise e intente de nuevo. DVD not loaded correctly El DVD no se cargó The DVD was not loaded correctly, please re-load and try again. El DVD no se cargó, por favor revise e intente de nuevo. Set name of mediaclip De un nombre al fragmento Name of mediaclip: Nombre de fragmento: Enter a valid name or cancel Ingrese un nombre válido o cancele Invalid character Caracter inválido The name of the mediaclip must not contain the character ":" El nombre del fragmento de contener el caracter ":" MediaPlugin.MediaItem Select Media Seleccionar medios You must select a media file to delete. Debe seleccionar un archivo de medios para eliminar. You must select a media file to replace the background with. Debe seleccionar un archivo de medios para reemplazar el fondo. There was a problem replacing your background, the media file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. Missing Media File Archivo de medios faltante The file %s no longer exists. El archivo %s ya no está disponible. Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) There was no display item to amend. Ningún elemento para corregir. Unsupported File Archivo inválido Use Player: Usar reproductor: VLC player required Se necesita el reproductor VLC VLC player required for playback of optical devices El reproductor VLC es necesario para reproducir medios ópticos. Load CD/DVD Abrir CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Abrir CD/DVD - disponible solo si VLC está instalado y habilitado The optical disc %s is no longer available. El medio óptico %s no está disponible. Mediaclip already saved Fragmento ya guardado This mediaclip has already been saved El fragmento ya ha sido guardado MediaPlugin.MediaTab Allow media player to be overridden Permitir tomar control sobre el reproductor multimedia Start Live items automatically Iniciar elementos En Vivo automaticamente OPenLP.MainWindow &Projector Manager Gestor de &Proyector OpenLP Image Files Archivos de Imagen Information Información Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? El formato de las Bilbias ha cambiado. Debe actualizar las Biblias existentes. ¿Desea hacerlo ahora? Backup Respaldo OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP se ha actualizado, ¿desea crear un respaldo de la carpeta de datos del programa? Backup of the data folder failed! ¡Falla en el respaldo de la carpeta de datos! A backup of the data folder has been created at %s Un respaldo de la carpeta de datos se creó en: %s Open Abrir OpenLP.AboutForm Credits Créditos License Licencia build %s compilación %s 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; version 2 of the License. Este es un programa libre; usted puede distribuirlo y/o modificarlo bajo los términos de la GNU General Public License según la publicación de Free Software Foundation; versión 2 de la Licencia. 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 below for more details. Este programa se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÃA, incluso sin la garantía implícita de COMERCIALIZACIÓN o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Véase más abajo para más detalles. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP es un software de proyección para iglesias gratuito, diseñado para mostrar diapositivas de canciones, versículos de la Biblia, videos, imágenes, e incluso presentaciones (con Impress, PowerPoint o PowerPoint Viewer instalados) para servicios de adoración, utilizando una computadora y un proyector de datos. Para más información de OpenLP visite: http://openlp.org/ OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación de más software cristiano gratuito, por favor considere contribuir mediante el botón de abajo. Volunteer Contribuir Project Lead Dirección del Proyecto Developers Desarrolladores Contributors Contribuidores Packagers Empaquetadores Testers Probadores Translators Traductores Afrikaans (af) Afrikaans (af) Czech (cs) Czech (cs) Danish (da) Danish (da) German (de) German (de) Greek (el) Greek (el) English, United Kingdom (en_GB) English, United Kingdom (en_GB) English, South Africa (en_ZA) English, South Africa (en_ZA) Spanish (es) Spanish (es) Estonian (et) Estonian (et) Finnish (fi) Finnish (fi) French (fr) French (fr) Hungarian (hu) Hungarian (hu) Indonesian (id) Indonesian (id) Japanese (ja) Japanese (ja) Norwegian BokmÃ¥l (nb) Norwegian BokmÃ¥l (nb) Dutch (nl) Dutch (nl) Polish (pl) Polish (pl) Portuguese, Brazil (pt_BR) Portuguese, Brazil (pt_BR) Russian (ru) Russian (ru) Swedish (sv) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Chinese(China) (zh_CN) Documentation Documentación Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Desarrollado con Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Créditos Finales "Porque de tal manera amó Dios al mundo, que ha dado a su hijo unigénito, para que todo aquel que en Él crea no se pierda, mas tenga vida eterna." -- Juan 3:16 Y por último, pero no menos importante, el Crédito Final es para Dios, nuestro Padre, por mandar a su Hijo a morir en la cruz, liberándonos del pecado. Éste software lo damos sin costo a ustedes, porque sin costo Él nos hizo libres. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Preferencias de interface Number of recent files to display: Archivos recientes a mostrar: Remember active media manager tab on startup Recordar la última pestaña de medios utilizada Double-click to send items straight to live Doble clic para proyectar directamente Expand new service items on creation Expandir elementos nuevos del servicio al crearlos Enable application exit confirmation Preguntar antes de cerrar la aplicación Mouse Cursor Cursor del ratón Hide mouse cursor when over display window Ocultar el cursor en la pantalla principal Default Image Imagen predeterminada Background color: Color de fondo: Image file: Archivo: Open File Abrir archivo Advanced Avanzado Preview items when clicked in Media Manager Vista previa al seleccionar elementos del Administrador de Medios Browse for an image file to display. Buscar un archivo de imagen para mostrar. Revert to the default OpenLP logo. Volver al logo predeterminado de OpenLP. Default Service Name Nombre del Servicio Predeterminado Enable default service name Habilitar nombre automático Date and Time: Fecha y Hora: Monday Lunes Tuesday Martes Wednesday Miércoles Friday Viernes Saturday Sábado Sunday Domingo Now Hoy Time when usual service starts. Hora usual de inicio del servicio. Name: Nombre: Consult the OpenLP manual for usage. Consulte el manual de OpenLP para su uso. Revert to the default service name "%s". Volver al nombre del servicio predeterminado "%s" Example: Ejemplo: Bypass X11 Window Manager No usar el Administrador de Ventanas de X11 Syntax error. Error de Sintaxis. Data Location Ubicación de Datos Current path: Ubicación actual: Custom path: Ubicación nueva: Browse for new data file location. Buscar una nueva ubicación para los datos. Set the data location to the default. Restablecer la ubicación original para los datos. Cancel Cancelar Cancel OpenLP data directory location change. Cancelar el cambio del directorio de datos de OpenLP. Copy data to new location. Copiar datos a nueva ubicación. Copy the OpenLP data files to the new location. Copiar los datos de OpenLP a un nuevo directorio. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ADVERTENCIA:</strong> El nuevo directorio contiene archivos de datos de OpenLP. Estos archivos serán reemplazados durante la copia. Data Directory Error Error en Directorio de Datos Select Data Directory Location Seleccione Ubicación de Datos Confirm Data Directory Change Confirme Cambio de Directorio Reset Data Directory Reestablecer Directorio de Datos Overwrite Existing Data Sobrescribir los Datos Actuales OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. No se encontró el Directorio de Datos %s Este directorio fue cambiado de su ubicación por defecto anteriormente. Si su nueva ubicación es un medio extraible, este medio debe estar presente. Presione "No" para detener OpenLP y permitirle corregir el problema. Presione "Si" para cambiar el directorio de datos a su ubicación habitual. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Desea cambiar la ubicación del directorio de datos de OpenLP a la siguiente: %s El directorio se cambiará una vez que OpenLP se cierre. Thursday Jueves Display Workarounds Arreglos de Pantalla Use alternating row colours in lists Usar colores alternados en listas WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? ADVERTENCIA: La ubicación seleccionada %s aparentemente contiene archivos de datos de OpenLP. Desea reemplazar estos archivos con los actuales? Restart Required Se requiere reiniciar This change will only take effect once OpenLP has been restarted. Este cambio tendrá efecto al reiniciar OpenLP. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. ¿Desea cambiar la ubicación predeterminada del directorio de datos de OpenLP? Esta ubicación se utilizará luego de cerrar OpenLP. OpenLP.ColorButton Click to select a color. Clic para seleccionar color. OpenLP.DB RGB RGB Video Video Digital Digital Storage Almacenamiento Network Red RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Almacenamiento 1 Storage 2 Almacenamiento 2 Storage 3 Almacenamiento 3 Storage 4 Almacenamiento 4 Storage 5 Almacenamiento 5 Storage 6 Almacenamiento 6 Storage 7 Almacenamiento 7 Storage 8 Almacenamiento 8 Storage 9 Almacenamiento 9 Network 1 Red 1 Network 2 Red 2 Network 3 Red 3 Network 4 Red 4 Network 5 Red 5 Network 6 Red 6 Network 7 Red 7 Network 8 Red 8 Network 9 Red 9 OpenLP.ExceptionDialog Error Occurred Se Produjo un Error Send E-Mail Enviar E-Mail Save to File Guardar archivo Attach File Adjuntar archivo Description characters to enter : %s Caracteres restantes: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Por favor, escribe una descripción de lo que estaba haciendo usted cuando ocurrió el error. Si es posible, de preferencia que sea en Inglés. (Mínimo 20 caracteres) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Uups. OpenLP tuvo un problema y no pudo recuperarse. El texto en el cuadro de abajo contiene información que puede ser de mucha ayuda a los desarrolladlores de OpenLP, así que, por favor, envíelo por correo a bugs@openlp.org, junto con una descripción detallada de lo que estaba usted haciendo cuando el problema ocurrió. También adjunte en el correo cualquier archivo que pueda haber provocado el problema. OpenLP.ExceptionForm Platform: %s Plataforma: %s Save Crash Report Guardar reporte de errores Text files (*.txt *.log *.text) Archivos de texto (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Cambiar nombre de archivo New File Name: Nombre nuevo: File Copy Copiar archivo OpenLP.FirstTimeLanguageForm Select Translation Seleccionar idioma Choose the translation you'd like to use in OpenLP. Elija la traducción que desea utilizar en OpenLP. Translation: Traducción: OpenLP.FirstTimeWizard Songs Canciones First Time Wizard Asistente Inicial Welcome to the First Time Wizard Bienvenido al Asistente Inicial Activate required Plugins Activar complementos necesarios Select the Plugins you wish to use. Seleccione los complementos que desea usar. Bible Biblia Images Imágenes Presentations Presentaciones Media (Audio and Video) Medios (Audio y Video) Allow remote access Permitir acceso remoto Monitor Song Usage Historial de las canciones Allow Alerts Permitir alertas Default Settings Configuración predeterminada Downloading %s... Descargando %s... Enabling selected plugins... Habilitando complementos seleccionados... No Internet Connection Sin conexión a Internet Unable to detect an Internet connection. No se detectó una conexión a Internet. Sample Songs Canciones de muestra Select and download public domain songs. Seleccionar y descargar canciones de dominio público. Sample Bibles Biblias de muestra Select and download free Bibles. Seleccionar y descargar Biblias gratuitas. Sample Themes Temas de muestra Select and download sample themes. Seleccionar y descargar temas de muestra. Set up default settings to be used by OpenLP. Utilizar la configuración predeterminada. Default output display: Pantalla predeterminada: Select default theme: Tema por defecto: Starting configuration process... Iniciando proceso de configuración... Setting Up And Downloading Configurando y Descargando Please wait while OpenLP is set up and your data is downloaded. Por favor espere mientras OpenLP se configura e importa los datos. Setting Up Configurando Custom Slides Diapositivas Finish Finalizar No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. No se cuenta con una conexión a Internet. El Asistente Inicial requiere de una conexión a Internet para descargar canciones, Biblias y temas de muestra. Presione Finalizar para iniciar el programa con las preferencias predeterminadas y sin material de muestra. Para abrir posteriormente este asistente e importar dicho material, revise su conexión a Internet y seleccione desde el menú "Herramientas/Abrir el Asistente Inicial" en OpenLP. Download Error Error de descarga There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ocurrió un problema de conexión durante la descarga, las demás descargas no se realizarán. Intente ejecutar el Asistente Inicial luego. Download complete. Click the %s button to return to OpenLP. Descarga completa. Presione el botón %s para iniciar OpenLP. Download complete. Click the %s button to start OpenLP. Descarga completa. Presione el botón %s para iniciar OpenLP. Click the %s button to return to OpenLP. Presione el botón %s para regresar a OpenLP. Click the %s button to start OpenLP. Presione el botón %s para iniciar OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Ocurrió un problema con la conexión durante la descarga, las demás descargas no se realizarán. Intente abrir el Asistente Inicial luego. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Este asistente le ayudará a configurar OpenLP para su uso inicial. Presione el botón %s para iniciar. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Para detener el Asistente Inicial (no se inicia OpenLP), presione el botón %s ahora. Downloading Resource Index Descargando Ãndice de Recursos Please wait while the resource index is downloaded. Por favor espere mientras se descarga el índice de recursos. Please wait while OpenLP downloads the resource index file... Por favor espere mientras OpenLP descarga el archivo con el índice de recursos. Downloading and Configuring Descargando y Configurando Please wait while resources are downloaded and OpenLP is configured. Por favor espere mientras se descargan los recursos y se configura OpenLP. Network Error Error de Red There was a network error attempting to connect to retrieve initial configuration information Ocurrió un error en la red al accesar la información inicial de configuración. Cancel Cancelar Unable to download some files No se pudo descargar algunos archivos OpenLP.FormattingTagDialog Configure Formatting Tags Configurar Etiquetas de Formato Description Descripción Tag Etiqueta Start HTML Inicio HTML End HTML Final HTML Default Formatting Formato Predeterminado Custom Formatting Formato Personalizado OpenLP.FormattingTagForm <HTML here> <HTML aquí> Validation Error Error de Validación Description is missing Falta la descripción Tag is missing Falta etiqueta Tag %s already defined. Etiqueta %s ya definida. Description %s already defined. La descripción %s ya está definida. Start tag %s is not valid HTML Etiqueta de inicio %s no es HTML válido End tag %(end)s does not match end tag for start tag %(start)s La Etiqueta Final %(end)s no coincide con la Etiqueta Inicial %(start)s OpenLP.FormattingTags Red Rojo Black Negro Blue Azul Yellow Amarillo Green Verde Pink Rosado Orange Anaranjado Purple Morado White Blanco Superscript Superíndice Subscript Subíndice Paragraph Párrafo Bold Negrita Italics Cursiva Underline Subrayado Break Salto OpenLP.GeneralTab General General Monitors Monitores Select monitor for output display: Seleccionar monitor para proyectar: Display if a single screen Mostar si solo hay una pantalla Application Startup Inicio de la Aplicación Show blank screen warning Mostrar advertencia de pantalla en blanco Automatically open the last service Abrir automáticamente el último servicio Show the splash screen Mostrar pantalla de bienvenida Application Settings Configuración del Programa Prompt to save before starting a new service Ofrecer guardar antes de abrir un servicio nuevo Automatically preview next item in service Vista previa automática del siguiente elemento en el servicio sec seg CCLI Details Detalles de CCLI SongSelect username: Usuario SongSelect: SongSelect password: Contraseña SongSelect: X X Y Y Height Altura Width Ancho Check for updates to OpenLP Buscar actualizaciones para OpenLP Unblank display when adding new live item Mostar proyección al agregar un elemento nuevo Timed slide interval: Intervalo de diapositivas: Background Audio Audio de Fondo Start background audio paused Iniciar audio de fondo en pausa Service Item Slide Limits Límites de Diapositivas Override display position: Personalizar la posición de pantalla Repeat track list Repetir la lista de pistas Behavior of next/previous on the last/first slide: Comportamiento del botón siguiente o anterior en la última o primera diapositiva: &Remain on Slide &Permanecer en la diapositiva &Wrap around &Volver al principio &Move to next/previous service item &Ir al elemento siguiente o anterior OpenLP.LanguageManager Language Idioma Please restart OpenLP to use your new language setting. Por favor reinicie OpenLP para usar su nuevo idioma. OpenLP.MainDisplay OpenLP Display Pantalla de OpenLP OpenLP.MainWindow &File &Archivo &Import &Importar &Export &Exportar &View &Ver M&ode M&odo &Tools &Herramientas &Settings &Preferencias &Language &Idioma &Help A&yuda Service Manager Gestor de Servicio Theme Manager Gestor de Temas Open an existing service. Abrir un servicio existente. Save the current service to disk. Guardar el servicio actual en el disco. Save Service As Guardar Servicio Como Save the current service under a new name. Guardar el servicio actual con un nombre nuevo. E&xit &Salir Quit OpenLP Salir de OpenLP &Theme &Tema &Configure OpenLP... &Configurar OpenLP... &Media Manager Gestor de &Medios Toggle Media Manager Alternar Gestor de Medios Toggle the visibility of the media manager. Alternar la visibilidad del gestor de medios. &Theme Manager Gestor de &Temas Toggle Theme Manager Alternar Gestor de Temas Toggle the visibility of the theme manager. Alternar la visibilidad del gestor de temas. &Service Manager Gestor de &Servicio Toggle Service Manager Alternar Gestor del Servicio Toggle the visibility of the service manager. Alternar la visibilidad del gestor del servicio. &Preview Panel &Panel de Vista Previa Toggle Preview Panel Alternar Panel de Vista Previa Toggle the visibility of the preview panel. Alternar la visibilidad del panel de vista previa. &Live Panel Panel de Pro&yección Toggle Live Panel Alternar Panel de Proyección Toggle the visibility of the live panel. Alternar la visibilidad del panel de proyección. List the Plugins Lista de Complementos &User Guide Guía de &Usuario &About &Acerca de... More information about OpenLP Más información acerca de OpenLP &Online Help Ayuda en &Línea &Web Site Sitio &Web Use the system language, if available. Usar el idioma del sistema, si esta disponible. Set the interface language to %s Fijar el idioma de la interface en %s Add &Tool... Agregar &Herramienta... Add an application to the list of tools. Agregar una aplicación a la lista de herramientas. &Default Pre&determinado Set the view mode back to the default. Establecer el modo de vizualización predeterminado. &Setup &Administración Set the view mode to Setup. Modo de Administración. &Live En &Vivo Set the view mode to Live. Modo de visualización En Vivo. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Esta disponible para descarga la versión %s de OpenLP (actualmente esta ejecutando la versión %s). Puede descargar la última versión desde http://openlp.org/. OpenLP Version Updated Versión de OpenLP Actualizada OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco The Main Display has been blanked out La Pantalla Principal se ha puesto en blanco Default Theme: %s Tema predeterminado: %s English Please add the name of your language here Spanish Configure &Shortcuts... Configurar &Atajos... Open &Data Folder... Abrir la Carpeta de &Datos... Open the folder where songs, bibles and other data resides. Abrir la carpeta donde se almacenan las canciones, biblias y otros datos. &Autodetect &Autodetectar Update Theme Images Actualizar Miniatura de Temas Update the preview images for all themes. Actualiza la imagen de vista previa de todos los temas. Print the current service. Imprimir Orden del Servicio actual. L&ock Panels Fi&jar Páneles Prevent the panels being moved. Prevenir que los páneles se muevan. Re-run First Time Wizard Abrir el Asistente Inicial Re-run the First Time Wizard, importing songs, Bibles and themes. Abrir el asistente inicial para importar canciones, Biblias y temas. Re-run First Time Wizard? ¿Abrir el Asistente Inicial? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. ¿Desea abrir el Asistente Inicial? Abrir este asistente altera la configuración actual de OpenLP y posiblemente agregará canciones a su base de datos y cambiará el Tema predeterminado. Clear List Clear List of recent files Borrar Lista Clear the list of recent files. Borrar la lista de archivos recientes. Configure &Formatting Tags... Configurar &Etiquetas de Formato... Export OpenLP settings to a specified *.config file Exportar preferencias de OpenLP al archivo *.config especificado Settings Preferencias Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar preferencias de OpenLP desde un archivo *.config exportado previamente en cualquier ordenador Import settings? ¿Importar preferencias? Open File Abrir archivo OpenLP Export Settings Files (*.conf) Archivos de Preferencias OpenLP (*.conf) Import settings Importar preferencias OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP se cerrará. Las preferencias importadas se aplicarán la próxima vez que inicie OpenLP. Export Settings File Exportar Archivo de Preferencias OpenLP Export Settings File (*.conf) Archivo de Preferencias OpenLP (*.conf) New Data Directory Error Error en el Nuevo Directorio de Datos Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copiando datos OpenLP a una nueva ubicación - %s - Por favor espere a que finalice la copia OpenLP Data directory copy failed %s Copia del directorio de datos OpenLP fallida %s General General Library Libreria Jump to the search box of the current active plugin. Ir al cuadro de búsqueda del complemento activo actual. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. ¿Desea importar las preferencias? Al importar preferencias la configuración actual de OpenLP cambiará permanentemente. Importar preferencias incorrectas puede causar un comportamiento errático y el cierre inesperado de OpenLP. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Aparentemente el archivo de preferencias OpenLP no es válido. Se ha detenido el procesamiento, no se realizaron cambios. Projector Manager Gestor de Proyector Toggle Projector Manager Alternar el Gestor de Proyector Toggle the visibility of the Projector Manager Alternar la visibilidad del gestor de proyector. Export setting error Error al exportar preferencias The key "%s" does not have a default value so it will be skipped in this export. La llave "%s" no tiene valor por defecto entonces se va a ignorar en esta exportación. An error occurred while exporting the settings: %s Se produjo un error mientras se exportaban las preferencias: %s &Recent Services Servicios &Recientes &New Service &Nuevo Servicio &Open Service Abrir Servici&o &Save Service Guardar &Servicio Save Service &As... Gu&ardar Servicio como... &Manage Plugins Ad&ministrar Complementos Exit OpenLP Salir de OpenLP Are you sure you want to exit OpenLP? ¿Estás seguro que quieres salir de OpenLP? &Exit OpenLP Salir d&e OpenLP OpenLP.Manager Database Error Error en Base de datos The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Esta base de datos de creó en una versión más reciente de OpenLP. La base se datos es versión %d, y el programa necesita la versión %d. No se cargará esta base de datos. Base de Datos: %s OpenLP cannot load your database. Database: %s No se puede cargar la base de datos. Base de datos: %s OpenLP.MediaManagerItem No Items Selected Nada Seleccionado &Add to selected Service Item &Agregar al elemento del Servico You must select one or more items to preview. Debe seleccionar uno o más elementos para previsualizar. You must select one or more items to send live. Debe seleccionar uno o más elementos para proyectar. You must select one or more items. Debe seleccionar uno o más elementos. You must select an existing service item to add to. Debe seleccionar un elemento existente al cual adjuntar. Invalid Service Item Elemento del Servicio inválido You must select a %s service item. Debe seleccionar un elemento %s del servicio. You must select one or more items to add. Debe seleccionar uno o más elementos para agregar. No Search Results Sin Resultados Invalid File Type Tipo de Archivo Inválido Invalid File %s. Suffix not supported Archivo inválido %s. Extensión no admitida &Clone &Duplicar Duplicate files were found on import and were ignored. Se encontraron archivos duplicados y se ignoraron. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Etiqueta <lyrics> faltante. <verse> tag is missing. Etiqueta <verse> faltante. OpenLP.PJLink1 Unknown status Estado desconocido No message Ningún mensaje Error while sending data to projector Error al enviar los datos al proyector Undefined command: Comando indefinido: OpenLP.PlayerTab Players Reproductores Available Media Players Reproductores disponibles Player Search Order Orden de Búsqueda de Reproductores Visible background for videos with aspect ratio different to screen. Fondo visible para videos con diferente aspecto que la pantalla. %s (unavailable) %s (no disponible) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" NOTA: Para usar VLC debe instalar la versión %s OpenLP.PluginForm Plugin Details Detalles del Complemento Status: Estado: Active Activo Inactive Inactivo %s (Inactive) %s (Inactivo) %s (Active) %s (Activo) %s (Disabled) %s (Desabilitado) Manage Plugins Administrar Complementos OpenLP.PrintServiceDialog Fit Page Ajustar a Página Fit Width Ajustar a Ancho OpenLP.PrintServiceForm Options Opciones Copy Copiar Copy as HTML Copiar como HTML Zoom In Acercar Zoom Out Alejar Zoom Original Zoom Original Other Options Otras Opciones Include slide text if available Incluir texto de diapositivas si está disponible Include service item notes Incluir notas de los elementos del servicio Include play length of media items Incluir la duración de los medios Add page break before each text item Agregar salto de página antes de cada elemento Service Sheet Hoja del Servicio Print Imprimir Title: Título: Custom Footer Text: Texto para pie de página: OpenLP.ProjectorConstants OK OK General projector error Error general en proyector Not connected error Proyector desconectado Lamp error Error de lámpara Fan error Error de ventilador High temperature detected Se detectó alta temperatura Cover open detected La cubierta está abierta Check filter Revise el filtro Authentication Error Error de Autenticación Undefined Command Comando Indefinido Invalid Parameter Parámetro Inválido Projector Busy Proyector Ocupado Projector/Display Error Error de Proyector/Pantalla Invalid packet received Paquete recibido inválido Warning condition detected Condición de alerta detectada Error condition detected Condición de error detectada PJLink class not supported Versión de PJLink no soportada Invalid prefix character Caracter de prefijo inválido The connection was refused by the peer (or timed out) La conexión fue rechazada (o se agotó el tiempo de espera) The remote host closed the connection El anfitrión remoto cerró la conexión The host address was not found No se encontró la dirección del anfitrión The socket operation failed because the application lacked the required privileges Falló la operación de socket porque el programa no tiene los privilegios requeridos The local system ran out of resources (e.g., too many sockets) Se agotaron los recursos del sistema (e.j. muchos sockets) The socket operation timed out Tiempo de operación de socket agotado The datagram was larger than the operating system's limit El datagrama es más largo que el permitido por el sistema operativo An error occurred with the network (Possibly someone pulled the plug?) Se produjo un error con la red (¿Alguien desconectó el cable?) The address specified with socket.bind() is already in use and was set to be exclusive La dirección especificada con socket.bind() ya se está utilizando y se marcó como exclusiva The address specified to socket.bind() does not belong to the host La dirección especificada para socket.bind() no pertenece al host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) La operación de socket solicitada no es posible en el sistema operativo local (ej. falta soporte de IPv6) The socket is using a proxy, and the proxy requires authentication El socket usa un proxy, y se requiere de autenticación The SSL/TLS handshake failed La vinculación SSL/TLS falló The last operation attempted has not finished yet (still in progress in the background) La última operación no a completado (se está ejecutando en segundo plano) Could not contact the proxy server because the connection to that server was denied No se pudo contactar el servidor proxy porque se rechazó la conexión con el servidor The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) La conexión al servidor proxy se cerró inesperadamente (antes que se estableciera la conexión con el destinatario) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Se agotó el tiempo de espera del servidor proxy, el servidor dejó de responder en la fase de autenticación. The proxy address set with setProxy() was not found La dirección proxy con setProxy() no se encontró An unidentified error occurred Se produjo un error desconocido Not connected Sin conexión Connecting Conectando Connected Conectado Getting status Recuperando estado Off Apagado Initialize in progress Iniciando Power in standby Proyector en Espera Warmup in progress Calentando Power is on Proyector Encendido Cooldown in progress Enfriando Projector Information available Información de proyector disponible Sending data Enviando datos Received data Datos recibidos The connection negotiation with the proxy server failed because the response from the proxy server could not be understood La negociación con el servidor proxy falló porque no se entendió la respuesta del servidor proxy OpenLP.ProjectorEdit Name Not Set Nombre No Establecido You must enter a name for this entry.<br />Please enter a new name for this entry. Debe ingresar un nombre para esta entrada.<br />Por favor ingrese un nombre nuevo para esta entrada. Duplicate Name Nombre Duplicado OpenLP.ProjectorEditForm Add New Projector Agregar Nuevo Proyector Edit Projector Editar Proyector IP Address Dirección IP Port Number Puerto Número PIN CLAVE Name Nombre Location Ubicación Notes Notas Database Error Error en Base de datos There was an error saving projector information. See the log for the error Se produjo un error al guardar la información del proyector. Vea el error en el registro OpenLP.ProjectorManager Add Projector Agregar Proyector Add a new projector Agregar un proyector nuevo Edit Projector Editar Proyector Edit selected projector Editar proyector seleccionado Delete Projector Eliminar Projector Delete selected projector Eliminar el proyector seleccionado Select Input Source Seleccione Fuente de Entrada Choose input source on selected projector Elija la entrada en el proyector seleccionado View Projector Ver Proyector View selected projector information Ver la información de proyector seleccionado Connect to selected projector Conectar al proyector seleccionado Connect to selected projectors Conectar a los proyectores seleccionados Disconnect from selected projectors Desconectar de los proyectores seleccionados Disconnect from selected projector Desconectar del proyector seleccionado Power on selected projector Encender el proyector seleccionado Standby selected projector Apagar el proyector seleccionado Put selected projector in standby Poner el proyector seleccionado en reposo Blank selected projector screen Proyector seleccionado en negro Show selected projector screen Mostrar proyector seleccionado &View Projector Information &Ver Información del Proyector &Edit Projector Edi&tar Proyector &Connect Projector &Conectar Proyector D&isconnect Projector &Desconectar Proyector Power &On Projector &Apagar Proyector Power O&ff Projector &Encender Proyector Select &Input Seleccionar E&ntrada Edit Input Source Editar Fuente de Entrada &Blank Projector Screen Proyector Seleccionado en &Negro &Show Projector Screen &Mostrar Proyector Seleccionado &Delete Projector E&liminar Proyector Name Nombre IP IP Port Puerto Notes Notas Projector information not available at this time. Información del proyector no disponible en este momento. Projector Name Nombre del Proyector Manufacturer Fabricante Model Modelo Other info Otra información Power status Estado Shutter is El obturador está Closed Cerrado Current source input is Fuente de entrada actual Lamp Lámpara On Encendido Off Apagado Hours Horas No current errors or warnings No existen errores o advertencias Current errors/warnings Errores/advertencias Projector Information Información del Proyector No message Ningún mensaje Not Implemented Yet No Disponible al Momento Delete projector (%s) %s? Eliminar proyector (%s) %s? Are you sure you want to delete this projector? ¿Desea eliminar este proyector? OpenLP.ProjectorPJLink Fan Ventilador Lamp Lámpara Temperature Temperatura Cover Cubierta Filter Filtro Other Otro OpenLP.ProjectorTab Projector Proyector Communication Options Opciones de Comunicación Connect to projectors on startup Conectar a los proyectores al inicio Socket timeout (seconds) Socket timeout (segundos) Poll time (seconds) Tiempo de polling (segundos) Tabbed dialog box Cajas de diálogo con pestañas Single dialog box Cajas de diálogo individuales OpenLP.ProjectorWizard Duplicate IP Address Dirección IP Duplicada Invalid IP Address Dirección IP Inválida Invalid Port Number Numero de Puerto Inválido OpenLP.ScreenList Screen Pantalla primary principal OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Inicio</strong>: %s <strong>Length</strong>: %s <strong>Duración</strong>: %s [slide %d] [diapositiva %d] OpenLP.ServiceItemEditForm Reorder Service Item Reorganizar Elemento del Servicio OpenLP.ServiceManager Move to &top Mover al &inicio Move item to the top of the service. Mover el elemento al inicio del servicio. Move &up S&ubir Move item up one position in the service. Mover el elemento una posición hacia arriba. Move &down Ba&jar Move item down one position in the service. Mover el elemento una posición hacia abajo. Move to &bottom Mover al &final Move item to the end of the service. Mover el elemento al final del servicio. &Delete From Service &Eliminar Del Servicio Delete the selected item from the service. Eliminar el elemento seleccionado del servicio. &Add New Item &Agregar Nuevo Elemento &Add to Selected Item &Agregar al Elemento Seleccionado &Edit Item &Editar Elemento &Reorder Item &Reorganizar Elemento &Notes &Notas &Change Item Theme &Cambiar Tema de elemento File is not a valid service. El archivo de servicio es inválido. Missing Display Handler Controlador de Pantalla Faltante Your item cannot be displayed as there is no handler to display it No se puede mostrar el elemento porque no hay un controlador de pantalla disponible Your item cannot be displayed as the plugin required to display it is missing or inactive El elemento no se puede mostar porque falta el complemento requerido o esta desabilitado &Expand all &Expandir todo Expand all the service items. Expandir todos los elementos del servicio. &Collapse all &Colapsar todo Collapse all the service items. Colapsar todos los elementos del servicio. Open File Abrir archivo Moves the selection down the window. Mover selección hacia abajo. Move up Subir Moves the selection up the window. Mover selección hacia arriba. Go Live Proyectar Send the selected item to Live. Proyectar el elemento seleccionado. &Start Time &Tiempo de Inicio Show &Preview Mostrar &Vista Previa Modified Service Servicio Modificado The current service has been modified. Would you like to save this service? El servicio actual ha sido modificado. ¿Desea guardarlo? Custom Service Notes: Notas Personales del Servicio: Notes: Notas: Playing time: Tiempo de reproducción: Untitled Service Servicio Sin nombre File could not be opened because it is corrupt. No se pudo abrir el archivo porque está corrompido. Empty File Archivo Vacio This service file does not contain any data. El archivo de servicio no contiene ningún dato. Corrupt File Archivo Corrompido Load an existing service. Abrir un servicio existente. Save this service. Guardar este servicio. Select a theme for the service. Seleccione un tema para el servicio. Slide theme Tema de diapositiva Notes Notas Edit Editar Service copy only Copia unicamente Error Saving File Error al Guardar Archivo There was an error saving your file. Ocurrió un error al guardar su archivo. Service File(s) Missing Archivo(s) de Servicio Extraviado &Rename... &Renombrar... Create New &Custom Slide Crear Nueva &Diapositiva &Auto play slides Reproducir diapositivas &autom. Auto play slides &Loop Reproducir en &Bucle Autom. Auto play slides &Once Reproducir diapositivas &autom. una vez &Delay between slides &Retardo entre diapositivas OpenLP Service Files (*.osz *.oszl) Archivos de Servicio OpenLP (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) Archivos de Servicio OpenLP (*.osz);; Archivos de Servicio OpenLP - lite (*.oszl) OpenLP Service Files (*.osz);; Archivos de Servicio OpenLP (*.osz);; File is not a valid service. The content encoding is not UTF-8. Archivo de servicio no válido. La codificación del contenido no es UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. El archivo de servicio que trata de abrir tiene un formato antiguo. Por favor guárdelo utilizando OpenLP 2.0.2 o uno más reciente. This file is either corrupt or it is not an OpenLP 2 service file. El archivo está dañado o no es un archivo de servicio de OpenLP 2. &Auto Start - inactive Inicio &Auto - inactivo &Auto Start - active Inicio &Auto - activo Input delay Retraso de entrada Delay between slides in seconds. Tiempo entre diapositivas en segundos. Rename item title Cambiar título del elemento Title: Título: An error occurred while writing the service file: %s Se produjo un error al guardar el archivo de servicio: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Faltan los siguientes archivos del servicio: %s Estos archivos serán removidos si continua. OpenLP.ServiceNoteForm Service Item Notes Notas del Elemento del Servicio OpenLP.SettingsForm Configure OpenLP Configurar OpenLP OpenLP.ShortcutListDialog Action Acción Shortcut Atajo Duplicate Shortcut Duplicar Atajo The shortcut "%s" is already assigned to another action, please use a different shortcut. El atajo "%s" esta asignado a otra acción, por favor utilize un atajo diferente. Alternate Secundario Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Seleccione una acción y presione uno de los botones para capturar un nuevo atajo primario y secundario, respectivamente. Default Predeterminado Custom Diapositiva Capture shortcut. Capturar atajo. Restore the default shortcut of this action. Restuarar el atajo predeterminado para esta acción. Restore Default Shortcuts Restaurar los Atajos Predeterminados Do you want to restore all shortcuts to their defaults? ¿Quiere restaurar todos los atajos a su valor original? Configure Shortcuts Configurar Atajos OpenLP.SlideController Hide Ocultar Go To Ir A Blank Screen Pantalla en Blanco Blank to Theme Proyectar el Tema Show Desktop Mostrar Escritorio Previous Service Servicio Anterior Next Service Servicio Siguiente Escape Item Salir de Elemento Move to previous. Ir al anterior. Move to next. Ir al siguiente. Play Slides Reproducir diapositivas Delay between slides in seconds. Tiempo entre diapositivas en segundos. Move to live. Proyectar. Add to Service. Agregar al Servicio. Edit and reload song preview. Editar y actualizar la vista previa. Start playing media. Reproducir medios. Pause audio. Pausar Audio. Pause playing media. Pausar medio en reproducción. Stop playing media. Detener medio en reproducción. Video position. Posición de video. Audio Volume. Volumen de audio. Go to "Verse" Ir a "Verso" Go to "Chorus" Ir a "Coro" Go to "Bridge" Ir a "Puente" Go to "Pre-Chorus" Ir a "Pre-Coro" Go to "Intro" Ir a "Intro" Go to "Ending" Ir a "Final" Go to "Other" Ir a "Otro" Previous Slide Diapositiva anterior Next Slide Diapositiva siguiente Pause Audio Pausar Audio Background Audio Audio de Fondo Go to next audio track. Ir a la siguiente pista de audio. Tracks Pistas OpenLP.SourceSelectForm Select Projector Source Seleccione Entrada de Proyector Edit Projector Source Text Editar Nombre de Fuente Ignoring current changes and return to OpenLP Ingnorar cambios actuales y regresar a OpenLP Delete all user-defined text and revert to PJLink default text Borrar el texto definido por el usuario y volver al texto PJLink original. Discard changes and reset to previous user-defined text Descartar cambios y volver al texto de usuario definido anteriormente Save changes and return to OpenLP Guardar cambios y regresar a OpenLP. Delete entries for this projector Eliminar entradas para este proyector Are you sure you want to delete ALL user-defined source input text for this projector? ¿Desea realmente borrar TODO el texto de entradas definido para este projector? OpenLP.SpellTextEdit Spelling Suggestions Sugerencias Ortográficas Formatting Tags Etiquetas de Formato Language: Idioma: OpenLP.StartTimeForm Theme Layout Distribución del Tema The blue box shows the main area. El cuadro azul muestra el área principal. The red box shows the footer. El cuadro rojo muestra el pie de página. OpenLP.StartTime_form Item Start and Finish Time Tiempo de Inicio y Final Hours: Horas: Minutes: Minutos: Seconds: Segundos: Start Inicio Finish Finalizar Length Duración Time Validation Error Error de Validación de Tiempo Finish time is set after the end of the media item El tiempo fiinal se establece al final del elemento Start time is after the finish time of the media item El tiempo inicial se establece al final del elemento OpenLP.ThemeForm (approximately %d lines per slide) (aproximadamente %d líneas por diapositiva) OpenLP.ThemeManager Create a new theme. Crear un tema nuevo. Edit Theme Editar Tema Edit a theme. Editar un tema. Delete Theme Eliminar Tema Delete a theme. Eliminar un tema. Import Theme Importar Tema Import a theme. Importa un tema. Export Theme Exportar Tema Export a theme. Exportar un tema. &Edit Theme &Editar Tema &Delete Theme Elimi&nar Tema Set As &Global Default &Global, por defecto %s (default) %s (predeterminado) You must select a theme to edit. Debe seleccionar un tema para editar. You are unable to delete the default theme. No se puede eliminar el tema predeterminado. You have not selected a theme. No ha seleccionado un tema. Save Theme - (%s) Guardar Tema - (%s) Theme Exported Tema Exportado Your theme has been successfully exported. Su tema ha sido exportado exitosamente. Theme Export Failed La importación falló Select Theme Import File Seleccione el Archivo de Tema a Importar File is not a valid theme. El archivo no es un tema válido. &Copy Theme &Copiar Tema &Rename Theme &Renombrar Tema &Export Theme &Exportar Tema You must select a theme to rename. Debe seleccionar un tema para renombrar. Rename Confirmation Confirmar Cambio de Nombre Rename %s theme? ¿Renombrar el tema %s? You must select a theme to delete. Debe seleccionar un tema para eliminar. Delete Confirmation Confirmar Eliminación Delete %s theme? ¿Eliminar el tema %s? Validation Error Error de Validación A theme with this name already exists. Ya existe un tema con este nombre. Copy of %s Copy of <theme name> Copia de %s Theme Already Exists Este Tema Ya Existe Theme %s already exists. Do you want to replace it? El Tema %s ya existe. Desea reemplazarlo? The theme export failed because this error occurred: %s La exportación del tema falló por este error: %s OpenLP Themes (*.otz) Temas OpenLP (*.otz) %s time(s) by %s %s vez (veces) por %s Unable to delete theme Imposible eliminar Tema Theme is currently used %s El Tema está actualmente en uso %s OpenLP.ThemeWizard Theme Wizard Asistente para Temas Welcome to the Theme Wizard Bienvenido al Asistente para Temas Set Up Background Establecer un fondo Set up your theme's background according to the parameters below. Establecer el fondo de su tema según los siguientes parámetros. Background type: Tipo de fondo: Gradient Gradiente Gradient: Gradiente: Horizontal Horizontal Vertical Vertical Circular Circular Top Left - Bottom Right Arriba Izquierda - Abajo Derecha Bottom Left - Top Right Abajo Izquierda - Abajo Derecha Main Area Font Details Fuente del Ãrea Principal Define the font and display characteristics for the Display text Definir la fuente y las características para el texto en Pantalla Font: Fuente: Size: Tamaño: Line Spacing: Epaciado de Líneas: &Outline: &Contorno: &Shadow: &Sombra: Bold Negrita Italic Cursiva Footer Area Font Details Fuente de pie de página Define the font and display characteristics for the Footer text Definir la fuente y las características para el texto de pie de página Text Formatting Details Detalles de Formato Allows additional display formatting information to be defined Permite definir información adicional de formato Horizontal Align: Alinea. Horizontal: Left Izquierda Right Derecha Center Centro Output Area Locations Ubicación del Ãrea de Proyección &Main Area Ãrea &Principal &Use default location &Usar ubicación predeterminada X position: Posición x: px px Y position: Posición y: Width: Ancho: Height: Altura: Use default location Usar ubicaciónpredeterminada Theme name: Nombre: Edit Theme - %s Editar Tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este asistente le ayudará a crear y editar temas. Presione Siguiente para iniciar el proceso al establecer el fondo. Transitions: Transiciones: &Footer Area &Pie de Página Starting color: Color inicial: Ending color: Color final: Background color: Color de fondo: Justify Justificar Layout Preview Vista previa de Distribución Transparent Transparente Preview and Save Previsualizar y Guardar Preview the theme and save it. Previsualizar el tema y guardarlo. Background Image Empty Imagen de Fondo Vacía Select Image Seleccionar Imagen Theme Name Missing Nombre de Tema faltante There is no name for this theme. Please enter one. No existe nombre para este tema. Ingrese uno. Theme Name Invalid Nombre de Tema inválido Invalid theme name. Please enter one. Nombre de tema inválido. Por favor ingrese uno. Solid color Color sólido color: color: Allows you to change and move the Main and Footer areas. Le permite cambiar y mover el Ãrea Principal y de Pie de Página. You have not selected a background image. Please select one before continuing. No ha seleccionado una imagen de fondo. Seleccione una antes de continuar. OpenLP.ThemesTab Global Theme Tema Global Theme Level Nivel S&ong Level &Canción Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Utilizar el tema de la canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. &Service Level &Servicio Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Utilizar el tema del servicio ignorando los temas individuales. Si el servicio no tiene un tema, utilizar el tema global. &Global Level &Global Use the global theme, overriding any themes associated with either the service or the songs. Utilizar el tema global, ignorado los temas asociados con el servicio o con las canciones. Themes Temas Universal Settings Preferencias Universales &Wrap footer text Ajustar &pie de página OpenLP.Ui Delete the selected item. Eliminar el elemento seleccionado. Move selection up one position. Mover selección un espacio hacia arriba. Move selection down one position. Mover selección un espacio hacia abajo. &Vertical Align: Alinea. &Vertical: Finished import. Importación finalizada. Format: Formato: Importing Importando Importing "%s"... Importando "%s"... Select Import Source Seleccione la Fuente para Importar Select the import format and the location to import from. Seleccione el formato a importar y su ubicación. Open %s File Abrir %s Archivo %p% %p% Ready. Listo. Starting import... Iniciando importación... You need to specify at least one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. Welcome to the Bible Import Wizard Bienvenido al Asistente para Biblias Welcome to the Song Export Wizard Bienvenido al Asistente para Exportar Canciones Welcome to the Song Import Wizard Bienvenido al Asistente para Importar Canciones Author Singular Autor Authors Plural Autores © Copyright symbol. © Song Maintenance Administración de Canciones Topic Singular Categoría Topics Plural Categorías Title and/or verses not found Título y/o versos no encontrados XML syntax error Error XML de sintaxis Welcome to the Bible Upgrade Wizard Bienvenido al Asistente para Actualizar Biblias Open %s Folder Abrir Carpeta %s You need to specify one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. You need to specify one %s folder to import from. A song format e.g. PowerSong Debe especificar una carpeta %s para importar. Importing Songs Importando Canciones Welcome to the Duplicate Song Removal Wizard Bienvenido al Asistente de Canciones Duplicadas Written by Escrito por Author Unknown Autor desconocido About Acerca de &Add &Agregar Add group Agregar grupo Advanced Avanzado All Files Todos los Archivos Automatic Automático Background Color Color de fondo Bottom Inferior Browse... Explorar... Cancel Cancelar CCLI number: Número CCLI: Create a new service. Crear un servicio nuevo. Confirm Delete Confirmar Eliminación Continuous Continuo Default Predeterminado Default Color: Color predeterminado: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Servicio %Y-%m-%d %H-%M &Delete &Eliminar Display style: Estilo de presentación: Duplicate Error Error de Duplicación &Edit &Editar Empty Field Campo Vacío Error Error Export Exportar File Archivos File Not Found Archivo no encontrado File %s not found. Please try selecting it individually. Archivo %s no encontrado. Por favor intente seleccionarlo individualmente. pt Abbreviated font pointsize unit pto Help Ayuda h The abbreviated unit for hours h Invalid Folder Selected Singular Carpeta Inválida Invalid File Selected Singular Archivo Inválido Invalid Files Selected Plural Archivos Inválidos Image Imagen Import Importar Layout style: Distribución: Live En Vivo Live Background Error Error del Fondo de proyección Live Toolbar Barra de Proyección Load Cargar Manufacturer Singular Fabricante Manufacturers Plural Fabricantes Model Singular Modelo Models Plural Modelos m The abbreviated unit for minutes m Middle Medio New Nuevo New Service Servicio Nuevo New Theme Tema Nuevo Next Track Pista Siguiente No Folder Selected Singular Ninguna Carpeta Seleccionada No File Selected Singular Archivo No Seleccionado No Files Selected Plural Archivos No Seleccionados No Item Selected Singular Nada Seleccionado No Items Selected Plural Nada Seleccionado OpenLP is already running. Do you wish to continue? OpenLP ya esta abierto. ¿Desea continuar? Open service. Abrir Servicio. Play Slides in Loop Reproducir en Bucle Play Slides to End Reproducir hasta el final Preview Vista Previa Print Service Imprimir Servicio Projector Singular Proyector Projectors Plural Proyectores Replace Background Reemplazar Fondo Replace live background. Reemplazar el fondo proyectado. Reset Background Restablecer Fondo Reset live background. Restablecer el fondo proyectado. s The abbreviated unit for seconds s Save && Preview Guardar y Previsualizar Search Buscar Search Themes... Search bar place holder text Buscar Temas... You must select an item to delete. Debe seleccionar un elemento para eliminar. You must select an item to edit. Debe seleccionar un elemento para editar. Settings Preferencias Save Service Guardar Servicio Service Servicio Optional &Split &División Opcional Split a slide into two only if it does not fit on the screen as one slide. Dividir la diapositiva, solo si no se puede mostrar como una sola. Start %s Inicio %s Stop Play Slides in Loop Detener Bucle Stop Play Slides to End Detener presentación Theme Singular Tema Themes Plural Temas Tools Herramientas Top Superior Unsupported File Archivo inválido Verse Per Slide Versículo por Diapositiva Verse Per Line Versículo por Línea Version Versión View Vista View Mode Disposición CCLI song number: CCLI canción número: Preview Toolbar Barra de Vista Previa OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s y %s %s, and %s Locale list separator: end %s, y %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Diálogo de selección de fuente PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Complemento de Presentaciones</strong><br />El complemento de presentaciones permite mostrar presentaciones usando diversos programas. La elección del programa se realiza por medio de una casilla de selección. Presentation name singular Presentación Presentations name plural Presentaciones Presentations container title Presentaciones Load a new presentation. Cargar una Presentación nueva. Delete the selected presentation. Eliminar la presentación seleccionada. Preview the selected presentation. Vista Previa de la presentación seleccionada. Send the selected presentation live. Proyectar la presentación seleccionada. Add the selected presentation to the service. Agregar esta presentación al servicio. PresentationPlugin.MediaItem Select Presentation(s) Seleccionar Presentación(es) Automatic Automático Present using: Mostrar usando: File Exists Ya existe el Archivo A presentation with that filename already exists. Ya existe una presentación con este nombre. This type of presentation is not supported. No se admite este tipo de presentación. Presentations (%s) Presentaciones (%s) Missing Presentation Presentación faltante The presentation %s is incomplete, please reload. La presentación %s está incompleta, cárgela nuevamente. The presentation %s no longer exists. La presentación %s ya no existe. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Se produjo un error con la integración de PowerPoint y se cerrará la presentación. Reinicie la presentación para mostrarla de nuevo. PresentationPlugin.PresentationTab Available Controllers Controladores Disponibles %s (unavailable) %s (no disponible) Allow presentation application to be overridden Permitir tomar el control del programa de presentación PDF options Opciones de PDF Use given full path for mudraw or ghostscript binary: Usar la ubicación para el binario de mudraw o ghostscript: Select mudraw or ghostscript binary. Seleccione el archivo binario mudraw o ghostscript. The program is not ghostscript or mudraw which is required. El programa no es el ghostscript o mudraw necesario. PowerPoint options Opciones de PowerPoint Clicking on a selected slide in the slidecontroller advances to next effect. Hacer clic en el control de diapositivas adelanta al siguiente efecto. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). PowerPoint controla el tamaño y posición de la ventana de presentación (soluciona problema de escalado en Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Acceso Remoto</strong><br />El acceso remoto le permite enviar mensajes a otra versión del programa en un equipo diferente, por medio del navegador de internet o por medio de API. Remote name singular Acceso remoto Remotes name plural Remotos Remote container title Acceso remoto Server Config Change Cambio en Configuración de Servidor Server configuration changes will require a restart to take effect. Debe reiniciar para aplicar los cambios en la configuración del servidor. RemotePlugin.Mobile Service Manager Gestor de Servicio Slide Controller Control de Diapositivas Alerts Alertas Search Buscar Home Inicio Refresh Actualizar Blank En blanco Theme Tema Desktop Escritorio Show Mostrar Prev Anterior Next Siguiente Text Texto Show Alert Mostrar Alerta Go Live Proyectar Add to Service Agregar al Servicio Add &amp; Go to Service Agregar e Ir al Servicio No Results Sin Resultados Options Opciones Service Servicio Slides Diapositivas Settings Preferencias Remote Acceso remoto Stage View Vista de Escenario Live View Vista En Vivo RemotePlugin.RemoteTab Serve on IP address: Dirección IP a Servir: Port number: Puerto número: Server Settings Config. de Servidor Remote URL: URL Remota: Stage view URL: URL Administración: Display stage time in 12h format Usar formato de 12h en pantalla Android App Android App Live view URL: URL de Vista del Escenario: HTTPS Server Servidor HTTPS Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. No se encontró el certificado SSL. El servidor HTTPS no estará disponible a menos que se encuentre el certificado SSL. Por favor vea el manual para más información. User Authentication Autenticación de Usuario User id: Nombre de usuario: Password: Contraseña: Show thumbnails of non-text slides in remote and stage view. Mostrar miniaturas para diapostivas no de texto en vista remota y de escenario. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Escanee el código QR o haga click en <a href="%s">descargar</a> para instalar la app Android desde Google Play. SongUsagePlugin &Song Usage Tracking &Historial de Uso &Delete Tracking Data &Eliminar datos de Historial Delete song usage data up to a specified date. Borrar los datos del historial hasta la fecha especificada. &Extract Tracking Data &Extraer datos de Historial Generate a report on song usage. Generar un reporte del historial de uso de las canciones. Toggle Tracking Activar Historial Toggle the tracking of song usage. Encender o apagar el historial del uso de las canciones. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Complemento de Historial</strong><br />Este complemento mantiene un registro del número de veces que se usa una canción en los servicios. SongUsage name singular Historial SongUsage name plural Historial SongUsage container title Historial Song Usage Historial Song usage tracking is active. Monitoreo de historial activo. Song usage tracking is inactive. Monitoreo de historial inactivo. display mostrar printed impreso SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Borrar historial de canción Delete Selected Song Usage Events? ¿Borrar el historial de esta canción? Are you sure you want to delete selected Song Usage data? ¿Desea borrar los datos del historial de la canción seleccionada? Deletion Successful Limpieza Exitosa Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Seleccione la fecha desde la cual borrar el historial. Todos los datos guardados antes de esta fecha serán borrados permanentemente. All requested data has been deleted successfully. Todos los datos han sido borrados exitosamente. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Extracción del Historial Select Date Range Seleccionar Rango de Fechas to hasta Report Location Ubicación de Reporte Output File Location Archivo de Salida usage_detail_%s_%s.txt historial_%s_%s.txt Report Creation Crear Reporte Report %s has been successfully created. Reporte %s se ha creado satisfactoriamente. Output Path Not Selected Ruta de salida no seleccionada You have not set a valid output location for your song usage report. Please select an existing path on your computer. No se ha establecido una ubicación válida para el archivo de reporte. Por favor seleccione una ubicación en su equipo. Report Creation Failed Falló Creación de Reporte An error occurred while creating the report: %s Se produjo un error al crear el reporte: %s SongsPlugin &Song &Canción Import songs using the import wizard. Importar canciones usando el asistente. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Complemento de Canciones</strong><br />El complemento de canciones permite mostar y editar canciones. &Re-index Songs &Re-indexar Canciones Re-index the songs database to improve searching and ordering. Reorganiza la base de datos para mejorar la busqueda y ordenamiento. Reindexing songs... Reindexando canciones... Arabic (CP-1256) Ãrabe (CP-1256) Baltic (CP-1257) Báltico (CP-1257) Central European (CP-1250) Europa Central (CP-1250) Cyrillic (CP-1251) Cirílico (CP-1251) Greek (CP-1253) Griego (CP-1253) Hebrew (CP-1255) Hebreo (CP-1255) Japanese (CP-932) Japonés (CP-932) Korean (CP-949) Koreano (CP-949) Simplified Chinese (CP-936) Chino Simplificado (CP-936) Thai (CP-874) Tailandés (CP-874) Traditional Chinese (CP-950) Chino Tradicional (CP-950) Turkish (CP-1254) Turco (CP-1254) Vietnam (CP-1258) Vietnamita (CP-1258) Western European (CP-1252) Europa Occidental (CP-1252) Character Encoding Codificación de Caracteres The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. La configuración de códigos de página es responsable por la correcta representación de los caracteres. Por lo general, la opción preseleccionada es la adecuada. Please choose the character encoding. The encoding is responsible for the correct character representation. Por favor elija una codificación de caracteres. La codificación se encarga de la correcta representación de caracteres. Song name singular Canción Songs name plural Canciones Songs container title Canciones Exports songs using the export wizard. Exportar canciones usando el asistente. Add a new song. Agregar una canción nueva. Edit the selected song. Editar la canción seleccionada. Delete the selected song. Eliminar la canción seleccionada. Preview the selected song. Vista Previa de la canción seleccionada. Send the selected song live. Proyectar la canción seleccionada. Add the selected song to the service. Agregar esta canción al servicio. Reindexing songs Reindexando canciones CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Importar canciones del servicio SongSelect de CCLI. Find &Duplicate Songs Buscar Canciones &Duplicadas Find and remove duplicate songs in the song database. Buscar y eliminar las canciones duplicadas en la base de datos. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Letra Music Author who wrote the music of a song Música Words and Music Author who wrote both lyrics and music of a song Letra y Música Translation Author who translated the song Traducción SongsPlugin.AuthorsForm Author Maintenance Administración de Autores Display name: Mostrar: First name: Nombre: Last name: Apellido: You need to type in the first name of the author. Debe escribir el nombre del autor. You need to type in the last name of the author. Debe ingresar el apellido del autor. You have not set a display name for the author, combine the first and last names? No a establecido un nombre para mostrar, ¿desea unir el nombre y el apellido? SongsPlugin.CCLIFileImport The file does not have a valid extension. El archivo no tiene una extensión válida. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Archivo de canción DreamBeam inválido. Falta la etiqueta de DreamBeam. SongsPlugin.EasyWorshipSongImport Administered by %s Administrado por %s "%s" could not be imported. %s "%s" no se pudo importar. %s Unexpected data formatting. Formato de datos inesperado. No song text found. No se encontró el texto [above are Song Tags with notes imported from EasyWorship] [arriba están las Etiquetas con las notas importadas desde EasyWorship] This file does not exist. Este archivo no existe. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. No se encuentra el archivo "Songs.MB". Debe estar en el mismo folder que el archivo "Songs.DB". This file is not a valid EasyWorship database. El archivo no es una base de datos de EasyWorship válida. Could not retrieve encoding. No se pudo recuperar la codificación. SongsPlugin.EditBibleForm Meta Data Metadatos Custom Book Names Nombres Personalizados SongsPlugin.EditSongForm Song Editor Editor de Canción &Title: &Título: Alt&ernate title: Título alt&ernativo: &Lyrics: &Letras: &Verse order: Orden de &versos: Ed&it All Ed&itar todo Title && Lyrics Título y Letra &Add to Song &Agregar a Canción &Remove &Quitar A&dd to Song A&gregar a Canción R&emove &Quitar New &Theme &Tema Nuevo Copyright Information Información de Derechos de Autor Comments Comentarios Theme, Copyright Info && Comments Tema, Derechos de Autor y Comentarios Add Author Agregar Autor This author does not exist, do you want to add them? Este autor no existe, ¿desea agregarlo? This author is already in the list. Este autor ya esta en la lista. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. No ha seleccionado un autor válido. Seleccione un autor de la lista o ingrese un nombre nuevo y presione el botón "Agregar Autor a Canción" para agregar el autor nuevo. Add Topic Agregar Categoría This topic does not exist, do you want to add it? Esta categoría no existe, ¿desea agregarla? This topic is already in the list. Esta categoría ya esta en la lista. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. No seleccionado una categoría válida. Seleccione una categoría de la lista o ingrese una nueva y presione el botón "Agregar Categoría a Canción" para añadir la categoría nueva. You need to type in a song title. Debe escribir un título. You need to type in at least one verse. Debe agregar al menos un verso. You need to have an author for this song. Debe ingresar un autor para esta canción. Linked Audio Audio Asociado Add &File(s) Agregar &Archivo(s) Add &Media Agregar &Medio Remove &All Quitar &Todo Open File(s) Abrir Archivo(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Advertencia:</strong> No se han utilizado todos los versos. <strong>Warning:</strong> You have not entered a verse order. <strong>Advertencia:</strong> No ingresó el orden de las estrofas. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. No se encuentra el verso "%(invalid)s". Entradas válidas son %(valid)s. Por favor ingrese versos separados por espacios. Invalid Verse Order Orden de Versos Inválido &Edit Author Type &Editar Tipo de Autor Edit Author Type Editar el Tipo de Autor Choose type for this author Seleccione el tipo para este autor. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. No hay Versículos correspondientes a "%(invalid)s". Entradas válidas son %(valid)s. Por favor, introduzca los Versículos separados por espacios. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Editar Verso &Verse type: Tipo de &verso: &Insert &Insertar Split a slide into two by inserting a verse splitter. Insertar un separador para dividir la diapositiva. SongsPlugin.ExportWizardForm Song Export Wizard Asistente para Exportar Canciones Select Songs Seleccione Canciones Check the songs you want to export. Revise las canciones a exportar. Uncheck All Desmarcar Todo Check All Marcar Todo Select Directory Seleccione un Directorio Directory: Directorio: Exporting Exportando Please wait while your songs are exported. Por favor espere mientras se exportan las canciones. You need to add at least one Song to export. Debe agregar al menos una Canción para exportar. No Save Location specified Destino no especificado Starting export... Iniciando exportación... You need to specify a directory. Debe especificar un directorio. Select Destination Folder Seleccione Carpeta de Destino Select the directory where you want the songs to be saved. Seleccionar el directorio para guardar las canciones. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Este asistente le ayudará a exportar sus canciones al formato gratuito y de código abierto<strong>OpenLyrics</strong>. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Archivo Foilpresenter no válido. No se hallaron versos. SongsPlugin.GeneralTab Enable search as you type Buscar a medida que se escribe SongsPlugin.ImportWizardForm Select Document/Presentation Files Seleccione Documento/Presentación Song Import Wizard Asistente para Exportar Canciones This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este asistente le ayudará a importar canciones de diversos formatos. Presione Siguiente para iniciar el proceso al seleccionar un formato a importar. Generic Document/Presentation Documento/Presentación genérica Add Files... Agregar Archivos... Remove File(s) Eliminar Archivo(s) Please wait while your songs are imported. Por favor espere mientras se exportan las canciones. Words Of Worship Song Files Archivo Words Of Worship Songs Of Fellowship Song Files Archivo Songs Of Fellowship SongBeamer Files Archivo SongBeamer SongShow Plus Song Files Archivo SongShow Plus Foilpresenter Song Files Archivo Foilpresenter Copy Copiar Save to File Guardar archivo The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador de Songs of Fellowship se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador documento/presentación se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. OpenLyrics Files Archivos OpenLyrics CCLI SongSelect Files Archivos CCLI SongSelect EasySlides XML File Archivo EasySlides XML EasyWorship Song Database Base de Datos EasyWorship DreamBeam Song Files Archivos de Canción DreamBeam You need to specify a valid PowerSong 1.0 database folder. Debe especificar una carpeta de datos PowerSong 1.0 válida. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primero convierta su base de datos ZionWork a un archivo de texto CSV, como se explica en el <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual de Usuario</a>. SundayPlus Song Files Archivos de SundayPlus This importer has been disabled. Este importador se ha deshabilitado. MediaShout Database Base de datos MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. El importador MediaShout se puede usar en windows únicamente. Se ha deshabilitado porque falta un módulo Python. Debe instalar el módulo "pyodbc" para usar este importador. SongPro Text Files Archivos de texto SongPro SongPro (Export File) SongPro (Archivo Exportado) In SongPro, export your songs using the File -> Export menu En SongPro, puede exportar canciones en el menú Archivo -> Exportar EasyWorship Service File Archivo de Servicio de EasyWorship WorshipCenter Pro Song Files Archivo WorshipCenter Pro The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. El importador WorshipCenter Pro se puede usar en windows únicamente. Se ha deshabilitado porque falta un módulo Python. Debe instalar el módulo "pyodbc" para usar este importador. PowerPraise Song Files Archivo PowerPraise PresentationManager Song Files Archivos de canción PresentationManager ProPresenter 4 Song Files Archivo ProPresenter 4 Worship Assistant Files Archivo Worship Assistant Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. En Worship Assistant, exporte su Base de Datos a un archivo CSV. OpenLyrics or OpenLP 2 Exported Song Canción exportada por OpenLyrics u OpenLP 2 OpenLP 2 Databases Bases de Datos OpenLP 2 LyriX Files Archivos LyriX LyriX (Exported TXT-files) LyriX (archivos TXT exportados) VideoPsalm Files Archivos VideoPsalm VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s Los himnarios VideoPsalm normalmente están ubicados en %s SongsPlugin.LyrixImport Error: %s Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Seleccionar Archivo(s) de Medios Select one or more audio files from the list below, and click OK to import them into this song. Seleccione uno o más archivos de audio de la lista, presione OK para incluirlos en esta canción. SongsPlugin.MediaItem Titles Títulos Lyrics Letra CCLI License: Licensia CCLI: Entire Song Canción Completa Maintain the lists of authors, topics and books. Administrar la lista de autores, categorías e himnarios. copy For song cloning duplicar Search Titles... Buscar Títulos... Search Entire Song... Buscar Canción Completa... Search Lyrics... Buscar Letras... Search Authors... Buscar Autores... Are you sure you want to delete the "%d" selected song(s)? ¿Desea borrar la(s) %n cancion(es) seleccionadas? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. No se logró abrir la base de datos MediaShout SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. No es una base de datos de canciones OpenLP 2 válida. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportando "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Archivo de canción OpenSong inválido. Falta la etiqueta de canción. SongsPlugin.PowerSongImport No songs to import. No hay canciones para importar. Verses not found. Missing "PART" header. Versos no encontrados. Falta encabezado "PART" No %s files found. Ningún archivo %s encontrado. Invalid %s file. Unexpected byte value. Archivo %s inválido. Valor de byte inesperado. Invalid %s file. Missing "TITLE" header. Archivo %s inválido.Falta encabezado "TITLE" Invalid %s file. Missing "COPYRIGHTLINE" header. Archivo %s inválido.Falta encabezado "COPYRIGHTLINE" SongsPlugin.SongBookForm &Name: &Nombre: &Publisher: &Editor: You need to type in a name for the book. Debe ingresar un nombre para el himnario. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. La importación falló. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportación finalizada. Use el importador <strong>OpenLyrics</strong> para estos archivos. Your song export failed because this error occurred: %s Su exportación falló por el siguiente error: %s SongsPlugin.SongImport copyright derechos de autor The following songs could not be imported: Las siguientes canciones no se importaron: Cannot access OpenOffice or LibreOffice Imposible accesar OpenOffice o LibreOffice Unable to open file No se puede abrir el archivo File not found Archivo no encontrado SongsPlugin.SongMaintenanceForm Could not add your author. No se pudo agregar el autor. This author already exists. Este autor ya existe. Could not add your topic. No se pudo agregar la categoría. This topic already exists. Esta categoría ya existe. Could not add your book. No se pudo agregar el himnario. This book already exists. Este himnario ya existe. Could not save your changes. No se pudo guardar los cambios. Could not save your modified author, because the author already exists. No se pudo guardar el autor, porque este ya existe. Could not save your modified topic, because it already exists. No se pudo guardar la categoría, porque esta ya existe. Delete Author Borrar Autor Are you sure you want to delete the selected author? ¿Desea eliminar el autor seleccionado? This author cannot be deleted, they are currently assigned to at least one song. No se puede eliminar el autor, esta asociado con al menos una canción. Delete Topic Borrar Categoría Are you sure you want to delete the selected topic? ¿Desea eliminar la categoría seleccionada? This topic cannot be deleted, it is currently assigned to at least one song. No se puede eliminar la categoría, esta asociada con al menos una canción. Delete Book Eliminar Libro Are you sure you want to delete the selected book? ¿Desea eliminar el himnario seleccionado? This book cannot be deleted, it is currently assigned to at least one song. Este himnario no se puede eliminar, esta asociado con al menos una canción. The author %s already exists. Would you like to make songs with author %s use the existing author %s? El autor %s ya existe. ¿Desea que las canciones con el autor %s utilizen el existente %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? La categoría %s ya existe. ¿Desea que las canciones con la categoría %s utilizen la existente %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? El himnario %s ya existe. ¿Desea que las canciones con el himnario %s utilizen el existente %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer Importador CCLI SongSelect <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Nota:</strong> Se requiere de una conexión a Internet para importar las canciones desde CCLI SongSelect. Username: Usuario: Password: Contraseña: Save username and password Guardar nombre de usuario y contraseña Login Iniciar sesión Search Text: Texto de Búsqueda: Search Buscar Found %s song(s) Se encontraron %s canción(es) Logout Cerrar sesión View Vista Title: Título: Author(s): Autor(es): Copyright: Copyright: CCLI Number: Número de CCLI: Lyrics: Letra: Back Atrás Import Importar More than 1000 results Más de 1000 resultados Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Su búsqueda a producido más de 1000 resultados, se ha detenido. Por favor puntualice su búsqueda para obtener mejores resultados. Logging out... Cerrando sesión... Save Username and Password Guardar Nombre de Usuario y Contraseña WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. ADVERTENCIA: guardar su nombre de usuario y contraseña NO ES SEGURO, su contraseña se guarda como TEXTO SIMPLE. Presione Si para guardar su contraseña o No para cancelar. Error Logging In Error al Iniciar Sesión There was a problem logging in, perhaps your username or password is incorrect? Se presentó un problema de acceso, ¿el usuario y clave son correctos? Song Imported Canción Importada Incomplete song Canción incompleta This song is missing some information, like the lyrics, and cannot be imported. Falta información en la canción, como la letra, y no se puede importar. Your song has been imported, would you like to import more songs? Se ha importado su canción, ¿desea importar más canciones? Stop SongsPlugin.SongsTab Songs Mode Modo de canciones Display verses on live tool bar Mostar los versos en la barra de proyección Update service from song edit Actualizar servicio desde el editor Import missing songs from service files Importar canciones faltantes desde archivos de servicio Display songbook in footer Mostrar himnario al pie Display "%s" symbol before copyright info Mostrar el símbolo "%s" antes de la información de copyright SongsPlugin.TopicsForm Topic Maintenance Administración de Categorías Topic name: Categoría: You need to type in a topic name. Debe escribir un nombre para la categoría. SongsPlugin.VerseType Verse Verso Chorus Coro Bridge Puente Pre-Chorus Pre-Coro Intro Intro Ending Final Other Otro SongsPlugin.VideoPsalmImport Error: %s Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Archivo de canción Words of Worship inválido. No existe "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Archivo de canción Words of Worship inválido. No existe "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Error al leer el archivo CSV. Line %d: %s Línea %d: %s Decoding error: %s Error de decodificación: %s File not valid WorshipAssistant CSV format. Archivo CSV WorshipAssistant no válido. Record %d Registrar %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. No se pudo conectar a la base de datos WorshipCenter Pro. SongsPlugin.ZionWorxImport Error reading CSV file. Error al leer el archivo CSV. File not valid ZionWorx CSV format. Archivo ZionWorx CSV inválido. Line %d: %s Línea %d: %s Decoding error: %s Error de decodificación: %s Record %d Registrar %d Wizard Wizard Asistente This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Esté asistente le ayudará a eliminar canciones duplicadas de la base de datos. Puede revisar cada posible canción duplicada antes de que sea eliminada. Las canciones no se borran sin su consentimiento explícito. Searching for duplicate songs. Buscando canciones duplicadas. Please wait while your songs database is analyzed. Por favor espere mientras se analiza la base de datos. Here you can decide which songs to remove and which ones to keep. Aquí puede decidir entre cuales canciones conservar y cuales eliminar. Review duplicate songs (%s/%s) Revise las canciones duplicadas (%s/%s) Information Información No duplicate songs have been found in the database. No se encontraron canciones duplicadas en la base de datos. OpenLP-2.4/resources/i18n/en.ts0000644000175000017500000153647712657640340015343 0ustar raoulraoul AlertsPlugin &Alert &Alert Show an alert message. Show an alert message. Alert name singular Alert Alerts name plural Alerts Alerts container title Alerts <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. AlertsPlugin.AlertForm Alert Message Alert Message Alert &text: Alert &text: &New &New &Save &Save Displ&ay Displ&ay Display && Cl&ose Display && Cl&ose New Alert New Alert &Parameter: &Parameter: No Parameter Found No Parameter Found You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? No Placeholder Found No Placeholder Found The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager Alert message created and displayed. Alert message created and displayed. AlertsPlugin.AlertsTab Font Font Font name: Font name: Font color: Font color: Background color: Background color: Font size: Font size: Alert timeout: Alert timeout: BiblesPlugin &Bible &Bible Bible name singular Bible Bibles name plural Bibles Bibles container title Bibles No Book Found No Book Found No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Import a Bible. Import a Bible. Add a new Bible. Add a new Bible. Edit the selected Bible. Edit the selected Bible. Delete the selected Bible. Delete the selected Bible. Preview the selected Bible. Preview the selected Bible. Send the selected Bible live. Send the selected Bible live. Add the selected Bible to the service. Add the selected Bible to the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. &Upgrade older Bibles &Upgrade older Bibles Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. Genesis Genesis Exodus Exodus Leviticus Leviticus Numbers Numbers Deuteronomy Deuteronomy Joshua Joshua Judges Judges Ruth Ruth 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Kings 2 Kings 2 Kings 1 Chronicles 1 Chronicles 2 Chronicles 2 Chronicles Ezra Ezra Nehemiah Nehemiah Esther Esther Job Job Psalms Psalms Proverbs Proverbs Ecclesiastes Ecclesiastes Song of Solomon Song of Solomon Isaiah Isaiah Jeremiah Jeremiah Lamentations Lamentations Ezekiel Ezekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadiah Jonah Jonah Micah Micah Nahum Nahum Habakkuk Habakkuk Zephaniah Zephaniah Haggai Haggai Zechariah Zechariah Malachi Malachi Matthew Matthew Mark Mark Luke Luke John John Acts Acts Romans Romans 1 Corinthians 1 Corinthians 2 Corinthians 2 Corinthians Galatians Galatians Ephesians Ephesians Philippians Philippians Colossians Colossians 1 Thessalonians 1 Thessalonians 2 Thessalonians 2 Thessalonians 1 Timothy 1 Timothy 2 Timothy 2 Timothy Titus Titus Philemon Philemon Hebrews Hebrews James James 1 Peter 1 Peter 2 Peter 2 Peter 1 John 1 John 2 John 2 John 3 John 3 John Jude Jude Revelation Revelation Judith Judith Wisdom Wisdom Tobit Tobit Sirach Sirach Baruch Baruch 1 Maccabees 1 Maccabees 2 Maccabees 2 Maccabees 3 Maccabees 3 Maccabees 4 Maccabees 4 Maccabees Rest of Daniel Rest of Daniel Rest of Esther Rest of Esther Prayer of Manasses Prayer of Manasses Letter of Jeremiah Letter of Jeremiah Prayer of Azariah Prayer of Azariah Susanna Susanna Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verse verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verses - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 to , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 and end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse end BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. You need to specify a book name for "%s". You need to specify a book name for "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Duplicate Book Name Duplicate Book Name The Book Name "%s" has been entered more than once. The Book Name "%s" has been entered more than once. BiblesPlugin.BibleManager Scripture Reference Error Scripture Reference Error Web Bible cannot be used Web Bible cannot be used Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. No Bibles Available No Bibles Available Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab Verse Display Verse Display Only show new chapter numbers Only show new chapter numbers Bible theme: Bible theme: No Brackets No Brackets ( And ) ( And ) { And } { And } [ And ] [ And ] Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. Display second Bible verses Display second Bible verses Custom Scripture References Custom Scripture References Verse Separator: Verse Separator: Range Separator: Range Separator: List Separator: List Separator: End Mark: End Mark: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. English English Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Bible Language Bible Language Application Language Application Language Show verse numbers Show verse numbers BiblesPlugin.BookNameDialog Select Book Name Select Book Name Current name: Current name: Corresponding name: Corresponding name: Show Books From Show Books From Old Testament Old Testament New Testament New Testament Apocrypha Apocrypha The following book name cannot be matched up internally. Please select the corresponding name from the list. The following book name cannot be matched up internally. Please select the corresponding name from the list. BiblesPlugin.BookNameForm You need to select a book. You need to select a book. BiblesPlugin.CSVBible Importing books... %s Importing books... %s Importing verses... done. Importing verses... done. BiblesPlugin.EditBibleForm Bible Editor Bible Editor License Details License Details Version name: Version name: Copyright: Copyright: Permissions: Permissions: Default Bible Language Default Bible Language Book name language in search field, search results and on display: Book name language in search field, search results and on display: Global Settings Global Settings Bible Language Bible Language Application Language Application Language English English This is a Web Download Bible. It is not possible to customize the Book Names. This is a Web Download Bible. It is not possible to customize the Book Names. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Registering Bible and loading books... Registering Language... Registering Language... Importing %s... Importing <book name>... Importing %s... Download Error Download Error There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Parse Error Parse Error There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. BiblesPlugin.ImportWizardForm Bible Import Wizard Bible Import Wizard This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Web Download Web Download Location: Location: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bible: Download Options Download Options Server: Server: Username: Username: Password: Password: Proxy Server (Optional) Proxy Server (Optional) License Details License Details Set up the Bible's license details. Set up the Bible's license details. Version name: Version name: Copyright: Copyright: Please wait while your Bible is imported. Please wait while your Bible is imported. You need to specify a file with books of the Bible to use in the import. You need to specify a file with books of the Bible to use in the import. You need to specify a file of Bible verses to import. You need to specify a file of Bible verses to import. You need to specify a version name for your Bible. You need to specify a version name for your Bible. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Bible Exists Bible Exists This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. Your Bible import failed. Your Bible import failed. CSV File CSV File Bibleserver Bibleserver Permissions: Permissions: Bible file: Bible file: Books file: Books file: Verses file: Verses file: Registering Bible... Registering Bible... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Click to download bible list Click to download bible list Download bible list Download bible list Error during download Error during download An error occurred while downloading the list of bibles from %s. An error occurred while downloading the list of bibles from %s. BiblesPlugin.LanguageDialog Select Language Select Language OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Language: Language: BiblesPlugin.LanguageForm You need to choose a language. You need to choose a language. BiblesPlugin.MediaItem Quick Quick Find: Find: Book: Book: Chapter: Chapter: Verse: Verse: From: From: To: To: Text Search Text Search Second: Second: Scripture Reference Scripture Reference Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Bible not fully loaded. Bible not fully loaded. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Search Scripture Reference... Search Scripture Reference... Search Text... Search Text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Advanced Advanced BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Removing unused tags (this may take a few minutes)... Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Select a Backup Directory Bible Upgrade Wizard Bible Upgrade Wizard This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Select Backup Directory Select Backup Directory Please select a backup directory for your Bibles Please select a backup directory for your Bibles Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. Please select a backup location for your Bibles. Backup Directory: Backup Directory: There is no need to backup my Bibles There is no need to backup my Bibles Select Bibles Select Bibles Please select the Bibles to upgrade Please select the Bibles to upgrade Upgrading Upgrading Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... Download Error Download Error To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete , %s failed , %s failed Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s Upgrade failed. Upgrade failed. You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. Starting upgrade... Starting upgrade... There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importing %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Custom Slide Custom Slides name plural Custom Slides Custom Slides container title Custom Slides Load a new custom slide. Load a new custom slide. Import a custom slide. Import a custom slide. Add a new custom slide. Add a new custom slide. Edit the selected custom slide. Edit the selected custom slide. Delete the selected custom slide. Delete the selected custom slide. Preview the selected custom slide. Preview the selected custom slide. Send the selected custom slide live. Send the selected custom slide live. Add the selected custom slide to the service. Add the selected custom slide to the service. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. CustomPlugin.CustomTab Custom Display Custom Display Display footer Display footer Import missing custom slides from service files Import missing custom slides from service files CustomPlugin.EditCustomForm Edit Custom Slides Edit Custom Slides &Title: &Title: Add a new slide at bottom. Add a new slide at bottom. Edit the selected slide. Edit the selected slide. Edit all the slides at once. Edit all the slides at once. Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. The&me: The&me: &Credits: &Credits: You need to type in a title. You need to type in a title. Ed&it All Ed&it All Insert Slide Insert Slide You need to add at least one slide. You need to add at least one slide. CustomPlugin.EditVerseForm Edit Slide Edit Slide CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Are you sure you want to delete the "%d" selected custom slide(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. Image name singular Image Images name plural Images Images container title Images Load a new image. Load a new image. Add a new image. Add a new image. Edit the selected image. Edit the selected image. Delete the selected image. Delete the selected image. Preview the selected image. Preview the selected image. Send the selected image live. Send the selected image live. Add the selected image to the service. Add the selected image to the service. ImagePlugin.AddGroupForm Add group Add group Parent group: Parent group: Group name: Group name: You need to type in a group name. You need to type in a group name. Could not add the new group. Could not add the new group. This group already exists. This group already exists. ImagePlugin.ChooseGroupForm Select Image Group Select Image Group Add images to group: Add images to group: No group No group Existing group Existing group New group New group ImagePlugin.ExceptionDialog Select Attachment Select Attachment ImagePlugin.MediaItem Select Image(s) Select Image(s) You must select an image to replace the background with. You must select an image to replace the background with. Missing Image(s) Missing Image(s) The following image(s) no longer exist: %s The following image(s) no longer exist: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. There was no display item to amend. There was no display item to amend. -- Top-level group -- -- Top-level group -- You must select an image or group to delete. You must select an image or group to delete. Remove group Remove group Are you sure you want to remove "%s" and everything in it? Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Visible background for images with aspect ratio different to screen. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC is an external player which supports a number of different formats. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. This media player uses your operating system to provide media capabilities. This media player uses your operating system to provide media capabilities. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. Media name singular Media Media name plural Media Media container title Media Load new media. Load new media. Add new media. Add new media. Edit the selected media. Edit the selected media. Delete the selected media. Delete the selected media. Preview the selected media. Preview the selected media. Send the selected media live. Send the selected media live. Add the selected media to the service. Add the selected media to the service. MediaPlugin.MediaClipSelector Select Media Clip Select Media Clip Source Source Media path: Media path: Select drive from list Select drive from list Load disc Load disc Track Details Track Details Title: Title: Audio track: Audio track: Subtitle track: Subtitle track: HH:mm:ss.z HH:mm:ss.z Clip Range Clip Range Start point: Start point: Set start point Set start point Jump to start point Jump to start point End point: End point: Set end point Set end point Jump to end point Jump to end point MediaPlugin.MediaClipSelectorForm No path was given No path was given Given path does not exists Given path does not exists An error happened during initialization of VLC player An error happened during initialization of VLC player VLC player failed playing the media VLC player failed playing the media CD not loaded correctly CD not loaded correctly The CD was not loaded correctly, please re-load and try again. The CD was not loaded correctly, please re-load and try again. DVD not loaded correctly DVD not loaded correctly The DVD was not loaded correctly, please re-load and try again. The DVD was not loaded correctly, please re-load and try again. Set name of mediaclip Set name of mediaclip Name of mediaclip: Name of mediaclip: Enter a valid name or cancel Enter a valid name or cancel Invalid character Invalid character The name of the mediaclip must not contain the character ":" The name of the mediaclip must not contain the character ":" MediaPlugin.MediaItem Select Media Select Media You must select a media file to delete. You must select a media file to delete. You must select a media file to replace the background with. You must select a media file to replace the background with. There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. Missing Media File Missing Media File The file %s no longer exists. The file %s no longer exists. Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) There was no display item to amend. There was no display item to amend. Unsupported File Unsupported File Use Player: Use Player: VLC player required VLC player required VLC player required for playback of optical devices VLC player required for playback of optical devices Load CD/DVD Load CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Load CD/DVD - only supported when VLC is installed and enabled The optical disc %s is no longer available. The optical disc %s is no longer available. Mediaclip already saved Mediaclip already saved This mediaclip has already been saved This mediaclip has already been saved MediaPlugin.MediaTab Allow media player to be overridden Allow media player to be overridden Start Live items automatically Start Live items automatically OPenLP.MainWindow &Projector Manager &Projector Manager OpenLP Image Files Image Files Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Backup Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? Backup of the data folder failed! Backup of the data folder failed! A backup of the data folder has been created at %s A backup of the data folder has been created at %s Open Open OpenLP.AboutForm Credits Credits License License build %s build %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. Volunteer Volunteer Project Lead Project Lead Developers Developers Contributors Contributors Packagers Packagers Testers Testers Translators Translators Afrikaans (af) Afrikaans (af) Czech (cs) Czech (cs) Danish (da) Danish (da) German (de) German (de) Greek (el) Greek (el) English, United Kingdom (en_GB) English, United Kingdom (en_GB) English, South Africa (en_ZA) English, South Africa (en_ZA) Spanish (es) Spanish (es) Estonian (et) Estonian (et) Finnish (fi) Finnish (fi) French (fr) French (fr) Hungarian (hu) Hungarian (hu) Indonesian (id) Indonesian (id) Japanese (ja) Japanese (ja) Norwegian BokmÃ¥l (nb) Norwegian BokmÃ¥l (nb) Dutch (nl) Dutch (nl) Polish (pl) Polish (pl) Portuguese, Brazil (pt_BR) Portuguese, Brazil (pt_BR) Russian (ru) Russian (ru) Swedish (sv) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Chinese(China) (zh_CN) Documentation Documentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings UI Settings Number of recent files to display: Number of recent files to display: Remember active media manager tab on startup Remember active media manager tab on startup Double-click to send items straight to live Double-click to send items straight to live Expand new service items on creation Expand new service items on creation Enable application exit confirmation Enable application exit confirmation Mouse Cursor Mouse Cursor Hide mouse cursor when over display window Hide mouse cursor when over display window Default Image Default Image Background color: Background color: Image file: Image file: Open File Open File Advanced Advanced Preview items when clicked in Media Manager Preview items when clicked in Media Manager Browse for an image file to display. Browse for an image file to display. Revert to the default OpenLP logo. Revert to the default OpenLP logo. Default Service Name Default Service Name Enable default service name Enable default service name Date and Time: Date and Time: Monday Monday Tuesday Tuesday Wednesday Wednesday Friday Friday Saturday Saturday Sunday Sunday Now Now Time when usual service starts. Time when usual service starts. Name: Name: Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. Revert to the default service name "%s". Revert to the default service name "%s". Example: Example: Bypass X11 Window Manager Bypass X11 Window Manager Syntax error. Syntax error. Data Location Data Location Current path: Current path: Custom path: Custom path: Browse for new data file location. Browse for new data file location. Set the data location to the default. Set the data location to the default. Cancel Cancel Cancel OpenLP data directory location change. Cancel OpenLP data directory location change. Copy data to new location. Copy data to new location. Copy the OpenLP data files to the new location. Copy the OpenLP data files to the new location. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. Data Directory Error Data Directory Error Select Data Directory Location Select Data Directory Location Confirm Data Directory Change Confirm Data Directory Change Reset Data Directory Reset Data Directory Overwrite Existing Data Overwrite Existing Data OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Thursday Thursday Display Workarounds Display Workarounds Use alternating row colours in lists Use alternating row colours in lists WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Restart Required Restart Required This change will only take effect once OpenLP has been restarted. This change will only take effect once OpenLP has been restarted. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. OpenLP.ColorButton Click to select a color. Click to select a color. OpenLP.DB RGB RGB Video Video Digital Digital Storage Storage Network Network RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Storage 1 Storage 2 Storage 2 Storage 3 Storage 3 Storage 4 Storage 4 Storage 5 Storage 5 Storage 6 Storage 6 Storage 7 Storage 7 Storage 8 Storage 8 Storage 9 Storage 9 Network 1 Network 1 Network 2 Network 2 Network 3 Network 3 Network 4 Network 4 Network 5 Network 5 Network 6 Network 6 Network 7 Network 7 Network 8 Network 8 Network 9 Network 9 OpenLP.ExceptionDialog Error Occurred Error Occurred Send E-Mail Send E-Mail Save to File Save to File Attach File Attach File Description characters to enter : %s Description characters to enter : %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. OpenLP.ExceptionForm Platform: %s Platform: %s Save Crash Report Save Crash Report Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) OpenLP.FileRenameForm File Rename File Rename New File Name: New File Name: File Copy File Copy OpenLP.FirstTimeLanguageForm Select Translation Select Translation Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. Translation: Translation: OpenLP.FirstTimeWizard Songs Songs First Time Wizard First Time Wizard Welcome to the First Time Wizard Welcome to the First Time Wizard Activate required Plugins Activate required Plugins Select the Plugins you wish to use. Select the Plugins you wish to use. Bible Bible Images Images Presentations Presentations Media (Audio and Video) Media (Audio and Video) Allow remote access Allow remote access Monitor Song Usage Monitor Song Usage Allow Alerts Allow Alerts Default Settings Default Settings Downloading %s... Downloading %s... Enabling selected plugins... Enabling selected plugins... No Internet Connection No Internet Connection Unable to detect an Internet connection. Unable to detect an Internet connection. Sample Songs Sample Songs Select and download public domain songs. Select and download public domain songs. Sample Bibles Sample Bibles Select and download free Bibles. Select and download free Bibles. Sample Themes Sample Themes Select and download sample themes. Select and download sample themes. Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. Default output display: Default output display: Select default theme: Select default theme: Starting configuration process... Starting configuration process... Setting Up And Downloading Setting Up And Downloading Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. Setting Up Setting Up Custom Slides Custom Slides Finish Finish No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Download Error Download Error There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to return to OpenLP. Download complete. Click the %s button to start OpenLP. Download complete. Click the %s button to start OpenLP. Click the %s button to return to OpenLP. Click the %s button to return to OpenLP. Click the %s button to start OpenLP. Click the %s button to start OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Downloading Resource Index Downloading Resource Index Please wait while the resource index is downloaded. Please wait while the resource index is downloaded. Please wait while OpenLP downloads the resource index file... Please wait while OpenLP downloads the resource index file... Downloading and Configuring Downloading and Configuring Please wait while resources are downloaded and OpenLP is configured. Please wait while resources are downloaded and OpenLP is configured. Network Error Network Error There was a network error attempting to connect to retrieve initial configuration information There was a network error attempting to connect to retrieve initial configuration information Cancel Cancel Unable to download some files Unable to download some files OpenLP.FormattingTagDialog Configure Formatting Tags Configure Formatting Tags Description Description Tag Tag Start HTML Start HTML End HTML End HTML Default Formatting Default Formatting Custom Formatting Custom Formatting OpenLP.FormattingTagForm <HTML here> <HTML here> Validation Error Validation Error Description is missing Description is missing Tag is missing Tag is missing Tag %s already defined. Tag %s already defined. Description %s already defined. Description %s already defined. Start tag %s is not valid HTML Start tag %s is not valid HTML End tag %(end)s does not match end tag for start tag %(start)s End tag %(end)s does not match end tag for start tag %(start)s OpenLP.FormattingTags Red Red Black Black Blue Blue Yellow Yellow Green Green Pink Pink Orange Orange Purple Purple White White Superscript Superscript Subscript Subscript Paragraph Paragraph Bold Bold Italics Italics Underline Underline Break Break OpenLP.GeneralTab General General Monitors Monitors Select monitor for output display: Select monitor for output display: Display if a single screen Display if a single screen Application Startup Application Startup Show blank screen warning Show blank screen warning Automatically open the last service Automatically open the last service Show the splash screen Show the splash screen Application Settings Application Settings Prompt to save before starting a new service Prompt to save before starting a new service Automatically preview next item in service Automatically preview next item in service sec sec CCLI Details CCLI Details SongSelect username: SongSelect username: SongSelect password: SongSelect password: X X Y Y Height Height Width Width Check for updates to OpenLP Check for updates to OpenLP Unblank display when adding new live item Unblank display when adding new live item Timed slide interval: Timed slide interval: Background Audio Background Audio Start background audio paused Start background audio paused Service Item Slide Limits Service Item Slide Limits Override display position: Override display position: Repeat track list Repeat track list Behavior of next/previous on the last/first slide: Behavior of next/previous on the last/first slide: &Remain on Slide &Remain on Slide &Wrap around &Wrap around &Move to next/previous service item &Move to next/previous service item OpenLP.LanguageManager Language Language Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. OpenLP.MainDisplay OpenLP Display OpenLP Display OpenLP.MainWindow &File &File &Import &Import &Export &Export &View &View M&ode M&ode &Tools &Tools &Settings &Settings &Language &Language &Help &Help Service Manager Service Manager Theme Manager Theme Manager Open an existing service. Open an existing service. Save the current service to disk. Save the current service to disk. Save Service As Save Service As Save the current service under a new name. Save the current service under a new name. E&xit E&xit Quit OpenLP Quit OpenLP &Theme &Theme &Configure OpenLP... &Configure OpenLP... &Media Manager &Media Manager Toggle Media Manager Toggle Media Manager Toggle the visibility of the media manager. Toggle the visibility of the media manager. &Theme Manager &Theme Manager Toggle Theme Manager Toggle Theme Manager Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. &Service Manager &Service Manager Toggle Service Manager Toggle Service Manager Toggle the visibility of the service manager. Toggle the visibility of the service manager. &Preview Panel &Preview Panel Toggle Preview Panel Toggle Preview Panel Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. &Live Panel &Live Panel Toggle Live Panel Toggle Live Panel Toggle the visibility of the live panel. Toggle the visibility of the live panel. List the Plugins List the Plugins &User Guide &User Guide &About &About More information about OpenLP More information about OpenLP &Online Help &Online Help &Web Site &Web Site Use the system language, if available. Use the system language, if available. Set the interface language to %s Set the interface language to %s Add &Tool... Add &Tool... Add an application to the list of tools. Add an application to the list of tools. &Default &Default Set the view mode back to the default. Set the view mode back to the default. &Setup &Setup Set the view mode to Setup. Set the view mode to Setup. &Live &Live Set the view mode to Live. Set the view mode to Live. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. OpenLP Version Updated OpenLP Version Updated OpenLP Main Display Blanked OpenLP Main Display Blanked The Main Display has been blanked out The Main Display has been blanked out Default Theme: %s Default Theme: %s English Please add the name of your language here English Configure &Shortcuts... Configure &Shortcuts... Open &Data Folder... Open &Data Folder... Open the folder where songs, bibles and other data resides. Open the folder where songs, bibles and other data resides. &Autodetect &Autodetect Update Theme Images Update Theme Images Update the preview images for all themes. Update the preview images for all themes. Print the current service. Print the current service. L&ock Panels L&ock Panels Prevent the panels being moved. Prevent the panels being moved. Re-run First Time Wizard Re-run First Time Wizard Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run First Time Wizard? Re-run First Time Wizard? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Clear List Clear List of recent files Clear List Clear the list of recent files. Clear the list of recent files. Configure &Formatting Tags... Configure &Formatting Tags... Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file Settings Settings Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine Import settings? Import settings? Open File Open File OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) Import settings Import settings OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Export Settings File Export Settings File OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) New Data Directory Error New Data Directory Error Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copying OpenLP data to new data directory location - %s - Please wait for copy to finish OpenLP Data directory copy failed %s OpenLP Data directory copy failed %s General General Library Library Jump to the search box of the current active plugin. Jump to the search box of the current active plugin. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Projector Manager Projector Manager Toggle Projector Manager Toggle Projector Manager Toggle the visibility of the Projector Manager Toggle the visibility of the Projector Manager Export setting error Export setting error The key "%s" does not have a default value so it will be skipped in this export. The key "%s" does not have a default value so it will be skipped in this export. An error occurred while exporting the settings: %s An error occurred while exporting the settings: %s &Recent Services &Recent Services &New Service &New Service &Open Service &Open Service &Save Service &Save Service Save Service &As... Save Service &As... &Manage Plugins &Manage Plugins Exit OpenLP Exit OpenLP Are you sure you want to exit OpenLP? Are you sure you want to exit OpenLP? &Exit OpenLP &Exit OpenLP OpenLP.Manager Database Error Database Error The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s OpenLP cannot load your database. Database: %s OpenLP cannot load your database. Database: %s OpenLP.MediaManagerItem No Items Selected No Items Selected &Add to selected Service Item &Add to selected Service Item You must select one or more items to preview. You must select one or more items to preview. You must select one or more items to send live. You must select one or more items to send live. You must select one or more items. You must select one or more items. You must select an existing service item to add to. You must select an existing service item to add to. Invalid Service Item Invalid Service Item You must select a %s service item. You must select a %s service item. You must select one or more items to add. You must select one or more items to add. No Search Results No Search Results Invalid File Type Invalid File Type Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported &Clone &Clone Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. OpenLP.OpenLyricsImportError <lyrics> tag is missing. <lyrics> tag is missing. <verse> tag is missing. <verse> tag is missing. OpenLP.PJLink1 Unknown status Unknown status No message No message Error while sending data to projector Error while sending data to projector Undefined command: Undefined command: OpenLP.PlayerTab Players Players Available Media Players Available Media Players Player Search Order Player Search Order Visible background for videos with aspect ratio different to screen. Visible background for videos with aspect ratio different to screen. %s (unavailable) %s (unavailable) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" NOTE: To use VLC you must install the %s version OpenLP.PluginForm Plugin Details Plugin Details Status: Status: Active Active Inactive Inactive %s (Inactive) %s (Inactive) %s (Active) %s (Active) %s (Disabled) %s (Disabled) Manage Plugins Manage Plugins OpenLP.PrintServiceDialog Fit Page Fit Page Fit Width Fit Width OpenLP.PrintServiceForm Options Options Copy Copy Copy as HTML Copy as HTML Zoom In Zoom In Zoom Out Zoom Out Zoom Original Zoom Original Other Options Other Options Include slide text if available Include slide text if available Include service item notes Include service item notes Include play length of media items Include play length of media items Add page break before each text item Add page break before each text item Service Sheet Service Sheet Print Print Title: Title: Custom Footer Text: Custom Footer Text: OpenLP.ProjectorConstants OK OK General projector error General projector error Not connected error Not connected error Lamp error Lamp error Fan error Fan error High temperature detected High temperature detected Cover open detected Cover open detected Check filter Check filter Authentication Error Authentication Error Undefined Command Undefined Command Invalid Parameter Invalid Parameter Projector Busy Projector Busy Projector/Display Error Projector/Display Error Invalid packet received Invalid packet received Warning condition detected Warning condition detected Error condition detected Error condition detected PJLink class not supported PJLink class not supported Invalid prefix character Invalid prefix character The connection was refused by the peer (or timed out) The connection was refused by the peer (or timed out) The remote host closed the connection The remote host closed the connection The host address was not found The host address was not found The socket operation failed because the application lacked the required privileges The socket operation failed because the application lacked the required privileges The local system ran out of resources (e.g., too many sockets) The local system ran out of resources (e.g., too many sockets) The socket operation timed out The socket operation timed out The datagram was larger than the operating system's limit The datagram was larger than the operating system's limit An error occurred with the network (Possibly someone pulled the plug?) An error occurred with the network (Possibly someone pulled the plug?) The address specified with socket.bind() is already in use and was set to be exclusive The address specified with socket.bind() is already in use and was set to be exclusive The address specified to socket.bind() does not belong to the host The address specified to socket.bind() does not belong to the host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) The socket is using a proxy, and the proxy requires authentication The socket is using a proxy, and the proxy requires authentication The SSL/TLS handshake failed The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found The proxy address set with setProxy() was not found An unidentified error occurred An unidentified error occurred Not connected Not connected Connecting Connecting Connected Connected Getting status Getting status Off Off Initialize in progress Initialize in progress Power in standby Power in standby Warmup in progress Warmup in progress Power is on Power is on Cooldown in progress Cooldown in progress Projector Information available Projector Information available Sending data Sending data Received data Received data The connection negotiation with the proxy server failed because the response from the proxy server could not be understood The connection negotiation with the proxy server failed because the response from the proxy server could not be understood OpenLP.ProjectorEdit Name Not Set Name Not Set You must enter a name for this entry.<br />Please enter a new name for this entry. You must enter a name for this entry.<br />Please enter a new name for this entry. Duplicate Name Duplicate Name OpenLP.ProjectorEditForm Add New Projector Add New Projector Edit Projector Edit Projector IP Address IP Address Port Number Port Number PIN PIN Name Name Location Location Notes Notes Database Error Database Error There was an error saving projector information. See the log for the error There was an error saving projector information. See the log for the error OpenLP.ProjectorManager Add Projector Add Projector Add a new projector Add a new projector Edit Projector Edit Projector Edit selected projector Edit selected projector Delete Projector Delete Projector Delete selected projector Delete selected projector Select Input Source Select Input Source Choose input source on selected projector Choose input source on selected projector View Projector View Projector View selected projector information View selected projector information Connect to selected projector Connect to selected projector Connect to selected projectors Connect to selected projectors Disconnect from selected projectors Disconnect from selected projectors Disconnect from selected projector Disconnect from selected projector Power on selected projector Power on selected projector Standby selected projector Standby selected projector Put selected projector in standby Put selected projector in standby Blank selected projector screen Blank selected projector screen Show selected projector screen Show selected projector screen &View Projector Information &View Projector Information &Edit Projector &Edit Projector &Connect Projector &Connect Projector D&isconnect Projector D&isconnect Projector Power &On Projector Power &On Projector Power O&ff Projector Power O&ff Projector Select &Input Select &Input Edit Input Source Edit Input Source &Blank Projector Screen &Blank Projector Screen &Show Projector Screen &Show Projector Screen &Delete Projector &Delete Projector Name Name IP IP Port Port Notes Notes Projector information not available at this time. Projector information not available at this time. Projector Name Projector Name Manufacturer Manufacturer Model Model Other info Other info Power status Power status Shutter is Shutter is Closed Closed Current source input is Current source input is Lamp Lamp On On Off Off Hours Hours No current errors or warnings No current errors or warnings Current errors/warnings Current errors/warnings Projector Information Projector Information No message No message Not Implemented Yet Not Implemented Yet Delete projector (%s) %s? Delete projector (%s) %s? Are you sure you want to delete this projector? Are you sure you want to delete this projector? OpenLP.ProjectorPJLink Fan Fan Lamp Lamp Temperature Temperature Cover Cover Filter Filter Other Other OpenLP.ProjectorTab Projector Projector Communication Options Communication Options Connect to projectors on startup Connect to projectors on startup Socket timeout (seconds) Socket timeout (seconds) Poll time (seconds) Poll time (seconds) Tabbed dialog box Tabbed dialog box Single dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Duplicate IP Address Invalid IP Address Invalid IP Address Invalid Port Number Invalid Port Number OpenLP.ScreenList Screen Screen primary primary OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Start</strong>: %s <strong>Length</strong>: %s <strong>Length</strong>: %s [slide %d] [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Reorder Service Item OpenLP.ServiceManager Move to &top Move to &top Move item to the top of the service. Move item to the top of the service. Move &up Move &up Move item up one position in the service. Move item up one position in the service. Move &down Move &down Move item down one position in the service. Move item down one position in the service. Move to &bottom Move to &bottom Move item to the end of the service. Move item to the end of the service. &Delete From Service &Delete From Service Delete the selected item from the service. Delete the selected item from the service. &Add New Item &Add New Item &Add to Selected Item &Add to Selected Item &Edit Item &Edit Item &Reorder Item &Reorder Item &Notes &Notes &Change Item Theme &Change Item Theme File is not a valid service. File is not a valid service. Missing Display Handler Missing Display Handler Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive &Expand all &Expand all Expand all the service items. Expand all the service items. &Collapse all &Collapse all Collapse all the service items. Collapse all the service items. Open File Open File Moves the selection down the window. Moves the selection down the window. Move up Move up Moves the selection up the window. Moves the selection up the window. Go Live Go Live Send the selected item to Live. Send the selected item to Live. &Start Time &Start Time Show &Preview Show &Preview Modified Service Modified Service The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? Custom Service Notes: Custom Service Notes: Notes: Notes: Playing time: Playing time: Untitled Service Untitled Service File could not be opened because it is corrupt. File could not be opened because it is corrupt. Empty File Empty File This service file does not contain any data. This service file does not contain any data. Corrupt File Corrupt File Load an existing service. Load an existing service. Save this service. Save this service. Select a theme for the service. Select a theme for the service. Slide theme Slide theme Notes Notes Edit Edit Service copy only Service copy only Error Saving File Error Saving File There was an error saving your file. There was an error saving your file. Service File(s) Missing Service File(s) Missing &Rename... &Rename... Create New &Custom Slide Create New &Custom Slide &Auto play slides &Auto play slides Auto play slides &Loop Auto play slides &Loop Auto play slides &Once Auto play slides &Once &Delay between slides &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - inactive &Auto Start - active &Auto Start - active Input delay Input delay Delay between slides in seconds. Delay between slides in seconds. Rename item title Rename item title Title: Title: An error occurred while writing the service file: %s An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Service Item Notes OpenLP.SettingsForm Configure OpenLP Configure OpenLP OpenLP.ShortcutListDialog Action Action Shortcut Shortcut Duplicate Shortcut Duplicate Shortcut The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. Alternate Alternate Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Default Default Custom Custom Capture shortcut. Capture shortcut. Restore the default shortcut of this action. Restore the default shortcut of this action. Restore Default Shortcuts Restore Default Shortcuts Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? Configure Shortcuts Configure Shortcuts OpenLP.SlideController Hide Hide Go To Go To Blank Screen Blank Screen Blank to Theme Blank to Theme Show Desktop Show Desktop Previous Service Previous Service Next Service Next Service Escape Item Escape Item Move to previous. Move to previous. Move to next. Move to next. Play Slides Play Slides Delay between slides in seconds. Delay between slides in seconds. Move to live. Move to live. Add to Service. Add to Service. Edit and reload song preview. Edit and reload song preview. Start playing media. Start playing media. Pause audio. Pause audio. Pause playing media. Pause playing media. Stop playing media. Stop playing media. Video position. Video position. Audio Volume. Audio Volume. Go to "Verse" Go to "Verse" Go to "Chorus" Go to "Chorus" Go to "Bridge" Go to "Bridge" Go to "Pre-Chorus" Go to "Pre-Chorus" Go to "Intro" Go to "Intro" Go to "Ending" Go to "Ending" Go to "Other" Go to "Other" Previous Slide Previous Slide Next Slide Next Slide Pause Audio Pause Audio Background Audio Background Audio Go to next audio track. Go to next audio track. Tracks Tracks OpenLP.SourceSelectForm Select Projector Source Select Projector Source Edit Projector Source Text Edit Projector Source Text Ignoring current changes and return to OpenLP Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Save changes and return to OpenLP Delete entries for this projector Delete entries for this projector Are you sure you want to delete ALL user-defined source input text for this projector? Are you sure you want to delete ALL user-defined source input text for this projector? OpenLP.SpellTextEdit Spelling Suggestions Spelling Suggestions Formatting Tags Formatting Tags Language: Language: OpenLP.StartTimeForm Theme Layout Theme Layout The blue box shows the main area. The blue box shows the main area. The red box shows the footer. The red box shows the footer. OpenLP.StartTime_form Item Start and Finish Time Item Start and Finish Time Hours: Hours: Minutes: Minutes: Seconds: Seconds: Start Start Finish Finish Length Length Time Validation Error Time Validation Error Finish time is set after the end of the media item Finish time is set after the end of the media item Start time is after the finish time of the media item Start time is after the finish time of the media item OpenLP.ThemeForm (approximately %d lines per slide) (approximately %d lines per slide) OpenLP.ThemeManager Create a new theme. Create a new theme. Edit Theme Edit Theme Edit a theme. Edit a theme. Delete Theme Delete Theme Delete a theme. Delete a theme. Import Theme Import Theme Import a theme. Import a theme. Export Theme Export Theme Export a theme. Export a theme. &Edit Theme &Edit Theme &Delete Theme &Delete Theme Set As &Global Default Set As &Global Default %s (default) %s (default) You must select a theme to edit. You must select a theme to edit. You are unable to delete the default theme. You are unable to delete the default theme. You have not selected a theme. You have not selected a theme. Save Theme - (%s) Save Theme - (%s) Theme Exported Theme Exported Your theme has been successfully exported. Your theme has been successfully exported. Theme Export Failed Theme Export Failed Select Theme Import File Select Theme Import File File is not a valid theme. File is not a valid theme. &Copy Theme &Copy Theme &Rename Theme &Rename Theme &Export Theme &Export Theme You must select a theme to rename. You must select a theme to rename. Rename Confirmation Rename Confirmation Rename %s theme? Rename %s theme? You must select a theme to delete. You must select a theme to delete. Delete Confirmation Delete Confirmation Delete %s theme? Delete %s theme? Validation Error Validation Error A theme with this name already exists. A theme with this name already exists. Copy of %s Copy of <theme name> Copy of %s Theme Already Exists Theme Already Exists Theme %s already exists. Do you want to replace it? Theme %s already exists. Do you want to replace it? The theme export failed because this error occurred: %s The theme export failed because this error occurred: %s OpenLP Themes (*.otz) OpenLP Themes (*.otz) %s time(s) by %s %s time(s) by %s Unable to delete theme Unable to delete theme Theme is currently used %s Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Theme Wizard Welcome to the Theme Wizard Welcome to the Theme Wizard Set Up Background Set Up Background Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. Background type: Background type: Gradient Gradient Gradient: Gradient: Horizontal Horizontal Vertical Vertical Circular Circular Top Left - Bottom Right Top Left - Bottom Right Bottom Left - Top Right Bottom Left - Top Right Main Area Font Details Main Area Font Details Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text Font: Font: Size: Size: Line Spacing: Line Spacing: &Outline: &Outline: &Shadow: &Shadow: Bold Bold Italic Italic Footer Area Font Details Footer Area Font Details Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text Text Formatting Details Text Formatting Details Allows additional display formatting information to be defined Allows additional display formatting information to be defined Horizontal Align: Horizontal Align: Left Left Right Right Center Center Output Area Locations Output Area Locations &Main Area &Main Area &Use default location &Use default location X position: X position: px px Y position: Y position: Width: Width: Height: Height: Use default location Use default location Theme name: Theme name: Edit Theme - %s Edit Theme - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Transitions: Transitions: &Footer Area &Footer Area Starting color: Starting color: Ending color: Ending color: Background color: Background color: Justify Justify Layout Preview Layout Preview Transparent Transparent Preview and Save Preview and Save Preview the theme and save it. Preview the theme and save it. Background Image Empty Background Image Empty Select Image Select Image Theme Name Missing Theme Name Missing There is no name for this theme. Please enter one. There is no name for this theme. Please enter one. Theme Name Invalid Theme Name Invalid Invalid theme name. Please enter one. Invalid theme name. Please enter one. Solid color Solid color color: color: Allows you to change and move the Main and Footer areas. Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. You have not selected a background image. Please select one before continuing. OpenLP.ThemesTab Global Theme Global Theme Theme Level Theme Level S&ong Level S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. &Service Level &Service Level Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. &Global Level &Global Level Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. Themes Themes Universal Settings Universal Settings &Wrap footer text &Wrap footer text OpenLP.Ui Delete the selected item. Delete the selected item. Move selection up one position. Move selection up one position. Move selection down one position. Move selection down one position. &Vertical Align: &Vertical Align: Finished import. Finished import. Format: Format: Importing Importing Importing "%s"... Importing "%s"... Select Import Source Select Import Source Select the import format and the location to import from. Select the import format and the location to import from. Open %s File Open %s File %p% %p% Ready. Ready. Starting import... Starting import... You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. Welcome to the Bible Import Wizard Welcome to the Bible Import Wizard Welcome to the Song Export Wizard Welcome to the Song Export Wizard Welcome to the Song Import Wizard Welcome to the Song Import Wizard Author Singular Author Authors Plural Authors © Copyright symbol. © Song Maintenance Song Maintenance Topic Singular Topic Topics Plural Topics Title and/or verses not found Title and/or verses not found XML syntax error XML syntax error Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard Open %s Folder Open %s Folder You need to specify one %s file to import from. A file type e.g. OpenSong You need to specify one %s file to import from. You need to specify one %s folder to import from. A song format e.g. PowerSong You need to specify one %s folder to import from. Importing Songs Importing Songs Welcome to the Duplicate Song Removal Wizard Welcome to the Duplicate Song Removal Wizard Written by Written by Author Unknown Author Unknown About About &Add &Add Add group Add group Advanced Advanced All Files All Files Automatic Automatic Background Color Background Color Bottom Bottom Browse... Browse... Cancel Cancel CCLI number: CCLI number: Create a new service. Create a new service. Confirm Delete Confirm Delete Continuous Continuous Default Default Default Color: Default Color: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M &Delete &Delete Display style: Display style: Duplicate Error Duplicate Error &Edit &Edit Empty Field Empty Field Error Error Export Export File File File Not Found File Not Found File %s not found. Please try selecting it individually. File %s not found. Please try selecting it individually. pt Abbreviated font pointsize unit pt Help Help h The abbreviated unit for hours h Invalid Folder Selected Singular Invalid Folder Selected Invalid File Selected Singular Invalid File Selected Invalid Files Selected Plural Invalid Files Selected Image Image Import Import Layout style: Layout style: Live Live Live Background Error Live Background Error Live Toolbar Live Toolbar Load Load Manufacturer Singular Manufacturer Manufacturers Plural Manufacturers Model Singular Model Models Plural Models m The abbreviated unit for minutes m Middle Middle New New New Service New Service New Theme New Theme Next Track Next Track No Folder Selected Singular No Folder Selected No File Selected Singular No File Selected No Files Selected Plural No Files Selected No Item Selected Singular No Item Selected No Items Selected Plural No Items Selected OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? Open service. Open service. Play Slides in Loop Play Slides in Loop Play Slides to End Play Slides to End Preview Preview Print Service Print Service Projector Singular Projector Projectors Plural Projectors Replace Background Replace Background Replace live background. Replace live background. Reset Background Reset Background Reset live background. Reset live background. s The abbreviated unit for seconds s Save && Preview Save && Preview Search Search Search Themes... Search bar place holder text Search Themes... You must select an item to delete. You must select an item to delete. You must select an item to edit. You must select an item to edit. Settings Settings Save Service Save Service Service Service Optional &Split Optional &Split Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. Start %s Start %s Stop Play Slides in Loop Stop Play Slides in Loop Stop Play Slides to End Stop Play Slides to End Theme Singular Theme Themes Plural Themes Tools Tools Top Top Unsupported File Unsupported File Verse Per Slide Verse Per Slide Verse Per Line Verse Per Line Version Version View View View Mode View Mode CCLI song number: CCLI song number: Preview Toolbar Preview Toolbar OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbook Songbooks Plural Songbooks OpenLP.core.lib %s and %s Locale list separator: 2 items %s and %s %s, and %s Locale list separator: end %s, and %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. Presentation name singular Presentation Presentations name plural Presentations Presentations container title Presentations Load a new presentation. Load a new presentation. Delete the selected presentation. Delete the selected presentation. Preview the selected presentation. Preview the selected presentation. Send the selected presentation live. Send the selected presentation live. Add the selected presentation to the service. Add the selected presentation to the service. PresentationPlugin.MediaItem Select Presentation(s) Select Presentation(s) Automatic Automatic Present using: Present using: File Exists File Exists A presentation with that filename already exists. A presentation with that filename already exists. This type of presentation is not supported. This type of presentation is not supported. Presentations (%s) Presentations (%s) Missing Presentation Missing Presentation The presentation %s is incomplete, please reload. The presentation %s is incomplete, please reload. The presentation %s no longer exists. The presentation %s no longer exists. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Available Controllers %s (unavailable) %s (unavailable) Allow presentation application to be overridden Allow presentation application to be overridden PDF options PDF options Use given full path for mudraw or ghostscript binary: Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. The program is not ghostscript or mudraw which is required. PowerPoint options PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. Remote name singular Remote Remotes name plural Remotes Remote container title Remote Server Config Change Server Config Change Server configuration changes will require a restart to take effect. Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager Service Manager Slide Controller Slide Controller Alerts Alerts Search Search Home Home Refresh Refresh Blank Blank Theme Theme Desktop Desktop Show Show Prev Prev Next Next Text Text Show Alert Show Alert Go Live Go Live Add to Service Add to Service Add &amp; Go to Service Add &amp; Go to Service No Results No Results Options Options Service Service Slides Slides Settings Settings Remote Remote Stage View Stage View Live View Live View RemotePlugin.RemoteTab Serve on IP address: Serve on IP address: Port number: Port number: Server Settings Server Settings Remote URL: Remote URL: Stage view URL: Stage view URL: Display stage time in 12h format Display stage time in 12h format Android App Android App Live view URL: Live view URL: HTTPS Server HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User Authentication User id: User id: Password: Password: Show thumbnails of non-text slides in remote and stage view. Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Song Usage Tracking &Delete Tracking Data &Delete Tracking Data Delete song usage data up to a specified date. Delete song usage data up to a specified date. &Extract Tracking Data &Extract Tracking Data Generate a report on song usage. Generate a report on song usage. Toggle Tracking Toggle Tracking Toggle the tracking of song usage. Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. SongUsage name singular SongUsage SongUsage name plural SongUsage SongUsage container title SongUsage Song Usage Song Usage Song usage tracking is active. Song usage tracking is active. Song usage tracking is inactive. Song usage tracking is inactive. display display printed printed SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Delete Song Usage Data Delete Selected Song Usage Events? Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? Deletion Successful Deletion Successful Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Song Usage Extraction Select Date Range Select Date Range to to Report Location Report Location Output File Location Output File Location usage_detail_%s_%s.txt usage_detail_%s_%s.txt Report Creation Report Creation Report %s has been successfully created. Report %s has been successfully created. Output Path Not Selected Output Path Not Selected You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed Report Creation Failed An error occurred while creating the report: %s An error occurred while creating the report: %s SongsPlugin &Song &Song Import songs using the import wizard. Import songs using the import wizard. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. &Re-index Songs &Re-index Songs Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. Reindexing songs... Reindexing songs... Arabic (CP-1256) Arabic (CP-1256) Baltic (CP-1257) Baltic (CP-1257) Central European (CP-1250) Central European (CP-1250) Cyrillic (CP-1251) Cyrillic (CP-1251) Greek (CP-1253) Greek (CP-1253) Hebrew (CP-1255) Hebrew (CP-1255) Japanese (CP-932) Japanese (CP-932) Korean (CP-949) Korean (CP-949) Simplified Chinese (CP-936) Simplified Chinese (CP-936) Thai (CP-874) Thai (CP-874) Traditional Chinese (CP-950) Traditional Chinese (CP-950) Turkish (CP-1254) Turkish (CP-1254) Vietnam (CP-1258) Vietnam (CP-1258) Western European (CP-1252) Western European (CP-1252) Character Encoding Character Encoding The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. Song name singular Song Songs name plural Songs Songs container title Songs Exports songs using the export wizard. Exports songs using the export wizard. Add a new song. Add a new song. Edit the selected song. Edit the selected song. Delete the selected song. Delete the selected song. Preview the selected song. Preview the selected song. Send the selected song live. Send the selected song live. Add the selected song to the service. Add the selected song to the service. Reindexing songs Reindexing songs CCLI SongSelect CCLI SongSelect Import songs from CCLI's SongSelect service. Import songs from CCLI's SongSelect service. Find &Duplicate Songs Find &Duplicate Songs Find and remove duplicate songs in the song database. Find and remove duplicate songs in the song database. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Words Music Author who wrote the music of a song Music Words and Music Author who wrote both lyrics and music of a song Words and Music Translation Author who translated the song Translation SongsPlugin.AuthorsForm Author Maintenance Author Maintenance Display name: Display name: First name: First name: Last name: Last name: You need to type in the first name of the author. You need to type in the first name of the author. You need to type in the last name of the author. You need to type in the last name of the author. You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? SongsPlugin.CCLIFileImport The file does not have a valid extension. The file does not have a valid extension. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Administered by %s "%s" could not be imported. %s "%s" could not be imported. %s Unexpected data formatting. Unexpected data formatting. No song text found. No song text found. [above are Song Tags with notes imported from EasyWorship] [above are Song Tags with notes imported from EasyWorship] This file does not exist. This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. This file is not a valid EasyWorship database. Could not retrieve encoding. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Meta Data Custom Book Names Custom Book Names SongsPlugin.EditSongForm Song Editor Song Editor &Title: &Title: Alt&ernate title: Alt&ernate title: &Lyrics: &Lyrics: &Verse order: &Verse order: Ed&it All Ed&it All Title && Lyrics Title && Lyrics &Add to Song &Add to Song &Remove &Remove A&dd to Song A&dd to Song R&emove R&emove New &Theme New &Theme Copyright Information Copyright Information Comments Comments Theme, Copyright Info && Comments Theme, Copyright Info && Comments Add Author Add Author This author does not exist, do you want to add them? This author does not exist, do you want to add them? This author is already in the list. This author is already in the list. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Add Topic Add Topic This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? This topic is already in the list. This topic is already in the list. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You need to type in a song title. You need to type in a song title. You need to type in at least one verse. You need to type in at least one verse. You need to have an author for this song. You need to have an author for this song. Linked Audio Linked Audio Add &File(s) Add &File(s) Add &Media Add &Media Remove &All Remove &All Open File(s) Open File(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> You have not entered a verse order. <strong>Warning:</strong> You have not entered a verse order. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order Invalid Verse Order &Edit Author Type &Edit Author Type Edit Author Type Edit Author Type Choose type for this author Choose type for this author There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks &Manage Authors, Topics, Songbooks Add &to Song Add &to Song Re&move Re&move Authors, Topics && Songbooks Authors, Topics && Songbooks Add Songbook Add Songbook This Songbook does not exist, do you want to add it? This Songbook does not exist, do you want to add it? This Songbook is already in the list. This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Edit Verse &Verse type: &Verse type: &Insert &Insert Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. SongsPlugin.ExportWizardForm Song Export Wizard Song Export Wizard Select Songs Select Songs Check the songs you want to export. Check the songs you want to export. Uncheck All Uncheck All Check All Check All Select Directory Select Directory Directory: Directory: Exporting Exporting Please wait while your songs are exported. Please wait while your songs are exported. You need to add at least one Song to export. You need to add at least one Song to export. No Save Location specified No Save Location specified Starting export... Starting export... You need to specify a directory. You need to specify a directory. Select Destination Folder Select Destination Folder Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Invalid Foilpresenter song file. No verses found. SongsPlugin.GeneralTab Enable search as you type Enable search as you type SongsPlugin.ImportWizardForm Select Document/Presentation Files Select Document/Presentation Files Song Import Wizard Song Import Wizard This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Generic Document/Presentation Generic Document/Presentation Add Files... Add Files... Remove File(s) Remove File(s) Please wait while your songs are imported. Please wait while your songs are imported. Words Of Worship Song Files Words Of Worship Song Files Songs Of Fellowship Song Files Songs Of Fellowship Song Files SongBeamer Files SongBeamer Files SongShow Plus Song Files SongShow Plus Song Files Foilpresenter Song Files Foilpresenter Song Files Copy Copy Save to File Save to File The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenLyrics Files OpenLyrics Files CCLI SongSelect Files CCLI SongSelect Files EasySlides XML File EasySlides XML File EasyWorship Song Database EasyWorship Song Database DreamBeam Song Files DreamBeam Song Files You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files SundayPlus Song Files This importer has been disabled. This importer has been disabled. MediaShout Database MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files SongPro Text Files SongPro (Export File) SongPro (Export File) In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu EasyWorship Service File EasyWorship Service File WorshipCenter Pro Song Files WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PowerPraise Song Files PresentationManager Song Files PresentationManager Song Files ProPresenter 4 Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant Files Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases OpenLP 2 Databases LyriX Files LyriX Files LyriX (Exported TXT-files) LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm Files VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Select Media File(s) Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. SongsPlugin.MediaItem Titles Titles Lyrics Lyrics CCLI License: CCLI License: Entire Song Entire Song Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. copy For song cloning copy Search Titles... Search Titles... Search Entire Song... Search Entire Song... Search Lyrics... Search Lyrics... Search Authors... Search Authors... Are you sure you want to delete the "%d" selected song(s)? Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Unable to open the MediaShout database. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Exporting "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. No songs to import. Verses not found. Missing "PART" header. Verses not found. Missing "PART" header. No %s files found. No %s files found. Invalid %s file. Unexpected byte value. Invalid %s file. Unexpected byte value. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. SongsPlugin.SongBookForm &Name: &Name: &Publisher: &Publisher: You need to type in a name for the book. You need to type in a name for the book. Songbook Maintenance Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. Your song export failed. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Your song export failed because this error occurred: %s Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: The following songs could not be imported: Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice Unable to open file Unable to open file File not found File not found SongsPlugin.SongMaintenanceForm Could not add your author. Could not add your author. This author already exists. This author already exists. Could not add your topic. Could not add your topic. This topic already exists. This topic already exists. Could not add your book. Could not add your book. This book already exists. This book already exists. Could not save your changes. Could not save your changes. Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. Delete Author Delete Author Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. Delete Topic Delete Topic Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. Delete Book Delete Book Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Username: Password: Password: Save username and password Save username and password Login Login Search Text: Search Text: Search Search Found %s song(s) Found %s song(s) Logout Logout View View Title: Title: Author(s): Author(s): Copyright: Copyright: CCLI Number: CCLI Number: Lyrics: Lyrics: Back Back Import Import More than 1000 results More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Logging out... Save Username and Password Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In Error Logging In There was a problem logging in, perhaps your username or password is incorrect? There was a problem logging in, perhaps your username or password is incorrect? Song Imported Song Imported Incomplete song Incomplete song This song is missing some information, like the lyrics, and cannot be imported. This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Your song has been imported, would you like to import more songs? Stop Stop SongsPlugin.SongsTab Songs Mode Songs Mode Display verses on live tool bar Display verses on live tool bar Update service from song edit Update service from song edit Import missing songs from service files Import missing songs from service files Display songbook in footer Display songbook in footer Display "%s" symbol before copyright info Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Topic Maintenance Topic name: Topic name: You need to type in a topic name. You need to type in a topic name. SongsPlugin.VerseType Verse Verse Chorus Chorus Bridge Bridge Pre-Chorus Pre-Chorus Intro Intro Ending Ending Other Other SongsPlugin.VideoPsalmImport Error: %s Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Error reading CSV file. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s File not valid WorshipAssistant CSV format. File not valid WorshipAssistant CSV format. Record %d Record %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Error reading CSV file. File not valid ZionWorx CSV format. File not valid ZionWorx CSV format. Line %d: %s Line %d: %s Decoding error: %s Decoding error: %s Record %d Record %d Wizard Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Searching for duplicate songs. Please wait while your songs database is analyzed. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Review duplicate songs (%s/%s) Information Information No duplicate songs have been found in the database. No duplicate songs have been found in the database. OpenLP-2.4/resources/i18n/de.ts0000644000175000017500000155666412657640340015331 0ustar raoulraoul AlertsPlugin &Alert &Hinweis Show an alert message. Hinweis anzeigen. Alert name singular Hinweis Alerts name plural Hinweise Alerts container title Hinweise <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Hinweis-Erweiterung</strong><br />Mit dieser Erweiterung können Sie Hinweise und auf dem Bildschirm anzeigen. AlertsPlugin.AlertForm Alert Message Hinweistext Alert &text: Hinweis&text: &New &Neu &Save &Speichern Displ&ay &Anzeigen Display && Cl&ose An&zeigen && Schließen New Alert Neuer Hinweis &Parameter: &Parameter: No Parameter Found Kein Parameter gefunden You have not entered a parameter to be replaced. Do you want to continue anyway? Sie haben keinen Parameter angegeben, der ersetzt werden könnte. Möchten Sie dennoch fortfahren? No Placeholder Found Kein Platzhalter gefunden The alert text does not contain '<>'. Do you want to continue anyway? Der Hinweistext enthält nicht '<>'. Möchten Sie dennoch fortfahren? You haven't specified any text for your alert. Please type in some text before clicking New. Sie haben keinen Text für Ihren Hinweistext eingegeben. Bitte geben Sie etwas ein. AlertsPlugin.AlertsManager Alert message created and displayed. Hinweis wurde erfolgreich erstellt und angezeigt. AlertsPlugin.AlertsTab Font Schrift Font name: Schriftart: Font color: Schriftfarbe: Background color: Hintergrundfarbe: Font size: Schriftgröße: Alert timeout: Anzeigedauer: BiblesPlugin &Bible &Bibel Bible name singular Bibel Bibles name plural Bibeln Bibles container title Bibeln No Book Found Kein Buch gefunden No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Es konnte kein passendes Buch gefunden werden. Überprüfen Sie bitte die Schreibweise. Import a Bible. Neue Bibel importieren. Add a new Bible. Füge eine neue Bibel hinzu. Edit the selected Bible. Bearbeite die ausgewählte Bibel. Delete the selected Bible. Lösche die ausgewählte Bibel. Preview the selected Bible. Zeige die ausgewählte Bibelverse in der Vorschau. Send the selected Bible live. Zeige die ausgewählte Bibelverse Live an. Add the selected Bible to the service. Füge die ausgewählten Bibelverse zum Ablauf hinzu. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibel-Erweiterung</strong><br />Diese Erweiterung ermöglicht es Bibelverse aus verschiedenen Quellen anzuzeigen. &Upgrade older Bibles &Upgrade alte Bibeln Upgrade the Bible databases to the latest format. Stelle die Bibeln auf das aktuelle Datenbankformat um. Genesis 1. Mose Exodus 2. Mose Leviticus 3. Mose Numbers 4. Mose Deuteronomy 5. Mose Joshua Josua Judges Richter Ruth Rut 1 Samuel 1. Samuel 2 Samuel 2. Samuel 1 Kings 1. Könige 2 Kings 2. Könige 1 Chronicles 1. Chronik 2 Chronicles 2. Chronik Ezra Esra Nehemiah Nehemia Esther Ester Job Hiob Psalms Psalm Proverbs Sprüche Ecclesiastes Prediger Song of Solomon Hohelied Isaiah Jesaja Jeremiah Jeremia Lamentations Klagelieder Ezekiel Hesekiel Daniel Daniel Hosea Hosea Joel Joel Amos Amos Obadiah Obadja Jonah Jona Micah Micha Nahum Nahum Habakkuk Habakuk Zephaniah Zefania Haggai Haggai Zechariah Sacharja Malachi Maleachi Matthew Matthäus Mark Markus Luke Lukas John Johannes Acts Apostelgeschichte Romans Römer 1 Corinthians 1. Korinther 2 Corinthians 2. Korinther Galatians Galater Ephesians Epheser Philippians Philipper Colossians Kolosser 1 Thessalonians 1. Thessalonicher 2 Thessalonians 2. Thessalonicher 1 Timothy 1. Timotheus 2 Timothy 2. Timotheus Titus Titus Philemon Philemon Hebrews Hebräer James Jakobus 1 Peter 1. Petrus 2 Peter 2. Petrus 1 John 1. Johannes 2 John 2. Johannes 3 John 3. Johannes Jude Judas Revelation Offenbarung Judith Judit Wisdom Weisheit Tobit Tobit Sirach Jesus Sirach Baruch Baruch 1 Maccabees 1. Makkabäer 2 Maccabees 2. Makkabäer 3 Maccabees 3. Makkabäer 4 Maccabees 4. Makkabäer Rest of Daniel Daniel (Spätschrift) Rest of Esther Ester (Spätschrift) Prayer of Manasses Gebet des Manasse Letter of Jeremiah Brief des Jeremia Prayer of Azariah Daniel (Asarjas Gebet) Susanna Daniel (Susannas Rettung) Bel Daniel (Bel) 1 Esdras 1. Buch Esdras 2 Esdras 2. Buch Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 vers verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 verse - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 bis , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 und end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse ende BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. Sie müssen den Name der Bibelversion eingeben. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Copyright muss angegeben werden. Gemeinfreie Bibeln ohne Copyright sind als solche zu kennzeichnen. Bible Exists Bibelübersetzung bereits vorhanden This Bible already exists. Please import a different Bible or first delete the existing one. Diese Bibel existiert bereit. Bitte geben Sie einen anderen Übersetzungsnamen an oder löschen Sie zuerst die Existierende. You need to specify a book name for "%s". Sie müssen ein Buchnamen für »%s« angeben. The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Der Buchname "%s" ist nicht korrekt. Nummern können nur am Anfang benutzt werden und ein nichtnumerisches Zeichen muss folgen. Duplicate Book Name Doppelter Buchname The Book Name "%s" has been entered more than once. Der Buchnamen »%s« wurde mehrmals angegeben. BiblesPlugin.BibleManager Scripture Reference Error Fehler im Textverweis Web Bible cannot be used Für Onlinebibeln nicht verfügbar Text Search is not available with Web Bibles. In Onlinebibeln ist Textsuche nicht möglich. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Es wurde kein Suchbegriff eingegeben. Um nach mehreren Begriffen gleichzeitig zu suchen, müssen die Begriffe durch ein Leerzeichen getrennt sein. Alternative Suchbegriffe müssen per Komma getrennt sein. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Zurzeit sind keine Bibelübersetzungen installiert. Zur Suche muss eine solche mit dem Importassistent importiert werden. No Bibles Available Keine Bibeln verfügbar Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Die Bibelstelle ist entweder ungültig, oder hat ein Format, das von OpenLP nicht unterstützt wird. Stellen Sie bitte sicher, dass Ihre Bibelstelle einem der folgenden Muster entspricht oder ziehen Sie das Handbuch zu Rate: Buch Kapitel Buch Kapitel%(verse)sVers Buch Kapitel%(range)sKapitel Buch Kapitel%(verse)sVers%(range)sVers Buch Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers Buch Kapitel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Buch Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers BiblesPlugin.BiblesTab Verse Display Bibelstellenanzeige Only show new chapter numbers Nur neue Kapitelnummern anzeigen Bible theme: Bibel-Design: No Brackets Keine Klammern ( And ) ( und ) { And } { und } [ And ] [ und ] Note: Changes do not affect verses already in the service. Hinweis: Änderungen beeinflussen keine Bibelverse, welche bereits im Ablauf vorhanden sind. Display second Bible verses Vergleichsbibel anzeigen Custom Scripture References Benutzerdefiniertes Bibelstellenformat Verse Separator: Verstrenner: Range Separator: Bereichstrenner: List Separator: Aufzählungstrenner: End Mark: Endmarkierung: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Alternative Verstrenner können durch senkrechte Striche »|« getrennt angegeben werden. Der erste Trenner wird zur Darstellung in OpenLP genutzt. Durch Leeren des Eingabefeldes kann der Standard-Wert wiederhergestellt werden. English Deutsch Default Bible Language Standard Bibelsprache Book name language in search field, search results and on display: Sprache des Buchnames im Suchfeld, Suchergebnis und Projektionsbildschirm: Bible Language Bibelsprache Application Language Anwendungssprache Show verse numbers Versnummer anzeigen BiblesPlugin.BookNameDialog Select Book Name Buchnamen wählen Current name: Aktueller Name: Corresponding name: Entsprechender Name: Show Books From Zeige Bücher aus dem: Old Testament Altes Testament New Testament Neues Testament Apocrypha Apokryphen The following book name cannot be matched up internally. Please select the corresponding name from the list. Der folgende Buchname konnte nicht gefunden werden. Bitte den entsprechenden Namen in der Liste wählen. BiblesPlugin.BookNameForm You need to select a book. Sie müssen ein Buch wählen. BiblesPlugin.CSVBible Importing books... %s Importiere Bücher... %s Importing verses... done. Importiere Verse... Fertig. BiblesPlugin.EditBibleForm Bible Editor Bibeleditor License Details Lizenzdetails Version name: Bibelausgabe: Copyright: Copyright: Permissions: Genehmigung: Default Bible Language Standard Bibelsprache Book name language in search field, search results and on display: Sprache des Buchnames im Suchfeld, Suchergebnis und Projektionsbildschirm: Global Settings Globale Einstellung Bible Language Bibelsprache Application Language Anwendungssprache English Deutsch This is a Web Download Bible. It is not possible to customize the Book Names. Dies ist eine Internetbibel. Es ist nicht möglich die Büchernamen anzupassen. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Um die benutzerdefinierten Büchernamen zu nutzen muss im Metadaten Tab "Bibelsprache" ausgewählt werden oder wenn "Globale Einstellung" ausgewählt ist, dann muss in den Bibel-Einstellungen "Bibelsprache" ausgewählt werden. BiblesPlugin.HTTPBible Registering Bible and loading books... Registriere Bibel und lade Bücher... Registering Language... Registriere Sprache... Importing %s... Importing <book name>... Importiere »%s«... Download Error Download Fehler There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Beim Herunterladen des Bibeltextes ist ein Fehler aufgetreten. Bitte überprüfen Sie Ihre Internetverbindung. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler weiterhin auftreten. Parse Error Formatfehler There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Beim Auslesen des Bibeltextes ist ein Fehler aufgetreten. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler wiederholt auftritt. BiblesPlugin.ImportWizardForm Bible Import Wizard Bibel Importassistent This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Dieser Assistent hilft Ihnen Bibeln aus verschiedenen Formaten zu importieren. Um den Assistenten zu starten klicken Sie auf »Weiter«. Web Download Onlinebibel Location: Quelle: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bibel: Download Options Download Optionen Server: Server: Username: Benutzername: Password: Passwort: Proxy Server (Optional) Proxy-Server (optional) License Details Lizenzdetails Set up the Bible's license details. Eingabe der Urheberrechtsangaben der Bibelübersetzung. Version name: Bibelausgabe: Copyright: Copyright: Please wait while your Bible is imported. Bitte warten Sie während Ihre Bibel importiert wird. You need to specify a file with books of the Bible to use in the import. Eine Buchinformations-Datei muss zum Import angegeben werden. You need to specify a file of Bible verses to import. Eine Bibeltext-Datei muss zum Import angegeben werden. You need to specify a version name for your Bible. Sie müssen den Name der Bibelversion eingeben. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Copyright muss angegeben werden. Gemeinfreie Bibeln ohne Copyright sind als solche zu kennzeichnen. Bible Exists Bibelübersetzung bereits vorhanden This Bible already exists. Please import a different Bible or first delete the existing one. Diese Bibel existiert bereit. Bitte geben Sie einen anderen Übersetzungsnamen an oder löschen Sie zuerst die Existierende. Your Bible import failed. Das importieren der Bibel ist fehlgeschlagen. CSV File CSV-Datei Bibleserver Bibleserver.com Permissions: Genehmigung: Bible file: Bibeldatei: Books file: Bücherdatei: Verses file: Versedatei: Registering Bible... Registriere Bibel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Angemeldete Bibel. Bitte beachten, dass die benötigten Verse bei Bedarf herunter geladen werden und daher eine Internet Verbindung benötigt wird. Click to download bible list Wählen um Bibelliste herunter zu laden Download bible list Bibelliste laden Error during download Fehler beim Herunterladen An error occurred while downloading the list of bibles from %s. Während des herunterladens der Liste der Bibeln von %s trat ein Fehler auf. BiblesPlugin.LanguageDialog Select Language Sprache auswählen OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kann die Sprache dieser Bibelnübersezung nicht ermitteln. Bitte wählen Sie die Sprache dieser Bibel aus der Liste aus. Language: Sprache: BiblesPlugin.LanguageForm You need to choose a language. Sie müssen eine Sprache wählen. BiblesPlugin.MediaItem Quick Schnellsuche Find: Suchen: Book: Liederbuch: Chapter: Kapitel: Verse: Vers: From: Von: To: Bis: Text Search Textsuche Second: Vergleichstext: Scripture Reference Bibelstelle Toggle to keep or clear the previous results. Vorheriges Suchergebnis behalten oder verwerfen. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Es ist nicht möglich Einzel- und Zweifach Bibelvers Suchergebnisse zu kombinieren. Sollen die Suchergebnisse gelöscht und eine neue Suche gestartet werden? Bible not fully loaded. Bibel wurde nicht vollständig geladen. Information Information The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die Vergleichsbibel enthält nicht alle Verse, die in der Hauptbibel vorhanden sind. Nur die Verse, die in beiden Bibeln vorhanden sind, werden angezeigt. %d Verse sind nicht enthalten. Search Scripture Reference... Suche Bibelstelle... Search Text... Suche Text... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Sind Sie sicher, das Sie die "%s" Bibel komplett löschen wollen? Um sie wieder zu benutzen, muss sie erneut importier werden. Advanced Erweitert BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Falscher Dateityp. OpenSong Bibeln sind möglicherweise komprimiert und müssen entpackt werden, bevor sie importiert werden. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Falscher Bibel Datei Typ. Dies scheint eine Zefania XML Bibel zu sein. Bitte die Zefania Import funktion benutzen. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importiere %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Entferne unbenutzte Tags (dies kann einige Minuten dauern) ... Importing %(bookname)s %(chapter)s... Importiere %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Ein Backup-Verzeichnis wählen Bible Upgrade Wizard Bibelupgradeassistent This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Dieser Assistent hilft Ihnen Ihre Bibeln auf das aktuelle Format umzustellen. Klicken Sie »Weiter« um den Prozess zu starten. Select Backup Directory Backup-Verzeichnis wählen Please select a backup directory for your Bibles Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Vorherige Versionen von OpenLP 2.0 können nicht mit den aktualisierten Bibeln umgehen. Sie können eine Backup von ihren Bibeln erstellen. Wie Sie ein Backup wiedereinspielen können Sie in den <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a> lesen. Please select a backup location for your Bibles. Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln. Backup Directory: Backup-Verzeichnis: There is no need to backup my Bibles Es soll kein Backup gemacht werden Select Bibles Bibeln wählen Please select the Bibles to upgrade Bitte wählen Sie die Bibeln welche aktualisiert werden sollen Upgrading Aktualisiere... Please wait while your Bibles are upgraded. Bitte warten Sie bis Ihre Bibeln aktualisiert sind. The backup was not successful. To backup your Bibles you need permission to write to the given directory. Das Backup war nicht erfolgreich. Damit das Backup erstellt werden kann brauchen Sie Schreibrechte in dem Verzeichnis. Upgrading Bible %s of %s: "%s" Failed Aktualisiere Bibel %s von %s: »%s« Fehlgeschlagen... Upgrading Bible %s of %s: "%s" Upgrading ... Aktualisiere Bibel %s von %s: »%s« Aktualisiere... Download Error Download Fehler To upgrade your Web Bibles an Internet connection is required. Um Onlinebibeln zu aktualisieren ist eine Internetverbindung notwendig. Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualisiere Bibel %s von %s: »%s« Aktualisiere »%s«... Upgrading Bible %s of %s: "%s" Complete Aktualisiere Bibel %s von %s: »%s« Fertig , %s failed , %s fehlgeschlagen Upgrading Bible(s): %s successful%s Aktualisiere Bibeln: %s erfolgreich%s Upgrade failed. Aktualisierung schlug fehl. You need to specify a backup directory for your Bibles. Sie müssen ein Backup-Verzeichnis für Ihre Bibeln angeben. Starting upgrade... Beginne mit der Aktualisierung... There are no Bibles that need to be upgraded. Es sind keine Bibel für eine Aktualisierung vorhanden. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualisiere Bibel(n): %(success)d erfolgreich%(failed_text)s Bitte beachten Sie, dass Bibeltexte von Onlinebibeln während der Benutzung geladen werden. Daher ist eine Internetverbindung erforderlich. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Falscher Bibel Datei Typ. Zefania Bibeln sind möglicherweise gepackt. Diese Dateien müssen entpackt werden vor dem Import. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importiere %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Sonderfolien Custom Slides name plural Sonderfolien Custom Slides container title Sonderfolien Load a new custom slide. Lade eine neue Sonderfolie. Import a custom slide. Importieren eine Sonderfolie. Add a new custom slide. Erstelle eine neue Sonderfolie. Edit the selected custom slide. Bearbeite die ausgewählte Sonderfolie. Delete the selected custom slide. Lösche die ausgewählte Sonderfolie. Preview the selected custom slide. Zeige die ausgewählte Sonderfolie in der Vorschau. Send the selected custom slide live. Zeige die ausgewählte Sonderfolie Live. Add the selected custom slide to the service. Füge die ausgewählte Sonderfolie zum Ablauf hinzu. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Sonderfolien-Erweiterung</strong><br />Diese Erweiterung bietet die Möglichkeit, selbsterstellte Textfolien auf die gleiche Art und Weise wie Lieder anzuzeigen. Diese Erweiterung bietet größere Flexibilität als die Lied-Erweiterung. CustomPlugin.CustomTab Custom Display Sonderfolie Anzeige Display footer Fußzeile anzeigen Import missing custom slides from service files Fehlende Sonderfolien aus Ablaufplandatei importieren CustomPlugin.EditCustomForm Edit Custom Slides Sonderfolien bearbeiten &Title: &Titel: Add a new slide at bottom. Füge eine neue Folie am Ende ein. Edit the selected slide. Bearbeite ausgewählte Folie. Edit all the slides at once. Bearbeite alle Folien. Split a slide into two by inserting a slide splitter. Füge einen Folienumbruch ein. The&me: Desig&n: &Credits: A&utoren: You need to type in a title. Bitte geben Sie einen Titel ein. Ed&it All &Alle Bearbeiten Insert Slide Folie einfügen You need to add at least one slide. Sie müssen mindestens eine Folie hinzufügen. CustomPlugin.EditVerseForm Edit Slide Folie bearbeiten CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Sollen die %d ausgewählten Sonderfolien wirklich gelöscht werden? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Bilder-Erweiterung</strong><br />Diese Erweiterung ermöglicht die Anzeige von Bildern.<br />Eine der besonderen Eigenschaften dieser Erweiterung ist die Möglichkeit, in der Ablaufverwaltung, mehrere Bilder zu einer Gruppe zusammen zu fassen. Dies vereinfacht die die Anzeige mehrerer Bilder. Ebenso kann mit Hilfe der Zeitschleife, sehr einfach eine Diaschau erzeugt werden, welche dann automatisch abläuft. Des weiteren können mit dieser Erweiterung Bilder benutzt werden, um das Hintergrundbild des aktuellen Design zu ersetzen. Image name singular Bild Images name plural Bilder Images container title Bilder Load a new image. Lade ein neues Bild. Add a new image. Füge eine neues Bild hinzu. Edit the selected image. Bearbeite das ausgewählte Bild. Delete the selected image. Lösche das ausgewählte Bild. Preview the selected image. Zeige das ausgewählte Bild in der Vorschau. Send the selected image live. Zeige die ausgewählte Bild Live. Add the selected image to the service. Füge das ausgewählte Bild zum Ablauf hinzu. ImagePlugin.AddGroupForm Add group Gruppe hinzufügen Parent group: Elterngruppe: Group name: Gruppenname: You need to type in a group name. Sie müssen einen Gruppennamen eingeben. Could not add the new group. Die neue Gruppe konnte nicht angelegt werden. This group already exists. Die Gruppe existiert bereits. ImagePlugin.ChooseGroupForm Select Image Group Bildgruppe auswählen Add images to group: Bilder zu der Gruppe hinzufügen: No group Keine Gruppe Existing group Bestehende Gruppe New group Neue Gruppe ImagePlugin.ExceptionDialog Select Attachment Anhang auswählen ImagePlugin.MediaItem Select Image(s) Bilder auswählen You must select an image to replace the background with. Das Bild, das Sie als Hintergrund setzen möchten, muss ausgewählt sein. Missing Image(s) Fehlende Bilder The following image(s) no longer exist: %s Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s Wollen Sie die anderen Bilder trotzdem hinzufügen? There was a problem replacing your background, the image file "%s" no longer exists. Da auf das Bild »%s« nicht mehr zugegriffen werden kann, konnte es nicht als Hintergrund gesetzt werden. There was no display item to amend. Es waren keine Änderungen nötig. -- Top-level group -- – Oberste Gruppe – You must select an image or group to delete. Bitte wählen Sie ein Bild oder eine Gruppe zum Löschen aus. Remove group Gruppe entfernen Are you sure you want to remove "%s" and everything in it? Möchten Sie die Gruppe „%s“ und ihre Inhalte wirklich entfernen? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Sichtbarer Hintergrund für Bilder mit einem anderem Seitenverhältnis als der Projektionsbildschirm. Media.player Audio Audio Video Video VLC is an external player which supports a number of different formats. VLC ist ein externer Player der viele verschiedene Dateiformate unterstützt. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit ist ein Medienplayer, der innerhalb eines Webbrowsers läuft. Der Player ermöglicht er, Text über einem Video darzustellen. This media player uses your operating system to provide media capabilities. Dieser Mediaplayer verwendet Ihr Betriebssystem um Medienfunktionalitäten bereitzustellen. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Medien-Erweiterung</strong><br />Diese Erweiterung ermöglicht es Audio- und Videodateien abzuspielen. Media name singular Medien Media name plural Medien Media container title Medien Load new media. Lade eine neue Audio-/Videodatei. Add new media. Füge eine neue Audio-/Videodatei hinzu. Edit the selected media. Bearbeite die ausgewählte Audio-/Videodatei. Delete the selected media. Lösche die ausgewählte Audio-/Videodatei. Preview the selected media. Zeige die ausgewählte Audio-/Videodatei in der Vorschau. Send the selected media live. Zeige die ausgewählte Audio-/Videodatei Live. Add the selected media to the service. Füge die ausgewählte Audio-/Videodatei zum Ablauf hinzu. MediaPlugin.MediaClipSelector Select Media Clip Wähle Audio-/Videoausschnitt Source Quelle Media path: Medien Pfad: Select drive from list Wähle ein Laufwerk aus der Liste Load disc Lade optisches Medium Track Details Titel Information Title: Titel: Audio track: Musik Titel: Subtitle track: Untertitelspur: HH:mm:ss.z hh:mm:ss.z Clip Range Länge Start point: Startpunkt: Set start point Setze Startpunkt Jump to start point Springe zu Startpunkt End point: Endpunkt Set end point Setze Endpunkt Jump to end point Springe zu Endpunkt MediaPlugin.MediaClipSelectorForm No path was given Es wurde kein Pfad angegeben Given path does not exists Der angegebene Pfad existiert nicht An error happened during initialization of VLC player Ein Fehler trat während der Initialisierung des VLC Players auf VLC player failed playing the media Der VLC Player konnte diese Audio-/Videodatei nicht abspielen CD not loaded correctly Die CD konnte nicht geladen werden The CD was not loaded correctly, please re-load and try again. Die CD konnte nicht geladen werden. Bitte erneut einlegen und nochmals probieren. DVD not loaded correctly Die DVD konnte nicht geladen werden The DVD was not loaded correctly, please re-load and try again. Die DVD konnte nicht geladen werden. Bitte erneut einlegen und nochmals probieren. Set name of mediaclip Setze den Namen des Audio-/Videoausschnitts Name of mediaclip: Name des Audio-/Videoausschnitts Enter a valid name or cancel Gültigen Name eingeben oder abbrechen Invalid character Ungültiges Zeichen The name of the mediaclip must not contain the character ":" Der Name des Audio-/Videoausschnitts darf kein ":" enthalten MediaPlugin.MediaItem Select Media Audio-/Videodatei auswählen You must select a media file to delete. Die Audio-/Videodatei, die entfernt werden soll, muss ausgewählt sein. You must select a media file to replace the background with. Das Video, das Sie als Hintergrund setzen möchten, muss ausgewählt sein. There was a problem replacing your background, the media file "%s" no longer exists. Da auf die Mediendatei »%s« nicht mehr zugegriffen werden kann, konnte sie nicht als Hintergrund gesetzt werden. Missing Media File Fehlende Audio-/Videodatei The file %s no longer exists. Die Audio-/Videodatei »%s« existiert nicht mehr. Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) There was no display item to amend. Es waren keine Änderungen nötig. Unsupported File Nicht unterstütztes Dateiformat Use Player: Nutze Player: VLC player required Der VLC Player erforderlich VLC player required for playback of optical devices Der VLC Player ist für das Abspielen von optischen Medien erforderlich Load CD/DVD Starte CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Starten einer CD/DVD - ist nur unterstützt wenn der VLC Player installiert und aktivert ist The optical disc %s is no longer available. Das optische Medium %s ist nicht länger verfügbar. Mediaclip already saved Audio-/Videoausschnitt bereits gespeichert This mediaclip has already been saved Dieser Audio-/Videoausschnitt ist bereits gespeichert MediaPlugin.MediaTab Allow media player to be overridden Überschreiben des Multimediabackends zulassen Start Live items automatically Live-Einträge automatisch starten OPenLP.MainWindow &Projector Manager &Projektorverwaltung OpenLP Image Files Bilddateien Information Information Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Das Bibelformat wurde geändert. Sie müssen Ihre Bibeln aktualisieren. Möchten Sie dies jetzt tun? Backup Sicherung OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP wurde aktualisiert. Soll eine Sicherung des OpenLP Daten Ordners angelegt werden? Backup of the data folder failed! Sicherung des Daten Ordners fehlgeschlagen! A backup of the data folder has been created at %s Die Sicherung des Daten Ordners wurde in %s erzeugt Open Öffnen OpenLP.AboutForm Credits Danksagungen License Lizenz build %s build %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. 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 below for more details. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP ist ein freies Programm für Präsentationen in Kirchen. Es können Liedtexte, Bibelverse, Videos, Bilder und Präsentationen (wenn Impress, PowerPoint oder der PowerPoint Viewer installiert sind) mittels Beamer und Computer angezeigt werden. Weitere Informationen finden Sie unter: http://openlp.org/ OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich beteiligen wollen betätigen Sie untenstehende Schaltfläche und in ihrem Browser wird ihnen angezeigt, welche Möglichkeiten es gibt. Volunteer Freiwillige Project Lead Projekt Leitung Developers Entwickler Contributors Mitwirkende Packagers Paket Ersteller Testers Prüfer Translators Übersetzer Afrikaans (af) Afrikaans (af) Czech (cs) Tschechisch (cs) Danish (da) Dänisch (da) German (de) Deutsch (de) Greek (el) Griechisch (el) English, United Kingdom (en_GB) Englisch, Vereinigtes Königreich (en_GB) English, South Africa (en_ZA) Englisch, Südafrika (en_ZA) Spanish (es) Spanisch (es) Estonian (et) Estonisch (et) Finnish (fi) Finnisch (fi) French (fr) Französisch (fr) Hungarian (hu) Ungarisch (hu) Indonesian (id) Indonesisch (id) Japanese (ja) Japanisch (ja) Norwegian BokmÃ¥l (nb) Norwegisch (nb) Dutch (nl) Holländisch (nl) Polish (pl) Polnisch (pl) Portuguese, Brazil (pt_BR) Brasilianisches Portugiesisch (pt_BR) Russian (ru) Russisch (ru) Swedish (sv) Schwedisch (sv) Tamil(Sri-Lanka) (ta_LK) Tamil (Sri Lanka) (ta_LK) Chinese(China) (zh_CN) Chinesisch (China) (zh_CN) Documentation Dokumentation Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Erstellt mit Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Danksagung „Denn so sehr hat Gott die Welt geliebt, daß er seinen eingeborenen Sohn gab, damit jeder, der an ihn glaubt, nicht verlorengeht, sondern ewiges Leben hat.“ (Johannes 3,16) Zu guter Letzt geht der Dank an unseren Vater im Himmel, der seinen Sohn gesandt hat, um am Kreuz zu sterben, damit wir frei sein können. Wir veröffentlichen diese Software kostenlos, weil er uns befreit hat, ohne dass wir etwas dafür getan haben. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Anteiliges Copyright © 2004-2016 %s OpenLP.AdvancedTab UI Settings Benutzeroberfläche Number of recent files to display: Anzahl zuletzt geöffneter Abläufe: Remember active media manager tab on startup Beim Starten die zuletzt gewählte Medienverwaltung wieder auswählen Double-click to send items straight to live Objekte bei Doppelklick live anzeigen Expand new service items on creation Neue Elemente in der Ablaufverwaltung mit Details anzeigen Enable application exit confirmation Bestätigung vor dem Beenden anzeigen Mouse Cursor Mauszeiger Hide mouse cursor when over display window Verstecke den Mauszeiger auf dem Bildschrim Default Image Standardbild Background color: Hintergrundfarbe: Image file: Bild-Datei: Open File Ablauf öffnen Advanced Erweitert Preview items when clicked in Media Manager Objekte in der Vorschau zeigen, wenn sie in der Medienverwaltung ausgewählt werden Browse for an image file to display. Wählen Sie die Bild-Datei aus, die angezeigt werden soll. Revert to the default OpenLP logo. Standard-Logo wiederherstellen. Default Service Name Voreingestellter Ablaufname Enable default service name Ablaufnamen vorschlagen Date and Time: Zeitpunkt: Monday Montag Tuesday Dienstag Wednesday Mittwoch Friday Freitag Saturday Samstag Sunday Sonntag Now Jetzt Time when usual service starts. Übliche Uhrzeit. Name: Name: Consult the OpenLP manual for usage. Verwendungsdetails sind im Handbuch zu finden. Revert to the default service name "%s". Auf den vorgegebenen Ablaufnahmen »%s« zurücksetzen. Example: Beispiel: Bypass X11 Window Manager Fenstermanager X11 umgehen Syntax error. Syntaxfehler. Data Location Pfad für Datenablage: Current path: Aktueller Pfad: Custom path: Benutzerdefinierter Pfad: Browse for new data file location. Pfad für Datenablage wählen. Set the data location to the default. Pfad für Datenablage zurücksetzen. Cancel Abbruch Cancel OpenLP data directory location change. Aktuelle Änderungen verwerfen. Copy data to new location. Existierende Daten kopieren. Copy the OpenLP data files to the new location. Existierende Daten kopieren. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>Warnung:</strong>Der neue Datenpfad enthält bereits Daten. Diese Daten werden während des Kopiervorganges ersetzt. Data Directory Error Fehler im Daten Ordner Select Data Directory Location Bitte wählen Sie Pfad des Daten Ordners Confirm Data Directory Change Bitte bestätigen Sie die Änderung des Daten Ordners Reset Data Directory Daten Ordner zurücksetzen Overwrite Existing Data Existierende Daten überschreiben OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. Das OpenLP Daten Verzeichnis konnte nicht gefunden werden⎠âŽ%s⎠âŽBefindet sich dieses Verzeichnis auf einem Wechseldatenträger, aktivieren Sie dieses bitte.⎠âŽWählen Sie "Nein" um den Start von OpenLP abzubrechen, um das Problem zu beheben. Wählen Sie "Ja" um das Daten Verzeichnis auf seinen Auslieferungzustand zurück zu setzen. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Sollen die OpenLP Daten wirklich in folgendem Verzeichnis abgelegt werden:⎠âŽ%s⎠⎠Das Datenverzeichnis wird geändert, wenn OpenLP geschlossen wird. Thursday Donnerstag Display Workarounds Display-Workarounds Use alternating row colours in lists Abwechselnde Zeilenfarben in Listen verwenden WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? Warnung: Das Verzeichnis, das Sie ausgewählt haben %s beinhaltet Dateien von OpenLP. Möchten Sie diese mit den aktuellen Daten ersetzen? Restart Required Neustart erforderlich This change will only take effect once OpenLP has been restarted. Diese Änderung wird erst wirksam, wenn Sie OpenLP neustarten. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Wollen Sie wirklich den Daten Ordner wieder auf den Auslieferungszustand zurücksetzen? Dieser Ort wird beim nächsten Start benutzt. OpenLP.ColorButton Click to select a color. Klicken Sie, um eine Farbe aus zu wählen. OpenLP.DB RGB RGB Video Video Digital Digital Storage Speicher Network Netzwerk RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Video 1 Video 2 Video 2 Video 3 Video 3 Video 4 Video 4 Video 5 Video 5 Video 6 Video 6 Video 7 Video 7 Video 8 Video 8 Video 9 Video 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Speicher 1 Storage 2 Speicher 2 Storage 3 Speicher 3 Storage 4 Speicher 4 Storage 5 Speicher 5 Storage 6 Speicher 6 Storage 7 Speicher 7 Storage 8 Speicher 8 Storage 9 Speicher 9 Network 1 Netzwerk 1 Network 2 Netzwerk 2 Network 3 Netzwerk 3 Network 4 Netzwerk 4 Network 5 Netzwerk 5 Network 6 Netzwerk 6 Network 7 Netzwerk 7 Network 8 Netzwerk 8 Network 9 Netzwerk 9 OpenLP.ExceptionDialog Error Occurred Fehler aufgetreten Send E-Mail E-Mail senden Save to File In Datei speichern Attach File Datei einhängen Description characters to enter : %s Mindestens noch %s Zeichen eingeben Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Bitte beschreiben Sie, was Sie getan haben, bevor dieser Fehler auftrat. Wenn möglich, schreiben Sie bitte in Englisch. (Mindestens 20 Zeichen) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Ups! OpenLP hat ein Problem und kann es nicht beheben. Der Text im unteren Fenster enthält Informationen, welche möglicherweise hilfreich für die OpenLP Entwickler sind. Bitte senden Sie eine E-Mail an: bugs@openlp.org mit einer ausführlichen Beschreibung was Sie taten als das Problem auftrat. Bitte fügen Sie außerdem Dateien hinzu, die das Problem auslösten. OpenLP.ExceptionForm Platform: %s Plattform: %s Save Crash Report Fehlerprotokoll speichern Text files (*.txt *.log *.text) Textdateien (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Datei umbenennen New File Name: Neuer Dateiname: File Copy Datei kopieren OpenLP.FirstTimeLanguageForm Select Translation Sprache wählen Choose the translation you'd like to use in OpenLP. Wählen Sie die Sprache, in der OpenLP sein soll. Translation: Sprache: OpenLP.FirstTimeWizard Songs Lieder First Time Wizard Einrichtungsassistent Welcome to the First Time Wizard Willkommen zum Einrichtungsassistent Activate required Plugins Erweiterungen aktivieren Select the Plugins you wish to use. Wählen Sie die Erweiterungen aus, die Sie nutzen wollen. Bible Bibel Images Bilder Presentations Präsentationen Media (Audio and Video) Medien (Audio und Video) Allow remote access Erlaube Fernsteuerung Monitor Song Usage Lied Benutzung protokollieren Allow Alerts Erlaube Hinweise Default Settings Standardeinstellungen Downloading %s... %s wird heruntergeladen... Enabling selected plugins... Aktiviere ausgewählte Erweiterungen... No Internet Connection Keine Internetverbindung Unable to detect an Internet connection. Es konnte keine Internetverbindung aufgebaut werden. Sample Songs Beispiellieder Select and download public domain songs. Wählen und laden Sie gemeinfreie (bzw. kostenlose) Lieder herunter. Sample Bibles Beispielbibeln Select and download free Bibles. Wählen und laden Sie freie Bibeln runter. Sample Themes Beispieldesigns Select and download sample themes. Wählen und laden Sie Beispieldesigns runter. Set up default settings to be used by OpenLP. Grundeinstellungen konfigurieren. Default output display: Projektionsbildschirm: Select default theme: Standarddesign: Starting configuration process... Starte Konfiguration... Setting Up And Downloading Konfiguriere und Herunterladen Please wait while OpenLP is set up and your data is downloaded. Bitte warten Sie, während OpenLP eingerichtet wird und die Daten heruntergeladen werden. Setting Up Konfiguriere Custom Slides Sonderfolien Finish Ende No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Es wurde keine Internetverbindung erkannt. Um während des erstmaligen Startes von OpenLP Beispiel Lieder, Bibeln und Designs zu installieren ist eine Internetverbindung nötig. Klicken Sie »Abschließen«, um OpenLP nun mit Grundeinstellungen und ohne Beispiel Daten zu starten. Um diesen Einrichtungsassistenten erneut zu starten und die Beispiel Daten zu importieren, prüfen Sie Ihre Internetverbindung und starten den Assistenten im Menü "Extras/Einrichtungsassistenten starten". Download Error Download Fehler There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Während des Herunterladens trat ein Verbindungsfehler auf, daher wird das Herunterladen weiterer Dateien übersprungen. Versuchen Sie den Erstinstallations Assistenten später erneut zu starten. Download complete. Click the %s button to return to OpenLP. Download vollständig. Drücken Sie »%s« um zurück zu OpenLP zu gelangen Download complete. Click the %s button to start OpenLP. Download vollständig. Klicken Sie »%s« um OpenLP zu starten. Click the %s button to return to OpenLP. Klicken Sie »%s« um zu OpenLP zurück zu gelangen. Click the %s button to start OpenLP. Klicken Sie »%s« um OpenLP zu starten. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Während des Herunterladens trat ein Verbindungsfehler auf, daher wird das Herunterladen weiterer Dateien übersprungen. Versuchen Sie den Erstinstallations Assistenten später erneut zu starten. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Dieser Assistent unterstützt Sie bei der Konfiguration von OpenLP für die erste Benutzung. Drücken Sie den %s Knopf weiter unten zum Start To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bitte »%s« klicken. Downloading Resource Index Ressourcen-Index wird heruntergeladen Please wait while the resource index is downloaded. Bitte warten Sie, während der Ressourcen-Index heruntergeladen wird. Please wait while OpenLP downloads the resource index file... Bitte warten Sie, während OpenLP die Ressourcen-Index-Datei herunterlädt... Downloading and Configuring Herunterladen und Konfigurieren Please wait while resources are downloaded and OpenLP is configured. Bitte warten Sie, während die Ressourcen heruntergeladen und OpenLP konfiguriert wird. Network Error Netzwerkfehler There was a network error attempting to connect to retrieve initial configuration information Es trat ein Netzwerkfehler beim Laden der initialen Konfiguration auf Cancel Abbruch Unable to download some files Einige Dateien konnten nicht heruntergeladen werden OpenLP.FormattingTagDialog Configure Formatting Tags Konfiguriere Formatforlagen Description Beschreibung Tag Tag Start HTML Anfangs HTML End HTML End HTML Default Formatting Standardformatierung Custom Formatting Eigene Formatierung OpenLP.FormattingTagForm <HTML here> <HTML hier> Validation Error Validierungsfehler Description is missing Beschreibung fehlt Tag is missing Formatvorlage fehlt Tag %s already defined. Tag »%s« bereits definiert. Description %s already defined. Beschreibung »%s« bereits definiert. Start tag %s is not valid HTML Der Start-Tag %s ist kein gültiges HTML End tag %(end)s does not match end tag for start tag %(start)s Der End-Tag %(end)s stimmt nicht mit dem Start-Tag %(start)s überein. OpenLP.FormattingTags Red rot Black schwarz Blue blau Yellow gelb Green grün Pink rosa Orange orange Purple lila White weiß Superscript hochgestellt Subscript tiefgestellt Paragraph Textabsatz Bold Fett Italics kursiv Underline unterstrichen Break Textumbruch OpenLP.GeneralTab General Allgemein Monitors Bildschirme Select monitor for output display: Projektionsbildschirm: Display if a single screen Anzeige bei nur einem Bildschirm Application Startup Programmstart Show blank screen warning Warnung wenn Projektion deaktiviert wurde Automatically open the last service Zuletzt benutzten Ablauf beim Start laden Show the splash screen Zeige den Startbildschirm Application Settings Anwendungseinstellungen Prompt to save before starting a new service Geänderte Abläufe nicht ungefragt ersetzen Automatically preview next item in service Vorschau des nächsten Ablaufelements sec sek CCLI Details CCLI-Details SongSelect username: SongSelect-Benutzername: SongSelect password: SongSelect-Passwort: X X Y Y Height Höhe Width Breite Check for updates to OpenLP OpenLP auf Updates überprüfen Unblank display when adding new live item Neues Element hellt Anzeige automatisch auf Timed slide interval: Automatischer Folienwechsel: Background Audio Hintergrundton Start background audio paused Starte Hintergrundmusik pausiert Service Item Slide Limits Navigation in Folienkontrollfeld Override display position: Anzeigeposition überschreiben: Repeat track list Abspielliste wiederholen Behavior of next/previous on the last/first slide: Verhalten von "Vorherige/Nächste Folie" bei letzter Folie: &Remain on Slide &Halte &Wrap around &Umlauf &Move to next/previous service item &Nächstes/vorheriges Ablaufelement OpenLP.LanguageManager Language Sprache Please restart OpenLP to use your new language setting. Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden. OpenLP.MainDisplay OpenLP Display OpenLP-Anzeige OpenLP.MainWindow &File &Datei &Import &Importieren &Export &Exportieren &View &Ansicht M&ode An&sichtsmodus &Tools E&xtras &Settings &Einstellungen &Language &Sprache &Help &Hilfe Service Manager Ablaufverwaltung Theme Manager Designverwaltung Open an existing service. Einen vorhandenen Ablauf öffnen. Save the current service to disk. Den aktuellen Ablauf speichern. Save Service As Den aktuellen Ablauf unter einem neuen Namen speichern Save the current service under a new name. Den aktuellen Ablauf unter einem neuen Namen speichern. E&xit &Beenden Quit OpenLP OpenLP beenden &Theme &Design &Configure OpenLP... &Einstellungen... &Media Manager &Medienverwaltung Toggle Media Manager Die Medienverwaltung ein- bzw. ausblenden Toggle the visibility of the media manager. Die Medienverwaltung ein- bzw. ausblenden. &Theme Manager &Designverwaltung Toggle Theme Manager Die Designverwaltung ein- bzw. ausblenden Toggle the visibility of the theme manager. Die Designverwaltung ein- bzw. ausblenden. &Service Manager &Ablaufverwaltung Toggle Service Manager Die Ablaufverwaltung ein- bzw. ausblenden Toggle the visibility of the service manager. Die Ablaufverwaltung ein- bzw. ausblenden. &Preview Panel &Vorschau-Ansicht Toggle Preview Panel Die Vorschau ein- bzw. ausblenden Toggle the visibility of the preview panel. Die Vorschau ein- bzw. ausschalten. &Live Panel &Live-Ansicht Toggle Live Panel Die Live Ansicht ein- bzw. ausschalten Toggle the visibility of the live panel. Die Live Ansicht ein- bzw. ausschalten. List the Plugins Erweiterungen verwalten &User Guide Benutzer&handbuch &About &Info über OpenLP More information about OpenLP Mehr Informationen über OpenLP &Online Help &Online Hilfe &Web Site &Webseite Use the system language, if available. Die Systemsprache, sofern diese verfügbar ist, verwenden. Set the interface language to %s Die Sprache von OpenLP auf %s stellen Add &Tool... Hilfsprogramm hin&zufügen... Add an application to the list of tools. Eine Anwendung zur Liste der Hilfsprogramme hinzufügen. &Default &Standard Set the view mode back to the default. Den Ansichtsmodus auf Standardeinstellung setzen. &Setup &Einrichten Set the view mode to Setup. Die Ansicht für die Ablauferstellung optimieren. &Live &Live Set the view mode to Live. Die Ansicht für den Live-Betrieb optimieren. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. Version %s von OpenLP ist verfügbar (installierte Version ist %s). Sie können die letzte Version auf http://openlp.org abrufen. OpenLP Version Updated Neue OpenLP Version verfügbar OpenLP Main Display Blanked Hauptbildschirm abgedunkelt The Main Display has been blanked out Die Projektion ist momentan nicht aktiv. Default Theme: %s Standarddesign: %s English Please add the name of your language here Deutsch Configure &Shortcuts... Konfiguriere &Tastenkürzel... Open &Data Folder... Öffne &Datenverzeichnis... Open the folder where songs, bibles and other data resides. Öffne das Verzeichnis, wo Lieder, Bibeln und andere Daten gespeichert sind. &Autodetect &Automatisch Update Theme Images Aktualisiere Design Bilder Update the preview images for all themes. Aktualisiert die Vorschaubilder aller Designs. Print the current service. Drucke den aktuellen Ablauf. L&ock Panels Ansicht &sperren Prevent the panels being moved. Unterbindet das Bewegen der Leisten. Re-run First Time Wizard Einrichtungsassistent starten Re-run the First Time Wizard, importing songs, Bibles and themes. Einrichtungsassistent erneut starten um Beispiel-Lieder, Bibeln und Designs zu importieren. Re-run First Time Wizard? Einrichtungsassistent starten? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Soll der Einrichtungsassistent wirklich erneut gestartet werden? Der Einrichtungsassistent kann einige Einstellungen verändern und ggf. neue Lieder, Bibeln und Designs zu den bereits vorhandenen hinzufügen. Clear List Clear List of recent files Leeren Clear the list of recent files. Leert die Liste der zuletzte geöffnete Abläufe. Configure &Formatting Tags... Konfiguriere &Formatvorlagen... Export OpenLP settings to a specified *.config file Exportiere OpenLPs Einstellungen in ein *.config-Datei. Settings Einstellungen Import OpenLP settings from a specified *.config file previously exported on this or another machine Importiere OpenLPs Einstellungen aus ein *.config-Datei, die vorher an diesem oder einem anderen Computer exportiert wurde. Import settings? Importiere Einstellungen? Open File Ablauf öffnen OpenLP Export Settings Files (*.conf) OpenLP Einstellungsdatei (*.conf) Import settings Importiere Einstellungen OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP wird nun geschlossen. Importierte Einstellungen werden bei dem nächsten Start übernommen. Export Settings File Exportiere Einstellungsdatei OpenLP Export Settings File (*.conf) OpenLP Einstellungsdatei (*.conf) New Data Directory Error Fehler im neuen Daten Ordner Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Kopiere OpenLP Daten in das neue Datenverzeichnis - %s - Bitte warten Sie, bis der Kopiervorgang beendet wurde. OpenLP Data directory copy failed %s OpenLP Datenverzeichnis Kopievorgang ist fehlgeschlagen %s General Allgemein Library Bibliothek Jump to the search box of the current active plugin. Zum Suchfeld der aktiven Erweiterung springen. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Sind Sie sicher, dass Sie die Einstellungen importieren möchten? Wenn Sie die Einstellungen importieren, machen Sie unwiderrufliche Änderungen an Ihrer Konfiguration. Fehlerhafte Einstellungen können zu Fehlern oder Abstürzen führen. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. Die Datei ist keine gültige OpenLP-Einstellungsdatei. Der Import wurde abgebrochen und es wurden keine Änderungen gemacht. Projector Manager Projektorverwaltung Toggle Projector Manager Die Projektorverwaltung ein- bzw. ausblenden Toggle the visibility of the Projector Manager Die Projektorverwaltung ein- bzw. ausblenden Export setting error Fehler beim Exportieren der Einstellungen The key "%s" does not have a default value so it will be skipped in this export. Der Schlüssel „%s“ hat keinen Standardwert, deshalb wird er beim Exportieren übersprungen. An error occurred while exporting the settings: %s Folgender Fehler trat beim Exportieren der Einstellungen auf: %s &Recent Services &Zuletzt geöffnete Abläufe &New Service &Neuer Ablauf &Open Service Ablauf &öffnen &Save Service Ablauf &speichern Save Service &As... Ablauf speichern &unter... &Manage Plugins Plugins &verwalten Exit OpenLP OpenLP beenden Are you sure you want to exit OpenLP? Soll OpenLP wirklich beendet werden? &Exit OpenLP OpenLP &beenden OpenLP.Manager Database Error Datenbankfehler The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s Die Datenbank die versucht wird zu laden, wurde in einer neueren Version von OpenLP erstellt. Die Datenbank hat die Version %d, wobei OpenLP die Version %d erwartet. Die Datenkbank wird nicht geladen. Datenbank: %s OpenLP cannot load your database. Database: %s OpenLP kann die Datenbank nicht laden. Datenbank: %s OpenLP.MediaManagerItem No Items Selected Keine Elemente ausgewählt. &Add to selected Service Item Zum &gewählten Ablaufelement hinzufügen You must select one or more items to preview. Zur Vorschau muss mindestens ein Elemente auswählt sein. You must select one or more items to send live. Zur Live Anzeige muss mindestens ein Element ausgewählt sein. You must select one or more items. Es muss mindestens ein Element ausgewählt sein. You must select an existing service item to add to. Sie müssen ein vorhandenes Ablaufelement auswählen. Invalid Service Item Ungültiges Ablaufelement You must select a %s service item. Sie müssen ein %s-Element im Ablaufs wählen. You must select one or more items to add. Sie müssen ein oder mehrer Element auswählen. No Search Results Kein Suchergebnis Invalid File Type Ungültige Dateiendung Invalid File %s. Suffix not supported Ungültige Datei %s. Dateiendung nicht unterstützt. &Clone &Klonen Duplicate files were found on import and were ignored. Duplikate wurden beim Importieren gefunden und wurden ignoriert. OpenLP.OpenLyricsImportError <lyrics> tag is missing. Ein <lyrics>-Tag fehlt. <verse> tag is missing. Ein <verse>-Tag fehlt. OpenLP.PJLink1 Unknown status Unbekannter Status No message Keine Meldung Error while sending data to projector Fehler während der Datenübertragung zum Projektor Undefined command: Unbekanntes Kommando: OpenLP.PlayerTab Players Mediaplayer Available Media Players Verfügbare Mediaplayer Player Search Order Mediaplayer Suchreihenfolge Visible background for videos with aspect ratio different to screen. Sichtbarer Hintergrund für Videos mit einem anderen Seitenverhältnis als die Anzeige. %s (unavailable) %s (nicht verfügbar) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" Achtung: Um VCL zu benutzen, müssen Sie die %s-Version installieren. OpenLP.PluginForm Plugin Details Erweiterungsdetails Status: Status: Active aktiv Inactive inaktiv %s (Inactive) %s (inaktiv) %s (Active) %s (aktiv) %s (Disabled) %s (deaktiviert) Manage Plugins Plugins verwalten OpenLP.PrintServiceDialog Fit Page Auf Seite einpassen Fit Width An Breite anpassen OpenLP.PrintServiceForm Options Optionen Copy Kopieren Copy as HTML Als HTML kopieren Zoom In Heranzoomen Zoom Out Wegzoomen Zoom Original Original Zoom Other Options Andere Optionen Include slide text if available Drucke Folientext wenn verfügbar Include service item notes Drucke Element-Notizen Include play length of media items Drucke Spiellänge von Medien Elementen Add page break before each text item Einen Seitenumbruch nach jedem Text-Element einfügen Service Sheet Ablauf Print Drucken Title: Titel: Custom Footer Text: Ablaufnotizen: OpenLP.ProjectorConstants OK OK General projector error Allgemeiner Projektor Fehler Not connected error Fehler: Nicht verbunden Lamp error Lampen Fehler Fan error Lüfter Fehler High temperature detected Übertemperatur festgestellt Cover open detected Gehäuse offen festgestellt Check filter Bitte Filter prüfen Authentication Error Authentifizierungsfehler Undefined Command Unbekanntes Kommando Invalid Parameter Ungültiger Parameter Projector Busy Projektor beschäftigt Projector/Display Error Projektor/Anzeige Fehler Invalid packet received Ungültiges Datenpaket empfangen Warning condition detected Alarmbedingung erkannt Error condition detected Fehlerbedingung erkannt PJLink class not supported Die PJLink-Klasse wird nicht unterstützt Invalid prefix character Ungültiger Prefix-Buchstabe The connection was refused by the peer (or timed out) Die Verbindung wurde vom Peer abgelehnt (oder sie wurde unterbrochen) The remote host closed the connection Die Verbindung wurde am anderen Rechner getrennt. The host address was not found Die Hostadresse wurde nicht gefunden The socket operation failed because the application lacked the required privileges Die Socketoperation konnte nicht ausgeführt werden, da die nötigen Rechte fehlen. The local system ran out of resources (e.g., too many sockets) Das lokale System hat nicht genügend Ressourcen (z.B. zu viele Sockets) The socket operation timed out Die Socket-Operation wurde unterbrochen The datagram was larger than the operating system's limit Das Datagramm war größer als das Limit des Betriebssystems An error occurred with the network (Possibly someone pulled the plug?) Ein Netzwerkfehler ist aufgetreten (vielleicht hat jemand den Stecker gezogen?) The address specified with socket.bind() is already in use and was set to be exclusive Die Adresse für socket.bind() ist bereits in Benutzung und ist nur exklusiv nutzbar The address specified to socket.bind() does not belong to the host Die Adresse für socket.bind() gehört nicht zu diesem Rechner The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) Die angeforderte Socket-Operation wird nicht vom Betriebssystem unterstützt (z.B. fehlende IPv6 Unterstützung) The socket is using a proxy, and the proxy requires authentication Der Socket benutzt einen Proxy, der eine Anmeldung erfordert The SSL/TLS handshake failed Der SSL/TLS-Handshake ist fehlgeschlagen The last operation attempted has not finished yet (still in progress in the background) Der letzte Vorgang ist noch nicht beendet (er läuft noch im Hintergrund) Could not contact the proxy server because the connection to that server was denied Konnte den Proxy Server nicht kontaktieren, da die Verbindung abgewiesen wurde The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) Die Verbindung zum Proxy-Server wurde unerwartet beendet (bevor die Verbindung zum Ziel-Server hergestellt war) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. Die Verbindung zum Proxy-Server lief in einen Timeout oder der Proxy-Server antwortet nicht mehr während der Anmeldung The proxy address set with setProxy() was not found Die Proxy-Adresse bei setProxy() wurde nicht gefunden An unidentified error occurred Unbekannter Fehler Not connected Nicht verbunden Connecting Verbinde Connected Verbunden Getting status Status Abfrage Off Aus Initialize in progress Initialisierungsphase Power in standby Standby Modus Warmup in progress Aufwärmphase Power is on Eingeschaltet Cooldown in progress Abkühlphase Projector Information available Projektorinformation verfügbar Sending data Sende Daten Received data Daten Empfangen The connection negotiation with the proxy server failed because the response from the proxy server could not be understood Der Verbindungsaufbau zum Proxy-Server ist fehlgeschlagen, da die Antwort des Proxy-Servers nicht verarbeitet werden konnte OpenLP.ProjectorEdit Name Not Set Name nicht festgelegt You must enter a name for this entry.<br />Please enter a new name for this entry. Dieser Eintrag benötigt einen Namen.<br />Bitte einen Namen für diesen Eintrag eingeben. Duplicate Name Doppelter Name OpenLP.ProjectorEditForm Add New Projector Neuen Projektor hinzufügen Edit Projector Projektor bearbeiten IP Address IP Adresse Port Number Port Nummer PIN PIN Name Name Location Ort Notes Notizen Database Error Datenbankfehler There was an error saving projector information. See the log for the error Es gab einen Fehler beim Speichern der Projektorinformation. Mehr Informationen zum Fehler gibt es in der Log-Datei OpenLP.ProjectorManager Add Projector Projektor hinzufügen Add a new projector Füge neuen Projektor hinzu Edit Projector Projektor bearbeiten Edit selected projector Bearbeite den ausgewählten Projektor Delete Projector Projektor löschen Delete selected projector Lösche den ausgewählten Projektor Select Input Source Eingangsquelle auswählen Choose input source on selected projector Wähle die Eingangsquelle für ausgewählten Projektor View Projector Zeige Projektor View selected projector information Zeige Informationen zum ausgewählten Projektor Connect to selected projector Verbinde ausgewählten Projektor Connect to selected projectors Verbindung zu ausgewählten Projektoren herstellen Disconnect from selected projectors Verbindung zu ausgewählten Projektoren trennen Disconnect from selected projector Trenne ausgewählten Projektor Power on selected projector Schalte ausgewählten Projektor ein Standby selected projector Standby für ausgewählten Projektor Put selected projector in standby Ausgewählten Projektor in Standy schalten Blank selected projector screen Ausgewählten Projektor abdunkeln Show selected projector screen Ausgewählten Projektor anzeigen &View Projector Information &V Projektorinformation anzeigen &Edit Projector Projektor b&earbeiten &Connect Projector Proje&ktor verbinden D&isconnect Projector Projektor & trennen Power &On Projector Projekt&or einschalten Power O&ff Projector Projekt&or ausschalten Select &Input E&ingang wählen Edit Input Source Bearbeite Eingangsquelle &Blank Projector Screen &B Projektion abdunkeln &Show Projector Screen &S Projektion anzeigen &Delete Projector &Lösche Projektor Name Name IP IP Port Port Notes Notizen Projector information not available at this time. Derzeit keine Projektorinformation verfügbar. Projector Name Projektor Name Manufacturer Hersteller Model Modell Other info Andere Informationen Power status Stromversorgungsstatus Shutter is Rolladen Closed Geschlossen Current source input is Aktuell gewählter Eingang ist Lamp Lampe On An Off Aus Hours Stunden No current errors or warnings Keine aktuellen Fehler oder Warnungen Current errors/warnings Aktuelle Fehler/Warnungen Projector Information Projektorinformation No message Keine Meldung Not Implemented Yet Derzeit nicht implementiert Delete projector (%s) %s? Projektor löschen (%s) %s? Are you sure you want to delete this projector? Soll dieser Projektor wirklich gelöscht werden? OpenLP.ProjectorPJLink Fan Lüfter Lamp Lampe Temperature Temperatur Cover Deckblatt Filter Filter Other Anderes OpenLP.ProjectorTab Projector Projektor Communication Options Verbindungsoptionen Connect to projectors on startup Verbindung zu den Projektoren beim Starten herstellen Socket timeout (seconds) Socket Timeout (in Sekunden) Poll time (seconds) Anfragezeit (in Sekunden) Tabbed dialog box Registernavigation im Dialogfenster Single dialog box Einzelnavigation im Dialogfenster OpenLP.ProjectorWizard Duplicate IP Address Doppelte IP-Adresse Invalid IP Address Ungültige IP Adresse Invalid Port Number Ungültige Port Nummer OpenLP.ScreenList Screen Bildschirm primary Primär OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Anfang</strong>: %s <strong>Length</strong>: %s <strong>Spiellänge</strong>: %s [slide %d] [Folie %d] OpenLP.ServiceItemEditForm Reorder Service Item Reihenfolge der Einträge ändern OpenLP.ServiceManager Move to &top Zum &Anfang schieben Move item to the top of the service. Das ausgewählte Element an den Anfang des Ablaufs verschieben. Move &up Nach &oben schieben Move item up one position in the service. Das ausgewählte Element um eine Position im Ablauf nach oben verschieben. Move &down Nach &unten schieben Move item down one position in the service. Das ausgewählte Element um eine Position im Ablauf nach unten verschieben. Move to &bottom Zum &Ende schieben Move item to the end of the service. Das ausgewählte Element an das Ende des Ablaufs verschieben. &Delete From Service Vom Ablauf &löschen Delete the selected item from the service. Das ausgewählte Element aus dem Ablaufs entfernen. &Add New Item &Neues Element hinzufügen &Add to Selected Item &Zum gewählten Element hinzufügen &Edit Item Element &bearbeiten &Reorder Item &Aufnahmeelement &Notes &Notizen &Change Item Theme &Design des Elements ändern File is not a valid service. Die Datei ist keine gültige OpenLP Ablaufdatei. Missing Display Handler Fehlende Anzeigesteuerung Your item cannot be displayed as there is no handler to display it Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt. Your item cannot be displayed as the plugin required to display it is missing or inactive Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist. &Expand all Alle au&sklappen Expand all the service items. Alle Ablaufelemente ausklappen. &Collapse all Alle ei&nklappen Collapse all the service items. Alle Ablaufelemente einklappen. Open File Ablauf öffnen Moves the selection down the window. Auswahl nach unten schieben Move up Nach oben Moves the selection up the window. Auswahl nach oben schieben Go Live Live Send the selected item to Live. Zeige das ausgewählte Element Live. &Start Time &Startzeit Show &Preview &Vorschau Modified Service Modifizierter Ablauf The current service has been modified. Would you like to save this service? Der momentane Ablauf wurde modifiziert. Möchten Sie ihn speichern? Custom Service Notes: Notizen zum Ablauf: Notes: Notizen: Playing time: Spiellänge: Untitled Service Unbenannt File could not be opened because it is corrupt. Datei konnte nicht geöffnet werden, da sie fehlerhaft ist. Empty File Leere Datei This service file does not contain any data. Diese Datei enthält keine Daten. Corrupt File Dehlerhaft Datei Load an existing service. Einen bestehenden Ablauf öffnen. Save this service. Den aktuellen Ablauf speichern. Select a theme for the service. Design für den Ablauf auswählen. Slide theme Element-Design Notes Notizen Edit Bearbeiten Service copy only Ablaufkopie (nicht in der Datenbank) Error Saving File Fehler beim Speichern der Datei There was an error saving your file. Beim Speichern der Datei ist ein Fehler aufgetreten. Service File(s) Missing Ablaufdatei(en) fehlen &Rename... &Umbenennen… Create New &Custom Slide Neue &Sonderfolie erstellen &Auto play slides &Folien automatisch abspielen Auto play slides &Loop Folien automatisch abspielen (mit &Wiederholung) Auto play slides &Once Folien automatisch abspielen (&einmalig) &Delay between slides &Pause zwischen Folien OpenLP Service Files (*.osz *.oszl) OpenLP Ablaufplandateien (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP-Ablaufplandateien (*.osz);; OpenLP-Ablaufplandateien – lite (*.oszl) OpenLP Service Files (*.osz);; OpenLP Ablaufplandateien (*.osz);; File is not a valid service. The content encoding is not UTF-8. Die Datei ist kein gültiger Ablaufplan. Die Inhaltskodierung ist nicht UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. Der Ablaufplan ist in einem alten Format. Bitte speichern Sie ihn mit OpenLP 2.0.2 oder neuer. This file is either corrupt or it is not an OpenLP 2 service file. Die Datei ist entweder beschädigt oder keine OpenLP 2-Ablaufplandatei. &Auto Start - inactive &Autostart – inaktiv &Auto Start - active &Autostart – aktiv Input delay Verzögerung Delay between slides in seconds. Verzögerung zwischen den Folien (in Sekunden) Rename item title Eintragstitel bearbeiten Title: Titel: An error occurred while writing the service file: %s Folgender Fehler trat beim Schreiben der Service-Datei auf: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. Die folgende(n) Datei(en) fehlen im Ablauf: %s Diese Dateien werden entfernt, wenn Sie mit dem Speichern fortfahren. OpenLP.ServiceNoteForm Service Item Notes Elementnotiz OpenLP.SettingsForm Configure OpenLP Konfiguriere OpenLP OpenLP.ShortcutListDialog Action Aktion Shortcut Tastenkürzel Duplicate Shortcut Belegtes Tastenkürzel The shortcut "%s" is already assigned to another action, please use a different shortcut. Das Tastenkürzel »%s« ist bereits einer anderen Aktion zugeordnet. Bitte wählen Sie ein anderes Tastenkürzel. Alternate Alternative Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Wählen Sie ein Aktion aus und klicken Sie eine der unteren Buttons um einen primären bzw. alternativen Tastenkürzel auf zuzeichnen. Default Standard Custom Sonderfolien Capture shortcut. Tastenkürzel aufzeichen. Restore the default shortcut of this action. Standard Tastenkürzel dieser Aktion wiederherstellen. Restore Default Shortcuts Standard Tastenkürzel wiederherstellen Do you want to restore all shortcuts to their defaults? Möchten Sie alle standard Tastenkürzel wiederherstellen? Configure Shortcuts Konfiguriere Tastaturkürzel... OpenLP.SlideController Hide Verbergen Go To Gehe zu Blank Screen Anzeige abdunkeln Blank to Theme Design leeren Show Desktop Desktop anzeigen Previous Service Vorheriges Element Next Service Nächstes Element Escape Item Folie schließen Move to previous. Vorherige Folie anzeigen. Move to next. Vorherige Folie anzeigen. Play Slides Schleife Delay between slides in seconds. Verzögerung zwischen den Folien (in Sekunden) Move to live. Zur Live Ansicht verschieben. Add to Service. Füge zum Ablauf hinzu. Edit and reload song preview. Bearbeiten und Vorschau aktualisieren. Start playing media. Beginne Wiedergabe. Pause audio. Pausiere Musik. Pause playing media. Pausiere Wiedergabe. Stop playing media. Beende Wiedergabe. Video position. Videoposition Audio Volume. Lautstärke Go to "Verse" Gehe zu »Strophe« Go to "Chorus" Gehe zu »Refrain« Go to "Bridge" Gehe zu »Bridge« Go to "Pre-Chorus" Gehe zu Ȇberleitung« Go to "Intro" Gehe zu »Intro« Go to "Ending" Gehe zu »Ende« Go to "Other" Gehe zu »Anderes« Previous Slide Vorherige Folie Next Slide Nächste Folie Pause Audio Tonausgabe anhalten Background Audio Hintergrundton Go to next audio track. Zum nächsten Stück gehen. Tracks Stücke OpenLP.SourceSelectForm Select Projector Source Wähle Projektor Quelle Edit Projector Source Text Wähle Projektor Quelle Ignoring current changes and return to OpenLP Änderungen verwerfen und zu OpenLP zurückkehren Delete all user-defined text and revert to PJLink default text Lösche den benutzerdefinieren Text und stelle den Standardtext wieder her. Discard changes and reset to previous user-defined text Änderungen verwerfen und vorherigen benutzerdefinierten Text verwenden Save changes and return to OpenLP Änderungen speichern und zu OpenLP zurückkehren Delete entries for this projector Eingaben dieses Projektors löschen Are you sure you want to delete ALL user-defined source input text for this projector? Sind Sie sicher, dass sie ALLE benutzerdefinieren Quellen für diesen Projektor löschen wollen? OpenLP.SpellTextEdit Spelling Suggestions Rechtschreibvorschläge Formatting Tags Formatvorlagen Language: Sprache: OpenLP.StartTimeForm Theme Layout Design-Layout The blue box shows the main area. Der blaue Rahmen zeigt die Hauptanzeigefläche. The red box shows the footer. Der rote Rahmen zeigt die Fußzeile. OpenLP.StartTime_form Item Start and Finish Time Start- und Endzeit Hours: Stunden: Minutes: Minuten: Seconds: Sekunden: Start Start Finish Ende Length Länge Time Validation Error Validierungsfehler Finish time is set after the end of the media item Die Endzeit befindet sich nach dem Ende des Medienendes Start time is after the finish time of the media item Die Startzeit befindet sich nach dem Ende des Medienendes OpenLP.ThemeForm (approximately %d lines per slide) (ungefähr %d Zeilen pro Folie) OpenLP.ThemeManager Create a new theme. Erstelle ein neues Design. Edit Theme Bearbeite Design Edit a theme. Ein bestehendes Design bearbeiten. Delete Theme Lösche Design Delete a theme. Ein Design löschen. Import Theme Importiere Design Import a theme. Ein Design aus einer Datei importieren. Export Theme Exportiere Design Export a theme. Ein Design in eine Datei exportieren. &Edit Theme Design &bearbeiten &Delete Theme &Lösche Design Set As &Global Default Als &globalen Standard setzen %s (default) %s (Standard) You must select a theme to edit. Zum Bearbeiten muss ein Design ausgewählt sein. You are unable to delete the default theme. Es ist nicht möglich das Standarddesign zu entfernen. You have not selected a theme. Es ist kein Design ausgewählt. Save Theme - (%s) Speicherort für »%s« Theme Exported Design exportiert Your theme has been successfully exported. Das Design wurde erfolgreich exportiert. Theme Export Failed Designexport fehlgeschlagen Select Theme Import File OpenLP Designdatei importieren File is not a valid theme. Diese Datei ist keine gültige OpenLP Designdatei. &Copy Theme Design &kopieren &Rename Theme Design &umbenennen &Export Theme Design &exportieren You must select a theme to rename. Es ist kein Design zur Umbenennung ausgewählt. Rename Confirmation Umbenennung bestätigen Rename %s theme? Soll das Design »%s« wirklich umbenennt werden? You must select a theme to delete. Es ist kein Design zum Löschen ausgewählt. Delete Confirmation Löschbestätigung Delete %s theme? Soll das Design »%s« wirklich gelöscht werden? Validation Error Validierungsfehler A theme with this name already exists. Ein Design mit diesem Namen existiert bereits. Copy of %s Copy of <theme name> Kopie von %s Theme Already Exists Design bereits vorhanden Theme %s already exists. Do you want to replace it? Design »%s« existiert bereits. Möchten Sie es ersetzten? The theme export failed because this error occurred: %s Der Design-Export schlug fehl, weil dieser Fehler auftrat: %s OpenLP Themes (*.otz) OpenLP Designs (*.otz) %s time(s) by %s %s Mal von %s Unable to delete theme Es ist nicht möglich das Design zu löschen Theme is currently used %s Das Design wird momentan benutzt %s OpenLP.ThemeWizard Theme Wizard Designassistent Welcome to the Theme Wizard Willkommen beim Designassistenten Set Up Background Hintergrund einrichten Set up your theme's background according to the parameters below. Der Designhintergrund wird anhand der Parameter unten eingerichtet. Background type: Hintergrundart: Gradient Farbverlauf Gradient: Verlauf: Horizontal horizontal Vertical vertikal Circular radial Top Left - Bottom Right diagonal abwärts Bottom Left - Top Right diagonal aufwärts Main Area Font Details Schriftschnitt und -farbe Define the font and display characteristics for the Display text Die Schrift und die Anzeigeeigenschaften für die Hauptanzeigefläche einrichten Font: Schriftart: Size: Schriftgröße: Line Spacing: Zeilenabstand: &Outline: &Umrandung: &Shadow: S&chatten: Bold Fett Italic Kursiv Footer Area Font Details Fußzeile einrichten Define the font and display characteristics for the Footer text Die Schrift und die Anzeigeeigenschaften für die Fußzeile einrichten Text Formatting Details Weitere Formatierung Allows additional display formatting information to be defined Hier können zusätzliche Anzeigeeigenschaften eingerichtet werden. Horizontal Align: Horizontale Ausrichtung: Left links Right rechts Center zentriert Output Area Locations Anzeigeflächen &Main Area &Hauptanzeigefläche &Use default location &Automatisch positionieren X position: Von links: px px Y position: Von oben: Width: Breite: Height: Höhe: Use default location Automatisch positionieren Theme name: Designname: Edit Theme - %s Bearbeite Design - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Dieser Assistent hilft Ihnen Designs zu erstellen oder zu bearbeiten. Klicken Sie auf »Weiter« um den Hintergrund einzurichten. Transitions: Übergänge: &Footer Area &Fußzeile Starting color: Startfarbe: Ending color: Endfarbe Background color: Hintergrundfarbe: Justify bündig Layout Preview Layout-Vorschau Transparent transparent Preview and Save Vorschau und Speichern Preview the theme and save it. Vorschau des Designs zeigen und speichern. Background Image Empty Hintergrundbild fehlt Select Image Bild auswählen Theme Name Missing Designname fehlt There is no name for this theme. Please enter one. Es wurde kein Designname angegeben. Bitte geben Sie eine an. Theme Name Invalid Designname ungültig Invalid theme name. Please enter one. Ungültiger Designname. Bitte geben Sie einen gültigen Namen ein. Solid color Einfache Farbe color: Farbe: Allows you to change and move the Main and Footer areas. Hier können Sie die Hauptanzeigefläche und die Fußzeile positionieren. You have not selected a background image. Please select one before continuing. Sie haben kein Hintergrundbild ausgewählt. Bitte wählen sie eins um fortzufahren. OpenLP.ThemesTab Global Theme Globales Standarddesign Theme Level Designstufe S&ong Level &Liedstufe Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Das im jeweiligen Lied eingestellte Design wird verwendet. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. &Service Level &Ablaufstufe Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Das dem Ablauf zugewiesene Design wird genutzt. Das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. &Global Level &Globale Stufe Use the global theme, overriding any themes associated with either the service or the songs. Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign. Themes Designs Universal Settings Allgemeine Einstellungen &Wrap footer text Zeilenumbruch für Fußzeile OpenLP.Ui Delete the selected item. Lösche den ausgewählten Eintrag. Move selection up one position. Ausgewählten Eintrag nach oben schieben. Move selection down one position. Ausgewählten Eintrag nach unten schieben. &Vertical Align: &Vertikale Ausrichtung: Finished import. Importvorgang abgeschlossen. Format: Format: Importing Importieren Importing "%s"... »%s« wird importiert... Select Import Source Importquelle auswählen Select the import format and the location to import from. Wählen Sie das Importformat und das Quellverzeichnis aus. Open %s File Öffne %s Datei %p% %p% Ready. Fertig. Starting import... Beginne Import... You need to specify at least one %s file to import from. A file type e.g. OpenSong Sie müssen wenigstens eine %s-Datei zum Importieren auswählen. Welcome to the Bible Import Wizard Willkommen beim Bibel Importassistenten Welcome to the Song Export Wizard Willkommen beim Lied Exportassistenten Welcome to the Song Import Wizard Willkommen beim Lied Importassistenten Author Singular Autor Authors Plural Autoren © Copyright symbol. © Song Maintenance Liedverwaltung Topic Singular Thema Topics Plural Themen Title and/or verses not found Titel und/oder Strophen nicht gefunden XML syntax error XML Syntax Fehler Welcome to the Bible Upgrade Wizard Willkommen zum Aktualisierungsssistent Open %s Folder Öffne %s Ordner You need to specify one %s file to import from. A file type e.g. OpenSong Bitte wählen Sie eine %s Datei, welche importiert werden soll. You need to specify one %s folder to import from. A song format e.g. PowerSong Bitte wählen Sie wenigstens einen %s Ordner der importiert werden soll. Importing Songs Lieder importieren Welcome to the Duplicate Song Removal Wizard Willkommen beim Assistenten zum Entfernen von Liedduplikaten Written by Geschrieben von Author Unknown Autor unbekannt About Über &Add &Hinzufügen Add group Gruppe hinzufügen Advanced Erweitert All Files Alle Dateien Automatic automatisch Background Color Hintergrundfarbe Bottom unten Browse... Durchsuchen... Cancel Abbruch CCLI number: CCLI-Nummer: Create a new service. Erstelle neuen Ablauf. Confirm Delete Löschbestätigung Continuous Fortlaufend Default Standard Default Color: Standardfarbe: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Ablauf %Y-%m-%d %H-%M &Delete &Löschen Display style: Versangabenformat: Duplicate Error Duplikate gefunden &Edit &Bearbeiten Empty Field Leeres Feld Error Fehler Export Export File Datei File Not Found Datei nicht gefunden File %s not found. Please try selecting it individually. Datei %s nicht gefunden. Bitte wählen Sie die Dateien einzeln aus. pt Abbreviated font pointsize unit pt Help Hilfe h The abbreviated unit for hours h Invalid Folder Selected Singular Ungültiger Ordner gewählt Invalid File Selected Singular Ungültige Datei ausgewählt Invalid Files Selected Plural Ungültige Dateien gewählt Image Bild Import Import Layout style: Folienformat: Live Live Live Background Error Live-Hintergrund Fehler Live Toolbar Live-Ansicht Load Öffnen Manufacturer Singular Hersteller Manufacturers Plural Hersteller Model Singular Modell Models Plural Modelle m The abbreviated unit for minutes m Middle mittig New Neu New Service Neuer Ablauf New Theme Neues Design Next Track Nächstes Stück No Folder Selected Singular Kein Ordner ausgewählt No File Selected Singular Keine Datei ausgewählt No Files Selected Plural Keine Dateien ausgewählt No Item Selected Singular Kein Element ausgewählt No Items Selected Plural Keine Elemente ausgewählt. OpenLP is already running. Do you wish to continue? OpenLP läuft bereits. Möchten Sie trotzdem fortfahren? Open service. Öffne einen Ablauf. Play Slides in Loop Endlosschleife Play Slides to End Schleife bis zum Ende Preview Vorschau Print Service Ablauf drucken Projector Singular Projektor Projectors Plural Projektoren Replace Background Live-Hintergrund ersetzen Replace live background. Ersetzen den Live-Hintergrund. Reset Background Hintergrund zurücksetzen Reset live background. Setze den Live-Hintergrund zurück. s The abbreviated unit for seconds s Save && Preview Speichern && Vorschau Search Suche Search Themes... Search bar place holder text Suche Designs... You must select an item to delete. Sie müssen ein Element zum Löschen auswählen. You must select an item to edit. Sie müssen ein Element zum Bearbeiten auswählen. Settings Einstellungen Save Service Speicher Ablauf Service Ablauf Optional &Split Optionale &Teilung Split a slide into two only if it does not fit on the screen as one slide. Teile ein Folie dann, wenn sie als Ganzes nicht auf den Bildschirm passt. Start %s Start %s Stop Play Slides in Loop Halte Endlosschleife an Stop Play Slides to End Halte Schleife an Theme Singular Design Themes Plural Designs Tools Extras Top oben Unsupported File Nicht unterstütztes Dateiformat Verse Per Slide Verse pro Folie Verse Per Line Verse pro Zeile Version Version View Ansicht View Mode Ansichtsmodus CCLI song number: CCLI Lied Nummer: Preview Toolbar Vorschau-Werkzeugleiste OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Der Live-Hintergund kann nicht ersetzt werden wenn der WebKit-Player deaktiviert ist. Songbook Singular Liederbuch Songbooks Plural Liederbücher OpenLP.core.lib %s and %s Locale list separator: 2 items %s und %s %s, and %s Locale list separator: end %s, und %s %s, %s Locale list separator: middle %s, %s %s, %s Locale list separator: start %s, %s Openlp.ProjectorTab Source select dialog interface Quellenauswahl-Fenster PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Präsentationen-Erweiterung</strong><br />Die Erweiterung Präsentationen ermöglicht die Darstellung von Präsentationen, unter Verwendung verschiedener Programme. In einer Auswahlbox kann eines der verfügbaren Programme gewählt werden. Presentation name singular Präsentation Presentations name plural Präsentationen Presentations container title Präsentationen Load a new presentation. Lade eine neue Präsentation. Delete the selected presentation. Lösche die ausgewählte Präsentation. Preview the selected presentation. Zeige die ausgewählte Präsentation in der Vorschau. Send the selected presentation live. Zeige die ausgewählte Präsentation Live. Add the selected presentation to the service. Füge die ausgewählte Präsentation zum Ablauf hinzu. PresentationPlugin.MediaItem Select Presentation(s) Präsentationen auswählen Automatic automatisch Present using: Anzeigen mit: File Exists Datei existiert A presentation with that filename already exists. Eine Präsentation mit diesem Dateinamen existiert bereits. This type of presentation is not supported. Präsentationsdateien dieses Dateiformats werden nicht unterstützt. Presentations (%s) Präsentationen (%s) Missing Presentation Fehlende Präsentation The presentation %s is incomplete, please reload. Die Präsentation %s ist unvollständig, bitte erneut laden. The presentation %s no longer exists. Die Präsentation %s existiert nicht mehr. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. Ein Fehler in der Powerpoint Integration ist aufgetreten und die Präsentation wird nun gestoppt. Um die Präsentation zu zeigen, muss diese neu gestartet werden. PresentationPlugin.PresentationTab Available Controllers Verwendete Präsentationsprogramme %s (unavailable) %s (nicht verfügbar) Allow presentation application to be overridden Überschreiben der Präsentationssoftware zulassen PDF options PDF-Optionen Use given full path for mudraw or ghostscript binary: Geben Sie einen vollständigen Pfad für die mudraw oder ghostscript-Bibliothek an: Select mudraw or ghostscript binary. Wählen Sie eine mudraw oder ghostscript-Bibliothek aus. The program is not ghostscript or mudraw which is required. Das angegebene Programm ist nicht mudraw oder ghostscript. PowerPoint options PowerPoint Optionen Clicking on a selected slide in the slidecontroller advances to next effect. Ein Klick auf die ausgewählte Folie in der Folien-Leiste führt zum nächsten Effekt / der nächsten Aktion der Präsentation Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). Lässt PowerPoint die Größe und Position des Präsentations-Fensters bestimmen (Übergangslösung für das Skalierungs-Problem in Windows 8). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Fernsteuerungs-Erweiterung</strong><br />Die Erweiterung Fernsteuerung ermöglicht es eine laufende Version von OpenLP von einem anderen Computer über einen Web-Browser oder über die Fernsteuerungsoberfläche zu steuern. Remote name singular Fernsteuerung Remotes name plural Fernsteuerung Remote container title Fernsteuerung Server Config Change Änderung der Serverkonfiguration Server configuration changes will require a restart to take effect. Sie müssen OpenLP neustarten, damit die Änderungen an der Serverkonfiguration wirksam werden. RemotePlugin.Mobile Service Manager Ablaufverwaltung Slide Controller Live-Ansicht Alerts Hinweise Search Suche Home Start Refresh Aktualisieren Blank Abdunkeln Theme Design Desktop Desktop Show Zeigen Prev Vorh. Next Vorwärts Text Text Show Alert Hinweis zeigen Go Live Live Add to Service Füge zum Ablauf hinzu Add &amp; Go to Service Hinzufügen & zum Ablauf gehen No Results Kein Suchergebnis Options Optionen Service Ablauf Slides Live-Ansicht Settings Einstellungen Remote Fernsteuerung Stage View Bühnenansicht Live View Echtzeit-Anzeige RemotePlugin.RemoteTab Serve on IP address: Verfügbar über IP-Adresse: Port number: Port-Nummer: Server Settings Server-Einstellungen Remote URL: Fernsteuerung: Stage view URL: Bühnenmonitor: Display stage time in 12h format Nutze 12h Format für den Bühnenmonitor Android App Android App Live view URL: Liveansicht URL: HTTPS Server HTTPS-Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. Konnte kein SSL-Zertifikat finden. Der HTTPS-Server wird nicht verfügbar sein solange kein SSL-Zertifikat gefunden werden kann. Bitte lesen Sie das Benutzerhandbuch für mehr Informationen. User Authentication Benutzerauthentifizierung User id: Benutzername: Password: Passwort: Show thumbnails of non-text slides in remote and stage view. Vorschaubilder für Folien ohne Text in der Fernsteuerung und auf dem Bühnenmonitor anzeigen. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. Scannen Sie den QR-Code oder <a href="%s">laden</a> Sie die Android-App von Google Play herunter. SongUsagePlugin &Song Usage Tracking &Protokollierung &Delete Tracking Data &Protokoll löschen Delete song usage data up to a specified date. Das Protokoll ab einem bestimmten Datum löschen. &Extract Tracking Data &Protokoll extrahieren Generate a report on song usage. Einen Protokoll-Bericht erstellen. Toggle Tracking Aktiviere Protokollierung Toggle the tracking of song usage. Setzt die Protokollierung aus. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Liedernutzungs-Protokollierungs-Erweiterung</strong><br />Diese Erweiterung zählt die Verwendung von Liedern in Veranstaltungen. SongUsage name singular Liedprotokollierung SongUsage name plural Liedprotokollierung SongUsage container title Liedprotokollierung Song Usage Liedprotokollierung Song usage tracking is active. Liedprotokollierung ist aktiv. Song usage tracking is inactive. Liedprotokollierung ist nicht aktiv. display Bildschirm printed gedruckt SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Protokolldaten löschen Delete Selected Song Usage Events? Wollen sie die ausgewählten Ereignisse löschen? Are you sure you want to delete selected Song Usage data? Sollen die ausgewählten Protokolldaten wirklich gelöscht werden? Deletion Successful Löschen erfolgreich Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Geben Sie das Datum an, bis zu dem die Nutzungsstatistiken gelöscht werden sollen. Alle Daten, die vor diesem Datum aufgezeichnet wurden, werden permanent gelöscht. All requested data has been deleted successfully. Die gewünschten Daten wurden erfolgreich gelöscht. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Protokoll extrahieren Select Date Range Zeitspanne to bis Report Location Zielverzeichnis für die Statistiken Output File Location Zielverzeichnis usage_detail_%s_%s.txt Aufrufprotokoll_%s_%s.txt Report Creation Statistik Erstellung Report %s has been successfully created. Bericht %s wurde erfolgreich erstellt. Output Path Not Selected Kein Zielverzeichnis angegeben You have not set a valid output location for your song usage report. Please select an existing path on your computer. Die haben keinen gültigen Ausgabeort für das Nutzungsprotokoll angegeben. Bitte geben Sie einen gültigen Pfad an. Report Creation Failed Fehler beim Erstellen des Berichts An error occurred while creating the report: %s Folgender Fehler trat beim Erstellen des Berichts auf: %s SongsPlugin &Song &Lied Import songs using the import wizard. Lieder importieren. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Liedtext-Erweiterung</strong><br />Diese Erweiterung ermöglicht die Darstellung und Verwaltung von Liedtexten. &Re-index Songs Liederverzeichnis &reindizieren Re-index the songs database to improve searching and ordering. Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern. Reindexing songs... Reindiziere die Liederdatenbank... Arabic (CP-1256) Arabisch (CP-1256) Baltic (CP-1257) Baltisch (CP-1257) Central European (CP-1250) Zentraleuropäisch (CP-1250) Cyrillic (CP-1251) Kyrillisch (CP-1251) Greek (CP-1253) Griechisch (CP-1253) Hebrew (CP-1255) Hebräisch (CP-1255) Japanese (CP-932) Japanisch (CP-932) Korean (CP-949) Koreanisch (CP-949) Simplified Chinese (CP-936) Chinesisch, vereinfacht (CP-936) Thai (CP-874) Thailändisch (CP-874) Traditional Chinese (CP-950) Chinesisch, traditionell (CP-950) Turkish (CP-1254) Türkisch (CP-1254) Vietnam (CP-1258) Vietnamesisch (CP-1258) Western European (CP-1252) Westeuropäisch (CP-1252) Character Encoding Zeichenkodierung The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. Die Codepage Einstellung ist nötwendig für die richtige Zeichendarstellung. Gewöhnlich ist die vorausgewählte Einstellung korrekt. Please choose the character encoding. The encoding is responsible for the correct character representation. Bitte wählen sie die Zeichenkodierung. Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich. Song name singular Lied Songs name plural Lieder Songs container title Lieder Exports songs using the export wizard. Exportiert Lieder mit dem Exportassistenten. Add a new song. Erstelle eine neues Lied. Edit the selected song. Bearbeite das ausgewählte Lied. Delete the selected song. Lösche das ausgewählte Lied. Preview the selected song. Zeige das ausgewählte Lied in der Vorschau. Send the selected song live. Zeige das ausgewählte Lied Live. Add the selected song to the service. Füge das ausgewählte Lied zum Ablauf hinzu. Reindexing songs Neuindizierung der Lieder CCLI SongSelect CCLI-Songselect Import songs from CCLI's SongSelect service. Lieder von CCLI-Songselect importieren. Find &Duplicate Songs &Doppelte Lieder finden Find and remove duplicate songs in the song database. Doppelte Lieder finden und löschen. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Text Music Author who wrote the music of a song Musik Words and Music Author who wrote both lyrics and music of a song Text und Musik Translation Author who translated the song Übersetzung SongsPlugin.AuthorsForm Author Maintenance Autorenverwaltung Display name: Anzeigename: First name: Vorname: Last name: Nachname: You need to type in the first name of the author. Der Vornamen des Autors muss angegeben werden. You need to type in the last name of the author. Der Nachname des Autors muss angegeben werden. You have not set a display name for the author, combine the first and last names? Es wurde kein Anzeigename für den Autor angegeben. Soll der Vor- und Nachname kombiniert werden? SongsPlugin.CCLIFileImport The file does not have a valid extension. Die Datei hat keine gültige Dateiendung. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. Ungültige DreamBeam-Datei. Der DreamSong-Tag fehlt. SongsPlugin.EasyWorshipSongImport Administered by %s Verwaltet durch %s "%s" could not be imported. %s „%s“ konnte nicht importiert werden. %s Unexpected data formatting. Unerwartete Datenformatierung. No song text found. Kein Liedtext gefunden. [above are Song Tags with notes imported from EasyWorship] [Dies sind Tags und Notizen, die aus EasyWorship importiert wurden] This file does not exist. Diese Datei existiert nicht. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. Konnte die Datei „Songs.MB“ nicht finden. Sie muss in dem selben Ordner wie die „Songs.DB“-Datei sein. This file is not a valid EasyWorship database. Diese Datei ist keine gültige EasyWorship Datenbank. Could not retrieve encoding. Konnte die Zeichenkodierung nicht feststellen. SongsPlugin.EditBibleForm Meta Data Metadaten Custom Book Names Benutzerdefinierte Büchernamen SongsPlugin.EditSongForm Song Editor Lied bearbeiten &Title: &Titel: Alt&ernate title: &Zusatztitel: &Lyrics: Lied&text: &Verse order: &Versfolge: Ed&it All &Alle Bearbeiten Title && Lyrics Titel && Liedtext &Add to Song &Hinzufügen &Remove &Entfernen A&dd to Song H&inzufügen R&emove &Entfernen New &Theme Neues &Design Copyright Information Copyright Comments Kommentare Theme, Copyright Info && Comments Design, Copyright && Kommentare Add Author Autor hinzufügen This author does not exist, do you want to add them? Dieser Autor existiert nicht. Soll er zur Datenbank hinzugefügt werden? This author is already in the list. Dieser Autor ist bereits vorhanden. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Es wurde kein gültiger Autor ausgewählt. Bitte wählen Sie einen Autor aus der Liste oder geben Sie einen neuen Autor ein und drücken die Schaltfläche »Autor hinzufügen«. Add Topic Thema hinzufügen This topic does not exist, do you want to add it? Dieses Thema existiert nicht. Soll es zur Datenbank hinzugefügt werden? This topic is already in the list. Dieses Thema ist bereits vorhanden. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Es wurde kein gültiges Thema ausgewählt. Bitte wählen Sie ein Thema aus der Liste oder geben Sie ein neues Thema ein und drücken die Schaltfläche »Thema hinzufügen«. You need to type in a song title. Ein Liedtitel muss angegeben sein. You need to type in at least one verse. Mindestens ein Vers muss angegeben sein. You need to have an author for this song. Das Lied benötigt mindestens einen Autor. Linked Audio Hintergrundmusik Add &File(s) &Datei(en) hinzufügen Add &Media &Medien hinzufügen Remove &All &Alle Entfernen Open File(s) Datei(en) öffnen <strong>Warning:</strong> Not all of the verses are in use. <strong>Achtung:</strong> Es werden nicht alle Verse verwendet. <strong>Warning:</strong> You have not entered a verse order. <strong>Achtung:</strong> Sie haben keine Versfolge eingegeben. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Es gibt keinen Vers, der "%(invalid)s" entspricht. Gültige Eingaben sind %(valid)s. Bitte geben Sie die Verse mit Leerzeichen getrennt ein. Invalid Verse Order Ungültige Versfolge &Edit Author Type Autortyp &bearbeiten Edit Author Type Autortyp bearbeiten Choose type for this author Wählen Sie den Typ für diesen Autor There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. Es gibt keine Verse, die "%(invalid)s" entsprechen. Gültige Eingaben sind %(valid)s. Bitte geben Sie die Verse mit Leerzeichen getrennt ein. &Manage Authors, Topics, Songbooks A&utoren, Themen && Liederbücher Add &to Song &Zum Lied hinzufügen Re&move &Entfernen Authors, Topics && Songbooks Autoren, Themen && Liederbücher Add Songbook Zum Liederbuch hinzufügen This Songbook does not exist, do you want to add it? Dieses Liederbuch existiert nicht, möchten Sie es erstellen? This Songbook is already in the list. Dieses Liederbuch ist bereits in der Liste. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. Es wurde kein gültiges Liederbuch ausgewählt. Bitte wählen Sie ein Liederbuch aus der Liste oder geben Sie ein neues Liederbuch ein und drücken die Schaltfläche »Liederbuch hinzufügen«. SongsPlugin.EditVerseForm Edit Verse Vers bearbeiten &Verse type: &Verstyp: &Insert &Einfügen Split a slide into two by inserting a verse splitter. Füge den Verstyp ein. SongsPlugin.ExportWizardForm Song Export Wizard Lied Exportassistent Select Songs Lieder auswählen Check the songs you want to export. Wählen Sie die Lieder aus, die Sie exportieren wollen. Uncheck All Alle abwählen Check All Alle auswählen Select Directory Zielverzeichnis auswählen Directory: Verzeichnis: Exporting Exportiere Please wait while your songs are exported. Bitte warten Sie, während die Lieder exportiert werden. You need to add at least one Song to export. Sie müssen wenigstens ein Lied zum Exportieren auswählen. No Save Location specified Kein Zielverzeichnis angegeben Starting export... Beginne mit dem Export... You need to specify a directory. Sie müssen ein Verzeichnis angeben. Select Destination Folder Zielverzeichnis wählen Select the directory where you want the songs to be saved. Geben Sie das Zielverzeichnis an. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. Mit diesem Assistenten können Sie Ihre Lieder in das offene <strong>OpenLyrics</strong>-Format exportieren. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Ungültige Foilpresenter-Datei. Es wurden keine Verse gefunden. SongsPlugin.GeneralTab Enable search as you type Während dem Tippen suchen SongsPlugin.ImportWizardForm Select Document/Presentation Files Präsentationen/Textdokumente auswählen Song Import Wizard Lied Importassistent This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Dieser Assistent hilft Ihnen Liedtexte aus verschiedenen Formaten zu importieren. Klicken Sie auf »Weiter« um das Quellformat auszuwählen, aus dem Sie importieren möchten. Generic Document/Presentation Präsentation/Textdokument Add Files... Hinzufügen... Remove File(s) Entfernen Please wait while your songs are imported. Die Liedtexte werden importiert. Bitte warten. Words Of Worship Song Files »Words of Worship« Lieddateien Songs Of Fellowship Song Files Songs Of Fellowship Song Dateien SongBeamer Files SongBeamer Dateien SongShow Plus Song Files SongShow Plus Song Dateien Foilpresenter Song Files Foilpresenter Lied-Dateien Copy Kopieren Save to File In Datei speichern The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Songs of Fellowship importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Präsentation/Textdokument importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. OpenLyrics Files »OpenLyrics« Datei CCLI SongSelect Files CLI SongSelect Dateien EasySlides XML File EasySlides XML Datei EasyWorship Song Database EasyWorship Lieddatenbank DreamBeam Song Files DreamBeam Lied Dateien You need to specify a valid PowerSong 1.0 database folder. Bitte wählen sie einen gültigen PowerSong 1.0 Datenbank Ordner. ZionWorx (CSV) ZionWorx(CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Bitte konvertieren Sie zuerst die ZionWorx Datenbank in eine CSV Text Datei, wie beschrieben im <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. SundayPlus Song Files SundayPlus Lied Dateien This importer has been disabled. Dieser Import Typ wurde deaktiviert. MediaShout Database Media Shout Datenbestand The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Der Import von MediaShout Datensätzen wird nur unter Windows unterstützt. Er wurde aufgrund fehlender Python Module deaktiviert. Wenn Sie diese Dateien importieren wollen, müssen sie das "pyodbc" Modul installieren. SongPro Text Files SongPro Text Dateien SongPro (Export File) SongPro (Export Datei) In SongPro, export your songs using the File -> Export menu Um in SongPro Dateien zu exportieren, nutzen Sie dort das Menü "Datei -> Export" EasyWorship Service File EasyWorship-Ablaufplan WorshipCenter Pro Song Files WorshipCenter Pro-Lieddateien The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Der WorshipCenter Pro-Importer wird nur unter Windows standardmäßig unterstützt. Er wurde wegen einem fehlenden Python-Modul deaktiviert. Wenn Sie diesen Importer benutzen möchten, installieren Sie das „pyodbc“-Modul. PowerPraise Song Files PowerPraise Lieddateien PresentationManager Song Files PresentationManager Lieddateien ProPresenter 4 Song Files ProPresenter 4 Lied Dateien Worship Assistant Files Worship Assistant-Dateien Worship Assistant (CSV) Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. Exportiere die Datenbank in WorshipAssistant als CSV-Datei. OpenLyrics or OpenLP 2 Exported Song OpenLyrics oder OpenLP 2 exportierte Lieder OpenLP 2 Databases OpenLP 2 Datenbanken LyriX Files LyriX-Dateien LyriX (Exported TXT-files) LyriX (Exportierte TXT-Dateien) VideoPsalm Files VideoPsalm-Dateien VideoPsalm VideoPsalm The VideoPsalm songbooks are normally located in %s Die VideoPsalm-Liederbücher befinden sich normalerweise in %s SongsPlugin.LyrixImport Error: %s Fehler: %s SongsPlugin.MediaFilesForm Select Media File(s) Wähle Audio-/Videodatei(en) Select one or more audio files from the list below, and click OK to import them into this song. Wähle eine oder mehrere Audio Dateien von der folgenden Liste und klicke >>OK<<, um sie in dieses Lied zu importieren. SongsPlugin.MediaItem Titles Titel Lyrics Liedtext CCLI License: CCLI-Lizenz: Entire Song Ganzes Lied Maintain the lists of authors, topics and books. Autoren, Themen und Bücher verwalten. copy For song cloning Kopie Search Titles... Suche Titel... Search Entire Song... Suche im ganzem Lied... Search Lyrics... Suche Liedtext... Search Authors... Suche Autoren... Are you sure you want to delete the "%d" selected song(s)? Sollen die markierten %d Lieder wirklich gelöscht werden? Search Songbooks... Suche Liederbücher... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Der MediaShout Datensatz kann nicht geöffnet werden. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. Keine gültige OpenLP 2 Liederdatenbank SongsPlugin.OpenLyricsExport Exporting "%s"... Exportiere »%s«... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. Ungültige OpenSong-Datei. Der song-Tag ist nicht vorhanden. SongsPlugin.PowerSongImport No songs to import. Keine Lieder zu importieren. Verses not found. Missing "PART" header. Es wurden keine Verse gefunden. "PART" Kopfzeile fehlt. No %s files found. Keine %s Dateien gefunden. Invalid %s file. Unexpected byte value. Ungültige %s Datei. Unerwarteter Inhalt. Invalid %s file. Missing "TITLE" header. Ungültige »%s« Datei. Die "TITLE" Eigenschaft fehlt. Invalid %s file. Missing "COPYRIGHTLINE" header. Ungültige »%s« Datei. Die "COPYRIGHTLINE" Eigenschaft fehlt. SongsPlugin.SongBookForm &Name: &Name: &Publisher: &Verlag: You need to type in a name for the book. Ein Buchname muss angegeben werden. Songbook Maintenance Liederbuchverwaltung SongsPlugin.SongExportForm Your song export failed. Der Liedexport schlug fehl. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export beendet. Diese Dateien können mit dem <strong>OpenLyrics</strong> Importer wieder importiert werden. Your song export failed because this error occurred: %s Der Liedexport schlug wegen des folgenden Fehlers fehl: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: Die folgenden Lieder konnten nicht importiert werden: Cannot access OpenOffice or LibreOffice Kann OpenOffice.org oder LibreOffice nicht öffnen Unable to open file Konnte Datei nicht öffnen File not found Datei nicht gefunden SongsPlugin.SongMaintenanceForm Could not add your author. Der Autor konnte nicht hinzugefügt werden. This author already exists. Der Autor existiert bereits in der Datenbank. Could not add your topic. Das Thema konnte nicht hinzugefügt werden. This topic already exists. Das Thema existiert bereits in der Datenbank. Could not add your book. Das Liederbuch konnte nicht hinzugefügt werden. This book already exists. Das Liederbuch existiert bereits in der Datenbank. Could not save your changes. Die Änderungen konnten nicht gespeichert werden. Could not save your modified author, because the author already exists. Der geänderte Autor konnte nicht gespeichert werden, da es bereits in der Datenbank existiert. Could not save your modified topic, because it already exists. Das geänderte Thema konnte nicht gespeichert werden, da es bereits in der Datenbank existiert. Delete Author Autor löschen Are you sure you want to delete the selected author? Soll der ausgewählte Autor wirklich gelöscht werden? This author cannot be deleted, they are currently assigned to at least one song. Der Autor konnte nicht gelöscht werden, da er mindestens einem Lied zugeordnet ist. Delete Topic Thema löschen Are you sure you want to delete the selected topic? Soll das ausgewählte Thema wirklich gelöscht werden? This topic cannot be deleted, it is currently assigned to at least one song. Das Thema konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist. Delete Book Liederbuch löschen Are you sure you want to delete the selected book? Soll das ausgewählte Liederbuch wirklich gelöscht werden? This book cannot be deleted, it is currently assigned to at least one song. Das Liederbuch konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist. The author %s already exists. Would you like to make songs with author %s use the existing author %s? Der Autor »%s« existiert bereits. Sollen Lieder von »%s« »%s« als Autor setzen? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Das Thema »%s« existiert bereits. Sollen Lieder zum Thema »%s« das Thema »%s« verwenden? The book %s already exists. Would you like to make songs with book %s use the existing book %s? Das Liederbuch »%s« existiert bereits. Sollen Lieder aus »%s« dem Buch »%s« zugeordnet werden? SongsPlugin.SongSelectForm CCLI SongSelect Importer CCLI SongSelect Importassistent <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. <strong>Achtung:</strong>Um Lieder vom CCLI SongSelect zu importieren wird eine Internet Verbindung benötigt. Username: Benutzername: Password: Passwort: Save username and password Benutzername und Passwort speichern Login Anmeldung Search Text: Suchtext: Search Suche Found %s song(s) %s Lied(er) gefunden Logout Abmeldung View Ansicht Title: Titel: Author(s): Autor(en) Copyright: Copyright: CCLI Number: CCLI Nummer: Lyrics: Text: Back Zurück Import Import More than 1000 results Mehr als 1000 Ergebnisse Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Die Suche hat mehr als 1000 Ergebnisse ergeben und wurde gestoppt. Bitte die Suche verändern um bessere Ergebnisse zu bekommen. Logging out... Abmeldung ... Save Username and Password Benutzername und Passwort speichern WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. WARNUNG: Die Speicherung von Benutzername und Passwort ist UNSICHER, da das Passwort im Klartext abgespeichert wird. Bitte "JA" wählen um das Passwort trotzdem zu speichern oder "NEIN" um nicht zu speichern. Error Logging In Fehler beim Anmelden There was a problem logging in, perhaps your username or password is incorrect? Fehler beim Anmelden, bitte überprüfen Sie Ihren Benutzernamen und Ihr Passwort. Song Imported Lied importiert Incomplete song Lied unvollständig This song is missing some information, like the lyrics, and cannot be imported. Die Informationen zu diesem Lied, beispielsweise der Liedtext, sind unvollständig und können deshalb nicht importiert werden. Your song has been imported, would you like to import more songs? Das Lied wurde importiert. Sollen weitere Lieder importiert werden? Stop Abbrechen SongsPlugin.SongsTab Songs Mode Lieder-Einstellungen Display verses on live tool bar Versauswahl in der Live-Symbolleiste zeigen Update service from song edit Lieder im Ablauf nach Bearbeitung aktualisieren Import missing songs from service files Neue Lieder aus Ablauf in die Datenbank importieren Display songbook in footer Liederbuch in der Fußzeile anzeigen Display "%s" symbol before copyright info Das „%s“-Symbol vor den Copyright-Informationen anzeigen. SongsPlugin.TopicsForm Topic Maintenance Themenverwaltung Topic name: Thema: You need to type in a topic name. Ein Thema muss angegeben werden. SongsPlugin.VerseType Verse Strophe Chorus Refrain Bridge Bridge Pre-Chorus Überleitung Intro Intro Ending Ende Other Anderes SongsPlugin.VideoPsalmImport Error: %s Fehler: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Ungültige Words of Worship-Datei. Der „Wow-File\nSong-Words“-Header fehlt. Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock Ungültige Words of Worship-Datei. Der "CSongDoc::CBlock"-Text wurde nicht gefunden. SongsPlugin.WorshipAssistantImport Error reading CSV file. Fehler beim Lesen der CSV Datei. Line %d: %s Zeile %d: %s Decoding error: %s Dekodier Fehler: %s File not valid WorshipAssistant CSV format. Die Datei ist kein gültiges WorshipAssistant CSV Format. Record %d Datensatz %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. Konnte nicht mit der WorshipCenter Pro-Datenbank verbinden. SongsPlugin.ZionWorxImport Error reading CSV file. Fehler beim Lesen der CSV Datei. File not valid ZionWorx CSV format. Die Datei hat kein gültiges ZionWorx CSV Format. Line %d: %s Zeile %d: %s Decoding error: %s Dekodier Fehler: %s Record %d Datensatz %d Wizard Wizard Assistent This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Dieser Assistent hilft Ihnen, doppelte Lieder aus der Lieddatenbank zu entfernen. Sie können jedes potentielle Duplikat überprüfen bevor es gelöscht wird. Es werden also keine Lieder ohne Ihre Zustimmung gelöscht. Searching for duplicate songs. Suche nach Duplikaten. Please wait while your songs database is analyzed. Bitte warten Sie, während Ihre Lieddatenbank analysiert wird. Here you can decide which songs to remove and which ones to keep. Hier können Sie entscheiden, welche Lieder behalten und welche gelöscht werden sollen. Review duplicate songs (%s/%s) Duplikate überprüfen (%s/%s) Information Information No duplicate songs have been found in the database. Es wurden keine Duplikate gefunden. OpenLP-2.4/resources/i18n/pt_BR.ts0000644000175000017500000154257112657640340015737 0ustar raoulraoul AlertsPlugin &Alert &Alerta Show an alert message. Exibir uma mensagem de alerta. Alert name singular Alerta Alerts name plural Alertas Alerts container title Alertas <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. <strong>Plugin de Alertas</strong><br />O Plugin de Alerta controla a exibição de alertas na tela de projeção. AlertsPlugin.AlertForm Alert Message Mensagem de Alerta Alert &text: Alerta &text: &New &Novo &Save &Salvar Displ&ay &Exibir Display && Cl&ose Exibir && &Fechar New Alert Novo Alerta &Parameter: &Parâmetro: No Parameter Found Nenhum Parâmetro Encontrado You have not entered a parameter to be replaced. Do you want to continue anyway? Você não informou um parâmetro para ser substituído. Deseja continuar mesmo assim? No Placeholder Found Nenhum Marcador de Posição Encontrado The alert text does not contain '<>'. Do you want to continue anyway? O texto de alerta não contém '<>'. Deseja continuar mesmo assim? You haven't specified any text for your alert. Please type in some text before clicking New. Você não especificou nenhum texto para a alerta. Por favor, digite algum texto antes de clicar em Novo. AlertsPlugin.AlertsManager Alert message created and displayed. Mensagem de alerta criada e exibida. AlertsPlugin.AlertsTab Font Fonte Font name: Nome da fonte: Font color: Cor da fonte: Background color: Cor do Plano de Fundo: Font size: Tamanho da fonte: Alert timeout: Tempo limite para o Alerta: BiblesPlugin &Bible &Bíblia Bible name singular Bíblia Bibles name plural Bíblias Bibles container title Bíblias No Book Found Nenhum Livro Encontrado No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Nenhum livro correspondente foi encontrado nesta Bíblia. Verifique se você digitou o nome do livro corretamente. Import a Bible. Importar uma Bíblia. Add a new Bible. Adicionar uma Bíblia nova. Edit the selected Bible. Editar a Bíblia selecionada. Delete the selected Bible. Excluir a Bíblia selecionada. Preview the selected Bible. Pré-visualizar a Bíblia selecionada. Send the selected Bible live. Projetar a Bíblia selecionada. Add the selected Bible to the service. Adicionar a Bíblia selecionada ao culto. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Plugin de Bíblia</strong><br />O plugin de Bíblia permite exibir versículos bíblicos de diferentes origens durante o culto. &Upgrade older Bibles &Atualizar Bíblias antigas Upgrade the Bible databases to the latest format. Atualizar o banco de dados de Bíblias para o formato atual. Genesis Gênesis Exodus Êxodo Leviticus Levítico Numbers Números Deuteronomy Deuteronômio Joshua Josué Judges Juízes Ruth Rute 1 Samuel 1 Samuel 2 Samuel 2 Samuel 1 Kings 1 Reis 2 Kings 2 Reis 1 Chronicles 1 Crônicas 2 Chronicles 2 Crônicas Ezra Esdras Nehemiah Neemias Esther Ester Job Jó Psalms Salmos Proverbs Provérbios Ecclesiastes Eclesiastes Song of Solomon Cântico dos Cânticos Isaiah Isaías Jeremiah Jeremias Lamentations Lamentações de Jeremias Ezekiel Ezequiel Daniel Daniel Hosea Oseias Joel Joel Amos Amós Obadiah Obadias Jonah Jonas Micah Miqueias Nahum Naum Habakkuk Habacuque Zephaniah Sofonias Haggai Ageu Zechariah Zacarias Malachi Malaquias Matthew Mateus Mark Marcos Luke Lucas John João Acts Atos dos Apóstolos Romans Romanos 1 Corinthians 1 Coríntios 2 Corinthians 2 Coríntios Galatians Gálatas Ephesians Efésios Philippians Filipenses Colossians Colossenses 1 Thessalonians 1 Tessalonicenses 2 Thessalonians 2 Tessalonicenses 1 Timothy 1 Timóteo 2 Timothy 2 Timóeo Titus Tito Philemon Filemon Hebrews Hebreus James Tiago 1 Peter 1 Pedro 2 Peter 2 Pedro 1 John 1 João 2 John 2 João 3 John 3 João Jude Judas Revelation Apócalipse Judith Judite Wisdom Sabedoria Tobit Tobias Sirach Eclesiástico Baruch Baruque 1 Maccabees 1 Macabeus 2 Maccabees 2 Macabeus 3 Maccabees 3 Macabeus 4 Maccabees 4 Macabeus Rest of Daniel Acréscimos de Daniel Rest of Esther Adições a Ester Prayer of Manasses Oração de Manassés Letter of Jeremiah Carta de Jeremias Prayer of Azariah Oração de Azarias Susanna Suzana Bel Bel 1 Esdras 1 Esdras 2 Esdras 2 Esdras : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 : v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 v V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 V verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 verso verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 versos - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - to range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 até , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 , and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 e end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse fim BiblesPlugin.BibleEditForm You need to specify a version name for your Bible. É necessário especificar um nome para esta versão da Bíblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. É necessário informar os Direitos Autorais para esta Bíblia. Traduções em domínio público precisam ser marcadas como tal. Bible Exists A Bíblia existe This Bible already exists. Please import a different Bible or first delete the existing one. Esta Bíblia já existe. Por favor importa outra Bíblia ou remova a já existente. You need to specify a book name for "%s". É necessário especificar um nome de livro para "%s". The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. O nome de livro "%s" não é válido. Números só podem ser usados na início e precisam ser seguidos de um ou mais caracteres não-numéricos. Duplicate Book Name Nome de Livro Duplicado The Book Name "%s" has been entered more than once. O nome de Livro "%s" foi informado mais de uma vez. BiblesPlugin.BibleManager Scripture Reference Error Erro de Referência na Escritura Web Bible cannot be used Não é possível usar a Bíblia Online Text Search is not available with Web Bibles. A Pesquisa de Texto não está disponível para Bíblias Online. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Você não digitou uma palavra-chave de pesquisa. Você pode separar diferentes palavras-chave com um espaço para procurar por todas as palavras-chave e pode separá-las com uma vírgula para pesquisar por alguma delas. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Não há Bíblias instaladas atualmente. Por favor, utilize o Assistente de Importação para instalar uma ou mais Bíblias. No Bibles Available Nenhuma Bíblia Disponível Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter Book Chapter%(range)sChapter Book Chapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. Sua referência de escritura não é suportada pelo OpenLP ou está inválida. Por favor, certifique que a sua referência está conforme um dos seguintes padrões ou consulte o manual: Livro Capítulo Livro Capítulo%(range)sCapítulo Livro Capítulo%(verse)sVerso%(range)sVerso Livro Capítulo%(verse)sVerso%(range)sVerso%(list)sVerso%(range)sVerso Livro Capítulo%(verse)sVerso%(range)sVerso%(list)sCapítulo%(verse)sVerso%(range)sVerso Livro Capítulo%(verse)sVerso%(range)sCapítulo%(verse)sVerso BiblesPlugin.BiblesTab Verse Display Exibição do Versículo Only show new chapter numbers Somente mostrar números de capítulos novos Bible theme: Tema da Bíblia: No Brackets Sem Parênteses ( And ) ( E ) { And } { E } [ And ] [ E ] Note: Changes do not affect verses already in the service. Observação: Mudanças não afetam os versículos que já estão no culto. Display second Bible verses Exibir versículos da Bíblia secundária Custom Scripture References Referências Personalizadas das Escrituras Verse Separator: Separador de Versos Range Separator: Separador de Faixas: List Separator: Separador de Listas: End Mark: Marcação de Fim: Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. Múltiplos separadores de versos podem ser definidos. Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. English Portuguese (Brazil) Default Bible Language Idioma Padrão de Bíblia Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: Bible Language Idioma da Bíblia Application Language Idioma da Aplicação Show verse numbers Mostrar os números do verso BiblesPlugin.BookNameDialog Select Book Name Selecione o Nome do Livro Current name: Nome atual: Corresponding name: Nome correspondente: Show Books From Mostrar Livros do Old Testament Antigo Testamento New Testament Novo Testamento Apocrypha Apócrifos The following book name cannot be matched up internally. Please select the corresponding name from the list. Não foi encontrado um nome interno que corresponde ao seguinte nome de livro. Por favor escolha o nome correspondente da lista. BiblesPlugin.BookNameForm You need to select a book. Você deve selecionar um livro. BiblesPlugin.CSVBible Importing books... %s Importando livros... %s Importing verses... done. Importando versículos... concluído. BiblesPlugin.EditBibleForm Bible Editor Editor de Bíblia License Details Detalhes da Licença Version name: Nome da versão: Copyright: Direitos Autorais: Permissions: Permissões: Default Bible Language Idioma Padrão de Bíblia Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: Global Settings Configurações Globais Bible Language Idioma da Bíblia Application Language Idioma da Aplicação English Portuguese (Brazil) This is a Web Download Bible. It is not possible to customize the Book Names. Esta Bíblia foi baixada da Internet. Não é possível modificar os nomes dos Livros. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Para usar os nomes de livros personalizados, "Idioma da Bíblia" deve estar selecionado na aba Meta Dados ou, se estiver selecionado "Ajustes Globais", na página Bíblia no Configurar OpenLP. BiblesPlugin.HTTPBible Registering Bible and loading books... Registrando Bíblia e carregando livros... Registering Language... Registrando Idioma... Importing %s... Importing <book name>... Importando %s... Download Error Erro ao Baixar There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ocorreu um problema ao baixar os versículos selecionados. Verifique sua conexão com a Internet, e se este erro continuar ocorrendo, por favor considere relatar um bug. Parse Error Erro de Interpretação There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ocorreu um problema ao extrair os versículos selecionados. Se este erro continuar ocorrendo, por favor considere relatar um bug. BiblesPlugin.ImportWizardForm Bible Import Wizard Assistente de Importação de Bíblia This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão avançar abaixo para começar o processo selecionando o formato a ser importado. Web Download Download da Internet Location: Localização: Crosswalk Crosswalk BibleGateway BibleGateway Bible: Bíblia: Download Options Opções de Transferência Server: Servidor: Username: Usuário: Password: Senha: Proxy Server (Optional) Servidor Proxy (Opcional) License Details Detalhes da Licença Set up the Bible's license details. Configurar detalhes de licença da Bíblia. Version name: Nome da versão: Copyright: Direitos Autorais: Please wait while your Bible is imported. Por favor aguarde enquanto a sua Bíblia é importada. You need to specify a file with books of the Bible to use in the import. Você deve especificar um arquivo com livros da Bíblia para usar na importação. You need to specify a file of Bible verses to import. Você deve especificar um arquivo de versículos da Bíblia para importar. You need to specify a version name for your Bible. É necessário especificar um nome para esta versão da Bíblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. É necessário informar os Direitos Autorais para esta Bíblia. Traduções em domínio público precisam ser marcadas como tal. Bible Exists A Bíblia existe This Bible already exists. Please import a different Bible or first delete the existing one. Esta Bíblia já existe. Por favor importa outra Bíblia ou remova a já existente. Your Bible import failed. A sua Importação de Bíblia falhou. CSV File Arquivo CSV Bibleserver Bibleserver Permissions: Permissões: Bible file: Arquivo de Bíblia: Books file: Arquivo de Livros: Verses file: Arquivo de Versículos: Registering Bible... Registrando Bíblia... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrado Bíblia. Por favor, note que os versos será baixado pela internet, portanto, é necessária uma conexão. Click to download bible list Clique para baixar lista das bíblias Download bible list Baixar lista das bíblias Error during download Erro durante o download An error occurred while downloading the list of bibles from %s. Ocorreu um erro ao fazer o download da lista de bíblias de% s. BiblesPlugin.LanguageDialog Select Language Selecione Idioma OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP não pôde determinar o idioma desta tradução da Bíblia. Por favor, selecione o idioma na lista abaixo. Language: Idioma: BiblesPlugin.LanguageForm You need to choose a language. Você deve escolher um idioma. BiblesPlugin.MediaItem Quick Rápido Find: Localizar: Book: Hinário: Chapter: Capítulo: Verse: Versículo: From: De: To: Até: Text Search Pesquisar Texto Second: Segunda Versão: Scripture Reference Referência da Escritura Toggle to keep or clear the previous results. Alternar entre manter ou limpar resultados anteriores. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Você não pode combinar os resultados de buscas de versículo Bíblicos simples e duplo. Você deseja deletar os resultados da sua busca e comecar uma nova? Bible not fully loaded. Bíblia não carregada completamente. Information Informações The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A Bíblia secundária não contém todos os versículos que estão na Bíblia principal. Somente versículos encontrados em ambas as Bíblias serão exibidas. %d versículos não foram inclusos nos resultados. Search Scripture Reference... Pesquisar referência... Search Text... Pesquisar texto... Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Você tem certeza que deseja apagar completamente a Bíblia "%s" do OpenLP? Para usá-la de novo, você precisará fazer a importação novamente. Advanced Avançado BiblesPlugin.OpenSongImport Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Foi fornecido um tipo de Bíblia incorreto. Os arquivos de Bíblia do OpenSong podem estar comprimidos. Você precisa descomprimí-lo antes de importá-lo. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. Foi fornecido um tipo de Bíblia incorreto. Isto parece ser um XML da Bíblia Zefania, por favor use a opção de importação no formato Zefania. BiblesPlugin.Opensong Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... BiblesPlugin.OsisImport Removing unused tags (this may take a few minutes)... Removendo tags não utilizadas (isso pode levar alguns minutos) ... Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... BiblesPlugin.UpgradeWizardForm Select a Backup Directory Selecione um Diretório para Cópia de Segurança Bible Upgrade Wizard Assistente de Atualização de Bíblias This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Este assistente irá ajudá-lo a atualizar suas Bíblias existentes a partir de uma versão anterior do OpenLP 2. Clique no botão avançar abaixo para começar o processo de atualização. Select Backup Directory Selecione o Diretório para Cópia de Segurança Please select a backup directory for your Bibles Por favor, selecione um diretório para a cópia de segurança das suas Bíblias Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. As versões anteriores do OpenLP 2.0 não conseguem usar as Bíblias atualizadas. Isto irá criar uma cópia de segurança das suas Bíblias atuais para que possa copiar os arquivos de volta para o diretório de dados do OpenLP caso seja necessário voltar a uma versão anterior do OpenLP. Instruções sobre como recuperar os arquivos podem ser encontradas no nosso <a href="http://wiki.openlp.org/faq">Perguntas Frequentes</a>. Please select a backup location for your Bibles. Por favor, selecione o local da cópia de segurança das suas Bíblias. Backup Directory: Diretório de Cópia de Segurança: There is no need to backup my Bibles Não é necessário fazer uma cópia de segurança das minhas Bíblias Select Bibles Selecione Bíblias Please select the Bibles to upgrade Por favor, selecione as Bíblias a atualizar Upgrading Atualizando Please wait while your Bibles are upgraded. Por favor, aguarde enquanto suas Bíblias são atualizadas. The backup was not successful. To backup your Bibles you need permission to write to the given directory. A cópia de segurança não teve êxito. Para fazer uma cópia de segurança das suas Bíblias é necessário permissão de escrita no diretório selecionado. Upgrading Bible %s of %s: "%s" Failed Atualizando Bíblia %s de %s: "%s" Falhou Upgrading Bible %s of %s: "%s" Upgrading ... Atualizando Bíblia %s de %s: "%s" Atualizando ... Download Error Erro ao Baixar To upgrade your Web Bibles an Internet connection is required. Para atualizar suas Bíblias Internet é necessária uma conexão com a internet. Upgrading Bible %s of %s: "%s" Upgrading %s ... Atualizando Bíblia %s de %s: "%s" Atualizando %s ... Upgrading Bible %s of %s: "%s" Complete Atualizando Bíblia %s de %s: "%s" Finalizado , %s failed . %s falhou Upgrading Bible(s): %s successful%s Atualizando Bíblia(s): %s com sucesso%s Upgrade failed. A atualização falhou. You need to specify a backup directory for your Bibles. Você precisa informar um diretório de backup para as suas Bíblias. Starting upgrade... Iniciando atualização... There are no Bibles that need to be upgraded. Não há Bíblias que necessitam ser atualizadas. Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Atualizando Bíblia(s): %(success)d com sucesso%(failed_text)s Por favor, observe que versículos das Bíblias da Internet serão transferidos sob demanda, então é necessária uma conexão com a internet. BiblesPlugin.ZefaniaImport Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. Incorreto tipo de arquivo Bíblia fornecido. O formato da Bíblia Zefania pode estar compactado. Você deve descompactá-los antes da importação. BiblesPlugin.Zefnia Importing %(bookname)s %(chapter)s... Importando %(bookname)s %(chapter)s... CustomPlugin Custom Slide name singular Slide Personalizado Custom Slides name plural Slides Personalizados Custom Slides container title Slides Personalizados Load a new custom slide. Carregar um novo slide personalizado. Import a custom slide. Importar um slide personalizado. Add a new custom slide. Adicionar um novo slide personalizado. Edit the selected custom slide. Editar o slide personalizado selecionado. Delete the selected custom slide. Excluir o slide personalizado selecionado. Preview the selected custom slide. Pré-visualizar o slide personalizado atual. Send the selected custom slide live. Enviar o slide personalizado selecionado para a projeção. Add the selected custom slide to the service. Adicionar o slide personalizado selecionado ao culto. <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Plugin de Slide Personalizado </strong><br />O plugin de slide personalizado permite criar slides de texto personalizados que são apresentados da mesma maneira que as músicas. Este plugin permite mais liberdade do que o plugin de músicas. CustomPlugin.CustomTab Custom Display Exibir Personalizado Display footer Exibir rodapé Import missing custom slides from service files Importar slides personalizados de arquivos de culto CustomPlugin.EditCustomForm Edit Custom Slides Editar Slides Personalizados &Title: &Título: Add a new slide at bottom. Adicionar um novo slide no final. Edit the selected slide. Editar o slide selecionado. Edit all the slides at once. Editar todos os slides de uma vez. Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. The&me: Te&ma: &Credits: &Créditos: You need to type in a title. Você deve digitar um título. Ed&it All &Editar Todos Insert Slide Inserir Slide You need to add at least one slide. Você precisa adicionar pelo menos um slide. CustomPlugin.EditVerseForm Edit Slide Editar Slide CustomPlugin.MediaItem Are you sure you want to delete the "%d" selected custom slide(s)? Tem certeza que deseja excluir o(s) "%d" slide(s) personalizado(s) selecionado(s)? ImagePlugin <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Plugin de Imagens</strong><br />O plugin de imagens permite a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a possibilidade de agrupar várias imagens no culto, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "repetição temporizada" do OpenLP para criar uma apresentação de slides que é executada automaticamente. Além disso, imagens do plugin podem ser usadas em sobreposição ao plano de fundo do tema atual, exibindo itens baseados em texto como músicas com a imagem selecionada ao fundo ao invés do plano de fundo fornecido pelo tema. Image name singular Imagem Images name plural Imagens Images container title Imagens Load a new image. Carregar uma nova imagem. Add a new image. Adicionar uma nova imagem. Edit the selected image. Editar a imagem selecionada. Delete the selected image. Excluir a imagem selecionada. Preview the selected image. Pré-visualizar a imagem selecionada. Send the selected image live. Enviar a imagem selecionada para a projeção. Add the selected image to the service. Adicionar a imagem selecionada ao culto. ImagePlugin.AddGroupForm Add group Adicionar grupo Parent group: Grupo principal: Group name: Nome do grupo: You need to type in a group name. Você precisa digitar um nome para o grupo. Could not add the new group. Não foi possivel adicionar o novo grupo. This group already exists. Este grupo já existe ImagePlugin.ChooseGroupForm Select Image Group Selecione a Imagem do Grupo Add images to group: Adicionar imagens para o grupo: No group Nenhum grupo: Existing group Grupo existente New group Novo grupo ImagePlugin.ExceptionDialog Select Attachment Selecionar Anexo ImagePlugin.MediaItem Select Image(s) Selecionar Imagem(ns) You must select an image to replace the background with. Você precisa selecionar uma imagem para definir como plano de fundo. Missing Image(s) Imagem(ns) não encontrada(s) The following image(s) no longer exist: %s A(s) seguinte(s) imagem(ns) não existe(m) mais: %s The following image(s) no longer exist: %s Do you want to add the other images anyway? A(s) seguinte(s) imagem(ns) não existe(m) mais: %s Deseja continuar adicionando as outras imagens mesmo assim? There was a problem replacing your background, the image file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo, o arquivo de imagem "%s" não existe. There was no display item to amend. Não há nenhum item de exibição para corrigir. -- Top-level group -- You must select an image or group to delete. Você deve selecionar uma imagens ou um grupo para deletar. Remove group Remover grupo Are you sure you want to remove "%s" and everything in it? Are you sure you want to remove "%s" and everything in it? ImagesPlugin.ImageTab Visible background for images with aspect ratio different to screen. Plano de fundo que será visto nas imagens que possuem proporção altura/largura diferente da tela. Media.player Audio Audio Video Vídeo VLC is an external player which supports a number of different formats. VLC é um reprodutor externo que suporta diferentes formatos. Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. Webkit é um reprodutor de mídia que é executado dentro de um navegador web. Este reprodutor permite colocar texto acima de um vídeo para ser renderizado. This media player uses your operating system to provide media capabilities. Este reprodutor de mídia utiliza seu sistema operacional para fornecer recursos de mídia. MediaPlugin <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Plugin de Mídia</strong><br />O plugin de mídia permite a reprodução de áudio e vídeo. Media name singular Mídia Media name plural Mídia Media container title Mídia Load new media. Carregar nova mídia. Add new media. Adicionar nova mídia. Edit the selected media. Editar a mídia selecionada. Delete the selected media. Excluir a mídia selecionada. Preview the selected media. Pré-visualizar a mídia selecionada. Send the selected media live. Enviar a mídia selecionada para a projeção. Add the selected media to the service. Adicionar a mídia selecionada ao culto. MediaPlugin.MediaClipSelector Select Media Clip Escolha um arquivo de mídia Source origem Media path: Local da mídia: Select drive from list Selecione o drive óptico da lista Load disc Aguarde carregando o disco... Track Details Detalhes da faixa Title: Título: Audio track: Faixa de áudio: Subtitle track: Faixa de legendas: HH:mm:ss.z HH:mm:ss.z Clip Range Faixa de clipe Start point: Ponto de início: Set start point Definir ponto de partida Jump to start point Ir para o ponto de início End point: Ponto final: Set end point Definir ponto final Jump to end point Ir para ponto final MediaPlugin.MediaClipSelectorForm No path was given Nenhum caminho foi informado Given path does not exists Caminho fornecido não existe An error happened during initialization of VLC player Ocorreu um erro durante a inicialização do player VLC VLC player failed playing the media VLC player não conseguiu reproduzir a mídia CD not loaded correctly CD não foi colocado corretamente The CD was not loaded correctly, please re-load and try again. O CD não foi colocado corretamente, por favor tente novamente. DVD not loaded correctly DVD não foi colocado corretamente The DVD was not loaded correctly, please re-load and try again. O DVD não foi carregado corretamente, por favor tente novamente. Set name of mediaclip Defina o nome da mídia Name of mediaclip: Nome de mídia: Enter a valid name or cancel Digite um nome válido ou clique em cancelar Invalid character caractere inválido The name of the mediaclip must not contain the character ":" O nome da mídia não pode conter o caractere ":" MediaPlugin.MediaItem Select Media Selecionar Mídia You must select a media file to delete. Você deve selecionar um arquivo de mídia para apagar. You must select a media file to replace the background with. Você precisa selecionar um arquivo de mídia para substituir o plano de fundo. There was a problem replacing your background, the media file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo. O arquivo de mídia "%s" não existe. Missing Media File Arquivo de Mídia não encontrado The file %s no longer exists. O arquivo %s não existe. Videos (%s);;Audio (%s);;%s (*) Vídeos (%s);;Ãudio (%s);;%s (*) There was no display item to amend. Não há nenhum item de exibição para corrigir. Unsupported File Arquivo não suportado Use Player: Usar Reprodutor: VLC player required VLC player necessário VLC player required for playback of optical devices VLC player necessário para a reprodução de dispositivos Load CD/DVD Carregando CD/DVD Load CD/DVD - only supported when VLC is installed and enabled Carregando CD / DVD - suportado apenas quando o VLC player está instalado e ativo The optical disc %s is no longer available. O disco óptico %s não está mais disponível. Mediaclip already saved Clipe de mídia salvo This mediaclip has already been saved Este clipe de mídia já foi salvo MediaPlugin.MediaTab Allow media player to be overridden Permitir que o reprodutor de mídia seja alterado Start Live items automatically Iniciar itens ao vivo automaticamente OPenLP.MainWindow &Projector Manager Gerenciador de projetor OpenLP Image Files Arquivos de Imagem Information Informações Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? O formato de Bíblia foi alterado. Você deve atualizar suas Bíblias existentes. O OpenLP deve atualizar agora? Backup Backup OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? OpenLP foi atualizado, deseja criar um backup das pasta de dados OpenLPs? Backup of the data folder failed! Backup da pasta de dados falhou! A backup of the data folder has been created at %s O backup da pasta de dados foi criado em% s Open Abrir OpenLP.AboutForm Credits Créditos License Licença build %s compilação %s 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; version 2 of the License. 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; version 2 of the License. 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 below for more details. Este programa é distribuido na esperança que será útil, mas SEM NENHUMA GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM DETERMINADO FIM. Veja abaixo para maiores detalhes. OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. OpenLP <version><revision> - Projeção de Letras Código Aberto O OpenLP é um software livre, de apresentações ou projeção de letras em igrejas, usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens, e até apresentações (se estiver instalado o Impress, PowerPoint ou visualizador PowerPoint) para louvor na igreja usando um computador e um projetor. Conheça mais sobre o OpenLP: http://openlp.org/ O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais softwares Cristãos gratuítos sendo escritos, por favor, considere contribuir usando o botão abaixo. Volunteer Contribuir Project Lead Líder do projeto Developers Desenvolvedores Contributors Colaboradores Packagers Empacotadores Testers Testadores Translators Tradutores Afrikaans (af) Afrikaans (af) Czech (cs) Czech (cs) Danish (da) Danish (da) German (de) German (de) Greek (el) Greek (el) English, United Kingdom (en_GB) English, United Kingdom (en_GB) English, South Africa (en_ZA) English, South Africa (en_ZA) Spanish (es) Spanish (es) Estonian (et) Estonian (et) Finnish (fi) Finnish (fi) French (fr) French (fr) Hungarian (hu) Hungarian (hu) Indonesian (id) Indonesian (id) Japanese (ja) Japanese (ja) Norwegian BokmÃ¥l (nb) Norwegian BokmÃ¥l (nb) Dutch (nl) Dutch (nl) Polish (pl) Polish (pl) Portuguese, Brazil (pt_BR) Português, Brasil (pt_BR) Russian (ru) Russian (ru) Swedish (sv) Swedish (sv) Tamil(Sri-Lanka) (ta_LK) Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) Chinese(China) (zh_CN) Documentation Documentação Built With Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Construído com Python: http://www.python.org/ Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ Final Credit "For God so loved the world that He gave His one and only Son, so that whoever believes in Him will not perish but inherit eternal life." -- John 3:16 And last but not least, final credit goes to God our Father, for sending His Son to die on the cross, setting us free from sin. We bring this software to you for free because He has set us free. Créditos finais "Porque Deus amou o mundo de tal maneira que deu o seu filho unigênito, para que todo aquele que nEle crê não pereça, mas tenha a vida eterna." -- João 3:16 E por último, o crédito final vai para Deus nosso Pai, por enviar Seu Filho para morrer na cruz, nos libertando do pecado. Nós trazemos este software gratuitamente porque Ele nos libertou. Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s Direitos autorais © 2004-2016 %s Porções com direitos autorais © 2004-2016 %s OpenLP.AdvancedTab UI Settings Configurações da Interface Number of recent files to display: Número de arquivos recentes a serem exibidos: Remember active media manager tab on startup Lembrar aba ativa do gerenciador de mídia ao iniciar Double-click to send items straight to live Clicar duas vezes para diretamente projetar itens Expand new service items on creation Expandir novos itens do culto ao serem criados Enable application exit confirmation Habilitar confirmação de saída do programa Mouse Cursor Ponteiro do Mouse Hide mouse cursor when over display window Ocultar o cursor do mouse quando estiver sobre a tela de projeção Default Image Imagem Padrão Background color: Cor do Plano de Fundo: Image file: Arquivo de Imagem: Open File Abrir Arquivo Advanced Avançado Preview items when clicked in Media Manager Pré-visualizar itens quando clicados no Gerenciador de Mídia Browse for an image file to display. Procurar um arquivo de imagem para exibir. Revert to the default OpenLP logo. Reverter ao logotipo padrão OpenLP. Default Service Name Nome Padrão de Culto Enable default service name Habilitar nome padrão de culto Date and Time: Data e Hora: Monday Segunda-feira Tuesday Terça-feira Wednesday Quarta-feira Friday Sexta-feira Saturday Sábado Sunday Domingo Now Agora Time when usual service starts. Hora em que o culto normal se inicia. Name: Nome: Consult the OpenLP manual for usage. Consulte o manual OpenLP para uso. Revert to the default service name "%s". Reverter para o nome padrão de culto "%s". Example: Exemplo: Bypass X11 Window Manager Desativar Gerenciador de Janelas X11 Syntax error. Erro de sintaxe. Data Location Local dos Dados Current path: Caminho atual: Custom path: Caminho personalizado: Browse for new data file location. Escolher um novo local para os arquivos de dados. Set the data location to the default. Restabelecer o local de dados para o padrão. Cancel Cancelar Cancel OpenLP data directory location change. Cancelar a mudança da localização dos dados do OpenLP. Copy data to new location. Copiar os dados para a nova localização. Copy the OpenLP data files to the new location. Copiar os arquivos de dados do OpenLP para a nova localização. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>AVISO:</strong> O novo diretório de dados já contém arquivos do OpenLP. Estes arquivos SERÃO sobrescritos durante uma cópia. Data Directory Error Erro no Diretório de Dados Select Data Directory Location Seleciona a Localização do Diretório de Dados Confirm Data Directory Change Confirmar Mudança do Diretório de Dados Reset Data Directory Restabelecer o Diretório de Dados Overwrite Existing Data Sobrescrever Dados Existentes OpenLP data directory was not found %s This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. O diretório de dados do OpenLP não foi encontrado %s Este diretório de dados foi previamente alterado do local padrão do OpenLP. Se o novo local estava em uma mídia removível, a mídia deve ser disponibilizada. Clique em "Não" para cancelar a carga do OpenLP permitindo que o problema seja corrigido. Clique em "Sim" para redifinir o diretório de dados para o local padrão. Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. Tem certeza que deseja alterar o local do diretório de dados do OpenLP para: %s O diretório de dados será alterado quando o OpenLP for encerrado. Thursday Quinta-feira Display Workarounds Soluções alternativas de exibição Use alternating row colours in lists Utilizar linhas de cores alternadas nas listas WARNING: The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? AVISO: O local selecionado% s parece conter arquivos de dados OpenLP. Você deseja substituir esses arquivos com os arquivos de dados atuais? Restart Required Necessário reiniciar This change will only take effect once OpenLP has been restarted. A alteração só terá efeito quando o OpenLP for reiniciado. Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. Tem certeza de que quer mudar a localização do diretório de dados do OpenLP para a localização padrão? Esta localização será usada depois que o OpenLP for fechado. OpenLP.ColorButton Click to select a color. Clique para selecionar uma cor. OpenLP.DB RGB RGB Video Vídeo Digital Digital Storage Armazenamento Network Rede RGB 1 RGB 1 RGB 2 RGB 2 RGB 3 RGB 3 RGB 4 RGB 4 RGB 5 RGB 5 RGB 6 RGB 6 RGB 7 RGB 7 RGB 8 RGB 8 RGB 9 RGB 9 Video 1 Vídeo 1 Video 2 Vídeo 2 Video 3 Vídeo 3 Video 4 Vídeo 4 Video 5 Vídeo 5 Video 6 Vídeo 6 Video 7 Vídeo 7 Video 8 Vídeo 8 Video 9 Vídeo 9 Digital 1 Digital 1 Digital 2 Digital 2 Digital 3 Digital 3 Digital 4 Digital 4 Digital 5 Digital 5 Digital 6 Digital 6 Digital 7 Digital 7 Digital 8 Digital 8 Digital 9 Digital 9 Storage 1 Armazenamento 1 Storage 2 Armazenamento 2 Storage 3 Armazenamento 3 Storage 4 Armazenamento 4 Storage 5 Armazenamento 5 Storage 6 Armazenamento 6 Storage 7 Armazenamento 7 Storage 8 Armazenamento 8 Storage 9 Armazenamento 9 Network 1 Rede 1 Network 2 Rede 2 Network 3 Rede 3 Network 4 Rede 4 Network 5 Rede 5 Network 6 Rede 6 Network 7 Rede 7 Network 8 Rede 8 Network 9 Rede 9 OpenLP.ExceptionDialog Error Occurred Ocorreu um Erro Send E-Mail Enviar E-Mail Save to File Salvar em Arquivo Attach File Anexar Arquivo Description characters to enter : %s Caracteres que podem ser digitadas na descrição: %s Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) Por favor, descreva o que você estava fazendo para causar este erro. Se possível, escreva em inglês. (Pelo menos 20 caracteres) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. Ops! O OpenLP encontrou um problema e não pôde recuperar-se. O texto na caixa abaixo contém informações que podem ser úteis para os desenvolvedores do OpenLP, então, por favor, envie um e-mail para bugs@openlp.org, junto com uma descrição detalhada daquilo que você estava fazendo quando o problema ocorreu. também anexe os arquivos que provocaram o problema. OpenLP.ExceptionForm Platform: %s Plataforma: %s Save Crash Report Salvar Relatório de Travamento Text files (*.txt *.log *.text) Arquivos de texto (*.txt *.log *.text) OpenLP.FileRenameForm File Rename Renomear arquivo New File Name: Novo nome de Arquivo: File Copy Copiar arquivo OpenLP.FirstTimeLanguageForm Select Translation Selecione Idioma Choose the translation you'd like to use in OpenLP. Escolha o idioma que você gostaria de utilizar no OpenLP. Translation: Idioma: OpenLP.FirstTimeWizard Songs Músicas First Time Wizard Assistente de Primeira Utilização Welcome to the First Time Wizard Bem vindo ao Assistente de Primeira Utilização Activate required Plugins Ativar os Plugins necessários Select the Plugins you wish to use. Selecione os Plugins que você deseja utilizar. Bible Bíblia Images Imagens Presentations Apresentações Media (Audio and Video) Mídia (Ãudio e Vídeo) Allow remote access Permitir acesso remoto Monitor Song Usage Monitorar Utilização das Músicas Allow Alerts Permitir Alertas Default Settings Configurações Padrões Downloading %s... Transferindo %s... Enabling selected plugins... Habilitando os plugins selecionados... No Internet Connection Conexão com a Internet Indisponível Unable to detect an Internet connection. Não foi possível detectar uma conexão com a Internet. Sample Songs Músicas de Exemplo Select and download public domain songs. Selecione e baixe músicas de domínio público. Sample Bibles Bíblias de Exemplo Select and download free Bibles. Selecione e baixe Bíblias gratuitas. Sample Themes Temas de Exemplo Select and download sample themes. Selecione e baixe temas de exemplo. Set up default settings to be used by OpenLP. Configure os ajustes padrões que serão utilizados pelo OpenLP. Default output display: Saída de projeção padrão: Select default theme: Selecione o tema padrão: Starting configuration process... Iniciando o processo de configuração... Setting Up And Downloading Configurando e Transferindo Please wait while OpenLP is set up and your data is downloaded. Por favor, aguarde enquanto o OpenLP é configurado e seus dados são transferidos. Setting Up Configurando Custom Slides Slides Personalizados Finish Fim No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Nenhuma conexão com a internet encontrada. O Assistente de Primeira Execução necessita de uma conexão para baixar letras de músicas, bíblias e temas. Para iniciar o Assistente de Primeira Execução novamente e baixar letras de músicas, bíblias e temas, verifique a sua conexão com a internet e siga estes passos para executar este assistente novamente: "Ferramentas/Iniciar o Assistente de Primeira Execução novamente" no OpenLP. Clique no botão finalizar para iniciar o OpenLP com as configurações iniciais. Download Error Erro ao Baixar There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. Houve um problema de conexão durante a transferência, as próximas transferências serão ignoradas. Tente executar o Assistente de Primeira Execução novamente mais tarde. Download complete. Click the %s button to return to OpenLP. Transferência finalizada. Clique no botão %s para retornar ao OpenLP. Download complete. Click the %s button to start OpenLP. Transferência finalizada. Clique no botão %s para iniciar o OpenLP. Click the %s button to return to OpenLP. Cloque no botão %s para retornar ao OpenLP. Click the %s button to start OpenLP. Clique o botão %s para iniciar o OpenLP. There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. Houve um problema de conexão durante a transferência, as próximas transferências serão ignoradas. Tente executar o Assistente de Primeira Execução novamente mais tarde. This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. Este assistente irá ajudá-lo na configuração do OpenLP para o uso inicial. Clique abaixo no botão %s para começar. To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), clique no botão %s. Downloading Resource Index Baixando Listagem de Recursos Please wait while the resource index is downloaded. Por favor, aguarde enquanto a Listagem de Recursos é baixada. Please wait while OpenLP downloads the resource index file... Por favor aguarde enquanto OpenLP baixa a Listagem de Recursos... Downloading and Configuring Baixando e Configurando Please wait while resources are downloaded and OpenLP is configured. Por favor, aguarde enquanto os recursos são baixados e o OpenLP é configurado. Network Error Erro na rede There was a network error attempting to connect to retrieve initial configuration information Houve um erro de rede tentar se conectar para recuperar informações de configuração inicial Cancel Cancelar Unable to download some files Não foi possível transferir alguns arquivos OpenLP.FormattingTagDialog Configure Formatting Tags Configurar Etiquetas de Formatação Description Descrição Tag Tag Start HTML Início do HTML End HTML Fim do HTML Default Formatting Formatação padrão Custom Formatting Formatação personalizada OpenLP.FormattingTagForm <HTML here> <HTML aqui> Validation Error Erro de Validação Description is missing Descrição incompleta Tag is missing Tag não existente Tag %s already defined. Tag %s já está definida. Description %s already defined. Descrição %s já definida. Start tag %s is not valid HTML Tag inicial %s não é um HTML válido End tag %(end)s does not match end tag for start tag %(start)s A tag final %(end)s não corresponde com a tag final da tag %(start)s OpenLP.FormattingTags Red Vermelho Black Preto Blue Azul Yellow Amarelo Green Verde Pink Rosa Orange Laranja Purple Roxo White Branco Superscript Sobrescrito Subscript Subscrito Paragraph Parágrafo Bold Negrito Italics Itálico Underline Sublinhado Break Quebra OpenLP.GeneralTab General Geral Monitors Monitores Select monitor for output display: Selecione o monitor para exibição: Display if a single screen Exibir no caso de uma única tela Application Startup Inicialização do Aplicativo Show blank screen warning Exibir alerta de tela em branco Automatically open the last service Abrir automaticamente o último culto Show the splash screen Exibir a tela de abertura Application Settings Configurações do Aplicativo Prompt to save before starting a new service Perguntar se salva antes de iniciar um novo culto Automatically preview next item in service Pré-visualizar automaticamente o item seguinte do culto sec seg CCLI Details Detalhes de CCLI SongSelect username: Usuário SongSelect: SongSelect password: Senha SongSelect: X X Y Y Height Altura Width Largura Check for updates to OpenLP Procurar por atualizações do OpenLP Unblank display when adding new live item Ativar projeção ao adicionar um item novo Timed slide interval: Intervalo temporizado de slide: Background Audio Som de Fundo Start background audio paused Iniciar áudio de fundo em pausa Service Item Slide Limits Limites de Slide de Itens de Culto Override display position: Alterar posição de exibição: Repeat track list Repetir lista de faixas Behavior of next/previous on the last/first slide: Comportamento do Próximo/Anterior no primeiro e últimos slides: &Remain on Slide &Permanecer no Slide &Wrap around Quebrar linhas &Move to next/previous service item &Mover para o próximo/anterior item do culto OpenLP.LanguageManager Language Idioma Please restart OpenLP to use your new language setting. Por favor reinicie o OpenLP para usar a nova configuração de idioma. OpenLP.MainDisplay OpenLP Display Saída do OpenLP OpenLP.MainWindow &File &Arquivo &Import &Importar &Export &Exportar &View &Exibir M&ode M&odo &Tools &Ferramentas &Settings &Configurações &Language &Idioma &Help Aj&uda Service Manager Gerenciador de Culto Theme Manager Gerenciador de Temas Open an existing service. Abrir um culto existente. Save the current service to disk. Salvar o culto atual no disco. Save Service As Salvar Culto Como Save the current service under a new name. Salvar o culto atual com um novo nome. E&xit S&air Quit OpenLP Fechar o OpenLP &Theme &Tema &Configure OpenLP... &Configurar o OpenLP... &Media Manager &Gerenciador de Mídia Toggle Media Manager Alternar Gerenciador de Mídia Toggle the visibility of the media manager. Alternar a visibilidade do gerenciador de mídia. &Theme Manager Gerenciador de &Temas Toggle Theme Manager Alternar para Gerenciamento de Temas Toggle the visibility of the theme manager. Alternar a visibilidade do gerenciador de tema. &Service Manager Gerenciador de &Culto Toggle Service Manager Alternar o Gerenciador de Culto Toggle the visibility of the service manager. Alternar visibilidade do gerenciador de culto. &Preview Panel &Painel de Pré-Visualização Toggle Preview Panel Alternar o Painel de Pré-Visualização Toggle the visibility of the preview panel. Alternar a visibilidade do painel de pré-visualização. &Live Panel &Painel de Projeção Toggle Live Panel Alternar Painel da Projeção Toggle the visibility of the live panel. Alternar a visibilidade do painel de projeção. List the Plugins Listar os Plugins &User Guide &Guia do Usuário &About &Sobre More information about OpenLP Mais informações sobre o OpenLP &Online Help &Ajuda Online &Web Site &Web Site Use the system language, if available. Usar o idioma do sistema, caso disponível. Set the interface language to %s Definir o idioma da interface como %s Add &Tool... Adicionar &Ferramenta... Add an application to the list of tools. Adicionar um aplicativo à lista de ferramentas. &Default &Padrão Set the view mode back to the default. Reverter o modo de visualização ao padrão. &Setup &Configuração Set the view mode to Setup. Configurar o modo de visualização para Configuração. &Live &Ao Vivo Set the view mode to Live. Configurar o modo de visualização como Ao Vivo. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. A versão %s do OpenLP está disponível para download (você está atualmente usando a versão %s). Voce pode baixar a última versão em http://openlp.org/. OpenLP Version Updated Versão do OpenLP Atualizada OpenLP Main Display Blanked Tela Principal do OpenLP desativada The Main Display has been blanked out A Tela Principal foi desativada Default Theme: %s Tema padrão: %s English Please add the name of your language here Portuguese (Brazil) Configure &Shortcuts... Configurar &Atalhos... Open &Data Folder... Abrir Pasta de &Dados... Open the folder where songs, bibles and other data resides. Abrir a pasta na qual músicas, bíblias e outros arquivos são armazenados. &Autodetect &Auto detectar Update Theme Images Atualizar Imagens de Tema Update the preview images for all themes. Atualizar as imagens de pré-visualização de todos os temas. Print the current service. Imprimir o culto atual. L&ock Panels Tr&avar Painéis Prevent the panels being moved. Previne que os painéis sejam movidos. Re-run First Time Wizard Iniciar o Assistente de Primeira Execução novamente Re-run the First Time Wizard, importing songs, Bibles and themes. Iniciar o Assistente de Primeira Execução novamente importando músicas, Bíblia e temas. Re-run First Time Wizard? Deseja iniciar o Assistente de Primeira Execução novamente? Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. Você tem certeza que deseja executar o Assistente de Primeira Execução novamente? Executar o assistente novamente poderá fazer mudanças na sua configuração atual, adicionar músicas à sua base existente e mudar o seu tema padrão. Clear List Clear List of recent files Limpar Lista Clear the list of recent files. Limpar a lista de arquivos recentes. Configure &Formatting Tags... Configurar Etiquetas de &Formatação... Export OpenLP settings to a specified *.config file Exportar as configurações do OpenLP para um arquivo *.config Settings Configurações Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar as configurações do OpenLP de um arquivo *.config que foi previamente exportado neste ou em outro computador Import settings? Importar configurações? Open File Abrir Arquivo OpenLP Export Settings Files (*.conf) Arquivo de Configurações do OpenLP (*.conf) Import settings Importar configurações OpenLP will now close. Imported settings will be applied the next time you start OpenLP. O OpenLP irá finalizar. As configurações importadas serão aplicadas na próxima execução do OpenLP. Export Settings File Exportar arquivo de configurações OpenLP Export Settings File (*.conf) Arquivo de Configurações do OpenLP (*.conf) New Data Directory Error Erro no Novo Diretório de Dados Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copiando dados do OpenLP para o novo local do diretório de dados - %s - Por favor, aguarde a finalização da cópia OpenLP Data directory copy failed %s Falhou a cópia do diretório de dados do OpenLP %s General Geral Library Biblioteca Jump to the search box of the current active plugin. Ir para a caixa de pesquisa do plugin atualmente ativo. Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. Tem certeza de que deseja importar configurações? Importando configurações você fará mudanças permanentes na configuração atual do OpenLP. Importando configurações incorretas poderá causar um comportamento inesperado ou o OpenLP pode encerrar de forma anormal. The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. O arquivo que você selecionou não parece ser um arquivo de configurações OpenLP válido. O Processo foi encerrado e nenhuma mudança foi feita. Projector Manager Gerenciador de projetor Toggle Projector Manager Alternar gerenciador de projetor Toggle the visibility of the Projector Manager Alterar a visualização do gerenciador de projector Export setting error Erro na exportação da configuração The key "%s" does not have a default value so it will be skipped in this export. A chave "%s" não possui um valor padrão, então ela será ignorada nesta exportação. An error occurred while exporting the settings: %s Ocorreu um erro ao exportar as configurações: %s &Recent Services &Culto Recente &New Service &Novo Culto &Open Service &Abrir um Culto Existente &Save Service &Salvar este Culto Save Service &As... Salvar Culto &Como... &Manage Plugins &Gerenciar Plugins Exit OpenLP Sair Are you sure you want to exit OpenLP? Tem certeza de que deseja sair do OpenLP? &Exit OpenLP &Sair OpenLP.Manager Database Error Erro no Banco de Dados The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s O banco de dados que está sendo carregado foi criado numa versão mais recente do OpenLP. O banco de dados está na versão %d, enquanto o OpenLP espera a versão %d. O banco de dados não será carregado. Banco de dados: %s OpenLP cannot load your database. Database: %s O OpenLP não conseguiu carregar o seu banco de dados. Banco de Dados: %s OpenLP.MediaManagerItem No Items Selected Nenhum Item Selecionado &Add to selected Service Item &Adicionar ao Item de Ordem de Culto selecionado You must select one or more items to preview. Você deve selecionar um ou mais itens para pré-visualizar. You must select one or more items to send live. Você deve selecionar um ou mais itens para projetar. You must select one or more items. Você deve selecionar um ou mais itens. You must select an existing service item to add to. Você deve selecionar um item de culto existente ao qual adicionar. Invalid Service Item Item de Culto inválido You must select a %s service item. Você deve selecionar um item de culto %s. You must select one or more items to add. Você deve selecionar um ou mais itens para adicionar. No Search Results Nenhum Resultado de Busca Invalid File Type Tipo de Arquivo Inválido Invalid File %s. Suffix not supported Arquivo Inválido %s. Sufixo não suportado &Clone &Duplicar Duplicate files were found on import and were ignored. Arquivos duplicados foram encontrados na importação e foram ignorados. OpenLP.OpenLyricsImportError <lyrics> tag is missing. tag <lyrics> ausente. <verse> tag is missing. tag <verse> ausente. OpenLP.PJLink1 Unknown status Status desconhecido No message Nenhuma mensagem Error while sending data to projector Erro ao enviar dados para projetor Undefined command: Comando não definido: OpenLP.PlayerTab Players Usuários Available Media Players Reprodutores de Mídia Disponíveis Player Search Order Ordem de Pesquisa de Reprodutor Visible background for videos with aspect ratio different to screen. Plano de fundo que será visto em vídeos com proporções diferentes da tela. %s (unavailable) %s (indisponível) NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" NOTA: Para usar o VLC é necessário instalar a versão %s OpenLP.PluginForm Plugin Details Detalhes do Plugin Status: Status: Active Ativo Inactive Inativo %s (Inactive) %s (Inativo) %s (Active) %s (Ativo) %s (Disabled) %s (Desabilitado) Manage Plugins Gerenciar Plugins OpenLP.PrintServiceDialog Fit Page Ajustar à Página Fit Width Ajustar à Largura OpenLP.PrintServiceForm Options Opções Copy Copiar Copy as HTML Copiar como HTML Zoom In Aumentar o Zoom Zoom Out Diminuir o Zoom Zoom Original Zoom Original Other Options Outras Opções Include slide text if available Incluir texto do slide se disponível Include service item notes Incluir notas do item de culto Include play length of media items Incluir duração dos itens de mídia Add page break before each text item Adicionar uma quebra de página antes de cada item de texto Service Sheet Folha de Culto Print Imprimir Title: Título: Custom Footer Text: Texto de Rodapé Customizado: OpenLP.ProjectorConstants OK OK General projector error Erro no projetor Not connected error Erro não conectado Lamp error Erro na lâmpada Fan error Erro no fan/cooler High temperature detected Alta temperatura detectada Cover open detected Tampa aberta Check filter Verifique o filtro e a entrada de ar Authentication Error Erro de Autenticação Undefined Command Comando indefinido Invalid Parameter Parâmetro inválido Projector Busy Projetor ocupado Projector/Display Error Projector / exibição de erro Invalid packet received Pacote recebido inválido Warning condition detected Error condition detected PJLink class not supported Classe PJLink não suportada Invalid prefix character Caractere de prefixo inválido The connection was refused by the peer (or timed out) A conexão foi recusada (ou excedeu o tempo limite) The remote host closed the connection O host remoto encerrou a conexão The host address was not found O endereço do host não foi encontrado The socket operation failed because the application lacked the required privileges A operação de socket falhou porque a aplicação não tinha os privilégios necessários The local system ran out of resources (e.g., too many sockets) O sistema local ficou sem recursos (por exemplo, muitas conexões de sockets) The socket operation timed out Tempo esgotado para operação de socket The datagram was larger than the operating system's limit O datagrama era maior que o limite permitido pelo sistema operacional An error occurred with the network (Possibly someone pulled the plug?) Ocorreu um erro de rede (Será possível que alguém puxou a tomada?) The address specified with socket.bind() is already in use and was set to be exclusive O endereço especificado pelo socket.bind() já está em uso e é exclusivo The address specified to socket.bind() does not belong to the host O endereço especificado ao socket.bind() não pertence ao host The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) A operação de socket requisitada não é suportada pelo sistema operacional local (por exemplo, a falta de suporte ao IPv6) The socket is using a proxy, and the proxy requires authentication O socket está usando um servidor proxy, e este servidor requer uma autenticação The SSL/TLS handshake failed The last operation attempted has not finished yet (still in progress in the background) Could not contact the proxy server because the connection to that server was denied The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. The proxy address set with setProxy() was not found An unidentified error occurred Ocorreu um erro não identificado Not connected Não conectado Connecting Conectando Connected Conectado Getting status Coletando status Off Desligado Initialize in progress Inicializar em andamento Power in standby Em Standby Warmup in progress Aquecimento em Andamento Power is on Ligado Cooldown in progress Recarga em andamento Projector Information available Informação do Projetor disponível Sending data Enviando dados Received data Dados recebidos The connection negotiation with the proxy server failed because the response from the proxy server could not be understood A conexão com o servidor proxy falhou porque a resposta do servidor proxy não pode ser entendida OpenLP.ProjectorEdit Name Not Set Nome não definido You must enter a name for this entry.<br />Please enter a new name for this entry. Você deve digitar um nome.<br />Por favor, digite um novo nome. Duplicate Name Nome duplicado OpenLP.ProjectorEditForm Add New Projector Adicionar Novo Projetor Edit Projector Editar Projetor IP Address Endereço IP Port Number Número da porta PIN PIN Name Nome Location Localização Notes Notas Database Error Erro no Banco de Dados There was an error saving projector information. See the log for the error Ocorreu um erro ao salvar as informações do projetor.Veja o log do erro OpenLP.ProjectorManager Add Projector Adicionar Projetor Add a new projector Adicionar um novo projetor Edit Projector Editar Projetor Edit selected projector Editar projetor selecionado Delete Projector Excluir Projetor Delete selected projector Excluir projetor selecionado Select Input Source Selecione a Fonte de Entrada Choose input source on selected projector Escolha a entrada do projetor selecionado View Projector Visualizar Projetor View selected projector information Ver informação do projetor selecionado Connect to selected projector Conecte-se ao projetor selecionado Connect to selected projectors Conectar-se a projetores selecionados Disconnect from selected projectors Desconectar dos projetores selecionados Disconnect from selected projector Desconectar do projetor seleccionado Power on selected projector Ligar projetor seleccionado Standby selected projector Standby projetor selecionado Put selected projector in standby Colocar em modo de espera o Projetor selecionado Blank selected projector screen Apaga tela do projetor selecionado Show selected projector screen Mostrar tela do projetor selecionado &View Projector Information Ver informações do projetor &Edit Projector &Editar Projetor &Connect Projector &Conectar Projector D&isconnect Projector Desconectar Projetor Power &On Projector &Ligar Projetor Power O&ff Projector &Desligar Projetor Select &Input Edit Input Source &Blank Projector Screen &Tela de projeção em branco &Show Projector Screen &Mostra tela projetor &Delete Projector &Excluir Projetor Name Nome IP IP Port Porta Notes Notas Projector information not available at this time. Informação do projetor não disponível no momento. Projector Name Nome do Projetor Manufacturer Produtor Model Modelo Other info Outra informação Power status Status Shutter is Closed Fechado Current source input is Lamp Lâmpada On Ligado Off Desligado Hours Horas No current errors or warnings Sem erros ou avisos Current errors/warnings Erros/Avisos Projector Information Informações do projetor No message Nenhuma mensagem Not Implemented Yet Ainda não implementado Delete projector (%s) %s? Deletar projetor (%s) %s? Are you sure you want to delete this projector? Tem certeza de que deseja excluir este projetor? OpenLP.ProjectorPJLink Fan Lamp Lâmpada Temperature Temperatura Cover Filter Filtro Other Outra OpenLP.ProjectorTab Projector Projetor Communication Options Opções de comunicação Connect to projectors on startup Conectar ao projetor assim que iniciar Socket timeout (seconds) Tempo limite excedido (segundos) Poll time (seconds) Tabbed dialog box Single dialog box OpenLP.ProjectorWizard Duplicate IP Address Endereço IP duplicado Invalid IP Address Endereço IP inválido Invalid Port Number Número da Porta Inválida OpenLP.ScreenList Screen Tela primary primário OpenLP.ServiceItem <strong>Start</strong>: %s <strong>Início</strong>: %s <strong>Length</strong>: %s <strong>Duração</strong>: %s [slide %d] [slide %d] OpenLP.ServiceItemEditForm Reorder Service Item Reordenar Item de Culto OpenLP.ServiceManager Move to &top Mover para o &topo Move item to the top of the service. Mover item para o topo do culto. Move &up Mover para &cima Move item up one position in the service. Mover item uma posição para cima no culto. Move &down Mover para &baixo Move item down one position in the service. Mover item uma posição para baixo no culto. Move to &bottom Mover para o &final Move item to the end of the service. Mover item para o final do culto. &Delete From Service &Excluir do Culto Delete the selected item from the service. Excluir o item selecionado do culto. &Add New Item &Adicionar um Novo Item &Add to Selected Item &Adicionar ao Item Selecionado &Edit Item &Editar Item &Reorder Item &Reordenar Item &Notes &Anotações &Change Item Theme &Alterar Tema do Item File is not a valid service. Arquivo não é uma ordem de culto válida. Missing Display Handler Faltando o Manipulador de Exibição Your item cannot be displayed as there is no handler to display it O seu item não pode ser exibido porque não existe um manipulador para exibí-lo Your item cannot be displayed as the plugin required to display it is missing or inactive O item não pode ser exibido porque o plugin necessário para visualizá-lo está ausente ou está desativado &Expand all &Expandir todos Expand all the service items. Expandir todos os itens do culto. &Collapse all &Recolher todos Collapse all the service items. Recolher todos os itens do culto. Open File Abrir Arquivo Moves the selection down the window. Move a seleção para baixo dentro da janela. Move up Mover para cima Moves the selection up the window. Move a seleção para cima dentro da janela. Go Live Projetar Send the selected item to Live. Enviar o item selecionado para a Projeção. &Start Time &Horário Inicial Show &Preview Exibir &Pré-visualização Modified Service Culto Modificado The current service has been modified. Would you like to save this service? O culto atual foi modificada. Você gostaria de salvar este culto? Custom Service Notes: Anotações de Culto Personalizados: Notes: Observações: Playing time: Duração: Untitled Service Culto Sem Nome File could not be opened because it is corrupt. Arquivo não pôde ser aberto porque está corrompido. Empty File Arquivo vazio This service file does not contain any data. Este arquivo de culto não contém dados. Corrupt File Arquivo corrompido Load an existing service. Carregar um culto existente. Save this service. Salvar este culto. Select a theme for the service. Selecionar um tema para o culto. Slide theme Tema do Slide Notes Notas Edit Editar Service copy only Somente cópia de culto Error Saving File Erro ao Salvar Arquivo There was an error saving your file. Houve um erro ao salvar seu arquivo. Service File(s) Missing Arquivo(s) Faltando no Culto &Rename... Create New &Custom Slide &Auto play slides Auto play slides &Loop Auto play slides &Once &Delay between slides OpenLP Service Files (*.osz *.oszl) OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) OpenLP Service Files (*.osz);; File is not a valid service. The content encoding is not UTF-8. The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. This file is either corrupt or it is not an OpenLP 2 service file. &Auto Start - inactive &Auto Start - active Input delay Delay between slides in seconds. Espera entre slides em segundos. Rename item title Title: Título: An error occurred while writing the service file: %s The following file(s) in the service are missing: %s These files will be removed if you continue to save. OpenLP.ServiceNoteForm Service Item Notes Anotações do Item de Culto OpenLP.SettingsForm Configure OpenLP Configurar o OpenLP OpenLP.ShortcutListDialog Action Ação Shortcut Atalho Duplicate Shortcut Atalho Repetido The shortcut "%s" is already assigned to another action, please use a different shortcut. O atalho "%s" já está designado para outra ação, escolha um atalho diferente. Alternate Alternativo Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecione uma ação e clique em um dos botões abaixo para iniciar a captura de um novo atalho primário ou alternativo, respectivamente. Default Padrão Custom Personalizado Capture shortcut. Capturar atalho. Restore the default shortcut of this action. Restaurar o atalho padrão desta ação. Restore Default Shortcuts Restaurar Atalhos Padrões Do you want to restore all shortcuts to their defaults? Deseja restaurar todos os atalhos ao seus padrões? Configure Shortcuts Configurar Atalhos OpenLP.SlideController Hide Ocultar Go To Ir Para Blank Screen Apagar Tela Blank to Theme Apagar e deixar o Tema Show Desktop Mostrar a Ãrea de Trabalho Previous Service Lista Anterior Next Service Próxima Lista Escape Item Escapar Item Move to previous. Mover para o anterior. Move to next. Mover para o seguinte. Play Slides Exibir Slides Delay between slides in seconds. Espera entre slides em segundos. Move to live. Mover para projeção. Add to Service. Adicionar ao Culto. Edit and reload song preview. Editar e recarregar pré-visualização da música. Start playing media. Começar a reproduzir mídia. Pause audio. Pausar o áudio. Pause playing media. Pausar mídia sendo reproduzido. Stop playing media. Parar mídia sendo reproduzido. Video position. Posição do vídeo Audio Volume. Volume do Ãudio. Go to "Verse" Ir para "Estrofe" Go to "Chorus" Ir para "Refrão" Go to "Bridge" Ir para "Ponte" Go to "Pre-Chorus" Ir para "Pré-Refrão" Go to "Intro" Ir para "Introdução" Go to "Ending" Ir para "Final" Go to "Other" Ir para "Outro" Previous Slide Slide Anterior Next Slide Slide Seguinte Pause Audio Interromper Som Background Audio Som de Fundo Go to next audio track. Ir para a próxima faixa de áudio Tracks Faixas OpenLP.SourceSelectForm Select Projector Source Selecione Projector origem Edit Projector Source Text Editar a origem do texto do Projetor   Ignoring current changes and return to OpenLP Delete all user-defined text and revert to PJLink default text Discard changes and reset to previous user-defined text Save changes and return to OpenLP Delete entries for this projector Excluir entradas do projector Are you sure you want to delete ALL user-defined source input text for this projector? Tem certeza de que quer apagar o assunto selecionado? OpenLP.SpellTextEdit Spelling Suggestions Sugestões Ortográficas Formatting Tags Tags de Formatação Language: Idioma: OpenLP.StartTimeForm Theme Layout Disposição do Tema The blue box shows the main area. A caixa azul mostra a área principal. The red box shows the footer. A caixa vermelha mostra o rodapé. OpenLP.StartTime_form Item Start and Finish Time Tempo de Início e Término do item Hours: Horários: Minutes: Minutos: Seconds: Segundos: Start Início Finish Fim Length Duração Time Validation Error Erro de Validação de Tempo Finish time is set after the end of the media item O tempo final está após o fim do item de mídia Start time is after the finish time of the media item O tempo inicial está após o fim do item de mídia OpenLP.ThemeForm (approximately %d lines per slide) (aproximadamente %d linhas por slide) OpenLP.ThemeManager Create a new theme. Criar um novo tema. Edit Theme Editar Tema Edit a theme. Editar um tema. Delete Theme Excluir Tema Delete a theme. Excluir um tema. Import Theme Importar Tema Import a theme. Importar um tema. Export Theme Exportar Tema Export a theme. Exportar um tema. &Edit Theme &Editar Tema &Delete Theme &Apagar Tema Set As &Global Default Definir como Padrão &Global %s (default) %s (padrão) You must select a theme to edit. Você precisa selecionar um tema para editar. You are unable to delete the default theme. Você não pode apagar o tema padrão. You have not selected a theme. Você não selecionou um tema. Save Theme - (%s) Salvar Tema - (%s) Theme Exported Tema Exportado Your theme has been successfully exported. Seu tema foi exportado com sucesso. Theme Export Failed Falha ao Exportar Tema Select Theme Import File Selecionar Arquivo de Importação de Tema File is not a valid theme. O arquivo não é um tema válido. &Copy Theme &Copiar Tema &Rename Theme &Renomear Tema &Export Theme &Exportar Tema You must select a theme to rename. Você precisa selecionar um tema para renomear. Rename Confirmation Confirmar Renomeação Rename %s theme? Renomear o tema %s? You must select a theme to delete. Você precisa selecionar um tema para excluir. Delete Confirmation Confirmar Exclusão Delete %s theme? Apagar o tema %s? Validation Error Erro de Validação A theme with this name already exists. Já existe um tema com este nome. Copy of %s Copy of <theme name> Cópia do %s Theme Already Exists Tema Já Existe Theme %s already exists. Do you want to replace it? O Tema %s já existe. Deseja substituí-lo? The theme export failed because this error occurred: %s OpenLP Themes (*.otz) %s time(s) by %s Unable to delete theme Theme is currently used %s OpenLP.ThemeWizard Theme Wizard Assistente de Tema Welcome to the Theme Wizard Bem-vindo ao Assistente de Tema Set Up Background Configurar Plano de Fundo Set up your theme's background according to the parameters below. Configure o plano de fundo de seu tema de acordo com os parâmetros abaixo. Background type: Tipo de plano de fundo: Gradient Degradê Gradient: Degradê: Horizontal Horizontal Vertical Vertical Circular Circular Top Left - Bottom Right Esquerda Superior - Direita Inferior Bottom Left - Top Right Esquerda Inferior - Direita Superior Main Area Font Details Detalhes da Fonte da Ãrea Principal Define the font and display characteristics for the Display text Definir a fonte e características de exibição para o texto de Exibição Font: Fonte: Size: Tamanho: Line Spacing: Espaçamento entre linhas: &Outline: &Contorno: &Shadow: &Sombra: Bold Negrito Italic Itálico Footer Area Font Details Detalhes de Fonte da Ãrea de Rodapé Define the font and display characteristics for the Footer text Defina a fone e as características de exibição do texto de Rodapé Text Formatting Details Detalhes da Formatação de Texto Allows additional display formatting information to be defined Permite que informações adicionais de formatações de exibição sejam definidas Horizontal Align: Alinhamento Horizontal: Left Esquerda Right Direita Center Centralizado Output Area Locations Posições das Ãreas de Saída &Main Area &Ãrea Principal &Use default location &Usar posição padrão X position: Posição X: px px Y position: Posição Y: Width: Largura: Height: Altura: Use default location Usar posição padrão Theme name: Nome do tema: Edit Theme - %s Editar Tema - %s This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este assistente vai ajudá-lo a criar e editar seus temas. Clique no botão avançar abaixo para iniciar o processo, configurando seu plano de fundo. Transitions: Transições: &Footer Area Ãrea do &Rodapé Starting color: Cor inicial: Ending color: Cor final: Background color: Cor do Plano de Fundo: Justify Justificar Layout Preview Previsualizar a Disposição Transparent Transparente Preview and Save Visualizar e Salvar Preview the theme and save it. Visualizar o tema e salvar Background Image Empty Imagem de Fundo Não-especificado Select Image Selecione Imagem Theme Name Missing Falta Nome do Tema There is no name for this theme. Please enter one. Não existe um nome para este tema. Favor digitar um. Theme Name Invalid Nome do Tema Inválido Invalid theme name. Please enter one. Nome do tema inválido. Favor especificar um. Solid color color: Allows you to change and move the Main and Footer areas. You have not selected a background image. Please select one before continuing. Você não selecionou uma imagem de fundo. Por favor, selecione uma antes de continuar. OpenLP.ThemesTab Global Theme Tema Global Theme Level Nível do Tema S&ong Level Nível de &Música Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use o tema de cada música na base de dados. Se uma música não tiver um tema associado a ela, então usar o tema do culto. Se o culto não tiver um tema, então usar o tema global. &Service Level Nível de &Culto Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Usar o tema do culto, ignorando qualquer temas das músicas individuais. Se o culto não tiver um tema, então usar o tema global. &Global Level Nível &Global Use the global theme, overriding any themes associated with either the service or the songs. Usar o tema global, ignorando qualquer tema associado ao culto ou às músicas. Themes Temas Universal Settings &Wrap footer text OpenLP.Ui Delete the selected item. Excluir o item selecionado. Move selection up one position. Mover a seleção para cima em uma posição. Move selection down one position. Mover a seleção para baixo em uma posição. &Vertical Align: Alinhamento &Vertical: Finished import. Importação concluída. Format: Formato: Importing Importando Importing "%s"... Importando "%s"... Select Import Source Selecionar Origem da Importação Select the import format and the location to import from. Selecione o formato e a localização para a importação. Open %s File Abrir o Arquivo %s %p% %p% Ready. Pronto. Starting import... Iniciando importação... You need to specify at least one %s file to import from. A file type e.g. OpenSong Você precisa especificar pelo menos um arquivo %s para importar. Welcome to the Bible Import Wizard Bem Vindo ao Assistente de Importação de Bíblias Welcome to the Song Export Wizard Bem Vindo ao Assistente de Exportação de Músicas Welcome to the Song Import Wizard Bem-vindo ao Assistente de Importação de Música Author Singular Autor Authors Plural Autores © Copyright symbol. © Song Maintenance Gerenciamento de Músicas Topic Singular Tópico Topics Plural Tópicos Title and/or verses not found Título e/ou estrófes não encontradas XML syntax error Erro de sintaxe XML Welcome to the Bible Upgrade Wizard Bem-vindo ao Assistente de Atualização de Bíblias Open %s Folder Abrir Diretório %s You need to specify one %s file to import from. A file type e.g. OpenSong Você precisa especificar um arquivo %s de onde importar. You need to specify one %s folder to import from. A song format e.g. PowerSong Você precisa especificar um diretório %s de onde importar. Importing Songs Importando Músicas Welcome to the Duplicate Song Removal Wizard Bem-vindo ao Assistente de Remoção Música Duplicada Written by Compositor Author Unknown Autor Desconhecido About Sobre &Add &Adicionar Add group Adicionar grupo Advanced Avançado All Files Todos os Arquivos Automatic Automático Background Color Cor do Plano de Fundo Bottom Rodapé Browse... Procurar... Cancel Cancelar CCLI number: Número CCLI: Create a new service. Criar uma novo culto. Confirm Delete Confirmar Exclusão Continuous Contínuo Default Padrão Default Color: Cor Padrão: Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Culto %Y-%m-%d %H-%M &Delete &Excluir Display style: Estilo de Exibição: Duplicate Error Erro de duplicidade &Edit &Editar Empty Field Campo Vazio Error Erro Export Exportar File Arquivo File Not Found Arquivo Não Encontrado File %s not found. Please try selecting it individually. Arquivo %s não encontrado. Por favor, tente selecionar individualmente. pt Abbreviated font pointsize unit pt Help Ajuda h The abbreviated unit for hours h Invalid Folder Selected Singular Diretório Inválido Selecionado Invalid File Selected Singular Arquivo Inválido Selecionado Invalid Files Selected Plural Arquivos Inválidos Selecionados Image Imagem Import Importar Layout style: Estilo do Layout: Live Ao Vivo Live Background Error Erro no Fundo da Projeção Live Toolbar Barra de Ferramentas de Projeção Load Carregar Manufacturer Singular Produtor Manufacturers Plural Produtores Model Singular Modelo Models Plural Modelos m The abbreviated unit for minutes m Middle Meio New Novo New Service Novo Culto New Theme Novo Tema Next Track Faixa Seguinte No Folder Selected Singular Nenhum Diretório Selecionado No File Selected Singular Nenhum Arquivo Selecionado No Files Selected Plural Nenhum Arquivo Selecionado No Item Selected Singular Nenhum Item Selecionado No Items Selected Plural Nenhum Item Selecionado OpenLP is already running. Do you wish to continue? OpenLP já está sendo executado. Deseja continuar? Open service. Abrir culto. Play Slides in Loop Exibir Slides com Repetição Play Slides to End Exibir Slides até o Fim Preview Pré-Visualização Print Service Imprimir Culto Projector Singular Projetor Projectors Plural Projetores Replace Background Substituir Plano de Fundo Replace live background. Trocar fundo da projeção. Reset Background Restabelecer o Plano de Fundo Reset live background. Reverter fundo da projeção. s The abbreviated unit for seconds s Save && Preview Salvar && Pré-Visualizar Search Busca Search Themes... Search bar place holder text Pesquisar temas... You must select an item to delete. Você precisa selecionar um item para excluir. You must select an item to edit. Você precisa selecionar um item para editar. Settings Configurações Save Service Salvar Culto Service Culto Optional &Split Divisão Opcional Split a slide into two only if it does not fit on the screen as one slide. Dividir um slide em dois somente se não couber na tela em um único slide. Start %s Início %s Stop Play Slides in Loop Parar Slides com Repetição Stop Play Slides to End Parar Slides até o Final Theme Singular Tema Themes Plural Temas Tools Ferramentas Top Topo Unsupported File Arquivo não suportado Verse Per Slide Versículos por Slide Verse Per Line Versículos por Linha Version Versão View Visualizar View Mode Modo de Visualização CCLI song number: Número da Música na CCLI: Preview Toolbar Pré-visulalização OpenLP OpenLP Replace live background is not available when the WebKit player is disabled. Songbook Singular Songbooks Plural OpenLP.core.lib %s and %s Locale list separator: 2 items %s, and %s Locale list separator: end %s, %s Locale list separator: middle %s, %s Locale list separator: start Openlp.ProjectorTab Source select dialog interface PresentationPlugin <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Plugin de Apresentação</strong><br />O plugin de apresentação permite exibir apresentações utilizando vários programas diferentes. Os programas disponíveis são exibidos em uma caixa de seleção. Presentation name singular Apresentação Presentations name plural Apresentações Presentations container title Apresentações Load a new presentation. Carregar uma nova apresentação. Delete the selected presentation. Excluir a apresentação selecionada. Preview the selected presentation. Pré-visualizar a apresentação selecionada. Send the selected presentation live. Enviar a apresentação selecionada para a projeção. Add the selected presentation to the service. Adicionar a apresentação selecionada ao culto. PresentationPlugin.MediaItem Select Presentation(s) Selecionar Apresentação(ões) Automatic Automático Present using: Apresentar usando: File Exists O Arquivo já Existe A presentation with that filename already exists. Já existe uma apresentação com este nome. This type of presentation is not supported. Este tipo de apresentação não é suportado. Presentations (%s) Apresentações (%s) Missing Presentation Apresentação Não Encontrada The presentation %s is incomplete, please reload. A apresentação %s está incompleta, por favor recarregue. The presentation %s no longer exists. A apresentação %s já não existe mais. PresentationPlugin.PowerpointDocument An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. PresentationPlugin.PresentationTab Available Controllers Controladores Disponíveis %s (unavailable) %s (indisponível) Allow presentation application to be overridden Permitir que o aplicativo de apresentações seja alterado PDF options Opções de PDF Use given full path for mudraw or ghostscript binary: Select mudraw or ghostscript binary. The program is not ghostscript or mudraw which is required. PowerPoint options Clicking on a selected slide in the slidecontroller advances to next effect. Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). RemotePlugin <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Plugin Remoto</strong><br />O plugin remoto permite enviar mensagens para uma versão do OpenLP em execução em um computador diferente através de um navegador de internet ou através da API remota. Remote name singular Remoto Remotes name plural Remotos Remote container title Remoto Server Config Change Server configuration changes will require a restart to take effect. RemotePlugin.Mobile Service Manager Gerenciador de Culto Slide Controller Controlador de Slide Alerts Alertas Search Busca Home Home Refresh Atualizar Blank Em Branco Theme Tema Desktop Ãrea de Trabalho Show Exibir Prev Ant Next Próximo Text Texto Show Alert Mostrar Alerta Go Live Projetar Add to Service Adicionar à Lista Add &amp; Go to Service Adicionar ao Culto No Results Nenhum Resultado Options Opções Service Culto Slides Slides Settings Configurações Remote Remoto Stage View Visualização de Palvo Live View Ao vivo RemotePlugin.RemoteTab Serve on IP address: Endereço IP do servidor: Port number: Número de porta: Server Settings Configurações do Servidor Remote URL: URL Remoto: Stage view URL: URL de Visualização de Palco: Display stage time in 12h format Exibir hora de palco no formato 12h Android App Aplicativo Android Live view URL: HTTPS Server Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. User Authentication User id: Password: Senha: Show thumbnails of non-text slides in remote and stage view. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. SongUsagePlugin &Song Usage Tracking &Registro de Uso de Músicas &Delete Tracking Data &Excluir Dados de Registro Delete song usage data up to a specified date. Excluir registros de uso até uma data específica. &Extract Tracking Data &Extrair Dados de Registro Generate a report on song usage. Gerar um relatório sobre o uso das músicas. Toggle Tracking Alternar Registro Toggle the tracking of song usage. Alternar o registro de uso das músicas. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Plugin de Uso das Músicas</strong><br />Este plugin registra o uso das músicas nos cultos. SongUsage name singular UsoDaMúsica SongUsage name plural UsoDaMúsica SongUsage container title UsoDaMúsica Song Usage Uso das Músicas Song usage tracking is active. Registro de uso das Músicas está ativado. Song usage tracking is inactive. Registro de uso das Músicas está desativado. display exibir printed impresso SongUsagePlugin.SongUsageDeleteForm Delete Song Usage Data Excluir Dados de Registro das Músicas Delete Selected Song Usage Events? Deseja Excluir os Eventos de Uso das Músicas? Are you sure you want to delete selected Song Usage data? Você tem certeza de que deseja excluir os dados selecionados de Uso das Músicas? Deletion Successful Exclusão Bem Sucedida Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. All requested data has been deleted successfully. SongUsagePlugin.SongUsageDetailForm Song Usage Extraction Extração de Uso das Músicas Select Date Range Selecionar Faixa de Datas to até Report Location Localização do Relatório Output File Location Local do arquivo de saída usage_detail_%s_%s.txt detalhe_uso_%s_%s.txt Report Creation Criação de Relatório Report %s has been successfully created. Relatório %s foi criado com sucesso. Output Path Not Selected Caminho de saída não foi selecionado You have not set a valid output location for your song usage report. Please select an existing path on your computer. Report Creation Failed An error occurred while creating the report: %s SongsPlugin &Song &Música Import songs using the import wizard. Importar músicas com o assistente de importação. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Plugin de Músicas</strong><br />O plugin de músicas permite exibir e gerenciar músicas. &Re-index Songs &Re-indexar Músicas Re-index the songs database to improve searching and ordering. Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação. Reindexing songs... Reindexando músicas... Arabic (CP-1256) Arábico (CP-1256) Baltic (CP-1257) Báltico (CP-1257) Central European (CP-1250) Europeu Central (CP-1250) Cyrillic (CP-1251) Cirílico (CP-1251) Greek (CP-1253) Grego (CP-1253) Hebrew (CP-1255) Hebraico (CP-1255) Japanese (CP-932) Japonês (CP-932) Korean (CP-949) Coreano (CP-949) Simplified Chinese (CP-936) Chinês Simplificado (CP-936) Thai (CP-874) Tailandês (CP-874) Traditional Chinese (CP-950) Chinês Tradicional (CP-950) Turkish (CP-1254) Turco (CP-1254) Vietnam (CP-1258) Vietnamita (CP-1258) Western European (CP-1252) Europeu Ocidental (CP-1252) Character Encoding Codificação de Caracteres The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. A configuraçao de página de código é responsável pela correta representação dos caracteres. Normalmente pode usar a opção pré-selecionada. Please choose the character encoding. The encoding is responsible for the correct character representation. Escolha a codificação dos caracteres. A codificação é responsável pela correta representação dos caracteres. Song name singular Música Songs name plural Músicas Songs container title Músicas Exports songs using the export wizard. Exporta músicas utilizando o assistente de exportação. Add a new song. Adicionar uma nova música. Edit the selected song. Editar a música selecionada. Delete the selected song. Excluir a música selecionada. Preview the selected song. Pré-visualizar a música selecionada. Send the selected song live. Enviar a música selecionada para a projeção. Add the selected song to the service. Adicionar a música selecionada ao culto. Reindexing songs Reindexando músicas CCLI SongSelect Import songs from CCLI's SongSelect service. Find &Duplicate Songs Buscar musicas duplicadas Find and remove duplicate songs in the song database. Busca e remover músicas duplicadas no banco de dados. SongsPlugin.AuthorType Words Author who wrote the lyrics of a song Letra Music Author who wrote the music of a song Música Words and Music Author who wrote both lyrics and music of a song Letra e Música Translation Author who translated the song Versão em Português SongsPlugin.AuthorsForm Author Maintenance Gerenciamento de Autores Display name: Nome de tela: First name: Primeiro nome: Last name: Sobrenome: You need to type in the first name of the author. Você precisa digitar o primeiro nome do autor. You need to type in the last name of the author. Você precisa digitar o sobrenome do autor. You have not set a display name for the author, combine the first and last names? Você não definiu um nome de tela para o autor, combinar o nome e o sobrenome? SongsPlugin.CCLIFileImport The file does not have a valid extension. O arquivo não possui uma extensão válida. SongsPlugin.DreamBeamImport Invalid DreamBeam song file. Missing DreamSong tag. SongsPlugin.EasyWorshipSongImport Administered by %s Administrado por %s "%s" could not be imported. %s Unexpected data formatting. No song text found. [above are Song Tags with notes imported from EasyWorship] This file does not exist. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. This file is not a valid EasyWorship database. Could not retrieve encoding. SongsPlugin.EditBibleForm Meta Data Metadados Custom Book Names Nomes de Livros Personalizados SongsPlugin.EditSongForm Song Editor Editor de Músicas &Title: &Título: Alt&ernate title: Título &Alternativo: &Lyrics: &Letra: &Verse order: Ordem das &estrofes: Ed&it All &Editar Todos Title && Lyrics Título && Letra &Add to Song &Adicionar à Música &Remove &Remover A&dd to Song A&dicionar uma Música R&emove R&emover New &Theme Novo &Tema Copyright Information Direitos Autorais Comments Comentários Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários Add Author Adicionar Autor This author does not exist, do you want to add them? Este autor não existe, deseja adicioná-lo? This author is already in the list. Este autor já está na lista. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Você não selecionou um autor válido. Selecione um autor da lista, ou digite um novo autor e clique em "Adicionar Autor à Música" para adicioná-lo. Add Topic Adicionar Assunto This topic does not exist, do you want to add it? Este assunto não existe, deseja adicioná-lo? This topic is already in the list. Este assunto já está na lista. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Você não selecionou um assunto válido. Selecione um assunto da lista ou digite um novo assunto e clique em "Adicionar Assunto à Música" para adicioná-lo. You need to type in a song title. Você deve digitar um título para a música. You need to type in at least one verse. Você deve digitar ao menos um verso. You need to have an author for this song. Você precisa ter um autor para esta música. Linked Audio Ãudio Ligado Add &File(s) Adicionar &Arquivo(s) Add &Media Adicionar &Mídia Remove &All Excluir &Todos Open File(s) Abrir Arquivo(s) <strong>Warning:</strong> Not all of the verses are in use. <strong>Aviso:</strong> Nem todos os versos estão em uso. <strong>Warning:</strong> You have not entered a verse order. <strong>Alerta:</strong>Você não digitou uma ordem de versos. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. Invalid Verse Order &Edit Author Type &Editar Tipo de Autor Edit Author Type Editar Tipo de Autor Choose type for this author Escolha o tipo para este autor There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks Add &to Song Re&move Authors, Topics && Songbooks Add Songbook This Songbook does not exist, do you want to add it? This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. SongsPlugin.EditVerseForm Edit Verse Editar Estrofe &Verse type: Tipo de &Estrofe: &Insert &Inserir Split a slide into two by inserting a verse splitter. Dividir um slide em dois, inserindo um divisor de estrófes. SongsPlugin.ExportWizardForm Song Export Wizard Assistente de Exportação de Músicas Select Songs Selecionar Músicas Check the songs you want to export. Marque as músicas que você deseja exportar. Uncheck All Desmarcar Todas Check All Marcar Todas Select Directory Selecionar Diretório Directory: Diretório: Exporting Exportando Please wait while your songs are exported. Por favor aguarde enquanto as suas músicas são exportadas. You need to add at least one Song to export. Você precisa adicionar pelo menos uma Música para exportar. No Save Location specified Nenhum Localização para Salvar foi especificado Starting export... Iniciando a exportação... You need to specify a directory. Você precisa especificar um diretório. Select Destination Folder Selecione a Pasta de Destino Select the directory where you want the songs to be saved. Selecionar o diretório onde deseja salvar as músicas. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport Invalid Foilpresenter song file. No verses found. Arquivo de música Foilpresenter inválido. Nenhum verso encontrado. SongsPlugin.GeneralTab Enable search as you type Habilitar busca ao digitar SongsPlugin.ImportWizardForm Select Document/Presentation Files Selecione Arquivos de Documentos/Apresentações Song Import Wizard Assistente de Importação de Música This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este assistente irá ajudá-lo a importar músicas de uma variedade de formatos. Clique no abaixo no botão Próximo para iniciar o processo, escolhendo um desses formatos. Generic Document/Presentation Documento/Apresentação Genérica Add Files... Adicionar Arquivos... Remove File(s) Remover Arquivos(s) Please wait while your songs are imported. Por favor espere enquanto as suas músicas são importadas. Words Of Worship Song Files Arquivos de Música do Words Of Worship Songs Of Fellowship Song Files Arquivos do Songs Of Fellowship SongBeamer Files Arquivos do SongBeamer SongShow Plus Song Files Arquivos do SongShow Plus Foilpresenter Song Files Arquivos do Folipresenter Copy Copiar Save to File Salvar em Arquivo The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação Songs of Fellowship foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação de documentos/apresentações genéricos foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. OpenLyrics Files Arquivos OpenLyrics CCLI SongSelect Files Arquivos CCLI EasySlides XML File Arquivo XML EasySlides EasyWorship Song Database Músicas EasyWorship DreamBeam Song Files Arquivos de Música DreamBeam You need to specify a valid PowerSong 1.0 database folder. Você precisa especificar um diretório válido de banco de dados do PowerSong 1.0. ZionWorx (CSV) ZionWorx (CSV) First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primeiro converta o seu banco de dados do ZionWorx, como explicado no <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual do Usuário</a> SundayPlus Song Files Arquivos de Música do SundayPlus This importer has been disabled. Esta importação foi desabilitada. MediaShout Database Banco de Dados do MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A importação do MediaShout somente é suportada no Windows. Ela foi desabilitada por causa de um módulo Python inexistente. Se você deseja utilizar esta importação, você precisa instalar o módulo "pyodbc". SongPro Text Files Arquivos Texto do SongPro SongPro (Export File) SongPro (Arquivo de Exportação) In SongPro, export your songs using the File -> Export menu No SongPro, exporte as suas músicas utilizando o menu Arquivo -> Exportar. EasyWorship Service File WorshipCenter Pro Song Files The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. PowerPraise Song Files PresentationManager Song Files ProPresenter 4 Song Files Worship Assistant Files Worship Assistant (CSV) In Worship Assistant, export your Database to a CSV file. OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases LyriX Files LyriX (Exported TXT-files) VideoPsalm Files VideoPsalm The VideoPsalm songbooks are normally located in %s SongsPlugin.LyrixImport Error: %s SongsPlugin.MediaFilesForm Select Media File(s) Selecionar Arquivo(s) de Mídia Select one or more audio files from the list below, and click OK to import them into this song. Selecione um ou mais arquivos de áudio da lista abaixo. Clique OK para importá-los à esta música. SongsPlugin.MediaItem Titles Títulos Lyrics Letras CCLI License: Licença CCLI: Entire Song Música Inteira Maintain the lists of authors, topics and books. Gerencia a lista de autores, tópicos e hinários. copy For song cloning copiar Search Titles... Pesquisar títulos... Search Entire Song... Música Inteira Search Lyrics... Pesquisar letras... Search Authors... Pesquisar autores... Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... SongsPlugin.MediaShoutImport Unable to open the MediaShout database. Não foi possível abrir o banco de dados do MediaShout. SongsPlugin.OpenLPSongImport Not a valid OpenLP 2 song database. SongsPlugin.OpenLyricsExport Exporting "%s"... Exportando "%s"... SongsPlugin.OpenSongImport Invalid OpenSong song file. Missing song tag. SongsPlugin.PowerSongImport No songs to import. Nenhuma música para importar. Verses not found. Missing "PART" header. Os versículos não foram encontrados. O cabeçalho "PART" está faltando. No %s files found. Nenhum arquivo %s encontrado. Invalid %s file. Unexpected byte value. Arquivo %s inválido. Valor inesperado de byte. Invalid %s file. Missing "TITLE" header. Arquivo %s inválido. Falta cabeçalho "TITLE". Invalid %s file. Missing "COPYRIGHTLINE" header. Arquivo %s inválido. Falta cabeçalho "COPYRIGHTLINE". SongsPlugin.SongBookForm &Name: &Nome: &Publisher: &Editora: You need to type in a name for the book. Você precisa digitar um nome para o livro. Songbook Maintenance SongsPlugin.SongExportForm Your song export failed. A sua exportação de músicas falhou. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportação Finalizada. Para importar estes arquivos, use o importador <strong>OpenLyrics</strong>. Your song export failed because this error occurred: %s SongsPlugin.SongImport copyright copyright The following songs could not be imported: As seguintes músicas não puderam ser importadas: Cannot access OpenOffice or LibreOffice Não foi possível acessar OpenOffice ou LibreOffice Unable to open file Não foi possível abrir o arquivo File not found Arquivo não encontrado SongsPlugin.SongMaintenanceForm Could not add your author. Não foi possível adicionar seu autor. This author already exists. Este autor já existe. Could not add your topic. Não foi possível adicionar seu assunto. This topic already exists. Este assunto já existe. Could not add your book. Não foi possível adicionar seu livro. This book already exists. Este livro já existe. Could not save your changes. Não foi possível salvar suas alterações. Could not save your modified author, because the author already exists. Não foi possível salvar sue autor modificado, pois o autor já existe. Could not save your modified topic, because it already exists. O assunto modificado não pode ser salvo porque já existe. Delete Author Excluir Autor Are you sure you want to delete the selected author? Você tem certeza de que deseja excluir o autor selecionado? This author cannot be deleted, they are currently assigned to at least one song. Este autor não pode ser apagado, pois está associado a pelo menos uma música. Delete Topic Excluir Assunto Are you sure you want to delete the selected topic? Tem certeza de que quer apagar o assunto selecionado? This topic cannot be deleted, it is currently assigned to at least one song. Este assunto não pode ser apagado, pois está associado a pelo menos uma música. Delete Book Excluir Hinário Are you sure you want to delete the selected book? Tem certeza de que quer excluir o hinário selecionado? This book cannot be deleted, it is currently assigned to at least one song. Este hinário não pode ser excluido, pois está associado a ao menos uma música. The author %s already exists. Would you like to make songs with author %s use the existing author %s? O autor %s já existe. Deseja que as músicas com o autor %s usem o autor %s existente? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? O assunto %s já existe. Deseja que as músicas com o assunto %s usem o assunto %s existente? The book %s already exists. Would you like to make songs with book %s use the existing book %s? O hinário %s já existe. Deseja que as músicas com o hinário %s usem o hinário %s existente? SongsPlugin.SongSelectForm CCLI SongSelect Importer <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. Username: Usuário: Password: Senha: Save username and password Login Search Text: Search Busca Found %s song(s) Logout View Visualizar Title: Título: Author(s): Autor(s): Copyright: Direitos Autorais: CCLI Number: Lyrics: Back Voltar Import Importar More than 1000 results Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. Logging out... Save Username and Password WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. Error Logging In There was a problem logging in, perhaps your username or password is incorrect? Song Imported Incomplete song This song is missing some information, like the lyrics, and cannot be imported. Your song has been imported, would you like to import more songs? Stop SongsPlugin.SongsTab Songs Mode Modo de Música Display verses on live tool bar Exibir estrofes na barra de ferramentas de projeção Update service from song edit Atualizar culto após editar música Import missing songs from service files Importar músicas de arquivos de culto Display songbook in footer Display "%s" symbol before copyright info SongsPlugin.TopicsForm Topic Maintenance Gerenciamento de Assuntos Topic name: Nome do assunto: You need to type in a topic name. Você precisa digitar um nome para o assunto. SongsPlugin.VerseType Verse Estrofe Chorus Refrão Bridge Ponte Pre-Chorus Pré-Estrofe Intro Introdução Ending Final Other Outra SongsPlugin.VideoPsalmImport Error: %s SongsPlugin.WordsofWorshipSongImport Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock SongsPlugin.WorshipAssistantImport Error reading CSV file. Erro ao ler o arquivo CSV. Line %d: %s Linha %d: %s Decoding error: %s Erro de decodificação: %s File not valid WorshipAssistant CSV format. Record %d Registro %d SongsPlugin.WorshipCenterProImport Unable to connect the WorshipCenter Pro database. SongsPlugin.ZionWorxImport Error reading CSV file. Erro ao ler o arquivo CSV. File not valid ZionWorx CSV format. O arquivo não é um arquivo CSV válido do ZionWorx. Line %d: %s Linha %d: %s Decoding error: %s Erro de decodificação: %s Record %d Registro %d Wizard Wizard This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. Searching for duplicate songs. Please wait while your songs database is analyzed. Here you can decide which songs to remove and which ones to keep. Review duplicate songs (%s/%s) Information Informações No duplicate songs have been found in the database. OpenLP-2.4/resources/openlp.xml0000644000175000017500000000216012657640340015601 0ustar raoulraoul OpenLP Service File OpenLP Service File OpenLP Theme File OpenLP-2.4/resources/forms/0000755000175000017500000000000012657640341014712 5ustar raoulraoulOpenLP-2.4/resources/forms/firsttimewizard.ui0000644000175000017500000002521012657640340020477 0ustar raoulraoul FirstTimeWizard 0 0 550 386 First Time Wizard true QWizard::ModernStyle QWizard::IndependentPages|QWizard::NoBackButtonOnStartPage 8 0 163 0 163 16777215 0 :/wizards/wizard_importbible.bmp 0 8 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Welcome to the First Time Wizard</span></p></body></html> Qt::Vertical QSizePolicy::Fixed 20 40 This wizard will help you to configure OpenLP for initial use . Click the next button below to start the process of selection your initial options. true 10 Qt::Vertical 20 40 Activate required Plugins Select the Plugins you wish to use. Songs true Custom Text true Bible true Images true Presentations true Media (Audio and Video) true Allow remote access Monitor Song Usage true Allow Alerts true Download Samples from OpenLP.org Select samples to downlaod and install for use. 20 20 461 17 No Internet connection found so unable to download any default files. 20 0 501 281 Download Example Files Qt::ScrollBarAlwaysOff false true QAbstractItemView::NoSelection false 1 Default Settings Set up default values to be used by OpenLP 20 20 491 113 Default output display false QComboBox::NoInsert QComboBox::AdjustToContents Select the default Theme QComboBox::AdjustToContents 60 160 471 17 Press Finish to apply all you changes and start OpenLP 60 220 351 17 OpenLP-2.4/resources/forms/songimportwizard.ui0000644000175000017500000003421312657640340020675 0ustar raoulraoul SongImportWizard 0 0 550 386 166 386 Song Import Wizard true QWizard::ModernStyle QWizard::NoBackButtonOnLastPage|QWizard::NoBackButtonOnStartPage 8 0 163 0 163 16777215 :/wizards/wizard_importsong.bmp 8 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Lucida Grande'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Welcome to the Song Import Wizard</span></p></body></html> Qt::Vertical QSizePolicy::Fixed 20 40 This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. true 10 Qt::Vertical 20 40 Select Import Source Select the import format, and where to import from. 8 20 8 Format: 0 0 OpenLyrics OpenSong CCLI CSV Qt::Horizontal 40 20 3 8 0 8 Add Files... :/general/general_open.png:/general/general_open.png Qt::Horizontal 40 20 Remove File(s) :/general/general_delete.png:/general/general_delete.png 8 0 8 Add Files... :/general/general_open.png:/general/general_open.png Qt::Horizontal 40 20 Remove File(s) :/general/general_delete.png:/general/general_delete.png 8 0 8 Add Files... :/general/general_open.png:/general/general_open.png Qt::Horizontal 40 20 Remove File(s) :/general/general_delete.png:/general/general_delete.png 8 8 0 Filename: 8 Browse... :/general/general_open.png:/general/general_open.png Importing Please wait while your songs are imported. 8 50 Ready. 0 false %p FormatComboBox currentIndexChanged(int) FormatStackedWidget setCurrentIndex(int) 122 92 274 222 OpenLP-2.4/resources/forms/editsongdialog.ui0000644000175000017500000006001012657640340020241 0ustar raoulraoul EditSongDialog 0 0 645 417 Song Editor :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp true 8 0 Title && Lyrics 8 8 Title: 0 0 Alternative Title: Lyrics: Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop Verse Order: 8 0 Add Edit Edit All Delete Qt::Vertical 20 40 Authors, Topics && Book 8 8 8 0 Authors 8 8 8 0 0 0 false QComboBox::InsertAlphabetically QComboBox::AdjustToMinimumContentsLength 8 110 16777215 &Add to Song true 8 0 Qt::Horizontal 40 20 &Remove 0 0 &Manage Authors, Topics, Books Qt::Horizontal 66 20 8 0 0 0 Topic 8 8 8 0 0 0 0 0 A&dd to Song true 8 0 Qt::Horizontal 40 20 R&emove Song Book 8 8 0 0 Theme, Copyright Info && Comments 8 8 8 0 0 0 8 0 Theme 8 8 110 16777215 Add a Theme 0 0 Copyright Information 8 8 8 0 29 16777215 © 8 0 CCLI Number: Qt::Vertical 20 40 0 0 Comments 0 8 0 0 16777215 16777215 Qt::Vertical 20 40 QDialogButtonBox::Cancel|QDialogButtonBox::Save SongTabWidget TitleEditItem AlternativeEdit VerseListWidget VerseAddButton VerseEditButton VerseEditAllButton VerseDeleteButton VerseOrderEdit AuthorsSelectionComboItem AuthorAddButton AuthorsListView AuthorRemoveButton MaintenanceButton SongTopicCombo TopicAddButton TopicsListView TopicRemoveButton SongbookCombo ThemeSelectionComboItem ThemeAddButton CopyrightEditItem CopyrightInsertButton CCLNumberEdit CommentsEdit ButtonBox ButtonBox rejected() EditSongDialog close() 607 456 578 -15 ButtonBox accepted() EditSongDialog close() 549 461 91 -50 OpenLP-2.4/resources/forms/editcustomslidedialog.ui0000644000175000017500000000415212657640340021633 0ustar raoulraoul customSlideEditDialog 0 0 474 442 Dialog 8 407 458 32 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Save 8 8 458 349 380 370 85 27 Split Slide buttonBox accepted() customSlideEditDialog accept() 248 254 157 274 buttonBox rejected() customSlideEditDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/songusagedeletedialog.ui0000644000175000017500000000410512657640340021606 0ustar raoulraoul AuditDeleteDialog 0 0 291 243 Audit Delete 20 10 247 181 Qt::Sunday true QCalendarWidget::NoVerticalHeader 30 210 245 25 QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AuditDeleteDialog accept() 133 178 125 374 buttonBox rejected() AuditDeleteDialog close() 200 175 189 393 accept() OpenLP-2.4/resources/forms/topicsdialog.ui0000644000175000017500000000251512657640340017734 0ustar raoulraoul TopicsDialog 0 0 365 77 Topic Maintenance QFormLayout::ExpandingFieldsGrow 8 8 8 Topic Name: QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/bibleimportwizard.ui0000644000175000017500000004536112657640340021012 0ustar raoulraoul Wizard 0 0 550 386 Bible Import Wizard true QWizard::ModernStyle QWizard::NoBackButtonOnLastPage|QWizard::NoBackButtonOnStartPage 8 0 163 0 163 16777215 0 :/wizards/wizard_importbible.bmp 0 8 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body > <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Welcome to the Bible Import Wizard</span></p></body></html> Qt::Vertical QSizePolicy::Fixed 20 40 This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. true 10 Qt::Vertical 20 40 Select Import Source Select the import format, and where to import from. 8 20 8 Format: OSIS CSV OpenSong Web Download Qt::Horizontal 40 20 0 QFormLayout::ExpandingFieldsGrow 8 8 0 Bible Name: 0 File Location: 8 32 16777215 :/imports/import_load.png:/imports/import_load.png QFormLayout::ExpandingFieldsGrow Qt::AlignBottom|Qt::AlignRight|Qt::AlignTrailing Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop 8 8 0 Books Location: 8 32 16777215 :/imports/import_load.png:/imports/import_load.png Verse Location: 8 32 16777215 :/imports/import_load.png:/imports/import_load.png 8 8 0 Bible Filename: 8 :/imports/import_load.png:/imports/import_load.png 8 0 0 Download Options 8 8 8 Location: Crosswalk Bible: QComboBox::AdjustToContents English Standard Version King James Version New International Version Proxy Server (Optional) Server: Username: Password: License Details Set up the Bible's license details. 8 8 20 Version Name: Copyright: Permission: Importing Please wait while your Bible is imported. 8 50 Ready. 0 false %p FormatComboBox currentIndexChanged(int) FormatWidget setCurrentIndex(int) 106 76 296 147 OpenLP-2.4/resources/forms/songbookdialog.ui0000644000175000017500000000435512657640340020260 0ustar raoulraoul SongBookDialog 0 0 367 120 Book Song Maintenance 8 8 8 Name: Publisher: Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Save ButtonBox accepted() SongBookDialog accept() 248 254 157 274 ButtonBox rejected() SongBookDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/servicenotedialog.ui0000644000175000017500000000170112657640340020755 0ustar raoulraoul ServiceNoteEdit 0 0 400 243 Service Item Notes 20 10 361 223 QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/about.ui0000644000175000017500000006111212657640340016363 0ustar raoulraoul AboutDialog Qt::ApplicationModal 0 0 516 481 About OpenLP :/icon/openlp-logo-16x16.png:/icon/openlp-logo-16x16.png true 8 8 :/graphics/openlp-about-logo.png false 0 0 About 0 8 true OpenLP <version> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. Credits 0 8 true Project Lead Raoul "superfly" Snyman Developers Tim "TRB143" Bentley Jonathan "gushie" Corwin Scott "sguerrieri" Guerrieri Raoul "superfly" Snyman Maikel Stuivenberg Martin "mijiti" Thompson Carsten "catini" Tingaard Testers Wesley "wrst" Stout License 8 8 true Copyright © 2004-2009 Raoul Snyman Portions copyright © 2004-2009 Tim Bentley, Jonathan Corwin, Scott Guerrieri, Maikel Stuivenberg, Martin Thompson, Carsten Tinggaard, Jon Tibble 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; version 2 of the License. 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 below for more details. GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 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 convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the 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 General Public License as published by the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. 8 0 Qt::Horizontal 275 20 Contribute :/system/system_contribute.png:/system/system_contribute.png Close :/slides/slide_close.png:/slides/slide_close.png &Contribute contributeButton closeButton clicked() AboutDialog close() 348 361 196 189 10 10 true true true OpenLP-2.4/resources/forms/mediaclipselector.ui0000644000175000017500000002251112657640340020741 0ustar raoulraoul MediaClipSelector 0 0 683 739 0 0 683 686 Qt::NoFocus Select media clip false Qt::ImhNone 0 0 true 0 0 true true HH:mm:ss.z true HH:mm:ss.z true Set current position as start point true Load disc Qt::Vertical QSizePolicy::Minimum 20 40 true ../images/media_playback_start.png../images/media_playback_start.png true End point true true Title true true Set current position as end point true Save current clip true Close true Start point true Jump to start point true Audio track true true HH:mm:ss.z 665 375 background-color:black; QFrame::StyledPanel QFrame::Raised true Subtitle track true Jump to end point true Media path true true false Qt::Horizontal false media_path_combobox load_disc_pushbutton title_combo_box audio_tracks_combobox subtitle_tracks_combobox play_pushbutton position_horizontalslider media_position_timeedit start_timeedit set_start_pushbutton jump_start_pushbutton end_timeedit set_end_pushbutton jump_end_pushbutton save_pushbutton close_pushbutton OpenLP-2.4/resources/forms/shortcutlistdialog.ui0000644000175000017500000001327012657640340021202 0ustar raoulraoul ShortcutListDialog 0 0 500 438 Dialog 8 8 true false Action Shortcut 0 8 Default: true Custom: 8 84 0 None :/system/system_configure_shortcuts.png:/system/system_configure_shortcuts.png true false 0 16 :/system/clear_shortcut.png:/system/clear_shortcut.png 8 None :/system/system_configure_shortcuts.png:/system/system_configure_shortcuts.png :/system/clear_shortcut.png:/system/clear_shortcut.png Ctrl+V Shift+Ins Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Reset shortcutListButtonBox accepted() ShortcutListDialog accept() 248 254 157 274 shortcutListButtonBox rejected() ShortcutListDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/imagesaddgroupdialog.ui0000644000175000017500000000315412657640340021426 0ustar raoulraoul AddGroupDialog 0 0 365 119 Add group QFormLayout::ExpandingFieldsGrow 8 8 8 Parent group: Group name: QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/printserviceorderdialog.ui0000644000175000017500000001520712657640340022206 0ustar raoulraoul Dialog 0 0 494 434 Dialog 4 4 491 432 0 0 0 0 Service Title: Include slide text if avaialbe Include service item notes Include play lenght of media items Qt::Vertical 20 40 <b>Custom Notes:</b> Qt::Horizontal 40 20 ... :/general/general_zoom_out.png:/general/general_zoom_out.png :/general/general_zoom_in.png:/general/general_zoom_in.png 0 0 Preview: true 0 0 0 0 spacer_3 Qt::Horizontal 40 20 Cancel Cancel Cancel Print OpenLP-2.4/resources/forms/themelayout.ui0000644000175000017500000000331412657640340017611 0ustar raoulraoul ThemeLayout 0 0 400 300 Theme Layout 50 260 341 32 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok 20 10 361 231 buttonBox accepted() ThemeLayout accept() 248 254 157 274 buttonBox rejected() ThemeLayout reject() 316 260 286 274 OpenLP-2.4/resources/forms/serviceitemeditdialog.ui0000644000175000017500000000520312657640340021615 0ustar raoulraoul ServiceItemEditDialog 0 0 386 272 Service Item Maintenance 20 20 351 241 true Delete Qt::Vertical 20 40 :/services/service_up.png:/services/service_up.png :/services/service_down.png:/services/service_down.png QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/bibleimportdialog.ui0000644000175000017500000003100112657640340020733 0ustar raoulraoul BibleImportDialog 0 0 500 686 Bible Registration :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp 10 400 480 151 0 123 Licence Details 8 8 Version Name: Copyright: Permission: 20 670 271 17 10 550 480 70 Import Progress 0 false %p 310 630 180 38 6 Import Cancel 10 30 480 361 2 Osis (Sword) Imports 10 10 460 141 OSIS Bible Bible Name: File Location: :/imports/import_load.png:/imports/import_load.png CSV File Imports 10 10 460 191 CVS Bible 8 8 Books Location: Verse Location: :/imports/import_load.png:/imports/import_load.png :/imports/import_load.png:/imports/import_load.png Web Downloads 10 10 460 141 Download Options Location: Crosswalk Bible: NIV KJV BibleComboBox LocationLabel BibleLabel LocationComboBox 10 160 460 161 Proxy Settings (Optional) QFormLayout::AllNonFixedFieldsGrow 8 8 8 Proxy Address: Username: Password: OptionsGroupBox OptionsGroupBox ProxyGroupBox BibleNameEdit OSISLocationEdit OsisFileButton BooksLocationEdit BooksFileButton VerseLocationEdit VersesFileButton LocationComboBox BibleComboBox AddressEdit UsernameEdit PasswordEdit VersionNameEdit CopyrightEdit PermisionEdit OnImportButtonClicked() OnCancelButtonClicked() onOsisFileButtonClicked() onBooksFileButtonClicked() onVersesFileButtonClicked() onLocationComboBoxSelected() onBibleComboBoxSelected() onOSISLocationEditLostFocus() onBooksLocationEditLostFocus() onVerseLocationEditLostFocus() onProxyAddressEditLostFocus() onProxyUsernameEditLostFocus() onProxyPasswordEditLostFocus() OpenLP-2.4/resources/forms/filerenamedialog.ui0000644000175000017500000000233412657640340020541 0ustar raoulraoul FileRenameDialog 0 0 400 87 File Rename 210 50 171 25 QDialogButtonBox::Cancel|QDialogButtonBox::Ok 10 10 381 27 New File Name: OpenLP-2.4/resources/forms/songmaintenance.ui0000644000175000017500000003405112657640340020424 0ustar raoulraoul SongMaintenanceDialog Qt::ApplicationModal 0 0 486 361 Song Maintenance 8 8 8 0 0 0 130 0 130 16777215 false false QAbstractItemView::SingleSelection 32 32 false false false true false false New Row New Row New Row Types Authors AlignHCenter|AlignVCenter|AlignCenter :/songs/author_maintenance.png:/songs/author_maintenance.png Topics AlignHCenter|AlignVCenter|AlignCenter :/songs/topic_maintenance.png:/songs/topic_maintenance.png Books/Hymnals AlignHCenter|AlignVCenter|AlignCenter :/songs/book_maintenance.png:/songs/book_maintenance.png 2 8 0 8 0 Qt::Horizontal 40 20 Add :/songs/author_add.png:/songs/author_add.png Edit :/songs/author_edit.png:/songs/author_edit.png Delete :/songs/author_delete.png:/songs/author_delete.png Qt::Horizontal 8 0 8 0 Qt::Horizontal 54 20 Add :/songs/topic_add.png:/songs/topic_add.png Edit :/songs/topic_edit.png:/songs/topic_edit.png Delete :/songs/topic_delete.png:/songs/topic_delete.png Qt::Horizontal 8 0 8 0 Qt::Horizontal 54 20 Add :/songs/book_add.png:/songs/book_add.png Edit :/songs/book_edit.png:/songs/book_edit.png Delete :/songs/book_delete.png:/songs/book_delete.png Qt::Horizontal Qt::Horizontal QDialogButtonBox::Close MaintenanceButtonBox rejected() SongMaintenanceDialog accept() 242 340 242 180 TypeTableWidget cellClicked(int,int) TypeStackedWidget setCurrentIndex(int) 72 163 311 163 OpenLP-2.4/resources/forms/songusagedetaildialog.ui0000644000175000017500000000735312657640340021616 0ustar raoulraoul AuditDetailDialog 0 0 609 413 Audit Detail Extraction Select Date Range to false Qt::AlignCenter Report Location :/exports/export_load.png:/exports/export_load.png QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() AuditDetailDialog accept() 455 483 445 575 buttonBox rejected() AuditDetailDialog close() 528 484 526 531 SaveFilePushButton pressed() AuditDetailDialog defineOutputLocation() 538 419 385 480 accept() changeFirstService(int) changeSecondService(int) changeThirdService(int) defineOutputLocation() OpenLP-2.4/resources/forms/imageschoosegroupdialog.ui0000644000175000017500000000273012657640340022155 0ustar raoulraoul ChooseGroupDialog 0 0 440 119 Choose group QFormLayout::ExpandingFieldsGrow 8 8 8 To which group do you want these images to be added? true QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/editcustomdialog.ui0000644000175000017500000001407512657640340020617 0ustar raoulraoul customEditDialog 0 0 590 541 Edit Custom Slides :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp Theme: Credits: QDialogButtonBox::Cancel|QDialogButtonBox::Save true Add New Edit Edit All Delete Qt::Vertical 20 128 :/services/service_up.png:/services/service_up.png :/services/service_down.png:/services/service_down.png Title: TitleEdit VerseListView CreditEdit ThemeComboBox buttonBox accepted() customEditDialog accept() 294 524 294 270 buttonBox rejected() customEditDialog close() 294 524 294 270 accept() rejected() onAddButtonPressed() onDeleteButtonPressed() onSaveButtonPressed() onEditButtonPressed() OpenLP-2.4/resources/forms/alertdialog.ui0000644000175000017500000001456112657640340017546 0ustar raoulraoul AlertDialog 0 0 567 440 Alert Message :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp 8 8 8 8 0 0 0 0 Alert &text: AlertTextEdit &Parameter: ParameterEdit 8 0 true 8 &New :/general/general_new.png:/general/general_new.png false &Save :/general/general_save.png:/general/general_save.png &Delete :/general/general_delete.png:/general/general_delete.png Qt::Vertical 20 40 8 Qt::Horizontal 181 0 Displ&ay :/general/general_live.png:/general/general_live.png Display && Cl&ose :/general/general_live.png:/general/general_live.png &Close :/system/system_close.png:/system/system_close.png AlertTextEdit ParameterEdit AlertListWidget NewButton SaveButton DeleteButton DisplayButton DisplayCloseButton CloseButton CloseButton clicked() AlertDialog close() 294 66 257 3 OpenLP-2.4/resources/forms/displaytabdialog.ui0000644000175000017500000001331312657640340020565 0ustar raoulraoul displayTagEdit 0 0 725 548 Form 10 10 701 521 Qt::ScrollBarAlwaysOff QAbstractItemView::NoEditTriggers true QAbstractItemView::SingleSelection QAbstractItemView::SelectRows false Description Key AlignHCenter|AlignVCenter|AlignCenter Start Tag End Tag Qt::Horizontal 40 20 Default Delete Edit Selection Description Qt::AlignCenter Add New Tag Qt::AlignCenter 50 16777215 5 Start tag Qt::AlignCenter End tag Qt::AlignCenter Update QDialogButtonBox::Cancel|QDialogButtonBox::Save OpenLP-2.4/resources/forms/plugindialoglistform.ui0000644000175000017500000001015212657640340021505 0ustar raoulraoul PluginViewDialog Qt::ApplicationModal 0 0 554 344 Plugin list 8 8 8 0 0 192 16777215 Plugin Details Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter false 8 8 8 Version: TextLabel About: Status: Disabled Inactive Active Qt::LinksAccessibleByMouse QDialogButtonBox::Ok PluginListButtonBox accepted() PluginViewDialog close() 370 364 460 367 OpenLP-2.4/resources/forms/themewizard.ui0000644000175000017500000010715512657640340017604 0ustar raoulraoul ThemeWizard 0 0 550 386 Theme Wizard true QWizard::ModernStyle QWizard::IndependentPages|QWizard::NoBackButtonOnStartPage 8 0 163 0 163 16777215 0 :/wizards/wizard_importbible.bmp 0 8 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Welcome to the Theme Wizard</span></p></body></html> Qt::Vertical QSizePolicy::Fixed 20 40 This wizard will help you to maintain Themes . Click the next button below to start the process by setting up your background. true 10 Qt::Vertical 20 40 Set Up Background Set up your theme's background according to the parameters below. 8 20 8 Background type: Solid Color Gradient Image Qt::Horizontal 40 20 0 8 8 0 103 0 Color: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 8 8 0 103 0 Starting color: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 103 0 Ending color: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 103 0 Gradient: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter Horizontal Vertical Circular Top Left - Bottom Right Bottom Left - Top Right 8 8 0 103 0 Image: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 8 :/general/general_open.png:/general/general_open.png Main Area Font Details Define the font and display characteristics for the Display text 8 8 20 103 0 Font: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter Color: 24 Bold Italic Size: 8 0 0 0 70 0 pt 999 16 (%d lines per slide) Line Spacing: pt -50 50 &Outline: true Size: pt &Shadow: true Size: pt Footer Area Font Details Define the font and display characteristics for the Footer text QFormLayout::ExpandingFieldsGrow 8 8 20 103 0 Font: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter Color: Size: 0 0 70 0 pt 999 10 Text Formatting Details Allows additional display formatting information to be defined 8 8 20 103 0 Horizontal Align: Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter false Left Right Center Vertcal Align: Top Middle Bottom Transitions Output Area Locations Allows you to change and move the Main and Footer areas. 20 8 248 0 &Main Area 8 8 8 &Use default location true false X position: false 0 0 78 0 px 9999 0 false 0 0 78 0 px 9999 Y position: false 0 0 78 0 px 9999 Width: false 0 0 78 0 px 9999 Height: 248 0 Footer Area 8 8 8 X position: false 0 0 78 0 px 9999 0 Y position: false 0 0 78 0 px 9999 0 Width: false 78 0 px 9999 Height: false 78 0 px 9999 Use default location true Save and Preview View the theme and save it replacing the current one or change the name to create a new theme 8 20 8 103 0 Theme name: Qt::PlainText Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter themeNameEdit 0 Qt::Horizontal 58 20 0 0 100 150 QFrame::WinPanel QFrame::Sunken 1 true Qt::Horizontal 78 20 ThemeWizard accepted() ThemeWizard accept() 455 368 483 401 backgroundTypeComboBox currentIndexChanged(int) backgroundStackedWidget setCurrentIndex(int) 178 78 249 199 OpenLP-2.4/resources/forms/settings.ui0000644000175000017500000000607412657640340017117 0ustar raoulraoul SettingsDialog 0 0 724 502 Settings :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp 10 30 691 441 500 0 0 0 211 409 200 0 Qt::ScrollBarAlwaysOff 0 0 16777215 16777215 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok ButtonsBox accepted() SettingsDialog accept() 248 254 157 274 ButtonsBox rejected() SettingsDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/editversedialog.ui0000644000175000017500000000745512657640340020435 0ustar raoulraoul EditVerseDialog 0 0 474 442 Edit Verse true 8 8 false 8 Verse Type: Verse Chorus Bridge Pre-Chorus Intro Ending Other Insert :/general/general_add.png:/general/general_add.png Qt::Horizontal 40 20 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Save EditButtonBox accepted() EditVerseDialog accept() 248 254 157 274 EditButtonBox rejected() EditVerseDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/authorsdialog.ui0000644000175000017500000000515312657640340020121 0ustar raoulraoul AuthorsDialog 0 0 393 147 Author Maintenance 8 8 8 Display Name: First Name: Exit Screen Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Save Last Name: AuthorButtonBox accepted() AuthorsDialog accept() 248 254 157 274 AuthorButtonBox rejected() AuthorsDialog reject() 316 260 286 274 OpenLP-2.4/resources/forms/splashscreen.ui0000644000175000017500000000322612657640340017745 0ustar raoulraoul SplashScreen Qt::NonModal true 0 0 400 300 0 0 Qt::PreventContextMenu Splash Screen :/icon/openlp.org-icon-32.bmp:/icon/openlp.org-icon-32.bmp 0 0 :/graphics/splash-screen-new.bmp QSplashscreen QWidget
qsplashscreen.h
OpenLP-2.4/resources/forms/mainwindow.ui0000644000175000017500000023150312657640340017430 0ustar raoulraoul MainWindow 0 0 1087 847 0 0 openlp.org 2.0 0 0 0 0 Qt::Horizontal 0 0 Qt::Vertical true 0 0 283 539 16777215 250 0 0 Qt::Vertical true 0 0 283 539 16777215 250 0 0 1087 26 &File &Import &Song &Export &Song &Options &View M&ode &Language &Tools &Help 0 0 :/system/system_mediamanager.png:/system/system_mediamanager.png false Media Manager 1 0 0 0 2 0 0 0 0 0 0 201 604 Songs :/media/media_song.png:/media/media_song.png 0 0 0 0 Add a new song Add a new song New Song :/songs/song_new.png:/songs/song_new.png 20 20 true Edit the current song Edit the current song Edit Song :/songs/song_edit.png:/songs/song_edit.png 20 20 true Delete the currently selected song(s) Delete the currently selected song(s) Delete Song :/songs/song_delete.png:/songs/song_delete.png 20 20 true 0 0 QFrame::Sunken 1 0 Qt::Vertical Preview the selected song Preview the selected song Send to Preview :/system/system_preview.png:/system/system_preview.png 20 20 true Send the selected song to live Send the selected song to live Send to Live :/system/system_live.png:/system/system_live.png 20 20 true Add the currently selected song(s) to the service Add the currently selected song(s) to the service Add to Service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 40 20 0 0 201 604 Bible Verses :/media/media_verse.png:/media/media_verse.png 0 0 0 0 Preview selected verse(s) Preview selected verse(s) Send to Preview :/system/system_preview.png:/system/system_preview.png 20 20 true Send selected verse(s) to live Send selected verse(s) to live Send to Live :/system/system_live.png:/system/system_live.png 20 20 true Add selected verse(s) to service Add selected verse(s) to service Add to Service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 166 20 Qt::Horizontal 8 8 Version: Reference: 0 0 Qt::Horizontal 83 20 Search 0 0 201 604 Custom Slides :/media/media_custom.png:/media/media_custom.png 0 0 0 0 2 0 0 Add a new custom slide Add a new custom slide New Custom Slide :/custom/custom_new.png:/custom/custom_new.png 20 20 true Edit selected slide Edit selected slide Edit Custom Slide :/custom/custom_edit.png:/custom/custom_edit.png 20 20 true Delete selected slide(s) Delete selected slide(s) Delete Custom Slide :/custom/custom_delete.png:/custom/custom_delete.png 20 20 true Qt::Vertical Preview selected slide Preview selected slide Preview Custom Slide :/system/system_preview.png:/system/system_preview.png 20 20 true Send selected slide to live Send selected slide to live Send Live :/system/system_live.png:/system/system_live.png 20 20 true Add selected slide(s) to service Add selected slide(s) to service Add To Service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 84 20 0 0 201 604 Presentations :/media/media_presentation.png:/media/media_presentation.png 0 0 0 0 Load a presentation Load a presentation Load Video :/videos/video_load.png:/videos/video_load.png 20 20 true Remove selected presentation(s) Remove selected presentation(s) RI :/videos/video_delete.png:/videos/video_delete.png 20 20 true Qt::Vertical Send selected presentation to live Send selected presentation to live Send to Live :/system/system_live.png:/system/system_live.png 20 20 true Add selected presentation(s) to service Add selected presentation(s) to service Add to Service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 166 20 0 0 201 604 Videos :/media/media_video.png:/media/media_video.png 0 0 0 0 Load a video Load a video Load Video :/videos/video_load.png:/videos/video_load.png 20 20 true Delete the selected video(s) Delete the selected video(s) RI :/videos/video_delete.png:/videos/video_delete.png 20 20 true Qt::Vertical Send the selected video to live Send the selected video to live :/system/system_live.png:/system/system_live.png 20 20 true Add selected video(s) to service Add selected video(s) to service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 166 20 0 0 201 604 Images :/media/media_image.png:/media/media_image.png 0 0 0 0 Load image(s) Load image(s) Load Image :/images/image_load.png:/images/image_load.png 20 20 true Remove selected image(s) Remove selected image(s) Delete Image :/images/image_delete.png:/images/image_delete.png 20 20 true Qt::Vertical Send selected image to live Send selected image to live :/system/system_live.png:/system/system_live.png 20 20 true Add selected image(s) to service Add selected image(s) to service :/system/system_add.png:/system/system_add.png 20 20 true Qt::Horizontal 105 20 :/system/system_servicemanager.png:/system/system_servicemanager.png QDockWidget::AllDockWidgetFeatures Service Manager 2 0 0 0 0 2 0 0 Move selected item(s) to the top Move selected item(s) to the top Move To Top :/services/service_top.png:/services/service_top.png 20 20 true Move selected item(s) up one position Move selected item(s) up one position Move Up :/services/service_up.png:/services/service_up.png 20 20 true Move selected item(s) down one position Move selected item(s) down one position Move Down :/services/service_down.png:/services/service_down.png 20 20 true Move selected item(s) to the bottom Move selected item(s) to the bottom Move To Bottom :/services/service_bottom.png:/services/service_bottom.png 20 20 true Qt::Vertical Create new service Create new service New Service :/services/service_new.png:/services/service_new.png 20 20 true Open an existing service Open an existing service Open Service :/services/service_open.png:/services/service_open.png 20 20 true Save current service Save current service Save Service :/services/service_save.png:/services/service_save.png 20 20 true QComboBox::AdjustToContents Qt::Horizontal 40 20 :/system/system_thememanager.png:/system/system_thememanager.png false Theme Manager 2 0 0 0 0 2 0 0 Create a new theme Create a new theme New Theme :/themes/theme_new.png:/themes/theme_new.png 20 20 true Edit selected theme Edit selected theme Edit Theme :/themes/theme_edit.png:/themes/theme_edit.png 20 20 true Delete selected theme(s) Delete selected theme(s) Delete Theme :/themes/theme_delete.png:/themes/theme_delete.png 20 20 true Qt::Vertical Import theme(s) Import theme(s) Import Theme :/themes/theme_import.png:/themes/theme_import.png 20 20 true Export selected theme(s) Export selected theme(s) Export Theme :/themes/theme_export.png:/themes/theme_export.png 20 20 true Qt::Horizontal 201 20 :/services/service_new.png:/services/service_new.png &New New Service Create a new Service Ctrl+N :/services/service_open.png:/services/service_open.png &Open Open Service Open an existing service Ctrl+O :/services/service_save.png:/services/service_save.png &Save Save Service Save the current service to disk Ctrl+S Save &As... Save Service As Save the current service under a new name F12 :/system/system_exit.png:/system/system_exit.png E&xit Quit OpenLP 2.0 Alt+F4 &Bible &Theme &Language &Bible &Theme &Language Look && &Feel :/system/system_settings.png:/system/system_settings.png &Settings true true :/system/system_mediamanager.png:/system/system_mediamanager.png &Media Manager Toggle Media Manager Toggle the visibility of the Media Manager F8 true true :/system/system_thememanager.png:/system/system_thememanager.png &Theme Manager Toggle Theme Manager Toggle the visibility of the Theme Manager F10 true true :/system/system_servicemanager.png:/system/system_servicemanager.png &Service Manager Toggle Service Manager Toggle the visibility of the Service Manager F9 :/tools/tools_alert.png:/tools/tools_alert.png &Alert Show an alert message F7 &User Guide &About More information about OpenLP Ctrl+F1 &Online Help &Web Site OpenSong openlp.org 1.0 Export songs in openlp.org 1.0 format Export songs in openlp.org 1.0 format OpenLP 2.0 Export songs in OpenLP 2.0 format Export songs in OpenLP 2.0 format OpenSong openlp.org 1.0 OpenLP 2.0 &Translate Translate the interface to your language English Set the interface language to English :/tools/tools_add.png:/tools/tools_add.png &Add Tool... Add an application to the list of tools true true &Preview Pane &Live FileExitItem triggered() MainWindow close() -1 -1 543 423 ViewMediaManagerItem triggered(bool) MediaManagerDock setVisible(bool) -1 -1 127 424 ViewServiceManagerItem triggered(bool) ServiceManagerDock setVisible(bool) -1 -1 940 224 ViewThemeManagerItem triggered(bool) ThemeManagerDock setVisible(bool) -1 -1 940 625 action_Preview_Pane toggled(bool) PreviewPane setVisible(bool) -1 -1 398 424 MediaManagerDock visibilityChanged(bool) ViewMediaManagerItem setChecked(bool) 127 424 -1 -1 ServiceManagerDock visibilityChanged(bool) ViewServiceManagerItem setChecked(bool) 953 224 -1 -1 ThemeManagerDock visibilityChanged(bool) ViewThemeManagerItem setChecked(bool) 953 625 -1 -1 OpenLP-2.4/resources/forms/exceptiondialog.ui0000644000175000017500000001040612657640340020427 0ustar raoulraoul ExceptionDialog 0 0 580 407 Dialog 8 194 564 171 true false 8 373 83 26 Qt::Horizontal QDialogButtonBox::Close 8 103 561 71 0 0 10 170 301 17 TextLabel 10 80 59 17 TextLabel 0 0 0 64 64 64 64 :/graphics/exception.png Qt::AlignCenter Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. true exceptionButtonBox accepted() ExceptionDialog accept() 248 254 157 274 exceptionButtonBox rejected() ExceptionDialog reject() 316 260 286 274 OpenLP-2.4/resources/images/0000755000175000017500000000000012657640341015031 5ustar raoulraoulOpenLP-2.4/resources/images/custom_new.png0000644000175000017500000000110312657640340017714 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÀIDATxÚ½kSQ‡ŸsrÁ¶A‚R*Å9ÝŒ“u«ƒ›»S»ä?hŠ%Ô‚C‡¢ éjÅ=µˆ¡BÓM%è͇ƒ’››œ×æàáp‰_?øqΞç}.óü+«ÜÎ\Ë,e/g§«‡õr»ü@–åI0‚ÆžAkm«”JôÙÇvì²xi‘ÍùMî•ïÎ¥¿¥«%ÀÍöé6ÕN•ýO>W ˜AMcX R)ë±ÓÜÚo@í{èN„Ë‹›eÔ#5Bõë vçYg®Ì4ÃÔ24¢²"S3³ò•¯4gî¡{4w§»}R ¿èùt8ÿóû}8‡Àë†Q^!·h…¢šöó»° ¸®âŒÄV'í.\*dËx|¶Œ¢j8ó…ïåÓ¢:érµ~Q8 ›àz3‹‰ù L/BöÿI¸9ŒÈ p‡Š,¦ÞªÈyÁ†gÊÕ®oÙ6é"ÙpŠýP•í©}þ2}ÎbN4IäDq…ÿÎúô´—»#ûkQînvIŠ}z=œý^ve&'gšÂ %QÔ¨–k‚Öïbn¼Óß'”o "‹Ž\¤^A¸º·ÃÝß1ÔÓÃK¤ËÙà•×8þþ~éàžòÀn·#÷t Æ2„Ä—B¥- %Áx8ðˆáñVÂÏ9ï9ç}¦X||ü*>tDÙÿº„„òü°ð0òL@hÓ.OOãÊM\¾Œ™+W³33˜½õ¼:; ß å·ü§@¾ã÷„¬u9PTÞQIÂï“]½Šk7qí®ÿ0ä?Α¹üFÞçnÜ@p~^Ö K€ÿéõë¸q;¸8ñ½1Α¹£££øàƒ“xö/ÏaÏãOʼp±B*Ä+Èæææó èMÆNy…BòmkËf[Pj´…’+Þ® 2A0”°.-/áí·ßÁÖ­ÛŸ_F‹wÞ=.ä>Ÿ^¯OüéÏhj|_žý*Lüx¥ÇŠ—NzØýz7zzzOEL}}3tëM0›ka6Õãà+ÇñãÇqäÈ>|ž<‰ÉÉɰ¹xI XZZBuµ é™ÈÎÊERR*Þ|ó-æÈ¬,<22‚?l;w>Š_Ü÷Þ{—Ÿ…jJ’ë…2¹»»û÷ï‡bËËË"¦¶¶……îi55âå—_Á¡C‡ÐÕÕ…Ó§OÃãõʼEŠfdʶÝàxØ^xáy†ÔŒ}ûžÁââ"fX}}}8qâþøØ;v §N=ÂeFˆQ’¹Œ˜`¥€¹HôööÐÛ645mÁöí»pôèQÙÓþþ~Yü6Sˆ%n·Û…(–*•*(5ÕÀRÙkõìÝ÷, Ê>êtÅÈÈÈBZZ&žzêic¿ À"55]þS«×ÀårÉøÂâ·Ëޏ¸Äð€–§5¢H_Žú†6LM¤7„¡¤C,–Zã|VÎu9Æq”WàÕW»1 Êo¼ñôºräjô‘ (6TÂjs §·‡èÅ¿ÿó1ÊÍu°Û6Àjm±׺ñYO/z™|{÷vÂÆq;áhhÇçgÎp¼Ÿ|ú ¬U 2^Vj‹L@B¼ EEzhµ:¬+,aèK¹HL¦* ±²*`4Zè¹fŽ0•qÌPŽõëJPT¨G¡VÇw> ×Cõ»ä0“ðfíƒ »Ó<ÅüÓLù§1ÉmðNà!&¼Œ{ýópqpÃã~¸Ç&ᙄs؇!/.¸½èwyð qÎ9Ž/úG"‹Àš5ÙôÊŠ ‹U•u»­‰]¯ ›Ø^Ûù»£ØØŽVÔÕnDMMªªê¸ï&XÊm(cTJK-X›©‰H“¦ˆÙë@gçs8×ׯ¿>‡>ú[;v mÓƒ¸¿}š›6chlŠ‚Ú±©u 6nØÌ÷6¼ôÒA€VYQ#[•ŸÏ-P¥*Jï,àVËÌÉ)ä¢èÿæ<[ìcؽûILŒ{000ßð{¸G§ÐàhGËÆlhÞŒ=ʼn¬,-òr×!'[‹””ŒÛ}i‚<ªp"À `1ÛèE-ª­ þ÷ßÿÜîa8êïG{Û6vÀõÎs0äµ`㡸Aã¹QȆÖÄ;ÁßBCCCó111ŽÕ«Wß–€ÌŒ<î3¾ÜŽ Öü–-;d¼ó™ç%­-[ÑPß΄ó1ãMPlEG”¡AçÀbLtt+É!Lw œZi©9¼L˜¡×›±k×nÐxF`4QcßH´À\Vƒó—¼(È7€¦ô|¹QùyJº]®Ðg΄4MoÝ÷ K¸RÔ™’]]ÿ@ 0ÆÆMÈÍÕ3©¬ u„Üh°J©åæè¡DíWŽáa·;Ôß×ÇŠ¨zH!H@b‚šwº±Òìöf6›Q Šuf¸=3ÈZ[å: ùÈÐPhà–dÍÎèèè0ÈW\H@ûÕ/c÷Û$ÄÆ¨§ÆêÄT$©2™Õ:†¼Ú÷ÞÈú.`–¯“o~¿»œNö‹úGV­Z%ä `7dƒñ`l‡Ñq†Ç&Yï>–œ®a/‡YŽî \¸4ó® ô±ÓÑ„üÒà óÄúhTTÔ ò#pß}¿Fbb ’“Ò$ÒR³‘‘®¡Çù ¹Ù,Óìl>ùÎŽ'Ùî¼x‘•Sú8³]ÈïF€Ü@‹ŠŠãù¾éé9$Í#Y4LÊ\6–ü¼õÜ¡—ggç_C>/«¡ `Orr²ÿTl™÷ˆˆ˜ØD^&THHHf¤ðT»™ iŒLÔə̃âÇã¡ÐôÝjµšäwoFD`KKËRr_}y6 R©vŠç?Åâââ~ǰÜåÿ…ü6©±±±?¿[Þo§P>Ä9åæIEND®B`‚OpenLP-2.4/resources/images/bibles_search_text.png0000644000175000017500000000051712657640340021372 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<HPLTEÿÿÿ fðz­õ gð hî hî/€òU—ôw¬÷gîiîhîiïhïgïhï‹‹‹‹‹‹LÐÎótRNS224Gxxxxxyz{|}~€‚„¹öZ“˜WIDAT…ÁY‚@°*òÄm¸ÿM%.ÉüѲ¯9W *z¯Gy¾¬=:ÅÁG‡ ø ‚‚u#mi}Q â¾þ ¢D%8Ý–å:ÏÓtÇí{,À ŽÍüIEND®B`‚OpenLP-2.4/resources/images/book_add.png0000644000175000017500000000123612657640340017302 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDATxÚ}ÑOHQÇñï›÷柚ºê–fP‡‚‚"ð u*…@2ñÐE»uõÒ% ®ÍòìW†pihÕ ›ÇŠƒ”Ž]PušYŽuÓ»:åXY^ø8€R’†À£š¯ž6hM…×ó© Tæ{4…Õ„0B`4h@^½€r]ZS)CŸ$;[m ʯ6àJE4ø>õHaƒÁuë-P ÇBß#)ù:[oT’|~ß~ÈþÞëÖùBžBñ€„ºKd"ÙÝÙ"ÚÛf#·ÍçÕoüO±³E?~ÐOµóþ6£IEND®B`‚OpenLP-2.4/resources/images/openlp.svg0000644000175000017500000005747712657640340017072 0ustar raoulraoul image/svg+xml OpenLP-2.4/resources/images/author_add.png0000644000175000017500000000150412657640340017650 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÁIDATxÚ…‘_HSaÆŸïìl;î¿n9n*ˆˆL½H( í&¢@º‘º ë¶nDJÊu˜RD$‘A¦T¢X[å…˜bdÿ¤5MÑ¡–ædg›û{Î×§þà»ùÞçy¿çý^PJ÷=x‚“ÙÎì¯U£U¾¬ö¬)÷Ç€Dd%0›Ý)à8Ž ./åý§}à #r$ðÚÍBß÷%‚-‘Ét~-k¬:o‘E(qYATŽ!*IˆÊ2¢Q ’,ƒs,k]uß/+ny-+ïù¿€ý²%V/8~üÏ×Ç”øÍœÒ™:'ceÎ'a!Æ1³'T ÔëD0*#"Ç•bˆÊ2$)Ѝ$A‰Å»™EøQËÊ{¶~[@°ozƒxÙ=Pöm…}Ìygjeõ+P5õ•x,v*8'‘&ÔØR‚Ð(ÃÁŽ ‚ŠŠÑ%¹ ”0Æ(@™PâPe‘{⬺"_Ñ›G6¿¡nèIG|Îß9r»àö}¡ž®mZ\ù ×4à:À5@×Î-¸±O¸G* @ 0ìŠà™­ã9..—n—+1ÜÝVÛ•mGŽÊÅ —ßå·­øî°Î\àº6™N¿é %zS‹+5€n8­ë€ÃQΑ:žÅtŽð„ÿ$mÄu൭hhïGžÛ—(ÂåárgÃívÃåΆÓ)Àï nxè J1 Šo~äÛÕëù‹ |ð4Ø´ë_Ðå:°• 3òœ$Œœ§  û‚`hKÞ“Ø'Ô8’H #eD»óêJÀ‘Cå"’I’F!Ë2(ÁSÇž½ï¶oU,ÕS*´üª]UÏ4¸BL¤!ùLh"²4=º”×Ó¤&˜ö“Á’Ç¡èMGúaϲ¡"O§ Œ `I  „2¨š>Ù:îü\õ³Fv­o,Zôk„Þ;}XfÜxV<üŒsžb6“£0SÙLmš~dhp(…š*c8ÒCKŸŒÑ>¬Ä$Ž”1FBX,¿2«nÖåv»ýàŽµÁ¼…"ºkÝ©5ë°Ê3êâ‘àNnüAB$ƒ’ÏC2´Ã &¶˜®%Ô`A¢2猒5 ±=¯˜…¯ T` 0(5†E¤è]Yãgyúþxï{?_ù2¶­~å›`™q#¼U“¬Á¶}-œ ŠzR2¸™öIç’!=òIp(É‹¦˜z…¤&$€8Ô'£#¢¢¶È=P&i’„2B¡éúT6væ’æÃ¡&y÷ú}ž›…ü5lH@oÝ )Ëó×Ô éQ2å~Šî P81ÕøãhCZî›Ùp<½H6R‰k(C$ÎÑØ†Ïã@+  ,‘ £ T1€³H1eeÜs²Ýž5¡ío‡O真ç*áàSÚLu˜sÝĆAŽ1h LuަAŠóU„~EGM¡;Á3# 60F¡s”CÁ»­/¶«6äÝüDÞ=qÀ”ð"£¨›ó<ùÇÍ•Ó$zÉf'¹MÚ@SÄM}Còœnj ¸é{tn0‹#]/( 5¼´§QÎàu‰p‹.¸Ýn¸Ý¸Ýnˆb6D— Ñ ã^áš_%U îE¿=>ü\cWÂý7(ªf }³Ú#³J˜ÎS D˜dV:X@“é@0ÐB’ÎÊ SŠƒÝPTå9A(„4] Ôh­9ˆM’¢?Æ_4ËW^õVß__ŠÉ€Oß¿!·´âq:”ˆ rž¤S‰Žèþ '¢ÉMÑ×Ý¢èZâx²uÖ˜’¼?ÙFJ+ XlØß«â/{Ð<.'Ü.nW6Üîl¸\n8Eœ¢ W6âÓI×W]u7×%}Ìäýè.´¾ðïw–ξéŽÃ½‘DNfRßœ4£Î'½× ë  ç(1ª×=ɈÄ>Ñ×€è0„€Ã’­ôe•Ä8°f_c‹ì˜P ‚ L ŠÑ>/<Ù.ô°<ì;éi×NØ —ŒýFT”c};¸·ù-}q-¡gN™B «« 8zô(4MƒÓé„×녮냆°cÌBHbáH{´û`Ç,øz²Æ_­l’ÝѼ6P’¥ZeAÔ;˦Ñp8zjÔOc‹™l`)2 ù'êjG¢Aò@m\§Íÿ7yä¡e´°°áHMMMضmrrr‘›Ÿ‡p8Šƒ@ŽF¥€ c§:JΙ#ß?þ½“^S} ½v‘ªÄ»¶ZÃ7:¡«Õ¦‡˜‹å˜3JS˜%Œ&(e „bʘ ȵhjþ\­þxŸ]¤²U«V‘¢¢"Xm6#Ú¢ˆºqã°wß><½r%÷ìAåÈj€RhŠ’J=.cwñÅh-žv“²tü_NùÁˆ}âìÿ* ¸S @hô\ýHœQŠÚæc‰IMjêœÐ3p„0º²¤°ÍGúÈÆgô*Ö/øüåxøá‡áEXƒÅj…¦iXñëxõWÑÞÖ@ €‘ÕÕ¸hî|º %‡.G°9ç|Ì;óöøÒº'OùÁˆsÂ…ˆî^¿F÷¾1›Å½zÇ~Г Å’¾(ÊN@}Ó¢GZr]vTƒ&s²í%­þàË´²ÐÃì'nZ¸¢Ó 5G$F ?ˆ{î»u³ÆBp¾²B455A+õgœ ®© q™oÈŸGZ½nP–Ö­:žoÂÉÙ½¶úKÈÊ™aïÝÝ–g×HüÀ‡z´b‘%Ù¤þCÔï4çÓ'S„£F”ᘫ û÷nU'ì…–ä ŽÒ20Æ0²ª cèééA$Ag_/þüòs¨ž[Ž·÷¼†-;àB–ñ~¿=½½È± ú«¾´Ï–7'¶´î„KÅÂɦ@ìÓ·àp焹·ŠJëSN­‡Bj×#—¦5: ¦V™¦w…ÉÏ(ÎsÃZ\ƒ½½’V±åßøxKTÈ.)† ©2VäóáXG¾’$txýF|îø;VsÌ=ç 857ˆ@!õ+ON.ú#1uuÅ-q®ÆÎ–Nj>mÆ’¦í~gå«ï]Jì_n%EÙ6žš÷d®¦1 »U ¨®‰Îü ìX£NÞü ­É&‚Û;ÐÈ€Ãá@wW>ŒÆÆF|²m'v·nCgÕÞqhÜÜŒ‹§Î†&éˆô,Ìr8±fì]_ÕônÉW¨¥ùdüùÆO‡õsa©N…]oŠHÈ%éTï÷cÚ ]ó“Ôç@IAÔÂtm×Fl¾ls:E‚JijËI=ÙÙˆÅbÉ öìjÀù³¦Áf³A×9Κ2`wÿã;Ú‰™³.„µzê‹ëÿÕµ÷¿…·.=)„o @ôÓww©ŽÜ±8º¶ow3æ´oפ¼z¦(ÊÔ· Åå#ÐJ ¸ç£ç´ñ];…ì¼"X­–ãþN_o/⊂@ €âÊDcQxs½ „bÓ–Ñ´ësôtõbúôé¸ú'×4ÿÝí·^{Éâ_bíI:JÇ-;C íRå4›Gê˜n‰tÓ¬¿Ö¯ ÔhdÄ®0×Á_‡ÎŽ£jÙûˈŸ†˜˜í5Ö÷)!dЖ1†ÎcÇShš†òÊJ¼¿~Š K@( Æ4úò0¶lÞ‚Ûn» O<ñdïæÍ›jæÌ›¯ý~Ùßí"býìÆr©u\\Ó Ÿ»Hoë PÎÁ* ¸¬mÌÇÝŸüA-îl°¸rò`±XR4Ϥ¾9·µ! Á›“ƒ çÎÇ¿Ü/¬V+JKK ÑÝÝk\‹§W>uä“íÛk-‚%z†”8¡•ÔÖñìÚ³ÐÖV}¯ÿB÷÷YœCä8ç äĸsÎQê÷C’et´·Ã"¸qá"Jq¸½ùE><÷§?ã·¿Yñ‚(Š¥e~ÿ)9ÚÞ.\|Uyû–WÜ6†h8„@  ›ƒ8¨NÙ^‚pˆgnÍ ú`Ï/Q§Ìš'Œ-pÀfËÒËËJ_ð`UeågMÍÍ;fÌ÷ÿ–˜xÞõ/èÞq5¨@$IJ9m'ƒ•Q‹Km(˜%´ºk?¶D»Ç—ÏÙ•ü½Ÿ6`rý¤ïî™™{æÏÞôÜ5ÙÕÝ\ÿß¼ÆÃ!è ï²ûÔõ%WãªÅúç<8ù‘i»ÌWžçOÁŸGÖÜ_à˜oêôHV®©ó;É?¡«P©EÝ›;««ïÔ7•_ûS¥Büë—p{ ï¡y?Œ%móÿéÿk– ”?ƒ…rèV§Ú‘7ž¶çN ý®ŠM¶xà±Ø£ó_Ç’µˆ.¿ä‡ùªlÖåK7·|p®SîaÔb5œg%zÄí×{sǽ9£q•þUP£/”vmy¦åùåŠã®W]qÕûUYqþ]¿½XøÔ2k¬±-ñ0ij܈Š%_q«c½5|SyìºwÀuýr„ž[‚¿Yú\ûHîˆK®KuÖÅÏc؆m؆m؆m؆mؾgûµþááG&QIEND®B`‚OpenLP-2.4/resources/images/general_delete.png0000644000175000017500000000123212657640340020473 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×Âá$í^Oµ]Ò„ÃM ÐtŸ· xµeœÙ¿×9BëÕª¡ªë¹|~ð˜UëóíÑHEde “Ë X™Ä<"Ú] h‘2ŽR©tçÍ»·÷UUeª¦m¿Î†eY¹ÇMV´Ø8é´¢Q(£@Ì1¥ôIJ¯o+V*ž5ÞËÔ¹.}ü{›éM¤·ÒMUVìîV¹b´ùseƒõµjŸV*úÀ_}i½$ý6ë ÿþü&ói›AIEND®B`‚OpenLP-2.4/resources/images/general_edit.png0000644000175000017500000000132612657640340020162 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsììu85tIMEØ 6à¼}VIDATxÚ‘]HSq‡ŸsfRá2•0²ÕÂ0¨0½1/ºÑ‹À O¢ ²L«‹Œ`AA‚‘`EÒ÷Ea¤¡a(¡¨‘YJê]s¶LÏÎtº³ý;ØX[P¼¼ï¹xŸßËÿH`°ØÎP°[^y{cAæš#!áDH/„háü‹xz‹xyßNF{€—«30Ðüp»‘eÙ(I’õÒc† Ë_KyÝú…ë­2,SZ–G$ÉD`2™ÂS¨›LÆì·WÑÛÓŦxvnvsú¬äjÉ’ÏÅA#ÑH×KŸÃÝ7õÇ·7ØêãYožáVéj*ê—jž·iÓ‘ü™Jž}2þ„ Õ>VHj.YH­@_ö“aJŒÔ!´éÇ\¹ëa^Q©.QÐRËPå`1æ‚$àsœ~ˆíΟ‡ÝÜ<5‡yÓAfyX­V€%c'ê Œš‚З«y×íÄvtŽ-Ûrõ’––†Åb F`ü.á'à¨ãÁ³~ž6OPRè!7'þ_GHNN!33aâ¢ó“m´5·SÛ4IQÞ"‡ y1¸Ÿ)çæ5Iôõõ±Êœ ýU z%¼A+{wQ~Xæ•ý8Ã#ß©¬¬Ô/HFUU.•—¿ºb?gÌ:?¾ÎIFQ6ãñûÈÙ“9eÈXöz½Ø®ÚN>"È:÷jkĵËÇ„c¤SøýË" êÝ/:::„¢(¢ì|Ù'`+!¢öQͲÝDñ™â`QH`d…¿cÑ€N`‰(~™Ã ôööIEND®B`‚OpenLP-2.4/resources/images/openlp-logo-256x256.png0000644000175000017500000014422512657640340020740 0ustar raoulraoul‰PNG  IHDR\r¨fsRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ65HvG- IDATxÚì}w|\g•ösÞ;3ê½K¶%Yî-®±Þ H€,»„’À²Ôe) „¶,véméí[KÛ NOœê÷&[–lÉ’Õû”{Ï÷ÇmïûÞ;j–„hø 9£;3wfîiÏyÎs€™ÛÌmæ6s›¹ÍÜfn3·™ÛÌmæö2ºÑÌGð7ý]Òÿ›µûÇûït÷ÍÜfÀÌí}g¤ýí·rØã]cfͰ-çßîoSûoKz\Øãgn3`æ6†.œÃù‘~¢Ò{Ÿ¡#Bœ„îd㶤¤SúwRú‘±œã,ÍAÌ8†0s›Àwá~†fÀQÒO€L9ùÑ\¢H.„‘ÃFN E²ËÉÈ*c‘QLFF DF!HÄQ$"€ ')` €e­˜S +Il%`Å{ÙŒwÊwÁ9Í©á2‡º`™CÌ©AXÉAXñ~CFŒˆK?I͘!ÇÌmƼì#¼lðŽqgÈ‘~çÀÈš-rëVRFÉBŠäÖX0ò-ÓŠÂâ,ŽÂ(*/AuE)ªÊ‹Q]^ŠÊŠÔT–"?7ÈΈ!3+†ìŒ ÄbQ€€d"‰áx££ ŒŒ&0£p­íhmïB[{'ZÛ»ÑÖщîö.– A)JC$Ì~N žäx×Ak°i'Ì‘Ç) –~:ŽAv3ÂŒxÙEy7•ˆiŸ JäÖ-§Xñ<“2ç±9@¬"–W jk*P7«•å%˜S]ÎsgWQÝì*ÔÏ®ÄìêLŒ&€þ! (þÁQôŽb8ž@*e"©ý$’)€HT fˆD"†ý“‹ /'ù9™öïÜLäç9Ù@ËÉQmnñ–6m>Å-­ÔÖÑ…c-§ÐÔÒŽÄ`Ÿ$ÚD³Á£G9Ñ}ÄlÚ   À€æN¦`†” 3·ð7ñùŠ4>@!(Z )¹µë)«ær+œF‹bÍò…|ù…kèòk0wN9R&LY0M ';û±¿©ûŽu ¹½­H%M±óâlŸÛ–À`¶ÿÆÌ r2زíÎþ;ƒ-† °Û÷³eAKçV`Å‚,Ÿ_ƒÅõȈE‰D¢àpSÞ¼=¹•·<FãI$“)X‰Þf>ùˆ5tüYX©p²@/€Á4‚5“Ì8€—r¤w£|¦Ý œ_#{¾(Xt©È(]™JQ)Lä×ͯ§›¯¹W_¼ŽgW•QuEÚ{’Øqè¶jé® $14šÀàH¦i‚Èy1rŒÃ`0`1˜b ä8˲[–ýƒÁ`¶‡Ë>–1ȲŸ—=gÀ°, FvF ¹91äfe ?7 ë*±dn–4TcNU.ZÛûqüdßÿèúý_DZÃÇúwr¼s§Õwà1˜Ã‡ô9BŸ„+$¥RaÆÌ8€—Dzï‚vÙŽÑÁÈn9sÖX‘Âu0ò΋åæ4̩ƂúÙ¸ò¢µ|õÅ瓈fáx[µtbSö7u¢oxAˆ‹êžq°, D¶áÚæa©†lYN¤‡ý8¸ ×  ÏØNÄ ÉY°“¡;ÎÅ;Ö{ ††išH™&R)9Y1l\Ñ€ VÏÇ’†j,¨+Eÿ@~ø~àñ­t ±GŽ·"1Ô;sày‘êÝb 5oƒ9Ü Çqè8S&Ì8€Ýgè¶åbŽÑç(PhÁB£xÕ›DFñR˲pÙÆ5ü¦×¾‚.Y¿ D@gß06m=އ·7!‘4ó´#µqá¥îö¿ÓGrÏ)̰÷8†nÈ®3p³ûb¶ÿe1@dg `ÀqÞ±l'äýü׃-€rÃcQ]%^}ÕZ\}ÁRD ðÈ“;ð£ÿ¹Ú¼„°âÝ{Íî?G²ï €v]úg€ßvœq3๹Fï¦øùŠQFÉjQ°ø&g-ÅJo¾áJ¼þ¦«°aÕŒ$ ›¶þ¦N´v¡»$à'‡:×ÐÁ~ÀN­.;xµ¼ó8¶œ¿«ÏëƒlY;Ö)#ÜçC=–Ê éyõcís·Ï9e¦@Ì*/Æœê¬_1×^¼ù9™ØüÜnüâÄoï}@¢Ó ‘½Vßþû8ÞµÝÉ zgà–) /˜¹Í8€³žæ»`^žcôeˆ/™åk¬ÌêWdæ”V5ÔVãæk.ã;n{õ¤°ûhîî8ŸìAFTÀ r"2 ÙG½‚€-K2N?CÊäH8Ö)œhÙ„ï,|CvŽ%ØçâDzó¼aÎÂ+'¾3R©FFX½¤oyíeX½¤…ùøÆîåßÞ÷(9ÞŠ‘Î6o½ÏíØ†D÷§g0 ‡3åÁŒ8+7·WŸå~€jÊž}‘Q¸ä,ʬŒÅ¢Æ»ßüÜþÚ‘ÃÛOà¯[š1O eZú®×ò.X)ŠºF¶ÓkÝ8=O2"x@5N´C¶S~Ï8]èÐÅ,x©¾éX¶"é5ر4éXï5œÒCwJ6á¯|¬óþôLÈ{?Òk°4ÀN+V:‡e?Î4-$“I¼âòµ¸ýÕWbÉü*|óÇ÷òõgj>Ö4hp÷&³{Çÿ̓Ž#èÑ2‚0óxŒ½L'Õ¯Eç‹‚E¯yónÉÏÍÅûÞzÞtËõ8ÐÒïý冓0œ~@´ƒ½Õ¨×ìpð¯^†á²ó¼d§çzËOv¬8Ki˹Dzcøz*oGúãt£³Äpûÿ˜h$gÖR}ÿ}(|ç³ ËÉl,µÒ¹ c4žÀºåóð™÷½sjJð£_Þ/|ûô ÂhüÕ·ï÷àÔa§œÒ`ê0ÒŒx§ûynª/ –þ•]wkQaqÖ×?ý!¬Z²Y™10€ÿüÝnkðÒuì €Y">6`æòð¡ÀíØë¼cÙ¥ÚÚ±Ò9¨Æé· @vlÙÄ"7Ò‡Ÿ\³+ÎBr"JÆÿt2<Àb)³p Iš€ƒI¸åi1 A˜;§{çëpÞ¢:<öÌnÜùáÿDWw÷°9ö«oß/´8Áà˽,0^Æé~6?¿@eV^EEk?–]ÜpÅ»n¿-òß_»‹*Ë* „«Á¸pIºâ8Þ1!à÷Þ½0ÂÒŒ¯ëì ˜@åø{Ïë¹o)ÊúN{2EžS¾†×™pÿh1à ‘ò^ÊOpè~~2OL΂k¤® ³þ¬G$·õ蟉wþr¬MR´ö¹v÷öãž?<Š­{cÝy ñÝ»ï„iE#Ûu¯L¥ëÈFjpØyyÎàe— ÐËðý°IO†aØ•dI2"<¶» ¿z¬‚ÂjöqÀ, ·YH ,G@°]Ó¤òníEY ‰Î–%EN™-h),CÖæ äç K¢!S0›PYˆÎ±ñÀ? €ëxÜs°Ó! tÿî›ìð,²@ìL,X~×D ôLÔÏ®Ä?ÿÏÈËÉÄMoþ(?¿¿‘̡歮­?pD* â/·²àå”ÇðóThù‹o碵-.«]üÝ»ïâ¹óÏн ר÷Í«ÎÃòºblÞwÊœ^D%õòq#˜|ðz£”6!}ÆÝ}ýøÅ½!•2éWßþ,š×ÀmkZ0jT^‰îS0G‡¡*ñŒxéDýˆƒð—˜/rçÞJÅk?¹ö¼U¹÷þðëT?»†,ñõ¿éÇÙÎ`1£¶"Ëꋱíði$S¦Ÿf{<{+f³9å:ÉÒJÿb÷ÁHùéXqnñMâœ{HK™gAþû 81Ç»©Kr!ÎÕ øe ë ©³á:2åyCJH¥Šìäsƒì„äó€eZضû~üëñº/£Ï}ø­xb뼓}™×LJ8ÑÛUÕ˜gÀ‹ßøcÐ7 ÀÂHùÅŸ3£57ú_Þ¿ûN²#„¢üaŸÎ¨Y‚ B•ägâ²5Ør¨ã)5~1iÀ`X$';’§©eâ,d -Mø@ï½] ”ÙwžcíE22¿ÕÇN€$lƒTÞu`¬A ¬ø’ÐÅà "?ÂËÀ ˆUQk]ª0€æôLÈýügŸH&ñ›6ãÈñ6üø??Lå¥Åøëæ£"¹•K¬¡æýÎ3ÉÂ¥3àEÚÞË„­ÄS‹Xñ•(½èî²Êúù?ûêÝ|í%ëÈ4mc 3ø±£|°,>Î~ÞhDàê5³Ñ30Š#­}0 RÓeò 6Ô0 Ùt#’Œ“ †œRûÀ£läÒ±Žã" á1¸}wöqûy}|¤®+ÎÍvdB6¡— Rç€%þ|Ú€–¥èeˆSjÊ!ÖKé…ÜÏøÐÑf<ñÜn¼ïŽ[ðÚ/çû7ï­´J/C²§æè‚b¥3àEdünÊ¿rn1JÖâÂuksîûÉW©¨ Ø3þt‘\6¸°š"sïcf¬_\ŽœÌ(öë ©—}N½oÈfëµ4\Žô97Á:Ü‹ôŽèÏ«€š.Ôvi­K…dä}îƒT,ÀŸIÐ?Ÿ°®ƒË ðJ¹IxˆWÞPšA*‰”sU2?èìîÅÿçÏ¸éª èKŸx+žÙÙ˜ÛÜ“u-¬Ä0==ðˆþ&JãoÀø]”€E‘ŠËþ³çÜüÕO~ïÛ?PÊ´/0!h\CNåÓƒce3æVbÝ‚r<¼³%ÔHH©eY홓 Ú‘V'+µ„Ä…_RÌN”Ö€’”ËÏëa€(M)ê”O‰HõNŠq’–ʳŽyÞ›ì@µÏ0´œP3” ù¬ÝòJîÝ´MíøÙW?HóêæàÞÇoˆdW-³†š8®/ñ· /qãÁfôÕRFéå¢ì¢/ή]0ï{Ÿÿ_¸ö<òØe 1 y¢åÀD²ÿ¿íôº 'W®žýÍÝèìµõÿÒ‚Yð# Ÿf«¤9è¸-9¿œà` ­—åT^=‡@ç€$¦#‚$¡@Íî“Ê%ß°qÏüô]±L¹f—ÏA&)‘Âu`© d~„†4„eXNBì;Ü„ŸØ·¾á¸õÆËøñ­‡«ûRE—#Ùß sØe¾¤' _ªÀeõh Ì²ë²‹¾°jÅŠÜß|ç+(+."¤¢)²žÖO >Î3¢W­ž§ÑÚ5¨†:­%§dÄ`‹T€OGýå4Zbâè¨üX©¨ÙI­Ùõ9„†Z³ËÎI¦!³ÞiH?7„«¼•„E ì9Јçv¢o~öÝÈÉËÇÃÛÚÖF$£M8˜x©ƒÆKÌYe;Hÿ"£d݇ͬÚ×~ûß>Ž›¯½‚ɉ¤þ·‰Öõ“u"éÀA(+ÈÂ5ëêðØÎŒ$L©×-dr ¬×²Z @28ÒXˆÁHÎÒàÜžTŒNÎâ‰UÃ@8²ï2ñ¸‘\wNiS9× É-Vu´ÙoCJÇjóú^Èíͦ£aN´uàÞMOâ[Ÿ}/-_Ô€ß=¸ç<#–_Í#­Gào/zÉ8ã%fü•e}Ê%—ýäËwóÅç¯"Óä1©¼ù=UpÐu"j´ûqDöª¯ë×ÏEgß0¶t#jc ´ ÀÜ“‘x—kùÀ±!ND™¿ë@=Vmé…+k @Ÿ€” EZ9!—)Q*Íq¢²>ÔÄ!HjØÄ!k¥)e‚þ>uFOß~÷çGñ±÷ÜŽË7¬ä{î}zž‘]ÑÀÃÍ{¥rà%áÄKÄøsTX!Ê/þ\NQíÆ?þì{¼~Õ2²åöI­%‘>ª‡ý·Éyœ¯,Ýq4±*ùqv» xÿ­«ð–VxÃ,iGŸ.âEW-%'+(¾â°:¢9kYSH½­Ôì,/Ò§ =ÇÂj.î½O¹Wœ|†=¯REHoOÏKÜ Ÿ8˜%Ò8Ú°/\z;hëèšëoǬêRzæÏ?àÜâÚ¢üâÏXá\«¹/…+^"Æ_ˆU‘êë¿_4gõÿý®Ÿ]C¦‘&cÈã9‹°(>ƒ³sÂHœqãÆ|ùÝW"jéÜ IäøÌ»0Ç9–5³ Mxx,—3–Å=Ç8–Ãñ cMLn¿i¤}ɪI¡M#]Ù!ÛêDb.…&[á×IÈcåDãê7¼ÉT’žßôC.(ž³:R}ý·±Ê¾f_üN@¼$Œ_d®•W}yÖ¬ºÊ{ø-ÎÎÊ"]´cª†œÎ9Lô&?ßD³µÔ°ÁÁê’\|õ=W¡®²ÀÛTC’¬"öJMÓ•î¹2MÈfTnþ˜Æ%çý¤¹6½G¬0TÝ@îP,œ”YåÕˆ B-S$‡å¡,åƒÓcð-³³! á5oûžÙ¾‡¶þå@'×ç“ùÒƒéžçÌ:v«.+#‚«×Õã`K7Nuúìº1D@d °"âÎå‡ MGŸ¬OÄ¥Ã[Dyn ¦Ù²òKpV"4Im¹0ÒrÂÄç& ɼ©sI)Тå~ó§1¿n}ý3ïæ?<¸%¯k4÷| {àA¼ˆˆ_Œ@H€ß²Hõußœ=knÕô-<°»“~ñT+´ cM}¾GïLO>Ýqé =‘÷·©µí;.9o6r³bxfÏID""0,·ª¼ùxÎ ‰ÚòÆ_éõHkñ±D7–'õÞ¹:}¨‘71¨µ¬ :€2§!>!-@íXÍÁéï?0 ¡tÒÌM (׋EñÀÏbph”~úÕâ7~:À*½È8ò€!¨ËKgÀÆŸ »Õ·@”_ü™¼‚Êù¿û¯¯òžÖQºïùÓDèIâ±Ý ÙŠ`çd r"€ñ²ˆ±œÊXŸ.«°_°´¾Kæ–ãÉ]'`š–×þ’ƒµ¯4\é½qNW;ìH{^V„XB÷ÁP)ŲôBÏAo3BÅX“×spÖuäs`u>!ñúú¡e$¥+€Æ¿ˆ°cÏT–•ѧ?ø6þÙoÌKˆÂù<Ô¼öB’è(½ÈŒ?6Ég±QvѧrŠj7>ðß?àÆÎýü‰“Ȉªe1#bÞyÕTfxȶ¯Ö£Êy¥3ȱœƒþ¸É,OPDÞE¨*ñB[Ý 8{ ¡®î–_ÃÝlË}©»!¯;ƒ½9ÈÛK(¯gK²Sys1;‹MµíAúû Üï;&‘|¬xÏî¹Î¥c½Ìà ¼¶¼ñH2Ý×Å¿òIl\³‚Ï»æì>þ´yzóg쇽³0ŽÉü½ˆQlzoƒQ²îc¦Q~íŸ~ú=NF‹è§O´¤üÜ/`vq&î¸b62"ÂY°I®À eÈz1qÕ!{Š1eZøþ½ÛððÖ£„ÃgÅø1å†z¬O)C} ÍÀ]•#Ù \iî -+ß³¥-9 9Ö©÷½-INpY–¥ƒäHZ0JŽ£ƒ¶ÎMÝÐ,=¯,a.ÖP­´×ÑÍN~ÿ£/#ñ†î$Ãìø«Ùµånº'ð‚gÆ‹Äøc°{æŠÂewZYµ¯ýéWîæ¼’9ôýGšœåc·Úú†“x`ÏiD0»4 ¡f“Çý¦’ÖO+Йƒ‚€Ëj@$°§±C}OYÖAðZ‚2ŸÜ®C€åFÐ{ r=­ áJq­rñÙ#„ÎùŸKó6ÿÁ›×p¿Cob“5l‡¼—#"û7ÈÃ=„7MHÒ{vÆößð¦¥cY:Ö=vÚcÎq但ÿÿBy çy‰<.:øåÿÞ7¿îFºñê ùžû¶Ì3Œ¨Á£N9|1dÆ‹Àø£°—qÎ¥Üú7 oÉÛ¿ù™cáÂåôµ¿4z½ñô?äÉ\$ÐØ>„'taAU.ò³"’ê Y¯O]pâK7e8pвËæ–ciCÙ~Ô/µÝ×'  ’ 5 D¤KxÛABùœÜQjA²ÁúãÕäX°ÿo‚€„ª;cŸP/éø;‘“|ö"“Ix I" ëM%’O&fÇÉøÔar2—AHŸ‘qƒ†<@ÞûgßÀÙöÌ$_S®³p@U"Â/~w>ù·Óš ð»÷žGB¢÷€áƒ0^`ã7`‹y̡̲ë9{ù‡>üOwâ†+® ¯ýõ¨ä×ÇúŸsQ:× 0-Æ3‡{pøÔ æWå '#âÌÀÓ´ƒãEû±þ>µ×³CSeq®1ä¶/ IDATX;ÏìnÆÐh$ìøï^´>"eDJ”õŽw‡cˆ|^}È ] OÖãGP¤„>ÓQCjáÇR–}ÜÒÔ¸¤v¤¨|/r0ÂCÞ?{„«?nzŸû×Dnv6?üÔ±uÄ}-H Ÿ’œ¿€+ã5‹2J/7Ê.úÂ[o{=½ëö[é?þ؈‘¤e羄1~¤þ²ûo7¢BÿPí= à Te!ñ·þLç´àT7ù,ÂþìÌ(^}Ù"=Ñ‹–S½BHé©?Âê;xúzª6ŸûwË`’Áù”d)µö„;HÉ8œdAÑP'½w©Ûàå²Ó“4 |gÀJÙÏáI‘ßóì4Q˜Gòƒ’5‘–=©_‚ï,‚%Œ\b¹§!„]ô â›Çw>ÿI1m=4t9Ç;À>í8¬=h¼€Ñßm÷-e}qå²¹_úØ?ó/žl¥Öž¸ÑÆüqR-'¿%­7LˆÖxjOì?Ù%Y(ËÏô+ß DäÉ©MþqSNbfXL¸lu-ò²3°ý`+„RcŠ‚Ê%‚ZÐ;ä¦Ù$MóšÚ§4hã§òò*2’QWO U‹@á/0ÆÜPDRöæMR`<’srë‚â‘<ã÷U€H)–Œ øŽN(ìM· É!â\J·!ýCxfû|÷ ïç‡6=XŃ›a/qEE^ÀýŠ,ŒT\öï³kÌûÕ7¿‚¿ì꤭G{axm?šÐƒœr’T;Z`l=Ò…Ãm˜S–ƒÂœ¨ƒ(Ó”T€ôÈ=ÝS†aZÌXTWŠ%s+ðÄÎ&Xðkp7" /²Q ¾'GЭ—…|Ž FûLž-“*£Y²‹ô*“¤r$ÈÛ<<Áý·lœ.( g)¬fvY.ä$À¿H)M¶Aòµü ¨ÒêNyšPþžØqÀM-­8ÞÒA?üÒÇñ»ûŸÎHæ.´†š¶€/(ò7ï"°uûë(·áΞsów?÷)¶2é¾í0Ò~iÓL­æt‚ Bÿp ïë€ÅŒÙ%96·à¬hN¬ã0à`eI.®:žÝÓ‚þ¡¸½µØÅcEy.²Ï²²°Tϳ¥ÔÇÄNº/HK½U_5R´UÀ,Œ%Å¥ÏS|m}WPxïë{’˜Œ$¹=•—ß§Ž7Ë$¹4QËHÜ”ˆ!°ÿÈ1œ¿r^sÃeüÓß?ZMœìF¢§ 6[ðœ;ãp89f!V|¥Q²þ_ú؇1·a ýð±f?­3tâ½I¯ý4–° _Rú‚„ kÄcûÚQ”CMI¶·ëo*RbcÕõã‡-)Ƴ2¢¸vã4žè©Î~»•æ~A°,,ÂéÆÌÒœRC’l?Èš‚Á1j™¯Ïþ¼®¡å9æ)1’ÊRJÃ+R;–ÜëÅu¤òÏ:°à•2~¦ð¿yÿø·Ðù+—àO4nàÑöƒ0GÛ_<à\:·î¯°¥Ý}ÁÚµ9wüÝßÑŸhFÊUðMê9 È„€pž&ƒØÅ'];öàH[?ª‹³QZó'ñ&‘žŸm ²ñ³ßq]uþ\†íNÂZä#P :åýH b˜3ò°é¹ÌPá{ ´W²8 $%_?g_1HØÇ°üZ$’ÃÁ!M¥‹Ú²sdûXH°Z (\¿ÕéþQžePAO;êTà;`C¶ì؃ÿÈxzÛ~>Ön®ÀÐÑÍNpNñãÔ©ûD*.þ\YEýüÿýþW)‘:âèN´8=øGi@@ÉS"œ^"xÍ¿° a“ˆÝ݆¡¸‰ºŠ\Ä¢j·`:4Ç{ÜDZ…ãµ Ý’`yCÍ)ÇÓ»šl®”U©†ç’kÔORO½•úY¸W»)äõçÙoÞo`$Xr@N".£ëìX¬t¿ÝÝ%/ÒúD 7Àû’ã® °g°’’ é5ålHƼ²‹|âÐKé}8U—Źëâ€*®Ó`—ä9 BÛéN?ÑŸ}ý_é'¿}4oÔÊo 5os@ÁsF>WÀ«ûEîÜ[ÌhÍÍ?ü»¹¨ ˜ ",®ÉÃêºD ÆŽa;rÑD~TÄXÙd#]„]x vG ‰ÎA<¹¿™1óªraZÓ³0d"›®£»”¤ª,WoX€G¶6"‘L©¾*Ò§†‚Ò8z*ïG¼Àn uÆé{ÿRé¦f> Wvâr3’Iª êJK^/VX%‘>Û&G }ÆaÄ?ûñÉEjvêßg‡Ž6aÍŠå¸õ¦+ù'ÿóPÉ.Nô6ŸK<À8GN&@ ÅŠ¯ âµŸ¼ë}ïÆU­£”é_ÌQC ¡< ÚzãH™ò¢¤'`hrÒn«LyÐk’ÖdysåN$4™±ëhöµô¢²(…~f2Í\ÉhL”/ÄÌX¯ºt)šZ»ÑÔÚ ÃÐ#6)©.…\Û^>IýnPxº ,Ù€´‘X¡‡¦ÙòkÉ-@un—´Í î{b …)ðÊûTpöø½V³›‘Êmв$f7ƒ §!X¾Ãú¿??ˆ÷¾í6ª«…žkÞÈñ޽pÖ'϶p[~å–ŠòK?·fùÊÜÿãdšP@7ÀF®£B}Y.]TŒ‘„…®Á,f»Ï-Õº>ÂË!õ«šú`!{k±Øã›KÝiÌ2ˆÐ?œÀ“ûÚqºo‹f"b(œˆANä÷Dµ ΄Ž|ź¹`ök‡®Ž/_Äî2Á(¥qäÑCâtøJ9"=¯Â+€b°éK•g úÌ€¼\…´!98†>›à7œV©W¥8üÁJƒI#H R±‰­ÉNWJ–{ðÙ½›·îå“=´‚ŸÐ_Hä%ë"°©¾µFÉù**­[ùëï|\†T¸GtYP•ƒUs —Á¡SCÊpˆ’h òÝ _Ô‘”…–m#ÚŽABk÷žÜ×0°¤6ßÎJÒdã¥õ5äÉ<çøCMÓd¬˜_…åóªðèÖ#5Ç7Jyµ6Ãõy÷ðknïÂvÒs ¬% ŽùäN›†&ìöHKÉeh‘Ú|‚â8$–Ÿ†]°^…¦ùþu¤”žì4佇ç±Îmí8ÞÒŠŸ|õ.úñ¯̧¢<Òºã\ðΦpÅ=ª)£ä2*Xþ®Ïø\;«†&²RËý[Ä Ì)ÉÂ% ‹aZ@÷`£IË`ÒË\—vI`—ye\ÈS‚aJšŒýÍ=Øv¸ÕÅ9(/ÌtHDP2‚³!2¹åásjyq..ZYN`pxÔ>W”aÌboæÍã°4ÇrwFH7.ðGêŽ ‡nì¹'R"yÚ¬b¬3‚‘ï¤È/+BñµëA¶ rô Ìb(´tÓ2¨@«Õ~ÿB4oÆÆµ+qÑú•üû‡v-ÀhÇ.˜#§<କgÓ¸¨ƒ(9ÿ®¹uóÊ>ö®;È´&‡t,ǰæ–gãÂEˆ BKϨç…VËB^N IaFøÑŸ%Òºá$ò‡Ä#²`¡xÏlÇñެj(s¸Þ7È©LN¤ãÎùÈs/ÆÜì \ÑlÛÛŒÞoŒU™ö#Ÿ{áªú8lXW¤´Èk{ynÔkÇ‘WNxhÀ­t?Ë8û›‰I›jThȲqÊǺ3 p¤Ê”‰A)•÷<*4ù-Iø×KÎÄ[F¤í\”‘HÜ Э}~Áƒ?o}îÝôë?nF÷ ÏæáãO;YÀY+Œ³˜Y䨋ߜU<ïÚß|û‰Äh"ÈwxJlÿ‡ÅŒº²l¬©/@QnG:†`Y AA@:€n{m#Öúµ![qYÝ#»ßŽÞ<úü $’&–Ö9n8 œ½´~rX^®»`H<·»±ˆÐùSRZÒaA¿®–£5‡¥º²DœvŸã(Ø ,¥é ÒÖc :Õ)Â3)å„òV¤ Å!üË…Šr!y"¤Ê8°{-±—ýȸ»…ˆ$B)#ѬŸny522‚¡$¾x×{ùÇ¿y¤"•Jp¼ó ãÎ Aèl8ø«h9­ý××ßtSìÒõç@gÔ—/ÏH„P]˜‰+––Àd·40ý…2K ÎWÓϱF=Õi6»Õv¤µÏîoGmE>Jò3C ùl¥õ“u úÍbƪEU˜?§ [ö6Á4-ìRÄCà“Y\P{VÛ­ $gló±ÀdÛŽ²€Ìä³?)¬WŸþlpMød —†Ì$r>6D®ƒî܄хôùÊš䋸íh–HH’‘?vÍp©™¦ÔÒBàÀ¡FÜþú›iph„·ìk›Á#O葺/zP N”¬û`Qií¢Ÿ}ùß(eÒ´ôÁ=Ãb;岘P_žóŠQEã©!Xlùt`ù"ñc’&æü4Œµe›êîx—öJ¾ ¤ ŒÄSxzöïÆÚ…å0D°[ö=œ…r`<ÞAS&£¦¼¯¸dzî âÉ”ŸË uï¿Ôñ`òæ Ô8¼©=ÒYšò´ž5µÚØ;–÷$’ÚË—ö£¹·ÃÔ …ÊŸ­«¤LIŸZ$Ÿ¡È9høÔR …÷ImY~-÷à”™ÂãOoÁ/¾ý1úîoʵ¢E<Òºíl‚Óí€,5”YyU¤hÙßøô]\V\Na)òTûàDš\”“VÕgaý‚bçe ¹kÃI† ë±?#Hf±OAõZ7¬”D„|y+û¸žÁQ<ú| F),­+QÕzÎ<±’ñ– ¸à`4bàš ‹p²£-í=^S²#mç ŽØ+)4ë¼ÒR^;Ä!ÙXØ›T'@ÕšŸ¤ç¦4ŸÔÍ,(QÁÿàÄ¡4œäR‡¡Ž“Ä8’â’ áÈ,Bá89»-ØÕ×EóâU×^Ê¿ùëöŽ÷Bjð¤Nk)0ÝÀþæQñÚ-]´¬ø=o~#¹ËÙ샻`aÄ TfâÊe¥ˆ§ûãˆ'MGòJoû@ék1ÉcRFäòezâ¶úmckÛÙ‚†šçeN¼›HT?“Çå b\²¦Ý}Ã8v²SÌà€F@­'TCB̉í}  äjŸ\æh¨bz½IJ#3”.w‚$²PèÎìS=Çow,¼c%ÀS•£S[¨Drª¯ ‡0B&+¥Ç9YÆæg·â³yýõÑmÜÚ˜ƒá¦§ôO7 hLs6‘ `Ž(XzGvqÃÿûÝÖ>xXJY“&£¶,ëçcVI6œì‡Éìa6žggÖ.0YCTSVFù¾þ³íù“) ÏîkÃö#§°nQ¢áu¦{Êp"xÊ„€çÜÖ.­Åü9åxðé}ˆ3GÑ·õ‘×uá׿P£Uþt¨“„‚T–ž'À •½'9)m¬WIÇC»ó~þòXÖ\Iì‡Pºq˜DY¨WÃèH'Ou⿾ðQúÞ=›JS¦erüô¾é§Ë¸À_)(z­ùØÛo»-²fù2"RKi|âXÿE–dâ’%e(ʉ¡£# û↠‘w±¹}p¡­ã²Û`ìDHiž$E&¡ÑLŒÁ‘ÜÖ„”iañœeɹœ2œìmVE.]³ÏìjÂðh©­…´‘TÀ.|PŽÁ.]NKý)´ÎשÃR;QÖKi§tv€°?Á–@òÙ¤ÚÄ``”šÃ¿åyÕ=i§ìE•V­žƒ BcS3n¹é:dfÄøñíÇ`èØfÀê‚­*l¾˜€Ûö›- —ÞYXVÞ÷ヒ’)„.é8—}p’rÕªâ,\²¤ Å9Y8Þ9ˆdÊÒRygšÌ» $ƒ' Ò$š |x÷+¢  ±µ÷?Ûˆ³ŠQ˜— !( ?0o²ŸÑdoÌ@^N&n¹zv8‰®Þ/]öRcE$ÛO¹!+íÙúTàÏïÐPZQ ÈbߺñƒÒS„™Æç"yi…=†‚K詼T÷+d Í‘8…š†8‹”iâ‘ÍOã§ßø}çç÷GãI<Ú±Ó)¦ELtº@ @ÈXm”m¼ë«w}eãö¥ÏuÜþPUÅYذ  õy8Ü6€Ñ„éïÏ“È-êît¨®Ö/—Ñ?HrÓ <³¯»t`íÂJdÄŒ´råSAù§²¾|l'ÀHY„+Î_ˆŒX;4Ãpç!d…\)ÕõÀx©õ¥lþ”—íÉàW½KÛ^YÚó¹ls TÊŸgøþ±¤7³,1F*8{CE!" $) ‘Ê1Pw B!¡¹A!ÈXq4ì+¥þ4Ô/ÀMW_Œß>°k‰5pøq€;¦«-hLcôŸc”¬¹#¿¨fñîx+„Þ‚‡éìƒO%BÊs¿ÖÂþR„Ób•##{ýwÛX„².7›Pq|± ð˜-IôÓÏ2<.Ãó I$ÕÍÙÍ0!MûÉè¾Ëc–‡„Ë–©ïS•7³»-'Ûðþ·¿?¸ç>$¬x¤uÚ²cš¢)€Eœ»ìƒÿüö;c+/r&˦?­ŸL„;ðK“Ê¢,\¸¸s«òqðdR¦%õ°Uäß] orŽÕw7 ¹Ûx•ÑXû31 BãÉ<°å(Ì*Fq~–‡DOT­xúül 7>  {:²c¢6€ÙFñʪž³ô¼/~äŸaZç6­?sÀŒ`ZŒâÜL\´¤ Uù8Ñ9ˆ¾á †iô «×™Êü¸2¾ÌxrÏ ì9ÚsJQSöN×¢‘épÌ„Üì \{árjjC{WŸšái EH^É6î'±­BÂ’(´vÆÒðWóútÚ*_ 8X&¡÷¬-5!)©<…ð޼IUÇ™ ¡µSCVš#‰`ÿ¡#¸û£ïÆ/ïÛ5£3M ¢0ëV༆ì;ÞDÊ”jöÁB5¦yé¡7Pä¶þ /§ðSÁˆ 4žèÁC[¡ª$Õ¥y!Nj²­Ð³sK¦€5Kk± ¶Ol;(šÐ>Cùµ1§'˸¹S{B"ãytVk²·…Ô©±…6f¬) Ô!Mû ÿ5lyBB66AZÛO"ï@è$$ÏA"цŒX‘v­ l1öì?ˆ/~âÝôùoü2*oãDÏ!‡0e,À8Ãè_ `>J6~áï{_dÅ¢y°xê)ë¹VÛ¯4qGøtrë-ËvëUâü…•8t¢C#I,T¢x[yäeÊܺß?w‡òj !šÚz°iËädFQ_]¤´ 'òÎ+€„Ë×/A<‘²qyJP#1XCÓ.«È*±¬Þéó˜ áÔbië‘ ÊÉB²\³¹}&¨²7PúBYªdYz&iîËSD$µe…e%ñ‰E¬åÒÌ ààá£øû[o¦ŽÎ^ìØ{¼ÃGu:#˜Â¤ 1¥oÜ–úª¢ìÙ7fοþÇÿñ…´å™Ô羦ò¸Éîó“‰îgfDpñòjÌ­*ÀàHm]ƒˆ¤èÀ©‚&¨Ibƒ‚)¯ÛrÚy¨ {ŽžBUI>ªJ³át*Çí®œýLÀÿ÷Úeµ¨*-Ƴ»(B›`·Nf¯gΊcSâµ[x‚¡ò*§ÙÈ«Fdá§ÌCªú‘kdB¢7+›Ùo/ÚmM‰\$Eg!úÚ2½™Õ©Rm³•|¿Ü¢ V1ÁˆìÞ{_ûì‡ñÍŸÿ)ÏL 4#ÙþŒÀYwl¡ÏºHÙÆÏÜòŠ›ò/Y·Ou«ÍÄûÙãäd§ Ï S°ï0- 8?ëV`ÅÜ24µ÷cx4᩾èy}•ßû%?²×÷&[©8އ·AgÏæÏ.AVFDé¼@i¥šÀœªlX9Om?€d*¥^Ì.ªíX‘Gr(×ùR¢îlßå.!UÙ×s>OÀßE¨‰o¸ …4Óá—:%™²Ž²HEÑ/$uá …¬0‡V„íÔµ+ ,Å-zzûðÊë®ÂÐHÏ>]o 4ºX@|²e€1…èo·þbÅÓðº÷¾ùvª(-§©0û¦[ çL79p0ø8Óbäeg`ã’*¬_\§ÐÝ?"íèƒFô¡ð @ SGÜ1NžîÅ#ÛŽ‚ˆ°¤¾–51 s‘ 03 r³qíEçaÛ¾&ô j£ÅZ;ƒ½}oHÈ’È›†9 ˜¦}x¬÷ÙïâèYšÇüT„F¤‘q&­,ŸC&‚IïHõX²f}!Éé ¸¤0.S)åeeذú<¾çÞGs8~z Ì‘ØzÖÙtžà‡È©½)–WµöïyM·Až©ÎTÀÁ±žs¼rA …2b\¸´ óf•`8žBkç€ïX—‡‡ô¥ Y›¿·˜±ûH¶hEyq.æTäz¬òæé .]þ8ö5¶Ø#ѬG@ß”‰[i×7!¸·\M™ökÇã;Ž£ª4Õe¹0­6pÛj¹Ù™¸rã ì?zÝý’²¯<:›n¨Fí¯ûì:–À7wÞ_eþcÌ߇l " d?¡|í&â!gx¼.‚&"#ýzVH¡×±ý·Ó]ÓÔ· IDATÝxëm¯Å6=…ÎþdŒ‡šŸÐ [<”§ÓÒûÏYxÇß¿æÖ¬•K“W§€&É'ƒÖO&­Ÿî)C½ã0Õ,Âýâ, ÈÍŠaÕüJ\±¦ÇNõ¢wpTÅûÈ®´ D •?§©Õ¸-+B`4‘ÀÓ»›p°é4Ö/¯…8÷ä€P\ 1pņåhië‰ö®àD!Òí"„r?Ëé²4x–f³4QȲ€GÈÎAY•‡IçVgHÙÈÊðiìPíd)³À$´Ø¥»¸‡mÀÇ.ú°rùRäçðÛwäbøèÃ:NÀ´;€ ˆ\€¬úW}óß?C;š{QœCvLÀâ ÜÕÙ®Ï'›ÖOwç`ê§± !pÁ²¬^P Ó´p¬µB¡J—ÒIpÃ[×e“áYË;{‡ðÀÓ00ÇÊ…UÊwôB:‚‹×,DEIžØ¶‘ˆ¡$¾ª1 e2Šò¯ ä /?%b¥«@¡kJA¸æŠ€(N”íGîܱZ6Þã—[‹ûúzTÇdô’~0Ê066⋟x}ñ›ÿ“dÇXñã“áLÔ¸‚Ÿ³Œ²Ÿ¸îªëË/8#6í;…­Í=hîED !“aö®M$Bž%g[‚ìÌèÈ> ;3‚óæ•cÃÒÙ芣«o¦É0A OyÖÑÙRúÐ “P¢;à˜ÉOœÆcÛŽ ¶ªåE¹gwßônõ³ËpÁªÅxöùCˆ'^„àí";»tD’kóSyËyÿ6öî.úQ%À!mô•¦ù´RÒP• ¦©ýÊ)¹öIÖ b 5d¨ÏE:o€|’ÑÐÐnºîZ´žîÅÁ–þjjzÀéL¨ ˜¨ˆ(‚‘½:R´üxÛ[4rp¼kQ!0œHáx×0öŸÀ®ý€Šü 僙LåÏfñBÓ‘…°Á²ÌX+çWâÊu 8Ý;„ÖÎ~ÂÉ[£ÅÒÎy§t„ÝYæ!ˆL¤ðÔîcØq ë—×!b/h6`YŒ‚¼¼òÊuxn×ô k›É&EI¢ajºNJ‘L@xÛ…Ô”BžK`öI>•—Ù¯'X×`uD‰50P›ô—‡ø+É<¡nì=Ž÷«(¨$`ÿÜÙ²°xÁ¬X²¿½ÿÙrkðøcàd+&8&<à¦ÿU"¯áFÄJ6|ü]ïÄSÇz0œ2Õ0D€iYhéÁŽ–>´tc0žB^Fy™öòƒt:xgs‰Æ )A6‘ÇÉé±v»gÝâ*¬]<QC ñd—Ó–BZ§.³Å<]<9¢8åAÿÐ(|z?†âX>¿Æ9ßsïÜ‹¸bã $Iì?ÚC}POýÜØï;yöú”\á1É©ÿƒC; CÏ‘cágSBŠÒ€¾ÜTU{’—ªºÂ¤n=O.ùH È8k£âÂÇ*„+SÆÞwªSÅ›š[ðÞ;ÿÿù_¿q²™ãûœ, 5ÀEÿk8gÞ[.Þp鬯¾œ9pÒh8§Û¯I¤ÐÖ7Š-}h<=Œ˜!‹È0„g éd²_"ÑTç΄·0–Avf‹ëËpÅšyèêFÏÀ0’)S¶Ph¶RHÑ%¸d’‘ÅŒ£';ñÀ3ûP_S‚²¢¼ pÓÙ•Kê‘™‘ýͶ±ê›z¼ˆíbìf’– kŒÒ@—¸gë J’î‚$™1m ;B ÊrPYØß ŸÞì‘yÈSüñ\¶k+né!H:V×dåx–„ „;8%üù†“mm¸ù†pðè >r¬ÅÂȉǜnÀ¸Ôà‰8üƒ¼Åïýà;ÿ)6Hy8Ù;¬ 0xÓOÚ`B3«Æ£Lœù¯ešžÙÝ„gž?ŠuËꋼ€Ù° ®ë–ÏÇ›w8Ð)™ tù-†6L¡Ä)RÈÚj2mÇ€gɲ¾¿6wLºBK¦€*$I/Íë0è[—üÌߟ(TIa¬H¥B °0¯_G¿½ïñb ýw€u&Àåþ—ÀÈÞ+]ñªÏ¼ÿ½ØÖÜÁ¸’(и?ÌÓNöŽb[“ Ž&LdFò³Œ@Jz6T€ÎµÙ™8Ý!¬˜WŽ‹VÔ#8ÞÚ Ó²|Y.üò{ýëT(ShÂã½&°éé½MbqC5 AÞp×¹¾æåàš‹×`Ïá&tõô+Â+úî+”Úzêü~P¨UåX}^¨Ç>k"(*@=öu ô=!¥‰·3Ai)ªÜù}Ú ÜwüýëðõŸý1f4=N6œ  J-SýÜeKn¹þ:liêM˜0©!l:çHÒDkï(vŸèÇþ¶AD#r2 N-,oÓ9C~1¤õgÒb f13°¨¶×nXˆžÁatö "•2%ésM„#À*cIi×W7>z²zt'êjÊPV”+Éy;OÀbÑn¼|%š[»pòT§†„‡mÕÑ…4TBÎà CÙÂ7Ð…H •Št‚Ÿu.A!…²ì;f_€¼uåþ†*i›’°Ï#™Já57^?lz ]}ÃÃ<Òö,üÙ€);ý' —¿cÝy«‹W¬Xƒ}mýÓzQÃsNšŽw cßÉìoÄP<…šâLD —M7öèë‹mÊpòdc豈PpÞ¼j\¼z.ò²cØu¤ †Æ#ðlò D,mªð^Ó©%<·ç¶ì=†Õ‹k‘S$ÉΉ`F2¬_¹5•¥xjû>dy¸†õ…->JÏúzpöãª"ñërÿ•=ZõsWúøTòÿdBÑ”x’ Ôû^™¡ó¤ÓÀm¯y žÛ¹µeð`ã_2`L`<PŠ.䬹·½åu¯Ëè¥êIúƒÓõ#õb6­µ­?Žg{ÐÜ5Œ”Ɉr™pîÁÁs!A6ç1æÏ)ÅÕç/@hëêG Æ«o}rðöÀ,öJ¯ˆ!Ðtò4þ²ùyÔÕ”¢¬(ÿœ–îû*)ÌÇ5¯ÁSÛöb$÷ÅA@iÖq“$4DAvªÊ¶ IÝ¡‰vºHcøùCJˆ‚ŠEc:}†ª´ºÏ#PfœÇuv÷à]w¼‰¾ö_f Ñò8ÕâàæT€pêÿJ‘?ï–Ù «VÞ~뫱ýxOÚ©§³RJé ›9×Ü9„Ýͽ8Ø6€¾á$* 2‘11:òx†5UƒœÊPÓd†¨ÒaéV€-[‰‹V5 ¼$»·ÚŸ‹W³¤@«]€~óÊëe?½«;4a~]%Šó³`žÃ²€ˆ`®ºp5zûÑØÜêóX’SRvÒ$ÜÕM>,‰r> H:q¡²,äêU’QªÄ!¤Ôßo1ÊÄ RR~}íx`¥R™zûûð¶7¾¿¹ÿIêïëíäxçvŒ£0žÈP#ŠÎû—[o|uAýÜÅ8rz $ÂÙû ,þÅxÊ©Þ<ר…ÆöA»åH„ü숶¹gâààt¬â:ÓYˆÉ<.Ý@vJƒÚÊb¼ââ¥0™qºgãö’uc­Z¿Aûu‡âØôÔ. &1»ªÙ™ÑsŠ.X³#†½‡›±'ca?›ñ‘w5Š2;bD ¡ÇÖðéÆžz³Ô¾òÎAwNÓi&¯æs|àNÖdf—Ñ%‘ŒØ_EæáÚŽï|dbùBNƼaíZX,ðìóGŠyðØŸ0ŽT˜1ný,‰¯¾ã½o~ŸÒs‡û`1‹:Ò9…,ããI*z-fu*LÀÞµ7Oáøé!ì>Ñ‹íG»`Zöb€´"NݦKÈt¬h>Q©ïÉìt%3° ¶Wœ¿Y1<Þ.LÕ•Þ®ÁØÛ,ýá$'DF£ÇOvâágö ¤0³«ŠÏ›ˆ2õ³°nÅB<úÌN_>Áø`V¿ßƼ6§%íõbï|m2š¥ôÐÜ÷Äð¯+Nó~=¡Qö‡ˆXµBþ,0“" ¶”Vزù5lRæk1#‘H £»§]½H¥’Ê:zË“/gôߎYëþ}§öýÒìÞþŸÃV â‰f®øg5g׿áü5j6œ1=´¯Ã“"R'UL™ŒáQ #zMô¥`YŒX„`B¥[N¨N`uQ‚·M˧3¤•Ê v(šZ»08<ª8m_uÈÅØ^ÒÁÒÄöiÁŽ}ÇPVœšŠ¤ÎA6ÀÌh¨­Â¹µØºk?LÓrΉÔU^òÞB (µääÞ¿r)·Ë9®¼ 6Œoàtµ„ö¬L<ž¾´ŸîÆ©S8~âZÛ:18<¶¤Ì~;’ž sc«e™8ÝTVTѧa‹…Nظ`²¼õ#ïþ'ª.)ÀÚº\³¬sËs1 Ó3t~#Cpû¹)‰[è6ÑÙ—ÂÀˆ…”‹"3«ÒÍú¹J5¿×º‘;kÔ÷tIòNΧo8¢ÉZ»±­±;u!"ÙQÄ" ƒ¤”ަœÖOeÄy²ŠÄgÚo€šò"Üpñbdgf¡­³ãq/ëtëÌÔ wõ¶ô½B`hd›·íCó©n,¬¯AVfT%Ô-¾@Q>.ß°ÏíÚ‡‘Ѹ6ŇPcº!ŽB®×ƒú…šú/‚\ÒÓB2™ÂÀàZOuàȱh=u=½E2™t”$MÉÿÏÞ›ÇÉQ]gÿß[UÝ==»4›f43Úw„Ä&V± ±#ƒ16&;¶ã˜×qlœÇI^Çñ›‰ƒ×xc 6˜}‹@€ $íûH4ûÚ[Õ½¿?j骞ž}"¡>ŸQ·º«º««î=÷œçœó<ø2·>ö¢Ì B ÔTUqíå—ðëûžÊ#¶ûqàh_@`_Ã'T£G—†«/ÿÉÛOÿ™Tª÷ÀSJ‘´IS²åP'ïìkãPk›XýY~¥‚“Ü¥‡Ö5(ÈÕ)ˆêDÃÂËí+¤ïBØ¢ BJoµ~¦ LÚ?W¥Uã\y*ÌçÙÚ^ŠÁŒªbÏ«&'¬cÉ`*p4âú¾ôüjH:–:€®÷“2-ö<ʯy…T2 ¬HǸÒw}q²“~0tŧÏåºKNÇ´†ƒ }³,ÉOîý3ïnÞŽ®¶á’iÌHúÄ:” bIB){ô¸ñ¦¾÷Uš‘Y {œÙ" ¶Vƒ/ nháÜÇήnššÛhkëÄ´,,)QÒJ_oîà]G'Ü’Î9 é+çvÎËÃ6ž¡U‡¹h°ÇæŠêÆ¿ec XzÎ\ÆÐÐÜn#îš–µFÿºj"%lß{ˆõ›v2¶¸ ã‹1­ck„€Å§Ï%аqËv›ýÈWs«9.ÏŸ I÷ûkgÙ§[r¬i^7ž®kH)‰ÅãtvvÑÜÖÁ‘£-¨?ʾºÃml¥«;†%%H{AóCþÔ„g„²±m‘~Gd ðÊÃdÒ5GyÑ(7æÓ<úÜk´¶µV‰¦õôAbôW("%3«+Ç!eö‹Àë$RöäœX–ˤò\4!Žt¤xgo;›tÒ“°HšK©^TÍÞs§jMIEÂT$“–E;ÖN)E4,ÈêäF5ºðMrHÁô2"ƒ¦)€¶ú©í݉Ӛ;c¬ÙÒÍk›18}Vs'•‘ÖÑÝ !Fw…û襾l÷3•RœÚÃæ8‡Û4v&ÑQ¶›/ýˆgí÷_0K*”’ ‰”Igï)»;,lh„C‚ˆ¡2 dBº†®ÛÏ…†]¹ø€çvk6ÖàÞL…‰ +ždãîÖo?Då˜|NœRFmy1µÎy |#ï­þÿÃ6ne¡®éLª.ç?o¿76ìᕵ›Ø{è¨ç ƒ1Òi.ÇH˜¦ÅËo½Ç†-;¹á²ÅœªW„? (|Nsêtgð%S’dJÑ¥pEå!9hD#/G'7¢cè"Ðî i!\¦eš4 #¢ÑÚãÕ÷ö£ä>B†Î)3+9}vM ›YŽÜ×uÊ6¹E`¸¡ @, fO┹“Ù¹¯{Ÿx…Îî«Á/–áèÛ ç‡†NwOŒ_?ø,Ï¿Vηn½Ã0Ž™áÒ4¿ºéS”Ž)æ·zš®ž1,iÜuGyÕ ]sÂO·˜'ÛtñAòÒ#rÀ?½òk¤7–e€·@Ñ;å-3 ˆkŒ6¼¿‰ÉµUBZ2„)D&²€l  Í¨Gg’S{Õ_\wQ6vì°óà}×z.•Âе¥QΘ>†EÓDz`RS+óŽv$ˆ%­`çšO}%˜q+¿‚?]ePLÛEL’X¢£;ES{’¦ö-í Z:´v$iëJÒÖ™¢+ž²qŒ”IJì¤i‚.<.~͡Ԫ;ÚÎÚ-Ù¼ïG[»)-ŠR\ö2ɪ ¥;ñ£ ¤T”°øÔ˜9i<ûê›hiï@7ÒÃ+N |ÍV¸yiõFZÚ;™?{R/öèÑÃ3óæLaÎŒ©Üÿè 6¸Ð|u"åÃ3ÒlnQ”ȲûsñøY€3fr3X™\&.g£Ï+|®kD†œiœú›ñ••œyú©Üû§§!qh2¹Ÿ,òᢠÀx*^ªŠN»ë•GÑ óóLgõW´’™Ïlu]ú8{0:„t¨kN°¹®] ]4¶ÇiêˆcJ…îé¹X®e—H;$€1®•UŽ'€ ’^+© ry7Q¥C gÄb‚a—AÛ!†À04Bº#›Ò¢¢83N¨arÕXÆ— 9-ΙýX”X[4ÞÞTÇ ol`ïÁ#NåœÓX£‚ •R)%Ò’¤,‹œpˆ/|j O˜‚”ǦÉHÐÕçÆ¿þÛví³=@ª9 8 '¥ì¦êìîGPRÚ(½3v¼}]Ô^J¯<×~_z®½û¾ò\~(å•*]Ξ.öI‡{H{|zõŒÎ9Z–ääùóxüþßQ}âå–èXû •j{8DFE`6&ˆHÉÕªàÔÿ·íµgéŽ o"7>øãܬlªkcÍÖFvîDyi Õ¿pò§^*%𾯷÷{2s°îû¾}¥}ƒ•”¾‚ _}½¯v!dh\sî,®:g‘1 =Üÿ¡Ô(¥8ÚÜÆÝû4{%™J‘Jš$L“T2E2e—Ѝ¿·ÇæôIãùõn#šu#à~^$ _ÿÇŸòÜ+kœÕ4 à!ÓU ßä '¦w'§È29UÆçºû*eI÷sýûzß¡<²’1¼ôú:tM 4Ÿ X'T¿„Rddòœ#˜dÈ üÒ^Øš¥†Å?(]/"Bz _0Õí¶@«dŠoÝöu~õàóÄ:¿Kª}S¶Z€¾ @©ˆV^X;ñÄ“n¸| )³ï ?œÞ÷Ѥå(—>^Ÿc0nL.ó&sé‚JŸXEYQ„”e[à¤)I¹ð¼èw Ê@m|1žòâ6Èæ›eTF ìö|§cN·Ž¾­+ƶ½M<úÊf^^·ÃÐÉË “ Û¤¨ôï†@)([ÈÕÎçâ³²mÏAšZ;–å5ÔøÁ,¥”£XŠÍ;öñ§'_aÎô TW–ƒ:ÅÜ™“™ ^^ó6Éd* è›Æ”T¯ÉŒÙÓKWà#ýƒ"sßôwø2Í@Q)ÿ¢¤|c(cß^¤BY’¿úÒyrÅ›4Ù¿‹DÓ:lrÔ@YÐ…-«(¨èÅ:£úF°‡ë²¿¹¥wêÑ ÀüH IDAT’`ZŠÜˆÁÙsÆqöœqH)±8ÚÉk4°~ÇQR–å+äÉì,ô­ä¢7Œ+ü†¡˜WøD‘#UEäæ„8ÒÚÅ?º]B!Á’E3øÜ¥'‘›cô*Gþ¸lBz⊉Õåüæ_£¥½“üѬ}‡‘sbéã4®ž_ýîO_QÂïîüc‹ FÕ°¤âÌSæ±âŸrÙç¿Ak[G–\¼‹¹+ÿ:à/%è¥'HæŠ-ñпlû*6A©,eA¾Ïô¯\=Øu˜ž—u›p¤¥‹¢¼Uå¹v׃üè>‡ë!È͉pÍŧpæÂ9ôļ¿m_Z*ãÜ’“çÎ ”n}¶ãJƒ mWxà¡” Q96—y“K¸xáx®Z4…Úò|’¦$™2žzé‹ÕT «2\;²Ä‘þ”N©`-¸‹øúâHåð꺠¥#Æ–Ý <þê<½j!C§´8pÈÀð… ƒ`I(SÈ%gÏã†+Îåým{iiëÄ4%špká•O©Ëž›vìå7|†fLfü¸ÒÑe*VpÍ¥‹0Œk7lòn˜k”\“^x§Ÿ³ûCßÂá‡à…_í9PÏ’+ü)@å 9ƒÑ¦O.Í×^¹”¶Î8kÖ½SÝû]¹°DY (NÐÆ]üÈ÷þæ;eW_r~¿À`QþlÒ\_Ÿ1Üã“bè8MӔĒ­]qÞÜ\Ïk½Ã8øa_VÁN9ÇAþqP]o8ljLÄ8>R½?×E©š‰¼h˜sLæóWœBiQ„DêãeüçÚØÒÎ]÷<ÁÓ+ß"1z£ïJ¥37JQUQÂ=wÞNeYq¿U—Ã9Ÿm»öqõ-ßô<·`öH¥v7³“‘>NWôõîÚS¤Y‰ìûiýÊŸ¡¢Ÿ •‹Eed%¤”Ü÷ËŸÒÚ­øÆwÿ½Q6¬øð¶h¨ìÏÈ*DÁ´Ï^~áE9“jª½Õr$R\}±æ´ßh‹h †ÛÏo|4MiçG8ij)ל5‰óçOdÊøbŠó#´uƉ'M»z\ ‚Y¾òø´’MÆJï–|È*¡2Pé4w‚%m/eóîî{f=kÞÛG[gŒh$De™]<%Õñmü†*/šÃÒÅ'qÑY'ÓK°eç~¡×óº^SGWw?´œ®î N˜NNÄqXäzå¥cX¶ôV¿½‘£M-^ü† #{D/Pùtðy4ªWvHøÛ©}q}šDe0^Ë 0MZýiÉ…ç“›WÈ/¼fÒµë!lbX!€Ž£ §îò .ÕVUf¥×î„÷þèŠhô9ô'ÅåN$Ó‚HØ`|i>ó¦–sáÂZ®[<¹“+ ZÚ{l÷Ö *ÑöŸRY@½ öVi1¡F{GŒ;ñÔ«›xø… 4jÆ;‹6ªé´cXP\˜ÇgÌãÖ.eóÎýilµ[i ®¾BØ‚(›¶íá¿ï’¦O¦¦²MYXà—ŸåsË.åí[8xøHöô±ûŠ[”)fìß××ýç­ôiV°Þ=ý€ˆl¾ ÖÅ,¦°°„Ç–¿"U×Î#N0 0N+˜~Ó5—,Ñ++ʇ½²¬q7òãûØ_3”ðÆ#àx\RAYQ”SgUrÅYÓ8ÁÎ:±†²1¹´wÆ9ÜÜå” g ?r› ôìÿNIY”ãÜ8R¥}]h¤,‹·7ï籕yaÍVêê[˜Z[NÙ˜¦u|!RÙ CW^p*—:–%Yÿþ6 C÷ð?ûŽ.4žyy +W¿Í¢'P^’?bJ2/ºvéù²bÕ¬$P¾~ºn £X7K,ß«oBdziÈ ìÜ ”tkP.:÷ÊËÇñÐS/)Õ¹óØÌ@ýz.h¥V8óóË–.ecKF]ïX‚ƒýMäáÐrõ÷[{}‡óÿœˆAq~'L*åʳ§°lñl¦×Œ¥ 7‚®iô$’tõ$€¢ðMpA(¾EïF•Ó5ãšf¨îX‚­{¸ï©·xeÝ.Éá°AÙØ|tíø üuùyQÎ[4‡O-=—Öö.ö¨'•2÷Æ%æliëà7|ŠÎî8³§M¢ ?2â°@)Å©'MgôúZR)Ó+âYzÈ`©ò»ç2@vL z$ ^†QöAâûŽÌ}ï:ïì3©®®áÇ_ªsÇ@C¦YB€à$müU/<ôÓŸ0yBí€ ß`'ëè•î¸LÐo0} ý½7Ò^÷‚  -Ý<ÿÖ^^¿‡îxÒ&˜PÒ„äAõI99°o/P ¤°™h„$¹ V8¤qÃ¥§rý%'„=ÆÛãÕ;ð(Ü¿¿ón^Xµ)ÓÀ©t~¿û;5 þýŽ¿bɹ§ŽZ“QWwç/»•ÖŽNg"ËÉ•SÎè¯å—ÞŠ/³Òyöõʉe Mèñ øÀã^оsøçï|‹óÎ9s¯» yèÉK€N&ÀêÈ*µ¢ÙŸ»áÊË)*(Tœ=\m<2\Ü‘7œÞ„¡„ Ãõ"üïI¥(È ³pF%ËΟÍŧMcÑÜ&V!iZÔ5´aú™m}q¤ßä{€P&AdFZÊó2ÒRD|wë~þôìZ^]¿½_1†êŠ\Lëø«3>Úï%ç.àò Î$7'šw6{R[þß©”â™—VóÒëo3cJ-kJ1Íáÿ&¥‘p˜›¯¿Š=ûòÁÖ„|]ÊŸïÙJT`ìfRÚgM«Ìr“¾*Ó瀂E§,döìYÜýàs¨Žm8@¬? @ó0€ÂYŸ»þò¥Œ gxîùH´ñFÛ­nHÓ?¾!¼ç–„hÄ ¤(—™J¹ôŒ)Üzå|NœVE^Ôæ´LIgOÂ#* Ô’g 7¬QÏGJá˜hBC è花uÏaxæM–¿ú(ˆF#ä2Äq&xø‹´CƒE grËõ—q´©•ƒ‡é‰'¾>=× Öö|òEšÛ:9aÆ òs†eÜÒý'Ë.;K Þzçý ©sÝ4p&p™m"»ÿ÷÷¥¨Œ÷=’_9¹$“I0mðÏ>ã4fLŸÁÝ>‹êØv¿/C FÃ=ÌDéqCaÛÊq£ô•&í}\æ ´sñxŠ•ëvòÌ[©;Üj»ê™l²¾üs:¿,Né_%•oz̳B"”ðŽs©© CãÊóæó…kÏ¡ /ç˜R|´Ž@)Åïy˜»\îIz+ †Rhnÿ«›¸ùº%#ö„lÞ¶“koý¤eZŠ{¹òÒW)šáÊK—ìÆ×œn¶*ö•éRótë°½ïÿ½ãvŸµxH!€ ŽÓ §ö² /å%%ƒÎŸ÷ Aãn¨l»88ØïÀ)zu< ìÔã SÊùÔ…s¸zñ\NŸ;iµeºF}S']=qŸj "Â`9MsíÑHe¤¥~F‰%%ïo¯ãO¾Ákë·±ÿP#cŠò˜PUàx1m˜ùÝçœvË.=ŸÂ‚<ÖmÜŠiZ¶á®y/¯y›«Ö1±º’©+†eÜpd\E W^r¯¿õ6Í­í·¥?s£zU|¦ŸÌXÕdÿ$ þôp¦ú’ ϧ¤´œ{AªÎ÷gû2åZÁ´Ï,]|¾^å¤G*y=Pæ ¿ 9˜ã†šq¨`$éΑ´Fg;Οr´$N p>3&”qáiSùâÕ 9÷䙿ç‹'AA,‘²‹ðwùÒOþž¤Œ…àHKK]ëš µ³›Í»ñççÞäáçÖ#„ÆØ¢|¢9a†vLØ|†œ>”͉pʼ|íækhliç@ýb±„Ç­émmüùé—Øð('Ï›Eþ0¼7MXXÏ篿Š7×oäàá¯vÄÐY€|FAd‰ã3+BüEeiGå7*\vÉEŒá¡'_L©Î÷û0€ *DÁ´.<ûÜЧèXfƒ™Ø#=n8R\C9n8MM#©[H«Ì@2¥(ÊrÒŒñ,=k6W.žËuÍgjmÝq4´Øä¨šð­2Â×ZªzT`TJ×­Û|‹!C#žL±vÓ.q=»†ƒ -Ì™VCa~8+•ü‡olóÍç¦eK[\Èkë6¦'¤ÞìØ]Çï^N"‘â¬SæË£q÷_vùÅèºÎËo¼E(¤Œiæ ßWCQ0Õ«2 €J˃¹ÉO4ÈPtÕÒK0Ây<ºüå„êÚùÇÁáxe"ÊõœuVΤÚê¬qô`VÖ‘‡ 5ÎÎ\Y‡ÃU0ÔîIJ©)›‡àDC×:SkJ¹üÜYÜtù"͛ĔšRò¢a:ºbmírtèE ‘^Z‹¾N3…§ž£H‡+RÚt^[väÞÇ^敵[hhl%7'BMe‘ˆ}”¡¦i,ؾ‡®ît]÷.øš·7ñü«oQ]UÁœé•½Ô°»»èDæÍžÃ“Ï¿ìS&À3@†+/zwüf%ñùAåc-r Ê5—_†Äà‰^í¡kןHK„õÛ ± Àäe‹ž–7kê$_JehhúGgp-Æ#ÿû£ÝC1×Ômä*-Îgæ¤qœwÊ4>wÅÉ\É©”ŽÉ§­«3eaJ‰ie³=WUùÒoÕ‰c­rº öŽÞß±G_x“ûŸ| %¡º¢ÃÐ ÚGÒµè†ápˆ“çÎ䯿pɤÅöÝûI$’à(ò¶utðÈÓ/±þ½œ}ÚIäåæ é\…˜LžPÍ?{O<û"í݉­RéÁ,$ dºøa\ö¶d ÊW(®¿æ ÚºR¼ðòªk÷CŽŒ(¹ÕKf͘SrʉséŸÑȃ¶xgôÒnÇFŠk¨žÏh¦‡˜CÊT„Cs¦Vqåây\uþ®§Î„”Š}‡½æ&MC…l$’þÔ—UÓu Ó’¬{'^þO¼ô;öÕ3cr5%Ñ´Ù´àŒSærã5K˜:±š—W¯Ç²l°ÐÐuêêøããÏÓÚÖÁ¥ç/ ™êuV„Ã!nºþ*vï©cçž½€È¨âëÕP$Ò’ì"³‚@dŸü}þÊÏ^ÿ)¶ïm`õ[oÕ«îýa7 Šp,9•‹kk§WŸÆ)˜ÖèI^Ç‹êÊz¼p ¥Åy¨×h´\c†N4¢zÜ.Z4ƒ/]w6‹Oäñ¥äE#˜–¤©¹KÚ!¨g”Áf±ø~—TO$Ù¶ç ¿{øE^xý}Ú:º‰„CTUcè~˜ ”ýÛgOŸÈ—?·ŒÜh„ÝûÑÜÚFÈaYëÞÝÄŸžXImu%³§´Ñò× \}éyÄ)Ön؈æðz]™X€'dšÙì“­¡Heo R¶lÙWoý¯¯ßÂ{ïmØEìàr ‰A°Sµ1ó¿æ9×,ýåþ‘D²ïï †ß=ô¿‹½d²T»ÜÒL±iíë|óû¿æ¥?«ZßýG`Ð9ȦŠÂ™3mî’›ŸüÍôÛFsBŽd"„]èüæþ'¹ÿÑåìܳŸH8DÊ4)).â?þé[œö)C0Ñu¸á/¿ÉË«VŽ„{Md¿xH¦Ž…r&¸Ëˆäé8Çõ&d,N²}7ãÜD˾×î÷À^èì% ²ýõ´0Èp À‡á dsÏGÓ‰Ñê¯2r0¿õxœüwÛ°y7½ø¯¾µ ËÕ@¦+W2¸Ûµ(2]`)Ñuë.;‡/ÝpEy¾LLJãh¼ôÚZþúïÿÍf‘vˆ7§OÈÿùO/,ìuŠ„wþü^þó¿ tûeªY¨È| Ä®€‰’ž@)B¡‰Æ ƒ ( öê£èc‹ò= G‘At8Š+äH¸w/b 0Ô¢©ãÞ`Ël»øÁÁ†44ñö¦¼¶î>رCׇ ÈäÏs»²Û•L{ Åäšqœ4{*×]¶˜ÓL$³3ÇÒ¸ü‹É”dåkùáO~Þ½0B:º¦±ìò‹ø·;¾aë ¢Èý¼•¯¿ÅÍ_ûn{¶{-ì°@¦Š”ÏCð‰†ª€‚‘£8$%³§OgÅ“R}âeýJƒe+²;5£šÜ K—œ·ØxçÉê­Ô·%héJOIâI‹¤)1èV׆.ìÔ‘£üè $d(⎜êûx`Îþƒuëûû­õB|6±–ÎX-È2¾b,g,˜ÎMWŸÅ­×-aÚÄñŽWÉTŠžXÂ9Ö½( ¤ð(¶t¡!4AGg[vÖqÿã+øÃ£/cIIQA>y¹D"Ú1Ñtë*„€©køÊÍWQQVή}u46µ°yÇnî~àæÌœÊÄšñƒ¬KPLª­áêK/⹕¯ÒÑÙ…&Dz¢ñ)%9ý´S˜3{.¿{ðé±}!“.hõNã7(E‹œEùù÷üÇw¿[PT5›'7AËlRñú¯†CPV¡¢8BEa„Š¢0Eò#Zº–@2DÇ„d¨ààpRš½oè‡G:òqß2'§%%–iQw¸‰'W¬æñkèìîAׄ3!üÀ—Bˆ ;[ é,9÷Tnû§¨(+°Y«MJÉû[¶óù¿þ;ïœ++Êx䞟PQZ2 !rßO$’,ûÂWx÷½ÍÝGÛ/ ˆB*éiºa“´RüË?ü'ÏáæÛþ¹“Æ—oA&ÞpÒ€æ@@Æ ´ªËþôõ¿¸eÌK.ÿõ ]ðƺ!‚R W÷1dò":ya¼Ã~Ñ)Œçåç…(Î3(ÈÑ|Ÿ‘æÜ"(3ZU£ŸDy0-Îÿ“7WÌÐÁ0`ÿ¡6vì9Ȧí{X»q_”eèšt/*Ò šiš˜–ÅŒÉ5œ66KÏ[Ä™§L'•²{&F;LPJ¡ëMƒå/¾ÁÏïù#ëÞ}ŸÜhŸ¾z)ÿrû×ɉ„•É…àß~ô+îüÉ/ˆää¤Û¼} FJPØ82•à¥åOòúúíêûwÝÝ*ë—Ø€- 6  …À£jÉý×,½jâ·þò/ùáò]£Úî i[1é< e…!Ê Ã¶7Q¡¼(BQnà 3B†FH„œ”]RiáE1¬r䡬܃Eù‡pö·ßÿ¦ÍEâC!û¬Z»•§^\Ã{[vÑÖÙEgW·‡€û•wð¤·%‰d’üÜ\¾tã•\yñÙ”Ž-"7'ìH²¾AˆDà™«ù¿ÿù êÖ#Püö¿þóÎ:Cׂ¯Ù~oNDðø³¯ðµo׫CÀMzªÂýhHØn {7½Ã?ÿè÷Üÿð“ûÌúç?l:ð5õeÌÐËÏúÉYg.9ã?¿ûüÇs»‰%GÛ§Ê.Ýíñ¥A×lúk]³ëÎ5 J "Œ+Ž0nL”ʱ9Œ“KyQØ‹“üžÄP¼ˆÁNäcÍ%Ø_#ÐÿÆM[Y8KÐÚÞÉó«ÖñØs«Øµï ¡a×!øI@„&(‰¦iäçåpæÂy|ãK70ub9‰ä±¡=³,‹]{ëø‹¯‡‡ê©_ÉC¿ý1“jªúe*vÒÑÆ&ξ|]]Ýž¢\`Pá€ô\qåë¡ ¿€Ío½Æ­ß¾“—V>¿Æ:úÆmÀv › v±¾ @˜¤ÍúæÄYÜòØ/Ê_ØKKwê˜?ae *Ê—Úðˆ0}JÙè©”Òó$@Q Q˜¢(/DqnˆÂ¼0EyaŠrÃå…ìçyösCw.°Ä [üj¼£áÖ†zÑ'[·Ù€pŽ6ÅÙðÁ6nÞÁÆ-»Ø¸emm„C!t]sâe{Œ™)‹x2ÁÌɵ\pö),>ãdÎX8!rÍÿ@!M4žz~5¿ºïAV½ºš/Þr#w|ã¯(.Ê%ÕGHâX,έÿç[¼ôò*B‘°‡üK‡ôÔ-¶R~Eõøñ¼ýÊ œuímìÚ´òÙ¾õGd©èË€] P]®¾ü'ï<óg~ñâ~µÆGÕR*%] áÅ8Ò»ëæT“Ù V2m è]Hâå—ýl©Hg‚ÛPù‹ó#T•æ1~l.ãKó¨*Í£rl!Ã&ÁÐuçÑùSYWn¨‘?Vç'ÛÀ›¡Ûñô¦mydù+¼°ê-º{bÄâ ,7‡ËŸ¯H¥LÂ!ƒ[o¼Š›–]FQA>‘HhÔÈM”R„C‚õïná+·½ûp÷]?dÉç`FŸßa7 ¾ý½ÿǽz8"ôIÍõª¶ŠfÍbÕòG¨˜=ɃÏ܆{8ˆ]À` @¨N¦ôâGŸùÃ}Úúzذ·­× Ù•‘¾ê¦Þ¹ßÌòFo_ñtÊI{•BfVP9Ò”ªÀqN‘ŠËÆ¥œ¾z°‹9ù9!*Kó¨*ɧªÔþ«,Í'7œN{¹À¥ûy.iÃH´ ?Ù†—ip=¶¶ö.ZÚ:XûîfžZñ¯¯{—pÈ dÎä“X–…®i”•3ÎL¾vË ,<±–îž‘—#» „”Š]{÷qÛßÿ_š[Z¹ÿ—?bî¬ÉÄ}]¼üÚ›\Ë—1 #ƒöÝþÜRZ\~é%üËw°ð‚›$Í+–oc·§kt`,p¥‹Ç7n¯œr™<º¾ÞÖr%ï?À‘îD”>´ àòâgã^wŽö¼ •Nxû*76´_½2|‚ž*ƒ{]*,¥–Í•'¿hNˆ²¢(¥EQJŠr)+¶ŸäE(Ì S˜¡0/BAn„¼¨ð „Û'Uoàò“É?ú›®Û ?É$¬~ûV¯¶íbû®}<|Äá,б,IO,ÆäÚj®½ì|Î9}! æÎ"¤F ¾ê—ŸÏ­\Ïÿ»ëL›2‰¿û?_¥ºª,kXàö|°e'Ÿýò_S¸ÁN:‹¥i]™ˆsç¿ÿ+Ê(æöïýûaš_½› ´%3Пp3³)9ãGçžsé©ßÿÎâOn''¤^ü/î%å2™ o’)¡Ñ†Þy×@ÚEHÓkúU¦!éÌòÄìøÓnÓ”„Cµã ©­(fBeÆ3¡r Ey»nÞi¼­·ŸlÇXÔuhjîäÁ'_àá§_äHc3–´¦_û¾ MãsË.ã¯þâÓŒ)*ôØ„¼ñ7Dƒàf9öÖâÆ/߯ß~õ‹\{Å¥CÑ+s¦‹/_ÆÎÝ{<ùtOËJ^µòá*£Z©¾•QTæJ®Üf‰Ì•œÀw¤ë±GéÊ4I/›àÏ»¢\ |mð;¤RÎg9¿W:ßJÚû†tA4"'b1ˆFBäF ÊÇä3¾¬ª²B*Ë ©*+¢¬8d‡Òþ³ÜÐC~|dÁÇA×í¬¹¥›ú#lݹ‡^YÍŠUkˆ'’º†¡kÔVWrÒì™|á3WsÎé3éî^9²hlx+?ó/¤?à'ÚPŽà'†,pýÜrY•,ݺ äå…)ÌÍ¡ Ïþ+ÌËaLa.ãÊŠ¨,-f\i±ý¼,Ÿá„2ýøQÓ!ƒa@{G’Ý{ëØ±g/+_‹—V­&/7‡3O]È×^ÁE‹O"ž€drpx?‹ÑÝ'š“Óç>mmíüåß|‹WW½ÎÓ~€W×íà®_Þ]g5¬ü,°hËd4˜¢ÍüFõ´Å7?uÏ󽇷ÎêàK]VK•YÞ˜]FI¸Óx˜+yz’I§Á„¬®¼?¾R2crf„Jk¼B¦@8‘ú$Çpþ$¾ìF/ü·È…,ÀÛ׫pAÓLc›.¶²0»ÛSšKš”0¡ª„êq%ÔV–PSYÊøŠ1äæDì"LN$L4Æ¥«0}eÿ£½ ÷·…CvIðö]Gx⹕<õüKtwwqÍeK¸ô‚s©­®¢¨0ŠeÒoiðPë ¾øõoóoÿô÷,¹éØ¿õÕßËŽmw»ø_Õ¸ä ÕèÑ‹(>ççkž~LÜõR=ñ”5‚“ö ³ÿ$ÇËͲŸD"‹ðöÍX³…ög'†?T!CŽ[©ŒÊ,¯H)¸/*ûêìÖ(ô"Çðí›ö¤Ï€fÙW©€u €ÛQ‡Ç%ç—¬R>#$<®9×¹á„ôB5Ÿ'ä€Xº¡iN©¶  /ÊäÚ &׌cJm“k*™R;ŽhŽpÚuýµÿóÆd2I*e²vÃ{<úÌó$I¾sÛ—™=}"æ(€¶Ž.¦Ÿú)Eûk_ʽHº(ëU6˜©Ѓ4¢Ó±ê­u…'ÖΫw´¢i”i½n/µÒ_‚Aä6WÙQ•Fç³k úš@<Új»7LdÛוQ’é3‘}XA‘10ûÝ7p}ï«‚r®ý~n¶ßi3æ›L2hN'*ß¡úØ7ídHÖúöµÏNˆ :ffi¢œ*KËôÒRÝ164ñÊ›ïÛ%Ú€™Íalq>c‹òÇÆPVRDyI1%Å”—SQ:†‚<_Èa¥Cƒ‘y~áp˜P(ÄEç.bé…‹ˆÅïnÚ̪7ß!/¥¸¨ˆªÊ B†1"£³âµõ ¤éŠ€Xôƒ÷ômG¥št]5½öö;E·ÿõ™ä†uLK‘´$)K’4)S’´ìÇ„é”Ù¬«Oÿß6ÿR¹ºpžK”fwL)Ç]N/¤ e)ßÊ©|àU°qHeöR+Ÿ1ðÜï4ò¥z .(ßäT}hµ˜·¯JÏÞNe ï¤5ûè­#/úŽžo(S,²÷~®1ó›Þ>?×§U—)/øLÏj ¯/s_-Tª ÃÞÙ0¼Þ–¶NšZ:©[éd9lŒÂÂ4-r£¦ÔT1©v“jÆ1¹¶’ɵUæç2tB¡áNÈ2´×„RÇ )„À’`%ìç N<Á+òAAWObD@ÁËolº¡š,•jrÿ~;øú6…M!Ô®Mwï?0eLnˆ f—¦W%ÿ •á ø'~p²öþ¿ã‹Å=TßG§R’¤)Iš& S’LI¦E*e‘HY$Mû1aJ’I‹xÊt^3I&í÷âI絤I"eaY¾@Õ73= , ê½§÷uVø´…@d5.þ ¯²{2ÓØÐËØþçx*‹Ø7C¬Ò¯4£z¿ä YdJUªl†,Ë™e3lBôvù]c!„áÔh計}v¨gWÝ!Ãqâ]Ó…ìŠ=ûÏ 'fBÍ8¦ÔT2yÂx&×V1uB5e¥Ï{ðƒ—Ç‹aB`9ZќȈÏkÛî¨DÓF  ú¯áœôA§lß¶jß¡)˲¹§îâ(|ÊÓéúvîvÐiöÿ‡Í Hú?šÃà~¯ð¡ùèÈ2ÞÏvœ”¶RŒ)m&eÙ2Y¦ãᘦĴ,R–tøðm-¼”éüßÿÜ´HYÉ”}Œý9öëîqöþö£™²œï°¼ãÝÏH¥ì}’)Ó>—”éÙZp*0©…/Å”‘M{Þä•i=9‘ÅÀøå„Ó…N°¤€'äs¿`…Èfœ|*B²CäÝC%PB ;LIE"™"‘H:éTûØ=u‡XiÙ¦eÙ!à¢l ¥cÇ*ÊÆP:¦˜’±Eöã˜"JÆ1Æi#ÏÌr|ÅUîçô{ví¯G¶o[…Mÿ5`oã`<°zv&{ں׼ónÞY§Ìï3ý1BMû ŽËP´ñ€ëL#Ò–aÿÆG8.¥>""S²œ²ðèŸK0+w óiB>Pß@ÝÁz^|í-;õ¬$B¢ÑÑœш󘡲¼”Iª™TSͤ‰ÕL®­fBM1`»õ–e{¶‹l @È€»Z®°:ßsÜÿx_©¿¡å¤:5³mýëß9£½³waÂ`'î`&òPŽÌç vr÷\úú탑÷ìçõçf€ý¨¾R ƒZI44mpc(9àõá ¥Y¤{?w÷I™H@"i‘HÚžM"™ôB‚DÊ62‰DÊ~=ž$‘²M"™´÷O$‰'ö{É$ÉdÊ ÓR¤LÓ ÇLÌ”IÊ21S)LÓtB²ñx‚ήnÔ7ðúºwœÏNˆ' •¢¨t UåeT¯¤¦j5UãW^FqQ!ÅE…Œ)*¤¸Ø~2´`½Ä0·Öö8+ßxGhfÛzi»ÿ‰ÁŒ€Áh—Ýug³iûN;éÄQŽFß8 wBÖXdóhú Å£ùøçÃÉÈ´ŒÎf:†¡“—›3ªùzúI^÷W5“éaY–¢§'Fw¬‡îž8Ý==tw÷ÐÞÑÁ¡ÃGèîé¡§§‡Â‚j«+©®ª¢Ò 5†³½³iš¦‘ê®{ÇñÌÑ2n:°«g—L´l~rÅÊ9gŸr"‰dï‹7’‰<c1X·~¨XÄPÜú¡¬ÞÃõ@>ÙŽ= ?(C1€Gå÷º\£’——K^^n/'pÿ}œ•Ã5`9ÁŸžX‰L´lÆêÙ…]ù7(ÏÁšh³ZÞ½où‹+I¥‚b ƒ±ð¢M€ÁÆÙ£r›_†îÖe‚õ8õI›Þÿ(£ ¸÷6¹ÁH:ì…$RðÈ“+±ZÞ½»îPñÿP NJ¡ƒTûvH6Ýûèj0qöh­}MȡƢ#‡b|22# i>Ù>ÙÜíç÷>¡ ÙdÏM:Dúo¨@yaщm~ö•UBfäհݘ¡yC]á‡×®¡ødûdî&¥ä±gW ]Ä6cóþ¹î¿MàÐ,Û·.ßw°žX<1h·>› ß—[?˜•s´VÒÑÎ8ôõ[‡sÜ'Ûÿ–ÁþÓ|³5È>ëžXÂ)þÙºhfè¿»C4) C%š7Ä»›?øÌ³•_¹q¦5¸É5Ú9ÿ¾âçc¹2v¿OÀÁO¶ô˜I÷ökÂÆƒÜ¿æ–[¶ïdëŽ]$“)ÆGMUÓ§LP.dÀÝ>K¬³é0‰æ >÷Ð`¨ÃÍ嘦ÎüJ¸ä„/­òá>xòG_o )®ÑàÞÎqC‘(êqŸlÇ÷Ê­iŽb•n? -m)Ž46q´±™#M4iäPC‡ŽÐÒÜJaac‹‹[\ÄøÊqÌœ6…YÓ§2vlž¯üxpß_{êu$š?øìØöKÒ܃¦ij½‡ÛÔ*ãG7$“)ký¦ÍÚÉsçˆkµŠ1Tob(Ç ·Šq$Àè'Û±_¥+£ÏhÛ=¦S(d’2-Ž46±sÏ~víÙÇö=ûع{»öìÃL¥GÂ^ÅàÄšj.<÷ ®¾ôbN]0Ãþ<Ë.ëöo29ðù aŸ‹‚µïnU‰dJÊøQWøsÀæŸÑ0&ÐI²e«¦â +W¿9þ´ys°äèÇç#ÜëªfhÒ×oèøOÀÁõö¯Üš£8¼ÿ`+{öd÷þìÞ{€=ûPßp”x2I"‘ á”2'’ L§2ÐL™§-˜Ç7¿z çžq •åäçå’ŸŸG$¬{d¬±xpÒªI@4GÐÜã®_þ†gW¼È3ÝÏ3+ßšŠ7ÈdËVìê?óX÷"4Ym[þðȳ+þîö/ßšµ h8ƒz(Õt)êd›Xƒu³§räO¶AÆØñµ¦Ù«jK[7­í´´Ù­mmj¦þH G©ohäðÑFŽ6¶ °™€í’h[—AI…iÙ¥ÁÅEL¬©bBu“'Ôp¬iÌ9™Ó*íÕ1e—+û;-+ó¾|ã Ã6LïmÞÅëo®åñgžãí5o®qæÙg0¦¸ˆ?<º«mË€&gN™¡q8À TÏ7=3êÿí翪úî׿2¬>Ô‰|,WÊã¹ù»Kžùž+'¯b™D"É®ýÙµ÷ ;÷`çÞìØ³Ÿ¦–VÂqŸU£Òð@~^Ôi—Îä׈„ N=éÎ;ë4Î?û4ª*Æx1º?kÓÝ3ôIží·Z–E2™â<Îüì—4·´Ø‡J¡åç!»»¹çgwqû~E¼«µžžo ×ý®;ÏØ ÔkÉ£/¾ðÚš›¿ùÅ/¨hNXdûávÎñRŽÜ×ûŸLúÞƒßïŽë躠½S±ÿàêêPwèûëRw¨Î®nº{âôÄâôÄbt÷Ĉ'¶Íà†‡C}¨A),Ë"•J‘Lš”—sÚü¹œ¶àNœ5ұŌSÄØ¢|„–æ’ÉÑkõuuÿòrÛwá¿»×V¿ÅÞº:ñ„Óï`à¶i à’¥K(È/PO®X-´ÔÑ%Ô;sÑÎ9 ×Hì|c£l{ÿ‘öhõ§Ÿ{õµœO_q‘lÛœü‡ó ÇÁpÏÿ$`Ú+3¿Ý³èê;FgWŒÎîZ;º8t¸‘CGš8t¸‘ƒGš8pè(=ñ¸M8ªièB t)Hék8døÄ`|d§Ja™–´P ‡op,ec™3m2 æÎdþÜ™T–GIšJ]vKë‘ „ !0 ܶk7kÖ¾Í}=ÊÖ÷>@ËÍqV{éMü4XÉ$_½åó<øÔË¢µµ9®ÚÞhtæâ°ÚG2ä4 ˜¢åOþ ™?çë_x]ÓŽ«´[¶ÏîqÇ"ÅøqúrÓ…€†Æ6ví¯gw]ƒý¸ÿ{ÁLY9ˆ_ŠM:4hiME=S‡Á“Êö˜¥ñɺ¥%ØÊJŠ9ÿÌ“9œqò‰"lBÇú:Åb1~úÛûøí}"–ˆ{„+¶ ²Iãþf%)+ËÎ ¯R8íJ´îÍ?•]{îŦýî®IÛ·Êžƒ«õ¢¾øÀãOç|~ÙUb°ný±J»eN¬Á†w,†lÆé£›Ð6‰†ë’ûÝr)¡¡)FýÑm¥þh õ-45wÐÙ££«ÇûëìêÆ²lÆRÍùó&œGEî×}轉Z¤’)’f iIfNÀ¼ÙS9iÎ4&VW2®¼„ÊòRŠ Bé¦ÙŸÑ£>éC!A^.¼¹~7<ük7ldóö Àе ·"k’NH—ÆMJÉïÿû'üøî§•nˆ¸ÕspõHÀ¿Ñ0.ÐŽLî&V÷ÜŸzöÚ[o¸*ÏÌJ7ò˜P·~$¿u$«O€ŒÃ!Ù0-<±Xá²ý:@™ (ˆ*¡AHO«+uƒ“XdÌxåc$vÏß’6[p$bLa…ùT+áägrê¼Y,œ; ]³Ñ÷L>ž8¶½—{¯CO<ÅC‡yiÕj~qÏý®?L$šã¸ÿºG.2¦=féÀ€²¦ª«*Y0o.yÇϱºçÉÝØ}ÿÖHÎ{4 @h´Z6>pH/¿øÇŸË¿áÊK‡\?Àl¨k¤Ç688€s¸Ý«/׉„bO}{6²÷`#û5²çàQZÚ»QÒuyñ,K\s—’Ý&Þpd²3„X”G‡ž^·³ð Û¯{Ú‰™ë9Þ÷Y–BJ;T˜7s çœ~"çœ: ã+0 ]×Ñ}7(žzn}´'~($8r´•;~7ϼ°’žxË2AAN^®çñxd©dòöaXñw|ó6~ÿð ÔíÝ×EËÆœØ?þQpØ‚€ƒºlYñ³ûþtíÕ_@8ðF ´~$îùpö;–,@~0MwsÛN®»+M-mí¢±µ“Æ–N[ºhë즭£‡ÖÎÚÚ»iíì¡«;î¸öØ+·À«*S*CEÉ9I¿H%ÀýÞ¨ô|BöéÇ[Òa;6Mòss˜=µ†™“k˜>©š ã+¨_NMe †aƒræ¼zÖ¤wš"![ì•Õ°ü¥Wyã­·ù`Û ÃðÜ{]®jà1Þ‡~Ãü…ó¹aÙL;ëóèªe…e«ý¸¬?|ÔÀrâ£VË»wæÖ\ûÞÖíœ6noË6‚8{¤zÃ=n(åÈ¥;û 4ïΦO:á)Ó¢£+Ά6ö7´pàp+u‡[©kh¦'žDs&±æLlÛµï-Až õ’óX(üBd¨™ÊCiW½ áÊ+ï/š"š!7'Ì쩵,Z0‹E f3©¦ˆTÊžä~Þt&þñ²iôô$ijiãá§Ÿçg¿ý±xœH8Œ““ƒpõ ýYùeëü×*SëAXË2ù—;¾Í«k6ÑÞÙ…ÕòîãØj¿±‘®þ£e\/  em—»ùÛ½óSï,¿Ï+Žlœ=ÜUóXï Å­~OF˜°5! ©5IÝ‘V6´³¿¡•º†V5¶‘J:z>}KZ¾•#ÉË §©¶}‡½]H?BÞÛå"K¤ž]tÄuéýâ!RÚ: )Ó¤ /Ê™ f²hþLN=iù¹9DÂa¢9a¿Lg×ñ)õåêFÂðÁ¶:þëW¿gí†÷ikïÀ²L[<3'bk.:7¿/å¥^¢+YïSÀ#¥Å© æsé… wÒç‘»AYÛ±YÌÑø£e\ʰFÙ¾íÑÖhíÒ»î~8ú—7^' ûÍM¶ÝÁNÜ‘LxÿgèΤŽk®´u¥hïŠÓÖ§µ3F[gœ¶ÎÍ=´´õØíÝ4·÷`šº&(¹ð!ãþ4†fsð+e døWgâÈlìÀþAè¾(T–}ûP*R* a(˜–…ešXRRY6†IÕåL_ÆäšqLPÉ´‰UT–EI™é•ݧ9$Äq3á…°'¼iÁëo½Ç+«×²â•ÕìØ»ŸH(Œah(%mòNà$˜Éðçîý¢‘*ã Œ³,÷-sÿ¯Æ?ýÇê¹¥%Nû¶G}±¿<ž €ËІJíÔzö=z÷Ÿ»éÖO_Û¯€ÂP9G¿? }ëz³û*,ËæÇWئ%9ÒÒÍÁ£í8ÚAÝ‘6íàpsB(›]EØÂ¤ÂÓÙ *‡C:GÇÎU¶CD™}•þµ«`ÜßðöWôöÊ#õ½aWÒ²âN…]Ä0:E¹œ~ÒtΘ?ÓOšA$lkÞI+¨rÛ5‚òØbK¦R´µwò‹{äÞŸ°‹Ô>/7 ŽN€Ó ï+Ÿ˜jлò€ÏÀ5V½t •óYî´–R²äü ÉÏËã'÷<&´Ø¾‡¥JíÄ.ûRÏ¿‹Ý(_Ã0PÌå‹vâÜS¦þùçÿŸ0­ìº¯¾ÿþ¼þø2~ÍÕ’)hhé¡¡¥‹ú–n7uÑÐÜEGO‚dÊÖL$M’)[GЭwoœðVŽ is·ØÅ•ãvn®_®<°¯“ûµëÒ¥3|2ßR:qµÊø™6&÷3 L2¤Â}⩞bt$ÐRöÊ>µ¶œ“O˜ÂÉs§0¹ºœ‚¼(y9äæ„ÒB¯êã¡Ö›uõÓ!†Uk>à×<ÊÖ{8|´É®»×HS«´<| ¥éMfÇ(¨ ÙùlûJéDLûº©AgÁ1S)wÀ¥Ÿ»]½½aýN_½ øÀñ’£v FùšºCtn¿gËα?\»q³Z8wŽð÷3Ô­ÏDÈ5_ÚK× žTtÇStÇMºâ)ºc):cIZ»â4µÇhnÑÔ£©-FGO]4%'Ý8’1ù4'.”°5W(³[ìWÛí%ªÙG©‹§¶«¶ÎÊñ4”Êö½Óo®‘±¦´õÃ!ʲb*ËŠ©*+fæä*fMϬɕäD켺i:]ÕÇke÷Çóátt%Ù°i/¿±žÇŸ{‰#ÍäDÂht]sÀ:é[Á³»êÙR%}÷½¿ÕÖSÍÎ~Ÿïüþ÷X·q›zoën!:·Ý£Fù?–€kTÆÓµÒS¿?¦|æyëŸþ=±xÿed?.¹_-8½uÇSÔ7÷PßÒÍ¡¦n籋xÒòÐpáϱȴ–rŠT¤‹Òâ¸_ÂÎu»r¿ÊÑÇá~½:o•µgGÚPî+é}¥r3ßÊë Æ’ôä”RVçÀ¾¤ÃÕ÷ï+ÝØ^úJIÓE&®$Ö´ œ¹`:gΟÆô‰åž,˜ß°þOÚÜ,Ä¡†FîüÅïY¾ò CóÊlý×XÙ7ÁÓ%´ç¼ô&j:œ“(Gá4°¯ûºL×S¸!¥sõ®àÝk¥(*,`ß{«˜´èfZ¶®”Íëÿ Øá¸ÿæhOÖÑÞÜNÁòiý¯š’…ÿr×=ßþò„?ÇìV‘¹+¸®ÙÞA{·¤¹+NSG‚ÆŽM Z;ãÄ’&±¤-íKšÄ&)Óv­ý)í¾y€™÷Ž Ä[‚tíUïZxþmú•¾öM»1iËŸe_‘ÞÏ*ífö˴зcÈúZ5¤²…S)‹hÄ`ÎÔ*NœQÍÜiÕ”)`lQ%Åù„Œ´`Êt¢WññYÍ‹†ì±õìÊõ<ôô‹lÛ¹—ƒõGÐ °a8U}¥qÜû2À=è·û÷õ8/ê}B0¨z©!¿òÔÃ|ç¿SMÍ4¿ýkFØñ÷alµK‹íø‘ç^¼õ+Ÿû´Ê‰FÅѶ SÒOÑÜ™ ¹#IcG‚æŽ8Í] LËViÕ/@#(wíÆÖaЖþô©Ì(Hɾ2çå (ÄÓ.à :¼± úÝ/ˆ«,ôèŠt­òÎU:Õ{J* ò"Œ-ÌeLQ.+K8qÆxNœVͤêvÊÌ@àSæÇË}¬{oÐÜÚÍŽÝûyæ¥Õ<üô‹Ä "áÝ ¥W\•}àzÑ]³Á¨*¸o·Ú_  œ€1=ÓÒéî¾–iò•[nâÿoïKë*ϵïw­=dNH £L2‹L*NàTçªØÛS­ž^¶öÔ~vø¾V=_KÛãPqF=ŽˆµŠ¨uB¥Š !Ìó”@H 9;;{Zïs~¬é}×Z{'X@†½®‹+Þ½²÷Î~¦û¹ŸûÉÌʦWf-`J¸æMÚ®ÛÒ¡þw ‚½ŒTŠ/xrÐàQÃ?~õ)ÜþÊFÄâèaÔÏÜn5éÆÀÍ_³31‚ÕúâFyÀ¨OFšE¶“fvš ¡.RQÉÀã¸fÛgÁeR7@ 1•'”ÓKóÿ¹Ü0Ÿ»”Ê›€qÖ\×M™Æì‡³FÄY§@nN†€[œXBâxíê ;ñÈ´™X¹v‹¾®Ü-¸fÛ" æZqsrP¯ì‰8 IDATLõ ´Öúˆe¢øšÀ 8=H$¾öç@&i™Ý!BaA>ölø£/ù ¶n^»‘Xül„>ô;ï¡ï0þ~ÐeŠ÷PÛ†é;w>6ïóåtÛ¥£Øs·[-Ͼ3·]' )³ RFRì_ û,I©WÜu_ÃyØürD ±Åt’ >"·ùDIhé™ "‘ÞfL$H$8J{çbØ€b ÐÊ QZ”‡’¢<õ5S\ãND-ÁŒ Îÿÿç§K1ÑWXµ~ êðû¡*Ìžª³pØ]¯tÞꞤøœ925{ZOsqå;/㜡…X¼©>™"©b­Œ1#ZºS0W:CÌೋ5œû,óDk™„üÂá'äºÛã¬áÕÝà>³"¼é‡L9+•Ù™äd—ĨÁ¥7¬ã†W 'K±RxM˜n‹Å“·9×(oâEM­!ÔÔîÅë³?Æ{-‚ª2øUÀ™A«Õæ¬Ê¥2¼óhë,ÉM/n†t_GÀÏ2g-ÀÉOˆÇãøþÕW`ôÈ¡øám73Öµg>6-ƒNùýÆbß¶0Á€½ZÓ×Ï´ Gþä÷.yyê_YmsµÂrAlFi Áã¨ù˱Ý/sÖmŽ÷Ûé}“"€uW4QòÊz>Bö ËOém·¾%8säI8ó”“0t@ø} ü>>U&0tv};ÓmG“á«*CÀϰ`ñ<=ã]ìÚ³‘Hœ822‚v-ï'p¯~ôi€Ìw£<À\¤Énqç’<›x¿“û÷ÃôÇÂÕ?ý355íÛÇ›–?`/bËïÑê@ÛxóŠ©+ÖykîüôÒËð—×ÖÀçcnÄTèÁ3!)³ ›,¦›×Þfk²Íá}) ’KŽr"9ê+†{Y¸)¼¦é4ß~¥ùè_Z€eè[’“Jòѯ$̢ٙÆò-·±žW†Œ ÐÔÁ'Kª°hÙj|ñõZ´µw à÷CQìNlóÚÝ;0‚dðâgÉ ¨:Æg³ôìŽ ¹~fµå$×™!HU£‹â+“1 îÂËÏ<†oÏÇWUë5-ÀvbÆß·:M>€ÁJî ›xæ°_¿÷âSó±ŸW;Ôa¸cšÍèHq1¨˜ òp—¤‹Åeþ¸ê @œ AEÒÀFÁ§*µ·¬ONZ†qÃÊ0¼/ÕÕôÛÚ£µÝo9:Ñ.Ó:BalßU‡i¯ÎÁç_­FÐïƒbZ2`–8Õhr"HԬϔx–ä¾;lKQëÀ Ürô.àV¼¯ ÷ÏšŸC¹†§¾#†¤ ¾÷˜ÒµùIÚùt™¯ÃZû© ÀY ÔòŽïû²*&þòOSÆ~5ûE,\—…ÚÆNåÐÅ+­ð:Kp3°¨›Ì?ÕYý'ô¶›Ê€SöƘÁ¥3¸Eù™Èø™áƒ_U,¬ w9ë¾½xEzøuç[s¿Äëï‚ú}MhïìdefÝžt²ÎåB’dòÌ#q#òþý³døOwg»)¼D@ Ï›~p%†œ 󱎕‰ÐÎ9Ї¥çÿmfæÏÊPàT”\úüygŸ[<í»Ø}ooD{gToÕ‘-%e`ô6ÄH‘™% öÆÿÃÉ!Dpð1îÅÉ’‰NhyY”e£´0}r0 ´ËòqRq–Îãvo`=uþ‰²Ьç3Àîú6,[³ŸV®Â'_®D"žÐÅc„¹ Xía¹ gzn¡jW Ö1¸ãš·H27!p ì,„dF'Ùs"pd¤`@ßò2,_8×ýânútñ— Øÿñ­Ð¹þû Ïú‘]Ѿ#ù90ÍF;YËÊ©_Vå<¼°ò+üòŠÓðÀ¬ ´–A/μ0X’ÚjpÖ€ðo%ká¢Yš’Ó>…aäÀ"Œ\ŒÓ†–  7`-~à C$&µ™Ö'õx'è@‘tÄ9!žH jåV<ñÒllÚ¾¿ª c* |€A‘v—žs‘†Œ !‹RBþ™—š“Søh1Oû³¼LÐØ,½A[؃YMj×8f<ûfÏ_ŠE_­eh­š `§aÑ#eüG:0/?€<ƒXΠÿ@þ©¿ž5m*ùsŠÙ³ó¶º<¿T‡Ä òÐ…·Î’̱Ö4®÷×5 …¹8¥/ŒèWˆ“Ë ›åGn–9™~Á'ycO¢zOþÏëßÇ›3çé»"o|¸ó>_Ž]õÐÞÑ Ue°ôC¸< aAyN•e½æ&H J'ôöÏàÆÏ£º3’›3BfáÀœDçÂ}"˜35ï«i Ì|î ”•DßùÑÿch[ÿ$…vѺÿÛÊÌ+aà{(´cŽ/»ï„ßÿuê¸^yžZ‚Wï…_eîh.ŒÈ9¤çôÙ}"pMgdQ˜D¯Ü”äbPY>Wä#?[…Æ×…'M#7§Û˜0$ÿM%È’ýÿñZë|ªÎÆ«ÞÓ‚õ[váÃO—áÓ¥«áSUø}*‚_U-C6£!s¢ç$p8,##WgÆŽøäˆôܳÃäŸá­Óçë ; %âä: ‡ˆGÂÄb1üûµWá’ &âœkocj¢mU"´ãC£î©ºÿÛÎD< À(¥ô²é§=½øígï§ççí`«kš2èÂöb&Ôx…¹AŒXˆÑ‹0줨ª­:“lʰ»Hž ­?ZÇrÄŸ÷yžšù4·YªÄ=‰äf»Î9Õ(vnì(kœeÂL=—;BR6ae’©»GºÀŠMÿ¶J:êKe•Öÿ^tcóg‰û'œu>xýiºäúÉlÙŠª¾oÁ­ÖéºÿÛΜxÀjYùÀêõY?ôܫ쿺 w¼ØPW\ߣnHUqôë““Ks1°4%ù(È  WNYAœÌ–›·ûWVq}S©ïã åûô{tâ½ù_¡rå&lÞ±áH~U1dÉI [Ã%uÅœ(»zï…¼'ë¯sÏÔ»ô÷Rp},QŠ~ˆ>9?ƒB┡)Ê5Žò²¼ûòÓ˜üÐL¶|õ&PËÊ´ÿˆ×ýGƒ0Ýe@=Ek•wM{)rWaA»÷Ç“Øãïo@¯œ—çaHiN.σÝ[I4q­çùM ÞkƒOOüC½wàHGwóyÖíkņm»ñÆÜ/°lÍ6dtùkN„€O•¢¬õrqy@³$·ÛH ë‡Ë.îh»L…¦×?X‚ï}ŠÎp ]ÙÓ"È0qÒòéî©Fn¤ÛvªïÇ0A=;uÎZ ¸p–ÛjGö÷œ¬ÔDz  ¤#}·Ï¹ÚÇÒYC„qóqd½Þh4ŠMK?AÕúí¸é·÷ƒµ¯yŠBÕÿ0¢+ŽÛïhvæs@W¤œú -kÐO^}â>:ç´SYB“ùCe¢ÙÁ, M¥cØ]p´:È €-5Mø¸r-¾^³ «6Õ€s ~ŸâfP‚u³›mip‚ñqƒ­)9#Ê»€¬¥çé,`:™ jÉyY?#u÷HDöMƧ›J– ‡-@c;!YÏÏ|\4Âw^AWŒèšŸNfjxÇ+Zëúé†ñ·@ñ¥oÛøp”8 €"ƒÔ¢ñ“5µøò^žNîWá’?™*ø&ààÁn6þ6q+½g@Bãhj aÅúxù½Ï°}W‚~ŠÂ$–mD&‚zH·&ÇbŒd¢™dÏê[¥€˜Mp#ã¶!“¸ªŒ{8,roAr¶š%CæÀ¦!ËB®Ò}ÍA$ÃA$´¦=zFEg^q Sµýóµ¦å÷ÆßômÖýG£tñŸ tUájŸ‰wåö?gÑ[/PvV&;ZÓúdÏ¥' à‘v¦áü@g—†ßù ÿ\´ áb±¸À©"sÏS˜«»™ cf§;’ â‚ÞYj<î F¦â'’¹þðà »hj3Y)E@H7SF$‹u@Ü¢äT}&Çêr§H¤« Þ;?œt¾ìç,Ô¼k©v`É=6AWõ=¬#¾Çª0@€Ôâó¦äö;í£Wž¦Â‚|ƒRÍyZ°íºîÒúƒ% v¤WÕÿ¬ßÞ€ÊU[QYµUkð©Fzï¤[ËQ”“#&$¡[‹Š7IÎzÈb›[…íaŸJ:ä0N¯³Öö]Ù %äðVèaŽÖ¥èd¤û N1OàÑ{þˆIß½œN»üÖÖ¼{%ßÿÅŸlЀC¸Ôãxt¦È‚Áð•_ùlß¾J¼ú¬ÀºGh•Aª´¾§;œQžˆkBá(>®\³¿@S[~Ÿ"ôÈIâÌ“«·-¬¬&æã9FäÒsw½L²pªâ2ÁÈÀ¸Ç^9=Ì4T™ëïñ„H®«:§Nå“Éyyío2ãlBK`ÊäÛqË×ÑWÝÆvï®Ù—¨Ÿwì^øh2þ£Õ€j8r@§”^2uð aes_~±dx@*p0†ü¯¦õ=Í>µá›}ú= !̘]‰ek¶£©5„h<ÅØôkGr™6í¬eå:Û+ͶkvµçÖŠ2ËÈ,ÀÌàí[¨=„\Ý UHs‚vNga#Vªïv$˸Æv­H.§ýð”o‡´íÉ|áÎ0ž| ~8éršðýßbóÖ-{iß'·|•ÐîÓŽ6C;š)**€P2ÎRŠÏ¿¯ÿAåo<}?õ*HºhD4ÀCYLZŸª49ÔÀ§ê÷Þ¸sª6Ô`~åzlÜ^‡Œ ?|Š"_Ô ˜åLû“D@ ð“¦7“'92Jaœ‚ðª¸íδ_˜ 5ßdɉ[²$Erñ¬èpÓ3 áœã©îÂÅL¤K®ÿ=«®ÙQOûÿ<² º®_èh4þ£ÝÈNÊh_ùåçä–.~ûÊÊÌdŒõŒæ{¸³5‹8Øô4ÎîŠáíùUxcÞ2Ä ˆçí¤´–R€YÎz™‘kœÕ«^6Syˆªz™¢¬pÖéDgÁÏ¡›HžTÄñ:ˆä¥÷@·w9ïq,Å´GïÃ¥L ±—ÿœu´7ïKÔÏÿÀ×íÆ,8Ñ ”©Ÿ÷§Ü^ýN{û¹‡hèÀ &®©úWëóƒíÝ pð`úô™A`í¶FÌúd%Öm­Ãž†fC¨„I€š•’S 0Kê}Sò:Ûµ‹®…§fDµÈ@æÜ¾³‡ã¬4·K‘Æ~S{†|ãèÁëä‚ ½<µ'i ™v€íDLŽ8ÆìW¦¡¢¼‚.¹ávÖѲ{%ßÿÅŒšÿ¨6þcň˜@ €ÁjŸ‰ÿ­±üs^îA:׃,t¨Óúd÷ðJëÖù¤Šô>ˆÆ8ªëšðõú¼·pö4´ #è‡jÌ糤Á©nÀ,¡‡l)‡‡X‡ó¾âYãgËm=îù¤û:ׯ9…=\{lž¯´5•ˆ•MȃEöZ7îæ±€¦qõ*ÀœWŸGýþºú¦;™JmKµKî…®ç×p´ÖüǪ0@¦Áªÿ,¿ü…ÿ„KÎomªMeSŸ©r Ù/¥©­/ÏY†K7kÜ•.Kõ2R€YR½l'óH¥ö›cë°Ç.Br(ðH‹¯„T^ª—4]xìC$$™Õ^§‹†ìŒäLLõSGr{ƒ³cÁ‹ã=¶r"”—•`éÜ7ðÑ¢å¸é·S FëçkMˇ¾¿ïôÉ>íX1ªcå"èZQaêª_§ª~õýÅÆäfeÑygcòÊ+÷W/CO–x}¿'#Áû8"‚ß§£÷UëñêÜå˜>«Óg}‰m»÷{¬UqííÃdnT2þWœkgL´±eËÍÙ æ’ÕÔq˜8Ï,@L~Jò–bk¤ŸÈ^#Lω#þÌ¡ªÃà~­ö“†X:Vx¹D"ì×Â\ƒäZéGÆÍÜ Cö"H4†k.»s_{Ï̘C¿ùËS:½·eõ“Fä7ŸKQǘР“)"Ù¿ƒQ´sñòêñQ°‰g޶>çÉŒ®;šo2´¾»¨ÞÝãìïë齪]Ñ8ö6¶cÖÂuø¯'>ÄœÏס¦¾¡pŠ¢€)¶)3r‹¥ŒÎL#dö‚qÖeœd#i{†$Èj!ã¦!;GfÉaœ‚°‡äQÜÂöjs²…_MÕ\‡ñ[·™0µ'¾8×ë~g©„=L‡E.Oý×ðÓþ Ï>üGúË£3Ù½D,¼áiÞ¾õÕ°Çzù±dP>{‡>DÑ@£Põ?X"Ô8ýµŒ{–¯ÝÈÞ|æ~Ãk³”`[²9ýdßën´¸»Ç™}z¿açžV¼øþ×X½ybñ4C€0#è7Ä/zPŸQêZNŠpIF`­³NIf.LªŸÍ½ý$OÌúÁγŽÍ»ŽM›îJò|ȱˆ%ÅY²©¾æ¼wG‰¼½D™öè½øîÅçã²&³å«7uVÝC‘Æßj|&ù±fLÇ¢0@úD•F‘QíÀ’öªUá?^|ÃmÅOÜý{wÊ` LeÈãæqïÞ§—¯_­Ûƒ/×îBÕÆ=ØÓПO…ª¢‘Â*r£pöŠƒ6è=;/ÊnI›®™[:Ý-Ñiç¢Ç·e׳ó’]‹évD@¸ÄEämPïIÒ×)¿“ŒäÅ­Ì¥ÀÁ¹†“ÊK1íá»ÅOgOºUWïh –•óüµÐ÷_~ëS}'˜ìùû6a9€A¾’ ïÒ|ùãž½ïÿãò Î1ÒsqÍVÏ:=iù¹[€ö»p$Ž–ö.Ì^´sm0ZyŠ:qañ·ÌrHiIà%³œ=w—¤µ¼ÙØfò í9´Gj…³bÛÐíl)-2633'[ÜRZ$ÐI@ð­Áº±¤3@pLÂh/:u`rœ4dÇë„ÑÙ "œ3~,Þ|þÌ^°·ÜñÔDÛªDÃç÷@Ÿè«7Ú|ñcÕø`¾³MغÚð$¥`ô¯'ŽMo=w7늬!§3vgºî}ÐTmÞ׿¯BM] ::#Æh«Ø^s(ÚŠzó)Ôd]g…‘ZçYK€ƒ’+ÚŠ†!Έ#µÎ©=È>‡cVÉ8l¼ÁÖ艈ӨÅÜVà‘vDú¦­3ôü3þÉvOïa4ÅKÿ3“.?“~v7-új-ã­kŸ¢ÐŽ`Ëx™m>:–Çw8ì4»ÚÑÆc­»U†nsù-%{x2>j‹Æ¼™ƒ©êx/ÏL@> 3¢aͶ}X¾±KÖìBSk'~Šñ¹P˜Ô¼.¹ëp-OyÖªÕ“«ÔJ›nSéòÁ±éÖñ<Ï&݈ëñ«!»Ñý¯ÑQJqQ«ßîCˆ¥¶´4–˜í°’5Ÿ Ù‚ùýD"S† SïEkG 9ÿ¶·¾¶­USk^ Ù×"€}t¬Šãç’ڄкй³2‚Ü᯾»°¬waoŒ>=$r•±„x‚c_sϽ»Ïü_¬®ÆÎºÄüŠf-±$wkÌ Õ2‚ÛÙÚbDzÏÞeT$kÐI<{ö&aß©±i™Ù‹.ͺŒ¼©™‘|–²t·¹¡Çñ}Óp>wòÒ[„|–Ä_Zá.vNJ4d /`b/Ÿe$w)€Ë/šˆ7žï}T‰y‹tî]Å÷v'´®åv`ß1‡ôï%@²’ Û( *¹ƒ¾‡¼SuÖØSéÏü•y-êLEì ø¿X´²TnAÝ64·uéN–S¸5è¤^H:Ä…4›Œ×ä¯e©-ûûvzí!í¼ð˜¿—fÄÏyI=”\Ät^\˜£ï¡NŠ\òßæx²At"‡‚ô:…E#ÌÆìaý½O$4äædcÆ“Spúèá¸æg¦¯ªÖ1´­’‡v~` üŽ—”ÿxΜ]‚tRFÅZjkÚRßÊFÏ|Á*è”!LÓ¼ Þl×í1l¬Þw?ß‚û^^‚OWV£¥=ŒH\ƒ è}zIðÂŽŠ"žÀ’E[I›,”›[ä™Üb#âÂYÆÕ]9™&á2Á…äÒjl8"½c©µEì!ò/FrÚ‰^6qˆ˜%é< Yz[\.eJ£Qîz’ëu‚HâGôÕp7ÿhþùÚ#X±®†®¾y2Û¶}Û>j\z7uÕÏêýc†Ù—μ»¹Ð‡‰†ª½ÏüeT\›åüEV^Ù𮽔øÃÏXG'Ç3+±k_Z:ºàS@éFMVTžíFM–<4ó\b’æL½´³^бóxNCuîÜŠ¶‚°‡ØòRõîD@ ¶üd¼Wbǃ¬ÍÍ$½NQ>›„߆ñ‘r:Ñbõ‰\q*‘À¡%4L½çÜxÝwpç½§Wf}ÌÂí{7QÛúémZf´÷ZŽ×”ÿD)¼JÍHåBÐÂ{©sWeB㱪MõƒÿþւࣇÑß=ƒí¬kÁְѧ×ó]  R]/ÐÎf™gÄ=M&›ËïJ_½Óe'ð%ñì=Ê ™÷/ß›Ìr‚3‹ù'Î0W©Bi¶üÜìc:F`"Ð|¹D2 z™[qHªMç$Ý—‘G9¦AUœ;~,¼ñ Ýsî¹ó&<ùâtÓo§°šš­Û¨eÕ#Ô±ut¥Þ:Øt^ '`D<‘/U ‹T(ù#oâY®+ìU˜õÜ”;qÞ™#±hu-ÞøxšBRZël}¹ªT`–¤@#ƒYNZ¯\³'QÇE@¨{E[Y€#õsE@bÒsæïÉCØÉ#y2r sšíQ7[¸®(Ô¿¢ wßq+Î;k -]‡ÿü¯GÐÔÜÜ¥tÕ¼ÍÛ6¼}÷~äÓNT8Ñ€XdeA)˜ˆ’?ü:%wðòsspÇ/Œ›xvÔµàþ‹°¿)dðúÝ©¾¤Ag¨”p†ä`–xÖK€ÃK4S´ô8K©¼KÏKØ£'" Ü!ý•LHàð,'ÂI8ìT?‰ˆ‘mÄ äçd㹇&ã¬q§à¥7?ÂƒÏ¼Ž¶ŽxÇöwxÛæY ¸˜îGN´t?íR_ tjtôe¥}ÀÔájá¸ïiJáe}ûȹåú«èW?™ÄVo=€YŸ­ÇÒu»ô«B/Û¡h+§ Ÿ-EYò6dr(ôˆg%CXpŽ(Kùk[kË\~Õ\˜!ˆ*>6Ï‚¨—ƒ“·ì¸f!’Ì,ØÙ„{ñ‡–H ‹áŠ‹ÎÅM×]‰ σ§_ú€¦¿þ!Û]]R©yÖ¼j6HÛ ÌÓj û Gl¾´8Eyxú¥9ôö‡Ÿ±í»êÑÕѸW‰ÖÏå‘ýUˆ5›À^‹aøQ#âS:â§À‘ìø…ò €^,Xtš’?â*2GÞ?¸öbÜøýK0጑SðþçëñŪ¨ÞÓˆæ¶0…ÁV #—”–g½ ¸ŒÌ6d1šz/ü”RnƒZ(Îx¦òÂòô •·€Ü%E–H$À9GEio ì[Š gŒÆ5—N@ŸÂ\,^¶¯½û Þy!€X£Êº6ð¶Ms)Ú´Ò0ø!ͧQý´8Zp‚ô6b€"%ðçS ÇýD Žäœã≧Ó-?ºŠ]8a€= -øç’Mø¨r::#€D)e·ŒÛÚý®(+§ì–ȨcØ?Ãnñ9´\Ã<°5ºÝEhë ägãÇ“.Áõ×\„¼ÜlÀg•«ðâ›siá’*¦( x´yƒÖ¼êÄÛ¶@ß´Ód}:k/]ß§ÀQY(FV4œA>€^P³)ÙýN羂ñPsDz ²÷/LjÁ}qÙùgЕß9›ùAlßµë·×aÙÚj,ßPƒH4ŸÊàóPb î`D@¤±]? Îx‰€µÛÏKDo!j ñDñxeŽ0vÄ Œ9eÆž2§ é˜÷éW4ñr¶y{-¶ïªG¬³µZÇ%ѺœwÞaDú6Ãè£F´çé4?íŽg r ² g jÖ%ø,Ø{¬–`½¡!oàìß®<W^8žúU”°ŠÒ\Ô6„±fs-Öl©ÅÖ] hu¡-F{¨Ë¦ô ¿H{,·›Ña1’Ã9:ì©uŒð×Ën|e CNfzåe£ /£†ÀÙcGàìÓF WžŠÚ½!ì®k yŸ}ÍÞ·ÕÛª *ÚU5R´q5oÛ¼Zx›aìÆ×NȽû´Ñ§À1ûþ*†30Áà #;ÈPæï ÅW¬d÷?‹eU\¤ úùý>dý?f]<á ö‰§apÿbÄ@,®!¡iؼsvìÙ]{ ¦¾Õ{ ©µÃr ÄÑ^[j ˜[-EnÖÄÁ‰,N>‘Na&â(.ÊÇÐå2 CO.ǰ'¡´¸TUEÀïCÀìØµ —¬ÄÂÊ´|͉Æ'Àc­»)\÷ïܵ <±o„NÒ Q>"€yšP×§ ?펻2ÁÌ‚CÈ62„2%gÀ((¬±Œ“@? PÈÉWô-ÁÀ¾¥(+.BÿŠدŒ ì[Š}Ëз"MšÛ€æ¶N´´u¢+C$G,G4ž@,G<–ÐÿÓÅn?‚~~?‚ÕøêGFÐ` €œ¬ zæ£O!ƒêj÷DQ]»Õµ{±s÷>Ú]×ÀöîoBuí>ÔÔ6 jã@¬ˆíV)²“bÍÛy¨f€½F„ï >&DùtzŸv'Ü{o– ^B¶ð5jf_%gÀX,Æ|9j׸œàäµ°¤eŽQ^Rˆ²’Þ(/)ByIoäåd!#DfFdƒü€X,Ž®h‘HLwÑ(ÚCaÔ74¢¾¡ {QßÐŒ½ûÑÜЀkPX ‹)ªW µS"TGѦ-ÀØ> ÎA<¢Çñx´•´h3x´ Z×J„÷3­³ \ë$J„Àã!ðh»P¯w@»„Ãà‘Žòi¾.C0˳tPç`:óù=ÕqÆ|<¾2‡Ará+Œ×4`óïqáx† ©¼3O|Ú¤¯Ãà˜Ã¨¡¬p~ßëñHb¨Üá4'AŽ?iCO;€ôuý.Yÿí½;ù¿Ó†ž¾ÒWúJ_é+}¥¯ô•¾ÒWúJ_ÇÞõ¿_V @¢êIEND®B`‚OpenLP-2.4/resources/images/theme_new.png0000644000175000017500000000173112657640340017513 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<VIDAT8]“iL›Æo[zÂYÉʶvC !HMH˜#NŒq |ðÃ’}ax°0 É’yÄýà™¨1MLf\bÂÌt#Óy@Ø"=$ˆ06ʨÅJ/Xé åmÿ~˜Cçóý9þÇ£ˆÿ‡â í>;v_lñò7½¬®€÷ƒÒ}Aù¯€â÷WÉáÃK®ŽÐG[ÖÛZѱßƶäÓ–Ô—¯çw7aTv²°zBNïP|¾gG¹\מ««ª¼¬Ô¾¸¸H$arr³É,–DuwàÔc Ü<É‘—DDtÿÚ+UG]®Ý= OWVlµçóy4M£P(`2™¨s×)vÔ¿bPÀÞÉ«%› ”²}P½ð$ÉlªªË«*Æš »v‘RUN§QçøùôÔÀÅWÖ?î†,6(!¥èMœú´e›ï+ÝM’@X1™Øü8î}ûÐ4 kñOö<<úŒÃÒ4ƒj8|mÌñÙkJ•ÙL¹^Éã¡©½º®.¶»\‹Eò±Ó˜ì{¨Ð’å‹o®’£dJD‚ÔwíÔužimÍÍMM‰¦irÚ­)¹zv¯,‡‰–8/ÅÜ IþÚ³q±É÷DŸEw¥Ú硳æÅ¢#‘Ëýd´ÙÐëõÓ??ÀV¹ÌÒBÌ8ÊFKÅgïøÛŽÔê€6À[ÖÈ#ºD"2??ÿc.—»}›³ÍÅbCË^AMþ‚šþ¥k×îŸw»Ÿ×ß—2Ó êJJŒýÑht@1”Q¬îÁlµqO¹•éßd—‚Öâ¬[örµ­í"‚ˆÐµŸ8~ahhèT,ûg E)\é’ä»L¡ÈìÙ&‰†dtttÖëõZ7) L¥ÓC¡P¨fff%“É Ôôc0Ú(±T‘+í"]r <<<Ür› ý[ÍÍ­ƒU"‚ßïoddD’ɤ,//KjúC‰ÍÉØØØ¹ÞÞÞŠ;<ůոÝ÷z<µ[¬Ör5›UãÁàläúõ¡â»ï4;®F{µ=¾š]ý.Ÿéëë»$"Úf>‡´ç¡R·cË­T"N¥Î} z½~K¡Pàö,V€% ó7±µ°ú[yIEND®B`‚OpenLP-2.4/resources/images/general_preview.png0000644000175000017500000000145712657640340020723 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsvv}Õ‚ÌtIMEÚ #fhP¯IDAT8Ë•’Mk$U†Ÿ[]Õ]ÝÚ]U£a ¸aBvÉ*8.Œ;7ÁÍü nÙ8[!Έÿ 0Ù‰ ‡,$Ä‘†ŒLºSIw×GߪºU×EèÄ]øÂá,ç9‡—Wìïï? ‚à»v»†!3i­ïºÖšº®‘RFƒÁàsqtttµ··DQD³ÙÄq¶mcš&u]£”¢,KòO}J†wWQ5 Š*å¬*¢øš§£ŸñB;…³ üp d %ä9Pƒªº ªæo3SŠð—M¸˜2÷ðDG‚¾b°&$Í„ë<¡n­ßº¸®Ë÷Ã3¼Ä!ùe‚¡_¢‹)é(æâ&%ŠSÒ$ÆP ’|‚¿$î777üxñ+ó|Læ{šßÎFüñgÊ$ž’&…ªÂÀ²MòBàfZë[ʲä÷³k^Ƽ»PQëŠiYóòÒ •¦Õ¥PN˲N†„eyo¢RŠÎÂ{¸o"«FÖ9cSáÎ *ÙÄiµ¨ëÓ41M“nk¥Ô- MÓhyy9è÷û´Z-®M×ÅÓåƒÃ0(Šâ.@RJ²L³¸¸H–e‘ØÝÝ}²´´ô¬×ëùüÅq|}zzú™ø¹±³³óM†_(¥8??ÿv{{ûËÛ ¼®×[[[ﯯ¯mÆc×u;ãñ)%Žã`ÛvbšæO'''_mnn¾˜íXÿ„aøa§ÓùØ÷ý†Öšn·‹Û¶ÑZ·£(úH)õxñ¯Â÷ýkkkWVVÞ^]]í:Ž#ŽG‡‡‡ŒF£! g Úž_Ɔ,ñIEND®B`‚OpenLP-2.4/resources/images/system_edit_copy.png0000644000175000017500000000100312657640340021113 0ustar raoulraoul‰PNG  IHDRójœ sBITÛáOà pHYsvv}Õ‚ÌtEXtSoftwarewww.inkscape.org›î<“PLTEÿÿÿ%%$&&&(((¹¹¸¼¼»ÂÃÂÄÄÃÅÆÄ®®®¯¯¯°°°±±±²²²ÒÒÒÓÓÓ×××ØØØÝÞÞåææçççéééïïïôôôõõõöööö÷÷÷÷÷÷øøøøøøùùùùùùúúúúúûûûüüüýýýþþþÿÿÿWvtRNS$'017LMeeƒ“òõùúûvW9%ÃIDATxÚ]ŽA²! D;­ çºõþW²Ü|ݺ²EI>ÓJX„<š ¶Á÷z¬±Ù¿ š6ïC0ª›±s$ftJbŽÿ`–{¶f«iö ¯ÊváïäÒ/‰/ýÂFùÙ«É/¬D÷sñ!UÕ4ä·ä™`Ò¼à8ˆj\(l¤Ý+…‡P´•ú7>Îv ðöêøyh¡¸—ØÅ©´ŽýL‚0oç{Í‘ÃïÕùWžxÈé×òR/Ê)E}«þŸJ¼áƒIEND®B`‚OpenLP-2.4/resources/images/projector_blank_tiled.png0000644000175000017500000000121412657640340022073 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs»»:ìãâtIMEÞ *#Ç1IDAT8Ë•“ÁKqÇ?ovÆ]w–"ì°¢<Ž- ]’$èä!Œ4ºî-û+qÁö:lÐ)°=éAëb¥Åíb±”³ìš;3¯Ëî2Z~àÇßÞ{ß÷û½Ÿ”Ëå»¶m'TUlÛ>ÛØØx266ö6™L¶Ú2"B½^¯MOO&†yttô¾T*õ†ÑE„r¹ü,Š":zEäóùwÀC€½½=FFF0Uõ÷ÖÖV¯ã8$ :U•¡¡!ªÕ*­V‹ pǪÕjŽïû=ƒƒƒ_ÌNÕ¥¥%¹èÄu]TÁó¼ûa»®û¸`Š™L†ååe,˲¬x›ôõõQ¯×9==¥Ùl²¹¹Ùl»¼frùùy†‡‡Ïi†a ªÝupp]YYñ×ÖÖ3n ¿¿ŸÅÅEþƒ™ÕÕÕ_†´#£("¾_Áh4vvv>e³ÙVÜÉePUŒ|>ÿÀuÝœaß‚ à*tï`ww÷x}}ýf*•J]©…ÎÁó¼×sssO“É䛫$€ÉÉI¶··( Eß÷AÐcYa¢ª˜¦ÙÃ0ŸTÛ¶ü•5—Ë=/µ?–Üž}455U®ÿë=»Ät(‹wö÷÷|­ÎÌÌ|ÐÎxŸ›ÄxðÄÄÄ-yQ©T^yžªêY:þ¶°°P²mû¥ˆTþÕæ‹7ÎýIEND®B`‚OpenLP-2.4/resources/images/presentation_delete.png0000644000175000017500000000123212657640340021571 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×ÂRêmá%5ÚI¯eðóy~æ¾p)õôy6ô=µƒÖ†wÏî#7ðTÄ©ÓK9$ý„dÃ;:böîUĈG3{ÄÆ&Æ9ù€®“a7ñ!RÄûšB3å)ÊêŸ#›Ù+Uª{9ú4ó'Ø·|:ºLöCÌ…†âkVÆ,uJÏó„ÙeÞ9¶ o‰ñõÀ`[ó\T!ÅÖ.Mãòzá×Ý'¨å^¼™#B`¬Qjdu3.Û+l5^á57)°¾8C­} î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×Â6Oo/†ˆÜãñ0‘Œkà{Á˜†ˆ¡¨èŒ OeÂÎŽLMMÁd4аî®.y¦ªªDibbihÞžƒïy‚ø^Ÿ€[·nÉ*MÚÐжkW¯b;HADµ··# A, ñÜn³!89‰^Š˜ÏçcaþÍÏõ ¨ªªÁ`åå`»rå êëÑÙÙ‰zº²••–B&üVÁ™g‰,€ÖÖV„HœËí†ÃáàHqA³hN…>F£Q¼"¥Ó$—/_Ƶë×a·Û‘ŸŸ¶ .*°à ‚…_,[cc#Âá0¬V+Ìf3&)^¯WÄxúúô 0™LR„! oiY™LxñâEá:‰8qâØNýq S#!,JŸ‡˜ï#^yU7ªÀVSS#©¦¼÷1 à(èP[[Ë…£åžÃÎä ñúäÉ“è¢bÌÊÊÂ`÷–‹Á¼¯"zeΕœÇ¤: cuµD£»»›£&°Y­@…ŠMMM(//¯KJJPPP€sçÎIrssEÀż¼–m€òálÌÏš…egÑ\ߌš›5<ÌÑÖÖ§U§Ž¯w)Â2JA]]Ý]ï‹‹‹‘Í¢D€±Â„¥GçS·Æ×÷BùIÁîK»QWS'ZZZ˜X¿UVVrî8÷ì9דKñ]¥”dffʲÊÈÈÀäH¯¦ÇÀÝëFX cÏù="¢©®‰VMƒÔ’ËåN§SŸ€ŠŠ mɰÇZų0§³åää 0¨â£8»:d:šH9›‚}¥ûX€tÉžžX,¸Ýn=¤ðX{.“qþ9ŸFIÛéÓ§%)/ÂávJ´¶[‘ß–-[`¹cá1^"¼K¯€vz™Ú&w;^Jš^J¼£Éú¥§š*íÍ#I°»ÜõèÛvؼ6,Î\Œ1/µ`rÄKßPKgèÀm”—¡´T-o—/]âmš—$ïüLú>BÀÒƒq°vØ$Ü–v ¬}V,?¾¡Ñ)é‚ýô]Ow7«K ôo5àVÊÝLúø¤ªJwTéžBË‘H<ð,Zmm´Û Án³£ðvvï€ÏãçüsÏàÖ̽@°z&ì=W/“HXU¾¹Ê˜›à-˜›UˆùyÌÍfô‘Ãbö?·¡²¹N‡“›¤ôvs3ÂTŒÝÄ“ø(R„LFЈéÊ^3$"R¨£!Ì¥eWeª–~a®6cSö&ÔW×ÃTmÄM“IÆv{˜6¸@TTÔ¦„„„Y3 `&fˆ§š¹T£ñ1Úf‡G¡Ò2T~TPXR6ׄ aú»ÏxË;Žà¼ˆˆw s˜h&RLš r?¡Êîg2âTËaùûÔšoBùFANnÈX ¿+uÔOÝÔIž›)ôK–,Ù7—Iô ÐDHƒ “ç÷}Þ/‘üW,å^²‹¦àБCТǩé÷záêè[è|ššúFþ¸$Á@¥–|¼_¶ùž ü:þÖ×?‡WŽ)ˆýœ¼§`ÿ¡ý`ÓΑîÎΰƒÚïÆwFGG ¹~ccB¬N á”&NÀ Ǽ}3ÜXmŸ…E‘HøNÁ3[äσv¤gòNêiii»"##…üñ´H lþ=ϧ+XW…z_Çu 67&°— °”6ª<9%IØ XŸšú1Uü ä:"@`!\46Ží™ïà¥ß,ÎS°¢0Û³·âNS3êkëPB'&2 û[+W~o0ù ÐÎý÷„È yŠja k®7|.?ü?w>>ÄòZsÛ]¶lÙîÄÄD!*NÃ=ð·hÞ$×]]n´ÒãŸ7Âü,))é‘?¹­ÂãoJ¼cúè?ëâùÓØ‚ æÓ%…:Ö݃ܯ%¼;ûIyÿ‹j’[¬Ñ@4IEND®B`‚OpenLP-2.4/resources/images/openlp-2.qrc0000644000175000017500000001560212657640340017177 0ustar raoulraoul song_search_stop.png song_search_all.png song_search_author.png song_search_lyrics.png song_search_title.png topic_edit.png author_add.png author_delete.png book_add.png song_maintenance.png topic_add.png book_delete.png book_edit.png author_edit.png topic_delete.png book_maintenance.png author_maintenance.png topic_maintenance.png song_author_edit.png song_book_edit.png song_delete.png image_group.png image_new_group.png bibles_search_text.png bibles_search_reference.png bibles_upgrade_alert.png bibles_search_unlock.png bibles_search_lock.png plugin_alerts.png plugin_bibles.png plugin_custom.png plugin_images.png plugin_media.png plugin_presentations.png plugin_songs.png plugin_remote.png plugin_songusage.png general_preview.png general_live.png general_add.png general_delete.png general_edit.png general_export.png general_import.png general_new.png general_zoom_out.png general_zoom_in.png general_zoom_original.png general_print.png general_open.png general_save.png general_email.png general_revert.png general_clone.png general_find.png general_back.png slide_close.png slide_next.png slide_blank.png slide_desktop.png slide_theme.png slide_previous.png media_playback_start.png media_playback_stop.png media_playback_pause.png media_playback_next.png openlp-logo-16x16.png openlp-logo-32x32.png openlp-logo-48x48.png openlp-logo-64x64.png openlp-logo-128x128.png openlp-logo-256x256.png openlp-logo.svg exception.png openlp-splash-screen.png openlp-about-logo.png import_selectall.png import_move_to_list.png import_remove.png import_load.png export_load.png openlp-osx-wizard.png wizard_exportsong.bmp wizard_importsong.bmp wizard_importbible.bmp wizard_firsttime.bmp wizard_createtheme.bmp wizard_duplicateremoval.bmp wizard_createprojector.png service_collapse_all.png service_expand_all.png service_notes.png service_item_notes.png service_bottom.png service_down.png service_top.png service_up.png system_close.png clear_shortcut.png system_about.png system_help_contents.png system_online_help.png system_mediamanager.png system_volunteer.png system_servicemanager.png system_thememanager.png system_exit.png settings_plugin_list.png system_settings.png tag_editor.png system_configure.png system_edit_copy.png system_configure_shortcuts.png media_time.png media_stop.png media_audio.png media_video.png media_optical.png slidecontroller_multimedia.png auto-start_active.png auto-start_inactive.png multimedia-player.png messagebox_critical.png messagebox_info.png messagebox_warning.png network_server.png network_ssl.png network_auth.png song_usage_active.png song_usage_inactive.png tools_add.png tools_alert.png theme_delete.png theme_new.png theme_edit.png projector_blank.png projector_blank_tiled.png projector_connect.png projector_connect_tiled.png projector_hdmi.png projector_cooldown.png projector_disconnect.png projector_disconnect_tiled.png projector_edit.png projector_error.png projector_item_connect.png projector_item_disconnect.png projector_manager.png projector_new.png projector_not_connected_error.png projector_off.png projector_on.png projector_power_off.png projector_power_off_tiled.png projector_power_on.png projector_power_on_tiled.png projector_show.png projector_show_tiled.png projector_spacer.png projector_warmup.png projector_view.png android_app_qr.png OpenLP-2.4/resources/images/author_maintenance.png0000644000175000017500000000342212657640340021403 0ustar raoulraoul‰PNG  IHDR szzôbKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEØrIþ©ŸIDATxÚí—kl\ÅÇÿ3s_û¶¿íí—7Å RÉ`Ó‚š"UrPS õñ!T¢jµ¥*¥‘ÚFHéBóÑŠ‡p¥*jP"’P¢¤ǯݵwí}ïÞÇÌôÞ›Ud!˲j¿ðÛ=3+Ý£9ÿ{þgµ{ñ%ÿo¾`îßÒ`á|‹³@¿#IÖáüµ“æ/þOÜ»£½Gç¥íÌîËŠòœ‹§Þ8—ú-–â „ë®Ó>©RÔiºã ÏìÝ޹ˠ`^yîÇd.5ÿBÈþH4GbIUÓŽ)Šúü?ű„»¶6®pv©ÁúoÙŠ[·íD÷ý8õî»8úÂQ8ß àýU 8þ‡'Ý≅”£†¦#­Ãºæ–nÆ”ùìÂݯ?ÿ³Fû•ƒ”¡;âß} [Á1ªâÎ{FJ&qâÄɆ5u LŒš¦9 J¡iÜqàX ‚‹‘r¡ô=¼>|{Fš)uпñ&PÅÕþ)ìÞ=ŒñññVœ]ý X–µ¯ó&Üwÿ7ÐÖ}2¹< å L«ŠB~ÕJyK¸}×ÐìíÛw€ O4ñ–žZÔÇ"xdtïäš:@¥{ËÀMPÂMØïeš°ä6 é$Þüû+]Xcä_%ðO)ÄN/GX%x»é†Fű5} "áe L!pÃÿLB®×Í­ÍìâëÒP£w×C’X•Ò*CXðj¼’…0 ¸:1.Ÿxú—ÉU ¸ðê¡Þ-ã@ Y[„¤„ÇWnXß(¹½Khºã‰Ófañ¤´J®€œ/Â)eqôøKDrÎW-ÀˆÄ&‘p RÀÈk»°É}_º6í黄ÏH%®3IH¯ å<&?Grf É£«Ð7´Ÿaÿ܆tª ^anAºáïvš®ý¼k`Ÿ¥£³«Ù„ŠÔì æÒ¬kë‚âX´¬ië£GLË|Üõp€ym °-¯µ ESŽÃell¬Ñ0Œ¡õöÇíì¤Áè  ‚׃€ —+A—úoþÚ“?úÅã·ø„äΛCw /¬8„Ñmû$çÎÓ¼Z¯äkC•ƒS^D&“ù˺Áo[©·ž}øæ ­ãƒƒƒ/«ÁºCD ì%„1H RžÅù‚„ ŸYnéìùµ›{¬/Rø4õöïGVê€ÏT)0 hŠqP¦@J‰t6ñ9ólêC·1#z„JET ^‡\± Æü¹I @!=‹Ät½ƒ€bD©ûëü©ÃqŠØvϾœŒÄ­‰tO$qÉÛÀ7ÍS=üQu"‡‡”^P=¢ ý™±13=K2T-SWÎÃCrªu t÷Šÿ~¯®£#®F;P¨@¢µ­š¦7Я#€„„i¾!o÷ƒ ŽË—/ÃÑðÑ™ø¹Â»î·I¹oY &'ÓÔäΰ¥²Ÿhv‚pî€)$$Q`´o~‘fõ˜ÌMÃq8*• $ÕGÀ‡0??›IcεL‚€)*z‡ü\Î@¤dˆ` .M6+”=jèÚ#šÆÖ{‡¨ EiaÅ\šBC[7Á ï·c[(• àB¢4ÿ)´â4‘ L…ŽYñ}¯šš;:al¸ F „ćïÈzMœO-òß\ðö© û[[êþÜPºêf ”þ›@.ó÷ɳ€ ßïÇ ÓSÓ%Æ ŒQ¿cÒ¿&›-ËIU«ÖrÙÂé‹gνñVúƒ÷?xÎöÏ<}öÊ&Jé¹ÎöUU††Úþ¾œ Ï?·X¬þîû~¦¥ÉÔE™^.s{&Q©,dK•tjÞœNåx©ô7‰%ƒ_Æž¯j¨ýP×TÄ¢AïίOöŠõk9¦e{B<SÉT¶gËænŽUBïÚóÕ{×ÿBàß‘²Ö•÷ Ô"îÚ¸k€VM>¤(¬MàBøžZ¶ßÒU…~a_ @¼×7±”«3é«\ðË]}ÞìX–íw@SYmð–GÖVÇ×;7—ÎgÜ8³æ“g¿fTêíi^W¾%Ò{\1u”MH0!ñ=àj”׆Û]ò¶Í§Keóü'WçNeKcŠ©%ØýùŸŒŽ}ØÜÔ¹p¢RʈíðˆR%õ S‡2ZT+¸Zò²«™TP<8„/ù<üÓ–ž¬ÞcTIEND®B`‚OpenLP-2.4/resources/images/plugin_bibles.png0000644000175000017500000000111612657640340020353 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<ËIDAT8¥“;k”A†ŸÙ‹«YQÐ DLÐ4±ÕµTtÿ‚Xh—ÿb‚‚¿Á&v^ÐZÄ-mÃJ‰I Cv¿oæÌ9ÇâË®«»©2͆yßyÎe‚»sšÕm^~‡]ðдÂb±ÀM»q0>Þ_¡P¬ð‚¥á¶.l/J©¯¥®¯¯ãÂù†2ml7ÞêííC}]=¬V+ë*b±˜úM ìri@^^nÿ¢y1§Í`à^Á«®Tk›šîŸILLlf‹ôE˜ŸÏÇÖÖñÛY.»$HN>1ðny9³µU{wï`dxd@"‘¼V«Õ›››þn6EQ¾a>Š‹‹‚¦¦&^<4èIxD8ÉÏÏ%ýOzmb´Zm£Ãá 4MÇC8 }ç––/O‘ ðS•«úEîê|™,Ùç²½¾íkRR„B¡ï6vaÇañ+¹XtœaJM]m$/¡Ÿ¡Ÿ§¢¤§¢¤§¢£¦ ¢©£¥«¦§­§©¬§¨¬§©¯©«¬§¨°ª­²¬¯´®°·²´¸²µ¹²µ¸±´¼µ¸¼¶¸¾·¹À¸¹Ä¼½À¹ºÂº»Ä¾¾Ã¼¼Å½½ÈÀÀÉÁÁËÂÂÍÄÄÎÅÅÏÆÇÏÇÇÎÅÆÑÉÉÐÇÇÐÇÅÑÇÇÒÉÇÓÉÈÑÇÅŹ¸¯›˜ ‰ƒ£†µ£›Â´°È¾ºÎÄÁÕÍÌÚÓÐØÑÎÚÓÐÛÓÓÛÔÒÜÖÔÞÙרÏÎ̾»¾¨£´š’²˜Ž¼¥œÊ·°ÕÇÃ×ÎËÜÔÑÝ×ÕâÜÛâÜÛãÝÜãÞÝãÞÜãÞÛäÞÛãÝÛãÞÛåßÜäÞÜåßÜæàÞçàÞæßÝåàÞåÞÜäÜÙåÝÚàÕÒÞÑÎÝÏÌÝÐÍÜÏËÜÐËÜÒÌÚÏʳ—ŒÊ»´ßØÕÞÖÓÞ×ÕÜÔÔÜÔÔÙÒÒÕÎÎÒÊÉÑÈÈÍÅÅÆ¾¾¾¸¹·²±®©©§¢¤œ™š„ƒ†wx{fhlOTY*2; &'*UXYjloxy{~€€„‚ƒ‡ƒ„ˆ…†Œ„†‹ƒ†‹„‰‚‡€ƒˆvzehmzƒy}w|vztx}sw|sw}rxpu~mt}hpzeoyeoyaku-4= "+EN\EP^#'1£ž ¢ž ¦¡£§¢¤©¤¥§¢£¨£¥«¥§­§ª­§©«¥§¯ª«­¨ª°©«°©¬°ª­¶°´¸²µ·°³¹²µº³¶»´¶Àº»Ã½¾Á»¼Ä¼¼Ã»»ÇÁÁÆÀÀƽ½Ç¾¾ÈÀÀËÂÃËÁÁËÂÁÎÅÅÏÈÈÏÇÇÑÉÉÒÊËÒËÊÒÉÈÓÊÇÒÉÈÒÊÈÓÌËÓËÈÑÅÂÄ´¯³–§‰ª”¸¥ Æ¸²ÍÅÁÓËÈÙÒÎÛÔÑÛÔÑÜÖÕÜÖÖÜרÞÚÚßÙÙß×ÖÚÐÍÐÀ»Á­§½¦ ½¥ž¾¦Çµ¯ÐÀ¼ÖÇÃØÍÊÚÑÐÜÔÓßÙØâÜÜãÞÝâÞÛãÞÛãÞÝâÝÛãÞÝäßÞãÞÜãÞÛâÞÛâÝÚãÝÛâÝÚâÜÙáÛØáÛØáÜÛßÚÙÝÙÖßÚÖ¥Š}àØÔÜÕÒÜÕÒÚÓÒØÑÑ×ÑÐÖÎÎÒÊÈÍÅÃÊÂÁÇ¿¿Á»º¹³´°ªªª¥¤ž™š˜•–‹ŠŒ|{~mor[^cAFL#+ =>A[\]moqyy}~~‚‚ƒ‡…†Š„…‰…†‹†ˆŒƒ†‹€„‰~‚†ƒ‡imrnrw{€„w{vz~vy}sw|sv|sw}rx€rw€oumt}hpzenxaku#)03;F>GT4IKNa`bqor{z{~€‚ƒ†ƒ„ˆ…†‹…†‹„‡‹‚…‰~‚†~‚†|ƒfjosw{{~‚wzw{uz~rw|rw|pv|ou|ot|nu}mu~jr{enwZdo#'/T]gEMX+3=).9¤Ÿ ¥££§¤¦¨£¥§¢£ª¥¦¬¦§¬¦§­§¨¬§§±«¬³­®®©ª²­®µ°±µ¯±´®±³­°¶±³¹´¶»´·¿¸ºÁ»¼Á»¼Ä½¾ÅÀÀÆÀÁÈÀÀÉÁÁËÄÅÊÃÂËÃÃÌÄÄÎÆÆÎÆÆÎÆÆÐÇÇÎÅÅÑÉÉÓËËÔÌËÖÎÍØÐÐÕÎÌÕÍÌÕÌËÕËÉÔÈÆÓÉÅÕËÇ×ÎÉÚÒÏÚÑÎ×ËÇÒÄ¿¿­¥¯™Ž°˜ŽµŸ–½© Ä´¬È½·ÓÊÇÚÒÐÜÕÒÝØ×ÞÙØÝÙÙÝØ×ÞØ×ßÙ×àÚ×áÚØàÙÕßÖÓÛÌÉÑÀ¼Ë¸´Å°­Ã­¨Ä­¦Ã®¦Å±ªÇ´°Ç³­Æ³¬Ê·²Èµ°Ê¸±É¸³É¸´Ê¹µÉ»µÇ¹´Æ¹´ÆºµÄ·±Äµ¬–waǸ±ÕÍÊÒËÉÏÉÆÎÈÅÌÅÃÊÂÂÆ¿¿Ä¼»Á¹·»µ±¶°®±ª©¨££ œœ˜•”Ž‹‹€€uuvhijX\]DIK"(+ --1QRTeeepopyyz}}ƒ„„†‰„…Š…‡Œƒ†Š€ƒ‡‚†€ƒ‡ruzknswz~y|vz€w{€vzqx}qw|pv|nt{mt{krzkrzls{hqyNUa&*4 !%-\eoZco;BN&+6¤Ÿ ¤¡¡¤ ¡¦¢£¨£¥ª¥¦«¥¦¬§¨®©©­¨¦°ª«¯ª«®ª©³­®µ¯±¶°±µ¯°µ¯²¸²´·±³¶¯²½¶¸Á»¼Â¼¼Ä½½Æ¿¿ÆÀ¿ÈÂÁÊÃÂËÄÅÉÁÁËÃÃÌÄÄÎÇÇÏÈÈÏÈÈÑÉÈÏÇÇÐÈÈÒÊÊÔÌÌÖÎÎÖÏÍÕÎÌÖÎÌÕÌÊÕËÉÔÊÈÔËÇÖÌÈÕÌÈ×ÎËØÐÍÙÐÍÛÒÏÜÓÑ×ÐÍÒÇÃÅ´¯¼§Ÿ¶ž•· —º¦ž¾ª¢Ã±¬É»¸ÏÃÁØÐÏÜÖÖÜ×ÕÜÖÔÛÖÒÛÔÑÜÕÑÜÕÒÝÖÓÝÖÓÞØÕÞØÕÜ×ÔÚÔÓÖÏÌÓÈÅÍÁ½Ì¾¹Ä²¬Á¬¦½© ½¨¡º¤º¤¹¡›¸¢œ·¡˜µ ™µ¢š´¢˜²Ÿ“€ZFÎÆÃÊÃÀÈÁ¿Ä¾¼Å¾¼Á»¹¿¸¸»µ´¸²°³­¬¯¨§«££¥ŸŸœ˜—”‰‰~tssiii[]]KOP3::78;UWXeeepoqwvxz|}‚„ƒ…ˆƒ…ˆ„‡‹‚…‰€ƒ‡‚†~…hkprv{z}‚w{€w{€uy}uzrx~pv{px}nu|mt{kszjrzjrzfowKR\15@!+@FRbkxclwQZg6>K§££§££¤Ÿ¡¦¡¢©¤¥¬§§®©ª®©ª®©¨±¬«°ª©®ª©¯ª©³­¬´®¯´®°µ¯°¸²³»µ·¹³´µ¯°º´´¾¸¹¿¹¹Ä½»Å¼¼Ç¿¿ÊÃÂÉÃÂÈÁÁÉÂÂÊÄÃÊÄÃÍÇÆÏÉÉÏÊÉÏÇÇÐÉÉÑÊÊÒÊÊÒÊÊÔÌËÓÌÉÔÍËÖÏÍÕÎÌÖÍÊÖÍÊÖÍËÖÎËÕÍÊÖÍÊ×ÏÌ×ÎËÖÍÊØÏÌ×ÏÌ×ÏÌØÐÍÙÒÏÖÌÉϽƵ°½©¡¼¦ ½¦¡¹¡·Ÿ–¼¦À®¨Äµ¯ÏÄ¿ÕÎÉÖÐÍ×ÓÐ×ÑÎÖÐÍÕÐÍÔÏÌÓÎÍÓÎÎÒÎÌÑÍÌÐÍËÏÌÉÏÊÇÏÉÇÏÊÇÍÉÇËÆÃÌÇÄÊÅÃÈÂÀÆÀ¾ÆÀ¾ÅÀ¾Ä¿¾²¦¡ŸŠ…¾¶´½µ³¹´²·±°µ¯¯³­­°ªª­§¦§¡Ÿ¤žŸ™—˜’‘•‰‰„{xyqooddd[\\OQR=BB#*+ >@AUWWaaalklrrty{|~€ƒ…‚…ˆ‚†ˆ„‡€‚†…wz}dgjvz{ƒvzx|€vy~uzqw}ov|py~px~mt{jszjrziqzfnwW`i;@K:AK\eqfozdmy^htMXe©¥¥§£¢¥¡¡¥¡¡«¦§¬¨¨®©ª°««®©©±­­®ªª­¨¨´¯¯´¯¯´¯¯²­¬³­­µ¯°º´µº´µº´µ¾¸¹¾¹¹¾¸¸Ä½»Â»¹Æ¾½ÈÁÀÇÀÀƾ¾ÈÁÁÉÄÄËÅÅÎÈÇÎÈÇÎÈÈÎÆÆÏÈÈÐËÊÑÊÉÑÉÈÑÊÈÑÉÇÒÉÆÔÍÊÔÌÉÓËÈÓÊÈÔËÉÔËÉÔÍÊÓÌÉÒÌÉÔÌÉÑÉÆÓËÈÓËÈÒÉÆÓÊÇÒÊÇÔÌÉÓÊÈÓËÈÒËÇÏÈÄÌÀ¾Ä·³»«£º¥¸£š³›´š³š´”³Ÿ—¹©£À´¯Æ½¹È¿ÉÄÀÇÅÂÇÆÃÆÄÁÄÀ¿Â¿»¾º¸¾¹·½¹¸½¹·¼¹¶º·´º¶´¸µ³¶³²´±°³°®µ³±‡tl§š¬¥¤¬¥£¨£¡¦ Ÿ¤žž ››ž˜˜™”“”‘ŒŠŒ†…‡‚‚}|{wvsqojhha``VVVMOO@DD/34$$&BABQQR[[[fefoprvxz{~~‚„€ƒ…‚…†€ƒ„‚†€‚…kopkonz}€zƒvzvzv{€ty~rx~nv|pxow}mu|lt{ks{ipygox\enFOYQYcajuclvcmwcmw[fs©¤¥§££§¢¢ª¥¦ª¥¥ª¦¥®ªª°«¬¯ªª³®¯®©©¯©ª²­®³­­·²±±¬«¶°¯·±±¸±±º´µ½¸¸¿¹¹Â½¼ÁººÃ¼¹Âº¸Ãº·Å½»Æ¿½Ä½¼ÇÁÀÇÁÁÉÄÃÊÄÃÉÂÂÌÆÅËÅÅÊÅÄÍÇÆÍÈÈÎÇÅÏÇÇÐÈÆÍÅÂÏÆÃÏÆÄÎÆÃÍÅÂÏÆÄÎÇÅÎÇÅÌÆÃÌÅÂÍÆÃËÂÀËÃÁËÃÁËÄÃÉ¿ÉÁ¾ÈÀ½Ç¿½È¿¼ÇÀ½Ç¿¾ÇÀ¾ÆÀ¾ÆÁ½Å¼¹Â¹³½±«¸©¢¶¥Ÿµ¤°˜¬™”¥‰¢Œ„¡Š€ž†|‡ž‹…Ÿ‹Ÿ“ŒŸ“¢—“¥˜§Ÿ›¨¡ž§¢Ÿ¦¡Ÿ¦¡Ÿ¥ ž£ŸŸŸ›™˜——‘ŽtaZš“‘˜’—‘”Ž‘Œ‹ŠŠŒ‡‡‰„ƒ…€}{}xwwsqtonojihdc`]\\ZYRPOHGG>@@156#&'+*+===KJJUUV^^_ikkqstvy{{~‚‚„…€ƒ…‚…„fijrvxy}€x}€x|v|u{€rx}rx}ow}pw~mv}nu}ks{goxgoxhqzajsZcl`irdmwclvcmvdnxcmy¥¡¡¥¢¡©¤¤¬§¨©¤¤«§¦¯««±¬­±¬­´¯°©¤¤­§¨±«¬°ªª²­­°«ª³®®¶°±¶°°·°°º´´»¶µÁ»¹Áº·¾¸³Ã¼¹Â¹¶Á¹¶Â»¸À¹·Ä¾¼ÆÀ¿Å½½Ä¾¾ÆÀÀÈÃÂÆÁÁÆÀÀÉÁÂÈÂÂÈÁÁÉÂÁÇÁ¾Ç¿¼È¿½ÈÀ¿Æ¿¾Å¾¼Å¾¼Å¾¼Æ¾½Å¾¼Ã½ºÂ»¸Á¹¶À¹·À¹µÀ¹¶¿¹¶¿·´½µ²º²¯º²¯º³¯¸±¯¸°¯¸±¯¶®«¶¯¬µ®ª´­ª´­©´­©²«¨°¨¦¬¥¡§š¤™”¢–‘ž‘‹œŠ™ˆ–ˆƒ‘‚|~wˆyq„smph‚rk€oh~mh{jeyjewhcsd]ugaqb\{pl„€~ƒ~|}|~{y|xwzvvwsrtpoplknihhecea``]\[XVVSROMLSNHOIA<;9233)*):2(" +*+989DDEONPYZ[bcdlnotvyz|~~‚~‚~‚ƒ~‚„ux{imnvz~y}‚w|y}‚vz€rx}qw|rx}qy€ov}nv}mt}ks|hqzfoxfnwdmvbktdmvbkublvblvdnx^jv¥  ¦¢¡«¦¥­§§©¥¤¬¨§¬¨§«¦§­¨©¯ª«ª¥¦­§¨®¨©­§¨­¨©­©¨²¬­¶±±¶±°´®­·°¯¸²°¸³±»´±·±­½¶µ¾·´½·´»µ²º²¯¼µ³¾··½¶µ½·µ¾¸·À¹¹¿¹¹¾¹¸À»º¿¸·¿¸¸¿¸·½¶µ½¶´¾µµ¾··¼¶¶»´´º´³¹²²¹²²¸±°¶°®´­ª²ª§°©¦±ª¦°ª§°ª¨¯¨¦®§¥¬§¤ª¤¢©£ §¢Ÿ§¡ž¦Ÿœ¥žœ¢œš¡›˜ ™– ™–Ÿš—Ÿ™–—”œ–“š”’™“–‘Ž“Œ’Љ†Œ†„ˆƒ€‡~„~{‚{xzwxu}vs{urysqwrovomsljqkhoigrmkpljnjilhfjfegdcebbc`^_][^ZYXTSSPNPNLNIFLGDLF@OG>SH=SG:G>4<6/0*#I9) /$7-#*)*444?>>GGHRSS]__gikrtvy{||‚}€~‚ƒ~‚ƒkoqmqt{ƒy}wzw|ty}rx}pv{ouzmu|ow~ov}mt}ls|ir{hqzenwfoxdmvdmvajsblublvamvSal¨££¨££©¤¤¬§¨ª¤¥­¨¨¬©©ª¥¤¬§¦§£¤§¡¢­§¨¬¦§«¥¦©¤¤©¤¤®ªª¯ª©°©©¯©ª¯ªª³®­²®­±«¨²ª¦³¬©´­ªµ­­´­¬²¬¨µ¯¬·°®´®¬´­«µ®­´®­´®­´®­³­¬³¬¬²««³¬«°ª©°ª¨¯©©®¨¨®©©«¦¦ª¤¤ª£¤¨¢¢¦  ¥ ž£œ¡›˜ ™—ž˜–ž™–œ—•œ—•š•“™•“—’–’”“ŽŒŒŠŠˆŽˆ†Œ†„‹†ƒŠ„‚Š…‚‰„‰ƒ†„}‚~|€|y~zw|xvyurwspuqotomqmjpljnkimjhlhgjfdhececaea_c_]^ZXYUTYVR\VR_WP[TM^VO[RKVMETKAPF>MB9H=4B8/E:/D8,F9,J;,TB/UB/WC/N=*N<*3).$4'?/C3$O>-I<.:4/951ABBLMMXYZcefnqqvxxy{|{~|€z~jmpty|~ƒ‡|€…y}uz~uzrx}rw|ov{pw~ov}mt}lt}kr{hpyenwenwfoxfoxenwdmv`ksblu[gq7CM¦¢¢¥ ¡¥ ¡§¢£¨¤¥©¤¤¨£¢¤¡ ¦¢¢£žž¡››¥ ¡¦¡¢¥Ÿ ¢¢œ›¨££¨¢¢¥  ¦  ¨£¢ª¦¦©¥¥¦ ¨¡žª££©¢Ÿ§ Ÿ§ Ÿ©¢ ©¢ ©£¢¨¢¡¨¢Ÿ§¡ž¦Ÿž¦ Ÿ¤ Ÿ£ž£›¢¢œœ¡›™ ›šž˜˜›––›––™•”˜”“•“’•”ŽŽ‘‹ŽŠ‰Žˆ†Œ†„Œ…„І„‡ƒ†‚€„€~ƒ}}{€|{~{y}yw{wuyvtxsrwtrwsqvqoupntpmsonqmkplkmigkhfifdfbaeb_`][[WVURPSOMSNKRMITNHVOHYPHXOFWMCYMA^PASF9TF8RC5OA2O@/B4'E7(?0";,<-6*>/@0=.:,1$5(2%1%.#-")/$7)D3"<.L9&ZD-^G/hN3RA.>4)=>>GHITVV_`biklrtuz||z}~{€€qtwjlqy}€}‚†y~‚y~x|€sx}qw|qw|ou{qw~pv}mt|ks|hpyfoxenwemvcluclufoxdnwcnvaktXbl%-¦¢¢£žž£žŸ¤Ÿ ¥ Ÿ¤ŸŸ¡œœŸ›™Ÿšš›––›—–›˜–š•–œ——›–—š““œ––›••›””›••›–•›••›—–œ—–˜—œ––œ—–𔑗‘Žš”’˜“‘™“‘–Ž–Ž–‘•Ž”“‘ŒŒŽŠˆŽŠˆˆ‰‹‡……ƒ‹„€‡ƒ‡‚ƒ…ƒ~~‚}}||{z}yx{vuzutwsqvrpvrqsonspnpmkoljnkilhfjfeidcgcbebaea_c_^`][a]Yb^[c]W\VRWQM`WN^UJaVKk\MhWH_PBVH:M@4OA3J/ 9+0%+!#"  #1$6(+ "-!0$* +!0$&&$"2'C2!7)L9%dK1PB4::;DEFPQR]^`ghiprsvz|{~}€„knrmqt€„†|€„{ƒy~x}€v{tx}sx}qw|ou}ou|mt{kr{ipyenwfoxhqzhqzdmvemvbluepxcmwT`k#)§¢£¥¡¢£žŸž™™žšš™˜™–”—”’”ŒŒ’‘Œ‹‘މ‰Œ‡†Ž‰‰‹‹ŽˆˆŒ‡‡Œ††‡ˆŒ‡‡‹††ˆ„‚Œˆ†‹‡…Œ‡†ˆ„‡‚€ˆƒƒ‰„„‡‚„~}‹v}{€{y€{z~yy~yy{wuzvtyuswsqysowqosoornnpllokkmihkggjffheefcbecac`_c`_a^]_\[[YVSQONKIPLGSMGTLD\QF`SFUK@VLBVKAOE;UH2F9+J:*N<)H8&S?*N;'A1!=/<.>0 =.9+2&* $*0#'!  ""+!$'(+ )5'5(3')!(2&5(1%0#."."0$(&7))2%oT8cQ<677ABCNOP[\]ghipqrtwyy}€vz}fjmquw‚„{~y~€x}€v{~sw|sx}sw~ou{ms{ms{lt|mt}jqzir{jr{iqzhqzfoxfoxepyenxeoyQ\g%¤¡¡¢ŸŸš›™”•˜”•’ŽŽŽŠŠ‰…„…ƒ€ƒ~|€}{||zy~yx~yw}yw|wwzuu{vv|wvzutyssupnwsqxsrvrqvqpvqowsruqqtpnrmlxnhokjmihkgfjggifehdcfcada`d`_b_^a^^`][^\Z]ZYYVUSPOMJHIFBJE@UKCYMCUJ>PD9OC6`O>TE6H;-O?/K;,C5'?2$?1";-6)8,@2"A2"E5$6)7*7*6(* -"+ *,!/#)#%"'/$5(.#-!,!)* $+ 5(5(,"-!,!4'/$7)+ +!),!.#0$4'-")* 8*7)1%/#1%<.+ !/$(*R?*nV>344>??LMNY[[fghmqqswywz~lnqhkn|ƒ|€z€z‚uz}uy~sx}rx~sx€ou}ot}ls|ls|mt}kt}hqzfoxfoxfoxgpzeoycmwcmx^itEQZ $,¡˜™–’’Œ‹‡ˆ…‚‚€~~{wwwssurqsonokjplinjhojgnjhkgfifdjeehddhddfbae`_b^\fb`ea`d`^c_]b^]c_]b^]a]\_[Z]ZY\YW[XVYVVSPONKIHFCKFBPIBZODcTFdTCXI;NA3TD5M>0I;-@4'@2%>JKLWXXcdeloprvvvy|jlpmpr~‚…}€‚{€‚zƒty}ty~tzrx}sypv}ot}ou~ms|kr{ks|ir{gpzenxjs|foydnxcmwdmy\gq@IS&,6Ÿš›˜”•ŒŒ…‚‚||ywwqnnkhggedebbc`]`][^ZY]ZW\WU\XVYUSXTRXTSYUTVSRVSQUPNTPMUQOTPMNIFKEALE@JC=RH@^PCLA7UF9RD5UE5SC2M=.I:*B4%F7(G7&>0":,4(;-4'+!(.#,"('$!  %+2%4'2&,!'!#"! "."8*4'5'8*=-7*(&.#3&."+!&&0%2&5'7)0$3&0$3%)+ * -!8):,2&7)-"&+ )3&1%'$'0#:+6(/#/#4'@/<-5(* &&'#1$\F/553==>GHIUVW`abjlmqtvmorhinz~‚„‡|„|€„|€†w}sz~u{sy~sy€qw~ou}lt|lr|ls|jrzhqzhq{fpzgpyir|eoydnxclx_hqLT^3:F›—˜’ŽŠ††€|}tqqmjjdba[YXWTSTRQQNLQNLNKJOLJMJGFA@>:8@:6LB:PE;SG;UG8VF5TC2NA3G;0>4)@4)8.%:0#5*.$4'6(($/#4'/#/$5':+2%% "#%## ##&/#-!0$.#, 0$/$,!&+!* '0$0$."+ -!4'4'5(1%),!#$&+ (0$6)5(7)3'2&0$1%,!%$.", ?/@1/$ !!'!$$((,"4'0$0$5(;,;-1%0$*/#-"$,!lR8<83<==GHHTVV_``hjkpsvhimdfi~‚†~‚†|…z~‚x~ƒy„w}‚tz€tz€pv}pv~pvov~ls|lr|ks|irzhq{eoxfpzfpzfozeoyeoxbluXajCJV™’Žˆˆ„~~vrse`^`ZWGCAIC=73/H>4fSAYI7O?/I:)O?,O>,WC0O=*Q?*E6%2'( + )+!,!-#&,!.")/$0$(-"")&'*2%6(2%)&,!.",!*)($(* %%$&$)"&2&3&*%,!,!-"+ ."+ ),!0$4(+!4'$!&/$* ) /$6)0$)/#4'0%+ ""* .">/6(3&"""&#$$(0$.#2&-"*0$7)@0;,D2 -!=-7)1%";-2/+@?>FGGSTU]^^gikknqdfjkmq|€„}€…|€…z€„x~…y…v|ƒtzqx|qw}ou|mu|nu}ls|kr{jr{ipyfnxdmwfoygq{enydnyeoyfpz^hpS\fL=-L=-dVJtdWzaHkR9_H2[G0K9'M:'N<'-"!(')%%%'""!!'*1%(%0$)(&'#"#%*0$3&9+-"(7):+8*8+8*3'2&+ ((''($$#%$**',"1%-!-"),"+ %,!."2&0$%,!0$%)&%1$/#* 1%1%2%,!" %)5'3'4'0$#"'$$#&#(* ."8*5(*+ +!8*A1;,1%3'<-9*2&:.0,':::DEEPQR[\]ehhfil]`cw{{ƒzƒ{~„z~ƒw}„x~…u{‚syow|pw~qxow~lt|lt}jr{iqziqzfnwdnweoxfoydoycmwfpzfpzcmw`jtS>)YC,€bC\E08*6)3&4'7(:,A1 *!"$'3&&$', (&'+ 8+3%%##, -!.#-")""(+ /#7('"-"8*I7$C2 >07)0$+ ),!;,4'7*)(% $'&!!()9+,!*&."'* 0$+!#)2&2&+ -"5(8*4&/#1%7*6(&" .#2&)0$7)6),"&&,!)+ .#."2%1%/#6(3&("'6)@04('* .#7)6(.#E:/99:DEEOPQYZ[cffacf]`d}€„z~‚z~‚{~„z}‚x}„w}„u{rx}qy~qy€ow~ow~ks|hqzks|ir{eoxeowcnvdoveoyfpzdnwgq{fpzdnxblvE4"=.{]?6)'2%&3&3&+ 3&0%* )(2%-"")/#+ .#0$"$%0$1$0$&$ 3'0$8*)$ ##* -"-".#/#."6(F5"J7#ZD,C2 :,9+3&2%,!3&6)8)(%%$)(#! &&)+ /#5)3&3'* 0$5', * -"3&-"."8*<-7)."1$1%(&&# !%.":+9+-")* * ''0$1$0%2&0$-!)* 3'/$1%@07),"/$#-"2%8+TE5789CCDLMMY[[_abZ]^mosy|{}‚|„{„y}z~„w}„v|ƒszs{€pxow~ow~lt|hrzkt|jr{gpxfpxdnweoxepzfozdnwfpzdnxbludnxP;'F5"S?*0$"-"2%4';,>.>/2%2%.#-"1%."*',!'*&  $2&,"+ ,!."&#,!, 6)3'.#,! !'$%$!+ 5(;,:,C2!4&/#.":+7)1$5'>.=.=-8*,!&$!#"#$'/#,!6(7*8*=.9+7)>/,!.#(+ + 1%:,5)0%.#/#.#)(,!%''%/#:+6)/#6)9+>.;,@0E4"?.?/@0<-6)/$1%.#2%/#;+B1 /#)&-#(-#C7+677AABJLLWYY]``VWZtvzy|€|ƒ|~ƒy}‚y}y}‚w|ƒu{‚u|ƒszqy€ow~nv~js|js|js|iszgqyfoyeoxgqzgr{fpzdoxdoxcnwcmvfpz9+=.rV82&%'-!0$<-A1B1 =.0$*"$+ */#/$& #*% (*#$,!0$*& -"/$2%("'&"',!$"1$B1 :+<-+!1$4(0$6(+ 1%3&*8)?/B1 * &)%)(-"0$0$1%3&4'5(6(5'7)@0,!, ))(-!.#2%*-"1%*'+ 0$."*2&-"&1$4'5(5'?/=.G6#H6#I7#>.G4"G5"D3!:+2%5(7)4'0%-!4'=.?/+!,!"(>2%567?@@IKLTVWSVYY[_psxwy~{~ƒ{}‚x|x|€y~ƒy„v|‚u|ƒqy€qy€ow~lt|ks}ir{js|is|hr{fqzdnwfqyfpzfpyfpydnvcnvdowfpz6)."I7$6)$!(,"1$0$7*5(.! *(.#2%,   (8*."#''&&,!."-"%)/"/#1%-!+ $&+*)*1%?/>.;-2&3'8*/$* ,!,!0$5'4'/#1%/#+ )/#0$,!/#/#-"9+;,6)4'2%4'8+;,4'4'3'''-"-"-"-"),!("'2%3'8)8** ('+ )*1%9+4'9,B2 ;,?0B1 A0A0?/4'-"-"."1%:,7*2&/$2&$ @3$455>@@HKKRSTGILkmqptxuy}y}‚z}‚w{€w{€y~ƒu{‚u{‚qy€szqy€qy€ls{lt~ku~ku~is|hs{hr{eoxdnwgqzhq{hr{fqybmubmudox;,+ T?*# "#+ 0$5'4'/#  $'* /$) !('+ "(+!$,!.#4'&',!5(7)4',!4'/$+ )-!.#2%C2 <-=.=.F3"@0/#-"/#,!/$;,=-8*9+5(/$,"2%3&3&6)3'6(8*3&.#2%,!1%5(4'?0@07)6(.#1$3',!),!)&', 0$7)2&7)2&+ -".#*&2&0%/#4(;,6(8)6)9+>/@07)6)5(3'3&1%9*7)7*7*1%%?1!244=>?HJKQSTGHKlpsrvzty}w{€z~ƒy}ƒw}‚v|ƒw}„szry€s{‚ryovmu}nu}lu~hr{hrzit|gq{gr{fqyfqzepxfoxfpxaksblugpy8*3&E5"&   $+!2%/#6)* $."1%=.:,-!1$* +!()/#3'%#&+ 1$ (."7)0$-"-"5(8*4',!* ."<-:+=.D3!A/8)1%1&'-"0%?/@/;,7*6(:+9+/#-!/#1$;,>/5(3&5(,!'0$5'4':+<-;,;,6(2%4'6(7)5(1%-"* 2&5(6)1%6)9*2&;,*$%,!(#>.=.;,,"0$9+@/;,6)7*9+0%1%3%9*:,8*7(0$!T@,133<>?EGHDFHXY[koqquztx}w{y~ƒy~„v|‚u{w}„t{‚s{‚qx€mt|ov~nv~lu}jr{ir{hqzkt}js}hrzgrzgpzfpyeoxenwbludnveox8)9*B2!2% $))(#   #&* 1$4'/$,!,!2%*%-"4'0#+!+ ) #''+!$!&* 0$6(4&/"1%?0A1A1N:&C2 /#2%&."+ /";,6(5'/#2&8)7)4'2%/#.#;,A1D3!6(/"(."6)2&:+5(7):+=-<-5(<-@0:,4'."-!, 5(;,6)1%3&1%2%4&5(+!(,!.";,A1B2 B1 <-5(3&<-@0A1?/:,0#2%'.#,!2&H6#2&,!?1!654;=>DFG=>A_bdimomrwpx|tz€x~„w}ƒv|ƒu{t{‚rz€qy€pwnv}mu}mu}kt{ku|irzirzhqzis|fqzfpxfpxdnveowepxbmufpxfox=-A0 A1 ;,%'%'%$    ##,!.#* * ,!4',!'/#+ ()#    %'/$* %&(.#<-@05'* ."6)G4"8+5(1%5'.#/$$+ /#4'1%0$1%:+9+3&6(8)5'6(>.C2 /$* &"."-!6(5':,0$,!5'1%7)7*8*3&-!),!2%4'-!&+!)."<-5(5(/#)**1%;-D3!<-1$1$4'5(:,?/9+.#'&((* 7)A1 >.=/ 4219;.E4"*+ /#7)=.=/5'0$0$4':+?/L9$=.*4(.#6).#3&ZD,A1?/ 64/8:;./1PSS[_`dikX^a $(fmtx~…t{‚v~„u}„rzpxnv}mu|nu}mu}mu|kszhqzjs{hrzhr{gqzhr{fpygr{doxdowfoxir{it{H6#E4!, "   #"  $,!* /$+ %"# ! &',!3&8*;,'!$%()'1%=.3&.#.".#:,:,5(/#4&3&/#9*6(8+;,@01%&,!)).#.#-",!-"."1%;-9+7*.#,!* &,"2&5(8*7)."2&9*7)1$3&4'5'4'5(2&(##*%+#5(<-4&-"1%)/#7)7)=.=.9+>.9+2%/$,!8)@08*6)(.#4'5'B2 A14(;6178:GJLZ^`cfiCFH \bhw~…s{‚v~„s{‚s{‚qy€mv}ow~nw~lt}ls|kt|js|js|is|hr{fpyhs{grzjt}epxcnvfqxkt{ku|VA+K8$* ( ! #"%&+ 1%4',!" $###!$,!<-5'0$1$,!-!2&4'-"4'?0=.9+9+/$4'<,4'*."/#+!."-"1&;->.4'2&-"$')* ."."."*3&9+?/>.;-/#6)-") 4'/$)5'1%4'4'0$/#7)1%-!."0$4&2%'#'"$!4'1%7)5)?0) ."0#8*<-=.;,@0>/6)4'* -!:+=/7)-!-!** 0#/$#;4//01678024Y\^]bd69<+.1djpsz€s{‚t|‚rzqy€pxmw~owmv}kt}kt}kt}ku~jt}jt}gqzepxfqygrzht|grzfqyhrziryjt{_H/T@)/$!#&,!#&(-", -!(0$/#(%##$'&*  #+ 3&2%5(7)1%4(;-.#'/#7)8*7)3&1%7*>.3%*0$3&2&0$5(3'3&=-:,<-5'+ * )%(,!1$-!4'9+6(8*8*4&3&1$)-"+!-"."."4'7)1$3&4'0$-"*+ /#, &1%+ +!+ (2%.#0$6(4'@/:,,!-!/$4'8*8*:+9+5(3&+ -!1%<./$6)3&1%*."$)81*#%&@BD68:LNQ\ac46869;flpou|v|ƒu{t|ƒqy€mv}jt|lt}kt}lu~nw€ku}ku~lvju}hr{gr{grzfpxepxgrzfqygpxiszkt{XB*M:%6(#"*+ .#'((0$0%1%&&+ 2&,!'$'$$-".#("-"/#1%5'8*2%,!/$+!$&2%;+8*6)5(2&8*6(5(2&."-"2&0$."4'=.>.B1 A02&/#)%* -!+ -"1$3&5'3&:,4'3&5(2&9+9+6)(+ 2&7*7)8*6)8*8*6(3&0$)%-"."2&,")1%+!/#1$."3&=.+3&,!.".".#3&6(:+3&3&2%.#4'/#/#7*4&5(0#%(>4*')*@BDFGI9:;^cdBFFJMQejnou|u|ƒt|‚t|ƒpxnw~hqzks|js}kt~kulv~ku~jt}hs{hr{gr{gqzfpyeoxfpxgpygqxjt{lu|V@)P<&3',!""), !#')3'/$% "%-"-",!&%$+ 0$."."0$1%.#/#1%5(5(-!+ )"&,!1%3&5(7*1%/#5(4(3&4'-!3&+!1%5'>.>/@0C2 7)-"("(/#0$1$+ + 5'8*<-4'5(4(9+<,>.3&(-"4'."0$5'8*B1A0B1 ?/=.1%+!-"/$3&1%,!.#2%,!0$*+ -!*+!)'%%)/#7)6)7);,6(2&3&/#* 2%;+9*!!<0$$&'>ACGKL?CEOTV\aeTX\[_e`birw}rzs|‚s{‚qyqy€lu~mvlumvkt~kuju}is|hr|is|fqzfpygqzhr{gpxhrzis{lu}nw~U@)R>(>/+ !!(,!!$*,!.#+ ! $.#1%.#'%%+ .#2%9+4'1$(.",!-"0$0$'"%'* *4'7)/#+ /#0$7):+4&4&0$8*."7)7)5(5(2%2&/$%'&)+ (, 4'9,6)9+:+8)3&6)7(5'0$1$7*6(7*6)7)<-:+?/C2 C2 <-:+<,:,4'5(0$1%5(,!+ + )'-"+ (&).#+!(0$7*4'8*4'<-8)4'5(.#7)=.$":.!!>AB6;<"$),.jptmsxU[`[`gu{s{‚t|‚qy€pwqxlvnxnw€mw€kukuis}hs|is}jtgq{gqzhs|it|hr{grzkt}mvmu}R>(O;&@0&# &+ '  !#   .#7)4'&$!'+ ."6(3&-"(')%."/#,!%#&(',!1%-"),!2%:+@0=-7)1$.#),!,!8*2%*,!/$,!4'-",!)%-"6(<-4'8*5(;+1%4(/#3&1%5'6)9+7)3&8*5(5(<,B2 >/9+;,<,9+7*3&1$4'?/7*4'1$/#)0$0$/#/$6(<-4'-"*1$4'7)7)@0?.7)0$+ 5(3&3&$=1#(*+,*( "MRV_eiMSXjpvt{qy€s{pxov}ox€mvmvkt}ku~lvjt}is|jt}is}is}is~hr|hr|fpzhqzhqzjs|mvow€WA*L8$D3!"&#'# !      "&+ * '%0$0%6(3&+ '+ #',!6(5'(%')+ + +!-"."4'8*>.7*:,2%1$5(1%)4',!&"%(+ /#4'2%'."9*>/?/1%3&8*5'6(,!0#-"8*;,:+0$0#8*<-:+>/B2 D3!D3 D3!5'7):+7)4'5(;,B1 8*9+5(5(* #* 2%5(A0=.2&()-"6(6(:+<-6)3'.#.#&* #4*245 %&&HKLDGJ47=IOTT[`rz€s{qy€s{r{‚py€mvqzƒoxkt}kt}jt}kt}hr{is}jt~is}jt~jsis}eoxgqzis{kt}nw€oxR>'Q<'D2 &) #&!      !)1$1$#!#-"4'8)/$,!+!,!))2&0$6(-!$%'&&* , + + 0#:+9*?/1%8)9+7*)2&7*+ + 1%.#.#3&8*3',!1%;,?/@0>.>.;-B2 :+>.<-:,F4!I7#G5"6);,8*5(:,:+:+?/D3!C2 A0?/E3"6).#,!+ :,;,4'>/;,* (#."1%8*9+8*0$,!*/#+!2%7)3&4(2&4'5()E6&')*,./$(*59;137/37nw{r{r{u}„t|‚rznxmvnw€ku~kt}kt}js}kt~it}jt~ir}gq|is~kukuhr{is|lukt|mv~rz‚O;&WA*H5"#&."&$,!!"  #  )4'2&.#$&&%(0$'+ +!8)/#)$1%4'-",!1$/#0$1%-!)(+ ,!/#5(0$*7*7*0$1%+ 0$.#.#9+8*7)9+3&2&/$0#<,;,7)6)3&B2K8$G5"J7$=.3'<,4'0$/#7*A1 <-:+;,@0H6#I7$@/@05(:+4'3',!-#2&2&2&4'5(8*6)''+!0%7);,5(2%-"+!* 0$2&:+:,3&9*3&-!'@1"!>ABSVX245!#jtxpz~s{qy€s{qy€qzoxmulu~lu~lu~kt~ku~kuis}hr|hr|is~kthq|gq{ir|oxmv~mw~oy€`I0V@*N:&%&+!0$2%8*."!  $   $'0$/#&&'&-".#* + ."5(9+5()1%9+*."4'3&2&($%&&',!+!3&4'3'3&)4'+ -!1%4(9+8*;,>.=->.9+3&5(5'/#3'4(C2!C2!F3!9+9+7).#2&4&1$-"3&>.B1 ?/9+D3!H6"?/C2!;,8*=-5(.#+ 1$4''"-"3&=.>/1%2$5(=-A1 7)0$,!*,!.#1%@0?08):+4'+ /#)$%'/C2 A0A1 B1 ?/@0;+,"'(,!/#6)8*8*3&/$=.I6#A18*0$2&.#)+ 2&9*A0>.>/:+-"( )*,1699>?>AD79>.@08+4(<,:+=.5(=-A1C2 D3 2%.##%&1%5'7*5((4'>.=-=.8*4',!%$2&0%.#5(E3!3'5(:, ##%=DEX_bBEHEGLQU\mu}rz€oxlv}myoy€kv}ju}mvlv€kujt~it~hr|gq{is}hs}hr|luju~nynwoy€qy€pxA0L9%=-)$,!4'+ # '& .#5(1$/"4'7)4'=-<-/#."-!9+8*:+$(,!%0$9*:,.#()%3&6(-!&%"*!$$,!1%3'0$#%/$9+2%4(;+7)1%4'3&7)6(3&-#-"3%9*4'1$:+>/@/B2 C2 :+:+3'@1=.7);,:+4'/#5(4'7(6)9+4(,!/#-"A1B16)0$&((+!2&;,;,.#-!4'2%0$6)5(2&,!+ ."/#*9*?/;,8*H6$ $$'.56*13DKN8.E4!D3!C2 ?0C2 <-D2!A0F5"M9%H6#@02%.#)'-"-#2%.#7)1%?/C3!=.4'(#&.#9+;-5'0$,!+!.#-"+ ."5(<.4&6)1%0$7)?/:+5'5(',-LTV$(-/3iot]agMT[govoy€nxnxlw~oznykv~ju}it|iu}it|hs}it}it|hs{ju}lwmx€nw€nx€mvq{‚py€<-O:&K8$$" *7)0$9+2&-"/#%(#!$-!3&3&5(1%:+3&$ !."8*4'4'-")+ /#* 2%4'3&4(3&-"-"%%'-","6)5(;,C2 =.6)<-6),!6(;,:,/$6(-"+ + ,!7)9*2%5(:,@0>.;,8):+=.K8$C2 :,5(1%6)=.>.B1 B1 C2 5).#,!* *."-".".#5(C2 F4!>.2&/#, 3&5(5(=.7)4'2&*)/#-"1%;,9+5(9,1%1%4&7)1$1%(%!#&&@HI*,/synt{MR[UZcls|mvlv~kv}mxmw€it|ku}is{it|ju}iu~iu~ht}it}ju~lwlx€lvoxr|„q{‚t}ƒ?/G5"U?)5(!",!(2&8*8*,!1%' !((%!%)1%5(*$#&-"9+?/0$)#$#.#3&1%3&."+ + ##+ 0$2%C2!;,=-A11%0$3&1%4'>.4'/#,!+ + ,!,!,!/#)+ 0$<,<,4&/#/#3&@0H6#:+6(/#2%5(8*9+A0K8$>->.5(2&7)0$1%2%1$5';-<.F4"K8%8+8+4(@0F5"E3!9*-"-"* -"3'+!*/#5'2&>/3&,!-"2%2&.#  )*+ 37;emrluzjpwEKU[cmow€mv~jt|ju|mwkv~kv~it|hs{it|lwkvju~jujv~kv~lwoy€q{‚r|ƒq{‚s|‚E4"L9$K8$9+0#* 3&3'-"-"."-")*" $)&&''-"2&9*8*)( +!9*8*>.3&-"$$%+!1$2%B1@01%0$,!%$-"+ /$0$.#."3&7)/#;,E4">/6)7)7)."'* * *!* -"4(3&;,>.;,."(3&E4!M:&;,9+2&8)3%/$5(>.<,1%5(6)1%2%/$8*:+4'7)4'2%G5$,!+!0#B2!4(9+6(=-:,,"+ -!-!.#+ 3&6(?/@0:,0#=.2&9+4') $$&(*,INTJQYjrxqxZ_iBHShoxmu~kv~jt|mx€kv~kv~kv~ju|ju}jv~jv~iu}it}ju}kv~lw~q{‚q{ƒpzq{‚r|ƒ<-J7$C2 /$+  #+!(%'(+ ()&* 2&8*9+1%,!(&0#4'7)0$3'%%.#1%>//#0$("),!5'4',!(*'%)', ."+ ."0%-".#6)=.C2 A06)3'5('#)*'(.#5(9*:+4'+ (/$,"4(3&1%3&9*2&,!7*9+:+<-<-8*:+6(5(=.D3!<-5'5'2%7)-"%(,"2%-"+ ;,=.:+4'7)1$+ + 2&0%<-@/;,7)5(>.B1 4'5($"##;=>%&(TWZZ_dDIQ[ainu}pvJP[KR\lt}mx€ju}kv~ju}iu}ju}iu}hu}gs}hs}it}ju}ku}lv~pz‚q{ƒs|…q{‚q{‚q{?/S>)M9%A1'  &((0%('4'@0>/8*1$)''&(* 0#4''))1%/#*'#)."1$3&3&."(* %%*'(/#1$''5(8*D2 A1=.3&,!*'$+ * /#-!.#3&:+8)6)7)6*A2:+8*F4!3&:+<.0$7)6(8*4'1%5(3&0$2&B2 :+7*/#8)1%8)>.:+>.B1 >.5(3&9*A0 8*2%9+3&/$+ 7)7*:+9+5(8*4'8*A06)6)-./9=>8:=58<\`dbgmOU]HMVhnwowjq{BIUYaklwlwlwgs{ju}ju}hu}gt|hs}is~kt~jt}lu~ku~qz‚s}…s}„q{‚r|ƒr|G5"`H/Q=(C2! !""%,!#$-",!#',!2&9+5(,!""$$)-!7)7*&0$/#4''&&0$#$* '+ 6(<-6(/$($&$,!*(%%&/#."."9+1%3&1%,!,!* .#(* + + -"5(/#4&4'3&7)<->.6)9+&(2&1%0$1$4'5(2%-!,!,!.#."8*7)B1 @08*;,@0 :+8*C2!?/4',!.#0$0$;,>.8**'-"+ 9+A1;-8*=.:+<,8*.#'*,-8=>?BE26:HLRbjoaioHMVU\ekt~nw€ais>DO[enmw€ju}iu|jv}jv~iu}iu}jt~is~kt~lv€ku~mvoyr|„q{‚pzr}‚s}P<&gM2U@*O;&$*)* ,!&(%$''((%.#6(7*3&)(* ('*5(/$*(&,!'+ * ,!)'+ $(1%9*:,4&)(+!)+ !$#)."6(8*=.<-<-@08*4'1&/#&$()+ 4'1$)/#5'/"2&;,6):+1$+ 5(0$0$9+9+9*7)0$-"** ."7);+C2!?/8*8)2%4(8*=.B1 :+0$-"+!2%4&8*7*4',!,!3&8*;,<-."4'4'3&9+7)+!:=?ADG?CF59>[cfdlp]dj?FN]enlvnw€W_i(&-")+!:+4'1$5()())$#'+ 1%6(2%,!* 0$+!+ 3&0$-"+ * )+ ."0$1%'4'3&((* +* &(5(0$."5(* '!#(,!:+:+@0;-9+C2!>.:,4'4'+ *))&&'*/#2%;,>.6(3&),!:+6);,B2 <-8*7*3&0$+ * 8*6(;,=.<-?0;,4'0$2%8)C2!7)0$-"* -"2%5'6(2&1$-"2&7*<-@13'/#2%6)7)7)4'! .13ADFHKN:=AAEIdlpgpvRZaFNWfoxkt~nv€IR_EQ\jvfs{iu}hu}iu}jv~ju~kumwnwpy‚qzƒr{„s|‚q{‚s}„s}ƒv~…?/E4!U?)S>(."1%&+!8*:+8+6)1%&(! #&&* 3&."* (((/$2&,!,!.#* (&+ /$8*0$;,@/3%)((%"+ 5(3&0$2&-"&$*(.#+ 2%4'/$-!7)6(5(5(6)*!(&"%#',!0$>.B2 ;,;,/#3'5(2%<-=.=-=.<-9+3&1%)0$4'3'8*7*B2 =-3&0$*."4'0$0$.#((* ,!.#0$-!/$5(5(7)<-4'0$.#,!,!.") 00.!BEGHMPJOR@DHU\bgpwgow>EOQYbhrzkvfpz8CONZdjviu}kwit|ht|iu|ju}nx€oypyƒqzƒt}†rzƒq{‚r|ƒt|„w…>.S>)eL2U@),!$8*3&7)9+/#2&,!,!'%%''* -"' "&* -"0$0$2%.#)($.#1%0$:+B1 :+6(."-"/#.",!2%/#,!,!4'2%+ ''", +!3&4',".#3&1%."0$2&-"+ /#%$#+ ."/#/$/$:+G5"6(B1 :+C2 =-3&1%4&<-?/@0A1;,;,/#,!2%5(5(9*B2 G4":,1%0#1%,!* 3&7)/#0$,!))-"* 2&/$1%* 6(/#'+!(0%9+2&30.&(*-15INRPVZAHL;BIbkqiszckt;CM`iqlv~lw€alu4?L[dqht}ju}ht{iv}iu}hs{lv~nw€oxpy‚r{„s}…qz‚t~…v†w~…;,R>(eL1YB+.#* #6)1%4'=.8*0$2&-"+ .#($!"&#!%,!* %-"1%2%6(9+3'/#2%1$3&;,F4!9+1%-"-"4'3'0$1%2&(&* /#3&.",!(')).#-"6(1%,!0$+ -"0$2%4'0$0$/#/$0$1%/#0%;,=.* 6(3&=-<-7)6(7)9+>/@0G4"B2 >.3&3&<,7)/#4&9*A1=.0$8*=-4'/#,!0%6(8*0$+ +!-"0$2%0%7)-!5(/#0$5(2%=.>/@1 :5//23 $'DJMPW[TZ`?FLLSYirynx~?GN.3;fpxjv~gs{Ual6?Kdoyhu}iu}jv~ju}kv}nx€ox‚pypy‚qzƒt~…t~…r|ƒv‡v†>/K8$_G-[D,1%* !-"1%>.7)0$2%1%.#0$+ 1%1%*&(* 1$6()#+!1$3&B1 @16)1%."/#7)5(9+:,0$(* 5(5'/#+ )&" )3'-"0$''()4'4'5(-"0$9+0$+/#7)=.;-9+=.<-6(1%3&;,:+1%+!/#%."4(5(0$/$2&7);+B1 @04'0$6)<,5'3&4'4'@0=.1%9+A03&/#* -"9*=-5(1%/#3&1$5(5(3&<,>.4'4'3'3&6(7)?0 50*135169',0PX\T[`PV[AGL[dkkv|(0528=DMUhu}jv~it}MWc.6)+ )%/#2&*)+ 6)7)4'5(0$6(/$1%."2%6)=.2%+ -!2%3&-!/$,!%!(2%* 1%)'-"0$,!2%1%/#1%>/:+().#4';,8):,6(6((.#2&8)2&/$4(."(6)7*3&-"5(5(0$:+:+8*8)6);,9*/#-!+ .#<-1%/#7)=-7)1%/#5'8*8+.#-"+ 0$-!5(5'2%9+>.8*2%-"* -!1%3'5/(9:87<>-375;?=BGTZ^IOUNW^/7:'.16>B/6=T^giv~fs{bnv>GQHS\jwjwlwlwkv~nx€nxhrzhs{lxp}ƒu†v€‡wˆ<-G6"[D,L8$,  #*.#-"(#$&&* 2&7);,2&)$%."* + ,!+ 3&2&*+!2%=-5(6(1$9*@0>/8*0$+!* -"), 1$0$.#).#3'1%,!)0$+!%-"6(1%7)=.4',!+ ) /#0#,!/$6(:,%)2%* .#)2&.#."4'/$-"1%:+9+6(9*0#3&5(:,5(0$.".".#'6()'+ /$/#* ."1%,!+!* ''*'*** 0%;-:,9*3&6).#,!+!1) 489:?C9?B ,/3Zafdlq9@G5:>!',aim2:B_iqhv~hu}\gp;DNR^gkwnzƒnz‚nyr|…aks;BK3/9*5(1%,!."1%0$6,"*,09=B8=A!JPVent\dl=CFfquXbg5?Gbnwgu}hu}Uaj=GQ\hslx‚lw€lw€oy‚gqxPYb06=)-6_hpt€†wƒŠ/$>/YB,N:%*   /"5(7)5'6(3&/#"#!)/#-!+ $ #%*%+ ((+ ('-!1%:,3&5'1%4'3&/$#$%"% %+ /#/#0$-"-"4&4'2%(/#2%6('%( $(/#.":,8*1%7)6)<-@0@1=.8+9*0#/$3';,=.6(3%4'-"+!)* /#."/#+ *%&"*$%(*('()&* -",!.#/#3'C2 5(/#*!$)'=1%7:>048 29.;-6(6(6(B2 C2 ;-5)1$2%'()-"!  "$ $$&* ,!* %%%(+!,!0$-!1%.#):,-#)*&)$+ 1(#%($'*0465;AO\b+4:'-1BKPhu|iw}fsz:DMFQZhv}jxfqzIR\EMXeoxr}†q{ƒq{ƒr}ƒs~ƒu€„fnu8;E15?iqz(-"S=(I7#:, ";,B2!P<(6)0#*&'!),"+!-"(',!(( )%*)! !0$0$4'0$/#-""(-"."/#."6(-!.#5'9*5((!&)-"3&4'5'/#-!0#+ "* #!%)3&4'/#-!-"5(6(7)8+<-7*9*9+;-2&:+<-:+6(.#+ &! $#&*(0#,!/$-")(&"!$%%0$,!-"+ )-")*-"")$/#A4$-01 #& ! !$HPU$$(,,36 #$38(=.  $<,=.1%5(+ *) &%(0$0$."/#/$+ ."""'1%!!&-!-"1&3&0#.#1$/#()(-"2%0$,"8*0%.#+! $)-!&&/$7)."$%&,!-"%!#'+!0#:+3',!2&3&3&0#-#-"5(:,<.5(."4'8*;,<-;,)*+!)!( )+ #$* -",!0#4'."-"*'*/#8*1$* * ,!-"*:+!)+ (,!C4%+/0"%'"#Xae"&)U]_^fi4/"  ';-C2 8*2&5'0$$*$"* $$)*&&+ 1%(!%.#0$-".#8)5'.#" -"2&;-F4!4'-!,!/$#"((" ((5(8*&,"2&7)+ #,!.#%**/#-"0$3'9+3&0$-"5(=.9*:+6)6(9+:,7)7)?/5(0$+ "$(#%(*,"6).#0%,!1$5'1$-"&$* ."&'$, * '$+ -!*'/#YD0-..6;=Ycf#$:@@hqskvzOY^6AHft{gu}gs{U_h=EO[fnlxnwbjsJR[Yaipzs}„t~…u‡y‚‰x†t{~_diN;(9,XB*[D,N:&$!1%F5"<,, $()* ""#  $%%')'* ,!;,& #-"3'4'2&7)5(& +!4'8)D3!2&%0$."%%#$ $&%,"(#$-"3&2&+!/#:+>.0#4'2%)7);,A1:,3&7)7)8)/#, -"0$5(8*:+7)A1=.*/$),!,!3'4'3&-"'.#/#3&>/7*5(8)9*5(,!%(#%)),!$$+ &-".#6)L<*./-AGKHPS"%'045eosjw|iuyGQX;FNiv}jv~eoxMU^=ENbkupynxckrLRZ_gnq{r}ƒt~†xŠx‰x€†ryA1!7)\E-aH/M:%-" 1%9*1%(") %##''$!'#   &$&(0$-#3'2&5(+!!''*3%4&1%** * #$#%)&&*6(3&'$-"?.8*.#/#;,;,6(,! '/#/#8*;,:,0$2%0%)&),!,!2%4(<-;+<-:,1%:+C2 J7#K8$H6"@06(4'4'7)9*;-:,3&;,>.<-6).#,!,!,!+ &."'*+ (2%3&8*:-.-* 14529=/69/35"KT\it{jv|gry@JSEOX^ir9BIhqzHNXIQ[lur|ƒr|‚bipINU^flq{‚w‰xŠwˆv€‡y‚‰0$0$T?(oS6YB+-" )3'3&+!1%%"$  "&#"   #&&"#,!*3&1%0$+ &"* -".#4'0$-"(* +" ',",!&&$6(2&$%-"9+9*1%/$8+9+0$;,9+/#&+ 4'3&7)6(4'0%&!$*4';-=-<-;,8+:,1%0$5'-#4';-<-;+8*6(1%/#-!0$7)<->/?0@03&2&0%6)-!)+ , &/#/#=-0$+!' (%! ?DG5;?-3:.4:)/3T[c7?I[fojv}hs{cnv0:D$,1;CJr|„enuFMWMV`nxr}„py€_ekMRZdmtt€†z„‹y‚‰x‚Št~…7)5(D3!rV9WA*& 4'H6"J7$8*3&&"      ## + #%$+ * ."3&2&+ 1$4'+ )*)*6(3&6)9*4''!', /$0$/$0$(."*!* /#'&*,!-!*** )'1%6(5(;,B27)6(1%5'3&0$1%-"2&7)?/F4!9+;,3&."(2%6(,!&*-"+!**3'4'3&:+=.9+9+:+9+3&&,!7):+0$1%3&2&+ ,"+$"$% FJMJPS15;#)NV\it{DKS!(-bnvht{it|)399CIEPWq{dmtDMWXbkq|„q|ƒs|ƒbipMQYgqxvˆz„‹yƒŠlv} 0$C2 pT7XA++!4'G5"[D,G5"=-%"   ##$'#"%/$."$ "$ %""&/"0$*))'')'&(1%?/3&0#%(."6(8*3&3&2&,!'%#!(/#3&+ + &&+ 4':+4(5(6)6)9+6)7*:,;,5(+!.#-#1$-",!1$4'3'/$+!1%9*7)0$8+) &$$)-"."0%4'3&7)<-8*2&/#1$6)))."$,!)&#$'<3)+.0DIMKRWDIO59>R\ciw~'/48@G2=Det~fu} AFKr{py€dmuEMX]fps}…u†u}ƒafmMQYlv|xƒˆxƒ‡u€†2&C2!K8$tV9XB+:+!/#>/L8$@0E3!8)%%"  "+ )+!0$*()*,!&  $()%" $%%"!+ "$'#)+ &%/#8*>/+!(%!#&))2%5'-!#%*5(/#-") + )(** 3&2%6(-"(+ /#.#')0#*.#+ -!;-:,3&* )('%)+ *-"1%/$5(9+2&0$+!.#1%1%0$*&'* &&)(0*#:?BBHMMSXU]bB$,2?LUix  :>Eksznyr{]ckFMXdlvr}†uˆt}ƒ`fmRV]nw{wƒ†y„ˆ-"=-I7#tW9cJ0=-%+ /$A08+>.5'))'*#')))(* * **+ %"(*%%$"''#&%&" $&, ))!!$!#$$2%7)-"'% !'&$/$5(8*3'/#(+ /$,!$($),!* 5(:+:+2%/$/#+!/$*+ + -")),!,!5(<-3%!%##'&-",!',!4'6(5'1%-"+ (/#."1%&('%* &(#'*-6:>AGKLRWS[a]fk29@58<gov4?GKU[ &*,PY^AIQmxs~„s|ƒZbjCISclvt}‡x‹v~„aelOV[kuyy„‡"=.E4!sW9bI0/##  :+2&3&/#,!('+ + ),!.#0$'##"%#")'0$/#* ##"#  !"(,!.#."0$%  ""!+!'$")/#-"* *&0$-"$)2&>/:,0$&#0$0%#)."())3&8*;-7*0$."/#0$$!('+!)-!1%7*:+, $$$ $'*&&(+ *+!+!2&4'* '("!(1&,!90&-036:>@EIJQVS\`ZdjXah*/3frxbmt"#&%(*px~EMTKS[oy€r}ƒs}ƒW_hHNWjq{v‡z‚‰v|]bgRW]nvz 4'=.tW9[D-9*" #4'7)7(/#),!))+ + 3&5(0$-"(##% #%-!,"($)'#%+ %$&/#4'1%1%6(-!&##&$&0#.#0$&)+ ,!.#0$$"*!",!1%5(2%)*3&* * 3'.",!/#-"2&2&6)8*8*:+<,3&* $* + %')* .#6(4'/#%,!0$(&! "$'/#1$3&3&?/A15(* (# # #H:+,/25:=@EJJRVS\a[elNW]GMOkx}4=C!&<@Ex‚‰gowDJTW^gp{€r|ƒv€†Y`hKR[owxˆw†v}‚_dhQW[ 5'=.vY:XB+?/! $8*H6#B12&/#2$,!$&(&,!1%-"$"%!%'/#2&((*)")*+ /#1%."'+!+!0#/#2%($''2%4&6(2%+ -",!.#3&.#+!,!!&.#0$1$+ 3&,!,!:+;,.#/#0$1$:,4'8*6(4'8*9*."%(-") $*$+!0$5(/#'&/#1%-!* #$*).#4'7)9*;,D3!8*4'-!    )L<++/248<>CGHOSRZ_T^c)042:> '-/ivz .27 akts}„q{‚dluHNZ\dms|ƒt~…s|ƒT[cQV^mu|y†y†v~afj 6(;,iO3dJ0F4" ")?/T?)6)&'()#* *##,!*  ! ()* .#,!#%+  ")*))& %),!+!4',!#%."*.", * )+ -"/#8)8*-!'#&, &*/#6)(,!8*A08*0$/#,!5(-"1$5'1%1$-"-"* $&'1%7*0$)#+ * /#/$)$(',!1%/$/#4':+5'5(6(%($"")B4&+.248<=CGGNRU^b+144;< ',/MX[JR[CMWkv}r}„r|„cjsINX_enu~„t~…x†[bhRX`qy~{„‰yƒ‡v~‚ A1!8*bJ0dK0L9%'0%>/& !#+!1%.#+ + )$""!!)* ,!0$(&!(&%$%"!$#(+!-"1%/",!" %."* ,!,!* $"$&*1%-!%$&$%'2%,! )4(:,9+3'2&$#((-",!+ ',!)#%-!"$ ''7)<.-"-",!+ + -")'%(,!-"."."+!-"4'7)6(5(*+ ."'$#,!H8(.0137; r|„JT\KV^ny€s}„u~…^emFKTgowv€‡z‚ˆwƒ]cjW^eqx~zƒˆ|†‰@0 9+_H/^F.N;& $,!3'$'-"4';,8*2&+ (*#'&"%'(2&8*,!."#$+!/$* '(&(+ ',!0$0$2&1$-"($')* .#,!$ " %+ )'&"!#."%$#.#4'9+9+7)6)3'0$2&).#3',!&!%(,!(.#" "8*8*4'."2%."0$,!$"!%+ ,!,!,!&+ 4'3'2%3&(%% &G8'+,-269;AEFMQPX\!$&&)+bkqlw~8>C$  r}ƒhsyGQYPZboy€u†x‡Z`gLQZipyx…zƒ‡x€…_flU\bqy~€ŠŽ H6$F5"]E-sU8\E-# #* '%  %&."4'9+7).",!*'$#$/#5'6)5(0$2&1%2&:,1$'%(,"$!$&.#/#."(  #+!-"/#.!&'$$+ 1%,!) !##%)0$8)>/>/D3!G5"F4!:+('."-"''* )/$0$4'-#$0$9+9*5(,!/$1%1%('$!$-".")&#* ** ,!4'*/# " !9-00/169:?CGMQ?FI(,/+/0cmrnwGNVDHQ6:?u€†oyisyJT\W`ht~…w€‡u~ƒZ`gOS\ltz{„‰y‚†wƒ_glZ`dsz H6$E4"WA*oS6]E-(0$-"5(, '#  !!(* 1%/#&'()("%-"5'3'6(8)=.9+-"*% '" + 3'/$,!& "!$%(."-!'#)0$'+ '$ !%"#'/#3&6):+5'<-@03',!(*2%3&6)2%6):+;,-"3&$&5(&(',!5(-"(% &*" !+ + )2&/#(0#"!";-52//479?BGMQ26:26:27:enumw€is|6;@9=@7=Cmv}s}ƒr|ƒgpxIQ[[dlu†uƒv~ƒ\ahPU\mv|z…‰{ˆŒvƒ‡emqX]a8*=.YC+bJ/aH/+ 3&;,3&1$*   %(.#/#((."'+ * $ "#/#4'8*:+9+2&( ! %# !&/#0#.#*#&#* '&&+ 3&4'3&)0$9+2&/$5'0%* %##",!&+ %.#0$&((%** 0$/#0$6)-"2&0$-"(3&# &/#1%/#.",!'#)*&! ,"6).#,!3&/$+!*% !4(94-/479>AEKOGMR/36,14V_diqykv}oy€?GNirxQY`HMt~…t~…s|ƒcjrMT]gpvu„yƒˆyƒ‡bhn-16 :FKy‡Š'8*J7#eK1iO3/#:,."3'%'%" "   + 0$/$&&+ * -"/$" #(+ /$4&0%/$5(1%0$+!0$2&,!*,!%'$#%$#!" %  !-").#/#$'* %),!3&  ""$##'%*#"'((0$2%(), ,!-"-#.",!0$-"!%&0$:+>.9** )&%$$)+!())+ #)'+ /#."5),(#.257B`mr I7$?0>/Q<'WA** )$+ * % $#     -"0#,!#!-"."+ "  #**&+ 2&4'6)7)1$,"1%0$.")'+!7)0$/#0$(($!"#  ()(-"+ % )1%((*'+!#, 9*-"'$#"#'"+ 0$+ + )."3'),!$)2%)#!* 3&3&4'.#* , 4'."*,!%'# ( "/#0#2&2&0*#-155:>@FJJQVT\b\elcmuhrylv~lwqzr{ry€s{‚mvzHPUPY^w‡v†x†chpHLUov{{†‹Š‘QY^@EJKQWSZa[cjbkrfqxjv|mv~pzr{s{‚s{‚u~ƒltxKRWXahy‚‰w€†zƒˆ_elHMTnw~~Šmw{'-/&:-A0T?(bI/O;& % ) "+ *+ & '/$.""$() * '' "!##"$$(-"4'6)* ! %&&(!"  # !  &-!)-"+ !!  *+  &-"2%6(;-3'3&-!("&(%$&$* .#+ +!0$/#:,9+)#"*1%6)0$* ,!,!-!2&6(?/9*-"*#%   ""%2%F9++/249=?DIJPVT[b^elcmtgqxku~my€ozpzq{‚u~t}‚w†fosCJO`iny‚†{„ˆ{„ˆ\ahCHPt}‚|‡Š5;<)I8$@0P<'jO4P='# &(,!'((%'& $)!  %  ,!& !' $&'#.#6(6(."-"%#(#  %! %$$   "! #! !()+ + (0$(0$2%-".#."2&4&0$7);,8)5(6(3&4&(# ."('!().#+ %&'(/#9+>/<-,!!%/#2&:,?/<-?/,!$&!  ##2&M>/+/248<>DHHOSQW^Zbiajqgqylv~lv~ny€r|‚s|ƒr{‚w†v~…y†fnsIQVdmq{„ˆyƒ‡z‚‡`emQW_t}‚qy~">/5(WA*eK1M9&   "+ /$&),!0$-")   #+!!,!*"(1%&)%',!/#&'."5(-!('"!   # &$,"  !)2&-"%#  + (/#.#.#$$(*( ((&-"0$1%5'6(1%7):+4'"!%(!&'#&$$3&7):+<-:+8*."/#4&,!*!)(0$5()(!  #7-"*.148(dK1V@*%   ##((&",!-"* &%'   .#7)5(-"(."+ -!5'4'2%%  &##""$* ."'" %(  "%)/#7)2&('!#"+!2&0$$%!& #!!(+ + -","0#*')&!! "",!$'!$$).#'!(.#'((&""# )3'1$1$.#95//479?CEKPOW\Xag^gofpxku}mxr|„r}…t†vˆw‰u†x‚‰w‰z„‹{…Šz„ˆ|„ˆafkLRXnv{ƒ‘sy~AGLkquY]` 3'+ U@*nQ5T>(."  "$&%"! #'&%0$%   -!+/#*&%%',!,!*'&#&%#"&#'+ /#2%3&&$"(%%+ & "$&+ 0$.#2&*$# $(('$&$$, )&'''.#0$0#8)3&2%* /#.#/#+! '$'+ '''0$0$.#%!,!+ %* ((/#+ .#$!!)-"5(:+0%+)&/479>BCINMUZX`g_hoiryjs|nx€t}…t~‡u†t~†xƒŠx‚‰yƒŠw‚‰xƒ‰|†Œ{…‹{„ˆ}…Š_ejNSZszY_ecjoƒ‘nux !%S?)jO4\D,2&# &&'$&# !#$'&* %& (3&-"-"&&*/##)* (&"$"$# !((."1$%+ %/#+ &.#%($#%'*1%5(7*4'0$(!%,!#(**/#0$(&),"))."/#7)0$9+3'/#3&+!-""'$'!!"#!&+ * ,")"$##()3&."+ (($&&+ 8*G5"J8&(&#/468>ACINMUZV^d^hogpxjs}nxr{„t}†u†AHMRY`‰z„‹yƒŠz„Š{…‹{†Œ|‡‹ˆŒ~†ŠhntKPU58=€ˆˆŒŠ &)D3!aI0dK1+!*0%3',!) "$$  &'))''  '-"/#)###%(+ ,!/$1$%$ #"#""%#! ()+ ,!($  $(2&4'8+1%-! ')$&,!*/#.#-!((-"-!4'4'5(9*1$*&),!-"'-"$!     "-"&&+ '! (1%8).".#-")&"$'+!;,:,/*%/36:?AAHLLSYW_e^gneouks|oxr{„r|…lu|),/BGIZagŠ‘z…‹{…Œ{…‹|…Œ~‰€‰Ž~‡‹„“GLP(*.lsx‰Œ‹Ž * (:,_G.[D+) ,!,!,"%'!!  &#&" !2&.#*( ('+ + ,!'"#''-"+ &%$  !#%%* 3&1$((%$'+!1%5':,4((3&+ *#'"(* &',"* " ''-"+!$ !%)/#*4'0$0$&&   !($"%'& $&1$* %$$" "%."9+?6+.25:>AAGLJRWV]d_goenujt{py‚s|…t~…IOU[aefmo@EJKQWT[a^fmenvirznx€u~…Ybh8=@18.+.138;>CGHOTTZ`]ekemtks|oy‚wˆ/59vƒgou$(/7:?v}\bf<@Fktz€Š‘ˆŠ’y‚ˆ@FM~…Œ‚‰…Œ‚ˆ‹z}0#>/&=.6(3'  !/#3&5(6(0$2%,!%        % %#    *0$;-A2"D4#F6$E5$H7%:,)/#;,:+3&."('+ -"0$7))!#&%)2&/$&-"5'9*5(&!!%+!( !&$!!$* #  &* )#($#0$'/#4(8*.#&+!)$# "'#  )#  (3'0$J8%C2!+!=2%.0138<@EHJPUT[b^flclsmu}q{„mx€ x‡{…ŒU[_v~„‘CGK*/4r|‚‚Œ“…•TXaejp€‰Ž„‘ˆ”ˆŒƒ‰6* E5#$8*=-5(   * #(-") /#,!(        &A2":,<.H6$M;'A1!:,3&>/:,7*:,<-?/:,7)6(4'8+)'/#5'5(2&4''&%(/#+ &  %')()+!4'5(5()"'#"$* "%( !),"/#,!"#(#$!  $& &'1%+ ')-",!)(('* )&%"    $)."E4"/#")"02138;DKGKQ$(.v€…KRV:?B;CFox}DIN36:BHMpy€ƒ”flt~…‰ƒ‹‰‘–†Ž’…‹†Œ‘=/L:'%=.=.5(  #+!"* &1%5()* %      N<(7*%%)')$  $3'<.D4#UA,ZE/WB-I7%,!,!&'-!7)5(3&1%/#'-!($$(()$! #%,!/#1%2&-"&(!* 3'0$"%,"-"%$'+!."(" $) .#  ""("(#',!)'$&*,!(+ ,!'    $)8*%&5*421269;@DGMRRX^\djemsku|yƒŒ#(-ˆRX]!&057„‘V]a!%BDG}„ˆU[_:@Erz„Œ’„“…”†Ž“†Œ‘‹’–‡Ž”F7&B1!)@0:+9,  #+!'&)+ !* *%   ( 2'H7%F6$=.N;'M:(C3"O<(bL41%I8&kS82%`I1bK3P=)4(%%%+ /#0#0#)"3&3'-!((, /$-"-"'&&&)/#/#2%1%##)&1%2&0%')''+!'!$" '% &,!    !"$&"###)-#0$(,!-"*&" "7)-"((5*31.269:@CEKOQX\YagbkpkuzV]d27:r|‚{…‹<@D+.0|†Šyƒ†7:=137ŠCHK/5:t~‚ƒŒ†Ž•ˆ—‰‘–Š•ˆŽ’^I4 A1!7)=.U?)A1 !    %%#$##$    # ."7*5)4'@0 H7&x\@ >/ kR8+ N;'qW;WC-,!'$%$&-"9+/#'-"6),!.#"+ -!4'5(&!$*."-"9+1%%!%#&,"(+ ()! "     %!   '&)%#%%&!%%%* -"'0%8*5((* *'('$."'3&F5#!&,#40,058;@DFLQQX][bgcjpr{‚05;EKOBJPp{~147JOS@DIckoBFJ6:?HNS >DJt|€ˆ‘–‹“™‰˜Œ’˜Š‘–cM7 4'"'A1 6(     ,!    $0$$#   8*P=)N;& H6$O<' A3"P=*%.#^H0I7%?0_H1E4#'-"# %* 1%+!!!(&0$+ #'* .#& !-!0#2%1%0$,!)  ,!-",""      !%)&%(0$2%,!/"!!!$#'!()0%+!2&A1 ?/0$(/#1$* -!))( $!'0$-!(/$83,057:?CEKOOV\\chelrfmt7<@€‹CJO@DH5:;‚ŒŽAEIFKN‰’–RX[;>@V\`?BGpw|ˆ–…Œ“Œ”™Š’–qV;   3%C3!   &+!1%     !$$&   4(3(?/ H5#6)-"R?+,"VB.1%I7%UA,5(@0 K8&-!*#!  %"#!$'* )* '+ -"( (+!+ ),!* %1%+!* +!$        %1%*')*2&3&.!&%#*  "!),!+ -!9+;,.#'."-"($&'0#%"&.#=-%* 6/)/36:?BDJNOV[\bh\djY`f9>Bt„€ŠŽ!#EILr|0467;>€‰…Ž‘-/1 bgj‹“—47<67Bw…EKP),.aeh…‰>CF PTXV\``ei‡’Y]`/02KPTšŸ_fj #%nty‹’–wf\6($<.,!"               )%#N;'%6)G6# ."I7%:,<.$/#'0$#%  ' !)+ + %#$() %,!%#    '2&2%* !'&$)&$      + 1$&0$%'&/$&""'))'!$+!* + 0$."0$-",!&))#)5.%.257;?CIM=CGRY]OUZJQVs~RZ^:=AGKOƒŠqx} %&(z‚‡ktw!#%:=@{„†ˆ’’!";@Fxƒ‰AGK269–šœf#   , 4(0$  !' !           '    @0 %)."/# * "0$/$ '$"   $)0$** -"4('" !&+ * &! !$#      (1&* #$" $)*) %     &$$ ('+!)"."."."."+ ),!%)")#,!+ $."/#/#0$3+",035:=GLP*-0>DI`gnelrX^cIOSDJNPTYFJOoux579TX\^diQX\OSVNRUGMQ^ghDKNfmtBHM†Œ’·—u) $ 4'=.2&   ("            %%1%%%0$<- .# 5(<-% ."###  "''&$+ &$)$"!'%        "#* + +!."-")&   *1%##&)-"%&*,!'#$"(1%$  "%#'$+!+ ,!2%0$/#+ (#.026:>DKN-13HNRcioou|RW\mqu5:>~ƒ‡EGL$%'nrwz€†PTY/15jqtŠ“•BFIlvzŠ”™puz##& 025‡’Áª’-%6(9+:,5(  ) $        #+ ,!, 2'#)4' '?0  0$:++   $") *+,!-")0#''."-!-"$""            "    "'0$0$-"+!     $-"#"&&+!%''+ *(#&/#* +!#$#$$$!&,!* 0$0%1%* )".125:=DJM#')@EIcjoT[bow}BF(+.v|ˆ“KOS aehjoucgmŽ–šŽ•š‹‘–ò¤YI9  5(E3!  !&%* %  &#       -!."I8%  2% 7*:,XC.M;(2&(-"&$-"* 3&(!$$' ()'(&%#!, #   " !%'* "%+!1%6)-" %,!1&3'""  '(0$.#'$).#,")&*&'1%(-"8)8)'&#'" ."#$(3(42/269EJM!%';>@nsxs{€OW[kqv~…‰~†Š‰ƒŠ{†HKOY]b•™gmq&&)+*.…Œ’Œ•š!’˜Œ’—“˜“˜Æ¹°dQ?  ! ?0F4")        $        ,!A2!F6$R?*  )2&  8*8*!+ -!&$&%'0$* !  "((%)+ '$!"# %" * 1%% !(*+ * ($!(-"/$* %$  $()-"##(1%3&+!)'!&&'+ 2%3&))+ $%  #."%)0$+!**'269BEI!#%=@Ddimlsws{~CGJ%),z‚†…‰€†‹€‰ƒŒ}ƒ‡CDIcejBFKz~ƒ\]cZ\c[_bTV[Ž”™•š•šŽ”™Æ¹°o]J  ! =->.         !#         !C3" *  0%! :,@1 7*-#* )-",!%&*  '#%)#$&+ ,!)%#&&"!!  !  $,!4'-"%!"),!%& (.#,".## ! "(0$$#)1%+ &% %()2%."* *-!)+!#  $$$,"*!*(%169=BDJNQW\``ejmrxt{€|‚†FMPhmq‚ŠŠ‰Ž‡”…‰?AE458|ƒˆŽ•œ\_f‚†Š”™”™•š“˜ÊÀ»zhW   3&4'  $      ()    ' + T@+ $  $4'!XD.R?+[E/9,&+ * '(+ "!*!$&'"(,!+!."* $+ -"1%4'%     !))( !#)+ *# (+!7**! "'+ ,!  * + ($"&&''/#+ + &()',!(')($#)*'#036;?AHLOUZ^^dintz>CH&&(‡‘”$'(FJNw‚ЂБ„‹‘†Ž’ˆŽJKM^`dˆŽ”v{‚@BE•™”™“–›”™‘–›È¿¸ƒkU  /$2& "  !* (  '! 7*  \F/8,G6%<."!3&S@+;-XC.dL5/$]G16) &#* -",!) %%)+ + (!$&)* 1$,!)''+ 6(*       "(2&' "%)*&!   !)4'1$(   (#  $&.#+ $).".")."1$1$)* ** 0$-!+!."*)* + *&!/35;@BGLOTZ]_fijqv_ci@BG^de Ž”™*-1u}ƒˆ‘˜€ˆƒŠ‡ƒˆˆADE`cf;. '"% #$$$#)& !  1%;, |_B,"?/ <-&3&C3"7*T@,TA,I9&! '+ .#/$'$%&,!1%*%!&)0#2%,!/#-".#"&!    !   * -")$ %#$%"  %-"*'  #,!7)3&)+ 5(3&2&-"1%2%4'1%2%1&6).")0$+ &)(&#/34:?AELNRY\]ehfnrw~ƒdhmMPSuz~chlpw}‚‹’y‡„†‡ŒŽ‰ŽPQU215“˜Ž’—•™“˜”™‘–šËÁ¸ž„l 9,-"A1% ($&  ##&+ ."-" 9+:,\G0YE/  0$4'&7)?0  >/ E4$,!9+&&$  &.#."* )* ,!-!4'-"'%'* 3&2&.#1$8*8** "     ! &%!!"# (&&"#(#%#-"-"+1%.#-"$# #0%2&+ '1%2&,!1$-"-".#7)6(1%3&2%0$, + * ($$-&/359=@DIMRY\\ceenrrz|‚†ouyGIL:<=LPPQTU247u}‚TY^\_a†ŠŒŠ““˜ƒ‰‹””˜•™‘•š“–›“—›ÉÁ½¹§–!.#&4'#   %""#  '*() !,! N;'#4(9,) .#8* 9+M;' O<*L:( !0$(-#  ''(* 1%4'9+1%1%('!%."5'3'2&:,<-6)&$       !#*% $)% $0$0$7*-!7)0$')-"/#,!      )3&5(4'3'-"8*6)A1<-7)<-4&1%/$3&-"+!# %!5668=>DHLRX[\cfhptt{w~ƒ~‡Šdin:=>z€€QWWBEG=@CPSVLMQw|‰Ž‘“˜“˜ŠŽ““˜‘–š”˜œ‘•™”™œbVM‹{l#)  ,!:,/#     &+ & $.#'$%' 0$ E4"#5(kS9 ;-D4">/ T@,eM5$J8&R?+  ."&  $)%)+!0$2%0$0$# )4'7)5(6):+8*1%*!"! ##$ !"     " #3&6)5'4'/$-"* '!(*       ")0$/#))1%.#7(/$3&.#*** +!* '% 0228<>CHKQVYY`chorrz}w€ƒ|…‰…Ž‘„Œx~€?DC9>>/12\`bKMPw}Œ‘”Œ‘•Œ‘”ˆ‘•™”˜“˜›‘•™“—› A0( 4'K8$9*      (%       5(5(0$+ )gN56*M:'YC,H7&T@+bK3L;(XC-?/   % -"   #+ ,!+ ,!2%+ $! "+!0$6(4&3&;,/#/$)$&! !    "$"'! ,!*,"-!2&."##'/#(       "%#$%(0$/#,!0$;,/$,!.",!2&-".#* 2217:=BGIPVXZaddloovyy€„}†Š‚ŠŽ…‘w|:=@(**_bcLOQILNŽ”—Ž”—Ž“–‹”Œ‘”Ž“–•˜•˜“—’–™ŽŽmY/$" :+]E-=.        #        ,")/#9+#M:'YD/B2!9+ 0$F5$!-"-" $ !   ' $* * 2%-"1%(&&&%(+ * (,!2%)0#-"+!'#!  ($('"$%%('*3%0#   %,!1$,"" (-!)# ')'")."* %$,"+ ,!),!4'1%.#+ ))."0$%,,+69;AFIOUWY`cdkonuxx€„}„ˆ‡Œ…‹‡Œnsv_bcmpr779fjm’˜œ•˜“—›“˜Ž“—•™‘–šŽ“–”—”—ÐÍÌ»ª™H*"!&    "*,!& $/#'!  "!"#%*2%*"'&& # #  ',!.#)!!'* (#  !  "$"* &# $'+ ,!/#<.5'3&;,0$/#/$."+ ',!))$$(%&$)50)58:?CEKORZ^cgkonswx~‚„‰ƒ‰Ž„‰ŽƒˆŒ‰”Ž“˜tvzy|’–cily€‚Œ•Ž“—Ž“–”˜”™‘–™’—š‘•—ÎËÊÆÂÁfWH  "&D3!9+   &# "     ' 8*  3'!7*\E.S@+,!G7%( */#'(/#'   $!.#/#/#.#4',!2%( $%"%&2&."(%)$ #%! #), &  "$%&#    )+ /#-"""('),!,!(7)9++ 6)7)<-?/C2 5(,!-"(%)$%$# 0,'58:>BDJMP[_bfkpkpuz€„}‚‡€†‹€†‹„Š“˜oswTWZrux/13 JMP†‹‘–™Ž“–“˜›’–™“˜›”—‘•™ÑÌÊÁ®šiR:  'T?(4'   %   "   *   3& >/  K9&$'I7$J8&ZE/%"#;,9*%( 0%&   !!'-"4'5(5(4'-"" ""$'(!&+.#$')* + %%* 2&4'."!!&/$/#() '-"1%*)&%% %,!8+0$+ 8*.#5'7)9+<-9+0$,!( $$!"!%4-&579=@CJMPTX\aeintxx~{‡}ƒˆƒ‰Žƒ‰‰’†Š•™hkndfkdfj?ACƒ‡‹“—›•™ž‘–œ”𒗛ޓ–Ž“–ÒÍÌÉÅÄ{fP $R=(M9%*     &+!%  "0$!  >/ @1!  ?1  (=. "* 3& :,;-0$, % #(!#$1%A0 I7#>.(  !&')!'$# ()*+ %)"%"&)))(/$-",!8*>/ &%-","8*,!%"(),!0$)* -".$6(3&7)6(?0:++ (   $)&!246>ACKNQX\_aeiotxx„…‰‡ˆŽ”‚ˆŽˆŽ“ˆŽ“’˜mqxnqyGHLYZ^Œ•“˜”˜”™™¢“—œ”™•™œÓÍ˳¥…hK 2&/#$N:%U@)H6#    + )%$$$ !'%H6$ 1%  D4#0#@0 &* 6(;- >/B3!#/#$ -""""$'/#/#*  !  %'*$%# '%.".# !)+  *0$2&[F0bDˆjIpNQ=)1%ˆgGª„\²Š`qW.9*4'7)/#,!#   !+& 367>ABJMPUZ]cjmnvyv~‚‚‡…Š…Ž’‡’†Œ‰•‹‘–•›“˜ž•™ž‘•š”˜“—œ“—œ—›Ÿ•š•™œ™ ˜œŸÕÐÍÎÉÆ¦y -"E4!:+& "#     "#! ! G5"$D4#  &(<,4&%* 1%-!*!& "(!%)&&" -",!-"% +!P=*fN6fO64'WB-ŒlK›xT{_A0$ZE/ª„]¶cmT:#!)-"-"eN5»‘g‡hI$!#*)%v[>®†^]G1)'2&Ÿ|W‰iH@1 #$&$."2%."#"&')'*+ -",!2&;,6(5(9*8)<-:,/#.#%!" '"356* $ŠkK¡|W3' žzV¯‰`L;) #",!^H2¾“ipO5(!&)F6%A2"uZ>—tP[F/R?*S@,bK4†gF„eFJ8%%(  "!'"&)'))* + 2&3&1%-#/#,!:,1$."9+3'.",!)%   3)?<7@GKMTY\^cgotxx}}‚‡‚ˆ‰’‡’Œ’—Ž•™“˜Š•Œ‘•”˜“—›“˜›–šž“–š–™“–š—™•˜š•˜œÉ½¸¿¸¶¹š{,">/ 7)D3!;,  +!#      #"!!  * &  *6( *;-'4'@1 ."9+7*!  "  $"?0 •sO”sP $"$ZE/‡iHuZ=ŒlJmLŒlLoM£~X³ŠaXC.' ~aC­‡_hP7  #& ?0 ¬…]‹kK;-!,!)N;(aJ2‰iIžyTy]@>.."#aC§‚[kR76(/$."',!3&+!)3&3'1%;,>/:+9+5(4'3&1%6)=-:+8)7)1$5(1%-!/#0#/#"  21/:<>GKMUX\_dgotxtx|}‚‡‡‘†‹…‹Œ’–Œ’–“˜•š”™”˜’–š”™œ—šž”—›—šž’•™œž¢™œŸ—šžÂ´®²©¤´œ…4*,"A1 V@)L9%  !((&      &%(" " &#%:, '6)&3&D4#."6)9+*   '    !E4#¥Y™vR' 4(Q>+cL4”rOiP89+(„fG´ŒbaK4)&$uZ?®†^‚eF")&% 4(­†^šxTE5$ !&)jQ7ŒlJmT94&(fN5¥€YoU9?/6)4'.#3'7*6(2%?/B1 :+C2 C2!:+8*8+2%/$,!)1%6)2%-"."5'4'+/$3'1%,!" &11/:=?FKMSWZbgjnqvux}€ƒˆ‰’…‹‡’“˜ŠŽ“”™•š”™•™”˜•™–™”—›“–š’•™š¡—šž›ž£ÙÐÍÌÄÀÀ­›B6( ;,\D-F4"   %+ %     *$   &&!@1 (;-"+!:,1$3&:+&   &     !/$’pNnL,! && G7%™vRiQ8 mT:«„\kS9(""hP7ª„\“qO#.#,!" .#¡|WœxTL;( #2&)&_H0}_AaJ22%* fO6¥€Y„eF<-:,7)."* 4(9+:+;,1$),!-"/#3&5(-"0$*).#1%)+ -"5(7)-!3&3&/$*'$$.-+9<>FJLTW[cfimqtx{€ƒ‡…‰ŠŽ’ˆ’Š”‰Ž“Ž”˜”™•™“˜›•˜“–š”—›–™ž“—‘“˜•˜œ–™›ž£ÜÔÒ×ÐÍÄ®˜VK> (;,dK1K8%(  #+ &')    )& $' ,! 9+(8*/#'5'* ! 8*   !* ›wRmL8+ &#  +!{_A•sPM;) ZE/£~WhP7&"!O<)¥€Y“rO%1$@0 C4#5)I9' {W£~Xv[?\H1{`CgO70$2%iP6„eE~`BO<)8*0$|_A¡}X‰iIQ>)8*2&)."7)9*;,:,0$)1$2&."0$."+ 0$,!((5(#&-!/#,"*1%1%-"+ * )  9;=FHJSVX_celprw{~ƒ†‚‡ŠŒ‘•ˆŒ‘‡‹Œ‘•’—Ž“–’—š’–š’—š’•™“–š˜› Ž‘–”–›’–”—›š¡¸°«¼´¯¾©”dUG (/$=.`H/I6#0$  &'#")%"!  "%)! "  ." * "+!&".#)%) =.      !•rN™vRC4"  * L:(yTzUtZ>ƒeF¤XqW<%% 7*žyT›wS7)/$O<(—uRŽnM”sP¥€ZœxT˜vRšxTzV_I3%7)_I1pU:hO6Q=):+8*T@+ZD.XC-N;'6(/# )0$-!/#8*7*.#4'/#,"**/#8+4'0$'5(,!-"6(2&+ .#-",!*)+!1%+ -/1FHJRUW_celpsx|{€‚†‰ŠŽ“‰Œ‘Œ”“™Œ‘•Œ‘”‘–™‘–™”˜›Œ”’•™•—›“–𔗛ޑ•“–š–™ÎÈÄü·µ«£hZN (-":+S?)]E-7)  !$&'('+ ."$    ' 1%@0&#/$* "' ;-     7*!cD—tQ`I2B2"N;(gO6ZE.  F6$„fG¬†^¬…]¯ˆ^˜uRJ8&+!,"[E/…fF|_AQ>*/#;,lS9kR9aK4Q>+H7%G6%D4#@1!4()* 4':,."/#5'* '3&9*5(.##&$().#.#.#*#)(+ 3&?0=.4'4'2%3&5(1%2&0#/#4'0$+!')-"4(3.)!#$8:.9+/#3&0#1$6)5'3&4'5(7):,>/<-:+7)3'>.>/7*7)0$-"*.#0$/$1-%689EGI*,.KMPknpuy|y~€‚†Š†ŠŽ‡ŒŽ“–‹“Š’“˜›’—š’—›”˜‘•š’–šš¡™œ ˜›Ÿ•˜™’–——™µ®¨¶¯©¼±¥–…t )2&."I7#]E->/  &!  !$)2%1$( &&,!&&  $;-* *-!(#1%1% 6).# * !4(,!"+ +  ** ˆiH‰jI_I1 $  &#((0$/#,!$ &&'"+!*($!'"   1$1%3'/#0$* ,"2%9*5(1$(+ 0$+!2%7*8*5(5(0$1%6)2%/#.#,!."1%:,4'7)<,4'<-<-5(:+2%-"*(* 0$1*#:;;ACEPSU026SVYtxz~‚…„ˆ‹‰Ž‘ˆŒŒ‘”‰Ž‘‹’’”•˜”˜‘–š“—œ•˜œ—šž–™˜›ž—šœ”˜™•™›×ÑÎÇÁ¾³­©–†w  ?0 F5#1%M:%[D,N:% + /#%   "%,!.", #%+!-"' $ 4'* * 4'-!(7*3' :,0$-"!.#/$$* 2%)$(kQ8y\?dM5 $   #$!!""+ + .#, %&"$$ ))+ )%%$$ $/#/#*%,!&%."0$6)7*3'1$+ *1%-"0$3&7)5(4(/#),!+!."1%4';,5(9+>.7*:+<-7)@/7)."+!+ (0$,$011@CDKMOfik36:Z]`†ˆ†‰†Š‰Ž‘”—’•Ž“–‰Ž‘Œ‘”•˜–›ž–›Ÿ”—›•˜œš¡—šž—šŸ—›ž˜œžÝØÕØÓÓÐÌʸ«  <-5(5(WA*\D-N;& '*&   (-"( !)3&((& & 9+%&2%4'#0$2&:-E5#0$($:,)$.#4(&'T@+nL€cD (#!!$$! %'+ 1$+ 0%3%'$# !#!$'',!* ('#')*0$ $4'.#2$8+0$2&%")'* 2%;,:+9+5(, ,!)*+ 3&6)9,4(8*>.?/C2 ;,9+<-3&)+ .#3&-& !"689KMPX[^mpt(Q='   #."-!""#&0$' &##."(."*  3',!'3'5'%2&7)#,!4'(&  6)&&+ 5(2&6*]G0…fE†gG&4&)     # &#+!, )###  $("  '! #'-!*#-"4'7)5'+ &&$*2%:+9*3'.#* /#+ *0%5(3&2%0$9+:+=.<,:,>/?/6(,!,!2&.",%./.#$&ACE\_bZ]`z~LPS[]aˆŽ‘•Ž“–‹“’•Ž“–Ž“•‘–—”—•˜—›ž—šž˜›Ÿš¡—šž›Ÿ£Ÿ£º´²½·¸¿ºº³”x<-=.;,T>(ZC+M9%  $()#  !&(! '"%(,! +!(&5)E3!/$1%3&&;-D4") #' 2&#-!)/#4'3&U@+‹jI€cD)4'1$/#.#&" ##.#* ,!+ !)%" $(#$(& #!$!)!()1%8*5(5)&$%#* 3&<-?/8*3&2&6)3&3&8);->.4(3&5(8*7).#+ 5(5'9+3&-!'*'!22279:)+.SUX!rux~ƒ„W[^VY\‡•™Ž“–’–”–Ž“”’“Œ’“•”—›•™œ—›Ÿ˜› ™œ œŸ£œŸ¤ÛÖÕÎÉÈÀ»»·¢‘*"6(?/0$K8$O;&H7$ +!;,4'#(+ !'.#&',!-!5(>/>/+ 7)."+ "8* 0$?03&5(2%-"4':+1%&8*" %/#/$0$,!S@*¡|V‹jJ1%;,8*0$*&"$,!-"#$#$* ")$,!+ * #!&&#!""   '(%&%+ -!6(4'1%$  "!$'0$3&4',"&$', *+ /#-"1%-"0$1%-"(,!9+=-2%,!+!7)=0"541ADE:<>//1\__zŠ‘’bfkTX[†‹Ž–œŸŠ”’”Œ‘’”–‘“’–˜–™—›ž—šž–™ž™œ š¡™œ ÝØ×ÛÖÓ×ÑÑÊ»­<4,VA+-"A0U@*E4!#A1 :,4'/#:,2&-"1%')&&.#:+3&6)4(8*?/4('&5(!4';-/$5(:,0$%:-3&."@0 "& !$)H6%žyTŽmK>/9+H6$Q=)P=)tZ>jQ7/#%&/#, 2%)") #"%=.;-! "-!/#/$,"''&/#.#+ &##%0$7)).")(   %)*1$.#1%/$8*2&1%4'5(5(2&5(+ 1%/#,!-"6)?/:,,!'-"3'41.CEF*,-579„ˆŠ‚†Š‡ŒimpZ]`‚†ˆ’—š–—Ž“•Ž“–“—š“–š‘“——™ž—šž–šž›ž¢›ž£šž¡ÈÁÀÍÆÄÌÇÅÍúMC9 I7$(@0J7$H6#'9+,!(."4'.#2&2%4'1$1%))5(<-3&4'9*9+=-4'''G5$%2%:,%."8*4'-!G6$0%#?/, 2& + #&) M;'¨‚[©ƒ\ªƒ\±‰a³‹b±Ša²‹bµdx]@." &+!'2%+ ."eM2cDdM6&&fO5¢}V}aC)!#,!+!.#2%."-"* .#-"(&+ 4'))-"$"  !+ + ."/#.#1&2&2%6);-D3!9+<,6)4'.",!.#-".#*-"-"%'3&G6#1+%;=>*+,'() !cei„‰‹…‹Œ’•vxzY\]ƒ‡‡™žžŽ“•Ž’””˜š—šž“—•˜œ•˜œ–™›Ÿ¡›Ÿ¢œŸ¢ÉÃÁÆ¿»¾¸´º­£WLB Q=(1%G6#F4"L8$4'<-4'+ 6)0$-!/#;,3',!4'1%$,!3&5(8*6(;-3&2&#%F6$!0$7)")8*7).#J8%3'$8+0%2%'$%%"E4#ŽnL“qN‡hHuY=sW N:'1$@0T?)J8$2%A1 :+3&0#+ !+ /$$."5(3&%&++ + .#:,3'D4""#P>)#1%B2 *+ :+;,3'M:&4'%1%2&B2 5')&.!,"$(0$2%0$:+;,7)6(<-7)3&."-!(%!I8%˜uPdM4#ŽlJžzU+ 4' {UcE!/#+ +&/$4(0$2%/#3'?/8*'+ ."0#/$* ."&%+ )$1%3&4'/#(* ) -!1%-"-"0$)0$5(=.D2 ;,<-6)9+5(7)7*A1B1 8*:+?/?/51,022NPQy}~\_aUYZ“–™“–šabc$%%uyz“—™–™›’”–“–˜—›–šœ™ŸšŸšžŸ ¡ÞÙ×Ý×ÕÖÑÍÎÉÆveS  >/.#8*H6#F4!/#<-B2 7*,!#$'#(3'5(5(*+ "+ 0$-!N;&4'TA+$O<(%6)F4#)*F4#K9&2&VB,:+"* 4'=./#(* 5(3'),"."/$2&9+6(1%7);,3&/$.#1$,!'+ J8%™uP…fEcL5ŽmJŽnL:,XD.šwQ’qNeM5|_A$(#,!4'5':*9+;,@05'.#+ '+ 8** *#+ $/#0$8)6(4(5(0#+ 0$0$0$/#+ 2%/#-"6(A08+;-C2 =.2&9+=.9+1%1%3&>/6),!1+$)** knowz}‚‡ˆcfhVXZˆŠ456"#$MOPsuv—𛓖™’•–—›œšŸŸ˜œ—›œšžŸŸ àÛÚÝÙ×ÒÉÂÍùŒ€t L9'1$<,K8%I7$1%2&8)E4"7),!,")(-";,>.8*."#')-"C2!9+M;&."-"S?**;-Q<(,!,!E4"A2 * 7)+  7*/#=./#&!+ 5(5'/#0$0$,!4':,5(;,@/4'.#/#1%,!(-"0$sX=™uQ§‚Z•sOS@*G6$žzU•rN {UŠjIoU94'+ -!/#3&1%3'8+6)2&3&;,0$:+3&4'5(),!,!$/#1&7)3&6)?/=.6)1%+!2&4'2&=.@07*6'2&7);,6)9+1%:+7)."* (1$;,+ 0$F8+(*,dgjz}ˆŠŽ†‰ruwABCSUU˜œœSUUjlm–š›–š›—›œšžŸ˜œ˜›œ¡¤¥šžáÛÚÞÙØØÔÓÏÊÉw^ ,!1%5'?/:,5(4'3'8*6)3&2&1%,!1$<-@/0$."$%)$"E4"7(M:&'0$R>))4'@1 -"%C2!A2!$>/3&))C2"7((%/$:+7)9+6(3&2&4'8*;+:,;,;,1%-")$%&*+!N<(cL3D4"2&7(, y\>’pN.".#/#$$$,!0$.#+ &&2%6(4'4'2&0%0#+!/#'+ .#6(;,2&8+<->.@/=-6(8*8*7*5(D3!B2 ;,6(5(4'3&9+8):+0#-!2%.#0%6(."7)% ++,[^`:=@dgj‹Ž‘‹Ž’ŠDDEruv©­­\]]SVW_be›ž ™žœ ¡˜œ•˜™ž¡¢˜š›àÚÙÞÙרÔÓÏËÊ¥“ 4(>/1%0#7*8* +!/#3&,!),!+ *-!'&(%+!+ &#?/4';,.",!N;(&."6(1%(@0 D4"* F5$7)&(&3'5'*%,!6)9+C2 E3!B2 6):,8+;,9*8*<-6).#)#&'.#+',!.#,") 0$qU:nKA2"B2!>/#''.#1%0$" &1$4'9+3&."0$1%1$+ ."6(9+7)5'/#."2&>/C2 G5"@01%,!2%6(?/<-;-4'1$-"/#4'7);,;+:,;,9+4'1%1$=.'Y]_mqt>AEgjm“•™…†‰ €ƒ„ˆ‹‹ikm’•—uxzSUYŸ£¤˜œ™ž•™š›Ÿ œŸ àÛÚÞÙØØÔÓÎÊÉ»­¢ 2&?0%)7)6) ))'&# #$&&(&* &*+!':+, @0-"/#D4#'2&D3!C2!4'F5#G6#,!?0/#(+ $,!8)+ (-":+B2 ?.J6$M:%=.=-9+7)=-=-9*8*<-1%'&,"1%** ()),!3&bJ2˜tPlKŠjI\F0&+ * ,!-",!!(0%7)8*3&)&3%0$0$2%2&,!(/#.#+ 0$@/G5#J8$F5"2%(.#8*1$=.H6"F4">.6(3&2%6(7*3'@0=.7)9*>.3&0$,%$$#235]``mqsz~IKObbdbacPRSmnpCCD|€› ¡šžŸ„‡‰GGM”—˜›Ÿ šžŸ›ž¢ £¦ßÛÚÞÙØÙÔÓÑÍËË».#%7)3&$$+ %##$##$(* * ')'1%,!U@+&$7*)-!7)>.5(@0 C2!+!@0 ,!&$/$'I7$3&/$0$9+<-9+E4"Q<'G5#:,3&8*?/<-4'8*@/=.0$"$$&&+!'%%0$9+lS8oL€bCF5#(&%(-"/$(%*2&:+8*1$+ * ."+!/#/#0$,")/$3'2&-"7)A1@0;,/#%,"5(2&A1 O;'E3!C2!;+1%1%7)9+7)?/?07):+5(."'.' --.)+-\_`mopz~„†[]^)++“˜˜…‰‰888uvv™œ–™šž¡£Ž’”EFH‹ŒŽ¢¥¦™›Ÿ ¡¥àÚÚÞÙØÚÖÔÓÎÌ͹ 3'(* 2%3& %&'(&&#$&* 2&/#-"3&.")+!=.<,)+ 2%5)1%7)?01%B1 F5#.#@0 8+'%1%!=/2&2&7):,3&4'?/I6#F4"3&/#2%7*3'-"2%5(;,4(%!#$(#%',!3&>.>/7),!&(,!,!* )(."2%8*6(3&3&0$1%1$/#.#/#* ()-"(&* 2%:+9+.")* 3'@0C2!B1 <-;,5(/#.#6)=.?0G5"@0:+4&)+!%("%$#<>?EGI,-0egiz|€ƒ†qstNRR¨¯®hlkuwxVXXuuu—››—š–šœŸ¢OOQ}~€›ž¢ ¢¥àÛÚßÚÙÛÕÓÕÐÍŲž+# H6$(,"1%6) (#* *-!))'&-"8*4'.#5(2%0$.#4'6)-!-!8*9+2&=.A1 %A1!E4#*C2!C2"3&,"-"/$'/#4'7)3&6(;-C2 D3!9+5'3&3&/$.#0$0$8*3',!''&"!& '-"/#4'4', *0$5'3&.#+!(,!1%/$8)8*7)4&=-;,0$,!+!(*%'!#,!."8*=.2&3'+!4'?/>/:+7*5);-8*3'4(;,=.D3!B1 ;-6()%"%100@BCMOQXZ]026ruy~ƒ*,+ WY[–šœklm€ƒƒ¨¬¬TUUrst”˜™—›œ¡¢¡¥¦abdllnŸ¡¢áÛÚßÛÙÛÖÒÖÒξ¢…<0$ 6*)4'D3! $-#.#6(0$.#.#*4'6(+ *!,!/#1$5(1%9+1%/#6)I7$7)G5"J8$-";,9+(1%3&+!%) 4( * ,!2&3'3'4'>.A1 F4!:+2%9*4'/"1%/#3&6)2%1%1$+ #'&#$(-"2%+!&'.#3'/#0$+ !+ 3&2&8*3&3&1$<-<,4'+ (+ /#-"+ &&+!.#6):,7*:+8*9+7*4&5':,7*<-:+5(:,A0<-?/C2 6)0%,!*+ 0%(%";=?LNO[\_iko56:lno?AB†Š99(6)*.#)* 6)5(+!-"3';,3&,!)+ .#'2%:+4'6)#0$S?*=.M9%U?):+>/:,)&@0 ,!#5(,!,!"),!/#9*A1 :,7)@0F5"E3!C3 A16).#3&1%1%3&3&."-"+!# ,!!)&(#%,!,!,!B2!I7%<-/#&#[E.{^@}`AcJ2B1 1%5'4'3&1&3'0$* ((.#,!+!-"/#1%8*3&5(0$1%0$5(1%2%9+:+J7#P<'H6#C2 <-6)0$.#)-"541/23246PRUilntwz›ž¡…‡Šmnr{|€gim^`c“•œ  ¦«­…ŠŒTX[‚†ˆ¤¨ª £§¡¥¦àÛØàÛØÜ×ÔÖÐÌÐÊÅmg` I7$%."6)U?)9+(* /#4'0$4'9+2%+ ##$ &($'9+7(>.)4&N;',!<-R=(7):,@1!)0%$!-"+ ( #%(/#:+7)8*@/A1?/C3 =.1%6)>.7)5(1$/#)),!'.#5(9,G6%;- !eN5w\?tX.7*2&;,>/^F.G5#C2 C2!B2 =.8*1%@0 Q=)=72BDF8:;8:/%4'D2 6(F4#XB-9, ;-' ,!'A1!#$$,"5(."0#3&7*>.J7$F4"B1>.<-;,G6#]G0S>)K8&9+# 2%tY>‘pMbC:- O<)£~X„fE0$#C2!ƒdC {VœxS—tP£~W”rNz]>1$Q>*XD-H6$’pNoLcK21$;,7)4'-!/#-"*-!8):+8*5'8*>.8*3&7*=.;-B1 B1<-:,9+<-L9%M:%L9%H6#M:&L9%F4"9*4(=.;5/<>@KNOJLMBEG”˜™cfiGHJ„‡‹jlofgj•—œhkojlp¡£¢¤ ¥¨™ jmpmor–˜›áÝÛàÛÙßÙÖÖÐËÐÌɈ|q YD-)/#D3!L8%M:%*7)5(>.=.<-8*."/$/$'$*3&0$&! 8*5(G5#1%-">/$4'G5"8*@0I7%6) E4$2& %2&K9&,!"$!#Q=)N:&WB+\E-I8%:,D3!E3!B19+:+jP6|^@€aBcK2w[>“qOUA++ -"^H2rW;~`A-!  =.¤~XuY=&.#qV:ªƒ[ŠkJC4",!7)„eEŽlI<,K:'7)(?0 ŒkImS8."8*7);-8*-!,!#).#/#5'3&;,?/>.?/+!4&3&:,J7#D3 >.;-9+?/F4"H6#N;&O;&I6#D3!?..#,"2-(;<>ILMY]^@BDJKM ¤ƒ„‡DDEsuyXY\ghj˜›Ÿ—šžwy}_ae˜› ¤¨Ÿ¢§ž¡¥uw{hhläàßâÞÝàÜÚÚÔÑÒÎÌ›“Œ J7$-"* 6(H7#D3!%,!,!0#/#8*;,-"$(')6)7)M9&5('&;-2%C2!(8+H6$, A0C2!*)3&2%$9,.# +!/#P<((.#', .#[D-kQ5tW:aH/iO4cJ1;,4(1$5(_H1ƒdDlJ‚cDuZ=}_@ŒkI—tPH6%-"I7%oU8‹kI& =.£}WƒdD1%>/ŠiHšwSP>*"!0#ƒdD–rNvZ=ZD,=.0$."oT7ˆiHN;(-"5(3&9+2&0$** *-!0$1%3&8*?/A09+5'/#6)?0B1 E4!?/<-<-@0;+A0A1?/B1 =.* -"2,&:;/A1?0;,/#."-!1$/$, -"'2%'9+(7*0#.#F5##2&;-) 3'2&&1%')-"%C3!1$'(9+0$WB+ƒdC™tP‰hFpU8^F.C3 ,".#F5#sX;‹jIVA,,!(7)pU9ŒkIkR8,"A1 œyS“pL0$# ?/ ¤YƒdE3(E5#žyTŒkKD4#%'TA,kR8iP7WC-3'-!."4(`H/ŒkI_H14(=-6)1%/$0$0#0$-".#.#1%3&=-?/I7#E4!B2 :+4'5(9+=-1%:+:+;,?/;,;,<-=.@00$3&80'B?.YD,lR5B1J7$sW:vY;M:%3&+ K9%†fFsW;>.*+!2%ZC,‹jH†fE1$=.›xS”rN4'&4'¡|VˆhF9,=/„dD‡hGM;)-"4'3%'1%D3"4(."2%2&K8%‹jHx\?/"YC-mS9$1&8*5':+>.6(0$9*7)7)=-E4"I7#E4!?/6(9*@0?/;-4'7)6);,;,6(7)8*:,5(4'0)!778JLN#$%qtt„†TVV>?B ¢Ÿ¢¤ž¢¤’•—]^c~ƒ¡¥¦Ÿ¢¥¡¤¨”—›kmnfhi±²µ§¨¬âÝÚáÜÚßÚ×Û×ÔÖÒÏĺ± M;(1%":+U?)Q>(  *0$1$3&4'B1 7)3&3&9+7)3'0$3&'>/+!:+(,!=.4'5(=/;-(9,,"D4#mT:~aCoM=.9+4'2&)+ @0iO5bJ0@0;,F5"eL2bI1F4"*N:&‡gEcL31$%'$D3!„eF˜uQ,"9*›wS”rN<-3'* 5(¥YˆhG=//$|_B {UuZ=>/5(.#<.‘pOsY=,!#(%.#cC—tPx]@…eDeM3, 6(2&6(;-A1 9+1%3'4'8*5(<-B1 E4"C2 @0:+?/E3!@0D3!?/3&>/I7$5';,7)3&>.A1/'455EFH‡‹Œ€„„FHH€„†XZ^”—™£¦§›ž¡œž¢jkohhlœž¡£¦ª¡¤¨›ž¡y|}Z[]¬­°âßÝâßÜàÜÚÛ×ÔÕÐÎIJ¢ >0/#%0$>.?/  ',!+ 2%<-8*/#/"* 1&,"''/#)M;'1%G6$bL3YE.YD.1%/#;,?/7)=.*  C4#zV©‚[®‡^I8&2&A2!%%"1%A1<-?/8*;-dK1lR6T?*/#ZD,bBnS8:,+ )'J8%kQ7v[>3'.#‚dE{^?=-/#>/oU;œwSˆhH8* WB.¡}W¢~W¥€Z™wTŸ{W­†]¬„\qV;6)'('$F5"¤XŸzT—sOjQ6(.#0%7*;-;,>.?/6)-"0$7*8*A1J7$@0J7$9+7):+=.9+6)B1 B2 J7#C2 ?/I6$K8%B1 ;+1(877'()RTTx}|osrX[[™Ÿ}€ƒ]_cŽ’¤§§¡¤¥¤§ªuw{VV\¨«¯¡¤¨¤§«¤§ªŒ’XW\åàßãßÝáÞÜÜØÕÕÐÍɹªL:'1$-!."B1 F5"  + *'.#0$9+>.A03'-"7).#-"+ (@0 :,H7$x[>`B|_@7*+ 5(7)."B2!=.1%…fGŒlJžzUG6$-"?05(+!$* ;,2%7)=.Q='_G/^G/cJ16)K8%gM3nS7fM3F5#8+N;(oU9kIeM4<-3'˜uQcDcC©‚Z¨Z¢}VŸySuZ>$%"O<)nM£~W¥X¥Y¬†^§‚[v[>-"0$2&.#2$+!C2!eM3nS8TA+2%0$6)6)6(>.I6#J8$C2!;,7)8)4'9+I7#E4"F5"<-:,8*>.1%:,B2 K8%T?)>.?/@0=.>/4'5*=;9 twxtwxDFG‘•–•˜š˜›ƒ†ˆ]_b‰‹Œ¡¤¤¢¥§£¦ª‰ŠLKQš›ž¤§ª¥¨¬©«®–—›åàßäßÞáÜÚÝØÖÖÑÎɹ©-$3&$';,D3"J8#    &0#/#8*>.=.>.:+8*/#,!-"'C2!7*;-…fFŽmK‰iHD4"(;+C2 1%D4"H6#6(9+‚eEŸ{U™vQH7%)\G/9*4&%-!A1 =.:,?/K8%hN4iO5^G/=-C2 ]F.|^?‰hF‘oKkIlIkHbC=.7)5(•sQ‰iHyTyT›xS‘oMeL50$)'&%+ F6$_H0dL3N;'4'&'-"1%6)>.<-.#)+ '*+ 4'3&5(=-@0H6"G6"F4"F5">.H7#G4"I7#H6#J7$A19+3&>/2&4'@0N:%ZD,J7$C2!?/4&5'."2&+(%9::mqruxzEFI•˜›”—š•™šž¢£‘”–[\`ˆ‰‹¢¤¦ž¡¥£¦«™šŸHGK““—¤¦ª§¨«¬­¯åààãÞÝâÝÜÞÚÙ×ÑÐÑÊÄ=4+(0%$@0I6$T?)"  $,!."'4';+2&3&7)5(0#'* (7)7*/#^G0†gF}`CE4"7)?/=.$D3"O;(9+3'u[>‰iH˜uQP=)* G6#1%9+/$-"6(B2 <-<-@0jO4sV:U@*?/E4!A1aJ1‡gF”qN‡gFlJdM4,! $N<(XC.P=*D4#>.-""#+ * -"1%-!)/#5'2%."(&)-"0$3&?0E4!;,9+,!7)6)5(/#+1$:+7)7)B2 @0@0>/=.A1?/B2 ?/<-4&5(=.>/:,N:&M:&F5"A0 F4!8*<-;,-!:,^abilnIJL€ƒŽ‘•–™—™žœŸ¢ ¢£š›ž\^c~ƒ £¦£¥©£¥ª¥§©STW„ƒ‡¦¨©ª¬­åàßäßÞâÝÜÞÚÙØÔÓÏÊÊG>5 /# + 6(D3    $/#2%)3'9+7*/#6(/$-"1%&$5(@1!1%‚cDiP7pU:@06(8*9* C3"N<'4'+ sX<‡gHƒdFD4#&D4#3&7)6(0$-!6):+5(=-nR7y\=R>)2&9+8*:+4'8*B1?/6(6(+!&  # !!#()1$.#1%)+ 1$;,9*1$.#7*) '&2%=-<-9+7)1%-"/#0$4'6(3&3&5(9+B1>.6(5(=-9*;,A1K8$M:&C2!6);,<-6(<-6)A1=.E4"E4"H6#F5!3'0$ "##[^^loo789”—™“—™›ž¡œž¢Ÿ¡žŸ¢¨©®\_cy{™›Ÿ¥§ª£¥¦©ª«lknnmo¦¦¨åáàäßÞãÞÝàÜÛØÖÕÎÄ»M>- 9,$5(H6#R>()  &.",!).#2%1$7)5(* * 2%3&1$5'<.-"oL|^@z\?I7%:+@0;,!6)N;'J8%>0z^A“qO¨‚\gO6#?0 ) 4'3&2%:+7)=.7)E3!]F-hN3M:&5'7)<-<,5(4'6(8)7*/#-")0$ )$ + -"0$.#+ /#,!(%/#7)/$-")0$/#&)4'@/>/<->.G6#<-4&6(6(6(/#-!1$6)5(/#1%7)@0C2!F5#I7#K8$Q=(O;&:,8*?/4';+D3!J7$A1 E4"8+0$5'2%3& EHG\`_BEDbeeˆ‹’––™—™¢Ÿ£œž¡¢¤¨ª­±mnsmns•—›¨«¬¦¥§¬«¬‚‚ƒ`_båàßåàßâÞÝßÜÛÚ×ÖÒÍÉg[QH6$%0$@0T?)0$ ##"'((&* /$5(."%/$0$/#0#?0F6"<-oLx[>ŽlJ~`Cz]@uY&I7%* -"6(3&F4"B2 D3!7)B1 R>(ZD,Q='<-=.:,5'2%* -"-"0$2%1%* %  $'(*."(-"2%2%-"1%:,4'1$."0#1$* )0$1%3&:+9+:+H6#>/>.C2 >/7)4&4'4'6(5'5(C2 B1 <,7);,H6#N:&M9%A0>/8*6(:,=.>/H6#A1 <-9+3&."A0 KMM\`_*,,~‚ƒ„†‘‘–•—š˜›Ÿš ž ¤Ÿ¡¥¡¤¨¡¤¨°´¸€€…edjŽ’ª©ª«««®®®——˜äßÞäßÞãÞÝàÜÛÛ×ÖÒÏÌm]L Q=)2%/#7)A1-" +!,!0$+ ',!+!,!+!,!*)-"+ $,!?/VA+;,„fEaBlKxT–sOˆhGXC,(-"|_B¨‚[’qN”rOoM¢}W|_A/$:,#$(4'>.E4"=.7*B1 _G.Q<'D3!:,9+6)4&5')%.#3&3&-"2&,!&,!( &$* ,!3&1%0$.#,!2%8*>/5(+!+!-"8)/#3&1%2&7*2%0$4'4';,B1 :,?/F5"E3!<-8*<-G5#C2 >.8*6)?/D3!C2 ?/=.4(7)5(3'8+@0:+:+?/4'*?0",-,MOOEGGMNPwz|~„‘”–˜œ”–šœž¢¡¢¦Ÿ¡¥ž¡¥¥§¬£¥ªª¬¯•–š__c€€¦¦§±±±­­®äßÞäßÝäßÞáÜÛÚ×ÖÓÎÊs^I @1 1%$.#B2 4' + .#7)0$/$1%/$3&-"3&/#%&#$,!9+R=(?0‰iIŒkHˆiG˜uQ‹kJŽmK]G0%'x\@­†^ŠjI‘pM|`BŽmL‡hH:,<-%1%3&<-8+7)J7$pU7V@*>.1%0$.#.#/#.",!2%2&3&."3'>.4'5'/#&%%&(*),"* /#1%-"4'9+4'/$,!/#H6#7*8*;,8*9+3&-"-!1$5(:+=.B1 K8$G5#>.9+8*A1 C3 D3!7)2&2&;,;,A1A1 =.<-6(1$0$9+9+5(1%."&2&799ORR*,,knotvy„†‰Ž”™š–™Ÿ¢¦Ÿ¢¦ ¤¡¥¤¦ª£¥©¨©­®¯³£¦§pqrzzz±±²æáàåàÞäßÞâÞÝÚÖÖÔÎË„sa4'.")4'C2 3& )* -"/#4'7)5(5(4'6)-")&"(.#;,R>)>.cDŒkI’pL™vQ‰iHŠiHeL4*#mT:¨‚[–sPŒlK˜uR |V•sP6)B2!* #-!0$8*:,8*P<'qU9T?)D3!5(3&:,4'-!* '+!/$/#,!/$4'0$+!* % "%#$"'',!2&4'5'5(2%1%-!5(?/:,=.@0C2 <-:,4&0#.#5(8*:,B1 D2 ?0;,3&5(8*8*=.:+8*+!).#8*7)F4!?06)3&1$<-;,8*3'3&'')":;<>@A=??ilmuw{ƒ†ˆ‘“–—›™šžŸ¡¥ž £ £¦¤§©£¦¨¥§ª§¨««¬°¨ª«°²³€€vtuæáàåàßäàßâÞÝÛ×ÖÓÏÏ”„r -"0#2&5(:+/# $'+ 3&<-;,5(6(,!(&-!*"&,!P<(1%kR8aAƒdD”rO…fF‡gFhO51$(UA,ŽnL¡}W¡|WšvSŸ{V–sP5)D3"?0/$* -!2&/#8+@0YC-}_@dK2V@*H6"N;&R=):+0$,!,")-"'*.#.#0$/#&)##$ #$%(/#8)9+/#/#))+ 7)=.7*:,<,A06(6(-"2%7)2&5(:+>.5',!,!,"5(5(;,@03'-!3&0$2&=->/:+4'3&<-?/;,7):+:,6(;0%BBA!"#VXZgikvy|…ˆ‹‘•–››œŸŸ¡£ž¡¢¢£¥ª«­¥§©§©ªŸ¡¢¦§©ª«­§©ª­¯°’“•zz}æàÝçâßæáßãÞÝÞÚÙÕÑѦ›‘ %,!:,<-0$." $#),!7)?/=.9+3&,")$2&0#'"I8%/#kQ7kInL“rO‚dE‚dDoU90$,![E/‹kK™vR§Z‰iI¢}W¦[;,=.A0 0$(+ 0%-">/A1I7#pU9ŠiGjP5fL2mR6YC,6)."1%.#-",!'%',!),!,!1$,!%"&%(&$!%."2%."+ 1%-!(#.!3&1%9*:+9*2%3&)'-"(-"7)=.5(3&2&4'7)5'7)@0@0>/B1 ;-5(<-9+?/;,6(7)9+8*8*?/=.5(B6)=;9*+,\]agilxz}„‡‹Ž‘›œ ŸŸ¢ £¤ £¤¤¦§¨©ª¤¦§§©ªŸ¡¢¨ª«¨ª«§§¨­®¯­¯°¢¤¦»µ±Å»·Í¾ÐÈÃÒÊÈÏÊȰ ’ + 2%B1 C2 C2 ;,!&$%,!6)<,=.@0A0=-7)0$>.0$-!,!(H6$4'gO6¯ˆ`°ˆ`­†^£YŸ{VŠjIQ=)H6$qW;–sP’pN‘oM}_AƒeDbCG5#1%1%+!#,!5'4&@/J7$E4!O;&€bB”qM˜tP˜tOz]>E3!.".#* 0$.#*$$0$)* -"(+ 1%*&$"& $0$/##) (()%)-!2%0%:+=.5(2%*(*$'2&:+9*5(3&:,;,9+2%5'@/F5"C3!:,9*M;&K8%?/6(:,<-8*?0A1A12%)M=-,)%DEGXZ\gilxz}~€„‘•˜šžœžŸž ¢¤¥§§©ª£¥¦¥§¨§©ª¦¨©­­¯¦§¨©ª«©«¬¯°°««­ÇĿ½¸¾¸³»µ±µ­©±¨¥¡ˆq 3'A1 @0?/F4"A0%#%(, 2%:,:+3&3&0#);,0$-!,!,!9+.#P=)‘pN}`Bx]@pV;fN5XC-I7$?/B2!O<(K9&?/ 7)7*2&.#-!<-2%0$2%>.<-@0M9%C2 8)J7$fM3rW:y\>kQ6C2 ,!)'&+ + )7)+ +/#.#,"6(*$!#$!&(+!##"!("#%*+ 0$8*,"+ + + (%&,!/#6(7)4'7):,<.6(2%7*D3!<.4&4':,D3!D3!>.<-@0@0G5"F4!B1 6(2%WD01-(IKLXY[gily{~ƒ…‰‹Ž‘”—›žŸ¢ ¢¥£¤§¦§©Ÿ ¡£¤§©ªª¬­«¬­¤¥¦¬«­®¯°­®¯¬«®âÞÚàÜØÝØÕØÔÐÐÌÈÈ¿®˜„ #:,2&:+2%>.' "%&3&8*/#0$, -"+ 6(.#1%4'2&@0/#+ =-8*5(.#/$7);,?0?0>/E4#:,+!2&7)9*:,<.2&5(/#;,F4"@/G4"G5"5'6(=-C2 H7#I6#6)* (#+ "#'2%0$$('+!/$,!$$' "# ! %'$'*-!5(6(+ .#0$2%0$-",!* * 6)6(0$5(9+=.;,?/<-A0=-5(7)1%7*N;':+=->.A1 ;,4'2%1%0$M:'>;6KLMY[]jloxz}‡ŠŽ‘”˜šž¢¢£§§§«¥§«¨©¬§©ª¢¤¥¨§©¬­®¬­®«ª¬±°²®®¯­®°çâÞåàÝãÞÛáÝÚÝØÕÖÑÎÊÁº 7).#9+8*C2 $%*-"?0>.0$1%/#+!,!6)3'5'>/K8%YC-rX.B2 7)+ 2%5(2%H7'GD@OPQ\^`npsy|~‰‹Ž‘“–œŸŸ ¤ ¡¤¡¡££¤¥ª«­­¬®¤¥§«¬®§¦¨®°±¬ª¬°®±®­¯®°±åàÝåàÝäßÜáÝÚÝØÖØÓÐÎÉÇ/(" %2%A0 9+<.' , -".#0$5(7)9+2&( /#3&6(8*A1@0 B2 4'-#/$9,@0 =.,!"*+ ,!1$7)4(1%'-"+ 1%<-=.?0>/9+9+;,7)1%;,7*0$*&"%* ."&.#%#&'"%$ '0#0$1$2%1%.#-"+!(%""$+   #-"6(8)?/=-5(.#((* ,!+ 2%0$7*/#.#-!-"-"-"/#.#0$1%,!/$1%0$6)5(,!]H1QLFUVVacdpst|~‚ˆŠŒ“”˜œ¡žŸ£¡¢¦ž¢£¤¨©«­©«¬¥§¨£¥¦©¨ª¦¥§­¬®°°±¬«­­­¯æáÞåàÝäßÝâÞÛàÛØÙÔÑÏÊÇ<71 2%F4"6)?0.# (2&0$3'?/A19*:,)!(,!<->/>/?/A1* &."4'2%''$%*,!2&-!1%5(5(/#+!/#4'7*>.B1B1 7*=-D2 B1 9*,",!."*'& !#)#&  !  !* 1$5'1%,!4'0$.#4'+ 5(.#."&$! #*.#2%8)4'0$'#)* )%+ /#1%4'1$5'6);,7)2&/#2%5'2&.#7)5(7)5'C4"XG5TQNXYZfhhruv„…Ž‘”™›Ÿ¡£Ÿ ¤¢£¦¢£¦¤¦¨©«­¬­®ª«¬««­­­¯¬«­ª©«­­®­­®²±³çâáæáßåàÝãÞÜàÛØÙÕÒÐÌÉ<4* !A0F4"1$7)-!  (.#,!2%:+6(3&3&-!)%/#6(6)3&?/F4!9*-"3&4'&&.#/#)($, 0#-#2%+ + 5(:+4':,8+J7$D3!;,B2 K7$C2 G5"C2 4'+!'&%)$"&%&* $     $%(*)0#4'4'."6(.#*,!/#2&* ($%* +!($"''+!/$;,4'5'8+@05(2&,!0#9+8*?/A1 ?/H5"4'3'D3!6(-!3&?/NA4XVV^`alnoz}~…ˆŠ’•™›œžŸ¤¥§«¢¤§¢¤¦¨ª«ª¬­­¯°«¬­§©ªª«¬±°²ª©«®­¯©¨ª´³µçâáæáàæáßäàÝáÜÜÚÖÕÐÉÂ@1! $;,P<'0$=-0$ &$&* * 2%5'5(4((."'&'$0$@1;,1$)3&5'(#$'6(6)%"$&2%/#:+C2 7)A08*7)>/:,B1 ?0I6#J7$A1 @0<->/7)3&(*# # %0$) )'!  , * (/#/#*/#3&+ /#8*/#*)5(7)5(-!$#,!5(/#(%"$%'+!1%1%1%2%0%0$-"/#/#7)0$/#4'E4!9*'"* *7)XC-M;'bK3d`\jlowz{|~ŠŒ“•˜™›žŸ£¤¦ª¢¤¨£¤¨¤¥¨¨ª¬ª¬­¬®¯¨ª««­®§¨©«ª¬­¬®®­¯¯®°çâáæáßåàÞäàÝàÜÙÚ×ÓÌ¿³N;( 5(8*B2 9*=.'  %+!*'/$3&+ #%*  %"+!8*=.3&*7*0$+ #$5(1% !%-"2&A0;,H5"A1?/6(2%3'>/@0D4!@16(4'4&."*     #  #5'=-3''$  $! (-"-":,5'7)5(9+4'1%-"4'3&6(1%6)3&-"+!-")$&$!* 0%0$/#4'8*6(;,4'<-3&6):+;,D3!N;&3&),!#%>/jQ6M;'>1$edctvy„†ŠŒ“”—š™œž£¤§¢£§¤¥©¦§«¥§ª¤§©®±±¬®¯§©ª§©ªª«­«ª¬¯®°±°²°¯±çâàæáàåáßäàÞâÝÚÛ×ÔÓÌÇcSB +!8*H6#=.7*2%   #()* :,-#+ 4'6)1%0$* ("*6((*2&6)2&,")&/$+    $*1%6(."G5"L8&>/(#3&=.:,=.;,4'+ /#3&-")""  * &#2%>.=-7)-"-!' #"#,!3&5'4'0$4(7)5(/#,!,!."2%6)H6#<-5(4'(* * ,"-!.#-"0$9+4'5(;-C26(5(7);,:+3&1$."."'&4'>.E4#S@*T@+2&LD=tuv‚„‡ˆŠŒŠ•˜›“–šŸŸ£Ÿ ¤¢¤¨¥§«§¨¬¨©­ £¥­¯°¨«¬©«¬§©ªª¬­¬­®°°²²±³²±³æáàæáßåáßäßÞãÞÜÜ××ÔÐÏtfW /$+!F5"8+/#2%  "!(%&* %()+!0$/$3'6),!2&3&-"&."*-!6)-"#'"  #&."."@/J7$=-,!$."6(1%;,8*1%+ *+ &(''! !,!1%*0$<-8*?.3&*.#'  !(+ /#8*:,7)0$0$/#-!0#-";,6)J7$;-1%/#+ 5(5'-!0$."0$7)7*0$7):+3'7)>.7)8*8)A05(&&"7*oU9x\>M:&_H0qW:jZJzwt„‡Š‘•Œ’“–™–šœŸ¢Ÿ¡¤Ÿ££¤¨¤¦ª¨©¬§©«¦¨ªª¬­¤§¨¯±²ª«¬ª¬­««­¯°²®­¯±°²æáàæáÞåáàäàÞãÞÝÝØØÔÐÏ„~x!L:'=-A09+2%)#'"&+ + ()''(2&9,<-7*7*+ .") %"*)%)#$#  "'(2%4'A12&((,!1%5':,8)0$(,!-"*% ## ! ')").#2%7)8** (2%0$'$(,!2&8*=-B1<./$0$/#?/):+?/:+XC+Q=(G5#;-3'2&1%/#3&;+>.@0E4!F5"@0 9,D3!<-0$4'+ /$(.#')!3(5)"$2)O?-`M8^N>vohŒ‘“—‘”˜‘”˜¡¤¥˜œž ¤¦¤¦§¢¤§¢£§¢£§ª«®¨ª««­®¨ª«¥¦§©«¬­®¯©«¬¬ª¬´´¶¬«­¯®°æâàæáàæâàäàßãÞÝÝØ×ÔÐÏ‹€vtX<2&@06)8*2% &.#,!-"+!&$# "'* %%&) 3%-"&+ * 0$."-",!)(&#" (,!3&4&$$* ,!5(7*1$5('(-"'&%''#$!) "+ 1$8*<-5'/#.#3&4&1%-"(, .#3&6(7)6'* $0#7*6(?0H5#B2 \E-S?)@04(5(-"('"/#5(.".#* *1'.%)-"1&*":3+C>6961753RRP:97 @CDy|}^ablor~…]`c{|€—™œ—˜œ˜›Ÿ¢¥¨Ÿ¡¤¦©¥¦¨£¤¨¥¦ª§¨«ª«¯©«­ª¬­«¬­¦¦§¥§¨­®¯­®¯®­¯³²´¯®¯­¬®çâáæâáçâáåáàãÞÝÞÚÙ×ÓÒœ”Ž _I13&4'A2 F5":, $$0$7)4',!."/#')+ *#!/#."* '-!,!/#0%.#("!  !!"+!!  !"))* .#3&."-!2%3&2%0%1%6(4'0$/#$,"3&3&,!8+9*?/6(,!3'2&/#-"0#."/$-".#5'5'3'/$/#:+B1 >/9+2&4':+.$.%.%0'3*3+!4+"5-#4.&1+$ 61+(% <:7FHF7:8 58;LOS{~€ƒ‡ˆƒ‡ˆflnUZZ&((~ƒ…LORVX[‘“•™šˆŠŽgimz|€ž ¤ ¢¦Ÿ£¦ ¢¤§¨ª¢¤¥£¥§¦¨ª¥¦ª¥§ª§©«­­¯¬«­¯®¯¬«¬««­®®¯¯®¯¬¬­±°²¯¯¯çâáçâáæáàæáàãÞÝßÛÚÙÕÔª£ž Q>)4'7*I7$7)<-,!/#<,."6(5'A1=.3&@0/$#+ *&%%%/#+ *.#4'5(3&*(&#%$'!"" ! +!4'0$1%7)8*4'9+:+6(8*7)6)A1>.8*2&3&."L:%O;&2&.#/#6)7(/$8*/#+!+ ((%&),!+"( 0&8-!0(0)!5.$3-%5.)=82?=9B@?HHHMNOSWY[^`chjjquouyrxzNVYRUXƒ…qvx38:Z\`rv{Z^b‡ŠŠŽ‰ŽQUU dfgœ ¡[_a=?C‡ˆ‹œžŸ ¢‘“–motkmp¦¨ª£¥§¤¤¦§©«£¥¦žŸ¢²²´³³µ±²³©«¬­­¯«ª¬³²³««¬­­°°¯±¯®°­¬®²±³¯¯¯çâáçâáæáàæáàäàßàÛÚÙÖÔµ­¦ N<'<-5(6)8*A04(7)=-(."5(8*C2 >.L:&8*0%.","*)1%+ 0$3&2&-!1$8*5(**,!&'&"!&%)$#$%-"+!1%2&6)8)6(<->/;-7)6)4&4'2&<-:,@1:,:+9+K9%6(#!)-$.&'!,%-',& 5.&*$ !3/+HDAJJIMOPPTVX]__eggnolswlsypw}pw|ryry€qxu{sy}uzw~‚w}}ƒ‡#,/5/=.:,9+4'/$."2%5(6(0$0$4'/$2%4'6(."3&8)4'6(4'-"/#3&4'6)-",!/$)6)7)6(:,>.<-3&0$4'.#,"* ."6(3&-!6)7,:/"9/#5-$@6,B9.<4-<6/>93?<8BA?AAA7:<>ACSTVSWZNSV^dgAHLAHOdjnotxowzqy|ox{muypx{s{rz~qy~t|v}„v~„u}‚y„|‚‡~„‰|„ˆ{‚†y€„?IPW_akosŽ’–†ŠŽ…ŠBGIruw“•“•‹“VZ]rsu@BDjnq]_adgi¥¨ª¡¢¥lmrwx|ŸŸ  ¢£ž ¡‹ŽXXY¨§¨«ª¬¥¤§””–223:;<ŽŒŒ³±²¬«­¯®°®¯¯°°°­­­¯¯¯±±±°°±Ý×ÒÝÔÐÝÕÑÜÕÒÚÓÑ×ÑÏÑËÈÈ¿¾ x\?”rOP<(8)7*@06)* 0$%$'),!4&>/F5"7)8*@04'A0 @0=.4'2%5(/$7)7*7)F4"M9%R='M:&E3!G5"C2!B2 A1 =.=.8*/#,")-"&)-!-","%*$1)"3-%5/(:5/C<5IC:LE?MHDLIGNMLQSSVXY\]_bdggkomrwpuzptyrvzovy_fl[djYag`flnrvV[aX]b_ej*26(05LU\ainqx{ry}t|€w€„s|€wƒv~ƒv~‚v~ƒzˆ{„Šy‚‰z‡{€…€…‹€‡‹…Š~„‰€†‹{€…0;?iqv…‰Œ””˜ƒˆ‹X^aejn]cg„‡Š”—›–š‰“ ”—ƒ‡ˆ@CEprt]]_UUXššžqrvuvy¢¢£¤¥¦Ÿ —™›aac®°°¢£¥MMNBEFœ ¡rrsŽ«©«²±²®®®±±±®®®°¯°±±±³³³äÞÛäÝÙâÛØâÚØßÙÕÝÖÒØÒÎÍÀ´ bK3ŒlJZD.2&4'@04',!<.)#$*2%8*;-@0=.E4!@0E4!C2!D3!D3!E4"B2 >.8*>.I8$O<'G5"E4"A2 7):+7*<.3',"*!4*5,"2,%:4-B<5FA;LFATNIVRNXVS_\[dbaihgnnmrrrwxz|…~…|‚{~y}{~ƒz~ƒx{x|x|v|v|€ty}tz}nsxXahflplqvGOW$* !'V\amqugnrV`d`ims{x€„x€„w€„u~‚y‚†w€„x€„y†|ƒ‰|…‹}…‡Ž~…Œ…‹~…Š€ˆ€‡Œ‚ˆƒ‰LUZŠŽ“‹“‹”“˜‘–‹“Œ”†‹ŽW^b~†•š‰467§¬®„ˆ‰KORosvTWZvy~œŸ£¬­±€†jkpŸ Ÿ¡¢¤¨«£¦§kmo{{|’‘“aabEGG„‰ˆjoo~€€666™˜˜¯¯°´³µ±°²¬«¬³²³°°±³²³á×ÒáØÓàØÔáÙÖáÙÕàØÔÝÕÑÒŹ rW.-!(K9&7)3&-",!6(;-:,F5#F5"@0@0?/6)4(7)8*:,3&/#'1%D7)E:-@8/E=5JA:KD=HB<=:60/+-,-LHGa]\okk{yy„ƒƒŽŽ’‘“”“”“’”‘’’‘“‘’Ž‘‹Ž‡ˆ‰‡ŠŒ‡Šƒ‡Š„‡„ˆ…‡…ˆ‚‡~‚‡}…z„z„y…y…v}w}€iptOY`cinquz'/6 7@G9BI:AJglrnsvKV\ajqvƒ|„ˆ{ƒ‡x€…{ƒ‡}†Š{„ˆx…}†Šˆ|…‹}…Œ‡~…Œ…‹„‰‚ˆ„Š‚ˆ…‹‡‘Œ‘”‘”‹Ž’Гޒ–•˜‘–™Ž“–‡Ž‘[be‰‘JLOCIJ…‡txzx|~œ ¡inqx|€§©­¢£¦§©«’–XZ_ž ©«­ ¤¥¥¨©efg kml·¹·IIJYYY¨§©³³´«ª«³²³°¯°­¬®²²²ÙÏÊØÏÇÙÎÇÙÍÉÙÎÉÚÎËÚÐÍ×ÎÊB4'0%}^@eM4Q=)]F/=.8*-#3'P=(]G/_H0H6#A1 G6$A1:,=.6)4):0%A7,H?6QH@XPIbZRkc]rleysnzu…€|ЅЇ”•”‹ˆ†{{z^ce09A% &-MLOroq‚‹’‘“——˜˜—šœ›ž›š™˜›˜—œ–—›”–˜‘“”ŒŽŒŽŒŽ‹ˆŠŽ…ˆŒƒ†Šƒ†Š†‰‚†‰†Š€…Š|‚‡}‚‡{€…z„}‚‡w~‚dmq^hlajnZbfLPTTZ_FOXKT]OX_V_esy€x‡z‚ˆz‚ˆz‚‰zƒˆz‚‡}…Œ{‚‰~…Œ€‡Ž€‡Ž}„‰}„ˆ€ˆŒ€‡‹‡Œƒ‰Ž‡Œ†Œ…‹Š“Ž‘–Ž’–•™”—”—‘–™‘–™”—’•ŠŽ’UY_  !¢§¨VZ];>@™Ÿux{’–osysvz›œž£¤¥ª¬®šœŸX[^˜š›©«¬«¯®ŠŒ\__W[Z!"! &&(¦§§±²³­­¯«ª­­¬®ª©ª°°°´Ÿ“º¥—Á©ŸÆ®¦È±§Ì·®Î»µÌ½¶}gQ5(?/K8%E3"XC,\E.M;&<-O=)WD0TB0aO?cWJk`Uuj`xogwpˆzŒ†‘‹†“‡›•§ ›²¬¨»µ²Â»·ÊÂÀÎÇÅÍÇÃÌÆÂÉÄÀÆÂÀþ½¼¸·³®­¨¤£—•”{|{RY]%09(36==(''111GII  tvs))&012£§ªµº»®±³°°²´³µ¯®°µ´¶µµ·³±´ƒ‹‹x€iuudopenngpofonbkjcihciecgeeihillinnlqoqxuu}z}‚Ž‹ˆ® –ʼ´ÒËÈÔÍËÔÎÊÕÐÍ×ÒÏ×ÓÐ×ÒÎÕÌÈÓÌÇ×ÐËÞ×ÓߨÕÝØÕÝØÕÜ×ÕÜ×ÔÛÕÒØÑÎÖÎÎÐÊÇËÄÃþ½¶±°¥¢ Š‰ˆgjk3:@$(.6\Z^~z|š—™¡Ÿ Ÿ¡¤£¥¤£¥£¢¥£¢¦  ¤žŸ¢››Ÿ˜™œ”——“•–‘“•’–’–Œ“ˆŒ‡Š…‰Ž„ˆƒ‡Œ‚‡Œ‡Œ€…Š|…|…}‚†w~for]hlblpsy}\ch  %(/5MU\FPZGS\+9A>IRqw~}„Š{ƒ‰~†}…Œ~†‡Ž~†‡Ž~†}…‹}†Œ‰Žˆ‚‰Ž‚ˆ„‰ŽˆŽ“‰’†‹‰’‰’‘–Œ‘•Œ‘•“—•™”™œŽ“–”˜”™œ–š”—›‘”˜›Ÿ£impfikW[]¦ª« ¤z‚osv”•™£¥¨«¯°“•cfh‘’¨©©©ª©«­­$$% 8:;WXYHHF€±³´­­®´³µ®­¯²±³³³´¶¶·²°³ßÖÐÜÓÌÕÏÈÑÍÇÐËÆÎÉÂÊÇÂÆÃ¿ÄÁ¼ÃÀºÃ¿»ÃÀºÃ¾¹Â½¸ÅÀ¼ÈýÊÅÀÍÇÃÓÊÄ×ÎÈÛÓÏÜÖÒÜÕÓÜÖÑÜÖÒÛÔÑÜÖÒÝ×ÓØÑÌÙÑÍÞ×ÒãÝÙãÝÚáÜÙáÝÚáÝÚÞÚØÜØÖÛÖÓ×ÒÑÒÌÉÊÅÄÁ¼¼µ°°Ÿœ‚‚SY\"+2(BG|„x}„ahpot|‚ˆ~„Œ~†‰‡Ž€ˆ‡Ž‚Іޓ…Œ“…‹‘ˆŽ“†Œ‘‰”ˆ’Š““˜“˜Ž“˜•š‹”Š“‘•š’—›“—›•™œ—›Ÿ—›Ÿ™œ œŸ£™œ œŸ£¢¥© £§Ÿ£¦•™œsv{ƒ†‰ £¥¤¨ª˜œ {}ƒstw¢¥¥¤¦¦±´µjkj')(013ŠŠŒ­®°±³´®±²‘‘’vvvŒŠ½¼¾°¯°´³µáÚ×áÚ×âÛØâÜØâÜØáÛ×áÛ×áÛØâÜÙâÜÙãÞÛãÞÛáÜÚâÝÚâÜÙâÛØàÚÕáÚÖâÛ×âÜ×ãÜÙãÝÚãÜÙäÝÚäÝÚåßÜãÝØÞØÓÞ×ÔãÝØçáÞçâßçâßæáÞåàÝâÝÚÞÙ×ÜÖÕØÒÏÑÊÇɾ¿º·¯¬¬•””psv=FM&.",4STX}xw‰ˆš–•¢Ÿ ¥£¥¥¤¦¤£¥¤£¥¢¡£¡ ¢  ¢›œ™™›”–—’”–‘“—”˜‘•Œ‘•Š“‡Œ‘…‹†‹‚ˆ‚ˆ‚‰Ž€ˆŽ~…‹|„‰|…Š|ƒˆ{‚†zƒ‡x…ktxckprw|sw}(16INTOW] "'NT[qv{‚†Œrx€`gov}„…‹†‡Ž€ˆ€ˆŽ€ˆŽ„‹‘†“†”…Œ’†Œ“‡’‡“‹•Œ‘–”™”™”™”™Ž’—Ž’—’–›”˜“—œ“—›’–š–™—šž›ž¢˜›ŸœŸ£¡¤¨¡¤¨ £¦¢¦©•˜œw{~€„ž £¤§ª £¦‚„ˆnpt™œœ®°°ruuƒ‡†’˜•|ˆŒ}}‚†±²³¬¬­°±±žžž€xxz±°²¸·¹Þ×ÕÝ×ÔÞØÖÞØÕÝØÔÝ×ÔÞ×ÓÞ×ÓߨÕàÙÖáÜÚáÜÚàÛÙàÛØáÛØáÛØáÛ×áÛØãÜÙäÞÛäßÜåßÜåßÜæàÝçáÞèãàåßÜáÛ×âÛØæàÜçâßçâßæáÞåàÝãÞÛàÛØÝØ×ÚÕÔÕÎÌÐÉÆÇ¿¼¹´±¥££‰ŠŠ^dh,7>%,29?ecf…‚ƒ”‘’›œ¢Ÿ¢¦¥¦¦¥§¥¤¦¤£¥£¢¤£¢¤Ÿ ¡›ž˜™š“•–‘“”‘”•“–Œ‘”Œ•‰’ˆŒ‘…‰Ž„‰‚ˆŽ‚‰Ž€‡Ž}†Œ~†‹~…Š|…Šz…y…y‚‡y‚†t}gqubkopvz,6:NSWy~‚LV\8BIaeklsx`hmu{…Œpx`kry€‡‡Ž~†ˆŽƒ‹‘ƒ‹‘…‹‘‡’‰•‡’‰•„Ї“Š•Œ‘–Ž‘–Œ•“˜•š“—œ‘•š’–š–™ž—œŸ”™“—š˜›Ÿ™œ ˜›ŸœŸ£›ž¢Ÿ¢¦ £§¢¥©¡¤§ ¤¥œŸ¡}€„ruz𠦩ª§©¬’•˜imp‘’¯³²VZ\JLK¤§¥¸º¹±²²§§©‰‹Žstx«ª¬³³³´´´ª««‘’”opr£¡¤âÞÝâÞÜãÝÛáÜÙáÜÙáÜÙàÛØàÛØâÝÚãÝÚäÞÜåàÞãÞÛãÞÛäßÝåßÝåßÝåàÞçâáèãâéãáéäáéåáéäâéäâéäáäÞÛáÚ×äÝÚçáßçáÞçáÞæáÞåßÜãÞÚàÛØÜ×ÕÙÓÑÕÎÌÌÅļ»±¬«žšš|}ISV +2&.GHNurt‹‡ˆ™–—¢ ¡£ ¢¥£¤¥¤¦¦¥§¤£¥¢¡£Ÿž Ÿ ›ž•—˜‘”•“”“”’”‘”ŠŽ’ˆŒ†Š„‰Ž…‹‘ˆŽ‡€‡~†Œ}„ˆ|‚ˆ|ƒˆ{ƒ‡zƒ†zƒ‰{„‰vƒoy}^imJT[(3:247x|€px}]dklqv{…ltyaipx……Œiszblt{‚‰€‰Ž€‰ŽŠƒ‹…Œ‘ˆŽ“ˆ’‡Œ‘‡’ˆŽ“†’’—’—Ž“˜”™‘–’–›“—œ”—œ’•š‘•™—šŸ˜œ¡•™–™—šš œŸ£œŸ¢Ÿ¡¥Ÿ¢¦¡¤¨Ÿ¢¥ ¢¥¢¥© £§…‰kor˜šœ¡¢¥¤¦ª™œ mqt‚¨«¬uyzDHJvx{xyzŒ‹¯®®±±²®°±žŸ¢mmo——˜º¹º°¯°²´µ›žŸttuçãâçãâçãáæáÞåáÞåâÞæãßçâßèãàèäáèäàèäáèäàèãàéäáéäâéåäéåäêæåêåäéåãêåãëæäêåãêæãèâßâÝÚàÚ×åÞÚçâÝçáÞæáÞåàÝåàÝãÞÛßÚ×ÛÖÓØÒÐÒÌÉÊÂÁ½·¶­¨§•’’moq;EI&-(.5YX]{|š˜˜¢  ¥££¥¡£¥¤¥¥¤¦¤£¥£¢¤¡ ¡œœ˜™š”–—‘””‘•—’•Œ‘”Š’†‹‡“ˆŽ•…‹’ƒ‰‚Š‘‚‰ƒŠ‘‡Ž€†Œ~„‰|‚‡{†x…y‚‡x…vƒs}bnt*6A2CJpmo‰……—””ž›¡ŸŸ¦¤¤¦¦¦¥¥¥£££¤¤¥¢¡£œžš™›–™š’”•“””•“‹’Š’ˆŒ‘‡Œ‘†’ƒ‰Žƒ‰Ž€‰ŠŽ‡Œ€†€†‹~…‹}…‹|ƒˆ}ƒˆz€…y‚†{„ˆy€…x…O\a!GPX1>IHQZqw{u|fotgot{‚…v~€aknpx|ˆ‹u~‚_iou|ƒŠu}‚`jqt|†Œ‘‰’‹”ŠŽ“‹”‹”ŠŽ“‘–Ž’—“—’–’—›’–š•™œ•˜›”–™”—›™œ  ¤™œ ”—›™›œž ¢œ ¤¥¨ ¢£Ÿ ¡£¤£§©¦¨ª£¥¦¦§©¨©¬¦§ª¨ª­¤¤¨ª«­¬­°•˜œ]_bJJK©ªª¯¯®°¯°‡ˆ‰wy{§§©²³´°±²³µ¶|}~ssu¯¯¯­­­´´´½½¾••—çãâçâáçãâèäãèäãéåäéåäéåäéåäéåäèåãèåäéåãêåäêæâéæâéäáèãàçãßèãàéãàèãáéäâéäáäßÛáÛ×ãÜÙçâßæáÞæàÝæàÝåÞÛãÜÙàÙ×Ü×ÕÙÓÐÓÌÇËüÁ¼µ°«©š——vy{ENT*2(07RSW|wxŽŠŠš——Ÿž£¢¢¤¤¤¤¤¤¥¥¥¤¤¤£¢¤››“”•–—˜•—˜“”—“–Ž’•‹Ž’ŠŽ‘‰Ž’†‹…‰Ž„Š…‹ƒ‹‰Ž€‡Œ†‹~‡‹~…‹|„Š|„‰|„‰|…Šzƒ‡y‚†|…‰zƒ‡wƒWchJW``joajqt|t{bkokrutx{mtv[dis{~‡Šqy|LV[z€„„Šv~ƒdkqy~„ˆŒ‘‹”Œ•ŠŽ“‰Ž’‹”ŠŽ‘Œ•“˜’—™•š”™œ’—š”˜›•˜œ”˜›–™›ž¢™œ —›œœ ¡˜šœžŸ¡¥§¨¢¤¥¡£¤ž¡¢¢¦§¤¦¨¦¨«£¤¨£¥¨¥§¨¦¨ªª«­««®ª«­«­°—™›135•——±²²¯°±®°±—™›yy|–•˜°°²³²´³´µœžŸnoqŸŸ³³³¸¹¹¸¹¸èãâçâáèãâçäãèäãèäãèäãèäãèäãèäãèäãéåäèãâéäáéåâéäáèãàéãáéäáéãàèãàèãàéäáæáÞãÝØáÛÖåÞÛçáÞçáÞåàÝåàÝåÞÛâÜÙàÙÖÜÕÑ×ÑÎÐÉÅÇÀ»¼¸³«¨¤Žejn3?G)118@bbdƒ”œš™¢¢¡£¤£¥¥¤¥¥¥¦¦¦£££œœ‡‰Š„‡‡ŠŒ‘“•“•™“Œ’‹Ž’‰‘‰’ˆŒ‘‡‹„‰Ž‡Œ‚ˆ‡Œ†Š‡‹ˆŒˆ‹}†Š|„‰{ƒ‡{„ˆ{„ˆ{„ˆ{„ˆ{„ˆx~…jsz6DL4?Ggqxs|€ensclqw~qy|R[_HNRknqlrvdkpqvzVZ`7?CY`cz‚‡Œ‘w~ƒfms{€…Š“ŠŽ“†Œ‰’Š“‹‘“Œ•“˜”™œ”™œ”™œ•™œ–™–š™ —šžš¡–š›˜šžŸœŸ¢œŸ ¢¥¦Ÿ ¡£¤¢¤¥ £¤¢¤¥¦¨¨§¨©§¨©¦§¨¥§¨«¬­§¨ªª«¬§¨©\_a ¥§z}€‚¥¥¦°¯±µ´¶¥¥§vux‘‘’®®®±²²¶¶·°²³nqrЋЮ¯­¹º¸çâßçâßçãáçäâèäãèäãèäãèäãèäãèäãéåäêäãèäãéäáéåâèãàéäáéäáéäáéäáèäàéäáéãàåàÛâÜ×âÜ׿àÜçàÝçàÝåàÝäßÜäÞÛàÛØÞØÕÚÔÐÕÏÌÎÇÃÅ¿»µ±¬¡¡œ€‚‚S[_'3=+2@EKqpq‹‰‰–””Ÿ£¢¢¤¤£¤¤¤¦¦¦£££   ŠŒ{€{~‰‹Œ’“‘““Œ“‰Œ‡‹‡‹ˆŒ‘‡‹’ƒˆŽƒˆƒ‰‰Ž‡‹€†Œ~‡‹}…Š|„‰|…Š|…Šzƒ‡{ƒˆzƒ‡y‚†y‚†y‡u}„rzqy€x…x€„qx~ajpkrxtz~.59SUYy|nswELQ JNRHORcim€„ˆ‡Œ‘rx}gmr}…Š’‹“’•’–Œ‘•Œ‘”•˜”—œ“˜›—›Ÿ˜œ •˜œ–™™œ šœ  ¢šžŸ›Ÿ Ÿ¢£ž¢£ ¢ ¤¥žŸ  ¢£¦¨©£¥¦¤§¨¤¦§¨©ªªª¬©¨ª¦¥¦ªª¬§¦¨¨©ª›žQVW³¸¸­¯°‹‹uuvž±±²µ´µ±±±€ƒƒ…¡¡¢µ¶·²´µ·ººˆ‰‰|}}¢£¡æáÞçáÞçâÞèãáèãâçãâçãâèäãèäãèäãéåäêåãèåäéåãéäâéäáéäáéäáéäâéäáéäàèãàçáÜâÜ×áÛÖãÝØçáÝçáÞçáÞåàÝäÞÛãÝÚàÛÙÝÖÔÚÓÏÔÍÊÊÄ¿¿º¶¯­¨••“rtvCKR *4*3;UW[}{{Œ™–•¢ Ÿ¥£££££¥¥¥¥¤¥£££•–—~ƒuy{|€‡‰Š‹ŽŒŽŽ‘•“‰‘‡‹‡‹†Š‡Œ“ƒ‰ƒ‰Ž‚‰Žˆ†‹~†Œ|…‰}†‹}…Š|„Š|„‹{ƒˆy‚†y…z‚†z‚‡z‚ˆw…w…x€†x†y€…y„ov|dlqfmq!&)&*.jmqƒ…ELQ$&)NRVmtwgmqƒ‡‹ˆ‘u{€kpv‚†Œ””˜“˜›Ž“–’•’—š”˜œ•™–šž–›Ÿ˜›Ÿ–™—šž›ž¢›Ÿ¡œ ¡›Ÿ ž¢£ž¡£ £¥¡£¤Ÿ ž ¢¥§¨¦¨©¥§¨¥§¨¦¨©¦©ª©ª«¤¤¥§¨©©¨ª§¨©]`c”˜™¬¯¯±±±³´´›œ}~¦§§²³²´µµ‘“‚ƒ–•–¬®®µ¶¶º»» ¡¡{||çáÞæáÞçáÞçâßçâàçãáèäãéäãéåäéäãèäãêååéåäéåãêåãéäáèãàèãàèâßèâÞçáÝåàÛâÛÖß×ÒߨÓäÞØèàÝæàÝæàÞåàÝäÞÛáÜÛßÚØÜÖÕØÑÎÑËÈÇÁ¾¹´±§¤¢‹‹‹bfi3&.5-6=OTY…‰‹‚ˆŒmrvlqu„ˆ‹‡‹ty|mru…‰‹‘•˜“—›•š‘–™•™œ—šž˜›Ÿ™œ —šž–šž›ž¢™ ˜œ›žŸŸ¡¢œ ¡¡¢ ¡ ¡¢   z||wyz–˜™¥¦§¢¥¥¤§§¦¨©¦§¨§§¨©©«¨©ª¦¨©›ž«­®¯¯±°°°²²³³²´±±³ª¬­’”—ƒ„…’“”¶¶¶¸·¸´´¶‘ˆˆ‰”””»¹¹ºººæÝÚäÝÚåÝÚåÞÚåÞÛäÞÜäÞÛåÞÛåÞÛäÞÛäÞÛãÝÚãÝÚãÜÚãÜÚâÛØãÜÙäÝÚäÞÚäÝÙâÛ×ÞÖÒÚÐÌÞÔÐâÙÕçáÜçàÝçáÞèàÝåßÛâÝÚàÛÙÞ×ÖÙÔÓÔÏÍËÆÃ¾¹·¯ª¨”“’nrr@HO +3.5=\[_€}}‘œ˜˜¡ŸŸ¥££¦¥¥¦¦¦¤¤¤¤£¤••–{~ptu|€†ˆ‰‚„…|€ƒ„†‰ŒŠ‘†Š…Š…Š„ŠŽ‚ˆŒ‡Œ‡‡‹€†‹ˆŽ~…‹€ˆ}†‹~†‹}†Š{…‰|…Š{„‰{ƒˆy‡x€‡x€‡x€‡w†zˆy‡{ƒˆ~…Œ|„‹]gm!%  GJNwz|#( 2:@7=BZ`eouyƒˆ‹ƒ‡‹nsxlqvƒ‡‹Œ“y‚kqt‡‹“–›–™“—š”—›—šž™œ —šž–™š¡œž¢š¡™Ÿ›  Ÿ££Ÿ£¤ž¡¢¡¢£¡¢£fghTVZ|y{ŒŽœ™›¢Ÿ¡¤££¨¨¨§§§¥¥¥¥¤¥ Ÿ¡‡‰Šortptu|~ƒ…‡~‚„|€y}~vz|w{}z}€ƒ‡„ˆ„ˆ‡Œ‡Œ€†‹…‹|„‹dovDR[ $?GJhps:@Dlpt¥¥§™—𢢢¬¬¬­­®°°±®­®ª«ª­­­¯¯¯°°°±±±²²²´´µ²±³³²´µ´¶²±³³²´´´¶»º¼¼»½¯²³—™šÔÉÂÝÒÍÔÉĸ´Æ¼·×ÍÉàÙÖàÚ×àÛØâÛØáÚ×âÛØâÛØãÛØâÙÖâÚ×âÚ×ãÜÙãÜÙß×ÓÝÔÐà×ÓåÝÚçáÞæàÝåßÜäßÜäÝÚáÜÙÞÙ×Ü×Ö×ÑÐÐÉÆÄ¿¼·³±¥¢¢ƒ„†Z_g.9A%/8IMUtrtЇˆ˜•—¡ž ¥¤¤§¦¦§§§¦¦¦¤£¤£££““”w{}kpsrtxƒ„‡‚„‡€‚†‚„‡tx{ptwuyzzy~‚~‚…‚†Š…‰~ƒˆ~ƒ‰|ƒŠ}„‹q{‚K[b,9E".99BNot{~„‰}…‰{„‡zƒˆ|„Šz‚‰{ƒŠ{ƒŠ~†€‡ˆŽ}†Œ|ƒŠ|…‹{ƒˆ{‚ˆ{‚ˆ|ƒˆ€†‹€‡Œ„Œ‘†Œ‘‚ˆjry EIM^afnpr\``)+.ux{“—˜’—˜tz~swz„†‡ +.0†ŠŒš –™œšœ œŸ¢—šž˜›ŸšœŸœž¢ž¢¢¤¦©«¬¥§ª¥¨«¦«®¡¨¬¥¬°ž¤§cik’??B#%)Z\^žžŸ²±²¯¯°¯®°®®®­­®¯¯¯²²²­­®¯¯¯³³³°°±·¶¸²±³±°²¶µ¸¶´·¶¶·»º»·¸¹º»½ÔÈÀÔÊ÷±¿¶²Í¾ÜÑÎàØÕáÚ×áÚ×áÚ×àÙÖáÚ×âÛØãÛØãÛØãÜÙãÜÙåÞÛãÜÙßÖÓÞÖÒáÙÖæàÝçáÝæàÝæàÝåßÜãÝÚàÚ×ÝØÕÚÕÔÔÏÍÍÈÆÂ½½²®­˜——swzGPX'29/7?[\b}y{‘Œ›—˜¢  ¥££¦¤¥§§§¥¥¥£££¡ ¡ŒŒptwkptwx|ƒƒ…‚„…€‚ƒ~‚swxlpqsvxx|w{x|€…ˆ‚ˆŒ…Š~„‰~†Œ|„‹s}„Qah!3<$.>JUnrytx}rx}x~ƒz†x€†x€‡{ƒŠ{ƒŠ}†}‡Ž|†|„‹{„Š}†Œ~†~†|„‹{‚ˆ}ƒˆ‰…Œ„Œ‡Šw}€%)257…ˆ‰sww<@BCFGkos…‡ˆ“–—’–™w{.15lqttxzy}—›œ›žŸž ¡œž¡˜›Ÿœž  ¡ž ¡£¥¦§¨ª¥¦©¢¤§¨ª«£¦§›žŸ`dejno¡£¤367“˜˜´¸¸]]`ªª«¡ ¡¡¡¡¬¬®±±³°¯°¯¯°¯¯¯±±±²²²µµµ¹¸ºµ´¶±°²´³µ¶µ·¹¸¹¼¼½·¶¸º¸ºÀ°©Å¹²½±«Æ¸³ÖÉÅßÖÓáØ×àÙ×âÛØâÛØãÜÙãÜÙâÛØãÜÙãÜÙãÜÙãÜÙãÜÙâÜÙáÚ×âÚÖäÝÚæáÞæáÞåáÞåáÞäÞÛâÝÚßÚ×ÝØÕØÓÒÒÍËÈü¶·ª¥¦ŒŒcjo7CK(2:@ELmkn…‚ƒ•’žš›¤¢¢§¦¦§§§¦¥¦¥¤¦¤£¥œ›ƒ…ipshmpz|~ƒ„…|~uxyrtuqtuhmmqtvx|y~w||€„…‰€†‹|‚‡~„‹†Œx€†ny~[jrSbjbmrkqvGNV7?I`dkw|‚{ˆy‡{ƒŠ~†~‡Ž}†}…Œ~†€ˆ€ˆ~†~†}†Œ|„ˆ~†Šˆ‚ˆ„ŠŽu{~EKNJW^fcipv|z‚†}…Œ€ˆŽˆ~†{ƒ‰}…Œ|„‹‡‰‘‚Š‘‡~†‹€‡ŒˆŒ‚ŠŽ…‘[hk MTW‚ƒptu07:PVYrvy†ˆ‰—™š”•nsw}€„`ehT[]˜›œšž|‚z}“–– ¢££¥¦¥§¨¨ª«¦¨©¥§©¥§©ª¬®«¬°­®²­®²©«­¨ª«¨©«ª«­§©ª”˜¤§«¬­¯³µ·«­°°°²®°±°¯±¯¯¯°°¯°°°±±±´´µ³²³³²´µµ¶´³µµ´¶¸·¹¸·¹¶µ·¹¸ºÖËÅßÖÒáÙÖâÛ×âÜØáÛØáÚÖáÚÕáÚ×áÛ×âÜØãÛØäÝÚåÞÜåàÝçàÞçáßæâàæâßçáÞçáÞæáÞæáÞæáÞæàÝäßÜâÝÙàÛØÜ×ÕØÒÏÒËÈÈÂÁ»¶µ¨¥¤‰Š‰_eh6?H(2;@GMlkk…~—’‘ ›œ¤Ÿ ¨¤¥§¥¥¨¥¥¥££žžŸ‘’w|~jpsmrt}€‡‰Š‚„…mrsDORCKNMRUX\_fimw{€x|w{€tx}ty~|„}ƒˆ}ƒˆ{‚†z€…|ƒˆy‚†|ƒŠx€‡Yfo*=JMV_kqwflttz|†~…~†~‡Œ~†Œ}…Œ€ˆ~†~†Ž‡Ž‚‰‘ˆŽ€ˆ‚‰Œƒ‰ƒ‰Ž‚‡‹O\a'-\bfŽz~;DJ kmp„ˆqsw†‡‰™›œlptJLOŸ ¢bhkMTX‹›Ÿ›ž „ˆ‹z}~‘”•£¥¦©ª«ª«¬¥§¨¨ª«¨ª««¬¯«¬¯­¯²¬®°ª«¬ª¬­©ª¬¨§©­¬®¯°±®¯°°±²¬­¯ª«­««­±±²°¯±±°±¯¯¯¯®¯±±±´´´·¶·¶¶·µ´µ·¶¸¸·¹º¹»»º¼º¹º¶µ·áÛ×âÜØâÜØäÝÚãÝÚãÝÙäÝÙäÞÙäÝÚåÞÛåßÜåßÜæàÝçáÞçâßèãâèãâèãáçâßçâßçáÞçáÞæáÞåàÝåßÜãÞÛàÛØÞÙÖÛÖÓÖÐÎÏÉÆÅ¿¿´°±œz~NWZ-7>*3LR#'bgl…ˆŒjrw/:A!)/qtw“•—€‚…suyƒ„‡89= dfl‡ˆ‹koq‡ŠŒ}€ƒ…‡Šž ¡¢¦§‘’z~€‰ŒŽ¤¥§§§©¦¨©¨ª«ª¬®«­°¬®°«¬¯ª«­©ª«¨©ª¬­®««­¬¬­ª«¬­¯°°²³®°±¯°±ª©«¯®°¯¯°´´´±±±°°°±±±´´´·¶¸··¸¶¶¶¹¸ºº¹»¶µ·¸·¹½¼½·¶·äßÜåàÝæàÝæàÝæàÞæàÝæáÝçáÝçàÝçàÝçâßæáÞçâßçâßèãáèãâèãáçâàèãàçâßçáÞæáÞæáÞäßÜãÞÚâÝÚàÛÙÝØÕØÓÑÓÎÌÌÇÅÁ¼¼°¬­’““kqr?JN(288?Fccgƒ‚“Ž˜™¥ ¡§££§¤¥¨¥¦¤£¤£¤£œœŽˆŒŒ†‰Š‰ŒŠŠŒŽ’}ƒlsv]bhEMT08@TX^vz~w|€tx~uy~sx}qw}|€†z€…{‚†{†y‡yˆyˆ{ƒŠnx€Q^h\enuz€_em.8AEMTrw}€‡Ž}…ЇŽ~†€ˆ€ˆ‡Ž€ˆŽˆ‰ˆŽƒ‰Ž†Œ‘†Œ‘‚‰v‚KX\T`e‚†‰Œ’Œ“…ŠYfmZdksw|ŒŽ”—˜†ŠZ]a 39:~‚„\`cjmo““•wz|{~ƒ†›Ÿ¡¥¦”˜š}€„†ˆ‹§§¨¦¨©¨ª¬«¬®¬®±®¯²¬®°ª¬­ª¬­ª«¬®¯°°°²®°±­®¯¬«­®®°°²³³´µ°¯±¯®°±°±²²²±°±³³´´´µ¯¯¯³²³µµµµµµºº»ºº»µ´µ¹¸º»º¼¹¸¹æáÞçâßçáÞçáÞçâßèãàçâßçáÞèáÞèáÞçâßçáÞèâßçáÞæàÝæßÝæàÞæáÞçáÞèâßçáÞçáÞåàÝäßÜãÞÛáÜÚßÚÙÜ×ÕØÓÒÒÍÊÈûµµ¦¢£††‡\be4?D)3:GKQpnpІˆ—’”¢ž¥¢¢¦£¤ª§¨§¥§¥¤¦£¢£™™šŠ‡ŠŒŠŒŽ‹‘‹Ž‘Бޒ•€…ˆltxAIQ )2'0@DKorww{€vzsw|tx}puzv{€|†{†z‚‡y†yˆyˆzˆs|ƒblv]gqkryU^e%1:7BJbgm~‚‰€†Œ‡Ž‡Ž‚Š‘€ˆ€ˆ‰„Œ’ƒ‹‘„Š‘„Ї’†’„‹Šlwz{†Š‘Œ’•Ž“—Š“ƒ‰Ž†Œ‘|‡vy~‹—š›ADEv{|’–•SYZfklhlnX\_’”–€‚†{~˜šœ¤¦¨Ÿ¡„ˆŠ~‚ƒ£¤¥©ª¬©«¬«®¯­¯°­®¯«¬­¬­®­­®­­®¯¯±¯¯±²±³®­¯«ª¬¬®¯µµ·±°²¯®±²±³²²²°°°³³´³³³°°°³³³´´´³³³»¼»»»»ºº»º¹º¸·¹·¶·æáÞæáÞæáÞçáÞæáÞçâÞæàÞçáÞçáÞæàÝåàÝåßÜæßÜåÞÛäÝÚäÝÚäÞÚåàÝåàÝçâßçâßçáÞæáÞåàÝäßÝàÛÚßÚÙÝØÖÕÐÎÎÉÇÄ¿¾²­«›—–xyyKRU+7=/8>UVZzvwމ‹›–— ž¥££ª§¨§¥¦¦¥§¥¤¥ Ÿ¡‘“ƒ„‡ƒƒ‡ˆŠŒˆ‰‹‘”Ž“–‡Œlux8HQ "#47?^`esuyx{€sv{rv{rv{qw|z€…{‚‡z‡y†yˆ{ˆ{‚Šz‰rz‚VcmGV_FS\6DM4BJGPYuxƒ‡€‡ˆ‰‰‰Š‘‚‹’„Œ“…”†”‰–ˆ’‡Ž“…Œ„‹‡Œ‘‡Œ‹”’•Ž“–•™‘•šŽ’—~ƒˆw|…ˆ‰ w{|ƒ‡‰^fg†‹‹lstrw{Ÿ¢¤Ÿ£‚„‰z}€•—š§©ª¢£¦ˆ‹z}šœ­®¯¬®¯ª«­­­¯°¯±®®¯¬«­««­­­¯¯®°²±³®¯°±±²®¯±±°±««¬¯®°²±³´´µ³³´¯¯°³³´¶¶¶¶¶¶¸¸¸¶¶¶¸¸¸¸¸¸¼¼¼¹¸¹¹¹º¸·¹æáÞåáÞåàÝåÞÜäÝÚäÝÙäÛØãÝÙãÝÙãÜØãÝÚãÝÚäÞÛäÝÚãÝÛäÞÜåÞÜæßÜæàÝæâßçáÞæáÞåàÝäßÝãÞÝáÜÛÜ×ÖÙÔÓÔÏÎÌÆÆ¿¹¹®©¦‘ŽŒill=FJ*6<=DJedg„•’žšœ¤¡¢¦¥§ª¨©§¦§¥¤¦¢¡£œ›‰Š‹{~|~†‡ŠŠŒŽ“Ž‘•’•‹’xƒQ`g,H9@JW[aptyx~„|‚‡z‚‡x€‡z€‡|„‹{ƒŠz‚‰|ƒ‹z‰v~…eowAKT#)1#[ai‚†‚ˆŒ„Š…Œ’†Œ’ˆŽ”‰”‡”†Œ“‡”‡•Š•Œ‘—ŠŽ’‘–Œ’•Œ‘”‹“Œ“Ž‘•’•˜”—›”—š—›ž˜ ‡jptS]aŒ‘’–™š…ˆwz–˜œ¢£¥ž¡£‚…ƒ…‰ž ¡¦¨©¤§§…‡ˆ¦¦§¨©©§ª«Ž‘’€‚ ¢£°°²®®±¯¯³¯®±±°³±°²¬«­«ª¬ª©«¯®°³²µ±°³³²µµ´¶³²´´³µ··¸¶µ··¶¸³³³¶µ¶¸¸¸¸¸¸······»»»¼»¼äÞÛæáÞæßÜæàÝæàÝåßÝæáÞçâßçâßéäáéäáèãâéäâèãâçâáçâàæáßçâßèãàçâßæáßåàÞäßÝâÝÜàÛÚÜ×Ö×ÏÏÒÊÊÈÂÀ¹µ´¢ŸŸ€‚‚U\^0<@1:ASU[utwŠŒ™–˜¡ž §¤¦©§¨§¦¨¦¥§¦¥§¡ ¡ŒŽptueklnrs„ˆŒ””Ž”Œ”‰’ˆŒ‘†Š…‰Ž|€…ty|rvzquzKQY&0,3=cek]`g(1!(0X\afjoqw|z€…z‚†zˆ{ˆ{‚‰}„‹~†~†}…Œ}…Œv~…Vai'2%/MPZeho|……‰Ž†ŠˆŒ‘ˆŽ“ˆ’‰Ž“ˆŽ”‡“‰”‰•ŠŽ”‘–“˜Ž’—Œ–Œ•”“—’–™•™›–šœ—š˜œž™ž¡Œ“”jrt†Š‹›œžŸ‰y|“”—¤£¤¡¢£†ˆ‹~‚ ¢£ª««©¨¨Žyzy¡  «««­®¯”–˜{€™›œ­®¯¯¯±°¯±°¯²­¬®­¬®­¬®«ª¬²±³®­¯±°³µ´·¶µ¶¶µ·¶µ·²±³´³µ¹¸º¹¸º¸·¹»¹¼¶µ·µ´µ¼¼¼¼»¼¹¹¹æáÞåàÝåàÝåàÝåáÞæáÞçâßçâßçâßèãàèãàéäâèãáèãáçâàæááçâáèãàçâßæáÞæáÞäßÞäÝÝáÜÛÞÙØÚÔÒ×ÏÏÏÇÇý¼³¯®™—˜suwHOS+6;7>Da`f€}“’ž›ž£ ¡§¤¦ª§¨©§©¥¥¦£¢¤™™™{~~djjdijrvy…ˆŒ‹Ž’Ž‘–•‹”ŠŽ“ˆŒ‘†Œ‘ƒ‰Ž†Šx}qvygmr=FN**1;RU[OSZ$,!)2]afkotptyw|x„|‚ˆ{ˆ{‰}„‹|„Œ{ƒ‹z‚‰}…Œ|…Œis|,9(317?!'1_ah…І‹‰’ŠŽ“‰”ˆŽ“‰Ž“ŠŽ•‹‘—Ž”›’™’š”™“–›‘”™’—‘”˜“–š“–‘”—–š›–™œšž¡ £™ž‘•–w|}‚…†›žŸ¡¤¥’–z|€ŽŸ¡¡¥§¨Š}€ƒ…ƒ…d\Z–‹‰š––ttu—–—°°°¬¯¯›ž |’“•­­¯°°³°°±°¯±®­¯°¯°±°±®­¯°¯±²²³µ³¶´³µ¶µ¶¶¶¶´´´µµµ¶¶¶··¸¶µ¶¶¶··¶·¶µ¶½½½¼»¼º¹ºåàÝåßÜæàÝåàÜåáÝçâßèãàçâßçâßçâßçâßèãàçâßæáÞæáÞçâáçâàçâàæáÞæáÞæàÝäÞÛâÝÙáÜÚÞÙØÙÓÐÔÍÍÉÁÁ½¶¶ª¥¦Š‰‰cgj=CJ-34>G#-?FO_dj„ˆŒŠŽ“ˆ’ˆ’ˆŽ“Š–Œ‘˜‰–“˜‘—”™“˜“˜‘•š‘•š’–“—‘”—“•™’•˜–™—šž™œ ˜››žŸ’–—y~€„†œž¨ª«—šœy|‰ŠŒ   ¦¦¦™›ž;>@ yml¤¢¡~€‘‘©©ª¯²³¦©­ƒ†Š‰ŠŒ¤¤§¯®±°¯±±±³³²´³²´®­¯¬«­²±³³²µ¶µ·¶µ·¶µ·¶¶····µµµ´´´»»»¹¸¸¸¸¸»º»µµ¶···¹¸¹åàÝåàÝæáÞæàÝæàÝæáÞçâßçâßçâßçâßèãßçâàçâßæááçâáçâáçâàçâßæáÞæàÞæàÞãßÜâÝÚßÚÙÛÖÕÙÓÒÑËÊÇ¿¿¸³³¡ž||~QX\19B27@VU[yuzŠœ—™£Ÿ¡¨¤¥©¥§©¦§©§©¥¤¤™˜š~‚iopfkltxy„‡‰‰Ž‘•’—Œ”‹”ˆŒ‘†‹‡Œ’…‹…Š€†‹pvzCMU + (2ILVINY%0'2LQY_elqu{puzjputy~z€…z€‡{‚‰|ƒ‹}…Œ|ƒ‹|„‹~†}…Œqz‚ 4A.@MDQ[0:D"+5-4SYaHOY$1'/=`cllrykpwty~ntymrxv|‚{ˆ|‚‰|ƒŠ|„‹}„~…Ž}„Œ~†Žx€‡RcnSbmalt=IR",09Ay|ƒ‰Ž’‰”‹‘—ЖЕДЕ‹‘—Ž“˜’–œ”š’–›’—›•˜–˜”—›’–š“–š”—›™œ ˜›Ÿ›¡›Ÿ¡œžŸŸ  ¡šžŸˆ„…”•–¥¦§¢¤¥†ˆŠ‰‰Šž›šŸ ¡'.1PLM´²³°¯°’”–ƒ‡ž ²±´³³µ–—š€ƒ••—«ª¬¸·¹´³µ¯®°´³¶³²´³²´¹¸º¶µ·¸·¹¸·¹··¸¹¹º¸¸¸¹¹¹¶¶¶···ººº»»»º¹ººººçâßèãáæáßæáÞçâßçâßæáßçâßæáßæáÞæáÞèâßèãáæáßæáÞçâßçâßæáßåàÝåàÝäßÜâÜÙàÛÙÝØ××ÒÑÑÌËÊÅÄ»¶µ§¤¡……†^dg6@H0:CKOWrotŒ‡‰™”–¢Ÿ§£¥©¦¨©¦¨¨¦¨§¦¨ŸžŸ‡‰Štxyptuy|}†ˆ‰‰‹ŒŒŽŽ•Ž‘–Œ•Š’†Š‡‹„‰Ž‚ˆƒˆŒ…Šw~ƒP\d%5A9DO]dlIQ\"0>+6Eafouz€lrwpuzsy~msxouzx~„{‡|ƒ‰}„Œ{ƒ‹}„Œ}„‹€‡‡Žy‚ˆw…v…Q]e$-EOY‚…Œˆ’Š•‹‘–‹‘—‰Ž”†Œ‘‡Œ‘‡‹‹”Ž“™‘–›’–›‘–š•™ž—›Ÿ—šž–š•˜œ•˜œ˜›ž•˜œšœ ™œšœžž¡ž¡¢¡¤¥¡¥§Œ‘{€’“¦¨ª¦¨ªŠŒŽƒ˜™™{„‡#&ž›ž±®¯³±²˜™š††Š——𬬮±±³¢£¥…†‰Š‹Œ¬«­´²´¯¯±´´·µ´¶¹¸º¹¸º¶µ··¶¸¸·¸¸·¹¸¸¹»»½»»»»»»ººº···»ºº»»»»»»çâßçâßæáÞçâßçâßæáÞæáÞçâßèãàçâàæáÞçãàèãâçâàçâßæáÞæáÞæáßåàÞäßÜãÞÛáÜÚßÚÙÜ×ÖÖÒÐÐËÊÅÀÀ´°¯žšwzyNVZ0:D6>HYZa}y{‹œ—𤠣¨¥§ª§©©§©©§©¦¥§ššœƒ…vy|y|}ƒ„†ˆ‰†ˆ‰ŠŒŽ‰‹…ˆŒˆŒ‰’‡‹†‹ƒ‡Œ‚ˆŒƒ‰Ž‚ˆŒz†`ksFS]NXbgmvW`k=JWJT``goou{qv{mrwrw|ouzlqvqw|z€…}ƒˆ|ƒ‰{ƒŠ}„‹~…Œ‡Ž€†€ˆŽ€‰‚‹pz€GW^[fn„‰Ž‡’‰”ЕЕЖ‰”†‹†ŠŠŽ’‹”‘•š’–›”˜›™ž¡—œŸ–š˜œ ˜›Ÿ–™—šž—›Ÿ› ™›œš›œœŸŸ  ¢££¦§ ¤¥Ž“”€……Ž‘’¤¦§©«¬“”€“•—€‡Š@EE168†‡‰’‘“¬ªªµ³´¦¥¨ˆ‰ŽŒ¤£¥³²³®¯±Ž‹ŠŒ™—™³±³··¹´³¶·¶¸¹¸º¸·¹¸·¹¹¸º¹¸º¸¸¹»º¼¼»¼½½¾¼¼¾¶¶¶¹¸¸¹¹¹ºººæáÞæáÞçâßçâßçâàçâàçâàçâßçâÞèãáçâßçâàèãàçâßçâßæáßæáÞåàÞäßÝäßÜâÝÚàÜÚÞÚÙÚ×ÖÕÐÏÌÇÆÁ¼½¯¬¬imn@IO.8A?DLgei†‚•‘ž™¤¡£¨¦¨ª¦¨¨§ª§¥§¤£¥’“•€‚…z}€‚……‡ˆƒ‡ˆ„†ˆƒ„‡wz~mpuy{€†Š‡Œ‘…‹ƒ‡Œƒˆƒ‰‡Œ|ƒˆq{cnvclums|hpy\fp_go`gndjprw|quzdjofkojpulrwu{€|‚†|ƒ‰|ƒŠ|„‹~†€ˆ†ŽŠŠŽ„‹‚ˆŽy‡|ƒˆ†Œ’ˆŽ“‡’‰”‡’Š‘–‹’—‰Ž“ˆŒ‘‰’‹”‘•™”˜•šž™¡—›Ÿ–šž™¢š¢™œ¡—›Ÿ˜›ŸšœŸšŸ›œœžŸ ¡¢¡¢¤££¥£¥¦¤§¨™œ…ˆ‰ˆŠŒŸ¡¢«­­˜š›‚……ŒŽŽtz|x‚¢¤¤Š‹Œ‹£¢£µ´¶©ª­“…‡Šœ±°²´¶·ž¡Š‰‘‘”°¯²¹¸º¶µ¸·¶¹·¶¸¹·¹¸·¹¹¸ºº¹»º¹»¼¼¼ºº»»º»¸¸·¼¼¼½¼¼¸¸¸çâßæáÞæáÞçãàçãàçâàçâßæáßçâàèãâèãàèãáæáßæáÞæáàçâàçâàåàÝäßÜäßÝâÝÛàÛÚܨרÔÓÑÍÌÇÂÁ»¶·¤¢¢‚Z`a6BF2:APRXuruˆ‰™•–¢Ÿ¡¦¤¦¨¦¨©§©§¦©¥¤¦ Ÿ¡ŽŽ„†Š‚„‡…†ˆ‡‰‹„†ƒ†‰|}ejpMU^_dk~†…ІŒ‘…‰‚ˆŒ‡Œ…Š~†Š|„‰t}„nwmu~oviqzT\eJPWTZainslpuIPSGMQdknlrwmsxx}‚~…‹}„‹}…Œ‡€ˆ€‰Ž‚‹‚Š„‘ƒ‹„ЄЇ“†Œ’†Œ‘‰”ˆŽ“Š–Š•‹‘–‘—‹”‘–’—š•š•šž—›Ÿ˜› ˜œ¡›Ÿ¤ ¥œŸ¤š¢™œ ˜›žœž¡Ÿ œž  ¢¡ ¢¢¢¤£¤¦¤¦§§ª«ž¡¢‰‹Žƒ…†ŸŸ §©©œžž€‚„>DGˆŒŽ¥¦¦ˆ‰‰{|~ˆ‰Šœž°¯±«¬®˜›œƒ…†‘‘“²³´µ¶·ªª­‘‘•‰ˆŒ¤¢¤¼¹¼¸·¹º·¹¹¶¸¸¶¸»º¼¼»½¼»½¹¸¹¹¸¹¼»½¹¸ºÀÀÀ½¼½»»»æáÞæáÞæáÞæáÞçâàçâàçâÞçâßèãâçâáçâàçâáæáàæáàçâáçâáæáàåàßåàßäßÞâÝÜßÚÚÛÕÖ×ÒÑÏÉÈÅÀ¿³¯¯˜——qttJRS1<@:BFbae€{}‹Œœ˜™¤¡¢¦¤¦¨§¨§¦¨¨§©§¦¨Ÿž ‘‡Š…ˆ‰…‡ˆ‡‹Œƒ†„xz}Zah9GRNV`wz‚ˆ†Œ‘ƒ‰€‡Œ€†‹…Š}„‰}…Š{ƒ‰t|ƒmu}nu}lsyFOX"+3=DK`ch_cg4;@%*QW\puzmrwouyz€†}ƒ‰}…Œ€ˆŽ‡€‰Œ‰Ž„ŠƒŠ„‹…‹‘…‹’‰”ˆŽ“‡’‡’‰”Š–‹‘˜“™•š“˜“˜’–™”˜œ—šž—›ž—œŸ˜œ ›ž£ž¡¦ ¥š¢˜› ˜›Ÿž¡£ ¢£ŸŸ Ÿž¡¡ ¢¢¤¥¥§¨¤¦§¥¦©§©­¤¦ª‘“–…ˆ‰•—˜««¬‚ƒ…_dfz€‚ŒmprfilŸ †ˆŠ‘“««¬²³³¤¦§Ž‘…‡Šªª«¶¶·¯¯±žž¡‰‰‹“‘•º¸¹¿¼¾¹¶¸¸¶¸º¹»º¹»¼»½º¸º¼»½¾½¿½¼¾ÂÂý½½¼»½æáàæáÞçâÞæáÞæáÞçâáèâáçâàçâàçâàçâàçâàçâáçâáçâáæáàåßßåàßåàÞâÝÜàÛÚÞØØÛÕÕÓÌÌÌÄÅ¿¹¸¬©©ŽdhhcfjSW[$+ B3>BUYZzxxŠ‹›—˜¢  ¥£¤ª¨©«¨©¨§¨¦¦§££¤››œ’“•”‡ŠŽ„ˆŠwz|gln[`e]afbfkjoslquz~‚~ƒˆ‚ˆ‚ˆ€†…Œ{ƒ‹{ƒŠ}…‹|„Š|„Šw†ktzT]e4@H")2:^bf@HM6=Djnuuzpv{msyx~ƒ}„ІŒ‡€‰„Œ’…‹‘„ІŒ‘‡”‡“…‹‘†Œ‘†Œ‘ˆ’‹”ŠŽ““™Ž”šŒ‘˜“˜“—œ”˜œ“˜›˜œ ™œ —›Ÿšž¢šž£™ž¢œŸ£œŸ£ ¥¢¥©Ÿ £osudeh„ƒ†¢¡¤¤£¥¤£¥¤¦§©«­ª«°¦¨ª¦¨©¥§© ¢¦hkpY]b¥§§«®­¤¦¨‰‹„…ˆ£¢£®­®§¨ª“–™€‚†¤¤¤µ¶´´´´¤¥¦ˆ‰‹‘¶µµ·¶·³µ¶ž ¢†ˆ‹ž ½»½¼º¼º¸»»º¼¼»½º¹»½¼¾¿¾À½½¾¹¸ºº¹»æáßæáÞæáßåàÝåàÝåàÝæáÞæàßæáàæáàæáàçâáæáàæáàæáßæáàåàßåàßäßÝâÝÛßÚÚÜÖÖØÐÏÏÈÇþ½³®®—–—ortHPT0:?;DFbdd„€”šš¤¡¢¨¥¦¨¦¨©§§¦¦§¦¦¦¤¤¤™™š“‡ŠŽ‚†ˆrwx\acJPTRV\dhmlptvy}zƒ‚‡Œƒ‰Ž‚‰}†‹}„‹|„‹|„‹|„‹{ƒŠ|„‹|„‹px€CQZ(0(/6@HFOV(2:")MT]jqxqw|tzpw|ntzz„‡Œ~‡‹€ˆ†Œ“ƒ‰Ž…‹‡’‡’ˆŽ•ˆ“‡Œ‘‡‘Š“Œ‘–Œ‘–‰’ˆ’ˆ’Ž’—”™”™•˜›–™—› š¢œ ¤šž£˜œ šž¡ ¤ £¨¥¨¬‘”˜dim‰Œxz{}} Ÿ¡¢£¥¡¢¥£¥¦§§ª¤¦¨¤¦¨¥¦© ¢¦mqt|‚€ƒ„¡£¢°°±««­”•—‡ˆ‰œœ¯¯¯®°±Ÿ¢¥‚…”••µ¶´µµµ®¯°“”•€€‚«ªª¼¼½¶·¸«¬®ŒŽ–•–µ²²»º¼¾»½¿¼¾¾½¿»º¼º¹»¹·¹¸·¹¹¸¹æáßæáßæáÝåàÝåàÝåàÞæáàæáàçâáçâàçâàçâàæáàæááæáàåàÞäßÞäÞÞãÝÛáÛÙÞÙØÙÓÒÕÍËËÅü··©¦¦ˆ‰Šbfj`hpu{‚nv|qx}w}‚nuzqw||‡~…Š‚ˆ‚ˆ‡‹ƒ‰Ž†Œ‘‰Ž“‰Ž“‹•‹”ŠŽ“ˆ’Š”‹‘•Š”…Š„‰‰Ž‘”˜’—š•˜—› —› š¢ ¥¡¥›Ÿ¢ž¡¥Ÿ¢¦ £§¥¦ªx}‚OU\‰Š™™›hikedg››£¤¦¥¤¦§§©¦¨©¥§¨¥§©Ž’vz|¥¦§—™š‚ƒ™š›¯®¯­®¯Ÿ „†‡’’“¬«­µ¶·¨«¬ŠŒ‰ŠŠ¯¯°´´´³³´¢¤¥†‡ˆš™›ºº»»º»º¸ºš™›†„„¯­®¾»½¿»½½¼¾¼»½»º¼·¶·¸·¸¹·¸åßÝåßÜçààæßßåàÞåàßæáàæáàçáßæàßåßÞæáàèãáçâàæáßåàÞäßÜãÞÛâÜÚßÚØÛÖÕ×ÒÑÐÉÇÆÁ¾¸´µ¡  z||RX[7@G=DK[\a{yz‹‹œ˜™¢Ÿ ¦£¥¨¦¨©¦¨©¦¨¥¤¥££¤¡ ¡žŸ—™šŒ‘…‰Œ|€lpqU\^HOS\_cbeidgkqtx}…†‹„Š‚ˆ‡Œ}…Œ}…Œ~†|„‹|ƒŠ{‚‰|‚‰rz:IT&-;DahlMW]  AJSlryv|ƒu|‚nt{u{w}‚krxpv|~…‰ƒŠŽ†Œ„Ї“‡Œ“‰’‰Ž“‹”Œ‘•‹”Œ‘–Š•Œ‘”Œ‘•ŠŽ’‹””˜‘–™–šž–™ž—šŸ™œ¡™œ¡œŸ£›ž£›Ÿ¤ ¥ ¤Ÿ¢¦–˜œgmr‚†‰x{~suxkmpknpz|}™™›§§¨¥¥¦§§©¨¨ª§§©ptwŒ‘ªª«ª­®¤¨©‰‹ŒŽ¥¥¥°°±ª«¬‡ˆ‰‹‹Œ¨©«¯°°±³³š››}}}¤¢¢³²³·¶¸®¯±‹ŒŽŒŽ³±²½¹»½»½®¬¬€€œ›»º»¾¼½º¸º¼º¼¾¼½»¸º¹¸¸æáÞæàÞæààåàÞåàÝåàÝåßÞæÞÝãÜÙáÙÖâÛØåÞÛæáÞæàÞæàÝäßÝäßÝãÜÜâÚÚߨÖÚÓÐÔÎËËÆÃ½¼¯¬­‘‘‘looFNS1;BDKRihmƒ‚”’’ žž¤¡¢¦¤¦ª¨ªª¨ª¨§©¦¥§¢¡£ Ÿ¡žŸ“•–‰Œ‚…‡|€kpqRY]EKQUX\Y]aadhlos€„ˆ‚ˆ‡Œ€†‹}ƒˆ|…Š{„‰|„Š|„‹|„‹}…Œ{„ŠrzQ]h$7A9GR_gmckp(7A"-R\dov{pw}v|‚qy~luzw}‚tz€mtzx|„‰ƒˆ‚ˆ†Œ’ˆŒ’ˆŒ‘ˆŒ‘‹”Š“Œ‘–Œ’–’–’–Ž’–‰‘”—“—›”˜œ—›Ÿ˜› ›Ÿ¤™¢›Ÿ¤œŸ¤›ž£Ÿ¥ ¥Ÿ¢¦¡¤¨…ˆKSZŠ‹”—™dglILQš›™‹ŽtvwŽ£¢¤¨¦¨§¦¨“”—vz}¡£¥«¬®¬¬­¯¯°©ª¬‰Œƒ„¥¦¦´³³²²³‘“”ƒžž ³³³³´´¨¨¨’ޝ®®·¶¸·¸¹™š›ƒƒ„¢¡¡º¸¸¿½½¸·¸Ž’……ˆ´²´º·¸½º¼¾»½¼»¼½¼¼åßÜåÞÛåÞÛãÝÙãÜÙãÜÙãÜÚâÜÛàÙ×ÞÖÓß×ÔâÛØåßÝæàßåßÞäßÞãÞÝâÜÙàÚ×Ý×ÕÙÓÑÒÍËÊÅĽ¸·©¥¥ƒ…„\bb;DK/:ALQXvtwŒŠ‰—””¢  ¥£¤¨¥§«¨ª¨§©¦¦¨¤£¥¢¡£ Ÿ¢›œ’“„ˆŠƒ…|€€lqrLTY16=GIO[^b`cggjnz~†‹‡Œ€†Š}„‰|…‰}…Š|„Š}…‹}…‹{ƒŠ{„Šw†gqxT_hWcjckremqMZdAHX\`Z^bfimvy}„‰‡Œ…Š€‡Œ†~†|„‹{ƒŠ|„‹z‚‰{‚‰yˆw~…ryqy€nv{emqgovdnuhnutzt{nu|t{w~ƒow|px}{€…u{~pty{€„†Šˆ‘‡‹ˆŒ‘ˆ’Š–’—“—‹’—Ž”—Ž“–”™•™“—”—’•™“–š—šž™œ œŸ£›ž¢›ž¢ £ž¡¥ž¡¥£¥©‰ŒZae†ˆŒ’”˜dhlEKO“”•‰Š‹]`bU\`ƒ‡‰{yx€{{ žŸ«©¬¬ª¬¬«­­®°®­¯°¯±®­¯®®¯®®¯™œ…‡ˆ””•ª©«°²³¬­®„ƒ…Žª¨¨±¯¯²°°›››‚‚™™š¶µµººº·¶·”””ŒŒ©¥¦¹¶¶Á¾¾¸··’±¯¯¾¼¾ÄÃÅàØÕàÙÖàØÔÞÕÐÜÓÎÛÑÌÛÑÌÛÑÍ×ÎÉ×ÎËÜÔÑâÜÚæâßåàßåàßäßÝâÜÙàÛØÞØÖÚÕÓÕÐÏÍÈÇÁ»¼®©©ŽgmlFOS6@FJNUmkn‡ƒ„•‘’ž›œ¤¡£¦¥¦¦¦§¦¥§¥¤¦¤£¥¢¢¤ž ¢œ¡•–™‹Ž‘„‡‹€ƒ‡{~€joq?GM"*2/4<>AJUY^finsv{{~‚ƒ‡Œ€‡Œ…Œ~…Œ|„‹|„‹}…Œ{ƒŠz‚‰{ƒŠ{„‹{‚‰z‚‰|„‹v~„nv|nv{s{‚ow}nu|v}ƒqzmu{u|w€„ltyvz~|€ƒw{~psx}†ˆ‘‹“Š“‡‘‰’‹”Œ‘”Œ’•Œ‘”“—’—›“˜›Ž“–‘•˜“—š‘•˜–™š¡›Ÿ¢›ž¢›ž¢ ¤Ÿ¢¦ £§ž ¤ty}qx{w{Ž“nrvX\`€€‚š™›hknKQTŽecb% e]]žšœ©¨ª¨§©«ª¬¯®°°¯°®®¯®®®­¬®±°²§§©ŠŠŒŽ§¥§µ´µ³³³““”„„… ŸŸ±¯¯µ´´¬­¬‘‘‘‘¨©©¸¶·º¸¸¡ž‰‡‡ŸœŸ²¯°¹··ÂÁÁ©©«ŠŠŒŸŸ¸¶¸ÝÔÐÜÒÎØÎÉÕÊÃÓÇÀÓÈÁØÍÈÙÏËÙÏËÙÑÎßÖÑãÜÙåàÝåàßäßÞäßÞâÝÜßÚÙÜ×Õ×ÒÐÑÌËÉÄûµ¶¥¢¢‚ƒ„Yac7BG9BHWY]xuw‰Šš•–¡§£¥¦¥¦¦¥¦§¦¨¦¥¦¤£¥¡ ¢ž¡œ¡’”˜‰Œ†‰ƒ†Š~‚„jorHQU,3<',6 *>CK^aeptxwz~~ƒ‡†‹…Š}„‰}…Œ|„Œ}…|„‹{ƒŠz‚‰|„‹~‡|„‹{ƒŠ|…Œs{‚qy€qx~t{nv}ov}w~…r{‚ox~v„gosSVZpos~…rv{qvyƒ‡‹Œ’”‹‘”Š’‰Ž‘ˆ‰Ž‘’•Œ’•”—’—š”™œ’—š”˜”—•˜›—šžœŸ£›Ÿ¢œŸ¤ ¥ž¡¥ ¢¦Ÿ¡£’”pux†ˆ‹“•˜oruOTX„„„YX[[\_€‚ƒ366qmp”’”¨§§¬¬­««¬®­¯¯®°²²²¯®°¯®°µ´¶²±³˜—™‘Ÿž´±±¶¶·Ÿ ¡Œœ››ª©©º¹¹ºººžžŒŽ¢¡¡¶³²¼¹·®®­’ދޥ¢£º¸¸¿¾¿¶¶·–—˜‹‹ÔÉÂÑÅ¿ÐĽÏžÐÅ¿ÑÇÁÕËÇ×ÍÉØÎÊÛÓÏáØÕåÞÛåàÝäßÝäßÞäßÞáÜÛßÚØÛÖÔÖÐÍÏÊÇÅÀ¿µ°°™˜˜twzNW[1=BAIPcbf‚}’Žš›£¡¢¨¦¨§¥§¦¥§§¦¨¥¤¦££¤ŸŸ¡š›ž—˜œ“—ˆ‹ˆ‹…ˆŒ‚†floPW\AFN@EM4:C>EO^bhquyvz~y}‚ƒˆ~„‰~„‹}…{ƒŒ|„Œ}„|„|…Œ|„‹~†Ž~†}…‹~†{ƒŠt|ƒnv}szszltzsz€y€†rzluyMW] 0.1rpt~‚†v{~v{~…ŠŒ‘”‹“Š’ˆŽ‘‹“Ž“–’•Œ‘”•˜“˜›”™œ‘•™‘•—”˜š—›Ÿ› £œž£œŸ¤œŸ¤œ £Ÿ¡¤•—™rwzx|~y}~‡‰ŠnsuTY\€ƒ„bbd'&'„ƒƒžPWXEIM‰‹zwx†…†¦¤¥®­­­¬­«ª¬°¯°¯¯¯°¯±±°²±°²³³µ¤¤¦‹Š™˜š©©ª³²´¯­°˜–˜¡¡¡¸¶¶¹··ª©ª••–”””ª¨§¼»ºº¹¹¡žŸ‘‘˜—˜³²³ÁÁÁÀÀÁ¨©ªË¿·ËÁºÌÂ»ÐÆÀÒÈÃÕÌÇÙÐÌÙÐÌÛÒÎߨÔâÛØæàÝåàÞäßÝãÞÜãÞÝàÚÙÞØ×ÙÔÒÔÎËÌÆÄ¿º¸«§¦‹ŒgkoAKP4?FJQXnkn‰„…—”• žŸ¥£¤§¥¨§¥¨§¦¨¦¥§¤£¥¢¡£žŸššž‘’–‹Ž’†‰‰Œˆ‹|ƒcglOU[PU\_ch^ejZbijourv{w|sx{y}}ˆ}ƒŠ~…Œ|„‹{ƒŠ|„Œ|„Œ}…Œ}…Œ|„Œ}…‹{ƒŠ~†~†yˆs{‚ow~u|ƒu}ƒox}v}‚z…ow{PYjptx~jqvty~€†‹„‰Žv|w|€…ŠŽ“–”—‘•˜•™“—š’–™—›ž˜œŸ™œŸ™ž™žšž¡›ž¢›ž¡œŸ {~€BDH$)7?D~€‚œžŸ ¤©ª®¤¦ª–™›„‡ˆƒ…†osugln€…†bghvtt¦§§€†ˆ8GMmt{£¤¦®­¯°¯±²²³°±±¯¯°²²²³³³´³µµ´¶´´µµ¶µ³³³³´´«¬­‘‘“’‘±®¯»º»¶µ·¥¤¥ŒŠ‹œ˜™µ°±¹µ¶µ±²¥£¤Š‡ˆ™”–À¾¾ÄÂÂÝÖÓÜÕÒÝÖÓÞ×ÔßÙÖàÙÖáÚ×âÛØâÜÙäÞÛåàÝåßÜãÞÛâÜÚàÛÚÞØ×ÚÕÔÕÏÎÎÇÆÃ½¾±¬ª“ŒnqrKQX9AKKOXmlp…ƒƒ•““Ÿšœ¤¡£¦£¥¦¤¦§¦¨¦¥§¤£¥¡ ¢¡ ¢œž•–˜Ž’Ž“‹ŒŽ“Œ“‚‡ŠhptNY`OX_fmqqvyw|sw|vztx|rv{quzptyquzquzv{€|…|‚ˆ|‚ˆ{‡~„‹{ƒˆ|„‹{‚‰~…~…~…އ†~†Ž~†}†t|‚ox}|ƒŠ{ƒŠt|puzlsybjrmsydlsblsnu{w|‚‡Šƒ‰u{~w|†‹ŽŽ’•’–™’•™•˜œ•™œ™žšžŸ˜›™ž™žœŸ¢ž¡¥œŸ£œŸ¢x@MRWbg‚ˆŠŸ —–—‚€¢¢¤¬­°¨©¬ž¡¤|…bgk‡ŠŒšžS[^acdx{{[adz‚‡¬­²´³µ±°²°°±±±²°°°±±±´´´±±±¯¯¯¶¶¶¶µ¶¶¶·´³µ³²´³´µ±²²žžŠ†ˆ¢Ÿ ¹·¸¼ºº²²²“‘“‡‚„°«¬½¸¹¹¶·±¯¯š˜™‘´²²ÝÖÓß×ÔߨÕàÚ×áÛØâÜÙâÝÚâÝÚåßÜåßÜäßÜäßÛãÞÜáÜÛßÚÙÜÖÖÙÑÑÓÍÌÊÄľ¸¸¦¡ „ƒ`cfBHQ:AJTW^vtv‰Š™•–¡Ÿ¤ ¢§¤¦¦¥§¥¤¦¤£¥¢¡£¡ £ ž¡ššœ’“—”Œ‘Š‹“”…‰px{dns`hnotysw|uy}puypuxtx}otxrv{osxosxptyquzx~ƒ}ƒˆ|ƒ‰|‚‰}ƒ‰}„‹|„‹}…‹~…Œ†Ž}„‡Žˆ€ˆ€ˆ‰z‚‰qy~px|z†z€…emr^ekv{€yƒiqvpv|}„‡u|w|…ŠŽ„‰Œv{~z‚Ž‘•’—š•˜œ”—›•™œ›ž¡™ž™›˜›™œ Ÿ£›ž¢ž¡¥Ÿ¢¦–›žŠ’•’—šœž £¥¦{}~NQSŽŒ£¡£««­§©ªœŸ¡‡‹|ƒ›žw~/J#0=8AJcimkpvpu{pv{ntzntylrwsy}|‚…€†‹~„‰…ЅЇ‹‡Ž~†}…Šty~uz}†„ˆ…ŠŽƒ‰Ž‚ˆŒ…‹‰•‰y~ƒ~ƒˆˆ’}ƒˆw}€„‰ŒŒ‘”€…ˆ|„ˆŒ‹‘‚†z}€‹‘”•†Š‹…†Ž‘’šœžœžŸž ¡ ¢£¡£¥¡£¥£¤¨£¦§¢¦¦¤¦§¥§¨¥§¨¦¨¨¨ªª¥§§§©ª ¢¤}„‡lswoqvRV\†ˆŒ­­­±±±¯¯¯°°°±±±±±²¯°±²±³³³µ°¯±³²´·¶¸¹¹º··¹¸·¹ºº¼¼»½º¹»¸·¹º¹»¹¸»·¶¸º¹»º¸ººº¼½¼¾½¼¾ººº½¼½¾½¾¼»¼»º¼½¼¾ÁÀÁ¼»¼£¢¤–•–¥¤¥åÞÛåÞÛåÞÛåßÛäßÜäßÜäßÝäßÞãÞÜãÞÛáÜÛàÚÙÞØØÚÓÐÕÎËÍÆÃ¿¸·©¥¤‰‰‡ciiCLP=DKSU[rprŠ…‡™”– Ÿ¤¢¢¦¤¤¨¨¨¦¦¦¥¥¦£¢¤¡ ¢žŸ˜˜š’•Œ‘ЋЋБ‰‹‡ŠŽ‡Š†ŠŽ„ˆŒƒ‡Œ‚‡Œ„‰~ƒˆqyO^g:HTENXT[e/F%,  2SUZdfkorvz~‚{€ƒz€„yƒzƒz„z„z„{€…{‚‡}ƒ‰|‚‡x€…x€‡y€†x‡v}„t{‚nu|mtzqw}qw~qv}sy€tz€krx[biBLU(1!,36@D[bdtx|ƒ‡Œ‰’‰’‹“‹“Š“‹”ŠŽ““—‘•š’•š‘”™’•™•˜œ—šžš¡›ž¢š¡ž¡¥Ÿ¢¦Ÿ£§™¡Œ‘•…ˆ“——›ž‘”—‡ŠŽ’”Ÿ œŸ Œžžž¡¢¢“••ˆŠ‹•—˜¤¥¥¢£¤‘’ŽŽœ«««°°°¯¯¯­­­®®®±°±±°²²±³±°²°¯°±°²´³µ¶¶·¶µ·¶µ¸·¶¸¶µ·¸·¹¸·¹º¹»¼»»ººººº»¼¼½½¼½¼»½¾½¿¾½¿¼»½º¹º½¼¾¾½¿¿¾ÀÃÃÄÂÁÂÁ¿ÁÂÁÃÂÁÃÀ¿ÀÂÁÃÃÂÄÂÁÃÂÀÂãÞÛâÝÚâÝÛáÜÛàÜÚàÛÚÝØ×ÛÕÕ×ÏÏÒËÉÈÀ½»µ¯¦ ›‚~dikIQVBGNXY^ustŒˆ‡—”“žšš£ŸŸ£  ¥££¤£¥¢¡£Ÿž ŸŸ¡š›—˜œ”•™‘“—‹Ž’ˆ‹}€…ejoMV]-7=&06 '.AFL_bgjmrvz€y}‚|€…z…z„z€…y„x~ƒy„|‚‡|ƒˆz€…z€†x€…x€‡y‡y€‡z€‡v|ƒqw}ou{qv|rx~ou|sy~fmsFQZ&2<%-#-5NV]ouwv{~{ƒ†‰Ž‹“‹”‹”‹”Š“Œ““–‘•™‘”˜“—”—›˜›Ÿ˜›Ÿ™œ š¢œŸ£ ¤ ¤Ÿ¢¦Ÿ£¦šŸ¢‹“†ŠŽ‘•šž“•š†‰ŸŸŸ ’“˜˜—   ™›œŽ‘’‘’¢¢£¤¥¦—˜™ŽŽš››¬««±°°®®®°°°±±²°¯±®­®±°±²±²²±³´³µ´³µ¶µ¸¸·¹·¸¹¸¸º¸·¹¸·¹º¹º¹¹¹µµµ¹¹¹¼¼¼¼»½¿¾¾¾½¾º¹»¼¼½½¼½¼¼½¾½¿¿¾ÀÁÁÂÀ¿ÁÁÀÁÃÁÿÁÁ¾ÀÃÂÄÂÁÃÁÀÂÁ¿ÁãÝÛãÜÙâÝÙáÜÙàÛÙßÚÙÜ×ÖÙÔÓÖÐÏÎÇÄļ¶¶¯©š–‘wyxX_cCKQHLScdg~{|Œš˜—Ÿ£  ¢  ¥£¥£¡£¢¡£¡ ¢œž˜šœ”–š‘“—“—Ž‘•ˆ‹}€…afkOX_;FM7CL;FP@JR\agknstx}vz|€…{„{€…z€…y„y„y„{†z‚†z‚†{‚ˆx€…y‡y†y‡{‚‰{‚ˆv~ƒqx}puzqw|msymsygmsKW`(3%0'3>V^frw|}„y}{€„†ŠŽ‘•‹“Š“‹“‘–Ž’–“—‘”˜‘”™”˜œ—šž—šŸ—šŸ˜› œŸ¤ ¤œŸ£›ž¢œ ¤ ¤™ž¡‘•™‡‹ŽŒŽ‘™›–™œŠŽ›œ¡¢¢”––‹Ž•––£¤¥¡£¤‘”•‘’ŸŸ «««Ÿ ¡““”˜—˜¦¥¦¯®®°°°°°¯°°¯­­­°°°²²²°¯°±°³²±³´³µ·µ·¸¸ººº¼¸¸¹¸·¹º¹º·¶····ºººººººº»½½¼½¼¾º¹»¼¼½½¼½½½¾¿¾À¿¾À½¼¾¾½¿ÂÁÃÁÀÂÀ¾ÀÁ¿ÁÃÂÄÃÂÄÃÁÃÀ¾ÀãÛÛãÝÚáÜÙáÜÙàÛÙÞÙ×ÛÖÕØÒÑÓÍËËÄ¿À¸²®¨¢ŠˆnpqPV\AHOPTYmlo†‚”‘‘œšš¡ŸŸ¤£¢£ ¡¤£¤¡ ¢Ÿž Ÿž ›šœ˜™›”–™’”˜’–Ž‘•‡‹y}`fkMV]KS\OX_\djW`feinkotsw|uy~y}‚|€…z~ƒy~ƒx~ƒz€…z€…{†z„|„ˆzƒ‰y‚†x€†x…y€†|‚Š}„Šz‚ˆu|ouzntyouzntyflsYcl0>I(6BGQ\dkqsw|}…}‚…y~}‚…ˆŒŒ”Œ”‘•“—’•š“˜‘”™”—œ•˜–šž™œ —šŸ˜› ›ž¢ ¤ ¤›ž¢œŸ£ž¡¥ ¤§¢¥•š‰ŒŽ’˜ššœ’”ŒŽ™šš¤£¥œžŸŽ‘”•–¢¤¥£¦¦”—˜Žœ›œ©¨ª¦¦¨˜˜š”“•¡ ¡¯­­±°°¯¯¯°°°°°°°°°°°°±°²±°²³²´´³µ·¶¸¹¸º¸·¹º¹»»¹¼¸·¹¸¸¸¸¸¸···¼»¼½½¾½¼¾¼»½¼»½¼»½¾½¿À¿Á¿¾À¿¾À¿¾ÀÁÀÂÁÀÂÀ¿ÁÂÁÃÅÄÆÆÄÆÃÁÃÀ¾ÀâÛÚâÜÚáÛØàÛØßÚÙÜ×ÖÚÔÓ×ÏÎÐÉÆÆ¿ºº³­¢™~~~bdgHOUCJPWZ^wuvІ…–’‘žšš¢Ÿ ¥£¤¤¢££¢¤  ¡žŸ›™™›˜™›“”™’”˜“—Ž‘–†‰uz~]dhFPUPX^^dhmruhmqoqvptxosxsw{vzy~‚x|x~ƒx~ƒx~ƒy„y„x~ƒ{ƒˆyƒ‡zƒˆx…x€†z‡{‚‰}ƒ‰|ƒ‰y€†qw|ouypv{sw|lrx]fmKU_2=JPXaqvyz‚y~~‚…ƒ‡{ƒ}‚…‡‹”’–‘•™”˜“–›‘”™”–›•˜—šŸ˜›Ÿ–šž™œ ž ¥ ¥ ¤ž¡¥›ž¢ ¤ £§ ¤¨ ¤¥˜œž”ˆ‹Ž”–—Ÿ¡¢–˜™‘’–—˜¥¦§Ÿ¡¢’•–’“šœœ¢¤¤œžŸ‘”“”¥¥§ªª¬œ›“‘“›™šª©©²°°±±±±±±°°°²²³°°±²±²±°²³²´µ´¶³²´´³µ¹¹ºº¹»¹¹¹¸¸¸¹¹¹¹¹¹»»»¾¼¿¿¾À¾½¿¼»½½¼½½½½¾½¿ÁÀÂÁÀÁ¿¾ÀÀ¿ÁÃÂÄÂÁÃÀ¿ÁÁÀÂÂÁÿ½¿¿¾ÀáÜÛáÛÚàÛÙßÚÙÞÙØÛÖÕØÒÒÖÎÍÍÆÃü¹´®¬–‘suvV[_BINJPVceh€}~Œš——Ÿœ¢Ÿ ¤¡££¢£¡ ¢Ÿž Ÿœœž˜™š–—˜“”˜‘“—””„ˆŒsx|\chHQUSZ_chlquyvy}osxrv{nqvruysw|tx}y}‚z~‚x}‚v|w}‚w}w}‚{ƒˆz†{‚ˆy€†zˆ|‚‰{‚ˆ|‚ˆ}‚‰{‡y„sz~pv|rv{ty~houWahIR[RZbptx„‡|€„z‚~‚†ƒ‡{ƒ€„‡‹Ž’“˜‘”™“–›•˜“–›‘”™•™ž—šŸ—› –›Ÿ™¡ ¥ ¥ ¤ ¤œŸ£ ¤ž ¤¢¥©£¦©¡¤§˜œ Œ“ˆ‹–˜š¡¢¤™œžŒŽ‘’“•££¤¥§¨–™š‹•––¥¥¥¡££’’““‘”¡ ¢ª©ª¢¡¢““”“““¥££²°°²²²±°°³³´³²³³²´³²³´³¶´³µ±°²±°²¶µ¶¸¸¹º¹º»»¼»»»ºººººº½½¾¿¾À¿¾À¾½¾¼»½½¼¾½½¾¾¾¿ÁÀÂÁÀÂÀ¿ÁÁÀÁÁÀ¿¾ÀÀ¿Á¿¾À¾½¿ÂÁÃáÛÚàÛÚàÛÙßÚÙÜ×ÖÚÔÓ×ÐÎÑËÈËÅÂÀ¹¸ª¤£ŒŠŠhlnLRUCIPTX]qptˆƒ…•‘’šœ¢Ÿ¡£ ¢¤¡££¢¤¡ ¢Ÿž š™››šœ—˜™”–—“”—Ž“Œ“Š‘„ˆnsxW_cMVZX`eflpquyvy}qvzquysvznrvqtzrv{y}y~‚w}w}‚w~‚u{€z€…y„{†|ƒ‰y€…{†|‚‡{‡}ƒ‰}„Š}„‹~„‰z†t{qv{uy~vzelr[cidkprw{{€„~ƒ‡{€ƒy~‚†€…ˆ}ƒ†€ƒˆ‹Ž“’•™‘”™”—œ’–œ‘•›”˜—› ˜œ¡™¡˜œ ›ž£Ÿ¢¦œŸ¤›ž¢›ž¢ ¤ ¤¡¤¨ £§¡¥¨Ÿ£§œŸ£’–™Š””—¤¤¦Ÿ ¢’”‘‘“¢£¤©«¬›‘‘““”¦¥¦ªªªœž‘’”™˜š¬©ª©¨¨™šš•••¤££²²²¶µµ²²³´³´¶µ¶µµ¶¶µ·´³µ³²´µ´¶²±³µ´¶»º»¼»¼ººº»»»ºººº¹»¾½¿Á¿ÁÀ¿Á½¼¾¼»½¾¼¾Á¿ÁÁÀÂÀ¿ÁÀ¿ÁÁÀÂÀ¿ÂÂÀÂÁÀÂÀ¿ÁÁÀÂÂÁÃáÛÚáÜÛàÛÚÞÙØÜÖÕÙÓÐÕÎËÎÇÃÆ¿½º´´ š›€€]ccHORINT]^dzvzމ‹˜”–›œ¡Ÿ ¥¢¤£ ¢¤¢£ŸŸœž›šœ˜—™—˜š‘“—“–Ž”‹Ž’ˆŒ€ƒ‡lquU]aNW\]diimruy}psxux}nrwqtynrwosxrv{uy~w|x}‚v{€v|x~ƒ|‚‡y„z†|ƒˆz‚‡{†{†|‚ˆ|‚‰|ƒˆ~…Š~„Š~…Šy„qw|tx}sx}iot`hmnty|€…{ƒ{„„‡|„{ƒ†‰ƒˆ‹~ƒ†€ƒ‡Œ“‘”˜”—œ”˜•™Ÿ–šŸ–šŸ—› ™œ¡›ž£ ¥ ¥ž¡¦œŸ¤ž¡¥Ÿ¢¦ £§ £§Ÿ¢¦ ¤§¡£§£¥©£¥¨ššŸ“‘“¤¤¦¥§¨–˜š“”Ÿ ©ªª££¤‘““•¤¤¥««¬Ÿ ¢Ž‘”“”¦¥¥®­­¥¥¥•••™˜˜­««·µ·µ´µ´´´···µµ¶´´µ´³µ¶µ··¶¸¸¸º»º»¸¸¸ººº½½½¼»»ººº½¼¾À¿ÁÁÀÁ½¼¾¼»½¾¾¿ÁÀÁÁ¿À¿¾ÀÁÀÂÁÀÁÁÀÁ¿¾À¿ÁÃÂÄÄÃÅÀÀÂßÛÚàÛÚßÚÙÝ××ÛÕÕØÒÒÕÎËÌÅÂÁ»¸°ª¨’ŽŽprqSZ\FMPMPUhhj}~Œœ™š¡Ÿ ¡Ÿ £ ¢¤¡£ ž žŸœ›œž—–™““—‘“Ž”Œ“‰Œ‡‹Ž~ƒ†qw|dlqU^bcimkouux|orwruzpsxnqvpsxlqvotxquyu{y~ƒw}‚w}‚w}‚x}‚x~ƒ|†{€…|‚ˆ|‚‡y„z€…{†{†}ƒˆ€†‹‡Œ€†‹v|sy~jpugmrjqvnsxz~|…y~‚{€ƒ‚‡Š~‚†{„…ˆŒ‡‹ƒ†‚…‰’—“–š“–›–šŸ”—œ•™ž—› ˜œ¡›Ÿ¤œŸ¤ž¡¥ž¡¥›ž£ž¡¥Ÿ¢¦Ÿ¢¦ £§¢¥©¢¥©¤§«§¨¬¨©­¦§«žŸ£”•™’“—¢£¥¨ª«Ÿ ‘“”™™›¨¨©§¨¨–—˜‘’›š›¬¬¬¨¨ª—™š““•¥¤¤°®®¬««•••‘‘‘¨¦¦···³³³µ´µ¸·¸¶¶¶´´µµµ¶¸¶·¹¹ºººº¹¹¹¹¹¹»»»¾¼¼½½½½¼¾¾½¾¿¾¿»¹»¹¸º¼»½À¿ÁÀ¿ÁÂÀÁÁ¾ÀÁ¿ÀÀ¾¾½»¼¾¼¼¾½¾¾¼¾¿½¿àÙ×ßÙ×ßÚÙÝ×ÖÚÔÔÖÐÐÒËÊËÄÁ¿¸´§¡††‚gkjNUYFNRVZ\rop‰„…•‘œšš¡Ÿ £ ¡¢Ÿ¡£ ¢ Ÿ¡œ››šœ™˜›““–“”˜’“–‘•“ˆŒŽ…‰‹†‰y‚pwzhnskotpuxquyptxkosnqvnqvprwmqvosxrvytx|x|w}‚v}‚v{€x}‚z„z„{†|‚‡|‚‡{†}ƒ‡|‚ˆ|‚‡}ƒˆ}ƒˆ}ƒ‡~†Š~‡‹y€…hquajnlqvrx|v||…}†y}~ƒ…†‰~ƒ†|€ƒ„‰Œ…ˆŒƒ‡„‡Œ’–“–›•˜•˜“—œ–šž™¢œŸ¤ ¥ž¡¥ £§Ÿ¢¦Ÿ¢¦ž¡¥ ¥Ÿ¢¦¡¤¨¢¥ª¥¨¬¤¦ª¤¥¨©ª­¬­°¢¤§–—›’“–ŸŸ¢«¬­¢¤¥””—’’”¦§§©«¬Ÿ ‘’––˜ª©«¬¬®žŸ “““ž°­®¬¬¬žžž–••¡  ±±±´´µµµ¶¶µ¶µµ¶¶¶··µ·¶µ··¶¸¹¸º»»»ººº½½½¿¿¿¼¼½¼»½»º¼¹¸º¹¸º½»½¿½¿¿½¿ÃÁÿÀÀ½¾»·¸º¸¸½»»½¼¼»»»¿½ÀáÙÙß××ÝÖÖÜÔÔÙÒÒÕÎÌÎÇÄž»·±­œ˜”{~|[aaEKPIOQ_ac{wxˆ‰™”•Ÿ››¢  ¤¢¢¢Ÿ¡¢ž Ÿž œ›œ›˜˜œ’’–‘’–‘•’–‹Ž’ˆ‹†‰ƒˆ‹„‡|‚…v|u{~uy|inrgkpcfkfinimqaejhlqjnsotwosxsw|v{€v|€x~ƒy„x~ƒ{„y€…y„y„|‚‡}ƒˆ|‚‡|‚‡~„‰~„‰}„ˆ…Š€†‹|‚‡iqvdmqlrw{€„x~‚w}}…„‡{€ƒ„†„‰‹€…‡€…†‡‹Œ‡‹Ž…‰‚†ŠŽ‘•”—œ”˜’–›—šž™œ œŸ£ž¡¥ ¤ž¡¥ž¡¥ž¡¥¡¤¨ £§ £§¢¤¨£¥©¤¥©¤¦©¤¥©©ª­ªª­¨©¬¦¨¬™› ’•ššœ©ª«©©«šœ’“¡¢£«««¦§§–˜™””•§¦§¯®®¥¥¥”””™˜˜©¨¨³³³§¨¨–——”””©¨¨´²²¶µµµµµ¶µ·¸·¹¸·¹·¶¸´³µ·µµ¸¸¸¼¼¼»»»º¹¹¼»»»»¼»º¼¾¼¾½»½¼º¼¾¼¾ÂÀÁÃÀÁÀ¾¾½»»º¸¸»¹¹»¹¹¼¼¼¿¾Àß××Þ×ÕÝÕÕÚÓÒ×ÏÏÓËËËÃÁÁ¹¸¯§§Œ‹mqpRY[DJOQVYjkm‚~”›—˜Ÿœ Ÿž¢ ¡¢ ¢ŸŸœ››šœ™˜š–•˜“’–ŒŽ‘Ž’ŒŽ’‰ŒˆŒ‡Šƒˆ‹ƒˆ‹†‰}ƒ†w|uz}eimPTYPTYX[_\`cUY]SX\bfjkpsmrvotxvzy|y}‚y}‚w|y~ƒz€…w}‚x~ƒ|‚ˆ}ƒ‰{†{†~ƒˆ€†Š~…Š€‡Œ‡‹v|nw{irvovzz„|…w|w|€„ˆ€…ˆ|€ƒ€„†…‰Š†ˆ€„‡‰Œ‰‘‚‡‹„ˆ“—–™–šž•™—šž›ž¢ ¤ž¡¥ ¤ž¡¥ £§£¤¨¡¤¨ £§¢¤¨£¥©¦¨ª§¨«¨ª­§¨¬¨©¬¨©¬¬­±«¬°¡¢§’“—”•™¥¦¨§©ªš›œ’“”œœ¬­¬¬­­œœ”’” Ÿ °¯¯­®®›œœ“’’¡¡¡®®®«««   •””¡žž³²±¹¸¸¸¶¸¹·¹º¸º¸¶·´²³³°³´´´¾½½¼¼¼¼¼¼¼¼¼»»¼¼»½½½¿¿¾¿¿½¿Á¾¿Á¿ÀÁ¿¿¾»½½»¼¼ºº½»¼¼ºº¿¼½¿½¿ß××ß××ÜÕÕÙÔÓ×ÏÏÒÊÊÈÀ¾º±±¦ŸŸ‚`egKSXFLPW[]stuˆ…†–’”˜š žž¡ŸŸ žŸ¡ž žœžœœ™˜š˜—™’“–‘“Œ‘Š‹‡‰Œ…‡Šƒ‡Š„‰Œ‚‡Š€…ˆ|„{„v{~`ei=DL9AHIMRORUEKN8>E>CG8>C46>E-6<&077@GY^fglrnsxkqvmsynsypvzz~ƒx}‚x}y„z€…y„{†{†u|dntMW_KR[cfmx|€‡‹…Šƒ‰…Œ„ŠŽ…ŒƒŠ}ƒ‡|…~ƒ†ƒˆ‹„ˆ€„†‡‹„ˆ‰„‡ˆŒ‹Ž‰Ž†‰‰Œ’—ˆ‹„‡‹‘“–œž  £ ¢Ÿ¡¤¡¢¦žŸ£Ÿ ¤¡£§¡¢§¢£§¤¥¨£¥§¡¢£¥¥§«ª««ª¬¬«­¬«­¬«­­®¯¬®°«¬®­®°®®°¥§¨˜š›—–˜¥¤¦®®¯¨¨©š™šœ›œ©§©²±±¨§©›šœœœ«ª«²²²ªª©›šš—–—¤£¤°°°­¬®œ›™›¨¦¨´±³¹·¹¸·¹º¸º¸¸¹·¶¸¹¸º¹¸ºº¹»»»¼½¼¾½¼¾¿¾À¿¾ÀÁ¿Á¿½¿À¾Á½»¾¾½¿¿½À¿Á¿½¿ÝÖÓÛÓÔØÑÑÔÌÌÍÄÃù¶²©¦”ŽsusW\^HNSORXggj}zzŠŠ˜“”™šŸœž¡žŸ¡ž žœŸ›šœ›šœ˜—™”•–‘’•Ž’Š’‡ŠŽ…ˆŒ†‰ƒ‡‹ƒ‡Š‚†‰ƒ†}„|€…{„x~‚ksyJ[b=NU9DL>HO,8>-9@GQSXblpw€„‰‡Œ†Š‰Ž’‹“‰Ž‘Š’†Œ…ˆ{‚€„ˆ…‰Œ…ˆ}ƒ†ŠŒ…‰‹€„‡‚…‰‹Ž’ŠŽ‘†‰ŒŽ’’”—Œ‘…‰‹’™›Ÿ¡¤¡¢¦¡¢¦ ¡§Ÿ¡¥ ¢¦£¥©¦§ª¥¦¨¦¦¨¨¨ª«ª¬«ª¬¬«­­¬®­®¯¯®°°¯±°¯±±°²°°²²²´³³µ°°²§§©™šœ——™¥¤¥®¬­¦¦§œ›Ÿ­««·¶¶¬¬¬žœšš™§¦¦°°°««¬œ››šœ«©ª¶´´°®¯ Ÿ œœ§¤¦³²³»º»¼»»¼»¼½½½»º¼»º»¼»½½¼¾¾½¿¼»½½¼¾½¼¾¿½À¿¾ÀÀ¿Â¼»½¸¶¸À½¿ÛÔÒØÑÎÕÍÊÏÆÃÆ½º¸¯­—•|}|_dfGPTLQW]^byvxŠ…†–‘‘š——ŸœžŸœžŸŸžœž›šœš™œ˜—™•–—‘’•ޓБˆ‹ˆ‹…‰Œ„ˆ‹…‰„ˆƒ‡~‚‡~‚‡}…{€ƒz~ƒv{€mtyhqxfov^hnXbjMW_V]ddionrwnsxkpunrwmpunrwotyptyx|y~ƒx|y„y„|†{‚‡|ƒˆw€…kv|YdlR[efjs}†…‰†‹ŽˆŒ‘Š‘ŠŽ‘Š’‹“ˆ†‰}‚…‚…‰†ŠŒ‚†ˆ€„†ˆŒ…‰Œ€„‡ƒ†Š‹‘Œ”†‰‰Œ“•Ž’”ˆ‹Ž‹Ž˜™œŸ ¤¡¢§¡¢§¤¥©¢¤¨¥§«¦¨«¥§©§¦¨¨§©«ª¬«ª¬«ª¬«ª¬­®¯¯®°¯®°¯®°¯®°±±³²²´²±³²²´²±³«¬®ž–•–Ÿ­«¬®­­ žžœš™¦££´²²²³²¤££›ššž¯®¯²²²¥¥¦›šœ žŸ²¯°´³³­¬­¡Ÿ¡Ÿœž­«¬¼»º¼ºº¼»»¼º»½¼½¾¼¾»º¼º¹»º¹»»º¼¿½¿¼º½½»½½¼¾¼»½¾½¿ÂÁÃÚÔÓØÑÎÓËÈÌÿÀ·´¯¦¢‘ŠoqqV^`ENROTXhgk€~~‰Š˜””›˜™žœŸžžžœ›œššœ˜—˜••–‘“”Ž“ŒŽ’Š‘ˆ‹‡ŠŽ…ˆŒ„ˆŒ€„ˆ€„‰~ƒ†|„}†|…{ƒ{„y|w}‚sy~rx}pv|hovYaiSYaaeljmrkotfkofjpjntkptotwnsxquzz~‚{€„y„z€…z€…{†|‚‡|ƒˆx†mw}^hpglu{„…ŠŽ†Š‡ŒˆŽ‘Š’Š’‹“Œ‘”‹“„‰Œ~ƒ†…ˆˆŒ‚‡Š€„‡„ˆ‹ˆŒ€…ˆ…ˆ‹‘Œ“‡Š‹Ž“–˜”•ˆ‹ŒŠŒ™š¢£¨¡¢¦¤¥©¦§«¦§«¦§«¤¥¦¨§©ª©«©¨ª©¨ªª©««ª¬­¬¯±°²®­¯­¬®¯°±°±²±°²²±³²²³³²´³²´®­¯££¥™™™›šš¥££°®­§¥¥œ™šž¬ª©´²±«««š™š˜—˜©¨©¶´´¯­®¢¡¢žœ¦¤¥¶´´µ³¶¤¢¤š™š£¢¡³°°º¸¹½»¼¿½½¾½¾º¹»¹¸º¸·¹·¶¸º¸º¼º½¾½¿½¼¾¿¾ÀÁÀÂÃÂÄÙÔÒ×ÏÍÐÈÅÈ¿»½³°¥žš„ƒ€ehjMTYFPTVZ_sqt‡„„‹Œ™”•žš›ŸžŸžžœœœšœ™˜š˜—˜”“•‘““‹‘ˆ‹…ˆ†‰‚†Šƒ†‹€ƒˆƒ‡~‚†{€„z‚y}y}x|y}‚y„v|v|‚v|krx\clJPZLPY`bj`ciY\cWZacfllptlqtosxnrwsw{z€ƒ{€†{†{€…{†}‚‡…Š}„‰w„ox}tz€~‚‡†Šˆ‹‘‡‹ˆ‹ˆ‰Ž‘‰Ž‘’•Ž“–Œ‘”„Š~ƒ†…‰Š’„‰Œ„‡…ˆŒ‰…ˆŒ„‡‹Œ’”—Š‘ˆŒ‘”–‘“•‰ŽŒŽ—™›Ÿ ¤£¤¨¢¤¨¥¦©¨§©¥¤¦¥¤¦¨§©©¨«ª©««ª««ª¬­¬®®­¯¬­®­¬®®­¯¯®°°¯±±°²³²´²²´³²³±±³±°²««¬œ“’’ ž¯­¬®®¬   š——¡ Ÿ±¯°±¯°¥¤¥›šœ¢ ¡´²²¸··«ª«œ™› žŸ¯­­¶µ¶®®®¡¡ ˜––§¤¤»¸¸¾½½½»¼½º¼¼º¼º¸º·¶¸·¶¸º¹»À¿ÁÀ¾ÀÂÁÃÂÁÃÂÀÂ×ÑÎÕÎËÎÇÃŽ¹¶¯«›–”zz|]`dIOVIOU_aeyvwˆ‰”œ—˜Ÿ›ŸžŸœžœšœ™˜š•”–‘’‘Ž’Ž‘ŠŒŽ‡‰‹„†Šƒ…‰…‰„ˆ€ƒ‡}‚…|…|€…{„y}‚x|w{€z~ƒx|w|v}‚tzotzU\dOWfnt}ƒ‡‚‡Š…ˆ†Š„‡Œ†‹ˆŒ‰’ŠŽ’‘•‘”˜Ž’–•˜‘•š”™‘–›‘”˜“–š—š•˜œ–™ž‘•˜ˆŒƒ†Šˆ‹Ž‘”‰ŒŽ‡‰Œ“•–—˜š’“–––˜šœž•–š‘’”˜—™œ›–—˜‘’•––™¢¡¤©©ª¬«­­¬®­¬­¯®¯¯®°¬¬®­¯°°¯±°¯±°¯±¯®°±°²²²³´´´³³³´µ´¶¶·µµµ³²³³²´²²³·¶·µ´¶µµµ···³´µ¦§¨ž¦¥§±¯°¶´´«ª©œš›¢ ¢´±²»ºº³³³¤£¤š—˜©¥¦º¸¸¼¼º±°¯¢ ¡¥¡£³°±À½¾º¹»§¦¨ž›¥¢¥¶³µ¾»½À¼½ÉÀ¼¼´°§¡Ÿˆ††inoOWZIPVWX_nkoƒ~€ŠŒ™”–›—™›—™ž››˜š™—™’“‚‚„xz{suvorsvxyy{|wyzz}€}€„~…}€„|€„{ƒz‚x}€w|w|v|~v{vz~vzv{uy}uz~ty~uzty~qw}pw{pw{qy|kuyalr^gnhntpv|msxmsxpuzosxnsxotxouxpvxckpT`f^hnv|€„‡†Š…ˆ„‰‰’ˆŒ‡‹ŠŽ“Š“Œ‘•’—Ž’–”—”˜‘•™’•š”˜”˜›•˜œ•™–š–™“–›ˆ‹ƒ†ŠŠ“”‘ˆ‹Œ‘‘“˜˜š““•——˜žžŸ—™›‘•’’”šœ›œž‘–’”—  ¢©¨ª®­¯­­®««¬®­¯¯®°­«®®®°¯®°±°²°¯±±±²²²²³³³²²²³³³µµ¶´³´²²²´³´´³´µ´µµ´¶¸·¹¶¶¶·¶¸¶µ·±°²¥¤¤£¡¡­««¸¶¶³²²¦¤¥¡ž «¨©¸··»ºº²±± ž ®¬«»¹¸º¸¹«©«¡ž ©¦¨¶³¶¿½¿¶´¶¥¢¤¡Ÿ®©«¸³µÅ¼¸¶®«›—•|{|^deIQTJPU\]avsu‰„†“Ž™–—š—˜œ™ššœ™–˜—•—Ž}~tvwmqrlopvxyvyztwxyz}y{||ƒ|ƒ{~‚z~‚x}w|w|uz~v{~v{vz~uy}tx|sx}uzuzsy~ty}v{uzv|u|€ow|lsykqwmsxou{lrwnsxpv{mrvpvypuynsvflpckojqtz~‚ƒ†Š„ˆŒ„‡Œ†‰‡‹‰“ŠŽ“‰’Œ•Ž‘•Ž’–”˜’–™“—‘“—‘“—’•™“–š”—š”˜œ•˜œ™œ —šŸ“–›Œ“†‰ŠŒ‘”•Ž’ˆŠŒ‘’“›œ—˜™’’”••— ¡£žŸ£‘”–‘’•™›› “•˜’“•žž ª©«­¬®­¬®®­¯«ª¬­¬®®­¯®­¯±°²°¯±±±²±±±°°°²²²²²²±±²²±²±°²³²´³²´´³µ¶µ·¸·¹¸·¸¸·¹¸·¹¸·¸µµµªªªžž£¡£²®°º·¸²±²¦¤¥¢  ­««¿¼¼»¹º©©©ŸžŸ¥£¥¶³´¾¼¾µ³µ¦£¥£ ¢±®±¹¶¸¾»½´³´£ £¥¡£À·³­¦¢ŽŒŠqrsU[\FNPNSWefh}y{Œˆ‰•‘“™–˜›˜™š˜˜›˜š™˜š–”–ŠŠŒ{|qtulppnqrvxytwxruvtvxwy}xy|{~{~‚z}z~‚x}v{ty}v{vzuz~uz~uy~tx|uy~uzuzuz€szt{u{w}z€…x~ƒqx}mu|kqxmsyouylrwpuzsx{puxptxkqubindkpjqtx|€„‡Š‡ŠŽˆ‹Ž‡ŠŽ‡‹‰’‹”Œ”“˜“—“—Ž’•Ž‘”ƒ…ˆ|~€‚ƒ†”“—š•˜”—›–˜œ–™—šž—šž˜šž’–‰Œ‹’”•’”•’“”›šœš›•–™••™žŸ£ž¡”–šŽ“—™›œžŸ˜š›”•˜šš¦¥§¬«­®­®¯®°­¬®®­¯­­®±¯²®­¯¯¯¯±±±°°°°°°³³³±°²±°²²±³³²´¶´¶¶µ·¶¶··µ¸¶µ·¸·¹µ´·µ´¶º¹º»»»±°²¢¡£ŸŸ­«­¸··¹¹¹¨¨©Ÿžž§¥¥µ²³»ºº³²³¢¡£ ž ¬©«º·¹½¼¾²°²§¤¨¤¡¢²¯±»¹º½º¼±®°º²®¤›‚€€gjkNUUDLMTZZnooƒ€ŽŒŒ˜•—›˜šš˜™›™šš˜š—–˜““”……ˆwy|nqsimnnqrwyzqtupsvqtwtw{wy}{~‚{~‚y}€x|€y~w|uz}uz~vzux~tx}tx}uy}tx}uzvzvzv{w|vzv{€w}‚y„w}‚qxmszjpwouzouzntxovypuxmsuhordkofnqpvxvz}|ƒ…ˆŒˆ‹‡ŠŽ‰‹‘‰’‹Ž’Œ••“—Ž’–‘”…‰Œosv\beknq…†Š“–™–˜œ•—›–—›•—›–˜œ˜›Ÿ™›Ÿ˜šž’•™‹Ž‘ŠŽ”•–˜š›“•–’’”œ›œœŸ•–š‘“—–—› ¡¤˜›’•“•—ž žž¡—˜œ˜˜š¢¡£©¨¨°¯°®¯¯¯®°®­¯°¯±°¯°±±±±±±°°°°°°³³³³³³³²´´³µ±°²³²´·¶¸µ´¶·¶¸·¶¸¹¸ºµ´¶¶µ·»º¼¼»¼¹¸»´³¶¬¬­£¢££¡¡±°°·µµ±°°¤¤¤¡ŸŸ¨¥¥´²²»ºº®®¯¤¢¤¤¡¢±®¯¾¼½»¸¹­¬«¦£¤©¤¦³¯°¾º»µ­«™”“yyy^cdJRSJPQ]``uttˆ„„‘ŽŽ—••š—˜™™™š™š—–˜–•–Ž‚svzmpshkmoqruwxpsuoquqtwpswvy}x{{~‚y}w{y}w{vzty|vzvzw{ty~sw|sw|uy~uy~vzw{€w{€vzw{€w|€x}‚y}ƒw|‚ou{ntymsxouzqwzotwpuxmtwdknekokpsswzx{x{}€„‡ŠŽˆ‹‰Œ‰ŒŠ‹Ž’Œ”’–Œ‘”Œ‘•ˆŒw|€djoinrsvy}€ƒ…‡Š“”˜–—œ—˜œ˜™™šž™›Ÿ™œŸ™œž•™›Ž‘“ŒŽ•—˜™›œ•—˜‘‘”•–™›œ ™œž‘“˜š› ¢£šœ‘““”•ŸŸ ¦¦¨Ÿ–—˜œœªª©°°°¯¬¯¯®°±°±°¯±°¯±°¯±±°±²±²²²³±±±³²³´³µ±°²±°²µ´¶¶µ·¶µ·¸·¹·¶¸¶µ·¹¸º»º¼º¹»¸·º¸·¹º¹»¶¶¶¨¨¨¢¡¡¤¢¢¯®®¹¸¸±°°¢¡¡Ÿžž®¬¬½¼¼»¹¹¬ªª¤¢¢ª¦§´±²¿»»º¶·°«­¤Ÿ¡¥¡¢¬¥¢ŠŠnqqTZ\HOQPSUfee|yxŒˆˆ“‘‘˜––™—˜™™š˜—˜•••“’“ŠŠ‹z{pswimqgjmqsusuvoqsoqulosmptsvzvy}y|€x{x|€w{€uz~tx}ty}vz~uy~vzuy~sx}vzuy~rv{ptysw|vz~w{€x|w{€ux|vz~x}‚uzpu{ntynsxsx{puxotxipscjnfknptxuy}y|€z~y|€‚†‡ŠŽŠ‘‰Œˆ‹Š‘Š‹“Œ‘”‘”Œ”‡‹~ƒ‡qvzafk\afoptˆˆŠ”•˜–˜œ˜™ž™šž™›žšœŸšž¡¡œ ¡””‘“•›žŸ”–™Ž’“”˜žŸ žŸ •˜˜•—˜›žšœ”•–”•–ŸŸ¡§¦¨ ¡£•—˜™˜™¥¤¤­«­°®°¯®¯¯¯°¯¯°±°²³²´±°²±°²²±²³³´´³µ´³µ´³µµµ¶¶µ·¶µ·µ´¶·¶¸¸·¹»º¼»º¼½¼¾º¹»¹¸ºº¹»»»¼ºº»±°²¤£¤Ÿª¨¨¶µµ¸¸¸¬­­¤££¥££µ²²À½¾º¹¹­©«¥ ¡«¦¨º´µÄÁ¸´µ¨¥¦ š–€€dijNUXHOQX[[qoo„‹Œ•‘—•–›˜šš™›˜—˜”“”‹‹|~orvknrgjmhkmnpqmoojlmhlmhkoknrpswux|ux|y}x|uy}ty|ty}ty}uz~tx|tx}tx}sx}uy~rw|lqvhnslpurv{x{€x|tw|nrvlqvptyy~‚u{~pv{mrxntxqwznsvejnekninqruyy|€z}{~z~€{€ƒ‡‰‹‹Ž’Š‘ŠŠ‘Š‘Œ“”Ž’•Ž’–‹Ž’„‡hos]dhdgjz{{†…ˆ‘”š›Ÿ™›ž˜šž›¡ ¢Ÿ¢¤ ¤¥œ¡¡–ššŽ‘“‘’“™›œ™šœ‘’•””–œœž ¢¢™›œ“•–—˜™žŸ™š›“•—š›ž¦¥¨¥¦¨œŸ—–˜¡ ¡­«¬¯­­¯®°°¯±±°²±°²±°²²±³²±²²±³´³µ´´µ¶µ·µµ¶´³µµ´¶´³µµ´¶¸·¹º¹»¼»½¾½¿½¼¾¼»½¼»½¼»½½¼¾¾½¿¸·¹¬¬­   ¤££²¯®¼»»··¸©§§¡ž­¨©»¶·Â¾¿¸µµ©§¨¡žž¬§¨¼·¸¾º»”‹vww\abJRUJQT_abyuvˆƒ„“Ž˜“”˜–—œ™š˜˜™—–˜“’”‡‡‰xz~osvgloeiljlnjln`cf^`d^adehlgjnmqurvztx|v{~v{w|€uz}tz}ty}sx{rw{qw|tx}ty~tx~pvzfmrafm]cigkpsv{x{€quzhmrdjoglqptyy~‚u{€qw{pvyouyjpseinfkontwsw{y}€z}y|{€|€ƒz}€ƒ…‹‘“‹Ž‘ŠŽ‰ŒŒ’”Ž’•“—“—“—€…Šisweko_bdoprƒ‚„””˜™›Ÿš› ›¡œŸ¢ž¡£ ¤¥ £¤Ÿ¢¤–™›Ž‘’ŒŽ—˜šžž ˜™›““–ššœ£¤¤›œ’“•––˜¡¡¢¡¡£—˜š––˜¡¡£«ª¬ Ÿ ˜—™›™™©§¨²°±°®°®­¯±°±²±³²±³²±³±°²³²´¶µ·¶µ·µ´¶´³µ¶µ·µ´¶·¶¸¸·¹º¹»¼»½½¼¾½¼¾¼»½½¼¾¼»½¼»½¿¾ÀÀ¿Á¹¹º¶¶·­­­¢Ÿž¤¡¡µ³³¼»»¶³²©¦¦£ ¡²®¯¿»¼¿½½±¯°¤ ¢£žŸ±¬­‰…ƒlnnU[]JPSRWYhhi€|}Œ‡ˆ“™••™——™–—˜—˜–•—‘‘“„‡ˆz~€swzkorhlplnpbfhV[^OSWNQU^aefknimpkpsqvysx{w{vzuzty~uz~sx{qvzpu{pv{sy~sx}rx|hot[chX_d_diptyuy}kotbhmY_c\`eilqsx{y~‚v{~sy|jor`fiV\`Z]aqru{}‚{~|ƒz}y}~|ƒ{~‚{~€~‚…‰ŒŽŒ‘ŠŽŠŽ‹’’–“—“—“˜’•šŽ‘–€‡ŒmuzU_c^eh{~€”•™˜™œ™ššœŸŸ¢ž¡£ ¤¦¢¤¥ ¢£›žŸ—›œ’“Ž““”–ž ¡˜š›‘’“”••  ¡œž“•–•—™  ¢£¥¦šœ”•–Ÿ©¨©¦¦§›™››™›¥£¤¯®¯±±±²±²°¯±³±³³²´³²´³²´´³µµ´¶¶µ·´³µ¶µ·¶µ·¶µ··µ·¸·¹¹¸º¸·¹º¹»»º¼¾½¿»º¼½¼¾À¿Á¿¾À»º¼¾½¿»º»±±±£££¡  «©¨»¸·¿¼¼´³³§¥¦¤¡¡µ³³Á¿¿½»»³±±§¤¥{zwadeOUXLPTY[]qpp„މЖ’’˜””™–—™–˜––—•”–Žƒ…†z}~twyorvpswrvxhln\`dMRV@CHSUZaehglokpslquptysw|v{uzsw|uy}rx}qv{pw{pvzsy~qx|qw{mtygmr\chZ`efjonsuflo^diUZ^UY^[_ehkowz~y~u{~puxZae=FM;@G[X]{y}{~‚y|{~|‚|‚|ƒ}€‚{~‚ƒ„‰ŒŽŠŽ‹Ž‘Œ“Ž‘•“—‘”˜’•™“–š‘”™”˜…Šmv{enq{~€˜™—˜›˜™›œŸœž¢ ¢Ÿ¡¤¡£¥Ÿ¡£Ÿ £Ÿ¡£›žŸ”–šŒŽ’”•šœ™›œ“”•”“•žŸŸŸ¢—˜š••—ŸŸ¡©¨ª¢£¤•–—˜–—¦¥§¬ª­¢¡£›šœ¡ ¡¬ª«°¯±¯®°¯­¯²±²´²´´²´³²´¶µ·³²´´³¶µ´¶·µ··µ·¸¶¸¸·¹·¶¸¸·¹¹¸ºº¹»¼»½¼»½½¼¾¾½¿¿¾À½¼¾¼º»»»»ººº¹¹¹²±±£  £Ÿž³°°½¼¼¼ºº³²²£¡¡©¤¥¹µ¶ÃÁÁ¼¹¸ssrW\^KQSNRTabcxvvˆ„…‘Œ—““—••š˜˜™˜™••–’‘“‹Š‚„†|~€vy{wzz~€x|}nrtbgiQVZ;?DILQY\`eimnrvlpuosxptyuz~uy}sw{rv{sy}sy~sy~qw|pv{tzsz~rw|ouzdjnZae\cg`ei`fjZ`eKOTOSXUY^adimptw{~|„u{forBGFHLRTVcefrsw€‚…|„sz}Zfk2EN*6;9Cnhl€„€„~€„…‚†{~‚€‚†~…}€ƒ‚ƒ‡‰ŠŽŽ”’–”–‘”•“–—“–—‘”•”–—–—˜—™š—˜›˜™œ™šž¢žŸ£œ¡¡Ÿ £ ¡¥¢£¥ ¢£¡£¥£¥¦¤¥§¤¦¦¢¤¥ ¢£–—›“–”—ŸŸ¡šš›“’”—–˜¡ ¢¢ ¢˜—™•”–Ÿž ©¨ª¤£¥š™››šœ©§©­¬®£¢¤˜–—œ™˜©§¨²°±²¯±°­®°¯±°®®²°°¶´´¸¶··¶¶·¶·¸¸¹ºº»»¹»¼ºº¿½½¼¹»¼¹»»¸º»¸º»¹¹º¹¹»ºº¹¸º¿¾À¿¿À¿½¿¾½¿¾½¿¿½¿¿¾¿¶¶·¤¤¤¡ŸŸ±®¯¹´µ½¸¸°­­X\^LRUQUYdeg|wxŠ…†’•’“—•——–——•–“’”‘’†…‡vw{nosjkonprtvwy|z}z~jquVag8EL")4-0:KLTegkhkpilqjnslpuotxrw{rv{quzquzrw|rw|rw|qvzsx{v{~sx{sx{otxdko[afKQW:@F7>DFpkp‚…€…€ƒ‡€ƒ‡~…„ˆ‚†~„€‚„…ˆ‹ŒŽ‘‘““•–“”•“”•“•–•—˜“•–—™š—™œ—™—˜œ›œ Ÿ¢Ÿ £Ÿž¢žž¡Ÿ¡£¢£¥¡¢£¡£¤£¥¦¥¤¦¦¦¨£¤¥¥¦§¤¥¦›œž‘’““”Ÿž žŸ—–˜”“•œšœ¥¤¦œž–•—™™›¥¤¦§¦¨žŸ™—™¢ ¡«©ª¨§¦œœ›š™™§¤¥­«­°¯¯³²³³±±´²²³±±·´´·¶¶¸¸¸»º»»¹»º¹»º¸¹º¸¸¼¹º½º»¾¼¼½º»¼ººº¸¸½¼¼½»»¿¼½¾¼¾Á¾ÀÁ¿ÁÀ¿Á¿¾ÀÁÀÂÂÁþ½¿¬ª¬Ÿ›ž¢ž ³®¯½¹¸RUZINQUWZmjk€{|ˆ‰”’“˜–——•——•–•”–•”–‘|}€npthjnfgklmpvxxz|z}z~€rx{bkqIW^/?BHRTY^_dmnrz}€ƒ†}‚…rz~Wfl.AK&2>:Cohl€‚‚ƒ…‚…‚„‡ƒ‡ƒ‡~€„ptvACI& 'UDG„{{’‘’“‘”““•”•—–˜™•—˜˜šœ™šž—˜œš›Ÿ›œžžŸ¡¢£¢¡£¢¢£¡¡£¢¢¤¤¤¦¥¦¦¥¤¦¦¥¦¨§©©¨ªª©«©¨ª¤£¥¢ ¢š™›“’”š™š¡ ¡œœ—–˜–•—¢¡£§¦¨ŸžŸš˜šŸžª¨¨©§§ ŸŸ›š™¤¢¡®¬¬§¦¦›šœœšš§££®««±¯¯´²²¶´´´±±²¯¯µ´³¹·¸»¸º½»¼¼¹»½º»»¸¸¼ºº»¹¹»¹¹½»¼½¼¼À½¿À½¿¾»½¿»½Á½¿Á½ÀÁ¾ÀÀ½¿À¾À¾¼¾½¼¾¿¾À¾¼½µ±³¨£¤NSWTWZfce}wxŠ„„’ŒŽ•’”—”–—”–•”–“’”ŒŽ{{}lnrdhl^bgdgknpsyz~z}y|€x{€wz~tw{fko\dkT]ePU[ORXX[`\_cach`bedfkilqorwquzrv|sw|qvyrv{rw{rw{sx|sw{sx{mrvfkoejncinX_dBJQ4;BELSFNTDKQHLTUW^YZ`eejnos{}…‰~„‡t}€Zip1DN'3?:Dmei„‚„‚…ƒ†„ˆ€ƒ‡}€„sw{AMRaVXŒˆˆ’‘’””–••—•—˜•–˜”–™˜š›š›š››œžŸ ž ¡¡¡£¡¡£¢¡£ŸŸŸ™˜˜¢  ¨¥¥¨¦¦¨¥§ª¨ªª§©¨§©©¨ª©¨«¨§©Ÿž •”––•—žžŸ¡¡¢œ›”“•›™š¥££¦¤¥œššœ™™§¤¤«©©¦¥¥žœž›«¨ª«©ª¨¦¦Ÿ››¡ž©§§°®¯´²²³±±²°°´²²µ³³·¶µ¼¹º½º¼º¸¸»¸¸¼ºº»¸¸»¹º»¸º»¹º¿¼½¿¼½¾º¼¿»½Á¾À¿¼¾¾¼¾Á¾ÀÁ¿ÁÀ¿Á¿¾ÀÀ¾ÀÀ¿¿¾¼¼¿½¾MRTXY[okl{|‹†‡“•‘“—”–”’”–”–‘‘„ƒ…suwilo`dhadihjntuyz|€y|€y|€x|€vz~swznrvcioahmSV\LOUILSMOTRSXTTZUU[_`ejmqnrwquzrv{rv{sw|tx}rw{rw{rv{puxfkpY_dV]d\ch`fkV]cEMUHOWIOVHNTSW]VX^WW]`_eeejrrw|ƒ‚†‰†‰wƒ[jq3EO)395=oeiƒ€‚‚ƒ†…‚„ˆ„ˆy}[im!49 48=zyy•”––•—–—™––›––š™šœš› œœŸž žŸ Ÿ ¡¡¡£žŸ‹‹|zzŠ„…œ•–§¢£©¦¨©¦¨©¦¨©¦¨ª¨ªª©«¬«®«ª¬¡ £˜—™•–˜œœž¥£¥žŸ–•——––¢ ¡¦¤¤¢  žœœ¢ŸŸª¨¨ª¨©Ÿžš—™£ ¢¯¬¬­ªª£££›šš¢ ¡«©ª³°¯µ³³´³³´²²¶´´¸¶·º·¹¹µ¶º··º··»ºº¹¶¹¹¶¸»¸º»¸º¾»½¾»¼¿¼¾À¼¿¾»½¿¼¾¿¼¾Á¾À¿ÁÁ¾ÀÁ¾À¿Á¿Á¿ÁNSV^^_wrs‡ƒŽ‰‹”‘–’”–“•”‘“”“•Ž}}}prtgjnadhdgknptyz~y{y|€y|y|€wz~tx|otwjnsdjoTY^BFM7;E;=F;E8FLhlnˆ‰Š“’•—–˜——™˜˜›š™š›œšš Ÿž¡œŸ››žŸŸ¡¢¡£œ›„…†qqrnkm{|•ŒŽ¦ ¢«§©©¦¨©¦¨ª¨ªª©«¬ª­­¬®«ª¬¦¥§ŸŸ¡—–˜›™š¢ ¡¢¡£œ››˜––¡žŸª§¨©¦¦ ž›œ¦£¤¬©ª¤£¤žžž››©¤¦±°°©¨¨¡ž ¢ž ª¥¥²­®µ±²µ²³µ²³¶²³¶²´·²³¸´µ¸´µ¹··¸µ·¹¶¸»¸ºº·¹¾»½¿¼¾¿¼¾¿¼¾¾»½Á¾¿À½ÀÁ¾ÀÁ¿ÀÀ¾¿À½¿Á¾À¿ÁÃÀÂRVZfeg}xzŠ…‡ŒŽ”’•’”–”–”’”‘“‹ŠŒzz}qsvjmqehlfimtuyz{yz~y{x|€w{€vy~vz~quyptxdjoNV\06=,1:+/9)+523>79ECEPZ\djmrnrwptyptyrv{rv{tw}sw|sw|quzhnsaglX_d^dhkosfko^djAIQ%-6"+2%,&)/<=ALLR^^cdfjrty‚††ŠŽ…‰€„ˆw„_mt8IR*352:j`d‚€‚„‡‚†„†Šƒ…‰qw{]hm`jmrwyƒ†ŠŠŽ”“––—˜š™››šš™››šœœœŸ  œœŸžŸ¡¡ ¢žž¡‘”~‚gghjgivoq†‡Ÿšœ©¥¦¨¦¨ª§ª©¦©ª¨ª«©«¬ª¬ª©¬©¨ª¢¡¢š™š–•—œ›¤£££¢£›ž›œ¨¥¥¬©ª¤¢¤›˜š žª§¨¬««¦££œ˜™¤¡¢¯­­±°°ª¦¨¡Ÿ¥¡¢­ª«µ±³·³´µ±³³¯±µ±³´±²·³µ¹¶·¹¶¸»¸º¼¹º½º¼¾»½¾»½¿¼¾¿¼¾½º¼À½¾¿¼¿¿»¿Â¾ÁÁ½¿Á¾À¿ÂÁ¾ÀÁ¾ÀZZ]pmo„ˆ‹‘Œ”‘”•‘••“–’‘“‘“‡†‰}~‚svzlorijnlmqvxzvw{wx|xz~x{€w{€vztx|tw|osxahmIRY,3;',5!&0&)3&(314@@DOWZcfipjntosxquzquzsw|tx|tx}ty~sw|msxflq_ej^cggknhlqeinT\c+9B!/9$,"&46;OOSfgkqrw~†ˆ‹ˆ‹…‰Ž‚ˆzˆdqyDPQW_Y^fX`gR[cFPY;DP8?JNRYklq}ƒ…ˆˆ‹ˆŒ“‰Œ”ˆ‹“Š•‰Œ”ˆ•‡Žmx€IZe$5A'2A>G[UWWPR_W[{vzˆ†Š††Š‚ƒ‡‹ŠŽŒŒ‰‰Ž†‡ŠŽ’˜™œ› œ¢žœ¢ž£¢£œ›¡Ÿž¤¡¡§žŸ¥ Ÿ¥š›ŸŒwy}hkomnr„…’Ž‘Ÿšžª§ª­«­°¬°­¬¯®­°­¬°­¬°°¯³°¯³­¬¯¥¤¨š™œ—”—š©§ª§¦ª›šžšŸ¥¡¤®«®«¨ª œ ¢Ÿ¢­©­²®²¬¨«ž Ÿ ©§ª´²´¬ª¬ŸœžžœŸ©¦¨¶²´º·º¼¸½»·¼¹¶»¸µºº·»¸´¹»·¼¿¼ÁÀ¼Á½»¿½º¿¼º¿½¹¿¾»ÁÀ¼Â¾ÃÀ¼ÁÁ½Â{wz†„‹‘”’‘•’•’‘•“”Œ‹„„Š„„Šx{€tuxklqbbhY[`SU[KNWQT\VYacfnoqxquzqt{rt|lrxjrz`irXbkR\fPYcNU`MR]TXa_bjhksegphksjnumryrx~qw~qw~u{‚tzu{‚ty€rxmt|bktXbmOYbGMVOV_Zah\fmWbk5@M#+7:AKcemˆ‡‰‡‰ˆŠ’‰‹”‰Œ•‹Ž—‹Ž–‹—‰Ž•…nw€M[e(4@%) 'WLR|‰ˆ‹‰‰†…Š‹‹’Š‹‰ŠŽŒ‘™šžžž¤ ž¤ Ÿ¥ Ÿ¥Ÿž¤¢¢¨¡¡§¢¢¨  ¦¡¢¥¡¢¦ž¢’•™{ƒrv{ttyvrw|””¦¤§­«¯­«°¯®²¯®²¯®²°¯³°¯³°¯³­¬°­¬¯£¢¦š™ž ©¨¬®¬°¤£§žšž¢ž£­ª­²¯³¤¢¦ž¡£¡¥­¬®¯®°¥¤§Ÿ¡¤ ¥®ª®³°²©¨ª Ÿ£¢Ÿ¢®©®¼¸½À¼Á½¹¾»·¼¹¶»¸µº¹¶»¼¹½À¼Á¿½Â¼»¿¼»¿¼»¿½»À¿ÄÁ½ÂÀ¼Á¾À{~‰†‰Ž‹’•“’–”“—““–Ž“Œ’ŒŒ’‰‰„‰wztv{fgkYZ`NQXKNVKNVSU][^fdgonqyrt|qt|ps{ntzmt{hpwclt^hqYbkSYcINYQT^[^f^ai\`f^aheiqjpwpv}qw~sy€tzv|ƒu{‚u{tz€ry€nv~is{ajsVaiJU^OV^Zdk`krXenBR_KYehnw~ˆ†ˆ‡Š’‰Œ”ˆ‹”ˆ–ŠŽ—‹—˜Ž‘™Š•€ˆŽq|Xdk+8F PEJ|uz‰ˆŒ‹Œ‰‰ŒŒ‘Ž”ŒŽ“ˆ‰ŽŽŽ”š™ŸŸ¤¡Ÿ¥¡Ÿ¥ ž¤ Ÿ¥  ¦¢¢¨£¤©¤¤ª¢¤¨¤¤¨¢¤¨˜œ Š•€„‰utydafpknˆ„ šŸ¬¨­®¬¯¯®°®­±°¯³±°´±°´³°·³±·±°¶©©®ŸŸ£››Ÿ¦¤©°­²ª¨­ ž¢Ÿ› §£§±¯±ª©¬ Ÿ£›šž¥¤§°¯±­¬¯¢Ÿ¤žšŸ¨¤©µ±¶²±µ«ª­¤¢§¨¤©µ¯µ½¹¾¼¸¾¾º¿½º¿»º¾»º¾»¹½½»¿¼»¿¼»¿¼»¿¾½Á¿»ÀÁ½ÂÁ¾ÃÃÀÅOpenLP-2.4/resources/images/wizard_importbible.bmp0000644000175000017500000052033612657640340021431 0ustar raoulraoulBMÞ 6(£^¨   5Vei¢|Ÿ¹w–·d£6Lk 4'>A`zj–²u¾g‰ª5Kh 9"3LVpŒg„£Yv”9Pl3G(82MaZ~—|¤½…®Ç‹³ÌŒ²Ï‡¯Ï®Ïw¨Ìs¡Äi˜¸Z„¡Daz;QeTgy€–­‡ ¼pФBUn 35Ib‚˜ƒ£À|˜¹[x–7UmNk€p¦q«pŽ®}ŸÃ‚ªÍ€¦É|£Àv¢º~«Ãƒ¬Æ†­Ê€¦¾wž´|ž¶†¡Âˆ¤ÈŒ©ÍŒ«Î‰­Ë°Ð”±ÑŽ­ÏŒ«ÎœÂp‰«eœj†ž}š±ŒªÆ‹¬ÏŠ¯Óˆ¯Ó„°Ð|£Âc‚Ÿ+E`4Oj~š·®Ð‰²Ô‰¯Î‘­Ï•«Ï—¬Ï‘ªÌ©Ë¤Çˆ¢Ãƒ¤Á†§Å‡¥È†¥Éˆ¥Ç§Ä§Â‰§Áƒ¤Ã„ Å‹¡ÉŠ¡ÇŒ¡ËŸÇ{žÃ…£ÉŒ¤Ì¥ÏŽ¤Ñ‹§Ò‡§Í‰¨ËŒªÌŒ­Ï‹«ÏŒ¨Ì‡¤Ç„¥Èƒ§È€¨Æ…«Ç‡«Èˆ¨ÊŠ¤Ìˆ¤Ì€¡È…¥Ì§ÌŒ¤È‰£Á‡¡¾‡ŸÃˆ ÅˆžÇ‡œÃ…œÀ‡ Ã£¼š¤epp4DE()!/0$*,3&BM!*!!6B3D-Ia)ER,7'(#"@NIj{r‘ª|›¼t‘³[u”?Ts&<[Ff†i±w¡Án”´Lh…*B$9>Xni†¡`}™F`w-> !15Pci‹¤£¾„¬Å‡°É…°Ì‚¯Í|«Ët¤Ækš½_«Em‡-Id0Ia?UlMa{jœ^x2E^ 02HNi~nŠ¥m…£Pgƒ&=U,CZD_uFb{A\yTs’u›¼v¾hŒ©W~“\…˜m—«q›¯f XyŒVqŠ]w—mŠ«ž¾…¦È†ªÊŒ®Ð¯Ó‹­Ñ‡¨Íx”¶Tlˆ7PjVrSq‹t›µ€¬Ç‚­È§Ät­GZy#8Th€œ‹©Èˆ®ÌŠ±Í²Ï‰ªË…§Ê~¦Æ€¥È¡Æ}žÀ{ ½}Ÿ¿ƒ£Æ‡§Ë‹©Ë‹¬Ç†«Ã€©À}¥Á„§ÈŽ«Î¬ÏŒªÎ…§Ëƒ¨Ì…¨Ìˆ¨Î†¦Í¥Ê€§Æ€§ÂˆªÇ†ªÉ€©È€¨Ì„¥Í‚¤Ëƒ¤Êƒ£É¤Ç~¥Æ€¦È…¢È‰¢É‡£É¡Ç€¡È‚¢Ç„¢Ã‚ ¾¡¼¡½€ž¾ŸÃ…¤Èy‰ #,$4:(13&)!!#!'(!6C+EZ:M3H)=N;We6<! ")&&% (7.?QG]tnˆ¦ž¿~ Â|žÃyÄxžÅy¡Æ~¤Ç¢Ãw–·a}šF^yD[xb{Ÿt¯Th+9*68N_AZq_–z ¸€¨Æ~ªËu£ÄsŸÃl˜¿^НGlŽ(Eb3OUvLe†Kd…CXz@Tx@U|4Jm$6R'<0AUJeyEcv";N)<3GZYoˆK^z/A[;Um^šzŸº…ªÅƒ¨Ãz¶Rn2A!0+@T:Ng*:S[8PhMk„ )''## &$!0#1FNc|y“±‡§Ç†¨Ì†¦Ï„¨Ñ€¨Î€§Í‚¨Ë…©Ë†¦Ézš»mЬl‡¬|•½•º\l„.;*6W:UpGf^•jŠ Xv‹1J]&8 &,"1B*;NOf‚u’´ƒ¥Ê‰¬Ð‹«Î‚›¿dv™*7V=Mjz’¯…¨Åƒ«Å~§Àw˜°fž\z–h‹¤h¦Xv’C^wZr‹rŽ©|›¶| ¸w¶vš³v›¶{›º~œ»»}ž»~£¿~¢À¦Ã}¡¿v›ºyœ¿ Ã‡¤Å‰¨Ç‹ªÍˆ©Î„¦Ê…¥Ê†¢Éˆ¢Ë†¢É… È†ŸÆ˜¾n‡¬g„§nŒ­y•¹ƒÄƒŸÆ€ŸÃ€žÄ~ Ä} ¿ Â|‹©Ç½ÇÑ©«³SPQ    " '( '$:L&>Y3JeUy“g•¬9^m&)$"  "0*$5I3H`_x–‡£Å­ÐŠ®ÒŠ¯Ó„ªÐªÏ}¨É‚ªË„ªË‡¬Ï€¨Ë{£Å¤ÇŠªÍ‚ž¿d}•);M!22G[G\vG[y`zš}¢Â}¨Êv¤ÇuŸÇvÊwžÉwžÄn—¸g®h¯o˜ºy¡Áu˜¹bƒ¦\}¡kŠ­y›¼zŸÁvŸÁqš¾o–¼j“¶n–¹x›½y›¾x™½y—¿y’½s‹´d~£TlLf‰Vv—fŠªfˆ¬Wu•;Wr'?Y#8R$:TAZvTnPj‡-F/D]CWu\x–wœ¼|¥Çx£Æv¡Æv¡É{¢Í|¡Ìy¡ÇvÁy Ã|¥Æ{§Çz¡Ãv›¿p”ºw—» Ã~¤Æz£Å{¢Æy ÅužÁv¿}¢Ã£È£É|ÄzšÁx—¾r‘¹m‹²jˆ¯j³m“¹q”¸n‘´d„£SnŒHaRp‘e„¨u“¶s±a~G_{ 2H 3/AUPfy7J[.=Jcuk‰¤yœ¾¢Ê¡É€ Ê}žÇy›ÁjŒ®`Ÿn’®tž»oš´^€—XtA[zZq“s‰¬t®s°v•µ}˜¸}“´|§™~†‰Vac ! ) 5D)?T8VmBd{)E`0I_),()!!! &'# x¡Ày¢Â¨Ë‡®Ô†°Ó…¯Ò¢Æm‰­Xw™ZŸsœ»«È‚¯Ë¯Ï€®Î„°Ï†°Ð­Ët¹`B\z.De7MnPj‹f‰©wŸÂu¢Åv¡Ås¡Ãr£Åw¥Ê{¥Ê}¥Ë¤Æƒ¦É„¨Ì‚©Ì§Ë~¢ÉzÄ{œÁ€£Æ‚§Ë¢Ç¢Æ}£Æ{£Äz¤Ã|¥Ã¥Çƒ¥É~¡ÆyŸÂxÁv™¿w–¼w“¼s–¼t›¿yžÁyŸÀt›¹n®nŒ±t“»{Ä€¡Å€ Äyš¼mŠ©Th‚%7L7KMi~]u+=S,BUb€—u˜·€¡É Ê|žÈxžÆwŸÅv›Àv—¼v˜¼w¿r™·m‹§[p‹J[tXtFb;Po"0K$3HJ_tOg2G]$4 .(7Q7Kg4Fa%3K)A8JeDXw7Ld$7G'5PSl†VpŽG\|J[|^pUk†VoŠj}›{ˆ¤•™irtDKL033  '!5C&@S">N4D&&&$%)- ±Î‚±Ñˆ²Ôˆ±Õƒ°Ó€«Ïw˜¾]t›:TwLkŒm‘°‚¨ÄŠ°Í‰±Ò‡°Ò‡±Ð…³Ò…³Ð€«Èx ¾k®a}¤_{¢iНx Ãy£Ët¢ÈqŸÃn Àn£Ár¤Äz§Ê§Ì‚§È„¦È‚§Ê€¦É€¦Ê¥Ì~ Ç} Ã¦Ç¨Ë€¤Å¥Ä‚¨ÇªÇ|ªÃªÃ‚§Åƒ¦Å‚¥Ã€¤Ã} ÁژÁz™Àx Á{¤Ã{¥Ãy¡Áz Á|ŸÄ¡È†¦Íˆ§Ë…¤É£Ç~¿t¯[s[Tc„fw›Xh‡;I^ /B3H_]{™b¥Ol‘B`a‚ x˜¸}œ¿{œÁzœ¿u”²bx”6F_&;08M`e€šq«d}ŸJ[|9FbEVo:OiXe}xˆJPS:CD/89 &&""&6>'3#  $",/!,+x¬Ì€­Ò‰®Õ‡¯Ò‚¬Ð~¥Ëw˜Ád|¨Mf_}¡z™ºŒ«É“²Ó²ÖŠ°Ôˆ±Ñ…²ÐˆµÓ†´Ò®Ë‚ªÉ}¡Ä{ŸÃ~¥Ç‚¨Í~¦Ïw ËqÂp¾nŸ½r¢Äz¦Ì€¨Ï‚¦Ë¤È{¤Æ{¦Å¨Ç€¤É~ Æ|£Ã~ªÉ‚«Ë…ªÊ†«È‹°ÊŠ¯ËŠ¯Ë‡­È„ªÈ…ªÈ‰ªÇ‰¨Ç‰¦Èˆ¡È…žÇ‚Æ~žÅ~¥Æ€ªÆ}§Ä~¥Æ€§Ê§Ë„¦Íˆ¦ÊŒ§ÉŠ§Èˆ§Ë†¤Èƒ¡Äx˜ºl°nޱ}“ºgt•'3K0FXqަƒ¡Â¤É}¤É¥Éƒ¤É‚£Åƒ¡Æ€ É‚¤È…¥Å†£Áž¼º{˜¸v—¸t•¸{•¼y‘¶tŽ­s®w•¶p²kˆªg€¤n…ªt²k„¨]s”\oj|¡vбtˆ«fv”N\y=Oo[t˜l‹¯`¡?[z8Snh†¡y™·{š»|š½y”¹r…©\lCRs4EcMc€kˆ¤y™¹x•¶e{š@Om4E`_q…itv=HH08<)37$,0'22'44$$ """ ""$!  !)43!!i™Ãp˜ÆyœÉy Êz Êy›Èu”Äj‰·g‡²t–½‚£ÊŽ¬Ñ®ÔŠ®Ô„­Ò­Ð„¯Ðƒ°Òƒ²Ó‚±Ñ…±Ñ…­Ïƒ¬Ì†­Î„©Î¦Ì| ÉzžÆvÂtŸÂu¢Åx¤È|¦Ë¥ËxŸÄv¢Ãz§Æ§È¤É€¡È~§Ç­Ì„¯Ï‰¯ÑŒ²Ï²Î²Ñ‘¯Ð¯Ïˆ°Ï‡¯Î°Ï‘¯Ñ«Ï‹§Î†¤Í…¥Î„§Í‚¨É…«Èƒ©É‚¨Ì‚©Í…«Î‡©Ëˆ¥ÈŠ¥Ç‰¦Æ‡¦Ê‡¥Ê„§Éƒ§É‚§É‚¤Æ‹¢Æsƒ¡/9O/?Ry¨‰£Ä†§ËªÌªÍƒ§Î¤Ç‚¥Çƒ¦É†ªÉ‰ªÆˆ¨Å…¥Å„¦Ä£Àxž»w»}ž¿ž¿ž½ ¿}Ÿ¿|žÁ|Å}™Á~šÁ~›Áw˜¼u’·w´yŽ·|•½x“¹uŒ±n€¤cwšf€£lŠ«g…¢Nfƒ+A[Ea{n‘®s•·v—¼x”½uŒ¶r…¯h~¥^wœd€¢p޲wš½yš»s­[oŽ^l{NVY5?A,7;+/3#-.!.. $(*-1''"#!.1^‹»bŠ»h‰½kŽÂjÂh‰Àc„»`…¸dмl’Ár—ÅyœÊŸÌ} ÍvŸÌuŸÌw¡Ìz¦Ð}ªÓ}¬Ñ®Ò‡°Õ‰®Ô…«Î‚¨Ë~£ÈxŸÅtœÃuÄx Æz¢Æz£Å|¨Æ|¤Å{¢Â}§È©Ë‚¨Í‚¥Ë~£Æ©È€¬Ë…¯Ï‹±Ô‹±Ó‹±Ð²Ñ°ÓŒ²Ôˆ´Ó„²Ñ‰±Ñ±Ô‘¯Ö¬Õ‹«Ôˆ¬Ó‰¯Õ…­Î…«Ë…ªÌ¨ÎªÎƒ¬Ì‚¤Å{˜¹{—·½ŸÂ¤Ç§É‚¬Í‡°Ð‰®Î‰¥Æq†¡,;P3F[w‘­ªÌ‹¬Ð…­Ð­Ï«Ð€¨Ë‚«Ë‚­Ë…¯É‡­É…©Ç„¦Æ€¡Â|Ÿ»w¹rœ·z ½€¢À‚¤Á¥Á‚¦Á†§Çƒ¤Ë‚¢Ê€¡È€£È| ÄyšÀz—¼{”»|˜ÀzšÁy”»u޲p‰«o‹¨d‚›Sn…Le|8Pg-Jb_‚žo’µw—¾u•¼v’¹x‘¹t·jŒ°h‹­p¶v–»w—¸{¤Zbj+78-78.48%-,%(). /FH*+ !  %% # !&"&/2!+,m˜Än”Ão’Äo”Èl‘ÉjÇgŠÄcŠÀi‘Än•Çm”Ãh“½k‘¾pÃkÃeŒÁhÄiÆj•ÉlšÊsžË}¢Ï¡Ï|ŸÊz ÈvžÅo™Àl—ÁqšÅxžÆ|ŸÃ}¡Á{¢¿z ¿xž¿z¢Å§Ì‚¨Ñ¤Ë|¥Ç~¨Ç¬Î…­Ð‡¯ÓŠ¯ÓŠ°ÑŒ±Ó±×Œ³Ö†²Óƒ²Ó†²ÒŠ°ÒŠ®Ò°Ö°Ù‰±Ö†±Ö†°Ñˆ®ÑƒªÍ}§Ë|©Êz¥Ær˜¸[x—TlŠjƒ¡|˜·~ Â€©É¬Í­Í‡¯Í„¥Àb|‘%;NUh@Zn'EXZ~–u˜¹z˜½x”¹v•¹x–½x˜¿n“´l‘±q²ˆœµ_in6=B,87")+%(01.'&)5:-.%$"! "&"!  !'(#**" ¦Ð~£Î~£Ðy£Ñu¡ÒvÐv›Îs›Ít Ïx£Ñv£Ês¢ÄtžÄxšÈt–Ép•Ço•Èk’ÈgÈeÅgÃo•Æs•Èp“Ål’ÃeŒ»`ˆ¶`‰¹g޾l¿s”¿t•¼q“¹r‘¼p“Àr˜ÃuÈy¢Íz¤Êw£Å{¥Ç}¨ÍªÏ«Ñ†­Ñ‹­Ñ®ÑŒ¬Ó‰¬Ò„¬Ð~«Î~«Íƒ®Ï„­Ð„­Ô†¯×ˆ±×‡°Ó†¯Ñ„­ÏªÌx¥Èt£ÄqŸÂf²Tn’5Gh:Ji^uy™´‚©ÆªÍ~©Ì¨Èy›·On‚@,01$('"*)%%+.-.'44+) !" "# !%!#%("!  #&#!#Š¬Ôˆ©Ò„©Ò|©Òx§Óz¤Ñ}¢Ðy¢Ðy¨Ñz¬Ñ{¯Í|¯È€¯Ì„¬Ð}¦Ïz¥Íx¤Íy£ÒvžÑtÎsÊsžÉw›Ìr—Ëm“Çg‹½`ƒµa„¶eˆºiŒ¾h‡¹i‡·f„µh„ºhˆ¿eŠ¿eŽÁi“Ãl—Âm™¿o›Âq›Çr›Ér›ÊwžÉ}È{™Æ|™Ê{›ÊyŸÉu¡Çu¡Æy¢ÇuŸÉu¡Íz£Ï¥Ï‚£Í‚¥Î}£ÊxŸÈo˜Äl•Áh’¾fŠ·_w£ERz&.O&6OKd|p’­{¡Á}£Äv™»d…¥3Vl EWW}–‚§ÆŠ®Ðˆ®Ò…¯Òˆ°ÔŠ®ÓŒ­Ó®ÔŒ­Ò„«Í‚¨Éy˜¹Vp‹%:P7L8VoIhA\s/K^[zŽ‚¢»‡¨Å‡­Êƒ«Ë„§Ê‚¤É£Ê|¢Éx¡Æ|¢È¡Æƒ¢Æƒ¡Å~ŸÅ}ŸÄu–·_x‘/A#*9K8J]2G_l†£ˆ¤ÅƒžÃ~š¿zœ¿x Ã~¤Ç|“ªR]`6=@-7;"-- ##%*#"&%'(  *)!&& $$'%!"#" " $# #(%'+&‰©ÒŠªÓ„ªÒz¦ÌpœÃn–¾r—ÀtžÈu¥Ìx­Î|±Í€²Ê‡´ÎŠ±ÐƒªÌ|¨ËyªÍ­Ó«Ó~©Ó~ªÑ}ªÐ‚©Ñ¤Ðz¡Ïw›Èu•Ás—Âq™Ãp™Ät˜Æw—Æx–Çu‘Åu”ÈmÅfŽÂgÁg޼j’½m”Áp“ÄlÄkÄm‘ÃmÁjÁf‰¿g‹¾i¾m˜Âp™Âq•Àn“Ãh’Äm“Ãv•Åt’Ãs“Äp“Âq’ÄlÃeˆ½c†»b‚¶^x©N]Œ/8_=&B0IdQnŠ[x”Wt‘C_|Sqw“´†¥Æ Ã€ÂާÃy“¦\bj59;275*45")(&"$"!+/--'''./$'&#)(## !*)$(* "%% %%""$"#%0*%-1!#()+(‰©Ò†¦Ï€¦Ìl“¶Su—JhŠQt˜^‡­k›½u§È}®Í†²ÑŠ±Ï„¦Åq’²j²nÀx©Ê­ÏªÏ­Ð~«Êƒ¯Ì†°Ïƒ°Ò…®Ñ„©Ì€¥Ç§È}¨ÉªÎ†­Ô‰ªÓ‡¨Ñ…¨Ð}¤Íw¡ËvœÈr—Àt˜ÁyÉ|Ê{œÊw˜Èu—Äu™Æq˜Ék“Åk”Âk”Àm”Àu›Äv›Âs—Ão–Æo”Áq“¿n¿lŽÀn‘Äq“Æp‘ÇmŽÆjŒÃg‰¼c°XnœET2@d'9Z0P/N5Q4N3N,L'GlIoœ^„³mŽ¿p’Ãp™ÉuŸÍ|¤Í‚¤Ê‚¦Ê{¥Íy¤Í}¤Íx›Ác§Sq”^£u›¹yž¹m¤Gar0ALh€yœ¼‚¨Ë}¥É{ ÅyœÂvšÀtšÁwžÅ~¤Ê„§Éƒ¥Ê„¤Îƒ£Ï¢Ê~ŸÆs”´Xu+A[&B2RRk„ À’¦³|—}„ŠNTX4@C489%+,#'(&*/('""&((&% !$ &!" $  !#%!%$#"'# "*' (%).*†ªÒ†¦Ï~žÃWu”(@Y$c…Mw–h—´{ªÉˆ²Õƒ¥Æh„¢B]xCc‚W¦lš½}©Ë|§Éqšºh’ªs²­Ãƒ°É«Æw¹v—³¡¼„«È„­Ïˆ±Ôˆ¯Ò‰¯Ð‹±Î†¯Í‚­Í€¥Ç~ Â{¡À§Çƒ©Ë„¦Êƒ¤È¡Â€¥Ç¥Í}¢ÎuŸÆi•¹gŽ´q—ºz¤Á‚ªÌ}¦Í}£Ëz¢ÇužÆvÊtœÊy¡Íz¡Êw¡Ëw£Ìv ÈtœÃp”ºlНh‚§`yšXp“H_‚9Ro6Oh7Pn=X}Id‘Xvªdƒ¸iˆ¾gŠÀbŠÀgÃp”Äv˜Äs–Ão•Äq˜Æs–Åq“Àk¹b‰¯c‹°m‘´o‘®_~”=Ug':0Hcc‚¦s˜½wÂq—¾n·o‘·o•»p™Àw Å~¥É}¢Ç}¡É¢Í}ŸÇ~ŸÆvœ¼j­]|œIb†Xn‘y‹œ}‰‰'245@@,/:6=>.63$++$#!$!"!-,$"'$ ")&(.!! !!"%#&))"&'$ #%"$$   )*(*$…ªÒ‡§Ñ|–ºJ_y':5H(02%*+'26&%(67&% %#!"! $"" (( "!$%% ! " !(%#! !!""##"*'„«Ô…¨Ðy•¶J^u//BA^wEb~,F_1NceŠ¢€¦Ág„ .BY&:A[rkŽ«~¤Å¤Æg†¢-EY$3.HWOn~Lm~?Zl+?R.B0J^B_vTrŒfžNi„1Od=]pQr‰Vq>Ur0Gc1Jd=VoUrŒ`›Lh€.G[6Pd_}•{™·kЦCbu!=P9XmMr‰o˜³}©Çt »d¥Jo‡Sz•nœ·zªÃ¨Å|¡Âs—¸o‘³u˜»ƒ¦È‹©Ì‘«Í©Ë’ªÌªÈ†§Â„¨Á‰§Å†¦Çƒ¦Ë…§Ð‡¨Ì…¨É‚¥Ê|¢Ëz¡Íz£Ì|£Ï£Ò}¡ÐwœÉu—Äp‘¼q‘¼o»oЏh€®Vn‘Q1$8?Yo]z”]y•F^z+BY.@0M]?[o1F_ 3N+E_B^zKc€=Vr4Qj(CY-B(?S6RgEayMh|/HV1??^rPr‹Kn‹V|ša‰¤OtŒ$@Y-KfBi†b‹§t˜µo‹¬Qi‰;TrMgˆk†©… ÃŽ¨Ë“¬Í”­Î’¯Ëˆ®Ä‚§¿œ¸„¢À„©É„«Ïƒ¨ÈyŸ¹t˜³vš»wÁw£Çz§ËªÏ~¨Ìw¢Âr—µkŒ©q“²|œÃƒ ÊÆw’µi€™TjNf€Yu—e«h…³g†¶f„³j‰³t‘¸y”¼u“»n’ºh¹e·i‘¸l‘¹lºpÀs’Âm‘¿ƒ—®Zef08<)47-45*:<%,- .1"+.&0."$+" !)(& ")-#)&'" #!$%&'$"#%#$#%'&"!"$)(!/2$ .6;!$#*1+ #)'$.1&15%)!##wªÌy¨Ét¾Xu‘,A!.(92IKfr™¶vž½aŸ*=V&0<5SfWx“yš·~œ¹d|–/CU$1$9E0FV,VqBd|a‡¡p‘®e„ Rp‰;Vp9RlLhVt‰Mi€:Rh)?R%@QGic‰¢f„¥Wt™Cc„1Nk.K(B`JkNq”Sq’Pf‚+=T2H?Wr`zœw“¶‰¦Ç’®Ì’°Ì¯È} ¶e…]s’d}žt–¶~¡Æ¤ÃkާEeyPm†Wv—b…§q™¸y ½wŸºk‘ªQo‰Eaz]{˜t’µƒ¡Å€ŸÃz™¸j†žfƒšq“­{ŸÀ‚¥Ê}År“»jгs¶~—¼€š¼v‘²h‰©cŠ©dެi°o•µu™»yšÀˆ£Äq‚‹;GI+6=.9?,67&..#'*)(!)*")-!--%+2$'(#$&*"! &"""#$!$%$ $*, "+.0(%!!%%()#(//#'$#&&"%$z©Ìx¥Ætœ¿b¡3F^  %':-C\Xu“t™¼xžÂn±@Vs 19GDexEeLj†p«x•°_w8Mb"6K7MbH^vOb}E[ySpŽv™µ‰®Êƒ¥Âk‰¨SoUt‘n‘°x–¶nŒ©hŽªv ½…ªËƒ¥Ä|›»mޝn®w™³|´w•¯gžVmŠNj†Z}™q•³y›½t”ºfƒ¨Lfˆ1Gg:Ssa¤hб_}¢F\y);P&:LSo†o°|žÁˆ¥É­ÏŽ¯Ì‚¤¾b€™@WrG[|Un“^¤w—¾‚¡Äj‡¢,BW0F.GcGcƒ]zšf†¡o¨Yu+@\)?ZNhˆWp”c}¡j‰¬jЍUnˆX*@$?SVl|p‡MZ[#11+25+2506:%+/'-),$35"('**)),0 &+&,(!%!!&)"!! (( !  #%$"&' %#(2)%.3",+'(  " !&%!%""$"$!}¤Ð}¡Êu™Àp“¸_y&7U 24Ha_{›\z D_‡Qn“m‹®_w—%7L)4Kjx}¢¸a…¡9YuTvŽ{ »|¾‚ ÃŒ§Ë‹©Í‰ªÎ‡©Ì„©Ì‚«Ë‡­Í„©Íz£Ès ¿w£¾w£¼v´{›¶~¡¿~¦Ä…ªÊŽ­Ï‘®Ñ‘®Ô®Õްӑ±Ò¬ÏŒ«Í‰¬Ë†©Ê…§Ìˆ¨Ï¬Ó®ÒŠ­Ëƒ©Å{¡Á~ŸÄ„¥Ê‰¨Ì‹¨Ê†¡Á}˜¶z—µ|¾§É‚¨Ë…¨Í‡¨Ï~¤Ær—·Nj‰0L7Qniˆ«y–¼}ŸÃ„¤Å~—°GWi )2JSk‹z•¶œ»tެTk‰(:W0JUmŠy’´sвUk”3Hk*;W-E%:V2Pr@_„Wn’Zi‹8HiF[{UpGa…F\(:Y 9VepXhj#./'/0)87+53,47#,-#+0!**!%!!&'($)"+.,!$#%('&-."$#$&#"!#!!(** !#$"#,3$$$$#&# &% "$ '#!"!&!#+.&21$!!"$#!'&%(%")(‚§Õ£Í|ŸÇuœÃi‹²=Uw 4"5Rb n‘·Ss™8WyRpŽk„¡EXm"0+CPiŠn‘«@`x?^vs•²¡Å‰«Î°Ñ°Ñ°ÑŽ­ÏŒ¯Ñ‹°Ð‹­Î‡ªÍ©Ëu¦Àr ·_‡Qq‰Xqay—pª¢¿ŒªÈ‘®Ï¨Î¨ÑŽ®Õ¯ÒŒ¯Ð¯Î‰®ÊŠ®Ì‹­ÏŽ®Ò“±Ö”²Ô²Í…°É‚®Ìƒ®Î‰¯Ò’±Ô–¯Ó“¬Î«ÌŠªÌƒ§É¥È€£Ç„£Éƒ£Ê{ŸÁvœ¼d„¤9Sr2O?]{mŒ«vš¹| ¾{—¯J[m 2;QkWst‘¯»z–²_x“CYsVp‹z–·†ŸÆz‘¹Zp”=Po8NjNk‰X|ŸZ|¡Rm”J_ƒ>QuVlŽoˆªdz L]…DTr^jt7FE1:=29:.78).2 (($))!,+"*+"#"$$(,*!#%"'*&'((%"#('! %&'$!  ""')(")#&(#% !"" )*0$$ %!"'&()!"""# !$$&!)' $ %$"*(~¨Ó€§Ð‚§Ðx¤Íj™¿Lq“0L;Hesœ»j‘²KmŒ6Rn\uh}”6H[)97Sd[{9Yo7Wpj‹¬†©ËŠ¯Ï±Ð±Î’³Ï•³Ó°Ò°ÓŽ°Ò‡©Í‚§Êz¥Àf¥@`w9PlQcƒPaMeœ¸‹©ÈŒ«Ëˆ¨Ë‡¦Í‡§ÎŠ«Î‹¯Ï‰­Íˆ­ÉŠ®É°ÎŽ±Ð²Ó²Ñ‰°Ê„¯Çƒ¯È†²Î´Ô’³×˜²×—±Ô’²Ò‹¯Ð„ªË¥Èƒ£Ç…¡Æ„ Æ} ÂwŸ¿p–¶a¡>Xz$=]:WrZ}˜n’¯m§G\p $$9M`]z‘PoŠh‰¥~ º}›¶tŽªt’®|»‚¢Ç›Ãv¶f¢`‚ g‘®k™¸i•´gޱ`£\x›iƒ¦{•¸”³x…”IZ[)56.;;*24*67$,/%'%/.+-+'02")&#&"#("$)*##"! +-*"#$#)+#02"-1!'#!)$"'$%*)$(##$320.$($ &#&("&)$$"!"**$12)-)!"$ " #"'%  ""%'"%"uŸË{¡Î~£Ðv¥Ïf›ÁVƒ¦6Qo 5!=PZ‚˜tœ¸`‚¤4NkWo~œ¸ƒ¨Æ¥Æ€¥Å„¨Ç„«È€¯Æ®Æ…­É‹¯Ð³ÕŒ´ÓŠ²Ñ‹®ÏŠ­Î‡«Ì†­ËŽ³Ï´ÒŽ´ÓŒ²ÓŽ²Ò‹±Ð‡®Í‚©É‚©É}¦Æz¡Á}£Å~¥È§Ë¦Ì£Ì¡Æw—¹[x˜8Po%=\3Kh0E\*>(>S6N[y“p”±KoAeƒzžº‚¤Â€£Áxœ»p‘¶s”½xœÃvžÃuŸÁr Àr¢Àq¢½u¡Â{¡ÇŸÁn‰0%:M-H:RtPj’RqSq Wq¢Zxª`ƒ²hŒ¼nÂn‘Ãs–ÇzšÈzžÇwÅp—ÂfŒ»d…»g„½jŠÀmŒ¿lйf‚¬c~¤Zs–>Qm.F+H=Uy_{¨hŠºh¿n”ÀwœÇx¡È}£É€ Êƒ¡Ï~¢Ð|¦Í¦Î…¥Ñ¡Î|¡É€§Ì†¬Ð…«Î‚¬Ì~©È{¨È}¦Ê§Íƒ¤Ì€£È| Åyãʃ¨Î…ªÐˆªÑ‰«Ð‰«Î…«Ë„ªÍƒ§Ë‚¡Äq®]~—Vz’eˆ¤Vv’1Nkt”±kŒ­8ZyX}™}¡½o­QoŒHg‰X|žo™»u¤Äu¡ÀwŸÁ‡§ÀkŠ8EJ7?D087)00&-/$01#"#''"""!%)#$##$###"$! ""&'%*&#&#&$$*.!%"! '+&!%*(+/*"($  &%!$&#)*%,,%( #$#))!!%% !%""" $+)"'' # #" '"""!$%+*$$x©Çz©É­Ï„¬Ó‡¬Öƒ©Ï„ªÍ‚§Éx˜¹_w”+:S3(>+@\Rmk‰¯p¹x•¿}˜Ä|›Ç|ŸÈ| ÉzÈxœÉzžÌ}¢Ì}¤Ëx¡Èq›Ãk•ÁiŽ¿nŽÀs‘Áu”Ât”ÁpºlŒ³f‚¥Vl‹FWwFZWo—g‚¯m‹¿nŒÃoŽÃz˜Ê|žÍ{ŸÍ~œÍ~›Í~œÐ|œÌ{™É~˜Ëx”Æs’Âw™Ç|›É{œÉwÅt›Ãs›ÂtšÄt—Åw—Çv•Âq½p¼w–Ã{šÆ|ŸÈ~¢Ê¤Ê¥Ëƒ§Ì…¨Ì„¨Ì‚§Ë¦Æv »rž¸u¹d„ -HcVqŽm‹¨8WrIj…z¸{š¸l‹©e†¨lޱwž¾w£Àª¹ƒ’BQS:EH197'./'03"*)$04#..#)(%%$*(*"#*21'*+#!"))"!$+,$!!%#%+. %"!...%$ #,00$-/#" %$ !!#!!() %)#')##'!!!%#+'"$ "$"%$!"%& $"$ ""()$ "%(#$''.0€°Î®Í¯Ð­Ò…®ÔŠ°Ô‹±ÓŠ°Ïˆ«Ì‚ Âk¢DUr3EcKeƒn¯¢Ä†©ÍŒ­Ï®ÒŒ¯ÐŠ°Ï‰¯Ï†¬Íƒ¨Ì‡«Ó…®Ó®Ð~©Ë|§Êu¢Çu ÅzŸÄ¢Æ€¢Ç¡Ç|žÄxÁy›¾v”·t´u¸~›À„£È…¥Ñƒ¡Òƒ£Ò…¦Õ„¨Õ€¦Ñƒ¤Ð…¥Ò†¦ÓЧ։¤Ô†¡Ô€Ïz˜Êz™ËÍŸÍyœÆt—Ãq”Àq–Ão”ÃmÀjŠºg†µh‡¶h‰¸i‹»i¾l’¿p•Àq•Âu–ÃzšÅzœÇxÇsÃmœ¼h˜·k–·_~Ÿ.Eb1GdUn‹)D^.Jec„¥s”¹w™¿r–¿r™¿}¢Ã{’¡ISW4:>.76(-/'./%.3".,''#** %"&$%"""!"" #!&'&)-(,+(&%*(&"#'%%'& &'!,1.')#,72"))!##+)%& !"" "(( #("'+/$"" !!$! '%%.,(,*%,- %!"$'#!%&"&$$%%"!&&+3: $" z«Ä|¬É¯Í­Ðƒ­ÐаӵՉ³Î…®É‰¯Í‚¤Æs´hƒ¥q“²€¦Å…¬ÍŠ±Ó´ÐŽ´Ñ¶ÑŒ´Î‹³Í†±Ë‡¯Ð°Óˆ¯Îƒ¯Íƒ¬Ë©É|§Ç|§Æ}¦Ä€ªÆ‡­Ë‰«Ê†©Ê„©Ì„©Ë‰ªÐŠ©Ð‡§ÍŽ®Ï”²Ò“³Ó°Óˆ±Ö‡±×…¯Ö„­Ò‡­Òˆ¯ÔŒ°Õ±×¯×Ž¬Ø‰«Ø†ªÖ…©Ó‡¨Òˆ¨Ñƒ¥Ë€¡Ë}žÊz ÉxžÈtšÄo•¿p–Àp•¿k’½j’Áj’Åk“Ãn”Àu•Å{™É{™Ç|šÈx›ÇrœÄg–ºc”¸dµ[x¡4Ik/M7Id*C.LNi^|©iŠºo’À{–°_mq8GK2;<*.-'-.(..'.2$/0!%# &!$*% ,(&&%$(#!" $&##*,(& ()!#"&#!%*)#$$ &%'(! ! %"(&175,0,,-/#('$.1#'((( # #+($#$!%$$ "!& #$" $""()(24+36")&#!%)(!'"%'%$" $$')&'*'02&--c¨m™µ«È„¯Ì„¬Ìˆ¯Îƒ®È}¨¿‚®Å†²Ì‡¯Ï€£Åt•µtš¸ˆ®Í´ÒŒ²Ñˆ°Ê„­Æ‚«Ä~¤¼}¥º~ªÂ†³Ì‹²Í‹²Ë…®È‚©Æ€¥Åx ¼w¢½{¦Á‚¬ÉŠ¯Ï“²Ñ°Ï‹®ÏŽ±Ò³Ö³×Ž²Ó‘¶Ó—¸Ó—¶Ò’¶ÒŠ´Ô„²Ó‚±Ò‚¯Ð„®Ðˆ²ÒµÕ”·Ø“µÙ´×‹³×‡´Öв֋¯Ó‹­Ó‰ªÑ‡§Ð‡¨Ð„©Í€§Ë{¢Æw¢Åy¦Ê{¦Ê{¤Êx¢Ìw¢Ïu¢Ìv È€£Í…¦Ï…¨Î†¨Í…§Ì~¦Èx¤Æw¡ÇwœÇm·Jc†/K-=V(B.M[ršq‹¸“®`qq9FG5>=)56%+.+.-",/(*#+'$"!$"!%%#(&!(!$$'')#$$'12"++" ! '/0%+(#!!"!'!(.( %!''!&)))-+ %(&,)'6=*)#! &##$$&*" " "*-  "" !!" $%! %#!%+'-..#% "$$$-/'(!%#!%#((**;\xRu•hªuœµ~¤¿z¡»k“©Z’hŽ£€©Á§Åk‹¨Db|Sv‘tš¸}¡Á} ¿| »l‘ªX{“Pn…Xy]„šg’¥~¨»Š°Æ†«Æ¡Àr°\{—a„žv¸¦Å‡¨Ê’¯Î‘¯Ð®ÎŒ¯ÎŠ¯Î‰²Ò´Ó´ÒµÑ’³Ð±Î‹±Ïˆ²Ðƒ°Ð€®Ñ€®Ð„³ÑŒ¸Ó’¶Ô“²Ó²Ñ´Ò·Ö‘·Ø’´Ø¯Ö†«Òƒ¥Í„¦Ì„§Ê£Æ{¡Äx¤Å{©Ê€«Í„«ÌªÎ{ªÏwªÌz©Ê…­Ï±ÔµÕŒ°Ï¯Í‹®Ìˆ®Í‰®Ò‰¬Óƒ¥Êh…¥+?[&6N$5O,A`yŽªt‚‰=JJ3;<)25)0,$12"''!)'+10(,-$00#20 (%&+*%,,&++ &$"!!$%#"#%$#$!("#'&#%'('+'"#!' !#)%&-2!') */*$*( !!)26!&'()!#!#'%!"!!& ##!!" '$!/,"!# $-1 )* *, !!(& !" % +&!')+%--%(% '$.FcLhˆGfƒBd{Ty^ƒ™Jj|+FVGduf†Ÿo¨Pi€$d}1Un.Pf&?T4FJgzg‡Ÿ\{–2Md5JGc|n¯kˆ¯Ql8Ro1G /2BZq†¢l„ŸCVm$9J)@TKdZpOby1A2IWt‘§s’°e…¡VuJg~9Wk+I^>]vTqŒa|šp§kŽ¢WwŒPk„\w”lЬw•¸€žÄƒ¦É†¯Î‡¯Ë ¾d{˜Lf}u“­«Ë©Ëw’¯Ro‰IiƒOq^ƒmŽ©m‹¥Ie~@bxh§€¤Á…¤ÃŸ¿r•²q˜±y£»†«Ä„¤¼p¥q”®‚¥Ä±Ð”³Õ“´×‘´Ö¯Î‰§Äp‘ly~KX]6@D*66*.3.4:>JP&17)+*" !((#/, "!&12&("%'"*' %"*)%&-,"&&'.1"-0%*."03"(+ (-*%&&))&#%%"$!%$#&*&" # $,0#*/-)('*'$!+,0"''"!  !+-",.!$$('(%##')$""!'$"%" "% !  #%+/&& &#,,1#$)'"(&&/2#&(#  # =[s`…¢nšºg”²\„ MnŠ7Qm:Vn`„›t›´j«Nq‹>]xQmŒr’³}Àv–»a€¡;Sk /0BJdz\v;Nh#4L';U(33&/5%'**02#-/%,1 ,*&/'$*'$)$#$ ,31$%#'-."++$ "' $-+""(*.+"()%-2)+,57#*0(.+# +1."%(!""(*'%'#!'"*20#!#)$$'+'"%('&%--"$#" $"  $&! #!!')%"!%%#+,).!% (,%.4%'("*-$) #)$&'#"!%& %# !!(''!$(%$‡«Êƒ¬Íƒ²Òƒ±Ò®Ñ|©Î~£Éƒ¤Ê…©Ë€¨Ëy§Èv¦Èu£Èy¤É|§Êƒ«Ð…°Ö¬Ðr“±6K_,;LcvLb|Rgƒs¦‚£»Œ±Ë³Ð†ªÊz›ºu”±|Ÿ¼²ÏŒ²Ï„¬Ãu“©ASd #-?Q[u‹…¥ÁˆªÊx–µLe|/B2H_j‰§x™¼m‡«EWy4FdAToCWp8Ke+@Z8PkW,E^e‡¦€«Í|¤Çk‹®EXw&< ,>XnZ}•V|”Ko‡9Rn7Ic?Th:Rb,AT5NNk‡~£¾‡°Ìš¹Î…—¢Q[`:CK0#//+04 '($,*0::+-)"!,2.(12#&$%('$$#&%%(--%35 #"!("*56%..'*'&*(/78!).!'-,88'**"!!)+-$()"#!&('$)'&'* !%""&'%*/!/-/ &%#$*57,76).,!#!!()#%('%,-)77$'$&%"-, $&!($$% $%%36 $&"!)'!#./#)+-14"""'%&!!#!(&'‹¯Ñ†±Ò‚±Ñ‚°Ò‚¯Ó}«Ð|¥Ë~¡Ç¡Äz Ây¢Åz§Ë|«Ð}«Ï„¯Ò…¯Ó…¯Ö­Ñy¡ÀPn‚6DSoiƒ›?Wp_~‘„«¾Š¶ÌºÔˆ´Óƒ¯Î€«Ê¬Ë‹²Ò±Ï‡­È„¡»Qav %)8I9Ncg‚›Œ­ÊˆªÊ|™¸[qMf…lޝŸÁj¥1@a"?(A7KdNi„\}™hލlެ^{šGa€E_~m¯†­ÏНӢÈoˆ©=Lg#7Ddwpœ²o ·lœ³h«m‹¦oˆ£e~™RlŠOkj‹ªŽ¯Æƒ“™O[^=DO7BC5=D*6:+)"21%%"'("#",/1$' #)+**//+-0!,(*'&"$%#)'"'&%-(%! $$""&.1#%%# *'%&((%'$'*(#(#"#")+'&**,47%0+#,+'--&+, " '',,+ ($& $**#/2!/1$"!## !!!%&'&160(+$ ##!#"!%-+!'$'*$#&$"" $" %$ &&$ˆ®Í…®Ï€¯Ï¯Ð®Í{ªÊx¤ÆwžÁw¿xžÀ{¢Äz¨ÊxªÌ{¬Ë€®Ê~ªÈ~¨Ìz¦Ëv£Â`‡œ$ER8WdlŠœDbr?an{¥µ‰·Í‹ºÔ…´Ó®Ìz­Ç­Ì‡±ÐŒ²ÏŠ°Ì‹¨Å[q†,)9G=Pc@Zq »‹¯Í‰¬Îƒ¢Æ{œ¾€¦Æ„¤Ä`v–'4U%3O%8O=Vom«©Ç†´Ï†²Í€§Çzœ½x˜¹„¦ÇŒ°Ñ²Ô‹®Ï„£Âax‘0B;\jz¥ºz­Äs«Ãs¦Â€¦Ã‚¡¾ƒ Â}›Áƒ¢Ã‡ž«^on;EG6?E3@E*58+06)36$47#*+$)%(,&"/56)00 ,01+89&//(+-.24+01%)'%,*!()"&'"$#%&#,))!#'7;*5=&#*0.#'%!$%(),'++%23!+) !(02!*)"#"! # ! ""$ &)(*.- '''.,*03"()#%!!#(# &!$# ##"&)#.,!&#  !#$"$!!$%#€«ÈªÌ~«Ðx¬Îu©Ês¦Åp£ÃqŸÂu¡Æx£Åy¦Çv©ÊrªÊo¦Ák´h”®j”´i•¸m˜ºf©?_r:HIfu:Xf'JVoš©‰ºÑ„¶Ò²Ðw©Ãn¢¸r£»}¨Ã†®Êˆ®Ê‰¬Æd•0>,;(?0:>+36/43.9A/8;$03!'&%$"%''649&*)$#-3//:>&.,",*'((()#%$+*'+.*(& %)&#'#%!'-.%)/ "#&.1&38$"$&!%,+$.0&)'&)&&,*$/,('(%'%&*$$'!!  $%$)*)!!046#$#(,*%(%%)'" '++ ' !%%)& %"(,+!%(!&*()#%#+'##$!"%"" %"#$!#&(+%$#*!!y§Ä{§ÊzªÏu©Îs¦Ìq¥Én¥Çp¥Èp£Èu¢Èv¤Ês¦Êi Â[©GsŠAiƒ?h‡Ho‘Qw™Z~™Pn‚!9I/?2A7Ff ‰·Ðƒ²Ñ{«Êi™´T€•Pv‰dˆŸw¸©ÆªÄl‘¨3Ma 2(=7Wqwž¼‡²Ô¬Ñ©Î„ªÍ‚¨Éw•·=Pl"8K`tIbx1Qir™´Œ´ÒŒ´Ó„±Ð†±ÑµÔ’¶Ö¶×ŽµÚŒ±Õˆ®Ð„ªÌt•°)AR6Cn‘©ªË}¬Ì…²Ñ‡±ÐŽ­Äs€JO:GH2AB-79&/0+57+;<(.-,79)56$#(/)!)(381)0& $!'/+-37&/0*68(.(+,, %&!$!$,(!"%%%+11)00 ,'(75&9<(*+'-0+22%,'(,,-44$/,!%*'#,-$"#!&$#%"!!$&!"'"!#-))+(#&&,47+,*(&#"$&$"'$#")%! "'(',!15$*(!%$"$&""" ## %(%"'"$##$!"$&&"#$$$o›¿pœÃt¡ÌnŸÊržËpœÊmžÉjžÈkÇoœÆpžÉkšÄaа?` @\5WxBf‹Jl“KiB`{;Vg&:G!-=a„š‡¯Ëƒ­Í{¨ÇaŒ¬7]v&F[7Uo\}Ÿz¢Ã{¨Ærš·Yv“1Fb1GcYy—„ªÊ‰­Ñ„¬Ð©Í{¡Æuš¿e„¤-CZ )FJ4@@*46-43%,-&/2&.2"+$,1.-;;.:7**+-25'/6*/*,/,$("$$.31$)&+-+(/4'12"!")0/(.1!'#'*-)((&%%&$'.2 %&#"&%,, #%,.'+-&)-%)&##(//#+)&.1+,,*)%,&" $$" %'#!((%-+#'"-50.11)'-')*$&$& !# "##&".1!!#" %#%()(-1#'**'(#$&!!$ $#! ")%"%#%  #$f‘¿`½c‘ÃaÂeŒÂbŠ¿b‹¾`½b޼e޽b‹¼]…´Kj”%9]'G5RyNržSu¥Rn›D^€-EY*1Ec„žz¥Â€©Ê€§Ío—¿^„§Tv–WzœfбxœÃ}£È¡Çu–¼d„¨e…§{ž¿‰­Î­Ð‹­Î¨Êy¢Äuš¿e‡¨9Rl3*=.=VZr„¦Æˆ®Ð‡­Ð„­Ðˆ±Ô²Ô²Ó’³Ô°Õ‰«Ñ¤É|ŸÁf~›-B%7Z{•} ¾tˆASS:DMCKM9@G1A38=)45(23/::'0-%(&.53)//)02*..-5.,.---*%""-:<.@E(--,40#'&)//&`)22")%/067DF278-1-(0-&+)%+(+46!##.39/3/253%#&'/4$.0%##+2-#%"$%%#&#$&(%/.&)*%&'!"#$ %*&'*%!&"" +%&"2:8')("! '+0"-0(#$,+"'!"!#&$"$"(*% %!$..!%# *(#)(''#!"!$"!! !%( !$!% $(&$""$"! $*(xªÂt¦Áw¥ÂªÇ­É}¬É|ªÆ{¥Á~§Å„«É„¯Ì°ÏyªÉs¡ÀaŒ§Dh…"Bb;`}q¡»x§Ãl“®/I]#5Hg}{¦Â~®Ï¬Ò}¨Î}¥Í|¥Ì€¨Ì¬Ì°Ð„³Ñ‡³Ð‹¸ÖЏ׆¹Ö·Ñy³Í{±Ë„´Î…¶Îˆ·Ð·Ó‰´Ñ„³Ï„´Ñˆ´Ó‡³Ò†µÒ‡·Ñ‹¸Ð¸Ñ¶Ð¶Õ¶ØµÙŒ´×‰µÖ‰¸Ø·×’¯Å~Ž•@OT/<@;DH7EH.97+8=%01*:8*20'-/$(%177,,)4?E%-/).-*,,'*-,/1&+,.?G&'$,*-33/7;2?E+-,048484'.)8437AA'1/,1,.54*.1(-,4:?/45+2+*1,,0,233,33&)-'0-$"$'&)*+$,-!(&),*(-1(8<&.3 ##(%!+)'*-+%+% %#$"',+(++"*6;"10%$"!$&$( "& "!$$"#%$))'$*&'&''"! '))$#""#! #%*!"!!!&(%+$"%&%""$'"(bŒ¡Py‘X™g‰£l”¬f¨V}”Lp„NrˆZ–e¦qœ¶i–°aЦb‰¨^ƒ¢Ei…,NgCj}fŸSt†5D,<^|“„«È€ªÉwž¼q™µz¤Ã‚«Ë†°Ïƒ²Ð‚³Ð…µÏˆ·Ï‹ºÕŒºÙ†ºÖ{µÌy³Ê³Éˆ³Ïˆ²ÏˆµÒŒµÕŒ²Ô„®Ï„°Ñ…³Ô…³Õ…³Ó‹¶ÓŒ¸Ñ¸Ñ·Ô·Ø‘¶Ù޴ׇ³ÒжӔ§²w…ŠDSU.<>9@G3?>3??/=?*89&37'/5/40023/44124*/,+/0(0-).-+40-.0$(%)(#+10+;?%+1-S6ZrBi€:\o1NeDa}Uv‘Lp‰@_u*CT)CP"9F %1C_{”£Àt™µRs‹<^tc†ž„¨Ä…­É­Èx¨Àw¥»±È…´Ï…³Ó­Ês¤½w©Á€¯Ê†°Ì…­Ë|¦Ä|£Â…«Ë„­Î­Í‚±Ó…²Ö„²Ô…´ÑŠ¶Ñ‘¹ÕµÖ²Õ‹®Ñ‚¨Æ…©½„“”S_eAKR:AH0<@1;069)56%,/-41+.1/20)/,*-.+-.-44#$*47&/-),+($")'$.-$%%''((%')'),**77"$"*(((!# !"!" $""$)23&')!(..%0.")'#&"!""!!##%%'"!##$$" "#'""&!%%$(+)&' "&&%" %#"&,'#+)*)&3A0AFg€iޝk”µSz™(G_- 03NdOvAi7L&89Nb`|”Vw;Wi-;   );9Sk_~™Zy‘,G[-?3Oddƒš}Ÿµu˜«[}Mp_‡›u¡¹y¢¿e‰¦LpŒU{˜u¹|¥¾n–¯Rz”Kn‰c‡¤€§Æ„±Ðƒ±Ó…³Õ‚°Ñ„³Ò‰·Ô¸ÖŒµÕ’¶Ò˜°Ã„“œTcj;JO@FL9@D2@C0=B0 9ONkŠJk_‚£¦Ç£ÅmŠ­So`„£t£Áv£Âl®Ka€*AZQpˆ}¡»o£1DS!2BKg}fˆ¡`˜WrŒYv’d„¢c†¡Z{ŽIbt4G^4E_Pi„Yw•Fe-H_&>TB]xa~šRo‹9To&@_Hc„lŠ­l°a‰ªb°y Ä„¬Í…±Ò‘¹×•¨±gx{0:B/PU+;@0>>/8:)00*00+51+46,557?F+<<0;=07>4>G4?>*+&&)(*-4'11.54*-+-00&*)(02*6<-==;NS'5;$))(.+#12$'$,9;)43#&"4<@/7:*33,6<*..).,"*$"'!)-*+-)*0('*&$(%#%'&..&*(#%$()+'/'',*'*+$$%(%'./)01#%&124'*,%*)!"-0,*13!!112'*,(/3#+/&$#&% )' (,#%"$'$"'#!()*$#"!"!#$""#!#$")'#*-$21#+-%(*)!$"%$!+*())&Wk‚$3E */@Dczy¡À†°Ò‡®Ñ„©Èuš·j‘¬q™µƒ«Ì¹Û‹¸Úˆ¶×…²Öƒ«Ñu•¹ARq/#6-EXi‹¡¶Ñ•½Ý’ºÜŽ¸Ú‰·ÙŒ¹Ü‘»Ü–¼Ú˜ºÛ¶Ùˆ±Ø†²ØŠµØŽ·Ø·Ø¸Ù“»Ü™»Ü˜¸Ù–¶Ø•¶Ú–¹Ù“«¼gv|@SZ>KO@IP8DF5AG5@G1=D0AG0@E$12#)&8DM/;>"#!6;?28:*./%-,.9;,8>%*(.99-15-43,21(/+-592=B,21*,.27<)00,/0(21'11)2..=?*25)/1)5:).1)./-7>'69&(%09?%23".;A-21*.,'+-(-*%("*-, '&$#"),++-,(-.#&&")+)00$0,$*%&,'*2,*.*()+('"'.+',*'.-'%%'''*--)75$$##$#+/))/0*42-22$,/')$'.(%(%$($&')$(& $"!%,,#%&*+(!$%!%(( !+,&26(17#'+#&&)!&,#/*)*,'‚ž¼_u 4G&;P^™§É‚«Ï†­Î~¥ÂeŠ¢FiƒZ~š€¤ÄµÔ†±Ó„®Óƒ¯Ô„¯Ñy¾]w–5Fa2F^Xv}¥½‹³Ï’·Ù“¹Ü‘¹ÜŠ·Ù‡·Øˆ¹ØŽºÙ”ºÝ·ÝŒ³Ú‡²Ö†´ÖˆµÔŽ·×»Ú“¼Ü–»Ý–¹Û’µÖ›°Âm{GVZ?JQ=JR=HO4EK*:@-;C.=?-63'.-*13%15"/+9FN3.44,241=E,48/54-9?&,-.87/50,..077&-++/.*2/&))-//181%10%*#'10,47-=>0@F,68+23'-3$00#,(.76#+/ /68)57#+.,02,58)-'('&0,-+,)*/(%-*(&$/48'04'.0 (($)(%,*!$"'/-*())+,&-)'+%')($)(,&#&*(&+0&/1&-/,.,-,+,41-23%,+**#3--'% '%((%)-0'/1'(* -74#"!$&#',+$*,(24'-1!)-(..(''%""%#$#,$-+$02/333,0/‹®Í€Ÿ»YsŽ.G`c„ ~¦Æ‚­Ï„¯Ï~ªÆm•°_‚¢j¯‚§Ç‡°Ï®Î{¨Í‚¬Ñƒ­Ð{¦Æq–¶dƒ¥k‰«}¡¾†®ÇŒ±Î’µ×“¸Ú¶Ø‡µÕ€³ÕµÓ³Ó‡´×Š³Ø‰°Õ†±Õ…´Ô‰¶Ó¹Ô‘¸Ô–ºØ•ºÚ”¸Õ™¡H\^>JR2:>&)$5.5627:2?F(5508<054.21)51*-/-46$11)+--000574;@(35*20-32(22%24,@5?>-8>1:<0125<;9>D3<8/55-9>"!.36/7:(($1:>,;:-89,6:*692=9:>@-34+03+32+69+//-12,10+--*-..11,6;)-1+0/+00.62*0.",&/98375+44&--->;)/2 #1=>)78 #!.7;)02067++* % *1/#))&-.$!""%%&-+ " '(%,)",%),)/0+/20()%,.,')%(#256-43,36"((/-.&)&%,-*07%*)&)('/)#!.=>'(%*()(%&%#,/+!%! #"#!%##%%,($(*%(,08=%*.',+%+/$+.&-..5/*%#*+$,.-/)%0/+16007/495-12(43ˆµÔ‡²Ò†«ÌYx•+Jdk‘©‡¯Î‰±Ô„¬ÑƒªÍ‚ªË¬Í‚¬Î…«Î„«Ðƒ©ÏˆªÕ†¬Ö¬Ï}­Ì­Ëƒ®Îˆ¯ÑŠ±ÒŒ³Ô¶×µÔŽ´Ó†²Ñ{°Ðw¯Íz­Ë¯Î†¯Ïˆ®ÎŒ°ÐŒ³Ò‹´Î•ºÏ‘¤¨ZlnBOPCLN6A;:EI2@C7CB4>>1894:=6;A2983687DH+1-16;0AB+36)*+179-8:(20-446AF7CA.78,36-12*58&+)7@D.89)35-42144/45.8:,12,0-'+)-42-1.&.+)1.*59(48+01+74.99%.-"+*#03 #"3:=*45')..(.*(.)(&$%)'$$'39'$'+'&*,#-.'13(,)(,+('%&&#/3/09:+++(*$/01%01%'*.5;(+.&*%(./+-+(24'(,())++&./, )02()%')"$#""!,2-&*&%&$%  &22'36$"+-0&)&$'*$'(%".43.-(1204?@08;14121/11-074&1/"+,+0/„³Ñƒ²Ñƒ¯ÌeФ%BZNn†ˆªËŠ®Õˆ®Ô†­Î„®Î¯Ð€­Ð«Î„©Î…©Ð‰®Õ…°Ô€°Ðƒ³Í†³Í‰°ÏŽ²Ó³Õ·×Š¸ÖŒ·Ò‘µÒвÐ~¯Ïy¯Í{­Í€®Î†¯ÏŠ°ÎŽ¯Ï–¶Ô«»f{~EO\?LO>IM6EH1GG$:20>?)/.9994<9.3.186/14475/43.1,.53166(-*),--26+76&)&+0+*-+-64*2/$)*'01$$#;BF/<@!046+:7%,%/4:)/2(')$/4#**#$')-,),*,.2$%'$(&/22*-*,50*.+*)%.1**+*"$!#(#'%((+),31)'(*--/43")!% $0,.1/&$*((*.*'0+&,)$'!',*&),#'"%*+'*.$--#*,#)(*.,%-((-+*(%(%0'!40*:77250224/86333,40%--%((*86.52|«É€±Ëƒ³Ìo˜¯%CZ5Qk€ Á‹®Ô‡¯Ò„°Ïƒ°Î‚°Ò‚¯Ô­Ï~©Ë|¨Ë¬Í€±Í‚µÌ„³ËŒµÎ‘µÔ’µØ’·ÙºØŠºÖ޹Ӕ¹Ô’·Õ‰´Ó„³Ò…²Õ‡±ÖŒ³Õ“³Ó–ª·uƒ‡J[]?JP?DH9DH6@G2@I3AF5CF:AC8584@C,64.9>(.//02%.-,1/6;80331:=.561862;:*2/*,- *.+44(14)55'0**32&+%(.+-88.99(10"&)175'33!#")01)52+53(.-#/-%-.'(*#)#%##(.*$+)$)"+),8;>058'-)'%"'**()&((#+32*/+&$&" (+* ""'*%+,&!'"$*(%-(#(&*,-%$$./-(1.'*#$##%*#" +)$*."()#)*'**$)$$(*%)&'/*,2051-.0,..,(.&.*(23.0-2/03+/2%.,#-,#*)'++,0-09<i“®{«Â³Êv ¶+J`*Faz¼Œ°ÒаӅ±Ï‚±Î…±Ô„¯Ó€¬Î|§Æy¨Æ{¬Æ€³Ê„¶Ì‹µÏ´Ô’´Ö¶Ù¹Û¹Ù‹¶ÔŒµÒ’·Ó“¶Ö´Ö³ÖŽ´ÖŽ³×—¶Óƒ•—EX\2;55==:===CC9A>8?=>B?163+/,4BB,'.2>HS7GJ(10NPR[.>B.48CKO8=@18;+0*<>C<>>6=926:4:80>?+,%2=;3?F/24;LV3ED,:?"*'>BF1>B"''9CG5<:3695CG*88 ,1/49*89&35*634>>1434=F,30//1/:95=>,0,'+''25()'--/+224@D,87,.*$-,1;=,9?356,24 $ ,33275(+-#'%$*&%%").,+01(+0+6/*++,77),-'//,/0-9;)14**&32/-21,1.269**%.2-%%$$#.*+*-*+24'-+&.-$#'0+'+(&%(*-,!+'*48(/0'..&&'('*#%$#%##""+))+(*,+'0/*31/4.+83/,56+89(-.,03*35'//)2-,2/*4/5779@<3435<7)Tc3:@B-=<9HO7BC.55375-54/03,5/010.63%/.&,(,2/&.0&,+.31)7B@TnEg~3FL087.7: " ?=?9FO(5=659=?C-79-;9(1/468473+2-:>?,84,//244*01),++870:=)45',,07=&-/+.,.10$'')00),,',*.:5(/-(69**086):9!&#/57&/--7:-06+14)38&.,(-/&(+'*(*11 .2,.25'/(&+&/2/(.-.411=>,/+(+*$!,-,,/(%# # ")""%# &+.-!%# ''#,1!*)#%&&(&#&&(%'&'#$)'+-.*.*).*.-,.01+/,*.*+/+),+'.+))(+,)%('.20,881876;91959;84846;98?;8>@h‡§Vt“>^z3Rm%E`Jn†‚¬ÃŒ·Òж։µ×‚ªÍp”±WuŠ4FW#48Vge¤g¬_|h~¡j~Lc}B]tG^x-@X2CyŠ’dvyIXe;JR;LR3DI&4928@A*560275<:2:;386-;9)22*25044/38-9<098+1/-0-/64'-*)15/43*26-05*1-29:5>>,32&-./4:(18&-.",*/99254+55#**045*35,4:&,%*+,(0.'65".-+34&(%,0--16.2,*1/%--&('%*( !.,)455*//,+,/.3"%$))%)&-/***$)(+&&($ "'/3&/1#-&$)*"%%"! ('"+%")#"+&$,+(*,(-3/*..032131,-%+.)&22!)$$)#'/0-20(&#*/-)44265352.0.7=87>;CCB9=:023€¬Ì|¤Äi‘°Qx—FmŒdŒ©†±ÉŒºÔ„¶Ò‚²Ñ}¨Çf‹¨>8?CP]\JVX5?E@MK:DF7>D8JO5>:4686BC,68-521:?9,13'*+#'$$%'"#'!(#,'!,((00/,24/44*/,**(,2)/12'*%$-*&.-'*%)+,0238>8/64-/7.7;5670-15>?ABD2531527868;>®Í{¨Åm™¸e‘°j—¸{¨È‹¹Ô…¸Ï~¶Íu®Èu©Çm—·Wv•8Nl/Gd`†¡v¨Å°Ï~£Çc€¤D]{Vsˆ†¦º™§^tw=QXBOX9HR9?H5FJ3BD,990?=287245599;;;5<<>JJ6>?3FH7<>6=A.20=ELV~œJcn8?A-35?IS6@A4<;'''032.>A58;%./+1/!''/59'+-2;:(0/'%"110/20,00&)'$+')-,'+-/.+/2.#*(+44143$!210011.35.04$*'))&+*(!"#-.*'*((,,$()",2"+4(26!-0.9<%+)*/.')'$# -*'**(*/-,0/251(2/.10-0-(2.&**.....,'-*)-)!-('*)#)$(-,,,,1.-*.(,20)/+5;669;3;979:;@E7EE/63,-,h–±dŽ©`ЍJr’l–µ€­Í‡·Ó„¸Ï{¶Ìq²Ès­Çw¥Äuš½d„©`ƒ¤u¡ÀyªÇ|©Æo“°Nk„ev…q‚ˆm€„CQXALT>IM>9>944/8><<@=5:=:IM=GI7CFOj|R|œV´Jfu3<<4>C.7505/(7<*8<#((28;-48.55(*,(.)%%$ %!2::*12(#%/57(/0,35$&&/45)+,%%%*0+'*'+/,"%$-.+013(*#*/-/-+*((#&#$#+-+,*) $ %/+ &'"*!)0$,0%5:0?E-8?%02%'$()"()((,'()(,3/04236.387133.7//1),/*$('"($+0)$'(+33+24*/1288'-('+')+)/0)+.**1-+0,/53/4049<;DD;JJ7:8+24/74?e|5Vne†¡3Tn]›‚¬É‡´Ñ„µÍ·Íw³Éz¯Ë¬Î€§Ìz¤Èz¥Å®Ë~«Çuž¶YxŒt…ŽQcfEV\GT]AKQDMU.8:=DI1B?467=CB9CA.4.<@>6766:=@DC4>B/<;0533631986@A/=MV„¡Em‡,9=-9:*+-9BA-:C*125?C066+.,&01*.25@>,01)3:1CC-0+597054078054(,-2:B(001;=*9@.D#+4*-,/1/,35)47',.%&%+/4*+) '&24,0+)0.-,/.-/0.1.#!+&'+0-%*$(& ")77(+.'-.%,0)*,*)+(&',+(,,(+'((/-.13343772565/02))(.0.)/+-24'+/',*+//)+(+*(04/36200,12-1514=96;6258/050443445;<7@>277/./?FB:=99@@0Mc9Le„š.LbOl„†ªÆ‰³Ï‡µÍ‚´Ë‚³Íƒ±Î…°Òƒ°Ò°Ð‚±Î„±Î‰±Êˆ¡¯m{LZdDQ[CQWDE:A@4998<;3<;6334<9:;?543.3135417:Ik‹Pr†X„£Y’µN|–4EM1;<087Ib|.56/838DC/;5?CA@BB79:497C_w5ScV…£9GK)96&'+2:=-6>*.0=IN1:<,99,6;-9@&.3289/21,/0+22%.(064,5.)/..96+41*77 '#+04.39,8;)13&)+-56167-:8*65%.)1:9!,*(010@C'26!+,-0211:103)//143/23!'%',*+01,.*,(+,())%&$$&'"&&*#+( %$!)#+,).4$(, )+')+,+*,,)+'&+'$*'$+/+24+620684497376)..-02-2,,-.,,/.<;*00-(&'*)&)&+-(.1*)/'+40PWY252.2..,)16268<38:6?C.2/,,)()%.34;A@537/647Oh5Gh‰›=]pMlƒˆ«É‹µÒŠµÑˆ²Ïˆ²Ñ‡³Ô‡³Ö…³Ö…´Õ€´Ñ‹°Áv†ŽH[d?R]8GK9CG3BJ2?C37<;CA)*'BFHCLO0=:6:=5=='+*:CA4;74545<:3<65A>;Nkl¬ÓR„.@LG]q7CG6@D198BYq2=?-1-89?/6;289/<=4983997GSJu™:[p=Vc/67&*+9CC2;6 7AA18:156+58/>D.35*.-0582>C%30&(%-33/::&.2*130:;./5.45CLO/88+16*87)-.*//,3408>#&&,01,99$59+;>)68.23)-1$%"*01.6:-29-26+*,)''*21./..33)--# 460&&"!(( %15)440;<'..'*%&&&*(**'('.))2-1367+,/07-54/98.453.64$$'-+*+10(,&*/1)01(11/,/%%!%,*+10473012/44./1082.7425505:+-.*+.-1,+.+.-+/368:75:?6@99>:121Lk†)L_i’¤[„™_„ ‚«Ë‰·ÖŠ·Õˆ´Ó†±Ó·Ò“·Óœ¸Ë©·oƒ‰GX^:NU8HK:KVAPW%37+9>,126538DE'-#;@=:?@8AC8AC(--3:72787;7(,*9AD/35G`o/>QAh}8DF6?AC\k6>C:CD@XjO}396:@A6?=3987EF/8;2<<064:K_El„A[o-@B-55)'&7D@(67%'(<@D9@A6=?-49097.4-1=<1;;/:>/77.41&*(6:<,36+.1(*+27;-56064*2/*0+-36-10-/-'/(*20"01!).++?C/=>&-,0=;09=',3(%$'$&8=>1247@:&(!+/,).1$#"'*#/1//,%)-(%'+)35&20(03003)00"'&'(((((&'-)"-1-6443325>=42216315..5/(,,%*%%*&(/)&-*+-+(,+(.%*-%+/+)/.487/554998;84=50841581:<9>:172.505;<5<9066367/542;89CE7??7@?.83j°W€›n›´t¡½z§Å„³Ó‰¸Ø‰¸ØŒ¸Ø¸ÅObc]nqhxyIZcEF>FI8EA28518;0=>)131883878A>.6;Uƒ ,5AF`m9FK,6BZ…©H_oRz’qªÎAS\:=@>GH7=<2134AG;AEER_Hbo/;GCdQ€¢6MS/94$%(/AD/<<)*+<>?585+30%21(,)475.78-61257*76)10,1-(-+3=>/65/42*+(&/.)0+'*&+1/(--1/3%,0168277*/,!&)+313?F#./ "!7?C/;>(-,.//)()!%*(#''()%0400.1%$!#%#)()$))(38,34(-*)+'(01&./'+,&)'''$)"0.(,/**.*1648;8-11156(2-%)))*&&*%-)('''((*$'(-/(,-%*..,00034335.01-30-40*0/0:756;355273,-,/850;:5974=A8@A3=:9AD6<=+205>>>IJ}§Çu£Âv¦Æz©Ê¯Ïƒ´Ó†¶ÕŒ¸Ó¦¯1FE*7;-:=?KP=HQ:FKBNV6DE8DP5>A7FF6DJ3FF,43337>IH)/*ABDCLL6>=>EH@IO-AF-79,/1:IPQrˆ^™ºW’°/4>N{œD[l^«Fi‰j¬Õo²ÕK{6<>;;;<99:6@FG\o@ayKl‡3CREhHj€8GK'58!.06;:/53"#8A?/9:,::(::*65+24'+,8=72831:8'//)0/'-*&0+,1209=244).-143175*.++-+297),.*,.).*-///02.8<(73368,1..33./1,/0#$#*2,,/,$)!*3,&**'/-#-,&02*11$..&03(+-(,0 '"*,.-./02.21-31+230366-0./65154.31)1/(26'00$+(&*'(((,--)*,,-,-0+287-/+)-.21101+.+%*.+',')/+*.($((1.-100-..*--375,,+*+(,),-02/3/49<**,2954;97BC‚­Í|¬Ëw¨Ë|©Ï®ÒŽ·Õ‘±¾u„ŒP`f")/->G@OW9LX9IS7JR;LS5>C99:>@C6>B297-74566BIK,//88<@IJ296)+*3;=39=:JQMqŠn®Ðp°ÔN… \‹¨5;>Kwœf©ÒQ¤.8>9Ra?cu)668BC0<949;1674956=9Fb}^ޝDf}(:>Ad5Qh?`o,7A ')7B?021($"8GN1>G-66,15.20(1.'20&-1$-,+3,298/0--65-01.48,44.86.30/4:-14!)&-0+2:9),)255/7:#((-0/29A%48-+-&&%-20--+)-(,.*),+299$*$'.*%($25%/5+.7+33*/-'+,$''$()(($,+).0.679662562076062,4/&+-(*****!)&"'$&)"#&((%'$"(-*(,%+..,1/297495172-10,)*'-'+..+209AB2;:5??@FG4=93;95@A9<:2877;<8>A0<:6><:BA0965??6DH4E@ˆ³Ï­Ë˜»Õ”¶Ö˜´Ì‹£©WkvXco#12%%*-3668=;EH:KU>S^@0887;:-20Kl‰2Nd+>C7>JEewNx‘0=A/9;"$%7?D+36"('2>=.;@(+0.00-0-+50-5618;*2129;123-0,024(/4*//.--.57).(*10/42-/-0:6+,+-00/65)10-21/1/.9:$27#!".,*/36)/-!'$.21*')!%&,6=(-%02&-/086/34(,/%21%#&"#$#/+)54203-734453463*43+59"'##($&*'&+().-%%!&&!,/*'+'$(&&%"$)&&)%'-(-++''#+0)053*44089-7=1<<-33&*+.41057*1+3:96:9-.11226BA8B>JM9CE†³ÐÍÖÚ¢ºÉg…Š+87PbjJ_kJ\d%'15;?OS;@C;KP8FOERb>KP-/5ACD8AK;@I>JK165297.,/9CH0?A.11>GQ3BA3:;5;99==0;98?>5;9=LXa¬C`i5==Het5@B/943>H>`tGu0>BA`zCcz;HN/95"*(3=>+>G!))6BC459+3/.00465)/(99>).,.2.*.-).*-34075/285>A&)(/68*54"+#+0++1.-86(,)04302/,-(,/* " ,/+,66(*'('%1304:9&)' $''#'*!)'"+-*58-466EG%03(0-/.1(,-$$#*%*" ('$32.044341/77066)41#2:+34*+$(,,),*)(&*.*(.)---*.0(-*/65-34+1,+115;;3/3174034.41076;A@6=<5<>18:4>=679/--8?>1782450;:5;:?GK@A9<6GPS;HN1588@<7?G)63)))BGJ089103CMS6HJ/2;]w.69.57Q~£L‰¥9_w;FWc—³Ag‡?ao*/-!#%5?C*1/ %$6>=/75*34)65-10,00/11.:7.84*/1/9=47<-65$+-48>1@E#55*22*/+2965;8).+-10),,*,,(((587"!#./.077&&(%!-.-&'&%(%&''%#*05'5:.:B(068EK)69(/6,7:375,,)-*))( )+)310/2-302/24+68&12'.0&.0%+*&-'&+&'*')+$$((%$#(.*230.51*.2155,1.+2/-1-444163474/785?>3<71575<<6@>8A@?DE77-11053=@D@175?CCFJKAEG6A==IH-84($#@DH2<<)0.?IH>ML2?D6JW8CI5>AHn‚2.21(/.1?A2>B-52&,)/79033+-/3;=/;>'+++58,05)77#11-14+55$)$+2.$+,+)*238637.97096.1.''%,,.!#-10.67&'*%%'(1."/0((.?A1?D4DH.7=)18/388:A863.2-34/454'*+&*'+/0%))%,**12&*'(+&')%,3--33/22,0,+32.75434-65253'-)+1*(,'11-.-*+-(/305::/54),(()(+.+,,)/41'*)')'--)*+++106;>;FH5>>=PS:EF;ACFMMARQ;FI8ABCNQm”©p“¦Zu‚3LQC042)(%>JJ1=A0::/993=.982>=386399HjŠ/983;?=Xk%0=CYf7FYEq†Eg€Kl|.0,$(*5DD'49,0/3985;=4<>*20*..6@<',,324.79(.12=D0:A/9<*/15;;*-)2;:+51+,+)))24//-.5779;9030,87*:; #,/204:,-%%)-EF&57.7;'4<5DK*99,0+-,0424?FI@EJs||S]_?DD2<=/54-65*14"'$*),+.-*2*&-&'((*+'#&##(&%*'%+)&.,'-&.0-,11,/--424854850864;97:9-8348:/22065./0-202545;;/53;<:;CCABKQT9BE6>?/2.*30A]p˜¬~£¹_~‹2GH!,0:KTDOW8JN7BC696DIM<@B=ADDKODMN@DC>EH697@IM8@A:EG9AE'*%@DF>GE(+)@GK0;?%)2E`xNp†k£Æv¿â\¶6MU6==6E<8?<7963=C?OW>`q;@D2?H.<:-<>:NV9DIKp‹4<<6BDH\na•¯;dt8JadºPyŽ5LW)59#)-/6?+5=*314DF.43086*01+76+56)755>@0CJ(//1?>-54)1-+21#($.1.3:8-32(-)&'#'%$,.-'&#/+*59:).*):5#)./20>=#-3(16?QY+7>%+,(.,%16,47-0+843434ABD:CBNUWCIJ387-12*251@B+:;$+*)/.,/1./3..,*.)$)(()#)/.)/*),.)1-#/+)1.,1,*01*-,/3.*+'7:92;>/2401/3:8176155,20,//7::9>AGK?IH676;@AENQHV\FQS7;<>GHBMLm„š“¶Èu—§d‡”8MS-29LQ;FL8BCAJO9?@=@BEPUBUY7>D9CF7<:/68:@?;EC3978=<>FH*)&<=@EIJ*1288>5EG)57Z‡±i³ÙZ“²A\h7=D=JD6:;7?=2728=A3<90715<:=FJ4BE4AKXˆ¥D`n4=>Eh‹5?@-14Ooˆ7?=_i./573><2;<5=>(*%0702532?>/37(45$,,3=?&)#+01178,.+!#0:;.63!*12.;@(/. ''0@B9IO3BC*05#.3%"!&&*-55*-.79;CDFDON>AG:A>/76382/32)++*45*22)0--1-*0.+&%$#!%$&)$,02033*12'-,1214543B?6?=2;<3>@7<7@@2;<EQS=JM=EF).*/362<@8=>r ²Çyœ³x˜«AW_2=D+7@8><).+89:+1'8?4:6/647JKDY`;BF8@<2766697EQ2FO2BNU›Yš¿I{š;Zk(54Os-:?19:369ATd6Xe9Rb?h…XŒ¨3HO(+)-564=9&'$59?8CJ3;<3><-2359=*32&+*-;:*1329<,1/'+*3795:<-52*,)59:+-*03/9=<%+'026(..152',+ *+'47.@F1AH=KQ9GN/9<(16*22-0/79899=>=A=GHJTV9A=642/2.--**/3)03-58-67144.43+,-%%!%+*.0/)../77110122587/66,1/+-*.41+/,2510534;8,-+*./'+$+10-,.(,(*,,00-162/7/.:<4=:4;:5:HJ>@C697KMPDNMDHM6DJ4;@1<=,////2..0<@A3>94=9--//,.440+-+AGE5:87<:%-**<:&(2AH/567/64+-)-0-*/-),-&-.((%',()0-+64'**+.*&)$(+&"&%5;;389032.2/).)(,-+104?<58=02246:69;-41.525;=;CC5>:-0/2892;57?=7BA7?@.5715219816:3<<2A@>CD5:8=B@AGH8D&..+46;EEBDJDJM@DFGKN:II>=>PZcDJF=C><587>FE,<;-31/.4BKG/4,874@7<=3879K[`ŸÀ=jz5O`[–»8HS277199,7ENŠ«,J[Ei„;GJ8FTDdy1D6DN.=C.:>1>D6EJ)8=3=DT]^GPP>=::;84739976;3992686DB5?;3661947=;@FF39:4443871869>@1352699>?5;=@JN5?::GE8IM6CF06;f§šÄàÐçö¡ÁÅ4BE,7;$'"158031AA?>CF7BBCGJ?EI>GH9?C:DF4CF@MNDG*4/3697>D1::2<<35:163MuŠ/CI389155Eg‡3HP2=@08;6=HCbo3@EMv;LYc—¸8Sa09?X{”.7<*3@>`s3@?.48Kv”9_x;Xb+6-"%'>DE+..+-/=CG.222:=/CH-8>$-/6=?8=D-52)-+&,*4:8:::8;93<;053:@=8;;)&#.11&./'.60>?/7:9EB9FJ;QZ):>!05#",,IT[dmjW__8@@5:<3351/0.,,.1..;<5CE.33,.+&-+)+)%)&&*&'1*,0-.3-/303:5.87/33320156(0-1869@E3;@9?B0714?;19:<>D7EG1><*54034054-52165379-0-375+2,+0,)30/-.,.+.46399+-*,1..783<>)433:8>HPHRS;B@CKK3898AB;?E/?B3@C;HHBPR”©»ÜðùÛñùÈäéH`h3AH&00/;C.96.-1BIU>NQBKMCKGAFH4;9?MU>IM9GJ.896=@>GG6B<4;<*11=EJ+6659=4>@0>@06;65;:IW--8Lp…3>A(78-686?<2;B@`yFi6JR!*%'(-:CA%(%,46;DE7@?+4309;:AB+.*,76),+6<<4:<),)),,+/..30054+-.*(+/0/)66'-2-7939<7=A58?:>D:HN9HN;CD (*=FM1FJ=OR?FH4;:5<:251,/1//4*,-,,*+31*10)+)))&(+'-))'('$)$%$$,-++,*'+'%,**,,,/-%.+&*,-00487/23174353<@F6BB6@D:BC6=@/48.333486=B7<;:EC9DC8=?,456=>:BA8DD:>=:@CB5:85BD8>C?FHGNSCNRDNT¥¶¿Úð÷ÛñùÖï÷›ÂÇ9GJ.52-34,119>@8>B=HL;GE9HJ5FF,/16=74979GN@KJ8?A:CC*48249;EH*340;94==289+0,4==?-9?.CSQ‚/B@/551<;>@1342572:97APDiƒU…Ÿ,:<&'!,,.7CF'+(47:CBQZ:JOAORGRT4DN5KU>S[;CH174002,11-44&---11'+)&'$+*&"(%)+'-0,'.,&')+),$,'+31.2.(-+-312771954><19;16739:.92.10.32).-*24*102==/81/601<>6988CH9KM3<<8;>0/1)-*4261679>@/65-4/1792:99GI;NP6==@JI@NO7>=:GD?HG5;>FPR=GN9EG:GI5AA=HM9?@152'0+¤¸ÂØðø×ï÷Óìö¢ÀÅ+794=;4<=$*%-027@F/35=DH;GM4<97;>=CC;BB470;<>7=;9=>4@A/77/342@F$-.5=B6DE0776=9.73C`‚Fky?UcVƒœg§Ë0FK2BH)97*361==1>K.7:1?>,=B>_h1B@4<=07:3631995@<4=9EZpEm†Cgt7@C#%!/426@?&+%7899KN8FM0111=B1=@*@E+6>&&)3=B./--772156>@1;<$-/)23,25+55/5>7>>5874861LUR[cEQU>HL>KO>IM29;-0.-940;:,//"(&+21121-/+)-)(+"-0...)+'#*,*/00/4000.04..2/01/*3.5;=9=83<80408@?8>?6>88AD6@EG6@GBQV:KO?PR8?>:BC4AF@MP®ÅÒÖï÷ßóû×ñø[vy4896<<)-+'(#3;=1:>1@G1BI0>A.9;/-07FH9KO188FLK8>:?.663Hbf¬Òo½Þi±Ð(JT-8:17<4>B4><-9=1;A3=H>WnP€¤>i}>JI7<<5<>,309;=>DB4>;:Q`S‚ @h…5=@ :A=6>8HL+7=3B09:-0.*/-)--,./,.-+3.,0.265*-)$$#+1./52,50360.1,-21.31043*-*',+3A@-62(11*-+0668::4<;+++),$*.-357:?=034*../9:1584;;1461367C7BG-9:/9;6?D3<909:/688=?6B?3746AD#+*:=<;FG'.->HO18911259:5:=+478TnAc,MT&38=L[;?B/9;'40Eg~F]rX°Nƒ¡5SgAT`288=FD3739;;0/,375.86=^zBc{Ip‚3=;"#3<:3>?+&8;<6>;377,5:/9A26609=!'%065
A112&+)+--,:8,3.)13/./'($+''&)#.3*,0/$.*)+&((#(.)))')1+1763992844;=1:99C>0860663799@:/1,111.57/;7+/(286487/1/3957?;:AC:DB5CA39;9BD6>?2?KL=HI4699A?:AD7AD?JK4CF,36/7:5:;8BBAIG3:;254@GJAIOÃàíÜñ÷ÞòúÛôút’Kam8GL1EG0696@A+79+260>@8<=8?=;GK4AC/:?6;94?=4CG/665>;(0+CLM6A=*..:IJ1::/2475<,-0-882:8@A2<98?84>:=AD/6:Km†5GX3<@2=>!%$3>:.=< 8:;>EL/>E)65000237,45(0,)322FK8FI/:@7MQ;LS2>?-249;;2:<7?CGIMMRUWZZ:B@<4848?>7?>;<;6=;(01,/02=?6@E1>9146044*53)44)-&023%,**.+2544@A6AE7:<3;>66<--.+0539?/630574?B6B@@DM:EK/018?@BOQCMNBLN8DDCNT>KM;DL9??>IH5>>6AC@FF4<>,62ÆâïÞôúßõûÛóù‹©­BIPCRZ9DL6=98>@+2228;A5AJ3EN4EK.8;;DF;IH1:3.*.FKM1971477BG-669@H16608<,NE]o0;=4=?BLWUœ5BD4<;1:8-623=;79:?C?57429<0696:=)75#5>?3;:!"044>BD,89(43025399'0.(7:).;KYHYd7IQ6GL6?@7;=:A?@?C;AFHQTJPMNTVLHF:<<68354:89CF9GJ8>@255@JJ9CF8BG=DGAIK:FK91;98@CÆáðÝóùÙîø×ïö ÁÈMbk7BH7>>5>?4<;*1/6=C3@D2@I2?F0?@3=B3@?8@D29:6DB5??099+-0=IJ,4/3263FJ197*12)1*,28cšÅeŸÆItŒ2@J,9>:Rc:>;7?B:FI=EI=DE3:>4?EB%-,)22%&(77*59(>D*4>=S`3J[4EL=IE3;;.6;9<;?FIKQRPTTGOJ>GD355013,+/1<>,59'++*++00.+-0(,)&(+'((,.+)+-2508@=69809;.5611.0305:98<<8>=?AB4:;/224971:3.97066*4128<5;;3::18;/895:A8FG3:;.1/0845<=9@B;EH5475BM2?B//6077.730567=@6;;>?GCMO=FF.763?@7AH59>C157;CB5>;38=D_nJq‹:DG1:9.963:86@858;+402;;.016CD6<@$109<>2::&""7>?2??/=A!05+7;2;<2;>-@G&8;/AK:Q]BLP3<<5?A=FHCJLQWWBKJ?JI6;:056*-+.1.*03.58,//,.*(1,(+&%*',/1,21+-*2/-368+--*)(02/142-22379-22/75+20++(-0/08:6=;4855<:4?C,69*76,20/61**,/12.480;7+11133*/,-31/54476885.30,872AA9@>1786AE;FI7=?198=FG1::3:55CI=HK;HP9CL5<@E2107AFCMU:DHANL>KLBMTDQV9AB6?BCLT3??269´Ùí¿áòÇæöÀàïÎëõx•Ÿ7?A4AB7==1?E7=@9EM.><3;@+:=6?G1<;7CH2AE1?A.@G*5:-:<*022>?(34*15.69-11+46$((7>K-::9<@;8>8IQ=N\299>EG39A59?8FKDcvašºKv›=Xf8;=29:132;?@6=>(+*;EB174(++6:=9BD(-* " ;>A4::!'$1?@$77&/0(471BD18;3:=-;A>LS0?F5FO7FHAKOUZ\JQRKJL?EC656389,0+&+)(+),04/44/;<*..-0039:264156)+)+)&*,)(,*-(*-/0-11278054.833:=19@6:+0*3685AC0<=1985?>2;:9DB9CA5>?,578;>5=;8@G,43-468DH5AC-0209A09<8A@;A?@FL7EH6=<9BE28>3?C6DD.212667ADºÛîÁâðÆäóÏéõÙðùmƒŽ@JS1?F2<;25:1;<078+2279A08;6>@6@G1?C1@D,5;0<<,29#1/(.1.;Ua6BM0GO,139:@8BA+11-52332098/:9+98&+)*/.+/.%%$9?@,86+67(:C05%8?*57.6=4::/9C4?G8FMHH3::3:>?GH6?A28>3;=:CC?HLIWW377386=DH7FG;EF@@KS=FJ;OMGQUALQ@MOEPT=KMERVETW?LP´×êÚñùÚðùÇåòÇäña}†:?F7BC6=9/128CC*/.3970344??2883BD0;9==7><7A<5<:63551447?A2885=A:030/76(63/;?6GK46829;19<287:BA>EE59=4;<7?B;BE3<;:CE8BE.33:>F8A@-112:;ÎæòÔðö¦ÇØž¿ÒËçñlŠ’6AA1444=?+00222-9856:7?0653>?-2..6I\˜¾Z•·ZФQ^’µ5OX2<@8BE>265!#$5BF,8:/54-54*5:1>D.?F3FL08@B6@AUY_`ih\cfQX\RZZ>HI198557,0.&,,+-+080,/,((#..0&++-,,-3-/94,43./0/31-22/2.04525728<59A54:024044.67/99+,-+38.)./-0+000388<8*75)/.-32@DF=GF:AA;FD7@;8CE263,11:BD9DH:@B?GE8CB6?=0744543>>37;9FF>JL>FI27<8@C?IM?HI;MP8FG?IJDQV&..)21'5858>3780869EU7O_2KbAj‹7Pb-9@-644<>6??C_y9GK19;2;9@R`3;?,52.681;64679:;;,25$.,)-/A=?@7CA4;:49;68:69=7;;2;>7;49<2>=4;A176356,.1(+*143.38255063;AA4@D.750876DG7<3>A2:8>AE4=A3@A7=@6BD:IIAJP=II:?C.67/584;7:BF?JG7<>-404=A9BF9@F6=>?LN9HE7EE4;:8BBALRBRTPW]>BE6?@=KM?IJ3<;:EK0?<Ááð¬´KU[`kk^fkmtyMVR(-2.15"))*()+24&.-(),20/&/,*+,(.."*(&0-%0/$(&-35;CC!(%+34-34,13-350673=:2:AGm„2BB)2139>Gm‘S€”DMP7A=.0,;EC2;;-.0577-0/+15)./+65+/!(5>)6@.AG3>E59=2BH9GN@JO;KIQ\aGPRTU[OUUW^cPUW=?B4:9365/31,3.4;>*02.36/6:,88060/91022(+(/0/185176-77-24397274/44/64)1(+10))+/.,+/0,113:B4;:7CF=DC8A@1@@0@A4<<>B@6=<;CE59<;AA6=;CNT@NQ:FI6?B,346=8:D@8BA=HJBJM:><8?<;FG>HM5@E,209@B5>A@HI@OW5BJ5@F>HQ9HK157*4/9HG1:;3<;167%)'5?A1==)52077-857Se6?B;=?9??/89,306>@5BI//35:?5;;9<=.;91;C3:?4@D>EK7BHFQX>8FE;CG3=96707>>4>@/84347:@FHJ=KM9BB0<>=CHQW/G6ACAKN=PPDRTFPS8BCELRÁáíj”¤B8B@3>@?HLBIQK^c^itgrwgqw[egGMLECADHG9?<:><8=@7<;:?;054,24,44,235430773=<7BB3;83<:2<:182=GF9AA6??168467012*0.*-)0531667=?5><-:47?B4<>5<>8;>8<;078.45.44*210:<136/466@A4:;*),/431431128:;4>@3?=20./722452729BB:CB:@@;CE>HE=2672=:4BA;AE4@A;ADJM?OW4?B9GG;CI49=19<39=’¶ÏT€£Ch);,6?CIQWadBQM!.2 --/!&$%))!(( $%-22.22.74!$ /00!%&"&--63!%&/4<1::2>0:98>?2993:9155>?A211+27+=B$'+."/25?A6@E@GK8<=KU\2;BMSYW[`_mjerwYdkT`aLTPEJGACA9=84;95:72768>>048/2-359:>?-/+.0/+//6>=8=>22/-..+0,(-($)'.0.&0-/68:>;4><8CG5=<>CF29A/25253?JM.97-10*48.984>6<<2876>A9AG=FE?HL69<79;6<>>KT8FF8;@AOWIQX5<:7>>7@@6??;>>;FG?PX6@A@PO?GM8GHKR@PS;JP‡²Ïn¡Ä@sž9[)4-0=IRXCQM):=#)*$ $$$!&'% -/+-2/)31'(!!47;5<:'(*;A?,44249/9<49;.,-:DJ.669CG=EI0:87;<$*%6:?8:=289#),(&+872@E'-COT.6<7HD'-57EO>IO>DI4ADEMUCKVjpwipsnrxcklLTQ@CAFHF9CC5DE49=15939;;97:>>:@B@:<>1:97CI58:9BH9?@068.57&-,(+,.4:04858?4<@0??-:6,/+.//29=1<@:EE>II3=<261-1//777<=6>=08809405317;78;;GI8BE3=;@DTW@LJ?TVCIM3==48<;BIBLNENT8>>2?;?HQ?LSES[@HJ…®ÍšÇㆸÝs¥Ë?i,EZ+85?D'.5",0"!%$$ %$#)#$#$)@HI/420136?A$17)02347++-10/7><39?2;<7AB3:=,0//20./3+<;#43 $5:2CK,77"*6:C2;?8BGPY]6FI2=?BLS=JVKXc^jp`lx`lqRXZNROCGG4>?,9<08=18=/97=@B4<:566;=B:<84567@BAHI;CA8?;5:99<;;=B4991;:7:;7?C8=?;DD:CF9AI8FH9FF3:<5?@8CGHH?EG?MS:AD7@@>KJ9BE.::2::23;;LJ;HJ?JR8AC(/2178.7:4=?:DG8?A/65›Åݼâõ¶Üí´Üî—É߃·ÖX‚¨*Jh!3@!'## #%($#'+,288#%",.1+5:'59%&&-106=:/56197:?D*.+/49/57,260:;#3623 ,-/:A,4.1296<;AKM9ILCE6<;155076-31+.07:>;=?DKJ;DC39;5=<7?@=BE;>A:FA7A?5:;255:?A/34-871:>57;4=86;>3;;*0-5;9236.3+4<4>;:DIBIP9EG;KP?LQCNR=JK9HL;EG5?A0<>?IJ=CF1;9,434AE5@B7BC;IG8FG9EL6EK;JL7GH;CCCTY>IPBUXAKP38=AMP<,./6;>AHO?NQ;HG6AA=4>@3@C:HL5?9/557EI6AD6=?:GK@LQ>UU9JJ.8<;LR9KPD7<@Y`aWaeFOVNUSW\\LSVANZXgmIUYAJN>HI9GJ,561<>-1609;387289.--8>:5;60711408575:64977>?58917:6@E49;;A@;E?BB072033/364?<64989>A?BF6><7:?:CE8<@?KK5??=EF8B?6996@D2::.97:IN:HN6@>4=>7DB?LRJ\f:NTBLMBSZ9?@:KM4>=2:=7=E=EO9EI2=A;IL?NU?KIBS[C3337?B;EIGQT§Õì³ÛðÑìøÖíùÕïøÆåô´Üï±Ùí}«És–¹Š¶Ñ^‹¯?\|*=N  &#& "')%&.#(,&14.@Q>Rd7Vc(?N+;D#29)>M,@T3K\Ii‡`­]‰£'DZ6Vh?_v?_pA]n6FPGQ[HR[R]\T][bel\ghWacYckX]aFOXANWAIF4<8+243>@1=?.860676=?/42024+/*'/**0-5623;6:>?-30.721::9=B;>B;FP5AC8<>354)0//23364;?;03059:CHAHG.21:;>4@E9CE6>=7??;BA@DE:9<142@FG<@B8@B?FB:@C;?@BMP=JJ:DF;GH9AC08;4>A4;@5?D5AA=HO=LRLNCOTGQX;CEGMP:II@LM8FH=LOANQ8EFBOSCTZ@LO5?@´ÙîÔîùÔí÷Ééö·×èy¡Ëƒ²Ú¦Èæ²ÛêX‡±Rz¶{®ÖmžÆs¡Ìi¡¾9NZ:QaA[m@`u/?O6JaNo”[‚«Wˆ³S…³_°Xv”dŒ©r½…«Ê‹¸Îƒ®Ê|§À]…˜^‚›n˜´Qr†0<@/68-20/;B2:;55:052.-,/444;;3753<89ED1;606.4;9?CF:GE=HH;AE04:7?D:EF;BD;CF7<=8:<5:=1743661565989668FG6=<2<<1<=;FJ7>@168+11+134984;;7CG6>=.640893>?7A@3::15357;7;;6@@=FE8AB486;<:3>9ALP8EH9EJHWbDXa6CG6@?7>F8<FZ`hbikS^][bgFOSWZ[Y^\EHG7=>4;:013189-8;036-88.876=<3751875;8.20144:DG>HJ4430984654863=<5;7,0-17;/9<-;90969AD39;7<>5;<;FCCMKHNN7@@;BC:FH9AB9DB9A>6<;1998FE?8BFDWT;CE8FK:=>8EH/689@?:GK;JJ>CB8FG:IHFH9DD385?FD9GG5=7?GG@HI787?AA<=A2575?;5BD>49=CU_6GR7FF8IN9DI08;277*599HM5>JNCOTAOW7EH3<89GMALQAKI@ILCS\>HL1868BH;DF3=>8CI?QQFTX@PT7@D¸Ûð½ßò­ØïjŸÏhšÐnšÎy®ÛN…½u¨×ŽÉå^˜Æ†¾âœÍë‡¼à‚½Üy®Ñlœ½m–¼x¡ÅžÄÝ«Ðã ËâÇݪ×逳ґÂÜ„¸×~«ÇŠºÓœÇÜ¢Êà‚­È}¦ÁSr€6BI1CI9CM@3:<5@A/5:-::0060<<,::3:9+2-25304518549;7A>3<93:=5==6=;7;<:DL9AA/@A6CE8FK0=<@MR<:JLEQ]?EI1760<=5:96?<7@A0;@8EF0667;5:DL?IL8==5=@GJ=HL3995;>29;;ILCMI6?>7;:6<=26979=A9DG4678@EAKN;BBGI4JQ:8CD>HNHMVBLR4@AANP>LN8BC7>?ANSAMX;DFCSX:BC>JM6=;:JR;JN7FEBm™Åj–Än Òi˜ÍX‰ÀcÆ_˜ÉFv±D|­Rx¶¡Í쎻ؙÊésš·¤Ìã’¼Ôw£Å–»Ø²Ñè±Öè°Ôæ¶Õé˜ÄÝŠ¾Û‚´Ó…®Ë„±Î”ÂÙŒ¹×Š·Ó†³Ç9Ti'4@9GL@JOS]g[hq>LVRbjYcjq~€>GJ8CA579376.762DM-@B+/2*0/(25.0.*..4595:95963977644?=6=AFL9HK@NS9KR9ED9=@8BD8DD>CF3;72500032522=;:BB?DC7CB=GF8@?7@?7A@8FL6@B3:8>CC@JO3=<=@DEON:CB8>;8@<;FEFQVBRR;EFCLPBHN5@BFB@DHAKO>OLBNQ9EGDIP9@A2=@8DA8GM3DD3464@?9?@?CE:9<7B?OY0=ACTYEQT=KO}¬×z©ÑXˆ¼W‚¹X†·bÂS¯6ULs¥.H‡Z„¿{¥Ò±Øî±×ì²Ôç¹Ùë´ØëŸËâ´Öë¹ßïžÌâ˜ÈäŸËâw¢¿€§Å¥ÉßšÂÚ‘ºÑ…°Í…³ÑQq€5CO>ITESX\bjVagx‡‰>N]PWaOX_CQ\;HK18:277=BG2>>BFBEJFI7=A9DF1769<>;>C5<:5:;;DIAGL>IN:CE6>>EB.7578:>KOELTKY_?KN8?@7=:,30486:JJA:?EKX\R[]:CF>IK=HH;AI;AA=CL9@?=LODQVHTX:@?;DHAMTAMSLagOagDRWJV[M^c8DA@MQ=@C<@F:AFBMSGUR;DI5<<6CEGU]HV]>GJ8GJƒ°Üv§Ó?j¥V{±T|°W…¶Rk¢N{³Mz«Jk«VŠÃGo®©ÎìÁáòÂâðºÜë¼ßï»Ýí©Ôè¨Òç©Ó鑹ҳϩÐä³ÖçÅØ™ÁØŒ¸Íf†E_n8HM:>EY]bX^eUboXhsK^d=S^>KQ=FG;CJ1RW>QP2:<28<:BBAFDAGH6:79DGEE>HD=?=;BA79:4;::CI;BC/8579<=BE3886:6?AE8>D@9DJ1<;9FF@DHENQ;CD>IP:IO:CHCJR:AF27>8=?7>=@GG=IHBLT@EKBFGFPQBIL3@?8HL;1:>9GG9CL4??8C??KNFNSAMRFU[?LQ5?B9GLJZc?IL=EJFTZ:CC3;?3AD>GL6>@@FGADI>OSDMR@OWAFL5:<=OV8FG@LPH4@EEW\DS`LTaWdkkr|€‘“IRXDRV?KQ9;;396,./*23*4;27?/:<)/+-/-021542-59.11/514;75553333337>@9<=FI;BD7A>4A=8=<587=6?=FPO?HH4;:33<566;AD>IL;CG;FF?HE=ED=FI?IM@JQAMY>HK@KH@7EG=GE9DECSR@OP@FJDJJ7>@6AC9HIDMN@JIFS[=FG=GMDJNAIOCKJ:EJGWcL^eI]b@PPT`cQ`gAPV7CHDMT?DKERYAJQALQBPR>IL;CICQU„ªÕu£Îoš¿a‹¸^‰½_ƒ®g–ÌD{µGz¸]•ÌJy»‡²Ü½áò¾ãó²Öëºßó—ÍésªÐ¦Éä¿âð¸Üë°×å¬Ô臲ËFew*DM6BM;GJSY8GH4BF.69-.,-642?>261054/553;:5<>9B@8?;5=98?C8AB7DI37557589<377:>C;EH7=;1636<85B@6>?4:74=>4;@8B@8>9=>?9>A:DC4>>:CJFKP>JL8@>366-0109<:DI39:4;9DLN?IH5<<3873:94;=496B5?>7BD9GJGQY7CD6LPBPSCNQ7:<;@BANSITYBLM>IN8?>5A?7<>6@D1323686:?>QSCRU=IJ5>@3:<1:>@HF?LQ?JK4;=5=9?LO=AHBMP@KKAOUBLQ7CI?FHFRYCJPJU[DJLFG?FI4==061>?BE:A@0685:;>FJ;EH8EIAJKCNL>NO;D@=FB9HI=MPEUW:??49:1:<1:68@C>LO-654AC8DH7DB4;<155:@?@IK8BB4?>6==1676<<8:97AC;NT5BC5<=297=HICML8=<:CC?JN;GK3;=-15259AIMBLJ>FE4?CDOTCOR>KO>JQ8BE8FH7?=7AC9IMDOS9>C5:@AJN?NM9IL;MS:LN4=?=OQ4=B>MZCPW>KLBOSCPU7@AADM:DO7>CFSX>GO8CG}¬Ô†¼Þj•¾lŸÊd’Æa†ºe‹³Iqªr¤Ñ€¸Ü½Þ†ÅæR…µY•Çr®Ú£Óì«Øì ÍáªÓæ·Ýî¤ËÜ`›=P`;PZIT^Udl\fogvzyˆŠ‹–šfx~DQP9AA79<.1219<?=FE=EG8BD6CH:DD9AB4>?1:94<>:?@@FD9B>:BF5<=;DF7?=8<>7;:>=@;BC:DA;?9EG.764BC.893AA4@C5BH2658GH4775<>>DE@JN=BEJO;DD7DD4:>6A?2;:;DEGH6??CLODQY4>A>KR@NOC0420?:+1307:/:69CB5<>79828;:FJFX]4:?4CD.795=B3=<0304:;;CF9DK6BE=LT3==19:4699?B5895:9:=>7@E:BE9BB8@C6:=7:=@CD?DD:A;4898<>8AA9@A?IN>IK:A@CLR?GF@LM7<<;ABALN4:<5INBNK8>>8BC>EK@II8@D8=?4867>9?@9>B2<=>LK7FD7ED@KM;FJ5@D3=97BE=GG;C@DLO:?>087/5:5==9GH/871858?C9DGA9AD258:EE8B@7>=BLM=AB2834>>GFA1467ISZIRU=FG588=AD@GHE7AB096=EJ7??;BD9??;B@8;@4A>5CB?JK3=82;<28788:BDGFUY?GHDTWDS_DNUN^g?VZ=JNHOT@KK5=?DMMGMMEQS@LRHWZ?BFAHILQT>GJ4=;/518GL:HIJQ=P\3DJ8AH5=?9FJ>TZ7AA9HKCPO9DECPT;KP;HI1>@9HJJK:JPFVY?AA>JJ:KI7CB‰²Ò‰¯Õr Én™¿PdrQnVy™C`‰qžÌj›ÁOo’Qk”y£Èˆ»ÛºÚ_‡UvD\jDS`fu„sƒˆauzUctfpwiuzIPVNUV@MS;CA6<;041/01220173-66396:CC.412734::3:7>IJGRS5?<5;96=A4<>9FF;=AENRFSUITXBKS;ACAGL=QQDMQ>DM/456;?6:;8CHAPX@GM8?>:DG=FI9=B5:=@BG59:*1/6>?KVYKY^>MV1<=174.7:5?D8CB:DD=JN7AH>JO2@C1CF;FU9DH2<<5::2<=/882CE4=<1871CF5@>?FP7CB6@C0856?>;HLAQV7KPk¸x¡Ìb…²b…¹eНa»PyœOl–TužFf†]‚¦\ª5S‡b†§X~”]t‰Xo|Sezcy„|„ly€UiuN`nR[hL`j<;>B=CD>GE=C?7;;2:97HMBU[;KTI\i=KT:OU=OT7>@>6<>=:BBCH;EF7<=8>@2BB?LQ9AA8@?9?D@QV>NQFRWDJQ7BE=FE59=:BEKJBNTIUXHTZEOS?FJ8CB7==8<=6BA:FDDQS6>A6@D5<@6?B6DE>S^6CB-749AE@PSCLRBHH@INEQV:ADANV9EE8??>OV@KR9AF9DG3892996BD6CJ5?D:MP>JT4?@5@C;MS;LW0<>9II09;:EE;HK4:=9??8IJ2?A9FH;DG@OP?MN8ACALOCR\8CD;HJtœºƒµÒMvš`‡¹kšÇkŸÆ]…«vœ¹HkˆVy¡·ØUyšHdK_tXv…\v†Uiudo~n{ƒkz‚T`m`fmLZbDNR@KM6==<:<.786;>4:>078/>;1=91752<94><6ED7FH8;88@C2::2LL8FJ:@B3;>5EG@RX3@@79;?EI5<:4986=<8A@5?@9EB9@B744/:9AOQ?IGDNVBGNHODOSMWZBKMCJGCKHFTS>HHMM>ML8A?1:<9BG=KKCCLPFRSBJN067.003;:/359=?8CD,343@<8CC:HMAJO=CE1<FI5DE179C6>E3@D6=2;;08869;AKNGUZAGH;EH9AICGN?NS?MP6?C?DI@FG698/40064,22-00+24157+13+1139=6CC4EF;JL6CD:FI9BI4:9-212544873;=1::BGD9ADBKO9GJ4@B3=<.:7;GE=HG9@>7>>>FFBEJ5?=FPSFPR=FH>ECIKNKOSDNR>FH@CI<@D:?BJY_9BF;AC5=:4DABH?2899@B;GQ8FO:>B9CF28:?KS:KW;FK6=B1:<8DH8DG6<:0:;1:8;BL4>D0782<>IK:EB>IKESSFPQGMQBKP’µÏ¼Ýð‘½ÜsÅ·Ö•ÃÜMv¡Ho“B\{4NdRqˆG]nUfqTl|Wo~r~ŠPfpYitLWkKVZKOPEJP4@A3444@D5BF-44:BG2>>:=?2;23/23810956FF:KJ?GJ5966;9:?F?FH;@??EC?GD:AB>BE6A?ADJ@EH9GF>CA;CG@DJ>IH>DF4;;.46/324DG1?>9AA?QX6EAKS5??9ED?NOALN<@F8A@;DGBMODMRCRW@QTDMNBGO>CFBNRBMUFV]=DI>EL5<;3132;61;IJ>JO=DJ;EJ;JI>PR6>A;HJ@DG;ILHL2;?6EH9EI;LPIL9FH04<6;A5EH>JJ?NT9BH-466@=:DG9HL1>@8EGAJO8HO4=@1<MP4?A9BC;IH8>?7?B@IL57=387‡¬Ê³Ô§Ì嵨îÊäi—ºNu‘MrŒ]u‹N]iK\mRguWizky…XhtXbpTcqT_pHT`JU\GTV=EODXe9JQ2:;7BFK\k=NT9DE?GI;CC6::1964<7?EH=BF7?C6?=7=>9IH5>>BF8;>1858GJ2@@7EJ7KP;GMAJN;CD1>B3<@2;@/;<5=B2573BC;BG3779<>BLOA?8<=5:;9;<4795:63:96:<497;=>:?<;B?;B@7;=7?B9CF5<>BCP8F[L`v5?>189:=GEFPVAPNAJO7BD:?D:@@>EFHM6IO8>;5>=4AB;BD@PS9IE3BB0;85@E=CV^?QZE<>C?IL2968BBDF?FE=EJ8><6::=>C?BG4=<9DI7BD7EI?LWEZl7EXE\rQl†HZb;FFDMRIG4:74859AB:AA3;96>B8?<:ACDPT@HMGR[GG5AC9AB/:;7>JO8BD18<8?FC9BF@KP7AH@MO=MPDNUKM4;?=IP?NS8;?7=@AIO=DH@NTFINBGHDJK=BE=EGHMPFIL8@?3;=5@C=EK=ELAM\;JY:FP?ELAKU@MWG^mC[g6GD5>?4<;8=A2=;2671333;JI8@B3785:<3876<>8>>388098/569@;:EHJV]@LLGTUESV>II3:=9CH:FD=BD:??>IK:GI09;6BD3B;EHBWZDSU3>;>DF?LO=GK:<<5CF/22:@ABLN?LP0:=>FMFZ]GU^FSX3@C5IK?KR?HJ29>9FD8?A>HOARXCPU:HHAKP7DF2==6@=:EJ8LQ;CFAEIBLP7?B8AA9@D=LO?JQ3D6EG9BJ@R[FW]IK3A0532:<=EJ=JPC?EK?NO>FFCCDEH8?>68;5??:FF6CD>OZ@Of;?QFH:BB7<<4:8:=>7A@>IJ?BB?FE395@CFAKJAILDQXHRTCLH=HF9BF7>G;DF;IQ:GN6<7;EECMQ3=:,73BKS@@GM@GJDCHCHG>GH@GK?GKAFH9AB>CD4C@.794=A7HF;FE4<@/892;=4@D=IS@C?@D?NU2;=,23+315?C19;-969HL>LR9@?ANT@EL?LNGY_@KODSYPV5?D,677CC0967@D1983<=278.:8=KRENT9BC=LQOZ`6AA5BBCU\ET\=7@CNP‰¯Ða…¤Qt•VyŽWs„Xs‰Wv‰_u‚G[gFYfUiyTgt=OU6>F?JT;CE8DH3>@=GM:DF5><4:9669GKQFOYAFF?EM=FH?LLGMO?GK9AB7?FDKBLS@KPKWjC\o<4=8=EIDHN;AD=A@:AE<;HL4=A1:;8@C:D@?IF>HL5ACJOAVZCMO:BA7BB=CB1750254674969CBEOV5BB6<8=CF9FDBOU>KP>8HI=KQJJ8GM4>=6EDDNR7DI>GL7;A08<4>@8CH5;=8GJ7>B5<=4=@4:;1885=;5?E7=;<>>5;8?D@EMS>BBKSVENR@HJA:@:AJHCHJENRDQ=HN?FLA>FH4>@3;<>IG;KD8B@@II;AA7BB?HK4;A5B@>IOHI;@?CKSBNQ8?@?HK9HNBRV5@>C4AF4;>2=>3:<+87.25.650::=LQ?KJ28>5DG.672>@?SZAUZ?IL:EJ@KP8DE8CC7>E3;@=CD1<<8CF7EC19;;FQ;MV6CJ?BR\BNVDJBLP;FG>KLAFFISAGUQiƒNqŽ8CD?EA>HE6AA8DE>GI?IH@8FK5CJ9DKC5=97?B7??469=HK;OS=JNBP[HS\5B>;LK=;HI?JO7@ECNNAMMCOS@FK=DCRbjBSn8MZRl}XpYu‡]z‘SesGTaBOZ=GN;BF;HM9EJGVb@OSEJN=FF?OSDGI;@@:=>9A@A=DD9AI@VhQsŒSk‡L[hET^EQTIP[LV[FIOBIOBKLGLS?HMAFKBLP?IXBKS@PV?N`6:I08=?IQ5AB9?@DIO5:;3>;DFI;@?BRW8GI;IL:JN;FJ?JKJT^AOPETV;EL9=?DLNHTZGSZGJSHR_@LQ=HN5=>2;>09;-42>KL@NR289HSW@GL@GK5@A4:?/35=BJ>MT=IJ053*854A?CPUNPCISBIJCPT?KOKP8?=2878EGPS;=BDLVUJOT@KJ@JOBLOK\bAKL:AE@JIDJF?ED9B>8>=;AB=DGEOMHPOCLK@LPHMODOSIQQCMRALZCR[IU`HPXGQSHQWHNVIPWFJQAIN?HKGKP@HOBKS>J]@IJ7BD9CH9CE5@C8?C=DL?GJ=JF9FE;IM1HJBHMCMJCIIBGI9FI9CI;GJ6?E=FC?HK@NU?GM:AF=@@:BC0=;0>?3==>NR=NR9NS5=C/:8=CFAHP:AF@4;;5=<9>A=CG7??5<9BIP@NQ8FH9?@3AA,685>?5;?=EB1343;;0:84=>:DF;AI9CE4:>7FJDNU@LR7;>=@A9CB=DG68;4>>ERR;IL07<7>@>IK6DA?GL7?G?FL?OT>NS6@A49A6=>9@A2;:BMR:?E9CDCNVHTTBOR;BG2B?G^t6?KFOTAWi5Ob?Vk:LS0=<9DF6CD;KR:NV9@C>FG;IUHXgN[hLTaNNZFQ\BKT?KVBMPJRbDQl57>A>HI8B@?HJ:EE8@@;CH>HI=CH=EGALJERU=GL7AC7DC:BC8>=8HE:AE7@?4;>3<II7@@9GINPLL7EH1AA5>=@HO8BD>HN:KKAGIBOU>LO5DA17459;4<:4=?1:;/687CE:EN3<>8@??IO>LO;IQ5?HKRT48;6DC6GI?IK=HKMY`:HJ4?B4@BARW9FG7?CLSAORCPY6CD7AA/8;?IMCOR:DEMS7DEQduanv†œ¤x—œ#5?;Oc3HN@RZ?R`7KL?IFGPR@KPCOPCGDDPOLTVTabCNO>EGBLIBOJ?FD=B=;==IKJ@LHFQV?GI>DF<@@KPTDMNEOQLUX@JL;BD8=>@INANN@LHAKK@IG=GH6B@:ED:>9HEGXZDQW;CB@IJDQTFUVEMQ@JN=FK>KR;HM?IT=CH4>C5?B7CC6DB6BC7?BFI:BE>GQ/8=/;@>DB144-89-7;9CH>NTDOR:GK-9:.457AA;MO:EK-53.;==HK;DB/98=EGAMM>LP:@?9IJCLS;GH4>:4BC:DM287:CA>JP3=95@?8DA;@B;AD>EHEOWDQV268062=CG3@C=CE1782?;?HL>MQ7FC>FFJ[^@NQ;IEDRR¨Ä×ÂÞí«ÊÜ·Ú銬¹e}ŒxQpƒUr…KaiBJIGMQITWHUWBKH?GGNTYMVWAFGAFEBGIAGDBDDDLGAJLBIK;IIHF=IKFMSAFIENPCFEAJJGNUCHL=AD:DG@HK9BC8HOGUj=6;>7;A7=;A7AD:HL@NQ>IK:BA5@?1:77=>?FI6EF:@?9AC5A@;IJ:HK=DD1::*861<=8BG>LL:?<9CJ@NR?MTDPV?LP5BA;>B8@G5BE5=?9AB3@=,67=EH?HLW_bOSV;KL>MS=ED6?>.789=AESZCOQ@OR8AD9IK?IMKX`VagCLO@PUIUV=ED;AE;BC>NR8@B351EPQGRWCJO:5@A3?B1357=??NM=KH;LN3?=0?A?KS=JO9@A<=IM8EEœ¸Ë¯ÉÙºÚêÀÞíÂÞëÅáí¿Ý䦿̓¯»€œ¨]s|YmqMZ]DCBHHOQQLRVDOMAMJABDDGH>CB8?>6=<9C?AKLAFG?FECFI9GD@GI>FFCECHHAIN=DD;BC@GH@FE5CG9Ia;?L;CD=@A:BA;A?6@@Y„¨Q|’@YdF_jKnƒTˆªL~¤A^p>PWJn†Iy›9\}AfBUb>KU9@?;DC6?C:B@:C?9DF;IH4@:5>=9DBALO=HHAKO9@G8DF=EJ2;=2C?=5@B=MSJN=DI>KO>LQ:?H5=;FOQ3892:>4;==DB8A>=MP;GI@MP7>@38=DNU=MM<GG297?GIEM6=?:DF:CE>PX?TZ:EF.36/:=:BECQT8@EBIM?MT?HL:DC5=?;FL:IO38;9EE?JOAKQBGKBUXCNPFPWCQV—²Å½ÜéÁÞìÈâðÌãïÎãïÑèòËåòÎçòÍèòËçóÁàꢽǨ°f{HWTGDBIJ?CG;FG@GI7?9@FEBJNELPBEIBKN<@BBDHCNO8@=@EJ:@A7=;08C9@AENM;AA7B@8@=RhGL9KbQ‚¨E}ž9S\ALN?KG:GIDJK3<74??@EG;A@;=@:CA?HJ1>>@;A@AMP5=CLN@MQJYX@OO3B?7@CAIK9CG1:9144/79/<=8?D;KK;DE8EH>CI4BA=HL6?C4<@DU]L^fDUYBFE?LR=EECIS8@D@EGCKN?EJ@JOBLQ5AA8==5<@:?D;GK@GMBNS>>EL8>@9>B:CFAHH?EJCII>LO;IH?IG;:>>:BEALTKn‡T‡®Lœ5IT6=AAMZBd~@^~;[r@[r?Yk8EK3;87@B6;<3>@,2/4?A7<>8A@8A?9FJ6?>>FH7AB7=?7=@=PW=LV=GIBPX8?@GQXAON6;?4@E3@C4?G/8:/8:7BA4;;>NTBRVDMU@NR6A>0966AC;DG7CD8EF8EE4@A8AD;GI4BL/75>@EERYGU\=CF8>A;A@>@B@CC9@@EHLHOTFOS?FI?DE:>?7?@;HH=HL9A>>BCBHNAKL5@?8>=8A@9C?7>C6?@7:=6?C8>B6@HEYk=EG8@@ASiHn”>Se;EG9ELAFF:@DLh}O{˜BZh=CF=DHEE7AI@3<>145?DD4>B4=<3998HMCOS?OT6CA@NTDJM@IR@JP9FH7AB3>=:C>;HG8HK5:@=HQBPV>JT?JUBQ^>HJ?HF@NP=MP?HN:KOCPXDRV:A@>EPCJR7>@:?E4<;9??;CH@JNDOU@JN>IM@NLANN6=>>KL>MM9CF9CD2>=9KMEQ[:BF9INETZ?>DDEPSEKNERU>BA9>:?EGAEIHKQCKJ7;<;;@=DB7@B9CG6>A5==7;?8?@@ED?GG5?>8=@6@E9DE9?DHZjAWfEYhLj}Ij}LeySx”Fn’>]tAWd;HJ@NK5BA6DH?IL9?B;EFSv“1AL;HL7D?/601486=>6@@+678>?=GPBKQ@HM:@C8FGAKPCOW8CD9HK?CQV;IP6BH7?@EOW5DC;MX=LW19>.15AOMHPUr{ƒWclO`gDOT9C=;LP=NM?LO;DI6BG4BC5AE:GL;FK9@BBPV=IN>LKœºÏ¾×äÌãïÎæñÌåðÐéòÕêôÔìôØîöÕìöØíõØíöÖìöÖí÷ÖíöÓì÷ÔìöÓíõÓêôÏêñ¥ÆÌc}€BVX=OO;CC@DJEKKCGEKTXDLS@GGCNNGIPCIL>EE8>B5:8@CD>=C5==8?<8=>?KL@ED?JI1>>ADA8>=5<:>DH8CG2=;2=>4B?3<838:6:9;GI8=>8?B9FG4<:3DBVdIl†5I\8LZ9N[Ix˜5>B3>>6;:3HJ6=94<8=H198.56;CG=BC08:>EL>QV8HL7B@>SV@NS=CF8<<6FF7AB3:>3;89?B1;8/449BC8IQCLOHRV;FI9?D9BB=BFALREQV=JLPUEVaFECPV@QV@MN=HFCMR?4;<:B?8C?=B>AGN?FI;BCIJN@HIBLLCMPENOMZ]HOR@OR:FF=CFADD:DD4A@6=C4>=0;;5<@3<>6@;6:;089366*3/5:88@C9Q[>HM>FL8A=D4=C4<<7?A8GKEOWFQT?@F=CGCLLBMJ9A??HG?JO9FH0>B5;A:CK8?B0:9>FK;NTFWe?KQEOS:BE6@DDOZEWXDH>MM7:<37<;EI4>?)3/-984CD:HLCPU=FMAMT5AB5BB;DC7CDDNRJU[=LM:GE9CF=CDFTT;DB4><7FG9DCBMQ=JL9EDA6EEBHLDQU6NU‹¹Ûˆ¸×’¿Û¶ÒäÊâìÅáíÄáéÊâìÍäïÑåïÙíô×îöÙíöØï÷Öîö×í÷Øï÷Ùí÷×î÷ÔíöÕîöÒëôÌèòÌçóÐêöÎëöÌëô®Í׬ÍÓ|”›`|J_gHY`@GF@HLBPOEEAIHAHI>DDAEH6BA6A?5=:7@B9AC2686:?/760;85:?5=?9?C5?A3<:69?6:94?>9DE>JH5;@6CO6Rc9HR>KO6DG9FLIivOq‰IYoUkGc|Mjz=FM8>B1==;JL6DG@MS=DB;FD;AHLRT;GE=?@=HF>KO7589>A?CJ5>C9GFDS[>SV8=?4@D1;>7@E=FM9@C266456098.4959@7;B-46?FHBMR6<55774<;4CF?JP?IM>LP9EK7AF6KS@QZ=JP@NTCLR;DD7A?:DG=HH=GG?FHCLP=PWFPUENT@HMBLL;DJ6?F=HM@KR?5@B7B<¹ÚŠ¸ØŠºÚ‹ºÚ“½Ù°ÍÞÅÝåÇÝèÄÝéËâîÕêôÕêõÓêõ×íöÙí÷Öî÷Ôí÷Öïö×ì÷Ôí÷Òìö×íöÑëöÑëöÓìöÓíöÖí÷ÑëõÔí÷ÓìöÏìõÃÞ盺ÁVq}QciKY]=EICELKOWDJL;BD=BAAIGFI5=?;?@3:T`?NWG]oI`uASeF\p>XqMjGXfGU\CQR:>EG2::8BA7?B8HH7=@JT8EH?FO9BD6;>4AB>DH7DE?MVGNXIM?DNR=EG3:95>A7DG7==6@C@LP=@A7?B2>;087277155;AA;>A4??2;;6<>4;=0734:<5CDFQXI\g=T[Fh{Mv“EbzAYpIdzMlƒ>M\;GKKd}LezTmQp‹Me{>6?@6@AENQ8?A7@G7?B.67+8726;68;5BA4=>389?FI,47,53.:736:9BG;CG:AD?KR5>G4;=9@F8BC7@G;FJ8@C7>F;KN6@@3??7DH2A?2982976CA=GM;BE;INDPT@PU=@F;CC>EJ3:<9ED?EK7?;@IN:JL?;GJ=BG9AE6@@5?94>?8?;6975<>156156/7<29=0:=089-74,2/2:8/63/7738>0850:80762==?Ti?[tIr˜O|ž=XlCb|D_x8K^>Q^B\o?SbE]uIasG`xKazMg‚@NUIbmOo‰L]qBavKlŒJf†:QfE`n?EJAKV7BC/53.241@E/?>7B@9EC8DB7?D7BC177@JQ=EG<>B:>?9HFCOM=JIAJT9DH2972;>;AGAMQ:IL5:A8?D7CGCQTGQZ?FS@Mc>MU;HJ=KNCPZ=FL?T]GU^>PQ:EI@JPCRWHKT>BD;HLAKOKI>IN@JN:DM6=<8AC6@B?KMDOVFS[9BC8GI—ÀàŒºÜ€±Ôw¨Èk—·aŠªf­m²i‰¬Yx™LlFjŠ±Ê¿ÙçÒéðÏèóÒëõÏëöÑì÷Õí÷Øî÷ÓíõÙî÷ÜîöÛïöÙïöÖíöÕìöÐêóÑëõÐêôÔìõÏéõÍçóÊåòÃãï¯Ùê¶Èg‚f‰š`}‹fƒ’SjrEV\ETYE69<6=M3;L,67/64+35)).+/2'./%).-17'./9BC4=>,353>A1594CF5?H8OZNv“Mk†@aw8O_GdyG[iBXgRpŠBOWH[jLYbJZfDVbIdyOuIm=[y4EQ1=@3==6A=1:77@C48:6>@,661>BCG@JM=IM:EF5DFOW:HMAJOBJRBJQ:CD=FI>LRBMS8??IQ?BMQFU_™Åå’Á∽݇»Ú…´Õ†¯Ò‹²Ò²Ò‰­Ï€¤Æzž¿‰°Ð“¾Ø”ÀØžÃß½×éÐçñÏéôÐêõÓëõÕíö×ë÷ÖëöÕêôØíöØîö×íöÖìõÒìôÓëôÐéñÐçòÍèñÍçòÊåñÉäñÇãñÀáñ°Úéw¡¼w¢´³Ñ¬Âd‘g‘¤[u†WuTgoFJh<\n:HJ8AD17889<478=387158+886A@6>=7976C@=IMCMKEOTBNS8?B8BDIP?LO>DH?GL>KL6;:7>=6=@8DC7HLGTY>DK3::;IM=BH3>=6HM4=5FH8CC>JM@7BI;MQ8CC>GK@NS6?<8>???F5FG™Èæ™Çç”Ãá‘À߾ݓ½Ü˜¿Û•¿Ú¼ÛŽ¹ÛŽºÜ‘½Ý¼Ù–ÀÚœÂßœÂážÁÜŸ¼ÌÍßêÏèòÐêôÐéõÏéõÍçóÑêóÓëõÔìôÎéðÔêôÒéôÐéòÒêôÏêóÏèóÌçòÌçóÊæòÈæòÂäòž×í­Ùë­Õé™ÅÙ‰»Ù‡¼Ûnœ»d”·gŒ¡LczG^m-?D08;*3548:/78+20056&-+#*,/83-13,46%$*465;9-04.18*337=A)6;1;@27;/9;8CIH_xMnŠF`qSawSf{OdwM]pKe~Db4DU>HJH\jQv’WŒ¶Bn‘?[m8EI8?@7DI=DF@JSEPW?8;?:@?EMW=KS?NO9@AAJG?JN:CHFJN;AA7B?4>A7EA:AF6BG7?@7=>AJOEOU@GM6KP@DH>EK?DJ8DEM\_HMVBPUFPQ=HF@KNCRUCPW?GP3CC7CF:BAMQJO9@K@SkB]sGVhJj‡EXw5M\AXeIg{P‚ Q}žAc}.Yi8IL>HJ5?@2;96=?/863?@7B?BMNER\=HI089/628>>3>>4GF.976<>AFK<HN7@>0::5===HMFRSJTVERY8EDGSUIU\9A@AJKBMU:GHFPVGUUJXW6<=5<@@FJ?FH>KMFQZ;JP?GJ>FF;GL>II>HN4>?3<=5>C=DH@MR;DJ8FI4DA5<;=HJBKO–Âá”»Ú˜½Ú’½×“¿Ø–ÀÙ—ÁÙ‘¿×¿Ø¼ÙŽ½ÙŽ½Ù‘ÀÚ’ÀÛ—Ãá•Àá«ÊIt‹e‹¡Ž²Î³Ô„£¾t‰™ÀØäÌçðÌèòÍåñÊæîÉäðËåñÌæòÊåñÊæñÊåñÊæðÉäðËæñÇçñ´âóºßðÊäñÉåðÁàï·Ýð·Úî±Üð®Øð‹¾Ûd—¶`„¡G]kKbpLR:BD8?<4><7@;:FGCHPERW>JKFT_:CH@FM6CL5>A8A@2<9BKQBPR>GH>JL;DI0==DJJTY@NT>HKHK5B@>GF=EJ9@>0?@6FF6DGNYMy¡=Wm;CG@JOBOL5CF3:9CJO=NM:@A@KM?HI>CF:EE=>E1FJDQZINXGPW>IG:FK:AF?HH6?A?FH;HH=NPEQW:BA:HG?MR?AI7@BDNYMWaFOSGKU;BF5<:7@D4==0968?B8CF8B@7EI>LO;EF?KI:DH8B@?IMALR>FJERX?HM:BG4>?5?@b‹¯Ns“€¥Àtš´OtŠ8LHla†žMo‰Aa{Rv‘_†žY€‘=ak6;97?@8>?AIM6B@7=;8?C89=9HVHi‡O}ž;LN@RaLq“@b~=c>l–;Vk8BKPk9LT2JM6?;?JI>CF6<EG:DC=IK;6@A@MO;JM5987BDAKO@IP;DEJU^>HM>FJ@IL7=8AE5>=4;>>EI9CEAHI=NW8AC@GL>KS?IP:=>0=?7CE9CE6=?0:49DD8EF2<<9BC3>?8=>GHV€¤:_€zŸ»‰²Ëj©BZX}™o”´Gf„$@[b„ vœ¶_„™,JY0>Kj|€¦¾ƒ¬Êp•ºk±x•¯5K\+f†š‰³Í„°ÍwŸ¼o“±†«Æ©ÇÛ¶ÎÛÆßëÅàîÀßë¿Ýê½ÜæÂßíÆàîÅßíÂßìÃÞêÃÞë¾ÚçµÕä¶Õå»Õä²ÒáµÒä´Òâ²Ïâ¥Ëâ“ÃÞˆ·×]’¼SŠ»L­5Xm2L^<]u5Ud0DK)=>1>B.;9,=< )(%##-)&0+.84@EF:?>098#//).,)/00202754=;:CF>CI;EIENVENUDFKAKNEW\9O_KmƒC`zEay;HT8KP8JR;PX@[mJ~ªLvFas@JP9DE4:<6<;>KO:FD?HGBJK?MQ>KR;EG5CJBKRDQVDPVAJJ8>B?DH7=C3>=5DC;EO;EJAPN>IP29?9?@LV^DOT;JIENP;HI5>>;@@1;:;@EGUVIJBOS5AB9CDLO:EH?HJ=JO=FQFJ@NM>MLFSX?LTIRW:CD?GI=DG‡¯Ñl‘´[ƒ£ƒ¬Ìƒ¯Ê]„¥\‚§i¶lˆUŒ¬R—Kp‰Sz–Oz•BcwB`m=Q_E]gG[d¡¨[ks6LS)55(*.7<@5?>=FL:FE9A>6B>9?@6<=2;<9AF=GH:OSIJEMR:DI8BB@HJ=KL8CC2BC@LN;FJ:AF=DG7?C8DFEJO>IL7EG4DAII>LNDIQ=@C>FJ<>EAHJ8DF;?AAKN@HI4?=:HJ>QV?IL4<:4<:8EI>KPFVa=MP9JJ9DH9EHLP>HR7;:2:8;AF9EECQR;DJ8>BGK:CC;EDGH2:92784;74@BJl…Rб@kŒJL7>=?IFCUZAJP:@C6BA?KN@NREXa;FM9??;EA@FN8BD4`|=dƒV%,+>G2BG.<>:DJKX_CSU:AE4CD=FE@LO:AD?GK>JQF[m@Ug=EH:ABASfEh•7KSDQTKgyU¢V…«Nn‰ARWAQT=GJ4>@5?EAKJ7BE=KN=LR7EICOT?IO>IJQX>SZ;LQ5=B5>>@JM@KN>NQBNR=?DCLNCOO@JJ?HLFJ:@C8AD>DHCLLNX]Ž¹ÙŒ¼Ü‰¸Ú‡´×ƒ³Õ´Ò„·Ô‡·Õƒ¶Ï†¸Ð¸Ó‘¶Õ‘¶×Ž¸Ù‰¸×†µÕ‰µÕ‰µÔ†¶ÓŠµÏ‚Ÿ´+;Efy¦Ái®Qu–~¨Æˆ³Îzž».Nhw•«;Qa)u”§’¹Ö“½à’¾à™ÀÚ„ž¨vŠ•¥¼Õ±Ðã±Òã±Óä·Õæ³Òà§ËÝŸÂÙ¢ÄלÁÖ•¹Ð´ÌŽ³ÍŽµÌ…«Ç‡¬È~¥Ãtœ¼a‘¯U…§K¤M}£L}¢>j–5^‹'Nu-S}Ah=]€;Zz;^€/>%- -8+478DD=FH@LL3>E9EH>GFAGM?4<92:43;;8AC;@F6@?:DF7AE4=@3>B69;.:61:86=@;DEDKMCKN>JM?HM=FJ:AG:DF>DM6><;A@8>>?JKANRJQV;IFGST@HN=IGCOS?HPGU\=FR7BC>KMERU?LL=NQ;HJ?IO>EHERUGQXGNWDHNGT^ATTAOS;IJDQTNUZLTZCJL>JIGPT¹Ø‹¸×„³Ó¯Ó‚±Ö|¯Ó³Ó‡¹Ö‡»Ô‡»Ò‘¼×•¼ÜºÚжׇµÖ‰¶×Ž¶ÖŠ²Ð†³Ò‡²Ï¬Ä+DV7Yk‡®É…¬ÎFkRy—Š²Î¢¾1Og\v‰Tjx$g‡š•»Ø“½Ý–Ââ‘¿àŠ»Þ•¿Õx‘™n€•›¼Õ¨ÈÜ®ÎߤÈÛ¡ÁÚœÂØ—½Õ–»Ô·Ï‡³ÉŽ°Ë‹¬Ç€§Árœµc¬[…¦_„¤Z~V€¢^‹«d‘¯N}¥'S~*M{-Ux3Ty1Qq:Sk1G]*=C#!$#/3L[d>5:;9>>ShLu’F]sKhKn‰Mu—Jl…8HO=JL=KN9HD6AB?HM@GM=EFAMPGSTCLR:@D8DA8CD5A>8<<2@@7@E?NW;EM7AA>JQCSV9CH6CJ:@E9>C5@::BA;HO@DDGK7FK?JMHTZQVcFQ\CMWJTW=6FF8IJFMPKUXIUZFNWIPVS]hX_bEOQAML:BA7BB>DE7DB4<=;>>>EF6@?3990:>7?C4=>1;>3>B2AEDfO~“Ff{@Rc@WeNw›;Q\>KK7<<6A@?HF7@B2996=>8=?7EJ:GJ8AB/<;KLFSSPZaJTYCMQ“À݉»Ø~¶Ñ~´Ò€±Õ®Ô†´ÔŠ»ÖŠ»Ö‰»ÖŽ½Ù½Ý‹ºÛŠ·Üˆ´Û‡¸Ù‰¸ÕŠ·Ò‰ºÔŠ»ÕŽ·Ó‰¬ÈLoŠKpŒ¦Çuœ¼1WwiްЭÎo‹¦2FRes!Tt…ºÐŒ»ÖŽ»Ù¹Ù¸Ú¶Ü‹·Ü‡µÚµÙ”°¼hwat‡‚¢½“´Î–¼ÒµÎŒ±Í{¡Àr›ºk—µdŒ¬bŽ­^‰¨a‡§R~Kx˜Jt”=d„Hj’R}žNp‹7Pe#3A+20=E>RW@PTDMS>LOHUUBHK6>>8988B?@GI@@E?EE399:EFDFI>IE:A>9CC;DC;EF9BD7BE=@D:ACII=HJ=NX4HT6>E;EKLP8@??GHHTWAOS;FB:?A@KOALMAJM:?A9?<9EF@KQ>KOFSYEOV:HJ1<82>9=JKBNM?HM2AA:EE>FIDPUCMV?GK;FJ6A?;BC@HHAIMJTYGRU6CC=@A;FF?QSALO;DB5<>9EDDMSDVXHSYIV[CQQAMSILRGOS†¼Û‚¹Ù~¸×¸Ø±Õƒ°Õ‰¸ÙŒ¼Û½Ý»Û¼ÜŽ½Ý‹ºÛŠ·ÚŠ¶Ûˆ¸Ú‰ºÙ†»Øƒ»ÖˆÀٽغ؋´Ñf­U~žS}šR|š€ªÊŠ²Òƒ¤¾#:K8IV#Xw‡»Ñ¾Ú¹ØŽµÖ‘µØ•¹ß’¼áŽ¼ÝŒ»Ù»Ù¹Ú“¶¿h€‚k}“°Í‘´Ë„©Äq—±g’¬_‰©cŒ¬_ˆ¨_‰ªZ†¤S}œUz™Km‡9Tk.DU*4(0IW\MZ^KVVGMSDMP?GL>GH6<<1??:CD6BE9B:GJ8@@;FF>LM=GH:@C?BGBORFTYDQX5>@8@@:CD>EGGE@HIFQYAMNAMLALL8@D>FKDOPERSFPUEQUƒ¸Ú¶Ù€·Ø‚·×‡¶Ø‰´ÙŽ¼ßŽ¿á’¿á’¼ß»ÝŽ¼ÝŽ½ÝŒ¸Ü·ÜŽ¸ÛŽ»Û¿ÝŠÀÝŠÀÚÂÜ’ÀÛ“¾Û¼Ù„°Íz¨ÃŽ»Ù‘¾Ü’½Ú’¶ÎTm+: ,a€‘—¾Ö™Áᙾߗ¼Û”ºÚ™½à–¿â’Àß‘ÁÝ’¾Ü–½ß‘»Ý•¾ß¡ÂÔƒ ©azŠrޱu™·c‹©aŠ©gŒªf‹¬W|šD^y7FX.7(,"$!+*-=C8HK\dm^foFLN@CK?DF<>?4;86;:5;3=CD;DF1<61=:?>C;CB;HH5B?=CB@EGBMM=LQ:BJ3=;8>>>II=AD9B?:??8=?1886==;CE;EDGLAGL=BD6;<5?=?FKJOSEQV>EGELP@0>>4?@@JN=FI9ED;DD=FG8EE8BB9DB>GG;ED@JG@GH>FI5?C?DH>DHDMPBORDMSDMV>HJ@KOJQV?HI;DCCKOCHIAKQLRXIR[EIOCNTEQYGRUALL?IL>GH…´×‚±Õ€³Ô~µÒ‡¸×Ž»Ý¾àŽ¿à¾ß’¾ß”½Þ¼Ý¼ÞŽ¸Ý¶ÛµÙ”¼Þ–Áà“½ÜŽ¹ÕÀÙ“ÃÞ“Ãà”Áß“ÀÞ“Áß•Äâ–Åà˜ÃÝšÀÚŠ©À5Pd.Ka~¢·˜¿ØžÄã¡ÄäžÂâšÁá›Áâ›Âã—Âá˜Æã˜ÃåœÁ暾♽ߕ»Ý»Ý’½Ò˜ž^sˆgޝe‹®]~¡7Sf'?:@@>FE@KJ7FE4<76;:8BAIMHTVFRSJVZ>KH6@<6;;9@?>?FJ:LOAJSD:FHIM?EF7>=6>?=GK>FJ;CB5?<:HKAMK¯Ð¯Ó‚±Ñƒ·Ô‡¼×‹¾Û‹¿ÜŒÀÞÁà‘¾Þ’¼ÝºÛŠ¹Û‰¸Ûˆ·ÚŠ¸Ù¼Ü™Àß´Ïm’«¶Î–Äà“Âá•Ãâ˜Åä—Æä˜Çæ—Äà–ÂÞ–ÁÝ‘»×‡²Ìƒ­É”¾Û˜ÂÜœÄãžÃæœÂå™Áä›ÁâžÂäšÃã•Ãã—Åè™Ãè—À㔼ޑ»Ü˜ÁÞ¯Ïä°Ìß}œ³Ml‰,>O(8=)29(66,67(*),5BC9CD?EIDKOERX=FF8??AJM=BE;GF?HM?IJ8FF7A<6417;9BIJ6?;JO?GF8AC6EI>LMAJI>HH8?B>BI5A>9EBALO@KMA9EF:DG;DI@HMFJDORGNUD7BC:DF6CG9AC@LMELPBNSJHAML@GKHOVKNV9AD9@C3==8@@?EK:@D3=B2;?;>@:GI;GM4BC8JK>FK5=<5:9EBCJM:GG>IK>LN=IL9AF8CF0:97?@FG;BG9ED?MMDHJ?EN9A=CLRGSX=MN>IK9DD7EE9EG9CD:AA8>E?BF6<<;ADFI>IL=DJGSZ>FG;DC9FF>FM8CE:FDAEH@AC:AA;AB5@@9BG:IM>IL<@@6;;5BE5@=7DC8BC4<98?B5>=9>B:HHDQR?JK;DI9@>3=>8FIDHMCIKDGL=FG7KN6CF4CD?CDCIP9HE8A?5@A;@B9?=HP8@@2?=9LOBLQ?FM?FL:GJ8<=7AB>HJAJM;BF9EALPAP[?FO9?@;@?;?>>ELBKP3;>5@B4??AE7CC?NLJSLN?HM5CF9FGBNO?JO;FF=CH?EI>FKBCEDI>HJ@KO@FJ>KM>II:FF;EHFNUETU@HD=GIDNR@KJ@MOALP@GH9FF:@@?HG;DH6>AAJP@HL:@@;AB9@BAEK;DC6><=DCHVZBPT:CE9FKAKP:GI8BBJR@JN5A?=KL>GG=FG=GD8=A>HH=HIh‡™w¶SuŠ«¼—ÀÔ•ÃÝ—ÄÞÆßÃß–½Ú•ºÖ˜ºÔ™ºÖ›¼Þš»â–»à»ÚŒ¼Ø‹¸ÕµÒ‘µÏ”¹Ò‘¨±,;@%*.")%&>CQ¥·À±ÌݰÌÛ©Éà®Íá¨ÃЀž KcnCSXFPYFU]CMS=DD=DI8><:@B8AA4??9FK9AE7;@9HLELU=HN7>;8CE;FI=BB8=;9?>:CF9FG3=97@B9FJ:II;GH9@A;EF8DF8@B>GH9DC6BE4DB7DB>JL7?@;FFAJK=9BD;AB=DEAJM9?D4=@?KO>JN>EE?GK:CF3:=3=>7?A;AE7=?BGJCJP>JJ;FL@FJ?DI=FL=HIBCD9B@6DC;@B@CF=FJ:HHFK;EC8CD:GJAJP=KO>DK>EA;BE9;A>IMOUAPZ>IL7@D<>CBGI6>?,66-*->FP;FH=HN>GG;IO:JQ;GI@ILALQ>LU6CD9B@7CE7BD5AA1892;:7CE=IG;C@7CD?:==397;>:9;?8@B:AHBNR5BB=@D>IPA8<88DE>JNAKPHS\=GJ=CG>JNBMO;EE@=AA;AA?GJBJGBMMAGMEH=FF=CF@FG9=<@DJ>INBHL=HJ?FK6=D@EHBKT;@D.@:4>=7??6D=@KNGRYAKMJPULRUFQSz¨ÃŒ¼ØÁ߉¶Ôƒ«É†«Êˆ®Î‰®Ëb‚™(G\X|–Š°Í‡©ÅYy–v–¶•»Ý“Àà”Áá—Ââ™ÁÞ”¶ÌC]o ;L„«ÀÁØŽÂÜŽÂÜ‹½×­Ä=]p.HXm†œ^w‘6Lf$9N'BVGe}E_y'Zq_|›tŒ”(@@ '-%49Y…›º‰ ¹Nh|>`tf¢Œ©¬avsm~y(67>GG,7;6AD+69%#'(%(-,,306:?0=;;==8>@;GM8FI;KL=HQ7BC:CF:?A7<<5=>9?>19748>AD:DEHI?EF;EC=B=5@?3;92=94=>4>;9DA6==8CA9AA:A@>DG?EGBMUA;GJ6=<>FIEOT=EI:BC=CD=JQ:CF8??69;8BE:FL;CF@DL;BDK@+57;HP1@A3::9CG:HL7AH:GK8A>@8>@7CE>EH9DE>EJAJH9?<:AA;FEJM5DE;CDBHM8@C9>D@JIBILFJCGN>CH;CF=EJ@EH:BC:AD>GL:EC@KM=FIEHN?IK>EE?IKEKQ>BG5;77<<88;3788=B8EI=A@:CG:GJ=IOAHJ7AA9??;GG?IOBOSCPQJSWLR[DIN:C@>FC;FEŠµÖŽ½Û¾Ý‘À߽ݑ¿ß’ÀߌºÜ‰¶ÛŠ¶ÚŒ»à‡¹Û†¹Ù¿ß”Â䌽݆»Ü‡½Þ¿à’»ÞŒµØƒ®Ïv£Á}®ÈÀÚŽÂàˆ¾Ý†¹×¯Ï}£¿`–+I\Npƒn’¨SvŽ0SlQw‘‚¥¼Nj~7%- *9;2><382;ACJO8FI/<<2<<4A=:CF7>>9DB?79<9B?>DF;BB49>4666:;8BH:BD8==;>E;=?<>?5:A5;82:91=<9>CHK;DK=AH9?FC=AF:AB5;89<9BGI?KJJQU>EK9@D7CD;ED9A?9?D59=39<;=ADJNBMP>LLBQVERUBHI7A=IO>GFCPP‘µÖ“ºÛ’¿Þ¿Þ¾Ý¾Ý¾Þ‹¹ÝˆµÛ‹·ÛºÜ‘¿ß‘Àà”Âã’Áኻق¹Øƒ¼Û‹»Ü¸Ø†´Ô€´Ò}´Ó…¹×ŽÂÝŽÁ݇½Ù‚·Õ€±Ó|ªË©Ç|§À‚­Å~©Æz¦Æ{¨Èoœ¹x¢¼{Ÿ¶*Jaƒ¤À~›µBWl'8 ´…«ÀX~Mp‡‹°Î—¾ß‘¼ÛŒ¸Ô‡¶Î‚°ÉˆµÐ”»Ú˜¾àšÀã—Àá¾Ý…²ÑYz•\rv_tmcqm¨ÃÓ¬Æ×“¬±CX_2>;9=<=GH4@?6<;8?@9<;48=9@E5>D=HM8DH:KNIWX=HK;EK9AH7:95;83775=<68739:89>7;=7BB6?<6=85?=4>B2>?>JO9CI7BC9BA7BD4954;;:BA9EF@HM@LM?EI8>>3<>=>C5=<6AC4??8@@>6?@=AJ8?AAELJJ8>=2=97>=:EECMTBMUCMOELQENP>EIA@D9<;AGJFNTCPODLNGU]’µÙ·ØŽ½ÙŒ»×‡¶Õ‹ºÙŒ»Ú‰·Ù…²×‰´×¶×»Ü’¾Ý•Áà‘½ÝŠºÖ·Ñ…º×ŒºÙ‹·Ö…¶Ôƒ¸ÖºÙ€¸Ö†¼ÚŠ½Ú‰½Ø‚¹Öƒ¸Ø‚²Ô´Ò‚¸ÔйՅ´Ó€¯Ï¯Ñ…³ÕŠ·Ø¶Ô_Yu–…ºRfz)9iˆœyœ°8Zk?bx’¹Õ˜Ãà¼ÙŒ¸ÔŠ¸ÓŠ¸ÕŒ»Ù¼Ú”»Ý—½à¼ß†ºØ´Óƒ°Ï€¦¿hŒ¡v™®œºÏ“£©y’ kŠžC^e/98368:AA:=?5:807758C=8CH?FH@GHFJBIM;BCAFKBKMAHM=CG>KN?DG=FE@DJ;JK>IHGOZ;GH:BD9FFAHI9@DC8C>>DE5?@5::3772>>=EI@HL8>:3<:;CC:EE?FEAGK@IN:AF:@D:BC>DB>BD:EFBJN>DGDFL:EGE:?A5;?5?A:GG=IKFLTDLSCGL?FG?EI=C@GKDH?GM=BA9A=6@=9=9:AC;CH:@>9@?>EJ@MQ?KL;BG@HK;BF;AF9BE:HK?JL9GE?HG@LR@KN?IJ>IK>MP@GK6?A8AB;JM=HLDHM:@D=5AA=FHCGHEJ6BA<@A4>>?EHAJOGNUCMTBNQAHN:?A5;:;=?>IJBHKEQTHSVLY\OXdLV\OXbSY]ºÞ‹¶Ø‘ºÚŠ·×ˆµÕ‹¶ØŒ·ØŽ³Õ‘´Ù•¹ÝŽºÝ‰ºØŽ¾Ù¿Û½Ý‹¹Ú‰¹×‹¹ÕŠºÕƒ·Ó{³Ò~¶Ö€¶Õ‚³Ó„´Ô…µ×ƒµØ‚±Õ…´Öˆ·×‡¹ÙˆºÛ‹¸Ú·Ø‹¶Øˆ¶×‰¸ØŠ·ÚŠ¶Û‡±Ö„­Ï| Àkªmªyžºvž½~¥È‡­ÐŽµ×Š¶Õˆ¸ÖŠ¸×Š¹Ú‰·Øˆ¶×‰·Ø‹¸ØŽ¸×Œ·×„¶Õ€¸Ö‚»Ø‹¿Ý”Áß™¿Ö{”«˜ª±ª¾ˆ«¿k‹›~¢´Pmu0BB(1-245?7AE::>8;:3=;;AH;CH:CF4=<6>=7BB?DC9@G59CD8<>FKCTRAIJ9CEAFL?EH>AB4:76<>4?>5<=:DI@GL=DJ9CEADJ;@I?IJAKIAFJ>HI?LNCMOBKK=CF;>A8>A6BB7BA8>?7;:9=C@GMCLQ5;=4@?;IOEPTGOTFT[LX_MZaMXZLW_PY_NV]MW_‹¸Ü†±Ö†²ÔŠ·×Ž¹ÙŽ¶ÙŒ³×”·Ý–¸ß™À㒾߈»ØŠ¾ÚŽ½ÜŒºÛŠ·ÙºÛ»ÙºÖŠ¹Öˆ¹Ù…·Ù†·×‡¶Õ‡·Õ‡·Õ‚µ×„µØŠ¹ÙŠºÙŒºÚŒ¸Ù¸Ù”»Ú¸×Š¹Ø»Ù¸ÙµÛ‡²×„±Ôˆ²ÒŠ±Ð†¯Íƒ°Ð}¬Î{¨Íƒ®Ò‰²Ôˆ²Ò„°Ïƒ°Ð„²Õƒ²Ò„²ÒˆµÖ‹ºÙŠ¸Öˆ³Ó±Ð‚·Ò‡¿Ø‘ÁÝ—ÂܘÁÖ„¡º7Ofš±º«ÃË‚£¯Œ®ÈޏÌVx€?_f/?C2>A;FF:MV7EE?DI;FM;GI6AE:DJ4FJ6IL9FJ=JM=KI:EIALK7B@8CD>CG9BD;DIAHK8AB;CB9;;9>@>DI>EKAKN@I?FF9:87>@;?@4;=0861876978@D?7?<5=@8BF3<8=AE?IJ8@@5>?9>:9BC>GK>FE>AC8@@=FMBKQCNK;@B>BF;?@8BE?II@FN;CH:@A7AD7ED8@C3777:;GJ=GKAIM9?C7<<KMAHJDQVDJPGPWIW`N\dI[_P]gO\bQZbJT\HZ_JZ_Œ¶Ù€´Õ~¶Õ€´Ó‡¶ÕŒ¹Ø•¼à™¼æ”¼â“ÀáÀß‹¿Ý‘À㒽⎺ߎ½ÝŒºÜ¼Ý‘ÀÞ’Áà¿ÝŠ¿ÝŽÀà’Áà—Ãà“ÃÛ¾Ùˆ¹Ø¸×†½ÛŽ¿Ý”¿Þ˜ÃÝ•ÃÞ‘ÄÞ‘ÃÞ“¾Ý‚ªÓS{°GoªJr­Nt¬W}²\ƒº]„ºc‹½g‘¿b¿aŒÀfŽÁk‘¿fŠºeˆ¸kŽºs•½u–ÂvžÆ{£Ê~¡Ë€¤Ì~¦Ð}¨Ñ…±Ø‹·Þ¶ÞŽ±Ûˆ¦ÑªÌtSdr£¼Ô°ÌÜ¢ÂΉ¢»”¸Ì޳Ìzœ´Ww‚=OY6;>;CFAMR@TX:DH2=<7CD>CE7BI=CI9KQ9GH9@C3:93<<:CG=CH<>C:<=0853=>8FHBMQHL@LQBIO;AF7BF:AF?KN>GC8EEAGK>JN?IP;CDHMCHRALT;FF;EH@HM@NZ<:@C:DE@GH?EFDGLAMRCPUBNQDNNHU[LV`GPWJS[OW^OVWIW]KZdR]jT^gŒ²Ô„±Ó´Õ‚³Ó‰º×»×–¿ß›Àä–¿à½ÛŒ¾Û‰½ÝŽ¾âŽ»àŠ¼Þˆ½Ý‰¼Ü¿ß¾ÞÀà¾ÝÀÛ•ÁÝœÃàœÅá–ÃÝ‘ÂÚ±Íz²Ñ‚ºÚŽ¾Þ”Âà˜Ãß–Äà“ÄÞ“Ãà‘¾Ý­ÔaŽÁGt®Co«Jp­Eg¦=` 7Y›2S‘-Q‹.T‘0X™/X”,SŠ-O„,H{-Es.Fs/Jx5T‚<[‹?]Ad—Nu¬Ry³U}¶XºTw¶UrµSm®Nlªn޹i‡’^rƒœ±Î‰©Ô•©³‹ªÄ‘·Ð‘¹Ñ‘¶Ëp”¥Hdh3>D9?@?JT4AF9GL7FK5:<8@B9@F1<;7??>AF6@@6<<4994989CG8??CFGPT:A=9=>7EFCJK>GI?JM=GE5??6:;;??@CG9AC3??5A>D7A=3>=5>=8=?9<>7=A4?@7A@HN>BD@HJEOQGRZHS[FUWMY]LXaNR[ISXMZ^Q[bLT\P\hVbm_iuj}ƒr–·‡®Ðˆ´Õ†¶ÕнÚÁÛ‘¿Û’ºØ¹ÖŽ½Ø‰¾ÙŒ¿Ý½ß‹ºÝ…»Û†¾Üˆ¾Û‹Àܿݎ¾Ü‹¸ÔŽµÍ™¹Ñž¼ÖœÀÛ“¿ØÂÙ‡»×w¯Ð|³ØŠ¾à‘Âá’Âß’Áß’Àß‘ÀàŠºÚ„·Ú|°×{°Û~®Û~¥ÖzŸÔwÔwœÖm–ÍdÄ^ŒÀ_Å_ŒÁW€²?a5_&K'L*P6^:TIj•Em›Bm£>h¢9a6^ 8\¥>]¨A]¦<\¢9_¡?e¤y˜µ†Ÿ¢‹™²Œ¡«GYhkƒ”ºÒœÄÛ—½Õz¤¹;Uf;NUUoul‡[v{4FH1:70983:?6DK142-323:;?KN6:=6;<4;@6@>8@C=DK8BB8AA=GF8@C>HHALN?FF=HFAMUDOTGOR@HKAIJ?DF@JMAOP>FG@HJCOT?MM?HM?FJGJANLDSWHUXQYgV^hU\eU_fS[dYdmWiuh|ƒž¸·²Ì×6[uzŸºŽ·Ö¾Ü‹¿Ý‹ºÔ…¯Åz¡·ªÁ†µÍ‰ºÒŽºÕºÖ‹ºØˆ»Ú‰¾×¿×Ž¿ÙÀÞ‹ºÙi”¯.Pg2OgPk„w—°·Ð¾Ø‰¾Ý‚¹Þ‚¸à…ºÞˆ½ßˆ¼ÜŒ½ÞŽ¼ÝŒºÞ„¶Û¹Û…½Ý†¼Û‰¹Ù†±Ô­Ó‚¯Ù„±Üƒ¶Ü€·Û·Ü¸Þ„·Ý«Ñj¯6S:Up`{›Xt–5Qr3P:Ysk’²v¢Ê}©Õ~§×x¢ØoœÖtÕq–ÐdŒÅ[…½\„¹\ƒ¸w›ÇºÓÛ¦ÅÎLlqh…˜‹­Ê˜¾Ø•¸Ð˜¾Ö´È·Ê—¾Ù©ÍåªÌ↮ºs•Ÿ;PS2AB/?B/54)020<;2CF2;<9>C=>A49<5;@;CC7?9=HJCJM:AD5>@IRAJM=FIBLRLW_BHM>AF7@@?BIDMQBNQ?JPITVU\cJQUEKMHP6AF;DB9<=6>==JK>FH=AC=DH9@B:A?;JKELTCJM>LPCHG>EIHL@GL@GK@FJ?LIEPZGPVCQNBRQFV^N\dQYcIVZKXYKW\T_hO\fYen[r|l…‰¡»¹²ËÚ ·Ó™­Î¥Ç…ŸÂ}¥¼7[rgŒ©‹¶Ö‹µ×wœ»*Hg$=Y^{–d„Ÿ/Ld&;1DLr‰c‰¦NrGi†c‚Ÿ€ ½}¢Ás¸Kr‹8Xrby•9Rb‰¢Œ»Û‘Áå…¼à~·Ú|°Ñz¥Ãk‘°q•³…¨Ç°Ò‡®Ð­Ì~©Ä~©Â†®ÈŠ³ÍˆµÒй։·×Ž¼Ü¼Û–½Ü–½Ü–¿ß™¿Ü™ºÒx—¨(K\xž´—½Ö°ÆRg{ 0\vŽž¾ÜœÂâ™Âã“Àà¾ÜŒ¼ØŽ½Ý»Ý¿Þ‘ÀÞ‘¿Ý½Û‹·×•»×§ªž·ËÅßñÂßî¼Úê±Ôä£Å× ÇØšÃ×ÅÞ™ÁÖ€¨½k•©j’°V~™VbMcwBR\<>E6:=1?>8?=5A@5?@6??7<;1;57@>6@?6B?=DFDLL?JIFEBILFKS=JS6?C4<73;;8AE?CJHIDLPFOPKSW@HJ;B;6D@BJJ@IKIOQEORALLCPUGS\FTXNU\O]dS]eQZ_S^aQ[bIY`T_hW`mXipXgkj~†¢»¼¾ÕÞ˜´Ñ‘°Ï“®Ï•ªÍ’¤É¤É„³Ð«Ç~©È‰¸ØŒ¸ÚбÕv™½Cb‚ A\=_yYx“B]w/Pe1Xod‹¦€¦Ãv™·Je€!9Q.Ia@0;8;AF=@A6HH=HG9CE=HK=DJ8DG;IM:CH>CE4>==AC@HKALNKNKOUESWMPX@CG9D@>GD?HIBNPDLK?JNDMPKQVMVaGRZIPWNV_Q[aR\dNX]OS[N^bR`iVekat|s‹“¡·¸¹ÑÚ“¶ÏŠ¯ËŒ¯É‹¬ÉŽ«É¦È‘¢É”¦Ê‡·Ø‹·ÙŠ¸ØŽ½ÝŒºÛŠ¶Ø‰²Ö¬Ìrž»n—´†ªË°Ò†¬Èv£½\‰¤{§Ä¤ÃUoJck†£lƒž!3F%7^s‹šµHav1ATr…Š«Æ‰§Ä@Zp/BIevHcs;P_)C:=?3?B:IO9DJ6>;5<<3>A6CF8?C=CD@FLAHLBHLFOVABF:>A7<=6=@5<<5>=:BD;DD6>;99:7=<9>A9>=9B>;FKAFMALMAIN@KMDNRLX^OX[LNUAFK7A<6B>?DA?HH@GICNTFPVENQFPTCJPGPTKT\GOSHUWNX]TS]PW_O\`T`^[hw]s{rŒ‘»½³Ìױ΋ªËŽ®ËŒ¯ÊŠ«Ç‰¨ÅŽ¨Ä¢ÄŽ Å’§Í‰·Ù·ÜºÝ¼Ý‹ºÚŠ¹Ùˆ·Ô†µÔ‡¶ÖŽ·Û’¹ÞµØ…°Ð°Î°ÍвӇ¬ÍOl‰4Lf‰¤ÀkˆªIky¡Áƒ¨Çeˆ¤b…¢Š¶Ó‰ºØ‡»Û…¸Ü®Ô~¥ÉkŠª2Ol/OlTv–o¬Ib{4J-Jbe‡¢&F[ &76Ui®É€œ¶#7M$8HxŒ\q‚$6-@o‰Ÿƒ¡½v—²Rm,9 1@iš§ÃSi}+9,GXfƒ›YvStyž·„¦¿v‘©Yu‰w›±†±Ê€¥Âa~™5Qgd†…¬Å¡¼ÂƒŸ²®ÇáÄÞð¿ßðÂßí¹ÚêµÕçœÂÔLeo7GR:JN:CC:?;6;<:ED=9@F9EJ8EL?CI;CGIN>HK8>=1<:8CD;DD?GJ:FJ=HH?KN?JLAIOCNPDNSISYFLRDBG=FE=HJAIIUZbHRWEKMHQWKOVCOOENPFSXIW[XbkQXaLSYPZdMUaPY^VdgXgp`qym‡‰«­¿ÕØŠ¨Ã¤Ä‡ªËŽ«Í’¬Í«Ë†§Æ†¥ÆŒ¤Å¡ÅŒ¢Æ‘¬Ð‚°Ò‰²Ø‘·Ú¸Ø‰·Ö…´Ô‚°Í…³Ò‡´Ø‹·Ü‰³Ú‰²Ø¯Ò}­Ì†°Ñ’µÚ­Ö{ÀIhŠ=^€^ƒ¨Ho”}¨Ç‚¬É|¤¾1ZsyªÂµÒƒ¹Ú¶Ú~²×ƒ®×€¥Ë|¡Ãz¡Á~¨Ë€ªÍ¦Æu›·i‘¬z¦Ámš¶l–°†¬È²Î”±Ëx§-DX#;M,GZDbyJiƒ@`yt—³†ªÄl‡œ$1(@P`{’j…žFat6E)DV7Uk+H`6L'J_Qo„=Tf-="@SCjn‘©Iav(9,GXv—­ ¹p†–~™¡”¯Ê¿ÙîÄÞðÃßï½Ûì³×ç~«G]l?V\:GH8FH>DD5::7=<8BD:BG=BF7>?;B@;B=8>>9@A=DK8?A>AB>BE=EG8DF>HL=FO;?@CKQNY`LRVNTZGSWLOWDKL@JEGOSJQZJW^HS\IQXOV_NXbR\eXcp^jtfryv‰§Â”­½v“®v–²|Ÿ»‚¨Ãˆ«È«ÊŽ¨Éˆ¦Ç¢Ä‡¥ÆŠ¢Å‰ ÄŠ¤Ç¬Í…­ÑŠ°Ô’·Ö”º×¶Õƒ¯Ð†¯Ð…²Ñ±Ò¯Ô­Ó€­Ó|¬Ð}®Ï‡°Ñ±Ö°Ú†®Õ~©Îmš¾d‘µs À¨Æ~¡º]~•.Uk[Š¢}°Î€¶×}·Øz²Õ~­Ö€©ÒªÏ€®Ò~¯Óz¬Ï}¬Í|«ËzªÊ±Ð}²Ò‚µÕˆ¶Ö’¸Õ‘²ËŒ«Æˆ¨Âw™±~¢ºŒ±ÌŠ®Ë€¤Âq“´…©Çt¨1?$8Elˆ˜B_u\y’v”¬t‘¨‡¥¾”µÐ•µÑ‹¬É|¢¼]€˜8Vk4G5Wmn’«Jk…-G`-D5SiTvPn†'>U$>S„¡¢[pƒ¨Áá¾ÝïÁÞï¾ßïºÛés—¢Nl{?LTA7;>4;?:GK;E@:EB?BH:ADLU@LW@LS=KOBPVCOR@NO?GLHNOMOUCEH5<83<<=CDAHJCJLCCJFKNJTZJT[JV]PW]QZdPY`LZbMY`KW`M[dPYcV`jaiohus‡‹¨¿½°ÊÖ•³ÑwŸÃ{ ¿„¤À‡¦À…¦Á‰©ÃŒ¬Èˆ¨Ç…¤Æƒ¡Äˆ£ÅŠ£ÃŠ£Ã¨Ê’¬ÎµÖ·×’º×’º×¸×‡²Ö‡±Õ‡µÕ‚µÓ|±Ò|°Ó}¯Ò€®Ñ‚°Ñ„¯Ð‡²Õ†²Ù„³Û}®Òy¬Ï~®Ïƒ±ÏzŸ»D]v,BW$AUZ˜«Ìƒ²Ô~µÕw­Ïy¨Ð~ªÓƒ±Ö‚µÙ€µ×}²Ò‚²Òƒ±Ó‚¯Ñƒ²Õ…¶Ø…¶Ø†´ÖŠ´Ï±Ëˆ«È©È«ÈµÐ‘·ÓŒ²Ï‡ªÊ‡§Êˆ«Ìˆ¥Â-BV!6DOew2Jb2Nh1OkZw”ªÉ™ºÙ—¹Û•¸Ý´Ø†®ÎƒªÇ{¥Án›º§È‹±Ð‰¬Ê{¡¿€ªÈ‚¬Èw¹Nn‡5WmS€”{“‘Jbf|Ž®·ÐìÀÞð¾Þï³Õåg˜IalCR[=>?8@F=DC;?=?BB8;;6=;;?A@AA:AAAGMENQ=DFJO?JOBKM=JH?NPCPRHMVDNS@FF;@@>EE;DE@JOANNFTTFPTBILHOUHPWIPXERQHPRNV\O]fYmxZgtP[aQ`h\gugv~zŽ‹¬ÃÀ¬ÇÔ’´ÎŠ¯ËŒ±Ï‰²Í‹°ÊŽ¬ÇŒ¨Ä†¥Ã†¨Å‡¬È„¨Å„¤Â…¡À†¢¿‡¤¾ˆ¤À’«Ì›¯Ò–¾Þ¼Ù»ØŽ¼ÙŽ¼ÜŠ·Úж܋¸Ùˆ¸×±Õ€³Õ¶Ô„µÓˆ·×ˆ·×…¶×†·Üƒ¶Û´Õ~²Ñ„´Ô„´Óp˜µ%@[&;V#AVn”¬€©É€ªÍp Âs¥Èv£È~«Ò´Ù}¶Ö}¶Ö¶Õƒ´Ô†²Õ‰°ÖŠ³Ø†²×ƒ°Ô°Ð…²ÍŠ³Ì‡¯Í€¬Í€­ÏµÕ´ÔŠ±Ñ©É€§Ç†ªÎ‚¢Ã\uŽ /%8F[uh„¢Ed„b€¡Uo‘x–´²Ò’·ÜŽµÜ¶ØŠ·Ö‡¶×ˆ·ÛŠ·ÛŒµ×‡´Óƒ±Ó‚°Ò„³Ò°Î†±Î†³Í²ËŒ¼ÔœÅÖ{œ™Uku¢·Ò¼Üì¾Þî¼Úë—¼Äq™Ÿi‰—3HO0=;7=CBDD9<;CI=DFILCMOFNNLPDMTDLQAMRCNOJPZENUIMRGMWENQFOQHRVKPWFSVFWbJanP`lWah^ryz–ªÁ¿§ÀÇ~Ÿ´yŸ¶ƒ©¼ˆ¬¿ˆ¬Ãˆ®ÆŽ°É­ÆŒªÆ‚§Ä¨Æ„«Åƒ¥¾~›³hœx•¯€Ÿº‰¤À•®Íœ±Ó‘½Ý¾ÜŽ¾Ú‘ÀÛ‘¿Þ¹Þ»â’½á‹¹Û†³Ø…¶×†¹ÔŠ¼ÖˆºØ‡ºØŠ¼ÜŠ¼Þ†»ÜƒºØƒ·Õ…¸Ö‡¸Ø…²Òi¯LoŽa‰¦y§Â|©É~ªÌ_Œ®Fr“už¿~ªÌ±Ó~¶Ö¸Ø…ºÛ‡·Ø‹¶Ù·Û¹Ý¹ÛŒ¶Ø‹·×‰µÑ‹·Ò‰µÒ…³Ô‡¶Ö‹¹Ø·ÖŠ³Óƒ¬Ìƒ­Ë…¯Ð}¥Çw˜µ+DY 0\vŽf…¢JlŒxš¸|™¶GG:B?A?;?<;CEAHLDJO>JHFOSDNTHQWGRVFQXBLLBLNELRHU[IQWKOUKUYNY\Z_kco|s…‹¥½¹¤­i€/HW7Q_PmyPmv_{‡pœ|›¬y”¦k†˜r‘¥†®Ä†¯Çˆ«Äƒ´]q‚,ARRp…t—¯ˆ§Á“¯Ë™²Ó¼Þ¾ß’À߿ڽ،¹Úºß‘¼Þ¸Ú‚¯Òz¬È€¶Î†»Õ†¼Ùˆ¿Üˆ»ÛŽ½ÞŠ½Ü…½Ù…½Øˆ½Û†ºØ…¶Õ€¯Ï}¬Í{®Ïv«Íy®Ï~¯Ñ­ÎUŸ0Vsp—³ƒ±Í†¶Õˆ¹Úˆ¼Ýˆ½ÜŠ»Û¼ßŽ¼ßŽ½Ý¼Ü’¹Ù”½Ø’¾×¼ÙºÚ¼ÜŒ»Ú¹Ù¸ÙµÔŠ³Ð‡³Ô~­Î{§ÇjŒ§8O4RlBe‚V{œ…ªÊ…¥Â_z :L…¦½³ÐŠ¶Ô‹ºÚ‚·Ö~³Ò€²Ð‡´ÒµÔµÖ‰²Ôƒ¬Ì‡®Ð…°Ñ¯Ð¯Ï‚°Ò€®Ïz°Íy±Ï€¯Ñˆ­Ó¡¾ÚÂÚèÆàî¾Üî¸Ûë°Ðâh†’Xw„BMR7A?7;;<>B;BB=@A?BBAGF?A;DEANQGPZEJLCKOEMSBLSCORGRUFTXFUZGQUJRUNYaOV_HV[R`e^itamqr‡‰¨À½“¢§.8E ,)8%"#-*6$6@+5*FRk†­¾…¦»z’¥EG@BG9AB@ABCFG@B8A<6>?9@>=AA5@B5DI:B>>B<=EA?HFAKMBJOBMTJTWFTYEJMEORMTVEMRDMMFORJSVKSTOUYHWXNY]V^eQZ`T^f\gnl~„™°±ÀÓØ©ÅׯÍr²Ob‚6$KQ7GG7@A?DE9EB6>>=FK:AD@DCALKCMMFQUEPRBINBKKCLMIOOMQYJOTKRWHTQITVNX]LWZSY\R[\U[eV_j^hpguz“©§­ÈÑmަ4Yt~£ÀˆªË‚ Àg|˜':4D|ž¶†ªÅˆªÄ‹©Â†¨½ˆ¬Â‰¯Å‡¬Ä„¦Áƒ¡¿‚¤¿‚¨¿£¸k‰ Hcw 7C*5d|Œ©Ã“²Ð“µÒ”·Ó,I[%@TOn†h©| »Ll„>]vs™µº×‹¸ÓµÌ(I]Gh}·Ó’½Þ¿á‰¹Ûе։¬Í|›º\y“Tu~§Áƒ¯Î‹°Ò‹ªÈ…¦¿†«Ã‹³ÏµÒ–¸Ö‘³ÐŠ®Êwœ·'LdfŒ£‡±É¼Õˆ¼ÕŒ¿ÛÁá”Äã–¿Þ›½Ù›½×›¿Ù˜¿Ú‘½Ø¿ÛŽÀÛÁÚÃØ¿ÔŠ¹Òƒ±Ì¬Ç‚²Êx®Äu­Ãv¯Ç~´ËZ£\Ž¥„±Ë‡¯Èc‘*a„•†¶ÌÀÚ•¿Ý“Á߾݉¼Û‹ºÙ‰·Ù‰·Ù’¼Ý–»Ý–»Ý‘¼ÜŒ¼Ú‰»ÙŒ»Û‰¸×‰¸ÙŠ¸ÚŒ¸Ú·Ú¶Ù‹±×‡­ÐƒªÌ~¨Í}©Ï˜¾ØÅÜè½×ç·Óç±ÔèªÌÝo—FalCX^CKQ@GE=CAEFKu–©ƒ¨Â‡«Å­ÈŒ®Ç°È³ÉŒ´Ê‡¬Æ„¥Áƒ¥Â…©Ä…©Ã¥¿s•«Kfu%>Ju’¥Œ®ÈŽ±Ë´Î“¸Ò-G\2FQp†p•¯Vw)<"?T|¢»¾Ù‘ÀÛŽ¸ÓY}“>O§½’½Ú•¿âºÝeŠ«4Pp";T 3 $69[o¦Á‰©Å_x0C/L`VxnŒ¢d{HavRtŽq™µm—­!FVVvˆh‹žsœ²„±Ë‹ºÖ¾Ù¶Î{›°Œª½“±Æ”´É·Ê½ÒÃڿֽѹ΋µÌ¦¾z³wŸµx¥¼y«Â€³Í…¸Ò‹»Òl˜±l–¯~ ¾d|“,[{Œ‹´Ë—¿ÛšÀà•Â߿ۈ¹ÕŒ¹Ù¸Û“»Þ™¿à™½ß“»ÝºÜŠ¼ÜŠºÜ’¿á¾àŒºÜºÚ¹Ú•¹Û’¶Ù´Ú‹°Ô‡®Ñ‚¯Ò~¯Ò„´Õ·ÕªÈÞÁÛæ»Ûê±Õé¯Õæ£Ê×g˜Lam?OS>FF>DH9>>?BEAEFALOBIT?IJG\`H\fXqwp•f„†e}h„‘e€‹fv}[nop„„}ŒŽŸ´ÂÀ¥¹»š°¸Uv|½}œÀt‘·B^?]w¤º£ºw–¬>Rf*bypœµ‹½ØÁÞ‘¾Ü€©ÂNwŒa¤¿Ú‘¿à½ß‡´Õ|¥Ã^ƒ@`v;]s]ƒj‘°n®1Kb #4^ƒ–Œ´Êr“©%0O`6]qy£¾|©Él•²@_q4?=I%CS&6:Zkœ°Xpƒ-A\oOo‚+CW+?H_vjˆ£kŽ©V{–=cy/Ob7K$H`@]y4G]+Ol‡¨Â‘°Í ¹m’§z§º‚±Ä‹µËµÎŽ¶Ð‘ºÓ’·Ñ´ÏŒ·Ó¸Õ‘¸×²Ï‹³ÍŒ·Ò‘»Ù’¼ÛµÕ|ž½:Zyr”³ˆ°ÐˆµÕ‹¸×ޏ֕»Ù”¹ÜŠ¶Ú†¸×ˆ¹ÓŒ¼Ò©ÎÞÂÜèÅÝç¯ËÛ€ ¬g†ŽZ|ƒjˆ•r¡³Ì¿Ó§ÆÔ¿ØäŽ´Î£ÁØ¡¾ÖƒªÇ­Ê†­Í†«É‚¨Çz£Âx¦Ä|«Ë|ªÊ}¤Å£Ä„¨Ë…«Î‚¨Ì€¦É~¢Èz›¾Vw’"EZa†œt”®iš1D&EWs›³{§Äz©É}©É€¦Ç†¨Å®Ê’¯ËŽ¯Ëˆ¬Í‹­ËŒ«Æƒ¦Ày¶i‰#?RIh}¬È”´Ò’´Õ´Ô†²Ö…³Ö„µÓ„·Õ†·Ø‰¸Ø±Ï|²Ñ€¹Õƒ¼Ú…¹Ú…¸×†»ÙоÜÀÝŠ»Ùˆ¼ÙŒ¾Û¾Ü‹½Ý‡»Û}¶Ø{³×ƒ·ÚƒºÚ|·Ö|·Õ€¸×…»Û‹¸Ûµ×‘¶Ö·Ö¶×–¼Þ•ºÛ†©Æ%D[Oq‚b„š+Pkq—·‡®Êr—¯Hl€d¤z¤¿r›³z ¹kŒ§Kg€/ACexw ´gŠž%>Q=VlŸºˆ­ÌвÎfŒ¥#DY=SW}˜]~š 6J #32Qdq«†Ÿ¼Pg}6F>ctl’¥Rt‡-M_>_sRs‰`{’Yu‰cƒ—x™¯z™°XrˆFbyV~–x§Ä‹¹ØµÓŠ©ÄLd}6Slˆ­Ê‰²Ò޶ՓºÖ•¹Ú•ºß“ºà‹¸Ø‚µÏ€¶Í²Ë…°Îˆ¯Ì¬ÊØ¬ÉØ¶ÑØ»ÔÞ·ÏÛ´ÍÔÁØÜ¾Ùá°Ì۴β̴ώ³Í‚®Ç€¬É„«ËˆªÌ‚¥Æ¦Ä}¦ÄªÉªÉ‡®ÎŒ°Ò´Õ†²Ó„¯Ñ‚«Î„«Íƒ¨Æzœ¶Kn…+PflŒ¥pˆ /EXXJh„‡¯Ë‰´Ï·Õ½Ý¼ß‘»Ý†µÓxªÁw§»sš°[x‹7MaWq…ƒ¢¹‚¢¹k‰¡b˜t•­£»z´q‘¦g…™o¥~£¼¡¶~›®z™­Ÿº†£Ä…¦Êƒ§Ç¢¾£¼ƒ§À‹¬È¯Ë´Ð¶ÒŠµÔ‰¶Ô…µÒ‚³Ì±È}¬ÆªÇs˜¶B_z#)BS?[pQnƒ6Mc+C*E];Vn*BX*>-@2PgCe~Cbv+BR5F:SkQlŽiˆ«n‹ªQk=VhIdy`}•~ž·Š®Ç²ÍµÐ·Ô‡µÔƒ´Ï„´Î‚²Êƒ®Çƒ«Æ¥¿u–°n’¬t ¾u£Ây¤Àƒ©Ãˆ­È‹­ÍŽ°ÏŽ³Î´Ð”³Õ‘²Ñ‡­Ç‚§Á¥Â‚¢Ã} ¼b†ž/Uir™¯Ž±Í“±Ð„©Ï†­Ôƒ¬ÒªÏ€¯Ó²Ö‚²×‰µÚ‹·ÝŒºÝŒ¼Ü‹¹ÚŽ¹ÙŒ¶Ù‡´Øƒ´×†µÖ†·Ö³Ôz­Ó{¬Ö~±Ø~°×}¯Ö®Ô­Ò„®Ó‡¯Ñ…­Î®Î¯Ð‚¯Ðn”µ,Ji2Ojj«yªÇ~°Îsœ¸9Tl‹§oЍ/Jf„Ÿ«Æ±Î€®Ò¯Ò…°Õ¶Ú¹ÛŒ¶Ù‡²×…³Ùƒ±Ô‚¬Ìrš³dޤq ºwªÉ|°Òƒ³Ö„±Õ°Òx¯Í{²Ð€´Ð‡³ÒŒ²Ñ‘µÔ¸Ö¹Ø‡·×…¸ÖŠ¸ØŒºÙ‰·Ö‹·×‰¶Õ‚³Ñ²Ï…¶Ò‡·Õ†µÔ„µÓˆ·Öˆ·ÕºØŠ¶Ö}¬Ëz§Æy¡Àm—¶„²Ð‰¹Ö»Û‰·Ùˆ·Ø„²Ô‚¯Î©Æ~¤¾d„›A_q'ES?_rz›´z˜²C^w9QB`xy”°|“°Si‚+G]Vx’|£»j¢.LZ9Ie€—œ»|™ºLd~2B,9Oj|a˜Wx’V{”{£¹‰²ÉŒ¶Ï‰¶Ó‡µÓˆµÏˆ²Ëˆ®È†­Æ„ªÄ¦¿z¦¾u¤¿u£Ày¢½€¥¾†©Â‰¬É‹±ÍŠ´Í´Î•³Ñ’³Ñ‡­ÈƒªÅ…¨ÈŠ¨È„£Àn¥1OaQr„±Éš·ÓRq¢Xy¨a‡³f‘¹j—ÀnžÇsŸÉtÈy¥Ð±Û„¶Þйà¹Þ‰²Ùˆ´Ùƒ±Ô„³Ô†¶×€¶×|²Ø}¯Ø°Ô~²Ô|²Ô~¯Ô‚°Ö…°Õ†°Ñ‚¯Ì‚±Í„³Ñ„±Ò«Î„­Ï‚«Ì}ªÉ{¯Ï´Ô‚®Ë7ZtBbyœ¶.E^;Wn§Äƒ®Ï€®Ñz«Ï}­Ð‚°Ó‰¶Ø„²Ô…°Ôƒ¬Ò„¬Ò}¦ÇOw‘ *?7cyjœºv¬Ì|­Ï}ªÍ|ªË|­Í{­Ë®Íƒ°Ðˆ°Î³Ï‰³Í„´Î³Ò²Ñ†µÒ‰·Ò‹¸×ˆ´Õ…³Ô€´Ô}³Ò„³Ñˆ²Ñ‡µÔ†·Ö…µÔ„³Óˆ´Ô‡²Óx¦Êv¦Çƒ²Ñƒ²Ð„´Ò‡µÔ‰³Õ…²Ô°Ð‚°Ð†¯Ï‰¯Ïˆ¬Ê‰«Æƒ¦¾z µs™³‚§Ç†©ËƒªÆz¤¼bŠ¢kŽ©„£¾‰¥Á‚¤½n•¯{¦»~¬½x£µ^‚–Ll†hŠ¥†¨Ã‚Ÿ·Qi|1?,M^p•­„©Äu³Irƒo–©´Ë¶ÒŠµÔŠµÐŠ±Ë‡©Ã¤½s˜²_†ŸJuŽCkˆFoŽOv‘]—p§†¦Â‰­È‰¯Ç²Ê’±ÊŽ°Ê‡­É†«ÉŒ«Ì¬ÊЍÁ|™±Pl8Vh„¥¹™·Ïj†¿}˜ÎŠ«ÙŠ¯Û‚ªØv¡Ïk’Àd‰¸`ˆ¸V„´T„´\‹¹bŽ»bŒ¹e‘»i”¾v Ê‚­×|¬Öu§Óv§Ô}¬Ô~¯Ö±Ú‚¯Û„­Ù„¬Õ©Í}ªË|©É­Ïƒ°Ô‡µÝ†µÜƒµ×‚±Ò‚³Õ„µÙ…²Ól”± D^q¨@Vl6Iv–¯‡«Êˆ°Ò¬Ð}®Ð„µÕŠ¸Ø…³Õ­Ï…«Î‰¬Ñ„ªÎr™»Qx–Iu’i˜¸xªÈ}­Í|©Êy¨Åz©É~«Ì¬Î~¬Í}®Ëƒ±Ë°È°Ê€°Î±Ï‡³Í¶Ñ‰±Ñ„®Ð…¯Ô°Ò}°Ï­ÊƒªÉ„¯Ï°Î¯Ï„¯Ñ„°Ð…±Ò~¬Ï{­Í±Ð€¯Î®Í­Î…©Î„©Ð‚«Ð„®Ñˆ¯Ð‹±ÑŒ±Ðˆ®Í…«É©Æ…«Ëˆ®ÎŠ±Ò‡´Ò~­É|§À¦¿ˆ¬Æ¬ÇŽ°Ë‹°Éˆ²È‚³Å³Çƒ¯ÇŠ°Ê‰°Ê²ÍŒ­Ê‰¨Âxš®]ƒ—x¡¹‰¯Ê„¨¾r“¤=_p¢¸Œ±Í‰°Ð‰±Î‰®Ê »Y{–Rx’aŠ£p—²}Ÿ¿zž¿r›¶j‘©]™Sq`œ‚£»Œ«¿®Ã°È®É°Ì°Í”³Î’¯ÊŠ¥À|—´^{•~›µ–´Î?ZE^Qm˜Vw¡_„¯b‰¶g‰¶p¿£Ôx£Ôt£Ôz©Ûy§ÚsŸÑnšÊk•ÆgÂa†ºYµMx­Jy­O°P³Q}±Pw­[´_…¶fºi¹k‘»s™Ã{¢Ï©Ø«Ö€­Ò„°Õƒ®Ø„®Ü†²Ûƒ¯ÓNw•3Rj0DW"2Qk~µŽ¯Ë…­Íƒ±ÐŠ¸ÕŽºØ‹¸Öˆ¶ÒŒµÔµ×³Ù‚¬Ñx¦Êv¥È}«Í‚°Òƒ²Ó~­ÌzªÅ|«É|ªÌ­Ñ{¬Îy°Ë~±Ë|­Ë°Ï‚±Ð†³Ï·ÑŽ³Ðˆ¯Ï†«Ï‰¬Ô…­Ô€­Î€¬Ë©ÇªÉ~«ÉªË†¬Ï†¯Ï­Ë{ªÊ{ªÊ}ªÊ}ªË}¨Ìz¡Å‚£Ê…¦Í„¥Í}£É€¨ËªÊ‚­Ì~¬Ë|¨ÇxŸ¿|¡À…§Â‡ªÆ„ªÊ€¨ÄƒªÃ„©Â†ªÄŽ­È¯É‹°Éˆ´É‡·Ì‡·ÍŠ¶ÎŽ¶Ð³Ñ´ÓŒ°Ò‹±ÏŒ³Ì‹´ËŠ´Í‰­Æ„£¹mˆ™>[lOs‡‰¯É‹²Ñ²Ñ±ÏˆªÊ‚¨Ä|ªÃzªÁ„¬ÇŒ«Ì‡©Ê€«ÈªÅ~£ÁŸÀw’³Yvj†œŠ¦¹“®Å“°Ê“±Ì°Ê±Ë“²Ð—°Ñ“¬Î§Ê’«Î™¸Øˆ¢Åqˆ§nЧ|Ÿ¾€§Ëx Çy›Æp½e‰¹Y„µN{¬Iv§Eq£MyªQ}¯T²b‰¼kÅl’Æi‘Äg•Çn ÏmŸÑn˜Îr•ÎjŒÈ^…½T{¯Mo¢@`–9\’AgGm¢Jo¢HržLy£OzªQy®o˜Ê…²Ú~¦Ç>Ys!4 08OcIbzHe|‚¥½Ž·Ñ’¾Ø–¾Ü”¼Ù”½Ø”ÀÙ”¼Û‘¸Û‰´Ù„¶Ú‚µÙ‰¶Û‰µØ†µÖƒ±Ò~°Ñ±Ò~¯Ñ{«Ðz®Ð|±Î³Ï~­Í€­Ñ†³ÔŽ¸Ò”¹Ô¶Ó‰°Ð‰®Ò±×‰®Õƒ­Ñ€¬Ì„­Í†¬Í„ªÊƒ¬Ì†­Ð…®Îƒ°Í€­Ì«É­Í‚©Íƒ©Ï‚§Í„¦Í†ªÍ©Ë}¨Éz¦Åw§Åy¨Èu¦Åq¢Àrºq”­_}’Om„Jh…No‰`‚™z³ƒ¤½‡¤¿†¤À…¬Å€°Å‚³É‰·Ï¹ÑŽµÐ‘µÔ²Ô³ÕŽ³ÑµÏŒµÎŠ³Ìƒ£½_xŽ*AT%BU1Uk‚«Å‰³ÐŽ¶Ñ‘¶ÑŒ²Ñ‰³Ó~±Ë}±È‡±Ì¯ÏŽ°Ð‰°ÐŠ¯Ï‡©ËŠ¥Ì¨Ï‹¦Çe€›Rlˆ ¶©Á¬Ç¯Ë²Î“³Òš´Ó›³Ö›²Ø¶ÛšºÝQh~(99UdIk}Lo…¤¾±Ó“´Ú“¸àŒ·Þ†¯Ôƒ­Ð‡±×‹µÝ‹³Ú©Ïv Êl˜Ä^‹·Nx¥JuŸQ~§Jx¢Jr¢Os¨Ho¦DlŸAe˜?]‘;\’@ic¾z¥Ñ„¬×‚­Ö¯Õ€­Ø‚«Úˆ°ßŠµÞ‹³Õpª/C:Tiƒ º‰¥ÀMf~6Sf‰®Ã–ÁÙšÃߘ¿Ý™ÂÜ•ÀÚ™½Ü“¸Ú‘ºÞŽ»à‰¹Þ…¸Ú„¶Ø‡¶×Š¸Û‰¶ÜƒµØƒ´Ø…³×„±Õ‚²Ò€¯Ï€¯Ï‚¯Ó†µÖºÖ“¼×·ÕŠ´Õ¶×’¸ÜµÛ‡³ÔŠ¶Õ¶Ö³ÔŒ³Ñˆ±Ï‹±ÐŠ³Òˆ³Ó‡°Ð†®Î€«Ë‚®Ìˆ¯Ð‹±Ô‰²ÒŠ´Ñ„²Í®É}ªÅ{¨Ã}«É{§Èv¡Áo˜·TsŒ">P&E[Wv’a‚Uw‘?_v\w|“¯qªu¶{®Â}°Å„²ËŠ´Ï‹±Ï°Ò±Ó‹®ÍŠ®ËŠ°Ì†°Éˆ®Ét‘«6Kb.BW8Ri*Ldy¡¼‹µÏ¹Ò¸ÐŠµÑ†´Ó„´Ò‡´Ñ‹³Ò‹°Í±Ï°ÑŽ­ÐŠ©Í¨Ñ“«Òީɇ¥¾a{D]n† ³Œ¦Á‘«Ê“³Ð™¸ÖœºÙž¸ÜœµÜ™·Ú”¶Ö#8H ,^wƒx”£9Ud3EPkƒ{›¹‹´ÑޏÔ{ »Bazx™³‹°Ì‡ªÄd„œ}£¼ˆ¶Õ†´Ô~¦ÃVu8XsQqvšº†¬Òƒ¬×€¨Ñ}ŸÇy™Á£Ëƒ­ÓŠ´Ö³Ñ±Íˆ°ÌˆµÑˆ¶Ö¶Ú¶ÝŒ´Ù‹²Ó€¡¾EbzEbz†¥Ã“¯ÎrŠ¢3DiŠš•¾ÔšÅá–ÁÝ•ÀÛ•¿Ú˜¾Ü—¼Þ˜¾á’»ÞŒ¹Û„·×ƒ¶Ö‰·Ø‹¸ÙŠ¸Üˆ¶Û†´×‡²Óˆ±Òƒ±Ñ®Íƒ±Ð„³Ô‰¸Ú½Ü‘¾ÛŽºÚŒ¸×»Ø’¼Û”½Þ’½Û”½Ú™½Ü—¼Ù’¹Ö“¹Õ“¸ÓŽ¶Ô¶Ö‹±ÓŠ±Ð„±Ë…²Ê¶Ò“·Ø’¹×‘½ÖŠºÒˆ¹Ò†±Ð‡¯Ï†¯Ï†¬Í‚©Éw ¾[–7UmTv‘o”³s™·w›¸n‹¥D[rNezpŽ¥wŸ¶|­Â¯Å‚®É†¯ËŽ¯Î’±ÒŽ®ÏˆªË…¨È†©Ê‡«Éƒ§Äfƒž(AX'@S%AW>ay§ÁŠ³Ì¹ÑŽ·Ï‰´Ï„±Î…¯Î²Ò±Ó‡¬Êˆ°Ê‰®ÊŠªÌŠªÏ©Ò”­Ò’­ÊªÀ™°F^pG`q‡¢¸”¯Ê—µÐ˜ºÔš»ØºÜš¶Ù•¶Õ´Ñ+AS)'ct™°\}Ž$BTŠ¬Ã•»×¹ØŠ´Ô‡°ÐˆµÔ†¶Ô‡´Ò‡±Î€±É|²Éx§¾Qt‡6Co˜§u¤·TzŠ%Yr„JRs„f†›z˜¯uŽ¡c}“oާƒ§Â´Ð‘¶Ò•¸Ô“ºÚ’¼Ü“½ÛŒ»Óˆ»ÑŠ¼Ó¹ÒŽ·Ó³Ï‡«Ê‡®Í‹µÔ‹ºØŒ¼Ú»Ù¹Õ“¸Ò—·Ô–¸Ò™¾Ö”¼Ò¹Î¸Ì‰¸Í„µÊ…µÌˆ³ÌŒ²Ì‘·Ï•»Ò“¸Ô”·Ö•·Ø¶Ö‰²Ò†®Î…¬ËªÈ­È|©Ä|£Â{žÀyž½¦Ã¬Åˆ±ÉŒ±Í‘´Ï¯ÉŠ¥½k€‘)%2Qgxn‡œ=Xn_wŒShv "+2>/KXp˜Nhv7Tftާ‘¥ÁŠœ¸tŠ¥Zr‰;PVt‰…§½•·ÍœºÑž¹Ô¶ÕœµÖ™³Ó˜±Òl’Ãj½kÂh’Á`‹¹Zˆ·Z‰»[нX†¹YƒµW{¯Ss«Mp§FkŸCk›>j™=j›@mŸIr¦PyªT~¬V¯Z´a†¸d‰ºjŒÁlŒÂhÂbÂc–ÆdšÅgšÄišÄl›ÇužÍ{¦Ñ®Ö„²×„¯Ù‚©Ú€¦Ø{¥Óx§Ñr¤Ïu§Ðy¨Ñu¦Íz§Îz§Ðw§Ñz©Ï|¬Ï€°Òƒ²Ó„²Ö„±Õ‡°×‡¯Ö­Ó®Ò~«Îv™¸B_xVv‰®È‡°Í‰²Ó†±Ö°Õƒ°Õ…±ÖŠ³ÙŠ³Ö€­Ñ{«Ï€°Ó…µ×†´Öƒ±Ö{«ÏzªÎt¨ÌxªÍ­Ë}¥Àl’®Jr“Y†§{¥Ç…­Î¤ÃNrŒCe|‚¨¿ˆ¯É†­È‚©ÅzŸ»[yŽ:FJlza…—5Xmm“¬„­È„¯Ê…­Ç„«Ç}¦À|¦¿„©Ãˆ­Æ‰¯ÉŽ³Î²Ì±Î³ÑŒ°ÌŒ­ÈŽ¬É®ÏŒ¬Í‹­ËŽ±Ï‘³Ï˜µÑ–²Ï•°Ñ–²Ô”±Ï‘®ÊŒªÉ…«Ë}¢ÄrŽ«:I]*+`yƒ¨Ä†¬Êˆ®Ìˆ­Ëƒ¬È¬È~©É†¬Ï‹°Ï‹²Ï³Ó”µÖ™¶×’²Õ²Ð²Ì‹¬ÈŽ¬Ì‹®Ê†­È‰±ËŽ±Í–²Ò–³Ó—´Õ•µÕš·×™¶Ô–µÖ²Õ‰­Ð›»Sc|(;EVj->SBRe@O]'0(01IXsŒ¢BYnoˆ›”°Ãž¹Ïš³Í‘§Å¤¿‰£»Mh~6ShLhb}—˜´Ëœ¸Ñ£»ØŸ¶Öš³Ö–³Ö›Äç˜Åå•Âá”Äß“ÃÜ’ÂÞ”Áâ“¿â”Áæ”Âå½ÞŒ¶ØŒ´Øˆ´Ø…µÖ~±Óz¯Ðz¯Ð´Ö‡»ÛŠ¼Ûˆ¸Ø†¹ÙˆºÚ‰ºß‹ºãºåŽ¸äŒ´á‡±Þ‚¯Ú|®Õt¦ÌrŸÉqÎo¡Ðq¥Òu§Õu¥ÕpŸÏt¢ÒmÈe’¼`й]‚¶Y}±OvªPy¬Py«Kq¢LnœTu¤Z|«X}ªR|«R°W€´^ƒ¶\„·S²S|±Zµa„µhŠºm‘¾k‘Ào˜Ép™Ír›ÎušÌ{œÍ| Ïy Êy¢Ê|§Ìƒ«Ï„«Ð€ªÌ}¬Ì°Ò‚¯Ò€­Ò}©Ð~¬Ñ®Ï‚°Ï€¯Ïƒ°Ó…³Ö…´Õ„­Í}œ»D`y4Tgp•ª³Ð‘²×ޱՇ«Él«Gi‡Knwž¾„­Í†­Î‰¯Ñ‰°Ï„±Ì€°Ì¯ÑŠ³ÖŽ´×Œ²ÑŽ²Ñ•µÕ™·Ø’³Õˆ²Ðƒ²Ê†®Ê‰­Ì…ªÅ¥¾{ ¸~ž¸…£Á‰©Ë²Ô’µÖ–¶×˜·Ú•¶Ü“´×‘²Ó‡¡Ãex“.CVl^u‰"5E4BN( %)BPv“¨`zQi~©½œµË•¯É‰¦Â°Ê®Åjˆ 3Rjb~™Ni‡‚Ÿº—´Ðž¹Ú·Ú›¶Ú”²ÕšÄä–Åã˜Åà™Æß–ÄݘÅâšÃã›Ää–Äå‘Ä䎿ݎ»Ø’¹Ù”¿Þ’¿ÞŒºÚ‡¹Ø‡½Ú‰¿Û‘ÄÞ”ÄßÁÛÁØÂÛŠÁÞ‹Â⌿ߎ½Þ‘¼ß¼ß‡¹Û‚º×€·Ô€°Ñ„²Ø~³Ù³Ù‡´ÝЏ߅ºÛŠ»Üƒ¶Ö€±Ðx§Ìz¥Ð{¥Ð{§Ðy©Òs£Ëcˆ¯3Rv[xž…¤Ëˆ®Ó­Ö{§Ôy¥Ów Îq›Êm•ÈiÄq—Ëw›Ìu—ÈlÀ`†·[…·VµSw¯Pr§Lq¢Js¢Nw¦T}ªXƒ®\ƒ±]±X~­Xƒ­Z†®^б]‡²d¼n–ÅošÅm—Àq™Ä}¢Ð©Ö„¯ÚŠ±ÙŠªÒŸÄ{ŸÀŠ±ÑŽ²Ø³ÜŠ³Ù‰´Ø…¯Óƒ¬Ð«Ñ€®Ò€±Ò‚¯Ñ¯Ï®Ì~®Ì~®Íƒ±ÓŠ´Ô³Õ²ÒŽ³Ð´Ð“·Ô¶Õ‡µÑƒµÏ°Ïƒ®Ï€ªÆu›´UuŽ?\s`}—xš·‹°ÎŽ³Ó³Ô“·Ú—ºÞ™ºÚ’µÒˆ§Äi€š0DQn€oŸ2HX(5&1 *4DVs†b|’Ibw…°}•©v’¨ƒ¥¿µÏŒ²Ëy·<^yRqŽVu“`…¢‹­Ë˜¶×šµØ˜¶Ø•´Ô˜»×™ÀÝ›ÀÚ—½Ô‘ºÑ’¾×šÁÛš¾Ø‘¸Ó‹¹×޽ܓ¿ÞšÁážÁᙽٔ¹×»ØŒ¿ÙÂÜ’ÃÞ’ÁÜ“¿Ü»ØŒ¼×Œ¿ÝŠÁà‰¿ÝÀ߽ڼݽ݇½Ø‡½×†¹Ù‰¹Ý‰»ß»Þ»ßŽ¼ÝŒ¾ÛÀÜŽÁÚ…¼Õ‚·Ôˆ¸ÙŠ¹Ø‡¸Ö·Öƒ´Ô{ ¼+G`Dbz²Î”º×’½ßŽ»à‹¸ÛŠ´×ˆ²×·Þ’¸á•¹ß—ºà•¹ß”»àŽºÞ‰´Ùˆ­×‡ª×„ªÖªÒ|©Ï¨Ï«Ó€«Óz¢ÎvšÉm’Ãg‘¼aµZ‡¯U­W±X²T~®Qy©QvªTy¯U}´P}±NyªQw¦Uw§V|«Z€±_†¸f‹¾f¾e‘Ál˜ÈržÉu¡Íp¡Ío£Êr¤Êr¤Ço£Åo£Äu§Ê€®Ñˆ°ÓŽ°ÕŒ¬Ñ‰­ÍŠ°ÐŒ³ÓŽµ×Ž¸Ù‹¹Øˆ¸×‡¶Öƒ°Î}¥Â^~œB^{Wv’¢ÀŠ¯Í‹¯Ñ³Õ“·Ù™»Ý»Û•¹ÕˆªÆiƒž5FIjyz›«?Wj'9M[lSh}5Pc0NbC_wa|•xŽ¥@ThmŸ=l›=m™[l‚¡²C^r8Oe„˜³’¨Äˆ¥¾z™²z–³‰¡Áoƒ¡/C[!:ORp‰®È—»ÕŽ¶Ï¨ÄgŠª]z¡¼±Ñšµ×Ÿ´ÙµÙ™µØ]u™¶y¬%9SFc{‡¬Åuš²A`s5INk€x›µtš¸yœ·iƒš(BWFf~dŠ¥i“¯f•®‡¸Ð‰¸Ð·ÓŒ°Ðfˆ§Pu‘‰²ÎŒ·Ö’»Û•ºÜ޵ՆªÆ}Ÿ·~ ¸‡ªÇ‘´Ôµ×·ÙŒ¸Ù»Û»Ø·ÓŒ²ÌŽ¶ÏºÒŽ½Ò¼ÒŽ¹ÐŒºÔ‹ºÖˆ¯Ê.Jc4Jp¦›ÀÜÂ䗾ᖻ۔·Ø“¶Ø–ºÛ—¹Ø—»×—ÀÙ–ÂÚšÄÝšÁÚ‚¤».McjŒ¥ˆ­Í‹¬Ð}˜¸Sn‰v–°‹³Ð—¿Þ›ÀÞ™¼Ý—¼Ü•¿Ù–¾Ú—½Þ”¼Ü”»Û–ºÛ”¹Ü¹ÙŒº×Š¹×Š¹Ùƒ³Óƒ¯Ï†«ÏŠ­ÕŠ¬Ø‰¯Û€«Ö¨Ó€§Ò¥Î…¦Ñ€ Ît™Éi‘¿c޹_Œ³Yˆ¯[‰³W…±S‚«P{£KsšBj”=i’;h”>išCi›Bc”Gf—Ej˜LtžT{£Z~«`²c³k‰·p’¼q•½zšÄ…ŸË‹¤Ð©ÓŽ­ÔˆªÍ{›¿b|™ 5F4KYuŸD_oQl˜²Êœ·Ò’°Ë—µÒ›·Ö”­Ï‚˜¸Uh†7Oje€š“±Ìœ»Õ—ºÓ’µÐŠ¬ÌŒ¬Í±Ð‘²Ó™´×ŸµØœ´Ö›´ÕŽ®Ê›¹Ú’­ÐqŒªXx•|£¾šÂÚ‘´ÊOm‚.L`]~•…«ÄµËQp‚=Ml’§¹Ó’¾Ùu¢¼P}—©Ä‘¶×“µØ‚§Ã:^wq“¬’¶Ó•½Û—½Ý޳Ðw•«8Rb'BRFc{oªŠªÉŒ±ÑгӋ²Ð‡¬Ç\~–B_xWu“o“®t™¯o¢f‰œrµ€±Ì„°ÎCc}3FSy‹”¼Ô·Ò‡­È„§Ãˆ«È‘±Ð“¶Õ‘·ÔŒ¶ÓŠ»Ô¾Ø”¿Û”¾×…¬ÁIm_†˜´Î”²Ñ‚˜µ7Oe=^s„¬Å•º×˜½Ù—»Ù—¼Û›ÀÜÂÞ›ÂášÂ♿ޚ½Þ›¾ß™¿Ü—ÁÙ–ÀØ–ÀÙ–ÀÙ‘¼Õ–»×™¹Ú—¸Ü“·ÛŒ¶Ù‰µÔ´Ó”·Ö—·Ú–µÚŒ°Õ¨Ë}©Ê«Ë‚«Ë‰¯Ò‰°Õ‡¯Ô…¬Ï€©Êz§Ç~«Î«Ô©Ô}¥ÐzžÈu”Âk޼d¸aŒ´^…±\~®Xv§OnžEi–>c‘:YŠ@Z@\‘>_>dDk•Ag8Vu+=,9Lbo8U`s“£šºÐ¼Öœ»Öœ»× ºÚš³Ò§Æ™·v’­ˆ¥Àš¸ÑšºÑš»Ó—ºÖ—¸Ù™¶×—´Ô•´Ô™¶×›³Ö˜±Ò˜²Ð–ÀÝÂãœ¿à™¼Ý—¼Üœ¿Ý¦Êå¡ÆÞžÁÚ•·Ð}£»…­Å”½Òxœ±0Vj^‰¡’ÀÛ–Ãß¿×}¨Ã@e„€¥Ç•¹Ù’·Óm’¨?cwŒ°É›ÂÞšÁܰÉLgz,;&ARv•®€ Àh«fŒ«€§Ç†ªÈj‰¤a}¨ÃбÍ~§Å\‡¢@l‚m˜¯†³Ì‡±ÊoŽ¢,:6F\Š¡qš¸c‚¡>XsF^wl‡ q¥lŒ _}•Kg'F_h¦¸Ð“¼Ô³Ñ‚¦Çx–´Fcx8[ml“ªzŸ¹Z{’LqƒcŒ¡y£¼£½c…›Y~•uš´o”¯_€–D`ta–…£½ŒªÃ‚¤µvœ¬ƒ¨º±Å”°Å”±È—µÑœºÙ—¸×´Î‹´Í•·Õ¹Ø›¸Ö”¶Ó´Ñ·ÕŒµÕ¶ÕŽ³ÎŒ´Ì·Ñ•¸Øš¼à—ºÜ˜»×š»Ô™ºÖ“¹Ó·Ñ“¹Ó˜»×”¹Ö’¹×¹Õ¸Õ‹¸ÕŒµÕ±Ò‡¨Ç†©Â’µË—¸Óš»×”¸Ö•¹Ú“¸Ù’·×˜ºØš¸×œ¸Ùœ¹Ú¹Ú—·ÙŒ±ÓÁâÀã™À㔾ݒ¾Û–ÀÝžÄåšÂæ•Àä‘¿áŽÀà‹Àà‰½Þ»Þºá¹ßŒºÚŽÀØÁٻ؋¹Óz«À5]sx ¶¸Ô‹ºÜ޾â“À䑼ᒼߑ½Þ‹»Û‰ºÚˆ¶Ôˆ«Åfƒ—>\n6Xj*Qcc§ˆ¹Ø‘À⑾ߎ¼Ù¸ÙŠ´ÙŠµÜŒ¹ÝŒºÛ¸Ù…¬Ë/Vll˜®‰ºÕƒµØ~²Ö€´Ø„µØ‡°Ðˆ°Í~¢Á5Yzg­ˆµÓ‡¶Ö†µÔƒ³Ï„²Î‡·Ô„´Îr™­9H;MSƒœe–µ¨É€£ÄŠ­Í¶Ô¹Ó¸ÑŽ¶Òˆ¬Êk‘¯e‘¬…µÎ»Ö‡²ÏxŸÀ`‚¢0Sk(QgWƒœeލ9]r;LS}o˜²r•°;Zq=S*PiGn†Fg{5E2Obv–­†£»a~(IU1S^C`pJduJhy_~“t•¬s•«h¤sµ†©Ã©Â‡¢»‚¥º¨¿…¯ÈŠ¯Í‘¯Î‰§Át˜«~£¸‘´Ï“¶×“ºÛ”¼×™»Õš¸Ó•·Ò“¶Ñ–»×–¸×•¸×‘¹ÖŽ¹ÔŽ»Ø·Ø’µ×±Ð‰«ÆŠ°È‘·Ï•¹Ó–ºÕ”ºÕ’¼×’ºØ“¹×–ºÚšºÛ˜¸Û™¸Ûœ¸Ø—µÕ±Ò™¿à˜¿à–Áá“Ãà’Äß“Âá˜Äæ”Á掾㋽ቾߊÀà¿â»à’ºÞ¹ÝºÛлבÀÝ‘¿ÝŒ¼Öƒ±È>f{a‹ ‡·Ð†½ÚˆÁàŒÁ⋽߻܎½Ý‹½Ù‰»Ø‰µÒu–®)BV9RfmŒž0Xgl±‰½Ú“Ãä’¿àÀݼ܊¹Ü†·Þ„¸ß‡¸ÚŒ¹ØŒµÐCjƒN{“„·Ñ·×¶Ø³Ö­Ì`‚›SxŽf¨?g†N{˜´Ñˆ»Ùˆ·Ö‹·Ôˆ·Ô‚µÒ„¹Ô~­Æ4ZnEZa‘«[Œ«_‰¨ƒ«É‰²Ò»ÚŒ»Ù‰¹Ö‰¹×‰·Ó†µÑ‡·ÑŠºÕºØ‰¶Õˆ³Ò‚«Ê}¤Âz¥Â‚±Î†°Îuœ¶MuŠc‹¢…­É¦Ãd‡¢Ov_‡¤Sz”4Wk&HYLq‡z ¸w—³Dax;JLmz`‚’1Sd)J\Sw‰Gg}+J]$GZGn…[}”Nhz1JZ5TdY“n“­£¿¬É}˜°CaqLm}…¨¿Ž°ÎŒ¯Í‰­ÅŒ¬Â‘®È’²Ì’¶Ð–ºÕ—¼Ø“¹Ö¹Õ»Ù’»Ú’¸Ù‘³Ñ‘¯Ë‡©ÁŒ³Ë‘»ÑºÒ‘¸Ô·Ñ¹ÐºÔ•º×”¸×”¸Ø•¹Ú˜¹Úœ¹Ù™·Ö”³Õ¿Ü‹¼Ø‘ÁÜ—Èá—Ê啯ä•Âæ–Äè‘À䋽߉¼Ý‹¾àŒ½á‘½á—½Þ”¼ÝºÛŒ»Ü¾à’Áá¿Þ„±Ê?f}c¥ƒ³Î…¼Ø†¿ÙÂÝÀݾތ¼Ú‹¾×¿×¹Õv—°(BWD]qFev7ap„´Ê¿Ü•Âá—Áá‘ÁÞŠ¾Üˆ»Üй߉ºà‰ºÛŒ¼Ø‰¶Ðh‘ª.Zr²É‡»×ˆºÙŒ»Ø€¥½,GZ%EVcŠ¡g”®m º¹Ó‚¹Ö…´Ðy ºc¦r£¾·Õ²Ò\ƒ R*FYkŒ£} ¾~¢Àˆ¬Ê‘´Ò‹©Ê‚œÂ…ŸÇŽ¬Ñ±Òˆ¬Ç~¤½†ªÃ•¶Ï”¸Ò‹²Ëz¡º†«Å³Ì‹¯Åh…–3@@dw¶Ð’»Ú‹²ÑgªOx’Š³ÌµÓ¶Ö´×´Ó”¶Ò”¶ÒŽ³Ï²ÌŒ±Ë³ÏŠ´ÏŒ¶ÒºÔ‘ºÖ“¹Ö”¹Ô™»×›¾Ü™¾Ûš½Ú›½Ùž¼Ùš¼Û”¸ØŽµÓŒ¶ÏŒ¹Î¼Ð’ºÒ’·Ð—»Ñ•¹Ô𻨙½×–¿Ó”½Ó“¹Õ”¹Õ–ºÖ”ºÖ»ÔŒºÒ»Ó”¹Ö—¸×˜¸×–¹×—¹Ö”´Ï’³Ë³É´Í“¸Ñ”µÑ’¶ÒŒµÑ³Ó°Ó°Ð’®Ì‘¯Î‰ªÍ€£Æ„©ÈŠ¯ËŒ¬Í‹°Í²Ï“²Ó–²Õ–´ÒŽ¶Î‰·ÎŒ¶Ñ‘³Ð‘³Ï¶Ð·Ó“·Ó–¶Ô–¸Õ–»ÖŽ¶ÓŠµÔµ×‘´ÖvœµZ}“Ps„t™­V|‘1ThBh}Biƒ-Sn'KcDf~x¶„¨ÂUt‹%?U>Xpb}˜@\u!BVdŒ£€«É{¥Æb†£7YpBU6Zm@aw8\rXƒ˜j™«>jw=M\‹¢y£Áfª.Rk)NgV™aŠ£Jpˆ&NaS{p™²qšµp‘®Ke1GPo…¢¼v›¹\„Ÿ_…Ÿ‰¬Å€š·XkŠSiˆš·…¡ºa~”Fh}Tz’s–¯†¦Áˆ¨À€¡¸‚¤¹…«¾¤µ]}Œ0AFh}Ž²Ì‘¶Ò‡§Èjˆ¨9[xx ¹‰±Ëˆ«ËŠªÊŒ¯Í³Í‹±É‡ªÄ†¨Â‡«Å‰°Ê‰³Ê‡³Ìˆ¶Ñ†·Ôˆ·Ò·Ð“¹Ò”¼Ö‘¼Õ»Ö“¹Õ—·Õ”¶ØŽ´Õˆ²Ï…³Í‹¹Ï“½Ó”¼Õ•»Õ•ºÔ“¸Ó–ºØ“ºÖ»ÑºÐ’ºÓ‘¹Ò“»Ô¼ÕŒºÕŒ¸ÒŽ¸Ò¹×“¹Ú“¸Ù•¹Ø˜»Ù—¹Ö—·Ô”¸Ô“·Ó•¹Ó•¹Ó“¸ÔŽ¶ÕŒµÕ³Ö‹±ÒŠ­ÏŠ«Í…¥É€£Ç‚©Éˆ®Êˆ­É†­ÊŒ±Ò’³Õ–´Õ”µÔŒ´Ñˆ¶ÒŠµÑ¶Ò‘µÑ‘¹Ó‘ºÓ“¸Ò™ºÖ™»Ø–¹Ø¶×µÖŽ³ÕŽ³ÓSrŠ9Un=^sV{„«Ã§Â`Š¥c‘°t¢Âz¢Àzž½wœ¸‰®É†«ÃeˆŸJl†o“¯†«ÈV{•;ax{¤½†²Í~ªÆj•°b‘¨sŸ·{¤À}¦Ä~¬Çu¨¿b—ª@t‰f—±¬Ì{¦Éh’³Lu—_‹©|§Â¥Ã`‡¡S~”oœ³~§Às”°1Kg#@Zgˆ¢ƒ¨Ä‚ªÈo›·R{•i¤z”ª=Mb.?Uhƒ—s’¥;XlBe{h’ªu¶r’¬Us‰8Vg5UcSsƒVv‡=[m4GTvމªÄx›µt“°_|™*Ib_„›„©Âx˜²o‹¤y˜±…¨¾†§¿y–°e~˜t‘«¡º‚¦¼|£º}¨Ã°Ïƒ´Ðˆ´ÎŒ¶Ï¸ÐŠ¸Ð‹´ÎŒ¯ËŠ«Ç…ªÇ…¬Ë†­Êˆ°ËŽµÏ‘¸ÑŽ·Ð·Ñ‘µÒŒ²ÑŒ´Ô‰µÒ‡µÍ·Í¸ÏŒ·Ï¹Ò¹ÑŒ´Ñ†®É€©Ã®ÈˆµÓ޶Ք¹Ùš»Ü™¹Û–·×•µÖ—µÕ–·Õ’·Ó‘¶Ó³Ò²Ó‹±Ò…¯Ï­Í}¥Æ~ Â¥È…¬Ë‰¯Ëˆ®É„¯È‡°ÎŒ²Ï’·Ô‘¶Ö¸×Š¸ÖŒ·ÓŽ¶Ò¶Ò’»Ô’¹Ó’¸Ñ–¼Õ—»×—ºÙ“·×‘µ×³Õ³Ó/LcYv‘v™µOwŽm—¯„°Í‰¸Ø‚¶×‰¹Ú‘¼Ü’ºØ“½Ù•¿Ú½Ö†µÎ‚­ÇªÇ·ÕµÒ[›Ho…‚¬Â‚²Í~±Ð€´Ñƒ´Ï…´Ñ‡¶Õ†·Õ³Ñz³Îw±Ìy°Î°Ñ~¬Ðz§Ív£Èu£Å¯ÎŠ´Ô³ÔƒªÆsŸ¹z¤½t˜´1Nk8Wto”±vž½€«Í|©Ëp›º[šrŒ¢J\n'Hl•§ÄÜœÂݪÄGv‘X‡¡€­ÊŠ¹Ø¼Û»ÜŒºÚŒ½×‡¾Ô†¼×ˆ»ÙŒ»ÚŽ¸Ø‹·Öˆ´Öˆ±Ö}¨Êi—´Pz–hŒ¨Wu6HFexgŒ¤wŸ¸…°É¶Ó“µÖ‘µ×´Õ¶ÖŠ³ÎŠ°Ê‰¯ÍŠ´Ô‡¶Ö‹·×Œ´ÖŠ­Ò‚¨Ê~¨È€§È€£Åƒ¦É‰­ÑŠ±Ô…²Ò°Ï®Ê~­È©Ç…ªÊˆ¬Ì‰®ÌŠ¯Ì‰®Í€¥Æp™¶o¹|¦Æx Â| Àƒ¨Ä‰®É‹°Ê‰¯Ê‚«ÈªÈ€¬Å‚®È‡¯Î‰­Ï‡ªÌ‡©É†ªÉ‡«Ç…©Â¥¿ƒ¬Æ„±Î‹µÓޏӒ¸Ô‘·Õ’¹Ú“¹Û˜·Ù›µÕ–µÑ¶ÏŽ¶Ð“¸Ö’¸Ø’¸Ö˜¹Ôš¸×”µÖ’µÓ–¸Ö–¸Ú“¶Ù‘µØ“¶Ø“µÕg‚™4DMm}“¹Ñ޻֋¹Ù޼ߒ»á»Ý„ºÖ}¸Ðx®ÆYƒže‹©v¡¼o›³[‡ž?hBi†tŸ¾ƒ·Óƒ¹Ö†»ÚŒ¾ßŒ¿á…¼Þ~ºÝ€¹Þ‡»ß‰¹Þ„·ÜµØ€³×~¶Ù|¹Ü¸Ú‹»Û“¼ÜŽ¸Ùƒ°Õ®Ô­Ó…²Ö…´Ô‚´Ó}¶Ó€¶Ô‡¸×Œº×Œ¹Ø·×±Ïs¨)FU&MZqž±™ÂÜ•À؈¶Ð|¬Ç~¯É†´Ñ‹ºØ‰¸×Š¸Øˆ¸Õˆ»Ô†¼Ô‹½Û¾ÛŒ¼Ú»Ú¹Ø‰¶Ø‡±Ô„¯Ïz¥Æi²LoŽGf3H0TiMv[ˆ¢`‹¤p“¯Ž­Ë‘³Ò‘·Ó‘¸Ô¶Ñ´ÏŽ´ÓŠ¶Õ‹¶Õ޶בµ×´Ö‹³Ò´Ô±Ñ²Ó޳ӒµÖ’·Ù¸Ù·ÙŠ·Ö‡¶Ñ‰µÓ¶×“¶Ø”³Õ³ÑŒ´Ð‡±Ïƒ°Ïƒ­Ì‰¯Ï‰­Ñˆ¬Ï‡¬ÊŠ¯Ë²Î‹¯Í†«Ê~§Ç~©Ç„¬Ë‰®ÏŠ®Ï‡«Ë‰«ËŠ­Ì‰­É†«Ä‡©Ä‹¯ËŽ±Ñ‘µÕ‘¸Ô¹Õ¸Ö¹Ù¹Ù”¸×—¶Ô”¸Ò‹¶Î‰¶Ï¸Ö¸ØŽ·Õ•ºÔš¸Ø–¶Ø–·Õš¸×˜¶Ù‘³Ö´Ö“´Ø±ÍsŒ¢2@0M[§¾‹¶Ô‡´ÔŒ¸ÙµØŒ²Ôˆ¸Ö‚ºÖ~¶Ñx¨Æh±\„£Lx’Jz’e•®w¥Ä®Ñƒ¹Û„»Ù…ºÙŒ¼ÞŒ¼Ý„¹Ùƒ»Ý†»ÝŠºÝŠ¶Ü†¶Þ³Øz¯Óx¯Òw®Ó{³Õ…¸×‰¸Ù€²Ô|®Ñ}¯Ò±Ó‚²Ô‚±Ð€¯Îq¦ÃxªÉ†´ÓеՉ´ØµÚ‘´Õ‚Ÿ¾NoˆJuŠ€¯ÇºØŽ»ØŠ¹×ŠºØ‹ºÖ»×ŽºÖˆ¶Õ†µÕ‡¶Õ‰¸Õ‹»Ø¼Ü’¾Ý½Ü’¿Ý¼ÛŠ¹Úˆ¶Ø‰¶Ö„¯Ð|§Êi±BeAXOw‘u¢À®Ë{¤¿Y—Vz†«ÁŽµÎ‘¹Ò’ºÕ‘ºÔ·Ò‹¸Ó¸Ô‘¸×—ºÚ”¸×“¹Õ•¹×•¹×•ºÚ”¼Ý”¼Û–»Ú–½Ü’½Ü»ÚŒºÖ‹ºÕ¹Ø”¶Ù–µÖ“µÔŒ·Ð†³Ï†±Ï‹²Ñ³Ó‘³ÕŒ°Ó²Ñ³Ð±Ï‹­Í„ªÊ~¦Æ€¦Æˆ«Ì‹®Í‹¯Ì‰®Ì‹°ÍŒ±ÍŠ®È‡«Å‹¬È“°Ñ•³Õ‘µÓ¹Ò»Ô‘¹×“¹Ù’¸Ø”¸Ö’¶Ó¸ÑŠ·Ñ‡¶Ó‡´ÔŒ´Ô²Ñ’µÑ™¸Ø™·Ú–¶×›·×œ·Ú–µ×“³Ô–³Õ‡¤¾k•.<#AOuž´ˆµÑ‰³Î‰±Ëˆ«Å²Í‹·Ô†¹×{±Ïz¬Ê|¨Ç…­Î~«Èw¦Àz©Å|ªÊ®Òˆ¶Ú‚³Óƒ³Ó†µÖ‰·Ù‡µÕ†¶Ö†¶Õ‰¸×Š¶Ø‰µÚƒ´Ö}±Òr¦Êp¥Çw«Ì°Ð°Ñw­Îy®Ñ|±Ò{°Ñ|¯Ð¯Íw«Èbš·\Ž­{§Ç„°Ò…³Õ¹Ú”¸Ø¯Ð|¢¿v¥½€®É‡±ÐŽ¹Ø‹¹×Œ¹Ö»Õ‘ºÓ¶Ñˆ±Î±Î‡¶ÓŒ·ÖŽ¸×¸Ø•»Ü“ºÛ’¼Û¼ÜŒºÛŒ¸Ù‹¶Õ‡³Ô¯Ñ{¦Çk‘­@c|`‚¡†ªÌ³Ôˆ°Ìv²Jm~Su‡‰®Ã’·Ñ”ºÖ¼Ó¼Ô‘ºÔ‘»Ù’»Û•»Ü—¼Ú—¼×–»×˜½Ú™¾Ý˜¾à—½Ýš¿Ú™ÁÛ“¿Û»Ø¼Ù»×¸Ù•¸Ú–µØ“´Ö³Ó‰²ÑŠ¯Î±Ó’´Ö‘¶Ø¶Ö’·Ô‘¶Ð²Í‹°Ì„«Æ€¨Ä†«ÉŽ®Ï®Í‹°Ë‰°Ë‡°Ë‹±ÍŠ«Æˆ¨ÅŒ¬É—µÔ›¶×“¶ÓŽ¶ÑŽ·Ò“·×”¶×”¸×’¸ÓŽ·ÏŒ·Ð‰¶Ó†³ÕбֱՓ²Ò•¶Ò—¶Ö™·Ú˜·Ú—µ×œ¶Ü™¶Û–µÔ˜¶ÓTo…GZl&3)GVt²‰´Í¥»X{Š_‹®ÄŒ¶Ò„²Ïh”­[„œn•®€¦Â{£½i’©j“­s½~©Í¨Êrž»v¥Ã~¬Í†®Ñ…¬Ìy£¿u¥½~®Çƒ³Ð†´Ð…¯Ë}¨Æp¢Ár¦Ã~­É„¯Î€¬Îy©É{­Ìy­Ëx­Êy¬Çx¬ÆtªÆh¼N|œfŽ®~¨Æƒ±Ï‘¹Ù—¸Ù‘°Òƒ¨Æpœ²vŸ¶‚©Äˆ²Íƒ¯È…¯È‹²Ë²ÍŒ­Ê…ªÆ­Ç‡´Î·Ó’¸Ô¶Õ’µÖ’·Õ¶Õ¸Ø·Ø¶×ŠµÔƒ±Ñ€°Ð¯Î‚©Är”²Zx›{š¿°Ñ‘µÒ‡«Äh‰7Ufiˆ•¶Ð–ºÖ”½Ö–½Ö•»Ö’ºÙ’ºÛ“¼Ü•»Ø•¾×—¿ØœÁÝ›¿Ý›¿àš½Þ›ÀܘÁÚ“¾Ù½Ö»ÖŽ»Ù’ºÛ•·Ù—µÖ•³Ô‘²Ô³Ô”´Ö—´Ù”·Ù¸Ø“ºÙ—ºØ•¹Ô‘µÒ²Ìˆ°É„¯Ê…®Î‹¯ÒŒ°Ï‰°Êˆ²ËŠ±Í‰­ËŠ©Ç‰¨ÃŽ¯Ê˜·Óš·Ô–·Ô‘¶Ò•·Ø™¹Ú”¸×”¸Ö¶ÒŒ¶Ï‹µÎ޶ӵדµÛ“³×”´Õ–·Ô–·×™¸Ù˜¶Ù™¶Ú—µÜ˜¶Û“¶Ô“¶ÓVz‘&EX3E$FZIp‡l¨a•'GU!DPp”ª„«Ê~¥ÃYz’+K\Oq‚eŠ _ƒ›6Zn3ZpNz˜mš¹YŸ1ZqP~™qž¿€§ÉzŸ»RxŒ4]kd’¢{ª½€ª½e‹Y–f”®pŸ·y ¸yœµw¸tžº|§Ây§Àr¡·r ·{©Ã}«Êu¡ÁY€ŸEh…~¡¼‹±Í’¶Ô”±Ó§Ëx”´Ii@cwe‰¢uœµi¥X|b†›n‘©nŒ§f…¢p”­…¨ÂŽ¯È‹¬Ä‰ªÃˆ©Ç†©Å…ªÅ…«È†­Ë‰¯Î‡±Ð‚²Î‚±Í…²Í³Î†§Çt“ºg‡®x›½Š®ÌŒ¯Ë~œ³Car;[m‡ªÁ”ºÕ”¼×˜½Úœ¼Û˜ºÛ˜»Ü–¼Ú•¼Ø’½Õ—¿ÙÀÝœ¾Ýœ»Ü™»Û•¸×”¸Ö–»Ö•¼Õ“¹Õ¸Ù”¸Ú˜¸Ø˜µÓ˜´Ò˜´Ó™·Ø–¶Ú—·Û”¶Ù”¹Ø—»Ø›¹Ø™¸Ö•·ÕŽµÑˆ²Ï…³Òƒ²Ò‡±Ó‰±Òˆ°Íˆ®É‰®Ê‰¨É‹¨ÄªÅ“±Ìš¸Ò·Õš·Ó—¸Öš¹×š¸Ö˜ºÖ•¹×’¶Ô‘¶Ð‘·Ð”¸Ó“·×–¸Û“µÙ“µÖ”´Ô•´Õ–¶×š¸Û™·Ü™¶Û–µØ”·Õ޶Ò~­Æu¤»S€™P~™_‹¨\„ŸQvŒ=buKr‡t™¶£Äs—·aœ,L`@cwh§`‡¡IoŠBm‡[Œªd—´N™#RkEt‘l˜¼v›¿jŒ©5Xj7ACp|q ®i“¡+Q_>exm™°dŽ¥>bu.Oa7^qKvŽZ„œPwŽ6_rS|’€¨ÂŠ°Ñƒ©Ìo“³Ab~j£‰®Æ’¶Ñ”²Ò†ŸÂlƒ¥Ke€Fb}kŠªgˆ§Gkƒ2ZkR{Ž_…Dd~*Ic>]wUsJk9ZnGh|_€–gŠžf¡j¦s—±z¡¹~¨À~®Ä±È„´ËŒ´Ð‰¬Í~ŸÄq“·kŽ®o”³}¢À}›µPm€$BSg‹Ž³Ì”¸Ö•¶×˜µÕ—µÔ–·Ò‘µÐŽ´ÎŒ¶ÎµÎ–¸Ô—µÖŽ±Ð‰­Ì†«Ç‰«ÆŒ¬ÆŽ®ÅŽ¯É±Ð”³Ö•³Ó–´Ï˜µÐš·Ó™¶×•µØ•¶Ö–µÕ–·Ôšº×š¸Ö›¸Ù”¶×‹³Ô†²Ó±Ò²Ð€¯Í‚®Ë„¬É‡¬ÇˆªÆ…¦Ãƒ£¿‰¨Ä•³Ï˜µÒ›·Ó›·Ò™¸Ôš¸ÓºÕ˜·Ô”¶Ö”·Õ•µÑ–·Ò”¸Ô“¸Ø‘¸Ù¸ÙµÖ“µÕ–µÕ™·Ù™¶Ù™·Ú—¶Ø•·×‘¶Ñ‘·Ó¾ÝŠ¼Û…¸Ú€·Ú†»Û‹ºØ‰µÒ†³Î…²ÏŒ³ÔНÑ¥Åm–´Rz˜Do‹h–´v£Åv¢Åo¡Âp¨Ès­Ìk¥Âaœ¶aš¹v¥Ë€©Ítš¸W”Jw‰lœ¯p£¸c’¥=j|Bm„p¹x¦ÀO|‘FU RaQ…˜i™°R|•$NfT€šƒ«Ê¶×ˆ²Ô{¥Ç[…¡Nx‘}¥¿Ž´Î“¸Ò•´ÓެÍ ¿w›»ƒªÌ…«Ísœ·^¡o¡µ€¬Å|¢½i¨hާvœ¶g‘¨KuŒMvŠY“>fu$L]'OcEl]†˜m™©x§¹}®Ä„²Ê‡²Îˆ°Î‚§Ås˜´b‡¡\‚ fŒ«j‰¥Mi};LPr‚‚¦½±Ì‡§Â€ž· ·„©¾~¥»{Ÿ¸vœ´|¢»ƒ¦Ãƒ¦Æ}¡¿m‘­aƒœm‹ kŠœc€‘r¥‚ ºŠ©Çˆ¬É¯Í“´Ò–¶Ö•³Õ–¶×•´Ó˜µÕ“³Ó“·Ô“µÕ”´Ö´Õˆ´Ô„²Ó°Ð{­Ë|¬È€¬Ä„¬Ä‡¬Ã†«Â¦À€¤¾‡«Å²Î’µÑ–µÓ–¶Ô”·Ô•¸Ô›»Ö˜·Ô•´Ô—µÕ“³Ñ´Ñ·ÕŽ¸×Œ¹×Š¹ÖŒ·Ö·Õ—¹×™·Ú—·Ú–¶Ø”µ×‘´ÓµÐ³Ï¼à’½áŽ¿â‰¾à‹¿à¾Ü¼Û¼Û‹¹Ú¸Ù‹·Õ‡´Ñ~­Ët¢Âp À}ªÍ€°Ô~¯Ò|°Òz²Òz´Ôv´Ôs´Òx´Ó€±Öƒ®Ó¬Í~«È{«Ç|¯Ëx®Ëw«Æq¢¼o»v£Åx©Éh¡»T¥F}“V‹¤q¤Àr Àf•´g˜·€­Ì¸Ø‰µÙ±Õs¥Äg—´u¡¿Š±Ï¶Ò‘¸Ô’¹Õ·ÒŽ¸ÖŽ»Ü»Üˆ·Ó‚¸ÏƒºÐŠ¹Óˆ³Í‡³ÌŒ·Ð½Öˆ¹Ó€²Í­Ç‚­Â{¤·^‡Ozd£r®l˜«d“¦v¥¼…±É‡´Î‡³Í…¬Æuš¶Ms]ƒŸgЧ]{”/K] \tMmŠa…¤o”²„©Ç´ÓŒ±Ïq—²Im„X“\šRw’‚©Æ‹²ÑŒ²Õ‰²Õ…±Ñ‚®Î†¯Óˆ±Ö‰°Ó‹±ÏŽµÏ¸ÑŽ·Ô“·×³Ñ‡­Êy¡¼_…@czOm…Sp…`~’ƒ¢»±ÍŒ´Ñ‡±Ðˆ°ÑŠ¯Ñˆ±Ð†¯Î«Ì{©Ëz¨È~©Ç~¥Ãt™´]‚™Bf{w›±ˆ®ÆŒ²Ê‘µÌ“´ÎŽ±ÏŠ²Ò†´Ó„´Ñ‚±Ð‚«Ì„¨Ì‡«Ï‚­Ì„­Ë‡«Êˆ¨Èˆ©È°Í‘²Í’³Ï“´Ñ“µÒ”·Ô‘¹Ô¹×’·Ø–·Ú—¶Ú™µÜ˜´Ù˜´Ö˜µÖ˜µ×•µ×–·Ö˜¹Ô–µÐ—µÏ–²Î™´Ö™²Õ˜±Õ•±Õ°Ò‰²Ò‹¸Ø‡·Øˆ¹ÚŠ¸ÛŠ¸Ü‹»Ü†¾Ø…½Õ‚¸Õ{°Ì|°Ï²Õ€³Ô‡µÔйՄ·Ð~µÒ|°Ó‚³Ø†¶ÚµÔµÓ~´Ó„´Õ‰³×НՉ¯Ô‡±Ô‡´Õ…µÔ³Ñ~±Ð{®Îz¬Ì²Ó…¶×‡¶Ùˆ´Ú†´Ú„²Ø†´Ù‹·Ù»Ûˆ»×¸Ñ·Ð‡¸ÔŒ¹Ù“¾à–¿ã“½Þ¿Ý”¿Ý–½Ù”¿ÛŽ»ÚŽ¹Û¸Ùˆ¶Õx­Éx¬Å±Ì†¶Ò‡¶Õ†°Ðy»UwSz‘p—³t™¹_ m­ˆ¬Ê‹°Òƒ¨Èq—²fާbˆ¥uœº…±Î†´Ó‡±Ó†®Ð†²Ñ…²Ñ‰³ÔŒ´×¶Ö“¸Ò‘¸Ò»Ó’ºÖ—·Ù“³Õˆ®Í~©ÅvŸºm‘­mЧg€™Mg{Wu‰†¨Á‹±ÐŠ³ÓŽµÖ’³Õ’´Õ³Ô†®Ï~ªÍ€¨Ì‚§Ê‚§ÅzŸ»hŠ£Fe{b€š†©ÄŽ´ÍŒµÊ¶ÎµÒŠ´Ô‡µÕ…³Ó‡±Ð‡¬Ì‰¬Î‹¯Ñ‰¯ÎŠ¯ËŠ­Ê‹«ÈŒ®ÊŒ°ËŒ²Î‹¯Î±Ñ˜µÓ–¶Ò“¸Ò“¸Ô•µÖ™¶Ö—³Õ˜³×™²Øš´Ú–´×“´Õ“´Ô’¶Ó”¸Ò”¶Ð•¶Ð˜¶Óš´Ø›²Ù˜°Ø’¯ÖŽ°ÖŠ²Ôw¡½{©Ç~¬Ë{£ÃxŸ½©Æ…´Î…µÑ|­Æj³k¸vªÊ|¯Ìƒ²Ê‚¯Å|­Ã}±Ì|°Ñ±Ôƒ²Ô„±Î­Ê¯Ê„®Ì‚§Çzž½zŸ¾€¦Å„«È}¨Äw¨Àv«ÄuªÆ|¬É®Íƒ¬Ì…ªÎ†©Î„¬Ñ¬Ñ‚¯Ô†´ÕŠ·×ˆµÕ~²Ï{´Ïƒ·Ð‹ºÔ¼Ù½ÞŽ½Ü½Û•¼Ý•ºÚ‘»ØŒ¸Ù‹µØ·ÚЏØz¯Íf›µf”®®É¸Ø·ÙŠ±Ò‚¨Ç}¥Äƒ­Ë†ªËv”¶]|š„¨ÅŽ´ÓŽµÕŠ±Ñ„­Ë„­Íˆ¯Ñ†±Ó†µÕ‡´Ó†³Ñ„²Ñ†µÓŒ¶×µ×¶Ô”ºÒ’¸Ñ»Ó“¼Ô—¸×•´Õ“´ÕŠ°ÏƒªÉ} Áy—¶k…ŸTr…Cass’«‰¯Í·Ø‘¸Ù–¸Ù˜¶Ù‘²Ô‰®Ð„«Îƒ¨Ì‰©Íˆ¨Ê€¡ÀqªLiUr‰«Ç·ÒŒ¹ÏŠ¹ÒŒ·Õ¶Ø‰·ØŠ´ÔŒ±Ñ‹®Ï°Ð³Ò´Ñ²Í‰®È­Ê°ÍŒ±Î‡¯Ïˆ®Ï‘²Õ™µØ™·Õ”¶Ð•·Ñ–¶Ó•´Ò‘±Î¯Î‘®Ï”²Ö’³Ö“´Õ“´Ô“·Ó”ºÑ—¹Ò—¸Ò™·Öœ´Û™±Ú“°×ްֱֳÔHp„cަo™µ[~›;\ub†žwž¹z ¿kª?cvIp‡qž¼{«Ç~¦¾fŠ f¥{¦Á†³Ó†²ÓŠ²Ñˆ«Çt”­k‘¦y ·s–­Nr‡Mt‹cˆ¢l‘«gŒ¥aŠ¢j™±r¢¿z§Ã{ ºp¦n‡¢q¬o•µu¡Ãz§Ìƒ®Ñ¦Ær˜µs ¼x­Å{¯Å…±ÇŠ´ÌŠ·ÓŒºÔŒ·ÐµÑ³ÑŽ´Ñ‹²ÔµØ‘¹ÜŽ¸Ù‚²Ñkš¶GrŠq™²¶Ó•ºÙ˜¼ÛÀᕼݻړ¹Ù‹­Íu›¸„®È޹ӑºÙ‘¹Ù޷׶׋²Ö‰°Õ‰³Õˆ²Ò‡³Ð‰³Ó‹µÔ‹µÕµÕ’¸Ô“¹Ò–ºÒ‘¹Ò“¼Ô“ºÓ”¸Ó“¶Ô±Ñ‚¨Ès—¶]}™WuOmDbsm¥‹¯ÌºÚ“½Ù–¹×˜·Ù’²Õ‹®Ñ…©Ëƒ¨ÈŠªÌªÌƒŸ¿u«Pl„a€™Ž²Í‘·ÓŽ¹ÑŠ¸Ò·ÖµØŒ¶ÕŠ³ÑŽ²Ò°Ñ±Ò‘³Ô‘³Ò´ÐŒ°Í‰®É²Î´Ð²Ñ±Ñ–´Õ—µØ•¶Ö’¶Ò´ÎµÎŽ³Ì¯ÊŒ¬È¯Í³Ô‘´Õ“³Ö“´Ö•·Ô•¹Ò•·Ñ—¶Ñ—²Ó›±Ù™±Ù“±Ö³Ö²Õ޳×Htˆd“©mš²Ns.Qka… wž½o”µGfƒ8L+G[q˜²z§Åm’¯3RlJm†l“°x ¿…©È†¥Âw”®Lk€7]oaˆ^ƒ—@Pe~f°uŸÃ}¤Çf‹©+RiMxnžµj—­]„—g‹ s›³yŸ³xš­y𝀡»„¥Äƒ¦Èƒ©É‡¯Ïˆ´Ô†³Ô{¤ÃT{•KsŒ†¬È”¸Öœ¾Üœ¿Þ˜¿ß’¼Ü•»Ú·Óˆ´Î‡´Ð·ÓŽ·Ô‹³ÓŒµÕ‰´ÓŠ°Õˆ­Òˆ®Ò‰°ÓŠ°ÑŠ²ÒŠ²Òˆ²ÑŠ´Ð¶Ï‘¸Ñ•¹Ó’ºÓ’¼Ô‘½ÓºÐ¹Ó‹²Ðz ¾W|™X{–d„ž[zŽQ&HZV€•¬ÈŽ»Ú’¾Ú¸Ô‹´ÒŒµÕŒµÖŽµÙ†ªÍt›»}¦Ã¦Â`ƒ— ?K$CPZ€“f£Wz‘]~—~£¾‡¯Ìˆ³ÍŒ¸Ñ·Õ€­Éh”®`‹¤n•«p‘¥Uq‡Hf~h‚¡v°Wu<^te¤ƒ«Æ‹³Ó‰²Ò|£ÀV™Iu}¦Å‘µÖ™¾Û“»×‡¯Ëq•®DfzWz’lŒªežNk…SvŽh§m©e„œi†Ÿr®x’³uŽªt•¬zž¶y›´u—ªt—©z´~£»…«Â³É·Í¹Ð¶Ò‘´ÖޝÒ¡Ãkޝa‚ŸIf|+GYf†š“´Í–¶ÑŒ®È€¤¼s•°m’­d©`ˆ _”UrŠWu•Z|Ÿu›¹~ªÄ«Å…¬ÇŠªÇŠ¨Æ|ºe…Fdwp’§‡¬ÈŒ²ÒµÖ’·Ö”¶×“¶Ó´ÎНɉ®ÌŒ¯ÍŽ³Í·Ð’¶Ò”¶Ô•³Õ”±Ò•³Õ“µÖ“´Õ˜·Öœ¸Ö˜¶Ô—´Ñ•´Ñ”µÒ’´Ï•³Ñ“±Ñ±Ó‘³Ø”´×’²Ó‘³ÑŽ±Ò‘±Ô¯Òˆ®Ð„¯Ð†¶Ù…·Ø‡¶Ø†´Ö„³Ô²Ò„´Ô‰´Ø²Ø{¡À9`t)P`{¥¼Œ¹ÙŠ·Ú‹¶Ö…¨Åc~–(AT2QbT{o™°‘¸Õ™Àà˜Áᕽܖ»Ú‘¶Ø¸ÚŽ»Û—¿ß›¿Ý’·Ô§ÂZ•?I=K7]sBf~UrˆC`tQp‡v™³‰°Ê–¼×šÁß½Ùƒ´Í‚±É‰²ÊŒ±Ê†§Ã…£Ã§É“­Î†¦Âvœ´¤¿³Ñ”¸Ù’·Ö±Î{£¾d“°t¢Â·Ö’»ÖºÒ„±Ésœ³HoƒaŠ¡i­Xx•=]wMt‹b‹¤Z™AdxHh}UtŽLiƒ9Ui;ZmSu‹Lm„7Uh@_qYzŽkŽ¢k’¥}¤·ˆ®ÅŒ±Í±Ð°Ò°Ó…¨Ét–·Ut%CV8Wh} ²´É‰ªÃq“ªUvŠMlƒ[}”_„œXzŽ=Yg+HYMpŠn‘°yµl’¤q™®~¡½‚Ÿ¼x”®gƒ™Uq‚2N\]}„©ÃŠ²ÌµÑ”¶Ó—¶Õ“µÓ´ÏŽ³Í‘²Ð•³Ò—¶Ñ˜¹Ó™¶Óš´Ôš²Ö›³Ø›¶Ø™·×—µÔš·Ó–·Ð”¶Ð‘²Í“±Í•³Ï—µÐ•²ÍŽ®ËŽ²Ð´Ô•µØ‘²ÔŽ±Ñ±Ò°Ò°ÑŠ­Í‰®Ð†´Ø‡¶Ù‡µØ†´×‚³Ô€´Ô„´ÓˆµÕ‹³×€©ËQw@QdŽ¡‰¸ÓŒºÙŒ¹Õ†­ÆRr‡"BS[‘u´i¦±ÊœÀÜšÀß–¼Ý•¹Û’¶Ù¹Ú¼Ú“½×™¾Ø‘µÏ{¸Gj~:H%CRWz‘Dj†KnˆWv’A`z>]x\š€¥½’¸ÑºÒ‰ºÑ‰¹Ñ”¾×–½×˜¹Ùš·Úœ¹Ûœ»Ú™»×”¸Õ“·×–¹Û™¼Ý˜¼Ú˜ºÙ´Ó†²Ò„³Ó¸×ºÔ‡·Ï„´Ì„±Ç}¨¾ƒ°É‚­Êvžºj‘¬j“¯qŸ»f–°XˆŸZ…›i©iŒ¦Y|“Z}’iާfФHk€Hn€fŒŸp—«g¡b‰œv›²ƒªÄ‡®Ì‰®ËŒ°Í‚§Ämª?Zq#>PYy‹ˆª¾Š¬Ãw™°Nq„8[jSvˆb…›^˜Qq„2P]*J[Pulެd…›=_mNt…r—°v—°[wŠC]kRkx4N\Oo€¤»‰°ÉµÍ‘´Î“´Ð’¶ÒŽ³ÏŽ²Ì–´Ð›·Òš·Ò›¸Ó™´Ñš³Ôš³×š³Øš³Õ›µÖ™µÒ—¶Ï–¶Ï’µÏ”³Î–³Í“²Ì”´Î“²Í°É³Î‘µÒ•³×”±Ô‘±Ó“²ÕŽ¯ÑŽ°Ð«ÎŠ©Í‚­Ñ„¯Õ„®Ô„¯Õ­Ò€°Ó„²Ó„±Óˆ±Ö„ªÏe…¤!?TW|‘ƒ°ÌŒ¹Ø·Ò„§ÃTs‰!CUp–«ƒ¨Â`†žo”®´Ò¹Ø¸×¸ØŽ¶ÙŽºÛŒºÚŽºÖ¹Õ‡ªÆb€›Fa{:Sh1N_w›±a‹©Nz™aŒ®Y~ŸDhƒHo‡T{‘iޤƒ¬ÁŠ¸Í»Õ™ÂÜÁÞ ¿àž¾ážÁßœÂÝœÂÛšÀÝ—¾ß˜¿àšÀàœÀß›¾Ý˜»Û‘»Ú¼Ú’»Ú»ØŽ¹Ö¸Ó’»Ö”»×–½Ù‘¹Õ‰µÐ„°Ëƒ¬Ì®Íw«Èp¦Ãr£¿y£Á{£Âv¡¼vž¹z¤¿y¤Ánš´g”«n™¯tŸµm™¬Yƒ—S{tž¶ªÈˆ°Ï‰±Í„©ÇkЍf{X g“»l˜Àj”¸a†£Io†Ueg•|™³‚Ÿ¼u“®[{Wu‰b”aƒ•w—¬ŽªÆ™´Ò¹ØšºØ’·Ò‘¶Ò‘¶Ô’´Ö”¶Ö—·Ò™¸Ò˜¸Ó•¸Ò‘¶Ð’´Ò“²Ó—°Ô”®Ðެɋ¬ÈŽ®ÊŽ¯ÊŒ®Í‹­ÏŒ°ÎŒ³Ï‡¯Îˆ¬Î‰¬ÎŒ¬ÏŽªÐŠ©ÐKr“_®z­Î{¯ÏdŽ©*J_Z|ˆ±È€©ÄW€ž@jˆh”´­Í‚°Ðƒ²Ñ‡²Ñ~¢Âj†¥]x”bn«u—²|¡¿€©È†²Ðˆ²Î‰³Ë‰´Ì»Ô˜¾Ü™¾Ü–½Ø”»×™½Û ÃàœÁÞ–½Û‘¸Ö‘·Ö’·×•¸Ù‘´Ö²Ô²ÑŒ´Ð‘¸Ó’·Òˆ±Ëƒ°Ð‰¸×¹ÕŽ¹Ô”¼Ø•º×аËv¢ºk˜²i”±g“°^Œ¦^Œ¦o˜¶t—µ[{“/Na^~–u“­Jcy0FZ`z”h‡¤\~™]…¡Zˆ¥]Чl—¯p—±fŒ¦Uz]˜d‡§[ Gk…JkZ{’Z}”[™[€œPt’:[v;[r`„š{¡»€§Ã~¤À¢¿q‘«Kk|5UcXxˆ^~Ss†XxŠ\|Ll;_qV|“f‹¤VwB_tWo‡\oˆQcz^p‹k{›[k‰cvDj~©Â–ÀÜžÈæŸÄ敵Õ|™´mŠ¥w”µ‚¥Èˆ­Ï‹°Ñˆ­Ï€¥Å}£¿‡¬ÇŽ°Ë„¦¼u˜ª{ ´†­Â„§¼x˜®€¡ºŒ¯Ê„§ÃYy“A`xw—¯Ž°Ë­È„ ¸‚Ÿ¶°Ç²Ë–·Ñ™¼Ö˜¼Õ˜½×›¼Ø—¸Õ”¶Ñ•¸Ñ–¹Ô™¸Ö¹Øœ¹×›½Ù›ÀÚš¿Ù˜¾×’½Ö“¾Ö”¼Ö”¹Õ”¸Õ—¸Ô™¹Õ˜ºÖ•»×“º×“¹Ö¹ÕŒ¸Ô‹´ÓŒµÒŠµÑŠ´ÓвӉ²Ó‡±Ñƒ­Ê„°Ì¯Ë…°Ðˆ®ÐŠ®ÏŒ°ÒŠ®Ð‰°Ñ‹³Ô‹°Ðˆ®Ïˆ°ÐвӋ°Ò‰¯Ñ†­Ï…¯Ïˆ²Ò†®Ð‰¯ÔŒ³Ó¶ÎŠ·Ì‡´Íƒ°Ì„­É¤Às“®WwFd{Jhw•µ‡§Ì„¦È‚¨Å{§Áw£À|¡Ãƒ¦ÈŒ¬Î­Ì¬É¬Ç‹¬Æ‰«Æ‡¥Äš¹j…œ?Vh?Wka~”Dezo”ª~£¾‡¬È³Ì”¶Ñ˜³Ó™²Ô™³Ñ–´Ò‘²Î²Í°ÊŠ°É³Í—µÐ—´Ï“´Ò“´Ó—µÒ“³Ï³Í³ÍŒ³ÏŠ´Î³Ì±Ì¯ÌŒ­Ê‹°ÌŒ¬ÌŽªÌªÍ©ÌŠ©Ê‡©Ê†«Ç…«Ä„©Åkš°l—¬‰µË—ÅÛ™Éâ–ÁÞ¥ÄQp‹;^v\žu—ºr”¶n‘±h¬W}šMqd‡£s”¯e…›EctHiycˆ›\“:[qZ~—}¢¿€¥Ãhˆ¦9Yt]}š|¡¾yš¶OlƒQo€s˜­„«Ä‡­ÈxœµkŽ¥x™²ƒŸ¹v’¨v•¦¢´ˆ«Â‡§Áˆ¥À¬Ç—¶Ï”¶ÍŽ±Ç±ÉŽµÑ‘¹Ô‘¶ÑŒ±É®Æ’°Ë—µÐ™¼Ö™½Ú“¹Ö‘¶Ð´Î‹³Î‹±ÏŽ´ÓŒ²Ðˆ¯Î…ªÊ„ªÈ„ªÉ†­É„¯Ê‚­Ì„­Ìˆ­Îˆ­Ï‰¯Ï‰­ÏŒ°Ò‹¯Ò‹¯Ò‰¯Ñ‰°ÒŠ±ÑŒ±Ñ‡¯Ïƒ­Ï…¯Ò‰±Ò‰¯Ð‰¯Ð‰¯ÍŒ³Ì‹³Ëˆ±Î‚®Í«É¦Å|Ÿ½m’­_… eŒ§‚¨Ç†ªÍ„§ÈƒªÅ{ªÂzªÂ~§Åƒ¨È‡©É‹¬ÈŒªÆ©ÃŒªÄ†¦Âƒ£Â|ºn Haq5L^Pj|Hewo‘¦€¦¿Œ²Ê‘¶Ï–·Ñ™¶Ô™¶Õ—µÒ“·Ò´Ñ±Î¯Ë°Ë±Ë•²Í–³Î’µÑµÐ´Ï³ÏŒ±ÌŠ°Êˆ¯Ë†±Ì‰²ËŒ²ÊŽ¯ËŽ°ÌŠ­ÉˆªÇŒ¬Ì«Í¨Ê‰ªË†¬Ì‚¬Èƒ®Æ„«ÇŒ¼Ô½Ñ—Â×›ÇܘÉÝ“ÃÛ…±Ìi’«JuŠaŠ¢z¹k‹¨OqŒOtPw’Owi©r˜´eˆ¡No‚Su…p“§n¨Uy‘k«‚¨Å}ŸÀg‰¨@eƒ^…¥x¢Âq˜µNs‰Lp‚t³{¥Àrœ¶W–?dzUwb™D`t@`nTx†b‡™W|ŽOqƒa‚˜y˜¯t”§c…˜eŠ¡{ ¼…«Èƒ¨Âv—ªm¢u˜°ˆªÇ•¹Ô–»Ö’µÑ†¤¾{™®žµ†¥À‰«Ç‚§Ãx¹r“¯n‘«r˜²xŸ¹|¥½‚©Å†¬Ë‰«Ì†©É„¥Ã‡¨È‰ªÎ‰¬Ïˆ«Îƒ¨Ê…©ÉŒ®Ì¯Ìˆ¬Ê€§È©Ê‡«Ì‡©Ê…¨È†«Çˆ®Æ‹®Èˆ«Ë‚©Ë|¨É~¦Ç}ŸÀz¾u›»v ¼|©Ä~¦Å~¤Á}¤½z§½w©¿{©Ä„¨Èƒ¦Æƒ¨Ã¦¾€¤·¢¸ž¹|¼{œ¸v—«[{‹?\nHdyWvŠ}žµ…ªÄŠ²ËµÏ–¸Ò˜µÔ–µÔ’µÐ´ÎŽ³Í±Î±Î®Ê®É“®É”°Ê’²Ì³ÌŒ±ÌŠ¯Ë‰®Èˆ­Ç‰®É‹¯Î±Ì¯Ê“°Ë‘¯Ë¬Ë‹ªÉ‹ªÉŽ«Ê©É‹«Ê†«Ë©È€©Â‚©ÅžÅß›ÂÚšÃÛ™ÄÜ”ÅÚÃÚŒ¼Õƒ°Èm˜­_ƒ—`•UtGl„Hp‰f©z§½‡³ÊºÔ‹²Í‡­ÄŒ¯Å˜»Ó”¶Òˆ¬ÇŒ±ËŒ°Î„§Èn”¶aŒ¬rŸ¿‚¯Ð€«Épœ³dŽ£x¡º…¯È|¨Àh“ª_†Ÿo”°p’­\}”Uy‹cŠžo–¬]‚•Io‚\—p’©b„—KoRxŽs—´¥Ãs—±LoChziލ†«Ç–¸Õ•¹Õ®ÈpŠ Qi}rŽ¥ƒ ¹ƒ£¾s–°[|•CawGh{Z˜g£i¤s•­¡½†£Â}š¸o¦oªw˜·|¡Àzž¾u—¶u’°˜¶„ ¼~Ÿºq–±n”¯x™¶~º}ºw™µw›µ€ ¾‚¢Ã| ¿| ¿{œºyš¹w™ºw›»{¡¿}£Àzž¹u–°k¢sš­y¥»z¦¿| ¾zš¼yœºyžµp”¦g†˜nŠ¡q‹§r§zœ°r˜ªdˆ c‡¡x›±ˆ©ÀŒ®ÈµÏ¶Ï”¶Ï—·Ô•µÔ‘³Ñ’³Ï’²Í”²Í“°Í’°Ì“®Ê’­È“®È’°É±ÌŽ±Í°ÍŒ±Ë‡¬ÆŒ®Ê‘±Ñ’¯Î–°Í”¯Ì”¯Í’­Ð’®Ñ¬Í©Ë¨ÅªÆ‹ªÊ†©È…©Ã‡ªÅ›¼Ø—»Õ˜ÀÚ—ÃÛÃÚ‹ÄÚÁÛºÔ„ªÀh‰œ@_rJn„Q|“EsŒp ·ÀÕšÅÝšÂÝ—¾Û•¾Ö–½Ö™ÀÙ™¼Ù“·Ô”ºÕ“¹Ö‘·Øˆ³Ô¯ÐƒµÕ†·Ø‹º×ˆ¶Ð…±ÊŒ³Ð“¸Ó‘·ÒŒ³Î‹²Ð´Ó´Ò†«Ä‚¨À…­Å²Ì…«Ãx¡¹v¢º«Â}¨Àp™±o–°| À‰­Ëyžº\‚šZƒš|¢½“µÕšºÚ˜¸ÖŠ©Âhƒ—Fauy—¯Œ®ÄбÈ|¢»_™<]p=as\ƒ™cˆ [}“Wyt•¬|š¸mŽ«Op‡Ek^†žm–°l’®a‚ RnŒaz™n‰¥hˆ¢Uz‘AhNuŒ]‚›Ux‘Kp‡Sy’hŒ©r“±oŒ¨f›c›f‹¥hŽ«j­s‘³x•·s®`}“Khy^’o˜­qš±i‹§e¢i†§kЦ\{@[kCYlG[rC[pd‚•|¡¶§Á…«Çˆ¯ÆŒ¯Æ‘°É“µÎ”·Î•¶Ï”´Ñ–³Ô•²Ô•²Ñ“±Ï”±Ð–³Ó•´Ñ’²Î’°Ë“°Ê”¯Ê®Ì±Ñ°Ð±ÎŠ¯ÊŽ°Î”±Ò“±Ì–±Í•²Í“±Î‘°Ð®Ò­Ñ©ÍŽ©ËŽªÉªÊ©Ë‹ªÇ‰ªÄ‰¯ÉŠ¯Ì•½Ù˜ÃÚ”ÃÛÄÞ‘Àà–¾ÜŒ³Ên“¦EiS{“P—Rƒ›ƒ³Ë›ÈߣÊã ÅáÃߘÃÜ–ÁÚ”¾Ö³Ì‰­ÇŠ±Ê‘ºÖ“½Ü“¾Ý½ÝŒ¼Ü‹½Ü’ÁÜ“ÀÚ–¿Øš¾Û›¿Û›ÀÜ›¿Û›¾Ý•ºÜ•»Ý•º×–»Ö–»×—¼Ø”ºÕŒ¸Ò†·Ïˆ»ÒŠºÕ‹¶Ó³Ò‘³Õ“¶Ö‹²ÐªÆz¨ÁŠ³Í™»Ø½Ù˜ºÕŒ­Æq¥Ih~mޤ‹³ÇŽ¹Í‡²Êx¢¹\†œT”b‹¤j«X}—V}•u›´yžºo“®X|–T|“l”­x ºsš¶e‰§Y}™mŽ©z˜¶q’°X€—HsˆW„›^Š¥Rz“Ck‚Nwk‘¬q“°g„GauLg{\•b‡¢`€ ]x˜h¢j„£Rp‰5ViOu†g’¥k’¨]~–JdXr\v”Oi.IY%>Q*CY&=SC^qm£~¢º…«Ã‰­ÅŠ¬Ã’²È—¸Ì™¸Ï–´Î”²Ï“°Ð–°Ò–¯Ò•°Ò™³Ö˜´Ö•µÓ‘·Ð³Í±Ê‘¯Ì®ÍŒ¯Î±ÐŽ³Í±Ë’³Ñ’°Ï°Ë’²Ì“²Î”´Ï’°Î®Ð‹­Ñ‹«ÏŠ©Ì‡§Ê‹¨Ì«ÍŽªÉ‹§Æ¹ÒºÔ›¿Ý ÅàžÅá›Ãä›Âç–¿ß·Ñ|¦½j”®`§^§x¨À–ÀÜ Æã£Éã¢ÇâžÆá˜ÄÞ—ÃÞ”½×†«Åy·†©Ä’¶Ò˜½ØœÀÞžÁá›Àà˜Áß›ÃÞÃÞŸÅÞ¤Ãà ÄáÁÞŸÀÞ¢Ááœ¿à™¾à˜¼Úš¾Ùš¾Ú—¾Ö–¾×’½×ÀØÁÙ”ÁÛ›Áßœ¾ÞÀÝžÁà™Àà¼Ø‘½Ö–½×œ¾Øœ½Ø˜¼Ô“µÌ‚¢ºb„]ƒ—ƒ«½·Íƒ°Éx¥Àu¢½w¥¿|©Ã~§ÁuŸºv ½|¥Â§Å¥Ãw»x ¼¨Äˆ­Ê…ªÈ~¤Áw ¹¦¿‰«Éƒ¨Çw¢»q¡¸x¨Âz©Æt ºj‘«i’«sœ¸{Ÿ¾r‘­YtŒKe{WvŽe‡£f†¦[x”]z–g†¡\€™W}“dŽ¢qœ°o–¯b…ŸQp\{™aŸSs<^q=_uJj„A^w7UkVuŒo‘§¢·‰©¿Œ¬Â±Ä”¶È–µË–³Î“±Ï”²Ð•´Ñ•³Ñ–´Ó˜²Õ™³Ö”µÒ¶Ð´Ï‘µÏ’²Î°Ê±Ë”µÑ”¶Ð±Ë“²Ï’°Î°Ìޝɓ²Ï”±Î”±ÎŽ®ÏŠ­Ï‡ªË†©Ëˆ¨Ë‹©Í«Ë‹«Ë‰©Ê•ÁܘÂÝ¡Åá¦Æã¢ÄåžÁçÃç–ÂáºØ·Òˆ³Ñ‚±Ï´Ï»Ø›Áà£Äã¢Äá ÅãšÃà™Ãà™Âß–¼ØŒ°ÊŠªÅ‘¯Í›¸ÕŸ½Ø¡ÀÞ¢Áâ¡Áà¢Ãà¢Äà£ÅߤÄà¦Äá¡ÄâŸÁà¢Àà¢¿áœ¾à™¼Þ™½Û𾨗»Õ•¼Ó•¾Ö–¾Ú–¿Ý—ÁàœÂß¡Àߢ¿Þ ÃÝ ÅàœÂᗿߘÀÜ›ÁÛŸ¿ÛŸ¿Ù¾Ø›¼×‘²Ì‚¦Àtš±¥½ˆ¯È}«ÃrŸ»sŸ¼€¬É‰µÏˆµÍ²Ê¯Ëƒ¯Î†®Î†­Íˆ­ÎŠ°ÏŒ³Ò‘¶ÔŽ²ÐŒ±Í‰°É‹°Ê´Ï‹´Î†²È…³Ê…´Î…´Ð‡±Í†¬É‚«Æ©Èƒ©Ê|žÀp®_}™\{˜e‰§k°cˆ¥[€›g¦r˜±y£¸|§¼©À§Äs›¹f®b­d’®a¦[…[ƒ b‡§`€ŸTsTv‘e‡ }›´‰§¿«Ã±Ä´Ç‘³É“³Í²Ï²Ï’µÒ”¶Ó’³Ô–³Õ•³ÖµÓ¶Ï´Ï³Î”³Ï–²Ì•´Ï”µÒ”µÏ±Ì±Í’¯Í¯ÉŽ¯É±Í“±Ï‘±Î°Ðˆ«Í‰¬ÌˆªË‰§Ì†¦Ì…§É…©Ê‚¨É‘ÀØ™ÄÝ ÅߢÄà ÃãžÂäœÂᗾݖ»Úš½Þ—½ß•¾Þ’¾Ý”¾Þ›ÁÞ¢ÃàŸÁÝšÀÝ•ÀÙ•ÂÛ—¿Û‘¶Ð€¤»~ ¶‘°Êž»Ö¡½Ù ¾ßœ¿ÞœÁÝŸÃߣÂâ£Âã£Âà ÃÝžÃÞž¿ÞŸ¾ßž¾ß™¾ß”¼Ü•¾Ú™¿Ù™¾Ø—½×•¾×˜¾Ý˜¿ášÁâœÀß¡¾ß¥¾Þ£ÁÞ¢ÃÝŸÂà™¾ÞšÀÝ›ÀÚÀÚž¾Ùž½Ù™º×”·Ó“¶Ñ±Ë‹¯É‡®È|©Âv¡»uŸº~ªÅŠ·Ð‹¹Ñ†·Î„´Íˆ²ÏŠ±ÏŒ²Ò³ÓŽ´Ô¶Ö‘¶Ö“·Õ”¶ÓµÏ´Î´Î¶Ï‹³Í‹´Í‡²Îƒ°Ì‡±Êˆ±Ê†±Ë‡¯Î†­Ï€¨Êxž¾jŒ«`Ÿdˆ¨k”´e‘¯W‚Ÿf¨z¤º{§¹}©¼ƒ®Ä‡¯Ê€ªÉu£Âr ¿p ºo›¶j’²fްe±g¯g‹«l®r—±}·‡¤¼Œ«Ã‹®Ä‹°ÇŽ²É²Í²Ï‘³Ð’´Ò´Ò“¶Õ•³Ö”³Ö‘µÕŽµÒ²Ï³Ï•³Ð—³Ð•¶Ð‘¶Ò’µÓ’±Ð±Î“²Ï’°ÌŒ¯É‰¯Ë‹¯Ë‹°Ìˆ°Î‡¬Î‰«Ì‰ªËˆ©Ï†§Îƒ¦Ë§Ê|§È‘¼Ñ˜Á×™Àט¾×›¾Û›¼Û—¹Õ”·Ð‘µÐ•ºÖ™½Û™½Ü“º×–¼×ŸÁÜ¢ÃàœÁÝ—¼×‘»ÔŽ¼Ô“¼×‹±Êk¤WyŠˆ§»™¹Ôš»Ù˜»Ù“»Õ•½Ö–½ÙžÀá Àâ ÁàšÀÙ™ÁÙš¾Ûœ¼Û˜»Ú‘ºÚ»Ú¼Ù˜¿Üš¿Ù›ÀÚ˜ÀÙ—¿Ú™ÀÞ˜½Ýš½Ý¢¾à¢¼Ü¢¿Ú£ÀÛ£ÁÝœ¾Ú›ÀÜ›ÀÚ™¿Õ—¾Ô𼨛º×˜·Õ›¹Ô™¸Ò–¶Ð²Ëˆ°É¨Ä€§Ã‡¯ÈµÎ‘¶ÏµÌ‹³Ë³Î‘³Ñ’¶ÔµÒ¶Ó¶Ó‘¶Ô“·Ô•µÒ“µÐ´Î´ÍŽ³ÎŽ°ÎŠ«Ç€¨Â{§¾|¦½¨¾ƒ­Æ†¯Íˆ°Ð‚®Ëx¤¾h¨QsŽZ€že“±Z‰¦Z…£užºx¢¸mš­lš¬{§»†®Æˆ°Ë‚«Èƒ«Ç‚©Å§ÄzŸÀq˜»i•¸e‘³f°h¯o˜²yŸ¹~¢»…ªÀ¯Æ°Ë²Í´ÎŽ³Í‘´Î‘´Ð“·Õ”¸Õ—·Ö–´Ô“²ÒŽ²Ð±Ï³Ð–´Õ–³Ó“µÐ‘µÏ“³Ô’±ÔŽ°Ñ‘°Ñ”®Ñ‘°ÎŒ²Î‹±ÎŠ°Î†®Î…ªËˆ©Éˆ§Ç‹©Íˆ§Î§Ì{¦Èz§Ç‡ª¿³É„ªÀ‚¨¿Œ¯Ê‘°Í‰§À}œ°z°€¥»Š¯È²Í²Ê“µÌ¾Ö ÁÞ™½Ø‘´Îˆ­ÇŒ²Î‘·Ó²Îo”©Cfuq“£”¹Ñ˜½Ú•»Ö“¹Ó‘¶Ï“¸Ó™»Ú›¾Üš¾Û”»Ö’½×“½Ø•º×“¸Ö·×†µÒ‰·Ó•¼Ùš¾Úš¿Ù™ÀÖ—½Õ–»Ö“µÒ“´Ò˜¶×™¹Ø™º×›¾ØŸ¿Ú›¿Ù–½×˜¾×˜¾Ô•¼Ò•ºÖ—¹Öš¹×œºØœº×œ¹Ô˜¸Ó”¶Ô²ÑŒ¯ÌŠ¬È‹«Å‡¦½…¥º‰«ÀŒ­Å“±Í“¶Ñ“·Ó‘¸ÓŒ¸Ñ¸Ñ’¸Ò“·Ó´ÎµÍŒ´Í³Î‹¬Ë¡¼k¦`†›^†˜f sž²~©Âˆ¯ËŠ²Íƒ¬Äo—­V~•[†¢_ެ^Ž©uŸ¼‚¨Ç|¤¾m™°a¥h“ª¨Àˆ¯È‰±Ì‹¯ÌŠ¯Ì‹­Ìƒ¨É~¥Èw Âoš¼j’´j”³p›µy¡º}¤½„©ÁŽ¯Ë”²Ð—µÕ”·Ô“·Ó•¶Ò“·Ó’¶Ò”·Ó˜¸Ôš·×–µÖ´ÑŒ´Î’¶Ñ”´Ó“³Ò“´Ð‘³Î–³Ò”²ÔŽ±Õ°Ò’°Ó‘±Ñ²ÐŠ±Ï‰¯Ñ…®Ð‚ªÊƒ©ÈŠ©ÌªÑˆ§Ð€§Íy¥Éw¥È}œ´ƒ¥¾hަX}’r“­x–²b˜DcvDhzOv‰gŽ£r•¬p‘¦€¡¶—¹ÑŸ¿Ý—¶Ò…¢»nŒ¦r”®…ªÈ޲Ðxœ¶KoSxˆŽµÌœÁÜš½Ö‘±É ¶€ µ°Ç—ºÑ˜½×•ºØ¹×ºÔµÏ²ÑŒ±Ñƒ­É…®Æ³Î˜º×—»Ö–¼Ô“¸Ñ­È‡¤¿…¢¾†¥Â¯Ê‘·Ò”¼Õ–¼Õ“¼Õ‘¼Ô’»Ó–»Ô”¸Ó’¶Ó•·Ö—¸×•¸Ö–¹Ö—¶Ó›·Øš¶Ø’³Ô¯Í‚£½w’ªl†šk‡™t”¥~²Œ©Á‘±Ë“·Ò“¸Ò“ºÓ’¸Ò’¸Ò’·ÒŒ´Í‰µÊ†µÊŠµÍˆ®È{˜´\x?_sLq„\…—\„˜s˜¯‡ªÆŽ°Í¯Ë€©¿n›°i–±nœ¹y¦À†¬Èˆ­Êƒ«È{£Ão—¶^†¢j’«ƒ«ÄŠ¯ËŽ²ÐŽ²ÐŽ¯Ï®ÎŠ­Í…ªÈ~¤ÂtŸ¼u »z¢»£½ƒ¤¿‹«Å‘®Ì˜²Ó›¶Ö˜·Ó•¶Ó”µÒ’³Ð’´Ï“¶Ñ˜¹Ö—·Ö‘´ÔŽ¶Ò‹´ÍµÏ’³Ð•´Ó”²Î“²Í•³Ò—³×“°ÕŽ°ÑŒ°Ò‹°Ñ‰¯Ñ‰¯Ñ‰®Ò‡¯Ñ…¬Ìˆ©ÊªÏ©ÔŠ¥Ò¢Ë{¢È|£Ê…©Ä„«Ärœ´f¦vœ¶|ž»hŠ¥LqˆTz“_ˆ g‘§c‰[€“q˜®”¸Ó ¾Ý—´Ïy•­Ed|X}–~¢ÀŠ®Ì¡ÀbƒœLo†ƒªÀžÀÙ ½Ô„¡¶Ts„Qox”§”³Êœ½Ø™¾Ü•º×±Ëƒ¦Àƒ¢¿‰¥Â~ž¶x™¯€ž·‹¨Ã°Ì±ËŒ­Çœ´l‡¡e€šg…t”«Š¯È“¸Õ’¸Ó¸Ï‰´ÉŒ²Ê°Ë’²ÎŽ°Ï¯ÑŽ²Ò³ÐŽ²Í‘¯Í”®Ð”¯ÑŒ­Í†ªÄw˜°\vŽRi}e~’mˆžh„™mŠ¡ƒ¢¼Œ®È’´Î”·Ñ’·ÑµÏµÏ‹²Ëˆ´Ê†¶Ë‰´Ë‰¯É}º`~™WvpŽªr’®b…œ_€—}¶Œ«È¯ÌŽ²Ë‡¯Æ…¬Æ…®Ê‰±Ë±Ì±Ì‡¯Ëˆ¬Ì¤Än•´Z„Ÿo˜±„ªÄŒ±Ì±Î’°Ñ•±Ò“±Ð¯Ê‡¬Ã€«À«Áƒ©¿†¥¾Œ¨Ã’­Ì–°Ð›²Ð´Ò›·Ñ–µÏ”³Ï”³Ï‘´Ð“µÑ˜¸Õ•¶Ó´Ð´ÐµÏµÏ´Ï“µÔ”²Ñ“³Ñ•²Ô—¯Õ•®Ó®ÏŠ¯Ð†®Ï†¯Ð„­Ðƒ­Ð„®Ï†­ÍŠªÌ¨ÍŽ¨Ð‰¤Î†£É‚¢Ç~¡Æ—»Ù“»ÕŠ¶Î…²Ì¶Ó—»Ú“¹Ô‹µÎ·Õ’·×µÑˆ®Å€¦¿ˆ¯Ê˜½Ù ÂÞ›¹Ô€ ¹c†¢j®‚¨Ç±Ñ„¨Èo‘°Uw’p•­›¼Ö¢½×ˆ£¹Yv‰:ViPh‰¤¼š¹Ô𼨗·Óˆ¦ÁjŠ£_~—j† _|”Ut‹f„žw”¯y˜³zš´w–°mˆ¢WqŒLjJk}Ww¤À‘´ÓŽ³Ð†¬Æ|¡¸u˜®|›³„¡»‚¢À} À£À¦¾‚¢»œ¶€š¶º€¡¾|ž¸n¦TpˆVm„m‚šoƒ›^tˆJewf…žƒ¡¼ŒªÆŠ¬Æ†«Å‰«ÆŒ®È‰®ÈŒ³ÊŠ¶Ê‹´Ë‹±Ì†©Åvš·s—±‚ž¾„¾u’­b›k¦¤¾Œ¯ÊŽ²Î²ÎŽ¯ÍŽ²Î‹±ÍŒ²Í‹²Ì‹²Í‹®ÍˆªÈ{¡¿g‘®d‹¦wšµ…¦ÃŒ¬Ë‘¯Î”¯Ð•°Ñ‘±Ë°Æ‰°Ãˆ¬À‰ªÀ‡¦Á«Ç–°Ñš³Õ²ÒŸ´ÓœµÓ™µÐ“²Ì²Ì´Ñ“µÓ˜¶Ó˜·Ó“¶Ð‘¶Ï”·Ñ•¶Ò’³Ð”³Ó’±Ô”²Ö–°Õ›®Ö˜®Ô¬Ðˆ¬Ï†¬Î„­Íƒ¬Î«Í€ªÊ„©Ê†¨Ëˆ¨Ì†¦Ì†¦Í‡£È„£Å~¢ÁŸÂàœÀÞ˜¿Ú–¼Úš¾Þ ÂáœÅÞ–ÃÚ˜ÁÜžÁÞŸÀÝŸ¿Ûš¾ÜœÀÝžÃÞ¡ÅÝŸÁØ•ºÒŒ±Í…¬ÉŠ±Í¶Ô‘´Ôƒ§Æl­^€°Í¡½ÛœºÓ‡¤¾g‚F_{k†¡™·Ò™ºÔ•´Ñƒ ½g‰¡Qt‹Zz”[z”Yy”iŒ§zž¹r‘¬XuNl†QnŠLi‡;]u:\p[z’†§Ã–µÖ°Ð~¡¿lŒ¨QsŠTt‹h† f†¤Z~›Y~˜b‡d…œ\zŽ[w‹f„œlŒ¨gˆ¢_—\x’^v`u‹[mCVg1I[TqŠtŽ­~—¹š¸v•±q©x™³„¥¿­ÆŽ°ÇŒ²È‰¯È‰®É„©Ä„¨ÂŒ¨Ç‹£Æ„¿v•´t™´¥¿‰¯ÊŒ°Î‘°Ð®Ï‹­ËŠ¯Ë‡®Ë†­Ë‰®Ë‹­ËŠ«È„©Æwœ½jŽ­gˆ¤w”±¼ˆ¥Ä‹¨Ê«Ì­Ê°ÈŽ±Å®ÂŠ§À‹§Å’­Ï™±Õ›³×š²Ô›³Óš´Ò˜´Ñ“±Í‘³Ð²Ñ“´Ó—µÒ–µÑ”¶Ð”·Ñ•µÒ˜¶Õ˜³Ò”°Î’°Ò¯Ò“¯Ó˜­Ñ—®Ò‘¬ÓŠªÐ‡«Ë‡­É†¬Ë„ªË‚§È„¦È†¥È†¥Ç†¦È‰§Ë‰§Ê„¦È~£Å£ÃãžÂáœÀàž¿á ¾á Áã™Ãß•ÂÛ›ÃÜÂÜÂÜ¢Äà£Äá¤Åá¢ÅߤÆà¡ÄÜ›Â×”¹Ò…«Ä|¡¼…ªÆ’´Ò²Ò£Äe†§|š¸™¶Ñœ¼×’³Ð|š¶RnˆOlƒ­Æœ»×™¸×°Ï‚§Ã|¥½„©Å¢À{ž½|£¿‚®Ç‚ªÄhލMrŽSv“^~ŸWv“Bbzj‰ ¯È™·Ó–´Ó†§Èo“±X~—Z€—jŒ§^ Jn‹HmˆUz“RyFl~Ko‚d†m‘«Z•Lo‚Z{‘b˜^t‰DVe%8G8Od_y–k„§lƒ¥k„¡]wDbvZz‘{š´Ž«Ç’°Ë¯È‰¬Ã†¨Àƒ£º…¡¹‡¡½…¿~˜¹x™¶{ »¤¿ƒ©Ä…¨Å©Ê¦Èˆ¥Å‡¨Å†¨Å‚¥Ã„¤Ã‡£Â‰¥Ä‰©È‚£Åv˜·g…¢c€›rެw–´z˜·‚¼ƒž¼…¤¿ˆ©Åޫŋ¦ÃŒ§Æ”®Ð™±Õ™±Õ›´Öš´Ô—²Ï•³Ï•µÓ”³Ó”´×²Ó³Ð‘µÐ‘´Î–´Ñš´Ô™´Ñ—±Ï“®Ë’°Î°ÏŽ®Ð“¬Ï—¬Ô–­Ö¬ÐŒ¬Ê‰­Ç‰®Ê†ªË„¦Ç…£ÄŠ¤Æ‰¢Å‰¤Æˆ¥Ç†¥È‚£Ê| Ç¢ÀäÀ暽㜼䠾äŸÃçšÅäšÄàžÃߟÂߟÄá Åâ¥Æä§Åâ¨Æã¦ÅâŸÄà›ÃÜ’·Ñ~¢¾`„¡g©„©Ä”·Ô’±Ñ|šºmЧˆ¦Á—µÑ–¶Óˆ¨Åf‡ Cczz˜°ž»Ùž½Þ›»Þ—»Û™½Û—¼Ü˜¹Ú•¶×“¸Ö’ºÖ‘·Õ…­Ìu¡Áo˜¸u™ºr°Useˆ‹¯Å›ºÕ™¹Ö²Ó‡«Ë‚¥Å„ªÅ‰¬Ì„¦É|ŸÀw›¹z ¼užµ`Š¡Yšl‘®{£¾w¡·g¡aˆœf† ]tXiSsˆ¡½ˆ§É£Äwž¿r•¸iЬd‡¦o“°w•·q¯m¬s–±kŒ§bša›lŠªlŠªe‚žpŠ¥z’«o‹¡[|Y}‘o¬‚¿€™¼m…¡F[t9OlE^{;Pk=PgH]s[s‹bz’axq‹£~Ÿ¶ˆ¬Ã‘¯É—°Î™±Ì™±Í–°Î”´Ð“·Ñ”·Õ•´Õ±Ò‘²Ð–µÏš·Ñœ´Òš³Óš³Ôš±Ó—®Ð—¯Ó–´Õ²Ò±Î‘°Í”°Ì•¯Ð–®Ó•ªÏ‘«ÍŽ«Ë‹¨ËŒ§Í‹¦Ë‰£Ê†È‰žÈ‹ŸÇ‡ ÇƒŸÅ‚ŸÄ’´×‘´ÚŽµÙŒ¶Ú¹Ý‘¼ßšÀá£Àã¥Àæž¿åš½à—¹Û—µÙ—µØ˜¶Ù˜¶Û—¹Ü–ºÜ‘·Ú‹±Ó…«Î„¬Í…­Ï޳ו¸Û–ºÙ“·Õ‘´ÒŽ¯Ïˆ«É‚¨Âv›¶d… c€›©Ç ½ÛŸ¿Ýž¿ÜÀÛ›½Ùž½Ø¡»Ø£»Ú¢¼×Ÿ¿Ö—¼Ô‘µÑ‡¦Ãu‘«d€—`~“SvŠƒ§¿š¹Ùž¼Ý¡¼Ü¡¼ÚŸ½Ùž¼Ö ÀØ¡ÀÚ½Ûœ¼Ý˜½Ù‘¶Í„¦»x—¯|›¶‹®Ç’µÌ–µÐ±ÐŠ®Î{ž¾iˆ¦Vu‘Uu\z•Ytb•]{‰Uq}bxˆB\mFi|wž¸€§Ã‚©Èƒ¦É¡È|ŸÅz¢Ä~¥Å…¦ÉŠ©Ì‹ªËªÉ…¤Ä‚ ÁŸÀ¤Ä€£Â|º‚ »‰¥¿ƒ¢»vš³p–´x¿ƒ£Ç}œ¼h„ F`{Hc€[u•Sj‡Nd^x”d‚¡eƒŸ\w‘k‰¡¢º‹¯Æ“°Ì™²Ðš²Ïœ²Ó˜°Ó—´Ô–¶Ô™¶×˜³Ö”°Ò•²Ð–µÏ˜µÐœ´Óš²Óš²Öš²Ö™®Ò™®Ó–±Ó‘±ÏŒ±Í±Ì¯Í‘¯Ñ¬Ð©Ï‘©ÍªÍ§Ë¨Ë‡¥É„£È„ŸÆ…Å…›Â‚Â~€žÃ‘¯ÏŒ¯Ñ‰±Óˆ±ÒŠ±ÒµÓ˜¸Ö·ÚœºÜ–ºÛ‘·Ø‘´Ö±Õ•³Õ’±Ò•´Ô”µÖ’¸Ø²ÖŠ«Ð…§Í‚¨ËªÌ…°Ñ·Ø•¹Ø–¸Ô•²Ï’¯Î’²ÒŠ¯Ë€¤Áw˜´{™²—²Í¢ÀÜž¾Ûšº×”·Ô–¸×š·× ¸Ú£¹Ø¤¹Õ¡»Óš¸Ñ¯Ì€›¸b~•Sr†W{^…›ˆ­Çš¹Úœ¸Ùœ¹×œ¹Õž»Ö¢½ØŸ¼Ø½Ù ¿Ü ½Ý›¼Ú•¶Ï…£ºnŒ¤u”¯ˆ«Å”´Î—µÒ–µÓ“³Ó’­Ñ† Åz•¸h‰ªe†¦f„¤nŠ¥b}OgwZn€E]nEh{w ¹€­Å…­ÇŒ®ËŽ«Ì‹¬ÍŠ°Ð‹®Ï‘¯Ô’®Ó”°Ò’°ÏŽ­Î‰©Ë…§Éƒ§Äƒ¨Â§Á…¨ÂŠ¬Ç®Ê„©Æ§Ë¨Íƒ¨É}¡¿n«UvMo‹g…¢g‚[td…¡p–²m®g†£t’®†§À±Ê—´Ñ™´Ñ™³Ðœ³Óœ²Ô™³Õ™³Õš³Ö›³×™²Õ•³Ñ”µÐ•µÐ˜´Ð˜±Ó–±Ó–¯Ò—®Ï˜¬Í”­Î‘­ÌŒ°Îˆ¬Ê‰¬Ìˆ«Ì‡©Êˆ©Êˆ¦ËŒ¨Í§Ì‰¤É„¤É€¢Æ‚¡ÅžÁœ¿zœ¿{Á|œÁ~™¸~žÁ€£Å|ŸÀzœ·|œ´†¤º‹¦ÁŒ©Ç‹­ÎŠ¬Ï†§Êˆ§ÉŽ«Ë‘®Ê®É‹­Ëˆ­Ï‡ªÎ‰§Ìƒ¤É¥È{¥Ä€©Ç‹®Ð’²Ó’±Ì“­É“¬Ì’­Í«ÊŒ©ÇŠ§Æ‘­Ë›·Öœ¹Ø–¶Ô‘µÑŒ³ÐŠ¯Ð“²Ó™°Ôœ²ÔµÑ¸Ð—´Ï‘®Ê† ½o¤c…še‰¢x·Š°Ê”³Ô“¯Ó”³Ó—¶Ó¹Ôž¸Öž»Ù›½Ú›½Øž¼Úœ»Ù˜·Ò­Æ†¥»†§Â’±Î—µÑ˜¶Ó›¸Õ–´Ò–°Ò”¬Ñ‹¤É|½v˜¶w—²x“®g‚˜F]qGZmFYnRn…£¾ˆ°Ë‹¯Ë±Ë‘°ÍŒ±ÌµÏ“³Ñ–°Ô“­Ó‘®ÑŽ¯ÏŒ¬Ê‰¨É~¿u•´u—´w›µ~¢º…¦ÂˆªÆ†«Éƒ«Î„«Ï‚©É¥Åw›ºk­`…¢h‹¨m©f„ž\~•s˜°~¡½|º„¡¿¬Ç’³Ì–³Î˜±Ï™²Ð™´Ðœ³ÏžµÒ›µÓš´Ò˜´Ñ˜µÒ–¶Ó—¸Ô˜¶Ó™³Ñ˜°Ð–°Î—®Î˜¬Ì•«Ë’¬Ë«È‹­ËˆªÊ‡ªÉƒ¦Å‚¦Å€¦Ä¥Ç¥É…¤Êƒ¤Ê¡Ç£Å€ ÂžÀz›¼w›¼v™»z™¼IeƒXw™d†ª\€žNq†Lo[zŒh…šm‰£v“°z—·t’°p©x“¯ƒž¹€ž¸u•²n‘²v—»~š¿{š¿q”¶k’®t—³€ À‚¡Á~›¸{–³†ž½ˆ£ÂŒ£ÂˆŸ¾ˆ¡Âާɓ¬ÐªÍŒ©Ê†©ÇƒªÉ„©È‡©ÉªÌŽ¨Ë«É‘¯Ê‘±Î¯ÏŒ©Ç…£¿£¼€¥¾ƒ©Áˆ­ÇŒ«ÌŒªÎ®Ð¯Ï˜´Ñ›µÓ™·Ö”ºÕ”ºÔ–ºÕš·Ö·ÕšµÏ—´Ì—µÎ•µÑ—´Ò˜¶Ô˜¶Ô•²Ñ—°Ó—®Ô’ªÏ„¤Æ~Ÿ¿{Ÿ¹{š¶l‹£OkR`Sh|[p‹HauFcuc—n„ `p‡HZn]qŠl‚ŸyŒ¬r„¨Uk‹D_}VpŽh€œx¬ƒŸºƒ¥¿¢½ƒŸ½†¹}—´y’°y—° ¹†¥¿ªÈ˜¯Í˜¯ÍŽ¨È…¢ÂŸÀ‚¦Ç±Î•µÓ˜µÔ“°ÓŽ¬Ï‹§Èˆ¦Å€¥Ã¤Å€¢Âƒ¥Ä€¥Ã†¤Æ†¡À{˜³h‹¤t™³¬Æ’°É‹¬Ã…¬ÁˆªÃ†¡Àƒ™»y“±y”°|“²}‘±f|šZu|–´‡¢Å‹¨ÉŽªÄŒ­Áˆ­ÄЬɑ«Ë§ËŒ¤Èˆ Å†›Áƒ˜¿ˆžÂŒ¥Ç’¬Ê’¬É‘¯Ë°Ð¯Ó“­Ò–­Ó•¬Ò’¬Ò‹ªÑ‰ªÌƒ¤È€¡É~žÆz¾wœ¸uœ¸v›½yÁ}Á…œÂ‹Æ‹Æ‡ ÆœÁyš¿w˜¿y•¾OpenLP-2.4/resources/images/author_delete.png0000644000175000017500000000153212657640340020363 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEØ $)’>^ÚIDAT8Ë…‘khSwÆÿs’æäÖÆv¶Í"]šjÓu¸:/sóöqjñË Ó*N6®DQDDA¼Ô²¹‚ƒmôƒ(ˆ¨‹F¥¢ëZ4ñ–Ô¬Õ´]¼ô’Øj“œœsöÁE¬R}¾=ï ?ž÷}` ϸ|ü¯Ï›Á}.5C5€4ÀkX¬@àØÿßÀ­@@%vØôN€öÙà€Üþ€e,à·A«[ïÐq@‡ýlÍʹʰþkÐÞ 8fààÔ<øì«—ž·NØ<ß$6Ï“•œï·.ÚÀeƒ°Ì ´w@Õk‰^jÇêêj««ôlEeu™†úKEÓÑ=*tðKÐzl޲×;*Úì†gÁP*ž¯³¼¦ °tÆOs-õ¦²©ôXã³ËTýZÏûäïãs¯}¦­¤?¿ŒD×-w]ªh|¿ýpC`ò_ÌÚ³u•1þO‡ñüa—±mÅìp/˜&ý (ßvKϤÐÓãH鱌¬¾¸á‡?ý —”&×­¬Uå<²ÉÄ7êz}øûê•݉ÁH&;ÜG¬'xº±åzn·ýDäÉè@߯êxœôðÚÚÏßj¡½»èñ„e¤3f8e޽YçÐÓxW2ãa4Lwç5Ç«VÔn4÷íšåžMÓ -s£·)ÿd¡šL$ÎÞ …šÏÃ53j–6:ÇÂ>sþò¿±>Nýþs¦n׉®´4™ê×ÕïübѼ&§ÃBPU乨Q°Ú:­¤V" ½•"Ýu‚Áû÷ˆF󜮢JÃ[uÄävO_ fu$ÀÈEMC‘Ñet§d‰ÍJñ§Ëx–F±ÚJÄ‘–S?|ì÷®²Û”™†ajº!IB¤…àñhr,Ôìê.óù>·XòÊeY8uÝÐÔ¬öddh$ü«óän4µ‡ ñIEND®B`‚OpenLP-2.4/resources/images/slide_previous.png0000644000175000017500000000100012657640340020561 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<}IDATxÚ¥S¿KBQ>Ç{ßÓRÓçz% ¹µÔih2kª)è]ZBˆ–¦ ©¡fAúŠÖ¦¶(CƒÌô)O}×w»èâú¢óq–s¾ó ßAÎ9ü§v1Ìà Šç©­åL¥’©;5¤JŽRAP†mâêQz#}ŸÝÍ*&šCΖÌ#:Ÿœ-s_‰“Z³[¸Ÿê+kš¶îQ<¤Úª‚) S}ºîcJ]Ž”“ñ„ÒÅ.iwÚ`R˜ƒAÉxˆ{±pì:ê‹Ju£Ž Xn úLbГ{SH„|u¼òR+d†,¿ Œ&gÈìäð+v£KƦ{ÍÛpy]̒Ų¼0!sdzøeÿ±…ß«4,?û½ I®‘ñP{IäEþ©“f¢æmĵ0@Ž‚ ”ÚÏÏ Ÿä€ä¥‡EyéôC¯büó/ ræÙëÛûV°>ßöC¿\âÜVC¤(ŸŽóÿ~ç•¡è]“8jIEND®B`‚OpenLP-2.4/resources/images/projector_power_off_tiled.png0000644000175000017500000000157612657640340023005 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEÞ - ôWšŽ IDAT8Ëm“Qh[eÇß÷ÝÜäÞ&Mnl]çC»j× ¶ÈlKq{™X†tîayÛÃ`îŧ)Ì> 2÷ª°'µB â@†(ÊfëHÕumÇlÝÒÐ.Én]šÞäæ&7ׇ6Ú‡ýáp8çÇŸÿá€ÕÁÁ“•……p´ª¹Ó}¥ÄÑÓ§§®]ºT{`€Ýwûû_1®^ýÁó(E[³‰’öáácMߟû{zzúr*uò?H×uééì¤xû6¾R8==IJYœŽÌ ªñ8Âóˆ”Ëfgã­å К ·r«TÖ׉ŒŒp¸»›ÂÄPÍç±, B!¶>d®¿pgxøûØ‘#nFˆ³Z])Š?N!ߣ²¹Iÿñãü5:Šqî¥0½V¨©D}xÕiogi||DzB +æÇÞ¤¼šE*…c© ÔúúHœ:EÅqØ›Nãäótž9CÙó¨Ù65Ò“ uEùþù™[há0A¢Z*Ñ}ð Åë_¡5›†AÍ~L`ÛtŽRÉç·&^BºdîBš@i˜½½hJáÜù åÚT]ݵytã:qËBšæ6`¿'¾seø§BC-*]QœºAyù.v&ƒRŠàþ êÑU_ÀÒÏT² è¦Éü§ãH¥„hä#3<²Â¿šÎ&ø•°Az9Çüg×xöó÷0º’<^Þ þåïD¤âë—ŽâÖÅY­H‰ù'múlÁõbf#اªe#ûá»ô½õ>…” 9Âû“|þ·^î%3(ýSCð}‹ÌHßÜ›„ý'ŽñLú šÉ.ü?aí‹ rJ”d”uÛýßÁni]{*Ê+%x’[Áÿx M6q}ªTˆ ='(¬Öžê`Œx͇ 4vÞ[P€µ+ðí¿yóC»Î<‡»IEND®B`‚OpenLP-2.4/resources/images/OpenLP.ico0000644000175000017500000030253612657640340016672 0ustar raoulraoul hV  ¨¾00 ¨%f@@ (B;€€ (6}(  > Y@FŽ[B†S;»}M7¾wL8™jC0PcW‡h`3Сñ¡[8þ’O.ÿ†I*ÿyA$ÿl9ÿ_1þX0÷kJ=WÄ¢žiüßáÿÿìïÿÿìíÿçÈÀÿÙ‰ÿŽ[Bÿg1ÿ_/ÿT*ÿL'ÿY9*Œz[T(Ê{UÿÄxSþÍ’xÿܱ£ÿîÒÌÿôÛØÿþéèÿíÔÑÿŸzkÿg>*ÿL'ÿ? ÿcD8WîÃÂìýÕÔÿúÕÓÿ÷ÖÒÿóÕÐÿëÍÆÿÛ¹¯ÿɤ—ÿ³ÿ¸•Šÿ¿¡˜ÿÒ¹³ÿ«‘‰ÿH*÷_@2“Š4ùÈÂý÷ÊÃþôÊÃÿðÈÀÿêÆ½ÿåùÿß¾´ÿÙ¹°ÿܾ·ÿáÆÁÿèÐÍÿäÍÉÿçÐÎÿÿóôþζ²P¯jKkÙPÿÓ{NÿÊ}VÿÌŠmÿшÿÚ³¦ÿèÌÄÿûåäÿÿêêÿÿêêÿåÍÉÿÑ·²ÿäÍÊÿáËÈÿeI>™Ñ¡›ýÎËÿÿ××ÿÿßàÿÿåçÿÿïòÿúâàÿÒªœÿ±ƒoÿέ£ÿíÕÒÿÓ·±ÿâÉÅÿ¯“‹ÿ; ÿH+¾Ò¤ ŒþÏÎÿùÉÃÿñÀ´ÿÛ¡‹ÿÃgÿ»gÿã¸ÿÿõ÷ÿíÔÐÿ¼šÿàÆÁÿ¦‡|ÿ>ÿ:ÿL. »²sXaß‘iÿß—rÿ篚ÿúÖÒÿýááÿÿèèÿóÚ×ÿ¶‰uÿëÑÍÿýèçÿ•q`ÿxVDÿnP?ÿZ=/ÿ_C6´€n-÷Á·ýþÔÔþÿÛÜÿÿäæÿíÆ½ÿÆxÿÓ«ÿýèçÿéÎÉÿ“hRÿ|S=ÿrM9ÿgF5ÿ]@1þhL?Fäµ²ßÿÓÓÿøËÃÿÓpÿÉŠlÿüáßÿÿììÿÞ½´ÿŒU9ÿƒQ8ÿwK3ÿkB.ÿ_:(ÿ`A1ñbW bGA׌jüׄZþôÈ¿ÿþßßÿÿèéÿÑ{ÿ–W7ÿ‰P3ÿ}H-ÿqA'ÿe9"þ_8%ÿhI>3¦kRIòÊÉüÿÝÞÿú×ÔþÄhÿŸW2ÿ”S1ÿ‡J+ÿzB%þl9ÿg:#ÿlG7i^@7⽸ßÁsKý°e>ÿ£\7ÿ—T2ÿŠL,ÿ}C&ý|L4ìeF9(ŸgO-–[?a›cHŒ“_E‚Q:kƒXD40ARü?ðàÀ€€€€€€Ààðþ( @ }bX(\MHvN;kqG4oE2„mF5tsRCS‚dY2"xVIŒ£oXõ–W7ûŽO/þˆL-ÿ‚H*ÿ|C'ÿu?$ÿn;!ÿi9üƒYGú~\Nº –kZ’ž^>ø¥`;ÿ›V2ÿ•S0þŽO.ÿˆK+ÿ‚G(ÿ{C&ÿu?#ÿn; ÿh7ÿ_0þ\/ÿh@-ÿsP@¹_B6,hKC'Ѱ«îÿëìÿìÉÁþ¾…kÿ¥dCÿ—T2ÿN-ÿ‰K+ÿƒH)ÿ|D&ÿv@$ÿo; ÿi7ÿb3ÿ\/ÿU*þK" þiD4ÿV8,XoLARôÒÑúÿááÿþââþÿååÿÿééÿûãáÿòÖÒÿ×…ÿŠK+ÿ€C#ÿ}D&ÿwA$ÿp ÿ7ÿ3ÿR3%ˆ_U/üËËüÿÐÐÿÿÓÔÿÿÖØÿò¼¯ÿÜ•vÿÉvLÿÁqHÿ½qKÿ·pKÿÈuÿïÏÈÿýçæÿþééÿÿêêÿþééÿÿêêÿößÝÿ«ƒpÿ–lWÿñÙ×ÿÿêêÿÿííÿvN<ÿQ'ÿK$ÿE! ÿ> ÿ9ÿ4ÿV:.k@ñ²£úçœþã•rÿÝŒbÿÙ‹bÿÕ‹eÿÕ“rÿ⮚ÿïǽÿüÞÝÿÿèêÿÿçèÿþèèÿÿêêÿÿðòÿìÒÌÿ¼”‚ÿ¤xbÿÛ¾·ÿÿîîÿÿîîÿêÒÏÿŽkZÿ}ZHÿuTBÿjJ9ÿ_?/ÿQ1!ÿ@!ÿ3þjODHÄiòâ˜qÿà–pÿãšwÿ备ÿôøÿÿÝÞÿÿÞßÿÿÞÞÿÿááÿþääÿÿææÿþèèÿõÛØÿ¾‘}ÿ¢mRÿœ‹ÿÿëìÿÿêêÿÿëëÿÚ¾·ÿV@ÿZFÿzVDÿtSAÿoP?ÿjL<ÿeI;ÿaH:þaH<û…fZ'Œ`R¡íªÿøÅ¾ÿýÐÍÿÿÖÖÿÿØØÿÿÚÚÿÿÜÜÿÿÞÞÿþááÿÿæçÿóÒÍÿÀŒsÿ¬rTÿ½xÿößÜÿÿëëÿþééÿÿëìÿµÿ†[Dÿ‚XBÿ|T@ÿvP>ÿqM;ÿkJ9ÿfG7ÿaC5ÿY>0ÿ€cWõï¿¿ÿÿÑÑÿþÒÒÿÿÕÕÿÿ××ÿþÙÙÿÿÜÝÿÿâäÿðÉÀÿИ€ÿ±oKÿ¹€cÿá¾³ÿÿîïÿþééÿÿêêÿ÷áßÿ¯…sÿ‡X>ÿ„V?ÿ~S=ÿyO:ÿtL8ÿmH5ÿhD3ÿbA0ÿ]>-ÿ]@2ÿvWKŒÌŸšÀÿÑÑÿþÒÒÿþÔÔÿÿ××ÿþÙØÿøÐËÿ΋kÿ¿wRÿ»xUÿר•ÿÿëìÿþééÿþêêÿÿêêÿøàÞÿ™fLÿY>ÿ‡U<ÿQ9ÿ{N6ÿuJ4ÿoG2ÿjC/ÿd?-ÿ_<*ÿX8'þhI:øT0"AúÊÉÿÿÒÒþÿÙÛÿôÁ¶ÿÛ“sÿË}TÿÃuLÿÓ—}ÿöÔÏÿÿæçÿþææÿþééÿÿðñÿݺ±ÿ˜_BÿW;ÿŠT9ÿ„Q6ÿ~L4ÿxI1ÿrE/ÿlB,ÿf>)ÿ`:&ÿZ6$þQ/ÿ`T‘—mc¡öÀ¶ÿã–tþÕ~QÿÏ|Pÿчcÿí½±ÿÿäæÿþááÿÿããÿÿææÿÿééÿÌ¡ÿ”S1ÿ”W9ÿŽT6ÿˆP3ÿ‚L1ÿ{H.ÿuD+ÿoA)ÿi=&ÿc9#ÿ]5!ÿW2ÿ|[Mí  Ä‚hæÛQÿ×~Pÿë°ÿþÚÚÿÿÝÝÿþßßÿÿááÿþããÿýäãÿ³vXÿž[9ÿ˜X6ÿ’T4ÿ‹P1ÿ…K.ÿG+ÿyC)ÿr@&ÿl<#ÿe8 ÿ_4ÿX/þgB1úaG<&„mãüÌÆÿÿÚÛþþÚÚÿÿÜÜÿþÞÞÿÿâãÿðÌÅÿµqPÿ¤[6ÿžX5ÿ—U2ÿ‘Q/ÿŠL-ÿ„H*ÿ}D'ÿw@$ÿpÿ­b<ÿ¦^8ÿ Y6ÿ™V3ÿ“R0ÿŒM-ÿ†I*ÿE(ÿyA%ÿq< ÿsA'ÿƒ[KÛbG<U5(A¾€À»pKÿ½mCÿ´f=ÿ­b;þ§^9ÿ Z6ÿšV3ÿ”R1ÿM-ÿ…H(ÿD%ÿ†Q7ÿ~R=Ý^Pq‰bT¡­sYò¹tSú¨`:ü¡\8ý›W5ý•S2ü–[=ûŸnX÷Žj[Ä@&?R:3ˆi`/ŠfX9‰fV:ˆh]3yaZ" ÿþÿÿÀÿÿÿþüøðààÀÀ€€€€€€€€€€ÀÀààðøü?þÿ€ÿÿàÿÿÿÿÿ(0` $._E;F3+ #1 1< J? X@ Z> S6 >%!."V@8M2'V<2 \@4W5$S|WFœeSØ–ePÿœjRÿžkTÿžmVÿšiTÿ—hRÿbNÿŠ^Jÿƒ]Kí~[M¹a?1uF)0hOF' K2(rN?:{Q?˜™iTë¦nSÿž^>ÿN,ÿŒL+ÿ‡I)ÿ‚F'þ~C$ÿy@"ÿu= ÿq;þm8ÿh5ÿh7ÿyM8ÿ~VEÿwSDÃ\"ÿo; ÿk9ÿf5ÿ`1þ[,ÿ_4ÿtL:ÿsP@ÓbB5fhI=5!Ÿw€Æ¤ïÒ‰ÿ¹wWÿ¨c@þœU0ÿ™S/ÿ–S0ÿ’Q0ÿŽO.ÿŠL,ÿ…I*ÿG)ÿ}D&ÿxA$ÿt>#ÿpÿb/ÿ],ÿ].ÿZ.ÿV+ÿR(ÿM%ÿI#ÿE þ@ þ< ÿ\=.úoQEtžeK£Í|UÿËtGÿÆqEþÂoDÿ¿nFÿ¼nGÿ¹nHÿ¶nIÿ·sRÿÄŠpÿÓ£‘ÿâ¾´ÿõÜØÿÿîïÿÿïñÿÿîîÿÿìíÿÿëëÿÿêêÿÿêêÿÿêêÿÿêêÿûåäÿ÷àßÿàÅÁÿ­Š}ÿqF2ÿU(ÿR'ÿQ(ÿM&ÿI#ÿE! ÿ@ þ; ÿ: ÿ_@1êrVKH—qhbÑšˆÿäž‚ÿÙpþÏ‚^ÿÅtJÿ¾lAÿºi?ÿµg=ÿ±d<ÿ­b;ÿ©`:ÿ¥^9ÿ¢\8ÿY7ÿ¡bBÿ±zbÿʆÿص«ÿïÕÐÿÿìíÿÿììÿÿëìÿÿëëÿÿêêÿÿêêÿþééÿýèèÿþèèÿݾÿ¢tÿc;'ÿK#ÿI#ÿE!ÿA ÿ= þ7ÿF(ÿ`A5·jJ?jD8)¼“ÐÿÛÜÿÿÙÙþÿÛÛÿÿÜÝÿÿÞßÿûÙ×ÿôÍÆÿ뿵ÿá²£ÿÖ£ÿÊ“|ÿ½ƒgÿ¯pQÿ¢_=ÿ›X5ÿ–T3ÿ‘Q0ÿŒM-ÿ‡I)ÿˆN1ÿœkTÿ³Šyÿ̪ ÿçÌÈÿúäãÿüçæÿýççÿýèèÿÿêêÿÿììÿÿííÿ×½¸ÿ–vjÿX4#ÿD ÿ? ÿ: ÿ1ÿ\=0ÿZ=2f–qioìÁ¾ÿÿØØÿÿ××ÿÿÙÙÿÿÚÚÿþÜÜÿÿÞÞÿÿßàÿÿâãÿÿäåÿÿçèÿÿéêÿÿëìÿÿîðÿÿîðÿúãâÿîÒÍÿáÀ·ÿÓ®¡ÿÄ›‹ÿ³‡uÿ¢r[ÿ[Cÿ~I/ÿvB'ÿxG.ÿŽcOÿ§‚sÿ¢™ÿÞÄ¿ÿòÛÙÿôÝÜÿøâáÿÿêêÿþêéÿÏ·²ÿ‰laÿR3#ÿ>þ7 ÿcD8ÓjMC uQG ¹Ž‡ÖÿÛÛÿþÕÕþÿ××ÿÿØØÿÿÚÚÿÿÛÛÿÿÝÝÿÿÞÞÿÿààÿÿââÿÿããÿÿååÿÿææÿþççÿÿééÿÿêëÿÿììÿÿíîÿÿîïÿÿïðÿÿñòÿÿòôÿÿóõÿÿðñÿößÝÿæÌÇÿÔ·¯ÿÁ –ÿ­‰}ÿ–rcÿ‹eVÿ“pcÿ§ˆ}ÿÁ¦ŸÿÞÆÂÿöàßÿÿêëÿöààÿª¥ÿy_Uþx[Pÿ[@4`% ‚_WTæ¹µÿÿÖ×ÿÿÕÕÿÿ××ÿÿØØÿÿÚÚÿÿÛÛÿÿÜÜÿÿÞÞÿÿààÿÿââÿÿããÿÿäåÿÿæçÿÿèèÿÿêêÿÿëëÿÿëëÿÿëëÿÿëëÿÿëëÿÿëìÿÿëìÿÿììÿÿìíÿÿîïÿÿðñÿÿñòÿÿóôÿÿõ÷ÿÿ÷ùÿÿøúÿÿ÷ùÿÿêêÿëÔÒÿÖ½¹ÿʱ«ÿÕ¼¹ÿâÌÉÿôÞÝÿÿôôþüèèÿ¥ˆ€ÃmUMc?4 unªÿÚÜÿÿÖØþÿØÚÿÿÚÛÿÿÜÝÿÿÝßÿÿßáÿÿáãÿÿãåÿÿäæÿÿäåÿÿååÿÿäåÿþååÿýääÿüäãÿúãâÿùáßÿ÷ßÝÿöÝÛÿôÛÙÿòÙÖÿð×ÔÿîÔÑÿëÑÍÿèÎÉÿåËÆÿâÇÂÿÞþÿÛÀºÿ×¼¶ÿÓ¸±ÿÔº´ÿÚÁ¼ÿáÈÅÿçÐÍÿí×ÕÿóÝÛÿøãâÿýèèÿÿêêÿÿïïÿÙ¾ºÿbJA0pQH½ˆyð÷¼­ÿò·¨ÿñ·§ÿð¶¥ÿí´£ÿ벡ÿ豟ÿæ¯ÿã­šÿ૘ÿݨ•ÿÚ¥‘ÿÖ¢ŽÿÒŸ‹ÿΜ‡ÿÉ—ƒÿÄ“}ÿ¿xÿº‡rÿ´‚lÿ®|eÿ¨v`ÿ¡pYÿlVÿŸp\ÿ¢ubÿ¤ziÿ§oÿª…vÿ­‹}ÿ±„ÿµ–Œÿ»ž•ÿç ÿͲ¬ÿ×¾ºÿàÈÅÿäÍËÿäÎËÿóÞÝÿþééÿÿëëþÿîîÿz[PuT/Y0BІgÿÝ„XÿÛƒWÿÚ‚Uÿ×RÿÒzNÿÌvJÿÇrEÿÂl@ÿ»g;ÿ¶b5ÿ±^2ÿ«Z/ÿ¦V,ÿ¡R(ÿœP&ÿœT,ÿŸ[8ÿ¢cDÿ¦lPÿ«u\ÿ°hÿ¶‰uÿ¼’‚ÿÜÿɦšÿЯ¥ÿ׸°ÿÞ¼ÿæÌÈÿî×Ôÿùãâÿÿñóÿÿøúÿÿ÷ùÿøããÿÚ½ÿÚ¾ÿæÏÌÿôÞÝÿõàßÿøâáÿÿññÿ»¤Ÿÿ}`U¹U>6U2&tF3{߈_ÿ×yHþ×zIÿ×yHÿÔwFÿÏsCÿÊo?ÿÇqCÿÈvMÿÉ}YÿÊ…eÿÍqÿЖ~ÿÔ ‹ÿÙª™ÿÞµ§ÿâ½±ÿåúÿèÉÂÿìÐÊÿñÖÒÿõÝÚÿúäãÿÿëëÿÿðòÿÿðñÿÿïðÿÿïðÿÿñòÿÿôõÿÿøúÿþêêÿܽÿ·˜Žÿ²“ŠÿĨ¡ÿÝÅÁÿëÔÒÿî×ÖÿßÈÅÿéÓÑÿøãâÿ£‹„ÿ@%ÿjK?í%qNF”dT§â‹bÿákÿå˜xÿ顆ÿë©“ÿí² ÿð»­ÿò¸ÿóƽÿôÊÃÿõÏÉÿ÷ÓÏÿùÙÖÿûÞÜÿþããÿÿéêÿÿìíÿÿíîÿÿííÿÿìíÿÿììÿÿëëÿÿêëÿÿêêÿÿììÿÿïðÿÿóõÿÿïðÿèÏËÿâ—ÿ™raÿ”m]ÿ³‘†ÿÔº´ÿáÉÅÿðÙ×ÿÿííÿÝÅÁÿÀ§ ÿëÕÓÿìÕÔÿ‹pgÿ<ÿ( ÿdE9ÿ !bFA¬~vÅþÉÃÿûÉÄÿüËÈÿüÏÌÿýÒÐÿþÖÕÿÿÙÙÿÿÛÜÿÿÝÝÿÿÞÞÿÿààÿÿááÿÿââÿÿãäÿÿååÿÿææÿþççÿÿééÿÿêêÿþééÿÿëëÿÿîîÿÿðòÿÿñóÿñØÕÿÏ®£ÿª€nÿ‡V>ÿ…V?ÿ¨rÿѳ¬ÿçÎËÿòÛÚÿÿêêÿÿóôÿáÉÅÿŸ€uÿɯªÿýççÿàÉÇÿuXLÿ: ÿ2ÿ+þaE8ÿ2>]D@µˆØÿÓÔÿÿÐÑÿÿÒÒÿÿÔÔÿÿÕÕÿÿÖÖÿÿØØÿÿÙÙÿþÛÛÿÿÜÜÿÿÞÞÿÿààÿÿááÿÿããÿÿääÿþååÿÿèèÿÿëìÿÿîïÿÿñóÿöÝÛÿÚ¶«ÿ¹zÿ˜bFÿ…K.ÿ…M2ÿ¤xdÿѰ§ÿðØÕÿøâáÿýèçÿÿììÿÿòóÿèÏÍÿ’n`ÿ¤„xÿñÛÚÿÿêêÿÓ»¶ÿa?0ÿ< ÿ8ÿ5ÿ-ÿ]C8ÿ:SW@< ¹Œ„ßÿÓÓÿÿÐÐÿÿÑÑÿÿÓÓÿÿÕÕÿÿÖÖÿÿ××ÿÿÙÙÿÿÚÚÿÿÜÜÿÿÞÞÿþßßÿÿááÿÿããÿÿåæÿÿèéÿùÞÜÿâ½²ÿÆ–‚ÿ¨lOÿ–V5ÿP/ÿŒN.ÿ§u_ÿÑ®£ÿõÞÜÿýèèÿþéèÿþééÿÿêêÿÿîïÿëÓÐÿ—rcÿYGÿ߯ÂÿþééÿýèèÿÀ¦ŸÿP+ÿ@ ÿ= ÿ9ÿ5ÿ-ÿ\B7ÿ<ZV?; ¸ŠƒÝÿÒÒÿÿÐÐÿÿÑÑÿÿÓÓÿþÔÔÿÿÖÖÿÿ××ÿÿÙÙÿÿÚÚÿþÛÛÿþÜÜÿýÝÜÿûÚ×ÿéÀµÿÓžˆÿºxYÿ§^9ÿ¡Y5ÿžY6ÿšW5ÿ®w]ÿѬžÿøàÞÿÿìíÿÿëëÿÿêêÿÿêêÿþééÿÿêêÿëÓÏÿ¤~oÿrE.ÿ¾ž”ÿÿêêÿÿêêÿøâáÿ©Œ‚ÿG ÿF!ÿC ÿ> ÿ:ÿ6ÿ.ÿ^C8ÿ;XfJE±„}ÑÿÒÒÿÿÐÐÿÿÑÑÿÿÓÓÿÿÕÕÿþÕÕÿýÕÓÿüÓÑÿûÑÎÿð¿´ÿߤÿÊ…eÿ¸iAÿ±b9ÿ®b;ÿ­d?ÿ«eBÿ·{_ÿÔ©šÿöÝÚÿÿîðÿÿííÿÿêêÿþééÿÿêêÿÿêêÿýççÿëÓÎÿ°‰zÿwE,ÿžvdÿòÛÙÿÿíîÿÿêêÿðÚØÿŽk\ÿGÿL%ÿH"ÿD ÿ? ÿ; ÿ7ÿ/þaD9ÿ7JfIB¦zr¹ÿÓÓÿÿÏÐÿýÎÌÿûËÇÿúÈÂÿô½±ÿè©’ÿÛ’qÿÌyNÿÄpDÿÁpEÿÀtLÿÁzWÿÃaÿÈŽsÿÚ¬šÿóÕÏÿÿíïÿÿîðÿÿëëÿÿêêÿþééÿÿêêÿÿëëÿûäãÿíÔÏÿƤ—ÿ™nXÿs_ÿÛ¿¹ÿÿíîÿÿìíÿþééÿçÏÌÿ|UCÿT*ÿU-ÿO)ÿI$ÿD ÿ? ÿ; ÿ8ÿ/ÿgH;ÿ+ 1\;0Œ`U•ýžÿó¶¨þí©’ÿå™xÿ܈^ÿØ‚TÿÖ…ZÿÕ‰aÿÓ‹fÿÔ“rÿל€ÿÚ¤Œÿ湩ÿõÒÍÿÿçéÿÿêìÿÿèéÿÿççÿþééÿþééÿÿêëÿÿìíÿúãâÿëÐÊÿÉ¥˜ÿ¢v`ÿ¥|hÿί¥ÿüçæÿÿïðÿÿìíÿûæåÿÖ¼µÿŠfUÿ}[IÿyVDÿpN<ÿfD2ÿ[:(ÿQ/ÿH'ÿA!ÿ: ÿ/ÿlM?ÿ/c9&aß”tÿÚƒUþÜŠ^ÿÞ‘hÿà–pÿß—qÿÞ™uÿàŸ‚ÿâ¨ÿê·§ÿõÌÄÿÿààÿÿäæÿÿããÿÿâãÿþääÿÿååÿþççÿÿééÿÿîïÿúãâÿéÌÅÿ̦–ÿ¥u\ÿ¤t]ÿßÿîÔÑÿÿðñÿÿëëÿÿîïÿõÞÜÿÃ¥šÿ„^JÿZGÿ}YGÿzXFÿwVEÿtUEÿqTDÿnQBÿfI;ÿ[>0ÿN2#ÿ>"ÿsUHØ>/) ];,+Ä„hÿâ—oÿß”lÿà–pÿå €ÿê«’ÿ﹨ÿöÈ¿ÿÿÙØÿÿÞàÿÿÞßÿÿÞÞÿþßßÿÿááÿÿââÿþääÿÿææÿÿìíÿûãâÿçÇ¿ÿÍ£“ÿ¬w^ÿ¢lQÿ¿–„ÿáļÿÿëìÿÿíîÿÿêêÿÿïïÿëÓÏÿ±€ÿ„[Fÿ€YEÿ~XEÿ{VCÿwSAÿsQ?ÿpP>ÿlM=ÿiK;ÿfI:ÿcH:ÿ_F8þgOCÿsUHœsTGxTI¨s_Ôé ~ÿ몒ÿñ·¨ÿøÅ¼ÿýÒÐÿÿÙÚÿÿÙÚÿÿÙÙÿÿÛÛÿÿÜÜÿÿÞÞÿÿßßÿþààÿÿããÿÿèêÿýâáÿçøÿÍ ÿ³|`ÿ£gHÿºŠtÿÛº¯ÿøàÞÿÿïðÿÿêêÿÿëëÿÿìíÿàĽÿ£|jÿ…ZCÿ‚XCÿWBÿ|T@ÿxR?ÿtP=ÿqM<ÿmL;ÿjI9ÿfG7ÿcE6ÿ_C4ÿX>0þz^SÿN1%S47 Š_S€ô¼³ÿýÌÊþÿÓÔÿÿÔÕÿÿÔÕÿÿÕÕÿþ××ÿÿØØÿÿÚÚÿÿÜÜÿþÝÝÿÿßßÿÿäæÿþááÿèÀµÿÏ›…ÿºbÿ©kIÿ³{_ÿÖ°¢ÿðÖÑÿÿíîÿÿëëÿþééÿÿììÿþééÿÒ³©ÿ™mXÿ†X@ÿ„XAÿ€V@ÿ}T>ÿyQ=ÿvO;ÿrL9ÿnJ8ÿjH6ÿgE5ÿdC3ÿ`A1ÿ\?0ÿT8*ÿ}_RëS=4\U7Ó¤ üÿÔÕÿþÑÑÿþÒÒÿÿÔÔÿÿÕÕÿÿÖÖÿÿØØÿþÙÙÿÿÜÜÿÿàáÿÿàáÿ꿳ÿЗ}ÿÀaÿ´rNÿ°pNÿÍžŠÿíÏÉÿýçæÿÿëìÿÿêêÿÿêêÿÿìíÿúåäÿÞÿ”cKÿˆW>ÿ†W?ÿ‚U>ÿS<ÿ{P:ÿwM9ÿtK7ÿpI5ÿlG3ÿhE2ÿdB1ÿ`@/ÿ]=-ÿW9*þjNAÿhJ=˜_A4 H%¤yq§ÿÑÑÿÿÑÑþÿÒÒÿÿÓÓÿÿÕÕÿþÖÖÿÿØØÿÿÜÝÿÿÞàÿÿÓ”xÿÅ_ÿ¼wSÿµpKÿĉmÿèĺÿúáßÿÿéêÿÿêêÿÿêêÿÿêêÿÿììÿöÞÛÿ²‡sÿ‘]Cÿ‹W=ÿˆW=ÿ„T;ÿ€R:ÿ}P8ÿxM6ÿuJ4ÿqH3ÿmF1ÿiD0ÿfA/ÿb>-ÿ^<+ÿZ:)ÿQ3#ÿvXJýcI>:‘jbIÕ¦¡þÿÔÕÿþÒÒÿþÓÓÿþÕÕÿÿØØÿÿÛÝÿð¿³ÿ×’sÿÊ\ÿÅ{Uÿ¿uOÿÀ{XÿÞ¯žÿùÛÙÿþååÿÿçèÿÿèèÿþééÿþééÿÿëìÿìÑÍÿ¥qYÿ‘[>ÿW=ÿŠV;ÿ†T9ÿ‚Q8ÿ~N7ÿzL4ÿwJ2ÿsG1ÿoE/ÿkB.ÿg@,ÿd=*ÿ_:(ÿ[9'ÿU4#þhI:ÿjK=¢[<0©xœøÉÇÿÿÓÓþÿÔÔÿÿרÿôÀ³ÿÝ“rÿÑYÿÌ~UÿÈ{SÿÅyRÿÓ•zÿõÑËÿÿããÿÿääÿÿååÿþççÿþèèÿþééÿÿììÿß½´ÿœbDÿ•Z<ÿX;ÿŒV:ÿ‰S8ÿ„Q5ÿN4ÿ}K2ÿxI0ÿuG/ÿqD.ÿlB,ÿi>)ÿe<'ÿ`:&ÿ\8$ÿY5#þS1 ÿrQCîuYO<sL@<Èœ–ÞÿÔÕÿõ¾³ÿã–sþ؃WÿÔ€UÿÐ~TÿÌ|TÿÏ…aÿ켯ÿÿâãÿÿááÿþââÿÿããÿþååÿÿææÿÿèèÿÿêêÿΣ’ÿ™Z:ÿ—Z;ÿ”W9ÿU7ÿ‹S6ÿ‡P4ÿƒM2ÿK0ÿ{H/ÿvF-ÿsD+ÿoA)ÿj>'ÿf<%ÿc9$ÿ^6#ÿZ4!þT0ÿpM=ÿlM@•mel̇køÜ„VÿÚ‚TþØTþÔTÿÒYÿã¦ÿþÙÙÿÿßàÿþßßÿþààÿÿááÿþããÿÿååÿÿççÿùßÝÿ¾‰rÿœZ8ÿšZ:ÿ–W8ÿ‘U6ÿS4ÿŠP2ÿ…M0ÿK.ÿ}H-ÿyE+ÿuC(ÿq@'ÿl=%ÿh;$ÿe8"ÿ`6 ÿ\2þW/ÿd?-ÿqOA·`C:!  iT–Ñ‚\þÚRÿÚ…Yþà–vþ÷ÉÂÿÿÞàÿÿÜÜÿþÝÝÿÿÞÞÿÿààÿþááÿÿääÿþääÿîÍÆÿµx[ÿ [7ÿZ8ÿ™X6ÿ•U4ÿR2ÿŒO0ÿˆM/ÿƒJ-ÿ€G+ÿ|E)ÿwB'ÿs?%ÿo=#ÿj:"ÿf8 ÿb5ÿ]2þY/ÿ^6#ÿqN?ØuWK@¥kR©×Šhþñ¶¥ÿÿÙÚþÿÚÛþþÚÚÿÿÛÛÿÿÝÝÿþÞÞÿþààÿÿãäÿýàßÿä¹­ÿ±nLÿ£Z5ÿ¡Z6ÿW4ÿ˜U3ÿ”S1ÿP/ÿ‹M-ÿ‡K+ÿƒH*ÿ~E(ÿzB&ÿu@$ÿq="ÿm: ÿi7ÿe5ÿa2þ\/ÿ_4 ÿrL;áyZOU!µŽˆ©ïÆÅþÿØÙÿÿ××ÿÿÙÙÿÿÛÛÿþÜÜÿÿÞÞÿÿââÿúÙÖÿÚ¦“ÿ±iDÿ¨]6ÿ¥]8ÿ¡[7ÿX5ÿ˜U2ÿ”R1ÿP/ÿ‹M-ÿ‡J+ÿƒH)ÿE'ÿzB%ÿv?#ÿrß{[P]¬„}–ß¶³øÿÛÛÿÿÚÚþþÛÛÿÿÜÜÿÿààÿõÏÊÿÑ•|ÿ³g@ÿ­a9ÿªa;ÿ¦^9ÿ¡[7ÿY5ÿ™V3ÿ”S1ÿP/ÿŒN-ÿˆJ+ÿ„H*ÿE'ÿ{B&ÿw@$ÿr="ÿn: ÿi7þd3ÿsG2ÿvP?ÌxZNP –ogkÈ¡›ÞøÑÐÿÿßàÿÿÝÝþðúÿ͈hÿ·g=ÿ³e=ÿ°d=ÿ«a;ÿ§_9ÿ£\7ÿžY5ÿšV3ÿ–S1ÿ‘Q/ÿN.ÿ‰K,ÿ„H*ÿ€F(ÿ{C&ÿw@$ÿr=!þl8ÿrA'ÿ|P<ÿwSD£lQF3sNC<©…}œÔ­§þî»®ÿÌ}Xÿ»h<þ¸i@ÿ´g?ÿ°d=ÿ¬b;ÿ§_9ÿ£\7ÿŸY6ÿ›V3ÿ—T1ÿ’Q0ÿŽN.ÿŠL,ÿ…I*ÿF)ÿ|B%þv> ÿxB&ÿ…WAÿ{SAÐwUHb:$neI—iW§°qTüÄyTÿ½lBÿ¶g=ÿ°c;þ¬b;þ¨_:ÿ¤]8ÿŸZ5ÿ›W4ÿ—T2ÿ“R0ÿŽN-ÿˆJ)þ„G'ÿC$ÿ‰R7ÿ]Fÿ‚YGÖlI9osUJ)J*tM<7}P<€›hRÓ¬oTÿ½z[ÿµlGÿ«`9ÿ¦\6ÿ¡Z5ÿV3ÿ˜T0ÿ”Q.ÿ“T3ÿeJÿšgPÿbOðzSCªdB3TrUJ C,$rSHT4&,\5#a‚[L•’iY¹•hVÑ–hTÝ”hSß’gSØhXʼngX§iD5{I(C]F=iLA 4`F>bIA[B8J5, I5, P:1YC;s[R[:.ÿÿÿÿÿÿÿÿÀÿÿÿþÿÿøÿÿàÿÿÀÿÿ€ÿÿþ?ü?øøððààÀÀÀÀ€€€€€€€€ÀÀÀÀààððøüü?þÿÿÿ€ÿÿàÿÿðÿÿü?ÿÿÿÿÿÿÿðÿÿÿÿÿÿÿÿ(@€ @'U/|6•9ž9ž6•/|U'(f…g\¨wiÖq_ô˜fNÿšfNÿ›gOÿœhQÿšhPÿ—fOÿ”eNÿ_Iÿ‹^Hÿ‡ZFÿjYô”reÖ‰i^¨- fE/&G`;+¯¡veÿ‘}ÿ›Z9ÿŽK)þ‹K)ÿŠL+ÿˆJ+ÿ„I*ÿF(ÿ}D&ÿzB%ÿw@$ÿt>"ÿq"ÿq=!ÿn:ÿj8ÿg6ÿd4ÿ`1ÿ^1ÿ`5ÿŠfVýzmêj.Z›rdܸ}cÿ¬d?ÿ¡Y4ÿ Z6ÿœW4ÿ™U2ÿ–T1ÿ’Q0ÿP/ÿŒM-ÿ‰K+ÿ†I*ÿ‚G(ÿE'ÿ|C&ÿyA$ÿu>"ÿr=!ÿo; ÿl8ÿh7ÿe4ÿb3ÿ^0ÿ[.ÿU)ÿY/ÿ‚]LÿmaÜ=Z a<,½åýÿ¿~`þ¯iDÿ§^9ÿ£[6ÿ Z6ÿX4ÿšV3ÿ–T2ÿ“R0ÿP/ÿŒN-ÿ‰K+ÿ†J+ÿƒG)ÿE'ÿ|C&ÿyA$ÿu?#ÿr="ÿo; ÿl9ÿh7ÿe5ÿb3ÿ^1ÿ[.ÿX-ÿU*ÿQ(ÿEþ•reÿY4$¼  Wº”ŒôýàßÿÿããþÿååÿúÞÜÿïÏÈÿÈ”}ÿžV1ÿ›T0ÿšV3ÿ—T2ÿ”R0ÿ‘P/ÿN-ÿŠL,ÿ‡J+ÿƒH)ÿ€E'ÿ}D&ÿzA%ÿv?#ÿs>"ÿp; ÿl9ÿi7ÿf5ÿc3ÿ_1ÿ\/ÿY-ÿV+ÿR(ÿO'ÿJ#þZ5#ÿž{oôVS0!ˆÙµ°ÿÿæçþþààþÿââÿÿããÿÿääÿÿææÿÿëíÿÿêëÿá¾³ÿÀxÿ¢dEÿK'ÿN,ÿŽN.ÿŠL,ÿ‡J+ÿ„H)ÿF'ÿ}D'ÿzB%ÿw@#ÿs>"ÿp< ÿm9ÿj8ÿf5ÿc4ÿ`1ÿ\/ÿZ-ÿV+ÿS)ÿO'ÿM%ÿI#þE þŠi\ÿ^>0ˆ]9,œþÝÝÿÿÞÞþÿààÿÿààÿÿââÿÿããÿÿääÿÿååÿÿççÿÿççÿþééÿÿêêÿÿîïÿïÓÎÿ³hÿ’T4ÿŒM.ÿ‡J*ÿ„H)ÿF(ÿ~E'ÿ{B%ÿw@#ÿt>"ÿq þlL>ÿ‡eX¹_=1œ÷ÓÓÿÿÜÝþþÝÝÿÿÞÞÿÿßßÿÿààÿÿááÿÿããÿÿããÿÿååÿÿææÿÿççÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿîïÿÿòóÿÞÀ¸ÿ¬€lÿY@ÿt;ÿs<ÿr=!ÿo:ÿl9ÿh6ÿe5ÿb3ÿ^0ÿ[/ÿX,ÿU*ÿQ(ÿN&ÿK$ÿG"ÿD ÿA ÿ8þiJ<ÿ_?2œV5)ˆáŸ†ÿࡉþñøÿþÜÜÿþÝÝÿþßßÿþààÿÿááÿÿããÿÿããÿþääÿÿææÿÿççÿÿèèÿÿêêÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêëÿôÜÙÿ«€pÿr>"ÿp ÿ9þf[ÿ_?1ˆ WňpÿÊsFþÇrEÿÃnAÿÀnBÿÄwQÿɃbÿÎsÿܨ•ÿìÄ»ÿþâãÿÿíïÿÿëìÿÿèéÿþèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿîïÿüçæÿàÅ¿ÿµ’…ÿwH0ÿ_-ÿa1ÿ`1ÿ\/ÿY-ÿV+ÿS)ÿO'ÿL$ÿI#ÿE! ÿB ÿ? ÿ< ÿ4þ…fZÿV ³€qôÓzLþÌuIÿÉtHÿÆrFÿÃoDÿ¿mDÿ¼kBÿ¹i@ÿ´d<ÿ¯`6ÿ©Z0ÿ²lIÿÅŒsÿÚ®ŸÿêÉÂÿòÕÑÿúâáÿÿíîÿÿííÿÿëìÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿííÿÿóõÿáÆÂÿ›ueÿuJ5ÿ[.ÿW*ÿV+ÿS)ÿP'ÿL%ÿI#ÿF!ÿC ÿ? ÿ< ÿ9ÿ3þ˜wlô _6$½Õ€VÿÎvGþËtGÿÈrFÿÅqEÿÂoEÿ¿nDÿ¼lBÿ¹jAÿµh?ÿ²e>ÿ¯d=ÿ«a;ÿ¨_9ÿ¥]7ÿ¢[7ÿ \8ÿŸ[9ÿ `Aÿ»‰sÿÚµªÿùáàÿÿíîÿÿììÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿüçæÿõßÝÿ¨†zÿW,ÿR'ÿQ(ÿM%ÿJ$ÿG!ÿD ÿ@ ÿ= ÿ:ÿ6þG*ÿX4$¼+ Zê¿»ÿÿÛÝþýÔÓÿùÍÉÿôƽÿï¾²ÿ鵦ÿ㫘ÿÚž†ÿÐtÿÅ€aÿºrMÿ®`8ÿ§Z0ÿ¥Y1ÿ£Y2ÿ X3ÿžW3ÿœW3ÿ™U2ÿ”Q.ÿL*ÿŠH&ÿ’V7ÿ jPÿ®kÿÁ™Šÿع°ÿòÚ×ÿÿóõÿÿñòÿÿîîÿÿêêÿþééÿÿêêÿÿêêÿþééÿÿêêÿÿïïÿÿîîÿÚÀ¼ÿ©‹€ÿiD3ÿAÿD ÿD ÿA ÿ> ÿ: ÿ7ÿ2þ†i^ÿ?Z§}tÜÿÖ×þþÕÕÿÿ××ÿÿØØÿÿÙÙÿÿÛÛÿþÜÜÿÿÝÝÿÿßàÿÿâãÿÿåæÿÿèêÿÿêíÿýàßÿïÌÅÿà·ªÿÑ¡ŽÿÀŠrÿ¯sVÿ§jLÿ¡cEÿ›]=ÿ”U6ÿŽO.ÿˆI)ÿ…G(ÿ€D%ÿ{? ÿu:ÿx@#ÿ˜jUÿ½˜‹ÿáÆÀÿîÕÒÿößÝÿþééÿÿìíÿÿëëÿÿêêÿþééÿþééÿÿëëÿÿòóÿéÒÐÿpeÿY6%ÿD ÿ<ÿ:ÿ7ÿ4ÿ& þ‹kaÜjîÁ¾ÿþÕÕÿÿÕÕÿÿ××ÿÿØØÿÿÙÙÿÿÚÚÿÿÜÜÿÿÜÜÿÿÞÞÿÿÞÞÿÿààÿÿááÿþââÿÿääÿÿååÿÿææÿÿèèÿÿééÿÿêëÿþèèÿüåäÿùâáÿ÷ßÝÿõÜÙÿïÓÏÿÚ¹°ÿÅžÿ®‚oÿ–dMÿ}F*ÿn5ÿl6ÿj4ÿl9ÿo?&ÿrD-ÿŒdRÿ¸˜ÿçÎËÿÿôõÿÿððÿÿííÿÿêêÿÿêêÿÿëëÿúåäÿðÙØÿ¨Ž†ÿC"ÿ2ÿ4ÿ1ÿkMAÿj¤vjêÿÙÚÿÿÕÕÿÿÕÕÿÿÖÖÿÿØØÿÿÙÙÿÿÚÚÿÿÜÜÿÿÜÜÿÿÞÞÿÿÞÞÿÿààÿÿááÿÿââÿÿããÿÿååÿÿååÿÿççÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿììÿÿíîÿÿïðÿÿñóÿÿôõÿÿííÿóÛÙÿäÉÄÿÕ·°ÿÅ¥›ÿ´’†ÿ¢}oÿŽgUÿxO<ÿkB-ÿuO>ÿƒ_Pÿ €uÿ¾¢›ÿÝÅÁÿþèèÿÿòóÿÿôõÿÿ÷øÿÙ¾ÿ™wÿZ>2ÿ+ÿ–sgê@$G÷ÊÉýþÓÓÿÿÔÔÿÿÕÕÿÿÖÖÿÿØØÿÿØØÿÿÚÚÿÿÚÚÿÿÜÜÿÿÝÝÿÿÞÞÿÿßßÿÿááÿÿááÿÿããÿÿääÿÿååÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿéêÿÿëëÿÿìíÿÿîïÿÿððÿÿñòÿÿïïÿèÐÎÿǬ¦ÿ¥‡~ÿ‚aUÿ„eYÿ¥ˆÿÙÁ¾ÿùääÿüççÿÿïïÿòÜÛÿ¾§¢ýE-"GhB4¯ýÐÐÿÿÓÓÿÿÔÔÿÿÕÕÿÿÖÖÿÿØØÿÿØØÿÿÚÚÿÿÛÛÿÿÜÜÿÿÝÝÿÿÞÞÿÿßßÿÿááÿÿááÿÿããÿÿääÿÿååÿÿææÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿÿììÿÿìíÿÿìíÿþééÿöáàÿóÝÝÿøãâÿýèèÿÿêêÿþééÿhH:¯¶†}ÿÿÒÒÿÿÒÒÿÿÔÔÿÿÔÔÿÿÖÖÿÿ××ÿÿØØÿÿÚÚÿÿÛÛÿÿÜÜÿÿÝÝÿÿÞÞÿÿßßÿÿááÿÿââÿÿääÿÿååÿÿççÿÿèèÿÿêëÿÿëìÿÿííÿÿíîÿÿíîÿÿîïÿÿîïÿÿïðÿÿïðÿÿðñÿÿðñÿÿñòÿÿñòÿÿòóÿÿòóÿÿïðÿÿëìÿýèèÿúääÿ÷àßÿóÜÛÿðØÖÿìÔÒÿçÏÌÿâÉÆÿÜÿÿÖ½¸ÿж±ÿʰªÿз²ÿÚÿÿåÎÌÿðÙØÿúååÿÿêêÿÿêêÿÿêêÿ¶•‹ÿfÿÐÐÿþÐÐÿþÑÐÿþÒÑÿþÓÒÿþÔÓÿþÕÔÿýÖÕÿýÖÕÿýØ×ÿýÙ×ÿýÚØÿýÚÙÿüÚØÿùÕÒÿôÑËÿñËÄÿìÆ½ÿçÀ¶ÿ㺮ÿÝ´¦ÿØ®Ÿÿѧ–ÿÌžÿÅ—„ÿ¾{ÿ·†qÿ°~gÿ§t]ÿ lTÿ˜dJÿZ?ÿ†P5ÿ}F*ÿs<ÿo9ÿl7ÿh5ÿf4ÿd4ÿb2ÿ_2ÿ]1ÿh?+ÿƒ_Nÿ tÿ½¡™ÿÛÿÿúæåÿÿííÿÿììÿÿëëÿÿêëÿþééÿþééÿÿêêÿÿêêÿÿëëÿfWM©äfÿÞˆ_ÿ݇^ÿ܆\ÿÛ…ZÿØ‚WÿÔTÿÑ|QÿÍxNÿÉuJÿÅrGÿÁnCÿ½j@ÿ¹g=ÿ¶e;ÿ²c:ÿ¯a8ÿ¬_7ÿ©^7ÿ¥[5ÿ¢Y4ÿŸX2ÿœU1ÿ™T0ÿ•Q/ÿ’P.ÿŽM+ÿŠI'ÿ…E$ÿ€A!ÿ|>ÿw9ÿ‚J-ÿ‘`Iÿ£weÿµ€ÿǦœÿÙ¼¶ÿàÅÀÿçÎÊÿï×Õÿ÷áàÿÿêêÿÿïðÿÿîïÿÿííÿÿììÿÿëëÿÿëëÿÿñòÿÿîïÿÓ»·ÿÜÅÂÿ÷âáÿÿêêÿÿêêÿÿêêÿÿôõÿxVH©ªvfÖÙ|KþÙ~OÿÙ~OÿØ~OÿÙ~OÿÖ|MÿÒyMÿÏxKÿÌvIÿÈsGÿÅqFÿÂoEÿ¿nDÿ»kBÿ¸i@ÿ´f>ÿ±c<ÿ­a9ÿ©]6ÿ¥[3ÿ¢Y3ÿ¤_<ÿ§fFÿªmOÿ­tXÿ±{bÿ¹‰tÿÆœŒÿÔ±¥ÿäÅ¿ÿóÛÙÿÿñòÿÿôöÿÿòóÿÿðñÿÿîîÿÿëìÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿííÿÿððÿôÝÜÿ×¾ºÿÈ®§ÿ¯“‹ÿ¹Ÿ—ÿùããÿÿððÿùäãÿïÚØÿþééÿêÕÓÿB(þˆj_Ö¼{côØ|LÿÙ~OÿÙ~OÿÙ~OÿÙ~Oÿ×|NÿÓzLÿÐxKÿÍvIÿÉsGÿÆrFÿÃoDÿ¿mBÿ¼kAÿ¹i@ÿÀxVÿÊrÿ×¢Žÿ㹬ÿñÐÊÿþääÿþææÿþèèÿþééÿþééÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿëëÿóÜÛÿ²’ˆÿjC1ÿvRBÿÕ»·ÿýèèÿþééÿÿêêÿÿëëÿÆ®©ÿÒ»¶ÿÿêêÿÕ¾ºÿ-ÿ' ÿqTIô'Å{[ÿ×zIÿ×yHÿÖxFÿ×zIÿÜ…Zÿßkÿâ™{ÿ椌ÿê°žÿÿñÁ¶ÿôÉÁÿøÒÎÿüÚÙÿÿäåÿÿåçÿÿåçÿÿåæÿÿæçÿÿææÿþççÿÿççÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿìíÿÿñóÿÿîîÿÚ¾·ÿ«ˆ{ÿƒYFÿi='ÿŽiYÿÈ«¤ÿïØ×ÿÿðñÿÿëìÿÿëëÿÿðñÿ«‡ÿÁ¨¢ÿñÛÙÿÿðñÿŸ…}ÿ4ÿ0ÿ,ÿbC6ÿ'Uß Žÿò³£ÿ÷À¸ÿýÎÌÿÿÙÜÿÿØÛÿÿÙÛÿÿØÚÿÿÙÚÿÿØÙÿþÚÚÿÿÚÚÿÿÜÜÿÿÜÜÿÿÞÞÿÿßßÿÿààÿÿááÿÿããÿÿããÿÿååÿÿååÿÿççÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿììÿÿììÿõÝÛÿèÎÉÿÆ¥šÿ‘ePÿb.ÿm<#ÿ„YEÿƨŸÿÿòóÿÿïðÿÿêêÿÿêêÿÿììÿøââÿƬ¥ÿyXJÿéÒÐÿÿìíÿûååÿqhÿ4ÿ4ÿ0ÿ-ÿ[=1ÿU. |÷ÆÄÿÿÏÏÿÿÑÑÿÿÑÑÿþÓÓÿÿÓÓÿÿÕÕÿÿÖÖÿÿ××ÿÿØØÿÿÚÚÿÿÚÚÿÿÜÜÿÿÜÜÿÿÞÞÿÿßßÿÿààÿÿááÿÿããÿÿããÿÿååÿÿææÿÿççÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿììÿÿðñÿìÒÍÿ¹€ÿ‰T:ÿ~H,ÿv?#ÿn7ÿ•iUÿàÅÀÿùããÿþééÿÿêêÿÿêêÿþééÿÿêêÿÿîîÿ¶˜ÿ\6#ÿÞÆÂÿþééÿÿêêÿÿëëÿZ:+ÿ:ÿ8ÿ5ÿ1ÿ.ÿY>1ÿ0|4•ÿÎÎÿÿÏÏÿÿÏÏÿÿÑÑÿÿÒÒÿÿÓÓÿÿÕÕÿÿÖÖÿÿÖÖÿÿØØÿÿÙÙÿÿÚÚÿÿÜÜÿÿÜÜÿÿÝÝÿÿßßÿÿààÿÿááÿÿããÿÿããÿÿååÿÿææÿÿççÿþèèÿÿêêÿÿíîÿÿñóÿúäâÿß¾´ÿ—†ÿ¨t\ÿŒQ3ÿ}?ÿx;ÿF)ÿ¨|jÿа¦ÿößÝÿÿðñÿÿëëÿþééÿÿêêÿþééÿÿìíÿÿêêÿ²’ˆÿg?*ÿ¦†{ÿûçæÿÿëëÿÿðñÿÕ½¸ÿK(ÿ= ÿ< ÿ8ÿ5ÿ2ÿ/ÿW=2ÿ7•7žÿÒÒÿÿÏÏÿÿÏÏÿÿÑÑÿÿÒÒÿÿÓÓÿÿÔÔÿÿÖÖÿÿÖÖÿÿØØÿÿÙÙÿÿÚÚÿÿÛÛÿÿÜÜÿÿÝÝÿÿßßÿÿßßÿÿááÿþââÿÿããÿÿäåÿÿççÿþååÿøßÜÿòÕÑÿÐ¥•ÿ§lNÿK(ÿM*ÿM,ÿŠK*ÿŽS6ÿ›gMÿÖµ«ÿÿñóÿÿííÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿùãâÿȪ£ÿ]/ÿ}VDÿûææÿÿëìÿÿêêÿÿêêÿ¸œ•ÿ;ÿC ÿ? ÿ< ÿ9ÿ6ÿ2ÿ/ÿW<1ÿ:ž7žÿÒÒÿÿÏÏÿÿÏÏÿÿÐÐÿÿÒÒÿÿÓÓÿÿÔÔÿÿÖÖÿÿÖÖÿÿØØÿÿÙÙÿÿÚÚÿÿÛÛÿÿÝÝÿÿÝÝÿÿßßÿþßßÿÿáâÿÿæçÿÿêìÿêĺÿÉ’zÿ¯nLÿ§c@ÿžY5ÿšV2ÿ˜U2ÿ“P-ÿŒJ&ÿ±~hÿèÊÄÿøàÞÿÿëëÿÿêëÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêëÿÿîïÿ±€ÿk<$ÿg9!ÿáÇÃÿþééÿÿêêÿþééÿÿìíÿ]OÿI"ÿG!ÿD ÿ@ ÿ= ÿ:ÿ6ÿ3ÿ0ÿW=1ÿ:ž4•ÿÎÎÿÿÎÎÿÿÏÏÿÿÐÐÿÿÒÒÿÿÒÒÿÿÔÔÿÿÔÔÿÿÖÖÿÿ××ÿÿÙÙÿþÙÙÿÿÛÜÿÿÞàÿÿâäÿøÓÏÿ鼯ÿÙ¡ŒÿÄ‚cÿ®a9ÿ©\3ÿ¨]6ÿ¦^9ÿ¢Z6ÿœT/ÿ¡_>ÿº†oÿÙ´¨ÿüæåÿÿðñÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿîîÿùâáÿ¼šÿsC*ÿg6ÿ´’†ÿÿïðÿÿëëÿþééÿÿêêÿî×ÕÿwSBÿL#ÿJ$ÿG"ÿD ÿ@ ÿ= ÿ: ÿ7ÿ4ÿ0ÿY=2ÿ7•. |÷ÄÃÿÿÎÎÿÿÏÏÿÿÐÐÿÿÒÒÿÿÒÒÿþÓÓÿÿÕÕÿÿÖ×ÿÿ××ÿþ×ÖÿüÕÓÿöÊÄÿß¡‰ÿÄuMÿ»i>ÿ¹i@ÿ·h@ÿ³f>ÿ°d=ÿ­b;ÿªa;ÿ©b>ÿ´vYÿäÀ¶ÿÿîïÿÿëëÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿýççÿÅ¢—ÿo9ÿp; ÿaLÿþèèÿÿêêÿÿêêÿþééÿÿêêÿéÑÏÿ[0ÿR(ÿO'ÿK$ÿH"ÿE ÿA ÿ> ÿ; ÿ8ÿ4ÿ1ÿ[?2ÿ0|U븵ÿÿÎÎÿÿÎÎÿÿÐÐÿÿÑÑÿÿÔÕÿÿØÚÿÿÕÖÿð·¨ÿà—xÿÕ…_ÿÍyOÿÆpBÿÃmAÿÁmBÿÀrJÿ¿vOÿ¿xTÿ½yVÿºyVÿÒŸ‰ÿíÉÁÿøÜÙÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿÿêéÿá”ÿžu`ÿaIÿ™p\ÿãÈÃÿÿììÿÿêêÿþééÿþééÿÿðñÿ»œ’ÿX+ÿS(ÿQ'ÿN&ÿK%ÿI"ÿE!ÿB ÿ> ÿ< ÿ8ÿ5ÿ2ÿ`A4ÿU'Û©¤ÿÿÐÑÿÿÐÑÿúÅ¿ÿó¸ªÿꤋÿß‹dÿÖxGÿÕ|NÿÔUÿÓ„[ÿÒˆaÿÑ‹gÿÑŽlÿБpÿÌmÿÏ”wÿØ¥ÿêÁ¶ÿÿãäÿÿçèÿÿååÿþååÿÿççÿÿççÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿößÝÿѰ¥ÿžr[ÿ˜kTÿžt`ÿË« ÿÿïðÿÿêêÿÿêêÿÿêêÿÿêêÿÿêéÿ´—Œÿ|YFÿ~\JÿuQ@ÿkH5ÿa<*ÿX3 ÿP+ÿG#ÿA ÿ> ÿ< ÿ9ÿ5ÿ1ÿjJ=ÿ'Æ’†ôæ™zÿÙPÿØ}NÿÙQÿ܉_ÿà”mÿášuÿߘsÿÜ–sÿÙ”qÿדpÿÔ‘oÿÒnÿÚŸ„ÿòÊÂÿÿßßÿÿààÿþááÿÿââÿÿããÿÿååÿÿååÿÿççÿÿççÿÿééÿÿêêÿÿééÿÿêêÿþééÿÿëëÿ̧šÿ nVÿžoWÿ›mTÿ´Œ|ÿüææÿÿêêÿþééÿÿêêÿþééÿÿêêÿúåäÿ’n]ÿ]Kÿ€\Jÿ}ZHÿ{ZGÿxWGÿuUEÿsTDÿpSDÿnRCÿfH9ÿS5%ÿ@ ÿ:ÿ6ÿ.ÿyZOôªucÖ܆Yþß‘iÿà•oÿá˜sÿá™sÿá˜sÿá˜rÿß–qÿÚ’mÿØ‘kÿå«•ÿôǽÿûÕÒÿÿÞßÿÿÞÞÿÿÞÞÿÿààÿÿááÿÿááÿÿããÿÿääÿÿååÿÿççÿÿççÿÿèèÿþêéÿÿìíÿûäãÿÉ¡ÿªx_ÿ¡nTÿlRÿ®ƒoÿëÐËÿÿíîÿÿêêÿÿêêÿÿêêÿþééÿÿììÿãÊÅÿŽgUÿ‚\Hÿ€[Hÿ~YGÿ{XEÿxUDÿvUCÿsSBÿqQAÿnP@ÿkN?ÿiM>ÿgK=ÿfK=ÿ^D6ÿU;-ÿ@%þodÖ~UK©çœwÿß•oÿß•oÿß•oÿß•nÿß“mÿâšwÿ椈ÿò¿²ÿÿÚÜÿÿÚÜÿþÚÚÿþÚÚÿÿÜÜÿÿÝÝÿÿÞÞÿÿßßÿÿááÿÿááÿÿããÿÿääÿÿååÿþææÿÿèèÿÿììÿöÝÚÿÔ® ÿ§pUÿ¥qUÿ¢oSÿ§v]ÿÑ­¡ÿÿîîÿþééÿÿêêÿÿêêÿÿêêÿþééÿÿììÿÕ¸°ÿ„ZDÿ„\GÿZFÿXEÿ|WDÿzUCÿwTAÿtQ@ÿrP?ÿoO>ÿmM=ÿiK;ÿgI;ÿeH:ÿaF8ÿ_D6ÿ\C6ÿeNBÿŒj]©"fÿß“lÿß“lÿß“kÿ褈ÿøÆ¾ÿþÒÒÿþÔÔÿÿÖÖÿÿ××ÿþØØÿÿÚÚÿÿÚÚÿÿÛÛÿÿÝÝÿÿÝÝÿÿßßÿÿááÿÿááÿÿããÿÿääÿþääÿÿææÿÿèèÿʉÿ®uXÿ«sVÿ¨qUÿ¤nRÿÅ›‰ÿýèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿììÿ³ÿˆ]Fÿ…[FÿƒZEÿXCÿ}VBÿzTAÿwS@ÿuQ>ÿrO=ÿpN=ÿmK;ÿjJ9ÿhI9ÿdG8ÿbE6ÿ_C5ÿ]B4ÿY@2ÿœƒ|ÿ.f°yhÿë©‘ÿõ½±ÿüÌÉÿÿÔÕÿÿÒÓÿþÔÔÿÿÔÔÿÿÖÖÿÿ××ÿÿØØÿÿÙÙÿÿÚÚÿÿÛÛÿÿÝÝÿÿÝÝÿÿßßÿÿààÿÿááÿþââÿÿçèÿöÙÕÿÑ¡ÿ³wYÿ®rSÿ­sUÿ§mNÿº‰rÿìÐÉÿÿííÿþééÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿøâàÿ¤{iÿ†Y@ÿ‡[DÿƒXBÿWAÿ~U@ÿ{T?ÿxQ=ÿvP<ÿsO;ÿpL:ÿmK9ÿkJ8ÿhH6ÿfF6ÿcE5ÿ`B3ÿ]@1ÿZ?1ÿY>1ÿ’pdÿhA4¯þÍÎÿþÎÎÿÿÐÐÿÿÐÐÿÿÒÒÿÿÓÓÿÿÔÔÿÿÖÖÿÿ××ÿÿ××ÿÿÙÙÿÿÚÚÿÿÛÛÿÿÝÝÿÿÝÝÿþÞÞÿÿààÿÿããÿøØÔÿا”ÿµtQÿ´vUÿ²tTÿ®qQÿ±x\ÿÛ·ªÿÿïñÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿíÔÐÿaIÿŠ[Cÿ‡ZBÿ…XAÿ‚V?ÿU?ÿ|S=ÿzP<ÿwO;ÿtM9ÿrL8ÿnJ7ÿlH5ÿiF4ÿgD3ÿcC2ÿa@0ÿ^?/ÿ[>.ÿX;.ÿ]A3ÿ[;,¯@$G÷ÆÅýþÎÎÿÿÐÐÿÿÐÐÿÿÒÒÿÿÓÓÿÿÔÔÿÿÕÕÿÿ××ÿÿ××ÿÿÙÙÿÿÙÙÿÿÛÛÿÿÜÜÿþÝÝÿÿààÿýÝÝÿÏ•|ÿ¾{Zÿ¹wUÿ¶vTÿ´tSÿ®oOÿѤ’ÿüæåÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿîïÿÕ´ªÿ^DÿŒZAÿ‰Z@ÿ†W?ÿƒV?ÿT=ÿ~R;ÿ{P:ÿxN9ÿuL8ÿrK7ÿoI5ÿmG4ÿjF3ÿgD2ÿdA1ÿa@/ÿ_?.ÿ[=,ÿY;,ÿS6'ÿ„i_ýJ2'G¤shêÿÔÕÿÿÐÐÿÿÐÐÿÿÒÒÿÿÓÓÿÿÔÔÿÿÕÕÿÿ××ÿÿ××ÿÿÙÙÿÿÙÙÿÿÛÛÿÿßàÿõÎÈÿÚ¡ŠÿÀxTÿ¾xSÿ»xUÿ¸vSÿ²mJÿÅtÿïÏÈÿÿìíÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿíîÿ¿–†ÿW;ÿŽ[@ÿŠY?ÿˆW>ÿ…U=ÿ‚S;ÿR:ÿ|O8ÿyN8ÿvL7ÿsJ5ÿqH3ÿnF2ÿkE1ÿhB0ÿeA/ÿb?-ÿ_>+ÿ]<*ÿY9)ÿW8)ÿZ=/ÿœznêjÿþÏÏÿÿÐÐÿÿÑÑÿÿÓÓÿÿÓÓÿÿÕÕÿÿÕÕÿþ××ÿÿÙÙÿÿÚÚÿúÓÐÿÜŸ…ÿÅ{SÿÃ{VÿÁyTÿ¾xSÿºuQÿ½zZÿæ¾²ÿÿêëÿÿææÿÿççÿÿééÿÿééÿÿêêÿÿêêÿþééÿÿêêÿùâàÿ¦t]ÿ[>ÿZ?ÿŒY>ÿ‰V<ÿ†T:ÿƒR9ÿ€Q8ÿ~O7ÿzM6ÿwK4ÿuI2ÿqH2ÿoF0ÿlD0ÿiB.ÿf@-ÿc?,ÿa=*ÿ^:)ÿZ9(ÿX7'ÿT5%ÿ„fYÿj§zqÜÿÐÑþþÐÐÿÿÑÑÿÿÓÓÿÿÓÓÿÿÕÕÿÿÖÖÿÿÚÛÿûÐÍÿÙ•vÿÍ[ÿÉ}VÿÇ{UÿÄzSÿÀwRÿºpHÿÛ¨•ÿûÜÛÿÿäåÿþååÿÿååÿÿççÿÿèèÿÿééÿÿêêÿþééÿÿêêÿëÐÊÿeJÿ“Z=ÿ‘Z=ÿŽX<ÿ‹V:ÿˆT:ÿ…R8ÿ‚P7ÿO6ÿ|M4ÿzK2ÿvI1ÿsG0ÿpE/ÿnD.ÿjA,ÿg@+ÿe=*ÿa;(ÿ^9'ÿ[8&ÿY6$ÿU4#ÿJ)þŽodÜ+ Zê¹µÿÿÑÑþÿÑÑÿþÓÓÿÿÓÓÿÿ×Ùÿ÷ƽÿ䡆ÿÐ}QÿÏUÿÌ~UÿÉ|SÿÆzRÿÁtLÿÑ‘uÿõÐËÿÿåæÿþããÿÿããÿÿååÿÿååÿÿççÿÿèèÿÿééÿþééÿÿìíÿÛ·¬ÿ™\>ÿ–\=ÿ“Y<ÿX;ÿU:ÿŠT8ÿ‡R6ÿƒP5ÿN4ÿ~L2ÿzJ1ÿxI0ÿuF/ÿqE.ÿnB,ÿk@+ÿi>)ÿe='ÿb;'ÿ_9%ÿ]7$ÿY5#ÿV3!ÿS1þ~sÿ; Za8)¼ýÎÍÿÿÑÑþþÑÑÿüÎÊÿä™xÿׂWÿÕ‚WÿÒ€UÿÏTÿË|SÿÈzRÿÇySÿí¿´ÿÿàáÿþßßÿÿááÿÿââÿÿããÿÿååÿÿååÿÿææÿþèèÿÿèèÿÿììÿÉ‹ÿš[;ÿ˜[<ÿ•X:ÿ’X9ÿU7ÿ‹S6ÿˆR5ÿ†O4ÿƒO3ÿL2ÿ|J0ÿyH.ÿvF-ÿsD,ÿpC+ÿmA)ÿi>'ÿg=&ÿd:%ÿa8$ÿ^6#ÿ[4!ÿX4ÿT1þcA0ÿY5%»º‹‚ôüÇ¿þã•rÿÛ„WÿÚƒVÿÙƒVÿÕ€UÿÒ~TÿÏ|RÿÉvKÿ嬙ÿüØÖÿÿÞßÿþßßÿÿßßÿÿááÿÿââÿÿããÿÿääÿÿååÿÿææÿÿèéÿÿéêÿ³{aÿšZ8ÿš[;ÿ—Y9ÿ”X8ÿU6ÿŽS5ÿŠR4ÿ‡O2ÿ„N1ÿK/ÿ~I-ÿzG-ÿxE+ÿuD*ÿqB)ÿn?'ÿk>&ÿh<%ÿe9$ÿb8"ÿ_6 ÿ[4ÿY2ÿV0ÿS.þ €tô  VȆlÿÙ€RþÙ‚UÿÙ‚UÿØTÿÕRÿÑ{OÿÛ’qÿùÎÉÿÿÝÞÿþÜÜÿÿÝÝÿÿÞÞÿÿßßÿÿááÿÿââÿÿããÿÿääÿþææÿÿéêÿïÏÉÿ¦eCÿŸ\9ÿœ[9ÿ™Y8ÿ–W6ÿ’U5ÿS3ÿŒQ3ÿ‰O1ÿ†M/ÿƒK.ÿ€I-ÿ}G,ÿzE+ÿvC)ÿsA'ÿp?&ÿm=%ÿi;#ÿg9"ÿc7 ÿ`5ÿ]3ÿZ1ÿW0ÿO)þ“rdÿUU4(ˆçÿÙ€PþÚRÿØQÿÖ€Tÿõ·ÿþØØÿÿÙÙÿþÛÛÿÿÛÛÿÿÝÝÿÿÞÞÿÿßßÿÿààÿÿââÿÿââÿþääÿÿååÿÞ¶¨ÿ£\7ÿ¢]:ÿž[9ÿ›Y7ÿ˜W6ÿ–U4ÿ’R2ÿQ2ÿŒO0ÿˆM.ÿ…K-ÿ‚I+ÿG+ÿ{E)ÿxC'ÿuA&ÿq?$ÿn="ÿk;"ÿh9 ÿd6ÿb5ÿ_2ÿ\1ÿX.ÿS*þ•thÿ]=/ˆ]9,œÛŽkÿ×|Lþí¯šÿýÓÒÿÿØØÿþÙÙÿÿÙÙÿÿÛÛÿÿÛÛÿÿÝÝÿÿÞÞÿÿßßÿÿààÿÿââÿþââÿÿææÿË”}ÿ§^8ÿ¤]9ÿ¡[7ÿžY5ÿšW4ÿ—U3ÿ”S1ÿ‘Q0ÿO.ÿŠL-ÿ‡K+ÿƒH+ÿ€F)ÿ}D'ÿzB%ÿwA%ÿs>#ÿp<"ÿm; ÿj9ÿg6ÿd5ÿ`2ÿ]0ÿZ.ÿR'þ}XHÿ`@2œxPD¹òÀºÿÿÖÖþþÕÕÿÿ××ÿÿ××ÿÿÙÙÿÿÚÚÿÿÛÛÿÿÝÝÿÿÞÞÿÿÞÞÿþààÿÿââÿûÛÙÿÄ…iÿª`9ÿ¨_9ÿ¤]7ÿ¡[7ÿžY5ÿšV3ÿ—U2ÿ”R0ÿ‘P/ÿN.ÿŠL,ÿ‡J*ÿ„H)ÿ€F(ÿ}D'ÿzB%ÿv?#ÿt>"ÿq< ÿm9ÿj8ÿg5ÿc3ÿ`1ÿ]/ÿX+þYGÿƒaU¹]8+œþÔÔÿÿÕÕþÿ××ÿÿ××ÿÿÙÙÿÿÚÚÿÿÛÛÿÿÜÜÿÿÞÞÿÿÞÞÿÿááÿø×Óÿ¸oIÿ¯c<ÿ¬b;ÿ¨_9ÿ¥]8ÿ¢[7ÿžY5ÿ›W3ÿ˜U2ÿ•S1ÿ‘P/ÿŽO.ÿ‹M,ÿ‡J*ÿ„H*ÿF(ÿ~E'ÿzB%ÿw@#ÿt>"ÿpÿ°d=ÿ­b<ÿ©`:ÿ¦^8ÿ£\7ÿŸZ6ÿœW4ÿ™V3ÿ–S1ÿ’Q/ÿO.ÿŒM-ÿ‰L+ÿ…I*ÿ‚G(ÿE'ÿ{C&ÿxA$ÿu?#ÿr=!ÿn:ÿk9ÿg6þsE/ÿ£€tôUa:+¼êÁ¾ÿÿÛÜþþÚÚÿþÚÚÿË^ÿ¾lBÿ»kAÿ·h?ÿ´g?ÿ±d=ÿ­c<ÿª`:ÿ§^8ÿ¤]7ÿ Z6ÿX4ÿšV3ÿ—T1ÿ“Q0ÿP/ÿN-ÿ‰K+ÿ†J*ÿƒG(ÿ€F(ÿ|C&ÿyA$ÿv@#ÿr=!ÿo; ÿe0þ¨rÿZ5%» + Z§€wÜíÆÂÿу^ÿÀmAÿ¾mCÿ»kBÿ·iAÿ´g?ÿ±e=ÿ®b;ÿªa:ÿ§_9ÿ¤]8ÿ¡Z6ÿžX4ÿšV3ÿ—T2ÿ”R0ÿP/ÿN-ÿŠL+ÿ‡J+ÿƒH)ÿ€F(ÿ}D&ÿzA$ÿt= ÿyE*ÿ—kXÿ“qdÜ9 Zj¡ugêÏ‹nýÁqIÿ¼lCÿ¸i@ÿµg?ÿ²e=ÿ¯d=ÿ«a;ÿ¨_9ÿ¥]8ÿ¡[6ÿžX5ÿ›W4ÿ˜U2ÿ”R0ÿ‘Q/ÿŽN-ÿŠL-ÿ‡J+ÿ„H)ÿ€E'ÿ~E'ÿI-ÿq\ýž{oêjD,#Gb:)¯§vcÿÕ˜ÿ¼oHÿ°b9þ®a9ÿ¬a:ÿ©_9ÿ¦]8ÿ¢[7ÿŸY5ÿœW4ÿ˜U2ÿ•S0ÿ’Q/ÿŽN-ÿ‰I(ÿ„E$þŽU7ÿµŠxÿ›scÿ^<,¯H1(G&f‚`V¨¢xhÖªv`ô«pUÿ°rUÿ´wZÿ¶x[ÿµx[ÿ²wZÿ®sWÿ¨pUÿ¢kRÿkTÿr_ôœxkÖ‡i^¨*f'U/ |6•9ž9ž6•/ |U'ÿÿÿÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿÿÿÿøÿÿÿÿàÿÿÿÿ€ÿÿÿþÿÿü?ÿÿðÿÿàÿÿÀÿÿ€ÿÿÿÿÿþü?ü?øøððàààÀÀÀÀÀÀ€€€€ÀÀÀÀÀÀàààððøøü?ü?þÿÿÿÿÿ€ÿÿÀÿÿàÿÿðÿÿü?ÿÿþÿÿÿ€ÿÿÿÿàÿÿÿÿøÿÿÿÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿÿÿÿ(€  "&)++)&"  -F` z: P,Á[5$×c;)êk@.úpD0ÿsF2ÿuH4ÿuH4ÿsF2ÿpD0ÿl@.úd;)ê\5$×P,Á: z`F-  *P- žAâi;'öžzmùѵ¯ýîÖÓÿÞÀ¹ÿΩžÿ»’ÿ©ydÿkTÿ–cKÿŽZAÿˆQ7ÿ†Q7ÿ‹X@ÿ‘aJÿ—iTÿq]ÿ±‹|ÿȧÿÞþÿòÚÙÿÒ¶°ýŸzmùi;'öAâ- žP*  Q'”K#Æ…bTí­‰}ÿ½•ˆÿÊ ‘ÿÁ“þ«v^ÿ•Z=ÿƒD#ÿ‚C"ÿD#ÿD%ÿ€E%ÿE&ÿ~D&ÿ}D&ÿ|C&ÿzB%ÿxA$ÿv?"ÿt> ÿq;ÿn9ÿk6ÿh2ÿf1ÿvF-ÿ‘fSÿ­ˆzþ»šŽÿ±€ÿ­‰}ÿ‡bTíK#Æ'”Q  =! |S)àˆ]Kÿغ³ÿæÄ»þ´}dÿM*ÿŽL*ÿN-ÿO.ÿŒM-ÿŒM-ÿ‰L+ÿˆJ+ÿ†J+ÿ…H)ÿƒG(ÿ‚G(ÿ€E(ÿ~D&ÿ}D&ÿ{B%ÿzB%ÿw@#ÿv?#ÿu?#ÿs="ÿq< ÿp; ÿn: ÿl:ÿk8ÿi7ÿf4ÿb0ÿ`/ÿ“l[ÿÛÀ»þÓ¶°ÿ‡\JÿT)à! | = #s; ÔfWõÝ¿ºÿÀzÿ¨iJþœZ9ÿ–R/ÿ•S0ÿ”R0ÿ’Q/ÿ‘O/ÿO.ÿN-ÿŒM-ÿŠL,ÿˆJ+ÿ‡J+ÿ…I)ÿƒG(ÿ‚G(ÿ€E'ÿ~D&ÿ}D&ÿ{B%ÿzB%ÿxA$ÿv?#ÿu?#ÿs="ÿq< ÿp.à°Š}ÿÙ°£ÿ‹sþ™R-ÿšT0ÿšV4ÿ™V3ÿ—T1ÿ•S1ÿ”R1ÿ’Q/ÿ‘Q/ÿO.ÿN-ÿŒM-ÿŠL,ÿˆK+ÿ‡J+ÿ…I*ÿƒG)ÿ‚G)ÿ€F'ÿ~D&ÿ}D&ÿ{B&ÿzB%ÿxA$ÿv?#ÿu?#ÿs="ÿq"ÿr"ÿr"ÿr="ÿq#ÿr=!ÿq=!ÿo; ÿm:ÿl9ÿj8ÿh7ÿg6ÿe5ÿd4ÿb3ÿ`1ÿ_1ÿ^0ÿ[.ÿZ.ÿY,ÿV+ÿV+ÿS)ÿS)ÿP(ÿO&ÿJ# ÿʯ©þfVÿ6±1 #}nB/îܺµÿÿåæÿÿââÿôÒÎÿâ·ªÿÁƒgÿ£W/ÿ¥[4ÿ¥]8ÿ¤]8ÿ¢\6ÿ¡Z6ÿŸZ6ÿX5ÿ›W3ÿšV3ÿ™U3ÿ—T1ÿ•S1ÿ”R0ÿ’Q0ÿ‘P/ÿO.ÿM.ÿŒM-ÿŠL+ÿˆK+ÿ‡J+ÿ…H)ÿ„H)ÿ‚F(ÿ€E'ÿE'ÿ}C&ÿ|C&ÿzA%ÿx@#ÿv@#ÿu?#ÿs=!ÿr=!ÿp; ÿn:ÿm:ÿk8ÿj7ÿh6ÿf5ÿe5ÿc3ÿa2ÿ`1ÿ^0ÿ\.ÿ[.ÿY-ÿW+ÿV+ÿT)ÿS)ÿQ(ÿO&ÿN&ÿG ÿyWIÿͯ¨ÿsI6î!{,4¤–k[ÿÿééþþááÿþááÿÿããÿþããÿÿääÿÿêëÿþäãÿר—ÿ·xYÿ©c@ÿ¡X3ÿ¡Z5ÿ Z6ÿžY4ÿœW4ÿ›W4ÿ™U2ÿ—T1ÿ–T1ÿ”R1ÿ“R0ÿ‘P/ÿO.ÿŽO.ÿŒM,ÿŠL,ÿ‰K,ÿ‡J*ÿ…I)ÿ„H)ÿ‚G)ÿ€E'ÿE'ÿ}D&ÿ|C&ÿzB%ÿx@$ÿw@$ÿu?#ÿs=!ÿr=!ÿp;!ÿn:ÿm:ÿk8ÿi7ÿh7ÿf5ÿe5ÿc3ÿa2ÿ`1ÿ^0ÿ\/ÿ[.ÿY-ÿW,ÿV+ÿT*ÿS(ÿQ(ÿO'ÿN&ÿL%ÿJ#ÿ>ÿ¹ž—þ—o_ÿ4£+ ?Gáܸ³ÿÿààÿÿààÿÿââÿÿááÿÿããÿÿããÿÿääÿþääÿÿååÿÿåæÿþååÿüãâÿä¾´ÿ²sUÿžW2ÿžX4ÿœW4ÿ›W4ÿ™U2ÿ—T1ÿ–T2ÿ”R0ÿ“R0ÿ‘Q/ÿO.ÿŽO-ÿŒM-ÿŠL,ÿ‰L,ÿ‡J*ÿ…I)ÿ„H*ÿ‚G(ÿ€F'ÿE'ÿ}D&ÿ|B%ÿzB%ÿxA$ÿw@$ÿu?#ÿs=!ÿr="ÿp< ÿn:ÿm:ÿk8ÿi7ÿh7ÿf5ÿe5ÿc4ÿa2ÿ`2ÿ^0ÿ\/ÿ[/ÿY-ÿW,ÿV+ÿT*ÿR)ÿQ(ÿO'ÿN&ÿL%ÿK$ÿI#ÿG"ÿa>.ÿÖºµÿGà? wzN=öïÍÊÿÿââþþßßÿÿááÿÿááÿÿââÿÿââÿÿããÿÿããÿÿääÿÿääÿÿååÿÿååÿþææÿÿèéÿÿíîÿõÙÕÿܵ¨ÿº„lÿ˜S/ÿ–Q,ÿ—T2ÿ–T2ÿ”R0ÿ’R0ÿ‘Q/ÿO.ÿŽO.ÿŒN-ÿ‹L,ÿ‰L,ÿˆJ+ÿ…I*ÿ„I*ÿ‚G(ÿF'ÿE'ÿ~D'ÿ|D&ÿzB%ÿyA$ÿw@$ÿv?#ÿt>"ÿr="ÿq< ÿo:ÿm:ÿl9ÿj7ÿi7ÿg5ÿf5ÿc4ÿb2ÿ`2ÿ_1ÿ]/ÿ\/ÿZ-ÿX,ÿW,ÿU*ÿT*ÿR(ÿP'ÿN&ÿM%ÿK$ÿJ#ÿH"ÿE ÿU2!þ¸›“ÿVEöw* ’–hXÿÿäåÿþÞÞÿÿààÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿããÿÿååÿÿååÿÿååÿÿææÿÿææÿÿèèÿÿççÿÿééÿÿíîÿÿîðÿد¢ÿªnQÿ\<ÿ”P.ÿ“Q/ÿ’Q0ÿO.ÿO.ÿN-ÿ‹L,ÿŠL,ÿˆJ+ÿ†I*ÿ…I*ÿƒH(ÿF(ÿ€F(ÿ~D&ÿ}D&ÿ{B%ÿyA$ÿxA$ÿv?#ÿt>"ÿs="ÿq"ÿs>!ÿq#ÿs>"ÿr=!ÿo; ÿn; ÿl9ÿk8ÿi8ÿh6ÿf6ÿd4ÿc3ÿa2ÿ`1ÿ^0ÿ\/ÿ[.ÿY,ÿW,ÿV+ÿT*ÿR)ÿQ'ÿO'ÿM&ÿL$ÿJ$ÿI"ÿG!ÿF!ÿD ÿC ÿ;ÿlM@þ¸–Œÿ>¸$.EÒÊ¢šÿÿÜÜÿþÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿààÿÿààÿÿààÿÿááÿÿááÿÿããÿÿââÿÿääÿÿääÿÿääÿÿææÿÿååÿÿççÿÿççÿÿèèÿÿèèÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿììÿÿðòÿÛ¸®ÿŸhMÿŽR4ÿ‡J*ÿ…H)ÿ„H)ÿƒG(ÿF'ÿE'ÿ~D'ÿ|C&ÿzB$ÿyA$ÿw@$ÿu>"ÿt>"ÿr=!ÿp;!ÿo; ÿm9ÿk8ÿj8ÿh6ÿg6ÿe5ÿc3ÿb3ÿ`1ÿ^0ÿ]/ÿ[.ÿY.ÿX,ÿV+ÿU*ÿS)ÿQ(ÿP'ÿN&ÿL%ÿK$ÿI#ÿG!ÿF!ÿD ÿB ÿA ÿ> ÿI(ÿÁ¢™ÿEÒ.$EÒݶ±ÿÿÞßþþÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿããÿÿââÿÿääÿÿããÿÿååÿÿååÿÿååÿÿææÿÿççÿÿèèÿÿèèÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿééÿÿëëÿÿìíÿöÞÜÿåÈÁÿ®jÿA!ÿC$ÿF(ÿE'ÿ~D'ÿ|C%ÿzB%ÿyA$ÿw@$ÿu?"ÿt>"ÿr=!ÿp; ÿo; ÿm9ÿk8ÿj8ÿh6ÿg6ÿe4ÿc3ÿb3ÿ`1ÿ^0ÿ]0ÿ[.ÿY-ÿX,ÿV+ÿU+ÿS)ÿQ(ÿP&ÿN&ÿL%ÿK$ÿI#ÿG!ÿF!ÿD ÿB ÿA ÿ? ÿ= ÿS4%þÜÁ»ÿEÒ$=¸Ê ˜ÿÿÝÞþÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿááÿÿááÿÿããÿÿââÿÿääÿÿääÿÿååÿÿååÿÿææÿÿææÿÿææÿÿççÿÿèèÿÿééÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿðñÿþééÿÒ°¥ÿ©{eÿ‰R6ÿy>ÿ{A$ÿzB%ÿyA%ÿw@$ÿu?"ÿt>"ÿr="ÿp< ÿo; ÿm:ÿk8ÿj8ÿh7ÿg6ÿe5ÿc3ÿb3ÿ`1ÿ^0ÿ]0ÿ[/ÿY-ÿX-ÿV+ÿU+ÿS)ÿR(ÿP(ÿN&ÿM%ÿK$ÿI#ÿH#ÿF!ÿE ÿC ÿA ÿ@ ÿ> ÿ;ÿQ1"þ¿Ÿ–ÿ>¸4¯½’ˆÿÿÚÚÿþÛÛÿÿÛÛÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿààÿÿââÿÿââÿÿââÿÿääÿÿääÿÿååÿÿååÿÿææÿÿææÿÿææÿÿççÿÿççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿíîÿáĽÿ™iRÿ}E(ÿyB%ÿw@#ÿv?#ÿu?#ÿs=!ÿq< ÿp; ÿn: ÿm:ÿk8ÿi7ÿh6ÿf5ÿd4ÿc3ÿa2ÿ_0ÿ^0ÿ\.ÿZ-ÿY-ÿW+ÿV+ÿT*ÿR(ÿQ(ÿO'ÿM%ÿL%ÿJ#ÿH"ÿG"ÿE ÿC ÿB ÿ@ ÿ? ÿ= ÿ;ÿE%ÿ»™ÿ4¯* ’¾”Œÿ﹪þøÎÉÿÿáãÿÿàâÿÿÞßÿÿÝÝÿÿÝÝÿÿÝÝÿÿÞÞÿÿßßÿÿààÿÿßßÿÿááÿÿààÿÿââÿÿââÿÿããÿÿããÿÿääÿÿääÿÿååÿÿææÿÿææÿÿææÿÿççÿÿççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿÿîïÿößÝÿáýÿ®„sÿt= ÿo8ÿs=!ÿq< ÿpöñ¸§ÿËuHþÊtIÿÈsGÿÇsGÿÅqFÿÃpEÿÂpEÿÀoEÿ¿nEÿ¾mCÿÉ„bÿݦ’ÿòÊÃÿÿââÿÿáâÿÿááÿÿââÿþããÿÿããÿÿããÿÿääÿÿääÿÿååÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿþééÿþèèÿèÎÊÿ›q^ÿk8ÿk8ÿi7ÿi7ÿf6ÿe4ÿc4ÿb2ÿ_1ÿ_1ÿ\/ÿ[.ÿY-ÿX,ÿV+ÿT*ÿS)ÿQ(ÿP'ÿN&ÿM%ÿK$ÿI"ÿH"ÿF ÿD ÿC ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ6þ­•ÿVEõ>,Gá᪚ÿÌsEÿÌvJÿÊuHÿÈsGÿÇsGÿÅqGÿÃpEÿÂpEÿÀnDÿ¾nDÿ½mBÿ»jAÿ¹h>ÿµe:ÿ·h?ÿ½vRÿÆ„fÿΔ{ÿÞ®žÿïÊÂÿÿççÿÿìîÿÿéêÿÿççÿþååÿÿççÿÿææÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿÿððÿùãâÿÚ½¶ÿ«…vÿo>%ÿ_-ÿd3ÿd4ÿb2ÿ`1ÿ_1ÿ]/ÿ[.ÿZ.ÿX,ÿW,ÿU*ÿS)ÿR(ÿP'ÿN&ÿM%ÿK$ÿI#ÿH"ÿF! ÿD ÿC ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ7ÿ/ÿ¶›•ÿGà+4¤Ú®¨ÿÔ€VþÎwJÿÌvJÿËuHÿÉsGÿÈsHÿÆrFÿÅpEÿÃpEÿÁnDÿÀnDÿ¾mCÿ¼kBÿ»kBÿ¹i@ÿ·h@ÿ¶h@ÿ´g?ÿ²e=ÿ¯b9ÿ¬]5ÿ¨Z1ÿ·rPÿË”}ÿà·©ÿïÎÇÿõØÔÿûâáÿÿêëÿÿêêÿÿêêÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿÿõ÷ÿÙ½·ÿ“jXÿsF0ÿa1ÿ_/ÿ_1ÿ]/ÿ[.ÿZ.ÿX,ÿW,ÿU+ÿS)ÿR)ÿP'ÿN&ÿM&ÿK$ÿI#ÿH"ÿF!ÿD!ÿC ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ7ÿ6ÿE(þÔ¸³ÿ4¢ #}—gXÿ؈bÿÐwJÿÎwJÿÍvJÿËuHÿÉtHÿÈsHÿÆrFÿÄpEÿÃpEÿÁoEÿÀnDÿ¾mCÿ¼kBÿ»kAÿ¹jAÿ·h@ÿ¶h@ÿ´f>ÿ²e=ÿ±e>ÿ¯c<ÿ­b;ÿ¬a;ÿª`:ÿ¨_9ÿ§_:ÿ¨a=ÿ¨c@ÿ®mNÿÇ•ÿ㿵ÿýçæÿÿîïÿÿìíÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿúääÿëÓÐÿ |mÿ].ÿ[-ÿ[/ÿZ.ÿX,ÿV,ÿU+ÿS)ÿR)ÿP(ÿO&ÿM&ÿL$ÿI#ÿI#ÿF!ÿE ÿC ÿB ÿ@ ÿ> ÿ= ÿ; ÿ:ÿ8ÿ7ÿ4ÿL/"ÿ•m]ÿ!z 2oA/îõº©þÒyKÿÐxKÿÎwJÿÍwIÿËuIÿÉtHÿÈsHÿÆrFÿÄrFÿÃpFÿÁoDÿ¿nDÿ¾mCÿ¼lBÿ»jBÿ¹jAÿ·i@ÿ¶h@ÿ´g>ÿ²e>ÿ±e>ÿ¯c<ÿ­b;ÿ¬b;ÿª`:ÿ¨`:ÿ§^9ÿ¥]8ÿ¤]8ÿ¢[6ÿŸW3ÿ›T/ÿ™R-ÿ¤cBÿ²y^ÿÀzÿÒ¨™ÿäÄ»ÿøàÞÿÿòôÿÿðñÿÿííÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿïðÿþééÿÔ¹³ÿ¥‚uÿkA-ÿO" ÿU)ÿV+ÿT)ÿS)ÿQ(ÿO&ÿN&ÿL$ÿJ#ÿI#ÿG!ÿE ÿD ÿB ÿA ÿ? ÿ= ÿ< ÿ:ÿ8ÿ7ÿ5ÿ3ÿ´ž˜þsH6î17²Ý±«ÿÛ‰cÿ×…\ÿÔXÿÒ~TÿÏ{PÿÌwKÿÊtGÿÇrFÿÆqFÿÄqEÿÄpEÿÁoDÿÁnCÿ¿mDÿ½lBÿ¼lBÿ¹jAÿ¸i@ÿ¶h?ÿµg?ÿ³f>ÿ²e>ÿ°d<ÿ¯b;ÿ­b<ÿ«a:ÿª`:ÿ¨_9ÿ¦]8ÿ¥]8ÿ£\7ÿ¡Z6ÿ Z6ÿžY4ÿœW4ÿ›W4ÿ™U2ÿ–S/ÿ“O+ÿK'ÿ•U5ÿ³hÿѪÿíÒÍÿõÜÙÿùãáÿÿêêÿÿëìÿÿëëÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëìÿÿôõÿäËÈÿiZÿc9%ÿU,ÿQ'ÿQ(ÿO'ÿN&ÿL%ÿJ#ÿI#ÿG!ÿE ÿD ÿB ÿA ÿ? ÿ= ÿ< ÿ:ÿ8ÿ7ÿ5ÿ3ÿ' ÿ̯¨ÿ6°]^NÿÿÙÙÿÿ××ÿÿÖÖÿýÔÓÿüÓÐÿûÐÍÿùÎÊÿøÌÇÿð¿³ÿç®›ÿ݃ÿÒ‹kÿÇyQÿ½i<ÿ¼h<ÿ»h=ÿºh=ÿ¹h>ÿ¸i?ÿ·h@ÿµg?ÿ³f>ÿ²e>ÿ°d<ÿ®c<ÿ­b<ÿ«a:ÿª_:ÿ¨_9ÿ¦^9ÿ¥]8ÿ£\7ÿ¡Z6ÿ Z5ÿžY5ÿœW4ÿ›W4ÿ™U2ÿ˜U2ÿ–T1ÿ”R0ÿ’Q/ÿP.ÿŽN-ÿM,ÿR3ÿ“X;ÿ—^Aÿ¯jÿЬ ÿóÚ×ÿÿóõÿÿïðÿÿìíÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿììÿùãâÿéÑÎÿ¥…zÿT+ÿJ" ÿM%ÿL%ÿJ#ÿI#ÿG"ÿE ÿD ÿB ÿ@ ÿ? ÿ= ÿ< ÿ: ÿ8ÿ7ÿ5ÿ3ÿ2ÿdI>ÿfVÿ] S(ÕÿÖÖþþÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿØØÿÿ××ÿÿÙÙÿÿÙÙÿÿÚÛÿÿÜÝÿÿÞßÿÿàâÿÿâäÿÿâäÿû×ÕÿôÌÅÿíÀ´ÿå³£ÿݦ“ÿÕš‚ÿÍtÿŃeÿ½xVÿµlGÿ¬`7ÿ©[3ÿ¨\4ÿ§]5ÿ¦\6ÿ¥]7ÿ¥\7ÿ£\7ÿ¡[6ÿ Z6ÿžY5ÿœW4ÿ›W4ÿ™U2ÿ—U2ÿ–T2ÿ”R0ÿ“R0ÿ‘P/ÿO.ÿŽO.ÿŒN-ÿŠL,ÿ‰L,ÿ†H(ÿD$ÿ}?ÿƒH*ÿšgNÿ°„rÿÇ¢•ÿÚ»³ÿîÕÒÿÿîïÿÿñòÿÿîïÿÿëëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿïðÿÿññÿÔºµÿšzoÿhC1ÿBÿF ÿH"ÿG! ÿE ÿC ÿB ÿ@ ÿ> ÿ= ÿ;ÿ9ÿ8ÿ6ÿ4ÿ3ÿ+ ÿª¦þW.Ô  ' ´ƒxÿþÔÔÿÿÔÔÿÿÖÖÿÿÖÖÿÿÖÖÿÿØØÿÿ××ÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿþààÿÿààÿÿââÿÿããÿÿåæÿÿæçÿÿçéÿøÚ×ÿêĺÿÛ­ÿÌ–€ÿ¼~bÿ¬hEÿ¨c@ÿ¦a>ÿ£^;ÿ¡\8ÿX5ÿ›V3ÿšV3ÿ˜T2ÿ—T1ÿ•R0ÿ”R0ÿ’Q0ÿO.ÿO.ÿN-ÿ‹L,ÿŠL+ÿˆJ+ÿ‡I*ÿ…I*ÿƒG(ÿ‚G(ÿ€F(ÿ~D&ÿ{A#ÿw> ÿv=ÿ“cLÿº•‡ÿãÇÁÿ÷àßÿúäãÿýèçÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿïðÿðÚØÿŽocÿP*ÿI$ÿD ÿC ÿB ÿ@ ÿ> ÿ= ÿ; ÿ9ÿ8ÿ6ÿ4ÿ3ÿ1ÿ.ÿ­‰}ÿ' /k=*ëÿÛÜþÿÕÕÿÿÔÔÿÿÖÖÿÿÕÕÿÿ××ÿÿ××ÿÿ××ÿÿØØÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿããÿÿääÿÿäåÿÿææÿÿççÿÿèéÿÿèéÿýääÿùßÝÿõÚÖÿñÕÏÿíÎÈÿåÄ»ÿÖ® ÿÆ—„ÿµ€hÿ¤iKÿ“P/ÿ‹G#ÿ‹H%ÿŠI&ÿŠJ(ÿŠJ*ÿ‰K+ÿˆJ+ÿ†I*ÿ…I*ÿƒG(ÿ‚G)ÿ€E(ÿ~D&ÿ}D&ÿ{C%ÿyA$ÿw?"ÿt= ÿr;ÿu@$ÿ}K2ÿ†W@ÿ–kXÿº˜ŒÿáÆÀÿÿðñÿÿóôÿÿïïÿÿëëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿííÿûååÿâËÈÿ©„ÿS0ÿ9ÿ> ÿ> ÿ= ÿ; ÿ9ÿ8ÿ6ÿ4ÿ3ÿ1ÿ/ÿª”ŽþnC0ë/ $ Ó¥žÿÿÔÔÿÿÕÕÿÿÔÔÿÿÖÖÿÿÕÕÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿØØÿÿÙÙÿÿÚÚÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿââÿÿââÿÿããÿÿããÿÿääÿÿääÿÿææÿÿååÿÿççÿÿççÿÿççÿÿèèÿþééÿÿêêÿÿììÿÿîïÿÿðñÿÿòôÿÿôöÿÿêëÿñÖÓÿãºÿÔ¯£ÿÄ›‹ÿ¶‡sÿ«zcÿ¡mVÿ˜bGÿŽU:ÿƒI+ÿ{? ÿz>ÿy? ÿx?"ÿx?"ÿw@#ÿv?#ÿt>#ÿs>"ÿqÿƒS<ÿ€Q9ÿ}N7ÿ{L5ÿxI2ÿuG0ÿrE-ÿoA*ÿm?(ÿj<&ÿg:#ÿd7!ÿa5ÿ^3ÿZ/ÿU*ÿP%ÿK ÿFÿCÿV.ÿpL<ÿŒk^ÿ§‹ÿΤÿÞÅÂÿåÍËÿëÔÒÿðÚÙÿ÷áàÿýèèÿÿììÿÿëëÿÿëëÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿàÅÀÿ'” I ÅÿÜßþÿÔÖÿÿÔÖÿÿÖØÿÿÖØÿÿÖØÿÿÕÖÿþÓÔÿþÒÑÿýÑÏÿüÐÍÿûÎÊÿúÌÇÿùËÅÿ÷ÉÂÿöÇ¿ÿõżÿóúÿñÁ·ÿð¿´ÿî½±ÿí»®ÿ빫ÿé¶§ÿç´¤ÿ屡ÿ㮞ÿà«™ÿݧ”ÿÚ£ÿ× ŠÿÔ›…ÿЗ€ÿÍ“zÿÉŽuÿÆŠoÿÂ…jÿ¾eÿº}_ÿ¶wYÿ²rSÿ®nMÿ©hGÿ¥cAÿ¡^;ÿœX5ÿ˜S/ÿ’M(ÿJ%ÿŽI%ÿI%ÿ‹H%ÿŠH$ÿ‰G$ÿ‡F$ÿ†F$ÿ„E#ÿƒE$ÿ‚D$ÿC#ÿC#ÿ~B#ÿ}B#ÿ|B#ÿ{A#ÿyA#ÿx@#ÿw?"ÿv?#ÿu>"ÿs=!ÿr=!ÿp; ÿo; ÿl9ÿj7ÿg5ÿd1ÿa/ÿ],ÿ\,ÿf9!ÿsG2ÿ~UCÿŠdSÿ–rdÿ¥„wÿ¸™ÿ˯¨ÿÞÅÁÿòÛÚÿÿñòÿÿõ÷ÿÿóôÿÿññÿÿîïÿÿììÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿõöþI Å*‚VHíêŸÿ݈_ÿÜ…ZÿÚTÿÙ}Mÿ×{Jÿ×{Kÿ×{Kÿ×{KÿÖzKÿÔzJÿÒyJÿÑxIÿÏwHÿÎvHÿÌuGÿÊtGÿÉsGÿÇrFÿÆqEÿÄqEÿÃpDÿÁoDÿÀnCÿ¾mCÿ½lBÿ»kBÿºjAÿ¸i@ÿ¶h@ÿµg>ÿ³f>ÿ²e>ÿ¯d<ÿ¯c<ÿ¬b;ÿ«`;ÿª`:ÿ¨_9ÿ¦]8ÿ¥]7ÿ£\7ÿ¡Z6ÿ Z6ÿžX4ÿX4ÿ›W4ÿ™U2ÿ˜U2ÿ–S1ÿ”R0ÿ“R/ÿ‘P/ÿO.ÿŽN.ÿŒM,ÿŠM,ÿ‰K,ÿ‡J*ÿ†I*ÿ„H)ÿ‚G(ÿF'ÿE'ÿ}C&ÿ|C%ÿzB$ÿx@#ÿv?#ÿu?#ÿu?#ÿt?$ÿt@&ÿs@&ÿsA'ÿ…WBÿveÿ·”ˆÿѳ¬ÿëÓÏÿÿíîÿÿîïÿÿííÿÿììÿÿëëÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿýççÿüææÿôßÞÿðÚÙÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿîïÿ€ZKí*P¬zoÿ×{JÿØ}NÿØ}NÿØ}NÿØ}NÿÙ~OÿÙ~OÿÙ~OÿØ~OÿØ}OÿÖ|NÿÔzLÿÒzLÿÑyLÿÏwJÿÎwJÿÌuIÿÊtHÿÉtHÿÇrGÿÆrGÿÄqFÿÂoDÿÁoDÿ¿mDÿ½lBÿ¼lBÿºjAÿ¸i@ÿ·h@ÿµg?ÿ´g>ÿ²e>ÿ°d<ÿ¯c<ÿ­b<ÿ«a:ÿª`:ÿ¨_9ÿ¦^9ÿ¥]8ÿ£\7ÿ¡Z6ÿ Z6ÿžX4ÿX5ÿ›W4ÿ™U2ÿ˜U2ÿ–T1ÿ”R1ÿ“R0ÿ‘P/ÿO.ÿŽO.ÿŒM,ÿŠL-ÿ‰K,ÿ†I)ÿƒF%ÿB"ÿ|?ÿy<ÿy=ÿ‰S8ÿ›jSÿ¬pÿ¿šŒÿÓ²©ÿàĽÿæËÆÿíÔÐÿóÜÚÿúääÿÿííÿÿîïÿÿíîÿÿìíÿÿëìÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿìíÿÿóôÿÿðñÿÁ¨¢ÿ—|sÿȰ«ÿí×ÕÿõàßÿÿêêÿþééÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿëëÿåÐÎÿ¢}pÿP - žÌ’‚ÿ×{JÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿØ}OÿÖ|MÿÔ{MÿÓzMÿÑyKÿÏxJÿÎwJÿÌvIÿÊtHÿÉtHÿÇrGÿÆrGÿÄqEÿÂoEÿÁoEÿ¿mDÿ½lBÿ¼lBÿºkBÿ¸i@ÿ·i@ÿµg?ÿ³f>ÿ²f=ÿ°d=ÿ¯d=ÿ­b<ÿ«a:ÿªa:ÿ¨_:ÿ¦^8ÿ¥]8ÿ£\7ÿ¡[6ÿ Z6ÿžY5ÿX5ÿ›W3ÿ˜T1ÿ–R/ÿ”P-ÿ‘N+ÿL)ÿO-ÿ•X9ÿ›aCÿ¡jOÿ§rZÿ­{fÿºŽ{ÿÉ¢•ÿÙ¸®ÿéÍÇÿùâáÿÿôöÿÿóõÿÿñóÿÿïðÿÿíîÿÿëëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿÿîîÿÿïïÿíÖÔÿϵ°ÿ¥‰€ÿ‹l`ÿƒdYÿѹµÿÿõöÿÿíîÿþééÿÿêéÿþééÿÿííÿñÛÚÿöààÿÿêêÿþééÿÿððÿȱ­ÿ# ÿ¥†|ÿ- ž Aâ먔ÿØ}MÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ}OÿØ~OÿÖ|MÿÔ{MÿÓzMÿÑyKÿÏxJÿÎwJÿÌvJÿÊtHÿÉtHÿÇsGÿÆrFÿÄqFÿÂoEÿÁoEÿ¿nDÿ½lBÿ¼lCÿºjAÿ¸i@ÿ·i@ÿµg?ÿ³f?ÿ²f>ÿ°d=ÿ¯d=ÿ­c<ÿ«a:ÿ«a;ÿ¨_:ÿ§^8ÿ¥^8ÿ¤\7ÿ¡[6ÿ Y5ÿžY5ÿœW4ÿŸ\:ÿ®tXÿ¿ŽwÿЧ˜ÿâÁ¸ÿôÜÙÿÿêêÿþééÿþééÿþééÿþééÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿãËÈÿ˜ynÿS.ÿM'ÿš{qÿóÝÛÿþééÿþééÿÿêêÿþééÿÿêêÿþééÿÿêêÿÿîîÿ»¢œÿóÝÜÿÿêêÿþééÿÿëëÿ˜€xÿ*ÿ)ÿŸ‡€ÿAâ-i7#ö龜þÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿØ~Nÿ×|NÿÕ{MÿÓ{MÿÒyKÿÐxKÿÎwKÿÍvIÿËvHÿÊtHÿÈsHÿÆrGÿÅqFÿÃpEÿÂnEÿÀnCÿ¾mCÿ¼lCÿ»kAÿ¹i@ÿ¸h?ÿµe=ÿ²c:ÿ°a7ÿ­^4ÿª[1ÿ­b;ÿ·rQÿÀ‚fÿÊ“|ÿÔ¤’ÿß¶¨ÿåÀ¶ÿëÊÂÿñÓÎÿ÷ÝÛÿýçæÿÿïðÿÿîðÿÿíîÿÿìíÿÿëìÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿîïÿÿõöÿûååÿÆ«£ÿ”reÿqL;ÿL$ÿ[4!ÿ§‰ÿÛ¾ÿþééÿÿîïÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿøãâÿ—|sÿÌ´°ÿûæåÿÿêêÿþééÿþééÿlRGÿ) ÿ,ÿ+ÿ€ibþj<'ö-Fœk_ùæ•qÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~Oÿ×}NÿÕ{MÿÔ{LÿÒzLÿÐxKÿÏxKÿÍvIÿËuHÿÊtHÿÈrFÿÆqEÿÄoCÿÂnBÿÀmAÿÁpFÿÂtMÿÄxSÿÅ|YÿÇ€_ÿˈkÿÔš‚ÿÞ«šÿè½²ÿôÐÊÿÿääÿÿìïÿÿêìÿÿêëÿÿèéÿÿçèÿÿææÿþççÿÿççÿÿççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿÿíîÿþééÿîÖÓÿÛÁ¼ÿ«ŠÿpG4ÿGÿN# ÿhA.ÿ‘pcÿäÌÉÿÿöøÿÿììÿþééÿÿêêÿÿêêÿÿêêÿþééÿþééÿÿîîÿîØÖÿ­“Œÿ‚f[ÿÿïðÿÿëëÿþééÿÿëëÿìÖÔÿO2%ÿ0ÿ.ÿ-ÿ+ÿZA7ÿ¡{nùF`Ο™ýÞ‡\ÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~OÿÙ~Oÿ×}NÿÕ{NÿÔzLÿÒyKÿÐwIÿÎvHÿÌtFÿÊrEÿÎ{SÿÖlÿÞž…ÿç°žÿñ¸ÿúÔÒÿüØÖÿüÚØÿýÛÚÿþÝÜÿþÞÞÿÿààÿÿààÿÿááÿÿááÿÿââÿÿããÿþããÿÿããÿÿääÿÿääÿÿææÿÿååÿÿççÿÿççÿÿèèÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿííÿÿïïÿ×»´ÿ•p`ÿf:#ÿa3ÿ[.ÿW*ÿ\0ÿªŠÿóÝÛÿüææÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿðñÿodÿ`@0ÿîØ×ÿþééÿÿêêÿþééÿÿììÿØÁ¾ÿ9 ÿ2ÿ1ÿ/ÿ-ÿ,ÿ:!ÿÔ·±ý`zðÀ¾ÿ×zJÿØ}NÿØ}MÿØ|Lÿ×{Jÿ×zIÿÖyGÿ×xGÿÚUÿß‹cÿã”rÿæžÿê§ÿí±žÿð¹ªÿôÁ¶ÿ÷ÉÃÿûÒÏÿÿÛÜÿÿÞàÿÿÝßÿÿÞßÿÿÜÝÿÿÝÝÿÿÜÜÿþÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿààÿÿààÿÿààÿÿááÿÿááÿÿââÿÿããÿÿääÿÿääÿÿääÿÿææÿÿååÿÿççÿÿççÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêëÿÿïðÿÿõ÷ÿðØÕÿÈ©Ÿÿ¢|mÿƒWCÿc3ÿ\+ÿ[+ÿU& ÿvL8ÿ®ŒÿÛ½ÿÿíîÿÿîïÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿïïÿñÛÚÿ’tjÿ[8(ÿ»¡šÿÿòóÿÿêêÿÿêêÿÿêêÿÿõöÿŸ†~ÿ/ÿ4ÿ2ÿ1ÿ/ÿ-ÿ,ÿ!ÿòÚØÿ z 9  î¶®ÿÛƒWÿÞ‰aÿã“pÿé …ÿï®›ÿõ»¯ÿûÉÅÿÿ×Ùÿÿ×Ùÿÿ×ÙÿÿÖ×ÿÿÖ×ÿÿÕÖÿÿÖÖÿÿÖÖÿÿÖÖÿÿ××ÿÿØØÿÿÙÙÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÜÜÿÿÛÛÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿââÿÿââÿÿääÿÿããÿÿååÿÿååÿÿååÿÿææÿÿççÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿëëÿÿììÿûæåÿòÚ×ÿàÄ¿ÿ¬†vÿtB)ÿb/ÿe3ÿf5ÿc3ÿe6ÿpD-ÿœwiÿíÖÓÿÿóôÿÿëëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿììÿñÛÚÿ¡…{ÿE ÿŠl_ÿÿïðÿÿêêÿÿêêÿÿêêÿÿêêÿùããÿuXLÿ1ÿ6ÿ4ÿ2ÿ1ÿ/ÿ-ÿ,ÿ!ÿȰ¬ÿ;  N'Á÷ÅÄÿþÌËÿÿÏÏÿÿÐÑÿÿÐÐÿÿÑÑÿÿÑÑÿÿÒÒÿþÒÒÿÿÒÒÿÿÔÔÿÿÓÓÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿÙÙÿÿÙÙÿÿÚÚÿÿÛÛÿÿÚÚÿÿÜÜÿÿÛÛÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿààÿÿááÿÿááÿÿááÿÿââÿÿââÿÿääÿÿããÿÿååÿÿååÿÿææÿÿææÿÿççÿÿççÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿììÿÿðñÿÿêêÿÏ®¤ÿ™kWÿ~K2ÿvB'ÿn:ÿm9ÿk8ÿj7ÿd2ÿn>&ÿ¸–‹ÿðÙÖÿûååÿÿëìÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿììÿÿììÿ‡fYÿL%ÿqO@ÿíÖÕÿÿëìÿÿêêÿÿêêÿþééÿþééÿïÙØÿL-ÿ9ÿ8ÿ7ÿ5ÿ3ÿ2ÿ0ÿ.ÿ-ÿ$ ÿ¨‰ÿQ-ÁZ.×úÈÈÿÿÎÎÿÿÏÏÿÿÏÏÿÿÏÏÿÿÑÑÿÿÐÐÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÓÓÿÿÔÔÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÛÛÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿààÿÿââÿÿââÿÿââÿÿääÿÿããÿÿååÿÿååÿÿææÿÿææÿÿææÿÿççÿÿççÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëìÿÿïðÿÿðñÿëÐËÿϬ¡ÿ°†tÿ\Dÿr9ÿq9ÿs=!ÿs="ÿr=!ÿm8ÿh3ÿ†XBÿ°‹}ÿßÄ¿ÿÿñòÿÿîîÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþêêÿÿïðÿéÑÏÿœ|qÿG ÿ`;)ÿè¢ÿÿòòÿÿêêÿÿêêÿÿêêÿþééÿÿííÿʱ­ÿG&ÿ; ÿ: ÿ8ÿ7ÿ5ÿ3ÿ2ÿ0ÿ.ÿ-ÿ& ÿ‹rkÿ]6%×a4!êûÊÊÿÿÍÍÿÿÏÏÿÿÎÎÿÿÐÐÿÿÐÐÿÿÐÐÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿ××ÿÿ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿààÿÿââÿÿááÿÿããÿÿããÿÿããÿÿååÿÿååÿÿææÿÿææÿÿææÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿûååÿ÷àÞÿÞ¿·ÿ­kÿ~D&ÿ{@!ÿ|C$ÿ{B&ÿzB%ÿx@$ÿv?#ÿt>!ÿu@$ÿzF-ÿ«ƒsÿõÝÚÿÿîïÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿõßÞÿ™xlÿL" ÿQ)ÿ›|pÿÿíîÿþééÿþééÿÿêêÿþééÿþééÿÿêëÿ¹Ÿ˜ÿ=ÿ= ÿ; ÿ: ÿ8ÿ7ÿ5ÿ3ÿ2ÿ0ÿ.ÿ-ÿ( ÿmTJÿe<)ê"i8%úýÌÌÿÿÍÍÿÿÏÏÿÿÎÎÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÒÒÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿßßÿÿßßÿÿààÿÿááÿÿààÿÿââÿÿááÿÿããÿÿããÿÿääÿÿääÿÿääÿÿååÿÿææÿÿççÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿíîÿÿòóÿöÞÜÿͧ™ÿ¤pXÿ”\@ÿˆM/ÿF&ÿE'ÿ€F'ÿE'ÿ}D&ÿ{B%ÿyA#ÿq9ÿL3ÿß“ÿìÓÏÿüææÿÿìíÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿîïÿøâáÿ‡bRÿ[1ÿL" ÿ‡eVÿïØÖÿÿìíÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿõöÿ}]Pÿ=ÿ@ ÿ= ÿ< ÿ: ÿ9ÿ7ÿ6ÿ4ÿ3ÿ1ÿ/ÿ-ÿ*ÿT;/ÿmA/ú"&n;'ÿþÍÍÿÿÍÍÿÿÏÏÿÿÎÎÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÑÑÿÿÒÒÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÙÙÿÿÚÚÿÿÛÛÿÿÜÜÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿßßÿÿààÿÿááÿÿááÿÿããÿÿããÿÿääÿÿääÿÿääÿÿååÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿèèÿÿêêÿÿééÿÿêêÿÿììÿÿïðÿþèèÿëÎÈÿس¨ÿºŠvÿ™^@ÿ…D"ÿ‡G&ÿˆK+ÿ‡J+ÿ†I*ÿ…I*ÿ‚G)ÿF'ÿ|B#ÿ{A"ÿ“aHÿ´‹zÿæÊÅÿÿôõÿÿííÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿïðÿåÌÈÿŸ|oÿP# ÿP$ ÿlD1ÿȬ¦ÿÿññÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿìíÿíÖÔÿ_=-ÿ?ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ8ÿ6ÿ4ÿ3ÿ1ÿ/ÿ.ÿ+ÿK1%ÿrE1ÿ&)p=)ÿÿÍÍÿÿÎÎÿÿÎÎÿÿÎÎÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÕÕÿÿÔÔÿÿÖÖÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÝÝÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿààÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿääÿÿääÿÿååÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿééÿþèèÿýèèÿûåäÿܶªÿ°x_ÿ“P-ÿ“P.ÿ’Q/ÿO.ÿŽN-ÿN-ÿ‹L,ÿŠL+ÿˆK+ÿ†I*ÿ…H)ÿ„I*ÿ†L/ÿº€ÿøáßÿÿëëÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿþééÿ÷áàÿjZÿZ-ÿZ-ÿ[/ÿ°‘†ÿÿððÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÚÁ½ÿBÿE ÿC ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ8ÿ6ÿ4ÿ3ÿ1ÿ/ÿ.ÿ,ÿA&ÿtG3ÿ)+s?*ÿÿÍÎÿÿÎÎÿÿÎÎÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÕÕÿÿÔÔÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÞÞÿÿÞÞÿÿààÿÿààÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿããÿÿååÿÿååÿþååÿÿçèÿÿëíÿÿðòÿïÑÊÿУ‘ÿµ|`ÿ§iIÿ™U2ÿ–R.ÿ–R0ÿ•S1ÿ“Q0ÿ’Q0ÿP.ÿŽN-ÿN-ÿ‹L-ÿˆJ)ÿ€Aÿ•\Bÿʤ—ÿêÎÉÿþééÿÿííÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿñòÿìÔÑÿeTÿa4ÿ[-ÿS% ÿ”p`ÿìÔÒÿÿííÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿïðÿ¤†|ÿI$ÿF!ÿE!ÿC ÿA ÿ@ ÿ> ÿ< ÿ; ÿ9ÿ8ÿ6ÿ5ÿ3ÿ1ÿ0ÿ.ÿ-ÿ;!ÿvH4ÿ++s?*ÿÿÍÎÿÿÎÎÿÿÎÎÿÿÏÏÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÒÒÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÕÕÿÿÔÔÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿ××ÿÿØØÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿââÿþââÿÿääÿÿææÿÿèéÿúÞÜÿïÎÇÿඪÿ‹rÿ¤^:ÿœS-ÿV2ÿX5ÿœX4ÿšV3ÿ˜U2ÿ—T2ÿ•S1ÿ“S0ÿ’Q0ÿP.ÿŒL*ÿN-ÿfJÿºzÿîÒÎÿÿôöÿÿììÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿííÿåÌÇÿwgÿY(ÿ`1ÿ[,ÿvL8ÿÕ¹³ÿÿòôÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿúåäÿ”thÿG ÿI#ÿG!ÿF!ÿD ÿB ÿA ÿ? ÿ> ÿ< ÿ:ÿ9ÿ7ÿ5ÿ4ÿ2ÿ0ÿ/ÿ-ÿÿ°d=ÿ¯d=ÿ­b<ÿ«a:ÿª`:ÿ¨_:ÿ¦_8ÿ¥]8ÿ£\7ÿ¢[7ÿ Y5ÿW3ÿžZ7ÿ§iJÿÃ’}ÿõÛØÿÿòôÿÿëëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿèÎÊÿ˜mYÿe0ÿk9ÿj8ÿf5ÿ{N9ÿáÆÂÿÿðñÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿ½ ˜ÿHÿP(ÿN&ÿL%ÿL%ÿI#ÿH"ÿF!ÿE ÿC ÿA ÿ@ ÿ> ÿ= ÿ:ÿ:ÿ8ÿ6ÿ5ÿ3ÿ1ÿ0ÿ,ÿY>3ÿmA.ú"a4!êûÉÉÿÿÍÍÿÿÍÍÿÿÎÎÿÿÎÎÿÿÐÐÿÿÏÏÿÿÑÑÿÿÐÐÿÿÒÒÿÿÒÒÿÿÒÒÿÿÓÓÿÿÔÔÿÿÕÕÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿØØÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÜÝÿÿàãÿöÍÇÿÝ¢‹ÿÆzUÿÀqIÿ¼mDÿºjAÿ¸i@ÿ·h@ÿµg?ÿ´g?ÿ²f>ÿ°d=ÿ¯d=ÿ­b<ÿ«a:ÿªa:ÿ¨_9ÿ¦^8ÿ¥]8ÿ£\7ÿŸX2ÿ¥b@ÿÔ©™ÿøßÝÿýçæÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿîÕÑÿ‹[Eÿs?#ÿo:ÿn: ÿl9ÿd1ÿɪ ÿüææÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿïïÿ†bRÿS)ÿR(ÿP'ÿO'ÿM%ÿL%ÿJ#ÿH"ÿG!ÿE ÿC ÿB ÿ@ ÿ> ÿ= ÿ;ÿ:ÿ8ÿ6ÿ5ÿ3ÿ1ÿ0ÿ+ÿqWMÿe<)êZ.×úÇÇÿÿÌÌÿÿÎÎÿÿÎÎÿÿÎÎÿÿÐÐÿÿÏÏÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÓÓÿÿÔÔÿÿÕÕÿÿÖÖÿÿÖÖÿÿÖÖÿÿØØÿÿÚÛÿÿÞàÿýÕÓÿð½±ÿâ¥ÿÕŽnÿÇvMÿÀk>ÿÀlAÿÀnCÿ¾lCÿ¼lCÿ»kAÿ¹i@ÿ¸i@ÿ¶g?ÿµg?ÿ³f>ÿ±d=ÿ°d=ÿ®b;ÿ¬a;ÿª`:ÿ§\6ÿ£W/ÿ·wYÿÓ£‘ÿíÍÆÿÿìîÿÿìíÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿðñÿÛ½¶ÿ›mYÿm5ÿq;ÿp; ÿo; ÿj5ÿ§€pÿõÞÝÿÿíîÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿðÙ×ÿxQ?ÿS'ÿT*ÿR(ÿP'ÿO'ÿM%ÿL%ÿJ$ÿH"ÿG"ÿE ÿC ÿB ÿ@ ÿ> ÿ= ÿ; ÿ: ÿ8ÿ6ÿ5ÿ3ÿ1ÿ0ÿ) ÿˆneÿ]6%×N'Á÷ÅÄÿÿÌÌÿÿÎÎÿÿÍÍÿÿÏÏÿÿÎÎÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÒÒÿÿÓÓÿÿÓÓÿÿÓÓÿþÔÔÿÿÕÕÿÿÖ×ÿþÕÔÿüÑÎÿùÌÅÿ鬗ÿÔ†`ÿÉqBÿÉrEÿÈsGÿÇsGÿÅqFÿÃpEÿÂoDÿÀnDÿ¾mCÿ½kBÿ»kAÿ¹i@ÿ¸iAÿ·i@ÿµh@ÿ´hAÿ³gAÿ±gAÿ°gAÿ²lHÿ·wVÿÏœ‡ÿùÞÛÿÿëíÿÿççÿþèèÿÿççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿýèèÿîÕÒÿªƒqÿŽ`HÿŽaJÿŠ\Dÿ†V?ÿQ8ÿ†XAÿçÍÈÿÿìíÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿäËÇÿZ.ÿW,ÿU*ÿT*ÿR)ÿP'ÿO'ÿM%ÿL%ÿJ$ÿH"ÿG"ÿE ÿC ÿB ÿ@ ÿ? ÿ= ÿ; ÿ: ÿ9ÿ6ÿ6ÿ3ÿ2ÿ0ÿ( ÿª‰ÿQ-Á 9  ôÂÀÿÿÌÌÿÿÎÎÿÿÍÍÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÐÐÿÿÑÑÿÿÒÒÿþÒÒÿÿÔÔÿÿÖØÿÿÙÜÿõÀ´ÿ埂ÿÙ†^ÿÕTÿÐxKÿÎwIÿÍvIÿÌvIÿÊuIÿÈsGÿÆrFÿÅqEÿÃoDÿÁmBÿÂqGÿÃxQÿÅ}Yÿƃ`ÿLJeÿLjhÿňiÿʼniÿĈiÿÀ…eÿÆŽqÿ伯ÿøÚ×ÿýãâÿÿææÿÿææÿþååÿÿççÿÿççÿÿççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿïðÿèÍÇÿ«ƒoÿ›pZÿ™nXÿ™nXÿ—nXÿ–mXÿ“jUÿÜÀ¹ÿýèèÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿ¼”ÿ^1ÿW*ÿV*ÿU*ÿT)ÿS)ÿQ'ÿP'ÿN&ÿM%ÿK$ÿI"ÿG"ÿF!ÿD ÿC ÿA ÿ? ÿ> ÿ< ÿ; ÿ9ÿ7ÿ6ÿ4ÿ2ÿ1ÿ%ÿÙÁ¾ÿ:  zコÿÿÍÍÿÿÍÍÿÿÍÍÿÿÎÎÿÿÏÏÿþÐÐÿÿÐÑÿÿÓÔÿÿÕØÿûÊÅÿóº¬ÿë§ÿá’nÿØ|LÿÕyHÿÕzKÿÔzLÿÒzKÿÐwJÿÏwIÿÎyMÿÎ|QÿÎ~UÿÎZÿÎ…_ÿΈeÿÏkÿБpÿÐ’qÿÎpÿÍoÿËnÿÉmÿÇŠjÿňgÿКÿß±¡ÿóÑËÿÿçéÿÿåæÿþããÿÿääÿÿääÿÿææÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿèèÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêëÿÿíîÿãÇÀÿ´zÿ—jRÿ›oXÿšnXÿ™mWÿ—mWÿ•jUÿ½›ÿùãáÿÿëìÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿ³•Šÿ~[Hÿ„bPÿ~]KÿxUBÿpL9ÿiC0ÿc<(ÿ\6!ÿV.ÿN&ÿK#ÿJ#ÿI#ÿH"ÿF! ÿD ÿC ÿA ÿ? ÿ> ÿ< ÿ; ÿ9ÿ7ÿ6ÿ4ÿ2ÿ1ÿ*ÿøàßÿz`Í›”ýÿÏÏÿÿÍÍÿÿÎÎÿÿÎÎÿþÍÍÿýÌËÿùļÿꤊÿÛƒWÿ×{KÿØ}MÿØ}NÿØ}NÿÙ~OÿØ~Oÿ×~OÿÖSÿׇ^ÿÙiÿÚ–sÿÚ–sÿØ•rÿ×”rÿÕ’pÿÔ’pÿÓ’oÿÑnÿÐnÿÏŽnÿÍmÿÌlÿÌŽnÿÌqÿá°ŸÿüÛÚÿÿâãÿÿááÿÿááÿÿââÿÿââÿÿääÿÿääÿÿääÿÿææÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿýèèÿíÓÎÿ¨|gÿoXÿpXÿ›nWÿ›nWÿ™nVÿ˜lVÿ£zfÿñÚØÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿûåäÿ“qaÿ‚_Lÿ‚^Lÿ€]Lÿ€]Kÿ~\Jÿ|[Iÿ{ZIÿzZIÿyYIÿyYIÿwYIÿoN>ÿa?-ÿS/ÿJ$ÿG#ÿE!ÿC ÿA ÿ? ÿ> ÿ< ÿ; ÿ9ÿ7ÿ6ÿ4ÿ2ÿ1ÿH-ÿÓ¶°ý`F›i\ùÿÕ×ÿÿÎÏÿò´¤ÿå™yÿÞŠcÿÚ‚UÿØ|KÿØ|MÿØ}NÿØ|MÿÙ}MÿÛ…XÿÝcÿß”mÿß–qÿߘsÿÞ˜tÿÜ—sÿÜ–sÿÚ•rÿÙ”rÿØ”qÿÖ“pÿÕ’pÿÔ‘oÿÒoÿÑnÿÏŽlÿËŠfÿÓ•xÿé¼®ÿ÷ÒÎÿþÞÝÿÿááÿÿààÿþááÿÿááÿÿááÿÿââÿÿââÿÿääÿÿããÿÿååÿÿååÿÿææÿÿææÿÿææÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿÿñóÿáûÿ±…pÿŸoWÿžoWÿžoWÿœoVÿ›nVÿ™lUÿ›oXÿàĽÿþéèÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿìíÿåÍÉÿŒhUÿƒ^Kÿ‚^Lÿ]Kÿ\Kÿ~\Jÿ}ZIÿ|ZHÿzZHÿyXHÿxXGÿwVFÿuVFÿtVEÿsUEÿrUEÿpSDÿlN?ÿgI:ÿ_?0ÿP0ÿBÿ<ÿ<ÿ;ÿ:ÿ8ÿ7ÿ5ÿ3ÿ1ÿgMBÿ {mùF-i7"öò«’þÖyFÿ×zJÿØ}MÿØ}NÿØ}NÿÚSÿÛ…XÿÝ‹aÿß”mÿášvÿášuÿá™tÿà˜sÿà˜tÿÞ˜rÿÞ—rÿÜ–rÿÛ–qÿÚ”pÿØ”pÿ×’oÿÖ’oÿÔ‘nÿÒlÿÑlÿÙœ€ÿä°œÿ÷ÑËÿÿâäÿÿßßÿþÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿááÿÿââÿÿââÿÿââÿÿääÿÿããÿÿååÿÿååÿÿææÿÿææÿÿççÿÿççÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿÿêêÿåÈÀÿ²…pÿžlQÿ¢pXÿ pWÿŸoVÿnUÿ›lTÿškTÿ¿›Œÿýçæÿÿêëÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿíîÿϳ«ÿ€YDÿ„^Jÿ‚]Jÿ\Jÿ€\Iÿ~[Iÿ}ZHÿ|YGÿzYGÿyXFÿxWFÿvVEÿvVEÿtUDÿsTCÿrSCÿpRCÿpRBÿnQBÿlPAÿlOAÿkPAÿkPBÿcH:ÿV9*ÿJ+ÿA"ÿ9ÿ5ÿ5ÿ3ÿ2ÿ†neþj<'ö-Aâ먓ÿØ}MÿÙ~OÿÙ€RÿÝŒbÿà—pÿá˜sÿá˜sÿà—rÿá—rÿá—rÿá—rÿá—rÿá—rÿà—sÿß—qÿÞ—qÿÝ•pÿÚ”pÿÚ“pÿØ“oÿØ“nÿÖ‘nÿÖ“qÿéµ£ÿýØÖÿÿÛÛÿÿÛÛÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿââÿÿááÿÿââÿÿääÿÿããÿÿååÿÿååÿÿææÿÿææÿÿççÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿþééÿþééÿÿêêÿþééÿçËÄÿ«yaÿ¤rXÿ£qWÿ¢qWÿ¡pWÿŸoUÿžnTÿmUÿªjÿøâáÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿþééÿ¬‹}ÿ„]Hÿ„^Jÿƒ\Hÿ\Hÿ€\IÿZHÿ}YFÿ|XFÿ{XEÿyVFÿxVEÿwUDÿuTCÿtTCÿsRAÿrRAÿqQBÿoQ@ÿnP@ÿlN?ÿkN?ÿkM>ÿiM>ÿgL>ÿgK>ÿeJ<ÿdI;ÿcI;ÿaH:ÿS7)ÿ= ÿ3ÿ0ÿ¡ˆÿAâ - žÍ’ƒÿÝŽdÿß”mÿà˜rÿà—rÿà—qÿà—qÿà—qÿà—qÿà—qÿà—qÿà—rÿà—rÿà—rÿà—rÿß–rÿÞ–qÿÜ•pÿÚ“mÿ׎gÿÞ~ÿÿøÌÆÿÿÚÚÿÿÛÜÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿßßÿÿßßÿÿßßÿÿààÿÿààÿÿââÿÿááÿÿããÿÿããÿÿããÿÿääÿÿååÿÿååÿÿææÿÿççÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿþééÿÿêêÿÿñóÿݼ±ÿ¶‡pÿ¥oUÿ¥qWÿ£qWÿ£pVÿ¡pUÿ nUÿkRÿ pYÿà»ÿÿêêÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿöàÞÿyhÿ„\Gÿ„]Iÿƒ]Iÿ‚\Hÿ€[GÿZGÿ~YFÿ|XEÿ{XDÿzVDÿxVDÿwTCÿvTBÿtTBÿsRAÿrRAÿqP@ÿoP@ÿnO?ÿlN>ÿlM>ÿjL=ÿiL<ÿhK<ÿfJ<ÿdI;ÿdI;ÿcH:ÿ`G9ÿ`F8ÿ_F9ÿ_F:ÿ[B5ÿM3%ÿ±’‰ÿ- ž P¬ymÿß”lÿß•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿß•oÿÞ”mÿÞ•oÿáž~ÿê°›ÿúÏËÿÿÜÞÿÿØÙÿþØØÿÿÙÙÿÿÙÙÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿààÿÿààÿÿââÿÿááÿÿããÿÿããÿÿääÿÿääÿÿääÿÿååÿÿååÿÿææÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿëëÿüçæÿçÉÁÿ±}eÿ¦oSÿ§rWÿ¦qVÿ¤qVÿ¤pUÿ¢oTÿŸmSÿ¢pWÿÃÿÿîïÿÿêêÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿëëÿéÑÍÿdPÿ†]Hÿ…]Hÿƒ\Gÿ‚[GÿZFÿ€YFÿXEÿ~XDÿ|WCÿ{VCÿzUCÿxTBÿwTAÿuSAÿtR@ÿsQ@ÿqP?ÿpP?ÿoO>ÿmN=ÿlL=ÿkL<ÿiK;ÿiJ;ÿgJ;ÿfH:ÿeH9ÿcG9ÿaF8ÿ`F7ÿ_D6ÿ]C6ÿ\C6ÿ[B5ÿV>1ÿ±ÿP*‚TGí꤆ÿß”nÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿà•oÿß”nÿß”mÿá˜tÿñ¸§ÿýÒÐÿþÕÔÿÿ××ÿÿÖÖÿþØØÿÿ××ÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÛÛÿÿÜÜÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿßßÿÿááÿÿááÿÿááÿÿããÿÿããÿÿääÿÿääÿÿääÿÿååÿÿååÿÿææÿÿææÿÿèèÿÿèèÿþééÿÿëëÿáÀ¶ÿ°z_ÿ«tXÿªtXÿ¨sWÿ¦rVÿ¦qUÿ¤oUÿ£oUÿ mRÿ¯kÿùâáÿþééÿÿêêÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿééÿÿíîÿÕ¸°ÿ‰^Iÿ†]Gÿ…]Gÿ„\Gÿ‚[Fÿ‚ZFÿ€XEÿ~XDÿ~XDÿ|VCÿzUCÿyUBÿxTBÿvTAÿuR@ÿtQ?ÿsQ?ÿrP>ÿpO>ÿoO>ÿnM=ÿlL<ÿkL<ÿjK;ÿhJ:ÿgI:ÿfH:ÿeG9ÿcG8ÿaF7ÿaE7ÿ_D6ÿ]C6ÿ]C6ÿ[B5ÿX?2ÿ’{tÿ‡aSí*I Åÿźþß“lÿà”mÿà”mÿà”mÿà”mÿà”mÿà”mÿß“kÿÞgÿå €ÿð¶¥ÿùÈÁÿÿÕÖÿÿÖ×ÿÿÔÔÿÿÖÖÿÿÖÖÿÿÖÖÿÿØØÿÿ××ÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÝÝÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿääÿÿååÿÿååÿÿååÿÿææÿþææÿÿééÿÿìíÿÝ·«ÿº‡mÿªpSÿ«sWÿªsVÿ©rVÿ¨qUÿ¦qUÿ¥pUÿ¡lPÿ«x`ÿáÁ¹ÿÿîïÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿïñÿ¶“…ÿ„XAÿˆ]Gÿ†]Gÿ„[FÿƒZEÿ‚YEÿYDÿXCÿ~WCÿ}VBÿ{UAÿzTAÿyTAÿxS@ÿvR?ÿuQ>ÿsP>ÿrP=ÿqO=ÿoN=ÿnM<ÿlK;ÿkK:ÿjK:ÿhI9ÿgI9ÿfG8ÿeG8ÿcF7ÿbE6ÿaE6ÿ_C5ÿ^B4ÿ]B4ÿ[A4ÿY@3ÿV=0ÿÚÅÃþK"Å '”Ý©¢ÿà–pÿÞ“lÿÞ“lÿÞ“lÿÞ“kÿß•nÿâšwÿí®˜ÿüÎÌÿÿÕ×ÿÿÓÓÿþÓÓÿÿÓÓÿÿÕÕÿÿÔÔÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿ××ÿÿØØÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÝÝÿÿÞÞÿÿßßÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿããÿÿååÿÿääÿÿææÿÿçèÿüâáÿçżÿ²xZÿ­sUÿ­tVÿ­tUÿ«rUÿ©qTÿ¨qTÿ§pTÿ¥oRÿ§qWÿÈŸŽÿÿïðÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿöàÞÿœr^ÿˆ[Dÿˆ]Fÿ‡[Eÿ…[Eÿ„YDÿƒYDÿYCÿWBÿWBÿ}UAÿ|UAÿzU@ÿyS@ÿxR?ÿvQ>ÿuP=ÿtO=ÿrO<ÿqN<ÿpM<ÿnL;ÿmK:ÿlJ9ÿjJ9ÿiI8ÿhH7ÿfG7ÿdF7ÿcE6ÿbE5ÿaC5ÿ_C4ÿ^A3ÿ]A3ÿ[A2ÿY?2ÿY?1ÿ\B5ÿÒ·±ÿ'” R‰UBÿä›xþÞ’jÿÝ‘gÿá—sÿò¶§ÿüËÈÿþÏÏÿÿÑÑÿÿÒÒÿþÑÑÿÿÓÓÿÿÓÓÿÿÓÓÿÿÕÕÿÿÔÔÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÛÛÿÿÛÛÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿßßÿÿààÿÿááÿÿááÿÿââÿÿââÿÿããÿÿããÿþååÿÿååÿÿéêÿÞµ§ÿ¸~aÿ±uVÿ°uWÿ®uVÿ­sUÿ¬sUÿ«rUÿ¨pTÿ©pSÿ¤kNÿº‹uÿöÞÜÿÿêëÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿèÎÉÿŽbJÿ‰]Eÿ‰\Eÿ‡[Eÿ†[Dÿ„ZCÿ„ZCÿ‚XCÿ€WBÿWAÿ~UAÿ|U@ÿ{T@ÿzS?ÿxR?ÿwQ>ÿuP=ÿtP<ÿsO<ÿqN<ÿpM;ÿoL:ÿmK:ÿlK9ÿjJ8ÿiH7ÿhH7ÿfG7ÿeF6ÿdF6ÿbD5ÿaD4ÿ`C3ÿ^A3ÿ]A2ÿ[@2ÿZ?1ÿZ?1ÿW=0ÿkRFþ‡]JÿRR&àè©•ÿﯜÿùüÿÿÑÓÿÿÐÑÿþÏÏÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÓÓÿÿÒÒÿÿÔÔÿÿÔÔÿÿÔÔÿÿÕÕÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÛÛÿÿÚÚÿÿÜÜÿÿÜÜÿÿÜÜÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿààÿÿááÿÿááÿÿããÿþããÿÿææÿþääÿßµ§ÿ½ƒgÿ²sSÿ²vVÿ±uVÿ°tVÿ¯tUÿ­rTÿ¬rTÿ«qSÿ§mNÿ´€gÿãúÿÿïñÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿìíÿѲ¨ÿŒ^Eÿ‹]Eÿ‰\Dÿˆ[Dÿ†ZCÿ…YBÿ„XBÿ‚WAÿV@ÿ€U?ÿ~U@ÿ}T?ÿ{S>ÿzR=ÿxQ=ÿwP<ÿvP<ÿuO;ÿsN:ÿrM:ÿpL:ÿoK9ÿnJ9ÿlJ7ÿkI7ÿjH6ÿiG6ÿgF5ÿfF5ÿeE5ÿcD4ÿbC3ÿ`B2ÿ_A2ÿ^@1ÿ\?0ÿ[?0ÿZ>0ÿX=/ÿR6)ÿ¤‹„ÿT)à ! |பÿÿÎÎÿÿÍÍÿÿÎÎÿÿÎÎÿÿÐÐÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÓÓÿÿÒÒÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿÕÕÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÛÛÿÿÚÚÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÝÝÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿããÿüßÞÿå½±ÿ¶vTÿµwVÿ´vVÿ´uVÿ²uUÿ°tTÿ¯sTÿ®sSÿ¬qRÿ«pQÿ«qTÿÏ¥•ÿÿììÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿþééÿÂÿ‹\Cÿ‹\Eÿ‰[Cÿ‰ZCÿ‡ZBÿ…XAÿ„XAÿƒW@ÿV?ÿ€V?ÿ~T?ÿ}S>ÿ|S=ÿzQ<ÿyQ<ÿxP;ÿvO:ÿuN:ÿsM9ÿrL9ÿqK9ÿoJ8ÿnJ7ÿmI6ÿkH5ÿjG5ÿhF4ÿgE3ÿfD3ÿdD3ÿbC2ÿbA1ÿ`A1ÿ^?0ÿ]?/ÿ\?/ÿ[>.ÿZ=.ÿX<.ÿW;-ÿQ5'ÿâÉÄÿ! |  =ŠXHõÿÔÕþÿÍÍÿÿÎÎÿÿÎÎÿÿÐÐÿÿÏÏÿÿÑÑÿÿÐÐÿÿÒÒÿÿÒÒÿÿÒÒÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿÙÙÿÿÙÙÿÿÙÙÿÿÛÛÿÿÚÚÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿßßÿÿààÿþááÿÿââÿÿååÿÛ¬›ÿ¿cÿ·wUÿ·wVÿ¶wVÿ´vUÿ³uUÿ²tTÿ°sTÿ¯rSÿ­qRÿªmMÿÆ—‚ÿ÷ßÝÿÿëìÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿëëÿ¤xdÿ‹[BÿŒ\DÿŠ[Cÿ‰[BÿˆZBÿ‡XAÿ…X@ÿ„W?ÿ‚V?ÿV?ÿ€T>ÿ~S=ÿ}R=ÿ|R<ÿzQ;ÿyP;ÿwO:ÿvN9ÿuM9ÿsL9ÿqL8ÿpK7ÿoJ6ÿnI6ÿlH5ÿjF4ÿjF4ÿhD3ÿgD3ÿeD2ÿdB2ÿbB1ÿaA0ÿ_?/ÿ^?/ÿ]>.ÿ[=-ÿZ=-ÿX;-ÿW;,ÿV9,ÿ‘ypþŽfWõ =;Ô÷ÅÄÿÿÎÎÿÿÎÎÿÿÎÎÿÿÐÐÿÿÏÏÿÿÑÑÿÿÐÐÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÚÚÿÿÛÛÿÿÜÜÿÿÝÝÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿþßßÿÿâãÿûÜÚÿã´¥ÿÀ_ÿºwTÿºyWÿ¹wVÿ·wUÿ¶vTÿ´uTÿ³tSÿ²sSÿ°rRÿ¬nMÿ¹‚gÿåÄ»ÿÿíîÿþééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿéÏÊÿ•dLÿ[BÿŒ\Cÿ‹[BÿŠZAÿˆY@ÿ‡Y@ÿ†W?ÿ„W>ÿƒU>ÿU>ÿS=ÿ~S<ÿ}R<ÿ|Q;ÿzP:ÿyP9ÿxN9ÿvM8ÿuL8ÿsL8ÿrK7ÿqJ6ÿoI5ÿnH5ÿlG4ÿkF3ÿjE3ÿhE2ÿfD2ÿeC1ÿdB1ÿcA0ÿa@/ÿ`?.ÿ^>.ÿ]>-ÿ[=,ÿZ<,ÿX;+ÿW:+ÿV9+ÿS7)ÿ¿¦ ÿ; Ôs²~sÿÿÎÎÿÿÍÍÿÿÏÏÿÿÎÎÿÿÏÏÿÿÑÑÿÿÐÐÿÿÒÒÿÿÒÒÿÿÓÓÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÖÖÿÿÕÕÿÿ××ÿÿ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿÿÝÝÿþÞÞÿÿÞÞÿÿÞÞÿþÞÝÿâ²¢ÿ½xSÿ¾yVÿ¼yVÿ»wUÿºwTÿ¸wUÿ¶uSÿ¶uTÿ´tRÿ³sRÿ±rRÿ°sSÿÙ±¡ÿÿëìÿþééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿ׸®ÿ‹W<ÿ\BÿŽ[BÿŒZAÿ‹Z@ÿ‰Z?ÿˆX?ÿ‡W>ÿ…V?ÿƒU=ÿƒT=ÿT=ÿR;ÿ~R;ÿ|Q:ÿ{O9ÿzO8ÿxN8ÿwM9ÿuM7ÿtK6ÿsK6ÿqI6ÿoH4ÿnH4ÿmF3ÿkE2ÿjF2ÿhD1ÿgD1ÿfB0ÿdA/ÿc@/ÿa?.ÿ`>-ÿ_?.ÿ]=,ÿ[<+ÿZ;+ÿY:*ÿW9*ÿV8*ÿT8)ÿP4%ÿ­Š}ÿs#c7%àÿÔÕþþÍÍÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÐÐÿÿÑÑÿÿÒÒÿÿÓÓÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÖÖÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿØØÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿþÜÜÿÿßßÿþÝÝÿݧ’ÿÆ„bÿ¿yTÿ¿zVÿ¾yVÿ¼xUÿºxUÿ¹vTÿ¸uSÿ·tSÿµtRÿ³sQÿ®lJÿΈÿ÷ÛØÿÿéêÿþççÿÿééÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿíîÿ¹ÿ\Aÿ\Bÿ\Aÿ[@ÿ‹Z@ÿŠY@ÿˆX?ÿ‡V>ÿ†V>ÿ„U=ÿƒT<ÿT<ÿ€R;ÿ~R:ÿ}Q9ÿ|O9ÿ{O8ÿyN8ÿwM7ÿvM7ÿtK6ÿsJ5ÿrI5ÿpH4ÿoG3ÿmG2ÿlF2ÿkE1ÿiD1ÿhC0ÿfB0ÿeA/ÿc@.ÿb@.ÿ`?-ÿ_>,ÿ^=+ÿ\<+ÿZ;*ÿY:*ÿW8)ÿV8)ÿU8(ÿP2#ÿÁª¤þh@/à# ƒÊ˜ÿÿÏÐþÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÑÑÿÿÒÒÿÿÓÓÿÿÔÔÿÿÔÔÿÿÔÔÿÿÖÖÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÛÛÿÿÜÜÿÿßàÿúÕÒÿæ³¢ÿÄ}WÿÂzUÿÂ{VÿÀzVÿ¾yUÿ½yUÿ¼wTÿºvSÿ¹vRÿ·uRÿ¶tQÿ²oLÿ¿„hÿëÈ¿ÿÿêìÿþææÿÿææÿÿèèÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿ÷àÞÿ®kÿ‘[?ÿ‘]Aÿ[@ÿZ?ÿY?ÿ‹X?ÿ‰X>ÿˆV=ÿ†V=ÿ…U<ÿ„T;ÿ‚S;ÿR:ÿQ9ÿ}P8ÿ}P8ÿ{N8ÿyN7ÿxM7ÿvL6ÿuK5ÿtJ4ÿrI4ÿqH3ÿoG2ÿnG1ÿlE1ÿkE0ÿiC0ÿhC/ÿfA/ÿe@.ÿd@.ÿb?-ÿa>,ÿ_=+ÿ^<*ÿ\;*ÿ[:)ÿY9(ÿX8(ÿV7(ÿV7'ÿT6'ÿaE7þÈ©¡ÿƒ )X'úüËËÿÿÎÎÿÿÏÏÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿÿÔÔÿÿÓÓÿÿÕÕÿÿÕÕÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÙÙÿÿÚÚÿÿÛÛÿþÛÛÿà§‘ÿÆ}VÿÅ|WÿÅ{WÿÃ{UÿÂ{VÿÀzUÿ¿xSÿ¾xTÿ¼wSÿºuQÿ¹uRÿ·sQÿ¶tQÿ㺭ÿÿææÿÿææÿþååÿÿççÿÿææÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿôÜØÿšdIÿ“\@ÿ‘[@ÿ[?ÿŽY?ÿZ?ÿŒY>ÿŠW<ÿ‰W=ÿ‡U<ÿ…T:ÿ…S:ÿƒR9ÿR9ÿ€Q9ÿ~P8ÿ|N7ÿ|N7ÿzM5ÿyL6ÿwK4ÿvJ4ÿuJ4ÿsH3ÿqH2ÿqH2ÿoF0ÿmE0ÿlD/ÿjC0ÿhB/ÿhA.ÿf@.ÿe?-ÿc?,ÿa>+ÿa=+ÿ_<)ÿ]:)ÿ\:)ÿZ9'ÿX8(ÿX8'ÿV6'ÿU6&ÿP1"ÿ˜~tÿY(ú) $ Ó¡šÿÿÏÏÿÿÎÎÿÿÏÏÿÿÐÐÿÿÐÐÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿÿÔÔÿÿÓÓÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿÖÖÿÿ××ÿÿØØÿÿÙÙÿþÙÙÿÿÜÝÿüÕÔÿॎÿÍ„_ÿÈ|TÿÇ}WÿÅ|VÿÄ{UÿÂzUÿÂzUÿÀyTÿ¾wSÿ½wSÿ»uRÿ¹uQÿ´lGÿÔ ŠÿøÙÕÿÿæçÿþääÿÿææÿÿååÿÿççÿÿææÿÿèèÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿïðÿ×´©ÿ–^Bÿ“\@ÿ’[@ÿ[?ÿZ>ÿY>ÿŒX=ÿ‹W<ÿ‰U;ÿˆU;ÿ†T:ÿ…S9ÿƒS9ÿ‚Q9ÿ€Q8ÿP7ÿ~N6ÿ|N6ÿzL5ÿyL4ÿwK4ÿvJ3ÿuI2ÿsH1ÿqG1ÿpF0ÿoE0ÿnD/ÿlC/ÿjB.ÿiB-ÿgA-ÿg@,ÿd?+ÿd>+ÿa=*ÿa<)ÿ^;(ÿ^:(ÿ\9'ÿ[9'ÿY8'ÿX7&ÿV6&ÿU5%ÿT4$ÿS4%ÿÓ¶¯ÿ$ /k;(ëÿÕÖþÿÎÎÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÒÒÿÿÒÒÿÿÒÒÿÿÔÔÿÿÓÓÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿÚÛÿúÑÎÿ箚ÿË|TÿË~VÿÉ~VÿÉ}VÿÇ}VÿÅ{UÿÄ{UÿÂyTÿÀxSÿ¿wRÿ¾vQÿ½vQÿºsNÿÄ…fÿòÏÉÿÿæèÿþääÿÿããÿÿååÿÿääÿÿææÿÿææÿÿææÿÿççÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÇžÿ‘W8ÿ”\?ÿ“[>ÿ’[>ÿY=ÿY<ÿW<ÿŒV;ÿ‹V:ÿˆU:ÿˆT9ÿ†S9ÿ…R8ÿƒQ8ÿ‚P7ÿ€O6ÿN5ÿ|M5ÿ|L4ÿzL3ÿyK3ÿwJ2ÿvI1ÿtH0ÿsG0ÿrF/ÿpE/ÿnD.ÿmC.ÿkB-ÿjB,ÿi@,ÿg?+ÿf?*ÿd=)ÿc<)ÿa;(ÿ_:'ÿ_:&ÿ]9&ÿ[8%ÿY7%ÿX6%ÿV5$ÿV4#ÿT3"ÿR2"ÿ²™“þnC1ë/ ' ´€uÿþÎÎÿÿÏÏÿÿÏÏÿÿÐÐÿÿÐÐÿÿÒÒÿÿÑÑÿÿÓÓÿÿÓÓÿÿÓÓÿÿÕÕÿÿÕÕÿÿÖÖÿÿÖÖÿÿ××ÿÿØØÿþ×ÖÿàžƒÿЂ[ÿ΀XÿÍXÿÌ~WÿÉ}VÿÉ}UÿÆ{UÿÅ{TÿÄzSÿÂyRÿÁxRÿÀwQÿ¾uPÿºqKÿè¼°ÿþààÿÿããÿþââÿÿääÿÿããÿÿååÿÿääÿÿææÿÿææÿÿççÿÿççÿÿççÿÿèèÿÿééÿÿééÿÿêêÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿêêÿ©u\ÿ–\?ÿ•\?ÿ”[>ÿ“[=ÿ‘Z=ÿY<ÿŽX;ÿŒW;ÿ‹V;ÿŠU:ÿˆT9ÿ‡S9ÿ…R8ÿƒQ7ÿ‚P6ÿ€O6ÿN5ÿ~N4ÿ|M4ÿ{L3ÿzK2ÿxJ1ÿwI1ÿuH0ÿsF0ÿrF0ÿpE/ÿoD.ÿnC-ÿlB-ÿkA,ÿi@+ÿg?*ÿf>*ÿe=)ÿc<(ÿb;(ÿ`;'ÿ^9%ÿ]9%ÿ[8&ÿZ7%ÿY6$ÿW5#ÿV4#ÿT3"ÿR2!ÿQ1!ÿ®Š~ÿ'Œ  S(ÕÿÐÐþþÏÏÿÿÐÐÿÿÑÑÿÿÐÐÿÿÒÒÿÿÑÑÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÔÔÿþÕÕÿÿÙÚÿúÍÉÿ奌ÿÔƒZÿÑ€UÿЀWÿÎVÿÍ~VÿË}UÿÉ}UÿÈ|TÿÇ{SÿÆyRÿÄyRÿÂxQÿÀwPÿ½rKÿÙ¢ÿûÚÙÿÿããÿþââÿÿááÿÿããÿÿããÿÿããÿÿääÿÿääÿÿææÿÿææÿÿççÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿþééÿÿííÿìÏÊÿ£lPÿ—\=ÿ—\>ÿ•\=ÿ“Z<ÿ’Y=ÿY;ÿŽW;ÿŽV:ÿŒU:ÿ‹U9ÿ‰T8ÿ‡S8ÿ†R7ÿ„Q6ÿƒP5ÿ‚O5ÿ€N4ÿ~M3ÿ}L2ÿ|K2ÿzJ1ÿxI1ÿwH0ÿvH0ÿtG/ÿsF.ÿqE.ÿoD-ÿnC,ÿlB,ÿk@+ÿi?*ÿh>)ÿg>)ÿe=(ÿc<'ÿb;'ÿ`;&ÿ_9%ÿ]9&ÿ\7%ÿZ7$ÿY5#ÿW4"ÿU3"ÿT2!ÿS1 ÿN-ÿ׿¼þV-Ô]\LÿÿÒÒÿþÐÐÿÿÏÏÿÿÐÐÿÿÑÑÿÿÑÑÿÿÓÓÿÿÓÓÿÿÔÔÿÿÔÔÿÿÕÖÿüÐÍÿè§ŽÿÔTÿÔ‚XÿÒ‚WÿÑ€VÿЀVÿÎ~UÿÍ~TÿË|TÿÉ{SÿÈ{RÿÆyQÿÄxQÿÃwPÿÂvOÿÈ‚`ÿöÐËÿÿáâÿþààÿÿààÿÿââÿÿááÿÿããÿÿããÿÿääÿÿääÿÿååÿÿååÿÿææÿÿææÿÿççÿÿççÿÿèèÿÿèèÿÿêêÿÿêêÿÿêêÿÿêêÿÿêëÿâÁ¸ÿ˜Z:ÿ™]>ÿ—\=ÿ–[=ÿ”Z<ÿ“Y<ÿ’X;ÿW:ÿŽW9ÿV9ÿ‹U8ÿ‰S7ÿˆS7ÿ‡Q6ÿ†P5ÿ„P4ÿ‚N4ÿM3ÿL2ÿ}K2ÿ|K1ÿ{J1ÿyI0ÿxH0ÿvG/ÿtF.ÿtE-ÿqD-ÿpC,ÿoB+ÿmA*ÿl@*ÿj?)ÿh>(ÿh=(ÿe='ÿd;&ÿc;&ÿa:%ÿ_8%ÿ^8$ÿ\6#ÿ[5#ÿY5"ÿX3!ÿW3 ÿU2 ÿT1ÿR0ÿƒeYÿfVþ\6±Ü«¥ÿþÏÏÿÿÏÏÿÿÑÑÿÿÑÑÿÿÒÒÿÿÒÒÿþÓÓÿÿÕÖÿýÐÎÿäœ{ÿÚ†\ÿ׃WÿÖƒXÿÔWÿÒ€UÿÑVÿÏUÿÍ~TÿÌ}SÿË|SÿÉ{SÿÈzRÿÆyQÿÄwPÿÃwOÿ쿳ÿþÝÝÿÿßßÿþààÿÿààÿÿààÿÿââÿÿááÿÿããÿÿããÿÿääÿÿääÿÿååÿÿååÿÿååÿÿææÿÿççÿÿèèÿÿèèÿÿèèÿÿêêÿÿééÿþééÿÿííÿ”€ÿœ]=ÿ›]=ÿ™\=ÿ—[<ÿ–Z;ÿ”Y;ÿ’Y;ÿ‘X:ÿV9ÿV8ÿT8ÿ‹S7ÿŠS6ÿˆR5ÿ†P5ÿ…O4ÿƒO4ÿN3ÿ€M3ÿL2ÿ}K1ÿ|J1ÿzI0ÿyH/ÿwG.ÿuF.ÿtE-ÿrD,ÿqC+ÿpB+ÿnB*ÿl@)ÿk@)ÿi>(ÿh>'ÿf=&ÿd;&ÿc;&ÿb9%ÿ`8$ÿ_8$ÿ]6#ÿ[6#ÿZ5"ÿX4!ÿW3 ÿU2ÿT1ÿR0ÿG$ÿϳ¬ÿ6¯1n>,îÿ××þÿÏÏÿÿÑÑÿÿÑÑÿþÑÑÿÿÕ×ÿùÆ¿ÿ養ÿÚƒWÿÙ„WÿÙ„Xÿ׃WÿÖVÿÔVÿÓ€VÿÑUÿÏ~TÿÎ}SÿÌ|RÿË{RÿÉyQÿÈxPÿÆwOÿÝ¡‹ÿýÚÙÿÿßßÿþÞÞÿÿÞÞÿÿààÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿããÿÿããÿÿääÿÿååÿÿååÿÿååÿÿææÿÿææÿÿèèÿÿççÿÿééÿþééÿÿêêÿùâàÿ¸„mÿšZ8ÿ›]<ÿš[<ÿ˜[;ÿ–Z:ÿ•Y9ÿ”X9ÿ’V8ÿV8ÿU7ÿT6ÿŒS6ÿŠR5ÿˆQ5ÿ‡P4ÿ†O3ÿ„O3ÿ‚M2ÿL1ÿK1ÿ~J0ÿ}J/ÿ{I/ÿyH.ÿwF-ÿwF-ÿuE,ÿtD+ÿrC*ÿpB*ÿoA)ÿm@(ÿl?(ÿj>'ÿi=&ÿf<&ÿf;&ÿd:%ÿc9$ÿa8#ÿ`7#ÿ^7"ÿ]6!ÿ[4!ÿY4 ÿX3ÿV2ÿU0ÿS0ÿQ.ÿ½£žþrH6í1 !{–dUÿÿÐÐÿÿÑÑÿþÑÑÿýÎÌÿæœÿÙ‚TÿÚ„WÿÛ„WÿÚ„WÿÙƒWÿׂVÿÖUÿÔ€TÿÒSÿÑ~SÿÏ}RÿÍ|QÿÌ{QÿËzPÿÉyOÿÏ…bÿùÒÎÿÿÝÝÿþÜÜÿÿÞÞÿÿÞÞÿÿÞÞÿÿààÿÿßßÿÿááÿÿááÿÿââÿÿââÿÿââÿÿããÿÿããÿÿääÿÿååÿÿååÿÿææÿÿææÿÿèèÿÿççÿþééÿÿééÿöÝÛÿ¤fFÿ^<ÿœ];ÿš\;ÿ˜[;ÿ˜Z:ÿ–Y9ÿ•X9ÿ“W9ÿ‘V7ÿU7ÿŽT6ÿŒR5ÿ‹R5ÿ‰P4ÿ‡O3ÿ†O2ÿ…M1ÿ„M1ÿ‚L0ÿ€K/ÿK/ÿ}I.ÿ{H-ÿzG-ÿxF,ÿvE+ÿuD*ÿsC)ÿrB)ÿqA(ÿo@(ÿn?'ÿl>'ÿj=&ÿi<&ÿh;%ÿf:%ÿe:$ÿc9#ÿa8"ÿ`7"ÿ^6!ÿ]5 ÿ[4 ÿZ3ÿY2ÿW1ÿU0ÿT/ÿQ,ÿnM>ÿ—p`ÿ!x 3£Ü«¦ÿûÇÀþã—vÿÛ…YÿÚƒUÿÛ„WÿÛ„WÿÛ„WÿÛ„WÿÙƒVÿ×UÿÖUÿÔ€TÿÒ~SÿÑ~SÿÏ|RÿÍ{QÿËzOÿÍ~VÿðÁ¶ÿÿÛÛÿÿÜÜÿÿÝÝÿÿÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿßßÿÿààÿÿááÿÿââÿÿââÿÿââÿÿããÿÿããÿÿääÿÿääÿÿææÿÿææÿÿççÿÿççÿþççÿÿîðÿߺ¯ÿ¢bAÿž]<ÿ]<ÿœ\;ÿšZ:ÿ™Z:ÿ—Y9ÿ–X8ÿ”X8ÿ’V7ÿ‘U6ÿT5ÿŽS5ÿŒS4ÿ‹Q3ÿ‰Q2ÿ‡O2ÿ†N1ÿ„M0ÿƒL0ÿ‚K/ÿ€J.ÿ~I-ÿ}H-ÿ{G,ÿzF,ÿxE+ÿvD+ÿuC)ÿsB)ÿrB)ÿpA(ÿo?'ÿn?'ÿl>&ÿj=%ÿi<$ÿg:#ÿf:#ÿd8"ÿb7!ÿa7!ÿ_5 ÿ]5ÿ\3ÿZ2ÿY2ÿX0ÿV/ÿT.ÿS-ÿeA1þؼ·ÿ3¡+Gà㥓ÿØQÿÙ‚UÿÙ‚UÿÙ‚UÿÙ‚UÿÙ‚UÿÙ‚UÿÙ‚Uÿ×€TÿÖSÿÔRÿÒ}RÿÑ}QÿÏ{OÿÎ{PÿᡈÿþÙØÿÿÛÛÿþÛÛÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿààÿÿààÿÿààÿÿááÿÿââÿÿããÿÿããÿÿããÿÿääÿÿääÿÿææÿÿååÿÿççÿÿççÿÿêëÿΠŽÿX3ÿ ^;ÿž];ÿ\:ÿ›[9ÿšZ9ÿ˜Y8ÿ—W7ÿ•W6ÿ“U5ÿ’U5ÿT4ÿS4ÿŽR3ÿŒQ2ÿŠP2ÿ‰O1ÿ‡N0ÿ…M/ÿ„L/ÿ‚K.ÿJ.ÿI-ÿ~H-ÿ|G,ÿzF+ÿyE*ÿwD*ÿvC)ÿtC(ÿsA(ÿq@'ÿp?&ÿn>%ÿl=%ÿk<$ÿi;#ÿh:"ÿf9"ÿd8!ÿc7 ÿa6 ÿ_5ÿ_4ÿ]3ÿ[2ÿZ1ÿX0ÿV/ÿU.ÿS-ÿL&ÿħ ÿFà+>|L;õö¸§ÿÙSþÚSÿÚSÿÚSÿÚSÿÚSÿÙTÿ×€RÿÖQÿÔ~RÿÒ}PÿÑ|PÿØŒiÿýÖÔÿÿÚÚÿþÙÙÿÿÛÛÿÿÚÚÿÿÜÜÿÿÜÜÿÿÜÜÿÿÞÞÿÿÝÝÿÿßßÿÿßßÿÿààÿÿààÿÿààÿÿááÿÿááÿÿããÿÿââÿÿääÿÿääÿÿääÿÿææÿþååÿÿççÿüãâÿ´wYÿ¢^:ÿ¡]:ÿ ];ÿž[9ÿœZ8ÿ›Z8ÿ™X8ÿ˜X7ÿ–W6ÿ”U5ÿ“U6ÿ‘T4ÿS3ÿŽR3ÿQ3ÿ‹P1ÿŠO1ÿˆN0ÿ†L/ÿ…L.ÿƒK.ÿ‚J.ÿ€I,ÿ~G+ÿ}G+ÿ{F+ÿyD)ÿxD)ÿvB(ÿtA'ÿtA'ÿr?&ÿq>%ÿo>$ÿm<$ÿl<$ÿj;"ÿh9!ÿg9!ÿe7!ÿc6ÿb5ÿ`6ÿ^4ÿ]4ÿ[2ÿZ2ÿX0ÿV/ÿU/ÿT-ÿQ+þ½¢œÿ~UDõ> w–dTÿæ›{þÙ~OÿÚRÿÚRÿÚRÿÚRÿÙ€Rÿ×QÿÖPÿÓ{MÿÕ‚Xÿò¾²ÿÿØÙÿÿÙÙÿþÙÙÿÿÙÙÿÿÛÛÿÿÚÚÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿààÿÿààÿÿááÿÿááÿÿããÿÿââÿÿääÿÿããÿÿååÿþååÿÿææÿðÏÉÿ¯oOÿ£^:ÿ¢_;ÿ¡]:ÿŸ\:ÿ[9ÿœZ8ÿšY7ÿ˜X7ÿ—W6ÿ–V5ÿ”U5ÿ“T4ÿ‘S3ÿR2ÿŽQ2ÿŒP1ÿŠO0ÿ‰N/ÿ‡M.ÿ…L.ÿ„K-ÿ‚I-ÿ‚H,ÿH+ÿ~G*ÿ|F*ÿ{D)ÿyC(ÿxC'ÿvB'ÿuA&ÿs@%ÿq?%ÿp>$ÿn=#ÿl<"ÿk;"ÿi:!ÿg9 ÿf8ÿd7ÿb6ÿa5ÿ_3ÿ^3ÿ\2ÿZ0ÿY0ÿW.ÿV.ÿT-ÿN&ÿ‹j\þ–m]ÿw * ’½ˆÿå”oþÙPÿÙQÿÙQÿÙQÿÙ€Qÿ×}OÿÖ€Tÿ棊ÿÿÚÜÿÿØØÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÚÚÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿááÿÿááÿÿããÿÿââÿÿääÿÿããÿþääÿÿæçÿçÁ·ÿ¦`:ÿ¦_:ÿ¤^:ÿ¢]9ÿ \9ÿŸ[8ÿZ7ÿœY6ÿšW5ÿ™W5ÿ—U4ÿ–U4ÿ”T3ÿ’S2ÿ‘R1ÿP1ÿP0ÿŒO/ÿŠN.ÿ‰M.ÿ‡L-ÿ…K,ÿ„J,ÿ‚I+ÿ€H*ÿG)ÿ}F)ÿ|E(ÿzD'ÿxC&ÿwA&ÿuA%ÿs?$ÿr>$ÿp>#ÿn<"ÿm<"ÿk:!ÿj9 ÿh9 ÿf7ÿe6ÿc5ÿa4ÿa3ÿ_2ÿ]1ÿ\0ÿZ/ÿY.ÿW-ÿU,ÿR*ÿ‚`RþƦÿ* ’4¯¼Œÿ܆ZÿØ~OÿØPÿØPÿØ}NÿßkÿýÓÑÿþÖÖÿÿÖÖÿþ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿÞÞÿÿÞÞÿÿßßÿÿßßÿÿááÿÿààÿÿââÿÿââÿÿââÿÿääÿþããÿÿéëÿÒ Œÿ©`;ÿ§^;ÿ¥]9ÿ¤]9ÿ¢\8ÿ Z7ÿŸZ6ÿX6ÿ›X6ÿšW5ÿ˜U3ÿ—U3ÿ•S3ÿ“R2ÿ’R1ÿP0ÿŽO/ÿN/ÿ‹M.ÿ‰L-ÿˆL-ÿ†K-ÿ…J,ÿƒI+ÿG+ÿG*ÿ~F)ÿ}D(ÿ|D(ÿyB&ÿxA&ÿwA&ÿu@%ÿs>#ÿr>#ÿp<#ÿo<"ÿm;!ÿk9 ÿj9 ÿh7ÿf6ÿe6ÿc4ÿa3ÿ`2ÿ^1ÿ\0ÿ[/ÿY.ÿX-ÿV-ÿT+ÿg@.ÿ¾’ÿ4¯=¸É—ÿ߉_þ×{Jÿ܇^ÿô¼®ÿÿØÙÿÿÖÖÿÿÕÕÿÿ××ÿÿ××ÿÿ××ÿÿÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÿßßÿÿßßÿÿßßÿÿááÿÿààÿÿââÿÿââÿÿããÿÿãäÿÿääÿÁ„hÿ¦\4ÿ¨_:ÿ¦^9ÿ¤]8ÿ£\7ÿ¡[6ÿŸZ6ÿžY5ÿœX4ÿšW4ÿ™V3ÿ—U2ÿ•T2ÿ”S1ÿ’R0ÿQ/ÿO.ÿO.ÿŒN-ÿŠL,ÿˆL,ÿ‡J+ÿ…J*ÿƒH*ÿ‚G)ÿ€G(ÿE'ÿ}D'ÿ|C&ÿzB%ÿxA%ÿw@$ÿu?#ÿs>#ÿr="ÿp=!ÿo; ÿm:ÿl9ÿj9ÿi8ÿg6ÿe6ÿd4ÿb4ÿ`2ÿ_1ÿ]1ÿ[/ÿZ.ÿX-ÿW,ÿT*ÿf?-þÄ¥œÿ>¸$EÒܬ¦ÿ즌þÿØÛÿÿÔÔÿÿÔÔÿÿÕÕÿÿÕÕÿÿ××ÿÿÖÖÿÿØØÿÿØØÿÿØØÿÿÙÙÿÿÚÚÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿßßÿÿÞÞÿÿààÿÿààÿÿààÿÿââÿþââÿÿäåÿôÒÍÿ°gBÿª`9ÿ©`:ÿ¨_:ÿ¦^9ÿ¤]7ÿ£\7ÿ¡[7ÿŸY5ÿžY5ÿœW4ÿ›V3ÿ™V3ÿ˜T2ÿ–T2ÿ•S1ÿ’Q/ÿ’Q0ÿP/ÿŽN-ÿŒN-ÿ‹L,ÿ‰K,ÿˆK+ÿ†I*ÿ…H)ÿƒG)ÿF'ÿ€F(ÿ}D'ÿ|C%ÿzB%ÿyA$ÿw@$ÿv?#ÿt>"ÿs"ÿr=!ÿq"ÿr=!ÿq¸$4¯»ƒÿÿÖÖþÿÔÔþÿÖÖÿÿÖÖÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿÙÙÿÿÙÙÿÿÚÚÿÿÚÚÿÿÜÜÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÞÞÿÿÞÞÿþßßÿÿààÿýÞÞÿÊŠnÿ²e=ÿ±e>ÿ¯c<ÿ­c<ÿ¬b;ÿª`:ÿ©`:ÿ§_9ÿ¥]8ÿ¤]8ÿ¢\6ÿ Z6ÿŸZ6ÿX4ÿ›W3ÿšV3ÿ˜U3ÿ—U2ÿ•S1ÿ“R0ÿ’Q0ÿP.ÿŽO.ÿN.ÿ‹M,ÿ‰K+ÿˆK+ÿ†J+ÿ…H)ÿƒH)ÿF(ÿ€F(ÿ~E&ÿ|C&ÿ{C&ÿyA$ÿw@#ÿv@#ÿu?#ÿs=!ÿr=!ÿo; ÿo; ÿm:ÿk8ÿj8ÿg6ÿf5ÿd4ÿc3ÿa2ÿ`1ÿ^0ÿ\.þ‘l]þÅ¥ÿ4¯* ’–eUÿÿÚÛÿþÕÕÿÿÖÖÿÿ××ÿÿ××ÿÿ××ÿÿØØÿÿÙÙÿÿÚÚÿÿÚÚÿÿÚÚÿÿÜÜÿÿÛÛÿÿÝÝÿÿÜÜÿÿÞÞÿÿÞÞÿÿßßÿÿààÿù×Óÿ¾uQÿ´f=ÿ²e>ÿ²e>ÿ¯d<ÿ®c<ÿ­b;ÿ«`:ÿ©`:ÿ¨_9ÿ¦]8ÿ¥]7ÿ£[7ÿ¡Z6ÿ Z6ÿžX4ÿœW3ÿ›W4ÿ™U2ÿ˜U2ÿ–S1ÿ”R0ÿ“R/ÿ‘P/ÿO.ÿŽN.ÿŒM,ÿŠL+ÿ‰K,ÿ‡J*ÿ†H)ÿ„H)ÿ‚G(ÿF'ÿE'ÿ}C&ÿ|C&ÿzB$ÿx@#ÿw@$ÿu>"ÿs=!ÿr=!ÿp;!ÿo; ÿm:ÿk8ÿj8ÿh6ÿf5ÿe5ÿc3ÿa2ÿ`1ÿY*ÿÃ¥ÿ–m]ÿ* ’wzL:õïÅÂÿÿØØþþÖÖÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÞÞÿþÞÞÿÿâäÿ꼯ÿ·h?ÿ·h?ÿµg?ÿ³g>ÿ²e>ÿ°d<ÿ¯c<ÿ­b<ÿ«a:ÿª_:ÿ¨_9ÿ¦^9ÿ¥]8ÿ£\7ÿ¡Z6ÿ Z6ÿžX4ÿœW5ÿ›W4ÿ™U2ÿ˜U2ÿ–T1ÿ”R1ÿ“R0ÿ‘P/ÿO.ÿŽO.ÿŒM-ÿŠL-ÿ‰K,ÿ‡J*ÿ…J)ÿ„H)ÿ‚G)ÿF(ÿE'ÿ}D&ÿ|C%ÿzB%ÿx@$ÿw@$ÿu?"ÿs=!ÿr="ÿp; ÿo; ÿm:ÿk8ÿj8ÿh6ÿf5ÿe5ÿc4ÿ`1ÿqF1þǨ ÿ~UDõw >Gàܰ«ÿÿ××ÿÿ××ÿÿ××ÿÿØØÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿÿÝÝÿÿÝÝÿÿÞÞÿÜ£ÿ¸f<ÿ¸i@ÿ·i@ÿµg?ÿ³f>ÿ²f=ÿ°d=ÿ¯d=ÿ­b<ÿ«a:ÿªa:ÿ¨_:ÿ¦^8ÿ¥]8ÿ£\7ÿ¡[6ÿ Z5ÿžY5ÿœW4ÿ›W4ÿ™U2ÿ˜U2ÿ–T2ÿ”R0ÿ“R0ÿ‘Q/ÿO.ÿŽO-ÿŒN-ÿŠL,ÿ‰L,ÿ‡J*ÿ…I+ÿ„I*ÿ‚G(ÿG(ÿE'ÿ}D'ÿ|C&ÿzB%ÿxA$ÿw@$ÿu?"ÿs>"ÿr="ÿp< ÿo; ÿm:ÿk8ÿj8ÿh7ÿf5ÿe5ÿc3ÿ{Q=ÿؼ·ÿFà= +3¢–fXÿÿÞßþþ××ÿþØØÿÿØØÿÿÚÚÿÿÙÙÿÿÛÛÿÿÛÛÿÿÜÜÿÿÜÜÿþÜÜÿÿÝÝÿ͇hÿ»jAÿºkBÿ¸i@ÿ·i@ÿµg?ÿ³f?ÿ²f>ÿ°d=ÿ®d=ÿ­c<ÿ«a:ÿªa;ÿ¨_:ÿ§^8ÿ¥]8ÿ£\7ÿ¡[7ÿ Z6ÿžY5ÿœW4ÿœW3ÿšV3ÿ˜U3ÿ—T2ÿ•R0ÿ“R0ÿ’Q/ÿO.ÿŽO.ÿM-ÿ‹L,ÿŠL+ÿˆJ+ÿ†I*ÿ…I*ÿƒG(ÿ‚G'ÿ€E'ÿ~D&ÿ|D&ÿ{B%ÿyA$ÿx@#ÿv?#ÿt>"ÿs="ÿq< ÿp; ÿn: ÿl9ÿk7ÿi7ÿg6ÿ]*ÿŦœþ—p`ÿ3¢*!zn@-îܲ­ÿÿÛÜÿþÙÙÿÿØØÿÿÚÚÿÿÚÚÿÿÛÛÿþÛÛÿÿÝÞÿöÎÈÿÈ|Wÿ¾lBÿ½lCÿ»kBÿ¹i@ÿ¸i@ÿ¶h@ÿµf>ÿ³f>ÿ±d=ÿ°d=ÿ®c;ÿ¬a;ÿ«a;ÿ©`:ÿ§^8ÿ¦^8ÿ¤\8ÿ¢[6ÿ¡[6ÿŸY5ÿžY5ÿœW4ÿšV3ÿ™U3ÿ—T2ÿ•S0ÿ”R1ÿ’Q0ÿP.ÿO.ÿN-ÿ‹L-ÿŠL,ÿˆJ+ÿ†I*ÿ…I*ÿƒG(ÿ‚G)ÿ€E(ÿ~D&ÿ}D&ÿ{C%ÿyA$ÿxA$ÿv?#ÿt>"ÿs>"ÿqÿ³f>ÿ±d>ÿ°d=ÿ®c<ÿ¬a;ÿ«a;ÿ©`9ÿ§^9ÿ¦^9ÿ¤\7ÿ¢[6ÿ¡[6ÿŸY6ÿX4ÿœX4ÿšV3ÿ™V3ÿ—T1ÿ•S1ÿ”S1ÿ’Q0ÿP.ÿO.ÿN.ÿ‹L,ÿŠL,ÿˆK+ÿ†I*ÿ…I)ÿƒG)ÿ‚G)ÿ€F(ÿ~D&ÿ}D&ÿ{B&ÿyA$ÿxA$ÿv?#ÿt>#ÿs>"ÿqÿ³f>ÿ±e=ÿ°c=ÿ®c<ÿ¬b;ÿ«a;ÿ©`:ÿ§^9ÿ¦^9ÿ¤]7ÿ¢[6ÿ¡[6ÿŸY5ÿX4ÿœX4ÿšV3ÿ˜V3ÿ—U2ÿ•S1ÿ”S1ÿ’Q/ÿ‘P/ÿO.ÿN.ÿ‹M,ÿŠL,ÿˆK+ÿ‡J*ÿ…I*ÿ„H)ÿ‚F)ÿ€F'ÿE'ÿ}D'ÿ|C%ÿyA$ÿxA$ÿv?#ÿu>"ÿt>"ÿr=!ÿn8ÿp<"ÿÁŸ“þ¯‹ÿU-Ô\' k>+ëÓ«¦ÿè³£ÿÈwMþÂnBÿÂpDÿÁoDÿ¾mCÿ¾mCÿ»kBÿºjAÿ¸jAÿ·h?ÿµg?ÿ³f?ÿ²e=ÿ°e=ÿ¯c<ÿ­b;ÿ¬a;ÿ©`:ÿ¨_9ÿ¦^9ÿ¥]8ÿ£[7ÿ¢[7ÿ Z5ÿŸX4ÿX4ÿ›V4ÿšV3ÿ˜U2ÿ–S1ÿ•S1ÿ“R0ÿ‘P/ÿP/ÿŽN-ÿŒM,ÿ‹M,ÿ‰K,ÿ‡J*ÿ†I*ÿ„H)ÿƒH)ÿF(ÿE'ÿ~D'ÿ|C%ÿzB$ÿyA$ÿw@$ÿu>"ÿp:ÿL3þ«ƒtÿÓ¶°ÿmC1ë'Œ /$ X'úÉ —ÿ볡þÁmAÿÀnDÿ¿mCÿ¾mCÿ¼lBÿºjAÿ¹j@ÿ·h@ÿµg?ÿ´g?ÿ²e=ÿ±e<ÿ¯c=ÿ­b;ÿ¬b;ÿª`:ÿ¨_9ÿ§^8ÿ¥]8ÿ£\7ÿ¢[7ÿ Z5ÿžX4ÿX5ÿ›V3ÿšV3ÿ˜U2ÿ–S1ÿ•S0ÿ“Q0ÿ‘P/ÿP/ÿŽN-ÿŒM,ÿ‹M-ÿ‰K+ÿ‡J*ÿ†J*ÿ„H)ÿƒH(ÿF(ÿE'ÿ~D'ÿ|C%ÿzB%ÿyA%ÿv?"ÿt=ÿѱ§þÈ©¡ÿY(ú$/  )ƒe<,ౄwÿ⯟ÿØ”vþ»h<ÿºi>ÿºkBÿ¹jAÿ·h@ÿµg?ÿ´g?ÿ²e=ÿ±e>ÿ¯d=ÿ­b;ÿ¬b;ÿª`:ÿ¨_:ÿ§_9ÿ¥]8ÿ£\7ÿ¢[7ÿ Z5ÿžZ6ÿX5ÿ›W3ÿ™U2ÿ˜U2ÿ–T1ÿ•S1ÿ“R0ÿ‘P/ÿP/ÿŽO.ÿŒM.ÿ‹M-ÿ‰K+ÿ‡J*ÿ†J+ÿ„H)ÿƒH)ÿG(ÿE'ÿ~E'ÿx> ÿx? ÿ«oþ̪Ÿÿ°Œÿg?/àƒ)  #s; ÔŒaRõܵ®ÿÓ—~ÿÄyUþ»mEÿ¶g>ÿµg?ÿ´g>ÿ²e>ÿ±e>ÿ¯d=ÿ­b;ÿ¬b;ÿªa;ÿ¨_9ÿ§_9ÿ¥^8ÿ¤\7ÿ¢\7ÿ Z6ÿŸY5ÿX5ÿœW3ÿ›W4ÿ™U3ÿ—T1ÿ–S1ÿ“R0ÿ’Q0ÿP/ÿO.ÿM-ÿŒM-ÿŠL+ÿ‰J,ÿ‡J+ÿ…H)ÿƒG'ÿ€D%ÿ„K.ÿZ@þº’ƒÿãÊÆÿfWõ; Ôs#  =! |S(àˆYGÿÚ³«ÿòĹþÌ‹nÿ²c9ÿ±c:ÿ±c<ÿ°d=ÿ®b;ÿ­b<ÿ«a;ÿ©_9ÿ¨_9ÿ¦]8ÿ¤\7ÿ£\7ÿ¡Z6ÿŸY5ÿžY4ÿœW4ÿ›W4ÿ™U3ÿ—T1ÿ–T1ÿ”R0ÿ’Q/ÿ‘P/ÿO.ÿN-ÿŒM,ÿŠL,ÿˆI*ÿƒE$ÿƒF'ÿ±ƒnÿçËÄþÖ¸±ÿˆ]KÿS)à! | = Q'”J"Æ„]Pí¬‚uÿ”ƒÿÚ¨–ÿÖ…þÂcÿ´lIÿ§[3ÿ¦Z2ÿ¥Z3ÿ¤[4ÿ£Z5ÿ¢[5ÿ¡Z5ÿŸY5ÿžY5ÿœW4ÿšV3ÿ™U2ÿ–S0ÿ”Q/ÿ’O,ÿL)ÿ‹I%ÿL*ÿœbEÿ­yaÿ¿‘~þÈ¡’ÿ¾˜Œÿ°‚ÿ…aSíJ"Æ'”Q  *P- žAâi;&öwjùб«ýðÓÑÿâ¾´ÿÖ©™ÿË™„ÿÀ‡nÿ´vXÿ¯pPÿ©iIÿ¦eCÿ¥dCÿ¥dEÿ¦iJÿ«qUÿ¶‚jÿ¿’ÿϨšÿæÊÄÿôÝÝÿд¯ýžylùi;'öAâ- žP*  -F`z: P+Á[4#×c:(êk?-úoC0ÿrE1ÿtG3ÿuG3ÿrE2ÿpD0ÿk@.úc;)ê[5$×P,Á: z`F-  "&)++)&" ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿÿÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿÿÿðÿÿÿÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿøÿÿÿÿÿÿÿÿÀÿÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿþÿÿÿÿÿÿü?ÿÿÿÿÿÿðÿÿÿÿÿÿàÿÿÿÿÿÿÀÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿü?ÿÿÿÿøÿÿÿÿðÿÿÿÿàÿÿÿÿÀÿÿÿÿ€ÿÿÿÿ€ÿÿÿÿÿÿÿþÿÿü?ÿÿü?ÿÿøÿÿðÿÿðÿÿàÿÿÀÿÿÀÿÿÀÿÿ€ÿÿÿÿÿÿÿþþþü?ü?øøøøððððððààààààààààààààààððððððøøøøü?ü?þþþÿÿÿÿÿÿÿ€ÿÿÀÿÿÀÿÿÀÿÿàÿÿðÿÿðÿÿøÿÿü?ÿÿü?ÿÿþÿÿÿÿÿÿÿ€ÿÿÿÿ€ÿÿÿÿÀÿÿÿÿàÿÿÿÿðÿÿÿÿøÿÿÿÿü?ÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÀÿÿÿÿÿÿàÿÿÿÿÿÿðÿÿÿÿÿÿü?ÿÿÿÿÿÿþÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿÿÀÿÿÿÿÿÿÿÿøÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿÿÿÿðÿÿÿÿÿÿÿÿÿÿü?ÿÿÿÿÿÿÿÿÿÿÿÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿOpenLP-2.4/resources/images/import_selectall.png0000644000175000017500000000142012657640340021075 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8‘Mh”W†ŸóÍý~’|3CÆ*€4¤ÐM„aÚF$âN-EBWݵtW²(YtUºqãάE-í¢jˆYTˆ‰4]ˆ‰%Zbc£3“æçÞ{ܘ/Æì¼p9gsŸ÷y¹¢ª¼Ï95.çÃÒdGT•J¥Òˆãx Ûíúááa™žžÃ0$MSâ8fccCkµšÑÙÙÙƒ©;væôhçú/¿Õï}0ª©jÐ××G±Xdpp­­-YXXÈcLvËŸ<Ë=ß~ÒÿÇ•oÞ°7÷*%IB?qcŒAU1A/ªÿòøC³õÇOÌ.UEDPUÚí6A†!Æ¢(¢R©`{mÒÿg­æ)x„{"DUÕ(ŠˆãU%MSr¹"òì¸ðùsn¯uùä£>n?@DX]]•ÌÀ{O>ŸÏ½}Ï?eé/Ïdõ(K>^dUÍ^÷™™¦¦¦ðÞc­ÍfýáE._kqùâ—´ _qÎZæææ˜ŸŸß¨*¥R‰V«E½^ÇZ‹sާåÆÂ?~†Íævg‹4MÉçó‡ ¬µÄqL¹\ÆZËýå«Ü\¼ÅO?\@~Í1Î9¬µ™áï=Fƒz½NãÕK ¥™¨g»3‰ý{; IÓôÀw0ˆ¢ˆr¹ÌÝ;2`^qòü%‚ w Ù9‡s.3Þ6°Ö²vÿ;;/9uö;D¬µôz=z½^¶2¨V«ˆÍf“|¡È§§Y__§Óéd©"B D„±±±}@’$8爢ˆ¡¡¡CÊïîªJ’$û€åååoDääÊÊJê½ÏyïªU ¼÷ò¦¦øÝÝÝÆæææÀk 1ˆÿ¨5ûIEND®B`‚OpenLP-2.4/resources/images/presentation_load.png0000644000175000017500000000102312657640340021244 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/theme_edit.png0000644000175000017500000000146612657640340017654 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<³IDATxÚ•“mHSaÇϳu¹w—en©&¹%¾ f&4Œ0‹ë‹¡²}0¾HI² аW(Ô  EŒ>T…¢TË’Äö!Ö˰͹­t{äÞí>;†Œá‡úÃï9÷œsÏáœË}Àn·×ÉåòçÐŃÿÔjõŒÕjå\.W¸±±±%¬žÓ@ål=Z¹èWÁÝò¸oÚ¬D§Ó]w:üÒÒ’bzzú!Ä„ô‚Dz:kɽ ’K ¸›6ò8 2$óz½Ïl6Û M$NÍæ]¡••§Q>4 2aa„¨€G'² >)€äëëšIŽŒÒVU}VòüNžÒh‘^?û^v«ƒ¹ëC€ÚOnèÑÐrPHœ<öaÖ“@J«mm½Å%%±\Bä@ÀdW @JnÖB(a ½È”X (s v?Ìç5å}ééé™3pçÑh4×B†>‘b4ÍȤ CHR Û Ã1‹Åò`yy¹ cý………‹>ŸïcFSHR ®ðù„L €MÞy<žËŒ±Åh4šSŒ«Tª­ ¦/2™üˆ#@JÑùÕ ì7¤„“\Õjµ‡ãñ¸F„¨ƒønD"NnB¼,n‡Aä ’®¾H$ò"PJõe–i¹.ä6âWˆ§‚¤ WдS£ÍöÊb—³ õhӾݩtö†WfP„änö«o=b}4z'è~ÒÍúµ¯“qRŽäüÓ…AI/žw¼:ÛY-”š·W¤çȸ¿coØ¿MŠÀ|P¯­ƒ‰÷ƒ‘óƒ 1òò½é÷ƲóßZ6îÂË!wßP¶9¶ºEJW2º¦®#4–-Ëâx©2#J j¶W ‰ˆ)‘ó“¢ÅZŠðS°’ΫºHIEND®B`‚OpenLP-2.4/resources/images/general_back.png0000644000175000017500000000161312657640340020134 0ustar raoulraoul‰PNG  IHDRÄ´l;bKGDÿÿÿ ½§“ pHYs „ „ªâcytIME× 4$z,IDATxÚÝ“IhA…_UwÏÒéL¢YÅ-&*Š ¸†¸€¨x4ŠûADA<EoŠzS‚8—“ŠBŠ‚\.n¨Ñ˜‰“dzzºº«; ‚&*zò5 Šúê¯÷ÿÿ_S7_X¼öàÍûíÏZ1ŠÌßnJSÉ‹-UN4Í®±ntu/°ç¯À ›Ò5"(´7ͪ]³c]ñÎ¥oà¯*ž¶õÒšaíWÏ®iœ;‚s¸ÚÌÍŒxÙ‚’'Æ·l^5‹V–— ïA0,îfQ1o»A¨ bÄÙúœ–Т?…n¹T%,š^~hÛªzš°(Ü‚‚šEæ^<ßÇE1ÇePŠû¢¬$&ö½Ð-òC“¶\Üj[¤uÅÜŠ²ºq)¦ Ã0@ih B†(¥" !´9x€1mW:ðöîYb~7F%€:[í¨]ÓKáØy]¥iI˜¦¥á*‚JBx•RF`pŒÁÓQ}Î |˸aCÛÉY×ä1ÁŒúZ>c!ˆÅK §ÚDÃ)h†Ò $Pô>¸èíËà}Ï'hÎ7°”gÊÍûèùT€ã”ÂvضB?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/wizard_createtheme.bmp0000644000175000017500000052033612657640340021407 0ustar raoulraoulBMÞ 6(£^¨ é$é$.'0.''.*9722#-'    % 6:3US6`nDtFq€AkAi}Aly@guCn}Bm€Epƒ1Wg$@>'CK#@AT|ª%a¯Fž#S²a€ÖEN¼8FÚ/5“BAy=8l>?d=D[8>n4=u4;L:?K:B].<`7~5› 6§1ž2ž 2œ1š 4› 5˜ 2’ 4–<˜<„C› C©D¤ E§ G¬J¨qÄyÇœÙW©U¬ IoÎr×sÚ7¯âR¥Ê_•*Uˆ`‰¸]‘´ n³+\& U>*jO?44P"M‡u{ˆžoF,wË mÏ`½ lÊ IŸ"ŠÞkÅnÌ}ÞvÓj¼ }Ë)t³!i£-~» w¸'Î+Ý~¿P€dV:MP7oyNv~RnuOpw_w~`}†hotc²°ŸÈ³iÀZn}“‚rHQe„m`ª¸Ì‚’È»¼¿¾ª‰¬˜oP@hLDeF5p@&wA%g:*P/)xJ+Ë“BÑ¢WÍž^kƒŠ&Y‚'\Š*])d„'i‡*nŠ0`e% ##.,1. :70,#,)*+&"'&.**HO5XU:_nGoŠIuLw•FsAoŠ@n…CoƒCs…>n{)NU$GR9dqHtˆ,OW-NQ$EE-PK)C?O„ÃP¢-OºagßBGÇ0>Ê3=Ä:=“@9^?<\=?F@AF=?T1:s/7H1861;9.?N-=\%7j4†3¡0¢3¡ 5¡ 6Ÿ 5 4›8 =¡ B¢ G¨J®M©F¢W¸b·‘Ó#±è{¯@(hgÅnÒaË2€à$ˆÎtÉéeš¿b”º»Ôà¶ÒáG¹+R+   ?P ^²[¯0\¢˜ziWw¡rÍ nÊd¼y×*Û AŠ]®z×c¼V¨‚É4Ô"j©.Ì zÀ„ÊŠÊ ^ s¼EQNwtJajO}‹q{ˆpjvYŠhœ~gl^¤ž…¾»¯s·(>­u@hZbkA&–xSÈ· ¸ªšeJDpf\{gRQ1gC+wD'~H(o?'f6#_4ŠLÕ§[Уco‡>x¡7e†'^Š)j‹*p/qŠ6NB(&*)"""!"($+(&",(("!'"%#,(4+21;^hHp…JsˆIq€IsƒJu‰EpIqGr3Ua-Qd5`s1\b8bh2V^-OS,QW"??8Th1p¶H¥R_ÏEF¹=D¬9FÊ6:›DAAAPB>T29"<{&=G)=B(?L.@M2;\$8^7z/ž0£2¦3¡4¢6¤ :© 9¨ ?¨G©L¬P«L¥_¶ j§D¢ÐVÇïCeFYµfÄiÃxÏ$xÙ2~ãY¦Ø#dŽQŸÉl¢¾›ºÊ'Kh +P8c=h3 :6iPŸ\±U«Vlš‡iSry}Dl•huŒQo  ^· J’c³„Ø\¯e³,”Ù#‡Ô"…Ð!ŠÏX˜mµv½ T•G¦Ù$?Q\S.v{XqiŠ˜y†•“¡ˆ ®z”œ‘‰…tŽ‚mLs’[TT¹B]>T0!—c5”k<¥‡foF)~U/sB^3~W;qB$yG(s@"~@€D!¥`#Í‘:½ƒ5¸†AŒ€`©ŠYGm…!`€,m†0[\1\f(&'"*%&$$"&$.+,*'#(#%!& !+FN)CH+,+*9:2Wb@gvQj¾ Qža´nÀ pÅ|Ï!Ùp¼q¼p½`«%{¿b %CcXnhky;cu7am7cq6bm/Xj8cpw r¸l·rËqÌzÏo»qÎcÃ(|Ó<„ m­Z¸æIžÑU”B~ÓE}¢74AZ'Wœœl>Âq¸b½j‘Y0#)7y·o¿l¶ 9{d¶•ä‡Ô`§h² pÀ{ÍQY¡%[œ3RvOVGlqT€†a“£ˆ”§’¥¹§‹šŒ•l¹Ã©I@/$§u+—RKoC'W3!|P(‘e?¯q6“XkL.k<k;y@ˆT$yG!{I+`#·z#¿ ³{.¨q+‘[$ƒS$‘]$¢}@Jrr/;'.1>E$ '@9+%%*&&# %"%,(#'#'! *-7A$M0,.SZ?lw>mxW!CjDu5Œ ?¨Gy/Wa=TVJB1.Vr lµ†Î o½ zÎzÒ"†ÕlÃ"€Ö >Š 8Œ)wêŒØ{¾äM†¾E‰n¶\›%D-  1"gE'¿wÃz ³dª^WKM(.C">yM5Y:tf²s½u» S—r¿xË Vž#k»M#]«#]¡GnŒpxcz„j‡–{‘Ÿ„Šg~pK¦šƒÄ²Žg@f/ ‰J T};£i,šh;›g6˜m9›^\5\9"|M'}I"‘X#“c8xBl5žk@L¬r%”h/†T …P…T*€U&¥€>l{\3; BDGL)($:='#"' +'!  /'5332'$ !4.'?=5RUCkw1Yt&EO8al=i|8fv;gu:gv8en6fj9hp3`f&O[;gEvˆIzŽ:eq8f…Rz˜3l­H™K*9§<<´8BÌ3:ÑNFã<8Ó?=Ð65×76Ô/2É*F¹N¢LyPzO‚HHp!C>$>;%;7$=8%BA)A>'AC*HK'HO(DL*DH-HQ&CZB|"Db6YdMZ~·l«t´ e¥ n´m± c³\¹xÜ6‚ãoÕvÂL–ÌM©Ö [‘ CHw$d™L…  F-W:‚T#ºx'ªm._=*.*34=XKmžA…+P1gK‘n¹†Åk«'yºd§[¥$a«#^®!]¯3r´T~’’„}‹}Š‚‹lvB~fHÈɾ¯z:¬k"¿rÁtºn³hŽK’X'{E‡JN#hG,iB%zH “Z#že%ˆW#|HuL-dMzT.xM(oE&ˆ`2f6€X(Žl6i7`d[19$<<HJ*'& *+'")!+%" &$560N`2SaAk{@lƒ9dx>j|>k~>j{;gu8gr7hr8gv4_p6ds7dl9fm?fs@nˆFwŒQ{,fªF–Jš)F¨7D»9@Ñ29ÏPGã2-À51Õ$&Ï.-Ð88Ò>¬N¦Q•PLwKtDX#FC&D<'<5%?=*A;-DB(CD'BC$DM%GQ&FS%Jc"Jh!Ef!Hq'O~'V”"P“'Cr V‹d¨p± gªmªn¦ i· h½yÏ„ÜÁ cœ#hŸQt+'KˆÂd,N  F,U5‚Z.¨r4^K='"* %J[uAi¢4Lx3a;~>ŠG’?s8~J•I‹K’Sž,e®%a¯=x¼v‘Œt‰srw„sS†b9Ÿœ‹}n\º¦‚º’[ÀFÀ‡4¿‚)Ƈ)¿+`*o?M$Œ`3Ži:†_9|O'ƒ[)—b)¡c"‹Y$wK(mP8jH%qM+jO.{Y2‡].j9‹d4˜h,’f-H@(9;=>MM(# ! !10*'( %=A%;A$((%,&-LUEq‰H{“DuŽAo„=k|Bn€>m€>m€;jz;jvns?ovFs˜(a©IœH™#I 2E¶ A“*S—ZŸYši¤Lj477F@[ Vw Y€l<{Ko;c6 r5£q)\J>?HKMO($  (&'"54'?? 526C#Df";E8[nHvŠT{e€ŽKk7`qCt‹DuŠAq‚Ap~?oƒ@q€>n4fZH‹j’vCtE†j<ˆpH½‰?†.oVB?DDUX"%$!"!0.$ $-,$=@3.)(4[{Lv‡.SqBr“DrŽBpˆMot„…;e}>m@oƒÆ'-Ê79Û*¤Sº QEH)J9"H>#D>$95*:9Sn|Œ¹Ñ‡·ÓƒªÄOy¬P¨U°T®0h¼n–Ä;nº'aÁI´K»I¥KšK“N–%H{+Iˆ&9_!#!,'--./<3B7B70NX^› $F,   *GSs©È´œ‹lB¥bj>A)!:'-6M0l>Š4w=€: <|G|9A;B7898=Y/a‘Paz›g5·•q¹³ª»–ZÁŸfŨo{WnhPG8$ufLy_8…mD’„]›ˆ]‡m=…j>{a:|`7z`7o^>p`>v`:tbD{fB †Z’}T…rKƒi>{K¿ŽLÃŽH¿Š>•{SRN>,0=@""*#)&  0+& (#0+80("-.=__>g„L{“Fw—K|ŸHx™Cs“j}=j?n‡Dm„KtˆCl‡Ct‚8cg>krEx‰Al}.^•O§Fž <‘Gž#E­8CÌ8;ÅGBÓ63¾C@Ù6=Ê/7Î*2Ï)¥N¬ C™ AjGd8^hPtŽHg“k¶rŸÊk–ÈS{¿>qºL¢J§P¯MµP¹/c¸ V¯OµIµK·M§*d¢6j“@o$Gq(Ix+H‚+Cp(>^6Jl&,!E4@5@9"@9 A5B6B601.&**:4')#1?30Sq¢fVO$2Pn@D/ 5-).%(/TJ–A 0q7z6|8k?f9PypYws^ˆ{[’{[ŠvTnM€oHvpX¤Œ^Ç’GÄŒD¾‡F»~7{R\~†7QV%*(&)((#)#""%!-)&!,*'2/4.4144$BG>diBuŸU„žU‰¨WŠ­R„¦P¥Jy™Fy™Eu’ArŽBrˆDtŒEvŽGxŒAo†+R`+KF6ZY9]b(Y“I¢E–GŽ.J{=J„BJ”=D9Dœ;C·6?Ç39Ì:AÒ7=Õ$-ºG£I°F¡ Ft_‡›UxÃMrÁKs¿HnÄGlÅCl¾%V¦CžG¤D©'`¿Z½M«K·L· H³S¶#c¹>ƒÃ6b}#4 Gq&Eh'Fs,Gg7LQ+;7-;*7E=56+52B=(@:$A6A9 F: R="F<#E<"I8L7"@=J&A}@*Zž(K~!3%2B#9X9z<€8}0q9~5k4N3D#@J(CI6A7:795.2/;6315+8B)A^\EÁ†<º²¢©›„µšq¸¬ŽƒmW^eSOKj\Bl\?h[Fr^IgEeUSXLTcXVMIuFM‹ƒ‚fl¡fanuq™^[›BApŽŒ{š”v Œh¿ŽNÅ’M·‡GÍ—LÁ‰?·“\Qly!;R ,))%*$ 0)+',)21#@>!97512+"AA-R\M€Ž=fyQ‰­S†¥M¡Mƒ¡I€K}›I|™I}E{šEy™H}™ExAj|;d€!>E ;>$@C'Y‘E J,85GH;>;,D=*O@,G?.E;(I:%F8$JB5=J]!M‰KH’O‘L‰ 2j6m?}6y0t9|9x7z3b:I5<9E5:5?8D6;784.22750.889M@KV„gKƒq`’ާ˜~±¦‘…ˆ…ltr€nZtY=RC\JFˆB<˜J@ %£+2 9O¸(É,Í5]ß &½;±"AÇ+º‚UU•ZZ’zj|µGÄ‹GÉšYÏšNÚª[Ý¡Mut{^ª$"+($".0!68+(#$'!)%42 <8"A@'DK0.-(2, <6%>86]mT¬N‡«O†¬J‚£Mƒ£L~ŸJ}žMŸL‚¡L‚ŸN‡£EwŠ/TXEpz+LR(IO'IZ)]›J¢F—#L‡6SmDTC5R\9]‰;a­&X™1U’.N™-O´/FÄ$A¨PµMµI›L|K_NvªEpÄ9\ÁDgÉ'S¬E¢ CŸK® =¨A¥"T«R¦O§T¯Q¯U³(lÁH‘ÚKju!+$6L(@U/@L-6$ +')"1 "9300".#50?5/gRHVD=F;8?98?HQ.d‰H„KŠOŒNU”RŽ9w,d7t=~.o3u4s 1m,I3>8A:F5>6?5=397=621/586531=K=Z%P~:EYPJP•¡¢¶±Ÿ«ª‘peR^8eQyhmÖQWä Áµ ¹3É)XØ9Ê ?Ö8Ö&º2È2Ó)ª ²­£$!soQcjP•—nΙPÖ¤W¼^Cc™[¯+/%'+'#'%(& '!)#'%$#%60*GLGt¢9^‡1:/)'#%"86BnwMƒ˜R‡¤P…£Rƒ§N€£M~ O~K}žL~šGz•>q,Wt$FKBL-a€JHjK|DDUcZbŠœ°‘œ›Ÿ {oS\Je5=ß…–ó7:©   µ §8ÆR×!FÞ ž…5É CÏFÐ=Ô ,¾7Ï?Ò<³&’³pUYÏ£oÙ©i€y|"[¬]´-1'""  %#%""99/-' #"*Qw=ks:bq#BF#!(*44*+AW7kŠCz–Ez•D|–E—H€™LœK~žN‚ K¢J~‘:cg)Le?w™I†’E{‡,b EžHŸ(K PR¾OIÃJKÃDIÀLU¯Sa¥UdŸRa˜Wf—SeCY¢)Q¦ L Jˆ M”Lv9\_kž¸b É=n°/j¼U´Q³C©L°M¯R¸I¬J«P¥,i·1vÅt¶ØVeM #-3%0&$/".*2$ - -)0 "# &%Aq )M,&+?55775"Ar_©XžO‘Q“PŒOŠ D‹6w ,k 'Z7l5uA„ 1n -f )X?O9L89675@8B7B69772,0+.43;?UJˆ9u,\$2d9Gh‹˜™©¤~jaR00§,ß!®‚+„'š3¿>Ô/mæ#c×+Ž$HË&¬8¶5Å0iÚ!MÅ9±.eÞ6 $š!'¬D4=ºž‚¦`»(xÅ,{Ç*>A$!+.*FW 39%"(+;`x3RY-)*'589e]L‘²J“»<~©'Wƒ+Y56;G9F643647:B;^7T9V @†!1d)1Z(0f)0OJKPmpb„}…!(º.1·#ªjj#)2F)=¦AYÄ/UÂ:uÅ XÄKÆ9¾PÕ+nÜ0xâZËD¹u$7®;SÎ`yÐnÅ_í)wà:®ê6­ë!%"%:A=`o(>B100H:,)!563723/\}?z¢K¬L’°O‘±Mް,Wp.6 BS;p„C€˜J„ F€šD~˜B~–A}‘B”D€•?v…*ZqB|™4`g7`c7dm-Td'Uˆ(T¡[`e\WXGLiai™KSˆ=E‰OW¿EQÃ.H´%L§2N¸:FÉ.B»)[¶0b¸-U¤)Q‘*Q‡2U†d¥e½=³5w¹?~ÈV´)]¸P¯Q¯T´J¤J¡+hµR’Ì|£ª;O0 "$FM=%"+%-$+# #"#.4  %:,A"ELq™CŠU§ Rž R W£TžGŽH…J7z.g 1q 1n2h6^1>:O=E$B@>>9;:C9I AY9H?WOqB^:]8`2g&4h)2^ (P#(?")K5BXo{ˆ…~}š‡q~w’|v‚cVRl`X“ƒ†™“ª{•ÄL«çhÄ ^Î!iÒ)“ç%rÓ+sÜO×!DÁ.9³Ÿ-YÑ6vâaá+xæ"dì`Ý.˜ì0¡ä #"!6;6R`"2;'AL3?#-/49(GQ)Uw>z )X 1e3b3;8H:R9899:;>F?P6BB\A]DfS~Rz"T{Ez3w%L)0>!&@,0C%,@$4dzŠ ·Á¤±¼hr­tv“{uzt}xk{“…Œ™–œP¤Ñ%€Ú5µcÕmÓ=»U„Ö9rÔHrÊSsÛ#;Ã>wÜW›í&iç%mï Zæ/mß=œæ%zÞ13*+.1.Ja:]t5WgEk|".)#>:(GLH„ R“»X—¹T”¶Q޲N‰­L‰©Kˆ¨H‡¥?|œD‚ŸF‚ CŸB‚¡B¢Eƒ¡F„£E„¢H…¡A}šGƒ’1]]0a{?y‡D~Œ:no-]‰K¢IŸ$I”Z\«U[HXŒG^¢=PŸFX®L]¸K_²F[º1L´O¥1i·HxÀOyÈLuÈWÌSzÇNtÏV~Ï\‚Ê_ÅA{®W§!W¤,`‡3_sM‰H“K‰P{;C&.!#(CH? )"!)!(#  #! &"$**'& -5K7†”"Œ·[¢? 9‚ByS•K‘3hC~3o6q.`5e6W6?-8:K?C=AFV)IVaä^è7vî'gáFƒì/wí^ßSÐ+pÞ*pá_ç%@>%?F*,118Zc<]a0.-E>$$!>\>l*?3\iX–¸W–ÃU“¼V“»W“ºS¸T‘¹PŒ°MµLŒ³H‡®Iˆ«H‡ªIˆ©J‰­JˆªH†¨H†£?u‚-UX+]x?~1]l"EM CD+SvGH¤)L¥GK¢:J£I[¶R^´Wf¾[e¾OZ¶T^ÇS\ÒKR×6HÏG± <¢"9±);­_zÆ/ %&"  %",*9,MVM&0*'.$ !--Qc&~  GŽ /g #F3c;h=k/V3dDG]C`Io)]Š Ly4Vz)I&0F#-!*#*2$/"'/]bd¤¦¬¦¼Ä‘¢¦SRV06EQUj-A‰#JÄ.CÝF ò;¥#Cß3SÒ>·&7ÊDZØ>I·(Oç'Pâ"PÙ!aë"pÞWÑGÇFÊbå6yñ'B@Fck:[c'CG.* 2/#,& 8@>eta—ªV‰©6]ˆCx `žÉ]™Ã[˜ÁY–¿^™ÉZ•ÀW“¼U‘·X“·V’·U”½Q¹O¶N‹±JŠ­L‹©L‰ªA|¤8r G†£O¦:q‚.]l)`‡5d™ Q—3KhAJ`?Gm?J˜M'!092#)  18*!*  !%$#+"'.:/%/  (8EZp=q+d 2x 'g (S,X5_9d8_1Y8n(X5f&82A'C1>2<)7;XLd $56 >@$CSIlHmFa;U9S!B_@[+=Llqn:B[$V!XD3"5=HTƒ•ž{Šš%-A(7N`y'.ˆ+ÊHUªj€¡+‚MgÇ*IÃ:¹(9É3JÔ.>Æ4IÎ+=×>ÙHÖHØ2fÞ!˜5µNƒçZŽæ.SU 5.1.$;-+$(#%&@>*A<-A75U[OSƒŽRƒUŠœW¦Z”°\–³]—¸[–¼Y•¾U“ºU’¸T’¸W”µU’´Q³R‘¶P¶N޳P޲Qް7hv$GE(Pb=w²\ÈP„³-T{KR0LU;?QpBT“BN¶RZ×;C¯MVºMZ¼ETµ3B²@I¸O!("DT'N`AQ :D9G9EÂ0<É&2à/Bã"MÌW»1eà-iæ#NÉ )› J­4hÎ6nà=pr*FN8ip40*(&$#!%$"72/. 57#:42Y[6LL6IL9UU=hoAiqAisAjvFq€Lz‹Q…–Z”°U”´PŽ­O®P‘³T’·V‘¶R‘¸R’·O¯1d€.bK‰¼a½_›¼VН'[ Q]¦KTG@OwAO¤=I¦JV¯8G›CT”@P–+=›1˜6D±0³ µ ’ž ¡ ¦ª   £¡¢+— =…McIR#RY!Oo!Y¦ \±,_ÀCUÕAI¦36P%(.2!$ &! ! 4;/?L:$ )" $*EYd>Sa3DUB€ 9| &` 'f ,g .`/\4`(InAn6Z)J1I%)/+/46@4=CX$.(2%L^#/0!@I;E>RAb#AL%8/ 1,5@5Z.H_#A'*C)*4&,2!*5%-D(2U*;l0?r):‡$3•#1€$š&°"kBX¢ |%ª(½+±$:Á/¾&6Û+?à$WÉ(™Ò$w×#d¾9‡PX-[ËA~ê2OK.MS0TC.'' '%$!*&,$1) 50!.-!2-.CR+2:&28(CI'DF.LS7aj9fu8cw;cxAoˆE|˜K‡¤MŠ«RްT“¶U“·Y•½U“µOޱFƒ«V•¾Y—»Y•ºQ¨Dpy-`£HO‡QSfDN—>&16 4:-*1!!)$28&##   $)-/5;#%*"/> .@5h+o 'c 0l5n1e/X5W4U/J-B'3/5/B5<42>D16  )Sm*/--!>F8E@M#FY:B2)52 488M*Em,g([':"+J"/j +i#3~,•0¥,?«0Až$9-?³+?¨)h+=•-z p)§"¡!ž3ËKÑ2oÛ+nØT¬<˜K¬ %a B*“'GÛ0Wâ40 95$!%#"# $ (!31+',@[""'#+"3+&;7)A>,G?-JB4YU>rqE{†J‚˜G|”DwL„šU®V’»R¾S‘½T“¿X”ÂQ’¼Iˆ°'Xv0\˜IG’f`»IK¡IT…AV|@PvDSž4I¨%=›/’%9˜(:ª ¨ ©¡¨¦ª¦©ª¬ ª ª ¯¦… >­WÃ+QˆEQeSMRbTIeXWL?*J;$C5"E:! LRB>@0FH:3=/ $('.  "#7:+  " '),4 2J/h )i *e0k3l0h-[-T0T3H0N*D/V7B8<=Y6R ;I6G39@NDSBT DT,LT(EN/Kb9c3m1m3t2t*h'‚/‘%˜!§ !½3Ä+>²':¤"7²-AÃ;SÊ#7©+>—)s` }¨#¿BgÝv­Õ%|Æd°D<:‘,{3Ç$AÚ/Ù75'' &",&,)&(!*.@N\!#&!+)0-1+#8-&@31NC9^W8da>kkBsoOO‡˜QŒ¢U‘¬U•°R”·Q”½Jz¶Y[ÉOW¯;E‡NV‡GRŒ@NCR­=S”3EŠ.?ž$8˜(£§ – «¤Ÿ¦ª§ª«°¦ ° «ž‘8µQºEY†ZUjf^\UM8\O5QB)J:#YI7YH/36"W`SMTI9;/"!! A@32/& !#' & $0%7+Y)g,d,i ,g3k /m )`.O2O0N1\/R9J8Y5`6x(/?$>P$.4L(Q?)K=.K?*FK>IS? ' %  !!%"&1 (=-Z(i*e1i.h ,h2l0k8w4Y2O8`5P,43A-\;|"8a $9e‹7I5O/Ru2Z‚Aj”61#?;=>3cb3b`.[],,./"$$&$#"$#%"!##$%&*).+!2-#53#75;6"C?3Xm"`­D›LJ–)Pž6QyCS{?N':›&„*Š"©•• Ž¢¬¤®¬ ­­ª° ¡ © ª%¥.¨:aÆczÎWQqYN3^P2M>!G7 UC,[H0K<'SF312-8/36&")  &&&51,,'&%!#&"!%%+(/> +N,R'J)W/q,h1g2l .k0i5m2o-T(50E/`+\/v39x ("½(7È'9Æ!5È2¼"7´k~ÎðóøáçðÄÑ㪼ك•º_n™:Iz);p$;q1i"8{%?~%E…"B~9{3p2}8…N”NŽ#9= ;;"<9'DB"@=20%BD'FK"D>%A7(DD0[S46.3,+&KO,+'(%%-3&('/%.  $ !#'"' $% "#"&#&)("8#78'8C-j¶I H›Jœ RŸ)Z¢CW.9† 1(› z ˜ „ – ”  ª©°§ª® ±© § ¯¨&¨'<¿XdÈja{]QC[M1_N-RB%K<&F6$I:(N@(N=%D:( $# % " 1*&(#$' "!(!'D!2c@‹1u*Z!,T/W0k -o-l4n4m-g-g5p1l'G)H )n ,r/v/w/p0ZBx"T– R”Cƒ?yA:‚7~5{76€=‚F5…#3¼%6Ð'Ó5GÑ1Ï4Ó7LÏ,?Ä1ª.C­ÆÑèóôûäêó×ßéÓÜæÏÙåÉÔâ¹ÇÝ ®Ì²gu˜GQv<8Pi‹@Sˆ"T!W(a+cC“":: AA1HU0%5/!<7,IJBZV%76!9:+OP*RR2Vl+9C-4*UT&JP$BF"?E$Ar#?d)Fi%?g.K*C.= 0:)4$,& "'#7?#29&6>$68,d¬M£HœGœ!Pž)\«8Z¡0B2@‡(:Œ†  e ™™ ©¦²ª ¦« «§ ­¬ ¨#ª%¨6FÎV]Åe_iaS9TD'^Q@d^VNHA@81C:0H>0J<.C@6*1 !'"*   1-0.-7,.ADNo2W–P¯C¡E™"=|#:f";9;…:ˆAŠH’0b-9m"3‰"4¸&ß ,ï/ê-Þ!3Ì1G»7R¾–¦ÒöøýòóùèìõãéñãèñáçðßçïÞåîÞãìÙàèÔÛäÂÈÔW`ƒ'&wQëëÙ÷þÿôýýëúýçøýÛñýºÐàv‹©g…²‘¼ï…²ñ‚©çk˜ÜhÐk‰ÃSu°M£J¡K¢M %X¥#Qœ!S£"P¡'G¤ r*ª j ž‘©¥° §°¥Ÿ ³ ¡ œ:ObXvQ_€W?^¾LU¸XKO„xpèçíÁÓÞp‹h~‹`s}FR]  *32",'$ ""$D?E\V]ˆ˜¾}а7Z™L¥(W˜(Dn$Wš%VŒ Ah$Ck;}5w6v9}5ƒ3z2r3{6‚;|.W•1_Ÿ;l¨T–Ê(k²b¯OšG‘F“EŒ?~A€><‚?ŒEDI’8h=J_DJP>EnHuÑ(Xë)dö0põ&DÎ'>·*H¼ÅÒæïð÷ìï÷èìôæëòåëóåéñãêðãéðäèðàæíÞäéÈÎÚ^oŸC_Š”±ˆ“ž!&VfpDRRq‚ƒ%+*&GE73"9E!89 :=0-(#8/"A9%D='NG=:(JE0/*AC3MR,EG-( 38Q¢;Vj+BX&;O*?V.HbWXC±¢zǼ¦ÒÍ»ÐÆªÌ½œ¨”x†~lšš‘åÜÒöðâýöêÿþõúûöòùø­ºÏ[­ A›HŸL T¦#T¢)V—2Mc#6w"1{$2—s'/š …¢ © § ¬ ± ¦ ¤ ž ¥6IgmŠFh‚6`zA9i±EdLJŒÇëíñúüÿêðöv‘¡a|ŠZq|[mvBOV  10&9A/DG™£ª£°·v{™<`¥V¸P«$O™)P‰/Ps%Bb8q2s6y5w4u?ˆ2€3y5€0w*bG‹O“Èh­ÚC‘Î#h¶[©GH”B•=…<}C„H’DM–ICŒJ–(Wg>Zm;Wh8Rc>d€5Xt+CL=W[Ea\8J>3><8Wp3EP9EKTH7obB„vX›„¥²¨ ¯´ƒ•!^² ?šEžJœS§ S¨$S—-7`"-{"2– .¢ ƒ   ™ ­ ©²« –%t%2o^rZqŠDj‚8_~WD}À®áòôþûýÿ÷ùþöøüÄÓÞt“©YrƒUjw_q/9>  -&C>?BF];‹5s;~C‰+o¸UŸÓI‘Ç!`«J˜?ŽG’?•5…=€Qš3jªDŒK”J’FM˜(HwCT_LSJOQ=Q_^M“è6õG–ë“­âÓÚ쨹Öâêòæêòèëòèëòèëóèìôéíóéìóéíòçìðæëïåéí¯°·L\lŒ¨¼ÂÒßLOO +*AKU!)- * %DK0KO1S[(EB*ED!53-'/+ =6%C<%F@$F:.)$ "-&";;"14 14(?;2LV6TZ0EE1IQFqƒLz3GI.DG%76'>@,EF0FE3JM0HK#56.-**#5.5RNDpvM†*_§ AœGžI›N¡O¥ Qš?LDAD>1>u&6Š#\4:g)vl ¥ ® ²"ª•R;E5DQ3GW,[o1Sk;€™›ÁÒéûüþúûþ÷úýöùþó÷ûíðõ²ÄÐ_}ŽQk|cx‡Zly    '$(=DIŠFG]TMWY\GFSY7&e9`7!M3'D, N0$H:E4H‡S¹ H«3z:ˆD‡$b¢JœK˜O•$J„E‹B$qÀn²ÙhšÁ,_³D™@’2{71‰=„[«8nªEŽL˜K•HL–(UŒ+KL&@@-KQ.3+' 23+("74.NR!2/&DC+JD:/$95)@H?gxChy)BG"032GX5Mb&5C6Oa9Sa3GO+?C#54"&%)##1+(#! %$%"-D?An‚G~žBqœ\µJ¢GžN¤P£L M¡'S’ISSAN*>J'Yd.KU4EP1CQ-BU29IW):&W8P:5G$KheEVU®·¹úüÿüûþúûýùúþöøýòöüíñõéíñßåéËÔØ›¨°r…•1;B-7D\pWfpQ^fNV_)0? $ .0!#.F1[;$V:'M5'G0"E/#G/#H/%V4"f5l7d8)EAh 9t+J=\‰-e®1^‘#U•7‚@„Q¤YÂ#fÍ/l¦G‰?AyB‡CE–L”]ŸÏ,g®>‚N™!N–K’"X™+^‰Wtbdt[Rnl/]°De|‡šÝõ÷üðóûïòúåëôßçðÞæïÚäìÓÞèÇÔßÊÔÝÕÝãáåêáåéâæéâå誯·mŽ˜¯¾¶ÂÊ5=2m{®¸¿=DGLZ`$Sjk#/2(EO*LH'A@&89$46%87 34(A40*"84-'10)>B;SeGcuDeu1HS,AQ;SkAZq:P_6OQ6A>0?@.=@.?E()"*%!!%!)<05I;1GE"`ºP¦K¤HŸO¦C›G L (SŸ0Pz6Rj@_rK\YP[1GT'CR-BR'Pa0]l9JVI3M;PaDkyŠL]b­´¸÷øüùûýøúþöøýóöûïò÷èîóàæêÍ×Û§µ¼“ž@IO#0@—¦·¥³¾XkuM^fN\dR\g-4M 1 0%tVF¢Ž…“‰‡…rokG6f7i9k:i8g7i; 57r"S$a0aB@$U}Fƒ5sE‹W©Y—Ê:o¹4zCƒMF‰G~AC‡'V˜B‹Ë(bŸ$SšJ“N˜S+fŸRwaŽTqrTkKRiQDb—¾ÍêëîöóõûîñøäëôãêóãêóáèñÝæïÛâìÔÜåÅÐÙÁËÒÆÍÒÑÕÙ¶¸Àp‚¹Ë×´ÄÏrxu"/!¤°¯¦­©#+  s& !43&@B'$$;6&;8$51%88,/31/'*%-&%731IF4ON<[]5OS6PRE`lC]o;Ta*>= *))$*#*63):=%#%"'!$ !"#$*$# #$V U«U§Q§M¥F›HŸ G(?t!Nš"L•-RA^v_f.cnZg Xh&Ue*[j.hyCZkky‚s‚ M^‘™¤Àîñøøùþõøýòöûïó÷éîóáçìÍÖÜ©·¿€’?JQ %6 ²íðõæìï|›RetM\iT_iT]k!&B )!J>:o`Uuf]ƒur|nm`6f9h>#f8‹octow,j%!,I-g9_CI)It@o"DlJ*j´$Y§:‰AŠ;€#N#Q“IˆGƒ"J„.\šB‹Ï0`š$P‘Q›P—1aNz›RyLs„OnkShMOdZIo äîõÞåïéíöçìôåìõåìôãëóâéòâéñâéðßæíÙàçÕÝäfixGPhM[}’£­©¹Á¦®´2:/Wj`¬´´IZ)5&XE9‚nbsTBqM/tN+g;˜‚sŠŒ“C9CL0`9"`:![9*WII/>O,Fo0N\{ a”ÀGY‡ER{!H%I*_¡"V—LŽ%OŠ*[šBº+b¡P‘/]Ž;i†JqŠOv‘Pu‚SneXmRRgCMdl6T™íõøâçðèìõåìóåìôäìôãëóãëòäëòæëñãéïáçìÜáçzƒ—CWthz’¨¸“Ÿ§Xba". AL?Y^S%+#Rg\×âå&HI 58,-,'+&/NP-D?5.5/'B>-GI2S\32/* 42"96&=>&=;+& .6(7?*:<*&&"*(-)1,"30-(%"&!$&$ )&)%$"% !30&!)+,=>,LjY³ V  X©T«LšD‘%'@+ 42P*L‡8% A9)Y[ Yb#Xe]j)Ug(erG†„\_g DFJ~–¨˜¬ÀÒÞçâèìó÷ûëïõâèìÏÖÜ£±·zŽ˜[ek !+?…–§èìòúúþ÷÷üòõ÷íñóÐÙà„–§TjycuƒQ^k"+:CQ>FP48?7=:>`bOV‰dL‹vocXg9HtEŠ%Q™$WŸ.i¯R—"S—&ZŸ2k­:W‚;^}M{|kcQe^UOedNfZL^C^s\§¸°ÆÏÑx“Á„©×Öäòíñ÷æëóäëòäëóãêñäëñçìóèíðäëïæìïðó÷«´Ã}”¥¢µÆ4n¥;f@Yo hw.GU!55-,#<<)BH*@D"/60GO';A$8:*)#!/+!141-0-,')',)#' $,)-'/+.)%! 0;U©/V“&Z¤UªI @-14$.+M7""9%$D@&HQ LZ"Ta*buIƒ‹6d7K@JI3A:““ÐÝá×àå%?:*;D#984//+/)'$0.1( 71&?@Cjv2GO#<@!8:&9;'6:&8>,@H);M6Qh.DQ&>C,1/3",+"23$;963$:3' +&#$!"'#(# 20$ F‡'[¨R¡U¦H›$B~157"!1Mˆ5,88;0#JP$S[$N^/§±¨ ¨¯A@A0+,grzet|‘ž¥˜«²›¢°½Ä†—¢jw€  )š¡­åëòúûþúúÿ÷÷ýòõùíðôäèìÖÜà¸ÀÈŽ¨^jsP_p °ÁPgvPamP_hS_e‡Œ£«(QA5qcX†|{~uo‡‡‡wzz“˜‘€ŒU]f˜ Œ‰U)xF&G’bN{wttŒ3QŽM“L˜ C‡`=;ŒK)œL‘EŠH —_:‹U:ƒC$J&†H}]>ÁÃÈóøýòöûñõûÒßè²ÊÛ§ÇßjŒºVk’ÅÏÚßæîâèïæëïçìðæêïèíðÕÙÝmx„œ²ÁËØßO’Ç a«†®ËM°g•¹1]Ž(OpDGI%(&\b\ž¢ŸÅÏÐ'QO-_X2QP 75811),( 95-).*%;:/FA%=C!95*DL3MW$9?$=<3/0H\Fbr=Wh5L^4O`0AL(7@-AG'>:)B:"61%"-&## &",)-' 4.5]#YªR¤P¤Q§!?}0#69 3>i09X9 8)!NV&X^!°·´©¬°ÕÙÜ16:  .)+ZcfKTXYbe™¦³·ÇÏR_b#-5'*3ËÊÍýþÿúúþ÷øþó÷ûîó÷èìïÜâæÄÍÓ˜¨´v… $-8H¸ÄÏô÷ú”©¸ay^tƒSdm\lu²º¼ow}-!dM@…nZ…ri„tf¢’hȲx¿ÓÎ]~“PVfœtQ³g"¤["£K ©b.rw7b¤1cª3RŠƒXB§N £MœMyI6xG3”^CŸ•™ÑÊÌ»§¨I4™veñùÿëðöðôúêîöÎÜåÀÑݶÍÛ¯Ë܇©Ï7Q†m|šÈÒÜßæëäëðäêîáæê› ©•¤ÊÖÞ´Ïâl½X™Çv¢È b­Y¥T›oŽ x‚†>CIBKQ5-1-/*,KI$CF ‰Ãg»cµi¥­¸¾UZ^dnr–¤«del %C@ 5-5>,SO+S[6aj2Ub(EG'BC0,20-*9:#6@?\hGkv0LY*CN 33!6=4N\Daq>Z`4JI6JP9Ta4[[1WQ.NI%>82-' (#'" 62*&BL£N¤Kž#N–0+=/26&,)K†743A>%|F˜FDz¨ÍÒÖÿÿÿéîñJOS   58?AEP_dz;@H',62=IMYe¬¶ÂòôøõøüñôøìðóäéíÑÚß®»Ã’¦²W_a \lzÛãìûüÿøùþóöûìðóÉÔÜ—¨´tˆ—v‰˜`in EKSQV^hmtkos=??4)X7Žsœž©ˆm^^B.|I%p4 b, ŠG¬Q £M œV'vUKkMF}VGgA8j;+]=3|{ÒØÜÝààãããëêêëìï×äíàëôÒàéâêñêîõÝåîÕáéÑÝæÌÚãÇÖàÀÐÛ¶ÆÒ¨¼ËŠž¶8Fm^nŽœ¦¯{ž»ÌÖÓÝåo¦ÒsÇpÈoÇsÅoÃf¹ˆ¶Ó•𔬳´¿Å ª±F$(D6/,&GH 6,'DI@ioAm{0Wd1RZ7899%AB!<9!48/CJ7RY9WcB_r&A=$=B1KS5LQ,>@&6:%9:0EG2MO/SP2XR$;31-&"! )'(%1,&#  5_M¤N¤L¡ O/3R7%$25$(*G€2@QtC ¶I]žœèùýþýþùûýüýÿØÜà+/4 *(,13;(-S1 "‰Ÿ©p€‰¼ÊÕÜàæëìïïóöæêð×Ýâ¹ÅÌ‘£®Ž’@N]µÄÐûûÿøúþôøýðóùèìðÜâçÅÏÖ™©¶•¤¯+-/}Š™›‘š¦²ºãæéÈËÑdbc.-$%14ip^k„ƒš®€ jB|6x3Ž> šgJŶ±ÓÑÕÙØÞÑÏÔž„‚rI:º¹¼ÄÈÌËÍÍÞàãçêîäêîÐÝååìôÝçïäêóáèñÜåîÙãìÖáêÓÞèÏÛäËØáÆÓÝÅÓܼÈÔYg›)=„ºÅЭÂÏÖâçš¿ÞtÄpÈtÊuÊxÊsÇ4ŽÈÌÝç¡«±ÁÌÒÊÔÚÅÎÕ¸ÇÎqVV3+"<7-$*+0Ya3[[4_jCoŠFp}3^d+KT'AF!94 7?'@H/Kd7TfGar&<>&>?3IP0FP&8>,@G,AM,GO,ED+NB-MB&>8#97)%" $#("&"2+*"# )2S£O¦N¤ S¦*7]4#!042@kXDK¥K’uXµîöýüþúûþøúþõøüñõùÔÜß9BH  )F6r&Ûz‹è”¤¤…—¥¸ÊÖªµ¿ÃÈÞãæÃÌÓ«¶’¤­.0.@L]“ªº÷úýûûþöùþòöûìñõäéîÕÜâ³Áʨ¼Ècffikn¿Í×|œ‘š†˜ ²½ÂôöøÛßæQLM,,0¬ºÈÂËÒØÞáèíïñòõîî󞌇=~tpÔÚÞâæêîñõö÷üùúÿðñö¡˜›®·Á³¹¾º¾¿çéìîñøÝäìÎÛäÒÞåäêñãêñßçðÝæïÚãìØãëÖáêÕàèÒÝåÏÙâÏÚâÁÍ×r‰©ax¦ÉÕÛcxq}ž²C†¼ o¼nÃtÉxÍyÍ }Ê ÉàßæìÛâçÛãéÙáçÔÛáË×Ü™Œ401-"9>"B@&ID+VT0coJ}Œ[kRrŠOl…3KZ*KN-EV5N^5M`9Qe9Qc5V`*ID(B?,JE%=7)?8*' &!/&#""75#84' .WSªL¤L£(7a2/3O89Y4I±½díÿùûþùúýùúþöøýñôúëðóäêîÕÝáity :>I%'. "%Y)È Ø Cé}‘à}£”¡•©´‚“žž§°´¿Æ‚’™DLQ ÑÕÙìñöýýýùúýõøýðôùçìñÛâçÆÑت½É¥±´ ÛàãÑÜã~˜£¦¸Úãꈚ£¡°¶çïô|~„ºÂÉ´ÄϨ·¾ºÄÈáååö÷ùùúþíð÷xxÄÐØÁÍÕÒÚÞêîðõ÷ûúûÿùùþÉÙå³Ãѵ½Ä´ºÁÞâæåêð×áêÓÝæËÙâÆÕßÙâëàèðßçðÜåîÚäìÚãìØâëÕÞçÑÛãÌÖߪ¹Å… ²·ÊÙ¶ÄÀ8014JR,`… _šo·uÅzÇq²ÙáéíâèìáèëÞæêÝæêÛãèÜå꺤Ÿ4. :6$B> 95$@G*MM(RQ:kn<&>8&")%,+ 1+ 3- 5,"4]™P©R­#B}/ <$"’_PºY!ËLÕU縙øúýöøýñõùéíðàçê×ßäÑÛà°¼½bkm<>D&%&%$'Œ•º`~å4Rà"ÚÙÝ+;ÊAP—t¢¼ÆÎ¯½ÃUdo2;H-9AŽ™¤öùþùûþò÷üîóùæëñ×ßæ¿ÍÔ³ÅÏ•Ÿ ËÎÐÿþÿúúÿõ÷üÙãë·Ê×§ºÆŽ£¯±ÄÑszÝàæÍ×હÂÈÖßÓÝ寻¼ÈÎÏÙ᪸ÀÔßè¹ÈѽËÑúúýæíôÞæìÅÑÛ£¾ÐŸ¹Ê¶ÄÌçíðáèîÞæíÝåíÛâëÕßèÌ×à¸ÉÔ¥¹Ä¼ÊÑäëðåëóàèðßçîÛãëÖÞ䡲¿¤¸Äéð÷ÑÛÍAt,T}_i‚1SG&>6QRL„ˆƒÀÈÉÜäéßåèßåêáçëáèëáçëàæêàçì98#@913!A9!>7#HG#EA;gyFp0UZ:Xd4Ya>dpCd‚>`q-OY3NY;T]2IV9Vf>]jEawJm‚R,d¶O¨I”<4J}G;²TËLÒPÄY ƾ¬öøýñõùìðóãéëÛãçÐÛß¼ÆÊuƒVUZ'""5--bcfÕ×Õ¥½ø_{ë1Rë)æÞ×Á¥"x9AhDMk$BIZiy‚ ±¼ÛçïðõúòöûêïôÜäêÉÔÛ¯¿É³ÄÊMRQOQSüûýüûþøùþóöûíðõßåéÁÎÕ£¶Âž°ºmrzáäêóöüáèðÚãìÖßèÈÓÛ­¾Ë¨¾Í–¢©ÒÕÙãêñÛäëéíôáèîÊ×ࢸȫ¿ž¹Ëhx„ÐÛáæëðáèïßæîÞåìÙâêÒÜãÇÓݶÆÏ§¹ÃŠœÞåëåìóãêñÛâꤶÃÂÑÚñôúïñð€ªhUŽElŠ{Y€S>k:5W<9HH :<9|„ÉÔÖßçëÝåéàçêàçëàçêáçì!>92'('93+*&OL*TY;lz=nv7Yl/LN+OV4VdKisBeo0U\2O^2FXARX;$96(##+22%-,%/+$1, -)"02=f£O§*Nœybx¦]:ÄQÄ[ Ê_I­ªªíùòöùìñõåëîÜãæÎ×Ú²¼¼v€‚RQU)  ™œœ¤¨¤¦§ÝÞÞ{”á7ë#èÞÌ ­‚['2] "3Bp¢°ÂŒœ§¹ÊÔÒàçØáçâéîÕÞä»ÉϨ¼ÅŠ•˜º½¿þüþúûþöùýñôùèìòÔÝâ¼ÊÒ µÁŽ›£rsyèèîõ÷üðôùèìóÜãéÈÓÛž²Â¤¹Ç†˜©©ª÷üÿíñøãéñÙâéÈÔß©¾ÌŒ§¹”­¼|_eiéðñæëîâéîßæìÜåéÙáèÒÛãÉÕݵÂÊPh…sŒ¨ÓÝàÌÒ׺ÉÓ»ËÕÑÚÞ÷øù«ÄšM)f¤I~˜€>x&6oLtL8CE8CH8at)AI,GP7R\=Wb4GS1KX9O^:QXFM™ŸžëïòåëíãéíÞæêÝäèØàçÕÞåš©´v›ŠŸª½ÆÊ¤´¼¹Ç϶ÆÍßçèÀدYž2HŒ![¤2R–)H…+Cy.rz“£©{‡ŽT\`78> !€z»³ÕßáÜåé/,'KC :7>9#@?&@U-8#8J9cc;y‡9cq=buIwˆGiy7P[8Sb0AI.CP;P_?Xl>Xe4OZ9Ue7OW:TS7TR(;5&<4-MF4[[,LF)JG&@>/-+IC*C?1+,$ .*!2,,BBx~ a?¿LÐR‡u$êÿaæüèõúðóöèîïÝåæ¼³©{T=T<3=@©,4 ‘nY¾ÉÐúýÿó÷üò÷ö¶Çß0F½™ p6Gp'Yl8O_;[s@^r=OW>Xi>\o9[k7VZ0KG$<2"!50)JB0WP.PO0YW*GD"::&@>+HG(@@'#!".*"-+&$ )% .'&97dYK‘W8µFÎNÍX¶«ìýÿû÷úñó÷éîñÞæéÅÅ¿wN7D 1  8™&¹/ L(Žãõÿÿÿô÷ûîóõàéìÑÛÞ®½¹br†M\o #( <=A‰š­·Èo~£%5aJI,AoRd‚™§³ºÀ·¾Ä‘œ¡9CIPRVìëíûüý÷ùýòöûèîôÙàç¿ÌÓ™¬¶˜¨°CGH‹•÷øýõùþñõûèíóÛãêÆÑÙ¡´Â¦ºÅ «±>;:ÌÍÐôøüìð÷âéñÖàçÄÑÚ¨ºÅŽ¡¬£«‡“œorsÚÞÝêïòæêíØáæÁÎÙª¿Í¾Ï×Ýæí~}¬:EJV†˜·‚r«_]£0\¨-Y¥*]ª+Z¥+d¤L¬Äº¾ÉÏŸ¬²” ¥«¸½…—MMR9>  $B?(JK&DE%JG$HB$ID(JP#==3,,Q\Er‚=ap=j}CcqHo†FiFcxMn…Ebl/DS>WdIcyHi|1JP(86"61&!"80&@:,NH0SU7cc.QS0SU&>>+HD'B>,'" #+&0.`da¢c@¬FÇJ×Qw˜|¦îûüøüòöûìõøãîñÖàâ|l\C9  - ‘'¸<©M&‰¥£îÿ÷øüïôöæíîÔßà­¹»uƒ„lvw230 ”ÊÑÚo€¤Sb˜Š”¬ 'iLJ@<-15 A>%HI 94'!.M]Gn€Fj|=ah8ZjKm~IqƒFg{Cbv@\k4Od:UhBauKgw8U\&A<0)! &"4,.VQ0WW6ee3\Z3XT-NO&@<&>9)(QPM•_B©P©\#Vª¤Mª¥YàñâöüòöùßÙÏÇ­™«…nyM9@0)6   $»7‹‘Š#ÁÜQÚòöùüðõùèîñÚâåµÃÂo|~dpt:;8 RQU°µ·õ÷ù˜§Á >Ž9W¤6 %kS< /$-#'/Y]U•«¸Àëñùïóøîò÷ãêðËÕÜŸ¯¸…•žU\_vutöõ÷øúþñõúèìòÛãèÅÏ×®·£®~ƒ„ ‰‹ŒòöúñõúëðõÞæíÌØÞ¸ÆÍ¤±ºž©|šuˆ”7@H&16uˆ§·»ÚãçÿÿÿÛØéUR· ™€f R516D4[‡;`©1z´h¹×·ÊÜÓÚâçÜåçØàäÆÐÖ”£¨ÀÍÐÂËÏ…–I3/h(u0 ]' ! 'HI6ma#D:)RI+YV'NJ$GF&NN69W^*B?&=8":7&>=!20 400[\8ee7lk5[]%>9,KF":9&>; %"$K)¡<¡M$ŽjL”’vJèÿFâùßõûîóõÔ¿«œ?‘7l#@+$="  ‚7!°Z;³.ˆaEv·ºÒùÿô÷úëñóÞæç¿ËÌ}ˆ‰fmp:?= ª†g½ÂÉÿÿÿøúý©»Õ"J›5† $b O ;"/D$1 CDC‚zg„‡ƒŒ™ ³»ÃÝèðÍÙàÈÒÙ¬ºÀ¿ÎÙSab*.1FRVTZZ¸»»øúþïóùçìòÛâèËÓÛ™¦¯“œ6:<,05?FIÇÉÉöùþîòøäêñÛãéÁÊÑv„¢¬¾ÍÖ™¨²*1=249»¿Î×ÛâÇÅá{yÌ"&³¨¡‘wi M=FM+-.'dtbØáÛ¤§¦ãéì×ßâÚâäáèêÛâçÁÌÒÃÏÕÅÏÔ¤°·wy~P1&@k, c* % 'IW#A84,'LI/ZS(QG$GG*UX'ED6ZcAk}@i~Cht:1VT+WP.XP#>5,333.Y^3.'?>4XbHw@k~<^tKqŠMi~C`tGj{D`r;Uc3V^-HI&A>,LF"40'?:,("4,'D9/TN;pz8ai,GE0TR"3+ % '&¡§«NOWËâì/Ïê^ßò×÷þûùýöøýíòð¼—yBT!F"-    0’I.µV1¶E³5°6ŠZ?IŠ—_¸Ï¨Øä¦®­igc@0%  pL'fËÓôÿùüÿ÷úþõøþòöúèîñËÖÚžª¯irsfdc731  eiiÚÛÚ…|gdO(gT.]I&E43'   138 25<1082-3VUZfgk|zx{kkmPPQ213$(3"!!!8AV4D_ESmDQj4AX$; .TYe!)-6J0 /3ho|̆”Û«µáÂÌàÜäæÑØÞÃÌÓ±¾Â›£ª`bc855"  3>z~—·»—< ’W2T¥« àïÙÞâÇÐÖ–Ÿ@67Hk+o,-*%AH(GB#D9#A:;752!<8(OJ#==2+ 99''2-83"@8 ;1--.QX 82,'00GpƒHm}Ci€NsNn†JiW|–Df{E^j:T^"97)&.%"21#80,G@ /*+$#?<;qz;p}1YS0+ .+!!¡«­Ó×ÜŸ¥¦’šúýÿøùþúúþ÷øýòöùÔÊ‹dL]0I?@),-   \ ®]@²: ³3¶=¬9¤<¸°«Õê𯼻fppO<0  ±cÞ‰$Ø~ØlæÍ²õùÿðôøæëïÉÓØ“ ¤]bbZIA   ËŸ‰©®°âäåöùü˜˜ŒSC)I50$  865  .15ŠŽ•GFM‘’™C?E   "( '.  $4K,F&C ? 6 /" !):BO5:I’––ãéìæêîáçêÛâæÓÛßËÔÙÂÌЮ·¿{ƒ.   * .ž5XhV¶ÚÒèìÚáæÄÎÔ”¡nQF[&HuŒ0Wc$<@#?:3."=A75-,)MK'KI89$FJ=f|Fiv=cyNr‹QqƒFh}TwŽSwŽ;PU3SR-PN"85%==-JE&71&93.&!)EB9jf>ou/QP&;90*(!<@@ÅËÍÜàãsxy½»Åýþÿùúÿ÷ùþòöùëðñ´Ûå!‰¬7P\>T[ 34/-  = «[>±G³/¶:²8§3‹w”áø½ÄÂgljF-  o;ßrÚtÜn»ƒ;¥åóõ÷ûéïóÙâ读¾nvvWC;$ Jœ@ûµüÿÿúúþúþÿÉÐÒ““\a^8:8B?<6665:;Ÿ£¦€‰. %>3:  #'0:C ”Ÿ¥M]s$2L(E&>*>$0AHT^@HQ-2:GP^˜šœãêìåëíáæêÖÞãÌÕÙÅÎÓÃÍÔ§­´H53    Q$ †7\bK]„€ÑËĵÙåÆÔܽÌÒˆ{yU|ŠXœFv‡-QP#?;*ML&@B064-'FH(DF#@@Air=`vJu‘QwŒOs‹Ek{CbkJeq9R]"2-+IA&@8,KE,F=$60$60!0)" 'A;0\XAr~2NP!2,#93+$$QTTÀÇÊíðöKQPµ­³ÿÿÿøùþôöúíñöÓÒΑ–•JSUJRP%;8';71MR #0šN3¦>³,µ3 jKtiY{ka‚á÷²ÉÍpql<& 1ÈlÛqÒxÏzUÃÍ®êöòôøäêîÆÏÒ~{Q<18% „4¹X°Úáýþÿöùþñöùëðôßæé·ÁÅfkm^YT @FI“™Ÿ¸¾ÂjnvLKP66<))-&(.&(-*15drw?KP$W\\þÿÿ¹ÃÌš¦³¡­¸¼ÈÏÐÝ⚤«MUZ9AIOYc$ –šœåëïçìïÛá佯ÍÈÑÔØàæÆÎÕ…‰D2.  &n"–,„9A…†zÅÔ¹ÕÞÅÓÛS|Œ_‘œ[„†Ajk,VU)LJ&=@ 44 98&ED$?>(NQ1\Z7]kLyRvŒTuŠMq‚=Zk4S`<[e *'%>6$>6$;3#72%8-!4,("*'2+1YU=lo-HC$82)=9 .*,'eihËÐÔØßÝnfhÿÿÿõ÷üîó÷ÜßÛvK2@ &#"4/*C?-DC1MM$¬@¯;«F·= d¸Ã9Üÿ~Üô½ÑÕ€‚~?,"  šc6×zÙsœ–f>¹Å€àññöùéïò×à䤢I0#>   ªC¹YŽÛçýýÿöùýðôøåëíÒÚÝœ¦©_]YMC;  B<7´¨š§ª¨º¾ÁêðõÂÊÑ­´»›§°‚˜[fj|‰Ž_jo ×ÝàøüÿöøýïóöãéíÐÙݪ³º^flGMSQU_" Œ‹‹ááâäèì½ÇÎâéìÞäç񯆵¾Ä‰Ž’I=; 8t&•48ƒ‡IÊèÍÜâX€…=[PGovHv‚9om,UQ#=<$BB'KO$A<&DB+TP+WR7^lCm~PuSs‰Rs†Jn6Wa,KJ!01&@;+GA.NH.LG$6.$60%84,%+&,MF:im*IG#62*>9':5!1-{€Üâ盥¢ (&(»³¸÷üýçîîŒxdO1&>B=(A?"631/)>=i¤*±4ª?gŠˆ7´Å…ßðÆèðÄÖÛ‹”’JEC `I;ÌnÛoÔx в™xêÿÚóúìðôàçëÁËÎifbF.$ 8 µM `RLáðÿþÿõøüíòöâèëÊÒÕ…\UN'#   , ¶q …eÕÕØòöüìðõÞæëÄÏÖ‘¢\fku†X^`  z~úþÿðóøëïôäêíÖÝã¹ÃÊpyDKPFCH% ugbÌÛâÚàåäêíÚàäØßãÄÎÓ®·½Ž’—   KJib;ÇåÚçë=NI$86?r|O€ƒ8(RT.]['F@(JC$DI-]_4W\?lR{’Uv‡Os‡Hqˆ>Z`#64+A="93*KD+ME,NB&<8!50&52'-&,MI8fg1VU&@8(??,B<*&‰ŠŒæë僧± 3*+°©¯ Ÿ’NT[IZZ2QP.KL(BB!65 Yu}M;­/³3±5’|hZçÿÄêóÕÝÝŽ˜—QZd     '£\ÖmÛoÙu Ú»•îûÿïô÷çíñØá嘢£KA9+ e)©?0JVÈïúÿþÿôöûìðóßåç¾ÇËswvH?7   (³b°y+ŸÝîõõúéíòÜãèÅÏד ¦_imr}‚KHE   +-*îóöòõúîñöçìïÛâçÅÏÔŠ“˜IPU800    Bj~¼ÞíãèëÞäèÜâæÈÐÔ¹ÄɵºÀ5 #    ]<#[«¶!2-61?ekLu‚@x…6jj#B=%HF*OL'ID$>9+NI+PG-OW?k~Y…žTxU|—Mv‡0QU 74 1*"94&?4'D?,JF*A9%;6($&#0)#=42WU0OO'?9:RP-A<%˜œžìïôøüÿDLM @GM5EE,EB/NK,A>*C@$-1%%(%/7G¾á8¸Ï”F#±4¡dE’ãöïôøÛâ㘡 cgl!      f@)ÎnÙlÚp»0‡Þóêõûîòõâæç³¯©N9/1#   ‹_FŽ;U% Èv@èØÏóøýêîóÙàã­¶¸a_[-%!  &­eÑxxÇØ÷÷ûêîòÛâèÆÒؘ¥¬_hlntw9/*   ¦©©öúýðóøéîñàæêÍ×Þ ª²V[`#     P„œÏçóåéëÛâåÉÒÖÅÎÔÆÈËO6     KT%=E%??0QXJnwL~Œ9hi(IJ(PR.Z]*PP$:6#BB)UW,\^@ "(,,:9#55%733VX/QT^kk*,/MKRáöüHåÿ-ÅÝvsgQÝú{áöâæè£¬¬SXV"     +§\ ÙlɃ-ª‚=„µ¥”íÿ÷ùýØË½`1T8$$    š[9ƒ2…2ÆY̼¬ì÷þèíðÒÙÞ–žŸFA<    ¨aÀ†/L¸Ñî÷þéîóÓÛâÎ×Þ£«´[cfb^]*   MF@çäãñõúìïôäêíÔÜâ³¾Æ\VV         $A‹®åìðäèìÕÜáÌÖÚÕÚßtC3I*   9X]$9,\^*VW7gsMx‘W„šO’It|,JD!71 0,#93*E?0QM-PJ*C=)C=3.( ,''?:0UQ.ME5UU:XY&;7>MK°µ¸öøýõøüïòö¹ÃÂ4?@ ,-#32)>;&2/3QPY{­´¶026#$&hnsïëïêúýtèþ7æÿˆæùìí쯺¹`hg!"      e= Ôuâc‹¼©7âÿ\áùíöûëïï¦d*t*<#,     ;&£L:ª>²c(׿ÔîöäèìÉÐÓƒƒ81*     ¡b¸‹@<£¯ÖÕÈãÛÕÝãê×àæ¥®µX_`J800   œ Ÿí÷ýîñöçìïÛáåÂÌÓeYU!     !&2ˆ–ŸàéîâæëÙàäÖÝáÀ¾Âh<.:   .FE$:CCcn1R\Py‚Cz„6gr/Yb<]h5YZ'GC77.[]5fq/\bKs†Yƒ•QŽ9WS+HF(A:"4,3.#81'>94]W,JD':4#3/1**'%961VY1UV>ad4SS+C?ETS½ÁÅõøüíòõÐÖÕszu:IF/DC*?:(><*62(>>[sw§³³69=W\^qtxöõúþþþýüþÒòûëïñ¼ÅÅt}|695     ! ²U »‡EzŽÞæÉòüÔóûóõù¾ž…AM&5/0    W5%L*e(£[…œ‰éûéðõàåèºÂÆ``_/&     ›m7Ê~ÆzÒz$½‘^ÃÛçÏÙà ©¯V`bE3*.    Gbl×çîðóøêîðáåêÇÐ׋“*  $&&$x’ŸÜêðäèëÛâæÓÚப«‚„‡6+)  9SP*CIHel9T`:SRKW     e*Ò`Ëw!CÂʸòýúúþóöúêïó‘´À;8-QKM   lE0„>k'³Žl)Ö÷™æöððòÚà䤬­MGA"    —oFÌÒrÏgtEgºÝÄÒÛŸ©¯V_bI=8&    ( '9SªÍÛðôøìðóäéíÏØÞ¥±¸HED    ' & sš­áêîàçëÙàæÎÕÛ¿ËÒY?:,   4OT&FO/HL-EV:RX6]jGxŠX{ˆTzFpz.TO#@<%HH,W\.Zc/O[Nz’Fv‚(?@=_i)JL#99#85-(1OM,MK1QJ)A?"6343%:9*CB4NP9\kBdn:RT9SU[hh¹Â„‡kli4DB/FI3GH/KK'83!.+!/*&87G`f–¤¢feh…†'*-‘ŒûûÿñõøÔÜÛ|…‡LX_(@1    +›i:ÖaÌDãéäõúþóöüíò÷ÐÎÈc]M8)+#     WBm3•:©j9¨ôÿïôøçëîÓÛÝ~ƒƒK=6       ’mFÌ€ÑtÐg‘qab(:;6SVBim(B:#81' &<;3ZX+IK-KI&B>+IH"85*?98PPqŠ’”¡¤@XZ5LJaon¦¬¬Qdd>\c,A@0HE.EB-BC(=< 1- 1/(::DZb£³µ–šžˆ‘’"*,0.1«¥©ÕÛÛ~‡„AJI.IJ!=L"8   0j‡>»Ñ¼v+y»­Ä÷ÿ÷ùþðôùàãâžyZP#4'    %‰R7W% ¸H¾n;çþÿîðôåêîÆÏÑ]_^7$    ˆN Î7Òs«|99¡ÀVºáÅÔÜš¥«SVY@-$&  % /) $ SXYäèíïóöéîñàçìÇÍÓT2'    !#"$' !ÂËÐåëîàæéØÞâÈÒÙŠ‹3 -9%  %FE.(115NJMgqLeuMdpUa`OaiSpw;ac&DB 54+QaBlƒ;af6\f+CF+AH5P_9WY)C?&=;'#"769]\4]\0RP)JG4PS*HI(B=1LIHaZWjjGdl2MLDVWGYY;Y]Wt€4LL5MM1LI,EG,GG1*!0-.BCG[e°¾Ä¿ÄÈ´½½CAA-43+D?)D@0PT=d)@  ÓÚß[Ûö3Ôð“éöòúþô÷ûêï󽪖`$VID')#      2"ˆG&z5 ÃJ𖀂çýõóõäê줫¬ROI   ŽZ%Ì”OÑrÄjiª±­ÝíÓÜ┤9-%A0*&  &    ´ÆÎñôøíðôêñ÷³ ™\% &  ##"#)#(-ÃËÍêïòàæêÖÜâÃÏÖ‚ƒYbi!"*   Hfd>@"=@2QZPclXr|QlzM\gF\iQir?em-TW)GM0VjT}–Chu*@=':;-EKMt‡:]_)B>(AD.,&=?<[`7[_4V\0U[?`l0UY&@=:UVIhpMclI_h;]c4OQ1JJ>_gUr}B_d7QO0JH-GG/LM 3/&990FMM\c²½ÁÔÚÞ÷úûfop ,JH/ON+GE1UR2Se%Ky,99"*( àäëîùý¢ðýÝøýùùýïôøßæéƒvdGBB@BC      A6-wH.ˆAz˜‹RÄÓ³ëùòòõØàáw}|B:6 |O Ä‹?ÐqÎdµ†J½ÝêÓÞå‚}y2H7.& ! +   Bboð÷ûïò÷îôú²˜Šj( 1   "#%$(% 477¿ÄÇìðõßæéÐÙß¿ÉÐŒ•œCAE    "?WZ=df2W^2JN8KTLcqPn}Kk~Ni}H\jD_l3Za2W`Dn‡X™Py‰*BB%23%9?Tx…Ehk'?<(@A*BC-CJDiGm}:`m?F++-"5=BÝßæûýþÿýýúûýóöûéîòÊÖÚPt?S_*:       N1"y=!šJIÛõUàøêôùéìðÀÉË_cc$  wS-ÅIÐtÏb«w1€ÆÙÊÞç‚vm4D."&       #¼Üèõöúìòö×××y:7   !!"& &'+ 9<;ÄÉËèîñÝäéÑØÞ°»Âu|„+(*$ %*AJHnrQmg21&AIMdjXw~Ux‡Z{‘[wŽXn€Dbo7\iKowSr}Yu{2PQ364P^Qx…Fnx.NP.PT/KJ)DGRxY„žL{’O}–Bi€Di{2VaA_m\qy]qu`oiIem<[`:VZC^fNfm@]d;`d*HI+FG+KK)?=-C@4GJK]a¬»ÂîðõóõùËÒÑZjk/QT4]c1NM4^`/RS.SQ3Z^Fel+Cf6RnBQLBHBT\cÉÈÍýþÿúûþõùýîóöÚã矩«653%8 !@4    \k@+i§¯–åóìöýïòöÞäæŸ¨«glk xO#ÈœdÎrÄf ~|i¾×ÇÛæ‰„~*6$)     # …”˜öùþîòöèïõ—|m7Wb  !#%& (&++ :<;ÏÔÕæëîÝäçËÔÚ¦°¸bgn##* %  &C[#;$;TeQpuKki.U\0QSG`cXuu^{}Vu~Xx€Xy†PtˆEl‚GhzRp€dsvNba/LRDjuOz€Nt0OM<^c6Y['@CDmsQzSzƒUyMtƒUs€Hkv\rw^ntTnvH_kDbq:Y`>_f:T]9QZ;QUAbk0QT*FG1S[-IN2JP:U_Rgv·ÀÅîðôÝããu€~B^d>dh4]]2TU4\]2[\.RM0YU@`gIeo.Fh9JRPZ_juy~xzÿÿÿ÷ûþñöûæìïÀÊÌ>."%% !@ #C!? $?1    kJ:q)9¥±¹ïûöøüêïñÑÙÚ~…‡[[Z nO0ÉžlÒv¾o3©É^ÊêÎÞæ”™š1CJ:()      ( #+15ôùýðôøçìðÓÝâjeb"        & ''(1(:<:×ÝàæêíÝâèÆÎ×–¢©FHM "4K¼Ó‘Ð÷@x5mˆ‹az‚XioJdmA_j1HLKix_{†Zw€OntUsySu{Nq{QtRqxNlh?c`0SVKtPu{Nr{<^j;Wc;X_7RcRm|bz„]r}p}ƒˆ’–‰Œ^t}OfoWhoMdhG_gAXW?^f>ak8S[I`kM[gXr„9Y`/RZ7Ya8_j6W_1MWVmzÁËΧ¬®‚‰Š=WX=]`<^_5\Z0VX,A=2TN/PO-QO6[_HfsHc{/Gf`nxrz|¸²·úüÿîóøÓÞáw}{&9 = !A#D !: .    2®dliÁÊÉ÷ùþòöúåëí¾ÆÉcgh73/gN2Àƒ8Ît°{3²µâôûÛá訳»;0':'!      :#9¥®´÷úþêïóÛåìzXK/       $& )+ 2 1 ;;;ÓÖÛçìîÝä黿Æ726 (@s±ÛJ‰ÒY²A“av€a~…_x{Xu„Qr+CG@bog~ƒ]v{_x|^z{NpsOptKlvMfrL`dEno=cnPisVowQjrGdnHglTq|Uo{ˆŒ“‹•™ŠŒ{‚…nxyeqx^glZ]^DSY=Zb7PV9ST>[a9KP?T[?RZQsPaxòöùïòöáèî5        )*'0 8 2 #1=bxƒÃÐØ¤¡§PIL H‡QªF£A¡Znu`vyd~Œf}…i{{Pim1HIc|…l„Œo…nƒˆc€Š`}ƒ_|‡OluPiqGckG]jNZiNarVj{YkuYpuax|qƒŠ|„†€‰Œˆ‹ƒ†ƒjvy`lny~‚gjlcbfKaqD_kA\f@Zb?VV=PO@RTEalW{Œ@iy6Zh@_l<\m?_l9ZdQhqgs|J^cG`kGcsCdt<\g5V\0OM /,&<9-IK6\f;_eF]eQmvLbo‰šª¡ª®  >==357,=E4Sa&Jq>e,Q A > !?)    8<=x{‚|Öëžè÷óøþîñõØßâ…ŒŽ9:9 FOCŸ€FÐrÎj¤°¡×ñýæìñ¥°¶$#$%        "$<\»ÄËô÷üçëðÅÊÍF,%0         $)"' 5 "@#?LuZ¡Ôp¹Ýk¢Ê*9S :GN6e$J£)G¢/FŸ[fcJTVWmz]mwUahbnpI\cZkiz„‡‹ˆ‘Œ”–‰’”‘”x‰Žn}„R`pN[q_q~mw€s}…iu|lx~v‚†~…††‡ˆˆsxzSV[QbjM`fbikorrWdiIXb;T\C_cH`c;NO9OV6GI@^gZ{‰Hp~@jx?]jJdrC]f?`fB[^E]gMmNs†T}PzŒHluCjt/RS!2/)DA5RTDnwDfpEZaUp|Qiw‡”ìðòq{€"-6IH6Ug0Sg.Xw*Nx Dƒ4i $M; ruw±µ»ÀâëåöüôöüëïóËÑÓipr%'&     #8BO¨Àlˆu·q'|¦¢¼ìüñó÷§´º:;96E       'Kq€ô÷ûëðóÔÜ߇“+6;           &&#%*1-Dƒ%eº*nÃ'jà X¥)QN3ED>VhRy„KsGlw;XcDZbGctLs„MrƒPv…S{‰Sx~RsyUsvEcbD_c3TW$>;%;72KJHlpGfnC]gYsRm|‡•žíðòóöú©´¶3AB++Jp6Rd;ME2P]1Ra1Su1X”,V¢ OœC† *O  „‰¼ÂÆÔÚàöùþòöûèí𳺼NSU     nrwšÑß°×1¼áÆí÷ïñö¶ÀÇR^d148         #B;MeÎÕÙðó÷Üãæ¥°¶BBD         " ) . 00 1 6 1,/eE™FœL¥M¦/\ŸÉÒÝãéíÓÛá{…˜=G—ed\g` EORJU[QZZNYYQ\_HVZT`^FTPESOE[]F^bBUXR`hNV\NVaino~ˆ‡‚Œ~“zˆ~ˆŽ~…ˆ‰‹…Љƒˆˆ€ˆ†qxwivzXckKboTdoUmzOlxOdoH\f@W[CX[F`c:&==8V[OmvDiw?_gWuƒXt„‹˜£íðóðôù×à㊘-P€*Q…4X8Qb:OP2Pc.Sn1V€,V•-T¡&R¢#P–Bn)=„‹ºÆÍÃÊÒøûÿòõúàæè•Ÿ498       BEEdns ££éõøÄêôâñøëðóÁËÒ]ei)         - :›¥¬ñöúåéî·ÁÈRUX  =k +V$   ,54359>?9 !LF›DšEšNSœ:aÏÓÓèíñÔÛã|‚vIM38B9>FDIKHNMJMNOOPNEKK=HK7BB9CB=EHCKNLTXUXWFV[K`mKdqPho\`_tul~{€†‚‚‰„{€ytvnnsi[hfMbjBWb@SeJ[hNdoRmvLntQptPkuB`lCcmBZ^@Z`5KP9S_IfsCbmSu„RqƒTmwNkuPmxQr„Oo„UwLiwPjyTv‹Y~“Mwˆ;`h/LO*OP/RUDerLm{Glw;bnXvƒ_y‰‡”Ÿêíòåìﯺ½BWrL K¤*N|8Pa7MY5P]0Qg0Tj2Ty/Wš+X¢#L$Ho'SŽDrt„”ÇÒ×ÅÌÓøûÿðóøÒÙÜpwz&+*    CC@ÎÒÔ]hnÑÓÔûüÿóöûêïóÇÑØhsx#         %Q[cáæéêîñÈÐÕmu{##$ G…JH~*F ,%-374388<===F˜M¥:VyX[9DB@EEG>BD=BHBJI=95U¦>b´]]Dn`j_i^b`jk ‡‹[o|zz€?†‡/.2/+.,10.44/4527898:9?CDAC@6<:7===:10/42000,CA=VUSTWWMV[CPY?KSDLWR[`NX]NbnPnRvˆQnyPmrJjv>`iBZ`?UZ7OTQq€OhtUxXw†VqNq€OsƒStSq~IgpBbfAbaDfkOrPw‡NtƒAbo/GMA]iQvŠ[|Yw‰X}X’bƒ”\y‹‰š¡’š›ips>SX>\g0PoIšJ Kš-Ls5Rq2Of0Og/Tp+Qu4P€!9b/Q)H*\[s©ØÝÞHJN=:?@=1A„kÔjgWe[f[cZmivs z{#ƒ„:ŠŒ7‘4/84*,+-/-9:601...,13/11001.-.,,-'?=;542./-<;9>==@===<8041/2/(*&11-75.HGBSUVT[aGMS@GKIUYL`oW˜W|Uz‹Ot„OpƒPp~>_a@Y`;PS=ZhMqƒTr~PgqRgtRs‰Rs~KlrMhqLkxKkxDelWr{ctySpuTv†UxŠKs„5V]On€]€”f…•bŽUuSu]}‹\zŒ…˜¢mvy;752.(&(::9??;?>;9:6172060)(&-.((+&01,BC>`ddORRAFG8DB@W[PhhH^dLhqOrzPoyHjo;`fE  )8<9:73::6584.2.*+(-/+/0-1446<:`cd]ceX\Z192RYZOSQ;BBFZbJcmJgqGhm@ae;UY4JQBcoKo|MpxIgoFdgE]`HblLmxOp~VvƒUv†Tp†UkZyX€“X|ŽWz‡Y~Nz”U…‘Ov„NvRzŠU€•U…›]‡–f…‘[u€D]^3FC4DB5CB=QSOkx^}ˆ-InJMœ&Gq6P‹9L”>Pˆ>NŒ>O”=967236018103/++)+/).1-45/6:4ORPTVUHKE,.'MQNRRJ.23P]gVlya~b‘Klx9TZDblPt~Qv~JhqH`mGaoB`kFcnIajMelQnzWwŠ\‘Z‚’W~‹SzƒQr{Xrz`}ŠY}ƒSy€PswOruNlrOinNilJ]\WlvYqAW\6IG3B>:GEBSRHXWBNE27/2WHšL˜'O“;S–@S¦AP•CW¥AU8P{AY’CTƒgimÝÞáñöúx€?O_'3=EYhYq„".69683471282342--*,/*.0.)+&),'-.'6636;7,4-:A<>?6;CBepvr€‚w{~…vŠD[b^t\}ŒVwˆRn‡M`xOcuOp‚QqƒVm{Uo€Xp}ZvƒW{ŠW’Rp~G[_2933509?<7>96=:4<31820408CA>IJ@LNPagTgoCPR7JE2?95?=02.,-(-/+'($%(" 9[LšQ (Qš>U•BYŸDX¥M_;V—,V£8IXUL;ÃÂÁêïòN[_=NZ:KWQgvPds5FUE[lUj|-@S2Id(Ci)It&Ce  !5T$=a4U)A%5’•íðóëðô½ÆËGNLWf+?\8\#[©![­'Y ;YxZv‡]v„ZlsPfsG\eKZ`IVXEKMYafÛàäÊÖÚ§¨?i!^²"[¨$]¬*c±;dY`@f^(ƒa¤­¯Äð§¼ë¨äŒžÎ•§ÍŸÉŠœËm³AHS%&.1mu~„&€ƒ)qu'eg0V_I\]3ff-:GC3@:4;39>:,.&$&&& (&"$#),%)-&230,+(*.(2<86=54731504<5393,-(+.*.2+*,(+.%*,&..,6986?=3:7*-(:BBRUVbjgXcaGTSotoPiq]ucz†_x‚^v…^t„Uo…SpƒLjzLkzSx‡PsU|UvLixE\k:HL*11)-,(*(*-(031083/94-316:87<:261795573+*'2AKUOUVJQUDJRHPRIPTLSRDJKLNQª²¶NRUCHI4HaV¡X«!Y¨#_«%a­.c _&?]0J%;Y>YsNg4OpbjxÛàäNaR¥+^™(X‘"]«!W£ :_CQ^CPWLY]@HNNVYFNTHNTDHJ@AAADB@A@KLOklqKPTMUYP[\;NeP“T¦Z¨!`°^¬%`°-e¬Kir[nFs})cnVbdofoeoeprx €‰‡po_]%[X(WX/QU.fh01=8283/5-483++'&&")+&)*%*-)/3/2<6482,.(-826GA7B<7=:5836>85;6-1,.2-04,-1+-1+/3.031/607>78<9;@=>C>BIE\ea`igIRT:HF8HG-:94HNJirFfnS~‘\ŠJgkAduVv‹Pmz@OVGYhJWeIadFcjDV^/50+.)(($+.'2943974>8/3/&%!'&"(&"))#*-'+-((*$)*'24403//2-+.)**&050172+/(','%)!(l>MUBVaCPWGPVV`gDJJ@B?=<;?;9CFHCGIFMOKRTOY[NW\NVVISQ5BO!M‡Z©#a±$c±!_¯&f¸$`µ-b§iu3s|&alfr lzfr bkiqsy |~rsdc e`__)W[1XY/-4-0:54>98>;,,(()%)-'+-(+-(07/2:0593.1,0;76GB5>76=78=75<75;504205105.+.',/'071062/3/+-(47403.4708?8CLDDRRGS[=LO7MM4LK5IJIbkJhvOnu9@=4;5-2-)*#'(!*)"*'"++&.4.-41+,';@?230-0*-0*+,)0701:6-30)+&'.&@Y^V‹¯*\šKœR£X¨#W¢5KcJA/J=(K>*D@86>F$7S5LiL_r1EVLd{NjD_wNl‡Hd;YvHi‰Mk‰Zy˜?[sFb=Yx8Os,,=.C#5M!M‹"W¨"V¤&[¨$^¬C}+:7AA>LRHKKAGK850;:8ACCECEJNMKPTINPLRSMTULSVDIK748625104-.0)-0*0617@==;*8M :_(9N):GOdxOfzJauPg~=UjMg~Nh‚Pk†Ln@c…?So6Pu)Ei*?-=0F.B7V!T›!V¥#Z«%Z¥'`®P“!69DF7?CBIH.-/0,&<;5FGFIGGNNPNU[KRXNTVNUXIOR@GGAHFLTTUagS_g4Pr&c­(iº'j¸$e´%_®'_­,\¢/I»=BÇ3=¹ANº=Iß5JÙ8HÇ?GªFL”NXomr8jmpw'gk&9A?43=53813?99MK:FB7A<8>85=68?937226/.3+-2+-0'071?HDBIB3<34:75;60506=:6A=GZ`UjnOfk@`eAacZX=US6?=./-+2-7RL=`]A^bKcgXx…Tgj9EE061,0+*'!05.8E?9DA9B>281+-&++',.',/())%+-%/5/296ESV4:4/3->FI,,)1842B:2<9/52-52Tv„Rv‰Rw‰Km€-QS¨O¤![­0R|I@0D:(KB.NA/EB>5=F5M>UhEZj+6EF[oH\pSjF[nIbvPs’Wƒ­(>^ >^-Kw.Oy0P{7O0I3L$PŽ"X§!U£"X§!W¦$[ª#Z¦.V2@DGW^;@@564-*#>:8HFHMKLTVZLRUKNOKPTLUXPYdBNRDEHPXZV`cQYbFJO9Md&]£$dµ#c´"\­%_®$X¬.EÍ97ã0@Ù5OÒ:UÎDUÙAUÙBKÞ?AÚ?<ÏIJ­^cdho>MT,?FD4;48F?8@904.,1),.&,3,-0**-&1;45?726/1;29NK8E@7@=;A=6?=7;64<615/-2+/6-./'4;6RWWJPI6>77=77A;5:6;@>999EOSQflMeoDej@YY>RO9N_a.GE@1Ki*Hg.JfNp‘7I`?Ql.B@WqKh†CmŸ0Fe=f1Mr!9!5U 4N1I'EkV¨S¦S¡!T£!VªU¤[­Vg+\–'c²#`´$]°$]®*NÅ+8Ô)NÂ,LÊ*UÄ2[Ä:[ÉM]ÚUTâBCÜHDÝOMÝPT×OXÔHON3964A<9GB281.1+.2+,/',2+,/*3=98B;4<7/607MH8HE9E=8A<6C>4;17=8293.3-04.05,5<7QTNEIB6<76<68A:5>4:?;;;9BJPUjtKdf@_]A\]@Z]=KJ8GD@^\>TQ5CA-2-'(#1D;AbbQu~Vp|[z†I`c@LM/2,*-')*%393:HC=NI8>87:7-.)02//5/-/*/1,25.3848>=FUV8CA5><7<96?96IF4H@^}PœS¦,Z™=J[JB5LA,K@-I@.OC.;:70Op=f–9Qp#3,Fg(Bc(Eg2Xƒ6T{$7%5N$6O1F!1F+B*2A(WT¤Q¥MžP¡Q¤U¥Y«P™2MHVWCIP9:841)CB>FFDRUVRW]LPTPUWV]bYckQ[`FMKKMKOUTSXWYcfJRZEMM>UT;RZ5c—)e²!]®&c²U¥!X¬W¯W®)]¶,^´6e²C[¾DEàWQãTQäMJãMKãYWãT]a?HD8D>:D>4=5-1+.4./6/160+1*3=69GA6>92;69KJ6FA6A=8B=4B;5>648315//7058103.497;<;6;86B;8E>:H@4<38>:6968C?Yo}G]^Aa]C``@]`ON9HD/6.))%1=;JmtSvYr|Z{†UsCRR050*.((*%2<4>RPPP:GB6>96?9:QM8OKE_d=QTY~]~‘VwŠPs†QvŒT|‘Tx‘Pg}C[u#Lˆ![©&^®8V~EED@DH>ADFFAB?;?Si0U…0V$8U1E`(?^-Mx$?[*? 2H!1E2K 2M+/<(3H/9U"K‘S§R¥N¢H›N£P¥V§[ª,T>GOHJJ/1*53,D@>LMNZ]_OV]OSWS[aQW]HIK:;4BGBHKIPTRRY]QYZGS[D[dP`k]hoMSW3U{)^¤)eµ#\¬%^­ ^°]® X§'_¦-c¥(`®/ZÂ;QÐFPÙNPßKOàFHÝHQVDJG:A>7FA:KH7B:9C>6A;9C=7<615-/8-4:33935:6::;5:87D>8A>7?94:57=<>FI7HCOim?TOB_\Eaa@__9HF;ON?XSC\U=OI.4-*-)164OkqSw}TkrYvUnw?NL/40*-&'*$6C>?WU?LJDPP8<;/2--.*/3-/6.4:603.4:9DOVVoyD]^6EA9C?2945E>>ZYOlsNit_†˜Zz\}•Z|‘SrˆH_mFV_P]hQ[f=DN$=aNš$\«+X˜$Wž#S™#P&L„(P†!Q˜P–%?f-@b&L„#NŽ!HAu4:60512?53=3/5.-3.3:77A=>QN:HC:F?1:66D:5>406/090;B=6@79@=@FL6><:GC;KD6=63717::@HG9NKA`\@VS@]ZEbcCbe6GE8LJ=QK@OJ=OH,4+*-'*.+MgmWy€[yˆTnvTlrDUY.3/+/)-2,IcgUr{NfoMceBQW>FKIT]L[kLXeJXbXeoLXf132/433@S H†[µW¬ [¬X¬T¦R¦S¢ M“-Ad/Gp"QšS¡S¡PžF‹A„!E‰!JŽO›K’"E…#;kP¥P¡R¦Q£N¤K¢M¤TªC‡6=G=D@67/@@;OQTQSXMY];JL:EF:;968456/993>HBI[aXaeU`eMUZMSY@HJDMWNTTM_bP_]1DI):C*O„(`¯#c±#b± ]«#`¯%`¬*e­&c®(c¯Z©S©W°"O¶"54>JD;KC7A;5?76?71:13A8.7.-3-285@QPDSR:D;0;5?RN9C>7C;.0+7F=4;63:55>7>GB4>74<7=CD7B=;MG;KE6?;5?9574<@@;MF=ZU;OJ>YUB[VAda8NK9JEBa]BYY9FC-1+)+&.2.IdjXŠd†•So|QjvDTT/5005//6/:FAF`]DTTANN9>:492/1,,0)2:29B>:EB?JIFQQFWWDYX@QM=KJ3:26<7>GF=MN8GE7:;?FIIRaO[lCQ\EMOSblZlvJU_))%RU>NO8KK+>B%54&?^.e¯&f²#a¯'a¯)d°(bª(f±&c±%c± [«\­\ª$9;1HD4C99I?5A:7B:3@87H>0;4091/6/GWWCVT7@5.3,>GD9D>5<6-/)9GD5?96C?8F?;IA7@:>HG;==4;75GA:IF:H@5:47969@A9LH>ZU;NJ=YWBZW=WT:TT;KKGgdF^[=JH160,+&/3.AUVV{„_xƒVqyQhn7EA0:5/6.5B@:FDJbiDX[Q`hDMN.1,/2.3:27A=LIHTXDU[?URBUR8B:5A@4<74=86FC5A>>DCMVdKTYGT\=JN36/Zjq[ky?GM+,(BOITkxZkwWiw@QbIK£U¨Z«"]­%[ .Qƒ0P†-_¢&Y¦'Z¥"V¤QœF‰#KŒ"J‹!Sœ H‡,;a+0E!E‡S¨R¤N¢Q£S¦S©UªX¨)>8:2AE>NPPLIIKJHDKLEIFOXY6/3*6H>3@71>5-4,GRVGUT7=7/4,;HA=HC171./*5?:9GD>TS=QN7E<;D@@ED=?=7@;:QJ>HE8=@@>HI>RM=]V@YUA[WB^Z@\Z>ZY:GAA[WE^Z=OJ7C<,.*.,(9LHUz‚^x‚]x†NfkLL.2.Ygj\n~6<<293?QUSlt[owYmzIW^350)8NE†U¢)cµ(a¯.VŽ3W‹/[™-c«(`¨#Y¨!X¥E†H#Q–N–$P‘->`.3I&:aL˜Q¢W¨UªR¨T©S¦Y¬*A;@9KNMLQSFGDLNNCKKU`^CRU6AA7B<6MQ-=:4NQ=UWAPUL\a3HKAT\L[^Fam5HN5JK8OJ0EM@T^0GQ#83!86;ML!2J&M€$U™%Z§%b­*f±&b®(a«%`«#a­1>8.<:7LF>RM7H?5A616-4E:9JB5D:1:19B=:A<5=227/7D<APRELM<@<5=8>SODTR=JF8?;9;9DLNAYW>XQ>XPSN3<72<65B;ATQThoXp{R^i>HG06.-3+9HCBQT@RT=MMFUZK^fI_eF\`F_\BZ]6@@7D@5?<4<7./*:=8OX\MX^CORDVY5=9P[VVgs+.)7A8JbfUiqYltUjtK]c9?;68/6;5,KGJJ/DE?JF;IG0IO4/5,15.2924;56A<8E?5:3.1/1;57IC@VPCYU8IEHVXEKJ@GF384?SOFUS?LI;GETNF`[GYX8<:5643608@;Meh^{ˆYs{Kfl=QN6C?3<89FABWQRdlbvTbl;B@-3,1;4CYYDX^@TUAk%>r&H$H†#N#UœQ#W¤(4DLKER[\TXXNUT=SU-OJ(?:6KG>LL-IM'84@JEB^d8OQG]`=KS=JL3EG5CA@S\5IQ;+IA=XY:42LE4PR":::@3>0K_.Qg,Nn)-&)("2:36FA7E@1700503C>:LF;RN@XU9IECRMAHHCLN;IG>VSDXV9AEGO\`MWZQQ?MN7@;9G@4=8-0+?@T)NŒ"X¦%^ª$_¬S£U¤PŸ!W¥"V¡"VŸ&P*K€&K€%H'J‚(I&F}+L}.Hs' :8)>;9LQ'>>#871?@BZ[79H@8H?5?65?98E=.3+1;44B<9B>5=54=6:JG;HE281/72;PQ@RRG`cJgiBVZM`dTajMZ_?QL@WVBXX?OK4869YfkTguO_iZsHad8MN1:38A=9JEI`_Wlu]v€MafDWX9DB8B>GORFJM?ECGRPINQ=@@AA;_lw2Gb)O‡!W¥T¨V¤#Y£&^©![¦ X¤$YžPš&Wœ#P”&R•+T•'J‚/Kw2>S>BFOVZWYZ^fpR]a3SY-MT'@<#<9";:3JG(>>3IIDV_5PS8HIBTVO`aE\]DYYGdj5V]7QTE_eBZb=_b4NO9OO(A=>QT*:;4GC+EK";74?57JI2FD,HI7PW2MNBLS-=4.1+.1)-3,7F99F>7C:4@<;NB4=:7D@8G?8A98?=3@8=KH8@:04/4BBF\ZEUVLch[tQgmUacWekKZ^@SPAWTB\\?OO9?A=ACDLOJML9MED`^C^[FebRovQeeO[a?JHBYVCVUP\_9<;6@>AQP@OLUotEYY>UT@XW=VX;PM3:4NMENMNY\GIK@EEITUMW`>??BCBU`bN]cVbiGNY3Or+T._%Z '`©&_ª X¤W£ Z¥!X¢!Tž&U—-L{3?VEJO8KPDSS@JDbnqIZa/ML5Y\(FG'BB,MQ(ED*>?BV^EUV?Z_FbbOdmL\]ShoCdnB\^6T\4TY+DOJYU@Vb?TX;NP)>?3MWAWUTS>SO>DKNIXWJQR284CQOEQPC_\PjnUimQafBNN@UR?VRNX\BGD;FA?PM@MMG[Z;OJB[\Oen?JJ8FC:ORJl~Oy‡_|ŒOai?LH;MKE]Z?QL>OJ>TSB[a@VW=NL=OO5=97>7AFEKSU\n|\q‚L`h?XW;LG5C<>PKAAGMMZirKU_DHHFGJGOLR`eYdmV^bPZ]Wah>IN5FZ4U|8`˜,W’/X’-V)O,K|BQg@HP>PJKYX?TX,EF'97BSO:Y\&BC*AA+JJ,?B5KJ2TU;TSQek3X^BddPnvYsShnDckRjv>\eB`g8VY=V\?QWJX^82;303,19/5C88F<;OK8D<6?:;MC;LF>KF>DSRJWVS]^>JC;C>CII@WUKegZs{Pcj?HI;JF@YVKWY>A@8<:MG;GDIF9GDCZY?VX>EFCWX:DB7>9@GFBHG_p}]sBVWC__?TQ7KFLQKICGDY_[entMQVV]hV[eRSUWajBHR@ReIY[:RW(FG+?;2JL2IH0SV5RV2FI7KIFX]DXTE_YCUPH[XEabSs}SoMitTmu]vˆUnƒF`hG\_F\dH]cHSUHZi54A78D<:JE:K@3946@63;4;=QMGccSirVkq?KL@KKJ_dO^d>DB7>97E@>PM=IE9GCBNN@QPIUT>MH:JDAQQBYW;WX7C@02/BRR[uˆ]„˜`‚’Ncl6HH@`]B\]?OO=JI:BBDTY?NRBRQG\\;C@DML_n|Zq‚H_bIfj>UR;PLLP;JM7LO=SU6KM9RY,ML8LNFVZHRN8ID6H@7B?7D85B:8E>4=6>RK7B849105+;JE>IC7B;?RO?RO9E>04.;AAPadE\[CWU2F_[8<88A;E_]Zs~Sho=JGFORUdkVcf?IH5@96A??SQ=JD@VVEWYJ_fCRQ=QM6FOL@V[;EC9BCJ_hd{Š`ŽXv„H`iZVA][@UR;HD:A?Wm}E[cI\[E\Y9GD;GB7=8KUXat€\sˆRkzQgm=[\:PO>ON>VQCbaCXUBQO:E@?DCOZZ[qzPX]SX^KPURZ`U`gT`gKPV@IGCSMR^^[eh\fn^kvGU]NPRX^`Y_bJPSCEAZ`c\hrF`i8Yb:\n1PX=]gJfqF`b?QENhfOegFSPO`\JUNau}IZ]G\XAJHNXQvŒ h€“PhqVjlOiqKil]ilPX\W]_]kmK\i5ELDVR:QU=PY(;@)9<+;E1>?1DK,AB)AA/KQ1RZ,KM3PZ;OMMXW:KH:NG:LE5C83<5:A97=4;KD:A89E>5>33:5;D>;KEH\`LbcDVV8><>FGTisHbbHYY;HCC\[LbaD\W@SPBYV?VU@XT;EB;FAEXUL]^LUT/.*?OK8>86@:=TQTnvQfj6B=GQVZhrM^c>KG9GC>OH@UR@TPNhrFblPfr?SP;QM;PNBNRDV[H\bGUZ>LLL`dbvƒZs‚RgrFesAceA_^B_dCY[?OMJ[]\x‰LivIio@WY;ML;JJ9B>OVZ`s}VjyXkuXfpEfl=OMCOMBJGZemZdl[cjXcmU\cW^c]jsZeiW]iGNOEWPW`a^hn]dn`hpR`lKNRY][`hmGQWRUUW^aavXjvM_dcz…AO[WchZksKbhGYVKcfTknDMKRZUMZ\UgfDTOKbZNbe\kni†—Tu„9RTMZWZnt_ffKKIPY_QXYJV[K\g?NWVP4492493=OICLNCQXTcl=GDRdnXilOggFYW;NKCd^AZWHe`ASOATOB]]TS@X[UnzTtƒTgnCYV>SO?YWI\`JY^BTU?KL>JHJae\t€XpO`mMjwGej@XWFfjIcjBSTQdnbƒ˜JcmJioD]`?XZ?UW8A>Q]g]o}ThrQdiYftTjrCVYFRQ=LG;HAHfg?PU?NIHSO^hn`ircnyajwV]fVafWej]enTW_LRUHVUZckahmTY`Y]cU[cDGIUXT`ipNSWSYZPUX^p{]itRdjh{ƒToˆKVYKSMNbdThuGacFRMIMFZdfUbdRfkFYUQheUluVfmNNGZdbB\eSag]ioGJHRVNOZaU]a@S]:LM9PW;QP9LQ?QZAOS3BD0@<0AFH\\Ynwdtƒ:HLFVN?cg:XZ?QN:KF=LF;HB@UR>XM18010,7@56;54826<87=48?96834?6;A?FON;A@:A>WjvZkqGYXCZY@YWFliFfcEd_CXTCVRB]ZPL:KEDZYO_eS_`=EE@QM:FBDVY=IID^`Hfg>WXTen\pzB[\>TQ@QQBZZB]^BaaToyb|‘Uhr=USAXVDddPlqJaaIbhFX[CSUK\c]x‡bVmyTn{HfmUX?PQ?WW>GFZgs^qQgrTdkbs^ivDOOKYX=KG;F?I\WCUUBPLFMH]godq{ivƒdm~PW[Tab\luU[aPPSPSSSZ]W]`WY[RSYRTVQUXEHJRW\X_dOUYPWZR]cXpzQ`fVknl~ˆeƒœI[eEQLQimbzE\aDRMR[^afefsq^pxOiiXjmSVVNI@HH=ESRKTY_jlZfnYgo[gnS[`W^aFVZ/@I2EJ9EJ8IK1CD-=>">=:QW:KPervdx†IUV8KOP]Y2VV8[[C]a3FL=MH;E;7?;?UM24,33/7<76:4/0*4516;5:@<9?8.2)14,59311+260Shr`qv?NLDdb?XWFmjDd_Dc]B[WEYXAUR?ZS>QL:MFD\[QdiXdfXbkGVW>MMOcl?QQ:KHD``LgrXlwWjqB_b;PN@VX:HE9LJ8OW:ZcEabIZ`LTQSci;MS8@ML.AJDUQ9C76;65;3//)671572360360<@<:A:?JC9A924+.0*5726954;3Ncj_pq;EdbRluZp}WmvJeg?YXBWS9@95958OJUm~k€•az‹Nls@ZWRqzPozOckCZ[@YWE`g^lvP_jd€“]wŠXqƒHer;RUL^gZ|Sn~O^l:>=[muSfqLgpF[_CUWTfq^p†dzP\dYfngw‡XbpAHELZYCSSL`hETUVgmDRNKZZ\lp[o{T[`FGIHJI_hp[agVXaRV[OQURTVWY^Z^bZ_eV[bZ`lYbo\grZbfSgo_s~L^eS^eVeqHRNSYXPflF^^[jqh~Œt”°NnOZXRUPNE:H>1MD;\VNYRMYQKWJBVRM>OHN_YYegQ`dGY\CIEFX`;S\?TWFbe9XeCY\'BG-FFq€€rŒŸq„ˆ@O[1<7?XVBZbFMMNRKIZX0KS)<<.CE@RL7<4370/1*9<669135.0.)7:5:@9>HD7@513*03+/0)26010*DVYUd_7JDD_\CVTD`aEgdHijD\[EWVAXWFcfCcc?TRB\ZLcd[jrYguOfpNhnOdj8E@4:1A^\Ljt^w†\vƒI``@TSFV[=GB;E@?URQajqˆcz‰MlsFdkVxˆLoyG\b7@:@YVIfi_qƒVft`|]vˆVo~Qn?`fTeldƒ›a}”L[f37/KRVRagTn|KbkARTdxŠ`y‰ZjyS]gW`het€KPXAGCIVTN[_]ksIWYTddDPMHTP^hn]muSYb<@@OPNahnZ]aU[_TZ`LPQPTUV\a]de^dn[enco{`pIVZ[jo[xŒ[qQanRYXUfrCQQ?DR\5OW1LN-JH4QP>':>0EA+FDEWR?EA9C<35.23-8>97<435.7;69>97<7>JE9@:34-04-3807;77<3;FC?KG?OMD\[DUSEb`MpmFgdJbdJ_hGekYqƒMotD\_H_aF]a\nySei`y‰Sp}Jbd7C;6?:=RNBZX[ud€ŽCTP@OKN__?KICQPMae;E>\ovdyˆMjsGfoMW\HejCVS:D@AWTTknas€[rQfs_}’WuƒOht8IJ[nzd“e˜JV_486>B@IUV]w†NjrK^bf~”^u…Ygt_lyU^jWaiSYaIQSHVSLSR_kq@GC?HC>IGKRObrw`jrW]d:=;ED>Y]b[_eX^eU\aNTZR\a]fqafq\hp`o{ar‚\m~K[a[mpk†šZrƒR`iS\a`t‡IbgL^cVedp…—vŽ i|‘c{‡XaiGA7I@1MA4>J>JH@OKDFF:GD6ME9WWPIUU>WZA]bEZ\CX[@S\P^_K]_K^f=W]$>H7TS~‹…ˆ”o}‡w†‡4JZ?OS(;=&;4BVOAHC>IB7;4593>ID7;557/8>6:@78=7>MG6<224,17/4715629:6/0(ATSCTPCYW@PM9HA=QKUltc€Ž:B>8?:I\\ARQNceQdh;>>BGG]hpGWYPlsTbmDZZ?UQ;HB?:BA:YagZbi_doX^dT_h\jubq}am{L[bVdfbvƒ_s…NdjTafl\t„WiwYiqm•`v†Mak^[ZbnzYeg[^aSbcQJII>3K@1PF:PHTXBRY;KEXnpEehXy•=dp@X]_kkH[`1EL1NR7PS*A@4PM9SP,A;0OY):6(97'73(BBDVQDRH:C9:D;7;4;571594BXVDZUAWQBOJBZYKfbGd`L`aDSR?XTQhnczŠb}Œ[t@YZCAJchMirTpzOcg8?=;=IJ7D?EMLOelRcji{Šdv‹\is[kwU_f^dk`joV^^>D@HGEDFEIGBY]aGMJTXZR\\[bfKOPCDB@C8[kk\fm`gm\blUdm]mwVcjUfmBSUP\aXks[ls[qyYm~ew[t…Ypzcw€q†qRbp^XXWUVUSS\WXUWXOGAJ=.M@0ND4SE4SG8TQF:D8.F>HJ>?C8)=:7MI.LN+GH;\bL\_9X_>TV0KN@URd„…/Se%GI#BE)EH-CG4OQ8QS?SVBSS3DA3FA0J]$85,@@:RU7XVCROHVP=HA?NG8<69=68;57:3;FA?NG;E?:H>9@97<49E>?MG9?7?LKBPLFXZFd_C_YDSOD\XJikIgfAQI:E@>UOBUS`u„g~Œb|†E_c?VY=QNEhhJhpBc_:NIEYZ:A:AJGSdlOeh8A:N[YSglRcgZdlEed@SO:C>FVVM_bbx‡LYb?3EE:LN,B@C[Y8SUCY[6OT/KL1KGGYYJ\[BRKBOK@C?JDCUQ=NF9G>6&:4#:941+* 31(=::NSBRO>an<^cbwxjyhsrKhzGMLFOQO`e;Wb&@7,GF#A>8GB?QJMaaEW]E\]Qgl5OV0IN3FAHXVJYUJ\Z@RH?HC;A;=E;;@8>RMDVVUjri€–l†—f‚[y‚B[WA^ZIb`E^[ARP?A@=JDHVTbnvLbb?OLFURTioi‰ža€‹F\]MZ^HSSMfdMghUlrRZ\F`aJgf@MIITV[q|`u€PfoDOTPfqUnye|Š[s…d|ŽH[aLX\brx`wˆI_\>MJDLJYacL]]R`aQZcHRPGVT\fg]cj[]^@DBLRN[]cWY[[_dY]cQYZSXV^djCGEW_fTbeZozI``TbcNVXZp}]ri~’[s„Xlun‚‘mƒšr…™wŒ¦j‚˜ct€co{_[[ackotwVY`UKEXQN[PIlfdlgggbbNL?PG6VMARG9ISFWRJ?TT+E@$FB%=5%<803/+$<:&<=A[_OmqB^e[qrHcfJcc1JU3MT$:6@SORku.LN,D=:LL9LF8FBCRMjmiQfr1IN:VT%BC1NN0<;ETTKZWBQMFZXFSN=F>DUPAIC>D=BPLC[X;F<=MH@IF?IABRNDYZTxx<@71/%7@;IhcF_YAPIHfcHidH\Z;HGHYWWiuexŒfy‡ZltMlpE^]C_[F`^E^[;D?DOM8%;8*JO=YZD[ZVluL^aYhlannff}…\wŒ)<;MbfR\\QaeE[a;JJ,DL5HBBKC;Y[GZY1FG%?E*EC%?@)?:69CQMJ\X=HCEZXFQL>HEFVTAKB@KC=F==OL;JD;CAKUVEMHEZXKfgQoo8<441+9>RM>IHJYX@RMBNIWaeGUREZUGXWKY^m‡œWy‚OkpPcfCWWG\YE]ZQmq]rG]]G_`M]cUdrcv…f{ŒSnxRiqg{ŒTp|m…—rˆ¡\ozS^cSYYZdj[gkKhrJZ[XdjUWZ<@8RbgBHENTUU^`OUUJMKCHDSUX`dp[ci^fjcinT[cDPMJXZAJHPYXlƒ‘Vgnf{Œ`yˆZs}dur‡št‡qƒšr…œdxinvox„novf`_^[\QKG[NM^WV]VUaZYYQROA:UG4#:6 72(FC856LN)HJ6ML?TX5LVJ[Yk}‚ž¨¯›§³ez†B^hESOLOOMTNS`cT]`OUV6QN)HI6KC=UQ,JM)BD$@BQO@OK8A:E]\DTRDPQFUQ@G@?IG?MH>OJ?LGOIDRSM_bCVODPMQ^`ESRDWSI__Pbhe~Uu€LfiG`^G\\FUQGa^VrxbzŠUnxLiqYn|Tfrar€cx‡Uhobv…^lyctwŒŸg{ŠX]`QW[NSRS^`KQQUjoIZ^]dhMQU991MVTFLKU[_UZ]OWZHON:>8]bgbl{alvbkvY`eGNPIYSZrzK_efwl‡˜Tgkg€’]w„e|†btdu„tt’y‡˜jrPMMWQOVPLUNF\VSTLG]SP_TQaWUf^\]YYND:OD5XN?SI=XKBRF8RF:BYT2IE5KG*II:3$@7!CB&=:GUNRgkMgl=aiWovfv~lˆ…¤®µ£¬³•¤µlqzWkrO\b?FHHJEFPNSWURPKUXT3870;94E^^LkfGYSE`]LqoE_\?MG9?6EUX[jocw‰NSTEKH;HCIli?UO?PJ@TPI_eQjsG[YGUSKYZK^_FYVHabTgnas~Ws€G`cHbaJc_>GAF\ZOilhƒ“cŒS{†f€•PaiN\_`r{CFEcn{PZ^X`dw‹ŸO\aRRSRUSNSQUadDLHJMLLciZaeEII;:4akkELP\hnNVYPZ^XclJSUbjt`o{^nv_mxHPQAEBVlrXll^r{q‚‘`v^pso‡šcuƒasykx„clvagn_`d`bfRONje\|wtZUQSG;_YURLHYOJ]QNbVTf`Zb\]SEPJ;E<8BSPNjgJ^ZBTOImkCZTE[U;E;=KGQWV[lt=?9:A::FAHb^ARKKFFZ[Ldeb|‡VktYlsk‡œJ[_?FAFGD<:3\cn@DAMLJ\jrMRRUVWPRRPRSOVXNPQMOP[dlZ_gBFFCFEm{S_edsOVZW]`fw…bo~dtƒat~_q{ap?FGaklgzˆVdcev`ciJJA^hhimrnqxlmhy†™hoxbadYVVULGUD3¿·²np|F90NB2]SOwm_YPO[NF_WPeZUVPHUD6QD5SB4QC3TF9IOH?SM/XX(NM'A<"=<,HDEQKM[XXhk[_`QXWXc^\kp…Š„ˆŠˆp†—QdeDTYfkiX^eHW\INIR`eCMMNMFEQN3HF9B7C>JSSGJG;0BCEGDRQIEC=NOHRbgKRNY[XWYUF@?HCAMGAQKL__CTMDXS=IDUlvi|ƒQ_]CNHL]ZBNDHROWfiKPN==6@OHG]WAPFGa\EXP@KG@KH::0>B:=C:>E<@HC@OHPghPfcI]ZGbeZyƒ^tZltIbaEVTHWTK^^COJ\t{\glBOHG^\JSTWgkEPKL[XNcbK`b@GBLKKMSRGUTAEA91)=;.?<3CC=MKIGED[]_^adZ^aLNP[enQZ^W]a_hrYemMY]ky†p‚k{ˆk|Œ_qz`knguzo}†gr{Yjgi|„`pxUYYa]Yiks]WQa][YTOVSKdaZdZUUG4YV,NKCPJNTG`YQ˜•–˜œ‹‹Š€Š‰o‡Tfk8JH3IG*?8.E?*?=)889?95<9A>7@B>;HFATU;C=Z]ZMWZM[YHSH/MK0MI$CC8JBEQJ>QE,LF?J@BQJBWXHYTCTSGYVCUTCUP>HBAMJAE?FYUMa]?E=ALIARNMadm‹O\WCOGJ^\IYSS`a]mrS\X??695-?JCBSLH`\CRIAIC>F>=B:AF@DNGFTM?G@BJINigOedJZYA[[_~Šc{ŒZksGZXQghM`\I\\SadU`fQWW@IAGXVU\`_nwFOJGWRK^]IYUISNNRPGHDHYXAFA:1(A>3@>7NMJTTUMON\_achmWZ[TXZ_mtWbiZdleo}`n{[gpp~Œqƒ’l}‰hx‡YmsNZRNTISVHLK=SRGjqq[^Y`^]\XSdceXOF[WRSPFQF;]QFZL@XOEfdcZSQc`\YTQ[RDidYTMD¬–}ÐËÆ£ ¢tjbRE:N>-OA4TD6VG;QA6QA0PC3RE4PC2PB1MF97C:7TN=NGPE3{sa–¤wrpd[Q^YO>MH2FE@ML)<:#61=I?LTLELG?GCe[EAOSGNN=KP7JIQegTTIfcY:LL%=:-D>%HB&JH647JB0HE1D=3HF8:0=GA4PN,HEGYZFXSAPLGYXEPL?JFDJEDSPJZS?A;CC?CPICSLZimERICQJH[UJXX^mr]osU_\?C9;91;?8EZSH\XFVRFROBMGANIFQLJ[XOedFTRMRRJ_aNhhKXWDSPQjqh…˜LYY?D?FPKK``FUV[lq_goPTSBGCLUSTY[ZegBFAIVTPcfJZXJSPW`aJOJGPM;:3<2-DB;A@;UWY[`eSWXWZ]\adOSSV[_[im]mrar€p€”k–cq|n{‰jz†l}‹bnrNTNSWQV\WPQDHB5N@0]PDRNBaa]a`]cbbUK@ZSINI=QB6TG:TE7aYR^ZV]VPSI@XL?h]NkeYj]N¢“‚‰taqkeI=.OA3O@3P@0N?0PB1OA1NA/NB3PD4NA1MB1DK?9HBIJDQG>PE:n\G¯¡“Œ‹ŒnjgRQG3=56CA;=8@PJ(DC/B<_bW?HF+0-QPBnk`vsl`efI_fHZWNSL:D?4E?!95%@=$A;'ML.GH5PM7TR7RV/NN*;6-93$>7-JMFSRFYTFUVSdc=F??6@H?CQOH^YFZVHXWDROFUQL]\IXWPikYhnNVTLSVMegDSQ@KGDWWYu~GTR>C:AF>L``R`cKYVPYYPUWLSRU`^MOOIPKBH@NZX\ipNZ\UYX\egGMECE=?91D<:EA;IKG`hpelwW]`V]`]glENKJRPX_^k€‹o‚“}“«l€‘gv…fnqsŒdmpOSKMRI_a\acdQRGPIige[YT^[TQI9TG7KE5aVLQE8\QBe\WUJASE9†|u~{zTF6bUDZL>VJ.J>/J@/K?/K<+H:*H<,A@3E;.pdXOMCME6SPJnYBvjW_ZPW\S:UX?PKH=-NO0C>=HAPXWc_Vpheqg_``YHUUFZY&@A2F>AMG"9:#=:*KC*OQ&DB#77&@93OO8OJ8US>X]6IJ5MK?_hH[]Ta]MTU[if>IE?E;=A:OXZX`aTVVIHB@F=AQJEPEAI>@FB9CKECKABOKJ_[DYSI\YHZUJ`^ShlHXWKcaM[[Q]]T_eQfnKbeBOKGXTQopHXU>@;AC:M\]TceS]`SZZXacLYVKVTGGDIQNBG@KRO]fkT]`UXXZbbEPJFKFDB=GEBBC/VH9ZMFXI5veRSICQB3PB0PB5OB3O@1NB0NB1QD7K@2KC3g`Uvsp\YVRLG]UKyvp‰‰†††‡nghue³®©¸¸½`]WSMANH7MPG8KJ+MIHWR,==5=;][Tf`Y_\XHLF_\Upe_uyyEce-ON,HE#@?#<:$;5)FG&KA*SR;9=8UaQTii:TSCMI8TP>WY4LL'FFYjqS[SHQTmy}>IC>F>=F3DQFELBDNDCLEGWP;>3EPJCPF@JGKa]=F=F[WH^\Mie`rzFRMJa\Wgg]inRZZWgqZqzJVSL^[OmoHZW?@9CC=KVOdosTbbOTTVadO^[QXVHGGINJEKDJQLXbfZ]^LMJKSRHROTXXJMKLOLTZ[oƒŽr‚fz„V^blvz_jp]da\c_V\XlyŠW\`IL@MMDNQHNQHNPEQSDYOFa]V^ZZNI6UVE^YORH8QJ9jc\ja\UI8NI7PL;PF6ND4PD3VI=[MAZL>XKDRC6NC3QE7QD4PB4NB4OC2LA2LB4OE7SH@\UK“ƒ½¶¯º¶°ÔÐÏ­¦ §£ž¸§–ÑŸÖɹâÚϼ¼ÃŠ€~wnWZQR\_7KFINM8HC.?<6?7QVPBKGef]g_TVYPHOLae`MYZ{p]Œˆ>QN:RO5SS0NL+KM'A?3OO0KG(RR/'-E=-OI@QI-LN0D?1PR0LH>[^6SXw€•[`eQX^gq~GNKAKF@JEanw\dgX``LRMHRMFQGBOG<=2;7/ENEIRIDMBDRHEUM>C:GUQG\UH`_FXSBMEFZWLbbESMTbcKWUKb_HVSVgkLUYe|ŒXqxJVRPa[Ha]LdbINGHMIMUQV[\fr{[bfYbeL\ZNWTVWWGJECGBFMGLUSTVV`ecXacS[[W^bBIIOXY{‡Ž“¦´€kv|arzT^_hqtfmn}…„dkjTXTlz„MRLJPCOUNSTONTGSSGWNAXKA^ZP]]WPMQD6LA2OE7oaWmdd`TN]QITLEVM9,EF7JFPb^6UW"FE)B=0>;'=<'87-DE/CB,DC0JE.NL8UV“œ·x}‹clvwˆ¢bjoSaaFQQ]in[ceJQLCMFLTSDNEBME=@3>?6EOGHVNDKAEUNCQH>D:CPJDSLMfdNghHWRJ\\OedBSNHRPL[YOhhSgj[lqWiqcr}N_`GWVQ^]J]XJXSQYVOVST]\OQQbhnafkW[\MXXOXWTUVIIHGGEILJKRQMNNRWRepxZahWagk}…€•£Š–Ÿ`jeKQFdmo\fe`da€‰‘muxikh\]ZSVP^llKOD[`Y]`ZXYP\ZQ`VMUInsmNURegcigZHQI^bZmqbŒ‰y¢•ƒ_kxDNL-;5:JF3EB%=9*KJ:YUC]a:JJIPQESQ@[Z(PL$DC-@<.HD;QJ>TQ/FE.FE2HC?WX9SX’–ªoq„t‚š˜³{„”u€‰JVX_lrdos=E;ISQJVQHRP?I@AI?N^[M^WFOFDTMBNE?B6>JA>I@Qema{‚HYWPclVlsMaaMUUFQSOjmZpzfxƒ[qxckoEIDOacZfjM]ZJOHU[ZTXVS\^TWZOQTZ]aNMMKSRT[[TY`OPPLMLOSSY^a\_cYhp`myft€hry«¹Å—¬¾]hhV]V[e`TZSSXO{}w€‰TUSPRMMTJOWNO^WX]S~|{unhmbYxmhi\VUNDRG:VPEWNBQA1SD3PB/OC.VOCYVOXJ>aVQYLIL=2P?3ZRLnd^e__{sp}{¡šÁº³Æ¿¸¼·²²¨¡ÊÁ·×ÏÈÑËŤœš§˜Š×˾àÙÏàÙÐÚÔÍÀ´©™—i_T¢pãØÉÞØÑà×ÏÆ¼·ÒÉÂsyBJF@GB7>7ˆ‰‚¦£œ´²°½´¦ÇÇÉx{EXZCMB:QRe_HžyDPYQ`eNVM*KQ0LJ#:5*CBSVN`mohjjY][GRIEKA^i_9VW3GEAZT:NK+A>$;8.A>2/>YX/HMbel`eqƒŠš¡²‚‹›‰”Vgsˆ”w‡“@LIBRJBOIL^[RchS_]HVRShlXmmRdcGYTGSPAE>@IB@H>LY^b{ƒSjq[r€ObdLa^BIBEPPOkm^v‚f{M\[DD<=92Selfr}ZbeKQMV`aX^`^hkWZ\]ciZ^`RSSQZZX`a[`i\ahNRRUY\m{…l|‡ÇÓÚ”˜Xhk‡”£°¸Žš¥W_^PSIWYQHJ=bbYmooPUOMSFPYRNYPVWOinj€‚{tp_RHk\Sttujd[WPRK=qcX\SDULMLŽ…wÝп´µ»shÀ¢‚ÝÕÌÔÍÇ‚Œ”QX\D@`msffT1FR3ML!<>?JCb^Py“ƒ}nmnMNBRRCigb@TS'=6IN>EQJ5IL.GH?KL4IL;U\3HHcdhdkwtz†ƒ‰–€ˆ—‡’¡iyŒ§·Èš«½aotSgdAPLM^^_tXccP``Lee\w|d€ŠZooFOG@H@=?6@A;GQN`{‰rŠ cs‚N`fQhgDOIMY[Xpy]qyTa`FTO>;1?71[aeenpTWWPURWb``hn`dgQUUTYZ\_`NROPSQGJHr{ƒ|ƒX_ajw¢±¾ÒÜ儈‰n€ˆ·ÆÏ­¾Ê‘ ­]a_MQIOQJMNGNOEPKCQXTMVJX`XkxzNYRTTKyutˆ‡‡mcaWI>l[Pqd]h_[SMD_XL\MB\NF_SOYK?sjdytqjc`k_YeWOUDTMa]KyfV„qf‡tltmge`UTHBZZ7RJ-EA?D;6DSNax†x’¨\lw\lz\ryCJFLSTf{ˆcuyIQLDJD@;4A61QTT_egZZZPVVU^^_fldgmUYXB@;HGBajpUZYFMLƒ–›©nv}ƒŠŽž ¢‚…„[egƒŒ°¾Ç ¯¸cjhIMFLOBKM>NOCQXQPVMNQGU^Vpwwvvwhpmjmn{|~ytrqmi]WN]TN_WOj^Yqf_gZRVF7\OGVJ>k`Zoc]l^Wi\UeZVVHAYNESICysm–ˆvËÀ·ÞÓÉÝÖÍÝÕÍÝÕÌÝÕÍÜÕÍÜ×ÏÛÔÍÙÒËÛÒÈÞÖÏÝ×ÎÝÖÍÝÕÎÞÖÎßÙÓ»µ±ÎÀ²ÖÎÆ¤š††q\±ªžŸ‘„äÚÍß×ÏÉÿy{x¡ ”ÛοÈľ®£šÔóßÖε¯©ÁÁÅZ_^qa‰‘$59GF4aa`_``—‹z¸¹¹µ¶´~‹’L\jNG;kZDo\Qm]Rr^Mrjb\THTTN.FB*A:ASL0AC"3/7F>LbZD^^A`c>RSLY_Qetao}iv‡kvƒx~ˆŠ•§¡²É±ºÉœ¨¸‘ ¬]qwBTQYksTa_G`_JigNeh_z…^oqAKBEXPBIC>=3FWXYpvgv„XfkTfmWnsDLIQ[^fxYihFNGB@7?7/KCAPPPUXV[``^egS^]S\\^beNONCG?TVX€˜QUQNXW’Ÿ¥¾ÌÖs||MRLKNGHKDTWVdmp–ž¢†”Wa`NRMNUNMTFS[PWa\QWIPRIfb\‚~xsvkewsq‡Žfkqb`Yupj[UNof\rbZl`U_RGL9*ZOCmecsjkheeXOHUD5\NHZQIngdpf_£šÁ³£ÜÕÐßÚÓÞ×ÐâÚÔÜÔËßÙÓßÚÓßÙÑÞØÒÚÑÍ·°Ä³¥ÓɾÞ×ÎÝÖÎÝÖÎÝÔËáØÎÞÖÍÙÓ˾ºµÊ¾µ³¬¨Å¸¥ÕÍÆÛÒÈÔËÄﵤ¡ž¶¢ŽÏ¶ØÍÀÌÉȶ¨˜ÒǶ„‡‹‹‡{xrh’މƒ{R`mvtk€†Œzl^Ú˶ÔÌÄÌõ½µª¤£¬zyoliL=/RE/`QCXF7QL=VPF6HE)?6(?E'961KE5QMJYPFb`BZ]PWOAGFP\]?A=SU\]bklntsw…¤¶Î®½ÈŸ¬º¢ºÎ•›F[^[rxLZUPehNjiKabOknOdbCPLI_\DPJAC=BKJQijco|RZ\RgkZpvFMKUdndwR]YELBDB9A>7SQRY^_PURdkpbhl^hmNTSSVSGGDMZVZbe`jfLSM[gh‚”ƒŽWc`NZSJTINTMMQLMNJ~†Š™¨³grvNTNMVNOVMX^YS\UMWIWVPh`Y}}}rpqpebskf‰‹Œcfggb\\TNe\Tpf_l^T^VL^SKL:,]OFmb\oe`f\W[LD^PF}up}vp’ŽŒ£•ŒÎÆÀÛÔÍâÝÕâÝØÛÕл±­š„x§”„¾®¢ªž•Ì»«ØÔÒ‡|{}eV©“‚âÙËÜÔÌÞØÏÝÕÎÌÀ¶á×ËÜÕÍÞÓËÝ×ÑŠ€~Ì´œáØÐÞÔÌÚÑË–—’ƒz”~tµŸŽãÒħ¥¦hllys]……]dallg¡œ‘ª¦Ÿ´°­ÛÐÂÖÐ̵«¢²£™Ñ«×ÎÄËÁ·ÕÌÂǽ°ÇÌÎ\^fcUD‰weocXbgi6A:4C:#83272A9Dbd@[_=OL7PM5RU;D?:92CLF>?9QTZls„—¦¸Ÿ­¾£²Å¤¹Ðž¸Ê…©Å€š©Kiraz‰KaaWmrQgfNc`OmmJdbCNIJZWJZWGTM@?:Ukr`m{V]aUfqOa_ISV]q}dxyMUQEI@GE=GHBY[\_lmM\Tcpwfv~`kjKQOVb`U\ZcoraqmN[PPZSmstƒ‹Wa\T[VO^UJUIKNBOQIV]^Žš¦¡¯\gfKTIOVI[bY_c`Y^WOUHOUKcfannl„†qprtokda^c]XZVL`\Tui`h_X_TJeYOpf^UG:_LCeYSfYSRD6L=.ˆ{qœ”¨¡—®¨¦~ni¯™ŠÝÓdžvr¶¢ŽÏÍÉŽƒw`Uv]L|`OzcT§zÜÒǽº¹«¥¢‚qi†pdª’ÛÐÃßÚÔŒ†‹‹wj¾ª˜ÜÑÇÞÖϪ£¢ÔõƷ«Â²§Ò÷£ž£Œwm‚qjˆqc“ƒsS`bac]>E?lkdŸšÇ¾³ÙÐÅÊù×ËÀÜÓÉÞÕÊÛÒÉÓÊÀÑɿ·ªÝÒÆÞÕÊÕÐÇ´ªŸ¿³¥¤¤¨f^X£‰jƒŒ¢9@86H>3HO=MNUha`rsFZa:RV;QW?X]CWQ<@5AHBPX]…•®•¢¶—£²˜¤y}†Š—`q€Yp‚gw€J^b[uƒ_~ŒdUnoNgjRlrIc`CQKIVSIZTFOIIOKSZ^gs\fnYguG\]SdpXks^qtNVQDHAFG@OQQY]^`jkPa\PWO_jfU]Vbij€‰‹MPK]b^T^VP\O\b_€ˆ”akmOTNPWOMYMMVJOUOMPJr~†’𢂖XgcS[SSSM]XObb[jhddgfU\Unuuwz~–šionWTQNNEXXOkc[l[Qk`Y]RD^QK`TGtibYL@WE6bTKRC:L>1j[Q¦œ—«£¡ÊÁ¹°««€pjmf´§—–ÔȼÐÌËŽ……~ja|f^ybUzf[gZ»§’à×ÎØÓψ„‰vaV§~ÑÅ»ØÌÀÚÔÍ’–wfÖĵàÖÍÛÔÌ~ty{bU~eYŒve†tjˆtk~kco_T_TJSVMY^[MNK•pÙÇ´ÚÒÈáØÎÚÑÉÝÔÊØÍÃÞÖËÝÓÈÛÔÉÜÒÈÙÑÇÜÒÇÝÓÈÝÓÉÜÔËÎÇÀŸ«œ¥­bjjbklDMH+:9">?+EE'@A+@jfbqjh€vpyrplhfgeiljdgeX]XUXRjfa^SPYOEVJ?OJ=OD6OG8XJ:`SGUF8QB2XF;K;2VH=‚vÍÆÂÖÐÊÒÎÈÇÂÁ‰||}f^h_°‹ÙÒËÓËŬ§¨€pi|ja|g_€mg‚qgõ¨ÛÑÇÝÔÉÈÅÆub[™p‚ogaP³ŸŒÔƸɾ·«¤ƒqh¬x®ª¬|idxcYycVzcT„n`ƒofWXT3A?DLF‚pf€nh|bSµšÚ̼âÙÏ¡œ ½£ÚÐÆÔÆ¼ÛÑÆàÔÉÞÖÌÆÀ»›’‡ÕƶÞÖËÞÔÊÕÌŹ¯«ÛË´—¦¯x‚~7NR,>@,OR'BB,DE5JJ2IK7QS6OO5XZ5NSPROMRQVep“£½’ ´|U\ZPbhU]bQUWV]c\gkEJ>==8HXYXqyVsxNloJhiXozbu}RcbM_]N[WCF@STVakoNXVU_]R_^WpuZpoh{^pnT_]NUPVZSZc^ec_aVKd\UUVKSWKW^VSZQR]TU`YV_[cnns|~Xc]W[WacatuucgeyzxZVOvsnrtqVTLzuszvg\TSL>ojejd[skdk`VWNEQRFhlfilld_Yoc[i^Ti^UTNBLF6LF5NF8QD6SE8PB2K=.J8,RB8O@7wmh¡–޵¦ÝÔʰ«ªÄ¶§·³µ|kf‚k`—…|‘~rœŠš‹ƒ}ucZoe•‡yož‰{˜ˆ}¤“…³§¡yhbƒncƒndj`i_§‰oÓǺœ”–€ke|fY—m»¯§˜Œ‰zw|dUˆob†oea`]YULŒwl‰sgƒro†re¯š‰œ‡{ƲÒËÆ¹¦˜ßÚÐÉ¿¶ÎÁ¶®¢—ÖÆ±á×ÌÒǽÔÊÀßÖË×ÌÂÉÀ¼¬®®vrgn€/KJ(B?zzn-OZ(BA4JJ.JO7OMG]XM^dMjs_qsZfjdlu]o}ŠŸ·©¾ctq@KEGVUX`fW^aSVWWbhGOF=;1CNJK\\Lhl]{…RjlVjn]orPfeN_\LZVEIDUVYdprR^XS_YO^U^ppo‡“]e`X^UOXQUVRegca_\h`ZZPBPD4RPFYf^Xd^PZPWa[W^Xq{€{‡fqnPXPNTIWSIWTHpndomh[_Zhif[[T]WNxrnuolVMDgc]tqlh`WxqmTOCZVNlictsormgnaXYF6l^T[OGMC4G>/F>,KC7QG=`UKVI>ZMlvkBTYBNAXa]ckjct}]jlcozfx…^jsXbcIXSDTNM]\YahX^aMMIQY]S^ZAC6FMJO\[H^^c}‹Tb^J[VUdg\puM[ZTjrS\XTZ`\ecS\QR_VR`XYfdoƒŽQXLR[MR\OmgczwtlgccXOWPGTTH]ecs„ˆTbWZe^_ie\a\Ž“–’˜`fbLSJN[RKQBKRBVVIb]Wvvv…†‡hhfNK:b^RcWQSF9{rl}yupkcukac[Tjf`{wsƒ|z^PFXL?OE5VNCOE:LE5tne•‘‰¶°­™•–‘ŒˆZRKug«¥ž™–––ŽèãÝ×ÕÔ•‡ƒ–‚yŽ}uŽ{r§˜ÌûÆÃÂ|nhŒyo”…~ˆum„nd„qg…oeƒqj‹wn„oc‚ofƒnf~ib}g\‚ohƒogxo¤Œ‚€i`‘wg®¤ƒoi…qe‡qgŽwk“~skci]ƒmaj\ƒkZŒwk’}u‚lb•qœ‡}i`Ž}ržŒ~§‘¬ž’ž—‰ŒŒ=FE—‚oµ¨™‡€xÕĪÀ¹²Â·¨”›pz}vtsPYV‹…rNqƒ1MM)<;c`PXly„mN„‡ŠAMK>JIW\TQ`lQ^^^lu\cjKOHFOGFPIO`bQ^\[fpX[YC>8YemR^YAF;HIFUW[SbdYqwNYWNadVeme|‚Qdicr}ft|fvYd^Q\QR`RQVLk}Š|‘šT^PNZMee`uf_yj]c^RUULYWRV^T„˜frqOZNZ^Z^a^rwyŒ‹sssnmkutptroWXPPSFKN@cd`ŠŒ¡¦©’””QL>OJ=TI;ZND}vozrnvplbZSd^Ta[Via[\OCTJ@NE6LC2ID3TME{wqÀºµ ˜˜±¨¢ÉÆÃ¥¢ vok«¤šÇ¼­§¦Æ¾·áÚÒÎÍÍ‹~zj`zdV|r®ž“ÞÑÄËǨ¢£€k_•…~‰wp‚ndymy‡wozs‹wnzp„qh‚qh¡•‹½­¢®§©xr‡sh†qgƒnf„peÀ£Š¨¤©…sk…qj€i^}aPŒwlƒmc‚j\…lb†jY„ngƒm]‡pd‰qiŠqdŽxnˆrfkc]l_R«“ÇÁ¼{~€d[FÀ³¤¼®¤†‡‹‡pgkgwlX¢—gy‰jkl`jrOSN4EB=I?qogab`DQO1;:0>>0IK/>8Q^]]flO^\]o|UZXLOKGSKHLGMWXV]cW\dUYXIEBdq~\jjFOIINNWai\jrM`\P]]]jwcv‡sŠi{ƒnz…mx„hwy]keXe]Q[NQTKuŒœ‚zvrzwsxpig\UcYMVQEWWNW^SY]Y“™T\SPWMOTKnpn–““~xwwqjlc\І‚wrqjcdd\€}€zvlgalhaMH8PM;TKND6rfY˜’ÉÇÃëééÝÝÞœ™›ÐÊÆëêèáÞÜØÔÐÞÙÕ×ÐÈ»²¬±£™²¥Ÿ—‹ˆw•†|‘|‡rjrXIy]L}g\ž…qȺ¯Âº¶Šzx‚hZ‡qe‡mb‡qh‡qgˆpeŠpdˆna¦Šv¾¯©†rlˆl^‹~’~s‹tkƒlbƒhY€mg—tXœ‘{cYuYI~cQ„l^‡l^¹¢“‚pjŠsf…qg‘|rj\iZ„hUŠti~gY|m¦Ÿ–hij•Ž…®œ…mw‚O\ZPTJujVyƒDPJDMN5A>*EF][K€}wZ]]D[aGRM`fbhaWƒ{s‰…rtn\c^H[XS`gV\ZPYPPVWJH?NPLLQIKPKB=1LPPclpOXSOXZn’ky„PYVZfofwƒj|Œ^lqemts€Œt€ˆhkhSXR^iiSe]_jhTgaT]UPUJdjo˜ƒzwgZO]RD\VI]UMUN>UJg[R‚xq‰ƒ~“““|TQEMG7OF7WI=^OCzmg\OG_QCÔÑÍÚÛÝôóóìíïÄÄÅéèèðïïæããìëéåã⤚–‚j_†rg‚k]†oc†pf¥™§š•‰xqwYHrR>uYIuXJeR‡rg†n^„mc‚i^‚i\gW‰rf„iZ†m\„l`–zj›‰…od‚g\u[NŽvh†maˆqfƒi]‚max[N£Ž€€ib|aTƒj[ƒj]“s[ĵ¬‹|x‹vl‹um{d\‰rd~eX†jWˆvoVOGoibwwpƒzg””” {WciCPNHXYmdS„…+8:GQM2BBQVQLRLIOHA>2A>9XdfYgkXhmoƒoˆP\XQ[ak|Šo‚’kjjYVOXZXXa^R_XVb\[heo{xlvxZ\TRNDSULQXOlrtqqlYXNURH\_T\UGTL?SN=WXMuz{yqingbqol€{x„{v~smwmcyphwokoga`YRvpjhb_vqlzme„ztwpti`\PCmf]XRGUI=…{txriaX\UHLF7d^RkaTRA0fUGzlh^QI„zööøãâãôôôëëìíìíóññÎÏДˆƒÃº³îíë”ŠŠ‡oe‹yozdWeUƒk_|cVŠtg†tjsUEpN8w[Iy\N€aJ|bV{]K›ˆ}—‰†…mc…k[…nc…j\Œuh}cU…iY‰pcdSz\JsVF‡n^‡pe‚i[ƒhX„l`z_O­”„€lh€g]‡pcŠvi®s½²­…rl—‚u|t‰ti“w{vŒrfˆwrrKNEPbeNL<Šˆ…kcZLX_UQDo{}Q^ZMPJIPHOTOJMLUfidw‡hx…l{…hszU`^`mwp€i~ˆ^hiTZRRbZYhe\jelrp†Š‰’njevpjb_SPUHi{‚]b\U_UWc[ae]]`V_\QZPETLCdih|{wvh`yoh~zw’ŒŠƒ{xxkck^Uxme€yu€zuvqj\WMupnsg_l\S€si{mdj`Wujb‚{t\RDVMAqh]dYM`WOLC3yug—†jaZTD4hWGphod^ÉÆÁñïðîìììéçïìêïîìêé籬©€qj´© ÏÌÉ•…‚Švo‰yoka„j\ˆvn€h\€v“„~{aVqO;}_NcV€`J€eY€bRŽxm“zq‘}t€g\„m`Špaˆpdf[‚gVƒhY|_NwZHpQA~]K‡oe~dThX~fZx]N§‹s‹yu™ˆ…qh†qd°—‚‰vptXJˆqb•~mÖÁ¯Î¼y~†faX_\Tzk_@HJCPM@KI[[T^\T5BFHE=fgcOdg*FDjkZ]db–y¢’†|†’XP?[\[ŠviWX[3:5:?;LOGWcfdieW_a:JKTaaMVWRhbMRHcs~kmfJMJEI@V`eT`cfx‚gv}bsw_s|q‡Qb`gv|m}‰y‰“cooSb[VZT\ik[earle„„†„‹Œmli_XOVRJcge_fhUZMX]Saf[]`VVVLVL:WM@VQJfgezxt|phpd]tid•‹Šyrlhc`}um€unŠ…ph]i_VrhcwoflbY€vmpg_kb]†{wunbRJ9UN?TO@ZPC[QDf_OxkvkdrcaYJ=wbXydX‹{lãàÚîììÒÍÉáÝÖçãÞéåßÏÏÏ{h^…sm¨–‰ÜÙÔ|§˜‰ri„of‰qcŠuj©›–µ¬§’†ƒ‹xq‘‚y…mb‡pdeS„i^fW‡m_‘udŠuk„mc€gZ‚iX„mci\y]L„iWg[uVHyZG„j[‡og~fX~dT€bOx^Q¯’x…wv‹uh—†}±¢–~njy_PmK8z]KšyaâÑñª©ŽŒ‚€y\flOL=4CK'40]YU>ECEHCPZWQSGXfaNUP-1eV:QesDI?rfUz{3;:EB=HJEVVLEKH+5/BOH=ESF4SD3QE5PF1SI6k`Sng€n`€smƒqg{i]€nbzg`•ƒsÙÏÄØÓÍš‘|e\{cW¹¨™ÚÓÍ–‹†~g[|q§—Œ‰ys{dWxj}tŽ{t‘|rƒndyo¬’¤˜‘½´¬˜‰‚‘~tŽug”r”€y“zqxp‰rh”{o¸©žzjb|eWoTF…o_yn„qfƒnbŽyn~t˜Šˆztv^Su\O”yeÄ®œ×ʽ©£¤}lh}eX}f\†qc¾©’Ƚ”‹GTY8FCFGB?D?4<5DLJDRLdd]BICgZKri`XUO.?A(0'<>^P?sjxib€na€naƒm_}gX}i[q_R² ‘ÜÓÊßÙÒÏÊÇ“…€nd‘xhÖÍÃÌÈĉxr€h^y`Vj[…mc|bTš‡|Œxp|dZ}dUŠqc¯›ŠÅ½·Œxoˆtm†k`ƒi[€eYuh|t†qhƒj^¬”‚¹®¥”…‚ª”²¦ž»­¢ÍĻķ¯Â¸­ÓƹâØÌÝÔ˼²­›‰‰wp€kcŒue˜†|~khi^‚kbƒkaž‡vº« ž“ŒŸžIWYLXVKNGaa\jd_Œ|rAOS@B8(62WQ@XN>WJ<\LA|nc™ŽŠŽ}qˆulr`Uzi_w`SzbR€l_i\m[L¦•‡ØÉ¿ÛÊÁØËÀÛÑÇÛÕÏ«¢Ÿl`’{kæá×ÈÁ¼€me†qgdS—ˆ~ƒmb¡ƒ‘‚}µ©£ž‘‹šŽˆqe‘}tg]„iX—‚yxmŠpc„k_ka„j[“w…og¢Š{·±•{ÞмâÚÐâÙÑà×ÍÞÖË×Ê¿ÞÒÈÚÏÅÝÐÅßÔÊÞÑÄÝÐÅÍ¿¶µ¥š°œÃ³© ”ŽÎ¼­×ÍÅÍü‚‚HYZ¯™zÞË»ÌÀ·»«¢Â®Ÿ—šwqdQelNSB®ž‹á¿§ëÇ«àÁ¬®£œˆzw€dUˆm^ˆnaˆm[ˆpa‡na}k]™‹€¶¤—’‡‰‰‡‡XYT`aRUgs^kfKdr5FF6F?X`_…‡[ihbnlo{~‘˜˜¢ªž¤«ˆ‘™™ ¨|„„]d_T_V^jcXa\UbZR]SW_Yeqseywftw†Œ€}xgf`^^[v‰{’¤r‚‹`iceokXXM`i`\\Pi]Pvibzule]nd]wmehZS`WKe^Wf]Sf`Xxtr{xs‰‡‡Ž{usrqopnl`UMSMTN<]RD…xpsaY~ld’w}vŽynm`vcW€max_Qƒi[jZxdYq]Pï¢ßÌÂ×ǾØËÁÜÕËÝ×ÐÜ×ÒŒyr›ƒsäÝÔÙÔÏŸ“Ž…pe…pe‘{qž‡Ã¶®´ª§Ž}tŒxnŸ…Žxo–€w‡skuXJ‹pa‘}t‚i^z]NŒxp~h\„jZ•y¤‘‡­£šŒ{xxl»¨™¹ªÙÏÂÛÐÄÞÔÉÞÒÈÚÍÃÛÎÂÅ´©Ë¶¦ÓÀ³Â±¢ÛË»áÓÅàÓÄáÓÆßÓÉÞÑǽ²ªotuŠ…{Ï»¥ÝÍÀßÐÂßÐÂãͼ×Ç»LYeUPB»™wìæô¹÷¶…øµ„÷·‡Ý©Ä¦‰¸«¢‹yt…l_…jW‰qeˆobe`Xjii~q[˜•—\fnDUWOZL“““GTY:QY*:?086Xf]p{‚…‰‹ƒ‡ˆdnpŠ•Ÿœ­¸—Ÿ¤‡ŒŽ”›x}zVg[\f`inobhcXcY]jhfqqy„Š—›u€„š§­€|ab\dmp~’¡’ \]WYVLgmjYPD[TJTD3WG7gZPxkfmd[ngbƒzrrg]xobXTHf`X††‰‚€}yulfvmhb]XoljwtubWLSH6UI9VM=XK;p`Yoe‹zs…riŽ{qŠvizi^„sh~k`y`Ru[OzbU|i[yeW€l`·¢–ÚȾ×ȽÛÍÄÞØÑÜ×ÐàÙÒÄ»¸ÓƺÌÄ¿ÑÊᥠ‹yq„ndxm{r›Œ†–…{Šul‡sk”rypŽxl|t‚nf~g]Žzq„la‚j`…rj{f^~dUq`¸¥–›Œƒ‰xr~g_uZOŒvi’{kϽªÜÐÃ×ɼÕ١¥Ó½®ÜÌÀׯºàÒÆÝÐÅÞÏÆàÑÈÞÒÈÚÌÀ³§ Ä³¥‹†Î¸žàÑÄßοßË»äÆ°èÅ«ãŰvrmלk÷¾”ñ¸õ³‚÷³}ù´|ù¶„ÿ»†Ñ£„¨„dÙ° ˆy¯†g´•‚£ˆxupohfb'=@a_VNYZALE/INKNFff[IZf6IKKTOWiaiv{€|xusrruŒ’˜‘ «‰††ƒˆŽu|€db\X^Ysxvche[ZRahg€Œ•‰“–jss‚‡‰kpol{{\bZYWOdddŒ˜t}VWKYTJink[VNYN@XO@ZREpeZmcZl^Vpc\wkcme[wf\rhaqnh…‘‚~}‡‚zrlj^Wkeblb\na\od]\QD_TGeWMm_Yzmiˆxmƒob…qf†uk†ukpfƒrila€k]u]OnWHr]Nm[MzfY“{lÁ«ŸÊ¹°Ã´ªäߨÝÙÕÁ¹°ØÑȰ£›‡yt{p§š“¡“މwnŽyq‹vpŒzs—†“xyq“€w–uªœ“•„~}wˆxrŒwqŽzp‡sk‰tmˆpgƒj\“{kо¯È¼²Å¼µŸ‘Œ¬™‹Â²¤¾¬ÙƵØÉ¸ÛʼÞξßÑÅÜÏÃÐÁ·½­¤Î»¬ßÒÄßÓÇáÔÇÞÒÇÞÒÇâÓÆÒÆ¿Á­œÝ̺ãÕÉä×ÌãÓÄâ̸åǰßı¹¢’ð³…õ±|ô²}õ²~ø±|ü´|íªxñ«sç¨{mdW™lEКmç¥uÓœsë·‰­š•upe@D;˜}fa`].==1-.*CJB~…ƒbqkWjlSaVj~ˆ{shssqjff‡Œ‹“šz||nsw\fbX]Wlkh‹‹Ši`WW[O`db{ƒŠŠ‘•Š•——œžtwv„‡ˆebX[\Vpkdb^]tvvYYM\YQprq`[TbYR`YMaXMnaUbRHcYOf\QeXLf\Sm[Lh\Tf`Wnid{ng†‚bYL`TLj]VhXPYF9eTHm^Utki}so~rous{ld~laƒti†wmŒ|s…tl€mc†re”„z“ƒ{}k`rbUjWI†ocŠpb¥’…ˆqgŸŒ~ãÜÔåáÝž¸²¥žˆ‚kaj\ŽymŽyp{s‹zuŠunˆxs’v•ƒy”~s“}{rzp}bTŽxiª›‘{y…m_ƒl`zp‰rkveʸ¨ÞÕÊÝÕÊãØÎÝÓÊçÛÎàÒÄÜÍÂ×Å·ÙɾÚ̿Ź­¾¯¤¼¯¦¾¬›¼«ÏÀ¯ÎÀ´ÕƹØÊ¼ÖȾÞÏÀ¾¯©œƒw¾¡ˆãÖÉåÜÔâØÐáÑÂà˹á˸ÞÇ·éêﲈö°zö¯zú³~ù³{ÜœnÁ†W¹‰d‘iMŽqZWRBt]B™i@±„e–lIª~`¥†l294€dK@FF%560/.71CF>ftv`ddCNTUaYWij}‚szx]]Xv~‚Ž“ooiYdbilef]Sjea’‘`RC\caakhclkpvzŠ”•–†‰†\VL`ZQe^Q_]Rsts€€tsozwryvta^Vjc]d[PZMB]NCgZQukc€yr|smi]T^RDdUKc]P[VF[SG\QI\K@_MEiXPaPEtja•‰‚woixljtpŠyvibveZ{lap_T{la„pf‡reƒsi‡oa„qeœƒÀ³©’‡t^M‘xi·¤•ÙÎÅÒŽÜÒÇäÜÕà×ÎÛÒÈœŠŒxj„l_ˆpd†n_‹rewl‡sj‡sjƒpf†m_”€vxn‘|u’}u‹xp~f\dXœ‹ƒˆtnvk Šz© œ‰paÔIJá×ÍÞÔËàÕÊàÕËÛÑÇı¤àÏÀáÒÅàÒÅßÑÅÛÎÃ×É¿Öʼ×ʾÒǼ­œ”œ‹š€oª”„ˆ|¾¡‹¶ª¡tk¡eÝɲäÚÑæÝÔãÚÑàÎÀ㿣侟绚뵌ó®yö®wø±xÔ“fð§oµ‚]«wKЛr‚m[*;7qiUmrsq||^giSVRP[OUg`ZkijwtV[QPYTp{}[g^hljvk`_OEfcdƒ€VM=kryeurm~x€kno„†„rlc^WKvldl^RaZPqnlxvt|uq‹‹Š{phe`Xl_Wg]S\N@]MCl^UrgcxpjvnheVL_WIYOBreZbYPTG:UD6aOGdSLvf]zha†{x‘ˆ~qkfSFfWHo`Qi\Mxf[ƒsj{jb|j_Šrg~j[†wlj]‚maxcX¢’Š„~i\¶¡‘éßÕåÝÒäÚÒäÛÒæÝÓæÜÔåÚЧš“ƒiY†pc…k`…l\‰o`xlŽvlzp‡qgbRŠqeŒsk’|qˆrhypÇ·ªÝÐÅÐÌÉ¢‚¼¯¢àÖÉŸ“‹ÓñǺ±Ó÷àÕÊÜÐÇÁ±¦ÕÁ°ÒÀµ¸¥šº¦–ɶ§ÔĵØÉ½ÜÎÂÜÐÅ×ÍÆ˜ˆ‡Šqc‰n\’vh—€pŒn_n[p]–s_ȧ‰æÚÍãÙÏåÜÓáØÍà;跕î°ð¯}ò®yô®wö¯wô±zhUEgLqY@“fC½Šf’oQrWDG@FMDLD3270qP6HDnP9Ü¢p¯…gi^QOG1bR=BE97/*83.=6*@;!972CAh^SogYZQE]TLyrij\M\TFXK;VD5bRIaO@_NB…y}yÇÃÀzxƒysƒyszrq}mdzpxlˆwnˆzpƒun‚pevcYqd\rkpg~l`qhž’ŒËÀ¹~pfm_U†wm{i`vcW…tm‰ul}tˆsgzs|`Ršv—€u¿¨–äÒ¼äκãË´â˶à̺áμáË·âÆ®å¿žæÃ¤áÌ·âκç˳徠¸™…vjwj”|pyo•sugŒo_ˆoc•~r†nc„jZŠpa϶ ßΨ—’Žyr“‚~ŽxlŒo^É­”ÓÁ´¡Œ€´¡•vf‰peµ˜€³¢—ʵ£¾´²‘m[¶”x˰™Ë´£»¨™Á¬œà×Íȹ°áÔÆâØÏãÚÐãÛÑáØÏàÖÍáÕÌàÖÍàÖÌâÕÍàÕÍâÖËåØÌ½··PTS«’wƒƒ‰zskLNLi[Jºª’Ù½¦áÈ·Œ„€wcOsbRKF?=5+`P9Õ§|Ó°––x_g`U0;2?C84<22LG9LKXUCbeYRODLSJg]MÆÂ¿œ”ŠzrÁÄË·¯«ÔȾ¦žŸµ¸¾¤žœ¤¡¢ž‰–†€Ÿ”‘Ÿ˜–«ª­›’Œ•†€¡‹ƒ{k`_WIƒ€ª¡Ÿ¢’™Œ•…|‹zuŠ{wslbVKaREaTLkb\wmj‹ƒ‚zw€xu‹~tm}v‹yk}qŠvkŽ{n‹{p…xp†vmnYM‚uqzi_rgƒpd‡xqƒsk¸¯§˜Œ„m_Rwe[yh]ƒtl‡unŠwlŠ{sŒ{s’{r‘|nž‡|Žtfȱœâμã̺äË´â˳àʶâī弚彘绔濜æÂ¤æÀ£êÀŸí¾˜í¸¥ƒn•~r’{l“~n‘|qŒyo‘zj‡z”~s«–†µ¨ž¹¡’ʸ¯|q–†„sg“€zŒui¦…m¢ˆ¡ˆy­’¶ ‘»­£Æ®–ÜÎÀ¬›‘ÒÀ¯¦–Ö¶šçɱäÏ·äÕÅæÝÒçß×çߨçߨåÞ×åÝ×åÛÕäÛÒâÙÐáØÏâÙÐâÙÐáÙÐãÙÏáØÏãÙÎËÈÆ‡„„2@F“€gª¥ Y\]¿­˜åØÊæÚÌæ×ËèØÊ¥™k_W474]K3Ü·–ؼ òվ̻³?MP.;/wgGž{Ö®ˆ‡ƒwhR~qbˆwSROGOI)-ñññööõ¶ª—Œˆ²ª§½«Ÿœ–˜Ÿ†‰‹œ—™ž‘Œ•‡‚ž•“¥£¥ª§¦©¦§Ÿ“›‡z†gT†sf–‹‡£–‘˜†½±ª¡Ž{q‰yqzpk¶µ±½·¯¿»µ˜“³¯­¦Ÿš™’Š}sŠ‚€…xqqg‰ym‚ulpd‚th‚tk’ˆ³¥Ÿo^QtcXƒnf‹|uŠzs‡|w„ul¢•Œ²¦ž‡wml\TcUIŠzq„pe‹uh|r…sl‘xhˆ|„gXŽr`ɱ›ãιã˵âɱâɲãÁ¦ë²„í°|纑漚躕麒麒뻓캓ñºë¸’±—†”|qŽwkykŽxj”|q¢‹|š†|ʼ°¡Šui‰m`•~r–‰ˆwj“‚|vkδ›À¶²Žn]Ç«•¹§›Í¾±Ûʼʿ·º¨š¦“ˆÐ¾¬èà׿ÜÓèß×èàÙçáÜçáÝæàÜæáÜçàÜçÞÚæÞÚäÜÖãÜÔäÛÒäÛÒäÛÒäÛÒäÜÓãÙÓæÜÔ²³µRY_bggvdQ¸­¡ãÖÆëâÛåß×¾ºœ™œÈ¸¨huƒ?@=‘hCó¹‡óȦðÏ´ÓÁ¶…wrg‰fIÿÔ£øÎ¯ýÖ·¥šš3DOVQAŒ&8=&2-eW?ÏÉŧ›”­šŒ“x¦”Žvj•ŽŽ”‚v‰yr¡ž¢œœš““‘І„±°±¦žž›‹Ÿ…Œsj—ƒy”x¨˜”vÕÊÄÈ´Ÿ‰shpi{keÈÃÀòîéòîéôðëîêåðíæåáÜÔÍÇ –‚ulraWxjaulnboewh_¦š–­¢œpgzg]†rf~xŠzt…vpj^¢”б¤œph}nfgYMr`Rƒqhnb|i]Šsjvg‹n]‡iXš}m×ïâÑ¿âλâÊ´ã§赌í¯|ì²è¼•躔쳃굊ë¸ë¸Žë¹‘︌òºŽñ ®”…zmxm–~r—v“{k’{p…nbyk‰m_Žqa”~r›ŽŽ’wj‘zqœj½¤•µ¬Žo^¿£Ò꣉œƒw¤‘„²œŒßÏÀîèæêæãëæäëæäëæäëæäêæãéãâçâàæàÝåßÛåßÛæßÛæÞÛåÞØåÝØåÜÖåÝÖåÜØåÜØÛÓÌ—˜wtq~wfÚ˶ìäÝéáÜèßÚìâÛ¨´Å\c`]`_KPNun^Ñ©ˆÎ®—ç¤éϻƲ§xy{|hOÀ¥’볈嵔èæ_q‚ZN8xwwqnk0;<:H@MPC—‰ƒ•І¤‰vŒxq‰sl‡qgœššŒ‚‹wo ”‰‡™”•¢˜’‘‡…œ””—Š„“€y’{l‘{q”|q—ƒ{ŸŽƒ¥•ŒàÒÉ·›†‹th‹xn®¥¡æãßðîéìèãëæàéäßêæàíèãïëæ½²«€rj}mbrh{nfkZKrbX{lcy‰{s‰|s‡uj‚oc‰yp‡tkˆwnycT­¢™Ðļ‘yzi`tcYiZM‚pfxeZs`S‘zo‘xisb“t`Ê´ äÕÄâÓÂàÍ»ã¤踑별î­yñ«vè»•ç½™ë³‡ë´ˆê¶Žìµ‰í¶Ší¹í»“ò»Ù¨ƒŽvkxlwl”|qxn”}qznŒp`‹o`‘td–s–ˆ‰•zk‘vhr_±”}ÑĹŒqd©Žy°ž•¥”ŠeX¨ŒváÕÈïêèìèèîèéîêëïììîëìîëëíééìæèêåäèãàçáÞçâßæáÞäßÜæÞÛæßÛæÝÙæÞÛåÞÚåÜØ»¸ºTZ_’fçÚËçßÖåÝ×èßÚéàÜéàÜåâáZhvV[^€s\ßͼçÚѱ±¹’…yÆ®œáë·±·’{f›Ÿ…r¤^¦…qM[[<9,urm(/0@B6]f_[[Qzq˜Œ‰Ä±¢‰smh^…uo—•˜Ÿ›–‘€{¨§©–Œ˜”“ž‘††wt¨ ›•ƒwxlŠo`wh‘xm•q˜„z¿±¨½¯§»¤”‹seŽue—„y ‘б¥ ÞÛ×òìåìèâìçáêæàéåཱ¥pbZ€pfzk^teZiZMo]Ryg[„qg…ul†vkˆwn€j`ˆvpŒwlŠvm}fX˜ˆÚÏÈ´§Ÿn]Szh^zk_cSHbRDu‘yl’vh‘wh¶ŸŒåѽåȳåè漗권î°î¯|ï®zî­zí±€è·ì²‚í°€êµ‡ì²ƒí±íµ‰ïµˆõ°yõ±|Ò¢“yjwj‹rfŠvkˆpg‰n`sepa“wh•}p‘{w•zkŽqc¨‰u묩—Œ‘xlŸ{c•vg‰hW¶ŽmåÛÍéäáèâàéäâëæäîììïîîðîîïííîììíèèìæçêääéããèãàçâßçâßçâàçâßçàÝçáÝåÞÛÛÕÓ³°®Š€uл£âØÏåÜÓåÜ×åÝ×çÞÚéàÜÒÏÏSn„USDº¬™äØÊ×ÑÑ ¦°¡—Ž‚y‘s‹Œzgdgiui]UWNHWN9MN!/+1400<6DJBRZ]f\R€y„„žŠz}ga‘…ƒ´±°™œ˜—•ˆ…‘„‚¢ £¤¡¢“‰ˆ˜Œ‡›Œ›Ž†“x‰m\‰oaŽxj—x°¡™ ‹~Žp_Špc‘wivfucˆl]†gRˆoaž’ŒÁ·³àÖÍæäâøøöàÚÒ}kbogŒ‚{xj_dXGwgZˆul„mb‚pe‡th{sxbR†ti’}q‹uj~g\‚qh…ytƒ~œˆ{j`tcYeTEbPA‰xo’xf’ym«ä͹äÏºæÆ©è½˜ç¼™é·ï­ví±í³ƒì²„ï®}ï¬zñ«sð«qì³…ê¸í²‚í±‚ñ°~ó®yø°uñ·ŠÉ „xkŠqd†ofzp‹kY’vgŽqbym‘yjšp•ykn\¯y»°ª¹™€Áœ…Þ—bÜ›lâ£sì´‡åÓÀæßÚæßÚæßÚæáÝèäáìèçîììîììíììïêëíëëíæçêäåéäãéäãêåäëåäêäåêåãéåâèãáâÛØ½·µÌ¹§âÒÃáØÐåÜÔãÚ×äÛ׿ÝÙçÝÙèáÝ• ÑÆ·›œ¤–„ÛÚ×mw€FSW5FIAFVY1LT0JK)430A;6E@GQT“uV…pe”Š‹¨œŒtf¢¢åçê«£Ÿœ££ Ÿ•†¦§®´²²‘|s”ˆ‚‘€w’–„{’{m“~s“{o’|sŽvi„hYseƒgX—„{”}q‘wg‡k^‰mY‡kY‹thµ§ ÛÎÄÔÊÁÚÛÝ©¦§¢™”~mcwiaqcYsdU‹{q†ultbUsbU„pg†ulxbR†rh}p†qe~ia}i^ve]ul„uj}fXr`QkYM|i_|r›m®Œu켕쿜ç£åÃ¥æÂ¢æ¿Ÿç¹’鸌编羜織鶎ð«sò¨kñ«p쳄纙鸒쳇ñ¯{ô­võ°{õ´„Ϧˆ“zkž†z‘zpˆgP‘tb‘ueŽuh›}jšt•uc“xh®‚eËŸƒô²ü¬oú«oøªnô¬tñ®|쵊âμàÓÈßÏÅáÓÇåÜÕèãÞèäáêääíééîêëíëëîéêíêëíèéíçèíçèìèéíçèìçèëççéäãæàßåÛÕàÓÇáÖÊâÙÐäÛÓäÜ×äÛÕæÝÙèÞÚØÕÖáÕÊÏÌ᫦ËĺËÄÀ‹•vxs0O\/B=5FL*BD'?;1@8HSP%8;7>%<0=MH5EHGMCWXRqcPž‘Žª¦¦éèçôðíÙÖÕÂÃÆ«­¯ ¢¦¨ª®£Ÿ ­±·ž—•Žym“ƒ}œ—–˜Œ†•€vˆo`wjŽvhš…|˜~kŠtm“|p~[IŽ{s—wŽrc„gW‹obˆk]’{oÀ²¬ÝÍħ’† ¤ž›¾¹·}mfqi~pf…tn‰wq†tkxcUtaUwd]†uk~lcne€nd~j^{e[vaX¥’†®˜‰¿”r寃Ϣ–va¶™…£†uê¸÷ºŠï¸Šî¶ˆêº‘ç¾›ãÃ§äÆ®äÄ«äèäÂ¦äÆ¬äũ縔ð«ró©kó©jñ«pê¸æ¼éµî°ð®|ó­x÷­qö®sû·Ú´—œƒsŒo]ˆeQ’sa•vd•vd“ve’o\¬‚h­‚féŸjý«nú©l÷©l÷¨k÷§kö§iö¦jó¦lî«x仚㼠㺜âǯèâÛéäáçâÞêäâêäåêååíçèìééíééëèèìæçìèèíêêîêëìèéêäåçáàäÜ×âØÏãÙÎãÚÒãÚÑäÚÓäÛÔæÞØçÞÚæÝÙÜØÕ}†•unaûªÆÂÄ\v4>9N[YEWUJ^^(?<6EDNL$7@,<;.HF>OLflcKVV4@?*33jWA~zxñíëôïìòíêôïìóîìõñïñêæœš—‘‘—–™›’‹‹‘ˆ‡ri™’‘v‘{q•€sŠn^’~u¦œ˜¬¦¦¡š‘xkwlzs¶®«àÛÓÔÊ¿’}p‹m^šˆ~ÔÄ»ÞÌÁÜÌÂáØÓߨÎȼ±|lahZP€tl}jb„ri…tg‰xp|s~j_‡vl|laqaVƒqjvaXxbVåйðÇ¡õ¹‡õµð·†êáç˯êâð¹‹ñ²츌çÀžåãåÀžæ¿ääâʳàË·àǰáȰâì湖ò§lô§iô§iö¦iö¦hó¨mï­yï¬zñªuô§mõ§lö¨lö¨m÷ªoðµ‹ó·Œè¥r¸‰l‘ueŠo_šrXåžjò¦oü«où©lø¨lö¦j÷¥gö¥f÷¥gõ¤gö¤gö¥hõ£fõ¤hô£fô¢dô¡dó£iì°ä¦á˹áÒÇàÇ¹âÆ±àÎÁàÔÊáØÑáÙÑãÚÕåÜÙæàÝêäâëååêäæéãåèãáèãáçâßåßÜâØÔâÖÍäÚÑåÛÕâØÓâÖÎÛËÕ”šQ^b0/ 1+9E@1<6CUSDVX,@J"31NVO:OW.BC6RUO^`Y`_,?H>@7-;@KF4}kñëèóîêóííõïîóîîôïîøõòªž”‡{}–¡žŠ‹¢”‹†pk›“’wkŽwg†j[Špc¢£±°¯Ÿœž©¨©¦—}u”‰ˆ—ŠˆßßãþþüƼ´l]¢‡áÑÈÞÍÂÝÊÁÜÍÄÝÎÅÞÓȧ–Œ¥žœíìꘌ„|kd…rh„tmŽ~x†qj„qh€m`zi^|jcp\MÙÊ»éÝÍé̱ïºð´ƒí¸‹èáãϺå͵èÀœì¶ˆç¾™äÇ«ãθäθäѼäÓÃâÓÁáнâÅ­ãÁ§æº›ì¯ð©uó¦jõ§iö¦kö§hõ¥hõ¦iõ¦hõ¥gö¥hö¦hö§jö§k÷¦mõ«tõ®zø«rô©o×v©„oØ”dú«mùªmù¨kø¦i÷¦i÷¥h÷¥gö¤g÷¤fö¤eö£eö£eô£fõ£fõ¢eõ¢eô¢dô¡dó cñ¤kì©wë©zí§uì¨w嵑⽡ßŲÞÍ¿âÕÎåÛÔäÜØåàÛæáßèãàèãàèãßèãáæàÞçÞÛáÙÒâÕÍäØÐäÙÐáÎÇàÊ¿–ttwPTN!55"52+82?UR9UTL`f6Lf$.+:2=RR)C@CRH]r|Sbc.<<"-+$10j[@íèåñìëôïíóïîóïîôïîóððõòí²§žÄÆÉ³µº”…}€zŸ”¸­¥œŽ…–‚vŒpa‡og›“—ÊÎÔ¼»ºÊÌÐ÷öößÞÜÏÊÆ´­§æèéÝÞà›‘tgÐÀ¹àÍÃÞÌÀÝÉÁ² —ÔÈÁéæãüüüþþþøøøéèãto|k_~j`„qi‚l`~i_l`k^p[N×ÌÁêá׿ÛÌç̱èÀšë¸ë·ŠäÆ«áλáÌ·ã̵ãηãÏ»äÕÄåØÌæÙÍåÛÐçÛÑäØÎâÓÂáɲã§彞찂î­|ð©sô¦jö¦iõ¦hö¦kõ¥iõ¤eõ¤eô¤fö¥gõ¦iö¥hõ¦kõ¦j÷¦i÷¨jø¨kø¨lø¨mø¨kú§jú§i÷¥hø¥h÷¤f÷£iö£eõ£cö¤dö£cö£dõ¢dõ£fõ£eõ¢dô¡cö¢cö¢dõ¢dö¡cö cô dò¡dô cñ¢kî¥p鮃ãŪáÖÌãÚÑãÛÔæÝØåÞØåÞÛåßÛåÞÛäßÚæÞÙäÛÕâØÑáÒÌÙËÅÕÆºäȺݾ«LVi[cd2A@#928D95@=4NN3PR7][Mqvkˆqòïîóñðóïíóïìòíëóîìóïîôòò÷õõ÷ööùúû÷óé“|n©›“¡‘ˆ±¥œ¢‹}¢™–±µ½­ª­­²¸§¦¨‘}v€‡•‰ˆ›‹ƒ‘z¡ˆ Œ‚›€o™{iœƒv®™’tb”xiž‹„¦Ÿ›Ÿ‡¡’Ž£•”Љ§¤¤ž“}kdue]saWzg]‹zqɽ´îæÝçÞÔçÜÑãÏ»ã£äÁ¡äÁ£âƬâÓÁå×ÉåÚÏæÛÒæÜÓåÛÒæÝÔçß×çàØæßØæÜ׿ÝÔäØÍáÒÂàÊµâÆ±áŭ廜鴌ð¬yõ¥jõ¤gõ¤gö£eö¤eö£eõ¤gõ¤hô¤hõ¤gõ¤fö£eö£eô¤gö¤fö£eø¤fù£fø¢e÷£fø¢e÷¢d÷¢d÷¢c÷¢dø¢d÷¢b÷¢b÷¡cö¡c÷¡b÷¡e÷¡c÷¡bø¡dø¡c÷ böŸaö `öžaöž`öž^õ^ö^ôŸ`ñ¡kë­‚ç´ç±Œì§xí¦r쬀鬆î¨x쯆鷕궕ð°ˆpbNE6’rXGMU4@:VVL_RC_ebT^Z4QX$>;-EA/CCBPUEQU.CH9EDKUOU]]KVPFYX?L;}l©ÏÁ­³´µ‘„{ôòóôñðòîëóîëòíêòîêóîëóïîõóóöõõ÷÷÷ùùøÈ¹«’we†l`Šqf‰od®¦£‡†••›¦¥ª ›ž˜‰‚“‘wl”‰Š¨›–—…•{n•wfš~l™zh•yk•zio[—|kŒ„²±³®¦¢›ˆ€®ª¨’… œ›‘ŽphqaWo^St`X‘…ÕÍÅêâØçÜÒåÙÌãϹ忚溒äÀŸáÅ«ãÔÃæÛÒèÞÕçßÖæÝÔçÞÔåÝÖæÞÖçß׿ÞÕæÝÓåÚÒâÖÊàÑ¿ßʶâÈ²âÆ®é¶‘î«xî®{ò¨oô¥iõ¤gõ£fö¢eö£eõ¤eõ¥hõ¥hõ¥iõ¤iö£gö¢dõ£eõ£e÷£fø£eø£e÷¢f÷¢e÷¢cö¢b÷¢b÷£d÷¢a÷¢b÷¡b÷¢b÷¡b÷¡bö¡`÷ b÷¡a÷¡`ø¡bø¡cöŸ`÷Ÿ`öŸ`öŸ_ö`ö_õ_õ]õœ]õœ]ô^ñ eð¢jóžaõ\ó¡hò¢kô¢jõ¤kô¤m÷§oâ•dªˆmIPJYQD7EN@G?bWIQSGjjeMVT7QQ)IC&?;IZUY\]ERZSZVR\W„s±§ž”‹ˆ¥§¨j_Iˆ”ê×ÌÂ×ÑÏY^rôòòôòòóîíòíêñìéñìéñìéóîëòïðõôôöõõ÷÷÷÷ööòðí¹¦–›‡{º±©¹»¾œ–•§£¥£ ¢¦ ¡«§¦ª¨©wk”†„œ””•„˜€s—{lš~i—|j¥„ ‰z´­«£’ˆœ†z›Šªž›¡‚ –“”„z¡Ÿ¡‹Ÿ™•‚wp}k_yfZ‘„|àØÏéà׿ÜÒã×ÍâÓÁãÆªå¼–ã¾œáÈ®ã×ÈçÞÕèßÚéàÚéàÙçߨçß×çßÙæß׿ÞÕæÛÓã×ÍàÔÉßϾáȱáȳ⿤趑ï«tî¬xî°€ñ©rô¥jö¤gö£eö¢eõ¢eö¤gõ¤gô¦jô§lõ¥hõ£fö¥gõ¤gö¢dø¢eø¢eø£e÷¢d÷¢c÷¢dö¢aö¡bø c÷¡aö `ö¡bö bø `ö a÷ aöŸ_öŸ^öŸ`÷žaõ_öœ`öž_ö_õ`õœ]õœ^õ\õœ^ôœ\ô›]ó›]óœ\óœ\ô›[ô^ô bô£lõ£kü¥hË‘h}R9œrR†nWOQKEH=?@7§vPEPXJVN:OS.@?;IApdN¡€c_clmbƒn]j}„trl¦œ”ƒŒ˜‹‚\[X·©¡ƒxn‘‰‚ž‘‚¢›•õóóöôôôðíòîéïêçîèåîêçðëèñëëòîîõóó÷õõöööùùùüüüùúøÐÐг´·˜‰€¦¤¤¶º¿¨«³”›””†wq‘{˜ˆ†™‰†œƒw›}j›pš‚s±£‡z««±°¬©Žƒ“}q«£ž¦˜˜ƒx–Œ‹ž•“œ’‘Ÿ¡£— ªŽƒ‚κÛÑÇíçßèáØæÝÔäØÌáÓÁáɱäæãŨãѾçÝÒèáÙéâÝçâÝåâÛçâÝçàÝèàÚæà׿ÝÕæÜÒã×ÍãÖÊáÑÀá̶⾢걄볇봉î­{ì°‚ï«xó§pô¤hõ£fõ¤iö£fô¢eö£eö¤fõ¤ió§nõ¥kõ¤kô¤i÷¢d÷£c÷¡d÷¢c÷¢d÷¡cø `ø bö¡a÷ aøŸ_øŸ`÷ž_öž_õ]õ^õž]õ_ö^öž^õ^öž]õ^ö_õ]ôœ\õ]õ\ôœ\õ^ôœ\ô›\õ›\ô›^ôš]ó›]óœ]÷¡cö¡gü¤e¸}^ȇXoV@QF7‚dJZOGROFƒnVaRB~dkg]AVd3FKcFÒ¡|eYKcd`QYVEII@KLMTSFE@€€FGC3>LWQF—‹~ºª•Ϻ¬µµ·öôôõóóôïíòîêðëèîèåîçäíåâíèåðëèóïîôññöóó÷÷÷ø÷÷ûùúÝÜÛ½ÀŶ²Ž{q¡Ÿ¥®²¸”‘—ŽŽ‹shxo™ˆšŠƒ˜|n›€pœn•sž»´¥œ£žŸº¹¸§›“œˆ|©£¡©›“™„z˜…~Ž}w…ro”œ—ž‹‚æâßðëèéæáêãÞéàØåÛÐâÒÀá˵áκâÓÂæÜÒçáÙæâÜçãÞèäßçãÞèâÝèâÝêáÜèàØçßÖæÝÔåÚÏãÖËâÔÄà˸廚鷎赋赊뱂찂í¯~ñªtó¤jõ£g÷¤fõ£fö¢eõ£eö£fõ¢eõ£fõ£hö£f÷¡cù¢b÷¡dø¢dø¡c÷ b÷ŸaöŸ_÷Ÿ`õ aöž^öž^öž^öž]õ]ö]öž^õž\õ^ö`ö^õž]õž]õ^õœ_õœ[ó›[õ›]õ›[õ›[öœ\ôšZó›Zô›Zô›Zõ›Zõ›[õœ]ôŸcöŸaú£cª|_OK>UG5à”]˜xb[VQmYFv\†raa[L:EB6MWHSWeL–r^hWFz_FIZW@INDJF8DH.@>@9}r`~¹ ‹uvxqjewxvõóóôòòôïîóîíòíêîêåìæßêãÝëäßíçãïéèñìëôïïõòòõóóöóóåãáÅÊϽ¾À£•‹”ˆ†¨§«Ÿ—“–ŒyntfšŒˆš‰”xe›€pšt•xÕÒÓÕÎÉÊÆÅ±°°¨œ——„{¢›™§™’•‚zš‰…Š}|jf—š  ¦¬‡}zíéçðìèíéäìåáéãÜçà×åÛÎäÖÈäÙÍçÜÓçàØèâÜèãßéäàêãàêäàèãßèãÞèãÝéáÚçà×çÞÕåÛÑä×ÍâÔÇá̸ãÁ¦åÀ¡æ½›é´‹ë±„í­}ï«yï¬xô¥jõ¥hö¥fõ¤fõ£dö¢d÷¡d÷¢eø¢e÷¡bø¡b÷¡`ø¡aø¡cø¡c÷ böŸ`÷ž_÷Ÿ_öž]öž^õ]ö]ö]ö^õœ]õž^öž^öž^õž]õ_õ]õ_õž]õ^õœ\õœ\ôœ\õ›Zõ›Zõ›Yõ›\õ›Zö›Zô›ZõšYöšZö›\öœ]õ^õž`Å…XtW?§rJuaN™rP‹jL©yQÉŒcÁ‰f‰wl3DC:E<5A?6AAJ=1naTfUGweT9PM2ELDB@>JK?HA]dcRYRFNJqmeuke@HMbYIwncóññóññóðñóððôðððìçêãÚéà×èà×éâÛëäßìæâïêçòîìóïíòíêðêåÊÐÕÃÄÇ´±¯£™¡˜—©¤¢—Œ‹pd™…|š“•—†“vh‚u•|r›ÞÞßùùøôóñ¯¬­¥˜“‘ykœŒ¬¢•s›“›–—{om”˜ž˜š¥›—÷óòòîëñìêîèæëäàéãÝæÝÔä×ÍåÜÒçáÚéãÞéäàêåâëåâëäáëäáëäáéäßèâÞçáÜèáÚæÞÖæÜÓåÙÏâÖÈáθâÇ­âÅ«ã§賋ïªwð©sò§nò§oò¦lõ¦iõ¥hõ£eô¢d÷¢c÷¢d÷¡dù¡d÷¡c÷ a÷ _÷ `÷Ÿ`÷Ÿa÷Ÿ_÷ž`öž_öž^öž^õ]ö^õ]öž]öž]ö]öž\ô\ö^ö]ö]ôœ[öœ]ôœ\õœ\ö›[õ›[õ›[ô›Zó›YõšZôš[ôšZ÷šZõšZöšZõš[õš[öœ\õœ^öŸ`·}T lE»€Uf^R˜f=à˜fÔ—lµ€^ofWphW1C@=C9GF?8?=9?A:92AA8]TP@SQ!:=AD2JXc@GDOVSR\TFQOCMO=DE-8;>B;29AòððòððóîìòíîóîîðéæíåßéáÖçÛÑéÞÕéáÙëãÜíæãðéæîçäïéåñêäÖÕÓ¾Ãɾ»ººº¼«¢Ÿ²®­ª£¡”„~¤¡¡˜‘‘“}t—{o›ƒrugŸ“éëìúúúýýü¹·¶£š—”€u –“¥¡ —ƒ{–ŠŠ®±µ€tr“œ˜—˜äáÞõóóóððòïíñîêíèåêåáèâÚèÞÓèàÙêãßëæãíèåîéæíéåíèåìçãêåâëåáéåàéäßêáÝçàØçÞÕæÛÒãÕÇáιáÊ´áÆ®å¼Ÿì«zí­}î®~ò§nò¦ló¥lõ¥jõ¥hõ£fö¡d÷£b÷¢c÷ bø c÷ b÷ aöŸ`öž_öž^öž_öŸ_ö^ö^õ^öž^õž^õž\öž^õ]öž]õ]ôœ[ôœ\öœ\ö\ô[ôœ[ô›[ô›[ö›Zö›[õœZõš[ôš[óš\õ›Zôš[ö›Yô™[õ™ZõšZôšZõ›[õœZö]÷Ÿaò`íœckQœiAê™\¶€]¯c®yRF]]DOA[YQ9AA5:81964BOHI?`\LSTQLQZ-@D^^RLZTO_bEJO=FC",.2~pfòíïóïëðìéñëìðëéîèäîèãìäÛæÚÌèÝÔêáØêáÜìåâðéåîçàîåáðèååßÙ±´º´³²«§©©¡©££¾¿¿³±°–”¢š˜™ƒz™€p“xhŽvi¨™÷øùúúúûûûÛÚÙ —•Žxnš‹›”’Œvm†rl  …ws‚}ËÊÉöõõ÷ôôöôôõóóóððñììðëèìçãêåàêåâìçäîéæðìèðëéïêçîêçïêæíèåëæãëäáêãßéãßëâÜçà׿ÜÓäÖÉáνàÍ·ãĬ湕ì¯ì­ñ§qò¨rí®}ï­|ò§oô¤gõ£e÷ d÷¡c÷¡cø¡bø¡bö `÷ž_öžaõž_ö]öž_õž]õ]õ]öž^öž^ö]ö\ö]õœ]õœ]ô]ô\õœ\öœ[ô›\ôœ[ôœ\õœYõœZô›[ôš[õš[ôœ\óšZõ›[ôš\õ™ZöšXó™ZóšZôšYô™YóšZõ›\õœ_öž_ø¡cðœ`ø¢gò hÓ–idZPmR=uZC1HG@8AGSMEjcQ‹†|d[NVgnlf\zjQNBðêçîéåìçäîéèïëèïêçíæäëãÚèÞÕêáØëãÛëåàîèåðéåìèãíçâîèäóíéÓÌȳ«¥›‘Š •…sk¯±µ´µµ¨¤¢—‹‡’|o¦‘ƒ–vÄ»·×ÒÎüüüùùùúúúððð¡›™”‚w –¨ž™¢’‰‡pe‘›‘Êÿõõõøøø÷÷÷÷öö÷õõõóóòððñìëðëêðëèðìéðíêðîìñíìñíëñìêðëèðëéïëéîéæìæãìåâéåàèäßéâÛçÞÕåØÍãÔÄáÑ¿âĩ漜é¶í¬}ò¤jò¦nñ¨qð©uñ©só¥kô¢dø¢cø c÷ b÷¢cö b÷ž_õž]öž_ö_õž^öž^öž]õž^õž^õ]õ]ôœ[õœ[õœ\öœ[öœZöœ\õ›\ô›ZôœZó›Zõ›ZöšYõš[ôš[ôšZõšZóšYô™ZôšZõ™Zöš[õ›[ò™YõšZõšZóšZóšYõš[ö›[öœ_ö]÷žaø¢f÷£fÑ—naYLUUN{dTF=6QH<…_FoaY›jNìŸlÍ•mk_YiYFiZP;>@;4,fS;¯{Uö®’|jOXPFUS`YElqkSgr>LSPNFqdXìäáéâÚêäßìåâîéæñìéïéåìåÜëäÝîåàíåáìçâîêæñêçðêæïéåïêæîéæôîìíæÝù°°§ ˜ˆ}ÅÁ¿¶¶¸·µ´Ÿ„œ…zû·ÚÓÐûüýûûû÷÷÷÷÷÷ùùùûûû¶±­›Ž šš¥ž›—Š…}mlŒÎËÉüüýùùù÷÷÷øøøøøø÷øøöõõôòòòîîñìíñïíòïïóïðñïïñïïñîîðîíðíìñíëñìêðìèîêçíçäìåâéåàêäßéàÚåÛÓå×ËäÕÅãɲ徟滖ïªvò¥lñ§pò§pò¦oô¥kô¤kõ¤g÷¡cö bö aöŸa÷ŸaöŸ^öž^õ^õ^öœ_õ^ö[õ^õœ^õœ]õœ\öœ\ô›\õœ\õ›[ô›Zõœ[ô›\óš[õ›[õ›Zö›Zô›Yöš[ôšZóšYôšYôš[ô›[ô›[ö›Yôš[ôš[ôšZóšYôšZôšZôšZô›[ôšZñ™\ðš[òš\ê›eÙŒ[“t`bVKbN8ˆcGtUGÂ~O˜q^á”c½\¹zU˜sZZSKC?3`G:¨mEÙ”d£}a¢kCÕ˜p`]Y>MLWQAHF6gtuHRQ7LV,94PE7æÝÖéáØëäßìæâïêèóíìòíêïéæîæâîåáîåàíåâðëéóîíóïìñìéïéçîçãîæâïêèòíêáÛÖÌÇÅ÷õõ¼¹¸´³³­£œÌÿúúûûüü÷÷÷ööööööøøøùùùûûûðîì¾¶±—Œ…¡š•“…~‹{w¯¬¬÷÷öøøùøøøùùùùùùúúúøøøöööõóóóññòïðòññóññóññóññóññòððòððòïïñíîñëìðìéðëèïêçíéæíåãëåâéâÝèà×çÜÓæÚÐãÕÆãɲäÀ¤ì¯î®{î®|í®~î®~ñ§só¤jö¢føŸdöŸb÷ a÷Ÿ`öŸ_ö_õ\ö_öž]ö]õ]ôž]õœ[õœ[öœ[ô›Zõ\ó›[÷›Zô›[õ›[ö›Zö›Zô›ZõšYôšXóšZõ›Zöš[õšZôšZôšZö›\õ›\óš\ôšZôšZóš[ó™Zó™Xô™Yó˜YóšYôšZò˜[ñ—[ò›[øž\¼…fvTD>C@kDÆ„Sû¤gëšiØ^ÉŠgÔˆYø¤i´zX€YFTC5¸yM¼|Tî¡m¼hBFC>;.…dICFCEOMGIE)96@OTCJA9IG5CDCFAãÓÇéÞÓèÝÕéâÚíèåðëêóîîòîëïêäïçãïèãïéåòîìôòòôòñóðïñìèëåßëãÝèàÙëãÞòíìóîïõñòìèçâßÞâÞÛòñð÷÷÷öööööööööööö÷÷÷÷÷÷øøøøøøóòñßÜÚäãá×ÓÍâÞÛîííúúú÷÷÷øøøúúúúúúúúúùùùööööôôóññóññôòòôòòôòòóññôòòóññóññóñññîîñëëðëëïêçïêçïêçîèäëæåêãßéãÝçߨçÝÕåÙÏá˶㾢èµéµŽéµŒè¶í­€ï«xó¥lö¢cø c÷ b÷ž`öž_ö`õ_õ^öž^õž]õœ^õœ\õœ[õ[öœ\õœ[÷œZö›Zõ›[õšZõ›ZöšYõšYöšYöšZõšYõšZôšYõš\õš\õš[ôšZõ™YöšXõ™ZóšZóšYôšZôšZó™ZòšXô˜Xô˜Xô˜Wó˜Wô˜Xõ›\õ bòc€gVkO9«tMï–Zòžfì—aì—bçjÖˆZÜ’a°sMÃ{K¶{[}Y@Á|Míš`æ sšv]fZN0DE2@>/=>-8:34.9LM0>@>HF-=?(15?ONâͼèßÖèÚÏèÜÔêäßìæâñìëóïìðìèòíêòíêóîíôòòõóóôòòóïðïêçåÔÂâоãÊ´æÙÏñëèóîìóíîõñòõóóõóóõôôöôô÷öööööõóóõóó÷õõööööõõ÷õõùùùûûûúúúúúúúúúúúúøøø÷÷÷÷÷÷úúúúúúúúúùùùööö÷õõôòòôòòôòòôòòõóóôòòõóóõóóóññòððòîïñëëðêéîéåíæãëæãìçäìåãçàÝæÝØåÚÑäØÏãÕÈáǰ幘綒滗漜鲌ñ§rî«zô¤lö¡dø¡cöŸaöž_öž]ö_ôž_ö]ö\ô[ô[õœ\õœZõœ\õ›[õš[õ›ZõšYóœ]óšZõšZ÷šZõšY÷™Yö™[ô™[õšZöšYô™ZõšZôšYôš[óšZõšXô™Zô—Xõ™Wó˜Xò˜Xô™Xò™Yó—Xó™Wó—Wò˜Xõ˜Xô™Xõœ_ã“_¼wEê•Wë˜d܉Uë”]é—bÈ‚WÂ{Q±tRuH2´oC¿xJžnQºo?ê˜`îšbµƒ^n\KhVDd[LMQIBHAELC‚saaVGâǯåØÍéÞÔêÝÔçÝÔèßÙîéæïëèðìèñìéòíìòíîôòòóññóíîíæàãÏÀãĨ澛彛æÓÅðìêóïìôðï÷óôôñòóíîóîïóññóññóññóïðóððõóóöôôõóóõôôööö÷÷÷ööö÷÷÷øøøøøøööö÷õõöõõ÷÷÷úúúùùù÷÷÷öööõôôôòòôòòôòòôòòôòòõóóôòòôòòóññòððòîîñëìîêçìæãëäáêãàêãàçáÚæÞÖåÚÒã×ÍâÔÇáоâÀ¦ä»å¾ åÀ¥ç¶•ï§vñ§pò¥oö¡eø¡dõŸaöžaöž^õ^õž^öœ^õ]ôœ\õœ\ô›[öœ[óš\õšYôšZõš[ô›[ôœ[÷™Zö›ZöšYô™\ö™[ô›[ôš[ôšZô™Yõ™Yó™Xö˜Xô˜Wô˜Zô˜Zó˜Yó˜Vó˜Wô™Yô—Wò˜Xó—Xó—Yó—Zó˜Wô˜Wó˜Wó™Xô™XôšYò˜Yö›[õœ[öœ^ê™a¸yU·sJׄQ½yT¹o?Î~Gç‘Vè’WåVä‘]öŸbâ™hlUNK:`]J–hFbYP^M:ªyW\`W>IIae]jU‹iFßšjí¢m徟ãÈ¯ãÆ®ãĬâͺäØÍéãÞìãáêàØæÖËæ×ÍèÜÕèßÙéßÚèÙÎäŬ巑縒곈겆æÎ¼ðëêóððöôô÷õõôïîðëèïéèðêêðëéïêçîèçòîîôóóöôôôòòñïïóïïóððóððôóóöööõôôõóóóññôòòõõõ÷÷÷÷÷÷öööõôôõóóôòòòððóññóññòððôòòóññóññòððòððòîïðëëìèäéáÞçßÚçàÜæÞÙâÖÎâÖÊâÕËáÓÉâÓÊâÕÉãÊ´ãÈ°ãÆ®æ¹™î¨zïªwî¬}ó£l÷ŸcöŸaöž`õ_õ_õ]ô\õœ\ôœ^ôœ]õœ]ö›Zô›\óšYöšZôšZõšZõšYõšZö™[ôšZô›Yô›ZõšZõšZõ™Xô˜Yõ˜Xô˜Vô—Zô—Xô—Wó—Wó—Wô—Wô—Vó˜Xô˜Wô˜Vô˜Wó–Vô˜Xó—Wò˜Wò˜Wò™Xô˜Xô™Xó™Yî•YÝŠTØŒUÔƒLÕ…VÃ]Æ|PˆbI¼l7؈TëPê“Vò™[é’Wè”^ø¡bÁŠblO:ÑŠWÈ‘jSH@OI?ML?t\FW\Tf]YoeUÈŠ^«}\Õ”dºŒoïªvì­í¬z鱇äÁ¤ãϽäϼåÁ¥æº˜é¬謂巖世巕豇í«yí¬zïªuï«vì°€åÈ´èßÚêàÝêäàñíìïêèêãÝæÜÔçÞØêàÛêãÞíæäñìíóññóññòïðìçæëæäìåãëäãîééñîîñííïêêïììòïðôòòõóôõôôöôôöóóôòòóññòððòïïòððòññòððòïïòïïòïïòðððîîïêèéãÞâÖÍàÐÃâÖÌäÖÏàÓÇßÊ·àÇ´àDzà˹âÒÆâÓÄàÍ»ãÂªæ¼žê²‰í¯‚î¬ó£mõŸbõž_õž^õ_õ^ôœ^ô\ô›]õ[ôœ[ô›[ô›Z÷š\ô›[óšZõšZôšZõšYöš[ôš\õ›\õš[õšZõ™Yõ™Xô˜Vô˜Vô˜Vô—Wó˜Wó˜Vó—Wô—Wô—Vó˜Vô—Wó˜Xó˜Wó—Vó—Uó•Wô—Uó—Vò–Vó˜Wó˜Vó˜Xî•Xë‘VæVÊ}PæUôš]Þ_µvRždDÒ‚JЀNä‰Lé‘Uñ—Wö\ê‘VõaõbçšfLj^£qOÀ|QXOJA9-695,:8[XR¡vP”{gcL>ŽoT‡mX¢xZñ§nð§qð©pì®賌贋므î¨rî©uî«vî¬yí®}í«wð¨pð¨nð«xï­zñ«uð«uî¬z겉繖跔âÁ¨äÏÁæÉ¶âʶâνâÓÆåÙÎêâÜëäâîèçðììîêêìçæèãÜçáÙèàÚèàÚêãáëåãêãàèáÜêäáîèéðíìóïðóðñóòòóññòïïðííñííñììñííïìíðììïêëðêëñìíðííîéêêäáåÚÓßȵßDzßλàÐÃàÑÃáÐÀâDz㿤â¨áìâíâ«忥溜赒í®ñ¦rõŸeõž`õ_ö^öž`õ_ô^ôœ\óœ[ô›[ó›[ô›[õœZ÷š[ó™[ôšZõšZõšZóšYõš\ô›ZôšZõ™Zõ˜Wõ˜Xô˜Wõ˜Wó—Vó—Vô—Xó—Vñ—Wó–Vó—Vó—Uò—Vó–Uô–Uô—Vó—Uó–Tó•Vó–Vò–Wó–Vó–Wô™WêRì‘Rï”WôšY÷œ]ùž^Ü“c´uP©mF­hCÖ‚LÃzKèNñ–Võœ[öœ[ß[î”Uè•]Ü‘`¾ZWF:—d@1;>.71OC4DKEOLD\N<£pKMGeN>SG51<cJ5OG9kS6î—WÑ”lÁzIÁƒX¾‚UØ“bœmO£oQÜ“`´`²YŸoOuhUõ¤gô¤gô£hõ¤gõ¤hõ¤gõ¤gõ¤hõ¥gö¥hõ¥jõ¥jö¥jõ¥iö¦iö¥iõ¤hô¤fô¤gõ£fô¤hô£hó¤ió¥kô¤kñ¥nï§sð¦qí©wî§síª{幘ãȲãÔÇäÖÉâDZ㽠渖賎ì¨y묀淕豇ì«|ëª~ç²â¼¡àͽãØÏæÛÔäØÏàÊ¹àÆ²àȵßÊ»áǵ乜䷘å³ç´‘乜âÀ©ã»Ÿç²é®‰è±‹ì¬ï¨wð¤oóœbôœ]òœbñ›]óš\óš[ó›Zò›[óš[òš[óšZõšZôš[ó›ZóšZôš[óšZôš[ôš\óšZõš[ò™\õšZó™Zó™Zó™Yô™Yô˜Xó—Xò˜Xò—Xó–Wò—Vô–Tô–Uó–Vò–Uó–Tò–Uò•Vó–Uò•Tô•Tò•Sò•Tó”Tó”Tò•Sò•Tò”Uò•Sñ•Uò•Tò”Sñ•Uò“Sò”Sò”Sò“Só•Tó•Uî”VØ„QÖ…QµuNÝ…Fô˜Vá‹Sð“Rï“Uò–Tò–Wë’Wì”WÄR“gJˆ\<‚V7»xG­vJñšZõ¢jð kÆ…[œtUBLH‡fILF=aI4ªsH¢qN¤glZKUULõ£fõ¤eõ£eõ¤dõ£eõ£eõ£fõ¤gõ¤gö¤hõ¥iõ¦iö¤iõ£iõ£hõ£gö£hõ£gõ£fõ¢dö£gõ£fõ¢eõ£fõ£fõ£hó£jó¤jô£jó£fô¢jï¥ré°ŠãÀ§ä½¡ë¬í§uî¥sñ¤oñ¤kð¥qí©zð¦qñ£nð¢jî¥p賎âÄ­àÐÂáÑÅá˹⾤䲑箊篌诋î£oî¤sï¥rð¤pí©{é­‡í©yí«|ꮇî©|ð£pò¡iòžcóœ\ó›\óš\òšYóšYóšZôšYóš[õšZô™YôšZô™Yõ™ZõšYôš[ó™YóšYôš\ó™[ó™ZóšZò˜Yôš[ô™[ô˜Xó™Xô™Yó˜Xô—Wó—Xò—Wó—Uñ–Vò•Uó–Uó–Tó–Tô•Tñ•Uó•Uñ•Uñ•Uó”Tò–Tò•Tò•Tò”Sò•Tò”Tò”Vó”Tò”Uñ•Uñ•Uñ•Tô“Tñ”Tò•Rò”Sò–Uô•Vè’XÕƒQÔ‚LÇyHí‘Nò–WèSï“Tó•Tò–Uñ–Uñ—Xî”Y·~Y]VMrN0Êz?ø£eõŸdíšeÝ–iÆT§vV{^I&9;96,:<6=<0j_KMKELMJeRC\[Mõ£f÷£d÷¢eö¡eõ£fö£eõ£gõ£eô¤gõ¤gõ¤hô¤gö¥kô¢fõ¢fö£eö¢fö£fõ¢gô¢dö¢eö¢d÷¢e÷¢fö¡eõ£gô¢hõ¢hõ¢gö¡eô¢eõ dõ¡hñ¤nñ¥qô¡fõŸfó¡fó¢jó£kò¢hó¤jô¡eó¡fò¡hï¨t纙äÄ«áÊ·áÇ´ä¹êª€ñ¡hóŸfòŸfñŸfòŸbôŸcôŸcòŸdñždò dò¢jð¤pï¡kòžbòbò`ó›]ó›\óš\ô›Zó›Zôš[ó™ZóšZó™[óš[ô™Zó™[ô™ZôšZöšZõš\ó™Yô›Zôš[ó™Yôš[ó™\ô™Yó™Yô˜Xô—Xó˜Yò˜Yò—Yó—Wó—Uó–Uò—Vò•Uñ•Uò–Vò–Uó–Uò•Uô•Só•Só”Tò•Tó•Tò•Vñ”Tñ•Sò•Tñ”Tñ•Uñ•Vñ•Tò•Tñ•Uó•Uñ•Tñ”Tñ“Tò”Rñ”Uñ•Uó•Uê‘X΂PáŒUÉzHï“Tò•Xð”Sñ”Tñ“Tñ”Uñ”Uò˜Xí–Z°wS;:4Ê~Fõaø£gÖŽ_‘kU»{O[RIP=2>5*$6.)6/)1+(505?:PRJMLCA<1ŒiF÷¢c÷¡dõ¢d÷¢cö¢dö¡eõ¡d÷¢gö¢gõ£fõ¤hõ£fô¢fö£eö¢eö¢eõ£f÷¢f÷¡d÷ d÷¡d÷¡dö dõ c÷¡d÷ d÷ dö¡dö¡dõ¡eö cö¡dö bõŸcö bõžcö eö dô¡fó¡hô¢gó¡h÷ cô¥lð©tíª{緗繛洓êªñ iòŸdóždôŸbôž`ñ`ò`óaòœ`óž_ô^óœ_óœ_ñcòœ^ô›^óœ\ó›]ó›Zò™Zòš[ôšZó™\óšZö™YóšYò™[óšYóšYóšXó˜Yô˜Zô™Xò™Xô™Zó™Yô—Xó™Xò™Yô˜Yó—Yó˜Yô—Vó—Xñ—Yó˜Wò—Wô–Wó•Uñ•Tò•Tó–Vò•Sñ–Tò•Tó”Só•Tõ“Sò•Sò”Sñ•Rñ–Tñ•Uò•Tñ•Tò”Sò”Uñ•Vò”Tò•Vò”Uò”Tñ•Uñ”Vò•Sò”Sñ“Tñ”Sð”Tó”Të’V؃RÛ‹TÏzKëŽRò•Uñ”Sñ”Rò”Só–Yò˜[ñ—WØŒ[Œ`Iˆ]<ÞŠKö¡gçšeŽiQ^QAMA17>9!#%6,*72/2/3:9wY@]SAl`N=KE{bFø¡e÷¢e÷¡e÷¢e÷¢d÷¡e÷¢e÷¡eõ¢dõ¢fö¤i÷¢eö¡f÷¢c÷¡e÷¢eö¡eö¡dö¡eø¢d÷¡e÷¡c÷¡d÷ dö cö cö dö döŸdö cö b÷ŸcõŸcö böŸcöŸcõžbôŸeô¡jó¡iôŸcõŸcõŸcñ¢hð¢kñŸhî¨xì©ï¦rð¢kóžaóaô_ô^ó^ó_ôœ^òœ_ô›_óœ_ó›_ô›\ó›]ó›^ô›]ô›\òš[òšZôšZò™Yñ™Yô™Zô™Zó™\ôš[ó™[ó™Yò™Zó™Yó˜Xò—Wó˜Xô˜Wò—Wô—Xô—Wó˜Wò˜Xò˜Wó˜Wñ˜Wó–Xó—Wñ—Xó—Wó—Vó–Vó–Uó•Uó–Tó•Uò–Tñ–Sò•Tò•Só”Sò•Sô”Rò”Rñ•Sñ•Uñ”Tñ”Só•Tð”Vò“Tñ”Uñ•Vñ“Uò•Tð•Uñ”Tñ”Tñ•Uò“Uñ“Sð”Sð”Rò“Tð”UçUä[ÜŠVå‹Pç‹Oò“Sñ“Sð“Tñ•Vð—\òœ`ë˜_~bM€R.É~OЂLä–bň^?C@"*&+1*2.)%,'%-&26.FE7A=1qQ2bTCfCLSL4A8174ø¡dö d÷¡c÷¡c÷¡d÷£dø¡eö¡f÷¢fö¢e÷¢hø¡d÷¡d÷¡cö¡d÷¢c÷¡d÷¡c÷ cö¡böŸb÷ŸaõŸaöŸaõŸaõŸaõŸbõ aõžaöžbôŸaõŸaôŸbô cõ cöžbõžaõŸbó dôždõžaôžaòaó`ó_óaóžbñŸdñŸdó`ôœ_óž_ô_óœ^óœ^ó›^ó›\ô›_óš\ó›\òšYó›Zóš\óš\ò›[ó™[ôš\ôšZñ™[óšYó™Zó™Zò™YóšYó™Zó˜Zó˜Yò˜Yô˜Zô˜Vó—Xô—Wó—Vò—Wó˜Xô—Wò—Yò—Wô—Wò—Wò˜Wò—Xó—Wò–Wó–Vò–Wó—Vò—Uó–Vó•Uò–Uò•Uò–Tò•Tò•Uñ•Tò”Tò”Rò“Sò”Tñ”Tò”Sð”Sñ•Uð•Uñ”Uò”Tñ•Uð”Uò”Tð”Sñ”Uñ•Uò•Sñ“Tð”Sñ”Tñ”Rñ“Sñ“Të‘Uå‘[à[èSë‘UìRð“Qñ“Sñ–Xð˜Zòœ`ã’^ÏN¼|SµtI‚[C¡iG}]E.4314+23'XK:gG-tW=˜g?̈W³\À{H®ƒdà˜dyn?C=61'÷¡cö dø¡c÷¡cö cö¡d÷ e÷¡d÷¡dö¡d÷¢d÷¡c÷¡c÷¡d÷ cø¡bø cöŸa÷ŸaõŸ`÷ž_õž`öž`ö`öž`ö`öœaôž`öžaõžaõžaõž_ö aõŸcôžbõžaöžaôž`õžaôžaõ`óœaôaõ_ôœ_ôœ`õœ`ô›_óœ]ôœ\ó›^ó›\ôœ]ó›\ó›[óš\ó™\ôš\òš[òš\ó™Yò™Yòš[ó™Zñ™ZòšZôš[òšZò™\ó™Zó˜Zô˜Xò˜Yó™Xò™Xò˜Xó—Xñ—Xñ—Xô˜Vó—Wó—Wó–Vñ—Xó—Wò•Uô–Xò–Vó–Wò–Vó—Vó–Wó–Wñ–Wò–Wñ–Wñ–Wñ–Uò–Vó•Tó–Uð•Uó”Tñ”Tñ”Tð”Uñ”Rò“Sñ”Sò”Tñ”Tñ”Tñ”Uò”Vò”Uñ”Uñ•Rñ•Uñ”Uð“Rñ“Rñ”Tð•Tñ•Vð”Tñ•Tñ”Sñ”Sð”Tò“Tï”Uí’Vê‘Xí‘Vñ“Rî‘Uñ“Sð”Vñ”Vò–Wò—]æ’YÁ{N’eK¥lBRL>G9+FD6}T4[I:?;1{[@ÎJñžfÕ•f¹Y‰bFÁT©ƒm‘w[sk]1?G%+&÷ c÷ c÷¢dø¡cö c÷ c÷¡d÷¢e÷¢c÷ c÷ cö cö c÷ b÷ bö a÷ aöŸaöž_õž`ö_õ_õ^ö`öŸ_ö_õaôž`õž_ôžbôž`ôž_õ `õž_ôž_õž_öž`ô`õ_õ^ô_óœ^ô]ôœ]ôœ^óœ^ô_õ›^ó›\ô›]ó›[ò›Zôš[óšZóšZó™[ô™Zó™YóšXó™Zó™Yò™[ò˜Yñ™Yò™[ò™Xó™Zó™Yò˜Yò˜[ò˜Xó˜Xó˜Yò˜Xó—Xò—Xô—Wò˜Wó—Wñ—Xò˜Vó–Wò—Vò–Vó–Uñ”Vó–Vó–Uó–Vò•Uò—Vò–Vò–Xñ—Xò–Wñ—Vð•Vò–Uò–Tñ—Vñ•Tð•Uñ“Vð•Sñ”Tò”Uò”Sò“Tñ“Sò“Ró”Rò”Rñ•Tñ”Vð”Vñ”Sð”Sñ”Sð”Tï”Sð“Sñ“Tð”Uñ”Uð”Tñ”Tï”Tð“Sð”Sò“Tð”Tð“Rî’Sî‘Rñ’Qñ’Sñ“Sñ’Vð”Sñ•Wó–[óš\­|Y:?9ƒ]>KD7J?2;;-‚N/»wIÖŽ[Õ’b«wXï—Zí¥s©|`nP8‡cF|l`Z\S>F?1>;,>?ø bù¡cö b÷Ÿa÷ bø¡bö¡c÷Ÿc÷ böŸa÷ `õ dõŸa÷ a÷ž_öŸbõŸ`öž_õž^öžaö`ô_õž^õž`õ]ô]õ_ôœ^õœ]ô^ôœ]õ›_õœ^ô^ô]õœ_ó›]ô›^óœ\óœ[ô›]ò›^ó›\óœ\ó›\ôš]óœ^óšZô›\ó›^òš\ôšZñ™Zòš\ô™[ô™YôšYó˜[ôšYõšYô˜Yó˜Yó™Yó—Wò˜Yó˜Xò™Yó˜Yñ˜Xó—Yô˜Wò˜Wò—Xó˜Xò—Yò–Xó–Vò—Uó—Vò—Wò–Vò–Vñ—Uô–Vó•Uó•Uò•Vò•Vò•Vñ–Wò–Uò—Vó–Vò•Wñ–Tñ–Tñ–Uò•Vñ•Uð”Vñ•Tñ•Sð”Uò“Uñ”Tò“Sò”Sñ“Tò”Rò“Sò“Sò”Sò”Rð•Tð“Sñ“Pñ”Sð”Sð“Sò“Sñ“Sï“Sð”Uï”Vð“Rî’Rð’Sð”Uð•Uï•Uï’Rð’Rð’Rï‘Qð‘Rð’Pñ’Sð“Rð”Tò•WãŽW͆[ kKTJ<>?5lL9KC6sM,äTá]õ fÈŠdm]Mv\Gèšc€hYC?1MJ=@B>÷ bõ aöŸaõž`öŸ`õŸaõž`õŸaöŸaö _öŸ`öžaöžaõž^õž^õŸ_öž^õ]õ^öaô_õ_õœ_ô›]ó›[ó›]ôœ^õ›]ô›]ó›[ó›]ôœ[ó›[ô›]ôš`óšZóš]óš\óš[ôš\ó›[òšYôš\ôš]óš[ò™\ó™Yò™[ó™\ó™Zó™\ñ™\ó™[ó™Zô™Zó™Xó˜Yò™Xó˜Vó—Yò—Zó˜Vñ˜Xñ—Zó˜Wñ—Xò—Xñ—Wó—Yó–Wñ—Vô—Vó—Vó–Vò•Uò•Uò–Vò–Vñ•Vò–Uó•Vó–Vò–Uó•Uò•Vñ–Uñ—Vò—Wó—Vó–Vñ–Wó•Wò•Vñ–Uñ–Tñ•Uñ”Vñ•Uñ•Uò•Tò”Só”Tñ”Tñ”Tð”Tð“Tñ“Sñ”Tð”Uñ”Sñ’Rð’Rò’Sð’Sñ”Uð”Tñ“Tò“Sð“Sñ“Rð”Sð“Sï”Wï”Vð•Xñ”Tð”Tï–Xï–Zï“Wï’Sï‘Pð‘Qð‘Qð‘Qï‘Rð’Rñ“Sñ”Vô—YÃxJ‡aD?9.R;(rL/ºq?ô›]ã˜d³zWÄ~TÀ€V²|Ze]U<@6ŒiOj[RB9/YI2MOB/@@);@,*5E@öž`öž`öž`öŸ`öž_õž_öž`õž`öŸaöŸaöž`öž`öž_õ^õž`õž_õž^õ]õœ_ô`ôœ\õœ[õœ]ôœ^óœ[ó›[ó›\ôœ\ó›[ô›\ò›[óš[óš\òš\óš\ò™]òšYóš[óš[óšZóš]ñ™Yó™\ò™[òšZò™Zò™Yò™Zó™\ò™[ô™Zò™Zò˜[ñ˜Xò˜Xò—Xò˜Xò˜Xò—Wñ—Xò—Xó–Xó—Wò—Zñ—Xò—Wò—Vò–Wò—Uò–Vò–Uò•Uò–Uò–Vò•Vò–Uò–Uò–Vñ•Wò•Tó”Tò•Vò•Uò•Uñ•Vò•Tó•Wñ•Wò–Xó–Wò•Wñ–Wñ–Uð•Uð–Uð•Uñ•Uò“Tñ•Tñ”Tò“Tñ”Xñ•Tð”Uð”Tñ”Sñ”Sñ“Tñ“Rð’Qð“Rñ“Qò’Qð’Sñ’Sï“Tï“Sï“Rñ“Qï’Sï’Sð’Sð“Tï”Vï”Vï•Wð—Zî˜_î–[ï“Vð’Sî‘PñPðPðQð‘Pñ‘Rí‘Rî’Sí’SÇ€V’fII=.¨e4ú™Vý¢cìše–r[LA4†S3_L{[>XRL@GBBMOMPMBC:UA.PWQ*?;%<;,EC0@9öž_÷žaö^ö_öž_õž^÷`õž`öž`öž`öž`ö_öaôž_õ_õž`ôœ_ôœ\ôœ^ôœ^ô›Zô›[ô›\óš\ô›]óšZôš[ô›\ó›Zóš]ò™[ò™Zòš[óš\ó›\ò™]ô™[óš\óšZóšZò™[ò™[ó™[ó™Zó™Zô™[òšZñ˜[ò™[ó™Zò˜Yò™Yñ—Zò˜Wò—Xñ—Zó˜Xò–Wó—Vñ—Wñ•Vò•Wñ–Wò–Vò–Wó—Vó–Vò•Vò–Tò•Vò–Uò–Uò–Vò”Vñ–Sò–Uò–Uò•Uò•Uñ•Só”Tò•Tò•Tò•Uó•Uñ–Vò•Tñ•Uò–Vñ•Wò–Uð•Wï•Vñ•Vð•Vð•Tñ”Tñ”Uñ”Tñ”Tð”Tð•Uñ”Sñ“Tñ”Sñ”Sñ“Tð’Qò’Qî“Sð’Sñ“Rð“Rñ‘Qï’Rð’Rð’Rï“Tð“Sð“Tï–Yï˜[ï›_ï™`î–[î”Wï•Yí—]í–[î”Xï’Rð‘PðPð‘Pð‘SðPï‘Që‘TÌ}K«oEiO>hA!Ë|Cö˜T÷œ_è–aш[iU)5.oH+”gMD>2ILF?E?OVQJW[7DE8GB0??7EB2LO0FH4><ô`õœ`õž`õž_õ`õž_öœ`öŸ^öž_õ`õž_ôž`õ`ôœ^ôœ]ôœ`ô›^óœ]ôœ^ô›^ôš[óš\ô›\ò›[óš]ô›[óš\ó™[óš[òšZò™[ôšZóšZôš\ô™\óš\ôš[óšZóšYóšYó™[ò˜\ô™Yó™Yó™[óšZô˜Yñ˜Xò˜Yó™Xñ˜Xó™Xò˜Xñ—Xñ—Zñ—Xñ–Wò–Vñ–Uò–Vò•Vñ•Vò–Vñ–Uò—Uò•Uò–Uñ–Sò–Tó•Vó•Tò”Tñ•Tó•Sñ•Sñ–Vò•Uò•Tò•Sñ”Tñ•Uò•Sò•Tò•Tò•Uñ–Vñ”Uñ•Uñ•Vð•Vñ•Uñ•Uñ•Uñ”Uð”Vð”Tò“Rñ”Sð“Tï“Uð”Uð”Tñ“Tò“Uñ“Tð“Tð“Tñ’Rñ’Sð“Qï’Rï“Rð’Rï’Qî’Rï‘Rï’Qï”Vî“Vï•Yï£oí¬€í§|î¡qïhï›eïœdï›dí˜aí“VîQî‘Pï‘Rî’Rï‘SïPñ‘Sô•W˜eJaC/œ_1âˆE÷šYò™Zò™]ΆZ’eEjT@DC7_E+·tDªsM‚iSžvPgf^P\^CWZ-BF.ECDXUVW0DF:NWõžaõ_öŸ_ô`öž^ö`õ`õaóœ_ô^ô^óœ]ó^ô›\óœ[ôœ\óš[ó›Zö™Zóš[ò™\ò™Zòš\õ›]ò™Yô™\ô™Zôš[ó™[ô™[ó˜Yô™\ô™Zó˜Zõ˜Zò˜Wò˜Yò—Xò—Yó˜Yñ˜Xò™Xñ˜Xò˜Yñ™Yò˜Yñ—Wó˜Zó˜Wò—Yñ—Wñ–Vò—Xñ—Wò–Wó•Uò—Wò–Wñ•Uñ•Tò•Sò–Uñ•Tñ•Wò”Tñ•Tñ”Rñ”Sð”Tñ”Sñ”Tò”Rò•Uñ•Tñ”Tñ”Uò”Uò”Sñ”Tñ”Sñ”Uò•Sò”Rð•Sñ–Uð”Wð“Tï“Sð”Uñ“Uð“Uñ“Tñ”Tñ”Rð“Sð’Rð’Rñ‘Qð’Rï“Rð’Sð’Rð’Rð’Rñ“Rð“Tð”Uî“Tï“Sï’Rð’Rð‘Qñ‘Qï’Rï‘Qð‘Pï—[í–]î™^ï¨v꬇è©é¥~ê—bì‘Vì•^ì™cì£uë¦|ì¥zí¢ríšfì•Zí’Uí’Sì“WË}Mž^1â…Bð“Rï’Uñ”Uó•Vî”ZÚ‹Y}fNV?&ö”Oæšg»~Vï›dß›n¥v[°vO\HO@6²uF’v`ˆkRY_^OYTKIDV]U3EFKNM:HP?RS5FPJEFôœ]õœ^ô›^ôœ]ô›[óšZó›Zó›\ò›[òš[óš[óš\ô›[ó™\òš[ò™\ô™[ò™Zòš]ñšZó™[ó™\ò™\ôš]ñ˜Wò˜Yò—Yò˜Yò—Xò—Wò–Wð–Xñ–Wò–Vò–Wó–Vò•Vñ”Vó–Xò–Xò–Wò•Tò–Vò–Vò—Wñ—Wñ•Vñ•Tð•Wñ–Wñ•Vñ”Tñ•Uð•Tñ”Tñ”Vñ”Sñ”Tð”Rñ”Tò“Sò“Sñ”Tï•Qñ”Tð”Sð“Tð“Rñ“Rð”Rï“Tñ’Rò“Sñ’Rò“Rð“Sñ”Sñ“Sð”Sò“Sð•Uñ”Tñ“Tï“Tï“Sð“Rñ’Sð’Rñ’Rñ’Rð’Pð’Qï’Sï’Rð’Sï“Rï’Rî”Uí”Wî“Tï’Rð‘Pï”Uî–[î™^ï™^ïžeï¢mî˜^î•Zî”Vî”Wí”Wí’Tí’Tí‘Rí’Tí¢oë¥yî¡oì pëŸoì—_ì˜cì™dì˜aëœlèoç˜jé”^ê–_è—fé”^ê”]ê¥z騄ê¨ëžoì™eí•_éTäWîTò”Uñ“VäUé‘YvZGeP;„Z>Ï„Vº‰mAGEFKGc^UIG*DK'@>+>=>LObM9~eN)342779GOò™\óš\ó™\ò™\ò™[ó™Zó˜YóšZóš[ô™Zó˜Xò˜Yñ˜[ñ—Zò˜Xñ—Yñ–Xñ–Wð–Yñ—Xò˜Yñ–Wò–Vð–Wð–Xò–Wñ–Wò–Vò•Vñ–Vð—Uñ–Vð•Vñ•Vñ•Vñ–Vñ•Uñ•Vð–Xð–Vñ•Vò”Uò”Uñ•Tñ”Tñ•Tï”Sï”Tð“Sñ“Tï“Tñ“Rð”Tð“Rï“Sð“Sð“Sñ“Qð“Rð’Tð’Sï“Rï“Sï“Rñ“Qð“Rð’Qñ’Sñ’Rð’Qð’Rï’Rð’Sï“Sï’Qï’Rï“Rï’Qï’Rï”Rí”Tð’Rð’Rð“Qî“Rï“Rð’Pï‘Sï’Qð‘Pï‘Pï‘Qî“Uî’Rî’Tí”Wî’Tî’Rì‘TïNïOí“Ví“Ví–]í˜_ìšdë£u鯌簑魉ê§|ëhì”Yì’Sì‘TìTë’Wë˜aéœkë™aë•\ì•Zê nê£vêœiê”^ì˜`ëœiê˜bêšhëšgê™gë–`ê“\ìRëPîŒMìŒKîŒKíŒKíŽLîMðOЀKÒJÓ‡VÅ~WƆ^§qX’rYiUg_X?LR!322CD7KTBHHYNAYLA?@::4-WVHKSTó™\ó™\ó™\ó˜[ñ˜Zò™[ò™Yñ™Xñ˜[ò—[ó—Yò˜Yó˜Yò˜[ò—Yï–Yñ•Vñ–Xñ•Vñ–Xñ—Zñ–Wñ–Vñ–Vñ–Uò–Uð–Uñ–Wñ•Tñ•Wð–Vò–Uñ•Vð•Xï•Vò–Tï•Uñ”Tð•Uð–Vñ•Vñ”Tó”Uð”Tð”Tð“Tñ“Qï”Rð’Sð“Tð“Rñ”Rð“Rð“Rï“Rð“Tï“Sñ“Rð“Rï’Rð’Rð’Qð’Rð“Qð’Qð’Qð’Rï‘Sî“Rð“Qï’Qð’Pï’Rî’Sï“Pï“Sï“Rï”Rï“Rî“Rð’Sñ’Pð’Pï’Rï’Rï‘Rñ’NîQî’Sð”Tî‘Rî‘Pì’Sî‘Qï‘Qí”Vî”Yí’RîQïŽOîOîRíQí’Të—_ì–^ëŸm談殌簒è¯éª„é£uí›dì›dëšcë“Yë’Wëžkêžmë›jìiélè ué—aë‘Xë˜`ê¤xê›ií¢pêŸmë—aì–_é’\íNîŒPì‹KíŒKíŒLìKíŒLîŒMîŽNìSì’Wê”^Æ^œpTtb\^UP@DDJOI7IT@ILEIG`\VURMUIJpYG‡mZƒZ=¹‹bQ]`òš\òšYò˜[ò˜[ñ™\ò˜[ò˜Xò˜Zò˜Yñ—Yò˜Zò˜Yò˜Xò˜Xò˜Wñ—Vñ•Uò•Vñ•Xñ•Xñ–Wð–Wð–Yò–Uñ•Xò•Vñ•Vñ•Wñ•Vð•Xï•Uñ•Tð”Sï•Vï–Vñ•Tñ•Vð•Uð•Uñ•Tð”Sð•Tð”Uð”Tï”Tð“Sñ’Qð“Rñ“Rï“Rñ“Qñ“Sð’Qï“Rï“Sð“Qð“Qð“Sñ’Rð“Pð“Qð’Qð’Qð’Rð’Pï“Qï’Qð’Qï’Rï‘Qð’Qï’Rï’Pï’Qñ“Qð“Rî“Pî’Qï’Pï’Qð‘Rð’Pð‘PðQí’Qî‘Pð‘Nî‘Qì’Tí•Zí”Xï‘SíSïQï’Sí’Rí“Sì‘RíPïŽNîŽMîMîŽKí‘Tì—aì”Zì¢qé¦~骄汓洕糓竊ê¥|ꪂ魈èœlë˜^ê¦{é¦~è¡ré¦}è sç–eê˜_ë’[ìšcë©‚ê§|멀髅ì¤wë¡rë˜dêRíŽQìNíŒLíŒKíKì‹LîMîŽNïPî’Uê•]§rQUWM,@C$44'106GIAJK??<082ñ—Vò—Xð–Wð—Wñ—Wð–Xð–Xò˜Xñ–Yï•Yð–Yð–Yð•Xð•Wñ•Vð•Xñ”Uð”Uï•Uð”Tï”Vð“Tñ”Uñ”Uð•Tð“Tî”Wî“Uî”Uð”Sï”Sî”Tî“Sï“Sð”Tð”Sð•Uð–Vð”Uñ”Tî”Tî”Sï“Rî“Rï’Rí’Rï’Qî’Sð’Qï’Qï’Qî‘Qî’Rï‘Rî’Qî‘Rî‘Pï‘RïSí‘RðRî‘Oí’Qï‘PïPï‘QîQïPð‘Qî’Pí’Rí’PïQíSï‘OïPîQîQïPîŽOîŽOïŽOïŽOïNðŽPîŽOïMïNîMîŽLíLïŽMîMíŒMîLíKîMïŽNîNëTêTëŒPíŒLîQìhé¤{åœqèŽXëŠMç”aå¢}ç­‹è²æ²“å½¢áǰáÒÄãÖÎä×ÏåÙÐãØÎàÒÆàÑÆÞʻᾩ䫎æqè’Xé“YèŒUé‹Pë‰Kë‹Nê‹JêŠKê‰GëŠHì‹HìŠJë‹IíJ݇Pè‹T׈Zz\K©jBg_Ww^R’s\WXQ3EH/:;?LM)6@cL9¹}W\:¦jcZYXKApjc/77>;0ñ—Wï—Wò–Yñ—Xï–Xð•Yñ•Yð•Yñ–Wñ–Xð–Wð•Xï•Wð–Uñ”Vð•Uï”Vð”Tî“Uð“Rï“Sï“Tî“Sî”Uí“Sï”Rî”Rï“Sð“Sî“Qð”Tð“Vï“Uï”Vî”Wð™]ðœbï™\ï•Uî”Wî”Rî’Tí’Sî’Rñ‘Qî’Qï‘Qî’Tï‘Qî‘Sî’Sï‘Rì‘Rí’Sî’Sî’Pî‘Qî‘Rî‘Sî‘SîQí‘Qî‘QîQî‘Sî‘SîQïPí‘QíQíTî‘Rî‘Pï‘PîOïQìQðŽQîŽPîPïŽOïOîŽNìNîPìŽNîNïOïPïOïŽMíŒMîMîMíMîŒMíMìPí‹PíŒNíŒLíLì‹LìLê’Yç–bêŒQì‰IìŠJëŠKê•_æœp姅䴖⻣࿭ßŵàÑÆãÖÎä×Ðä×ÐàÑÆÞȸ߿®ãº£ç®é¦êœlè˜eèŽUêŒNê‰KëŠHê‹MëŠJì‹IëŠJê‹HëŠJì‹KëŒLâˆPÞ†Nº|XºqEÜŽY‹hWu`L“iM…fT6A=C6!p]N‡lQw^P½{W™}srYOydV1BJGNR@KL9ECñ–Zñ—Xð•Yñ–Yñ–Xñ—Yñ–Xñ•Xð•Xï•Vï•Vð–Wï•Wï•Uï”Vî”Uð’Uï“Vî”Tï’Uî“Tï’Tî“Uï”Tî’Uî“Sï“Sí“Uî’Tî“Tí“Uí“Uï”Vï–Yñ hï jï›fî™_î”Tì“Uí”Tî”Sî’Sî’Rî’Sî’Rï‘Rî‘Qï‘Qî’Qî’Qí‘Qî‘Rì’Rí‘Sï‘Qî‘Sï’Qí‘RïQï‘Pí’Qï‘Qî‘RíRíSî‘SïRî‘PïRîSîRî‘QïOïŽPïŽPîOðŽQïOîOíPíŽPïŽNïOïŽNîMîOîŽOîNîOîMïOïŽNîNíMîMîMîMíŒMîMíKìŒKíŒLìŒLìPìSíMì‹LëŠJê‹KêVé•`ê”]æ¡wà˜sã›q⯓࿭ß˽àÒÇáÓÊÞÎÂàŲ⿪㽦䶞æ¯è¦èžtê™géTé‰MêˆGêˆFéˆIìŒMëŒMëŠJìŠJäˆIÛGä‡IëRσSË‚Sªz^·|YvbOLMXTOmP4Ý–eÛ`וl™w`mebqYK=@=1:73?DHOPTY[BIFð–Xð–Xñ–Yð•Vñ–Uð–Vñ–Vð•Wð•Xð–Vï”Wï•Uî”Tî”Uï”Tï“Uî“Uï“Vî“Sî’Sî“Tï“Rï“Uí“Tï’Sî’Sî’Tí“Uî“Tî’Uí’Tî“Vî”Wï›cî¥sðfî•[î“Vï“Rî“Sí“Sï“Rï‘Qî‘Qî‘Qí‘Qï’Sî‘Qï‘Qï’Pî’Pí’Qî’Rì‘Tî‘Qð‘Pí‘Rî’Qí‘TîQî‘Qî‘Qï‘Qí‘QïRíRí‘Qì‘Rî’Qí‘Sï‘Qí‘QîQîOîOïPïPñOîOîPïŽRïPíŽPíPîNïPíŽPîŽNîNïNïŽMïŽOïOîOîŒNïŽNíŒMíŒLíŒMíLíŒLì‹LíŒKí‹KìŒMìŒMíŒLë‹KíLë‹LëŽPé‘WéŽUèTè‰NèŒPå—e婆᳘ὩßÉºßÆ¶à¾ªà¼©âº§â¯•⥄ä xçšmê›lç’^ê‰Kê‰Iê‰GêŠHëQêVéŠJéŠJׄQÚ„N݆MÁV¿W«uV¿}T¸€[DRYNHG_WJ†eI“tchSH–vdbXQAOU;II1>B'87*9=MMMZ[Z5>:ð•Xï•Xð•Xð•Xð•Wð•Vï•Wð•Wð”Wð•Wï”Vï”Vî”Tï“Uï“Sí“Uî’Sï’Sï“Rí“Sï“Rî’Rî’Sî’Tí“Tí“Tî“Sí’Tì’Uî’Tî“Rî”Wï—XîŸhï¦uïœdî”Vî’Rï“Qí“Rì‘Rî‘Rî‘Qî‘QîRíRï‘Sí‘Qí‘QíQî‘Pð’Qí’Sî‘Rï‘Rî’Qí’Rì‘Rì‘SíTí‘Sí‘Qî‘Së’Sî‘Sî‘Qî‘Rì’Sì’SíSîQîQíQíQîOîPïPîPïPîŽRíRîŽPîŽQîMîNðŽRîŽNîPíŽOíOîŽNîNìOîNîNîŒNìŒLíŒLíLíŒNíŒLíŒLí‹LìŒKíŒLíŒLìŒKì‹KëQëŒPêŒQéŠMêˆIêˆHê‰Iê†FéŠKæ™jåŸv娄㽦áÀ­á²™á¤„㦈ãŸxå”dçšjéšjéšjç•dê“[éŽUê‹LìNêŒSêTéQç‰Má‡NâˆNÖ„M¼}[¾|XµrNï’TgXKMKœjE‡q[UVMROM*/BF?CNQ?LP.EH,;<3EH,<@378LRPFRVð•Vï–Vð•Vð”Uï”Vñ•Uï”Vï”Vï•Uï”Wï”Vî“Vî“Uï”Tî“Sï’Rî’Rï’Rî“Sï’Sï’Rî“Tî“Sî“Sî’Sï“Rï’Sï’Sî‘Sì’Sî“Uí”Wí˜^ížlí¤wï™`î“Sî’Tï‘Rî‘Qì’PïQïQîQî‘Pï‘QîRí‘SîQîQïPï‘Pî‘Pí’Sí‘Sì’Tì’Tî‘Tí‘Rí‘Uî‘Sí‘Sì‘Uì’Qí‘Rí‘Sì’Sì’Tì’Sí‘Tî‘Pî‘QîQîQïPî‘RíTíSîRíQìQìŽQíŽPîŽNîQïŽPìNíQìPíOîNîŽNíMîŽLíŽLîŒNíKíLíLíŒMíKì‹KìŒKìŒKìŒKìŒLìŒKì‹Kë‹Lì‹Kë‹JëŠIëŠHë‰IëˆGé‡Gê‡Hç‹Oç’]è¢v岖⶟㩉è qæ˜kåYé›jë¥xèŸrç—dèŒSèVèŽVê‘Vë—aë•_ë•]ë•_êPë‹JäˆKÑ‚UÊ}P²sQÇU€`PxV>º|Tµ„cnbV8ML6DI>OS#975JG7HLARQ>IJi\KibVITS8CJ/;=ï•Wï–Xð“Tî•Uî•Wï”Tï”Uï•Wí“Xî“Uî”Uî“Rí’Uî“Uí“Qî’Rî‘Sí’Sì’Rí’Sì‘Tí‘Uí’Uì’Rì’Uí’Rî’Qî‘Qî’Rì“Sî‘Sí‘Uì’Ví”Xë–_ì”Vì‘Sí‘QíRî‘Rì‘Rï‘Pî‘PïQï‘QïRî‘QïQï‘Qï‘PîSí‘Sî‘Tí‘Tì’Sî‘Sï‘Të‘Tì‘Vë’Uì’Uì’Uí“Vì’Tì“Rí“Uî’Uî’Uí’Uí‘Tí‘QëQëQíRë‘QëRìTì‘Sê‘TíQìQëSíPíPëŽRìŽPíPìQíŒPëŒQîOíŒOîŒNî‹NîŒMíŒNíŒMíLìLíŒMíŒLì‹Kì‹Lë‹Kë‹Jì‹Jì‹Iì‹Jê‰JëŠJë‰JêŠIëŠIë‰IëŠIëŠJêŒLêŽOì—`ç¥{æ¥|筌鬈詉æ›pèŽSëœi뭈꫆é›kéSèŒSèˆHéŽUç\è‘[ëšfé™iéWì‹IÓ„Q܆SÌ‚V¹wS½yQ§e9·vGÙŒ_³}`vaYPPN0@E8JLAPNMWP…lVŽxdˆn`µ|\™xiMSX@HO4<;ð–Wî•Uð”Sð“Uî“Ví“Wí’Vï“Ví”Vî”Uí“Sî’Rï‘Qí‘Tí‘Tî‘Tí‘Tî‘Rï‘Rí‘Rí‘Sí‘Rí’Rî’Sð‘Pí‘Tí‘Rí‘Sí‘Qî‘Pë‘Sì‘Sí‘Qî‘Rí“Tí‘Sì‘QîRîQîPí‘QìQïQïOíPîQìRïPîPíQïRîQì’Sì‘Rì’Uí“Uì’Uí“Të“Vì“Uì’Uì‘Uë“Vì“Uî–[î˜^ë“Wë’Uê’Uì‘QëQì‘SìQìRìPë’Së‘Uë’Vì‘SíSìOíSíPíPëŽPíŽPìQìŽQìŽQìŒOîŒPìŒLëŒLíŒLì‹Mì‹LìLì‹MìŠMì‹LìŒKìŒLë‹Jì‹Kì‹KëŠKêŠKëŠIëŠIëŠIë‹Jì‹Kê‰Iì‹KëŠLê‹MêTë“YêŸrç¢xç¦}è­ä¨‡áœwç‘]ê˜bë¨~窇秃è¢zé“\èŠNé†Eè‰Hè‡EéŠLë–`ë tëœlì’Y؇VÕ†TÏ‚WÁ~VÙˆTÇ|LëQÔŒ`ŸwaZZY)36\M:˜v]wqhagf‹vl¡‚oY_j]TO{fXdSEcYL=DEï”Vï•Uí”Tî“Sí“Uí“Vï“Sî”Uí’Tí“Tí’Sî‘Sî‘Rð‘Qî’Rí’Sí‘Sî‘RîQì’QïQí‘Rí‘Qì‘Sï‘Qï‘QîQïRîRî‘Qí‘Qî‘Rî‘Qî‘Qí‘Sí’PîRîPíQíQîPìPïŽPîQîRîPï‘QîPíPì‘QîRîQê’SíTì‘Sí‘Rì’Vë“Uë‘Ví’Sì’Tì’Të“Wì–Zìœeìžlì™aí–[ì“Xì“Wì“Vì‘Të‘Rë‘Sì“Tì•[ì“Vë‘Të‘Tì‘Rë‘Uì‘UîŽRíŽQìŽPìQìQïŽPíPíOîŒPìMîŒMí‹Ní‹NìŒLíKíŒMì‹Lë‹KìŒKë‹LëŒKì‹Kì‹KìŠJë‰Ië‹HìŠIë‹IêŠHêŠJêŠHêŠJêŠJëŒMêYçYè•bè™gç ræ£~å¡wèœméšhéœkè¢xè¤|騀è¦æ’aéŠNé‰IéŠJé‰Jé‹Ké‘[ç–eç”eè[æŒXÞˆSÑ‚T¾zSÒ‡YÌ{Iß‹SŸrZnbZ;MVROIªrRÑŽdWZYR[`V^d]cbPXcc\Vkb\ONKZUQcZPî”Uî”Ví“Ví”Tí“Tí’Sî’Sí“Sì’Uí’Sï‘RïSî‘Rï’RîSî‘Rî‘Rí’Rì‘RíQïQí‘Qî‘Pí‘SíQîQî‘RíSìQî‘Pí‘QìRî‘PíPîPí‘Qî‘QíQíQîQïŽPïQíRîQíPîQí‘RîPïOíPí‘Sí‘Sì‘Uí‘Sì‘Rë’Tì’Të’Të’Tì’Tì‘Uë‘Uí“Wì–\ë—aë™dìœhì›bë–\ì—`í›gì—]ì”Yì–[í—_ìšeì˜_ì“Vë‘UêSë‘Uì‘UìŽRëSëRëPìOíPíPîPî‹OêŒPë‹Nì‹Oí‹MíŒLí‹Mí‹MëŠMëŠMì‹JëŠJìŠLìŠKìŠKëŠJëŠIëŠHìŠIë‰Jê‰Hë‰Gé‰Hê‰GêŠIê‹Né‰Kê‰LéWæ’^æZæ\æ‘]æ•eç˜jè˜gèŸqçqæqå—jçŠRé‹Qé‹RéŒQé‹Nè†Eè‡HçˆKèŠOèŒQêŒP܈TÞ‰WÃ}VºxRÍzHÉ}Q}k^ALPdSEžlOŸpV˜xhd`]Žyhwh]CKJ6+½{M¡oQ¨uSJOP…cQnSDYWSPMIc[T:MV9JH7A=îQì‘RìRïPíŽOìPîOðPïPîPïŽMîŽQïŽQïOîŽPîŽRðŽOîŽOîŽOîŽPíOíQïŽRïPíŽOðŽQîŽOíŽNíŽQêŽSíŽQíPëQëQíPíPîŽRìPëŽQíŽOîŽQîŽQìŽOëOìŽPíŽPíŽQíŽPëSëQìŽQëSìRêQê‘Së‘SëUë•[é™eè¥{屔ὦãÔÇèàØëåßëåàëåßëãÝèà×çÜÑåÖÇáÏ»á̹àì丞櫊è¥zè§~è«…é¤téª~ê£të›hëžlêjé”[ëRê‘Ué–^ì•^ê’UêŽOéSêŽTéŒOë‹Lì‹Kë‹KêŠKëŠLêŠJé‰Gé‰Hé‰Iê‰Hê‰GéˆHéˆGéˆFêˆHê‰GêˆFêˆHéˆFé‡Gé‡Eé‡FèˆFè‡Dè†Eè‡Fè†Fè†Eç…Dè†Dè…Cç†Eé„Bè†Dç…Aç…Dé„Aè„Cé„Bé„Dè„Dè…Dç…BçƒCç„CèƒBè…Cé…Dæ†FÚ…QуS¾zQRGEvQ8™hEµuJ؈Ry[VˆkUEJKHHCNKHGD:Z]WJS\=R`AKJBJJíPîQïPìPîŽMíŽOîQïOíŽNìNíŽPîŒOîŒOîŽLîŽNìŽPíNíŽNìQîŽNìŽNìPìNîNëŽNîNïŒOîOîŒPëPïŒQíŒOïŽOìŽPìŽQìŽQëŽPíOîŽOìŽPêRíPîŽOëŽQëŽQìOíŽNìŽQëRì‘SëQéQìQì‘Rë‘UêSê“Yë›gëšfê§z峒ạáÐÄêãÜëäáíæãêåáêåáëåÞêâÚèßÔæÙÌáÓÂàÉ´â§巖粊æ³ä³“ç²å´–篎é¨|é¤wê¥yê¡oè”\èVé”[êœjë¡oê–]é‘WèŒPéŠMêŠMêŠNëŠJë‰IêŠKêŠKëŠJê‡IêˆIêˆIéˆFèˆEè‡Hê‡Gé‰GèˆHè‡Hè‡GéŠHèˆGéˆGè‡Fè‡EéˆFè‡EéˆFè‡Eè†Cç†Cç„Eè„Cè…Dç„CéƒCè„Aè…Eç…Bç„Bè…Cé…Dç„CèƒCé„Bæ„Bçƒ?çƒ?è„Dè…Bâ…LäˆOËS~cXjH1ÅxBØ…Oã‹Sî“Z«tV]]S.@CAIH>FEWWPCHAç@æ‚Aå‚@ç‚>çƒBç„Dé†CÉ}OÜ„NÃ~W‚]HKBæ‚@çƒ?çƒAè…Aä„GÒOŽbJD<8dG0¯lB·oFÆ{M¾ƒ_i`Z>DAXM?Y\ZwXE©rMUPA/>6ïOîŒMì‹NêŒNíŒMíŒMìŒMì‹Në‹NíŒKë‹MìŒMíŒLì‹Kì‹LíŒMëŒLëŒJí‹MìŒJì‹KëŠJìŠMì‹Mí‹Lì‹NìŒKí‹KìŠKìŠLìŒKìŒMë‹MíŒMí‹LéNë‹Lí‹Më‹NéŒNëŒOêŒOëŒLéOëŒOêŒPéŒNë‹Nê‹LëŒLëŒNëŽQéSê‘SêRê”Zèœkéžm鯂âË·ä×ÍæÝÓëâÞîçäòíëõïïóîíòíëñìéïêçíèåíçäîçäïèåëèâéåàéåàëäàëäàìäàëâÞèáØçÝÖèÞÕçÛÓäØÎß˽༦䭌完毋㳖ã¸å¼£è­‰ç”bèŒSé‰Mè‰Ké‰Jé‰Lê‰IèˆLê‰IéŠMçŒQæ‹Pç‹SèVèŠOé‡Ié‡HèˆJé‡GèˆHé‡Hé†Gç†Fç‡Eç„Bç†Eç†Eè…Cç„Dè…Cç„Bè…Eè„EæƒBæƒBæ‚AçƒBçƒCæ‚@æƒBç?æAç?æ>ç‚@ç=æ@åAç‚>èƒBè„Cä‚D¾tIÉuFÉyGÞ?Ù‚QçŠLÙ‰Y’r]FJO7@:YKDC6íŒMìŒLìŒLëŒLìŒLìŒLìŒLë‹MëLìŒLí‹Lì‹KìŒLì‹JíŒLëŒKëŒJì‹JìŠLì‹Kì‹Lì‹Lë‹Lì‹KíŒLëŒLìŒLìŒLìŒJìŠMë‹LìŒKí‹Kë‹Mì‹LëŒMë‹MíŒLë‹Nê‹MëŒLêŠOê‹Në‹Oê‹MèŒNêŒMê‹MêŒNêŽPéRéŽQé“XìœgìŸjë nè§y鯆âèáÑÃæÛÒçÞÖëäßîéæôïíõðïóïïóîëñìéïêçîçäîèåîéæîéæíèäíæãëæáëåáêåàêåßíäßéâÛéáØéà׿ÛÓãÖÍßξ࿩䵗ä¯ã´–乜ä¹ä¹ å´›é›jè“Yæ‹Oæ‰MçŠMç‰Oé‰JêˆKêŠMèQçTèŠNç‰Oç‹Sè‰LéˆIéˆIéˆHé‡Hè‡Gè‡Hè†Jé†Fè‡Eè…Cç„Dè…Dé„Cè„Dè…Eç„Dæ„CçƒBçƒCç‚Bæƒ@æ‚Aæ‚@ç‚Aæ‚Aç‚@å‚@æ?ç€?æ>æ€@ç‚>ç?ç‚@ç‚@é„DÓxA×€IèˆKÞ‡OÆRÀtLÄxP®sP¥jKcVN?A><;2tVEqUæ€>æ€?ç>ç@ç€>è‚@é@å‚CÙy?ÕKÊ|NÎM‹dRŒ[B‡`J¼vNœjMaUN+8;DG?C>.;8-?:.K<+N?.í‹LíŒMíŒLì‹Lì‹Kë‹Lì‹KíJí‹Kë‹Kë‹KîŒMìŒKíŒMì‹Kì‹LëŠJëŒKëŠJëŠJêŠJë‹Jë‹Jì‹Lë‹Kì‹Mì‹Kì‹Lë‹Nì‹KìŠNì‹LëŒKêŒMé‹Oì‹Lë‹Më‹LêŠNë‹LëŠLêŠKé‹Lé‹Lé‘Vê”Yì•Wí›`ëš`ê”[ê•]é”Xé•_ç¡vç§}è¡sæ°ŠàÄ­áÑÀä×Ëã×ÎåÝÖìåâñìéôðñõóóôòñõñðóîìòíêïêçíéåðëèñìéðëèîéæîçäíæâëåâìåáêæàëåßëãÛéâÙçÝÕåÙÏáÒÃßϽßË¹ßÆ°á¿ªá½¨á¿ªä½¥ä¹¡ä©‰ä“dæ‰Nç‰Mè‹PèŒSèŒOéŽOêšeè—dèXçTçŒOæˆLèˆJéˆJé‡Hè‡HéˆHè‡Gè‡Gè‡Hè‡Fè‡Fç†Dæ„Aæ„Bç…Bç…Då…Dç„Bç„Cç„CåƒCæƒBæAç?ç>æ‚@æAç>æ€>æ€>å€?å?æ>æ@æ?ç‚>é‚?ÞAß|?½tJÌxFÐ{J¢hM”hR|WEtUA_RH,88&:;RM>dK0nQ;{Q1¹r>w^MíŒLìŒJì‹Lì‹Lì‹KëŠKì‹Kì‹KìŠLì‹Kë‹KìŒJì‹KëŠKì‹Jë‹JëŠJë‹KëŠJê‰Ië‹Iì‹Kì‹JëŠKì‹Kí‹Nì‹Jê‹LêŠKëŠJì‹Lì‹Lë‹KëŠMêŠOë‰OêŠMì‹LêŠLé‰Lì‰Lê‰MêŠLêŒMéSé–`éŸpé¦}ë¥xê£të¤uëŸkê lè£v诊簋ãÁ¥à̺äØÊåÙÒäØÍçÞÔíåâóîìõóóöôôõóóõóóôîíñìéðìèïêçðìçñìéðìèðëçîèåîæäìæãëäâêäàëåàêãÞêâÛéà׿ÛÓã×ÌáÓÅáÑ¿ßͼßıῩáÁ«â½§ã±—䥀ä]æŠPçŠPéTé–]ëfí¨vë£vè£wç™hæ‘\èTçRæ‰Mé‡Jé‡HèˆGé‡Hè‡Gç‡Hè‡Hè‡Fè†Eç†Dç…Eç„Dæ„Dæ„Då„Dæ„CçƒCçƒBå‚Bç‚Cæ‚=ç?æ@æ@æ@æ€?å€=å€@å€=ç€>å€>æ€?æ€=ç‚?è‚@ÝDÝ~DËxFÌzKÂpEbLNHLXB6Z8fT@VPA]L9±j;ˆdFV@*ÊzCú¢g|iYí‹KíŒKìŠKì‹Jë‹JëŠKì‹Lí‹LëŒKì‹Jì‹Jì‹KëŠJìŠJë‹LëŠLì‹Jì‹Jì‹Kë‹LêŠHêŠJë‹Lì‹KëŠKëŠKë‹HêŠKì‹LëŠNëŠIëŠLêŠNê‰KêŠLëŒPë‹MêŠKé‹MêQêRêŒOë‹LêSé‘Uëžjë¦yꯉ賒è´ç©é§zè©æ¥{ä´–ãŪßʹàÐÀæÚÐäÙÑåÚÑçß×íèãôïíõóóöôôöôôöôôõðñóïìðëèïêçðëéðëèñìêðìéðëèîéåîçäìæãëäáêæàìäàêâÛèáØçÞÕçÛÑåÙÎãÖÉáÓÄà˺àÉµáÆ±áÀªã±•å¤|æ“^èVçŽWæZè¡r诌緙çºç²’æ¢xæ–bè˜eæ“^èVèŒOèˆGé†Hç‡IèˆGç‡Gè†Hé‡Fè‡Eæ…Dç…Dæ„Cæ…Fæ„Dç„Dæ‚Båƒ@æƒ?æ‚Bæ@åAä@æ?å>å€>å€>å€>æ?æ?å€<æ=ç<ç?æ€>ç‚AâB×|FÎ|HÂqCÀxLnUJx_PpS@–`;Î|EÃwGÒFÃ~VUH>T3jN9›mHEJGì‹LìŠKì‹LìŒJìŒLíŒKìŒKë‹IìŠKëŠJë‹Ië‹KëŠKëŠJëŠKë‹JêŠJêŠIë‰KëŠJë‹JëŠKìŠKë‹IëŠJëŠIê‰Kê‰Jë‰Më‰Kê‰JëŠLê‰Lê‰KëŠMèŽRêUìUì—_ìžiê—_èPêPé“[é—aç t䦀ä¬ä´šâ¾§å¹šæµ“糎贎㿤ãÒÂàоä×ÈéàÖèß×çßÖëãÛïëæôïïöôôöôôõóóöôôôñññííïêæíèæïëçðìêñíêòíêðëèïêçïèåîçäìçãëåáìåáìäÞéãÙèáØçÞÕçÛÓåÙÏãÖËâÔÆàѾàÌ»áÆ³äµ™æ¨çškè™bæ‘\æUæœlæ­‹å¾¢âî交歌é pè¡uæ”aé’\é”_ê’Vé•XèUç‰Mè†Gè†Fè‡Eæ…Eç…Fæ…Eç‡EèˆIæ†GåƒCæƒBæƒCå‚Bä‚Aå‚Aç‚?ç‚=æ>æ€?è€?æ€;æ>æ€<ç€?ç<ç€>æ€=ç€=æ?ç@èƒBÒzCÊu@ÄsD‘bM‚\FjQ?µpBÝ~BðOóŽOÈ‚YeTHxS2…bCcE/‘iF;F@ì‹LêŠLí‹LíŒLìŒLìŒLì‹KìŠLë‹JìŠKë‹JëŠJëŠJìŠKê‰JëŠJëŠKëŠJêŠJëŠJëŠJë‰JëŠKëŠKëŠKëŠJêŠKê‰Iê‰KëŠJê‰Jê‰Kë‰JëŠJé‹Mè‹NçŒRè“^èŸpé¤vé˜cé‘Wé”Yè–`æ“]å—fæ¡w笅洔ãÀ¨ä¼¢ã¾¤á½¨à½¦àɸäÙÍåÙÍçÞÔêãÜèáÝêâÛìæàïëçòííõòòöôôõóóôóóôðïòìêîèäëäáîèåïêçòíêòíêñíéðëèðéæïèåïèåíæãëåâëåàëäàêâÜéáÙèßÖçÜÓæÚÑåØÏãÕÈáÒÂà˺ãÀ©ä´™ä£|ç¡ræ˜fæ“[æ¤yå®âº£à¿¬â· å·›è³‘è´”ç¤yçlç™iè qé©~é¡séYç‹Mç‡Hè‡Gæ†Fç†Eç„Dç‡JæŠTå…GçƒBæ‚Bå‚Aæ‚Aä‚Bä‚Aæ‚?æ=æ€?æ€>å€>ç€=æ?å€>ç€=ç<å€<ç>ç€=ç@ç‚BæƒAÃqDÙz>¶nF£dC¡gD°i6Ý…Oä…Jì‰KðŒOÂ~U“gEnR9_P@+)8;/>LEí‹MìŒKì‹Mì‹Lì‹Kì‹Lí‹KìŠMë‹JëŠJëŠJëŠJëŠJë‹KëŠJëŠKë‰Kê‰LëŠNê‰NëŠJëŠJëŠKê‰Kê‰Jê‰Jê‰Jê‰Jê‰Kê‰Kê‰Iê‰JëŠLé‹MçRè‹Nè‹Lê‘Yèšié¢uê pé—cè“\ç‘XèWè—bèªå¹ä¿§âįâÃ®â¾¥â¶œâ²˜áÆ³âÖÌåÚÒçÞÙêáÞéàÜëäàíçãïéæðëéóïïõóóõóóöôôõóñôðîñìèíæâíçäîêçïëèñìéòíêñìéñìéïëèðéæîèåíèäìæâéæáëåàìãÞèáØèà×çÞÕçÛÓäØÍâÕÊáÑÂàİ䵛ã¥äžtåpè¦v篋䩆㸟Ấ䶜㿧ãÀªâÀ«å¹ç«„è¤wé¦y讉鴔ê©ç˜gæ‹Oç‡Jå†Iç…Dæ„Eç‡Hä‡Må„Dæ‚CæƒCå‚Bå@æ‚?ä?å€@æ€=æ€?æ€?æ€?æ€@ç€?ç€>æ€>æ€<å?ç>æ?æ€>è>Ø{@ÓxAÎwC¬jF©eAËwAÕ~KÛ‚Nè„Hì†Gí‰MyZGTH;lN1oQ7>B31F='GFì‹Kí‹Lë‹KìŠKìŠKìŠKëŠKë‰Jì‹KëŠLë‰Lë‰Lë‰JëŠJëŠJëŠJìŠKêŠLë‰KêŠMëŠJêŠLêŠKë‰JêŠIé‰Ié‰Lë‰Lê‰MêŠLé‰KëŠIê‹LéŒMèŒOéŽSè‹NçYè™hè ué£vç˜eçŽUèWéœgé§z紕丟áÄ°áÆ²áÇ´áÆ°ã»Ÿâ¾£áνãÕËåÙÑæÜÖåÛØçßÙëäàíæâîçäíçäñìêóïðõóóöõô÷õõöóôôðïóíéñìéïêçïèåðêçñíêòíêòíêòíêñëèðêçïèåîçäìåâëåáìåàìãÝéâÙéà×çÞÕçÚÑä×ÎâÔÇàɷ߸¢â¡{è¤w絎äÅ©åȯ澢⾤àÄ®âÅ­àɵß˹áË·áÆ²â¾¦åºæ¸šåµ—潤綜é¨~èšhæ‰Næ„Få„Cå…Eæ‡Iå…Hæ…EäƒDæ‚Aæ@å?æ€@å€?æ€>å@æ>å=æ?å€@ç€=è€<æ;æ=æ>å=ç=ç€>è€<Ù{@Ô~JÐvB©iFÊtBÕ{G×~Iç‚FëƒDÞF­i?–[2Ás<Ô€J“cFgQ@'73'B@ìŠJìŠLì‹KëŠJë‹Jë‹JêŠMë‰KëŠKë‰Jì‰Kê‰KêŠIêŠJë‰JëŠHëŠJêŠJëŠKêŠKëŠJéŠKêŠJëŠIêŠJê‰Lê‰Iê‰Jê‰Mé‹NèŠLéŒLê‹NéOèQçRé‰MéˆMæ[æšlæœpè•béTè’Zç£|籑⪌㵛âÃ°ßÆ´ßͼàÊµáÆ°á͸ßÐÂâÕËãÖÏâÖÑàÒÊæÛÔëãàëäáìåâìåáîéæòìíôïðöóó÷õõ÷õõöôôõòòôññôðìòíêòíéóîëôïìôïëóîìòíêòìéïêçîéæïèåìåâìæáëåáëãßéâÚéà׿ÝÔæÙÐãÕÊßξݱ™å§~ãÀ¥àȵÞÉ»ßÎÂáÒÆáпáпâÓÃàÐÀãÓÅâÖÉâÑÃáÉ´âȲâÄ®äĪãŰᷢ᥈à˜säŠRæ…Gç‰HèˆGèQéŒQæˆJæ‚Bå‚?å@å?æ€@æ?æ€?æ=æ=ç>è€<å<è€=ç=ç>æ=å?å>æ;ç?è€>á~BÏxGÏ{I¸nHÖx>×{Eã€@ãDç€BÙy?Ý|>ç„Cì‰L·wRsR6{O.cQ6%>@ëŠJì‹KêŠIë‰JêŠIêŠJê‰Kë‰Kê‰Ië‰Jê‰HêŠIêŠIé‰IêŠIë‰Jê‰MêŠKê‰LëŠJëŠKëŠKê‰Kê‰Lë‰Lê‰Jé‰JéŠJç‰Mê‰KéŠKè‹PçŠOë‰Lé‰Lè‰Nè‰MèˆIæŠOå‘\æ•cè›jë£të¡qå£z⤃æ™k媋⸢âÀ®áϾáÐÀÝÊ»ÞÌ¿ÝǸÞÎÂÝÌÁÜÉ¿ßÐÁäÙÒéàÜéáÝëãàëæâîçåðëéòììóðñõóó÷õõøööøöööôôõóóõóðöñðõðïôïðõïïõðîóîëóîëòíêðìèñêçîèåíæãìåâëåàìãßéáÛçÝÖæÙÑâÕËàÑÄⷞ㧃߷¤ßıßǶßÉ·ÝÌ¿ßÑÆâ×ÌáÓÉàÐÂáÓÇã×ÌåÙÎãÕÈàÏÂß˼ßɹཬÝ~áŒZåˆMå‡Læ†JåWæVä”gã_ã†QãƒDä‚@æ€>å?ä€=å>æ?æ€@å?å?æ>å?å~?ä=æ~>ç~<ç}=æ;æ;æ<è€=æ€?Ý}DÕzBÃtCß|@Ý{?ç<äBèAé€Dê‚Dë…Gê‡KÎPœ^6ªlCƒeS,>BëŠLëŠIë‰KëŠKê‰IëŠIë‰Lê‰Jë‰Jê‰Hê‰Ié‰Iê‰JéŠIê‰Iê‰Iê‰Iê‰HéŠIêˆJê‰Iê‰JêŠJêŠIê‰HéˆJèˆJê‰Iè‰Lé‰HéˆIè‡Ké‰Jé‰Kç‰Kè‰Kè‰Iè‰MæŠNçŽVæ‘Yã^ä yç¨}è¢yä˜fèŸrç®ã¹¢à¯ßÊ»ßɹ޹¦ß¾¬ßÁ­ÞÇ·ÞǶ߾§Þ̽ãÖÍåÛÕæÝØêãÞëäàìæâíèæðëéóïïõóó÷õõø÷÷øööøöö÷õõöôôõòóõòòõòóõòñõðñõðîôïìóîëòíêñìèïêçîçäíæãëäáìäàëâÞçÝÖäÙÐÝÌ¿Üǹ߸¤ä©„⶘߯ÜŵßͽßÏÁáÐÃâÖÍâÕÍâÔÉãÕÉçÛÑéÝÕãÖÏÜÁ¶Ü»«Þ½®ß¯šå™mç’[æWæŠLé‘Wè–dä‹YæVåŒXã„Jä@å€@ä€?æ€>æ=å€?æ>å?å>ä?ä~>æ~>å=å<å=ä~>æ€<æ}=æ~=æ~=ç~<æ~=à~CØzAÅvIâ}Aß|@å~@è}=ç~@é€BêCì…EÊ{LžgI„\CuW>KND$42êŠKêŠJëŠJê‰JêŠIêŠJêŠJëŠIêŠHé‰Iê‰IêˆJéˆIê‰Ié‰Hé‰HéˆIê‰JêŠHêˆKéˆKé‰JèŠLê‰Jé‰Iè‡KéˆIê‰IéˆJé‰HéˆIêˆKé‰Lé‰Jç‰Kê‰Jç‰Kæ‹OçŽSæSçRæUçn窅覀æ–bä£~â«à¬“à¶¡àó࿭⻢⽥àÁ«àįßȶྨÞǶãÖÌãÖÎáÔÌèßÚëäàëäàíåäðëéôïïõóó÷õõø÷÷ø÷÷øööøööøöööôôöôôöôôõóóôòòôññõðîóîìóîëóîëñìèîéæîçäìåâìæáêáÝçÝÕèÞÕäÕÇÞ¿¬à®”㱓ὥ๤ßÀ«àξâÒÆâÔÊâÕÍáÔÍâÕÍåÚÏçÝÖèßÛâÖÑß½ªâ¨ˆã²šãªåœlèžnçžmç”`ç•`å˜jåXæ“`âŠWãAæ€?å€?å€>å>å@æ€?æ@å?æ?æ@æ>å~?å~>ç;æ=å<æ<æ}<å~=å~<æ~;ç~:æ~<ä{=Þ{?å~?å};å~<ç}=è~=ç~>Û{?¯mDL@ä€>å€>å?ä@å~>å?å>ç>å?ç>å=æ>æ~=å~=æ~<å~<å~;å~;æ};æ};è}:ç}:ç}:ç}:æ}:ç}9ç|:ç}<è~<â|?a>yI*¨f6}S6T,¿sDu_LLPFêŠHé‰IêŠJêŠIê‰IéˆKé‰IêˆIè‰Jé‰Ié‰Jè‡Kè‰GéˆIéˆIê‰HéˆHè‡IéˆJéˆKèTëšbì›gèXé—cç—eç’]èŽTèŽTèŠKé‰KêˆJé‰Kè‰LéˆLç‰Læ‰NæWæŽWè›më k믇漠尒åžråŒVå‰Pä‡Lä‰OäŠRâ[â›rः⶞ßıàʹáÑÇåÚÌèÝÏæÛÐæÜÒãÕÊçÞÔíæâîçäîçæòíëôïîôòò÷õõøööø÷÷ùøøù÷÷÷õõ÷õõ÷õõöôôøöö÷õõöôôõòòõðîôïìóîëñìéñëêñêçðéæïèåîçâëáÝçÞÕçÞ×åÙÏáоàÑÁßξßʶß˹áÒÇâÕÍáÔËàÑÈÝÌÂÛļٴªÝ³¢Üƾܼ±á¶ â±˜ã®‘䲗泓峖ä¬è¤{è¤zâ–kâ‹[â‚Hã‚Cã‚CäƒCã=ä~;æ>å~?æ>ç?ä=å>å~?å~>ä>å~>æ~>æ<å=å~;å~=æ};æ}<ç};è}:æ|:è|;ç}9ç|:è{;è{:è}9âz;Ïo7¼j9Ñt8¶i<¦h@©a2ÁwL–hMpU@ê‰IêˆIé‰GêˆIé‰IêŠJèˆKé‰Jé‡Ié‰Iè‰Jè‰HéˆHé‰Hé‡HèˆHéˆGêˆIéˆGè‡KåUå˜kêœlê“]å’_æ“]æZç“\ç’\é”[ç‹Oç‰Kç‰LèˆMçˆJéˆJæˆJäˆNå‹Sé¢vé²å»£åº¥ç±‘è¡tæWå‡LåˆMæ‹RåˆOæ‰Nä“_æ£w㲗࿬ß̼ä×ËéÞÔíæÞëáÙçÜÔéÞÔëãÛîçäïêçðêæóîìôîîóññõóóöôô÷öö÷÷÷ø÷÷ù÷÷øöö÷õõ÷õõøööø÷÷øöööôôöóôõððóîëóîêïêèïêçðëèðëèñêæëäáèÝØæÝÕä×ÑàÒÊàÓÇßÏ¿ÞÌ»àͽáÓÅåÙÏáÔÉáÓÉÚ¹¬Ø˜|ÜhàžyÞ³žá°–Ⳙâ«ä³”帞仢Იߣ‚⥃àžyàŒ\áDãƒCçŒPæŽTâ…KäAå~=å}>å~=æ~=å<æ~>ä=å~=æ~>æ~>æ~=æ}<æ~;æ}=ç~:æ|<æ|;è}<ç};æ|;å{<ç|9æ{9ç{9ç|9æ{:æ}:ç|:å}:â|=Ço<ä~?Ñ|HlTAFH;£lGÇ~Mé‰Hê‰IèˆMèˆKê‰IéˆKéˆIê‰Iè‡Ié‰GéˆHçˆHè‰IçˆKç‰GéˆHê‡Hè†GèˆIç‡KæˆMå‘^é¥|ç—dæ‹PåXç–cæ“_ç“]êšgèUæŠNå‰LèˆIç‡KæˆHåˆLæŠMç“\槄䵞㰖氕æ­ã—kæŒTæ‹Oæ‰NåŠQæŒSæ‹Sæ“_ä«‡å±‘à¾¦ÞÆ¶âÖÎéãÞîêæïéäîçàìæáíæãðëèñìéðëéòíìóîîõïðôòòóòñöôôøõõöôôöôôöôôøöö÷õõ÷õõ÷÷÷øööøöööôôôïðñììïêéîéåïèæîéèïêéïêéëãâãÙÑäØÑãÖÏáÓÇÞÏ¿ÞͽÞ˼âÖÉæÚÐæÜÕã×ÍÞÍÅÚ§“ß‹[äŠRä“_ã¤ã±–㯕䰓㶛⼣ãÀ«á³™á•há“cã˜kâˆQâFãƒFä•dâ’gä‹Qâ…IäAä€@æ>æ~=æ~=å>å~?ä~?æ>å~=æ}<æ}=å~=ç|<æ|<æ};æ|;å|<å|;ç|:è{8æ{9çz9ç{7çz7ç|7å{;ç{9æ|;ç}<é€@èDä‚HÐ|IœtY^TK’eNè‰Iè‰Jé‰Ié‰GéˆIéˆIè‡IéˆIèˆKè‡IèˆIéˆHèˆHç‰JéˆHç‡IèˆHèˆHé†JèˆHè‰Jæ‹Rã“hæYç‹NæVå“aç”^æ“`äšnè›gçWçŒRç‡MèˆIæ‡IæˆLçUç—cäuâ£䤿°’竈å”`å‰OåŒTæTæRå‹TæZèœl嫇䳖ᾩàÇ´áÔÉæÝÙìæåïêçðêèñëèðéæñìéóîìòíêóííôïïõîïôðñóòòóññôòòôòòôòòôòòõóóõóóöôôø÷÷÷øøøöööóôóîïðêêîæãëäáëäâêâàèàÞéãáèáÝçÞÕæÛÓæÙÒæÙÐäÖÆãÔÄâÒÂåÚÎéáÙçÝÙßÒÌܽ²Þ•oá‡Qá‹Tã’`ã¡xᩈ㳖⿤ãĪã˶àɷ⹢楀æžpãŸvã”cæŽWæŽUå—géœkæ›lã‹Uã†Kâ…Jä?å~=æ~=ä~>æ>æ~?ä=è~=ç~>æ}=å}>å|<ç|<å|;æ|;å|;å|;å|<åz;ç{:æz9æ{:æz9æ{9å{:æ|9ç|9ç}:æ~>ä~BÙ|EÈ{N¦mOOG=];èˆIéˆKèˆGêˆIéˆHèˆIé‰Ié‡Iè‡HèˆIèˆIéˆJçˆHçˆIéˆHé‡KèˆIè‡Gè†HèˆIæŒTçWç‹SæVçŽUåŒWå\å•bæXä˜hè¡vé›jè“]åŠPæ‡Jå…JåˆNåWæ™iè¢wäoäŸv䦃嫊æ›jæŽXçSåŒSæYæŒSäTå§å¶—㼡áDZãÒÁã×ÌáÔÌçßÛêäãìççïéêóîíôïíóîíóîíôîîôîðõîïôðñóññôñòôññóññóññôòòôòòóññôòòøõõø÷÷÷öööóóôîïïéçëäáéâßéâßçßÜæÝ×èàÚêáÝêãÞëäÝéàÙèÝÔéßÕéßÖèßÔèà×êâÜæÝØÝȽ߭–á–käYæ•_ç¢r櫄帖ãÅ«áϽãÓÃã×ÉàÌÀỦ⯓ä­á£‚Þ“fã™jæžpæ£y髇殎ã–jâ„Ká€Fã|=æ~=ä~>ä}=å~>æ~>å~<æ}>å~>å~=æ}=æ|<å|;å|=æ{;ä{;å{;æ|:æ{:æz9æz9äz:åz:æz9æ{8ç{9ç|:ç|;å|>æ~?êBÚ|E—cFtV>ªqJçˆIèˆKé‡IçˆJéˆHèˆIçˆHèˆJç‡HçˆJèˆIé‡IæˆJèˆHæ‡Iè‡KèˆHç‡Hç‡JéˆJæŠSçŒSç‹QæŒTç“^æŒTæŽ[å™kéœgä›läŸwçqæ˜gæ‰Qå‡Iå…Jä‡LåŒRæœn窇åŸrç¢w槀槂åžqæ‘\å‘]è”\èšfëžjë¡n櫆⹡߼«ÞɼäÚÐèÝÔçÜÐæÜÕèàÜéáÞëåäñëíóîîôîïôîïôîïõïðõïðôïðôðñôðñôòòôòòóññõóóôòòõóóõóóöôô÷õõ÷õõõóóôîïñëèìåâçßÛãÚÖåÚÖãØÕäÛØåÜÚçàÜêãàêäàéâÚëâÜëâÞëãÞêáÜéàÜåÛÖÞÉ»á«â“dä–gæ¡v岑⺣àįàÍÀãÕËæÚÐã×ÎàÏÂàŲ೙ृݞyá‹Uä”_ç«…æ¯å¯“ᬓߙtß„Qâ~?ã}:ä}<å~=å}=ä}?å~>å~=å~>å}=å|<æ|<æ|;å}<æ|:å{:æ{:æ{9å|8åz9æ{9äz9åz8åy:ç{9æz9èz8è{8è{:ÛyAÚ{@Ý}CäDºpG¦g@¾xKçˆIèˆHè‡KèˆHè‡Hè‡Hè‡HçˆJçˆHèˆGè‡Iæ‡Kè‡HèˆHç‡HçˆHç‡Iæ‡Jæ‡JçˆJæ‡LåˆOæŠNå‹Ræ“cäVä‰Tâ_â•lã“cæ›oæ¡vå–fäŠNåˆKæŒRæ‹Pè–aè¦}樅åžsäŸtã¢z婆ånå—gä‘\ç©ƒè¯Œæ¶–å»æ¶–䷛㴙ཀྵáÕÍæÝØèâÜçߨæÛÖåÜØéâßïêéóíîôîïôîïôîïóíîôîïõðñõïðôïðõðñóññõóóõóóõóóõóóöôô÷õõõôôöóóöñòôïíðëëîæãäÚ×ÞÑËÞÑÊÝÎÃÜÅ»ÛÄ»âØÓæÞÛçàÝéâßêáÝëâÞêãàéáÝèÞÚæÙÓÞ˾ᵚãŸuã˜h䧃⻢࿩áůßÍ¿áÓËâÕÍâÕÍâÓÈßν༨ᤀä¢wå¢vå¥|屗⭔䳗ॆދ\á?â€?â~?ä|;å}<å}<ä}>å}>å}>å}=å|<å|;æ|;æ|;ä{;æ|9æ{8æ|;æ{9å{:æy8æ{8äy9çz6åz8æ{7çz8èz9æz9ç|9á{@Òu@ºm@ÒyDÇtG¨gAÅvMè‡Jç…LèˆGçˆGçˆGè‡Iç‡JéˆGæ‡Kè‡Jæ‡JèˆHéˆIç‡Gè‡Hæ‡HæˆJèˆJç‡IçˆJç‡Jç†Kç†Jæ†Lã‡QåˆMå‡JäˆMåŠTä’^ç wç téœlé›dè“`å“aæ˜eæ£x檇竄å uå¡uè©ã¡{ãšoâZá‘_⥅䴛㺡âÀ«âŪãÉ´âÁ§á¿©ÞÎÂàÓÍâØÔçÞÙæÜÕèߨíåáîéçòìíóíîòìíôîïóîíòííóíîôîïôïðõðñöóóöôôöôôöôôõóóöôô÷õõöôôôòòóîïïéêíçèçàÝÞÐËÙ·Ú÷ÛÅ¹ÝÆµßÁ¬ÜɾÛÌÅÝÏÊåÚÖçÞÚèßÜçáÞêâÞçÝÙãÚÒÞÍÃß¿«ã®å©„ã´—ß¼§ßÁ¯ßŲß˹àÒÇßÒÉæ×Íã×ÌáÓÇáÆ·ã´˜å­‹à¨Šà£áªŽäµ›ä´Ÿá©‡á—låŠRáƒHâ€Bâ>ã|<ä}=å}=ä|=å|<å|<æ}<å}>æ{;å{<æ{;äz:åz9çz:åz;ã{:èz:å{;ä{:æz8çz8æ{8çy7æz8æ{:å|8åz;æ}<Ûy@ÀpBÈvG¡eF¼tHç‡Iæ‡IèˆHéˆHè‡Hè‡Iè‡Fæ‡GçˆHè‡Hè‡HèˆGè‡Hæ†Hè‡Hç‡Læ‡Iæ‡JçˆIç†Kç‡Jæ‡Jç‡Jç‡Kå†Kå‡KæˆKæ†Hå†Jã‰Qà‘fá”là”iá‘eãXãXáŽ_à“há |â£ç¤|竈殎å¡wã‘_ãˆOâ‹Tã¡z嶜⺣⿩à˹àʺàðáÄ®áϾâÓÇÜ˽ÜÐÉàÕÐåÞÙìåãðéæñìëòííñììòìíòìîòííóíîôîïõððõòòöôôøööõóóõóóôòòõóóöôôõòòñíîïèéëääåÝÛâÚÕàÑÇÞÇ´Þ¼©àÀ©ÝÈ¹ÞÆ¶Þ»ªÞ´ŸÞijßÑÈâÖÑàÕÐãÚÕëäáêâÞàÕÎÜǹÝÀ°à´á±˜àµ¡à½¦ßƳßͽãÖÉåÙÏçÜÐéàÖæÜÓåØÎàÏÂßÁ­â²™á©Œâ£|䭈㿨⻧䰑䥀äœpâ‘^âˆPâƒEäBæˆLãƒGä|;æ|;å}>å|=å|<æ{;å{<ä|:äz9åz:åz:åz:åz:åy;æ{7æ{7äy:çy8çy8åz6à{<Ùx>×t9Út8Üv<ã}?Ál;¼h7´qJ­gAçˆHçˆHç‡IéˆIè‡Iè‡Hè‡Fæ†IçˆIè‡Iè‡Iè‡Gè‡Gç‡Hæ‡Iç†Jæ‡Jå‡JçˆJæ‡JæˆHæ‡Iç‡Hç‡Gæ†Iç‰LçŠLæˆKçŒTå‹Qã†Lä…Jä†Hå†JäŠPä‰På‰Qã‰Sâ‘cá“dàx㤃䫋å uæ’[ãŠQäT樀㺤㼥âÀ«ßʹàͼàȵâνãÖÉåØÍåØÉßξÞÐÅãÙÓêâßîéæóíìòíìòììóííóíîóííòìíóïïõñòöóôøöö÷õõöôôõóóõóóõòòóððóïïðêëìååéâÞäÚÕåÛÔäØÑàÐÂ߯´àÇ´ÝÁ³Û¶¦Þ¹¥à¿ªßÇ·ßÉ¿ßÏÄÞÏÃçÜÓìåáéãßáÖÏÚø٩•ß±˜á· áº¢ßÀ­ÞË»âÕÊæÛÓçßÖéâÚêâÞèàÙçÝÖã×Îà̼áÀ¨â¹œãºžáÀ¨ßÆ´áŲãÀ«å·æ®äŸtä•eâŒWã‹V߆Tá|@ä{;å{;ä|=ä{;å{;åz:äz;ä{9æz:åz8æ{:äz;äz;åz:æz8æz8çz7çy8åz8åz6Þy>Úx>Ùw=Úv=Úw;×w<ÍvAÂsC³nD¹nDé‡IæˆHè‡Hè‡Iç‡Gè‡Hè‡Hç†Jç‡Hè‡Hç‡Gå‡Iå†Jæ‡IçˆHç†Kæ‡IçˆIæˆIç†Iæ‡Iæ‡Kæ†Hä‡Jæ‡Hæ‰Oæ‘Zæ‘ZåŒWåˆNæ†Iæ†Jæ‡Hå†IæˆIå‡JåˆMåˆNãˆPåŒVâ”eává›sãžså™hç–`ê¥s繚⸢ᶡḤàÁ¯ÞƹÝÁ²ßÊ¿àÓÌä×ÏèÝÕåØËãÕÊæÚÒéáÜíèåðëëñìêñëìóííòìíñììñëëòëìóïðöôô÷õõöôôöôôôóóõòòóïðòíîòìíîèéêãáèáÞçÞ×çß×äÙÔàÓÈâÔÆáÑÄܺ¬ÝœyÜ|Ü£‡Ý®˜Þ»§ßÈ·àÐÂèßÙêãàçàÞÜÊÄÞ°œá«‡á¸ßÂ¯ÞÆ´ÝǵàÏÀãØÎæÜÖçÞÙêáÞêâÞêáÞèßÛåÛÔäÖÊáÓÃà˺ßıÞÄ´ÞôßȶßŴᾪ乣孎å¦â—láŽ]âƒHã„Gä~>ã|<å|;ä{;åz<åz;åz:åz:åy9äy8åz9ãz:å{7åz;æz9åz9çy7æz7æy7äz8äz:åz;å{;âz;Ùz=ÍtB¾pC·oBÔ|DÃuFç†Hæ‡Jç‡Hç‡Iç‡Hè‡Hç‡Hæ‡Jç‡Gç‡Gç‡Hå†Hç†Gæ‡HåˆHæ‡Iæ‡Iæ‡JæˆHæ†Jå‡Iå‡Iå‡Jä†Læ‡IåˆKäŠSäŠRæ‡Kæ‡Iæ…Jæ‡Jæ†Jå‡JåˆMæ‰PæUåŠPä‡Nä[ã’bä\å–eåšlæ›kæ¢wå¶ãŲ彤㨈⬒ᱚݮ™à°™Þ¶¥Ý½®ãÓËéàØéßÕèÛÑçÛÕèáÝìåâïççïêêðêëðêëðêëñìêðëéñìêòìíóïðõñòòîïïìíðëìðëìîéêìçèìæçéäâèáÞèàÜèßÚéàÜæÛÔãÖÍàÓÌÜÉÂß±œå¥{ã wà›rᨇṡßǵÜË¿â×ÒåÛ×á×ÓÝ´༥àÅ®ÞɵßͽàÏÂÝͼáÔÊäÙÐåÛÖçÞÚéàÜëáÞêáÝèàÜçÝÙæÜÓä×ÏáÓÆÞ˽Þij߾ªÞ°àĵྫ෥௚ৌâžxà”iá‡Rá†OâFä{:ä{;åz<ä{;åz9äy9æz:åz8åy8åz8æz:å{8äz8äz7åz9äy9äy8åy8æz8åz7æz9ç{9ç|9Ø~FÓyDÄqAÎzGÀqBÐzFç‡Jæ†Jè‡HçˆHç‡Iè†Hæ‡Iç†Gç†Iæ†Iæ‡Jå†Iæ‡Hä‡Jæ‡Kç†Jæ‡Iç‡Jç‡Jæ†Jå†Iæ‡Hå†Kæ‡Iå†Læ‡Hç‡Jæ†Iæ‡Iç†Kæ†Iæ‡Iä†Jå‡Lã‰PæŽWè•`çŽSæ‹RãŽXäYè™fä™mäšnç§€ç¦}ᡀⳟⷤ毋竇㦂ä£|宎㹞áÁ«àÏÅèßÙèàÛæÝÖãÖÑæÜØçàÝìäãëåæìåäìææíçèìçæíçèðêëðêëêäææáâäÝÞçàßêäâéããèáßçÞÛæßÝäÞÜåÜÙèßÛçÞÚéàÜçߨãØÑÝËÄß¶¤ß©Þ¨ŒÛ›yášnআ߳ݾ®ÝóÝÍÂáÓÌáÔÌßͼà̹ã×Èã×ÈáÔÊàÒÇàÒÆáÕËá×ÏäÛÓçÞÙêáÝêáÝèßÛéàÜèßÛèÞ×ä×ÑáÔÊÝÎÁÝɸßijßóàijßÀ±á³á§†Ü”pÜhߊ_ã‰Wà…Qâ‚Jã}=ä{9äz;å{9æ{8æz9ä{8åz9å{8å{8äz9äz8äz:äy8äy7äy9åy7äz8äy8äy9æy;ç|<è|>ÕxBÀrG»oD¬jE¥lL”bKè†Kè†Gç‡Iç†Iç‡Få‡Hå†Hç‡Gæ‡Gç‡Hæ†Gè†Hç†Jå‡IæˆHåˆHæ‡Hå‡JäˆKä†Iå†Iæ†Hå‡Jã‡Kå‡Gå‡Iä‡Iç‡Jä†Kå‡Iç†Iå†HçˆKåˆMæTä\ä–hèmêjä“`åläžuçžnâ–eà—pãž}à’gÚ•sÞ˜yÝœ{ࣂޙs⧅ߥˆÙ ‡Ü¯›àËÁåÜÕèÝÙäÚÔâÕÌâÖÐçÞÚéáÜéáÜæÞÛåÞÛåßÝçàÝèßàçßàæßàâØÕؼ³ÚƾÛÎÈÝÑÐßÔÔãØÕäÚÓáÕÑàÕÐá×Ñâ×ÓåÚÖäÚÖáÕÒÜÌÆÝĸᴜ⩈àœuärä¥⥃ⴙß­ßÌ»àÐÀáÒÇâ×ÏäÚÒåÚÏæÝ×åÛÔãÙÑáÕËàÓÊßÒÊáÕÍåÚÒæÝØéàÜêáÞëâÞêâÞëâÞçÞÛäÛÔâÖÎÝÏÆÞ̾ÝʺÝÇ¸ÞÆµß¼­â¸£à±›Þ“k߈VáˆSß…Rã‡RãŒXâ…Iã@ãz;åz;åz9æ{9äy:ä{9äz8åz8åz9çy9åz9ãy:äz6äz8åy7æy7äz9åy8Ýz>ËsBÃqB½nC•`FÇrBÍxG¬mJ¢bAæ‡Kç‡Kè†Iç†Gç†Hç‡Iç†Hè†Hä‡Gå‡Hæ†Hå‡Jå‡Hæ‡HåˆGæ‡Hæ†Iå‡Hå‡Kå‡Iæ‡Jä‡Iä†Jå‡Kå‡Jå‡Jæ‡Iæ†Iç‡Hæ‡Iä‡Kæ…Iæ‹SåTæ“`ç•aæ–båŸræ¢zæ™jåŸsã˜lâ›pã’]äZâ‹Yã‡Oä†Kã‡Qâ‡Pà‰Vá‹Zâšsâ™oá“cᦄÞõÝÍÇãØÓáÖÐàÓÉàÒÈåÛÖéàÜçÝÙäØÔäÙÔã×ÒÞÑÍÛÍÆßÑËÝÎÈÞÑÊß®ÜÁ®ÜºªÙ©™Ú¸©ÚÆ»ÛÌÇÚùÛŸÛÊÀÛËÅÜÉÃÚÄºÛÆ¹ÞĵÞñᷢߨŠßšnàŸxߢ€áª‹á¸ ÝÆ·ÞÍÀßÑÈßÒÉâ×ÎæÜ×æÞØåÝÙåÛÖäÚÓã×ÏÞÑÈÜÌÄÞÑÈàÕÍãÚÓåÜØèßÜêáßèâßçáÞèàÜçÝ×ãØÒàÔÉáÓÇàÑÆßʾÝÅ·ß¼®âµ¢ßª’ß“kà‰UàŠZÞ€Jà…Là‹\ã_Þ„Päy9ãz:ãz:åy:æz9æy6åy7æz8åy9åy:æy9äy8åz9åy8æx8çy9äz7äy8Ûw?ËtDÉq?»k?¬gE¯d<³g=°kC¹oFæ‡Jç‡Gè‡Hæ†Hæ†Iç‡Gä†Iæ†Iæ†Iæ†Hå‡Hæ‡Gå‡Hå‡JæˆGå‡Gã†Iä‡JåˆJåˆJåˆIã‡Jå‡Jå‡Kä†Kæ‡Jæ‡Jä†Hä†Iç‡Jå†Iã†IäYåZæ–hé§}몂言稀é¦zæžqâ‘bá‹Wâ‰Sâ‰SåŠQåŠQä‡MäˆKåˆLä‡Kä†Ná‰VáZá^à¡|Þ¸¦Þ¸¦ßÎÅáÔÊáÔÊäÖÌäÚÒçÜ×äØÓáÕÍàÔÌÛÍÇÛÉÀÝɼÝÎÅßÒÈáÑÆÞŲÜÀ®Ý±›ß¡Þ·ŸÜÁ²Ü²àÈ´àνÝʼݽ¬Ýº§ßÀ¬ßÈ·Þóݷ¦Û¨Üzá“dá¡wá v੉༦ÝŵÞÎÁÞÏÆÝÏÅàÕÌâÙÔåÜ׿ÝÙæÝÙåÛÖãÙÒßÓÊÜÊ¿ÚȽÛÍÄßÓÍâ×ÒäÛÕæÞÛçàÝçàÝèßÛçÞÚæÛ×äÙÑâ×ÏÞÒËÛÆ½Ý¾²ß¾®á¹¤á³›á¡{à^߆Pâ„HáƒHß‚Iá‹\ß~Gây8ãz9åy8äy:æz9åy9åy8åz8åy8äy8æx7ãy9åy9åy8åx8åy8åz7åz9ãy;ËsBÁn>µlFÀm>Õy@Ò{CÑ{F¹oIå‡IèˆEæ†Hå‡Iæ‡Hå†Iå†Hå†Gæ…Gæ†Gæ†Jæ…Iæ†Jæ‡Gå‡Hå‡Iå†Hæ‡Iä‡Jä‡Jä†Iä‡Iä‡Kå‡Lä‡LçˆJå‡Kã†Iä‡Jä‡Jä†Jå…IäˆOäXã˜kãŸzä«ç®æ®Œé±è¢vãŒWä‡Lã‡MãˆMâ‰Qå‰PäˆMäˆMä‰Oã‡Nä‡Nã‰Tä‹UáŠVÞ–m㯖幞ãÏ¿áÒÈÞÐÆä×ÏåØÐäÙÕßÒÍÞÏÊßÐÊÛº­ÛÅ·ÜõÜȺâÔÇçÞÔçÙÊãλഘá¤ß®Þº¦à̹áÔÊÞÐÇÝĵ߬ÞŲàȳÞ̽ݿ°Ü¨àœtã£yâpâ¡zã­á®‘à¶ŸÝÅ´ÝÌÁÞÎÃÛÊÀÝÎÇßÔÌãÚÑäÜØåÜØãÙÕá×ÑßÓËÜË¿ÛÂ´ÛÆºÜÍÆÞÒÊàÖÍåÜÕçÞÛçßÜèßÛæÝÙåÛ×àÕÐÝÐËÜÌÆÛ¿±ß¿­ßô߿­à²žà¦ˆÞ”iáŠUá[â‰Uã‡OâŒVâƒKáz:äy9äx6æx6åy9äy9æx8æz9åy8åy8äy8åz8äx9ãx9æy8åz9ãx9åy8á{>ÉvGÃqBÊsBâ~@Ñ|IÏ}LÉvG®jCç‡Gæ‡Gæ†Iæ†Iæ†Hæ†Få‡Fæ…Iæ†Eå†Hå†Gå†Iå†Iå‡Gä†Hå‡Jå‡JäˆJã‡Iä†Jã†Jä†Iã‡Iã†Jä‡Jå‡Iå‡Iä‡Kä‡Jä†Lä‡Jä†Hã†KãˆQá]ã”hâŸx㦇å¬å²˜ä¤åVåˆNä‡Lä‡Kä‡Lå‰OäˆKå‰NåŠQäˆNä†KâˆQäŠRãˆPá‹Và¨àÀ®ãÓËâÓÈÞȼâÔËâÖÍÞÏÊÛ»±ÝÀ´ÝÎÄà¶žßɺÞǵß̾æÜÓêáÜëâÛçÞÔãͶâÁ£ãʯàʳàÕÇàÒÉÝÌ¿ßʸàϾàϾßÍÀÜźݵ£âª†ã­‰ä³–ã´”å¯â¸Ÿáº¢áº¢ÝÅ´ÝËÀÞÐÄÝÍÀÞÐÁá×ÍâÙÑäÙÕãØÔàÕÏßÔÌÞÑÉÛɽܿ±Ü¾°ÛùÜÌÁàÔËäÛÓæÝØçÞÚçÞÚåÛ×ãØÔÞÒËÜÊÀÜø߿¬ßIJßŶ߼¯à¯šÞ¢‚ß—pá“dß“fáŒ^ã_ä™já‘aâ‚Hâ}<ãz8åx7åx8ãx;äy8äy9äy8ãy8åy7åz8äy7åy7åy9äy9äy9åz;ã{=ØyC¿n@Ö{BÂzP¾vN‹]IQ4zTDä†Jå‡Iå†Hå†Gä…Gå†Iæ†Hæ†Gæ†Jæ‡Iå‡Iå†Jå†Jä‡Iä†Kä‡Iä‡Hä‡Iå‡Jä‡Kä‡Jä†Jæ‡IæˆJæ†Hä†Jã†Iä‡Jå‡Iç†Iã…Lã†Jã†Iå‰Må‹Wã‘aá_Þbß›x㥃ä›oç™hã‡Lã†Kã†LåˆKå‡Kå‹PæVæŽVå‰Oå‰Lã†Nä‰OãˆNã†Mß“jߨ޿´àÐÅßǶßÐÅáÑÊßʽ⺡áË·ÝÍÂàDzÞÍÁÞÏÃÞË¿ãÚÔèàÛêáÝêáÝèßÖæÙÍæØÐâÖËáÕËàÐÄßÐÀàÒÃáÓÆàÔÈÛÀµÝ¹§á´˜á½£áƯàÀ¬ßÀ©áÁ«ßįÞŲ߽§ÝÁ°ÝʼàÐÄâÔÆâ×ÌãÙÑãÚÒâØÑßÕÎÜÐÈÜÎÅÛÌÂÜÆ¹ÜÀ°ßÀ­ÞÀ®ÜÆ·ßÑÆåÛÔæÜØãÚÖãØÔáÖÑßÔÎÝÑÇÜÊ¿ÝÆ·ÞÅ´ÝÄ´Þ²ߴ¢Þ«’Üž{ݘnáœpߘlß’dá“eá›qãžsâ•gâ‹Vâ{=ãx8ãw7åz8äy8äz9åz8åz9äy9âx9ãy9ây9äy8åx8ãz:äy;å{;Õy@ÃzOÄzKÊ|T¯lG¶oEžcA~Q6ä‡Jå‡Hå‡Kå†Iä†Jæ†Hå†Iå…Jã†Hä‡Hä†Hä†Hæ‡Hå†Iå‡Iå†Iå†Jã‡Jä†Kã‡Jä‡Jä†Jä‡Kä‡Kä‡Lã†Jã†Iä‡IåˆHä†Iä…Kã†Iä†LãˆRãŠRã’`äWã‡Pá‰Và—pà“já`ä…Læ…Lä…Mã‡Nå‹Qç’\é˜fæ“_ãŠPäVå‹Rä‹Uã‰Sã„LàƒJßaÞ¨“ÛÁ¶ÞĵÞɾÜÉÀßʼáпâÖÌáÓÆßÐÄÝŶÛÈ»àÎÀåÜÓèÞÙçàÜèáÝèàÚèÞØçÞ×çÝÔåÚÑãÖÊãÖÊäØÏåÙÐßÏÆÜ² Ü§Žß»¦ßÉ·ßÍ¿ßʹàνáÑÁáÒÂàÏ¿à˹ßÇ´ÝʹàÒÅäØÏäÚÓåÜÓãÙÒâ×ÐßÔËÝÐÅÜÌÀÜǺÛôÜÀ°ÝÄ´ÝòÝòÜËÁÝÑÊßÓÏÜÎÊÛÊÁÛÌÄÜÍÅÜÌÃÞÊ½ÝÆ¹Ü´ÞÁ²Þ¿®ß²Ÿß¨‹à¢{á¡xßžvážvàœqß™má›sá¡{ášqã™kã‡Pâ€Bã{<ãx8åz9äz8äy9ãy9ãy:ãy:ãx9ãx9âx9äz:åz7æ{9å{:Þ}BÖzHªnO¯lGÃxK€YF‘Y;¿q>ä‡Iå†Hä‡Kä…Iä†Iä…Hæ†Gå…Iä†Iæ†Gå†Hå†Hå‡Hã‡Hã‡Jä‡Jã†Jä‡Kæ‡Iä†Kä†Kä†Kä‡Jä‡Kä‡Jã†Jã†Jä‡Jå†Iä…Hã†Jä…Kä…Kã‡LäˆNãŒZäŠTâ…Kã…Là†NáŠVã‡Nâ…Mã†Kâ†KâˆOå[ä˜jäœpä‘`ä‰Qâ‡Nã‡MãˆNã‡Mä…IãƒHáG݈]בrÛ¥Þ´£Þ»ªà̽àÑÅàÓÌâÖÏáÕËåÖÇãÖÈâÕËæÝ׿ÜÖäÛÔêáÞêáÝëãÝëäÞêäÝéàÙçÜÕåÛÒæÜÕåÝ×ÝÉÁÛ£ˆà¦‚ß¼¦ÜÇ»ÝʽßÑÂâÕÊã×ÎâÖÍáÕÊàÓÈßÐÃÞ;áÔÉãÚÒåÜÔåÛÓãÙÒâØÏáÕÌßÒÇÜ˾ÜĵÝóÞÄ³ÝÆ¶ÝŵÜôÚÁ¶ÚÀ·Ø»²Ù¸­Ü½¯ÛÄ·ÛÈ»ÛÈ»ÛÆ¸ÛĶݲ߾®ß»ªà³žá«‘ߨˆß§†ß£}ऀà¢~á¡yã£|ã¤}â¢|ã¢|ã™mà‰WàDâz;ãy9âz:ây:åy:âx8ãy8ãx9ãx8ãx8ãy8ãz9ä{9ä|;ÙzAÂoBÄwHÇvK¨fCŸeC¤fB»m@å†Iæ‡Gå…Jæ†Iå†Hä…Iä†Jå†Jä…Iå…Iå†Iä†Hä†Iä†Hä†Iä†Kä†Kã†MäˆJä…Kä‡Iä†Iä†Jä‡Kã†Jã†Iã†Jå†Kä†Kã†Jã†Hã†Jä†Jä‡Mä‰OåŒUæ‘\ä†Iã…Iã†Já†Kâ†Jã…Jä†Jã…KâˆQä“aä–fâaãˆRä‡Lã†Lä†Kã†Kã…Jã…Jâ†Lâ„HãDâƒLÞbÜ™wÚ£‹Û½²ÞÉ¿ÞÆºÝÊÁãØÑèß×çÞØäØÑäÙÖçߨéáÛîçâîèåïèåìæâêäàêáÝèÝÙãÙÓßÑÌÜÊÆÚ±¢à¡{ઌޱœÜ¼¬ÜÅ´ßÎÃàÔËâÕÎãÖÎâÕÍáÕËßÓÉàÒÇâ×ÍäÚÓåÜÔäÛÒâÙÑâ×ÏàÕÌßÒÈÞÍÁÝǸÝijÜÅµÝÆ¶Üĵܿ±Ü¶¦Û®šÝ«–ܨݴŸÝ¿¯ÜóÜŵÜÀ²Ü¿°Ý¾¯Ý»ªß·¤ß±šß«’àªÞ§Šß§…੉ᨉ᪊᫋᪊⧃ã¦á yá”fÞƒMß}?ây:ãy:ãz:äz9ãy9åy8äx8âx8äx8äy9äz;åz<Ýz?ËwFÅvG³qLUD}V@ hI‘cJ›cEä†Iå†Hä…Jå†Iå†Hå…Gä…Iå†Gä„Iä„Jä†Kä…Iå‡Iä†Iä†Kã†Jä†Kä†Lä‡Jä‡Kã†Jã†Iä‡Kä†Lã…Lä†Iä†Iä†Jä†Jâ…Jä†Iã†Kã†Kâ…Jã‡PãŽWä’bä‡Mä…Iä…Jâ…Jã…Jä…Kã…Jã†Jä‰Så“bå–fåŒWäˆMãˆJã†Kä†Kä†Jã‡Kä†Kã…Lâ„Hâ„GãƒKà…N߃MÜ„RÙoÙ¦’Þ¼¬ßŸáÔÌçßÛéàÜåÚÕæÜÕêâÝìåâïêçðëèñëèíæãêãàâÚÖÞÒÎÜÊÅÛ¼±Ü²¡ß¦†ã¬Šá´›á³šß¹£ÞÇ´ßÏÁàÓÈßÒÉáÔÍãØÍã×ÍãÖÍãÖÎãØÏåÚÒåÜÓäÛÒâÙÐáØÏàÕÌÞÑÉßÏÄÜ˽ÜÈ¸ÝÆµÜŵÝó޽­Þµ£ß­•Þ©ß©à³Ýº§Ý¿°ÝÁ°Ý¼¬Ý¹§Ý¹¨Þ¸¦ß´žÞ®˜Þ©ß©àªâ­‘⮔᭓ᮔ᭒áªáª‰ã©…â¤ßšrá[à…Oâ}=ã{<â{<ãz:ãx:åy9ãx:ãy9äy9ãy:äy:äz=ß|CÍ|L»rMzXI]EvXK‹bN|[MaFã‡Hå†Iä†Hå…Iå…Hæ„Iæ…Iå…Gâ…Iã…Iä†Jã…Jã‡Iã‡Iä†Jå†Jä‡Kã‡Jã†Iå‡Kä†Kã†Jå†Iå…Hã†Kä†Jä†Jã‡Iä†Iã†Jä…Kä†Kã†Jâ†Kâ†KäŠXå^ä‹Râ„Jä‡Kã†Iä…Jã†Lâ†Lä†JåˆPä‘aã”eåYä‡MãˆNã‰Nã†Iä†Lã…Kã†Kâ…Hã…Eã‚GäƒIäˆLâƒFàDáƒIߌ\ÚŸ‚Ù­žÚ½·ÜÏÌãÙÖäÙÔèßÚéâßïèåîëçòììðëêìæãà××ÙÁ½Û·ªÜ²¡Üª”ß§‹ã¬â´›ßº¤ßÁªàʶàпáÔÇàÔÊâÖÌä×ÎäÙÑäÛÒãÙÐâÙÐâÙÐäÛÒãÚÑãÚÑáÙÏà×ÎàÔÌàÓËÞÑÆÞÎÂÜ̾ÝÈ¹ÜÆ·Ý³ݼ«ß¸¦ß³ŸÞ¬’ß©‹à³›Ý¶¢Ý¸£ß½«Þ»«Ý¸¦Þ¹¤ßº¤ß¶žà²›ß­•କ᱗ᲚᲚⰘ⮗᭔à¬à©ß§ˆß {Þ—oßeà‡Q߃Hà}@á{=á{;ãy8ãy:âx9äx9äy:äy8ãz:â{=ÖyDÄrCžfJ gLpWOVJFŒaMyYF`Dä†Iä†Jä…Jå…Hå†Iã…Jç†Hæ‡Gå†Gå†Gä†Jæ‡Iæ…Hå…Kã‡Iä†Jã†Jå†Iä…Kä‡Jä‡Kã†Kä†Jä†Jä…Kå‡Iä†Kã…Lã†Kå‡Jâ…Jä†Jä…Jã†HçTé•]ãŒ[ä‹Uä†Hå‡Lã‡Kä†Kä‡Mä‡Nã†LäŠRäŒYâ_âŠTã†Kä‡LåŒWçŽQå‹SäˆMâ…Kâ„HâƒGâ„Gã„Iá‹WäUã†HäWå–eä›oÝ•lØ’s׫›Ù½ßÑËæÜØêãßîéçðêìïéêïèæëåãÝ¿´Ú¡†Ü£†Ú¤‹ÜŸ}ߤ‚ᯖ߶ŸÞ¼¦ÞÇ´àÓÅâÖÌä×ÎåÙÏåÙÑäÚÑæÜÓåÜÓåÜÓåÜÓäÛÓäÚÒãÙÑâÚÑâ×ÏáØÎâÖËàÔÊàÑÈßÐÄÞÎÂÜË¿Üȹܳݼ«Þ¶£Þ¯™ß­’᳘ᶜ෢෠޾ªÞ¿¬ß¼©Þ»ªÞ»©Þ¹¤ß¶Ÿà³›á²šà²œâ³â´á²›â±™ã°˜à¬–á«á¨‡ß¢}ß™pßbàŽ]߆RáCá@â}?à}>äy8âx9âx8âx;ãy9äz;à{?ÚyBÈwH®iC jR‚`MŸmN–eKjRŒbLã†Jã‡Hå‡Gå†Gå†Iä†Iå†Hä†Jå…Hã†Jå†Iä†Iä†Hã‡Iä†Iå†Jã†Iä‡Kä†Kä‡Iã†Kã†Kä†Lä†Lä…Lä‡Mä†Iå†Kä†Jã†Jä†Kã†Jã…Kä…IâaäŸxå’`äXåˆMä†Lä†Lâ‡Nä‹SäˆNã‡KãˆOäŠSá‰SãˆOä‡LæŒRæ•bã•fäŽ[â‰Pã†Jâ„IáƒHãƒFã…IåZã’_äŽXäœmàšqݘqߌ\á…OÜŽcݤ‡ßŸäÛ×éáßëååìæçêååéääá×ØØª™ÞžzàŸvߢ{à xߤ᭒ⳚßÁ«ßͽâÕËäØÏåÚÑäÛÒåÚÓæÛÓåÜÔæÝÔæÝÔåÜÔåÛÓåÜÓãÚÑâÙÑâÙÏáÖÎáÖÌàÔËßÓËàÒÈßÑÅßÎÂÝÉ»ÝÆµÞò߾©à½¦à½¥Þ½§ÞÀ«ÞÀ©ß¾¨ßÀ®ß¯ßÀ®Þ¼ªÞ¼©Þ»¨à¹¢ß¸¡à· à¶Ÿßµžß¶Ÿà¶žà´œâ²šá¯—ᬓ૎ᦃà zÞšoß‘eá]á‰RßHá|Aá}>ã{<ãy:ãy:ãy9ây:äz:àz=ÖxBËwGfKŒfS•fN¤lQ§pP‡^F£mPä†Iã‡Hå†Gä†Iå…Iã…Hå†Hä…Iå†Gã†Hå†Iã…Iã…Jã‡Iâ†Hä†Jã†Iä…Lä†Kä†Jä†Kã†Jä†Lã…Lã†Kã‡Jã†Kä†Kå†Jä†Iã†Jã†Kä…Kä…Kâ…Oá‰ZâˆSã‰Tâ‡Oã†Lã‡Jâ‡Nå‹Vä‰Pâ‡Mã†Lã‡MâˆMãŠQãˆOâŒXâ`ߊXãYâˆNã…HâƒGâ„HáƒEâ†Là_à‰Wâ^ß’gÞ_Þ^à†RáƒLà`⩆ßôÞÐÍá×ÔåÝÜäÜÞßÔÔÛÏÑÕªžÚgÞ›sÞŸyÞ ß¡~Ý ~ß©â¶ßƲàÓÄäØÎåÚÑåÛÒæÝÓäÛÒåÚÔåÜÔæÜÔæÝÔæÜÔæÜÓåÜÓäÛÒãÚÑâÙÐáØÎáÖÍàÕÌàÓËßÔÊáÓÉàÑÅßÏÁÞͽÜÊ»ÞȵÝÈ¶ÝÆ¶ÝIJÞŲÜȶÞÇ´ÝǵÝŶÝIJßÀ­Þ¾ªß¾«ß¼¨ß¼¨Þ»¨ßº¥ß¹£ß·¢à·¡à¶Ÿá³œâ±™á¯—߬‘ৈߡ}Ü™sÞ“hÞŒ_Ý„P߀Hà~?á|<â|>ãz;ãy8ãz8ãz9ãz:à|AÒ{H±oKškQ iJ¶sP²rN®oK kL”bHã†Hä…Iå†Gä†Hã…Iä…Iä…Hä…Hä…Hã†Jã‡Jã†Hã†Hä†Jå†Iä†Jã‡Iä†Jã‡Hä…Jä…Kä†Iã†Kä…Kä†Mã†Iä†Kä†Jã†Kä…Iã…Jä‡Kä†Kã†Lã†Mâ…Kâ†Oâ‡Nâ…Lâ†Nâ‡KãˆNãŠUã‰QãˆMä‡Kâ†Ká‡Mã‰TâˆMâ†Kâ†Jâ„Iã…Jã„Iá„Gâ‚Gá„GãƒFâƒGá„LãŠTã\ãŽYã‘\ã‘_âŠRáˆOà’cÞ£Û¯Û¶ªØ½·ØÂ¿Ù¹³Õ§˜Ö…ÜŒaß^â vÞšqÝ–nÜ’iÜ‘fÝœwảßÌ»âÖÊåÙÑåÜÓåÝÔåÜÕæÜÔåÜÕæÜÖçÝÖçÝÖçÞÕæÝÔæÝÔåÜÓäÚÒäÛÒâÙÏáØÎáÖÎâÖÍàÔÌàÕËàÓÉàÒÈàÒÅÞÐÂßÏÀÜ̽ÜʼÝ˺Ý˺Ü˼Þ˺ÝÊ»ÝɹÝǶÝijÞ±ÞÁ®ÝÀ­ÝÀ¬Þ½­Ý½©Þ»§Þº§à¹¤à¸¤á¶Ÿá´œâ²šà®”ß©‹Þ¡~Û’kߌaÞ‰[Ý€HÞ}Bá{<ãz:ãz:ãz;âz8ãy9â{:âz;à}BÌxH·xT«w[‰`O’lUjR€XF~^M iHâ…Gå„Iã…Hã„Hã„Hã„Hä„Hä…Fä…Iä†Hã†Iã„Jã†Jä†Iä†Jã†Jä‡Jä‡Jã‡Iä…Iã…Jã…Iã†Kä†Lä†Jã…Jã†Kã‡Iä…Mä†Iä†Jä†Jã‡Mã†Lâ…Kã‡Mä…Mã†Lã…Nã†Lã†Kã‡Nã‰PåŠQä‰OäˆMã‡Nâ‡Ká‡Nã‡Mã†Jâ†Jã…JâƒIâ„JâƒGä„Há„Jã†Iã†IåŠQæšgè¢qæ rã¡xà˜lá‘]á’_á›nà xÜŸÛ¡„ÚŸÛ£†Þ¦‹Þ–kÛbÞcß“aã¦Þ›sÞ‘`ß‘_à“`ä£xáªàÒÂä×ÌæÜÓæÝÔæÝÔæÜÖæÝÕæÝÕçÜ×åÝÕèÜØçß׿Þ׿ÝÕæÝÔåÛÔäÛÒãÚÒâÙÐâ×Ïâ×ÎáÖÌßÔÌàÕËàÓËàÒÉàÑÆßÑÅÝοÝοßÏÂÞοÞÎÁÝÌ¿Þ̽ÝË»ÞɹÝÈ·ÜŵÜijÝñÞ²ßÁ®Þ¾«Ý½ªÝ¼©Ýº¨à¹¥à¸¢à¶Ÿâ³á¯—ß«ŽÞ£Þ–nàaߎ_ÞƒKß~@á|>âz<ãz:ã|=â|>ãz<ãz<ãz<â}AÏzHº{Vˆpig[VƒbVŠ^G‹_F¡pT°kBã„Iâ…Hã…Fá…Gã…GäƒHã„HãƒFä†Hã…Hä…Hã†Iâ…Iä†Jã‡Hâ†Jä†Kã†Iä†Kâ†Lä‡Jä†Kä…Lã†Iä†Kä†Jä‡Kã…Jã…Jä†Iã‡Kâ‡Lã†Kã†Kã†Oá‡Kã…Kã…Kã…Mâ‡Kâ‡Lä‡MäŒSäWãˆOâˆMã†Mâ…Jã…Kã…Jâ…Jã„Iá†Jâ…Iá„Fá„Fá…Jã‡OäŠSå’Zä™h䩅粕৆àsâžsäšlãœnã¥㫊à¥~à£zã¦~â¤~Þ¥„à xášlà–iáœn⥀ޛrâ–få¢uåªâ¹›Þ˸àÔÈäÙÐåÜÓçÞÕæÞÔèÝ×çÝ×çÝ׿ÞÖæÞØèÞÚçàØçà×çÞ×åßÕåÜ×åÜÓãÚÒãÚÒäÙÐâÙÏà×ÍàÖÌàÖÌßÔËàÔÊßÒÊßÑÅàÐÄáÐÃßÑÅÞÐÄÞÎÂÝÍÀÝÍ¿Ý̽ÝË»ÜÊºÝÆ·ÜŵÜĵÝÄ´ÜðÝÀ¯Þ¾«Þ½ªÝ¼ªÞº§à¹¥à·Ÿá´žá°šà«Ý¡€ß›tß™pà”hà‹WßEà|;âz<á{;àAà}Bâ{=ä|8äz<à{DÕxE¦pTuaYhU jP–dJ¡iIÉ|LÍ|Kå†Jã†Iã„FäƒGäƒEâƒFãƒGå†Jã…Kã„Iã„Iâ…Iã†Iã†Iã†Jã…Jã…Jä†Jã…Jä…Kã…Iâ…Iä…Kä†Iã…Iã†Iã†Jã…Jã†Jä†Já†Nã…Mâ…Mã†Nâ‡Mã†Mã‡Mâ‡Lã…Kã†Lâ‡Lä‡OäŒXã‹Vã‡Ná†Mà‡Mâ…Má…Lã‡Lå†Mä…Lâ…Jã†Gã„FáƒIâ‡Lâ\ã•fäœpãžsã§…á«à¢ä¢wâ¤|â¡x䨃⯒㱙䱕䮒ⱗⲚ㮑ᩆޤÞžt⧃䮑å§殃䶗⾣àDZàνâÖÌåÛÓæÝÔçÞÖçÞ׿à׿ßÖæß×èàÙéàÜèàÙéàÜéáÜèàÛçߨæÞ×åÜÔåÛÔåÛÔäÛÒãÚÑâÙÏáØÍá×ÍßÖÍàÕÊáÔËßÒÉàÒÈßÒÆßÑÅÞÑÅàÑÅßÏÂÞÎÁÝ;ÛË»ÛʺÞÉ¹ÝÆ¶ÝƵÝÄ´Üóݰݿ®Þ½¬Ý»©Ý»¦ß¹¥à·¡à´à°šà¬“ߤƒßußvߘpßb߇Qà~Bàz<ây;à{=ß|@ã{=ãz;ä{>Ûw?ÖxA¤oT‘iX£mMšhRaAÊyG×KÀuLèXèTå…Eå†JåˆLæŒPçŒRå‹Nä‡Kä‡Kâ…Iã…Jâ…Jâ…Hâ…Hâ„Iâ„Hâ…Iä†Jã†Jã†Iâ…Jâ„Iã…Hâ…Hâ„Iâ…Jã„Lã†Kã…Lâ†Jã†Lâ†Má…Lá†Lä†Mã†Kâ†Lâ†Lã†Nâ‡KäŠRäŠVâˆPâ‡Mâ†Mâ‡Lá…Lá…Jã‰PåŒXåŽVãˆOâ…Jã„Gâ…Hâ‹Sâ“aãšmå¥}ã¤}䧅अ䦂⧄ߞxá¤}㯔㴛â´â¶žã¸¢á¸¡áµžâ²›ã²—᪈áŸx᥂㸞ã§áÅ®àÉ´áмãÖÆåØÊæÛÑçÞÕçߨçà×çàØèàÚèàÙéàÚéàÜêáÝêáÝéãÞêâÞèáÝéàÜçÞÚæÝØåÜÖåÜÖåÛÔäÛÒâÙÏâÙÏá×Ïà×ÎáÖÌâÕÌßÓËßÓÊßÒÉàÒÈàÒÇßÒÆàÐÅßÏÃÝÍÁÜ̽ÜʼÝɺÜǸÜŶÝĵÜòݱݾ¯Ý½ªÞ¼¨Ý¹§ß¹£ß´Ÿà³œâ±šâ¯—á¬â§ƒà¢|ß™pߎ`àŠYàIßz<âz:áz;áz;ãz<äz<â{>ÔwBÃuI¶pI‘gSÆyM¡gJÍx?ØJ°d<¿vKçœméœnê™bë mê¥wê§xêŸmë¢qæRä‰Nã…Iã…Jã…Iä…Hã…Hã…Iâ…Iâ…Iä†Mã†Jã‡Kã†Iã†Iã…Gâ…IâƒJâ„Iâ…Jã…Iã…Kã…Iã…Jâ†Jâ†Kã†Ká†Jã…Jâ†MäˆPäˆNâˆOäŠSâ‰QâˆNã†Ná‡Mã…Ká…Kâ‡Kä‘\æ—eå™jå”_äXåŒSã‰OâŽYã–gà™mã§äª‡ä¨†ã¤|ã­ã¯’â¥~⪇Ⲛá´á´žàº¤ß½ªÞ½©à¼¦á¹¢áµâ´›â°ã²’áÄ®ÞͼßÏ¿àÑÁã×ÊåÚÐçÝÔèà×éàÙéàÛèàÙêáÚëáÞêâÜëâÞëãßëãßìãßéãÞéäßéäßéâÞéàÜçÞÙæÝÙåÝØäÜÔåÜÓäÛÓãÚÑâÙÏâÙÐá×ÎâÖÌÞÔËàÓËàÓÊßÒÉàÒÉàÑÇÞÐÄÝÏÃÞÎÂÜË¿ÛË»ÝɼÜȺÜŶÜÄ´ÜóÞ°ܿ®Þ½«Þ¼¨Þº¦ß¹¢àµŸâ³œâ²šá±™à®•ઊà¤ÞœtÞ’hâ’e߆Ußz;àz9âz9áy8ãy:ã{<âz=ßz>ÉvE½sH¬vW¦kQ°lBÞ~CÓzCÕyA¿tGãœpåsè§é°è±’赘诌殎èjã‹SãˆNã…Iä„Hä†Iä…Iå‡KäˆOã‡Kã†OäˆOåˆOã‡Lã‡Kä‰NäˆMä‡Kã‡Lá…Já„Hâ„Kâ…Kâ…Kâ…Jâ†Lâ…Má†Lâ…LâˆOãŽYäŽVä‰Sâ‰OáˆOá‡Oá†Lâ†Jâ…Kã†Kä‹Råœkä uãtã™lã™lâ•dã’`á[á˜lãšn⩆屔䲕䳔䳘ⴛâ­â¯’ᱛ౛ᵞ߶¡Ý¸¦Ýµ¡Þ¹¦ß»¦áº¡à¼¥ß¿ªàÀ©ÞȶáÐÁâÖÈåØËçÛÒéßÖçá×èáÙêâÜêâÞêáÜêãÞëäßìåàêåàëåáéäßëãàêäßêäàêåàéäßèâÝéàÜçÞÚåÝ×åÞÖåÜ×äÚÓäÚÑâÙÑãÚÐáØÏáÖÍàÖÌßÓÌßÓÊßÓÊÞÒÉàÐÈÞÐÄÝÏÃÝÎÁÝÌ¿ÝʾÛʼÝÈºÜÆ·ÝŵÜñݲÞÀ°Ý½«Ý»§ßº¥à¹£ßµ ß²›á²šá°™ß¬”Þ¨ŠÞžzÜ”lÝ‹`ߌ_߉Yà|?ây9àz;áz:ây9âz;ã{<àz=ØyAÉxJ¬rY¢gJÀvJ×xCÆtDÂrE¸pGâ™lå¡t姄箑泙䲘㪎å¥ä¡wæ‘YäŒSäŠQåŽSåXäˆNä‹Uä[åUäZç“]æŽUãˆOãŠSã^å’]ä•`äŽVåŠNäˆMãˆLá„Iá„Ià…Já…Já…Ká„Mâ…Lã‡OãYå•cäŽYâ‰Tâ‡Oá‡Mà†Ná†Nâ…Mâ†Lå“`ä¥å¤}ã›râžvà˜mâ–gâ•eâŒWߎaâœr㧆㵞⻤ἧ⼣Ḡᴜᵜ᳛கඞಛ߰™ß­•ß®™Ý¹¥ßÀ­ßIJÞıÞÇ´ßϾäÖÉçÛÑçÞÕçà×èáØêâÛíãßíäàêãßìãßëäßêåàëäáìåáíæãíçâëäáèãàéäßëäáëäáéãÞèáÜèßÚæÞ×çÞÚåÝÙåÜÕåÛÔäÛÒâÙÐáØÎà×ÎàÖÌàÕËáÔËáÔÌßÓÉàÐÈÝÐÃÝÏÄÜÌÁÜË¿ÛË»ÛʺÜɹÝÇ¸ÜÆ·ÜòݲßÀ¯Þ¾«Þ¼§ß»¥ß¸¢àµŸà²œà²›à°™Þ«”Ý£„ÝwÞ”hÞ‰\Þ‡TߊV߆Ràz;ßz;âx:ây9ày:ä{<âz=ÛzAÑxDµk@ÌyEÈxJÙx@ÎyF¹qIÄtDä›näžvá wà¡~ã­“æ®ç©…娂æ¦zä˜gä”_å”`åšiæ˜hä‹Tå\ä—gä•eâ—eænå™gä’\áWáŠTâ_æœnä–cæ˜cæ–`åXá…Hâ„Há„Hà„Jâ†Mä‰MâˆLâ†LáŒYâ“fâ]æ‹SâˆOâ†Já‡Mâ‡Lâ‡Nâ‰Oá•iá¡}ä£á™pß–là–iâœpäœmä–câ\ä¤{㫉ⷞཪ߿¬ßÀ­ß¾¨àº£à¹£à¹¢à¸žà»£àº¤àµá³›á³™ß·¡Þ¾ªÞIJÞʸßоãÖÉçÛÒéà×êâÚëãÝíäÝìæáìæáêäßëåàìæáëåàìåáìåâîæãîèåïéæîçäëäáêäßìåâëäáéãßèáÝèàÙèÞÚçÞÙçÞÚæÝÙåÚÖäÚÕäÛÒãÙÐâÙÏáØÎàÖÌßÕËßÕÊßÒÊÞÒÈÞÏÅÜÎÄÝÎÁÜ̾Ý̾ÚÊ»ÛʹÜǸÜŵÜĴܲÝÀ®Þ¾¯Þ¼«Þº§ß·¡ß³Ÿß³Þ±šß®˜ÝªÞ¤‚ÞŸyÞ—oÜŠZÞ†R߈U܇[ß}Dàz>ßz<ßy>áy9áz<ä{>ß{BÍwFËwEËvEØ}FÑyDÑzEÚ~EÊzLæžsäœqâŸsæ¦~䬎展沔民嬈å£xä›lä›nã¡wæžnçkæŸræ¢tæŸrå så¦~å¨ç¦yæjæšgålæ¦~è§zæ¨ç©‚å™iãŠSã‡Lã‰Nä‹Sä’[æ—cçšeæUãXã‘^â‘]æ•cä‘Zâ‡Lâ†Lã†MãˆQá‰SáŒ[á™qßšqà˜nà•iÝ‘dÝ”kÝ™tÝ‘gãžt寒䵘ṡྪàîàñßÁ®ßÀ­ß¿¬ÞÀ­Þ¬ßİàðßÁ«ß¼¦ß¸¢ß¾ªßųàÊ·áÑÃãÕËèÛÒçà×éâÚíäßîæâïçáíæâíçâìçâëæáëæàìæáëæâìåâíæãïèåðëèíçäëäáèäßêãàëäáéäàéâÝèàÙèàÙçÞÙçߨæÝÙäÜ×åÜÕåÛÓäÛÒâÙÐâÙÐàÖÎàÕÌÞÓËÞÒÉßÑÇÝÏÅÜÎÄÝÎÃÝÍÂÜ̾ÜʽÜÉ»ÛȹÜŵÝŵÜòÞÀ¯ß¿¬Þ½ªÞº¨Þ¸£ßµžß³ß±šÞ®—Þ©ŽÞ¢ÜžyÝ™qÞcߊYÜ„OÜ€LÞEÞ{>àz<áz:âx:àz:âz;ãz;ÑxDÐwEÍwGÜ}CÌxH¿pD¾pBŸcFå¡xå¤yå¬ˆæ±“ä³—ä·œä¸Ÿä³•å®æ¬‰æ¨ä£zä£x娃欇嫇䪈㨃䩆㪌å¯å²‘å°æ­ˆç®‰å±’ä®ã«‹ã§ƒášoâ[ä“^ä˜fä™hå¡t樀箈éª|çžlä˜fâ“cá—nábâ‰QâŠQâ‡Oâ‹Vâ‹Uà‰Tá—kà˜kÞ’fß_âŠU߉UÞ…Rã“^䯎㹟⽥ᾪ߯ßÅ´ÞÆ¶ßÆ´ßŴ߯³ÞƵÞÈ·Þʺß̼ßͺßɶßÇ³àÆ³ÞÌ»àÓÅâÕËäØÏçÜÔëâÚìäßîæâíæâïèåðéæïêæîêåîèäíèãìéãíæâîçäîçäïèåîéæíçäëäáêãßéâÞèãÞéâÞéâÝèàÚèàÛèàÚèßÛçÞÚåÞÖæÝ׿ÛÖäÛÒãÙÒâÙÐáØÎßÖÌÞÔÊßÓÉÝÑÈÝÐÆÜÎÅÜÎÂÜÎÁÜ̾ÛʾÛʺÜÈºÝÆ·ÝŵÛðݱ߿¬Þ¼ªßº¨ßº£ß· àµ¢Þ±šÝ¬•ުߦ‡Ü¡{ßžußšpÞ“hÝŠXÜ‚Lß|Cßz=àz<âz;áx:àz;áz;ßz<Üz?ÔyDÙy@Ù|FÓyCÏxCÐzDÀuIâžvâ¤~ã¬ä¶›ä¹ ä¼¤ã»¡ä·œä¶šä¶˜ä°’嬊䫉䱔屖寒ã«âª‰ãª‹âªŽä´šâº¡ã¼£ã¼¡ã»¡å·Ÿå²•嬿ª„ãžpå›kä¢wã£xä¥|å­Œå±’åµæ¹ç¯Šå£wä›lã•câ‰Uá†Qà‰TäTã’aä”`âŽYâ›pãŸtâ”dä•cåžoæžnè n簇⼤áÀªáïàİßűÝǶÝȸÝÈ·ÞɹßɺÞʺÞ̺ßϾáÑÄâÓÆáÒÄáÑÃâÐÃàÑÃáÓÉã×ÏæÜÔéàÖëâÞíäáìæâîçãðéæòìéóíêòíêïêçïéæîéæîçäíæãíæãíæãìåâëäáêãàéäßêäÞèâÝéáÜæáÜèàÛéáÜêáÝèßÛèßÛæÝØåÜ×åÜÖäÛÔãÚÒâÙÐáØÏßÖÌßÕËàÔÊÝÒÇÞÐÅÝÏÅÜÎÂÛÍÀÛͽÜ˼ÜʼÜɺÝÇ·ÞÅ´ÜòܲÞÀ­Þ½ªß»¨à»¤ß¸¢ß·¢à±šÜ«‘Þ©Þ©Þ¨‡ß¥‚ߢ}ÞœuÜŒ_Ý„PÝ}Dßy:ày:ây;ày<ây:ây:àz;àz<ß{>ÛzAÑxBÃpAÊu?ÉxF¸oEäqâ¡x㭎㸞ἤཀྵས⻣㻣⼡㺟㸜䴛㳛㱙㯒᪌ᫎ᭑⯒ã¶á½§àÀ¬àÀ­á¿ªá¿©ä¼¢ä»žå¹œå±Žæ«†äª‰ä®‹åµ•丞㼡伤㿪侤涖å¨~ä¡vâ”aâ‡Pà†Pâ”aæ¤xé§|ç¡pä¤{娂ä¢så¦孌峓ä»â¾§àÁ¬àŲ߯³àǶÞÈ·Þȹß˹ßÊ»ßÊ»Þ˽ÞÍÀÞÎÀàÑÄãÓÆáÔÉáÔÊáÔÉàÓÉâÕËä×ÍåÚÑçÞÕéáÙìãßìæáîçäïèåðëçóïëóíìñíëïéçîçäìåâìåâëäáëäáìåâêãßéâßêäßéäßéãÞèãÞêáÝéàÜéàÜêáÜéàÜèßÙèßÛåÜØãÛÔäÚÕãÙÓãÚÒãÚÑáØÏà×ÌßÕËßÕËÞÒÉÞÐÇÞÏÆÝÎÃÜÎÁÜÍÀÛ̽ÝÉ»ÜɹÝÇ¸ÝÆ·ÝijÛðÝÁ°Þ¾«Þ¼©à»§à¹£á¸¢à´ß¯–߬’ଓ଒߫ਇޟyÜdÞˆXÜ‚MÞy=ßy:âx:ßx;àz<àz;Þy=Þy>áz=ày>ÕwAÅtD»qFÆvGÕ{D櫆毌⸞ᾧàÁ«ßÁ¬ß¾ªÞ¼¦ß¾©ßÀ«à¿ªà½¥ãµâ°—ä´ã²™ã¬ã®‘㰔ⵜỤ࿪àÁ°à¯á¯áİáįáîâí㾧䷜㴙ỡ߿¨àÀ­âįáÁ«á®âï㿧䵗㩄â˜iâ‹UãŒTå p籒嶛汓毎展䵕㴘东⽤ΎàÁ®àñÝŵÞÈ·ÞʹßÈ·ÝÇ·ÝȹÞɺÝÊ»ÝÍ¿ÞÎÁàÐÄàÑÅßÓÇßÔÊáÕÊàÓÊá×ËäØÎãÙÑåÜÓçÝÔæÞØìãßïæâïèåñêçñìéóîìòíêïêçïçäìåâëäáéâàéáÞêâÞêãßéãÞéãßçâÝçãÞéãÞéãÞèâÝçàÜêáÝéàÜéàÜèßÛçÞÚãÛÕåÛÓäÚÒãÚÑãÙÒáÙÏáØÏà×ÍàÖÌßÔÊßÓÊßÑÉÞÐÇÜÏÄÜÎÂÚÎÁÜÌ¿ÛʼÛʹÝɹÜǶÜŵÜIJܰ߿­Þ½ªß¼ªßº£à¹£à¸¡á´à±™á°˜à°—ᯕà«Þ¥…Þ˜oÞ”fÞ‹ZÞ|@ßx:àx:áy:Þz=ß{=ßz<ß}@ß|>à|>ÏxEÂtIÖ|EÞGÂxN㸜㼢áÀªßŰ߯²ßűàïà­àðßŲßİßÁ¬á¾¥á»¡á¹¢á·â°–ⱙ⶞Ṡ߽¦Þ¾¬ßòßIJßijÞǵÞÇ¶ßÆµÞÆ´ßŰྨὦ߿«àïßÅ±ÞÆµßǵàÇ¶àÆ´à¬㿧䳕ã£yã™gãœn孌㳚⽥㷠ä¶ä³›à®˜à±œà¹£Þ¾­àÁ°ßðßÁ°ßÂ°ÝÆ¶ßʺß˺ÝȹÝǶÝȹÝ˼Ü;àÐÄàÐÄÞÐÅßÑÇáÓÊáÕËâÖÍãÖÍäØÐäØÑäÚÓæÜÕåÜÕêáÝíåâîçäðêèòíêóîíòíêîèåíåâêãàéâÞéàÜèáÜéáÜèáÜèáÜéàÜéáÝèâÝçâÝéâÝèâÞçáÜçáÜèáÜèßÛçÞÚæÝÙäÜÕäÛÒãÚÑâÙÏáØÎâØÏá×Ïá×ÍßÕËßÕËÝÔÊÝÑÇÜÐÆÝÏÅÝÏÃÜÎÂÜÌÁÜË¿ÝʼÝɹÝÈ¹ÜÆ¶ÝÄ´ÝòÞ°߿­Þ½ªÝ»¨ßº¥ß¹¥à¶ ß´Þ±˜á²šá²›ß­•Ý©‹á¦‚àŸxß•ià‹UÞ~Bàz<Þ{>á|?à{=àz<â~=áEÞDÔ{GØz?áDÌ€R·câÁ©àÂ­àÆ²ßÈ·ÞʸÞÉ·ßɸßȵßȶßȸÞÇ·ÞǵßűßÁ«ß½¦ß¼¤âµšá´›á¸¡à»¨ß¾«ß¿¬ßÀ¯Þ±Þ±ÝǶÞ˹ÞʸÞÈ¶ßÆ´àðßİßÇ²ßÆµßÇ´ÞÈ·ÝʹÞʹÞÉ·ßÇ´àűὤ㯎â¦|㪇䯔᱗ᾩ⻥⺣ⴙà«ß¨à±›Þ¸¥Þ»©Þ¼«ß¼«ÞÁ¯ÝÆ´ÝȹßÊ»Þ˼Þ˺Ý̼Ü;ÞÎÁßÏÃßÏÃßÐÇàÑÇàÓÉâÕËâÕÌâÕÍãÖÎä×ÐäÙÑåÜÒåÛÓæÞ×éáÝëäáîèæïêéïéèïéçêãàéâÝéàÛæàÚçÞÙèßÚèàÙéàÛéàÜèßÛéàÛèàÜçâÝéáÜçáÝèáÝéàÜéàÜæÞØæÝÙåÝÖäÛÓâÛÓâÙÑâÙÏâÙÐáØÏà×ÍßÖÍßÕËÞÔÊÞÓÉÞÑÇÝÐÆÜÏÆÜÎÄÜÎÂÛÎÂÝÌÀÜ̾Û˺ÜÉ¹ÝÆ¸ÜŶÜóܱÞÀ®Þ½¬Ý¼©Þ»¨Ýº¥ß·¡Ý²œÞ¯˜ß²šÞ²›ß­–à«ßªŒà¥„ÝœuÞ“iÝ„Oß{>Ý|@ß}BÞ~Aß|>à~Aà†Oà‚KÞGÚ€GÎ~N¿~Z¸wVßÈ´ßÊ·Þ̺ßξßνßνßϾÞξÞͼßͽÞ̼ÞʺÞÊ·ÞǵßÁ­ÞÀ«à¿§à»£áº¥Þ»¦ß½ªà¿¬ß½«ßÀ®ß°ÞÈ·ßͼßϾÞͼÞ̹ÞʹÞʸÞË»ÞË»Ý˹ÞÍ»ÝνßξßͼßʺÞǵßİ⽥ⵘ⶛㶜มྩ࿪༦⻡Ⳗᮎ߬’Þ®™Þ¶¡ß¹¦ßº§ÞÁ®ÝÀ±Ü¾°ÞƸÞʼÜ̼ÜͽÞÍÁÞÏÂÞÏÃÝÐÃßÑÆßÑÇàÓÉáÕÌâÕÍàÕÌáÕÍáÖÍá×ÎáØÎáØÎãÙÐäÛÕæÞÚèáÞéäâêãßèáÞèßÜæÝØæÝÖåÝÖæÞÖæÝÙçÞØæÞ×çÞÙçߨèàÙéáÝçáÜèáÜçáÜéàÛèàÜçßÛæÝ×åÝ×åÝ×åÜÔâÚÓâÙÑâÙÐáØÏáÖÍàÖÌßÕÌÞÔÊÝÔÊÝÑÇßÑÇÞÐÅÜÏÆÝÏÃÜÎÂÜÍÁÝÍÀÝ̾ÛË»ÛÊ»ÝÇ¸ÜÆ·ÜÄ´ÜóÜÁ¯Ý¿®Ý½ªÝ¼©Ýº§Þ¸£ß¶Ÿà´œß²›ß´žà²›à­”ݪŽÜ¢ÝuÝ—o݉[Ü}DÝ~DÞ€DÝFÞ}AÞ~BÛEÚL×OÑ€PЃTÆ}TµwWßϾßпàÑÁáÒÃáÒÄáÒÃàÓÄáÒÄàÑÂàÐÂàÐÂÞϾßξÞÍ»Þdzßıß°ßÀ¬ß¿¬ß¿«ß¿¬ß¾«ß¾«àÂ°ÝÆµÞ˹ßÏ¿àÐÃàÑÂßÐÁßÐÀÞξßÏ¿ÞÏ¿ßÏÀÞÏ¿àÑÄßÐÃÞÏ¿ÞͽÝÊ»ÝÈ·ÞűàÁªàÁ«àÁ«àÁ¬àïàðà®àİáìẢⰖᮒ߷ ßº¥Þ»¨Ý½ªÝº¨Ý¹¥Ý²ÝɺÛ̼ÝÍ¿ÞÎÁÞÏÂÝÏÃÝÏÄÝÎÅÞÏÆßÒÈàÓÊàÓËàÓËàÔÊßÕËßÔËàÔËßÔËßÕËàÕÍáØÏâÚÔãÛØäÛ×äÚÖäÛÖãÚÖäÛÔåÜÕæÜ×åÝØæÝØåÝÖæÞÖæß×æÞØèßÛèâÜéáÝæàÛèߨçߨæÝØåÜØäÜÕåÜÙãÛÓâØÑáØÏà×Íá×ÍßÕËÞÕËßÕËÞÔÊÝÒÈÝÒÈÞÒÈßÐÄÝÎÅÝÎÃÝÎÄÜÍÁÞÎÂÝÍÀÛ˼Ü˹ÝÈ»ÜǸÝŵÝõÜóÝÀ±Ü¿®Ý¾«Ý¼©Ýº§Ýº£ß·¡à¶ ß·¢à´žà²šß¬“Ü¥…Þ¡|Ü™qÜŽd݆P܃K܃KÝFÞ}AÝ|?Üy;Ú}CÔTÚ†U²oL©qU¨uUàÓÈàÓÇàÓÅàÔÉáÔÊàÔÉàÔÊáÓÈáÓÇàÓÈàÒÇáÒÆáÒÄàÐÁÞͼÞÉ·ßıÞ¯Þ¯àÄ±ÞÆ²ÞÁ¬ß¯ßǶÝɸÞϾàÏÁáÑÄâÒÅâÒÆáÒÄâÒÅâÒÄáÑÃáÒÄàÑÃãÒÆáÑÅßÏÂÞοÝμÞÌ»ßʸÞȶÞȵßǵÞÇµßÆ³ÞÆ´ÞÆµßƶßųὧᷞ๠߼¦ß¿ªÞ½ªÞ¼¦ßÀ­ß­ÞųÞÊ»Ü̽Ü;ÝÎÂÝÎÁÞÍÁÝÎÃÜÎÄÝÏÃÞÐÆßÐÈÞÑÇßÒÊßÓÉÞÒÈÞÑÈÞÑÈÞÒÈÞÓÉÝÒÊÞÔÊßÖÌáÖÎáÖÏáÖÏâÙÐãÚÑãÚÑåÚÕäÛ×åÜÕåÜÖåÜ׿ÝÙæß×çÞÙçÞØèßÛçàÛæàÙçߨæÞ×åÝÖäÜÖäÛ׿ÜÕâÙÑâØÐáØÎàØÍßÖÍÞÕÌßÕËÞÔÊßÕËÞÓÉÝÒÈÞÑÈÞÐÇÞÏÆÞÎÅÝÎÃÛÍÁÜÍÁÝÍÀÜ̾ÚʹÜɺÜɻܯ·ÛÄ´ÜóÝôÞÁ°ÜÀ¯Ü¿«Ý¼ªÝ»§Þ¹¥à¸¢à·¡Þ´žà²›ß­–ߨݥ‚ÝvÜ—lÜ‘eÝ‹Y݇Q݆P݃LÜ}Bß};ãTÞŽYß‘b»[¬}]²iáÕËáÕËâÖÌã×Íã×ÍãÖÍãÖÍã×ÍâÖÌáÖÌâÖÌáÕËàÔÊáÔÇáÑÂßÏ¿Þ˸ßdzàȶÝɸÞÈ¶ÝÆ´ÝǵßÊ»ÝμÝÎÀÞÏÁàÑÅáÑÄáÓÇâÓÈáÓÉáÔÉáÓÈáÓÈáÓÈàÑÈßÑÆáÑÄàÐÃÞпÝοÝͽÞ˼ÜË»ÞÊ»ÞɺÝɸÝɸÞʹÞ˺ÝȶßįàîßîÞűÞŲÞŲÞİÝÄ´ÜÈ·ÞɺÜË»Ü̽Ü;ÝÎÂÛÍÂÜÎÃÜÎÂÜÎÃÜÎÄÝÐÃÝÏÃßÐÆÜÐÆÞÐÇÝÐÈÜÐÇÞÐÇßÏÅÝÑÈÞÑÉÞÓÊÞÔÉÞÓÊßÕËàÖÍâ×ÎáØÎâØÐãÚÑãÙÓäÙÕäÚÔâÚÓäÜÕæÝÙåÜØåÝØæÞØæÞ×åÜØåÝÖäÜÕäÝÖåÜÕäÛÔåÜÕâÛÒáÙÏáØÎâØÎá×Íß×ÍàÖÌßÕËÞÔÊßÕËÞÔÊÞÑÆÝÑÇÜÐÆÛÐÅÜÏÃÝÎÃÜÏÃÛÎÂÛÌ¿Ü̾Ü˾ÝÉ»ÜÇ¸ÜÆ¶ÛĵÛñܲÞÀ°ÞÀ®Þ¿¬Þ½ªÜ¼©Þ»¦à¹¦ß¸ à´ß°˜Ý«Ý¥„Þ¡zÝuܘpÝ“iÝŒ]܇W݇TÝ…OáŽSç©ã£yÛšoÇ’t·‡j“qhãØÎâÙÎäØÎäØÎäÙÏãÙÐäÙÏãÙÏãÙÏäÙÏä×Îä×Îã×ÍáÕËàÔÆáÓÆáÑÃßпàϾàпÞμÝɸÝȸÝÌ»ÝοÜͽÝÍÀáÑÃàÑÇáÓÊßÔÊáÕÊáÕËßÔÊàÕËàÒÉàÑÆáÑÅàÐÃàÐÄÝÐÃßÏÁÞÎÀÜξÜνÜÌ»ÝÌ»Ý˼ÝÌ»ß˼ÞÊ»Þ˺ÝɸÝÈ·ÝɸÝʹÜ˺ÜÊ»ÝʺÝʹÝÊ»ÝË»Ü̼ÝÍÀÝÍÀÜÍÂÛÍÁÜÎÂÛÍÃÜÎÁÜÎÂÝÎÂÜÎÂÝÎÄÝÐÆÛÏÅÜÎÆÞÏÆÜÏÅÜÐÆÝÑÇÝÑÇÞÒÈÞÓÉÝÔÉÝÓÉàÖÌàÖÍàÖÍà×ÍáØÎâÙÐâÙÑáÙÒáÙÐäÛÒãÛÔåÜØäÛÖäÜÖæÞ×åÝÖãÛÔãÚÓâÛÓâÜÓãÜÔäÛ×äÜÔâÚÑàØÎà×Íá×ÍáØÏáØÐà×ÍßÖÌÞÔÊÞÔÊßÓÉÝÒÈÜÐÆÝÐÄÝÎÅÝÎÄÜÏÄÜÍÂÝÌÀÝÌÁÜ˾ÛɺÜÈ»ÝÆ¸ÜŵÛÅ´ÜóÝóܱÝÁ¯ÞÀ­Ý¾«ß½ªÞ»§Þ¹¤à¸¢ß´œà­”ߩݦ…Ý¡}Ü™sÜ—mÜ‘h܈ZÝŠYß”eå¦x幡㰕ݪŠÄ˜Ç˜yxmåÛÒåÛÒäÛÒäÛÒäÛÒåÜÓåÜÒæÛÓåÜÓäÛÒåÛÒåÚÑæÚÑäÙÏäØÎã×Íã×ÍâÖËâÕÉãÕÅàÒÃÞÍ»ÞʹÞξßÏÂßÐÀáÑÃáÒÄáÒÅßÓÉáÕËâÖÌáÔËàÔËßÓÉßÒÉàÑÆßÑÅÞÐÄÝÏÄÝÏÃßÐÃÞÏÂÞÏÁÝÎÁÜÍ¿ÛͽÝξÜ̼Ý̼ÜͽÝ̼ÝÌ»ÜË»ÝÌ»ÜÍ»Ý̽ÝÌ¿Ü̽Ü̼Ü̽Ý̽ÜÎÀÜÍ¿ÜÍÀÚÍÁÛÍÁÛÍÁÛÍÃÜÎÃÜÍÂÜÎÃÜÎÂÜÏÅÜÎÅÜÎÄÜÏÄÛÏÅÛÏÆÜÏÅÜÏÄÜÐÆÜÒÈÝÒÈÜÓÈÝÔÊßÔÊßÕÊßÔÌßÕËßÖÍáØÎâØÏáØÏáØÏâÙÐâÙÒâÛÒãÚÓâÚÓâÚÓâÚÓâÚÓãÛÒâÛÒãÜÓãÛÒâÚÔãÛÕâÙÒáØÏáØÎáØÎáØÏáØÐáÙÏàØÎßÕËÞÕÊàÖÌßÔÊßÓÉÞÑÄÝÎÅÝÐÄÛÐÅÜÎÂÜÍÁÛÍÀÝÌÁÛË»ÜɺÝɺÛǹÛÅ·ÝÄ´ÝŵÝĵÝijÜñÝÁ¯ÜÁ­Ý¾«Þ¼¨ßº¥Þ¶Ÿà°šÞ®“ÞªŽÝ¤ƒÝžxÛ›uØhÚ†YÜŠYÞ›oã±â¼¨å¶Ü®—Õª‘Õª¢Š{æÝÔåÜÓæÝÔæÝÔçÝÔæÞÔæÝÕçÝÔçÞÕæÞÕçÞÕæÝÔæÝÔçÝÔæÛÓæÚÒåÚÑåÙÐåÙÐåØÌâÖÉáÓÅàÑÁàÑÂàÒÄßÒÇàÓÈáÓÇáÒÇßÓÉáÕËáÕËàÔÉßÔÉàÒÉàÑÇßÑÅÞÐÅÝÐÆÞÐÅÜÏÄÝÏÃÝÏÃÜÏÂÜÏÁÞÎÁÜÍ¿Ü;Ü̽ÝÍ¿ÝÍÀÝξÞξÜͽÜ;ÜͽÜͼÜÍÀÛÎÀÝÎÀÝÍ¿ÜÎÀÛÍÁÛÎÁÚÍÀÛÍÀÚÍÀÛÍÁÛÎÁÛÍÂÛÎÁÛÍÃÜÎÄÜÍÄÜÎÄÚÍÃÛÎÃÛÏÄÛÎÅÛÏÄÝÏÄÛÏÄÜÑÆÜÒÈÝÒÈÝÓÉÝÔÊÞÔÊÞÔÊÞÔËàÕËàÖÌàÖÌáØÎáØÎáØÏâØÐáØÏâÙÐâÙÐáØÐáØÐãÚÒãÛÒâÚÒâÚÒâÚÓáÚÓãÛÔãÙÑâÙÐâÙÐâÙÏáÙÏâØÐà×Ïá×ÎàÖÌßÖÌàÕÌßÕËÞÔÊÞÒÇÞÐÇÜÏÇÜÏÅÝÎÃÜÎÃÛÍÀÛÍÀÛ˽ÜʼÜÉ»ÛÉ»ÛÇºÜÆ·ÜÄ·ÜŶÜĵÜÄ´ÜÄ´ÛİÜÁ­Ý¿¬Ý»©Þ¹¢áµžß³›à°—Ý©‹Ý£Û›uØŽdÚ‰]Ú]ߟt䱓亥両习޷¡Ø³šË©‘æÞÕçÞÕèßÖæÞ×çßÖæßÕåßÖçÞÖçßÖæÞÖçß׿àÖéà×èßÖèÞÖçÝÖçÞÕæÜÓæÛÓåÚÑåØÏä×ÍâÕÊáÔÉàÔÉàÔÊáÔÊàÔÊàÓÉßÓÉáÔËàÔËßÓÊàÓÊÞÒÈàÑÆßÐÇßÐÄÞÐÅÞÏÅÝÏÅÞÐÃÝÏÄÜÎÄÜÎÂÝÏÁÝÎÁÛÍÀÜÍ¿ÛÍÁÛÌÁÝÎÁÛοÜÌ¿ÜÍ¿ÝÍÀÝÍÀÛÍÀÛÎÁÛÎÀÛÍ¿ÚÍ¿ÛÍÀÜÍÂÛÍ¿ÛÍÁÛÌÂÛÍÁÚÍÂÜÎÂÜÎÃÜÍÂÜÍÃÛÎÄÜÎÂÚÎÃÜÎÂÚÎÃÚÎÄÚÏÅÞÏÅÛÏÅÜÏÄÜÑÇÝÐÈÜÒÈÜÓÉÞÔÊÞÔÊÞÔÊßÔÊÞÕËßÖÌàÖÌáÖÍàØÏáØÏàØÏà×ÎáØÏá×ÏáØÎáÙÏâÚÐâÚÑâÙÑâÚÑâÙÒâÜÒãÛÒãÚÒâÙÐáØÐàÙÏàÙÐàØÏáØÎáÖÍÞÖËàÕÌßÔËÞÓÊßÒÉÜÑÈÜÑÈÝÐÆÝÎÅÜÍÃÛÎÁÚÍÀÚ̾ÛÌÀÜË¿ÜʼÛÉ»ÝȹÝȹÜǸÛŶÛĵÝôÝÅ´ÜıÛÁ°Ý¿­Þ¼©ßº¤ß¶Ÿàµœà¯•߫ݧ„ÜžvÝšoÝ™kÞ¤}Ⲙ⻤ὦᾨཧ޹¡ßº æß׿ßÖèß×èàÚèàÙèàØèàÙèàÙèàØéàÜèàØèáØéáÙèàÙèàÙçàØèß×èÞÖçÝÕåÜÓäÛÒåÙÐãØÏãØÎâÖÌâÕÍáÕÌáÔËàÔÊàÔÉàÕËßÕÊßÔÉßÓÉÞÒÈÞÑÇÝÑÇÝÐÆßÏÇÞÏÆßÏÆÝÏÄÜÎÂÜÏÂÜÎÂÝÏÂÜÎÂÜÎÂÛÍÁÜÍÀÛÎÁÜÍÀÛÍÁÜÎÀÜ;ÛÎÀÛÎÀÛÍÁÚÌÀÛÍÀÚÌÂÚÍÁÛÎÁÛοÛÎÀÛÍÂÚÍÂÛÎÁÛÍÁÜÎÃÛÍÂÛÎÂÜÎÂÚÍÃÝÎÂÛÍÁÛÎÂÚÎÄÛÍÄÚÎÄÛÏÅÜÏÆÜÐÅÜÏÆÜÐÆÝÒÇÞÒÊÝÔÊÝÓÉÞÔÊßÕËßÕËàÕÌßÕÍßÖÍÞÖÌá×ÍßÖÌá×Íà×Îà×Îà×ÍâÙÐâÙÏâØÐãÙÑâÙÐäÚÑâÝÓâÛÒáÚÑâÚÑáØÐáØÏÞ×Îà×ÍáÖÎàÖÌÞÕËÞÔÊÞÔÊÝÓÉÜÓÈÝÑÉÜÑÅÜÐÆÛÏÅÜÏÃÜÎÂÛÍÁÚÌÀÚÌÀÚË¿Û˽ÛʼÜɺÜɹÝȹÜÇ·ÚÆ¶ÝŵÜŵÞŵÜÅ´ÜIJÛ®޾ªÞ½¨ß¹¤à¶Ÿà³›á²šâ°”â°á®‹â±”㷟༥ßÀ«àÁ¬à¬࿩⽦éáÙéáÛéâÛéâÛêâÜêâÝêâÛêâÛêâÛêâÜëâÝêáÝêáÝêâÜéáÚèàÚçáØéà×çÞÕäÛÑäÛÑãÚÒãØÐâØÎá×Ïã×Îá×ÌáÕÍàÔËàÕËàÔÊÞÓÉÞÓÉßÓÈßÒÊÞÒÈÝÑÇÝÐÄßÑÄÞÑÇÜÑÇÞÏÃÝÏÄÝÎÄÝÏÃÝÏÆÛÍÁÜÎÃÛÍÂÛÎÂÛÍÀÛÎÁÚÍÀÚÍ¿ÛÍÀÛÍ¿ÚÍÀÚÌÀÛÍÁÚÍÀÛÍÀÛÌÁÚÌÀÛÌÁÛÌÂÛÌÂÚÌÁÛÌÂÜÌÄÛÍÁÜÍÄÜÍÂÛÍÁÙÍÃÛÍÁÛÍÁÚÍÂÚÎÃÚÏÃÛÍÂÚÏÅÚÎÄÚÏÄÛÐÄÛÎÂÜÑÈÜÒÆÝÒÈÜÒÈÝÓÉßÕËÞÕËÞÔËÞÔÊÞÔËÞÕËßÕËàÖÌàÖÍà×Îà×ÍàÖÍáÙÏâÙÐãÚÐãÚÑãÚÑáÙÑáÚÒàÚÑâÚÑãÙÑâÙÐáØÎàÖÍàÖÌàÕÌßÔËÞÔÊÝÓÉÜÒÈÜÓÉÝÒÈÝÑÇÞÐÆÞÐÆÝÐÆÝÎÄÝÎÆÜÎÂÜÎÁÛÍÀÚÍÁÛ̾ÛÌÀÜ˾Ü˾ÜʼÝɺÝȹÝȹÝȹÜÇ·ÝÆ¶ÝŵÝŲÛİÝÁ®Þ¿«ß½§à»¤à¹£à¹¢áº¢à¼£à½¥ß½¦ß¿©áÁ®àÁ®àÁ®ßÀ¬Þ¿©ëãÜêâÞëâÞéãÞëäßêäßêäßéäßìãßéäßëäßìãßêäßëâÞêâÛéáÚçàØèà×çÞÕæÜÔäÛÓäÛÒâ×Îâ×Íà×Íá×ÍàÖÍàÖÌßÔÊÞÔÊßÔÊßÓÉÞÓÉßÓÉÞÒÈÞÑÈÞÒÈÞÑÇÜÑÇÝÐÅÜÑÇÞÏÅÜÏÃÝÏÄÛÏÄÛÏÅÜÎÂÛÎÄÛÍÂÛÎÃÛÍÁÚÌÀÛÌÁÛÌÁÚÌÁÚÌÁÛÍÁÚÌÀÛÍÁÚÌÀÛÍÁÚÍÀÛÍÀÛÌÁÛÍÃÛÍÂÚÌÁÚÌÂÛÍÃÛÌÃÛÍÂÛÌÂÚÌÃÙÍÀÚÌÃÛÍÁÛÍÃÙÍÃÛÍÁÚÍÁÛÎÄÚÎÃÚÎÃÛÏÄÛÏÄÜÐÆÜÒÇÜÒÆÜÓÈÝÓÉßÕÌßÕËßÔÌÞÔÊÞÔËßÔÊÞÕËÞÖÌÞÕËßÖÍà×ÎáØÎà×ÏâÙÐâÚÑâÙÑáÚÒãÚÐâÙÐàÙÑâÙÒâÙÐàÙÐáØÏßÖÌÞÔÊÞÔÊÞÔÊßÕËÝÓÉÜÒÈÜÓÈÞÓÉÜÒÈÝÑÇÝÑÇÞÑÇÞÐÅÜÐÅÝÎÄÝÎÃÛÍÂÛÍÂÛÌÁÚÌÀÛ̽ÛÌ¿Û˼ÛʼÛÉ»ÝɺÛʺÝɺÝȹÜǹÜÇ·ÝŵÜųÝðÞÁ¯ÞÁ®ÞÀªß¿«ÞÀ«ÞÁ«ÞÁ­ÞÀ®ßÁ®ß¯ÞïÝïÞîßÁ­ëäàêäßêåàêåàêåàêåàêæáéåàêæàéåàêåàéåàêåàìäàìâßéáÚçà×åßÖçÞÕæÜÔåÜÓäÛÒâØÎá×Íá×ÍáÖÌàÖÌßÕËßÔÊÞÔÊßÔÊßÒÈßÓÉßÓÈÝÓÈÝÒÈÞÒÈÝÑÅÜÑÆÞÐÇÝÑÅÞÏÅÛÐÅÜÏÅÛÐÅÝÏÄÜÏÃÛÎÂÛÎÂÜÍÃÜÎÃÛÍÁÚÌÀÛÌÁÛÍÀÛÍÀÛÍÁÛÍÁÚÌÀÚÌÀÚÌÀÛÍÁÚËÁÛÍÀÛÌÁÚÌÁÛÌÁÛÌÁÙÍÄÙÌÂÚÌÁÚÌÂÚÌÁÛÌÁÙÍÃÛÍÃÚÍÂÚÌÂÙÌÀÛÌÂÛÌÁÚÍÂÚÎÄÚÎÃÚÎÄÛÏÄÛÑÆÛÑÈÜÒÈÝÓÉÞÓËÞÔÊßÕËßÕËßÕËßÕËßÕËßÔÊßÕËàÖÍà×ÏáØÎáØÏâÙÑãÚÒâÙÐáÙÑãÚÑáÙÐáÙÐà×Ïß×ÏàØÎÞÖÍßÖÌÞÕËßÕËßÕËßÕËÝÓÉÜÒÇÜÒÈÝÒÈÞÒÈÝÓÉÝÒÈÝÑÇÞÐÇÝÐÅÝÏÃÝÎÄÜÍÃÛÍÃÛÌÂÛÍÁÚÌ¿ÛÌ¿ÛÌ¿Ü˾Û˼ÜÊ»ÚʺÜË»ÜÊ»ÝʹÜɹÝȸÝÇ¶ÝÆµÝųÝÅ´ÜűÝŲÞűÝűÜűÞıÝıÞűÞűÝıÝŰÞïêæàêåàéåàêæáêæáêæáéæàëåáëåâëåáêæáêåáéåáêæáìäàêáÛèàØæßÖçßÖæÝÔåÜÓäÛÒãÙÏá×ÍâØÎàÖÌàÖÌßÕËßÕËßÔÊÞÓÉßÓÉÞÔÊßÓÉÞÓÉÜÓÇÝÒÈÝÒÇÝÒÇÝÑÆÝÑÅÜÐÆÜÐÆÜÐÅÜÐÆÛÎÃÛÏÅÚÎÃÛÎÄÜÍÃÜÍÂÛÎÂÛÍÁÚÍÁÛÍÁÚÍÀÛÌÀÛÌÀÚÌÀÛÍÁÛÍÁÛÌÁÚÌÂÚÍÀÙÌÀÚËÁÚÌÂØÌÀÚÍÁÛÌÂÚÌÁÚÌÂÚÌÁÙÌÁÚÍÂÙÍÁÙÍÂÚÌÁÚÌÂÛËÃÙÍÂÙÍÁÙÍÃÚÎÂÚÍÂÚÎÂÜÐÅÛÑÇÜÒÈÜÒÈÝÓÉÞÔÊÞÔÊÞÔÊßÕËßÕËßÖÌÞÔÊÞÔËßÖÎà×Îà×ÍáØÏàÙÐà×Ðà×Ïà×ÏàØÎà×ÎáØÎßÖÌÞÕÌÞÕËßÕËÞÕËßÕËÞÔÊÞÔÊÝÓÉÝÓÉÜÒÈÜÒÈÝÒÈÞÒÈÞÒÉÝÒÉÞÑÈÝÐÆÜÐÆÜÏÅÝÎÄÛÏÃÜÎÃÜÎÂÜÎÂÛÍÁÛÍÁÚÌÀÛÍÁÛÌÀÛ̾Ú̾Û̾Ü̼ÛÌ»ÚʹÛʹÜʺÜɸÜÈ·ÝÈ·ÝȶÝÇ·ÝÇµÝÆµÝǶÝǵÝǵÝÅ´ÝÅ´ÝÅ´ÝŲÞİéåàêæáêæâëèâìçâìçâìæâëçâìåâêæáëçâëåâêæáéåàëåàëâÛèáÙèáØæßÖåÞÕåÝÔåÜÓäÛÑáÙÎá×Íà×ÍàÖÌßÖÌÞÕËßÔÊÝÓÉÞÔÊÞÔÊÞÔÊÞÔÊÝÔÉÜÒÈÝÒÈÝÒÇÜÑÅÝÐÄÛÑÇÛÑÆÜÐÆÜÐÆÜÐÆÜÏÅÜÎÃÜÎÄÚÎÂÚÍÁÛÎÁÚÍÃÛÍÂÙÌÀÛÍÁÚÎÂÚÍÁÚÌÀÛÍÁÛÍÀÙÍÁÛÌÁÚÍÀÚÍÁÚÌÀÚÌÂÙËÀÚÌ¿ÚÊÂÙËÁÚÌÂÙÌÁÙÍÃÚÍÁÙÌÀÙË¿ØÌÁÚÌÁÙÌÂØÌÂÙÌÂÙÌÁÙÌÀÚÍÃÚÎÄÛÏÅÜÏÅÜÐÆÛÐÇÝÓÉÞÔÊÝÓÉÝÓÉÝÓÉÞÔÊÞÔÊÞÔÊßÕËàÖÌß×Íà×ÍßÖÏÞÖÌßÖÌÞÖËÞÕËÞÕÌßÕËßÕËÞÕËßÕËÞÔÊÞÕËßÕËÞÔÊÞÔÊÞÔÊÜÒÈÝÓÉÜÓÉÜÒÈÜÒÈÞÓÉÝÒÈÝÒÈÝÑÈÜÑÇÜÐÆÝÐÈÜÐÄÜÏÆÜÎÅÜÎÄÜÎÂÛÍÂÛÍÂÛÍÃÛÎÁÛÌÁÚÌÀÛÍÁÛÍÁÛÍ¿ÛÍ¿Û̽Û̽ÜË»ÜË»ÚʹÜʺÛʹÝɺÝɺÞʹÝʹÝɸÝȹÝɸÞÈ·ÝǶÜÇ´ÜųëèâíçãîçäïèäïèäîéåíêåîêåìèãíèâìæãìæãíåãëçáìæáéäßìäàéãÞéâÛåÞÖæÞÕæÜÕåÜÓäÛÒáØÍâ×Îá×ÍßÖÌßÖÌßÕËßÕËßÕËßÕËÞÔÊÞÔÊÜÒÈÝÓÉÜÒÉÝÒÇÜÒÈÚÒÇÝÐÆÛÐÅÜÑÆÛÐÇÛÑÆÜÑÅÜÎÇÛÏÅÚÏÄÛÏÄÛÏÅÚÎÃÜÎÄÚÎÂÙÍÁÚÌÀÚÌÀÚÌÂÛÍÁÛÌÁÚÍÂØÌÁÛÌÁÚËÀÛËÁÛÍÁØÌÀÙÊÁÛÍÁÚËÂÚÌÀÛÌÀÙÍÁÚÌÁÙÍÂÚÌÂÙÌÀ×ËÁÚËÃÙËÀÚËÂÛÌÂÛËÃÛÌÁÙÎÃÚÎÃÛÐÅÛÐÄÜÐÆÜÑÇÝÓÉÜÒÈÝÓÉÜÒÈÜÒÈÜÓÉÝÓÉÞÔÊßÕËàÖÎß×ÌßÔÍàÕÍßÔÌÞÔÊßÔËßÔÊÝÓÉÞÓÉßÔÊßÕËÞÔÊÝÓÉÝÓÉÞÔÊÝÓÉÜÒÈÜÒÈÝÓÈÜÒÉÝÓÉÝÒÈÜÒÈÝÓÉÝÒÈÝÑÈÞÑÇÞÒÇÝÑÈÜÑÆÝÐÆÝÏÃÛÐÄÜÏÄÝÎÄÝÎÃÜÎÂÛÍÁÜÎÂÜÎÂÜÎÂÜÎÂÜÏÁÜοÜÍÁÛÍ¿ÜÌ¿ÛÍÀÛͽÜ̾ÜÌ»Û̺Û̺Û˺ÚʺÝË»Ú˺ÚɹÜɺÚɸÜÉ·ÝÈ·íèäïèåîçäïéæïéåðêæðéæðèæïèåïèåîèäíéäíéäìçâìæáéåáêåàêäßèßÛæßÖæÞØåÜÖæÝÓåÜÓâÙÐáØÎàØÎàÖÌßÕÌàÖÌÞÕËÞÕËÞÔÊÞÔÊÞÔÊßÕËÞÔÊÝÓÈÝÒÇÝÓÉÝÒÈÜÐÆÜÑÇÜÑÇÜÐÆÛÑÈÜÐÇÛÐÅÜÏÅÜÎÅÛÏÃÚÎÄÛÏÄÚÏÄÙÎÃÚÎÂÚÎÃØÍÁÚÌÂÙÌÁÚÌÃÚÌÁÙÍÁÚÌÁØÌÀÙÌÁÙÌÁØÌÀÙÌÁÚÍÁÛÌÁÚËÁÚÌÂÙÍÁÙÊÁÙÌÀØË¿ÙË¿ØÌÀÛÌÂ×Ì¿ÙÌÀÙÌÀÚÍÀÚÍÁÚÌÀÚÎÄÙÍÂÚÎÄÛÏÅÛÐÆÜÑÇÛÑÇÛÒÆÛÒÇÛÑÇÛÑÇÜÒÈÜÒÉÝÒÊÞÔÊßÕËßÕËßÕËÞÔËÞÔÊÞÔÊÝÓÉÞÔÊÝÓÉÝÓÉÜÒÈÝÓÉÛÑÇÜÒÈÝÓÉÝÓÉÜÒÉÜÒÈÝÓÉÜÒÈÝÓÉÝÒÆÝÒÇÜÓÉÜÓÉÝÒÉÝÑÈÝÑÈßÒÈÜÐÆÞÑÅÜÐÄÝÏÃÜÎÅÞÏÄÝÏÄÝÎÃÝÎÃÝÏÃÛÏÅÝÏÃÜÏÂÝÏÂÜÎÂÜÎÂÜÎÂÜÎÂÜÎÁÝÎÀÞÎÁÜÎÀÜÍ¿ÛͽÜ̼Ü̾Ü̼ÝͼÝͽÜ̼Û˺ÚʹÜʹïèåïéæîêæïêæïêçðëçðêçïéæðêçðéæïèåïèåíèäìæâêæáéäàèãÞèáÝèàÙæÞÖæÞØäÜÕåÝÔäÜÒãÚÐáØÏáØÎá×ÍßÖÍßÕÌÞÕËÞÔÊßÕËßÕËßÕËßÕËÞÔÊÝÓÉÝÒÉÝÓÉÜÓÉÜÑÆÜÒÈÛÑÇÛÑÇÛÑÇÛÑÇÛÐÅÜÐÅÜÏÄÛÏÆÛÏÃÚÏÃÚÎÃÚÎÄÚÎÃÚÎÃÚÎÂÚÍÃÙÍÁÙÍÂÙÍÂØÍÂØÌÀØÍÁÙÌÀÚÌÁÛÌÁÚÍÁÙÍÁÚËÃÚÌÂÚÌÂØÌÁØÌÁÛÌÂÚÌÁÚÌÂØÌÀÚËÂØËÀØËÂÙÌÁÚÌÁØÌÂÙÌÀÙÌÃÚÍÃÚÎÃÚÎÃÛÏÅÜÐÆÛÐÇÛÐÇÜÑÇÜÑÇÜÑÇÜÑÇÛÑÇÜÒÈÝÓÉÞÓÊÞÔËÞÔÊÞÓÉÝÓÉÜÒÉÜÒÈÝÓÉÜÒÈÜÒÈÜÒÈÜÒÈÝÑÇÛÑÇÝÓÉÜÒÈÝÓÈÜÒÈÞÔÊÝÓÉÜÒÈÝÓÈÜÓÈÜÒÉÜÒÈÜÒÈÜÒÇÝÒÇÞÑÈÝÑÇÛÑÇÜÐÅÜÐÆÛÐÆÝÏÄÛÏÅÝÏÄÝÏÄÞÐÄÝÐÄÝÐÄÛÏÄÝÏÃÝÏÄÝÏÃÝÏÃÝÏÃÝÏÂÝÏÂÝÏÃÜÎÂÜÏÁÜÎÂÜÎÁÜξÝÎÀÜÎÀÝÎÀÞÎÀÛͼÛÌ»ÝË»ïêçïëæðëèñêèðëèñëèñìèñìéðëèðêçïéæîèåíèäëæáéäßèãÞèâÝèàÚçàÙæÞ×åÜÖäÜÔäÜÓâÚÑãÚÐáØÐà×ÎàÖÌß×ÌàÖÌÞÕÌßÔÊÞÕËßÕËßÕËßÕËÞÔÊßÕËÞÔÊÝÓÉÜÒÉÜÓÉÜÒÈÛÑÇÛÑÇÜÑÈÜÒÈÛÑÅÛÐÇÛÏÄÜÏÆÛÏÄÚÎÂÚÎÂÛÏÄÚÏÃÚÏÃÚÎÂÚÏÅÚÎÃÙÍÂÚÎÄÚÍÁØÌÁÙÌÀÙÌÀØÌÁÙÌÁÙÍÀÙÌÁÙÌÂÙÌÁØÌÀØÌÀÙÍÂÙÌÁÙÌÀÚÌÀØÌÀÙÌÁÙËÀÙÌÁØÌÁÚÌÀØÌÁÚÍÂÙÌÁÙÍÂÙÍÂÙÍÁÛÎÄÚÎÅÛÏÅÜÏÆÛÏÅÜÐÆÜÏÅÜÐÆÛÏÅÛÐÆÛÒÈÜÓÈÛÑÇÜÒÈÜÒÈÜÑÆÜÒÈÛÑÇÜÑÈÜÒÇÛÒÆÛÑÇÜÑÆÜÒÇÝÓÉÝÓÉÜÓÉÝÒÈÜÒÈÝÓÉÝÓÉÝÓÈÜÒÈÝÒÈÞÓÇÝÑÇÜÑÇÝÑÇÜÒÇÜÑÆÝÑÇÝÑÆÝÑÆÜÐÅÜÐÅÛÏÄÝÏÄÝÏÅÝÐÇÝÏÄÝÐÅÞÐÄÞÑÅßÑÄÞÐÆàÒÅßÐÆÞÐÄÞÐÄÞÐÄßÑÄÞÐÃÞÏÄÝÏÃÝÐÃÝÐÁÝÐÁÞÏÃÞÐÁÞÏÁÝÏÀÛξÜͽðìèñíèñìéðêçðìèòíêòîêòíêðìèðìèðëçíèæìèãéåàèâÜçàÙæÞ×çß×åÞÕäÝÔäÜÔãÜÓâÛÒáÚÏâÙÏáØÏß×ÍßÖÌÞ×Íß×ÌÞ×ÌÞÕÊÞÔÊÞÕËßÕËÞÕËÞÔÊÞÓÉÞÓÉÞÓÊÝÓÉÜÒÈÜÒÇÛÒÆÛÒÆÜÒÇÜÐÄÚÑÅÛÐÆÛÐÄÜÐÅÚÎÂÛÏÄÛÏÄÚÎÂÛÏÂÚÎÂÙÍÁÚÎÃÚÎÂÙÎÂÚÎÂÚÍÁÙÍÁÙÌÀÙÍÁØÌÀØÌÀØÌÀØÌÀÙÌÀØÌÀØÌÀ×ÌÀÙÍÁØÌÁØÌÀØÌÀØÌÀØÌÀØÌÀØÌÀØÌÀ×Ë¿×ÌÀØÌÀØÌÀØÌÀÙÍÁÙÌÁÙÎÂÚÏÁÙÎÂÚÏÃÛÏÄÚÎÃÚÎÄÛÏÃÚÎÂÛÏÃÛÏÃÜÐÅÚÑÅÛÒÆÛÑÈÛÑÅÛÒÅÜÒÈÛÑÆÛÐÆÛÑÆÛÐÄÝÐÄÛÒÅÜÒÇÜÒÈÝÓÉÜÒÈÝÒÈÝÒÆÞÓÊÞÓÉÝÒÈÝÓÉÞÒÅÝÒÆÝÑÅÝÒÆÝÒÆÝÑÆÜÐÄÜÐÄÝÑÅÝÐÄÛÑÅÛÑÇÜÐÃÜÐÄÝÐÅßÐÄÞÑÇÞÑÅßÐÄÞÑÅÝÑÅÞÒÇàÒÆÞÒÅàÒÆÞÑÆßÑÅßÒÅßÑÅßÑÆßÑÆßÑÄßÑÃàÑÅÞÑÃÞÒÃÝÐÁÝÐÀÜÎÁðìçðìçñìéðìçðìçòîêóîëóîëðìæðìçîêåëçâéåàèâÜçà×åÞÕäÝÔãÜÓäÝÔâÛÒãÜÓâÛÑáÙÏàØÎáÙÏáØÏÞ×ÌÞÖËÝ×ÍÞÖÌÞÖËÝÕÊÞÔËÞÔÊÝÔÊßÕËÞÖÌßÕËÞÔÊÝÔÊÜÔÉÞÑÆÝÒÈÜÒÇÜÒÇÛÒÈÜÑÅÛÒÅÜÑÅÜÐÅÛÏÃÛÏÅÛÐÅÛÏÃÜÏÅÛÐÄÚÎÂÙÍÁÚÎÂÙÍÁÙÍÁÙÍÁÙÍÁÙÍÁØÌÀØÍÁÙÍÁØÌÀØÌÀØÌÀØÌÀØÌÀØÌÀØÍÁØÌÀØÌÀÙÍÁØÌÀ×Ë¿×Ë¿×Ë¿×Ë¿ÖË¿ØÊ¾ÙË¿×Ë¿×ʾØË¿ØÌÀØÌÀØÍÁØÌÀÙÍÁØÌÀÙÍÁÙÍÁÙÍÁÙÎÁÚÎÃÙÍÁÙÍÁÚÎÂÜÐÆÛÐÅÛÑÅÛÐÅÛÐÃÛÑÆÜÐÄÛÐÄÛÑÄÜÐÄÛÑÇÚÑÇÛÐÆÝÐÄÜÒÆÝÓÉÝÓÉÞÓÉÞÔÉÞÒÇÝÒÈÝÒÆÜÑÇÝÒÅÜÒÅÝÐÅÝÑÅÝÑÅÜÐÄÜÐÄÜÐÄÜÐÄÛÐÄÜÑÅÛÐÄÜÑÅÝÐÅÜÐÄÜÐÄÝÑÅÝÑÅÞÒÆÞÒÅÝÑÆßÓÆßÓÆàÒÇÞÓÆÞÒÇÞÑÆÞÒÅàÒÆàÒÈàÓÅáÒÈßÒÅàÒÅàÓÅßÒÄÝÐÁÚͼOpenLP-2.4/resources/images/service_expand_all.png0000644000175000017500000000074612657640340021374 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsvv}Õ‚ÌtIMEÚ 7“V:,fIDAT8Ë¥“ANã@E_9mÇi»cÜ+8÷`Ä‚#Í f;âÌ~î€`‘ îÁ5:ŠNâØS³HÂd!¨U©ë÷ïúõ«á‹!Þû$„pä¼÷â½ !Ô „p6NXk¥C¨þ¡×35@Û6‰H´¹]U•:çx0ë³ÜZ+“ÉdÖÊaYŸžËÀóHGãÉ8éjEQ € ÀìëQI“·|.:$T¯“=a¶5—òî^òŸB>‰Yæi¹šº ªÍ`‡ ×3õé¹\tm›ŽOÐlß~Ée܇(‚ÙnêãÁ¿æf¬w±…~úFð_ mÛ$Ï#mK¸º‘Ë$ƒßßõ~1'FWÚ¶)vD"¶­ÊÓ’$›ÁbF\-ÇñÆÆAñ1¢h5 =„Ù[ôµ‚ùäG'ᥪ*]oØÚÖfpw½švÛ6Ea‹w« ¼n¼÷OÎ9>ñ™ørüú6Œ%—IEND®B`‚OpenLP-2.4/resources/images/general_zoom_out.png0000644000175000017500000000222512657640340021107 0ustar raoulraoul‰PNG  IHDRÄ´l;bKGDÿÿÿ ½§“ pHYs „ „ªâcytIME× 2Ç:"IDATxÚµ“_L[UÇϹÿz{oKKKÙ¤0†Ð ¡´ü´8‘ 5Žöâ23™ò Éß|Â%cdñMͶ„ìÉ¡¶l£&Ë&:`>H¤ü§T …—û§÷öž{½$>—uÓà'ùæä¼|ò;9ßø¿€àtwwÛ½^ß)–eŽ$éRUuS’¤Ñéðt_[Û{«ÿZ̲,¼zíZ›Ãáìº?ºà ÇA‚—u MÀ‚+¬¯> P$öéÛçÞº´½½žU ¯\¹ú™ -|õ}XǬYèx£ðC3†~ü]ODþ _©´àÞBÛ·ïœ?ÿf*•J+ÇAW×Çg1ÊöÉ—ß-¡‚ ïV]S@(-ËÓÕL;w8? eÌáÚÌߎá6J)oijPîܾýàibSss˾‡¼…É/ŒV¨ˆeçØd‹•æŒ:2…Hb›µg¬4->Zdj<æ£ëëñ¯£Ñ¨ô$1vá»5ŠF˜Žk›ež_× 1½Žáá NË4µ>–Âæ6q":‡°°üܾ 9#sv~M³{éØI‚¢Hï–qzvT4Ñ«¡onµÁŒ’ @|  ­E€¤M %·@ùÅ¿°tG6Ĺb7EyÓ‰1 ®SVËÆ2·ƒ€ˆˆh'„4 5‚‚r AžÉš’”ÝÂc©Ði'6ª³à)%4´¨Pèä¥s9Í„h%1Ù„yªŸ€¢ªS›2¢—7FS¶ÏNšv"B$íĽ½½C„ç-Ø~$¥(i©N@Þd‚EÁ bESTÂÄq¹…Ù86<22˜V,ËÉÕ™Ù™ž&ŸÉ-…—ó¥m‰M"Øm8KB‡PS4e•’—®SE”oi~êîèÈÈoO«›>1>þ¨.XñjÝ!wåÔ’$ñ4Í!ŠÐDI‰q²Mœ‰yšY¡¥Ä™ÌôûülQQá`(ZM» Æ “““w¼÷‘ÓþÜÆ< H eË[’Û™Lzý*ÿòk|ÃÊÄ}edø¡¹¸ä…ŒÊÊÊ3eeeæŸ(ޅ㸭Ph°WvÂvLÌËA‰’Cp³˜Ïd%¿,Þìûüòåî÷m6[ör$Ržår™àÁ``naaabee< „‘L#¹FœF(ðyyyxKKKwGG‡Þsýº¾‰¨ýýýëëëáã?Žf$i„3"A{™Îóü]‡Ã‹‚ðb"‘Àjkëý~Ÿ=‹ý0;;«¥§gWn÷X–å)Š:¾¸°ˆU© ÖTW+ŠrsllLÅÁ$ƒñññŸ –].×ëá©)üpqq©!¯e¦‚= ½½ý´Ñ’Q™@ 4Mû ‚=ÂøÌ†`0xcmmÍb\Ï‚½¤³³³²µµõ 0øtªÞFÕFc2IEND®B`‚OpenLP-2.4/resources/images/service_edit.png0000644000175000017500000000132612657640340020205 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsììu85tIMEØ 6à¼}VIDATxÚ‘]HSq‡ŸsfRá2•0²ÕÂ0¨0½1/ºÑ‹À O¢ ²L«‹Œ`AA‚‘`EÒ÷Ea¤¡a(¡¨‘YJê]s¶LÏÎtº³ý;ØX[P¼¼ï¹xŸßËÿH`°ØÎP°[^y{cAæš#!áDH/„háü‹xz‹xyßNF{€—«30Ðüp»‘eÙ(I’õÒc† Ë_KyÝú…ë­2,SZ–G$ÉD`2™ÂS¨›LÆì·WÑÛÓŦxvnvsú¬äjÉ’ÏÅA#ÑH×KŸÃÝ7õÇ·7ØêãYožáVéj*ê—jž·iÓ‘ü™Jž}2þ„ Õ>VHj.YH­@_ö“aJŒÔ!´éÇ\¹ëa^Q©.QÐRËPå`1æ‚$àsœ~ˆíΟ‡ÝÜ<5‡yÓAfyX­V€%c'ê Œš‚З«y×íÄvtŽ-Ûrõ’––†Åb F`ü.á'à¨ãÁ³~ž6OPRè!7'þ_GHNN!33aâ¢ó“m´5·SÛ4IQÞ"‡ y1¸Ÿ)çæ5Iôõõ±Êœ ýU z%¼A+{wQ~Xæ•ý8Ã#ß©¬¬Ô/HFUU.•—¿ºb?gÌ:?¾ÎIFQ6ãñûÈÙ“9eÈXöz½Ø®ÚN>"È:÷jkĵËÇ„c¤SøýË" êÝ/:::„¢(¢ì|Ù'`+!¢öQͲÝDñ™â`QH`d…¿cÑ€N`‰(~™Ã ôööIEND®B`‚OpenLP-2.4/resources/images/multimedia-player.png0000644000175000017500000000112512657640340021161 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYsÝÝpS¢tEXtSoftwarewww.inkscape.org›î<ÒIDATxÚ…“½‹AÅÝóµ3»ƒs‚à%Š bd¤‡·‹‘ F"fb``f`¶©x±‘þr©‘ñž˜   ‡_(»ÎÌÎL·eƒÇ°èXðºhºê½GS…µö@®”š ì:€)»Ú”ü‰(ŠÞì<±õöà ±¾'Ðpöä÷nßÜ“úœNøtb”¦[þémöMÆ©Ìp"1 cCc²ø+I’ŒY t8µQh–Pʶ&ò ƒÁ€^‚ ÐÊyii–ü©h$[GÇq?A†Ô­e*< Ÿ—†Ÿ+‹í8øçxž‡1’Ašá‡4oÄšBrÝ*'ð_‚Ð÷øV(%Ò$V´¶TBàû~?RŠË›-ió°hõ ç²ãî½À Æ“ÉC `>ŸƒÜÚ¶¥i÷Þ÷‰®Ð©hc7Q^¼Îæ­ Á vö…¤×#(¤ñåΊû|̯ríÎ}Þï>eµZõ:8*¨ÊŠ$Mª§Öúc¨ªªßA]×X)üþê—î>æp~À…3ç™íNœý¢(X ·LÝAz½=_©ÊÒ©k­œúb±`6›í-—Ëœn¬¯30•™·²8v49 ‡C+cþ×uþË=âð©89IEND®B`‚OpenLP-2.4/resources/images/general_import.png0000644000175000017500000000116412657640340020547 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ñIDAT8•“?oÓPÅïÅUSgÌ„º„¡ ¨K“,ÍX©KÚ¯¥Ÿ$þ ¶nù ÀkU„²µiµU(cÑc;öó»,µ±i¸Òžôι眫«D¥Ô`ƒÿ«‰SxlÌçó·¿‚€ñxLÝóØìtXYYA)…R*€ÖouuOé¬Àç£#:››¬­­1NÉf`yP©h¢(¢ÑhP­V ÃïWW4›Í?*2’LÑp8üè8Ύ뺸®K½^§Ûí²µµ…1†Ó³3Zëë8Ž“ƒ”ÖÜ«V÷`çàà ”Œµk-•J…‡í6i𢵾3‹’…¢Wn>+¥ÐZ£µ.³r€Oûûû% ½^~¿áüüœV«ukr^"’%½ûÓ÷e4‰ïûbŒ‘ããc™N§’$‰cÄ#išæ ì–,(Àu]‹qívûNïE Eóloosxxˆçyôûý[áe'‰À–(E­Vc0ä "8Š"f³5o•wï?Œ“RAHEÇqî;MS±ÖJ’$2™L$Ž—òôå‹ à ÊaøOß÷åëå¥CB8=<5:9/43!%%       ! % !    # % "' ##$),.#1!/$2'4(5)3&2>&2@$1A/=O)5E2=J%/<"0!    DTnJ\}nuŒýôû-*+#%%)+#).-/9-2>#)6&5&6/-(0"40!2#5.>$4EAPa@K\hsŠ“qzˆŽ“‡’–tƒd{pŠžnˆ˜nˆ›m‡›m‡˜k…–j„•j„”f•e€”c~“b}‘c~‘b~a|‘_z5d—-V„/V‚+P}*Kx"Bo>.31"&&        " ! "   "$ # $& % $+(++$2(4(4&2$/=$/?$1B)5G-9H-9E"+8,"       DUpI\lsˆüöû0,.!%(,&+213=,0<$*5%4$4-"3,-#4"2$4#3&7*:K8HXJYi_n{~‹”~‡Š’˜™Ÿuƒ_u‡n‰œnˆ˜mˆšl†˜l†—k…–j„”h‚’f•e€”d“c~’b}‘_|`{`{8j -W†/U‚*M~ Br%Ft"An+Hq2Y0R -                         !$#$ !#()#()#()(-/045/342787<,7E*6B@LX5?M$,:#/    BSnK]ƒgl†ÿûÿ2./ &"#-$'//2:-/9$*6$3%6,/*!2/ *"2(8*:*:L8IXGWccq}iv€tˆ}‡Ž–Ÿ¥˜XmqŠžo‰™m‡™mˆ™k…–l†–l†–iƒ“hƒ”e’e’cb`}a}_zŽ8k£+T„-Q~,P~$Iw'Jy>n#Ao,W!6[1                       !#"%"$#$#()"'(-23*/2',-.32.2348:GKK>CA5:9-20!!       "   % &# & $ $ #))'(-*/%4!/ ,;!.>"/>*7(5".9-9C)5@2>J3?9<>/34'*,         # " ! #+ $(&$  " # #, &!3!/!/!/+7+6 +9%3?(7A(5>3>H4>H3(-;%5"*:0.-11//"2);.?6DTHUc\jwgw€w‡y…‰ˆ’”‡‘œ]oƒsŒ¢o‰›nˆ›lˆšk‡˜m‡˜j…–k„•g’h„•e’f’d~b~`{`{>:>?<@A?CD)-.%((        !  !%% #& ! &('+$2(+!,#0!,:(7'3#1!/;+9E*7A+7A.9D%.;#0!+   HSmL]~jp‡ýùý945!#('+2)+4/2=',;%3(6,, 1-!1#1#1$2 2*:.=M;KYTdrr‹y‡Ž‹˜›™¡evˆq‰Ÿpˆ›oˆšmˆšm‡˜l†—k…–j„•j„”f’cf’d~b~’b}‘`{=-21$((      !  # # " $ # % $ &+ $( % -(!+"+"-"0&4!,:)7,8*7C'3?)5?.:F*3@#.'    HSnL^fm„ýúþ945##&+&)1+-7).:'.=%3$2-*. 1"/*&4!."1)8/>N9HXQantƒ‹z†Žw€‡Œ’—Ž— hy‰t¡q‰›p‰œnˆšm‡˜nˆ™l†—k…–gƒ“i„“g‘dd€‘c~’a|‘_zŽ8n²0^”+T2X„'J{(Iz>k:g;i1V'                      " "$'#$%% %&%*+)-.*04+02045,11488156.22498(-+"!         % $)+ ( ( $ &((+*)"-$2"0#0>+7/;&3@(4A%1>*6C/=H)3@#/%     GRlM]€hq‡ýúý;78$(-%)3.0;15B$+9(6'5!0-+!2,.$3&4"4%6+:J9HVIZer‚‰v‹~†‰–’›£du„w¢o‰šoŠœnˆšnˆ™m‡˜m‡˜i…–h…“h‚‘g‘f’e€’b}‘b~a}7m²4a™)R0U‚*L}(Hz:f!?m:h.U)                          # !"&"$!&'#$"'(%*+17<,15,/3/35:=>/34-11-21*/-!%%     !  $ % %, ) (*( "'& #(* &!/&4&4(4!0;-: -:-7E#.<*7C1>J7BN%0#    FQmN_pyŽûøü;78 !%+"&0/2=.2@*1@#+<%6./-/ 2!1#3#3$7"4'6F*:GM\ghu~it~ƒ‹”Œ“š“¤Wkxu‘¡oŒ›lŠ›o‰›nˆ™m‡˜m‰šj†—j‡•j…”h‚“f’e’c‘ca~;n´>j¢1ZŠ*P‚-Q‚#Esk9e'Es'N)                     ! " "$"#$%&,+',--23+01,01045277/43,10$)'"!         " % $ % &!$ * $( #)&(&(''5'5'6+8)7D!,9(3@0L>N[apzmyoz€–š‘¤^r€rŽo‹šo‹œnŠœlˆ™j‡˜i‡—g†•i‡–j„”iƒ“gƒ‘e‚’d€“c`|3hª7fœ-X‡.Wƒ$Iv Bp>l8d#Bo/U -                         !#""" %( $("'( %&"('$**(-.(-.045156-12276*/.).,##          ' $ ( $,# $&$ #()&&2$2!/*8,6(7A .:%1>)4B)4C.7E+4A(5'    HTmN_jp‡ýøûC=@%$&/%&1-1:-3<'.:%5#6,!1-,)-!0&4%6(8 .@.>N:KX`o{eqyt~„€‹£­¶[o~y•¦pŠšn‰›l‰›kˆ™h†—j‡—j†•k…•h„“fƒ’f‚‘g€‘g‘eb|Œ1d¨>m¦5b‘/X…&Ly Ao?j;f!An4W +                          $ !!%)#'"$!&'"('#))*/0.34156379,/3*.0'++$)(         %*+ & ' ( (!%+ &)(-#1"/*6+4$0<'5A-:G2B%!",%'1.3<+3<(/<%5#2-- )!3 1$5#5(9(:*<#3D'7F4FScrlw€t}†‚‹”’©bv…y”¥pŠ›m‰šl‰šlˆ™k‡˜k†—k…•l…–h„•gƒ“gƒ“g’f€‘d~a{Œ6iªFv­:h™+S+Q~ Dr Al9cd (                      ""!$!$#&!&) %&"'(#()+01*/.*/./44-02'*.,00#('$#     ! ! ( $ ! ( + )+.- -,/0#3.)8%2%2#/='4C".?$1A)7E,:F-;D(4?/;H,5C!*8'!   EPlP`„vzþöûKEH "%*),4,2:.4?(/> '8&7.0 1"4!1/(8%7$5,?+>.?-?O]l|[gu}‡‘€‡Ž‹‘ap~i€’m‰™k†˜m‡™j„•j„•iƒ“h‚’g’g’f€‘f€‘d~c}Žb|^w‡3`œ2a˜0_’/Yˆ0S*Mz!Dp&Cn9g(@h$                         #"$'$($& %&!&'"'(%)*)-..32*/.377278046*/0!&% %%      " ! & % (. & &/& ) * ) ' $,,, 0 .!/ -< ,=$/@!.<*:F*:F.;F.9E9DQ,5C!)7'!    HSnRb…txÿùþKEG%"$-$'0-2:,2>(/>%7&8/.-&6,!3$5+:'7 /A(k©9k¥6i 0[5Z…/S€Cp;g/\"&0@"/;->J2BO*6D.9F1&.:'8$.@ 1.) 00!3%4(5-;$2D-@/B,>QXmL]l|ˆ’ˆ“˜”¡jv‚bwˆgdd~ec}Žb|Œa{‹c{ay‹`x‰`z‹^x‰^w‡[t„Vo>r±6lª7m§0]‘3Y†2Vƒ#Gt@m0^5[(                          $ "#$"')*/1%*+#''',+(-,*/.054-21-21+0/$##"       # $ $ '/&+ ) ' $'" (-++)(6 /#3-?,<+<%/?)6F1>M0%6I%5K%5K!4H.BSTfyQ`o|ˆ’ˆ“›Š”ž{ˆ“]o}d~_yŠaz‹]v†]vˆ\v‡[u…[u…Yrƒ[t„Yr‚ZsƒWp€Ul~Riy7n°:r³=s±7d™0Vƒ.R%Jw=k/^2Z,                 "! #!$!$!')#&!&'!&'"&'$()(-,+0//435:9/43165*/.!'&     ! ! # $ $ $ (%. ' (/*--.--, ."0'7$6'5E'4C,6G2?O1>M+7D4>J9AN&/;%/)      ESlUc„}”þöù\WY (#(.$(1*,704A'-<'6!*=2$5 4!3#5%8*<->/A"3H/E2C*>O>PcTdriu€Š”„š†” Zn|\t„[u†Xq‚XqWp€TnVpToTm}Tm}Tm}Sl|QjzOgwKbr8qµ:q´Cz¸:j 6^‹-R(My?l7e/X /                      ! !$!$#% %&#()"''%+)*/.*/.+0/,10+0/(/.'-,'-,       ! !" % " ' ) ) & *.0 *, 0$-/ /'7%6"4'7&2A)5E&4D,:J4AO;FS6CO+4B(4(    EQlUc„ƒ…—üòöa\^%#(/'+6-0>/3B)/@$,<&82$4 3$6!3&8)<.A1C!3H&9M%:L4HZ>ReRaq{‡’‰”œ†‘›Œ›_rUl}Un€Tm}Tm}Sl|QjzQjzRk{NgxNgwOgwNfvLcsKbrG^nU0F\0EYN_ngu~†‘™œ¨±Ž]oVl~Rk{QjzOhxOhxOgvNetLesOeuLcrLcrJapJaqE\kDZg:y½B~ÀD€¿?s«/Zˆ0X…&Kw$Cm#>g-Q 0                !" ""$%%$!&%#('*/0+01+01)./+01%*+',-"'(       #" $&++,/ ( '+++ &. ($4#4 2->*9&4@%2A"1B0>P6CT*7E0>J'3?$1)     JUoWb„ŒŸúîògae&%*4',5&*5.3@$+;(9!*?$7$4 ,$6!3#3#7*A+B 2I0H!5N2F_!7KTesp~ˆv‚ˆz†~dvˆQgyNhwMgvMfvMeuMcsLcrLcrJapK`pK_nJ_oF^nCZgCYd<}ÂB€ÃD‚À;r«/Z‹;aŽ%Ly&Hw!>h/N (                   "#&$'$&"%#(+"')"&'*.0.24(-.+01.34167&+,+/0"#!       # % %) # % %%,0 (,$6 ,1#4//#7(8)9,L.9F2$A.,D+D,E0Ha*C^0I,D\7Og-G@\w'=SBRcp|†’}‡s‚i}KaqIcsKcrJaoI`oH`mIamE_mD]jF^jF]lD[kFZiBWf@UdC„È={¾=y¸:o©+T†9]‹+O|*Lz$Bm,M&               !$ !  %!&'$%%*++.1).//45167+01(-.&+,"&' $%       % %# $*-0 , *//0/!2-#5(<(:#1B'6F&5E /?.>2AQ*9I&4C4?O8BT2Daw;R6Tm3GN^oht~y…Œq}„€’Ÿl‚“CZiA[jE\lBYiAXgAXg@Xe@We>Vb=T`>Sa>Rb=RaL2AN5BQ2CP]"2CWfy /F-J!9Y!1N#9+F2N-I 8V/Ji$:V3ORb=Q_=Q^s¯/YŒ4\ˆ/R=j=j3X *                      ""!!!&($#$)(*./$)*-23,12.34,13(-0).1!&'$%     $&" & & %%,% ( *,- / 4 2 2&8)>&:,?%3F(6H#1C+7H*8H/@L3BP-L5AO%4 . !     ITlSd€œŸ®ðèêokn''0#-;qƒ”Vi}'5H#9 6T$<];$<-H,G5O4SAYy 6T!:W=Xu ;WMf-?AQ`my„ˆ’|†ŽŸj‚“?Ub:MZ9L[7IW6IU5IS6JS5JR3HP3HP4GQ4FQ2DN2DN0ALDÃI†ÇG,=FB‚ÃGˆÉ>}½E»:g-R}.Q}*Ky8g2Y *                      #"! !%!%"&'!%'),0&)-+/1(-,055157+03$**"!!"     # ! " ' & %!% (0 ,/-. 2/(:!3%8'9.@!2D'7G)8H2?O,8G-:H.;K>J[6CR0;I%2!0 "     HUlYh„›Ÿ«òææupv*2@)2B9GYhyRbx,:M(;)>%<$<!4)?'>$<&?!9+D.I(?R%7H'7M&9L@Tan}Šq}…z‡Œ‘žg~Wlw1EL4FQ1BN2DM2CL2CL0AK0AI1AH2CI/?E1?I/>H.>HG†ÈNŒÍA~ÀGƒÁ=k¤3[‡0S~#Cp8f3Z"                         ""!" #&!%&%)*&)-+/2-12,10*//157.35(--!'%"&% !       ! " $ % %1 ,22 ./. (!21%8';)=)9$4E 1B&6H$4F5AT-;K8FV7DV4BS3@O+7E#2"0$    IUmWf‚œž«ôæçwsx,5B/7F:CU:FX2>Q'/A%.@!-A$='@&<6#:"9$:3+E4O":P 6K9Md"9M8O^`s‚l{…x…‹…–¢awˆVhs3DK5EP5EN4DL5DL5CL2DJ2CI3CI1AG2BH3BI0AG1AHA~ÁFƒÅF„ÆD~À9j¤3ZŠ/T~'Ht9h/V                     !%   !#'((,.'+.%*+%+*/55,22-25*/0'-,$*($#       $ $%& '.1 /!4 - . - 00"4$7&;'=(;!0B0A(8K(7J/=P+:K8GV2AR/=N5BR.;K!,;"/%      FTmXg…¢¤°öèêzvz-5B%-;.5F.5G07J$/A+=+@&A/J#7Q%A&C/L$?,E*E'AD\v(BVm†6N?Xk¦¹†š¦|‰yŠ•aw‡Yju4CJ4CK6EK8FK6DJ5CJ6FK4DJ3CI2BH2BH4AI4AI1AH@~Â2n°C€ÀDÀAr¯2\7^‰%Hv@p1X                      !" ' $( % %"'*$&#()!&'"*/0(.-6<;6;=,14,14',,$)(##      !  ! " % + +% + , ./ - .0./#3 2"6)@';#1C/@):L)8K-;N+:J7GU/?L:IY3AR$0A*9*% #     ESlUfƒ¢§µ÷ëízvz&2#+8,5C'0?+8JEWl(@4P2Q2P)?Z*F*H*J#A+C)=#4E):K)8L)7I2AP0?L6DR5CQ4BR(4F)8)$%      EQjWf„•™¨ôèë|wz"-.7D8FSCQb->Q&:R$j›3W…*Nz!Cs2[$                      "!""!$!$$( %(&+-"'*&*.'+/179,33278378(./#))%$"'%      ! " '  %. ) 20// , ,1 20 ..%9+@*A+>+;K$4D!1C.HX *;,OV;NR9LR8JQ;MT9LP:KQ;KR9IP9FM8FM5CJ3@F1=CE‡Ï=|À5p³D½B|´n¤2Y‰>e‘+P7`                       %!#$)!&)#(*',-!&().2'-1/36-12P"*;&<#@'B!:#>&A0F)A%?&<+G 6Q/I6Nf5K8PgGb}?Qdkx…xƒŽ{‡’wˆ—,;RguOcqOcnNbmMalL_mH_gH^iGZgCWc!6OQn‰%?ZYv.G\[k{v‚‹y‡‘n~Œ(_sƒRiyRixQhuNhvMfrMerLcqH_mFZiASau²1[=`Œ$Gu!L3BP;HW2?O+;#0'      CMd\h‡‰‰›÷ìí|xz * (2-6C7?M,6I3BY):S'B/N4T4U+K#@&@";&?B[w6V#? 6P;Xt$?YHeOi~dv†y„kzƒv†”#1_t„VoUn~Tn}QlzQlzQiyOhwJbqH]lAUc>P]9JS3EMdÁ1wË(`¬=w¹F‚Á$:Z 4O / 2E(@X$:T%<1G;Pg@Vm,B"0C,:K/?M6GR7FS>KY,:J"->+, " !     BKa\h‡Œžùîï}y{!+19D.7E2?R8H`I^{,G-F2P0Q4X2P)D!<*E/I0K)A\+G*@\*E_+D\?Yr(AVexˆrˆzˆ’z‹—'4f{‹Vo€VoVp€TnRm}Rk}PhzLeuE]l@Ve9O]7JV3DN!gÅ-vÊ;vÁ@|¾G…ÄCz·9h›.W€!Ep##>&;W&E4R,H-H%@,G*D*E-E&;V)>Y5L&UjewŠ…“ž|˜yŠ—2?Jg{‰XrƒVrƒXs„Up„SoƒSn‚Pi}JbuD\n=Vf7M]4HW1BN'gÆ(oÃAÊA‚Ä@À@y¶P/?P5BU;HY4BR$2D,=-' "     >H\`l‡„–øïñ{x{)6-8)7/?U7Jd"4N2C^)9U&B-H";'>)C(D%@/H+G4I#8R$7Q&6J"3I&:P1E[N`qlz‰l}Œ~@MVhz‡XsƒYu†Wt‡Us†Sp…Po‚PkJcwD]qT4H\TgxjzŒm|‰~¡#.cs‚ZsˆXtˆVt‡Us†Up„Qo‚Nk~JeyC]o=Wh9O^6HV4EO1xÒ$g½?Ê?|À?|½D}»Dw«'Nz+Oy 9] (                         $ $!% %'$)* %&%,-%--057)..17606539918;).0*/0(,, !      ! %-&& , + , ' 5: 9 7 2 2%<&;"8*>X*D(C/D_1G'=P0D$L]7EU=IZ$5-' ! !  8?Val‡ƒƒ—ùïòzux!,-&2C&1D*2C!.C'?&?'@$;V%>4N2M)@[&C.M%@3N"6M$7K):N"3I*Z2.I'>W !;+B^1N+Cc+I2Kf5N^x’4Ol\vŽAYpWmƒPcz$7J3CR(5D$2$1$ !   7>T_j…˜•§ûîðuoq#"+%+:)/A)1D#5MH_|-I.L3Ns <2O5T*Cb+K.De$?/G$9N)\0Ie.HUr:W#O+8H"0-%# "    29Oak†š©ûðïsmn!!)(.;,2E/6I*CSkŒ*F-L1Ox-J3P5S2Ki $C-M'D,E 5K 4I(:O$6K-@U4GYGWgiw†{‡’p‚‘hs~bsƒYtŠTq†Qp…Rq†Ro„Oj}KfxG`r?Wi:Qa:N]=O\AQ]4zÏ0wÌ2yÉ9|È2q·5r·?v´7a“/S~(Ci+                     !#! #$'#$&&%(!',#),+02(--/44-14),0-13378-11165%*)',+$))      ! % - +% )+.R1]0R0&9[,K2&?:W=#:T+F1K0Ha 9Z.K%Vi:Qa@R_BR_FU_7{Ì2vÈ.vË2zË0s¿)aª=r°=jš)Lx-Fm /                    # "$)#'$'%*+$'$)$('-0',-*/0&+,*/1&*-57;(+/.23*..%*) %%    ! !"+ ,' - 0.S;&@g:(<`6,E#9\*I":0Ga!9U 7V3O,Ba1Gd#17;16;+/2389+//(-,"''    $ & # )) , 21T*Q#F.K-K)C'=!> 7%9!8 :)D.J-H/H 5L%=S:Sk;SjF^v^vŽOh€5LcN&600   !  ',?dlˆ’‘£ÿõörkn"*#+9+2F9E^Na},G)D)C'B+E(B,G(B*D&@+D,D$8P!6L';Q);Q"5J4DWHWi^m|lv„vŠ—o~Ž5DTd’Vr‡Tq†Sp…QnƒNi~HcwC\o?Sg@RdEVcIYeL]g3wÇ>Ò'mÁ.vÉ"d³*b®6h§8e”.S.In .              # )" "#!!#!& %"%)/2$)*#$$(,"%")+$$#(+(-0FLO5"0A!3$9-=V"3N+=U.@V#4I0CY-@V+?S.BT3FX8J\8I[0?P"0?(8+"3)' $ &+>fl‰’’ ÿööslm!"*),604C7>Q#/F$2F+A&<-E)C+E,F,F-G.G0F,B4J%:P!4J(9P*=R3EXGWhXhwirw†”K[l)pŠžXsˆXt‰Sp…QnƒOh|HauB[m?TfBTdGXdJZfO_j1sÃG‹Ù1wÆ-qÂ'i¸+d±.a¢Dq¡8a‰,Hl,                      "!" #"%( ! %&!&(!(+&,/#'()..%**$)*',.',./69/56-23+0/"#    %,$ ) * - + + , ,0#5%950%8 3 42"6(=(@-G#7N-B$7K2EZ/@T-=O5DU4BR>M]6EU0=N+:!3, # "     !%8hm‰““¢ÿööumo )(,516C4;M,5G!/C*A)@'?(A+E)D%?'A,G2J*@4I4G)/5E09J+4H#0E)@ /G)C,E+F'B)E-G,F-F0G4I3F':M(9O%7L+=OVj&:M'9+ $ "    *jrˆŸžªÿôõvrr #/.4A7!2 ( "   'kt‰œœ¨ÿôõwuv"%2/6F3:J3:L+4G#0F(A,C!=&C%?(B&?/H(B(B*D"3M$6P"5O"7O&:Q-AT4GY4EX1DY(@U’§¹.g~“\vŽ^yiƒ–YrƒMdwG^pBXiH\jL_kRdnUgq\ow6uÀ<|Ç3uÂ5wÆ/p¿0l·4m´1f¥+R„%Eh6                     "   !$+- $,-,26&,2(,2.37'-06<@,15-23,12!&'#()!$  !5Q4+F'D$B-G1F#4I$5J3F1B$5E!1B-;L"3DG]su‰Yfut‡˜_wŠ[v‹Xr‰Vo†q‰šQfuH\gK_gK^gNahSfnXku8xÂ4xÃ7wÈ(j½,lÂ,j¼*e­*_ ,X‘,Jr4                   !!#$"# "#&%*"*/ '*'+-*/2,34)10188'-.168&,,"((%*+  6Lt#G,O.U*M.P-L$6T2P.O,K#? 94!;:%B :$?+A,A&?(@*@ 4J0F%;Q2H,AV6J&Q/7M%0G+C .H(B*D%?&?&@)E%B 3N#5M#4I+!;%<*A%<,B!5M2K0J 5L#:P&;P#6L1DX2CV8I[2CT;K\;J\?Pc*;N->&7 +) $ $ #' kr†›š¨ýôõ‚~"(+;9=OCHZ6=O*2F#-E,E+F-G)C,I%B#;$4L$=9Ja,BW,CX+?R,=P'7L0?Q(92BO‰™¥QamLYi5EW‰Ÿ®r‰™tŽŸZv‡To€PiyJaqE\lShxk~ŒGXdJ\dL^dPci%Y¤6n¸5xÅ,n¾+mÁ)i½'f³0h®0^›"@m 0  ''(5O,E "7O5 +V(@X$;R)?V;Qg6J`0EXCXk=Rg7Lb,@T!3F#5/( ! "  hn…þõö‚$48F;?Q=AS:AR.6J!,C!-F*D&@)C)D";4->U.AW8H`AUmI^w4H]*=P+@R:La5EYGYjiy†Pam?SawŸqˆ›czj„—_zŽUpOhxKbrD[l@Vg”¤fw„DU_GZ`M`e.g´5n¹,kº+l¾%e¹(g»'g·"Y£1_ (Ix .  0':.F`/C] *&*,Nv  "9&Am1Mo "  5(Ad+Ca+D#,?]|#5,Vt‹!;'1 (=Wi,K`(23IYLkƒ%3I_Z~•g~‰KhyAYr )4H[e .V|ŠD[j+26$++#"$$     # $ & )'*B2U€ !C6 ;`'H 1(>*I=c@)B#>!:[#E8Z7Y&C8V)C*F#9U6O8TqRt’.H`2E\B[tVpŠ0Ic9Pi(=S(;,( "    djŽ›üôö…‚‚';?JEJW@FV7=P1:P.8P(4O!/J*F-;Wg{Qfvp„•€—©w§Ÿ¶Ò~—¯©½\"7':'@\" /&8S'9%2J$6 1H.I!.D.A %1BRTj=Um3Mh.Hc/G_)= 0) $   `ey––¤üóõˆ„…))1ADNUXeFIZ>DX'2HHUkM\rl~—l‚›•­yޤ‘¥»’¨¿ ¶Ó‚™¼t‹²]u—kƒž™¯w¤n‹žƒ¯‚™ªNas#4F$7L=TnrŠ¡Yp€€—¨g“]w‹VoNgwI`oDYg@Q^;LW7HP:JN:IL=JP1o´2l²'c¯-j¹!^³T©I˜&X¤H’*K‚8  (:V2Y $0Gf'@/A^%  5 3      "  #!"-%--;@IV+>N->ay†Zvˆ&/Pds?\s#.=D:TgMi|(.8*//!"$%    )$ " )00Jy)M!:V7` !C$= ; :]'I#:Y$@$5O0N!?c+L#6Q&?b+M2M&:S-Id=[w'Ca/Ja6MfBVpPY9KR7GO4CF6BF:FJ0j®P•+b¬)d²+gºR¥*]ª'Y£CŒ"By6     .)@ "           !%$ %! )$%-&/%('>HFWl!*1!*1ƒœ­(>P$,/),-%*+%*+##   #*# # (-"Fq: ?3_9; %C4X !A%D 9Y+F.O5Z)D+?&Ad7[+G&;U9Ur!>[*B[0H[2Ja3Ib3J_Ur‹/Lj-Ie1F]->P):1) ! Y^u‹Œ›ûó÷’Ž‘XVbW[imv†‹ŸŠ™°ŠŸ¸ž¶Ô©Ãå°Ìð©Æì­Éï·Ô÷µÕõ¶ÕôªËî­Ìô«Çó°Ê÷®Èô¬Éñ¯Éï¯Åê±É롸Ødy–&8N/C[4Jl4Kk”¬z’¥c|^vŠUoMfwLaoEWb=OU6FL2BH3@F4AF9DI;x¿+a§7n¸*d±.h·#[¬$[¥M“@„6j /                      #!$ $"(+%($("),#+/%.2$-0&.54.K,F3J&=T2K'=S:TmGa{*AX:MbZs‰@Zu2Li,C]&G6AE>IK8xÇ,b«']§2k·3j¸$U¨(X¥HB‚&U(                    !  $ !! "&) #$'%(&-0%,1+27+18,2907:*12+01',- $%"&'!   ' ) (& * .*G#?c+L2;$@ 5'A$>*C&?*D+F'E#7S.F/E*?W&=U$;Q&=S/F]"8Q#;R8Nf-BZ5I\@Ug=ThI`x?Vo2H`(:O$4G(;.$   U[oŒûó÷À¿Å†‘¢¡¸§½Ü®Åë´Ì÷¨Ãï¬ÈôªÈò›¹â­ËôŸ½æ¯Îõ«Ìð©Ìñ¥Èñ˜ºèšºì›»ì›¹é¢¾ì§Ãð«Çñ­ÈðŸ¸ân†«XlŠo–dv‹G_v{“¨n‡›c|‘\wˆSm|MerI^lCUb=NY9HR8FN:FKBMPFRT-qÀ+f¯"[£5r».g³#U¦O™D„1k"I                   (;O0AR*?Rf'0 !%"'$&*$+. %( '*$+.#*-+/5/3:049,13/45)11)./',- %&#$  !&& ) + * . 3- 1%>!7"8%:,G+G-J+H*G&D!3O,F-F"8Q0F/B1E)AX 8P)AW6Ka5H]8M^?Uf6J^0E[0E[0CY%7J(9M.A. %   RXk‘ ÷îõÌÎ×—¨¾¬Äá²Íï±Ìó§Âî¥Âî¦Ãï¦Ãï¨Åñ±Îù£Áê©Ëñ§Èð¨Éó¢ÃñŸÀñ–·èš»ìšºë›»é¡¿ì­Ëõš·ßw‘½¯Èòj€¡wˆž^u†©¾o‡i—`zYt„SlzLdpK^mEXe@Q]>MXANVCOSJVZQ]`8uÀ;t»/i°)c«']¥L˜DŠ .h)\?                     -@P-G'1Jh4 "!$ $$'%*."&+#&%,/*14*14*15-4718;-47$+.!))$%"'(!#   "# (/' , -2/ -%:5#:-F,F+G!2N(D(E&7T);Y1L3N(;U1H3I 7M 8O&=U'>T.E[2I^?Wj5L_:Nd6K_0EZ/CX.BX.CX2H-A. #  HOa’Ÿúð÷ÍÐÜŽ£½¨Ãã´Ðï³Ìó¨Âì¥Âì¦Äð ¿ìœ¼è½è£ÃíªÌð¢Ãꙻ䙺ç¡Âñ˜¸è›»êœ½ìž¿ì¤Äï¦Äî_{¦¡¼ì¯ßNi‘FYwSg}Pi~n‡œhƒ—^zŒXtƒRkzLbrK^lI[gEU`FT]IW]LY]VbgYfl-b§$S—,[¡1a§H?…4v$\ "P 2               !1)C.H.L%7P$#"%!!" $%($)$).$'%*-(.0)/2'.0'.0,36(-2"),%-/$*,$%"$  " ) ( * (* ,8 0 4-A"7": 51 5'>*A(A+F%@-G)D.I 4M#8O,C3J(>V#8N)AW6Qf,E[=Si7La;Ne2F\*@U&~?€@€1m !W B '                   /G2O,$2D . #""%( ',"(!', %(%)-'*.157',-(-./45/46#*.&-0"(+!&)!    "!$. * + *3 -02 1 4+ 2,F*C+D1J.G+C0F0K+G3M%;T.G$8Q,BX&=S3J`3J`-E[8Od9Nc7La0EZ)?T(;P1I+=X(7Q+@*   FFX›–¥üðõËÐÝ|Œ«·Ðñ¹Òô­Çí©Åï ½éªÇó¡¿ìž¿í–·ä›¼ä«Ëñ¥Äíž¿ìŸÀî—¸æžÀ씹æ Ãï¨Éò©Æë¨Ò˜³äXrªOf—"3VK]vg–oˆžf€‘_yŠZr‚SixRgvRenQclRajTbjWdl`ntdrxlz€1b¤<}!Dƒ>{3r:w &^ J1                  1AS#3J$2E !$#! '* $$)$*."'*$(+*-0&+.,14+03-25+13#++&.-%,,"&'!%(   #+ ( - * + . / 13!7"7*?$;-F,G,F,F-G-G-G!2J,F.J!6P0I"8Q#8Q+@X"9O/F\.E[1H^7Od1G\6K`1CZ1CZ(8P"3L$7Q%7O&7L&7   GBPÓÊÔýôöÏÕä¤Â¸Òô·Ðô°Ìò¦Äí£Áë¦Äí©Èôœ½ê™ºç›»æ¦Äì£Ã웼é¾ì—¸æœ¾ì•¸æ—ºçœÀê«Ìó¬ÊɫßQiŸ%9c#/LEVlqŠŸg‚—e^wˆVoRhxShvUhqSfnVgnYho_lsesyn|‚r‡*V•>|9r6n/i*a#S ;                         &  ! !#& "%'$),$'"'(,12/47,15,14%*-.46.66(00%--!&' "   -0) - 41 - 0!6 1#9$;"8+D*F#>4O-H(C'A*E.G/J"9S!7Q%;T4M$:S'>S+BX&=S7McBXm0EZ0E[4H_3F^&7Q->X"6O3K)>U-@*  d[fË´¹îââ½ÀÏœ´Ô³Ïñ±Íñ²Ð÷¥Ãì¥Ãì¨Çð À뜽ꜽè£Ãë¬Êð¨Çï Áî¾ì”µã™»é“µãš¼éžÀí¬Ìõ§Æë{šÁ˜´ìQg;(3N8H\c{g‚•c}Ž\t†Vn}UkxSitVjqWjqZkr`nvcpxmzƒtƒŠy‰;w;p #T'Y*^$U"I-              "       "" !&""#&"$!"*/0*/0056056+01*00$,,%%%--(-.#'* "23 111 , -#9 / 3"8(?&=)A-H,G.I/J'B%?0I/H$:T5O4N4N5N'=V8Ng6Le2G`FZs6Kb3H]/E[,CZ,E]#:Q"7M3L&:S-@[#4M%8 ‚x~€RQغ¸ÇÇÕ¹Õñ¶Óô¯Ìð®Íó Àé®Ìõ ¿éž¾êžÀì¤Åî¬Ìð±Íô§Åꙺ陻霽둳ᘻ眽é¬Ì÷–µß®Úž¹õAUŒ54@XFWld~”g‚•c{Yq‚Vm|WlxWkuXls\nu^ovcrylzr€Œw†Ž—?w6i N+['X D 5              "      ! !! !$  !(,.$'*#'*$)))//+11-31+//,03.46+02'--$*+ #  !' * . , - . / 0 3"7&?'B%=&>(C&A,G+F.I/I/I2K6N!9R5M"9R%)B'@#>0K+F,G"7R1J,E5M 7P3J#9Q1J5N$:S.E^.F^&>V1Ha0G\0FZ3J_4Ka#8Q0F\#6M!3K)I3H_!0@R^6N_>Q_%,+2#$!&'+'/2&-.+32+42'.1*21*0/&++ "    # ) , *2 647$> 7$;":)B%@'D-J+G0L5N/H 5O.H3N,F(=X"7Q4N)>Y#;W$OY,3-1'/1%-,%,+%*)"'( ", (+ /3!8#='B!9"8%<.F(D)G.J2N0L0J.H4O0L 6R"9T+B],C_'>[.Ea2Ke4Mg2Jd5Kf3Ic2F]7Lb7Mf.D^,C\"9R(=U*SWl‚iƒ™f•ay‹[qUkyZmx^p{cs€fw€o‡sƒŠyŠ‘~˜‚•œ‚•”œ1b D*5 1( %   !37Sx 3 *.L} *%;_ *BfD,Bc7  /+Cf 8    ,4Mn'=U#W$7R0C^6D`'4L*5H"+<49HÑÁÇáÜæ¯Çæ²Ññ²Íò«Éñ®Ëò§ÅꜼê¡Àí¥Äë®Ìð±ÏòªÈòŸ¾ë›¼éœ¼è§Æñ˜¹æ™»ê›¾ê¥Èñbƒ¯˜¹é¬å+U".G2DZUl‚g•`|[u…Vl€Ujz[nyat}fxƒj{„qˆv†{””™—€”›~š7h(P0 3 0+$   "  +Hs .=+Cp =.X 0Fk=-Gj9.Ec1/C\!    '1Jj #4Jh!1$83Mi !1A/Mc":K;Vi#2b€–+%+/*188P^UtŽ .Sj}(4=&+,(-.!&'   & + + + 1 14$; 4!8$?'B#>)D$A.J,H+G/K0K/I.I0L1M2N,B_"8S&Uo3Jd5Lf2Ib+CZ*@V):S.=W5E_GVq8E]9CX6>QBG[ÍÅÑ´¸Ç±Ìî³Ññ­Êî¯Ìñ¬Êï©Çï¤Ãî£Âî¬Ëô¬Êï³ÐóµÐò¨Åï¡Áí¢Ãð¤Äï©Èò›¼é›¼ì›¾é¨Êô\|©—·é‹¥ÞG#2J,?VZq‡e“`{ŒZsƒTk|Vkz]qzbu}gz‚k~†p‰vˆx‹’|’˜}’š~’œy˜5f(S 9 0 0 -%!  % !   0P}*L@)Ev0'@d.)>`/0Ii.M .C'?]%(=%7Q  )7I*=X*A':S *&7K;Oi)'9L7Ti$7Le{)[u'(07'.2?P\€¦¼c€Rdy(1=(,1%+-$&   $ ( * . .1 2 0$;"99;)F*E+H,I,H-I,I2N!5O1J2M(>Z&[!3M%"$$  #   !  !!-!& (#%6/?4EV%86ISm—Uk2H^1B\1@Z7F`EVn>Lc6BX6@X1X!7Q$9R&:V&=Y.G`2Ld4Ld6Og.Id-Gb7Og;Sj>Un3Ga0C^GZt>Pg/=T;H^4@W&3JUg|©Áß´Ôö«Èç¦Åñ¤Áì¬Êó¡Áë ÀíŸÀë¡Áå¸×÷µÒó¹Õù§Åí£Ãî£Åð¢Ãì¤Äë¢Ãï½ë¡Äì¤Ãì®Ûƒ Ù%=m'E6I`i„›f~”c{Zr„Tm}TlyYo{`rasewh{‚k|…o€‰t†‘vŠ•w‹™t‰˜l‚’)Jx3a$J 0&*) & , & ! ! & !                !!!" %&'#$(/1"+..9<2>EHS[6;@,26'+-)./   #2B + ( +10 - / 1"8 7&=53#9#:*E*F*A+A%< 1F*?0G 7R4R 4P#9T3M/I!5O&>X 6Q%;U1Ha0G`=Tn1Jc+F^ / - + * + +4 0%; 1#3I3CX&5J!7";,G.H2I-F-AZ/I+@Z&>X)A^$<[%;X-C_+A];Ql+A\,C]0F`%5OC[st¥b|‘]wˆUmPizTjuWkvXkv]px_rzat|cv}gzm‹o„o…‘l‚‘f}Ž&Fw:g*Q 6 -+*! #3 )$ $ !     %   !            %,%#"! ),&*"(-"+.-46*22+32,44)12&--$)*#()"%  (3A"5 * +.)'00 6 1 7-S‰+O%6Re|”h€•b|]v‡Vo€QiyRfsUhsViqWjrZmu_qzat{exi~†kŠlƒŽdzˆbx‰(Hz8f,T ;7 /*#  '9 +& $% ! "             !    !!!% $#& "$ &+'.1&//)11-55*22(./+01%*+!%#$,"+4*6 % *0/ . + -02"913ARhu…CQ`\l}:NbNc{G]xCYu?Uq?UpSj‚0H`(@\8Pl=To'SiE\r]t‹°Ëç²ÑòªÈíªÈî°Ðõ¬Ëò¥Åî Àê§Åï«Èí·Óõ¸Ôö©Æí¡¿é¤Ã嗸ãžÀë™½â£Æî‡ªÓ•µçz˜Ó-@p(G3Gcl†Ÿe~`z‹Zs„RjzPhwSfqRemPckRdlUgoYkr_qw`v{eze{†f|‡^t[r‚+K}9g*T$F 60 .!  (< , $        !            !$!""'"$&*,"&'*//'-+")',21'.-&,,',-*/0#  (%/7'4 '0&<"6 4$6&:4 ,C/?RIXh6DQ)8D;LZDYmQh€I_z?UpBXs=Ske|Ph|BZrF]w5Ke1E`;PiMd{AZsAYr9NbCR_#+4D(3A;GQ>JQ>JO$* (1)5EUj{^xŒj—!6LNbwSi}Jaz¶Òï¯Îð©Æê­ÉîµÒ÷¨Èî¡Áê£Ãî¤Ãì­Èí´ÐóµÑõŸ¼å™¹ä£Ã✼ç¢ÃïœÀç§Éñr•¿—·ëVr¬'8a%@H\xx‘ªf€’^w‰ZrƒSk{OftPdoOajJ]eK\dM_fPahVio[ou[qx]s}Zp{TjySjy*K|=l.Z"H 9 2 -# *? * $   ! "            !! "!! " %"( $"%$'$%,12)./%++%*+(-.$*)'-,!"  -5>(0>*-#5+=*=.JYHWhTe}`u|’®g{˜\pŽNb€–°e}•e|•Sh‡\q=Ql9Kek0\ !E 9 5'"  -B * $ !               ! % %&*#& ') %&#()&+,278-23-23(-.&..'&+10',,  %,3[du6AS) ,;)5GIZl:CD,43#))"#   :CKVdv4DVQdqWhy@Pd}‘¯‚–·¤Ç—©Ï¯Âê±Åð°Äï­Àî°Âò±Àð²Àô´Ãú©¼õ£¸ð£¹ð©Áö¬Å÷¨Áô¦¿ó©¾ô«¿õ¦¹í©»î¬¾ð¬Äö®Äõ©½íw‹º«Àñ«À÷®Äø¬Âó°Åó ±Ú5Dc@Pi‡—¯‘¥¸¯¿Ñ7GXIXi&4D_n~l„¡´Ðð¯ÎñªÊîªËïªÊî¨ÇîªÈñ¤Ã럿å¨Èë²Ñô¡ÂéžÀ뛼皺æ¾ë”¶â—ºä¡Æë|œÅ­Ý‹©Û:O{66C\h~”l„˜b{Zt„Un~SixNdpGZfEW`ARY@OT@OR@OWCSZIY_K[aJ[bK]dN_hRdn9[ˆ2T‚6d)N; 14'"#+B + % $  "       !! !!#!&#("#& &)#)+#+*+33&-/*15-49,55%--"**!"# jrvN\fO`vDVr€“³ Ä„–¼®Á줸駻ë­Àò°Ä÷¨½ð¥ºí¬Àñ®Âóª½ñ®Ãø¦»ò¢ºï£»ð¦¾ô©Áõ¥¼ñ§¼ó¥ºñ¦»ò¢·î©Àö¦¿ô¤¿ñ§¿ï§¾îªÁñ¦¾ðªÀóªÂö©Áô°Çø­Âô¦¼é°Ý—«×¡µßSfŠ7G_N[lfu‡r‡ž{–´©Æè¯Íñ¯Ìñ¨Èí¦Çï¦Æð£Ãæ¥Åë©Éì¬Íñ™ºâ›¾éŸÁéŸÀì•·å”¶ãžÀê¢Äëf†±£Âö|–È)b’5Wˆ>p-Y#F7 2)" )*C , & #   "  !$ !        !     %!"!& %!& !(+!(+"**+/4/38.4928=4:>,23'-."**$% "&ßÚÝ„ŽŠš±v‹¬|’¾¥ºê¢¼ë¤ºê¨¾í¦½ê©½í¥¸ë°Æö¯Æó©¾ë©¾ë²Çô©½ì¬Âò¨¾ñ ¸ì¥¿ñ§Àó§¿ó¡¸í¥ºñ¨½ô©¾ó¢¸ì¯Åù«Âõ«Âó©Àð¯Æø¦½òž´íœ²ê¨½ô§»ï¨ºðŸ³é£·ï§»ó¤ºò¢¶ö^q´BQ|dwŒƒ›°–°Ì¹Õö³ÏóªÈï¿ç¤Æî£Ãí¿ì•¶ãšºä§ÈìªÊí¨É㜽꛽蜿떸暼è£Åî¡Ãë„§ÕŒ¨á!5g"D*;UQgd{‘iƒ•_xˆZr‚TiyQdqL_hGYbCU]CSYHXZMZ^RbiWgmYjp\ms[kq^mu^nu_pw7]Ž2YŠ=o0\*P A 7)% ($< ) ' "    !                     #!&$ $ '*#*-)/4+1606;(.3,2706;3;>*36"+. %"#$)àØÛ’•…¡{«jƒ§¥½é¡¹ç¤»é«Â良饼꠷æ«Áñ¨¿ì¥¼éª¾ì«Àî§½í©Àð¦¿ñ¡»î¤½ñ¢ºî¥½ñ¤ºð¡¶í¥»ð«ÁõªÀô®Ä÷ªÁóªÂõ¨Áó®Äø¦¼ò¤¸ñ¡´ð¨»ó«¾ó¬½ñ¥µì °é¦¹ð¡µîž±òP`¤)V}«}—²Œ§Æ´Òó¯Íò¥Ã쟿è¤Åîž¿ê¡Âï™»ç¾è¨Éì¬Ìðž¿ç˜ºæ˜¹æ˜¹æš¼è–¹å›¾è©Ëò°ØŽ±ãˆ¥Ü L(H8IcSh€d}‘e}_x‰Yp€TiyRdqK]fK]dHY`JY_Q`cUdg[kpbrxeu|dt|cs|_pzbs|bs~:`“)25#+1"(#,&(0ÝÕÙ‰‚…z}ŠŠ›³‹£Æª¾ë¨½ìªÀí«Âí®Çð¥¼ê¡¸çªÁ茶쥼é­ÄòªÁð¥¼í¤»ë¥¾ð ºë¤½ð¤¼ð¤¼ñ£¹î§¼ò¦¼ð©¿ó¦¼ð«ÂôªÂô§Àó¥¾ð«Ä÷©Áõ©½ö›¯é¢¶í«¿ò¬¾ñ¬»ð¦µí¨ºï¢·íœ°ò?LŒ#P1DbYu•§Æè³Ñô¯Îó¢ÂꜼå£Å皻é Áî¾å§Æé­Íó›½ç–¸ä¢Ã虼瘻ç Âë©Êñ|œÇ®æv“Ê$K*I6FaKbyiƒ–f~_v‡Xn}UixSeqQbjP`gN^eSagXgl^mpcsxhxl{ƒhw€hwhx„eufx„8\6WŠ*J{2_#NE<-(/"6 ' "    !              !  #"("( &+#($*/*05*38+48/6<.4:*06+06$+-(01', '!*%)3×ÎÕˆ„u{„†›³©Ó£»ë¦¿ì­Âï­Âï¨¿ì¨¿ì£¹è§¿í¥½ê¨¿ì¨¿í§¾í¥»ë§¾ï¥»í¢¹ë¤¼î¥¾ð©Âô¤»í¥¼í§½ñªÀó¥¼î¬Ãõ­ÄöªÃõ¦¿ï­Æ÷§Àó¥¾óŸ¶í¥¼ï«Àò­Áó¤¶ê¥¸ìªÀñŸµé“¦è0:u)Q < 0%< 5 , &              ") !%! #! %!&$)!'*(-0-24+02,25-6: ),),%06$,6#'5&-:~x€ž˜žyƒ”w®¡¹ë¥¼ð¦¾ë°Èð®Åî°Äðª¿ì«¿î§¿î¦½ê§¾ë©Àð©¾ó©¿ñ©¿ó¥½ñ§½ð§½ïªÀñ¨½ï¦½ïªÀô£¸ì°Åø¯Åô®Åò®Æõ­Åø¬Äø¨ÁôªÃöªÄô¥¿í§Á勵ð¢ºí¡µî?M'U%8VIf†¾æ­Íò¢Ãé¢Âí¥Åî¥Åî À픶䙺éžÂç§Åì©Èñ’´à±á³ã˜¹ç—¹è’³á¤Åð Áì Í˜´é>Y‰1V)b’+L}fš9]Ž,M~#?q #RH@ 6'D 7 , $% '     "# %&!!$$(-"(%#'"&*/AGM09>Q]c(4:HQR_ddŽ’„ŠŠY_b7=>$%$%'01 ),!).&.3)-2 "$&/:=%/5$-3a^dwxyŠ¥’¨Ð­Ãõ¨¾î®Äô­Äó¨½ì¬Àï«Àï«Áó§¾î¡¹ç£ºè¥¼ë¤¹ë¦»î­Áñ¤ºé¤»ë¦½ï§¾ð¥¼î¤»í¥¼ï«Àó¢·ê­Ãö­ÄôªÃð¬Ãò­Äõ®Å÷­Äõ®Æö¬ÅôªÁñªÁñ¦¿î©Á梁òmà V(6WG_|¬ÓªÌî©Æðž¾ìš¹ç½ê£Äðš»çš»èž¾è¥Åé§Æìœ¼é’³â‹¬Ý®ß°áŽ±á’´à¡Àë…£Ò€žÓ:V‰(K)8UPea{Žg€‘ay‹[q‚TkzZn{^oz`s{fwhx‚izƒk|…m€‡q„q†n„g{‡^r}QgtG]m>Ud;Tc9Rd8dŸm3a !J ? 8'C5'32=EZek6BF/7=&-4;BK9BJ;GM*4*7BCP\5CRYfw¥³ÃÅÔäÅÕ啨¸½Ñá¶ÉÙ¿ÓãÆÜíÃÙíÉßôËâö¾ÖèÁØìÆÝóÅÝõ°Êà¸ÐâÆÜíÊÝñÂØì¹Ïå®Äו¨¹CSb4AN0t‚ˆ¨¯JS[.6:$+-% "(~z||€‹Wkˆ¨Ó§Áô¦¿ñ¯Äô°Æö¨½í©½íª¿ï¬Àñ¦»î¥»ë£¹é§½î£¸ë£¸ëª¿ò£¹ì¥¾ð¤¼ï¢ºî¥½ñ¡·ê§¿î£¸ì¦»ï®Ãö¬Äô¤¿í«Äõ§¿ò©Áõ°Çø°ÆøªÁó¨Âñ¦Á量ïªÀó·ë•¬ìKU™&0^Pb[v˜‘¯Ó²Ïô¢Â뙸å¤Âí«Éò¦Ä㚺ç¤Ãé¦Åê¦Å䒲â°á‘²ãŽ°Þ’³â ¿ë­Ëõv“Á|–Ë(=m-QH÷óö‰”ViƒˆŸÊ£¼ï¦Àð®Åó¯Äô¯Áò­¾ï°Áò©¼í¬Áó£¹é©¿í¥¹é©¼î«¿ò¦¼î¢¹ê¦½ï¥½ï¡¹ë¦½íªÁñ¤»ëŸ´è¯Ä÷°Æö«Ãò¤Áí©Âó¨Áô¨Àô®Å÷¯Åö®Åö¤¾í£½ì¨Àò§¾ñµñŠã%d/8%90(5.9Gœª¼ÈÛðÁÚñÂÜó¿Ùð¾Ùñ¼×ïºÖî¹Ôî»ÖñºÓïÅÛöÂÛõ»×ñ¶Ôï¸Öñ»ØóºÓîÄÜ÷ÀÛõ»Öð¿Úô¾ØöÀÛöÀÛö½Øó¿Úö½Ù÷¶Òð´Ñî¸Ôò¶ÓîºÖñ¾×òÀØóºÔî»Öð½Øò¾ÙòºÕðºÖñ¼Øõ²Ìê¼ÖòÀÚó¾ØîÃÜô»×ù6Lm'9&-+Z[hÙÓØ’”œXj‰ Ç§ÀòªÃó®Åõ®Äô¨½í®Áñ®Âò©½í©Àð¥»ê¤¸è¨»ë¬¾ï­Âò¤ºê¡¸è¤»ë¦½î¤»ë¨À쪿òŸ´ç°Åø±Æø¬Åô§ÂðªÃô©Áô§¿ò®Å÷®Äö®Æ÷¤¾í¥¿í§Àñ¦½ï ¹öyŠÒZ/?d=Wvœ¿¥Âå­É웼韾ë¥Åð¾éš¼èš»è¡Áé§Èï½é•³ã¯á¯â“´çŽ®ß˜¸ä¡Áít‘¿{“Ç*=s#F1Faa}•]zbzŒYqƒTl~RixRfsQdnRdlWfl[io^lrcqwftzfu{eu|`qxUhpM`hAS[9JS7HR6HS8KV9MY3ZŒ:f¢QY=OZ;LXM=IQXds»Íå´Ïê¸Ôî¾Øò¿Øò¿Ùó¸ÔîµÓîºÖó·Ôð¶ÓíµÒë³Ïé¯Íç²Ïê¬ÉäµÒí¹Öñ¹Öñ·Ôïº×ò·Ôï¸Õðº×ò¼Ùôº×ò¶Ôï¹Öñ¸Õð¸Õð»Øö±Îë¸Öð¸Õî¹Õð¶Óî¼Ùô¼Ùôº×òµÒí¹ÕñºÖó·ÓñºÖôº×ó¾×óÂÛö‡£Æ/C^,5@LUX\gôíñ—™ ly“™®Ö°Èø¯Äô¯Äô®Æôª¿îª¾îª¾ï¨¼ï ¸êŸ¶ç¡µæ«½ñ¯¿ö¥·ï¡¶í¤ºñ¢·î£¸ï¤¹î¤»î¤ºíªÀôŸ³é®Ãõ®Åô®Æô§ÁðªÁð«Âò«Áó­Ãô±Ç÷¬ÄòªÂð¦¾íªÁñ¤ºî›°í=LŠ*5b.JcšªÅæ¯Ìð¥Ãë¼ç¢Á퟿윽똹皻闸䠿è¤Â햵擴敶瓴嚼둳á¢ÁÍe~²+Ar1U9Ok`xXp…Wo€Qj{MetJapK_lGXaCSZGSZGRWHQUFPTGTWKXZMX[LZ_GV^CS^CS_?OZ?P\P[=O[?O_ )N:c£@m¤?f™7Z‡0Q‚=o*Y C5 .&5I4CQ;FOXcp¯ÀعÒì¹Õï½Øò¾×ñ¿Úô¸Õï¸Õð·Óð±Îé´Òì¶Óì·Òì³Ðé·Õï¶Óî¶Óî¸Õðº×òº×ò·Ôï¹Öñ¸Õð¸Õð¹Öñ¹Õð´Òí¶Óî¸Õð¸ÕðºÙö°Ðì¹Öñ¹×ð¹Öñ¸Õð¹Öñº×ò¸Õð»Øò¹Öò¹Õó¸Ôó·Óò»×ô¾×ó¾Ùò•±Ö 5S!/63CJTYcðíð› ¨fwŒ¤ÌªÃò°Èô¯Æó²É÷«Áï©½í§»ì¦ºí¥ºí¤ºê ¶å«¿ð±Ä÷¦»î¤ºî¡¹íŸ·ë¤¹ï£¹î¥»ï¦¼ï¨¾ò¡¶ê®Äö°ÆõªÂð§Áï§Áð«Ãô«Áö¯Åø¯Æ÷¬Äò«Ãñ©ÁïªÁò£¸ð’§æ0A*:e&:Wt¬­Çê°ËóŸ»çž¾é¡Ã으왺陻隻ç¥Äë¢À딵哳喵蚻뛼钳࠿ìr»C[*Ao#5VI_z[t‹Qk~NfxKbsG^mF\kFYfDU^BQXCPVAMQDPRCOSETWJX[LY^KY`DU_BS_DU`@R]=O[=O\?O]?P]@R_$L9[“;cŸ?hœ:`“0S…"@q,[ B 4 0'<2?Q(2>ENY¢°Ã»Óí¸ÕîºÔî¼Õï½×ñ»×ñ¹ÖñµÒí·Ôï¸Ôï¶Ñë¾Ùó¼Øô¸Ôð¸Öï·Óð¸ÔñºÖô»×ó¸Õð»Øó¸Õð¸Õð·Ôï»Øó´Ñì¹Öñ¶Óî·Ôï¹ÖñµÒí¹Öñ»Øñ¸Öï·ÔðºÖô»×õºÖô¸Ôò¼×ò½Øó¹Ôï½Øó¼Øó½Øñ¿Úõ¦Äè-M)9,8@]`k÷ñôž¢«xŠ¥€™Á§Áï¯Æô²Êø³Èø¬Àð®Áò«¼ï«¾ò¤»í§½í£¹é¬Âó®Ä÷¤ºî¢¹ì¥¼î¡»ê¥»í¤¹í¥»ï¤ºïªÀöŸ³ë­Ãö¯ÇõªÄò¨Âð¨Áó©Áó­Â÷­Ä÷°Æø«Âð¨Àì«Ãñ¥¼ñŽ á*8t3Ak,Ca}™·ªÇè®Ìò›ºã¡Áì¤Åꙺ盼阺朾ç®ÊóŸ¿ê–¶æ‘²â–·å™¸å™¸åœ»é™³Þiƒµ-Ev&9`+A]_{•ZuŒJdtH_oH\mCXgAVeBSb@OZBOV?MP=LN@ORDPUIU[JX_KZaHZaCU`BT^BU`?R`>Qa=Qa=Q`>Q`@Sb%O/R„;cŸ>gž7\“7YŒ&Fx1a#F 5 2 18FW(2=9CLž¯½Õí¹ÕïºÕïºÓíÂÛõºÕï´ÑìµÓî³Òí¶Òí²Îè»Öñ´Ñí¶Óï´Òì¶ÓïºÖô¹Öóº×ò·ÔïµÒì·Ôï¶Óî·ÔïºÖñ·Ôï²Ïê¶ÓîµÒí·ÔïµÒí·Ôï¹×ñ¹Öï¶Óî¹Öñº×ò¸Õð¸Õð¼×ò½Øó»Öñ¼×ò»Öñ¾Øò¼×ó²Ñõ 7T'7.8@UWbôïòž¢¬cv‘† Ç©Âñ¯Æõ¯Æô´Èø­Áñ¨¼í¬½ð¬½ò¨¾ñ¡·é¡¶é¨½ð©¾ô¤ºî¢¹ì¤¼î¡ºë¥¼ï¤¹í¦¼ð¥»ï§¼ò¢¶î­Âö®Äó¬Ãñ©Áð¨ÂòªÂõ¬Âö¯Æø®Æõ­Åó©Áï§¾ì¬Ãð¥»ñ‰šÚ-h4DlWn†£Á¬ÈêªÈã£Âí¥Ã왻éŸÁîš¾è¡Âê±Í÷¾ê•·è”¶æ—¹ç—¸å˜¹å¡Áì…¢Î`}®2Iy':]f @eœ:Z)H{2b'K ;: /7GW&3<b˜3S…,K6i+S B; 20?S".9@KPl{‡ÅØï»Öð½Øò¸ÓíÀÚô½ÖðºÕïµÔí³ÒëµÔí·Óî·Ôï¹×ðµÓí·Õð´Ñì¹Öñº×ò»Øó·Õî¶Óîº×ò¹Öñ¹Öñ¸Ôð»Öñ·Òí¹Ôï¸Óî·Óï·Óñ¸Ôñº×ñº×ò¸Õð¹Öñ½Ùô¿Úõ½Øó¼×ñ»Öð¾Ùó¾Ùó¼×ñ¾Øò»Öð·×û4Kl)4G.9@LNYðë±]nŠŽ¦Î±Èø´Èø³Éø²Æõ©½î¬¾ò§¼ð©¾ò¤¹ïŸ´è¡¶ê§»ó¥¸ñ§»ò¦»ò¦½óž¶ì¢¸î§»ò µìž´ê§½ñ¥ºòªÁó®Äó±Èö­Äó©Àó¨¿ñ°Æø¯Åô¯Æô°Éõ«Âï®Äò¯Áô¢µðmÁ$4j:Molˆ§‰¥Ä®Êì¨Æî—¶á¡Áî£Ãï¿ë™¼è™»çŸÀç¬Êï¨Äì›¼ç•·ãš¸å—·ä—¹å“µà‚¡ÌUqŸ3Kz->c->X_xjƒ˜AYlAWh@Te;P_:MZ9IS6HP4FM7GP7GN9IQ;LV@P]FXfGZgG[gF\jG[lG[lE\lD\nE]oF^pE]oF]oD[m$Ex4Z6^—;eœAf™8X‰0P‚;n*U%I"@3'6L#0>>IP^myÅÙï¹Òì½Øò·Óí¾ØòÀØò¿Úô¹×ðµÔí·Öï¸Ôð¹Öñ»Úó¸×ð¶Õð²Ïë¼Ùô¹Öñ»Ùò¹×ðºÕï½Øò½Øò»×ñ½Øó¾Ùõ»Öñ¸Óî¼Öò»Öó¸Ôó¶Òð·Ôð»ØóµÒî¹ÖóºÕò½×õ½Õò½Øò¾ÙóÀÚô½Øò½×òÀÙò»×ð¹Ùý=Vy5BW/;DKMYîèꪬ²`p‹‡ŸÇ°Çö³È÷³È÷²Æ÷­Àó¨¼ï¥ºî¨½ò¤ºî µé£¸ì©½õ¥·ïª¾ô§»ò©Á÷ ºð¤¹ñ©½õ¤¹ð£¸ï¦»ð¥»ò«Âõ¬Ãò«Âð­Ãó¬Ãõ¨¾ð®Ãö®Äò°Æó²Çô¬Ãî­Äòª¿ò ±ñQb¥):nBWvYw“Œ©È¯Ëî¨Æí–¶âž¿ì£Åð¡Ãî¾ê¡Áé¦Åë¬Éî¥À蟿æ£ÂèªÆîŸ½ç•·á„¥ÐRnœ@Y‡;Oz#0O7H]w“¦Nfz@Wk?Tf=Rb9M[8JW7GR6EO4DQ4DO8HQ8GQ=N[@ScDYhH]lI^mG^nI^qI_qJ`rJbtJcvHbtGaqG`pG`q*N€(P5XŒ=fœ?gž:]Ž2Sƒ"Ct,Z%J = 2#1I0=N4=GQ\g»ÍãµÑé½Ùò¹ÔîÂÛõÃÜõºÕð»Öñ¹Öð¹×ð¸Õî¹Õñ¼Ûô¶Ôî·ÕðµÒí¼Øó¼×ñ½Øò»ÖðºÕï¾Ùó½Øò¾×ñÀÙóÂÛõºÖñ´Òë¸Ôí»Öï¹Ôï´Ñí¹Õð¾ØòºÕð¸Õðº×ò¼Øó¼Øó¾Øñ¿Üö»Øõ·Ôï¹×ñ½ØòÀ×ò¼ÚûE]…8J^/:@DKQëçé°±¸ctŽ„œÃ±Ç÷³Æö±Äõ²Åõª½ð¨¹ï¦¹í¦»ï¢·ê¡¶ê§»ð¤¸ï¢µî¥¹ò¤¸ñª¿÷¤»ò¤ºð¨¾ò£¸í¡¶í¤¹ñ¦»ð®Ãö®Æô¥¾ì©ÃõªÁô¬Âô°Æ÷­Ãô¯Èõ¯Çó¬Ãñ®Åò¥»ð•«î>MŒ.=l=Tvcž‰¢Â°Ëï©Èð›»ç¡Áí ¾ç‡¥Ês°lˆ¦j„ g€›a{•b|–rŒ¦¨ÆªÆç˜·Ú^€¦@W‚:P|0<]8BYL`yi„œC[l@Xh?UcO\DTaF[gI`lG_nJaqKbrKcwKdwJduJeuJcuKcuIasIas2U‰$M-Oƒ8dœ>gŸ9^.R‚&Gy/]'K <4'=8EW*3=HQZ£´ÇºÔë¼×ï¹Óî½Öð¿×ò»Öñ»Öñ»×òº×ò¼Ùõ¸ÖðºØñºØñº×ò¸Ôï½Øó¸Óî½ØòÀÙó¾Øò½Øò¿Úô¿ØòÂÛõÁÚô½Ùô¶Ôî·Ôí½Øò¶ÓîµÒï»×òÁÜöÀÚõ¾Ùô¿Úõ½Øó¿ÙôÁÚô¾Ùô¸Öñ·Õð¹×ñ»×ð¿Öò¾ÜýG_‡>Od+7=>ELæãæ³³»[nˆ‰¢È¯Ç÷°Åõ®Ãõ°Äôª½ð§¹î¨»ð¥¼ï¤¸ì¦»ï£¸ì¥ºî¤¸í¨¹ñ¨½ò®Äø¦¼ð¤¹í¨½ð¥ºï¤ºñž´î¨½õ®Ä÷­Äô§¿ð¨Áó«Ãõ¬Âó®Åô®Åó®Çô®Æò©Àî®Åò£¹ïŽ£ä'7t0?k8Pon‰¤o‰¡¶×«Çï§Ãë™¶Úaz”Jc{MfyJcvJbtMexKcvJbuIatHcve€š‡¤Æv”»Ul‘4De%2K>Nfp… [rˆ=Vg>Ve9O^6KW5HU4FQ2CL4EN5HP4FQ7IT9KWOe,6?BHQÝÚÞ¶¶¿[o‰›Â«Äó¯Äó­Âõ¬¿ò¥¸ì¥·í§ºî¥ºî µé¢¸ë¥¹î©»ï¦¸ï¨¹ðª¾ò®Ãö§¼ð¤¹í§¼ï¦¼î¥¼ò³ï¨»ô­Ã÷®Æ÷ªÂô¨Àó«Äô®Äõ®Äó®Åò­Æñ¬ÃðªÁï«Âñ¥ºñ‡›Û/i1Cm8Om‡ž¸h“Qh‚‚™º„»Tm…H`rHaqHapG_nE]nE_oE_oD]mC]mC_kA[mz’°©Êmƒ¡)7L6CVgz‘r‰¢@Tg8Q_7N]5JX5HU0CO/BM1CK2DM1EM3FP4ER4GT9M\?TcDXiEZlF]oH_qH^pE]qG^rG]pF\nD[mF\nE[mBXj>h 9`=m=ež=h£?fœ6[Ž*M7i)V%I!= 2HNXÙÖÚ»¼Åp‚¦Í®Æõ­Áð°Ãö«¾ò¥¶ì¥¶î©½ñ¨½ò²éž²ê¡´ì§¸ðª»ô¨ºò«Àó°Æù¨¾ô¥ºî§½ï¦½ï¥»ðœ°è©½õ­Âö¯Æö«ÃóªÄõªÃò±Éø®Åó¬Ãð«Äï¬Äñ¨¿íªÁð¤¹òzŒÌ*c4FqC[y™®ÅŠŸ±Tj}J`uh}PcuF^nD\lA[kB[mBZo?XlAXk@Yi@Xj=We>UeBWm@YoL^t?Nal|Œ–ªSk~6K[4KZ1HU0EQ0BO->J-?J.?H/?H/@K2BO3CP5FU8JZTf:h¢'Js7e8a˜=g¤@g <_”+Nƒ;o+[#K @ 4-=S+7F?ISs€ŒÂÚì¸ÕêµÓì¸Óí¿Øñ¿Úï¿Ùñ»Öï»ÖðºÓî¼Õï¼Öî¼ÖïÀÛõ½Øò¿Ùó¼ÕðÂÚöÁÙõ½×ò½Øò»Öð¾×ñÃÜöÀÙó½Ùô¸ÔòºÕñ¶Òî¸Öñ³Ïì½ÙóÁÙóÁÚô½Øò¾Ùó¿Úô½ØòºÖñºØó¸Öò¹Ôï¼×ð¼ÖòÀÙò¾Ýú_wŸIXq-6BDJTÕÑÕ½½Ço€›‹¢É¯Æõ²Äô´Æø¬¾ò¥¶í¦·ï¨»ð¨¾ñŸ´ëŸ³ê¡´ì¦¶ñ¥¶ñ¢¶î¦¼ï­Ã÷¤¼ò¡¸í£¹í¢ºë¥ºîž²é¬Àö­Ãô®ÆôªÃð¨Áò«Äò±É÷®Åò¬ÃðªÃí©Á맾ðl~¿*c8KtTl‰’¤¼™¬Àˆœ­|’žm€N_lDZfDZgBWhBVi?UiAUfATe>Sb>Sa:Qa@Sd;P_:Q`Pctm~”v‰™Map4L]3HW0HS.CO.@M*;H*;G+;F+:C,;D*:E*9F.Td>Sd;Rb;Raq+]$N >6,B'4A9ENgq|Æ×ë¹Õë¶ÔíµÐêºÕï»×ï¹Õî»ÖðºÕï¼ÖïºÕí·Òí¹Õï½Øò¹Öï¾Ûô¼×ñÄÜ÷ÄÚö½Õð¿Úô»Öð¼×ñ¿Úô¼×ò¾ÙôºÔï¶ÓîµÒî¸Õñ¯ÎëºØñÁÙòÂÜö¾Ùô¼×ò½Øó¾Ùô½Øó¼Ùô»Øó·Õðº×ñÁÚôÁØó¼Ûùd}¥@Ql+7B:@IÍÇÊÃÁËeu”«Ñ®Æó®Ãñ°Åö«¾ò¦¸í¥¸ì¦»î¦»ïž´è ´ê ´ë§»ò¤¸ð¥¸ï«¼ô§¼ó¤»ñ£¹í¥ºí¥ºí§¼ð¢µí«Àõ­Äö®Åõ©Ãò¨Âñ©Ãò±Éø«Ãð«Ãñ©Á茶òew·0d5KoKdZk`s„l€‘j}ŒL_nEXgCVcASb@Sb@Sc>Qa=Rc>Rd=Qb&5>)7B*7D+;H2CQ4FW7I[8M]9LZ8KX8KZ4IX4HX3GV3FV2ET2ER1EQ.BNFz¶9`“-Z0R‡@k§@h¢>d˜/R…"At1b%QA7%9'6C6BLT^iÆÕè»×ì¹×ð¶Ñë½Øñ¼Øð·Òë¸Óí¹Ôî¼×ñ»Öð»Öð¼×ò»Øô¹Öð¼Øò¾ØòÃÛõÆÝ÷ÂÚôÀÚô½Øò·ÒìÂÛõÀØó¾ÙôºÕðºÕð¹Ôï¼Ùô´Ñì¼ÙóÀÙòÁÛõÃÞøÀÚõÁÛöÀÚô¾×ó½Ùô»Øóº×òº×ðÀÛôÃÛõ½Üúg¨FXr'2>3:BÍÉÌÆÄÌfv“©Ð¯Çõ®Ãó¬Ãõ«¾ò¦¹ì§ºí¨½ð§¼ï¢·ë µé£¸ì¨¼ò¥¸ð¥¸ñ¦ºñªÀôªÂõ¦¼ï¥ºí¤¹ì§¼ò¡´í©¿ô¬Äö®ÆõªÄó§Áð¦Àï¯ÆöªÁñ¬Äò¨Áî¨Áî¨À윰ïRb¥(6k?T{Jc>RcQ`>Q^>Q^;N[K,=I,>E+=D+=DBv²;f™3])K|=i¥Al¦?gœ/S†$Ex4f&Q!C6 41AP;HTQZd¹Ç׿Øì»Ùñ¶ÑëºÖîºÖî·Òë·Òì¼×ñºÕï½Øò¹Õï¸Õð¹Öñº×ò»Öð¾ØòÂÛõÈß÷ÆÝ÷ÁÚô¿Úô¿ÙóÂÛõÁÚôÁÚô»Öð¹Õï¹Ôî¾Ùô¹Ôï¾Ùô¿Ùò¿ÙòÆßùÄÝ÷ÃÜöÂÛõ¿×ó¾Ùôº×òº×ñ¼ØñÀÛõÂÚõ»Úøm‡¯DUo%2<5J/?K0@L/?K.>J-=H+;G,J,=I,Ew´Dp¦$Ep!Bp:g¡?i¥El¢2W‰)J|8k(U E;!:9I\-:FIR[¢­»ÃÛî»×ð¹Ôí¶Ôë¸Ôì¸Ôí¹Ôî¼×ñ·ÒìºÖñº×ò¸Õð¹Öñº×ò¹Õï¼×ðÁÚòÈà÷ÅÜöÂÚô¾Ùó¿ØóÃÜöÁÚôÁÚôÂÛõ½Øò¼ÖïÁÛõ½ÖñÀÙôÂÛôÁÚóÂÛõÄÝ÷ÃÜöÁÚôÁÚôÀÚô»Ùò»×ð½ÙòÀÛôÁÚõºÜùs޵DWp+53;B¾¹ºÉÇÏiy–”«Ó®Æõ¯Ãó°Äõ¯Ãò§»ê©½í©¿ï¦¼ì¥¼ê¢·è¦¸ì«½ò§ºò£¸ï¥½ñ¥½ñªÀô§¼ï¦»î£¸ë¢·íž±ë­Â÷­Äö«ÂòªÄó¨Âñ¥¿í¬Äò«Âð¬ÅòªÃï«Âð®Åó¨¿ïŸÞ,=x0AnE\|7Nd4CL5DK1AH0?H1AJ1@J2@L0>J.=G/?H-=E.>E0>G/;F-:C.;C.;D,9A,9A)7?(7>)7>(7=(6='5<'5<%5;%39%05%04$-1",0 +/+/ +0#.5%17%3<&4A(6A(7@'6>&2='3?%2;$19%3;#/7"-7#/:"/7!.6G|¸M|²3WƒAm8b›>i£Gn¥=d—)M€?r-[&K>">5D[$1AENVˆ•¢ÇÜð³Ìç¶Òë¸ÔêºÖì¸Óë¸Óì»Õî»Õï¸Óí·Ôî·Ôï·Ôî·ÔïµÒìºÔîÀÙòÅÝõÄÜõÁÚóÀÚóÀÙòÃÝöÄÝøÁÙôÀÙó½Øò¾ØòÃÜõ½×ñÄÜ÷ÅÞ÷ÁÛôÂÜöÅÞøÄÝ÷ÂÛõÃÛõÁÛõ¿ÛõºÕðº×ð¿ÚõÁÜõºÛø{•¼EWr +6/5=¼·ºËÉÑhx”“©Ô­Äõ®Âñ°Ãò¬Áð§¼ë¨½í¦¼ì§½í¥ºé¤¸é¦¹ìª½ñ§»ï¢·ë¦¾ò§¿ó¨¾ó¥»í¥»í¥»î¤¸î£·ï®Ã÷®Å÷«Âó«Äó©Âñ¦¿ì¬Æñ­Äñ®Çó¬Ãñ­Ãò¯Æó¨¿ñ’Ï#2k0CmIa0EX/)4?'3<)4=*6=)5<(4;(3;&2<'2;&1:&29$06#/5$08#.4"-2!-2".3"/4 -3!.3-1+.),&+','+(, */ +1".4$08#0;#08$18#07#/8"-8#/6 ,3*2!+3 *2*2*0*0GºP‚·?h’=f3]’@j£Ep¥Ck -S‡$G{3b)T"E">3?Y)5H&2=&2=%1<&2>'2:'2:'2:&19&19%09(3;&0:&0;#08%2;#/9#/9"/7!.8 ,6".6!-4!-3)1*1).(+')&)(,&-'.)/!,4 ,6".:$1>%2@"1;$4;$4;%5<"3<#3<#3<#2<%4=&6=&5>&5@B|»RÈ[ÃEoœ+Lzš–—ÍÏÖeu’¤¹à¶Ë÷²Èò´Êõ²Çôª¿î¦½í§½í¥¼ì¤¼ë¦½ë¦½ë¢¹ê¢¸ì¤ºî¥½ð§¾ð§¾ð¨¿ï§¾ï§¼ï§»î¯Ãô¯Æö¯Æö¬ÃóªÄóªÃó­Äò­Åò¯Æó«Ãï«Ãð­Ãñ¥½î’¤ã9G…+>nJdˆIbz3BS2BN.>G,:C+8D*7E+7D(8D'7B&5A(8C&6@'8A%6?'7C)9E(6B'5A&4?'6?%4=%4=$3<"1:#29#08%08"-4+1)-(,)-','. *3+4"0;#2>#2?&6F'8E(9F(9E'9D(9E':G(8E'8E&7D)8D)7C(7C*:G>vµNˆÄZ‘ÄQ|©*Ly6b”ArªFu¬Hv°=i¦-Y•(UŽ H€@l!I-#/:".8 ,4*1)0)0 *0!*2!*4!/:$3?%5B(9F+;I+K,>L,?M,>M*L->L6n¬O‰Æ[“ÈZ‡´.S}4]Bt«Hx²Kx´Am¬2_*X”&T’ Gy#Bi1Ij+=MCOW~‡’ÍÚðÀÔï¸Îç¸Òë¹Óê¿ÙðÀÙò¾×ñ¾Öð»Öð·Òì¸ÓíºÕï¼×ñºÕï¿ØòÁÚôÄÝ÷ÁÚô¾Øò¾Ùó¿ÚôÁÙõÁÚöÀÛö¼×ò¾Øñ¾Øó½Úõ¸Ôï¿ÙóÃÛõÄÝ÷ÂÛõÂÛõÁÛô¾ÚòÁÜôÃÝõÁÜôÀÜôÁÚõÂÚô¼Ùô›¶Ö/B_$0<18?™”•ÓÑÜo§¾áºÑöµÌò¸Ìö³Èñ¯ÅïªÁï«Âð¨À먿ë©Àí¦½ì¦½í¦½ïªÁñ§¾î¥¼ì¨¿ï¨¾î©¾ñ§¼ï±Çö±É÷®Æô¯Çõ®Èö©Âð­Åó°Çô°Çô«Âð§¿î«ÁðŸ·íwŠË!4m7NxWs’Ibx9L[6KV3GT/AN-?M.>N/?O0BO.@M0BO/@N-?L/@M.@M.@M/AN/AN-?L.@M.?M,=K+;K+;I(8F'7E&6C%3A"1=!.9+5*3)2)2!+3!,7#0=$3@(8F,=J,@M/BO0DQ.AP1CT0BS/DS.CR/DS.CR0DT-?Q0CS/CR4k©M‡Å_—Ïa’Â5^ˆ-T…BpªFx´K{¹Hy·;m¬/b¡-` ,[’/Y‹>\….AWKV`y‚ŒÊÙì¿Õð¸ÏéºÓì¹Õê½Øî½Öî¿×ñ½Öð½Øò»Öð¹ÔîºÕï¾Ùó»Öð½ÖðÀÙóÂÛõÁÚô¾×ñ¿ØòÁÚôÁÙõÁÙõÀÚô¿Úô¾Øò¾Ùó¼Øó¸Õð½ØòÁÛõÅÞøÃÜöÃÜöÁÛô¿ÛóÃÝõÂÜô¿Úò¾ÚòÀÚôÂÚô¾Û÷¸Ø0B`&2@+2:‹ŒÓÒÜr„«Àâ¹Ñõ·Ïó·Ëö²Éð¯Æï­Äð®ÅòªÃï§¿éªÁë­ÂíªÁî©Áï®Åô«Âò§¾îªÁð©À謹òªÀñ°Æõ±É÷®Æô¯Çõ®Çõ©Ãñ®Èõ¯Èô­Æò©Áî¥¾í§¾ï™°çasµ!3j8PwRmŒ8Oe8K[3JX0HX-CS,@Q.BS/CT0DU/CT0DU1EU0DT1CT4FV1CT2DT1DS0CR1BS0BS.@P+>N+>M,-:+7*4)5)2)3".9#1>$3A+;K*=M.BS.DU0GV1HX1HX0GW/EW1FX/EW,CU/EX1FZ0EW0FX0g¤N‡Ä\–Ð_–È:h‘*OAk§Dv´L~¼NƒÁI¾;r³:r°=zµAz¶Myª&?Y:EN_irÇ×ê¼Òì¸Ðê¸ÓëºÕëÁÜñÂÚòÁÚóÂÛõ¾Ùò»×ð½Øò½Øò¼×ò»Öð½Öñ¾ÖñÀÙóÁÚô¿Øò¿ØòÂÛöÂÙöÀÙô¿Øò¿Ùó¾Øò¾Øóº×ò·Ôï½ÚóÂÛõÅÞøÄÝ÷ÃÜöÂÛõ¾ÙóÂÛõÂÛõ¿Ùó½ØòÁÚôÂÙô¾Úõ »Û1Cb(4E,4=”ŽÕÒÛrœ­ÀãºÑõµÎó´Ë÷³Êï²Éð®Çð¯Èñ¬Äî©Âê®Äí¯Åî­Ãï«Âð­Åó¯ÇôªÂñ¦½í«ÂñªÁð©¿ï¬Âò³Êø²Êø­Åó¯Çõ¬Æô©Ãñ®Èô¯Èô­Æò¦¿í¢¼ë »ë”¬æOa¤!2g:QwUo0H_4GY0HY/GX+CT.DV/EW/DW0FW0EW0EV0FW1FX2FX4HZ3GY2GW3GW1EV0DV0DV/CU/CS.AP,?N*=K(:G$7D!2?/:*6)4'4)5 +6,9!0=%6B):J-AR0EY0G\0H[1I\1J[2K[4K_1I]2I^0I]0J]0I\2J\1I\.d¡K‚¿V’Î\”Î?nŸ+Q€N-DW0H\1J^4La6Mb8Oe4Ka6Nd5Md6Nf6Ne5Mc5Mb5Mb5Mc0d¢E{¹QŠÈ\“ÌLz¬*R9dŸ>r±DwµM€½F{¶K‚»X‘ÈY’Ï[–Ò]–Ñ6U{&4?OZcž­¾¾Õì»Ôì¶Ðç¼×ì¾ÖìÅÝôÃÙôÁØõÁÙõ¼×ò½Øó¹Öñ¼Øó¹ÔïºÕï¿ØòÂÚöÁÙõ¿×ó¾Øó¿ÚôÁÚôÁÚôÀÙóÀÙóÁØòÃÜöÀÜö·Ôí¿ÙóÂÛõÃÜöÃÜöÂÛõÄÝ÷ÂÝ÷ÀÙóÁÚôÀÚô¼×ñ¿ÙóÂÛò¾Úô¥Àà*@`,;J.7@‹‡‹ÕÓÞt†£§¼à¸ÐöµÐóµÎõ±Éî°Èð®Çñ®Æñ­Æï«Ãí­Çï®ÈðªÃíªÄð¨Åò©Äó¥Âð§Áï­Åó­Åò¬Ãð±Éó³Ì÷´Í÷²Ëõ°Éô¬Çó¬Çó¯Ëô³Ìö®Çñ¬Åñ¬Äñ£»î†Û0A~*O&9H&7F!0>,9*6)5*6.:!1>$4B'9H-AR0GZ3K`5Mc7Of8Ph8Ph7Og7Og8Oi6Mg7Oh8Oh8Ng6Nf5Me1b¡9n­L„Â_—ÐY‡º.U„3]–Ew¶J}»R…ÀCv®K~´Y’È\—Ò]™ÔY—Õ;^Š#3@BMV~Ž›ÁØí¼ÔìºÓë¼Õê½ÖíÄÜõ¾Öñ½Õñ»Öñ»×ò»Øóº×ò¹ÖñºÕð¾ØòÁÚôÂÚöÂÚöÀÙô½Øó½Øó½Øò¿ÙóÀÙóÂÛôÂÚôÀÙóÁÜöºÖð¿ÚôÁÛõÂÛõÄÝ÷ÃÜöÃÝ÷ÀÛõÀÙóÁÚô¿Ùó»Öð¾ØòÁÙó¼Øô¤¿á,Bd/>O09Bˆ„ˆÒÐÛp‚¥¹à·Îö¶ÐôµÏô±Ëï°Éî­Æð®Çñ¬Çð©Æï¬Éð¬Èð©Äï©Åð§Åò¤Ãñ¥Ãñ¦Áï«Æó®Èó¯Çð³Íõ¶Ï÷¶Ïø³Íö±Êõ­Éò®Êó°Ìõ±Íö®Çò®Åò®Åò¤¼ïz‘Î+:u4FrMg‡:Ul)@S/DX,DY-DZ-DZ.E[/E^0F_1Fb3Ia3J`4L_5M_6Ma6Md5Le5Nd6Nc6Mc4Ka5La3K_2I]1GZ1FX0CV,?Q)P5=H†‚†ÎÌ×q„œ±ÕµËô¶Ðö¶Ðö³Ìñ¯Éð¬Åñ­Æó¬ÆóªÃï¬Åð­ÆñªÂð¨Âð§Ãñ¨Ãó¨Äó§Àî¬Åò±Êô³Ìñ¹Ñö¹Òù·Òø¶Ðø²Íô­Éò¯Ëô°Ìõ´Í÷°Éó­Çó¬Äò¡¹în„Â)9r8MvSlŠ3Kb*@Q.BV.CX.EY-DY.E[.F[/G^0I`1I`3Ka5Nc6Ob6Ob7Og9Qi7Oe8Pe6Nd5Mc4Mb3L`1J]1I[/FX1FW,@R(O-CV3J`5Me8Qi:Tl;Um9Rl;Tn8Ql9Rl9Sl:Sm:Sn9Tk9Sk9Sk1d£,c¤@}¾PŽÌ[Å2[‹)OƒBp¬N¿Q‡ÄTËNˆÉNËQ‘ÒNÏLÒQ}°2AUdmus€ŠÂ×ë¾Öî»Óë»Óê¹Óì¿×ó¼Öñ¸Óî´Ñì°Îé°Îé²ÐëµÒí»Öñ¿Øó¿×ñÀÙóÁÚôÁÚô¾Ùó¾Ùô½Øó½Øó¿ÙõÁÙõÀÙô¿ØòÁÚô¿Ùó¿ÚôÂÛõÁÚôÃÜöÂÛôÂÜöÀÚôÂÛõÁÚô¾Øò¼×ñ¿ÙóÂÙó¼Ùõ¦Âä,Be2@S7@JІŠÑÏÙzޤРÁ¯ÆïµÍöµÍö±Ëò®ÇðªÂðªÃò¨Àï¤ºè¤ºè¥»é£¸è¤»í¦¾ðªÂó§¿ð©Áð¬Äò°Éò¶Íò¿Ôø¾Òø¹Ôù·Òø²Ìô®Êó¯Êó´Ìö²Ëõ®Çò­ÈôªÄòž¶ïn„Ä2C|BZVqŽ,CZ*>P-AT.CX.EY.FZ/FZ/H\1I_/H\1J^3L`5Mc6Od6Od7Ng8Pi8Pg6Nd7Oe6Nc5Nb4Ma2L]0HZ/GW-DT+BR,@R#7H#5E/;.9+7-9 0="3@&9G*=O/DY4Lb9Qi9Tj;Xm;Xo:Vn:Vn=Wq;Um;Um;Tm:Sm;Um:Tk7Rj3f¨*`¢:u·F„ÆU‹Å7`•$K;i£M~½S†ÄT‹ÊNŒÊT“ÏV”ÒN‘ÑPÏW‹Æ.D_AIPguÄÔæ¿Öð¸ÓêµÑéµÑé¹ÔìºÔí¸Óí¹Õï³Ðê¶Óî¶Óð¸ÕñºÕñ¼Öð½ÖðÀÙòÁÚô¿Ùó½Øó½Øó¼×ò¾Ùô¾ÙôÁÙõÁÙôÁÚôÃÜöÀÚô½ØòÁÛõÂÛõÂÛöÀÚõÀÛ÷¿Ùô¾Ùô¿Ûö½Øô»ÖñÀØóÁÚô¾Ùõ«Æé-Eh1?P7@I…‚‡ÐÌÓ‰˜¯}’± ·Þ´Ìø²Éö©Àׄ™Ãv‡´Zl“CVx=Pr=NrHX~R`ŠZj”Zn“[q•p„©|µˆœÀ£·Û¹Íñ»Ó÷ºÑõºÒ÷µÍö²Êö³Ëø³Î÷²Íù¬ÇôªÅò¥Áð™¯ìn€Ä6NMg‹cœ0G],>P-AR0CW/FX/GZ0H]0G]/G^/G]1I_2J`5Mc6Od6Qf5Oh6Oj5Og7Pf9Rf7Od6Nd5Lb4L_2J\0HZ.FW,BT*@S%9K"5D0=-:-;-:!1="3@%9H*@P.EW4La7Qi;VkWq.;/=/;!1=$5B&9H-AP/EX4K`8Ph9Sk;TmO&:J#5D!2?/<.&6C'8H+=M/CV3I^6Me4Nf8Qj8Qk7Pj8Qk9Rk8Qk7Pj7Pj8Qk6Oi4Lh6Oh7kª1b¡2b¢>p¯I~¸Jx­'O€*SˆFs¯P„ÃQ‹ÉU’Ï^Øg¢Ûf¢Ù\œ×Y™Ù7_&4CENX­ºÇÃÙñ¾×ï»Õí½×ïÀØðÁÚóÀÙó¿Øò¼×ñºÕð¼×ò»Öñ»Öñ»Öñ½Øó¿×õÂÚ÷ÁÙõ½Øó¿Úõ¿Úõ¾ÙôÀÛöÁÙõÁÚõ¿ÚôÁÚôÁÚôÀÙóÇÞøÅÜöÃÛõÄÞöÄÝöÁÚö¾Ùô¿Úõ¾Ùô½ØóÁÙôÀÙó¾Øô­Éë6Mp3BT7ALˆƒ‡Äº¹’œœ®ŠŸ¹vŠ¢4AU % #+/022!4#7#8"5"5"5!1,%  ()($    %5%7YCT€0?m =#6TLeƒLg‚*Q+?R)?R,AV.DX-CW,DW+CW/DZ.CY/E[/E[0F\0G\1H\1H]1H_1H`1H^1G^/F[1G\/DW0EW.BT,AR+?P'(>I_zTm‹:Qk'9N.=P+>O+?Q)=P+>R+>R*>R)>R)>Q)>R)>R*?R+@T*AT+BT,DW,BY-CY*AW,BX-BX-AV/AS+?O,?O*;K'9H#8G 3B0=-:*7*6+8,8/j¥N¿SˆÅRŒÉU’Î`œÔh¢ÖaÖX—ÖM}³&:QBMT€‘žÂÖë¼Õî¼Öî¼Øð¿ØòÁÙóÀÙóÀÙóÁØô¿×ó¾ÖòÀØô¼×ò¹Ôï¼×ò¼×òÀÛö¿Úõ¾Ùô¿Úõ¿Ùô½Øó¿Úõ½Ùô»×ò»Öð»Öð½Øò½ØóÂÜö¿ØòÁÚôÃÜöÁÚôÁÚôÀÙóÁÚô¿ØóÀ×óÂÛöÂÛõ¾Øõ®ÊìT)>R*?T'?Q&R&;P'r±6f¦0c£:q®Q‰Á_—ÏHvª,Uˆ;i¢M~»Oƒ½SŠÇV“Ðd Øi£×_œÔZ˜ÖVŠÂ(A_5AKt‚ŽÁÔè¾Öî»Õí½ÖïÀØóÁÚôÀÙóÁÙôÀØô½Õñ¼ÔðÀØô¼×ò¹ÔïºÕð¼×ò¿Úõ¿Úõ½ØóÀÚõÀØô¿Øô¿Ûö¾Ùô½Øó»Öñ½Øò¾Ùó½ØóÁÚô¿ØòÀÙóÃÜöÁÚôÂÛõÂÛõÂÛõÂÛõÁÚôÃÜöÂÜõ¾Ùõ¯Ëí?Wz4BT0:ERRY}uw      ! #'*,./ 0!1!2!2 2!1 -*$ "'(&"   %-9FWds†iz‘Qd{4FZ'6H(7I(8H&7H&6G#6E"4B!3@"3B2B 0A"2C!1B#3D"2C"3D"4E"4E$5F$7F$6F$5F#3E"2A"5D"5C!3? 1>0>.>+:(5'3%0$/#/%1%1*6+9!0>#3D"4F#7I#7J"7H!6G"7H#7H$7H$6G#4G#4H"4F#5F#5FAs³9h¨1c¥8m«RŠÂašÒPƒ¹-W‰4a™J{·Qƒ½T‰ÆY”Ðf¢Ùh¤ÙcŸ×[™Õ[’Î.Lr/;I_kuºÌàÀ×ð½Öî½ÖïÀÙóÁÙóÂÚöÀØôÀØô¾Öò½Õñ¿×ó½Øó»Öñ¼×ò¾Ùó¿ÚõÀÛö¾Ùô¾ÙôÁÙõÂÚöÁÛö¾Úõ¾Ùô½Øó½Øò¾Ùó»ÖñÁÚõÀÙóÀÙóÂÛõÂÛõÃÜ÷ÃÜöÄÝ÷ÁÛôÁÛóÂÜôÁÛó½Øó°Ëî@X|0?P0;EIIPngi       "(++--/ 0"2 0 30,)$  !%*("  "$*#1+8I3AS -?#1B'5D)7G&5E'6F#2B!0?-9-8,8+9-9-:-9+7,9,;->-=-: /;.;,; />!/<.<.:,6+6,9)7'4%1#."+!*(!*!-%0'3)5+8.=0>/=0>/;.;/<.< /=-<-< -<,;,;Fx·>l¬5c¦;l«O…¼bœÔVŠÂ.ZŒ-YŽHx²T…¿U‹ÉY”Ïd Øg£Ùd Ö[–ÑY’Ð7Y….=M[dn°ÁÓÂØñ¾×ï¾×ðÀÙó¾×óÀØôÁÙõÁÙõ¿×õ¾Öô¾Öô½Öô½×õ½×õ¾ÙôÀÛöÀÛö¾Ùô¿ÙõÂÚöÁÙõÃÛ÷ÀÛöÀÛö¿Úô¿ÚôÀÛõ¼ØòÁÛõÁÙôÁÚôÂÚõÂÚõÄÚöÅÜ÷ÇÞöÆÞöÄÜóÁÝòÁÛñ½Øó¯ÊìB\}1?N1&2@(5D'4D$1A!0=+8(3&.$.$2$.%/#-%/(1&0$3%4&2(1%1'5%3(5'4(3%/%/&1$/!+!) (&"$%'(!+#-$0&2&2'2%.%.%.(/&.%/#-'2$1#0$/H{¼?n­:h§;j¨KºažÕ\–Ì2a“+WˆCp©PƒÀVŠÇZ“Ð_›Ød ÙbÓW’ÎWÎ?g˜*:MNY`¥µÅÆÚïÀØñ¿ØïÀØò¿ØóÁÙôÂÚöÁÚ÷½×õ½×ó½×ó½Øô¿Øô¾×óÁÙõÃÛöÃÜöÀÚôÁÚõÁÙõÂÚöÄÛøÂÛ÷ÂÛöÁÚöÀÚõÀÛö¾Ùô¿ÚõÁÚöÃÛöÂÛõÁÙôÃÛõÃÜöÄÝöÇßöÅÝöÂÜöÁÚò½Ùò°ÌìE^}2AQ6?I?DMZX_    ! "$'+,002!2 2 2-*% #'('   !%(,"0%2 +8"-<#0?&3A$4A .<*8'2 )''&"$%%'(&*''') +!+* *'' )'$"#!  !!$%(+((%%$%&&&%$$#H|¼@r°8i¦6f¢G|·]šÔ^šÒ9jŸ)S…=i¡I~»S‰ÅWÌY•ÓbžØfŸ×Z˜ÓW”ÒKw«*?VFQW’¡°ÆÙíÀØñÀØðÁÙñÂÚõÂÚôÀÙô¾×ô¼Öô½Øô¾Ùô½Øó¿ØóÀØôÁÙõÃÛ÷ÃÜöÂÛõÁÚõÃÛ÷ÁÙõÂÚöÂÚöÁÙõÁÙõ¿ÚõÀÚõ¾Øõ¿Úö¿Ûö¿Úõ¿Ùö½ØôÀÚõÁÛõÀÚõÃÛõÃÚõÂÚõÂÜô¾Úô°ÌìGa0@R3=H:AK46>       " "%)-/1/ 210.*%!  %&(%   #%, /%3(4"-<#0?%3A#3@ .<*7!+$   !!" !!   !          F|½@s±7h¤5f E|¶Y—Ò^šÖ?o¨)T‡:e›K}»MƒÀT‹ÇT‘Ï^›ÖaÖ\šÖT–ÔQƒ½*Da6BK{‰•Æ×ëÂÛóÁÚðÂÚòÁÚôÁÚôÁÚõ¾×ó½×õ½Øó½Øó¾Ùô¿Øô¾Öò¿×óÁÙõÃÜ÷ÃÛöÁÙôÁÙõÀØôÂÚöÂÚöÂÚöÂÚöÀÚöÀÚ÷¾Øö¿Ùõ¾Úõ¼Øö¼Ø÷»×ö½Ù÷¿Ú÷ÀÚö¾Úõ¿ÙôÂÚõÂÜô¾Ùô¯ËìG`€/AT4BN7BL       ! $&*+-/0001/,)"  %&(%     $*.$2)6#.=$2A&5D#1A,9$0%                                         IÁAt³7j¦3e Bw´T’Ï[™ÖBw±$P†5_•Jz¶L‚½R‰ÅTÏV“ÑZ•ÐX•ÒU—ÖVŒÊ,Lp+:Fep}¿ÐãÃÚóÂÚðÁÚòÁÛôÂÛõÁÚô¿Ùô½Øô¾Ùõ½Øó¾ÙôÀÙõ¿×óÀØõÁÙõÂÚöÂÚõÂÚöÃÛ÷ÁÙõÂÚöÂÚöÃÛ÷ÁÙõÀÙ÷ÀÚø½×õÀØõÁÚ÷¾Ù÷½Øø¼Ø÷¼Ù÷¾Ùö¾Ùô¾Ùô¿ÙõÃÛõÂÜô¿Úô°ÌïH_0AU7EP5CL        ! "((,,-/ 1/1.-)$  &&(%    #) .#1(5".<"1?%4D$2B*9#,                                               KƒÅDz¸8mª2c¢E         &)),++/.011/+&  &('$    #&) /$1(5"-<"0?&5E$2D!,:",                                                 M…ÆH|»>p®5f£7nªI†ÁS•ÐI…¿'VŒ,T‰Eq¬L€¼R…ÃRŒËRÐPŒÌQ‰ÇOŒÍV’Ó?g“-?SNYe§´ÇÄÙïÀÚòÀÚñÂÚóÂÛöÃÜöÂÚöÀØô¿Ùõ¾Ùô¼Ùô¾Úõ¿ØôÁÙöÁÛ÷ÂÜ÷ÀÚ÷ÀÙö¾Ûö¼Ùö¾Úø½Ù÷½Ùõ¿ÚõÁÚøÄÛú»Ñô¿×öÂÛùÀÙøÁÚù¿Úø¿ÛöÁÙõÂÛöÃÜöÄÜöÅÜùÅÞöÀÚõ«ÇèCZz6FY?NY/=D         "'(+)*//./10-(# "*('$    !%*-&4'4"-9&2>)6D)6F!,;$-                                             M‡ÈK¾Bt²5h¦5l¨I…ÀT”ÐPÉ/_”(Q„;h¡I|¸N¿PˆÈQÑS‘ÓOŒÍMŠËSÏJv¤.BXMXc“ °ÄÙìÂÛóÁÙñÁÛòÂÛõÃÛöÁÚõÀØôÂÙõÁÙô¾Ùô¿Úõ¿ÙôÃÙõÅÜ÷ÄÝ÷ÃÛ÷ÁÚ÷ÃÜöÁÚöÁÙ÷ÁÙöÀØöÁÙ÷ÁÙ÷ÄÛø¼ÑðÁØ÷ÃÛùÃÛ÷ÅÛ÷ÃÛõÀÚõÀÛöÁÛ÷ÀÛõÂÛõÅÞøÄÞöÁÚö«ÅéD[|7IZ;JT+9A        #$(*))+/..01.)!#)(' #  !%+ .#1'4!,9&3@'6D(5E"-;$/!                                      M‡ÈM„ÁCx¶6i©2i¦F€¼U”ÐT‘Î7j )Q„6bšI{·K¼O‡ÅQÑOÔNŽÑNŒÍT‘ÑRƒ¸*EaAMXx†’¿ÒäÃÛñÁÙïÁÚñÁÛôÂÛõÂÚöÀØôÃÙöÃÙ÷¾Øõ½Øõ½Øõ¾×÷ÂÛùÄÜúÂÛû¿ÚøÂÜùÂÛúÀÙùÁÚùÀÚú¿Øú¾×ùÂÛú¾ÖõÀØù¿ØúÁÙùÀÙø¿Øö¿ÚõÀÛö¿Úõ½Øó¿ÚõÃÜöÃÜö¿Ù÷§ÂæCYz4DU9HQ*6>       "#&+*)*./// 1-(""()'$    !%) .%3(5!,9#2?(8G&4E%0?%1"                    M‡ÉO…ÃG}¼:o°3h¦@w´PÉS‘ÎBu¬.Vˆ5_–J{µL»P…ÃPŒÌQ‘ÒNÐSÎ[—Õ]’Ì1Qv8GSds{³ÅÓÄÚîÂÙïÂÛòÃÝõÄÝ÷ÄÜøÃÛùÃÚùÀÚø¼Øö¸Õó·Òð·Ñî¼Óî¿ÒíÀÔî½Óí¿Õï¿Ôð¾Ôð¿Ôð¼ÒîÀÖò¾ÓðÀÕò¿Óñ¿Ôò¿ÕôÀ×õÀ×÷¿×öÀÙõ¾Ùô¿Ùõ½×õ¾ØöÁÙöÀØõ½×ö¢½à&5F&3E#.?%1# !!     K„ÊM„ÃH~¾?sµ6j©;q®K†ÂU“ÑHz´/W‰3\Gw°N€½RˆÄP‹ÊRÏOÌW“ÎaÙd›ØBh’V2@O;KX%0:      ! #&**++,-.//0 .*(#$..+'    #&* .#1)7#-;&1A)6H(6I"/@+6!(%''!) ) )%*"' %!! !    !  !## # #!$# $ $$%!( ' '!%B{ÆIÄG}¾Bx¶8m¬7m¬G½TÌRŠÄ6d•0W…=hžPºU‰ÅRŠÈTÎS’ÏZ–ÒaÕaÝi™ÒFd†FWgSdlN\hq’d}”Da€6X{4W}3W|1S|4U|/Qx'Ej2O#8             !$##(#(!&)5>`p”¨N`u$3F3CRHZf&3>       " $ %(***-/000 / .,'#%./.*"   #&* .#1(6".<$2@&5F(6G$2@,5$*! !"%!)",",%-%.'/&.&/%-%) #"% $!%!$ #!%"&"&!$!$"&!&#(%(%(%'$)$)%*%*%,%,&-&+&*?|ÉHÆI€ÁDz¹9n­2h¥?u³SŽÊU’Ì@s¥1Yˆ8b—O€·WŠÄU‹ÈUÍT‘ÐZ–Ò`™Ô\˜×ešÖNtŸ@ViVhoIT[9DN?Tg(7F(7G&4B -6',"% !! "! "!$" $$!("("*#-#/&2&0(2 ,6+5!,5!+3(,'*&)(+'*((&(&)(+'* '*(*'*)-),!*- ), *.)/ *1",3$,3 +/ +0"-1"-1#.2>|ËH‚ÈJÁFz¹O^?Wl9Wy2T}2T3T}2T}0Sy*Ns$Bg2N4              & '$($("'*"(+',-).15;ANV_YenWen2=C       " # $(',*+/01 0"/!+,+%&.1/+   #'*!/#1'5,:#2?'6E(7G&4C#.9 ,1')$$%&#&#&!$#&#&$'%)%)$+#,$.&2&4(5*6,8!/9#29&2:*49&01%.1&/2$-0%/.&00%//%/0'01'.1&.0%//'24'26(25'03*36(37'18(37*37*37+59*58*6:+6:,8;@ÎH…ÊIƒÃH}¼?r°5h¦7l©Kƒ¿[•ÑQ„½9b•2YŽDsªP¸T…ÂTŒÉPŒÈPÊXÌ[—Ò^šÔc™Ô_‘ÂW| Lj†Hd}@^{3Vy0V~/U~2U}0Vz.Qu,Ms#@d.L3             "!&#&%(!(*!),$*-&+.',15:A0:@!+0       " #%'),,,/01 1 /!,,+'&0 20+!  !&'+ .$1&3+:$2@&6E(6H'5E)3@%05*,()"*+!(, )- )- )- ),"*-$+.!*.!)0(1(2)4(6*7+8.:#2<'7=+9=0<>/99-78/8;.89-88,87/9:/89/672:;1:90::0;<1<>3<@2;=6?A4>B2HH>HH?HK?HJ>IHBLKBLNCLOCMNEMMFNNFOOGQQEOOEOO>€ÎEƒËHƒÇG~¿@s´7h§1e¡C|·SÌUÇ=kž-Y‰D7CG=IK@LNDMNGOMDLKENNFOOHQPHPNHQLHQMIRPKSRMUTMUUMUVPXWOWUPYVQZXQ\[Q[ZS[\S[[U]\S[ZT\[U]\=Ð?ÊDÆC~À@tµ8i¨2d£@u³O‹ÉVÌ?q£2]Ž;gœLy°U„½VŒÈW’ÏSÌRŽÊTÌX•Ò\šÚZ˜×K…ÂI}´Er¤9`Œ1T€/R{0S{/Rz/Rz.Oz)Hp 9\(F,            ""'$'&) '*#(+%*+$)*$)*!''%(!         $%(),-// 0 0!1 0/,&'!12/- " "',!0#1&3*8#/=(5C,9G3=J6?I8BI;EJ;FE;DCFC?GGAJJ?IJ:CC9AC38>-49%15#/7*4#-7&1:+8>4@E;FICOQITWNXWTZXRZWS[XU[YU\YU^YU_XV^ZZ`]X_]Za`ZbbZba\dc]fb]ga^hc_ie_fe`hg_ggbhgcjgbkhbkh:ÏB„ÎD‚ÆDÀAw¹9j«3c£@t°PˆÅUËGx­5]‘8b—Kw­U…½XÊVÍPŒÉRŽÉT‘Ì\™Ö[šÙV•ÑO…ÁP€·Gwª9c’0T€-Py1T|0S{/Q|-My'En8['C,           !# %#%$' '*"(+#(*"'(!'&!''"%       " #%&(-..02!2!0"// -$% 010-"  !#&*0$2!*7 *7#/=&3A.;H7BM=EMBMQDOPGONFLKGMLFNMGOMIQPJRQLTTIQQFNM>FG8?C18<&16"-5!+4!*3%17,8>6@F?JNGSVP\\Va^^fc`fd`fdafdahebifdkgdjfdjhdkhflkfkkemlgomgpmgpljrqltsjrqjronurkromtqnurmvs=ƒÏB„ÌG†ÉFÄBx¼p­N†ÁTËJ~¶5a’4^’ItªV†½[ËYÏQŒÊRÊV”Î[šÖZ˜ØQŽÌLƒ½M~µGwª8d”1U‚.Oz2U}1S|/Ny-Mw'Dl5Y&@ (             !#"%&) &* &+!(*!(( '&$%!%        " "% &(,//02 2 1!.!.*&%0 32-"   "&+/&4'5 +9".=&3B-:F9BLBHQJRVNVWOUTOUTOUTNUSOWTQXVSYXW[\RVWLRREKMp³5f¦8j¨G€ºSÇN†¿8f—2^Dq¦W†¼]Ë\’ÐX’ÏTËV”ÏZ˜ÕW•ÔM‹ÉI‚»N‚·K|¯=h—1V/Rz0U|1T{1Oz-Mt'Dk5X%= &            !#!$$'%) &+ &*&)'(&)$!        " $ %' '-/01 2!3#4"0"/ +'&!3 42-$  !%,0"2)7 +9$0@%2A/=I@*36$*4&0%-!*2+5=7AFCMOOXZZcebkiironurpvsrxsrytszut{vt{wt{xw}zv~{u~{w~{z~x€}y~y‚{ƒ‚zƒ{„|„}ƒ€}„|ƒ€~…‚C†ÑD„ÏIˆÍF„È?x½ %              # #"%%( &+ &+ &+$)$("       ! ! $%'++/1!3 1"4#4 0"/!-(&!230,     !'*-$2%3*8#/>%2B0u¯PˆÃTŠÅ;l .\‹9h™N}³T‡ÀUŒÆUÈRŒÇUËX”ÐU’ÏRŽËWÇZŽÃRƒ·@nŸ3Z†1S}1U|1Rz/Lw,Mu$Bi3W$> %             " #!$$'%* %+&*#'$'"       ! " "'(--.!2"3$4"5$6"3#1!/**"1 1.+ !  "'*.#1'5!-<#0@'4D1=L>IRLTXTZ\\ba]b`\b_\c`^ca^db`hdbigagf[a`UZ[KSSAII8?A+26!(- (&&*'044=B?IJMXTXbbckjiqpryuv}xx~yw~yy€{z|z}z~{‚{ƒ€{„{…|†€|‡€€ˆ‚€ˆƒ€Š…‚І„‹ˆƒŠ‡„‹ˆ„‹ˆ‚‰†…Œ‰C‡ÕA„ÓBÏC€Ë?zÄ=u¼7l¯4f¥:pªK‚½P†Â„Ó>‚Ð>€ÍA~É=v¿9nµ2g¨5h¦Dz¶M„¼Eu­3^5^‘Ip¨T‚¼W‹ÅS‹ÈQŠÇNŠÆTÊ[•Ð\—Ò[•ÍTŒÃP¹Bq¦8b‘4W3U|1U|/Ry-Mv&Al4U$;%              "!&$) &)!'*"&( %&$% $         " &*+-/0!3!2$6$6%6$3%4"0 -,$4!2/* !   "()-"0(6!,:"/=&3B/;K=HRITUV\\]ba^c^]c_^ca]c^agabgdbge^dbZ`^RXWKQR>EH4;?)03%)'!)0.6<8DFBNPQ[[Zcbekjmspqvuu|yw}xx~yz€{y|z~{‚{zƒ€|„~„€…ƒ‚ˆ…ˆ„‚‰†ƒŠ…„‹†ƒŠ†ƒŠˆƒŠ†ƒŠ…„‹†FŒØ?‡Õ>…Ò?‚Ð@~Ë?xÂ7mµ2g©3e¤?s¯L„ºIz¯8b‘3[ŒDl¢R¼UŠÄTŒÉPŠÇNŠÆTÌX’Ï\—ÑZ”ËR‰ÀO¹Es©:e•2W€1Sz0Rz0T{+Mv&Bk2R$: #               !$#'%(&)!&)!&(%&!$        " % *-,/0 2!3#5$6%8#4$5%6 . /$5!3.("    "$*+"/(4 ,8"0<&3B/:K:DOISWU[\Z_^Z_[[`\\`^\b]\b]_da^ca\a_V]ZNSSEKM;BE07:$+. %$'-'044>@=IIISSS]]^fegnkmspqxuszuv|wv|wx}zx~|y€}y€}z‚z~~ƒ€…ƒ„‚~…€€‡„ˆ„ˆƒƒŠ†ƒŠ‡ƒŠ†‚‰„ˆƒJŽ×?†Ò>†Ó>‚Ð@€Í@zÄ-7G9BNGNVQWXV\[Y]ZW\XW\ZY_ZY_Z[`^[`^W]ZQXUJPO@FG7>A.48"(,# $(%.1.887AAENOMWVU]\_edgnklspovqsyttzuu{wv{xw}zx{y€|z}||~„|ƒ~…‚†‚€‡‚‚‰…ˆ…ˆ…€‡„‡ƒM‘ÖA‡Ò?„Ó>ƒÒAÏB|Ç,36&+/"'!"$#(!(-$,1*373,6A4=E=GJFKKKPNLPLLPLKPNMQPOTRMSQLSPGMK@FF8>>38:+03!(,#(#" %!$"%$(!).'/6,586?B@GKELNNVTW`]_ecejhhmkkpmlrmkqlmsnpvqpvsrvusxvszwt|yt{xw~{x|y€}x{x€zxyw~y\ŸÜTšßH’ÜGÜE‹ØF†ÒDÉ?x¾7m°9p®D|·OˆÁH|±8c—8`•Dq©S‚ÀSˆÇRŠÇNˆÇKŠÉL‹ÍOÐT’ÑX”Ï[”ÍVÅGx«,6C1;C:CFAHIGKKIMIIMIINLINLKPNLQOFMJAGFFIAHGEIGEIEEJHGLJFKIGLJBHG=BB8<=279.36&,/%)# $"'#&#&#'$(%+$/1*3609=6?B=GFHQPSYWY^\]c`_eaagbciddjefkfgmjfkihmkholhpmjqnlspmtqnurnuslspmtqmtoc£ÞXßL•ÝDŽÙEŒÙG‹ÖCƒÍ@{Á7n±6l«Aw´M†ÃL„½?m¤6_”=jŸR¸U‰ÅRˆÆM‡ÇKˆÆMŠÊPÐY—Ô^œÖbŸÖ\—ÍO„·?j›7[†2U{4Sz.Nr'Af0Q"5                    #"$ %%"#%%$$"&"        !%')),02!3#4$4&6$4$5%4#1#1&6&7"2)     !'*-!1%6+8"-:$/=+4A09C4=C8AD>CD=BA@EB?DBAFDAFD@ED=CB8=>37;.36*/2$*-#'!##) &)#&!%"'%+).'06-5;2;?7AABLJJQORXVW^YY`[Za\\c^\c^^e``fc`ecafdage`ifbifelifmjelifmjdkhelicjgd¢ÞYœÝO•ÝDØD‹ØFŠÖD„Î?{Á8r´8n­?v³L‡ÄNˆÃAq©7b—C6=?:?>9><9><;@>:?>7<;48:-25).1%*-#&"&"!"&$'#&#'"&"(%, )2&.6.7<2;>8BACKIHOLNUPQXSSYUT[VTZVU\WV\YW\ZX][Z`]X`]Za^\c`\c`[b`]da[b][b^[a_e¤ÞZÝN–ÝDÚAŠÖD‰ÕB‚Ì@{Ä:r¸7m­)2?,4A.7A/9B09>3;;1654985:8497286176-32)//$)*#(+"&"!" ""#$#$"%!!$"&%*)-#.2*591;=8B@?GCFMHIOKKPNLQOKROKROLQOLRPLSPLTQLURPWTPWTPWSPWUPWVOXUPVTPUSf¥á] ßR˜ÝEÚ@ŠÖCˆÔF„ÏB|Ç;sº8m°:p®FºN‰ÅI}¶9f›6`–An¦P»Q†ÃNˆÇL‡ÈM‹ÊPÍW•Ó[šÖ_žØ]ÕW’ÊG{±=e•3V0Pu-Lr%?c-J!3              ""&$% %&!&' %&$&!        # $&&(+/1!4"5$7#6%8&8&7%3#1"*;&5#1,!    !#'*$1(4!-8#.;%0>(2@*3A+5@,6>+5<,48+22,22/44-23-21+10(.,$+( &&$'$! "$!!"!"!! "!!"$((,#,0*361:;6?=;CA=FC?FCAHE@GD@GDAID@GBAHBAHCDKFCKHDKHELIEKJCIICKJDKHBHGg§ãa£áVœÞI’ÚCŠ×E‰ÕH†ÐE€È?v¾9m³:o°D}¹K‡ÃJ‚¹8fœ6`•@k¡K}¶P…ÁP‡ÆK†ÇKˆÇOŒÉU’ÐZ™Õ^Ø^×W“ÍI~¶'3<%08$.4'/2%,,'/0'//$,,#*+$)* &&"$!$"! !#"!!" !"#'&*",0%/3+570::2;:5>=6>=6<;8==6=;6<:5<97>;8?<9@?:A?9@=9@?8@@6??6=<7=<e§ãd¤á[ÞO•ÜD‹ÖE‰×GˆÒE„Ë@{Ã:p·7l°?x·I…ÂLƒ¾;j¡4_“=g›Gy¯Pƒ¾P‡ÅL†ÇI‡ÅNÈS‘ÎW•Ò[šÖ\›ÕT’ÍI¹=kž2W€0Ps,Hl%=`.I2               "#$% %& %& %&$&$         " $(,-.!1#3$4%5&7&6'8(7'4%2*8#*;%6 -%    #'-"0(6#-=$1@%2A&3C#0@ -<$1; +5 )2!*/ )*)) )+!'*&*%)$'!%"" "# !""!"#%#*'.!+1$02(34*44+33,44-23,43-43-31.43/43.65.65/86.66-57-6:.45055e¦âe¥â\ŸßS—ÝFŒÙCˆ×F‡ÔF…ÍC~Å;u»5m±=w¸G…ÄK„Ár­2_•8_“Co¦M¹N„ÃQ‰ÇS‹ÊRËTÍR‘ÎS’ÒR’ÒPŽÍJ»?oŸ9^‰/Rv.Jo$?a1I0                #!% #)!%) %'$%$% #     " & & ),-/ 1 1#4#6%8(8)9)8(6'6$.?'.>"):"2'    #$'.#5*; /?$2?&3A%2@"0>!1> 0>,9 +4'/&-&*'+%)&*$($'#'#'"&"&!%"&"&"% $ $# !"$$"'%(',),!+,%..%--)/1(//(0/*00+/1+33*23+34,45-55,44,45-46b¥ãh§ãb¤âW›ÝHØA‰ÖD‰ÖF†ÑE„Í>y¾4n±8r³BÁJ„Å@u³3bš1\‘=j M~¸O„ÁQˆÇRŒÊQŒÍRÍQŽÍPŽÏRÒN‹ÌFºAr£;a‹3Uz0Ls&?c/J1               # %"'!& $) %( %( #      " % ' ),,. 0 1#5&8%7'9);+;)7(8'/A*1B%,;"(6(    !%&-$5*; .=$2@&3A&3A .< /> /@+;*5)0&+&*%)&*&*$)"*"($+#*"&#&$(#)!) ' &# "  !#$'!($+'+"+/$-0*25.58-55-4305538:07:18;4;>3:=3;=5>>5%)5)    !$' -$4*:!.>$1@#1>$1?"0?!0@ 0A+<'4(0$,%(%)%(#'$)$+#*#*#*$*$)$+"*!*#*!% $$%# "#&'!*%, *1#-3+5909<6>?9A?CDFE>FE@HGAIICKKCKKBJJa¦äk«åg¨á^¡ßP–ÜCŒØDŠ×FŠÕE†ÑA~Æ9s·6n¯e“3W{1Nr'?a0I 1               "!$"##$$%#$!#!       ! $ &*.0 2!3$6%7'7(7*<*<+<+:);*1D.4E)0='*5!+    "%' ,$4):"/?"0=%2>%2@!0?"0A/@,<)6'2$.%-$,$,$+$+%+#*")#*$,%,%,$,"*#+#(#%&&%#    # &")(.",3)3;1i•6X~1Lp'?`/J 0                   " $#$#$ %(#&!$#      " %(+-."1"3%7&8%7(:*<*<+=+;)9+4E/6F-3A*-7"*    !%',$3(9!.>#0<"1:#2>!0@-? 0B-?)7'3%.%,$+$*#*#*#,#*#+!+#-#-&,%+$,$*%+$)!'%!&$$$"$$(#, )1$.5,6=4?C`-I.               "!$!$$$$% %' %("%       $ %),,.!1#4&8'9&9);*;*<,>):+;,5F29H/5A+/8!$,    !$& .%4):!.>$1@$1?$1> .>-@/A+<(7'1$+")")")")") )")!)!*!+"*%+$*&,$*$*$*"(!'!&&&%"%$'"+(0'180:?9DH@KOLUXW]^_edcjhbhgekhfmjemjenkfokfpkgpliqn]£äd©æf©å`¥âXŸãL”ÜFÚHÙGŠÕDƒË>y¿6m³7o®>x·B|º;p©1`–0[>k¡L}¶J€¾JƒÃJ„ÅJ„ÅH‚ÃF€ÁF€ÁIÁI¿Dz°?j˜7[‚.Ko$<^-H-                ""%$% %& %(#&#&!      "% % ) *-.!2"4%9%;':+<.=,=,>*;*:/9G5!/A%2B$1A".?!.?-?);&4%."&!% $ $!%$'&'' (!)!($*#)#(#(#)#("(!% &&$"$$&#,(0'182=B{Á8rµ8o¯=w·D¾>s®3a—0[Ž*=,?*<*:.8G6v·F}½Cv±5cš3[;c™Jx¯N…¿N‰ÅPŠÉO‰ÊM‡ÉK†ÅI„ÁK…ÁO†ÁF³Cq¡7^…,Lp"<],H-                 $#&&$$ '*&)"%!       ! $ %*+..1!3$6&9':*=+>,?+>+>*;+:2L:=G45?'(3   $&,"3%7+>!0@$4B"3?"1> -:+;)8'4".!)  #% #!#!$!%& &!% % &$##"! &&,$.50;?;GHGSTS^^`ihhqnnwtu}zw~}x€~x€x€{ƒ‚z…ƒx‚€|„ƒRšÞW â]¤ã_¢àY›ÛS˜ÜJ‘ÙGŽØIŽØHŠÑE‚Ç=w¼7o²?u²G}»Ey·6c4\‘:c—Ht¬T„¿T‰ÆS‹ÈR‹ÉO‰ÇOŠÇN‹ÄNŒÆOŒÈN…¾Gv©6a+Ns"<]+G0              "!$$($&!''"'' $&#'"       %(*,..1!3%7':&9*=,?,?-?,=+<+<1;H>CM;>H9:D)+4    (.!1(8/>#3?#2@%3D&3B ->-?+;(9!0*! ! " " " $ $$%$!"##!##*",3.9;y¾8q¶>s´D{¸Ey¶:hŸ7_”7b—FtªT…ÀU‰ÅU‹ÆRˆÄQ‰ÅSŒÇUÈW’ÍTÌQ‰ÂEw«6a-Nw"<]+F,              !$!$#'%('' ((&($'"      %),,.0 2$6&8(;*=,?+>,?.@/@/@!->5@NAFR?BL89C*,5  !&."3);!/A"1A%4C'5E'3D -? /A->);$6".#!     !"# $ # '&#"!"" )'0*494>BBKOQ[_[dhdnnlvvr||uw‚‚yƒƒyƒƒz†…x„‡z†‰z†‰N“ÙT™ÞYžá^ á\žßY›ßS•ÜL’ÙJ’ÙI‹ÕH†ÏA|Â9r¸=s´By¶E|·;k¡7a–6`•Bo¤P€¹S‡ÂT‡¿O…¼P‡¾TŒÄ[“Í[”ÐU‘ÍRŠÃEx­9d”/Py$=`,G-             ""%$'$(&(!)) '*$(!       # & *.11#6$7':(;+>,?/B.A.@.@ /@.>5@QCGUBEP<=F,.7  ! $(.$6); /A#1B#1B$3C'3E#1C!1B/A+@%9#3'!       "##$$#!   "$ )"-4.9=;ELFPXT_d\hkdprkwyo{}r€s€‚t‚u„u†u‚‡vƒˆN‘×T˜ÝXœß`Ÿß`Ÿß\ÞT™ÜN–ÚL“ÛJŒ×J‡ÑCÆ:tºl¡Q¸S…¾S†¿P„»M„»S‹ÃWŽÊVÍTËP‰ÁFx®8c’0Qz%>`+F-               !  #%(&( ''!'(!')%(!     ! $ %,/1#5%8&9)<(=*@,B.C0E.C!2D0A!0@7BSCGWCER?BK/19  " %)-%5+< /A#3D'5G'5G'5G$4E"2E1E,C)>%6+$!         !$""#$#"""#$%-'292=F=GOIU[S_cZglansfsxiv{lz~m{l{‚n}ƒm}„m~„P’×T˜ÛYœÞb àd£à^ ÞXžÞQ™ÝM”ÜMÚJˆÓFÈ>x½w´E|¸Ar©8b—4_”9gœN~¶VˆÂUˆÁP†½O†¾R‰ÂSŒÇSËNŠÆLƒ¾Dt¬;e•5W~"=^/K/                "!$#&!&'"((!(' %&#%"     " $ ' ,.1#5&9(;(<*?+A.C-B0E 1F 2D1B!0@8BTFJZFHS?AJ24=  #(*!/'5,<"2C$4E'6G'6H+9K'6H#6H 4K1H*A'9!/(%"      "!!""!"$%""!!!&(2(1=4>F=IPHU[Q^fWem_mtanxds{cr{cr~esdtdvN’ÓVšÚZžÞc£ãf¥ãb¢á\¡áTœàN–ßL‘ÛK‹ÕG„ËB{¿:t·;u¶F~½?t±8f›3_”8d™Kx±V…ÁX‰ÅTˆÄPŠÅRŠÇSŽÊNŠÆLˆÄJºBr«;f–5X&Ae-J1              !!""%#$ %&!)) ))''%%      " & )+/3"5&9(;+=+?,A.C0E!2G!2F2C3D!0@9CQGKYHJUBDL14="  #&*!/'7+< /B%5F'7H*9M+9M&7H&7N$6R2L.D*<$5--)$       "#"#"#$!##"  !!*)3*4>3=G=ISDR[L\dQalUfrZjyZm|[n|]o]r~^sN‘ÒX›Ü[Ÿßc¥ãh§äf¥ä^£ãVžâO™ßL”ÝJŽ×F‡ÍA{Â9t¹=xºE~¾Ay¶9hž4`”9d™Ft¬Sƒ¾U†ÃP‡ÄQŠÇP‹ÈPŠÈN†ÃI€¼G|´Cr§;e•5V€%Ac.I/               ! ##&&'!)) (( %&!%&!     " & ( *.1#6':)<)<,@-B-B0E0E 0F1F 2D"1B:CTJN\JLWEFO67A!  #(,!1&7*=/C&5I(7J+8O,8O*9O*9U';X"8U5M0F*>$5 1.'!!      !!"!#"!"#%%# %"+)2(3<0=G9HTAQ^GYfOapSevUiyWm|YnZpYrO‘ÒW™Ú^¡áf§äkªçh¨æa¦åX äO›ßM•ÝKØE‡ÎBÆ,A/D0E0E!1G!2H!1F$1C>EWLO]LNZIJT78B"  !), 1%7+@!2G$5J*8N*9O,;Q*^$=\6S2L*@%8!1,'$!!!    #%#%$"#%%$""  !%!**4&4@.@M7JY=QaF[mJ`rPgxPizRk}UoTn~NÐW—Ø_Ÿße¦ãkªèh¨åa¦äZ¢äR›ßN—ÜKÖI‰ÒCÈ=y½EVQR`PQ\LKW<*>M3HY:PbAYlE]qJcvNhzOj~Qn~Pn€NÏX—×_ŸÞc¥âkªæi©æb¥ä\¢äS›àN•ÛL‘×HŠÐFƒÉ@z¿=t¶F}ºK„½Dx­>lŸ@i>jŸL}µN„ÀPˆÄN‰ÇJ†ÄJ…ÂJƒÀI€¾I¼Cx´?m£6[‰'Ah-J.               #!%"% %' '&&% %%#    ! % * +/2"5(<)>*>,B.E0F 0F"3H#3H"2F"4F#4D@HYRTaSS^PMY=>G$  &(*!0&6+= 1E#4I%8L)"1G&6N(:P)VjE^sJezOj€RnRmSq…PŽÎU“ÓZ™Ú^ áe¦äf§äa¦â[¢àWžàO—ÜL“ÚIŠÔG„Ë@y¿=t¶Cz¶OˆÀNƒ¸Fu¨Cn¡>lŸJz²O„ÀN†ÃJƒÄE‚ÁH‚ÁH‚ÃM‡ÇN‡ÄJ¾Dv­8c‘(In.K-            "!!$"&"&*"'*"&)$% %&      ! &,04!6)>&=+B,C,C0G0G!3J!4I#6K&7K#5G%7H@H% " ( ,0"3$7*@ /F%5L(9P*@H ) % * -/#5%8*@/F"4K';R';S-B\5Oo?^ƒ@bŒAe=aŒ9_‡6Z2Ru'Cd!7S-F'<%:';(=(>&;';%;%9"5-/ 0!2$5%7&8(;+=*<):+=$5%2%2"0 .&4%3$6 .@(9J/DU4L_=ViC\pJeyPkƒQm„Rp…Tq„Wr‡R‘ÎT“ÏX˜Ö[žÝ_¢àa§å`¤å]¡âXŸáRšßN•ÛLÖJˆÏB}Â>u¶Bx´N…¿Qˆ½I{­Er¥>kŸEsªP‚½O…ÃL…ÆG„ÄJ†ÅMˆÆNŠÇQŒÆP‰ÀG|±&A)@+A.E 2I1H 2I 5K"7M#8N%7L';N%9K@K]VYgVWcQPY?AJ!+)-2!5%8*?/F1K%:Q)>V,AZ0Gb&9$8'=)?$:'=)A,D2J"7O!4N 0F/B+>*<,=->+<->$3D)9K+?S3I_9RfB]rHdyLh€Pl„So‡Wt‰Wr‡Wr†NŽÍR’ÑT–ÔU™Ú[Ÿàa¥æa¥æ_£ä[¢âUžàQ™ÝQ•ÛMŽÓD‚È=x¼>v¶G~ºO‡¿I{°Cr¥?n¢Br¨NºO†ÃN‡ÅK‡ÅK‰ÈMŠÊPŒÈR‹ÄPˆÀH±>nž0S{3N!/             !!" #""%&(&' (' %&$%        %."7%?*F+G.I3O 7Q!7P!6L"6M"7Q#8R$:S%*A,B)>&:)@.I2M$:T$9T0G/D0C/B-@.@,>!1B%5F+>Q/F\5Md;TlC^sIezLhPl„PlƒPm‚Ql€RmLŒÎOÐS”ÔW™Ú\ á_¥å`¤å_£ä\£ãY âR™ÜQ–ÜLÕH‡Í>z¿=u¶E{¹P…¾M}³Es¦Ap¢Ar¦L~¸Q‡ÂP‰ÇNˆÆMŠÉL‰ÉM‰ÆOˆÂO‡¿J~²Ap¡/S} 6R/            #"!""%$'&* '* (*!))&(!     " )1$9'B,J/M0M5R 8U7R!8R#9S"7R$:T%(D,K/M1O5U 9Y":X$;X#:T$8T$:T&P)>S,?S@M_]`n]^hWW`IMX#.=$>%?&A(C)B/H2L#8S*C]/Gb0Hd4QmDd…Lp—Ot Kt Ku¢GqBm˜Af4Vz(Db!9R2I2I5N"9U$=['A`";[%=]!6T/J'A*D.G-D)=(:*@2M5P 8T$P-F[4Of%C*I.L2R5V 9[#9[%;Y&U'@Q,AR)?S,ATCPb_cpcdn^`hLQ]$.>%<&?&A(A)C/H!3L%9S(?X.Ga0Kd3Pk@c‚Hn“Kq›JržGqžGrBl—?c1Tw'Db 9R3J5L#9S";X%?^*De)Ef$>_%%C)E-I/N5V!8Y%=[%?Z&>Z)=Y)>Y'?V)BU+BV*?V/BXIUgdgugkueeoSTb*4D(='A$?&A+B.E5L#9R*>Y,C^2Je5PkBb‚Hl‘Ho–HpšFp›FošDl•:_†1Ps)A^7N5L 7Q":U%=[%>_'Bf+Ei%@a8U2J-B*@.D*>&7#7*A.H4N7Q8O 7O5N5N6M5I5G7J$[nC]tHa{Ga|Hc}Ie}Kd}Ib}Jb}LÑMŽÐSÒV•ÖZÞZ ß] ß[ÜY™ÙU•ÕNÔJÔI‹ÒF„ÍD~Æ>vº@wµM€½S„»Lz®Iv¦Gt¤Hw®PƒÁRŠÆN‰ÆLŠÊI‡ÇG„ÄG€¾H~»Fx³Bo£3X„!<\!4              !!""# # #%( '*"), ),!*- ),#&    % - 3!<$B'G)I,K2R4T!:Z$=\'C_)B_*@]*@[)AX(@V)?U*@X0CWMXjkmzmoylmuYZe-8E%<"<&A'A)C/G3L!8R)?Y+B\-G`3MiBbƒCgŽHn–Cj”Bk–Dl˜?g7[‚-Km";V5L1G5O#:U#<[(Aa(Ce'Bd'Cb8R3J0F)@+@)<&7%7(=-F/H4M5N3L4M5N 6N4G4F#:M'>U-D^1Kc6Qi:Wm?\qC]uE_xE`zGb|E`yE^xH`{Ib}MÑNÐR‘ÒV•ÖYœÝYŸÞZœÜZšØX—ÔS‘ÑPŽÒLŒÔJ‰ÒG„ÏA{Å=u¹@v¶I~»S…¼L|¯Hv¦Ft¤Gu¬N½Q‰ÄN‰ÅL‰ÉHˆÈG…ÆH„ÂI½FyµEq¥6\ˆ$?\%2                !!! #"%%( '* '*!),(+ ),"&   (3":$B&G)L+N-O5U8W">\&Ba*Ec,Fd)B`,C^+B[(>V*?X,AZ0FYQ]lmo|qs}onw^`k.:E(>%@#?&A*D/G3L!9R'>Y/H_/Ia2NjBaƒEhAfŽ?eŽ=d=e;aŠ5X})Ee!7Q2H2I5O#9T%=Z&>^&A`'Cb#?\9S5L1H+C)=&7#2$5%9*@,A0F/H1J2L2K"6N 4I3E!8K(?U-F`2Ke7Qk:Wo;Zq?[tC^wD`xB^wB\vC_xD_yB]xO‘ÑMÒS‘ÕU•ÕVšÛXžÝZÝZšÙY—ÕT‘ÑRÓNŽÓJŠÑI†ÏD~Æ@w»@v´G|¹R…¼P²Iw§Gt¤Hu«M~¸P‡ÁO‡ÆKˆÉI‰ÉHˆÈF„ÄG‚¿I~ºEt¨8_%Cc%3                """%%(&)!(+ ),!*-%)!%   )4";&E+K(L,P/Q6U!;Y$?](Cc+Gf+Ge)Db)D_)@Z(?U+@W*AZ0EYS]noo}uuspzdep1$?$A&B*D-F2J6N'>U,D[1Jc6Pn@`‚Dh@d‹]'Ba%Aa!<[ 9U4M.I-E&8 /,"1#6'9);)>+E.F1I1J 1J 4G 4F%:N(?V/Ha3Lf5Qi9Wn;Zq>\v?]u@\tA]u@\u@[u?ZuA\wO’ÑO‘ÓQ‘ÓU•ÖV™ÚXÜ[žÝ]œÜ[™ÙX–ÖT”ÕP‘ÕNÔJˆÏI‚ÉBy»>t³F{¸Q…»Q´M{«Gt¤Fs¦J{³O…¿P‡ÇK‡ÉJˆÈIˆÈIˆÇH…ÃI¼Fx­8b‘)Hi'8            !"!$#&%(&) '* (+(+&*$   * 2 #;&D)I'J+N/Q4S6T#=[%>_(Cb'Da&Ca*B_*@[(@T*@T*AW0F[OXkpp~tusp|cdr4>N-D'B">'B)C,C0F5K%c†>b‰9^†4Z„3W.Rz(Hk9T0F(>,E1J6O%`9Z5R2M0L,C'8 .)."2!3"4$6%<'>-D/F.E/C3D&:N)?V.G_0Kc4Ph7Ul9Xo:WrYs>YtO’ÑP“ÑO‘ÑS“ÓW—×YœÛ[žÞ^ ß` ß^›Ü[›ÛV˜ÙP“ÖLÒI†ÌD}Â?v¸Dz¶O„ºN³Hy©Bs¢Dr£Ix­O‚½O…ÄLˆÉK‰ËFˆÉGˆÈJˆÆM…ÁG{°;g”*Im(<            ! #"#&%(%(!(+!(+ '* &+%    + 5 <#A&E'F)H.L1O 9W!:Z$?](Da)Ec*Db+Da*B\+AZ-DZ.D]0E^LYknq}rt~st|aan5?P,C'@'A&@)B*E.G!6O%=S,E\2Jd6Pn=[~>_„9^„3W,P|-Ow'Jl#Da5P*A(>,@0F5N"8T'=X%=[#<[7T 5Q2L2L+@%6+)(/ 1,"/"5"7&<-C,A,B 1G$8N&>R-E[1Ja4Nf5Qi7Sk:Uo:Tn=Vpt·Cw´N‚»P´Eu¥Dq¡AoŸDs¨M€ºN„ÃK†ÆI‡ÈH‰ÊH‰ÉKˆÆL‡ÂJ€µ]%B`)Ec+Fd,Eb,E`.D`/D_0Ha3IaN]mnq|su~ts|cco:CT 0G)B&@)C+E.H 4M&!1C"6I(>Q+DY0Ja3Nf3Og5Qj7Sm8Ql9Rm7Rm8To9Sq7Rm8SnR’ÒS”ÐR’ÏU“ÓY˜×XšØ\ŸÜ`£àa¢ßc¢ß_žÛ[ØV˜ÙP‘ÕMŠÏF€Å?u·At³M¸R´Iw¦DpžBnŸCq¤L}·N„ÃL†ÆJ‡ÇH‡ÈHˆÆJ‰ÅNˆÃH€³)C-G 4M#8Q(>W-C\0Ha2Lf1Lh7Tt4Sv1Qx)Ir$Ck"@d"=^7S(>!4!2';(@0J3O"7S!7R5N2K0I1J,C*=#4+%*))( #&+!/$0(7+;!1B$8I(=O)CW-H^/Kc1Me1Pg2Nh4Oi7Ok4Oj4Qm5Pn7Rm6RmR“ÐT•ÒS“ÐV•ÑY˜ÕX™×[Ü] ß`¢áb¡ß_žÛ[œÙV˜ØO‘ÓK‹ÏFÆAu¸@s²IzµN}±Ep AkšAk›Co£Iz´N…ÂL‡ÆLˆÉG‡ÇI‡ÆK‰ÅO‰ÄK€µ?mž-Pv*D             !"! $$'$(&*&-)-)-'*'*"'"  ! (4 "=$C$C(H)G,G/M2S8T!=\$@b&Ce*Hh,Ih-Kh0Nk.Ki0Lk4Nk3Mj7OkScwsvƒuw€usxdck6=I':':'>&>0F"8O%;U(>W.D].F^0H_/H_1Lg1Nn/Lq)Fl!?b;[5S2L"5 -!0"3'>*C0I2K4J0G0F.G,F,C)< 0+&*&$  ""%,".&4*:0A#8J%=P'AV,F].Jb.Lc0Of0Mh1Mh2Mh3Oj2Nl3Om5Pk3OjU•ÑV–ÓV•ÒT“ÏX—ÔX™ØXšÚ[Þ`¢áb¢à`ŸÜ^ÚV˜×O‘ÔJŒÐGƒÇ?u¸>r²Ev±Jx®EnŸ?g—?i™Bn¢Fy²N…ÂM†ÅJ‡ÆJˆÈLŠÇN‹ÇRŒÅM‚¶=lœ,Ou.F         "$"!#$$%&!(#(&+(-)/"-5!-5 +2#.2!+0(-!("  " ( 2 !< $A&D(G(E,G/M2R8T W-C\-C[,BW,BX-F^,Hd-Il'Cf <]5T.I(>.&+ 1$7)=+@0F/E,C+A)@+C*>%6 1*&%#    !( +%4*;1B 7I%=Q*DY)F\,I_,Kb,Jb.Jd0Kf1Mg1Mj2Nl2Oj3Oi2OiV•ÑX—ÓX—ÓT“ÏX—ÔW™ØU™ÚXÞ^¡á_¢ß^ŸÜ]œÙW™ÙO’ÓIŠÎFƒÇAy¼)5<#.5 *2 '"  & 3 ; "=$A'C'C+G1M0P8T:X">\$?`(Bc*Fd+Hd.Lg-Kf.Kf/Mf1Nj9RnRbwwz‰zyƒvrxeci35<1 6$9*=/H5N$:S'=U'>T('9*;->"3C#6F)>L(=N(=N)AP*?J(9C%4="-7"*   ! . 9">!?#C&C)E.M1Q7U!:Z#<\(Aa(Bc*Fe(Fb,Jd-Kd-Kd.Jc0Lf7OiScvxzˆ~{…zuzeag79@-4"6'<,F.E"4K"6K$7M%8M'9O)=T*>Y'=Y&@[#>Z!:U1J'=/ $"(+11%8$7%8&:$7&7%6"3.+%!       #*%1+9 5E 7L%=U)B\*D^)F_+Hb.Kf.Ke/Ng0Nh/Mi1Ol2Nl3Ql3PkV—ÒY˜ÔZ˜ÔW–ÓT“ÐW–ÖW™ØX›Û\ ß`¢ß^ŸÜ\›ÛX˜ØQ’ÒKŒÑI†ÌB{Á#?"> <"9$9'9'<%<)?+=/A2G!7I$:K*BS,EV-FY0J[,ES')@,B.B!1C#4F&8M(W(A[*D^*G_*Hb,Id.Kf.Lf/Ng/Mh0Nj1Nj3Pk3PlV–ÑX–ÒY—ÓU•ÒQÍV”ÒW–ÖZ™Ù]Üa¢ß_žÜ\™ÙX—ÖQ’ÓLÑJˆÍD}Ã=t·9m¬AqªCn¢9a“:`>i™Ar¦I}¹O…ÃNˆÅMˆÆK†ÄGƒÀH€»Cu­2_’ Bj(@ $ %0!7%:!9#<%>$=!7"6%8%8%;)=*:-=3C4D'?M(AO*DT,HX.HY-FS(=E&6=!,2# #4=#B'H)I(H+K.O2U7Y!:[%A`&Ba'Db+Hg,Ii.Kj.Ig1Kh0Hc1Id8NgSasz}ˆ~…~y|kij8:>,./1 7$:&9*<->"2C!3F';R)=V):T$:T"8R!5O,B#5&   ! #&))*,. . ,)'!      %!,*90A#7I#;P'AX(BZ)E\)F^*I`*Ga.Id.Ke/Le/Mf/Lg1Oi1Oh2OkU–ÓS•ÐU–ÑU•ÒR‘ÎT“ÒT–ÕV™ÚZ›Ü`ŸÝ_œÚY—ÔV”ÔQ‘ÓMŽÓJˆÍD€Ä?vº:n­?o¨?l¡4^‘3Z‹9c”?n¢Hw´P„ÂL„ÁJƒÀI¿F~»Ay²:k£,Y‹?e&@ " !+1!33411/,+"1#4%4$2'4,91< 5@&$E(H&J(H-M.N0P6Y";^%?`*Ed)Bb,Gf.Ji/Ki0Ji/Hf/Id2Ke7MfTat}~‹‚‚‰„}oik:;@,/.23#5'9*=,>!1C"5H':P);R*;T'8O#7P!4L)> 1#  !  !"%%()''%"       )$0,;1B!6K&>T%BW&BW'DZ(D](D]*E`-Hc-Ic,Jc.Le1Mg3Mg1Lf0NgT•ÓQ’ÎR“ÏR“ÐS’ÏT“ÒV—ÖU˜ÙX™Ú_Û^›ÙZ—ÔU”ÔR’ÖMÓJˆÎFÇAw»u³:p­3dž&O9\":    ! &( '* %&& #(*!. -". +#.&/-5!/9&5@%5@%6@&5?%3:".2$)#   # , 9$A%B&E'G+K+J0M1P 9X#;\'@`*Cd,Ee)Db,Gd/Hf/He/H`2Ld7NeUbt€†…†~ƒumr?@E,./1 3$6&8)<-@!1D%5I'8M/@U+;R(7N%5M!3K*= 0 "     !#%$"      #,&5-=0C#8N$s³:o°3f¤+V‘"Eu/P3            #*+,(%# '#)'.)1#.6!/6#/5"-1)-'*#    ( 2 7"<#@&B'D)E,H/J4P#;Y%=]'?_)A_)D_+Fa-Fc,Fa/H_.I^6NcTbs‚ƒ‘‰†‹ˆ{rxBAH -./02"4'9(;,? 1D#4G'8K1BV,=Q)7L%3H"/E%6+         !!"      !&!0):.@0D#7M%Y'?['@[)B\)B[*D\*F]+F^,H`.Ja/Ja/Kc.KcS˜×LÏMÏP‘ÑPÏQÏV•ÕV˜ÛU—ØZ˜ØZ—×Y–ÖV’ÔQÓK‹ÑG‡ÎE‚ÇC|¾=q´=kª[(?])?Z,C](@\*B^.G^2J`9NcUcs††”Ž‹“’ˆŽx}HHM!-!0.00 2%7(;+> 1D"3G$5H*;N(9L&5H"0A,; -%               $ +$2*9/@0C!6H$:P$W&?Z&?Y&@X(BZ'AY(BZ*D\(BZ+F]-H]-H],HaT™ØL‘ÐKÏP’ÑQÐRÐS’ÓU—ØU–×X–ÖZ—×Y–×V’ÕRÔMŽÔH‡ÎDÇB{½=q´;j«:g¢0]’)Q‚,P3XŒ8a™;i¢Y&>Z'=W(>X&>X(@[,D\/G_6LbYdv‰‰•’—”‹…|LLQ$0 0//1#5(:(;-@!1C#4E&7H*:K):K!2A-9%/"              #&!+&2*6.=2C#7H 8J":P$Z'=Y(>Z(>Z(>Z*@\*B[-G_5KbU`pŒŒ•š•™›“•‰ƒ†WT[$+7'9"4&8-B!/G"1K$5M'7K)8J,:M,:N,:P&5H!/?(5&                 %-#/'4,;0A0A!5F#7I"6J7K9K 9J!8M 7M$:T":R#;R%=T'@W%@T*BX(BWVšÚQ“ÔNÏP‘ÎS“ÐR‘ÎR‘ÎU”ÖU•ÚW•×Z˜×\›×Y—ÔU”ÔNÔG‡ÍCÅA{Á?s¸:m­:h¥7_š+Q‡*O-Rƒ1YŠ3\4^’+T†#Gv2b,T > - !        !   ! "$&)(%$&!(")(.*0!,3 *1!+2)0'-&    & )-3!8"7&='A-H1J!7Q%Z*@\(>Z'=Y(>Z*@\*B[-F^4JaXdt‘˜Ÿ™Ÿ£œ¢•‘šmo|CMbOqATvCTsCUnCSk>Nf:I`8F[.>N"0>&1#                 $(!.$0'3,;0?1B 3D4F!4F3F4F3D3H4J5J6J7K"8P 8P";O#TXÝS—ØM‘ÑOÍP‘ÎOÎPŽÍQ‘ÓS”×W–×Y™×]œØ[šÖX–ÕOÒIˆÎCÇ@{Á@t¹;n°9h¨8a -SŽ+Nƒ,P€/T„/Uˆ1V‰(L|;g+R#C6+ !   # % * ) '*+* ('$"#$&+ - -#/(3+6,8 0;%3=)6@)5=!.5'.&   '+ , 7 7$9&='@+E1L!7R$;U'?Z*@\)?[(>Z(>Z*?\.E^.Ga6LdXdu•”§¡ª«§±¦¥¶‰¥fu”eušfx›exœew dw¢ez£fz ev™[nŽSeƒK\u=M`2BQ&3@(2           #&!*".%1(6-;/=0?1A1B.@.B.@-?,>.B/@1B2C3H5K8L"9M$;PYžÞT˜ØN’ÑMÍMÍMŽÎM‹ÌOÐS”ÕV—ÖZš×_žÚ^œØY˜ÔR‘ÑJŠÍ@Ç>{Á>u»:o³6k­6b¤-U’)N…-Qƒ.Sƒ/R†/Q†*I{!:g)O"> 1,& $ %, 5!9!9 6 88!7!4 2+&'( .$4(9)9+;->0A#7F$7G*>M,>K+Z)?[)?[)?[+A^/E`/Hb8NfZew—˜£­ªµ¶´Ã²µËž¨Å„—½…—Â…™ÃˆœÄˆ™Æ„™Ç…šÇ„™Ä|¸rƒ¬gw›Wf‚DSg6DU*5A&/"          !% ($,%/'4+8,9.=/?/>/>-<*;+;)8)8*:,<,=-@.C0G3G!5J#8N[ŸÞV›ÚO•ÑN‘ÎLÌLŒÌL‰ËMŒÍQ’ÒT—ÖZ›Ø`Û`žÙ[™ÕU’ÓL‹ÏBƒÊ>}Ã'D)F'E(H'E#>(@$9 2-!."1#5);.@2B2D!5G$8J'=O,CU0IY2IX0EP,?H"07!)    $+135!7#8&=)C+D0K#8T%;V'>Y*@\)?[)?[,B^-C_-D^2Ke:Ph\gy›œª²²À¾½Ï¼¿Ù°¹Ù›¯Õ›®Û›¯Ú›­Ùž¯Ý›¯Ü—«Ù“©×ŠŸÌƒ”¿t‚§^kˆFSh4AR(2>"+             !'!)%-'0*7,9/;.</?,<)9(8(8&4&2&2'4&8):+<,?-B2D2G"6KZžÚWœÛR—ÖKÏLÍOÍK‰ÉL‰ÊPÑW—Ø[šÙ`žÚ`ŸÙ]›×V’ÒMŒÐD…Í?~Ç0B3D6H"9L$;O'@R/JY5Pa5N_2HY/BN'4<#*   & - 246!7$9%=(C-F2L 7R%;W(=[(>\'?[)B],D^/F_1Ia2Lf:PjZizžª·´ÅÃÂÖÃÇá¹Â橹櫺驹驹觷椷栴䛯ߒ¥Ô…–Äsƒ¨Xe?I_2v»;o´8j¬1^›'P…(N~+P)N‚*N€-N$>o1Y&C 92- -4#<%B+M*M'E)E%@!;$="80,)+"1):(;.?.>!3D#7H%9I,CQ2IZ3JZ2FU/AM%3;#)!  $,4 5#6#6%<#='C+E2M 6Q#9U)>[(>\(@\'@[,C].D^3Kc4Mg;Qj[hyž«·³ÇÄÂØÄÈã»Âꭼ꫻ꪺ꩹觷楷枲♬ܠÏ}»dt˜COh19K&.8!'  "           $'$.%0(5(6,9,7-:+8'4#."-+*!, -!/!2!1$4&5(:(;+=/A\ ÜXœÜT™ÙKÐLŒÌNŒÌLŠÊH‡ÆM‹ËS”ÕYšÚ]Ù^ŸÛZœØV–ÔLÑG‰ÐCƒÍ?}Ä=x½;qµ9l®3bž)T‰)Q*O-R…*O,P'Bu2\&G!<3/ +/3"<!?$A!9"8320/,)##'!/%4#3'2*6.; 0<%5A+=J.@M0AN+;D%18%)   '.4#9&9&;&@%@(E,G3N!7R&=Y)@\*A](@\*B^,D_0Hb9Qi;Sm>Sl[gv©·³ÆÄÁÚÄÇæ»Áꭺ誸覸觷榶梳䜮ߒ£Ô‰™Èr¬R_2=R(/>$," """ "          $!*$/%1)5+8+8+8+7'4$0"+%)) ** .. . .0"4$6'8,=]ŸÜZÝUšÙM‘ÒKŒÌL‹ËKŠÈH‡ÆLŠÊP‘ÒWšÙ[›ØZœÙ[œÙX˜×NÓEˆÏA‚ÌA€Ç=z¿>u¹;n±4e£+W(P€*Q€+P*O-O„(Ez6b*N @8 . (+ +/1.+)(&&'$ !&&'"'!((/*0".5(5=+9B+:A'5:!,1&*"  #+2"8*A+B)C+G-I1M4P$:V,B^/Id.Jd-Hc(E`+Gb0Kf8RlE]uG_xLaxblz§µ±Å¿ØÄÆå¼Ãꬹ窹覷礶夵埰ᗨٞÎ|Œºdpš@Kg+3E!(6'#  "!""            $ *$0(4*6-:,9*7*6'3#.)'''&(**++-0"3"3'7\ŸÜWÝTšÚN“ÔH‹ËIˆÈJ‰ÆI‡ÅK‰ÊO’ÑT˜×Wš×YœØZœÙV˜ÖO‘ÓI‹ÑE‡ÏAÈA}Â?w»;o²8i¨/]“*Sƒ(P€-S…+P‚-P„*I~ 9g*P#D7/ )' % # # ! ! " ! ""  " $#'&* *0#.3$05".1*/&+$#)$4 .B%6N-AZ3Ga3Li7Pn:Rs:Ss?Ww@ZyHaNh†Ol‰OlŠLi‡He‚C`~Da}Pj…Vn‡VoˆYm†gp€§¶²ÂÀ¾ÔÁÃḿ䦳⣲䢲㣴㡲㛫ޑ¡Õƒ“Äo|ªR[€3:S$,;".#$" "#!!!          %",%2(4*7+9.<-9*6%0#.)'&&''(')),, . /#2YÛT›ÛR™ØM“ÔFŠÌFˆÉIˆÈG…ÅG†ÇLŽÏR–ÖT—ÖY›×[ÚXšØQ’ÖMŽÔJŠÑE„ËA~Ã?w»PfMc}QmˆXs‘_y—d~ c¡f‚¥f‚§j„©l‡«q°w“µy•¸y–¸s’³q±nŠ«lŠ©nŒ©k‡¢e|˜]rŠhs‚žž¨µ²¾¿»Î¾¿Ú±·Ú™§Ó—¨Úš©Úœ¬Ú˜©Ø•£×Š›Í{‰¹`l”?Ie)1E#2$#"!"!! !        '"/(4)6*8-=.>,9(4%/!*%&%%%%%%%&'()+!/YžÜT›ÚQ˜×N•ÕHŒÏFˆËHˆÈG…ÆG…ÆKŒÍQ“ÔS–ÖX™×\ÙY›ÙT–ØOÕK‹ÒE…ÌBÅ>x½;rµ9l®3bž)S‰*Q†-T†-R„,P„)M#>m/T%D 80+& ! !  "        !$!& '+ *.#-1#.2#.2"-2"-4)7D?QdTj‚fœrެx—¶}»ƒ¢Á‡£Æˆ¤È†¤É‰¥Ê‹§ÍŒ©Î­Ñ“±Ô“±Õ•²Ö”±Õ®ÑŒªÍ‡¦Æˆ¥Å›¸p‹¨fz”kv†œœ¦²¯º¼¶È¸·Ñ§«ÍŠ–Â…•Æ‹šÊŽžÌŠšÊ‡–Æ~޾l{¥O[~,6N!(:*"!" !!!!         )"/&1)6*9-=+:*6&2!+'%%&%%&%&%%$%%'*YÜUœÛQ˜ØN”×HÐFˆËFˆÈH†ÇG„ÆIˆÉQ’ÓQ“ÕX™Ù\œÜ[›ÜV˜ÚR“ÖNÕF†Í@Æ@zÀ;s¸8n±3c¡,X,T‰+T†-S…-Q…+O‚&Bs0X&H :0 +& " ! "       # %$) '*"+/$.2#.2#.2"-2'3=:L\Vm†nˆ§„žÁ«Í—³Ô›·ÖžºÚ¹Ýž»ßœ¼àœ»ß ½â¢¿ã¤Ãå§Çè¨ÆèªÇë§Äé¦Äç¢Àã»Þ•³Ö©Éx”³dy—mv‰œ¥±«µ¸±¾µ±Åœž¸kwŸfw£o«t„°t„´uƒ±ly§\h;Dc#*=-     "           !)"/&2)3*7,:+9(4%0!+'&%%#%%%$##!"#$%XœÛR™ÙQ—ØM“ÖIŽÑE‰ÌEˆÉG‡ÈG„ÆKˆÉPŽÐP‘ÖW—Ù[›Û[ÜXšÚR”ÖOÕGˆÏB€Ç?{Â;t»8p±5g¥-Z“+WŠ-W‡-T†-Q†+O‚%Cs1[(L =2- # # ! " !        !  !#"&$((+"+/",0#.2!,0"-3(5@G[ni†¢Á™µØ£Àá¨Åä«Çè«Çé¬Çë¬Èë«Éì«Éì­Éì¯Ëî²Îï²ÏîµÒòµÑô´Ðó´Ðò±Îï©Çꟼá¬Îu’´^s’gp„¢ž¨´¬´¸®·¯ªµ‡†˜DLf@LjMXvVa„[h\iŽTb…AKh'0B ,!                   '".%2'3*7+8+7'2$.*&&&%$%%%&%'%$% ('[ÛT™ÙS˜ÙO”×LÓFŠÍD†ÉF…ÉD‚ÆH…ÉMŒÐQ’×S–ÙY›Û[ÜZ›ÜU–ÛQ“ÙJˆÓBÉ?zÂ=v»9q³6i©/\˜0[1Z0VŠ-S†)P‚&Ex4a'M"A5- ' " !   # "#  "# "%"(%)*,"+0"+2",4",2"-1+;DPfyw‘«“¯Í¤Àá®Éë¯Ëì°Ìí°Ìì°Ëí¯Êí®Ëí®Êí°Ìï±Íð³Ïï·Óò¸Ôó¸Ôô¸Ôó·Óô¶Òô±Íï¤Áä­Òp±Vkˆho„¨¡­º±»¾±¹¬£ªsry"-)%506J9C];G`1j1V&E6,%    ! !      !% (%*)-#.2$/6".4 ,1 -1)9BVl€€™¶˜´Ô¨Ää±Íë²Îì±Íë±Íë±Íë¯Ëê®Êì®Êì¯Ëí²Îð´Ïð¶Òñ¸Ôó·Ôó¸Óõ·ÒôµÑó¯Ëí¢¿á¨Ìk…¨r}–¨œ©ØÁÇÛÇÉÙÂÃÀ­®}uv$,#                         "!(&-!,4%1;'6@)6C*7E)6B)6>%3:&3;$19)2<$-7$0:$/8".5%/6",4"-1"-/$-1&.4(08'/5%.2'/3^¡Ý\ŸÜZÚWšÙR—×M‘ÓD‰ÎEˆÌE†ÊC„ÉF‡ÌIŒÑM’ØS–ÚX›ÜZßWšÞQ•ÚKØE‡Ô@Í&3:(3;)4<$2:$1;$1;%18&27%04%05$.6&/4(15)17*39(37'26&15\ŸÜ\ŸÛ[žÛX›ÛU—ØR”ÕJŒÍE‡ÇE…ÉEƒÈF„ÊKŒÑN‘ÔS—ÚV™ÜWœßS˜ÜP“ÚLÙGˆÕB€Î=xÆ>wÁAyÀAw·=r¬&6E%6B)9E+;G-?K/BM/AQ,=N':I'9H,?K2DT6HX6IWP[4EP+:C)7D2ESZs†œº›·ÕªÇæ²Ïî´Ñð´Ðï´Ðï²Ïî¯Íì¯Ëî¯Ëí®Íî²Ïñ´Ðò·Ñô·Òõ·ÒõµÒóµÒñ´Ðñ¬Èë»Þ…¤Ët‡§˜”¤Ä®µÖ¼¿ÜÆÄÖ½»«—˜RNP )#! !!!   ! " !   "  !"#       $!('+)0#.6%19(7>(7C)8A+7A*4>*4>*4>*4>(3<(3:'1:&19%18%17'2:'09'18&07'19*3;(29'26'25[žÜ\ŸÝ[žÝYœÛV˜ÙS•ÖMÐG‰ÊG‡ËDƒÈD‚ÈGˆÍKŽÒQ“×U–ÚU™ÝR˜ÛO”ÙLØEˆÔAÏs­?q¨Ap¤=iœ7^’/V‹-Q'Fq!:\ 2K$3F-=M>P_L_oPfwQj{TnYs…[u‰`ze}“h”jƒ˜iƒ˜iƒ™j„œg‚™f—f–g‚–j…™n‡›p‰œtŸtŒžs‰šlƒ“_t…FYh4FV6K[^xŒ„Ÿ¼›¸Õ¬Éç³Ðï¶Òñ´Ðï³Ðî²Îí°Ìí°Ëî°Ìî¯Ìí±Îð³Ïñ¶Ñó¶Òô·Óõ·Òô´Ññ²Îð«Æé›¸Ýƒ Çv‡¥—¦¾§®Îµ¶Ó¹¹Æ­­ƒux).3($!!!!"!   " "#  !"!  " !         "&")&-)1".8$19'7?)8B'5?(4>+6?*4>*4>)3=+6>(3;(3<&17'28&27&18(1:'09(29)2;)2<)2;'18&15WœÛXÞYœÝYœÛW™ÚT–×NÑGŠËF‡ËF„ÊCÇF…ÊIŒÏQ’ÖU–ÚV™ÜQ–ÙM’ÖHÖC…Ñ?Í;yÄ&3<*5=*4=+5?)4<)4<'2:'2:%29$05$16%18'0:%.7&/7'0:(1;*2<(29'17VšÛW›ÜX›ÜYœÛY›ÜV˜ÙQ“ÔIŒÍF‰ÌF„ÊCÇEƒÈGˆÌMŽÒQ’ÖT•ÙQ–ÙN‘ÖH‹ÒB…Ð=~É:xÄ;uÀ=w½D|¼Ax²@t­@s¨Cr¦>kž8f™[}Wp‰v£¥»›µË¤¿Ø¤ÂÙ¨ÃÙ«ÅÝ«ÅÞ®Çà¯Êá¯Ëã°Ìä¯Ëã°Ìä®Ëâ®Ëâ­Ëà¯Ìá¯Ìâ°Ëå°Ëå²Ìæ²Ëå°Êä¬Éá¢ÁÙ’±È~™³a|•Ng|h—‡¡¿š¸Ö©Æä³ÏíµÐîµÎð´Íï²Ìî°Ëí°Êî¯Éí¯Ëî°Îï²ÎðµÐò·Òô¶Òô·ÑóµÐò°Íð¥Âè’°Ø{•½xƒ ™­›ž´ £­—›|rv(.6%0($!"! " !""!              !% '#*(0)2$/:$0:'3=(4>'4=&3;'2:'2:)4<(3;(3;%18%07",3".2".2".4#,4",3",3#,4$-5&16%03$/4U™ÚU™ÚVšÙX›ÚY›ÜW™ÚU–×KŽÏF‰ÌG…ËCÇDƒÈGˆËKŒÐPÔP’ÖP”×RÖJ‰ÑD…Ð@Ê|Ç=wÁ;v¼C{½C{¸@u²@s®Ey®I{¯Gz²N¼R†ÀO·Vªwš¹›¶Ï±ËáÁÙîÇÞôÇáöÉà÷Éá÷ÉàöÉá÷Èá÷Çâ÷Çâ÷Æâ÷ÆáøÇáøÇáùÆàøÆàøÇáùÈà÷ÇáöÇâ÷ÇâöÆáöÄáö¿Úñ²Ðèž½Ö„¡¹f™n…¡ˆ ¿™´Õ¦Áã®Êê°Ìë¯Ëë¯Êì®Êí­Éì­Êì®Êí¯Ëî±Ëï²ÌðµÏó¶Ïó¶Ðó¶Ðó´Ïñ¬È쟹߇¤Íp…«‚†£™‘Ÿ¢“ž ‘œŽ‚‡ZV] '0#,&   !#$$"            $ )"*#+%-(2'1 +4 *2 )/',%(#&#&#'%)$(&*%)$(%($%%&#&"%#&"%#'#&#%#&%'P–ÙQ˜ÙR™ÚS™ÜR—ÚR—ÚR˜ÛN’ÖHŒÐGˆÌE„ÈDÄE„ÇJŠËQ‘ÑU•ÕV–ÙT•ØPÕI‰ÒG…ÑB€Ë>zÃu²@t°Dy°J}µI~¶O…¿R‰ÄQ‡½T‚®s™ºš¶Î¯Èß¿×ìÈßõÉá÷Èá÷ÈàöÉá÷Éá÷Èá÷Èá÷Éá÷Éá÷Éá÷Çâ÷Æá÷Çá÷Çá÷Çá÷ÈáöÊâøÉâ÷ÇáöÆâ÷ÆáöÁÝó´Ò頿ׄ¢»g‚œpˆ¦ˆ¢Á™³Õ¥Àã®Éë¯Ëê¯Ëë¯Êí®Èì®Éì®Éí¯Éí±Ëï³Íñ´ÎòµÏó¸Ðô¸ÑõµÐò´Ïñ«Æêž·ß‡¢Ës‡¬‰Œ§—Ÿ ”Ÿ››‡}„IIQ$.$+&    !$&#"         !' )"*$,(0)2)3*3*1',$("'"&"$#&"%%('+%)#(%($$$$%($$!"!$#&"#%%####P–ÙP—ÚP—ÚP—ÛQ—ÜQ—ÜP–ÛL’×HŒÑE‡ËE…ÈE‚ÄF…ÇK‹ËOÏU•ÖV–ØR—×P”ØJ‹ÕGˆÒCƒÍA}Çu±Cx±H|µI~·M„½TŒÈRˆÁS‚²m•·“²Ê¬ÈÞ½ÖëÆÞôÈá÷Çá÷Çá÷Çá÷Çá÷ÉâøÊâøÊáøÉâ÷Êã÷ÈáöÈáöÈáöÈá÷Èá÷Éá÷Éá÷Éá÷Éá÷Çâ÷Éá÷ÃÞõ·Ôì¢ÁÙ†¥¾k‡¡o‰§‰¢Â›¶Ø§Âå¯Êì¯Êë¯Êì¯Éì®Èì®Èì¯Éí°Êî°Êî²ÌðµÎò¶Ïó¸Ðô¸Ñô·Òô´Ïñ«Çë·ßˆ¡È{Š®ŒŽ§”Ž›—œ“‹•{u|68A'1#,&"      ##!      #)",$.'/(0(1*4*3'/&*"& $ %# # $!$"&#'"'"#!!!!"#!!!! "!" # #"P—ÚP—ÛP—ÛP—ÛQ˜ÜP—ÛO–ÚM“×G‹ÑFˆÍF‡ÊF„ÆEƒÅKŠËQÑV–ÖW—ØV™ÚS—ÙN‘×IŠÔD…ÏB€Ê>zÂ@|ÀC~¾>w´|ÅA|ÃD~ÀAy¶>s¯Av¯Ez³G|·H€¼OˆÁR‹ÃPƒ¶eŒ´Œ¬Ç§ÃÚºÔèÅÞóÈá÷ÈàöÉá÷ÈàöÉá÷ÊâøÉãöÉâöËäøËä÷ÈâøÉâøÉá÷ÈàöÊâøÊá÷ËãùÊâøÊâøÊáøÈâøÂß÷·Öí¦ÄÛ‹¨Ánˆ£q‡¥…›»”­Ï¸Ú£¿á¢½ß »ÞŸ¹Ý›µÙš¶Ù™µØ›´ØŸ·Û ·Ý¢ºÞ¥¾á§Àâ©ÂâªÂå§À✶ڎ¨Ï{“·…‘¬‹‹ˆ†•‹‡‘}‚OT[(2%/"(!     !    "          %#,$.$1)5 ,6*4 +5(2$-#' #" #" """$##&#'"'#%#$"#"&"%"%"%"$!%!$!$#&Q˜ÜP—ÛP—ÛQ˜ÜO–ÚP—ÛO–ÚM”ØJÔF‹ÎFˆÌD†ÊH†ÈMŠÌS‘ÒX–Ö[šØZšÚYœÜT˜ÛP’ØJŒÓD…ÍA€ÇB}ÄDÀAz¹HV=JXGTcJWfJWfN[jM[lN^sO_xFTnOYnrq}‚z€ƒ|‚€{iir,1; ,7(1%, # #!!  !"         %"*(0!+5$-:)3?,5?*5>(39&14"+.#*/!++#++#++",+$,/%,/'/0&02%.1%04)35(12(23)56+33+33*22*23*14*14*14(/2P—ÚQ˜ÛP—ÛP˜ÜO–ÛO–ÚO—ÚO–ÙN”ÙJŽÔH‹ÐG‰ÍF‡ÉI‰ÊOÌV“Ð\šÖ\žÛ] Ý] ßY›ÝU—ÚOÕF‡ÌBÅEÃD~¾?w³>t®Aw®Dz±D{²J¹OˆÄR†¿Z†²| Ãœ¹Ô±Ìá¿ØíÈàôÊá÷ËâøÊá÷ËáøËâøÊâøÈàöÈá÷ÇáøÈàøÆàøÅß÷ÆàøÄàøÈáøÉáøÉá÷ÉáöÈàöÇáöÃÝô¹Óë¤ÁÚˆ¤½f}–@RfANmgo~vy~y|}v{khr+1;%.:!*4)0'+$'"#!#"   "" ! !   # ''-+3%1:*4@-6D19F0;C-7?-6>,4;*37+46*45,57,58.69-47.7:09<3<>2<>1:=3<>4>?2==4>=5><4<<5==3==4:?28<39>P—ÚR™ÜQ—ÚQ—ÚP–ÙP–ÙP–ÙQ—ÛP•ÚLÕIŒÑH‰ÍGˆÉIˆÈNŒËS‘ÏY™Õ] Ü_¢Þ^¢ß]ŸßYšÝS”ÙKŒÑF„ÉD€ÂFÀ@wµ?u¯Av®Cy°E{³H~·N†ÂRˆÁX†´vÁ˜¶Ð®ÉÞ¼×ëÇßôËáøÉàöËâøËâøÊá÷Éá÷ÊâøÉá÷ÇàøÈáùÆàøÅß÷Åß÷ÆàøÈáùÉáùÉá÷ÉáöÉá÷ÇßõÂÝó¹Óë¥ÀÚ‰¤¿ax1;D4>G8@L8DI7AG5>D43<<4>>6?B6?A8?B8AD9BE=FH=FI>GJ>GI?II>HH>IG@HG>FF>GGEG?FHQ˜ÛP—ÚQ˜ÛR—ÚR˜ÛQ—ÚQ—ÚQ˜ÚQ—ÛN’×JÒF‹ÎI‡ÉJ‡ÈN‹ÊR‘ÎY™Õ_ Ûb¥Þb¥à`£á[ÞW™ÜOÔH‡ËE‚ÄD€À@x·>t°@u®Dy²Gz³L€¸P†ÂT‰ÃV†·s›À•³Ï¬ÇÝ»ÔëÆÞóÊá÷Êá÷ËâøÊá÷ÌãùËâøÉâøÊâøÉá÷ÉàøÈáùÆàøÅß÷ÇáùÈàøÉáùÉá÷ÉáöÈàöÈà÷ÃÝõ¸Òë¥ÀÚˆ£½[sŠ8FX.6B%+2      & )#,"+#+ '#!!58@]Yahdkiiojfo]]g*4=)4>+5=*59*48(02&+,#(*%*"& $!     $(&- ,2(6:/;A5BG;EL=GN>JL=IK>HJ>GG?GF=ED>FE=EC?GG@HHAIJAJMAJMEOOFPPGQQISSISSITSITRKSRKSRGPPGQQEMMGOOGOOR˜ÛQ—ÚQ—ÚR˜ÛR˜ÛQ—ÚQ—ÚQ˜ÙQ˜ÙO”ÙIÒG‹ÎJ‰ËKˆÉN‹ÊSÎX˜Ôa¡Ùe¦Ýf¨áb¥â_¡àY›ÛR”ÖJ‹ÌF…ÅEƒÃA{¹@v²Av¯Dy²G|µJ|µP…ÁRˆÂS„¶k“»¯Í©ÃܹÒéÄÜñÊá÷Êá÷Êá÷ËâøËâùËâøËâøÊâøÊâøÈàøÉáùÈàøÇàøÇáùÈáùÉáùÉá÷ÈàöÉá÷ÈàøÃÝõ·Ñ룿ه¡»Xm„/=L#+4 %    "% '!*#,$+"&" &,3KJSVU_[]f]\fOQ],6C*7C,6?-8>-6<*14(..&+-!'+#& $"  !%$+(1&09/;A4@D;GKALPAMOBNNBNNCNMEMLCKIDLKCKJCKJDLJEMMGPPHQSIRTISSMWWNXWOZXP[YOZXOZWPYWPXWMVULWUMUTMUTJRQQ—ÚR˜ÛQ˜ÚQ™ÛQ˜ÚR™ÛP˜ÚP˜ØQ™ÚP–ÚL‘ÖIŽÑJŠÌL‰ÊNŠÉTÍY–Òa Øf¦Ýg¨àe§ãa£á[žÝU—×LŽÏGˆÉI†ÅC~»B{³Dz±F{³G|·J·Nƒ½T‰ÄT„¸f¹Œ¬Ê¦ÀÙ¶ÏæÂÚïÇÞôÈßõÈßõÈßõÈÞöÇÝöÈßõÈßõÆßôÇÞõÆÞöÆÞöÆÞöÅÞöÆÞöÇÞ÷ÇßõÈàöÈàöÇß÷ÁÛó¶Ð顼քž¸Tj-:J!*1!    " '!'")#)%)"&! !"*:)38(02'--&+- &*%'#' #    "!(&-$-6,5>4=ER+6H*5G-6F.7B-5>(15&.1$+.)+(*#'!&&"!#"*(1+4>09B;BKBJPGQTIVWKWWLXVPZXR[XPYVOYWPYXRYXT[ZT]\S\[W_^Ya`Zb`[fd^ig]hf`ih`hgaih`hh_gf_hf_he^fe^fd[cb[caQ˜ÛSšÝR™ÜSšÝP—ÚR˜ÛQ˜ÚR˜ÛP–ÙS—ÚQ•ØKÒLÍNËOŒÉU’ÌX˜Ï_ŸÖg§Þh©àh©ãg§â_¡ÝWš×P“ÒNŒÌKˆÈJ„ÁC{µCz°I|±I~µH·L‚¾S‰ÄQ…¾\ˆµzœÂ’¯Ë¢¼Ó®ÄÛ³ÊàµÌâ°ÇÝ®ÇݯÆÜ¬ÄÚªÄÚ«ÆÛ«ÅÚ¬ÄÚ¬ÄÚ¬ÆÜ¬ÅÞ®Çß±ÉݲÊÞ³ËßµÍà´Íß°Íâ§ÅÜœ¸ÐŠ¥¼l…™FXi*6A"(/    " '!(#'#*")!&!! # $ ',(9#.?&2E&4G(6I+5G-5C-7?*47(04&-1#,0 (+%)#( '"#!%'-%/7-6?5>F?IOHTWKWYP]\Q^\T`^Yb_Zc`Zc`Xa_Y``\cb\ba]ed]ed_gfbihdlkcmlfqogrphqphpoiqpiqrhpnirogpmfnlemlckjbjiR™ÜS™ÝR™ÜQ˜ÛQ˜ÛR˜ÛR˜ÛS˜ÛT˜ÛS—ÚT–ÙOÔMŽÏOŽÍPËU’ÌY™Ð_ŸÖe¥Üh¨ßj©âi¨ãb¤ß\ÚU•ÓOŽÍOŠÊN†ÄF~·G{²I|²K}µL¹K½R‰ÄO†ÀT†¶n•¾‚¢Ã«Æ›²Ìž·ÍµË™±Æ–­Ã’©¿§¼¦º¨»‘©½”ª½“«½”¬À•®Á•¯Â—°Ä›³Èœ´Èœ´Çž¸Êœ¸Í•¯È‰¢¼w¥]p‚/E&6I*8J-;J2=H4@F2=A19=.49+26$-."*,$' &"!  "&!))1&07,6=6BF=IJHUTP\\XdbZec^ig`kickjfmjdlicmjemjfligljjqnhqnhqnltqmvsoyvnyvozwozwpyvpyvpxwpzwpyvoxvmvuhsqjusjusRšÚRšÚQ™ÙR™ÚQ˜ÛR—ÚQ—ÛP–ÚP—ÚR˜ÛQ—ÚP•ØMÓPÓOŒÎSÏW”Ñ`™Õd¡Ùh¦Þg¨àiªãg¦á_¡ÝZš×T’ÐP‹ÊQ‰ÆI€¹Fy±Gx°L}´K~·J€½N†ÃP‰ÆO‡¾V„¸Yƒ¯]„¨^}ŸSnŒ?Xp1FX)7F *7'!"'"' '+"+/"-2(48,7<0;?3>B7CF=JKCRTIZaES^K6BJ6BF3?B3;>/69*14&..!**$' $ !  % ($-!+3(29/:@8DGANMLXWT^^Ycc_febhgclkckielickhdmjelihnlhmjhpmiroiromurnwtozwnzvozwnxunwtoxujusmyulwslwtjusjuskvtjusT›ÛSšÚRšÚP˜ÙQ˜ÜQ˜ÜQ˜ÜP—ÚQ—ÚQ—ÚS–ÙS”ØNÕMŽÓPŽÑPŽÎU’ÑZ™Ôa Úf¥Ýg§Þi©àg©âb£Ý[œØS“ÒN‹ÊMˆÅI€ºFz²Cy°Fz³I~¸K‚½M‡ÃSŒÊSŠÈS†ÀP€³Lw¤Ck•8Z€+Gd 4I%6%        !!$$",-)47*59)26'03$,-!$    ! $!%"%$($)!'$" "' 0&8+@0E&5I,;L0>K4@H7BH6>C09=.69*03',0 '*$'# !"!& )2"*4*3<1;B9EGAMOJVVO[[Wa`Zec]ec_fbahecjgbigbhfbifbifcjgelheljemmfnmhpoiqolssjsrhsqhsphpohqnirpjqpiqpgnmfnmgqofqoT›ÛSšÚR™ÙR˜ÙR˜ÛR—ÛP–ÙR˜ÛP–ÙQ–ÙS—ÚT•ÙPÕOÓNŽÑNŒÌRÐY—Ó_žØd£Ýe¥Üg§Þg§àc£Þ]œØU”ÑNŒÊNˆÇJ‚½By±Aw®Ez³G}¸J‚½L„ÃRÌSŽËUÈS‡¼O~°FqŸ=`‰-Ii 3I&4"         !%&')#.1*37(15&.1%(    "# $#(#("'!&#"! #, 2'<+A#3J)7O.N1=G0;B,6=+59&/2%*/&+%)!%! !!!  &%-(1$/6)3:-8>9DH?JMDPRKWXOYXMXUR[WS]WT^XS]WR\VT\WT[VU\YU\YW^\V_\U^[V^]X`_[cb[cbXcaVd`Vb`V__V`]Wb`Wb`Wb`V`^Xa`WaaYdeSšÚSšÚSšÚT›ÛSšÙR™ØP—ÙQ—ÚO•ØP–ÙS—ÚU–ÚQ“ÖNÓOŽÏL‰ËMŠÌQŽÍW”Ò]œ×c£Úe¥Ýf¦àc£Ý_ŸÙW—ÑQÌNˆÇJ…ÀC{´Av¯Dv°G{µI¹Jƒ½RŽÇY”ÎY”ÏUŽÇR†»Kzª6AE;FJALOCOPFPOISPKTOMVSKUQKUPJTNJTNJTNKVPMVSMVTNWUNWSMVSNVUOWVOXYNXXLXWLWWISVHUTIUTJVWKWXJUWLVYMX[O\`T›ÚSšÚT›ÛU›ÛTšÚQ˜×Q—ÙQ–ÙQ—ÚR—ÚS—ÚV—ÛS•ØOÓNÏO‹ÍOŠÌPÍV“Ñ[šÔa¡Ùd£Úf¥ße¥Þa ÚZ™ÓTÌN‰ÇJ„ÀBzµBv°Du°Gy³J¹Lƒ»TŒÄ[“Ì]–ÑZ’ÊW‹¾O®@i”/Ps#8R%5#       "!"#(&)'*#*+!&'"#"      $&#*#)#( % $!&+#4*>.D#5K(;L+?N-=K.9F,5A)3;&06#-1!*/ (.$+ '#  !       &#,)1",4'18-8=4?C8DH?IM>JL?IH@KHAKGDLKDMKEMJCLIBLHAKECLHDMJDLKCMIBKHEMKCKLDLMCLO@KM?KM@LO?HL>JM?KM@LNALOBMRCMTDPVHV]T›ÚTœÛWÜX›ÚX›ÛU™ÛT˜ÙS—ÙS˜ÙU—ÙU—ÙU—ØV–×Q‘ÒNÏN‹ÍO‹ÌQŽÌT‘Ï[™Ôb Ùe£Úe¥Üd¥Üa¡Ú\œÖV“ÎP‹ÇM…ÂF{¸Dw²Cv¯Fy±K~¶M‚»TŒÅ\•Ì_˜Ï]“ÉZŽÀQ±Goš3Uy$=U'5%       #!$%(&)!(+$)*"'(""!    " %#*#*#*&&"! ! %+"5)?/D!5G)L-=J0>J-9D*5:'04#,/!*/&-")&%   !""       &$+'/$,5'19,7?/:B5@H9DI:FH:HG:FE;EEFE:DCGD?HE>FD=ED;DD=FI9BF:CJ7AH7AE8CG6CE3AD9EI;FJ9EI:HM?JSBOXKYbV›ÛXÜXœÛYœÚYœÛVšÚT™ØS˜ÙT–ØV˜ÙW™ÚW˜ÙW˜ÙS“ÔQÑPŒÎO‹ÍPÌRÍW–ÑažÙe¢Ûe¥Üd¥Ýa¡Û\›ÕU“ÍQŒÈO†ÃI~ºBu±Bw®Bx¬I´M„¹TÂ\•ÉašÎ_—É]ÀT„°Gqš3Vy#H6CL:HN9IK:IJ:II9GH;GH@2;?3<@0:@08?4A1:=1:>-8;-7=.8?.8B2=H3AL5EP7FP9EQ:JT;JV=NZHZeQcn[ŸÚZžÚ\ Û]ŸÚZÛZÚX›ØWšÙV™ÙW™ÙZšÚZ™ÚZšÚW—×T“ÔT’ÒQŽÎQŽÎRÎU“Ð\™ÔbŸÚb¡Ûb¢Ü` Ú]œ×V“ÏP‹ÇM…ÂI~ºDw²Cw¯Fy±L~³N‚·Tˆ½[’Æa˜Ë_”Ç]޽U„¯Isœ5Y|%?Z'9$         ""%%(&)$*,%*+#()"%     $%")")!(&&!! ! &-%6+>/D#2K&7K+;M.=J1E1BI5GN9KR:MS:JP:ILI4AO9IY:JZ=L\=L\@P`AQ_GTbO_lYjw^¡Û]¡Ú_¢Û_¢Û]ŸÛ\žÚY›ØWšØX›ÙXšÙY›ÚZœÛ[›ÛY™ÙV•ÕU“ÓU‘ÒSÐRÎW“Ð\˜ÔažØb¡Ûa¡ÛaŸÛ\šÖU“ÏPÉM‡ÅI€½EyµDw°Ex¯L~¶O¸S‡½XÂ_”È`”Æ\¼Q€®Fp›5Y})B_':%           $#&%)!'+#)-$*-#)+!"     ! &!(") ''%$! "'.#6+>2G"5L);N,=L/?J1=G09B-57(./$)*$&!%!    ! "!)&/$-6'4<-;C1AH5GO:MT>OV>PV=OT=OTNT=JQ?KN?KNAKNAJM@JLALM@KM>HL:EI9CG7AH:CK9EM:GQ:IU>M]ATcETeGVgGVgHXhHYiQ_lWgt]n{b¢Üc¤Þb£Ýb¢Ü_¢Ü\žÚ[œÙ[œÙX›ØY›ØYœØZÙ\œÙ\ÚW—ÔW–ÓX”ÑU’ÐU‘ÏX”Ð[—Ó^›Öb¡ÛaŸÚ`žÚ[š×U“ÐM‹ÈL‡ÅI¾Ez·Cv°Ex°J}µL·Q„ºVŠ¿\‘Å]‘ÃYйO¬Cl—3Wz)B_*=$        !!%#'$) '*$+.#*-&("#    "&!(!(&%"!%).%9+@2G"7M*=O.?N0?K1QZBS\CT[DV\ATYBTZCT\CRZFU\ESYHTYFRWFPWEQTFRTGSVCOS?KO=JN>JP@KU?MW@NZBS_FWfHZjHYjN^oM^oPcrResUfs\l{bse¤Þc£Ýd¤Þb£Ûa¡Û_žÚ\ÙZ›Ø[œÙ[œÙ\Ú[œÙ_žÛ]ÚX™ÖX—ÔY•ÓZ“ÒW“ÏX”ÐY—Ò]›Õc Û_ŸÚ_žÚZ™ÖT“ÏOŒÉJ†ÄKƒÀF{·Dw°Ex°K~¶M¶Oƒ¸S‡¼YÂ[ŽÁWˆ¸L{ª@k•4X{(A^+>%       "#%(&*')#++"**%'!$    !"&!(!(%%"#', 5$:+A4J#7O-AT0BT1AO/R]AU`FXbFYaGZ`I\aGZaI[cK\eI[bJ[bJY_LZaKX_IW\JY\JY]ETXCRUDRXCS[DQ`CS`FWcHZhI\kJ]mI]oNbsRfwQevTiwWjw[n}atƒf¦Ýf¦Ýg§Þe¥Üd¤Üa¡Ü_žÙ]œØ\›Ø]œÙ\œÙ]Ú`ŸÜ`ŸÜZ›ØX—ÔY–Ô\•ÒZ”ÑX”ÐZ—Ó]›ÕcŸÚažÙ]œØZ™ÕT’ÐOŒÊJ†ÄL„ÁG|¸Gx±Gx¯J|±N€µP‚·P„¹VŠ¿ZŒÀWˆ¹L|«Ak˜3Y|)Db-A&       "!!%%''*)+"+-"+* ') %!       #&!(!(&%$%)-!6'=/F4M';T/CV1BU2BT/=L*6B(19'/4$*- '+!%!%"!! # (&/#-7)6@-=H4EQ;MX?R^EXfI\jK`kMbkNckNdjNckNckPdlPdlTfnTemRbkQcjQchRdiSdjO`fI[`J[bJ\fK[iK]kK^lNbqOctPevKbtPgyVm}Wm}Yn}\q~_tƒbx†i§Ýg§Ýg§Ýf¦Üc£Úb¢Ú`ŸÙ^Ù]œÙ^Ú_žÛ_žÚaŸÜ`ŸÜ]ŸÛ[›×Z˜Õ]˜ÓZ–ÑZ–Ñ[—Ó`›ÖcŸÚbŸÚ]œØYšÖU”ÑMŠÈK†ÄL„ÁE{¶Fy°Fx­J|±N€´P‚·M€¸T‡¾XŠ¿WˆºM}­?j˜8]ƒ*De-D(         " $%)'+ ),"+.!)-&*$       !#& ' '#$%' */ 6(?0G5N';V/AW0CX4DW0?O(7C'19%-4$+/$)!& $!   ! $$++3%1<.;G1BM:LX=Q]DWdJ]lK`oOerQgrRiqSjqSjrSitUksVksWksYltWjrXksYlqYlqXkpWhpOahNajPcmPcqNcrPetSgwUizTizMgxTl~Wo€Xq[r‚^r]s‚`w†i©ßj§Ýi§Ýh¦Üd£Ûc¢Û` Ú^žØ_ŸØ^žØ_žÚ_žÚa¡Ü`ŸÛa Ü]œÙ]›Ø`š×^—Ô\—Ô\˜Ô`œ×b¡Ùb¢Ü^Ù[š×X–ÔPÍL‡ÇLƒÃG~ºDw³Cu¯Iz²N·N¸N¶S‡½W‹ÀWнN€¯Cn9\‡*Hi2F%    #&%*&) *,$--#++&(!$!      #%' ( '&&()- /%9-B2H 6P'Z,BZ2G\1BW0>O-7G'0;$/3 '/#+%$ $"*+4$3=*;C0DM5KVZ.D].E\0EX/?P*7G&0: +0#- +% "&&/ /9$4?*=E.EP6LZ=ScCYiF_nJdsOgwTgyTlyTmyUn{Vo|Vo|YpWn|ZrXp}ZrZs€XoZqYrXq~UnzRkwNiuOixOkxNixMiyMj|Nl€OnQl€Rl€PkLh}KfxIdsFbpi§Þk¦Þj¥Üg£Ùf¢Øf¢Ød Öd Öe¡×d Øc Ød¡Ùd£Ûe¥Üf¥Ýd£Ý`žØaŸ×bžÖaœÔbÕcŸÖd¡Øe¢ÛaŸÚ\šÖX—ÓPŽËJ†ÄKÀG~¼Cw²Cv®Ew¬I{°N¶P„ºSо[’Å]ÄXнKz¨Ag“/Qu#;S .         #!$%)%+!(,"*-))#% #     "(!+ )!($&)-2 9'B0L7R#>Y'A\-D^.E\-CW.?P'5E$/9'. *)#  $ ((0 0;&8E*>J/FT5N_=UgB[lE_pHcsJdtMeuNgwNgwOhxQjzPjzRl|Sm}Tn~Tn}Vq€UoVqWqVp€Uo€Qn|MjyJhwGewIgyGewEexEeyFg{FfzFdyEbwA]tA^u>[p=[n?[ni§Ýj¦Üh¤Úh¤Úf¢Ùe¢Ød Öe ×e¡×f¢Øf¡Ùg¢Úg£Ûh¥Ýh¥Ýf¢ÜbžÙažØbžÙaœ×c×dŸ×e¢Ød¡ÙaŸÙ]›ÖX–ÑPÊK†ÃI¿H~»Cw³Bt®Ct¬Gx°L~·Pƒ¼S‰¾Z‘Ä^“ÅX‹½O~®Ah–/Rw#&:G-BO1HY6Oc>XlB\oC^qDasFdtHdtIfuJfuKgwKgwNk{Nj{Nj{Pl}Pm|Qn}Om~Qn€Qn€Om}NmLlIjzEfwCdwBaxBaxAav>_s<_s>^u=\r;Yo9Wo8Vp7Un6Uk9Ukj¦Úi¨Úh¥Ùg£×g¢Öh¢Õg¡ÔfŸÕi¡Øi¢Ùi£Úh¥Úh¤Üi¦Þi¥Ýh¥Üe¢Ùe Øf ×aœÔažÕbŸØaž×d¡Ùc Ø]›ÕY–ÒTŽÌM…ÃJ¿I¼Cw³@t¬CuªEw¬K}²Rƒ¹U‰¾Z‘Å]”ÆV޾M¯Akš0U| ;V"4      "!##$%&*'+!), '($#     $ (!*"+#-#-!*'(+0 6!<'E/O6U"=Y*D])C\)@[)>Y(8M!.?&1&            $$,*6"4A((E2Q!:X%?\,E`)A\(?Y&:T%5K,>#1$          !&&/.:#5C)?N.EW4Nb8Uj>[nB^rB`vA`wAawBauCcwDdyDcyFe{Gf}Gh|Gh|Hi}Gg~Ii€HhFh€Fh€Fh€EfCd~Bc|@bz>`x=_w;]u:\t:\t:\t:\t;Yr=[t;Yr9Xq[-Ea-Ea)A[&;S!3I)> 0$              #",(4 0=';I)@Q/H\5Rf8Wl=]p@_t?_vA`yBby?_sAawAaxCczDd|Ed|BdzBd{Ce}Ce~Ac{Ac{Ac{@c|?b|@a}?`{@a{?bz?by?_w@_x>_w<^v>`x>^w>]v@]v@^w@^w>^u<\s<\rl§Þk¦Üi¥Ûg£Ùf ×fŸÖežÕfŸÖf ×h¢Øg£Ùg£Ùh¥Új¦Üj¦Üi¥Ûh¤ÚdŸ×ežÖdÕb›Óa›Ôc›ÔbÕaÕ]›ÕY–ÒW’ÎQŠÇN…ÂK¾Fy¶@q¬@o¦Cs§FvªL~²Nƒ¶Qˆ»WŽÁR‰¼Gz­:f”)Qu7T&< & "*(++ -".#0(4*4-5"/9$0<#08#/3 +/%*$     $)!,#1'4)7*7(5$1,)*-3$:+D1L 8V$=[+Ca+C`+B\$;R!3J*A2 %              $$.+7#3B(;K.DU1K_6Qg;Zq=\rA_vB`y>`y?axAbxAaxCczBbyCc{Dc|Cb{BazBaz?^w>]v?^w=^v<^v;\u>^y=]w>_x>`v>`uA`xDc{CbzBc{@bzAd|De}Dc|Dc|Bb{BcyAaxA`xl¦Ýj¥Ûi¥Ûg£Ùf ×f ×ežÕdžÕcŸÕd¡×c¡×d¢Øe£Ùe£Úf¤Úg¤Ûd¢ØcŸÖežÖdœÕa™Ñ`™Ò`™Ò`šÒ`Õ^œÖZ–ÒW’ÎTŒÉN†ÂMƒ¿G{¸@q¬>m¥Aq¦Cs§Gy­I~±N…¸TоL‚·As§6b&Mr7T%; ) #%+, .-"0&4(5+8-90:#2=$3?#19%28"-2%,$    $)"/%2)6)8,;*8!+9%2,*+.2"8*C0K8T";Z*C`,Da*B\%m£Aq¥Ev©Ex«H~±L‚´Hy­@m 1Yˆ'Gm3N#7 * &&,- 0#3$4)7)6-:/;!3>"3>&4@%3<'1:%.7%.!(   (,&5(9+<.A /A"2? ,:)7"/**/4#9)D1L7Q#>X+D`.Ga+D^'>W"6N.D$5+ #           "!+(2"1=&8F-CR1IZ6Se:Wl@_uA`uCawBazCazBazDc|Fe~Ed}Cc|Baz@`y=^x=\v:Yr7Vo6Un2Pi2Pi2Pi2Pi6Pj8Rm7Rk8Uk]sA`wEe|Ii€Gj‚Il…Hk…Hl†KnˆJlˆKl†Kl†Kl‡g¤Üg¥Ûf£Ùe¡ÙbžÖaÕ`›Õ_šÓ`›Ô^šÔ`Ö`œÖ`ŸØc Øe Øe Ød ×cÕašÒašÒ`™Ñ^—Ï]–Î\–Î]™Ñ_›Ö_™Ö[”ÑWÍSŠÇN…ÂH|¸>p«;j¢d/H"4 ) '*-0!2&8'7(9+;.= 1>"3@#4A$5@%5='4;%/7&-%   !& ,'5*9->.?.@ 1>,:*6"/(&+1"8'C/I7P$>Y,C_-F`+D^'@Y!7P-E%8. ( "            %$/.:%5C*=N-DV5Na8Sh>[r@_uBbvCcwFe{Dc{Ed}Db}Fd~Ed}Fe}Bay=\u\sBaxHhLl„OrŠOsŒRuSvVx“Wy”Wy’Xy’Xz“f£Ûd¡Ùd¡Ùc Ø`Õ^›Õ^šÕ^šÕ\˜Ó]™Ô_›Ö_›Ö_›ÖbŸ×aÕeŸ×ežÖcœÔ_˜Ð_˜Ð]—Ï[”ÍZ•Î[–Î]˜Ða›Õ_™Ô[•ÐZ”ÏTŽÉN‡ÂH~º@s¯;k¤9g;jŸ=kŸ>l >l .>"2@#4A&7D$5@%5>(5=#/5(-!(  #( .%5)9.>0B!0B 1B-;)7'3!,)*0!6)A/J 9T%=Y+C_.Eb+D_'@[#:U1L&<1 + & "           ((2!2?&:I+AR1I\7Pe=Wm?[sCbyFdyFdyFe{Ed{Ff}Hg€Ed}Dd|Bax>\s<[p8Vo4Ql2Nh0Le.Ia+E\+F[)DY,EZ/G]0G]1K`7Qe>XlEauMjSrˆXwŽ]}”a‚™c…œg‰¡iŠ¢j‹£m£k‹¡oŽ¥d¢Úe¢Úb ×`ŸÖ]œÕ]›Õ[™ÔZ™ÔZ˜Ò^šÕ^šÕ^šÕ^šÕ^›Ó`ÕbÕcœÓašÒ\•Í]–ÎZ•ÍX’ÌY“ÎY”Ì^™Ñ`šÔ`šÕ\–ÑZ”ÏUÊNˆÃI€¼Bt°;k¤8ež8fœ;f™:gš7d—6a”2Z+N|!=d0M#7 ,)%&*,$1&6(6(4-:/< 0=#3?$4@&6?(6@(3;",2'+%   &+#2)9+<-?0D"3G!3F!2C /?(6#1,-1 6)@0J!7S'?[-D`.Fb,Gb(A]":U2N(B7 . + &         #),5'8E*=M2FX7Na\p=Ym6Rh2Ng1Ke/J`+FZ*BX)BV)AU,DV.EX3J\6M_=UgE]qPj|Yu†`|g†™nŒŸq‘¤w—ªz™­|›°}œ±€²€²Ÿ´b¡ÙcŸÙ_Ö\œÕ[›Ó\šÒ[™ÒY—ÑZ˜Ñ[˜Ñ]™Ô]™Ô]™Ó]šÒ\˜Ñ^˜Ò_˜Ò^˜Ð[•ÍY”ËW’ÊW’ÊWÌY“Í\–Ï^™Ñ_šÓ^˜Ò[•ÐX‘ÍSŒÈKƒÀCv³=n§8fž6c™7a“4^3Z‹/U†-R"Cm4W%?. ' $##$(",#-#-%0(3+7+7+6#09$2:%2:#/6!*.&*#  "(-#3'9+>1E2H 5J!5J!4G 0A)8#3 20!4%<,D1K"8U&?\-Gd0Lg.Je(D_%N2FW8Na?Xk@[pA^tDbzEb{EazEb{FdzGezGfyGg}Fd{D`uB^sXk@\pB_tCawFazFbyGd{He{HezJg|Jg|Kg{GbvC^r?Zm;Ui8Qe5Na4L^2I[2J[0FX4HX8K[;M^AScGZgOdpUm{`x†jƒ“r‹›y“£›«ˆ¡²Œ¥µŒ§¸«¼¬½‘­¾’¬½’¬½\›Õ^œÖ[˜ÔZ˜ÓY˜Ò[—ÒZ—Ð[˜Ð\™ÑZ—Ñ\˜Ó]™Ô\™ÒZ–ÑZ–ÑZ–ÐZ–Ò[–ÒX”ÏTËU‘ËSŽÉTŽÉV‘ÊZ–Í]™Ï`œÒbÕ_šÒ[–ÏX’ÍPŠÆI¼=o«:h¡6c›3]‘.V†*Kz&Cn#>c1R%A0 (((*()( ,!-!.%1'3)5+6 /8 19#3:%3;&2:"-1&* $   !' .#3&7)<.B0E6J 5J 4I0E-@-@!5H(=T-B^3Ij8Pr;VyA[C^Gc‚G`€>Yx6Rq-Ge%=[2R(G!=72 + & !   "$"%*$0*6$1=&5B*;J0BR7K\=Tf>ViAZnB_sDavE`vIczIezJf{Kg|Lh}Kf{LexJcuE]nA[k?Yi=Vf;Sd8O_8N_7L]8L\;N]>O]AR`EVcPbmVit]r~f}ˆm†“vž|–¥‚œ¬‡¡±‹¦¶ªº«¼‘­¾‘¬½’­¾’¬½Z—ÓX—ÑX•ÐZ•ÒZ–ÑW•ÑW–ÑZ—Ñ[–Ñ[–Ñ\—Ò]˜Ó\—ÓZ–ÑY•ÐX•ÑX•ÑY•ÑX”ÐTÌTÌSËRÈTÊW“Ì[—Î^™ÑbÔ^šÒZ—ÐW”ÎRŒÈJ‚¾>t®:i£6c4]“.U†+Lz$@k 9\0Q%>2/ ..-,,, -%1%2&4(6)6,8 1;#4>$6>(5?(3<$06)/!%  $) .$4(9*<.A3H 6K#8M!6K 4J2J)WyHb†NhTn–XršWr—Uq“QkŽF`„:Uw/Ij'>^3U'I!@ 85 , ( & % &('(+"1*9!/>'7E*:G+=I1CQ7J[UhAZnB\pE`tF`uHcxHcxKfzLg|Lg|Oi{LevKctHaqE_mC\j?Xg?Vf=RcRdBUeH[iKalMalUhr\ozbvƒi~Žo†–v}—¥ƒ«…¢±Š§¶Œ©ºŒª»Ž¬½‘­¾’¬½’¬½T“ÐT’ÏS‘ÎSÍT’ÎS‘ÍT“ÏW”ÐX”ÐY•Ñ[—ÓZ–ÒX•ÑZ—ÓY”ÑV“ÑV•ÒV•ÒV•ÒU’ÐRŽÌQÌPŽÊQÊSËZ”Ï]˜ÑaœÔaœÕ]™ÔY•ÑTÌL†ÃBz¶;nª9i£8a™1YŽ.P)Fq9^4V,G#934221 1/ -#/%1%1(4*6.8"5=$7@&9A&8@'5>'0:!*2 %  #) 0$4&7*<-@2E"6I%9L#7I&;O1Ga@UuLb†Yq—d}§p‰´x‘¼}–Âz’½r‹µj…­\{¢Nk’B^‚4Ln%:Z-M"C > 5 2+ + *-./.!3$9,?$3F):L.@Q/AQ.AN0BR7J\;Pc>Ti>UkAYoBZpF^sHauKdyOf|Qj}Ri|Ph|PhzOhyMfvKdtJbtIasG`pIaqH]oGZoFZmH]mNcrQgtPesVlxYo{ex…hŽn‡•tŽœ{•¥€œ«„ ±‰¥¶Œ¨¹Œ©ºª»«¼‘«¼’¬½T“ÏR‘ÎR‘ÎQÍS‘ÏT’ÏT“ÏU”ÐV”ÐV”ÐW•ÑW•ÑW•ÒX•ÒX”ÒW•ÒV–ÒV–ÓU•ÒV•ÒR‘ÎQÌPŽËPŒÊSŽËY“Î^˜Ò_šÔ_œÔ]™ÕZ•ÒUÍMˆÅD}¹>r®.A2D3F 4E%;O7MhI_‚Wp•e~¨u»€™Å„ŸÊˆ¢Î†žË~—Áq޶cªSp˜B^‚4Ln 4V)J"B < 6 0,* * -03 5$:)@$2H(9M,@R1DV2DV2ET2DU:L]=Rd?Vj@Wm@YmC\pF^rJbuLeyOh}Pi}Sj{Tl~Rj|OgyMfvNhwNgxLeuLeuJcsLctMbuNcuNdtSiyUl|Vm}Xn~^t‚f{‰iŽqˆ—u{–¤€›ª†Ÿ¯‰£³Š¥µŒ§·¨·¨·¨·Ž¨·R’ÒPÐQ‘ÑQÐR‘ÏR‘ÎR’ÏR‘ÏT“ÑU”ÑV•ÒW–ÓV•ÔW–ÕW–ÓV–ÒT—ÒT•ÕS”ÔS“ÔQÑOÌOŒÊMŠÈQÊW’Î[–Ñ\˜Ó_›Ö]™ÔY”ÒV‘ÏOŠÇI‚¿@u±=nª;h 7a–1Y‰-O|"@i9[/L'A!8421"3"3.--!-$0'3)5/8"3<#6?'7D'7B'6>$06).#   #) .#3*;*=/B1C 2E1B&;Po«>l£7e™5^1Vƒ*Kv!=b 7W+E!70-,*,))(()"+'.+3*2!08%2<'3<%28!-0%)!  ") -%2*:,>/B!2E!2D 2C':P>RqQg‹c|¢rŒµ›Ç¦Ñ”­Ø«×Œ§Ó‚Êy’Àf~¯Sm™PaASdDYjDZlG\nF_oH`pJ`qQeuSiyVn€Xp‚Zq[r‚]t„^u…[r‚[r‚Yp€XoYqVoWpYr‚Wp€Yqƒ[s…^t†^u†_v†cy‡f|ˆh€‹l…rŠ–vŽšy‘~” ˜¤™¥€˜¤€™¥~™£}˜¢}– O’ÓO‘ÒNÑO‘ÒO‘ÒP“ÒO’ÑO’ÐQ“ÐR”ÑS–ÒT–ÓS–ÓU—ÓU–ÔS•ÕQ•ÕR–×Q•ÖQ”ÕO‘ÒLÎM‹ËM‹ÇMŠÆRÉTÍU•ÏY˜Ò[˜ÔY’ÒSÎNŠÈL…ÃEz·As¯=l¤8g›7b“7\‹/Q$Bj":^.J$8 ,' # !%$%%$%'!)$*&++/#.5#/3#.1!*-"%    #),#/(7*<-@/B!3E"4E(:Q:MlNb†_u™n‡®|•¿†ŸËŒ¥Ñ‡¢Î‚ŸËx”Âp‰·]w¥Mf3Or 7X,O'F$@"<83 -'' *4%>(C.I!7P' /? .B'9M6IbDXzUlf}§s‰·}•¿šÄ~˜Âv“¿oŒ¸`}©Un™F^†1Hk 5U/O+K'E&?!73 +&'* 3"=+F2N#8S)=Y+AZ.EZ=TiEYnJ[nJ\mJ]nJ_nJ_nMbqMbqOdtQfvUi{Yl^r„au†bv‡dxˆbx‡axˆbxˆ`t…^tƒ^u„\s‚[uƒ\v„[t„\t†[s…\v†]t„^sƒ\q[q}Yo|Yo{[q}[q~^s€^s‚\s[t~Zs}Xq}Wp}Wo{UnzQkyNÑP’ÓP’ÓO‘ÔQ’ÖP’ÕR”ÓQ•ÓR•ÔR•ÔR•ÔS–ÕQ•ÔP•ÕP•ÕP•ÖQ•×P”ÕO”ÕQ”ÕQ“ÔMŽÐNŠÎKˆËI†ÈKˆÈNŒÊPÌS‘ÎW”ÓV“ÓSÐN‹ÊNˆÅH»Bu±Arª>n§>l¢?h›5\‹+My'Fm!7^+H2 #   "" !&!(&"&&*(+ )-"+.'(#$"  #' -$2&6,<.= 1@"1D%6I0C[pª@p§@m¢7a”-S‚%Gr#S7HdCVrLa‚Vn’_vœ`zŸ_z [uŸTm˜KcŽ@Y}5Mn''9!3.- (&' -8&A0L3P#8T*@[;Ri@UkEWnH[mIZlHZjGYgHZhK_nL`oObqPctQduPdvRfwTiyUjzXlyWmyUkwUkvVkvSiuSiuRhtQgsRhtPgsOfrOfsMcpLcoJalI_jI`kI_lH_lH_mG^mE\kE\kE\lDZiE\hE[jEZiEYhDYhDYiP’ÓP’ÓP’ÒP‘ÒQ“ÓP’ÒP’ÏQ”ÒP“ÓP“ÒP“ÒP“ÒP“ÔP“ÔQ•ÖP“ÔQ”ÕR”ÕS•ÖS•ÖQ’ÓPÑLŒÎK‹ÌK‰ÉI‡ÆI‰ÆM‹ÊPÍSÐT‘ÑRÏOŒÌM‡ÇN…ÃG|¸Ev°Bs­Ct¬Br§;f™0Yˆ&Ju%Bk 7W+@#3$3&4'6)7(6*7,6.6 /5#17&29'4:,8?/=E0?E/kž7_.S2Rz4Nn3J`6K];N_@QbBUgBUfCVgDWgDXgG\hI\jJ]kJ\jN`oRbqScnL\fFW]CNU0;A%.3$*$"%+#0)7-=$1@&5D'5G&6G%5E)9J+9L-=N'9J):O,TeDViDXiEXhHXfIZeIYdK^fOalPbmO`kM^jM_kOalRdoSepSdpTdpUgpSdmRdlOdlOckOckOckNaiM_iK^fL_eI\fI[gGYeG[dI]eH\cG[dGZdFYdGYdFXeDWdFXdEWbFWbFVbEXbFXcDWcR“ÑP“ÒP‘ÑRÑP‘ÐPÐP‘ÐQ‘ÐR’ÑQ“ÐP“ÐP“ÐR‘ÒT’ÔS’ÒT”ÔU•ÕT”ÔU•ÕV–ÖT”ÔT”ÕQÐOÍNŒÌLˆÇJˆÈKˆÈRŒÎTŽÏSŽÏUÑQŒÍO‹ÉM†ÄH»Dy²Bu¬EvªEu©Bo£>f–:^‹@eŠIh„Ng€Vl‚_vŠc{d~’g€’g€‘jƒ”kƒ•kƒ”mƒ•o…–q†—s‰™tˆ™r„•j}csYhqHS\7?J.4=+4?%1A'4H.9Q2>V6B\:FaK+;G*8D'4B"-;(5#2-+ + 2;&E-G3L+A[5Kb=RdCVgEVgFVfHYdGXaIYaM_hQdmO`lN\hM\hL\gL]fP`iSdmPaiRckSclSclRajQcjN`gOahL^eK]dK^eJ\dI\cHYbGYaHZaHZaIZaGY`GZ_GZ_HZ`GY`FWaEWbGYbGYaGXaFW`FXaEW`GXcT”ÑS”ÒQ’ÐS‘ÐR‘ÐQ‘ÑPÐRÑR‘ÑR“ÐP’ÎQ“ÎS’ÑV”ÔU’ÒU”ÓV–ÔV•ÔW–ÕX˜ÖV–ÔV•ÕS“ÓPÏNËLŠÇL‰ÈM‰ÉRŒÌUÏTÏUÐQÍO‹ÈM‰ÅI½Ez´Au­Cv«FvªBq¤AjšGj–Qu™\|˜i‚›qŠ¢}•«„œ±„Ÿµ… µ‡¡¶Š¤¸Š£¸Œ¥ºŒ¤¹‹¤¸Ž¦¹‘¨»¦¹Œ ²…™ª|Žžn~Œ^kzKUe?GX@J]CNgANlFStLX|O\P]ƒQ_„Sd‡PbƒPa‚Pa€L^}DUu@Rn:Ja3BW-;N(7F'7E)8I+;M0AT3F[6Ja9Ng;Ph;Qe9M[7IU7GS4CP4BM1>I-9F)4B!,:'7!30. 29%B-H3I+AX4I_;NbBTfFWfEVdHXdHYbL]dM`fSelM_gHX`JZcK[dK\dO`hPbiPahRbiRbiRajSajQchO`fOafM_dN_cN]bL\aM\aJY_JZ`J\aHZ`HY`HY`IY^HW]HX^IX^JY`GW`GW_GX_HX_IXaJXaHV_LZcX–ÒW–ÒV•ÑT“ÏS’ÏS’ÐPÐRÐS‘ÑS“ÐU”ÏR”ÎU”ÒU”ÒV•ÒW–ÓW–ÓY—ÔY˜ÕZ™ÖZ™ÖW—ÔV–ÓT“ÐPÌMŒÉNŒÉN‰ÇRŒÊTÌTÎT‘ÏQŽÌOŒÉNŠÆJƒÀDz´Au®Ct«Dt©Aq£FožRuŸ^‚£o¨|—±‡¡»”­Ã›´Ê›µÌ¸Îž¹ÎŸºÏ ºÐ¢ºÐ¡¹Ï£»Ñ£»Ð¤½Ñ£»Ïž´É™­Á¤µ€‘¤n~‘_lS\uQ[wWd…XgŒ\k’`q˜ctžfv gw¤dt¡gy£dvŸcsœ[l”Rd‹K]€BSq9Hd2@X)8J(7H-MU;GQ5AL1=J,7D#0?)9 3 329&A.I!5M*?U2G]8K_?QcFXgIZgK\gM^fO`gSekTglK[aJZ`L\cN^eO_fQafQagSciRbgRagUbiTbiVdjTbhQ_eSafQ`dQ`cO^aP_bO^aN]`N]`M\aM[bN[cO[aQ\`MY^O[aO[aLYaKY_M[aMZaMZbMZbMZbLY`[šÔX—ÒW–ÑU”ÏS’ÎR‘ÎS’ÐS‘ÐT‘ÏU’ÐT“ÏU”ÐU”ÑW–ÓV•ÒY—ÓY–Ò[™Õ\šÖ\šÖ\šÖ[™ÕZ—ÕW•ÑR‘ÍPŽÊOŒÈQŠÇSŒÉTËT‘ÍRÍRÌOÉNŠÆK„ÁCy¶@t¯Bt­Ct¨Du¦Lv¤]¨m¯Ÿº©Âš´Ë¤¼Ó­ÅÛ¯ÇÞ¯ÉÞ°Ëß°ÊÞ±ÊÞ²Ëß³Ëá³Ëá´Íá´Íá³Ë߬ÅÙ¦½Ïœ²Ä¤¹~“¨q‚šdpco’hxžjz¥p€¬u‡³y‰·y‰·zйyйw‰¸u…³tƒ±jz§_p›UgŽHZ}>On6E_.PbCUhEYkJ\pL_oL]jK[eJYcK[aIY_CSZ?NV9HR2@K*8E"/>*:'8%9"9&@,H!3M';T1D\9L^@QbGYgJ[hM^gN`gSelUgnO_fO^eN_dQ`fTbhVdjVehXgjXgjWfiXgjZgl\hn[gkYeiYfjXeiYfjUdgSbeTbeSacSacTadS`cUbgR^eS_cT`dT`dR^bR^bR]bQ]aR^bR^dR]eP^bQ_eQ_e`›Õ\™ÒY˜ÑX—ÒV•ÑU”ÑS“ÐU“ÐU“ÏW•ÑV”ÑW—ÒW–ÒY˜ÔY—ÓZ˜Ô\šÖ^œÖ_œ×_žØ^×^œÖ^šÖ[–ÒV’ÍTËPÈRŒÉSŒÉTŽËRÌQŽÌPŽËN‹ÈN‰ÆL…ÂD{·@u¯As«Dt©Fu¦Py¦dˆ°wš¹‹ªÅ›·Ð©ÂسÌà»Óç½Õê¼Õê¾Öê½Öê¿×ë¿×ì¿Øí¿ØìÀØì¿×ë½Öé¹Ñæ²Éݦ½Ñ™°ÃŠ¡µ}‘ªq¢q¦v†±|»’Á…•ʼn™ÉŠšÊ‹œËŠœËˆ™É†•Æ€Áu†µiz¨_p›RbˆEUw;If/?T.>N0?P6FW=N`DVhL_pQctThtVhsVioVgmXgmWgmSekNagHZbEU_&@(D-K#5P+>W6I_=QbDUdGXgJ[hP`jTdlVfnRcjTcjVdkSciUejXgkYhkZhk\jm\km\km^mo_lo_lo`lp^jn]im\imYgkYfkUdgVehUegUdgWehVbgWchUbgUafUafVbfUaeUaeVbeT`cT_cT`dT`eRadQadRaebžÔ`›Ó[šÒ[šÖW–ÒV•ÒT•ÒW–ÓW•ÑX–ÑX˜ÒV–ÐX—Ó[™Õ\šÖ[™Ô^›×_›ÕaØ`œ×`ŸØ_×_›Ö]™ÔY•ÐW’ÍSŽÉRŒÉTËTÊRŽÌPËPËOŠÈMˆÅL…ÂE{¸?t®BtªDt¨Iw©Pz¦g´}Ÿ¾•³Î¦ÁرÌá»ÔèÁÙíÄÜñÄÜñÅÞòÅÝñÅÞòÆÝóÅÝóÅÞòÅÞòÄÝñÃÜïÀØì¸Ïä­ÄÙ ·Ê”ª¾ˆ›¶|°}¸”ÁŠ›ËŽ Ï’¤Ó–§Ø–§Ø–¨×—¨Ø•¦Ø”¢×ŒšÏ~Ãt…·dw¤VgIX|:Jg0BW/AR4DU9J\ASdI[lRdsWjw[ny[nv[nt[lr]lr\lr[krXipTfmM^fBS^;LU/@K-9K%3G.G*G*J0M(:U/@X6H\>P`ATbGXdHYdM]gSckQahRbiTdkVgnYgoZho\jp\ko^kn_moaoq^mo`oqaoqboq`lp`ko`ko\jm\kn[jmZilYhkXfiWfiYfjXdiYekVdjVciVcgVcgXdhUbeUceVbeUaeWcgVcgUdgTcfRbgdŸÖaÓ_Ô\›ÕY˜ÒW–ÒX—ÓX—ÒX—ÒX—ÑZ™ÓY˜ÒZ™Ó[šÔ\™Ô^šÕ_›ÖbÕcžÖbžÖbž×bŸ×`Õ^šÕ\–Ñ\–ÑUÊSÈUÊTÊSŽËQËQËP‹ÉM‡ÄL…ÂE{·@t¯AqªCs¨Fv¨My¦dŒ²¡Á™µÏ¨ÂÚ°Ëâ¹Òç¿ØìÃÛïÃÜíÂÜíÄÜðÅÝñÅÝñÆÞòÆÞòÅÝñÅÝñÃÛï¿Ùê·Ðâ«ÃØ¡¸Í˜­Å¡½…•¹‚’½‡™Ç¢Ñ“¥Ô–¨Ø—¨Ùš«Ü™­Ü™ªÛš«Ý™©ÜŸÕƒ•Ìwоi{«Yk•J[€9Kg/CY0DU4GY>QcFXjM`pTgvYly_p|^oy_pw_nt_mt_ou_ov^nuWipO`iHXd?O[9IW3BT,p¨@p¥Ft§Jv¤bг|ŸÀ“¯Ê£¼Ö«ÅݲÍá¸Ñå½Õê½×é¼Öç½Õç¾Öê¾ÖêÀØê¾Öè¿×ê¿×ë¾×ê¸Òã¯ÉÚ¤¼Ñ›±È’¨Áˆœ¹‘¶º…™Æ‹žÎ£Ò‘¤Ó“¦Ö“¦Ö”§Ø”¨Ø“§Ø£ÖˆœÐ~‘Ær…¸fx§UgGY{5Hc.DY4J[6M^>TeJ_oPfsXly[n{arct~ct{ct{du|du{ew~at{^pwUgoM`jEWcASc7I].BZ)>\)<\&9X+>Z/Da6Ke7Lb?SeDXhM]iPamPamQdkVioXkr\nv^qybu~dufugw~gw}jyjy~kz~kzkzhx|iy|iw}iv|ev}bsz`svatwbrv`pt_ot]ot^ot]nt]mu[ls[lrZloZlp[mrYjp[lrXjo[lsYjpZkqXioWjpe¡Õd Ô`ŸÒ^Ñ]šÑZ˜ÐY—ÒX—ÏW˜ÎY—Ð[–ÒZ–ÑZ–Ñ\™Ñ_šÒ_›Ñ`›Ñb›ÒcœÓdŸÕaÓbžÓaÒ`œÒ\˜Ï[”ÍY’ËVÇUŽÆTÆTÉSŽÊQŒÊRŒÊO‡ÅM„ÁE{¸?s¯>p¨>m£Dr¦Hu¤^…±w˜½Œ¨ÇšµÏ¤½×ªÅÚ¯ÈܳÌà´Íß³ÍÞ´ÌÞ´ÌßµÎá´ÎßµÏàµÏá¶Ïâ´Íá®ÇܦÀÑ™³Ä‘¨¾‰ž¸~“±vˆ­w‡²~‘¿ƒ—Æ…™È…™ÉˆœÌ‰ÍŠžÎ¡Ñ‹ŸÒ…šÎ”Æ{Œ½n¯`rQc‰BSs4Gb4H^6L^:RbCZjKbqSiuZo{`s€gx…gy„gzhzi{‚g{€h|ƒg{aw}XntSepK^lEXj=Pe5Kc2Gb/Cb-A`0E`5Jf:Ojt­;o§VfG_oSjy[q€e{ˆi‹n…‘p†‘r†’uˆ”v‰“v‰“sˆ“r‡“oƒ‘g{‰au„Zo€QfzH^sE[sCXt@Vu=Tt;SsBZxI`zMezUl€Yo‚^t„bw†dx…e{†e}ˆh~‰l€Žpƒ‘uˆ”w‹•yŒ•zŒ”z”z”{Ž“|”{Ž”{•{Ž•yŒ“xŠ’v‰s†r…Œo…‹mƒŠl‰j‡k†i|ƒi}…g{…g{†fz„excxcwcw~av}bv~at}au~at}bu|_sz^r|dÐežÐcžÑcŸÒaÒ_›Ò]™ÑY—ÎY–ÎY•ÌW“ËU“ÊV“ËW“ËY”Ì[—Í\—Í]™Ï]™Ï^šÐ`šÐ_™Î`›ÑašÐ^—Î\”ÌZ’ÉXÇVÆVŒÆXÈTÇSŒÇS‹ÆP‡ÃL‚¾H~º@t¯;m¦:k =n¡Ap¤It¥W~ªc‡¬n°t”¯z˜®|–©}•§w¡r‹œsŒsŒv¢v¡x’¢y“¤}•©~˜ª{•¦sh€‘^v‡WkP`|K[}Ma†NfQk’PiQk’Vn–\s›^x a|¤d}¦dz¡gwžar”Wh‡Q`zJXnAOc>M`:K]9L^>VfG_oSjy]tƒc{‰j‚Žr‰—t‹štŠ–vŒ˜vŒ˜wšvštŒ›pˆ—j€eyŠ_u‰UlOf~Lc}I`{G_{C[xD\zIb}Nh€VnƒYp…^tˆbyˆf|‰g}‰h~h€Žj‚o„“sˆ–vŒ˜x˜z˜z—|˜~‘™~‘—€“™’™’™~‘˜{™xŒ”w‹“s‡Žr†Žq†Žp…m‚ŠkŠi~‡j~‡h|…g{†dz…ex…cwƒbv‚avawau€_s^s~_s^r~]r}\p{\p{b›ÎdÐcÐcÑaœÐ`œÒ]™ÏZ—ÏY•ÍX“ËW’ÊU’ÊTÈW’ÊX“ËZ“Ë[”Ì\—Ï\—Î\˜Îa›Ï`šÏb›Ïb›Ï`™Î\”Ë[’ÊXÇVŽÅWŽÆWÆXÈU‹ÆS‰ÅQ‡ÃMƒ¿I¸Av¯;l¥;j¢=m¡?o£Dq£Kt¢Qw Vzž[{›Zy’Ys‡Si{NaqI\lI\jL^nM`pObrQfuUjxZq}]t€]tXmyPdpI[iBRcZzB^}HdƒMjŠNi‹Xm\lŠWh‚TdzM[oGSdCN_AN^=K\9J[AUfI_oTkz]tƒg~l…“s‹šuŒœvŒœuŒ›vœvœvœtŽœq‹™j‚‘d{_wŠWo†Rj‚NgMf€Jc}H`|Ia~KdRl…VnƒWp„^tˆcz‰e|ˆg}‰g~Œg~Žg€l„”qˆ˜s‹˜wŽ—y—yŽ–z—|‘˜}—~‘˜~‘˜~‘˜|—y˜w‹–tˆ“r‡Žq‡ŽmŒl€‹j~‰h|‡i}ˆez…cy„cy„aw‚_vƒ_wƒ]u€[u|Ysz]s~]s]sXnzZo{Zo{Zp|Wmy^—ËašÍa›Ía›Ïa›Ï`˜Ï]—ÍZ–ÍW“ÌX“ËUÈSÈUÇU‘ÈVÈY’ÊZ“ËZ•Í[—Î[—Ì^™Ì`™Í`™Ì`™Í`™Í^—ËZ“ÈX’ÅVÅWÆWÆWÇUŒÅS‰ÅP†ÂL‚¾I€·Bw¯=n¨n¡Cp¢FpžEm—CgŽ>`„9Yu2Lc':N,;&2&0+6,9$2@)8E*O);O"8O 8R8R$@Z(G`-Ng5Sk7Vo9UqF^wM_vN^qL[mJVhJSeGP_FN]?KZ8FW@QbH^mPgv\sƒc}Œjƒ“o‡™qŠšrŒœr‹›tuŒ›uŒ›sŒšo‰—i„’e~Ž_x‹Xr†Rl„Ng‚LfLe~Kd~KcLgRnƒWq…Yq…\t‡`xˆcz‡e{†d{‰d|Œfi“m‡—pŠ—rŠ”t‹’vŒ•wŒ–y™{Ž–{”{Ž•{Ž–z•t‹”q‡’o…‘mƒkjŠf{†f{‡dx…cy…awƒawƒ^u[sZqZr~Zt}YszWqxZozZnyXmxWkwXlyVkzUjwRjv_—Ê`—Êa˜Í^˜Í^˜Ì^˜Ì]—ËZ•ÊX”ÊW’ÊV‘ÉSÈSŽÆTŽÇTÇUÈW’ÊX“ËY”Ì[•Í]–Í^˜ÍašÎašÏa™Ï`—Ë\”ÉZ’ÉXÇWÄYÆYÇWÆT‹ÄQˆÀN„½K€ºBw¯?p¨9hž;iž;jžAn¡Bmž +6&/;$/;#1<#0>-?.C/J3O$=X%B]*Hc0Oi3Pk5QlDZtN^wN\pP\lQZgNUeLRcKR_=ET6CT=OaG[lQevYp€`xŠel…•oˆ˜n‡—pŠ˜pŠ—q‹™p‹™p‰™n‡—jƒ’d~Ž\wˆVq…SmƒPj‚Lf~Id|JeNf‚Pk„Qn…Vr‡Yu‰[vŠ\t†^u†ax‡cx‡cyˆc|h‘jƒ‘m…’m…‘p†’q‡uŠ’v‹’uŠ’v‹“tŠ’t‰‘r‡r†nƒŽl‚h~Šf|‰cy†`y…_wƒ]u]s€\r€Wr|Wq{Yp|Un{WozVkwUmxSmwVkyTjvSitSjvQfuQfuQfuPfr`–Ë_•É_–Í^—Î^˜Ì^˜Ì]—Ê[”Ë[•ÌY”ËUÈTÇTÇTÇTÇUÈV‘ÉW’ÊX“ËY”Ì\–Í^—Î`šÍ`™Îa™Ð_™Ì]•ËY‘ÈWÆXÇZÇXÆXÇUŒÅQˆÁN…¾N€ºEx±>p§=j 9eš:fšf—:a5[‡,Px%Ee7M,=!/ '+ /"3$5(7-90 0="0;-5 +3)4)5(6(:)>,G4P!:U%B]*Hc.Lg2Oj5QlEZtP_xTbtV`oV^kU]kQWfMSb?GX9FX0A"2@0: .6(0&0$0$1$6'<+F5P# 18,4'2#/ .!2'=,E3M$$4@&4@#2#y¯R()QîýÎóνB€iš4µ¶³uWSáÍ7|ýªŽ°÷ôÞžÃË•îý+2 xÍC¿øý³—_07hèšB h(o¬ÜÃÛŸìÁkáóÙ¾®¤å²"Ɇ v(eº7õ®[(Û¶Tq~H|í´“ÂÞ÷Ý› ÷µÿjUS®zø©'_ýÕygÎðH „!@Ð5˜V]LYaˆÏë¡”Û›ÉÞÎ`J¹  \6©ÜgÒß“bCÖý"ª/ê÷y®¹þ]c…9m[>äÞI³n|òÍ…/Ý9¼¤DI…!4”ñÎK`Ù0º,—s§U²|óA +EeR´—©.íq’ÊN»2åν¶{v?“R(%Ŷúuþœ³N—ž¢òÖý›ßì¿$Þ¹—ß³è{>??äS „Ž÷dŸÃù\‘ã3˜;­Š}-Ý´vö¹>žl|†ÑRºl©ÞUîûì{Å‹ 6hBˆmõ jüøñ'Ÿ|ÊÜ™Û7}ôêñ€p<“gßøä´yߟ¿ô‹^•ãÕDy¡Chš"éûƒÁHº…Çœ3­’®Þ( Í]hÉ@§W@9Ôv¢Gú½ÈJ)„pJ‚HÞ£@8÷ B ›ZTiIñø¼’±#[÷oZüeîð¥L˜>ÿáù·ýâÎÝí1eèšØÝfåŽÆ Rô¸†:@ddƒ§L,gdiÕ[Ñ5Ðpr"±RhÉçc@à~æ,H¯á’h"݆&Dsk›š{Öé'›z±¯­qË¡k®ûî‚_5tkÊÐÉJ%Y·»ƒ½mŒ"”c¸ G¸C’ š¦W^ÈìÚJVlÜ‹iÙáà<ëtTRà8i0èÚy¯ `Üß4]ˆ­;êÕ¹gqú†ÕŸn‡øö¯€Q\yÿ#¯-½à¬Ó<‡ûâb n§i®$šPô ÄY¶¹.¨( â5´£²JAQžŸ«Ï­eS}íÝýèšH5\ ÃRƤÝC¸Lƒ!„réï ëšØÓ°O}ûþñ¢µŸ­yQ™½_ €‰3®{ãž;¿WôéœT™+fŒ/àPoœžxF†¦ØÓÒÃG›š)/ PV@ Á†ÌÆ+œVMÎIc‹˜2¦Ó–4·÷ ]SX¶Åš­ÙÕØIù°\†ú‘J¥å&Ò.h:YKO_Œú}-ºP5‘m`Ò`-É‚äKdžhnrGŠ®®N®½á¦kW¾ó€‘ãÏ>ûÁ?ô¿…ЇÌô†bƒãÏôÔŽ)æÜ©•4µ÷ÑŽ£”Äcºû£¬ØÐÀ@ÔdBU)º¦¹ÉMö\Ì–ŠYSÆPZ”ÏÆûÜÀ¨Ò.i¨ûr\C¥Ÿ C’9„& ‘HPZ˜›“þ­»† fÊ^9ﲉˆtÏ=Õ=’ ÐuS&–1câHZºœÄGìmîdùú=ø¼:FcÙG²Á¶cG cöIÕ,ÿlJÊ”¤bAŒäsIvˆÌ÷*ÝFC:»»…Òü¡Ã·¾2e—~ýÞ§#Þ4MãÕÈñjÎhGÏô2Y¡ii×ð{ujÇ•0{r±„E[gRJ¤”lÜy­»[©^@IA)UàN\È 8ÿŒ©ìl8H{w¯ã™£€– ¤|^Köº“¢§˜¢’’ÓgMذ潧\Ñ5mìõ7ýãC—Ô·õ³·=Ìæ¦>õÆ) zÈñèYù½l²’¼N9Ms¿× n|žZMGÏmNòÓÛaå†]î`JuÅqÁÐuÎ=µŽö®^šµ§ãAÊ`²\C¡2èŸÌ SŒ–LTÊÕûwcµ­Ïࢫï¼ÛW1u’”Vêúã;ZØyh€ƒt Êò}hB¸c|º×‡ŠiМž~b9³j«ð{ vhCÓ ©­“×íDÚ’‰ã†cÛÙlR1󤆗±vó7sÌ x";j¤Òc ဒ<ÛÚÛ8ý¬s£[Ö-}=ý̋C–”x MèšÀÐ5t] k[Á@ÌbÏ¡>Vïî /’ÀëÑñy4ü^-¥+=F¸¬Àï7˜X5Œ93&0ÓÕ&³s_·ïgôÈRÇ-Y TU £¶f,·íÆ´ÌÔÈ€› -3?pó·=º®aÛÑXŒýª'ÔèÖ.]¨$ï þõ§M¾ªàö–~¤Tèš / “4ð{…£ï%ÅK办J2,ßÏ™“ÊUš›öG×UÒî R¤²AM¼ùÁz>X½ !$¶´™0z·_†¡§F‹ä9ašüè‘tuw£”rÚƒ;ݶ¤h‰Äèèìäp{'ñxe[Ä1.›wQøí—~Vô$¨yñ•Ý;kkÆÐ6iïs #J}k˜ƒQ|†ÂçQxu…×pÎ ]a[ŸNYa5EÔ-Å0À–näÖÄ IJ)g¨ì‹²fón¯XO<ž ”ãå왵\>w: sÐ3À o¼ËÒk0tH8J8!<!‹ÅˆÅ¢$ ”´ÑÅÕmÛâÔ™³Y¹ø‰ @½ÓoùüwßÙôêˆa%Y 5tð`Ù°¥±—Mû{hí Ó3£?GÙ6‰ß£ð š€Í´ê2fXNYqÂ<_ÊØÁc&š& ^{oŸoÛM[G7Åù!n»nÇWàGŽoø}‚…¯À¿|Û6]åÈY•-QÊJ‹­J:ë®°:¥¶ŽÏ?ýðâ_sZ“[wïÊ÷Ö> ø‡˜Á9 ÓÜÈ£PØRÒNðÉŽ6Vmk¦w І#_ejù(](ÊK‚Ü8ï$fוcÙ®èó%‡mKÞúã~òUtM0¹zOÿìûñij¹õ0—|럈Ƣ®Âüåjrí¤Ù°ñ‹ŸÐ·éA'F]{ç­·Ÿ28x%£|æçº&Üøà¡®ª€KgWrf]9* )ÍÏA*I[×qÓrå,IgO˜%«ëysÙ6v8ŒeÙT / à×°í¡™!ÔM¬ä†Ëæò³ìÓüÛÂ7Ñ5Á¬©Õ(åæ ¹!®œw¶í ¹¥Í™ngˆ¦ÈLaÕùnxI ­ý;‰6/vþµpæ³[–¯¹É¶³ÇóÁlz^<;ÓãqÜfîv>Þ°-{ZÇG¢Ø¶Jbš&ñDœ9ÓOà†‹g2rX¹A8ÉÛ‹†=÷/¾¹Û¶xþÿLõØQ©iè‚›¿}ò™cüPëîuí‰5lÜqð9:>½yHŽeèPY`ö÷ʆ‚¦ƒ”Šh"A8’`Õ¦½,Y½ƒ]ûÚÐ4…†DJ›ß`xI.ß¼ô4.8}" ì!ô\! K°|õFîzèq&×Tñü¯~Š×c¤†Í×ÞYÂ÷<@nÐï±þ¨ÜõÇÚ‰ظ3€‚éoX¶îv!Ž443rÅŠãc‹G’Aµ»ßdË®f¶Ôd{C ;šèèêŲLò‚>Ι1‘Ó§O`æ”jJ sH˜¤ÒådoÛž}yÏ¿ñ.WœwÜ4aàõÀêõÛùæwÓßçJñkŽJÚL™4 _ì‚®µw8¦…êî]µtíÁ†iÉûè´ÿêlÉŒúÂÍ×=ìiìdѲõ,]µ‰¾0ÑhŒX,Æ©'×pÇ 1®r^¯'-θÏ,|õ=~óìK<÷«û©W•ÊCξì4ìÛïçôò[ÝäIlÜ´ã'ômzÐ+æÿâ·+_--.¦4×CIž—‚ æDk7qIžÅ µ€¯ ÐцÀ$ݽºzûÙ¼c/‹?^ÇŠµ›)Ì 2vÔp®¿lWÏ›m“Ê4 "‘8+?ÛÀ¼¾ˆ‡ÿù{Œ9ŒXÜâGÍï^øOtÔ|ݤ:6~¶"c„šoüø“]ª¥@*' =t :…Aƒ¢A^À àÓ úurs ‚~ƒP@Oió*©¤Œì…“ã=’T÷zÀ´aí¦Ý¬úl3ë6ïä@S 'O>‹æœÊ´ÚF–`šÎz=ðÄs¯S>b3§DYi>þï<òØã(ia[Ó§Í೟ÍH„ à–ÐÔ&*‚º–ÝJ%å uzkÈÝaù>*JT”æR9…ù!îú‡o1µvI SX¶r5¹¹!¦O©eÓ¶íœåu(+Á…Ì ¿÷ú/³RaýÛw¿ºµÙ;e‚¡‘Ù—NBc[ÈÌJŽäÐ’‘xHÛ‰¸¶‹²--69^€O'Ç}|Ey~ÊŠsQšÇÈ’FËg݆î¤ÏRºg›Tt ]w„ØŽÎ0{¤³§—¦æVB¡Ï=›Ü\/ý ‘…ùùîèà«®SçÎ9oçÂ'î©l#™xµøbkù¬S'Æã g’á¾l[aÛšs¶$–rf‡¶rÞÛ¶#r(™<«”,¥€HÜ$‰¹)ªÃÛ¶°, Û2±-˶°L“’ Ãò©^DyYË9¬ˆ@Ž@Ž`ŽŸ`ÀO Ç×ãÄ$Û†‚ü Sk'8¥×ùlÍúm9ŒUNQAÃKK©ÿüCqÕÍ?ÚšT‡3ø6úÛ›6íÊ‘€†Šà*ÜDZ›S(¦MÜ2‰'lâ¦I/¹¡¹Á ¡`ÜPÇ“2rákïq×óF$ËîŒ ½÷Á;o]5ïüËu]²QÇŽÚéIŽ”ÙÏhŠ?ùÐ4 ¯WÃëõ½Î'ƒ‘–­ˆÆbØ–-%º”h®ýæ¢wÞʬ9Ì€–Æ â‰Ä¥Ÿv´ò¡¤˜ñ¥ÅGÉ D•”º\v¹×¶„}ÚØ¹g;wïeÇ® Cc¸1œ1{:ÕãªÐuŸO££³ŸÕë>—‡š«H*ïö»_Üó½[¾QjZ_žêo&x4@´ £tÍ™;ÄâÐÑ5@{W/]½´wõÐÞÙM[{-‡;h=t˜Þþ~ säq˜´ÿ׌C0à亟®ÛÅ’?æ-gÃæÍÜvëíOýëíã3 -‡hVÙíË–o|xIÁWL…U–@šŠÂYð°l‰mÛŽOÛ’H4Á–vö7·³¯©½‡hhl¥«»„ð¼ ¿WÇçÑ9¡j$§MŸÌ™3¦pbu¦;aÊœÁÆ&~ÿîû<ú›ßÑÕÝ×£!¥Í³Oå£E‹î€Æ'1:=½øƒ%ÿtËׯ+•™¥–£ÝÙ^r6tG'è‹HZ:úhnï¥ép/MmÝ4µu‰ÆˆÇΨ‹K$0]¹Ê¶MLÓÄ4ø½:gœr"3êNà”ºñåç ø œ’œdaÙ@8­Hçø¡aÿaö%>þô3n'žˆ’ø|”mc…ꪲj/4>}|u‚ÁI×ÿñýÇØŠR‰K‰[ ÄMÂ1“h‚¾H‚®þ(]}:{Âtô…iï –ˆ»õ:áVzáVZ–‰åÔS˜çgDIå¥yŒYLuÕpjÆŒ¤rD.¶t$8ËÊÎ “×wüß°e7«ÖmdÑ’Ù¼}'^Cwò}i»%¸nbf›êúùW‹w/ùFÏå/w¡äøßúðäywÏéÄÒÉÌ™1¿\ókg—º !Já÷NžXÎÌÉ£™1y4y!/2Yìuœ‡eÛDcqžùÏEüî¥7±L!TJæ’ƒÚàŠ ª¤¸Pä ?ÜóùËsVÇ?äѰùÝ[.™wõ¶ˆQ°M‰ÒRºå n’¡Ø–"aÙ$ FåpbU1“Ç–2®¼€üŸ‚\?¹Aóˆ[ïhZÇÎùqk ü^X¿µ‘Þ\ʦ/vq ©۲Є3Y“™¥s¨¬Š³d)þ—\~ê7ÿróŸX*›{í÷~þþËÛÛ=J)[X–…À&?Ç 0ä¡0äaìˆ<ª+ ˜PYD(è¶MV™ÌñÌü„x ˆÆmê÷6ñéú/xmñ 4ÂohC Yå¶2»;‘ˆ©k¯¼B¼ôÛ½º^=ÖNŽcý¯,y㱩7Þþÿ~¨kJM[(ÆÈ44¦§»áhæH ²AŽ©AW_˜'_|w–­væ.•ƒ~Ÿ+mÉA—r¯dÉmú7¥´ÕuW^"¶×ïzäXÆo±´1õŒo-xþ‰·rü ¡²*GŽG4|x GäüdÃ>þðñ¶Õ ¡±Õ­èP©^MNž2§áʪ´ÞJ¿X<ªfMŸ*"áÈ3–/üΗm»9Þ|Í{öe?\ôØÿ÷¼P0G‰A 5GH/ƒ¥§®“æ¶n>\³×–¬¥¯?Œ×郦ÜGî'8ò³L}¶ꔩubäˆò¥/ÿîG—Ï†Š¯’°z'Ͼñ‰·_\x‹Bi®npôD)í×ûš{øíë«øü‹}$â ,Û¤) .—·2zz°¯ÛY‘?ù\<W×^v¡ØúÅŽg6._xûñî&ùª»1椫üåCÿpæÔjO(4Í©¦Iïó8‘~ͶF>Ù¸õ;ilíÄ£;¥kYê’ÌÞ£2¨œÒ’9½.3´~ËÕ,%m‹Ë.üšØöŶG6­xþÞ¯²ÛìOÝ0qí£¿yó™«.>7hèšÒ4D4nÒÑæÝOêùÊí(i£kj}­ìÍ)_O®áɆ#8ÒÀØ–©JŠ ÄÅçÍ ?öÐnþ²€÷—Ý3dWMžué3ýìÁ9/üq—jjïápÌ]ý±²>g¥}ÝÎÞ¤1#ùƒÀJ²a < ¾9ÿrñÑŠUîßþñÍV¤µñ¿gÓT~Ýõ·Þrçý*8jÜžÖÂá°É]ÃSÑ\¹klÐÂ¥Réq<µº«\MRÚ˜fŸ×`ZÝDJ ‚ ¿û­Ÿö6®ü³6Mý·Í•ßúÝ{¼ÏÊY¼mo›'²¶Í9=6È¡ü={ÛœÇИ5õD9¼¤¸óß¾ï>8ø7²mnžP=åk³=¡òïœzÚ9——•ჵõôôö+°…&œ @ÖÚ}Öðæ¨Ê¦3R¨ÂÜ€¸à¬SèéícݺÕo©D÷‚Þû›Ü89ôÖYï„Ko¸éÆ9¹eu‘•Ýa3Z*ûSÉý…ÊÆL˜0–Eq?ò{ãÑð–çÿýÅeD·þÝl=VÊÞ<í/®A´yÚŽ·ëª'qð¯ºyúüñÿîË2w{¢b2IEND®B`‚OpenLP-2.4/resources/images/wizard_firsttime.bmp0000644000175000017500000052033612657640340021127 0ustar raoulraoulBMÞ 6(£^¨ é$é$æØÜçÙÝéÛÞéÜÞêÝßêÝßëÞàìßáìßáìßáíàâîàâíàâîáãîâãïãäïääïääïäåïääïããïääïääïääðääðääïããðäâïäâðãáîáßîáßîàÞíßÝîßÝîßÝíÞÛíÝÚîÝÚîÝÚíÜÙíÜÙíÜÙîÞØîÞØïÞØïÞØîÞØîÞØîÝ×íÝ×îÞØîÞØïßÙïàÚïàÚïßÙïßÙïßÙîÞØíÝ×íÝ×îÜÖíÛÖíÚÕíÚÕíÚÕíÚÕìÙÔìÙÔìÙÔìÚÔëÙÖëÚ×ìÛØëÛØëÜÙêÛÙêÛÙèÚØèÛÙèÛÙéÛÙéÜÚéÜÚéÝÛêÝÛëÝÛëÝÛìÞÜïàÝîâÞðäßòæàòçáóèâôêãôéâòçàñãÝîÝØëØÕçÔÑâÏÍÝÊÊØÅÆÒÁÄνÀÊ»¿Èº¿Ç¹¿Æ¹¾Æ¸¾Ç¹¾Å¸¼Áµ»¼°¹´ª¶«¤²Ÿœ®“•ª†Œ§|‡¢t€o|šmz—p{˜wœ„Ÿˆ‰¢‘¦˜•ªž™®¢±¥Ÿ²§¡³©¡´«£µ«£´¬¤µ®¥¶¯¥¶¯¥¶¯¦¶¯§¶®¦¶­¥¶­¥¶­¥¶­¥¶®¦·®¦·®¦·¯¨¸°©¸±ª¸°©¸±ª·²ª·¶®¹½²¼Å¸¾Ì¾ÁæØÜçÚÜèÛÝéÜÞêÝßêÝßëÞàìßáìßáìßáíßáíàâîáãîáãîáãïããïââîââîââîââîââîáâîáâîàâïââîâáîâàðãáðãáïâàîáßîàÞîßÜìÝÛíÝÛîÝÛîÝÚíÝÚíÜÙíÜÙìÛØìÛØíÜØíÝØîÝ×îÜ×ïÜ×îÜ×îÜÖíÛÖíÛÖîÛÖîÜ×íÝ×ïÞØïßÙîߨíÝØîÞØíÝ×îÜÖîÛÖíÛÖîÚÕìÙÔìÙÔìÙÔìÙÔëØÓìÙÔëÙÔëÙÔêÚÖëÚ×ëÛØêÚ×ëÜØéÚØéÚØêÚØéÜÚéÜÚêÜÚêÝÛìÝÛëÝÛìÞÜíÞÜíÞÜîàÝïáÞðäàòæàóçáóéâôêãõëäõìäõêâóæßñãÜïÞÙìÚÕèÕÑåÒÎáÍËÝÉÈÙÇÆÖÄÄÕÃÃÓÂÃÓÂÃÓÂÃÓÂÃ;Àɺ¾Ãµº»¯·²¨´¨¡°š™¬§„Ф~†¡z‚Ÿ{‚Ÿ}‚ž„Ÿ†‡¡Œ¥“§š•« ›¯£°¥Ÿ±§Ÿ³© ´ª¡µª¢´ª¢³¬¤µ®¤µ®¤¶®¥¶­¥µ­¥¶¬¤µ«£µª£µ«£µ«£¶«¤¶­¥¶®§·¯¨·°©¸±ª¸±ª¸±ª¸´¬¹¸¯º½³¼Ä¸½æØÜçÚÜèÛÝéÜÞêÝÞêÝÞëÞàëÞàìßáìßáìßáíàâíàâíàâîáãîáãîáâíàáíàáìßáìààìÞßíßàíßàíßàîàßîáßîáßïâàïâÞîàÝîÞÛîÞÛíÝÚîÜÚîÜÙîÜÚíÝÚîÝÚìÛØíÜÙìÛØíÜÙíÜØíÝ×îÛÖîÛÖíÚÕíÚÕíÚÕìÙÔìÙÔíÚÕîÛÖîÜÖîÜ×ïÝØíÜ×îÛÖîÛÖíÚÕíÚÕìÚÕíÚÕìÙÔìÙÔëØÓëØÓëØÓêØÓêØÔéØÔéÙÕëÚ×ëÚ×êÛØëÛØéÚØéÚØêÛÙëÜÚëÜÚëÝÛìÞÜíÞÜîßÜîßÜîßÜîàÝîâÞïãàñåáòæàóèâôêãõëäöíäöîåöîåõìãôéàòåÞñáÚîÜ×ëØÓèÔÐåÑÎâÎËàÍÊßËÉßÌÈÞËÈÝËÈÙÆÆÔÃÃξÀȺ½Á³º¸¬¶­¥²¢®••ª§ˆ‹¤…‰£‡‰£‰‰£‹‹¤Ž¥’§—“©œ—¬¢œ¯¤ž±¥Ÿ²§Ÿ³¨ ´¨Ÿ³© ´ª¢³ª¢´«£´¬¤µ¬¤µ­¤µ«£´«£´¨¢³¨¢µ¨¢µ¨¢µ©£µ«¥¶­§·¯§·¯¨¸±ª¹±ª¹±ª¹²«¸´¬¹¸¯º½³»å×ÛæØÛçÚÜèÛÝéÛÝêÜÞéÜÞêÝßëÞàêÝßìßáëÞàìßáìßáìßáìßâìßàìßàëÞáëÞàêÞßêÝÞêÜÝëÝÞëÞÞìßÞíßÝïàÞîáÞîàÝíÞÛîÞÛíÝÛîÝÙîÝÚîÝÚíÜÙîÝÚíÜÙîÝÚìÛØìÜÙîÛÙíÜØîÛÖîÛÖìÙÔìÙÔëØÓê×ÒìÙÔëØÓëØÓíÚÕîÛÖîÛÖíÛÖíÚÕìÙÔìÙÔìÙÔìÙÔëØÓëØÓê×Òê×ÒëØÓéÖÒéÖÓéÖÓèØÕè×ÔéØÕëÚ×êÚ×ëÛØêÚ×êÜÙëÜÙêÛÙìÝÛìÞÜíÞÜîßÝïàÝïáÞðáÞðâßïãßñäàñåßòæàóèáôêãöìå÷íæ÷îæ÷ïæ÷ïæ÷ïæöíäõëãôèàòãÝðàÚîÛÖìØÓéÖÑèÔÏèÔÏçÓÎåÒÍâÏÌßÌÉÚÇÅÔÃÃνÀƸ¼¾°¸³¨µª¢±ž›¬˜—«•”ª“‘¨‘¨“¨“¨•’©™”ª›•«Ÿ™®£°£ž±¤ž±¤ž±¥Ÿ²§ž²¨Ÿ²¨Ÿ³©¡µ«£µ«£´«£µª¢´ª¢´¦ ³¥Ÿ²¤Ÿ²¥Ÿ²¦ ³§¡´©£´¬¦·­§¸¯¨·¯¨·°ª¹¯©¸°©¹±ª¸´¬¹»±»â×ÚåØÛæÙÜèÚÝèÛÝèÛÝéÜÞêÜßêÝßêÝßêÝßêÞàëÞàëÞàëÞàëÞàëÞàëÞàêÝßéÜÞéÜÞéÜÝéÜÝêÜÝêÜÝìÞÜìÞÜíÞÜíÞÜíÞÛíÝÚíÝÛíÝÚîÝÙíÜÙíÜÙîÝÚîÝÚîÝÚíÜÙìÛØíÜÙíÜÙîÛ×íÛÖíÚÕëØÓëØÓê×Òê×Òê×Òê×ÒëØÓëØÓìÚÔíÚÕíÚÕìÙÔìÙÔëØÓëØÓê×Óê×Òê×Òê×Òê×ÒëØÒé×ÒèÖÓç×Óç×Ôè×ÔéØÕéØÕëÙÖëÚ×ëÛØêÛØëÜÙëÜÚíÞÛíÞÜîàÝîàÝîãßïãßðäßðäßñåàòæáòæàóèáôêãõëäöìå÷îå÷ïæ÷ïæ÷ðç÷ñè÷ðç÷ïæ÷ìäõëãôèßóåÝñáÚðÞ×îÜÖíÛÔìÙÓê×ÒçÔÏãÐÌÞËÉØÅÅÑÁÁÊ»½Â´º¹­·°¦³¨ °£® š®œ—¬š–«š•ªš•ªœ•«œ–¬Ÿ˜­¡š¯£°¤ž±£°¤±¥ž±¦±¦ž±§ž²¨ ³©¡´©¡´¨ ´¨¡´§¡´¥ ²¢± œ±¡±¢ž²¤Ÿ³¦¢³©¤´¬¦¶¬§¶¯¨·®¨·­¨·¯©¸°©·´¬¸À´»áÖÙäØÛåÙÜåÚÝæÛÞçÛÞçÛÞçÜßçÜÞèÜÞèÝßèÝàéÞàéÞàéÝßèÝàèÜÞèÝßèÜÞèÛÝèÛÝèÛÝèÛÝéÜÝêÜÝëÝÛìÝÛìÝÛíÞÜíÞÜìÝÚíÜÛíÝÛíÜÚíÜÚíÜÙîÝÚîÝÚîÝÚíÜÙìÜÙíÜÙîÜÙîÚÖíÚÕìÙÔìÙÔê×ÒëØÓëØÓê×ÒëØÓëØÓëØÓëØÓìÙÔìÙÕëØÓëØÔëØÔê×ÓéÖÒéÖÑéÖÓê×Òé×ÒéØÔè×ÓçÖÓçÖÔæ×ÕçØÕéØÕéØÕêÙÖëÚ×ìÚ×ëÜÙëÜÙìÝÚíÞÛîàÞîâÞïãßðåàñåàòæàòæàòçáòçáóçáôêãôêãõëä÷îæöïæöðç÷ðçøñè÷ñèöòé÷ñè÷ñè÷ïæ÷îäöëãõéáôçÞóåÝòäÜðàÙíÛÕéÖÑæÓÍáÎÊÛÈÆÕÃÃͽ¿Ä¶¼¼¯¸³©µ®¦³«¤²¨ ±¤®¢š® ™­ ˜­ ˜­Ÿ˜­ ™®¡š¯£°¤°¤ž±£°£°£°¤°¤ž±¥Ÿ²¦Ÿ³¦ ³¦ ³¤Ÿ³£ž² ±›°š°œš¯œ° ±¤ ³§£´ª¥µ«¦¶¬§¶­¨·­¨·­¨·±ª·º°¹Æ¸¼áÖÙâ×ÚäÙÜåÙÜåÚÝæÛÞæÜßçÜßçÜßçÜßçÜßçÝàæÜßéÞáçÜßçÜßèÝßæÛÞåÚÝæÛÝæÚÜçÛÝçÛÜèÛÜèÚÜêÛÛìÝÚìÝÚìÝÛìÝÛìÝÛëÜÚêÛÙìÛÚíÜÚíÝÙíÜÙíÜÙíÜÙíÜÙìÛØíÚØîÛ×îÛÕíÚÕìÙÔëØÓëØÓê×Òê×Òê×Òê×Òê×Òê×Òê×ÒëØÓëØÓëØÓê×Ôé×ÔéÕÒéÖÓèÖÒéÖÓé×Ôê×ÔèÖÔéØÕéØÔæ×ÔçØÖçØÖèÙÖëÚ×êÛØëÚ×ëÚ×ëÜÙìÝÚíÞÛïáÝîâÞïãßñåáñæâòæáóçàôçâóèáóéâóéâôêãõëä÷íæ÷îçöïæ÷ïæøñèøðç÷ñèöñè÷òé÷òéöòéöñè÷ðçöîåöíåöìãõéáòåÝðߨìÙÔèÕÐãÐÌÜÊÈÖÄÄ;ÀŸ¼¼°º´«·²©¶°§µ®¤³© ±§Ÿ°¥œ¯¤›¯£š®¢™¯¡š®¢›¯¢œ¯£°¢œ¯£°¢œ¯¢œ¯£°¢œ°¤²¤ž±¤ž²¢ž± ž²œ°›™¯˜˜®–˜­˜˜­™š¯œœ° ž±£¡´¦¢³©¤µ¬§¶­¨·¬§·®¨¶´¬¸Âµ»Î½ÀßÕÚá×ÛâØÜãÙÜäÚÝäÚÝæÛÞåÚÝäÚÝåÚÝäÚÞäÚßåÜßåÜàæÜßæÜßæÛÞåÚÝåÚÝäÙÜäÙÜåÙÛçÚÜçÛÛèÚÛèÚÛèÚÛéÚÛëÜÚëÜÚêÛÙêÛÙêÜÚëÛÙíÜÙíÝÚîÝÚìÛØìÛØëÚ×ìÚ×ìÚ×íÚ×íÚÕìÙÔìÙÔëØÓê×Òê×ÒéÖÑéÖÑéÕÐèÕÐèÕÐèÕÐèÕÐéÖÑéÖÓèÕÒçÕÒæÔÑçÔÑæÕÒæÕÒè×Ôè×Ôè×Ôè×ÔèØÔçØÕçØÖèØÖéÙÖêÚ×ëÛØìÛØíÜÙìÜÙíÞÛïáÝïãßðäàñåáòæâñæâòèáóéâôêãôêãõëäõëäöìåöìåõíæöîç÷ïè÷ñèøðç÷ñèöñè÷òé÷òé÷óê÷òê÷óê÷òé÷òé÷ñè÷ðçöìãóèàñáÚìÚÔèÕÐãÐÌÜÊÈÖÄÄ̽Àõ¼º¯¹µ«·´ª·²©¶°§´­£³«¡²ª ±©Ÿ°¦°¥œ°¤›¯£œ¯£°£°¢œ¯¢œ¯¢œ¯¢œ¯¢œ¯¡›¯¡›°¡›°¡œ±Ÿœ±œ›¯š™¯•–­“”¬’”¬‘”¬”–­—™®œ›¯Ÿž±¢ ²¦¤´©¤µ«¦µ­§¶±ª·¾²ºÊº½ÕÃÂÞÕÛàÖÝá×Ýá×ÜáØÜâÙÜâØÝãÙÞãÙÞâÙÞãÙßãÙßäÛàåÚáåÜßåÛßäÜÞäÚÝãÚÝäÙÜäÙÜåÚÜæÙÜæÚÛæÙÚçÙÚçÙÚçÚÚèÚÛéÚÚéÚÚêÛÙêÛÙëÜÙîÜÙíÜÙíÜÙìÛØëÚ×ëÙÖìÚ×íÚÕìÙÔíÚÕìÙÔëØÓë×ÒêÖÑéÕÐèÕÏèÔÏçÔÎçÓÎæÓÎæÓÎæÓÏçÔÐçÔÑçÔÑäÓÐåÒÏäÓÐäÓÐåÔÑæÕÒçÖÓè×Ôè×Ôç×ÕæØÖçØÖèØÖêÙÖëÚ×ìÛØíÜÙìÜÙíÝÚîßÜîâÞðäàðäàñåáòåáòçãòèãôéâôêãôêãõëäõëäöìåõìåöíæöîç÷ïè÷ïèøðç÷ñçöðç÷ñèöñè÷òé÷òé÷óê÷óé÷óê÷òé÷ðçöìãóçßðàÙëØÓæÓÎàÍÊØÇÅÏ¿ÁÅ·½½²º¸®¹¶¬¸µ«·´ª¶±§´°¥³­¢²¬¡±« ²©Ÿ°¦±¤›¯¤›°£œ¯¢œ¯¢œ¯¢œ¯¡›®¢œ¯¡›®Ÿš¯Ÿš¯žš¯™¯›™®˜—®”•­“«’«Œ‘ªŒ‘ªŽ’«’•¬”—¬™™®Ÿ°¤¡²¦£³ª¤´®§µ¹®¸Æ·¼ÒÀÀÛÈÅÝÕÛßÖÜàÖÜáÖÝá×Üá×ÝâØÝãÙßâØÞâØÞáÙßáÙÞáÚßãÚàåÛáåÛàåÛàãÚÞâÙÝãÚÜäÚÝäÙÜäÙÛåÙÛæÙÛæÙÛæÙÙæØÙæØÙèÙÚéÚÚêÚÙêÛÙëÛÙìÜÚíÜÙìÛØëÚ×ëÙÖìÙÖëÙÕëØÓëØÓìØÓë×Òê×ÑêÖÐèÔÏèÔÏèÔÏæÒÍæÒÌæÒÍåÑÌäÑÌäÑÍåÒÏäÒÏãÒÏâÑÏâÐÎãÑÏãÒÏãÒÏäÓÐåÔÑçÖÓçÖÓæ×Ôæ×ÕçØÖéØÖéÙÖëÚ×ìÛØìÛØíÝÚíÞÛîßÜîâÞðäàðäàðäàòæâòçãóèäôèäôêãõëãôêãöìäõëäöìåõíæöîç÷ïèöïè÷ïèøðé÷ðéøñç÷ðè÷ñè÷òé÷òéöòéöòéöñè÷ïæõêâòåÝîÜÖéÖÐâÏÌÛÉÇÑÁÂǹ¾¾³º»°º¸®¹¶¬·µ«·³ª¶³¨µ±§´¯¥³­¢²¬¡²ªŸ°¨°¤›¯£›¯£œ¯£°¢œ¯¡›® ›®¡›­Ÿš®ž™®œ™®›˜®š—­˜–­“”«’ª‹©ˆ¨‡¨…§‡Ž§Š¨Ž’©”•«›š¯¡ž±¦¢²ª¤´¶«·Â´ºÏ¾¾ÙÆÃáÍÈÜÕÛÝÖÛÞ×ÛÞÖÛßÖÜߨÜàØÝàÙÞàØÝàÙÞàÙÞàÙÞàÙÞâÛàâÜáâÜáãÜáâÚàâÙßáØÝâÙÜãØÛäÙÛãØÚä×ÙäØÙä×ÙåרæØÙæØÙèÚÚéÚÙéÚØëÛÙìÛÙìÛØíÜÙìÚ×ìÙÖë×Óê×ÒêÖÑéÕÑéÕÏéÕÏèÕÏèÔÎçÓÎæÒÍåÑÌåÑÌäÐËãÏÊãÏÊâÏËáÎËâÏÌáÏÌàÏÍàÎÍàÏÎàÏÎàÏÎáÏÎãÒÏåÔÑåÔÑåÕÒåÖÔæ×ÕèØÖèÙÖéÚ×ëÛØìÛØíÜÙíÝÚíÞÛîßÜïáÝîâßïãßðåáòçãòçãóèäôéäôéåôéäôêåôêåõëåöìåöíæöíæöíæ÷íæöîçöîçöïçöïç÷ðçøðç÷ðç÷ñèöòéöòé÷ñèöíäóèàñáÚìØÔåÒÎÝÊÈÔÃÃÊ»¾Á´»»°ºº°¹¹®¸¶¬¸¶¬··«·¶ª¶³§µ±¦´°¥´®£³« ±ªŸ°¦±¤›°¢œ¯£°¢œ¯¡œ¯ š­ ›¯ž™®ž™®œ˜¬™–¬˜•«”’«Ž©ŠŽ§†‹¦€‰¥~‰¥}ˆ£‰¤ƒŠ¥Š¨’•ª™™­ ž±¦¡±°§´¿±¸Ë»½ÖÃÂÞËÇæÒÌÛÔÛÜÕÜÝÖÜÝ×ÛÞ×ÜÞ×ÜßÙÝàÙÞߨÞàÙßàÙßßÙÞàÙßáÚàâÛáâÛáâÛááÚßáÙßáÙÞáØÝâØÜãØÛãØÚã×Ùä×ÙäרåרæØÙæØÚèÚÙéÚØéÛÙëÛÙìÛØìÛØìÛØìÚÖëÙÔêÖÑéÕÐéÕÏéÔÏèÕÎèÕÎèÔÎçÔÎæÒÍæÒÍäÐËãÏÊãÏÊâÎÉáÎÉàÍÊàÍÊßÎËßÍÌßÎÍßÏÍÝÎÍÞÎÍßÏÍàÐÏâÑÏãÒÏäÔÑåÕÒåÖÓæ×ÔçØÕéÙÖêÚ×ìÛØìÜÙíÜÙîÞÛíßÜîßÜîáÞïâÞïãàðåáñæãòçãòçãóèäôéåóèåôéåôêæõêæõëæöìæöìåöìåöíæ÷íæöîçöîç÷ïçöïç÷ðçøñè÷ñè÷ñè÷ñè÷ïæõëâóåÞïÞØéÖÑâÏËØÆÅ;Áµ¼¼±º»°º¹®¸¸®¸·­·¸­·¸¬·¶ª¶µ©µ´¦´°¦´¯£³¬¡²ª °§±¥œ°£œ¯¢œ¯¢œ¯¢œ¯Ÿ›®Ÿ›®žš­˜­›—¬˜–«–“¬“‘ªŽ¨‡‹¥€ˆ£{…¡y…¡y…¡|‡¢‚ФЧ’”ªš™­¢ž¯®¥²¼®µÉ¸ºÓÀ¿ÜÈÅãÏÊêÖÐÛÔÛÜÕÜÝÖÝÝÖÜÝÖÜÞÖÜߨÝàÙßߨßàÙßß×ßߨßàÙàáÚààÙàáÚààÙààØßàØÞߨÝáÙÞáØÜá×Ûã×Úã×Úã×Ùä×Ù娨æ×ØæØÙèÚØéÚØéÚØëÚ×ëÚ×ìÛØíÛÖìÙÔëØÒêÖÐéÖÏèÕÎèÔÎçÕÍçÔÍçÓÎæÒÍåÑÌäÐËäÐËâÏÊâÎÉáÍÈàÌÇßÌÉÞËÉÞÍÊÝÌËÝÍÌÝÎÌÝÎÍÞÎÍÝÎÍàÐÏáÑÏäÒÑåÔÑæÕÒæÖÓæ×ÔèØÖêÙÖêÚ×ìÛØíÛØíÜÙîÝÚíÞÛîßÜïàÝîâÞïâàðäáñåâñæâòçãòçãóèäóéåóéäôéåõêæõêæõêæõêäõêåõëäöìåöìåöíçöîç÷ïèöïç÷ðçøðèøñçøñè÷îåôéáòãÜîÜÖçÔÏßÌÉÕÃÃȺ¾¾²»¼±»º¯¹¹®¸¹¯¹¸­·¸­··¬¶·«·¶ª¶µ¨¶³¦´±¤³®£³«¡±©Ÿ°¥œ°£›¯¡›®¢œ¯¡›® œ¯Ÿ›®Ÿš®˜­œ—¬™•¬•’«’‘ªŒ§‡‹¥‡£{…¡z…¡{†¡ˆ£ƒ‹¤ŠŽ§“”©Ÿ›­­¤°¼®µÈ·ºÒ¿¾ÛÆÂâÎÉçÔÍìÙÒÜÕÜÜÕÜÜÕÜÜÕÜÝÖÝÝÖÝÞ×ßߨßàÙàߨßàÙàáÚááÚáߨßßÙàߨàߨßÞ×ÞÞ×ÞÞ×ÝàÙÞáÙÝáÙÜâØÛãØÛäØÚæÙ򾯯å×Ùæ×ØçØÖèØÖéØÖêØÕëÙÕìÙÕìÙÔìÙÔìØÒëØÑèÕÎèÕÎèÕÎæÓÌåÒÌåÑËäÐËãÏÊãÐËâÏÊâÎÉàÍÈáÌÈßÍÈàÍÉßÍÊÝÊÊÝÌËÜÎÌÝÍÍÜÍÍÝÍÍÞÏÏàÑÏâÒÐåÓÐåÕÒæÖÓç×ÔçØÕéØÕêÙÖëÚ×ëÛØìÜÙîÝÚëÜÙíÞÛîßÜïàÝîâßïáàîáßðâáñäâðåâðåãòçãóçãòçäôéäóèäóèäóèäóèäóèåóèäôêåõëäõìå÷íæõíæöîç÷ïèøñçøñèöïæ÷íåôéáñâÛíÙÔæÓÎÞËÈÒÂÁÅ·¼¼±º»°º»°ºº¯¹º¯¹¸­·¹®¸¹­¸¸­··«·¶ª¶¶¨¶²¥³¯£³­¢²©Ÿ°§±¤°¢°¢œ¯ ›® œ¯ œ°Ÿš¯ž™®—­›–¬˜•«”‘ª¨ŠŒ¦†‹¥ˆ£‡¢~†¡~†¡‚ˆ¢‰¤—•¨© ­º¬²Æµ¸Ò¾½ÚÆÂàÌÇæÓÌëØÑðÞÖÚÔÜÜÕÝÛÕÝÜÔÝÝÕÝÝÖÞÝØÞߨßàÙààÙààÛáàÚáßÙààØàÞÙàÝ×àÞ×ÞÞ×ÞÞ×ÞÞ×ÞàÙÞáÙßâÙÝáØÛäÙÛäÙÛåÙÛæØÚåרæØ×ç×Õè×Õè×Ôé×ÔëØÔëØÓìØÔíÙÓìØÑëØÑéÖÏèÕÎçÔÍæÒÌåÑÌäÐËãÏÊâÎÉáÎÉáÏÊàÍÈáÎÉàÍÈàÍÊàÍÊßÍÉÞÌËÞÌËÝÍËÜÍÍÝÎÍÞÏÎßÐÎáÒÐãÓÑåÔÒæÖÓè×Ôè×ÔéØÕéÙÖëÚ×ëÛØëÛØìÛØíÜÙìÝÚíÞÛïáÝïâÞîâßïáàïáàîâßïâàïãáðäâñåãòæäòçãòçäòçäòçãóèäòçãòçãòçäóèåôêäõëäöìåöíæ÷íæöîç÷ðè÷ðç÷ïæöìäôèàñáÛíÙÔæÓÎÝËÈÓÁÁÅ·¼¼±»¼±»»°ºº¯¹¹®¸¹®¸¹®¸¹®¸º­·»®·¼­·º¬·¸ªµ´§´¯£³«¡²¨Ÿ²¥±¢œ¯¢œ¯¢œ¯¢°¡°¢œ°¡›°Ÿš¯Ÿ™®œ–­™•«•“ª‘‘¨Ž§‰¤‡‹£„ˆ †Ÿƒ†ŸŽ¢Ÿ˜¨³¤­Â±´Î»¹×¿ÞÊÅãÏÉçÔÍìÙÒñàÙØÓÜÚÕÞÛÕÞÚÔÞÛÕÞÛÖÞÝ×àߨàßÚàáÙàßÛâàÜáÞÚàÞÙßÝÙàÜØßÜØßÞ×ÝÞ×ÞÞ×ÞàÙÝáÙÞâÙÝâÙÜäØÛäØÚæÙÛå×Ùå×׿×Öæ×ÕçÖÔçÖÓé×Óê×ÓëØÓìÙÒìÙÒëØÑê×ÐéÖÏèÕÎçÔÍçÒÎåÑÌäÐËãÐËâÎÉáÎÉáÎÉáÎÊáÎËàÍÉßÌÉàÍÉàÌÉÞÌÊÝÌËÝÍÌÜÍËÞÎÍßÐÎàÑÏáÒÐäÔÑæÕÒç×ÔéØÕéØÕêÙÖêÚ×ëÚ×ëÚ×ìÛØìÛØìÝÚíÞÛîàÝîâÞïãßîâÞïâßïâàïâàïâàðãáðãáðäâñåãñæäòæäòæäòçãòçãòçãòçãòçãóèäôéäôéåõëäöìå÷íæ÷îçöïçöïçöïæöíäôèàñâÛíÚÕçÔÎßÌÉÕÃÃɺ¾¿³º»°º»°ºº¯¹º¯¹º®¸º®¹»®¸¾±¹Á²¹Á²¹Á²¸¿¯·¼¬¶¶¨´¯£³ª ²§ž±¤ž°£°£°¤ž±¤ž±¥ž±¥Ÿ²£ž±¢œ°Ÿš®˜­™–¬–“©”’¨–“§“¥Ž¢ŒŠ Ž‹Ÿ—¡§š¦¹¨­Ç³´Ð¼º×ÃÀßÊÅåÏÉèÔÍìØÒðàרÓÜÙÔÝÙÕÝÚÓÝÚÔÞÚÕÞÜÖßÜ×àÝØáÞÙáÞÛâßÚâÞÙâÝØàÜ×áÝØßÝØßÞ×ÞÞ×ÞÞ×ÞàÙÝàØÞáÙÝãÙÛãÙÜäÙÛåØÚåרäÖ×åÖÖæÖÔçÕÓæÕÒé×Óê×ÑêÖÒë×ÑëØÑê×Ñê×ÐèÕÎèÕÎçÔÍåÒÍåÑÌäÑÌãÐËâÏÊáÎËáÎÌâÏÌáÎËàÍÊàÍÊßÌÉàÍÊßÍÊßÍËÞÍÌÝÎÌßÐÎàÑÏáÒÐãÔÒåÔÒæÖÓçÖÓéØÕêÙÖëÚ×ëÚ×ëÚ×ëÚ×íÜÙìÜÙìÝÚîßÜïáÞïãßïãßïãßîâÞíáÞíàÞîáßïáàïãàðãáðãáðäâñåãòæäñåãòæäòåäñæãñæãòçãôéåóèäõêåõëäöìåöíæöïæ÷ïæ÷ïæ÷îåôéáòãÜîÜ×éÖÑâÏËÛÈÆÐ¿ÀƸ¼½²¹»°¹»°ºº¯ºº¯¸»¯¸À²¹Å¶»È¸¼É·»È·»Ç¶¹Ã²¸¿¯·¶©µ®£³©¡²¦ž°¤ž°¤ž±¥Ÿ±¦ ²§¡³¦ ²¦ ²¥Ÿ²¤ž±¡›®ž™­ž˜¬£š«¥›ª£™¨Ÿ•¤š¡’¡¤—¢¯ž¦½©­È³³Ð»¹×Á¾ÞÈÃãÍÇçÑËëÖÐîÜÕÖÑÚ×ÒÛÙÓÜÚÒÜÚÓÜÛÔÝÚÕÞÛÕßÜ×àÝØáÞÙâÞÙâÝØáÜØàÝ×àÝ×ßÞ×ÞÞ×ÞÞ×ÞÞÖÞߨÝàÙÞá×ÜâÙÜãØÛã×Úä×ÙäרäÖ×äÖÖåÕÔçÕÔçÖÓèÖÓèÕÒéÖÑéÖÑêÖÐéÕÐéÔÐèÕÎçÔÎçÔÎçÒÍåÒÍåÒÍäÑÌãÐËãÐÌãÐÌâÏÌâÏÌáÏÌáÎËàÍÊßÍÊßÎËàÎÌàÎÍßÎÍàÐÎáÑÏãÓÑãÔÒæÕÒæÕÒçÖÓéØÕêÙÖëÚ×ëÚ×ìÛØíÜÙíÜÙíÝÚîßÜïàÝïáÞïãßïãßïâÞîãÞïáÞîàÞîàÞîáßïáàïâàðâàïãáðäâñåãñåãðäâñåãñåãòçâóèäóèäôéäõêåõëäöìåöíæ÷îæøïçöîå÷îåõëãóæÞðßÙìØÓæÓÎßÌÈÖÄÃͼ¿Å·¼¿²º¼°¹¼°¸¼¯¹¿±¹Æ·»Ì»¼Ð¾¿Ñ¿Àн¾Ð¼¾Ì¹¼È¶¹À°¶µ¨´­£³©¡²¨ ±¨¡²©¡²©¢³ª£³ª£´ª¢³«£´©¡±¦ž±¥ž°ª ¯®¢®®¡¬­Ÿª«œ§¨™£«›£±Ÿ¥¸£§¿ª¬Æ±±Î¸¶Õ¾¼ÛÄÀàÊÅåÏÉèÒÌëÔÎÕÐÙÖÑÚ×ÒÛØÑÚÙÑÛØÒÛÙÔÝÚÕÞÛÕÞÜ×àÜ×àÝØáÝØáÝØáÝ×àÞ×ÞÝÖÝÞ×ÞÞ×ÞÞ×ÞߨÝàØÝà×ÜâØÛâ×ÚäØÚä×ÙäרäÖ×ãÕÖåÖÔåÖÓæÕÓçÕÒèÕÒèÕÑèÕÐéÕÐèÕÐèÔÏèÔÎèÔÎçÔÎæÒÎåÓÎåÒÍåÒÍåÒÍäÑÌãÑÎãÐÍãÐÌâÏÌáÏÌàÎËàÎËáÐÍáÐÍàÐÍáÐÍâÑÏãÒÐäÓÑåÔÒæÕÒè×Ôè×ÔéØÕêÙÖêÙÖìÛØìÛØíÜÙíÜÙíÝÚíÞÛîßÜïáÝïãÞïáÞïáÞïáÞïáÞðáÞîàÞîàßïáßîáßïâàïâàðäâðäâñåãðäâñåãðäâòçãòçãóèäóèäõêåõëäöìå÷íæ÷îæ÷îæøïæ÷îåöíäôéáòãÜîÝÖéÖÐãÏÊÛÈÆÒÁÂÊ»¾Ã¶»¿²¹¾±¹¿±¹Å¶ºÍ½¿ÕÂÀØÄÂØÄÃØÄÂ×ÃÂÕÁÀѽ½Ê¸º¿¯·³§´­£³«¢³¬¤´«£´¬¤´­¥µ­¥´®¥µ¯¥¶®¥µ¬£´­¢±±¤±´¥°´¤®²¢«¯ž¨®¤³ ¥»¦©¿©ª¾¨ªÃ¬­Ê²²Ð¹¸Ö¿¼ÝÅÀáÉÄâÊÅäÌÇÔÏØ×ÏÙ×ÏÙ×ÏÙ×ÏÙ×ÑÚØÓÜÙÔÝÚÕÞÛÖßÜ×àÜ×àÜ×àÜ×àÜ×ÞÞ×ÝÝÖÝÞ×ÞÞ×Þß×ÞߨÜß×Ýá×ÛáØÛã×Ûã×ÚåØÚãÖØãÕ×ãÖ×åÕÕäÖÓåÔÓæÔÒæÕÑçÕÑèÕÐçÔÏèÔÏèÓÎèÓÏçÓÏçÔÏæÒÍæÓÎåÒÍæÓÎæÓÎåÒÍåÒÍäÑÎãÐÍãÐÍáÏÌáÐÍáÐÍâÑÎâÑÎãÑÎãÒÏãÒÏäÓÐåÔÑçÕÒè×ÔéØÕéØÕêÙÖêÙÖëÚ×ìÛØíÜÙìÛØíÜÙíÝÚîÝÚîßÜîßÜïàÝïáÞïàÝïàÝïáÝïàÝîßÞïàÝîàßîáßîáßïâàðãáðäâðäâïãáðäâðäãòæãòçãóèäóèåõëäõëäöìåöìæ÷íæ÷îåùðç÷ïæ÷îåõìãôçàñáÚìÙÔèÔÏàÌÈØÆÄÑ¿Àɺ½Â´»Á³¹Å¶»Í¼¾ÖÃÂÛÇÄßÊÆàÌÇßËÆÞÊÅÜÈÄÙÄÁÓ¿¿Ê¸»¾¯·³¨´¯¦´¯¦´¯¥µ°¦¶°¦¶°¦¶±§·±§¶±§µ¯£³¯¢±´¥±·¦°·¥­µ£ª´¢¨²ž£µ £¿©©Ä­¬¿§§¾§©Ã«­Ê²±Ð·¶Ôºº×¾¼Ø¿¾ÛÂÀÖÍ×ÕÍ×ÖÎØÕÏ××ÏÙØÐÚ×ÒÛÙÓÜÛÔÞÛÕÞÛÖßÛÖßÜÖßÛÕÞÝÔÞÝÖÞÝÖÝÝÖÝÞÖÝßÖÝÞ×Üß×ÜáÖÜà×Úâ×Úâ×ÚäØÚäÖØäÖ×ãÕ×äÖÖåÕÔäÖÓåÓÒåÓÑäÓÐåÓÐæÓÐæÔÏæÓÎæÔÎæÔÎçÓÎæÓÎåÒÍæÓÎæÓÎçÔÏçÔÏçÔÏæÓÏäÒÏâÒÏãÒÏãÒÏãÒÏäÓÐäÓÐæÓÐåÔÐæÔÑæÕÒçÖÓè×ÔéØÕéØÕêÙÖëÚ×ìÛØìÛØìÜÙìÛØìÛØìÛØìÜÙíÜÙìÝÚíÞÛîßÜîàÜîßÜíÞÛîßÜïàÞîßÝïßÞîáÞîáàïâàðãáðãáðãáðãáðãáðãáðäâñæâòçãòçãóèäõëäõëäöìå÷íæ÷îæ÷îå÷îåøðç÷ïæ÷îåõëâóæÞðÞ×ë×ÑåÑÌßÌÈØÅÃÑÀÀʺ½É¹¼Ï¾¿ÖÃÂÝÉÆâÎÉäÑËåÒÌæÓÌåÑËäÎÉàÌÇÛÆÂÔÀ¿Ë¹»Â²¸º¬¶µª¶²¨µ±§¶²¨¶³¨¶´ª¶µ©¶µ©µ³¦²´¤°·¦°º§­¹¦«·¢§µž£³ ³œŸ¼¥¦Ä­«Âª©¼£¥»£¦¾¦ªÂ©®Ãª±È­³È­´Ì³¶ÖÍØÕÍ×ÕÎØÕÎØÖÎÙ×ÏÙØÑÛÚÒÜÛÓÝÛÓÝÛÔÝÛÓÝÜÔÞÜÔÞÜÕÞÜÕÜÜÕÜÝÕÜÞÖÝÞÖÜÞÖÜÞÖÛàÖÜà×ÚàÖÙâ×ÚãØÚäÖØäÖ×äÕÖäÕÖäÔÕãÔÓãÓÑãÒÑäÒÑäÒÐåÓÐæÓÐæÒÏæÓÏçÔÏçÓÎåÒÍæÓÎæÓÎæÓÎçÔÏçÔÏçÕÏæÔÑäÔÑäÒÐäÓÐäÓÐåÔÑåÔÑåÔÑèÕÑèÕÐéÖÑé×ÓéØÕéØÕéØÕêÙÖëÚ×ëÛØìÛØìÜÙëÜÙìÛØëÚ×êÚ×ëÛØìÜÙëÜÙìÝÚíÞÛíÞÛíÞÛîßÜíÞÜîßÝîßÝïàÝîàÞîáßïâàïâàðãáðãáïâàïâàðãáðäâñåáòçãóèäóéäõëäöìåöìå÷íæ÷îæ÷îåøïæ÷ðç÷ðçøðç÷îåõêâóäÜïÜÕêÖÑåÒÌàÍÉÛÈÆ×ÄÃÖÃÂÙÆÄÞÊÇãÏÊçÓÍêØÐëÙÒíÚÒìØÑëÕÏæÒÌáÍÇÜÇÃÖÁÀϼ¼Ç¶ºÀ±·º¬·´©µ²§³³¨µ·©µ¹ªµºª´¹¨²»¨°¿ª¯À«®¼¥©·¡¤µž ´œ³››¸¡¡¾¨¦¾¨§¹¢¤³›¡¯˜£®—¥®–§­”¨¯•¨¸ž«ÖÎÖÖÎÖÖÏÖÖÎ×ÖÏ××ÐØÙÑÙÚÓÚÚÒÚÚÓÛÛÔÛÛÓÛÛÔÛÛÓÛÜÔÜÜÕÜÜÕÜÝÕÜÞÖÝÞÖÝÞÖÜÞÖÜßÖÜàÖÛàÖÛâ×Úã×Ùä×Ùå×ÙäÖ×ãÕÖãÔÕãÔÔãÓÒâÒÑâÒÐäÒÐäÓÐäÓÏåÒÐåÒÏæÓÏçÔÐåÒÍæÓÎæÓÎçÔÏèÖÒèÖÑèÖÒæÕÒæÕÒåÔÑåÓÑåÕÒæÕÒæÕÒçÕÒéÖÓê×ÒêØÒêØÕêÙÖêÙÖëÚ×ëÚ×ìÚ×ëÛØëÜÙêÜÙêÛØëÛØêÚ×êÚØêÚØëÜÙëÜÚëÜÚìÝÛíÞÜîÞÜîÞÜîÞÜíÞÜíÞÜîßÜïàÝîáßïâßïãàðãáðãâïãáðãáðãáðãáòæâòçãóèãóéãõëäöìåöìåöìå÷íå÷îåùðç÷ðçøñè÷ðçøñçöîäôéàóâÛïÝÖëØÒçÔÎäÐËáÍÉàÌÈâÎÊåÑÌèÕÎìÙÒðÞ×òâÚòãÚòâÙðÞÖìØÒèÒÌãÏÉÝÉÄØÃÂÒ¿¾Ë¸ºÃ²·½¬µ·§²µ¦±·§±»©²¼ª±½©°¾ª®Â®°Å®¯Ãªª½¤¥¸ž µœœ³››³·¢¢¸£¥¶¡¤¯™ ¥‘žœŠž—…Ÿ“Ÿ}žŸ‡£×ÏÖÖÎÕ×ÎÕ×ÏÖØÏÖØÐ××Ð×ÙÑØÚÑØÙÒÙÙÒÙÙÒÙÚÒÙÚÔÛÛÓÚÛÓÚÜÔÛÜÔÛÜÔÛÜÔÛÜÔÛÜÔÚÝÔÙÞÔÚßÕÚáÖÙáÖÚäØÚåØÚä×ÙãÕ×âÔÕáÓÔáÓÔáÒÓâÓÒâÔÒäÒÐåÒÑäÒÐãÒÏäÓÐåÓÐæÓÐåÔÑæÔÑçÖÓèÖÓè×ÔèØÔè×ÔçÖÓç×ÔåÖÓæÖÔè×ÔéØÕéØÕêÙÖéÙÔëÚÔêÚÕëÚ×ìÛØìÛØìÛØìÜÙëÜÙìÝÚìÝÚëÜÙêÛÙêÛÙéÚØêÛÙëÜÚìÝÛíÞÛìÝÛíÞÜíßÝîàÞíßÝîßÝïàÝïàÝîâÝïãßðäàñåáñåáñåáñåáðäàñäáñåàñåâóçãóéãôêãõëäöìå÷íæ÷íæøïåøïæ÷ïæøñè÷ðçùñèøñèøðç÷íãôèßòâÛðÞ×ìÙÔêÖÑèÔÏèÔÎéÕÏëØÑîÛÔñáÙóåÜõêßõëáôêßóåÜñß×íÚÓéÕÎäÏÉàËÆÚÅÂÔ¾¾Í¹ºÆ²¶¿­²º¨°¹¦®»§®¾©®À©­Àª­Ä­¯Ê±°Ê°®Æª©¾¢¡µœ›°™˜®˜š°Ÿ³ ¢³Ÿ£¬š¢¢Ÿ–†œ‘‚œ}œ‡w›‹xœÕÍÔÖÎÕ×ÏÕØÎÕØÏÕØÏÖØÏÖÙÑ×ÚÑØÙÑÙÙÑÙÙÑØÚÒÙÛÓÚÛÓÚÛÓÚÛÓÚÛÓÚÛÓÚÛÓÚÛÓÚÚÒÙÛÓÙÜÓÙÞÔÚàÕÚáÖÚãØÚã×ÙäרãÖØãÕÖâÔÕâÔÕáÓÔâÓÔâÓÓâÓÒâÓÑãÓÑãÒÐäÓÑäÔÑæÔÑæÔÑæÖÓè×Ôè×ÔéÙÖêÙÖêÙÖéÙÖçØÕèÙÖèÙÖéÚ×ëÚ×ëÚ×ëÛØëÚ×ìÛØìÛØìÜØíÜÙíÜÙíÜÙíÜÙìÝÚìÝÚíÞÛìÝÚëÜÚëÜÚéÛÙéÜÚêÝÛëÞÜëÞÜìÞÜíßÝíßÝîàÞíàÞîáÞîáÞïáÞïâÞïãßðäàñåâòæâòæâñåáñåáñåáñåáòæâóçâóéâôêãõëäöìäöìå÷îåøïæ÷ïæøðçøñè÷ñèøñèöòéøñèøïåöìâõèàóäÜñàÙïÝÖîÛÔîÛÔîÜÕñßÙòâÛôçÞöëá÷íäøïå÷íãõêàóæÜñáÙîÜÕëÖÏçÑËáÌÆÛÆÂÕ¿½Î¹¸É³´Ã®±¾©­½¨¬À©«Âª¬Ä««Æ¬ªË±®Î³¯Ë¯«Â§¤·œ®–˜©”—«™›®Ÿ®ž¢«œ£¥•¢™‹ž’„œ€Šz›‹y›ÒÊÑ×ÎÔØÎÔØÏÕØÎÔÙÏÕØÏÕÙÏÕÚÏÖÚÐÖÙÐÖÙÐ×ÙÑØÚÒÙÚÒØÚÑØÚÑÙÚÒÙÙÑØÙÑØÙÑØÙÑØÙÑÙÛÓÚÝÔÚÞÕÚà×ÛâØÚãØÛã×ÙãÖØãÕ×âÕÖãÕÖâÕÕâÔÕâÔÕâÔÓâÔÒãÔÒãÔÒäÔÒäÕÓåÕÓæÖÔç×ÔéØÕêÚÖêÚ×ìÛØìÛØëÜÙëÜÙëÜÙëÜÚëÜÙìÝÚìÝÚíÞÛíÞÛîÞÛîÝÚîÝÚîÝÚíÝÚíÞÛíÞÛíÞÛîßÜíßÜíÞÛìÝÛëÝÛêÝÛêÝÛêÝÛëÞÜìßÝìßÝìßÝíàÞíáÞîâÞîâÞïâßïãßðäàðåáñåáòæáòæâòæáòæâòæâòæâòæâòæáóèâôéâõêãõëäöíå÷îåøïå÷ïæøðç÷ðçøñèøòéøòéöñéøòéøðç÷ïåöìâõéàôæÞóäÜòâÛóãÛóäÜôçÞõêàöìâ÷ïå÷ñæ÷ñæ÷ðç÷îäõëáõèÞóåÛðÞÖëØÑèÑÌâÌÆÜÆÁÖ¿»Ðº¶Ëµ³Ç°¯Ä­¬Ã««Æ­«È®«É®ªË¯«Ì±¬Ì±¬Æ«§¼¤¡°š›§”—¤•˜©š¬¡ªœ¤¦š¥ž’¢•‰ž„Œœ€ÏÄÌÔËÑØÍÓÚÏÒÚÏÔÛÎÔÚÐÖÚÐÖÙÏÕØÏÔØÍÔØÎÔÙÏÕÚÐÖÙÎÖÙÎÖÙÎÖ×ÐÖ×ÏÖ×ÏÖØÐרÐ×ÙÑØÛÓÚÜÔÙÞÔÚßÕÛá×Úâ×ÚáÖÙáÖÙâÕØãÖØãÖØãÖØäÖ×äÖ×äÖ×äÕÖãÖÕäÖÓäÖÔåÖÔçØÖçØÖçØ×éÚ×êÛÙëÜÙìÝÚíÞÛíÞÛíÞÛíÞÛíÞÜîßÜîáÞïâÞïáÞðáÞðáÞïàÝïàÝîàÝîàÝïáÞðáÞîáÞïâÞïâÞîàÝíßÞíàÞíàÞíàÞìßÝíàÞìßÝìßÝíàÞîâÞïãßðäàðäàñåáñåáòæâòæáóçâôéâóçáòæàóçáóçáóçâôèâôèâôèâõéãöêãõíåöíåøïæ÷ðç÷ñè÷ðçùòéùòéùñèøñéøòé÷ñéùòèùñæøïå÷íä÷ìâõëáöëáöëáöëáöìâ÷íãøðæ÷ñæ÷òèùñé÷òçøñæøïåöíãõêàôæÜñà×ìØÑéÓÌãÍÅÝſ׿ºÓ¼·Ð¸³Ï¶±Í³¯Ì²®Í³­Í±¬Ì°«Ê°ªË±¬É¯«Á©§µ ¡ª™¤–𦙍œ¡§œ¤¦›¦¡—¤š¡’‡„œ“…žÊ¿ÆÒÇÌ×ÌÐÙÎÐÚÏÒÜÐÕÜÐÖÛÏÕÛÏÕÚÍÓÙÍÓØÍÓÙÎÔØÎÔØÎÔØÍÔÖÌÔÕÍÔÕÍÔÖÎÕÖÏÖØÐ×ÙÑØÛÓÚÜÔÛÝÕÛßÕÛàÖÜàÖÛàÖÚá×Ùá×Ùâ×Ùã×Ùä×Ù䨨åרåרåרåרä×Öä×ÖæØÖçÙ×èÚØêÛÙëÜÚìÝÛíÞÛîßÜîßÜîàÜîßÜîáÝîâÞïãßðäàðäàñåáðäàðäàñåáðäàðäàïãßðäàðäàðäàðäàðäàïãßîãßîáßïâàîáßîáßíàÞîáßîâßïâàïãßðäàðäàñåàñåáòæâóçâóèâóèâõéãôèâôèâôèâôèâôèâôèâôèâõéãõéãöëãöíä÷îåøïæ÷ñèøñèøñèøñèøòéùòé÷ñèøòèøòèøòéøñéøñçùñæùïåøïåøïäøïåøïåøðæøñçøòçøòèøòéøòèøñèùòèøòçùðæ÷ïäöìâõèßòáØîÚÒêÓËäÌÄÞžÙÁºÙÀ¸Ù¿¸Ø¾¸×½µÕ»³Ó¸±Ïµ¯Ì²¬Ê±¬È°­Ã¬¬º§¨®Ÿ¢¦™Ÿ¤™Ÿ¥œ¢¥›¢¤›¥£š¦Ÿ–¤˜ŽŸ“‡•‰ŸÃ·¾ÎÃÈÕÉÍØÍÐÙÏÑÛÏÔÜÐÖÛÐÖÛÏÕÚÎÔÙÍÓÙÍÓÙÍÓØÌÒ×ÌÒÖËÒÖËÒÕËÓÔÍÓÕÍÔÕÎÕ×ÏÖÙÑØÛÓÚÛÔÛÜÔÛÝÕÜßÖÜßÖÛßÖÛà×Úá×ÚãØÛâ×ÚäØÚåØÚåÙÙåÙÙæÙÙæÙÚçÙÚçÙÚèÚÚèÛÙéÛÚêÝÛëÞÜîßÜïßÜïàÝîàÝîáÞïãßðäàðåáñæâñæâòçãòçâòçáñçâòæãòæâòæâñæâñæâòçãñæâòæâñåáñåáðäàðãáïãáïãáïâàïâàïâàðäàðäàðäàñåáñåáñåâòæâóçâóéáôéâõëãôëâõêâôéâôéâôéâôéâõéãôéãõêãöíäöíä÷îåøïæ÷ðçøñèøñèùòéøñéùñéøñè÷òéùòéøòèøóéùòéùòéùòéùñèùòèùñèùòçøòçùòèùòéøñéøòèùòèøòéøñéøñé÷ñèùòèøñçøñæ÷îãõéßòâÙîÚÒéÒÊäËÃߎÞļßÅ½àÆ¿ßǽÞļÙÁ¹Ô¼µÏ¶±Ê²®Æ¯­Â­­¼©«²£¨¨œ£¢™¡£›£¤œ¤¤œ¦¤œ§£›¦ž–£—Ÿ–‹Ÿ¾²¸Ë¿ÃÓÈÌØÌÐÙÍÑÙÍÓÛÏÕÛÏÕÚÏÕÛÏÔÙÍÓØÍÓÙÍÒ×ËÑ×ËÑÕÊÑÕËÑÓËÒÓÌÓÔÌÓÖÏÖ×Ð×ÙÑÙÛÓÚÛÔÛÜÕÜÝÕÝÞ×ÜÞ×Üß×Üà×ÜáØÛá×ÚäØÛäØÚåØÚæÙÛçÛÛçÛÛèÛÜéÛÜéÛÜéÛÜêÜÝëÝÝëÞÜìÞÜîÞÜîàÝîáÝðãàïäàðåáòæâòçãóèäóèäóéãóêâóèâóéâóèãóèäòçãòçãòçãóèäóèäòèáòçãòæâðåáðåáðäâðäâðäâðäâðåáñæâñæâñåáòæâóçãóçáóçâôéâóéâõëäôëãõìãöìãöëãöëäõëâõëâõëâõìäöíäöíä÷îåøïæøïæ÷ðçøñèùòéøñèùòéøòèøóéøòé÷ñèùòéùòéùóéøóéùòéøòèøòèùóéøòèùóêøòéøñè÷óéøóê÷òéùñéøòéöñè÷òéøòèùñéùòè÷ñæ÷îäõéßòãÙîÚÒêÓËåÌÅãÉÀâÉÁãËÂäÍÄãÌÄÞǿڻԽ·Í¶²Å°®Á¬®º¨­°£«§§¢›¥ š¤¢¥¤ž¨¦§¥§£›¦”£— ¼¯µÈ¼ÁÑÆÊÕÊÐ×ÌÒØÌÒÙÍÓÛÏÔÚÏÔÚÎÓÙÏÑÙÍÑØÍÐ×ËÑ×ËÐÔÊÐÓÉÏÓÊÒÓÌÓÕÎÕÖÏÖØÑØÙÒÙÛÔÛÜÕÜÜÕÜÝÕÜÞÖÝÞ×ÝߨÝàØÞáØÜáÙÜãØÛäÙÛåÙÛèÛÝèÛÜéÝÝêÝÞëÝÞëÝÞëÝÝëÞÜëÞÞíàÞíàÞîàÞîáÞïãßñåáñæâóèäóèäôéäôëäõëäõëäõëäôêãõëäõëãõêåôéåôéåôéåôéåôêåôéãôéãóèãóèäòçãòçäòçäòçãòçãòçãóèäóèäóèãóèäôêãôêãôêãôêãõëäõëäöìäöíäöìãõíäöíäöíä÷íä÷íåöíä÷îå÷îå÷îåùðçøðçøðçùòéøñèùòéøòèùòéùòéùòéùóêøòéùòéúóêùòéùòéùòêùòéøóêøóê÷òéøòéùòéøòê÷òéøòé÷òéøòéøòé÷òéøòéøñèøñéøòèøòç÷îäõéßóäÚðÜÓëÕÌèÐÆçÎÆæÏÆçÐÈåÏÇâÌÄÝÇÁ×¼л·È³²¿­¯¸©®°£­§Ÿª¤œ¨Ÿ›¦Ÿ›§£ž¨¦ ª¦ž¨£§ š¥•£½°·É½ÃÑÆËÖÊÐ×ËÐØÌÒÙÍÓÚÎÓÙÎÒÙÎÑÙÏÒÙÍÐØÍÐÖËÏ×ËÏÕÊÐÔÊÐÔËÑÕÍÔ×ÏÖØÐ×ÙÑØÚÒÙÚÔÛÛÕÜÜÕÜÝÖÝß×ÞߨÝߨÝáÙÞâØÝâÙÜãÚÝåÚÜçÛÝçÛÝéÝÞêÞÞëÞßìÞÝëÞÝëßÜìßÝìßÞîáßîáßïâàïãßðäàñæâòçãóéåõêåõëåõëäöëäöìåöìåöìåõëäõëäõëäõëåõêåõêæöëæõëåõëåôêäôéåôéåôéåôéåôéåôéåôéåôéåôéæõëåõëäõëäõëäõëäõëäõëäõëäöìåöíå÷îåöíäöíäöíä÷îå÷îå÷îåøïæøïæøïæøïæøðçøðç÷ðçùòéøòèùòéøòéùòéùòéùòéùóéùòéùòéùóêøóéùóé÷óêùóêøóêùòéøòéøòéøóê÷óêøòé÷òé÷óê÷óêøóê÷òéøóêøòéùñè÷òéøòèøñç÷îäöëáóæÛñß×íÙÏëÔËêÓËèÒÊåÏÇâÌÅßÉÃØÃ¾Ò½ºÊ¶·¿­±·¨¯®£®ª ­§Ÿ¬¡œ¨Ÿ›¦Ÿœ¨£ ª¦¡«¥Ÿª¢œ§ž™¥¾±¸ËÀÄÓÉÌÖËÏ×ÌÐØÌÑØÍÒÙÍÑÙÎÑÚÍÐÙÍÑØÎÑÙÌÐ×ËÎÖËÏÖËÑÕËÑÖÍÓ×ÐÕØÐ×ÙÑØÚÒÙÚÓÙÛÓÛÝÕÜÝÖÝÞÖÞߨÞàÙÞáÚÞâÚàãÚÞãÚÝãÚÝæÛÝçÛÝèÛÞêÞÞëÞÞìÝßìßÝìßÝìßÝíàÞíàÞîáßïãàðäàðäàñæâóèäôéåõêæöêäõìåõìåõìåöíæöíæöíæöìå÷ìå÷ìåõìåöìåöëäõìåõìåöìåõìäõêçöêæôêåôêæôêæôêæóêæôêæõìæõìåöìåõìåöìåöìåöìåöìåöìåöíäöîäöíä÷îå÷îå÷îåøïæ÷îå÷îå÷îåøïæùðçøïæùðçøðçøñèùòéøòèùñèùòéúóêùóêúóêùòéúóêúóêùòêúóêøóêøóêøòéøòéøóêùóêøóêøòé÷òéùóêøóêøóê÷óêøòé÷óêøòè÷óéøòéöòèøñéøòèøñæ÷ïåöìâôèÝòâÙïÜÓìÖÎéÒÊäÏÈàËÄÝÇÂ×þѽ¼É¶¹¾®´´§±­£¯«¢¯©¡®£ªŸ›§ž›§¡©¤Ÿª§¡¬£ž¨Ÿ›¦¾°µËÀÃÖËÎØÍÐÙÎÑÙÎÐÚÏÑÚÏÒÚÎÑÛÍÑÚÌÐÙÌÐÚÍÑØÍÐØÍÐ×ÍÑ×ÍÓØÏÕØÑÖÚÓ×ÛÔÙÛÔÙÛÔÙÝÖÛÝÖÜÞ×ÝàÙÞàÙÞáÚßãÛßåÜßåÜßåÜßæÜßçÜßèÜÞèÜÞéÝÝëÝÞëÞÜíàÞìßÝíàÞîáßïâàðãáñåâðæâñæâòæâóèäôéåõëæôìåõíæõíæöîçõîçöîç÷ïèöîçöîçöîçõíæõíæõíæöîçöîçõíæöìåöíæõìçôëçõëçôëçôëçõìèõìçõíåöíæöíæ÷îç÷îçöíæ÷íæ÷ìå÷îçøïåøïæøïæ÷îåøïæøïæ÷îåøïæøïæøïæøïæùðçùðçùñè÷ðçøñèøñèùòéøòéùóéùóèøòèùòéúóéùóéùóêøóéùóéúóê÷òé÷óêøóêøòé÷óêøóê÷óêøóêøóê÷óêøóêøóêøóêøòé÷óê÷óé÷òé÷ñè÷ñéøòéøòèøñæ÷ðå÷íãõêßòäÚíÚÒéÓËäÏÈàÉÄÙÄÀÓ¿½Í¹ºÄ³·½­¶³§³­£°«¢°ª¢¯§ ­¡œ©žš¦žœ¨£Ÿ«¥¢®¥¡¬¡©¾°µÊ¼ÀÓÈËØÍÐÙÎÑÙÎÑÙÏÑÚÏÒÛÎÒÛÎÑÚÍÐÚÌÐÚÍÐÚÎÑÙÎÑØÎÒÙÏÕÚÐÖÛÒØÝÔÙÞÔÚÞÕÚÞÕÛÝÖÛߨÝߨÝàÚßâÛßãÛßåÜÞæÝàçÝßçÜßçÜßèÜÞéÜÞèÝÞéÜÝëÝÞëÞÝíàÞíàÞîáÞïãàðäáñåáñæâñæâòçãòçãôéåõêæõìæõíæöîçõíæöîçöîçöïè÷ïè÷ïè÷ïè÷ïèöîçöîçöîçöîçöîçöîçõîçõíæõìçõìèôëèôìèõìçôìçõíæöíæõîç÷îçöîçöîç÷îçöîç÷îçøïæ÷îåøïæøïæøïæøïæ÷îåøïæøïæøïæùðçùðçøïæúñèùðçøñèøñèùòéøòèøòèùòèùóêøóéúóéùóéùóêùóéøóêøóêúòé÷óê÷óêøóêøóêøóêøóê÷óê÷óêøóê÷óêøóêøóêøóêøóê÷óéøóê÷òé÷òé÷ñéøòèùñé÷ñæ÷ñæ÷ðåöîäôèÞðÞÕéÔÍäÎÈÝÈÂÖÁ¾Î¹ºÅ³·½­¶¶©¶±¦µ®¥³«¡±ª¡¯§ ®¢«Ÿ›©žœ¨ žª¤¡¬¦¢¯£ ¬»­³Å¸¾ÎÂÅÔÉÌØÍÐÚÏÒÙÏÑÛÏÓÜÎÒÜÏÑÛÎÐÚÍÐÚÍÐÙÎÒÚÏÒÚÐÓÚÐÖÜÒ×ÝÓØÞÕÙÞÕÙßÖÚßÖÚàÖÜàØÝáØÝáÙÞãÚÞäÛÞæÜÞçÜßèÜßéÝÞêÝÞéÝÞéÝÞéÝÞêÜÝëÝÝëÞÜíàÞîáÞïãßðäàñæâñæâñæâòçãòçãóèäôéåôêæõìåöîçöîçöîçöîç÷ïè÷ïèøðèøïèøïèøðè÷ïè÷ïè÷ïè÷ïè÷ïè÷ïèöîçöîçöîçöîèõíçöîèõíçöîçöîçöîçöîçöîç÷ïè÷ïè÷ïç÷ïè÷ïè÷ðæøïæ÷îå÷îå÷îå÷îåøïæ÷îåøïæøïæøïæùðçùðçùðçøðçøñèùòéùòéøñèùòéøòéùóéùóéùóêùóéùóêùóêùòéùòéøóêøóêøóê÷óê÷óêøóê÷óêøóêøóêøóê÷óêøóêøóêøóêøóêøóêøóê÷òé÷ñè÷òéøòéøòç÷ðæ÷ðæ÷ïåöíãôçÝðß×êÔÎãÍÇÛÆÀÒ½¼Èµ¸½­µ´¦³­¢²­£³®¤´¬£²©¡°§¡¯¥Ÿ®¡«Ÿœ« «¢ ¬¤¡­£¡­³¤¬½¯µÇ¹¿ÎÂÆÔÉÌ×ÌÏÙÎÑÝÎÓÝÏÒÝÐÒÛÎÐÚÍÏÚÎÏÚÎÑÚÏÒÚÐÓÛÒÔÜÓÖÞÔ×àÕØâ×Úâ×Úâ×ÚãÙÜáØÛâÙÜäÛÝåÜßæÛßçÜÞéÝßëÞÞëßßëÞÞêÝÝêÝÝëÝÝêÝÜëÞÜìßÝîáÞïãÞðäàòæâñçãòçâóèãóèãôéäóéäõëäöìæõìæöîçöîçöîè÷ïè÷ïéøðéøðèøñèøðèøïé÷ïè÷ïèöðéöðéöðéøðéøðé÷ïè÷ïèøðéöïè÷ïè÷ïèöïèøðéøðéøðéøðé÷ïè÷ðé÷ðé÷ïèøðèøðèøðæøðçøïæøïæ÷îå÷îåùðçøïæøïæùïæùðçøñè÷ðçøñèùòéøñèøòèùñéøòèùòèùòêúòêúóéùòéúòéúòéùóêúóêùòéøóê÷óêøóêøóêøóê÷óêøóêøóêøóêøóê÷òéøóêøóêøóêøóêøóê÷òêøòé÷ñè÷ñçøïå÷îäöìâõêàóæÝðáØíÙÒéÓÍâÌÆØÃ¿Î¹¹Â°µµ¦²¬ °©ž°© ±ª¡²«£²«£²©¢±§¡°¤ž­ ¬ œ«¢Ÿ®£ ®¤¡¯¥“³¢ª¾¯¶Èº¿ÐÂÆÕÉÍÚÌÐÜÏÒÝÐÑÝÐÒÛÎÐÛÎÐÛÎÐÚÍÐÚÎÑÚÐÓÜÑÔÞÒÕßÔ×àÕ×âÖÙâ×Úâ×ÚäÙÛäÙÜäÙÝåÚÞæÜÞèÜßêÝÞëßßëßßíàßìßÞìßÝëÞÝëÞÛëÞÛìÞÜíàÝîãÞðäàñåáòçâóçáóéâóéâóéâôêãõëäõëäöìåöíæöîç÷ïè÷ïè÷ïè÷ðéøïéøðèøðç÷ñèøðèöðéöðé÷ñê÷ñê÷ñé÷ñé÷ñéøðèøðèøðéöðé÷ðé÷ðé÷ðé÷ðé÷ðé÷ðé÷ñé÷ñèöðéöðéöñéøñèøñçøðçøðçøïæøïæøïæøïæùðçùðçøïæøðçøðçøñèøñèùòéøñéøòèùòèøòéùòèøñéøòèùòéùóéùòéùòéùòéùòéùóéùóéúóêøóêùóê÷óê÷óêøóêøóêøóêøóê÷òéøóê÷òéøóêøóêøóêøòéøóê÷òèøðæ÷îäöëáõéàôçÝòâÚïÛÔëÖÐçÑËãÍÇÜÆÂÕ¿½Éµ¸º©²¬ °§®§¯¦±§Ÿ°©¡±ª£²ª£²©¢±¦ ¯¤ž­£ž­¢Ÿ®¤ ¯¤¡°z‡Ÿ˜²¡©À±·Ë¼ÀÓÄÈØËÍÜÏÑÜÏÑÝÐÒÛÎÐÛÎÐÛÎÐÚÎÑÚÏÒÛÐÓÛÐÓÝÒÕÞÓÕàÕ×áÖØã×ÙäØÚãÙÛãÙÛäÙÜæÚÝèÜÞêÞÞëßßìßÞìßÞíàÞíàÞìßÝíßÝíÞÛíÞÜîßÝíáÝðäàñåàòæàóçáóéâóèâóéãôêãôêãõëäöìåöìåöíæõîç÷ïè÷ïèøðéøðè÷ðèøðèøðçøñè÷ñèöñéöðê÷ñêöñéöñé÷ñéøñéøñè÷ñé÷ðêöðêöðéöðêöðêöðê÷ñéöñéöñéöòèöñéöñé÷òéøòé÷ðçøñèøðçùïæùïæùïæùïæùïæøðçøðç÷ðçøñèøñèùòèøñéùñèøñéùòéøòèùñéùòéùòéùòéùòéùòéùòéùòéøñèùòèùòéùòéùòéùòéùóêùóê÷òéøóêøóêøóê÷òéøóê÷òéøóêøóêøóêøóêøòé÷ñç÷îäõëáôæÝóáÚðÝÖì×ÑéÓÍäÎÈàÊÄÛÅÁÔ¾½Ë·¹¿­µ¯¢°¦œ®¥œ¯¥¯¦ž¯§Ÿ°¨ ±©¡²«¤³ª£²©¢±¦ ¯¥ ¯¥ ¯¥ °¥¡°uguq€ž—´£ªÄµ¹ÏÀÄÖÈËÛÎÐÜÏÑÛÎÑÝÐÒÝÏÑÜÏÑÚÏÓÚÏÒÚÐÓÛÐÓÜÑÓÞÒÔàÓÕâÕ×âÕ×ãÖØåØÚåÙÛæÙÛçÚÝéÝÝëÞÞëÞÞíàÞîàßíáßîáÝîßÜíÞÜîßÜîàÜîáÝîâÞðäàòæáòæàôèâôçâóèáôèâôêãõëäöìåöìå÷íæ÷îçõîç÷ïçöîçöïçøñèøñçøñçøñèøñèøðç÷òé÷òéöñè÷òéöñè÷òèöòéøñèöñéöñè÷ñê÷ñê÷òé÷òêøòê÷òéöñèöñè÷òé÷òé÷òé÷ñèùòéøñè÷ðçøðçøðçøðçøðçùðç÷ðçøðç÷ðçøñèøñèùòéøñèùòéùòéùñéøòèùòèùñéùòéùòéøñèøòèøñèøñéùòéùòéùòéùñéøñèøñèøñèùòéøòé÷óê÷óê÷òé÷òéøóê÷òéøóêøóêøóê÷òéøóê÷òéøïåöëáôæÝòàØîÙÓêÔÎçÏÉáÉÅÜÄÁ×À¾Ñ»»É´·¿­´´¥±§®¤›®¤œ®¥¯¦ž¯¦ž°¨ °©¢±ª£²«¤³«¤³©¢±¨¢±§¢±§¢±§¢±tftj^m†w…¥”ºª°Ç¹½ÑÃÇ×ËÏÛÍÑÛÎÑÛÏÑÜÏÑÚÏÑÚÏÒÛÐÓÛÐÓÚÏÒÜÑÓÞÑÓàÓÕáÔÖâÕ×âÕ×ãÖ×ä×ÙæÙÚèÛÚéÛÜêÝÜëÞÝíßÝíàÝîàÝïßÜïàÝïàÝïàÝïàÝïâÞðäàñåàòæàóçáòæàóçáóçáôèâôèâôéãõëäöíå÷íå÷îåøïæøîæøïæøðçøðç÷ðç÷ñè÷ðçøñèøñè÷òé÷òéøóê÷óêøòéùòéùòéøóêøòé÷òé÷òéøóê÷òê÷òê÷óê÷òé÷òé÷óê÷òéøòéøñè÷òéùòèùòéøñèøñèøñèøñèøñèøñèøñè÷ðçøñèùòéùòéùòèùòèùñéùñéùòéøñèùòéùòéøñèøñéùòéùñèøñèøñèøñçøðçøñçøñçøñèøñèøñèùòéùòéùòéøóêøóêøóêøóêøóêøóêøóê÷òéøóê÷òéøñè÷îäõçßòáÙîÙÒéÒÌäÌÇÞÅÁ×¾½Ñ¹ºÌ¶·Ç±µ¾ª²´¤°ª®¥š­£š®£š®¥­¥®¦ž®§ °¨¡°©¢±©¢±ª£²©£³¨£²©¤³©¤³ª¤´‚sg\kuix–†’­ž¦½®µÇ»ÀÐÅÉÖÊÍ×ÌÏÙÎÐÚÏÑÚÏÒÙÏÒØÏÒÙÏÒÚÐÓÛÐÒÜÑÓßÒÔáÔÕáÔÖáÕÖâÖÖ䨨åÙÙçÙÚèÚÛêÜÛëÝÛìÝÛîßÜîßÜîßÛîßÜîßÜðáÞðáÞïãßðäßñåßòæàòæàóçáòæàòæàóçáôèâôéâõëãõìãöíä÷îåøïåøïå÷îåøïæùðçøïæ÷ðç÷ñèøñèøòéøòéøòéøòéøòéùóéùòéøòéùòéøòéøòéùòéøòéøòéøòêøóêøóêøòéøòéøòéùòéùòéùñéøòèøñèùòéùòéùòéùòéøñèøñçùòéøñèøñèøñéøñèøñèùòéøñèøñèøñèùòéùòéùñéùòéøñèøñèøñèùðèùñèøðçùñèùðçøðè÷ðç÷ðçøñèøñèùòéùòéùòéøóêøóêøóêùôëøóêøóê÷òé÷óêøòéøðç÷ìãôåÝïÜÕêÔÎäÌÇÝÃÁÔººÊ±µÃ¬²¿©±¸¤¯± ®©œ­£™¬£™­£š®£š®¤œ®¥®¦ž¯§ °¨¡°¨¡°¨¡±©¡±¨¡²¨¢³©¤³«¥´¬¦´‘ƒŽncqk`q†z†¡’›±¢ª½°·Ç»ÁÎÂÈÓÈËÕÊÍØÍÐÙÎÑØÎÑ×ÎÑ×ÎÑØÏÒÛÐÓÜÑÓÞÒÔàÓÕàÔÕáÕÕãÖÖåרåרæØÙèÚÚêÛÙëÜÚìÝÛíÝÚíÝÚîÞÛîÞÛîßÜðàÝðâÝñãÝðäÞñåßñåßòæàòæàòæßóçßòæàóçáôéâõéãõìãöíäöíäøïæøïæøïæ÷îåøïæùïæ÷ðç÷ñè÷ðçøñèøñèùòéùñéùñèùòéùòéøñèøñèøñèùòéøñèùòèøñèùòéùòéùòéùñèøòèøñèùñéùóçùòèùñéùñéùòéùòéùòéùòéøñèùòè÷ñçøñè÷ðèùòè÷ðçøñèøñèøòçøòç÷ñèùòèøòèøòèøñèøñèøñèøðçùðçùðçùðçùðçúñèùñèùñèùñè÷ðç÷ðçøñèøñèùòéöòéøóê÷òéøóê÷òé÷òé÷òéøóê÷òéøðæõëâóâÛíÙÒçÐË߯ÂÔº»É®´¹ ®³œ­¯›­©˜¬¤–«¡•«Ÿ–«¡˜¬¡™­£›­¤œ­¥®¥¯§ °¨¡°¨ °¦Ÿ°¦ ±¦ ±§¢²©¤³©£²«¥´¡“‚uƒoet{p€ƒ‘¢”Ÿ±£®½±¸ÆºÀËÀÅÒÇÊÖËÎØÍÐÖÍÐÖÍÐÖÍÐÙÎÑÚÏÒÜÑÓÞÓÕáÔÖâÕÖáÕÖãÖ×äÖ׿ØÙæÙÙçÚØéÛØéÚØëÛØìÛØìÛØíÜÙîÝÚîÞÛîàÚïáÚðâÜðâÜòäÞòåßñåßòæàñåßòæàôèâôèâôéãõêãöíäöíäöíä÷îåöíäöíä÷îå÷ïæøïæúðçøðçøðçùñçøñçøñçøñèøñèøñèùòéùòéùóéøòèøòèùòéøñèùòéùòèùòéùòéùñèùòéùóéøóèùòèùòèùòèùòéùñéùòéùñéøñèøñèùòèøñèøñèøñèøðèøñèøðç÷ñèøðçøðèøñè÷ðç÷ðçøñèøñè÷ðçùðçùðçøïæøïæøïæùðçùðçøðçøðçøñèùñèøðçøñèøñèøñèùòé÷òéøóê÷òéøóêøóêøóêøóê÷òéùðæõëáòâÚì×ÐäÌÈÚÁ¿Í³·¼¢¯¨’ª¢ªŸª¨’©”©Ÿ–«¡˜¬¢™¬¢š¬¤œ­¥®¦ž®¦ ®¦Ÿ®¤Ÿ¯¤ž¯¤ž¯¥Ÿ°¦ ±§£±¨£²ª¥´®¡¨™Š•‚u„{q€‚w†Œ€“ °¥¯º®·Ã¹¿ÌÁÇÓÉÌÖÌÏÕÍÐÖÍÐÕÌÏ×ÎÑÙÏÒÜÑÔßÓÕáÔÖâÕÖáÕÖãÖ×äÖ×åר娨çÚ×éÚØéÚØéÚØëÚ×ìÛØìÛØíÜÙíÝØîÞØïàÚïáÛðâÜòäÞòäÞóäÞòæßòæàóçáóéáôèâôéãõéâõëâöëãõìãöíäöíäöíäöíäøïæøïæøïæùïæøðæùðçùðæùðçøñçøñèùòéøñèøñèøñèùòèùòèøñèùòéùòéøòèùòéùòèùòéøòèøòèùóèùóçùòèùòèùòèùòèùòèùòèøòèøñçùòçøðçùñçùðçùñçùðçùðçøðçùïæøðç÷ðçøñè÷ðç÷ðç÷ðçøðçøïæøïæ÷îå÷îåøïæøïæùðçùïæùïæùðçøðç÷ñè÷ðçøñèøòéøñè÷òéøóê÷òéøóêøóê÷òé÷óêøòéøðçöëáñàØêÕÏáÊÆÖ¾½È°µ¶ž®¡©š‹§›¨›©œ’©”ªŸ–« —¬¢™­£š«£›¬£œ¬£­¤Ÿ®£ž®¢­ œ¬ ­¡ž®£Ÿ¯¥¡±§¢²©¤³½¯µ¬¤œ–Œ~Šu…zo…}”£­£¯»±¹Ç¼ÂÒÇÊÕÊÍÖÌÏÕÌÏÕÌÏ×ÎÑØÏÒÜÒÔÞÒÔáÔÖâÕ×âÕÖã××ä××åר娨çÙØçÚØèÙ×éÚ×ëÚ×ìÚ×íÜÙìÛØíÜÙíÝÙïßÙðáÛðâÜòäÞòäÞòäÞñåßòæàóçáôéâôèáôéâôéáõêâõêâõëãöëãöìäöíäöíä÷îåøïæøïæùðçùïçøïæøïåùðæúñçøñèøñèùòéùòéùòèùóèùòèùòéùòéøñéùòéùñéùñéøòèùóçùòèùòèùóèùñèùòèùóçùóçùóçùòèøòèøòæøðæùðæùðçùðçùðæøïæùðçùïæùðçùðç÷ïæ÷ðçøñè÷ñèøðçøïæøïæ÷îå÷îå÷îå÷îåøïæøïæøïæùðçøïæøðçùñè÷ðç÷ðçøñèøòé÷ñè÷òéøóê÷òé÷òéøóêøóê÷òéøðçõèàðÞ×èÓÎàÉÅÕ½½È±µ·¢°§–«ž©©ž‘©Ÿ“ª –ª –«¡˜¬¢™¬¢š¬¢™¬¡š«¡›¬ ›¬ œ¬Ÿ›«œš«š¬›­Ÿ®£Ÿ¯¤¡±¨£²É»¿¼®³¯¡§¡‘š}‰xk{uk{ˆ‘Ÿ—¤³©³Ã¸¾ÐÅÈÔÊÍÕÊÍÖÊÍÕËÎÕÌÏÙÏÒÜÑÓÝÒÔàÔÖâÔ×áÕÖãÖÖäÖ×åרæ×ÙæØØçÙ×èÚØéÚØéÛØêÛØìÜÙîÝÚîÝÚîÝÚïàÚïáÛðâÜñãÝòäÞñãÝóåßòæàóçáóèáôéâôèáôèâóèáôèáôéáõêâöìäõìãöíäöíä÷îå÷îåùðçùðçùðæùðæøïæùðæøðèøñèùòéøñèùòéùñéùñéøñèùòéùóèøòèùòèøòèùòéøñèùòèùñéùòèùòèùñéøòçùòèùóçùòèùñçùðçùñèøïæùðçùðçøïæøïæøïæøïæ÷îåøïæøðçøðçøñèøðç÷ïæ÷îåöíäöíäöíä÷îå÷îåöíä÷îå÷îå÷îåùðçùïæøïæøñèùñèøñçùñèøòé÷óêøóêøóêøóêøóê÷òéøñç÷íäôæßîÛÔçÑÌÞÇÄÔ½½È±¶¹¤±¬™­£”«¡”«¡•«¢–«¢—«£˜¬¢š«¢š«¡š« ™ªž˜©˜©œ˜ª›˜©˜–©˜–¨˜˜ªš˜«›™¬ž®¢Ÿ¯¥¢±ÑÄÆÉ»¾¾°´²¤ª¡™‰z†}p~…|Š–Ž›­£­¿´»ÍÂÅÕÊÍÖËÎÕÊÍÖËÎÕÌÏÙÎÑÛÐÒÜÑÓßÓÕáÔÖáÕÖâÖÕãÖ×äÖ×åרåרæØ×çÙ×èÚØêÛÙëÜÚëÝÚìÜÚíÜÙîÞÛïàÜðáÜïáÛðâÜðâÜñãÝòåßñåßòæàòæàóçáóçáóçáóçáóçáóçáõéâõêâõìãõìãöíä÷îå÷îåùðæùðæùðæùðåøïæùðæùðçøñèøñèùòèùòéùòéøñèùòèøòèøñéùòéøñèùòèøòèùòèùóçùòèùóèùòèùòèùñèøòèøñèøñçùðèøðçøïæøïæøïæøïæ÷îå÷îå÷îå÷îå÷îåøîåøïæøîåøïæøïæ÷îåöíäöíäõíãöíäöíåöîä÷íåöíä÷îåøïæøïæøïæùðçøðçøðç÷ñè÷ñè÷ñè÷òéøóêøóêøòéøóêøñè÷ïåõëâòâÛìØÒåÏÊÜÇÄÒ½½È²¸º§³®ž¯§™­¦™­¥™­¥™­¥š­¤š¬¤š¬¢š¬¢šªŸ˜ª—©š–©˜•¨•”§’’¦‘¤’“§”–¨——ªšš¬ž­£ °ÙÌÎÓÆÈ˽ÀÀ²µ²£¨Ÿ—‹Ž‚“Š˜¦¨º®µÉ¾ÁÒÇÊÖËÎÖÊÍÖËÎÕÌÏ×ÎÑÚÏÒÛÐÓÜÑÓßÓÕàÓÖáÔÖâÖÖäÖ×ä××æØØåØ×æÙ×èÚØèÛÙêÜÚìÝÛìÝÛìÝÚíÞÛïàÜïáÜðâÜðâÜðâÜðãÝñäÞñåßòæàóçáòæàóçáòæàòæàòæàóçáôèâõéãõëâöìäöíäöíä÷îåùðçùðçùðæùðæùðæøïæùðçøðçøñèùóèùòéøòèùòéøóèøòèùñéøñèùòéøòèùóèùñéùòèùóèùòéùóèùòèøñéøñèøñçøñèùðçùðçøïæøïæøïæ÷îåøïæöíä÷îåöíä÷íå÷îå÷îæ÷íæ÷íå÷íåöíäöíäõíäõìäöìåöìåöíäöíå÷îå÷îå÷îåøïæøïæøïæùðçøðçøðçøñèøòé÷òéøóê÷òéøóê÷òé÷ðæöìâóæÝðÞ×éÕÏáÍÈÙÄÂл½Æ²¸º©µ°¡±«ž°ªž¯©¯©ž®¨­§­¦œ¬£›¬¡™«—ªš•¨•“¦’‘¥Ž£ˆ‹¢‡Œ¡ˆŽ£Œ‘¥“§“•©™š«Ÿž®ÜÑÓÚÍÏÔÇÉ˽ÀÀ±´±¡¥£‘™š‹–•‹—ž–¢±¨±Ã¸½ÏÄÇÕÊÍÔËÎÔËÎÕÌÏÖÍÐØÏÒÙÏÒÜÑÔÝÒÓßÒÔàÓÔáÕÕãÖÖä××åרå×ÙæØØèÚÚèÛÙéÜÚêÝÛìÞÜíÞÛíÞÛïàÝïáÝðâÝðâÜñãÝðâÜñäÞðåßñåßñåßóçáóçáòæàóçáòæàòæàôèâôèâôèãõêâöìäöíä÷îåùðçøïæùðçùðçøïæùðçùñèùñçøòèùòéùòèøñèùòéùòéùóéøòèøòèùñéøñèùòéùñéùòéùòéùóçùòèùñéøòè÷ðçøñèùðç÷îåøïæ÷îå÷îå÷îå÷îå÷îåõìäöìäöìäöìåöìåöìåöìåöìåöìåöìåöìåõìäöìãöìåöëåöìåöëäöìãõìã÷îå÷îåöíä÷îå÷îåøïæùïæ÷ñèøñè÷òé÷òéøóêøòéøñçöíãõèàñáÚìÙÒæÒÌÝÉÆÕÁÀÌ·ºÁ°·¸©´²£±¯¢±¯¢±¬¡°«¡¯«¡®©ž®§­¤›¬ ™«œ–©—”§‘¥‹¢„‰ ~†|†ž}‡ž€Š …¢Œ¥’”¨šš«ÜÑÓÜÐÒÙÍÏÒÅÇÉ»½¾­±°¡¦”šžšœ’ž«£®½³»ÉÀÆÒÇÊÔÊÍÔËÎÔËÎÕÍÐ×ÎÑ×ÎÑÙÏÒÜÑÓÝÑÓßÓÕáÔÖâÖÖãÕÖäר娨娨çÙÚèÚÛéÜÛêÝÛëÝÛìÞÜíßÝîàÝïáÞðáÝðãÜðâÜñâÜðâÜðäÞðäÞñåßñåßòæàòæàòæàóçáòæàôèâôèâõéâôêäõëäöíä÷îåøïæùðçøïæùðçùðçøïæùðçùñçøñèùñèùñéùñéøòèùòéøñèøñèùñéùñéùòéùòéùñéùòéùòèùòèøóèùòéùñèøðçøðçøîæ÷îåöíä÷íåöíäöíäõìäõìäõëäõêãôêãôêãõëäôêãôêãôêãôêãôéãõëäõëäôëãõëãõêãõëäõëäõêãöëãõëãöìã÷ìäöíä÷îå÷îåøïæøïæøñèùñèöñèöñè÷òèøîåõëáòäÜîÜÕèÕÎàÍÈØÄÂÏ»½Ä³¸¼¬¶µ¨´²¥³²¥³°¤²¯¤±®¤±­£¯«¡¯¨ž®¥œ­Ÿ™ª™•¨“’¥ŒŽ£‚‡Ÿzƒœs€šp~˜q€štƒ›{†ƒ‹¡‹¥•–©ÝÒÔÞÒÔÜÐÑØËÍÑÃÅÈ·¹¼¨ª°œ §—¡”ž¥žª¶¯¸Ä»ÂÎÄÉÒÉÌÓÉÎÔÊÏÕËÐÖÍÐ×ÎÑ×ÎÒÙÏÒÜÑÓÝÒÔàÓÕáÕÕâÖÖãÖ×äØ×娨æÙÚèÚÛéÜÛêÝÛêÝÛëÞÜìßÜîàÝîáÞïâÞðâÝðãÝðãÝñãÝñäÞñåßñåßòæàòæàóçáòçáóçáóçáôèâõéãôèâôéãõëäöíå÷îåøïæøïæùðçøïæøïçøðæùðèùñèøòèùòéøòèøòèùòèøñéùòéùòéøñèùòéùòéùñéùòéùòèùòéùñéùòèøòçøðèùðæøïæ÷îåöíäöíäöëäõëåõëãõêäôéãôéâôêãôêãôêãóéâôéâôèâóéâôéãôéãôêãõëäõêäõéãõêãõéãõéãõéãôéãõêâõëâöëã÷ìäöìä÷îåøïæøðç÷ñèøñè÷òé÷òéøñç÷íãôèßñàØëØÒäÐËÜÇÄÒ¾¾Æµ¹¼­¶·©µ´¨´²¦²²¥³²¥²°¥²°¤±®¤±¬¢¯ªŸ¯¥­Ÿ™ª™•§’‘¥‰Œ¡}†s€šk|—ey”ez•h{–q€™|†‡£’•¨ÞÓÕÞÒÔßÑÔÜÐÐ×ÊÊÐÀÁƳ³¹¤¥°œŸ¨™¡¤š¥¯§²½µ½ÉÀÆÐÇÌÒÈÎÓÉÎÔÊÏÕËÑÖÌÑÖÍÑ×ÎÒÙÏÓÜÒÔÝÒÔßÓÕáÕÕâÖ×ãÖ×䨨æÚÚçÚÛèÛÛéÜÚêÝÛëÞÜìßÝíàÞîâßîâÞðãàðãÞðäÞñãÝñäÞñåßñåßóçáòæàóçáóçáóçáóèâôèâôèâõéãõêãõëåöíåöíäøïæøïæùðçøïæùðæùðæùðçøñèøòèùòèùòéùòéøñèùòèùòèùòéùòéùñéùñéùñéùòéùóèøòéùòèùòèøñèùñçùïçøïæ÷îåõíäöìäöëãôêãôêãôéãôèâôèâôèâóèãóèãóçãóçãóçáóçáóçáôéâôêãóêãôéãôèâôèâôèâôèâôèâóèáõéãôéáõéâöëã÷ìäöíä÷îåùðç÷ðçøðçøòé÷ñèøðçöìâóåÝïÝÖéÔÏáÌÈ×ÃÁ˹»½®¶·©´µ©µ´¨´³§³³§´²§³±¥±°¥±¯¥²­£°«¡¯¦ž­ ›«—•§£…Š w‚›n}—ex”]t[sŽ`v’i{–wƒ…‹¢“¨àÕ×àÔÖàÓÕßÓÓÜÏÏÖÆÇÍ»ºÂ­¬·¡£°ž¢¨œ¥ª¢­¸°ºÃ»ÂÍÄÊÐÆÌÑÇÍÒÈÎÓÉÏÔÊÐÔËÐÖÍÒØÏÒÙÐÓÝÒÔÞÒÔßÓÕáÕ×ãÖØä×ÙåÙÚçÛÛèÛÜéÜÛêÝÛëÞÜìßÝíàÞîâßïãßðäßðäßñåßòæàñåßñåßòæàóçáóçáôçáôèâóèâôéâõèâõéãôêäõëäöìå÷íå÷îå÷îåøïæøïæùðçùñèúñèùðçøñèùòéøñèúóêúòêùòéùòéøòéùòéùñéùòéùóéùòéùòèøòèùòèøðçùðçùðçøïç÷ïæ÷îæöíåõìäôêäôêäôêäóéãóéâóçáòçãóçãóçãòæâñåáñåàñåáñåáòæáòçáôéâôéâóéâóèâôçáòæàòæàóçáôçâóçáóéàôéáõêâöëã÷ìä÷íäøïæøðç÷ðçøðç÷ñçøïåöëáòäÛíÚÓåÑÌÝÈÅÒ¿¾Ä³¹¹ªµ¶©µµ©µµ©µ´¨´´¨´³§³³§³°¦²°¦²¯¥²«¢°© ¯£œ¬š—©Ž£‚‡Ÿt€›iy•au‘YqŽUpŒ[rŽfy”t€›‚Š¡’¦áØÙàÕ×àÔÖàÓÔÞÑÒÚËÌÒÂÃȵ´¼§¦´ ¢®Ÿ¦ª «´¬·¾·ÀÉÁÇÐÆÌÑÇÍÑÈÎÒÈÎÒÉÏÑÊÏÔÌÒÖÎÒÙÐÒÚÑÔÜÒÔÞÓÕßÔÖâÖØä×ÙæÚÙæÚÚèÛÜéÜÚêÝÛëÞÜìßÝîáßïãßïãßðäàñåàñåßòæàòæàòæàóçáóèáôèâóèâóéãôêãôêãôéãõêãõêãõëäöìå÷íåöíäøïæøïæùïæøðçùñèùñè÷ðçùòéøòèøòèùóéùòéùòéøñèùòéùòèøòèùñéùñéùñéøòèùòèøñèùñçøðçùðçøïæøîæ÷íåõëäôêãôêãôéäóèåóèäòçãóçãòæâñæâòæáñåáñåáðãàðãßñãßñäáòæàóçáóçáôèáóçáóçáñåßòæàòæàóçáôèâôèáôéáöëãöëãöìä÷íäøïæøðç÷ïæøñè÷ðç÷ïåõêàóâÛíÙÒåÑËÛÇÄн½Â²¸¸ª¶·ªµ¶ª¶µ©µµ©µ´¨´´¨´³§´³§³°¦³®¤±­¤±ª¢°¤ž­œ—©¤ƒ‡ u€›ky•bu’YpŽWn\qŽhx•t›‚ˆ¡Ž‘¥àØÚáÖØáÕ×àÓÕßÒÒÜÍÎÕÅÆÌººÁ­­¶¢£± ¥¬Ÿ¨¯¦°»³¼Å¾ÃÏÅÉÑÈÌÒÈÍÒÈÏÒÉÏÓÊÏÔÌÑÖÍÓÙÐÓÚÑÔÜÑÔÞÔÖàÕ×áÖØã×ÙæÙÙæÚÚçÚÛéÛÛêÝÛëÞÜíàÞïâßïäàðäàðäàñåßòæàóçáóçáóçáóèâóéâôéâôêãôêãôêãôêãõëäõëäõëäöìåöíåöíä÷îå÷ïåøïæùïæùñèùðçøðçøñèùòéùòéøòèøòèøòèùóéùòéùòéùòéøòèùñéùñéùòèùñèøòè÷ñçùðæùðçøïæøïå÷íæöìåõëäôêãóèäóèäóèäòçãòçãòçãñåãñäáðãáðäàïãàïãßðâßðáßðâßñåáòæáóçáòæáòæàòæàòæàòæàóçáòæàóçáóçáôéáõêâöìãöíäöíäøïæùðçøðç÷ðçøðæ÷îäõêàòâÚíÙÒäÑËÝÈÅÒ¾¾Ã²¸¹«µ¸ªµ¶ªµµ©µ¶ª¶µ©µ´¨´´¨´³§³²§³¯¥²®¤±ª¡°¤ž®›—ª¤„ˆ¡zq}™hw•`s`rdt’mz–yœ„ˆ¡¦á×ÙáÖØàÔÖàÓÕÞÑÒÜÎÏ×ÈÉÐÀ¿Ç³³º¦¦³Ÿ£¬Ÿ¥ª «µ­·Á¹ÀÌÂÇÒÈËÒÉÌÒÉÍÓÉÍÔËÑÖÌÑ×ÍÒÙÐÓÚÐÓÝÒÕÞÓÖàÕ×áÖØâ×ÙåÙÙåÙÙæÚÚéÛÛêÝÛìßÝîáßïâàðäàñåáòæàóçáóçáóéâôèâôèâõéâõëãõëäõìäöìåöìåöìåöìå÷íæ÷íæ÷îæ÷îäöíäöîäøîæùðçùðç÷ñè÷ñè÷ñèøñèøñèøñèúòéøóêùóêùòéùòéùòéøòèùòéùòéùòéøñèøòç÷ñèøðçøïæøïæøïæöìåöìåõëäôêãòèäòçãòçãñæâñåáðäáðãáðãáïãàîâßîáàîáßîáÞîßÝïàÝïáÝïâßñåáñåáðäàðäßðäÞñåßñåßòæàóæáóçáôèáôéáõêâ÷ìäöíä÷îå÷îå÷îåøïæ÷ðæøïå÷îäõêàòãÜíÚÔçÓÍÞÊÅÕÁÀǶº½®¶¹ª¶¸«µ·«·µ©µ´¨´µ©µ³§³³§³²§²¯¥²®¤±ª¡°¤­›—ª“’¦Š£‡Ÿz‚r}™kx•kx”oz—w›€…žˆ‹¢‘’¦á×ÙáÖØáÕ×àÓÕÞÒÑÜÏÏØÊËÓÃÄ˺¹À¬­µ¢¤­£©§®¥°½´»È¿ÄÑÇÊÕÊÍÔÊÍÔËÎÖÍÐ×ÎÑØÏÒÙÑÔÚÑÔÜÓÖÞÔ×àÕ×áÖØã×ÙåÙÚåÙÙçÚÚéÛÛêÝÛëÞÜïâàñåáñæâòæáóçáóèâôêãôêãõëãõëãöëãõëäöíäöíå÷íæ÷íæ÷íåöíå÷íå÷îæøïæ÷îåöíä÷îåøïæøïæùðç÷ðçøñèùòéùòéùòéùòéùòéúóéùòéùóêùóéøòèùòéùñéøñéùòéùòçøñèøðçùðç÷îå÷îå÷îæ÷ìåöìåõëåôéäóèäòçãñæâñåâðãáïâàïãáïâàïâàîáßîáßîàÞîßÝîßÝîßÝîßÝïáÝïâÞïãßïãßðãßðäàñåâñæßòæàòæàóæáóèáôéáõëãöìäöîå÷îåøïæ÷îæøïåøðçøïæ÷îäöëáóåÝïÜÖèÕÏâÎÉÚÅÃм½Æµ¹¾°·º¬¶¹«¶·ªµ¶©µµ©´´¨´³§³²¦³¯¦³­£°ª ¯¤®Ÿš¬™•©“‘¦Œ¤…ˆ¡~ƒx€œyœ|‚ƒ† ‰‹£¥–•©á×ÙáÖØàÕ×àÓÕÝÑÑÜÎÏÙËÌÕÆÇÏ¿¿Å²³¹¦§¯Ÿ£ªœ¥ªŸª·®¶Å¼ÁÐÅÈÔÉÌÖËÎÖËÎÖÍÐØÎÑÚÐÓÛÑÔÜÒÕÝÓÖßÔ×áÖ×âÖØã×ÙæÙÚæÚÚèÚÚéÛÜêÝÛìßÝîâßñåáòæáòçáôêâôëãôëãõìãöíäöíäöíäöíä÷îå÷îåøîç÷îæ÷îåøîæ÷îåøîæ÷ïæ÷îå÷îåøïæùðçøðç÷ñçøñèøñèùñéùòèùóéøòéøòéùòéùòéùòéøòèùñéùñéùòèùòèøñèøñèùðçùðçùðç÷îå÷îå÷íåöíæöìåõêåóèäòçãòæâñäâðãáîáßîáßîààîààîáßîáßíàÞíàÞíßÝíÞÜíÞÜîßÝîßÝîàÝïáÞïâÞðáÞðâßñåàòåßòæàòæßóçáóèàõêâõëãöíä÷îä÷îå÷îåøïæ÷îåùðçøïæ÷ïåöëáôçÞñß×ëØÑåÑËÞÊÆ×ÃÁѽ¾É·ºÃ³¸¿¯·»¬¶¹ªµ·©µ¶¨´´¨³²¦³°¤²®£±« °¨ž®£œ­Ÿš¬š—ª”“§Ž¥‰Š¢„‡ …‡¡ˆ‰¢¤‘‘§–”©›˜¬â×ÙáÖØàÕ×àÓÕÞÑÑÜÎÏÛÍÎ×ÉÊÒÂÃʺ»¿­®³¢¦«¦§§±¨²À¶½ÍÁÅÓÈËÕÊÍÖËÎØÍÏÙÎÑÛÐÓÞÓÕÝÒÔÞÓÕßÔÖáÖØãÖØä×ÙæÚÚçÛÛéÛÜêÝÛëÞÜîßÝîâÞñåáòæàóèáôêãõëäöíå÷îå÷îå÷îåöíä÷îåøïæ÷îæøïå÷îåøïæ÷îå÷îå÷îå÷îå÷îå÷îåøïæ÷ðçøñèùòéùòéùòéøñè÷òéúóêúóêùóêùòéúóêúóéøñéùñéùòéùòèøñçøðèùñèùïæøïæ÷îåøïå÷îå÷íæõëäõëäôêãôéåòæâñåáñäâîáßíàÞìàßìÞßìßàìßßíÞßìÞÝìÞÜíßÝìÝÛìÝÛíÞÜíÞÜíÞÜîßÝîßÞïàÝðâßïãÞñåÞñåßñåßóçáôèâôêâõêâ÷íäöíå÷îä÷íäøîä÷ïå÷îäøïåøïå÷íãôéßòáÚíÚÓèÕÏäÏÊÞÊÅÙÄÃÔÀ¿Ï¼½Ê¸»Æ´¹Á±·¾­¶»­·º«¶·©µ´¨´±¤²­£±«¡±§ž®£® š­œ˜«—“¨“¦Ž¥¦“¦”’¨˜–ª›˜¬Ÿ›­áÖÙàÕ×àÔÖßÓÔÞÑÒÜÎÏÛÍÎÙËÌÕÆÇοÀųµ¸§ª­Ÿ¦§¨ª¡¬¹¯¶È¼ÁÐÅÈÕÊÍ×ÌÎØÍÏÙÎÑÛÐÒÝÒÔÞÓÕÞÓÕàÕ×áÖØäרæÚÙçÛÛéÛÜêÝÜëÞÜîÞÜïáÝðäàñåßòçàôèâõêãöìäøîæ÷îå÷îå÷îå÷îå÷îåøïæøïæøïæøïæøïæøïæøïæøïæøïæøïæøïæøðçøñèùòéùñèùòéøòéùòéùóêùòéùòéùóéøñèùòèùòèùñèùñéùòéøòèøñèùñèùïæùðçøïæøïæ÷îåöíåöìåõëäôêãôéäóèäñæâñåáðãáíàÞìßÞìÞßëÝÞëÝÞëÝÞëÝÝëÝÞëÝÜìÝÛìÝÛìÝÛìÝÛìÝÛìÝÛíÞÜíÞÜïàÝïàÝðáÞñâÞòäÞñåßóçáôéâõêâõêâöìäöíä÷íä÷îåöíä÷îäøïåùðæøïæ÷îäõêàòåÜðÞ×ëØÒèÓÏãÏÊßËÇÛÆÄØÃÂÔÀ¿Ð¼½Ìº¼É·»Ç¶ºÂ²¸¾¯·»¬¶·©µ²¦²®£±« ±§Ÿ¯¥®¢š­Ÿ™«—ªš•ªš•ª›—«—«ž™­ ›®¢ž¯áÖÙáÖØàÔÖßÒÔÞÑÒÜÎÏÜÎÏÛÍÎØÊËÓÄÅʺ»½­¯±£©¨¨¦©²¨²Ã·½ÍÃÅÔÉÌ×ÌÎØÍÏÛÐÒÝÑÓßÓÕßÓÕàÔÖáÔÖâÕ×䨨æÙÙèÛÚêÜÛëÝÛíßÝîáÞïâÞðäßñåßòçàôèáõëãöìä÷îåøïæøîåøîåøïæ÷îåøïæøïæ÷îå÷îåøïæùðçùðçùðçùïæøðçøðçøñèùòéùòéøñèúóêùóéøòéùòéùòéùòéøòéùòéùòèøòéùñéùòèøòèùòèøñçùðçøðçùïçøïæ÷îåöíäöíåõëäöìåõëäôéäóèäñæâñåáðãáíàÞìÞßëÝÞëÞßêÝÞêÝÞêÜÝêÜÝëÜÜëÝÛëÜÚëÜÚìÝÛìÝÛìÝÛìÝÛíÞÜîßÜïàÝðáÞðâßñäÞòåßóçáôèâõêâõëâöìä÷íä÷íäøíä÷îä÷îäøïåøïæøïæøïåöìâôèÞòâÛïÝ×ìØÓéÔÏåÑÌâÎÉßÊÆÛÇÅÙÄÂÖÂÁÔÀÀϼ¾Ê¸»Æµ¹Á±¸¼­¶¶©µ±¥³­¢²«¡±©Ÿ°§ž¯¦ž¯¥¯£­£›®£œ®¢œ®¢œ®¤ž¯¥Ÿ°áÖÙáÖØàÕ×àÓÕÞÑÒÝÏÐÝÏÐÜÍÎÛÍÎ×ÉÊÏÀÁô·¶§¬¬ ©¤›¨©¡¬¼±¸Ê¿ÂÓÈÊ×ÌÎÚÏÑÜÐÒÞÑÓßÓÕàÓÕàÓÔàÔÖâÖÖåרæÙÙéÜÚëÝÛíÞÜîàÝïâÞðãßðäÞñåßóæàóèàõêâöìãöíäøïæøïåøïä÷îå÷îæ÷îå÷îå÷îåøïæùðçùðçøïæøïæùðç÷ðç÷ðçøñèøñèùñèøòéúóêúóêùóêùóéùóêùòéøñèùòéøñèùòéùñèùòèùñèøòèøñçùðçøïçøïåøïæ÷îåöíäõìäöìåõëäõêäôéäôéåñæâñåáðãáíàÞìÞßìÞßêÞÞéÞÝêÞÝëÝÞêÜÝéÜÛêÜÛëÛÙëÜÚëÜÚëÜÚëÜÚëÜÛìÝÛíÞÛïàÝïàÝðáÞñãÞòåßóçáôèâõéáõêâöëãöìã÷ìä÷îã÷îäöíäøïå÷ðæøïæ÷îåöìâõêàôçßñâÛðÞ×ìÙÔéÖÑçÓÎäÐËáÍÈßÌÈÞËÈÛÇÆÖÃÂѾ¿Ë¹½Æ¶ºÀ°¹¹«·³¨µ®¤²­¢²«¡±¬¢²¬¢²«¢²«¡±ª¡°¨ °§Ÿ°¦Ÿ°§ ±¦ ±àÖÙáÕ×áÕ×àÓÔßÑÒÞÐÑÝÏÐÞÐÐÝÏÐÛÌÍÔÆÇÉ»¾½®²°¤¬§©§ž«´«µÅº¿ÑÅÈ×ÌÎÚÏÑÝÐÒÝÑÒßÑÓàÓÓàÔÔâÔÕäÖ×åרçÙØêÜÚìÝÛíÞÛïàÝðáÝðâÝñãÝóåßóæßóèàõêâöëãöíäøïå÷îåøïåùðæøïåøïæøïæùðçùðçøïæùðçùðçùñè÷ñèùòéùòéøòéùòéùòéúóêùòéøñèøñèùòéøñèùòèøòèùòéøòèùòèùóèùòçøòçøñæùðçøðæùðå÷îæ÷îåöíäõìãõëãôêãõêãôêãóéäòçãòçãðäáïâàíàßìÞßëÝÞëÝÝéÝÝêÜÝéÛÜéÛÜéÛÛéÜÙéÛÙêÛÙéÚØêÛÙëÜÚëÜÚëÜÚíÞÛîßÜïàÝðáÞñâßñåßòæàóçáôéâõêâõêâõêâöëãöìä÷íäöíä÷îåøîæ÷îæ÷îä÷ìãöëãôêáóçßñãÜðßÙîÛÖëØÓéÕÐæÓÎåÑÎâÐÌßÌÉÛÇÅÕÂÁν¾É¹¼Â³ºº­¸µ©¶¯¥²¯¤²¯¤³®¤²®¥³®¥³­¤²¬£²ª¢²©¢±©¡²ª¢³©£³ßÕØáÖØáÕ×áÔÖàÒÓßÑÒßÑÒßÑÒÞÐÑÜÏÐØËÌÏÂÅÄ·»·«²«¡­ª¢®°¨³Á¶»ÎÂÅÖÌÎÜÐÓÞÑÓÞÑÓßÑÓàÒÓáÓÔãÔÖäÖ×åØ×èÚØëÜÚìÜÚíÞÛîßÜïàÜðâÜñãÝòäÞóçßóèàõêâöëã÷îåøïæøïåøïåùïåøðæøðçùðçùðçøðçùðçøñèøðçøñèøòéùñèøòéøóêùòéùòéùóêùòéøòéùòéùóéùòèùòéøòéùòèøòèùòèùòèùòèøñçøðçùðçùðçøïæøîæ÷îåõìäõëãõëäôêãôéâóèâòçãòçãñæâðäáîáßìßßìÞßëÝÞëÝÞéÜÝêÛÜêÜÝéÛÜéÛÛêÛÙêÚØéÚØéÚØêÛÙëÜÚêÛÙëÜÚìÝÛíÞÛïàÝðáÞñâßñãßñåßòæàóçáôéáõêáõêâõêâöìä÷íä÷íå÷îå÷îå÷íä÷ìäöìâöëãõêâôéáóçßòäÝðáÚîÝ×ìÚÕëØÓéÖÓçÔÐãÐÍÞËÈÙÆÅÒÀÁ˺½Ã´»¼®¸¶ªµ²§´±§´°¦³±§´°§´°§´¯¥³­¤³­£³¬£³«¤³«¤³ª¤³ÞÕØàÕ×áÕ×áÔÕâÓÕáÓÔßÑÒßÑÒßÑÒÞÑÒÛÏÑÕÈËË¿ÂÀ´¹±¨³­¤°°§²½±¸Ë¾ÁÕÈÊÛÐÑßÒÔÞÒÓàÒÓàÒÓáÓÔâÕÖåØÖçÙ×éÚØëÜÚëÜÙìÝÚîßÛïàÛðâÜñãÝóåßòæßóèàõêâöëã÷íäøïåùðæùðæùðçùðæùðçùðèùðèøðç÷ðçøñèøñèøòéùñèøòéúóêùóêùòéøñèùòéùòéùòéùòéùòéøñèøñéøñéùóéøòéùñéøñèøñèùòé÷ñèùðçùðæøïæ÷îåöíäõëãöêäõéãõéãóèáòæâòæâñæâðåáïãàíßßìÞàëÝÞëÝÞêÜÝêÜÝéÛÜéÛÜéÛÚêÛÙéÚØéÚØéÚØéÚ×éÚØêÛÙêÛÙëÜÚìÝÛíÞÛîßÜðáÞðáÞñâÞñãàñåßòæàóèâôéáôèáõéáöëãöíäöíäöíäöìäöìãöìãöëãõêâõêâôéáóèàòçßñåÝðâÜïàÚîÞØíÛ×ê×ÓæÓÐáÎËÜÈÇÔÂÂÌ»¾Å¶»¾¯¹·«¶³¨´²§´±§µ°§´±§´°¦³¯¥³®¥´®¤´®¤³®¦µ­¦³«¤³ÝÒÕÞÓÕàÔÕàÓÓáÔÕàÔÔàÓÔàÓÓßÓÓàÓÔÞÑÓÙÍÏÑÆÈÆ»Á¹®·°¦±±¦±¹¬³Çº¼ÑÄÆÚÎÎßÓÓáÔÔáÓÔâÔÕâÔÕä×ÕåØÖçÙ×éÚØëÛÙëÜÚìÝÚïàÝðáÞðâÞñãÝòåßóçàóèàõêâ÷ìä÷îåøïæùðæùðç÷òæ÷ðè÷ñè÷òèùòèùòéùòéøòéùòéùòèøóêøóéùòêùóêùóêùóêùóêúóêúóêúòêùòéøòèùóéùòéùòéùòèùòéøñéøòèøòçùðçùðçøïåøîæöíäöëãõêâôéâôèâóçáòæáòæâñåáðäàïâáîáàíßßëÝÞëÝÞêÜÝéÛÜèÛÛèÚÛèÚØéÚØéÚØèÙ×èÙØèÙ×èÙÙèÙØéÙØéÚØêÛÙìÝÛíÞÜîßÜïáÞïàÞïâÞðäàñåáòæâòæáóèâóçáôéâõìãõìäõìäõìãõëâõëãõéâôéáôéáôèáóèàòçßñæßñäÞðäÞðãÝðãÝîàÚìÙÖèÕÑãÐÍÞËÉÕÄÃνÀÆ·¼½®·¶©µ´¨´²§´±§´±§´±§´±§´°§´°§´°¦´±§´°§´°§´¬¤±ÛÑÔÜÑÔÞÑÔßÒÔßÓÓßÓÓßÓÔßÓÔàÓÕàÓÕßÒÔÛÐÒÕÊÌÌÁÆÁ¶½¶«µ´§²¹ª²Â³¶ÎÀÁ×ÊËßÒÒâÔÕâÕÕãÕÖäÖÖåØÖçÙ×éÚØêÛÙëÜÚìÝÚíÞÛïàÝïàÝðáÞñãÞñåßòæàóèàõêâöëãöíäøïæùðæùðç÷ñçøñèøñèùñéøñéùòèùòéùóêøóêøóé÷òêùóéùóê÷óêøóêùóêùóêùòéùóêùòéøñèùòéøñèùòéùòéùòéùòèøñèøòèøñçùñæøïæøïæ÷îå÷ìäöëãõéãóçáóçáóçâóçâñåáðäàðãàïâàíàÞìÞÞëÝÞêÝÝêÜÜèÛÛèÚÚèÚØèÙ×çØÖçØÖçØÖèÙ×çÙÙçרèØÙèØÙéÚÙêÛÙìÝÛíÞÜíÞÜîàÞîáßïãàñäáñåâñæâòçãòèãóèâôêãôëäôëãôëäôëãôëâõéãôéâôéáóèáóçáòæàòæàñåßðäÝðãÝðãÝïãÝîàÛëÚ×éÖÓäÑÎÞËÊÖÄÅνÀÄ´º¹¬¶µ©´³§´²¨´±§´±§´±§´±§´±§´±§´³¨µ³©µ³¨´²¨³¯¦²ØÏÒÚÏÒÛÐÒÜÐÒÝÐÒÞÑÒÞÑÓÞÑÓßÒÔÞÓÕÞÒÔÜÑÓÙÎÑÑÇÊǽ¼±º¹¬´¸ª±½®³Êº¼ÔÆÇÝÐÑãÕÖäÖ×å××çÙ×èÙ×èÙ×êÛÙëÜÚìÝÛìÝÚíÞÛîßÜïàÝðâßñãÞñåßóçáóèáõêâöìã÷íåøïæùðæøðçøñèùòèùòéùòéøòéùòéøòéøóê÷óé÷óêøóê÷óê÷óé÷óêøóêùóêøóêúóêøòéùòéùòéùóéøòèùñéùòèùòéùòèøñéøòèøñèøñçøïæ÷ïå÷íåöìäõëãõéãóçáóçáòæáòæâñåáðäàïâàîáßíàßìÞßëÝÝêÝÜêÝÛéÜÙéÚØéÚØçØÖçØÖæ×Õæ×Õç×׿רåרæØÙæ×ÙçÙÙêÛÙìÝÛíÞÜíÞÜîàÞîáßðãáñåãòæãòçäòèäóèäôéåõêåõëäõëãõëäôêãóéãòèáòçàòåßñåÞñäÞñäÞðäÞñäÞðâÝïàÝîßÜíßÚìÛØéØÕæÔÑáÐÍÛÉÈÓÂÄË»¾À±¹¸ª¶µ©µ²¨µ²§µ²¨µ²¨µ±§´±§´±§µ´©¶¶«µ¶«µ·¬µ·«µ¶«³ØÍÐØÍÐÙÎÐÛÎÐÛÎÐÛÎÐÜÏÑÝÑÓÞÑÓÞÒÔÝÒÔÞÓÕÛÐÓÖËÎÌÃÇÁ¶½»¯·º«²»«±Å´·ÑÂÃÛÍÎãÕÖæØÙçÙÙéÛÙêÛÙêÛÙëÜÚìÝÛíÞÜìÝÛíÞÛîßÜðáÞïãßðåàòæàòæàóèáõêâöëãöíäøïæùðçøðçøñèùñéùòéøòèùòéùóêøóêøóêøóê÷òéøóê÷òéøóêøóê÷óê÷óêøóêøòéúóêùóéøóéùòéùóéùòèùòéùòèùóçùòéøñèùñèùïæøïæøîå÷îåöëãöëãõéãóçáóçáòæáðäàðäàïâßîáßìßÝìßÝëÞÜëÞÜêÝÛëÝÛëÛÙéÚØèÙ×çØÖæÖÔäÕÓäÖÔåÔÖåÖ×ãÕÖäÖ׿ØÙçÙÚèÚÛêÜÚìÝÛíÞÜíàÞïâàðäâðåãñçäñèåòéæóéåóêæóéåôéåóéãóèãòçáñåßðâÝïàÚîßÙïÞØïÞØîßÙîßÚíÞÚìÜÙìÛØêÙÖéØÕçÖÓåÓÐáÏÌÜÊÈÖÄÄпÁǸ¼¿±¸·ª¶µ©µ³¨µ±§´±§´²¨µ±¨µ²§µ´©µ·¬¶¶«µº®¶¼¯·À²¸Â´·×ÍÏØÍÏ×ÌÏØÍÏÚÍÏÚÍÏÚÎÐÛÏÑÜÐÒÜÑÓÝÒÔÞÓÕÝÒÕÚÏÒÒÈÌǽþ³»»­µ¹ª±¿¯²Í½¾ÙÊËáÓÔçÙÚèÚÚèÛÙëÜÚëÜÚìÝÛîÞÜîßÜîßÜïàÝïàÝïáÞïãßðäáóçàóçáôèâõêäöìã÷îåøïæøðæøñçøñèøñéøòè÷òéøòé÷óê÷óêøóê÷òé÷òéùôë÷òéøóêøóê÷òé÷òé÷óê÷óê÷óéùóêøòêùóêúóéùñèùòéùñéùòéùñéøñèøñèøðçøïæ÷îå÷îåöìãöêãõèãóèáòæàñåáðäàïãßîâÞîàÞìßÝìÞÝìÞÜëÝÛìÝÛìÝÛêÛÙêÛÙèÙ×è×ÖæÕÔäÕÓäÔÔãÔÕãÕÖäÖ×åרæÙÚçÙÚçÚÚéÛÜéÜÜëÞÝíßÞîáàðäâñæäñèåñèåñèåòéæòéåôéåóéåñæâðäàïàÝîÞÛíÛØìÚÖëØÓê×ÒêÖÒêÖÑêÖÒéÖÓèÖÒçÔÑåÓÐäÓÐâÐÍÞÌÉÛÈÆÖÄÄÒÁÃ;Áǹ½Á³»»¯¹¸­¸¶ª¶³©µ²¨µ³©µ²¨µ²¨µ´ª¶¶ªµ¸¬µ½°·Â³¸Æ·ºË¼¾×ÌÏ×ÌÏ×ÌÐØÌÎØÌÏÙÍÐÙÎÐÚÐÒÛÐÓÜÑÔÞÓÕßÔÖàÕØÞÓÖ×ÍÑÍÃÉÁ¶¾º­¶¸¨°»©®È¸¸ÖÆÆßÑÐ娨éÜÛêÜÚëÜÚìÝÛìÞÜíßÝîßÝîßÝîàÝïàÝïâÞðäàñåáóèâóéâôéâõëäöíäöíäøïæøïæ÷ðçøñèøñè÷òé÷óê÷óêøòéøóê÷òéøóêøóêøóê÷òéøóêøóêøóêøóê÷òéøóê÷óêøóê÷óêøóéùóêøòéùñèùòéùñéøòèøñèøñèøðçøïæ÷îå÷îåöìãõëäõêãôèâóæáñåáðäàïãßïàÞïàÞíßÝíßÝíÞÜìÝÛìÞÜìÝÛêÛÙéÚØèØÖç×ÖçÕÔåÕÓäÕÕãÔÕäÖ×ä×Ùå×ÙæÙÚæÙÙèÙÚèÚÛéÛÜëÜÝìÞßîááðããðæåðçäñèåòéæòèåòçäñæãïäàîàÝíÜÙëÚ×é×ÔèÔÒçÓÎåÑÌäÏÊãÎÉãÍÈâÍÈáÌÈàÌÇßËÈÞËÈÝÊÈÜÊÇÙÇÅ×ÅÄÕÄÅÓÃÅÐÂÄÌ¿ÂÆºÁ·¿À´¿¾²¼º¯º·¬·´ª·³©¶±§´²§³³§²·©³¿±¶Å¶¹Ë»¾ÑÁÁØÍÏØÍÏØÌÏØÍÏÙÎÑÙÎÑÙÎÑÛÐÓÜÑÔÜÑÔÞÓÖßÔÖßÔ×ÞÕØÚÑÔÒÇÎŻø­·³¥®µ£ªÂ®±ÑÀ¿ÝÎÌåÖÔéÝÛëÞÜêÝÛíßÝìßÝíàÞìàÝíßÞïßÝîáßïâßðäàñåáóèãóéâôêãõëäöìåöíåøïæøðç÷ðçøñèøñè÷òéøóêøóê÷òé÷òé÷òé÷òé÷òé÷òéùôëùôëøóêøóêøóê÷òéøóê÷óêøóê÷óêùóêùòéúóêøñèùñéùñéùòéøòèøñèùðç÷îå÷îå÷îåõìãöìãõëäóéâòçáòæáðäàïãßïáßïàÞîßÝíÞÜíÞÜíÞÜíÞÜìÝÛêÛÙéÙ×éØÖè×ÖæÕÔåÕÔäÔÖãÕÖäÖØä×ÙåÙÛåÙÛåØÚæÚÚçÛÛèÜÜéÝÝìßàìààîããðååðçäñèåñçåñåãïãáîàÞìÜÛëÚØèÕÔåÓÐâÏÌàËÈÞÉÇÝÈÂÜÆÁÛÄ¿ÚĿٽٽÙÿØÃÀØÃÁØÅÄØÇÆØÆÆØÇÈÕÆÇÕÇÉÔÇÉÑÅÈÌÁÈÊÀÇÇ½ÅÆ¼ÄĹÂÀµ¿º°º´ª·°¥³¯£°¯£¯µ¨±¿°µÉ¸ºÑÀÀׯÄÙÎÑÚÏÑÛÏÒÚÏÒÛÐÓÛÐÓÛÑÔÜÒÕÝÒÕÝÓÖÞÓÖÝÓÖÞÕØßÖÙÝÓ×ÕÌÑǾƶ¬·­ ««™£¸¤¨Ë·¸ÚÇÆãÓÑèÛØëÞÜíàÞîáßîáßîáßîàÞîáßíàÞîáßïãàðäáñçãóèäôêãôêãöìåöìå÷îæøïæøïæøðçøñèøòé÷óêøòé÷òéøóêøóêøóêøóêøóêùôëøóêùôëøóêøóêøóê÷òéøóêøóêøóêøóêøóêùóêøóéùòéøòèùòéùñèøñèùðèùðç÷îå÷îåöíä÷íåöìåöìåôêãóèâóçâòæáðäàïãßïáßîàÞîàÞîßÝíÞÜíÞÜìÝÛëÛÙëÙØé×ÖèÖÔåÖÔäÕÓäÔÕäÖ×ãÖØä×Ùä×ÙåØÚåÙÚæÙÛèÛÝèÛÝéÜÞëÞàíàâîããïääïååïääïãâíààìÝÜêÛÙèÖÕäÒÒàÍÌÝÇÇØÃÃÕ¿¿Ó¼ºÒº¸Ð¸µÐ·´Ï·´Ð¸¶Ò»·Ô½»Ó½»ÔÀ¿ÖÃÂÖÆÆ×ÈÉØÊËÙÌÎØÌÎ×ËÎÕÌÏÓÊÏÒÈÎÐÅÍÏÄËËÁÈÆ»Ä¾µ¿·­¹°¦³«Ÿ®«¬³¤°À¯µÌº¼ÕÃÃÛÊÇÙÎÑÚÏÒÛÐÓÜÑÔÛÑÔÛÒÕÛÒÕÜÒÕÝÓÖßÔ×ÞÔ×ÝÔ×ÞÕØà×ÚÞÕØÕÍÒȿǶ¬¸¥™¦Ÿœ«–­­ÓÀ¾àÎËçØÕëÝÛíàÞîáßïâàîáßîáßíàÞíàÞïâàðãáñåâòèãóéãôêãôêãõëäöìå÷íæøïåøðç÷ðçøñèøòé÷óêøóê÷òéøóêøóê÷òéøóêùôëøóêùôëøóê÷òéøóê÷òéøóêøóêøóêøóêøóêøóêøóêøóéùòèøòèøñèùòéøñè÷ñèøðç÷îå÷îåöíäöíåöìåõëäôêãôèâóçâñåâðäàïãßïâÞîáßîàÞîàÞîßÝíÞÜìÝÛìÛÚëØ×é×ÕèÖÕæÖÔåÕÔäÕÕãÕÖãÕÖãÖØãÖØåØÚæÙÛæÙÛèÛÝèÛÝêÝßìßáìàâíâãíäãîääîááìÞßêÛÜèØÙäÔÕáÏÏÝÉËØÃÄÒ½¿Ì·¸È±³Ä¬®Á§ª¿¦¨À¨©Ä¬®È±±Í¶´Ï¹·Ñ¼ºÓ¿¾ÔÂÃÖÆÇ×ÉÊÙÌÍÛÎÐÛÐÓÚÑÔÚÑÕØÐÕØÏÕØÎÔÖËÒÐÈÏËÁʹù°¼±§¶ª¯§š«°¡®¾­µÌ»½×ÅÅßÍÊÙÎÑÚÏÒÛÐÓÜÒÕÜÒÕÛÒÕÛÒÕÝÔ×ÝÔ×ßÔ×ÞÕØÞÕØÞÕØßÖÙÝÔØÓÌÒÉÁÉ·®ºŸ—¦ƒ“˜…´ž¡Ë¶µÙÆÃãÒÐéÚØìßÝíàÞîáßîáßíàÞíàÞîáßïãáðäáðåáóèäôéäôêãõëäõëäöìå÷íæ÷ïæöðç÷ðçùòé÷òéøóêøóê÷òéøóê÷òéøóêùôëùôëùôëùôëøóêøóê÷òé÷òé÷òéøóêøóêøóêøóê÷óê÷óé÷òêøóéùóéùòéùòéøñè÷ñèùïæ÷îå÷îåöíäöíäõëåõëäõéãôèâóçâòæâðäàîãÞîâßîáßîàÞïàÝîßÝíÞÜíÜÛëÚÙé×ÖèÖÕçÕÔåÕÓäÕÔãÕÖâÔÕãÕÖãÕ×ä×ÙåØÚæÙÛæÙÛçÛÝçÜÞéÝßêßáëàâìáãîâäíáâìßàéÛÜåרâÑÔÞÌÏÙÇÊÔ¿ÃÍ·¼Å¯´»¤­´›¥­” ¨œ¨’ž°š¢¹£¨Á«­Ç±²Í¸·Ð¼»ÒÀÁÔÄÅ×ÈÉÙËÍÜÏÑÝÒÔßÕ×ßÖÙßÖÛÝÖÛÞ×ÛßÖÚÜÒØÖÍÔÐÈÏǾȾ´Áµªº©°¤•«¬œ­¼«µËº¾ØÆÈáÐÎÙÎÒÚÏÒÛÐÓÜÒÕÛÓÖÜÓÖÞÕØÞÕØàÖÙáÖÙàÕØÞÕØÞÕØÞÕÙÛÒ×ÓÌÑÊÂÊ»²¾¡š©ƒz€r‚ Œ“¿ªªÑ½ºÞËÈåÔÒéÛÙêÝÛëÞÜìßÝíàÞíàÞîáßïãáðäâñæãòçãóèäóéäôêäõëãõëäöìå÷íæ÷ðæ÷ðç÷ðç÷òéøóêøóêøóê÷òéøóê÷òéøóêøóê÷òéøóê÷òéøóê÷òéøóêøóêøóêøóêøóêøóêøóê÷òéøóê÷òé÷ñèøòèùñéøñè÷ñè÷ðçøïæ÷îå÷îåöìäõìäôêãóçáòçâòæâðäàïãßïáÞïßÞîßÝîßÝîßÞíàÞíÞÜíÝÚëÙÙéØÖèÖÕæÕÔãÔÓäÔÔâÓÔâÔÕãÕÖâÕ×ä×ÙæÙÛåÙÛåÚÜçÜÞçÜßèÝßêßáëàâìáãìàâìßáéÜÞæØÛáÓÖÜÎÐØÆÊѾÃȳ¼¾©´³ž­¨’¦š‡žŒ{•…w‘’—¥‘Ÿ²ž¦¾©­Æ²µÍ¹»ÑÀÁÔÄÅ×ÉÊÛÍÏÝÐÒÞÓÕáÖØâÙÜäÛÞäÛßåÜßåÜßäÛÞá×ÜÜÒØÕÌÓÌÃÎùꝾ®£µ§™®­ž°½­¸Ë»Á×ÇÉáÐÏ×ÎÓÚÏÒÛÑÔÝÓÖÜÓÖÞÕØßÖÙà×ÚáÖÙàÖÙàÕØßÖÙßÖÙÞÕÙÜÓØÔÍÒÌÄÌ¿¸Ã©¤²‡•qgz‰y†¯šžÆ±°Õ¿ÞÍËåÕÓèÚØéÜÛêÜÛëÞÝìÞÞíàÞîâàðãáñåâòçãòçãóèäôéäôéãõëäõìä÷íæ÷îæ÷ðçøðçöòé÷òéøóê÷òéøóê÷òéøóêøóêøóêøóê÷òé÷òéùôë÷òé÷óê÷óê÷óê÷óê÷óê÷óê÷óêøóê÷òéøòéøòé÷ñèùòéøñèøðç÷ðçøïæ÷îå÷îåõìäõëäôèâóçáòæáñåáïäßïáßïàÞîßÝíßÝíÞÜíßÝîßÝìÝÛëÚÙêÙØèØ×æÖÕäÕÓãÕÓãÔÕâÓÔâÔÕâÕ×ãÖØåØÚåÙÛåÙÜåÚÝæÛÞæÛÞèÝàéÞáêßáëàâêßáéÝßçÚÜäÖÙßÑÕÙËÐÒÂÊɷ¿¬¹´¡³¨–«š‰£ˆ{š{r’ƒx“˜‰œª™¥¸¦®Â±µÊ¸»ÑÁÃÖÇÉÛÍÎßÑÒâÕÕäרåÚÜæÜÞçÞàéßãéàãêáäêáãêàãæÝàá×ÜÛÑ×ÓÊÒËÁÌ·ķ­½±¥¶³¥·¿°½Í¾ÅØÈËáÑÑ×ÎÔÚÐÕÚÑÕÜÓÖÜÓÖÞÕØÞÕØà×Úâ×ÚáÖÙàÕØßÖÙßÖÙÞÕÚÛÓØÖÎÔÎÇÎüǯª¸•¢~v‰t…™‡“¶¡£É´µÕÃÁÞÍÌãÕÓ娨èÛÚéÛÜêÜÝìÞÝìßÝîáßïãáðäâñåâòçãòçãóèäóéãôêäöìå÷íæ÷ïæøñè÷ñèöòé÷òéøóêøóêøóêøóêøóêøóêøóêøóê÷òéøóê÷òé÷òé÷òéøòéøòéøòéøòéøòé÷òé÷ñè÷òè÷òè÷òéùòéøñè÷ðçøðçøïæ÷îåöíåõëäôéãóçáòæàðäáðäàðâßîàÞîßÝîßÝíÞÜìÝÛìÝÛëÜÚëÛÙéÚØèØ×çØÖæ×ÕåÕÔãÔÔâÔÕâÔÕáÓÕâÔÖä×ÙåØÚåØÚåÙÛåÚÝæÛÞæÛÞçÜßéÞáéßâêßâéÞáçÜßäÙÜáÕÙÝÐÕ×ÈÏξÉĴº©½° ·¦™±ž«•‰¤•‰¢ ”§®Ÿ¬º«³Ä´¹Ë¼¿ÓÄÆÙËÍÞÐÒäÖ׿ÚÚéÜÝéÞßêßáìáãìâäíåæîçèîèéîçèîæçêáãæÜßàÖÜÚÐ×ÓÉÒËÀË·û¯¾¼¯¾Æ¸ÃÐÂÉÚËÎâÒÔ×ÏÕÚÑÖÚÑ×ÛÒÖÜÓ×ÝÔ×ÞÕØßÕØáÕØàÕØàÕØßÕØÞÕØÞÖÚÜÕÚØÑ×ÒËÒÈÁ˸±¾¥Ÿ¯”¡Œ„•”‡–¥“º¦©Ë··ÖÄÃÝÎÌáÓÒåרçÙÚèÚÛéÜÜêÜÝëÞÜìßÝîáßïâàïãàðåáñåâòçãôêãôêãöìå÷îçöïæøðçøñèøñè÷ñèöñèöñè÷òéöñè÷ñè÷ñè÷òéøóê÷òéùñèùñèøñèøñèøñèøñè÷ðçùòéùñèøñèùñèùòéøñè÷ðçøðçøðç÷îå÷îåöíäöëãôêãôèâóçáñåáñåáïãßîáÞîßÝîßÝìÝÛëÜÚêÛÙéÚØéÚØéÚØéÚØçØÖæ×ÕåÖÔäÔÔâÔÕáÓÔàÒÔâÔÕãÕ×ã×Ùå×ÙäÙÛãØÛãØÛåÚÝæÛÞæÛÞçÝàæÞáçÝàæÝàæÜßäÙÜàÔÚÜÐÖÖÈÏοÊĵļ®À¶©¾±¤»­¡·­¡µ±£³¸ª¶À±¹Ç¸½ÏÀÃÔÇÉÜÎÏáÔÖæÙÛêÞßíááíââíâäïäæîäæîæçïçèïèéðèéðèéðèéìäåéßâäÛßàÖÜÚÏ×ÓÈÐËÀËÅºÆÆ»ÆÌÀÉÓÆÌÛÍÑâÔÕÖÎÖØÐ×ÙÑÖÚÒ×ÝÓÙÞÔØÝÔ×ÞÕ×ßÔ×àÕØÞÔ×ÝÔ×ÞÔÙÞÕÛÞÕÛÜÕÙØÑÖÑÉÐÆ¾È¸±½©¤³œ˜©š‘¡ ’ ¬›£¼©¬Ê¸¹ÕÄÃÜÍËáÒÓäÖ×娨çÙÚèÚÛéÛÛêÝÛëÞÜìßÝíàÞîáßïãàðäàòæâóéâõëäöìå÷îçöïæ÷ðç÷ðç÷ðçøñèøñè÷ñèøñèøñèøñèøñèøñèøñè÷ðçøðçøðç÷ðç÷ðç÷ðç÷ðç÷ðçøðçøðç÷ðç÷ðçøðç÷ðçøïæ÷îå÷îåöíäõëãõêãôèâóçáòæáñåàðäàïâßîàÞíÞÜìÝÛëÜÛêÛÚêÛÙéÙØéÚØèÙØèÙ×çØÖæ×ÕäÕÔãÔÔãÔÕáÓÕáÓÕâÔÖãÖØä×ÙäØÚã×Úã×ÚãØÛåÚÝæÛÞæÛÞæÝàæÝáæÝàåÜßåÛÞãØÜàÔÚÜÐÖØÊÒÒÃÎ˽ÉǺÈ÷ÆÀ´ÃÀ³ÁÁ³ÀõÀɹÂ;ÄÒÃÇØÊÌÞÐÒãÖØèÜÝìàáîääïææïææðåçîæçîäæîæçîçèïçèïçèïçèîæçìäæêáäçÞáãÙÞßÔÛÙÎÖÓÈÑÐÅÏÐÄÍÓÆÎØËÑßÑÔä×ÙÖÏØ×ÐרÑ×ÚÓØÛÔØÝÓÙÝÔ×ÝÓØÝÔØÝÔ×ÝÔ×ÝÔØÞÔÚßÕÛßÕÜß×ÜÝÖÛÙÒ×ÓÌÒÉÂʽ·Â°«¹¤ž¯£š¨¨›§±¢©¾­°Ë¹ºÔÄÄÜÌÌßÒÓãÕÖåרæØÙçÙÚèÚÚéÛÛéÜÛëÝÛìßÝîßÝïáÞðäàòçâóéâõëä÷íæ÷îæøïæ÷ïæöïç÷ðç÷ðç÷ðç÷ðèøñè÷ðç÷ðçøðçøïæøïæøïæøïæ÷îå÷ïåøïæøïæ÷ïæ÷îåøîå÷îå÷îå÷îåøïå÷îå÷îåöíäõìãõêâôèâóçáòæáòæâðäàïãßïâßîáßíßÝìÝÛëÜÚéÛÛèÙÚèÙÚçÙÙçØØçØ×æ×ÕæÖÕäÕÕãÓÔâÔÕâÔÖâÕ×ãÖØã×Ùä×Ùâ×Úâ×Úâ×ÚãØÛãÙÜäÚÝäÛÞæÝßæÝàçÞáæÝàåÛßäØÞáÖÛÞÒØÜÏÕØÌÓÕÈÑÒÅÏÐÂÍÏÁËÎÀÊÏÁÉÒÃÉÔÅË×ÊÍÛÍÏàÒÔåØÙéÝÞíááïåæðèèðèèïççîæçíåçîæçîæèïçèïæèîæçîåèîåçíäæëâåéàãæÝàâØßÞÔÚÛÑ×ÙÎÔØÌÓÛÎÔÞÒÖâÕØæÙÛÖÑÙÖÐØÙÒÙÚÓÙÛÔÙÛÔÚÜÔÙÝÒÙÜÓ×ÜÓÖÝÓØÞÔÚßÕÚßÕÛàÖÜàÕÛÞ×ÜßÖÛÝÓÙ×ÏÕÎÇÏüǵ¯½«¥³© ¬­ «´¦­À±´Êº¼ÔÄÄÚËÌÞÐÑâÔÕåרåØÙæØÙæØÙçÙÚèÚÚéÜÚìÞÜîßÜïãßòæáóçâóéâöìåöìå÷íæöìæ÷îæ÷îå÷îæøîåøïæøïæ÷ïæøïæ÷îå÷íäõìäöëäöìäöêâöëãöëãöëãöëãöêâöëãõéáöêâöëãöëãöëãöëãöëãôéáóçàóçáñåßñåßñåàïãßðäàðäàîáßíÞÜìÝÛêÜÜèÚÛçÚÛçÙÚæØÙç×ÙçØ×åÕÖåÖÕäÕÖãÔÕâÕÖâÕÖâÕ×ãÖØã×Ùâ×Úâ×Úâ×ÚáÖÙáÕÛáØÜâÙÜäÚÞåÛáæÜâæÝâçÞãæÝáæÚáäÙÜâ×ÛàÔÚßÓÙÜÐÖÚÎÔÙÍÓØÌÒÙËÑÙÌÑÚÌÐÝÏÓßÓÔãÕÖæÙÙêÝÝîââðææñèèïèèðèèïææðåçïåæíææîæçïæéíäçîåèíäçíäçìãæìãæêáäèßâæÝàâÙÝáÖÚßÔØßÔ×àÕØáÖÙä×ÚçÚÜ×ÒÛ×ÒÛÙÓÚÚÓÚÛÔÚÜÔÚÛÕÚÛÓØÜÒØÜÒØÜÒÙÝÓÙÞÕÚàÖÜá×Ýá×Ýá×Ýá×Ýà×ÜßÕÚÚÑ×ÑÉÐÆ¾Ç¼µÀ³ª·¯¥°±¤¯¹ª±À°µÉ¸»ÒÂÄØÉÊÝÏÐáÓÔãÕÖäÖ×ã××ä×׿ØÙçÚÚéÜÚëÞÜîàÞïãßñåáòçãóéâôêãõëäõëäõëäöìåöëäöìäöìåöìåöìäõêãôéâõéâôéáôèáóèàóèàóçßôèàôèàôèßôçßôæßóæÞóæÞóçßóèàôéàóèàòçßòæßòåÞòäÞñäÞðãßïãßðäàïãßïâßîàÝíÞÜìÝÚëÛÚçÙÚçÙÚçÙÚæØÙæØÙæ×ØåÖÖåÕÖãÕÖâÔÖãÕ×âÖØãÖØáÕÙáÖÙáÖÙàÕÙßÕÙÞÕÚßÕÛàÖÜâØÝäÚßåÜáæÜâçÝâèÞãçÝãæÝâæÜßåÚÝåÚÝãØÛâÖÚáÕÚàÕÙàÓØáÓ×áÓ×âÔ×ãÖØæÙÚèÚÛëÝÞíááðååñèçñéçñèçðççðæçðåçïæçîæçíåçíäçíäçíäçìãæëâåëâåêáäêáäêáäèßâæÝàäÚÝåÚÜåÙÛäÙÛåÚÜåÚÜæÛÜÙÔÝÚÔÝÛÔÜÜÕÜÜÕÜÜÔÛÜÕÚÛÔÚÛÓÙÜÔÙÝÔÙÝÔÙßÕÛá×ÜâØÝâØÞâÙÞâÙÝâÙÜà×ÛßÖÙÚÑÖÓËÐÉÁÉÀ·Á¸¯¹²§²µ¨²¹«²Á±¶È¸»ÏÀÂ×ÈÊÛÎÏÞÑÓàÓÕáÕÖâÖ×䨨çÙÚéÛÛêÝÜìßÝíáÞïãßñäáòæâòçâóèãóéäóéãóéäôêäõêäôêãôêãôèâóçáòæàòæßòåßóåßóåÞòåÝñäÝóäÜòäÜòãÜòâÛñâÛñâÛñâÛòãÜòäÝòåÝòæÝòåÝñãÜñâÜðâÜðáÝðáÞðáÞïâÞîàÞîßÝíÞÜìÝÛëÜÚéÛÙçÙÛçÙÚçÙÚçÙÚåרåרäÖ×äÖ×äÖ×ãÖ×ãÖØãÖØâÖÙàÖÙàÖÙàÕÚßÕÚÞÕÛÝÕÚÝÕÚÞÖÜàØÞâÚßãÜáåÜáæÜâçÞãçÝãçÝãçÞãæÝáæÜßæÜßæÛÞæÛÞæÛÞåÚÜæÙÛæÙÛçÚÜéÜÞêÞÞìààîãâðæäñèåóêçñéæòèçñççñææðåæïäæïåçíäæíãæíãæìãæëâåëâåêáäëâåêáäéàãèßâçÞáæÝàçÝàçÜßçÜÞæÛÝæÛÝåÚÜÛÕÞÜÖÞÝÖÝÞ×ÞÝÖÝÝÖÝÝÕÜÜÕÚÝÖÛÝÖÛÞÕÚßÕÛàÖÛáØÜãÚÝâÙÝãÚÞãÚÝâÙÝâÙÜàÖÙàÕØÝÓÖÖÌÑÍÃÊĹ¹°º´¨²¶¨²º¬³À°µÅ¶¹ÏÁÃÔÇÈÙÌÎÝÐÒàÓÕáÔÖãÖØåØÙçÚÛêÜÜëÞÝìßÝíàÞîáßðäàñåáñåáòæâñæâñæãòçãóèäóçãòæáñåàñäàñâßñâÞñãÝñãÝñâÜñâÜðàÚðàÚðßÙðßÙðÞØðÝ×ïÝ×ïÝ×ïÞØðߨñàÙðàÚðàÚïàÙïßÙïßÛîßÜîßÜíÞÜíÞÜìÝÛìÝÛìÝÛêÛÙêÚÙèÙÚçÙÚæØÙæØÙæØÙåרåרåרäÖØãÕØãÖØâÕ×âÕ×áÖØßÕØßÕÙÞÔÚÞÕÛÝÕÛÜÔÛÝÕÜÞ×ÞàØßáÙßâÛáäÝâäÝâåÝâäÝâæÝãæÞãçÝâæÝáæÝàèÝàéÝáèÝàèÝßêÝßêÝßêÝßìààîãâïäãðçäñèåòéæòéæñèæðææðææïååîäåîãåîãåíâäíâäìâåìãåëâåëâåêáäêáäéàãèßâçÞáæÝàæÝàçÝàçÜßçÜßæÛÝæÛÝåÚÝÜ×àÝØßߨßߨßߨßß×Þß×Þß×ÝߨÝߨÝߨÝà×Üá×ÛâÙÜâÙÜãÚÝäÚÝãÚÝãÚÝãÚÝâ×ÚáÖÙáÖÙÞÓÖ×ÍÑÎÄÊźû±»¶ªµ·ª´»¬µ¾¯µÃ´¸Ë½ÁÒÄÇÕÉÌÛÏÑÞÓÕàÔÖã×ÙçÚÛçÚÛéÜÜêÜÜëÞÜìßÝíàÞîáßïâàïâàïâàðäáðäáðåáñåáïãàïâÞïàÝîßÝíÞÛîÞÛîÞÛîßÚîÞÙîÞÙíÜ×îÛÖîÛÖìÙÔìÙÔìÙÔíÚÕìÙÔíÚÕîÛÖîÛÖîÛÖíÛÖíÛ×íÜÙìÜÙëÛÚëÜÚêÛÙêÛÙêÛÙéÛÙéÚØçÙÙåØÙåרåרäÖØãÕÖäÖ×äÖ×ãÕÖáÔÖâÕÖáÔÖàÓÖàÓÖßÔ×ÞÓØÝÓØÜÔÚÜÕÜÜÕÜÜÖÝÝÖÝߨßÞ×ßߨßáÙàãÛáãÜáãÜáãÜáãÜáãÜáåÜáæÜâæÝáçÞàéÞáéÞàêßáìßáíàâíááîããïääîääïåãïäãïåãïåãïäãíááìàáìßáìßáëàâìáãìáãìáãìàâìáãêàãéàãéàãèßâçÞáæÝàæÜßåÛÞäÛÞåÛÞæÛÞäÚÝäÚÝãÚÝãÚÝÜ×àÞ×ßߨßߨßߨÞߨßàÙÞáÚÞáÙßáÚßàÙÞâØÞâÙÜâÙÜãÙÜäÚÝåÚÝåÚÝåÚÝäÙÜâØÛâ×Úâ×ÚáÖÙÞÓÖØÍÑÏÅËǼý²¼·¬¶·«µ¹«µº¬³¾°·Çº¾ÍÂÅÔÉÌÚÏÒÞÓÖâÖØåØÚæÚÚæÚÚèÛÛéÜÜêÜÝëÞÜìßÞíàßíààîààïááîâàðâáïâàîáßîßÝíÞÜìÝÛëÜÚëÜÚìÜÙìÛÙíÛØìÛØìÚ×ëØÔëØÔëØÓê×Òê×ÒëØÓëØÓìÙÔìÙÔìÙÔìÙÕëÙÖêÙÖêÙÖêÙ×èÚ×èÚØçÙØçÙÙçÙÙæØÙæØÙåרåרäÖØãÖØãÖ×âÔ×âÕÖâÔÖàÔÖàÓÕàÓÕàÓÕÞÒÕÝÒÕÜÑÖÛÒØÛÒØÛÓÙÜÔÜÜÕÜÝÖÝÞÖßÞÖàÞ×àߨáߨßàÙàáÚàáÚàáÚáâÚàâÛáâÛàäÜáåÛáæÝàçÞáèÝàêßáëßáìßáíáâíââíááìààëßßìßàëÞÞëÝÞéÝÝèÜÜèÛÝçÚÜæÛÝçÜÞèÝßêßáëàâëàâëàâêàâêàãéßâèÞáçÜßæÛÞåÚÝäÚÝäÚÝãÚÝãÚÝãÚÝãÙÜãÙÝâÙÞÛÖßÝ×ÞÞ×Þߨßß×ÞàØßáÙàâÛàâÛàâÛàáÚßãÚÞãÚÝäÛÞæÛÞæÛÝæÛÞæÛÞåÚÝäÙÜâØÛãØÛâØÚáÖÙàÕØÝÓÖ×ÎÒÐÆÌǽľ³½·­··¬¶¸«µ¸«³»®¶Ã·½Ë¿ÄÓÉÌÛÑÔàÖØãØÚåØÚæÚÚæÚÚçÛÛèÜÜéÜÝéÝÝêÝÞìßàìààíááíááíààíààìßßëÝÜêÜÛêÜÚéÛÙéÛÙéÚØéÚØéÚ×êÚ×éÙÖéØÕèÖÓèÕÒçÕÒçÕÒèÖÓèÖÓé×ÔêØÓêØÔêÙÖéØÕéØÕè×ÕçØÖæÖÖäÖ×äÖ×äÖ×åרäÖ×äÖ×âÕÖâÔÖáÔÖáÔÖáÔÖáÔÖáÔÖàÒÕÞÑÔÞÑÔÜÑÔÜÑÔÜÑÔÛÐÕÚÐÖÚÑ×ÚÒØÛÓÚÛÕÜÝÖÝÞÖßÞÕßÞ×àÝØáÞØáߨáàÙàáÚáàÙààÚááÙàáÙàâÚßâÛàäÚàæÜàæÝàèÝàéÞàéÞàìßáëÞàêÞßéÝÞèÛÜæÙÚæØÙåרäÖ×ãÖ×âÕ×âÕ×áÓÖàÔ×â×ÚäÙÛçÜÞéÞàêßáêßáêßáéÞàèÝàæÛÞåÚÝäÙÜãØÛãØÛäÙÜáÙÛâÙÝâÙÞâÙÝâÙÞáÙߨÓÜÚÔÝÜÕÝÜÕÜߨßáÙààÚáãÜáãÜáãÜáäÜàåÜÞåÜßåÜßæÝàçÝàèÝàçÝßçÜÞåÚÝåÚÝäÙÜãØÛâ×ÚáÖÙàÕØÜÒÕ×ÍÒÏÅËǼľ³½¹­¹·«·´©´³¨²¸­µÁ¶¾ËÁÇÕËÐÝÓÖáÖÙãØÚã×ÚäØÚæÙÚæÙÛæÚÛçÛÝèÜÞéÝßéÞáëßáìàâìàáìßàëÞßéÝÝèÛÛçÚÛæÙÛæØÚæØÚæØØæØØæ×Öæ×ÖæÕÓåÔÒäÓÑãÒÏãÒÐäÓÐåÔÑåÔÑçÖÓçÖÓçÖÓæÕÓæÕÔåÖÔäÕÔâÓÔáÓÔáÓÔáÓÕáÔÕáÓÕàÓÕßÒÔÞÒÔÞÒÕßÓÖÞÔÕÞÒÕÝÒÕÝÒÕÛÐÔÚÏÒÛÐÓÙÏÔÙÏÓØÎÔØÎÕ×Ï×ÙÑØÛÓÚÜÕÜÝÖÝÞ×ÝÞÖßÞØàÝÙâÞÙâßÚâàÚáàÚààÙáàÙáàÙàߨàáÙàáÚàâÛßäÛàåÜßçÜßçÜàéÞàéÝßèÛÝæÙÛä×ÙáÔÖàÓÕÝÐÒÜÎÐÜÎÐÚÌÎØËÍØËÎØËÎÙÊÎÛÎÑÞÒÕâ×ÙæÛÝêÝßëÞàéÝßèÜÞæÛÝåÚÜäÙÜâ×Úá×Úâ×Úá×Úà×Ûá×ÝâØÞâÙÞáÚÞàÙÞÖÒÛØÒÛÛÔÜÝÖÝÞ×ÞàÙàâÚáãÜáäÝâäÝâäÝàåÝàåÜßåÜßçÝßèÝàéÞàèÝßçÜßçÜßæÛÞäÚÝäÙÜãØÛá×ÚáÖÙÞÔ×ÛÑÕÕËÑÎÄËǽſ´¾¹®º´¨´²§³²§²·¬¶Â·¿ÍÃÉÕÍÑÝÒÖáÖÙáÖÙâ×Ùâ×ÚãØÛäÙÛäÚÜæÛÝæÜßèÞáéÞàéßáêßáêßáéÞßéÜÞæÛÜæÙÛåÙÚåÙÚåØÙåØÙä×ÙäÖ×äÕÖäÕÔâÓÑáÑÑàÑÐàÑÐàÑÐáÑÐãÓÑäÔÒäÔÒäÔÓãÓÒâÔÒâÓÓàÒÓßÑÓÞÑÓÞÑÓÝÑÓÝÑÔÞÒÔÜÑÔÚÐÓÚÏÓÚÐÔÛÐÕÜÒÖÜÑÖÛÑÖÚÐÕÙÎÕ×ÎÓ×ÎÓÖÎÔÕÍÓÕÎÔÕÍÔ×ÏÖØÑØÛÔÛÛÕÜÝÖÝÞ×ÞÞØßߨâÞÙâÞÙâßÚâàÚâßÛáàØâߨáߨáßÙààÙßáÚßâÛàäÛßäÛßæÜßçÜßèÝßçÜÞåÙÛáÕ×ÝÑÔÚÎÑ×ËÎÕÇËÒÄÇÏÁÄÎÀÃÎÀÄÎÀÅÎÀÄÏÁÆÓÅÉÙËÏÞÑÔâÖØçÚÜèÜÞéÜÞèÛÝåÚÜãØÛâ×Úâ×Úá×Úà×ÚßÕÙßÕÜàÖÜàÖÜß×ÜÞ×ÜߨÝÕÑÛ×ÒÛÚÓÜÜÕÜÝÖÝàØßáÚàãÜáãÝâäÜâåÝàæÝàæÝàèÝßèÝàéÞáéÞàéÞàèÝßçÜßæÜßæÛÞåÙÜãØÛâ×ÚßÖÙÞÔØÜÒØÙÏÕÔÊÐÎÄËÆ½Å½´¾¶¬¸²¨´±§´±¨³·®¸Â¹ÁÌÄËÔÌÒÛÒ×ßÕÙßÖÙßÖÛá×ÜáØÛãÙÝäÛÞæÜßæÝàçÞàèÞáèßâèßàèÝàæÛÞåÚÜäÙÛãØÚãØÛäØÚãØÚâרâÕ×áÔÖáÔÕßÑÒÞÐÑÝÏÑÝÏÐÝÏÐÞÐÐßÑÑàÑÒàÒÒàÒÒßÑÑßÑÒßÑÒÞÑÒÜÐÓÚÏÒÛÐÓÚÏÓÙÏÓÚÎÔØÎÓØÎÔ×ÍÓ×ÏÕØÏÕØÐÖÙÑÖÙÐÖØÐÖ×ÎÔÕÍÓÕÎÓÔÌÓÕÍÔÕÍÓÕÍÔ×ÏÖØÑØÚÓÚÜÕÜÝÖÝÞ×ÞߨàßÙáßÙâßÚãàÛãßÛâßÙâÝ×áÝ×áß×áߨßàÙàáÚàâÚßäÚàäÚßåÛÞçÜßæÛÞäÙÜáÖØÜÑÓÖËÏÐÅËÌÀÆÉ¼Âõ¼Á³ºÁ³ºÀ³º¾²ºÀ³¼Ã¶¾È¼ÁÐÁÆ×ÉÍÞÐÓãÖØæÙÛçÚÜæÙÛãÙÛâ×Ûâ×ÚàÖÚßÕØßÕØßÔ×ÝÓØÜÒØÜÒØÛÓØÛÔÙÜÕÚÔÐÛÖÑÚØÒÛÛÔÜÝÖÝÞØÞáÙàãÜáäÝâåÜáçÞàçÞáçÞáèßâêÞáêßâëàãéßáêßáéÞáçÝàæÝàåÜßãÚÝáØÛàÖÛÞÔÚÝÓÙÜÒØÚÐÖÔËÑÍÅÌżƼ²¾µ«·²©·±©¶±¨´¶®¹À¸ÂËÃËÔÌÒÙÒØÝÖÛÝÖÛÞÖÛߨÞàÙÞâÛàãÜàåÜâåÝáåÞàçÝàæÝàåÜßãÛÞãÙÜáØÛá×Ûá×ÛàØÛá×ÚàÕØàÕØàÔÖÞÓÕÝÐÒÛÏÑÛÎÑÚÍÐÚÍÑÛÎÐÜÐÒÝÐÒÞÐÓÞÑÒÝÐÒÝÏÑÝÏÒÛÐÓÙÏÒØÎÓ×ÍÓÖÌÓÖÌÒÕÍÔÖÎÓÕÍÔÔÌÓÖÎÕÖÎÕ×ÏÖ×ÏÖØÐ××ÏÖÖÎÕÕÍÔÓÌÓÓÌÔÓÌÔÔÌÕÕÎÕ×ÐרÑÙÚÓÚÛÔÛÜÕÜÞÖßߨàÞÙâßÚãàÛãàÛäàÛäßÚãßÙâÝØáÞØààÙááÚáâÛàáÛßäÙßãÚÞåÛÝåÚÝåÚÝâ×ÚÞÓÖÖËÑÏÄËǼÆÀ·Á¸®¹³©µ²§³²§³°§³¯¥²°¦³µ«·½±¼Æ¹ÀÎÁÅ×ÉÌÝÐÒáÔÖãÖØã×ÙãØÚâ×ÚáÖÙßÔ×ÞÔÖÝÒÕÚÐÓÚÏÓØÎÔÙÎÔÖÏÕØÐÖÚÒÙÓÏÚÔÐÚÖÑÚÙÒÛÜÔÜÞ×ÞߨßâÛàãÜáåÜáæÝáçÞáèßâèßâéàãêàãéàãéßâéßâèßâèßâçÞáæÝàåÜßãÚÝáØÝàÖÜßÕÛÝÔÚÜÓØØÐÖÓÌÒÍÅÍŽǻ³¿´­¹±ª¸®¨·®§µ´­¹¿¸ÃÊÂÌÓÌÔÚÒÙÜÕÜÝÖÝÞ×ÝàØÞâÛàãÜáãÝâãÜâãÜâãÜáãÛßãÚßâÙÞáØÞàØÝàØÝß×ÜÞ×ÜÝÖÛÞÖÛÞÔÙÝÔØÜÒÖÛÐÔÙÏÒØÍÑ×ÌÒ×ÍÑÙÎÒÙÍÒÚÏÒÛÏÒÛÏÒÛÏÒÚÎÒÙÏÓÙÏÓÖÍÓÖÍÓÕÍÓÕÍÔÔÍÔÔÍÔÔÍÔÕÍÕÕÎÕÕÍÕÕÎÕÕÎÕÖÎÕÖÎÕÕÎÖÔÍÕÓÌÕÒËÔÓËÕÔÌÖÕÍ×ÖÎØØÑØØÑØÚÓÚÚÓÚÛÔÜÜÔÞÝÖàÝÙáÞÙâÞÙâàÚãàÚãàÙãßÚâßÚáàÚááÚáâÛáâÛàãÚàâÙÞãÙÞäÚÜäÙÜâ×ÚÞÔ××ÍÒÑÇÍǽǿµÁ¶­¹¯¥²¬£°¬£±«¢°ª¢¯ª¢¯«¢¯¬¤±²©µ¼°»Å¹ÀÏÁÆÖÈËÛÎÑßÒÕâÕØâ×ÚáÖÙÞÓÖÜÑÔÚÏÒÙÎÑ×ËÐÔÉÏÓÉÏÒÉÐÒÊÒÔÌÓ×Ï×ÒÎÙÓÏÚÕÏÙ×ÑÛÚÓÛÜÕÜÞ×ÞàÙßáÚßäÚàåÜàæÝàèßâéàãêáäéàãêáäéàãéàãéàãéàãèßâèßâçÞâåÜàäÛàâÙßàØÝÞÖÛÝÖÛÚÓØØÐÖÓËÓÍÅÏžȽ¶Â´®½¯ªº¬¨¸¬¦µ³­º¿¹ÄËÅÏÓÍÖÚÓÛÝÖÝÝÖÝߨßàÙàâÛáãÜâãÜââÜââÜáàÙßàØÞߨÞߨÝߨÞß×ÝÞ×ÜÝÕÛÜÕÛÜÔÚÜÔÚÛÓÚÚÑØÙÐÖ×ÏÕÕÌÓÕÌÓÕÍÓÖÎÔÖÍÓ×ÎÓØÏÔØÏÔØÎÔ×ÎÓ×ÎÔ×ÎÔÖÎÔÔÎÔÔÍÓÔÌÔÔÍÕÔÍÖÕÎÖÕÎØÕÎØÕÏØÕÎ×ÔÍÖÕÍÕÕÍÖÕÍÖÔÌÕÓËÕÓËÕÔÌÖÕÍ×ÖÎ×ÖÏÖØÑØØÑØØÑØÚÓÚÛÓÜÛÔÞÛÖßÝØáÞÙâÞÙâßÙãàÙãàÙãàÚááÚââÛââÛâãÜâãÜáãÚàâÙÝãÙÜäÙÜãØÛàÕØÚÐÔÓÉÏÉÀÉ¿¶Â·­»¯¦µ«¢°©¡¯¨¡¯¨¡¯¨ ®§ ¯§ ®§¡¯ª¢±²¨µ¼±»Æ¹ÀÏÁÆÖÉÌÛÎÑßÓÖàÕØÞÓÖÜÑÔÙÎÑ×ËÎÓÈËÑÅËÍÂÈÊÁÉÉÁÊËÄÏÏÈÒÕÍÖÒÎÙÒÎÙÒÎØÕÐÙ×ÑÚÚÓÚÜÕÜß×ÝߨÝáÙÞåÛàæÝàçÞáêáäêáäêáäëâåéàãéàãéáäêàäêßåèàåçßäçÝãåÜâãÛàáÚßߨÝߨÜÜÕÛÚÒÙØÑ×ÔÌÖÎÉÒÇÁͽ¸Ä´°¾¯¬¼­©¹¬§·´¯¼Á»ÆÍÇÐÔÎ×ÛÕÜß×ÞߨßàÙàáÚáãÜããÜââÛâàÚàߨßÞÖÝÞ×ÝÞ×ÞÞ×ÝÞ×ÞÜÕÜÜÕÜÜÕÛÛÓÛÛÔÛÚÓÚÙÒØØÐØÖÏÖÖÍÔÔÍÔÕÍÔÕÎÔÕÍÔÕÎÔÕÎÔÖÎÔÖÏÕÖÎÕÕÎÕ×ÎÕÖÎÕÕÎÕÔÍÕÕÎÕÕÎ×ÕÎ×ÔÎ×ÔÏØÕÏØÔÏØÓÎ×ÓÎ×ÓÌÕÓÌÖÔÍ×ÔÌÖÔÌÖÔÌÖÕÍ×ÕÎØÕÍ×ÖÎØ×ÐרÐÚÙÐÚÙÒÚÙÓÜÙÔÝÚÕÞÜ×àÝØáÞÙâÞÙâÞØâÞØáߨàߨààÙàáÙàâÚàâÛßãÛßãÙÜäÙÜãØÛáÖÙÜÑÔÕÊÐÍÂÊúķ®»°¦¶©¢±¨¡¯§ ¯¨¡°¥Ÿ®¦Ÿ®¦Ÿ­¦Ÿ®¦Ÿ­§ ®«£±´«·¿³¼Ç»ÂÐÄÉÖËÏÛÐÓÛÐÓÛÏÒÚÌÐ×ÉÍÒÆÉÍÂÇȾŹ¿¶Á¾·ÃľÊËÅÏÔÍÖÒÎÙÒÎÙÒÍØÓÎÙÕÏÙØÑÙÚÓÚÝÖÜÞ×ÜàÙÞãÛáåÜáçÝãéàäëáäêáäëâåéàãéàãéáãçáäçáåçáåèàåæßäåÞãäÝââÛàáÚßàÙÞÞÖÝÜÔÛÛÔÛÙÒÛÖÑÚÐËÕÆÂͼ¸Åµ±À±¬»­¨¸®©¸¶±¾Ã½ÈÍÈÑ×ÐØÜÕÜàÙàáÚáàÙàâÛââÛââÛâàÙàߨßÞ×ÞÝÖÝÝÖÞÝ×ÞÝ×ÞÝØßÝÖÝÛÕÝÙÔÝÚÓÝÚÒÜØÒÜØÑÚ×ÐÙ×ÏØÖÏØÖÎØ×ÏØÕÏØÕÏ×ÕÎ×ÕÏ×ÖÏ×ÖÏ×ØÐØØÐØØÑØ×Ð××Ð×ÖÏØÕÐÙÕÐÙÔÐÙÕÐÙÔÐÙÔÐÙÔÏØÒÌÖÑÍÕÑÌÕÓÌÕÔÍÖÔÌÖÔÎ×ÕÎ×ÕÍ×ÖÎØ×ÏÙ×ÏÙ×ÏÙØÑÚØÒÜÙÔÝÙÔÝÛÖßÝØáÝØáÝØáÝØáÝØáÝÖßÜÔÞÜÔÝÜÕÝÜÕÜÝÕÜß×ÜâØÜãØÛãØÛã×ÙßÓÕÙÎÑÑÆÌȾƽ³¾²¨¶«£±¨¡°¦Ÿ¯¦Ÿ®¥ž­¥Ÿ®¥ž­¥ž­¥ž­¥ž­¦Ÿ®¦Ÿ®®¥²·®¹Â¶¿Ê¿ÆÑÆËÓÇÍÕÊÍØÊÎÖÈÌÒÆÉÌÀÆÅ»Ã¾µ¿¶­º³¬º¶¯½À¹ÆÊÃÎÒÊÓÓÏÚÒÎÙÒÍÙÔÍØÔÏØ×ÐÙÙÑÙÛÔÛÝÖÜߨÝáÚßãÜáæÝãèÞäéàãêáäëâåéàãéàãéàåèáæèáæèáæèáæçàåæßäåÞâãÜáâÛàáÚààØßÞ×ÞÝØßÜ×ßÛÖßÖÓÜÏÍÖÈÃϾºÇ¶±À±¬»¯ªº°«º¸²¿Å¿ÊÏÉÓØÑÙÝÖÝàÙààÙàáÚááÚáâÛâàÙààÙàÞ×ÞÞ×ßÝ×àÝ×àÜ×àÜØàÜ×àÛÖßÚÕÞÚÕÞÙÔÝÙÕÝØÔÝØÓÜ×ÒÛ×ÑÛ×ÑÛ×ÒÛÖÑÚÖÑÚÖÑÚÕÑÚÖÒÛÖÑÚ×ÓÛÙÒÛÚÒÚÚÒÙØÓÛØÒÚÖÑÚÕÐÙÕÐÙÕÑÚÔÐÚÓÏÙÒÍØÑÌÖÐÌÕÐËÔÑËÕÑÌÖÒÍÖÒÍÖÒÍÖÕÍ×ÖÎØÖÎØ×ÎÙÖÐÚ×ÒÛ×ÒÛÙÔÝÚÕÞÛÖßÝØáÜ×àÝØáÜ×àÚÕÞØÓÜØÐÚ×ÏÙÖÎØÖÏ××ÏÖÚÑ×ÝÓ×àÕØáÕØáÕ×ÜÐÒÖËÎÎÂÉŸ®º¯¥³¨¡°¦Ÿ¯¥®¤®¢œ­¢­£¬£¬¤¬¤¬¤¬¥ž­¨¡¯²©µ½³½Ä¹ÂɾÅÍÁÇÐÄÈÒÅÉÐÄÈË¿ÅøÁº±»²ª¸­¦´­§¶¶¯¼ÂºÅÌÃÍÔÊÒÓÏÚÔÐÚÔÏÚÓÎØÔÏØÖÏÙØÐÚÚÓÚÜÔÛߨÝàÙÞâÛàãÜáèÞãèßãéàãêáäéàãéàãéàäçáæçàåçàåçàåçàåæßäåÝääÝäãÜãâÛâáÚáàÙáßÙâÝÙâÛØáÛØáÖÓÝÐÌ×ÉÅн¹Æ¶±À³­½°¬»²­¼»µÁÆÀÊÑÊÓÙÒØÝÖÝàÚáàÙàáÚááÚáàÙààÙàߨßÞ×àÜØáÝØáÝØáÝØáÝØáÝØáÜ×àÜ×àÛÖßÜ×àÚÖßÛÖßÙÕÞÙÕÞÙÔÝ×ÔÝ×ÓÝÖÒÝÖÓÜÖÓÜØÓÜØÓÜØÓÜÚÕÞÚÕÞÛÕÞÙÔÝÙÔÝØÓÜØÓÜ×ÒÛÖÒÛÔÐÚÒÎÙÑÍØÐÌ×ÏËÖÐËÖÑËÖÑËÖÑÌÕÒËÕÒÍÖÔÎØÕÎØÖÏØÖÐÙÖÑÚ×ÒÛØÓÜÙÔÝÚÕÞÛÖßÝØáÝØáÜ×àÛÖߨÓÜÕÏÙÓËÕÏÇÒÍÅÏÍÃÏÎÄÎÒÇÎÖÊÏÚÍÑÜÎÒÝÐÑÙÍÐÒÇËË¿ÆÁ¶¾¶¬¸¬£²¦ž¯¤®¢œ­¢œ­¢œ­¢œ¬¢¬£«£œ«£œ«£œ«¥ž­¦Ÿ®¬£±·­·¾´¼Ä¹ÀÇ»ÁË¿ÄʾÄǼÃÁ¶¿¸®º¯¨µ©¢²©£²°©¸¼³ÀǽÇÑÇÎØÎÔÔÐÛ×ÒÜ×ÒÛÖÑÚÕÐØ×ÏÙ×ÏØÚÓÚÜÕÛÞÖÜàØÞáÚßâÛàãÜáæßäèßäèßãèßâçÞáçÝãæÝãåÞãæßäæßäæÞäæÞåäÞååÝååÞåäÝäâÝäáÜäàÛäßÛäÝÚãÜÙâÛØáØÓÞÓÎÙÈÄϼ¸Å·²Á³¯¾³®½´¯½¼µÂÆ¿ÉÑÉÒÙÑØß×ÞáÚàáÚáàÙàáÚááÚááÚáàÙàÞÙâßÚâßÚâßÚãßÚãàÛäßÚãÞÙâßÚãßÚãßÚãÞÙâÝØáÞÙâÜØáÛ×áÚÖáÙÕàÙÕàÙÖßÙÓÝÙÔÝÚÕÞÛÖßÛÖßÜ×àÜ×àÚÕÞÙÔÝÚÕÞØÓÜ×ÑÛÔÏÚÒÎÙÒÎÙÐÌ×ÐÌ×ÐÌ×ÐÌ×ÐËÖÐÊÕÐËÖÑÌÖÓÎ×ÔÏØÔÐÙÖÑÚÕÐÚ×ÑÜÖÓÝØÕÞÛÕÞÛÖßÝØáÝØáÛÖߨÓÜÕÐÙÒËÔÍÅÏŽÉÁ¸Å¿µÂÂ·ÃÆ¹Ã̾ÅÒÄÈÔÆÊÖÈÌÔÆÊÏÃÇȼþ³¼²©´ª¡±¤®¡›¬ š¬ š« š« ›¬ š«¡›¬¡œ¬¡œ¬¢œ«£¬¥ž­¨Ÿ¯¯¦³¸­¸¾²»Ã¶½Ã·½Â¶½½²¼¶¬¸®§´¨¡±§ °­¦µ¸¯¼ÄºÄÎÃÊÖËÑÝÑÖÕÐÚØÓÜØÓÜØÑÛ×ÐÚØÐÚØÐÙÙÒÚÚÔÛÝÕÜÞÖÝߨÞáÚàãÛáäÝâåÞãæÝãæÝâæÝâæÜáäÝâäÝâåÞãäÝääÝääÝääÝääÞåãÞåãßåãßçáÝæàÜåÞÜåÞÛåÞÚäÝÚãÝÙâÚÔÞÓÎØÈÃϾºÇ¹´Â¶±À³¯½´­º¼´ÀƾÈÑÉÑØÑØÞ×ÝáÙáàÙàáÚááÚááÚáßÛâàÚäàÛäàÛäàÛäáÜåáÜåáÜåáÜåáÜåâÜåáÜåßÜåÞÛäÞÛåÞÛäÝÙãÜØâÛØâÜÙáÜ×àÛÖßÛÖßÛÖßÜ×àÝØáÝØáÝØáÛÖßÚÕÞÙÕÞØÔÝ×ÒÛÕÐÚÕÐÚÓÏÚÒÎÙÑÍØÑÍØÐÌ×ÐÌ×ÏËÖÏËÖÑÌ×ÓÍØÔÏÙÖÑÚÖÐÚÕÐÛÔÐÛÔÐÛÖÒÝØÒÝÙÔÝÚÕÞÚÕÞØÓÜÖÑÚÒÍÖÍÆÐŽɻ±À±§º¯¤¹±¦¸·ª¹½¯»Åµ¿Ê»ÁοÄÎÁÅɽÃ÷¿¹®¹¯¥³¥¯ ™¬ž˜¬œ˜«œ˜«žšªŸš« š« š«¡œ¬¡œ«¡œª£¬¤¬¤ž­©¢°²§³·«¶¼¯¹»¯¹¸®¹´«·®¦´§ °¥ž¯©¢²µ«¹À¶ÀË¿ÇÔÈÎÚÏÔàÕØÖÒÛØÓÜÚÓÝÚÒÜÚÓÚÚÒÚÙÒÚÚÓÚÛÔÛÝÕÜÞÖÝß×ÞáØßáÚáäÜãåÞãåÞâäÝâäÜáäÝáäÜáäÜâãÜããÜããÝäâÝåâÞåâÝæãÞçãÞæâÞçáÝæàÝæßÜåßÛæÞÚåÞÛäÞÚãßÙâÚÕßÔÏÙÌÆÒÁ½ÉºµÃ·²Á´®½µ­º¼³¿Æ¾ÈÑÉÑÚÑÙÞÖÝàÙààÙàáÚááÛãàÛäáÜåáÜåâÝæâÝæâÝæãÞçãÞçãÞçâÞçâÞçáÞçáÞçáÞçáÞçàÝæßÜåßÛäàÛäàÛäßÚãßÚãÞÙâÝØáÝØáÞÙâÞÙâÞÙâÞÙâÝØáÛÖßÚÕÞÙÔÝØÓÜ×ÒÛÖÐÛÓÐÚÓÏÚÒÎÙÑÎØÑÍØÑÍØÐÌ×ÑÍØÑÍØÒÍØÓÎÙÓÍØÑÍØÐÌ×ÐÌ×ÐÌ×ÓÍØÔÎÙÕÐÙÔÏØÓÍ×ÒÌÖÍÇÒǿ˽³Â­£¶ž•®˜¬š¬¡•®ª±³¥µ½¯ºÃ¶½Ä¸¾Ã¶½¼°»³¨µ©¡° ™¬š•ª˜”¨š•©š–ª›—ª™«ž™ª š« š« ›«¡›ª¡œ«¢œ¬¢œ¬£­©¡¯®¤²²§³²§µ¯¦´ª¢²¦Ÿ¯£®¤Ÿ°­¦´¸¯¼Ã¹ÃÏÂÉ×ËÑÝÒÖâ×ÚØÒÛÙÓÜÚÓÜÚÔÚÛÔÛÛÔÛÛÔÛÜÔÛÝÕÜÝÕÜß×ÞߨßߨßâÛââÛâäÜãâÛâäÛâäÜâãÜãâÛãâÛããÛâáÜäáÜæáÝåàÜåàÝæáÞçáÝæàÞçàÝçßÝæàÛçßÛæßÛæßÜåáÜåáÜåàÛäÜ×àÖÑÚÌÇÒ¾ʺµÄ·²Á¶°½µ®»½´¿Ç¾ÈÑÊÑÙÑØßØßâÛâãÜãáÜãâÝäâÝæâÝæãÞçäßèäßèäßèäßèãßèáÞçâßèâßèãàéãàéãàéãàéãßèãÞçáÝæâÝæáÜåàÛãàÛäàÛãàÛäàÛäàÛäàÛäßÚãÝÙâÜ×àÛÖßÚÖßÚÕÞØÓÜ×ÒÛ×ÒÜÔÐÛÓÏÚÓÏÚÓÏÚÒÎÙÒÎÙÑÍØÏËÖÎÊÕÌÈÓÌÈÔÊÆÒËÄÐÊÄÐÌÆÑÎÈÓÎÈÓÏÉÓÍÈÒÌÆÑÉÃÎÇÀË¿·Ã´ª»¡™°‘ˆ¦…} €xŸƒ|¡†¥ž“«ª ±´©¶¸­¸¸­¸²¨¶«¢±£š­™“©–§”¥”‘¦–“¨™”©›—ª›˜©œ˜¨Ÿ˜ªŸš©Ÿšª ›ª œª¡œ« š«£­¦ž®§Ÿ¯¦Ÿ¯¤¯¢œ®¡œ¬¢®¥Ÿ°®§·º±½ÅºÃÏÂÉÖÊÐÝÒÖãØÛØÒÛÚÓÜÛÔÛÛÓÚÛÔÛÜÔÛÜÕÛÝÕÛÝÕÜÞÖÜß×ÞߨßàÙààÙàâÚââÛãâÚãâÚââÛãáÛâáÚãàÚãàÚãàÛäàÛäßÛäÞÜäßÜåàÝæàÜæàÝçßÜæàÛçßÜçàÛçßÛæàÜæàÝåâÝæâÝæáÜåÝØáÖÐÚÍÈÓÿ˻¶Ä¸³Á¶®»¶­º¾µÀÈ¿ÉÑÉÒÙÒÙߨßãÜãäÞäâÞäâÝæãÞçãÞçäßèäßèäßèåàéãßèáßèâßèâßèâßèäáêæáêæáêåàéåàéäßçâÞåãßåâÞäãÞäâÝåáÝäáÜåàÛäáÜåàÛäÞÙâÞÙâÝØáÜ×àÛÖßÛÖßÚÕÞÙÔÞØÓÝÖÑÜÔÐÛÓÏÚÓÏÚÒÎÙÎÊÕÊÆÒÆÂÏÄÀÍÿÌýÊýÊžÊÅ¿ËÈÂÍÉÂÍÉÃÎÈÁÌÆ¿Êûƿ¶Ã·­¼ª ´š‘«ˆ€¢yp™ng“qj•}vœ…£š‘¨¤›®© ±«¢²¨ ±¢š¬š“¨“¤Ž‹£‰¢Œ¤’¥”’¦—”¨™•¨š—¨œ—§˜¨Ÿ™ª šª š« š«¡›¬ š¬ š¬ š¬ ›­Ÿš­Ÿš® ¬ ­¥Ÿ°®§µº±¼Ã¹ÃÌÀÈÓÇÍÛÐÔáÖÙÚÓÛÛÔÛÜÕÜÝÕÜÜÔÛÝÕÛÝÖÛÝÖÛÝÖÛÞÖÜß×ÞߨßàÙááÚãâÙäàÚãßÙãàÚãàÛäßÚãàÛãßÚäßÛäßÛãÞÛäÝÙãÞÚåÞÚäÞÛåÞÛæÞÜæÝÜæÝÛæÝÜæÞÜæÞÛåßÛçáÝæâÝæãÞçâÝæàÛäÜ×àÖÑÚÍÈÓ¾ʺµÄ·±¿µ®»¶­º½´¿Ç¾ÈÑÉÓÚÓÛàÚàâÞäâÞåãÞæãÞçãÞçäßèåàéåàéåàéäßèãßèáÞçâßèâßèåàéæáêçâëæáêåàéäàçäàæâßääßååÞåäÞääÝäâÜäàÛäáÜåàÛäßÚãÞÙâÝØáÝØáÜ×àÜ×àÜ×àÛÖßÚÕÞÙÔÞÖÒÜÔÐÛÓÏÚÐÌ×ËÇÓÅÁο¹ÉºµÅ¹´Ã¸±Á¹²Àº³Á»µÃÀ¸ÅûÇÇ¾ÊÆ¾ÉûƾµÁ¸®½®¥µ —®’‰¦ƒ{žtl–hbŽgaŽqj“€yœ†£—§–ª ™­ž˜¬™“¨‘Œ£‹‡¡ˆ…Ÿˆ†Ÿ‹ˆ¡Š£‘ޤ”‘¦•“¦˜”§™–¨›—¨—¨ šªŸšª šª š« ™¬Ÿ™¬ž™¬žš­š¬ž›­Ÿœ¬Ÿ¬¤Ÿ¯®¦´¸¯»Á¶ÀɽÅÐÅË×ÌÒÞÓØÝÖÞÝÖÝÜÕÜÞ×ÜÝÖÛÝÖÛÜÕÚÞ×ÜÞ×ÛÝÖÜß×Þß×ÞߨàáÙãáÚäßÚãßÚãßÚãßÚãßÚãßÚãàÛäßÛãÝÙäÜØãÝÙäÝÙäÝÚåÜÛåÛÚäÝÜæÜÛåÜÛåÜÛåÝÜæßÛçàÜçáÞæàÞæâÞçâÝæâÝæàÛäÜ×àÕÐÚÍÇÓ¾ʺµÃ·±Àµ®¼µ®º¾´ÀÇ¿ÉÒÊÔÛÔÜàÚââÞäâÞåâÝçãÞçåàéåàéæáêæáêäàéãßèâÝæäßèäßèåàéçâëçâêçâêåàéåàèãßèåÞååßææßææßæäÝääÝäâÝåàÛäàÛäáÜåßÚãßÚãÞÙâÞÙâÞÙâÞÚãÞÙâÝ×àÛÖßÙÔßÖÑÜÓÎÙÎÊÕÈÃÐÀ»Ë¸²Â±«½­§º«¥·ª£¶ª¤¶¬¦·®¨¸³¬»¸±¿¾µÂ½µÁº±¾²ª¹©¡³›“ªŒ„¢w›rj“gac^‰jdŽvp•ƒ}Œ‡¢’¥–§–¦‘£Š†Ÿ…œ‚œƒ‡„‰† Š£‘ޤ“‘¥•’¦—“¦™–¨œ–§ž™©Ÿ™ªŸ™ªž™ªžš«š¬žš­™¬žš­ž›­ œ¬ œ­£ž®«¤³¶¬¸¿´¾Ä¹ÂËÀÉÒÈÏØÎÔÞ×ÞÞ×ÞÞ×Þß×Þß×ÝÞ×ÜÞ×ÜÞÖÛÞ×ÜÞÖÛÞÖÝß×ÞߨßàØâßÙâÞÙâÝØáÝØáÝØâÝ×âÝØãÞÙãÝÙäÜØãÛ×âÜØãÜÙäÛÛåÛÛåÜÛåÜÛåÜÛåÛÚäÜÛåÜÜæÝÛåÞÛåßÛæßÛæßÜåâÝæáÜåáÜåßÚãÛÖßÖÐÚÌÇÓÁ½Êº¶Ã·²Á³­»´­º¼´¾Ç¿ÉÒÊÔØÒÛÞÙâáÝäâÝæâÝæåàèåàéåàéåàéåàéäßèäßèãÞçåàéäßèæáêæáëçâëåàéåàéäßèåßæåßææßææßæåÞåäÝääÝãâÝåâÝåáÜåàÛäàÛãàÛäàÛäßÚãàÙâáÙâߨáÜ×àÚÔßÙÓÝÔÎÙÎÇÓÅÀμ¶Æ±ª¾¥žµŸ™°—­–¬—¬—«ž—ª š¬¤¯¨¢³¬¥¶¬¥¶©¡³¢›®˜§ŠƒŸ~w™rl“idc_‰eaŠnkyv—‚~œ‰… Œˆ¢Œ‰¡‰†Ÿƒ€š}z—{z–}|™€š„ƒœŠ‡ ‹¡Ž£“‘¤–’¥˜”¦œ–§ž˜¨Ÿ™©ž™©Ÿ™ª™«™¬™¬žš­š­žœ­ ­ ­£®¨¡±±§µ¸®ºÀµ¿Ç»ÄÌÂÊÑÇÏߨßߨßß×ÞÞ×ÝÞ×ÝÞØÜߨÝÞÖÛÞ×ÛÞ×ÛÝÕÜÞÖÝÞ×ßÞØáÝØáÝØáÝ×âÜÖáÜÖâÛÖáÛ×âÜØâÜØãÜØãÛØãÛÙäÛÚäÛÚäÛÚäÜÛåÜÛåÜÛåÛÚäÛÚäÜÛåÝÛåÞÛæÞÚåÞÚåÞÚæàÜåáÜåáÜåàÛäßÚãÛÖßÖÑÛÌÉÔÿ˻·Å·²Á³¬¼³«º¹±¾Ã¼ÈÍÈÒ×ÒÛÝØááÜåâÞçâÞçãßèãßèãßèãßèäßèãÞçäßèãÞçäßèåàéåàéæáêåáéæáéåàéæàçæßææßææßæåÞåäÝääÝääÞäãÞäãÝåãÜäáÜåáÜåáÛäáÚãáÙâàÙáߨáÞ×áÛÖߨÒÝÓÍØÌÆÒÁ¼Ë·±Ãª£¹›”¯’‹¨’‹¥”ަ–¦˜’§˜’¦—’¦—’§š•©œ—ª˜«›–ª˜‘¦’‹¢ˆ‚ž~y˜tn’lgfa‰d_ˆhf‹qo’yx—}šƒ›‚›™{z–vv“ww“xy–||˜€€™„ƒ›‹ˆŸŽŒ¡Ž¢”¤—”¥š–§ž˜¨ž™©Ÿ™©Ÿ™ªž™ªš«™­š­ž›­ ­¡ž®¢ž®¤Ÿ®¨¡°®¥³´ª·¹¯»¿µ¿Ä»ÅÈ¿ÉߨßàÙàߨßß×Þß×ÞàØÞߨÜÞ×ÜÝÖÜÞÖÜÝÕÜÝÖÜÝÖÞÝ×àÜ×àÜÖàÜÖáÛÖáÚÖáÚÖáÚÖáÛ×âÛ×âÜØãÚÙãÛÚäÛÚäÚÙãÛÚäÛÚäÛÚäÛÚäÚÙãÜÛåÜÛåÛÛåßÛæÝÚåÝÙäÞÚåÞÚåàÛäàÛäáÜåßÚãßÚãÛÖßÖÐÛÎÊÕÆÂν¸Æ·²Á±¬»¯©¸¶°½Â¼ÇÎÈÒÕÑÛÜØáàÝæáÞçáÞæáÞçáÞçâßèãÞçäßèãÞçäßèäßèåàéåàéåàéæáêåáèåàççàçæßææÞææßæäÝääÝäåÞåäÞåäßääÞåäÝääÜåâÜåãÛäáÚãàÙáß×àß×áÝ×àÛÖߨÒÝÓÍØÍÆÓû˵®Â¨ ·˜¬„¢†¢Š£–¥—’¦–‘¥–‘¦•¥–‘¦—’¦—’¦–‘¦”Ž£ˆ¡‰ƒ€{™xs“ojŽhdŠdaˆee‰kkqruw”xz•{{–yy”uu‘sttuvx”yy•|}—‚š‡†‹ŠŸ¡’£—“¥›•¦—¨ž˜©Ÿ™©ž˜©ž™ªš«š¬š¬Ÿœ­ ­¢Ÿ®¤Ÿ®§¡°«¢±®¥³±¨µ´ª·¶¬¹º±½¿µÂߨßàÙàߨßàØßàØßß×ÞÞØÞß×ÞÞÖÝÞÖÝÝÕÜÜÕÜÜÕÝÛÔÞÚÔßÚÔßÚÔߨÔßÙÕàÙÕàÙÕàÙÕàØ×áØ×áØ×áÙØâÙØâÙØâÙØâÙØâÚÙãÙØâÚÙãÚÙãÛÙãÛÙãÝÙäÝÙäÝÙäÜØãÜØãÞÙãßÚãßÚãßÚãßÚãÞÙâÛÖà×ÓÝÐÌ×ÇÃнºÇµ²À®ªº®©¸·±¿Â½ÉÌÉÔÕÑÜÛ×âßÛæáÝèáÝçâÞèáßèâßèãßèãÞçãÞçãÞçãÞçäßèäßèåáææáççßææßæåÞååÞååÞåäÝäåÞåäÝäåÞååÞåäÝäåÞåãÜäãÛåàÛäàÚãàØâàØâÞÖàÝÖàÚÕÞØÒÝÒÌØÌÅÓû˷­Â¨ž·™­†¤ˆ¢“Œ¢–¥—‘¥•¥“Ž£“£”¤”¤”¤”£’¢Ž‰Ÿ‡ƒ|˜yt”rnkhŠddˆde†gh‰knorpt‘qtptnrmqqssv‘ux“z|–~€™„„›‰ˆž‹Ÿ’£—“¥›•¦—¨ž˜¨ž˜©ž™©™ªšªž›«œ›¬Ÿ­ ž®£Ÿ¯¦¡°ª£±­¤±¯¦³°§´®¥²¯¦³´«¸º°½Þ×ÞàÙààÙàßÙààØßߨßߨÞß×ÞÞ×ÝÞÖÝÜÔÛÜÕÜÛÔÞÙÓÜØÓÞØÓÞ×ÓÞ×ÓÞØÔߨÔߨÔß×ÕßÖÕß×ÕàÖÕߨÖáØ×áØ×áÙØâÚÙãÙØâØ×âÙ×âÙØâÚÙãÛÙãÜÙãÜØãÛ×âÚÖáÛ×âÜØãÝØãÞÚãÝÙâÞÙâÞÚãßÙâÜØá×ÓÞÐÌØÇÃÏ»¹Ç²¯¿®«»°¬¼¸³Á¾ÊÍÈÔÓÑÜÚØâßÜæáÞèáÝçâßèáßèäßèâÝæâÝæãÞçâÝæâÞæãßåäßææßæåßæåÞåäÝääÝääÝäåÞåäÝääÝäåÞååÞåäÝääÝäãÛäáÛåßÛäàØâߨâß×áÞÖàÜÕßÚÕÞ×ÑÜÓÍÙÍÆÓü˸¯Âª ·š‘­’ˆ¦’ˆ£“‹£–¤–¤”¤“Ž£’Ž¢’Ž£”¤“Ž£“Ž¢‘Œ¡ˆŸˆ„‚~™{v”splk‹fhˆdf‡dh‡fk‰hn‹joŒlqŒmqkpŠmqŒptsw‘ux“x|•}~™ƒ„›ˆ‡Œ‹Ÿ“£—“¥›•¦—¨—¨ž—¨™ª™ªžšªš«žœ¬ ­¢Ÿ®¥ ¯¨¢±¬¤²¯¥³¯¥³¯¦³¯¥³¯¦³±¨µ¶­ºÝÖÝߨßàÙàߨßàÙàßÙàߨßß×ÞÞÖÝÞÖÝÜÔÜÜÔÞÚÔÝØÓÝØÒÝÖÒÝÖÒÝ×ÓÞ×ÓÞ×ÓÞ×ÔÞÖÔÞÕÓßÔÓÞÕÓß×Õà×ÖàØ×áØ×áØÖâØÖáØÖáØÖâØÖâØØáÚÙãÚÙãÙ×âÚÖáÚÖáÚÖáÛ×âÛ×âÛ×âÛØâÜØáÞÚãÞÚãßÚãÜÙâ×ÔÞÐÌ×ÅÂϹ¶Æ±®¾®«»²¯¾¸³Â¾ÊÊÈÔÓÒÜÙØâÞÜæáÝèáÞçáÞçáÞçâÞçâÝæâÝæâÝåâÝåäÞåäÞåäÝääÝääÝäãÜããÜãäÝääÝääÝääÝääÝääÝäãÜããÛäáÚäßÚãßÚãÞØáÞ×áß×àÝ×àÛÕÞÚÕÞ×ÒÜÔÎÙÎÇÓĽ̹±Ä«¡¸œ’®’ˆ¦’‰¤”Œ¤–¤–¤”¤’¢‘¢‘Œ¡’¢‘Ž¢‘¢Œ ˆžˆ…œ‚™|x•us‘nojlŠgk‰ej‰el‰cl‰emŠhpŒjq‹jp‹msqvsw’tx“w{”|˜‚ƒšˆ‡œŒŠž’¢–’¤™”¥œ–§œ–§—¨™ª™«ž›«žš«žœ¬ ®£Ÿ®¦¡±©¢±¬¤±®¤²°¦´°¦´°§´°§´°¨´³©·ÜÕÜÞ×ÞÞ×ÞàÙàߨßÞ×ÞÞ×ÞÝÖÝÝÖÝÝÕÜÛÓÝÛÔÝØÓÜÖÐÛÕÐÛÔÐÛÔÐÛÔÐÛÕÑÜÖÒÝÖÒÞÔÒÞÓÑÝÓÑÝÓÑÝÔÓÝÕÔÞÕÔßÕÔàÕÓÞÖÔàÖÔàÖÔàÖÔß×Öá×ÖàØÖá×ÖàÖÕà×ÔßÙÕàÙÕàÙÕàÙÕàÚÖáÛ×âÛØâÝÚäÞÛäßÜåÜÙâ×ÓÞÎËÖÃÁι¶Å²¯¿±®¾²¯¿¸³ÂÀ½ÊÊÈÔÒÑÛ×ÖàÝÛæáÝçáÞçàÞçâÝæâÝæáÜåàÜäàÝåâÜäâÛââÛââÛâáÚâáÚáâÛââÛââÛââÛââÛââÛââÛââÛâáÙãߨâÝØáÝØáÜ×àÜ×ßÝÖàÜÕÞÚÕÞÚÕÞÙÔÜÔÎÙÏÈÔÆ¿Í¼³Å­¤º“®“‰§’‰¤”‹¤–Ž¥—¥•¥”¤’¢‘Œ¡‘Œ¡‘Œ¢‘¡ŽŒ ŒŠž‰†œ„™~{–xw“rsmojn‹hn‹enŠdnŠeo‹hqŒjsltnvpvrx‘sy“w}•|€˜‚„šˆ‡œŒ‹Ÿ’¢–’¥˜”¥›—§œ—¨›˜©œ™©šªžšª›«Ÿ­¢Ÿ®¥ ¯¨¢±«¤³­¤²¯¦³°§´±¨µ±§´°§´¯¦³±§¶ÚÒÛÝÖÜÞ×ÞߨßߨßÞ×ÞÞ×ÝÜÕÜÜÔÜÚÒÜÙÒÜØÒÛÖÑÛÔÏÚÔÐÛÔÐÛÓÏÛÓÏÜÓÏÛÔÑÜÓÑÝÓÑÝÒÐÜÒÐÜÒÐÜÓÑÝÓÑÜÒÑÝÓÑÝÓÑÝÔÒÞÔÒÞÔÒÞÔÒÞÕÓßÕÔÞÕÔßÕÓÞÔÒÞÕÓÞÖÔÞÕÓÞÔÓÝÖÓÞ×ÕßÚÖáÚ×áÜØãÝÙäÝÚäßÚåÛ×âÔÓÝÍË×ÃÁͺ·Å´±Á²¯¾±®¾¶³Á½ºÉÈÆÒÐÎÙ×ÖàÞÜåàÝæáÝæáÝæâÝæàÛäàÛäàÛäáÚãáÚâáÚááÚáàÙáàØààÙàáÚááÚááÚááÚáàÙààÙàߨáÞ×áÝØáÜ×àÜ×àÛÖßÛÖßÚÖßÚÕÞÚÔÞÚÕÞÙÔÝÕÏÚÐÉÕÈÁξ¶Æ¯¦¼¡”°“‰§‘ˆ¤”‹¤–Ž¥—¥˜‘¥–¥•¤”Ž£’¢’¢‘¡‹ ŠžŠˆœ‡„™‚—|z•ww’rtorŽlsŽirŒhrŒirŒktŽluŽlvkvŽmwpy’t{•x~–}™ƒ…›‰ˆŽŒŸ’¢–‘¥˜”¦š—§›˜¨œ™©šªž›«žœ¬Ÿœ¬ ž®£Ÿ¯§¢±ª£²¬¤³¯¦³¯§´±¨µ²©¶²¨µ±¨µ±§´°§´ØÑÛÚÔÜÝÖÝÝÖÝÝÖÞÝÕÞÜÕÝÛÓÜÚÒÛØÑÛÖÑÛÕÐÛÓÏÚÔÐÛÓÏÛÓÏÛÓÏÛÒÏÛÐÎÚÐÎÚÐÎÚÐÎÚÐÎÚÏÍÙÐÎÚÐÎÚÐÎÚÐÎÚÐÎÚÑÏÛÒÐÜÒÐÜÑÏÛÒÐÜÒÐÜÒÐÜÒÐÜÓÑÝÓÑÝÓÒÝÓÑÝÒÑÜÓÑÝÔÒÞÕÓß×ÕàÚØâÚØâÜÙäÝÚäßÛæÞÚåÚØâÔÒÝÍË×ÃÀκ¸Çµ²Á±®½±®½³¯¾¼¹ÇÇÄÑÏÎÙ×ÕßÜÙãÞÚäÞÛäàÚãßÚãßÚãÞÙâàØáàÙãàÙááÙâß×áàØáߨáàØáàÙààÙààØàߨàÞ×àÝ×àÜ×àÛÖßÚÕÞÚÕÞÚÔßÚÕÞÚÕÞÙÕÝÚÕÝÙÕÝÙÔÞ×ÑÛÑÊÕÉÂо·Ç±¨½¢˜²“‰¨‘ˆ¤“Ф–Ž¥˜‘¦™“§™“¦˜‘¥–‘¤•¤”¤”¢‘Ž¡‘Œ¡ŽŠž‰‡œ†ƒ™‚€˜}|–yz“tx‘qwnvlvjvŽkvmx‘lw‘lw‘nz“r|”w~—z˜‚›…‡œŠ‰ŽŒ ‘¢•’¥˜•§™—§š˜¨œ™©œšªœ¬œ¬Ÿ­¢ž®¥¡°©£±«¤³®¥³°§´²¨µ²©¶²©¶±¨µ²©¶²¨µ±¨´×ÏÙÙÑÛÚÒÜÛÔÞÛÓÜÛÓÝÙÒÜØÐÚÕÏÙÕÏÙÒÍØÑÎÙÑÍØÓÏÚÒÏÚÑÎÚÐÎÚÐÎÚÏÍÙÎÌØÎÌØÍË×ÎÌØÎÌØÎÌØÎÌØÍË×ÍË×ÍË×ÎÌØÏÍÙÏÍÙÏÍÙÏÍÙÐÎÚÐÎÚÐÎÚÑÏÛÒÐÜÒÐÜÐÎÚÐÎÚÑÏÛÓÑÝÔÒÞÖÕߨ×áØ×áÙØâÚÙãÝÙäÛÛåÜÛåÙØâÔÒÝÌÊÖÁÁͺ·Æ³°¿¯¬¼­ª¹°­¼º·ÆÄÂÎËÉÕÐÍØÕÑÜÙÔÞÛÖßÜ×àÞÙâÝØáÝ×áÝØáÝ×áÞØâÞØáß×áß×ààØáÞÖàÞ×ßÞ×ßÝÕàÜÖßÛÖßÚÕÞÚÓÞÙÔÝØÔÝÚÔßÚÔßÙÔÞÚÔÞÚÔÞÙÔÞÚÖß×ÑÜÑÌ×ÉÃѾ¸È±«¾¥›´–Œ©†¤’Ф•ޤ˜¦š“¨›•©š”§š’¦—’§–¥•‘¥•¤’Ž¢‘Œ ŠžŠˆœ‡…š„ƒ™€—{}•w{“tz’oy‘mylw‘my’ly”my“q{–u–x~˜|‚š…›…‡œŠŠžŽŒ ’£”’¥–”§™—§™˜¨š™©œ¬œ¬Ÿ­¡ž®¤¡°¨¢±«¤²­¦³°¦³±¨µ³©¶³©¶³¨µ²©¶³©¶²¨µ±¨µÒÍÖÔÎØÖÑÚØÐÚØÐÚ×ÏÙÖÏØÔÎØÑÌÖÏËÖÏË×ÐÌ×ÐÌØÐÌØÑÍÙÐÎÚÐÎÚÏÍÙÎÌØÍËØÌÊÖÌÊ×ÌÉ×ËÉÕÌÊÖËÉÕÊÈÔÊÈÔÊÈÔÌÊÖÌÊÖÌÊÖÌÊÖÌÊÖÍË×ÍË×ÍË×ÎÌØÐÎÚÐÎÚÏÍÙÏÍÙÏÍÙÑÏÛÓÑÝÔÒÝÕÓß×ÖàØ×áÙØâÙØâÚÙãÛÚäÜÛåÙØâÔÒÝÌÊÖÃÁϺ·Å±®¾ª§·¨¥µª§·²®¾º·ÅÀ½ÉÇÃÎÍÉÔÔÍØ×ÒÛÙÔÝÛÖßÛÖßÛÖßÜ×àÝØáÝØáÝÙâÝÙâÝÙâÝØáÝÖàÜ×àÛÖßÚÕßÚÔߨÒÝØÒÝØÓÝØÒÜØÒÜØÒÝÖÑÜ×ÑÜØÒÝØÓÝÙÓߨÒÜÒÌ×ÊÃÑ¿¹É±ª¾£š³—©†£‰£•¦™’§œ•©—ªœ–©œ–¨›”¨™”¨˜“§–’¥•‘¤”£‘Ž¡ŒŸŒŠŠ‰‡‡›‚ƒ˜}€—z€–v~•r}”nz“n{”pz•r~—u—y€š}ƒœ€„œ‚…‡‰‹‹Ÿ£’¤•“¦–”§˜–©š˜ª›™«œ¬ž­¢Ÿ®¥ °¨¢±«¤³­¦³¯§´°§´±¨µ²©¶²©¶²©¶²ª¶³ª¶²©¶²©¶ÏÊÔÑÌÕÒÍÖÓÍ×ÒÍ×ÒÍ×ÒÌÖÐËÖÎÉÔÌÉÕÌÊÖÍÊÖÎË×ÏÌØÎÌØÎÌØÏÍÙÏÍÙÍË×ÍË×ÌÉÖÌÉÖÌÉÖËÉÕÊÈÔÊÈÔÉÇÓÉÇÓÉÇÓÊÈÔÉÇÓÉÇÔÉÆÔÉÆÔÉÆÕÊÇÕËÉÕÌÊÖÎÌØÎÌØÎÌØÎÌØÎÌØÏÍÙÐÎÚÑÐÛÓÒÜÕÔÞÖÕß×ÖàØ×áÙØâÚÙãÛÚäÜÛåÙØâÔÒÝÌÊÖÂÁι·Å¯¬¼¦£µŸ›­™«¤Ÿ¯­§·´¯¾¾¹ÅÈÂÍÏÉÔÔÏÙØÓÛÚÕÞÛÖßÛÖßÝØáÞÙâÞÙâÞÙâÝØáÝ×áÛÖàÚÖßÛÖàÚÔßÚÔßÙÒÝ×ÓÞ×ÒÝÖÑÜÕÑÜÕÑÜÔÑÜÕÑÜÕÑÜ×ÒÝØÓÝ×ÑÜÓÌ×ÊÄѾ¹È±ª¾£œ³–Ž©Œ…¢ˆ£•ަ™’¨—ªŸ˜«Ÿ™¬Ÿ™«ž˜ªœ–ªš–©˜”§˜“¦–“¥•‘¤”‘¤‘ޡޡŒ‹Ÿ‰‰„†›…™{‚˜v—r|•r~–u˜y‚š|„~„‚†ž…ˆ ‡ŠŸŒ¡Ž¢‘¤”’¥•“§–”¨™—ªš˜«›¬¡ž®¥¡°§¢±¨¢±«¤³­¦´¯¦´±¨´±¨µ²©¶±©¶²©¶±¨µ±©µ²©¶³ª·²©¶ËÇÒÍÈÓÍÈÓÎÈÓÎÈÓÍÈÓÌÈÓÌÈÓÊÇÓÊÇÓÊÈÔËÉÕÍË×ÌÊÖÍË×ÍË×ÎÌØÎÌØÍË×ÌÊÖËÉÕËÉÕËÈÕËÉÕÊÈÔÉÇÓÊÈÔÈÆÒÈÆÒÈÆÒÇÅÑÇÄÑÆÃÒÆÄÒÇÄÒÈÆÓÊÈÔËÉÕÌÊÖÍË×ÌÊÖÌÊÖÍË×ÍË×ÎÌØÏÍÙÒÐÛÓÒÜÔÓÝÕÔÞ×ÖàØ×áÙØâÛÚäÜÛåÜÛåÙØâÔÒÝÌÊÖÃÂι¶Å¬©¹žš¬‘Œ¡‹†›Šž˜©«¦µ¹³ÀÆ¿ÊÎÈÓÔÏÙØÓÜÚÕÞÛÖßÜ×àÞÙâÞÙâÝØâÜØâÜÖàÚÕàÙÕàØÔߨÔߨÓÞ×ÓÞÖÒÝÕÑÜÕÑÜÔÐÛÔÐÛÔÐÛÔÐÛÕÑÜÕÑÜÕÑÜÕÐÛÐÌ×ÇÃϽ¸Æ°«¾¤³—Ž©†¢Žˆ£•Ž¦š”¨ž˜« š«¡›­ š¬ š«—©—¨›–©™”§™”§˜”¦–’¥–’¤”£‘¢Ž ˆ‹žƒˆœ…™{‚šy™y™|„œ†ž‚‡Ÿƒˆ ‡‹¢‹¢£¤’‘¥”’¦–”¨–”¨—•©š˜«œ™¬¢¯§¢±¬¥³­¦´­§µ¯¨¶°¨¶±¨µ±¨µ±¨µ²©¶²©¶²©¶²©¶²¨¶²©¶³ª·²©¶ÉÅÐÉÅÐÈÄÏÈÃÎÈÄÏÉÅÐÈÅÑÉÆÑÈÅÑÇÅÑÉÇÓÊÈÔÊÈÔËÉÕËÉÕÌÊÖÌÊÖÌÊÖËÉÕÊÈÔËÉÕÊÈÔÊÈÔËÉÕÊÈÔÊÈÔÉÇÓÉÇÓÈÆÒÈÆÒÅÃÏÄÂÐÄÁÐÅÂÑÅÂÑÇÄÒÈÆÒÉÇÔËÉÕÊÈÔÊÈÔËÉÕËÉÕËÉÕÍË×ÎÌØÏÍÙÒÐÛÓÒÜÔÓÝÖÕß×ÖàØ×áÚÙãÚÙãÚÙãÜÛåØ×áÓÑÝÌÉÖÅÂϸµÄ¦£µ’£€{’sn…}y–¤ª¥µº¶ÃÆÃÎÐÌ×ÖÒÜÙÔßÚÖßÛ×àÜ×áÜØâÛ×áÙÕàÙÕàØÔßÙÕà×ÓÞ×ÓÞÖÒÝÔÐÛÔÐÛÔÐÛÓÏÛÓÏÛÔÐÛÔÐÛÔÐÛÔÐÛÔÐÛÔÐÛÓÏÚÐÌׯÂμ·Å°¬¾§¡µ›”ª’Œ¤Š£–¦›”©Ÿ˜«¢›­¤œ­£›¬ š«Ÿ™ª—¨œ–¨–§›•§š•¦™•¥—”¥—“¥•“£’‘£Ž …Š‚‡œ†œ€†€†ƒ‰Ÿ†Š ˆŒ£Œ¤¤”“§”“§•“§–”¨–”¨—•©˜–ª™—«œ™¬Ÿœ®¥ ±ª¤³¯¨¶±«·³¬¹´­ºµ­º³ª·²¨µ²©¶±¨µ°§´°§´°§´±¨µ²©¶²©¶²©¶ÆÂÍÆÂÍÄÁÌÄÀÌÄÁÍÄÂÎÄÂÏÆÄÐÆÄÐÇÅÑÈÆÓÉÇÓÊÈÔËÊÖÌÊÖÌÊÖÌÉÖÌÊÖËÉÕËÉÕËÉÕËÉÕËÉÕËÉÕÊÈÔÊÈÔÉÇÓÊÈÔÉÇÓÈÆÒÅÃÏÄÁÎÃÁÍÅÁÐÄÂÐÅÃÐÇÅÑÈÆÒÉÇÓÉÇÓÉÇÓÉÇÓÉÇÓÉÇÓËÉÕÌÊÖÎÌØÐÎÚÒÑÛÔÓÝÕÔÞ×Öà×ÖàØ×áÙØâÛÚäÛÚäÚÙãØ×áÔÒÞÍÌ×ÄÂÏ´±À ¯Šˆœom„c`y|xš—«±®¾Â¿ÌÌÉÕÔÑÜØÔßÙÕßÙÖàÚÖáÚÖáÙÕáÙÕàÙÕàØÔߨÔßÖÒÝÖÒÝÔÐÜÔÐÛÓÏÛÓÏÛÔÏÜÔÐÜÕÑÜÕÑÜÖÒÝÔÐÛÕÑÜÔÐÛÔÐÛÏÌÖÇÃϽ¸Ç³®¿ª¤¶Ÿ™­–§”Ž¥–§œ–ª ™«£œ¬£œ­£›¬ š« š«Ÿ™ªž˜©œ–§œ–§›•¦š–§™–¦˜•¥—”¤”“£¡‰Œž…‰„ˆ„ŠŸ†Š Š¢¤‘‘¦”“§–•¨—•©˜•¨™–©™—«š—ª›—ª›˜«™­Ÿ›®£ž±¨¢³¬¥¶±ª¸µ­ºµ®»¶¯¼¸¯¼´¬¸±¨µ±¨µ°§´°§µ°§µ°§µ±§´±¨µ±¨µ±¨µÃ¿ËþÊÀ¾ÊÀ½ÊÁ¾ÌÁ¿ÍÃÁÎÅÃÏÅÃÐÇÅÒÉÇÓÉÇÓÊÈÔËÊÖÌÊÖÍË×ÌÊÖÌÊÖËÉÕÌÊÖÊÈÔËÉÕËÉÕÊÈÔÉÇÓÉÇÓÉÇÓÉÈÔÉÇÓÇÆÒÇÃÏÅÃÏÄÂÎÄÁÎÄÂÎÄÂÎÆÄÐÇÅÑÈÆÒÉÇÓÈÆÒÈÆÒÇÅÑÉÇÓÊÈÔÌÊÖÍË×ÏÍÙÐÎÚÓÑÜÕÔÞÖÕß×ÖàØ×áÙØâÙØâÛÚäÚÙäÙÙãØ×áÔÒÝÌÊÖÂÀ̲®¾›¬…‚˜if~ol…ŽŒ¢ª©»¾¼ÊÊÈÔÒÑÜ×ÕàØÖàÙÖàÚ×áÚ×áÛ×âÚÖáØÕàØÕß×Ôß×ÒÝÕÑÜÔÐÛÓÐÚÑÎÚÑÎÛÓÏÛÔÑÛÔÑÜÖÑÝÖÒÝÕÑÜÕÑÜÕÑÜÓÏÚÐÌ×ÇÄнºÈ´±À«¦·¡œ¯š”©™’§š”¨ž˜«¢›¬£­£œ¬£œ¬¡›«Ÿ™«Ÿ™ªž˜©—¨œ–§œ–§š—¦™—§™–¦˜•¥•”¤‘‘¢Ž¡Œ¡‹¡‹¢£¤”“§––¨™—©š—ª›—ª›˜ªœ™ªœ™«™¬™¬žš­Ÿš­¡œ¯¦ ²ª¤¶­¦·¯§¸³¬¹µ®»·°½·¯¼³ª·±¨µ¯§´¯§´®¦´®¦³­¦³¯§´¯§´±¨µ±¨µ¿»ÇÀ¼È½ºÇ½ºÉ¿¼ÊÁ¾Í¿ÎÄÁÏÆÄÑÇÅÒÉÇÓÉÈÔËÉÕÌÊÖÌË×ÍËÖÌËÖÌÊÖËÉÕÊÈÔËÉÕÊÈÔÊÈÔÊÈÔÉÇÓÊÈÔÉÇÓÊÈÔÊÇÓÊÆÒÇÃÏÅÃÏÄÂÎÄÁÍÄÁÍÃÁÍÄÃÏÆÄÐÇÅÑÇÅÑÈÆÒÇÅÑÇÅÑÈÆÒÊÈÔËÉÕÍË×ÏÍÙÐÎÚÒÐÛÔÓÝÕÔÞÖÕß×Öà×ÖàØ×áØ×áÙ×âÙÙãÚÙã×ÖàÒÐÜÊÈÔ¿½É°«»›—©}“vs‹‰†¤¤µ¹¸ÇÈÆÓÐÏÛÖÕß×Öà××áØ×áÙØâÙØâØØáØÖá×ÕߨÔßÕÓÞÔÑÝÑÏÛÐÎÚÐÎÛÑÏÛÑÐÛÓÑÝÔÒÜÔÒÝÔÒÜÕÒÝÖÒÝÔÑÛÒÏÚÎÌ×ÇÅѾ»È¶³Â­¨¹¤ž°ž™¬ž—«ž˜« š¬£¬¤¬£œ«¡œ«¡›«Ÿ™ªž˜©ž˜©—¨—§œ–¨›–§™—§™–¦˜•¥•”¤““£‘‘£‘‘¤‘¤‘¤’“¥•”§˜—©œ™ªœ™«™«™ªž›ªž›«ž›¬ ¬ œ® œ® ›®£°¥Ÿ±¬¥·¯¨¸±ª¹±ª¸´­º´­º²«¸®§´«¤³­¤²¬¤³«£³«¤³¬¥³¬¥´­§³­¦³®¦´½¹Å½ºÆ¼¸Ç¼¹Æ¼¹È¿¼Ë¿ÍÅÃÏÇÅÑÈÆÒÊÈÔËÉÕÌÊÖÍË×ÍË×ÎÌ×ÍÊ×ÌÊÖËÉÕËÈÔËÉÕÊÉÔÊÉÕÊÇÓÊÈÓÊÈÓÊÈÔÊÇÓÊÇÓÊÆÒÉÅÑÇÄÐÆÃÏÅÁÍÅÁÍÆÂÎÆÄÐÇÃÐÇÄÐÆÅÐÇÅÑÈÆÒÇÅÑÈÆÒËÉÕÌÊÖÍË×ÎÌØÐÎÚÒÐÛÓÑÛÔÓÝÕÔÞÕÔÞÖÕßÖÕß×Öà×ÖáØ×âÙ×âÚ×á×ÓÞÑÍØÊÅѾºÇ­¨·˜‘¤ˆ‚—Œˆœœ¯´³ÂÄÄÑÏÎÙÕÔÞØ×áØ×áÙØâÚÙãÚÙãÙØâØ×á×ÖàÖÖàÖÔßÔÒÝÒÑÝÑÏÛÑÏÛÒÐÜÒÐÝÒÑÜÓÐÝÓÑÞÓÒÝÔÒÝÕÒÝÓÑÛÑÐÚÍËÖÅÃÏ¿»È·²Á®¨¸¥Ÿ° š¬Ÿ™¬Ÿ™¬£œ¬¤¬£œ«£œ«¢›ª¡œª ™ªŸ™©Ÿ™©—¨ž˜©—¨œ–¨š—§š—¦š—§˜•¥•”¤•“¥”“¥”“¥–”§—•§™˜©œ™ªš©œ™ªš«žš«ž›«Ÿœ¬¡œ­¡­¡ž®¢®¢œ­£®¦ž¯¬¤µ±ª¹³¬º²«¹²«·°©¶¬¥´©£±§ ¯¨¡°©¢°©¢±©¢±ª£±«¤³¬¤²¬¥²­¥³½¹Å¼¸Ä½¸Å¼·Æ¼¸Ç¿½ÊÂÁÌÅÃÏÇÅÑÈÆÒÊÈÔÌÊÖÍËÖÎÌØÏÌ×ÏÌ×ÏËÖÌÊÕÌÊÖËÉÕËÉÕËÊÔÌÉÕÌÈÔËÇÒËÇÓÌÇÔËÇÓËÇÒÊÆÒÊÆÒÊÅÑÉÅÐÇÄÐÈÄÏÇÃÏÈÄÏÈÄÐÈÄÐÈÅÐÉÅÐÇÆÑÉÇÓÉÇÓËÉÕÌÊÖÎÌØÎÌØÏÎÙÐÎÙÑÐÚÔÑÛÕÑÜÔÒÝÔÓÝÕÔÞ×ÔߨÕàØÕàÚÖáÚÖàÙÕàÖÑÝÐÌ×ÇÃÏ»¶Â©¢±˜¢“‹ž›˜«®­¾À¿ÍËË×ÓÒÝØ×áÚÙãÚÙãÚÙãÚÙãÙØâØ×áØ×á×ÖàÖÕßÕÔßÔÓÞÔÓÞÔÒÝÓÑÝÔÒÝÔÒÞÓÒÝÓÒÝÓÑÞÔÓÝÓÓÝÔÑÜÐÏÙËÊÕÅÃνºÆµ°¿¬§·¥Ÿ°¡›­¡›­ š«£œ­£œ¬¤«£œ«¢œª¡›« š©Ÿš©ž™©ž˜©—¨—¨œ–§œ–§œ—§š–§˜•¥—•¥—•¥—•¦—•¦™—§š˜¨œ™©šªœšª™ªžš«Ÿš« ›¬ ›¬¡›¬¡­£ž®£ž­¤Ÿ®¥Ÿ¯¦ °ª£²®§¶¯¨·®§¶«¥´©£±§¢°£ž­¡œ«¤ž­¥ž­¥Ÿ®¦Ÿ®§¡°©¡°§¡°¨¢°¦¡±¼¸Å¼¸Æ½¹Æ½¹Æ½¹È¿½ÉÂÀÌÅÃÏÇÅÑÈÆÒÊÈÔËÉÕÌËÕÎÌØÎÎ×ÐÎØÑÍØÏËÖÍËÖÍËÕÍËÕÎÊÕÎÊÔÌÈÕÍÉÔÌÈÓÌÈÒÌÈÓËÇÒÌÈÓÍÉÔÌÉÓÍÈÓÌÆÑËÅÐÊÅÐÊÄÏÈÄÏÉÅÐÊÅÑÊÇÑÌÈÓËÉÓÌËÕËËÖÌÊÖÍË×ÎÍ×ÏÌØÎÍØÐÏÙÓÏÚÔÐÛÓÏÛÔÐÜÕÑÜÖÒÝØÔߨÔߨÔßÚÖáÙÕàØÔßÓÏÚÍÈÓſʷ°½§ž«“£Ÿ˜©«¨¸»ºÉÈÈÔÐÐÜØ×áÚÙãÛÚäÚÙãÛÚäÛÚäÙØâÙØâÙØâ×ÖàÖÕßÖÕßÖÕßÖÔßÖÓßÖÔÞÖÔßÕÔßÔÒÞÕÔÝÕÔÞÖÔÞÑÐÚÎÌØÉÇÓÁ¾Ìº¶Ä²­¼«¥µ¥Ÿ°¢œ­¡›¬¡›¬¡›«£œ¬£œ¬¡œª¢›ª¢šª ›© š©Ÿš¨˜¨ž˜©—©˜©œ–§œ—§›–¦š—§™—§š˜¨š˜¨›˜¨›˜©œ™¨žšªž™©ŸšªŸ˜©ž˜©Ÿšª¡š¬ ›¬¡­¢­¤ž¯¤ ®¥ ¯¨¡°©¢±ª£²¬¥´¬¦µª¤³¦¡°£Ÿ­ œ«š©œ—¨Ÿš©¡œ«¢­£­£®¢ž¬¢œ­ œ« ›«¾ºÆ¾ºÆ¾ºÆ¿»Ç½»ÇÀ¾ÊÂÀÌÄÂÎÅÃÐÇÅÑÉÇÓËÉÕÌËÖÎÍÖÏÎØÐÍØÑÎÙÑÍØÐÌ×ÏÌ×ÐÍ×ÑÍØÐÌ×ÏËÖÎËÖÎÊÕÍÉÔÎÉÔÏÊÔÐÊÕÐÊÔÐËÔÏÊÓÏÉÒÎÈÒÌÆÑËÅÐËÅÏÊÅÐÊÆÑËÇÒÍÉÔÎÊÕÍÌÖÍÌÖÍÌÖÎÌ×ÎÍØÎÌØÏÌØÎÌØÐÎÙÐÏÙÐÏÚÓÏÚÔÐÛÕÑÜ×ÓÞ×ÓÞ×ÓÞ×ÓÞØÔÞØÔÞ×ÒÝÒÍØËÅÐÁºÅ³ª¶¦›ª¤š©«¤´µµÃÃÃÐÌÌØÕÔÞÚÙãÚÙãÛÚäÛÚäÛÚäÚÙãÚÙãÚÙãÙØâØ×áØÖá×Öà×Öà×Öà×Öà×Öà×Öà×ÖàÕÕßÕÔÞÒÑÛÎÌØÉÇÓÄÂνºÈ´±À®¨¸§¡²£®¡›¬ š« š« ›¬¡œ¬¡›ª£¬¢œ«¡›ª¡šª š©Ÿ™¨Ÿ˜©—©ž˜©—¨˜©œ—¨›˜¨›˜¨›˜¨œ™¨œ™©šªžšªž›ªŸ›ªŸ™©ŸšªŸ™ªŸ™ª š« ›«¡œ¬¡œ¬¢ž­¤Ÿ­¤Ÿ®¦¡°ª£±«¤³«¤³¬¥²«¤²§¢°¢ž­ž›ªš˜§–•¥—•¥™•¥ž™©Ÿšª š« š«™ª›˜¨š–¨›˜©¿»Ç¿»Ç¿»Ç¾»Ç¾¼ÈÀ¾ÊÁ¿ËÃÁÍÅÃÏÇÅÑÉÇÓÊÈÔÌÊÖÎÍ×ÐÎØÐÏÙÐÏÙÑÐÚÒÏÚÓÏÚÓÏÚÒÎÙÒÏÙÒÎÙÒÍ×ÑÌ×ÐÊÔÏËÔÐÊÔÓËÔÓËÕÒËÓÒÊÓÑÊÓÐÈÒÎÇÑÌÇÐÍÇÑÌÇÑËÇÒÌÈÓÎÊÕÎÊÕÐÌ×ÏÌ×ÏÍ×ÐÌ×ÎÍ×ÎÍØÏÌØÎÌÙÏÍÙÏÎØÐÎÚÒÏÙÓÏÚÔÐÛÕÑÜÖÒÝØÓÝ×ÓÜØÓÜØÓÜÙÔÝÕÐÚÐÊÕÈÁ̽µ¿®¤°§ª«£°³®½½¼ËÈÈÔÐÐÛØ×áÚÙãÜÛåÛÚäÚÙãÚÙãÚÙãÚÙãÙØâÙ×áÙÖáÚ×áØÖàØÖà××àØ×áØ×á×ÖàÖÓÞÒÑÜÎÌ×ÉÇÒÃÁνºÈ·³Â¯©º©¢´£®¡›­ š« ™ª¡š« ›« ›«¡œ«¡œ«¡›ª¢›ªŸš© š©Ÿ™¨ž˜©˜©ž—©˜§˜¨˜©™©œ™©š©š©š©š©ž›ªŸ›ªŸš©ŸšªŸ™©Ÿšª ™« š« ›ª¡›¬¢œ­¢¬¤Ÿ®¦¡°¨¢±ª£²¬¥²¬¥²®§´­¦³¥ ®ž›ª˜—§”“£’‘¢’‘¢•“¤œ—§ž˜©—¨œ—¨™•§—“¦˜”§›—©¿»ÇÀ¼ÈÀ¼ÈÀ¼È¾¼ÈÀ¾ÊÁ¿ËÃÁÍÅÃÏÇÅÑÉÇÓÊÈÔÌËÖÏÎØÒÏÚÑÐÚÒÑÛÔÑÛÔÐÛÔÐÛÕÑÜÔÑÛÕÑÛÖÑÚÕÐÙÔÏØÑÌÕÓËÕÓËÕÔÌÕÓÌÓÒËÒÒËÒÒÊÒÑÊÒÑÉÒÏÈÒÎÈÒÏÉÓÏÉÔÎÉÕÏËÖÏËÖÐÌ×ÑÍØÒÍØÐÍØÑÍØÏÎØÎÌÙÏÍØÏÌØÏÍÙÐÎÙÓÏÚÓÏÚÔÐÛÕÒÜØÓÝÙÔÝ×ÒÛ×ÒÛ×ÒÛÙÔÝØÓÜÔÏÙÎÉÒǿʹ°»­ ­«¡­¯¨¶¶µÃÂÂÏÌÌ×ÔÓÞÛÚäÛÚäÜÛåÛÚäÛÚäÛÚäÛÚäÙØâÚØâÛØãÚÖáÙÕàÙÖàÙÖàÙ×âÙ×á×ÔßÓÑÛÎÌ×ÉÇÒÁ¾Í»¸Æµ±Á°«º©£´¥ž¯¢œ­Ÿ™«Ÿ™ª š«Ÿ™ª¡š«¢›ª¡›ª¢›ª¡›©¡š© š©¡™¨ ™¨ž™©˜©ž˜©—¨ž—¨˜¨™©š©ž›ªšªš©ž›«›ªŸ›ªŸš©Ÿ™©Ÿš©ž™©ŸšªŸ™«¡›«¢œ­¢œ¬£­¤Ÿ®§¢°ª£±¬¥²­¦³®§´±ª·®§´¤ ­˜—§““¤‘¢  ”‘¢š–¦ž˜©—¨š”¦–’¥–’¥—“¦˜•¨À¼ÈÀ¼ÈÁ½ÉÀ¼ÈÁ½ÉÀ¾ÊÂÀÌÃÁÍÅÃÏÆÄÐÉÇÓÌÊÕÎÍÖÒÎÙÔÐÛÖÑÜÖÓÞ×ÓÞ×ÓÞ×ÓÞØÔÞÙÔÝÙÔÝØÓÜ×ÒÛ×ÑÚÖÎØÖÎ×ÕÎÖÖÏÖ×ÏÖÕÍÔÔÌÓÓÌÓÒËÓÓËÔÒÊÔÑËÔÑËÕÑÌ×ÒÍ×ÐÌ×ÑÍØÑÍØÒÎÙÓÏÚÒÎÙÓÏÚÒÎÙÑÎØÑÎÚÐÍÙÐÌØÑÌØÒÎÙÓÏÚÕÐÛ×ÑÛ×ÒÛ×ÒÛ×ÒÛ×ÒÛÖÑÚØÓÜÙÔÝ×ÒÛÓÎ×ÌÆÏÁ¹Ã³§³­¡­­¤±²­»¹¹ÇÆÅÑÐÏÛØ×áÛÚäÜÛåÜÛåÛÚäÛÚäÛÚäÛÚäÛÙãÛØãÜØãÚ×áÙÕàÛ×âØ×á×ÔßÔÐÛÍÌ×ÇÅÑÀ½Ê¹¶Å´°¿¯©¹©£´§Ÿ°¤®¤œ­¢›¬ ›¬ ›«¢šª¡›©¡š©£œ«¡›©¡›ª¡›©¡š© ™¨ š¨¡š¨ž™¨ž˜©ž˜¨š©žš©šªž›ªš«ž›«ž›«ž›«žšªž™¨ž™¨Ÿ™¨Ÿ˜©Ÿš©Ÿ™«Ÿ™ª¡›¬ š«¢œ­¢®¤Ÿ®¦ °ª¤²¬¥³­¦³®§´¯¨µª¤³Ÿœ¬””¥Ž ‹ŒžŒŒžŸ’¢™•¦—¨œ–§š”¥–‘¤”£•‘¤—”§Â½É¾É¾ÊÁ½ÉÁ¾ÊÁ¿ÌÁ¿ËÃÁÍÅÃÏÇÅÐÊÈÓÎÊÖÐÍØÓÏÚÖÑÝ×ÓÞÙÕàÚÖàÚ×àÛ×àÚÖßÛÖßÚÕÞÙÕÝÚÔÜÛÔÛÙÒÙØÑØØÑØØÐרÐ××ÏÖ×ÏÖ×ÏÖÕÍÔÔÌÕÔÌÖÔÌÖÓÍ×ÔÏØÕÐÙÔÏØÔÐÙÔÐÙÕÑÛÖÑÛÕÑÛÔÐÛÔÐÛÓÏÚÒÎÙÒÎÙÑÍÙÒÎÙÒÎÙÔÐÛÖÐÛÖÑÛ×ÒÛ×ÒÛ×ÒÛ×ÒÛÖÑÚ×ÒÛØÓÜÙÔÝ×ÒÛÑËÔÈÁË»±¼¯£¯¬¡­¯§´²°¿¿¾ÌËË×ÕÔÞÚÙãÜÛåÜÛåÜÛåÜÛåÛÛåÝÚåÞÙäÝÙäÛØâÚÖáÚ×âÚÖáØÔßÕÑÜÏËÖÇÄо¼É·³Â³®¾®¨¹ª£´¨ °¦ž¯¥®¤œ­£›¬ š« š«¢š«¡›©¡š©¢›ª¡›©¡š©¢›¨¡š¨¡š©¡š© ™¨Ÿš©Ÿ™©™¨š©šªž›©š©ž›ªž›ªšªšªžš©Ÿ™¨Ÿš©ž™¨Ÿ™©ž˜¨Ÿ™ª šª š«¡›¬¢œ­¢œ¬£ž­¥ ¯¨¢±ª£²©¤²¨£²§¢±¢ž®—•§ŒŒ …‡›†‡›‰‰œŒŒž’¢š–§ž˜©ž˜©š”¦˜’¥•£•‘¤—“§Å¿ÊÄ¿ËÿËÄÀÌÿÌ¿ÍÁ¿ÌÃÀÎÅÃÎÇÅÑÌÈÓÎÊÕÑÍØÕÑÜÖÒÝÙÖßÙÖàÛØáÝÙâÝÙâÞÙâÝØàÜ×àÝÖÝÝÖÝÝÖÝÛÔÛÛÔÛÚÓÚÙÑØÙÑØÙÑØØÐרÐ××Ð×ÖÏÖÖÎÖÕÎ×ÖÏØÖÐÙÖÑÚ×ÑÚÖÑÚÖÑÚ×ÒÛ×ÒÛ×ÒÛ×ÒÛÖÑÛÕÐÚÔÏÚÓÏÚÓÏÚÓÏÚÕÐÛÕÐÛÖÑÛ×ÑÛÖÑÚÖÑÚÕÐÙÖÑÚÖÑÚ×ÑÚ×ÓÜØÓÜØÓÜÕÐÙÎÇÐļŵ«µ­¢­­£±¯ª¹·µÅÄÄÑÏÍØÖÕßÚÙãÛÚäÜÛåÜÜæÝÛåÞÙäÞÚåÝÙäÜØãÛ×âÜØãÚÖáÖÒÝÒÎÙÊÆÑ¾˸´Â°«»­§¸ª¤µ¨¡±¨ °¦Ÿ¯¦ž¯¤®£›¬¡›¬ š«¡›« š©¢›ª¢œª¢›©¢›©¢›©¡š©¡š©¡š© š©Ÿš©Ÿ™¨Ÿš©Ÿš©ž›ªš©ž›ªž›©žšªž›«™©™¨ž™©ž˜¨ž˜§ž˜¨ž˜¨Ÿ™©Ÿ™ªŸ™ª š«¡›¬¡¬£­¤Ÿ®¥ ¯¦¡°¥Ÿ°£­žš­—”¨‹ ƒ™|~•—…†š‹Š’¢›—§ž™©Ÿ™©œ–§™“¥˜’¥–’¥˜”§ÇÁÌÇÁÌÆÂÎÆÂÎÅÂÎÄÁÎÃÁÍÄÁÎÅÃÏÇÅÐÊÉÓÏÊÕÑÍØÕÑÜ×ÓÞØÕßÛØáÜÙâÝÚãÞÛäßÚãßÚâßÚàߨßߨßÞ×ÞÞ×ÞÝÖÝÝÕÜÛÔÛÛÓÚÜÔÛÛÓÚÚÒÙÚÒÙÚÒÙÙÒÙØÑØÙÒÙÙÒÚÚÔÛÚÓÛÚÔÜÚÔÜÛÓÛÛÓÜÚÔÜÚÔÝØÓÜØÓÜØÒÜ×ÒÜÖÒÜÖÒÝ×ÓÝ×ÒÜØÓÜØÓÜØÓÜÙÔÝØÓÜ×ÒÛØÒÛ×ÓÜØÓÜØÓÜÙÔÝ×ÒÛÒÌÕÊÂ̾µ¿±¦²¬¢¯¬¦´¯­¼ººÉÈÇÓÒÑÜØ×áÛÚäÜÚåßÛæÞÚåÞÙåÞÙäÞÚåÜÚäÝÙãÜØâÚÖáÔÐÛÍÉÔÅÁͼ¸Ä²­¼¬¦·ª¤´ª¢³¨ ±¨¡°¦Ÿ®¦ž¯¥ž¯¢œ­¡›¬ š«Ÿš© ›©¢œª¢›ª¤©£œª£œ©£œ«¢›ª¢š¨¢œ© ›ªŸ›ª š©ž›ªžš©›ªš©œšª›«œ™©›˜¨œ˜¨˜¨—¨ž—©ž—¨ž˜©Ÿ™ªž˜© š«¡›¬ š«¡›¬¢­¤ž®£ž­¦¡°§¡±¤Ÿ¯žš­“¥‡†œ{|•uwyz”˜Š‰’¢œ–¨¡›«Ÿ™ª—¨œ–§š”¦š•§›—¨ÈÂÍÈÂÍÈÃÎÇÃÏÇÃÏÄÂÎÅÃÏÄÂÎÅÃÏÆÅÐÊÈÓÎËÖÒÎÙÔÐÛ×ÓÝÙÖßÛØáÝÚãÞÛäßÛäàÛäáÜäáÛâáÚáàÙàߨßàØßß×ÞÞÖÝÝÕÜÜÕÜÜÔÛÜÔÛÜÔÛÜÕÛÜÕÛÜÔÛÛÔÛÜÔÛÜÕÛÜÕÜÜÕÜÜÕÜÜÕÜÜÕÜÜÕÛÛÔÛÜÔÜÛÔÜÛÔÜÛÔÝÛÕÝÚÔÝÚÔÞÚÕÞÚÔÞÚÕÞÚÕÞÚÕÞÚÕÞÚÕÞÚÔÝÚÓÝØÓÜÙÔÝÙÔÝØÓÜ×ÒÛÔÏØÏÇÑŽǷ®¸¬¢¯«£²«§·²±ÁÀÁÎÌËÖÕÔÞÚÚäßÚåÞÚåÞÚåÞÚåÞÚäÞÚäÜÙãÝÙãÛ×âØÓÞÒÍØËÅнɸ²À¯¨·«¤³©¢±¨¡±¨ °¨ °¦Ÿ¯§ž¯¥ž¯¢œ­ ™«Ÿ™©Ÿš©Ÿš©¡›©¢œ©£œ©¤ª¤ª£œ©£œª£œ©¢œ©¡›ª ›ª ›ªž›«ž›ªš©œ™ª›™©›™©›™©š—§š˜¨›—§—§—§–§ž˜©ž˜©ž˜©ŸšªŸš«¡š«¡›¬¢œ­£ž®§¢±ª¥´«¦µ©¤³£ž°˜”¨‹ˆŸ||–vw‘xy“€—Œ‰ž•‘¤œ—¨¢œ«¢›« ™ªž—¨œ–§—¨™©ÈÂÍÈÂÍÉÃÎÉÄÐÇÃÐÇÃÏÅÃÏÅÃÏÅÃÏÆÄÐÉÇÓÏËÖÑÍØÔÐÛ×ÓÜÙÖßÛØáÝÚãßÛäáÜåâÝæáÝåáÝãâÛââÛââÛââÚááÙààØßß×Þß×ÞÞÖÝÞÖÜÞ×ÜÞ×ÜÞ×ÜÞ×ÜÞ×ÜÞ×ÜÞ×ÝߨÝߨÝÞ×ÜÞ×ÜÞ×ÜÝÖÜÝÖÛÝÖÜÞ×ÜÞÖÜÞ×ÝÞÖÝÜÕÝÜÔÞÜÖßÝÖàÞÖàÝÖàÝÕßÝÖßÜÖßÛÕÞÚÕÞÚÕÞÙÔÝÙÔÝ×ÒÛ×ÒÛ×ÒÛÒÍÖËÄο¶À¯§³¨ °¨¤´­«»¸·ÅÅÅÑÑÐÚØ×áÝÚäÞÚåÝÚåÝÚäÞÛäÞÚäÜÙãÝÙâÜØáØÒÝÑËÖÊÃÎÁ¹Æµ®»­¦´©¢±©¡±¨¡°§ ¯¨¡°§ ¯¦Ÿ¯¥Ÿ® ›«ž™©ž˜¨˜§ž™¨Ÿš¨¢œ¨¥ª¤ª¤ª¤ª£œ©¤©£›ª¡œ« ›ªž›ªž›ªž›ªœšªš™©™˜¨˜—§™—§š—§š—§›–¦œ—§œ–§œ–§—¨ž˜©ž˜©žš©Ÿšª š«¡›¬¢­§¢±«¦´«¦µ¬§¶¬§¶©¤³ š­’ޤ…‚›~|—„‚š˜‘¤¤œ«¦ž­¢œ«¥ž­¨Ÿ¯¨ž®£šª–§—¨ž™ªÈÂÍÇÁÌÈÂÍÉÄÏÈÃÏÈÄÐÇÄÐÅÃÏÅÃÏÆÄÐÉÇÓÎÉÔÐÌ×ÓÐÚÕÑÜØÕÞÙÖßÜÙâÞÛäáÝæãÞçâÞæãÞåãÜãâÜâãÜããÜãâÛâáÙàáÙàß×Þß×ßàÙßáÚßàÙÞßÙÞáÙÞáØÞߨÞàØÝáØÞàØÞá×ÞáØÞà×ÝàØÜàØÝà×ÝߨÝáØÞàØÞߨÞÞÖÝÞ×ÞÞ×ßÞÖáàØàß×áÞÖàÞÖàÞÖàÞÕàÝÖàÛÕÞÙÔÝÙÔÝØÓÜØÓÜÙÔÝÖÑÚÎÉÒÆ¾É·¯»¨¡°¥ °§¦¶¯¯¾¾½ËËÊÕÔÓÝÛØâÞÚåÞÚäÞÛäÝÚãÞÚãÝØáÞÙâÝ×à×ÑÜÐÊÕÉÃÎÀ¸Äµ¬ºª£³¨¡°¨¡±©¢±©¢±©¢±§ ¯§ ¯¦ ¯¡œ«Ÿš©Ÿš©Ÿš©žš¨Ÿ›§¡š§¤ª¥ž«¥ž«¥ž«¤«£«¡›ª œ« ›ªž›©š©š©›™ª™˜¨—–§–•¦–•¥˜•¥™–¦™—§œ•§›•¦œ–§—¨ž˜©ž˜©žšªŸš«Ÿšª¡›«¤Ÿ­ª¦³¬¨µ¯ª¸°«¹°¬º±¬ºª¥µ š­“Ž£ŒˆŸ¡™ª­¤±«¡®«¢¯¨Ÿ®© ¯ªŸ°ª °©Ÿ¯¢šª–§ž˜©ÈÂÍÇÁÌÇÁÌÉÃÎÈÄÏÈÄÐÇÅÑÅÃÏÅÃÏÆÄÐËÇÓÍÉÕÐÌ×ÒÎÙÔÐÛÖÒÝÙÕàÜÙâÝÚãáÝæäßèäßçäßåäÞåäÝääÝääÝääÜããÛáâÛáâÛáâÚàâÛàãÜáâÛàâÛàãØßâØÞâÙÞãÙßãÙßâØÞâØÝâØÞâØÞâØÞâØÞâØÞãØÞãÙÞãÙÞáÙÞߨÞß×ÞߨßߨààÙààØáàØáàØâß×áß×áß×áÝÕßÜÕÞÚÕÞÚÕÞÚÕÞÚÕÞØÓÜÔÏØËÅÏ¿¸Ã­¨¶£Ÿ°¤¡³©§¹·¶ÅÅÃÐÐÐÚÚÖáÞÛäÞÛäÞÚãÜÙâÝØáÜÖàÚÕßÙÔÞÔÏÚÍÇÒÇÀËÀ¸Ãµ®»¬¥²©¢°¨¡°©¢°ª£±©¢±©¢¯©¢¯§ ®¤ž¬¡›ª¡›ª¡›© ›©¡›¨¢›¨¤ª¤ª¥žª¤ª£œ«¡œ«Ÿš©Ÿ›ªŸœ«ž›ªœ™©š™©™˜©—–§”•¦”“¤”“¤•”¤˜•¥™•¦›–§œ–§œ—¨œ—¨˜©ž˜©ž™ªŸšª šª¡œ«¦¡¯®§µ²¬¸´®»·°½»´À¾¸Ã¼·Â¶°½ª£²£›«­¤±¬£¯«¡®© ­ª¡¯ª¡¯¨ž®§­©Ÿ¯©Ÿ¯£š«—¨ÆÀËÆÀËÆÀËÇÁÌÉÃÎÉÄÐÊÆÑÇÅÐÇÄÐÆÄÐÊÆÒÍÉÔÏËÖÑÍØÒÎÙÕÑÜØÔßÛØâÝÚãáÝæäßçäàçåàææßæåÞååßååßäæßääÞâäÝâãÜáãÜáãÜáãÛáâÜàãÛàãÙßãÙßãÙßãÚÞäÚàãÙÞãÚÝãÚÞâÙÝâØÞãÙßäÚßäÚàãÚÞãÙßãÙßáØÞßÙßàØàߨßàÙááÚàáÙáàØâàØâß×áß×áÝ×àÝÖàÜ×àÛÖßÛÖßÚÕÞÚÕÞ×ÒÛÑÌÖÆÁÌ·³À¨¤´¡Ÿ²¥£¶°®¿À¼ËÌÉÕ×ÓÞÜØâÝÚãÜÙâÛÖßÚÔÞ×ÑÝ×ÑÜÔÐÛÐÌ×ÉÄÏýȼµÁ´­º­¥³©¢°«¢¯ª£°ª¢°ª£°«¢¯©¢¯¨¡®¦Ÿ¬£œ«£ª¢œ¨¢œ¨¢›¨£œ©¤ª¤ª£ª¡œª¡œ« ›ªŸ›ªž›ªž›«ž›ªœ™©˜—¨–•§””¦““¥‘‘£’‘¢”’¤–”¤™•¥›•¦œ–§—¨œ—¨œ—©œ˜©™©šªŸ›ª¡œ«§¢°°©¶¶¯»º´¿¾¹ÃÄ¿ÈÈÂÌÉÃÌÆÀʲ©µª¡®¬¤°¬£¯ª¡®¨Ÿ¬¨ž­§Ÿ¬§­§­§­©Ÿ®ª¡¯¡šªÆÀËÅ¿ÊÆÁËÊÃÎËÅÐÌÆÑËÇÒÊÆÒËÇÒÌÈÓÍÉÓÍÉÔÏËÖÑÍØÒÎÙÔÐÛÖÒÝÚ×àÝÚãáÝåäßçåáçæáççàçæàææàåçàåçàåæßäæßääÝâåÜâåÜáåÛáäÜáæÜâåÛáäÚàåÛàåÚáåÜßæÝàåÜßäÛÞäÛÞäÛÞäÛßæÝàæÜâåÛáäÚáäÚàãÙßáÚßàÙààØßàÙàáÚááÚááÙâß×áß×áß×âߨàÞ×àÜØáÛÖßÛÖßÚÕÞÚÕÞÚÕÞÕÑÛÍÉÔ¾ɳ¯¾¥£µ¤¢µ«©»·´ÄÆÃÏÒÎÙØÔßÛØâÚ×àÙÕÞØÒÜÕÐÚÒÍØÑÌ×ÍÇÒÆÁÌ¿¹Ä¹²¾²«¸¬¥²«£°¬£°«¢¯«£¯«¢¯¬£¯«¢°«¢¯© ­¦Ÿ¬¥ž«¤ª¤ª¤ª¤ª£œª£« œ« ›ªŸ›ªžš©š©œšªš™©›šª˜–¨••§’“¦£¢Ž¡¢‘‘£•“¤˜•¥›–§œ—§œ–§˜¨œ˜¨œ™©šªžšª šª¡œ«¦¡°¯ª¶·±½¿¹ÃÆ¿ÈËÅÎÐÈÒÐÉÒÉÁ˯¦²ª¡®«¡®¬£¯«£¯© ­§«¦¬¨ž­§­¦œ¬§­«¡°¨Ÿ®ÆÀËÇÁËÉÃÍËÆÏÍÈÑÏÉÒÎÉÔÐÍ×ÒÎØÑÍ×ÐÌ×ÐÌ×ÑÍØÑÍØÒÎÙÔÐÛÖÒÝÙÖßÝÚãáÝåäßææáççáèèáèèáçéâçéâçéâçèáåèßåèÞäçÝãçÜãçÝãçÝãçÝãçÝãçÝãæÝâæÝàçÞáæÝàçÞáæÝàæÝàæÝàæÝàçÝáçÝáæÝáæÝßåÛßäÚàãÚßáÚàáÚàáÚáàÙàáÙâáÙãàØâáÙãàØâáØãÞØáÜØáÜ×àÜ×àÛÖßÚÖߨÕߨÕßÓÏÚÊÆÒ¼¹Çª©º¡Ÿ³¦¤·®«¼½¹ÈËÇÒÓÏÚ×ÓÝÙÖߨÓÜÕÐÙÒÍÖÏÊÓÎÈÒÉÃμǼµÀ·°»°©µ­¤±¬¤°«¢°¬£°­¤°­¤°¬¤¯¬£¯¬£¯«£­©¡¬§ ¬¦Ÿ«¥ž«¦Ÿ¬¥ž«£«¡œªš©›˜§›˜¨›˜¨š—§——¨––¨•–¦““¦‘¤£‹Ž¢‡ŒŸ‡‹Ÿ‹ŒŸ¢”’£˜”¤œ–§—§–§œ—¨™©œ™©šªŸ›« ›«£ž­¦¡¯°©¶¹³¾À»ÄÇÂËÏÉÑÔÍÔÔÍÔĻĭ£°ª ­© ­ª¢®«¢¯© ­¨Ÿ¬¤šª¦¬¦œ¬£™©¦ž­ª ¯«¡±ÉÃÍÊÄÍÌÆÏÐÈÒÐËÓÑÌÕÔÐØ×ÓÜÖÓÜÕÒÛÔÑÚÓÐÙÓÏÚÔÐÚÔÏÚÔÐÛÖÒÝÙÖßÞÙââÝääàææàæçàçéâèèâçêãèéâçéãçêáæêàæéßäçÝãçÝãçÝãçÝãçÞãçÝäçÝãèÞâçÞáèÞáéßâéÞáéÞáéÞáèÞáèÞáçÝáçÞáæÝàæÝàåÜàåÛàãÚàâÚàâÚááÚááÚááÙâàØâáÙãàÙãßÙãàÙâÞÚâÝØáÝØáÜ×àÚ×àÙÕßÙÕàÙÕà×ÓÝÐÌ×ÄÁδ²Â¤¢¶¡Ÿ³§¤·³¯À¾ËËÈÓÒÎØ×ÒÛÖÑÚÓÎ×ÏÊÓÌÅÎÈÁËžÈÀ¹Ä»³¾¶®¹°©´­¥±«¤¯¬¢¯­¤¯¬¤¯­£¯­¤¯­£¯­¤¯¬£®«¤®«£®«¢®¨ ®¦Ÿ¬¥ž¬¢œ«Ÿ›ªœ™©™–¦–•¥–•¦•”¥‘‘¥‘¤Ž‘¤Œ£ˆ¡ƒŠŸ‚‰ž‚ˆœ€†›†‰ ’¢—”¤š•¦œ–¦œ–§—¨˜©œ™©™ª ›«£­¥¡®­¦²´®¹º´¾À»ÄÉÂËÏÈÐÓÌÓÔÍÔÀ¸Áª ­ª¢®© ­ª ­ª¡®©¡®¨Ÿ¬£™©¤›«¤›«¢˜©§­ª ¯¬£°ÌÇÐÍÈÑÐÈÒÒÌÒÕÎÖÖÑØÛ×ÝÜØßÚ×ߨÕÝ×ÔÝ×ÔÝÖÓÜÖÓÜÕÒÛÖÓÜÖÓÜÛÖßÞÙâáÜäãßåæàæçàçéãèêãèëãèêãèéãçêáæêàçéàãèßãèßãèÞäèÞäèÞåèÞäèßâèßâëàãêßâêßâêßâêßáêßâêßâêßâèÝàæÝàæÝàçÞáæÝàæÜáãÙßâÜáâÛáâÛâáÚâàØââÙãßÙãÞÙâßÚãßÚãÞÚâÞÙâÞØáÚ×áÚÖàÙÕàÚÖáÚÖáØÔßÕÑÜËÈÔ¿¼Ê®¬¼¤ ´¥ ´­§¹·²Â¾ÊÍÇÒÒÎ×ÔÏØÒÍÖÍÇÐÉÀÊûÅÀ¸Â½µ¿¸°»³«¶¯§²¬¤°¬¤¯­£¯¬¢®¬£¯­£¯­£¯­£¯­£¯­£¯¬¤¯«¤¯¬¢¯©¢®§ ­¥Ÿ¬¡œª š©œ™©—–¥“’¤’’¥£Š ‰Ž¡ˆ¡†Œ ˆžwƒ›w‚›y‚š}„šƒ‡œŠŒŸ‘¢–“£™–¦–§œ—§œ—¨œ™©šªŸš«¢Ÿ®£Ÿ®¨£°±ªµ·²½¼·ÀÀ»ÅÆÁÊÏÈÐÔÍÔÕÎÕ½´¾¨Ÿ¬ª¡®ª¡®© ­«¡®«¢¯¨Ÿ¬¤šª¢™©£š©¢™©¨Ÿ®ª¡®«¢¯ÏÊÓÐËÔÒÍÔÖÏÖØÒÙÛ×ÝßÛáßÜâÝÚàÛØàÛØàÛØàÙÖߨÕÞ×ÔÝ×ÔÝÚÕÞÛÖßÝØààÜâäÜäåÞåæßæéãçêãèêãèëäéêâèëâçëáçêáäêáäêàãèßãéßãéàäéàãéàãêàãìáäëàãêßâìàãëàâëàâêßáêßáêßâèÞáçÝàçÞáçÝáæÜáäÜâãÜâäÜâãÜãáÚâàÚãßÚäßÚãÞÙâÞÙâÞÚãÞÙâßÚãÞÚãÜØãÛ×âÛ×âÛ×áÙÕàÙÕàÖÒÝÑÎÙÆÄз´Ã©¦·¤ ³«¤¶³«»»µÃžËÌÆÑÑËÕÎÉÒÊÃÍĽƽ´¿·¯º³«¶°¨³­¥±¬£°¬¤¯¬£¯¬£¯¬¢®­£¯¬¢®¬¢®­£¯­£¯­£®¬£®¬£®«£®ª¢¯¨ ­¦Ÿ¬¢œ«Ÿš©›˜¨–•¦’‘££Œ „‰ž‡œˆ{…œt‚›l|—l|–p}–w€˜…™‡‰¡•“£™–¦š—§›˜¨›˜¨›˜¨šª£­¤ °£Ÿ®ª¥±´®¹º´¿¾¹ÃÁ¼ÆÆÁÊÐÊÒÔÏ×ÖÏÖ·®¹ª¡®© ­© ­ª¡®«¡®¬¢­© ¬¤›ª¡˜¨¡™©¢š©¨ž­ª¡®«¡®ÒÎÖÓÏÖÕÑ×ÚÓÚÞ×ÞàÛáâÞåâÞäáÞäâÝãàÝãÞÛâÜÙâÛØáÙÕÞÙÔÝÙÔÝÛÖÞÝ×ßßÙàáÛâäÝäæßæèáæéâçêãèëäéêãèëãçìâèëâåëâåêáäéàãéàãêáäêáäëáäìáãíâäìáãìáãíáãíáâíàâìàâëàâêÞáéÞáéÞáèßâçÞáçÝâåÝâäÝâäÜãâÜâáÚãàÚãßÛãßÚãßÚãßÙãÞÛäÝÙãÞÚãÞÚãÝÙäÜØãÜØãÛ×âÚÖáØÔߨÔßÕÑÜÎÊÖÁ½Ê³®¾©¢µ«£´²©¹¸¯½¿¸ÅÈÂÍÎÈÓÐÉÔËÅÏžȽµÀµ­¸°¨³­¥°¬¤¯¬£¯¬£®¬£®­¢®«¡­¬¢®­£¯«¡­­£¯¬¢®¬¢¯­¢®¬£¯«¢®«£¯©¡®§ ­£«žš©š—§““¥¢‹Œ …Šž|„›v™r€˜n~—gy•dw“cv‘iy”r}–z˜…ˆœŽ “’¢—•¥™–§™–§š—¨›˜©šª¢Ÿ®¤ °£¡°¬©µ·²½¾¹Ä½ÈÅÁËÉÃÎÏÊÓÓÏ×ÒËÓ²©´¨Ÿ¬¨Ÿ¬© ­ª¡®ª¡®ª¡­© ­¦«¡™¨ž–¦¡š©© ­«¢¯«¢¯ÕÑØ×ÓÙÙÕÛÜØÞàÜâãßååáææâçæâçæâèåáçãàåàÝåÝÚâÚÕßÙÔÝÙÔÝÛÕÝÝÖÝߨßàÙàâÜâåÞãçàåèáæéâçêãèëäéëãèëâæëâåêáäëâåêáäëàãëáäëáäìàäìáäìáãíâäîâäîâäîââîââîáâìßáìßáêßâêßâéßâèßáçÞâæÝãåÞãäÝããÜãáÚâàÚãßÚãàÛäßÚãÞÚãÝÛãÝÚãÝÛäÝÚåÝÙäÜØãÝÙäÛ×âÛ×âÙÕáÚÖàØÔßÕÐÛÊÅѼ¸Å±ªº­¤´²¨·¸®»¼³ÀĽÉÌÆÑÐÊÕÏÉÔÈÂÍÁºÅ¹±¼±©´­¤°¬¢®¬¢®«¢­«¢­¬¢®¬¢®¬¢®¬¢®¬¢®­£¯¬¢®¬¢¯¬£¯«¢®¬£¯ª£®ª¡®§ ­¤¬¡œ«š—©“’¥Œ¡†ŠŸ~…œu€™l{”fx’`u‘]r]s]rbslx“v~—†›ˆŠ¢“’¤”“¥•”¦—•¨š—¨šª¢Ÿ¯¤¡±¥¢±®«·¹µÁÂ¾ÉÆÂÍÉÅÐÎÉÓÓÎ×ÔÎØÌÅϬ£°§ž«© ­¨Ÿ¬ª ­«¢¯ª¢®© ­§Ÿ«¡š©•¦ ™©© ­«¢®«¢®ÙÕÛÛ×ÝÝÙßàÜâãßäåáæèäééåêêæëéåêèäêæâèãàæÝÚãÛ×àÙÖÞÙÕÞÜÔÛÜÕÜÝÖÝß×ÞàÙßãÜáæßäçàåèáæêãèëäéëãçìäçëâåìãæëâåíáäëàãëàâëßâìáâëàâíáãîããîäãðäãïääïããîââîáãìßáëßáêÞàêßâêÞâçÞáæÝâåÜáãÜâäÜãâÛâáÛãàÛäßÚãàÛäÞÚåÝÚäÝÛãÝÚäÞÛäÞÚåÝÙäÝÙäÛØâÛ×áÝØáÛ×ßÜ×àÚÔÞÓÍØÇÂκµÃ²©¹²¨¶·¬¹¼±½Á¹ÅÉÃÎÏÊÕÑÌÖÌÆÑſʼµÀµ­¸­¤°«¢®ª ¬¬¢®«¡­¬¢®«¡­«¡­«¡­­£¯­£¯¬¢®®¤°­£°­£¯«¡®¬£¯«¢¯¨ ­¦ž¬£«™©•“¦‹¢‚‡žzšp|–du‘[pŽTmRlŒTk‹Uk‹[mŒerŽnx’x€–…™ˆ‰Ž ¢“’¤–”§˜•¨›™©Ÿœ¬¤¡°¦£³¯ª¸¹¶ÂÄÀËÊÆÑÌÈÓÑÎ××ÒÛØÓÜÊÃ˪Ÿ­§ž«© ­¨Ÿ¬ª¢®¬£¯«¢¯ª¢®¨Ÿ¬£š©ž–§Ÿ˜§¦«© ­«¡®ÝÙßßÛáàÜââÞääàåçãèéåêêæëëçìëçìéåêèäéãßåÜÚâÛÖßÙÕÞÙÔÝÛÔÛÛÔÛÝÖÝÞ×ÞàØÞáÚßãÜáæßäçàåéâçëãèíäçìãæìâåìãæíâåëàãìáâëàâìßáíàâíàâîáãïâãïããïääïããïããïããïâãìàáìßáëßáêÞáéÞáçÝàæÜáåÜâãÜâãÛââÛââÛãáÜäàÛäàÚãÞÛãÞÚäÞÚãÞÛäßÛåÞÚåÝÙäÝÚãÝÙâÝØáÜ×àÝØáÜØáÜØàØÓÝÎÊÕĿ˹³À´«¸·¬¸½±½À¶ÂÆ¿ÊÎÈÓÑËÖÏÉÔÉÃοºÅ¹°¼°§²«¡­ª¡­«¡­«¡­¬¢®¬¢®«¡­¬¢®­£¯­£¯­£¯­£¯¬¢®­£®¬¢¯«¢®ª¡®© ­§Ÿ¬¤ž¬™ª–”¨Œ¢†žw€›ly•as’VlŒMh‰KeˆKf‡Of†Thˆ]k‰grpx‘w~•„˜†‰œ‹ ‘£””¦—–¨š˜©š«¢Ÿ®¥¡±©¦µ³±¿¿½ÉÈÄÏÎÊÕÓÐÙÙÔÝÚÕÞÊÂË©ž«§¬© ­©Ÿ¬© ­¬¢¯«¢®ª¡®§ž«£š©ž–§ž—¦¤›ª¨Ÿ¬ª¡®ßÛááÝãâÞäâÞääàåèäéêæëëçìëçìëçìéåêåâèáÝäÚ×àÙÖßÙÔÝØÓÜØÒÛÛÓÚÜÕÜÝÖÜÞ×ÜߨÝâÛàäÝâçßäéáäìãæíäçìãæìâåíâåìáãëàâìáãíàâìàâíàâîáãîáãîââîââîããîââîââîââîââìààìßáëÞàêÞàéÝßçÝàåÜàäÛáâÛàâÚáâÛââÛâáÛãàÛäßÚãàÚãàÚãàÚãßÛäßÛäßÚäÞÙãÞÚãÝØáÝÙâÝØáÜ×àÝØáÝØáÜÖàÕÑÛÌÈÔ»ȹ±¾¶¬¹»°»¿´¿Ã»ÆËÄÏÎÉÔÏÉÔÍÇÒÆÀ˼¶Áµ­¸­¥°«¢­«¡­«¡­«¡­«¡­¬¢®­£¯¬¢®¬¢®¬¢®¬¢®­£¯­£¯­£°«£¯«¡¯ª¡®§Ÿ­¤¬žš©™–¨¥†‰¡x€›kx•_pSj‹Jd‡Fa…E`ƒI`‚La‚Ue„_lˆisrz‘{–‚‡š‰ŒŸ¢””¦˜–¨š™©ž›« ­¡ž®£ °«¨·¸¶ÄÃÁÍÍÉÔÓÏÙ×ÔÝÛÖßËÅͨž¬¥›ª§ž¬© ¬¨Ÿ¬ª¡®«¡­«¢®¨Ÿ¬¥œªŸ—§•¥¢™©§¬ª ­àÜââÞäãßåäàååáæéåêêæëìèíëçìêæëçãéäàæàÜâÜ×àÙÕÞØÓÜ×ÒÛ×ÑÚÙÓÙÚÓÚÛÔÛÝÖÜÞ×ÜáÚßäÛàçÞáéàãëâåíäçìãæíãæíâåìáãìàâíßáíàâíàâìßáíàâíàáíááíááîââíááíááìàáíááìààëßßëÞàéÜÞèÜßæÛÞãÚÞãÙàáÚàâÚàâÚáâÛááÚâàÜåáÜåàÛäàÛäßÚãßÛäàÛäÞÙâÞÚãÞÚãßÙâߨâÞ×áÜØáÞÙâÝØáÝØáÚÕßÕÏÚÊÅп·Ä¸®»»¯º¾²¼Á¶ÁÇ¿ÊÌÅÐÍÇÒÍÇÒÊÄÏýȽµÀ¶®¹°¨³¬£®«¢®«¢®¬¢®­£¯­£¯­¢¯­£¯­£¯¬¢®­£¯­£¯­£¯¬¤°¬£¯«¢¯¨ ­¤ž­ ›«›˜¨“’¦‹¤z€œkw•_oRgŠHa…D^‚C]D]G\~Pa€\i…fp‹px‘z–‚‡›Š ‘‘¤••§™—©šªž›« ­¡ž®¡ž®¥¢²±®½¾¼ÉÊÇÒÒÎÙ×ÔÝÛ×ßÐÉÑ« ­¥š©¦œ«§ž¬¨ ­ª ­ª¢®«£®© ¬§ž¬ ™§•¦Ÿ—§§«©¡­àÜâáÝââÞãäàåçãèéåêìèíìèíëçìèäéæâçâÞäßÛâÛ×àÖÓÜÖÑÚÕÐÙÕÐÙ×ÑÙÙÒÙÚÓÚÜÕÚßÖÜáØÜãÚÝæÝßèÞáëàãìâåíâåìáäìáãëàâíßáìßáëÞàìßáìàáìàáìàáëßàìàáìàáíàáìààìààíßàìßßìÝßéÝÞéÜÞçÛÝåÙÜâØÛá×ÝàØÞß×ÞßÙààÙàáÚááÛäáÛäâÜäáÛãáÛãàÚãßÙâàÙâàÙááÙâàÙáàØààØàߨáÞÙâÝÙâÞÙâÜØáÙÔÞÒÌ×ÇÁÌ»³À·¬¸¸­¸»¯º¿µÁƾÉÌÄÏÍÇÒÍÇÒÉÃÎÆ¾ÉÁ¹Ä»³¾µ­¸°¨³­£¯­£¯­£¯­£¯¬£®­£¯­£¯­¢®­¢®¬¢®¬£¯«¤¯¬£¯¬£¯ª¢¯§ ®¤ž­Ÿ›«—•§£|œmv•`oUgŠLb†D]BZ~BX|FZ}P`€\g„hqŒry‘|–„ˆŒ¢“”¥—–¨œšªŸœ¬¡ž®¡ž®¢Ÿ¯£ °¢Ÿ¯£®´°ÀÆÄÐÐÍ×ÖÓÝÛÖßÔÎׯ¥±¦œ«¦œ«¨ž¬ª¡­ª¡®ª¢®ª¢­¨ ¬¨Ÿ¬¤œª•¦•¦¤›ª¨Ÿ¬ÝÚàßÛáßÛâäàåèäéëçìíéîìèíêæëèäéåáçâÞäÝÙáÙÔÝÕÐÙÔÏØÔÏØÔÏØÖÏØ×Ð×ÙÒØÜÔÚÞÔÙßÖÙâØÚåÚÜçÜßéÞáêßáëàâëàâìàâìàâìßáìßáëÞàëÞàëÞàìßáëÞáëßáìßáíßâìßáëÞàëßßëßßìÞßêÞÞéÜÞèÛÝæÙÜãÙÜâ×ÜßÖÜÞÖÝÞ×ÞÞ×ÞߨßáÙááÚáâÛâãÜãâÜââÚâáÙááÙááÚááÚááÚááÙààÚààÙàáÙààÙáÞØáÞÙâÝØáÚÕÞÕÏÚÊÄϽµÂ³©¶°¦²´§²·«·¿¶ÂÊÂÍÎÈÓÐÊÕÏÉÓÍÆÑÉÂÍžɿ¸Ã¹±¼³ª¶¯¦±­¤¯­£¯­£¯­£¯­£¯¬¢®­£¯¬£®¬£¯«£®«£®¬£¯«¢¯©¡¯¦ ¯ œ«˜•§‹Œ¡}œox•coWf‰Ma†G\DZ~EY|J\}Ub`k‡mtw}•‚†›‹Ž¡’“¥˜—©›šª ¬¡ž®¢Ÿ¯£Ÿ®£ ¯¢Ÿ°¤ ¯¡›¬£®À½ËÏÌÖÖÒÛÚÖߨÓÚµª¶¦ª¦«§ž«ª¡®ª¡­ª¢®ª¡­©¡¬© ­§ž«Ÿ—§œ”¥¡˜¨¨Ÿ­ÚÖÜÛØÞÞÚàãßäæâçéåêìçìëèíêæëçãèãßåßÛáÛÖÝ×ÒÛÓÎ×ÓÎ×ÔÏØÔÏØÖÎØ×ÐרÐ×ÛÒ×ÜÓ×ßÔ×àÔÖãÖØæÙÛçÛÝéÜÞéÞàëÞàëßáìßáìßáìßáëÞàëßàìßàëßáëßàëßàìßáìßáëÞàëÞàêÝßêÞÞêÞÞéÝÝèÛÝçÙÜåÙÛãØÛá×ÛÞÔÜÝÕÜÝÖÝÝÖÝÞ×ÞߨßáÚááÚáâÛââÛââÛâáÚáàÚàâÛââÛââÛââÚááÚááÚààÙààÙàÞ×àÝ×àÚÕÞØÓÜÔÎØËÅн¶Â°§´ªžªªœ¨®¡­¸®ºÅ½ÈÍÇÒÑËÖÓÍ×ÓÍØÐÊÕÌÆÑÇÁÌûƽ´¿¶­¸²¨´¯¥±­¤¯­£¯­£¯­£¯¬£¯¬¢¯¬¢®«¤¯¬¤¯«¢¯«¡®¨ ®¤ž­˜©•’¥ŠŠ¡}›ry•hr]j‹Tc‡M^ƒK\€L\Sa‚]h†iquz”€ƒš‰Œ ’’¦˜—©œ›«Ÿ­¡ž®¢Ÿ¯¢Ÿ®£ ¯£¡¯¤ ¯¦¡°¤ž® š««¦·ÎÊÔÖÒÛÛ×ÞÝÖݾ³½¦«¤›ª¥œ«© ­«¢®© ­ª¡­© ­ª¡®¨Ÿ¬£›ªœ•¤–¦¥œ«ÕÒØØÔÚÛ×ÝàÜáåßäéâçêäéëåêéäéçâçâÞäÝØßØÓÛÔÏØÒÍÖÒÍÖÒÍÖÓÍ×ÕÎ×ÕÎÕ×ÐÕØÐÕÛÑÔÝÒÔßÒÔàÓÕâÕ×ä×ÙæÙÛèÛÝèÛÝêÝßêÝßëÞàëÞàìÞáëßßëßßìßàëÞàìßáìßáìÞáëÞàêÝßéÜÞéÝÞèÜÜèÜÝçÛÜæÚÛãØÚá×ÚÞÔÛÝÕÚÛÔÚÛÔÛÝÕÝÝÖÝß×ÞàØßáÙàâÚááÚâáÚááÙàâÙàâÚáãÚââÚââÚáãÚââÛááÙàà×ÞÞÖÝÜÔÝÚÓÝ×ÑÚÒÍÖÊÅÏÀ¸Ä±¨´£—¥‘Ÿ¤—¦¯¦³¼³ÀÇÁÌÐÊÕÔÎÙ×ÓÜ×ÒÛÓÍØÏÊÔËÅÏÆÀÉÁ¹Ã¼´¾¶®·±¨³°¦²¯¥±®¤°®¤°®¤°¬¤°¬£°¬¢°ª¢¯© ­¥Ÿ­ ›«˜–§‘¤‰‹Ÿ€ƒ›x}—nv“hpŽak‹Ye†WcƒYd„^h‡fn‹qx“~š‰‹¡‘’¦—–ªœ›¬ž®¢Ÿ¯¢Ÿ¯£ °¥¡°¥ ±¦¡±¦¡°§¢±¥¡° š«Ÿ™ª´°¿ÕÑÚÞ×ÞàÚàȿȪ ­¥œª¤šª§ž««¢¯ª¡®ª¡®©¡­ª¡®ª¡®¦ªž–¥œ”¥¡™©ÐÍÓÔÐÖ×ÓÙÜØÝàÛáäÞãåàåèâçèâçæàåâÛáÜÕÜ×ÐØÕÎ×ÔÍÖÓÍÖÓÍÕÔÍÖÕÍÖÕÍÔ×ÏÔ×ÎÓÙÎÒÛÎÑÜÏÑÝÐÑàÒÓâÔÕãÖ×ä×ÙæÙÛèÛÝêÝßêÝßëÞàëÞàêßßëÞßìßßëßàíàáíàâìßáëÞàêÝßéÜÞèÜÝéÝÝèÛÜçÚÜåØÚâ×ÚáÖÙÞÔÚÜÓÙÛÓÚÛÔÛÝÖÝÝÖÝß×ÞàØßáÚßáÚàáÚáâÙàâÚááÙàâÚáâÚâãÛáãÛâãÛâãÛááÙàß×ÞÝÖÝÜÕÛÙÒÛÖÎØÑÉÓÉÂÍÀ¹Ä²©µ¡—¦“Š›–Œ¤š«±ª¹½¸ÅÉÅÐÓÏÙÚÖßÛÖߨÓÜÖÑÚÓÎ×ÏÊÓÊÄÍǿȻýµ¾¹°ºµ¬¶²¨´°¦²¯¥±­¤°­£°«¢¯©¡®¦Ÿ¬¢œ«œ˜¨–•¦¢ŠŠŸƒ…œ~™y|—tw”ns‘iodlŠdm‹ipqv“|€™‡ˆ ‘‘¦˜–©›™¬žœ®¡ž®¢Ÿ¯£ °¤¡°¦¡°§¢±¦¢±§¢±¦¡°¦¡°¤Ÿ®Ÿ™ªŸš«»·ÆÜÖÞâÚáÔËÓ¬¡®§ž¬¦«§«© ­© ­© ­© ­© ­ª¢®¨Ÿ¬¡š¨œ”¥Ÿ—¨ËÆÎÎÊÐÒÏÔ×ÓÙÜ×ÝàÚßãÜâåßäæàåäÞäàÙàÜÔÛ×Ð×ÕÎÕÕÎÔÔÎÔÔÌÔÔÍÔÔÎÔÕÍÓÖÍÓ×ÍÐØÌÏÙËÍÙËÍÛÍÎÛÍÎÝÏÐàÒÓâÕÖä×ÙæÙÛéÜÞéÜÞéÜÞêÝÝëÝÞëÞßëßàìßàíàáíááìàáìßàêÞÞéÝÝéÝÝèÛÜçÚÜæÙÛäØÚâ×ÙàÕØÝÓÙÜÓÙÛÓÚÜÔÛÝÖÝÝÕÜß×ÞߨÞàÙÞáÚßâÚàâÙáâÚááÙàâÚáâÚáãÛâäÜâäÝâãÜáâÛàáÙßÞÖÝÜÔÛ×ÐØÒÊÔÌÄÎÇ¿ÊÀ¹Ä²ª·£›ª”ŽŸ‰œ™“¦©¢³¶±¿Ã¿ËÏËÖ×ÓÝÛØáÝØáÜÖßÙÔÝÖÑÚÑÌÕÎÇÑËÄÍÈÀÇļÄÁ·Â½³¾¹°ºµ¬¶³©´®¥²¬£°¨¡®¥ž¬¡šª›—¨—•¥’£ ˆ‰„†œƒ›€š|}—vy”qu‘qv’sx”y~—ƒ‡žŽŽ£–•¨š˜«š­Ÿœ®¢Ÿ¯£ °£ °¤¡±¦¡°¨£±¨¢±§£²¥¡°£ž­¨£±¤Ÿ® š« š¬º·ÆáÛáÞ×ܰ¦³¨Ÿ¬¨Ÿ¬¨ž«¦«§ž«¨Ÿ¬© ­© ®© ­© ­¦ªœ”¥œ”¥ÅÁÉÉÄËÏÈÏÓÌÓÕÑ×ÚÔÛߨßâÛâãÜãâÜáߨÞÜÔÙÙÑ××ÎÓ×ÍÒÖÍÒÖÍÒÖÍÑÖÌÑÕËÑÖËÑÖÊÎÖÉÍÖÈÊ×ÉÊ×ÉÊÚÊËÚÌÍÜÎÐàÒÓâÕ×ä×ÙæÙÛçÚÜèÚÜéÜÜéÛÜëÝÞëÞÞìÞßíßàíßáìßàêÞÞéÝÝéÝÝèÚÛçÛÜçÚÛæÙÛã×ÙáÖØàÕØÝÓÚÜÔÚÛÓÚÜÕÜÝÕÜÞÕÜÞÖÝߨÝàÙÞáÚßâÛàâÚßâÚàâÚáâÛâãÚáãÛâäÝáäÜâãÜáãÜááÚßÝÖÜÙÑØÔËÕÍÅÏÉÁËļǾ·Á¶¯»®¨µ¡œ¬˜“¦š•¨¥Ÿ²±¬»¼¸ÆÈÄÐÒÎÙÙÕàÝÚãÝÚãÛØáÚÖߨÓÜÔÏØÑÊÔÏÇÐÌÅËÉÁÈÆ½ÅÁ¸À»²¼µ¬¶±§³­¤°¨¡®¥ž­¡œ«˜©˜–¦•’¥‘£Ž¡¡Œ ŒŠŸˆ‡‚‚›|—{˜}™…œŠŒ¡“’¦˜—«›™¬ž›® ®¡ž¯£ °¤¡±£ °§£±§¢±§£±¤ ¯¥¢±«§´«§³¬¨³¦¡¯£ž­ ›«¼¸ÅÞØÞ»±»¦¬© ®© ­¨Ÿ¬¨Ÿ¬¦ª¨Ÿ¬¨ ­© ­ª¡®§ž«Ÿ˜§›”¤Á¼ÅýÅÇÃÊÍÆÎÐÌÓÔÐÖÚÔÛߨßàÙàßÙÞÝÕÚÝÔÙÜÒÖÛÐÔØÎÑ×ÌÐ×ÌÐ×ÍÐÖÌÐÕËÏÖÊÎÕÉÌÕÇÉÔÆÈÕÅÈÖÆÈØÇÊ×ÉËÚÌÍÝÏÑßÒÔáÔÖãÖØåØÚæÚÛèÚÛéÛÜéÜÜëÝÜëÝÝìÞÞìÞßëÝÞêÜÝêÝÝéÜÜçÜÜçÛÜçÚÜæÙÛã×ÙáÖÙàÖÙÞÔÙÜÕÚÝÕÛÜÕÜÞÖÝÞÖÝß×ÝàÙÞáÚßáÚßâÛàâÛàãÛáâÛââÛâãÜãäÜããÜâãÜáäÝâãÜáâÛàߨÝÚÒÙÔÌÔÎÆÐÊÁËļǺĿ¸Ã¹´Á°¬»¤ ²žš®£Ÿ±­§¸³¯¾¾ºÈÊÇÒÕÑÜÜØâÞÛäÞÛäÜÙâÜØáÙÔÝ×ÒÛÕÐØÓÌÓÏÈÏËÃÊżľ¶¿¸¯¹²©´­¤±©¡¯¦Ÿ­£¬Ÿšªœ˜¨˜–§˜”§˜•¦™•§š–¨˜”¦”‘¤Ž¡‰‰Ÿ…‡†‰ž‰‹ ¤––©š˜«œš¬Ÿœ®¡ž¯¢Ÿ¯¤¡±¤ °¥¡±§¡°§¢±¥¡°Ÿ¬™˜¨¡ž®§¢±¦¡°¤Ÿ®¢­£ž®£ž®º¶Â¿¹Ã¦­© ®© ­¨Ÿ¬¨ž¬¦ª¥œ¬¨ ®© ®ª¡®© ­£š©œ”¥¾·ÁÀ¸Á»ÄÇ¿ÉÌÆÏÐËÓÕÐ×ÙÒÚÜÕÛÜÔÚÝÔÙÞÕØßÔ×ÞÒÔÛÎÑÙÌÎÙÌÏØÌÎØÊÍÖÊÍÕÉÌÔÇÊÓÅÇÓÃÆÓÂÅÔÄÆÖÅÈ×ÈÊÙÊÌÚÌÎÝÏÑàÒÓáÔÖãÕ×åØÙæÙÙèÚÛèÛÚëÜÚìÝÛêÞÜëÝÞêÜÝêÜÜéÝÝéÜÜèÜÜèÛÜçÚÜæÙÛãØÚãØÛàÖÙßÕÛÝÖÛÝÕÜÞÖÝÞÖÝÞÖÝߨÞàÙÞáÚßàÙÞáÚßâÛàãÛââÛâãÛâãÛâäÛâãÛââÛàãÜáãÜáâÛàߨÝÚÒÙÖÎÕÑÈÒÏÆÐËÃÍÈÁÌÆÀÊÀ¼Èº¶Ã°­½¨£µ¥¡³ª¦¶­¨¸´°ÀÁ¿ÌÐÌרÔßÜÙâÜÙâÞÛäÞÛäÞÚãÞÙáÜ×ߨÓÚÕÍÕÍÆÍÈÀÉÁ¸Âº±»³«¶®¥²ª¢¯§ ­¥Ÿ­¢¬ ›«Ÿšª ›«Ÿš«¡œ«¡œ¬ ›«›—¨–“¦“‘¥££‘¤•”§™˜«œš­Ÿœ¬ ®¡ž®¢Ÿ¯¤¡±¤¡°¥¡°¦¢±¥¡°Ÿ­—–¦ŒŒž…˜‘‘£©¢±¥ž­Ÿ™ª š« ›«¡œ¬§¡¯¥¬§Ÿ¬¨ ­§ž¬¥«¥«£œ«¥ž¬ª¡®©¡®ª¡®¦ž¬–¦½µ¿¾¶ÀÀ¸ÂüÄÇÀÉÌÅÏÏÉÑÔÍÔ×ÐÖÚÑ×ÝÓÖßÔ×àÕ×àÓÕßÑÒÛÎÏÛÍÎÙËÌ×ÉË×ÊÌÔÇÊÔÆÈÒÄÆÑÁÃÑÁÃÓÂÅÕÄÆÖÇÉ×ÉËÙÊÌÛÍÏÜÎÐßÑÒâÔÕäÖ×å×ØæØØéØÙéÚÙéÛÙêÛÚéÛÜêÛÜèÛÜèÜÝéÝÝèÜÜçÚÜæÛÜåÚÜäÙÜãØÜáØÛà×ÜÞØÝߨÝÞ×ÜàÙÞߨßàØàáÚÞáÚßáÚßáÚßâÛàãÛââÛáâÚáâÚáãÚâáÚàáÚßáÚßâÛàáÚßß×ÝÜÕÛÙÑØÖÎÕÓËÕÏÇÑÌÄÏÊÃÎÉÃÏÄÀ˾¹Ç¶³Â­ªº¨¤µ§¢³«§·¸¶ÄÇÅÑÓÏÚØÕßÜÙâÞÛäßÜåàÜåáÜåßÚáÛ×ÝÕÏÖÏÉÐÉÁÊÀ¸Â¹±¼²ªµ­¤±¬£°¨ ­§ ®§ ®¥ž®¤ž­¥Ÿ­§ ®¥ž®¦Ÿ®¥Ÿ®¡œ«™©š—©˜•§–•§––¨™˜«œš¬žœ¬ ­¢Ÿ¯¢Ÿ¯£ °£ °¤¡±¥¢±¤¡°¡ž®˜—§Žž~‚”ow‹is‡„†›¤ž® ˜© ™ªŸš« šªž˜§¢œ«¤¬¤­¦Ÿ¬¥ž«¤¬£›ª¥›«¨ ®¨ ­¨ ­¨ ­¡š¨½µ¿¾¶¿¿·ÁºÁĽÄÇÀÈÌÅÌÑÉÐÖÎÒÚÐÓÞÓÔáÔÖâÕÖâÔÕáÒÓÞÐÑÜÍÎÚËÌ×ÉÊÖÇÉÔÇÉÒÄÆÑÂÄÑÀÃÐÀÂÒÂÄÓÄÆÔÆÈ×ÇÊÙÉÊÚÊËÛËÌÝÎÏßÑÒáÓÔãÕÖäÖ×çרçØÙçÙØçÚÚèÚÛèÛÛèÜÛèÜÜèÜÜçÚÜæÚÜåÚÜåÚÜãÙÜâØÛáÙÜߨÜàØÞàÙÞàÙÞàÚßàÚßáÚáâÛàâÛàáÚßáÙßâÙááÚáâÚáâÚáâÚááÙàáÚßàÙßáÙààÙßàØÞß×ÞÞÖÝÛÓÚØÐØÔÌÖÓËÕÑÉÔÏÊÔÐÊÕÎÉÔÊÅѾʵ±Á¨¤·Ÿ›®¡®®«¹¿½ÈËÈÓÔÑÛÙÖßÝÚãßÜåáÝæáÝãÞÚàÚÕÛÕÍÖÏÇÑÆ¿É½µÀ´­¸¯¥³­¤±¬£°ª£°©¢¯¨¡¯¨¡¯¨¡®¨¡®¨¡¯§ ®§ ®¦Ÿ­¥Ÿ®¢¬ž›ªž™ª›˜ª›˜ª›š«žœ¬ ­¡ž®¢Ÿ¯£ °¤¡°¥¢²§¤³¦£³¢ ¯š™©Ÿ€„•pwŠ^j}N^sN\s€‚— š«¡›« š« ™« ›ª š©¡œ«£¬£œ¬¤¬£›ª£›«¥¬¦ž¬¦ž«§Ÿ¬§ ­¥¬¾¶¾À¸¿À¸¿ÂºÁûÂŽÄÉÁÈÐÇÍ×ÌÏÛÏÒßÒÓâÔÖäÖÖãÕÖãÔÔáÑÑÝÎÍÛÊÌØÉÊÖÈÉÔÆÈÒÃÆÑÁÄÑÀÃÑÀÂÒÁÄÒÅÇÓÅÇÖÇÈ×ÇÈ×ÇÈÙÉÊÜÌÍÝÏÐßÑÒáÓÔãÕÖäÖ×äÖ×åרåØÙæÚÚçÛÛèÛÜçÛÜæÛÝæÛÝæÚÜåÛÜäÚÝâÙÜâÙÜáÙÜàÙÝàÙÞàÙÞßÚÞàÚàáÚáâÛââÛáâÛáâÛááÙàáÚáâÙàáÙàáÙàáÙàáÙàáÙßàÙßàØßáØàß×ÞߨßÞ×ÞÝÕÜÚÓÛ×ÏÙ×ÐÚÖÑÚÖÑÚ×ÒÛ×ÒÜÔÎÙÊÆÑ¼¸Æ©¥·˜”§“£¢ž¯¶²¿ÄÂÍÐÍרÕÞÝÚäáÝæãÞæàÜâÛ×Ý×Ñ×ÐÉÑÇÁʽ¶Á´¬·®¦±­¤±¬£°«£°ª£°©¢¯©¢®©¢®¨¡¯¨¡¯§ ¯§ ®§ ¯§ ¯¨¡¯¦Ÿ®¤ž­¢­ œ¬ž›«ž›«Ÿ­¡ž®£ °¤¡±¤¡±¦¤³ª§·ª¨¸§¦¶¢¡±™˜¨‡‰›tyalM\q9Md4HaPZs†…š¡œ­ ›«¡›« ›«¡œ«¢¬¥ ¯©£°¦Ÿ­¢›ª¡š©¤«¦Ÿ¬¦Ÿ¬¦Ÿ¬¦Ÿ­¦Ÿ­¿·½¿·¾À¸¿Á¹ÀºÁļÃÉÀÆÑÆÊØËÎÜÏÐßÒÓâÓÕäÖ×äÖÖäÕÓáÒÐÜÍËØÉÉØÈÉÔÆÈÒÄÆÑÃÅÑÂÄÑÂÃÑÁÂÑÁÃÒÄÆÔÅÆÔÅÆÕÅÆÕÅÆ×ÇÈÙÉÊÛÌÍÝÐÐßÑÓâÔÕãÕ×ãÖ×äÖ×åØÚæÙÚçÚÜçÚÝæÚÝæÚÜæÚÝäÛÝäÛÞãÛÝãÙÜâÚÝáÙÞàÙÞàÚßàÛßàÙßáÚáâÛâáÚááÛáâÚáâÛâáÚááÙàâÙàâÚááÙàáÙàáÙààØßߨÞàØßàØßÞ×ÞߨßߨßÞØßÝÕßÛÔÞÛÖßÜ×àÜ×àÜ×àÝØáÚÔÞÏÊÕ¿»Èª¦¸‘¡ƒ€•’¡ª§¶½¹ÅÌÉÒ×ÔÝßÜããßæãßåàÜâÙÕÛÑÌÔÇÂ˼¶À³«¶­¥±­¤°¬£°«£°«¢¯¨¢¯©¢¯©¡®©¢¯©¢±¨¡°¨¡¯¨¡®¨¡¯¨¡°¨¡¯¨¡¯§ ¯¦ ®¤Ÿ®¢ž®¡ž­ ž®¡¡±¥¢±¦¤´¨¥µ©¨¸«ªº®­¼®®¼©ª¹ŸŸ¯ˆ‹žjr†Tau?Qf/C\->Y=Hbbc{‘Ž¡¤Ÿ®£¬¢¬¢¬£¬©¥²±­¹®ª¶¨¤¯¡›ª¢œ«¥ž­§ ­¦Ÿ¬§ ­¥Ÿ­¾µ½¿·¾¿¸¿Á¹ÀºÁÄ»ÂË¿ÅÒÆÉÙÌÍÜÎÏÞÐÑàÒÓãÔÕãÔÔáÒÐßÐÎÚÊË×ÇÈÓÄÅÑÃÅÑÃÅÒÄÅÒÃÃÒÃÄÑÂÃÑÁÂÒÂÃÒÃÄÒÂÃÒÂÃÓÃÄÔÄÅ×ÇÈØÊËÛÍÏÝÐÒßÒÔáÔÖáÔÖâÕ×ä×ÙåÙÛåÚÜåÚÜæÛÝæÚÝåÛÜãÚÝâÙÜâÚÞáÚÝàÚÞáÛàâÛàáÛááÚáàÛâàÜâàÜââÜââÜââÛââÛââÛâàÚááÚáàØßàØßß×Þß×Þß×Þß×ÞÞÖÝÞÖÝÞ×Þß×ààØâàÙãßÙâÞÙâÞÙâáÜåáÜåáÜåàÛäÛ×ßÓÍØÅÀ̰¬»‘Œ¡so†}y›˜¨¶²½ÇÃÍÓÐÙÜÚàãßåãßåßÛáÙÕÛÏËÒ¼ŵ­¹­¥±­£°ª£°ª¡®«¢¯ª¢¯©¡®¨¢¯©¢¯¨¡®¨¡¯©¢¯¨¡¯©¢¯©¢°ª£°ª£¯ª£¯«¤±©¢±§¢±§£²§¤³¦¤³¦¦´¦§µ©©¸­®¼®®¼®®¼³³Á¶·Å³´Â¨¨¸’¥ks‡KZm8H_-cr9bq8`rHi}\t‰m”—™«£¢²¥£²~OOe01I'(@"$=#$>(*E+1L2\p=UmF[ujy•_l‹RUy€~—~–‹ˆž•‘¤›—¨™ªšªšªšª›˜¨œ™©™–¦—“¦œ—ª§ ³© ³¨ ²£ž¯¥¢±®ª·±ª·²®º³®º°«·©¥³Ÿœ­LjYs” Ÿ®¡ ¯œ›¬gv”yƒž¬¨¶¯¨¶±¬¹³­¹µ®»´­¹´­¹·±¼¶°»µ¯ºµ¯ºµ¯º·°»º´¾½¸Á½ÅÀ»Ä¼·À²¬¹¤ ¯¢Ÿ®¢ ¯¦£²ª¦²³¬·ÓÊÏÔÉÌÆºÀµ¨±§˜¢—ˆ’‘‚ŽŠ€Œ~zŠxxŠZfy7Sk0Pg1Si7WmEavYllx~„˜Æ¾ÈÈÀÊÈÀÊÌÄÎÏÇÑÒÊÔÓËÕÒËÓÒËÑÒÊÑÑÉÏÒÈÎÓÈÎÖÉÌ×ÉÍØËÎÙËÌÚËÍÜÌÍÝÎÎâÐÏãÔÑæ×ÕéÙØêÛÙëÜÚëÜÚëÜÚêÛÙêÛÙêÛÙêÛÙêÚÙëÛØìÜÙíÜÙíÜÙìÛØëÚ×ëÙÕë×ÓèÖÒèÕÒçÔÐåÒÎåÒÏåÒÎçÕÑçÖÓç×ÕçÚØæÙØçÛÛÜÐÐö¾µ©·°¦¶¯¥¶°¦·¼³ÁËÃÎÍÆÑÈÁо·Ç¬¨¼ œ³™˜±˜˜¯™™®––«”–¬”•«•–«š™®›š¯˜—­““«… Lf}Bat@^rdwsŸ™¬‰…›ˆ…š‹Ÿ’¤˜”¨›—©šªšª™—¨™˜©œšªœ™©Ÿ›«§£²£Ÿ®¨¢±©¥³«§´­©µ¯«·­©µ±­¹³¯»²®º°¬·±­¸³¯»´°¼´°¼·³¾¸´¿´°¼¬§´­©µ«¦´ª¥µ¬§¶¬¨µ«§´¬§µ¬§´±ª¶´®¹´®¹³­¸±¬·±«·¯©¶­¨´ª¥³¿¶¿áÔÖéÜÜëÝÞêÞÞëßßéÜÝãÕÖØÊËɹ¼µ¡£ŽxNEY,/L).K.3P=@]MOk^_{ml‡{y‘‰†›”Ž¢–¨£›¬ÔÌÓ×ÏÖØÐ×ÙÑØÚÒÙÚÒÙÚÒÙÙÑרÐ×ÙÑÖÛÑÕÜÒÔÝÒÕÝÒÕÞÓÔÝÒÕàÔÖâÕ×âÕ×ãÖØäÖØäÖ×åÖ×å×ÖæÖÕå×ÖåÕÖåÕÖäÔÕäÔÔåÕÕäÕÓæÖÔè×ÕêØÖéØÕêÙÖëÙÖìÙÖìÙ×îÛÖîÛ×ïÜ×îÝ×îÜÕíÚÓíÚÓëØÑìÙÒíÚÓìÚÕìÜÖìÜØìÞÚìßÜíàÝëÞÜìßÝíáßîâßëßÞÚÏѽ²¼³ª¶²ª¶¦ž°“Ž¥€œV[…U\ˆLQ€HO}KU~M\Na€Se…dq”`o•M^Š>T~?W}@Y|;Uw4Fk2>e4YLLf\[vjh‚xtƒ•މ˜’¥—©¢š«ÖÎÕØÐÖÚÑ×ÚÒØÚÓÙÛÔÙÛÔØÛÓØÛÒ×ÜÒÖÜÓÕÞÓÕßÓÕàÔÖáÔÖáÔÖâÖØä×Ùã×Ùä×ÙãÖØäרäרäÖØåÖ×äÕ×äÕÖãÔÕâÔÕãÓÔãÓÔäÕÓåÖÔæÖÔèÖÕéØÖéØÕêØÕêÙÖëÙ×îÛÖîÜ×îÝØïßÙðÞØïÝÖîÛÔíÚÓíÙÒìÙÒíÚÓìÙÔìÚÕìÛÖìÜÙëÝÚëÞÛêÛØìÞÛìßÜåØÖȼñ¨µ°§´®¥³­¦²£œ­œ—ª‘§}¡pt˜biŽWd†PcƒOcSd†YeŒS`‹N]‰M\‡_m‘r}™xƒ›nv‘ae‡†ƒ¡’¨†œ‘‹¤‹‡ …‚šŠˆœ”£š—¨œ™©žšªŸ›«Ÿ›ªžšª œ¬¬©·§£²¦¡°§¢±©¥³¬¨µ¬¨µ®©·¯«·´°»¶²½µ±½²®º²®º²®ºµ±¼¶²½µ±½¶²½¶²¾µ±½­©µ¨£±¦¡±ª¥´©¤³¨£²¨¤±«¦³°©¶±«¶¯ªµ­¨´¬¨´©¤²¯¨´ÇºÀØÉÉÙÉÊÚËÌÛÍÏÝÏÑßÑÓàÓÕßÒÓÙÌÍÏÀòµ±Ÿ‘zZO`@?VGG_QOh]ZsjftqŠ~z‘ˆƒ˜’ ™“¥—¨ šªÖÎÕÙÏÖÚÐÖÚÑ×ÛÒ×ÜÓØÜÓÙÝÒØÝÔ×ßÔÖßÔÖáÔÖáÔÖâÕÖâÕ×ãÖØåØÚåØÚåØÚäØÚä×Ùä×Ùä×ÙäÖØãÕ×äÖ×âÔ×âÔÖáÓÕàÓÔáÓÓâÓÔäÔÔäÕÓæÖÔè×Õé×ÔéØÖêÙÖëÙÖíÛ×îÛ×îÝ×ïßÙðߨðߨðÞ×îÜÕíÚÓìØÒìØÑëØÒë×ÒêØÓëÙÔêÙÖêÚ×éÙÖêÛØéÛØßÐϾ±»¯¥³¬£±¬¥²­¦³­¦³­¦³­¦³¨¢²¤Ÿ°›˜¬ŽŽ¤…}‚›‚„Ÿ„…¡~}žfl“€…¤ÄÃÍÉÇÎÇÄÌÁ¾È·¶ÄÀ½ÊÉÄϽɹ³Ã¯©¼£ž±’Ž¢Œ¡—’¥›˜©šªžšª ›«Ÿš«ª¦´¬¨µ§¢±¥¡°§¢±§¢±©¤²©¦µ®©¶¯¬¸³¯»µ±¼³¯»´¯º´°¼²®º´°¼µ±½¶±½·³¾¶²¾·³¾¯ª¶¦¡±¦¡±ª¥´¨£²§¢±§¢±©¥²®©µ­©µª¦²¥¢±¥Ÿ¯´ª´È¸»Î¼½Ì»¾Ì½ÀοÃÐÂÆÓÅÉÖÈÌ×ÊÍ×ÉÌÐÃÆÆ¸½¹©¯§”›Œx‚f]o[Xn`]vhf|qlƒyt‹‚~“‹…š‹Ÿ–‘£š”¦Ÿ™©¥ž®ÓÊÑØÎÔÙÏÕÚÐÖÚÐÖÛÑ×ÜÓØÝÔ×àÕØàÕØâÕ×âÕÖãÕÖäÖ×åרåØÚæÙÛèÛÝçÚÜæÙÛä×ÙåØÚåØÚä×ÙãÖØâÕ×âÕ×áÓÕàÓÕàÒÔàÒÓáÓÔâÒÓäÔÔåÖÔæ×ÔèÖÕé×ÖéØÕêÙÖëÚ×íÛØíÝ×ïßÙðàÙïߨïߨïÝÖìÚÓì×ÐêÖÐéÖÏéÕÏéÖÑéÖÑé×Òè×ÔçÕÒè×Óé×ÓÝÌ˼®·¬¡±ª¢±ª£²¬¥²­¥²«¤±¬¥³¬¥³­¦´¬¦³¬¥´«¤³¬¥´«¤³­¦µ®§µ¨¡³Â¾ÊÓÏÕÏÌÒÏÌÓÎËÔËÉÒÌÊÓÈÅÏÄÀË¿ºÆ°«»®©¹±¬¼ž™«“£˜•§›«¡›¬ œ¬¥ °¬¨¶©¥´¨¤³£ ¯¤¡°¥¡°§£²©¦µ«¨·°¬¹´°¼²®º±­¹°­¹³¯»²¯»´°¼²¯»´±½·³¾·³¾¸´¿²­¹¥Ÿ°¥ °§¢±¦¡°¥ °§¢±©¤±©¥²Ÿž­”•§Ž¢« ­¼«²ºª±¸©±¹«´½¯·¿²ºÂµ¼Å¸ÀÇ»ÂʾÄ˾ÄǸ¾¼­¶¬ž©œŒ˜Š{‹pjed{ih€xt‹‡„˜‘Ÿš•¦ ›«¢­¤Ÿ®¦ ®©£°­¦²ÏÇÎÕÌÓØÎÔÚÐÖÚÐÖÛÒ×ÝÔØàÖÙâ×ÙãÖÙãרäרæØÙæØÙçÙÚèÛÛèÛÝèÛÝçÚÜçÚÜæÙÛåØÚåØÚãÖØãÖØâÕØàÓ×ßÒÕßÒÕàÓÕßÒÔßÑÔàÒÔâÔÕäÕÕåÖÕæ×ÖçØÖèØÖêÙ×ëÚ×ìÛØíÛØíÞ×îÞØîÞØïÞØïÝÖìÚÓë×ÑêÔÎèÓÌçÓÌçÓÍçÓÎæÓÎÞÊÈÔÀÁäÐÌåÒÍÖÅŬ¶¬¢²©¡°©¢±«¤³«¤²«£²«¤³«¤³«¤³¬¥³«¤³«¤³«¤³«¤´¬£³¼·ÃÆÁÍÓÏ×ÓÐÖÒÏÕÒÐ×ÒÏÖÒÏØÎËÕÆÂÍÅÁ̽¹Ä­¨·©¤³©£´±¬º¥ ²š•¨›—© š«¢®«¦¶¬§¶¨¤³¥¡°¡ž®£ °£ °¥¢²§¤³©¦µ®«¸®¬¸®«¸®«¸±­¹¯­¹°®º²¯»³°¼´±½¶²¾¸´¿¸´¿µ±½¤Ÿ° œ­¤ž¯£®¤Ÿ¯¤ ¯˜™¨†ŽŸx„˜~„™œ”¤§š§¦š¨£™¨¡™ª£›«¨ž®¬¢°±¦³´©¶·¬¸»¯º¼°º·«¶­¡­Ÿ”¤’†—‰}ys‰mlƒqqІƒ™š™©§¤²®ªµ®ª¶®ª¶¯«·®ª¶°ª¶³­¸ËÂÊÒÉÏ×ÍÔÚÐÖÚÐÖÜÒÖßÕ×áÖÙã×ÙäØÙæØÙçÙÙèÚÙèÚÚéÛÜêÝÝêÞÞéÜÝèÛÝçÚÜæÙÛåØÚåØÚãÖØãÕÙáÔØàÒÖßÒÕßÒÖàÒÕàÒÔàÒÔáÓÔáÓÕãÔÖäÖ׿Ö×çØØçØ×èØ×êÙØëÚ×ìÛØíÝØîÝ×îÝ×ïÝ×íÛÖìÙÔë×ÑèÔÏæÒÌæÑËåÏÊäÏÊåÑËÆ´º²£±ÕÂÁãÏÊÓÁ¼®·¯¦³«¢²©¡±ª£²ª£²ª£²ª£²«¤³«¤³«¤³ª£±§¡°¥Ÿ¯¢œ¯µ­½×ÔÛÓÐØÕÑÚÕÑ×ÔÐ×ÓÏÖÓÏ×ÑÍÕËÈÑÇÂ;ɹµÁ©¤´¦¡±§¡²ª¤µ±¬»¨¢³™©ž˜©¤Ÿ¯®©·ª¦µ¦¢±¤¡°¡ž®¢Ÿ¯£ °£ °¥¢²§¤´ª§¶«¨·ª§¶«¨¶®«·­«¸¯­¹±¯»³±½´±¼·³¾¸´À¸´¿¸³¿¦¡±Ÿš­ ›­£®••¦z…—avˆ\u‡r€’Œ‹œ•Žž– –¢•£—“¦š•©œ—ª¡š«¤›¬§ž¯ª °¬£±®£±ª ®¡˜¨–ŒžŒ‚—ˆ“ywtzz“ŽŽ¢¨¦´²®¹²®¹±­¹±­¹±­¹±­¸±­¸³­¸Ç¿ÆÏÅÌÖÌÒÚÐÕÛÒÕÝÒÕßÕ×âÖØåØÙçÙÚèÚÛèÛÙêÜÚêÝÛìÞÞìßßëßßêÞÞéÜÞèÛÝçÚÜæÙÛåØÚãÖØâÔØàÔ×ßÒÕÞÒÖÞÒÖÞÒÕÞÒÕàÒÖàÓÖâÕÖäÖØä×Ùå×Ùæ×Øæ×ØçØ×éÙ×ëÙØìÚØíÜÙíÜØîÝ×íÝÖîÛÖíÚÕëØÓèÕÐæÒÍåÑÌäÏÊâÎÉäÏÊǶ¼©¯¼«³ßÌÇÙÇÄ´º²¨µ¯¦³«£²ª£²©¢±©¢±©¢±ª£³«¤²«¤²ª£±§¡°¤Ÿ°£±ÌÉÑ×ÓÙ×ÒÙ×ÒÛÕÑ×ÔÐ×ÕÐÙÑÍÕÎÉÒÈÄÏÅÁÌÁ½È·²¿©£´¤ž¯¥Ÿ°«¦µ³®¼±¬¼©£´ž™«©£³®¨·©¥´¦£²¤¡¯¡ž®¢Ÿ¯£ ¯¢Ÿ¯¥¢²¦£³¥¢²ª§¶«¨·§¤³ª§µ­«¸±®»±¯»²°¼²°¼·³¿¶²¾¹µ¿¸´¾­©¶›—ª–“¦{ƒ”[q‚QoXs„z…—ŽŸ‹Š‹žŒŸ‘Œ¡“£”¥—’§œ–©Ÿ˜ª¡š«¤œ¬¤œ­¤š« ˜©š’£‘Љ‚—‰‚—‡‚—…‚˜‰ˆž––ª©¨µ³¯º²®¹±­¸±­¸®ª¶ª¦³¯«·²­¸Ä¼ÃÌÂÉÕÊÏÛÐÒÜÑÔÞÒÔàÓÕã֨娨çÙÚéÛÛéÜÚêÝÛíàÞïâáîââíááëßàêÝßéÜÞçÚÜæÙÛåØÚãÕÙâÕØàÕØÞÓ×ÝÒØÝÓÙÝÒÙÞÓØÞÔ×àÔ×âÕØä×ÚåØÚæÙÛæÙÚæØÙæ×ÙèÙÙéÙ×êÚØëÛÙìÜÙìÛØìÚØìÚØìÚ×ëØÕéÖÒæÔÏåÑÍãÏËãÏÊãÏÊÓ©ž®©ž®Í¹ºÝËÆË»¾¸¬·°¦³­¤²«¤³ª£±ª£²©¢±«¤²ª£±©¢²ª£²¨¡°¥Ÿ¯©¥´À»ÅÑÍÔÖÒØÔÐ×ÕÐÙÕÑØÒÍÖÏÊÓÍÈÒÈÄÎÄ¿ÊÁ½È·²À¨¢³¤ž®£®ª¥´´°½´°¼±®»«¥µ¬§·®©·©¦µ¥¢±¢Ÿ¯Ÿ­ ­ ­¢Ÿ¯§¤´¥¢²¤¡±©¦µ©¦µ¦£³©¦´¬©¸®¬¹±¯»³°¼´±½¸´À¸´À¹µÀ¸´¿¸³¾}{”bn‚QgySj{jy‹‹Žž›–¦•¡’Ÿ‹ž‹ž‹žŒ ‹ ’¢“£–‘¥š”¦ž—¨Ÿ˜© ˜©ž—¨œ”¦–Ž¡ŠŽˆ›•Ž¢—¨ œ¬¡Ÿ°¤£³¬ª·²®¹²®¹«§´§£°ž›ª›™©­¨µ³­¸Á¸ÀËÁÇÔÈÌÛÎÑÝÑÓàÓÕàÓÖã×׿ØÙçÚÚéÛÛêÝÜíßÝïãáïåãïääîââíááëßàêÝßéÜÞèÛÝæÙÛã×ÚáÕØßÔØÞÓÙÝÓÙÝÔÚÜÓÚÝÓÙßÔÚàÕÚâ×ÚãØÛäÙÜåÙÜåÙÛæÙÚåØÙçÙÙçÙÙèÚÙêÛØëÛØëÚØëÚØëÚ×ëÚ×êÙ×èÖÔæÔÑäÑÎäÐÍâÏËàÎÊÞÌȹ«µ¨®¯ ­×ÿÒÁÂÁ´¼²¨µ¯¦³­¤³«¢²«¤²«¤²¬¤²«¤²«¤²«¤²ª£±§¡°¨£²²®»ÈÃËÕÑ×ÕÑ×ÔÏ×ÔÏØÒÍÖÎÉÒËÆÐÇÂÍÄ¿ÊÀ¼È¶±¾¦ ±£®¢œ­©¢±²­º³¯»³¯»¯«¸«¦µ­¨·¬§µ¥¢²¡Ÿ¯Ÿ­ ­¡ž®¢ž¯§¤´£ °£ °©¦µ¨¥³§¤³ª§¶®«¹®¬º°®»±¯»µ±¾¸´À¹¶Â»·Á¸´¿¼·Â…™“Ž˜™¡š¦¯¥±«¢¯¡š©›•¥—‘¢” ’Ž ‘ ŒŸ‹ ‹ Œ¡’¡•¢˜“¥›–§›•¨š”¦—‘¤“ •¢ž™ª§£±¬¨µ°¬¸°¬¹®¬¸­«·®¬·­ªµ¤¡¯ ž­¥¡°¤ ®¯ªµ´®¸Àµ½Ë¿ÄÓÆÊÛÎÐÞÑÓàÓÕáÔÕãÕÖåØÙçÚÚêÜÝëÞÞîáßðäãïæåïæåïääíâãíàâëÞàéÜÞèÛÝåÙÜãØÛâ×ÚàÕÛßÕÛÝÕÜÝÕÜÝÕÜÜÔÛÞÕÛàÖÛáÖÜâØÝãÙÝåÚÜåÙÜåÙÜæÙÚæØÚæØÚçÙÚçÙÙèÚÙéÚÙêÚ×éÚ×éÙ×éØ×èÖÕæÕÓäÓÑâÐÎàÍËßÌËÝËÈɺ¾ª ¯§œ¬¼ª±×ÄÂÆ¸¾¹¯»±¨µ°§´®¥²­£³®¤³­¥³®¦³¬¥²¬¥²¬¥²©£±§¢±¯«¸À»ÅÕÑ×ÔÐ×ÒÍÖÔÏØÒÍÖÍÈÑÉÄÎÆÁÌÄÀË¿»Ç·²¿¨¢²¢œ¬¡›¬§¡±¯«¸²®º³®»¯«¸¨£²«§¶ª§µ§¤³¢Ÿ° ®¡­¡ž­¡ž¯¦£³¤¡±£ °ª§¶¦£³§¥´©§µ¬©¸¯¬º²¯¼±¯»µ²¾º¶Áº¶Á½¹Ä·³¿¹´Àɺ½ØÄÁн¼Æ¶¹¸¬µ¬£¯¥ž¬¡š©š–¥˜’£•¢“¡’Ž¡‹Ÿ‹ŸŠŸŠŸŒ ‘ –’¥™”§—’¥–¤™”¦¢Ÿ¯¬©¶²®º³¯º²¯»²¯»°­¹Ÿ¢°‰“¥Ÿ—™ª¨¤³®ª¶®ª¶­¨µ³­¸½±¸É¼ÁÒÄÇÙÌÎÝÐÑßÒÓàÒÓãÕÖåרæÙÚéÛÜëÞßîââðåäñçæðææïååíâäìàâìßáêÝßçÜÞæÛÞäÙÝâØÝâØÞàØÞÞÖÞß×ÞÞÖÝÝÕÜÞÖÝÞÖÜáØÞâØÞãÙßãÙßåÚÝäÙÝäÚÝæÚÛæÚÜæÙÛæÙÙæØÚçØÚçØÙçØ×çÙ׿ØÖæ×ÕäÕÔãÒÑàÐÎÞÍÌÜËËÛÉÉÀ±¹¬¢±¨ž¯©œ«É¶¸Í¾¿¿µ¿µ«¸³¨µ±©µ°§´°¦µ¯¥´®§´®§´­¦³®§´«¥²©£²³¯»ÇÂËÒÍÔÖÒØÓÎÖÑÌÖÏÊÓËÆÏÈÃÍÿʾÉÀ¼Ç¶²¿¦¡° š«¡›«¢­¬¨µ²®º²®º«§µ¥¢±ª§¶ª§¶¨¥´£ °¡ž®¡Ÿ¯ ž®¡ž®£ °£ °¤ ±¨¥¶£ °¦£²©§µ­ª¸°®»³±¾³±¾¸¶Â¹¹Ã¼¹Ã½¹Ä¶²½¸³ÀÎÀÃ×ÃÀ̺»Á²·´ª³®¥±©¡®¥ž¬žš¨›•¦™“¤—‘£”¢’ŒŸŠŠŽˆœ‰Ž‰ž’Ž¢•‘¥—“¦™ª¦¢²®«¸³¯º´°»³¯º®ª·°¬¸²®¹ž¡®iƒ˜Sy‹•§ª¥´­©¶­©¶¨¤´°ª·º­³Æ¸¼ÏÁÃ×ÊÌÜÎÐÞÑÑàÒÓâÔÕåרçÚÚéÜÜìßàîããïååñççðççðåæîãåìáãëßâèÝàçÜßæÜßäÚßãÚßâÚàáÙààØßߨßÞÖàÞÖÝÝÖÞÞÖÝߨßàÙßâÚßãÚàãÚßãÚßäÚÞäÙÝäÚÜåÙÛåÙÛæÙÛæÙÚåÙÚæØÙå×ÙåÖØåÖØäÕÖâÔÔßÐÒÝÎÏÛËÍÑÁű¦³­¤³«¡±¦œ­® ­Ð½¾Å¸¾»²½´«·³ªµ±¨¶°§´°§µ°¨´¯§´°§´­¦³¬¥²ª¤²º¶ÁÎÉÑÑÌÓÕÒØÔÐÖÏÊÓÏËÑÊÇÐÇÄÍÃÀÉÀ¼ÇÀ¼Æ¹µÀª¥²¡œ«¡œ«¢­«¦´²®º³¯»¬¨µ£¡±¨¥´ª§¶©¦µ¤¡±¢Ÿ¯ Ÿ¯¡Ÿ¯¢Ÿ¯¤¡±£ ±¥¢²©¦¶¤¡±¥¢±©¦´­«¹±®¼²°½µ³¿»¹Ä¼ºÅ¿¼Æ½¹Ä¸´¿º¶ÁʽÁÒ¾½Ç¶¹º®¶²¨´®¥²¬£°§ ­£¬ž™©›•¦™“¥—‘£’ Š‰œŽˆœˆœŒˆœ‹Ÿ•‘¥Ÿ›­¨¦´±­¹´°¼´°»´°»°¬¹ ­£¡°²®º®«¶~¢`‚–{ŠŸ˜™¬¡Ÿ°›š­Ÿž°ª§µ·¨®Ã´·Í½¿ÕÇÈÚÌÎÜÎÏßÑÒâÔÕä×׿ÚÚêÞÞìàáîããïååðæçðææðäæïäæíâåëàâéÞáçÝàæÛáäÛáãÜáâÚáâÙààÙáàØáß×áß×áÞÖàÞÖàÞØßߨßáÙßáÛàâÚßâÚàãÚßäÚßãÙÝãÚÝâØÜãØÛãØÛäØÚåØÙäרäרãÖ×âÕ×áÓÕßÑÓÜÏÑÛÍÏÆ¹À­£³®¤²ª¡±¦Ÿ®¤š«»©±ÐÀ·¿º±½³ª¶±¨µ±¨µ±¨µ°§´°§´°§´¯¦³¬¥²«¤²ÄÀÉÏËÒÎÉÑÓÏÕÔÐÖÎÉÒËÇÐÊÆÏÇÃÌ¿ÈÀ¼Æ¾ºÅ¸´¿¬¨´¢­¡œ«¢¬¨£²°¬¸²­º¬©¶£ °§¤³©¦µ©¦µ¥£²¢¡± ž®£Ÿ¯¢Ÿ¯¤¡±£ °¦£²©¦µ£ ±¤¢±«¨¶®¬º±¯¼³°½¶´À»¹Å¾½ÇÁ¾È¼¸Ãº¶Â½¹ÃĺÀ̺»Á²·µ«µ±§³¯§²­¤±©¢°¥ž­¡›«ž˜¨›•§š”¥”Ž ‰œŽˆ›ˆœŠœ‰‹Ÿ™–¨©¦´±®»³¯»´°»³¯»³¯º²®º¨¥²¨¥³¯¬¸¡¢°s‡_€–f}—„Š£“ª‰Œ¥——¬¥£³µ¦«¿®±È¸¹ÑÂÃØÊÌÜÎÐÞÐÑáÓÔäÖ׿ÙÛêÝßìàâîãåïäåðåæïæçïæèïäæíâåìáäèÞáèÝãæÝãåÝãäÜãäÜãáÚááÙãàÚâáØâÞÙâÞØâÞÙâß×áàÙààÙàâÚáâÛáãÚâãÛáâÚßâÚßâÙÞáØÞá×Üâ×Ûâ×Ùâ×ÙâרâÖØâÖØáÕ×ßÔ×ÝÒÕÛÑÓÚÍн²¼¬£²®¤²«¢±¨ ¯¥œ¬¦›¬Æ´¸ÏÀ¿´¾¹¯»´ª¶³¨¶±§´±¨µ°§´±¨µ¯¦³¬¥²®§µÈÃÌÐÌÓÎÉÒÍÉÐÒÎÔÎÉÐÈÃÌÊÅÍÈÄÍÃÀɾ»Å¼¸Ã¹µÀ®ªµ¢ž¬¡œ«¢¬¥¡¯¯«¶²®º«§µ£ °¥¢²§¤³ª¦µ§¤´¤£³¢¡°£¢±¢Ÿ¯£ °¤¡±§¤³¨¥´¥¢±§¤³«©·®­º°®¼µ³¿º¹Ä¾½ÇÀ¾ÉÀ¼Æ¼¹Ä½¹Ä¾ºÅ·­¸Á±´½°¶³©´±¨´¯¦²¬¥²©¢¯¦ ®¡œ«ž™©—¨œ–§–¡Š’‹”Œž“Œ‘‹ž’Ž¡¡Ÿ®®¬¸®¬¸¤¢±­©¶³¯»±­¸­©¶±®¹®©¸¬§µ’¦d|–f…§“—­•–¬””¬™—¬žœ°ª˜¼ª­Å³µÎ¿ÀÖÈÊÚÍÏÝÏÑÞÒÓâÕ×çÚÜëÞàíàâíâäïäæïåæïåæîãåíãåìâåêáåèßäèßåçàåæßåæßæåÞåäÜæâÜåáÛåáÜåáÜåáÜåßÛäÝØáÚÔÞÚÓÜÝ×ÞáÛâãÜããÜããÛââÛàâÛààØßߨÝàÖÝß×ÛàÕÚßÕÙàÕÚßÔÙßÔØÝÓ×ÜÑ×ÚÐ×ÕËÑ´ª·¬¥²«¤±­¥²© °§ž­¦­­¡­Ì½¿Æ¹¾¹®ºµ«·³ª·³ª·²©¶²©¶±¨µ°§´®¦³²ª·ËÆÎÉÄÍÍÈÐÎÉÐÏËÑÎÊÐÊÅÎÅÁÊÄÁÊÃÀÉÀ½Å»¸Â¹µÀ¯«¶¥¡®¡¬¡¬¤Ÿ®¬¨µ²®ºª§µ¢Ÿ¯£ °§¤³©¦µ¨¦µ¤£²£¢²¤¢²¡ž®¢Ÿ¯¤¡±§¤´¥£²¥£²¨¥´­ª·°­¹²°¼·µÁ¾½Æ½¼Æ¿¾È¿¼Ç¿»ÅÁ½Ç¿¼Å¬£²® «»®¶²¨´°¨³­¦³«¤±§¡°¤Ÿ®¢¬ ™ªŸ™©—¨š”¥–¡– — — ”Ž —”¦¦¤²±®¹ª¨µ——¨¢¢²²®º§¤³š¬¬©¶¯«·¨¤´“©u†¡k„Ÿy‹¤”™­Ž‘ª“’ª—•¬˜–«i^m§‘–ð²Ì½¿ÒÄÆ×ÊÌÛÎÏÝÐÒâÕ׿ÙÛéÝßëßáìáãíâäíâäîãåìâåìâæëâæêáæèàæèáçèàçèáèèáèçßéæßèäÞèâÝæâÝæãÞçãÞçÔÐÚ»ǻ´¿¹²½À¸ÃÌÅÎÙÓÛáÛâãÜãâÛâáÚáàØßß×ÞÞ×ÝÞÖÜÞÕÛÝÔÛÜÔÚÜÓÚÜÓÙÜÓÙÛÒÙÚÒÙÒÉѯ§¶«¤²ª£±ª£±ª¢±¨Ÿ¯¦Ÿ®¥­¶¬·»±º·®¹µ¬¸´«·³ª·³ª·³ª·³ª·²©¶°¨µ°©¶»¶À¶±½¿ºÃÇÂËÎÉÐÎÊÐÉÅÎÆÂËÃÀÉ¿ÈÀ½Å»·Â¹µÀ±­¸§£°¢¬¡¬¢ž­©¤²°¬¸«§¶¡ž¯¢ °¦£³©¦µ©¦µ¤£²¤£²££²Ÿž®¢ °¥¢²¦£²¤¢±§¤³©§µ«¨·¯­¹´²¾¸¶Â¼»Å¿½ÈÀÀɾºÅÁ½ÈÁ½ÇÀ½Ç”‹ ™Ž¡¸­·²©µ°§³­¥²ª£²¦ ¯£­¢­ ›«Ÿš«Ÿ™ªž˜©š”¥š’£™‘¢˜¡—‘¢šªª§µ°®ºª¨µ““§¯­ª·«¨¶£ ±ª¦µ±­¹©¥³”–ª‰‘©|Фe~›k~œ~…£Ž©“‘ª“‘ª:;R^Tg£Â³´ÍÀÃÒÅÈØËÎÝÐÒáÓÖäØÛçÜßêßâëàâìáäìáäìâåëáäìáæêâèéâçéáèèáèèáèèâèéáêçáêæàêåàéäßèäßèäßèÝÙ㼴±¨´±§³°§²±§³±§³¸¯ºÀ·ÃÍÄÎØÑÚàØààÙàߨàÞ×ßÝÖÝÜÔÛÛÓÚÛÓÙÛÓÙÛÒÙÛÓÚÚÓÚÛÓÛÑÉÓ®§µª£²ª£²©¢±ª£²«¡°© °¦Ÿ®¬¥´¶®¹¶®¹¶®¹µ­¸´¬·´«·³ª·´«¸²©¶±¨µ¯¨µ­§¶ª¦´¬§µ·²½ÅÀÈËÇÍËÆÎÇÂËÃÀÉÁ¾È¿¼Å¼¸Ã¸´¿³¯»¨£°¤Ÿ®¢ž­¢ž­£Ÿ®­©µª¨¶¡Ÿ¯ Ÿ¯¥¢±ª§¶©¦¶¦¦´¥¤³¢¡±ž®¢¡±¦£²¦£²¦£²¨¥´©¦µ­ª¹²°¼¶´Àº·Ã¼»ÆÀ¿É½¼Ç¿¾ÊÅÂËÃÀʾÇx‰˜µ¬·±¨´­¦²ª¤±¦¡°¤Ÿ®¢­¡­¥ ¯¨¢°«¤²ª£²¥Ÿ®¢›«ž—¨›•¦›•¦¡ž­§¥´¢¡±¥¥´  ±£¢³¢ °›™ª§£²¨¥´®©·§¤²„†Ÿ‰¦”™®|Ф`w—{„¡ŽŽ©©ŽŒ©49S58SMDY”|²´ÎÀÄÓÇÊØÍÐÞÓÖãØÛçÜßèÞâêßãêáäêáäêáåêâèêãèéãèêãéèâéèáèéâêéâëéâìèãìèäêæáêæáêåàéåàé×ÒÝ´¬¹°¦²°¦²®¥±®¤°­¤°­£°­¤°¯¥²µ«·Ä¼ÆÖÏØÜÖßÜ×àÚÕßÚÔÝÚÓÝÙÓÝÙÒÜÚÓÝÛÔÞÛÔÞÛÕÝÒÌÖ®§¶ª£²©¢±¨¢°¨¡°©¢±ª¢±¨¡°«¤²µ®¹µ­·µ­·´¬·µ­¸µ­¸´¬¸´«¸²©¶°¨¶®§¶ª¥´©¤³¨£²«¦´²­¹¼·ÁÈÃÊÇÂËÄÀÉÀ¼Æ¾»Å¼·Â¸´¿³¯º¬¨´¤Ÿ®£ž­ ¬¡¬§£²§¤³¢Ÿ¯¡Ÿ¯£ °©§¶©¨·¦¦´¥¥´¡¡°¢¡±¥£²¥¢±¥¢±§¤³©¦´¬©¶®¬ºµ³¿¶´Á»ºÄ¾½ÇÁ¿ÊÁ¿ÊÈÆÐÄÀÊÄÀÊÿÉlfws±©´­¥²ª£±¦¡°£Ÿ®¡ž­¡ž®¨¤³°ª·³­¹´®¹²«¶«¦³¦¡¯¢¬Ÿ›«Ÿœ«¡Ÿ¯Ÿž¯•–«ŸŸ²©©·§§¶——ª€šœœ­ª¦¶©¤³œš­w}™€…¡’•­…¨vƒ¢†‹§ªŒ‹¨‡‡¥;B_38T/2OA;T‹v~¼©«ÍÁÄÖËÏÚÑÕàÖÛäÛßçÝãèßäéáåéáæêâçéãèêãéêãêéâêéâééáêèáëçãìèãìéåëéåëèãêçâëçâêæáêÐËÖ²©µ¯¥±¯¥±®¤°­£°¬¢¯¬¢¯¬¢°«¢¯¬£°®£±µ«¹Å¼ÈÐÉÓÔÏØØÓÜÙÔÝÙÔÝØÓÜÙÔÝÚÕÞÚÕÞÛÖßÔÏÙ°©¸¨¡°¨¡°§¡±¨¡±©¢±©£²«¢³ª£²²ªµ¶®¸¶®¸µ­¸´¬·µ­·´­·´¬¸³ª¶°¨µ®§µ«¦´¨£²¨£²¨£²§¢±¬¨´¸´¾ÅÀÉÿȿ»Æ½¹Ä»·Â¸´¿µ±¼¯«·¦¢¯¢ž­¡¬ ¬¢Ÿ®¥¢±¡Ÿ¯¡Ÿ¯¡Ÿ¯©¦µ©©·¦¦´¥¥³Ÿž®¦¤²¦£²¤¡°¦£²¨¦³ª¨µ­ª·³°¼µ³¿¸¶Â¾¼ÇÁÀÊÃÂÌÅÄÍÁ½ÉÇÄÍÄÀÉÅÀÈPPnii…¨¢¯§¢°¤ °¢Ÿ®Ÿœ­Ÿœ¬¦¢±­©µ±«·¯©µ¬¦²ª¤±§£¯¥¡­£Ÿ«¢ž­ ž¬ŸŸ¯ŸŸ¯›œ¯ž±£¤´¥¥µšš¬|œˆ¤¥¤´¡ °Œ¤~ƒŸ…ˆ¥†£l}l}œ‚‡¤¨ˆ‰¥†‡¥;B_28T05R/2P<;TfZh£Ž’Ç·ºÕËÐÜÓÙàØÝäÜâæßäçàæèàçéáèéâéêãêêãêêãêéâëêâëçáëèãìéäíéäìéåêèäëèäëèãêçãêØÓݵ¬¹¯¥±®¤°­£°­£°¬¢¯«¡®«¡®ª¡®«¡¯ª °ªŸ°« ±¯¥µµ«º¿¶ÂÎÈÑ×ÓÝØÓÞÙÕÞÛÖßÚÖßÛÖß×Óݳ®½§ °¦ ¯¥ °¦¡°¨¢±ª£²¬¥´«¤³³«·¸¯¹·¯¹¶®¸µ­·µ­·´¬·µ­¸´¬·³«·¯©µ¬¨´©¤³¨£²¨£±¦¡°¥¡°ª¥²¸²½Ä¾ÇÀ¼Æ½¹Ä»·Â¹µÀ·³¾¯«·¦¢¯£Ÿ®Ÿ¬ ¬¡ž¬¢Ÿ¯ž›¬ž­Ÿž®§¤´©©·§¦¶¥¤³  ¯¦¥³¥¢±¤¡°§¤²©§³«¨µ­«¸´²¾·µÁ»¹Å¿½ÈÁÀÊÇÆÏÆÃÍÉÅÐÇÄÍÄÀÉ»µ½@Hd[`{šªŸ­žœ¬ž¬›™«œ›«¢Ÿ¯¦¡°¥¡®¤Ÿ®¤ ®¥ ®¥¡­¥¡­¤ ¬£Ÿ­¡¬Ÿž­žž®  ±žŸ°ŸŸ°¡¡³œœ¯…Ÿv}œ’“«˜˜¬‹¦ˆ‹¦‰‹¨ƒ¢hxšav˜o|œ‚¢ƒ„¢¨:@]5;W17T.6P.5O37PC@Uxhr®› É¼ÂÙÑÖß×ÞãÛâäÝäæßæèáèéäêëäëêãëéäìêâìçãëèãìèãìéäìèäìéäìéåëèäëçãéçáèæáèÎÉÕ³©¶­¢°¬¢¯«¡®«¡®«¡®ª¡®© ­ª ¯©Ÿ®©ž¯¦œ®¨ž¯¦®¦ž¯®¥³Æ¾ÉÕÐÚØÕßÙÕàÚÕßÚÕÞÙÕݸ´Â§ °§¡°¥ ®¥Ÿ°¦ °«¤³°©¶®§µ¶°½Â¼Çº²½¸°º·¯¹·¯¹¶®¹¶®¹µ­¸´­¸°©µ¯«·©¥³¨£²§¡±¦£²¤¡°¤ ®ª¦²¸µ¾À¼Æ½ºÄ¼·Ã»·Á·³¿®ª¶¥ ®£ž­ ž¬ ¬ ­¡ž­›™¬ž®œ­¦¤³ª¨·¨§·£¢²  °¦¥´§¤³§¤³¨¥´©¦´«©·¯­¸´²¾¸¶Âº¸ÄÀ¿ÊÇÅÏÉÈÑËÉÒÌÈÒÉÆÏÆÃ̘˜¦=LbU^u•–¦š™ª››¬œ›¬›™¬œ›«žœ« «¡¬¢ž­¤ °¥ ¯¤Ÿ­¥ ®¥¡®£ž¬£ž­¡¬ œ¬ ­ Ÿ®œ¬®›œ¯Ž‘©„†¤†‡¦†¤w€ ‚‡¤ˆ‹§€…£w~ gwšbt—nxœƒ£š›®CJe?Fa7>Z18S/6Q.4O05N47ONH[|my® ¨ÐÆÎÛÔÝáÚãâÝååàéèãëéäìéãíèãíèãìèãìèãìèãìéäìéäìéåêêæìàÛãÈÀÉûÄÒÉÐßÚàÏÉÓ³ª·«¢¯«¡®ª ­ª ­© ­© ®¨ ®© ¯©Ÿ¯¦œ®¤œ®¤›­¤­¥­ª¡¯»´¿ÐËÕØÔߨÔߨÔߨÔÞþ˥Ÿ°¥ ¯¥ ¯¥Ÿ°¥ ¯©¢±°©¶¯¨¶·°½ÉÅÐÆÀË¿¸Âº²½¸°»·¯º¶®¹¶®¹´®¹°©µ¯ª·«§µ¨£²§¢±¦¢°¦¢°£ž­¢ž­ª§³º¶À¾»Ä½¹Ä»·Â¸´À¯«¶¥¡®¢Ÿ­¡ž­ ¬¡ž­Ÿœ¬™—ª›™«Ÿž®¥¤³«ª¸©©·¡¡±££²¨¨¶¨¥´¨¥´©¦´ª§µ­ª·±¯»¸¶Áº¸ÄÀ¿ÉÉÈÑËÊÓÍÊÓÊÈÑÌÊÓÉÆÏÇÁËmuƒ=SeTbv’¢˜˜ª˜˜ª›™¬›­œšªšªž›« ¬£ ¯§£²¨£²§¢±¦¡°¥ ¯¤Ÿ®¤Ÿ­¤Ÿ®£ž­¢Ÿ­¡Ÿ­ ­œ­š™¬¨‡Š¦ƒ…¤oyždtšs}Ÿ‚‡¥z nw›gt˜[l‘er—Ž©¤¢²ci…X_zGMh=C^5UQQezŒ¨¢±ÇÂÍÔÏÙÏÊÖÅÀν¹É»·È¾»ÊÆÁÏÑËÖâÛäâÜä»´¾­¥°®¦±®¦±­¥°¬£¯¯¥°Å¼Ä×ÒÙ»ƨŸ¬© ­¨Ÿ¬© ­© ­ª¡®©¡®¦Ÿ­¥Ÿ®¢¬¢­¢œ«¤¬¥ž­¥Ÿ®§Ÿ¯±¨´º²»»³¼¨£³¤Ÿ¯£Ÿ¯¢Ÿ¯£ ¯§£±±ª·®§µ·±¾ÈÃÎÊÆÑÄÀÌ®¨· š«œ—© ›¬¤ž°ª¤´¯«¹¶²½¶²¾«¦µ©¤³¨£²£Ÿ® ¬¡ž­ ¬Ÿ¬¦¢°¶²½¿»Å¼¹Ã·³¾©¥²¡ž­ ¬ ¬Ÿœ«œšª‹Œ¢ƒ…Ž£ŸŸ°©©¸¦¦¶££³¥¥´¦¦´¨¦´©¦´©¨µ­«·´²¾»¹ÄÃÂÌÈÇÐÈÇÐÍÌÔËÉÒÌÉÑÍÊÓÍÊÒÄÀÉp~ˆGen^u€‘•¦˜™« ž­¦¢±§£°§£¯¦¢®¤ ®Ÿœ¬ž›«›«šªœ™ªŸš« ›¬Ÿ›­¡®¤Ÿ°§¢²¨£²¨£³¨¢±§¡°§¢±§£±¨£±¦¢°¤ ¯š–«‰‡¤xxqr˜rt™wyœy|žƒ…¢—–«¤¡±£ ¯ÔÐÛÏË×ÇÂϯ­½Šˆœoo†^`xRVnGLf>C\6W?@V<8O<6O82O3.Q.,T,.Y.5`3;jXX€Æ½ÉæßæÏÆÐ­¤°«¢¯«¢®«£®«£®«£¯«£¯«¢®© ¬§ž«¥œª§¬ª¡®© ­©¡®¨¡®§ ­§ ­£­£ž­¢¬£œ¬£¬£ž­¤Ÿ®¤®¤ž®®¥³«¦µ°Ž—¯–𝣡±¤¡°¯©¶¯¨´±©µ¸°»¸°¼¨¢±§¢±§¢±¥Ÿ¯§¢² ­žš¬£Ÿ¯µ±¾Â½È®©·ª¥´§£²¤ ¯¤Ÿ®£ž­¡¬ ž¬¢Ÿ®£ ¯«¨µº¶Áº·Â­ª¶¢Ÿ®Ÿœ«Ÿ¬Ÿ¬ž«•”§„†žƒœŽ‘¥ž ±£¤´ ¡²¤¤³¥¥³¥¥³¨§µª©¶³±½¹¸ÃÁÁÊÆÅÏÊÉÓÌËÕÌÉÓÑÎ×ÑÏÖÏÊÓÏËÔƒƒ˜J]qC]lXo«®ÀÌÌ×ÍÍÙ­¨¹¥¢±¦¢±¦¢±§¢±¤ ¯ ¬Ÿœ¬šªœ˜«œ™«™¬œ˜«žš­žš­žš¬Ÿœ­ œ®¢ž¯§¢±¨£³ª¤³­¦´­§¶®§¶®§µ¬¥³«¤´ª¤³§¡±”“¦s—e|h|’fsSY{×ÓÞÔÐÛÎÊÕÇÃÏ¿ºÉº´Ã¸±À¦ ³‡…œqt_c|NSnAId9@[4;U28R03L54J52I62I75M86Q77V7:^?Cjƒ}˜ÒÉÓéãç×ÎÕ¯¦³ª¡®ª¡®ª¢®©¢­«¢®«¢¯©¡®©¡­¨Ÿ¬§Ÿ¬¨Ÿ¬© ­© ­¨Ÿ¬§Ÿ¬§ ­¦Ÿ¬¤ž­£ž­¢¬¡œ«¡¬¢¬£¬£Ÿ®£ž­¢®¢ž°¡Ÿ¯ ž°¡Ÿ¯¤¡±¤¡°¯ª¶¯¨µ¯§³¸°»¹±¼¥ ¯¦¡±ª¥´ª¥´ª¥´ª¦µžš­ œ®ª¥µ´°½®ª·«¦´©¥³¤¡¯¡¬£ž­¢Ÿ®¢Ÿ®¡ž­¢Ÿ®¤¢°°­¹»¸Â°­¹š­“˜ªž¬ ¬Ÿœ«˜˜©‡ˆ ~‚›†Š¢—™¬¡¤³ž°££³££²¤¤³§§µ­­¹µ´À¿¿ÉÆÅÏËÊÔÌËÔÍÌÕÑÎ×ÒÏÖÐÍÔÑÍÕµ°¼Ž¤nx“œ­Ûáéüûú÷÷÷ööõçå麵Χ·¦¢³¥¡±§¢±¥¢±¥¢±£ °¡ž®Ÿœ­Ÿ›­žš­Ÿœ­ ®¡ž®¡ž®¡ž®¡ž®¡ž®¤Ÿ°¥ °§¢²§¢²©¤²¬¦µ¬¥´«¤³©£²˜ªƒ›n}“dx]oˆR\{:BiØÔßÖÒÝÒÎÙÍÉÕÆÁοºÉ¼µÄº³Á²«»œ™«‚‚˜jl…Y_zOUpDKe:@Y38Q.3K+-E**B*)@**C+,F-0K9;V…€ËÃËáÚàÞÔÚ¶«¶«¢¯¬£¯«¢¯© ­©¡­¨¡®©¢®¨¡®§Ÿ¬¦Ÿ¬§«§Ÿ¬¨Ÿ¬© ­§Ÿ¬¦Ÿ¬¥ž«¥Ÿ­£ž­¢­¡œ«¡¬¡œ«¢ž­¢­¢­ ž¯›®¢Ÿ°¢ ¯¢ °¤¡±¤¡°®¨´®¨´­¦³¸°»³¬¸¢ž® œ¬¦¢±¬¨¶¶²¾¼·Á«¦¶¡ž¯©¥µ±¬º®©·¬§¶«§´¨¤²¥Ÿ®¢ž­¡ž­¢Ÿ®£Ÿ®”—ª¢ ¯¦¥²²°º¶±¼X‚¤-i‘š®Ÿ¬ž›ªš™ªˆŠ }‚›‚‡ ŠŽ£™›®›¯¡¡²¥£³¥¥´ªª¸°°¼º»ÆÂÁËÈÇÑÊÉÓÍËÕÒÐÙÑÎÖÎËÓÑÌÓ¾ºÅŸŸ´ÎÎÛìëñù÷÷ööõôôôõõõôôôôòôðíñâßåÕÓÜÉÇÒ­©¹¡ž®¤¡°§¢±¦¢±¦¢±¥¡°£ ¯¢Ÿ¯¢Ÿ¯¡ž¯ ­¡ž® ­Ÿ›¬ž›¬Ÿ›¬¡œ®¡®£ž¯¥Ÿ¯¥Ÿ°¡˜¬—¦y–ee†]`V[|HPs:Ai.7bÙÕà×ÓÞÓÏÚÏËÖÊÆÒÆÂνÊÀºÇ¼µÂ¸±¿²«¹¡›­„„šnp‡_ayKQi>C\49S05O-2K(+F%'?"%<"&?(-F=AWkfzµ«¶ÛÓÚ¿µ½ª¡®«¢¯«¢¯ª¡®¨ ­¦ ­¨¡®§ ­§ ­¥Ÿ¬¦ž«§Ÿ¬¨Ÿ¬¨¡®§ ­§ ­¥ž¬¦Ÿ­£ž­¢¬ œ«Ÿœ«Ÿœ¬¡ž­¡œ¬¡­¡® œ¯¡ž¯¢Ÿ¯£ ¯¤¡°£ ¯®¨µ¯¨µ­¦³µ®»Ÿœ­—•§˜–©ž›¬¨¤²¿ºÄÇÂ˽·Â®ª¹¡œ¯«¦¶¯ª¹­¨¶­¦´ª¥³¦¡°¤Ÿ®¡ž­£ž­oˆ§#i“˜¬£¡°©§³²¯¸nŽ®t¤|ž¹£¤´œ›«š™ª„‰ž{›~„†Ÿ‹¥”˜«‡•¬sŽ«¦§·­­ºµµÀ½¾ÈÅÄÎÌËÔÌËÔÏÍÖÏÌÕÍËÒÌÉÒÇÄͰ­ÀÚØãìëðïîñïîñòòòóóóôôôõõõóóóóóôöööøøø÷÷÷ííîÖÕÜ®ª¹£ °¦¢°¨¢²¨¤²§£²¦£²¦£²¥¡°£ °¢Ÿ¯¡ž® ­Ÿ›¬žš«š­›˜ª•‘¦ˆŸ„~˜yqng‰^V}NFqD>j>ƒª› ±  ­£ ¯«©µ¥¥³‹²›ž¯¥¬»¢¦¶˜™©‡žrš{„z‚›}…‹’§f‰¨v«œ¬À¯¯¼·¸Ä¼¼ÈÈÇÑÍÍÖÐÏØÏÌÕËÈÐÊÇÐËÇмËÝÛåçåëëêïíìñïîñóòóóóóôôôööö÷÷÷øøøøøøøøøöööööö÷÷÷íìîÀ½È§¢²©¤³«¦µ­©µ®ª¶®©µ¬¨µ¬¨´«§³¨¤²¤¡°›«”’¦ˆ‡}{—romkŠkg…hda^|XTwOGqA:h72d32c03d-5cÚÕàÖÒÝÔÐÛÑÌ×ÏÊÕÍÈÔÎÈÓÍÇÒÍÇÒÊÃÍǿʹĿµÀÀµÀ·¬¸¡˜§{uŒ\[tQUmIPj=Fc3T.0F11Ef]m¤›§ª¡®ª¢¯©¡®¬£°ª¢¯©¡®©¡®©¢¯¨¡¯§ ®¦ ®£Ÿ­¤Ÿ­¥ ¯¥ ¯¥ ¯¦¢±¥¡°¢Ÿ®ž›«žœ¬ž›«žœ«›¬Ž¢cg‚‹ ›œ­›œ¯Ÿž®¢Ÿ¯¬¦´­§µµ®»°ª¸¯©·±¬¸±¬¸±«¸±«·°«·¯ª¶¶°»¿¹Â¾·Á¶®¸°©µ­¦³®§µ°©¶­¥´šœ®z‰¢…Œ¢‰Ž£†‹¢}„ž{„‘𝙢´“™«}—ªXŸ±d®¿@‹¬Z…¦j„ ]8|¤Oµ?¸Oˆ­x­“¢º{‡§t‚¤i| Rj8WMk–ºÀÕêêïåãêèæìíìððïñïîòòñóðïòðïòööööööôôôôôõöööø÷øøøøùùùôô÷óóööõõôóô÷ö÷øøøúúúúúúûûûÑÍÓ¢‘¤˜–ªŸ®¦£²«§¶®©·¯ª¸­¨·«¦µ¨£³£¡°›š«’‘¤††šx{msˆio…`bFCo34c*0]×ÒÛÓÎØÐÊÕÑÈÓÍÆÑÊÄÏÉÃÎÉÂÍÊÁÌÊÂÌÎÃËÒÆÍÓÇÍÖÊÐÖÊÐÖÊÐÒÆÌÎÁÈÌÀÆÍ¿ÅÎÀÄÍ¿Ãͼ©ªˆ‚–gh~QUjGI^79K/0C11EQK]›‘Ÿª¡®ª¡®«¢¯ª¢¯ª¢¯«£°«¢¯©¡®©¡®¨¡®¨¡¯¦ ®¤ž­£ž­¤Ÿ®¥ ¯£Ÿ¯¢ °¡ ¯ ­ž›«Ÿœ­žœ¬œ›¬™˜ªwx‘}–šš«œœ­Ÿž®¢Ÿ°¬¦µ±ª·´­º²«¸±ª¸²«¸±«·±ª·±«¶±«¶°ªµ°ªµ±¬·±«¶³¬·³­¸²¬·²¬¸²¬·°«¸j’²%ƒ°”š°‹Ž¥‰¤†‹¤y„Ÿu‚€Ž¥œ°„‘¨’§p¬½Y¢¹T‚¢jˆ¤Vy˜Kt•\¢I¶-žÑ·Ïr‡¨Vn™UržGd3THj”¹ÃØëëðÜÜääãéîíðòñòóóóôôôõôõööö÷÷÷öööøøøúúúûûûûûûüüüýýýüüü÷÷ùîïôöö÷øøøùùùùùùúúúúúúúúúîîï¡¢±Œ¢–•§žœ­§£²®©¶¯«·¯«¸­©·ª¦µ§¤³¥¢² Ÿ¯˜—©Ž¡‚„˜v{mt‰jo‡YY}=;g/3^ÖÑÚÒÌÖÏÈÓÌÆÑÊÄÏÈÂÍÇÁÌÉÂÍÉÁÌÉÁËÍÂÉÏÄËÒÆÌÖÊÐØÌÒÙÍÓØÌÑÕÉÏÑÅËÏÂÈÏÁÇÐÂÆÑÃÆÏÀÄ·ª´–Ÿki}HGX98I22C56I>;Qƒz‰ª¡®«¢¯«¢¯ª¢¯¬£°¬£°¬¤±«¢¯«¢¯ª¢¯ª¢°©£±¦¢° ®x‰£”˜«—™¬]v˜˜™«žž®žœ­œ¬œ›«œ¬›­‹£|{–›™«£ °¨£´¨¢³­¦µ±ª·²«¸²«¸¯©¶®§´¯¨µ¯©µ®¨´­¨´­§³¬¦³­§³¯©´±«¶²¬·´®¹´®¹³­¸´®¹¢«¼œ¯Ã»¾É©©º’“ª€„¢^€£V¢k€mœ{¥y‰£xŒ¦d¥¸R‘ªHt–Awœ8r™(ošP€¥`±­¼ÌrŠ¥?d‹LvFk™Hn™˜ªÆÛÝæÔÔÞãâéïîòóóóôôôööööööøøøúúúøøøúúúüüüýýýýýýþþþÿÿÿÿÿÿÿÿÿþþýþýýüüüüüüûûûüüüùùù÷÷÷öõöðïﮬ¸…‰‘£›š«¤¢²¬©·°¬¹®ª¸«¨·¨¥´§¤´¦£²¡¡±œ­–”§Œ¡€„—szovŠgk†PMt87aÕÐÙÒÌ×ÎÈÓËÅÐÈÂÎÆÀËÆ¿ÊÇÀËÉÀËÊÁËÌÁÉÎÃÊÑÅËÕÉÏØÍÒÚÏÒÛÐÔÙÎÓÖËÑÒÇÍÐÅËÑÅÊÑÄÈÒÄÈÐÂÆÆ¸¿Ÿ•¥fcw?>P66H;=R:w™Dަ4 m™v¨'i“Z¢]„¥›®ÃIy`’´s½›¯ÊÃËÛååììëïóòóöööøøøùùùøøøúúúüüüüüüüüüüüüþþþþþþþþþýýýþþþþþþþþþüüüüüüüüüûûûûûûüüüúúúúúúùøùõôõ¨§³qz…˜‘£œ›¬£¢±§§µ©¦µ¦¥´£¢²¡¡±  ± Ÿ°¡Ÿ±ž°˜˜ªŽ‘£†™syŒkr†ms‰^c€×ÑÜÒÌ×ÏÉÔËÅÐÉÃÎÈÁÌÈÀËǾÊÈ¿ÊÊ¿ÉÍÁÉÑÆÌÓÇÍÕÉÏ×ÌÐÚÏÒÜÑÔÜÑÔÝÒÕÜÑÕÙÏÔÕËÑÒÈÎÒÇÍÑÅËÎÂÈ˿ů£¯un‚gezpnƒvwŽfi‚gg~œ”¢­¤¯­¤°¬£°¬¤°­¤°«£¯¬£°©¢¯©£°¨¢°§¢±kŠ6{ŽE‘Š™©•š¬•š¬˜œ­œž¯¨§µ»¶Â¾¸Ã¼¶Áº´¿·°»³­¹°©¶®§¶«¥´ª¥µ°«¸°«·®ª·¬§µ¬§µ«§³«¦²ª¦²«¦²«§³ª¦²ª§²ª¦²«§³¼¸ÁËÉд°¼©¦´¬¨µ¯«¸®«¹«¨·¨¥µ§¤´ Ÿ±œ°›¢¶–¡¶yŒ¨f€¡N‡¯H…­IxžJv™2t˜0|ž‚³F˜ÅyžºV€¡Q~Ÿv—¶Qƒ¨dµ±ÌÉÑßææìíìðóóóõõõôôôõõõ÷÷÷÷÷÷øøøúúúüüüüüüüüüýýýýýýýýýÿÿÿþþþþþþþþþýýýýýýþþþþþþýýýúùúøøøùùùööö½ºÀkr‡hs‰v~’†‹”–§­£¢²¤¤³£¢²¡¡±ŸŸ°ž°ž°ŸŸ±  ±œœ®”•§ˆŒžz€“ks…jr‡htŠ×ÑÜÒÌ×ÎÈÓËÅÐÉÃÎÉÂÍÉÁÌÈ¿ÊÉ¿ÊËÀÉÏÂÉÒÆÌÓÇÍÔÉÏÖËÐØÍÑÚÏÓÜÑÔÞÒÖÝÓÖÜÒ×ÚÐÖÖÌÒÓÈÎÑÇÍÏÅËÌÁÉøÁ®¥³£›¬›–¨‘¡yzhj‚„“§«­¤°®¥±­¤±­¤°­¤±¬£°«£°©¢°©¢°¦¡¯†“¥d†›Sˆ›V‡œ‚“¦•™¬Ÿ°¶²¾ÀºÅ½·Â¼¶Áº´¿º´¾·±¼µ®º³¬¹°©·®§¶®§·²¬¹³¬¹³¬¹²¬¸±«¸°«·°©¶®¨´­¦´¬¦³¬¨´¬§³ª¦²©¦²°«¸¸³¾µ±½¶²¾³¯»°¬¸®ª·ª¨·¨¥µŸ²£¢³ŸŸ±‘‘«…ˆ¦}‡¦w†¦Ty 'u¥Hz¡Dq–6i+j”#…¸v§P|—Œ¤µWƒŸ=D8WPg×ÑÜÓÍØÏÉÔÎÆÑÌÃÎÊÂÍÉÁÌÈÀÊÊÁÊËÂÉÎÃËÐÅÍÒÈÎÓÉÏÓÉÐÔÌÒÖÏÕØÐ×ÚÒÙÜÕÚÝÕÚÞÖÛÞ×ÜÝ×ÜÜÕÚÙÑØÔÌÓÍÅÍǾÈĻŹùÄúÅÃ»ÅÆ¾ÈÌÄÌÐÈÒÏÇÑ»ƪ¥´‘¨§¢²«¥²«¤±«¤±«£²«¥²¦¡±ª¥µÇÃÎÈÄÏÃÀÊÁ¾É¾¹Ä»µÀº´¿¼´¿½µÀ½µÀ¼´¿º³¾¹³¾¹³¾¸²½º³½¸²½¹²½¹³¾¹³¾¹´½º´¿º´¾º´¾»µ¿¼¶À¾¹Ã¿ÈÏÌÕáÞäïîðòòóóòóððòïïñíêîÃÐß~±Ñ´ÁÐÉÇÑ·ÁÏ"y§…¬É´·Æ¯¶Æ£¬À’Ÿ¹„™¸Wޏz²G¤Õk”ºoµr˜¼d±S‰°ežÄgžÂm—»™¬ÄËÏÙÞßåÞÝäâàæãáçæäêèæìèçìéèíïîñïïñïíññðòóòóööö÷÷÷úúúüüüýýýÿÿÿÿÿÿÿÿÿþþþþþþþþþúùøÀºÀ™—§˜˜¨˜—§——§——¨‘£ˆ‹„‰›ƒ‰œ„Š…‹ ‡Ž¢‹‘§‹‘©ˆŽ¨…§„¨Š©“¬™š¯ŠŒ¤0=e H&O#?`-Yq*\r×ÑÜÓÍØÐÊÕÍÇÒÌÅÐÊÃÎÈÀËÉÁËÊÁËÍÄËÏÅÍÑÇÎÓÉÏÕËÑÔÌÒÖÎÔØÐ×ÚÒÙÜÔÚÜÔÚÞ×ÜÝÖÛÝ×ÛÞ×ÜÝÖÛÛÓÚ×Ð×ÒÊÒÉÁÊúÄÀ¶Á¿·ÂÀ·Â¿¶ÁÀ¶ÁÄ»ÅËÂËÐÈÏÔÍÔ»ȭ¦µ­¦µª¥³¬¥³©£²¨¢±œ¯Op—œ¤¹ÑÎØÍÉÔÌÈÓËÇÑÅÁ̾¹Äº´¿º´¿¹³¾»´¾½´¾¼µ¿½¶À¼µ¿ºµ¿º´¿¸²½¹²½¸²½¹³¾¹³¾¹³¾¹³¾¹³¾¹³¾»µÀÿÉÎËÔØÕÝãáæçåêæäèãàåßÜáÜÙàÞÜâßÞãÔÒÛÇÆÏ¿¼Æ¦³ÆR¬Û­ÊßÓØâÃÊÙ·ÁÓ±½Ï°¼ÎŽ´Ð- Ø¹ÒäÚßçÁËÚ­¿Ó…©ÏxªÐeÄPˆ³g•¸‘ªÂÉÐÛëêïëéîííïìëïìëïïîñïïñòñóõõõøøøøøøõõõóóóôôô÷÷÷úúúüüüýýýþþþÿÿÿþþþþþþýýýæãã°¬¶™˜¨˜˜¨™™©ššª™™©™™©——¨’¤ŠŽ …‹ž†Œ …Œ ‚‰ „‹£…Œ¦€‰¤†¤~‡¥ƒŠ§‹ª–˜®•–«szš_g‹gtVo‡:d{5czÙÔßÖÐÛÓÍØÐÊÕÎÈÓËÆÑËÃÏËÃÎÌÃÎÎÆÎÐÈÏÓÈÐÔÉÐÕÌÒ×ÍÓ×ÏÖÚÒÙÜÕÚÝÖÛÞ×ÜÞ×ÜÞ×ÜÞÖÜÞÖÜÝÖÜÝÕÜÚÓÚÕÎÕÎÆÎżƿ·Á¿¶ÀÀ·Á¿µ¿Àµ¿Â¸ÁǾÆÌÂÊÑÉÐÔÍÕ¿¹Æ‰’­u…¥¯¨¶®§µ¬¦¶œž³i£¦©¼ÕÒÛÓÐØÐÌÖÏÌÕÎÊÓÀ¼Ç¹´¾¶¯»´®¹´­¸¸°»¸±½º³¾º³¾º´¿»µ¿º´¿¹³¾¹³¾·±¼·±¼·±¼µ¯º´¯º³¯º³¯»¼¸ÃÇÄÍÍÊÐÍÈÐÌÈÐÏËÒÒÏÖÓÑØÜÙàÞÛââàæâàåÞÜâÒÑÙÃÀ;¶Â¶±¼¯¬º ¤¸•°rvœcn“N`ŒNg”Qoœˆš½£²Ó—­ÖŒ¬Õu£Ì]”»Kƒ±e”·“­ÃÑÖßíìïòñòõõõôôôñðòñðòóòóõõõøøøûûûüüüûûûúúúøøøøøøúúúûûûüüüýýýþýüññðÉÎ͇•—‘Ÿ™˜©“”¤“¤–—§ššª››«œ›«››«˜˜©|„™hwŽv–~‡œ€‡Ÿ~†ž~†¢}†£z„¡z„¢ˆ¥Œª•—­œ°¯œœ­™š«kz’Ae~9d|ÜÖàÙÓÞÖÐÛÔÍÙÒÌ×ÏÉÔÍÇÒÎÆÐÏÇÐÑÈÑÑÉÐÓÊÑÕËÑ×ÍÓØÏÕÙÑ×ÛÔÙÝÖÛߨÝߨÝߨÝß×ÝÞÖÝÝÕÝÝÕÜÜÕÜÛÔÛ×Ð×ÒÊÑÌÃÊÆ»Ä¸Á÷À¶¿Áµ¾Á¶¾Æ»ÃËÁÈÎÄËÏÅÍÌÃ˦§»—°®§¶¬¥´©£³¦¡³©£´¨¤µÀ¼ÆÔÐ×ÖÒÙ×ÑÖÌÇÐÃÀʾºÄº³¿µ®º´®º´­¹´¬¹µ®ºµ®º´­ºµ°»¶°»µ¯º´­¹´®¹´®¹³­¸±¬¸²®¹²®º´°¼¹µÀÀ»ÆÅÂÌÈÄÎÎËÓ×ÕÜÝÛááàåáàæèæëèæëêéíïïñïïñåäêÎÌÖº·Ä”˜°y…¦\j–>N„FZŠKa’bx£´ª´ÎÄÌÞÊÐ᯹ׅžÉj—ÁU¸c˜¼’®Ã²½Ìèèìòñòòòóôôôòòòôóôööö÷÷÷øøøùùùúúúûûûüüüüüüüüüûûûùùùúúúúøø «®o‡ŒJov?hsl}{ƒ•Xe~Tf‚iz’…Œ ˜™©œœ«žž­™™«fvŠEevNkzau†s•y‚œy‚žzƒ {ƒ¢}…£‚ˆ¥Œª•–­œ›®šš­™š«•–¨lx“Ie‚?e~ÝØáÚÕÞØÔÝÖÑÛÕÏÚÒÌ×ÑÊÔÑÉÓÒÊÓÔÌÓÓËÒÔËÑÖÌÒØÎÔÙÒ×ÚÓØÜÕÚߨÝàÙÞߨÝߨÝß×Ýß×ÞÝÕÜÝÕÜÜÕÜÛÔÛÚÓÚ×ÎÖÐÈÏÍÃËÊ¿ÆÆºÁÀ³¼¹®¹¼³½½´¾½´¾¼²¼º±»¹¯º¹¯º·®ºµ­¸³«¹°©¶¨¥µi‚£•¬¡Ÿ¯žž±Ž”­QxZyª«½ÉÅϽ¹Ä¸²½´®º³¬¹´­¹´­º³¬¹²¬¸³¬¸³¬¸²¬¸²¬·²¬¸²¬¸´®¹µ¯ºµ±¼¶²½·³¿¾ºÄÈÅÎÒÏØÚ×ßáÞåæâçêèìïïñðïñïîññïòôôôõõõôôôôôôîíð½¿Ï†“±v†ªl~¤r‡©~’¯‰™´ ¨¾½ÀÑÔÖáÙÛåÜÝçÐÒ߬µÐޥɥÆv¨Å­Ã¯½Îðïòïíðïíððíðñïðööö÷÷÷ùùùùùùùùùùùùúúúúúúúúúúúúùùùùùùûûû÷ôôSpz0^h7gq9hs=fs=\q'Dd1Rr?fMoˆl•Ž“¥œ­š›«ew‡>bm;_kAboNgwao‰vœz‚Ÿ†£ƒˆ¥†‹§©“•ª—˜¬•–ª•—¨Ž’¤grMc‚Gd€ÞØáÜÕßÝÕßÚÔÝ×ÑÚÖÏÙÕÍ×ÕÍ×ÖÏÖÖÎÕÖÎÕ×ÍÔÙÏÔÙÑÖÚÓØÜÕÚÞ×ÜߨÝàÙÞàÙÞáÚßàÙßÞ×ÞÝ×ÞÜÕÜÜÕÜÛÔÛÚÓÚÙÑ×ÖÎÔÏÆÎÆ¼Ä»°º¶­¸·¯º¸°»¸¯º¸¯º¹°º¹°º¹¯º¸¯¹¸®ºµ­¸³«¸¯©¸™¯Dy¤€”®©¨·¥¦¶˜ž³f„¥pˆ§ÉÇÓÒÏ×ÄÁÊ»µÀ·±¼´­º³¬¹³¬¹´­¹´­¹³­¸³®¸´®¹´®¹´®¹µ®¹¶°»¶°»·°»¶²½½¹ÄËÇÐÚØÞãáçêèìïíïôóôõõõóóóòòóõõõõõõõõõõõõôôôóóôéêí±¹Î“¥Âޤ¾Œ ¹‹¶’ ¸¥¬À¾ÁÏÝÞæââéàáèããèààçÏÑߪ·Ñš¯Í–°Í›²ÉÍÕÞðïñìéîðíðòðòööö÷÷÷øøø÷÷÷÷÷÷øøøøøøùùùúúúùùùúúúûûûüüüÿÿÿÕ×ÕEjo,[f.^j6fr5bp,Yl,Tq4`|>h‚@hƒ?hRpˆ~‰™œ«w„’Abk2Vb2Tb6VfSldn‰y}—W\x\b€€…Ÿ‘”©“—ª“¦Š¢Š¢nwP^x;IcáÚáàÙàߨßÝÕÜÛÔÛÜÔÛÚÓÚÛÓÚÛÓÚÛÓÚÚÓØÚÓØÛÔÙÜÕÚÝÖÛÝ×ÜßÙÞàÚßáÚààÚàߨàߨßߨßÝÖÝÛÔÛ×Ð×ÏÇÎÊÂÉÆ¾ÅÀ·¿¾µ¿½´¾½´¾»³½º²¼¸°»¸°º¹°º¹°º¹°º·®¹·­¸¶¬¸µ¬·´«·±ª·›´=tŸƒ•®p…¦•¬—š®Œ¨À¼ÈÖÔÚÓÑ×ÖÔÚÔÒÙÏÌÔÈÄÎÁ½Ç¾¸Ã¹³¿¹³¿·±¼·±¼¸²½·±¼¹³¾ºµ¿»¶À½·ÂÁ¾ÇÎÌÔãáæîíðòòóööö÷÷÷÷÷÷÷÷÷ööö÷÷÷÷÷÷÷÷÷øøøòñõîëòêèñâàêÍÐÜÂÊÛºÇÛÄÐàÒØãÛÜåèéíôôõõôôèèìååëãâèæåêçåëèæëêèíêèïãäíÅÐâÚÝèâàçëèíïëðñïñóóô÷÷öøøøùùùøøø÷÷÷ùùùùùùùùùüüüüýüÿÿÿìêé•¥§[~†@ms)\b#Xb*\l0br+_p7dz>iClƒBiEj„Di‚;^w`pˆ˜šªio‚3=X%2O$3P%6S)8T8B]Y^xGKb(.KBHjjm‰…ˆŸ’¥ˆŽ¡‰¡_e|7=Y+2OãÛââÚááÙßàØÞÞÖÝÞÖÝÞÖÝÝÕÜÝÕÜÝÖÜÜÕÚÜÕÚÞÖÛÝ×ÜÝÖÝÞØÞߨàáÛááÛááÚáߨßÞ×ÞÞ×ÞÛÔÛÕÎÔÏÇÍÍÅÌËÄËÇÁÈÁ¹À½´¾½³½»³½¹±»¹°»·¯¹¶­·³ª¶µ¬¶µ¬¶µ¬¶µ¬¶¶¬·²«¶³«¶²ª¶ª§·o‘´™£¸€“®Ž™¯¦©·¡¤´ÍÉÑÙÖÝØÖÜÚØÞÔÒÙÒÏÖÍÊÓËÈÐÇÄÍÉÅÏÈÄÎÅÁÊÁ¾È¾»ÄÂ¿ÈÆÂËÈÅÍÎÊÒÑÎÖÖÓÛãàæîíïôôôööõôôôõõõöööõõõ÷÷÷øøøøøøøøøùøùööøùùúðïóããëïïôùúùø÷øùùø÷÷÷øøøøøøöööóòóëéïçåëæäêçæëêèíìéîìêïîíññðòàâíííñíëñëçîïëðñîñóóóõõõõõõøøø÷÷÷÷÷÷øøøúúúûûûüüüýýýÒÔØwœ¦b˜Z‡Pzƒ?ky2]t3bx8h}7h|9h|=j~=j~:e{?f~Ce8Yt9NlquŠtu‰,1M#?#-H$1N$/J,5L53 %:1**+'!#)0=,J5P!5U0L+CæßææÞååÞããÜáâÛàáÚßáÚßáÚßáÚßáÙßàÙàáÚááÚáàÛâáÜãáÜãáÝãáÜâØÑ×ÕÏÔÙÒרÒ××ÑÖØÒ×ÕÏÔÓÍÒÐÊÏÍÆÍÉÃʞźÁ¿·¿¿¶¾¿·¾¾¶¾¾µ¿¾µ¿½µ¿½µÀ¼¶¿»´¿º´¾²°½u­©©¹µ¯»²¬¹°«·®ª¶¬§´«¥³ª¤²ª¤³©£±¦ ±“¤¨ ³ÎÇÑÙÕÜßÜâÞÜâßÛáÜÙßßÛáßÛááÝâäàææâçæãèéæëîêïïìïðíðñïññðñðïðóóóõôõóóóôôô÷÷÷ûûûüüüûûûûûûûûûûûûûûûüüüûûûûûûûûûüüüûûûûûûúúúøøø÷÷÷òðòîëïííðññòôôôòòóõõõööö÷÷÷ôôôööö÷÷÷øøøñïðc‰Cz‚C{ƒH|„UƒˆŠ£¥¨¸· ±±v‹•[y^{c”`‘Mx†Gu5çàçåÞååÝãäÝâãÛââÛáâÛßâÛàáÚßàØßáÚááÚáâÛâáÝãáÞäâÞäãÞæÛÖÝÐÉÏÓÍÒØÒ×ÛÕÚÚÔÙÙÓØÖÐÕÒÌÑÐÊÏÎÇÍËÄËÈÁÈļÃÁ¸À¿¶À¾·¾¾¶¿¾¶¿¾·À¼Å½ƻ¶¿¸²½·°¼·±¼·±»µ®¹´¬¸²©¶±©¶°§´®¦³­¦³¬¥³¬¥²«¤³¡œ®}zšˆ‚ ÒÌÖÎÈÒÐÊÔÕÐØÛ×ÞßÜâßÜâÛØÞßÜááÝãåáçêçìíëïîíðïîððíððíððíðñïñññòñïñôóôõôõ÷ö÷ûûûûûûûûûûûûûûûúúúûûûûûûüüüüüüüüüüüüûûûûûûùùùúúú÷÷÷ñïñòðòññòóóóõõõôôôööö÷÷÷ùùùøøøùùùúúúúúúçæé”£±‚œ«~œ«wš¨k–¢]˜At‚7m{>q€n…7g}5`w/Sn ?]/N(H%F&D =1),,"".-&%!7#5"2#410æßæåÞåäÞäåÜããÛââÛââÚàáÙßàÙàߨßáÚáâÛââÝããßåâÞäâßåãÞèÛÕÜÙÒØßÙÞßÙÞÛÕÚÚÔÙ×ÑÖÔÎÓÑËÐÏÈÏÌÆÌËÄËÉÂÉÇ¿ÆÄ¼ÃºÁÀ¹ÁÀ¸Â»ÅÈÃËÊÆÍÀ»Ãº³¾¸±»·°»¶®¹´¬·´¬·´¬·³ª·±¨µ°§´°§´°§´­¦³­¦²ª£²”§~ °ÙÓÛàÛâÖÒÛÎÉÔÑÌÖÒËÓÑÊÐßÚÞèåêéåêìëïíêðïíðñðòðíñðîñïìñïëðññòðîðòñò÷øøñðó÷÷÷ûûûûûûûûûûûûúúúúúúüüüýýýýýýüüüûûûûûûüüüûûûúúúûûûöööóóóóóóóóóööö÷÷÷öööøøøûûûûûûüüüüüüüüüüüüÚÖÝ©¦¶¤¤³¢£³›Ÿ®‰•§sŠŸUy@pƒDt„?r€;r|eoLlwZt„i{Œo€“p€”u˜l{”j{’Wr‡>gx3gs4ht8jw>j}Ch„IhŠMlNpQuX|•PuŒGf‚YoVgˆLZ}7Bh!)J!$?!#> 91')-%"*C1=X+6R"-F +B *D#,H )D&A$+F-4NdmåÞåãÜããÜâãÛäàØâß×áÞÖàÛÖßÛÖßÚÕÞÚÕÞÚÖßÛ×àÜÙáÜÙãÚÖßÚÖÜ×ÒØÕÐÖÙÖÛÜØÝÚÖÛØÓØÖÑÖÕÏÔÒÌÑÐÊÏÎÈÎÉÂÉĽÃºÁÁ¹ÁûÂŽÄŽį½ÄÇÀǺÿ¶À½´¾½´¾½´¾¾µ¿¼³½¼³½»³½º³½¹±»¸°»µ­¹ÇÂÍØÖÞÙÖßÙ×ÜÝÚàÝÛáÛÙßÜÙßÝÙßÊÅη±½±«·¬¦µ±ª¸³­º³­»¬¨º¨¦»«ª½ª§º¤¡´§¢µ®§¶³«¸»°¹Á´»Å¸»Ãµ¹ÊÃÊçãéñïñõõõ÷÷÷÷÷÷øøøùùùúúúùùùöööøøøøøøúúúùùùúúúùùùúúúûûûüüüüüüûûûýýýüüüûûûüüüüüüýýýüüüùøùÎÉй³À±®¼¥¤³•¦zˆ›e|ŽQpCiw=fr;do;epAjtQp|Zv„Zt†@fw0^o-`o.bo1er4hu3gt:jy=l}=l}Lj8Bb$-M7903K13J''=2-.&,3K:D`3>['2M".H'1L(1L"+G'B(C&.JKZräÝåâÜäâÛãàÙãàØâÝ×áÛÖàÛÕÞÚÔÞÙÔÞØÔßÙÕàÚÖáÜØãÜÙãÙÕß×ÑÙÝØÞßÛààÜáÝØÝÝ×ÜÛÕÚÙÓØÖÐÕÒÌÑÐÊÏÌÅËÇ¿ÇÆ¿ÆÆ¾ÅžÅŽÄûÂĽÄÉÂÉÊÃÊŽſ¶¿¾µ¾¾µ¿¾µ¾½´¾½µ¿¼´¾»´¾¼³½¹±»¸°»ÉÅÏÛØàÚ×àÙÖÝÛÙßÛÙßÚØÞÚ×ÝÛ×ÝÒÎÕ´°¼¯«·±«¸´¯º¶°»¶¯¼À»ÉÅÀÎÀºÉ¹µÅ²®¿¬¨»§£¶ª¦¶®¨¸¶­¹»±º¿²ºÂ·½ÜÔÚïíðôóôõõõõõõ÷÷÷ööööööööööööööööööööö÷÷÷÷÷÷øøøúúúúúúüüüüüüûûûûûûüüüûûûûûûüüüúúúúúúúúúðïðÇÂÊÀ»Ä¼¶Áµ®º­§µ¦¢±Ÿœ®”•©†£x„›dzSqƒEkx\t6Hm1?d(H4- ( (-/2/,*'1'3N+7T+6Q%/J$A&C2@\KawâÜçàÛåÞÚäÝ×âÜ×âÛ×âÚÖáÙÕà×ÓßÖÒÞØÔßÙÕàÛ×âÝÚäåâçæâçäàæãßåàÛàÙÔÙÕÎÓÓÌÑÑÊÏÏÈÍÐÉÎÐÉÎÏÉÎÌÆËÉÁÈÈÀÇÇÀÇÆ¿ÆÅ½ÄŽÄžÅǾÅÈÀÇÇÀÇÁ¹Á¾µ¿½´¾½´¾½´¾¾µ¿½´¾¼³½½µ¿ÔÐØÞÜâÞÛâÛÙßÚØÞÚØÞ×ÕÛØÕÛÕÐׯ¾Ç¿·Á¶¯º¶°»³­¹¸´ÀÐÌÖÙÔÝÙÓÞ×ÑÜÕÏÚÓÍØÏÈÓÉÅÑÿ;ºÉ¸µÅ´±Á³¯¿µ¯¿µ®»¶®º¹¯ºº¯¹»±ºÃ¸¿ÔËÎáÙÜèâåíéííéîîêîëçìðíðëèꆎw}“†‡”‡‡™Ÿ““¦šœ©Ÿ ¼´²°¥¦Å¾ÀÌÅÇÎÈÊÆ¿ÄºÀ½´¾¹¯º¶¬¸µ¬·³ª·²¨µ®§´¬¥´©£²¨¢²¦ ±¥ ±§¡±©¤²©¤³©¤²§¢±§£²­yŠœR{‰Fy„@w;t};t}=u~;sz&E"*B""7&)>-1F $6%):#&9!9%.I'0J%-F"<9'2L=SkâÞèàÜçÞÚåÝÙäÜØãÜØãÛ×âÛ×âÙÕàÙÕàÙÕàÚÖáÜØãÞÙäÝÙäÝÙäÞÚäßÜæÚÕßÑÊÑÏÇÍÎÇÌÎÆËÏÈÍÏÈÍËÄÉÈÁÆÇ¿ÅÆ¾ÄÆ¾ÄÇ¿ÆÇ¿ÆÅ½ÄûÃļÃŽį¾ÅǾÅûþµ¿¾µ¿¾µ¾½´½Àµ¾¿´½ÇÁÊÙ×ÝÛÙßÙ×ߨÖÝ×ÕÛÙ×ÝÖÐØÖÐ×ÛÖÜàÜãáÜãľɷ±¼·±½ÈÃÏÚÕßÜ×àÚÕÞÙÓÝØÑÜÖÐÛÔÎÙÒÌ×ÑËÖÎÈÔËÆÒÇÃÏÿ̿»Éº¶Å¶±Àµ°½´®»³¬¹³«·´ªµ¶ª¶¸«µµ©³º±º¿¶½Å½ÂƾŢ™¢]YjHGZBCXFH_AE]>B]>C_;AZ-.D)*>,-A69M06O,3O&.I")A#:"9&.F4E^âßéàÜçßÛæÝÙäÜØãÜØãÛ×âÛ×âÛ×âÙÕàÙÕáÜ×âÞÙâßÚäßÚãßÚãÝÚäßÛæßÛæÚÕàÕÎÔÓÌÑÑÊÏÏÈÍÌÅÊÈÀÆÇ¿ÅÉ¿ÅÈÀÆÈÀÇÉÁÉÇ¿ÆÃ¼ÂļÃļÃļÃŽÄÈÀÇûÿ¶À¾µ¾½´½½³½Àµ¾Ä»ÄÖÓÚÚØÞÙ×ߨÕÞÖÔÛÚ×ÝÓÌÕØÑÙàÜââÞäãßåàÜâÁ¹Äº´¿ÉÄÏÚÕÞÝ×àÝÖàÚÕÞÙÔÝ×ÑÜÖÐÛÔÎÙÑË×ÑËÖÏÉÔÏÉÔÎÈÓËÅÑÇÂÎÁ¾Ë½¸Çº¶Ãº³À¸±¾¶¯¼µ­º¶¬¹¶­¹±§³²¨´·­¹¼³½¼´¾«£°|w‡LJ\POcPQfBD[?C\BF`U9>W"7#9(1HâßéáÝèàÜçßÛæÝÙäÜÙãÝÙäÝØãÝ×âÜ×áÝØâÝØáÞÙâàÛäàÛäàÛäßÛäàÝæáÞçáÞçßÛåÛÖßÖÐÖÒÊÐÍÅËÊÂÈËÄÉÊÄÉËÃÉÊÃÉÉÁǿĿļÄļÃÇ¿ÆÉÁÈÉÁÈúÿ·À¿¶ÁżÇÉÂËǾÈÏÊÑÚÙÞ򯧯ÖÞÙ×ÞØÕÛËÀÍÚÒÛãßåäàæäßæäàæàÜã¾¶ÂÀ¹ÄÚÕÝÝØßÝÖßÞÕàÙÕÝÙÓÝ×ÑÜÕÏÚÔÎÙÒËØÐËÖÐÊÕÐÊÕÑËÖÑËÖÏÉÓÌÆÑÈÁÍľÉÀ¹Æ¾·Ã»´Á¸±¾¸°¼¹±¼¸¯»·®º»²½¾µ¿¾µ¿½µ¿ ™¦eatcbx`axTUlNQjSVpHJb;>V9>V=BZAG^>D[;@Y:AZ9@Z9@Y8>W?D[STikg|€yŒ™’Ÿª£®°¨³±¨²¬¤¯™› —£³«µ¶®¹·¯º·¯º·¯º·¯º¶®¹³ª·­§µ§£² ž¯š™¬’”ªŒ¦†Œ¥ˆ£csNf˜Cc’?c;cŽ;cŒ>`ŽH_’O^”^ieuVhŽ@Nt:>`>>[@>WA@TECVABUBG]ALd@Je29S*1K"(?45#;ãàéáÝèàÜæàÜçßÚåÞÙäÝÙãßÚãÞÙâÝØáÝØâÞÙâÞÙâßÚäàÛäáÜåáÜåãÞçãßèâßèãàéâßéàÜçÝÙãÚÕßÖÐÙÐÉÑÎÇÎÍÅÍÌÃËÈÀÇÆ¾ÅƾÅÇ¿ÆÊÁÈÌÄËÎÇÏÎÆÏÉÂËÌÆÐÑÍØÓÏÚÓÏÚÓÎØÙÖÝÛÙßÚØÞÛÙßÕÑÙÁµÃÒÇÒåßææßææßææßååàæÛÔܼ´¿ÌÆÐßÙàߨßÞÖßÜÕÞÛÕÞØÓÜÖÐÛÔÎÙÓÎÙÑÌ×ÐÌ×ÒÌ×ÒÌ×ÒÍ×ÕÍ×ÕÎ×ÓÌÕÐÉÓÍÆÑÈÂÌýÈÀºÅ¿·Â½µÀ¼´¿»³¾¾´¿¾´¿½µ¿¼´¾¼´¾®¨µŒ‰›ŠˆœŒŒŸ”‘¦—•©ˆˆžoo…STjMQhKPhHMdCI`BG_@G_;C\:B[7>W6=W8@YW6>X5>Y5>Z8A[8A]D^=BZ5:Q6;S=BYb`r”¢·®¹¹¯º¸®º¸¯ºµ­¹²ª·¯¨µª¤³¦¢±¢Ÿ°žœ¯šš­š˜¬˜˜«šš­––­v£Rf•L`•I[“IV”LS–W_œcpŸGYˆ:L{7Gv;HtCPuK_€H_†FS|>EiAMj-B^+>Z=Hc08R#*C#+B 65ãàéâÞéáÝèãÝçàÛåáÜäáÜåáÚãáÙãâÚããÜãâÛâáÚâãÝäãÝäâÝååÝæäÞèåàéæáêæáêæâëæãìçäíæãìæãìåâëäßèåàéäßèãßæãßåäÞååÞåäÝäãÜãáÚáß×áÜ×àÛÖߨÓÝ×ÓÝÙÖÞÞÜâÝÛáÝÛá×ÔÛ½³À»®½ÚÓÛãÜãæßææàæçáæçáæØÐØº²½ÍÆÎáÚààØàÞ×ÞÝÕÜÚÔÛØÑÛÕÏÙÓÍÙÒÌ×ÑÌ×ÒÌ×ÓÍØÔÎÙÕÐØÕÐÙØÐÚØÑÚÙÒÚÚÓÚ×Ð×ÓÌÓÑÉÒÎÆÐÊÂÌÆ¾ÈúŹĸÄÁ¸Ä¹¯¼¸¯¼¸¯»¹±¼¾·ÂÌÃËÕÍÔÚÓØØÎÔÖÌÒÖÌÒÒÈÏÊÀȵ®»“’§{~–ilƒ[^tKOdBH^9@Y9@YU6>U@E\to‚¨Ÿ«·­¹¸®º·®¹´«¸°¨µ¬¦´¨£²¦¢±¤ °£ °¡Ÿ°¡Ÿ°¢ °¢ ±¤¢³£¡²Ž«jr Xc™RZ”RZ”\i—Zj”@P~9Fu=JxHXSj‰VrWr”HZ…KVx>Ml'E\:AX=CZ8?V6=U7>V7>V8@V4/4EåâëãáêäàéäßèäßèäÞçäÝåäÝäåÝäåÞåæÞäæßäåÞäåÞäåÞåæßææßæçàçéâééâéèäëéåìêåíéäîéäîéäíèãìçâëæáéæáççàçæßææßæåÞåæßæåÞåäÝäâÛâáÚáßÙáÞÙáÞÛâÞÜâÝÛáÜÚáÕÐÚÈÀËÈÀËÚÒÙàÚßáÛàãÝâåßäæàåæßäÑÉÒºÄàÚßàØÞÞ×ÝÜÕÜÛÔÛÛÓÛÖÐÙÓÏØÒÍÖÑÌÖÒÍ×ÓÎ×ÔÏØÖÑÚÙÑÛÚÒÜÚÒÜÛÒÝÛÓÝÛÔÛÙÒÙÙÑØÙÒØÙÒÙ×ÐÖÕÌÔÑÉÏÎÆÍÉÁÈŽÅÁ¸Â½µÀ½µÀÀ·ÂûÄĻž¸Âºµ¿±­¸±¬¸¶°º¿·ÀÎÅËÖÏÓÓÊÐÍÅËÀ¸Á«¥²ŸvwŒ`czSXpMRhGMb@F[=BW6^uGf}m”˜ª‹•¨}‹¡w†œtƒ›p}—gs\g„JWt4@_#0O3>Z8B^-6Q)/H59L03EæãìåâëåáêåàéäßèäßèåÝæåßåæÞææßåèáæçàåçàååÞãæßåæßæçàçéâéêâééäêêäëéæëêåíêæìêåíéåìèäêæâéæâèçáççàçæßæçàçæßæçàççàçåÞåãÜãâÛââÛâÝÚßÞÚàÝÚàßÜãßÛäÓÍ×ÎÆÑÜÕÝáÚààÚàáÛàãÜáäÝâåßäæßãàÙÞÓÌÔáÚßߨÝÝÖÝÛÔÛÚÓÚÚÓÚØÐÙÕÎØÕÎ×ÕÍ×ÒÍÖÒÍÖÖÎØ×ÐÚÙÑÛÚÓÛÛÔÛÜÔÜÜÓÞÛÓÛÙÒÙÙÒÙÚÓÚÝÖÚÜÕÚÙÒ××ÏÕÔÍÒÏÇÍÊÂÉÆ½ÆÁ¸Â¾¶Á¿¶ÁÁ·Â»´¿¶²½¶²¾°¬¸±­¸²®¹¯«¸³®»ËÃÊÓÌÑÏÅÌÆ½Ä¼³¼¶­·§ ® ||“im„_d|[axMRh>BVCZcaw†‚‘ž˜§¥Ÿ¯¥ °¦¡±¨£²ª¦´¬§¶­©¶¯«·°¬¸°¬¸²®º³¯»´°¼³°½««¸ŠŽ£Xn„Bdv^wˆ‚ŽŸŽ–¦•¥† ~‡›|ƒ˜uz’gk„QUn48P-&,C*/F%(;*"èäíèãìæáêåàéæáéæàççßççàçèáæèáæéâçéâçèáæèáæèáæéâæèâèéãéêãêëäëêãêëäëêäêéäêèäêèãêéâééáéèáèçàçèáèèáèçâèèáèéâéèáèèàèæßæåÞåãÞæÕÑÛÖÓÜÞÚâãßçÞÙâáÛââÛâáÚááÛàáÛàßÙÞàÚßâÛàãÜàãÜàãÜßâÛÞàÙÝÞ×ÜÜÖÛÝÖÚÜÔÛÚÓÚÙÒÙØÒÙØÑØØÐ××Ð×ØÑØØÑØÙÒÙÚÔÛÜÕÜÜÕÜÜÕÜÜÕÜÜÕÜÛÔÛÛÔÛÛÔÛÝÖÛÞ×ÜÞ×ÜÞ×ÜÜÕÚÚÓØÖÎÔÐÈÏÊÂÊÆ¾ÈŽÇŽǼ¶Á¸´¿·²½´±½®­»®­»±¯»®®¼§§¸³°½Â»ÃƾŹÁ½µ¾½´¾»²¼º±¼¸°º°©¶©£²ž›¬‹Œ tu_bxIMbAF[BH^>EZ5S15J27K28K/5J.5L18Q28QKMats„“Ÿª¦µ®«¹±­¼³®½µ±½¶²¾·³¿µ±½³°¼³°»²°»­­¹¥¦³•š©tƒ–GfwPm}v…•ˆ’ „›~†˜y“qwŠah{MTiCH\6=Q07M&,A#5.+ëæïéäíèãìèãëçâéèáèèáçéâçêãèêãèéâçêãçéâæèáæéâçêãèëäéëäéìåêìåêìåëëåëêäêëãêëäëêäêëäëéâééâééâéèáèéâééãêêâéêãêêãêêãêæàçåáçäâéàÜääàæåÞåãÝããÝäãÝäãÛâãÜâãÝáâÜááÚßâÛàáÚßáÚßâÛßáÚÝâÙÜߨÛߨÛßÖÛÞÕÚÜÕÚÜÔÙÚÓØÙÓØÚÓØÙÒ×ÚÓØÚÓÙÚÓÙÜÔÛÝÕÜÝÖÝÞ×ÞÞ×ÞÞ×ÞÞ×ÞÝÖÝÝÖÝÝÖÝÞ×ÜߨÜߨÝàÙÞàÙÞߨÝÞ×ÜÛÔÙ×ÐÖÔÌÓÎÇÎËÄË¿ºÄµ²¾´±½µ²½µ²¾´²¾µ³¿¸¶Â¶´Àµ²¾»¶À½·ÁÁ¹ÂûÂùÁ¸ÀÀ¸ÀÀ¸ÀÁ¸ÀÁ¹ÀÁ¸ÁÀ·Á¾µÀ´­¹š•§mn„[_uWXnGJ_=@S6:M6DX?EY39L*0D/6J/6K18N8?V>D[JK^nk{”±«µÂ¼ÅÉÂÉÉÂÊÆ¿ÆÀºÁº¶½³¯¸©¨±Ÿ¡ª–™¥ƒŒ›[t„ChuYt€fz†]m|N[kFN`NWj]buRXl=BY=BZS6>R3:O07M07N/6L,2G6:ORRdsp}’Ž˜¬¦­¶¯µ¼¶¼³­´¦¢©¥¢¨¢¡ª ¡ª™›¤’• |‡—Sp€AfsIcpBM]4;L06H8>RLPc^`rDH`19T=D^RZuV[tîêïîèïíæíìåëìåëëäêëäéêãèêâæëãåìãæìãæêâåéâåéâçéâçêãèìåêíæëíçìîèíîèíîèîîçíîçîîçííæííçììæëìåëëæêêäééâéçàççàççáççàçæßæäÞåäÞåáÜæáÜåáÝäãßäãÞääÝääÝäãÜãâÛáâÛàáÚßâÛàâÛàâÛààÙÞß×ÛßÖÙÞÕØÞÔ×ÞÓÖÜÓÖÜÒÕÚÑÔÚÑÔÙÐÔÚÐÖÜÒØÜÒØÜÓÙÚÓØÛÔÙÛÔÙÛÔÙÜÕÚÝÖÛÞÖÝß×ÞÝ×ÝÝ×ÝÞ×ÝÞ×ÜÝÖÛÝÖÛÜÕÚÜÕÚÞ×ÜÞØÝßÙÞÞØÝßÙÝÞØÝÊÃ˹³¾¶±¼µ°»µ±¼¸´¿»·Â¿»ÆÀ½ÈÁ½ÈÁ½È¼¹Åº¶ÁÀ»ÄÇÀÈÏÅÈ×ÈÉØÊËÙÊËØÊËÙËÍÙÌÏ×ÌÐÖÌÑÕÌÒÔÍÒÔÍÓÓÌÒÔÍÔÕÎÕÕÎÕÑÉÒ¾·Ã’žno…UZrIPiCJa9@T6>R3:Q/6L,2G(,B,1G36KEEVUQ]^Xbjelb^f^[fXYc]co{ƒŽ–˜¡“•Ÿ‰›s‚’Kiw2ER+3C,2D(-@+0D48LWVhmlKNg8=WPVo_avïëðïèîîæîìåëêäêêäèëäééâçéãæëâåìãæìãæëâåéãæêãçêãèëäéìåêíæëîèíîèíïèîïèïïéîïèîîèíîèííçììæëëåëëåêêäééâéçàççàççàçåÞååßæãÞæâÝæâÝæâÝæáÜæâÞäãßåäÞååÞåãÜãáÛááÛààÙÞáÚßàÙÞߨÝÞØÜßÖÛÞÕØÝÔ×ÝÓÖÜÑÔÛÐÓÚÐÓÙÏÒØÏÒÙÏÔÚÐÖÛÑ×ÛÑ×ÛÒØÚÒØÚÓØÚÓØÛÔÙÜÕÚÜÕÛÝÕÛÞÖÝÝÕÜÜÔÛÜÕÛÜÕÛÜÖÚÛÔÙÚÓØÛÔÙÛÕÚÜÖÜÝÖÝÝÖÝÞ×ÝÞØÞÐÉÑ»´¿¶°»´¯»´°»·³¾»·Â¾»ÆÂ¼ÇþÈþÉÁ½È»¸Ä½¹ÄÆÂÉÏÇËÙÊËÛÌÌÜÎÏÝÏÐÝÐÑÞÐÒÛÑÓÛÑÔÚÑÕÙÑÖØÐÖ×ÐÕ×ÑÖØÑÖÙÑ×ÚÓÙÙÒ×ÐÈÑ·°¾‰†™Y\rHNd;@T6DM\ox„’œˆ›}ˆ˜bv‡CPa.3D(-?%*=%+?+1D7:N`^oggzLPgQUlOQdïìððëïîèîìæëêäééäéêãèêãèêãèéãæêáåêâåéâäêãèéâçêãèëäéìæëíçìîèíðêïïéîïéîñëððêïïéîîèííçììæëìæëìæëêäêêãéçàçæßæåàåäàæäÞèäÞçãßèâÞçãßèãÞçâÞåâÞääÞååÞåãÜããÜáâÛààÙÞߨÞàÙÞÞ×ÜÝÖÛÝÕÙÝÔØÞÓÖÜÑÔÚÏÒÚÏÑÙÏÑÙÎÑØÏÓØÎÓÙÎÕÙÐÖÚÐÖÛÑ×ÛÐ×ÙÒ×ÛÔÙÛÓØÛÕÚÛÓÚÜÔÛÜÔÛÛÓÚÚÓÚÙÒÙÙÓÙÙÒØÙÒרÑÖØÑÖØÒØÚÓÚÛÔÛÜÔÛÛÕÜÞ×ÞØÑØÀ¹Ã·°»³­º±®ºµ²½¹µÀ¾¹ÄÁ¼ÇÄ¿ÈÅÀÉÅÀÊÀ½È½¹ÅÅÁÉÏÈÎØËÍÚËÌÜÎÎàÑÒáÓÔàÔÕàÓÖßÔÖÞÕ×ÜÓÖÜÓÖÜÓ×ÜÓØÜÓÙÛÔÚÛÕÚÛÔÙÛÔÙØÐ×ÊÃÍ£œª_]o:;M47J7=R4:Q17O/5O*2M/7P17Q).D!%5.)+#%5%'9,1DDK\ow„‹œ…šx„•]j{38G"%7%);'+>)/A*0C:=Ppn€cdxUYmGJ^ðíïðìðïéîíæìëåêêäéêãèéâçèáæèáçéâåêâæéâæêãçéâèêãèëåêíçìîèíðêïñëðñëðñëðñëððêïïéîïéîîèíîçìîçììåêìåêéãéçàçåàæäßçãÞèäÞçãßèãàéâàéãßèâßèâÝæáÝåâÝãäÝäãÜããÛááÛàߨàÞ×ßÞ×ÝÞ×ÝÝÖÛÞÖÚßÖØÞÔ×ÝÑÔÛÐÓÙÎÑÙÎÑÙÎÑ×ÍÑ×ÍÒ×ÍÓØÎÔÙÏÕÙÏÕÙÐÕØÑÖÙÒ×ÙÒØÙÑØÚÒÙÛÓÚÛÓÚÚÒÙ×Ð×ÕÎÕÔÍÔÒËÒÐÈÎÍÆËÏÈÍÒËÐÖÏÕØÑØÙÒÚÛÔÛÜÕÜÜÕÜÉÁ˶°»´®º³®º´°¼¸´¿½¹Ã½ÆÃ½ÇľÈÅ¿ÊÅÁÊ¿¼Ç¿ÈÌÆÌÔÊÍØÊÊÛÌÊÞÑÏáÓÔãÕÖãÖ×âÖØàÖØßÕØßÖÙßÖÙßÖÙßÖÙÞÕÙÞÔÙßÖÚÞÕÚÝÕÚÛÔÚÒÊÒ¤™¥MIX?ATEJa?F\7=T9@X3:T07R08R.5M+0G&*$);!$6%':GGX]^pAEZ:@UñíïñìïïéîíçììæëêäéêãèéâçéâçéâçêãèéãèêãèêãèêãèêãèìæëíçìïéîðëðòëðòìññëðòìñðêïðêïïéîîèííçìíæëìåêëäéêãéèáèæàçäàèãßèâÞçãßèâàéâßèâßèâàèäßèãÞçãÞåãÞäãÝäãÜââÚááÚáàÙààÙàߨßߨÝß×ÜßÖÙßÖÙÞÓÖÜÑÔÙÎÑØÍÐØÍÐÖÌÐÕËÑ×ÍÓØÍÓØÏÕØÏÔ×ÐÕØÑÖÙÑרÐ×ÙÑØÚÒÙÚÒÙÚÒÙÙÒØÔÌÔÍÅÌÈÀÇûþ¶¾¼´¼½µ½ÁºÁÇÀÆÍÆËÑËÑÔÍÓÖÏÕÙÒÙÐÉл´¾´­¹³­º¶±¼·³¾¼·ÂÁ¼ÅþÇýÈÅ¿ÊÇÂË¿ɿ»ÆÄÀÈËÄÉÕÇÉØÇÇÜÎÌßÒÑâÕÖã××ãרâÖØáÖØáÖØá×Ùá×ÚáÖÙßÕØÝÕ×ÞÕØÞÕÙßÕÚÝÕÛÛÔÚËÁÇmetLNeZ_yX^vMSiFLa?E[9?W4;S28O37O16M-1F*.@)-?)-?).A&*=$&815H8>OOT`\_i12=& "3&*<#&811$&859M/6L+1HñìîðëïïéîíçììæëëåêêãèêãèëäééâçêãèéâçêãèéâçéâçêäéëåêîèíïéîðêïòíïñìïñìðñëðñëððêïïêîïèìîçìíæììåêíæëëåêéâèçáèåáéäàéãàéãàéãàèãàéãàéãàéäàéåàéäßèãÞçãÞäâÞäâÜãâÛââÛâáÚáàÚààÚßàÙÞàÖÛßÖÙÝÓÖÛÑÔÙÎÑØÍÏ×ÌÎÖÊÐÔÊÐÕËÑ×ÎÔ×ÐÕØÑÕ×ÐÕØÐ×ÙÑØÙÐ×ØÑØÙÒÙÚÒØÙÒØ×ÏÖÍÅÌļû³¼¸°º¶¯ºµ­·´­¸¶®¸¸°º¼´¾Â¹ÁÆ¿ÆËÃÊÐÉÐÏÈϾ¶Á´®¹´®¹¶°»·²½¹µÀ¿ºÄþÇľÈÄ¿ÉÇÂËÅÀËÀ¼Ç¾ºÅÆÀÈÔÈËÔÄÅØÉÈÜÏÍàÒÑáÔÔâÖÖã××âÕ×âÖØá×Ùâ×ÙáÖÙßÕØßÕØÞÕØÝÔ×ÞÕØÝÖÛÝÖÛÔÍÓ¦«„˜„†ux^czSVlMQfDJ`?D[9=U59Q7O13D$&6(*=+/B!$72"3' !#.!3#'928J7=R5AV.2F*.A&)<#&:))+,&"3"(;"(<!5.88KffyïèêðêëðêëðééðèéïçèîåæîãåíâäëâãìâäëáäêáãìãæìäçíæéîçêðéìòìîòïðòòòññññòòñññòññòññóðïóîïóíîóíîñëìïèëïæéëãèêãèéáèæàçäßçäßçäÞçåàéæáêçãìéåëêæìéæëëæíëåìëåëêãêèâèæßæåÞåäÝäâÛâáÚáÞØßÜÕÝØÑØÔÍÔÒÊÑÐÈÏÎÆÎÌÄÌÍÅÍÎÆÍÐÈÏÐÈÏÓËÑÔÌÓÕÍÔÖÎÕ×ÏÖØÐ×ÙÒרÑÖÖÏÔËÄ̼´¾¸°ºº²¼»³½¹±»º²¼¹±»¹²»¸±¼¸²½¹²½º²½¹±¼º³½¼¸Áº´¿¶±¼µ°º´°»²®º±¬¸¯«¶±ª·µ¯»¿¹Ääãèøøø÷÷÷ôôôéèëÁ»Ä®£®°¡ª±Ÿ¦·¥¨Â®°Ê·¸Ï½½ÒÁÂÔÅÆÕÆÈ×ÊËÙËÍÚÍÏÚÏÒÚÐÓÙÐÓÙÐÔØÎÓÖÌÒÒÈÍÍÃÉȽÄÁ¸À»²¼¸¯¹¶­·¶¬¶µ«µ³©µ¯§³­¤±¬£°›’¢omgh|Z\pXZnDG[9=Q8:O-.B%&8*)*%$-"';'-A#(< 3 3JK]ðéêðèéðééñééðèéïççðåæîãäîâãíáãìáãìáãìáãìãæíåèîæéîçêñêìòíîòððñòòòòòòòòññññòòòññòððóîïóíîòìíñêëðçéíäçëãæéâæèáçåßæåÞæäÞæãÞèåàéæáêçãëèäêéåëëåììæììåììæëëäêéâèçàçæßæäÝäãÜãâÛâß×ÞÜÕÜØÑØÔÍÔÑÊÑÐÈÐÍÅÏÌÄÌËÃÌÌÃÌÍÅÌÎÅÌÐÆÎÑÈÐÒËÑÔÍÓÖÎÕ×ÏÖØÐ××ÏÖÖÎÔÍÅ;¶À¹±»¹±»¹±»¹±»¹±»¹±»¹±¼¸°»¸²¼º³¾¹±¼º²½º³¾¼¶Àº´¿·±¼µ°»µ¯º³¯º¯«·®©µ²«¸¶°»ÊÄÎïíïöööõõõöööîîîÁ»Ã®¥±²¥°³¤­»¬±Åµ¸Ì¼¾ÑÁÃÕÅÆÖÈÉ×ÉË×ÊÌØËÍÙÌÎÙÎÐÚÏÒØÏÒ×ÏÑÖÍÐÒÉÎÍÃÉǽÄ·¿¼±»·®¸µ¬·µ¬¶¶¬¶µ«¶³©µ¯¦²¬£°¬£°© ®Ÿ—§•¡ƒ’dbtMNbMPd>AT02E"#4* / /()"&7+1E06I&*> %70./BïçéïçèïææðææñççðææïääïããîââíáàíáãìàâìáãîäåíåçîåèïçêñêìòíîóïðòòòòòòóóóññññòòòññóñðóïðôîïóìíñêëðçèìãæêáäèàäæàäæßåäÝääÝääÞäåàçåáçæâèçãéèäêêåëëäìëæêìæëëåêéãèèàçæßæäÝäãÜãâÛâßÙàÜÕÜØÑØÔÍÔÑÊÑÍÅÏÍÅÏÊÂÌËÁÌÊÁÊÊÂÊÎÄÌÎÃËÏÅÌÐÈÏÑÉÐÔÌÓÖÏÖ×ÏÖÖÎÕÔÌÓÑÉÐļĺ±»¸°º¹±»¹±»¸°º¸°»¸°¼¹°»¹±¼¹±¼º²½º²½»³¾¼µ¿»µÀ¸²½¶°»´®º²«¸¯¨µ°©¶²«¸´­ºÈÀÉëèêñññôôôôôôàÚÝ·¯¹¶®ºµ«··ªµ¾°¸Âµ»Ç¸½Ê¼¿Í¿ÂÑÃÅÔÆÈÔÇÉ×ÊÌ×ÊÍ×ÌÎ×ÌÐ×ÌÏÕËÎÒÇÊÎÃÈȾÅø¿½²º¸­·µ¬¶µ«¶µ¬·´«·µ«·´ª¶¯¦²¬£°«£¯¬£°¯¦±±¨´¯¦±†•fdwRSgEG[9:M+/B"3!0 0 .(*;7;N48L(+>$'8*-=#&6*-?ïäæïäæïääïääïäãðåâðãâîâáîààíàáíááìàáíáãîãäîåæîæçïèéñëìòíîóïïòññòòòòòòóòòòññóññòððôïïóîíóìëñéêïäæìáäéàãèßäæßäæÞääÝääÝääÝäæßæçàçæáççâèéãêëäêêãêëåêëåêëåêéãèèáçæßæåÞåäÝäãÜãáÚáÜÕÜØÑØÔÍÔÒËÒÏÇÑÍÅÏÌÄÎÌÃÌËÃÊËÃÉÎÃËÏÃËÏÄÌÏÇÎÑÉÐÔÌÓÖÍÔÕÎÔÔÍÔÔÌÓÓËÑÉÁɽµ¿¹°º¹°º¹°º¸°º¸°º¸°»¹±¼¹²¼¸²½º³¾º³¾º³¾º´¿¼¶Áº´¿µ°¼³®¹°ª·¯©µ¯¨µ±ª·µ¬¸Á¸ÃçãçïíïíêíæãæÆ¾Æµ­ºÁ¹Ã¼³¾¹®¹½±¹¾±¹¾²º½±¹¾±º¿²»Â¶¼Ä¸¾Å¹¿ÇºÀʼÂÌ¿ÄÍÂÆÎÂÆÌÀÅɾůºÀ¿´»¹®¸µ«¶µ«µµª¶µ«·µ«·¶ª·³©µ¯¥±¬¡®¬£°­¤°¯¥²²©´¶­¶³©´…’\ZmOQfEH[59M/3E-/>$%3(*946I>BU9îãäîããîáâíààíàÞîáßïâßïâàîáßíàßìßßíààíááíâãîãåïæçïèéñéêòììôïîóððòññóññóòòóññòñðóïîôïîóîíòêêñçèîãäìáãêàãèßãæßäåÝãäÝääÜãäÝäåÞåæßææàççàçéâéêãêêãêêäéêäéëåêéãèéâçæàæåÞæåÞåâÜãàÙàÜÕÜØÑØÕÎÕÓÌÓÒÊÒÏÇÐÎÆÎÍÅÌËÃÊÌÂÊÎÃËÏÅÌÏÅÌÐÆÎÑÉÐÔÌÓÖÎÕÖÎÕÕÍÔÔÌÓÓËÒÏÆÎ¹ú²¼¹°º¹±»¸°º·¯¹·¯º¹±¼¹²½¸²½º´¿º´¿º´¿»´¿½·Â»¶À¶²½±«·®§µ­¦´­¦µ¯¨¶±ª¸»³ÀãßäîëíäßãÙÔÛ¿¸Ã½¶ÂÉÁËÁ¸Ã¹®¹º¯¹¼±º½²¹¼±º¼°¹»°ºº¯¹»¯¹»¯¸¼°¸¼°¸¼°¸½±¸¾²ºÀ³»Á´¼¾³»º¯¸·¬¶µªµµªµ´ªµµªµµª¶´«¶³©´¯¥±¬¡®¬£°®¤°°¦²³©µµ¬¶¸®¸£˜¥‚|Žro‚ZZmWYmRVhCFU22A:;LBDX;@S:?Q24D**9-.=&'5$$4îãâîááíßßìÞÜíÞÜìÞÜîßÜîàÝîßÝíßÝìßÝíßßìààïããîãäïååðæçñèèòëêóîíôðïóðïôñðòññòñðóðïôðïòîíóíìòêêðææîâäëàâêàãèßâæÞãäÝâäÜäãÝääÝääÝäåÞåæßæçàçèáèèáèéâèéãèéãèêäééãèéãèèâçæßååÞäãÜãàÙàÜÕÜØÑØÖÏÖÕÎÕÓÌÓÑÊÑÎÆÍÎÆÍÍÅÌÏÄÌÐÅÍÐÅÍÐÆÎÑÈÐÓËÑÕÍÓ×ÐÖ×ÑÕ×ÏÖÕÍÔÔÌÓÒÊÑÍÅ;¶Àº°ºº±»¸¯¹·°¹·¯¹¹±¼¸±¼¸²½¹³¾»µÀ¼µ¿¼µÀ¼¶Â¶°¼®§µ«¤³ª£²ª£²«¤³­¦µ°©··¯»Þ×ÝåàåÚÔÚÖÒØ¿·Á¿·ÀÌÄÌÀ¸Ã¶ª¶¶«¶¼±º½±¹¼±¸»±º»°¹º¯¸º¯¹º¯·»¯·»¯·»¯·¹®¶º®µ»­·¹­·º­¸¸­·¶«¶¶ª·¶ª¶´ª¶µªµ´ª¶´ª¶²¨´¯¥±­£°¬¢¯¯¥±±§³³ªµ·¬¶¸­··­¶µ¬¶¯¦±‡^^rfh{TUe78HLNa`cx[]rOQe=>Q77G55C)*8%&5íàáíààìÞÜìÜÚëÜÙìÜÙìÜÙìÜÙìÜÙëÜÚìÞÜìßÝíààîââïääïååðççñèèòéêóíìóïîóïîóïîôðïôðïóïîóîíòíìòêêñççïååîáãëàâéÞáèÞâçÞãæßääÜâãÛââÛâãÜããÜãäÝäæßææßæçàçèâèéãèèâçèâçèâçèâççáæçáååßäãÜâߨÞÛÔÛØÑØ×Ð××ÐÖÖÎÕÓËÓÒÊÑÐÈÏÐÈÏÑÇÎÒÇÏÒÈÏÒÊÑÓÌÑÖÎÔ×ÐÕÙÒ×ÙÒ×ÙÒ××ÏÕÖÎÕÕÍÔÔÍÔËÃ˾¶À¹±»¹±»¸°º·¯¹¸°»·°»¶°»¸²½¹³¾º´¿¼µÀ¹³¾®§µ¨¡°¨¡°©¡±ª£±©¢±«¤³®§¶±ª¸ÑÊÒæâçÞÚßÙÕÛ·±½›£Á¹ÃûŴ¨µ¶©µ¹®¸»°º»°¹»°ºº¯¹º¯¸º¯¸¸­·¹®¶¹®·¸­¶¹®¶¹­¶¸­·¸­··«¶¶«¶¶ª¶¶ª¶¶ª¶´©µ³©µ³©µ³¨µ²¨´¯¥±­£°¬£°¯¥±±§³´ªµ¶«¶¸­·¹®¸¸®¸·®¸§©‡‚”yyŒlk}NM_Y[ossˆqq…deyJK]<My9Mv4Mr8QrDZtVf{lv„„†’›¦®¦±´ª¶´ª¶µ«¶´ª¶³ªµ²ªµ±¨´­¦²ª£°¨¢¯¨¡¯©¢¯©¢¯§ ­§¡®¥ž«™§„…—gm„iq†‚†•‰˜ƒ‰–{„s~Šgx†[p€SkIfCb~=_|@`Ed‚MmˆTrZv’g{—rœ{ƒ …‡£ïáÞîßÜíÜÙëÚ×êÙÖé×ÓèÕÒçÕÑçÓÏåÒÍäÑÌäÐÍãÐÌâÏÌáÏÌàÐÍàÑÏàÒÒáÓÔãÕÖä××åÙÙæÚÙåÙÚæÙÛçÛÜèÜÝêÞßëßßìßàìààìààìÞßëÝÝêÜÝéÜÝèÜÝéÜßéÞßéÞáéÞáèÞàæÜßäÚÞáÙÝàØÝߨÝÝÖÜÛÔÛÚÓÚÖÏ×ÐËÔÌÈÑÈÅÎÆÂÎÅÁÌÆÂÍÉÅÏÌÇÐÏÊÓÒÍ×ÕÐÙØÔÜÝ×ÞáÚáäÞãèàåéâçêãèëäèéâææßãÚÒØÈ½Å½²»¼°º¼±»º°ºº¯¹¹®¸¹®¸¹®¸·­··®¸¶­·¶­¸ª¥´œ±­¨¶®¨¶˜–­ª§¸´¯¼°¬º§¥·­ª¼²®¿«©»°„Š®‰±wz¨xw©xs©‰„­µ¯½´®¼š“·|v­RU…1>n->o-Ar/Ft-Gs)Hn%Hk'Ki,Pi4WjBaoau€‹™£ž¨ª£­¬¤¯­¥®¬¤®ª¢¬§ ª¤ž©š¥—–¡‘’žœ‡Œ˜‡”x„’ndx‰UoƒHg~Df~Jj‚IlƒGi„Eg†Ii‰KiŠQk]q–fu™jv™fp˜ir™dn•bn“ht•lw—s|š{††¡Ž‹£íáÞíßÝíÞÛëÛÙéÙ×éØÖèÖÓçÕÒæÔÑåÓÐåÑÎäÑÎãÐÍâÐÎáÏÎàÐÏáÑÑàÒÓáÓÔãÕÖä××åØÙåÙÙæÚÚçÚÛèÜÜéÝÝëßßìßàíááíáàîâàîàßëÞÝëÝÝêÜÝëÝÞìßàìßáìßâëßáêÞàèÝàçÜÞäÚÞâÙÝáØÞߨÝÜÖÛÚÔÚ×Ð×ÒËÔÌÇÐÉÅÎÇÂÍÅÁÌÅÁÌÈÃÍËÆÏÍÈÑÐËÔÓÎ××ÓÚÞ×ÞáÚáåßäçàåêãèêãèêäèéáäߨÜÍÄË¿³½¼²»¼±»¼±»¼±»¼±»º¯¹º¯¹º¯¹¹®¸·­¸·­·¶­·µ«·³«¶´­¸´¬·°¨·³«¹´­»ª¦·˜–¯¦£¸¨¤»£ ¹›™¶”’´‘³‹‡±}®wp¨’±¹´¿§£´„†ªuw¥DJ~1=r.=r,=s,Bu*Cr#BmCi Fg$Kf+Qg1Xh;bnSp{iz„o{…q|†nz„kx„duƒ^r‚[rƒVoNlJl€Im„GmˆHnŒNrPs’Qs—SvZu ^w¢`y¡j¤uƒ¦}‡ª†¬Œ¬–•®š—¯”ª‡…¤}} €¢pvšdm’gp“nv–w|š€‚ž‰‡¡’¥íßßìàÞìßÝêÜÚéÚØèÙ×è×ÕæÖÓæÕÒåÔÑãÓÐäÓÐãÒÐâÑÐáÑÐàÑÒáÓÔâÔÕâÔÕäÖ׿ØÙçÙÚèÚÛèÜÜèÜÜèÜÜêÝÝìÞßíàßîâàðäâðãáïâàîáßíßÞìßÞíààîááîâáîââîââíàâëßáéÞàçÝàåÜßäÛßâÙÝàØÝÝÖÛÙÓØÔÍÓÍÈÑÊÅÎÇÃÌÅÂËÇÁÊÇÂÍÊÄÎÌÇÐÏÊÓÕÏ×ÚÓÚÞÖÝâÛàæßäéâæëãæìäæìäçæÝáÖÍÔúÁ¾´¿¾´¾½³½¾³½¾³½½²¼½²¼¼±º¼±»»°ºº¯¹¹®¸¸®¸·®¸¯¥²¬¤°³«¶µ¬¸µ¬¸µ¬¹°©·§¢¶´®¿µ±Â«¨½›˜µ–’´“µŠ†±|¯xr©¡œ¶±­º‡ bušow¦TY’IPŠ;D4@{.?x/Cx.Ev(Dp&Gm(Jm,Qm4\q>izPw‡Qu†Il€?e|>dEi‰Nq•Ps—Wwš]~§eƒ¯o‰µwº’¿„”¾‡•¼ˆ”¸†’µ}ˆ°kw¢`p›cr™x£’ªŸœ¯¡œ¯ š®š•ª’ަ…ƒ ‡†¤’«š–¯“‘¬‡ˆ¦}¡‚¡†‡£ŒŒ¤“¦˜“§íââíáâíààêÜÝéÛÚéÚÙèÙ×ç×Õæ×ÔæÖÔåÔÓäÔÒãÔÒãÔÓâÓÔâÔÕãÖ×äרåØÙæÙÙèÛÜéÜÜéÝÝéÝÝéÝÝêÝÞëÝÞìßßîáßïäáñåãñåâðäâðãáïãàîâßïâàðãáðäâðääðääïããîâãìàâêßáéÝàçÝßåÜßãÚÝß×ÛÛÓØÖÎÔÐÉÐÌÆÎÈÂËÆÁÊÇÂËÉÄÍËÅÏÎÈÑÒÊÒÖÏÖÚÒÙß×ÜäÜàèàãëãåìäçíäçìâåÙÑÖǾÆÁ¸ÁÀ·ÁÀ·À¿¶¿¾µ¿¾µ¿¾µ¿¾´¾½´¼½³¼¼²»»±»º°»¹°º¸¯¹¢œ®žš­µ®º¸°»³«¸±ª¸´­¼µ®½·±À»´Ã¶°ÁЬˆ…®‘¶~¯€|°ƒ}±­§¹œš¯ar“Zr˜~‡µz{µnk­gc©VTšINFMŒJRŽGSŠLZUe—dx l…¦u•²‹§Ä¨É‘¦ËˆœÇŒÇ—£Íš¤Êœ¤Æ¢Å£¦Æ¥§Ä¤¥Á£¤¾¡¢»Ÿ¡¹žµ˜›±“­x}žWa…CVxEYyfo…† ˜•©•¤‰ƒœxw“nr’wzš“’¬§¤·²¬»¯©º¥¡´ž›±™—­˜–«˜–ª™« ›­îãåíâäíáâëÞßéÜÜéÛÜçÙÚçÙÙæØ×æØÖåÖÖäÕÕãÕÕãÕÖäÖ×äרåØÚæÙÛçÛÜèÛÜéÝÝëßßëßßëßßëßßëßßìßßíàßîáàïäáñåâñæâñæâñåáðäàðäàñåáñåâòæãñæäñèåðçåðæäîãäîâãëßáêßáéÞàæÜßâÙÜÝÔØØÐÔÓËÑÍÆÍÉÃËÈÃÌÉÄÍÍÆÏÏÈÐÒËÑÔÌÓÙÐÕÝÔØâ×ÚæÜßêàâëâåîåçïçèêàãÒÉÏÀ¸ÁÀ·ÀÁ·ÁÁ¸ÀÀ¸ÁÀ·Á¿·À¿·ÁÀ·ÁÀ¸¿¿·¾¿¶¾¿¶¿½µ¿½´¾¼´¾¶°¼´®»¤ ±®©·§¥¶£¢¶²¯¿²­¿®ª¾¯«¿¬§¿˜–¶”’¸™–¼‘¹Š„·’Œµ¦¡¶‚…¤SjŒXp–u{±€{¼ŒÄ}s¼i`­_Y¤YVž^]¢cc¥nm¬€€µ™šÁ±´Ï¸ÁØ»ÆÝ¾Åܾ¿Ø··Î³±Ç³¯Ä±­À°¬¾¯ª¼¬§¹¤ž±œ—«›—©™—©—•¨’“§¥„ˆ¡kr“JZ7Ps6PsL\}jovu“po^a„T[€em‘‰‹§¦£¶µ°½»´¿º³¿¶¯¼®©·§£²Ÿ¬™˜¨——¦’•£îãåíãäìáãêßàéÝÞèÝÝéÜÛçÚÛæÙÙ娨åØÙäרäרäÙÙäØÚåØÚåÙÛçÛÝèÜÞéÝßëßàìàáìßáíàáíàáíááíááïâáïãáñåâóèäòçãòçãòçãòæâòæâòçãóèäôéåóéåòéçóêçòêçðççðæåîãäìáãëàâéÞàåÚÜâ×ÙÛÑÔÔÌÑÐÈÎÍÆÍÌÅÍÍÆÍÐÈÐÓËÑÕÌÒØÎÒÜÑÔàÕ×ãØÚèÜÞìáãíäåïçèðèèìâãÒÉÏÁ¹Á¹ÂÁ¸ÂÁ¹ÂÀ¸ÁÀ¹ÀÀ¸Â¿·Â¿¸ÁÁ¹ÁÁºÀ¹ÀÀ¹ÀÀ¹ÁÀ¸ÂÁ¹ÃÁºÄ½¸Â¤£µ­«»·µÃµ³Ã©¨¼­«¿°®Â®¬Â¯¬Ãª§Â§£Á¢ŸÀœ—¿’Œ»œ–¸‘‘­gy—SmŽ_s›‹‹Â•É‘„ÇsÀj`±_X©c]®lg·up¹„¿ŒÄ±¯ÒÆÆÛ¿ÄÕº¼Ì¹´Ã·°½µ®¼´®»³­»³«»±ª¹­§¶¡›¬‰ƒ›wq‹vq‰wsŒurrsmsemWg‹=W{/Nq0Lo5MpHTyPX}MU{HPxU`„z€›œ®­ª·³®¹±­·®ª³¥¥®›ž¨‡”žu‹•j†b„Z‚‹ìãæëãåëáãêßâéÝßèÝÞçÜÝçÚÜæÚÜåÙÛåØÛäÙÛäØÚä×Úä×ÙäÙÛæÛÝçÜÞèÝßéÞàëàâìáãìáãîâäîáãïääðääðåäòæäóèäóèäôéåôéåôéåôéäôêæõêæôëçôëçôëçóìèóìéóìéòêèñéèðææïäåîääëàâèÜÞâ×ÙÝÑÓØÎÑÔÌÐÒÊÏÒÊÐÒÊÐÓËÑ×ÍÒÙÏÒÛÐÓÞÒÔâÕ×åØÚêÞßíâãðççñééñééïçæßÒÕǾÆÂºÄÁ¹ÃÁ¹Ã¹Ã¹ÃºÃÁ¹ÂÁ¹ÂÁ¹ÃºÂºÂ»ÂºÃºÄüÆÂ»Ä¿ºÄÁ¾ÇÄÀÉÇÂËÅÁʾ»ÇÀ½ÈÿËÿËÁ¼Ê¶³Ç­©Å¥ Âš”¿“Œ»²j|šZx“^w–v|¦ŽŒ»…º†{¶tµvlµ}t¼ŠÆ˜‘ÏŸ—Ð¥ŸÐ±¬ÒÅÀÖÌÇÖÊÃÍÆ¼Å½´½¸¯º·¯ºµ®»´­º²«·°©¶«¥´˜“§rsNQqGHiGIjGKnEOtFV{G]‚Da„=^5Wx5Uv9Tu@TwGWzJZ|L`Wnˆp‚—‡’¡Š– ƒ”{šp‹•e‡‘[‚ŽSOŒRƒZ‡”dŒ™ëäçëâæêâåéßâèÞáçÞàæÛÞæÛÝæÚÝåÚÝãÙÜäÙÛãØÛã×ÚãØÚäÙÜäÚÜæÜßçÝàéÞáëàãìáãíâäíâäîâäïååïååðæäñçäòèåóéåôêæõêæõëçõëçôëçõìèõìèôìèôîéôîéôíéóìéòëèñêèðéèïççïææìááéÝÝäרÞÒÓÚÎÑØÌÏ×ÌÏÖÍÐÖÍÑØÎÒÚÏÒÜÐÒßÒÓáÓÕãÖ×çÙÚëÞÞïäãñéèòêèòëéòëèíãâÝÑÓÌÅËÇÁÉĽÆÂ»ÄºÄúûûÂÁ¹ÄºÃÁºÃûÃûÅļÆÂ½Æµ³¿˜›±¶³ÁÄÀÊÅÀÊÅÀÊÅÀÊÅÀËþʽʿ»ÊºµÉ´±É³¯Êµ±Î²®È£¡¹ˆ¯w‡©kzœae\^‰[]ˆTZ…OX‚ab“…€¬¢œ¼¼´ÉȽÎÎÃÏÐÄÌÑÅËÐÄÈÏÃÆÊ¼¿¿³¹¶­·´­¸´­¹³¬¹°ª·¯©¶¬§´Ÿ®„…ž^f†FRvAOsATvAZ|B^Fg„GnˆDo‡@lƒAkBj€Ci€FkƒFn„Gp†JtˆRy‹V}ŽT}ŒR}T]„–iŒs’¢€—¨Šž­•£± ¨¶§¬¸êäéêâçéâæèßäçßãçÞáæÜàåÜßåÜÞãÚÞãÙÜãÙÜãØÛâØÛâØÛâÙÜãÚÞåÜàçÞàçÞáéàãëáäíâäîãåïäåðææðææðçæñèåñèæòéåòêæôêæõëæôëæôëçöíéôíèôîéôîéóíèôìèôëèòéçñéæñèæðçæîääìàáéÝÝ䨨ßÓÓÝÐÑÚÍÏÚÍÐÙÍÐÙÍÑÛÏÑÝÑÓßÑÓáÓÔâÔÕæ××éÜÚíàÞðæãòêçòìéòìéòìéòìéîãààÔÕÒÊÎËÅ˺ĺÃļÅĻŻûĻĺûÄûÅüÆÃ¾Ç¼¹Ä¦©½¸·ÄÅÁËÅÁËÆÁÌÇÂÍÇÃÎÇÂÏÇÂÑÈÃÒÉÄÓÌÇÕÎÊÙÏËÚ¾¸È­©¼§£¿‰…µfh—BJv8Dp>Nv=Ov;MsQ[xy•¢œ­¼±¸Æ¹½Ãµ¹µ¨¯ªž§¢™£Ÿ– œ–Ÿ˜“•“œš¦§£¯¬¦³­¨´­¦´«§³§£±™™«‰Ÿew“Wp‹QoˆLqˆHq‡Fs‡FtˆCs‡Aq…@q†Bq…Cr‡GuŒIwNy‘Q{’U{’U{TzQyŠ\}Ž{ ›¡±ª¬¸±°»·³¾ºµÀ¾·Â¾¶ÁêãêêãééâççáææàåæßäåÞãäÝâåÜáãÛàâÚßâØÞáÙÞáØÞáØÝâÙÞãÛàåÝâæÞâçßãéáäêâåëâåíäæîåçïççðççòèçòéçòéæóêåóêæõêæõéæõêæôëçõìèõîéôîéôíéõìèôëçôëæòéæñèåðæäïåâïãàëßÞéÛÜäרáÓÔÞÐÑÜÎÏÛÍÎÛÍÎÛÏÏÜÏÑßÒÒáÓÓâÔÔå×ÕèÙ×ëÜÚîáßñæäóìèóíèóîéóîëòìéëÞÜ×ÊËÊÀÆÈÁÇľƾ¸ÁºÄŽÇļÆÄ¼ÅûÅûÅûÅÄ¼ÆÆ½ÇÆ¿ÈÇÁÊÈÂÌÉÃÍÊÅÎÌÇÏÎÉÒÐËÓÒÍÕÓÏ×ÔÏØÕÏÙÕÐÚ×ÑÜÙÒÞÎÈÓµ°¿¬ª¿£œÁ„·nm™FMz3Bn4Hq5Kr4Kq>PvYaƒyw’ƒ˜Œ„™rpŠ[bR_}N^xM`tLaqMcpSisfw{…‹š‘”ž”ž’Šœ€‹šr‚•_ySt‹LrˆFq‡Ds‡EtŠEtŠEt‹HuNw’Sx•Tw–Tv”Vy”Yz•VwSrˆOlJiwDeqNjwt‚˜œ§¬«µ¶²»¹³¼»µ¿½µ¿½µ¿éäêéãêèâéèáçæàææàåæßäåÞãäÝâãÜááÚßáÚßáÙÞàÙÝáÙÞâÚßãÛáäÝâåÞãæßäèáåêâåëâåíäæîæçïççñèèòèèóêçóêçóéæóêåôêæôéåõêæôêæóêæôëçôìèôìèôëçôëçóêæòéæñçåñåãðäâîâàìßÝèÛÚå××áÓÔßÑÑÞÏÏÜÎÎÜÎÎÜÎÎÞÏÐàÒÒãÔÓåÖÔç×ÕêÚØìÝÛïãßòçãôëçôíèôîéôïêðæâÞÎÎȺÀÁ¶½Â¹ÀĽĿ¸ÂÀ¹ÃƾÇÅ½ÇÆ¾ÈļÆÄ¼ÆÄ¼ÆÅ½ÇÆ¿ÉÈ¿ÊÉÁËËÃÍÌÄÎÌÇÐÏÊÓÒÍÕÕÐ××ÓÙÙÔÛÚÖÝÚÕÞÚÖߨÒÜÎÈÒ¾·Ã´°À·´Ë©£Ç™”¸¡X\‡7Fs2Gp0Gp2Jq5Js9JtAKwEKx;Hs7Jr8Ms6Op7Pk6Pg2O`,O\,S]4ZcCdnNjvTnzSn|Qn}Po€OpƒMq…Kr‰Jr‹LuŽSy“Y|˜Z{šXz™Ww˜Yu˜[u˜Wr•PkŽJg‰JhˆKj†HgA`u:[k5Ye2Yd6\hOiwtŽŽ’œ››¥¢Ÿª¥¡«¤¡«¢Ÿ©éåëèäêèãéçáççàææßææßåäÝäãÜãâÛááÚááÚàáÚßàÙÞâÛàâÛàãÜáäÝâåÞãæßäèáæèâæëâæíäçíåæîæçðççñééòêèôëèòéæóéåóéåõêæôéåôêæôëçóêæóêæôêæóêæóêåòéæñèåñèåñçäïäâîâàëÞÜèÛÙä×ÕâÔÒàÒÐßÐÎÞÏÍÝÎÍÝÎÍßÐÎàÑÏäÓÒæÖÓè×ÕëÚ×íÞÛðäàôéãôëåôíçôîèõîèìÝÚÒÃÆÂµ½Àµ½Àµ½À·Á½¶À½·ÂÄ¾ÇÆ¿ÇÆ¾ÈÆ¾ÈÆ¾ÈÆ¾ÈÅÀÉÆÁÊÉÁËËÃÍÍÅÏÍÇÐÐËÒÓÏÕ×ÓÙÙÕÛÛ×ÝÜØÞÝØßÜØßÖÏØÇÁË»´Á¸²À¿μ¸Ð­¨È›¶ˆ‰¤km”GQ€3Fr.Dn0Gp4Gs5Fs1@p.=m/?n3Ep3Io1Il1Jf0Ja,J[)LY(OZ*U`.Yg7^n;as@cxHi€Nn‰Yu’f}›nƒ uˆ¤{Œ¨©v…¥dyžYn–Ri“Qg’QdM`ŒG]†C]„C`ƒDc‚Cb}?_w;[o9[l7[k:]o?`rKexZo€fv†lyŠnzŒlyjv‹éåëéåëèäêåáçåàææàçåßæäÝäãÜãâÛâàÙààÙßàÙàâÛàáÚàâÛàãÜâåÞãæßäæßäèáæéâçëâæíäçíåæîæçðèèñééñêèóêçòéæóèåóèäóèäõêæôéåóéåòéçòêæòéåóêæóêæóêçóêçòéæñèåñæäîâàëÞÜèÛÙåØÖâÔÒâÓÑßÐÎàÍÌßÎËßÎÌàÏÍáÐÏäÓÐæÕÒè×ÔìÛ×ïßÚñåßóéâöìåöîçöïèõíæçÖÓ˽¿´¼¾³»¾³»Â¹ÂüƼ¶Á½¹ÄžÈÇ¿ÈÈÀÊÉÁËÉÂÌÉÃÌËÄÍÍÅÏÏÇÑÐÈÑÒÌÓÔÐÖ×ÓÙÙÕÛÜ×ÝÜØÞÝÙßÛ×ÝÒÍÓûƹ²¿º³ÀÅÁÎÈÄÔ·³Ð®ªÅœš°Ž¤rv™NW„6Er-@l.Am0Bo1Aq.l0?o1>q.:n.:m/=o3Cq6Gs9Jr=Np?Qp@TqBYuIc€Wp‘j|ŸŠª”°œ³¥¤µ§¥µ©§µª¨µª§µ§¦´¢ ±’©p|œXj•Rf–Sg˜Te—Ta”S]S[Œ\c‘ov{‚¤x¡t}r{št|›w~~„¢…‰¥ŠŒ¦ŠŒ¥‹¦Ž¨””¬š™®¢ž±êæìéåëçãéåâèäàæãßåâÞääÝäâÜãâÛâáÚáàÙààÙàáÙááÚááÚáâÛâäÝääÝäæßäèáæêâèëâæíäçíäçïæçðççòèèòèèñèæñèåòæäòæäñåãñåãñåãòæäòçäòçåòçåòçäòèåòéæñèåñèåñçåðåãîâàëÞÜèÛÙåØÖáÓÑáÒÐàÐÎàÎËßÎÊàÍËáÏËãÏËåÒÍæÓÎêÖÑíÚÕïáÚòæßõëãõíåõðèöñêòæßÝÌËĸ¾¿µ¼¾³»½³»¿µ½Å½ÄÆ¿ÇÁ»Å¼ÆÄ¿ÉÈÁËÊÂÌÌÅÎÎÆÐÏÈÐÐÉÓÒÍÒÔÐÖ×ÓÙÙÖÜÚ×ÝÜØÞÛÖÝÑËÑüƼµÂº³Àº´Á¸²Á¿ÏÈÆÙ¹´Ì«¤¹ œ­“¥xu–TU‚w9?w:BxAJ|FP€KS‚OX‚T^„Xb‰_m‘mz€Š©•˜²¤¤¶­ª¸°¬¸±¬¸°«·®ª¶­©¶¬©µ©¥´š›¬~‰Ÿ^s”Qi’Ti˜[mž]iXa–TZŽOT‡cd‘ˆ‡¦Ÿ›²¡ž²Ÿ›±Ÿ›°ž›°¡œ±¤Ÿ³¦¡³¨£³©£²­¦´±ª·´¬¹¶®º·®¹êæìéåëçãéåàæäÞåâÞäàÝããÛâãÜãâÛâàÙàߨßß×ßáÚáâÛâáÚáâÛâäÝääÝäæßäéâçéãèëâæíäæíãåîãåïåæñçæðææðççñååñååñåãïãáïãáïãâïããñåãðäâðäâñæäðåãñæãðæãïçãñæäñåãíáßêÝÛçÚØä×ÕâÔÑàÑÏàÏÍßÎËàÍËáÍÉáÎÉãÏÊäÐËçÓÎéÖÑíÛÕðâÛóçßõìã÷îåöñéöñéñâÜÙÉÉ÷¾Àµ½¾³»¾´¼¾³»À·¾Ã»ÃÁ¹ÄÀºÄþÈÇÂËÉÄÍÍÅÏÎÆÐÐÈÑÓËÔÔÍÖÖÒØÚÓÚÝÖÝÜ×ÜÕÎÕÈÂ˾¸Ã¼µÁ»´Á¿ºÆ½¸Æ¼¹ÈÃÃÓ¿¿Ñ­¨º¡›­™“§€|›^]‡>Cv6Aq4Aq1@o3ArÃBh¸ !ÂóŸ>†i²¸á–ëOÚHÅ ñ^…#Ý}Xù©!¯í½¿éÆÊ'ÊDŠ”©óVeÃÕr¤WËqmØ2MÌ"Ê/ Ì«O÷¤Vÿ²ú³çc;侊·PÑàÇ_W?‰›p²ó< d T† °ñÒ'P¾s)Cz˜ºÞÜð£ÙY•ÌŠ%Ç\ËÁˆ1ýÃ0õä®tµ))ó«ýÁryðàÝ=ì_l³ñRËøõžëñee,w64bÀÅSmElŸu³êKНãu|~2”Ä•pI‘ž™9ÌeJ¯ž w-Ò{n»®4""ŒÛEʼn¹»¬ž¼ÉöSQ¤S„ŽÏNåHÀØ7öj«kY(_‘?俊•³•qw’L2¸MŒ Ƽ ¦×@F™5ƒ†qâ€Q‰Ke‘sI|áðÎ>×Çö~x’nÿÞZhràÀ=ã÷£ùO¦‰ üá V:~Ì5¤K®P p/~É }dê4¤Å@¥%âíl{ôÝÿÞ‡ËÌÕ( ‡—åNÀ£Lql›µÆ&Ö}"E‹æùÿYz‘{kþs>¹L™†É n¸p2·C)BŠHï8L¦1˜òÁG:qldW¨¹÷Ùå°M(}¾®!Ì«X–û›ðø—m¨Y¼‹ÎAÕûkPßþKýîĈót•Q¾ÔwM(⣠ l„™ß° c€”Ç 8…‚CBáôNõû‹?Þ[mŠí>ÛÓ+ö!ߪ@óÖm3'†Û“hŸûFiÈBÖæªKä ׄV™v@ù)̈ți)FH븅®¦Á)èçü«ƒjWëö’c¸VÐG·.]ƒ¢ Ì'‘ ÇylÙöÂEœ¼ Cü,¿K0Z~ølÛËö“‰A• Mîƒ,fÁ¯eq¦™[a0A¡àéaï~—6Øsö×_}†õ$>À'ÞEžÀ›[ÞF69X±x)ö½1ˆ‚ÙsÑùZ£ÇÑ×µ¸§zQº±¬!¸È~Å”Á$\r2ÿ’S) ]”OpÞ÷iúå=Ï-ÛàÄîV…}#¸ìº…8õƇH(…Ï¿8š;lžÝò¢þc»w¿ŽÁÒƒhºi +YrÜnßm¿0z&‘R¦-)bJÀ)¦+'}DjTÚýÿ•[+.ßé,^û0kŸû6~ÑœD—æm›q>3à#Ž[îX‡Ÿ\¹ cûóiè˜>–wèàpgâó4&aSФ’ 0ÉaÀ ==&Üã§Þ4ZúäÃ>QH?\¾ÛïŽ šooà™-›‘ÇB† ÿH ˆ.€¢¢Ñ~÷KÏ@ÚŠ’mÃ5P" ÂEj„:†Ð0 <ÿp ò¼Öl|ñäÂÀ×·S`àhÃÔ\^Ìãñªš=Ú뜨¨ÉAÁôåÁ4ŠP*À±–6tiEå?dYÙ‹ìÈ# ºuÓZŒùÆ1_ë;^‡G~^}-cnÄg{е ÄŒ˜ÝŽ {W¿]÷8#—èß=†>àÜÅJï(cÀ[[ÞÁLø˜w½, ì šô¬Â0¬°@ýÂ:7ÀîúÙ4™ŒóÁ‘~hF ñ ˜Â×Ãñ ¼¼ý(E š6=E2‘‚c»p‰ººp&02œéÍ qÒ•xeû«ßÍ€GaaˆhÚ€áâŒSÚN³d2I¶mÃ0 r¥ü¿¥ª«ç@óÝ ŒEcÞQ4Já«@À?)¦aªââb‡ÑÕÕ…ááaà@ãóùpêT/¾ ö- ²iã±GÿlÞúÒúp8o‹ašèï?£´®ÁØØØ½mmm›„0Léå(-ÊÖ·1 ¦dNÉ—] !ü:êñººÚ»›–-{ ’_1°ÿþGZZZ6™¦9Ëq{*‰ó«'WKÎt ˜Ÿjèײίº¹OO[ÚÕÙõ~cCC¢ÄoUéÏAï¡C‡>eŒ5êæ)é,¥²*ËJBÍ”?/#G5t3ƒˆÒSÓ½÷ë½3µw§§Íž¥ƒ¨­a¨m§òBõ–PºV’#¤Æ-ž³u”+åˆcÊ‘&9G&Ó˜Á0‡Á˜ßö±ï¿¾_ÈÖ»WáÁˆžõªp<kä£BIbì gŠ 6ÔÇÏiX>þpCDõ„„`òšÃ@4w6nS9*V[ÿ5¢V`ÅÜõ|ÑsÅjésÕ*ˆ8à¹ÓôààómEOª¶º4ë¡Ã¦Õ Tó&€-É U³T€fã±ëÄ íŠÇ%òzP¥ÅxÄ’D¥\u\JÈ /v¯´×!xêÝ‚9õN9/¢ö/¾xgï× Gÿ)NÙ’wz’ Κ&èêêu[knIÓðß_¹§fóðÒ ÒC+mG%0]¤± î›å¯‘/übö9ëT ĚϧKÑdo= Ž>šôúx²ô¢ÖzO:-'zÞYMuÝdþ¼hæ5ë™Zû>¯S"2LLvÐÕ{Ls\I¹fgÈ…; •ÕÄf.¯ÌGW}D´¹·ã²öƒû,¯}ª ¤ßÌÿ±æˆr+Àa²>i™ŒCèJ7-;€P+·­vdµ»Ì³åa^îûìÞ–ýÇåiÇUô™Ï|ýµ¹ u«²iÄÀtðQdÍø·Éb)ÀC3 UñSýîÝ8GE”š³øÎ'¿Þ/U}a޾[HmNÉ3¨f»M/4i*Gœ¸ÊžnŸªã~n›.ÏE,œ¤ñ|vß’7çd¾ °Kj|–*µù$¼Ét-rD”~ að¿m{š3E®Ò\í¹lٓA m´è^iÞK ‰@’Qpа¤8ïaÇÅc¥ÁQ¾¿',Õl®ÍK³ãô1×!Ê6pM>åÎÔ‹D}NôóˆýáUËõo[p¼kœ’h8`@«âyŒå»ýÕïmr×"f¾ëç|JbsVëÁÿ…iÿ>ºï-ñ+(š»¼Š‰"î{“?W=DúÍ¢¬óü:/µ."Bäß±½,Qjþ¹n†·Eë>–ù‹y´nÜÛ5ùõâV»®ÛºË¹“uO“ÿ´}0¤^—‘â8X&ØûN%Û1)ÕWbÿ æ]8æ®i8gE/üí$t5.(_ Сÿz^¶#Q§­‡&=è ÐUWúf½¡”›_çž|X<+´hnȦ!²ÌÊ3ã·¥J{K9iÈ£³ùÝlÄa^sQA":„3þ—.Æ7²­Ýy¯Bã•Ïé[cRVIà¬ë¢È–WÓï2=3˜P|ôNå%Ðcš£û¬¡¢O³+º³Š Ÿ9%ÞÀ˜½.Uk@GuµIV>¯º†™±6ø#b;¥ª$33MÈßT+z´—±—ßÄ1e ÛÈÅî3+Ç.2ޤŒÏ” ¶7J“Ëßy˜z’,äw|öÞ;ME {9é«ùuuŒÄ…-@³Kð*‰(“Vy¾Ï_׳¢o9×ÈAç›ËpÔ„zͲÁ”-æÄwWÊ7æª! Z¹þƒìé_„ÃÆ=Óœ¡²ÁìcÈà·8—mÆ ^LSIÞuœí©ÕÉFŒ öÔ?¶Yù!‰Fa‹ûö21>)>³í*¶Äk× à‘UZBe”Ú½ö§]ÖƒÒ†ÁÈè]Q9¢8[,ëQ\•ÔOÞŸyŠ8é6E­E”rdågð­t`*^Q¤°˜p“dYˆýFýÉ+V[uNUa­a yã¼+'²›¹¥íT»[Pp[Ó¯×Ýs^fXækíàíÓÖÑWŠƒÖfû—-ÿýí‹î†(æJú§æÉüÄo$eÓ$1U¢.[#¯SÄ“\y¹x›˜-S•Ÿ–¨K|dgÎÛÇg¤‹‡+¢Ý#¿ŒòÇýdK–ŒT ='©‚¡±+R †!Y"€Â™™ à„ä¤Á û7Qz¦’ú»˜,ƒ¡¯ˆÃÖíñ1Å•1Sa®D q,n|ž„Š8ŠÂëâiıMÂ'’%ˆcw…(±ÅZ®ï¾Ð#Y'úO| v¦ô”rR,,ÚƒY0ö OÌRe9)×|zÔÎîhR2(y_ð´ÈŸ¨võ?¥§ËÀ~ º }A¹¸0û¥eË SAÓ@ùó—‚ÚTÚW³ î­kti¶èMysž^Ú™›`ÌðiYÉZù¬eç‡Ô~÷ÛÖõos»ù§ ²¢ TúÖ{àœTøñøÆ_³‚ ð#iídœLKG„§E&£eÂ,‘€ðø8[l?@ÊPŒ|”à~C9ЇrPÁR Á>ÐÀ¯Ø†2ÄœvcŠá‹>|ØQà"zTXtSoftwarexÚ+//×ËÌË.NN,HÕË/J6ØXSÊ\IEND®B`‚OpenLP-2.4/resources/images/exception.png0000644000175000017500000000325512657640340017541 0ustar raoulraoul‰PNG  IHDR szzôsBIT|dˆ pHYsvv}Õ‚ÌtEXtSoftwarewww.inkscape.org›î<*IDATxÚÅW{L“W¿´¥ïwéƒR mi)S@[¦t:”IÔ ãL¦Ä͡Ӆ)Y²Í‘:#›nf‚ÙÔD¸80Ý+¾u¢,nÎI4:ÔLQ9ûÝFþY›ØäÇýîýνçwÏùÝs?=S<Ò?‘\.ÐF>î¢øiøœph4šЪž€@4æ¬ ³Ù< .ÄØ"¾»ì²dl”V«Ý¬T*ÓÃF?ƒËåªÏXqcåèËú±Ñ-`l«™1Ollìô¥á$ 1 ëT*•?‹±‘e E¹‰±R›Í–¬Óé\)ŒÍÎØÂ •ʆHMEVaND8 ¨AèÄâ|§2iÄžÒBãI‡=ê_`ê.ÎQžÄx µÛíËÇn.Ú°0±>Ÿ¯ ‹šš¶çþh¥p'+`%…BNj•œR½Q´z¡¸{Sð-l™™™íœtØDEEE{½Þµ[ëìz»†Ó¦Z#9΢££I¯×Ó’"1ýñ‹–VWÆ4æææÖ€2œ)C ïÏ÷¦ùôOõõõT]]zADCA1£·KØ=¿ß¿†×pˆ6Ëd22™L!§555TUUEqqq¡1n؇5ᬄRˆ¯¬B¡Þ^j2÷XmT˜&Д¬a4Ò›H#¼.Ê:)7ÉNF#½¦7Þ/—)?Y÷Sàa„óŠ jÝõÃ"Mo'Óߘr#^M¿šJc34& ÖÏ^ ìzºÊÞ‹è4Sö޲žÆqÌxÔqÌy$ÎýD‹År³U¤½| _‚ù5à:ržç÷Sjj*eddP&ÚBÝP©© ï/Ê´_¤9—’’rk¤<r”ÑÉ(0Õn·ûÓwdºËñ´ÉbÁî๾»ì-z£¤„’’’‚£áho¥¥ÓÍh{ˆ`£ÛM»b]*¤ÚU111kë • $ÀCÎCTïñ3(jÔ¦S8‚4Îå¢?%꺿s'ulÙBS=430Šj³2©glÝv tZ&§äädZMÍ*Ó>^ŠÑ(Pë±î<%ƒFâqñÒû¾ÒdþËãñPÔ~…ç_­¦;ùteÜ8jNñÒÑâiÔS8•z‚™t+.ž®ŠD”[.úÎ3ü×¾[?;`{RZWÅ ·ŸÃ‚_âœ_†y—XB7±t)q5'$ЙœêÉ~žº’}Ô mp!nI‘jMñ_ÄÆ!Ÿ‚4Æ\?ºÝ½g#"¨52’òqÌâÌfši0RÚÝf uøSi;Bƒ~:p»ãˆBŸ¸QC&0×`H9…¯xFpétT MÈ÷ ˆÓRŒJz—€¢Ô‰e;as*;»ÇƘùiꀡeDÚµ6†!@^ó!RJDˆ—J¥´ ÓÏ¡:F£¡…ÞÙ€ ? Ý´‚\„OC@Ùàói¶Ûé LÙÎfÁùDå+ŒÁX ú8ïdV¢ã?´ÓçÛÃõ à‚ ÎŽ‹û¾»ÁnC$Ž瀣@#ð^àÏÈû6²§½À>ˆó«uh‡B ¯&lÈSj«*¡ƒì²»nÁ”vàМchöu 1c YÙ÷£±º˜?TrF´Æ§p™çØ…×bÊ×À`=íÆXÓñ%œ[p"*ÏܹÕjåkˆ‡B@òy­¢ˆÉÊýG(Ï9Øá:L›ç¯ã¹– _ÌÀX$úyNçƒb±²•ïE|žñ5¤C!àÀEÄUläEÒö8œ'UÜ0Ïn8œƒç¥@1úAžf‰M¼šb÷óðí°w°ïÜËPÏßÅçõbK`L7E)Ô7Àb8\m,àJQæ‹XdkßÑÃWs° Uqâ@ièϹßz«ÿ_Fèç2qû&º·S_^FÎ_B›ÏDws˜¸¥ÏyŸÕjµ·á縚g÷—ŠþŽÞ4Lš1 cD'ÈØ$„ÿ`¾HÔ1Z"9–ÊØ7±Œ¥óP4Wûr\͉QŸóÁÀm Çãü2ÿóLñ¢’—×€'IEND®B`‚OpenLP-2.4/resources/images/song_search_lyrics.png0000644000175000017500000000051712657640340021421 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<HPLTEÿÿÿ fðz­õ gð hî hî/€òU—ôw¬÷gîiîhîiïhïgïhï‹‹‹‹‹‹LÐÎótRNS224Gxxxxxyz{|}~€‚„¹öZ“˜WIDAT…ÁY‚@°*òÄm¸ÿM%.ÉüѲ¯9W *z¯Gy¾¬=:ÅÁG‡ ø ‚‚u#mi}Q â¾þ ¢D%8Ý–å:ÏÓtÇí{,À ŽÍüIEND®B`‚OpenLP-2.4/resources/images/system_add.png0000644000175000017500000000137112657640340017674 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<vIDAT8¥“MOSA†ßsæöÎܶj{kKC‡ t¥†¸Ñ „VlpƒQÃÎqa ÄÐA† ;(ƈ †¸ð— Aš6´½·íŒ¸\:É›ÌÇ™gÞ9g†Œ1øŸfžhkk“ÑdrÈâÈ@:“i 2犅Â7€çµ-¾./çëã©ÞAûõ޾”›˜îîìÌ^hmE±Pˆàº.~lnbum-_©”û>--}ùp£««£©©ùó­în;bYØÛÝÁØè(`br Ù,´ÖXY]9ØÞýuçãÂûE`èééIeÒ™Åkíí¶çU°_ÚGÙóBgžç¡\Ú‡ïy¸zùŠN¥§{ŸôÊ0,eKKsʯú€˜áûÇß÷P®T@Ä`&456fõÆÁ€WDc±!;Û?ÁÌ ðë‹EhmÀ €ñ31Äâñ{! "øâÆú:Þ½y ­5jµ´Ö!àåä‹°o`0òt±xÌ ¯ Yü KDB@q¢´Žãœ¬½% ¤L†i˼#=˜T̾ž >¼X<&3ÃM¹°,ëû1@É9Á|3uÀÌÌ(—+቉DÉdÌ|(‚ šË(4Í(io)%¡”„T¶ ¶ÁÑšmG`YÖž1ÖB˜šš [>v¤ ””PÒ>ˆX˜ùhhÐíñññ§õÇëwú5«8©ÔÕéÉÓ“×ĉ SUUº”¼cßèŒì8¶²²zÏï—iš.ÑÃÐå+³³z(ò^Ÿ›K …K†……ÅíRé#ÍÏß}Ñ+ž¯”Ë-UU‰DbÊR‚$IɵµÕ¼ÃáXì“–J¥÷·ÒéË{»»¼ç7EQ|ÍsXš8*\.×CEQ(‹‘$Ieòð±. ‚PT…âñ8ɲü€2XgÃé˜ËŒáC8žâ8ívû{­V»IDE‡k´iÝn7Y¯×¿öz=x½ÞP$yÉ»`ü“„=Ï«`0xÖn·£ÓéìU«ÕÔ‘œñù|@`†ã8hšV+aHÎçf³y£Ñh옦©·Z­Í±[D§Óyîßc ‡Ãßɰen ÷a0üðç/úcÌ´¯ ðIEND®B`‚OpenLP-2.4/resources/images/projector_blank.png0000644000175000017500000000060112657640340020711 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs»»:ìãâtIMEÞ "Üùk]IDAT8ËÍS¡NÄ@}Ó=B.E-!A€$UˆmRÁZd5Mº ŽàKHj*M*Å!ªJªZ‡‚ÅÕHÙÅp‚K‹¸#—<5/3o^f¨mÛ#"²0‚,ËÎ=ÏËÇY`”$É3cl{¬hŒ™x'¢±ºÖz@žç/Ì:,ŠbaÖÁ†ØÈ€_pð§ þGˆ³®ëžÊ²´Æì Ã0gŒ½‘þºÌoš¦iaŒ™dE—qïÿ¤™Ì@)uèºî±ÖúL)µ5äª-¥ÔžïûUU½ö}¿kÛöm§u]߸NÓT¯~Ür7B\ !n¤”lÎùç<°†á‰”òsî˜-‡lô¼•0d³IEND®B`‚OpenLP-2.4/resources/images/import_load.png0000644000175000017500000000102312657640340020043 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/general_save.png0000644000175000017500000000106312657640340020171 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<°IDATxÚ¥“?HÃ@Å_¢Øt«ÚÁ:ÖUÄÍAÿЭE¡â$®Žêà ÅM°è¬¸»¨¸ÙÁAg7ÇBÁÖRAÍ5š¶—x_"áB }¹|—À½ß=¾\Ïó0ˆ†©ä²ÙïVËIììíC–¢RU¡ª Pܧ'EhZìç®Tõ–i%&RXX\‚'€À( AÄðçÛ›+T*•D˜Àu]h1 ÚÈ.^£)üB#H±•™çÜ÷„.^ºÝ® ›+Ó´>LB=r½¿Y<˜N‡ÖúžH¢6í6™Cy\Þ.ç>Õ€ëû'È ¿¥W>3GkÉÓ›€62󳲞d&VÓtþIàrpA=ÜÝFŸ"ÔD4±žh:ŽŠÇˆÇãa|:$н‘_÷ç©t:ÚƒŽØÝi·A*—˸8;‡e[8( +59‰ÚG>!y$€ØÝqc0M†a@×uÈò„ÑÑ“É$ÞªÕH¿ÓÇè42Á¶mJÔ 0mf[¸œ@á|™5›ºÎÆŸ äÖVAª×ëõ^«Q<¿¼@R 4ðïü ûÒöPO\IEND®B`‚OpenLP-2.4/resources/images/general_open.png0000644000175000017500000000102312657640340020170 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/projector_connect_tiled.png0000644000175000017500000000163012657640340022437 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  šœtIMEÞ # ¾CtEXtCommentCreated with GIMPWIDAT8Ë•‘OH“qÆŸßû¾Î½ïšËÞ¥iÛ°\är›²‹f…•^G@,㼂 l•$ÉÊ0Œ¤(J:™L‚3p8Þ܆sÛŽiæUP ØXYŽÊ¦ME>O÷ôôÚÛÛý‰D êëëëdYæ"‘g³ÙT:“Fi‘q1ûä—Wåe«ŽÒÄÕ;÷NßœfZZZ‰¢È½w%IÚ>33sÞáp\WUõc6›õ˜L¦å¥BWßYßð¯o§=O4÷{½ÞË¢(¨onn®±X,§Âá°>¾$„tµ¶¶ñ7A úûû=›‡‡‡½¡P(ïóù®áñûý–ÑÑÑG½½½¾u˜µ!ÇçççOôõõ%ÿµà;—pFÊ×å,IEND®B`‚OpenLP-2.4/resources/images/slidecontroller_multimedia.png0000644000175000017500000003164112657640340023161 0ustar raoulraoul‰PNG  IHDR€€Ã>aËsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<3IDATxÚì]€TÅùÿÍ{Û¯ßÑ{ EA@ªŠP°D£±%*J Æ–hŒýÛ‚šÄ®$v±ŒŠ‰K0J”&HŽzÀÁÕ½ÛòÞÌvvng÷ö0íîÂw÷ݼy3;»÷~_›oæ½%Œ1¡–G7þòžÂÚpÍäû÷žw°|¯á£NlóûiS),äÁj´bs¥N¢œF4rêàa#N¸ý†É^~Çv €×Ž@ ¢/·Tõ%§j„œæõh'ñã~ þ‹á#G㺛oÃÓ?¢i¨ª8xÅhþZÞ‰ÂÇ©‰Ò«“„Wø/x]–@ƒ\ü£+Púífüýƒ÷±w÷®ãà@Í>Ð&ŒP-N€(`Ö1°0jÔp.Æ ì¶Í–o®,âÀž”0ëø> àC•ê8ᆟNÆÖÍ›qéåWô¸ýÖ¶¶ @ˆ×ëAqny>hŒaÿÎ0Âu1˜‚Íp;€ htû}”ï-»ªu›¶£.¼ìª®^],œð?šM˳”Éþ~o¿}èaL¹ê*ÔÖT_ÏÏÝÌ8µ`øhSœƒü€áš8ª¼Q„µÒè8òr{–}Œ&F“¯¿Í§véÁòò‹öîÙ9tëæÅñX ºÇƒÞ}úbب㳬J% 6A騱¦ýö~¼>óõ nI´3N-" „À£ëЬ@Àp€&!Ë6U&·ÓžytÚ”ß{ç¨úº0!DÑ¥×ëÿÓïïŠ?̘…N;7^ˆ» r,ª++ò¦?õ°@¼E„³&ÖÄ1±‹À©ä§d({š-ǘ¾ØTÙ©!hK”^éäÒI?ÅÒ…ÿ@<Oª„@Ô£‘~óë_â©çg '²«ew0êëëVÕTW-رcû'/ÏxþS$Iãl¶Ј&™ØÐOɃ&¬Àðo¦¥+Š4BNÓ³d¤ÞÇIsÛµm‹ûz·\{5LÓt‚];và‘ƒ{¦=]#Ù´˜·U€  Ë8’+äù˜¼,A-%@ŠŸÍ¡}:¶AA0ˆÚê6o(ÇaeZ¡’øQ`@&úa:¶È ÆÐOoœ:¡²âÀåûÊv¿mËÆv¦aÇž={õQ Ûo|FM·þâX»fM¦ð2  [׮ႼÍ{÷î˜÷æ›o–RJMûÓLúNYšœ÷¦¯‘¥!KõO·(ápT§¶(PSå°åéÐUZ)Ðüf”‚oà1\ €¹ Á’ f½ô‡Ö¯^ñƒÒ­›ºT<¨ P4 D‚Ó¾C'<õâ,ZýnsöªªJ\;ùg¨¬¬D×î]"yy{ÊË÷­~ïýw—×ÖVE%°¦äí ¾\h»¿Jeî%µ¼T0‘ èÂ8D¼‰À›«'z"7/Àxã Ù™}þME!89´ ³®“Þ§Ÿ€wßz <ŠNMÍ´”i&8P¾Ý÷kL{äIx=+°œ!ZF••íÙûõšÕ[ºtk·{å;ŸoZ¸è£Z L¡á¦u‡<ÏTÁõ)Aä| ³¹´_çö( Q]Á¦oöñl`MÊ֨ыô¼P+%WÄ@AοxÇo|~ï)M?…ƒ:˜¡YµrÙç pïm?R&Y“eƒ¾à¢KpÍõ7463'ÊJNë¾^³eÑÂßΚ5sëÆ j‘¤ý)“®$Yi»´²^E†œÂ…Z¤¸÷@jghŽÓ@@÷häxAã áÚØñ+Êÿ1ïÄ.ãÅôJÓ4ÇLÚèÇ`Ò5?ë/>'A· Áœ·g£_ÿ~8mìX{ Àÿð"aEÂ7¬ßºdÉç[ßzómK>ÿ¼R‚x@–;Ò@.E’ˆ\‘0ï’ãJÉ¿»·L d È1 Ÿ×¤,hü8 £¤m†Añø²_cdçðä  4— íG“®ÆŽm[±xá º ÒÒ„à©ÇG¯^ßCïÞßç žÏݸiÓŽË¿øöݹÛöÞ{ï–QNDõwHÀ·AÑnp’ªe_–òçJHp¸À·ä@"A±ù8MgI£)€Î+ò‰`°lÿvüné¯ðÀÉ”V€¸šïÛïº 7M™‚Û·; àÏ¿X7lı+>˜÷þö¿¼={w}}½)§f¦\I3ë»°U‚âîÓÿ§àš›~ݽ.\s-NÉL`Òàf‚,ñC(GðúutìTˆ¸A1wóë8©Ûé8§÷Ð…y—fÛb üy9˜ö»q㔟!®K¸ >F'£¤¤°¼ºªrË'ÿøpå¢E‡§O— *ßMe}«<·Š*Ó@PvÀÿg`ÁºƒAàø†œzaAÑ9o¼B0Lú[)VbŒq¨É`šTB^ž½ºµB,nâî…?ÇðN#е «ÖmΞŸ¬:÷ü³¬X¶¼òó% W}¾dþÁ´(*põRYҔ櫾",€"# àÿ›°àë:!dhÃ7Ÿ‡Œâu ]>;J7ã#Ì”à+°Ò‰QÊ0ãqÃDÌ4`ŠÖ­Bèm…¯·îÅM¿ï\ð!¼ºruápýúuk·/^´pÇ_ÿò6÷ç˪TY“/v?.ͺ ð$×¹h8Å™b †ûþʺz”ׇQK£hÓ:ÝÚ!òtÆ$Ü(§nµ’rŽIŽÊ“¥8€Ã ’Öí?¸¿†a½(Û³'Ußµsî›z6¬]ŸÎ×5^j¼$©Ôˆ C b霈Ƥ¨3DðWUÅÁpös!¨#q´m—‡’Âx‚ÚE˜†37›àMz1hüç…kªªCp'±Ùóê)×`ÂYÀöíÛv}µbÙöç½_:wî;ûòõü|x÷Þh›ŠÊZ¬Xó-v•V ^e@ñ6`ÂDx€“ çjðåëæx‘“ëC^ˆs0€Ç‹ªÄ‚Ò¶rn!¢ûYGc*ö~×kt$p! €v͵7¯újÙò‘ª62LÓ3_ye×_.~gÿþýåÒryu¯^–‡<¹gíg  ÐSÕ8`F(bº À`2^7MÔ|Ð} Šƒˆì3ZLjù<€³Ð:âŸô¢â¢7§ØpgŽ{Ÿ¶m»BrN¾h¤T@.A’a¡op*☠ب‚:Šh­ºp5µQTÖFp°¶Õ±zóÍ?cøˆãÐùÅ6RóÕÊ¢ÓO;£Œ1 e8£Ûx}Ú1x䋇ðaéÉE¢CÜd09AÌkBóhàìç)kuÓ˜[*õqüäêIسk˜ZgH¥.»|~xñ%òœhO–©?Pm°”²Óí·Ü€U_­€=ól\wÓ­ic2Yªä„:aÅ þKÎ?“ü×-c,µ?Ý0ã°³áÊcN…>GõÀÕWOÁŒ¯‚L`' Æ’3…“N> ½‹úàé±ÏaƯ¡Ø_˜ÒÔ3Äkn!a Dê ˜”„ákžÄöêRðÍöØÃsÌI“<^Œ&(KO“Â!²m*½(ûr–·—nSàÛ‰ÂçÉq˜|9®,ÅÑ–öP}æÍ}» X%!„%üûáP}} ­[·B,Å76½¡v逳%\·~ƒ¸#FDQq ¨Dat‡0çì÷pãg×aEù²TlÀí¼¤:/uñRDÌîZzè+ÀÊ•«¤f $xÀ9çPn¾XffÚž¡¥ªÍª¥ xê‰Ç°b…³ 9nÚuîŽHÌLÓvÇqdÉ2ÎmÞ¸¯Îx¯¼ô|“Z ¢æa À'ó?SÃÉ“¯Âµ×OÁ¬×ŸEzMe‰d(óüýóÚ“tŒ0qºM¨^; ¬|/lx JE™(ÕXoñ½ùë‹”€±Œü¯0ÿTïŒ:oqáÚÌ~ãOp£Ë®¼ŒeÀ«ræËÏ6¹ Œ“aÄq8ìóypûÔ[qíu×"|J `¥:bذa$¶më ‚¯óáæA¿ÂôÑÏ!×› 7b`ŸZ'ê?`;T™~ÁÊ4+“q>£ÿÛoÌBmóø­Z·áþÿœlãȶ÷®©©ÆÜ·_ob æùæÂ¢L{à>üà ø”A}Ê8åƒÏ:÷©Iðu‡³MO° c:œŠ'F< Ÿæsÿ¬Ýâˆ÷ŠÁJ—^~¥ãÅg°e‹$sÓü ÜèÂK®1†ë8ã¸ܜٳPWn¢`â®]»âÀi§åàå°Üê°Àï÷cÜãE_&g øÄåìãÇ蜡×j8ü¨H+ƒÀ‘¢ÇE2<@~A&œ}ž«¶³¬ZʰdñlÚ°Þ5záe“²k»:oàϯ ¿ßT îʦä!CŽÅ=÷ÞÑ£G  þa"€H¶ Ç#ÿSÊÙ>qqn"Ñ<\ì…ž§t_}¯ûçíͧ)§{_ºöûƒ`¬ÑÚn‹ä_›ñ,Üè”±Ц]ÇFh;Ý΋?ÅÖÍšî!ùù… œÎ?ÿ|¡o½õÒHÜ?ϦۚŒIà]üx§÷:òJ°¯²Ÿ}µßn݃X•Ty!«7ÏGjészÀ<É€qº§ì²çcô¿{,c0¸soUïk?¯^ÞØ6û@êJºKÓ4ISšMO¥&‚Á@².Éëõ#/¯€kX@øw뿨iÕ) ;„€E…ů=äf0"5ŠBk¨šB}ÉPÕïââ°;Ž!Y¡º¸Räk- [Ϲ¾&Ë8Ìñý²»510D9kÖ,Hæ˜ïúE('9œ~Љ4”£d*˜è ÄjaŠ¥ØdÑR‹G‱dn¢BÀ$ûø±ûâí6í6 LèGyÜ”^åx)ë Õ.]3½]rê5 ̆6 Õ,ëPïš[Sã79^2E(”ƒ’â6ü®ýEð¸€Ï„`iÛÁœï ðÉ7!íD“ýd1¾¸x”¦ÁWãGáêT ,‡•êÔ `_¡Ì ´˹]ö±·«>ªnS1IÔIZi² µð!„¿iZ€ÁÇŽ¥D¸©žÐ5MäšGÓ@]ºÛ,@i•²A™?¥ERfhÃQI–’åmQÓ³ Fn¦+¨éQ…6 :@‹j`ò–„Œà†6k; Ú-¯WcÀrN©"kÕE5(«ÑÔfRò•¢I&¢îÎÔeHlã+Vï§Êô K2®›°'1‚â­`%¦3T÷®ý-ɱÓAdmAi·ê“`ù*kGYµéB“¾£™¤‚ÁW éÐ8«-aŠÔë0P «Rž#P¢A ò6€Äí—ª¶[MúÖU9wígíg.Ú¯¶ ç(<6³Áì 7Q  XÕH&P·†ëЬSE‹¶3g‹ @̼°$yLbr¿Íƒ•"íê@ µk¸4·6%[¬GêPµ+áÉb,濉 h6ðm!}Gáì6>8S€s)Ø¢Qr)o]¬D=ÑÖ‘tð,+uÙ­ƒÒ~‡v÷Ø@Q¦ÛÈbþ›^ p:[ÛR1€ÎY9’)ÔYëa='ÁR®€€H- ìÁSí…•ê;„-À[̶›ÿÜ}?œÚa½»Û°Oûxµ)NYº¹µ’½Í²»†€¨å`Í> à‹1ÇH¦‚Di Òc’D;MÍ‚»‚¨Égº¶õÊ<«À2 ð޾=»ö37Ý}>cÍøû~úœp2 ÄÿénÀŒèNÉ!a©>¾½X)^³j®=0´ïêÛÅßìÚo×ìô>ÌÕ4I àªýò¼+QÊ@¤“ÔRÌþq"„ ­œµ_™€"EN`äÇÓ´^i®³p1ûî‘¿»ö3ÁN±Õ:4qXe€¤MD®¹S”QÁ,Ý‹’ª AFÐElÛ¶XZݾr%`SBè£0}&´ˆfÑzK`(ÿØ?ë”0«uPäÜnsRš¦XµjiÖø@EÕ’R&šâ¨WºÂä¥A9³d¨˜N³^ÿ“ˆþùÒ¯XT å„DºÙçó‰5MÓ¬ãgäÒ ÓD<æêêêpîgã±¹v#Òé…¹¯bP›Á2»è¸=Ëm{˜[›j··¹oÿÊ2~SŒü íV»nLfòÒt1¨Òd5¶m|Ej I>ý39Õ,ðÂJå‘}r|‹V;IŽà¸ƒ7ðU[ÖñYS\ 0`(ˆÕÃl.àF€J 6}XLÝE^’8'ˆ¦ —,_"Ú4$ý‚:Î „k¡T”û&îz"ƒnøÙ·…TiŸØvõÍfQìÓÌaåN½Ö9…lˬgo§”6-€Ø‚>Ò¸@ôâÀK /€Í’0ð5LôÕT·é ª±Š¥Mõ·d­ŸEOí¿mæ Ú\#‡)#,3ƒæ *¡È&5Ԕ̵¯¢@„ÕÔº—J‹dZØFÄ*,–ãŒé  ú@õqN÷º…¶È?ÕUµ6Mø®D$@fƒ àÌw 2ÁcDi¥ÒVÈ“:ýVÀmÀÚ÷ XР-¯Ï˜£uPmn‘¿E¸šp@–L¡ µŸyæx¾3ødôìÙíÛ·AŸ™ÝåSnébN«rl"êD‚ ÏRª‘˜öYé•ç_¸ã°té¸à‚‹Á—`¹ˆê=Åôoذ;v„••íEâ±;sžQ Éæ²:z蚎÷Þû+ÿ;ARp˜PA µ%?,˱ÄêK•¯–G‡\6¦~»tËë&ÆY»ökWðà°ÝËÉï3W·Ð¿_?¾ñïJÞjš®púÒ€#bïàž=eb>ÿÙg °eË·è? _ÒPî1p™d3ÿrŒÔOÀE:çuÇ_spßÙ+ äìÛínáô±§§vJßrË- Tv’c®Y³FoñÿMY¾ë®û°cÇq¶…³_f⇙ÊXg©1å±VàÝBaL¤S¾™èâxÍÚµÙÀ·æl]’,¾[ž7v,8 xæ™çdë>D»š¸žÙ|y‚kýûia 9OwБŒuq|hà•?´$ó=Ú{;ˆ2bӦ͙>ÝÂfòíà̱OnnFŒ!ÎÍû7À%mlŸö5ÃAg9 àSÊÙ%dN‰ÛžDÅêœÒ¤¢^ù0=™`H‡!28Û#OÕ|fû„–dŽ}Êw2¿ÃÉëõ&cŽnÝqùå—£ÿþöÕB–!HMÿYÁJûÜM?±Ô-kxƒš"´\_ëW³fø‹+P ‰ï úþ ç`]éZ¤ÓY½'‚"ÀLs§L e§\L¾Ý2ŒKøI7Þxƒzàæüù¸ôÒKÏPr0ýÍÉÀyo ±gpРà…ðÿ“y›Hi³ª)€]Þßj€ûî½ N:Õ1ºýh®uŸÙÁwN¹äÄ_±ˆ5oÞX´hvïÞ­î<åîæ"‡·[ÜBó¹²wXC <†BÓåb,,@ã\Œe+· ð’'Mºg=«®F:u5ºÂ¯û…X½fm:˜é@ËÒe^¯>›-Ñ\ÁoA?÷Üs9à§¢{·˜8q"ªªª’nhÈŒ;6cæ ¨î 5j$^}m Rw @m¦Ïb~©XÂàâ÷Õ{‰Ûo¿U¸™•å«N§t8šü"©Þ½{ᬳ&J̬oñóJþœÁWã~ðÁ‡xðÁÑ@ÇÏfú›C"(û"ÐgŒÃãO<"¢}û÷ÉÅ ÎÒ X6EXrãDZ¶Ü:§‚×^ûSòÖê­¨cጛL¯vEJ}ôa1 xç9`ÙAUçD%;ø–veEJK·«;•jj`Á¾™Y¥¡®üÃ^€'ŸzL€Ïý ¯_&×T€ZßÀ¾,ª°úÛ¬¡  @äæoœt:¾èxô(è! cçÎ]øôÓOL¿« `®àÃ>]Ę1'¢–|¾$‹ê4ÇL $GÇÔ©·áª«®õõë×s¿üì)+KºPe\ò„ȧÆ2-Ã@¹ÇÀ™gLL>gç”*`RTÿ^ú]À“O<…'ž|Ê9”iú-Úín!$øb“iˆÅäæSùÔË.»“'Oõòòr,YºY¨yfKJŠñ‡?<…‘#‡‹úðƳù¼ø$Ñï9<™– 6mã)¿IR¾”X°%ƒ¢}"ê¢íò`d»‘©-e«×¬Qïã º|•ÆuŸ2^sÍOðÿw§ˆþyçºá¼ó¾Ï¯K‰ÜKÅ4°ºººÙ €eC¨Êÿ'èá‡/Áoˆž¾#µôì3\KNí{àí!ÆÏlgÖþ–@¼C´@%€ü‹ƒpEÿ”¬ZµÊ¦ýî¹køùîæ.Dnn.Æ'X‘P±&ðᇢ‘Ôüö}ô€¬A$•9*/ºë®c¥™ê¢»i~šöGú*í×Ëux¿ñ‰ÏŦ±â ]ëí ÛJ9¾¥oæñý÷ß+¯œÄg½+¡ÂÜóÍ,^¼ˆžÊ© +5—L ûVðAƒ†ÂˆF€©jKg¤]£U4ã†Õ] H¬A|7$úL˜pÄP„¸h½cؾ>á¾(çÌù›˜YXúY§%Zº5JxLfÙàúDiœe¹XþÚŽãb yTÔ|_ù¡oóªOç¬õÙµß(ÚÄÒþ¯¿™Ý–åÅm°Ôe?€„œXª¤Ú¾Ä™¦´ŸÔh|Lö#BTi×v×_”ÖDÕüæ¹#ˆ¸¾NEQT0ÿqºsÆ2„Êu)8UÕbý¢¢|?%©ñ‰%ÂϪõŽ™@{Ðgïk·e ÀöÛÓM®Ë]@v0™œužQ"4ßà,ô”Ñï…¯ˆ~^ŸGÓy(,*DAAajÌõ[JÕøPeš&^]ÿýôb1}út¾´}»XÕ»ôÒËpÎ9çàÉ'Ÿ;|?úè# <8q{ï3'œpZµj…;î¸/¼ðN<ñDÑ¿EY€Ýûöe›ïgdí”?&Bë;¼X JCf©Å{>óÂK »zE´^\\‚ÂÂ"ääæŠÜ×ÐŒTääâä{¹ë ¶ä•,7mŒäÚ¼mÛV<òÈÃÌãÑ©SG¡ñ à Þ)4úå—_Nlì ;×_=®»î:¬[·D‡øðgèÑ£ÊÊÊøn¨3øíqﵘoá$ŸÞ¡¾ù"}“'ålÿ.Ì¥iš ” Žó:5(c0#¼]2‹2 Ààlf>'Ðîaì B2Ÿ¢éºßBÌr`ÍàCA„B!±i³U«Ö ³.ÊöíۋѸÉ»ˆ6nܘ°bÅR*¾æ&''S¦LÁÒ¥KÅÿ>{ölüøÇ?ÆÊ•+›ë·‡«'ö÷žöZzÑzVÏõ?¯…˜É@ ð  ®# h¥Ôj`5¨ç%K¥ã…æÖßF~n|ºñ¨Ú²ZDÆx„À§!‰Ö–¨Ùc[[¦™W`CX–/ו"‹¢_·6²MøÿÄÎø+¯¼Â7ž%ÖîÇŒƒ÷ß_œç&^œã¾=±±C¼fæÌ™|ïÿà”8`Μ9|Ä]øÕ¯~õOçþc@8ù¤›¿ºí¶az\;ň³“iCó„Ì(…áeàç`Jfœi 0e)ÛD‰ƒè°×R¡ƒ˜Ñ)õÈáZæÑ=¼Ÿ‰ºýõˆUÄÀjPøågu t©ÁÖ6÷oõÈ/HÀvD£ôpè<ÀaRsI)-¾yžBíâ÷ùÎ3£»G{£žœ<­Xxœ8¥ˆrD£z q-Mc Ñ!˜zÐ$Æ™¦=÷¯ˆ‚…b 8ÀõvxÁª’û ›0c&h„1ÉJsU4OìS@ØëöèÞå+`˜£ð0«µh¹_M8£6aÐÈ v–ƒKtæÉëäéËÈšqŠ‹ƒC]óa?Ý Í¨FM¼&8¨@õ¤ß¦½C2ÑxÁº’vƒn"9øÛû`2H²‘&±'s ɮݮæÞž².áºßÂ@ùt·ôoȨ̀ kË:£´B^ŒVzGèÔÏ[£’”£†ÿT±JT›Õðê„<€Á™rŽÐYW€yE©ÍLÈ’è§qf€˜€Q‡¹É€·“O}c Q *°¬O¡’5gM—í`;«ŠS·¥ €Òø! 0È“G~Ÿã+<5_/B¡§­õÎøöèåF(â¾ÂÑ0òµDa ×Ã8è%þ6(‹ï®{DtŒxLh¹p¦,)ç¡ðJÓm(3®I« Õ4Ê+BË×Ò„ ;Œ¹ €;è6-wšÂ¶L ÷­Ï‡hW´Ø7Í ü8¤çk…hƒÎ¾ž8!o"<š7¥] ¡u=™¨)ö¶Â>³ >~Ά/ƒÆ0<ˆš†°)Q ¬åxDž#^€%T¶1 ÕÄORí?1]|9dÀDAa!JxÔ]TÜ y‰<€ßM®*‘}®ŸVaPäóúñmYØñ[Ãaß½MV\ÛÔøö6ëøÿü~¥ñ¸dàœ¨kÚëh[DÚã”ÂóÐ5ÐA=A-G\Ì8b‚)£ð_"ØQº—yáóz`>D ù<^ÖÁÇÛâ L'ˆ› T“@C}‹7…ÚËÉKÑ]Z‡¬€Å8G¥¯çL?¦™–µSO ‘ä¾kÀW»Ú,`¨Òy|wðÛpða߆7ûg,ãü&¼ƒ†h·j w·÷wÓûEÇ`tðô@¾^‚ 3Äëï-Mòm!B­YWƒnº—sœ@Ót5YJû)g(à™É™HÁä…÷/©OÆ9«•Ǹù¦ŸfÊ‚(“"I™q§:suÍ“ìŸÝ“UóïiÛÁö¹úŸƒ$gB¡·5:ú{"Ÿ´B÷`_´@Ê †ðùb ¼4çuШxe†˜ªQ=¢SÎ ð0±ÈAbš'éßyWq 3éßI3@ç 0¥@hœM*ÃkÉ×#°°ŒÀ€WA Ãဥ޲ȓ üÿoï\b$;²2üqof=úi7í¶GÖÌ,À‰‚ ,FH <+±d„H³5»lX Ö°F ±›à ›…†áal3ÓrÛíîªÊÊÌûˆ8‡ì¼¡MªSYXƒ…ä:¥_'"nfVwýÿyDDIõàg™ß[Ê_ˆë×rr¾xòÚ/q¿} ˾%ÞX1zÅÕp 2ãð0K$éÑ $í¡¤‰/a­ hiîК œ‰tZû±TÈŽ@b2™P$PY,‚Ø!üª‘þy@%Ÿ»4wó§´úµ&ssö2b3paÖœõO¸)·iˆ¸DrNÛ"“Èžè|I–‘N–$™DÀ ‰ÄÑ zÙè´DyJéb^^c<¯ûhis½É£øú÷)¶gÛ÷9±¸—ü„¯dðdÁ]ÉIxtù!GáΙééŽå„¨ÁJš¬Ã$1èz;tY³–EB¿CÇŠQúBú"H.>Mkª$UîÄ- ®£°›òݦõÏ·(äÿ¤óKÀï¦f t ÊÀØ&Îû³)Ú4sCoN)ÜÉTð)èÈy~̨=+zYm£~)ç\r9eí1M@´Ös©óŠ\×½_w µ1$ƒgÀ˜Ìk&¸¶½(ÑÿçÈÍïrCîñ'¹¤à1C-"¼myÜ÷ zÉZÎ8mO‰MDQº|‰#ÙHÒ‘5þ CX³–n‚®éYMåA *éZÉgw\€¦×û$ŒzKXÉùýoþóxÄÑÉ woßåå{÷7¸ÇééMÚÙ QA«í÷w4ôÙï÷?õç€PRÿSôþM¾áÆ—Í!ÒˆjÏO5äräþWÐd¸Ž,yJc t" ¸äŒÆ©Ð%£t<åcÎü ÷tÒWbÃUPË…|I€€0Í=O Ák7_GTqE¶cU­oØs°c(öYí÷ž5þwí^??áãá¥sæ/+ÿ•#/¥ÞÚ3”=™sçøóYÃ+·^æh3?j6ó9GÍ® €àä8ç1ëpI =¬èúŽU·fìS½î-¨óýë6@ÚÀG° rOÓzîÀ`+à]à`ŸûR…ë௠€Ü~¯8¼äf`@\ (Œ©c1f¤=æéèX¸Í‚ÇÌ}NÌ-óvޏ°² 0'å‘1vŒÒsæáaâXð©óÀ·syÞñ»zMõJ…L-s«µ_žR ƵQMDp/‘©¿sI#·ùuS° Y!æ n b˜,‡ ²®IÒ1cFÒÁ6c›ASSô…>&ûˆ›aMs¼:¯‚A£b­àæ0š!æ¤dU0ˆ LËçPà@ÈÀS‡tù/°˜ˆ˜o,”s~åu’_ð3î…l3ðø„œ)©AÈ6pÞõ´4 Ä&0°¦·5KMކcÏ#+G¾•>gBõÃÉîˆe’m¿iÉ&‰I ÈõR²L Ùñw¯Éßc3`(o±D¿pá)Ç>qƒgÐÙKtU€9yuÒ@!!Ó—lW)‘î‚x  (‚E›È‘‚F4ˆŠÔYXYñ”¡aú¼Cên£Œ,ËÖç€õµöØ*“Ñ7¶i…ï£*̳ÔÈÇkËI2ˆP›+·ò/d‹¤!è3/4ÒUiµ¡§§‰ B@‰ˆa0wBk¸ IŒ†‘žLo#d¡O3®> KÀ“àƒ yö¾_“¿ßZ¨¿7¡Ø;À8ç,ÜË¥¾²ýn`Æ j@TP ¨C”ˆŠ7˜é$€64¨šgk4ÜÖ›´1‚TS'§2+À³&¢æXr< y´-\ Q¶pwÑûôŽÿ™Ú¿Ž@_0F•®@µ:¿òšCµkûæNûÞy…d*RÁX0°À9ðxÊŽÅrúç[8˜ð7d¾†’jðB¾QXàaŠv1!x •Q#G±¥ ‘óÐâjÌ45ÐÊÆ£H@Èæô–!Ú*k n`#–›)òãˆy¾# €º”úïC÷÷þ=_úr‡ü®?PÛBßC°\Ûo^ýÕ×vˆõ=s£Î3`{ˆ¯€¾Â%°(XQ){A2LÈß Êo[/ˆ8*@‰6€²=Dúæ 䩦Gm”à‚¸nÇ- ЉÌiˆ(G²ñ¢¨*c´Œˆ )A•&ÀX"½Ë=Ù™Œã¸ y©X§%lèþÎßò'~O+;?„vN„ vÇ»~W‡#¹ú«Fõ.É{©«öŠ +XÔL^K€l3Áxö|ç¥Çü@2_h²²#¬–U¬nÁH BàÉ¡™Ê’§ï 1ļ&`‘ɲJÙã;½õ¸8F.·Š™qLø85Šy_Û“å·y+ìŸàÏÿãë¢öeñ=0î¦{ˆ¿ª(¸ Ù{æì‰ð¼3Þ¿V‘®€qgn@ÝR/‚üìë¬oñ{!ðW¹ÝFspTw¶áù8Û3! 9::©1$+4BΙ1°}Ž„-Ñ%æQqÈb[ô ŒŒŒžX{G7œw+†œÍt.ätæ ïù¿/¾íÿÀ2Ÿc“â éÀYñ‹"Š p˜è:¾‚÷CþŠYÀ®„ý¯ÍÕ|¯³{DY‘†¿$¼Ÿ·¿ø‹ògÚð[éRq7â1ø|"Œ (Ý¿“P5ú0Ò´ i44dršRv0e°Œg…€0Ê®Nçãöù2u›1ö<ÍÕ†§ à²<|xm ø´õìÀûžñÕ"ŶäCÃà Α‡3ûÃWA^‹ÑßÌköüćÖÁê)øôf‡ô_‰H,bhf‹9GÜaþú¯é×õ†ü޹¨´`*Ìnfd:w¤Ù …„0ƒÐêÆ+1B£4m@ÙŽCt F‹™¬ WÃκ¥ÑŸ;ã%t «‡7@Üóó‡gßÊÿlü‰]æ3jƒwI%ÿ¼F~©ÿ•ü¡ ï%öÿÖœÃæW_?Lða«˜HßÅŒGœ¾ö«|uöý†Ix5› s'"„¹OmÐ:„8s¤4@3‹•ز‚ 8D£_B6°,XÃ9,Þm±Ã†õ÷ý£ÕÛþ^ÿ/Ý8=öœøU!ÿ¢  _Ó~ÿ‚Î8ñÿÓ*™ŸÎíöë•øò«oòæìÿ¦yx%y@ÂDº»ÒÜÈ„cˆscv'3®(h aîÛg²ñÝÇMÍm®¤AX!8ÚžÝûÿ–Åêíá⯇ï’=1Òã¶ÆèvÈ_P±,è †-v¶Eî׿´+€év„'_pÔœÄ{zçîWí—O^·Ÿ¶Yø9×p7›`å÷%‚ÎŒ0¯×½ÏÄ óI,ˆÁM¶ó0sÏ _õ¸¿7¼wñ{èƒ#½¯q ñ¬ .©¤¯Ÿ€Îݯ/‡÷  ÞWò÷ø†cæ´ñ8ÜÒ—n¾áwŽŠŸg¾d!¾æ;¹N-”ãZÇEr§4'¶¶Þ/ÓRVùÌ/ÇY¬ßîþuxD"åЃD%±h¬©"XSçe X ßyoºŽüè‹Ú‚È~Ž™1‹',ÒÈ­Ùi8Ñ[ë‰72ÈöÁú‡…S=‰·™É½‰ý`ø¼A J6#QOÂÒnú.¾FyÅX ú’î3×ö¿À®BþJü ¼‘“¦a9Ræ"@,롬+ig_=!WT!쎫¯]þu´ÿø°/3&QÔ¹î@Øõu^mßWW¢ 2`ׄ&8,Œ=„ï»çâ/ðð1×|ÿøì›¦öIEND®B`‚OpenLP-2.4/resources/images/service_top.png0000644000175000017500000000124312657640340020060 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs¯¯^‘tIME× ":eEžg0IDATxÚ•ßKSaÇ¿ï{~;϶ã¦GÍiæZ¢•ŽDEŒ¨(ð¦œW!D]×E?úñh^U]Di]„åUuS7Ù¼ˆ¢:Ýqníüðœ<#$ÂûÀ÷å÷åó<ÏKP‚È©‰Á½áqž¥x6ûetþɹilE ‚RnÜÒÓêZvQ­®XƒK9‚ÔϯNÞVàð*–RßQ %°Y)Ižþ”ö#7ÿæÕ¨©}ûŒr9çeûÙ[3mp)w…†Ã×ü^¿8¥*§Ã§øÊ¨‡."QÇb{ê›Ú¢ÁÑfÿ½ÖÄäö^{¦»+’ȬhÈd4ÄcUC‘Žlë«ö ‡ûûö?Ö(‚^0àÆ±-ðÈUºüq*]r_t‹´6> 5î  º±^Œ[×*´²±†{Ü:ô/)eÏõXÛÞNìu Ëfþ†Â0´ÔÑÙÛ[®PÙr¤¯£óàD º–²œ–À°@Y8i9°L<5ã%þ6“œMnN †z”¦]Í“J°Žq;:Te$0"AÀó`YqCÄ‚cñUûMÇ‚pgûMÉ_Jk:Vó6ò:a2°mºÉAËéU‹«~-ÿ¥ëjl`÷e`ÝC’å™…wsK¶iŽEô½ÚÕs^¯.„P|z?‹s¯op² Ii@MjåEñÿѸDl^Ö9 K¢P|RÐ ˜"ÍŽ\¹à®"þáÉ"Àï~yÚöIEND®B`‚OpenLP-2.4/resources/images/general_revert.png0000644000175000017500000000134112657640340020541 0ustar raoulraoul‰PNG  IHDRóÿa¨IDATxÚ…“_HSQÇ$Å ‘„þX­§ Š£)e>Ù“š†eÍiC+…ZV¹44×(‡ùP àƒ’æ`VŽLTjšá´l¡¹n»»wwn»»ßÎîæÔ0:ðáðƒóýü~pÎ + ’þ„s +R›Í‹Õ ›ÝÇœN8].¸Ün¸)J€òxh† Y!H·Xÿ)ˆ…=Q˜ˆ }•Àîp€Ç‚E š¦…ãõÂK`Y6"PæîL\„;޼E›æ*ê䩸/AƒB Ýëz˜§¾€õùà‹²è÷GåiFe~RÕþÝâœGGÑù8æ¡"P3¥¸ªàù)‡y°ºæ,¼¬-‚õ"  FÍ•8}Ëq¾æbrȤ/„ïw¡d JñýCÔŠC \öeöÚ>Ž6ÉáþV zºD€+†£?ó]‡ažñK`LWf?žƒºüزàiy2ç2Ã9NøZŒÙ¾ L§Ĉs(ç°ƒ˜Û.V*웞fEdÆH: bñk5ªì´n/ýŽÎzd©!K :ëqoñ7z­Õñq©)ò$‘ P¤¿±)Ú÷QJaÖÿ¢äîáçC@–zÕ]Ùæ::èݹÃíË—E(ë)vVîÊÊ÷sèR ™˜À´®ãç)ºäuÒ¿cëÒEò@ãùÑÂ-Š"“\{èA*!Ûó7HÖÚì}êiÚ3Ï\ùýékà ¼ùå_⡙㘵Uºó7°L'¨\ñ=<±,~xãñw?¡÷Ö¬™”¶1t^?ËÔÛ³x8?zO,*ðÈDй´ øbÿõýþô¡SÇq|:F‡3@W¯^¥âY,u‹¶_zO\| -à`!éo¥Cƒ4–Åw—¤Á©x¬›¸·wÏ;¹ùyþT_˜|…YÿÌx†åF®/N‘bÄö›ïãÕw>Dãoã`ips·Ç¸1¸|Qƒ>ýˆÃÎ^À¢çõ²‘4Yv˜¸¸ åÞ^ù ¶Žè„ÊétªvïÂr;½ÃûsœpKlN[üÒx„À(¾‘`2gÇÖ-ƒˆpŠ"»è胉f´27ú±¸(sÎ9•²0µøgì±XŽúøF‹é“{ åÜí ;Õ? Ž£p¬Me ¯Ò:a\ƒc#¥f« ñc[~lz-{Þ ,•£zÀ{Ÿoh‡ ¦4»;K`:²úâu^o]ÝéuìƒÎ…i@e æç´YÁ€Ü‚úÖ €&1@yy]\.ÅÆ” Áò>ÕëY®c߇@='7AGÐG¨ü‘aSË q…F¥´¾€BõÒ ”ȺV¼ €"©ßòY"ÊÈ ¼ô€võ ¨”` 1 ÀXO’ÎO”“,I ôùûò›V•€ÊŸZÔ†Rµ+ù“JÑ<4"Ñ ¦ É«ü¶Éè)­iB‘hå5Ìô›b³¸lD¿“2^rеXxAè “5㥠íŠ[Pê?#= Î…”+Í0P’±–Ár­už'Õ*õcËq tKö¹z €«±ËL}|L ÎZÉö^¹ºòÅTŠ£{ 2à%( Ôà%b¨OÏ FŽ`H$}ž3õ]R5F$¢!ÆÓì‘}ÔK|MJEY3ª… «,Òþ k*€áøÿà9ôU‹ #')Jlh¦eÍ:í÷^÷‚ÛdTºóhtßÊNÓ‹‘ÔÏÄ([5xšHÀ¢YÕ>‹AJG¥f=j(ÝWƒAÂ@¡¿ô•B¿6q 4¸nÕ'ë¨k ®«ñSoTµTJ`õ)N „/Ö¦«™Š‚¹Ï·»/[Z r–]×Á{¯vðž› XUµTõ©¡S¿xï,ìÖÖÖ0þAß÷‡<0ŸÏ‰mš/’ö!P`ñ"^ijí“’Ý‹­:­÷ºï‹–D¢»Åo¿{&±¼»»+š®_¿Ž+W®üÍÁn €Åb!Í|¾0^7 p&‘F%d¡:íÁå=µ«†CïŽ5|öɯé2Í–õøÒ¥KÇo¹Ï3€Ûi~a÷wIJ9ab?#clùߌJ)¯¡2\Ë`ˆi—¹?¿ÿú÷_~ôèhý$º»ÿ²ÃÒ”Þci³ŒY¶ò!àF¶µ2§,&þû]ÀĬCŸ¥Ï2“gŸ.¯…Rô ¶ò­ï"zTXtSoftwarexÚ+//×ËÌË.NN,HÕË/J6ØXSÊ\IEND®B`‚OpenLP-2.4/resources/images/about-new.bmp0000644000175000017500000022702612657640340017442 0ustar raoulraoulBM.6(uEà-  ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÓШ˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘Æ»¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“9999999999999999999999999999999999999999999999999999999999|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“9999999999999999999999999999999999999999999999999999999999|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99˾·ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÓÀ¶ÔÀ¶Ñ¹ͺ¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯Íº¯ÔļçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàçâàãÞÜM,9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð‘vБwБvБvБvБvБvБvБvБvБvБvБvÐ’vÐ’vÐ’vÍ“w®„kšaAšaAšaBšaBšaBšaBšaBšaBšaBšaBšaBšaBšaBšaBšaBšaBµŽyÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð‘vБwБvБvБvБvБvÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÍ“w®„kšaBšaBšaBšaBšaBšaBšaBšaBšaBšaB›aB›aB›bB›bB›bB›bC¶yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð’vÐ’wÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÑ’wÑ’vÑ’wΓx®„kšaBšaB›bB›bB›bB›bC›bB›bC›bC›bC›bC›bC›bC›bC›bC›bC¶yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð’vÐ’wÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÐ’vÑ’wΓx¯„kšaBšaBšaB›aB›bB›bB›bB›bC›bC›bC›bC›bC›bC›bC›bC›bC¶yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïìŲ¥Ÿ€j„\?sE%j9h7h7h7o@U7—v^¼¦—ìæâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð’vÐ’wÐ’vÐ’vÐ’vÑ’vÑ’vÑ’wÑ’wÑ’wÑ’wÑ’wÑ“wÑ“wÑ“wÑ“wΔx¯…l›bC›bC›bC›bC›bC›bC›bCœbCœcCœcCœcDœcDœcDœcDœcDœcD¶yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÀÀ<<<,,,VVVíííÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçàÚœ|ej:m<€N+]9›hD£oK¦rN§sO¤pLžjF“`<„R.p?h7”rYãÙÓÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ð’vÐ’wÐ’vÐ’vÐ’vÑ’wÑ’wÑ’wÑ’wÑ’wÑ’wÑ’wÑ“wÑ“wÑ“wÑ“wΔx¯…l›bC›bC›bC›bC›bCœbC›bCœcCœcCœcDœcDœcDœcDœcDœcDcD¶yûûû÷÷÷ÿÿÿÿÿÿìììëëëÿÿÿÿÿÿ÷÷÷üüüÿÿÿ–––«««æææBBB–––ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ²™‡j:r@‘^;¦rN§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO”a>tBi9³šˆÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ñ’wÑ’xÑ’wÑ’wÑ’wÑ’wÑ’wÑ“wÑ“wÑ“wÑ“wÑ“wÑ“wÑ“wÑ“wÒ“xÏ”y¯…lœbCœbCœcCœcCœcDœcDœcDœcDœcDœcDdDcDdEdEdEdE·z¥¥¥PPPÿÿÿzzz%%%&&&xxxÿÿÿ===···ÿÿÿÉÉÉ&&&;;;888ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ”qXi8ˆV2¦rN§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sOˆU2h7~gÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ñ“wÑ“xÑ“wÑ“wÑ“wÑ“wÑ“wÒ“xÒ“xÒ“xÒ“xÒ”xÒ”xÒ”xÒ”xÒ”xÏ”y¯…mœcDœcDdDdDdEdEdEdEdEždEžeFžeFžeFžeFžeFŸeF¸‘{ïïïàààØØØçççîîîÏÏÏ///²²²ÿÿÿIIIƒƒƒóóó222ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ–t\j9•b>§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO‘^:i8¬‘~ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ѻ¯Ñ“wÑ’xÑ“wÑ“wÑ“wÑ“wÑ“wÑ“wÑ“wÒ“wÒ“xÒ“xÒ“xÒ”xÒ”xÒ”xÏ”y¯…mœcDœcDœcDœcDcDdEdEdEdEdEždEdEžeFžeFžeFžeF¸‘{ÿÿÿÿÿÿÀÀÀ!!!þþþÿÿÿ,,,´´´///§§§ÿÿÿ...²²²ÿÿÿ]]]ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¹¢’h7”a=§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO‹X4h7ÝÒÊÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ñ“wÑ“xÒ“wÒ“xÒ“xÒ“xÒ“xÒ”xÒ”xÒ”xÒ”xÒ”xÓ”yÓ”yÓ”yÓ•yЕz¯…mdEdEdEdEžeEžeFžeFžeFžeFŸeFŸfGŸfGŸfGŸfG fG gH¸’|ÿÿÿÿÿÿïïœ¤¤¤èèè///>>>¥¥¥___WWW¿¿¿ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿïêæm>…S/§sO§sO§sO§sO§sO§sO§sO™eBM*q?j9i8l;xF#[7¦rN§sO§sO§sO§sO§sO§sOvD!‘mTÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ñ“wÑ“xÒ“xÒ“xÒ“xÒ”xÒ”xÒ”xÒ”xÒ”xÒ”xÓ”xÓ”yÓ”yÓ”yÓ•yЕz°…mdEdEžeEžeFžeFžeFžeFŸfGŸfGŸfG gG fG gH gH gH¡hH¸“|ÿÿÿÿÿÿÿÿÿÍÍÍ^^^[[[ÉÉÉÿÿÿ†††‰‰‰rrrèèèffffffŽŽŽ´´´ÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖȾsD!¥qM§sO§sO§sO§sO§sO¦rN€N+h7ŠdIÇ´§êãÞôñîÙÍĦ‰tk;tB¡mI§sO§sO§sO§sO§sO–c?h7íçâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ò“xÒ“yÒ”xÒ”xÒ”xÒ”xÒ”xÓ”yÓ”yÓ”yÓ•yÓ•yÓ•yÓ•yÓ•yÔ•zÑ•{°…nžeFžeFžeFžeFŸfFŸfGŸfGŸfG gG gG gH gH¡gH¡hI¡hI¡hI¸“}ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖȾ}M*Ž[7Ž[7Ž[7Ž[7Ž[7Ž[7yG$l<Ų¥ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿãÙÓvJ*wE"§sO§sO§sO§sO§sO§sOp>Á­Ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ó”yÓ”zÓ”yÓ”yÓ•yÓ•yÓ•yÓ•yÔ•zÔ•zÔ–zÔ–zÔ–zÕ–{Õ–{Õ—{Ñ—|°†nŸfGŸfG gH gH gH¡hH¡hH¡hI¡hI¢iI¢iJ¢iJ£jK£jK£jK¤kLº”~ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÝÒÊ®”‹eJuH(j:j:j:k;vI)hM°–„àÕÎÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7¥rN¥rN¥rO¦rN¦rN¥sNh7ÿÿÿɸ«œ|eU7n?i8i8i8m=|R3—u]¾ª›ñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿåÜÖ´›ŠlRxL-l<h7h7h7o@Y< k̼°ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿɸ«œ|eU7n?i8i8i8m=|R3—u]¾ª›ñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÝÒÊ®”‹eJuH(j:j:j:k;vI)hM°–„àÕÎÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖȾ¥ˆs¥ˆs¥ˆs¥ˆs¥ˆs¥ˆs¥ˆs¥ˆsŒgLuH(j:i9i9i9sE%ŠdI±—…ÛÐÈh7”a=§sO§sO§sO§sO§sO‚O,¡‚lÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ò”xÒ”yÓ”xÓ”yÓ”yÓ•yÓ•yÓ•yÓ•yÓ•yÔ•zÔ•zÔ–zÔ–zÔ–zÕ–{Ñ–|°†nŸfGŸfGŸfGŸfG gH gH gH¡hH¡hI¡hI¢iJ¢iI¢iJ£jJ£jK£jKº“~ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿZ=h7tB„R/‘^:˜fBœiEœjE˜eA^;„R.sBh7†_CÓĺÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7ŸlIŸlHŸmIŸlH mH mIh7tG'j9|J'[7˜fAŸkH¡nJŸlH™gD]9O+m<k;£…pñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÎÅŒfKh7rA†T0”b>žkG¤pL¥rN¡oJšhDŽ\9}K(j9uH(¾©šÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7tG'j9~L)‘^;žjF¥qM§sO¥qMŸkG“`=ƒQ-n=k;£…pñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿZ=h7vD!ŠW4˜eA¢nJ¦rN¦rN¡nJ˜dA‰W3uC h7†_CÓĺÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿâÙÒŽiOh7tB‰V3˜eA¢nJ¦rN§sO£oK™eB‰V3q?i8–s[M)§sO§sO§sO§sO§sO\9ŠdIÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ó•yÓ•zÓ•yÓ•yÔ•yÔ•zÔ•zÔ–zÔ–zÔ–zÕ–{Õ–{Õ—{Õ—{Õ—{Ö˜|Ò—}±‡n¡gH gH¡hI¡hI¡hI¢iJ¢iJ£jJ£jK£jK¤kL¤kL¥lL¥lM¥lM¦mN¼•€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïì”rYh7wE"Ž[8—d@—d@–d@–eA—dA—eA˜eA˜eA—eA˜eAŽ\9vE!h7™x`ôñîÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7™gCšgCšgC™gCšgC™gDh7}K(–d@šhDšhD›hD›hD›iE›iD›hE›iE›iEšhD‡U2m<qD#ÐÁ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ£…oh7uD!‘_;žkHžkHžkHžkHŸlHžlHŸlIŸmIŸmIŸlI›gD€N+i8ŠdIðëèÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7¡nJ¡nJ¡nK¡oJ¢oJ¡nKh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7£pL¤pL£pM£pM£qM¤qMh7ÿÿÿÿÿÿh7¤rN¤rN¥qN¤rN¥rN¥rNh7ÿÿÿÿÿÿÿÿÿh7¥sO¦sO¦sO¦sO§sP§tPh7‚P-¢oK§sO§sO§sO§sO§sO§sO§sO§sO§sO¦rNŽ[8n=qD#ÐÁ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïì”rYh7}K'œhE§sO§sO§sO§sO§sO§sO§sO§sO§sO§sOšgC{I%h7™x`ôñîÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7§sO§sO§sO§sO§sO§sOh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿº£“j9tC—d@§sO§sO§sO§sO§sO§sO§sO§sO§sO§sOŽ[7k:r@§sO§sO§sO§sO§sO™fByN/ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ñ»¯Ô•zÔ•{Ô–zÔ–zÔ–zÕ–{Õ–{Õ–{Õ—{Õ—{Ö—|Ö—|Ö˜|Ö˜|Ö˜|×™}Ó˜~²ˆo¡hI¡hI¢iJ¢iJ£jJ£jK£jK¤kL¤kL¥kL¥lM¥lM¦mN§nN§nO¨oP½–€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿúùùP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿêäß|R3k:„S/‘^:‘^;‘^:‘^:‘^;‘_:‘_<‘_;‘_<‘_;’`<’`<’_<’`<„S/k:U7ìæâÿÿÿÿÿÿÿÿÿÿÿÿh7“a>“a=“a>”a=”a>”a>ˆV2•b>”b>”b>•b>”c>•c?•c?•c?•c?•c?–c?–c@–c?“`=vE"i8ï¡ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôñîˆaFj9…S0˜eB˜eB™fA™fB™fB™fB™gC™gC™fC™fCšgC™gDšgDšgC\9m<zO1ëåáÿÿÿÿÿÿÿÿÿÿÿÿh7›hE›iE›iEœiE›iF›iEh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7kGkGkGkGžkGkGh7ÿÿÿÿÿÿh7ŸlHŸlHŸlIŸlHŸmHŸmHh7ÿÿÿÿÿÿÿÿÿh7 mJ nJ¡mJ¡nJ nJ¡nJ‘_;¡nK¡nJ¡nK¢oJ¢oK¢oK¢oK¢oK¢oK£pL¢pL¢pK£oKŸlHzI%i8ï¡ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7¤qM¤qN¤qN¥qN¥qN¥rNh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿêäß|R3m<”a>¦sO¦sO¦tP¦sO§tO§tP§sO§sO§sO§sO§sO§sO§sO§sO’_“a>”a>”b=”b>]9n=}S5öòðÿÿÿÿÿÿÿÿÿh7•b?•b?–c?–c@–c?–d@h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7—eA—eA—eA˜eA˜fB˜fBh7ÿÿÿÿÿÿh7™fB™fC™fC™fC™fC™gCh7ÿÿÿÿÿÿÿÿÿh7šhDšgDšhD›hE›hE›hD›iD›hE›iEœhEœiEœiEœiFœiEœjEœjFœjFœjFjFjFjFjG}K(i8Òùÿÿÿÿÿÿÿÿÿÿÿÿh7ŸlHŸlHŸkHžlHŸlHŸmHh7ÿÿÿÿÿÿÿÿÿÿÿÿðëèzO0p?™fC nJ¡mJ¡mI¡nJ¡nK¡nK¡nJ¡oK¡oK¡nK¢oK¡oK¢oK¢pL£oL¢pK™hDo>|Q2ñíêÿÿÿÿÿÿÿÿÿh7¤qM¤qM¤qM¤qM¤qM¤qMh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ® h7‰W4¦sO¦sO¦sO¦sO¦sO¦tP¦tO§sO¦tP§tP§sO§sO§sO§sO§sOŸkH§sO§sO§sO§sO§sO¤pLi9ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ÖǾԯ›Ô¯›Ô¯›Ô¯›Ô¯›Ô¯›Ô¯›Õ¯œÕ¯œÕ¯œÕ¯œÕ¯œÕ¯œÕ¯Õ¯Õ°Ó®›¹žŒ§‡p§‡p¨‡p¨‡q¨‡q©‡q¨‡q©‡r©ˆr©ˆs©ˆs©ˆsª‰tª‰t«‰t«Št» Ž³–‚²–‚³–‚³—ƒ³—ƒ´—„µ˜„µ˜…¶™…µ™…¶™†·™†·™†·™†·š†¸š‡¸š‡ßÓÌP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿhNk:P,…R/…R/…S0…S/…S/…S0…S0†S0…S0†T0†T0†T1†T1†T1†U1‡U1†U1‡U1‚Q-k:ŽiOÿÿÿÿÿÿÿÿÿh7‡V3ˆV2ˆV3ˆW2ˆW3ˆV2‰W3ˆW3‰W4‰W3‰W3ŠW4ŠX4ŠW4ŠX4ŠX4ŠX4ŠX5ŠX4ŠY5ŠX5‹Y5‹X5rAsF&óïíÿÿÿÿÿÿÿÿÿ§‹wi8„R/ŒZ6ŒZ6ŒZ7ŒZ6Z7ŒZ7[7[8[7[8Ž[7\8\8Ž\8Ž\8Ž[9\8Ž\8‰W3j9žiÿÿÿÿÿÿÿÿÿh7]9]9^:]:]:^:h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7‘`;’_<‘_<’_<’`<’`h7ÿÿÿÿÿÿÿÿÿh7”b>•b?”b?•b?•b?•b?•c?•b?•c?•c?–c@•d?–c?–d@–c@—d@—d@—dA—dA–e@—eA˜eA—eAvE!sF&óïíÿÿÿÿÿÿÿÿÿh7˜fB˜fB˜fC™fC™gC™gCh7ÿÿÿÿÿÿÿÿÿÿÿÿhNm<”b>šgDšhDšhD›hDšhD›iD›iE›hDœhEœiE›iEœiEœiEœiFœjFœjFjFœjF•c@m<ŽiOÿÿÿÿÿÿÿÿÿh7žkGkHžkHžkGŸkHžkHh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëåám>L* mI nI mI nJ nJ¡nJ¡nJ¡nJ¡nJ¡nJ¡oK¡nK¡oK¢oK¢oK¢oK¢pK¢oL¢oK¢oL¢pL¢pL£pLh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»¯Õ–{Õ–|Õ—{Õ—{Õ—{Ö—|Ö—|Ö˜|ט}Ö˜|×™}×™}Ø™~Øš~Øš~ÙšÕ™€˜pVk7k7l8l8l9m9m9n:n;o;p<p<q=r>r>s?™sYzH&uAvBwC!wC xE"yE"yF#{G${G$|H&}I&}I'~K(~K(K)€L)ϼ¯P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿð¢h7yH%~L*~M*M)M*M)N*~M)tC m<i8i8l;tC ~L)€O+N+€O+O,O,€O,{I&h7ï¡ÿÿÿÿÿÿh7‚P-‚P-‚Q-‚Q-‚P-ƒQ-ƒP.ƒQ-ƒQ.P,vD!n=j9i8l;uC O+„S/„S/„R/…S/…R0…S0ƒQ.j9©ŒxÿÿÿÿÿÿàÖÏh7yH%†T1†T1†T0‡T1‡U1‡T2ƒQ.vD!m<i8h7k:sBO,ˆV2ˆV3ˆV2ˆW3‰V3‰W3|K(h7á×Ðÿÿÿÿÿÿh7ŠW4‰W4ŠX5ŠX5ŠX4‹X5h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7ŒZ6ŒY6ŒZ6ŒZ7Z6ŒZ7h7ÿÿÿÿÿÿh7[7[7[7[7Ž[8\8h7ÿÿÿÿÿÿÿÿÿh7\9]8\9\9]9]9]:^:]:\8}K(p?k9i8n=zH%ŒZ7‘_;‘_;‘_;’_;‘_;’`;Ž]8k:©Œxÿÿÿÿÿÿÿÿÿh7“`=“`=“a<“a=“a=“a=h7ÿÿÿÿÿÿÿÿÿð¢h7‰W4”a>•b?•b>•b?•b>•b?“a=N*q@j9i8p?N*”a=–d@–d@–d@—d@—d@—dA‹Y6h7ï¡ÿÿÿÿÿÿh7˜eA˜eB™fB˜fB˜eB˜fBh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžin=˜eAšhDšhD›hDšhD›hD›hD‘`<}K(p>j9i8p?~L)”a=œiEœiFœiFœiFœiFjFjGjFjFh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»¯Ö—|Ö—}Ö˜|Ö˜|ט}×™}×™}Ø™~Øš~Øš~ÙšÙšÙ›Úœ€Ú›€Ûœ×›˜qVm9m9n:n:o;p<p<q=q>r>s@s?uAuBvBwD!›u\}L*zF#zG$|I&|H&~J'K(L)N+M*ƒO,„P-„P-†R/†R/‡S0‡T1н±P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyM.n=xG#xG#xG$yG$yG$yH%uD j9pB!±—…áØÑãÚÔ³šˆrD$j9vD!{I&{I&{I&{I&{J&|J'p?wK,ÿÿÿÿÿÿh7|K'}K'|K'}K'}K(}K'}K(}K(xF#j9qC"±—…àÕÎéáÜ»¦–yM.i8wF#~M)M*M)M*M*M*uD!m>õòïÿÿÿ—v^m<€O+€O+€O+€O+O,O,wE"i8|R3¼¦—æÝ×ïêæÊ¸¬…]Ah7wF#‚P-ƒP-ƒP-ƒQ.ƒQ.ƒQ.m<×ÊÀÿÿÿÿÿÿh7„R/ƒR/„R.„R/„S/„S/h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7†T0†T1†T1‡T0‡U1†U1h7ÿÿÿÿÿÿh7‡V1‡U2‡V2ˆV2ˆV3ˆV2h7ÿÿÿÿÿÿÿÿÿh7‰V3ˆW3‰W4‰W3‰X4‰W3ŠW4ŠX4O+k:qC"±—…àÕÎéáÜ»¦–yM.j9N+‹Y5‹Y6‹Z6ŒY5ŒZ6ŒZ6}K'm>õòïÿÿÿÿÿÿh7|K'|K'|J(|J'|K'}K(h7ÿÿÿÿÿÿÿÿÿyM.wF"Ž\8Ž\9]8]9]9]:†T0l:pB!±—…áØÑãÚÔ³šˆrD$l:‡T1‘^;‘^;‘_;^;‘^;‘_;xG$wK,ÿÿÿÿÿÿh7’`<’`<’`<“a=“`<’`=h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿñìéj:„R/”b>”b>•b>”b?•b>”b?~L)i8‚Z=Á­ŸéáÜèàÛÀ«œ€V9i8O+–c@—dA–d@—d@—d@—d@—dA˜eAh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»¯Ö˜|Ö˜}ט}×™}×™}Ø™~Ø™~Øš~ÙšÙšÚ›Ú›€Úœ€ÛœÛœÜ‚Øœ‚™qWn:n:o;o<p<q=q=r?s?s@uAuAvC wC!xD!yF#œu\N,|H%}I&K(~K(€M*M+‚N+„P.„P-†R/‡S0‡S1‰U2‰U2ŠV4‹W4о²P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÁ¶h7r@rAsAsAsBtBq@h7ŒgLñíêÿÿÿÿÿÿÿÿÿÿÿÿòîëŽjPh7rAtD uD uD!uD vD!uC h7ξ³ÿÿÿh7wD"wD"wE"wF!wF"wE"wE"sBh7‘mTóïíÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿšyah7tByG$yG$yG$yH%zG%yG$i8Ų¥òîëj9tC {I&zH%zI%{I&{I&uC h7¤†qÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¦‰th7q@sAsAsAsBsBn=×ÊÀÿÿÿÿÿÿh7~L)~M)~L*~L)L*M)h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7€O+N+€O+O+€O,O,h7ÿÿÿÿÿÿh7P-‚P,P,‚P,‚Q-‚P-h7ÿÿÿÿÿÿÿÿÿh7‚Q-ƒQ.ƒQ-ƒQ.„R/ƒR/ƒR.}K(i8‘mTóïíÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿšyah7}K(†S0…T1†T1†S0†T1…S/j9Ų¥ÿÿÿÿÿÿ¬‘~¬‘~¬‘~¬‘~¬‘~¬‘~¬‘~¬‘~ÿÿÿÿÿÿÐÁ¶i8„S0ˆW3ˆW3‰W3‰W4‰W3‚P,i8ŒgLñíêÿÿÿÿÿÿÿÿÿÿÿÿòîëŽjPi8‚P-‹Y5‹Y6‹Y5‹Y5ŒY6ˆV3i8ξ³ÿÿÿh7ŒZ6Z6Œ[7ŒZ6ŒZ7[7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÁ­žl:[7\9\8\9Ž]9]9|K'h7´œ‹ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ®”‚h7~M*^:‘_:_;‘_;‘^;‘_;’_;h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»¯×˜}ט~×™}×™}Ø™~Øš~Øš~ÙšÙ›Ù›Úœ€Úœ€ÛœÜ‚ÛÝž‚ÙƒšqXo;o;p<p=q=r?r>t@tAuAwC vC xD"yE#yF#{G%w]P.~J'K(M*M*ƒO,„P-…Q.‡S0‡S0‰U2ŠV3ŠV4ŒX6ŒX6ŽZ7Ž[8Ñ¿³P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢„ni8m;m<m<m<m=n<i8ˆaFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŠdIi8o>o>o>p>o>o?k9 kÿÿÿh7p?q?p@q@q@q@r@i8ŽiOÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ”rYi8rAsBsBsBtCtBl;}fʸ¬i8tC tC tC uC uD tC i8›zcÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¼¦—±—…±—…±—…±—…±—…±—…±—…×ÊÀÿÿÿÿÿÿh7xG#xF#xG$yG#yG#yG$h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7zI%{I&zI&{I%{I&{J&h7ÿÿÿÿÿÿh7|J'|J'|J'|J'}K'}K'h7ÿÿÿÿÿÿÿÿÿh7}K)}L(}K(}K(~L)~L)}K(j9ŽiOÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ”rYj9M)€N+€N+€N+€N+€N+r@}fÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢„np?ƒQ-ƒP-ƒQ.ƒR-ƒQ.‚Q-l;ˆaFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŠdIl;„R/…S0…S0…T0†T0†T0q@ kÿÿÿh7†U1†T1‡U1‡T2‡U2‡U2h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿšzbuD ‰W3ˆW3‰W3ˆV3‰W3…S/i8°—„ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿª{i8‡T1‹X5‹Y6‹Y6ŒY5‹Y6‹Y6h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»°Øš~ØšÙšÙ›Ù›Úœ€Úœ€ÛœÛÛÜž‚ÝžƒÝŸƒÞ „Þ „ß¡…Û „œsZr>r>t@t@uAvC vB xD!yE"yF#|H%{G%}J'K(K(N+¡z`‡U3…Q.†R0‰U2ˆU2‹W5ŒY6Z7\:\9’_<”`=”a>—c@—c@˜eBšfCÔÁµP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‚Z=g7g7g7g7g7g7g7k;ëäàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿìæâl<i8i8j8j8j9j9i8X;ÿÿÿh7k:k:k:k:k:k:j9m>ðëçÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿòîëpA k:m=n<n<n=m<k:X;¬‘~j9o>n>o=o>o>m<h7h7h7h7h7h7h7h7h7h7h7h7h7h7h7h7h7h7h7ñíêÿÿÿh7sArAsAsAsAsBh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7uCuC uC uC!uD uD!h7ÿÿÿÿÿÿh7vE!vE!vD"vE"vD!vE"h7ÿÿÿÿÿÿÿÿÿh7wF"wF#xF"xF#xG#xG#q@m>ðëçÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿòîëpA rAzH%zH%zH&zI&{I&tCX;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‚Z=uC |K(}L(}K(}L(~L(vD!k;ëäàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿìæâl<vE!M*€N*€N*€N*€N*wF#X;ÿÿÿh7O+O,O,O,O+P,h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€V9yH%ƒQ-ƒQ-ƒQ.ƒQ-ƒQ-uD {P1ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿzO0vD!…S0…S0†S0†T0…T0†S0h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ò»°Ø™~ؙؚ~ÙšÙšÚ›€Ú›€Úœ€ÛÛÜž‚Üž‚ÝžƒÞŸ„ÝŸƒß …ÛŸ„œsZq>q>s?s?t@vBuBwC!xD!xE"{G$zF$|H&}J'~J'€L* y`‡T2ƒO-…Q.‡S1‡S0‰V3ŠW4‹X5Ž[8ŽZ7\:’^;’^<•a>•a>–b@—dAÔÀµP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿo@g7g7g7g7g7g7h7¡ƒmÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¤†qh7g7g7g7g7g7g7o@ÿÿÿh7g7g7g7g7g7g7h7§‹wÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿª{h7g7g7g7g7h7h7pA ›zci8i7i8i8i8i8i8i9j8j8i8j9j9k9j:j:k:k:k:l:l:k;k;l:l;h7á×Ðÿÿÿh7l;m<m<m<m<m<h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7o>n=n>o>o>o>h7ÿÿÿÿÿÿh7p?p?q?p?q?p@h7ÿÿÿÿÿÿÿÿÿh7q@rAqAr@r@rAk:§‹wÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿª{k:tCtC uC uC tC sApA ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿo@tC wE"wE"wE#wF#xF"l;¡ƒmÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¤†qm<zH$zH%zH%zH%zH&wF"o@ÿÿÿh7{I&{I&{J&{I&|I&{J&h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿo@zG$}K(|K'}K'}K(~K(l;¹¢‘ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ·Ÿm;M*N*M*€N*€N+€N+h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó»°Ù›Ù›€Úœ€Úœ€ÛœÜ‚ÛÜž‚ÝŸƒÝŸƒÞ „Þ „ß¡…ࢆࢆᣇݢ‡œu[uAuAvC wC xD!zF#yF#{H%|I&}I'€L)K)‚N+ƒO-„P-†S0£}dŒZ9ŠW4ŒX5[8Ž[8’^;“_=”a>˜dA—cAšfDœhEœiFŸlI lI¡nK£oLÖ÷P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9g7g7g7g7g7g7h7ÓÅ»ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖÉ¿h7g7g7g7g7g7g7i9ÿÿÿh7g7g7g7g7g7g7h7ÖÉ¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÎÅh7g7g7g7g7g7g7i9–s[g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7h7àÖÏÿÿÿh7g7g7g7g7g7g7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7i8i8i8i8i8i9h7ÿÿÿÿÿÿh7j9k:j9k:k9k9h7ÿÿÿÿÿÿÿÿÿh7k;l:l;l;l;l;h7ÖÉ¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÎÅh7n=n=o=o>o>o>i9ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9q?q@q@q@r@rAi8ÓÅ»ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÖÉ¿i8tCtBtBtCtCtBi9ÿÿÿh7uC uC uD!vD uD!vD!h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi8vE!vE"wF"wF#wF"wF#i8á×ÐÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿàÖÏi8zH$zH%yH%zH%yH%zI&h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó¼°Úœ€ÚœÛÜ܂ݞƒÝžƒÞŸƒÞ „Þ „ࡆࡆᢇ⤈⣈㥉ޤˆu[wC vC yE"yE"zF$|H&|H%~K(L)€L*ƒO,‚O,…Q/‡S0‡S1ŠW4¥e^<Ž[8]:”`=“`=—c@˜eBšfCjGiF lJ¢nL£oL¦rP¦rP¨tRªvS×ĸP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9g7g7g7g7g7g7h7ðëèÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïìh7g7g7g7g7g7g7i9ÿÿÿh7g7g7g7g7g7g7h7ñíêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïíh7g7g7g7g7g7g7i9–s[g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7g7h7àÖÏÿÿÿh7g7g7g7g7g7g7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7g7g7g7g7g7g7h7ÿÿÿÿÿÿh7g7g7g7g7g7g7h7ÿÿÿÿÿÿÿÿÿh7g7g7g7g7g7g7h7ñíêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïíh7h7i7h8i8i8i8i9ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9k:k;k:k;l;l;h7ðëèÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóïìh7n=n<n=n=n=o=i9ÿÿÿh7o>o>o?p>o?p?h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi8q?p@q@q@r@r@h7óïìÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôðíh7tBsBtCtB tC tBh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó¼°ÛœÛœÛÜž‚Üž‚ÝŸƒÝŸƒÞ „ß …ß …ࢆࢆᣇ㤈⤈䦊ߥ‰žv\wD!wD!zF#zF#{G%}I'}I&L)€M*N+„Q.„P-†S0ˆT2‰U2ŒX5¦€f’`=]:’^<–b?•a?™eB›gDœhE lIŸkI£oL¥qN¥rO©uR©uR«wU­yVØÅ¹P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9¤pL§sO§sO§sO§sO§sOm<ÖÉ¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÕǾm<§sO§sO§sO§sO§sO£oKi9ÿÿÿh7§sO§sO§sO§sO§sO§sOm<ØËÂÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ×ÊÁm<§sO§sO§sO§sO§sO¥qMi9–s[‘^;§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§sOq@àÖÏÿÿÿh7§sO§sO§sO§sO§sO§sOi8öòðÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿöòði8©vS©wT©wT©wTªyUªxUh7ÿÿÿÿÿÿh7¬{W¬{X¬{X¬{X­}Y­|Yh7ÿÿÿÿÿÿÿÿÿh7®€\¯€]¯€]°]°^±‚^n=ØËÂÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ×ÊÁn=´ˆeµˆfµ‰e¶‰g¶‰g³†ei9ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi9¶‹jºn»‘o»‘o¼’p»’po?ÖÉ¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÕǾo?À˜wÀ˜wÁ˜xÁ™xÁ™x¼”si9ÿÿÿh7›{Ü{Ü|Ã|Ä|Ä}h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿi8Þ}ơǢ‚È¢‚Ç¢‚È£ƒp@ÛÏÇÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÎÆo?Ì©ŠÌ©‰ÌªŠÍª‹Íª‹Î«‹h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó¼°ÝžƒÝžƒÞŸ„Þ „Þ „ࡆࡆᢇ⣈⣈㥉䥊䦊樌樌詎㨠x^|H%|H%~K(K(€L*ƒO,‚O,…Q/†S0‡T1‹W5‹W4ŽZ7\9\:”`>«„j™gFšfCœhE lIŸlI¤pM¦rO§tQ¬xV«xU¯|Y²~\³\·ƒ`·ƒ`¹†c»ˆeÛǼP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿo@œhE§sO§sO§sO§sO§sOyG$¤‡rÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢„nzH$§sO§sO§sO§sO§sO›gCqD#ÿÿÿh7§sO§sO§sO§sO§sO§sOxG#©yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ§‹wyG$§sO§sO§sO§sO§sOžkGn?œ|e‰W3§sO§sO§sO§sO§sO§sO§sO§sO§sO§sO§uP§uQ¨uQ¨uQ¨vR©vR©vS©wSªwT©xTªxT«xUªyU«zVj9éáÜÿÿÿh7¬{X­|Y­|Y­}Y­}Z®}[l;åÜÖÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçßÙm<±‚_±ƒ_±ƒ`±ƒa²ƒa±ƒ`h7ÿÿÿÿÿÿh7´‡d´†dµ‡eµ‡eµˆeµˆfh7ÿÿÿÿÿÿÿÿÿh7·‹h·‹i·Œi·Œj¹Œj¸k}N+©yÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ§‹w~O,½“r½”r½”s¾”s¾•s²ˆgn?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿo@³‰hœ{Ü{Ü{Ä}Ä|S0¤‡rÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¢„nƒU3È£ƒÈ£„ɤ„É¥„Ê¥…·oqD#ÿÿÿh7˧‡Ë§ˆË§‰Ì¨‰Ì¨‰Ì©‰i8ôðíÿÿÿÿÿÿÿÿÿÿÿÿl<ž~Ï­ŽÏ­ŽÐ­ŽÐ®ŽÐ®T1±˜†ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ­’‚U3Ôµ–Õµ—Õµ—Õ¶—Õ¶˜Õ¶™h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó¼°ÝžƒÜž‚ÝŸƒÞ „Þ „ࡆࡆᢇ⣈⣈㥉㥉䦊槌槌詎㧠x^|H%|H%~J(K(€L)‚O,‚N+…Q.†R0‡S1‹W4ŠV4Z7\9\:”`>«„j™gF™eC›hEŸlIŸkH£pM¥rO§sP¬xU«wT¯{X±~[²~[¶‚`¶ƒ`¹…b»‡dÛȼP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿƒZ=Ž[8§sO§sO§sO§sO§sOŽ[7k;ëåáÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿêãÞk;\8§sO§sO§sO§sO§sOZ7†^Bÿÿÿh7§sO§sO§sO§sO§sO§sOŒY6n?ñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðëçn?Ž\9ªxTªyUªxUªyUªzV—fC}R4¯•ƒ~M*¬|X­|Y¬|Y­|Y®}Z‹[8h7h7h7h7h7h7h7h7h7h7h7h7“c@±„`²„a³„a³„b¦xUi8ÿÿÿÿÿÿh7´‡dµ‡eµ‡f¶ˆfµ‰g¶‰guE"Ƴ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿξ³uE"¹k¹ŽlºŽlºmºn¸ji9ÿÿÿÿÿÿh7¼‘q¼’p¼“q¼“r½“r¾”sh7ÿÿÿÿÿÿÿÿÿh7¿–v¿–uÀ—v¿˜vÀ˜vÀ˜wšoMn?ñìéÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðëçn?sRÅŸ~ÅŸÆ Å Æ €ª€_}R4ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿƒZ=¤zZ˧‡Ë§ˆË¨ˆË©‰Ì©‰¤{[k;ëåáÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿêãÞk;¨€`ЯаѯѰ‘ѱ‘¦^†^Bÿÿÿh7Ò²”Ó³”Ô´”Ô´•Ô´•Ôµ–p@ØËÂÿÿÿÿÿÿÿÿÿÿÿÿzO1·“s׸š×¸›Ø¹›Ø¹œØºœ¢zZvI)ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿõòïrD$§aÜÀ¢ÝÀ£ÝÁ¤ÝÁ¤Ý¤ÞÂ¥h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó¼±Þ „Þ „ß¡…ࢆࢆ⣈⣈㤉䦊䦊槌樌ç©éªéªë¬‘媢z`L)L)‚N,ƒO,„Q.‡S1‡S0ŠV3‹X5Y6‘]:\9”`=–b@—c@›gD¯ˆnŸnL¡mJ£pM¨tR§tQ¬yV¯{X°}Z¶‚_µ^º†c½‰f½‰gÂŽkÂŽlÅ‘nÇ“qÞ˾P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ£…p{I&§sO§sO§sO§sO§sO¦rNp?‡aEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿˆaFq@¨vRªwSªxTªxUªyUªyU{J'¦‰uÿÿÿh7¬{W­{X¬|Y­}Y­}Z®}Z«zXo>lRÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‘nUo?®€^±ƒa²„a²„b³„b³…bŠZ7–t\ξ³m<²…b´ˆe´‡eµˆfµ‰f­€^k:­’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ­“€k;³ˆfºmºnºnºo–iG‚Z=ÿÿÿÿÿÿh7½’q½“q½”r¾“s¾”s¾•s‰[9ˆaFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¡‚l…W5Á™xÁšyÁšyšy›zº‘pn?ÿÿÿÿÿÿh7Ä|Ä}Äž~Åž}ÅŸÅ ~h7ÿÿÿÿÿÿÿÿÿh7Ç¡‚È¢‚È£‚È£ƒÈ¤ƒÈ¤„Å €qAlRÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‘nUrC È¥…ͪŠÍ«‹Í«ŒÎ«ŒÎ«Œ–kJ–t\ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ£…pˆ\:Ó³”Ó³”Ó³•Ó´•Ô´–Ó²“vG%‡aEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿˆaFxI'Ö·˜ÙºœØºÙ»Ù»žÙ¼ž‰^<¦‰uÿÿÿh7Û¾ Û¾¡Û¿¡ÜÀ¢ÜÀ¢ÜÀ¢†Z9¡ƒmÿÿÿÿÿÿÿÿÿÿÿÿ”qXŸxWßæßħßŨàŨàŨֹœl<¨Œxÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ›zcpAÜÁ¤å˯å̰å̰åͱåͱæÍ±h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó½±à¢†à¡†á£‡â£ˆâ¤ˆä¥Šä¥Šå§‹æ¨Œæ¨ŒèªŽèªŽê«ì­’뭑譒¤|bƒO,ƒO,†R/†S0ˆU2‹X5‹W4[8\9‘^;–b?•a?™eCœhEiF¡nK²Œr¦tR¨tR«wT°|Z¯|Yµ^·„a¹…c¿‹i¾‹hÃmÆ“pÇ“qÌ™vÌ™vМyÒž{ßÍÁP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÑøi8¤sP­|X¬{Y­}Y­|Y­}ZŸoKj:ŠdIðëèÿÿÿÿÿÿÿÿÿÿÿÿðëç‹eJk:¢rO±‚_±ƒ`²ƒ`²„a²„bª|Yi8ÓÅ»ÿÿÿh7´‡e´‡e´‡eµˆeµˆeµ‰g¶‰g¢sRi8“oVôñîÿÿÿÿÿÿÿÿÿÿÿÿöòð–t\i8£vT¹mºmºn»n»o»orB»¦–õòïl<ŸsQ½“r½“r½“r½•s¾”s—jHh7´›Šÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¹¢‘h7˜mJšyÁ›z›zÛzÛ{zK(«|ÿÿÿÿÿÿh7Äž}Åž}ÅŸÅŸÅ €Æ €²Šii8®”ÿÿÿÿÿÿÿÿÿÿÿÿÞÔÌj:¤{ZÉ¥„É¥…É¥†Ê¦†Ë¦†µnwK,ÿÿÿÿÿÿh7Ì©‰Ì©ŠÍ©ŠÌ©ŠÍ«‹Íª‹h7ÿÿÿÿÿÿÿÿÿh7Ï­ŽÏ®ŽÐ®Ð¯Ð¯Ñ¯Ñ°µpj9“oVôñîÿÿÿÿÿÿÿÿÿÿÿÿöòð–t\j9¶’rÕµ—Õµ—Õ¶—Õ¶˜Ö·˜Ö¶—uG$»¦–ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÑøj:ί۾¡Û¾¡Ü¿¡ÜÀ¢ÝÀ¢Å¤…l<ŠdIðëèÿÿÿÿÿÿÿÿÿÿÿÿðëç‹eJm=Ǧ‰àŨáÅ¨áÆ©àÆªáǪӶ˜j9ÓÅ»ÿÿÿh7ãÊ­ãÉ­ãÊ®äÊ®äË®ä̯µ“ui8Òùÿÿÿÿÿÿÿÿÿº£“xJ(æÎ²çÏ´èдçеèеéÒµ²qh7®”‚ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžii8¿ ‚ì×»ì×¼í×¼ìØ½íØ¼íÙ¾îÙ¾h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ó½±à¢†à¢†á£‡â¤ˆâ¤ˆä¥Šä¥Šå§‹æ¨Œæ¨ŒèªŽéªê«ì­’쭒譒¤}bƒO-ƒO,†R0‡S0‰U2ŒX5‹W5[9]:’^;–b@–b?šfCœiFjG¢nL³Œr§uR©uR«xU±}Z°|Y¶‚_¸„bº†dÀŒi¿‹iÄnÇ”qÈ”rÍ™wÍšwÑzÓŸ|àÍÁP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyN/†V3µ‡eµˆeµˆfµˆe¶‰f¶‰f¤vTp?o@®”‚àÕÎá×а–„pA p@¥yW¹l¹ŽlºŽmºŽmºmºnˆZ7zO0ÿÿÿÿÿÿh7¼’q¼’q½“q½”r½“s¾”s¾”s¾•t¦zYn>rD$²™‡á×ÐåÜÖ·ŸuH(n=¦{ZÁšxšyšz›yÛzÛ{¥{Zi8íçâÿÿÿœ|exI'Ã|ÅŸ~ÅŸÆ €Æ €Æ¡€—kJi8„]@ð¢éâÝêãÞŲ¥†_Ci8•jIÉ¥…Ê¥†Ê¥†Ê¦†Ê§‡°‰hh7áØÑÿÿÿÿÿÿh7Ì©ŠÍ©‹ÍªŠÎ«‹Î«ŒÎ«Î¬ŒŸvUh7lRÓÅ»êäß· o@~Q/Ï­ŽÑ°‘Ѱ’Ò±‘Ѳ“Ò±“¨‚a‰bGÿÿÿÿÿÿh7Ôµ•Ô´–Ôµ–Ôµ—Õ¶˜Ö¶˜h7ÿÿÿÿÿÿÿÿÿh7׸š×¹šØºœØ¹›Ø»œÙºÙ»Ù»ž¹–wp@rD$²™‡á×ÐåÜÖ·ŸuH(o@¹–wÜÀ¢ÜÀ£ÝÁ£ÝÁ¤Ý¤ÞÂ¥¸•vi8íçâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyN/˜pOãÊ­äÊ®ãÊ®äË®å˯å̯ȫtF#o@®”‚àÕÎá×а–„pA uF$ʬèдèѵèѵèѶéÒ¶éÒ·štSzO0ÿÿÿÿÿÿh7ëÔ¹ëÖ¹ëÕºëÖºìÖ»ì×¼ìÖ»gFj9§ŠvÝÒÊÿÿÿìæâi8ĦˆïÛÀðÛÀðÜÀðÜÂñÝÂðݱqj:€W:Á­ŸéâÝãÚÔ¸¡wK,o?Á¤†óáÇôâÇôâÈõãÈõãÈõãÉõäÉõåÊh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ô½²ã¤‰ã¤‰ä¦Šå§‹å§‹ç©ç©éªŽê¬ê¬ì®’í®“î°”ñ²–ð²–óµ™í²–§e‰U2‰U2ŒY6Y7[9“_<’_<–c@˜eBšfDŸkIžjH£oM¦rP§sQ¬yV¸‘x±~]´€^·„a½Šg¼‰fÃlÆ’oÈ”qÏ›xΚwÓ }×£€Ø¤Ýª‡Þª‡á­‹ä°ŒãÐÄP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿı¤i8§{Y¼“r½“r½”s½”s¾”t¾•t»’o–jHzK(m=k;yJ(–jG¼“rÀ˜xÁ™xÁ™xÁšyÁšz›z¬ƒai8ı¤ÿÿÿÿÿÿh7Äž}Äž}Åž~ÅŸÆŸÆ Å Æ €Æ¡Á›z˜nL{L*n=k:yJ'–kJÀ›{ɤ…Ê¥…Ê¥…ʦ†Ê¦†Ê§‡É¤…wH%™x`ÿÿÿÿÿÿäÜÖi9 wVÍ«‹Íª‹Î«ŒÎ«ŒÎ¬ŒÎ¬»–v‘fDwH&l;k:wH&eD¼˜xѰ‘Ѱ’Ò±’Ò±“Ó²“а’{M+lSÿÿÿÿÿÿÿÿÿh7Ôµ–Õ¶—Õ¶˜Õ¶˜Ö·˜Ö¶™×·™Ö¸šº–wˆ];o@j9wI'uUÔµ–ٻټžÚ¼žÚ¼ŸÚ¼ŸÛ½ŸŽdC£…pÿÿÿÿÿÿh7ÜÀ¢ÜÀ£ÝÀ£ÝÀ¤ÝÁ¤ÞÁ¤h7ÿÿÿÿÿÿÿÿÿh7ßħàŧàÅ¨àÆ¨àÆ©àÆ©áÆ©áǪâǫڽ¡¦a€T2o@l<}P.£}]ؽ¡ä˯å˯å̯åͰå̰åͰãÊ­{N,™x`ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿı¤i8Ê­ëÖºìÖºìÖ»ì×»íØ¼íØ¼çе¯n„Y7pAm=ƒX6¯nèÓ¶ïÜÀðÜÀðÜÁðÝÂñÝÂñÞÃе˜i8ı¤ÿÿÿÿÿÿh7óàÅóàÆóáÆóâÇôâÇôâÈõãÉóáÇ»œ~ˆ^=o@h7ìæâ™w`}Q/óáÇøçÍøçÍøèÎùèÎùéÎùéÏá̱£`}Q/n>n>ƒX6¬ŠléÖ¼øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ô½²ã¥‰ã¥‰ä¦Šå§‹æ§Œè©è©éªê¬ë¬í®“í¯“ï°•ñ³—ñ²—ôµšî³—§e‰V3‰U3Y6ŽZ7\9”`=“_=—dA™eC›gD lJŸkH¤pM§sQ¨tR®zW¸’x²^¶‚_¹…b¿‹h¾ŠhÄ‘nÇ”qÉ–sМzÏ›yÕ¡~Ø¥‚Ù¦ƒß¬‰ß¬‰ã¯Œå±ŽäÑÅP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŽjPp@¸’qÅŸ~Å Å Æ ơơǡǡǢ‚Ç¢ƒÇ¢‚È£ƒÈ¤„ɤ„ɤ„ʤ…Ê¥…ɦ†ÀšyrB hMÿÿÿÿÿÿÿÿÿh7ͨŠÌªŠÍ©ŠÍª‹Íª‹Í«ŒÎ¬ŒÎ¬ŒÏ­Î­Ï­ŽÏ®ŽÐ®Ï®Ð¯Ñ¯Ñ¯‘Ѱ‘Ѱ‘ѱ’Ò±’Ò±’Ó²“–lKl<éáÜÿÿÿÿÿÿÿÿÿ«|k:½šzÖ¶—Õ·˜Ö·™Ö¸™Ö·š×¸š×¸š×¹›×¹œØºœØºœÙºÙ»Ù¼žÙ¼žÚ¼žÚ½ŸÚ½Ÿ›sSj:äÛÕÿÿÿÿÿÿÿÿÿh7ÝÁ¢ÝÁ£ÝÁ¤Ý¤Ý¤ÞæÞÃ¥ÞæßĦßħßŨàŨàŨàÅ©àÆ©áÆªáǪâÇ«âÈ«âȫֺœk;ͼ±ÿÿÿÿÿÿh7äË®ä˯å˯ä̰å̰åͱh7ÿÿÿÿÿÿÿÿÿh7çгèгèдèеéѶéÒ¶éÒ¶éÓ¶éÒ·êÓ¸êÓ¸êÔ¸êÔ¹ëÕ¹ëÕºìÕ»ìÖºì×»ì×»í×¼í×¼íØ½îØ½¡|]l<éáÜÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŽjPuF$â̰ôáÇôâÇôãÇõãÈõäÉöäÊöäÊöäÊ÷åÊ÷æË÷åÌ÷æÌøçÍøçÍøèÍøèÎùèÎøèÏéÕºwI'hMÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏzM+ìæâéáÜl<¥‚cøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99׿ج•ج–Ú¬—Ú­—Ú®—Ü®˜Ü®˜Ý¯™Ý°šÞ°šß±œß²œà³â´žâ´žãµ à´ž·—‚¥~d¥~d§e¨f©‚h«„j«„j®‡l¯‡m°‰o³Œq³Œq¶Žu¸‘v¸’v»•{Ã¥½—}Á™€ÂœÆŸ…Æž…Ê£ˆË¤ŠÍ¦ŒÑªÑªÔ­’Ö¯•ׯ•Ú³˜Ú³™Ýµ›Þ·ç×ÎP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿñíê{P1uF$¿›zΫ‹Í«ŒÍ¬ŒÎ«Î¬Î­Ï­ŽÏ­ŽÐ®Ð®Ð¯Ð¯‘ѰѰ‘Ò°‘Ò°’Å£ƒxJ'yM.ðëçÿÿÿÿÿÿÿÿÿh7Ôµ–Ôµ—Õµ—Õ¶—Õ¶˜Õ¶™Ôµ—Ö·™Ö¸š×¸š×¸š×¹›×¹œØ¹œØ»œØ»Ù»Ù»žÚ¼žÚ¼ŸÚ½ŸÚ½ ¨‚ch8¾ª›ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‰cHqAÅ¥‡Þ¤ÞÃ¥Þ¦ßæßĦßħàħßÅ¨àÆ©àÆ¨àÆ©àÆªáǪáǪâȪâÈ«­‰ih8»¥•ÿÿÿÿÿÿÿÿÿÿÿÿh7ä̰å̰æÍ±åͱæÎ±æÎ²æÎ²çϲçϳçϳèдçдèѵèѵèѶéÒ¶éÓ¶êÓ·êÓ·êÔ¸”kKwK,ÿÿÿÿÿÿÿÿÿh7ìÖ»ì×¼ìØ¼íØ¼íØ½îÙ½h7ÿÿÿÿÿÿÿÿÿh7ðÛÀïÛÀðÜÀðÝÁðÝÂðÝÂïÛÀñÞÃòÞÄòÞÄòßÄòßÅóßÅóáÆôàÆôáÆôâÆôâÇôãÈôãÈõãÉõäÊ·˜zi8¾ª›ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿñíê{P1{O-äϵøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏæÒ¸~R1yM.ðëçÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏzM+ìæâÿÿÿ¿ª›i8¶—zøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏîÜÃøèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Õ·ެ”Þ¬”ß­•஖஖㰘㰘䱙峚峚æ´ç´žé¶žê¸ ê¸ íº¢è· ³x¢xZ¢xZ¥z]¦{^¨|`«€cªc®ƒf¯…h±†i¶Šm´Šl¹Žq»t¼’tÁ–yá‹Â˜{Çœ€ËŸ‚Ϥ‡Î£†Ô©ŒÖ«ŽØ¬Ý³•ݲ•á¶šäºåºžé¾¡ê¾¡ìÁ¥îæç×ËP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëäà}S5p@³oÖ¶˜Ö·™×·™×·šÖ¸š×¹šØ¹šØ¹›ØºœØºœÙ»œØ»Ù»žÙ¼žº—xrC zO1èàÛÿÿÿÿÿÿÿÿÿÿÿÿh7Ý¿¢ÝÀ£ÝÁ£ÝÁ¤ÞÂ¥Þ¤Œa@Ù¼žÞæßĦßĦßŧàŨàŨáÅ©áÆ©àǪáǪáȪáÈ«áÆ© zZh8ª{ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôðí‡`Dn>¸˜xæÍ±æÏ²çϲçϳçÏ´çдçдèѵéÒµèѵèÒ¶éÓ¶êÓ·èѵ¢|]i8ª{ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7íØ¼ìØ½íØ½îÙ¾îÙ½îھȬŽîÚ¿îÛ¿ïÛÀïÜÁðÜÁðÜÁðÝÁñÝÂñÝÃñÞÂòÞÄòÞÄ­‹mh7ͼ±ÿÿÿÿÿÿÿÿÿh7ôâÈõâÈõãÈõãÉõäÉöäÊh7ÿÿÿÿÿÿÿÿÿh7÷çÍ÷çÍøèÍøçÎøèÎøéÏ”mLñàÆøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏöæÍªˆji8ª{ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëäà}S5sD"˱•øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏ϶šuG%zO1èàÛÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏôãÊøèÏøèÏøèÏøèÏzM+ìæâÿÿÿÿÿÿ­’i8¨…göåÌøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏïÝÈ_>øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ô¾³ç©ç©éªê¬ê¬í®“í®“ï°”ð²–ð²–óµ™ôµšõ·›øºžøºžû½¡õºŸ«„j’_<’^<—c@˜dAšfDŸkHžjG£pM¥rO§tQ®zW¬yV²\¶‚`·ƒa¾ŠgÁ›ÀmÇ“pË—tÒž{Ñzؤ‚Û¨…Þª‡æ²ä±Žë·•ï»™ð¼šöàöàúǤûȦèÖÊP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôðí—u]h8ŒbAȨŠÞÃ¥ÞæßħßħßŨàŨàŨáÅ©àÆªàÆªÌ­fEh8“oVñíêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7äÌ®ä̯å̰å̰æÍ±æÍ²h7zL*Á¢…çϲçϳèϳçдèѵèѵèÒµéÒ¶éÓ·êÒ·Ç©‹S2j9º£“ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžih7ŽeDÔ»ïÚ¿ïÛÀïÛÀðÜÀðÛÁðÜÁñÜÁðÝÂñÝÃñÞÃÉ­S1j:¼¦—ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7ôãÈõãÉõãÉöäÊõåÊöåÊj9¬ŠlóáÆ÷çÌøçÌøçÍøçÍøèÎøèÎùéÏøèÏíÚÀœwWh7³›‰ÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7|P.ε™øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏѸœ‚W6j9º£“ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôðí—u]i8•nNÝÇ­øèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏßɯ—qRi8“oVñíêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèϱ‘søèÏøèÏøèÏøèÏzM+ìæâÿÿÿÿÿÿÿÿÿ¼¦—j:V4϶šøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏøèÏѸœ{O-h7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Õ¿³ë¬‘묑쮒ñ²—ñ²—ó´™õ·›õ·›øºžùºŸû¼¡þÀ¤ý¿£ÿç÷¿¤¯‡m™eC™eCžjHŸkI¢nK§sP¦sP¬xV®{X±}Z¸„a¶‚`½‰fÁjÂŽlÉ–sÇ¡‡ÊšwÓ }ؤ߫‰Þªˆæ²ê¶“츖ôÁžó¿úƤü˨ýÌ©ÿÒ¯ÿÒ°ÿÖ³þصéÙÍP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÁ¶„\?h8ƒX6«‡hÉ«ÜÂ¥åͰä̰ÛÂ¥É¬Ž­‰j…Z8i8‚Z=ͽ²ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7æÐ´æÑµçѵçѵçѶèÒ·h7”qXh7S2®ŒmÏ´—äͲîÙ¾íØ½äͱγ–¬ŠkS2h7‘mTäÛÕÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÔǽ…]Ai8‡]<µ•wÖ¾¡ëÙ½öåÊôãÈéÕºÒ¹œ®n}Q0h7”rYæÞØÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7m=wI'¯Žp×À¤îÜÃ÷çÎõäËæÒ¸Ë±•¡}^o?tG&É·ªÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿh7òàÇòàÇòàÇòàÇòàÇòàÇh7”qXh7V4³“uÖ¾¢ìÙ¿öåÌõäËê×½Ó»Ÿ°q€U4h7‘mTäÛÕÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÁ¶„\?i8‡]<´•wÖ¾¢ìÙ¿õåËõäËê×½Õ½¢µ•xˆ_>i8‚Z=ͽ²ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏk;Õ½¢øèÏøèÏøèÏzM+ìæâÿÿÿÿÿÿÿÿÿÿÿÿåÜÖ“oVh7S2¯ŽpÓºŸéÖ¼õäË÷çÎíÛÁÙ§¸™{†\µ•xæÒ¸öæÍzM+ìæâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿçßÙ´œ‹kQwK,l<i9i9i9sF&‰bG¬}ßÕÍÿÿÿo@o@o@o@o@o@o@o@ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ö¿´í¯“í¯“ï±•ñ²—ñ³—ô¶šô¶šö¸œùºŸùºŸü¾¢ü¾£þÀ¥ÿĨÿèÿȬ÷豉pžkHžkH¤pM¥qN¨tQ­yW­yV³\µ‚_¸„a¿‹i¾ŠgÅ‘nÉ•rÊ—tÒž|̦ŒÔ¡Ý©†á­‹éµ“è´‘ð½šôÀöàýË©üʧÿÑ®ÿÕ³ÿÖ´ÿݺÿݺÿá¾þâ¿éÜÏP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ®”‚zO1j9j9j9ìæâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ÖÀ´ð²–ð²–ó´˜ô¶šõ¶›ø¹žø¹žú¼ ý¾£ü¾£ÿ§ÿçÿÅ©ÿÉ­ÿÈ­ÿͱ÷É­³s¤qN¤pNªvT«xU¯{X´^´€]º‡d½‰fÀŒiÇ”qÆ’pÍšwÒž{Ô }ܨ…Ñ«‘ܪˆç³ë¸•ôÀò¿œúÇ¥ü˨þΫÿÖ´ÿÕ³ÿܺÿá¾ÿâ¿ÿèÅÿèÅÿëÉþíÊéÝÑP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ÖÀ´ð²–ð²–ò´˜ôµšô¶š÷¹÷¹ú» ü¾¢ü¾¢ÿ¦ÿ§ÿÅ©ÿÈ­ÿȬÿ̱÷Ȭ³s¤pM¤pM©vS«wT®zW´€]³\º†c¼ˆf¿‹hÇ“pÅ‘oÌ™vÑ{ÓŸ|Û§„Ѫ‘Û©ˆæ²ê¶”ó¿œñ¾›úƤüʧþͪÿÕ³ÿÔ±ÿÛ¸ÿß½ÿà¾ÿçÄÿçÄÿëÈþìÉéÝÑP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99×Áµô¶šô¶šö¸œøºžùºŸü¾¢ü¾¢þÀ¥ÿèÿèÿǬÿÈ­ÿ˯ÿϳÿγÿÓ¸÷γ·‘v«xU«xU²~[³\¶ƒ`½‰f¼ˆeÃlÆ’oÉ•rÑ{Ïœyפܨ†Þª‡æ²×±—æ³’ò¾›öàýË©ýʧÿÓ°ÿ×´ÿÚ·ÿâ¿ÿá¾ÿèÅÿìÉÿíÊÿóÐÿóÐÿöÓþ÷ÔéàÓP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99×Á¶õ·›õ¶›ø¹ù»Ÿú¼ ý¿¤ý¿£þ¦ÿÅ©ÿÄ©ÿÉ­ÿÊ®ÿ̱ÿѵÿдÿÕº÷ϵ¸‘x­zW­zW´€]µ^¹…b¿‹i¾ŠhÅ’oÈ•r˘uÔ }Òž{Ú¦„ß«ˆá­Šéµ“Ù²˜é¶•õÁžùÆ£þάþͪÿÖ³ÿÚ·ÿݺÿåÂÿäÁÿëÈÿïÌÿðÍÿöÓÿöÓÿùÖþù×éàÔP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ØÁ¶÷¹÷¹ú» û½¡ü¾¢ÿÁ¦ÿÁ¦ÿÄ©ÿǬÿǬÿ̰ÿͱÿÏ´ÿÔ¸ÿÓ¸ÿؽ÷Ò¸º”y±}[±}[¸„a¹…b½‰fÃmÂlÊ–sÍ™wМzÙ¥‚ף߫‰ä°Žæ²î»˜Ü¶›ì¼™úǤýË©ÿÔ±ÿÓ°ÿܹÿß½ÿâÀÿëÈÿéÇÿðÍÿôÑÿõÒÿúØÿúØÿýÚþýÛéáÕP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ù¶û½¡û½¡þÀ¤ÿÁ¦ÿ§ÿÆ«ÿƪÿÉ®ÿ̱ÿ̱ÿѶÿÒ·ÿÕ¹ÿÚ¾ÿÙ¾ÿßÃ÷Ù½½—}¸…b¸„a¿ŒiÀjÅ‘n˘uÊ—tÓŸ|Ö¢Ù¥‚â®‹à¬Šèµ’íº—ï¼™øÄ¢áº òâÿЮÿÕ²ÿÞ»ÿݺÿåÃÿéÆÿìÉÿôÑÿóÐÿùÖÿüÚÿýÛÿÿßÿÿßÿÿâþþâéá×P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7øèÏøèÏøèÏøèÏøèÏøèÏh7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ù¶û¼¡ú¼ ý¿£þÁ¥ÿ¦ÿƪÿŪÿÉ­ÿ̰ÿ̰ÿѵÿѶÿÔ¹ÿÙ½ÿؽÿÞÂ÷ؼ½—}·ƒa·ƒa¾‹h¿ŒiÄmÊ—tÉ–sÑž{Õ¡~ؤ୊߫ˆç³‘칖÷àຠò¡þϬÿÔ±ÿܺÿÛ¸ÿäÁÿèÅÿëÈÿóÐÿñÏÿøÕÿûÙÿüÚÿÿÞÿÿßÿÿáþþáéá×P/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿh7h7h7h7h7h7h7h7ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ù¶þÁ¥þÀ¥ÿèÿƪÿÆ«ÿ˯ÿ˯ÿβÿѶÿѶÿ×»ÿ×¼ÿÚ¿ÿàÄÿßÃÿåÉ÷ÞÃÀš€¿‹h¾‹hÆ’oÈ”q̘uÓŸ|Òž{Ú¦ƒÝª‡à­Šê¶“è´‘ð½šöŸ÷Ä¡þͪ俥óʪÿضÿݺÿæÃÿåÂÿíÊÿñÎÿóÐÿûØÿú×ÿþÝÿÿàÿÿàÿÿåÿÿåÿÿæþþæéáØP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ú÷ÿ§ÿ¦ÿƪÿȬÿÈ­ÿͱÿͱÿеÿÔ¸ÿÔ¸ÿÙ¾ÿÚ¾ÿÝÂÿâÇÿâÆÿèÌ÷áÆÂœ‚ÂŽkÂŽkÉ•sË—tÏ›yÖ£€Õ¢Þª‡á­Šä°Žíº—븕ôÀžùÆ£ûÇ¥ÿЮäÀ§óάÿܹÿá¾ÿéÆÿèÅÿðÎÿôÑÿöÔÿýÛÿüÚÿÿßÿÿâÿÿãÿÿæÿÿæÿÿèþþçéáØP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99Ú÷ÿĨÿĨÿÇ«ÿÉ®ÿʯÿϳÿϳÿÒ·ÿÖºÿÖºÿÛÀÿÜÁÿßÄÿåÉÿäÈÿêÎ÷âÈÞƒÄnÄn̘vÍ™wÒž{Ù¥ƒØ¥‚à­Šä°ç³ð½šî»˜÷áüɦýʨÿÓ±å©óÑ®ÿß¼ÿäÁÿìÉÿëÈÿóÐÿöÔÿùÖÿþÝÿþÜÿÿáÿÿäÿÿäÿÿèÿÿèÿÿéþþèéáØP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ÚĸÿÉ®ÿÈ­ÿ̰ÿϳÿÏ´ÿÔ¹ÿÔ¹ÿؼÿÜÀÿÜÀÿâÆÿâÇÿæÊÿëÐÿëÏÿñÖ÷éÎÇ¡‡Ì˜v̘vÔ Õ¡€Ú¦ƒá®‹à¬Šéµ’츖9ùÅ¢÷àþÌ©ÿÑ®ÿÒ°ÿÛ¸åÇ­ó×¶ÿçÄÿëÈÿóÐÿòÏÿùÖÿüÙÿþÜÿÿâÿÿáÿÿåÿÿèÿÿèÿÿêÿÿêÿÿêþþééáØP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ÚĸÿÈ­ÿȬÿ˰ÿβÿϳÿÓ¸ÿÓ¸ÿ×»ÿÛ¿ÿÛ¿ÿáÅÿâÆÿåÉÿêÏÿêÎÿðÕ÷èÍÇ¡‡Ë—uË—uÓŸ}Ԡإ‚ଊ߫ˆè´‘뷔÷Ä¡öŸý˨ÿЭÿÒ¯ÿÚ·åÆ­óÖµÿæÃÿêÇÿòÏÿñÎÿøÖÿûÙÿýÛÿÿáÿÿàÿÿåÿÿçÿÿèÿÿêÿÿêÿÿêþþééáØP/!9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“99ͽµßĵßõßŶ߯¶ßÆ·ßȹßȹßȺßÊ»ßÊ»ß̽ß̽ß;ßÏÀßÏÀßÑÂÜÏÀл¬Ï´£Ï´£Ò·¦Ó¸§Ó¹¨Ö»ªÖ»ªÙ¾­Ú¿®ÚÀ¯ÞñݱßÅ´ßǶßȶßʹÛȺÜʹßμßϽßÑÀßÑÀßÓÂßÔÃßÕÃßÕÅßÕÅßÕÆßÕÇßÕÇßÕÈßÕÈßÕÈßÕÇÜÕÎM,9|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“9999999999999999999999999999999999999999999999999999999999|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªš“9999999999999999999999999999999999999999999999999999999999|cYÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÓШ˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘¨˜‘Æ»¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿOpenLP-2.4/resources/images/media_playback_next.png0000644000175000017500000000077212657640340021527 0ustar raoulraoul‰PNG  IHDRµú7êsBITUìF pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<yIDATÁAKSðÿ;õ O}J†wWQ5 Š*å¬*¢øš§£ŸñB;…³ üp d %ä9Pƒªº ªæo3SŠð—M¸˜2÷ðDG‚¾b°&$Í„ë<¡n­ßº¸®Ë÷Ã3¼Ä!ùe‚¡_¢‹)é(æâ&%ŠSÒ$ÆP ’|‚¿$î777üxñ+ó|Læ{šßÎFüñgÊ$ž’&…ªÂÀ²MòBàfZë[ʲä÷³k^Ƽ»PQëŠiYóòÒ •¦Õ¥PN˲N†„eyo¢RŠÎÂ{¸o"«FÖ9cSáÎ *ÙÄiµ¨ëÓ41M“nk¥Ô- MÓhyy9è÷û´Z-®M×ÅÓåƒÃ0(Šâ.@RJ²L³¸¸H–e‘ØÝÝ}²´´ô¬×ëùüÅq|}zzú™ø¹±³³óM†_(¥8??ÿv{{ûËÛ ¼®×[[[ﯯ¯mÆc×u;ãñ)%Žã`ÛvbšæO'''_mnn¾˜íXÿ„aøa§ÓùØ÷ý†Öšn·‹Û¶ÑZ·£(úH)õxñ¯Â÷ýkkkWVVÞ^]]í:Ž#ŽG‡‡‡ŒF£! g Úž_Ɔ,ñIEND®B`‚OpenLP-2.4/resources/images/clear_shortcut.png0000644000175000017500000000120412657640340020554 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<5PLTEÿÿÿ:B:,2, =><=>;ccc01/$%$   !"!"""''&/0.111231777:::=>;???AAAAB?DECEEEGGGJJJJKHKKKMNKNNNNOMPPPSSSTTTVVUVWTXYVYYY[[[ddcdfbfhdhhhjjjjkgqqquuuyyyzzz„„„†††ŠŠŠŸŸŸ¬¬¬®®®²²±·¸·ÁÁÁÄÅÄÆÆÆÏÐÏÔÔÔÞÞÞáááçççéééêêêíííðððóóóôôôúúúûûûüüüuJ÷ªtRNS..??TTee¸ÊÊÔåååððøøýý ©¬šIDATÁÀŸmÛ¶mÛv[{ÿ#„=@ï5ü‰. SøbÊêãA¿7ì´}ø`+Š3bRó¢o\Uª¶ÜyÉÙð5ÑL²tx<É[!b ñGBÁà”$ŸSS €§¶Xm‰Ãõt=æt:¼q”ýö¼)¯Ï;—,¹#¾ÌÇ*«FÀ€/†Ô›®6»­jÖ Mh¦ˆñÛ \r½+/IEND®B`‚OpenLP-2.4/resources/images/song_usage_active.png0000644000175000017500000000136512657640340021230 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<rIDATxÚu“MHTQÇçùÆç(ŽŸ„̸R)RHr2hQ»¢MÑ®…Õ¢UÛ\–X« m«Q‹VA!«ö~` ûÀŒB§QuÔ™yïÍ{÷ä㉄¸ÜÅ9çǽ眿¨*õ²îX§á–ZŒ (,ˆa·—æ…ùBrF¬Ä9¹2ÝÿxìÒÍÆÁÌ éö^òÛ+,æyõéµÿ=ÿãAmFŸêg5‡€¨Ø‘÷®ÜÍ]½†m bB,UjÊÛ™w<ûð|:˜ÓËÄhÈÊø Ws‡Î³U˃¡P1åJùÜy?<±£?7529Ô×G±¶Šb"j ‰‚104ÐÇÔ “ûµSÑkÇRí8»ºFƒï‚6T7£# ÐÜ­$Ûb€°+%R]8A1[„lS«òµ4Kò”‹°ùSÀ"Vº”–ް¼÷dJ‘uÉÚÀ°ãÀje‰`§Jwû V—o°@¶– “U6ËëÜUœ@¶ølì¶Ëk6› Ê l»Bb5Üj…Àù×`Xð\r-Â0 Ñ»ÃÆ¼yAfH C@ãFzU@Y°T™u÷„Ð=hR[¤³J²’UÚÒ ~]¨–5ÌŠÜ–hŒó™uR=`µ€48 À h ÔS†?°²(žëqÖŠvÛ÷™(æ…ê6„0.h%N6{wÂr<Þâ/Á÷˜ˆj¬rk'¹®´ÒÜ M`Ù€Ä6T¶ ø[Ø-2];XåÿÌd'x”êĉæì4ǯî®P*â>ëÍt¬ÅbD­ØÎbXÐcìüøD\ßî IEND®B`‚OpenLP-2.4/resources/images/projector_disconnect_tiled.png0000644000175000017500000000162212657640340023140 0ustar raoulraoul‰PNG  IHDR(-SRPLTE[[[¯¯¯ÿÿÿ€€€'''±±±$$$¤¤¤"""ˆˆˆ™™™777}}}qqq:::444vvv[[[¯¯¯~~~£££???„„„<<<€€€AAA„„„qqqKKK„„„LLLsssœœœÂÂÂXXXqqq¬¬¬ÑÑÑÏÏÏ[[[¯¯¯ŠŠŠ®®®™™™ºººÄÀÀËÏËDDD………˜˜˜™™™ššš¶¶¶¸¸¸¹¹¹¹¹¹gggyyy„„„žžžIII[[[fff}}}ŒŒŒ£££§§§«««¯¯¯ÃÃÃ+++111666777999;;;<<<@@@BBBDDDEEEFFFJJJNNNOOOQQQSSSTTTWWWYVD_\JeaEfffggghhhifTjfJjjjmmmnnnqqqro]wsWxxxyyy|||}}}~xU€‚€‚‚‚ƒ‚‚…e………†††‡¯ìˆˆˆ‰‰‰ŠŠŠ‹‹‹‹Ô‹ŽŽŽ’’’”””•Y–––———›››Äÿ   ¡ç¡§§§¬¬¬¯¯¯²²²³³³´´´µµµ···»»»¾¾¾À×ÀÁÁÁÂÌÐÇÇÇÇàÇÈÈÈÉËÔÍÍÍÎÎÎÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕ×××ØØØÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞÞíñßÏÏßßßàààáááâââãããäääåååæææççççëõèØØéééêêêëëëì¼¼ìììíííîîîðððòòòôôôõõõöööùùùúúúüýÿþÐÐÿÿÿ±Ø¤×tRNS@æØfbKGDˆH pHYsvv}Õ‚ÌtIMEÞ '6È´«¶¹IDATÓc`ƒeÛwíÞµ–îîOÝ»I`‰÷6 šÛà‹Â·íÞw`ÏN¸Àüð­`5» j4f¯ÚV³¬ÆzòŠÃ k€j€¤Â²{ßLM†e@5Á¡›€- 9Ó&·ªÉ*NYËÀ ÜY;­bßšÕ«W/g`sÒ«Ý·Ï`YÇÄ9 À ãÈ`RÚ`Y±oær¸#ì õº÷í«Ñ€ñ3$L:ºÌ|Â`ïäjŠÌª¬ïM³¡öÒkIEND®B`‚OpenLP-2.4/resources/images/tools_alert.png0000644000175000017500000000137212657640340020070 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<wIDAT8Q]HSa~¾'Å8²òçܦΙ^‡LÜ  ./ O!´º Ž]„y7ª …ð¢Â È›¨ »1ÁÑM--7›º¹µÎÎæ™žsÞ.ÜS xùø¾ïyÞŸçeD„`Œ1 <ù§o"´™ˆv€Ö@ 0!ËrB–åD ˜Ðº'w±EÅaÃÐuå÷B&›Z̆¡‹¢8 Àòßy±hhUËFHY%åÇ8i+”X ­vvmÚ1/I’X]ç®UW^BWW¡«QäÖ¦p¸Æ])I’€/ñ«P™1«ÕÚ=ÿùãÓþCY¸ñ7Áq®œÑ`i¼†„Â/Ûm}æŠZ1›ÍüÐÐÐ(QlÖG+Ó­äõz©««‹¢SNŠÍz‰ˆH’¤øÀn·÷D—¿/ç(2 ŠL‚\.¹\®â]ÏP4ü倅â&èíí­ôûý}uõÍõéÐ=€qÛ†ð{2ùé24%Tø:Rðu¤JÖ¤g¢¶}—e9 ç˜Çãñ½›~û¨ÖnŠÏö”oÜÝ>Þ.Ýuu÷ âÙú¥gËESUUÕQ‡³±)~•Å>¡„Ÿëv‡Û)±2UUs†ah÷à–Z~H-綈Ÿíojæ2Û%•ˆ¬†ahÐ222ò$•JÅhŸH§Óɱ±±Ž0 € @€åÌÊpù åc @À<€¥¿¾’%î'a^IEND®B`‚OpenLP-2.4/resources/images/media_playback_start.png0000644000175000017500000000076512657640340021710 0ustar raoulraoul‰PNG  IHDRµú7êsBITUìF pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<tIDATÁAKSðÿ;õêÚ¡}„.]Ù•™ˆ|ñ½{¿{ßwÍ4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3Í4ÓL3ÍvžmUÕ.Í4Ë=à *ß')î?Ih’¯5€ÑLŽ-ú.Âx®ôo¢m䎇¨¸¹)ã9ë_ªb›dÁF3Í4àP1°^¯?8™÷YKL’ @½Vó7ȼÖE3 8Tx r7<ó/ëAT¾&I‚ˆZ°ˆ!æ‘è5ëoJ £Ö[ÑL³ b Pò Xã_ñóÈkÙ@ô…f¢Ï33›‰Îdg0‚3 g0‚èà ÂBá@8yŸ€DŸ T((<((¥T¥P*€†BÂA*„B‚¡ åA~? û4ìöƒ÷‡¢`ÀÇ<ÆóØå†*x.h¶ã€#PÈ‚ø¡ý«#ú31•}a!ôùùD——ΔGt&38£ „ã2uzæùÌ9*‚Êü>Êû¼{½4ìvÓ€ÍMà ˆ„Eÿò2€“P4 Ñ,'C-PÈBüƒpbª*æLå¥0}~á8èÝÌ0Ç¡´¤eqÂçë+/-B~ž ½ƒ&£½F£F£F½ƒ>â„Dï·P(Œ`8Œ`0y}„B!Cax}¬9\ñ» k·ä=^€…ç7@%ìu#ät ›,NP!ñƒ.h–“ÀÁâ8" ±b(* æê2b()!†Âbèò ˆ./_Îs¨,/Es} šê«£4ÕU£¹¡u5^ÂÆŽ2|#"ã/­¿æ„Ã<‚ሧaÐë ×q0èu²ŸUkažÇ²³ó˘YXÁÌü2fV"Ïç–a±Ùe=Êû¼à}r;iÈá þ•5ry„D1¨Èq(r\‰fše 8t2¼D¬Gaˆù×ÀHLåÅ\^C51•UCq8£Q<8Ç´4Ö¡§£½-èélAkc=šê«‘g6*/‚Ýå‡Ãã‡Ãí‡Ýí‡Ýå‡ÝåƒÃí‡ÓãG0ÌG€!Ä#´þo(Œ`8òZb&fJ£w( ãôúˆè7žs0õ(.4£¸ %…&˜Q\hFI%Ey()Œ¼.+ÊÇÉ£?ÄÌü &g0<:£ÓÆÔÜbt¿D&ƒ4ä\£µUÁ7¿B6'€`ô±"!‘G"Ç—h@¢YÖ#zˆ= #1r5ÄX^I %eЙ̱•¢§£=­èélAOG ºÚšŸgb~±ÓãǪ‹VV]X\uÁæôÁáòcÍíG(Ž^òÑžÆßq¯é$l@£OÙÀ!7.(]ÿ‹ì¸ €NÏ¡¾²5¥hª)Ccm)kÊÐT[†â³ì ÷ùx41‹á(<Âðè4ìNwü†|ÀOCŽ5´­ ž¹erºc@D쑨 m4Ñ,£ÀQ% #Ñü¦jÎT^cIÑååÇ~°¬¤'÷ãä‘~œÀ¥(\½5 ¯/ $”†=.tب߲"xgW „|ÑGP"‚"𥆿O}Œúºqòðà–%Á=9Mý[DÄžˆ8+£ˆ©…'FÓ½)EÄdü82À%CL"*Ú^€éž{€X˜oÆÇ÷ã¹sƒ8¸o³gz~?xõ=¼üêLÍ.Åð!n'õ­ÌóÎá ð·È ‰¸ÖÂ;Ív±éÚŽ}qHâ@¤i4Ý2²#ʲ ”Ê q©|_&©‡±?TÝþS¹qhâ㠆™\À«ïÞÀkïß„ÓíCuE šë«pòH~ó³Ãã À ×cz~LÄTV¥+lo'†âBíAÐP¬|‚X@ Øyâך¥ *o\š¡û—fD²Š1Yù<•y—Ê nr€&!fÛ»=~Ü|0‰—_ûWóh¨­@[S-ž>{¿õ¹£o_¬kNÌ.®rÄXRƵµciBÎ „ Á¦œ§ˆYº3S‹fs_ä†Nó;è6ž¯T@{ÅêÀåðW/atjF½Í UèéhƧ?þ†ÀŠÕŽÉÙ%ŽŠK¹Â¶6b*+AØï_ØUÕÐdÏ•qŠ©Ê»‚æÌM‘ѯ¢Ûìm%øÍÐù¢AÀÔü Þºt?|ã Öœn´7ס³µŸ|î,ž:›Ý…ñé}a WÐÒÊ™+ËhØïâe åt`5Û‡Z` 2qµŒûœÈݦiŽ#h™œþ·˜·¡ÙÍŸ÷C¸32—_»ŒU›í͵ho®Ã'Ο‹çOÃíöbdržP]~WØÒ™«+(ï #ìA xh²ëƒ¦y?Ðd¯pâ¦3Ž8}šÐÅe+Ò:ÙqR4š!@Jæó/`x|/¿vóKV´6Ö ½©Ï?q¿ü±Ç1<6Cb.ä šZ8sm%„ @Ã.!†a‘¨ˆìcWÆø²û˜lÈ¥@h¦ t’Ró@¤ô~¦2E¬ó52µ€¼v³Khª«B{s-Ο=ŠÏ¾ø(¥AÆ® ±™Ë«« Srò"Ñcw†*»8ÆW7wÒЙ4%Ϫ‡Êxh“sËøá—1<>‹úêrt´Ôaèä >ÿÉóÐëuBPÐçsù \~C-ÐàZˆ¾h ²»€#K|A.Åø)lL³|¼Yõ¶²h3‹«xåí+¸y5•¥èl©Ç™ãñ¥_yùy& NÃ"y\^m—ßPGyOavúV _vp|a(™¹I½û¬0ŽŠ‚%ÕûC³Ïdg¬m÷¶2ìE.®Øðê…køðæCT”¡«­îïúy”`xtÞ 5sMÍÄPRHý/(¯y»8h’W­:·W'“‘qâJÍ!)Ok|š¡qrÍÛ¢iŽó‡«¯¿w®ÜEIQ>ºÚpìP¾ðËÏ âöýq}Q©®°¥à@Ö´² G¿0”Ö䚌J¢¸|«o|šRȦrœf踲Š®ÜfwáíË·ðæû7P\˜ý]-:9ˆg?ŽáÑi,¬Øõœ¹º–Ë««¦!§¼OÀfᘖ}Ù‘¡Jš1¾–QIÐh†nüŒW€Úîrão㣻#ØßÙ‚}Møì‹O¢¾¶×n?„?ÌåsÍÍÄP˜Oý+@Pâ>4Û)ÇV”;oKŒ¯ÆÉIcÆÍü[›QQãÉ$Z.­ØðÃ7.Áã à`o;÷wás/=»Ó{#S„JÊt…-M€ ÐàZòä©(¹ 4Cuzwùnͨl˾t+€F)ŇøÙ;WQ[Y†ý]-xæÜ1 Àá XÖÜ.¯¶ž3WWÐÃÞOeD[¶Ÿ[À‘D‰xîù¶eT¶8uœUФüÚmN{¼~¼uéî<œDÿ¾Vôt6ã_}òi”áú‡ †® ¹…èóMÔ¿â(+ûB5ï#—C•WU¼ÊÕW*Òd¶W*í¦é¢R$ é.´L•ºÇn>·´Š¾vÁ0ÞvèÁ§?ñ–-6<Ÿãˆ±¬‚+hn„ Ñ#¬y9­)G6bülæv‹÷¤h;)£’Œñ¼€÷FñÚ»×ÐTWÞ®|ì©“81°7ï`Íå7rùõœ©²ŒmAÍÓÈIàÐÄ{¶è¶R¼GÕ8Û)ry¼xíÂUŒLÌá`O;úº[ñ…O=“Ɉëw'æ"® ¥ < Xý"ïCós¯ÝÃ4qM„˜ÐEó:r"TQs!äŒxv˜xÝò7›N}¦HqÖ0#“sxóâu öuaW+>óⓘ_Á£‰9Ž3W×rƲ"Á·à(ÑB—íM¼GõûÙ#·W¼‡f†íÍøç#Í£.¡¤¨ƒ}]øØS'QSYŽ÷¯ÜÏåsM 4h×B—m÷84ñž-žqs½Ô<…ÌL’sœ\¼zã3ó8}¤GîÃ3çŽáÒGw±æ ¹‚¦&"ÐÀªO ]¶84ñžŒ€]–ÓÐ[;û'¹j8 @Kzœ( Ï,àÍ÷®a°¿ ½]-øô'žÄÂò*†Çf9Î\UËËŠߢc³3¥ºl‰ÇAUÿø9*Þ³ƒKͳêmeɋ܎óâtyð“7/¡¤8º<ÿÄch¨­Â{ÞOòŠ#Y‡¼—×nï­ UÌ9-Þ“Ž›Ÿ KÇsÛ‰â=ÛåEò‚€÷¯ÞÆøôNíÇáþn<÷Ä |pýl¿‘+hl"„£¢Ð…fº4SŽL_U{\¼'…ãÝ­¥æ²{—ÂXãÓ x㽫ìïFOG3>ó‰'±d±áþÈ4GÌU5œ©¼Dð-9@…XÐÐ$#ÀqT84ñ†¿E34N&ög¯‰1Þwº=xåÍ‹(.ÌÇ`_7ž:Ž–†¼wå6Â0qùM 4äp!ì ÇÕ¸L‡&Þ³µ3n.eTbß—-5OדIaTZ$ërcSs8}ì úºð“áÃë÷aux\^}# ¹"ðÐ@#uà©ÕÄ{¶4iŽWކ¢¬¢¿ñ™y¼ñÞUîëÆ¾Žf|æÅ'121‹±é%—WW! Á5?84I8^üÌï-¯yUˆ÷¨[«¢eT°ãÅ{hŽœ—T<7§ËƒWÞx¥ÅE8´¿ ú–-k¸ûhŠãÌÕu „§UÃóÐÀ#àø—¿þË¡0O12gS÷»kâ=ɹỂþ}í8wâ ^»pþ—ÏåÕ×PßÒhˆ×À#Eà  „ ¿½ õ•E¸5á=Ôäß·_¼'7—†§¼ùïÉÈ×&ØxÍáÂëï~ˆ3ÇaWž}ü8Þxï\>ÞL êëh`ÕÞÏ#²JN+S0Néí¯Ç|ù ªJóS¼ª¶Z¼šxÏÌþÙïɶ¹l±áK_ù?qûÁ:ZêñÊßýöµ7èò ôÕ§ÏsU€LôØlŽ­™’Çk%…&œ=ÔˆÉ%Vbx­Ô<Éqv”xÏÎ E“]ØñêÛ—±¯³ýûÚñÒ³gpåæp¤!v^C=Â/ 9c«L-tI8ÀdÐáôFCŒ×.|ˆúšJêëÆ'Ÿ;‹û#SEõ¼ÚzÐp€×|"ðÐÂpáµuÞã@G5ê* q{la>3h¡•šçç–ƒâ=êBÔŠPAÀÛ¯Ál6áøÀ~|âü)Ì-Zð`t†ãòjêÂÓÀª; š×‘ p¬[Su1»jq{l^HyŽÓJÍ·ÏÛÚEâ=ÉznɆ`\¿ׇ3ÇðÜÐqxý|tçáÌ•5B~\óF?Ìkà‘"p@i¡g5abÁ‹Ý«r Þñž ðšxÏÞô"oßÁôžœX'Lk©ßbïiœGšÀ±n-µ%ì®Å­Ñå ÞC˨dÐr]¼‡}Àæsý@» b¶!1Û€=!ˆ¾}¾ù~ìÄF¢ƒ¬o¿±ÍÆkñ÷ŒNÌÀãõáì‰A<ÿÄ \þèVìz’WSC½ « ¡ð^ àH&La½_VdƹfŒÏ¯aÕáùѱqÁ æ9‰öWµh;$øŒêm|&©m’<.ÉXª‹ˆn0HoÉM³Å߸±7!c\Ñvâ¢q׿/Û¡h:žUŠÞ~0³Éˆã}xá‰xëýë°:|F’WS%xg- ¿—9Œ˜zœhÇÂØ¬ ZF%‰Í³(ÞCD •ÐN“m*ÚTf\ÊÜGŠ®ßACmúöáÙÇãgo—7sæêrÁ3c¨°W=”€Ci[Ž v×¢º¬·F—A B£³^ôÿdã•òëÍwb^S™qâÞ'17 aŒ¸¿è>n¾¿OIŒ½qÙã¨öøý‰¥÷öˆxOÆæÑÞýà:öw·£¿§Ož>‚¿q)²0ÎT^$xf¬ˆ¤hcÁ{@2ëÖZWŠ®Ü]†/¦Þc+NiN‹÷¬ÏŠÌÙ”Ê̸T&TY'äãõødóýP% ì8Q ÎÈ8âÏÑÆ!ò¡¥¿¸x Çû±¿« §ŽôáG¯¿0ÌEÄPd¦Þù5†×±·#Ýð¥¼8çZ06gƒ%Ê{ÄM‡JÓ'¢=È•>“ìóíþ|º¢;²b"™ïQÁìÂŒŠœ…yo½wŸ:ŠýÝm8ØÛWÞ¼ª+*%œ‘£þe¤iZºë#ü†,ïaÒãÜ`+ܾ Æbô=rA¼'–ùg}P"eŤÄ —CôJï+MÐ ´©ÌvTÄ7Ð ¾@̰=)çIAÄ7È#ö¤’ϨÈzh BÔ@ ˆw.]Ã3C'q §mMuøù;W@Œ¥• GKÓù½Âwd 8ñ‡÷Õ¡ª´·G!PšbF…H2™bþ5ñž Í“["¼¤N¼'•2¥q<^/.]½‰ž:‹¾Nà·À™*ª!}ÑÒô=A–n p¬[[}vÖâÖ£Eø‚!é¶`œTLF®OzQ6T†¤Iˆ$ñ(» •ÏVd6 MTâæÌ ¨IÅŠ–•Ò•äX—*yN =©Í÷)ãýÍýUȺ¤[ "Sdw¸píö}¼ðÔYœìQO¯ªAØí¢!—/êyìêu-IGº SQ’3­µÂj÷ʆ‰¦®äÄ{äù€¬Š÷$$Ö©úIZïIîв´°Oìé®X¬›ÀóOœÆÙ‡°´b‹öm©©¥Á5›¨4}W¦²À‘MÞ#ϤÇロpz˜X°¥ŸÇÛ†ÊÌøTaÖIÌo°foÙ0)&­*ŸÅ¬¾8ž†èÿ±Ù‚Ø•xVñUöЈڌN*…oD¹¨L…'£È ©ô\XI¡8Že3óK˜[\ÁSgŽã©³G0<:±é%1UU žé%P!¼›9¬‡"ïÁé©Gyq~„÷hæ'KM¼é7–JV¼ 23é‰÷Äh¥Ê¥<2¤øèļ^Ό藾{-Ò«ÖXV)ÛY„]_ûZ¼ØVǺµ7”ã@g-nŽ,Àà76 *f‡”‰QfÝC³¿?ùRsEO ±…o*ê# ¢>‚y®‰°kS¤ÇNeÎ=•¹ž’ -3Pã¢Þº?‚òÒb ô÷àô±øîO~0ÌÅÑÀª €x]Ëîñ8¶ ÔðfVauxÏÒ»¼Ô|§ˆ÷¨v’ÁB/*úhA\ú¥æ, —óJ®\¿ƒÓÇ£§³õ5xíÂUSy% Xmà½~FÈB÷pd“÷È7ðøá6ØÝ~LÎKû¹lµxgfk…§BŦZîDŽ`zRÛ³FD. P9të1}+Óм àÃë·ñÒsOb ¯ s‹Ü™æˆ¹²RpO/»ïÈàXç=Žö6 ´È„Û£KÞcûÄ{Ü8[,Þ“R©y©XĦBÓM1ˆiD]ŠY ´ÈN©9›—?.—ÛÙ…%<3t ?v¯]¸›ÃoäŒ%‚wv×ñLàÈ6@$Ú¶£±ýÞ# «˜‰òM ÄêËxRV>y¢‘E Æ{24æ=Q&Drs±Ö¨¨Oeoì&Þ“5R||ze%EìïÅÉ#ýø—W~žä4H«N°ÄiÀ‘É1*K pf §,°9½Ûzý$sñd´Ô±ÿÆ{2ìÔ,dR³ââ4ºQ*.ñ•gq©·Ø“Aâ=lB ¢Jþã¿yéPD}º¥SVмóµÊ’ì-ï¡i{h¹žQÙÌXÅ?6CDµx` †Bø·ÿá¿Âëóá Ÿ:_zæ @ôz]ÅÑ£ ºùŒôÑ{‘ìàPÕt:×xÇáD3 ó¸;¶AœjyN˜É xÌÌY½KùEš¦i¤˜Ù<€|¥%Kd‡}0ìŠJ¥R÷8/…*TŒÊòT!£FJ^¾XOòPšÒ|âpº°°¸‚§ÏÄã'ðÓ·.Ãᚈ±$zçv,ß‘pl7ïÑÕ\…ÞöÜž‡?Nz6ÒÄ{2äaeðr—ôcL©¹\˜¬`‡¨L@TAŒ²& qÊbR›šAUyúzpbp?¾ûÓw pù% ¼Ÿ¬NDÖ³ì¨L˶GºcT—âô@L,þÎ{(ÄÝs:E¼g˜„®h¢¯O&åRs–—¢Ê“!Iój ÊeŠz2+YwЩMñ^¹~çNCoWJ‹ ð‹K7ÀË«¨o~ B0 ò61…£ýèél!—®Ý1–– î‰y€†bÀ#§ƒËÅJ74êï¬ÃþÊ‹h«+—Oµ%‘V#ŒU~ìJÕÛŽ&á“Ç®‡ Œó‘Ãjd4ÙqdR¼4IYÅ0Ãâ=é¸*þð¿ýxžÇÿøÅ_BGK=ˆ>¿@Wv¨@A4d1 ÇÓ³){ÛQIdyF í²Յ٥µŒá7IZu êJÍeÍD¡Q"]ÔÔTÕIRZ Ê%Ù îYV'„$.ÐRZÅÌ$|Õ”šË-MHœQ#Dµ;ÈË3ãðÁ>tµ5áåŸ]1—Rÿò x¿_²hÇV“®Fƒ¿ûùÇñŃŽãâoLBe&z*C„ɰþ[X°D34ÖvÅøùÚ\*ÍOÃsûëo~+««8sü^zö @t:]Ù¡"¯C'š=vpSË&o/>~ÿþ·Î£¨À#Câê¤ÿ±ÔÉãg à@' #aå!2Å—”ǺŒ_-&ݬÌöË…jÒË0Ä++“!{ÎÙa!XßéwIÃ=5!*~;Ñ÷2®’Â9öûýø¯ö÷€¯õ×QTbª¨æŠ:Z¢àaÂfEiîzÙˆ\(c?ØÕ€ÿûw~ -uå2sAf–†Óú³°'³ /IOç}Eñžä¦óÝ&Þ£¼/Ê€ò‹‹àòµ¨®,ÃïÿëÏE¸ƒâ}ûAôEˆ”£Ç‚ÉIàØ ¡GºV]^„ÿøÛŸÀɶÄuH<ë¨ûOílFefqÈ\|Ÿ=E3uÜÕLÙJ\?B$!‘”m‹¿Êð¼)—JP6´eT¤„³ÜycÕf@]c¯ÕØùÓ¿A0—?ó<úºÛ9OW>°?&dÉIàPìV¿„i&ˆQ%Óë8œ<Ø£^‡û‹ 3{âÙlo—šo¯x…J}Y¯"¶ÉÔn®ob¾ jgÄ«˜AäSå™5ÀÀéö€pÇ ¯»ßyå ú¢°¬‚÷ùŸžÍ™mJÇnà=^zòþÝ—ŸEQ¾I66gç_‘(‹*“®eüG•bd¥Ÿ•"V[ƒé¹¨øÍ†·¡®j2k•™rž ëü%½d:9@£ [ÊÿOßý!fqø@7>÷KO„ãbˆÒ<ÄW”’œŽ\ç=ÒµÁžFüáW^BSMY‹%+â=™´"Þ£¾ž&°@aœ$JÍ—Õ¨/­W>Êm"P(ŒÿçOþ ð¿ýöPVRb,­àŠ÷µå*QªªäR­F¶€¦0ß„¡£ÝX\u`~y-Þ³qAQIÞžÙe=Æ3!b‰AÄ‹Ç{%Tf9½ø5aÊó©ïQR®¡ˆýdh!ÅŠM’â¸ÒÐó‹KhkjD_O'ÊJ‹ðÆ{×ÀKÊ÷ô(ÄfG¸œW¸½QId&£_ûâÓøìsÇÀqø²43"›Ï–xÀ$³"›q!“R–/§eƒ S#ƒTÑ¥ò¨ðD¤.Gò)hÙ4´R*ÀÿÕ7àõùñÙŸÄуûÎdÒ•öå"QÊå@l·}êéAüÛ/?‡‚=ƒ_}ñôíkÇ7ðü!bFØí !§3 ÛºzVWÜýÒÐ¥{sàAKm)¸˜™i« Uñžl[}U)Žhý‘9¸½~ÑÒl….ëLemñÌL^Ibõoi”*è¢&)ÞÃZîOE©b¢BuL…‡&VKg{2rý]<µËôeíYjõDò[Õïå–ò³¿ßíò ©¡½Ý†B¸üÑ=}Ažàž\°žžÝ¶ŠR]ïé/…f¬¸9º„š²|T–äkÀ!²¢3ÎÛ‡¹%,öŒÌ†[ºœ¡'#ÚnieæIôt´àï¿ûsÄT@ý–ð>ïvyºÞ3_ÿ’›€e̓Kwfây´×—C·áK.™A¯ÃéÁnð‚€‘©…øý–PÿˆcÁ³Ÿ*kq¸6„¨ì®F¥îÉæ"¾8/$QWzÂîO#ÎÔDnõªè„f€.cZ 9 F»\iÙ²ŠÃûÑÕÞ‚Å+î O¢Ï7 ž™%Iºe^‡®÷ô†Ôn,Æçl¸ò`åEy¨­(ÜóÀ±¾Ÿý]h®­À͇ Þ#‹<„b»Âì-Ëꃡ²®JU]©øI•ðjú³°Â™˜’pÈŒ‰C®Ø•Ærâ=r IdŠÊ¤)e"§h/[Ä& Q-«V<÷Ôöu4ã¾û(g. þ¥%ð~ßvxºýgÖÉQº!x"nî#Nø!ÜYÀäÂZëJQ˜gÜÄhBÞ£¦GûÛpgd_ aeeÂ~ª`ô¿¥DE«xéºLÅøÙ˜Y³ûTÆ9ÉŒM¹Uhòû³°´ŒÇŽFg[3¦fñ`l†@g6PïܲÈë¶8d9ŽÄ³êðâÒí)øa´7”C¯ãö1ªÈ{æáì‘}˜ž_ŲձqÆi`F·2¢†ù—ßåf\…îf„¿³ElN¿„ÙÁ]”„2áÊÌ~gu%“é ˆJÄä ™¨LFC*²Ãì'ΨŒþ, 27!;ãKj3¤ÎéÅÔ¼+6§ÂlšXÃ1žets'²}b”¨]ßö©•¸!ñ"BD­Æ)›L& ø@*ÞÏ©-<‹­¥1¿…ø|FFEœ)¡nILlÄ«O¸Ü<~êšë«ñÏ?~D_P$x¦fAù@Œ×‘ÕÔl8Ö„*sr+,ãëbÝð`ˆÇ±EÜŸXASM J‹Ì{86yC!ŒN/¥ætdR¼g›ª&w’xRíÔ"•ò•¸2¥íÓ³óxæ‰sèîhÁ‡7`vq•#DÏSÿ’Eäu`K€C‚@ħS™ng” o´ÝåÃ¥»Ó°»|èl¬„A¯ÛsÀ±É{4£¶ª wMƒxÙ D†Ä]ß ³ƒ;J‘VfF’)QQY©˜á{QÉ®Q©Ö®°F…¨Èè vÑ]6BÉ4A› üN?Š‚ü<üäÍË€Î`\ã³Ø‚n÷œH˜:k¬<(.ÞžÂÿñ—oàÝ›“[­›Svz°ð?ÿ ªÊ‹ebád딣üdWŸ¥5ÍèÊõ1‘—sCS•EÜ%R/W”†¸¤\m3,¶fЬ¥hœ —>@(Âù3GPR\¢/,&æªrHûÍfe ÖõŸýÒPrq¦”{&² ¥ ó¸7¾„»ãKh¬*FYqþžð6ÄVZT€³Gz11gÅæt¼³¨ b±³9ÉõATG îõBÅkâkCXâ=”!J$^ÚãYÈíwܱK5-"ç¶@G34ˆÚq‚¡ Zš›ÐÕÞ†Ù î Dê_Ú ’T×öKC[Çðo>u¸ý¸tg «kt4UÀdÐï)àØà=ŽôÀçblfi ]âôÖtH”°T~€I5;I‚UÃòêeìRsšÈ ´¨‹ÊË)•š³ôH’]´'J‰CÖèûþ@ç‡Î¡´¤ßùñÛ œÉ,¸F§£áJlAXÆÁCwàl¤LŠúT™•é&vŒhìÈqqpdvš·8pñö$t‡¶úòxQ—=`„êiAmE)îŒLChbÙAFÝ»†ƒ=›+±ú¬›BRÔš­0“Ò$ç®äÓѤÍÉmnqžúÆÙñŸÿû²eŸxö<:ZðƒŸ¿»Ë¯ïsÒ Ýõ:²ÆsèúÏ®“£É‹â*7áQÿ#‡BL.ãæ£yÔU£²´`ÏñÍõ•8ÔÓ†Û§àõT{ÊJa"æ>Ö_5fŠ'¼IrªæP§ú%§*.vQ˜«†Õ£ªJÍÅ¥q›!a©~mx.$)53±¨²x‘-¢R¢¬¬ý=ûàtyqùú=¢ãÏ̺VGlj6³ä¨ÄE"*šæ@Mã°»’IŽaó{-Nü¿ßzó£awùöx´5Tá?}õsØßÞÈhxÄ>Çé²Ì4—büìòóÉhd4 MÓ?Ê·ß½øÔ ç"ׄ©¢œ!‘þ+Yk©;óüo ùƒáÄÞÒ^A 'Þ¿5€ £¡"åfÅ;ÑLFÎí…ÇçÇøÌ2 VõŽ[rNdUÅÙH„3R™=%ÍS9±]"Qý¥’â/É82ÕÊL±ßåw@¾²R½\˜¡7IXj¶*Z‚Eƒjô] ay2ÊEx6»Ÿz ­MõxÿêÌ/[9B ¬ÚÅšÝË÷·CÅù&,­y° ¬%ß’<¾ô¢K”QQ’Â'ŽÂ¼€‡“+øhx5åE¨*+ÜS¼Ç@OªÊ‹q÷ÑxAH~n£É–d«ë6–|i·S‘j°é»2‚rf0plp<ÏãÍ÷?8ƒApOÎŤ_nOfgé×#çâêðÞ¹1«Ó'ít.¾hÌš‡¸F¿4Ž ¢¢ÏSÆ…IEßC×@w=>óì ÊéÛÝls+øãoüV»SDü‰Ï«%þ}b>·*—²4&ÄkLD7|ì÷3Ç¥2 ¥¿{ÜV’Ï«8.È׿>²ŽƒÆŒ HŸPÑu»Òv ”Rñ1ûHEÛ1€+n©<ØF_TV–ã;ýgp¹½xö7ixñ­·iÈ5ÀÀ ™ñ8¾öµ?Ž#h¬.Æ™ƒÍ(+2ceÍ _ çV1×E°òø×0D{YdW¬Û+r+—¬N\¼5^ÐÞX¹¡¼¾Û­¬¸§÷blzV»kËcüm!3²°©w¶S+ÞÕž[¼æi|]Œtu¯LíL̦^Ÿ}=ÝhkiƒÑiŒLÌ.L}q%è|&¢ àˆMñ5TãôfTçaeÍ ?(’h"·;¶°)F3S¢h»ä›2òøˆèzÎXpíÞ*K QSQ´gx³G{áöø19»Äìâ#‡!©ˆ÷€!ÞC2,Y=ýY \2/[çF©9’(5‡äìÅm¬ŒŠºTyZ!•L(*Î<<“?zý"ÀM‚k|&&\ÉèÂ7Ý×¾&ßt: -¨*ÍÇÊš_PZÃÊlEµy!ed$¯?ˆ«f0µ`E{C% Ò…»’÷èmCEiîŽLGxM¼'-o+QKˆ•°8:Y@NÐîQ¢:ÆÈR*_`yÕ‚_þøÇÐÞRúþëð©‘×,»ÝÙ Ie#–謫,ÂéƒÍ¨)+„ÅY 4ÑŒ"¦æ™…EŒYNå7O°eÍ…‹7Ç…ÑÙTÇízim¨ÆÁ}-¸ópþ@PRª7ãCN¢.Yñ*!Åc' ÂXNX¤8+£¹Îô 2‰2*H\Õš1¼¥ÛŠÛ‘dB(Œ†ºtw´cqņ›÷F£%èsKØ\ø–±ô„Àkµ©­(‚eÍ—7ñÐ7Y¢](Æg-øàî$ÊŠóQ_U²ûy’Bœ:Ü‹ÑéEØX¼GÖÄ{ èª e¥â=’ð,5,0JYS)5U¥W×Dتæqãʤ®™¡X¬“K1û|~œâqT”ã[?|DgÊœq%è W’Žõ÷jË qê@3ê+‹°jK:~ýdPVx©R+dâg0*E³•?ÆáŒÍZÐÚPB†tán2³É€sG÷Ãéòar~q‹%äx¢V¼‡$¹QæA’®G…­ôŽ=UbQ“FȦ €'u{4\ÉIºQÇ‘pˆß«(Élj¾ft4VÀæôÂîò«È¨f÷2é—©!±â/Ä5§—nŽÁéò¡³¹:NºpwñFœ=Ò‡5‡Ó + ˜šôl¦fš¡3óï«8ÄíðD² ª^VZŒþ>Ì.¬àÊÍa€ò¡¨ÀOl :¶ 8’õB*£ÒÕ\…5‡6§7£•dþ$P`zц˷Æo6¢¹®|W‚ÇîëDqaŒÎ€Fy¶WÀšÍÄ‚¼åÔö‰•dJ §ëBdô_ëœb+q¦ø¹¸S2nœ÷Á.ê’’Çrµrjf‰Šã¤Šö„(§¢å2:”R<ûä@—v -ó#CKíÉÜ\d­J6€Cüþä‚ ?¿ü£³ÑZ—Ø$ßÖ¬¥h®«ÀçŸ?æúÝ 029?ù§ÃîôH`•µ–D<Sñyed ¨hÊL<®Ès‘Y£"]+¥nm”x*g­}¡rãÆ_…kQX×!û|Qö8²ç‹Ê®Í’\çÌõ\›ïGº*Fž FüàŸþá0Þ'¾„`0HCó¯¾>°ÀÈÚ•´2,L#[èËŠòp¼¯ ½m5°»|°ÚÝ)ùmŠ%ÑP·4Üáòâò­1Ønt6WÃ#]¸[¬¢¬§{ñhbv§[¡>BM¦›a$ó DVd‡É ¨©‡PR9ó+¢ N<)LTöQai¬Ê÷MXg!Q‡' ¢H¬Ô5‘T–**ïÅ/ð8¸¿õu¸xåæ-$’–µÙDÙäp(m[Z˜‡£û›Ð×^ »Ç‡U»‡Ù|WJ"Qí:å¯\Ÿ˜]¶áÒÍQ ´ÔWî:ÙB³ÉˆsÇÀjwbfÁ’ýLH®dTÒ+]ñIÃ(¢¬¢†˜U^‹#m·YVZŠÃ`~i—¯ß „©wnÒb°ëVRhÆÑÞ&ôwÖÂé Àb÷ˆ{B‰bF"ƒÎrýLY¢º±? Q^ŸÇí‘4Ö”£¬xwIrÁ‘þ.æçaxl‚wA%®Qï¡Ì™¾²â=±žKDH¶ÏL¢¢2°DqdÆUšñ‰’8±´ƒ^¬Ç´•Īœ ‚€çžz:‡yåát‚k|:Ês‘¦F“ãÈ4@¨}ÁâÀ«—†qo|T †ž©å!zײ=ª¤-àx~åü1˜w]ø2<>‹?ýæáty!ÍŸ/ÍqØEÊ7ˆczÊüÊà`Ä¿CƒÉ1°î*¶ÖEüa‹¸ª–«ãtd8;‰^ºkš¹¼ŸÊ_Ó½ßý»¿N§Cï_„×çGxá7hس€MŽ”yÕG¶xØ÷Š Ì8ÜÓˆCÝ pùX±¹cBc îì%Ì ýaâý¢¸2qae oŽ‚ Ã$= IDATãÚ«v•taUy NFy‡ËÃìÏB v÷ñ TE[D©§'Îô(×(‹³Å™IÂ)š*rkɪ¢g !– SõDAÀþ}]hj¨Ç•›05· Ê]4°jEÊÏ·8Ôn[”oÂà¾F ö4Âí bÅæRw.3èú…x˸1<ÚÊRT–îéÂ<³ gõÃbs`nÑ’ñ_6îOì„0×Ô°–œË«š³–³³å%ï„•f¥ñéR$J—2€–ȳ„ÁUˆ~bn¶¾lü±—”àèÀ!,YlxÿêÊó‚wv›iÙ” Á$À±ž…Ú÷ óLØ×€#û›àñ±¼æŠŠàŠ»•'èÃÈã‹›„HãðÈxn¯WîŒaae Í50 »„÷àpô@7 òLx06 *­HdpCŠrÿ`ÕG¤Ð'‡¦‰[9Và•ÌÆŠEvTýªd @à<ÿô“0 øöß8^pME Ò´ú®H8Žíµ–ÕáÁÏ/=Àáð¼ ‹R}!Wç¡ücPob2ðÌ©xîôÁ]%]ø`lþ­ŸÀåö0x 0zè°Ï¥Êz³Æ€²uPãëص;TÂo°8ª¼ÚUN¿TîûåjQ5+ÌÚ *s ßO•t!¿ ã8|çoÿ&“}Oþ\n/‹o½ECιtyެxÙŽ|³»p¬¿þ@Ë6(ØKù¥°"«.åA¤Òþ¼ `dj×îO º¢ÕѦÑ;Ÿ÷(ʼn<ŸÃåI0eỂ4Kêá9h9—Ζ=õº:ÚÑÒØˆëwF0>½Ð ‡ú-Vį[ÙÚP%› ££›Œ8ÐÕ€ý­ðÃX²:!tË0z}\»;Ž™+:š«‘gÞùÒ…ùfÎ;ˆëæ—V:§±gâÃ¥îfT”^g—dÇŠ¸¥æ”šÑ´€˜îñòú¡¬– rðXº2ò5ÌZ Q  ¼¬Ÿ(JŠŠplp«>¸PA<3ëËìSæ9TÇvðjÌl2à@g=NlC0ÄGdݨ"lÕ¬fÀˆ¯,$–mN\¼þ¡0Žæš¾è8ÇîƒÑdÄñ™ˆ±ÅCöÅ{ä>/_$¨ŽW€rè›tŸØÌ¸4<Ïãù§ŸB¾Ù„üþë Do\£Sˆ_·’´×Çqä1šŠ¹<~¼vù®Ü›D(ªK!‰…!ÓïƒnÊΉ?#çÆ^p%…øågážæ]áŽßÂ_|ë¸=^™zH똼€r¼NÔ'ÈÖ]Èr[êû÷$ä¶À^£B™|›Ÿ‰Û?5kd¨LÇÆw²x£ø:•p˜‡ÓíÓé†ÛãÁ ¯£¤¸Ïÿlv'ÂËÞ¡ÛL”çð¦²Äy;8LF=ú:êpêP¼€%«¼ Ä))¢ªÉ˜ªEõ¨/ý»7Äõ㘘]A{c5 òv¶tauE)ŽêÁðØ4œn¯ôè³%ЛÉRó\!!TŽ¥´ ³æ%úš‚ÀãõÁjµcaq³ ˰;œðùüày‡DWGn?ÇÈÄ, „¼Ô¿bI‡çÈ8pd‹MÆŒ=ö·×áä¡Å⪼@¥‚.£ë:KzŽ2XÅöëŸ_µ»pñÆ#øAt6×îhåõü<3Î=ˆe‹ +VF E<éÏÈé¯È¬Ñ@‚ÅwI–šK–"(ò1#åŽ÷²ýi  ’­ ‰«M)Ñv›1ÂC!¬9\XZ±bzv –UÜ/B¡äw¬(/ÓçÎÀîpá­‹×#´©gz.žcWG,€ô¶Õáô`'¨ `qÕ0Ÿ†† U TÀÄÜ2>¸=ŠÒÂ|ÔWïÜ¥û:‡c‡z ×é029#mowZ2¥#+·éö‹÷P$$5kd˜­¤±ã‚R¸Ü^XV×0»°Œ…Å8œnø|ùŒÖº7ìõá×ÿÕ§QX¿ÿîÏA8½ApŽL`sÝJÒóüiÔUílíÓ{&ð—ß~nŸ/AŸX$<_ñšršb®‚ÅOˆ{ÀÆÆýò-R^‚rŠ}bkj$\eƒ«Ü±‹>ïóàt¹ápºáv{¢™Cµ=zã_ß½ø6*ÊËÐ÷ä¯Áît#¼øæ›4äšCŠú =ŽÝ½ûZkqf° „pXZµ#æ³¾ìÚfwáÒÍGpy}èl®…^·3¥ «+Ëpôà> MÁåöfÜsK%£¢XjN’ë®ÆîéBª[,5/òÄŒÖ!¢0-ú<Áéô`ÅbÃÌü—­pºÜC ”&w~D€öôãgÑÔÑ![´€†Ýk4¸fCŠ:¤’Þ±;•MÆôzº[jpöp7t‡ÅU;B<Ïì6&×OU~͘q.¥Só+øàö óÍh¬­Ø‘àQŸ‡3ÇaqÙŠ%‹UV OÜH‡(¶UP(a‡´»›dù@¦ÈLº…º§ü¾ìvV,6Ì.,c~Ñ‚5»^Ÿ|XHé{©Ìq8ˆƒ}ûqïÑd¤Ëï÷PßbÊ:¤{86DÇ¡«¥gtC¯ÓaÉbG0–q»y êVL‚!Üy4…áñY´ÔU£¸pç)¯ëtŽô‚‚‘ÉÙ wYN»B¬®ÅRgHá9ˆ ®”Víªî£BØýYÀ¥Ü'–ÈöG ·ÇÛšKËVÌÌ-aÙb‹ð~¿2÷–@komÁЙ“X²ØðÆ{× žéY¤¨CšQ½¼ºúÜhÐã¹ÓðÔ‰ý¸pmï~ôn¯7† ‹ :"gÇ8‰|‚2Vj‘ÏLÍ­à?ÿípâP7~ùüc0›v^õé‹OŸAKC-þú;¯Àëóg–Ì~Ú) †àöxáöxár{áóù7 ê¨J$“3>9èíj‰¢^Aôþ×àdø rt»Ä{rÑÂa>zˆw¯ ÃéñIOEbT¡àGŽÄ*ÌÏÃ'ž8Š3GöïHà]^]ß|ã»X\±ŠŽ]ì¹1Äv!&úXâ=b7\†Œ[ܦ,ð£fq›üo*"f)…×ç‡Ëí…+ Á@J &%×”Ò5&³hO*HEe¿[››pùõWàóÐ}îóx^ͽò*¨°""HiÚÀ±›ˆÑTŒ¼÷ÑC¼smΘÅ_Tn%d›Bþb(ë*ñ¹CK}ÕŽ`0„¿øöpûÁˆòM(®ì”Z©’7{….ß””ň”ÉÄ¡¥86· …Ãðz#@áöxáñøÀ ‚èÆe—\F…JÀ-iàPȨ€Rèt&n~ƒÁ€³ŸúmLÌ, ¼ré=ê_žD ¤ŠÇ^Ž´5TáÜјMXZµÃ %å_*-D÷Òpº|øàÖCX×èl©ßQÊë:'úcÓsÝ”˜:±Úy|ÑáL”UÍZ!PT5gëÖJ´DbHq §ËëšK+6Ìί`aqÖ5\n/Á`4a׬$î¡Ì¸ˆT­½Q‡%5H)>ù±çQQ^†o<Àèäö8h`u)û$Ý­~·£ÉHkCÎíEa¾K«v‚Af;€¸”]ŠÌþü² —o<€^¯GkCõŽ’.ìéhAs] î>G8œºÿV‹÷ð¼×»ÃÕUæ—,˜™_Ʋņ5» nþ@‚šÂmïQ*Â;wê1t¶·a|z—?º*}Ô;¿Žäë8v[Åh¶Œ‚–úJœ;Ú‹â‚<,­:àãÚ7F£ìXÏ#¶@œÇÝ”¦‹,Tz0>‹Û'Q_UŽòÒ¢sžj«+p¸¿ã“ðø|ñ³9Snrªâ JÍ7ü:v¦„!Wè„àv{`[saÙbÃì‚s +Xµ9àpºáõú …A“lÍœkmÄÖßÓƒãGápyðã7.” î©õo뤪¾e÷u!Ú"äôá}85¸ÜÁÛÜ…ÕîJã’ÿ­Vløãø÷uáWŸ?Âü‘¾­­*Çÿþ;¿¿øæqçáXê¥q³ð‚¯×¯/¯Ï¯/Ÿ×° 0x»‘ƒ}b“±±hf¥­©>z!›òŸUQ=' »­aQzpêP7NìÆÕ»cxëƒ;X]s2®0¾éæß)ÀP!ÛÜîÆýQ<›ÆùÓ‡ñôép;à‡0øßø ~øú¼úÎå¬Iü­õÈbÏ ÿ=ªˆº‘¿‹ üüþ |þ | €|©÷6ܸ™ôÔŒ%~{=%ÛÜP9³:“9 I§dÉÜýºFŒfήÝÇ›—ocÅê@üz@iM »*»IMe >ýÂ9ìkkÜ1çåú½‡ø‡ïþ^€ÝÇ…Ù§vý~†á÷"ÀïÂF˱•}b©‚¶ˆ\ŸXÊþ½kg¤½Õô‰ÍpFE!Å[VR‚û¾ xæ7a±Ù^xý öÌcSƒTÕ‚·¬†*{Ñ;9Ößcý¸þ`o]º%«R¦]ÜñCìÃìl´bµãÿûæOp°»Ÿ~áJŠr¿óÜ‘þÔWWâO¿ñ=,Y­Ñ:8ã[Ñ(8#`0þÁ qæ‚)”i÷!3jdêÇQh¾$·½Òû¢ã²ÙíX³ÛQVZŠæÆXlvSy! {’ö8t¿÷{Ò¾*Ùö,ö ÔW•áÌ‘^ÔV”bÙê„Ûë˸ﺴjÇ¥ëÀ :šër>ûRTSGabzF¦`]saÙbÇÜ¢3ó,­Ø`]sÂîtÃíñÃF33tËÄ\ïIШJ@{ö©'ÐPW‹K×îâáØ r®ÑÀªI¦d3{!£’:IX†3‡{P_]Ž«# ÑÌI|†@$$>a2â0¼ÀclzÝCUy ª+Jsú|èõ:œ:zþ@¿¸|>0>m›ÉRó´oÜ bMsœ —ãGÑßÛƒ»'påæ0(ïuQßâ¢8ͶÄîkÁÿò›/á7å<k*U\ɵ\µÙñçßþ)þüÛ?…ÕîÌùóñåÏ| ö‡¿â‚”Ž7cíÕÞÌ™”JLwOŸŸœ47ÔDæ$]^>R GuGŸúµ¡’3òL†-ñ,özV¦º¢§{ÐRW ‹Í§Ç˖‹kG°I}0%øc–ö[l\º~Á`- 9­¼ÞT_ƒg?Ž«·Àfw(»áéò”&vçÕ†9hJÃÊ}[yy^zá98]|ïg!ܓӈ£AÕ¡ ×øìÐå»3x0iÛDiQò͆Œ„pÈ[Uy1Nö µ¡›“ÑIÙ€0/ æ „á †àõáñúápzqãþ~ñámÔWW ¾&wµ?Š‹ ðâ3g1=¿„ñéyu7`J²SGÐh€¦ìwfö¸!øòç? ‚¿ýçŸE–ü»F'b€CÕB7rúËßûzl ˆ »©'4ád#*Jò·„÷Øë625Ÿ¾ó®ßG˜æyð¼>Ì#,D_‡ð|a^¿Qú,ŸŽ‹¼¤xêÔ~÷Ë/¡¦2·ù¿ùçWðßÿö_"¥ã¢¬v)¦b©r{‚”W®&l ™à¸6>Ãh‡ J³ä¥)ÞÈkƒAÉ[×@AÑ~ò³àù°šýÑO¬pb³ü\ô÷tà½+7TXL˜)‘¦ùyÅåhŠXx|ñ³¿Šâ¢B|ã{¯ÁëÁ=9ö ‰v ºæÁO)£ÕîÅÿßÞy‡ÇQ]ýÿ»ê½¯º¬.¹w\°qÅS‚©/„Þbj¨S x üòBhºq—\%¹¨÷Þ»´½hûÌÜß³’VÒ®´UZÉsžGÏ®F£»;wîýÌ9çž{NES?žmDyc?Ôã ­¨8W¢Âƒqù¥K±ù’…*TèìšÉaû ¢ 4Šª‘SP†¤8>’âÜsë~rB,vnZ‹ÂòHpò:+²Ó)ž +CÍ]½¢2ÜÖÿÜpø‘‘øïÏ'!‘)@4ý= Õ pL¹KǬÆaé»@¤ ž…ˆÖ€¨°@³šÇ$",Û/]Š­ë–@1¤FGÀ¬Ú:Ö‚:@H¡Tãèéb4¶õ`Iv ‚ƒÜîÚCC‚ð‹›ÐÞ֮݇^ÇŸºn”l&WT†åW]¤„ìÏ9‹ÞˆNÐO )lˆå`ÁaÇ—aÍ™>ȯGYC/ÔZV ô÷±Ù|áIJ„‡aÛº%Ø~éR(‡4hï˜)Kh»tö ðñÐ4ƒÅÙ)n—yÝÛÛ WlYO/O””×N Fb0ɤþZQqЦjuÇÖÍÈÊHGΙb´vö‚è$B¢—1v{½µ‡mûÿMÃ`Å25Êûñs~Jë{ ÖQˆ2Ç%,$[×-ÁŽË RkÑÚ=8±ã¢i”V7ãèébÄEG %1Ö­®™ÇãaõÒX”†¼ åÐ γÌŒu›C»íNÞC¬²e\µRtÙºµX¶xò +QÓØäb¢LÀA[Ž›·ÀÇm¥ó°9SÞØ‡ýgjQZß µV?¢‰pàp‚ˆÍkãÊËVB­Ñ¡µkÀl%/[fJ•9ù¥¨ilÇÂÌ„…¸×Þ—”Ä8\¾i-.”UCjš¾ÀL‡³v<¼­IÞc®U+–aÝêU(®l@Ie#ˆA!#š°K²VEš‡³:V$S£¼±ûÏÔ¡¤®g‚9Éý€Mkc׿UÐê héìÃ0Ý»î>!~8ZN‡¥óSáíå>éZÂB‚qÝÎÍhéèE{w¯‹&®ím¹{òsÿ¿p~6¶^¶Õ mÈ/ª¡ÔCDÝÛ J%x&Y k4¥I}"*”7ôâ§Ó5(©íJ£GdX‚fyU÷™–à@\¶z®Þºz=…–Î^0 ±¬>Oñ4£u-8tò¢#Ñžï6×êãí]Û.ÇCIeåà+'Ö‰íÉ{ÌÝê´”dìÚ±-½ÈÍ+h­šQuuc4Ì9àp6Å25Êz°ÿt-Šj»Xˆ„ (€ƒˆ½à«âšmk@Ñ š;úØÌÛ6D`šª½*µÇÏ–¡¬¦ 3’Ý&u!ÇÚ勰03yÊÆв ¶_ÌÉ{ÌI\l n¸öjôô ñsîY€Ñ阡ŽNÛÀ±üæ-¶zƒ‰½Ä£šH5ŠkXˆD„r±SüpéʸvûZ0 AsG¯I”©í±wP„ŽæC9¤Æ²én“y=u^¶_¶çJ+!“+­¸ bA…°~eÆ?qб:@ Åí7ß±ToœÊÀ µµÁ¡ƒ5«*,8¦¢³5,‰-DF4‘²†ütªE5ÒèÆAÄ.€øûaýÊؽc=!hêèEÓvi‘„!¨nhÃÏÇÏ"2,™)‰n‘û#<4×]±Íí]èèîs’úàúä=Ä ›ÈYÉ{̵Œ{y+$2¾ü1 £lm[[ÅÃñΰÍ2õù¬&ÒƒOU£¨ºCj"9MÄfñ÷óźóqý—‚šÛ{a°²lÁø[¥Ñêpò\9 +ê± #Qá¡3ï÷ðñÆÕÛ7‚!¥Uõp®grÌ$ï<88Üy;¤r%>ÿî»CVÙ2 àpaÇŽé#ë:i"?ªDaU”jV æ b=@|}°vy6n¸r<==ÐØÞ ƒÁ`›‰j¼_B ~8š©L¥ 2àëã=ã~µ+— ;=gΗÂ0â÷°c8ÏÁä=ãÛòðÇž{î‚\©Æ'ßa P»Ö(N¸0kÚ‘ÈÕ(kèÆO'+q¡ªÕDÂàÇÑÁ ñóõÁ%K³qã•áíå…¦ö^è ›MTÂÔ6uàÇcy Äüôy3n¾¤%'bûekp¶¸r…Ò!oæ\JÞ3þûøúøà‘î…J­Á¿öÐ4£ln11U(‡Á1mt¶òdÓ?Id*”×wãÇ“¸PÙ¥Z‹ˆÐ@r™J|}¼±zinÜuü|}ÐÔÞ^o³)ªÕéqæB Š«1?}¢#Ãgôº"ÂBqÝ•[ÐÔÖ‰Îî>÷LÞ3C¡æÃâåé‰Ç÷<­V‡|yM3ŠæV¦;d§ÇM[lRWmíŒiÚ`$‘«P^ß…ŸNVà|E†ÔZD„q± «gâæ«6Áßß—ˆNos;B± ?ÍàH‚å 2àçç;ƒ×䃫·oEÓl¼Ç*Ä´'ï™BÍv}R"à©Gö@o0àïŸïaES‹‰©258â·[B SjG¨˜ý²6„ÁZZör÷Ù\;b¹ eõÝøñD9ÎU´B¡b5‘"ÅÇÛ‹­wõfø£¹½ÎF¦Ô7wâ‡#gà™)3f¾ðx<¬_µYiÉ8s¾d¬ßÃVTìü\bÓCzìq†¦ñìã€füí“Â([lÑ8x½½äÐS4;E¨iD]›ÍÝ"P4c_![ Êϳ)C’™Ÿ2’¢±ù’,l^„è0Ž“ˆF«Ã·‡Ïà‹ïs!6æ%SÜ‹ñ}Ÿ–„» +eÎèµ4·u⑽o «·Ь[Öik²‰Y3¦-ÎG?Šëê®-!@ꥷ„¦ ÝûÍ&z>©ƒtã z¦.$µm4u‰` h›Í•¨ìÇø*`Vtrz›Wgcó%ÙHŒ çHaAtz¾?rŸ|{"‰|⽘ª ‡k¶¯ÇSÜŠ¨ˆ™[¾U(‡ðÔ+ÿ‹ü²éICh'ÓVÍMãï-å… @â%7„a Ý? ƒCfÖa£*ûj 4u‰PÛ6ˆšÖA4t  ×ÓÎïäIJØYk¨?þ¼ôÄhlY“Í—Ìç bAôz~8šO¾=H:É$ß÷ìû <|×õøåîðœ¡Ü Cðî?>Ç?¿øÖ%#{Æ´³´sk>ߴݺÂ|D„‡#yí- h †®ŒÓ8ìÇd0¡hÍF¤ºe íhõ”s;yŠ›ç M&=‘-kæcË%ó‘Ác<@ öçàßÿ=„~¡Äfµ;=%/^øãûÐh´fÆ1N¦cj|áá±3>‰ðèq2Á÷àä:±hçN‡3ò†Ò AkÕ-¨i@mÛ 4Zý¸Áã8Æ×Åpb1^KÌj"ó±eÍ$q#ŠÂϹgññׇÐ7(‚­Ù¿¯Ø¼¿yèvÄðg¦_[ÚñðÞ? »wÀ~sb2-Åfs㲚[ׄï8¾p¶@ùŽìûÖŠ"øû;fª¸¢^ ôöˆQÓÚª–Ô¶ @¥Ñ£³åïŠðXJbY]ž²:81¹‡“„´D>¶¬Y€-k`^\$G£Pƒ'Îá__@wŸÐ&°ûûùâW·ïÆÝ7_5#¹?ä %žøí›8[TŽ/‡0Íezê+ÁÐŒcÎÑé(0M ’ê–T7÷¡ºeCj­ãìL[tp™‚Ž…ÈBl]³óâ£8z i‡NžÇGû~FWï M}Ÿ’‡½Ý…—,›þïÍ0xçƒOð¯ÿ|gµÂå+*NÓ?ßÓÓ½õURk½é€P”¡ûçÃ.‡³Ê!´÷‰QÝܪæ>T·ôC1¤qÎr"Ùr“Ó£±uíBl]³ƒ†apät!>úr?ÚºûmêûíWã¹GîBBìô—n8˜s/þñ}¨µZ—OÜsŒð÷G[e1$2–\~/Àô†žGÝæ@ÒÙ/AusªŒ?2…zFœHö:fSøØºv¶®[„ä‹" !È9Sˆ|¹­=V›¨¾¾>¸ÿÖ_àþÛ®›öÍsõMmxøù×ÐÓ78£#W;FÃÃÂP_T€A¡+w=0:¡çÐQŒ­æf8Ü¡Nl÷€UM}¨jîEeS/$rÕ´8F­qÌN5xXMd¶¬]„”þE BŽçã_þ„ƶ.«ý‰qÑØûØÝØzéêiý¾2¹¿øΗT˜©Wcâ8´Í·æ8[ˆ‹‰FyþIt÷ °î´Vkè=|Ô¨qX޾>v9ÖÁ1^z2T6õ¢Êø#”*']›ÒÛl­ïÄÒ·ò©“šÀǶu‹±uÝâ‹"„œ´:­Ã~ˆi[Q±Â¿’•‘†¼Ã?£¡¥Ûo}„R«¨¾£9&ÇÜÇx+PÕÔƒÊÆT6v£O(w‚-jõ­WJB4¶ÿa2R IDAT­_‚më– õ"„H^a>üâTÕ7[å@ŒåGâùGïÆ[ÖOÛw¬mhÁCϽ‚¾Õ×?ÄL…šÀ’E ûã·¨ªoÅ®;Ÿ¡†”T_N®J§ƒc¶˜J•¨jìAEc7*»Ñ;(u['VjÛÖ³µbÓ’b.*€œ+©ÂŸ}‡ŠÚ&«™Ö®\Œ—Ÿ¸é)IÓòý$R9{ñ(,©˜õ¡æpÉÊe8ðõ—¸PV‡õ[ƒRNõç 2jSæõ|æ™W·ÌUpúû"-‘K—§ãúí+qÍ–eÈN‰Ehp´:äJƒ| {Ý&ãÞº?É*”×µáûœó8y®RÅÂB‚4çÁ‘ƒ®ÚŠ•K棯_`ŒDµÜ[=ýƒøïÏ9PªÔX±8>Þ®]}ñ÷÷Ãî]Û¡R¡¢¦aŠëžÉ{L%-9·\›€:÷,@«†˜¡ŽØ’Ì8ÜÑ1ê ðóAjbÖ/KÇîí+ñ‹mË1?-á!,H†Ôr€8é>[Ù ‘Vüpì<ŽŸ«€T®BXH "æ8Dã¢qý®-X³bú…èíšéBãS”aPQÛˆœDdD²ÓS\úÝ<<<°ùÒ5HŒEÞùbÐÆŒñ³'yÏèñ…ÙYØ}ÍU(®l` 2”2FÕÕ [rŽ^Là˜ð$ñõAJBÖ-eA²{û*,̈GDH ô™B5¶ûf ö°&òñs8~¶R9«‰Ìeˆ$Äò±ûŠ-X¿j „bt÷ Zì/µFƒÜ3p¾´‹²3áÚ<+ ³Ò±yý%8}¶C*µU °¯N¬•íØ‘”hýšK°sÛäV²% õ2 Q÷öÀ–òŽ‚Ã]Í{ÄÏ×ÉñQX»4×m[‰v¬Æ¢ÌDD…Á@ÑÊUf7!Ùô´q@ÖD¾?vÇ ÊYˆ„""4xN$.& ¿Ø¹.YŽA¡]ÃÒÌtWÿ ßÈD&ÇŠ%óáëãºúÄ1ü(ìÞµ5uèítÑ3ÃuÙÈvlÝŒ k× '¯˜-:­ ˆf Ï Ä×Çóâ"±fI:~±u%n¾b-g%!*<Í@"!fœXnšuÇÉÕÆ&B¤ß=‹ÜürH†5‘°¹‘ØèH\»s6¯_ ¡D6¦øÒXß)Au]¾;xa!AX™æ²Ô…þ~¸þª+”¨¬m˜|î:Y u´­ÝWïÂò%‹±ÿXjÛA´Â~¢˜V«ŸRã0»ª2£Ó!j­U]¨¨ï@E}Ú{AS œ–ÍÌŽˆÕäøhlß°—oX 7*íL©kjß~ƒ“g‹Á0ŒIŸšªóKdá•gö`ñ|צ.üfÿüöÍw¡×Ü~E øäÿþŠ];¶ã¾gÞ±3E ¥ÕeŒ²¹€Ô¨uŒZ‡õàp .pŒ­NªÆnTÔ·£¼¾õ-=Ʋ‹v®ã;±šÏÇåV`û†ÈLI˜sýÝÐÒ>ý¹yçÙ>0Ó_<ÜxÍN<³ç.„‡…¸ì»TÖÖã¡g^F¿@4n’¼gøø¡o¿ÂªåËpý/£¨¢´¸ø£ên15#มa$Ô6w£¼¾eµí¨kí6fÛ&NÛ§`íSg^|4vl\Ë7¬œsinëŸýÇNͳ` “{îÄm»¯‚‡‡k¨P,ÁÿùJ*ªìLÞc)èpü½·/yÏðñâÓ9HJHÀ–›Ÿ@s{¨Á¼SD'ê›ÄGÃÃÍDo PÛܲÚ6”×µ£¦¹z娧qj¨5Oyñ|\¾a%.߸Y©‰s¦[;zð÷Ïþ‹C'òÀÐÄl?.ÌLÇïž}+—,pÉw ( ¯¼ý|ùí~¸[òžáv»jÊàëë‹e;ïƒH"‡¡÷ðÐÚ~°ûT†ÁA\ÎLqL  µ-Ý(¯kCY]jš:¡Õ`Ý™)Ô^+M äø\¾q.߸jÎ@¤£»|ú æœÅ0&.xÀî+·á¹ÇîCT„k’Sïûá~÷æ{Ð n‘¼gøxpP0šË.€¢i¤­¿4M1†îŸbì–z瀃óoLH(õF”×µ¡²¾}´(’™Üc¬N¯8êý»5|^\4v\¶ —o\…ì´¤Yߟ=ýøðóoðÓ‘“Æ€­±,(ÀO¶Ôsàps¡iõ­,HJkZPÙеF;-Ùâ“âøØqÙjì¸lõ¬‡HOß þþùñãá  Ô„>ÊH›‡WŸ}kW.uúg Dbìyú%”UÕ̼cë/¹?~ù)ÎWã–‡_ÑË¥ÔÀ‰“°aŸ 0.Žƒ[Qq/ñðà!:2 Ëæ§âÊM«p×î­Ø¸z!’ãùðòò„T®d}$¶ˆ•±r¥ åµÍøîði>y"© a!Aˆ uý„í×b÷®íÐéõhlm³Œ+–ÊñÃÁ´vvcå’ pÚgàÆk®€P,AM}£™ÛáªÊíæÿåòe¸öÊ8[Rƒœ¼bÀ ÚnîppÐpðx<ð#B±t~*®Ø´ w^¿›Ö,ArB4||¼ ‘A§7X?Ö¬ˆ ¥ eµÍøîð:yb‰¡!.ïv:@‚±uÃÜxõ(šÛA3ôÈß›Û:±ïÇCðôðÀ²…óáééá”ÏõôôÄå›7‚‰3ç M 5Ù͘"x š¼m›/Ö—âðÉ (,¯щ‰¦ß4Üœ±fdŒ1U8Çè솴tô¡¬¦¥5-(¯mL9d{v*+M ¤¸h\~Ùj\±i æg$ϺþˆÄøçßâëŸC«Õ1åRç%àwÏ>ŠM뜛º°¤¢ {žy B£ßcºËM¾ûÆk¸ý–›ðØËïãÇ£ù`äõU´¼¾€lÑé)ƒ¿8pÌq!„ µ«ß’f”Õ4C*SšqŒÂºôŠ“2%Åñ±cÓìÜt d¤Ìª~Š¥øè?ßbß¡ÑjÇ\×ÎÍðÒÓ!1.ÖiŸ7 bÏS/ ¼ºvÚËMþ¼ï ¬]½¿¸ïE”V5Úüe88ÿÆÜ’¶î~”U7£¤º e5MK’íN•³rª:±IqÑØ¹i vnZƒ™³"b© ù¾øög¨5š‘ëòõõÅC÷ÜŠ=wýÓ6Ïéõ¼ôÆÛøúÇÓjNPW˜Èˆ,ßy?„¨¾c9„Rõb4ø‹æÀÁÉ”ÒÙ3ˆÒš&”T5¢´º B‰ÌöÀ3‹Ëìù›×àŠMk±0+uVô‰T&ÇÇ_}ϿٕJ52qçÅÇâ·Ï<†í›œ—ºð³¯¿Ã«o½Š2˜‚3CÍCCCÐXrZén3­àfZOeÊŽ1àࣜ@wŸ%Õ,DJ«1 ÀYg‰±|ìܼWl^7+ "S(ñɾïñé×?B944r][6¬Á+Ï>Žä$ç„î•U`ÏS{!’H]j¾jÅrúæK4µõ`ë-OØ•¤˜'VIÏ€¥U,Lªí*0mN½NŒÈ¢ì4·î…rŸìûŸìû å|¼½ñà·àÑûŸŸÃŸÑ?(ÀOü•5õ˜¬`ÕØ~´Í´¼õ†ÝøË[oàØ™"Ü÷Ì[ z©ˆ8ul Çp’b«VUF–c9Ç('æ$$(óÓçaÛ¥+qûõ;pÝΘŸ>!ÁR«¡R›Zäc…L6U(¯iÄ·‡Nàçcg Iˆè¨·ë__¬[µ wÜ|üP×ЕZƒâò*üp(ñ1|d¦9æË  ÄM×^þÁAÔ56YّĦŽß}Í.¬]µŸÃ¹’D@Ô½]`WS¬ ürHãàÀÁɰ Š$(©jDqe=JªÐÕ3G– ŒšÈ•[Öcñü ·¼f•ZÏ¿ù }ñ_H¥rlX³ ¯=ÿ2R_–þ÷—_ã÷o¿Š¢œº¢òélŽ_=ÿ8o÷Rì”àࣜØ*B‰ ¥• (®ªGqE=Ú»{MƸ™ÂW“Øë 1|\±u=®Ø²KÜ"j_~»~¾b‰^žž¸÷¶ñäž{è`ôéùâR<ô4ë÷pÖŠJÁÑÈLOÃe7<޶®>P‚³yD;ØvEÅê¥Xœ¸\ÄR9JªêQRYâÊz´vö€0¶ž%ÄðqÅ–õ¸rÛ·ƒˆF«ÅWßÿŒ?ù B±ÑQxñ©G°ûªµÛÛ?€ûý,ªëê^QñôôDGM(ŠFÖ¦ÛÁÐ4cèùù0#€ ÛéÇ€ƒsŒr2]"•)PRÕ€’Ê:UÖ¡¹­kt%ÁŒ9cN ‰Æ[×ãÊ­°tA¦Û\›N¯Ç¾àÃO¾Dÿ kV.Ãï÷>…YöƒN«Õá¹W^Ç÷âÕŽ•Ô”dœÏ=ŒŠº\}×ó ”jˆê;–‹ÑÍmVíŠåÀÁ‰[ˆ\9„’Êz$åµhlëë“ÜÄÇðqåÖ ¸rë¥Xº0Ë-®I¯7àëŸâïÿþƒ!î¼å<óèƒ ¶¿¤ÅGŸ}‰?¼ó(ŠžTC³äßøÅ®øè¯ïaßþxö€èDƒÔ`^1l\Q^k»þ•?o‡ÁƒgˆrH…’ªz—×¢¸²õÍí iÖ„dÇÇDãÊ­—âÊm°laöŒ_‹Á`À·?Æÿûèshµì}òÜrÝÕvg^?[XŒ=O=‰T[÷¨¼º÷Y<|ÿ½øÝ;ÿÆÇ_3ÔÑLKÊJÀ:F‡0êµëïúê?/D„ú#*Ô!ˆ õGdhÀ˜ŸÐ ?ðx88™^RiPV]¢òWÔ¢¦±u4)Ï8p˜Nœøè(\¹m#vmÛˆ¥ ³\V&Á¡( ß8‚¿ýë3D†…á/>ƒ¥‹ìK]ØÝÛ‡û{µ 6¥!<ðõX³j%nÚó;œ/­-­,a”­õ°!³ù˜ù¾î®¯^±ÆÙâééÈ`D† ƒ%Qa£`‰ Ddh¼œ´™N̉Z£EiU=Š+jPT^ƒê†fPe¢½OŒ´ŒæãŠm°kÛeX¶({Æ BÑ4~Ü àÄ)¢ÑjQVÝ€âò•W£ª¾É$ôÄHËaŸÈ®í›f "4Ã`ÿá|ñßïqÃ5Wâö›¯‡‡‡íÜ¿ÿû3¼ñç÷YSn’•¥‹!çÇoÐÚÙ‡M7>0z¡çà°ŽQ¹Ñ¿aõŠŠ_¾âÐÎÈ _x¼ã†˜4Ǿ÷÷õBTX¢Â‚ŒšK ˜°@ðˆ°àÎüáÄfÑêô¨¨aM›Â²*TÖ6B§×›õÄEGáÊm—áªí—aùâÓ†apàèqœÌ?‡»n½«–-±¹3çÎã¡§žƒL&7;WA€{n¿ o¾ú2¾øþöþéŸæ£6Eއ)ùH¸:¶]ŒÙšíåÁCdX "ˆ¨Ð@D…!*,ˆ} BTh ¼¼<¹Ù‰EÑéõ¨¬mDQy5 ˪PQ]­N7aLÇFó±kûe¸jû¦i‡!‡sO¢·×_³ üHÛÂî»zzqï#O ®±Ñì\ýÛÿþ 7ïþöìý3?FÑ\K˪+11bÔpÜùå+µ'ƒÃÉ W‡?ŸÇk…o•‘÷Áà‡#ÀŸ38aÅ` PY׈²*•U¢¬ªnBòžX~vmß„«vlÆŠi„!çŠJàéá‰Õ+—ÁˆÌëO¾ð2ö96a®žË9„´”d,Ýq$2¨ÁÓ§ˆNÒ;"F̓ÃÊ{ÀaM<½5à°'щ¿¢"†¡lò ¾ñ',$3.B¡( UuM# )©ª…Z¥S±|>®ºü2\uù¬X²pÚ ÒÕӇȈ0غþ·þ|÷}c^S‚ÐP4–œC}s'.¿íi€Öi ½‡Æ—C°É¿198œYeʆ8ӥɌÿ:* üˆ0øsu3&<ó3Ó1?3÷Þv!hjmGai9?ˆ°¬[½«—/1ˆœ-®fßèåR£OÃæåWËà Ó0¯‰‹æýL‰8±Y3FÂ@,SB,S ¾µÛ¢&à~db"C†˜È0ð#C¯aˆ‰ Ghp 7˧ $ÙiÈÎÍ£ÚÒÖãg †¨È$%ÄÙ)j¯ û7Dh„í ˜>"ÂÂf¬¿?œ†! z©ŒÁÔ¿á°¶Áiœ¸¥x{{ÁÛÛkÆŸê„M‹’Þã{SíIÇþM,•¡o@€BcžÓð°PD„‡!",áaaˆE€¿ÿ4€ã4k«zºÁnf38Ë¿1œfÁ 'ãµm|}|àëãƒ`Ìž€¶ªúV4µõŒ^Ç µ÷ct¬SüÀmLà„“9&ß:ÃjZÑ@´pbà—Càà´N8qO¡h?Ë7š)]ãÌÆYŸÃiœp2‡äô¹rˆ¥ J5D4âqf ¦Eãà4 N8™]ò­ÑL!ZAØ æ¦Ë°N ä4N8™#¢Pª›W €FÙ2ÞLqŠSt 88Í‚Nf¿8~:½D/—ƒR‰«)NNãà„“9"ë)DÓßc4Sœîµœv 'Îå Z­Î¡6:{Q\Ùš¦•-=®4S.r”N\& Ã@$– P€ƒBHå2„‡ <|8¢4 ÉI‰ðós,Ôÿ‡Ãy „€èÄ05\»a88Í‚N,‹V§Ã P„þA!B „è`PÀB¢@ÈÊHŬL,ÌÎƵ«‘š2ž.HýÝpˆ¹º§cWS\’`Ó88ádœÈJ „,„" Ño„ÃÀ û*“ËGyyz"-% ³3±|É",ÌÎÄ¢ìLDF„OË÷-©jDG÷@ë´ÌP‡iˆ¹KÌðâ4 N.¡iB±Ô˜uLˆABú‡ß_5:­ÉT#c’…aAVf¥³¯Ù™ÈJO…ÏÌ¥F 1× L´ ÊUÐà4NæŒh4Z ÅŠYŬ)!M 1D1hÚ\©Ï‰µy<’âc±0; 2Ó± + ³3;ã×ÚÞÙ…¼sp÷m·@¯7àçܳ,8†Ú;á¢s‡ÀÁi'œL·B •+0(”¡  ÈˆÁQ@(”ª±µ,Õ(6#~¾¾ÈJKÁÂìtÙX™†À÷ÉcÚÖщÇrqàHjëëñèƒ÷r J!W PC ¢Jà‚°œÆÁ‰[ Eш%#P0ýÖ" ôzýÔEËÇÐÆ2&¢£"° + 2ÓØŸ¬ ¤ÌKp‰ÃÒQiikÇ£¹8x,uM#×ëííï¾ðé7GØkÕzÁVŸ7]Mq™xqš'®•ZÃA$@$Á€,XPH¤rv Ñ$«ù°–aê_°G<==‘–’8ˆù™iX˜™ŽˆðP·î·Æ–VJ«Ùº° EÑŠú6¸8vƒÓ88qÈtÈI0(”Žh #$Db„R¨Ôê åØ<Ÿã͉ Ÿ`áˆåóCƒƒ0?#Ù™©X‘†YiÈH7kê±44µàÀ±\:vMmí“Â’Çãá‘ûïüåßß³¾ MhÝF£E¸¸4NFDo  K1(’B ’²å …DR#($J¤ (z¢CqBÙ3Óߊr“„uXÆ`Af*²3R1?# ²Òßu}]ÛЄC9ÇqàØq´µwbÒŠ†&²sëfd¤¥¢¶©' JÙdIJÚf3Å¥NQ™(Uj#dˆ`I1(f Å)†`)û÷DPL5ͧR]&ÿ³ŸŸ/²Rça~F*æg¦`AF²Ò“Ý>»ødR]×€ƒ9'p(ç::»l¬}ÌþþÈ÷²ÚÆÇÃÚÆ@¡Õ ŒÝ›âR3Å&pp~÷†a –)‚Œý1y?(”@ –A«Ó™ñLVJÒ(ÇXùÉ,$Œ¯É‰ñðð˜ýƒ®²¦‡rOâPÎ tv÷Ú6ŸÇºzÅ2¬Yµ-½8rê@†‘×50 1'Óq]^ ÜWtzb9b)„bù(L!’*À0Ì8SÁäYfÖé O9g8A&l^žH›ù)ÈNOÆüŒÌÏHAxhÈœòUÔÔá`Î Î9‰ž¾þÉûÞ†~}Ô¨mü¿†!`´ƒ½Ä ”óm0ÓÎT™!‘+ÕJ†a h,a°IDATy/ÖÄr(‡T´‚q戅:±“¨½ÄüqBllÇÂñà d¥%a $Ò“áí=÷†!e•58tüçœDßÀ ‰ig=\'›íi)ÉØ¹m ºúøéXQÛ¨o2ú6ƧŽY&4Í@$SB$‘cСXÁ˜Wôzjì„7™°„w™øøËhd§§ ;} ‰ôdÄFGÎy±´²‡rOâpîi öioVžþÈý÷ÀÃÃÿ÷é hD' z™tº}8ìV¡D¡TX‘D¡DDÎj R9¤²!ÖtÀD‡"™"`Éî±fçP±µN¬Ÿ¯2S“1Ùió0?=™©Ið÷»hüIÅåU8”{ GŽŸ†@$2gAìÐÐÌAg¸~d$nÞ}-ü÷À)„Ðæµi{âX޹î÷ )UI”,$  R…QKP@$UbH¥1¯ÒK¦‚Óò6ÓÀÑf¢£Â‘–„¬´yÈNKÂüôd$%ÄÀã"s‚Ñ ƒ¢ÒJÊ=…£'Ï@(–X¾IÄzÛdòñ2Ö̹ÿ®_ÂÇÇþg?  D'XŒ±K°ÄíÀ1›Å@ш ’*!4‚Ah«-(!–*` (3f™ –´2A·î9O,Œ[Û±í//O¤%Æ!;= YiIÈJMBvú<„…]¼æ&ÃàBq9?£§ò!–H,ø„&éb'Má`ÜsÛ-KøÏ¹hyC#Ø•”Ñ6&€c¶=LÔ=„2¥QSPB$…‚”…„L¡Ñ&O˜œúæ-ü©'þd  ¶Œ8«ŸfæFAhp ²RYH¤&!;- ©óâàíÅY¬4Mã\q9åžFÎé|H¥òI =}Zä“=ˆÐ¼ù_B£Õè¤B¢ˆfÊ·áÖ!R…"Ù éÑá¨d¡ ‚P¬„F§‡åx2å ³ÕÆwÍè±ã8™\íõàñÇGvj²Ò‘•šˆ¬´$ÄD…ƒ“Q¡( Ee8rü rO@*W8ÅeÏ82w8)!÷ßqJÕÈf6FÑÔd¢mLKx¹[€Ã@ÑÉTK‡ 4‚a,$”ËT ÚâNHbÆ]ê@tqÔ¤-âïëƒôäd§%"35Ù©IÈH‰‡¿ƒ9,ç¬éj PPXŠÃ'ÎàxÞ9Ȱ 6š¢Ö†ˆÛ«‘¼øôðññÁŸï‡R¥ÑËÄŒ¦op&}.ÇZÇBA¦‚P6±TÅBA¦2B ùÖŒ©`)HÉEKÓðq…-†¬´d¦$ +5Y©‰HŒã_tK[E¯7 ¿°GNœÁñ3ç RMn¢Z‹bŸÆH¬Ó+–.ÆuW]µF‡í;ÄjÊææ™ömX `©B‘œ…‚Èø#y‚P¦‚No°œ/ÁŒ9a™ò–ÕpkýV·cçÍwІÿÝÛË)‰1ÈJM@fJ<2SX"$(€£€•¢Óë‘w¾GOæáxÞ ©T#l/fÈ}õùgÁãñðùwG!•+A £êîÇÄDÄ3½†X®†H¦‚D¡†X¦†H>ľá QªÁ˜¤\›¸5Ú7q¼³-ï·°m=©Î·áûXy]¡ÁÈL‰c!‘¬Ô¤$ÅÀËÓ“›ý6ŠV§Ç™óÅ8r"'ó ¡Öh¬òuͤiNvíØ†5«V`H­Á‡_ülÔ6Z‡}ZŒMD<#âuÓÞ/-‡2O¹´8®Ÿµ fÀ„°h6­„˜ô£‡Ä¸(VƒHŽGfJ<²RãÁåf¼¢Ñhqú|1Žž(À©sE,,ˆã`¦Æ´·—^~öIÀ;~ ¡DÆjCí=îàÛ°ÚTq–&á,"qœµ¢bîOþ~>HOŠCVJ2Sâ™´y±ð÷õáfºD­ÑàôÙb9Y€3ç‹¡ÑêŒ3”X˜¸îaŠZ3¦ï¼õf¤&ÏC]Sþýõa„вšj*wÑ6XpÌðŽIWü?qR[ÖX1‘¡ÈL‰CFr2“c‘™„˜ð8‡¥SE¥ÖàdA!Žž:‹¼ó%ÐéõV˜–Ö­ˆ',‰ÛÜŽ …á™G!/¼ùOÐ FÝßE4Ã+)ÃNQ2óà0½lK;#mÜ19i¤%±Þ@œ4gØ¢Þ^žHIà##9ɱÈLŽEFrB‚ü¹Yí"Q©qêlŽœ,@Aatzý¤×¦¨McÑßÚdÉ{~½ç„‡…bßþ(©j½Ž––׎Ó6˜™††U¦ÊÄyëµo¢ÑŽAĆõ÷)Ž›^Whp2æÅ°Zļd¤Ä!9>ŠsXNƒ(†T8™_ˆ£§Î¡ ¸ †1»ˆ§G‹œ®‡‘©$ÆÇá;oƒT®Äý@+š@뛨gv‚à mfÄ yðxHŒ@Fr,ÒçÅ c«ID…s3xE® £r®¤”²kÓ |¢NÓ¶(Ç/>ýkøøøà¥·?f—_õ2 £hl3jÓžoÃ!p¸ÒèJ—й ðóAZR4«IR“¢áçãÍÍÜ™B‰ãy…8vúΕT¦þ>Bfdâ:S{°¥-`ãº5Ø}õ•(«n¾ý'Â0´´ªÊ ·YIqžÆáªwpE%&2ó¢Y-")É1ˆã‡sigX$2ŽÍ¢òšXØã[#溘º>ÙLš ð÷Ç;øh†ÁÞ?ý„0êÞ¢ ÝÑDÛâñá¤x|G·†{{y"9!IÑHOŠFú<ö58Л¥n"b©¹y…8væþŽÕ6äõ5 Œ G»38¦¾hâù!HOŒDZBR"‘ž‰ð.±Ì\’Ξäæ#'¿ Í&Ôg0${:S@ºhi)óðô#{/½ý/huzh€êèÆÄÌ^n-L•?o¤ÆG 51iñHMˆ@J|8|8‡åœ”öî~äæ#7¯Mm]SëÎ\Uu“2¶4b/y<þü‡ßÁ×ן~s' JBQ´¤Â4BÔ­¢cÀ±vñ©kîDnA)Ž”¢w@8N]v⼚æìß³=yÏýwÜŠ«vlC}s'~÷ÎÇF¿Fc-щ`>B³œÌ©ilÇñ³e8q¶ ½ƒ¢q&½ûç‘ë¡æ+—-ÁoŸ}*µ{ö¾Þ¢èeä -Fh¸ež sL!¨nlÇñ‚2œ8WŽ¡ÄŠü­–sZóÈZ:NlPÛ'[Q™KÉ{ÂÃBñáŸÿ///<ýûÿc£CY¿F¹Ñ¯¡ž~ ³•õm8q¶'ΗC ”Ú»i×ls]öoÛr]L_òâ0…x<þß›¿G|l ¾þù$¾?œ7Þ¯¡š­~ n, !¨¬kÅñ³å8y¾B±ŽnMŸÎN}zÏ`¨¹5@3·2óë_Ý‹-×£±­/½õ‘ѯÑ4'ü8Ü  ƒòÚV?WS*!–ȧxâ;ÙÆ‡ûfÿv¦ aK[ö$ïÙ°vžyôWÐhuxhï;lH¹v°—‘×Ï ¿†Epp+*Ó ‹Òšœ8WSç« ‘+œôtu•ÝäFçLmËI+EÑü(üí­×áááßúMm= ”Ze¯1ëýœÆ1CBÓ Jª›qò|%N]¨„L¡šø#v2ñ‹Ln¯ÏTYâˆë`z´-;ÛòòôÄÿû:¢"#ðÝ¡ÓøæÀ)Ö¯!)-cÍ¿ŽiЦQ\ÕŒç*‘WT¹rhò î4»ÜòÌrV=UÛ’÷À"Ðf6yãsøÕçŸÆÚU+ÐÒÑ‹Þ4&æQ4×­pp.ù58p¸X ¢Ê&œ<_…¼âj(†4p8XÀUÃmÚWTìÓd\—¼vihÃí<|߸û¶› Õé±çùw Öè@´‚>Z^׌‰!å„'caa P8‹Z ©5ã6‡¹©oåÉ\òž‰ç_·k'^xòÐ ƒG_z ­]F¿FaÙ\ôkpàp’è .T°°((©ƒJ£µ*ÔÛmm|'þÅ”¼gý%+ñÞë¿ÇÃÞ7>ÄÑÓEc0Ð’Ò¢¹ê×0 nEÅ:Ñé 8_ÞˆSª‘_ZFofDÚ¦ž'Ùå. 5ŸÃÉ{ˆ—Ÿ‘†ÿò6¼½½ñÖ_᫟Ž¡eÅD+Ž×ÐÌ5¿§qØ(Z ‹“ªq®¬­nœRk9RѼãÏÖ•Û™D='Nr¸Î•ä=¶¶ÍÇg¼‹à  ükß!üõßß„!´´ºœQ÷v›ø5fM6/NVså8u¡ç+ Ñ0­Õ\šÏÙ!Ùö×e%vú!Ì3ÈI~ @ Äg¼‹øØüt¬¯¾û ZÑXÍ µµPÀë½ràp‘¨5:œ+oÄÉ 5¸PÑ ^oÓ,v7ZA5'’÷XÖܼ¼¼ðÑ{‚¬ œ>_'^ù+[ ZÙÖÈÈë›L ¡›ëÐàÀ@¥Ñ¡ ´§ kQXÙ ½š¨ÒÏRŸKÞ'­f¼óڋذv5*j›ñàsoƒ¢h0êžZZYk„†©3”žËиhÁ1¤Ö¢ ´§ kP\Ý:‹±·Úy;&ÝÙœá’÷LÝÎsïÁ ×\‰ÖÎ>ÜùÄGc5Øpò᯳¢’SÁq1¬¨(UZä5‹’š6(Êr® +†"™b ¸µÇ‰©è,¶CÜt³1yÏ7ïÆcÜ·=ú$2ˆ^*¢„çJÆAƒºX 1ç5Åù¥ 8UX‡²Ú6P43É’¥óm»C©‰ƒí¸eòK¡æîcþ—[o¸o¼ô,äŠ!üò±ß£w@bPÊ)AA!#Ã,)Íà ‘)ÕÈ/iÀé¢z”Õw€¦iÛQsÉÆ·q¶M¨¹{&ï¹ãæÝxýÅg ÓpדDc[7­VÑ‚³À†KÌÉpò‹R¹ ù¥8UTІ04uÙ,.2ߎ“/ÆPó»o½¯=ÿ$h†Á¯ž%U£ÓÑ ­á"‰Õ˜“àÈU8SÜ€3Å ¨jìÍ0pÅpgêÄ\¨¹ûkn÷Ý~3^ùÍ „à™ßÀ–jd(%**$zÙ æðÆ5›À1›£bÙΔ4âLQ=ª›{À0ŒM£„8éiFœ”ÓÂ塿nd&9\j’÷þØwáÙGEÓxæ÷°š¡å UŒ²µ £^znޑ܋&4´õM:‘Ü{Ûµ{š Ö€îbLÞóäž{ñäC÷B«ÓãWÏ¿Ãú4MÓ²šrhpš†;£O(C^I3Î7¢©s«ƒÏŽ‰Ë­¨8 ºÓ«¹=óÈxü» W á®'ÿh\=¡ ´¤¬Ähž Cc8À‹æ 1CàèÈgÔ,š»˜tßJ•€L‡]έ¨L/4]¬E>ÿë=xøž_b@ Á/û=ÛºF§£DE…FG(§iÌ48º¤È+mF^i3Z»6Í$—‡dÛ"\òÛ¿‹3¾’·7Þ~åy\·ër´vöá¶G_c#BiµŠ^¸@ô2&nç4éGg¿ù¥-8SÚ„Ž^±s— ]ä‡ vfwKÞc)ÔÜ1Ð93y™¡{†¼ó:V/_ŒŠÚfÜùÄÙ½'¥œœÜÅiÓŽŽ>1òJ[_Ú‚Ž~±e½Ú™ÛEˆƒí¸•ïÊ[=ÓÉ{ì7E-š¨6˜¢©Éøø/ļ„xœ>_Ÿ{›Ý媗Š(AA¡1ŒÜ4Nƒƒ†+ÁÑÖ#B^Y+òJ[Ð3(µ]/Û®ÝÞÆwkй>yφµ«ð÷·_CpP ~:V€'^ù+(ŠÑ ú(ṓ k\p—+ÁÑÒ-B~Y òËZÑ;(³ËAlzš¹~â^,6¾µ×;W’÷ÜvÃ5øÃóOÂÓÓÿÚw¯¾û ›¹KÝÓa’Oc|raÎGS§å­È+oE¿@>évÑ>'qÂðɬüÙfÎ\ û<ˆå*Õw†vLZS:Ѷð\µñ9y6†šß~Óµx驇áëãƒïÆ oþ“]n¥Ô*ZRZd¬°fn‡+ÃaÀp CÚ›Cìšøv¨ó\¨¹C6¾Ís|'ï ›/?ƒ+¶n„F«ÃS¯ý ß8Å6¥ôQ¢Â2c-×á•Ñ4á¢Aáãpj’â¤vœñ}Ü麸Ps§j[+–,Ä_^ q1hlëÆC{ßAS[@hšQ4×Ñòºf£–¡Âèr+ØåLpXõП‰'®;­¨˜±«ínÇUÉ{é7ÕÜÆ ‡‡îþ<µçnxzzâëŸO⥷>‚V§6MJ͘&\Œ†ËÁ1Ͷ°³VTfÌÆwÐmß­’÷À9ub£"ÂñçמÆ5+¡Rkñ›Ã÷‡óŒ¦É`/%*ª0š&*˜ß¨ÆAcZÀá"5ÖÝ·]ÛÔ·¢â<l’ó7®]…w^ý ¢"ÂQß܉={ßAkg»Ôªhªeäõ-&¦‰iP·râZpØ >Ûù4#nn—»G­RÛÛšË+*žžžxzÏÝøÕ7ƒÇãá??äâwï| ÞB©‡Œ¦É gšL38\’m_upËí˜Q{ÝÔ.wŠÇšKšimËÅZdB\ Þÿà X¾x>†Ô<÷ú‡ØŸS`Î41ݤƙ&Ónª¸UÎMwKÞCì·¢bów¹éÚxá×"$85íØ³÷ttM“ÆZFÞÀ™&îäã NHd˜Ä)Æ%ï™Js³¥ŸSç%âõ½cÍŠ%€O¿9‚×Þÿ z½„R ÑâÒR¢ µ Î4qpX3&ÈŒNܹdã»òöºkòóç{{{áWwÞŒ‡ïùøx{£»O€—Þþ›yÑ ôP¢¢ JΙ&3+ÿ—aW(<ð÷IEND®B`‚OpenLP-2.4/resources/images/song_maintenance.png0000644000175000017500000000100412657640340021041 0ustar raoulraoul‰PNG  IHDRµú7êsRGB®Îé pHYsììu85tIMEÙ +AebKGDÿ‡Ì¿ˆIDATEÁ?OSQÀáß{Î)ý£¥ÖV!HiÚ@ì`BââFLü~7uñ™0à`ˆqb01b4±@Z F°…¢½´¥öörÏ«¦ŸG¸dÉ=¬ÖòP^´ˆùo¥ðúÉþ»_¡þ3 [ï_=«™z¾Ö:êHÇ:ÑH#èXG:ÔæÑÓû ¤¶wo”…¿< (ݯwkn&éK1 PÀ#X|i&é¬Ù•yR@¹$(cšbs~OE \E¦<Ê€>Mµj ×¥Á!%”< ¤Ù`Ÿ¬¸Ø¹èÌ/Yá#Ž–IÐ$à„"·¨Ç™ “ò×äˆ.«Ì“å”I*¬rJ›ŒqêÎíY¼d„:–>5{|¡ÇM¨Ç}ë.EsH‡{,Òå!Ëm†¼%MÎÄ 3ÑF»J™ÏЦÀ?©ó‰2Ú¡Ú8´ ‚ÔU"BBf¹C‘-΃—?X´»³½¦ý\éÊ7Y$Ç1Ýêl®¯?úþ/L%L1½<»’Ï£½Þ 9jøDüñ°±¢VN¯IEND®B`‚OpenLP-2.4/resources/images/media_time.png0000644000175000017500000000171712657640340017641 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<LIDATxÚuSMH[i=ßË3æGM4q‰¥©íÆ8•1¢¯*CpSµ`SZ¶H—©¥í¢]v1˜B[ÆÅÐEã`(H£Ì€SÄ.R¥õ4ÑmÌb4?¯—·vÑï-¾{î=瞉¢ˆï¡¹¹Ù077w€¯000ðP­Vÿ‰DâT{û‚ééi¹Ûíž çs¹\Á``ô̓ÁP2™tþ1<œü©©i¡].Úl¶_O º»»)..vY­V¥V£···sÑH*µ–3®ÅfcO~{òùrooI•ÉÄœwîîÎü;ó§D088hÝÙÙ™pï>{ûöÿ¬Q§“å«TÐh4…BˆF£X[_Ï\îïç}^Ÿ8999'B{&8Žè­7 ½›bC}=+Ìd */Ç)ÃÇ¥%,..æ~nooo¥££ã\[[Û£l6[ Ó)”J( ÄÖÖÀÉdÒ Ò …Ž+W¸¿^¾Cáp† `$ýûûû’'”‰Œ‡‰‰ ˜L&¬ÑšÉÏi”Ífóãë×®;Ó™4Kåjkk³óïÞñ4£Ãçó¡®® Pnàt:AºôÍc¢¢¨àC‘¶H¯P*Øææ¦42IDWW´Z-VWW1:: *~AQ¾õÝçÜØØXÖÐÐÐI^ÌSÇ{.0Æôtßà…Ëåú„/,ìŽtõ)˜IEND®B`‚OpenLP-2.4/resources/images/projector_item_disconnect.png0000644000175000017500000000525712657640340023005 0ustar raoulraoul‰PNG  IHDR@@ªiqÞsBIT|dˆ pHYsììu85tEXtSoftwarewww.inkscape.org›î< ,IDATxÚí›PIÆåÖ»µj-Pª}*k×®•¹sçJ||¼$$$Дô Ñ Fètù>oݺuêùÏž=“Ë—/›Ïooo9vìXV Ð%ç,Àç?~ܼð‡ÅÅÅe—|.ŸŸ£  ¾?<(S§N5Ša9ÛjòäÉ2eÊ:t¨”.]Ú(†ñ¥á¿I24¡lÙ²YQfoß|\¼xQžã1>Ó1½5¼ÊyšÇ€ÐÐP`4"„WoÙb±H›6m¤C‡Ò©S'éܹ³tíÚ•g^3œ÷ñµ\Ã3spîÜ9yðà¥M X¤)ÓªU+×±cGݽ{wéÕ«—ôîÝ›g^3œ÷ñUºiÓ¦ip ¯òéæ1àìÙ³rÿþ}£ J3fÌ ßÓ­¹zô—¡î]¤ÿþ2vToñÝG $#‡uWáݺu“¾½,¬Ú ®á•`ºy 8sæ §´h‚ÑeJÁLõpQEÝkZS™7³¥¸»»‹ß‚޲la'1b„,ön£Â{ôè!ÿ˜Ø@Úµk§MH®ó€éæ2@Ïó`Q¦ØÈ­YTQºté"ýª‹ÿª:2lØ0ù÷¦¦²gk 7nœük]Þ³gOY¿´ K Ó1}pò4—zâÓhDûöíµDÈâ¯FãÇ—™3gòÌk†ó>ã1¾Nk×y˜Ë€Ó§OëY`£zH«ç>[:­\ç<¿žžžžó÷÷w ÈŸ+W.;ëû§NÒÓâ¶Œ ñÙ2¦·žGž_Ç€7æ|ô¼ïܹ33³N4Z¹reÞyóæå?yò$ ÐÊ|]À¶²². óø:~Ó¦M®˜|ˆÇ5Ge)AAA‡—,Yòó‚ Ь_¿> 888bÿþýrçΣ /”d.Æü«ÀbŸ´|®Õ|† ÁÀnLT|ä½C‡©FiÕªUœºÖ?Ò–!Y•Íô«W¯æó³ßÂЂI ŸæGÝŠ¾%^<*\übüdÅÃ’ŠúHMM•}ûöɉ'tuÈ.eŸ„G1¶>|81,,LîÞ½›>,2LÁ{G{KÄ»þ1 ¥ìÚµKÐ0òGf›ð¿¬„_¾|¹‚gWS·›7o*ø7Äóª§L Ÿ"‘I‘¢Š}˜ˆÏ>5aÆ èÈäûf–Ç ïããcAc¦áU]Þ½{·lÛ¶MB¯„*xËòÇí?Ô Mð Ï}ÊãÁÉ‹Ëç5¹™Ã£ã#+V¬P]ÔY[g^•†• ‰Êu`î^0>›2f̘ÝÚa?Áô~ñâÅ´àéÂ÷ë×Oׯ\¹Âî§‚½å9Ϫ$(øùÈ!qD[ê a6¯Ÿ¯7#Hrr²ì;OxUî_»&‰øü> ¦þÖãsxU@õMiáçÏŸoA/.Ëð<´ , 1€O ’¸à`‰6|ö`gpRPm‚*W®œÏt~Μ9™ÂsXz ¶V‡=kÖ(ø{·oáU¿Æ +V¬èd*?kÖ,Ë2…ç&$[KKƀ䌰¿eË–x,n¸¢ üÕ,>·——W‹/ϯ”~"ÙO0ÂoÞ¼9K\®ÅŠËÃ|Íd€=FoWlÁcˆË5+»}ûv›ð¬Fx¦c¯Ýß[·n ŒãPï[kxS0räȱìÜyëÖ­o­áÑŒë¥OŸ>¶J¯n ž½Ev{9RK¨P¡‚Å^Á›Ê¼Ù&L˜PkícÇŽõt²ŸCÁWAPEŒ&dž ^¢Þt` Úkl—ð–ÙQyz›Ê1¼^‹ãí¾}ûšÕ!KðåÊ•3À›Ð¼ÕŸP|ÿ'MرcG*[n| ÓÀc–G-ZÄ3D¶ ™ÂcÞ„à°C p2dȨÁƒûÄdÂòírÈ‹YŸ4ðK—.???ñõõ•áǧϯFbÉ’% ð&5-·=Þ~À? þ?à …uŸÐ„[¶l™LŸ>ÝÏ©-n{e«ž.|Ñ¢EMOeÖ:`éé"€SYü¹¨È†àã„Z›ƒ9Yg»aÞÌUà/X“ûÕà& 4'5 ËVŸ×܉¥V`PM2‚§i‰… 2Â›ß ÃÓ¿»¹¹ý†>Àû…  4ÚŽÜ” ¨&Ü‘ÁÏàçÀ›ßì¸p¼7ºÀIÂä  Xô¹Ïýx4שب˜Š>ÇožÊëí^X¸ ãÙÁc¢Âû—_~)ýŠHQNæÏŸß¹`Á‚?áìèÌm”>/vU¸ïÝ»7Ê<·¡%aÐâåäää¨?‘%J”p 4ÿϰoQ>Þ®ð¿>ð2‚ÏI"|nlF*¿gϞр÷üNÀ‡þ‘†Çç-GÂSlñ_ðn€x_Àï|(Œ‰*S¦Ìl Ÿ# ¼àïx7À¼/àGËîø|9þOgoxgÀ»Þ ûëFs¸ ø¼ßÍßÞð΀¯Þ\yÀ«LN—uÐÎÙÙÙÁÞÞ^w`r¼þ ‹°îÐ D†IEND®B`‚OpenLP-2.4/resources/images/auto-start_inactive.png0000644000175000017500000000137712657640340021533 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÜ !)¨K$³ŒIDAT8Ë…Q[H“a~¾œæ–…Y$)s‰nÌ´À¢u“JB(,o"ÐìªÄ »Š.$u†DQxX­È,ÄÐåÈ[ÎJæ1m¹94·ßÓïöëþ·‹šû«çêƒïyžãÒ p˜30lMOLR?ÓîÒ§1eäàò¸ý¤¡ u€mû XH Ç¤ Îve‰®ñ*šõ¶ˆîW{Äðh&å¤ýzBn´Æ/°4!À1…’ÎU„ÈR"‚àw ƒàu#’D€‚?¡¿6!åÒ–7Æy×p¨Éþ0‹‰"P߃ÜÖðÙF“÷·v^pvž¥Ø8ݦ¥€æÄöâq6l.(ìµ~.ÂÿP[rXÉä­=ÍÄ4Òz¼qä…ñûÙ@ÖºÔŒW!%“öõüÜË݈I*g«ü½g½ä>G+<„ ZY ò¯Êà~Y”Žð»Ð™*5D1‚[ Æ7-ðÜý:` µÆØÅÇeˆÞIÄxŠðu:ªÓ¥³=9¸¶Ä¤%‡<}Åäé9&z?–`*Ë ¹‚í^>ô§ß€ˆï0B®RA˜úB‹SÃŒ÷õcµ;Í€(›¹­j©¾².`­3|>{ß¾29‡U¯›¦¿yƦœþ«Ü¤üœ‹Ë^:Úa… Ï볎V|B–—Óo3”ŽfÚR r9[^àñc:0˜yÑ•0XMÉÆ-1‹–˜X E*dL•çXë„…2Ïšã("J~A`¾ye{ö%gž¥:G*†5)Y[us¶è(¸yÌëKÝ›µP[UFrßÝXê½³ÃÙiÒŸ€Ž6ýöfBYw}ücx]cÐOF¶*ú Ù‹IEND®B`‚OpenLP-2.4/resources/images/projector_edit.png0000644000175000017500000000132612657640340020554 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsììu85tIMEØ 6à¼}VIDATxÚ‘]HSq‡ŸsfRá2•0²ÕÂ0¨0½1/ºÑ‹À O¢ ²L«‹Œ`AA‚‘`EÒ÷Ea¤¡a(¡¨‘YJê]s¶LÏÎtº³ý;ØX[P¼¼ï¹xŸßËÿH`°ØÎP°[^y{cAæš#!áDH/„háü‹xz‹xyßNF{€—«30Ðüp»‘eÙ(I’õÒc† Ë_KyÝú…ë­2,SZ–G$ÉD`2™ÂS¨›LÆì·WÑÛÓŦxvnvsú¬äjÉ’ÏÅA#ÑH×KŸÃÝ7õÇ·7ØêãYožáVéj*ê—jž·iÓ‘ü™Jž}2þ„ Õ>VHj.YH­@_ö“aJŒÔ!´éÇ\¹ëa^Q©.QÐRËPå`1æ‚$àsœ~ˆíΟ‡ÝÜ<5‡yÓAfyX­V€%c'ê Œš‚З«y×íÄvtŽ-Ûrõ’––†Åb F`ü.á'à¨ãÁ³~ž6OPRè!7'þ_GHNN!33aâ¢ó“m´5·SÛ4IQÞ"‡ y1¸Ÿ)çæ5Iôõõ±Êœ ýU z%¼A+{wQ~Xæ•ý8Ã#ß©¬¬Ô/HFUU.•—¿ºb?gÌ:?¾ÎIFQ6ãñûÈÙ“9eÈXöz½Ø®ÚN>"È:÷jkĵËÇ„c¤SøýË" êÝ/:::„¢(¢ì|Ù'`+!¢öQͲÝDñ™â`QH`d…¿cÑ€N`‰(~™Ã ôööIEND®B`‚OpenLP-2.4/resources/images/messagebox_critical.png0000644000175000017500000000134412657640340021547 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<aIDAT8¥“?HqÅ?—äîB4ir6¥É„ Z[í.‚ b³tVC$"ˆ\Üœ .‚¥U÷  ¢-©ØBmê¢U/†„¨ñôÎ$æ×IKÁþßô–ï‡Çãû$!’$Ù x øù»2À6B”lš¦µ%‰E]×÷Ä?¤ëú^"‘XÔ4­ °9m||<íéyþ~rÒZ_[H6EÁátbw:)™&EÃÀ®(.2Þvuñ.á*ŸÇå÷Sƒ·äРІÁÖð0éd’õ¾>Ò쯬°“M&ù<4€êõþªíú‘¾NMy¾LLxù=É?< ƒ]vࢺººñÅà`§'[[®+Ë’n;T½^êãñLóؘúz~~eyyù%ÜqLÒ]çü`ÛMûd³Ñ¨IEND®B`‚OpenLP-2.4/resources/images/settings_plugin_list.png0000644000175000017500000000144012657640340022006 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDATxÚu’ÏkAÇßd7?º5MÚjmk£ µVB€zDA "¨ˆxEÄ“G‹þÞ=xó x(zÐ"¢x<¢VDªµ‡–4iw“4û{wfžow!ä`góøÎ¼yŸ/ßÀ0D„ÿ­»ïç”|føÙ¹ÒÍ+÷ÓÖýëÖÒ­§ó_ÞvÏ©°Ë Þ»täÁµrþb…Œ&‡~·V^Ò•¶«Á7³9¤" iÿÇÚ‡°/s92À†o°usÕ¸újf’.7éI½Î_¸¾4«ì¯lM Ìô ÉatO9í-)­°•²)Ë`¬én§š¾¡ÚÜ„cÙP»"Ê…£Ú™ó`qmn¥ íÁáÐ9îÙ‚ö`¡C¥¨¹Á.ÐTU‘­PO9"ì$ÝèLåH›ÊŠ+™ï,‰%`‡Í¤õ»ØAtº!IEND®B`‚OpenLP-2.4/resources/images/song_search_stop.png0000644000175000017500000000132212657640340021074 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<OIDATxÚ¥“ËOQ‡¿;3Z[ ÀB åa$¨qeŒ‰;Wîd§ {H|›àBMŒ?BW.]hta ¨A@]°ÐP¢µ N¡23ë&N [Orrïæûò;wÎ)%ÿS»jNˆÁUxfærɦ\.K§u·X¬;³³öžBálŸ”ŸwvÃ¥l6ßyw4ÕdY¡¦!=§bw.çâX£$!‚»»ò=7n¦Ì*²^ÏÃW§ïºÔ}iµ²tÿ^5óc9’hÿ๎ôXÏí[)½\B(HW-*tÕ†‚ )‘ß¿‘N::ƆH`Ï{¯_Mjó è¾OÛ¹!Z‡†Ô=y´Ÿ¿@çÅK˜ÜÉIz¯$&zƒšç%ª&hiiC˜&8F&ƒuù Áˆ1uw sè««*ÑÆû‰m&Jà€`³ŠVYG/þbeôîÂ"aI×ecúÞôuÛf-2 ›6ü\Æ]_£ýÁC̾~þ|ý²Ýfÿ~Òžâ'âˆÒC&J a«¦³£¶¸xú$¾ïÓóò5ši"Tô‰ö`JˆƒïbŒ6“è²AÛ×ÚƒO ¸–z ~YJÁŒMí¸ËÑÃRÎD‹HÞ˜ŒÙK"S!Œ*ÂS¾„¥ÁÇ5Y;á„pã&F’WJrÀWIRIbñ8ºaP÷<Ê&WʵS ðnA$‡ê'JÄ-K f÷¯Tª*—ÏDp£àê/²*FU@§IEND®B`‚OpenLP-2.4/resources/images/video_delete.png0000644000175000017500000000123212657640340020164 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×¸fÛgÍF«tù•Ê÷§Îòå¥e¿ l×ëõú¬Ÿøô…á7ÊÕâcßÜÚñÑmµ:ùZ£•­n4Ë‹¿.•..\²%à*° 4ëõsöOŸÐß$ZÂ<ì'ÌIEND®B`‚OpenLP-2.4/resources/images/projector_power_on_tiled.png0000644000175000017500000000164712657640340022646 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEÞ /&Ú1Ú4IDAT8Ëm“]h•uÇ?ÿÿó:Ï™“Òm̵\+%‰[3–‚»°N+"£ˆ`Õê¶.¢Ë¢#òÆ"ADLÊ9aù²9–Ê$ß‚Í&ǽïpÎÙyyÎsžçß…S°ú^}ù}áËçâ÷/Úܹp5k¢@ñ¨”§º{Þ}n¢£'\ýH{$}‡·tÜóÉhÑË®]ÿ–Ppnläø‘÷οpàгœ¼~?«m1ú>ûõ­ß”+H¥V™ý+†R X£¹ï¦ãqcï<°í‹¯»¹õ \×…!WŠó4¤Ûiݼ…¶MO¡Ôÿ€ôаRþËÃ?Ž6 „"·Z`xc¥Ÿ0½^hz•†¾aS°•xq‘:+LUUH—ãÄ’+ÛÞ <ÝÝR9ñþŸ‡uÝ’Ret´°I,³Dǧ\¼:‹ݽ([Å“(å#!éí¡Y)õ]ÐXÏÍþ™¨´ë 1~ì6–iá¤|ž íæÑ+,墤K \×!–›Ã­º,fg *XÊF‰•瘽³% œ„Ïåø0+·2hR#]Z%QŠyb€î¦W°´ ¯µ/.ÓÓaký.¥e4©I©|°ƒG¾ÿ™és˦A 0Ö#…ÆWÉUVq=‡RÞa|þ4í%撚JJ©”B3$nÁðL¾<:ˆáÛ„‚ ÒÄu\<åRöŠh–`*s [_Ç¡(Áú) f%ÔÀ®Ó1,³'g5“äìÑK!™¹ãúäm¦ó“Ü<=‡­Ç²l¢×bHC %ïîxU?“]tæak‡WVäry’÷ò|pðC:v¶295Á…+#4562°ÿsÎÿ}Š‘“£xŽ:.¾èx‚í‘æöæ¦3‹e7q7o8YWlïßÈ·oŸ â;¤œA½K ù¸7)HÍ" uwˆ{IÚºôb¢¢jêÍË~UíÜÐRC¨%Hß½4Û½3Ä3QÒ %PŠÔl1òðaìz§uدúûa›@½‰Q«¡éÏQ”³.…dÍ”LYÙûßéµmÛ ê]ÊUÊ«ú(mç¤&R ×hN|:7ölðc _éIEND®B`‚OpenLP-2.4/resources/images/general_export.png0000644000175000017500000000117612657640340020561 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ûIDAT8•’OkQÅï©8Íz]¤Ðe›’E‘â®í¶v×d•`?D ýCÁvB ²ö;èŠ(†Z t!³Ô,&㌣s»ˆcuH =p7ïqÎ=÷Þ£€GÀ.ÿ‡®ˆ ’Àîh4ª„"h­ÑZ£”Ú*€ËÁ€v»ÍÞÞÙlö 0Сü»ÝÕÕÃჃZ­…Báiô§ M"‘X;ÐZ“بE`š&;;;’ËåÞ•J¥' (Ž'“ "¨H@)Â0¤Óéàº.Žãà8ûûû†eYý£££{®ëæPœL§௃ÕÜ©Tjí,ÚE„^¯W+—Ë£dD¼Mà6b7A©›ÒšårI½^çúúzk„t:eYýããã‡ÀÛ$€Š;Ð7KÍçó(¥°mÛ¶I§Óø¾ÏÙÙÙ}y~rrb'£MF7ÆaãÍ0 Æã1žçqzzJ£Ñø^­V­ÏHŒ’išd2ÎÏÏÉf³R«Õ.¶r'ÄSèyJ)^¼zÉf³ üÜ\dÑu]ñ÷Ç€Dd%0›Ý)à8Ž ./åý§}à #r$ðÚÍBß÷%‚-‘Ét~-k¬:o‘EþrñmI)ùfc·êº@B€É¦ê&¬YzTM…¤$ +2$E‚,%!É2EÿvûOú¿Ùö•lïûÃ# ê¶"ôïR‘Ï}YUµ¿ „_cÀX0@fŽiændî®×¬¼!_%¦¥dEJoršY– ªê¸M>»û™wÛ¾RÛÏ\tØB/¨¹Í…XKÑZ[Dßæ¬Çó)U¿s^ËÁç€#ãydÀ „„'‡{!iq4T.¥”PÆf÷„pgJU7…/u¯( W½Øûö€ñ‰Pys¦Oè(ªÁm޲KJ¦¶¼…ó4˜Y3àg€fÆ µ|Ÿ!†2 &M¡gðjƒõ(v–€P€1Æ(£ ŒÂ0æxtü›¡KÝ##“ûÛ6Waè@ü÷C@ùµ6$O™(®£m¶ ¾GKqÎVÀ3Øfb}¤åxö\‹ fÁaâèàQʱ$ÔPBÓà# ”‚]×n-]Qt·(Ú^ÜŸXµ)ˆ‘öäÇ—‚×Ú0ò†ÿ:ö¬¡_šIh3@³â›¦?ÏÆ½eŒÐ4Õ³cÔr +€ÛáÆu­7ƒ†¤’€$KS$I‚"g6EyòÈ¿OlþXPÜ(Ö ¥Æ)C7׿Æõ u$'±kÜ[Ü* ”‚e*DšPÃЯð¶ÒG»ûÞë;”êY~ŸãÕó'@:m"%*Ïš&_•›&scÝóà9/TsÊc‰¹yÂV”I-‰cÃGô†(.KçFA…t•`él)U¾Ó¿‚Ýäö”¼<´/™8oªnrI{&¯FX½eýŽæ‡É'ù¿“• ä†Üð˜£ÀéñSHª1,)o¥„¥Õ@2Š „€0 Îͪätü‘ÒUvÇd‡¾{åYJfžjÇ_*Šz}ÞC£€÷i¶óòòIÈR $AK—ˆ´ªçºÇÌž1`ZãÄX7*üxœ^JfC‚Ðt~ 3a¡§Ö•´Ð¿áT?4qH?Þ´Éñvµ0Ë®‹8”„z¦ióKŸäW‚,o“œRW|Nxä]Có`=‡ŽÞñ“àH¡º´. ÜÒ=Ψ2 À°+rênßJÛÆPuð¥3oŤ‚ ¶O¬_ŦâkÎ%ýsÏ“}ÐÈË ¤@‚,Ô=f *Oáôä Dµp¹Á,jH'ÇU˜PRjÛ <ºjsèWÇ=>š× 6|6€/N`Ù •|`jŒž[úÖþ>‹ Z +´v‡–q°t¢#l®c¤™ã™ÏÄÒif)‚œº,5£±¼ )I–!ÉID§'Q]Òo±qÛŽ&€Æì-ï?6ÒuÖV8ÒPù†­A¾zbj’€.PúVÂrÚfX€XÉËxYÈù^˜;žm§‰¥­¶ä&à]X¹ N›˃— /Ñ‹÷G^å½Lñx9!gÜ?9Ñsò¬B!ÔÕa Ñ E~‰(Š‚‚%ó—ÇÙ1žéó9@L€ÏŒq€ðìqbfÎÍìgÇ3óÂNs¼f© Š´U¬D}h9†äSغû›†ãXœ§*hµm ì F™ñc{9EçÛ' PQ„M°ëqƒúJËÍA~†ÎJµÐTŠ ëƒšu™å€&$¢2•€[•ÅÃ*œ•¨w]‰ßN>Õþ´õ —Tá­3ÿ…'õ½¬¯‰,—ob.¯<¡ª*R©öìÙ³Ïú(y öŽ Ñ8… «zR á–0œš ñå® ô­ÉpÆÓ3€Ù³ê°¨•X‰"¶z±+PÂ× &¾‹ÛWÜ Û…G~Ê•#¢hÁ§ü«w… †a@Q(Š‚Ù¶þ\s«ÑîÔÐô>·+8I¥RÙ!š“é ä ’û9WÖÒv–Êa-•n[1Žw\‚3zÖ¯—PvbgÇ3fÏëgŒà¡6Ò쾌UWÕP—Û•æ×4¡ëúìfj"µ}äk§Ú£»çYð^bƒn×=ãÁž1Ó—4&íƒLÓµ³gý³y¿A4;™Y“ÜLb¤,»b€ni»n·/~ž;ŽV˜áñf ©ÏïKÏpΡiTU…,˳*PUÉÀðÉßý¢³~Þ$=¨À1½iä·áù>±³òåfßÔiJYáå/`ž>€æç N2²7çJ™5Ì&?P `CËzÊxõèNèo0®Å&¬/g©H ±X £££°Ùlg_ý1˜)Õ ^Ъ°»ý¶ZXv¥¢É\\)chb˜PzžÒÏ.Ó“+jéýsJžÎæš&ÔÖ.Áûƒ»9º¼æMѵk/#ÇØØÚÛÛ144Ã0àr¹àóù`šfžTIÃ`ó>ÅRƒ 9z?øþè¹ ð¯,‚1z·3Z^T)j‚l*Õ£4‘H^°ôóæ 4›д÷˽¥hiZãÊADéFsbùîw¾GƒÁr$’ItvvbïÞ½ðû”•"‘ÐÛ{Š”Ì ”¤¢¿ú’•ƒ7unQ_9ï%1yDG¢ÙÔM}—$Ä{íp»h3%6MÀy ÜÕ¢³©ÈŸYW›¥hk^ ”+èêêÔ]ï.åW†ndO?ý4 …Bíö´·Ýn¬hmÅÑž<µ};:F]ÃR€Rª Ó4a ÕÄ@å!Ä*OÝ×µEûåÿ1¸Äñ#ßtå×e ÍÓæPlR6÷Ï!ý\ð†4×5Á$8:Ðmz×›¬A¨ˆ„±uëV¸Ün؃Ma¶=± /ì|‰Dƒ}ÈF£hXº×ßr+S‡ª©ÐÇoc¼ìøW»·?¾àÿÊV¹0~HzÙ6ïu3¯OæpÖÈ)…óñ>-ðŸküÅ~457à4ºxl/5ªN¬¦ÕÁ:æp:pßý÷ÃírA×4$ Dcq|}Ë#X±±B1®¢³³JB… X½f-¸¡á]ÁÝdÒÿá=Ý[ô§Ï†M8Æ%áo³#)F7ˆSŽ>¯£”$N¨¦³V"²’:¯¬Ÿ·>€‚¦ºF$ŠGpìè Ý׳ŠV+g•Œ14Ô×C` H&’šÄs¿ø–ÞRƒ_Þ‰öwöà „¢ôF"LLNÂWä4T¼@%ûäM][´WæÃ&œoLH@?[5ú€Cu?)nj—a*d€ÎTÖ T–†á®qj²Çp¾SËk„Á[UAf›˜P8Œ‘áa|(Ë‹Fñ?¯½Žnç{Ø¿‹ã–+o‡Ëð€r,½Àáõû1œÔ×ý\㺱¦ãJ×¹pÑ…®£ÇÛ'Äþÿ¦„B?é$åž 7yáö8+IfLD4-­‡\>†Á}1½ì­6ZëiJ|žÙFœN'ÆÇÆÐßߎ޼¿÷Þ‹ØhK}­èx» 7\q# ÙDr*=a³;Kнb燡±%eô®óÁ³à‡ËÚœ(näT>äˆúI¸8eJ&o Ñéø¼Yßà@$TV®cthÌpì]‚ò’0s¹\2+½ÂìŠ/c Þ’¤R)L+*lǵ×Án·Ã49.¿ì2€q<òð£Å5?’Fû¾øo/ßµú±r|ðøèyáJÀØ j1L3 _gsís15¹!–ÊLÓ´¼Ø'$íõªÚ0Fén¼ã5üc+oi DQ<ë}¦&'¡©*¢Ñ(*êF!¥$ø>PB±ç7Ñy°c“X¿~=¾øgwt=ôÕîºýÁÛ°ãñ]çgÁ!±7é·±ºdè;†n€9X œgkÊ4r9üK]èí×ñb &oi ;{"„ ‹al|ª¦¡ÄãÆððÆ&024‚©ñ(úOaßÞýؼy3vìØ999>ºzë???Úµ ,ù ‘àjwG©\Óª\ë$³´Ÿ•Õ!Lˆ\{Ï£VØ<þbØl¶Y™çJßý}}˜žž†Ïïǧo¹ÿð¿…(ЍªªB<Çøø8î¸ó.<µýÉ÷÷ík² ¶Ä†õëüüô£€­sÀ¬N\=m›àv»ñwDrUµa^ÞìÁÐ䀮ÿ2lúâ›Û륜s2?ïœsTE"ð î½¥èDY(ŒŸýÇsø×Ùö¬Ûí®ªŽD.üE{G(x=û‚g öy·Ý)!a*5˜HHuRwI:ÉÍçñܽU!ñhî2§~ÅÆO å-°ÛífMuÕߪ¯«;ÒÙÕ…–ææOþ-±Êk\?÷Õ}D–åYÐÖm!ؘÍ&égBí„çô{4É<¾Õ88s¿´£mõ¥ù¹éʦo&ïH”ŒŒÏ5``¦À§czWä5|аs·L'Võþ=®t0÷Aë©üE# ïÍiTÞlG²bt½Z”Y ®ˆIaR].;ŠÃ»Ìcµ{~ÈtO~ 7›‡àðã±?Ü÷³BáVû×Ç"ßetž`jDSO–ÓXé•‹ã{ìší‡Ç¾§=M[8úOÿˣ˫²UŸ³ïqž®¸J”ÝŒÚ2 ¨`Ꞥ©”M Šojqò-Á`Ï– †~ú»çÔeí@Ï¿ß7f/:ÕŸqáÌKITÞoSÕö ÓŠ¼Œ0p» Ý#}ÈmxMÔl/öþ@û 4ßãF×3 üÑÚÒ?/rT}‰.ÿ“ÀlëW÷  ‹¶h‹¶h‹¶h‹¶h‹ö ÛÿvKyŒÖ+°õIEND®B`‚OpenLP-2.4/resources/images/projector_show.png0000644000175000017500000000135012657640340020604 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs»»:ìãâtIMEÞ  5ôĦuIDAT8Ë}“½K\i‡Ÿsß;×ɽ:Y‰+,¬…«EG°È´a+ÓFðBºüilòG,ØX¤Ha‘n›e ¤°ˆ.’B 1L².qggÔ™{gîÇ{ßw‹Q$‰æÀ©Îááw>~²³³s[D.‰õõõ‡333ϧ¦¦Z\²ººúRªtYÑZ멈ä—Õ1Ú­ÕjÅÍÍM¿Õjáy¥R‰b±H¡P@)àcÐZ“eI’Ç1###ÌÎζ]aŸ'Ó÷»Àk©†4…\Cvž9­n›''¯˜››Ã=“B-´Œ§PI¡A3„<„´ý :9ο§ä“ƒ©\!ÏsÄ9…²†_›p-‚ƒüyôÀÆ$€#6%ÏÇ€séØgŽ<‹ö©MÞDª1Øÿ€.¸B/¤„ š¸\ÄÚ.år™§Í*a‰ðuÇîaÓ>ÑI—ÃãˆV7" »8:¥è@˜tðïÈàøø˜‡o¿áóÓ„b|Äòöà„Gtº}¢°GªsDÜ‚"I…r¯‡ˆ Y–ñî Íç“SnMä›ÓÏ {GQ\B¹Ã¤:¥Z­âº.ÍN“±,»X¢ÖšêÄÏ”¯ -×›„S¥)ׄ<ö( aŒA)…RŠá¡Zë`ww÷ÓÊÊÊ7¯|wö”R‰ˆ˜³Ïü¢g{{û#ÖÚ+siiéñòòòø÷zœ«LÁäôôô/ƘA®4Óײ‚ ¨ÍÏÏ?ÚØØè·ÛíÑJ¥òǽ­­­¿€gkkkækÇÏ&õzý·z½þ{£Ñø¨ø¾ÿÒ÷ýEàÚâââÝF£ñÞ÷ý™³ó‹µ–ÿÉÁSDIê!¦IEND®B`‚OpenLP-2.4/resources/images/song_search_author.png0000644000175000017500000000063112657640340021413 0ustar raoulraoul‰PNG  IHDRµú7êsBITUìF pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT(ÏcøÏ€€Â~ Ç”ÎHMã@ˆ!IsJ)ž÷ÿ÷ßû¿ÂN ¢]ªlÿý×ÿoT"µM»ÚÏÀÿ^ÿ þk¡Ù㼞( Dº-þ;üWƒC“ÿâ Pˆïwþ¯ñ_5þKAQ vËú¿ây$(vEðM >$(0Ew™ô•ÿÒÿ%¡Pø>‡+Š®>áo¢ÿAPä?g'–€bKø+ôY±„$³ÇFþÿÈu‚Õ®€µ€ýˆðO7`0qƒ¡×ë¼X«¹@–ç³ßÔ®Û¹ÿPÈý_ï¿ÇíÿÜX*X¿ÙÃï?+ú‹ó+0zq@2é[ù9Üð[wIEND®B`‚OpenLP-2.4/resources/images/general_find.png0000644000175000017500000000165612657640340020163 0ustar raoulraoul‰PNG  IHDRójœ sBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<¤PLTEÿÿÿ.../// ;;;,,,777777???111CCCTTTuuuSSRUTS<62‹‹‹KKKPPPWWW BBBJJJQ;)rrr„{sŸ‘ƒ   !!!"""#$&&&----0'!6 888>>>AAAD GGGIIIK( N( RD9RRRTTTUUUX(YVT]]]_<"`-`?%dH0fbagREic`l4ooopVFtG!w8xDxxx{]C|A |ePƒƒƒ………‰‰‰ŠŠŠŽŽŽ`4“““šb9šc:¤rK©yU±™‚¸¸¸ÀÀÀg¹FtRNS #'.3CYf‚„•›ª¬®µµ¸¹ÀÁÇÍÍÍÏÐÒ×Üßéêðòõõ÷÷øùùùúûûüüýýýþþþþþþþþaÚ´”*IDATxÚµMRÂ0FÓ$m!¤H-PÊ€ã¨Ù¸rÆ…'på‘9‚ºqÔŠ£Eh©Jú“6:зøo÷=𠟵»De€¶ZZ¦¶º>du¹ÔØ Yã鯆–Ó¶a­F‹ª´ÌÕ·6zçBÐõÙTß?Sm÷®N( vxTzpô*ÖË¥¸È»oìÁÔ$uSŽÌ=çÒ±qÈ]/9œ)æÚû>ŒQ£}î=Íx©|YO]ýî…O&dâô¥o+3FþLÁ¤Ÿ+‹Ü[+¯²r:e„ûsT-;–L„ç?«U¡vËE3»`,XµÀL„s‘ÌCÁ°!]# fÑh|³ òÍisŽÆ·ï‘tjÕ2¯ÁB-ã“Çù6ã¶é_ñ2àƒ9†,å IEND®B`‚OpenLP-2.4/resources/images/topic_delete.png0000644000175000017500000000201612657640340020175 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs7\7\ËǤ¹tIMEÙŒh˜ŽIDAT8ËMŽ[L›e†ßïûþöoKOk)B9°Œ­­Ý†E3£11cas&‹‡O‰fd˺xAb²Åq±l6¶ hmD‘±`8([zúûÿß÷y11¼WïÅ›ç}Hðd#tUÉP,Côvj‰áh zÞ¬üý½ÍSMq¯clabóû–ÎÚoºì‡Î{(Ðõö•Ø‹†æqcèGØmV"4`W…uwSGÕõÝËk§ÃÓy®‰… åDé!G­ë•Xï¤R:2ÛÍ€'-€xgsø&ûéá0 ݾ¹ VßYzÕQ©NÈ7ÔŒAÜ‘ebšG®Î¥T}yZÝÊ回¥†’®xK‘ Á³õ ª¤\“‚¬ÙÕ@ï«VÆ)U¨b¦¤îÊ_ØÓÅvb{ÝÑÒ©*ïÊ&ñÙ'•\^Ô&!€¤¹,Å ¤4 Æ(1I†Èqªû¡¦#Ÿx,~þâ9 ¢Êÿ HãÙhž R‡ šéˆ­!wG±aVâŒsÒþḳØ,¶À»˜EÎÆ²Î4⺬{ØMZ¥bíBrE“C6(#ÍÁäxž—ÖÚ7 Ñúџı˜Åô‘|Üz¹Dì½Öq²× ­×2i¾dºèɳ"гB|Ñ ÖÚ 1ôÙ>a)sÒ™÷Œœ_­Qû‹-EöœèJô9@-A8¸‘;ëØBèm}åÒu´è·e1Ùn'K)ð$!kÃz›½·@ Âûk È‹O½Š…0PóùÌI9rb+&ŽŸ-°›œrM_«‰-ŸÖo~óRõ3SX%ÕdVŸ¢á¹/@ ñøa$¦mX™_Çšà6r¯9RPâÜŸÑ3z,¶nZ £ÓUA¾–BÒ\Zˆ‚ŽÆÝçjé<ÞÅéwa´†ªªY„ú"W«÷W>ŸÕrFUEré—‡tCÍ÷y©ÂaÄ=ûãÞ#ÀΜyã-æóùøÏá_¾mK„4ÓYÆ" I ¥ÔùÁÁÁžl™¤”H¥RÏ766~zo,..N­¬¬|u÷L×ZãððÖ;ºœ1ù|>·¾¾þMÎB Z­žx?@­V£³³³N¿'"xžÛ¶Q©TÐ娽ÝRJ Ïóz.%RJÔëuk÷üW¥RéÀ§ï(‹Ï·¶¶6î¬Aî­ŠÈA jýä…IEND®B`‚OpenLP-2.4/resources/images/general_new.png0000644000175000017500000000110312657640340020017 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÀIDATxÚ½kSQ‡ŸsrÁ¶A‚R*Å9ÝŒ“u«ƒ›»S»ä?hŠ%Ô‚C‡¢ éjÅ=µˆ¡BÓM%è͇ƒ’››œ×æàáp‰_?øqΞç}.óü+«ÜÎ\Ë,e/g§«‡õr»ü@–åI0‚ÆžAkm«”JôÙÇvì²xi‘ÍùMî•ïÎ¥¿¥«%ÀÍöé6ÕN•ýO>W ˜AMcX R)ë±ÓÜÚo@í{èN„Ë‹›eÔ#5Bõë vçYg®Ì(‘àtùàrºáv{àñxàñzàõza· ?®©:&½ôdÁðê3EßwÝh(*/½sû:Œ-‹ÉJ/3h®AÀžs@5Aàº× _£™´3ÀÑ™@ £úÐ"„šwÀéNƒÓå†ËíÇÂëuÃív‚íÕ9ç|M)½^žaSஓ0÷O¦Of ä¸ú3FuŠ›£g[)/šÔ7u@DAßýoAܼ—)’”‚ÍÌ‚IÐ4ÁH‰b’^)"Q35¢Èë÷=Y=ãï€íÇaÅî½z¨G…6i Ò6‚ÄAÃòoRÝ´rc¨âÕ§sðñúàùKÓlCšÒMÕ¼f›T†I{M§»™ÿšq^µêA‡}nÙ·òP}£CBM[Ñtr’ìv8¸\zJx=^x½x=n¸]QÓÔ/>îÛ)Úíy0wvÆßÇ€{~îÀþb¿Ö ¼CÓ´„ZÒ¶Á3ƒ ]“QÒv-íÀjéi+“ÌHhQ„»`ONE²;Œj£ Œ‚Q -+ýòª‘I)÷Îj\½ü{°pé¶oÀŒi6ô+ɲ8ÔxTƒÆ¨%(J-¢aIÒAÝ­ Ò^õ­÷²¦¡mýBÖÆ9rŠ\ ·¯˜ ´ P=%%€¦©CÇ`ƒ{*WlˆîŸ;Û‡¤s`Çn)¡ŠÊû[G–vmk èûVM màÐ%ÐÜ·6JÄâ™$à!D[wÁáÌE’#Œj†.PTgc„1‹L½²LŸ’âýxéêÖÐ9ð¯¿p¥µcïv<ÐI€¤-°0°°¥“c4JÚNˆ>úĬ40¼™"FU‰‡‚«Ípz{C ‚ LÐÓR ¦ç?ØÚüàÕ£íŽUåÊÚyÿžŽåë"gÁP”ݦimµ‘XŠ$í„Ú ]9Œšo:£!âªåØ" \ÕÒPÕYnäšÖp¢ ~ÁSïB`¸\)p»<ð$ÄQJÛ·ÇþÈ ²VE‰N€ù¿ó¶@°ô.Îúb÷^Ž˜l/j–܇UIâÿá€Æ,M$U•è¿›ž€¨Æès€r@1<'§ÕÚRÇ2Jˆ‚hãrØœÃé½ ¢À`DQ„h Š6Q€M`ˆD#îp8üñœÇl›òý™?Z:eÀý³ö¯íQÐíM<0Á VPL`[X`î›]¡yŽ«Æˆ«FçhzÞ¡¥6ÛirºðR Øl€&ïC¤a!ì6NW Ün¼n ·))nM.;pŒ×W}6 _§ øõÌt<úÜ‘;gÜG4t¬ê·Ëo‹ÐYµ‚id¶Ê„ë¿s#hBôÑ&D–QÃl¡´ J¦YúËÆÏ” 5}ÑÕ.×%:lDQ€@UxSûÀåö Ë×€Ûv¯‰¨gm…û\”»áʱQ-Í $¡æ¨¼É ³”%¼©îÖ¶ÙØ¬­²(ê^›qNõó6Ë5æL3ÑJ³öÓkxM8q#É;Ø\ý`#_#™¯ÖÊ·žàË7fM;ÝoVî94½S˜¦hΊÏ+…‘ý‹BDŠIí¨ÔO´»hß"[µ@ã€Fu¯yÏQ'¤M'Ì‘çª.ˆ„ÌLã7FÔ茙°§ôƒÝSˆ$zG÷=¬.Y—Ž›s(Hs8|©ê¼IWS,[y sJzgB…ØPU£Òî¹ÙÜNŽPœúÖ±£` F… \ÏeÍ:30ÒvœHsnÐᜠšÀ™ûq"<½<€peü¢ÃY‰õk_R–}Ò›ªÏÒÓÈÉÕ Ë2b±ÊËË·Ÿ± Àî½µyi'å|lÝÉɵWäj‘Ö“‰˜NG³¢m,µ\GÛæš¡ Ô`WÛP¹¡fy¤úuÔ8¯ªzà©>‡åRÜTº¶n·ÀërBjxKûð#‘/ßR‡ëÁ—âDq‘ I’ I´v“³ÌÆŽp`çRyÏe¦Â}®ªh}‹Ab1©m´-ÂG;ôúÄ¢íÚßΚ)댑¶5V§ÑÛ¸g\õâ¾¥ý‘áÚ‡ç'GÑ7ß©þþî’ãê ’fùR–S@=n}ñ†sEQ›ªªÈõw?ñÅâ£;Ÿ›¼nœŸ;ÞkûÞÌý*ÒPè—Ô¢ì*¦(òi½½)’f­6GߺjSsÁÒÝ™BhzÑCc_õóŒÝ‹¯†ÓåE ú}m᪾qW’›“ISS} Fžjš†x<Y–F,e—ôª=ü¯î.:ëzÀ¾Ã»ö¢ñ’‹Ã¡æ°ïÊÚJ œ\S¤£Ú“ARÒh"e:2Ä:y¢íƒ,] ÆnÙ—#¯G)¤¦?k‹WJê’-×Ódßpš™Ñ¨ªŠææfØív£ ÖG_UÕv ˆHà·NúúË÷>оs΋¢#±-õÁ‹†)JT›2!†Ö¦jBY'AŸ…úÄ:û³€–`‚¥¼™+G戧föAAAlò*mÉ&ͤƒ/½”h¨¯¯ÇÎ;qêÔ)¨ª §Ó ŸÏÎùi h Æqï”Ï‘ÝMîY×d?4ñ¶S€ —'ap_űl£3ã¹6O²ÄÇ ©£ápè›SŸv˜ [t c:0 $»3гg¤;wà/uý—eäé§Ÿ§Y™…謬ĶmÛšš†´ôn…"8tè ¤Hø´†dLó®(=5>¯LZ}ÎKbŽ*xðF®œlˆo­io’âNb·Û¹×$€Ö© ¼%hf¶Ƕ2JQPtJŠ¢Ø»·Byêµb-B¯do½ùÉÊÊ‚Ín×GÛåB¿’ìÛ¿oÌŸŠ¯¾BaÏb€R¨²œH)ÆqÝȯ0fð±›óÊb~ë÷G;^Ù{,÷N†ëÆ„¹«¢³äq‡t8Ó±uŸ™¤Ñ$eå–àâB µq7eqO^*ºdãÙgŸ…Óå‚ÈD› ªªbÎïç`ÉÒ%…ZQ}¢@=‹‹1nÂD\A<.#á˜0d3ÊúºÝ?Bž÷EM»úrVlˆ|\ÒK»)¦z}ûs îÇ ËQb ’¥Œ ìoSß,IŽnèÛ·ºw«ÐÞ]õÍå©'µ¹œÜ|Ë-p9Pâq„C!ZZñЯD¿1}!¸ìüLTVVB É †¦*ˆJD›rÅZ2¤÷±ŸûGÈo)6á\X¹1„·#ÃÛfCQÏ‹0¨w-–ýµI¹ÿ…RÊ…^BZª'ÑÈ@rr2êëQUU…ŠŠ |¶m¾<¶ -u!ûJP±i®zÔ(G¸Y_ø^<3}Ù‘µ;ú¦ÛlÊžs‰Gø¦L—Œ²RñšÖuuæH–{Ù:•ÿì ›ÛM¬Ô‡±°áMÍCŸÂ8NV­ÞñTØÙBnŽ‚ ´ëÕ !ˆÅb¨­­ÅñãÇ”dT~¹×¹v»œk2úR€ix{ÞŸ£ÆŒEioéý‚QñiëFïq!\–­‰ {ø€bŒÞRáÜçnºeÔ¡}ÃLŽË§Q^_ùµ£°ÐÜ´ÃÚ¼Å)ê§?²2½EÛŸÓÜÔ„¸,# §°ZDbøÒ| „¢|óFTîÚ‹Æú&”••aòä){îº}ú´ß<2 £§-;?¯ÆÎdŸ} l¯@õè¡aûÉz_Y]“@ üɪH4ñ²ÃXð¦dc@_555ʯ^Ì'Hó¥¸ôµ|JA9Í3ÆPW[‹˜,CUUbýš¿"'3„JLÅñÃUؼi3f̘×^›×´iSy¯ñ×LTŸxü¥ïö ‘‰cÜOæ—¨jwß ó@ó1J¡Š"zäçŸ~L{u¡GùŸÝ9bz77DQL,] ‚j,m[=c U'N  —šŠ±&â‰_?›Í¿ßÖÖV444`ÊÔixcþë'?Û¾ýbQC#ËF\¸ï:³›~ìÀ¨Òà¨to£–”dÇß§„“|µ_I¾6¼4áà1å¶ßfóŠÃybZª”RhšBÎŽ»¦iðçå!*I¨©®†(¸é–Û@(EUu5Ò³²ñÞ-Ä^œ³Àårùóóò¾Uðçí¡ne?Y·½ûb*xÐŒ ¥% &;áZ2õ¥è"w¶ïè­ inn…?'Yõ0!ÉÕIv;/È÷`VQaáîÊ={зOŸïÿ+±Û¦¸>ØZÑ㧉F£‰ ­Û¹À(…Flðº"ʵÃv ?(:öim“mæe?‘w%^ã}±¥/ùî>‘9›Ý:Ùƒ7>Méݽ®AUµo}M丠åe6(·NXƒGo\ºÖíhé_8ÃÕ½Ëzíùþ[•ÁÎìÍE­xäŽ$dw«-klIÞW]÷ÍŠ‹¢P8“Ue䀃ÂàÞÇxš7:wÏÑœg Ç î“÷9 lJã?Ƈ’Þ•ôЇkýÏœ9 A„+™+ƒ.®¥ƒúœ¤=ý-åMAûÜ‘Sc‹`Ë"'†O¾ðßJ^Oeg?T¾jKÎðºf'³Ùôwù” DàÙa> W³Ð·¨ ݳCŸ„£â‚» Þ~âùƒòê·¸êæïäÑ ÀofºñÌ+A,œƒ§AÛÌ`ÄžÂâŠ#?+r$Ù¡­i %-»v†´þ0ÛƒûkÅ?­ÍyÜíxåI’ö‹©… aXöš]Öe]Öe]Öe]Öe]ö=ÛÿrFY#ÜÊJIEND®B`‚OpenLP-2.4/resources/images/general_print.png0000644000175000017500000000156012657640340020371 0ustar raoulraoul‰PNG  IHDRÄ´l;sBIT|dˆ pHYsvv}Õ‚ÌtEXtSoftwarewww.inkscape.org›î<íIDATxÚµ•=H[Q†ß›{óçO‰!ÑAk%…Ó©Cp¨‰P;wëÚÅÍÍÅ­éæè"ˆÐÁÝY+th5m!Ôÿb4¹1?æô{¯Þx½â´/|\8ùÎs¾ó~çœhJ)¸¥iÚ€8î§´0¶áÁî½U÷ÔE.ÜáÁÿÑÍàF£ñoÁËËËúÈÈÈójµv'œ¿3—sà’—jµÚ»T*õ±T*ãì¬ ¿ß ]7$ŽŽŠ­#¨ ˜뎊 nàô´Ê\0¿¸¸8||Œr¹LÔ +“@(‹ØÝÝE¡pÄŠÄ ?|>˘;9¯˜¹œÓÛÛk/* ž¦Ny<žVµ¥R ¡P33˜xå¬S„3lI.íCGG+§EìÓ˜‘{zú ¶öööÐß߇(¢§§¶¶3ßãF°­M¶êƒ-nKüÂC455…¾¾>Ø&›ís‚鑸[€-6-;­ ¯Ü²sΙÚÖÖöF>Ÿ‹5›MPò¥GÎIlœb£¹ -BÙ'Šßp8²ihšÎs[„T*8uà x¹õ`ÐZlmm ‰DBî€ #›ý#~\&ÍÍÍauu¦iºNÄu(¿„&“ILNN²(ž ›ÍC[Xø¼GY2-°ü#Çí·È[g_a\¡01ñ+++Èçó-ŸÓ雯áaÁ¤xà#‘tw?–Ëa5–ç”Á÷Âö²ÕÑѤµX.—³.E¦ûD*Qƒjxø…vö^@uB%hC Xa}ý‹J§¿iÓÓÓÚ­ÐÁÁ … ô:ØmEWW—Æ9wþ5‰^g2¿Šò)Ó¬(ñ]É‘S7IšU0îæÐ V¡ AA‰A‰—^޹‚7ØöÚñý*‘‘0%*Ìù >ûùÎÔ¥¿aIEND®B`‚OpenLP-2.4/resources/images/plugin_remote.png0000644000175000017500000000147612657640340020417 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<»IDATxÚ¥“{HSQÇw»ÛœJd9¦æJÔ¤—ùJä=ü§!TПùH‡˜Bö—Bÿõõú`ÐBzaR†M¨m8›3,q¸Í-ón²Ý¹î¼»÷t¯áÒ²¿¤]³¦sJ¶½7™L A!aÿ¿¹ïïü ¥¯•#]—„OIEND®B`‚OpenLP-2.4/resources/images/projector_power_on.png0000644000175000017500000000157112657640340021461 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEÞ :~§IDAT8ËÓMh\U†ñçιó™ÉÔšX›ØÁ*Z¢I1ˆ4´“¸°‚d—.ÝXêJW®ÄÐ?Zðc#.„B-M `£Õ£iˆmÓfBbj&“d&½™{çÎ{Ž‹àNÁßöݽðÀ›Óý¹_ϯlÛ‚€³ü+g-Hç cgž÷Ï\ äôÌ`n ?òÉÚbõ%àønoÑF»îÇöO]šÿðÖBAÞ>8òÌѾ^þ/ʳk#×ήTT·²³[Sµ¨B½µAGªHJ§©EŒ2e¨E´2ä¼ê­*õ¨B*(­Œ±/µV•žü“ ÷Ž3zh?®3Zš`´4×+âDï8r%jÑ&QÒ­´(p5ÚR÷kë9IÖtðÅüû„ÍçhFçç? ïê9IÝß&Œ"VD‰B?’ƒÅCìO=ÂÍík”WË$±¥™4Û ÚqBy¥ÌÍ­iö¥º9Üu„Ð=AatZIýÏ@Œ6heXV«°ÖÒ¶­½×SBþ¡ [a…”ΰR)3óí²d‹)Q^FSý£!?\úÏKÑ™ÝÇòõMVïÞ§UÙnn°0]æúçKè´`<{3÷IZNDƒƒtÁcñr•µ÷îðb÷+ô^dæçY¾¼ò1àhl´àøqþj/²xyƒT^ù1ºØ›íôrú´m‘óÕÃý/óÜáA¤äS^¿M”„œ9Îë/¼C>Uà£o>äÖì=¼Œ â ùÔ(­I˜š¼Bß‘sŒ ¼Æ©¾wyõ©7Û»äuÄòý¯˜œšD{‚ö40΂2\ 9÷õgܘû‰£CÏòDWÖ&,m-ðÛ Ìý>‡khœMPZc2‚—Q.’ØaCÅí[wX^[Âd. ⦣己¡ÆÚkʈ%˜ÎG³;]Ow\E6ží IËÒ܉Q À&`c‹ÒB¦Óàå´KçÍÕÍÅÆŽ<~ìáŽ`»Ut±ÃZ‡³n/¼²&­v* vÿ arÜNHIEND®B`‚OpenLP-2.4/resources/images/song_edit.png0000644000175000017500000000132612657640340017513 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsììu85tIMEØ 6à¼}VIDATxÚ‘]HSq‡ŸsfRá2•0²ÕÂ0¨0½1/ºÑ‹À O¢ ²L«‹Œ`AA‚‘`EÒ÷Ea¤¡a(¡¨‘YJê]s¶LÏÎtº³ý;ØX[P¼¼ï¹xŸßËÿH`°ØÎP°[^y{cAæš#!áDH/„háü‹xz‹xyßNF{€—«30Ðüp»‘eÙ(I’õÒc† Ë_KyÝú…ë­2,SZ–G$ÉD`2™ÂS¨›LÆì·WÑÛÓŦxvnvsú¬äjÉ’ÏÅA#ÑH×KŸÃÝ7õÇ·7ØêãYožáVéj*ê—jž·iÓ‘ü™Jž}2þ„ Õ>VHj.YH­@_ö“aJŒÔ!´éÇ\¹ëa^Q©.QÐRËPå`1æ‚$àsœ~ˆíΟ‡ÝÜ<5‡yÓAfyX­V€%c'ê Œš‚З«y×íÄvtŽ-Ûrõ’––†Åb F`ü.á'à¨ãÁ³~ž6OPRè!7'þ_GHNN!33aâ¢ó“m´5·SÛ4IQÞ"‡ y1¸Ÿ)çæ5Iôõõ±Êœ ýU z%¼A+{wQ~Xæ•ý8Ã#ß©¬¬Ô/HFUU.•—¿ºb?gÌ:?¾ÎIFQ6ãñûÈÙ“9eÈXöz½Ø®ÚN>"È:÷jkĵËÇ„c¤SøýË" êÝ/:::„¢(¢ì|Ù'`+!¢öQͲÝDñ™â`QH`d…¿cÑ€N`‰(~™Ã ôööIEND®B`‚OpenLP-2.4/resources/images/projector_off.png0000644000175000017500000000724512657640340020407 0ustar raoulraoul‰PNG  IHDR@@ªiqÞ pHYs  šœtIMEÞ8#º¼dqDIDATxÚíZkp×y={wñ w‰X `zP• m*®mÉš¨µ×Ií©bÇõ4Ž›±Óq¦?:v=™6Ói=ɸմuó#×Ê4uÓFvl§]7±-·²É”hQâ$!R @‘‰÷>°»·?$p@Š JŠÛ”gfûÂîžó=î÷Ý]` [ØÂ¶°…-láÿ)˜Oâ¦O=õ”yii©EQs±XT9Ž+½òÊ+Ò¯…Á`/^ôööò™LæNI’n7™L½½½½{ººº’$¡X,B’$”J%H’Y–¡(Ê™r¹üÏóÏ?~¼øF€P(„ééiÀM7Ýô…B¡ðy–eï+—Ë>`˜Ë·1 †a »»}}}PUuY€ê_Y–A)ýöÀÀÀ7{{{qæÌ™ÿ}øý~$ À¶mÛ~_Q”?pP×õeÂ@Yyêc‡‚(ŠÈåre¥RiYI’ ªjŠeÙß9sæÌ‡7J¶Ñ?´··#›ÍÂétöq÷¼Õj=¦ªê†a„)¥+VÖWï«,ÑhÅb;wî\ÞDz,!•ífUU¿êóùzü~ÿÑhTÿÄE…B‹å V«õ'¥Ré”Òî éj’ÕD«Qñ†Ê~B2™ FGG‡a·ÛÁ0 !`YvyÝ0ŒÝ‹‹‹ßôx<—æççû{{{‘L&5¸Ýn”J%‚p3Çq﫪úuÃ0\«ÉÕ²ôêck…„aÃ0èìì\>¯â Ð4í>·ÛýˆÅbùÏD"‘Þ»w/.]ºtãr@[[àp8^Ö4í÷V»ôz.^ËÖû/¥‚ à®»î!dEb¬$ÇÊ/Ã0ß~â†z€Íf B.èºÞ·ÑZ„׋ûµB¢z»\.ãüùóàyÁ`ðòC®Ì „@×õ›N矉¢89??®§§óóó×O—ËõY–ÏSJ­« ­E²–Ûodùµ<‚D"ÙÙYlß¾&“骼pEVUÕßu¹\÷[­Ö7“Éd®»» ›ÀçóA„Y–OSJk’­å ³^”eçÏŸGkk+DQ\á Õ‹a>I’þØív;FGGß~öÙgñÞ{ï5.€Ëå‚Ïç3/,,\ ”²õ’¯eñF­_ËfffJ¥‰D–X †®ë·:ŽgFFF†R©ÔØÎ;‘N§ë@’$(Šò²aŸÚÈÕë6²öZy`õu !(‹…(Šhmm]Q3T‡“¢(_r8÷‚ðÓ¹¹¹BÝøý~—,ËÿØÙZç4’ý “©©)H’„ŽŽŽ«B¡â „PJ…BáéÖÖÖ¦L&óóZIr…---$ËòoÕzÈõÈÖëÚõÔ ëmBËåF–‹§ê‘bUXÜa³Ùž¢”ž]\\Œ®‹ìÚµ«I–å/«ªº)jY}£¡³Ñ|Q)ž¢Ñ( Ã@8^³‚¬ ‹,ËØíöC~¿ÿßfffJk H$¦:::|™Læ–ͯ7±mV ÕûX–ÅÒÒ¦¦¦ …ÀóüêarEù­(JˆçùgöîÝû㉉‰ù«*ÁÎÎNLNNbçÎ4¯HH›!¿‘«×"VK¼Z%¥𦡧§»víB.—[î(3™ ÚÛÛa·Û±´´„‘‘p×Ýßß?\³ƒï±,{g:f`=ÏÙ¨;¬Çúëå§J)}ë­·‚çytuuazz'Nœ ±XÌhjjbX–}ibbâñu+AŸÏw3€>]×MÓ®ÙúбV÷¸ÖyÕí7Ã0$ ½½½èêêB6›Å /¼ ONNRBãõz‰ÓédxžÿÖ––D¥ZdÖšèp:.IÒ_šÍfcvv–Ô“ø!_áõ¬¯ë:¶ïý4ÞûM”U‡†(Š8~ü8FGG5Q—ËÅò<J)TU…¢(xçwV<·šL"‘@¡P€×ë…ªªŒßï§³³³ÌêøÛL‚\m±ê}‹®u½Ê9”R„Ba˜Ã]pDº±45„Ã>»ÀãØ±c´\.Û¶mÃ8A ë:dY®L±Õ× 8Nd³Ù÷†yÒf³ š¦Q‹ÅÂȲ|MÖo$WÔ:Ïf³aRâÂ…iÜáâtÙðãW_5ÆÆÆô@ Àtww³ííí„çùå9HMÓ–]ׇ/–Ëå|>_{>Àn·CÓ´v»}Ìn·Ã0 =N³•ú`#2õ†L=5Aõz¹\Æ}÷~|K ^ý *‚ŸÏGœNçrQJQ.—¡ªêòŒ³,ËPUù|~êÔ©S5C²Ù,Œkšö´ C)e½^¯1==Më •Õs‰ÕÛ•ø=xð Ün7Þzë-êñxô»ï¾›õz½¬¢(Èf³˜ŸŸ‡Ëå‚ÉdªyoBˆQ(¦šnnnþ ß&Ë2å8Éd’©§ÚkD€õ,ÞÝÝŽŽœ8q‚²,k<òÈ#¤oß>”baaH&“Ðu<ÏÃétÂ0Œ«<@UUÌÌÌÀ0ŒÇq“gÏžÝX€+nÕ ãõzÍårÙ(‹¤X,^S¯°Q^ ”Âãñ §§###Èçóúž={˜#GŽ¯ÇƒB±ˆ¡¡!œ:u ­­.¸ÚÜ(J˜œœ€\*^Š¢`zzù|þžñññ·ëž“e’$iÇ}HyÔb±0V«Õ(•JÌj·½òÕÇY–ž}û@)Źsç4‡ÃAo¿ývöèÑ£ŒÏçƒÙb¹lmA@Ïž=Ã?¼ø"Î ¢#² ºªÂ0 èºÃ0033ƒÅÅůLLL¼º©iqUUcÇy-KÃ0Œ F>ŸgÖëä@×uìÞ½¢(bppÐà8ND"\$!Ï=÷8“  ÇÁb±àèKGñ­¿ú~yòC\˜šF4:Žd2àM  Ðõ˯¢Ñ(¾699ùÒ¦ß ¸Ýn¤ÓéŸr÷hKK‹SQ477£T*1땦õ7 n·»víB,£…BA…B$ ±MMMøÊcAàyhå2Š…2ÙþäO£çP7¸@l÷bhhrAÇqè½¥T×€2©TêËGkÝŸ«G€T*§Ó‰b±xÀb±\t8L¡P0š››I’65T„Ù½{7²Ù,ÆÇÇ5·ÛMü~?×ÜÜ –eéìDzH§Ó(Š˜_ZÄôl¿7„|'úလ•Y~1›^\„“o2NžQÄ¥¹9Ä$ ™ ÞýÙ;iþúBqïm€×m`8){¹>q´¶"ŸÉhg~ùA`nÞˆiÔjù|þÅt:ýWææ¯×K 蛼ÙlFWWòù<’ɤæ÷ûI8æl6ÛŠv·¹¹©…Äãqœ;w'OÆÙéSÈΰݹçþ{wÝz7tÉ@qér•jl8koµiš6\®QÜn7l6Ûo/--e\.W‹¢(Fkk+“Éd6LrÁ`„Äb1Ýf³Áãñp<σ㸫úEQpéÒ%ÌÌÌ /«:;€û=‹ÅàøÌg÷,Å÷_ø'ÀÁC¿ Žaþerrâa¡EÀèè(nˆ©T ªª†a|Öjµ~Äó<Ñu]7›Í+Jåjë›ÍfÌÍÍQº×ëåÌfsí[\DYU‘ÉdàïØ\&ƒ’R‚ÓåaÞ?qC ½°ˆýû÷ã‹>4üõ¯=þðý‡Äë¯ü¨n>d3É+—Ë¡P(ôg³Ùç® 7¬ÇãÑ+¡Pݶz½^¸\.\¼xQ3™LTEÎáp€eÙuóF6›ÅB*µ\†Ý&`n.‰…Ù4.%/a)•A|*‰Nõã‰'žÀk¯½¾¸˜šïýë¿ý»†ÈoÊV%Æ?5™LŸokkÛ£(  …Œxïz¿nÄãqˆ¢ˆb±¸_Q”†Kã+oz´D"Ó§OÃÃÃß%„xãñøç(¥ƒ044„îz]èÊGKc&“éžçl¨üå÷úZ6›%™L†‹Å,Ëwc±Ø1°Z­€±±1ÜHÜOeEQ|_„Û- [Ð8Ž3Êå²!Iwå[Ÿÿ2™L/{<žï÷÷÷«‘HøU⺠Çáõz¿Í²ì“Ç9®Xår9àg‹å .¼ ;vìÀøø8~m‰Dšü~¿«¯¯o¹ô …BØÂ¶°…-la [ØÂ'Œÿˆ|=?IEND®B`‚OpenLP-2.4/resources/images/wizard_exportsong.bmp0000644000175000017500000052033612657640340021331 0ustar raoulraoulBMÞ 6(£^¨   ¡›¡›ž£ ¦ ¡¤ž¡¦ £¦ ¢¨£¥ª¥§«¦¨®¨¬°ª¯¯©®³­²²«°³®³²¬±³«°µ®±µ­°¸¯±º±³º²³À¸¹À¸¸Áº¼Â»¼Å¿ÀŽ¾Æ¿ÀÈÀÁÉÂÃÉÂÂÉÀ¿ÌÂÃËÀÂÌÂÃÌÂÃÊ¿ÀÇ»¼º©«¦“•¢‘«œšÁµµÍÅÅÏÉÊÐÈÉÒÊÉÒËÉÔÍÊÕÎË×ÏÌÔÌËÏÁÀȶµº¢ ³—”°˜”À¯«ÏÃÁ×ÎÎÚÓÔÚÕÕÛÖØÝרÞÖ×àØÙàÙÚàÙÙáÙÚáÙÙâÛØàØÕßÕÒÜÎËÕ¿ζ±Ç¨¤Â ŸÀ¢¡À¤¢Æ­¨Ëµ²Ôÿ×ÈÅÝÒÐßÕÓàÖÖàÚÙáÛÚáÛÙâÛÚáÛÚߨÖßÙ×áÜÚàÛÙßÙÖßÚÖ§‹~àÖÓàÚÙáÚÚßÙÙÝÖÖÜÖÖÛÓÓÖÍÏÒÊÌÒÉËËÄÅÆÀÀ½¸·¹´´±«¬¨£¤ž™šŽŽ‚ƒquv_djEMV!+6 655^]]ppqyxz€ƒ…„ˆ„…‰††‹†‡„†Œ„‰€‚‰„Š€‚‡qswikoz}y|€y|€vzqu{qu}qw~pvms}ip{enxhp|hq~Ycp %1  #/GYj'3¡œž¡Ÿ¥ ¢¦¡£¦¡£¥Ÿ¢¥Ÿ¡¨£¤­¨ª¬§©¬§©®©¬­§«²¬±²­±²¬±µ¯´¶¯³¶¯²¶¯²¸±´¼µ·»³µ¾¶·Âº»¿¸ºÁ»¼Å¿¿Ä¼½Ç¿¿È¿¿ÈÀÀËÂÂÍÃÃÎÄÄÍÃÄÏÅÅÍÄÄÌÁÂÎÄÄÎÅÅÐÆÆÊ½½·¦¤¢Ž‹Ÿ‹Š°ž¾®¬È½¹ÎÄÀÐÈÅÑÊÇÕÎË×ÐÍØÑÏÙÑÏÙÑÎÚÏÌÏ¿»Ã°¬³˜‘¯’Œ¸¢›Å´¯ÐÃÂ×ÏÎÛÔÒÞÖÕÞÙØßÚÙâÚÚâÜÛãÞÝãÞÜãÝÛãÜÚãÝÚäÝÚäÝÛãÛÙá×ÕàÓÏÚÆÁѹ´Ì±«Å©¢Á¢ž¿¡œ½›•¼›¾ž“»šŽ»š¾ ™½¢š»¢™¾¥›º¡˜¸¡˜§Š~§ˆ}äÝÜß×ÖàØØÞÖÖÝÔÔÚÒÒ×ÏÏÔÌÌÑÉÉÍÅÆÊÃÄþ¾¼·¶µ°°«¦§¢žŸ–’“‹‰‹|~~loqV\a4=F LKLfegtsu~}€€ƒ‚†…†Š†‡Œ„†‹ƒ†‹„‡Œ€ƒˆ„‰|„giotw{y~y}w{w{€puznu{ou}punukr}gnyfozdnzDNZ 5>JM]m$/¡Ÿ¡Ÿ§¢¤§¢¤§¢£¦ ¢©£¥«¦§­§©¬§¨¬§©¯©«¬§¨°ª­²¬¯´®°·²´¸²µ¹²µ¸±´¼µ¸¼¶¸¾·¹À¸¹Ä¼½À¹ºÂº»Ä¾¾Ã¼¼Å½½ÈÀÀÉÁÁËÂÂÍÄÄÎÅÅÏÆÇÏÇÇÎÅÆÑÉÉÐÇÇÐÇÅÑÇÇÒÉÇÓÉÈÑÇÅŹ¸¯›˜ ‰ƒ£†µ£›Â´°È¾ºÎÄÁÕÍÌÚÓÐØÑÎÚÓÐÛÓÓÛÔÒÜÖÔÞÙרÏÎ̾»¾¨£´š’²˜Ž¼¥œÊ·°ÕÇÃ×ÎËÜÔÑÝ×ÕâÜÛâÜÛãÝÜãÞÝãÞÜãÞÛäÞÛãÝÛãÞÛåßÜäÞÜåßÜæàÞçàÞæßÝåàÞåÞÜäÜÙåÝÚàÕÒÞÑÎÝÏÌÝÐÍÜÏËÜÐËÜÒÌÚÏʳ—ŒÊ»´ßØÕÞÖÓÞ×ÕÜÔÔÜÔÔÙÒÒÕÎÎÒÊÉÑÈÈÍÅÅÆ¾¾¾¸¹·²±®©©§¢¤œ™š„ƒ†wx{fhlOTY*2; &'*UXYjloxy{~€€„‚ƒ‡ƒ„ˆ…†Œ„†‹ƒ†‹„‰‚‡€ƒˆvzehmzƒy}w|vztx}sw|sw}rxpu~mt}hpzeoyeoyaku-4= "+EN\EP^#'1£ž ¢ž ¦¡£§¢¤©¤¥§¢£¨£¥«¥§­§ª­§©«¥§¯ª«­¨ª°©«°©¬°ª­¶°´¸²µ·°³¹²µº³¶»´¶Àº»Ã½¾Á»¼Ä¼¼Ã»»ÇÁÁÆÀÀƽ½Ç¾¾ÈÀÀËÂÃËÁÁËÂÁÎÅÅÏÈÈÏÇÇÑÉÉÒÊËÒËÊÒÉÈÓÊÇÒÉÈÒÊÈÓÌËÓËÈÑÅÂÄ´¯³–§‰ª”¸¥ Æ¸²ÍÅÁÓËÈÙÒÎÛÔÑÛÔÑÜÖÕÜÖÖÜרÞÚÚßÙÙß×ÖÚÐÍÐÀ»Á­§½¦ ½¥ž¾¦Çµ¯ÐÀ¼ÖÇÃØÍÊÚÑÐÜÔÓßÙØâÜÜãÞÝâÞÛãÞÛãÞÝâÝÛãÞÝäßÞãÞÜãÞÛâÞÛâÝÚãÝÛâÝÚâÜÙáÛØáÛØáÜÛßÚÙÝÙÖßÚÖ¥Š}àØÔÜÕÒÜÕÒÚÓÒØÑÑ×ÑÐÖÎÎÒÊÈÍÅÃÊÂÁÇ¿¿Á»º¹³´°ªªª¥¤ž™š˜•–‹ŠŒ|{~mor[^cAFL#+ =>A[\]moqyy}~~‚‚ƒ‡…†Š„…‰…†‹†ˆŒƒ†‹€„‰~‚†ƒ‡imrnrw{€„w{vz~vy}sw|sv|sw}rx€rw€oumt}hpzenxaku#)03;F>GT4IKNa`bqor{z{~€‚ƒ†ƒ„ˆ…†‹…†‹„‡‹‚…‰~‚†~‚†|ƒfjosw{{~‚wzw{uz~rw|rw|pv|ou|ot|nu}mu~jr{enwZdo#'/T]gEMX+3=).9¤Ÿ ¥££§¤¦¨£¥§¢£ª¥¦¬¦§¬¦§­§¨¬§§±«¬³­®®©ª²­®µ°±µ¯±´®±³­°¶±³¹´¶»´·¿¸ºÁ»¼Á»¼Ä½¾ÅÀÀÆÀÁÈÀÀÉÁÁËÄÅÊÃÂËÃÃÌÄÄÎÆÆÎÆÆÎÆÆÐÇÇÎÅÅÑÉÉÓËËÔÌËÖÎÍØÐÐÕÎÌÕÍÌÕÌËÕËÉÔÈÆÓÉÅÕËÇ×ÎÉÚÒÏÚÑÎ×ËÇÒÄ¿¿­¥¯™Ž°˜ŽµŸ–½© Ä´¬È½·ÓÊÇÚÒÐÜÕÒÝØ×ÞÙØÝÙÙÝØ×ÞØ×ßÙ×àÚ×áÚØàÙÕßÖÓÛÌÉÑÀ¼Ë¸´Å°­Ã­¨Ä­¦Ã®¦Å±ªÇ´°Ç³­Æ³¬Ê·²Èµ°Ê¸±É¸³É¸´Ê¹µÉ»µÇ¹´Æ¹´ÆºµÄ·±Äµ¬–waǸ±ÕÍÊÒËÉÏÉÆÎÈÅÌÅÃÊÂÂÆ¿¿Ä¼»Á¹·»µ±¶°®±ª©¨££ œœ˜•”Ž‹‹€€uuvhijX\]DIK"(+ --1QRTeeepopyyz}}ƒ„„†‰„…Š…‡Œƒ†Š€ƒ‡‚†€ƒ‡ruzknswz~y|vz€w{€vzqx}qw|pv|nt{mt{krzkrzls{hqyNUa&*4 !%-\eoZco;BN&+6¤Ÿ ¤¡¡¤ ¡¦¢£¨£¥ª¥¦«¥¦¬§¨®©©­¨¦°ª«¯ª«®ª©³­®µ¯±¶°±µ¯°µ¯²¸²´·±³¶¯²½¶¸Á»¼Â¼¼Ä½½Æ¿¿ÆÀ¿ÈÂÁÊÃÂËÄÅÉÁÁËÃÃÌÄÄÎÇÇÏÈÈÏÈÈÑÉÈÏÇÇÐÈÈÒÊÊÔÌÌÖÎÎÖÏÍÕÎÌÖÎÌÕÌÊÕËÉÔÊÈÔËÇÖÌÈÕÌÈ×ÎËØÐÍÙÐÍÛÒÏÜÓÑ×ÐÍÒÇÃÅ´¯¼§Ÿ¶ž•· —º¦ž¾ª¢Ã±¬É»¸ÏÃÁØÐÏÜÖÖÜ×ÕÜÖÔÛÖÒÛÔÑÜÕÑÜÕÒÝÖÓÝÖÓÞØÕÞØÕÜ×ÔÚÔÓÖÏÌÓÈÅÍÁ½Ì¾¹Ä²¬Á¬¦½© ½¨¡º¤º¤¹¡›¸¢œ·¡˜µ ™µ¢š´¢˜²Ÿ“€ZFÎÆÃÊÃÀÈÁ¿Ä¾¼Å¾¼Á»¹¿¸¸»µ´¸²°³­¬¯¨§«££¥ŸŸœ˜—”‰‰~tssiii[]]KOP3::78;UWXeeepoqwvxz|}‚„ƒ…ˆƒ…ˆ„‡‹‚…‰€ƒ‡‚†~…hkprv{z}‚w{€w{€uy}uzrx~pv{px}nu|mt{kszjrzjrzfowKR\15@!+@FRbkxclwQZg6>K§££§££¤Ÿ¡¦¡¢©¤¥¬§§®©ª®©ª®©¨±¬«°ª©®ª©¯ª©³­¬´®¯´®°µ¯°¸²³»µ·¹³´µ¯°º´´¾¸¹¿¹¹Ä½»Å¼¼Ç¿¿ÊÃÂÉÃÂÈÁÁÉÂÂÊÄÃÊÄÃÍÇÆÏÉÉÏÊÉÏÇÇÐÉÉÑÊÊÒÊÊÒÊÊÔÌËÓÌÉÔÍËÖÏÍÕÎÌÖÍÊÖÍÊÖÍËÖÎËÕÍÊÖÍÊ×ÏÌ×ÎËÖÍÊØÏÌ×ÏÌ×ÏÌØÐÍÙÒÏÖÌÉϽƵ°½©¡¼¦ ½¦¡¹¡·Ÿ–¼¦À®¨Äµ¯ÏÄ¿ÕÎÉÖÐÍ×ÓÐ×ÑÎÖÐÍÕÐÍÔÏÌÓÎÍÓÎÎÒÎÌÑÍÌÐÍËÏÌÉÏÊÇÏÉÇÏÊÇÍÉÇËÆÃÌÇÄÊÅÃÈÂÀÆÀ¾ÆÀ¾ÅÀ¾Ä¿¾²¦¡ŸŠ…¾¶´½µ³¹´²·±°µ¯¯³­­°ªª­§¦§¡Ÿ¤žŸ™—˜’‘•‰‰„{xyqooddd[\\OQR=BB#*+ >@AUWWaaalklrrty{|~€ƒ…‚…ˆ‚†ˆ„‡€‚†…wz}dgjvz{ƒvzx|€vy~uzqw}ov|py~px~mt{jszjrziqzfnwW`i;@K:AK\eqfozdmy^htMXe©¥¥§£¢¥¡¡¥¡¡«¦§¬¨¨®©ª°««®©©±­­®ªª­¨¨´¯¯´¯¯´¯¯²­¬³­­µ¯°º´µº´µº´µ¾¸¹¾¹¹¾¸¸Ä½»Â»¹Æ¾½ÈÁÀÇÀÀƾ¾ÈÁÁÉÄÄËÅÅÎÈÇÎÈÇÎÈÈÎÆÆÏÈÈÐËÊÑÊÉÑÉÈÑÊÈÑÉÇÒÉÆÔÍÊÔÌÉÓËÈÓÊÈÔËÉÔËÉÔÍÊÓÌÉÒÌÉÔÌÉÑÉÆÓËÈÓËÈÒÉÆÓÊÇÒÊÇÔÌÉÓÊÈÓËÈÒËÇÏÈÄÌÀ¾Ä·³»«£º¥¸£š³›´š³š´”³Ÿ—¹©£À´¯Æ½¹È¿ÉÄÀÇÅÂÇÆÃÆÄÁÄÀ¿Â¿»¾º¸¾¹·½¹¸½¹·¼¹¶º·´º¶´¸µ³¶³²´±°³°®µ³±‡tl§š¬¥¤¬¥£¨£¡¦ Ÿ¤žž ››ž˜˜™”“”‘ŒŠŒ†…‡‚‚}|{wvsqojhha``VVVMOO@DD/34$$&BABQQR[[[fefoprvxz{~~‚„€ƒ…‚…†€ƒ„‚†€‚…kopkonz}€zƒvzvzv{€ty~rx~nv|pxow}mu|lt{ks{ipygox\enFOYQYcajuclvcmwcmw[fs©¤¥§££§¢¢ª¥¦ª¥¥ª¦¥®ªª°«¬¯ªª³®¯®©©¯©ª²­®³­­·²±±¬«¶°¯·±±¸±±º´µ½¸¸¿¹¹Â½¼ÁººÃ¼¹Âº¸Ãº·Å½»Æ¿½Ä½¼ÇÁÀÇÁÁÉÄÃÊÄÃÉÂÂÌÆÅËÅÅÊÅÄÍÇÆÍÈÈÎÇÅÏÇÇÐÈÆÍÅÂÏÆÃÏÆÄÎÆÃÍÅÂÏÆÄÎÇÅÎÇÅÌÆÃÌÅÂÍÆÃËÂÀËÃÁËÃÁËÄÃÉ¿ÉÁ¾ÈÀ½Ç¿½È¿¼ÇÀ½Ç¿¾ÇÀ¾ÆÀ¾ÆÁ½Å¼¹Â¹³½±«¸©¢¶¥Ÿµ¤°˜¬™”¥‰¢Œ„¡Š€ž†|‡ž‹…Ÿ‹Ÿ“ŒŸ“¢—“¥˜§Ÿ›¨¡ž§¢Ÿ¦¡Ÿ¦¡Ÿ¥ ž£ŸŸŸ›™˜——‘ŽtaZš“‘˜’—‘”Ž‘Œ‹ŠŠŒ‡‡‰„ƒ…€}{}xwwsqtonojihdc`]\\ZYRPOHGG>@@156#&'+*+===KJJUUV^^_ikkqstvy{{~‚‚„…€ƒ…‚…„fijrvxy}€x}€x|v|u{€rx}rx}ow}pw~mv}nu}ks{goxgoxhqzajsZcl`irdmwclvcmvdnxcmy¥¡¡¥¢¡©¤¤¬§¨©¤¤«§¦¯««±¬­±¬­´¯°©¤¤­§¨±«¬°ªª²­­°«ª³®®¶°±¶°°·°°º´´»¶µÁ»¹Áº·¾¸³Ã¼¹Â¹¶Á¹¶Â»¸À¹·Ä¾¼ÆÀ¿Å½½Ä¾¾ÆÀÀÈÃÂÆÁÁÆÀÀÉÁÂÈÂÂÈÁÁÉÂÁÇÁ¾Ç¿¼È¿½ÈÀ¿Æ¿¾Å¾¼Å¾¼Å¾¼Æ¾½Å¾¼Ã½ºÂ»¸Á¹¶À¹·À¹µÀ¹¶¿¹¶¿·´½µ²º²¯º²¯º³¯¸±¯¸°¯¸±¯¶®«¶¯¬µ®ª´­ª´­©´­©²«¨°¨¦¬¥¡§š¤™”¢–‘ž‘‹œŠ™ˆ–ˆƒ‘‚|~wˆyq„smph‚rk€oh~mh{jeyjewhcsd]ugaqb\{pl„€~ƒ~|}|~{y|xwzvvwsrtpoplknihhecea``]\[XVVSROMLSNHOIA<;9233)*):2(" +*+989DDEONPYZ[bcdlnotvyz|~~‚~‚~‚ƒ~‚„ux{imnvz~y}‚w|y}‚vz€rx}qw|rx}qy€ov}nv}mt}ks|hqzfoxfnwdmvbktdmvbkublvblvdnx^jv¥  ¦¢¡«¦¥­§§©¥¤¬¨§¬¨§«¦§­¨©¯ª«ª¥¦­§¨®¨©­§¨­¨©­©¨²¬­¶±±¶±°´®­·°¯¸²°¸³±»´±·±­½¶µ¾·´½·´»µ²º²¯¼µ³¾··½¶µ½·µ¾¸·À¹¹¿¹¹¾¹¸À»º¿¸·¿¸¸¿¸·½¶µ½¶´¾µµ¾··¼¶¶»´´º´³¹²²¹²²¸±°¶°®´­ª²ª§°©¦±ª¦°ª§°ª¨¯¨¦®§¥¬§¤ª¤¢©£ §¢Ÿ§¡ž¦Ÿœ¥žœ¢œš¡›˜ ™– ™–Ÿš—Ÿ™–—”œ–“š”’™“–‘Ž“Œ’Љ†Œ†„ˆƒ€‡~„~{‚{xzwxu}vs{urysqwrovomsljqkhoigrmkpljnjilhfjfegdcebbc`^_][^ZYXTSSPNPNLNIFLGDLF@OG>SH=SG:G>4<6/0*#I9) /$7-#*)*444?>>GGHRSS]__gikrtvy{||‚}€~‚ƒ~‚ƒkoqmqt{ƒy}wzw|ty}rx}pv{ouzmu|ow~ov}mt}ls|ir{hqzenwfoxdmvdmvajsblublvamvSal¨££¨££©¤¤¬§¨ª¤¥­¨¨¬©©ª¥¤¬§¦§£¤§¡¢­§¨¬¦§«¥¦©¤¤©¤¤®ªª¯ª©°©©¯©ª¯ªª³®­²®­±«¨²ª¦³¬©´­ªµ­­´­¬²¬¨µ¯¬·°®´®¬´­«µ®­´®­´®­´®­³­¬³¬¬²««³¬«°ª©°ª¨¯©©®¨¨®©©«¦¦ª¤¤ª£¤¨¢¢¦  ¥ ž£œ¡›˜ ™—ž˜–ž™–œ—•œ—•š•“™•“—’–’”“ŽŒŒŠŠˆŽˆ†Œ†„‹†ƒŠ„‚Š…‚‰„‰ƒ†„}‚~|€|y~zw|xvyurwspuqotomqmjpljnkimjhlhgjfdhececaea_c_]^ZXYUTYVR\VR_WP[TM^VO[RKVMETKAPF>MB9H=4B8/E:/D8,F9,J;,TB/UB/WC/N=*N<*3).$4'?/C3$O>-I<.:4/951ABBLMMXYZcefnqqvxxy{|{~|€z~jmpty|~ƒ‡|€…y}uz~uzrx}rw|ov{pw~ov}mt}lt}kr{hpyenwenwfoxfoxenwdmv`ksblu[gq7CM¦¢¢¥ ¡¥ ¡§¢£¨¤¥©¤¤¨£¢¤¡ ¦¢¢£žž¡››¥ ¡¦¡¢¥Ÿ ¢¢œ›¨££¨¢¢¥  ¦  ¨£¢ª¦¦©¥¥¦ ¨¡žª££©¢Ÿ§ Ÿ§ Ÿ©¢ ©¢ ©£¢¨¢¡¨¢Ÿ§¡ž¦Ÿž¦ Ÿ¤ Ÿ£ž£›¢¢œœ¡›™ ›šž˜˜›––›––™•”˜”“•“’•”ŽŽ‘‹ŽŠ‰Žˆ†Œ†„Œ…„І„‡ƒ†‚€„€~ƒ}}{€|{~{y}yw{wuyvtxsrwtrwsqvqoupntpmsonqmkplkmigkhfifdfbaeb_`][[WVURPSOMSNKRMITNHVOHYPHXOFWMCYMA^PASF9TF8RC5OA2O@/B4'E7(?0";,<-6*>/@0=.:,1$5(2%1%.#-")/$7)D3"<.L9&ZD-^G/hN3RA.>4)=>>GHITVV_`biklrtuz||z}~{€€qtwjlqy}€}‚†y~‚y~x|€sx}qw|qw|ou{qw~pv}mt|ks|hpyfoxenwemvcluclufoxdnwcnvaktXbl%-¦¢¢£žž£žŸ¤Ÿ ¥ Ÿ¤ŸŸ¡œœŸ›™Ÿšš›––›—–›˜–š•–œ——›–—š““œ––›••›””›••›–•›••›—–œ—–˜—œ––œ—–𔑗‘Žš”’˜“‘™“‘–Ž–Ž–‘•Ž”“‘ŒŒŽŠˆŽŠˆˆ‰‹‡……ƒ‹„€‡ƒ‡‚ƒ…ƒ~~‚}}||{z}yx{vuzutwsqvrpvrqsonspnpmkoljnkilhfjfeidcgcbebaea_c_^`][a]Yb^[c]W\VRWQM`WN^UJaVKk\MhWH_PBVH:M@4OA3J/ 9+0%+!#"  #1$6(+ "-!0$* +!0$&&$"2'C2!7)L9%dK1PB4::;DEFPQR]^`ghiprsvz|{~}€„knrmqt€„†|€„{ƒy~x}€v{tx}sx}qw|ou}ou|mt{kr{ipyenwfoxhqzhqzdmvemvbluepxcmwT`k#)§¢£¥¡¢£žŸž™™žšš™˜™–”—”’”ŒŒ’‘Œ‹‘މ‰Œ‡†Ž‰‰‹‹ŽˆˆŒ‡‡Œ††‡ˆŒ‡‡‹††ˆ„‚Œˆ†‹‡…Œ‡†ˆ„‡‚€ˆƒƒ‰„„‡‚„~}‹v}{€{y€{z~yy~yy{wuzvtyuswsqysowqosoornnpllokkmihkggjffheefcbecac`_c`_a^]_\[[YVSQONKIPLGSMGTLD\QF`SFUK@VLBVKAOE;UH2F9+J:*N<)H8&S?*N;'A1!=/<.>0 =.9+2&* $*0#'!  ""+!$'(+ )5'5(3')!(2&5(1%0#."."0$(&7))2%oT8cQ<677ABCNOP[\]ghipqrtwyy}€vz}fjmquw‚„{~y~€x}€v{~sw|sx}sw~ou{ms{ms{lt|mt}jqzir{jr{iqzhqzfoxfoxepyenxeoyQ\g%¤¡¡¢ŸŸš›™”•˜”•’ŽŽŽŠŠ‰…„…ƒ€ƒ~|€}{||zy~yx~yw}yw|wwzuu{vv|wvzutyssupnwsqxsrvrqvqpvqowsruqqtpnrmlxnhokjmihkgfjggifehdcfcada`d`_b_^a^^`][^\Z]ZYYVUSPOMJHIFBJE@UKCYMCUJ>PD9OC6`O>TE6H;-O?/K;,C5'?2$?1";-6)8,@2"A2"E5$6)7*7*6(* -"+ *,!/#)#%"'/$5(.#-!,!)* $+ 5(5(,"-!,!4'/$7)+ +!),!.#0$4'-")* 8*7)1%/#1%<.+ !/$(*R?*nV>344>??LMNY[[fghmqqswywz~lnqhkn|ƒ|€z€z‚uz}uy~sx}rx~sx€ou}ot}ls|ls|mt}kt}hqzfoxfoxfoxgpzeoycmwcmx^itEQZ $,¡˜™–’’Œ‹‡ˆ…‚‚€~~{wwwssurqsonokjplinjhojgnjhkgfifdjeehddhddfbae`_b^\fb`ea`d`^c_]b^]c_]b^]a]\_[Z]ZY\YW[XVYVVSPONKIHFCKFBPIBZODcTFdTCXI;NA3TD5M>0I;-@4'@2%>JKLWXXcdeloprvvvy|jlpmpr~‚…}€‚{€‚zƒty}ty~tzrx}sypv}ot}ou~ms|kr{ks|ir{gpzenxjs|foydnxcmwdmy\gq@IS&,6Ÿš›˜”•ŒŒ…‚‚||ywwqnnkhggedebbc`]`][^ZY]ZW\WU\XVYUSXTRXTSYUTVSRVSQUPNTPMUQOTPMNIFKEALE@JC=RH@^PCLA7UF9RD5UE5SC2M=.I:*B4%F7(G7&>0":,4(;-4'+!(.#,"('$!  %+2%4'2&,!'!#"! "."8*4'5'8*=-7*(&.#3&."+!&&0%2&5'7)0$3&0$3%)+ * -!8):,2&7)-"&+ )3&1%'$'0#:+6(/#/#4'@/<-5(* &&'#1$\F/553==>GHIUVW`abjlmqtvmorhinz~‚„‡|„|€„|€†w}sz~u{sy~sy€qw~ou}lt|lr|ls|jrzhqzhq{fpzgpyir|eoydnxclx_hqLT^3:F›—˜’ŽŠ††€|}tqqmjjdba[YXWTSTRQQNLQNLNKJOLJMJGFA@>:8@:6LB:PE;SG;UG8VF5TC2NA3G;0>4)@4)8.%:0#5*.$4'6(($/#4'/#/$5':+2%% "#%## ##&/#-!0$.#, 0$/$,!&+!* '0$0$."+ -!4'4'5(1%),!#$&+ (0$6)5(7)3'2&0$1%,!%$.", ?/@1/$ !!'!$$((,"4'0$0$5(;,;-1%0$*/#-"$,!lR8<83<==GHHTVV_``hjkpsvhimdfi~‚†~‚†|…z~‚x~ƒy„w}‚tz€tz€pv}pv~pvov~ls|lr|ks|irzhq{eoxfpzfpzfozeoyeoxbluXajCJV™’Žˆˆ„~~vrse`^`ZWGCAIC=73/H>4fSAYI7O?/I:)O?,O>,WC0O=*Q?*E6%2'( + )+!,!-#&,!.")/$0$(-"")&'*2%6(2%)&,!.",!*)($(* %%$&$)"&2&3&*%,!,!-"+ ."+ ),!0$4(+!4'$!&/$* ) /$6)0$)/#4'0%+ ""* .">/6(3&"""&#$$(0$.#2&-"*0$7)@0;,D2 -!=-7)1%";-2/+@?>FGGSTU]^^gikknqdfjkmq|€„}€…|€…z€„x~…y…v|ƒtzqx|qw}ou|mu|nu}ls|kr{jr{ipyfnxdmwfoygq{enydnyeoyfpz^hpS\fL=-L=-dVJtdWzaHkR9_H2[G0K9'M:'N<'-"!(')%%%'""!!'*1%(%0$)(&'#"#%*0$3&9+-"(7):+8*8+8*3'2&+ ((''($$#%$**',"1%-!-"),"+ %,!."2&0$%,!0$%)&%1$/#* 1%1%2%,!" %)5'3'4'0$#"'$$#&#(* ."8*5(*+ +!8*A1;,1%3'<-9*2&:.0,':::DEEPQR[\]ehhfil]`cw{{ƒzƒ{~„z~ƒw}„x~…u{‚syow|pw~qxow~lt|lt}jr{iqziqzfnwdnweoxfoydoycmwfpzfpzcmw`jtS>)YC,€bC\E08*6)3&4'7(:,A1 *!"$'3&&$', (&'+ 8+3%%##, -!.#-")""(+ /#7('"-"8*I7$C2 >07)0$+ ),!;,4'7*)(% $'&!!()9+,!*&."'* 0$+!#)2&2&+ -"5(8*4&/#1%7*6(&" .#2&)0$7)6),"&&,!)+ .#."2%1%/#6(3&("'6)@04('* .#7)6(.#E:/99:DEEOPQYZ[cffacf]`d}€„z~‚z~‚{~„z}‚x}„w}„u{rx}qy~qy€ow~ow~ks|hqzks|ir{eoxeowcnvdoveoyfpzdnwgq{fpzdnxblvE4"=.{]?6)'2%&3&3&+ 3&0%* )(2%-"")/#+ .#0$"$%0$1$0$&$ 3'0$8*)$ ##* -"-".#/#."6(F5"J7#ZD,C2 :,9+3&2%,!3&6)8)(%%$)(#! &&)+ /#5)3&3'* 0$5', * -"3&-"."8*<-7)."1$1%(&&# !%.":+9+-")* * ''0$1$0%2&0$-!)* 3'/$1%@07),"/$#-"2%8+TE5789CCDLMMY[[_abZ]^mosy|{}‚|„{„y}z~„w}„v|ƒszs{€pxow~ow~lt|hrzkt|jr{gpxfpxdnweoxepzfozdnwfpzdnxbludnxP;'F5"S?*0$"-"2%4';,>.>/2%2%.#-"1%."*',!'*&  $2&,"+ ,!."&#,!, 6)3'.#,! !'$%$!+ 5(;,:,C2!4&/#.":+7)1$5'>.=.=-8*,!&$!#"#$'/#,!6(7*8*=.9+7)>/,!.#(+ + 1%:,5)0%.#/#.#)(,!%''%/#:+6)/#6)9+>.;,@0E4"?.?/@0<-6)/$1%.#2%/#;+B1 /#)&-#(-#C7+677AABJLLWYY]``VWZtvzy|€|ƒ|~ƒy}‚y}y}‚w|ƒu{‚u|ƒszqy€ow~nv~js|js|js|iszgqyfoyeoxgqzgr{fpzdoxdoxcnwcmvfpz9+=.rV82&%'-!0$<-A1B1 =.0$*"$+ */#/$& #*% (*#$,!0$*& -"/$2%("'&"',!$"1$B1 :+<-+!1$4(0$6(+ 1%3&*8)?/B1 * &)%)(-"0$0$1%3&4'5(6(5'7)@0,!, ))(-!.#2%*-"1%*'+ 0$."*2&-"&1$4'5(5'?/=.G6#H6#I7#>.G4"G5"D3!:+2%5(7)4'0%-!4'=.?/+!,!"(>2%567?@@IKLTVWSVYY[_psxwy~{~ƒ{}‚x|x|€y~ƒy„v|‚u|ƒqy€qy€ow~lt|ks}ir{js|is|hr{fqzdnwfqyfpzfpyfpydnvcnvdowfpz6)."I7$6)$!(,"1$0$7*5(.! *(.#2%,   (8*."#''&&,!."-"%)/"/#1%-!+ $&+*)*1%?/>.;-2&3'8*/$* ,!,!0$5'4'/#1%/#+ )/#0$,!/#/#-"9+;,6)4'2%4'8+;,4'4'3'''-"-"-"-"),!("'2%3'8)8** ('+ )*1%9+4'9,B2 ;,?0B1 A0A0?/4'-"-"."1%:,7*2&/$2&$ @3$455>@@HKKRSTGILkmqptxuy}y}‚z}‚w{€w{€y~ƒu{‚u{‚qy€szqy€qy€ls{lt~ku~ku~is|hs{hr{eoxdnwgqzhq{hr{fqybmubmudox;,+ T?*# "#+ 0$5'4'/#  $'* /$) !('+ "(+!$,!.#4'&',!5(7)4',!4'/$+ )-!.#2%C2 <-=.=.F3"@0/#-"/#,!/$;,=-8*9+5(/$,"2%3&3&6)3'6(8*3&.#2%,!1%5(4'?0@07)6(.#1$3',!),!)&', 0$7)2&7)2&+ -".#*&2&0%/#4(;,6(8)6)9+>/@07)6)5(3'3&1%9*7)7*7*1%%?1!244=>?HJKQSTGHKlpsrvzty}w{€z~ƒy}ƒw}‚v|ƒw}„szry€s{‚ryovmu}nu}lu~hr{hrzit|gq{gr{fqyfqzepxfoxfpxaksblugpy8*3&E5"&   $+!2%/#6)* $."1%=.:,-!1$* +!()/#3'%#&+ 1$ (."7)0$-"-"5(8*4',!* ."<-:+=.D3!A/8)1%1&'-"0%?/@/;,7*6(:+9+/#-!/#1$;,>/5(3&5(,!'0$5'4':+<-;,;,6(2%4'6(7)5(1%-"* 2&5(6)1%6)9*2&;,*$%,!(#>.=.;,,"0$9+@/;,6)7*9+0%1%3%9*:,8*7(0$!T@,133<>?EGHDFHXY[koqquztx}w{y~ƒy~„v|‚u{w}„t{‚s{‚qx€mt|ov~nv~lu}jr{ir{hqzkt}js}hrzgrzgpzfpyeoxenwbludnveox8)9*B2!2% $))(#   #&* 1$4'/$,!,!2%*%-"4'0#+!+ ) #''+!$!&* 0$6(4&/"1%?0A1A1N:&C2 /#2%&."+ /";,6(5'/#2&8)7)4'2%/#.#;,A1D3!6(/"(."6)2&:+5(7):+=-<-5(<-@0:,4'."-!, 5(;,6)1%3&1%2%4&5(+!(,!.";,A1B2 B1 <-5(3&<-@0A1?/:,0#2%'.#,!2&H6#2&,!?1!654;=>DFG=>A_bdimomrwpx|tz€x~„w}ƒv|ƒu{t{‚rz€qy€pwnv}mu}mu}kt{ku|irzirzhqzis|fqzfpxfpxdnveowepxbmufpxfox=-A0 A1 ;,%'%'%$    ##,!.#* * ,!4',!'/#+ ()#    %'/$* %&(.#<-@05'* ."6)G4"8+5(1%5'.#/$$+ /#4'1%0$1%:+9+3&6(8)5'6(>.C2 /$* &"."-!6(5':,0$,!5'1%7)7*8*3&-!),!2%4'-!&+!)."<-5(5(/#)**1%;-D3!<-1$1$4'5(:,?/9+.#'&((* 7)A1 >.=/ 4219;.E4"*+ /#7)=.=/5'0$0$4':+?/L9$=.*4(.#6).#3&ZD,A1?/ 64/8:;./1PSS[_`dikX^a $(fmtx~…t{‚v~„u}„rzpxnv}mu|nu}mu}mu|kszhqzjs{hrzhr{gqzhr{fpygr{doxdowfoxir{it{H6#E4!, "   #"  $,!* /$+ %"# ! &',!3&8*;,'!$%()'1%=.3&.#.".#:,:,5(/#4&3&/#9*6(8+;,@01%&,!)).#.#-",!-"."1%;-9+7*.#,!* &,"2&5(8*7)."2&9*7)1$3&4'5'4'5(2&(##*%+#5(<-4&-"1%)/#7)7)=.=.9+>.9+2%/$,!8)@08*6)(.#4'5'B2 A14(;6178:GJLZ^`cfiCFH \bhw~…s{‚v~„s{‚s{‚qy€mv}ow~nw~lt}ls|kt|js|js|is|hr{fpyhs{grzjt}epxcnvfqxkt{ku|VA+K8$* ( ! #"%&+ 1%4',!" $###!$,!<-5'0$1$,!-!2&4'-"4'?0=.9+9+/$4'<,4'*."/#+!."-"1&;->.4'2&-"$')* ."."."*3&9+?/>.;-/#6)-") 4'/$)5'1%4'4'0$/#7)1%-!."0$4&2%'#'"$!4'1%7)5)?0) ."0#8*<-=.;,@0>/6)4'* -!:+=/7)-!-!** 0#/$#;4//01678024Y\^]bd69<+.1djpsz€s{‚t|‚rzqy€pxmw~owmv}kt}kt}kt}ku~jt}jt}gqzepxfqygrzht|grzfqyhrziryjt{_H/T@)/$!#&,!#&(-", -!(0$/#(%##$'&*  #+ 3&2%5(7)1%4(;-.#'/#7)8*7)3&1%7*>.3%*0$3&2&0$5(3'3&=-:,<-5'+ * )%(,!1$-!4'9+6(8*8*4&3&1$)-"+!-"."."4'7)1$3&4'0$-"*+ /#, &1%+ +!+ (2%.#0$6(4'@/:,,!-!/$4'8*8*:+9+5(3&+ -!1%<./$6)3&1%*."$)81*#%&@BD68:LNQ\ac46869;flpou|v|ƒu{t|ƒqy€mv}jt|lt}kt}lu~nw€ku}ku~lvju}hr{gr{grzfpxepxgrzfqygpxiszkt{XB*M:%6(#"*+ .#'((0$0%1%&&+ 2&,!'$'$$-".#("-"/#1%5'8*2%,!/$+!$&2%;+8*6)5(2&8*6(5(2&."-"2&0$."4'=.>.B1 A02&/#)%* -!+ -"1$3&5'3&:,4'3&5(2&9+9+6)(+ 2&7*7)8*6)8*8*6(3&0$)%-"."2&,")1%+!/#1$."3&=.+3&,!.".".#3&6(:+3&3&2%.#4'/#/#7*4&5(0#%(>4*')*@BDFGI9:;^cdBFFJMQejnou|u|ƒt|‚t|ƒpxnw~hqzks|js}kt~kulv~ku~jt}hs{hr{gr{gqzfpyeoxfpxgpygqxjt{lu|V@)P<&3',!""), !#')3'/$% "%-"-",!&%$+ 0$."."0$1%.#/#1%5(5(-!+ )"&,!1%3&5(7*1%/#5(4(3&4'-!3&+!1%5'>.>/@0C2 7)-"("(/#0$1$+ + 5'8*<-4'5(4(9+<,>.3&(-"4'."0$5'8*B1A0B1 ?/=.1%+!-"/$3&1%,!.#2%,!0$*+ -!*+!)'%%)/#7)6)7);,6(2&3&/#* 2%;+9*!!<0$$&'>ACGKL?CEOTV\aeTX\[_e`birw}rzs|‚s{‚qyqy€lu~mvlumvkt~kuju}is|hr|is|fqzfpygqzhr{gpxhrzis{lu}nw~U@)R>(>/+ !!(,!!$*,!.#+ ! $.#1%.#'%%+ .#2%9+4'1$(.",!-"0$0$'"%'* *4'7)/#+ /#0$7):+4&4&0$8*."7)7)5(5(2%2&/$%'&)+ (, 4'9,6)9+:+8)3&6)7(5'0$1$7*6(7*6)7)<-:+?/C2 C2 <-:+<,:,4'5(0$1%5(,!+ + )'-"+ (&).#+!(0$7*4'8*4'<-8)4'5(.#7)=.$":.!!>AB6;<"$),.jptmsxU[`[`gu{s{‚t|‚qy€pwqxlvnxnw€mw€kukuis}hs|is}jtgq{gqzhs|it|hr{grzkt}mvmu}R>(O;&@0&# &+ '  !#   .#7)4'&$!'+ ."6(3&-"(')%."/#,!%#&(',!1%-"),!2%:+@0=-7)1$.#),!,!8*2%*,!/$,!4'-",!)%-"6(<-4'8*5(;+1%4(/#3&1%5'6)9+7)3&8*5(5(<,B2 >/9+;,<,9+7*3&1$4'?/7*4'1$/#)0$0$/#/$6(<-4'-"*1$4'7)7)@0?.7)0$+ 5(3&3&$=1#(*+,*( "MRV_eiMSXjpvt{qy€s{pxov}ox€mvmvkt}ku~lvjt}is|jt}is}is}is~hr|hr|fpzhqzhqzjs|mvow€WA*L8$D3!"&#'# !      "&+ * '%0$0%6(3&+ '+ #',!6(5'(%')+ + +!-"."4'8*>.7*:,2%1$5(1%)4',!&"%(+ /#4'2%'."9*>/?/1%3&8*5'6(,!0#-"8*;,:+0$0#8*<-:+>/B2 D3!D3 D3!5'7):+7)4'5(;,B1 8*9+5(5(* #* 2%5(A0=.2&()-"6(6(:+<-6)3'.#.#&* #4*245 %&&HKLDGJ47=IOTT[`rz€s{qy€s{r{‚py€mvqzƒoxkt}kt}jt}kt}hr{is}jt~is}jt~jsis}eoxgqzis{kt}nw€oxR>'Q<'D2 &) #&!      !)1$1$#!#-"4'8)/$,!+!,!))2&0$6(-!$%'&&* , + + 0#:+9*?/1%8)9+7*)2&7*+ + 1%.#.#3&8*3',!1%;,?/@0>.>.;-B2 :+>.<-:,F4!I7#G5"6);,8*5(:,:+:+?/D3!C2 A0?/E3"6).#,!+ :,;,4'>/;,* (#."1%8*9+8*0$,!*/#+!2%7)3&4(2&4'5()E6&')*,./$(*59;137/37nw{r{r{u}„t|‚rznxmvnw€ku~kt}kt}js}kt~it}jt~ir}gq|is~kukuhr{is|lukt|mv~rz‚O;&WA*H5"#&."&$,!!"  #  )4'2&.#$&&%(0$'+ +!8)/#)$1%4'-",!1$/#0$1%-!)(+ ,!/#5(0$*7*7*0$1%+ 0$.#.#9+8*7)9+3&2&/$0#<,;,7)6)3&B2K8$G5"J7$=.3'<,4'0$/#7*A1 <-:+;,@0H6#I7$@/@05(:+4'3',!-#2&2&2&4'5(8*6)''+!0%7);,5(2%-"+!* 0$2&:+:,3&9*3&-!'@1"!>ABSVX245!#jtxpz~s{qy€s{qy€qzoxmulu~lu~lu~kt~ku~kuis}hr|hr|is~kthq|gq{ir|oxmv~mw~oy€`I0V@*N:&%&+!0$2%8*."!  $   $'0$/#&&'&-".#* + ."5(9+5()1%9+*."4'3&2&($%&&',!+!3&4'3'3&)4'+ -!1%4(9+8*;,>.=->.9+3&5(5'/#3'4(C2!C2!F3!9+9+7).#2&4&1$-"3&>.B1 ?/9+D3!H6"?/C2!;,8*=-5(.#+ 1$4''"-"3&=.>/1%2$5(=-A1 7)0$,!*,!.#1%@0?08):+4'+ /#)$%'/C2 A0A1 B1 ?/@0;+,"'(,!/#6)8*8*3&/$=.I6#A18*0$2&.#)+ 2&9*A0>.>/:+-"( )*,1699>?>AD79>.@08+4(<,:+=.5(=-A1C2 D3 2%.##%&1%5'7*5((4'>.=-=.8*4',!%$2&0%.#5(E3!3'5(:, ##%=DEX_bBEHEGLQU\mu}rz€oxlv}myoy€kv}ju}mvlv€kujt~it~hr|gq{is}hs}hr|luju~nynwoy€qy€pxA0L9%=-)$,!4'+ # '& .#5(1$/"4'7)4'=-<-/#."-!9+8*:+$(,!%0$9*:,.#()%3&6(-!&%"*!$$,!1%3'0$#%/$9+2%4(;+7)1%4'3&7)6(3&-#-"3%9*4'1$:+>/@/B2 C2 :+:+3'@1=.7);,:+4'/#5(4'7(6)9+4(,!/#-"A1B16)0$&((+!2&;,;,.#-!4'2%0$6)5(2&,!+ ."/#*9*?/;,8*H6$ $$'.56*13DKN8.E4!D3!C2 ?0C2 <-D2!A0F5"M9%H6#@02%.#)'-"-#2%.#7)1%?/C3!=.4'(#&.#9+;-5'0$,!+!.#-"+ ."5(<.4&6)1%0$7)?/:+5'5(',-LTV$(-/3iot]agMT[govoy€nxnxlw~oznykv~ju}it|iu}it|hs}it}it|hs{ju}lwmx€nw€nx€mvq{‚py€<-O:&K8$$" *7)0$9+2&-"/#%(#!$-!3&3&5(1%:+3&$ !."8*4'4'-")+ /#* 2%4'3&4(3&-"-"%%'-","6)5(;,C2 =.6)<-6),!6(;,:,/$6(-"+ + ,!7)9*2%5(:,@0>.;,8):+=.K8$C2 :,5(1%6)=.>.B1 B1 C2 5).#,!* *."-".".#5(C2 F4!>.2&/#, 3&5(5(=.7)4'2&*)/#-"1%;,9+5(9,1%1%4&7)1$1%(%!#&&@HI*,/synt{MR[UZcls|mvlv~kv}mxmw€it|ku}is{it|ju}iu~iu~ht}it}ju~lwlx€lvoxr|„q{‚t}ƒ?/G5"U?)5(!",!(2&8*8*,!1%' !((%!%)1%5(*$#&-"9+?/0$)#$#.#3&1%3&."+ + ##+ 0$2%C2!;,=-A11%0$3&1%4'>.4'/#,!+ + ,!,!,!/#)+ 0$<,<,4&/#/#3&@0H6#:+6(/#2%5(8*9+A0K8$>->.5(2&7)0$1%2%1$5';-<.F4"K8%8+8+4(@0F5"E3!9*-"-"* -"3'+!*/#5'2&>/3&,!-"2%2&.#  )*+ 37;emrluzjpwEKU[cmow€mv~jt|ju|mwkv~kv~it|hs{it|lwkvju~jujv~kv~lwoy€q{‚r|ƒq{‚s|‚E4"L9$K8$9+0#* 3&3'-"-"."-")*" $)&&''-"2&9*8*)( +!9*8*>.3&-"$$%+!1$2%B1@01%0$,!%$-"+ /$0$.#."3&7)/#;,E4">/6)7)7)."'* * *!* -"4(3&;,>.;,."(3&E4!M:&;,9+2&8)3%/$5(>.<,1%5(6)1%2%/$8*:+4'7)4'2%G5$,!+!0#B2!4(9+6(=-:,,"+ -!-!.#+ 3&6(?/@0:,0#=.2&9+4') $$&(*,INTJQYjrxqxZ_iBHShoxmu~kv~jt|mx€kv~kv~kv~ju|ju}jv~jv~iu}it}ju}kv~lw~q{‚q{ƒpzq{‚r|ƒ<-J7$C2 /$+  #+!(%'(+ ()&* 2&8*9+1%,!(&0#4'7)0$3'%%.#1%>//#0$("),!5'4',!(*'%)', ."+ ."0%-".#6)=.C2 A06)3'5('#)*'(.#5(9*:+4'+ (/$,"4(3&1%3&9*2&,!7*9+:+<-<-8*:+6(5(=.D3!<-5'5'2%7)-"%(,"2%-"+ ;,=.:+4'7)1$+ + 2&0%<-@/;,7)5(>.B1 4'5($"##;=>%&(TWZZ_dDIQ[ainu}pvJP[KR\lt}mx€ju}kv~ju}iu}ju}iu}hu}gs}hs}it}ju}ku}lv~pz‚q{ƒs|…q{‚q{‚q{?/S>)M9%A1'  &((0%('4'@0>/8*1$)''&(* 0#4''))1%/#*'#)."1$3&3&."(* %%*'(/#1$''5(8*D2 A1=.3&,!*'$+ * /#-!.#3&:+8)6)7)6*A2:+8*F4!3&:+<.0$7)6(8*4'1%5(3&0$2&B2 :+7*/#8)1%8)>.:+>.B1 >.5(3&9*A0 8*2%9+3&/$+ 7)7*:+9+5(8*4'8*A06)6)-./9=>8:=58<\`dbgmOU]HMVhnwowjq{BIUYaklwlwlwgs{ju}ju}hu}gt|hs}is~kt~jt}lu~ku~qz‚s}…s}„q{‚r|ƒr|G5"`H/Q=(C2! !""%,!#$-",!#',!2&9+5(,!""$$)-!7)7*&0$/#4''&&0$#$* '+ 6(<-6(/$($&$,!*(%%&/#."."9+1%3&1%,!,!* .#(* + + -"5(/#4&4'3&7)<->.6)9+&(2&1%0$1$4'5(2%-!,!,!.#."8*7)B1 @08*;,@0 :+8*C2!?/4',!.#0$0$;,>.8**'-"+ 9+A1;-8*=.:+<,8*.#'*,-8=>?BE26:HLRbjoaioHMVU\ekt~nw€ais>DO[enmw€ju}iu|jv}jv~iu}iu}jt~is~kt~lv€ku~mvoyr|„q{‚pzr}‚s}P<&gM2U@*O;&$*)* ,!&(%$''((%.#6(7*3&)(* ('*5(/$*(&,!'+ * ,!)'+ $(1%9*:,4&)(+!)+ !$#)."6(8*=.<-<-@08*4'1&/#&$()+ 4'1$)/#5'/"2&;,6):+1$+ 5(0$0$9+9+9*7)0$-"** ."7);+C2!?/8*8)2%4(8*=.B1 :+0$-"+!2%4&8*7*4',!,!3&8*;,<-."4'4'3&9+7)+!:=?ADG?CF59>[cfdlp]dj?FN]enlvnw€W_i(&-")+!:+4'1$5()())$#'+ 1%6(2%,!* 0$+!+ 3&0$-"+ * )+ ."0$1%'4'3&((* +* &(5(0$."5(* '!#(,!:+:+@0;-9+C2!>.:,4'4'+ *))&&'*/#2%;,>.6(3&),!:+6);,B2 <-8*7*3&0$+ * 8*6(;,=.<-?0;,4'0$2%8)C2!7)0$-"* -"2%5'6(2&1$-"2&7*<-@13'/#2%6)7)7)4'! .13ADFHKN:=AAEIdlpgpvRZaFNWfoxkt~nv€IR_EQ\jvfs{iu}hu}iu}jv~ju~kumwnwpy‚qzƒr{„s|‚q{‚s}„s}ƒv~…?/E4!U?)S>(."1%&+!8*:+8+6)1%&(! #&&* 3&."* (((/$2&,!,!.#* (&+ /$8*0$;,@/3%)((%"+ 5(3&0$2&-"&$*(.#+ 2%4'/$-!7)6(5(5(6)*!(&"%#',!0$>.B2 ;,;,/#3'5(2%<-=.=-=.<-9+3&1%)0$4'3'8*7*B2 =-3&0$*."4'0$0$.#((* ,!.#0$-!/$5(5(7)<-4'0$.#,!,!.") 00.!BEGHMPJOR@DHU\bgpwgow>EOQYbhrzkvfpz8CONZdjviu}kwit|ht|iu|ju}nx€oypyƒqzƒt}†rzƒq{‚r|ƒt|„w…>.S>)eL2U@),!$8*3&7)9+/#2&,!,!'%%''* -"' "&* -"0$0$2%.#)($.#1%0$:+B1 :+6(."-"/#.",!2%/#,!,!4'2%+ ''", +!3&4',".#3&1%."0$2&-"+ /#%$#+ ."/#/$/$:+G5"6(B1 :+C2 =-3&1%4&<-?/@0A1;,;,/#,!2%5(5(9*B2 G4":,1%0#1%,!* 3&7)/#0$,!))-"* 2&/$1%* 6(/#'+!(0%9+2&30.&(*-15INRPVZAHL;BIbkqiszckt;CM`iqlv~lw€alu4?L[dqht}ju}ht{iv}iu}hs{lv~nw€oxpy‚r{„s}…qz‚t~…v†w~…;,R>(eL1YB+.#* #6)1%4'=.8*0$2&-"+ .#($!"&#!%,!* %-"1%2%6(9+3'/#2%1$3&;,F4!9+1%-"-"4'3'0$1%2&(&* /#3&.",!(')).#-"6(1%,!0$+ -"0$2%4'0$0$/#/$0$1%/#0%;,=.* 6(3&=-<-7)6(7)9+>/@0G4"B2 >.3&3&<,7)/#4&9*A1=.0$8*=-4'/#,!0%6(8*0$+ +!-"0$2%0%7)-!5(/#0$5(2%=.>/@1 :5//23 $'DJMPW[TZ`?FLLSYirynx~?GN.3;fpxjv~gs{Ual6?Kdoyhu}iu}jv~ju}kv}nx€ox‚pypy‚qzƒt~…t~…r|ƒv‡v†>/K8$_G-[D,1%* !-"1%>.7)0$2%1%.#0$+ 1%1%*&(* 1$6()#+!1$3&B1 @16)1%."/#7)5(9+:,0$(* 5(5'/#+ )&" )3'-"0$''()4'4'5(-"0$9+0$+/#7)=.;-9+=.<-6(1%3&;,:+1%+!/#%."4(5(0$/$2&7);+B1 @04'0$6)<,5'3&4'4'@0=.1%9+A03&/#* -"9*=-5(1%/#3&1$5(5(3&<,>.4'4'3'3&6(7)?0 50*135169',0PX\T[`PV[AGL[dkkv|(0528=DMUhu}jv~it}MWc.6)+ )%/#2&*)+ 6)7)4'5(0$6(/$1%."2%6)=.2%+ -!2%3&-!/$,!%!(2%* 1%)'-"0$,!2%1%/#1%>/:+().#4';,8):,6(6((.#2&8)2&/$4(."(6)7*3&-"5(5(0$:+:+8*8)6);,9*/#-!+ .#<-1%/#7)=-7)1%/#5'8*8+.#-"+ 0$-!5(5'2%9+>.8*2%-"* -!1%3'5/(9:87<>-375;?=BGTZ^IOUNW^/7:'.16>B/6=T^giv~fs{bnv>GQHS\jwjwlwlwkv~nx€nxhrzhs{lxp}ƒu†v€‡wˆ<-G6"[D,L8$,  #*.#-"(#$&&* 2&7);,2&)$%."* + ,!+ 3&2&*+!2%=-5(6(1$9*@0>/8*0$+!* -"), 1$0$.#).#3'1%,!)0$+!%-"6(1%7)=.4',!+ ) /#0#,!/$6(:,%)2%* .#)2&.#."4'/$-"1%:+9+6(9*0#3&5(:,5(0$.".".#'6()'+ /$/#* ."1%,!+!* ''*'*** 0%;-:,9*3&6).#,!+!1) 489:?C9?B ,/3Zafdlq9@G5:>!',aim2:B_iqhv~hu}\gp;DNR^gkwnzƒnz‚nyr|…aks;BK3/9*5(1%,!."1%0$6,"*,09=B8=A!JPVent\dl=CFfquXbg5?Gbnwgu}hu}Uaj=GQ\hslx‚lw€lw€oy‚gqxPYb06=)-6_hpt€†wƒŠ/$>/YB,N:%*   /"5(7)5'6(3&/#"#!)/#-!+ $ #%*%+ ((+ ('-!1%:,3&5'1%4'3&/$#$%"% %+ /#/#0$-"-"4&4'2%(/#2%6('%( $(/#.":,8*1%7)6)<-@0@1=.8+9*0#/$3';,=.6(3%4'-"+!)* /#."/#+ *%&"*$%(*('()&* -",!.#/#3'C2 5(/#*!$)'=1%7:>048 29.;-6(6(6(B2 C2 ;-5)1$2%'()-"!  "$ $$&* ,!* %%%(+!,!0$-!1%.#):,-#)*&)$+ 1(#%($'*0465;AO\b+4:'-1BKPhu|iw}fsz:DMFQZhv}jxfqzIR\EMXeoxr}†q{ƒq{ƒr}ƒs~ƒu€„fnu8;E15?iqz(-"S=(I7#:, ";,B2!P<(6)0#*&'!),"+!-"(',!(( )%*)! !0$0$4'0$/#-""(-"."/#."6(-!.#5'9*5((!&)-"3&4'5'/#-!0#+ "* #!%)3&4'/#-!-"5(6(7)8+<-7*9*9+;-2&:+<-:+6(.#+ &! $#&*(0#,!/$-")(&"!$%%0$,!-"+ )-")*-"")$/#A4$-01 #& ! !$HPU$$(,,36 #$38(=.  $<,=.1%5(+ *) &%(0$0$."/#/$+ ."""'1%!!&-!-"1&3&0#.#1$/#()(-"2%0$,"8*0%.#+! $)-!&&/$7)."$%&,!-"%!#'+!0#:+3',!2&3&3&0#-#-"5(:,<.5(."4'8*;,<-;,)*+!)!( )+ #$* -",!0#4'."-"*'*/#8*1$* * ,!-"*:+!)+ (,!C4%+/0"%'"#Xae"&)U]_^fi4/"  ';-C2 8*2&5'0$$*$"* $$)*&&+ 1%(!%.#0$-".#8)5'.#" -"2&;-F4!4'-!,!/$#"((" ((5(8*&,"2&7)+ #,!.#%**/#-"0$3'9+3&0$-"5(=.9*:+6)6(9+:,7)7)?/5(0$+ "$(#%(*,"6).#0%,!1$5'1$-"&$* ."&'$, * '$+ -!*'/#YD0-..6;=Ycf#$:@@hqskvzOY^6AHft{gu}gs{U_h=EO[fnlxnwbjsJR[Yaipzs}„t~…u‡y‚‰x†t{~_diN;(9,XB*[D,N:&$!1%F5"<,, $()* ""#  $%%')'* ,!;,& #-"3'4'2&7)5(& +!4'8)D3!2&%0$."%%#$ $&%,"(#$-"3&2&+!/#:+>.0#4'2%)7);,A1:,3&7)7)8)/#, -"0$5(8*:+7)A1=.*/$),!,!3'4'3&-"'.#/#3&>/7*5(8)9*5(,!%(#%)),!$$+ &-".#6)L<*./-AGKHPS"%'045eosjw|iuyGQX;FNiv}jv~eoxMU^=ENbkupynxckrLRZ_gnq{r}ƒt~†xŠx‰x€†ryA1!7)\E-aH/M:%-" 1%9*1%(") %##''$!'#   &$&(0$-#3'2&5(+!!''*3%4&1%** * #$#%)&&*6(3&'$-"?.8*.#/#;,;,6(,! '/#/#8*;,:,0$2%0%)&),!,!2%4(<-;+<-:,1%:+C2 J7#K8$H6"@06(4'4'7)9*;-:,3&;,>.<-6).#,!,!,!+ &."'*+ (2%3&8*:-.-* 14529=/69/35"KT\it{jv|gry@JSEOX^ir9BIhqzHNXIQ[lur|ƒr|‚bipINU^flq{‚w‰xŠwˆv€‡y‚‰0$0$T?(oS6YB+-" )3'3&+!1%%"$  "&#"   #&&"#,!*3&1%0$+ &"* -".#4'0$-"(* +" ',",!&&$6(2&$%-"9+9*1%/$8+9+0$;,9+/#&+ 4'3&7)6(4'0%&!$*4';-=-<-;,8+:,1%0$5'-#4';-<-;+8*6(1%/#-!0$7)<->/?0@03&2&0%6)-!)+ , &/#/#=-0$+!' (%! ?DG5;?-3:.4:)/3T[c7?I[fojv}hs{cnv0:D$,1;CJr|„enuFMWMV`nxr}„py€_ekMRZdmtt€†z„‹y‚‰x‚Št~…7)5(D3!rV9WA*& 4'H6"J7$8*3&&"      ## + #%$+ * ."3&2&+ 1$4'+ )*)*6(3&6)9*4''!', /$0$/$0$(."*!* /#'&*,!-!*** )'1%6(5(;,B27)6(1%5'3&0$1%-"2&7)?/F4!9+;,3&."(2%6(,!&*-"+!**3'4'3&:+=.9+9+:+9+3&&,!7):+0$1%3&2&+ ,"+$"$% FJMJPS15;#)NV\it{DKS!(-bnvht{it|)399CIEPWq{dmtDMWXbkq|„q|ƒs|ƒbipMQYgqxvˆz„‹yƒŠlv} 0$C2 pT7XA++!4'G5"[D,G5"=-%"   ##$'#"%/$."$ "$ %""&/"0$*))'')'&(1%?/3&0#%(."6(8*3&3&2&,!'%#!(/#3&+ + &&+ 4':+4(5(6)6)9+6)7*:,;,5(+!.#-#1$-",!1$4'3'/$+!1%9*7)0$8+) &$$)-"."0%4'3&7)<-8*2&/#1$6)))."$,!)&#$'<3)+.0DIMKRWDIO59>R\ciw~'/48@G2=Det~fu} AFKr{py€dmuEMX]fps}…u†u}ƒafmMQYlv|xƒˆxƒ‡u€†2&C2!K8$tV9XB+:+!/#>/L8$@0E3!8)%%"  "+ )+!0$*()*,!&  $()%" $%%"!+ "$'#)+ &%/#8*>/+!(%!#&))2%5'-!#%*5(/#-") + )(** 3&2%6(-"(+ /#.#')0#*.#+ -!;-:,3&* )('%)+ *-"1%/$5(9+2&0$+!.#1%1%0$*&'* &&)(0*#:?BBHMMSXU]bB$,2?LUix  :>Eksznyr{]ckFMXdlvr}†uˆt}ƒ`fmRV]nw{wƒ†y„ˆ-"=-I7#tW9cJ0=-%+ /$A08+>.5'))'*#')))(* * **+ %"(*%%$"''#&%&" $&, ))!!$!#$$2%7)-"'% !'&$/$5(8*3'/#(+ /$,!$($),!* 5(:+:+2%/$/#+!/$*+ + -")),!,!5(<-3%!%##'&-",!',!4'6(5'1%-"+ (/#."1%&('%* &(#'*-6:>AGKLRWS[a]fk29@58<gov4?GKU[ &*,PY^AIQmxs~„s|ƒZbjCISclvt}‡x‹v~„aelOV[kuyy„‡"=.E4!sW9bI0/##  :+2&3&/#,!('+ + ),!.#0$'##"%#")'0$/#* ##"#  !"(,!.#."0$%  ""!+!'$")/#-"* *&0$-"$)2&>/:,0$&#0$0%#)."())3&8*;-7*0$."/#0$$!('+!)-!1%7*:+, $$$ $'*&&(+ *+!+!2&4'* '("!(1&,!90&-036:>@EIJQVS\`ZdjXah*/3frxbmt"#&%(*px~EMTKS[oy€r}ƒs}ƒW_hHNWjq{v‡z‚‰v|]bgRW]nvz 4'=.tW9[D-9*" #4'7)7(/#),!))+ + 3&5(0$-"(##% #%-!,"($)'#%+ %$&/#4'1%1%6(-!&##&$&0#.#0$&)+ ,!.#0$$"*!",!1%5(2%)*3&* * 3'.",!/#-"2&2&6)8*8*:+<,3&* $* + %')* .#6(4'/#%,!0$(&! "$'/#1$3&3&?/A15(* (# # #H:+,/25:=@EJJRVS\a[elNW]GMOkx}4=C!&<@Ex‚‰gowDJTW^gp{€r|ƒv€†Y`hKR[owxˆw†v}‚_dhQW[ 5'=.vY:XB+?/! $8*H6#B12&/#2$,!$&(&,!1%-"$"%!%'/#2&((*)")*+ /#1%."'+!+!0#/#2%($''2%4&6(2%+ -",!.#3&.#+!,!!&.#0$1$+ 3&,!,!:+;,.#/#0$1$:,4'8*6(4'8*9*."%(-") $*$+!0$5(/#'&/#1%-!* #$*).#4'7)9*;,D3!8*4'-!    )L<++/248<>CGHOSRZ_T^c)042:> '-/ivz .27 akts}„q{‚dluHNZ\dms|ƒt~…s|ƒT[cQV^mu|y†y†v~afj 6(;,iO3dJ0F4" ")?/T?)6)&'()#* *##,!*  ! ()* .#,!#%+  ")*))& %),!+!4',!#%."*.", * )+ -"/#8)8*-!'#&, &*/#6)(,!8*A08*0$/#,!5(-"1$5'1%1$-"-"* $&'1%7*0$)#+ * /#/$)$(',!1%/$/#4':+5'5(6(%($"")B4&+.248<=CGGNRU^b+144;< ',/MX[JR[CMWkv}r}„r|„cjsINX_enu~„t~…x†[bhRX`qy~{„‰yƒ‡v~‚ A1!8*bJ0dK0L9%'0%>/& !#+!1%.#+ + )$""!!)* ,!0$(&!(&%$%"!$#(+!-"1%/",!" %."* ,!,!* $"$&*1%-!%$&$%'2%,! )4(:,9+3'2&$#((-",!+ ',!)#%-!"$ ''7)<.-"-",!+ + -")'%(,!-"."."+!-"4'7)6(5(*+ ."'$#,!H8(.0137; r|„JT\KV^ny€s}„u~…^emFKTgowv€‡z‚ˆwƒ]cjW^eqx~zƒˆ|†‰@0 9+_H/^F.N;& $,!3'$'-"4';,8*2&+ (*#'&"%'(2&8*,!."#$+!/$* '(&(+ ',!0$0$2&1$-"($')* .#,!$ " %+ )'&"!#."%$#.#4'9+9+7)6)3'0$2&).#3',!&!%(,!(.#" "8*8*4'."2%."0$,!$"!%+ ,!,!,!&+ 4'3'2%3&(%% &G8'+,-269;AEFMQPX\!$&&)+bkqlw~8>C$  r}ƒhsyGQYPZboy€u†x‡Z`gLQZipyx…zƒ‡x€…_flU\bqy~€ŠŽ H6$F5"]E-sU8\E-# #* '%  %&."4'9+7).",!*'$#$/#5'6)5(0$2&1%2&:,1$'%(,"$!$&.#/#."(  #+!-"/#.!&'$$+ 1%,!) !##%)0$8)>/>/D3!G5"F4!:+('."-"''* )/$0$4'-#$0$9+9*5(,!/$1%1%('$!$-".")&#* ** ,!4'*/# " !9-00/169:?CGMQ?FI(,/+/0cmrnwGNVDHQ6:?u€†oyisyJT\W`ht~…w€‡u~ƒZ`gOS\ltz{„‰y‚†wƒ_glZ`dsz H6$E4"WA*oS6]E-(0$-"5(, '#  !!(* 1%/#&'()("%-"5'3'6(8)=.9+-"*% '" + 3'/$,!& "!$%(."-!'#)0$'+ '$ !%"#'/#3&6):+5'<-@03',!(*2%3&6)2%6):+;,-"3&$&5(&(',!5(-"(% &*" !+ + )2&/#(0#"!";-52//479?BGMQ26:26:27:enumw€is|6;@9=@7=Cmv}s}ƒr|ƒgpxIQ[[dlu†uƒv~ƒ\ahPU\mv|z…‰{ˆŒvƒ‡emqX]a8*=.YC+bJ/aH/+ 3&;,3&1$*   %(.#/#((."'+ * $ "#/#4'8*:+9+2&( ! %# !&/#0#.#*#&#* '&&+ 3&4'3&)0$9+2&/$5'0%* %##",!&+ %.#0$&((%** 0$/#0$6)-"2&0$-"(3&# &/#1%/#.",!'#)*&! ,"6).#,!3&/$+!*% !4(94-/479>AEKOGMR/36,14V_diqykv}oy€?GNirxQY`HMt~…t~…s|ƒcjrMT]gpvu„yƒˆyƒ‡bhn-16 :FKy‡Š'8*J7#eK1iO3/#:,."3'%'%" "   + 0$/$&&+ * -"/$" #(+ /$4&0%/$5(1%0$+!0$2&,!*,!%'$#%$#!" %  !-").#/#$'* %),!3&  ""$##'%*#"'((0$2%(), ,!-"-#.",!0$-"!%&0$:+>.9** )&%$$)+!())+ #)'+ /#."5),(#.257B`mr I7$?0>/Q<'WA** )$+ * % $#     -"0#,!#!-"."+ "  #**&+ 2&4'6)7)1$,"1%0$.")'+!7)0$/#0$(($!"#  ()(-"+ % )1%((*'+!#, 9*-"'$#"#'"+ 0$+ + )."3'),!$)2%)#!* 3&3&4'.#* , 4'."*,!%'# ( "/#0#2&2&0*#-155:>@FJJQVT\b\elcmuhrylv~lwqzr{ry€s{‚mvzHPUPY^w‡v†x†chpHLUov{{†‹Š‘QY^@EJKQWSZa[cjbkrfqxjv|mv~pzr{s{‚s{‚u~ƒltxKRWXahy‚‰w€†zƒˆ_elHMTnw~~Šmw{'-/&:-A0T?(bI/O;& % ) "+ *+ & '/$.""$() * '' "!##"$$(-"4'6)* ! %&&(!"  # !  &-!)-"+ !!  *+  &-"2%6(;-3'3&-!("&(%$&$* .#+ +!0$/#:,9+)#"*1%6)0$* ,!,!-!2&6(?/9*-"*#%   ""%2%F9++/249=?DIJPVT[b^elcmtgqxku~my€ozpzq{‚u~t}‚w†fosCJO`iny‚†{„ˆ{„ˆ\ahCHPt}‚|‡Š5;<)I8$@0P<'jO4P='# &(,!'((%'& $)!  %  ,!& !' $&'#.#6(6(."-"%#(#  %! %$$   "! #! !()+ + (0$(0$2%-".#."2&4&0$7);,8)5(6(3&4&(# ."('!().#+ %&'(/#9+>/<-,!!%/#2&:,?/<-?/,!$&!  ##2&M>/+/248<>DHHOSQW^Zbiajqgqylv~lv~ny€r|‚s|ƒr{‚w†v~…y†fnsIQVdmq{„ˆyƒ‡z‚‡`emQW_t}‚qy~">/5(WA*eK1M9&   "+ /$&),!0$-")   #+!!,!*"(1%&)%',!/#&'."5(-!('"!   # &$,"  !)2&-"%#  + (/#.#.#$$(*( ((&-"0$1%5'6(1%7):+4'"!%(!&'#&$$3&7):+<-:+8*."/#4&,!*!)(0$5()(!  #7-"*.148(dK1V@*%   ##((&",!-"* &%'   .#7)5(-"(."+ -!5'4'2%%  &##""$* ."'" %(  "%)/#7)2&('!#"+!2&0$$%!& #!!(+ + -","0#*')&!! "",!$'!$$).#'!(.#'((&""# )3'1$1$.#95//479?CEKPOW\Xag^gofpxku}mxr|„r}…t†vˆw‰u†x‚‰w‰z„‹{…Šz„ˆ|„ˆafkLRXnv{ƒ‘sy~AGLkquY]` 3'+ U@*nQ5T>(."  "$&%"! #'&%0$%   -!+/#*&%%',!,!*'&#&%#"&#'+ /#2%3&&$"(%%+ & "$&+ 0$.#2&*$# $(('$&$$, )&'''.#0$0#8)3&2%* /#.#/#+! '$'+ '''0$0$.#%!,!+ %* ((/#+ .#$!!)-"5(:+0%+)&/479>BCINMUZX`g_hoiryjs|nx€t}…t~‡u†t~†xƒŠx‚‰yƒŠw‚‰xƒ‰|†Œ{…‹{„ˆ}…Š_ejNSZszY_ecjoƒ‘nux !%S?)jO4\D,2&# &&'$&# !#$'&* %& (3&-"-"&&*/##)* (&"$"$# !((."1$%+ %/#+ &.#%($#%'*1%5(7*4'0$(!%,!#(**/#0$(&),"))."/#7)0$9+3'/#3&+!-""'$'!!"#!&+ * ,")"$##()3&."+ (($&&+ 8*G5"J8&(&#/468>ACINMUZV^d^hogpxjs}nxr{„t}†u†AHMRY`‰z„‹yƒŠz„Š{…‹{†Œ|‡‹ˆŒ~†ŠhntKPU58=€ˆˆŒŠ &)D3!aI0dK1+!*0%3',!) "$$  &'))''  '-"/#)###%(+ ,!/$1$%$ #"#""%#! ()+ ,!($  $(2&4'8+1%-! ')$&,!*/#.#-!((-"-!4'4'5(9*1$*&),!-"'-"$!     "-"&&+ '! (1%8).".#-")&"$'+!;,:,/*%/36:?AAHLLSYW_e^gneouks|oxr{„r|…lu|),/BGIZagŠ‘z…‹{…Œ{…‹|…Œ~‰€‰Ž~‡‹„“GLP(*.lsx‰Œ‹Ž * (:,_G.[D+) ,!,!,"%'!!  &#&" !2&.#*( ('+ + ,!'"#''-"+ &%$  !#%%* 3&1$((%$'+!1%5':,4((3&+ *#'"(* &',"* " ''-"+!$ !%)/#*4'0$0$&&   !($"%'& $&1$* %$$" "%."9+?6+.25:>AAGLJRWV]d_goenujt{py‚s|…t~…IOU[aefmo@EJKQWT[a^fmenvirznx€u~…Ybh8=@18.+.138;>CGHOTTZ`]ekemtks|oy‚wˆ/59vƒgou$(/7:?v}\bf<@Fktz€Š‘ˆŠ’y‚ˆ@FM~…Œ‚‰…Œ‚ˆ‹z}0#>/&=.6(3'  !/#3&5(6(0$2%,!%        % %#    *0$;-A2"D4#F6$E5$H7%:,)/#;,:+3&."('+ -"0$7))!#&%)2&/$&-"5'9*5(&!!%+!( !&$!!$* #  &* )#($#0$'/#4(8*.#&+!)$# "'#  )#  (3'0$J8%C2!+!=2%.0138<@EHJPUT[b^flclsmu}q{„mx€ x‡{…ŒU[_v~„‘CGK*/4r|‚‚Œ“…•TXaejp€‰Ž„‘ˆ”ˆŒƒ‰6* E5#$8*=-5(   * #(-") /#,!(        &A2":,<.H6$M;'A1!:,3&>/:,7*:,<-?/:,7)6(4'8+)'/#5'5(2&4''&%(/#+ &  %')()+!4'5(5()"'#"$* "%( !),"/#,!"#(#$!  $& &'1%+ ')-",!)(('* )&%"    $)."E4"/#")"02138;DKGKQ$(.v€…KRV:?B;CFox}DIN36:BHMpy€ƒ”flt~…‰ƒ‹‰‘–†Ž’…‹†Œ‘=/L:'%=.=.5(  #+!"* &1%5()* %      N<(7*%%)')$  $3'<.D4#UA,ZE/WB-I7%,!,!&'-!7)5(3&1%/#'-!($$(()$! #%,!/#1%2&-"&(!* 3'0$"%,"-"%$'+!."(" $) .#  ""("(#',!)'$&*,!(+ ,!'    $)8*%&5*421269;@DGMRRX^\djemsku|yƒŒ#(-ˆRX]!&057„‘V]a!%BDG}„ˆU[_:@Erz„Œ’„“…”†Ž“†Œ‘‹’–‡Ž”F7&B1!)@0:+9,  #+!'&)+ !* *%   ( 2'H7%F6$=.N;'M:(C3"O<(bL41%I8&kS82%`I1bK3P=)4(%%%+ /#0#0#)"3&3'-!((, /$-"-"'&&&)/#/#2%1%##)&1%2&0%')''+!'!$" '% &,!    !"$&"###)-#0$(,!-"*&" "7)-"((5*31.269:@CEKOQX\YagbkpkuzV]d27:r|‚{…‹<@D+.0|†Šyƒ†7:=137ŠCHK/5:t~‚ƒŒ†Ž•ˆ—‰‘–Š•ˆŽ’^I4 A1!7)=.U?)A1 !    %%#$##$    # ."7*5)4'@0 H7&x\@ >/ kR8+ N;'qW;WC-,!'$%$&-"9+/#'-"6),!.#"+ -!4'5(&!$*."-"9+1%%!%#&,"(+ ()! "     %!   '&)%#%%&!%%%* -"'0%8*5((* *'('$."'3&F5#!&,#40,058;@DFLQQX][bgcjpr{‚05;EKOBJPp{~147JOS@DIckoBFJ6:?HNS >DJt|€ˆ‘–‹“™‰˜Œ’˜Š‘–cM7 4'"'A1 6(     ,!    $0$$#   8*P=)N;& H6$O<' A3"P=*%.#^H0I7%?0_H1E4#'-"# %* 1%+!!!(&0$+ #'* .#& !-!0#2%1%0$,!)  ,!-",""      !%)&%(0$2%,!/"!!!$#'!()0%+!2&A1 ?/0$(/#1$* -!))( $!'0$-!(/$83,057:?CEKOOV\\chelrfmt7<@€‹CJO@DH5:;‚ŒŽAEIFKN‰’–RX[;>@V\`?BGpw|ˆ–…Œ“Œ”™Š’–qV;   3%C3!   &+!1%     !$$&   4(3(?/ H5#6)-"R?+,"VB.1%I7%UA,5(@0 K8&-!*#!  %"#!$'* )* '+ -"( (+!+ ),!* %1%+!* +!$        %1%*')*2&3&.!&%#*  "!),!+ -!9+;,.#'."-"($&'0#%"&.#=-%* 6/)/36:?BDJNOV[\bh\djY`f9>Bt„€ŠŽ!#EILr|0467;>€‰…Ž‘-/1 bgj‹“—47<67Bw…EKP),.aeh…‰>CF PTXV\``ei‡’Y]`/02KPTšŸ_fj #%nty‹’–wf\6($<.,!"               )%#N;'%6)G6# ."I7%:,<.$/#'0$#%  ' !)+ + %#$() %,!%#    '2&2%* !'&$)&$      + 1$&0$%'&/$&""'))'!$+!* + 0$."0$-",!&))#)5.%.257;?CIM=CGRY]OUZJQVs~RZ^:=AGKOƒŠqx} %&(z‚‡ktw!#%:=@{„†ˆ’’!";@Fxƒ‰AGK269–šœf#   , 4(0$  !' !           '    @0 %)."/# * "0$/$ '$"   $)0$** -"4('" !&+ * &! !$#      (1&* #$" $)*) %     &$$ ('+!)"."."."."+ ),!%)")#,!+ $."/#/#0$3+",035:=GLP*-0>DI`gnelrX^cIOSDJNPTYFJOoux579TX\^diQX\OSVNRUGMQ^ghDKNfmtBHM†Œ’·—u) $ 4'=.2&   ("            %%1%%%0$<- .# 5(<-% ."###  "''&$+ &$)$"!'%        "#* + +!."-")&   *1%##&)-"%&*,!'#$"(1%$  "%#'$+!+ ,!2%0$/#+ (#.026:>DKN-13HNRcioou|RW\mqu5:>~ƒ‡EGL$%'nrwz€†PTY/15jqtŠ“•BFIlvzŠ”™puz##& 025‡’Áª’-%6(9+:,5(  ) $        #+ ,!, 2'#)4' '?0  0$:++   $") *+,!-")0#''."-!-"$""            "    "'0$0$-"+!     $-"#"&&+!%''+ *(#&/#* +!#$#$$$!&,!* 0$0%1%* )".125:=DJM#')@EIcjoT[bow}BF(+.v|ˆ“KOS aehjoucgmŽ–šŽ•š‹‘–ò¤YI9  5(E3!  !&%* %  &#       -!."I8%  2% 7*:,XC.M;(2&(-"&$-"* 3&(!$$' ()'(&%#!, #   " !%'* "%+!1%6)-" %,!1&3'""  '(0$.#'$).#,")&*&'1%(-"8)8)'&#'" ."#$(3(42/269EJM!%';>@nsxs{€OW[kqv~…‰~†Š‰ƒŠ{†HKOY]b•™gmq&&)+*.…Œ’Œ•š!’˜Œ’—“˜“˜Æ¹°dQ?  ! ?0F4")        $        ,!A2!F6$R?*  )2&  8*8*!+ -!&$&%'0$* !  "((%)+ '$!"# %" * 1%% !(*+ * ($!(-"/$* %$  $()-"##(1%3&+!)'!&&'+ 2%3&))+ $%  #."%)0$+!**'269BEI!#%=@Ddimlsws{~CGJ%),z‚†…‰€†‹€‰ƒŒ}ƒ‡CDIcejBFKz~ƒ\]cZ\c[_bTV[Ž”™•š•šŽ”™Æ¹°o]J  ! =->.         !#         !C3" *  0%! :,@1 7*-#* )-",!%&*  '#%)#$&+ ,!)%#&&"!!  !  $,!4'-"%!"),!%& (.#,".## ! "(0$$#)1%+ &% %()2%."* *-!)+!#  $$$,"*!*(%169=BDJNQW\``ejmrxt{€|‚†FMPhmq‚ŠŠ‰Ž‡”…‰?AE458|ƒˆŽ•œ\_f‚†Š”™”™•š“˜ÊÀ»zhW   3&4'  $      ()    ' + T@+ $  $4'!XD.R?+[E/9,&+ * '(+ "!*!$&'"(,!+!."* $+ -"1%4'%     !))( !#)+ *# (+!7**! "'+ ,!  * + ($"&&''/#+ + &()',!(')($#)*'#036;?AHLOUZ^^dintz>CH&&(‡‘”$'(FJNw‚ЂБ„‹‘†Ž’ˆŽJKM^`dˆŽ”v{‚@BE•™”™“–›”™‘–›È¿¸ƒkU  /$2& "  !* (  '! 7*  \F/8,G6%<."!3&S@+;-XC.dL5/$]G16) &#* -",!) %%)+ + (!$&)* 1$,!)''+ 6(*       "(2&' "%)*&!   !)4'1$(   (#  $&.#+ $).".")."1$1$)* ** 0$-!+!."*)* + *&!/35;@BGLOTZ]_fijqv_ci@BG^de Ž”™*-1u}ƒˆ‘˜€ˆƒŠ‡ƒˆˆADE`cf;. '"% #$$$#)& !  1%;, |_B,"?/ <-&3&C3"7*T@,TA,I9&! '+ .#/$'$%&,!1%*%!&)0#2%,!/#-".#"&!    !   * -")$ %#$%"  %-"*'  #,!7)3&)+ 5(3&2&-"1%2%4'1%2%1&6).")0$+ &)(&#/34:?AELNRY\]ehfnrw~ƒdhmMPSuz~chlpw}‚‹’y‡„†‡ŒŽ‰ŽPQU215“˜Ž’—•™“˜”™‘–šËÁ¸ž„l 9,-"A1% ($&  ##&+ ."-" 9+:,\G0YE/  0$4'&7)?0  >/ E4$,!9+&&$  &.#."* )* ,!-!4'-"'%'* 3&2&.#1$8*8** "     ! &%!!"# (&&"#(#%#-"-"+1%.#-"$# #0%2&+ '1%2&,!1$-"-".#7)6(1%3&2%0$, + * ($$-&/359=@DIMRY\\ceenrrz|‚†ouyGIL:<=LPPQTU247u}‚TY^\_a†ŠŒŠ““˜ƒ‰‹””˜•™‘•š“–›“—›ÉÁ½¹§–!.#&4'#   %""#  '*() !,! N;'#4(9,) .#8* 9+M;' O<*L:( !0$(-#  ''(* 1%4'9+1%1%('!%."5'3'2&:,<-6)&$       !#*% $)% $0$0$7*-!7)0$')-"/#,!      )3&5(4'3'-"8*6)A1<-7)<-4&1%/$3&-"+!# %!5668=>DHLRX[\cfhptt{w~ƒ~‡Šdin:=>z€€QWWBEG=@CPSVLMQw|‰Ž‘“˜“˜ŠŽ““˜‘–š”˜œ‘•™”™œbVM‹{l#)  ,!:,/#     &+ & $.#'$%' 0$ E4"#5(kS9 ;-D4">/ T@,eM5$J8&R?+  ."&  $)%)+!0$2%0$0$# )4'7)5(6):+8*1%*!"! ##$ !"     " #3&6)5'4'/$-"* '!(*       ")0$/#))1%.#7(/$3&.#*** +!* '% 0228<>CHKQVYY`chorrz}w€ƒ|…‰…Ž‘„Œx~€?DC9>>/12\`bKMPw}Œ‘”Œ‘•Œ‘”ˆ‘•™”˜“˜›‘•™“—› A0( 4'K8$9*      (%       5(5(0$+ )gN56*M:'YC,H7&T@+bK3L;(XC-?/   % -"   #+ ,!+ ,!2%+ $! "+!0$6(4&3&;,/#/$)$&! !    "$"'! ,!*,"-!2&."##'/#(       "%#$%(0$/#,!0$;,/$,!.",!2&-".#* 2217:=BGIPVXZaddloovyy€„}†Š‚ŠŽ…‘w|:=@(**_bcLOQILNŽ”—Ž”—Ž“–‹”Œ‘”Ž“–•˜•˜“—’–™ŽŽmY/$" :+]E-=.        #        ,")/#9+#M:'YD/B2!9+ 0$F5$!-"-" $ !   ' $* * 2%-"1%(&&&%(+ * (,!2%)0#-"+!'#!  ($('"$%%('*3%0#   %,!1$,"" (-!)# ')'")."* %$,"+ ,!),!4'1%.#+ ))."0$%,,+69;AFIOUWY`cdkonuxx€„}„ˆ‡Œ…‹‡Œnsv_bcmpr779fjm’˜œ•˜“—›“˜Ž“—•™‘–šŽ“–”—”—ÐÍÌ»ª™H*"!&    "*,!& $/#'!  "!"#%*2%*"'&& # #  ',!.#)!!'* (#  !  "$"* &# $'+ ,!/#<.5'3&;,0$/#/$."+ ',!))$$(%&$)50)58:?CEKORZ^cgkonswx~‚„‰ƒ‰Ž„‰ŽƒˆŒ‰”Ž“˜tvzy|’–cily€‚Œ•Ž“—Ž“–”˜”™‘–™’—š‘•—ÎËÊÆÂÁfWH  "&D3!9+   &# "     ' 8*  3'!7*\E.S@+,!G7%( */#'(/#'   $!.#/#/#.#4',!2%( $%"%&2&."(%)$ #%! #), &  "$%&#    )+ /#-"""('),!,!(7)9++ 6)7)<-?/C2 5(,!-"(%)$%$# 0,'58:>BDJMP[_bfkpkpuz€„}‚‡€†‹€†‹„Š“˜oswTWZrux/13 JMP†‹‘–™Ž“–“˜›’–™“˜›”—‘•™ÑÌÊÁ®šiR:  'T?(4'   %   "   *   3& >/  K9&$'I7$J8&ZE/%"#;,9*%( 0%&   !!'-"4'5(5(4'-"" ""$'(!&+.#$')* + %%* 2&4'."!!&/$/#() '-"1%*)&%% %,!8+0$+ 8*.#5'7)9+<-9+0$,!( $$!"!%4-&579=@CJMPTX\aeintxx~{‡}ƒˆƒ‰Žƒ‰‰’†Š•™hkndfkdfj?ACƒ‡‹“—›•™ž‘–œ”𒗛ޓ–Ž“–ÒÍÌÉÅÄ{fP $R=(M9%*     &+!%  "0$!  >/ @1!  ?1  (=. "* 3& :,;-0$, % #(!#$1%A0 I7#>.(  !&')!'$# ()*+ %)"%"&)))(/$-",!8*>/ &%-","8*,!%"(),!0$)* -".$6(3&7)6(?0:++ (   $)&!246>ACKNQX\_aeiotxx„…‰‡ˆŽ”‚ˆŽˆŽ“ˆŽ“’˜mqxnqyGHLYZ^Œ•“˜”˜”™™¢“—œ”™•™œÓÍ˳¥…hK 2&/#$N:%U@)H6#    + )%$$$ !'%H6$ 1%  D4#0#@0 &* 6(;- >/B3!#/#$ -""""$'/#/#*  !  %'*$%# '%.".# !)+  *0$2&[F0bDˆjIpNQ=)1%ˆgGª„\²Š`qW.9*4'7)/#,!#   !+& 367>ABJMPUZ]cjmnvyv~‚‚‡…Š…Ž’‡’†Œ‰•‹‘–•›“˜ž•™ž‘•š”˜“—œ“—œ—›Ÿ•š•™œ™ ˜œŸÕÐÍÎÉÆ¦y -"E4!:+& "#     "#! ! G5"$D4#  &(<,4&%* 1%-!*!& "(!%)&&" -",!-"% +!P=*fN6fO64'WB-ŒlK›xT{_A0$ZE/ª„]¶cmT:#!)-"-"eN5»‘g‡hI$!#*)%v[>®†^]G1)'2&Ÿ|W‰iH@1 #$&$."2%."#"&')'*+ -",!2&;,6(5(9*8)<-:,/#.#%!" '"356* $ŠkK¡|W3' žzV¯‰`L;) #",!^H2¾“ipO5(!&)F6%A2"uZ>—tP[F/R?*S@,bK4†gF„eFJ8%%(  "!'"&)'))* + 2&3&1%-#/#,!:,1$."9+3'.",!)%   3)?<7@GKMTY\^cgotxx}}‚‡‚ˆ‰’‡’Œ’—Ž•™“˜Š•Œ‘•”˜“—›“˜›–šž“–š–™“–š—™•˜š•˜œÉ½¸¿¸¶¹š{,">/ 7)D3!;,  +!#      #"!!  * &  *6( *;-'4'@1 ."9+7*!  "  $"?0 •sO”sP $"$ZE/‡iHuZ=ŒlJmLŒlLoM£~X³ŠaXC.' ~aC­‡_hP7  #& ?0 ¬…]‹kK;-!,!)N;(aJ2‰iIžyTy]@>.."#aC§‚[kR76(/$."',!3&+!)3&3'1%;,>/:+9+5(4'3&1%6)=-:+8)7)1$5(1%-!/#0#/#"  21/:<>GKMUX\_dgotxtx|}‚‡‡‘†‹…‹Œ’–Œ’–“˜•š”™”˜’–š”™œ—šž”—›—šž’•™œž¢™œŸ—šžÂ´®²©¤´œ…4*,"A1 V@)L9%  !((&      &%(" " &#%:, '6)&3&D4#."6)9+*   '    !E4#¥Y™vR' 4(Q>+cL4”rOiP89+(„fG´ŒbaK4)&$uZ?®†^‚eF")&% 4(­†^šxTE5$ !&)jQ7ŒlJmT94&(fN5¥€YoU9?/6)4'.#3'7*6(2%?/B1 :+C2 C2!:+8*8+2%/$,!)1%6)2%-"."5'4'+/$3'1%,!" &11/:=?FKMSWZbgjnqvux}€ƒˆ‰’…‹‡’“˜ŠŽ“”™•š”™•™”˜•™–™”—›“–š’•™š¡—šž›ž£ÙÐÍÌÄÀÀ­›B6( ;,\D-F4"   %+ %     *$   &&!@1 (;-"+!:,1$3&:+&   &     !/$’pNnL,! && G7%™vRiQ8 mT:«„\kS9(""hP7ª„\“qO#.#,!" .#¡|WœxTL;( #2&)&_H0}_AaJ22%* fO6¥€Y„eF<-:,7)."* 4(9+:+;,1$),!-"/#3&5(-"0$*).#1%)+ -"5(7)-!3&3&/$*'$$.-+9<>FJLTW[cfimqtx{€ƒ‡…‰ŠŽ’ˆ’Š”‰Ž“Ž”˜”™•™“˜›•˜“–š”—›–™ž“—‘“˜•˜œ–™›ž£ÜÔÒ×ÐÍÄ®˜VK> (;,dK1K8%(  #+ &')    )& $' ,! 9+(8*/#'5'* ! 8*   !* ›wRmL8+ &#  +!{_A•sPM;) ZE/£~WhP7&"!O<)¥€Y“rO%1$@0 C4#5)I9' {W£~Xv[?\H1{`CgO70$2%iP6„eE~`BO<)8*0$|_A¡}X‰iIQ>)8*2&)."7)9*;,:,0$)1$2&."0$."+ 0$,!((5(#&-!/#,"*1%1%-"+ * )  9;=FHJSVX_celprw{~ƒ†‚‡ŠŒ‘•ˆŒ‘‡‹Œ‘•’—Ž“–’—š’–š’—š’•™“–š˜› Ž‘–”–›’–”—›š¡¸°«¼´¯¾©”dUG (/$=.`H/I6#0$  &'#")%"!  "%)! "  ." * "+!&".#)%) =.      !•rN™vRC4"  * L:(yTzUtZ>ƒeF¤XqW<%% 7*žyT›wS7)/$O<(—uRŽnM”sP¥€ZœxT˜vRšxTzV_I3%7)_I1pU:hO6Q=):+8*T@+ZD.XC-N;'6(/# )0$-!/#8*7*.#4'/#,"**/#8+4'0$'5(,!-"6(2&+ .#-",!*)+!1%+ -/1FHJRUW_celpsx|{€‚†‰ŠŽ“‰Œ‘Œ”“™Œ‘•Œ‘”‘–™‘–™”˜›Œ”’•™•—›“–𔗛ޑ•“–š–™ÎÈÄü·µ«£hZN (-":+S?)]E-7)  !$&'('+ ."$    ' 1%@0&#/$* "' ;-     7*!cD—tQ`I2B2"N;(gO6ZE.  F6$„fG¬†^¬…]¯ˆ^˜uRJ8&+!,"[E/…fF|_AQ>*/#;,lS9kR9aK4Q>+H7%G6%D4#@1!4()* 4':,."/#5'* '3&9*5(.##&$().#.#.#*#)(+ 3&?0=.4'4'2%3&5(1%2&0#/#4'0$+!')-"4(3.)!#$8:.9+/#3&0#1$6)5'3&4'5(7):,>/<-:+7)3'>.>/7*7)0$-"*.#0$/$1-%689EGI*,.KMPknpuy|y~€‚†Š†ŠŽ‡ŒŽ“–‹“Š’“˜›’—š’—›”˜‘•š’–šš¡™œ ˜›Ÿ•˜™’–——™µ®¨¶¯©¼±¥–…t )2&."I7#]E->/  &!  !$)2%1$( &&,!&&  $;-* *-!(#1%1% 6).# * !4(,!"+ +  ** ˆiH‰jI_I1 $  &#((0$/#,!$ &&'"+!*($!'"   1$1%3'/#0$* ,"2%9*5(1$(+ 0$+!2%7*8*5(5(0$1%6)2%/#.#,!."1%:,4'7)<,4'<-<-5(:+2%-"*(* 0$1*#:;;ACEPSU026SVYtxz~‚…„ˆ‹‰Ž‘ˆŒŒ‘”‰Ž‘‹’’”•˜”˜‘–š“—œ•˜œ—šž–™˜›ž—šœ”˜™•™›×ÑÎÇÁ¾³­©–†w  ?0 F5#1%M:%[D,N:% + /#%   "%,!.", #%+!-"' $ 4'* * 4'-!(7*3' :,0$-"!.#/$$* 2%)$(kQ8y\?dM5 $   #$!!""+ + .#, %&"$$ ))+ )%%$$ $/#/#*%,!&%."0$6)7*3'1$+ *1%-"0$3&7)5(4(/#),!+!."1%4';,5(9+>.7*:+<-7)@/7)."+!+ (0$,$011@CDKMOfik36:Z]`†ˆ†‰†Š‰Ž‘”—’•Ž“–‰Ž‘Œ‘”•˜–›ž–›Ÿ”—›•˜œš¡—šž—šŸ—›ž˜œžÝØÕØÓÓÐÌʸ«  <-5(5(WA*\D-N;& '*&   (-"( !)3&((& & 9+%&2%4'#0$2&:-E5#0$($:,)$.#4(&'T@+nL€cD (#!!$$! %'+ 1$+ 0%3%'$# !#!$'',!* ('#')*0$ $4'.#2$8+0$2&%")'* 2%;,:+9+5(, ,!)*+ 3&6)9,4(8*>.?/C2 ;,9+<-3&)+ .#3&-& !"689KMPX[^mpt(Q='   #."-!""#&0$' &##."(."*  3',!'3'5'%2&7)#,!4'(&  6)&&+ 5(2&6*]G0…fE†gG&4&)     # &#+!, )###  $("  '! #'-!*#-"4'7)5'+ &&$*2%:+9*3'.#* /#+ *0%5(3&2%0$9+:+=.<,:,>/?/6(,!,!2&.",%./.#$&ACE\_bZ]`z~LPS[]aˆŽ‘•Ž“–‹“’•Ž“–Ž“•‘–—”—•˜—›ž—šž˜›Ÿš¡—šž›Ÿ£Ÿ£º´²½·¸¿ºº³”x<-=.;,T>(ZC+M9%  $()#  !&(! '"%(,! +!(&5)E3!/$1%3&&;-D4") #' 2&#-!)/#4'3&U@+‹jI€cD)4'1$/#.#&" ##.#* ,!+ !)%" $(#$(& #!$!)!()1%8*5(5)&$%#* 3&<-?/8*3&2&6)3&3&8);->.4(3&5(8*7).#+ 5(5'9+3&-!'*'!22279:)+.SUX!rux~ƒ„W[^VY\‡•™Ž“–’–”–Ž“”’“Œ’“•”—›•™œ—›Ÿ˜› ™œ œŸ£œŸ¤ÛÖÕÎÉÈÀ»»·¢‘*"6(?/0$K8$O;&H7$ +!;,4'#(+ !'.#&',!-!5(>/>/+ 7)."+ "8* 0$?03&5(2%-"4':+1%&8*" %/#/$0$,!S@*¡|V‹jJ1%;,8*0$*&"$,!-"#$#$* ")$,!+ * #!&&#!""   '(%&%+ -!6(4'1%$  "!$'0$3&4',"&$', *+ /#-"1%-"0$1%-"(,!9+=-2%,!+!7)=0"541ADE:<>//1\__zŠ‘’bfkTX[†‹Ž–œŸŠ”’”Œ‘’”–‘“’–˜–™—›ž—šž–™ž™œ š¡™œ ÝØ×ÛÖÓ×ÑÑÊ»­<4,VA+-"A0U@*E4!#A1 :,4'/#:,2&-"1%')&&.#:+3&6)4(8*?/4('&5(!4';-/$5(:,0$%:-3&."@0 "& !$)H6%žyTŽmK>/9+H6$Q=)P=)tZ>jQ7/#%&/#, 2%)") #"%=.;-! "-!/#/$,"''&/#.#+ &##%0$7)).")(   %)*1$.#1%/$8*2&1%4'5(5(2&5(+ 1%/#,!-"6)?/:,,!'-"3'41.CEF*,-579„ˆŠ‚†Š‡ŒimpZ]`‚†ˆ’—š–—Ž“•Ž“–“—š“–š‘“——™ž—šž–šž›ž¢›ž£šž¡ÈÁÀÍÆÄÌÇÅÍúMC9 I7$(@0J7$H6#'9+,!(."4'.#2&2%4'1$1%))5(<-3&4'9*9+=-4'''G5$%2%:,%."8*4'-!G6$0%#?/, 2& + #&) M;'¨‚[©ƒ\ªƒ\±‰a³‹b±Ša²‹bµdx]@." &+!'2%+ ."eM2cDdM6&&fO5¢}V}aC)!#,!+!.#2%."-"* .#-"(&+ 4'))-"$"  !+ + ."/#.#1&2&2%6);-D3!9+<,6)4'.",!.#-".#*-"-"%'3&G6#1+%;=>*+,'() !cei„‰‹…‹Œ’•vxzY\]ƒ‡‡™žžŽ“•Ž’””˜š—šž“—•˜œ•˜œ–™›Ÿ¡›Ÿ¢œŸ¢ÉÃÁÆ¿»¾¸´º­£WLB Q=(1%G6#F4"L8$4'<-4'+ 6)0$-!/#;,3',!4'1%$,!3&5(8*6(;-3&2&#%F6$!0$7)")8*7).#J8%3'$8+0%2%'$%%"E4#ŽnL“qN‡hHuY=sW N:'1$@0T?)J8$2%A1 :+3&0#+ !+ /$$."5(3&%&++ + .#:,3'D4""#P>)#1%B2 *+ :+;,3'M:&4'%1%2&B2 5')&.!,"$(0$2%0$:+;,7)6(<-7)3&."-!(%!I8%˜uPdM4#ŽlJžzU+ 4' {UcE!/#+ +&/$4(0$2%/#3'?/8*'+ ."0#/$* ."&%+ )$1%3&4'/#(* ) -!1%-"-"0$)0$5(=.D2 ;,<-6)9+5(7)7*A1B1 8*:+?/?/51,022NPQy}~\_aUYZ“–™“–šabc$%%uyz“—™–™›’”–“–˜—›–šœ™ŸšŸšžŸ ¡ÞÙ×Ý×ÕÖÑÍÎÉÆveS  >/.#8*H6#F4!/#<-B2 7*,!#$'#(3'5(5(*+ "+ 0$-!N;&4'TA+$O<(%6)F4#)*F4#K9&2&VB,:+"* 4'=./#(* 5(3'),"."/$2&9+6(1%7);,3&/$.#1$,!'+ J8%™uP…fEcL5ŽmJŽnL:,XD.šwQ’qNeM5|_A$(#,!4'5':*9+;,@05'.#+ '+ 8** *#+ $/#0$8)6(4(5(0#+ 0$0$0$/#+ 2%/#-"6(A08+;-C2 =.2&9+=.9+1%1%3&>/6),!1+$)** knowz}‚‡ˆcfhVXZˆŠ456"#$MOPsuv—𛓖™’•–—›œšŸŸ˜œ—›œšžŸŸ àÛÚÝÙ×ÒÉÂÍùŒ€t L9'1$<,K8%I7$1%2&8)E4"7),!,")(-";,>.8*."#')-"C2!9+M;&."-"S?**;-Q<(,!,!E4"A2 * 7)+  7*/#=./#&!+ 5(5'/#0$0$,!4':,5(;,@/4'.#/#1%,!(-"0$sX=™uQ§‚Z•sOS@*G6$žzU•rN {UŠjIoU94'+ -!/#3&1%3'8+6)2&3&;,0$:+3&4'5(),!,!$/#1&7)3&6)?/=.6)1%+!2&4'2&=.@07*6'2&7);,6)9+1%:+7)."* (1$;,+ 0$F8+(*,dgjz}ˆŠŽ†‰ruwABCSUU˜œœSUUjlm–š›–š›—›œšžŸ˜œ˜›œ¡¤¥šžáÛÚÞÙØØÔÓÏÊÉw^ ,!1%5'?/:,5(4'3'8*6)3&2&1%,!1$<-@/0$."$%)$"E4"7(M:&'0$R>))4'@1 -"%C2!A2!$>/3&))C2"7((%/$:+7)9+6(3&2&4'8*;+:,;,;,1%-")$%&*+!N<(cL3D4"2&7(, y\>’pN.".#/#$$$,!0$.#+ &&2%6(4'4'2&0%0#+!/#'+ .#6(;,2&8+<->.@/=-6(8*8*7*5(D3!B2 ;,6(5(4'3&9+8):+0#-!2%.#0%6(."7)% ++,[^`:=@dgj‹Ž‘‹Ž’ŠDDEruv©­­\]]SVW_be›ž ™žœ ¡˜œ•˜™ž¡¢˜š›àÚÙÞÙרÔÓÏËÊ¥“ 4(>/1%0#7*8* +!/#3&,!),!+ *-!'&(%+!+ &#?/4';,.",!N;(&."6(1%(@0 D4"* F5$7)&(&3'5'*%,!6)9+C2 E3!B2 6):,8+;,9*8*<-6).#)#&'.#+',!.#,") 0$qU:nKA2"B2!>/#''.#1%0$" &1$4'9+3&."0$1%1$+ ."6(9+7)5'/#."2&>/C2 G5"@01%,!2%6(?/<-;-4'1$-"/#4'7);,;+:,;,9+4'1%1$=.'Y]_mqt>AEgjm“•™…†‰ €ƒ„ˆ‹‹ikm’•—uxzSUYŸ£¤˜œ™ž•™š›Ÿ œŸ àÛÚÞÙØØÔÓÎÊÉ»­¢ 2&?0%)7)6) ))'&# #$&&(&* &*+!':+, @0-"/#D4#'2&D3!C2!4'F5#G6#,!?0/#(+ $,!8)+ (-":+B2 ?.J6$M:%=.=-9+7)=-=-9*8*<-1%'&,"1%** ()),!3&bJ2˜tPlKŠjI\F0&+ * ,!-",!!(0%7)8*3&)&3%0$0$2%2&,!(/#.#+ 0$@/G5#J8$F5"2%(.#8*1$=.H6"F4">.6(3&2%6(7*3'@0=.7)9*>.3&0$,%$$#235]``mqsz~IKObbdbacPRSmnpCCD|€› ¡šžŸ„‡‰GGM”—˜›Ÿ šžŸ›ž¢ £¦ßÛÚÞÙØÙÔÓÑÍËË».#%7)3&$$+ %##$##$(* * ')'1%,!U@+&$7*)-!7)>.5(@0 C2!+!@0 ,!&$/$'I7$3&/$0$9+<-9+E4"Q<'G5#:,3&8*?/<-4'8*@/=.0$"$$&&+!'%%0$9+lS8oL€bCF5#(&%(-"/$(%*2&:+8*1$+ * ."+!/#/#0$,")/$3'2&-"7)A1@0;,/#%,"5(2&A1 O;'E3!C2!;+1%1%7)9+7)?/?07):+5(."'.' --.)+-\_`mopz~„†[]^)++“˜˜…‰‰888uvv™œ–™šž¡£Ž’”EFH‹ŒŽ¢¥¦™›Ÿ ¡¥àÚÚÞÙØÚÖÔÓÎÌ͹ 3'(* 2%3& %&'(&&#$&* 2&/#-"3&.")+!=.<,)+ 2%5)1%7)?01%B1 F5#.#@0 8+'%1%!=/2&2&7):,3&4'?/I6#F4"3&/#2%7*3'-"2%5(;,4(%!#$(#%',!3&>.>/7),!&(,!,!* )(."2%8*6(3&3&0$1%1$/#.#/#* ()-"(&* 2%:+9+.")* 3'@0C2!B1 <-;,5(/#.#6)=.?0G5"@0:+4&)+!%("%$#<>?EGI,-0egiz|€ƒ†qstNRR¨¯®hlkuwxVXXuuu—››—š–šœŸ¢OOQ}~€›ž¢ ¢¥àÛÚßÚÙÛÕÓÕÐÍŲž+# H6$(,"1%6) (#* *-!))'&-"8*4'.#5(2%0$.#4'6)-!-!8*9+2&=.A1 %A1!E4#*C2!C2"3&,"-"/$'/#4'7)3&6(;-C2 D3!9+5'3&3&/$.#0$0$8*3',!''&"!& '-"/#4'4', *0$5'3&.#+!(,!1%/$8)8*7)4&=-;,0$,!+!(*%'!#,!."8*=.2&3'+!4'?/>/:+7*5);-8*3'4(;,=.D3!B1 ;-6()%"%100@BCMOQXZ]026ruy~ƒ*,+ WY[–šœklm€ƒƒ¨¬¬TUUrst”˜™—›œ¡¢¡¥¦abdllnŸ¡¢áÛÚßÛÙÛÖÒÖÒξ¢…<0$ 6*)4'D3! $-#.#6(0$.#.#*4'6(+ *!,!/#1$5(1%9+1%/#6)I7$7)G5"J8$-";,9+(1%3&+!%) 4( * ,!2&3'3'4'>.A1 F4!:+2%9*4'/"1%/#3&6)2%1%1$+ #'&#$(-"2%+!&'.#3'/#0$+ !+ 3&2&8*3&3&1$<-<,4'+ (+ /#-"+ &&+!.#6):,7*:+8*9+7*4&5':,7*<-:+5(:,A0<-?/C2 6)0%,!*+ 0%(%";=?LNO[\_iko56:lno?AB†Š99(6)*.#)* 6)5(+!-"3';,3&,!)+ .#'2%:+4'6)#0$S?*=.M9%U?):+>/:,)&@0 ,!#5(,!,!"),!/#9*A1 :,7)@0F5"E3!C3 A16).#3&1%1%3&3&."-"+!# ,!!)&(#%,!,!,!B2!I7%<-/#&#[E.{^@}`AcJ2B1 1%5'4'3&1&3'0$* ((.#,!+!-"/#1%8*3&5(0$1%0$5(1%2%9+:+J7#P<'H6#C2 <-6)0$.#)-"541/23246PRUilntwz›ž¡…‡Šmnr{|€gim^`c“•œ  ¦«­…ŠŒTX[‚†ˆ¤¨ª £§¡¥¦àÛØàÛØÜ×ÔÖÐÌÐÊÅmg` I7$%."6)U?)9+(* /#4'0$4'9+2%+ ##$ &($'9+7(>.)4&N;',!<-R=(7):,@1!)0%$!-"+ ( #%(/#:+7)8*@/A1?/C3 =.1%6)>.7)5(1$/#)),!'.#5(9,G6%;- !eN5w\?tX.7*2&;,>/^F.G5#C2 C2!B2 =.8*1%@0 Q=)=72BDF8:;8:/%4'D2 6(F4#XB-9, ;-' ,!'A1!#$$,"5(."0#3&7*>.J7$F4"B1>.<-;,G6#]G0S>)K8&9+# 2%tY>‘pMbC:- O<)£~X„fE0$#C2!ƒdC {VœxS—tP£~W”rNz]>1$Q>*XD-H6$’pNoLcK21$;,7)4'-!/#-"*-!8):+8*5'8*>.8*3&7*=.;-B1 B1<-:,9+<-L9%M:%L9%H6#M:&L9%F4"9*4(=.;5/<>@KNOJLMBEG”˜™cfiGHJ„‡‹jlofgj•—œhkojlp¡£¢¤ ¥¨™ jmpmor–˜›áÝÛàÛÙßÙÖÖÐËÐÌɈ|q YD-)/#D3!L8%M:%*7)5(>.=.<-8*."/$/$'$*3&0$&! 8*5(G5#1%-">/$4'G5"8*@0I7%6) E4$2& %2&K9&,!"$!#Q=)N:&WB+\E-I8%:,D3!E3!B19+:+jP6|^@€aBcK2w[>“qOUA++ -"^H2rW;~`A-!  =.¤~XuY=&.#qV:ªƒ[ŠkJC4",!7)„eEŽlI<,K:'7)(?0 ŒkImS8."8*7);-8*-!,!#).#/#5'3&;,?/>.?/+!4&3&:,J7#D3 >.;-9+?/F4"H6#N;&O;&I6#D3!?..#,"2-(;<>ILMY]^@BDJKM ¤ƒ„‡DDEsuyXY\ghj˜›Ÿ—šžwy}_ae˜› ¤¨Ÿ¢§ž¡¥uw{hhläàßâÞÝàÜÚÚÔÑÒÎÌ›“Œ J7$-"* 6(H7#D3!%,!,!0#/#8*;,-"$(')6)7)M9&5('&;-2%C2!(8+H6$, A0C2!*)3&2%$9,.# +!/#P<((.#', .#[D-kQ5tW:aH/iO4cJ1;,4(1$5(_H1ƒdDlJ‚cDuZ=}_@ŒkI—tPH6%-"I7%oU8‹kI& =.£}WƒdD1%>/ŠiHšwSP>*"!0#ƒdD–rNvZ=ZD,=.0$."oT7ˆiHN;(-"5(3&9+2&0$** *-!0$1%3&8*?/A09+5'/#6)?0B1 E4!?/<-<-@0;+A0A1?/B1 =.* -"2,&:;/A1?0;,/#."-!1$/$, -"'2%'9+(7*0#.#F5##2&;-) 3'2&&1%')-"%C3!1$'(9+0$WB+ƒdC™tP‰hFpU8^F.C3 ,".#F5#sX;‹jIVA,,!(7)pU9ŒkIkR8,"A1 œyS“pL0$# ?/ ¤YƒdE3(E5#žyTŒkKD4#%'TA,kR8iP7WC-3'-!."4(`H/ŒkI_H14(=-6)1%/$0$0#0$-".#.#1%3&=-?/I7#E4!B2 :+4'5(9+=-1%:+:+;,?/;,;,<-=.@00$3&80'B?.YD,lR5B1J7$sW:vY;M:%3&+ K9%†fFsW;>.*+!2%ZC,‹jH†fE1$=.›xS”rN4'&4'¡|VˆhF9,=/„dD‡hGM;)-"4'3%'1%D3"4(."2%2&K8%‹jHx\?/"YC-mS9$1&8*5':+>.6(0$9*7)7)=-E4"I7#E4!?/6(9*@0?/;-4'7)6);,;,6(7)8*:,5(4'0)!778JLN#$%qtt„†TVV>?B ¢Ÿ¢¤ž¢¤’•—]^c~ƒ¡¥¦Ÿ¢¥¡¤¨”—›kmnfhi±²µ§¨¬âÝÚáÜÚßÚ×Û×ÔÖÒÏĺ± M;(1%":+U?)Q>(  *0$1$3&4'B1 7)3&3&9+7)3'0$3&'>/+!:+(,!=.4'5(=/;-(9,,"D4#mT:~aCoM=.9+4'2&)+ @0iO5bJ0@0;,F5"eL2bI1F4"*N:&‡gEcL31$%'$D3!„eF˜uQ,"9*›wS”rN<-3'* 5(¥YˆhG=//$|_B {UuZ=>/5(.#<.‘pOsY=,!#(%.#cC—tPx]@…eDeM3, 6(2&6(;-A1 9+1%3'4'8*5(<-B1 E4"C2 @0:+?/E3!@0D3!?/3&>/I7$5';,7)3&>.A1/'455EFH‡‹Œ€„„FHH€„†XZ^”—™£¦§›ž¡œž¢jkohhlœž¡£¦ª¡¤¨›ž¡y|}Z[]¬­°âßÝâßÜàÜÚÛ×ÔÕÐÎIJ¢ >0/#%0$>.?/  ',!+ 2%<-8*/#/"* 1&,"''/#)M;'1%G6$bL3YE.YD.1%/#;,?/7)=.*  C4#zV©‚[®‡^I8&2&A2!%%"1%A1<-?/8*;-dK1lR6T?*/#ZD,bBnS8:,+ )'J8%kQ7v[>3'.#‚dE{^?=-/#>/oU;œwSˆhH8* WB.¡}W¢~W¥€Z™wTŸ{W­†]¬„\qV;6)'('$F5"¤XŸzT—sOjQ6(.#0%7*;-;,>.?/6)-"0$7*8*A1J7$@0J7$9+7):+=.9+6)B1 B2 J7#C2 ?/I6$K8%B1 ;+1(877'()RTTx}|osrX[[™Ÿ}€ƒ]_cŽ’¤§§¡¤¥¤§ªuw{VV\¨«¯¡¤¨¤§«¤§ªŒ’XW\åàßãßÝáÞÜÜØÕÕÐÍɹªL:'1$-!."B1 F5"  + *'.#0$9+>.A03'-"7).#-"+ (@0 :,H7$x[>`B|_@7*+ 5(7)."B2!=.1%…fGŒlJžzUG6$-"?05(+!$* ;,2%7)=.Q='_G/^G/cJ16)K8%gM3nS7fM3F5#8+N;(oU9kIeM4<-3'˜uQcDcC©‚Z¨Z¢}VŸySuZ>$%"O<)nM£~W¥X¥Y¬†^§‚[v[>-"0$2&.#2$+!C2!eM3nS8TA+2%0$6)6)6(>.I6#J8$C2!;,7)8)4'9+I7#E4"F5"<-:,8*>.1%:,B2 K8%T?)>.?/@0=.>/4'5*=;9 twxtwxDFG‘•–•˜š˜›ƒ†ˆ]_b‰‹Œ¡¤¤¢¥§£¦ª‰ŠLKQš›ž¤§ª¥¨¬©«®–—›åàßäßÞáÜÚÝØÖÖÑÎɹ©-$3&$';,D3"J8#    &0#/#8*>.=.>.:+8*/#,!-"'C2!7*;-…fFŽmK‰iHD4"(;+C2 1%D4"H6#6(9+‚eEŸ{U™vQH7%)\G/9*4&%-!A1 =.:,?/K8%hN4iO5^G/=-C2 ]F.|^?‰hF‘oKkIlIkHbC=.7)5(•sQ‰iHyTyT›xS‘oMeL50$)'&%+ F6$_H0dL3N;'4'&'-"1%6)>.<-.#)+ '*+ 4'3&5(=-@0H6"G6"F4"F5">.H7#G4"I7#H6#J7$A19+3&>/2&4'@0N:%ZD,J7$C2!?/4&5'."2&+(%9::mqruxzEFI•˜›”—š•™šž¢£‘”–[\`ˆ‰‹¢¤¦ž¡¥£¦«™šŸHGK““—¤¦ª§¨«¬­¯åààãÞÝâÝÜÞÚÙ×ÑÐÑÊÄ=4+(0%$@0I6$T?)"  $,!."'4';+2&3&7)5(0#'* (7)7*/#^G0†gF}`CE4"7)?/=.$D3"O;(9+3'u[>‰iH˜uQP=)* G6#1%9+/$-"6(B2 <-<-@0jO4sV:U@*?/E4!A1aJ1‡gF”qN‡gFlJdM4,! $N<(XC.P=*D4#>.-""#+ * -"1%-!)/#5'2%."(&)-"0$3&?0E4!;,9+,!7)6)5(/#+1$:+7)7)B2 @0@0>/=.A1?/B2 ?/<-4&5(=.>/:,N:&M:&F5"A0 F4!8*<-;,-!:,^abilnIJL€ƒŽ‘•–™—™žœŸ¢ ¢£š›ž\^c~ƒ £¦£¥©£¥ª¥§©STW„ƒ‡¦¨©ª¬­åàßäßÞâÝÜÞÚÙØÔÓÏÊÊG>5 /# + 6(D3    $/#2%)3'9+7*/#6(/$-"1%&$5(@1!1%‚cDiP7pU:@06(8*9* C3"N<'4'+ sX<‡gHƒdFD4#&D4#3&7)6(0$-!6):+5(=-nR7y\=R>)2&9+8*:+4'8*B1?/6(6(+!&  # !!#()1$.#1%)+ 1$;,9*1$.#7*) '&2%=-<-9+7)1%-"/#0$4'6(3&3&5(9+B1>.6(5(=-9*;,A1K8$M:&C2!6);,<-6(<-6)A1=.E4"E4"H6#F5!3'0$ "##[^^loo789”—™“—™›ž¡œž¢Ÿ¡žŸ¢¨©®\_cy{™›Ÿ¥§ª£¥¦©ª«lknnmo¦¦¨åáàäßÞãÞÝàÜÛØÖÕÎÄ»M>- 9,$5(H6#R>()  &.",!).#2%1$7)5(* * 2%3&1$5'<.-"oL|^@z\?I7%:+@0;,!6)N;'J8%>0z^A“qO¨‚\gO6#?0 ) 4'3&2%:+7)=.7)E3!]F-hN3M:&5'7)<-<,5(4'6(8)7*/#-")0$ )$ + -"0$.#+ /#,!(%/#7)/$-")0$/#&)4'@/>/<->.G6#<-4&6(6(6(/#-!1$6)5(/#1%7)@0C2!F5#I7#K8$Q=(O;&:,8*?/4';+D3!J7$A1 E4"8+0$5'2%3& EHG\`_BEDbeeˆ‹’––™—™¢Ÿ£œž¡¢¤¨ª­±mnsmns•—›¨«¬¦¥§¬«¬‚‚ƒ`_båàßåàßâÞÝßÜÛÚ×ÖÒÍÉg[QH6$%0$@0T?)0$ ##"'((&* /$5(."%/$0$/#0#?0F6"<-oLx[>ŽlJ~`Cz]@uY&I7%* -"6(3&F4"B2 D3!7)B1 R>(ZD,Q='<-=.:,5'2%* -"-"0$2%1%* %  $'(*."(-"2%2%-"1%:,4'1$."0#1$* )0$1%3&:+9+:+H6#>/>.C2 >/7)4&4'4'6(5'5(C2 B1 <,7);,H6#N:&M9%A0>/8*6(:,=.>/H6#A1 <-9+3&."A0 KMM\`_*,,~‚ƒ„†‘‘–•—š˜›Ÿš ž ¤Ÿ¡¥¡¤¨¡¤¨°´¸€€…edjŽ’ª©ª«««®®®——˜äßÞäßÞãÞÝàÜÛÛ×ÖÒÏÌm]L Q=)2%/#7)A1-" +!,!0$+ ',!+!,!+!,!*)-"+ $,!?/VA+;,„fEaBlKxT–sOˆhGXC,(-"|_B¨‚[’qN”rOoM¢}W|_A/$:,#$(4'>.E4"=.7*B1 _G.Q<'D3!:,9+6)4&5')%.#3&3&-"2&,!&,!( &$* ,!3&1%0$.#,!2%8*>/5(+!+!-"8)/#3&1%2&7*2%0$4'4';,B1 :,?/F5"E3!<-8*<-G5#C2 >.8*6)?/D3!C2 ?/=.4(7)5(3'8+@0:+:+?/4'*?0",-,MOOEGGMNPwz|~„‘”–˜œ”–šœž¢¡¢¦Ÿ¡¥ž¡¥¥§¬£¥ªª¬¯•–š__c€€¦¦§±±±­­®äßÞäßÝäßÞáÜÛÚ×ÖÓÎÊs^I @1 1%$.#B2 4' + .#7)0$/$1%/$3&-"3&/#%&#$,!9+R=(?0‰iIŒkHˆiG˜uQ‹kJŽmK]G0%'x\@­†^ŠjI‘pM|`BŽmL‡hH:,<-%1%3&<-8+7)J7$pU7V@*>.1%0$.#.#/#.",!2%2&3&."3'>.4'5'/#&%%&(*),"* /#1%-"4'9+4'/$,!/#H6#7*8*;,8*9+3&-"-!1$5(:+=.B1 K8$G5#>.9+8*A1 C3 D3!7)2&2&;,;,A1A1 =.<-6(1$0$9+9+5(1%."&2&799ORR*,,knotvy„†‰Ž”™š–™Ÿ¢¦Ÿ¢¦ ¤¡¥¤¦ª£¥©¨©­®¯³£¦§pqrzzz±±²æáàåàÞäßÞâÞÝÚÖÖÔÎË„sa4'.")4'C2 3& )* -"/#4'7)5(5(4'6)-")&"(.#;,R>)>.cDŒkI’pL™vQ‰iHŠiHeL4*#mT:¨‚[–sPŒlK˜uR |V•sP6)B2!* #-!0$8*:,8*P<'qU9T?)D3!5(3&:,4'-!* '+!/$/#,!/$4'0$+!* % "%#$"'',!2&4'5'5(2%1%-!5(?/:,=.@0C2 <-:,4&0#.#5(8*:,B1 D2 ?0;,3&5(8*8*=.:+8*+!).#8*7)F4!?06)3&1$<-;,8*3'3&'')":;<>@A=??ilmuw{ƒ†ˆ‘“–—›™šžŸ¡¥ž £ £¦¤§©£¦¨¥§ª§¨««¬°¨ª«°²³€€vtuæáàåàßäàßâÞÝÛ×ÖÓÏÏ”„r -"0#2&5(:+/# $'+ 3&<-;,5(6(,!(&-!*"&,!P<(1%kR8aAƒdD”rO…fF‡gFhO51$(UA,ŽnL¡}W¡|WšvSŸ{V–sP5)D3"?0/$* -!2&/#8+@0YC-}_@dK2V@*H6"N;&R=):+0$,!,")-"'*.#.#0$/#&)##$ #$%(/#8)9+/#/#))+ 7)=.7*:,<,A06(6(-"2%7)2&5(:+>.5',!,!,"5(5(;,@03'-!3&0$2&=->/:+4'3&<-?/;,7):+:,6(;0%BBA!"#VXZgikvy|…ˆ‹‘•–››œŸŸ¡£ž¡¢¢£¥ª«­¥§©§©ªŸ¡¢¦§©ª«­§©ª­¯°’“•zz}æàÝçâßæáßãÞÝÞÚÙÕÑѦ›‘ %,!:,<-0$." $#),!7)?/=.9+3&,")$2&0#'"I8%/#kQ7kInL“rO‚dE‚dDoU90$,![E/‹kK™vR§Z‰iI¢}W¦[;,=.A0 0$(+ 0%-">/A1I7#pU9ŠiGjP5fL2mR6YC,6)."1%.#-",!'%',!),!,!1$,!%"&%(&$!%."2%."+ 1%-!(#.!3&1%9*:+9*2%3&)'-"(-"7)=.5(3&2&4'7)5'7)@0@0>/B1 ;-5(<-9+?/;,6(7)9+8*8*?/=.5(B6)=;9*+,\]agilxz}„‡‹Ž‘›œ ŸŸ¢ £¤ £¤¤¦§¨©ª¤¦§§©ªŸ¡¢¨ª«¨ª«§§¨­®¯­¯°¢¤¦»µ±Å»·Í¾ÐÈÃÒÊÈÏÊȰ ’ + 2%B1 C2 C2 ;,!&$%,!6)<,=.@0A0=-7)0$>.0$-!,!(H6$4'gO6¯ˆ`°ˆ`­†^£YŸ{VŠjIQ=)H6$qW;–sP’pN‘oM}_AƒeDbCG5#1%1%+!#,!5'4&@/J7$E4!O;&€bB”qM˜tP˜tOz]>E3!.".#* 0$.#*$$0$)* -"(+ 1%*&$"& $0$/##) (()%)-!2%0%:+=.5(2%*(*$'2&:+9*5(3&:,;,9+2%5'@/F5"C3!:,9*M;&K8%?/6(:,<-8*?0A1A12%)M=-,)%DEGXZ\gilxz}~€„‘•˜šžœžŸž ¢¤¥§§©ª£¥¦¥§¨§©ª¦¨©­­¯¦§¨©ª«©«¬¯°°««­ÇĿ½¸¾¸³»µ±µ­©±¨¥¡ˆq 3'A1 @0?/F4"A0%#%(, 2%:,:+3&3&0#);,0$-!,!,!9+.#P=)‘pN}`Bx]@pV;fN5XC-I7$?/B2!O<(K9&?/ 7)7*2&.#-!<-2%0$2%>.<-@0M9%C2 8)J7$fM3rW:y\>kQ6C2 ,!)'&+ + )7)+ +/#.#,"6(*$!#$!&(+!##"!("#%*+ 0$8*,"+ + + (%&,!/#6(7)4'7):,<.6(2%7*D3!<.4&4':,D3!D3!>.<-@0@0G5"F4!B1 6(2%WD01-(IKLXY[gily{~ƒ…‰‹Ž‘”—›žŸ¢ ¢¥£¤§¦§©Ÿ ¡£¤§©ªª¬­«¬­¤¥¦¬«­®¯°­®¯¬«®âÞÚàÜØÝØÕØÔÐÐÌÈÈ¿®˜„ #:,2&:+2%>.' "%&3&8*/#0$, -"+ 6(.#1%4'2&@0/#+ =-8*5(.#/$7);,?0?0>/E4#:,+!2&7)9*:,<.2&5(/#;,F4"@/G4"G5"5'6(=-C2 H7#I6#6)* (#+ "#'2%0$$('+!/$,!$$' "# ! %'$'*-!5(6(+ .#0$2%0$-",!* * 6)6(0$5(9+=.;,?/<-A0=-5(7)1%7*N;':+=->.A1 ;,4'2%1%0$M:'>;6KLMY[]jloxz}‡ŠŽ‘”˜šž¢¢£§§§«¥§«¨©¬§©ª¢¤¥¨§©¬­®¬­®«ª¬±°²®®¯­®°çâÞåàÝãÞÛáÝÚÝØÕÖÑÎÊÁº 7).#9+8*C2 $%*-"?0>.0$1%/#+!,!6)3'5'>/K8%YC-rX.B2 7)+ 2%5(2%H7'GD@OPQ\^`npsy|~‰‹Ž‘“–œŸŸ ¤ ¡¤¡¡££¤¥ª«­­¬®¤¥§«¬®§¦¨®°±¬ª¬°®±®­¯®°±åàÝåàÝäßÜáÝÚÝØÖØÓÐÎÉÇ/(" %2%A0 9+<.' , -".#0$5(7)9+2&( /#3&6(8*A1@0 B2 4'-#/$9,@0 =.,!"*+ ,!1$7)4(1%'-"+ 1%<-=.?0>/9+9+;,7)1%;,7*0$*&"%* ."&.#%#&'"%$ '0#0$1$2%1%.#-"+!(%""$+   #-"6(8)?/=-5(.#((* ,!+ 2%0$7*/#.#-!-"-"-"/#.#0$1%,!/$1%0$6)5(,!]H1QLFUVVacdpst|~‚ˆŠŒ“”˜œ¡žŸ£¡¢¦ž¢£¤¨©«­©«¬¥§¨£¥¦©¨ª¦¥§­¬®°°±¬«­­­¯æáÞåàÝäßÝâÞÛàÛØÙÔÑÏÊÇ<71 2%F4"6)?0.# (2&0$3'?/A19*:,)!(,!<->/>/?/A1* &."4'2%''$%*,!2&-!1%5(5(/#+!/#4'7*>.B1B1 7*=-D2 B1 9*,",!."*'& !#)#&  !  !* 1$5'1%,!4'0$.#4'+ 5(.#."&$! #*.#2%8)4'0$'#)* )%+ /#1%4'1$5'6);,7)2&/#2%5'2&.#7)5(7)5'C4"XG5TQNXYZfhhruv„…Ž‘”™›Ÿ¡£Ÿ ¤¢£¦¢£¦¤¦¨©«­¬­®ª«¬««­­­¯¬«­ª©«­­®­­®²±³çâáæáßåàÝãÞÜàÛØÙÕÒÐÌÉ<4* !A0F4"1$7)-!  (.#,!2%:+6(3&3&-!)%/#6(6)3&?/F4!9*-"3&4'&&.#/#)($, 0#-#2%+ + 5(:+4':,8+J7$D3!;,B2 K7$C2 G5"C2 4'+!'&%)$"&%&* $     $%(*)0#4'4'."6(.#*,!/#2&* ($%* +!($"''+!/$;,4'5'8+@05(2&,!0#9+8*?/A1 ?/H5"4'3'D3!6(-!3&?/NA4XVV^`alnoz}~…ˆŠ’•™›œžŸ¤¥§«¢¤§¢¤¦¨ª«ª¬­­¯°«¬­§©ªª«¬±°²ª©«®­¯©¨ª´³µçâáæáàæáßäàÝáÜÜÚÖÕÐÉÂ@1! $;,P<'0$=-0$ &$&* * 2%5'5(4((."'&'$0$@1;,1$)3&5'(#$'6(6)%"$&2%/#:+C2 7)A08*7)>/:,B1 ?0I6#J7$A1 @0<->/7)3&(*# # %0$) )'!  , * (/#/#*/#3&+ /#8*/#*)5(7)5(-!$#,!5(/#(%"$%'+!1%1%1%2%0%0$-"/#/#7)0$/#4'E4!9*'"* *7)XC-M;'bK3d`\jlowz{|~ŠŒ“•˜™›žŸ£¤¦ª¢¤¨£¤¨¤¥¨¨ª¬ª¬­¬®¯¨ª««­®§¨©«ª¬­¬®®­¯¯®°çâáæáßåàÞäàÝàÜÙÚ×ÓÌ¿³N;( 5(8*B2 9*=.'  %+!*'/$3&+ #%*  %"+!8*=.3&*7*0$+ #$5(1% !%-"2&A0;,H5"A1?/6(2%3'>/@0D4!@16(4'4&."*     #  #5'=-3''$  $! (-"-":,5'7)5(9+4'1%-"4'3&6(1%6)3&-"+!-")$&$!* 0%0$/#4'8*6(;,4'<-3&6):+;,D3!N;&3&),!#%>/jQ6M;'>1$edctvy„†ŠŒ“”—š™œž£¤§¢£§¤¥©¦§«¥§ª¤§©®±±¬®¯§©ª§©ªª«­«ª¬¯®°±°²°¯±çâàæáàåáßäàÞâÝÚÛ×ÔÓÌÇcSB +!8*H6#=.7*2%   #()* :,-#+ 4'6)1%0$* ("*6((*2&6)2&,")&/$+    $*1%6(."G5"L8&>/(#3&=.:,=.;,4'+ /#3&-")""  * &#2%>.=-7)-"-!' #"#,!3&5'4'0$4(7)5(/#,!,!."2%6)H6#<-5(4'(* * ,"-!.#-"0$9+4'5(;-C26(5(7);,:+3&1$."."'&4'>.E4#S@*T@+2&LD=tuv‚„‡ˆŠŒŠ•˜›“–šŸŸ£Ÿ ¤¢¤¨¥§«§¨¬¨©­ £¥­¯°¨«¬©«¬§©ªª¬­¬­®°°²²±³²±³æáàæáßåáßäßÞãÞÜÜ××ÔÐÏtfW /$+!F5"8+/#2%  "!(%&* %()+!0$/$3'6),!2&3&-"&."*-!6)-"#'"  #&."."@/J7$=-,!$."6(1%;,8*1%+ *+ &(''! !,!1%*0$<-8*?.3&*.#'  !(+ /#8*:,7)0$0$/#-!0#-";,6)J7$;-1%/#+ 5(5'-!0$."0$7)7*0$7):+3'7)>.7)8*8)A05(&&"7*oU9x\>M:&_H0qW:jZJzwt„‡Š‘•Œ’“–™–šœŸ¢Ÿ¡¤Ÿ££¤¨¤¦ª¨©¬§©«¦¨ªª¬­¤§¨¯±²ª«¬ª¬­««­¯°²®­¯±°²æáàæáÞåáàäàÞãÞÝÝØØÔÐÏ„~x!L:'=-A09+2%)#'"&+ + ()''(2&9,<-7*7*+ .") %"*)%)#$#  "'(2%4'A12&((,!1%5':,8)0$(,!-"*% ## ! ')").#2%7)8** (2%0$'$(,!2&8*=-B1<./$0$/#?/):+?/:+XC+Q=(G5#;-3'2&1%/#3&;+>.@0E4!F5"@0 9,D3!<-0$4'+ /$(.#')!3(5)"$2)O?-`M8^N>vohŒ‘“—‘”˜‘”˜¡¤¥˜œž ¤¦¤¦§¢¤§¢£§¢£§ª«®¨ª««­®¨ª«¥¦§©«¬­®¯©«¬¬ª¬´´¶¬«­¯®°æâàæáàæâàäàßãÞÝÝØ×ÔÐÏ‹€vtX<2&@06)8*2% &.#,!-"+!&$# "'* %%&) 3%-"&+ * 0$."-",!)(&#" (,!3&4&$$* ,!5(7*1$5('(-"'&%''#$!) "+ 1$8*<-5'/#.#3&4&1%-"(, .#3&6(7)6'* $0#7*6(?0H5#B2 \E-S?)@04(5(-"('"/#5(.".#* *1'.%)-"1&*":3+C>6961753RRP:97 @CDy|}^ablor~…]`c{|€—™œ—˜œ˜›Ÿ¢¥¨Ÿ¡¤¦©¥¦¨£¤¨¥¦ª§¨«ª«¯©«­ª¬­«¬­¦¦§¥§¨­®¯­®¯®­¯³²´¯®¯­¬®çâáæâáçâáåáàãÞÝÞÚÙ×ÓÒœ”Ž _I13&4'A2 F5":, $$0$7)4',!."/#')+ *#!/#."* '-!,!/#0%.#("!  !!"+!!  !"))* .#3&."-!2%3&2%0%1%6(4'0$/#$,"3&3&,!8+9*?/6(,!3'2&/#-"0#."/$-".#5'5'3'/$/#:+B1 >/9+2&4':+.$.%.%0'3*3+!4+"5-#4.&1+$ 61+(% <:7FHF7:8 58;LOS{~€ƒ‡ˆƒ‡ˆflnUZZ&((~ƒ…LORVX[‘“•™šˆŠŽgimz|€ž ¤ ¢¦Ÿ£¦ ¢¤§¨ª¢¤¥£¥§¦¨ª¥¦ª¥§ª§©«­­¯¬«­¯®¯¬«¬««­®®¯¯®¯¬¬­±°²¯¯¯çâáçâáæáàæáàãÞÝßÛÚÙÕÔª£ž Q>)4'7*I7$7)<-,!/#<,."6(5'A1=.3&@0/$#+ *&%%%/#+ *.#4'5(3&*(&#%$'!"" ! +!4'0$1%7)8*4'9+:+6(8*7)6)A1>.8*2&3&."L:%O;&2&.#/#6)7(/$8*/#+!+ ((%&),!+"( 0&8-!0(0)!5.$3-%5.)=82?=9B@?HHHMNOSWY[^`chjjquouyrxzNVYRUXƒ…qvx38:Z\`rv{Z^b‡ŠŠŽ‰ŽQUU dfgœ ¡[_a=?C‡ˆ‹œžŸ ¢‘“–motkmp¦¨ª£¥§¤¤¦§©«£¥¦žŸ¢²²´³³µ±²³©«¬­­¯«ª¬³²³««¬­­°°¯±¯®°­¬®²±³¯¯¯çâáçâáæáàæáàäàßàÛÚÙÖÔµ­¦ N<'<-5(6)8*A04(7)=-(."5(8*C2 >.L:&8*0%.","*)1%+ 0$3&2&-!1$8*5(**,!&'&"!&%)$#$%-"+!1%2&6)8)6(<->/;-7)6)4&4'2&<-:,@1:,:+9+K9%6(#!)-$.&'!,%-',& 5.&*$ !3/+HDAJJIMOPPTVX]__eggnolswlsypw}pw|ryry€qxu{sy}uzw~‚w}}ƒ‡#,/5/=.:,9+4'/$."2%5(6(0$0$4'/$2%4'6(."3&8)4'6(4'-"/#3&4'6)-",!/$)6)7)6(:,>.<-3&0$4'.#,"* ."6(3&-!6)7,:/"9/#5-$@6,B9.<4-<6/>93?<8BA?AAA7:<>ACSTVSWZNSV^dgAHLAHOdjnotxowzqy|ox{muypx{s{rz~qy~t|v}„v~„u}‚y„|‚‡~„‰|„ˆ{‚†y€„?IPW_akosŽ’–†ŠŽ…ŠBGIruw“•“•‹“VZ]rsu@BDjnq]_adgi¥¨ª¡¢¥lmrwx|ŸŸ  ¢£ž ¡‹ŽXXY¨§¨«ª¬¥¤§””–223:;<ŽŒŒ³±²¬«­¯®°®¯¯°°°­­­¯¯¯±±±°°±Ý×ÒÝÔÐÝÕÑÜÕÒÚÓÑ×ÑÏÑËÈÈ¿¾ x\?”rOP<(8)7*@06)* 0$%$'),!4&>/F5"7)8*@04'A0 @0=.4'2%5(/$7)7*7)F4"M9%R='M:&E3!G5"C2!B2 A1 =.=.8*/#,")-"&)-!-","%*$1)"3-%5/(:5/C<5IC:LE?MHDLIGNMLQSSVXY\]_bdggkomrwpuzptyrvzovy_fl[djYag`flnrvV[aX]b_ej*26(05LU\ainqx{ry}t|€w€„s|€wƒv~ƒv~‚v~ƒzˆ{„Šy‚‰z‡{€…€…‹€‡‹…Š~„‰€†‹{€…0;?iqv…‰Œ””˜ƒˆ‹X^aejn]cg„‡Š”—›–š‰“ ”—ƒ‡ˆ@CEprt]]_UUXššžqrvuvy¢¢£¤¥¦Ÿ —™›aac®°°¢£¥MMNBEFœ ¡rrsŽ«©«²±²®®®±±±®®®°¯°±±±³³³äÞÛäÝÙâÛØâÚØßÙÕÝÖÒØÒÎÍÀ´ bK3ŒlJZD.2&4'@04',!<.)#$*2%8*;-@0=.E4!@0E4!C2!D3!D3!E4"B2 >.8*>.I8$O<'G5"E4"A2 7):+7*<.3',"*!4*5,"2,%:4-B<5FA;LFATNIVRNXVS_\[dbaihgnnmrrrwxz|…~…|‚{~y}{~ƒz~ƒx{x|x|v|v|€ty}tz}nsxXahflplqvGOW$* !'V\amqugnrV`d`ims{x€„x€„w€„u~‚y‚†w€„x€„y†|ƒ‰|…‹}…‡Ž~…Œ…‹~…Š€ˆ€‡Œ‚ˆƒ‰LUZŠŽ“‹“‹”“˜‘–‹“Œ”†‹ŽW^b~†•š‰467§¬®„ˆ‰KORosvTWZvy~œŸ£¬­±€†jkpŸ Ÿ¡¢¤¨«£¦§kmo{{|’‘“aabEGG„‰ˆjoo~€€666™˜˜¯¯°´³µ±°²¬«¬³²³°°±³²³á×ÒáØÓàØÔáÙÖáÙÕàØÔÝÕÑÒŹ rW.-!(K9&7)3&-",!6(;-:,F5#F5"@0@0?/6)4(7)8*:,3&/#'1%D7)E:-@8/E=5JA:KD=HB<=:60/+-,-LHGa]\okk{yy„ƒƒŽŽ’‘“”“”“’”‘’’‘“‘’Ž‘‹Ž‡ˆ‰‡ŠŒ‡Šƒ‡Š„‡„ˆ…‡…ˆ‚‡~‚‡}…z„z„y…y…v}w}€iptOY`cinquz'/6 7@G9BI:AJglrnsvKV\ajqvƒ|„ˆ{ƒ‡x€…{ƒ‡}†Š{„ˆx…}†Šˆ|…‹}…Œ‡~…Œ…‹„‰‚ˆ„Š‚ˆ…‹‡‘Œ‘”‘”‹Ž’Гޒ–•˜‘–™Ž“–‡Ž‘[be‰‘JLOCIJ…‡txzx|~œ ¡inqx|€§©­¢£¦§©«’–XZ_ž ©«­ ¤¥¥¨©efg kml·¹·IIJYYY¨§©³³´«ª«³²³°¯°­¬®²²²ÙÏÊØÏÇÙÎÇÙÍÉÙÎÉÚÎËÚÐÍ×ÎÊB4'0%}^@eM4Q=)]F/=.8*-#3'P=(]G/_H0H6#A1 G6$A1:,=.6)4):0%A7,H?6QH@XPIbZRkc]rleysnzu…€|ЅЇ”•”‹ˆ†{{z^ce09A% &-MLOroq‚‹’‘“——˜˜—šœ›ž›š™˜›˜—œ–—›”–˜‘“”ŒŽŒŽŒŽ‹ˆŠŽ…ˆŒƒ†Šƒ†Š†‰‚†‰†Š€…Š|‚‡}‚‡{€…z„}‚‡w~‚dmq^hlajnZbfLPTTZ_FOXKT]OX_V_esy€x‡z‚ˆz‚ˆz‚‰zƒˆz‚‡}…Œ{‚‰~…Œ€‡Ž€‡Ž}„‰}„ˆ€ˆŒ€‡‹‡Œƒ‰Ž‡Œ†Œ…‹Š“Ž‘–Ž’–•™”—”—‘–™‘–™”—’•ŠŽ’UY_  !¢§¨VZ];>@™Ÿux{’–osysvz›œž£¤¥ª¬®šœŸX[^˜š›©«¬«¯®ŠŒ\__W[Z!"! &&(¦§§±²³­­¯«ª­­¬®ª©ª°°°´Ÿ“º¥—Á©ŸÆ®¦È±§Ì·®Î»µÌ½¶}gQ5(?/K8%E3"XC,\E.M;&<-O=)WD0TB0aO?cWJk`Uuj`xogwpˆzŒ†‘‹†“‡›•§ ›²¬¨»µ²Â»·ÊÂÀÎÇÅÍÇÃÌÆÂÉÄÀÆÂÀþ½¼¸·³®­¨¤£—•”{|{RY]%09(36==(''111GII  tvs))&012£§ªµº»®±³°°²´³µ¯®°µ´¶µµ·³±´ƒ‹‹x€iuudopenngpofonbkjcihciecgeeihillinnlqoqxuu}z}‚Ž‹ˆ® –ʼ´ÒËÈÔÍËÔÎÊÕÐÍ×ÒÏ×ÓÐ×ÒÎÕÌÈÓÌÇ×ÐËÞ×ÓߨÕÝØÕÝØÕÜ×ÕÜ×ÔÛÕÒØÑÎÖÎÎÐÊÇËÄÃþ½¶±°¥¢ Š‰ˆgjk3:@$(.6\Z^~z|š—™¡Ÿ Ÿ¡¤£¥¤£¥£¢¥£¢¦  ¤žŸ¢››Ÿ˜™œ”——“•–‘“•’–’–Œ“ˆŒ‡Š…‰Ž„ˆƒ‡Œ‚‡Œ‡Œ€…Š|…|…}‚†w~for]hlblpsy}\ch  %(/5MU\FPZGS\+9A>IRqw~}„Š{ƒ‰~†}…Œ~†‡Ž~†‡Ž~†}…‹}†Œ‰Žˆ‚‰Ž‚ˆ„‰ŽˆŽ“‰’†‹‰’‰’‘–Œ‘•Œ‘•“—•™”™œŽ“–”˜”™œ–š”—›‘”˜›Ÿ£impfikW[]¦ª« ¤z‚osv”•™£¥¨«¯°“•cfh‘’¨©©©ª©«­­$$% 8:;WXYHHF€±³´­­®´³µ®­¯²±³³³´¶¶·²°³ßÖÐÜÓÌÕÏÈÑÍÇÐËÆÎÉÂÊÇÂÆÃ¿ÄÁ¼ÃÀºÃ¿»ÃÀºÃ¾¹Â½¸ÅÀ¼ÈýÊÅÀÍÇÃÓÊÄ×ÎÈÛÓÏÜÖÒÜÕÓÜÖÑÜÖÒÛÔÑÜÖÒÝ×ÓØÑÌÙÑÍÞ×ÒãÝÙãÝÚáÜÙáÝÚáÝÚÞÚØÜØÖÛÖÓ×ÒÑÒÌÉÊÅÄÁ¼¼µ°°Ÿœ‚‚SY\"+2(BG|„x}„ahpot|‚ˆ~„Œ~†‰‡Ž€ˆ‡Ž‚Іޓ…Œ“…‹‘ˆŽ“†Œ‘‰”ˆ’Š““˜“˜Ž“˜•š‹”Š“‘•š’—›“—›•™œ—›Ÿ—›Ÿ™œ œŸ£™œ œŸ£¢¥© £§Ÿ£¦•™œsv{ƒ†‰ £¥¤¨ª˜œ {}ƒstw¢¥¥¤¦¦±´µjkj')(013ŠŠŒ­®°±³´®±²‘‘’vvvŒŠ½¼¾°¯°´³µáÚ×áÚ×âÛØâÜØâÜØáÛ×áÛ×áÛØâÜÙâÜÙãÞÛãÞÛáÜÚâÝÚâÜÙâÛØàÚÕáÚÖâÛ×âÜ×ãÜÙãÝÚãÜÙäÝÚäÝÚåßÜãÝØÞØÓÞ×ÔãÝØçáÞçâßçâßæáÞåàÝâÝÚÞÙ×ÜÖÕØÒÏÑÊÇɾ¿º·¯¬¬•””psv=FM&.",4STX}xw‰ˆš–•¢Ÿ ¥£¥¥¤¦¤£¥¤£¥¢¡£¡ ¢  ¢›œ™™›”–—’”–‘“—”˜‘•Œ‘•Š“‡Œ‘…‹†‹‚ˆ‚ˆ‚‰Ž€ˆŽ~…‹|„‰|…Š|ƒˆ{‚†zƒ‡x…ktxckprw|sw}(16INTOW] "'NT[qv{‚†Œrx€`gov}„…‹†‡Ž€ˆ€ˆŽ€ˆŽ„‹‘†“†”…Œ’†Œ“‡’‡“‹•Œ‘–”™”™”™”™Ž’—Ž’—’–›”˜“—œ“—›’–š–™—šž›ž¢˜›ŸœŸ£¡¤¨¡¤¨ £¦¢¦©•˜œw{~€„ž £¤§ª £¦‚„ˆnpt™œœ®°°ruuƒ‡†’˜•|ˆŒ}}‚†±²³¬¬­°±±žžž€xxz±°²¸·¹Þ×ÕÝ×ÔÞØÖÞØÕÝØÔÝ×ÔÞ×ÓÞ×ÓߨÕàÙÖáÜÚáÜÚàÛÙàÛØáÛØáÛØáÛ×áÛØãÜÙäÞÛäßÜåßÜåßÜæàÝçáÞèãàåßÜáÛ×âÛØæàÜçâßçâßæáÞåàÝãÞÛàÛØÝØ×ÚÕÔÕÎÌÐÉÆÇ¿¼¹´±¥££‰ŠŠ^dh,7>%,29?ecf…‚ƒ”‘’›œ¢Ÿ¢¦¥¦¦¥§¥¤¦¤£¥£¢¤£¢¤Ÿ ¡›ž˜™š“•–‘“”‘”•“–Œ‘”Œ•‰’ˆŒ‘…‰Ž„‰‚ˆŽ‚‰Ž€‡Ž}†Œ~†‹~…Š|…Šz…y…y‚‡y‚†t}gqubkopvz,6:NSWy~‚LV\8BIaeklsx`hmu{…Œpx`kry€‡‡Ž~†ˆŽƒ‹‘ƒ‹‘…‹‘‡’‰•‡’‰•„Ї“Š•Œ‘–Ž‘–Œ•“˜•š“—œ‘•š’–š–™ž—œŸ”™“—š˜›Ÿ™œ ˜›ŸœŸ£›ž¢Ÿ¢¦ £§¢¥©¡¤§ ¤¥œŸ¡}€„ruz𠦩ª§©¬’•˜imp‘’¯³²VZ\JLK¤§¥¸º¹±²²§§©‰‹Žstx«ª¬³³³´´´ª««‘’”opr£¡¤âÞÝâÞÜãÝÛáÜÙáÜÙáÜÙàÛØàÛØâÝÚãÝÚäÞÜåàÞãÞÛãÞÛäßÝåßÝåßÝåàÞçâáèãâéãáéäáéåáéäâéäâéäáäÞÛáÚ×äÝÚçáßçáÞçáÞæáÞåßÜãÞÚàÛØÜ×ÕÙÓÑÕÎÌÌÅļ»±¬«žšš|}ISV +2&.GHNurt‹‡ˆ™–—¢ ¡£ ¢¥£¤¥¤¦¦¥§¤£¥¢¡£Ÿž Ÿ ›ž•—˜‘”•“”“”’”‘”ŠŽ’ˆŒ†Š„‰Ž…‹‘ˆŽ‡€‡~†Œ}„ˆ|‚ˆ|ƒˆ{ƒ‡zƒ†zƒ‰{„‰vƒoy}^imJT[(3:247x|€px}]dklqv{…ltyaipx……Œiszblt{‚‰€‰Ž€‰ŽŠƒ‹…Œ‘ˆŽ“ˆ’‡Œ‘‡’ˆŽ“†’’—’—Ž“˜”™‘–’–›“—œ”—œ’•š‘•™—šŸ˜œ¡•™–™—šš œŸ£œŸ¢Ÿ¡¥Ÿ¢¦¡¤¨Ÿ¢¥ ¢¥¢¥© £§…‰kor˜šœ¡¢¥¤¦ª™œ mqt‚¨«¬uyzDHJvx{xyzŒ‹¯®®±±²®°±žŸ¢mmo——˜º¹º°¯°²´µ›žŸttuçãâçãâçãáæáÞåáÞåâÞæãßçâßèãàèäáèäàèäáèäàèãàéäáéäâéåäéåäêæåêåäéåãêåãëæäêåãêæãèâßâÝÚàÚ×åÞÚçâÝçáÞæáÞåàÝåàÝãÞÛßÚ×ÛÖÓØÒÐÒÌÉÊÂÁ½·¶­¨§•’’moq;EI&-(.5YX]{|š˜˜¢  ¥££¥¡£¥¤¥¥¤¦¤£¥£¢¤¡ ¡œœ˜™š”–—‘””‘•—’•Œ‘”Š’†‹‡“ˆŽ•…‹’ƒ‰‚Š‘‚‰ƒŠ‘‡Ž€†Œ~„‰|‚‡{†x…y‚‡x…vƒs}bnt*6A2CJpmo‰……—””ž›¡ŸŸ¦¤¤¦¦¦¥¥¥£££¤¤¥¢¡£œžš™›–™š’”•“””•“‹’Š’ˆŒ‘‡Œ‘†’ƒ‰Žƒ‰Ž€‰ŠŽ‡Œ€†€†‹~…‹}…‹|ƒˆ}ƒˆz€…y‚†{„ˆy€…x…O\a!GPX1>IHQZqw{u|fotgot{‚…v~€aknpx|ˆ‹u~‚_iou|ƒŠu}‚`jqt|†Œ‘‰’‹”ŠŽ“‹”‹”ŠŽ“‘–Ž’—“—’–’—›’–š•™œ•˜›”–™”—›™œ  ¤™œ ”—›™›œž ¢œ ¤¥¨ ¢£Ÿ ¡£¤£§©¦¨ª£¥¦¦§©¨©¬¦§ª¨ª­¤¤¨ª«­¬­°•˜œ]_bJJK©ªª¯¯®°¯°‡ˆ‰wy{§§©²³´°±²³µ¶|}~ssu¯¯¯­­­´´´½½¾••—çãâçâáçãâèäãèäãéåäéåäéåäéåäéåäèåãèåäéåãêåäêæâéæâéäáèãàçãßèãàéãàèãáéäâéäáäßÛáÛ×ãÜÙçâßæáÞæàÝæàÝåÞÛãÜÙàÙ×Ü×ÕÙÓÐÓÌÇËüÁ¼µ°«©š——vy{ENT*2(07RSW|wxŽŠŠš——Ÿž£¢¢¤¤¤¤¤¤¥¥¥¤¤¤£¢¤››“”•–—˜•—˜“”—“–Ž’•‹Ž’ŠŽ‘‰Ž’†‹…‰Ž„Š…‹ƒ‹‰Ž€‡Œ†‹~‡‹~…‹|„Š|„‰|„‰|…Šzƒ‡y‚†|…‰zƒ‡wƒWchJW``joajqt|t{bkokrutx{mtv[dis{~‡Šqy|LV[z€„„Šv~ƒdkqy~„ˆŒ‘‹”Œ•ŠŽ“‰Ž’‹”ŠŽ‘Œ•“˜’—™•š”™œ’—š”˜›•˜œ”˜›–™›ž¢™œ —›œœ ¡˜šœžŸ¡¥§¨¢¤¥¡£¤ž¡¢¢¦§¤¦¨¦¨«£¤¨£¥¨¥§¨¦¨ªª«­««®ª«­«­°—™›135•——±²²¯°±®°±—™›yy|–•˜°°²³²´³´µœžŸnoqŸŸ³³³¸¹¹¸¹¸èãâçâáèãâçäãèäãèäãèäãèäãèäãèäãèäãéåäèãâéäáéåâéäáèãàéãáéäáéãàèãàèãàéäáæáÞãÝØáÛÖåÞÛçáÞçáÞåàÝåàÝåÞÛâÜÙàÙÖÜÕÑ×ÑÎÐÉÅÇÀ»¼¸³«¨¤Žejn3?G)118@bbdƒ”œš™¢¢¡£¤£¥¥¤¥¥¥¦¦¦£££œœ‡‰Š„‡‡ŠŒ‘“•“•™“Œ’‹Ž’‰‘‰’ˆŒ‘‡‹„‰Ž‡Œ‚ˆ‡Œ†Š‡‹ˆŒˆ‹}†Š|„‰{ƒ‡{„ˆ{„ˆ{„ˆ{„ˆ{„ˆx~…jsz6DL4?Ggqxs|€ensclqw~qy|R[_HNRknqlrvdkpqvzVZ`7?CY`cz‚‡Œ‘w~ƒfms{€…Š“ŠŽ“†Œ‰’Š“‹‘“Œ•“˜”™œ”™œ”™œ•™œ–™–š™ —šžš¡–š›˜šžŸœŸ¢œŸ ¢¥¦Ÿ ¡£¤¢¤¥ £¤¢¤¥¦¨¨§¨©§¨©¦§¨¥§¨«¬­§¨ªª«¬§¨©\_a ¥§z}€‚¥¥¦°¯±µ´¶¥¥§vux‘‘’®®®±²²¶¶·°²³nqrЋЮ¯­¹º¸çâßçâßçãáçäâèäãèäãèäãèäãèäãèäãéåäêäãèäãéäáéåâèãàéäáéäáéäáéäáèäàéäáéãàåàÛâÜ×âÜ׿àÜçàÝçàÝåàÝäßÜäÞÛàÛØÞØÕÚÔÐÕÏÌÎÇÃÅ¿»µ±¬¡¡œ€‚‚S[_'3=+2@EKqpq‹‰‰–””Ÿ£¢¢¤¤£¤¤¤¦¦¦£££   ŠŒ{€{~‰‹Œ’“‘““Œ“‰Œ‡‹‡‹ˆŒ‘‡‹’ƒˆŽƒˆƒ‰‰Ž‡‹€†Œ~‡‹}…Š|„‰|…Š|…Šzƒ‡{ƒˆzƒ‡y‚†y‚†y‡u}„rzqy€x…x€„qx~ajpkrxtz~.59SUYy|nswELQ JNRHORcim€„ˆ‡Œ‘rx}gmr}…Š’‹“’•’–Œ‘•Œ‘”•˜”—œ“˜›—›Ÿ˜œ •˜œ–™™œ šœ  ¢šžŸ›Ÿ Ÿ¢£ž¢£ ¢ ¤¥žŸ  ¢£¦¨©£¥¦¤§¨¤¦§¨©ªªª¬©¨ª¦¥¦ªª¬§¦¨¨©ª›žQVW³¸¸­¯°‹‹uuvž±±²µ´µ±±±€ƒƒ…¡¡¢µ¶·²´µ·ººˆ‰‰|}}¢£¡æáÞçáÞçâÞèãáèãâçãâçãâèäãèäãèäãéåäêåãèåäéåãéäâéäáéäáéäáéäâéäáéäàèãàçáÜâÜ×áÛÖãÝØçáÝçáÞçáÞåàÝäÞÛãÝÚàÛÙÝÖÔÚÓÏÔÍÊÊÄ¿¿º¶¯­¨••“rtvCKR *4*3;UW[}{{Œ™–•¢ Ÿ¥£££££¥¥¥¥¤¥£££•–—~ƒuy{|€‡‰Š‹ŽŒŽŽ‘•“‰‘‡‹‡‹†Š‡Œ“ƒ‰ƒ‰Ž‚‰Žˆ†‹~†Œ|…‰}†‹}…Š|„Š|„‹{ƒˆy‚†y…z‚†z‚‡z‚ˆw…w…x€†x†y€…y„ov|dlqfmq!&)&*.jmqƒ…ELQ$&)NRVmtwgmqƒ‡‹ˆ‘u{€kpv‚†Œ””˜“˜›Ž“–’•’—š”˜œ•™–šž–›Ÿ˜›Ÿ–™—šž›ž¢›Ÿ¡œ ¡›Ÿ ž¢£ž¡£ £¥¡£¤Ÿ ž ¢¥§¨¦¨©¥§¨¥§¨¦¨©¦©ª©ª«¤¤¥§¨©©¨ª§¨©]`c”˜™¬¯¯±±±³´´›œ}~¦§§²³²´µµ‘“‚ƒ–•–¬®®µ¶¶º»» ¡¡{||çáÞæáÞçáÞçâßçâàçãáèäãéäãéåäéäãèäãêååéåäéåãêåãéäáèãàèãàèâßèâÞçáÝåàÛâÛÖß×ÒߨÓäÞØèàÝæàÝæàÞåàÝäÞÛáÜÛßÚØÜÖÕØÑÎÑËÈÇÁ¾¹´±§¤¢‹‹‹bfi3&.5-6=OTY…‰‹‚ˆŒmrvlqu„ˆ‹‡‹ty|mru…‰‹‘•˜“—›•š‘–™•™œ—šž˜›Ÿ™œ —šž–šž›ž¢™ ˜œ›žŸŸ¡¢œ ¡¡¢ ¡ ¡¢   z||wyz–˜™¥¦§¢¥¥¤§§¦¨©¦§¨§§¨©©«¨©ª¦¨©›ž«­®¯¯±°°°²²³³²´±±³ª¬­’”—ƒ„…’“”¶¶¶¸·¸´´¶‘ˆˆ‰”””»¹¹ºººæÝÚäÝÚåÝÚåÞÚåÞÛäÞÜäÞÛåÞÛåÞÛäÞÛäÞÛãÝÚãÝÚãÜÚãÜÚâÛØãÜÙäÝÚäÞÚäÝÙâÛ×ÞÖÒÚÐÌÞÔÐâÙÕçáÜçàÝçáÞèàÝåßÛâÝÚàÛÙÞ×ÖÙÔÓÔÏÍËÆÃ¾¹·¯ª¨”“’nrr@HO +3.5=\[_€}}‘œ˜˜¡ŸŸ¥££¦¥¥¦¦¦¤¤¤¤£¤••–{~ptu|€†ˆ‰‚„…|€ƒ„†‰ŒŠ‘†Š…Š…Š„ŠŽ‚ˆŒ‡Œ‡‡‹€†‹ˆŽ~…‹€ˆ}†‹~†‹}†Š{…‰|…Š{„‰{ƒˆy‡x€‡x€‡x€‡w†zˆy‡{ƒˆ~…Œ|„‹]gm!%  GJNwz|#( 2:@7=BZ`eouyƒˆ‹ƒ‡‹nsxlqvƒ‡‹Œ“y‚kqt‡‹“–›–™“—š”—›—šž™œ —šž–™š¡œž¢š¡™Ÿ›  Ÿ££Ÿ£¤ž¡¢¡¢£¡¢£fghTVZ|y{ŒŽœ™›¢Ÿ¡¤££¨¨¨§§§¥¥¥¥¤¥ Ÿ¡‡‰Šortptu|~ƒ…‡~‚„|€y}~vz|w{}z}€ƒ‡„ˆ„ˆ‡Œ‡Œ€†‹…‹|„‹dovDR[ $?GJhps:@Dlpt¥¥§™—𢢢¬¬¬­­®°°±®­®ª«ª­­­¯¯¯°°°±±±²²²´´µ²±³³²´µ´¶²±³³²´´´¶»º¼¼»½¯²³—™šÔÉÂÝÒÍÔÉĸ´Æ¼·×ÍÉàÙÖàÚ×àÛØâÛØáÚ×âÛØâÛØãÛØâÙÖâÚ×âÚ×ãÜÙãÜÙß×ÓÝÔÐà×ÓåÝÚçáÞæàÝåßÜäßÜäÝÚáÜÙÞÙ×Ü×Ö×ÑÐÐÉÆÄ¿¼·³±¥¢¢ƒ„†Z_g.9A%/8IMUtrtЇˆ˜•—¡ž ¥¤¤§¦¦§§§¦¦¦¤£¤£££““”w{}kpsrtxƒ„‡‚„‡€‚†‚„‡tx{ptwuyzzy~‚~‚…‚†Š…‰~ƒˆ~ƒ‰|ƒŠ}„‹q{‚K[b,9E".99BNot{~„‰}…‰{„‡zƒˆ|„Šz‚‰{ƒŠ{ƒŠ~†€‡ˆŽ}†Œ|ƒŠ|…‹{ƒˆ{‚ˆ{‚ˆ|ƒˆ€†‹€‡Œ„Œ‘†Œ‘‚ˆjry EIM^afnpr\``)+.ux{“—˜’—˜tz~swz„†‡ +.0†ŠŒš –™œšœ œŸ¢—šž˜›ŸšœŸœž¢ž¢¢¤¦©«¬¥§ª¥¨«¦«®¡¨¬¥¬°ž¤§cik’??B#%)Z\^žžŸ²±²¯¯°¯®°®®®­­®¯¯¯²²²­­®¯¯¯³³³°°±·¶¸²±³±°²¶µ¸¶´·¶¶·»º»·¸¹º»½ÔÈÀÔÊ÷±¿¶²Í¾ÜÑÎàØÕáÚ×áÚ×áÚ×àÙÖáÚ×âÛØãÛØãÛØãÜÙãÜÙåÞÛãÜÙßÖÓÞÖÒáÙÖæàÝçáÝæàÝæàÝåßÜãÝÚàÚ×ÝØÕÚÕÔÔÏÍÍÈÆÂ½½²®­˜——swzGPX'29/7?[\b}y{‘Œ›—˜¢  ¥££¦¤¥§§§¥¥¥£££¡ ¡ŒŒptwkptwx|ƒƒ…‚„…€‚ƒ~‚swxlpqsvxx|w{x|€…ˆ‚ˆŒ…Š~„‰~†Œ|„‹s}„Qah!3<$.>JUnrytx}rx}x~ƒz†x€†x€‡{ƒŠ{ƒŠ}†}‡Ž|†|„‹{„Š}†Œ~†~†|„‹{‚ˆ}ƒˆ‰…Œ„Œ‡Šw}€%)257…ˆ‰sww<@BCFGkos…‡ˆ“–—’–™w{.15lqttxzy}—›œ›žŸž ¡œž¡˜›Ÿœž  ¡ž ¡£¥¦§¨ª¥¦©¢¤§¨ª«£¦§›žŸ`dejno¡£¤367“˜˜´¸¸]]`ªª«¡ ¡¡¡¡¬¬®±±³°¯°¯¯°¯¯¯±±±²²²µµµ¹¸ºµ´¶±°²´³µ¶µ·¹¸¹¼¼½·¶¸º¸ºÀ°©Å¹²½±«Æ¸³ÖÉÅßÖÓáØ×àÙ×âÛØâÛØãÜÙãÜÙâÛØãÜÙãÜÙãÜÙãÜÙãÜÙâÜÙáÚ×âÚÖäÝÚæáÞæáÞåáÞåáÞäÞÛâÝÚßÚ×ÝØÕØÓÒÒÍËÈü¶·ª¥¦ŒŒcjo7CK(2:@ELmkn…‚ƒ•’žš›¤¢¢§¦¦§§§¦¥¦¥¤¦¤£¥œ›ƒ…ipshmpz|~ƒ„…|~uxyrtuqtuhmmqtvx|y~w||€„…‰€†‹|‚‡~„‹†Œx€†ny~[jrSbjbmrkqvGNV7?I`dkw|‚{ˆy‡{ƒŠ~†~‡Ž}†}…Œ~†€ˆ€ˆ~†~†}†Œ|„ˆ~†Šˆ‚ˆ„ŠŽu{~EKNJW^fcipv|z‚†}…Œ€ˆŽˆ~†{ƒ‰}…Œ|„‹‡‰‘‚Š‘‡~†‹€‡ŒˆŒ‚ŠŽ…‘[hk MTW‚ƒptu07:PVYrvy†ˆ‰—™š”•nsw}€„`ehT[]˜›œšž|‚z}“–– ¢££¥¦¥§¨¨ª«¦¨©¥§©¥§©ª¬®«¬°­®²­®²©«­¨ª«¨©«ª«­§©ª”˜¤§«¬­¯³µ·«­°°°²®°±°¯±¯¯¯°°¯°°°±±±´´µ³²³³²´µµ¶´³µµ´¶¸·¹¸·¹¶µ·¹¸ºÖËÅßÖÒáÙÖâÛ×âÜØáÛØáÚÖáÚÕáÚ×áÛ×âÜØãÛØäÝÚåÞÜåàÝçàÞçáßæâàæâßçáÞçáÞæáÞæáÞæáÞæàÝäßÜâÝÙàÛØÜ×ÕØÒÏÒËÈÈÂÁ»¶µ¨¥¤‰Š‰_eh6?H(2;@GMlkk…~—’‘ ›œ¤Ÿ ¨¤¥§¥¥¨¥¥¥££žžŸ‘’w|~jpsmrt}€‡‰Š‚„…mrsDORCKNMRUX\_fimw{€x|w{€tx}ty~|„}ƒˆ}ƒˆ{‚†z€…|ƒˆy‚†|ƒŠx€‡Yfo*=JMV_kqwflttz|†~…~†~‡Œ~†Œ}…Œ€ˆ~†~†Ž‡Ž‚‰‘ˆŽ€ˆ‚‰Œƒ‰ƒ‰Ž‚‡‹O\a'-\bfŽz~;DJ kmp„ˆqsw†‡‰™›œlptJLOŸ ¢bhkMTX‹›Ÿ›ž „ˆ‹z}~‘”•£¥¦©ª«ª«¬¥§¨¨ª«¨ª««¬¯«¬¯­¯²¬®°ª«¬ª¬­©ª¬¨§©­¬®¯°±®¯°°±²¬­¯ª«­««­±±²°¯±±°±¯¯¯¯®¯±±±´´´·¶·¶¶·µ´µ·¶¸¸·¹º¹»»º¼º¹º¶µ·áÛ×âÜØâÜØäÝÚãÝÚãÝÙäÝÙäÞÙäÝÚåÞÛåßÜåßÜæàÝçáÞçâßèãâèãâèãáçâßçâßçáÞçáÞæáÞåàÝåßÜãÞÛàÛØÞÙÖÛÖÓÖÐÎÏÉÆÅ¿¿´°±œz~NWZ-7>*3LR#'bgl…ˆŒjrw/:A!)/qtw“•—€‚…suyƒ„‡89= dfl‡ˆ‹koq‡ŠŒ}€ƒ…‡Šž ¡¢¦§‘’z~€‰ŒŽ¤¥§§§©¦¨©¨ª«ª¬®«­°¬®°«¬¯ª«­©ª«¨©ª¬­®««­¬¬­ª«¬­¯°°²³®°±¯°±ª©«¯®°¯¯°´´´±±±°°°±±±´´´·¶¸··¸¶¶¶¹¸ºº¹»¶µ·¸·¹½¼½·¶·äßÜåàÝæàÝæàÝæàÞæàÝæáÝçáÝçàÝçàÝçâßæáÞçâßçâßèãáèãâèãáçâàèãàçâßçáÞæáÞæáÞäßÜãÞÚâÝÚàÛÙÝØÕØÓÑÓÎÌÌÇÅÁ¼¼°¬­’““kqr?JN(288?Fccgƒ‚“Ž˜™¥ ¡§££§¤¥¨¥¦¤£¤£¤£œœŽˆŒŒ†‰Š‰ŒŠŠŒŽ’}ƒlsv]bhEMT08@TX^vz~w|€tx~uy~sx}qw}|€†z€…{‚†{†y‡yˆyˆ{ƒŠnx€Q^h\enuz€_em.8AEMTrw}€‡Ž}…ЇŽ~†€ˆ€ˆ‡Ž€ˆŽˆ‰ˆŽƒ‰Ž†Œ‘†Œ‘‚‰v‚KX\T`e‚†‰Œ’Œ“…ŠYfmZdksw|ŒŽ”—˜†ŠZ]a 39:~‚„\`cjmo““•wz|{~ƒ†›Ÿ¡¥¦”˜š}€„†ˆ‹§§¨¦¨©¨ª¬«¬®¬®±®¯²¬®°ª¬­ª¬­ª«¬®¯°°°²®°±­®¯¬«­®®°°²³³´µ°¯±¯®°±°±²²²±°±³³´´´µ¯¯¯³²³µµµµµµºº»ºº»µ´µ¹¸º»º¼¹¸¹æáÞçâßçáÞçáÞçâßèãàçâßçáÞèáÞèáÞçâßçáÞèâßçáÞæàÝæßÝæàÞæáÞçáÞèâßçáÞçáÞåàÝäßÜãÞÛáÜÚßÚÙÜ×ÕØÓÒÒÍÊÈûµµ¦¢£††‡\be4?D)3:GKQpnpІˆ—’”¢ž¥¢¢¦£¤ª§¨§¥§¥¤¦£¢£™™šŠ‡ŠŒŠŒŽ‹‘‹Ž‘Бޒ•€…ˆltxAIQ )2'0@DKorww{€vzsw|tx}puzv{€|†{†z‚‡y†yˆyˆzˆs|ƒblv]gqkryU^e%1:7BJbgm~‚‰€†Œ‡Ž‡Ž‚Š‘€ˆ€ˆ‰„Œ’ƒ‹‘„Š‘„Ї’†’„‹Šlwz{†Š‘Œ’•Ž“—Š“ƒ‰Ž†Œ‘|‡vy~‹—š›ADEv{|’–•SYZfklhlnX\_’”–€‚†{~˜šœ¤¦¨Ÿ¡„ˆŠ~‚ƒ£¤¥©ª¬©«¬«®¯­¯°­®¯«¬­¬­®­­®­­®¯¯±¯¯±²±³®­¯«ª¬¬®¯µµ·±°²¯®±²±³²²²°°°³³´³³³°°°³³³´´´³³³»¼»»»»ºº»º¹º¸·¹·¶·æáÞæáÞæáÞçáÞæáÞçâÞæàÞçáÞçáÞæàÝåàÝåßÜæßÜåÞÛäÝÚäÝÚäÞÚåàÝåàÝçâßçâßçáÞæáÞåàÝäßÝàÛÚßÚÙÝØÖÕÐÎÎÉÇÄ¿¾²­«›—–xyyKRU+7=/8>UVZzvwމ‹›–— ž¥££ª§¨§¥¦¦¥§¥¤¥ Ÿ¡‘“ƒ„‡ƒƒ‡ˆŠŒˆ‰‹‘”Ž“–‡Œlux8HQ "#47?^`esuyx{€sv{rv{rv{qw|z€…{‚‡z‡y†yˆ{ˆ{‚Šz‰rz‚VcmGV_FS\6DM4BJGPYuxƒ‡€‡ˆ‰‰‰Š‘‚‹’„Œ“…”†”‰–ˆ’‡Ž“…Œ„‹‡Œ‘‡Œ‹”’•Ž“–•™‘•šŽ’—~ƒˆw|…ˆ‰ w{|ƒ‡‰^fg†‹‹lstrw{Ÿ¢¤Ÿ£‚„‰z}€•—š§©ª¢£¦ˆ‹z}šœ­®¯¬®¯ª«­­­¯°¯±®®¯¬«­««­­­¯¯®°²±³®¯°±±²®¯±±°±««¬¯®°²±³´´µ³³´¯¯°³³´¶¶¶¶¶¶¸¸¸¶¶¶¸¸¸¸¸¸¼¼¼¹¸¹¹¹º¸·¹æáÞåáÞåàÝåÞÜäÝÚäÝÙäÛØãÝÙãÝÙãÜØãÝÚãÝÚäÞÛäÝÚãÝÛäÞÜåÞÜæßÜæàÝæâßçáÞæáÞåàÝäßÝãÞÝáÜÛÜ×ÖÙÔÓÔÏÎÌÆÆ¿¹¹®©¦‘ŽŒill=FJ*6<=DJedg„•’žšœ¤¡¢¦¥§ª¨©§¦§¥¤¦¢¡£œ›‰Š‹{~|~†‡ŠŠŒŽ“Ž‘•’•‹’xƒQ`g,H9@JW[aptyx~„|‚‡z‚‡x€‡z€‡|„‹{ƒŠz‚‰|ƒ‹z‰v~…eowAKT#)1#[ai‚†‚ˆŒ„Š…Œ’†Œ’ˆŽ”‰”‡”†Œ“‡”‡•Š•Œ‘—ŠŽ’‘–Œ’•Œ‘”‹“Œ“Ž‘•’•˜”—›”—š—›ž˜ ‡jptS]aŒ‘’–™š…ˆwz–˜œ¢£¥ž¡£‚…ƒ…‰ž ¡¦¨©¤§§…‡ˆ¦¦§¨©©§ª«Ž‘’€‚ ¢£°°²®®±¯¯³¯®±±°³±°²¬«­«ª¬ª©«¯®°³²µ±°³³²µµ´¶³²´´³µ··¸¶µ··¶¸³³³¶µ¶¸¸¸¸¸¸······»»»¼»¼äÞÛæáÞæßÜæàÝæàÝåßÝæáÞçâßçâßéäáéäáèãâéäâèãâçâáçâàæáßçâßèãàçâßæáßåàÞäßÝâÝÜàÛÚÜ×Ö×ÏÏÒÊÊÈÂÀ¹µ´¢ŸŸ€‚‚U\^0<@1:ASU[utwŠŒ™–˜¡ž §¤¦©§¨§¦¨¦¥§¦¥§¡ ¡ŒŽptueklnrs„ˆŒ””Ž”Œ”‰’ˆŒ‘†Š…‰Ž|€…ty|rvzquzKQY&0,3=cek]`g(1!(0X\afjoqw|z€…z‚†zˆ{ˆ{‚‰}„‹~†~†}…Œ}…Œv~…Vai'2%/MPZeho|……‰Ž†ŠˆŒ‘ˆŽ“ˆ’‰Ž“ˆŽ”‡“‰”‰•ŠŽ”‘–“˜Ž’—Œ–Œ•”“—’–™•™›–šœ—š˜œž™ž¡Œ“”jrt†Š‹›œžŸ‰y|“”—¤£¤¡¢£†ˆ‹~‚ ¢£ª««©¨¨Žyzy¡  «««­®¯”–˜{€™›œ­®¯¯¯±°¯±°¯²­¬®­¬®­¬®«ª¬²±³®­¯±°³µ´·¶µ¶¶µ·¶µ·²±³´³µ¹¸º¹¸º¸·¹»¹¼¶µ·µ´µ¼¼¼¼»¼¹¹¹æáÞåàÝåàÝåàÝåáÞæáÞçâßçâßçâßèãàèãàéäâèãáèãáçâàæááçâáèãàçâßæáÞæáÞäßÞäÝÝáÜÛÞÙØÚÔÒ×ÏÏÏÇÇý¼³¯®™—˜suwHOS+6;7>Da`f€}“’ž›ž£ ¡§¤¦ª§¨©§©¥¥¦£¢¤™™™{~~djjdijrvy…ˆŒ‹Ž’Ž‘–•‹”ŠŽ“ˆŒ‘†Œ‘ƒ‰Ž†Šx}qvygmr=FN**1;RU[OSZ$,!)2]afkotptyw|x„|‚ˆ{ˆ{‰}„‹|„Œ{ƒ‹z‚‰}…Œ|…Œis|,9(317?!'1_ah…І‹‰’ŠŽ“‰”ˆŽ“‰Ž“ŠŽ•‹‘—Ž”›’™’š”™“–›‘”™’—‘”˜“–š“–‘”—–š›–™œšž¡ £™ž‘•–w|}‚…†›žŸ¡¤¥’–z|€ŽŸ¡¡¥§¨Š}€ƒ…ƒ…d\Z–‹‰š––ttu—–—°°°¬¯¯›ž |’“•­­¯°°³°°±°¯±®­¯°¯°±°±®­¯°¯±²²³µ³¶´³µ¶µ¶¶¶¶´´´µµµ¶¶¶··¸¶µ¶¶¶··¶·¶µ¶½½½¼»¼º¹ºåàÝåßÜæàÝåàÜåáÝçâßèãàçâßçâßçâßçâßèãàçâßæáÞæáÞçâáçâàçâàæáÞæáÞæàÝäÞÛâÝÙáÜÚÞÙØÙÓÐÔÍÍÉÁÁ½¶¶ª¥¦Š‰‰cgj=CJ-34>G#-?FO_dj„ˆŒŠŽ“ˆ’ˆ’ˆŽ“Š–Œ‘˜‰–“˜‘—”™“˜“˜‘•š‘•š’–“—‘”—“•™’•˜–™—šž™œ ˜››žŸ’–—y~€„†œž¨ª«—šœy|‰ŠŒ   ¦¦¦™›ž;>@ yml¤¢¡~€‘‘©©ª¯²³¦©­ƒ†Š‰ŠŒ¤¤§¯®±°¯±±±³³²´³²´®­¯¬«­²±³³²µ¶µ·¶µ·¶µ·¶¶····µµµ´´´»»»¹¸¸¸¸¸»º»µµ¶···¹¸¹åàÝåàÝæáÞæàÝæàÝæáÞçâßçâßçâßçâßèãßçâàçâßæááçâáçâáçâàçâßæáÞæàÞæàÞãßÜâÝÚßÚÙÛÖÕÙÓÒÑËÊÇ¿¿¸³³¡ž||~QX\19B27@VU[yuzŠœ—™£Ÿ¡¨¤¥©¥§©¦§©§©¥¤¤™˜š~‚iopfkltxy„‡‰‰Ž‘•’—Œ”‹”ˆŒ‘†‹‡Œ’…‹…Š€†‹pvzCMU + (2ILVINY%0'2LQY_elqu{puzjputy~z€…z€‡{‚‰|ƒ‹}…Œ|ƒ‹|„‹~†}…Œqz‚ 4A.@MDQ[0:D"+5-4SYaHOY$1'/=`cllrykpwty~ntymrxv|‚{ˆ|‚‰|ƒŠ|„‹}„~…Ž}„Œ~†Žx€‡RcnSbmalt=IR",09Ay|ƒ‰Ž’‰”‹‘—ЖЕДЕ‹‘—Ž“˜’–œ”š’–›’—›•˜–˜”—›’–š“–š”—›™œ ˜›Ÿ›¡›Ÿ¡œžŸŸ  ¡šžŸˆ„…”•–¥¦§¢¤¥†ˆŠ‰‰Šž›šŸ ¡'.1PLM´²³°¯°’”–ƒ‡ž ²±´³³µ–—š€ƒ••—«ª¬¸·¹´³µ¯®°´³¶³²´³²´¹¸º¶µ·¸·¹¸·¹··¸¹¹º¸¸¸¹¹¹¶¶¶···ººº»»»º¹ººººçâßèãáæáßæáÞçâßçâßæáßçâßæáßæáÞæáÞèâßèãáæáßæáÞçâßçâßæáßåàÝåàÝäßÜâÜÙàÛÙÝØ××ÒÑÑÌËÊÅÄ»¶µ§¤¡……†^dg6@H0:CKOWrotŒ‡‰™”–¢Ÿ§£¥©¦¨©¦¨¨¦¨§¦¨ŸžŸ‡‰Štxyptuy|}†ˆ‰‰‹ŒŒŽŽ•Ž‘–Œ•Š’†Š‡‹„‰Ž‚ˆƒˆŒ…Šw~ƒP\d%5A9DO]dlIQ\"0>+6Eafouz€lrwpuzsy~msxouzx~„{‡|ƒ‰}„Œ{ƒ‹}„Œ}„‹€‡‡Žy‚ˆw…v…Q]e$-EOY‚…Œˆ’Š•‹‘–‹‘—‰Ž”†Œ‘‡Œ‘‡‹‹”Ž“™‘–›’–›‘–š•™ž—›Ÿ—šž–š•˜œ•˜œ˜›ž•˜œšœ ™œšœžž¡ž¡¢¡¤¥¡¥§Œ‘{€’“¦¨ª¦¨ªŠŒŽƒ˜™™{„‡#&ž›ž±®¯³±²˜™š††Š——𬬮±±³¢£¥…†‰Š‹Œ¬«­´²´¯¯±´´·µ´¶¹¸º¹¸º¶µ··¶¸¸·¸¸·¹¸¸¹»»½»»»»»»ººº···»ºº»»»»»»çâßçâßæáÞçâßçâßæáÞæáÞçâßèãàçâàæáÞçãàèãâçâàçâßæáÞæáÞæáßåàÞäßÜãÞÛáÜÚßÚÙÜ×ÖÖÒÐÐËÊÅÀÀ´°¯žšwzyNVZ0:D6>HYZa}y{‹œ—𤠣¨¥§ª§©©§©©§©¦¥§ššœƒ…vy|y|}ƒ„†ˆ‰†ˆ‰ŠŒŽ‰‹…ˆŒˆŒ‰’‡‹†‹ƒ‡Œ‚ˆŒƒ‰Ž‚ˆŒz†`ksFS]NXbgmvW`k=JWJT``goou{qv{mrwrw|ouzlqvqw|z€…}ƒˆ|ƒ‰{ƒŠ}„‹~…Œ‡Ž€†€ˆŽ€‰‚‹pz€GW^[fn„‰Ž‡’‰”ЕЕЖ‰”†‹†ŠŠŽ’‹”‘•š’–›”˜›™ž¡—œŸ–š˜œ ˜›Ÿ–™—šž—›Ÿ› ™›œš›œœŸŸ  ¢££¦§ ¤¥Ž“”€……Ž‘’¤¦§©«¬“”€“•—€‡Š@EE168†‡‰’‘“¬ªªµ³´¦¥¨ˆ‰ŽŒ¤£¥³²³®¯±Ž‹ŠŒ™—™³±³··¹´³¶·¶¸¹¸º¸·¹¸·¹¹¸º¹¸º¸¸¹»º¼¼»¼½½¾¼¼¾¶¶¶¹¸¸¹¹¹ºººæáÞæáÞçâßçâßçâàçâàçâàçâßçâÞèãáçâßçâàèãàçâßçâßæáßæáÞåàÞäßÝäßÜâÝÚàÜÚÞÚÙÚ×ÖÕÐÏÌÇÆÁ¼½¯¬¬imn@IO.8A?DLgei†‚•‘ž™¤¡£¨¦¨ª¦¨¨§ª§¥§¤£¥’“•€‚…z}€‚……‡ˆƒ‡ˆ„†ˆƒ„‡wz~mpuy{€†Š‡Œ‘…‹ƒ‡Œƒˆƒ‰‡Œ|ƒˆq{cnvclums|hpy\fp_go`gndjprw|quzdjofkojpulrwu{€|‚†|ƒ‰|ƒŠ|„‹~†€ˆ†ŽŠŠŽ„‹‚ˆŽy‡|ƒˆ†Œ’ˆŽ“‡’‰”‡’Š‘–‹’—‰Ž“ˆŒ‘‰’‹”‘•™”˜•šž™¡—›Ÿ–šž™¢š¢™œ¡—›Ÿ˜›ŸšœŸšŸ›œœžŸ ¡¢¡¢¤££¥£¥¦¤§¨™œ…ˆ‰ˆŠŒŸ¡¢«­­˜š›‚……ŒŽŽtz|x‚¢¤¤Š‹Œ‹£¢£µ´¶©ª­“…‡Šœ±°²´¶·ž¡Š‰‘‘”°¯²¹¸º¶µ¸·¶¹·¶¸¹·¹¸·¹¹¸ºº¹»º¹»¼¼¼ºº»»º»¸¸·¼¼¼½¼¼¸¸¸çâßæáÞæáÞçãàçãàçâàçâßæáßçâàèãâèãàèãáæáßæáÞæáàçâàçâàåàÝäßÜäßÝâÝÛàÛÚܨרÔÓÑÍÌÇÂÁ»¶·¤¢¢‚Z`a6BF2:APRXuruˆ‰™•–¢Ÿ¡¦¤¦¨¦¨©§©§¦©¥¤¦ Ÿ¡ŽŽ„†Š‚„‡…†ˆ‡‰‹„†ƒ†‰|}ejpMU^_dk~†…ІŒ‘…‰‚ˆŒ‡Œ…Š~†Š|„‰t}„nwmu~oviqzT\eJPWTZainslpuIPSGMQdknlrwmsxx}‚~…‹}„‹}…Œ‡€ˆ€‰Ž‚‹‚Š„‘ƒ‹„ЄЇ“†Œ’†Œ‘‰”ˆŽ“Š–Š•‹‘–‘—‹”‘–’—š•š•šž—›Ÿ˜› ˜œ¡›Ÿ¤ ¥œŸ¤š¢™œ ˜›žœž¡Ÿ œž  ¢¡ ¢¢¢¤£¤¦¤¦§§ª«ž¡¢‰‹Žƒ…†ŸŸ §©©œžž€‚„>DGˆŒŽ¥¦¦ˆ‰‰{|~ˆ‰Šœž°¯±«¬®˜›œƒ…†‘‘“²³´µ¶·ªª­‘‘•‰ˆŒ¤¢¤¼¹¼¸·¹º·¹¹¶¸¸¶¸»º¼¼»½¼»½¹¸¹¹¸¹¼»½¹¸ºÀÀÀ½¼½»»»æáÞæáÞæáÞæáÞçâàçâàçâÞçâßèãâçâáçâàçâáæáàæáàçâáçâáæáàåàßåàßäßÞâÝÜßÚÚÛÕÖ×ÒÑÏÉÈÅÀ¿³¯¯˜——qttJRS1<@:BFbae€{}‹Œœ˜™¤¡¢¦¤¦¨§¨§¦¨¨§©§¦¨Ÿž ‘‡Š…ˆ‰…‡ˆ‡‹Œƒ†„xz}Zah9GRNV`wz‚ˆ†Œ‘ƒ‰€‡Œ€†‹…Š}„‰}…Š{ƒ‰t|ƒmu}nu}lsyFOX"+3=DK`ch_cg4;@%*QW\puzmrwouyz€†}ƒ‰}…Œ€ˆŽ‡€‰Œ‰Ž„ŠƒŠ„‹…‹‘…‹’‰”ˆŽ“‡’‡’‰”Š–‹‘˜“™•š“˜“˜’–™”˜œ—šž—›ž—œŸ˜œ ›ž£ž¡¦ ¥š¢˜› ˜›Ÿž¡£ ¢£ŸŸ Ÿž¡¡ ¢¢¤¥¥§¨¤¦§¥¦©§©­¤¦ª‘“–…ˆ‰•—˜««¬‚ƒ…_dfz€‚ŒmprfilŸ †ˆŠ‘“««¬²³³¤¦§Ž‘…‡Šªª«¶¶·¯¯±žž¡‰‰‹“‘•º¸¹¿¼¾¹¶¸¸¶¸º¹»º¹»¼»½º¸º¼»½¾½¿½¼¾ÂÂý½½¼»½æáàæáÞçâÞæáÞæáÞçâáèâáçâàçâàçâàçâàçâàçâáçâáçâáæáàåßßåàßåàÞâÝÜàÛÚÞØØÛÕÕÓÌÌÌÄÅ¿¹¸¬©©ŽdhhcfjSW[$+ B3>BUYZzxxŠ‹›—˜¢  ¥£¤ª¨©«¨©¨§¨¦¦§££¤››œ’“•”‡ŠŽ„ˆŠwz|gln[`e]afbfkjoslquz~‚~ƒˆ‚ˆ‚ˆ€†…Œ{ƒ‹{ƒŠ}…‹|„Š|„Šw†ktzT]e4@H")2:^bf@HM6=Djnuuzpv{msyx~ƒ}„ІŒ‡€‰„Œ’…‹‘„ІŒ‘‡”‡“…‹‘†Œ‘†Œ‘ˆ’‹”ŠŽ““™Ž”šŒ‘˜“˜“—œ”˜œ“˜›˜œ ™œ —›Ÿšž¢šž£™ž¢œŸ£œŸ£ ¥¢¥©Ÿ £osudeh„ƒ†¢¡¤¤£¥¤£¥¤¦§©«­ª«°¦¨ª¦¨©¥§© ¢¦hkpY]b¥§§«®­¤¦¨‰‹„…ˆ£¢£®­®§¨ª“–™€‚†¤¤¤µ¶´´´´¤¥¦ˆ‰‹‘¶µµ·¶·³µ¶ž ¢†ˆ‹ž ½»½¼º¼º¸»»º¼¼»½º¹»½¼¾¿¾À½½¾¹¸ºº¹»æáßæáÞæáßåàÝåàÝåàÝæáÞæàßæáàæáàæáàçâáæáàæáàæáßæáàåàßåàßäßÝâÝÛßÚÚÜÖÖØÐÏÏÈÇþ½³®®—–—ortHPT0:?;DFbdd„€”šš¤¡¢¨¥¦¨¦¨©§§¦¦§¦¦¦¤¤¤™™š“‡ŠŽ‚†ˆrwx\acJPTRV\dhmlptvy}zƒ‚‡Œƒ‰Ž‚‰}†‹}„‹|„‹|„‹|„‹{ƒŠ|„‹|„‹px€CQZ(0(/6@HFOV(2:")MT]jqxqw|tzpw|ntzz„‡Œ~‡‹€ˆ†Œ“ƒ‰Ž…‹‡’‡’ˆŽ•ˆ“‡Œ‘‡‘Š“Œ‘–Œ‘–‰’ˆ’ˆ’Ž’—”™”™•˜›–™—› š¢œ ¤šž£˜œ šž¡ ¤ £¨¥¨¬‘”˜dim‰Œxz{}} Ÿ¡¢£¥¡¢¥£¥¦§§ª¤¦¨¤¦¨¥¦© ¢¦mqt|‚€ƒ„¡£¢°°±««­”•—‡ˆ‰œœ¯¯¯®°±Ÿ¢¥‚…”••µ¶´µµµ®¯°“”•€€‚«ªª¼¼½¶·¸«¬®ŒŽ–•–µ²²»º¼¾»½¿¼¾¾½¿»º¼º¹»¹·¹¸·¹¹¸¹æáßæáßæáÝåàÝåàÝåàÞæáàæáàçâáçâàçâàçâàæáàæááæáàåàÞäßÞäÞÞãÝÛáÛÙÞÙØÙÓÒÕÍËËÅü··©¦¦ˆ‰Šbfj`hpu{‚nv|qx}w}‚nuzqw||‡~…Š‚ˆ‚ˆ‡‹ƒ‰Ž†Œ‘‰Ž“‰Ž“‹•‹”ŠŽ“ˆ’Š”‹‘•Š”…Š„‰‰Ž‘”˜’—š•˜—› —› š¢ ¥¡¥›Ÿ¢ž¡¥Ÿ¢¦ £§¥¦ªx}‚OU\‰Š™™›hikedg››£¤¦¥¤¦§§©¦¨©¥§¨¥§©Ž’vz|¥¦§—™š‚ƒ™š›¯®¯­®¯Ÿ „†‡’’“¬«­µ¶·¨«¬ŠŒ‰ŠŠ¯¯°´´´³³´¢¤¥†‡ˆš™›ºº»»º»º¸ºš™›†„„¯­®¾»½¿»½½¼¾¼»½»º¼·¶·¸·¸¹·¸åßÝåßÜçààæßßåàÞåàßæáàæáàçáßæàßåßÞæáàèãáçâàæáßåàÞäßÜãÞÛâÜÚßÚØÛÖÕ×ÒÑÐÉÇÆÁ¾¸´µ¡  z||RX[7@G=DK[\a{yz‹‹œ˜™¢Ÿ ¦£¥¨¦¨©¦¨©¦¨¥¤¥££¤¡ ¡žŸ—™šŒ‘…‰Œ|€lpqU\^HOS\_cbeidgkqtx}…†‹„Š‚ˆ‡Œ}…Œ}…Œ~†|„‹|ƒŠ{‚‰|‚‰rz:IT&-;DahlMW]  AJSlryv|ƒu|‚nt{u{w}‚krxpv|~…‰ƒŠŽ†Œ„Ї“‡Œ“‰’‰Ž“‹”Œ‘•‹”Œ‘–Š•Œ‘”Œ‘•ŠŽ’‹””˜‘–™–šž–™ž—šŸ™œ¡™œ¡œŸ£›ž£›Ÿ¤ ¥ ¤Ÿ¢¦–˜œgmr‚†‰x{~suxkmpknpz|}™™›§§¨¥¥¦§§©¨¨ª§§©ptwŒ‘ªª«ª­®¤¨©‰‹ŒŽ¥¥¥°°±ª«¬‡ˆ‰‹‹Œ¨©«¯°°±³³š››}}}¤¢¢³²³·¶¸®¯±‹ŒŽŒŽ³±²½¹»½»½®¬¬€€œ›»º»¾¼½º¸º¼º¼¾¼½»¸º¹¸¸æáÞæàÞæààåàÞåàÝåàÝåßÞæÞÝãÜÙáÙÖâÛØåÞÛæáÞæàÞæàÝäßÝäßÝãÜÜâÚÚߨÖÚÓÐÔÎËËÆÃ½¼¯¬­‘‘‘looFNS1;BDKRihmƒ‚”’’ žž¤¡¢¦¤¦ª¨ªª¨ª¨§©¦¥§¢¡£ Ÿ¡žŸ“•–‰Œ‚…‡|€kpqRY]EKQUX\Y]aadhlos€„ˆ‚ˆ‡Œ€†‹}ƒˆ|…Š{„‰|„Š|„‹|„‹}…Œ{„ŠrzQ]h$7A9GR_gmckp(7A"-R\dov{pw}v|‚qy~luzw}‚tz€mtzx|„‰ƒˆ‚ˆ†Œ’ˆŒ’ˆŒ‘ˆŒ‘‹”Š“Œ‘–Œ’–’–’–Ž’–‰‘”—“—›”˜œ—›Ÿ˜› ›Ÿ¤™¢›Ÿ¤œŸ¤›ž£Ÿ¥ ¥Ÿ¢¦¡¤¨…ˆKSZŠ‹”—™dglILQš›™‹ŽtvwŽ£¢¤¨¦¨§¦¨“”—vz}¡£¥«¬®¬¬­¯¯°©ª¬‰Œƒ„¥¦¦´³³²²³‘“”ƒžž ³³³³´´¨¨¨’ޝ®®·¶¸·¸¹™š›ƒƒ„¢¡¡º¸¸¿½½¸·¸Ž’……ˆ´²´º·¸½º¼¾»½¼»¼½¼¼åßÜåÞÛåÞÛãÝÙãÜÙãÜÙãÜÚâÜÛàÙ×ÞÖÓß×ÔâÛØåßÝæàßåßÞäßÞãÞÝâÜÙàÚ×Ý×ÕÙÓÑÒÍËÊÅĽ¸·©¥¥ƒ…„\bb;DK/:ALQXvtwŒŠ‰—””¢  ¥£¤¨¥§«¨ª¨§©¦¦¨¤£¥¢¡£ Ÿ¢›œ’“„ˆŠƒ…|€€lqrLTY16=GIO[^b`cggjnz~†‹‡Œ€†Š}„‰|…‰}…Š|„Š}…‹}…‹{ƒŠ{„Šw†gqxT_hWcjckremqMZdAHX\`Z^bfimvy}„‰‡Œ…Š€‡Œ†~†|„‹{ƒŠ|„‹z‚‰{‚‰yˆw~…ryqy€nv{emqgovdnuhnutzt{nu|t{w~ƒow|px}{€…u{~pty{€„†Šˆ‘‡‹ˆŒ‘ˆ’Š–’—“—‹’—Ž”—Ž“–”™•™“—”—’•™“–š—šž™œ œŸ£›ž¢›ž¢ £ž¡¥ž¡¥£¥©‰ŒZae†ˆŒ’”˜dhlEKO“”•‰Š‹]`bU\`ƒ‡‰{yx€{{ žŸ«©¬¬ª¬¬«­­®°®­¯°¯±®­¯®®¯®®¯™œ…‡ˆ””•ª©«°²³¬­®„ƒ…Žª¨¨±¯¯²°°›››‚‚™™š¶µµººº·¶·”””ŒŒ©¥¦¹¶¶Á¾¾¸··’±¯¯¾¼¾ÄÃÅàØÕàÙÖàØÔÞÕÐÜÓÎÛÑÌÛÑÌÛÑÍ×ÎÉ×ÎËÜÔÑâÜÚæâßåàßåàßäßÝâÜÙàÛØÞØÖÚÕÓÕÐÏÍÈÇÁ»¼®©©ŽgmlFOS6@FJNUmkn‡ƒ„•‘’ž›œ¤¡£¦¥¦¦¦§¦¥§¥¤¦¤£¥¢¢¤ž ¢œ¡•–™‹Ž‘„‡‹€ƒ‡{~€joq?GM"*2/4<>AJUY^finsv{{~‚ƒ‡Œ€‡Œ…Œ~…Œ|„‹|„‹}…Œ{ƒŠz‚‰{ƒŠ{„‹{‚‰z‚‰|„‹v~„nv|nv{s{‚ow}nu|v}ƒqzmu{u|w€„ltyvz~|€ƒw{~psx}†ˆ‘‹“Š“‡‘‰’‹”Œ‘”Œ’•Œ‘”“—’—›“˜›Ž“–‘•˜“—š‘•˜–™š¡›Ÿ¢›ž¢›ž¢ ¤Ÿ¢¦ £§ž ¤ty}qx{w{Ž“nrvX\`€€‚š™›hknKQTŽecb% e]]žšœ©¨ª¨§©«ª¬¯®°°¯°®®¯®®®­¬®±°²§§©ŠŠŒŽ§¥§µ´µ³³³““”„„… ŸŸ±¯¯µ´´¬­¬‘‘‘‘¨©©¸¶·º¸¸¡ž‰‡‡ŸœŸ²¯°¹··ÂÁÁ©©«ŠŠŒŸŸ¸¶¸ÝÔÐÜÒÎØÎÉÕÊÃÓÇÀÓÈÁØÍÈÙÏËÙÏËÙÑÎßÖÑãÜÙåàÝåàßäßÞäßÞâÝÜßÚÙÜ×Õ×ÒÐÑÌËÉÄûµ¶¥¢¢‚ƒ„Yac7BG9BHWY]xuw‰Šš•–¡§£¥¦¥¦¦¥¦§¦¨¦¥¦¤£¥¡ ¢ž¡œ¡’”˜‰Œ†‰ƒ†Š~‚„jorHQU,3<',6 *>CK^aeptxwz~~ƒ‡†‹…Š}„‰}…Œ|„Œ}…|„‹{ƒŠz‚‰|„‹~‡|„‹{ƒŠ|…Œs{‚qy€qx~t{nv}ov}w~…r{‚ox~v„gosSVZpos~…rv{qvyƒ‡‹Œ’”‹‘”Š’‰Ž‘ˆ‰Ž‘’•Œ’•”—’—š”™œ’—š”˜”—•˜›—šžœŸ£›Ÿ¢œŸ¤ ¥ž¡¥ ¢¦Ÿ¡£’”pux†ˆ‹“•˜oruOTX„„„YX[[\_€‚ƒ366qmp”’”¨§§¬¬­««¬®­¯¯®°²²²¯®°¯®°µ´¶²±³˜—™‘Ÿž´±±¶¶·Ÿ ¡Œœ››ª©©º¹¹ºººžžŒŽ¢¡¡¶³²¼¹·®®­’ދޥ¢£º¸¸¿¾¿¶¶·–—˜‹‹ÔÉÂÑÅ¿ÐĽÏžÐÅ¿ÑÇÁÕËÇ×ÍÉØÎÊÛÓÏáØÕåÞÛåàÝäßÝäßÞäßÞáÜÛßÚØÛÖÔÖÐÍÏÊÇÅÀ¿µ°°™˜˜twzNW[1=BAIPcbf‚}’Žš›£¡¢¨¦¨§¥§¦¥§§¦¨¥¤¦££¤ŸŸ¡š›ž—˜œ“—ˆ‹ˆ‹…ˆŒ‚†floPW\AFN@EM4:C>EO^bhquyvz~y}‚ƒˆ~„‰~„‹}…{ƒŒ|„Œ}„|„|…Œ|„‹~†Ž~†}…‹~†{ƒŠt|ƒnv}szszltzsz€y€†rzluyMW] 0.1rpt~‚†v{~v{~…ŠŒ‘”‹“Š’ˆŽ‘‹“Ž“–’•Œ‘”•˜“˜›”™œ‘•™‘•—”˜š—›Ÿ› £œž£œŸ¤œŸ¤œ £Ÿ¡¤•—™rwzx|~y}~‡‰ŠnsuTY\€ƒ„bbd'&'„ƒƒžPWXEIM‰‹zwx†…†¦¤¥®­­­¬­«ª¬°¯°¯¯¯°¯±±°²±°²³³µ¤¤¦‹Š™˜š©©ª³²´¯­°˜–˜¡¡¡¸¶¶¹··ª©ª••–”””ª¨§¼»ºº¹¹¡žŸ‘‘˜—˜³²³ÁÁÁÀÀÁ¨©ªË¿·ËÁºÌÂ»ÐÆÀÒÈÃÕÌÇÙÐÌÙÐÌÛÒÎߨÔâÛØæàÝåàÞäßÝãÞÜãÞÝàÚÙÞØ×ÙÔÒÔÎËÌÆÄ¿º¸«§¦‹ŒgkoAKP4?FJQXnkn‰„…—”• žŸ¥£¤§¥¨§¥¨§¦¨¦¥§¤£¥¢¡£žŸššž‘’–‹Ž’†‰‰Œˆ‹|ƒcglOU[PU\_ch^ejZbijourv{w|sx{y}}ˆ}ƒŠ~…Œ|„‹{ƒŠ|„Œ|„Œ}…Œ}…Œ|„Œ}…‹{ƒŠ~†~†yˆs{‚ow~u|ƒu}ƒox}v}‚z…ow{PYjptx~jqvty~€†‹„‰Žv|w|€…ŠŽ“–”—‘•˜•™“—š’–™—›ž˜œŸ™œŸ™ž™žšž¡›ž¢›ž¡œŸ {~€BDH$)7?D~€‚œžŸ ¤©ª®¤¦ª–™›„‡ˆƒ…†osugln€…†bghvtt¦§§€†ˆ8GMmt{£¤¦®­¯°¯±²²³°±±¯¯°²²²³³³´³µµ´¶´´µµ¶µ³³³³´´«¬­‘‘“’‘±®¯»º»¶µ·¥¤¥ŒŠ‹œ˜™µ°±¹µ¶µ±²¥£¤Š‡ˆ™”–À¾¾ÄÂÂÝÖÓÜÕÒÝÖÓÞ×ÔßÙÖàÙÖáÚ×âÛØâÜÙäÞÛåàÝåßÜãÞÛâÜÚàÛÚÞØ×ÚÕÔÕÏÎÎÇÆÃ½¾±¬ª“ŒnqrKQX9AKKOXmlp…ƒƒ•““Ÿšœ¤¡£¦£¥¦¤¦§¦¨¦¥§¤£¥¡ ¢¡ ¢œž•–˜Ž’Ž“‹ŒŽ“Œ“‚‡ŠhptNY`OX_fmqqvyw|sw|vztx|rv{quzptyquzquzv{€|…|‚ˆ|‚ˆ{‡~„‹{ƒˆ|„‹{‚‰~…~…~…އ†~†Ž~†}†t|‚ox}|ƒŠ{ƒŠt|puzlsybjrmsydlsblsnu{w|‚‡Šƒ‰u{~w|†‹ŽŽ’•’–™’•™•˜œ•™œ™žšžŸ˜›™ž™žœŸ¢ž¡¥œŸ£œŸ¢x@MRWbg‚ˆŠŸ —–—‚€¢¢¤¬­°¨©¬ž¡¤|…bgk‡ŠŒšžS[^acdx{{[adz‚‡¬­²´³µ±°²°°±±±²°°°±±±´´´±±±¯¯¯¶¶¶¶µ¶¶¶·´³µ³²´³´µ±²²žžŠ†ˆ¢Ÿ ¹·¸¼ºº²²²“‘“‡‚„°«¬½¸¹¹¶·±¯¯š˜™‘´²²ÝÖÓß×ÔߨÕàÚ×áÛØâÜÙâÝÚâÝÚåßÜåßÜäßÜäßÛãÞÜáÜÛßÚÙÜÖÖÙÑÑÓÍÌÊÄľ¸¸¦¡ „ƒ`cfBHQ:AJTW^vtv‰Š™•–¡Ÿ¤ ¢§¤¦¦¥§¥¤¦¤£¥¢¡£¡ £ ž¡ššœ’“—”Œ‘Š‹“”…‰px{dns`hnotysw|uy}puypuxtx}otxrv{osxosxptyquzx~ƒ}ƒˆ|ƒ‰|‚‰}ƒ‰}„‹|„‹}…‹~…Œ†Ž}„‡Žˆ€ˆ€ˆ‰z‚‰qy~px|z†z€…emr^ekv{€yƒiqvpv|}„‡u|w|…ŠŽ„‰Œv{~z‚Ž‘•’—š•˜œ”—›•™œ›ž¡™ž™›˜›™œ Ÿ£›ž¢ž¡¥Ÿ¢¦–›žŠ’•’—šœž £¥¦{}~NQSŽŒ£¡£««­§©ªœŸ¡‡‹|ƒ›žw~/J#0=8AJcimkpvpu{pv{ntzntylrwsy}|‚…€†‹~„‰…ЅЇ‹‡Ž~†}…Šty~uz}†„ˆ…ŠŽƒ‰Ž‚ˆŒ…‹‰•‰y~ƒ~ƒˆˆ’}ƒˆw}€„‰ŒŒ‘”€…ˆ|„ˆŒ‹‘‚†z}€‹‘”•†Š‹…†Ž‘’šœžœžŸž ¡ ¢£¡£¥¡£¥£¤¨£¦§¢¦¦¤¦§¥§¨¥§¨¦¨¨¨ªª¥§§§©ª ¢¤}„‡lswoqvRV\†ˆŒ­­­±±±¯¯¯°°°±±±±±²¯°±²±³³³µ°¯±³²´·¶¸¹¹º··¹¸·¹ºº¼¼»½º¹»¸·¹º¹»¹¸»·¶¸º¹»º¸ººº¼½¼¾½¼¾ººº½¼½¾½¾¼»¼»º¼½¼¾ÁÀÁ¼»¼£¢¤–•–¥¤¥åÞÛåÞÛåÞÛåßÛäßÜäßÜäßÝäßÞãÞÜãÞÛáÜÛàÚÙÞØØÚÓÐÕÎËÍÆÃ¿¸·©¥¤‰‰‡ciiCLP=DKSU[rprŠ…‡™”– Ÿ¤¢¢¦¤¤¨¨¨¦¦¦¥¥¦£¢¤¡ ¢žŸ˜˜š’•Œ‘ЋЋБ‰‹‡ŠŽ‡Š†ŠŽ„ˆŒƒ‡Œ‚‡Œ„‰~ƒˆqyO^g:HTENXT[e/F%,  2SUZdfkorvz~‚{€ƒz€„yƒzƒz„z„z„{€…{‚‡}ƒ‰|‚‡x€…x€‡y€†x‡v}„t{‚nu|mtzqw}qw~qv}sy€tz€krx[biBLU(1!,36@D[bdtx|ƒ‡Œ‰’‰’‹“‹“Š“‹”ŠŽ““—‘•š’•š‘”™’•™•˜œ—šžš¡›ž¢š¡ž¡¥Ÿ¢¦Ÿ£§™¡Œ‘•…ˆ“——›ž‘”—‡ŠŽ’”Ÿ œŸ Œžžž¡¢¢“••ˆŠ‹•—˜¤¥¥¢£¤‘’ŽŽœ«««°°°¯¯¯­­­®®®±°±±°²²±³±°²°¯°±°²´³µ¶¶·¶µ·¶µ¸·¶¸¶µ·¸·¹¸·¹º¹»¼»»ººººº»¼¼½½¼½¼»½¾½¿¾½¿¼»½º¹º½¼¾¾½¿¿¾ÀÃÃÄÂÁÂÁ¿ÁÂÁÃÂÁÃÀ¿ÀÂÁÃÃÂÄÂÁÃÂÀÂãÞÛâÝÚâÝÛáÜÛàÜÚàÛÚÝØ×ÛÕÕ×ÏÏÒËÉÈÀ½»µ¯¦ ›‚~dikIQVBGNXY^ustŒˆ‡—”“žšš£ŸŸ£  ¥££¤£¥¢¡£Ÿž ŸŸ¡š›—˜œ”•™‘“—‹Ž’ˆ‹}€…ejoMV]-7=&06 '.AFL_bgjmrvz€y}‚|€…z…z„z€…y„x~ƒy„|‚‡|ƒˆz€…z€†x€…x€‡y‡y€‡z€‡v|ƒqw}ou{qv|rx~ou|sy~fmsFQZ&2<%-#-5NV]ouwv{~{ƒ†‰Ž‹“‹”‹”‹”Š“Œ““–‘•™‘”˜“—”—›˜›Ÿ˜›Ÿ™œ š¢œŸ£ ¤ ¤Ÿ¢¦Ÿ£¦šŸ¢‹“†ŠŽ‘•šž“•š†‰ŸŸŸ ’“˜˜—   ™›œŽ‘’‘’¢¢£¤¥¦—˜™ŽŽš››¬««±°°®®®°°°±±²°¯±®­®±°±²±²²±³´³µ´³µ¶µ¸¸·¹·¸¹¸¸º¸·¹¸·¹º¹º¹¹¹µµµ¹¹¹¼¼¼¼»½¿¾¾¾½¾º¹»¼¼½½¼½¼¼½¾½¿¿¾ÀÁÁÂÀ¿ÁÁÀÁÃÁÿÁÁ¾ÀÃÂÄÂÁÃÁÀÂÁ¿ÁãÝÛãÜÙâÝÙáÜÙàÛÙßÚÙÜ×ÖÙÔÓÖÐÏÎÇÄļ¶¶¯©š–‘wyxX_cCKQHLScdg~{|Œš˜—Ÿ£  ¢  ¥£¥£¡£¢¡£¡ ¢œž˜šœ”–š‘“—“—Ž‘•ˆ‹}€…afkOX_;FM7CL;FP@JR\agknstx}vz|€…{„{€…z€…y„y„y„{†z‚†z‚†{‚ˆx€…y‡y†y‡{‚‰{‚ˆv~ƒqx}puzqw|msymsygmsKW`(3%0'3>V^frw|}„y}{€„†ŠŽ‘•‹“Š“‹“‘–Ž’–“—‘”˜‘”™”˜œ—šž—šŸ—šŸ˜› œŸ¤ ¤œŸ£›ž¢œ ¤ ¤™ž¡‘•™‡‹ŽŒŽ‘™›–™œŠŽ›œ¡¢¢”––‹Ž•––£¤¥¡£¤‘”•‘’ŸŸ «««Ÿ ¡““”˜—˜¦¥¦¯®®°°°°°¯°°¯­­­°°°²²²°¯°±°³²±³´³µ·µ·¸¸ººº¼¸¸¹¸·¹º¹º·¶····ºººººººº»½½¼½¼¾º¹»¼¼½½¼½½½¾¿¾À¿¾À½¼¾¾½¿ÂÁÃÁÀÂÀ¾ÀÁ¿ÁÃÂÄÃÂÄÃÁÃÀ¾ÀãÛÛãÝÚáÜÙáÜÙàÛÙÞÙ×ÛÖÕØÒÑÓÍËËÄ¿À¸²®¨¢ŠˆnpqPV\AHOPTYmlo†‚”‘‘œšš¡ŸŸ¤£¢£ ¡¤£¤¡ ¢Ÿž Ÿž ›šœ˜™›”–™’”˜’–Ž‘•‡‹y}`fkMV]KS\OX_\djW`feinkotsw|uy~y}‚|€…z~ƒy~ƒx~ƒz€…z€…{†z„|„ˆzƒ‰y‚†x€†x…y€†|‚Š}„Šz‚ˆu|ouzntyouzntyflsYcl0>I(6BGQ\dkqsw|}…}‚…y~}‚…ˆŒŒ”Œ”‘•“—’•š“˜‘”™”—œ•˜–šž™œ —šŸ˜› ›ž¢ ¤ ¤›ž¢œŸ£ž¡¥ ¤§¢¥•š‰ŒŽ’˜ššœ’”ŒŽ™šš¤£¥œžŸŽ‘”•–¢¤¥£¦¦”—˜Žœ›œ©¨ª¦¦¨˜˜š”“•¡ ¡¯­­±°°¯¯¯°°°°°°°°°°°°±°²±°²³²´´³µ·¶¸¹¸º¸·¹º¹»»¹¼¸·¹¸¸¸¸¸¸···¼»¼½½¾½¼¾¼»½¼»½¼»½¾½¿À¿Á¿¾À¿¾À¿¾ÀÁÀÂÁÀÂÀ¿ÁÂÁÃÅÄÆÆÄÆÃÁÃÀ¾ÀâÛÚâÜÚáÛØàÛØßÚÙÜ×ÖÚÔÓ×ÏÎÐÉÆÆ¿ºº³­¢™~~~bdgHOUCJPWZ^wuvІ…–’‘žšš¢Ÿ ¥£¤¤¢££¢¤  ¡žŸ›™™›˜™›“”™’”˜“—Ž‘–†‰uz~]dhFPUPX^^dhmruhmqoqvptxosxsw{vzy~‚x|x~ƒx~ƒx~ƒy„y„x~ƒ{ƒˆyƒ‡zƒˆx…x€†z‡{‚‰}ƒ‰|ƒ‰y€†qw|ouypv{sw|lrx]fmKU_2=JPXaqvyz‚y~~‚…ƒ‡{ƒ}‚…‡‹”’–‘•™”˜“–›‘”™”–›•˜—šŸ˜›Ÿ–šž™œ ž ¥ ¥ ¤ž¡¥›ž¢ ¤ £§ ¤¨ ¤¥˜œž”ˆ‹Ž”–—Ÿ¡¢–˜™‘’–—˜¥¦§Ÿ¡¢’•–’“šœœ¢¤¤œžŸ‘”“”¥¥§ªª¬œ›“‘“›™šª©©²°°±±±±±±°°°²²³°°±²±²±°²³²´µ´¶³²´´³µ¹¹ºº¹»¹¹¹¸¸¸¹¹¹¹¹¹»»»¾¼¿¿¾À¾½¿¼»½½¼½½½½¾½¿ÁÀÂÁÀÁ¿¾ÀÀ¿ÁÃÂÄÂÁÃÀ¿ÁÁÀÂÂÁÿ½¿¿¾ÀáÜÛáÛÚàÛÙßÚÙÞÙØÛÖÕØÒÒÖÎÍÍÆÃü¹´®¬–‘suvV[_BINJPVceh€}~Œš——Ÿœ¢Ÿ ¤¡££¢£¡ ¢Ÿž Ÿœœž˜™š–—˜“”˜‘“—””„ˆŒsx|\chHQUSZ_chlquyvy}osxrv{nqvruysw|tx}y}‚z~‚x}‚v|w}‚w}w}‚{ƒˆz†{‚ˆy€†zˆ|‚‰{‚ˆ|‚ˆ}‚‰{‡y„sz~pv|rv{ty~houWahIR[RZbptx„‡|€„z‚~‚†ƒ‡{ƒ€„‡‹Ž’“˜‘”™“–›•˜“–›‘”™•™ž—šŸ—› –›Ÿ™¡ ¥ ¥ ¤ ¤œŸ£ ¤ž ¤¢¥©£¦©¡¤§˜œ Œ“ˆ‹–˜š¡¢¤™œžŒŽ‘’“•££¤¥§¨–™š‹•––¥¥¥¡££’’““‘”¡ ¢ª©ª¢¡¢““”“““¥££²°°²²²±°°³³´³²³³²´³²³´³¶´³µ±°²±°²¶µ¶¸¸¹º¹º»»¼»»»ºººººº½½¾¿¾À¿¾À¾½¾¼»½½¼¾½½¾¾¾¿ÁÀÂÁÀÂÀ¿ÁÁÀÁÁÀ¿¾ÀÀ¿Á¿¾À¾½¿ÂÁÃáÛÚàÛÚàÛÙßÚÙÜ×ÖÚÔÓ×ÐÎÑËÈËÅÂÀ¹¸ª¤£ŒŠŠhlnLRUCIPTX]qptˆƒ…•‘’šœ¢Ÿ¡£ ¢¤¡££¢¤¡ ¢Ÿž š™››šœ—˜™”–—“”—Ž“Œ“Š‘„ˆnsxW_cMVZX`eflpquyvy}qvzquysvznrvqtzrv{y}y~‚w}w}‚w~‚u{€z€…y„{†|ƒ‰y€…{†|‚‡{‡}ƒ‰}„Š}„‹~„‰z†t{qv{uy~vzelr[cidkprw{{€„~ƒ‡{€ƒy~‚†€…ˆ}ƒ†€ƒˆ‹Ž“’•™‘”™”—œ’–œ‘•›”˜—› ˜œ¡™¡˜œ ›ž£Ÿ¢¦œŸ¤›ž¢›ž¢ ¤ ¤¡¤¨ £§¡¥¨Ÿ£§œŸ£’–™Š””—¤¤¦Ÿ ¢’”‘‘“¢£¤©«¬›‘‘““”¦¥¦ªªªœž‘’”™˜š¬©ª©¨¨™šš•••¤££²²²¶µµ²²³´³´¶µ¶µµ¶¶µ·´³µ³²´µ´¶²±³µ´¶»º»¼»¼ººº»»»ºººº¹»¾½¿Á¿ÁÀ¿Á½¼¾¼»½¾¼¾Á¿ÁÁÀÂÀ¿ÁÀ¿ÁÁÀÂÀ¿ÂÂÀÂÁÀÂÀ¿ÁÁÀÂÂÁÃáÛÚáÜÛàÛÚÞÙØÜÖÕÙÓÐÕÎËÎÇÃÆ¿½º´´ š›€€]ccHORINT]^dzvzމ‹˜”–›œ¡Ÿ ¥¢¤£ ¢¤¢£ŸŸœž›šœ˜—™—˜š‘“—“–Ž”‹Ž’ˆŒ€ƒ‡lquU]aNW\]diimruy}psxux}nrwqtynrwosxrv{uy~w|x}‚v{€v|x~ƒ|‚‡y„z†|ƒˆz‚‡{†{†|‚ˆ|‚‰|ƒˆ~…Š~„Š~…Šy„qw|tx}sx}iot`hmnty|€…{ƒ{„„‡|„{ƒ†‰ƒˆ‹~ƒ†€ƒ‡Œ“‘”˜”—œ”˜•™Ÿ–šŸ–šŸ—› ™œ¡›ž£ ¥ ¥ž¡¦œŸ¤ž¡¥Ÿ¢¦ £§ £§Ÿ¢¦ ¤§¡£§£¥©£¥¨ššŸ“‘“¤¤¦¥§¨–˜š“”Ÿ ©ªª££¤‘““•¤¤¥««¬Ÿ ¢Ž‘”“”¦¥¥®­­¥¥¥•••™˜˜­««·µ·µ´µ´´´···µµ¶´´µ´³µ¶µ··¶¸¸¸º»º»¸¸¸ººº½½½¼»»ººº½¼¾À¿ÁÁÀÁ½¼¾¼»½¾¾¿ÁÀÁÁ¿À¿¾ÀÁÀÂÁÀÁÁÀÁ¿¾À¿ÁÃÂÄÄÃÅÀÀÂßÛÚàÛÚßÚÙÝ××ÛÕÕØÒÒÕÎËÌÅÂÁ»¸°ª¨’ŽŽprqSZ\FMPMPUhhj}~Œœ™š¡Ÿ ¡Ÿ £ ¢¤¡£ ž žŸœ›œž—–™““—‘“Ž”Œ“‰Œ‡‹Ž~ƒ†qw|dlqU^bcimkouux|orwruzpsxnqvpsxlqvotxquyu{y~ƒw}‚w}‚w}‚x}‚x~ƒ|†{€…|‚ˆ|‚‡y„z€…{†{†}ƒˆ€†‹‡Œ€†‹v|sy~jpugmrjqvnsxz~|…y~‚{€ƒ‚‡Š~‚†{„…ˆŒ‡‹ƒ†‚…‰’—“–š“–›–šŸ”—œ•™ž—› ˜œ¡›Ÿ¤œŸ¤ž¡¥ž¡¥›ž£ž¡¥Ÿ¢¦Ÿ¢¦ £§¢¥©¢¥©¤§«§¨¬¨©­¦§«žŸ£”•™’“—¢£¥¨ª«Ÿ ‘“”™™›¨¨©§¨¨–—˜‘’›š›¬¬¬¨¨ª—™š““•¥¤¤°®®¬««•••‘‘‘¨¦¦···³³³µ´µ¸·¸¶¶¶´´µµµ¶¸¶·¹¹ºººº¹¹¹¹¹¹»»»¾¼¼½½½½¼¾¾½¾¿¾¿»¹»¹¸º¼»½À¿ÁÀ¿ÁÂÀÁÁ¾ÀÁ¿ÀÀ¾¾½»¼¾¼¼¾½¾¾¼¾¿½¿àÙ×ßÙ×ßÚÙÝ×ÖÚÔÔÖÐÐÒËÊËÄÁ¿¸´§¡††‚gkjNUYFNRVZ\rop‰„…•‘œšš¡Ÿ £ ¡¢Ÿ¡£ ¢ Ÿ¡œ››šœ™˜›““–“”˜’“–‘•“ˆŒŽ…‰‹†‰y‚pwzhnskotpuxquyptxkosnqvnqvprwmqvosxrvytx|x|w}‚v}‚v{€x}‚z„z„{†|‚‡|‚‡{†}ƒ‡|‚ˆ|‚‡}ƒˆ}ƒˆ}ƒ‡~†Š~‡‹y€…hquajnlqvrx|v||…}†y}~ƒ…†‰~ƒ†|€ƒ„‰Œ…ˆŒƒ‡„‡Œ’–“–›•˜•˜“—œ–šž™¢œŸ¤ ¥ž¡¥ £§Ÿ¢¦Ÿ¢¦ž¡¥ ¥Ÿ¢¦¡¤¨¢¥ª¥¨¬¤¦ª¤¥¨©ª­¬­°¢¤§–—›’“–ŸŸ¢«¬­¢¤¥””—’’”¦§§©«¬Ÿ ‘’––˜ª©«¬¬®žŸ “““ž°­®¬¬¬žžž–••¡  ±±±´´µµµ¶¶µ¶µµ¶¶¶··µ·¶µ··¶¸¹¸º»»»ººº½½½¿¿¿¼¼½¼»½»º¼¹¸º¹¸º½»½¿½¿¿½¿ÃÁÿÀÀ½¾»·¸º¸¸½»»½¼¼»»»¿½ÀáÙÙß××ÝÖÖÜÔÔÙÒÒÕÎÌÎÇÄž»·±­œ˜”{~|[aaEKPIOQ_ac{wxˆ‰™”•Ÿ››¢  ¤¢¢¢Ÿ¡¢ž Ÿž œ›œ›˜˜œ’’–‘’–‘•’–‹Ž’ˆ‹†‰ƒˆ‹„‡|‚…v|u{~uy|inrgkpcfkfinimqaejhlqjnsotwosxsw|v{€v|€x~ƒy„x~ƒ{„y€…y„y„|‚‡}ƒˆ|‚‡|‚‡~„‰~„‰}„ˆ…Š€†‹|‚‡iqvdmqlrw{€„x~‚w}}…„‡{€ƒ„†„‰‹€…‡€…†‡‹Œ‡‹Ž…‰‚†ŠŽ‘•”—œ”˜’–›—šž™œ œŸ£ž¡¥ ¤ž¡¥ž¡¥ž¡¥¡¤¨ £§ £§¢¤¨£¥©¤¥©¤¦©¤¥©©ª­ªª­¨©¬¦¨¬™› ’•ššœ©ª«©©«šœ’“¡¢£«««¦§§–˜™””•§¦§¯®®¥¥¥”””™˜˜©¨¨³³³§¨¨–——”””©¨¨´²²¶µµµµµ¶µ·¸·¹¸·¹·¶¸´³µ·µµ¸¸¸¼¼¼»»»º¹¹¼»»»»¼»º¼¾¼¾½»½¼º¼¾¼¾ÂÀÁÃÀÁÀ¾¾½»»º¸¸»¹¹»¹¹¼¼¼¿¾Àß××Þ×ÕÝÕÕÚÓÒ×ÏÏÓËËËÃÁÁ¹¸¯§§Œ‹mqpRY[DJOQVYjkm‚~”›—˜Ÿœ Ÿž¢ ¡¢ ¢ŸŸœ››šœ™˜š–•˜“’–ŒŽ‘Ž’ŒŽ’‰ŒˆŒ‡Šƒˆ‹ƒˆ‹†‰}ƒ†w|uz}eimPTYPTYX[_\`cUY]SX\bfjkpsmrvotxvzy|y}‚y}‚w|y~ƒz€…w}‚x~ƒ|‚ˆ}ƒ‰{†{†~ƒˆ€†Š~…Š€‡Œ‡‹v|nw{irvovzz„|…w|w|€„ˆ€…ˆ|€ƒ€„†…‰Š†ˆ€„‡‰Œ‰‘‚‡‹„ˆ“—–™–šž•™—šž›ž¢ ¤ž¡¥ ¤ž¡¥ £§£¤¨¡¤¨ £§¢¤¨£¥©¦¨ª§¨«¨ª­§¨¬¨©¬¨©¬¬­±«¬°¡¢§’“—”•™¥¦¨§©ªš›œ’“”œœ¬­¬¬­­œœ”’” Ÿ °¯¯­®®›œœ“’’¡¡¡®®®«««   •””¡žž³²±¹¸¸¸¶¸¹·¹º¸º¸¶·´²³³°³´´´¾½½¼¼¼¼¼¼¼¼¼»»¼¼»½½½¿¿¾¿¿½¿Á¾¿Á¿ÀÁ¿¿¾»½½»¼¼ºº½»¼¼ºº¿¼½¿½¿ß××ß××ÜÕÕÙÔÓ×ÏÏÒÊÊÈÀ¾º±±¦ŸŸ‚`egKSXFLPW[]stuˆ…†–’”˜š žž¡ŸŸ žŸ¡ž žœžœœ™˜š˜—™’“–‘“Œ‘Š‹‡‰Œ…‡Šƒ‡Š„‰Œ‚‡Š€…ˆ|„{„v{~`ei=DL9AHIMRORUEKN8>E>CG8>C46>E-6<&077@GY^fglrnsxkqvmsynsypvzz~ƒx}‚x}y„z€…y„{†{†u|dntMW_KR[cfmx|€‡‹…Šƒ‰…Œ„ŠŽ…ŒƒŠ}ƒ‡|…~ƒ†ƒˆ‹„ˆ€„†‡‹„ˆ‰„‡ˆŒ‹Ž‰Ž†‰‰Œ’—ˆ‹„‡‹‘“–œž  £ ¢Ÿ¡¤¡¢¦žŸ£Ÿ ¤¡£§¡¢§¢£§¤¥¨£¥§¡¢£¥¥§«ª««ª¬¬«­¬«­¬«­­®¯¬®°«¬®­®°®®°¥§¨˜š›—–˜¥¤¦®®¯¨¨©š™šœ›œ©§©²±±¨§©›šœœœ«ª«²²²ªª©›šš—–—¤£¤°°°­¬®œ›™›¨¦¨´±³¹·¹¸·¹º¸º¸¸¹·¶¸¹¸º¹¸ºº¹»»»¼½¼¾½¼¾¿¾À¿¾ÀÁ¿Á¿½¿À¾Á½»¾¾½¿¿½À¿Á¿½¿ÝÖÓÛÓÔØÑÑÔÌÌÍÄÃù¶²©¦”ŽsusW\^HNSORXggj}zzŠŠ˜“”™šŸœž¡žŸ¡ž žœŸ›šœ›šœ˜—™”•–‘’•Ž’Š’‡ŠŽ…ˆŒ†‰ƒ‡‹ƒ‡Š‚†‰ƒ†}„|€…{„x~‚ksyJ[b=NU9DL>HO,8>-9@GQSXblpw€„‰‡Œ†Š‰Ž’‹“‰Ž‘Š’†Œ…ˆ{‚€„ˆ…‰Œ…ˆ}ƒ†ŠŒ…‰‹€„‡‚…‰‹Ž’ŠŽ‘†‰ŒŽ’’”—Œ‘…‰‹’™›Ÿ¡¤¡¢¦¡¢¦ ¡§Ÿ¡¥ ¢¦£¥©¦§ª¥¦¨¦¦¨¨¨ª«ª¬«ª¬¬«­­¬®­®¯¯®°°¯±°¯±±°²°°²²²´³³µ°°²§§©™šœ——™¥¤¥®¬­¦¦§œ›Ÿ­««·¶¶¬¬¬žœšš™§¦¦°°°««¬œ››šœ«©ª¶´´°®¯ Ÿ œœ§¤¦³²³»º»¼»»¼»¼½½½»º¼»º»¼»½½¼¾¾½¿¼»½½¼¾½¼¾¿½À¿¾ÀÀ¿Â¼»½¸¶¸À½¿ÛÔÒØÑÎÕÍÊÏÆÃÆ½º¸¯­—•|}|_dfGPTLQW]^byvxŠ…†–‘‘š——ŸœžŸœžŸŸžœž›šœš™œ˜—™•–—‘’•ޓБˆ‹ˆ‹…‰Œ„ˆ‹…‰„ˆƒ‡~‚‡~‚‡}…{€ƒz~ƒv{€mtyhqxfov^hnXbjMW_V]ddionrwnsxkpunrwmpunrwotyptyx|y~ƒx|y„y„|†{‚‡|ƒˆw€…kv|YdlR[efjs}†…‰†‹ŽˆŒ‘Š‘ŠŽ‘Š’‹“ˆ†‰}‚…‚…‰†ŠŒ‚†ˆ€„†ˆŒ…‰Œ€„‡ƒ†Š‹‘Œ”†‰‰Œ“•Ž’”ˆ‹Ž‹Ž˜™œŸ ¤¡¢§¡¢§¤¥©¢¤¨¥§«¦¨«¥§©§¦¨¨§©«ª¬«ª¬«ª¬«ª¬­®¯¯®°¯®°¯®°¯®°±±³²²´²±³²²´²±³«¬®ž–•–Ÿ­«¬®­­ žžœš™¦££´²²²³²¤££›ššž¯®¯²²²¥¥¦›šœ žŸ²¯°´³³­¬­¡Ÿ¡Ÿœž­«¬¼»º¼ºº¼»»¼º»½¼½¾¼¾»º¼º¹»º¹»»º¼¿½¿¼º½½»½½¼¾¼»½¾½¿ÂÁÃÚÔÓØÑÎÓËÈÌÿÀ·´¯¦¢‘ŠoqqV^`ENROTXhgk€~~‰Š˜””›˜™žœŸžžžœ›œššœ˜—˜••–‘“”Ž“ŒŽ’Š‘ˆ‹‡ŠŽ…ˆŒ„ˆŒ€„ˆ€„‰~ƒ†|„}†|…{ƒ{„y|w}‚sy~rx}pv|hovYaiSYaaeljmrkotfkofjpjntkptotwnsxquzz~‚{€„y„z€…z€…{†|‚‡|ƒˆx†mw}^hpglu{„…ŠŽ†Š‡ŒˆŽ‘Š’Š’‹“Œ‘”‹“„‰Œ~ƒ†…ˆˆŒ‚‡Š€„‡„ˆ‹ˆŒ€…ˆ…ˆ‹‘Œ“‡Š‹Ž“–˜”•ˆ‹ŒŠŒ™š¢£¨¡¢¦¤¥©¦§«¦§«¦§«¤¥¦¨§©ª©«©¨ª©¨ªª©««ª¬­¬¯±°²®­¯­¬®¯°±°±²±°²²±³²²³³²´³²´®­¯££¥™™™›šš¥££°®­§¥¥œ™šž¬ª©´²±«««š™š˜—˜©¨©¶´´¯­®¢¡¢žœ¦¤¥¶´´µ³¶¤¢¤š™š£¢¡³°°º¸¹½»¼¿½½¾½¾º¹»¹¸º¸·¹·¶¸º¸º¼º½¾½¿½¼¾¿¾ÀÁÀÂÃÂÄÙÔÒ×ÏÍÐÈÅÈ¿»½³°¥žš„ƒ€ehjMTYFPTVZ_sqt‡„„‹Œ™”•žš›ŸžŸžžœœœšœ™˜š˜—˜”“•‘““‹‘ˆ‹…ˆ†‰‚†Šƒ†‹€ƒˆƒ‡~‚†{€„z‚y}y}x|y}‚y„v|v|‚v|krx\clJPZLPY`bj`ciY\cWZacfllptlqtosxnrwsw{z€ƒ{€†{†{€…{†}‚‡…Š}„‰w„ox}tz€~‚‡†Šˆ‹‘‡‹ˆ‹ˆ‰Ž‘‰Ž‘’•Ž“–Œ‘”„Š~ƒ†…‰Š’„‰Œ„‡…ˆŒ‰…ˆŒ„‡‹Œ’”—Š‘ˆŒ‘”–‘“•‰ŽŒŽ—™›Ÿ ¤£¤¨¢¤¨¥¦©¨§©¥¤¦¥¤¦¨§©©¨«ª©««ª««ª¬­¬®®­¯¬­®­¬®®­¯¯®°°¯±±°²³²´²²´³²³±±³±°²««¬œ“’’ ž¯­¬®®¬   š——¡ Ÿ±¯°±¯°¥¤¥›šœ¢ ¡´²²¸··«ª«œ™› žŸ¯­­¶µ¶®®®¡¡ ˜––§¤¤»¸¸¾½½½»¼½º¼¼º¼º¸º·¶¸·¶¸º¹»À¿ÁÀ¾ÀÂÁÃÂÁÃÂÀÂ×ÑÎÕÎËÎÇÃŽ¹¶¯«›–”zz|]`dIOVIOU_aeyvwˆ‰”œ—˜Ÿ›ŸžŸœžœšœ™˜š•”–‘’‘Ž’Ž‘ŠŒŽ‡‰‹„†Šƒ…‰…‰„ˆ€ƒ‡}‚…|…|€…{„y}‚x|w{€z~ƒx|w|v}‚tzotzU\dOWfnt}ƒ‡‚‡Š…ˆ†Š„‡Œ†‹ˆŒ‰’ŠŽ’‘•‘”˜Ž’–•˜‘•š”™‘–›‘”˜“–š—š•˜œ–™ž‘•˜ˆŒƒ†Šˆ‹Ž‘”‰ŒŽ‡‰Œ“•–—˜š’“–––˜šœž•–š‘’”˜—™œ›–—˜‘’•––™¢¡¤©©ª¬«­­¬®­¬­¯®¯¯®°¬¬®­¯°°¯±°¯±°¯±¯®°±°²²²³´´´³³³´µ´¶¶·µµµ³²³³²´²²³·¶·µ´¶µµµ···³´µ¦§¨ž¦¥§±¯°¶´´«ª©œš›¢ ¢´±²»ºº³³³¤£¤š—˜©¥¦º¸¸¼¼º±°¯¢ ¡¥¡£³°±À½¾º¹»§¦¨ž›¥¢¥¶³µ¾»½À¼½ÉÀ¼¼´°§¡Ÿˆ††inoOWZIPVWX_nkoƒ~€ŠŒ™”–›—™›—™ž››˜š™—™’“‚‚„xz{suvorsvxyy{|wyzz}€}€„~…}€„|€„{ƒz‚x}€w|w|v|~v{vz~vzv{uy}uz~ty~uzty~qw}pw{pw{qy|kuyalr^gnhntpv|msxmsxpuzosxnsxotxouxpvxckpT`f^hnv|€„‡†Š…ˆ„‰‰’ˆŒ‡‹ŠŽ“Š“Œ‘•’—Ž’–”—”˜‘•™’•š”˜”˜›•˜œ•™–š–™“–›ˆ‹ƒ†ŠŠ“”‘ˆ‹Œ‘‘“˜˜š““•——˜žžŸ—™›‘•’’”šœ›œž‘–’”—  ¢©¨ª®­¯­­®««¬®­¯¯®°­«®®®°¯®°±°²°¯±±±²²²²³³³²²²³³³µµ¶´³´²²²´³´´³´µ´µµ´¶¸·¹¶¶¶·¶¸¶µ·±°²¥¤¤£¡¡­««¸¶¶³²²¦¤¥¡ž «¨©¸··»ºº²±± ž ®¬«»¹¸º¸¹«©«¡ž ©¦¨¶³¶¿½¿¶´¶¥¢¤¡Ÿ®©«¸³µÅ¼¸¶®«›—•|{|^deIQTJPU\]avsu‰„†“Ž™–—š—˜œ™ššœ™–˜—•—Ž}~tvwmqrlopvxyvyztwxyz}y{||ƒ|ƒ{~‚z~‚x}w|w|uz~v{~v{vz~uy}tx|sx}uzuzsy~ty}v{uzv|u|€ow|lsykqwmsxou{lrwnsxpv{mrvpvypuynsvflpckojqtz~‚ƒ†Š„ˆŒ„‡Œ†‰‡‹‰“ŠŽ“‰’Œ•Ž‘•Ž’–”˜’–™“—‘“—‘“—’•™“–š”—š”˜œ•˜œ™œ —šŸ“–›Œ“†‰ŠŒ‘”•Ž’ˆŠŒ‘’“›œ—˜™’’”••— ¡£žŸ£‘”–‘’•™›› “•˜’“•žž ª©«­¬®­¬®®­¯«ª¬­¬®®­¯®­¯±°²°¯±±±²±±±°°°²²²²²²±±²²±²±°²³²´³²´´³µ¶µ·¸·¹¸·¸¸·¹¸·¹¸·¸µµµªªªžž£¡£²®°º·¸²±²¦¤¥¢  ­««¿¼¼»¹º©©©ŸžŸ¥£¥¶³´¾¼¾µ³µ¦£¥£ ¢±®±¹¶¸¾»½´³´£ £¥¡£À·³­¦¢ŽŒŠqrsU[\FNPNSWefh}y{Œˆ‰•‘“™–˜›˜™š˜˜›˜š™˜š–”–ŠŠŒ{|qtulppnqrvxytwxruvtvxwy}xy|{~{~‚z}z~‚x}v{ty}v{vzuz~uz~uy~tx|uy~uzuzuz€szt{u{w}z€…x~ƒqx}mu|kqxmsyouylrwpuzsx{puxptxkqubindkpjqtx|€„‡Š‡ŠŽˆ‹Ž‡ŠŽ‡‹‰’‹”Œ”“˜“—“—Ž’•Ž‘”ƒ…ˆ|~€‚ƒ†”“—š•˜”—›–˜œ–™—šž—šž˜šž’–‰Œ‹’”•’”•’“”›šœš›•–™••™žŸ£ž¡”–šŽ“—™›œžŸ˜š›”•˜šš¦¥§¬«­®­®¯®°­¬®®­¯­­®±¯²®­¯¯¯¯±±±°°°°°°³³³±°²±°²²±³³²´¶´¶¶µ·¶¶··µ¸¶µ·¸·¹µ´·µ´¶º¹º»»»±°²¢¡£ŸŸ­«­¸··¹¹¹¨¨©Ÿžž§¥¥µ²³»ºº³²³¢¡£ ž ¬©«º·¹½¼¾²°²§¤¨¤¡¢²¯±»¹º½º¼±®°º²®¤›‚€€gjkNUUDLMTZZnooƒ€ŽŒŒ˜•—›˜šš˜™›™šš˜š—–˜““”……ˆwy|nqsimnnqrwyzqtupsvqtwtw{wy}{~‚{~‚y}€x|€y~w|uz}uz~vzux~tx}tx}uy}tx}uzvzvzv{w|vzv{€w}‚y„w}‚qxmszjpwouzouzntxovypuxmsuhordkofnqpvxvz}|ƒ…ˆŒˆ‹‡ŠŽ‰‹‘‰’‹Ž’Œ••“—Ž’–‘”…‰Œosv\beknq…†Š“–™–˜œ•—›–—›•—›–˜œ˜›Ÿ™›Ÿ˜šž’•™‹Ž‘ŠŽ”•–˜š›“•–’’”œ›œœŸ•–š‘“—–—› ¡¤˜›’•“•—ž žž¡—˜œ˜˜š¢¡£©¨¨°¯°®¯¯¯®°®­¯°¯±°¯°±±±±±±°°°°°°³³³³³³³²´´³µ±°²³²´·¶¸µ´¶·¶¸·¶¸¹¸ºµ´¶¶µ·»º¼¼»¼¹¸»´³¶¬¬­£¢££¡¡±°°·µµ±°°¤¤¤¡ŸŸ¨¥¥´²²»ºº®®¯¤¢¤¤¡¢±®¯¾¼½»¸¹­¬«¦£¤©¤¦³¯°¾º»µ­«™”“yyy^cdJRSJPQ]``uttˆ„„‘ŽŽ—••š—˜™™™š™š—–˜–•–Ž‚svzmpshkmoqruwxpsuoquqtwpswvy}x{{~‚y}w{y}w{vzty|vzvzw{ty~sw|sw|uy~uy~vzw{€w{€vzw{€w|€x}‚y}ƒw|‚ou{ntymsxouzqwzotwpuxmtwdknekokpsswzx{x{}€„‡ŠŽˆ‹‰Œ‰ŒŠ‹Ž’Œ”’–Œ‘”Œ‘•ˆŒw|€djoinrsvy}€ƒ…‡Š“”˜–—œ—˜œ˜™™šž™›Ÿ™œŸ™œž•™›Ž‘“ŒŽ•—˜™›œ•—˜‘‘”•–™›œ ™œž‘“˜š› ¢£šœ‘““”•ŸŸ ¦¦¨Ÿ–—˜œœªª©°°°¯¬¯¯®°±°±°¯±°¯±°¯±±°±²±²²²³±±±³²³´³µ±°²±°²µ´¶¶µ·¶µ·¸·¹·¶¸¶µ·¹¸º»º¼º¹»¸·º¸·¹º¹»¶¶¶¨¨¨¢¡¡¤¢¢¯®®¹¸¸±°°¢¡¡Ÿžž®¬¬½¼¼»¹¹¬ªª¤¢¢ª¦§´±²¿»»º¶·°«­¤Ÿ¡¥¡¢¬¥¢ŠŠnqqTZ\HOQPSUfee|yxŒˆˆ“‘‘˜––™—˜™™š˜—˜•••“’“ŠŠ‹z{pswimqgjmqsusuvoqsoqulosmptsvzvy}y|€x{x|€w{€uz~tx}ty}vz~uy~vzuy~sx}vzuy~rv{ptysw|vz~w{€x|w{€ux|vz~x}‚uzpu{ntynsxsx{puxotxipscjnfknptxuy}y|€z~y|€‚†‡ŠŽŠ‘‰Œˆ‹Š‘Š‹“Œ‘”‘”Œ”‡‹~ƒ‡qvzafk\afoptˆˆŠ”•˜–˜œ˜™ž™šž™›žšœŸšž¡¡œ ¡””‘“•›žŸ”–™Ž’“”˜žŸ žŸ •˜˜•—˜›žšœ”•–”•–ŸŸ¡§¦¨ ¡£•—˜™˜™¥¤¤­«­°®°¯®¯¯¯°¯¯°±°²³²´±°²±°²²±²³³´´³µ´³µ´³µµµ¶¶µ·¶µ·µ´¶·¶¸¸·¹»º¼»º¼½¼¾º¹»¹¸ºº¹»»»¼ºº»±°²¤£¤Ÿª¨¨¶µµ¸¸¸¬­­¤££¥££µ²²À½¾º¹¹­©«¥ ¡«¦¨º´µÄÁ¸´µ¨¥¦ š–€€dijNUXHOQX[[qoo„‹Œ•‘—•–›˜šš™›˜—˜”“”‹‹|~orvknrgjmhkmnpqmoojlmhlmhkoknrpswux|ux|y}x|uy}ty|ty}ty}uz~tx|tx}tx}sx}uy~rw|lqvhnslpurv{x{€x|tw|nrvlqvptyy~‚u{~pv{mrxntxqwznsvejnekninqruyy|€z}{~z~€{€ƒ‡‰‹‹Ž’Š‘ŠŠ‘Š‘Œ“”Ž’•Ž’–‹Ž’„‡hos]dhdgjz{{†…ˆ‘”š›Ÿ™›ž˜šž›¡ ¢Ÿ¢¤ ¤¥œ¡¡–ššŽ‘“‘’“™›œ™šœ‘’•””–œœž ¢¢™›œ“•–—˜™žŸ™š›“•—š›ž¦¥¨¥¦¨œŸ—–˜¡ ¡­«¬¯­­¯®°°¯±±°²±°²±°²²±³²±²²±³´³µ´´µ¶µ·µµ¶´³µµ´¶´³µµ´¶¸·¹º¹»¼»½¾½¿½¼¾¼»½¼»½¼»½½¼¾¾½¿¸·¹¬¬­   ¤££²¯®¼»»··¸©§§¡ž­¨©»¶·Â¾¿¸µµ©§¨¡žž¬§¨¼·¸¾º»”‹vww\abJRUJQT_abyuvˆƒ„“Ž˜“”˜–—œ™š˜˜™—–˜“’”‡‡‰xz~osvgloeiljlnjln`cf^`d^adehlgjnmqurvztx|v{~v{w|€uz}tz}ty}sx{rw{qw|tx}ty~tx~pvzfmrafm]cigkpsv{x{€quzhmrdjoglqptyy~‚u{€qw{pvyouyjpseinfkontwsw{y}€z}y|{€|€ƒz}€ƒ…‹‘“‹Ž‘ŠŽ‰ŒŒ’”Ž’•“—“—“—€…Šisweko_bdoprƒ‚„””˜™›Ÿš› ›¡œŸ¢ž¡£ ¤¥ £¤Ÿ¢¤–™›Ž‘’ŒŽ—˜šžž ˜™›““–ššœ£¤¤›œ’“•––˜¡¡¢¡¡£—˜š––˜¡¡£«ª¬ Ÿ ˜—™›™™©§¨²°±°®°®­¯±°±²±³²±³²±³±°²³²´¶µ·¶µ·µ´¶´³µ¶µ·µ´¶·¶¸¸·¹º¹»¼»½½¼¾½¼¾¼»½½¼¾¼»½¼»½¿¾ÀÀ¿Á¹¹º¶¶·­­­¢Ÿž¤¡¡µ³³¼»»¶³²©¦¦£ ¡²®¯¿»¼¿½½±¯°¤ ¢£žŸ±¬­‰…ƒlnnU[]JPSRWYhhi€|}Œ‡ˆ“™••™——™–—˜—˜–•—‘‘“„‡ˆz~€swzkorhlplnpbfhV[^OSWNQU^aefknimpkpsqvysx{w{vzuzty~uz~sx{qvzpu{pv{sy~sx}rx|hot[chX_d_diptyuy}kotbhmY_c\`eilqsx{y~‚v{~sy|jor`fiV\`Z]aqru{}‚{~|ƒz}y}~|ƒ{~‚{~€~‚…‰ŒŽŒ‘ŠŽŠŽ‹’’–“—“—“˜’•šŽ‘–€‡ŒmuzU_c^eh{~€”•™˜™œ™ššœŸŸ¢ž¡£ ¤¦¢¤¥ ¢£›žŸ—›œ’“Ž““”–ž ¡˜š›‘’“”••  ¡œž“•–•—™  ¢£¥¦šœ”•–Ÿ©¨©¦¦§›™››™›¥£¤¯®¯±±±²±²°¯±³±³³²´³²´³²´´³µµ´¶¶µ·´³µ¶µ·¶µ·¶µ··µ·¸·¹¹¸º¸·¹º¹»»º¼¾½¿»º¼½¼¾À¿Á¿¾À»º¼¾½¿»º»±±±£££¡  «©¨»¸·¿¼¼´³³§¥¦¤¡¡µ³³Á¿¿½»»³±±§¤¥{zwadeOUXLPTY[]qpp„މЖ’’˜””™–—™–˜––—•”–Žƒ…†z}~twyorvpswrvxhln\`dMRV@CHSUZaehglokpslquptysw|v{uzsw|uy}rx}qv{pw{pvzsy~qx|qw{mtygmr\chZ`efjonsuflo^diUZ^UY^[_ehkowz~y~u{~puxZae=FM;@G[X]{y}{~‚y|{~|‚|‚|ƒ}€‚{~‚ƒ„‰ŒŽŠŽ‹Ž‘Œ“Ž‘•“—‘”˜’•™“–š‘”™”˜…Šmv{enq{~€˜™—˜›˜™›œŸœž¢ ¢Ÿ¡¤¡£¥Ÿ¡£Ÿ £Ÿ¡£›žŸ”–šŒŽ’”•šœ™›œ“”•”“•žŸŸŸ¢—˜š••—ŸŸ¡©¨ª¢£¤•–—˜–—¦¥§¬ª­¢¡£›šœ¡ ¡¬ª«°¯±¯®°¯­¯²±²´²´´²´³²´¶µ·³²´´³¶µ´¶·µ··µ·¸¶¸¸·¹·¶¸¸·¹¹¸ºº¹»¼»½¼»½½¼¾¾½¿¿¾À½¼¾¼º»»»»ººº¹¹¹²±±£  £Ÿž³°°½¼¼¼ºº³²²£¡¡©¤¥¹µ¶ÃÁÁ¼¹¸ssrW\^KQSNRTabcxvvˆ„…‘Œ—““—••š˜˜™˜™••–’‘“‹Š‚„†|~€vy{wzz~€x|}nrtbgiQVZ;?DILQY\`eimnrvlpuosxptyuz~uy}sw{rv{sy}sy~sy~qw|pv{tzsz~rw|ouzdjnZae\cg`ei`fjZ`eKOTOSXUY^adimptw{~|„u{forBGFHLRTVcefrsw€‚…|„sz}Zfk2EN*6;9Cnhl€„€„~€„…‚†{~‚€‚†~…}€ƒ‚ƒ‡‰ŠŽŽ”’–”–‘”•“–—“–—‘”•”–—–—˜—™š—˜›˜™œ™šž¢žŸ£œ¡¡Ÿ £ ¡¥¢£¥ ¢£¡£¥£¥¦¤¥§¤¦¦¢¤¥ ¢£–—›“–”—ŸŸ¡šš›“’”—–˜¡ ¢¢ ¢˜—™•”–Ÿž ©¨ª¤£¥š™››šœ©§©­¬®£¢¤˜–—œ™˜©§¨²°±²¯±°­®°¯±°®®²°°¶´´¸¶··¶¶·¶·¸¸¹ºº»»¹»¼ºº¿½½¼¹»¼¹»»¸º»¸º»¹¹º¹¹»ºº¹¸º¿¾À¿¿À¿½¿¾½¿¾½¿¿½¿¿¾¿¶¶·¤¤¤¡ŸŸ±®¯¹´µ½¸¸°­­X\^LRUQUYdeg|wxŠ…†’•’“—•——–——•–“’”‘’†…‡vw{nosjkonprtvwy|z}z~jquVag8EL")4-0:KLTegkhkpilqjnslpuotxrw{rv{quzquzrw|rw|rw|qvzsx{v{~sx{sx{otxdko[afKQW:@F7>DFpkp‚…€…€ƒ‡€ƒ‡~…„ˆ‚†~„€‚„…ˆ‹ŒŽ‘‘““•–“”•“”•“•–•—˜“•–—™š—™œ—™—˜œ›œ Ÿ¢Ÿ £Ÿž¢žž¡Ÿ¡£¢£¥¡¢£¡£¤£¥¦¥¤¦¦¦¨£¤¥¥¦§¤¥¦›œž‘’““”Ÿž žŸ—–˜”“•œšœ¥¤¦œž–•—™™›¥¤¦§¦¨žŸ™—™¢ ¡«©ª¨§¦œœ›š™™§¤¥­«­°¯¯³²³³±±´²²³±±·´´·¶¶¸¸¸»º»»¹»º¹»º¸¹º¸¸¼¹º½º»¾¼¼½º»¼ººº¸¸½¼¼½»»¿¼½¾¼¾Á¾ÀÁ¿ÁÀ¿Á¿¾ÀÁÀÂÂÁþ½¿¬ª¬Ÿ›ž¢ž ³®¯½¹¸RUZINQUWZmjk€{|ˆ‰”’“˜–——•——•–•”–•”–‘|}€npthjnfgklmpvxxz|z}z~€rx{bkqIW^/?BHRTY^_dmnrz}€ƒ†}‚…rz~Wfl.AK&2>:Cohl€‚‚ƒ…‚…‚„‡ƒ‡ƒ‡~€„ptvACI& 'UDG„{{’‘’“‘”““•”•—–˜™•—˜˜šœ™šž—˜œš›Ÿ›œžžŸ¡¢£¢¡£¢¢£¡¡£¢¢¤¤¤¦¥¦¦¥¤¦¦¥¦¨§©©¨ªª©«©¨ª¤£¥¢ ¢š™›“’”š™š¡ ¡œœ—–˜–•—¢¡£§¦¨ŸžŸš˜šŸžª¨¨©§§ ŸŸ›š™¤¢¡®¬¬§¦¦›šœœšš§££®««±¯¯´²²¶´´´±±²¯¯µ´³¹·¸»¸º½»¼¼¹»½º»»¸¸¼ºº»¹¹»¹¹½»¼½¼¼À½¿À½¿¾»½¿»½Á½¿Á½ÀÁ¾ÀÀ½¿À¾À¾¼¾½¼¾¿¾À¾¼½µ±³¨£¤NSWTWZfce}wxŠ„„’ŒŽ•’”—”–—”–•”–“’”ŒŽ{{}lnrdhl^bgdgknpsyz~z}y|€x{€wz~tw{fko\dkT]ePU[ORXX[`\_cach`bedfkilqorwquzrv|sw|qvyrv{rw{rw{sx|sw{sx{mrvfkoejncinX_dBJQ4;BELSFNTDKQHLTUW^YZ`eejnos{}…‰~„‡t}€Zip1DN'3?:Dmei„‚„‚…ƒ†„ˆ€ƒ‡}€„sw{AMRaVXŒˆˆ’‘’””–••—•—˜•–˜”–™˜š›š›š››œžŸ ž ¡¡¡£¡¡£¢¡£ŸŸŸ™˜˜¢  ¨¥¥¨¦¦¨¥§ª¨ªª§©¨§©©¨ª©¨«¨§©Ÿž •”––•—žžŸ¡¡¢œ›”“•›™š¥££¦¤¥œššœ™™§¤¤«©©¦¥¥žœž›«¨ª«©ª¨¦¦Ÿ››¡ž©§§°®¯´²²³±±²°°´²²µ³³·¶µ¼¹º½º¼º¸¸»¸¸¼ºº»¸¸»¹º»¸º»¹º¿¼½¿¼½¾º¼¿»½Á¾À¿¼¾¾¼¾Á¾ÀÁ¿ÁÀ¿Á¿¾ÀÀ¾ÀÀ¿¿¾¼¼¿½¾MRTXY[okl{|‹†‡“•‘“—”–”’”–”–‘‘„ƒ…suwilo`dhadihjntuyz|€y|€y|€x|€vz~swznrvcioahmSV\LOUILSMOTRSXTTZUU[_`ejmqnrwquzrv{rv{sw|tx}rw{rw{rv{puxfkpY_dV]d\ch`fkV]cEMUHOWIOVHNTSW]VX^WW]`_eeejrrw|ƒ‚†‰†‰wƒ[jq3EO)395=oeiƒ€‚‚ƒ†…‚„ˆ„ˆy}[im!49 48=zyy•”––•—–—™––›––š™šœš› œœŸž žŸ Ÿ ¡¡¡£žŸ‹‹|zzŠ„…œ•–§¢£©¦¨©¦¨©¦¨©¦¨ª¨ªª©«¬«®«ª¬¡ £˜—™•–˜œœž¥£¥žŸ–•——––¢ ¡¦¤¤¢  žœœ¢ŸŸª¨¨ª¨©Ÿžš—™£ ¢¯¬¬­ªª£££›šš¢ ¡«©ª³°¯µ³³´³³´²²¶´´¸¶·º·¹¹µ¶º··º··»ºº¹¶¹¹¶¸»¸º»¸º¾»½¾»¼¿¼¾À¼¿¾»½¿¼¾¿¼¾Á¾À¿ÁÁ¾ÀÁ¾À¿Á¿Á¿ÁNSV^^_wrs‡ƒŽ‰‹”‘–’”–“•”‘“”“•Ž}}}prtgjnadhdgknptyz~y{y|€y|y|€wz~tx|otwjnsdjoTY^BFM7;E;=F;E8FLhlnˆ‰Š“’•—–˜——™˜˜›š™š›œšš Ÿž¡œŸ››žŸŸ¡¢¡£œ›„…†qqrnkm{|•ŒŽ¦ ¢«§©©¦¨©¦¨ª¨ªª©«¬ª­­¬®«ª¬¦¥§ŸŸ¡—–˜›™š¢ ¡¢¡£œ››˜––¡žŸª§¨©¦¦ ž›œ¦£¤¬©ª¤£¤žžž››©¤¦±°°©¨¨¡ž ¢ž ª¥¥²­®µ±²µ²³µ²³¶²³¶²´·²³¸´µ¸´µ¹··¸µ·¹¶¸»¸ºº·¹¾»½¿¼¾¿¼¾¿¼¾¾»½Á¾¿À½ÀÁ¾ÀÁ¿ÀÀ¾¿À½¿Á¾À¿ÁÃÀÂRVZfeg}xzŠ…‡ŒŽ”’•’”–”–”’”‘“‹ŠŒzz}qsvjmqehlfimtuyz{yz~y{x|€w{€vy~vz~quyptxdjoNV\06=,1:+/9)+523>79ECEPZ\djmrnrwptyptyrv{rv{tw}sw|sw|quzhnsaglX_d^dhkosfko^djAIQ%-6"+2%,&)/<=ALLR^^cdfjrty‚††ŠŽ…‰€„ˆw„_mt8IR*352:j`d‚€‚„‡‚†„†Šƒ…‰qw{]hm`jmrwyƒ†ŠŠŽ”“––—˜š™››šš™››šœœœŸ  œœŸžŸ¡¡ ¢žž¡‘”~‚gghjgivoq†‡Ÿšœ©¥¦¨¦¨ª§ª©¦©ª¨ª«©«¬ª¬ª©¬©¨ª¢¡¢š™š–•—œ›¤£££¢£›ž›œ¨¥¥¬©ª¤¢¤›˜š žª§¨¬««¦££œ˜™¤¡¢¯­­±°°ª¦¨¡Ÿ¥¡¢­ª«µ±³·³´µ±³³¯±µ±³´±²·³µ¹¶·¹¶¸»¸º¼¹º½º¼¾»½¾»½¿¼¾¿¼¾½º¼À½¾¿¼¿¿»¿Â¾ÁÁ½¿Á¾À¿ÂÁ¾ÀÁ¾ÀZZ]pmo„ˆ‹‘Œ”‘”•‘••“–’‘“‘“‡†‰}~‚svzlorijnlmqvxzvw{wx|xz~x{€w{€vztx|tw|osxahmIRY,3;',5!&0&)3&(314@@DOWZcfipjntosxquzquzsw|tx|tx}ty~sw|msxflq_ej^cggknhlqeinT\c+9B!/9$,"&46;OOSfgkqrw~†ˆ‹ˆ‹…‰Ž‚ˆzˆdqyDPQW_Y^fX`gR[cFPY;DP8?JNRYklq}ƒ…ˆˆ‹ˆŒ“‰Œ”ˆ‹“Š•‰Œ”ˆ•‡Žmx€IZe$5A'2A>G[UWWPR_W[{vzˆ†Š††Š‚ƒ‡‹ŠŽŒŒ‰‰Ž†‡ŠŽ’˜™œ› œ¢žœ¢ž£¢£œ›¡Ÿž¤¡¡§žŸ¥ Ÿ¥š›ŸŒwy}hkomnr„…’Ž‘Ÿšžª§ª­«­°¬°­¬¯®­°­¬°­¬°°¯³°¯³­¬¯¥¤¨š™œ—”—š©§ª§¦ª›šžšŸ¥¡¤®«®«¨ª œ ¢Ÿ¢­©­²®²¬¨«ž Ÿ ©§ª´²´¬ª¬ŸœžžœŸ©¦¨¶²´º·º¼¸½»·¼¹¶»¸µºº·»¸´¹»·¼¿¼ÁÀ¼Á½»¿½º¿¼º¿½¹¿¾»ÁÀ¼Â¾ÃÀ¼ÁÁ½Â{wz†„‹‘”’‘•’•’‘•“”Œ‹„„Š„„Šx{€tuxklqbbhY[`SU[KNWQT\VYacfnoqxquzqt{rt|lrxjrz`irXbkR\fPYcNU`MR]TXa_bjhksegphksjnumryrx~qw~qw~u{‚tzu{‚ty€rxmt|bktXbmOYbGMVOV_Zah\fmWbk5@M#+7:AKcemˆ‡‰‡‰ˆŠ’‰‹”‰Œ•‹Ž—‹Ž–‹—‰Ž•…nw€M[e(4@%) 'WLR|‰ˆ‹‰‰†…Š‹‹’Š‹‰ŠŽŒ‘™šžžž¤ ž¤ Ÿ¥ Ÿ¥Ÿž¤¢¢¨¡¡§¢¢¨  ¦¡¢¥¡¢¦ž¢’•™{ƒrv{ttyvrw|””¦¤§­«¯­«°¯®²¯®²¯®²°¯³°¯³°¯³­¬°­¬¯£¢¦š™ž ©¨¬®¬°¤£§žšž¢ž£­ª­²¯³¤¢¦ž¡£¡¥­¬®¯®°¥¤§Ÿ¡¤ ¥®ª®³°²©¨ª Ÿ£¢Ÿ¢®©®¼¸½À¼Á½¹¾»·¼¹¶»¸µº¹¶»¼¹½À¼Á¿½Â¼»¿¼»¿¼»¿½»À¿ÄÁ½ÂÀ¼Á¾À{~‰†‰Ž‹’•“’–”“—““–Ž“Œ’ŒŒ’‰‰„‰wztv{fgkYZ`NQXKNVKNVSU][^fdgonqyrt|qt|ps{ntzmt{hpwclt^hqYbkSYcINYQT^[^f^ai\`f^aheiqjpwpv}qw~sy€tzv|ƒu{‚u{tz€ry€nv~is{ajsVaiJU^OV^Zdk`krXenBR_KYehnw~ˆ†ˆ‡Š’‰Œ”ˆ‹”ˆ–ŠŽ—‹—˜Ž‘™Š•€ˆŽq|Xdk+8F PEJ|uz‰ˆŒ‹Œ‰‰ŒŒ‘Ž”ŒŽ“ˆ‰ŽŽŽ”š™ŸŸ¤¡Ÿ¥¡Ÿ¥ ž¤ Ÿ¥  ¦¢¢¨£¤©¤¤ª¢¤¨¤¤¨¢¤¨˜œ Š•€„‰utydafpknˆ„ šŸ¬¨­®¬¯¯®°®­±°¯³±°´±°´³°·³±·±°¶©©®ŸŸ£››Ÿ¦¤©°­²ª¨­ ž¢Ÿ› §£§±¯±ª©¬ Ÿ£›šž¥¤§°¯±­¬¯¢Ÿ¤žšŸ¨¤©µ±¶²±µ«ª­¤¢§¨¤©µ¯µ½¹¾¼¸¾¾º¿½º¿»º¾»º¾»¹½½»¿¼»¿¼»¿¼»¿¾½Á¿»ÀÁ½ÂÁ¾ÃÃÀÅOpenLP-2.4/resources/images/openlp-about-logo.svg0000644000175000017500000003766312657640340021133 0ustar raoulraoul image/svg+xml OpenLP-2.4/resources/images/openlp-splash-screen.svg0000644000175000017500000003324712657640340021624 0ustar raoulraoul image/svg+xml OpenLP-2.4/resources/images/general_search_clear.png0000644000175000017500000000120412657640340021643 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<5PLTEÿÿÿ:B:,2, =><=>;ccc01/$%$   !"!"""''&/0.111231777:::=>;???AAAAB?DECEEEGGGJJJJKHKKKMNKNNNNOMPPPSSSTTTVVUVWTXYVYYY[[[ddcdfbfhdhhhjjjjkgqqquuuyyyzzz„„„†††ŠŠŠŸŸŸ¬¬¬®®®²²±·¸·ÁÁÁÄÅÄÆÆÆÏÐÏÔÔÔÞÞÞáááçççéééêêêíííðððóóóôôôúúúûûûüüüuJ÷ªtRNS..??TTee¸ÊÊÔåååððøøýý ©¬šIDATÁÀŸmÛ¶mÛv[{ÿ#„=@ï5ü‰. SøbÊêãA¿7ì´}ø`+Š3bRó¢o\Uª¶ÜyÉÙð5ÑL²tx<É[!b ñGBÁà”$ŸSS €§¶Xm‰Ãõt=æt:¼q”ýö¼)¯Ï;—,¹#¾ÌÇ*«FÀ€/†Ô›®6»­jÖ Mh¦ˆñÛ \r½+/IEND®B`‚OpenLP-2.4/resources/images/projector_manager.png0000644000175000017500000000151212657640340021236 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  šœtIMEÞ 3 ¥Êg×IDAT8Ë¥“Ík\UÆŸ÷¼çž¹w2_™´6Ó„¡Ó–M‘@ý¨(mZuáGɪè¦]©øˆâÆU·®tPt!.´¥Q¢" Ä5&Nmó!“ùºsÏ=ç¼îKw}–?x!%‰" Äãýï ½…ÿ&Ç<Þ>W ôåõ:q2+IQ!sEÍè÷úšãÌIØ=”µÅAùàÅ…›Ê! CÀ$Êò¡üeÌ×ßGT%{H{ÃFù6rÙ‹Ž6’w v®ŽÂÙZ“®}û4½†§¢v±M_¶j6xÕªF¥â©³(DV±_›[!è‰Äþã=tcó\Z|ü”DŸõó¦$Í.e¶*š*†ì0zÈ'É:J“?4 | &ŽŒ¥žÍÔ™ÓÕ¼½}˜7vå98‘Й‘Ç†¨&y6͇’‰Ðhn¢Ó›€Ó;×GãʦV"DnG¥ðÝ2+¢Aü%HÔâÞàŠô;OªüŒ¸¾†îþ4ª“[u‡â§ n¤}°s¹Ò>ñþfŠZÔ½c&A¦¡t‘§ô27w<@ÉÇOú°ôÛIzýöµyK»«§¾ÁöôÒØ¢MÙŸþ¾²LpÚÜK‚€P†–}€$Ïb&|uf(Ð)s?:ÿ ÝÚT´ÿ¯‹ïIEND®B`‚OpenLP-2.4/resources/images/bibles_upgrade_alert.png0000644000175000017500000000137212657640340021677 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<wIDAT8Q]HSa~¾'Å8²òçܦΙ^‡LÜ  ./ O!´º Ž]„y7ª …ð¢Â È›¨ »1ÁÑM--7›º¹µÎÎæ™žsÞ.ÜS xùø¾ïyÞŸçeD„`Œ1 <ù§o"´™ˆv€Ö@ 0!ËrB–åD ˜Ðº'w±EÅaÃÐuå÷B&›Z̆¡‹¢8 Àòßy±hhUËFHY%åÇ8i+”X ­vvmÚ1/I’X]ç®UW^BWW¡«QäÖ¦p¸Æ])I’€/ñ«P™1«ÕÚ=ÿùãÓþCY¸ñ7Áq®œÑ`i¼†„Â/Ûm}æŠZ1›ÍüÐÐÐ(QlÖG+Ó­äõz©««‹¢SNŠÍz‰ˆH’¤øÀn·÷D—¿/ç(2 ŠL‚\.¹\®â]ÏP4ü倅â&èíí­ôûý}uõÍõéÐ=€qÛ†ð{2ùé24%Tø:Rðu¤JÖ¤g¢¶}—e9 ç˜Çãñ½›~û¨ÖnŠÏö”oÜÝ>Þ.Ýuu÷ âÙú¥gËESUUÕQ‡³±)~•Å>¡„Ÿëv‡Û)±2UUs†ah÷à–Z~H-綈Ÿíojæ2Û%•ˆ¬†ahÐ222ò$•JÅhŸH§Óɱ±±Ž0 € @€åÌÊpù åc @À<€¥¿¾’%î'a^IEND®B`‚OpenLP-2.4/resources/images/topic_add.png0000644000175000017500000000175712657640340017476 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs7\7\ËǤ¹tIMEÙ %ß¿îoIDAT8ËM’KLœUÅÏýß;ßǼ)Ó¡t B‹˜˜1…B#¦â£$.š˜¶Æ4Q¶Æ•ÆÄD“v¡,ŒMš˜.l]øH%1M¡¶¡LJÌ”ÄÓ*Z^•‡:03 ßãÞë¢%íYÅÉïœÅa-[á˜XÀ68fû 0ËÝ`ëÁ]‡Jâþç„IáQw\.TejåOoKý™Z˜^þ¤ûLwïG]¯ƒÏ&gpþê/ø¼LYÀ–*oõÞÎšÞø“á£þ2j¼‰¿vÝÝîÔ®~u멆SÞ¬'Ͱ̡³á³“—ºNío½€ÛüúM¿€Ö—žÁÚmg–±d¥Ÿ^i+-5œ‚3?¿ìYLã½pûZ+MöºR¥IŒpÐHÇðÔÑY¼ùáóùm’LÓPÉ‹c?×6<öʆe»5UuâdwÏÇuF¶F#$¸Pîj ~¿qŸñ@ÇÞy—G£Q9šNnmnîŒÅ+åöxLv¼¼¿À„×,bkCoæiÓÄbex»ë (îbeí.ÀUnÝÉCx‰Mß™T\°Ý TTÄ>ò‘rÀàœI)yiitG"‘ø!.Þ955Ý=22|Ò4MX–U`phþÀÀ§µQ$—ËkÓ0‡J"%Édò’”2$¥ÜÌË‹ôÿSÌzæ7¹ÝIEND®B`‚OpenLP-2.4/resources/images/song_export.png0000644000175000017500000000117612657640340020112 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ûIDAT8•’OkQÅï©8Íz]¤Ðe›’E‘â®í¶v×d•`?D ýCÁvB ²ö;èŠ(†Z t!³Ô,&㌣s»ˆcuH =p7ïqÎ=÷Þ£€GÀ.ÿ‡®ˆ ’Àîh4ª„"h­ÑZ£”Ú*€ËÁ€v»ÍÞÞÙlö 0Сü»ÝÕÕÃჃZ­…Báiô§ M"‘X;ÐZ“بE`š&;;;’ËåÞ•J¥' (Ž'“ "¨H@)Â0¤Óéàº.Žãà8ûûû†eYý£££{®ëæPœL§௃ÕÜ©Tjí,ÚE„^¯W+—Ë£dD¼Mà6b7A©›ÒšårI½^çúúzk„t:eYýããã‡ÀÛ$€Š;Ð7KÍçó(¥°mÛ¶I§Óø¾ÏÙÙÙ}y~rrb'£MF7ÆaãÍ0 Æã1žçqzzJ£Ñø^­V­ÏHŒ’išd2ÎÏÏÉf³R«Õ.¶r'ÄSèyJ)^¼zÉf³ üÜ\dÑu]ñ÷Ç€Dd%0›Ý)à8Ž ./åý§}à #r$ðÚÍBß÷%‚-‘Ét~-k¬:o‘E;v_lñò7½¬®€÷ƒÒ}Aù¯€â÷WÉáÃK®ŽÐG[ÖÛZѱßƶäÓ–Ô—¯çw7aTv²°zBNïP|¾gG¹\מ««ª¼¬Ô¾¸¸H$arr³É,–DuwàÔc Ü<É‘—DDtÿÚ+UG]®Ý= OWVlµçóy4M£P(`2™¨s×)vÔ¿bPÀÞÉ«%› ”²}P½ð$ÉlªªË«*Æš »v‘RUN§QçøùôÔÀÅWÖ?î†,6(!¥èMœú´e›ï+ÝM’@X1™Øü8î}ûÐ4 kñOö<<úŒÃÒ4ƒj8|mÌñÙkJ•ÙL¹^Éã¡©½º®.¶»\‹Eò±Ó˜ì{¨Ð’å‹o®’£dJD‚ÔwíÔužimÍÍMM‰¦irÚ­)¹zv¯,‡‰–8/ÅÜ IþÚ³q±É÷DŸEw¥Ú硳æÅ¢#‘Ëýd´ÙÐëõÓ??ÀV¹ÌÒBÌ8ÊFKÅgïøÛŽÔê€6À[ÖÈ#ºD"2??ÿc.—»}›³ÍÅbCË^AMþ‚šþ¥k×îŸw»Ÿ×ß—2Ó êJJŒýÑht@1”Q¬îÁlµqO¹•éßd—‚Öâ¬[örµ­í"‚ˆÐµŸ8~ahhèT,ûg E)\é’ä»L¡ÈìÙ&‰†dtttÖëõZ7) L¥ÓC¡P¨fff%“É Ôôc0Ú(±T‘+í"]r <<<Ür› ý[ÍÍ­ƒU"‚ßïoddD’ɤ,//KjúC‰ÍÉØØØ¹ÞÞÞŠ;<ůոÝ÷z<µ[¬Ör5›UãÁàläúõ¡â»ï4;®F{µ=¾š]ý.Ÿéëë»$"Úf>‡´ç¡R·cË­T"N¥Î} z½~K¡Pàö,V€% ó7±µ°ú[yIEND®B`‚OpenLP-2.4/resources/images/openlp-logo-16x16.png0000644000175000017500000000203112657640340020550 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ9Š1—™IDAT8ËU“klSe†ßu½ZÖŽumØÖ]0•ʆ7œ#QâCø! Ƙà-&*&¢A3]¸djŒA'æÙE¶‰2·‘mÍF*ÃuÝzÛùz¾sÎçÄ蓼?Ÿ÷ßCð‚Å =ý'`Ǿ¯*—Rr)[òk*5¤‹f#°GÏž»ú‡VÜ‘¾3‚ÿP[ÿ¢ãÃ÷ÿÞ|)âI&…Œœ£)(4 ENêv_””h¨¯ýÔøG,^p¶„]N7yóõA;×Q_íFd&FîÜ]×3Ð…¦R$q3eüÕÒòàÜô­_ >¾"gKغm¯Ãxv°+œÖ曈k…‘Ow‰fp¶w*[ÆÁç°YDôEpäø9pUSR`r MÁd$‰R_‘[|íЅʲ2ÿÛ9f+­R_íª~¸2Œù{qÔÕ” ¸¡Ãá[`Š ƒÈ!‰º¦d1¦t‹¾@Sã”lÙys:N’Ë›n§¡ ä®4£åûNT•®AÓö-¸q3 *§! r:M8×¿>Vå¯8˜Vâ2ÅØí9LNÍ:Å3[ס.°áH W® ¢¦¢?w]ÃÑÏŽC"*òs¦qƒÆ9VÙ³PèÊB Ä‹¹±$CGÿ8ÞùôjÊ ñÄæ‡™šAã!äXM8ôÑ1èš*’Æý?rË?×UÙ‚Œ<›€§ËÏj;¼«È’ €ÈDçïrB×5¼õþá“äãæîšMkˆ @#š®BÓ¨c T¦À(‰0gK°šP5’(¢tm>ïìÜEˆÝ=±¨Ã‘ãäÐÀ‰«X¦Ñ…%ÌÎÇ0ƒ%[‚ÝjDA¾£ãa4Ÿh¥.W^!€ç^xwñîÓ5…—¸MÄ_”ƒõ>¬¦,¬°›_ÄÉÓçqµ·Ñè49 iqSGkY¿q7Æ®ŸÁ—ßô¾òØ#›Zì6:€‘ÉY Mâr÷uŒŒ†At ¥Âå°}2Ú÷Ý¡§^úL{^>¨6t¶µÙ–Sq¢*÷Cb÷ÇžÉøÜÎ==—¾h{àü{Ú¶½—OÀQ´ÅRõðŽÍ‚@žÎPêWY$\™ rò§2o^o[ë uûÑu±ð7ŽÎ«+íxIEND®B`‚OpenLP-2.4/resources/images/plugin_songs.png0000644000175000017500000000113712657640340020247 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÜIDAT8¥SMkQ=÷¥óÁdf`ZZKý(–fQ±ÅV‚tÄeÝúЏpéJAW. ‚àJ²­®„†"ˆFâGÁØB•h(Ñ6édÒ$óõÞsejí4(Þݽçpî¹ïqHJ‰ÿ©!ÓÔôÔÛ1Ën(ÉåH‡‰™³Ó£ócãCóΈuÞ±ìSC¶£ ¦¼zQ~³²XÈë`öÚøâ•K¹%~¡ãè´||©yXoÕP©~kô=A±¬¾}‡Fè¢7á†M.DøÈ8m)mæõð)P6¿W^ûjT€†÷Pñm|’÷e<ùäÄe¯Ô¹ÓWÀ¶BµP/v‡·ÿÄLÒ0N} ¦3"P¦¥L¦§âÆ’HœKv „8Œ(?—Èj†]pÁö¢}t¢n¯O<¡´Á¥84ËíY]C¦¾¡N†ñÁÞDnÐB,â^Ÿy@×G·çªé ”T#|èöµ#æò4ÌÎáÞ~ÓÁFâÚú…»È–¿–,c–ÁÃKO7Ô·ñtaæj¶"aI×ecúÞôuÛf-2 ›6ü\Æ]_£ýÁC̾~þ|ý²Ýfÿ~Òžâ'âˆÒC&J a«¦³£¶¸xú$¾ïÓóò5ši"Tô‰ö`JˆƒïbŒ6“è²AÛ×ÚƒO ¸–z ~YJÁŒMí¸ËÑÃRÎD‹HÞ˜ŒÙK"S!Œ*ÂS¾„¥ÁÇ5Y;á„pã&F’WJrÀWIRIbñ8ºaP÷<Ê&WʵS ðnA$‡ê'JÄ-K f÷¯Tª*—ÏDp£àê/²*FU@§IEND®B`‚OpenLP-2.4/resources/images/projector_error.png0000644000175000017500000001032612657640340020760 0ustar raoulraoul‰PNG  IHDR@@ªiqÞ pHYs  šœtIMEÞ:8ïÏuIDATxÚíZypÕþÞ{=÷hF3ºFÉ’,ÉX²e°|Áv°1`®,`X²æZH»ÙÍ.á µ»•²†,•JRË Á“˜#Œ ĬÁ…mlŒ-ù”/ÝçÜ3}¿ýcfäVk$dÂ’Õ¯jª{ºßL÷÷½ïw½n`Â&lÂ&lÂ&lÂ&ìÿ©‘oâ¢[nÿ[ë`$”'K’5™ˆËn&¯}÷ƒÔ_?-páàÙ©“\±Ph‘"Šç3‹¥)Ø4wza}c¹,¦ Åb’IHÉ$ÄT²$B’¤]²$­÷äå­¹{Çç‰o ?)òà_ú¢€ÕÅž+ÄDür +tE0ÐÌ…ˆÖ×£lîyP%r")•D*CD*•‚˜Jà < Žd´4Ô˜ˆR”Há{‘_U»Ç @ ”10J  ®k ‘ðàCù¼=›ÃÑ?›R…÷ÂnuY±[ÑÐdc³¦Aß"*êÝ:çÄ0ÃC>n>fØšQD×Þ¿Œrøª§€ „¤‰ 4½ hÊŠ ó\7Z¬–÷Þ묮 bs(öõÅ€[Ý6<—ð=;[+«Ú_³ c4#kŠS¾Î2~.d¶Ùã‚é<3üVȪ"ë2°¸Ý.YP9‡˜JgŠT2‰”˜‚(¦EpJžþññî;¾VÌqX«&ëÚqU×çdÙ"™SPƒa¶3mŒ &70Ž«Êˆ´ìƒÍå„»¼ Œë(cŒPPB@)WÕY‹Ü¶/ó{[7‡ã{¯.Ŧpü«#`•Ó2/*Éû8çö!  4ë÷ÀHùÉ2à c™1@R@êê€Øqùµõ,V0B 00JA)å`Š"ÿÕâ<ûUN»sÃ;‘èc•ÅØIœ9·yl˜m³6F%é3ÎOù÷pãw£Lû4Çwš!„æP‰1U2”\Û¿vŸ®@Œó!%¤³Eš èz )&~¸8Ï‘ÿ@ûÀÆïûžûøÓÓ'`•Ó‚éÅÅÖ#¡ãœƒg˜ˆ ÄtœÆ2BÎàh’½qŸ É’ê8 e Þš³Àƒ@)eM¥ º¦»Èe¹·­¥¥ùýhòàcå~lЦÆOÀE‡?™X«êúÙF7 02lÆÍª0íH&pòdñƒûà* À^Pœ&'›!h&>¤ïÓ¢Èâõº-˽nïÛ£ñqp§ß]¥—ŒrÏ)}Ó¬cÉ‘‘C0ƒ7í›SåNODá©®*š’vJ)(!çå‘DôžeyvÇû yóÕÅØNŒMÀ4‡ãïEQºˆ’á3nvjRÀˆ `v ãl›bAvŸ™`¹\é©Ç"HÙgYlÞüŒJ2ñ€ô¾ª),rЦ:ölŠK‡×½Ø“r°²¦ÂåUš"Ãì#Ô@rEŒ’©üª¡¦À9¬xÊf®#u´T“᪬INd¸K¤ë¶”œºq©Ó²drqÉ[ëzCÉœ¼ß;xôòI¥Áhl68UúÆ›¦f¢LĘӢ±l¦¦ ¦ÀhìÌ.AX( E‘:qîŠÉ°8]`„¦•@i¦¿À[(Rª2îõßûD]ð÷¿nëíQ þC°Ovô㦪rž8Ùæ–¾qFFS3ø­±J¤,äTuh!§Î $sÎpÜb¨.ŒŒÙëk*à˜:ö)¢QˆbºzŒ‡B°V×ÀíÏGa¤ÎæÏÐÉlÓìïnµ®/~¸H…È—I˜Œ¥-†;ÙÖØb %KD–#X+^J †sÊ(õu€Ë ÷¬…à®<8gœ ¡í0èÖM|ë‰v}³«˜l·ºŸki=z{«‹ÍéÚ»Gf §ÚDÅÒGŒÕ Òíþ°­žéuÃotOÑP~Š`Ÿr=ó{NÎ ÷ÁMn$ysáj˜¡ý8?ü öޝúÊ(©¯bÁ¯iO]fex{ÿáÜ4JÀ-–þ.M£Å%:;q‚2¼{"&éäJ—Cç9 gn˜g@“ÌgI!<r"(Òàõ¬ª€ ¢oæù¾ó*˜ø¯»ö² (nÀÿù usE=i;o9+t:ä²,C’$lÙ²e‡ïZº{p^8¹¢;5F–Ëx¬½“P62ê“ÑÒŸ‘S<;‹ÙÙ7ü‡n˜uœúN ¤0ñÊZ¼]w.Ú§ÎÂ5?AÃÊ›áq;~õE¾^·èVM‡ki“ïv¡VÓ Š"DQç||½À"·[“Ò–jM½KËÏwwqð³('²$åŽú9âƒsEM+HÙ¹ê=σ ÏA~ëüÄ#¢ÞçBxÝKú+­mÚ³5M$5c.+­¬¤y.WÚítªª}4MCyUUÛ;¡ã»%±p©Ý¯¨LÙ(9È}˜$'µŠ®¦*ʈ)WP¤¹Údc·g‚yk |†h!•ÚË.+/=¯¿Êßô•é;ªHY „ú}>PJ3JãP²,§Y3*e ¡ž£¿Øµ¯fÌvø°ªc00-žˆÇüùËú¨@«Ý.] … %¹£¾9P’»N0K¹ºCs‰L Ë@à‚…˜4« ‘÷ÞâoÅ$íý%WSï¼óiqa!Ñ4 ¡P6› Œ±¡Ù×4m˜Rúµ]‡ö¬ ¥^÷ªð< û8\wÖ|ULñ+UáÎ.BÉø¥ož}ãXcÈLiÎB¢EÓêQU] ýãMüm›Og7ßEçÌKçèëëÃîÝ»ÑÕÕMÓàr¹àóù ëúÄd«ïD‰,Öö[­7îúr–ºì8G×mΰZ´º$Q¿`°—&âñ3’þh$™ &ªîâ"ÔNo„çÀnlJ©ÚŽ™ É#?NÅň'hnnÆöíÛá÷  ¨ñx­­G &#\ .˸äÐ.œêZÞÔ.n÷’ØQEÅmª®öªò'½‚õ&Ùá"6»MÏ‹ÇH¶TFð¹ÊäH‚±y¢Õsæb ±³údq×]Ìžáy`µÙÒ³ív£qút8xÏ>ó ö~ñ&×Ö”B“å!uKìÁüÞ“77uH¿;ã#ËÜŽ_µ‚w&àb)¦+í”Ñ/ŠÌ¬ÁŒKeÙq*˜^Z+:°_¹´VTÖ•¥¥X½z5\n7,ŒÁbµBÓ4¬yb ^{ý5ÄãQt¶u#£¶®]º‚®B‘e$5 >ߊÙG¾?³Syꌟ ,õ¸°)–|{*ô›T¯×wDÕqŽ•BN¦ˆ±ufcHßè÷Æøpø ÐP_‡À±þšD´×¦4ÑüêÉÌewàæ[nÛ傪(HÄãG¢øÑý÷ qÉ4y@é¤477CŒËM³ç€k*D¾|Çf2£ûĪ™òó£aÆCÀæh+œ6øà ¿°;ÚXA!ùHSô I"ŠbÎV˜Œ†•Ì„ ¢þ,TGz°­õ°º¾b-* “œN0ÆP[S1 O 74ˆß¾úÔ]Z‰?|ñ:vo݉|ø ØÓZQQÁÁA¸]NýÚ~G "¡å3;¤caÆëHJо¼¿÷ö6·û釋v1¢û;Úh. fRŒþ ð”—¡ÎiCòØíÑÂ*žj˜!”y½a(JKÑÓÝc©úÂa|°é}ìwnÃÎ79.5\šD HEd@¾ß%4¨Þøá«Š¤ñÙsÚ’-_†‹žî:ú»²öLiWÇ»„Rlcvb/-åَǼ^8¢•&µZQ3µñ^l©×Ì¢´fŠà÷x† p:èïëC{{;öîÝ‹O·†='¶#ÒGo:öþO –{1´”ŽD(­BÁåÁ?m{ãØ¶Ò©EUmát ¸ÄãÄyù–Ë6ô÷†cżw¹C¿Ê—Oâ‘ð˜Òç:à«(GQÐyòˆvA5ìR¡Ìå‚ ÃjuB$IBOONž<‰˜(£yÏn\µäjØl6è:ǼÅsÆñÂS/§Kø%K1C—^™Ý©Üð{÷q\Ð>¾g§MÀ;Ñ$ÊÐ8ït:whnÝI}ÚÌT’ɲœSúÌjEUyŠ»OðµÖ|mWå !àõÂbµŽzÐà YF8FÙä)ˆ†ÃHJIø | „bËÖ?¢ùóýèÄ‚ pÝu+[îþþí7Ü{õøîú7Çç´]žÖ€çtì¬ííþ©ªi8Âì,(Ó²R²à¹ä—`¦ßPg›z·’®¨J¼^P6z"„ ‰ ¯¿²¢Àëq£»» }èéêA¨?Œö£]ر}'î¸ã¬_ÿúà`oÓêÿxø¯ä ‘eùy{O'M×·pQ··Qh‚U@U° ÅýmüEêQ÷”Y =y°X,éEKÆ Búé¯iËC{[b±|~?–^ºÿúÀ}°Z­(//G4E?V^ž}æéŽOwì˜j,ñ… .8íû§ ø•ùÌ“b‹|¡n·Ùð’.,צWùÜ"/bÝmê=öRýpI…ÅïvR Î9›wÎ9Ê+*EtwvÂ"¸é–Û@(E{g'Š¥øÍýOþ|ÍZ·Û]>©¢âŒÀeïÝé®ù¸¤róxK& ‡5!Dw8©Ïrc͸ykTH(E™Ë©^<¾àšÚ»Õ¦WN*_àßj&OÞ×ÜÒ‚i ßü[bßóçý÷gÁªk€¤R©!ÐÆÏx `”V+òĤzá¡]”î“Ûú©å®Ëz•ϳ×ûl×nÌjšù'ß7ý*ÀßXäÁ˃±•µƒ½ýÚ(KOã1@a„ûÔïnߌ;þøúfg,rö¼~ÌלyŸÇ~àÏ( æ²µ}QüÀç@Ñ@Ï‚°Ýy ›œÞ»W*¡pjª:§£Uhì>¦ûdñ—‡òž;ˆÞ7\iB¯8>øíxQò‡>Ç6#c¸@°ÀÉuµ1ÜCû;è¤XdKÔnýå•Ýò:x+èÄåÉoß›¢p¿Ï¾e‹¿ìü‡‹YY: QAe‚”zC,$ÔÆPžL|”²k·W¼ðXË1ù•2®ïü³¼ úõðEnü¼/Ž_»ñHÔb½+aµåƒ2xtebò˜|SÔjcUŸ¸-/Àƒíø‹µ‡Ë¼Ž÷²‚›ë&†‹l˜° ›° ›° ›° ›°oØþ³Ú“!t}ÝGIEND®B`‚OpenLP-2.4/resources/images/projector_connectors.png0000644000175000017500000002122512657640340022004 0ustar raoulraoul‰PNG  IHDRdK†"·bKGDÿÿÿ ½§“ pHYs  šœtIMEÞ.NÀ‘ IDATxÚíwœ]e™ø¿Ï{ι}j¦e’ÉdÒ !!ÔJ¨«‚",Equ± "¨ .®«¸º à‚e~,à.(d -ÒI$!!e’™”éõÞ¹÷žòì÷Lr Rf¢»þÞ|Îçæž9åyß§·÷ZìýÀàZàvàõð\xÞ ¿ pP´º›çÎfmáwSô¾Ñ8þÏ ˆsÍÀW€C€DÑdí)•À*`aø}wã8àA ^k"2þbböáž ¤ô+ÃÅ^l2EõÃãÊð³5¼gw ‘ ¹È ßñW9Ì^Š*.ìtàdà÷@3Ðþ½xÑk«€{B„ïñ>/äŠó€dø¬È.Ü2ü~ë/|]÷™­½|Éð¢ÿ'°¸ X¸EȾæ@)ð5 3<§ïËdà P—l υȾßü/à }Fˆ½âê`&ð-`](jŠ€Ã3€›Eܱ;¤t÷G'—…¢î `ˆ%ÀKÀUÙ-šGsè9 ÷¾ÃÊz÷þqºç"kØj*>¬–}ÃÏ b…‹ö…P<rO±îÙÙÔ’-åY›Úr‹Šc…ÈY–Å"‡š9ñÏ%rŠªÊ$gnâR}Á9ŒOî©xÞÕP°öKÁ˽ g¥ÎUËÑE³måGÏÁÊ ô:FóªÖ!º\ô|"Ú„£4$>Rþ`ä†ä¨žMüš[¯uP.ÖEŽ*¶Èžsˆ"äœP|èò»ˆ)/Ô-gß.P2Vxÿ{HxíXū͂Š,ßÏ”ª¸9Ï×'K˜£Ök¿zÈýMÏÛä=M‘¸3¡Hl Êì!|ï8.¼ë¦ìø—ðûÒr;¦¹Q-pÎ=ÍÅ^¥òò• ÷X•Ÿ:G§?†¬½»dÝÙàb :&Œ[Ä{Ã!UÀ¡iúгË5õÀû€›Bîù}È{:YŠ­›” «àÓN€—̓¯fÈ5¶×c9¬16[Ä fo¿Î­mÝS¡>œþ_÷WÝùщrÌRÌÓ'`77âRû†ð¡Ç¢œ°Õ“ë¦vÿàÊkž]~ÕÍ]Ÿùò§o;Ž’^?•÷Gïð_aìQnï˜Ê…‹úµ‡zaØ ÒP”ý ¤<'¼¦¹Hw{¨Ÿ °Vñ·R¯Ð+&pm‡6/¡K LÌ5NÎU¢ó»$æ ‡­‡vkEáñ9àÈ“1Nÿß|ëUæë–kf¯S™ô·Çèá¯ÜeÝÿïW»×|óú€7sÓxô‘ïX ñƒ™!Ž:kÑϾøcUWÕóR£RÞ !¦Èý:puèAÿx¹H/äCd\:ùy›tˆÔ=ð°2N$xÀËk•Œƒ`ÐŽèSÕµ´oÚn ± ž}4,ù>±´ëFJÃWîÖ:L†\ì†znDœÃ©]aÝ«›¬y`=·-ʵ߹+غ¸5º,ý¾£ùÄÍg‘ÏžJIm-Q/ÎàØÉ8âÎé[¶b5¬YÅ©4²)¸žé;‰,)¢šjà#À'€öÐo }Šb¥x'ðÐ ®VÏîBõ{5>ùÉ Kh¼I0O)AND“Sg²Dõ‚ÈB¤ÜGªÞÀªW&ÝMÉÙˆ¼«îUá<ÚBqkF!½+šý)ßú¤Ë%dxO±xÝâS—•<øïlÜôJªÏ¦zÒ"åeD‚àRZ•㇜ûîÜÚãc—Ñ#}”ì0 ª;;–ZܹѰA-$úUÄùÄ*EL#ƒÄ¬ÇyLaza±%þ£6!rH{øiŠ(Ÿ½àíéÁpTf:—þè}n³ôq¦Ñ×ëâû·£‘Ÿ’:ñ::_x–%‹;f¾ò3KSd6OÊÁÜ`Mc•­(XTÌûãÀ C„d‘$Ø/Ni*?<žúæçͬzM±©ôsÄË>K¬©”˜´‰X ã„>ftd˜~äwÒ73è]óé`š¾™ðæf£R )Au'¥ÜÔbqLCÀ±¥‘w?: ü¨…í)%ÇLê=2³öc—ùÜvU ý›ÿ ??Õ!˜ 'îžÐC/¿cO) uÕ°ˆd—ˆ€tÎë¯ãÃX™ÆÔbÐêåÞH'/Í ð«”Á“¼Jðá%Û¦×uÙZdŠï³'ãÝL2>iYÒ]÷æy¤Ê+Êk¯¥¤*‰I6`§* èë²ð<ÁízÖúé?èÉ3›z‚‰›Î°ç½¶Ì}eî|_@í"`”/qøÊã øù“Áž:l‰ø@•ß<ð¾îÜ£÷rÍï" n:ug!²ËŽkàEüe¡HÉà]"bØ,FF0,:·m#^PÖm ßä£ý‚-`\ðAË æuEžÑŽŠ †ÚÛwÜ¿_neÓ¦5®óÒW™7i éŠ:e€l†ÁËoC=×+£¢$A΃M}›àa¿<פ*øÑš¬òÏmm_/WñSî6ØâGyÂvÉ~YÑ…ˆbØè1)óLÏ÷‰óÜ,'È^a Q_E=1ÕˆôkC¢û ®Þ+Þ&¡‘A÷9ÀÜžN ¦²_ â@/(pÉ ’ ð'ÉTŠõMMHBö);¸³¥a˧x³çš{dL?‘d†ºÒ$VªŸ˜ïQU™§¤$ ‘ÊÐÑæ3¶ú·@vñI?áîÅZû,þ¥u÷+ŸBø:jŸ~ç>¯Âÿ"éóÄãFÈúºƒ"³@%–|Ó™]Þ]q«Ö÷ÇÄ:›CJb¬Kç5Ù—wã>²6t´þ¸ÎàžêÞ!>Þsµ‘ü×Ö%J¯ŸPM턳µ!5–TÉ1T¥KÈkw´,z]öЉí¹å3oÇló«ÃŒ[I¯šªýìßuO­,H:œu0SËS4ÌiàW“jÁ³!ð@»ù7jJ×qÝ4èè•CTI¿º•ÌkâÆH”±h }”QIþ¨ÂmÏbÎ>+®HÒs¨OØTÅ%9k©Æû츬))Óñ¨ß%è5ŠQü!è_3äOÚo‚öð›xø±/,ó‚ë¾ÚÁ?~í .̬Ê*™¶cbW=™NÒnžžÎ>ÆUßqÿ%Ï-ÃTØhkŸí/KæU…Q•Se—FW?ðKÎç‡.¯(aÖññrGGÞúßL Á+6KÁ·DšËcZ_g[S×½ÞÎ\¯œ»^ckèÙûAuï:^Èa/ýAÊÿâW›±§ÙÔä\¶ý½Ÿ¬_éJÄ·®™=Ãmi[ÍüL§=®OµÁÅ_¦ 6ïÂqªº_z-Ååe¡Ã9êµUwpâň—ÁÜËøâ©¯½·,¯Ûú‡¦_¾C¾‚í ö\«ßc‹-­]|h[7 ûÓL?ãî@iþx8Ô#¢à³Zíè<¹\á‡YL6O挿ãÛ,ºm‡ #¤Ðß26ý–`ÀU>…Êb¾ôD;÷½ßÀzßëé¡ ¦ËgLËöUÔæÑ&S¡¿ ½ó·(oÕ16¶ÿXdõE€&`:32[¿Û{íÒ3¼oæ—KUǹþÿÐ}i…ï¶4u|´âQm4MàojÊX7¥Ž%'ÌM±ß!lmñµ°N:†Ô™¾pg^y_j!~ÞMDЍ\ö‘Cv{|÷»XxHŽ`• PŧSRqüt5§: sî˜N*Mpa‘JZŠà7#˜S§Œ·„òŸûõ"»ÿšD¬çJÜSòÚ—‰ý…ë.¼Î솱ȃ߲­³O¡rÑ;¸‰‹¾ó f©¾s4øŸŽÚ¯ôã¨b©bižÈ«‰Üµu¿å²ÙÝ!";ÿÏIÎ5I:Í$ô-;øPeI*7r…TRùnÏõ"E#[Ž~Þ:_?”8\¿RR¥=E-ÝÞ·Qe$‚ýSyS0¬ÚfÚ\ô‚/2´½m‡‰¹Sl¸Ø¾AîZQÜ6û MÜÔ¬×M¿]*¤Z9³]GÀrÙÐ ã˜䢋à¼óâÄ}9²BÅë±è_‚.k…ø'\ ÿhaz|n}Q÷ÀœñáYjæ-ƒ×çl·!FÝì7ŸÙÐ:QeÙáïþîc…NÀþÏ{±T‘¯^Jdå8e;¨iWkÇRk†Þmj´Çš¬-¢þÐì©bÂÃVÅV7jôþóEQáwjØ> <ùS9pˆêN´cô®X$·ÂRT”GŒþ{\GÐ%(V„! ¦Ô Ï]ó…Œ=ÿp´a±Cñ-ÃÉÄ=E1ñvŠx7“QþOÕî9B†ý4äTöAUí5ûäò˜þ!ä¢ô‹Ê4¹ÞLoÿÈ{çÿ†ç8¶˜@ÛÚççíš1ŒP(åt(1 §q‡=e7|ŸLs‡w2#^É|¯’37ü˜HíØiQoãXÅ0»¤d)„uv„jÜ]`Í1ìk%Vl&wÅ'ˆt´áC¤Îú7ÒŸÃT²³î`xM­0_´Çc …âèá䢪HÀ`Öu·Pú…«ì¨ÅØù¥ÌœXÊ)‰P†Ú _>ba, w§„Ï="L_| œä¥@Í2iÙY`ø÷eẻF9¬KçÌU3¯óÃëþ#„ïo÷–Còª ©Ð£P0-ÀQÀ3?ù>GµmñŽS³ÐìÒZVQ‰(ƒaFneèœI_¨ªŸ<~zÀ}a!róÙÀ-ØBêÉv„›Òic¸t›aî=ÖœrìÁ!õSHÞÉžbºX§lΤP-8x•BéLГ8¹aŒÜÞæô=\/¦¹)qÃÊÁ¿9êÙœôpî#A¡br8-ÐVHé0>üÛaa˜ç@”™ÃthàóOc'ЗÍxž©âô vLñ§ÛT=!èÁ‚]•â ¥>™JnÅÞ $†µß PØ"fpÒÈúÛ˜÷¢C$ª_$7Ø6¡fè©\€7˜ajˆŒžQ×Íaþã!œJY3Š€ž&…ñ¥…¸*­·ÜJdhˆ¾|VÁ¶bŒ[‘§Ýge@0A»K_Ÿâ&Á[··/Šì¿2Eç#¿YLô¢IÌNÜh×OUÛ‰ž{øQ"_ü,Ñð{„ó!R¤JŠž_ê–h‘ÂŒ Qµc]ÖwùÑD>ö1l˜iâgö|~1Ì´aŒ“,8ß‚ñhˆÀûG’W´Ò<¯c‡½sxT«e‹Výz!ÅkwNô¾9µ{AÚ"¯¢<(ÊÅ¢‘ …ÊM›¿Bd¼í{Á¢ÐNñaG6F ;âºF'm”)–¾ÿ\ƒªõ–r¢Ñ‹ þÅ#èm1¶·2¢ž:à‰j€c(ñqòAèŒí•us¿"÷(É JjPIª×ýµ–*ÚQeëÄ¢JD•ˆÎÙÈèX´»æ2L‘11Ü/¹7/Š\†w:þ2©êä±Ê‘¨0|¬ ©©¹m»uÞ`£j5ýJÍ×õëÒâM4ƒuƒ2ÂHØb4p`CB6E¬[k…ÀD{r‰à‘ÆdpyÐ`e>Ji1­ßhÎqPÕ#PìX#½¦þ…:ædh­-¸lhJ79¨£>ì?‹Œm ¤£‹ì£×seË…~¾úMi=¡ÆÓù‰UÙxaÑÆt‹txºu²ýÀÎܸŒ€(Eâ%N¡`!†;}°)À¿†È®4±ØY°W,âŠ[‚ÿurÿ­Ÿ¤dÕsòMW®Ù4ãùHãéŸ1yÛKÆÚ}Î=Ìïbàw±íÉ¥Ö«Ñ&¿»m¥š¼BȰþ¨ Íaßæ³!×tßž(zß;/‹K[÷ !#Â!J¡÷roƇ?õK5KåÓ'^äœõéß–´Äû§·&™Û³™c]¦NŸDـǦ•ˈ/OùZ;–GÛ6ð$ïÝ«¸712Bäö„á—Hƒº‹BsO_ˆ¤ZvÖ·‡÷ W±8á}ƒ#ÛˆqHQb&$‘ƒáÛ\.ƒ¼®wñ¦•bÈÌdª×ÇvIýd±NûÌLfü«‘ïâãÕåÌò '°¹*ÂdíÇoÝÄ@gš{Ÿß–¼ó©Yn{ñê“2E‹9R2}æ’˜E}e”ñn@"ïÓ(‚›´Yé+ñÉ%¬JØx^€d}ìêÙÎ,±|€©O™˜"ÎDrãRhc#jݸ£RÿÏ£CäíWw1%@Þ ³æ¸ì¨YreåG§Ú2÷òº!’@'$X»íZŸsúMô«¯›":½ÍÎL·ŸúB?;‹ð„‘͹(0Xeû˜(ñî1[h‰Xô»>•)V%m$b°êã….±ö,ÑŠAÇñ~±„ '‡'Ôê#H:ØiwGçÀŸA©7~ÔœJ(_ËÎV.TøU¢u'€Ö€ŽA™Œ—IÆ´þ•y^Åâçþ»÷Ÿ'Š©ÙØ‘ ßÉÔÛÇ_³–6w[¬·çOµÌÝ<©?ÅF¶‡¡ö5£`m—ÌcàùVÚÝ“ñ©ФÃö´K‚ŠéíYb1 ?fXmHÒŸñ°Wõ‘Ø’Áq š² ò>vn¨x„,²~€¨| CE¢Kvç׌¬Ù[?㺶܌ý=øþà׃µHòb%ßC,cÄõâÞÆÊt¶.Bbn'ˆa:¡FZSƒŸõOk*½AyÈz°®+ûÚ M¤_ÝØM!QÖÊÈ%¢†½ö™1‹Øacè­O0XÇ}ºÚÞ<Õ¥ºšRt[‚´‡I9ø+ãb%mü ì˜0 ŽAþs#CºSæŠÂKÞ»&#y´J«géþë‘^ [Œ½‘A_Á(BÅS×õ,{rŸ‰ߎŸ6Æks-¯ÃË|DÆêÊ—lÜ'i×I{5ëׄÛÂÈfmÀŠYÌš˜ÂŽYdÜÛüŒ-xc\z#† ^8|K %GlvÙ­éB¤«ˆ#SKÉ=¾ KA6~Äd<Ì– ež¿ìƒ¬›˜"h\@päÇ vlÖ"#­sÀ(8A¡ÂW Wî,Ð'AÇ‚l£ÖW³ˆÛ¸G”'eˆÅ&ÊbÍ3UòˆŒçd{^i5žõKÌVÎ<ïÎÄg§y=’1€S¡jL”ÉyŸ”-d"#øFÜ^†¦B§ Æ€N‡ÜˆæëI:à{–eÊòUqÜíCD®!ýÐfÆlJ31ïSé)e*¤Ž™È=|…Îÿ=éïðdxN":bòØyJÀ›K‚ì VÔ/Dƒ:]_ž:ò‹<}-œõSåÉ«DĦªüyfM®±.ùþygàq:¸ÿ1äìS–º€\ûmˆÆ°®þ2Ú æNQF)®Æç|RªØ¾ ÀRã2Ž!'qb›„šI1ºè³q¦¼dýýy¤*†Ÿq1̓DŸm§®+Ǹ%ÛX(å€1¼@JÀIçph@Ë2o™‡Ž¬R?òÃüÏÁ]Êág –įÕâçÿnqú™Êå+ Ç®\øŒrÎÁ ­”o] ¿Xc››ÿ0hƽ/ µ =N¿@WÐxä¿1×k&Ü>ja cU½F°€2‘BÚWb¨eð¬XAI´Û”Í«¢Û6Ș8¼Ù…óF]9ê2ãòS|¥ðŒÐé¶:†Î—Z†nCA«Œ‹¦Rϫᨕ³á…Yä)·…/mEä]©yŠª´dZg3ÔÍØsp·\û“¨õÍV zÒ+N$“/­ÊdÏ>Ǻåæ[zŒdSéðˆ”G¨ªOPß—§ÖSŽQKÈ•'éÙd§VÒeÝØKYs/s29|e¬¯ŒŒmXeIa#χ7ò%yyÊ] ‡§¦ÕsÏÒï±íuEúþ¨èT ãgÌ¡sËÕ`³cÚ«1 ‚ˆÁŠmÂvÚ‰UmET0¶*¥­uY~V—– ÊÀQYГãKFÙSA¬&Fí¦4ui:? åzìÒY?À /Çœ¼Ï @Ü"´yy/ –óu| $m¡ÃWêJ¢Ü®`g=&¸\NS˜¬q@-Cˆˆ”΢oÐA_{ æ7z~ÈðŽ;³(¯•ÕX‘ARc:ñ´߭ƶ7'Æ”½ž^ÿô›"5îÕcj?êbï;§^ï;w'g¼ºÒ[ØØ?.×GPº2±e(;ƒe‹Nÿê¾×Üó¹‡$)…ɇ6,/-%V^A´®šÑL¯ñOS¡:êÐæÁô´òŠïq¾Â$ À2´ ¸&`b`Œ!Ú°9jx ãñ‡\ÀëE~H0Z~ˆÙônè¡&pb3°œ3P-òWK¾ˆ†|æ$ÑCS=îæ³¢=Wæ¤åVvU[ƒU~Ô€Ív¼Á¾¶%~³ßÄïÖ¼Ì e™ƒìÜ"j䯛·Ã”ƒˆ=™ŠÔ鱊ŒsÑq6^]ÜÈ›Yãä ³S1žËzšöiq}.ؤ0[„6U*Œ’a“-¬u Ëâ«£ý]96ô»ôP(@ÔÑÌJQ~ÁEKžüÐRDžaÎ%¬x.ýÝ'€ŽÇ²Ö0iü7¬n.™ZÂÑ•ƒÕL¤´A*ò¥5–·y½Z~§Ûж®»tÅËýV –zé¯ŽŠ½õᯠÙ+ àͦfh-½"i¼%Õ1Ð3<ï$¥ÌR6¸%Mô´a‰ehp†µ ³*X·¬‹~—t—ëϪ¾µ›güñ¶µíùV`ÒP‘™|ÃéÚM0ÅwH—9Léz–)¡ºels‡sçóýM÷§/?iíòknéu8CåÚÇzù"ÇÇV’®l'_¥dÇû†hÎò'©P)61…²œ‹úEè1Bma»-t'6‰Òqt5]YúîÚ¸#u<ªò¶ñø ʉKd×Ö*‹Ö'ž¾³F_øÙÇUû³·^0ÃÎYLœ:ŽÌ¤Ãè ”ÔØ.zû_vËýÕk+O;s­³üc ÉmÞu”ÒÄ/¸1{ßè[Jƒäœ>‚ñ(¨EI V@ÖÀZ10d ­Q¡ÕŠÐ^êÐYe°,B~a 鳿“»þ¹wGƨ#äÄ%ÂF6RMµü†ŸËuÜhêü¿«Ýj¿ô­ë%‡?¾ªdòíïŸÂ¯6½HùÆ»¸`Â|8#¨/§=ÝMîõSG<· ©^ëe6®ÜC“áXΡÉÝLz¨to^4æ U–Áµ-ƒ5”'i`(jØZbhMÊ-2‰ kcäÊÉ ï¿Ám^‹59µ{bMï÷Ýž]¼˜2hE4ÜèF}úçrÑŠ­²ð^[O¼­—eÏf¼Ûn °¾Ì ?†O•–N¦$8–IþxîÓ\!{•ÿÿsoj¯ïô={Ñ/üoLûI0ï‚'HÔbŸrîrnëº.òÜë^qÉê.É ŠŽáM£Ý÷s\PAi0ïÆûÁ:†$†å¿L§Ž$%ï‰Ã»» ÷‘ 'óí"?\"ãírÍ®\¡Eç Hp¦jlêPÂÄâ6ËMÐwëû½Y«¿œ·dÁ0gÿƒ0r¥Aï¢/.®°ï}Ìw¾Ç—½+¸Ö)ÇÖr‰?H³9(8”³¥ wæ .z …Ì j”&…ˆQغ(Þ{ …Œ¢gWþYÕ™[lT Ǩ *5‹P !B¡Â°‚=¯ÏÉ$Vø ð7a4âˆމvË®Ü_ÉcöQÌ`ZÀà| ?{” ‘saø™£Ð§„Žž‡×Í •f%0¦$qIýÔ˜UÇ3â5ΰý`I¤fÆ¿Y3Q&‡÷^"צ *›×kIDATa­¤Ðò7v°@Sxôí¯åjï#‡øáBŒ¡PÚéR؆9kCàÙÙó7‚_^jŠðÁ>‡å«*~o÷÷žßhiߨÍÏĦԑîÞž ûP³Åÿýµ''eÕ™ùG(T–†!”Ï„1³ŸPø}ˆÑ]F ZC„<,bg'ð~›äûÂ!nˆ”ÀÒP„8º`kBjw(´W/bgGn …ß™rN§Ý›XöÛ'Ä2/GlÖàM®' t;l‡Î*O¹m{GC("½€ŒaE^E¡EO}J†wWQ5 Š*å¬*¢øš§£ŸñB;…³ üp d %ä9Pƒªº ªæo3SŠð—M¸˜2÷ðDG‚¾b°&$Í„ë<¡n­ßº¸®Ë÷Ã3¼Ä!ùe‚¡_¢‹)é(æâ&%ŠSÒ$ÆP ’|‚¿$î777üxñ+ó|Læ{šßÎFüñgÊ$ž’&…ªÂÀ²MòBàfZë[ʲä÷³k^Ƽ»PQëŠiYóòÒ •¦Õ¥PN˲N†„eyo¢RŠÎÂ{¸o"«FÖ9cSáÎ *ÙÄiµ¨ëÓ41M“nk¥Ô- MÓhyy9è÷û´Z-®M×ÅÓåƒÃ0(Šâ.@RJ²L³¸¸H–e‘ØÝÝ}²´´ô¬×ëùüÅq|}zzú™ø¹±³³óM†_(¥8??ÿv{{ûËÛ ¼®×[[[ﯯ¯mÆc×u;ãñ)%Žã`ÛvbšæO'''_mnn¾˜íXÿ„aøa§ÓùØ÷ý†Öšn·‹Û¶ÑZ·£(úH)õxñ¯Â÷ýkkkWVVÞ^]]í:Ž#ŽG‡‡‡ŒF£! g Úž_Ɔ,ñIEND®B`‚OpenLP-2.4/resources/images/plugin_custom.png0000644000175000017500000000100212657640340020417 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDATxÚ“¿KÃ@Çß] q¨ý 'ÿƒæÐü'Th7W‡îBç€uqv«KꨭSˆÁЩ$mžï…;®wEðÁ7ïîýø¼—@œÎà#âÇn ÃÍßY!xž))A°gqyI±Ãn7¤ÛTMkY–Áb¹dŠ ~èû)Ýû`ì‹<Ù@l§Äq AÐÅÍ& X­V7tF=q4Þ¶¡Ö–ju®O€”A*ŠîN²š“$ß?€»ñøeú0pþ˜tNº`õƒà¾( ,Ëin6Ün·Ø4 ®×kLÓWׯT{Ä@¦Z Ãp u][€ŸmrΑÈX’ÓK‚¬#•áì)`­É`mÉ kMcIkMÃXÖ†á0†X à 0¬ðÏ{Þð^á»Ï ž÷ñÒ¾<ïïnÏÓÌûÜÍðµ7Âçnâ½®FøÚêyOkïiªƒ·­€Û¿µû7·ì“¶ÑÀKÏË2ʤ¸"LêP €HÐ!AFÜì”ÍÆX’Ò{FcIÎ…%1›á2ÁÚ3ΞÖ–†µFK' 'à‘ÇëK€÷¹ákoä½®:ø\Õ¼·µž–ã¼§©‚wÕã=ÍuÀÉEÙÚ¡1`‘@e”IN& ™s’P0â q¨6†M`ìÙ¬=£Vg!cIÌkÏ`8{*ήÕŽe‘–š‚tÅ–ø.þ–‘–‚Ä;¬ ¬V+ì6 ¬ l6 l6+l ¬V $õx¸Ý´{ ìûëù-o œ—O’_ð¼ø‹&_ðga‘ŸåDAn sÓQ—†‚Ütæ¥Ã™ä ê ­m.lßs[ýµeç>lݹu MÊŠ^W-ï®ßË·×lõ5ÚÈ»ŽA'уjê  Lp2)l2ɤˆŽÓ¡I h”ÄX’r˜ÄÂA¬=cl©½.!K.'=Õ‰±#aìÈA3b0J‹òUmiuyPQÛ„£UMèT7áHu#ŽV5¡µ­€ h€ +A¬¥Ú(|µ‰”'çëLr@•—‚¼4æf 0/ùÙ©°X”¡H‘vï?‚k6bùêMX±fjê¿óÞÖ*´×ïñ¹j¶ð-7ñžæJàD(1y‚(yz»¨¿i`L2L& ™dˆ(Þè ‰ $Ή¡·€÷ œ=ƒMì5ˆqd `¬ÎRÆ’˜+¢¥$%bôð~Œ~½{AŽ}¯ûŽÕc÷áZì9R‡Ý‡kp´ºI2øZ€` Q¤€NÎ'_ª^ŽaôÈr¢07yé(Ì€ª(?i)‰¾äyÛvÀòÕ±bÍ&¬\·M-€¼†§¥‚w7ìæÛª¶øZl‚×UÁƒ"½¨VHsPòù'Eb„ L&!LÒ$œü9 Ñ’Ïÿ¤HkÍ` 1ŽìAŒ-µŒ±$åLàu' ;F é1#aìˆÁد78–Ã>žÇ¡ãØs¤NØ×á`e=<>a”¥ï ˆßåux©N žÿ÷€±ÊúþRÅ~TIÎ'@ÒÚ¢ü //Âðþ½0¬¼Rda?¯Ï‡Ûöà'?@ýòëV´´º¤>ïã=ÍGøöú]|ÛñM¾–ƒ›àsרÐå<”Üs³÷xÙf‚“Išd’I ¢¤h“sBâ|˜ˆ ˜t6¹d›Tp cK† dجV ØcG Ƙƒ0|`ß@xÉëã±ëp-6í­ÂÖýÕØw´.·ßŽi[*àP{x)`¦$Ò<ÅØ‹udå1ŸÀÏ@TR`•颔O’°û¢|†aPV˜ƒ€Ò·P‘âñx±nÓü´z~Z½k7í@{»[Ö&o;ß^»Å×|h…¯iï:€¯…œÄ ù¼“|ÎIÖ\Ó™$‘ H&Ð ÉÉŸ ÄP\ '€4&!¯/›T|ëÈÖæ„ ¸!å}0vä`Œ1#õƒÃ.½£5Mؼ·Z¡Uhs‰iP½ •qEÞ‡–cÔû1¬&ñ¢¢¿\ÉW¬CV¥ŸxŠ^beÑ‘‡ð\VÿÞ=0¼F (ÆÀ²ž°Y¥W¥µ¹Ú±fÃvü´f#–¯Þˆ_7ï”2ù|í ¾¶ª_}Íû~ä[íP 8‰¡=11‚|æÉôšLR H'8ùˆ–!'6(Ò|BÖ”6¥lãÈÅX’zˆüÊŠ 0wÚDÌ6yÙ™Y¢†–vlÙWMûª±y_jÚ F‰ sEHq–a§—ж^r¾Þj@äy6+‡A} 0¢1F ,FyI>8Nz¹ôÑÊj¼ÿÙxÿ³eرçt¬§ù(ßV¹Æ×¸k9ïn< œÄy'ù|“NŠù&˜Nl2é% ɓĜ„RÁZ³¸”²±LB“[j©8'”‘æÄœÉ§aÞô Ô¯4 ãhM3Öl¯ÀÚ8XÙ¾#ÜÈp:š¼XdØÑú+Ö ‡Cûaä€bœ<´ Å=³!Òo[wã½¥ßãÃ/Du­˜¹ÇûøöúÝ|ëÑUÞÆ]+ásWAé‘à$¦“Ë“!L`:ɤˆ(a91$G!ÿ¼ÒÙäâalbÁ)Œ=s¸$ÝfŤSN¼é0~ôðÀ|B•X³½‡ª)ó<€`•£rÈÊe¿È 7郀` Q/j AøRõ 1¡Á0°Ô«OQfœ6SNŒtgae‰e+ÖãÝ¥ßãëVÃ%Î9ñ^ïªÞäk9´Â×´ïWä| Nd"„Î;Ȥ€4€HLPç…á8éŒ#»ŒM.ÏÚ³‡ƒ³§ùù`Ä rÌ›>3&žg²`ŒŽÕ´`íÎ ¬Þ^‰CÇý¢Œåà !Ö"2yŒø”­ˆj@PÖ—Ú(¿Od†[Î'@ ´>2äAû!÷½ª¿Ôò9ŽÁèÁe˜qÚPŒY˜wjhlÆ'߬À{K¿Çê Û¤öz]u>×ñõ¾¦½?ðmÇwA'yXOœo’'B˜Àt‘ Hݘ ’?7$OPÂq@8{çì?™IÈ9™±$ˆ|zõÌÃÜiqæÔñ蕟 ¨¬kÅ/Û+°fG%oBÐÑ~Ø€ƒ„ùÆÃ…b’É‹—±“Ëæeb)Àªj#/+–·‘L”Û¨ЈúÞÐ&':0iôÌ?CúIÏí?\>ûï}¶ û“Zäi:Ä·V®ò6lý^×1by”‰äsM&0uc2©’‰«h; „åDo(“á Ø´³Ø„ãÀZÀ™’ŒY“NÅÜi0|`?€ÇËã×=ÇñãÆ£Øv &(p„FÉÐéÊ—×°)`3¨—&h„¤—X‡Ô#8 ’ªl£q@ì‘“†éã†aÆiÃP—8nÍoÛñÞÒïññ×?¡^\ÊÈçiõµ]î«Ûüïm9 ’×Ô ÉcrænO& u#¢‘š="%YSŠÙÔ³Ù„¼1âÜÐÉÃáÂy31锑°Y……´+ëZñ㦣X¹å[Û•†3žÜ7"? žWHz„HÇÍü•ùƒúbæiÃ1ù”!HIJ´·»ñõòµxùϱbÍ&?¯Ë×zìg_ý–¥¼»qèÀ$zLò´q˜º™€Ô (‰‰ Né2[Zo6µÿÖ‘{’øú† cFâš‹çcØÁòúxüº» ?n:Šm‡êb0’7aN€¤ Q$#€`¢šaèŒèeh-V§Ž(ÇÌÓ†cìˆ~׬ým;þöÒûøvùZuŸÛ×V±ÚW¿õS¾½n`ª…Lb„ LÝL@ê¤Dò•”@dÏìË¥öŸÃس†ƒa-,Ã`êø1¸æ¢ù(/+TÔµâ§Íǰr[šZÄJyØF=ñO!á(µQ¿“ÆN*çÅ1B-e½ø™Å' „3ÇfD/š<Õ>!'-% ³&ŽÀùsÆ#+]x«Èæ{ñ·ßÇçßý,}^8¥E={+ñåšCømouh£t-£D[McoĸkÊ!­X‡”'ò¦bð%ƒÝT|µû(@Ð×Ý8 „Û÷QÑKh­ Θ4 Ï›ˆÙÂÛFví;Œ§^z~¹ÜÿJxÞÇ»ª7zë·}·UnP ˜ÄeŠTÀd‚R×$º´Š@$®¦ 1cÈdò³Î¾s{ú€a¬ Κ1 ¿»àläå€a€MûkñÕºCØu¤! @0HÌó¨Œ+E~\Ì_)Œ°%Üã)|Å:`U"/û‰§è%ÖQ¨@2¢;­^4€–ãXL7—ž}:Šò…‡n©ÄÓ/€·?ùn·GìªÝâkØñ©¯õÈF“˜™'“¸°k ]ܦ®E& u’…çäéÛvHÏ¥A¢,6©p›Òg6cKë » æLÅ æ"7+>µ»«ñõúC8\Õ‚HÁˆá6Fäñ¼ Ë‚^4=ºê’Aj½¤úJ¾"ï`€ÈË~â•ò(mf“Æ ÆegOFßáýWÇ*kðÜëáõ¾Fk›°9ß^·Ã׸s©¯ùà:S „ˆFHÀ$O7Ãx]„L@êD„çäYs"eÈa“Kư)¥³«³7$'&à‚¹3qÙ9g #͉v+·UâÛ_ ¦Ñ ( \¹‘á6®M^wY2(VóWF<ÊSGöÇåó§`p¿b@umþõÆ'xùÏÑØÜ*Ts7ìñ5îYêkÚ³ @%¤Ì<Ñc°5Ãx]„L@ŠcÒωéÛbh.—IÈÂ¥ º±:K Í™‚KΞ‹æÍBJrØu´/|¹M­âkx™MÑ(Èë(Ë•† GùS…£ÄƒI#$•Ë~ äz$Æ3ˆüxÃò€¡|½ %¬'îX†+ÏŠQƒûVxéíÏð›KQ[/¬ »özë6¾Î·Vl„Lb(Oþ“ÆëdRRð\  Êg/äÒ‡/`{Œ63= Wœ{&Î?sv?áó›_ࣟ÷ŒÒ(©G©_µÂ6á% ‰FIüN%©\i”ÄZ¤Q”בϻÈëÈôÔ#åËÛ¬P©¤^¤|IÇ®ºz„ U~zidûƒúáŠs¦bܨ€–V^}ï <÷ÚÇ8^S€÷úZŽ,÷Ö¬¾öƒ€IL~0Ãx]„L@Š3¢„ç¬ÒdÈeý&sÎ>gµ9Y–ÅEófá†ËÏGRb…§ô}ëÁ:üûëhq¹ƒ%a/r£ò(YÃ()å‹ÇÆ–$•çEÄàv¼LÁ'Ð< ªt祯4`Uõ©)Ê6û±éûðŽ&?”„Š>Å=qÅ9Spú)ÃÀ2 šZZ±ä¹·ðÒ[ŸÁëó>W½·a×¾†íߨ€0Ç$㉠¸ša¼8$â„t²ç”á9{Ö.}ÈEŒ-­ ØÿsãBôë]¬%oå~UCžÿ|WHhˆ %Ca5Šü°ÃjQЋªG€µ°·/\€Ò¢àyo}üxðï¯ óK¼Ïãk9ô·æ×÷Á{8!Œ×aWrñV3Œ×ÉdR'åáV2{NÏ¥”žÆ9ûΑÁ0 Ξ1·üîb¤9S~4Z²…Ï/×ÂÇ«öƒ÷…h8ã Èýˆ ·q½hòÌ »Ðô’x“z‰ÇòÅ:R}ŽcqÁ™“põù3‘è°£¶¾=õ:Þüè[á8o[·aû»¾ÆÝ?BÆ“¯‘g†ñâ€L@ê¢xEò÷9áOãfléý¸ô¡1öŒP^Z‚ÿ¹q!†è«Á×XY¾y-^üj;Z]âKÕ„ä(Um`"Ûh…Ž—Ù-ƒ†Ó 6œ*½ôùªõŠ?@PÉ S/ªa襂|š^Ù™i¸õªù˜|êpÀº;pÇÃÏcó޽B Wõ&oí†ÿðíu;!S Ôa<Ó[êD2©ƒ‰â‰«,HÙs ›Ï¥;‹M*œ †³%'&àºË.À…sg‚eÙ°G¯üx}ž[ºGjZB7Š!†õ‚ƒ†X‹”O#~'eë¢Úp*ëKm”ß2+ç ZuFÊuGè¥9`ˆ@þ˜áýqÛ¢蕟¯Ï‡¿ý9–<÷¦ðüïm÷5øÊ[»áCð¾£P†ñÄl<Ó[ê$2©IFò¤1<— —M.˦ö?Ÿá²`Ö¤qX¼èrdg¤ûyhñ޼¼ÝãÅË_íÀúÝÇ„i £ …t4#HÛ¨è¥âCòâeìäÇð2±ò6Ä "íûH)Š}oD>É×fápÉüi¸êÜé°Ù¬¨¬ªÅýy~¹\¨ïi©ðÕoyÓ×|àÇ ÌÆkƒìµ&(u™€ÔD„èĹ"1<— ±:ûpÃ.fìYภ÷ܰ'LðÒ’a¼\¯.àóÕðñÏûÀûô‚ÃmÄ($#@§+_n£H>õÒ4®áè¥Ò#8 vÅ ;#€$Êï™›‰Û‡q' ,ÿe#îzôyìÞD¨Õv|·výxwÓ.(³ñÈq3„×dRŒ‰ò\‘˜Ê-zEùljù4ÎÙ÷|0‡Ýnâ ÎÁå æÂj±PøiÉ1^n¤îÆ}5xñ‹­huy 2ñä~¨†›"߈^!é F8@¢ê©^È7âQÒQ­»ø$ÞÊr©<&ކŠ GNÜnž}í#üíÅ÷Ðæj|žoö7| ;¾ †ñĤùµ¦·c2)†D Ñ9 Í傱ô²d¾œIÈ ãGÄ]×ÿù¹9·d†ðbH& E™‚„èr „èfpÎ~ Àpö^ùyXr÷âÀ[%>Zü•E“àÓŸ÷á“•{FE×é{#Æ]Ó(‰ÇFI¬CÊy“|Å6“ÆV¬£·€n*¾´6†úº„pû¾#!½ŒÈ7âyÑêÍšt2î¼öB$%&`Óö½XtÇì;x à=mÞúíoù¶ àoÉ áu™€E2¢+²d¾‚IÈ;fL‡{o¹I úëÏé•E«ÜHÝ {ªðâç[óJº€¤ám„VC„ÆÞÐé{ÆUâEÊ¡x”ZÀJ¢ôOÑK¬£ì/#†;Z€ Û÷ÊÖ ‡z-ð< ósðØ‹P^Ú M-­¸íçðÑWþL¼Öc+=U«þ Þ{ÒsKf/†dRˆ¢Ÿ-J…ð«¢[ÄX’òì6+n»æ*œ3kj\yBFÊÕ¶àéÃ±Úæ †Û $#Fɰü Æ6\@2— "åKõeÚGH1䨬n½ú<,˜3 ðú_ãOK^„«Ý ÞÓ|Ô[½æ9ÞU½f/ædR„¤¢“?[Ô“Mí?ƒsö= g/.ÈÇãw/Fß’"ÿñ4žZ²Œ—ÇÒ›js{ð¯Ï6cÃîªÎr?"ÃmèhòÌ%ƒBÓKâMÖ¿“òEÝI½DÞ¤|ñ;)_ÔìW`Êi#qßÍ—#)1[wîÇ¢;–éá¼×åmØþ¶¯~Û—0Cx1%" ]&€\°V!DçÈ ³O{nX„ćŒ¯–<ãå1¯ôñŠ=ødÅžÀͽ%ƒºá4H† gù]Tò"•¯£—!@¢„õÂî×(êU˜—Çîþ=ú—¡¹¥ w>òO¼ÿÙBÍÖc«Zü—Ç£ÕÍxê¿¿âXm³¿„n<"7Jâ1¤Q"IåyÑÑH†Ïkð 4ˆ*Ýyé+ XU}DêEÊÑFù=«¾ï8@´ë…ª C¯©§„ûn¹I‰ Ø¾ç ®¹c vì9ð^—¯aÇ»Þú­_8 éí´Šž J¡“ H!’ ŒÄµèÄ]Xk±%ëä«GÎIpæÔI¸ëº«¯WòÒ’YÝXòÐ*ok÷àŸŸnĆÝÇ %Ca5DhC0J4ù†Fû^@ô—+ùŠuH=‚¢R/±©‡¥æÊuT&Ú¨ ˆJ½Hù ÚHêEÊ—·9¸ç. ErMöÈÆã÷\‡þeEhmsá®Gÿ…w>ùN¨ÑV±ÚSõË‹ð¹÷AX¯B/°r¸ J¡‘ HI–IÇAðŒÄº³ä3Žìá\ÆÈëKbn‚ÃŽ»®_ˆ3&Oô«ÅÓxy¼ðÐãÍó<þ»|7>]±[H;Š6 D HAŒR¸€dfØ‘ò¥úJ½È6ó²"5 †ãQÒQ}NI½(|d}o³ZpëÂóqþ™Sï-]†;y-­.ðž– oÍÚ§ù¶ãë!$øÜÍÞšuÏøZ¯pÒ¼R+¤w,™ÉȤ D€‘ ÒóE9 ØäÞ“¹ôÁW‚ál“ÆŽÆ#wÜ»ÍFðÐâm¬¬+ò8\Õ„¿°5Í2cv¤ñðÿ.0K•†Ó 6œD½ˆ<”8•¼0õ¢ê†^Ú€¸7Õz IDATF¿Ñ‹&?tÏ\l£ð í’»¯Gÿ>Åhsµãº»ÿ‚/–ýðÞvoíÆ—|M{¾…J•ê!­n‚’2I‡(i݉ž/ÊPÀ¦öŸÃ9û]†åΚ>ÿsã"°,KáCã­%Óxy¼ðÐ*ou¹ñìÇðÛîã†@CøOò˜ÀJC‘·Ìôi…m´Â?rÃ$çO†“اÉï2€©|Š^!É7è™Û,nûýÅXpÆdx}>ÜñÐ?ñƇ߼ÏëmØþ¦¯~ë§@©ÂóJ-0Ó ‘ HD€‘ Òzt¹zqéCÏeSzŸ 0ÌUçÍÇõ—]—᳎à¡Ç›çy¼÷ýN|²rWP@RWÄ©Q Ü2@Tµ‘—‰•·18 †œP Å) ‘þ 't½h|.;wþpõù`>óþþÒûxÞ׸çcoí†w€JÍÒÂMPÒ ($# $0J —5úr6±`Ã0X¼ð \8wö <Áê®Þv ϲ.·G(0Häè;d£‚Q (| ê¥i\ÃÑK‹o€—Í »(]S<3§ŽÃŸ_ Žãð›Kqß“ÿÏóðµúÎ[õËË@餴ðvÉ&(QÈ$‚ˆ^Åe€ÒôÃY²Où=ãÈe±pøß?܈ÇùÓâyy¼ðˆ”÷¡ãøë{kPYÛqØ$äQrŒM^Ì&þ#$°^´€Öˆ|µ^ÆQ­»ø$ÞÊr©o„îr{'k3QJߟvòP<ù§›à°Ûðá—ËqÓ½‡ÇãßV¹Æs|ųà}û!ÄñZ|•E«<^xèñæyoÿß6|ºr—P0 ¤ñ¾w¹Yœ‚®!èE5ÜAäÐôÒ ªí«ê…V®Ö+D>¤GIk¬QŠ  Ê‚¨Pߨ„«n}ßÿ¼y9øï `Ô~kOµd½•M,5(Y°':(°!;"L'£B6¥t —6èJ0œí´“Fâ±»V_è®á³Žà¡ÇÛÇóxë›-øtÅ.è†MÈý á(¡X#LiØ&_j8Ê@ø©Û.àMÖ¿SQ+T ž"_üNÊu'û•Â' &ò¾g9ÿ»x!æNŸ€6W;Þ¾ß._ ðÞvoݦ—|»¿pÊUNèðÝ HºžQjÿ3¸Ôò‹†›3y"î½éZpç?N‹_äå݉G$¼Wl:„}¼mí^5œɰá$êE-¡!_ª^±JhˆT~4ç¯ÈýPû5Vz)øŠm¤"¬¼¬>É÷‹.ÂUçŸ ×‹[ÿü Þ[º ïõÖo{ÝW¿õÏ*ÉAé„Mt8áBvÙtÂ"©)¥SD0ºô칸ÿ–ë`=ùQe×íè”A¸ïÊñÒ¼’Ÿ¨áÒx¨¤”jÔ׺÷#µ Ñ4)‘òÒêÂ(ð ™O<õ‹&߯!ò'ÿù:{æUp,‹¿Þw=®¹d.†ãRË/fSJ§(€`ƒR ؤ6|wB±ø.£,=ÙÄ‚q\Ú +E0ºùªKáã×:‚×V Ååí̦+¨»Ï+å¥â¡E1°$›ò«6ph™4Ëévˆ×8$þa¨ž¾ÁH·FFýúGÜpÏcðx¼¸çÆKpÎì‰ÃÙ¸Œ×0Žì‘ò!ؤd6Ê‚ ”N@¢,”*‘-m°%kô`-‰ãN‰?Ýt-†ÁGk+ðÛÁÆÖv/>^W‰g¾ÙU­2Þ«K¨Ô•ÛDz .1×Í›5ÌÐi‡GáÃ!F@ióañ‰ûÌÁ0Û'!Ùï^‡»ùà‰?]‹ÉãF¬%Ñ’5úFÆ–6JP²áó”º}Rƒ0\â.oü —˜3´?<ûà}°Ûløâ·ãøiG­6Oʘ1$) tCy¢%#Äš÷Þ£uXòÆJTÕ ïW23ì è½$Αé¥Ð CñtSê¶€D, ”ñ@‰%gÜ Œ#gTšÓ‰—{EùX»·¯«@x½!\dƒ{¥`Ö°8,qmð»¨}¿~?žÿh-<oÇ%…yñ2vòcxYu¹á’]]€Ø­^Ê'+ï./å çšÒÔDzxêÛ1aìHìÞó®º[Xµ­r§rùSöBzuEàͳÝÕKê–€D¬Â ¾v¼€b.kôUlbÁ¤‡ÿ|è~ ìÛ6â½ÕG~WHÍÂâô™WžŽíúa¼xæ½ûp –¼±5uÍa¥p)nW´‰—¾*ŽQ–Km”ŽWzH‘♸GÒ÷R8@VßÕKVŸ¦‡ÃnÇ Oü Ãöï›wâÜkîEK«K|Éß‹öA%ùëл僳Ý4–ÊPÄ¥½€M)k±pøëŸîÂØðýh3Þþù¼a÷ƒt“Ë/ò¬d+æŒÌCßɲ¶iµÙXYgðˆ%ïhðhhváÉ7W`˾ãÕx„=J6~2 H„Ž(@š^PŽüà¥ÌDËÊÕº+Oâ­,—ÚHòu—ßÛ²6å‘ Â$p&'áÕ§@Yq!–­ü—Ýò</|»?òÖnxÀ~ožíÖK u+@¢, ä  ˆMí?—K-¿ˆaXæÅ7cÆ„qØ{¼¯ÿt_$}@%n2ÀÀž)˜="éIÖ¸6ì±äÝóJ//]/~Þi B¤p™`F ·ùR>µ|•^zz†ª—ŠŒä€¨â%•SCµ*Þ2æÀÊóür9®¿ç¯àyï­ßö_ýÖ €R€tÓ%†º ¾: €Q€"6¹÷T.}ÈB0,wëÕWâ‚3gãH]^ùñ0Ú=‘Îñ<¬‹ñ20q@6,\øa<­òxáKÞFê~·v/^øh Ü^¯q騕늀@“. h]Ó¡è¥V ¢Ù¯Z€¤q}tD¸°wQO¼öÔCHu&ã…7—âÞ'^xŸ×[ûÛó¾¦=_C¥J $¾à¯ÛdÞu @ÒXHX¹;±çx.sÔM`8Û• æãÚK.Dc›Ï/;€¦Öh,dÜ(¥'Ù0gd.8em×ÒÉXYgðˆgÞ;Vã‰ÿ,Guc‹Ôõƒ¡ü®¥ŠÆC¬C%y2&a‚$Ÿä+ocðƵ> @—o,V/Ïˈ|jˆÓˆá’\žÁ~Ü¿^|ò~$8ìxô™7ð÷—Þxo»·zÍß|-‡€´Bx#„W¡w›tðî´Rƒ<‰!@ãÈÎeŒ¸ g›7m ®½äBx|<ÞYuMm^Â:jPÛÜŽ×~8€·Uí±î.IZÀc”úfâ‘ë§£¼( ÷Ó˜ªï]¥±%«jÝëd9 D=ul(<>†Û£]SûƒEó±)å•o NÈL†aÛ¦­;ñ‡û‡×ëÅí×^ˆ çM‰¡kGöpsâélÝÈŽwy‰’Q— áÁ×~–¼É÷3–Ä܉cFã±;ÿ–eñѺcøõ@£.ÏÐÈàh’5q,pZÿ,œ>86‹òzê.ÞJ¬yèñöz}xé“uøú— z¡ŽöýõôGÉ ^QOhðVËùDà)òÅ6’ò¥ú2í}¤ŸáG×]ÁKÕg’¾A=…nÆïÕÐúž8—¡†45äÏ™:Ýy|<…·=Ž/–ýÞÓRá9öí½ð¹·Cxp¶Ý(ó®K#+eÁÔÀêÝ–¬“¯b,‰¹¥E½ðào˲øyw-6hŒ¢ãÃáéå Ô—ßM^e›cÉÇÛ±q]l:¨›“ž7Åq,®ž7 ‹Î §¾Ì£r×òQâƒhxZ Â(×pèG„Ο§Ö#KI㌿r!ý@-gqãeßÅ¡o¾S ¾Îwé7ßã‰g_DzxúÁ[P^Ú Œ%1×’uò•Ö¼ëv«ƒwY‰˜7ßk”  „Kp6›Z~Q‚ÃŽ×þò8Š zbOe ÞXy%Ô©H{d¦%óÔ›L=–æ¥`îIùÈMst;o¥³yï8P…%ÿùµ mP®h’#œøïü—ò!Pߨ5M—odž'ì~ÕÓ tùÑ})MñÊ=µG)µQ]¹¼¿x¸û¦ßáüy3±kßa̼äÂ3Jõ[_÷Öoý/„gÅÌ».?ŸÔ¥=$(Ÿ7òÏå e}΀;~¿Å=QÛìÆûkŽGx˜°6…,Úh €¬|OE#þ¾t;>]s.wü¼{)(Ò1_ß^Yxôúè[”¥üAëžô^ަ)‘—ª:åø°›G:Œ4=Â+ ìGã‡r?àùhÝëô{›ax¨ïy™ƒD ™ç,yæelÞ¾eÅ=ñ𠬳﹌=kºÙ|R—l<å­¯©²ÁZ‹¸Œ‹Àp¶9“'aöéÑîñá­UGÑC# ûÀ×,ßZ…Ç?ÚŠu{j”¿GÁ¥3ïíËp&àÏ 'cÊè2JНA¼ÆÉÕ:ãZÖ_]ùŠßWëꅸi„†$™J#i|À¥2x¼ºMFz<øaW.Ÿ·{¨|uïUs%ƒŒÊùN›p –Ü»­m.̺ô6ìØs|ë±Užã+þ`¤å…ćf»\è®KyH”w%AXÁ»›ÚãÈm·ÙðÈí‹á°ÛñÃÖêðÀˆ‰ÖftÈH?~_e3þ¾t;>\u­íÆ=¼Ù2Â{ÚÉ}qßÕSîL04Êîmhy.#P^bËBð¼@3®¤çÅ—O½4…~ÓnH퉂G©•>rÿtl(MùêûxëÃÏà°ã¹GÃa·IÈ;™M-Ÿa­Î 6±Ë¾Ø¯K’ŸhÏ åœ}Ï€Û®¹½{bÛÑ&,ßY"r¤#•kÝ®ô"훌àãy¬Øv½¿«vTEó^Ð¥x¿Œ#m_yq6½a&Ê ³‚WÖ h‹PŒR°°œvŒŒ@Ú/ dê2à‰"üó$ Í—ЀZ ôµ! c>UWøõ¢”Ó»N^.˜è´Ÿú§Säü>ñì+ضkúõ.ă·_ àœýÎc왃!$u¥¡ Ï'u™ëÏ\†³Ïœ8gN9 .|òk…p\Ì6â'Ë´nZñm—D9¯?ªmv¹ñþŠýxêÓ­8x¼Ùß'Ñè×ÈyÄ’w,Û—™šˆ~? §ŸTFñb´çWhö]ë7Cø ÉKÝžHk Áñañ1|€Ž©çe¤\520®¥2\~{Ô¡Zå¯í7n»ÿ 4·´âü3OÇüYã!Ì'º × Â 5]v>©KÌ!™7*ê™Wÿò84µyðóîZ¬Û_7†ú‰IG§Ä²8©Of*@’âj–ÖåG+¥ngðî¨ö}¹bþýÉjx¼Bh4è<qîDŠYj2±ò5Eî+äZoøš62ç¦NmñÁUyŠ»:ÔTúPSòÞ«zz(ú5Ðð°ç¯fœ>Þó4·´aæ%ÄîýGÀ·[é9¾âèÂóIqHļ‘Ò ÞÅljùY\ê€Kl6+^^ò(úÉŽš]^ü¼«ëö7Àu`2xóÊ/rr?Ä›‡¬—`µ`úˆ|œÒ?Wa\Mà ¯îÖ}•Xòê244µ©ľ§ÅÀ9…òyBƒTÊçPÈs¯æ+\S€dü-­ú|u §Ž|#€¤;x PêDÿîÕø$• 2 ÉøÞsË"œ{Ætlݹ³/»®v7¼u›_ö5l'Wï2Ï'u@“’!<Ü‹±g±äœzÎ~×u×à¬éS‰ã¤ï-.¯à1í«G{Ô€)Œ›7‹\ëæí‘‘„ù§ôBqN €î ±æQ]ß‚Ç_]†Ý‡ª´ÏP :¯¡¥¯-дIá ;©2y†3ì”m6zMÝh‚ìÓ8 ÑôÒàCáT¯(dØIm”ô°[-xõéGЯ´¯ð5nè9€÷´y*—?Ä»j~°k„EX»Ä›fãz‰2o$¼R‚± 9øœ}ÚiãT`DR¢Ãé²pýÔbœÚ' vk¤jkÓÎ5QÕм•|^Òü±Ú<óéV¼ùýn4¶ºCU¦C)Þ畲ÒñÀµÓ1ad©v%>¤3M=>zdôZä©åšKëhÔ×ä£2¶að¡OÖ7VOvz (Á’ôžkw»qûÿ>–ÖV\|öTÌ6`,.sÔ"ÿ|R6„lºÌ|R\{H ÃÈÁH| yoKö)72 yc {äáõ¿.AbBqœ?á³ÍíêݵX½§®°Þ‡DŽÌuªG4²°æè•íªFJ„,Y¹2üÃÃne1mx!N˜ Vö uÓ ÷gË·âÕO×Àãóm«ö§>Jîü—ò(GÈ'Gÿ4ùáÏ_Ó TùÁõR×'ù(Úhc°{UÞF9‚7a¤6’|E¦´ûÛXßϘ4ßó4µ´búE‹±ïà1øZ.÷_ù4¤ù¤zøßŸÄó|¤/‹Å- ¡:ñe{Åljÿ³¹Ôþ—Ù¬V¼øØÃ(/-¡«ÅS¹ïrûðËž:¬Þ[âJA.ò°o^yøF)/-gZŒ²©TݵʢU/<"å½yÏ1<ùÚ÷¨kjõ—è ¨Î<‘kŠ@Æ!Ð@‰É7ˆš^ºaµP‰è×HI:½:zèéeäüèê¥-ŸÚ?Þ$_©œpÏÍ×`þœiØ´}/θâN´·»á­Ûô‚¯aÇÇöAzR;â8t—!;"‘A\85‹±¦öåœ}Ï€›®¼Œ F¡ÝÊb|y®ŸZ„‰åH°q!O=£aœfÍC"¸dŽÕµâ¹¥[ðê·;P×»w/Åw òö ì‡GošƒÞ=3užQ&ú À‹ßņßÔéß´M/M|Æ`H«©¼‘flOˆa*UÚ¼Á¾ÔêC©©Ž¦©×Ä eùãO¿ˆ»÷aP¿Ü{óeÎY~cM.CZ<.=$¨N£T)Þe–Ü ·1öÌ¡§Ž‰¿üÏ]Q)·{|X³·«v×Y!ÜQj –öhNª¡Í7Dù6 ‹©Ã 0qh>¸0ÃxZåñÂ#Ö¼ÛÝ^<÷ÞOøaÝÙy…b”ªª•2Īœø'Gõb‚âg¹|©Ž‘wIõ$¦áx^¤†4¾Zò†•"?vž—_hó A¯È“YÄb =(ò{õì7Ÿ{ \zóCøvùZðmÇ×z*|À.H©à.¡»¸3þqH²D1«NÕ%—Ìä2†_g·ÙðÎÓCœœ˜&·—ÇÚ}uXµ«Í.å¨Ðo^aM¿É"ÊÚ!÷õ$‰à¬T;æR‚þ…é!÷I¼ƒF,Û'§O،ח óJºFI׸"PÏXØFË(‰¼Éë$h(Â?ʶÐ"O1ŠR}EûT×´²\%_ö_úvMG2‹‚‚Rƒ z$#×)δ‰øóm7âà‘JL<÷&´¹Úyoõš¿ùš| !tw@„Ð]ܽÐ/®BvD¨N¤ 0\>›Z~\¹àôÈɉi;¬ƒ±eé¸~j¦ÊBŠÃ¢Œ_P‡ x)J#‹1ˆá).L’B,ázªªoÿ>ߊ—¾ØŠêÆ6ÃÇE‹¢$ˆe Áï9ãâž«§!%ɱ¼ˆMÁpŽ‘rzˆW‡Ìü媰!u™,,H ኀg ¼Ö|Z/ÍSÊèå Q®fÕF­&VÕÒ×À‚†.udË6ú^Ø>ûzÖý¶…ù9¸éªs€aS\†íámÚq½Ö]\yH²DñØ<½¹Ì‘¿c“ŠfõÌÇÿ ¬‹¿>‡oãåd™ÇÇã×}õX¹»NH«ÖÁÑ£GÅx×ø(UÆLVGƇ”CŒæ,§-Àäa°Ê^¡ïÞJgð QeMùì;Z ê(™ýB¬¥3úVŒ®µFÿŠk r2¤« ñRäÓ¼…ЮiY-­Ñ>¹oÄûÐ U+ùÒåGó¥|¤Ê+ÊI òVß«ªP­¬>=´¯ö(i}Ä+ÿçyô.*ÄÛÏ? ŸÇäóoÁîýGàkÚû©·fýËvƒx`6ž¼¤¸ñ(Ï ‰ ¶ôr6±`2ܶhaŒ:’,,ƒQ½ÓpÝ”"L’ g¢•^ÑÀiå5+ñLJz­Pn*áÓãñ᫵ðÈÛk±qoUˆ2bOñ5nSSNF2¼á œ:¬·P¥[:´‰q”¬5z—öµ@u fúÉ Fñd[4½(ÕÏ lšíÑâKÿÆLéy‘?k½”Â_ò“ÔmUó‘É•ÉÛ{à^ÿcX­P'8ÄÕ³IqHN¿|%ï ¹\ÆÐ‹ÀpÖéãÇᤡƒ¥ÊQèÂPyp,ƒQ%i¸vJfËFZ’%Ä‘r±Bã¦â¡}ÁÂ@Õ–GÓöÔ6µáß_mÅóK7âx]+—–ˆ¸¹ŒéëöÙ¬n¾h.™s8–%Œ¢‘£å†RøTQ¤ƒ×ZÕ /Íj!ª¢[=šz…]9Ƽ"ÉþëõwQYU…q£cÞôqÃÙ¸ô¡AXv-R莌”Ž¡¸Ù‰ )JØ”²3¸ô!W'%&àÝgžBVzºì-^ÆË#åáãylØß€;kP×Ün0)ÔðÔá—PÃa òxŽa1aH>¦*‚ͪLEÿE‹G¬y¡ßvÆ__ÿM-.óC ÛHñõõ¨£þ‘ñ¦…m‚†×K¦ IDATõHù ÚH†µÈ:ò6‡2£_Óª$(&4÷¦’/Ô|4ôRñ¥”Oh€¾^PË×ë×ÉãÆâÑ?ý•Uµ?ÿ46·Â[»áŸ¾ÆÝŸØ áÙ¤¸Jpèt‰Hd°CHdÈk-àœ}Ï€E^ £ÐeD£ê2–a0¢$×N-Á#ó‘l âíèyN'75ާ†mt7 ¯,ñúx|ûë!<ôÖ¬ßu<æý-Їö éÓÜ4E=2¨¿«3ì¤_èD/§Îs(êk•¥QLˆˆ¸\†)D½:ÐÓ Ê*R^ãõûÿ·|%V¬^‡œ¬t,¾æçìw.KO q÷lR§{HD"C*„D†R.ó¤ElRáä¾%%xõÉÇÀ²,qœ?ce±àÁóÀƃõøi{5ª\2ãøç/£Rax”à£}Ëä𼔆@=šìÓ3 óÇ—¡GFRP݃•Ç“Ç ïPÉåöà™·ÀŠ {„ôeÿ—À>9JŠCí¥+½3‚Ö("?xBƒB©ô"¯qµG©”O«c€O ÍAîUÍ6’}dà^¥Ô7Ö÷¾r=(ç¾ ?o?ÿ7p3/¾ ›wì…¯ùÀ×Þê5ÏCZV(n:ÕCÒLd°g d{N`wü~¡ Œ´ùE£M‘;¤W*®™Ògœl§]á"ñ  ðSxq_Æ@°WPä䩸o,-Vòªdõ)Çï:R‡%ï¬ÁËw¡­öœP ‰NåÛ‘iã5Ž×bf¹†§©öØÔ|ä !Taõ½GK†·Õ}«˜‹DÀOx"Q‚apèh^zë}p,‹Gî\†aÀ&Lbì™ $8ÄÕËü:;d'’ Â$›È>ä"0¬åÌ)“1¨_ßNm`8Ä0À ÂT\3­óO.@Nª#øAÑ—DŽ‘Ì¼>ßo8ˆÿ³ ¿l;¥êS¼ƒššwúPÜqÅt¤$کḭp0-«U0JŠ?žÌÞÒSåØß@1¨!åàhñÖ M醸5724Ò‰¨ý§  ZPª½!ãü_{ç¿8xä(F î‹ æNÖ¯ ²“yGâ¼Q.€ÖÙïl.màe©))x÷™§æL¡«ÅÓxy4x„Â{ëáü¸µÇê\Ð [P]uJ=úóR}Íç>TaŠËOÈ'Ÿ×(Éu✠}Q­>/Zºk•wô9§!Ûx­Äh嚣×À(•<@knsãíeÛðäÛ¿`E}Lû«;\gOŽÛ¯˜¤»ºÿU‹Ö¹Sn€Î¢¡Ú”Ε¯ârÐùSè¡ôØ Ú ‘*„øAƒv}ºHúO—Y. :i”w°½?^]g_þ†ÁÃw,Dz`óÇ1 ¹ƒ'ià²WdH€ð&Ø.mÐ…Ã.˜= }Š‹Cf®‹e÷kñ.ë‘‚«¦”á’ ½Ñ+‹ž^-'ê­@½É?àCŽØÈãµËT6àÉw×ào7£©5²w/uÆ9èHÞ¿ßx rýÏÕiÙªp˜ëÝôà,Q6h—nBi|µPbxŽÔ!T`74eå~ôìÖE{dŸò†FrY¼¿ïu©b›Ai¥ÝïòvîÙ‡}‹qåù³0—6øb‹¤A°ÉVt6thÈNæY!dvd(a“KfsïÏHKÃûÏþ#ðJršÑ2*Ñ(û*š°lsöU6úK‚‡mè®:õ¢2ù ¹|Hû²z‰63O.Åø¡…X}¢Å;–Ôærão~‡Õ›ö‚Ú÷ÂG`ßpØFVŸ¶¯C¯sî#~¶ òzú×´:MxZ:¡j=¾ªöh\ÃáÜ+ y"ýJðUé¡MùºáB¢¿–÷ÁK{M-­7ïz¯©ƒ·fý?|M{—BXÁá8€fnA|ÇDg  Ü;JŦ”΀‹ç£XR<Œ”µ¨87WL.Å•“ËP’›3å}×!ÔâòྲྀãÑ7Vb×áZÍzÝÝ F»‹/Ÿ†ÓG‚aØGßôr(FázÞŠ:*Ï'tÏéèÑJ|µìG$&Øñ» fü¶X\½!°zCGzHrï( @:›?˜±¥õMJLÀ‚Ù³ÂgFE¢Ñ¾‚¬$\<© ‹f”£¼ ¬x!¹Âx¨H‰è7€A#¸©ÈÉWas¹=øhù<üúOØ~ þÞ½”Ÿ†ož‘Š‚T þ#õ6"]Du¨|øËCâOÎï‘õ z <9¿¦æ'9   €ôêµw>Ïó¸ò¼YHIJcKëË&ä†rõ†õ’:4½#gß9pά™HI žaKê* Ö33 M,Ã5³ú£Aš¿œœ ‰~3h/CÅp å§Šš&üãƒ5xáÓõ¨¥¼B=–ç ÞÏ/$Ø­X|ÅLÌŸ: Ã*Gêă£#u-#¥=Z§Ý•n’l—êI„âMž]ãúJ|•ÈÓ;Y&טÚäÃÍ|Ç1j”óào¥iÅð‡j÷ì?€ïW®‚3% —/˜ ðÛäNó’:ÊCRyGŒ#§?cOà°ÛqÁ™gcçF¥#Û×#=L(Ãu³``¯ °4£bØ(€ñ^e¡ÊdQnVPÚ²a×1üï+?à‹U»àõúbÔC]“X0ý$ÜzÙt8ì¶àÐ(Ò¹†0yEãø˜Î¡„QYü‰Ö£D ï•Ý@Ö%€OÜô.ìÁ$¯¾ýàê Ï@‚ÃÆž>€qäôG'yI1$Â;r@@ÞL.µü €aæM›Št§3Ö͵§ÃD…E¡¶//=L(Åõg  ¢ °Äu£¥ÐiƒÜ„/´Ñ¤jØNò¢TanKWîįüˆM{Óƒâýü¥“•àÁ›ÎFì4ÊèBm €ú04üÆŒjõFñ´ë€àCzL„«¤ôj„åAùyÓôDhž“Ø—Š¦«Ú诫C1KhˆfÒ†¯m;wcåšuÈLwââ³§`Á6#°xGxH" ‰Ï¥3ö̾Œ=s°ÕbÁÅóæªˆ‚Ú±ìºxl_NjÎ_†çÆÐ’,°,m,êËá–`í -J”WU} žûp5žýp ªë[ Ú]€Gzæ¤ãÁ›ÎÁ°ò^BA-+JC¶œZ¡Z­ŸB›ç 7SO,Š2ùõ­õ:–` Ån CjÀsÚ‰çD´OF –Õ1ÂKì/ÑKºæâ¹°Z-`왃{f_H^’˜Þµ‰ðŽÄ¹£L.µÿ€agŸ> Ù™ô7lÆŻѣµ/ËéÀ‚ÓJqó¼!VšŽÕñêŒ2µÆ¿äñš7,Ô7¸ˆ~¤¶ì©Ä/ÿ€O~Ú·G ãÅûÀ"Ö”è°áö«æà¬É#Á²„=¢žÂC¡žGrÞCÜèó*jÃ)Õ®2“O(4÷J£©©‚Ø¥|]ÀÒJ#!hÝò¨$DˆÅÑÏ’ ›ü¶y+ÖoÜŒ¼œ œwÆ$ +Øè€—ÔasI±öD@²HÆØÒz3ö¬áÇá²ùgG. ÎJgµ/3ÅsÆ•âæ³†`x™L€Îs(š£o’B½ÉŒß=n_þ¼ ÷¿´ ¿îè˜w/ubàü™'ã–KfÐç•b8Ï£ÇÚÈè[o$•TrÓôh¨æÀ*ÈR?2>´‘—þ@Œæ9©Û ±š¼tôRõ·F‡Àç•·Þ\wùÙ°p{ÖpÆ–ÖÂrB‰è ÷%Å üHÊ€˜;bSûÏÃZ¦6ù¹9±ugPËHv`þ©eøÃüaÕ'ÇYCi#ÈW@¼"ƒ¼Ê€2ÚU~úõRÄ…ÂÚÆVüë“5øÇ{«PQÓQßñ~Òè!¥xàÆùÈËJÓ6ØûU½‘†ŒX¶.·7¨¼îg¢ gŒéÛœ„SåÃnå(ƆrQ“ÈAq‰è7qJÕ†Á®CÕxð•ïñö7¿¡­Ý¶Þñ~~Ò˜¡}ðçÏENFÏòEõù53^ö߸pr>&øÒ:ôãÕå¿”OÑž`íR®•…ã´ªîe¨\¹ ÁÀ¾%˜_Ç^ûŽÕEÜO]™’í¸ã깘3q¸¡óÒc9¡ò ƒ—ªz˜nDH‡E‚ŽÐÕÑJÒÀ•X²{RÈôò»WàhE%Fé‡SF XKçì? )”¶— ”c %3$HgrN€sfÎ aò4:“G4)ÑnÁŒ“Jpûù'ãôa½à°YBgBܰÊ¥|Ov1êTŒ&5nÊ}Gkðèëßã?_¬GK›;u»1 páœq¸îÂépجÐ^2HË  ø‰ãÉQ‰n(Öéc(=§àÇ‹õÈѾêZ ¶æe÷œ´û+Øñzm½ êàty²º×ëÁëï «7ˆ‹®úm¸ø®¤@rCd US´Iî9¤0Žì2Æ’\’œŒq£FêgF™¤±} v ¦*ÁŒÁäÅH´[5€A‹*Ñ"}>Ë7ìßþù¾_¿7ªIa]NÞ÷]²ýóJê¾õùñ#ò‡Ÿ…9”øÄ輪@GóÚ–ŠœÀˆ#)ŽÐVô”¤œ uùȎ׌@ÐÁ ƒe?­„ÛíÆÔq#‘êLcI.`ÿÏÞyÆQ]kü7»Zõæ"Ù²ª{ï½lC !¡B$H BBIBHy/É#!Ô@€€iLqè6cÛ¸Y¶lI–,«wíjµeÞ³efvf›v¥•¥kíÞ¹÷Ü33÷žïžsnɇw¶]T&7D dî:ù®Þ†ÔÑ+Ö.]ŠÉdŠTu~äˆ ÑäÝò%ƹ`^¿øÖ"ÖÎ-"%1NaßøU;Uõcq»WFß'}Ì]ݼôÁ~þøï);ÓÒ=žKT8*‹n»š©ã dÏGoË |•¢,žák9‰Šrê—¡ïFÒÈ®k-É¿k-ªv½DU#𴯀VŸ–µ^LÓ/ErM_˜˧£³“-;voâ’µKpér·Ûγ x$ÝvѰä³ë2 Y³.ZµÒ›i(„s•LFÖÌ)âßZÌóÇ’†+ONñåýzº¦…ÿy~ ϼýíæy„zjr"wý×¥\´|¶v†¨¹†ÂÜ©ÀE^HAÇ*Ð7-´Epr  at4R²ò `E›ts!Õ«m-á{_:ua…¼>åÀàƒ·pù—%ÝíÒ器fÛùk"¡R$I@9».ÝZ4cBf^ÎH¦OŠìd†H€Z4ñ\—/>ÎÈê9…ÜuÍR.^4Ž´dÚ¶Æ‘ Õ)}:™oçW7ÙêÙ(Ù[ïÎ#§¹ï‰÷ùh× Å¡ç>ï|m7_}! ñZîV÷óòÑãÚyÿi½WU‚_…é£/¥×­×¤»µŽnýtMc* ö;¡¢§‹–͆Õ+¯¼¾÷àaš[Z™7c"Eù#Á˜iH-šwÃÕˆ»í"Hºîºä¼%­ZÕÞ0Š4Ðå3ÅX5«€_\³”¯,Gz²Ë-tÜB}ÝýSoJè£o³ÅÆ«›rÿSqütäÎ^êO´tî$î½ùJ†e¦…´K¦5â-= R޹ÇP´JÛZ’óÑ4|5ÕŒ[º.h=ÈÖ»OÔ3ã‚°˜äœézÀ¯ý|}d’Y¦»ƒ>qYI¯À¥Ó£æ¶‹´…äÞH5ƒi¸0lš |iåŠV†`4¢yÁð6 ¬˜)Ó%K'‘š(òÊ;l€Q¶û£VJºL­¼|Wìºë9[߯ÿ­Û“o|NK»%BO§ÿÐèÜ,øéÕL“§zÆzÊo)£4ÖlÛ~1ݽÇMdÓ–ÏøÆÅ+¤6‘0lÓp¼³íâˆ5 ¯uäÞ*(ݘ6n1‚1aƤI䎘Á@qFËgäs×·—p鲉d¦&*3„¸ePøõé‹£UÜ÷ø{¼»ýNg¬©ºèRZJ¿¼é2.X6ùˆÁ;ð³ÕÏè4',ÈFÙ¾–“?«+Àè^.±¨ZPª°VüX\ZõÈÿõ-§ -&·õªœ@NÜÏ>¸úüÊ©k9)Ë©ë*-+§üt%…¹#˜?sÆcÚ¸ÅHn»ˆo¸Úc@r™jn@r»ë2…¤œ…Ÿ·ÒOéÈR$@#šÀ3ä3 ,žÏ/®YÆ7VLfHz²ÜŒñ6_…‹DÛíáVnþ ‹HUηóâ['ÐÕmçñë'Þçè©Úžßx?"ƒ pÝ¥çqãUo2†XÚ=<Ô­u|]²šé!oÑ£Gz‡òéç×åb~íä|¢4ù'zç£Í€wrƒK·g·]¤,$÷©°ÒÚ#SZžŸ16Þdâü%Kc])G‚b]¾Þ$£A`ñ´<îºf)—¯œÂ°ô$팽¸Pžµ¶±¿½ø)®ßFS[ðG¨Ÿ ´bÞî¹ù› ËLW£º7j Ñ·ëGOqô-§“û7.Ë=ëÈk9yE=•<‘ñÕ²–‚=]ÍSö •¶Î} õ¹,&TùZ züÕ3Ó¶è¶lÿQùêš%ÒĘøŒ±‚)-8"„%=b"³Žä§Â¦ÒÆ-Á°|þ|ÒRR" fä)ÖA#šÀ݃ƒA`ÑÔ\~ñíe\yþ²2S”Lnò€JgÉÖ¡àíÊ mIiŸŠªó);áþãgøõãï±qëì§öMœƒ4&/›ßÝö-&Ží8˜HÅP"^¾7êèé ;Eº¨J }ò:ÝÓ7Tà¨ècîÁ€Ø}ÐÐØÄžIOKaíŠù€`t¼Çmç9M¶§VR$PÍ€×]— d ‰Ùó.ê¡»n €Æ@#AX09;¿µŒ«VO#;3™P§×*ù©K1²<' Ê;š{4­®n›[ð›ÇÞáàñêHÞvLSzjwßt9k—Ì” à_Å%·q‚°ðg9¹øÈ­÷(DaùeÈeDGFr¨Ò˯°BÔFàzôŸƒÞþÊiåQ8·Ý&Pª\ŒïoÞÀn·¤ãÝk’Ün»ãIO¸_£gí‘4r‚—’“™žÎâÙ³©m·òþ‘ZŽ×vÐmïý‘g¬ƒF$䋿=FK>A€ù“sùù5˹fí FMÕ õ(5‹JyDê¾Õë“ê[:yxýVzi õÍ=?B½?Á`à»ß8Ÿ\yñ&×bçÁCùB˦º Ô@ˆ<¿_pòµbü¨¦+Ϩ«ë>ß³«µ›UKf3lH:B\JŽ4rÊ5I>Ý7T dî:·u$¹ëRŠ–\°|9F£‘²úNªZ,l-m`ÝîÓ¼w¤–’%8 T¥+m`Ý®JÞ;ì N}I±ç:èΚÃ_³Œk/žÍ¨áiŠk‘«‡:ñÊfwðþö£ÜóèFöŸŽ±McòGrÿmßf|‘N\)j‡òéñÑŸ‘§·G}(Ÿ<–â NÞë¾#-p ´ez#z{¿ (èÈ%u]ËÉÍXÀ,ãï^“äÙJ(qø,Ü;€'5I=$ïìº$ Í:z†øôÑùyL;–V‹V‹öqN§È™ œžßYÉ»‡j9VÓ58 dЈź|3ÇäŽo-ãú/Ï!/;]g4,ûOTõs*€åSÄ÷¿–6 ÿ|}®ÛLÍ8B=#-™{~t%«ÍÔ|PŠ÷ k=èXªÁZ%¸ß«êíè*cþ:÷ÖD„ &4ø™˜ iò„8‘Awê½õtñŸDÓØÜÌŒÉc™0& ñé†ÔÑsfÛ%ám×»’Ì]'Ÿ]—aHQnTÞØ©ÕÛ}>NQäL«N/ìrÓÙÀà._®Mh IDATźRŽk%Ú¼ƒá1}ìH~võ2¾÷ÕùŒÈP\ÓŸêºu9ÿéÇÊkùÝï°þýXmá¡ÞÈ`0pýåk¸á²µ˜â‚X¯¤‚󸵂¥«J9Ú'P~5`êX%ÁËœ\óëÕ…B®À`Žb ¹O¤§~õ_—Ňo~TùN'ïoþ€ËÜ[ ¥x¶ŠÈl»žZHÞø‘Á4Tˆ2Å x· ªjî ™©Ãé§“ ¬ÛYÉ;‡j)œÎ¥Ü—+òMÍO¯ZÆ—.¤('SgÔí{z­w†R ÈO¯õ¯Ì\yðN9w8D6í<Æ}¿ÍÎCe}óPz‘Î_4ƒ_ÝôM†d¤yÀ«Q‘)r¯RÓ¶3Ýj6zL‘ÚZGÔýÑCŠ¥ Ct-/‘·nಋW`0ñC¦`0 EG ·êž’;~”bHΟ†`ŒŸ2~<ÙÆÑesÐÐa Æ@Òý8"Õ-¶•6ðÂç.pªnÇj‹˜S,P¬€†ER¾IEYÜúÍeüðë‹=jhd˜ö`AMK‡…§ßÜΟŸý€ªºæÈÈ£4®0‡ßÝömÆæhŽ¾Õ ¥NRPn=U~ÕÈ]æÏ“ :‚´Lô,'d*0²Q¾»QPò `-!>r(G@‚·>¹Ô|´dñå/ç¥1ŠÐÏ/û]QYʼnSåädcÖÔñ ã ÉùÓvmèq)\@PîÎ*$fM˜7c:§›Ì8#8mÔ!JàôYi#ë>¯äƒµŸ•ÀiÐêõ7ù& ç'W.åG—/flÞ0UÇÔQ>ÁŽÖµ:¥?圬¬çO¾Ë‹ïìÂb=wPÏHKáî›®båüé²Ô·Öñ3ú†!×käÓe9bÉr ¼”/xV.FÛwí`™«¸t¿|³Õ°ãH!Ÿ®¦Š¹*Oâ3ÆÌ. YÙl‰š¢s"RÝj¡ºÕÂŽ“MŒÌHdLV2c†§` cû›RŽ5ê àž?œ ùÃ9y¦‰÷¶ãDUƒßüÙÚLç’Ã)²eï ö;Í×ΛŲÙãB©­ßÑhàûW^HQ^6/¼õ v»,Ž&{¢â›€ï.쀨zá‚7¿öSVåÁ•_TÕ(hä—É£–RÁ_”çe÷¥.+ç¯#·¢çþ ‘ôîSÍ_ºEÅsüç÷©Ã“%PGsסïà‘£,7¿ÿë5\ºß Hž3’AÄ! ÷¸OyüȘ0TˆKe2™˜1i"NQäl[ øQd4¬S„ê–.ª[ºØQÚĈŒFOalv ‰à4­©X—/\›;”›¯XBYuïn?ƉÊzIÙyt‡zž ÊѤ ›2¬Ù×Õ Rásëþó9[÷žàš‹R)×bŒÑš%³)ÈÉæ¡çÞ¤¥­³¯ÅÑ'ÝCù¢5Ã.>‘’'(>!NþÑIõ¼È‰“eØæÍœH|¼‰nRFaLŠÃÚã8R8æ„ÛBrÇ’ ÉÓ@0L›0„øxªš-Ø¢,«Ö'ò䡺ÅʶÒ&Öí¨dãŽÀ˜S,‚†œ¢%ßèQ0ýô[+˜T”­1*Î!ShµÝ`â§Ï6ò§§ßå¹··Ói97PŸ0:—ûo»–1ù#}ŸR×§VœÉõtUG@è¹bÕ±+Y,Ä%ñë+OüF¿W?q%µÜîûóă‚p +ÒuòkòÒÏ/jê{Sçw×/úô×n[7‡“˜ÏÜiÁ aÉ(ãH!÷ôpcHîøQ"$ŸÞøQE“9@§þÇ œm•ÀéùÏ%p:!pŠ„BhR–¯pä~xÙbn¿fSÆŒp)_%ñÑê|¡M%ו:E‘íNrßÃoðÉî’ÈÆb„2ÓS¹÷–kX6oª'-ª3ã"ŧ§3ìzÀË'{ˆåÝ@‰ ( PúFUæö8ÀROiø”–\v²ø‘û0¾$ U0¥˜7}Õ-±u§S”Àél«•ÏO61ÒåÖ7"…„¸HšÛ»ÔŸA£7(d&7~}1Uu-¼·ý‡OÕHAOø¬é£‘¥ ²Aîæ“—7wuóòû»Ø¶ÿ8W_´ˆ1yY¡ÞJL“Ñhà¿®º˜Ñy#yiãÇØK4DDÅs‘?3-_¨êýÈâL"¢g ¡ÌƒâÝ©§f Ê/ 9tÅЊ/ùÞ†O>Q´{¸•JeDLÊrwŠÀ„=:\\ ÀÒùÓøóãà€T¼ûÚ{¨q¤pbHn@Š’„¸”,!.yDRbS'L ¦­ «Ý%§\ÏIál‹•³-VvœlfDzò £à(µY¹R#Ÿ(ý™ Ý@¦;ç!@ºsyævHùO•—cµv3gÚ’“0[ÄB\J–hï,§q¤PÍïq @²œ? aæäÉÄTŘuäDQ¤¦ÕÊöMü{[%oï«ápUVÛÀØH3–¨7@mTVß¿tw^·š™s1 ^—„fÜÁ×?†CÝí´ýó^~»Ÿâ¾G6ðáŽÃ>;÷wš<6Ÿûo»ŽÑy#µÝAÈ-J<Ü¿›Èwѳ2N¢vÙ‹šïÎíä-7¿F5yÜFððò’Þ G@µI(ƒÎï"pz­Ífçà‘#ÄÅY0k2 xâHîã(BêÙáø«ñ#CÂÐ)s§IîºÆv+Š–×O>""g[»Ø^ÚÈ¿·WòÖ¾³ªl£+Hp–F_»àQ°òå Oç†Kr× k˜=)ƒ!È‚tX¬Ý¼þÑîü-JÊkzÈ8¶hHF÷üøÏ™¢y½§1-òh•(Pè Ô $ϯʇ;o@ T¥«ä·òsz­PúÊŠOþ÷äVåM¹:ùeß÷: À’y’îwaAâHA»ìdñ#÷ú£$ •øŒ1s]šu6SíO$Š"5-]Ô´t±£´ìôDÆf§0~d*‰¦ öôêC:W@£7hÄÐ4¾ûÕÔ·LáÝÏŽ²ïxN‡Ó·eëG\$€rM‡üfÜ>•»Ç5PåwME¯iháoÏ¿ÇìI…\ù¥…d¤&Gú6û„âŒF~xõWãŠ+9œNƒe…›)H7—ÊæqG…Ú¦ô<‰a–ïE1Σ•Ù¯+ÒÇrÒŸ2.G•Þ‰ .,Ç‘B^j I@?2¥ŒIÃS““™4f MÝØ±? †D·ô‚׫]ÛÚEm«…¥ŒLO`tv rÒ§X·V‚|rÊÊLåÚ¯,àË­SywÛQöŸÆáÐëœêÔžºc¤ò{‹Ë9rò ,™Î—–ÎÞj‹qº`ù<òr²xtÝÛ´w¨×+¹îQþe ï Í(yaÁ7‡ Î¯Œªúå‰Ú!QUA` •²ëäSÇØü4tÑ#•¬^Ýp~œH÷¾Tù´¨¬¢³ÅÌôIcHKM¦½ƒá‚)}¤hk+'Ì8R(&•Û:òºëRò¦Ìž6ƒÁ@m{蛩Ƨ÷üà"ÍCœëè…ÞR}õMm<üÂ<úâG4µžG¨ËLçž_ËÂY“}â1Þ0† ð}â Wq;6eí8ŒtQôtrõÄõ«cA¾õÊcAn)¤?Zq˜ cV²|–²B!ñó$ªW5èòÃëàá#€7Žä„”ûÚMA¹ìtâG)‚)c4À<×þuUM]8Eè+oCøÕºKÊ|¦zÌ\ñ99E‘š 5-f¶Ÿ¨gDZ"cF¤2)7¤øpwg8MPë e¦%qõ—æñååSyoÛQv.ÇfWŸ$ˆ‡ÈòÉ’™ÍÍûíPi%%T³zÑ4.Z1‹8cÿ]3`Š3rÓ5—P˜7’×ÞÙ‚Ãéè=”wQôåÓ+¯_o^ž.?8OÐòDÒ¢¡øø @¶Ñª„ )„G‚‰5¹ÉèªdP$$ ]7bÕý™éé¼ûÌ¿0w;ùË{'€ÄÉ®O|\Œj5‰ò—êý«> Y‘O¾R_–ÏÛ ˆŒHObÌÈ4&ŽJ'ÙNZ XO)‡’ ÑäKò…Cí]¼·ý(;—aë–&ïH¯]#µ!Q–"ºe}Êhµ)µ"–‘Êe,b椂ÈÝPÒ‘å<¶î-::ÍÞ^£îCо§|.Þç…']ÑWuvÑP÷Ußç­~§*>¢L>U>­úå5KÉ¢ÎoïýªëWÔ(3)ž—ú¾ÔÚH£~5ÖŠ¢¦üŠg(ŠØíÚ::ikë £³“½Ÿ¼OFz:3ÖÞ@SKöÚOî­MŸå@#`ÁR°C.·uäÝ¿.)w:Hî:A¨l²xnÛbuÒØf§²¾›ÓuÝ4´Ù1w;¥Û Ú‡Ö›”ÕËÝêY’𦲫œ(BM‹…íÇjyú“R^ÛQξ²&ÌÖsû¤Ñs•ÒR¹bí~}ãWX1w ñqª÷/sù¸dŒöKßë ­<¾þCzþ=ê›úÿêSÇq߭ב—ã»k…¦Ai²ƒoÔŒ¸H2‚—¿,>®9™{:ÍÎÖÔSr¢œGŽSVQEcS Vk7;vïEïôo äûÚG ÅŸ¤Ü¿.aÈ$€¹3$!Ü€¤&›C¤µÓAk§AÀe9IN4gì'Ö“…ؘD§ÈÙV3g[Íl?^ÈôdÆŽLcRnÉ ¡¹õ¢éâŠïX—¯§”šœÀekæpá’©|øùQv8é9Î\OÓÇã"AÖ5]£TATõVA6ºuÁš ÄŽ•áw½ÎªSøÊª¹Á-£4|H÷üø:ž|i#»C~¿êg(ʪ?BŸg­Ñ@ä'w¡ŠZÙ5ø‰ÊŸž|Šòº>~Wy×L=Ýl"º3 õ»øé¢*Ÿ¦ünñÕ–—ô½Ûf£­½“¶öZÛ:q8ì^9U´mç..ZsËæOcãGÛqaCXë‘jBUüÈ=¡!Y0¥Ìæ:¯1ð ¢]N:»œÐ ñ&8%Æzê ©ªüŠªsˆ²¨ ß}̼\<íÖÝ©D‘š–NjZ:Ù^RˈŒDÆLgb^&)!‚Ó õ¥&'ðõógKÀ´ãÛœ¤«'ôù9¼NNv‡vd÷á“\¶fs§ ¿Î>¦xS?úÎ¥lܼƒ7>ø‡Ã‰/y¾¡}!¸çæ—üšeùD*4ãÑÁ‚Ÿ«ÊÁ‘í*ŠNÚ;Ì´¶uÐÚÖAWW—+=ðmû|7Kæ¹ãHéEH’âÀ¾`âHcH²øQ"0(Li ãrÖþozj*<÷,v‡Èß)Å©±?X°$o )Á@r¼„^(•¯VuЗžOßÇ—,K5£(¯uò¥ ÀˆôDÆŽÌ`R~&©‰&M‰c%ž+eßø‰—·²~‰»º~uÝrëC<åïÞU¿¨Êïs_r>ŠûB‘®yïªò‹ÕeuÐÑщÓ)â×ТÆïCŸmbØÐ!L=ÿ:ZÚ:°Ÿýð¿E[ûN hº"ŽìpÜm!™€D!1{,À¸¢BδtõŒ@zn«‹ÕI’2IrT‚“!z F!ºÌ*Ò„ˆAä“[õŠ|¬zwÌ©¦ÅÂö’²3’72ÉùCHѧ@ .®BI &¾ºr&kMá£ÅlÛwsWwHuÐÈ ü‰ò³üበ,›;‰¯?Ÿ„øðÚJ_Ó´‰c¸ç'×ñ÷g^åLÿÓýRå4¼’õ¡Õ±t†ü„G¹²üñ|¿‹ÒwO-2Eãå¢V*øØl6::,µw`µÚ¼2‹bhÏG”ÇOžbñйL_ÈŽ=G³ÇжöÈfÚé0WP0€ävÙ¹œHLã ‹ýøQOHÁlub¶:iDšJžè²ž’¢P=ƒÓÈ“´}‘Yrë«!+#‰ñ£2˜œ7„Ô$_…ëq›X—/’”˜`â++f°vÑ6ï,fëÞ:»¬€ Å‚¹²‘‘\Óš”:F–Éét²e×ö—ñµóç³hæ„ÈÝP/Rö°!Üû“ëyâ…·Ø{¤D3ï ;A§ ¸Fz: DEÕ£ ¿é©’Ò%~º2G—ÅJG‡™ŽN3íf¬ÖnïUË+¸z5¯ˆ"'ËÊY<.SÆI€$a„ûHs÷Ž B áC±Ü[% ¦Ô\ðZHSF¥a2 T4X¨h´Deç§æ.'æ.鬃I 8%õÔŧç’ÿp·m™$jfÔ² Uvå‰Únå£7 ‘šA]‹™Ú3Û‹ÏJ–Ó¨ &çÕuë RßSB|-ŸÎêE“Ù¼«˜­{Jè0»w3ѰÀuHéjQ_P¦·µ›yîÍOølÏQ®¾x¹#ûßêñ¦8n¹î¼õÑg¼õÑgžmœýJo„Ï|€é+ƒòi ²ýÔ§ËRÔ¿¨©CÅ‹t¶0ÁátÒi¶ÐÑi¦£C ‡Ãá©ÇoS‹Pž,«`òx \‘Hˆ[ù$ ñ@"Ƥड)&ŽÂÂ1’»®ÍJE£ÅPf:­Ñ(Ï ¤AP‚É@b¼@b¼4IÂÔŸgñùŒúÜjI¤¶ÅLmK'ÛŽž%;3‰q9L-JjR|Ïj´„¢Bñ¦8¾´t:«Ná“ÝÅlù¢„³rÜ–“×…â%¹âs»m|­+ÁS^ ¼ªŽ?=õ: gNವ‹HLèYÛè ºdÍ2 sGòÏ—ÞÂlQmK#"E‘b Ÿîn›>fÚ;ÌX,]R¼G ?þë ófN–•^@ra„‚žØàwRƒ .ÆC€Ã4SÞ%ÿ0Œ¦Í/®#1!ÁOyéoC{7å ÊÌœn´ÐÞÕ;ëpŒÄx¤  M Š ˆ¢bð$}ñ¼RUpE÷W9Q‘_”¾« ÞÂÊÒòoºÁEW² ˆdg¤0nT:S †yÀ)V&ÄÊD‡X »ÝÁ'_cËîbÚ:]în½–žK²÷ëíËÓeíK9*IMNâ«çÍcÙ\íã bjšyè™W8[×Èï]ú¥ø(‚ú²tß¾*vò2ê¾æþ)öj ªKQ^ÙW}]fêwêÍ'‰,b¶tÑî²|::ÍtËâ?¾‹]ÕƒŶж£Ý¦|&^‰¾ÜùŠ òÙþþ[Xº¬LXq N‡Ãn«zëfDçaà4ÐŒ4±ÁÙS@’ïÐ0ZHq^\öÒ{ F╇Ò-+•×NkìðTEƒ…6Kï-M0y-¨¤xÁ³“„Ï “ýv<5WÓËIã…ù’¼é«Št¥RQ×ç•QÙ€—[/“©EÃHSYN±çÒ »pÈátòéÇøxw1míÞ°ÕÊB®âü+[×oO^Îp®þò Gõ¿#Ô»»m<öÂ8zÜ¿r×™ýªµCƒÇÔ§Öj÷IMe¯…\²4Ÿ„¼.o›ÝŽÙ,PG§™ÎN‹t|‡B¿h¢¨º/¹ŒJÐ 4õ™WONíû“ÉÄòoü˜S§«±×m»_ìªý(#È‚Ôàža—`HZ^wn!? aXj<ÃRã™[”@S§ 8•5˜i5G ¬6«MZ¨ "A©“ÁõWúøuéêîSÖÇü ë1ÐNqRÛÒImK'ۋϸ&D Õ§Aê;2 œ·` +æMâ³=%|¼ëÍífý¯Û”W7Vufª³üù_X0}߸`))IúÞX£øx?ùî¼ùá§lܼM:· PÌ:“‘àcm¨'ЏIô^—ÿôó}ŽÚ$ê\¥4eàØs¥«ËŠÙÜ…ÙÒE§¥ ³¹ ›ÍŽhøJuǺJGý\Ô|4òk&)Ó'å§«?v4“Çrêt5†„¡EŽ®ÚB˜iä3ì¤]Léyã ýR(44ÅÄ°Ô æ¸ªÅl£¼ÞBy£™òz ÍÑ;ôÏéôÎæóZD"&£ò€T¼õÞ–¢Ö7 ò?Þ íR–Y=®SçðSŸ$¸*Ajfu-fêZÌl/®"+=™ñ¹C˜V4œ´äÀà4WŠ> VΟÌò¹“øl_ ›w¡¥MÚåÛ¥ÎðÕfárD§ÈÎ'8TRÁE+ç±jÁ4?“b¾¶v…£FòäË’{(\ ùéõpPép81[$ౘ­tZ,Xº¬8Nk#²²DöP>ŸtPž,/güØÑL_È6íÀ…îÝ‚ši²…$Ä%ç@` )R÷‡Ìd³ MÌ.J Õb§¼Þ,¹ùê-4vtkp‰‰"XmN¬6¥yg„D—%•o >^ ¾&NøÃ%Ý2¢è±œ¶­";#™q.pÊH‰íÑr?Ò™a“Á °bî$–͙Ȏ}ÇÙ´óM­íh+ ïÅôe×%QvÝ]Vñ±tYyíýmìØWÌ7/ZÎØÂœ(ÞYdiÖÔ ÜýãøÇ3¯PÓШº„#jeójÍ+ñX^z Ré²Ú°X,˜ÍVÌ «Ï”k_7}`ÒÌPFË“sòT9¬–Í´“°"2’à6ð®AJÀ0 ?gTOd‰2’â˜YÎÌ  :ºì”5X$ª·Pß@…æ»:ì:,^«A€„xÉåg2 Ä› ÄÇ)NÀ >£ Aqun·ž œ¦Î"=9:«×-§APó’ À’™Xv‚㩉F¦ç§1ÝPV‡œÊ,Ô¶X¿Ÿ'Ú"v‡³èððq âŒç*éÜ(ɺr­?’›6zÓJeëV|åqMÌ•n…åäåS×ÒI]K'ÛT’‘ÄøÜaL“EFJ"žj{Hƒq¥àI`áŒq,œ1ŽÝ‡OòáöÔ5¶F¼‹µ›·6}ÎÎÅ\yñ &ŽÎ‹xÑ ¯_¸Š‚Ü‘<ûÊÛ˜5ãJþ{¿(ŠX»ítuY%à±Zéêê¦ËÚµÛ†(:Un6½¸‹ì·æ P¯¯êÇmüÕ4Ÿ£›Fä¤Ä„x²†fRßÔ’ Ä¥dˆöN5 éR01$÷¢X“04 wÄ¿úZa¥$™š—Ê´üT,ÝÊê-”ÕKn¾³-Þ‘M_ùeíé «Î.u£1¤‰n€2Ťï&Cû¸ëehíRÊ_Ûl¦¶ÙÌgGN“•‘ÌļaL›í§¾¤s x‚¡ùÓÆ2ÚXö=ÅGÛPÓØ‚¯«V½CšÚ—ãÆY]c ÿxþmfL(âÊ‹W‘–É[ˆ Í6‰QÙÃyø™õÔ46ºüÕî›–K Ó-}º»%ê²aíîÆ)ŠJ/…€z(\$· Ia”gê”M--4·´0$3“‚¼Ô7µ $ ÍqRPÇPc!¹cHñB\êÏ]×—”odJn*Sr%€²Ú”×›9Ug¡¬®“êféèuM꿬۲êìrÈÜ’ &@I–•¸Ü{ûyãR~; º·!5.ʼ|ê[ÌÔ·tòÙ‘J²Ó“Ÿ?”écF™ªN4zƒæNÃÜ)cØ_\ÆûÛp¶¾)@‰[±(ràXÇNU±zÉ,¾´|.?slQNöpî¾õ{üã™WøôóýtY%+ÇÒ%³tðz)ô-™Ð˜AS/¸Ò‚ÎPúx•diY9ógÏ¢`T6{–à ÷öA'6ø$·y屈KÎÎr' IDATÈÉŽ õ…5•h20iT*“F¥YXmNÊ̔ՙ9UÛIUc—4bRSøeÕd³;é¶;é´(G/¢(J@årý™ââŒq×_£€ÑhÀ`ϺҪTåÞÓ*¨kí¤®µ“í‡O3<#… ùØ1Ö?8…Kƒ ¦O³&fÖäÑ,©àýÏöQ]çžuæGñ¤ûL’ËÖwçi‘n[7ïnÙÅîƒÇ¹üK˘êÞ&F)1!ž;nü6Ã2‡ð·½‚ÓéT. ¤÷ªÇ€B]=Î [„žËI åra„„r Éo)X )ˆŒIÃFpÙõ7J0˜˜ã(èv[Pµœªí¤²ÑŒgž›tFVî‹z‘'íä¶Wq›Ý‰Í.ÒiÑòwK.8ƒP]@e2ˆ3BœÑ€Ñõ7Î(`4h/:TW]ßÒI}KÛW•‘„üáL“Í´þ1cë\  ™1±Ã'NóÞÖ}TÕÖ{®Ýý´é†¦}a#SÇråÅ+–™©£G×óËLWÀÏ÷0­í„z¿¡§‡O~Å•OxõD¹7Y-È•0Â…Šýìü•×$Ù”o aHpRßͰ‹yz|œ 9©LÈIE$E_Þ`æTM''k:8ÝØ‰]¾™„î 9ÿéšAIuä­Í»¸ñª‹™7}|tn"”—“ͺ‡~ÍÝÿû8lÙ)»8¢LÌ 0äCu€2h>~–“„,O÷åži—ï±2ñºìNýÖÜ\U¶Ëw äÓLù—>j0Æ™¶¾òF£QS°XÙt³77î”Ôɳí”×u`µ;}CP»òÊ_ºÞîº>€ äëᬻƒ´výúPêó õ¾&äcñô|OËcXF²îsõ—Þßvøîk:^~†ÁžÃ'±;œØ'»»ÓõÛîÄá°»€Çí£üîW/™Åm×_ʈᙽ~_¡Ð“/¾ÅߟzÙös_z}C•/¨¾ ¯ì«zŸ†ÓWå÷å)ã;øUެU}n™¥ß&Seûw#"2fñU8v›­ò›€Ã@%ÐXÑÙõ; ¹(Ę8Ç”{ñ߇ddðî3ÿò)ã-|z¬ƒ.o‡Sät}''kÚ)=ÛNYm;]Ý®ÕÛ@O)@¦‘‹({J…X0@§W¿ ˆLÈÎ’éù,žžÏðL/8Éi"G%eÕ<ýÚf¶~qÑé Œöt“”hâúË.àšKÏǧ=XÚºk??à´wtöÂê« @£¯úºë$Ъîkß§›™ÅÌ n ¡©Û™w~‚£k/PA€c(ü’ †EBÂð•q#Vü¶(/—ú›OoÙàÓû;ðËÃé©l0sâl¥gÛ9u¶®n‡vãˆ@#ï3ËK§‘s_‚ãó‡±dFK¦xÀé\9)Ö¨´â,ÿzu[vÁ):=¯FùîEY’üÝ»ó€òŠäÊâŽï_Æ’9±{öÒé3µüäÞ?SZVE¸€Ë€r_•§÷´~QdóÛ¯1yÂxV]q+'ʪ°×~z¯hmØ”MH€¤y Eг세¤t€Œ´´E4˜Ä¸’ˆ¶|ƒ@av …Ù)¬™™ƒS9ÓhæDu¥Õ­”žmÇbõ=rÃw¨€B.áò=à塤¢’ŠžÙ¸G²œf°tf¡®å4HáÓ¸Â~û·9UYËÓ¯mbóöƒ0L‰¹I/`¯RÊ@eu=·þæQV,˜Îíß¿ŒQ#†EEþžPAî^øÇýüòðáÖ]9ô¯Nºî„ˆ ©ûOñÈÒÜÒÀ +„¸¤tÑÚƒYv.’Oj0bHÌ€ð)ë3°Bám ²R(ÈJaõÌDÎ4vr¢ºÕ­”V·Òé9U×·ÓËënä„]>!Ï:òC!]àt¬¢ž§7îaBþ0–Î,dÉŒB²†èïëŸX¤1ù#¸ÿ¶oñ½+Öðô«›øhûœ‡7C˜ êÓ]‡ø|1×}c-×]¶–„xSdŽ%'%ò¿þ)¯ÛÀÃÿz×’YU®}L–®´"Ô|_Šè »(e ®MÍJ@ra‡‘ ¶ d!p[HÆ„4€Œ´TÝ̱±J‚yÃSÈÏJáü™9ˆÀÙÆNJδrâŒPífÙöõš¤Ÿ®Ý.ƒå£6éÕùDUªà uæ (ŠËé_oÁøüa,›5še3ýƒÓ …FE¹ÙüæÖ«ùÞ•kxæÕM¼·uN§C™)Dýfí¶ñÄ‹ï°qÓçüìû—±jÑÌÈ ~ûLWÄ¿{ˆöÎÎïQ›´ÛzÈ[ôèÌ k«ûŠÖÌÁf IXá·…äw€ ²´uÁ” }g!…B±b …ËCF KaÔ°Λ1 ¨i2s¼ª…ãgZ8^ÕJ›9ÌÃÉzÐáüÞBºÿ (EŽW4p¼¢½¹‹ Y,›UÈÒ™EdÕ( RðT“Ž?¾Šï]±–§_ûˆw·ìÁápøä eð]]×È¿‚%s&sû®¤07¶¶[¹h/=ö{~|÷ÿpªüŒ÷B ¹ÒBö2øK Á{¢éªÕJ÷ï&·Ë.Óm!™RQn¤;õ;˜’´Éï²"H±n Å’|34™œ¡É¬œ!5RÛ"TI¥R-]Aó}¾„G‘ð7{™…^¤¤¢ž’Š:žzs7 †³|öh–ͧHPîÈaÜ}ó7¹áе<ûú&6nÞÝîç‚~wÛ÷e×ßqÍ¥çóýo^DRbì Y”—ÃKüž;ø›·iÄ•"¡ó iÌN•QJ_—]¼ÛBr»ìt)ؽ쌂Á”±e!ÅhhQ4­©‘C’9$™Ó%€ªk±p¼ª™’ÊfJªZhj³„V‘zª aú›ƒ-ˆÏñŠzŽWÔóä;™XŲ٣Y6»ˆCc§½öG•=”»~x×_¾†g_ÛÄÛ›>Çf÷§â&­õ,î+ò¿6»g^}Ÿw?ÞÉO¿w9k—Ϫü¡PJrýîyöUyv=Z3!r1ÿ‡à™Dj\Øãûr•÷™Ô a‡ÚBÒ¤àwû6Ä¥¤‡H±WŠuP –²3“ÈÎLb¹  Z-”T6s¬²™’Ê&Zµªwƒ¡aec4é±œÞØÉø‚á,Ÿ=†å³G3bØ 8…K#‡áÎ/çúË×ðï ›yãƒtÛløuÕjr¤kšùÅŸþÉ«ïnáç7^ÅØÂÞ;Ú ‚ÀÍß½‚)㋸ó¿ÓÑéî7úqžX„ˆP˜M-j )N Hºä³ɵI@Ú( È&Çå¬ýƒ`J+|ôw÷3{ªöƒX^kÔÖ+õ”‡?Þm]”T6Qrº™âÓMÔµtâ»Aúå»öÀK9ÁAk ž$ï¤E3Vð–©(Åz e~¯Œò¶úz‰ Y,Ÿ3†e³Ç0rœzDõM­<·a3>؆ÕjÓ°‚_Œm4¸ê«çñÃk.!%¹ïÏÙrÓ©Óg¸åW¤ìtup÷%ow®k¾íЛ®l÷ª¾"ïоd_õY<¯”YÉË·¯¸Ó}ú¦ê·ô¿’ïì™Óyç•u|¾÷(—ý×=ˆ¶ö ûÙïŠ3@;Ð-U© @€”ŽHSâF]ð'!.5÷™?ÿ“ÆŽEMýA)Çhò%os»PÇN7Q|º‘šÆNüu2ÿÊÞ]Æ×m£» ‰ŸNæÛ1Ô€$Ÿ9¨âãOegBÁp–ÏÃò9c9,¶w®Žejjiç¹ ›xõ½Ïè²vë*»`c’Îm7\ÆÅç-RmìÚwÔÑiá¿÷ ŸlÛíJ o'…þ¸e§=`Õ髯eËÆ ,>ÉEßù9¢½ãŒ½úƒ;£H€ÔF˜€”ä“ãF}éÏB\òˆuþ•±……¨©?*å¾à+<Ôé­VŽU4r¬²‰cåT5´ã·‘ãÛÉbb‡yº‡— ÊF©’å4–sÆ2rø 8…CÍm<¿a3¯¾ó)æ.kxŠé}Íš2Ž_üè[L“ß«÷ G¢(òп^ⱿŠ(:ût'…þ°CDQa;>øÇJ+X}ÕÏíæZ{õ{w YHU@+!’¯…”L‰Ë½è/‚1iøËÿxˆÂ\_ï¹ ”û ïÞ¯­Ó*YO«h ²®MÑ• øzHÑM†ÑyÇçg±|î8VÌGÎ 8…L­í¬{s3/mÜ‚Ù,‹[†èª5®¸x%?ºöë¤§ÆÆN}º“;øf =„`Út0€àåܳ¾Òc@’¥çäŒdï'r²¢š—ýÑai°Ÿy÷v$ ©¯…䳟] @r[HSM¹ÿÆÄ!TóÄØsQ)Ÿ <"Å»³«›âŠFŠË(®h ¢¦ QµÕŒæ(,£®`€N«¾pF©ò|ã ²Xá§ í3HšÔÖaæ…77óÒÛŸÐa6ë»XeéZô~rýe|ýÂå1áÆ+-¯äæ»þ@EU5 ` ¢ áR0ƒ·`ê>t(‡wl¡²ºŽE—ÜŽ®fÛ™w~ Ai!…HùÀTSÞ—ıñ©2|èPÔ4”ò |^ê´Ø(©làhyÅeõ”×´âp:•7@ ºóªòõv矟͊yãX1w<£²Á)Xjï´ðÒÛó››ië蔃@ÈßÏÔ £ùå-ßfê„ѽ*¿µutòß¿ý+[¶ámwž?ò6åMW¶=QvÛò{—éb ‹Ò›Ï›.Êò»Ó}ãy–ƒ¥5)­¡Óâ=´0˜-ƒõ:«lTª¥ªÜF>JÁG¦<—ý+˜1yY¬Z0™U &S3Ló¹ D²ÛlÜ´'_z›ÊêzB0$%&ð_×\ÊuW\Œ).ÐÁ‘§Ö¶vn½çlÛµ°IhýRÐVL€úú·FýUÅp:œÔÔ´ïXUX±Æ;VxD“w_Ê'Š@*­áЉj•ÖÐaîr_ ¿óÊ;k8Wc”ªˆr•Ài ç-˜LÁ¨áÚ7>ÀÈápòŸÍ;øç‹oqúLmHϾ(/‡_Ür-Ëæ÷þê§“??ò4O>ÿªG®@€ Ó¦ƒºž·ißúFgŠFeÚwÀ…±Iéõhò(ò‰"”U7rèÄYž¨æPéYÚ:,=¤HCQcò²9oáÎ[0eœ§ÓÉ»ŸìäŸëÞäTåYByö«—Íãç?º–Ü‘Y½.÷Æ>á—¿sWWÔA¯'WÚ´üwrR§ìŽÊÂØ€[ d¥7(_ìòV“(BÅÙ&¨æ ëÓÒfv_íÕà¯O}AÖ?:7‹óNå¼ES)ààäE>ز“Ç×½ÉÉò*Oz WmBB<ß»ê¾wõ×Hˆ7Ñ›T|ü7ÝùªªkÑlS ™£7ȉF›–ó’™Iñ®Ï¢¶ußÍUcYéźâ”/:<‚¥Êšf¯æà‰38~†¦Öð÷ZíßA’\ ©ëÔ/YNSYµp*E¹½?âE‘¶îæñuoPrê´ÒúðãÖÊËÉæ·\ÇyKæõª¼-­müø—°ã‹ýù}AÃ-³ºzÓ•÷åÊåçñ~v›–óÍ‘;­›£²¹ªßã'ú«ÂŠÞA¾¾¸ÇpéL] ŽŸá ëSßÜ.ëˆêÎ+S  ‘÷§À×®©8ƒ%ÎÍâüEÓ8oÑ´ N¢(²yûî ŠKË…\h.¤èeä´ƒ´> Tz=£AùzŸr†g3<ƒ/-•ª¶±ƒÇ«8PRÅ’Jªë[e¹µ;±Ö¨Ô_~]>A* œ6ñÔ«Q”›Íù‹§sþ¢éŒ@à´jñV-žÃ§;÷óØs¯s°ø„ßü6›'Ömà­>åΛ¯ãÂU‹{Eί]´šq£ ùáÏ¦{‚'Ýl=· x%$H Þmsc…ÓŽKô)@r[Hv6Eì+Šu¥ëÖÊ@/š4bX:kOaíbi€úæv–T±¿¤’%•œ©mƒkhÀäo”ªN.¯ªã©õñÔú$·Þ✷h:còG„!gÿ£ g±bá,¶qGž}•ýGŽkäò>µšº~zß_X8gwßú=ÆEÿõ©“Æñæ³pË/ïg§+®ˆDŸ/á‘î'T>ž$JL,$³{] „n0 DQ]q$/Ñfhmo÷+\¬+•X—oúe Icõ¢É¬^4€ÆÖN“Àé@ÉiNW7j  BÒ~2Ë/•¹ÀéÉõ2:w„d9-ž1 Àiɼ,™7ƒÏ÷æÑg_勃ʼOë󽇸Úõ?ã;—™[®ÿ&)ÉIù#GC‡dðÜ?þÄ>Æ3/mð‘GONerOÑ)¤d¿”/YHÍ­.¬°Cî¶s…©|…ÖeçÀiïh H‘ 0’”¯ïyDš†e¤pþÂIœ¿pÍm.pªdqÕ 8ƒõÜ  ÃSšTVUËSëkxjý‡æf±zñLÎ_<ƒ±#æŸÐ¢9ÓX4g»å‘g׳kïŸåŽ›®ã’ VFU6£ÑȽ·ßÌÔ‰ã¹ûÿ‡ÕjUÈãK¡YÐ!ññ» †OjJ $ ;Ôq$MòH ItÚ:¼Ò¹ªTä4(_Ï(Öå‹6 IOaÕ|i#U€Öv ŽŸæ@ñiö—Tpª²õ¤¼ˆQ¼$·Þ‡<µþŠrG°zñ Î_2óœ§ù3§ðô_ïcï¡c<òìz¶qP÷yÕ76óóûäå7ß㞟ÞȤqEQ•í²¯\À„1…ÜxǽÔÔÕË®ètH‚]jrBĬáÒ97 ‰N›t[g0’°ãìn‡À.»Þ¦XWz±ÜA¾X¡Œ´$VÌÈŠ¹hë´p°¤’Ç*ج‚ÒòZœnä » Òƒtç”WÕòÔúxrýÊbõ’Y¬^:“±½7%º7iÎôI<ùç{Øä8<³žÏví“.h<®=‹¹ì{?ãªK¿Ä­?¸†ôÔ”¨É5}ÊDÞ~þq~tç}ìÚ{0äòÁ½íÈÅ.Õ”¥$vØ‘°$, IDe!á´u@x€ëJ%Öå¤s“ÒS’X6gËæL Ólå@Éiö+gqÇË«q:56kõPhé¾û˜©ó{©üLO­Ÿ§Ö¿Oá¨lV/Åê%³WxîÓ¬©xâÅác¥<üìz>Ùö…çšËN'ë^ûïlúŒÛø.ûòÔ‡•FІ ÍdÝ£áþ¿<Ì¿_yÃ%Lè^²À=€Ôâ$[¾RXÓ¾®]tX]RGRGŽb4‚¥ëòõwJIN`Éìñ,™-Émîêæ`Éiö—³¿¸œcegpØšeÃÒ5î­u(ågjyê•÷yê•÷<à´félÆŽ §Ö˜¥i“ÆñèîâèñS<òÌ+lÞ¶[9ÝÞµ µ©¥•_ýñ!^~ó}î»ýF¦MŠÎêqqqüæÎ[™:i÷üñ¯t[ek@ct†@¶Çe'a… ;Ü3í´°‹|vjÏn F Œ1¤ä_d6ÿŽ™“'óøïwN­ì”¯÷xGS¾sº¬Ý,©dqûŠË).­Âî¼ ®iK®œAîôÜÃ" Ge±félV/Íø¢ÜèÜtÒ±Òryæ>üt‡ô 4ž—Á pÙW.àö¯eHfº_~=¡GŠùáíws¶®AJð³;H_íaçNÿÏú˜;k&_ÿþÝìÚ_Œ£q÷Ÿ•ï§€FÀ8´fÙ¤D`(P$$ _7bÅo‹òòxé¡¿Å´ÂÈJù\â*ïF]VGNT²¯¸Œ½GÊ8z²›MûT]éWJÉgO´ÀJ©`T6k—ÍfÍÒ9ç88ušGž}™÷?Þ†Ãéò6©žcFZ*·Ýø®¾ôb †è4ÐúÆ&núï{ùbÿA¿ï1ô-ƒ¤¼ï^f'럢M)Ówòù¹¹¬ºâVN”Ua¯ýô^ÑÚ°(š€.Â$  1&Î1å^ü÷!¼÷ì¿4X¬+¬Aùz÷ õ>uÛì9QÉÞ#§Øw´ŒÃ'*¤Õò=ÙXSá“ n”\0*‹5Kç°fÙ&ŒÎ‹Úýö6,¯âÑg_æ?›>Åé)nÙóš2~,÷Þqs¦OŽŠ v»ûþço¬[ÿ&!Y1ª|º›ûêµõo?íåôá½$$$0ó‚hhjÅvæŸàèÚ‹tZl3 ùìc)é¾|\ǘŒq¦ÏÖ¿„ÑhÔ(瓤›Þ_•^äMÞ±$ß )Éf³s¤´’}GO±÷2~ IDAT÷è)¯ «Ë†RÁè’]¿õ,-õoW8jk–ÍfͲ¹ç 8•Wžá‘g^aãŸ`w:}.ýÒùüü–>tHTdxñõ·¹÷ÿG·ÍÜûR ,B$…å¥Hi©iœØû9v‡ƒ1‹¯Âá°ÛdÇ—W"Χy|9$ùS\GP Ýðø£Œá»7Ö@PzƒòÅ&A L6»ƒb@í;zŠÅeX¬ží]¼Ž½žõÜ? ·èÕW²t‘‚œlÖ.ŸËšes™8&úÛòD›*ªÎòØ¿_áw7ãpÅòäŠ;59‰[ð¾sÅW5ð=¥½sãíwSWïŠ+ HÑ8”ÏolÑh¶}°‘ÓÕu,–Žžhr=q”GO€@) È&Ç\ý;!>cÌÿý5ófL×(çûÐbIaŲ|á£Í{B#‡ÃIñI  ö.åÀ±2Ì–®”’–[/¥˜Ÿ“ÅÚåóX»|^¿§ªêZý÷Ëlxgv›ÝçSÀ¯ï¸™…sfD¼îº†FnüÙ¯Ø{ð0a’ÜÒñcùè’êÝ/ž?Ÿ ëžaÛîC\yÓ¯»[OÙk6Ý g€v$@ƒ$A € Hr€‰qÙËî³çÿê–qÉšÕì(m¦®ÍJZRI&Ò’âHOŒ#=)Žä#ç–Ò”¯ïyøK¤ž‘Óé䨩*ö9)Tñ)Ú;-®«A’|´-ËçO)æ»,§ VÌg☂èÝ`”éLMÿû^Ýø4¹Äeiº•û—׮䗷þ#²"{Ú¯Ífãž?ü•_Kã]¸¿{Ó£q(Ÿ;ý’/_Äþ™ßÜÄ÷?‚ØU·Û^÷ÙŸ€à,ÐØDQÔœþì^vv [tX º¶€n»“ý§Û4  i.p’ÒãÈHŠ#=YúnŒðŒ”XWVA¾hÞc¬?¿þLƒ)ã ˜2®€k¾vNQäxÙö.eï‘ì;rжŽNEíál0½TY]ÇS/¿ÃS/¿C~N,ŸÏÚó˜4¶0ì{é Ê™Ío~ ?úîU<þÜ+¼òÆ{tÛº=×ÿóá6ö9·Üp 7\}&S õ™L&þxïL›<‘{ÿøWìšG©_†è?]e¨ˆò»þææH[N>#a„è°4"YDò¿uÉŸ…$ V2Œ3fLþ–!còw.\±œßþì6ŽœiçÕÝgýñ÷K’`ôXXéÉ. +Y b‰&ƒ†|:ÇÂys¸ä†_²ç`‰|QlЀŸE± %à^—2?nÔ…š™É»Ï<…Ý!òÀÛþOcì-2@= %YZ&2’âÈH‘Òä.ÂsM)dù)6èTåYö:Á‡Ž³÷ðq›ÛdJ”€äMWÏÔeù¥?ÞxH~N6¬XÀ+0y|Q´o)bÔØÜÂSë^å¹õoa¶¸bs¢HBB?üîUÜxí7IpÿÝSêî¶ñ«þ‡—6¼­4®úÃ$= ;ºs+ÆeÖߣ¾©{õû·‹öÎÝxÅZé É×"SMù_{Á˜ðé+/’Ïß>(ãÿÙ;ïø8Šóÿ¿ïN½—S±UlÉÝô1!ÔÐòMHýA ¡“ЄB$$$´B˜&Ûà†+6¶å^d¹w«_“®ïîï½²Wö´W$¥û¼0w;7ûÌÌj÷ùìSfÆl÷D•1<ˆí*(Ì5Pês –ÈnÂÒ‚ìy9‘.BH¥Ö¥þ¬¹çVëk«¸ô gséùgs” C7˜8Ñ×oç•ÿ¾Ã?_}³ÕHŒ©©æ—wßÊ域´|—ËÍ¿ùo½7[.Hq†Ý/~z?¹ñzžúç[üñ¹7íG Ý«ŸvÈs¼É’Ž`êw50ÁŸú}áçÎáw÷ÝËþn;¯¬8ß•4MÑPB’‚_"$7y²–—²ý¼lC€œÊ ³)/Î¥¼(—²¢\Ê‹r(/Ê¥¨ gÄe¦Jv#ݽ´lncí¦VZ6ïààáv’Qœu>Ëé²óÏáÄ©‡p$ÚÑo·óï7ßå…Wÿ‹ÉdABbÆYgððýw0±i\Òò_zí ~ó‡§ðz½ñÒvÿúÛ3\~ÉEÜxÿÌY´J™ò½èd€”oÐFHÊ}‘šty5dUÏøeãØ±¼õ·gészùÓG{ã½&ƒ„°„z!t³¤(XˆIë3QCÿ€¾¶´˜´å$ÐhdåÍ¥×É.BYÉD•Gy±L\¾Ï,C0!c¤O†2èê5³nÓÖnneíÆVö:"ÿå%4TÈ•”ú®®¦ŠK/8‡KÏ?‡“Òœì'¯½õÏý{&=½&² ~xÍ×¹ó¦RXX”ìUk×qóÝr\)^BR˰[ñÑLšÐÌç¿öö<Š·ó“ßJÎŽÅÈ)ß1÷AòC !)·¡hD§?1»þËÑë Ù‹ßxü¼\~÷Án\*;Y-bX1aÇš.t+*á7Š?`$ñ~Uó媫â!Ó!QœŸCY±LTŹ”çQ^”KEqåÅyT”䑟}†x†28ÞÐc²Ð²¹•–M­¬ÝÔÊž‡‘ÄhÏJìgµ®¦ŠKÏ?‡Ë.œ‘vääp:y}Öû<÷òëtõôRm¬àÁ»nåª+¾˜”Ü#ÇÚùÑí÷²e{«¦—âXzÒ`0°ëz¼^Éç}Q¼žÃï߆$nEΰ‹¹í„Z I¹ê÷´¬±—þA—UXûòç„ÉyaÉAŽ˜œ‰]•”B+!h»Ð©ÚÀ,¢}%Ñ%Ù~"ãÊË6È©¼8 ßwù8ŸŠ’•%ùT–äQ^’Ÿr¡Zy†2H[-›Ze‚Ú°¶½ûEIõY ¦ÆÖTqÙ3¸ì‚ÏqòôÉCÞÿhp»=¼ñîlþþÒ«ttvñ½o}{n»’⢄e¾ðÊküö‰'ñz_I|:èË—‘žy2¸¨ª«{“·c٣ȋªjʰƒWõCd†sJž¾#º\ã)»÷ ª85³‹‡±ù8%²47‘‚¾H_ƒWé6Ûé6ÛQ#ZN¢8?—ŠÒüqU–ȤøÌ§ /[s»âÉ •(-.â¢s?ÃEç~[_?-›[Y»ak7m£u×>A]GmïäÅ™ÿãÅ™ï0¶¦šË.ø—]8ƒS¦Oª!D ''›ïë«\óÕ/ñÖûsyö…óþG xàÎ[ùÖW®D—ÀCtõßaúÔÉÜt×}ôšÌra:äôSä­5ZwÉœ yúŽ »èÜÈÜ¡Iš ÉŸi—¼Èj³¾xÂ× å§Ü|ú‰'ðÜ£¿a·-îL;)0ä¨ÁÍ !P™Ð·àõ};PØTqš´‰X(ZÝ éš9¨,ÏËÉ¢¢4ci>%T–Ê„¥üWZ”‡N—‰e0´èëw°~K+k6leíÆmlmÛÜlTŸÕ±ÕF.»ð\.¿ð\Nž>9!H¼^/oð!ùç+T–•ñÛïáäÛBýБ£\÷ã»Ù¶cGT£¦ƒ>xãUÎ:ãt¾qÓ¯Xµn‚iÓs¢mÏ;À^äEU aÚ É€œØPŒÓe6kÌ%,)*bák¯à$~?{7‚˜Js#^ÄP®aÇÑ•{!¥2Ã.ÌlÑ2[:²g …öQXCÇåo?|\Áþªº4“%Z…\ƒAOeq>•e~Â*ÄX$,cy!•¥!. 2H5ì'ë6·²vãVÖlØÊ–»‚Û9¨<«c««¸ôÂ\~áç9å„)ÃFN^Aà³?âo/þ›Ïžy÷ß~ åe¥qËq8Üó‹‡ywö‡¿„"‘eÈb÷†ÕäååqÂ…×b¶öá=¶à§’Ƕ8€¼†“2ì@;!ù×´+€iÙõ_z}NÉ[{–qucÓ ±AãÛ~ ¥¨I¹Æ²>¢]²ñ+ØvÁöýßÃåË£kDûá}%Ð`cbäß"|\áî¯)G§“(-”݀ƲBQRYV€±¬cY!yDZ 9ƒ´‚Ãédý–¬Ý°•5¶°¹u'nÅæ{ú¬úcN—_tÞ°‘“ м7w>¯þw_ûÒe|ç›_E¯ÿEîï/½Â£zJviÆÐ“'Ÿxóÿ÷&{弯ÿD·ÕsxöíÈ ‡b®açÇ€1$I’$N'Ü¨Ï Ø%u¿.×xòº-[W7–ÆÊü´È´‹M¯Z* PMãùÉ5¢¥’Dô?­z}U9Q–Â>by%Ù•qI"˜mÌ6;{÷DXšþäçfa,+ÀXVä³´ eâ*+¤ª¬ˆÊ²BÊŠ 2nÀ D~^3>s*3>s*N—›[eßêõ›Ù´­ —Û¿ ŸÄÑöN^šù/Î|‡1ÕF.»ðó\qÑç9õÄiCFN½ž¯}é2®ºâ‹|ðÑBîúùoøþÕ_çŒSNŠKÎ-×]Ëô©“¹ù®û0›-Š_Buƒ?~´²e‹\ê±îGžëD±1ß@d,$YB¨ÿŠ e']«/™ô­‹f|ŽßÝw­Gûøïê£ZÆ9H, %9Ë+fû*rj_㸴´ŸªqEk?©ø•šMãòב³ô:*Ë ©,+ÂX^ˆ±´cyƲ"ù³¼ci!YYÑ—uÊ S±7mkc͆-¬^¿™[Zqº\÷tmu—_ôy®¸è¼!%'¹s|Ì‘cí|õK—SUY×ùᇷÞÁö¶¶¨Ïê_þø;¾yÕ—¹é?1{áJDë®7ó–W®ÐÐÏKù¡•ÂWl¯Ë­87«æüß–•”0ïß/ÑïybšZ¤‘â ?N!¥Û¸4·Ÿ¢k±®k”ëÍ'îo_§Cv–Q¥ «À÷ŠbªÊŠ)Èϸ3áñxÙ´½Õë7³fý&ÖoÞ±)_m•‘Ë/:+.ù§ !9I’ÄÊ5-ôÎ<ý² Ú_¶'wþì¼÷Ἀguåü94ÇÉ—\G¯ÙŠ·cÉ/%Wï ä=4­ÐàG<„¤ÜIŽ#Õ]ùg ¹å¯?ýg&ŽÇ3ó÷ÑÛ?{#…+%P»hŒ‡¨&ÄI„Bg²„4X„ h£µ—ȸ´\ǨrÂŽµR"˜åçä`¬ð“U±â³˜*ß¿²’ÂŒ‹pÂëõ²yûÎAµlÞ†½ß¸§j«ª¸ââÏsÅÅçsÚIÓ‡Œœ>JeE…ñ-Aô—ç_â±??…(Š€DiI)m-+iÝu€‹¯¹—ÉsdÎÝãG¦yHaq$2ãõKË>¡º|íæ-L?ŽÆÊüa"¤0¨Ž;¼\¡”¢ž½¾f9oßÚäDiÏ嚯KjSjM¦ªwqËQ»ŒaÇ—›ƒÇz8x¬G•X³ô:*Ê‹©*/¢ª¢„ª²"Œå%TUÈÄU]QBey1ÙáˆBVV§Ÿ<ÓOžÎ-?¸AØÒ*Ôêõ›hÙ°™—^ŸÅK¯Ï¢¦ÚÈåžÇ•—œÏé'Ÿ0¨äÔX?6¡ó~|ãuœ0m 7ßýS,f §ûâR+ÖúãG–}È.:2WhŽö‰±~(ú%wo«.¯úôu[¶rÍ—¿Dce>‡qņ¨#NV›¥RWk$I°â$JU9qeT9 ¥ZÚƒêuÑv«#¥»äª{‘Žn ÝæPËTñ·Ðé ´¨cE ÕÅT•—ÈnÁŠªËK|å%äç&?ž †ƒSOœÆ©'Nã¦ïÿ?QdûŽ]|º~Ÿ¶ldÖìy¼<ómj«*¹üâó¹ââó9㔇užS8.øü æÍú/?¸å'œqê)¬lÙ €äîmE&$eBƒfhrÙAD©¯Ë.9;kÌÅ¿/*(`ák¯ÐÓïå¯ ÷ÇÓ~Š ÝýPŠz ¹Õ¢Ô¶8FwÔįb´Ÿ*waPVxûþs”™ƒÊ:JBUÊ—ëï£W­Æk¯%æ­^´kŸŸ—+VE‰ï_ià{uE)Õ•¥”¤•Ë@DQ¤u×V¯ÛȪ–¬Ý°‰¼œ\®¸ø \qÉiENýv;Ý=½Ô×å„ ¯ÅÖgÇ{lá’Çú)rü¨—8âG¿…$\BÈ!y¬í’àèî³cܱg/Ó&M¤ Ç€Ý- & ìËwŠÞ¾ÃôlÂBRe $=®TZ%jMÄé’(OÔ¨~¬r)I91o€èåv‡“ýGœì?¾y]°~V–žªòRª*Š©®,óYW¥TU–P]QFUe Uå¥2Ó z½ž¦Lâ„)“¸îÛßD’$ÚvïeUË^øÏùÅcâì3OãÊK.àÌSOVr*,( ° €Ûwcë³# ŽnÉcmG&¡¸– òC3!©Ä‘úp[ö’ŸolÙ¼…é“&ÒP™GÛ±þxú$â{˜£–’NHl²Ý‹Q9îþ$;®*¦„»’%ãThÜ1ºÐòˆ„ŠˆzÚÊ%$<£=íìQȵ¶t:å%…TW–RUYê#¬2ª}ß«eTU”‘Ÿ™hñÅp[ö"ï ›Püâ· Grý¢«w»!¿ö¬–-[¹ö_¥±2ˆ Õ·Ì7’ʯÇ×NR‘ûí;ùþĨª)U¶IVO°/©"cM§ãõÒz~b/9ÑïEIé1Ûè1[iÝsHÕ]X\GUe5•¥+˨©,£ª²Ô÷YF±œÒâÂDz–AœÐétL™ØÌ”‰Í²Ý{÷³pé *ÊÊ0VVÐP7&¡•…?~$ºz·#Ç\$?‚Ä\v"²)æì’ýÐVʦI›Z[u^A`ʘ",v/^QB%<‚„ Š¢„W”ð ò§àû ù.HˆI²ã{KU ´«¾zÇ!'wŒªû' QF—£âŽŠûí[­?ªUµcÜzÃOòü„娜”nVo,ØúØúì=x4"vé?ÎÉɦº¢”šÊrªŒ¥TW–S]YF±ŒªÊrjŒåËK†TQŽLlÏÄæñã~»ƒÂ‚ü!iÛëX³±$É~h+ò .dŽsÃã@"’„2Žäíï’¼ö‡SW»µm'§NŸÆ•§V‡œïþ6~2ó bQÉä$5¯ !H"‚ ÿ&“›ÿÑWÏ÷)øê)޽‚ˆGP‹"^¯¿L®2êd¤;GY]T¼–—'oQF«wæ` K3îò!&ИÕãן9‘&ShõºÝëâð±.Ô:ôzƲRªŒ¥ÔË©öUueÕÆ ªeÔT–“››q&ƒ¡"#€õ[wbw¸¼öÉÛï_Õ;¡øÄIHŠ8’€"Ž$y¬{tY…µ-›·rêôÄ–=÷C§ƒlƒŽlƒ²coþ6ØÂI [o!äJtAò’‰ÐãÃÈ.Hx¯ˆG|*È¿{u½"¯8O–å;ö)SPÚÎ×®ð®È$‰2ôí;¼jý‰V/K3ªœˆRÕU›F–fª’Yb‰E‘Î=½lmÛr-•ûÒ¢ª«*|VÕÆòÀgmUÕ•å”d\„iOÖúÒ½=Ö=„ƈ/~‰YHG’œÝÛÉ3cíæ-\õ7C*¦"Î6˜±ºX²u@–A²ÄÆp£Þ‚ š'@^~rÇRó»½B€øBŽ}u<^oðØ#âöze9ÁG–n#Ó͇ArËiϰ‹].¥€@•q–Äå„Z‘õ4–«fÆÛŸUµ"Éó-¶~̶~vî=ÕÒ‰¼œ™¨ª|De¬¤ºJ&®ÚªJªåTV”¡O“é‘ BƒäìN:~‰»ì$‚„dí·ÊO·¶íÔ»Ünrs2&w¼ÐòÜdôý€tºè»°a†— ¢ µ¹ùHË_&ÿS~— Íëq{¼¿ùÏ÷x</ÁWÏ#àñÊõÝ/nÿï—׋”‚}¸’·Rç’U#JÍ.Ö,J-r"ç?…×Óèª$—¬ÓåæÀ‘viµ´² =ÆŠ2ÙªòU±‚šª jª*}dVAN¶ö3Âér³nëN@EûAeüÈK'âB¢’ßmçì®^ÉÛÔ®~skŸ‰s™s?†ËJƒ‰¡ìŸA¯Ã“•©%ZÑGޤæ|Ä,þî•¿+~w{}äç+sy¼2z„0"ôÊÇs¼>âôâ„øžÒ4&JUW¤Z¹ Qªºjã’¹n¥ ´wvÓÞÙ²ÿÊÉÐ:”•ªÆXAMµQ¶´ªÔTUR[UIQa|k¾´ljÃíö yû"¸z‘ )áø$@HQæ#9>ÉmÙ­Ë*ª_»yK„” dH#9¤{ÿ¢A¯×‘›“EnN¢ïW©ƒ$á#A‘ùI1@|ÞÀïnOð7W Ž·Û @·Û£ @¯â|.··Çã#L|ž×ƒÛ% B˜×$•nÔArɪhB®È¨œiÁõš­ôš-´îÚ‹Új*ùùy²…UUImu%5ÆÊ aù>+ËËÒf…¡À'þýÜ–ÝÈñ#' Î?ò# I¹®]ŸäìÚJAÝù-›· xrº[+™þ ¿ìãõ¹ÖéHr% ·ÛO~^ÜnnáÉDç #;™]nOà?aºÝùw¯—ËžÛ'Ïã“/£ËíÊq{Ó9ReÆ­é’$P»ÝÁÞ‡Ù{à,.ÊRPYÙYÔTÊ–LZF™¬ªŒ©6RS%WVÖðß©@`AUg×V‚„Ø/™É\e©_´Új(?ɽm箜ÎIˆÎàxÀñJ£z޼Ülòr‡?F"".·]ËÏã#?¡)Ê‚u•¤ç–Ë\n™zp¹äº.'Xîvû,H·,ËWîòxâŽ9FÔV9ÝãñrøX‡už9°ütPYVFm‘Ú*?aUÉ„¥øÊÔíDp¬³‡Ûv$¸Eyþ‘2¡!aúO–‚q$ÑÓ+¹MÛÅ\ã©s—,ãßøjÚ¿)gú7üH÷þe zy•ò4X©<‚ÃÈ-øÝGbn·L–îàw—Ÿ}uœþr—+@ˆN—ÇgAÊå.·—Û…Ãé¢m÷^¶¶îT]t·¸¨€Úª*jkª¨­6R[]Emucjªd⪩¢¢¬lخᬹËE ÉmÚŽèIIü$¤°8’Û׋Øx¥!×xêÜ_Ž{ IDATÅKøÁ7¾šhŸRŽtWz™þeÁÐ!;;‹ìì¬a·B$I X†2ѹ}¤åû®´ö\òo=&3GÛ;YívP^VJEye¥”—•QQ^JAþàkÖÜ%ˆý‡W‚„”pü’·üq$`ûö­7”M·î;t¸¤u÷¦Oš YXº+½t·VFCÿ2È`$A§Ó‘›“CnNÅ?}7·îaçÞà º­bß¾õ€ ™’м-y2PÆ‘ú@2‰Îîs/MRtüÈ(½ 2È ƒÁÅÛsdÝ.ëzÉ„œÐtü’ $)¸ž}0ŽV±ÿr€yË–#‘û"†7ùLÿ†_Fdzxwç-À§ë­„Åu×Aj,$‰àºvVÉѾSòö3Y¬¬\¿!Iñƒ‡ŒÒK™ë—A£KVn ÇdEòö“í;‘ É¿~]B«3(‘еàýÛQ¸‘M7³äìl˜óqrn»tWzƒi ¤‹¥‘îÖTd0txËç®óéx3²Î÷[G ­_§DR„¤pÛ)³í¬¢m÷ ÄekÖbëâÍúÂQzdAÉÃjëgÁ²µ€$Ê:>Ä]—Tv©Ú-K¹jƒMòØKnË·ÛÃÂ+<9ÝIc4XéÞ¿ 2È`xñÁ•¸Ü$·eä±FήS®Î4’&¤(É ý€Yr[ ¡n»tWzÅ™Adþì:Ÿn7#ëú”$3ø‘* ÉOH|n;Á¶{’àÚÔºƒ#í)j&ýIc4nºÇ½2È ƒ l}ý8®¤d8ÒÁÚM;@\‚m÷*‚îºÀf|É÷4¹‰±áðÏIr}ˆžnÉÕ³•¼ê3æ.YÆ a÷ 'Ò]é¥{ÿ2È ƒá‡(Št÷ôr¬£“öÎ.Ú;º0YÌ”—P^î_Á¡Œq õäå%·dÓ;s—!I’«g+¢§›ÐÅTS¶ö{J)lks¿ÛÎ"Ú¯4äUŸ1÷ã%qRº+åt·FCÿ2È`¤ÂérÑÑÕͱŽ.::»hïìâh{'2ùkï`òÄ&¦OžÄô)“˜ñÙ3i߈AŸ*ÇWoû— ²– J¹»Ro!ù÷HrV±oÿCé æCÇÚË6·¶qÊô)'¥»ÒË(Î 2È •0[mttvÉdÓÕM{GÇ|¤ÓÞ!š-–À†ƒYÍã˜>e§žtÓ§Lâ„)“¨¬(’þ¶lncÿ¡v\f±oÿBç%µTP8R½1‡ßJò-%„YtumÐÔ_0gñÒ¨„40šI7C茂@WÉ·KmÝ´wusÌÿÝ÷ép9*\ Ù°¤¨ˆi“'2}òùsÊ$&Oh"'gø¶ ,äêÚ@pî‘‹ÆŽüH!©ºíúö-ÓÔ_°`ù'Ü{ãeÿútWÊ©@¦d0|p8œ´wõÐÑÕ#KWìRëìö¹ÔzèîíA‹6% Ý}ä…UÆÖ2}ÊD¦MšÀ´É˜>e"ucj‡|láØwà ËV~ʵ×| ·ÛÃû >@ìÛ·ŒAt×ÁàXHÊ­Ím’³k·äí;lí£~ùšu\4ãì„…§»Ò ýËXSŒ$H’„Éb¥£«×G6Ýttûˆ§#Høp>ÛZ[¹í†ëX°bk’·ï°äìÚMpîQÊÝuzB‚ ÛNζ“äè\­+.ªs·š)Ý•^º÷/ƒ 2¯W ³§7@6Ê~k§³»·Ûp™i")j)ÕÆ ¦MžÀ´IÍò¿ÉßX7(‰Éb÷Þ}|ðÑfÏ[Àö¶ñfggsõßà_o~€äè\ øWöv2î:H1!ùÜv´’ú‹`m]¤/l¼¢eóÖüÍ;Ú8yêèŒ%)‘îýË`t£ß»—Îî^Ú}ä"L@½&‹œªì‹ÓøºKkb:Õ`0Ð<¾>@÷ñÊO³÷>BSCÝ`4ŸAdH7ƒD Š"=f›Ï¢1Ëÿß;ºzéì1ãtÉk¥…»Ì¤0≆5›FÕ§V­º²‚©ÇÉäãûW?½þø¿é6mÝΜ3gþ":B\<VõÌÓNá¬3Nc÷þ#|¸øSDhÙ>è!˜]7hÖ ž…‘ ®š%m¿èìXKþ˜Ï½ôæ,~{Ïí'¥»ÒÍýKÒ½£ .·‡Î =&ºz,AÂQO·ÉŠ(Ša.3Å»wÔd0¤RwÅ••e ¹q,S'ŽgÊ„qL8ž©ÇS^Z’ºö‡’$±qëvfÏ_ÄÜùsøè±@yr‚á6ŸuôìK³E ÑÙ±VòØöj JvƒFH +É¿àªè-­³õy5g}´tEÖÍß½šºšêÁêBÚ"Ý•rº÷/ƒa±Ùéêõ“Œ%ð½ËoÙôX°õõ«X1an5¤èî弜ðr)z¹¤R®*G¥¼¤¸ˆÉÍ LSÏ„qõdgæ;öð@’$ÖoÚÊœ…‹™;ÿc޶w(\œÑNˆ«€æñãøâ…çsðh'ïÎ[’è-­³‘­#+Š…TË:‚Áµ Kòï&k–Üæ½’«{ƒ «þÌËo¾Ã/~rsÊMK#Ý­©ÁDº÷ïx… ˆt›mt÷ZèðMW…ÎO3n·¼søüHÁÛtª Òe ]N4¨fÊ„ñL™Ð(“Ï„qÔVWU/‡¢(²nÓVæ,ø˜¹ –ÐÞ)/¦·µ©±ú­?úz½ž¿þ뼂€äêÞ ¹Í{ ZG]aãë@|TBòYIþÝdø¬$ÁÒ:;+¯êŒ.ÖßøíoQ]Y‘üŒÒK™ë—^p8ÝtõZé2Yéì±ÐÝk¥«×Jg¯E¶rLLæ>Ù…Fd"€¤°NV‡%¨‚â:M‚¼Ü&550eb#Sš™:a“š(ÈÏK¬ÇDQdí†ÍÌY°˜.¡³»;êúx)]=½ê$Õ?^Œ¹Ujõ?ýèûß&''‡çþóÉÕ³ErõìD^™!d"¬¦A%A'¤0+)K,;>Ȫžqò;-Ðýèÿ}}DG"F™žÐ W ÇÜG·ÉF—pº|#[76zLV<^/î.“bšµ£H“ŽŠ8Ê£¼},'¾*YYšëÇ0eB“›˜ÜÔÀ” ”• |ò… Š|ºvs.á£ÅËééíU‰¹Å¸Ä)¢†’’b~pÍ·è1YùÏ; I,;> 2v4èÖ …ÁŒ;ÿ*à&ÉÙÙ*¹LÛTœðÚ»ðãk¿3*ÞäÓ}>Õ`"Ýû»ÃM—Ùæ³llt›ú‚dc’ÉÇlíX3±çׄC½\-²½HP4Ë8Þ¾£¥$I”2¹©^&Ÿ¦¦47ÐÔ8†ì¬‘—h/A`åÚ ÌY°„ùK–c2Yb¼ ćdhâΛo ´¤„ßÿõ5N’Ë´]rv¶´Ž«z§¤³`Hî•XR·hÝ9ÛPuö ÿý!×~ã*JŠ “nëxSzé†Ñpý$IÂdµÓmî“IÆÔçK°ÉdcdžÃåÆOê™h1Ú‰«Sñ#ôüXLþò¨!¨`¡^§£nLSš˜Ü\Ïä¦z&77Pcš ãŽx½^V¬Yχ —²`É L«ï—äb|1G†]CÝX~ôÝk°Úú‹¨ŠÖ³n†8väÇP¾ºDXI¢ãè½Û¼³&¿ñþ\nüv|ÛœÒÝZ ýK¯@·¹ŸS]>ÂñL>6zÌý¢°0äÑ„GÇ þ“ÕW)Tù¹9LWÇ”æz&5Õ1¥©‰ãÇ’Ÿ—›ºFF</+V¯c,\¶‹„"­¡Ø.Yµ?b\.Ö´„ăwßANNû÷{ØúHnóNÑqt ÃdÁ’ª•dÛ5ÇPù™É¯¿7‡ï}íËšoôÑð&ŸA(úì.™lÌýt™ûè1õËdcî÷ KŸS®â2 >O1œhHÁ$ÔA£¬TĪ+˘Ü\ǤñuLnªcrS=õcªF]¢A¼p»=,_½Ž-eáÒ•Øúúc»j£" Õ à’Õ,"îéÓN>‘¯\q)v‡‹Μ€hÛ5‡a´Ž`h-$µ’ú“Øh½¾dÊ>‹¦·æ|Ä÷¿þ•ÒýM~4ôo°ã^¢(a²:è¶ÈdÓíû×øì£ËÜËíQµj¢¹ÕÔßJÃK´»¯â–“ R‰^œœ^ðŸže`|} “›ê˜4~,“ÆËPIQúl—îp¹Ý,[ÕÂG/cá²Oéëï—Ô!ÉSì’ýõý÷¢Óéø÷Ûa²Ø<Ö}bÿ¡õ÷<r놞 |k èm{æ*Nûñ¿g½Ïׯø"…ù©]à0Ý_ðÒ½ÉÀíè±Øé6÷ÓkµÓc¶Ómé“?}¤Ók³#*¶~ŽÜB ‰ðoœo©ÑKÃãGáõµþc×£?ÇUZ\Ȥñcdò7–ÉMuŒo¨!Ë`Pi358]n–®Zˇ‹–ññòÕØ´Ä#0„Vo4\~É…œuÆiôÙ<÷êûˆ¶=~ëhз˜ˆ…!%$Å~J+©WìÛ÷©¾x•=fšþþêÎK¤‹µ2˜²ã•a³»è±8è±ØéµØeâ±Øéµö§Ï᎒0% )âKbH©ã!é7Þè…jSˆ$¡×é¨c”-žqc™4~,“›ÆRU‘ÞÆ¥;'KV­å£E+X¼rLB1­^m®{:;+‹_Ü{'O<÷]½fÙ:êÛ÷)Á-&ÖÑPºë`x,$µ’Ì@§`ÞúzVÕ9?›ùþ\ý—/¾€ÉÍãã:’-¡„ J˜mz¬z-Ù²±‰§×j§ÛâÀãñúÎÐê2‹Dª,ŸTþêš§.ɾ¨ý”Ÿ—Ć1L?†IãÇ0iüXškÉÏ͉§Õ T`w8XòÉZ>üxKW­Åátùîé(®Ú4rÉj¹§¿wõ7i×Èöûyé¹€$ æ­¯Ⱥxج#B ³’üøõHŽöÍ¢ýØ'Œýüc}ž—ŸxÝ00ÌH·„œn/&›“ÍAÅA¯ÕA¯M&“U>6ÙœH’ï~T®ì¬HP_Î$ üô`œ³z²´xÝj*K™4~ ÇaÒ¸Z&K]MŰ<#ýv¯XÍG‹?aÙª\n·kø[‘Š«6Á8Odir¢eIq÷Üv3’$ñ³ß? Šˆöc+$Gûf‚[L ê|aX,$EÆ]`k  S0mø¯>Ïxʦֶ’÷æÌU—^õüt'T ÞþI€­ßE¯Í‰Éæô3@2½6&«“~§;xF«&šO\RÔÞr´ãÈrÕ•žÕÊÕäÄjW5ÎmÙHZ _v–ñuUL7†‰ãj™4®–‰ãÆPRtün—î°õÙYüÉ>üx+V¯Çå}6’Bœ±Ë˜®Ú8b—QŸ ßù·ßt=åe¥Ì|o-›Û@t[Ó†7‰b Áð¹ì@¾jÊXR‚ë`Ûý®¡tú÷ŸzùU.üÜY”–ccc¨HÍ+ˆ˜û\˜lNÌ}NzmÎâ1Ùœ˜mN<‚o¹)Ÿ‚—?Ô‰&) ÒíªþÄWøóm7œ°“‘Cè¸J‹ ˜ØX#[=5L?†qc™Dƒ!€µ¯Ÿ—¯æ£Å+Y±v=žUÑUb«7a9 ʨ;†ë¿w &‹GŸyÁºë®CÈÖQÈö䉵’<†û%y×K²]¢eÇ"}~Ý ‹• O¿ü~uÇ-Iµ“î–Óãõ‘L8¦>ÙÊ1÷9å2««Ý­P° —™ò8EËÒK %†Üa{2‘Qêu:êk+˜8®– 5Ll”-cyú¾dDX¬},ò¹ãV¶lÂëñªXÙ±3\‡TÝÓñ<òÞ};999üü/ÊiÞnó.ÑÚ¶èBÖ½C²ßÑ@îE¦$‚û%õ#gy´ æÍ¯eUÍxðóe]uéEœ·êô¶½ûÊf¾ÿ!ß¹êÊ!éˆÝåÅÒïÁlwcîó‘ŽÝO4n,ý.úœžØûÕ °U¬òè·Cr”ñ£dä@Œ·IrT7ŒKüúD/ŠW޶*ÙYÆÕU2±¡š ÕLh”?‹ GdžqÇzL,[ͼ¥«hÙ° ¯îqЈA\œ6zýåžNtS¾î¸Æú:þ9sÛvîÁÙ+˜6Î"˜È`gÓ¼Ã1설–Žè9,XwÎ2”Ÿô£¿½:“KÏûÆŠÄßBEIÂæÉÆêpcî÷øÈÆG4v–~.Òj•|ÿ dÉ(ò‘’õ7«žÄYBb-Ã.ø‹^¯£®ªœ ULh¨bB}«©,M~ë“ ݽÌ_¶†ùKW±aK¢$ð’£± !Erâ@Üï‘Q““ßy½^ÏÃOþK^ÍÛÕ»]´íYNš%2(‘„äƒD0ÁÁŽÌà‚iÓëYÕçýòÃ%+²¯ºôbÎ>í$více[¯L@v—WaÅþçSp1ÜcªÝˆVœ,#$wz,Yq‹N–h8)-¬CäDƒ¦z#êLh¨¢¹ÞHS½‘Üìtºí3PC{W –­aÞ’UlÚ¾ Q ·„¾CR¥fcòqIi è®[n`Rs+ÖláÝy+@Ü‚i“?‘A¹½Ä°'2(‘6O¦j‚ƒ«·U´^¬/lüâïþúWÏ_çí“ßšâEñ—ëÐ8‹Z5(g†\Ìþ$;®²¡^2(Û``ÜØr™|ê+i®“?‹ 2Ư8ÒÞåsÇ}ÊÖ¶½Úˆ#ê훚—¸—úQ¹§‡cS¾,½??úYϼ2‹=Ž" Ž.Á´ñ¤i"ƒiEHª ’÷°hÝñ¦¡üÔ[žým®¸àóÔ×TsñIUÌßÔ¡MvÜ?$€d½z)1$•g->âSW ñ[šª™ƒhYq>Íu•>â©dBC%õ5e™Dƒ€CG;Y°| ó—®aÛ®½¡®öx…%íJK‘·"Η¨T“ ÷ÄÿËÍ×}“¦OåÐÑNž~ñmDKëHâQÒ`5ïV„DKp°]¢mï }AÃç]TžøØ_ÿÉ_~ó œh¤í¨ý]vßÉɶÜù9ÿ%'d¨üÍ HEeõr½^ÇØª&ÔWÒ\WAS]%ê+)/Él7’pàp; –¯eþò5ìØu€ —!~Y©zÁT}o‹qñf¡ñ=KÍã¹ûÖ›øùþ‰ÓåFruoûö¯"”H;BòA"tr‚òj¾ððò5ërßøàC®þ¿ËùŸ«ç©9»qy…H Éö@{qܲRCIV–f9I^ׂ¼lšÆVÐT_AóØ šê*?¶œœL¢ÁˆÄ¾CÇX°|- –­eçÞƒÛ@)T‘©zKI—4 I”hu:úí¯ÈÍÍá_o~È¢ë@ò:…Þÿ!¸"ƒaÚ V+ÒR (‚ ]’Û¼C´îzK_:õ»zþN>•©šøògÆð֪躑¢Äyb»£":¤ÞW-JꄟŸ„,-o“Ê¢êŠ"šÆ–ËVﳺ¢˜ŒÇmdcïÁ£Ì_¶–Ëײ{ÿBïŠøãÓq=«jëV&ò¬J0}Ê$Þýe¼¢È¥ß¹—ý‡Ú‘í«¼]+ŸöÇ“œ€W lv–~HK OpðoQÑ äy»W¿”U{QÃÁ£í5¿yú9þð³»øæ9uììÇæôFÊRm$éNÆ)X½\Ë’A1—‘TÊã•QƬ_V”ç#2Æ‘‰§¾º½>Ã2£ ;÷bÁŠ._ÇþÃÇ¢¼d© éç.•£ßëq/Ñ£’!7°œ(ý‰òÓ@vÅE…üãÉß“——Ë­>)“‘·ÿ˜·{Í¿€£·–HkWiKH %åÜ$+Ð…èÉz×?ŸUuÎý-Y‘sÖ)'ò+.á[3xqѾÛJ¶³IžŸ"YQyi@Á‘å:½Ž:cMcÊ?¦Lþ7¶œòâÈuÜ2ÏèÁŽ=Y¸bó—·pèh'A %A„ë÷$ÏO CL”Ñ«üR¨ÄŸùMãùÏ; xoþ —гîy$ïAäD+i´xê@HkBR |nR®äìÜ(Zw½­/úíÇÿþ"'O›ÌÔ¦qœ3¥’•mÝÃÖÑØ„§œÈÒrûäeÓXS*“NmãÆ”2®¶”ì¬Ð ãFÃN½Dbû®,X±Ž…+Öq¤½ €DôÚ€gh™*GÌêqÈÒàÜH\NŒ~ôÝ«¹â’ iÝu€_=ñ"‚µíMÉÕ½ 9‘!­çECÚÆ”PÄ“²‰Œ'ݩ˫>s|ýXÞøËÉÎÎáϳwÒeqÎ÷åú¾©ûrSéïVú¤ôw«ËÖ~¸/9ZûJ¹:$ªÊ i¬-‘‰§¶”¦1¥T•‡®ã¦F©(ÏÒñ­mûXøÉz}²ž#Ý!oHáqÀ==@<$ê=­%~&7PKM®Jû1ŸUµg>Ùqi|V×é§œÈ;¯<ËíåòïýTžëh_ííZù ¡q#iœæ&O»j IDATŽã‚ @JzdR**zôÙS³j/zH—UPó¥‹Îã±ûîà¨ÉÁ_æîÂí7 ø )ô’¿G*÷ð‡l€àfÄM&)Ä)o2 ÁM-AÒðã°ö³³ô4TÓX#[;ãkKW[B~npÃ¸á ž !¥'$IbKÛ>®XÏ¢•hïêÕ¦ìµ(WßoÑVÍO }6´%ÿû¨ò¬¨&ÿ„öY !i!ºh×(•D[^Vʼ·ÿÃØÚnÿÕÓÌš» ÉÛßî=¶è×HÞ6À¿šwÀ::ÈŽ—]´x’ÈAôä ½ë_Ȫ:ç¾Ù‹–å|攓øÚeòÿf4òêÒýJ !ÏGHyÔÒ(åáY¢r ì!K@ŽâF.-Êe\u ãjJh¬-a\m)c*‹Ð+´†2‡$IljÝË¢O6°hÕ:»LAåšÚ†¢Çù,©=Ú—è Sîáõã’QƧœ8B§ÓñìïÃØÚÞxÿcfÍ]†/nôã5n¤ÄqCH D‹'mðÇ“ûë œØáÛÈ/ªDµ†’ìhèav–ž:c! ÕÅ4ø>뫊ÈÏÉÊ(ë ’† ˆ´lÙÅÇ«6±øÓM˜­ýòQ2H#1À¼˜Àé‘n¤P¹ZÝT1Êcše—§J §Ü:LPV–ÁÀßþøÆÊ Þž³„7?X ’àz×ýÑs€È…SK2‚ã”P›Ÿô–¾têwyöyNš:‰¦†:®½ ‰ççíFPfõDóåF…ùü P¿´0‡zc Uò¿úªBjÊ 0¤`EƒtŸ”!סƒWX»y‹VnbÙš­Xl}@ â òž°~Ô¢Èòˆ »å‡Z ÊQZ1Éö'E㊿¾ÿn>{ÆiìÞ„ŸýÞ·ážu×[’³K7rpœÆ”8n i€xÒ‡ºÜŠ)ªÏ¼û·OðƳ3¥®„ÿûLï®9<°ìn.ÅC¢×ë¨-˧¡ªP¶~ŒEÔWQR­"#ƒ ’ƒÇ+°fÓN>^µ™ek·`ís N01XïÓCžaCN B‰»?ÉŽk€¿œ[®û×^ó œ.77Ýÿv‡ ÉÙ¹V°lÿy®Ñq7Râ¸%$!%/ò†~6äõîr½Ýkþ™U{aÃîýkîûÝ“<õÐO9ÿ¤Žô:X»+±•òs³¨¯,¤ÞX@½Q& ºÊ‚@¢Aª‘±„2ðÃãñ²:@BÛè³;Blœ*(fõ8dÅÕlŒÊqkÐdUî0fØEü¢B”_¹ü‹üìÎ[D‘Û~þ$;ö”ãFÝ«_DŽ)·#?n&¿ÆÂq™Ô_’ƒÈŠ#Р˫:+Ëxöýè³ ¿~ùÅ<|÷-x‘gg·q°«Ÿˆ`¢"ˆXY’G}e>uÆBê+ ¨3RY¹MöñšH.ýË@n—O7Ê$´¢e;ýg“R%¢ì+I'¢}-ÿ(r×`%4ÄѾ–q%šPqögNãµçž&;;›Ÿ>òw^w!ˆž~o÷§Kή5À!dB ,œz¼“Œ,Bò“R.P T ú‚ºó •gÞÎsÃ5_çŽë¾ÅîáOïnÇjw“mÐ3¦"ºÊBê*ò©«, ÎX@^¶¶uÜÒEá§‹Œxeg —Ûê m,þt Ë×mÇápû~Q*<¥U¹:H¤âT<ãIdØ É’AIRJ—  ýÁ×”‰Í¼óïP\TÄã{g^š’àzZžíG–!“Q'Aëè¸wÕùq\»ìüˆOêGN4ˆö#«ÐçÊO¾ñ…™³ •å¥|÷«WrÇÿME%ªKó"”å`)ÏŒRÎ œ.™„>þt +×ïÀátaÊ Â¿²Fd9ÑÊUãqÊ (×phŸä­Z®TÚÉÈ(×+N¤R½k”U[]Å+û3ÅEEüs扂`Úò¢h?²Šà–#&n¤Äˆ $ˆ %²)« bßÞ1äJ§~çñ¿¿¬«(+åŠ Î´7ùtÛ¤{ÿFN7+7´±øÓ­¬Ú¸‡ÓC\0Yõ“õ5A¤lixåDÖT#Ðèˆ"GŠ^¯…°òÊßþÌØÚÞ·‚_ÿùe@’kÛL±oïÇÈkÔùÝt#Ê2òcÄHI9?É?Ö ZZgëô9Åúâ _yðÏPVRÄŒ3OÖþÆBº+ötï_:Âîp±rCº•O7îÂåuÇ ÕZqª£ˆêC¡Î†”@ã#ÊhKô„k#ʸå(ˆ2++‹žüÓ&OdɪÜñÐ3H’„hÛû¾hiLF]·"?®ç©aDÄÂe%‡2` 0Þ`<ëGú‚ú òóryù‰‡9iꤰsÕdj+KUyºÈlÙ#ý+Öí`Éêm¬Þ´ ·ÇKÌx„ïX>ŠŸ0+>2@<$®øH’q-ãRÇíÇ5­×Um\Z¯k”öŸzôW|íK—±qÛ.¾yóCØ.DûáÅB÷šý·“8®Wb#ÊBò#ÌRr´”ôB÷šéªsŠTŸyËÏãÕ§¥©aì°õ5Ýuº÷/Ñgw²b]‹Woeí–= }Aèí;R«$AÛ4ë0AYQ«&p½$ྟÜÄ×¾t{å{w<æŸkÔ"ÈÛDÞlÏBpo£IF0B-$?t:™ˆr-¥ `,:}sVÍ~ªË)Ÿ:¦ÚÈkÏüŽc…ïœhrÔä'_>’dÄ+{$ÁÖïd¹ÏjÙº׫jmh~û±vüoöáõüßÃßþ!$ÃNQš'»¦(¶ï;ŠÈ^ —㯧¬“„¥~œ€å•T†]ȵ<Ëë;߸ŠÇ~ñSÚ;{ùòu?ãH{7’Û´ÃÛ±ôHâ^ä$ÿÞFnd2:®Wcˆ…‘NHÊtðlä9J@úìÉY5ç߯Ë.7q|¯>ù¥%E*rÔäk/Oƒ){´¹ë¬}–¯ÛÁâÕÛY¿m/^AÔæV ;Ö¤£¸õVö(Ûhí§ÿ¦|Ê ?)Tn’„4X›ò]ýµ/ñû_ÞÕÖÏW¯ÿm{!yl¼KGôìDžüÚ‹œÄàa&1„cDD’âl%P¯3L7Ôž÷3¡ úÔ¦ðÒM^nNj²µ•¥ª<]d¤Jöñ³ÍÎò–,YÓÊúÖý‚¤âÖ8ásã<áD­ý¤&®&2®¬„ãGsÂÇ,'DUËTAˆáedûþ>ÊßýæU<òà=¸Üþß-¿¦es’`ïÚ—ýNìÛ‘“zPL|e„“ŒBÕ‰³F ^—SvJVõŒÐç–~áì3øËoîÇ`H|RìH#LB˜,ý,_ׯâ5­lܱQP(®4"-ík!-í'œÐÈ¸ÔÆ1@ûþ}4¶Ÿê„†k¯þ:ß'‚(rÝ=³hÅ:]oç'¿—ÜæMÓ»GÜÄ×0* BH)‹ )Uõº¼ªÏfϹ}VÁW¾x>Ý÷ct -:šIc´R¯¥Ÿ¥kw°tí6·DE‚ÊFþ_øÛ¶|¨Tpáî(ßyqž`}‚µâVÜá–W¢„”Ñ 7!$Ô¾rÉ’·ž\÷íoðÐOï@’$îüõ_x{νvo÷ª?IήՄ¦w˜5ê´bDfÙECØB¬ È¼“œ]ë„ÞõÏ*Ïøñ{ó—äT”•òÓ›¾/WJóI¤£¹©F¹¥-m,]ÓÊ–]‡EµØqtÝ ®3â+—⬵\J‘b+I¤P¬–.ƬG_¬ªRá†ï]Í/î¾ €GžyU&#Ip ½ëŸ“œ]ë®ÂàŸø:ªÈF!A)ùWs°áså‰öÃ+0äÊO¾áå7ß3Ü{ã÷B,¥‘ŠQ0DUt™l,]ÛÆÒ–6¶í:xÕ (ö¨?©QDtB‰%_³ˆ¡­ã”>®p« 9Q‹RC É f7â•£ørË¿Ãý·ßŒ$I<òÌ«<÷ê{€$æ­/‰öÃ+ˆ\½{Ô¸é”U„RжšƒN´íYˆ>'ßP:õ»/¿ùž¡×láÑŸÞSŠ£ÁÒH÷þ)ÑÙceiËN–¶ì uÏQDÿ3¢lcˈKKĨ¬INŠ,¯XD™¬üˆ »Då…%.'<.—LR0®_ÿ}î½íz¼‚À=¿ù›l! ‚eÇDÛž…Œ’U´`Ô¨’’Љ–ÖÝCى׽7IŽÙj㩇îš}ŽtWÊéÞ¿ÁD{·ÅGB;Ù±÷¨¯4º‚Ž(JP-Ä¥û“š²Bä¦Ðõï“Ë+îþ$0®;oú!wÞüCœ.77Þÿ„œÀ nÁ¼õ%B&#+£œŒ`%5DCØCù@)¾D}Aý¹†ŠÓoFŸUpÚ Sxî±)).ò§&/ùòt‘1ز‡G»Ì,kÙÅÒµmì<Р3ƒ”±–ã8åZKû™ »Ø×+ZûÉdØÝsëøÉõßÇbíãûw>FËæ6½v¡wýs>7ß2ò¯Â0b—ÒŠQMH %²µ˜”àO Ï«:#ËxÖíèsK'ŽoàŸø5ÆŠ´WøéÞ¿ÁÄ‘N3Ë|–Юƒ Dò7¥Â‘Õ•ç*ª¸‚ÏO&ÃnxAKû1‰.ŽöµŒ Iâ¾Ûoâ–|›öÎ^¾ýãßж÷œÚݽæ_ƒ?µÛJpI ±É^2õ„–RÁyJuºœ² Ugߥ3T©6ò⢹1úÚwâÑV7Õ8ÔnbÙº],[·‹=‡:åÂxÓ~•J(üXË[²†´_-íGL° œ›#g(ñeÇ&Äȱ+õƒ¢ÏaåÇCÊõPX^9ÙÙüá¡ûùÊå³çÀQ®¹íay9 ÁÞ)t}ú¤ä6o%4ÁIÆ2 CH>(H)‹ )Ucu†‚)†êw겋Ǖ—–ðß?ÈÉa«„Ë2¢ÉUk/ùòt‘¯ìTàÀ±^–¯ÛÍÒu;Ù¤'e„¡„QŠJ%˜ˆRTS‚ÉŽ+Ö8“pUHBŒ,j™FȘXU-Ód¯}œ„TQ^Ê?žx„3O=‘Ûvñ½;£×lEòØŸ<% ö6‚©Ý£>!2„¤@)å\fh úì YÕçÞ®Ë)ŸšŸ—˳¿¹s?sªâ\5™É—§‹ŒTÉNûö°lÝn–¯ÛÍþc=ƒB1•Pøq¼Š{€vµP‚ ÒÊ6ZûúdP"ãŠ.{BT#ÐÙ¡„8±i/>ýucY²j#7Ü÷yÕn·i‡·sÅ3ˆž=È[H„Ï3Ê‘B ƒ‚”üË åÀtúqYUŸ»E—W}fV–Ǹ+/:×wžš¼äËÓEFªdǃ½‡»Y¶~ËÖíæp‡)9Åv¬é-ù8 -ík±¼´´¯…¢ÊI„”í%LHQÆe\Qïµq…Ï8ë þþ‡‡).*äÝy+¸ã¡gðz$gg‹·kåß‘ÄÈdd"t·× …!CHQ¶ÌPPˆLJµ@£ÁxÖôõèt:~vÛùþׯLÒH'âI”vêfùúÝ,_¿‡#æ(Jȯà•‡ü]õ-9­7°âN!ÄTœI¶Ntq’Rî`R„ :ŽÚk‰’¢üê¯]ÉoᅢÁÀ?gÎá×~I’ü›ëý y?£vd2êG^(uÔ­À £rÒ@[fHRüAè^ó"å.«¾¸ùËýå%]ÉÂÝ7|[³üÑ<H ;t±bÖmØÃ±N‹¯4úóT ‘¿DG”ò¥^/¾òH½§œpe› ’1]ÐØ†jµ8û³z²”UõzÜ~×÷[<þ·×yæ¥Y€$‰¶½ï ¦MoÜ\ÏLŒFå Z‘!$„-3ä&HH" ¦M3%Ñm3”L¹æ¯Í2ôš-<|ÏMôú!éß`®þ0T+K´íïdù†½,ß°‡Žn‰ªä¤mU ”«¥µF/JŽà¢Y” É ·(ƒ?2$)*U]‰zÙUPŸÇSþœ‹Ïû‚(òÀcÿàõw‚$ ‚µm¦hiœÖí'#ÿ¶ã2BŠ0RR>" ˆ–Ö÷\}†ò“®{kΓÅÊŸ~yW`U‡Œ% I‚û;X±a+6쥣×üA휸IRN*UÅ ¥¤ø¿ö#‰2n9*D)©”G—£^ê.KPN¸4 ¨Ý’µUF^xòQN˜2§ËÍm?’–¬Ip ¦-/‰}{!“Q'Á ¯nd‘!£‰!i€"¦¤\Õ¡„Àªuç*N¿}vᤦFžyø^šëÒ&n3œq%I‚Ö},÷‘P·¹Ÿ?þPd‚…kj?JœGRœWû Œk0ã<áãŠÖþ°fØ)Ǒȸ”ãœ>®`y8!†¦¨ËŸ'LÄóþ-µUFvï?ÂM÷ÿÿöÎ<>ŽêÊ÷¿ªêMû¾Ø’¼È»-¶l0¶l¼&^H[x¼Ï&Ÿy!“ oBf&ÄCXâ ï¶dÙZlÉÖbí[K½WÝ÷Gõí®¾]Õ]½Ø’ìûû|ÚÝ]]}Nrë|ëž:uëœ; PüòÐñÿ£¸º"<û½àÕ#Óâ@2)!<í·vVzíLÁQ²\*¬ûŠ`É,ËpØñý§ÇçîZo`Ëܲt-¿Ú¶ !hlSGBûO¶cpt"´<üGÎ&~‘`ØäA›<¨Q6 ¿ñ;×OpÓfü›‰ËŒÿtuØMÇ)ƒîßq7¾ûÔ°ÛlxãñÌ_VÛº®^yèØ¿Oÿ ¨×Ñ ^C³/}òDkBH Š™ÕÞè¯@9DÛKñÍ ŽÒ•°mÓ|ïë!ÃaglèÙ5òg~ù䎄Ϋ:pºCc®È$ˆè£NþzG©@Ò(HItØ(ÿámæS%¤+Ý8’ñ¯Ã„ÿÜœlüðo¾‰ÏlX·Ç‹gô¼þöêZž¾#O~ Åßµ“Ž^ðêŸ}!)q %! hi[x)€ )oé&1wÁN’mþœJ¼øýoaÁܪàwl¦¾üjÛP‚†ó=ØwªOµcdÜc˜<Ò:½KZ“µm®lÃ)zäeˆ,³~´vÑuØØÙ¸¨íÈåÑþµ±ÇQ2˯4¢ã0°kàßÌoÊÈÿòÚ%xñùgQ1£ M:ðWO¿€æ ‘}ÊXËoäÑÆw¡NÔ‡p[7¿à5q %)æZ€L¨³…˜!8J—K…+,™e» ûõǰcóÓ<Úå²BPßÚƒý'Ûq¨áFÇ݉'“IÉ Ò:eû>‰¸Â–S‹K¯¬æ•H,hظXD(#ýÓuظ¢í„Ýè1j9í6j¢Œ1¢ŒöÏî{íÞJmß °ë¡Ïã©]C’$üú­?á»?ú <^-ѽL<ý'¡^ì:µyÁ…p[7‡Q’â@JAšf áf:ÝPDëKñ-ÿ–ðîùômø»oîBf†CÇ–ž}#¿©/Od]YVpºµN_ÄÁ†KpNxc&îé„(IÆ¥Gq)‰ý'.=ÿ‰— é6ê‘iÍúÑv©íø@dÁJ˜õ#m1Aqaþ×sßÁÚ›W`ÂåÁ3?üWìÞ󱺺§÷p`àð+Á]/"ç¤ãmÝiRŠb:ð´sàåC-áÍ”ò–nsì€ ÙæÎš‰~î[Xý â8DÚ \#šÔÍã‰p*ˆiŠI§éA{A--ã•‹y‹7J9óÿ¢-WE<¼s3¾ñØ•™B€ƒ øåÞzô M`²’Ç”í°ÓÆñžRÈjÒÚa§Y?Ú?»t6vÍöŒ(õ€ýÊÆ¥c'Õ}ŸâojÑ¼Ùøúã`ý­u€q—/¼ôküì×{ +  øÆä±–ÿTÆšÞGtyÎ D¼iaŠŠi Ê ŒgÛ'Ù«¤‚åŸ3g¬±¸0ñ³¸ÿsw!+Ó@Á»[ðÖŸÏa4x£d’GÒe›$’’ ]³v:e½0¯´@bAÃÆÅ‚Ä\‰5áRm”v…—ë–j™}ëÜ嬊øÚ—¿€Í×A¸Ü^üÇÀK? ýC#ˆ¢¸.O¼ÙÛµ{ŽÎ´àB䮼<7EÅ4…£Œ—µŒW LÈ(¿Aʯù¢`Í y9xäÞ-øÒ½›‘›Ÿ_ÆŸŽµá­Ï¡o$8bJ4q2ë]™ÊÕB”¿$ãÒ#‰¸ GÉì×8qéùOWCCØ]G§TkÄ’â<ñÐìÜú)H’„1ç~öÚüÛ¯ÞQÏ þ±6y¤á—ÄÝsá)F¡Î´ÀËsÓHHÓ@×.i»ñŠ”ŠÙsW‹9ó6 ÖÜjÈÎÊÀCÛ7áÑûîFa~.B°ïÔE¼ùa#:{G$v”ªù œ˜´åŸ©”8™÷† 5û~2ãJÕ¿N\ ùOHI¿ÒƂҢB<¸c îß¶ » ƒÃcøÉ/߯+¯¿«^O€øÇ.(Îó{”ñ¶CŸ'b»çxyn‰iš(N‚©@±˜UµBÌY°E°å/€ ‡÷Ýs'v=pÊK Ap¤±o~؈æŽô%¥ˆ$Ì%³‰‹hV×&®ø@L¸¡  MQ ˜ño&.3þ“.Õ&WÐß²…ÕxxçVܵa , =}CxéÕßáÕ7÷Âí ÞµØ7Ò¬8[ÞQ&:ŽC=G4„0ˆxyn‹išÉ ŒGçÆËF¸”W$f̬snìKA°Z-عeþú¡m¨šY ¨?ß‹7?8ƒS-—¤Himhˆã?!h„lE‘wØ%¤¸ûÞD\’(`ÃÚUxx笨] ¸Ô݇yåM¼ööðûªïp£2Öü{ÅÝ]u4DKs´aÁ ^ž›Öâ@š¦Ò¹¨Ö µ”GÁD¯a*¥K¤¼Åw ö¢Z@-’„Ï~z¾ú¥í˜?§ÐÚ1ˆÝœÁ¡†Kšr\ GÉ&ÊO¦Ä$ᔀ£¬—.КñD²ÄèØ#Á¶ˆÑ±kó€f›™å© Dþßgg8°mËx`Û&T”—ZÛ»ðãŸíÆoßۼЛ(Ä;X/ž{›xúÎBÑ©~(ˆ|ƒˆ—禱8¦±4e<#0Ñ©ˆ  ö¢…RÞ’­‚½x9Ñ"ŠîZ¿O>²Ëªw¬ípbï'­øàX+FÆ<é9J6 3‰;­vq@×:A«SÖ›4ÐĹ¿è6’Ð×"m…—³¥ÚŠ¥x`Û&lÛ´Y™€3Ímxñ§»ñ( J€xNÈ£gO¼ƒÍPGDD0QÐ?OjÓTH×€ ÀD›¢Ád˯ó–le« ˆV¸cmž|d;êjEÁáÆNüñP Ž7uƒ(JÐE4‰@ˆGqé&î8~ôâ2,«Mö~5‡É¸VÞ°nß„ kWB þdn‹?ÛºIˆâW<½G”ѳ¿'¾‘ 0‘vÞ9¢kDH×â€I;yk>€"Áš3GÌ[ºEÌ(_ A²Àšº<´sî\W›Í ™ÀÞOZñ_‡›Ñ?<¡)é±I)ôOœ£äà·â!d;E èùŸŽ@0ãßÌÈËŒÿ¤KµÌû‚¼ܵ~5>·i}h6ŸÏ½ûŽá•×ßÅ£ A{²Wq÷RFß!~g;ÂsDÚ®9¢kTH× tÀ$B-åi¯c ƒIʬó—m3f¬ƒhÉ€¼œl|öεضùv¬¼aQÐÁñsÝxï`Ÿé@ —2I,Øÿl²¥ë°IÚf“bÐWDè:‘I<:ÁÍæ¦W´ è&´1F;îX[‡­×âÖºH’8zº o¼óÞÚ»£cãª%àVÜ—÷)#göÙÕ }ùƒÚ5ÇAtŠé–˜´#&:«Ú™'ÙË¥Ü%…ŒÒ[Kv%µ3§ªÛ7­ÇöÍ·aVE`ÄéÆû‡[±÷P3:úFŒ“›º@?)&z´Ÿ@RÔµ² Ä«>ePØŽý}”jÉ슖’$bM] ¶l\ƒ kêá°.võâÍ=ã=¢½£'¼÷ãÄÝ÷‰𫲗xWçe¼ý$TBcn‘ ô¾DDש8®S1ØÒR-ç±pRËz¢µXÊ™«1ãõö‚E¹øËÏüvl¹7,™ò1âtãPýEì?y'šºðo x!.XMÆuUÎóÄð/.›UÂMËbõŠ¥X»ò,ª®Õé³çñÆ;á·ïýƒÃcÔŽB|£ç‰ûò'²³õ ÿÂå8= ™âGÝ$ž˜®Gq ]çÒ{=B §|ÁšS)æÌ_'8JW –¬ÔÞÂêJl߬žošQZòãòøp¤áöŸº€ãpº¼ˆLœšßaDâ$šÅÚÄ©Iµ Yû{NHSfý›‰ËŒ‚…s+±zùR¬^± uµ a·ÙB{õrß vïù»÷|ˆæ ὘¸L<}Ggë>âwv"²G!äEôõCD\8¸‚Ò)çQ0iáDÏ7eA-é©pÊ(_(fÍù ÑQ|D[.ˆ¢€›–-ÀºUµX»²+o\‡]Mj„´u âtK7ê[.£¾¥ #N‚†¶)å;¢±²mÔaZY³Žf9ØÄÍžçaýƒÙF6.Ö¿v›¯p‡èŠ óTE¹¡íõx}8zª ûÖcß‘zœ<Ó¢^¼ ŠoLñ œT&ÚÿLÜ=ÍCÈ BÚ !mÛvp“x"ââ@âbÄ€ ˆ5ÑFZÒ£ÓÏ7 böÜbVåÁV°‚:¬¶Ù¬¨«Yˆµ«j±vU VÔ,„Å"…ü^êF}KN7u¡¾¥ý#ÎÈäkô‘è(†}ÏØ ½3j(Hˆ,؆‚°íØ@Ôk(oŽÖvl R»» uµ pËMKpëŠe˜7{fèk€Œã ÍØ¤ûÔãXC3|ôœÙG|ÃÊDçe¼í8@ØóBnDΤ ½v(|…58ˆ¸"ÅÄe(Q“¶‚‰–ôh§ž 'ÑZ(fVÕŽ’Á–7_°dÍ¤çœ 3ÃŽ›oZ‚5+k°vU-jWCC£»õÍ]8Ý܉Ó-]¸Ü?ü$ @ŠºàRs£˜X£DG1¦â¢ë°q±@ (³2íX4·‹ª«°h^WW¡zÖLH’º¿eEAý¹ ؤŽ6àðɳp¹½Ð8TH`¢›øF[‰§¿Aqu4@ñÓ6m !"'8¥Ò6(pqÅ—)”ôØf-œhi/@6${¡˜9«Fp/¬¹óKf²‰œìLܺbÖ¬¬ÁºUµX<Â.q—í݃hë@[çÚ»p¡sN—;! Äi±ïÍ)á‘W €NÏ¿Q\…ùÙX\]…EÕaU–GìKBε^¾ €?ç¸ Ð®põÿØyâhT\— {‡ ‚‡žr!Bls/Éq%,$®„$h3[LÚk›´#';ÔóNôÜ…T–`É*2«jD{áRØòª)£Xë§0?7§¬YYQRÒjpdB€êG[W?.vªmÇWd„r•F^q26”•`NE© žê ,ª®BIažî~:±ŽÖcß‘8Ú€¡‘±ˆÏ‰ì€oô‚âj$®Ž˜èƒ -|<Á‡‘#!í5C¡ XƒÛÍ —iq q%-ƒ’{ÎI{Þ‰6F°€Ê¬¹åbVe­`+\"XóæB²h}åçfcÉ‚ÙXº`–,˜% fcQuUhF­!èêÁåþ ŒŒc`؉ÁagèõÀCcãP½&ˆÉï°%%¹(+ÎGyq>ÊŠ Ô×%(¾ÎÉÎÔý?q{¼hºÐ³-q¶å"[Úq¶å"FèT=T²w˜øGÛˆoè¬2ÑYOüc=ˆýPÑöl@ìHˆ†¸RWZd'³€¢ ô\êêC[Gw<*€Ú;/‡;à"ö9‰¬x‡Ï)î®zâê„ íù7‡WÚÄÄ•vé”õX@Iˆ<ÿ¤½æ‰T€LÁšS"8Jç Ö¼Y‚5»RF™ eÑÛg°*)ÌǬÊ2ÌšYŠª™¥˜U|]Q†™eE¡™%R•BH¨Íf³Æ‰YdݽƒèèêÅ¥î>\êêEGwŸúº³ýC#ú_$ŠŸÈîAÈî^âï"þÑKÄÓwžøýPÁCG@Zi¯ ÒžbÛ³C8„¸Ò/$®+.VrvôÄ^óÄŽ ´ç¢ÂAÌì%•¢½p¬¹U‚%³¢½PìytŠ#=I¢ˆ‚üäiÙ:Ër™a‡ÍjÕj…Íj ¾¶Àf³ÂfQ_Óð!ðûððùüêëàÃï÷ÃçÀåöbxÔùqbxtëÊ‚ÈQ +:ªb6Á’•/Ø ËKv,™%‚”QÑ^$Hö|ˆ¶£‘U2¢£-õ–ÛiQüP|N"{G x‰ìDÀÕOã½Ä;ÔC#P¡âÕyø íè‡-Áéà⺺â@âšT%(v$e1°Xxi!¦.—™‚%;_°däBtä ’=¢5¢-[­Ù,Y­™ Z ’A‚ ˆ€(A$@AT_ DˆY}­È D!á÷ñ» &ˆâŸ€âsBñÙë„â%÷ Œ@ö¸‰.,dŒ€£½HÑypqM9q qM)Å”^³„TZ`QhéÁ‹ýLïYÒØÔ¶·ë=´bϷЇ¢y–5€‰g2Ɔö|tØó?@\SRH\SZ  €HHÑgTì³¼ôÞ³ŸQz¾´ÛA¥Mú,´P¢Ùàµd´6´ÏFЉøçâšÊâ@âš–2 *úlæk¤3@Ò[oeæ¡ç‡ƒ‡kÚ‹‰ëš’¨}h_Ç{f_ÙõÇd¨Xϱ^« ø0×5$$®ëF°ŠX%ÅÏï,æç:\׋8¸¸ d`I‰†‹K_H\\\\\SBbüU¸¸¸¸¸¸®¼8¸¸¸¸¸¦„8¸¸¸¸¸¦„þ?¦Áu⬠öIEND®B`‚OpenLP-2.4/resources/images/import_move_to_list.png0000644000175000017500000000153612657640340021640 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÛIDAT8…“=l[e…Ÿï»ß½××vlÇv’ ¢&(…@©š:€¡$¨"*3• ¦ÎeéÄ•X@,°t A« u¨(­ZQ tAГľÁøïþ¾ $~Žt–wx†óž£_.•Fn›_èž:v9š›Sf|¶”/n×…í'®‡ì íØEïZœÿðÇ8û鯼ã·=¨ÁJæ;·úñ…jùüá7ößµ#ÀWRÌÚ¹™§î™›ŽÜÅÒÞ©ùzЯ8Æ}àȃ‡¦b»øÅcoN?~K@_útÃ(;Z)åŽÜ73äºÅ¶íáÅ ³»«Y³8½PÉgÊ˾þÐqõŒ²þIbðÛ ržðô¾)»R>.Óé7pìϨ™±ê®W®ÕÞò¥‰¿º±&!­^ƒvÐ@t‹…É;Ù7RÙì'>ýØ'H6™¿{ŒÚÄîç¶òƒçgNNþ•‹qR+ì„´úMz‘O4‰¥Á½c™¡XùÄ4‰Å§Ö/Ø,LŽïOÅ»8½T;  =+±›¾Ï÷õklw×Õ«‰6M,ÓË'ÕMb|‚t“n1³w¸lRõ€Éy‰ÓkµÙhý‚r~ 2£Õ2ZÐ$Šn¬è~'dµ²Õ†ÍfEŒ&êE¸ŽÂË(*%¡Tj`»­¡ß:aJ?L °ùúr¡E&~@§’˜ á80ƒ¬#h¥9³œ¶‡*šÁ‚àfRPðӚ˹O²7#Ô#ïÞ<  ËÉ–Ü€Œ I ëo½ W¯&yÒ„$…~¨Y>m8û™}Arú~ÿƒÕoÿü‚Á“·#Úm¡¾—>Ù3©Ï²rèçzÊö¯ÂÉ%d³ç¾œÙ:öÏ"™/¯[ë«+’´,•¯Ä8UçÅÑ]Á•+—ôü77yu ‘ï…è\ãÔvùèQ,UóV8Yg®xPD˜Åèš·¢¦¼u5ÿÇíVV"²ÓØþW¿Ô S1âbŸIEND®B`‚OpenLP-2.4/resources/images/network_auth.png0000644000175000017500000000114012657640340020244 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  šœtIMEÞ “,¯íIDAT8˵“ÏkÒÆ?›ÕœNÖ!‘ÍS‡E]EJPlÿ‚Œá/àÆ»oóó—~Hê 'g éß0Ë>Ì´RÀxöîÉ_+ÿxç-î¯1S¤eШ)uxìÑGø`SøóUcúFÆæ'™b­â°Ïæ™* ISÎŽ¯?U¾ÿ³?ýí«O?iÓÄBï}ìöÖÖk¸úW…d”`¾˜-LAN ª,ÒˆA×ΖÌéÉmÊÛ×îþÒ Ö³ÒEÆ;ƒU#Tda*p˜Ù„>j´—ÁOB?R 1 ˆz[Wó¯0n×”yÚRôÙûvúˆ²Æ{µ¥Ž“ ØÕ(ˆ€' ÌǺªÀ`^Ú’€Za®®~)D•À¤Ð'ÅŸ¶‡L Kp Éz­ú™5›‚ †—"”j \Õ 3Í«êµ\ÏpleÉ õ’hpƒ âðM8k(̱®Á‹9’Ib0«©ÂNݰjîœcªúß0#CUú€eõs5l«¹ãªþ,’ßz~§Öt‚]uÒ˜>Ø:È ºhü.êq9ÁF— FƒXk\ÍËq˜"Q3 Óì;,6öQŽ)ØÛʱߥ)Ø~ˆ—âlÈ3ŽÄ~W+p °›!—@U‚‘­G%àžÃ¹š“4ÅÍ6†­ ôa;R̶ٜ5lM|¿…팷fj%¸”`;9K§€´4²ØÂp18ÌŽX Û–áJ<‘ܤ7Htö§8·ŽP…duŽ EHAìVÉ7Õ ×4{ä5l[mÔíº¨“*ŒÍÖ¼¬]p`«}”$‰"`%_Ôì¡äÑ®"»Q– ËK}/%o½#`KtNZ¤|VÍ3Ï—A`"!W^ø©åò ¦¸ˆš´Ëãâ‚ X|Ò2ñí¢Sb]Bª-•íÝ’9e¶÷®SäˆÕÑ—(6/cÖþõÚ^ Í E«îß¾yo«±7Ewìl*™ÓÝmŠª2 £ÕÅ $Úä³!Á¢€1ô|ȶD{¶i¨Iq¨ä”çJùâ•Ïð…+O‚˜÷o迊kÿZ!7AÏ Õ3oS³j›ûü;íM ¢°ÊNØ‘¥Í'ƒUþ~yM¹ywÍÑ%˜lf2È ¥8ɺ½Œ¿”tïžP….9ISugchDŠÉÚ"Ȧ²CèG— 7nŸSÌ`°6µºðĦUò æ¨I¿S‚óìNþ- ¹w-iΨ vSŒè‘@® 즄¡”’º÷ÇûwÏ¢Xí„Ó1z5¹º­¾s8ÀçÁAá ‡ÍèJ:ü«âêÓe©*βq †rôð§¯:§þÜwHùc¾ÕÇ+Ó´Çý„Y $Åß-a&HR1„êÕÇ0 ¿G“èÅoA1ÝpòÎ/àëá?¦ßäÿþþ CG±ŽŒ+IEND®B`‚OpenLP-2.4/resources/images/theme_delete.png0000644000175000017500000000123212657640340020160 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×ÂaËsRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ7ó  IDATxÚí}wœÕÙÿ÷ÌÌm[ïöÊ.KgiÒ¬€bÁ®1ë«)kLÑc7ú³GMbåÅ`ìŠJE@êÒwaí½—{÷¶™s~L;sË£yýÜÏÌÎ;íéÏó=Ï~\þO/äÇç¶,ìÇñß±ÚGâ>6víQ;(€    ý¯¨öù‘¾‡Ï jN¤LÄ{.lÎܤŒ¼1IÉ™EW|¦ÍîL³ÙœnQ’lD!FPFAåP(òw…‚þö€ÏÛÒÝÕRÙÓZ_Ž¿,ØÖÛÈ-<ƒ(?t­ñCeŽàHÈ$L<öô…cÆK_xÜ ñä¹Ó¥1#† µ­=¨oõ µË‹–/Z:=ðC‚Ê À6A¼Ó†Œ”xd¸]ÈËt£xDrÒ’°«ì ]½¾D^¹v‹²¿l_‚m«àÙóÀÊ´…1Ä p”nU˜€Hš !gAòð‘ÓNž7wìèÑãR“R3‘–žN¯Ì*êÛICK7Z:{Á! „1€0€1€Q ŒR0FÁ¥ ¥P(…¢(6Q@^f2ò³R0,;•¥»]$èëCŸ·;÷ìíXõÕúýÝ•‡JÀW=›tį]àG8¶Ü $a ‰Ï81-ÚµÓ§Î,¼öÒó‘”’Í–}SN¶ìk*É„0PJAÀÀ¥VB[ˆpßÓ°ïÁ˜Æ*ƒ€QP…"(‡ `Ññ“ñ“Óf±ööNòÂÿ~„Í[·T·Ö–¼oëW`žrÝšOAd€!߉X6ùçÂ^xõùžWtÙ…çÆí¨ñ¡¬¦›uy|$ ©„æ É<0 FªXû^Ó0ÆŽøêwe„20¨ç¥Œ‚* \ ©ÉñlÁœ dÁœñxú¥·û–¾õ^%Õ¯"X÷@šÖ÷}ô¾g @Àâ  /xÜ©—ŸyÚâÂq¦¢¬¾mØSK 0£Ku,©‡&é¼TSFA 2eÔ °Eêù}T=ÕÎA´m“±Ôí@ àœùÓÙ1ã‹HUM>øø³ê_}þP½@-@¼ª ú‘ÂU}<ˆm„˜PxnbîŒ;ÿrÇ­¶¸´ìŸ+J‰H˜*±Ü ×¥žgE•ëÒÎ3£Ñ õ¼Ñ-f„?V;/´m…*P(Åÿ½œý>rËÝO‡z¶<¨ôVªàý>˜†ï€fÃ5ö¦ 3^qç¿JWœx{]óú‚D J%UlF((Õœ9M•C“jÆ©r“øVU®›]ºÃ¥Þ8–#:,f"Ò_ “éæ'$‡™šÌNž=‘7}î}ü…¶íëW¼ÿþg¡  ÿt8õ¢»M£éÒÏÉwúßn¹éç¯ÂCA0MÇñ“ó + {«Ú XˆŽR¯«o‹çN­Î`d¤=Tì/Ô´æ´$UؾÈèÁX“Ò•$$Ù¯¯½züÊ•ÅÔ[ýæÒï3H€PlËY¸ôé™{ÚIÇ2F¢{ùC‘úèÎ!c “Š2Ÿ™ˆÍ{´¬"½ú0¢[>-žï/„³†s1œNþ,’¡xÓËéä¯!‰ªjIù¡*<ðÇ[F}öMíÉÔSõ5ÀÚ$G˜™†Ûr¼ùÚ3Ÿä‹Á’™mŽeÁøýd‰iÆôP‘aÞÄ<\ÍÆT'œºÖ%™˜ÚIJ­Fe‰=3I¿7}-àPU-±I„M™vÜì][vt½;¡Âξsp˜1ïÌ›_¼êªmk÷µBÿ,š:4¹^$@H¡Ø^Ù‰½5]˜>*’(hÒI¢jƒh‘Ã@fC­¼1¸X4g4¶”Õ£«×g§çêuõËWùû%†®â$’™D3îG“nCª¹B!Ät8óc$2‰©ˆá–óZˆÓ<D«jpÍOÎ }RêÜŠÒ¯Vh:ÜÚÁá1€ZÕ+d/zçw·Ý—ñÉÎ6ˆ‚çGý0SêeÛ_kv7¡×¸üdÍnNÄÊ ZתÍgÎY¦Ø^ÞITÉ'æK5\sÂU 9âëÌNõÎbõÌû#¦&!ŒÓæï,ÌKxá!ã…™òùšuøÝõWÚ>\_7žCŸƒˆí‡ãЇéôe©Óïóo¯ž0ª0Ÿux‚ÄP@‚`1FfLWoaÛµm|½·qHKtöCÐèAÚ@ÿŸ2†YrP•‚­¥µ*~ÐpMé%šÖ!6ÃÃðïîXl7§I¸kè¡õY9"k~ áͱ2…$ŠØSVÎ^yê~÷[Ÿ|“À|õëø¾ H€³èú /¾á– N?.»@&KÄì‘)èô„ÐÜÐÔ(±HJd¤k:A eØz° Û´bʈT8í¢¡>2ÆŠA¯#0 ËNÁ©sÆ`å¦r„… ˘å~­68¢‡}ožY5‰å™Ãó V¦à¯g2 gž8ŸDÑz—”î/ÇI'/𲣤´J×ö¡V‡Æ*Œ«xâÜ+þñ÷‡îrʲnº D˜R˜ˆâ¼D04vúU‰áT,!v‘’Dƒ/ ãË] ðúB“ï†$ÃèÆ ì_+¨çr:l8mî8TÖµ£®¥ ¢@@1K´àí³©ö£ƒYÇéæB©'¦“ã\$LýkÏÍ9ÓS!]ݸúÂÓY£GœVð›el­C— MÒf=ñÄýÿ¤b%ŒZ­‹w—›€9£RÐÜ@oŸ ª;W\–„‡ùp„0Ô´ôbåöZä§Ç##ÙAÐâmíb¥•cW l’€ù³G¡£»•õ Äê¸0ïS3ž=ã®Ã8¢sRmä¸è‚‹ÿ-æÐð8釩y,æÀ0GêÏ>^ù%yä®Û\ï¬ØžÅújWè; 8 fœsæy×Ý~é9gX¬]¸ºQ ˜2, 3Fº!S†ê/DÁ”*BøÄ ¯ZÍP«ä@+6ïoÂÄáiHtÙŒdë· uid ˜5¡£ 2ðå–r#sÕ¾’ÇÇóVÏÞ&D9糈DŠù[bä IgœÉ1-«¡»Ý§ã‹§Ý[R²ðï˜r$@X~ÆØÓþþÏ'žH§TtIJËúš°‰ãó0­(2¥hî @ÑdZ^8á=cbH–?ÂÛkà „02Ç ‡]ˆ0 ‘LØ¿90ë ò“1{b¶–VÃçšjYjfD.ºz6ÂU^z­ª=ª#¨G9„„i –q$Ö(„{Ç|ÄaÉg¨ª©Åý¿¿«·UímÙóT);R ר?üúW8{â˜ÑÖºn?=]Ú(œvcsq|q:zèèõG8] „QÓöjß‹Aus>Û\œÔd¥ÄCÕX_/ÆDîW5Ar¢ gŸ4›vU ÇÓÇ©{Nꢋ3–Dáí5±d c“c2»•ðá~€ÆƒZZ™K2é©iàãå«ÉU?ûYæW_ïP ·oL‚h @ˆmܸY=þðí·¸dŤÿÀ©Ù(^9!˜\èÆô‘ipØEhè6Ô«¡½n,APRÞ„í›0:/iIm@Tȫڨ?Щs‹’ì,¯ÕTæý@«€‹å­d²*tÂ,‘᪊áÑêEjëK´a^}Á¼i¬©WÓTUò1ÀZŽ„HGüσw=vFVz&‰%Qƒ©ëó¿³KFå$â¸ñYÈ Ú{ÊJd&NW™z& €×ÄŠÍ•èõ…P•Œx§¤:šš“7iêo™1q2R’QRZ‘è1Õ~xÈÇøŒ3cfâ‹D„˜,‚À¦91ÓÌFÁ‰P3RࢠÁ0'›Kvî¼-î?obŽ­i€™Ttê’?üò—"!ÂaUêúÃøI¢€±ùnœ01AYAMk¯¡3˜6–1ÀnPÛÜ/J*‘’èBAV2—2pK((ÊKÇü9ÅX½± ²¢˜æ€©¡—©Íx‚Kå‘£f¢8)Œ°  zåP{~ÖS W[PYOÐM§¶O‘e$Ä;PZšçoÛ³@û·`RxÝ# ”¦DA\œƒŽ—°·dýg@¨.šˆ¥\ˆË»ä¡»]”œè&ƒ«¸ > 3Ô‘R Œ–Šy“†!;5;6q ÅR5Hc[Vo.‡×ĤÑÙ ‡© ts2Î$„Bû«ê8, ‰’*f{~†(¸„i šÆk 0@M͘eÄ3Áþ‡ÈƒºÍöÊ[oW ع%š3‹2ÒŠæ?7ûÄsÜ­N›€$—¨ùƒ ³úK ¤Eó;Q ÈÏL¢Y£ç´£¹Ã¯/hQÍfENeýòšlÞSÔä8æ$A¡C×ú2u|!ÜI Ø^VüˆÄôÄ#àgĪÆI˜Ÿ`Æú$ê¶ #œ&1÷S…")!»+zFöµ•þ¯–D iá±ó/ùEbþDVÕî%{{PÚÐ ›( Ñ%AˆV¡Ã ëöCwF‹˜IŸÂì,œY—ÃŽÚæ.„dÅt¾8F CŸ?„»*PZÑŒI£rá´ÛÏ$P†ò1­x$¾Þ¶WkRE83À@b´®ãÕ·`2 À›ËDD\r ü ~¢HÐÖÑÁ† ç>°kË PnĨê_þ‹{ïzpV­„1‘¨hÛšÎ>ìmèÁþ&<YIv¸ì(ÀuûÁÁ¸`‰4WàQ‘›‚ã)BQn vh„¢(f>ž™!š(tôxñå–r´÷x1cBþakƒÔä,œ{ ¶í9„^OŸv2„E0“B\d@¢dÝ@µ¢b©?€Ç5ò¾‚–¾ƒä7¿ºÿZòYо&Ü Dc€”Ä‚Y·\sõ ùe ]DÍþñ/‚ÂÐÜÀÖªnTwø +6I@‚STÕ-L&pèÎá@̤—¡³Ó±ø¸±ˆs:ÐÞãEO¯O~ð!›fÎ*ë[ñå–Hw'  'Ym78ÄÅn³á¬“§¡µ£«ê!Ibd¬o„·áQçô…O"+ŽàSÍ„;žDT dYÆgžÊÞ_³Eöwx?<£$ N^xÅïíÙÅqÞ@ˆ³7aƒ6 $øCu>”6ôbw]B–`3*Tú2'1š J)0<ד¦DVZ"öW·˜X@ŒB ‚,cËÞ lÙS…Ù“F¨±¾6öp°Î¢¬³§ŒFNf:JöP/„—v­˜Dx€ Þ‡óò-þ‚¥,iŠI˜Y$%-'¾lÇê¥Zj˜Åb Çžqί¯îµ§sؾա*1ÔtôagM75÷¢»/ˆ´;]¢¦¦­¨ž#™@Š9äe&ã䙣1"?û+›áõ5ˆ•9=^Vo*E{w/fL(e$B›õS3…B ó21}ÒhlØVjš ‹z·f€ù ‹ñùìžEÕ[Ïg­¨aUUáĸ¾\±t€à—Šö?qÒ­gsõÔö’H IÄšëŽÐü‡@ÔöB šº}Ør¨›TçÓ& ˆwJÚ±Á!z‡*„ ÌHIÄâÆ")!m]ôôúŒì"Q‡—Q†ê†6,_· ¹)ÈÎp!à@Ú@×ɉ 8ùØc°÷@¥™/àµAt À`©q˜~#aƒO'ñÄØQ@)EO¯³¦Mê¯÷ølYÁûá ŠÄ Ÿÿ“k“wÕxÐÓGÑãUBà°  ×Ó‡ƒ0òHvFL‡DƒMàɨn÷bOM¶U´A¡ Yn—!…ƒÕù1c !–Šã¦ŽÂèÂLì9PÙ@ë:@a %{+°eÏAÌž< 6›4$&pØm8iÎ1¨onE}sbj„×ùõ±†VÉ7Žá²…Ì’íSÏ'„ic ««U5u¨©kDGgæÍšŠ/7–§ÃWõï„1€4bÄäE7Ï9î4©¬¾Ûhƒã PtöÊèõQx²H"à°®<ʬÀ.¡A¸ euml9Ø‚CÝèôú‘o‡;^ŠM ÕWè¯á”iC ÒS°pN1 sÓQßÜŽn$A´äç½}~¬X·íݽ˜8º¢0°oÀ_cÞôb¸“’°yg™êòDçQÆB¸ógõ½ô¦çƒéR ÑÙÕƒæ–v46µ¢¦® íe#I5bø0æ•ööšío´%’§œyÖ?»êÌc¥“Çf Ûí0ÔÂ|! Yfð)º< Úzø‚ U«nz­[ \QÄ2 Æ„N |A^l9ЄݕÀi“à°‹E«>Ü*ã@ö›1†ÌÔ$œ:w,r2ÒÐØÖ×gªUÁëšÚ°rÃäg§!#-yÐN¢BFä`ê„1غ{dYæâNê á°f¸hj%¢yõ ‚Áz{ûÐÐÜŠŠÊzÔ6´ «»>¿¡¬Þ—êΘ@Ž=‡mþzÍÇ€¿Rwù»— f]öì?>}yÞŒi¥¸“1PÆÐí—QRÕm•Ýðøeƒè<î`C¼“ Þ) Ρ7ˆÐúéêýxaöî…ÖßW­ì©c'e`Þ„<¸"hŒ¼@8D| ¨ø@Œ &x(Z»ðüÒ•èîõªª÷ø¡ep'Åã7WTwÒ ˜@?&’q×cÿ@kG§öªÔ^…Œï1léqDáõúÑÙ݃®®x¼>0¦¨­êFØÄhT9¿þŽss²ðô#Òs/¼´ùM½:Èß¹ÎÂ߬X¶ãÁ4·;J¼­J´(’´{e4vùQ×îGEk*Z|EuõF ŠJTI`´ßÙDÀ&v°Ûl’Vf¦fCg EQgîÈMÇð¬dOGAf Ke/Ds ä ŠÀ®ò:¬Ø°ûÕÂn“´¬5ªV(æL‡ O;ñNû «Œ1¼öÎ2|±a œ;B¡ |þ |>?|¾ü Áþ |~?E1!dáÎ9GkzMµvùC(@å®{'ÕO@V.ñ !5wŒÝf³¼P>Å´xW¡@¢SBbv<Æå&@TŸ`_cJ*»p°Ñƒ¾€ ŸFTYQ?zm~"J)lAœƒÀià°«L!jv¯©Ó‹¦Öí©F‚ËŽ&`\A:â]6¸Éû Ñï}ˆEí9ÇÈÃ1ãòQVÑŒ}ú5ZÛ»Ôå JÀ–]û±q{)®ýÉé˜2®hÐfáÚŸ.FœÓ…¿<û:üø6| {5±%¨ÒMù~f ‚Èf7VF6â½@•ÕÕHÎÌÓ][-Eø³Æžýữ,=ÁépJµZ½nf8) cʾ‚]U]ØTÞŠšV¯JTµj ëåÏ´Ù8tgÚ¬$¬¬Ã& )Þ†©£³qáüb¤&Ú”¡µ‘%QµÁá.¼ihiïÆ«ï­BÙ¡:†d„‚2¡\þò»«1º0²Ò?èpöƒUõ8ïšßƒR%굯gcèïÌhDɵ֧Úû•ý~<òà}xöå·ÖÖî~ÿ]áN`rjÞô__|öùé¢(F$aŠE,õlIï1*; &gbþäŒÎMDZ¢¢@Ðë Âë…ué°vàÒ‡¸QÍw ŒAV(‚A=žJ+ZñÖŠÝØRÚ€n€Ž\î IDATqN²S]5x¸ –GŸï¹›‘ýزózûüðz}èêñ`ɇkÐÞÕ‹©Å#ï²Å4 º¦HKIÂOÎZˆMÛ÷¢©¥]«#DéDÞÕ,¬ƒã:£™]ˬ­è(UP4¼uÍݾŽú]oê¡ Ï)iÃfÜzÑâ³ãE¥P3L Õ´—@2ÝNŒÉKƱã2pöì|Ì—‡]@GŠ6£áýõÂç ÐJ»¦$tõú°û`#>YW†¾,…(–• QŒtôPÒºýzõ “™‚³æOÇÙ ç`Ûîƒèöô*’( ô` ž_ò ò²1bXAˆzmý—ÓŸ¿»Ê¡ª¶Á‚`QZÑ™þ`iJ¥ßþ–2†¼œltõQÖVSòÔžƒ0bôœëö-yæY› ^w4k $N´ß™û´\¼öÇ‚ÇÂúN|SÚˆ›Á(…$c. „MîFA5Ïœ2(U ‰iÉ.LŸŸ> ùYqðpØ`X¦ªêšñä«`å×Ûﲃ1E‘Q“Gnÿ¦ 8•üî²/póŸEBœ“›ÅLUå–I¬´YR¬³ (Z#3Õœ(ŠŒi“'!$¦‡v­yf€ ^…so¾àôÓ#ðiC©Ô %)Ãk9»MD‚KBQNæOÍÅ…'ŽÁ¤HMtB ‚²‚n_å‹Àl®Dc¸AŒÁë  ¬²o|²kK*†à°KHO‰‡(ßfŽž‰ÜI 8Ñ œ8{*š[;QYׂÿ|g9šÛ»1aÌp¸“\PbøŒ1L™0ÇÍšŽå_n€ßм8®Í¬þ|IÍÖù,\{ršÓåt•˜%6U|ó7áSÆ?þ–Ò7Ÿz²ßÜza×`Rº¼‡>¸@ê Àë—±¦¤«·T¢¡­[õ Y ©nÖ0Ë?œÓI)…Ó&ââÓ¦ã‚S¦Âi·13¡ÿ¾×Ó‡›î}»÷U@Q0F¡(2î¾åj\xƉ^‹RŠ…ÿuõMQ@ĘÐj É¯²2Ò‘[4Û–?V `Æk€ÌÌ¢y×_°èÔ!VÜŽ<&0ZE1»MĸÂ4œ9o$Θ;ÇM)À„¢LÐÐÚ¯/hiLѯWKS‡ÛJ«ð¯Ï¶àË-ûPU߆ü¬Täe¹ +‡o&Œ:€ÃŽ NŸ‡ùs§¡ÏçGÉîýpØ$¬Z·+¾Ú„yS”‰`(ò:j„ à’óNGGW7vìÙÇ9‡à¤±§²AXGr­ë°ÛàN/@ãÁõÐi†Ï½þüE§Z0ëßv}¸ÃÈ"¿3MÓm$'8P”ëÆIÓ qåâɘw̤¹ã h O_²BM廆ªKOOJ+ðæÇëñùÚRÍ1³ÃI"Cn»Ä›¶ÔäDœqòTœwÚI¨¬mDs[;ÚÚ»°ô£•¨ªoÅäq#‘œga83Á%à´“g2‚-;vs¡_x·r¥Ó9Œ¼ãœJ—Ó”ô4\ÿ7¢š€¡B½yUÎ'cªÔÅJéE›Dûþ’d…bÃÎj,[»%ûjò)‹6ÿ3g%„Á& 8oá \yÞ HˆsvSV]Õ3ÆàóðÇGžÇª¯7k÷NpÓÿ\„ë¯<@l­³»ìÎüÙ¯`“DmŠ…þº{¤Öó»ÁøýAiè~†$þCUC;ªêÛQRVƒÍ{*QÓÐI`“—æeFE–C`ŒaÌðlL+.™'NÃ1Å9ðY><3a·û5à­Vàå·>0zx>~÷«Ëpæ)³á÷GžW€Æ–\òËß ¼¢ ’:™b̤¥4¢TÁ¨¢áHH‹í+Ÿ«CXDøÖ³ÏÚ•zè7°6ÐÏß_r0ÌÔŸ4J"`³Ím>¬ÞT†5›ÊÐÔÖ…În|€Ýâ§‘¥ŒÂç÷#'Í«.˜ãfŒGVš»…ÍTý‚O·Þó$6o߃Îînœ¹`î¹íWÈJwG©&Ä—þêÏø|õ—E1rM„Ü MG¡È ¦L*ì9¡\Èßq~ÑŒ«K–þí… Q”ååE­.|ä"¡.¡Œ@HÆþÊF|òåv¬\¿!Y(ŒY榌B\vN=~*~yéÈH‰CHºi·O<ÿ&þùöÇp:l¸ì‚3ðç[¯EHfçZ¹ýÝe+p˨MeÆtƨ‹NAe“¿µlÝ‹ÓÔ…g]‰éÅ_´øÜtÕzGþMLàáDr¢(À&‰ÈÏJÁ)sÇ㟌ùs&£xd>R’ãá÷ÑØÚ EQT$cÊ2ví«ÄKK?Ú»ÑØÒ„8' rÝA̘?<`·K8å„8ïô…cxþwðÞ²ÕÈÉLǤâBȲ faŒaÒøQ˜>y"V|¹Á`ÐðòÃ=K¦P–qê‚ù8PY_ÛQ¿ë=l)e=ûÃw^Yz‚áâõ5Ö—Îå# µ>ÐŒ#CÅ VRE‘À& °bÝ|¼z3TÕÃëóÃç÷YIÆ‚¡ ’âðóŸž3ÌArB<ví4™Ð¯7þña|¾f=¦Æsù²2RÄ•® :»ºqÊ…—£¥µ]uúôÂP”Yп<ôž}e©¥ÄßMBbޱϾöâ²+—nkGœ]Drœ ‰vd&Ù‘®¯“Ì 2åëGƒq. =’‹N<ýz ŒM-ølíV|¼j#ZÚ;`—DˆBH¢wR<Ž›>×_yІ¥Âçï?Ï _G€ŽÎ¼ööøë‹oâüŧàéû‡`Øè¾@ ˆë~÷',[¾ 6»Í¡Z”0(^/Þyû-\sãm¯u×®¿Ú\€/>ßùàc+!‰Z3S¦ô5A’KDRœ É. Éq"’]’âD$8E$8%$:Õ´n¢K‚$š B)Œ/@dOŸÁªõÁ2Ñw±¨¥ÃTÔvcóÎ}(Ù]ŽÒÕ(;XŸ?†P(ˆ cŠpúIspܬI˜:aA¿~c v;Ak[žzþ5|±n~sÝU¸ä¼…ðù­ÎáÃOÿ÷ý¿§`³Ù¸ ¬M€z½Ø·g'ÆMš|'U $öüKŸ½üu“[èõ…)T 7Ì kJ‘ä’“êDNŠ9©.䦯!7ÕIR# Ü(Dtóà{çZzôcFÿÑE—`QTïeýÖ}xgÙøzóN!CAȲ §Ý†k/=—]p:â].H’3E¬ïsØÛî~[wîÆ[ÿx©)nÃ/E‚]{÷ã¬K¯F ÐL‚™3HMIÂË{žs悘0BÊÂ+¯{ôãÔâ3ìͽƒf€ðdЏÀ˜•)4ð‡M$pHvI€]['8%d¥º‡ìÔ8£çO¼SE!1­6¢j#+`ôH‚@ލ† j’ZÚ»ÐÜÚŽ¯7íÀ²ÕëQ²» ñ.Š r1sÊxüâ² 0¥8ž¾HR·û6ASK'>]¹ÛwïÅsÜ…¬šA hnmÇy—]ƒŠêjUh‚9sêÌž»(ø×o9 è\¥ƒ…”¥4iäìŸoºöƇœË[T¤Œt±¨Vª¤Œ Jp@EÅBA­ÇjY8ª(P¨…R(ŠEQç‘éŽC†Û…Ì”8õ“¤8;âìHpÙ‘gG|œqNAÇ™ª¾™±}dÊÀGb±I€ÃtvÉøbìý¦¥å‡°{ߤ¹“qÅE‹qâ±30aìHØm$ÂL0Æ`“<}<ýü«8~ÎLÌœ66I2åŠënÂò•«!J"c¸ê’‹ØúÝ-þýë^˜ È»£A i'oyö¹·‡-ßÛnôÞ‰ œ#\uJ,òµz¾B†RåS–4,5 !y,s‚!cŠ"QÏm·‰(ÈNFan ŠrR0<7Ey©HIŠçŠ'Ññ8TU‡%ï-ûËV"âò ÏÂõÿs ’â-9~-IÀ{Ÿ¬ÂIóæ )1Á€œ=þÜóxø‰¿`¸çŽßãžG_¯EÇš™šc1@<'=s߃¯^½±96QHÿk6&’¢¥)y¯”qiJDK^h©Ìˆc)€@yqí¨bB§u¼$$¸lˆs©#Þ©®3Ò‘›žŒœL7r2ÜÈÍp##Õ®jªšs}tµˆN8QT™¡¾±+k°cO)ªjðûqÙEgãäã&ÃïWÍŠ_KA{Gì6ââ\ZU’`õW›pÁO†?ÝuxèáWáÙ}#¸‘AáO#dñÍü÷ûÈHéGZ´2£A¼XiÈóÔŒ†1N¡# œ9á}Žˆ_, «í U + Y6LŽ@€ÜL7ò²R1,+ù9i–ŽôÔD¸vĹˆsÚçtÀå²Cây“s$™B Žöáçk±sO)æÌ˜Šâ±£çr">.Îb⻸ÔÖ7àõwWã©û¯<`Ÿ€ë&…cV¾ÿ`iDZ§ŸZÑÜ‹¢"|²Z]#a€ÁJžH<Œ‰Ÿ;7Ú¼àq/a3{20+šEozÇ¢ìˆ9K'×PÁ&ŠÆDÃTutyÐÞÕ‹û* ³Ä·°¸ápy™©Y˜‘¹U˜‹‘ÃsQ˜›® …³2ÇP}½{©·OýÝióOÀióO€¢¨ïÓ𣳫)î䨂J)CQA.ªèX9¦v'™ …§¿¿{õ§ÇúüZÇrÎP¦žTÑò”1(Tý¨ÛÔüŸRîs-kƒ>Eý„!Yû( B!!YFPV ™kuŸŒ`PF0¤o‡Ôí¹¡(Ñ•âbdn®3h$”Šßë“HGh5ÍÄ(T"«,UÔ1yɉqHIJDJR<ÜÉ HIJ@Zj2r2Ò™†œÌ4äd¦#;36 Ú €*¦ééabI}ø1‰ „eM8ã›ÞªÏÎЦò#§¾bûÖ=ÕsǪ\BÃ’0 Z‚‡|댞ÙYëà X¶Ã1ˆBØÌâúwá #YQS·þ@þ ¬­Cê:„? ÃjÛAø!øýø!ôùðÚˆ||þ F`“èÆ¶¢€RÅ`JU_¤»×ƒÎ®nõXªššP(„`(„P(„Ude¤adA.Fæcäð<Œ,†‚¼\¸œ8v8ì688vH’`ÎÌÖ ›wT“ÞêŠíˆ2Óh4@nüâù%Kýä]¿g”ífò£&f¶qÚ¸|XkF+X:tð/ N‡ N‡ Ht ˜Ñ‹©Þ“1]ðÛLK† æ;nUËÌ}}~x}~ôù|èëó¡§×‹Í;v!jÚ-ˆP(ˆ@0§ÃŽüœläåf#/'ù9Ù°Çhv% `¿°”€5~ 0P€ž%Û7U{¼þÂ8—#â­„Ð Ò_xÃ?Ðï¢xb1axC©Ã íXLG"ºTih9 oKsæ0#!Fu“;ƒØã o6nªz6"Êä’±â¼®ŽÆí/Õ77#|¬>‹æ»õCø¡äçy"ÜÚ=vYù‡²X3}°„žŠȲZ+…€`P7i@  î ÉÌhjÅûüùkê›ÑV·ý%½ú7H ~ôµ~õò¿Þîs9µqäCRëƒ?>Úh£´H¸ôÿ·/:QEA-<9€Ë ¸\»ö–¡¡©Yk‚e¾ —ìé—ÞîC_ëWñ÷kú¢,YHš·zãÊUâ\Îo]©*&p°( ïk `°IAsxÁœªÇ#£³«]ÝhkïDkGZZÛÐ×çƒ DN‡i)nŒ^€‰ãÇBˆ‘$ÙÔêÁ˜©§íEïú|öo @_º¨~õÝÏW>vùygõ«Öû“àîΠGJ‹ü'‰Í;‡TÓ÷M­í(¯¨ÆCÕØ_QòC•8TYƒ,Cìv s¦OÆÂãŹgœ‚Üì4£þ^(ƒRË!¼öêÛxðñ'ñ»ßþ T¿ u¾ UŠÆÌ¾fõǯ¿T0­\Ë&÷'Õi…Ávýˆ…-<êå^¨-[DFÙWÔ"™†&j[P[ߌš†fT×5¡©¥ Þ><}}ðzûàñz–.r(ˆÌôTÌž6³§NÄ” c‘žš‚ôT7RS!Ó/à¹\/»œ@Yy=^zã-¬Ý°BÈãÅ3O=Â^^º²fÇš¿/PžŒ i*ß¼êk·üiþ±3‹Á0ýîÏGŒ—?(Ù‘,ÆbÍ5È àñàéóÃÓçS?^?š[;Q×Ôª~ZPÛØŠÆ–60J œƒÞKO•§»“‘‘–Œ1# 0aL¦Oé“Ç!'Ó…@HuìÎOWÓmç ?Šì?X ›·áŸKþ²={!8ìEu$rZNKtçk>} MZökÈ@ÿ~œ{ìOw®Yú¦Í&‰C×÷m!âý'¢G‡]æcó}0ƒ!Uum8TÛ„Ššf¬i¡šF´ut[êFž(5¾Š"+ÈJwãÄ9Çà¤c§âØi ö] Q"€Á´Ÿ|¾žzþ¼øú[e5±d©o€AÉ8çÌEøª¤>Ô¹ï­)ЀÄ:¯4ˆð¸¶·aëƒÛ÷–Ý3kÊÄ!ÙåÃõò‡¦EL (À²ööMm=hlëAs{7šÚºÐÔÖƒ®^/z{ûÐíõ©kÞ>¿1*Hàæþ1Ÿ0«”R-‹'ƒQ£‹ò0qÌpL[„áùYÈÎHEnV:’mªÖ¶O’T˜Ù¦’ø÷‡Ÿâ›­;°gß>@›i-|¢k}%ˆ.¹è|üÉŨ(³1¸&¨Dš\|Ü/V}ôʳi š H3V*8\‚cÐûçéjB2E@ÃðB2½}~Ô·t£®¹ uͨmîD]c'<>¿1S—`ôÚ3|Xªˆ|uR •“í6IñN$%¸îÆŒI£0còXL-.€(ªñº,^ɘ‡‘ùý2j±jí7xá·Q×ЇÍftQáKà¥xJñè}w²×ß_׾㋿/“w $®Ò`n,TQºuÕë/ýkÙo.;ï ð}û†âåGfM¬ŸÒ‰ÝÑ@mKj›»QÛÜš¦.Ô¶t!’Ü»B)Y¶– µ5ãQ†Mƒƒ13S€ô~ˆŠ:”›1†Ic†aÞ´±˜;m< rÒ!I"$I„Èq}x㇡ßÄú4µvãÑç^Á'+×" @…0Ĺ\F"†&äþéôŠdÇú寃…*“×ìÝ 2Ç]°ìË÷ÞÏ#ý4bƵº:€n¯Œ.ož:{ýèêõ£ÓãG×nÝÚºËãƒR4õÎŒéÓÕlj:“À+Ë dY­&¸ìU˜…QÃ21² 9i(ÌMǰœˆ¢–‘SŽ,ÄnS5ÛºM{±âË X»©»ËÊá´IEÁhìÄŒ–9V©gQT!¿K^þ;ûýÏ•ÖíZº@M,Ïÿp€à€þ“³/»ãõGï¼ÅˆGJ¡0E1K¾m½~4uúÐÔÙ‡¦/:¼híê㦆7'‚$¨5½ V8$Õ"é¼³Æ6N»»]Âø¢lÌšT„Ù“G¢ '!†­>ÒØAçßç ¢­£ ï|² //y^_l¢hmš†ŽTÌdè(ÆæÎœ†ìañö‹^Öþ6@ƒŠ|†ø<BÚì——¾²ä¬Ï÷QdY•&…BÖjú²BÍž6 Zië_ÃÌ:z$ˆ„¢ _ÑZ¦q3½<«J·Œ¤8;¦`æ„3. qN8\»1â‰E°(cêÌ$.°»¬}e)¶ì(Ewo䬙+9’ŠfvlÈãÁ¿–ü/.½öúiûæŸCûä@°‰ ¡)SN¾yÕïxÈýúšCÄPU|K]z5T0 ƒq!lS8!­/@r„–ÈŠjû3R⑟™„üÌ$æ¤bD~*Fæ§#3Õ…j-•ïl· Ãæ¥X»i'>_³‡ªëTÆHTx\D¿‚~0‘ð9FñÌ#÷²WÞ^ÓµùóÇ@°í )ƒ½_iHO§ž¸|ç7Ÿ<ùþ»ãîË*:Mj°Hƒ£§ô‰Õ !ßî’ÃhÐ-¦·ƒ! @RœSÇå`Vq>¦ŽË…Ë!˜™2néó¾sv8åÜ`0„¶În¼¼t–~´ŒQ­CBœ :$Žñ­ï¸%\7õ}2Pãk Öx}ŒaXnÖo¯&›×¼÷€ò¡ÿpL€þ›L!uÆãK^Zò³÷v™Ç$<¾ßìckµûkv¤Kƒ¬(Cªtf'cÒˆtL™‚¬d$Æ©Øÿ8§dÁþ'JÁ:.ßå¾ÜXŽ×Þ]}«ÐÔÚad#@¨Q¤ž‡¿[L¡¦õ¦¦$³žz’œû³«ÞPÚ·þVSýìh3@DL)r-ûÇÓ/ü{S+l""šSéÌ0 (+2l¢€´$;Ò“\Èp;12×Qù)=Ì ‡ÍìK¬zù6ÝÀDåÎfzzƒØS^/7îÄûËס½³ N»kx½CW¸‰ŒèêÍËïÇ øýxî±¿à†»ž®fMËÏËÀ”!Oy%ÞQ(€rÚ¸üŠ7ß|á³ë®ÿ½ëµÕ匛ÔÛÚ´X›J„ž›„cF¤cê¨ f'šêŸ˜C½dÙ̉“óÍp8Ø’1 ²¶Ͼñ1Ö|³C‡¯¾ë8—Ö­?¹Ú¤9LmkêßèêÉI "ÛÂÚ š·ŒŒ1öäC&¬ÜÔÇš–_ààáÿð@KŸ(YûÉk÷ædç=<å˜S±i«6:‡`DVFæ$¡(;i‰¸ìp'8`“ŒVZ[Ârà|øPÊć¼ €Ã®Vú>ÿz>^½ûÕjÓ¾pÓ¶hMÌö­a™ g7ì;·Ï°õ|£G˜!2¿…ù Á@gŸ¾%ûš±òß/Ý`;¢`ýŽ® °þ>‰Åw?ö—go,=•f¸HnšCËXIð©âÁ–{6DWï’ttûPU׊O¿Ú†w—o@(‚Ý&Yš1FÀ­CWD¸-oÁb‡v–UÚ±”RÌ9•]~éåä~~Í3ð”Þ µã'ûO1€~Ž\¤Ìxöá{9÷üÓæ[¦b;œ†RƒÁ)D`{Y žûßÏQz°Š^êÒÉ]íM%Ü ³ßÑ} °¡qŒ’büíû¤ø8ÜñÛßãÖÛïø[oÐðmˆÿmM€i–ˆÐ„έ7ßùÀ=.wRâ¢SŸ©ærYƒ*úçpP@ü{€aÕ7{ðå–2ì,«Bs[l¢`¤› n4cäZ¯“9˜MѨ‘‘XÏaÝæºŸóêÒ µh 7+“ýö¦›ÈM·ß½[ošŒ~úßRzÔ"(²åœòÞ;/ÿcÒäq#˜Bh¦ñÁ`cU;VA @gõ-XúÙ&|¶v'DA-«†K2‹2‘Ñ!&iäðü~ÌL§¦úór2Ùß„œñÓëv‡Wž¯!|!õ}$ Šm9 Þ|î‘'ÍŸ;ƒms8à‘þ@»¬Úx¯~°-èó¬3k„a¤1†¶Ç`+¶7|3J®Ñï WÉEARb<îûãí¸áì5®¾  ¥àw~ß@7+ÃÅÌãŸ}è®{ýôìùL–ÕêáÑÂꎜÝtt°aG6ì8„;¡Çëƒ]ÐßÄJDËÒY ©§«õ)Xtâ¨û©úQ³—?´ °(¿Ÿ“~#| Ku3Æ ú1oæT¶øôÅäŽ{Zj^{€ª#Iü£Åº9ÈCÊŒ§¹÷/çþ䬅ŒR@¸Xß "nÍë÷ù‚¨lhÇkmÂÆ]DA²MœM«ß‹Q> Bž¦-V+÷AÝ¥ìÌSNÄi ‘ÿùõ sëÍê”Ú'ÔQÉ¥€øê×®Z·ÍÖÜ#Ì>sþL"+Ìh5Ø©ä£!‰l’¶-ûz?}} Þ\¶®Ù¦öž°¦ÑçÚaa“.X,rÇ=Æ'fËu3Ïgn˜9ysÄd0¦m‰y?Ü”0~¿ßûÒÜ%“ûîûÓ3èÙy'ˆÐ0åhêh'RÕ<íñ‹¯¸ûñ»çÊÎp3E‰ 1\«eU› hlëÃîƒX·½_o¯€B)ì"±BøiT,€ ­ ¯f û7€0UNW•äÏm\ƒkQÃX̶7VmB Ї®Eª #ÕÍ~sÝ5䣕߸Vþû¥{Áê_ú¶qþšôk$˜&d/zýÃ>W0iÜÈ~œ<­!£&© ¥Øu  ¯-+Á¡:5w¸3fð³lZ=ðH¯œÆ˜œ±¿Øž'zx+›hDç‘?Ãósñ—?ý‹¯¸µš5-¿@ ÔáÜGuœˆïf hdžCË—~º!¹¥G™¼xáLÍ9ägÅVñq!…áãuûñâGÛðƧ;°|ãt{ýêÄÍ©Ù~fÌ@”Ôl4õÍ«j~†¨M8.mdÏIDATõmÎuˆˆ.ß»—q×èõzñä½` ‰#·ÿùÏo²Ö¯¯°€ß‘t~w‹ZEÌ€cä/¦Ì;óÖ‡n¿)eê„‘ ­Ë‹ƒõX½µ÷ÔÀ& 4‡Ïœ9“†Í¿³°‰,™ºþP7†t÷¬%| kÆ-ž·ä 8G3 à„ÙÓpåO/Ä/,éÜüÅ{#Pù"ˆØv¸…ï?˜×Œ0FH›}Ïyçþô¬Ÿ_u»ÿÕµÄG!‰òÂ;cFÔtk âô—šµ&ŽÂs  ŠvïºÏ¡NÚ¨j$”2ÈJ/=v{÷³õäwßúˆ¶o¾@9€¾£­ò¿  ¹õ64”!sQnñ ·_}ÙåÅãŠaÿx‘‚Qr2WàÓ¬F%dŒ‚Kĸ€hIŽèÄ¢YúIqÇ2ÿ ‰¸û7¿`­òÚ[o—Öí^ó0XëçlCEòüðÀä@³á{Ó”9§\qûM?O/©ôbgyëèñ‘pfÀ’`a‡ºQµ‰‰º1#‚‘ÇCu:åP©î$6oÖrîi pÿ“/µíX¿âuø÷ÿš‹Þý/f• ăØFˆ‰…ç&åθó‰»oµÙâ3Ø“KÖA0±þ^x̦“ý©ï0û­;™ÖÐÏTåL›@­èfKBGë?È(Å#wÞÀ$ÉNn½ç¯¡ž†-*½Õhƒ6¼nÿÿ ðµÁxÀÂK'Ÿ°èòsŸQ8fÌxì8ÐÌV|SFD@T_:¼Mm,ÔlÄ ’°ÐŽõg"ùë‚j'ðÅ Že'Ì™FZ:zñVïüò³7€ê%jâý>õ6ù¾vÖ!‰X6ìùçÂQxõÅ—œ_tÍ%çÆ}¹£;Ê›Xg·‡ôùƒÖ±~ý̘1è"œhLˆ™»×[Á¹œ6¤&'²“çN'g-œ‡çßø ï­%ïT"Pý*‚uhC´¿sï‡Ì¼i°HICâ3NL6íÚY3fþêòsáŒKbK—— ;ÚDN*8SSÙL1ÂGÊ\¢&t´Á,MP­(êÀÆ(N=~:®ºð4æíó“–|‚­Û¶U·Ön{‰y[¿ó”CíÌü>¨ú*ð·*Ì À $ÍÉYà1jÚÂçŽ?v\j|‚®øDtôúXem ©¬kACK7äÚÔ±aSÑsC¾)£`ZÃGµ°:þ>;Ã1Ãó0vD>KOM"=½}PdeûË;V}µnWÅÁ°ÆÕ@Ï&]jC&Fo?ÌEàÐRÌ郄‰gÞ¾pìøqé§ž8Sœ?oº4ªh˜ÐÐÒ…úæ.Ô6·£¶±]=øüôùüèó©Âér¨]Äãœv¸œv榣(? Eù™ÈËJGÙÁ*ºzÝ6yÅW›•ýeûÚl[Ïž´Þ»mZÊ6p4ªu?2Ààžc)$1Äž ›+793wLRrf‘ßi³;Ól6§[l6A!hE£€,‡B!W(èoø<-Ý]-•=­õåùÀ‚ `½€ÜFpöCyÿ‹ }$îã`Ó| Ic½vL5bÊšÍi–¹ý>ÛòàÈ<7ÃËËÿ¥åÿð ïÙŒ6Ó IEND®B`‚OpenLP-2.4/resources/images/slide_desktop.png0000644000175000017500000000127012657640340020367 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsvv}Õ‚ÌtIMEØ "‡»™8IDATxÚ•SM‹A­ž¿VuL ÿ ñ¦'asˆ¹ÇÛÞrM„@.‚—=g!`ò$¿@ˆ×‚ OâUöàîì莺~ŒÓyÕ3£ÉBi,»kºÞ«×ÕÕ¢Ûíž™¦ù1•J™„¡i !”…CJÎÊ<Ï£õzmM§Ó7¢ßïßt:Ó²,J$‹Å(R$!]×§®ëÒn·£ÍfÃ`Êf³T«Õ,#™Lšãñ˜^^|&³° €D°Ö|%{6dwôkåÑÏËWÄX#̰¸Çƒ#eøÓxöm–+Äí$Èöp0@à;w` jæÌB*ìÐõF’Œ¦ Òa‚°(wK„i`fT$+WÒ Àž` ‘nEÜ‘ “½t’I¨ØîYC ¾ä[:ضM1Çc°"Yï!w+ás6òÁF°v™„hµZ)X’ºž*ä6P!üHS@^#«+¾)̱ˆ|Ç6j°Òo&˜Èv)PqÏLÏXEy¥33‹sÞïœç|Ã9Žƒ÷Åqœ`Œb&‰Ü_^^~4???«ëº¹±±ñåááa{ssst{{[ãðÿ'Ï­¬¬99VE¸16 ƒÍÍÍ}¡ªêw#š¦½<|JZ\\¼+˲Às;€(ŠÏ£ÑqðöÚBbüixx8±¾¾~“òù¼âèÓÓÓ*³áX»ÆÇõ6P1ú2rȘ‚Ï+ƒºº¿¶¶öruuuvkkKã\d2™ã‹¦…ç 'WIøô£ Ò÷Bˆ©^t-'—}4©“T*õ‰Û¡Çãàâ ¢I…©°ŒX؃ O•ᙉ?)2KÍð`ÊžFZZZš¥b§Ñ\ ž;;;™v_D³Kíú=øìn±DI@¹ÆpøúÅ«%ÛˆÇã£ÑhÔƒu¡Ùlþ;$X¶Gùü›.ÆZ> ûó¢fX¸¨wÑ0Ltº&~¿H†jµš=èõÕ¥ÞHF½°lŽè‹Ð›&J•¼²ƒ‡3>¤b Fƒ"Zm¿ß?T.—­w .÷÷÷CD;D‹Iǃx0€('zÙ“&òÅkôXœÍ@ܤJ¥bÝ2pADªÐÞö{Õ‚VéB Jpá ”EkÆyµ½ÞC©TªÕ*^¸½Ê¡PèkíÍùÖ//˜Qà ŒmŒøŒ‡$tÍ>J²Õé€>sTo‘ûù§ïÿ@¼Ùí´íè°‡© ±ppZi£\g8«º,xDîˆP?îY§’‘Ͷ¾¹5pAž–šLšºóûqéDÉ)Z%ض W­V‹ýqt¤g²Ï‹Ïö~KTëÆþ»»»»GŸ|û¹åðPdÞ!P¬P(èXËf³Ó}ÉÑÈ/Al)ÎÒ­}³………l£Ñ°r¹Ü?{{{ÏMÓt“‹gåÜüî_HÐû‡ÿß4~©òZÓ›IEND®B`‚OpenLP-2.4/resources/images/plugin_media.png0000644000175000017500000000162312657640340020175 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8’KhœuÅÏÿõ“I2CjfRÒXÇEh% £UÑ,Ä*„FHÌB(H]„w¦ UIɺ‹q]¸‘ˆ³éÆh‹"V‹±Ð*42iC&i'Næ™|óý_×Eìâ…³»çp¸÷Ljÿwfgg_ß(n¾oKäÏûøkàÿe˜ŸŸ?tæÌûs'N¼½²ºzg{ttìr©T¯VšïÝßa6 ¢îééé …ÂøÈÈ]Ç»>ûôsÌÿø =y°o[H{ñÊ•Ÿ/]»öÛDtï¾ “““å¿Êozïý¿ÓØØ[þ“§gÏ~øíððði‡"¿% \®¨ ¾ëùuáú²ÖÍoªÕÒÞ·jÝéäÖÔÔÔv6›í)—ËOår¹»»sssûûû/ÏÌÌxΟÿdðÈ ¯Òñ‰“T.Wh䨛4øÌ‹´´ô'­¬èÙÁ—赣ǨR©Ð¥‹ßÓÓ‡)—û"ED{7:z8Þ_Ø×•l0ƹŽtLJeãm1µŒ2:’2PFJaÃ0 Œ¶"™ê<Ϲ+À˜¨žM?ÑÄbBHÈ.Æ8ÚÛOÖ:8g!e aØÂ­[Ëôà¥RÉ­Þ¾ƒt:F½o=67î¢V­¢·w?<›ˆ ÝïÃâÍ›(ÝÛzÀ9‡µ;Íd2XïÁ¸Àøø(úú@·4õ&R©$ç8ßCè’8òüsX/a´AÔÒXX¸ŽÅÅ%D‘u  ^¯Œì†^~¥·3™ZW2€ ‰DΘHwgP«o# [°Î¡Z«Á(¬·]½úS(`½XtÁÖ_T * ¤‚” œ ()±Û¬ƒsBqmZkh€=2™´hOt@Hµ'!Á9c BI„- ç,¬sèîÙc5t¸Ã¬­­9¥¤ ¥„\0ÆPXYy‚÷ÖYXk`1úacôˆ²Þ9Þhè$‘“§¸'ÿˆ8ã,bŒ‡Œ±PÙ`ŒEÖšþ[{žSY»úIEND®B`‚OpenLP-2.4/resources/images/media_playback_stop.png0000644000175000017500000000076312657640340021536 0ustar raoulraoul‰PNG  IHDRµú7êsBITUìF pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<rIDAT(ÏE‘O+qÆ¿ó2älÞ€¢D9»ì³#m›%‹ýv6ì¢1‰.Êû˜M{ð´…ƒ6—±¢éGýc¶ƒµžçöôôž ¿>±ƒ ô#? ÂãàÄþËA|ëPÕM•>>5ªÔÍ¡ò­~¡aÕ›ÛìÒ¢Íh±Ã6õfÃBñÔÜóJÌ'_hÞxæœ <…ˆ²7Ç#¾éÑ#%AóBM£lY¹åÃg ØB‘¢i³Èú‘TÂîФ\Ò ‚KŽY ¡Ë•PÊ‘G›˜”=–É1Å8Ó@JÌ>åHJQ•G4=²Œ2„0Ä(ÐCs@)’bXî/¸L0Â0#Lô–)†R nè’°Ä “Œ1É ÐÁ¡x$óvÁ¬òŒ&å_)‚™·qU–S^Ð$¤ƒ®Éâ*D9ËmfX£M—ML‡*ÜæœÕ‡åZŽÊ› %vØc yã(×ÐD‚íù0å¢|è…îBf³õ‹þ™IEND®B`‚OpenLP-2.4/resources/images/slide_close.png0000644000175000017500000000145512657640340020030 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs × ×B(›xtIME× ÝºIDATxÚeÏ[hÕÇñÏÿÎÙÎήçlGËæjc‹Ú9-¤ƒ‚.ôEXJ£‡22ɱ(Ô |ë¡|¬H é¡ËÀ XZ‹õ’LÒœ­énív¶s¶s mŸ‡ßã~›}DC‚}1ˆÉ¸øþçŽÀqj¨ Ã7Zwï®M÷ôc1‹ãã2ÃÃål.w~·‘Ù`Kß·nßÞ××߯®­íŽúÆÊŠ+gθ622¿Æ3Gùx–èã\lK&÷>ÔX´..TJ”KK%®Ÿ=믱±Ù%úŽóOòj’½÷îé“ ³îzå€YË×–®›Ÿ¾aëþýòÕÕnßJG"é8§„ˆ$8œŒ„bMy…椚mÛu:fº´.37®ãÍ#ê;;Å{»-MNHÕ×Kðâ{4Gîà“t¼Ô·ÌÈÏŒÊÜZÒ¾÷i[Ù§içcš»º]ýá‚«ƒ5LO)Î,ËWDÊ\·qO5AôöëZ J¿ôÝéAñ†¤tW?úÑè©´·ÌªjÌŠÖR*ZÃuŠUJ”‹K,SzŸ|@û·Å;zU©j&RC 1 á9&BV×säŸOÙ30¤uÇ.™Ëç~uTm2å©ÓCfw)Ä)°ÆX8ÉZž‹Eæ&ÙúÄë¶>¸ËÍKçÝúú%ÕW?ví›#jSv¼vÂüü‚Ÿ@ü3Ûyw)¤’¤ænâ)bu¹Y²WH¬²ÁО_d%@Ã统·–‰­†”«ˆoЄe.|À¡Q¦Q‰`ý[~‰1|õÉŠt]Q"Q ®dµÌå?8ÈÉ›ü‹ 6 ‘@ª›–z¢#Ì”Y@%ø€ ÿ˜»Z[QIEND®B`‚OpenLP-2.4/resources/images/topic_edit.png0000644000175000017500000000200012657640340017651 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs7\7\ËǤ¹tIMEÙÍÝ„€IDAT8Ë]mL•e†¯çy_Î+>¥FŠŒeˆ u–|¹iâ\¹(DekÍ­eÎ>f4kŒæÖV‹©ëãOÙÆ1MÊHj³ΦE€|H*p€sÎûž÷ÒJK'¤TzóOœ¿ë%L€àÉJŸç™=;Ñ'Wëéécìùðnò3m¶V;œ7òËá/ÏFÝ(÷¤¥b&nûÎͺEp§z:èù¹AZÛ¿fïökÄ%oÑFΓѺMµEÀp¼µD„툾Ý7o‡ÌL? õµÄ™³¤Çp`w.KR·1\®C—à8n„œœ,ÆÇ¯þˆ/+NÓGZôÐà][[3ÜÔÔ¤ËË×¾ ¤[–•øÜ¢¿ó‚H|RÊ$¥”\UX˜U°² ³«ëÛÛ¶ùÿÔ¿ª&zîzŽ/]IEND®B`‚OpenLP-2.4/resources/images/song_usage_inactive.png0000644000175000017500000000131412657640340021551 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IIDATxÚS=Ha~Þï.w&VI…[(.PR›AìhqqvÐ¥:tpª“´B»´PpéÐÅÕI(tîh5t 1!b«b¢—ûû޾ߥ ¥ä縻ï{ŸûÞ{ž—˜7ñE©¢ð@ =T5ðCÉò‚Ö‡¸T`—HU‰^Œ¿/ÎÍ9ù‰ 䯯`àãüà‡[[ÁY½þ¦Äü©Ì¬SS¼Oôurq±òpv–RPD !„Ìœ0Ò?··±·¹ùí ós#bC Å+ff*÷§¦€“°mC‹YVzTŽc<˜ž†×lVöwvVÊÀGÚ *怽gËËîÐè(,Ç’ˆ(!ˆfè( ã @»ÕÂ÷õuÿŠyÒvù<àªÓÓÞW³YÐÀ”++™L*@aíûànöÅò–åFQ4oZ(ˆj5ü^]E?È--aHÚûÇe#P¡P( ´ dÍé‚ d§o•ê[ #{!40ת@k~aöv£¦Ö6êUFäE]‚ãäóÈCårƉÄ}}ðò¡üÀÀ8!¶‚y×zAÔ”Û—ƒÌ¶kdY½™Û|?)Ž®®ÎÛm4=Ï÷˜_ÙK’íÏJ­µâøƒãy ¥z¾±2yf­ CY¿”â†vµ^3µ·¢|W©Ê=ù»C’Ghɽ$=’ƒ¶4„ça˜FùÖ0Õd˜,¢w#Dîé=û7‰]é·#"gQäË<¼}|c˜þ;ÎDT‚€Í83ÿsœÿ ¥<F.7IEND®B`‚OpenLP-2.4/resources/images/service_delete.png0000644000175000017500000000123212657640340020516 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×ÂfZóÏ.šS‘|'ª;±ˆl \üø‰KCcÍ=ãñgßT#‰è-…Jì91PŠ ((Õ°|A™‚ð¸‘UÐG©  H.—Gò\^Ä4ëÔð `FX’$Z¯Ã YAÌ}ǧFÍwVÿÂ{èðúGï¿d<ÁŠšÔJ²Â ¥(Ta2З)ºÇétú§3¥a7bF‘1Ø C‘BÄáÅ 1”%Yb.O9k¨ªX,vzsEƒ'&&FJ †qhù6.šÖ³¼HòŠœ®Êo:=–¯$D‘ó¢‚siN[FÇZÛMò™™ß>^©è9f –îõ@³ÈÁ匒´*¾ÖÙøÐdo^¥YIGÓ£i‹>ñR ße®2àð¸åX–ý1 ÊÅ ü~ß"¬àæi{íó]åºv½ ’2…JÀ°õµ|ÞéA™çZ ºîæøu‘es䉓§œÖ#–§eYž\XX(ì Q|>ßü;·¿5–R¸^L5ÕÉÛ–Ã<]¯¬/æg~þìʧïD"W <ßné::Ý»­ídYYÙ÷ÓÓÓ¹=.¡]kj¨(*ÅBÉât:­---7à Xóò¹s@MQÆÆÆz‡††ížx7Â㿞…*@)à1›››qؼñr£ñLpiÉXm2»Üî~‹År{rrr³HðþD"‘mA®××ן ¯­U©Ôê’N·{Àår-ŒŽŽ>,¼?Ñh4 ;pÍjµº·S)3ÇqܦþîîîH6›ÇÀÇ9𦝵@`›`q0›ÍÖ _¢žD"Q…B£v»½F«Õ¶z½Þ?À%ð_a2™°÷ Ç Öön£áIEND®B`‚OpenLP-2.4/resources/images/bibles_search_lock.png0000644000175000017500000000070412657640340021334 0ustar raoulraoul‰PNG  IHDRóÿa‹IDATxÚÕ‘?HQÇïŽhÑÜj)¬¤?478­ RÍAS­N–£Øu•Hrf™„“T—àQˆgÚàa¸(öo¨&¿ý.Âêú³õƒïñ{ß÷yïñ ²8ÎÙP(—$)áp8æôÞgÙÏ6·ÇãñL¹\†¦i(‹¨T*eY£µC ÷J¥èôªÛí^p¹\ó~¿ÿRUUÄb±¤ž1X³Ù샢(u³Ù<øÖ7™Lö@ ðT(õŒ‘`„®]‡ÃUš³ïú¬Çã9Íd2u=c$%xž×ßêóùät: =ó­@Åb£@9•J Â4®”1œG†q¸Úmo¢^’Ë}P·‡pŸÁîʾì¯Lá9oÇ͇œÄâtEnƒ…¶Å vÌ¡~;‰(?þƒÂ&Eà^—÷iŠÜýJÀàd!ówÁ™H£ô¯߸³Ø…Ø’ GB/rÑ!Ô. ¾‘ª™°mD'ÑCôDÑMX‰V¢…hÒ÷½i—„`Ö qIEND®B`‚OpenLP-2.4/resources/images/system_online_help.png0000644000175000017500000000167112657640340021443 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<6IDATxÚM“=oUFϽ3;»³¶×öî:¶c;ac°…mÖˆQPÑÀ4 !AšT`[ )’-‚„(ˆB08þ\¯ãÙ¯™Ù™;s/ŠÈ§yª÷c7›!'žŠ q¬HŒfwÇK[ÍÎ7VÔùdoo5z"x|œ*ß]\˜˜ûEqa¢È?ýÅoG\™Ç÷š)”†íOØ{xü·µª% ?<úEu~r¾º8!ƧJdr™<“•2½Ô½˜¯Ëþq›…¯P¼P˜éÊü×rpleNZÖG ÏŠéÙQ CyÂÔÐè¦ÌÌOÒŠcš±"’GmÅÖG¤8ÙÜûƒ£ËUYè³?œ® ;É33cÄR/_­ôšCj”Ôqh&éö2ÔL?_a¬R¶G*áÚá#Ÿíz›N¨H´ÁÍeÐhü(Â86ÊÉ \ãæH„îMè§ÎBFG Ì[6vÏж!oeɈƒ¥(Ûa‚P‘ëw¹}¿ÆK/\æÀ Ù<ëâE ]¥ÿoX A¬HuBb -¤ØI”ŠRCí,à»_w¨´òç4L‹f˜0R²Ù8øø­gé(Ã/;Mþi;"êª;V¾º‹1ïåJ9§kIú†û©Îްp©–E©£\Èr©èR{Ô¦ÙH>Þ†‡ y]ÆñÒºRæ–_ tÖ¶hwºlÖ;ì·B†ó6cƒYªðh¶Ñ´¶Z&hÅ_)µ´&Zž÷e£Ö¹ÛÞ8Õ9×!P)õvÌx†‘ž$NRR“ ¤Åɽºim7üÎg6€1«‘7^Ó›ÜlÝ»yùÚÓù£á>¶zͧqʃûuÖo?äŸï×¢ðÔ_:ícÎ=Óy„X™Ëåy7“µÞ”™L%1ZH­w¢ þ!å·Æ,­sŽÿ³ðX¢?¸IEND®B`‚OpenLP-2.4/resources/images/media_playback_pause.png0000644000175000017500000000074412657640340021665 0ustar raoulraoul‰PNG  IHDRµú7êsBITUìF pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<cIDAT(ÏE‘½JÃ`†O®ÃÍ!—àì.R iDJµÿÐBùšb­?Ä uÓÁI¼qð¤ R\\bE ŸÂ7į<ÆzÞáÃáÎ#ÈozîI'Q¥qr÷Ü¿½ Hä©®iÑ&"¢M‹®9R‘Sì;Ý~“7 xbÈ7ìÒ¤ÛßwABµÃ9÷¼’ñÉš7ž9c‡P!¢Ü† yäÃ7cÆXr4/´iåÊv\ç–w —ôèPÇ¢PgûXÖ“ îÐX.hÐdȱÅz"µ4d@†¥Ã5¦KƵTªi‹G4c怂c4‡TS©$µ¢Ác   %cJ"•Øçš9+ÌÌâS9–e·l6yFcù‹&¤l–]AµÀ)/hrìäW,(D%'è—ØbÀˆ MÆ%‚þ’SÈ _y¦D•]öX¥„g|8›RvýØKÓÅÔKü¸<Ñý‰o3öhÚ7IEND®B`‚OpenLP-2.4/resources/images/service_collapse_all.png0000644000175000017500000000057612657640340021720 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYsvv}Õ‚ÌtIMEÚ 786\GþIDAT8Ë­“QJÄ0†¿iK¡±1l`ßÅ;ž`/à=<„÷ñIÜÓx‚,¥kÄÚ8>Ø.+u¡Ø§ð'ÿ?3ÿL`a€÷¾ !l€z&oï½ß†º „°iÛöÞ#ã Õ/ò¼èRêK‘ìÀŽ1ªµV€§bÀjcŒ4Mó~"ã/Ü9WÙR Ç=¯.Wê±"èxî?\Tµ¯&y^t·"wok` XÀŒªÏ€¿È7À5p5௧ZH©/_z}Ëè>ÊAÁ šRï&"»fWÎ1ÎUî|S8Û÷1F6lÖ*oïýÖZË?>‹ãIºcaÃlbØIEND®B`‚OpenLP-2.4/resources/images/projector_disconnect.png0000644000175000017500000000152712657640340021763 0ustar raoulraoul‰PNG  IHDR(-SRPLTE[[[¯¯¯ÿÿÿ€€€'''±±±$$$¤¤¤"""ˆˆˆ™™™777}}}qqq:::444vvv[[[¯¯¯~~~£££???„„„<<<€€€AAA„„„qqqKKK„„„LLLsssœœœÂÂÂXXXqqq¬¬¬ÑÑÑÏÏÏ[[[¯¯¯ŠŠŠ®®®™™™ºººÄÀÀËÏËDDD………˜˜˜™™™ššš¶¶¶¸¸¸¹¹¹¹¹¹gggyyy„„„žžžIII[[[fff}}}ŒŒŒ£££§§§«««¯¯¯ÃÃÃ+++111666777999;;;<<<@@@BBBDDDEEEFFFJJJNNNOOOQQQSSSTTTWWWYVD_\JeaEfffggghhhifTjfJjjjmmmnnnqqqro]wsWxxxyyy|||}}}~xU€‚€‚‚‚ƒ‚‚…e………†††‡¯ìˆˆˆ‰‰‰ŠŠŠ‹‹‹‹Ô‹ŽŽŽ’’’”””•Y–––———›››Äÿ   ¡ç¡§§§¬¬¬¯¯¯²²²³³³´´´µµµ···»»»¾¾¾À×ÀÁÁÁÂÌÐÇÇÇÇàÇÈÈÈÉËÔÍÍÍÎÎÎÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕ×××ØØØÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞÞíñßÏÏßßßàààáááâââãããäääåååæææççççëõèØØéééêêêëëëì¼¼ìììíííîîîðððòòòôôôõõõöööùùùúúúüýÿþÐÐÿÿÿ±Ø¤×tRNS@æØfbKGDˆH pHYsvv}Õ‚ÌtIMEÞ ; ÇóŠý~IDATÓc`À–îܳoÿÞÝËró–ló‚E›‚C·.† ,X›œ·a!\`îê­[·m]3ÊÝk4eÙ²åË—/›áO›¼â0²¦U웹E‰_»o_Í6$žå‰5‘øênIíÈ|cd¾Ž#^ñ=1"%äðIEND®B`‚OpenLP-2.4/resources/images/openlp-default-dualdisplay.svg0000644000175000017500000013230212657640340023002 0ustar raoulraoul image/svg+xml OpenLP-2.4/resources/images/service_new.png0000644000175000017500000000110312657640340020042 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÀIDATxÚ½kSQ‡ŸsrÁ¶A‚R*Å9ÝŒ“u«ƒ›»S»ä?hŠ%Ô‚C‡¢ éjÅ=µˆ¡BÓM%è͇ƒ’››œ×æàáp‰_?øqΞç}.óü+«ÜÎ\Ë,e/g§«‡õr»ü@–åI0‚ÆžAkm«”JôÙÇvì²xi‘ÍùMî•ïÎ¥¿¥«%ÀÍöé6ÕN•ýO>W ˜AMcX R)ë±ÓÜÚo@í{èN„Ë‹›eÔ#5Bõë vçYg®ÌLB=r½¿Y<˜N‡ÖúžH¢6í6™Cy\Þ.ç>Õ€ëû'È ¿¥W>3GkÉÓ›€62󳲞d&VÓtþIàrpA=ÜÝFŸ"ÔD4±žh:ŽŠÇˆÇãa|:$н‘_÷ç©t:ÚƒŽØÝi·A*—˸8;‡e[8( +59‰ÚG>!y$€ØÝqc0M†a@×uÈò„ÑÑ“É$ÞªÕH¿ÓÇè42Á¶mJÔ 0mf[¸œ@á|™5›ºÎÆŸ äÖVAª×ëõ^«Q<¿¼@R 4ðïü ûÒöPO\IEND®B`‚OpenLP-2.4/resources/images/image_load.png0000644000175000017500000000102312657640340017613 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/projector_hdmi.png0000644000175000017500000000053712657640340020553 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  šœtIMEÞ 7ŽaìIDAT8Ëí-ŽƒPFÏãç%ÏvÐ5`Hê+°O‹!•UXvÀ°¬ jRG$¸#&3f3c{äMΗï»ðæß(ß÷% C‚ ø>ŠJ©ß%¥Ç‘Çã'"äyNß÷ ÃÀëõBDØ÷ýP4Æ0Ï3EQÇ1ÞWZÓ4ˆÖZ<Ïû!‹ZkÚ¶å~¿S–%Þ¶mcHÓ”º®¹\.¬ëz8aÛ6Æqät:ÑuÝg+ÇqDkM–e$IÂõzEkˆî?ŸÏc¸ÝnLÓ„Äqö}ÇZKE,˂뺇 žÏ'UU±®ëáŸÞüð‹jö@„BIEND®B`‚OpenLP-2.4/resources/images/bibles_search_reference.png0000644000175000017500000000375712657640340022355 0ustar raoulraoul‰PNG  IHDROc#"bKGDÿÿÿÿÿÿ X÷Ü pHYs7\7\ËǤ¹ vpAg\Æ­ÃLIDATHÇ]“iP”g…Ïû}MwKwÓHw#в QeSÅN‰€bîƒ6‘!*HŒ3×rÊe,—A $Š{Œ0±$¢S*¥”ˆ€lŠ­€ˆ¨H ½¯ß;?p¦*¹žºuOÕ©[÷\’T“T“T¼jxÕðªI6 …D˜P”°3!ÃaóHRµãç˜ÂG¼óÎìâ©!.·¤öÿ[ž ùÍÔž _<ö¨šnQæh¥#’áý³Cÿ5¹üòÏîk<% D …Rõ(ÉY9æÙ2¨Ô$ê&ТÊñ·ìcÞœ;±9QÎÌåÒNÿ¸¨[õ¶ 7…ùÎÕbð·O;X2E:í2ÿ°ôžôLÜÞ{ÚÈõ¹•aÙò Þi‘<6Œ) Až¿°ßÙ<è,n½XÁ[kã1­Aõ>ªùûý뼜Õê,âIºQË”™ÆYÓhJëè|ÑeŸRxy×0t0áÛÞá—õ¯×fål³ænþ,j–çÒel¸jò7F½þoZo²Ê>Õ(—Œ^k¯ñðûrxc7ÂI ¸ZDmél%³)uŠhÏWo¸YéȈ.ðÌޔˆ‰¢P™ÌõšH0ŠÙò³ŠT€¾À­x£(ÊäúLs˲Gáôm1ý4<©ÿ Q›*tCW—F8Íìx.Ôäb6YöѦtóvs+¶›a0·ñ&YjÌ«Ì]€X:æ4/&ê¬`+?<^¸’ßÇQ—¿pŸ ÖÀK~J÷f€×’ÿ¨¹UŒŽ|3ÂoÛ + Ëm_ª³Šé’Á´÷¾¨àݳGè=Ø1ææ“xU|v|6³_&¨ã{s[;n¶_ë¸pî¹s¨¸Ïåøç¾nÎ+í}œgÞçK+¦ò˜~Ç)‡»Ðp’îH3i&¿¼cìEÞÀª±>·¶ã;ökVʬÅC“‰µíåV\Ͻïö¬;4O"Hbw´„ŽQ Î:µ1bâ¢wÑ»èÙ¬D*âwíavwûÛ¬Z¯B¯^ѧ¢ FƒRÁ¥lz—ÚïçÍT¸§ICù›k´íKG&Àòù:ñ„>,ÔÒn¹8 ;YtÎæa[aW³L'¯g@Ãä5N¬Vø‹ÌÅ( ûÈI6ëà ˆz”Ô”>QÞ÷¼M»usŒ –.¾0µ8*SfÂÎèð?DíÁNýUÓ{: 6‰oˆóˆé®é8à(qìrdüµ Ûl/³ÛN0ů¿ÒÌ0-¬ž±Ëé«Êè¿+[V”“ÿ—ÍX< v•}AŸÑ6.Z˜€¥>b‰è©¨èr·^g0 ƒªê?ÅNú¹›(™£ ž2T­ÇbÆ‹_*Ù4a‘’=î¾þÏPEó×»¾Å'æöŒJ{¥y_SQSN‹Ï¡ìªŽi×r <ñ°± m´¶Ñÿ}Ë:5§çŒœIè“ãû±¯—¤CòÌ÷Û¸¤“’‰ÚÈ,P罎|¾í¢þœ¡ÝÚu «ñÉø¾Òû†‡ß7~QõÉí+7WÿçúÝuO„ùîúÔÜwéÛ @ÿw<²Ès‘碉ì›Y°„ì Ù²³æ~VIVYV¹¡J%X¯U9UY—ýº´-íÓm˜1n›ìTÌÑQ½´ò· dR4S?n-o8v‹”ÆìNöä£[¹`öe_ ~_äDAäš2Ú{‡"™ÈTzÁ ^ðJꈦŽÎ'‹È:RÏäúmw» ˯ókw?垬è÷Ò‹Ï‹^:?t7ŸÈòø/”&“ÿÈ$"zTXtSoftwarexÚ+//×ËÌË.NN,HÕË/J6ØXSÊ\IEND®B`‚OpenLP-2.4/resources/images/system_exit.png0000644000175000017500000000165712657640340020124 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<,IDAT8e“ÏK#wÆŸ™Ì73I5ÉhÔ‘t£-ƒ„$ä`Úª¹è©gõRÅVöÚ¿ °{*XªÐKwî¡GA„®"lÕ)³HAƒ• üÅÌ8:¿¾½ìŠÔxÏû9½C)ÅSuttD~ð<¾¾,Çq‚iš>ð<ÿîüüüìiŸy hjjîìì|—L&_D£QÄb1Äãq„Ãaxž‡‹‹ kmmíÇÃÃ÷Ÿo¸ÏA’¤ïÓéôÛT*Å*Š‚z½J)|߇ã8H¥RˆÇã¡Z­öFż®ë/@à EQ~mkkcgffL&±°°Ã0pÏóP(@)…a899™EñO]×ß³‰DÞ$‰ÆééiȲŒ­­-Ôj5Bpwwß÷±¾¾†aP( ë:ãyÞï---„Åb\ww÷`{{;Òé4*• VVV@¢(‚ã8ØÞÞÆüü<8ŽC±XÏóòÕÕUže&ÔÓÓPU°, ]]]€¦iXZZB¹\†ëºÈf³ ”"‘H|Í ‚ÐFÁó<!Ð4 @”RBÀó<*•  Z­" C˜¦ù%Ë0Ì¿¡PŽã  " Á²,X––eAeYð}’$!ƒŽãàûþ1 ÿvÇÙßß!¥R †a ^¯cccËËË0M066†ææf¨ª Žã Šâ_ ”bppP¡år™^__ÓÙÙYÚßßOS©¶¶¶Ò‰‰ ªë:Õ4ær9šN§¯ð ¥Êäää?Õj5877‡ÞÞ^¨ªŠÕÕU˜¦‰L&ƒÑÑQPJ155…››ìîî~gÛö¯œËå~*‹¯ÎÎÎ0>>Žááa¸® Û¶áû>ööö°¸¸ÇqpttôþøøøÛg[(•J/óùü/··· ———á`Û6X–uvvv~®×ë¯(¥Þ3Ȳ,e2™×²,%IR˲DÓ´êæææ×u;==ýøl Ã@€ø?GØ,ý“o˜ÿh¥q¡ø;IEND®B`‚OpenLP-2.4/resources/images/video_load.png0000644000175000017500000000102312657640340017637 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/media_optical.png0000644000175000017500000000401012657640340020323 0ustar raoulraoul‰PNG  IHDR szzôsRGB®Îé pHYsììu85tIMEÙ.§†€bKGDÿÿÿ ½§“ˆIDATxÚÕ–Yoç†ùz—ÐÞ-Ú½)rÓ«"@Ú^h/‹ÂAQ¤€Qt…±U;vlYJ¬F²,o²¬ÍÖ.Š«È!‡â:܆Ãáp'EŠ)‰¢DY›çíùW´"Y–šö¢p0Äpfž÷;ç¼gFó±~}þýãλo=è9?­åF F‡³yK¼C(Ùì^g÷ŒŽNèÎßé{ü»ö7-mßüÏîÁ¯Ž=ý¿œšárœÍQLA3j4šE,–C2¹€L¦ˆ……ŠZ*­ žÈÒ5òÂŒÞü+v¯ÎhýÏ|Úqÿ{#£æ”Ó…_ˆ©Á`á0 2ûðDbét¹\…B‹‹UT*«X]]Wëõ¤h<31­ûþ™ ö·{‡Ïhýà1ÕíU༠¾Œ¥¥¬¬Ô±¶ÖÀÆÆ&¶·wÔÕÕl¼óöÌ–––Ó‰x2rï¶ÓeƒÁ.©{!@ÁÓ'ÀW ¾öþÏŸo3xñâ…º»» ·OøâTð¾î=^íØ !ài^Í›FHÌ"*¿¾¼Ìà‡à{{{L˜€ÍÍ-Xlüï_ ¾÷`Pó¸÷Ö\ΧjH´@ŒðŠXH€ æU^¯ÕÖà;;»‡à[[;t~K­T–1«7¿ÃÍ»Ž1×?V‘x½*g˜ ËvÄ7DY‚=‡œ("=¾õõMap‚‚ÓîŸÓÿ Ô×6Ô˜’¨ Ôýð·!΃¨Ù…ãPÌd3Ri¤¸_téÜëö—5? ¾GðíWàëäŽú¾` ÇpD€q\_‚™ 8¤ìnd²I ¥ÜE>"šÊBNW_(«ù\Ê‘C>_ 1U4›*¥ýXøZÁ×P­2Ñ5u©²¼{þùí‡ßqÓî#®dwq¯ˆ”?Œœ'ˆ¢Ïb’G©èA©QŠ&jÕêʳÍÍÍvÚy{­¶ö¬X,ÖÖÖÖàFÎ2ÅlI×RV!†cè¾ß÷íýã"¡$"± ‚D(†4ENŒ¡‰b)F5îE.i¥LˆA§¸DqâÅ'ì\¥²ä¯Tª¬ã N¥©o°,0wPß”©œ9(Jš"ƒÁáñ fõv«(¦UæsEÎ Ë"Ïbb1žÁR"…rTRsù€¿Q´e3Ù®™)íÏúû†~nµØ11LD&“[!¸ºA»§“ಙR©âF”¸ªÕYš3Údq%%‰ÍölÓçÙ ù2J…%TI}.C­Rp9ÛÙ}<ÏkÚ®whØ2èL÷YVhò f3 T®* t_¶xN™ ø%€ä›Ý×82á–šã•:7¡¤°»³û)€ö{=2ô`èàþK-W4wºzßgY ¾¸&ËqJùñp?Á½Þ0f´–ÆÁNÿV2yÒ„kЃ²¬Ã/¸Ýúñ·hšs}ffF34üô=7w¶wZÃ!ižÜ‡gŽÀΦ¦L[¯ Èd2ÇÁ›>§æb]üÀ•é1ýGÿ¾·¥å«L$â ÖŒ­åÅžˆ/Ф’…K!#Lpá8Ïû0:ªÏ4Ì |>ÿuxÁæz½^'•<€¿Rgßy68uñ¿»ðÝ[׿|[ðZUUíð—HØV”"nU!¨ä%Ë 2|þÜŸ'¸àY~`h’ÅÖ«ô1ñr­0ÿ20 ægæk6Û™&ÄÂDP\ÝÛÛ½«Bíðv.›’¹ˆ¨C*a‡µ!ðB°‡ááBpXöaÎê†ÙâFwOÿÕ½~X.¯°3(A,˜ŸÙîÙLgõ§ßÛj¡°HÖZÌ7»>¢ø˜¦\¯’ó~w 9¨Æc䨡^Á'ç‚ÝèƒEçaÆ…© >¹òùÛ‡¦a.WØ¥´«ôVc5? o¾Ri¢5P\,«‰8Õ7"#Œ ãj\¢n)B¢‰h!Ópº'ÁY 0iyè&jß½ÉmÍ×}Ãýi}ýù‰pVöBa3½\&Ÿ–^Z-¸Lð0u»O†ß#R¸àóR¼pºÆ`ãŸÂ<7ý´7?ëù³æ¸%+‰u*z"¼BðRõ¨Ï%‚hÈx"ð9BpÙüpÚyÌó3àϨþLÀ°:4ÜÕл¾uƒ²`úi}}ãLðæx%Ÿ |®0\\Ž9/8£ £ó$ÌæhgûñÅ—WÞÓüáÙQ~s&¸¯©PÏoùÜAp‹6ƒ s³§íÐM› Ÿ Î¿uSsšåZú’9 ¼9dìäó97ætó0NÙ1;nÅôØ:;{gO7ûG g¿I¬áÔSÃy‚3ŸçaÐ|ªŽÐÞvwÿåÕzëŽæLk|Jû~0$m•KË/¨o„[n"¸ŽWud¹G÷G·?»Þù Í7]㓺‹N—€˜œ‚KSÃ)Gà6Î ÐÍÚñøÉÚ:z.jþÛ«³ëÞ»£cÚgu\U;kÅ5Øè¸¾:4<%ÞéyÒqéòw5ÿ«u®«ë×üà\×™žù/ÿÝ_ÈXîbIEND®B`‚OpenLP-2.4/resources/images/projector_item_connect.png0000644000175000017500000000443112657640340022276 0ustar raoulraoul‰PNG  IHDR@@ªiqÞsBIT|dˆ pHYsììu85tEXtSoftwarewww.inkscape.org›î<–IDATxÚíÛ}PTõðšÞþéŹs›éM/·n]Ò¹c¯LÔT7{ù#§ÑPÈ=gÏîÂ"¯’M€ò2…b¾Ljø2{½Z¨µ)âKŠ˜/¨02º Ø”» ç<}Ÿ­µS¸à‘Ã^™GfY>ßó;¿ßó;g÷&"Óu#€ŒB”(Š·ÇÄÄÜ5&þNàß¾}ûýwliii· qÖ%’MšÑ×óQQQ÷^þ/À¿|ðÁ'Ož :vìØ€#aÄðb¬õ?ïå'¹Å8«!ÌR?/ØÌy‚$vôÏ!àï~&ðSŸ|ðÁ Ú½{w¿!Œ¾(ùÒ4¹œf´.&uŒŸ+\zí£HÙ$‰9„Aà>x;ðQÀO~ð!ÀïØ±#hóæÍ}†02øÂ$who…R9ê÷D«ô_ÆOü,œ&T†Ñ¿s"e!X,–ÇÀ? übàs€OÞ|$ðSŸ|ðÁëÖ­ Z¾|¹&ÃñQ‰WñêŠø<…"bòãQ¿‡`;û ø'€ÿøÕÀ—Ÿ|*ðvà#Ÿü$àC€ÎÊÊ ’$éNM†ùùžR ~vÕ‡4;Ù¬Áð¯Þ ¼øÕÀ—Ÿ|*ðvà#Ÿü«À?üc¨?¬ NxCÁðÏß |ðuÀ;w¿ø2às€OÞ|$ðSu¿æ0?'?É3­§ìÚðÚ~ŠŽŽöøvà›€¯Þ ¼øUÀ—Ÿ|*ðvÀÃQã Ÿ1©%›Òb»uáµ!-6šöíÛGÀ_¾ø&àë€wï~ð¥Àgž„z~D–A«Õú¨Ùné˜U󑬯©Ws£(&ÎN555üeàÛo¾x'ðàW^€z}„!múñÚ¶lÙBÀwøFàë€w¾5m[amï%)¼ÎøtX³f ß üàß…2ÔfH´™+°Î+úñÚ9Áj·Qyy9ß øiTBÀl‡Õímÿxý!˜mîA¥åo ¼þ°DzÍfó?&ü1ÓEÉÜûô§3‡ ®íLs‡„††Þ2Ç"VÍHšãþ×Ò°€ ÿµ!ðê3²hCðZF^«{D°š½aIR†à±4=”’’Ò²dÉ’+y…ù‘b56kÿ!†?}ú´rîÜ9®sòÂSXæD‹] †`2™Vá©©©‰°{“±õr3ç™Âðâ#í¢G´HY†ŸŒŸ?~«ôèQª««ã­lOÉŠ’1G¢ðyâ°„ðä§áaºÂsŽß»w/óŽJW–öf’K³æYBøõÅ'˜IŒ±\Á)8ËÐpÉêïÿ ___O­­­$Ë2}õõvÙº`1…¿oõ‡ Ÿ(ÑìM ¯^mÆß4Ós¾­/üž={®â[ZZHQâþ\åØ!g.Ê£ˆ|!èÃ'ùðšKîXÞÒ€~|QQ‘ïÿàÇÛª«åO²2(bžÄ!èÇûh+D6¯-L¶¸ÉÁ°??¼&€'NPeq±¼èã,^"9Ýøém8úñ6¯Åfé÷âH@àù9þ4J ‚à%§Ãà&FÆGöuäÏãÈ'hðšÒ‹ÿÛ@øÂ¡àù'544ÈøyÞ¼Åùþ†Ž¿PHB¼Í£ÅkKï~ÿùeË–Ñ©S§þ€?pà9Z±b¡é!·Û= ž'GÆ?~Ü÷s¸cެŷ‘˜¨Âg¸;sFAY~~>UWWûñ\ ãøb¥åñx…ç¯wvvRss³‚ .lf¶¾›`ò"5žï#zÅhÉ£¾ä>½G^…Ö¿ìKOOWÐltUVV*j<†²odàrµ:5žçþ~ Þår)ÜBó>‚·ÒØÌ¬ÿ5„«x7wx¼Áí–vazGðÑî¡à¹ôlrfTTTnJø.KwttÐÙ³gkÕxß½¡M›6ÑÚµkɸAãý¿ËBX¢àõãýÏùCâ,]j¼#௢‡Sjkke@!ߪñGŽ¡C‡QUUÅxžûÅsÉø>/ªXÅ*“$fþù9›Íö ú®ÅqÍ7=‘üò¹sçžÅ/ïÙºuë„ÐË!`cü7j<Ÿã æòòòÄó>¢¿ß‹›âer8BÏþÛ¶m#Ü¡¶¶¶+‡®çðÙ‰âßwj<O’üœQ£ÁüëAxvÁ‚];wîTvíÚu޼H_¸iéäó~Æ µƒÁs Í­´Ñx.==À‹ .ìB½hz\˜ø\º1)úB@ÎÜÜ\*))ùÞ¼ñ¼ƒó¹wÿþýv£\ø=/¬N kJNNnÆã€ÃséÂcÙ“1áñDWïaåÊ•.y7–½3¼:à†åñÉ“'SAAoxÔçüyÞGŒ$žK7ž‡6Ž<ß§ÿÿ çKFFÆ%L”¼þËøš’MÀ6£Y"´¸(x®ë‚”0ÜåÌÌL~,ãõ;= ½X"Þ¸q£²~ýzB øÿ©ñññß žëºáãââzñ=é˜yuðݯÇc ÍÒwh™«¹uì—ËëÇ¿ó[ð&½óøü7L tÕuÅÿ?Ö˜Æsiýj*•J+ÇLW×¹“¥ûø‹«K¢u¿}ãP½ƒÝ[bA’Aß“g’ ùÙQB©bîŒpÅïkª¯åo Žþ“XÑØØt¥ï£Qï.X©xqÀœ¥Iý42fžtýlýn\]þ‚sN­×†¥21:æUW©®­…¾^YYáþNŒ9óV/‘ys!)¢µMúöpìî}ÎX“˜8DAë8î}˜‚3É]YÓI­aa1(e>rø8HFQ¤}ƒ…¸rgæJL©ð‡ /,,­y³ù›@\–Çææhåj„$ƒšüßzO*(ÊžNLiqDeh⸊J´"Aeæ®ù% ù#J †À&ABI$-ëôãIAF™¶bytß>“Ù¬r8œ¯8Žß<ϿߞBŽAN®œr(°…ÅbÁ›ššºÛÛÛQÏåËhÉçúûû߯©©OVü$’œM919œñ?C ÃÜ4x‚eŸ‡ÃXuõ¡º²²R} ¸½°° ¥§aK.wä¦3Eõz¼XÅ gUe¥çùëSSSþ#¡PLOOÿ`µZ—Ífó1÷ì,þ¬Í¶W–W«Õê~¶¶¶¶ò”ô$ µÃá’$Ý…`››Yët:¯ƒA|= ¶“ŽŽŽò–––f ó;§6Ú]ßzáIEND®B`‚OpenLP-2.4/resources/images/plugin_presentations.png0000644000175000017500000000104712657640340022014 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<¤IDAT8•“?ˆA‡¿751‚2°PÐBƒ¤H%¸-ÜÖ2µ,؈µ‚¢ØÚ iRZ¤,l¼Ãb«Xn:åä,”[Sx§qž…ÙÍ]\£>xÌû½o~óOÒ4½$"†’F·Úíö‹f³¹SVÁ`ðÑZ{¬¬¨ª5à›ˆü(«{ïg•F£q4 C'" ê¨-A‹Ï5€UžÊx4usÀ§¹æâß"”MŒ9³rÀÝ“ïxúõ2"Â>`íµC[0Æ ª‹C4Æ`Œa“yæÀ¢ª…k-ÞûÅ!怗{·1Æ6_PXUUÖ÷£ªÅê•Éd²]­V{Ê"Âl6«Yk÷EÄ烑¦éVA,½^ï^¿ß?»JSú‰â8>ßjµ®zïoÆq|äO:Y¶Çq£ÓéÜI’d/˲Óõz}- Ããñø-ð|8úC ¹@‚ xÁ«(ŠÎuçÜç\8Ñív¯GQôÎ9׿×õ‹ªò£òµPwZ*øIEND®B`‚OpenLP-2.4/resources/images/service_bottom.png0000644000175000017500000000130712657640340020563 0ustar raoulraoul‰PNG  IHDR(-S pHYs¯¯^‘tIME× 9+›d\PLTE#'k†®ÿÿÿ:4   &K (N2).8Dmª8er <7@j¨ ;%A&Uš&U› .,#R™#T#Už%S™%X¥%X¥'F'B\|«7YŒ3D#8G#>`&?^5Wm6Wm6Y"Dp'Hs:^<_8g…8h…p”¾t˜Á8Mjcƒ®cƒ°B`„Ec†)Dk9b6Wˆ:W}<^Ž=_BbCl¢DbŠHo¤Mm•Nm–Ns©OkŒOp›OqœOtªPq RkRmŽSnTp‘TtTtžVr•Vs•Wu˜Wx¢Xw¤Yt—Yx›Z€·[€·\}¬]ƒ¸]ƒ¹^w—a}œa~a¯a‡½b~c„³dмe†´g‹³k·k‘ÂlŠ«lÆl‘ÆnŒ«u™ÎyÒzžÒ¦Õ¨×ˆ«Þ’µç“µçÿÿÿ>—–9tRNS$(223@ILOOOOad€…Ž‘–ª«ÉÎááâççççèèèèéðòóôüþž–EbKGDsA =άIDATÓc`f77WWc0’”–³‹Iˆq•’á (¹xû††úûxE+85­ì}ƒ‚üœB<¸@zÌm="“ã‚--!¦È[;‡ÅLJ»Û(@ø ¬ª‘ÙÙ™QjlPnÓœ‚‚\38O),J•@ð˜”óòU‘8Ô5ØP?/*_ÔÀP E@'+]E@+)ME@DO_Â¯Š¿n>-IEND®B`‚OpenLP-2.4/resources/images/tag_editor.png0000644000175000017500000000215312657640340017660 0ustar raoulraoul‰PNG  IHDRÄ´l;sRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ «(J9ëIDATxÚ“hUeÇ?ï½w÷xïñ-ͦm®t„•Zùk†èªŒY°%™Aÿd R$‘„VVJA#«Íе¹hÛ2Y¥¥¡˜YËp3#»Swwî=¿î9Oǃ×Kë:«¼¼ç=ïó<|ùžïQ,öp‰öövñ ¥¥EqÚÚÚ@)Esss¾n°u4…ŒÐïŒgɯò¬ëº„ÃaÔÍêM<B„9"ë/ÕU«WU…Ò$&½ Л+ƒù|}"ºÊ>fÓ»¸WL×T±¢by=¹IÕ×/¢"1…-áØŒdÎÓñi/Tm‘Œ­«D4!+ö­P‘2{¾gßö·.mØá*æñ±jVGB F=¾ŠÉq³Ê)‰j”Ä4âEEX®Ë˜a‘²-NžH¢§-t×Á+—†blÜj°àöîâE‹«#äpÁó„x©?dR”¸¦a™.Y!LÛÅõÃÎbZYe1Üâ0ŽaÑ:uS¼”•{rèÐÑÐÁ»CäðÀu'ëbúÍÇ!mÛ¤üƳé4I=ãïF ݲIû5gM‡ms˜SÝÄ´º>¦U”HÇæ±(Ç‚Á®8˜¦ß`þ1ßÏ1’ié:gÆRœÑS$sïýšçЦªXÿôZ 3ÃG»ÞSÓ§Nþ*cÉjwˆÈ~þ Ã`}ͼ¦Ï8• ³ãùI©\—´¿ºö·ˆËE–ˆO6›•Ãè©>‘_ÖÉý+o‘镳äýÍ7ÉŸß<$À]\$Bž “ù R ¢œbÅuý<õÚ0‡eMCˆúåów&yòŠmÛ–‰°3Iñ¾_.[7ÖùJ«åÑfË_Þ'ç~ÿ.¸î,¨8‰TˆõàîÊ-´÷¥xãC‹«Â¼òdÞUùÑ›KŽ‚Š-Ë’Ëa\({Z«åš™µrÛÜëeè‹Z>úApgšæ•www …ò¾†âÔªMçYýr)1Í£m£É#K°Ýi|{¼‹ÆÆÆ‰†!ã<Ò#':‹¥¦¦FfVÍ–ýï–ÉážU’'軲⮮®`'8vÏ‘Û@*ÝÆ;ÏŒpÞ™N6´†¡Ï{Áó<"¯xÀ÷ MÓ,FΞcðÀÛ8©°ô!œÌi–­=N8 ¬ ûù'_8/öÌñîÝ»/¤"hêòŸo½v˜Òɦ¶’GÖ¼ˆ'6ží0މ=Öu=HF.uuKeÛö·$ë]ȸ#étºàòû&öXD°m Øûû÷bŒ´þ·?p" ...f<ñx‚ÿƒ‚€*`FN8y„"FüotÚuÝ“E'¯YU¥ŽIEND®B`‚OpenLP-2.4/resources/images/song_author_edit.png0000644000175000017500000000117412657640340021076 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ùIDATxÚ’MkAÇŸyٗ즻ÍÛFR+mJ@AªÖ‚ò…~‚¢=y¼ôâÁ‹ŸÀ³býBA{¥„F jh ؤl·™Ç*”M›< <¿yæ?ƒ”R0Šõ—(!Ý ×d Þ<}tf8dïÂ0Ê—ª5pg—¨øÔ¹«·p H Ï©ò`Ã/¨yÄ´_A2ȹîÔùÅE@N„úgüüó[c,Á·«¹J¹0@†U ¦ ¦a¥ýÚLý;h޽«pÏs;€0 JI˜ð&Zc šÍf¢~ (é%JR÷²n¬µ¿¶õAÅl|\gùúåí±CL± ýÍOå˜ ÈOéøcO$œ;[hÌ_Ëõ!˜ž­ë>VЈj¯·÷ðw?ÜÒŠäÔ‡âô¼2J "¥l1Æp.‚ÌŸØínbLž9.Å“4}Œñ¡¦@]2Múò@0dœlµíOU}öL@Á(ô ¤ÚÍÙF`™”¥G|éôî}×Ð>ÐÂ#Kþ-)¼pïúÁ+ìôªY%RoaJ1œ™W*`,†0bRç4w¢èÿÏ`eeÕ fJÍK ³·r¶}Z*áJ¶T¡é±÷Y¼ùþCû æ“kËË9hþX•öÿ±ÆÂIEND®B`‚OpenLP-2.4/resources/images/image_delete.png0000644000175000017500000000123212657640340020140 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢× image/svg+xml OpenLP-2.4/resources/images/openlp.org.ico0000644000175000017500000002362612657640340017620 0ustar raoulraoul(fhŽ èö ¨Þ 00h†00¨î( À€€€€€€€€€ÀÀÀ€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿð@ðxˆhhÿÿðއhlwˆðxxÈh÷wð|xhˆÿÿð‡çFFF†ðxxFhHhðxwehfˆð~wFlˆ‡ðwwhˆ~wðwwŒŽ‡wðwwhwwwðw‡wwÿðÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ( @€€€Œ^9€€€€Ô›~ÈÈÈðħ™mGÿÿÿÿÿÿÿÿÿþþîþþþѤƒïïï±âÿŽÔÿkÆÿH¸ÿ%ªÿªÿ’Üz¹b–Js2PÔãÿ±Çÿ   kÿHsÿ%WÿUÿIÜ=¹1–%sPÔÔÿ±±ÿ’’’kkÿHHÿ%%ÿÿܹ–sPãÔÿDZÿ«ŽÿkÿsHÿW%ÿUÿIÜ=¹1–%sPðÔÿâ±ÿÑ“uÆkÿ¸Hÿª%ÿªÿ’Üz¹b–Js2Pÿþþÿ±ÿÿŽÿÿkÿÿHÿÿ%ÿÿÿÜܹ¹––ssPPÿÔðø±Ð’tÿkÆÿH¸ÿ%ªÿªÜ’¹z–bsJP2ÿÔãë²–è©ä¥ŒÒ”vÿ%WÿUÜI§mI–f@qAPüÖ³Þ¾¢ÌšyÙž‚¡kFÿ%%ÿܹ–sPòåÐôα世¾ˆhÓ•wÿW%ÿUÜI¹=“d?zK$PÿðÒùßÁ՗yÿª%ÿªÖ˜z²}R¥hIƒS,g:üüüÿÿ±ÿÿŽÿÿkÿÿHÿÿ%ÿÿÜܹ¹˜gB~P+pBðÿÔâÿ±Ú´ŠÏ˜y¸ÿHªÿ%ªÿ’Üz¹b–Js2PãÿÔÇÿ±«ÿŽÿksÿHWÿ%UÿIÜ=¹1–%sPÔÿÔ±ÿ±ŽÿŽkÿkHÿH%ÿ%ÿܹ–sPÔÿã±ÿÇŽÿ«kÿHÿs%ÿWÿUÜI¹=–1s%PÔÿð±ÿâŽÿÔkÿÆHÿ¸%ÿªÿªÜ’¹z–bsJP2Ôÿÿ±ÿÿŽÿÿkÿÿHÿÿ%ÿÿÿÿÜܹ¹––ssPPÿÿÿîîîÏÏÏå̳»»»Ø±’Á˜pÞ¡‡Ë—s¨}V²xX mCŽ]4˜X9œhCc=222&&&^Fllû‰q¡Pì˜Fll„‰q¡úð".ll„q¡úxíîðl„“¡úxpììì§w󗣊–r¢ wók£Š–ø¢ õwókŠ–ø÷ õòók]–ø÷” õò¦jiŽ ù•öƒôñuiŽ •öƒvñuïŽ öƒv‚ñuï€ Œƒv‚tuï€ÿÿÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿÿÿÿÿ( @€€€€€€€€€€ÀÀÀ€€€ÿÿÿÿÿÿÿÿÿÿÿÿˆˆˆˆˆˆˆˆˆˆˆˆˆˆ@wwwwxˆˆˆˆÿÿÿÿ€xˆˆˆˆˆˆˆˆÿÿÿÿ€xˆˆˆˆˆˆˆˆÿÿ÷€xˆˆˆˆˆˆˆˆwxwø€xˆ‡wxˆˆˆˆ‡ˆx€xwwwxˆˆˆˆxxˆ€wwwwxˆˆˆˆÿÿÿÿ€wwwwxˆˆˆˆÿÿÿÿ€xwwwxˆˆˆˆÿÿÿÿ€wwwwxˆˆˆˆ‡wwww€wwwwxDDDDffffh€wwwwxDDDfffffh€wwwwxDDff†fffh€wwwwxFfff†fhˆˆ€wwwwxffff†ˆˆˆˆ€wwwwxffffˆˆˆˆ‡€wwwwxfffˆˆˆˆˆ‡€wwwwxffhˆˆˆˆww€wwwwxˆˆˆˆxwwww€wwwwxˆˆˆˆxwwww€wwwwxˆˆˆˆwwwww€wwwwxˆˆˆ‡wwwwÿ€wwwwxˆˆˆwwwwÿÿ€wwwwwˆˆ‡wwwÿÿ€wwwwwˆˆwwwwÿÿÿ€www÷ˆ‡wwwÿÿÿ€wwwÿ÷ˆwwwwÿÿÿÿ€wwÿ÷wwwwwÿÿÿÿ€ˆˆˆˆˆˆˆˆˆˆˆˆˆˆ@( @€ !7 J(T.^3d6i8l:p;q<r=r=s>t@vAxCyEzF{G |H |H!}I"J#L%‚M&ƒM'ƒN(„O(„P)†Q*‡R,ˆS.ŠT.ŠU/‹V0‹V1‹W1‰W2†W6‚V9€V<~V>|V@{VAzUAzVAzVAyUAvTBtSBtSBtSBtTBtTCtUCvWFxYGyZHz[Jz[J{\K{]K{^M{_O{`Q|bS|cU|dW|eX~fWfV„fU‡fSŠePŽeKdH”dD•cB•b@–a>—a=˜a=ša?›aA›aAœbAœdAœdAœeAeAžeA eB eB eB¡fB gC¡hE¡iG¢iH¢iI¢jI¢jJ¢kJ£mK¤nL¦pM§qN©sOªtP©tP§sQ¦sR¥rR¢rS qTžqUšqX–r\’saugwoŽzsŒ}x‹€z{z“‚z˜ƒyžq¥l¬€e¯a±~_±^³]´€^µ_¶ƒ`·„b¸…cº‡d¼ˆf½‰g¾ŠhÀ‹jÀŒjÄkÉnΑpÒ‘qÔ‘rÕ‘sÕ’sÕ’tÕ“uÔ”wÔ•yÔ—zÔ˜{Ô˜{͘}șę€ÇšËš€Ð›Ò›ÖœÙœÛœ€Ü€Ýßž‚ࠅࢆߣ†Þ¤‡à¥ˆá¦Šä¨Œæ¨Œç©ŒãªÜªÖ©‘Ñ©”Ï«˜Ë®Ë°¢Í²¥Ò²£Ù²Ÿä±™æ±˜é±—ì±–ï²–ð³–ó³—ô´˜÷¶›ù¸úºŸú¼¡ù¾¢úÀ£û¦üŨüȪüʬü̯üαûϲûгûѵüÔ·ýÖ¹ýعýÙºþÛ»þܼþݽþÞ½ýà¿üâÂúãÆùäÉóãÎïãÒíãÕìãØìåÜíèáðëâõïâøóãûöâüùåýúåüúîüùöýúúþüýþûýÿÿÿAAA6666AAA<<<<<<<ØÙÁÍÍÍÍÍÍÍÍÍÍÍÍfÅÅÅÅÅÅÅÅÅÅÅÅKåVå¶%ÎÍÍÍÍÍÍÍÍÍÍfÅÅÅÅÅÅÅqqqqqZ'æ?(ÏØ&Ú16=ÍÍÍÍfÅÅqqqqqqqqqqK ØÚ5'0V@æ'=ÍoqqqqqqqqqqqqeåÙ(ç6Ù@è%=oqqqqqqqq7ÐÐÐeäØ)èçA0è)Aoqqqqqq7ÐÐpppJIoqqÐÐppppÐÐÐÐBIo***ÐÐÐÐÐÐÐÐгIÀÀÀKppppppppúúúú³ÛÀÀÀÀeÞÞÞÞÞÞÞÞÞ©©f$ââââââââââââãIÀÀÀÀÀÀªªªªUÇCCC {{{{{ÓLL+‹þ<µ—´IÀÀÀªªªªªU;;;¯C ·{{{{ÆÆÆzLÓþþ{2ùé24%Tø:Rðu¤JÖ¤g¢¶}—e9 ç˜Çãñ½›~û¨ÖnŠÏö”oÜÝ>Þ.Ýuu÷ âÙú¥gËESUUÕQ‡³±)~•Å>¡„Ÿëv‡Û)±2UUs†ah÷à–Z~H-綈Ÿíojæ2Û%•ˆ¬†ahÐ222ò$•JÅhŸH§Óɱ±±Ž0 € @€åÌÊpù åc @À<€¥¿¾’%î'a^IEND®B`‚OpenLP-2.4/resources/images/general_add.png0000644000175000017500000000137112657640340017765 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<vIDAT8¥“MOSA†ßsæöÎܶj{kKC‡ t¥†¸Ñ „VlpƒQÃÎqa ÄÐA† ;(ƈ †¸ð— Aš6´½·íŒ¸\:É›ÌÇ™gÞ9g†Œ1øŸfžhkk“ÑdrÈâÈ@:“i 2犅Â7€çµ-¾./çëã©ÞAûõ޾”›˜îîìÌ^hmE±Pˆàº.~lnbum-_©”û>--}ùp£««£©©ùó­în;bYØÛÝÁØè(`br Ù,´ÖXY]9ØÞýuçãÂûE`èééIeÒ™Åkíí¶çU°_ÚGÙóBgžç¡\Ú‡ïy¸zùŠN¥§{ŸôÊ0,eKKsʯú€˜áûÇß÷P®T@Ä`&456fõÆÁ€WDc±!;Û?ÁÌ ðë‹EhmÀ €ñ31Äâñ{! "øâÆú:Þ½y ­5jµ´Ö!àåä‹°o`0òt±xÌ ¯ Yü KDB@q¢´Žãœ¬½% ¤L†i˼#=˜T̾ž >¼X<&3ÃM¹°,ëû1@É9Á|3uÀÌÌ(—+቉DÉdÌ|(‚ šË(4Í(io)%¡”„T¶ ¶ÁÑšmG`YÖž1ÖB˜šš [>v¤ ””PÒ>ˆX˜ùhhÐíñññ²ôlK+‹+?cc[ôƒèÉ‚fÀPn!·<|8ü›¦©ÿi‚P¼,Â…ÈÎfß$’‰?”¡I´Aá!}@±^¨ÕT"ý!7/ÌÍÑgÞáíGÂHY²%AÐ@[M£ã£žé-ï“—ö“þþÎÜ^²BøäC; å+Ȇ„Žh•Kå Çûo‰è=ßÓVP l`@Qpesc80u QzZˆAļ8Êp!‡WCýÖÆƒ_Í‘æ;æN#xBqKpÀº®ÙgçW›µ¯¼î6 ‘4Éûˆ"ê sUiTgxív¯«5J­$ŸZ¼®Y{TNΦ8Ïå®I(!Çþ%pý÷v÷¼ZžàU.£ÿ}£Ê‡æ@4h¿57Ñ=¿óK•3K¡âÅIEND®B`‚OpenLP-2.4/resources/images/image_new_group.png0000644000175000017500000000137212657640340020710 0ustar raoulraoul‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÛ '¯dlªzIDAT8Ëu“KH”QÇç~×ÉÇDèÔ*+èá®ÒJC‚(ƒjÕª]A$m ZD´«UôXH`I.L¤ $z@ ½L+Çy˜ó}÷žߌŒPwsáÀùýçp/üç¤ÎwÏ-\âPSwó‡£ÏŽº¦îæ!.q@Rç¾pbQl"xï\KÃlóU´lméÚµd‹ž]Û)G:´wü•ô ô¤¤íÔmmÝÛ†ºc„ °<îíÓD"!ˆaž[ÀÝU­4¬LêÂܨôµ+;î “Éz};6:ls™ ¦ S¼™À`X³¬†›Ä#(P«K¸3<Å›) õµ+€ÈeYg§~‘Éæ‰¦ó†>gq¡#þF.3IU4Ú@nu¿!ס$;…ü"` Ã631Ê›Á|üš&0¦³ìÛ½™ƒû"Þð4k¸ðåù’A~°RæTZR7õôÉ#d 3[ª 33E†G~FJ5µ &pÛŸ!ü‘#QŸäxÍ5Ò·>a5¨¥ÿå¢b1n.¥4€*"6äÛ¸¢‡± Dù¼sô˜ëXUÁPJWy(%$$äW ¯Tù:P°ªyÅyE€0€S‰ßF±4e°‚õJ¤ŠUU¼S"Êc(q³¯xŒZ1bä<ê+"?;B9Í—n©€ÅuÅÁŽýÌðèù;ÔGs’L……þã¯ØD ß¾cW/_̦ëqQ8›T©ZYóàļÆŸc§ Å'ÅзF¡"^ãEV/±¬–@VUŽB¨]ÂÒm{ˆÂ퀠jU™_DJˉx¥º¶ÿ/b&`Ëß¡IEND®B`‚OpenLP-2.4/resources/images/openlp-splash-screen.png0000644000175000017500000015740112657640340021610 0ustar raoulraoul‰PNG  IHDRrrè$Q sRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ  Da#4 IDATxÚìw`ÅÙÆ»w:u«Û²\dY¸÷Þ»Á4F¦8Ø¡·PC|„ @轄 : w÷Þ›\äªÞ¯í÷Ǥ+[O'Y’÷5‡¤¹ÛݹÙgÞyÞ¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦˜bŠ)¦4z?(I’9Z¦4™Ø2s"€t ^á§ò^à  Lç«\å½£ö¼\‡ywLi2€ôA´ 䦜jÀNz=^]«Ñ‡>6:ŠØØhâb¢ˆ‹&6&€ŠÊ*Ê+ª(¯¬¦¢¢ŠŠªêPži'°ØðÚnÏË=aÞMSL 7¥5ƒu$p† X÷’?ß.5™®™tjß–¸Øhâãbˆñ€slL4ñ±Ñ^°Ž®k‹‹&6:ÊïÁ—›µm’$QQåõòÊj/ÈWyÿöý²ŠJÊ*ª8”œÝyù;Q(÷5‹d~°Ûž—[c>¦˜@nJKíL`Ð߬»ßÏEGE’Õ)ƒ®™dwΠkf²33èÚ9£N‹cI‚²ÊJ*ª))¯¦ºÆ‰ÃéÂátátºp¸\8œn쟿.DQ :ÒJtdÑQDGFåýÛ¯-[„ö& ¼²Š½yùìÉËgÏþÃìöþ¾7/Ÿªê Ìvû}€}#ð«=/7Ï|ZL1Ü”æÜé^àžì}uõ}3Ú¥ÒÕ Ô];gÝÙó³}»¿‡´²ÚÁ‘‚2Ž”SXZEIy5ÅåÕu?‹K«(­¨Æåvãy%¼¿ !Am›ß³*ùýîùÏ÷³Rý¹¼+… Rð1‘DGY‰²Ec£}jÓéÔ.‘Ní’Hˆš#Gްg>»ó×ýž¼|=8‡ö¿x_¿ÚóršO“)&›ÒTÀ Lôî^µï¥%'2rH_FéÇ€^ÝèÒ©=Q‘¶:­Úáts¬°œ#Þ×É2Ž”“¢”’ŠY`•|~iu ø¼ìg_OòYâbltLOªöNéItLO¢CÛD"¬~ªkìì;p„u[v±dÕ&–­ÚÌñ‚bßlóöö¼ÜBói3ÅrSÂÜñÀ8àˆ‰ ñŒÔ‡‘ƒû2jp?ºeu¬;Îîp±ÿh {ò‹Øs¸˜½‡ 9VT‰ävkhÐõ [§AëVϧ}Ît¼÷/Ùëù¹Â¢ ½ús×^OÒSâ锞LÇô$:§{@¾sû’bëÆh×¾CP_½™e«·PTRVû–Øàì‹íy¹eæÓh¹ ä¦èn›¸ké’ax½Gâb£>°£÷eÔ~ôÌÎD\n‰C'ÊØ—_ÌžüböäqèX)nI Xå€P¢XåŽW½ž~í^ÿõäI’蘞Äà^Ô+“A=;×Ñ3’$±mWKVmbéêͬX³…²ŠªÚÛâVÕÒ0^`·›O« ä&›ࣀ9Àe@2x ’CúõdÔ~ŒÜ—¾=²±ˆ"’$qàx)›÷dÓÞ“ì>T„ÝéÒAM¨«¢¦A± —ë¯ ×Zx®D еcƒ{e2¸w&ý{t"6:—ÛÍÆm{X¶j3KVmbåúí¾†ÔBàÀûö¼ÜåæÓk¹ ä§7xgyÁ{÷@ºtlÏùSÇ2fèöîŽÕjAàdI[ö°yÿI¶î?Iy•C™ Q MôRÆ€\íz2ÀªEÝ(]ÏMÚnB gV{÷Îdpï.ôíÖ‰H›Ç‹Æát±nóN­ØÀ?.aß#µ·q7ð¾Ô÷™Oµ ä&Ÿà\êï1€ǹ“ÇpÑ´ îÛ»ÓÍæ}'Ù¼¿€­û 8VXx©iÐz¨ 5` ¿ÇJè» =}3¾›°ZEúvëÈàÞ]Ü» ½²;`µˆ¬Ù¸ƒO¿[ÈWó–RRZ^{â¥^PÿÄž—[l>í&›@ÞºÀ;8ø=0ˆ´Z-L1˜‹¦MdÒè!Ø""p¸ÜlÚ{’U;ޱaï jj\ú9m#à%G¥4Ѓ$ÈÐMÓ» …ÃÀn"*ÊÆ¨gpöØ ïŸÅ"b·;øiñ>ýn¿.]‹Ã騾Þ~0Ó ˜@nyËða^Í{ зG6M›Èô©cIJhãÕ¼ Xµã÷ž¤ÚîÔ ^šÚ¶µ ¥Ñ†jèlj•w ÒØûŒOb|,SG÷åìqè‘•@aq)_þ°„O¿[À†­{jƒ“ÀG^êe•9+L 7Gµe€w{àj/€÷HOKá‚3ÇsÑ´‰dgvÄér³i«vgãÞ“Ô8\ú yF º=VBõùÖ¬¡î&B5t¢è±¢¯oú®ç»(té˜Ê´±™6¶?mSkã§ß. wî"Ž+¨}<¶{©—ÿØór˜³ÅrSš€g÷בÑQ‘L?Š §Mdä ¾ˆ¢Àñâ*mÊgùÖ£”UÙe4DèAb” ¡á+ 4&X¤B´ú¦nX Í]q7¡°Ô» gÈÄá}ˆ‰ŽÄí–X¶z3Ÿ~·€ïæ/§²ª¦–zyxÂL`¹)ÍÀ»÷WY2¸nÖ Î4†è¨Hœ.‰õ{O²xS>;û’1jB XC¥BÍc% †Î¦õXi¨ÑW ÈåÇ"Òfeü°^œ3~0Ãúe#Š"•U5|=o)/½û{òòÀ‡Àcö¼Üæl2Ü”¦ð~Àßðx ˆ=ÏÈâÆ+.fÚ„Qˆ‚Gû^¼å(+¶£¬Òf*D°¯ÀφäšßØFßy@S’â8kì@Î?ˆ32ÛãvK|÷Ëržûs¶ìØžHÒO€Úór7™³ËrSÀ‡÷ÂÀÞ=¸ivF6í+dþ†Ãì:X‚; Â^Ú¶n°lŠÐ|Âå±ÒÐÝDhc¡nèlؽÖÿ ®Î™Ì ÞžÜf?/YÃsoå²fãŽÚ | ¶*ávPãtV£Æ²S ^§64_È›Æè> -ðªSûT®¼x çL‚Õbao^>/¼óŸ¿°6jt-p‹=/w…9[M 7%ÀS€Çk-¢(Ì<ïL®Ÿu1íÛ¦Õž\¸ù(¹Ëòp»Ü[}B4t6m^‘†r÷ G“z¬hfP çnÃ+Zö%î¾}Z"sfLá‚©#°EX9|ô$/üçs>üü'\ý-à¯ö¼Üsöš@n¸‡F¹Ö â)zuçÿÙYÞ)wsaW~)oþ¸“ò*»A^”°{¬hy4©ÇÊ)*&aŒÆ ÝcE‹»7êÑ£¥Ý§$Æ3û¢I\új>>ÿAmU£Àìy¹ëÌYmùéà x G7 ‚`™qödîºnI ñŠ ­Ôæp¹ùï‚=ü¶ý8†=VìõÐPš¦9“ƒ{_H;ƒ» ]Ú}Fj š¦_Ï,þzã%tïÚ‘¢’2yþ}>þê$Ir¯÷ÛórKÌYnykñ9À“@»žÙYüýöëл‡.ÐVkûuc>¹K÷ávI!åé-˜Æ,&Ñ`£o£: öWÕ–ü¬ˆ‚È¥çãæ+Î'6&Š5wð×Çߨ=üÅž—û¾9ÛM oÞÇK£Œ‹‰æÖ«fñ» ÏAEà­Ô¶óP oü°2/o~jȲ:uà¾Û®gÄÀ~alµ6‡ÓÍûów²rÇqÂë±ÒÅ$#4Zc1‰†r÷Ê@ÞpíÞj±pÅE“¹aÖyDEÚX²j{ü vï? p¸Óž—û™‰ &·$Åcø™ÉWÌäÊ™aµ†´ÕÚ~^{ˆÜ%{q¹¥†YLB, K1‰À¾iû|Óx+ýÑk¯—žšÄ_n¼”I£âp8yõƒ¯yöÍϨª®OQ‹›íy¹&J˜@ÞÜA¼/ž” ½õíÅã÷ÜNF»¶ÚJmÛñÚw[©¨vƒ¦Í³˜D‹I„ßcEg5Ægì°>Ü}Ó,:¦§r0ÿ8·ýýyV®ß° ¸Ôž—»ÙD È›+ˆ_¼(Bôµ—Íà–ß_ŽÕji2ÐVj+(­æ¥o6sèx™YL¢1_¼·Ûm¼šu1‰°ù£·¾bã±¢aô 8>.6†‡þt“F âØ‰BnþÛ3¬X»<¡/1©ÈO%ˆ_ ¼ Bôu³røÃœËÂêÞXm[ó yíÛÍTT;Ìb§Q1‰PBó Ý;ÏÊNåÎëf"Š"O¿ö?ž;·[ªn³çå¾e¢Š äMM¥¼ ÌNNLàŸwßÁè!š%h+µ(©âÅ/7rèD™°6uh¾š¦1üßOŸb¡„懳ðHïî]xòo7Ó!=•E¿màÖûŸãda ÀÀM&ÕbyS€x?<^)=‡ èËã÷ÜIjrR³m¥6»ÓÅÛs·²jÇQc`b“hÅ$Ô¨ðyÉ_/6&Šﺆ©c‡pìd·Þ÷,KWo®¥Z.5‹@›@Þ$TÊ W\ÂW\Šèè–äµmßÿ¶ŸÜE»qKîÆ¯F Í×CÓ˜Å$BO« fèÔCÓï&|û;ë‚)ÜuÃåX-žyãžyóS“j1¼Ñ<WÊìÔ¤D»çN†ì×"A[©mÓ¾^ûf#ÕöVTL¢qò±·Öbzǧá4ÿõzfwæ©ûo¡SF[–¬ÚÄ­÷=Ëñ‚âZªåæÓ9¼ßòðx;`.0hÄÀ~+å•ÜpÏ¿øyñ*&Ä'¯>HRB¼ øØ;WM1<Ä^LOKßyòQú÷ì2EþíÕ©i«•(›•Ûg!gBwB4À@ Q{ õ8#®k7>­7xÉRV­±yw …8†RxÇÞî°s׃ÏñÉ·óÜ·_½ý(ÒSEàEïœ5“#Ç–™cÁã#~}vf'^~äÿh›’|ZqáFÚÖï>ÆË_¬£²Æa“hQÅ$NUh~ý¹ú¬üáÊþpeG2ëևرç Àx|Í]­ MŽ\ˆGŸ×ìÝ“·Ÿ|„¶>™ M –AÝÚñеcÉðåÍP Ò™ÒбÛÐG…H¾“ iVH‘4Óâ×ååwsyøÙ·i›–Ä—o>°=®>óÎe“Z9 A<˜\4aÄP^ýç´‰‹ÃmiŸÇC׌cpô0P!è 4$MòÁ8Þë¡BTø}IÏ2*Mcœ‚iŠ….|]—ŒÝ~Ÿ{ýñ×?ñ§Ÿ%::’ÿ½ògŽ p0Ï;§M ?@<XŒ»àÌÉ<}ÿÝDÚl&BèH+w]6œ‹'t×¶H’ŠÆ&tôaˆºaÕ€!ÏpWšlî^ÿ¨jÔRè+Z2oáoÜxÏã8].Þzên.»`2À8`‘wnŸvrÚqäÞ½Ⱥjæ n¿z¶É}7°míΣ¼ôùjªjœf1‰0†æ·ôbº¯Ri:è‘ÉOþ”¤}á^zç €}ÀX{^n~«h“#W¤S~²î¸z·_=›evU‡ Ôôß æÝf¤ÏCz¤óÈõÈH‰ÓÁ1‡FièÓ:êyF­·Á» I§wP°ž¬ÜõP¹û0P?!]Cý¸í»÷ó»[îç`þ1î»m6÷ß> øát£YN ÷C¾ú]5sWμˆ¢ ÿYx˜WçäË5Ç©´7Üð}ª\ï û|Fj<_?ÁÝÓ^š“: ~ì Çey@ ¤i Ä!-t!H/`Ëø¡ÿY9˜ŒY·ÜÏöÝûùÕqËU3ú_ŸNÐÓȽ.†áåÄo¿z6¥UNþ³è0eÕN$ Vï-ᙹy¬ÜS‚™z=4‰‰Šà/¿EÎÄžò Aƒ‚pÂŽÆzžH¡hÄåÿÞ,¸{IGßBë‹fD¨bið¹ ‹J¸þ/p ÿ(÷Ý6Û—3ÿÈ;÷[½œ¹-3çuàúñ#†òô}wSã„7âD©]^»LŠdú ¶tNj1THsk[¹5ŸW¾XEeµÃ)›S1‰ðfP w1 Zm1 ű7’xKÆÿ½SFÿ}éQÚÄsíŸÿÅO‹V¼aÏ˽¡Å´™4«Äîл'¯>ú’`å? q¤¤F}`$Ø%žiýÓˆ‹²˜BÛ¡ã¥<õá2Ž–Cž"´ÊbøõM ¼T 4ßbúKÓ»w=²»ðÞsaµZ¸ìæYµa;À#ö¼Ü¿›@ÞBÜ›áÅìÎxó_Ë»‹s  J÷ÞÓf™Ò'…ÑÝëʺ™ ­¿­¢ÚÁ ŸþÆúGufÅÓ f1 m°ÄhÅP‹I„šA1ÔÝ„úX؇מ¼ªª.ºîþÚÐ[íy¹/™@Þ€ܛ!íãô´Tñ?O=Fjr.Ëg÷±JbýÒ®M$Ó‡´¥kÛ° ¶ÄÇ?oá‹Ûê·;­¼˜D`ßЖÕÝû8­ŠI4¸ðÁ÷nê¸üûâøÉ"¦_}/‡žt—Ûór?5¼å€ød`nB|¼íí'¥s‡|ºòÛò –þ“y ûuŽçÜíHˆµš m°mÅæC¼üù*ªk:©0hÁÅ$PÕîÕøq=Ú}¨Å$tîFB¤±Am¡ ßõ”hšË.8‹¿ßu=»÷æÂk¤Ìާ8Å/&7,ŒŽŠŒõÑéÓ£_®9Ɔ¥Ϥ<l¢Èä¾)Œí™âWúÍmí¶ÇJxêÃ¥+,o@1 šY1‰p:O}1 µ˜išÐw7_u ·\u)k7ïâÒ› ²ª¦ ˜ÐR* –@î­±¹Ôjµ´{æï÷2zÈ ¾ßp‚U{KB8›6¤ÄG0}H:ÝÛÇ™ m ­¢ÊÎóÿûu»óCôXá”z¬rÚ=¡ì&Íc%ä,…zžð{¬H²;#4MÃJÓÝÿǸ삳øuÙ:®úãc8œ®cÀ˜–Pô´roµû¥‚ d?t×íœ;i<+öó㦓!žQ¿†Ø§Cç iOr\„ ÚxóÿÎÛÈW ·ë¢&B/7FÓ„æ£w7¡‡ÓnŸ‚Ð|MšFÈ© ÐX×xúâÌñ£Èý~·ÿßóH’´Ç æÇL o> ‡' Ö ?^{³gLgÏñJþ»,wÈgÕë…àù=B˜Ð7•‰½Ó°ZšÝb$â´)û·lÓ^Í]EµÝn¯‡°y¬"ªÇŠõfî>¬+F©cÒny£±Æ³Á«OÜÇðA}yíƒoxð™wÖãíy¹å-È[Kdç+À ß_|!³gL§°ÜÁç«"yWª^’±Ï;Ýn~Þxœ³“mK›¡¬÷ÁiÚ¶Ñý:óðMSh›§Étélôψb¹vi:…¿µ’7RÁ÷Ÿð·ì?¹gÞcÌTÉ|­c„ú‚ÿß‚àyv|N Þú´ ‚€Óéàο?ÁöÝû¸qötþðû y±£ÅK‹×Èm™9×oÐ~§[â­…‡8Yfo¨5ÈÈ"Ñ#£ Ó‡¶'µM¤I«èh«¨²óÌGKÙ¸û¨?µ Æ«†#K!Æ yº|¾u÷­…z¬ZFK­ŽQÚLËèh¼MNJàƒ—þIF»¶\~˃,Y¹ à:{^î[&µrê@¼ð[JRbôGÏ?MRB"Ÿ¬<®c <³6è1^YE×+ÉýÚa³Š&hk´¹ÝÎ]Ï׋·çÖ0`Èk¨ÇJ°¨R§Êc%Ôô¯j||ð¡ÅW÷XQ BðXÑeô žÓݳ2ùèÕÇ))«àÌËÿÄñ‚â*`„=/w“I­4=ˆÇŸˆ‚ýÈŸï$91‘_·„ÄýW¹`ºEÒM·¸\°`ó þýÕv6æcŠÆÃ( Ì9owÌE”Íê7–²Ô‚YLBÃTLBµ5ÔbÆÉòÔ^øüô§tvíËã‰Þ&-9‘½Q¢O¼˜Ò2çN ž÷¯=¯»ü†õïÇæÃe,Û]ÔGÏ©^¾¸ÂÁ‡ ÷óúO»9V\m"¶†ŒÐ…‡o:“´ä8/'*éäXU&6J=øåw±P(é N:€[FF!ðûz¸b5ðª?Ž€÷ú®þcHÐkpáÈ}FG?ñé¯"//Ój$ó¢J¶ÍO¿ÇÜ_–0vX?þxÝ%=½˜bräMÍ‹íß——ùÇJ켿ô·6ôÖöBÙNëØÞZÓ33¦aÑM?4•A´¹xÏ”UÔðï—°iïáÝr÷®1Bó{¬h†æË=wt‹:Ǭæ±"+$M’c¥¡¡ùhÒ4ú½›ÆÚ{ؘ(>~õI:¶Oç²›ÿÁÒÕ››_Þj9r[fN_`erBBôŸš¨Ø6¼³è ¥Õΰn_¥€­l¸'@|tçÉ`È)&?®ÒævK¼÷ݾ[²ÿdP¡†æ‡ê7-ù×¶¥ôZ‹F (ñã„È170xLj‘Ú÷ó² ¾Ð|Ye y#l¯3ºðþKSTRΙ³þÄÉÂ’*`¸=/w³É‘7./þ©(ÑÿùR““ønýñð‚x¸¸ ~³´ÒÁÇ‹÷óÒ÷;8\P‰)ʼùUÓ‡rÛ壱Ù,v -ûEÀ–]òùËǵ-f ¢"Ðáf§ëpÁ4‰^#˜ øÆ~.„švI¡oZ´‰6¥BÀg‚Æ–@7Cÿ¾ 4†è u¨›í»÷óôËïÐ.5‰¹£–/ÿ´¥ñå-#èyõ¥9Œ8€ ·c\d¢m<¢A#‰ÌÄ#À‡V–gô¥YUÞÏ;^Îóßlã‹å¨ C©¹Ö*ãeñðMÓHIŠ ^6UhQIÃç[sñUýH˜ýØ( †KÞéì¯ÊX©ùÇû=׊ ÀÚÀ#ñ±Ñ|ôê“´OoË%7>Àе[®µçå¾mräaæÅ“ÚDøÜÓ¤%'+Nt»ÓÍêý%¬ÜSL¥ÝÝ0 C9ßd% ¯më”ˌљtJ5\¦ÍåvóÎ7«ùaéöð“ð9—€ÐÄÅ$|õÜ‹I„Í=x¢¡¡ùõ§É H’D¯îY¼÷üã—2uÖŸ((*=å|y«r/WµJ„^Ï=p?£”è;\kö³ro 5(‹FI2„2(\O†wOåÜ¡‰‹nüÜç 9þTûÂÕ{xí‹ØN`•/ÿ…•F/&!…RL-m»)ŠI(y¨Å$0â±"ä\xÄ“<Ë/8‡{n¿ŽË×sÅm IÒ6`˜=/·¢9yKàÈ_z]™3CÄå$Â"0êŒ$þ0%“)½Sˆ´†ÆEz[gðƒ¤Í;Jü¶ãO|º%[ÒØëhSäq ·L–ÍØFjBŒ×§ì\kàB&Ì(¨Y%ñŽîßÊ»Ôv„¦@B×n".6†ÿ¾úémS™yì\¿ à{^îg&µbÄã€íQ‘‘>yéYÚ·m–Éï–$Ö啲bw±ŒÛ¢¶¯o`î49¤,õh_ƒº¥0}DÚƹÏ}Û\n7oµ’—m×i,kh`‘vºXšs1 Ôc%žóD«˜„\L#F_½@ݺòÞ qäx!/¹“ªêšÃ@ϦNyÛ¨•€×^6ÓÄ*Q`hV7OéÌÙýRIˆŽP%G$]®^Ré}ÇIÀš]'yü“u,ؘÛ-aJí}¹~ÆHn¾d ¶‹ø·¢{©­ )„žËPAT‡zò׺HÆO54_t­Ð|Ÿí’É?u³¤®Ö˜ïxPÚäN“®Ò¤iò° BÉRHžÏnßµ—×ßÿ„Nm¹óº™¼˜dR+´ñ>Àú.;Xÿûü¿‰°ZM³sK–±lW1%•ö/„P»}¶t`P“#‘|í’¢™1:‹nMºÅGv8Á“ïþBaie‡æ£ïzjÔæÎLžÒ3lx4™Œ‘ë©Ñ4Êד۽Þ¢zÚ÷}+ªôfpßlV+Ÿ¼ù,émÓ˜rù]ìÞØ ´çån15r}ò2`½û¦ëÄk5ôA™m¸yJgÎØ–¤X›ñÞjz[’YQ•UU’S™8V\É+ßmὟ·SRQc‚¸WºuNã‰;. G—¶j¶9ƒI¸P‰B|Œ}AbÈi½>­R šJ6­®aJѦ!áø¡PK¥à´ðÊÀ$]³Ò¦¸a[v§ƒ'^|ƒˆ+ÿüëõV/65;iv@nËÌ™ŒŸ6~,Ãú÷kº`@ç6Ü4¥3 iGj\„ÁèhIÇÖ[òÛâ·1 ί¨/²NbýÞ“<ö¿5ü´î .“n ©M4ÞtSGv×h€"ýeÌ»IÕc%0ô\qÛìúºÀØPÚ½™‘§6|@A)Z‹ŠÁ¯ÊO¨ß ¿ ´RáÖ÷mÅš ü¼h9c‡õ㢳ÇŒ÷b”I­¨€x°#6&ºÝ§/¿@ZrÒ)Óö$ ¶.eÉŽBN–Ú·ÚÛ74ª›Ï èo,Ãïø´ÄHfŒÎ¦WçäÓV#”ŸVìà?_.ÇátùÜ>Á"rQŒšÔ\L"ØXèÛ·†ÖÕô›êá(&QZHÞ@ºÑF_åŒíÒRøìí(-¯düÅ·QVQu èaÏË-1©yyhwãïf‘š”tjW8úvlÃSºpñðtÚ”lÓ¤R4sû‡!ᾌ†x¢¸š×¿ÛÌ[s·PPjæ>8sd¸é’ÚÄ8_+f•ͱ­õOè´éCyEd´NÅNIc×iôUóáöjãh$Ç’+4Æ ™üð*Ú¹ª»ÚÎZÍÝs챓¼þþÇ´KMâ/7ÏhçÅ*S#—ÑÆ«ºgeYÞû÷¿E±yi{l?\Æâí'9VR­ …Ð,”Œe¨¹PaÈeËj™<°#géŒÕÒúKÍiIai%O½;Ÿ]yÇ4ÓͧU@ãÞÉù9«h‘A>èáË+"k@ÇÈNP»®¦1C§–­°›Ðk¨±0RûÎZV‹È¯{åâ[^úî#e,Üv§@„v5)`›ªênا9xᨽžE˜8 Ó†eÖΜ´ŠœlÛw”¿÷3ÅeUÚ•e¤À¹ L-@Ó4(¢S‰¦ÑÊDÓè§B”ÒÕê|6 Ð4áÍG•²’¼g´4]ýñI‰‰|öö 8œ.ÆÎ¸¢’²<†Ï‚Ó]#H¹õÊÙu ÞÒäŒöñ\;¹+³Çw¡SjŒB5q}Ê·n-]ïq‹Ëífþºý<úá Öî:Îé,½²ÒyâΜѩ­ª2’¦uÝj£ðÒ¯­¸±J †CY—@=Ví<`û ¨jìÈDEjF}‚þïxœÆ÷¯ÿâȺBœKõ…ÅżøÖû$%Äsßí³R¼vújä¶Ìœ‘À²¾=º o=ñO¿nÉšâ¾cå,Ørœ'ËeVzPŽ ÔJY Õùh^¡ÖJìÖ!‰K&v'=9î´¥[œN¯}¶˜…«wéËó侦V@A>½­ñb(?+ÞÅÅOÃõÕ¶Uøæ` ZM£ îڽ俕 S1 ôå—Ù¹ÊFÐj^ϧ,Šo?÷8=»uå‚«ÿÆšM;%/W¾âTiä§ È½ÎÕ¢(~ïßÿ¢{VV‹ßÞ¶í?^ÎÂ-ÇØ¼" 4'@C“ )=uD`\ÿŽœ;2›(›õ´òZ™»d ï½§Û¥Bca¬˜ŠIÈVé1ð¬(Ñ4r@n¤Š½¯¡’KÈ g) Èud´T7£=½ºgóŸçŸ`ëÎýœ=ûn\n÷Z`h¸ Ÿ-Z¹|ÑYgx“lEš4º´ãªÉÙ\=%›ìô8Œ:õ"ü;°Ñ%Á‚ yäýe¬Ü–߬Ǿ1ó¡Ÿ3¶÷ßx ñ1*¡ù¨†â+úžKr<µœßÁ9¶õ,ÖŽ0Ö­hXU¦g¿€<5%Ò/éð£W¢€ÔkpÖû‡ËQ/õÆ]A1­‚vNóí»öûíôé‘ÅŸ 0Ø‹i§µbËÌYeµX†~þÚˤ§¥¶:m\®íàÉ n>Ê®#¥š[oI’Ù "¯©iÓ4¨h˜ÁZVVF—LìIÇ´6§6î+Åå<ùÎ<ö:áüñ~šµŽR 9šÆh]M9 JO׳"ãc®‡Ò#øÙÐØý •]m,¥Äôït|c ê‹‹‹ã«÷^¥¨¤œÑþ‡ÓµÚž—;ì´ÑÈm™9Ó€¡gOœâ­Y:¥Æ2gR67LëN÷Œ6ˆ .c¬)Ô/¹’FŽ.}‘€j‘‡ûŽ”ðÔÇ¿ñÉ/[©¬qpºIJbßz!ãw«Óv‚ÝÃ`ÈÓª’ã›òd#Q55Z5÷EdÜ u'Ӓ׊ýÕn…ª=µßÍ'VæÉVØŒT(Cõ2´)++çÓ¯¿§Cz*Ÿ;`¨ÛNÜ–™³H„qÿ{éy2;d´Jí[O[~a% 6aÇáb?Yèy:Õ6Œç©ÿ_l´•óGwcLßN~}o͹¯|·h#~»—Ë…¼‘9`ìT‹7̱¢'˜å %ù¼)Ê×ÓvDc7¢nçA¯‡¾’#µLà†k¢BrR"_¼ó ‡Žœ`üÌÛq»¥Åö¼Üñ­^#·eæŒÆM3šÎœÎ’‘Ãï&dsó¹½èÝ)Q4R„j¹zÉV†>õÀ“Êjÿ›¿•'?^Îþ£Å§Ý=:o|î»þ<ÚÄE{4Ê ÎWRÈ¢†5ÔÂ#Z*£¥RŽR0Kú¯6­8”ã¤F¸¸¾1¨}·°¨˜/¾ÿ‘®™œ?u4À8/ƵnÜ–™ó£ g}ðÌÓœÑ%Ó,†àÓv¬¸ŠóÙr ÐŸ”å)QÖœ ò¸ò™à‚µ,½3¸p\âcl§…F^+'ŠÊxêØø$j…GÐ ¾Ýaüª"Ê¡ò¨yi¨•¶ %4ÿÝPyä”Û'8…í]± /OéÃã*'½8··mÅÖÃ<üÎB¬Ýï_O´ƒ8@ZR<Üv1cu3B£úïÜuó± E† ˆé+B$¥+«#A$h)Z|žcí4HSào3P˺xüdßÎû…^Ý2™:nÀY^¬k2ijjå>€«/™Ùb'uS€SÛ„h.—Ííö£V*¢(h¤XUÊa$m¨$;üf˜W*kœ|¶`°”=‡ Oš%Âjáö+¦2ûüÑX,¢lzWÅ5ÈQî~訩+5+uTPRÙeQs~i/š.±RˆTˆÎ|EA»…°Ð4Ê ä‡¹_áv»¹ãÚ™~X×ê¨[fN?`ðþý„úÇiM¡m+(«æ×‡Ù´÷$.IR1têÜn¢' ƒàí­\^†vÏàâI½Hˆlµy lÚyˆç>˜Gyeµ~j"ˆÒò§tQ ²®y¡“@ÞPª@×ùƒ¡Žb†k~ê)&n£¯Ô£/2µT5ÜHÜwç-œ{æ$.½ù,Y¹IØór7µ6jåo€P«›¢_R⣸dl6¼x ƒÏHÃâÍ-èê%WRQã Ô܃Ê_iU‘÷æ‘`õŽ|~{?­Ú‹û4)5ׯ{G»s&Û§vã n*DR¤qBï‹§?Ù\BR¨§n (}µ³*el Þ¶ú¹¨£s¿D’¤Z­\ðb^ëÑÈm™9Ýmýzôß|⟦¦ÝÀ¶âŠ~]ˆu{Nàt»=ïK:ÃÃýr­,~ .[ ™ù$ Ò“ã¸drzf¦¶j¼Vì'¯|<ŸvËh¡c¯¥…J’‚Ö¨…j¹UåÑ[VP†6ÑA†U¹|ìè,2°óDÛÐYÿýõßœPÔÎáÁ{îdÊø1L¿úo¬Ù¸Ã ô²çåîl-ù½€xõ%9¦zIŒdƘlþù€;®Í©Å×{[…FnËÌÉvuÏÊŠxÿ™§ k]Í-ð¤9ö¹´Â΂ Y½ç8N‡KƒÓTÐRÓeŽ×UnÌ{ïm"g ?ƒ³†ŸQglMÚx lØq€>œGEEµFþxôç—µ]è(Ž*=’ÂÒ­;Û&ú²{¢šo¬R–Ñ Cr¶ùëÊŽ=i÷ýýnÆŽÆ™¿û3[vìsÝìy¹y-]#¿ˆ¸jæÅ-~²6×>·‰µqÁèlþ2s£{·'Â*ä&£4ÔØ]|³d;½õ+›÷kõÚù€ùç—Ð)=E£‚Ž\ˆ¼BÁa‚sl£¥qû‚t‚44öà­¦õ ˜h+ û Pð¨v.ã½¥š”KŽîŒlR0Ÿ¼ûq.·_s1@„[®FnËÌiìËìùñ‹Ï#¶’|ãͽ­¼ÊÁ Y¹ã(v§KW€„²¥_9 C^cG1áRßìt.Ú—Ô„ØV©‘×/`N^þh+7í5š4ßôT‘œN´î]p~|cUz¤ ÎM;³–vêõä+0¡±›Ð°ó Ñ_U»’Ò½«¿ÞSÞÇИ0óvöäå×Yö¼Ü#-U#¿ˆœ3c†ˆ›Ò¸Áy#»r÷eÃׯ‘u‹;ªÔøð±~Ó2È&Ø}óžc<üÖ¯|½h§«ÕޤÍʯ<—KÏ(jxK¥}õ®•l¨„#hs¾JI¹‚´X=5?ª¡Å‰£¢Ý7`ƒ(÷A)¤“h_\%`KÉ?þÝsE[®œéÅ«‘o‹ŽŠì9÷ÿÕô>Æf[m¾' 7`Ŷ#ÔØ Z˜:g«œ„?@ã“ÕØƒÓ$%Äpɤ¾ êzÒ´– ë¶íçåÿþHE•}è+&r1 áùè ÍGñYAÕÿŠỈ+Ud ÒÒ„æû>½úS%ÈE°'Ñkÿ~œÎ;ÒÿÌ«©¬ªÙnÏËíÕâ4roˆjÏI£F¸)M+1QVÎÞ•¿^>‚Iƒ2‰Š´ªTJ—TxS9­O ÓL+åy¼yÙ¢ÒJ^ÿê7žÿx)Ç ËZíØêÕ…GŒ¶‰Á:œNÝH·PØE Ñn¢Ë]ÿ¹%— õ;.Ê"g«ã͹?ÿJLt$çMг1Ãö“Z™p¦VÜLÚ¢#­œ=,‹{gdÊàL¢#­šÛTõlŒJù¸ƒ jÁAÏk[Þq}ërÙ„ÝájUÚx­´KMä‘;/gHß®ÊÅ’A»Ò®Ê; ¨Q’rqgUC¢J9ªH‰zÁÀøšEU *4hcùØ,t —-ÇåvsÉyý0±ÅP+¶Ìœ ¿mJJêWo¾Ä› Û<Új.o<ÀÒ͇©¨¶ëËâGàö\Ÿ¡SO.èĸh.žÜ—á}:µ* ÷•ÏçýFîO+‘$·Fh>Š•iÔ]ƒ©MšF’< ¥å*©+4YzG6E„¦¡Ó`ÆFÊÇhh¾ QËH¢[¨çóß÷Fʰóoäȱ‚“@†=/Wwµ–SM­œ ¤ž=a¼iälÆaaê,þvÅ(ÎÞ•øèˆ:-E±\Ò§P5ö¦¸¼Š·¿^ÅÓ,äð‰’V9æŸ5‚?]u±Ñ‘þû“ Ì|jªý…2 æ{ƒäj~@—ü>-äÐüÆHSÐxyÜÕß7ƇýøËBDQ çœñ©^ll1ÔÊï•hSšŸØ",LÜ…{gáœÙÄEÛTN5žQÉ•N‹‡ôoÙuà$¾5Ÿ\OU+,57¸OWºý2:´KöI¡*OJý¢Ýœåâ=üÉQö†ÑLS „Ft§\j#$ øŠË.dj¥uú“ òþäjý‚àX€Uk×S^QÉ%çOôÃÆfä¶ÌœD`z¯3²éÒ±£‰’-H"¬"“uáÞÙc™>º ±‘Þº‘þ곤­K U㕪¦«¤jõ‚“[’X°f7¼úK7ìoucÝ>-‰‡ï¸œA½³ÔÓˆ.•¡¦ U{•Œ}\»/a¬ê#ùÓo‚oâ8ƒwPpÓT©)Š×QÕ…CÀîp0Ѻeud@ïl€é^Œlöù¥@ä¹[¦6Þ™ p#,"frïì±\0¦»Ðwèz HŠ……å3ÊùOš²ÊÞûn5O¼3Ÿ¼#E­ Ì£"müùš ¸ø¬XÄ€±ôóÿ–ÓÒQôÓ®×nƒØ`äœa·¤K;÷+@)ç‹B„¤|Q”@àõRa§`Û‚3Ñ€Z£g¤#Ëúé*}¶eæ,¶Z,c¿}ûM’Ú„ :f[óis¹Ü,ßzˆ…k÷S\^P„…\Ò¥é2(ªåéѺ3¥?1Q¶Vê«7ïáÕ¤²ª¦n,Pè$p¬W­{§`Ô–Í Ž®üèÁÛ )¸Ä¡ª¡Óg,d3(ú/ÕX ?›¥‚Á>`—¢«ÌŸ$!ˆ"ï¿ò‘‘Q šv§k‰=/wœ>%í;m™9YÀ˜QC“ئÉU´±XDÆõï̽¿ÇŒ ½IŽVöCÜëú¥Ô“äó„æÙðÑÎ|SH¸Y²~/ù{¬ÞÔŠRŸí›ÍC·_Nû´¤º]Lx5Ä`n©†¼pk½R8()üãÔб—Ün~øeɉm˜4f0À/V6[je œ;q"v§›ùÛO°÷D%®Ó¤Ø@«tQ`L¿NÜ;g3'ö!¹M´¦áRl¹í½¤ðÈ»­®¨¶óñ¼µ<öÖ<ö*h5ã›Ñ6™GîüzvÕö+÷Me+ š!ýjÁ]µ‹)(ù„#cX‚8æÀz²þ4œÎ´Š^8rO4}yë áǮ廯”„LÐH< –,ó¥WÂìSVjÅ–™³+>.îŒïß~“ýEvï>éá\EŒ¤(²RãÈJ‰Æ"š~å­¡ $Vn=Ìü5{((©ÔÜzçáéöGG¥ ç爾]˜9u ñ±­'‚ø“¹KùvþJ\uÛû€dQª‰·|}ºõ„ž£èÛO(Å+êÊ 2÷N…’“-&?‚gE‰ö@…†R •SZŒ‰Zâ­ç{ˆnYY ˜v%¥å»íy¹ÝšµbËÌœqæ˜1DDDp ¨²î=‡["¯ Š;NðÁŠƒü¼í8{LM½Å‹ ŒèÓ‘{çŒçò©ýIKŠUpoC1"±N+[§–¼KªOÜõÛ¦ýüß+ß2ÿ· ®-Û\äÒsÆpëïÏ':ÊAI°o¿¢?9 ©Yuiݽñ¿˜ní50 ²QišÐüØ ‡æ‡‚ùqþl¶.¼7þqë大$ʆ³ËmPGܵ²*„ÈÑ ‚žsœ‡]Ãû†*…@[Šlt_*Ae¡ÓYÅÈG6ݲlå*œ.—œ7Á3› µbË̱G:µoŸüéË/r°¸ŠùÛŒM&«(Ð!1š.i±d¥Dcµ˜ôKKm“$X·ó0?¯ÚÍÑ‚r‚r]+fº ÈD'[y^;€ Àà^¹ôÌÁ$ÄG·x@¯¬ªáÅ÷¿cãÎý({i¨eæ“¡&üX}iPÉã­HÓHjùÑi@ÆFPóXQ«0dË‘ë¯/8ê¡•2(Ø_ïgïÿóŒ5‚13neß#…@{{^®½¹P+ã€ä³Æà@A¥á8Ýy…•,ôÒ/?m=Áîã8]&ýÒò(Ü£wÏžÀ•ç&#µM"o¼ªõPñ÷{¦Î' ”wK)Ü|íÖ<ðê·ü°t îNáÅDGò—ëgpþ¤aˆ~i‚ýª•«©»åW2€Œn?vU­‰¾dvŠ;Ýψä».³+…Þ‘Ô)˜yó0cÚX€d/v6X¬azÖ& 8€|/­ª¸$‰…•(¬d©(’‘E×´º¤Äiê¦4oؽ=»·gî#üôÛ.¿*’ϦÕ5¾üu=Ë7ìå²iCéݾ/Ž—Ÿ7Ž.ÛòæÇ?Rí°ë ª2Zz|9ëý&«¼bJr{÷€@Ð94Î)÷– wlà9¿“Ïgµë ú8t!ø;{~­¿¾ÿU…K²×]¿e N§“ñ#ðï7>­ÅÎùÍÈ'GEFÒ§{wN”×Pi_õ§Û]ê/¨g{A=Âj‚zK‘ÝÚ3 [{6ï=ʼå;9t¼8x’ ¾“@Rg}·Ã~‡O ã…e¼ðÑ/ôïÞ‘ËÏJR›Ø;Ž#ô £m ÏýçKŽû_9|”j.R4ì!­Ÿ¡†ô\´ '…t\¨þäêÝuØlزA}{IUuÍä°,ôº;£À‘Û2sâÂXŸ{àÿXs ˆÍù¥þ@[}5õÔ",B³à‡Í6}m[÷ã‡å;8àv/É'ã&ãn' T¦‘Iß*-ÂÊÔ‘=9gl?¬–¦¨=Þ8RQUÍ ï}ÃÖ]yõc¡PAHŽ+®S‰ª›§jºY)xñ­?ŸZOî­|¤o`ß5ëjÔ(U®ù)çü‘" IDAT"«Þ7M;¯""É9œËõ¿ŸÍ¬[bአN Ùž—[¦´Ó#áx’ÇÖ¡ýúp¸¸Z39{8^.Iâ`Q wðÁŠCü¸Ùé;8õæäéqêü½›_Ÿ{gµã®ß禜QtéT§U(ætQªO­¢¤K{³;œ|¿xÿxùk6ì<Øb<6:Š{n˜ÉÙ†øLv=Z¤Á4®ºN#…x\ˆŸ òX‘ñpQñH $èU]7 y¬E*<ŸÛ´u;c‡õ«eEÌ“‡ƒZ™ 0¤__J«W5}ÚQ—Ûꋪ°ì*$#!Šì¶MÝÖú¥%¹6Ö÷hléÙ¥-½²Ú²3ïs—mgo~?å)7›U9ÝÀ¾PÇrú&W*()çÕOÐ';ƒËÏNjR|‹sAøÝôIduhÇ[ŸÍÃî­ÇêÏû6 *[ñ>9ˆC—èëúq Æt©Žj¡Î“ÈW_ö]|ëO+økË‚Ü-ȳ¡†ækÑ-RçÔøÌÞ¼TW×0zX__ ýþ”ylL4=³³Ùœ_Æ©Æ/·[âPQ‡ŠªX²«ö^N=+­ž~1¥ùI÷Ì4ºg¦±ëàI~XºÝ‡NªN]©tL®-»óyðÕ¯™<¼Ó' Àjµ´¸±5¸7Ú¥òì»_PPTêÓR°‘P"}ý‚$|r½H>Æy­Q(D,Ç‘BP‘^ßgQ@ ¨¬‚7?_ȳïÏãèÉ–Wj..&Š¿ÞtgŒ( *c!ŸÿÛß!ç®ÇwÛ3®‚("ˆ¢×gÛsœ(ˆ¢÷%ˆ¢èó|~ú¾¼ï >/¿c¼ç |‰¢Çç^¨¿n°¼\ñfA;•JAçú cԖϸÖBûæí;3´o-O<•ÔÊd€¡ýûq²¼·$ÑœpM.ˆDÜH.ªáPQ5ËwÒ>1’®i±d·%Â*êâ‘%I™[–̦°I—ŒdþpÉX-â»%[Ù¾ïˆþñ ñ>ìØ„G^ÿ† CzpÁ¤ADÚ¬Mó¼êMO¢ò½DA`ö…SèÒ¡ïæþ„ÝaÃXI:ú.øÿîí¤ ˆmQðt\j¦6êÓ‡Ö‘õn‘dôdïû’Ûsr©Þ«Éím“ܵÞ,nÏgk©/Ý"ï‰'CÃÈÒ,r(£äÇ|c…ÿûB€»™w±w¹øuåVÖlÝËŒ)CÑ?û”·ÚqJ >vh_:¦§ñü»_PP\Š¿{ -ÌA˜$Ÿ±ü —¾‘™u±ˆODªp-) Æ„|Š)€’jÁ¹½ŸqKID’$$QÂ-I÷*™nÉwÐïÐPªÉ¸'Ûíf톌5’¤„xŠJÊ&‡ó´µ)OŽL5’Çîþ wŸàPQU³ðºüÉ^o…Àêí¢ ˆ" •&°XÚ¶‰¤sJ Sbü4õ@€–$åIå üï›>å¡/H‡Ž3wɶì=âÑÀü9ã ‚ ’¼OtPP‹ç¬NiÌ:g4Û%…ÄCtÙ";RVQÅóï}Á®½‡PNÇŠ¿Ÿ6þc!ðß’¬8õÚ¶ `±ˆ‚ˆÅ"`E,¢Q¬U¦d˜| ŠFžþ{þt{w{ÝÕÝH’„Û-á–\HîÚß%Ün7’Ûíù]r{5uwÀK~Ú=~Z¶°¸ä»›ð¿!Á‚ÏPûÙiS&qÛõ×rýÝOòÝüàÉ»rTi§ÓXù$ð¸W:š!€{@Z`‹±¶ÍS(¡ö§€äåÛ¼\– Qép°ãH »Ž•g##)†É1X½ùÔ}\’´'—-cJhÒ±]"×çŒ!ÿD ß/ÙÌæÝ^@ò¨ôDü4B9}F’Ñ>÷8Áo~ÍèAÝ™1e(Q‘ q¥Ÿ¡¸œ¢ͽ7Íâƒ/~æ—åk©’¶·?àø‚¸H„EÄjµb‹°aÅj±xÀ]ëvŵÀ¯äîº/é}§k©d`{€Úío· ·ËËåÆévãryþv»Ý¸Ü.\n7n·gÑqãzÑ{i·ß~Íó‡ ¢þJÛ>ušÅ Ûvî`ôоµ@> ø¨©©?Þ¯eÕNv©"Ú&)b‹šÄ}&‚@íVΣu[D-`,^ ·ZÀ"âÕ¼€îwÑ ê…„Û餺ªŠ§È¾¥ì?YFbLm¢HOˆÁbü@<ð÷Ú—/à›ÒðIFZ×ÍÃÑ‚R¾_¼™Í»ãôW“üë|ï|À]æÉ’jxÎçr»Y¼f;ë¶íã‚IC;¸Gƒ@ܯfµ` ÈA[‹7ÿýÅg’Õ±ï9»Ã¥è¾ZªÓŠy¢8hüŸkY,"V 6›•ÈÈ¢#mDEEaÅjµ`µXê+ÛË.Ÿ’ìj"I Ûè \òjܵîrK¸\.œNN§§Ë…Óáòüt¹p:œ8]N\.À»Ün\.¡î<õT c […dÀ0ãp8Y¿i…EÅ<\»•“Eå|¿x3ëw¨s1E– —RpÈ•“RtÔ/ˆ0²7.>s8±Ñ‘†´qQ„aÏfמ}!}ÇÜû'î¸ùÙçJMÊÊ+yî\öäåkæ —/ÿæÏi×®¢¢Å‚Íj!:*‚ø¸h"#Dž}öÙF]Ä£¢"‰‹%66†Ø˜hÚµkKV—ÎtîÜ‘„6m°ÛØíªìvì5vªkìÔÔ8¨®©Ánwàp8°;œMÞá¬ãÙÝ.©n|$I ¶ ^𮦯AiY¥e唕Vàt»|ÆÐóùß_–Ããü?Ü÷ _þ° ‹=/7¯©8òIµ´ ÀÁ¢jÕÛv§‹’ ‚Q^ ¦–†t®'\x­E¼ž2ñ€w„UÀ!`³zÎ!¦õËXóÛ"Ö®^NaÁɰ?Le¥%ÌŸ?ùóçqÿ"½zõf¸±Ì™y1]»dÖz ¸û‚¸(šÑpIjR¿¿`$ç•ôõúö8].ªÓÇ]Î'C ¯GFðÃL1H’Äò »Ø¸#ó& b°>šß+œ1Z¸–VÃßn™Íû¹?²`åzTÂ#}~‚†¥Ö°~òhã‹G#´ÙˆŽj|×Íêꪫk8YPÀÖí»øuáRÚ´‰';+“¬.ÉÊÊ$½];ª«k¨ªª¡²º†ªêªkj¨©©Ánwâ°ˆ8N\.—àáÕq»‘Ákƒ‘ÛFxŸ·DYY%eå”––QUmGÞ€^/KV¬ x§©¨•þ½»uÃé’8ZR£û@I¢Ž†)ÀŸ†‰‰óR)b­QE°Zëµo[„@d„Hd„çïk—òÉo°wÏÎL±Þ¢­ë;ºÙºu3[·næõ7ßà¬içqË70 G6‹Xâ¾ nd"š¢_Râ˜sþHÎß¹‹7±fÛ.§b$Ÿ6¯!ÿ™Šª>ùa9K×íàòsÇÝ©.­¼¡ ^û2ú̈‚À•3ϦK§t>üò'N—Žº•Ê4T]¹5$˜[-Ø"¬DEÚNéý/--c݆ͬ۰€Ž2˜8~ú÷!ÎCee•ÕTUUSYåuÑbÇaw 8Á-¸Aòl¿$·?ÍR]SCII9%¥å”UTàv¹eÇIvl%Ø»?ã' Ô§›¶6÷NíÉ/®nP—[¢¼ÊEy•«Ž†©õh›XÏ¥á}Vk¬¬ðZð޲y~nÛ¸’?x];¶jkoiíè?p))i$$¥˜DBb IIÉ$$¦`‹Œ¤¼´„âbw^R\@Iq!ÅE…ä>ÀÆ k±×È/f.—‹¹ßÍOóæ2õ¬s™=çjºev$=!«EôÓÔéÐÃ'ImbùÝy#9w|æ.ÙÄš-ûëÁˇ¬ 6îI ©$pùÇ‹xæoÒ'›™ÓFÛ4¥æBU&ŒH‡ô4^~ïKŠÊJëµ¥ º×—ZðO]_ ˆº¨K‹(áñXiNrèp>|”Ë_}ϘQÃ1bi)I”—W`³UQQiÁRe¡F±‹.IÂév#H5'eåå^Í»»Ý.SJOC“ ]{ö2dàû¦$õhR o—šJ¤ÍFqe)QÀ¦rZµ4L±—†©õ„‰‰Ž´  Å"RGDÙ<!²{ûZþ÷ÁlÛ²Aå¡èÞ£7C†aðð1têœíµvK¸%Ïâ"y j\5•.°Æ’KRZ'ê=],¢€ËYÃÖMkY·z9«W.§ àDÐ5N?|ÿ¿ü<—3ÏžÎyÎ"½miñ1d$ÇáÕÔµørS&‰ñ1ÌúöÎ;NŠ*íÂOUuî‰Ì C˜@Î9© bœŜ]*æ°ßº†uÕUW³¢PwÍ9D1€($ÌÀ˜:w…ïªîé8¹X¯Ö¯™îêêêê[ç¾÷Üóž÷ðI1u$»‚%+7•öç-ídàþÒ•e¬X¿™Ã§Žæà)#r]E­tv׿°·]}.sæ¿Á†ÍÛ’Í…ÌNš%‡¡Y²`È}%I_¯2›M»e?p{¼|úÅB>ûòö™<ž£8 ›Ý‚ÅbÆlöà–Dð‚Ç룮¾‘úF7Møýf…K =!‘#d²V¶qûNš@¯¹lÝ^µk€ÜRx¢(*ìU Ïúd0´W:Ûj}lªõ²©ÚÃÖZr»7 â ªÔ¹,’Lš]$Í.‘î°˜àEÌ¢ÂóOÝǧ½“ôXáð£N`ä¸)8Ó²‘YÑht+ÈªŠªb$ò&bS„›ý)BG]+1`؆ŒœÈ9]Í–Í¥üüã·|ðÞ¸]®è*àƒwßàë/>áÊkþÊÀacYµ¹‡ÕLAv…yá(&6áèÏÖu-3ÍÎÌ9bê>þv%?­,#”c8àXOÀH zb=2*óûƒ¼óÅOü¸|=§±ƒŠ ºÌ-w´¯d¤9¹å²3™ÿÆG|»ä·6 XÉ‚$"juŠâî]¼CÓ4¾û~ kוræé'‘‘‘Ic“‹ú;*«hlòàñxñùý(²Š( ¨*¡è¹ c|ët]ÙÆrú°u{U‘¥ðDk`Óþ”9ÐúöêÕ|Q 0×NQžuCQ5¶ÕùØTãeSµ—-µÞ¸‚mí¤¡!‰:x _@ê´®†jž|èÿ(]»*á± zõáŒs/aü¤È*M… ä²¢KŽôHÜà­CÙ_‘)½‚^Ó“‡´pú±Vʈäö(æ¨K˜q䉼ûÖË|øÞ›ú,2"p»¸çeæéçrø±§âõY±©Š¥ëw’é°Ò'/ƒþ=³°Y¤V­v÷È}wöCOwÚ9ù° ÌØoŸ,^É¿•õbÄI#S-ìݹªØÐ(¬Y/;ªëylÁGŒRÂI3&“‘fß-'Q9ÿä#)îÝ“Wßý\_KˆÂ!!µm¦e$à b8BßZuM?ò S&g̘Q¤9ídef„S ô€.@0¨¡ JxЊ¶hóð‘@^Ô‹…?,— Œ]•j ŠÈÝ„’(Ð7ÇNa®éáÛêýlªöP^íeK­€¬¶š)³ˆÍ"à´J8í"év‰íå+xfέ4Ôׯó¢Ýr9ù´ Øÿ£Ð4·O5¨YÖŒ¬/Àõì0ÝúVÏøUN˜B@.„³ØŒGQÀ$ H&µyáÕdã„S/âÐ#OàWžã«/>‰š’išÊ« žecÙ:þ2ëzÒQ¡ÞãcÇz7‹Wo#7ÓAILõÎÆÖŽiêÞ¨DI- Û8éñ¾ß>Y¼‚——â [å7ÛùÁŠuålª¨ä}G2uü``÷¼XNKïy<öâ[44¹âïAˆ‡®¸ŠMèë[{P‡Ð4Å?,¡lC9Ç}8¢˜þ…ôÔ~C†-7'"EEæí± Ö¢©•PD±»È zµc¤èÓÍFŸn6¦Ò鋊z?›ª½”WyÙ\ëÅTãÀ@Œq“ñ4»HºCbÉ7oóÚ sQb"I’8æäóØÿ°S5 e‚І¦6glJ†Ø_QõçC‹ÑŠ¡N ¯NÇš©„7´æE@T‚"H²@P‚€$b1 ˜ƒV{6ç]rGw Ï>ù0+~û5ê|üá[¶mÝÌÕ7ÞFV·Ĭ ¨lðPQÓÄ¢[ÈÏr0 w6ƒûä`·˜ø³u}sÚ­œpÐxfì;’O¿[Á÷Ë×ãó’ R-J B‚™%‚A¾Y²Š-;t@ß]Û€â>ÜvõùÌyîuÊ·VD8¶±ýÜvVVñλrâ Ç„³GUEUôìQMSQB ®¶]ë“ìïÍÛ*ô/ì…±»Èûö*èøNèm£w¶}d£;ê}”G{@Öi “q1 ≷^z€E_¼#¦¥sñÕÿ °ÿÜ~OÁëWðU•€¢¢Ѹ$êšs«ÙØLzdY¸6Zn¤…uÈ¡˜D0ì9ÅáVhð5‚’€É¤”U‚²@vnon¼õ_,˜ÿ½ÿvÔyoݺ™¿Ý8‹koºƒ¢~Ã",95ÐD‚šBE›­Õ.¾^¾…žÙNöîÆÂÖ?A½«›ÃfḃÆqؾ#øìû•|ÿë:<¾zLÐb.1™Š!3&1Ä7‡­ Mn¾Y²2>êßÖÒÓ¸åò³™ÿú‡,þù·Ä6®šî÷¡ïþªmÎÙýZeU5ï½ÿÇ}D³G‹¢¢(²‘EªÏØUÍ0(ˆ''…ò$ªªlܼ…~E»ÈmV+ÝsrºŽ›  ÛFA¶}èîr•M~¶ÔúØVç¥ÊÀ$¡Ó)‰¯?|!!ˆ÷(èËe×ß‹3«€z·ŒÇ¯àñiøƒ  f,nª(Š>E hno󕦪˜Lv³€Í,a³X-"z±õè¨\‹ð×4DA÷WVU]ý¢Ó7"²" (6‹È™çÍ¢OïBæ=ýŠÒ¬˜ðx<üûÞÛ¸óž9dæD9 ©Ȇ5gE­‹Šš&þ¶™9NõêÆÐÂ\ì‚z—6»ÍÂ1ŽåÐ}Gðù÷+ùî—5x¼¨{´Y.Ú\Y‹‘è%Ž+»yµ*I¹`æQöÎçµ÷¿DNªÁßûÚÖmÛùøÓ/8ôéƒ2Á€Œ ”õ,P-Ä—k-ð'm¬ùY¶±œÃžŽÝfÅëóï ï[P2î+tØžYV ²­ˆb&¢.zo€O>ÿ˜÷^6î}ÃFNàü+î@ì4¸<>=éÈP Ê*²¬¢¸²¯Ôˆ[¬Ê€J !ŸŸ°H¡^48ð0ƒ¦¯iŠ   ‚¦¡Š «<¼ /¨**Šª1íà£éÙ«7÷ß{{”²ÅívqßÝ㎻ç`·Ùu?eMCUETMED0|ò›Ï¿¢¦‰íÕ.®ÜLAv{wchQn\¤¾+9íÖlZ»ê\vÕlÞf1sÔþc8dʾøaß.[£gî…ý"4Äp¾ºa•â•C\Ë%w×vð¾èÓ3Ÿ'¼Ec“; „„¨ÒL„«í ­lC9‹-fÊ”Izh @ ¨{´èf]Jx&’˜+oI”n,GJ Xµvc»¼]Ú Ká‰y@vgh•¶‚@Hâ§«A 7ÃŒ¯¦Œ9Þ'û9è°c¹äºûb§Ñ£ÐäQpù<~P_à” YXØŒÑlkqY–Í;ÈŠ†Ç§Pï’©¬°¥ÒKY…‡ß7»X·ÕMùN/Û«ýT×itñù óC›TTA¯_?'OÁí•é7x4÷Üÿ(ùù=¢¾ÏöŠm<|ÿØÌ`·IØ,‹„Ùd¤@GjvC¥¬$ýß;ë]|·j Ï~ô+¯/úåe;ðåv•«kK)»d@ûžDŸeTkõ¹¶d?îê2|V‹‰#¦á¶ËOæ°ýFá´ÛÃN›!ý´I1I¡Mh¶GR–•n'/ÓAI,öÉÁ–€~IX¯6d6'¶-òMä«HFÜÞh¼µRz-[ª²d-f3öÍA“F°pé*ÿ²¯ßdxmëó<]é ª*’ FÔÒluép·lYéüuÖ9<÷Úûü°leÒýTUÃâ‘:wá/½èlºççáqûðùeÃËë#àøñ¸½ìܹ“mÛ©ohLÉ÷^¸h1' n—Û«Gæ Š¬ hjø÷Œá·Õ "¤\é߬\ T¥ È…Î^)ë(‰@Üç÷pÞ¥—PYmvÕ¿¤˜Gî»MqšEæ›èŸçä !Pã °a§—•6Tz¨wu:Bmmë騴±KPV 5\¾f͹Y1›ÒíYéf²Ò-tKïÁ¥WÞȃÿº=jpùüÓèYЇé‡oðû’‘}ÚL¯„|ÃV½&AMR¸è+xüVlÚɪ͕ädØé›ŸE¿žYج¦hQN’¤’Ö1‘‡HKWÐ6mçTژ͇ì3’铇³ø—µ,Y±7€ ±H&¢h b¨q„ÕÄžØ$IâÂS¥°WO¼õMn~Y–ÑP‘D™év zt#?'£SŸ•Ÿß¼¼îÔ˜šÀåFóùAT0Yœ†U‡€$IŒ£×VU™-[¶°ì—å¬[¿¡eÜZoÛwT²iÓfrrshryðz½ø|ä`Qôz -&i-‡¥Zò¬]”R /Lµyó‡¦Ù!0ðѹ¬Z³&jÿŒôtž{ìqŽtE÷*Ñ1õ-Ûaa\±…±E™Ôº‚l¨t³a§‡•nêÜÁÖ‘Zk7šGÓ5Æ’—¦©¨F­—¤hÒ@V5|~W¦GÑŽ<îtÞkAÔq¼ð ƒ‡#=»§n*˜DMRQU1Ü™ÃܽYÄjÖiS¨P†]y% È¬ßVÅúmUd§Ù(ÈÍ (?K„N½=E1wä€Üüx¢(¼½™Œ©È” ·IÙ¦ŽIJÕùyuMdY!”1,;ôLǽÄ{á©éÙ=—«ï˜KUU-’IÄf1ãpغì3Ün¢©‰Êê:]¸=^AÙ0§"\qÈd’°ZÌØ,fºåvç¸cŽA‘,þáGÿ°´Ë¢òÓO=™4§—ÛƒÇãÃ'Iˆ¢ŒªFÜšÖNÌÐhhl¤¦¶.VKNJ¼oAj8òH$}ÛQYÁs ^Š&öE‘Gx€¢€}R IDAT¾ÅȲà!0¼é#¯g·43ÝÒ²_’è¥é6ìtS¶Ó͆nj›üí› Å¾¦µ­’3*A3²DE8à°S¨Ø²‘eKGLQU^{e>§œ{=µ~ê]\ž Á ˜Í`³˜H³Kd8Í,]üšâÓ\Ò7B‰¦K$‰´´tœÎ4œi餧g0 ¤„9éôéžÅdJêoÐ#»å+WòÍw‹“Ò-]ÑB畞žÎùgžu^¯¿ý/¿ö¯Î‹Ùâ]汘ª*Ì}r^xŠ]SUGZ·žØløATU [;4óÉ{v>¨„W¹ëþñ¿ý^ÚµæóûÁ妾ÑE]]#.·ŸAi4~"&“^ZÎbÑ‹Y8í6ÒÓL›6¡CóÆ[ïQWßЩsilr±nÝz zõÂa·á²X0›ýƒA!&9¨Š•Ð?Ë6–3tÈà]ä¹Ýºá°Û»ÀÑ*¢Ì—Þ~ý•WpàÔý‘e¼ÙÁ¶v£f;ÍŒ+Ébœì !`ßá¢l§‹êF뮵ê#À\tAŒAŒZ¢r8ñéÔ󯦢b3;*¶†ßÿëÏßsÀ¡¥däã*º ÇRªA@ÓÂlùúÓ·©¯«êÐïàt:yz¤ÞÖ‚?.ý™Ûïy`—IŸÞ\pÖiák¬SZA¾Zô×Ü|+>pwºª©ˆÌeEŽûÞ>p7C†â»ek©khÒ)Q W•ßZNv&Oß{<õ2ï~º¨#ؤ-Q?n—&——&·Ÿ?€"Ë¶šæ’ˆÙlÆj5ã°Yõ¨Ùç'';“Kþróž{‘ʪšNÏÚõ¥ 4‡ÝŠÕfÆä•$9hPej[€;ñ…)ÝXÎÄqcÈÏëÆÎªÚÔ¹¥ðD3PÒ•´J"uC$ˆ¯+]ÇëïD›`õ*(àÒ . Gà‘@žÄÛ:Ït˜[’ÅXؽAÔ­²Þ×’5ÞÐR7Ú ¹ž¦)ªQôY {µXLŽ;é\ž˜ó¨÷ðæó\påøþ€B0¨s":€[Í›©S‘¯ÛíæçŸâçŸbÁ‹Ï1tøhžq,ÆŽ§w÷Lú÷î†ÕlŽOvUìb Iöü÷Mö/aöe¥Œf‰]ˆm¢c‡•0jH1ËVmàû_×è¢$ µ¶RS×HvfÆæ&“ÄM—ŸÅð%<öÂ-Ü ík²¢ õNŸ?€×çÇï׫ú„$ÄÍþ.:o6›ðZ|x}>ü Á@¼Ü,Î>ãTžš÷ŸDÀ¬n|& ƒ»tº¾z寬^ù+%ýsâé—`qd‘—éd`Ÿ†wÇn5'Œw5’ÇÜ‘çtÛÝп¤£?”ØŠ~]M³´ÔÇEA`ܰ~ŒZÂò5å,ZºŠÍÞÚˆ2tío Myñ=† ,fÆÔ X-æ?Ð:d_ú—ôâáy¯vÉñT 4EÑó@Œ¢ÊÁ Öqk‘:}A@ƒ˜‚ÁH½·¢›ìõèžÃ©§ÏSó^ìÔ9mݺœœ<¬3f³ “ÉdÐ+z–k29¹ϦDµòÍ[è]Ð=„Í=€-] äéN{×;·Å.tŠ",Y¶„Ï¿þ:j¿âÂBN:h¼=µ ;ÓÒí&Fg3Æv·O¦tG¥M”no¤¢Æ“ÄvX‹B`®û¸e QðJ ³‚Í,rÄqgðØ¿o‹zïûo¾À7=€Í*á JºœRÂze³IŒ³ÙÌàÁCšíy£@0ˆÛÕ„ÛÕ„ÇãnqÅ}Cé½ÿ¯œræ%P<œÒ­5¼öÕ*útÏdô€žŒØ“4G3ˆ$³¡ƒ““Ývú°­{^n< F]o‹®¸ßêÅèÃâÖQR>[ˆëëc†3vX·îà©Ç:góª(*}½”¿ZÊéGÈ´‰#þp0Ò¿ˆÝr9ó_{·§©³Ã´QxEw(Õ]J£®¦Q(9¤Þ2Ša¨rs!æP¿–$‹ÙD¯‚<ö/a]醟Qé†rzõê…ÍfÁb6ézòƒ°8‹Û6v¶†FýZE#IOG®¹Ã‘Rj%æ÷Ï·ÿ5³f! ²’œßUÍi31ª(›QEÙxü2¥Û›(­hd}E#[k\IÏK u8UE@@1¤Šþ €Ï¯àµˆÍ€AÃXaÍ[±u¿ÿö=E'b5‹(ªˆªhH’¡OP&/»[7n¿ë>\ž n¯Œ/ ”•pU'QÐT™Š­(ß°–µ«—³fõЏãxûaýò˜<¬7#$.qö÷›gsÔŒƒ»dà}Å-¾Æ\×ËÌs/áë_§g~~˜æJETÞÚkͼ®@ÿž8Ö.éÕµÜ9÷e†(äªóŽ£¸w?̳2Ó¹ê‚Sxÿó…žniáM Ó)jÄ¿Cv(CEЕbÆ‹¢(`6KجÒÒxÀÔNyÙ†M¸ÿTÌf3&“d¹HÈg¦YJÞ™só>nÇrGêÜ‘¢ˆ<2¯©­æ‡%K¢öØ¿?ÇqTÒHü®¨ã°šY”ÍÈ"=êôdʶ7±®¢õl©t5û¦„hcê(¨  ›kù‚2¿ˆÍ/räñgòÐ=7G}Îo?/fÐð)X-AEEA óƒb¬p{eÝšP {|F´’žSÈø%ì{À‘ÔTnåËOßaÉ߯îíן''/ŸÜžýÃÑ,«¬ß\ÃŽš&¾ûm#›7W%ßduJ;C¥ÄªQ’µí;*9åœKøô­—±Ùìˆb|y½ÎÐr­xj‚øƒþ¼²”3fßËÌ#÷ç¢Sgà°Ûþ°{B’$Úo|J¾gsŸjVE¦á(ª†&C“Àãñá²ûhjrÓ·w>YY™ÔwPÅ"Ë2õõõXÌfL&’(…ó9Z:ߤ¯…ê*¸u wv "Ûä¶”€xäöå7 ã¦úW^|1‚ Æ-pî®Î™v«‰áEÙœ°O7ž4’û/œÄ¬£‡rèØÞ÷HG›3Áô颪û¼UüŸ_¡OñP uÜßWþ‚$¨X-"I—]…2:Må5MÃë—qye]êýÔ6ø¨5k|ÔÔëÕõú¿í=˜yÖ,.ºìZl¶èß[U<;ÙßHšÃŒÃ¦×e ‡4¸â‹›e5nŽü-Û³E£=}`ùŠÕ\0ëZ@M˜ÊŸ’@à.TEeÁ;_pâ¥ÿàï~boiZÊ%žºlö Ò] u¿ßÈu{}x<>ö/éÔ¹ø~Lf)‘‡- ’v"­UàÀðœ,*ëè¹ìŠçìV‰a…Ù¿o7œ<šÿ2…+ÁŒñ}(î‘ |yP÷‡ñUü•Qc§Dw ¿òÒXL³hÔ/’f j€/ àõɸ½A\Þ Mž Mî î®õ.?uM~ê €oôSÛè£ßà±\{ó]q`îñ¸Yøé[8mfìVV‹„Y:¦‰euß-/ç­¯V±tõ6š<¤€ÜÞ-2ÚoK{ÿã/¸õ®ûÃ}m—€ùwUµ üíßÏsÁÿfÝÆ­ü¯4‚ÁàÐUdYA*øAüþ^_€¢Â>ú Ÿ×I2!Ŧ#¦`®µü›¹ÝºYÚ®àÈ6{›8ÁŽD䢀?œLjãÇŽ%--`°k*»C³š%†öÍfh_Š * å;𨏣‘m5.½>üA™AÃÆó¢Þ»ê·% …Ï/¢„¯˜,ÁD ñïŠ>@d|~… bðäZ³‡º_ñeüAE6£jYÙ=9ó¼Kyæñ£»ô§o9àc°Ù²ÂFd¦*ÂȲJé–/ßL“;@Ÿü,ÆîÅÄa}HwZ;݇ÚÓ~|úsöi''ôqÙ3ë¤&?á_W—rÆU÷pÒS¹ì¬c"Óöô¯–tGM eUë€.˺Ò%âÈéÖ­S§äõzõh\”Œ  F1Ó‰ÚâÛâÈÓ©ò´®æÈ¥åÿÓx"Ì£Úÿ„ÜÞÔÌ’ÄÀÞY ó·šJUƒ‡zwOžÉïÉÎÛ›yò_~âØ™a6‰ÈЍËH8QQŒ’v!;ß ±é.ÍUL’‚¬ˆÈ²ŠQI2b"cÆNä—eÍÓtUUùæË8üøs ¬è†QI„䪦Ÿ‡¬¨øƒ2¿®­àÇ›yô¿‹VœÏ¾cŠØgd!éN[»ûOkmİA4¹Ü”ojŽJ¯¾ù6Š û2uŸI»\É’R|KRnLUUþóþ×|ºh)WœsDzϚYÚöj:N¨ éЊ+Š‚¥“¢ ·Ç¦4EALÐçÛmF¿¦È*>Ÿ?’#OK!GÞõY‘Û§_}·ÏAt¡lo¬0¯i ‰"½rÓY’ÇчMz½¡¾–ÊŠF¾`øM$ÏÄÑ"d‡Š±ÎzçÖ­v}½¢’Ç bܾ ŸÌôCŠ;îª˰šuŠÇlóH|š¦ž.!SÃAYáç5[™óò·œ~Ënyä#>úîw\¾6]§D±-”YðÌC˜#¼d‚A™3.œEÙÆò]Ç—ÿá+Ô5¸¸ãá9çš{X½~Ó^sÃ$‹x5£¦€ª5÷;EQ±Ø:7 t»½Q’èàBëøær»;‘ÿá@ èŸ}õUÔó={2°ß€„¼èÞÉïÅÿûéûÇSµ¥œ8­?SGö¦¤G“H²\ˆE P÷6:wèš*ŠÞÁõh]ÁÃܺ×/Ó§h Ýc|Ó›¨©Ü†Ålp䯀’µ¨ %” /øþ²f s^YÄé7¿ÀÍsÞçƒE«ipy;uMkjê?fwÝz}Ôóõ œtö_hhlˆËNÝÀ|ø€B÷êP[¹®œ³fßÍs^¤¾ÑµûßÁÂøaô}‹ÙlH;ÖB¬AxSk‹wNëÆ|.·»Cy;;¯ZIæ–×äjdÇÎQû¼ÿþV)ìÉ`9`í7y6kt±v})ùÝLœÏ Ópá‘#8bJ f“˜´ …l|5-2’‰øOÃPÐÅ0ŠÎ­ô­gAï¸ã–­_¥Gã!õL+©Í7T˜7WdqEÑøeÍ6æ¼ò §Þø7=ü,ZECSûA½¦®EQ¹ââs92fvS¶a§_0 E‘÷¸ÈÜé°qÆqÓù¿Y§1qÔ ˆ“ÕÚ„wª¦ñæÇ‹8î¢ÿãµ¾ë®÷„)ˆÖNCªhúZ@V”¸¬ñö4›Íj¨£yù6¸–xîБïÕJ("ïJUGèÆ©ª®ŽÛwÈ AQÀùÞDÏuö\þÈç’EçV«’â¨תª£ÍDQ /ÓŽ)È-&‘¾ùØÌ¦¤+*ZðôSVšùô ¬Ò=¿g²€Ó¯¸“å«ËöP )±!•Q­HwžÔ¿ßßÉAÔ^cŠóÖRó[¤l<žÔëÈAÀnëzy豪:>‘$/7÷*ñÐc~^tå§•Um“IdÆÄbfŸ2ž+OœÀI bÌÀ8m–Ä7‚ÊœÃàÑÕ0¨çvï‘€+ljNQA…”^UÕøuíVæ¾ü5§Ý4Ÿ[æ¾Ë§‹§±N½ÉåAÓ 33ƒ7^zšì¬Ì¨×_|õ zìé¤å⺺8F*Z¿ÂžÜuÝ9¼üмïXcv¤µ 5`MÙfνöþöÀÖf³…Õ^Š¢¢©ª!ul¥ä[‹E ´ð=mÐ+©r§=u´ $æÈó û_ŒÈ£¨•î¹q¯UVUw°ôÉÏàЉý˜=s]$w]2™gDÿ|ÒìjkâZ‡ÃId½Y-)LDTZ7?¤}ÕZ-!µ¡o1¯…†Œ6VtZW¾·7%c=ëÔ™}Ù…Qû… ¶¶ïÜ™bÙÓÀ °Wwî¼æ\ÞzòvŽ9dŸ$vâ±´|\/7üóq*«ëvù¹1!F]¢µ@:7Gâ†Æ[1›$,V36›‡ÝŠÓac}ÙÆN—Õj '©J³+ÄÛ2ól~-䯂çž‘G‚ùÎÊÊhÊáhUîØ•‹‹dkéü4->"O6ðue+ÈMg¿Q}™yÐp.:n=2âWùÓÒÓ#¤Œj‹ÑHˆ³ 'R 4së^Ñ[‚×4½Ø­¾n­—/ø~ù|ásž|í¾[VJC“U…Ûo¹–£gµïö•œrö%ø|Þ¤`¾'¶>yÜ6ûlÞ~úNŽ?l?L&‰¶”¹ÒÐøøë9æ‚›xö?”å]vÎK ™uþL2ÓÒâN2¾o4™ŒHÜb2a³Zpج¤9í¤9í¸Ýn¶ïØÙásE‘¬ÌL½à´¢Ê†7zÛÖ#ZºàáìÎTFä©P¬D>WLÝóò⊤¢pîîð\kìB¬ï6ÀΪêv Rí=¿X™èÖ­ñ~ý è×»N»%\Ž4ÑÔ|ƒé[¨4Wh“¤Ø¿…è¿ÅæÇÌQŒZþgŸ®)ÛÁKïÿÀÿ~ƒ¹ ¾àÇßÊyø¾»=bXÔþËWê[š¦&T²ìÉ­W~.·^uï>óN:bL&Sp'×ÇCÏü—þòW/]±ËÎw@q_îýÛlö+2T(‘j”P©7Áè_&QÂd6aµ˜±Û¬86ÒÓíd¤;ÉÌHã›E‹;u>E}{#``PFQôEO µ•¥ˆÖRõCˆFRPJ€üÏö?Ðxè±´¬K´,ó¡ÇžáÅW_ßkøòD-?7››/;ƒæßÃÇŒÕbià‹o—rÌù7ðÄ‹oãï¢:¤-V‹™Û¯¿œf‡ÕbÆd–ÌzN‹ÅŒÕjÁfÕ9ð4§Ìt'ÙYéädg’Û-‡Ý«ÿ}«mH ­oßÞx½~|þ ŒJ.Òh…^L—Güiµê×Þåñ´YZÓùa“ÇëÍéê*RISÔíñàñz1›ìü/·¤Šžif{%²C2j%Ö•ò½>cÇÎèsè_RD¯‚‚6©‰&ëÃôý'P¾½žõ›«YS^Ŷ º„KÕùõÈN­âæ°W†ªé5•`P! +(²‚¦Ñ™ ­÷5bQ e@?."dgäqÒ̳yå¥yQ7ãU7þ=ò9䀩t"p·oy9Y\Éiœ7óæ¿ö1¯½ÿ%>_ ÅÝïðèó¯óîg‹¸éò3Ùò˜”7gžx$ûrË]ÓØä2sÝFÙlÌâì6+iiv2Óädg’™á䥗ÿËÎÊÎÍ òòr°˜-x½uZQոĠÖÁd²ÚÐ êr§ÈÝ^_—ƒx"`ŠlUUUôìû?‰'T aìž—›’5ƒH*A hÌyb^Üþ'{dÔ@ÜÒ† €ÓafHqƒ‹ò8zÚ\Þåu”o«¥¼¢†ª:WDáZ-,åÒ4Õ0øÒ­| ~¿î/­(‚ˆ®e'¤côµ°Ë ªª!ËŠa  ç³ è–z â°#ŽåãÞ¿W–eκèJnùë­L=‚AÅd¤9þðªT)£1²3¹î/39ÿ”ÙÿÚGüç½/ñúZ¾÷·m¯dößbú>c¹ö’ÓéS×E2qÀ1iÌp^~ünþ~ßc”oÞŠ$éÔ›Åb2¢rk˜÷ù<<÷ü¶Uìèôé ЗۋÇëÃç4säšš ï·Å*!úI«aÅáòøR‘§¬ó$UfÔTÓ« o\–]g‹I¤š éÌs‰:nlDn·ÛIs:Û!¶ÄëÆÒ‘\pèßÌ}œ%Ë–G½/3#ƒË.:·ÍÙ¶¥ÊY²ì×èèÝøw4è10 ÐFU›Ê:Uµ.šü^ÇÃCý›s/œÅ{_/#7+ƒû2fhÙöÆÖ-+ƒk.šÉù§Á o|Ì+ï|šòGÝ·‘}軥¿±úºœwÊœrô]ãá¾êë¡Ï뙟ËÜÞÌ3 ^ççå+1›ÍX­fœvN‡ “$òó²_øò«Eºo'›ÝncèÁTU×áñúðûƒ(²Œ¢(É#òVŠI͵çNeD®Ê†Qu'+²„¾÷Üä»®ãT«Nºú\c½Uºçæ´ûÉøÝD‘x3¥ò wÝ?7îx³.>ŒôŒ°&»µëò×;îëÒk2yÿ£(8AÖãœç´††ªö¦1@.ŠÏ8žºÚjÊJׇß[]UÉ[¯½È)§_Hu]#,\Æ»_.e@Q& /fPqþ^ èY™é\yþÉœsò¼øÆÇ,xëÓ°º"Q ƒ¼ñá—¬-ÛÈñ3öëtßxHN‰—v›™+/⇖ڤñcxè‘ß#nnËliþ÷sÔŒƒ“ÚkíðÒJöùV‹‰~}òè×'>ÔÈÏÍd[µ?ê"„•,š†Š^Ì" (ˆ~È%û:§{Ž9îÞzã•(zfÁ‹ó¹æÚèݧ®ig´¢i”mÞÁ¯«7òÂÛ 6 7Ó& aÜðâ½¢Ï:6.8õhÎ8þPÞøð+Þþ諽æ~ìÛ§L›JuMõ.\n>¿_OÍWÔ¨ô¶S(ÉýW¬VkHzøÇy{ coÊCœä_|ý5η`—Œëmí¹ŽP»ò¹Ø,ÂϾŠòÝó=rDÒ‚±|pccÇ-;ÓÒœ\zÁ9Ü0ûr$ÑU¨8XÛ¦áNì+ßžÁ8Q¹¿¶|þQÓF’Ÿßƒõ›ªX¾f+ËVoâ·µ[úa™£ +Œ°\@·D‘CF3uÿJ-ü"|Ì@ À“O<Êm·ýìŒ ^âîC’HMÓ(Û´º†&~^¹·Ç¿×€žÝfåÌfpÊÑÓùbÑO|ÿËo{ô÷ÉïžÇ‘‡B]}uõÑѸ¬ jJ„\6nw È´Y­‘Ê ”¹+w(#)–ÐM¾Ï¤É8ìö¨ÏùráB.½à¢ðêuä4¾#4Ëîhª•Ìßd}Y›¶D{œÌ8x:„!5TS÷¼\.9ÿl.8û´°:%–o©jS2NV$¤½`Û‡ÚÒÌ&‰ÁÅ=X؃“OPVX]VÁ¯¿ofùÚͬ.݆ßð' ¯ä!ú¾ûJmM«V6T]]sæÌážÞÙdmWÇ y½ïmÍj±pÔ!ûqøASøaé/Ü¿~‡ìì,Ž=æp›<ÔÔ6Pߨ¤Gã>?Á`0"‘­m©ùmQ¬tËÎbóöú(ÌMIDîîbj%ò¦VU°X¬LÛw>þ¼9òY²l.wv[z«QùÞF«|þu<­2ãé펈[ì&‰œìlÆÉ”‰ãÙgÒF†$é‹wŠB›Zb #çÎxË·4X´§™M#öaäÀ>À¾e…µ·óÛÚ-¬\¿…uåx|A]–(èF^G3“úº:¶mÛ>NYÙ{ìIn¾qv’ßÔHT„ˆ¨}ï—^™McF Üó@<+“ãŽ>·ÛGUMu M4¹Ü–UËÅ$Â`,Idgeí*޼ëÓôc·§í¯gèEÜåsžx’c8 QÅÄÁžæ±Ûââǥˢö›>m?,k8Jní»[-ÆEľ/t¬ÈÁ1Ñl1ö±½³€D´LªÄ®h¢(2¸¸'ƒ‹{†}Ï·î¬a[e ÝÒoàŽ;o'hö"yöù—[?§?Ñ{·léi>ã`²³³©©m ¦¶^_Üt¹ñx|dYnÖŒ·X ¨}Å$B-7'A:¤Zi—ûaWFä‰À<69Ù¹Lž0!jŸu¥¥¼óÁû†,,2qeï‹ÆCßïŸ<·ÿ±Gžgn #¯­¢4o‘Ï…þ»%úœŽž±ÔÑž÷[ ôí™Ë>£qåù'1ÿñÚQöë|ÕúM,þy5µõMüÙ:ÞFʧŒÝî¤b{•UµÔÖ5ÒØèÂíñá÷û#|ǵ°ÿO»xÅ6ôƒPÍŽèÈÛ ä.¯§Å¨½Š•XPÈuW\÷žyUS¤h0Lvéè¹üÏ…Î92 —$ýñËoñÃ’Ÿ£ö2hÇqxR•d˜äH`NÖ-wK4N{ [´D#ufKUK&yÔ48jÆ¡Ü~˵­¼¿óI"ÉšÛããã…K¹ñÞyÜxï<^û`;ªêþDæ6´ô4'œ}*wÞz“&M º¶í;ª©ª©£¶®†Fn¿Ïv8 'ÿÄü¦­)V´6þêÝóô$¿¦fûƒ&yR‘ÇJ'Ž›ÀÁÀç_Þoã¦M¼öö›œzÂÉQþ !ÚyóX»ØÐãÝ ¢ñ[o¼A&ã´‘ )Œ½þÉ@¬K¾'Éý^ºâsR æ±çê{W_~ëË6òâ«o$|ï¤Q9zËßÄÏ«7ÒÐàêÒè|ý5 ûDûUÄ.îN‘yK .ŠpÿÜGãtã’$ñ×_“P>˜ ¬¬´D©¤‚KÔ*¶ïLÙuµY­´Ñ޼K¾d ¹NÓ¯¸ˆÏ<Âq§ŸOÐÈÕRØÍféN^ŸEU±˜MøýdÙ¨XcD“! oîP[ßÀ;Ÿ~Ë;Ÿ.¢¤o“FaÒ˜!ävËjsžhPëêjäð!ì7e"ª Çiðûº |øÅ·”–oÆåvQ]×ÄÓ/½É»Ÿ,äôãbØàþq¿s[W¡¿'Oýû.~âY|ò¹˜¤Ÿ¶Dâ´»˜D赂ž=Ù Gã»ÈÙ´­‚þÅ%Iwò<… É}$,&1 îv‰L§ø™YN3YN™ E«/¿‚E‹³jÍšðû›š8÷ÒKyÿ¿¯át¤'óØŽöG*VbA=»3jhFîGNvFÒA°%ïJ0]¨د„ýJX¶âw^}ë#~_W†¢ªl«¨bé/«ØgÂ.>{&ÝórZ%/K(0ûÒ :x ³o¹=BE¢µ Í)&jJŠùê‡ßv%oÃ, dÚM4xåý@Y¥Æ Æˆê’(`’¬f4›D÷,3=²,̾é>n¼æ\jk›+å”nØÈ¬ë®cþã#IbÒ(õ¤Yxl$¾¾l=—\}}ÜîÌ™'qÙ…Ä-p¶Ô‰Ú®²óŸÃ.Fr-æ7Wµ–÷éʨ<¸9ó$Ö®ßÀÜ'ç¥tF¨)~ò3-˜ *à÷x x=á¤-á4¬å¨póælÚ´‘w?ú”ìÌ úôÌ£W<œ~걙飆Çáp¤f¶GbiìèaC5tK]ɳ/¿É/+W£iðîÇ_ñÑ—ßrîÌã9gæq˜ÍæÏÊ=p*ï.x† ®º‘ å›[†òN“è–MVV&eåÛv ¯ؼMÿsÓ-òd7…ª‚"heðTªƒøƒ*ÎtþrÍÝüûŽ+š#ýÏ¿þš³¯º‘s.¼A0‰"6“„Ã,á´™H³™°™¥]ºÚ’^:Ä7nÚÈiç_Œ;¦tÖ~“'rß?nÓ{·Ä{«*ÜvóMx<îfšËáŒó7IUTzQ¢Oh{î¥ÜrÇ]qÅa332xyÞ“dfd†)•d)‰©’ykdWsű•œR äÉøÛDß?U”RKÀ½«$žTûuåZzôèINVVJë¶Ð#ãGçù¹÷°ì·UÌ}æ%~¿„/}Ï·?.å/gÍä²óOÇfµ¶û€~EÏrþ•׳qÓ–xÜîPßÒè_RÌöʼ>ÿ®rЕ+ÃKYt£j¨² é9N¨7Ʊg\K¯>ýxíÅGP”fžÞíjâữçè“ÎaÚ¡§èÉ&¯_ÀTð‚2}PT}Ú$³%UŒEH¶4­ùô| ^ª¼áÊë¢Q¸×l³$â´IädXÍBv†•ºª-<ôð,Yº4GV O>J¿â’¨id¬ww[*ñ„¥£ ŠÈtWË@ÿÍs¢Ïø_(n2IhŠÈæm;Xµn/¼þ!#‡ôcú¾ãÒ¿Ïzn£‡áÙ9w³â÷uÌyêy>[ø—\w+S'ãö¯¢¤¨o»9° þg>—]÷|õíâN“йøbÊÊ;&=ì$oc⨑ØÌ"¾ Úå7C$˜‡‹â  "šã¦K¯¾ýyfέ4Ô׆߯( oÿçY¾þôŽ:ñÆM™ÕlÂðùUAPEVdEC–ÝG#œ’¶«Œ<'£`—€¢î8¦—0›,&³IÀjÑPqûÔnÚÁ§ï½Ìß~e7j&íËåWÞHE“ÊU;°™MØ-f2œV2L’Ø*%ãˆ[ãŽS d»úóvÇÖž*J{jÓý^ÄJQ`ãæ Þó¸ùáçŒÝâG ÈÓÞÅêµ¥<üÔó|úÕ"9ù<.<ód®¼èœ(UN[ZFz:/<þ ÿšó8sŸz®Åh»E4G¯ Pا7 ZýGy³rek­/…7‚†b€¹€ªGƪ†jly½‡qýOóìÜ¿±aýê¨÷Ö×ÕðÒ3ÿæ³þ˱§\ÀÐQS X4üAP#T**²¬!+‚+‚èšh8EÞ!ó' ÑJŠ"˜$“(`6‰XLºtÒb‘Pe_~ð:_ö.Á` á päqg°ÏAdzn›—§ ·/ˆÇ+ã Èe•`PÅa•ÈtZÈN³‘a#+ÍJ·tÝ2ld§ÛÈɰᰙw; ÐþôÞþŸ¸6Bx j¦!CÔ¤¶›°ÔŸ'¸“5ë70çéçyrþ+¼ýÁ§Ürõe{øÁí:–(ŠÜ4ûr†ÄÕ·ÜŽÛëIŒØ­¤æõíƒ$I”mÚµy) lÚ¶MÈMK Gs¿Í`ZõU4PŒK§-‹Ën|˜w^žÃ¢/ß‹;ÖÎí[yêáÛ)î7ˆiËàáq¤g”E,5‚ŠŠ¢j(Іª©úB£±ÝUé¹ ‚dP)&IO•6*‹I¤rû~úõ¾úô]<žÄe÷'g^x}ú¤Á%ãöqyƒxý þ€L ¨êzªFƒ'HƒÛϦMÃÝcÜ4³Dn†MûÈgØÈɰ`o'+ÝÚÿì?[*úóÞØ;`2AUbɯ¿óËÊuøÁf@ï‚+‹Õƒ”ðØ¿ngý†ræ<5ŸÙ½“¯¿Í7_àþ%í:ÖQ‡Lÿâ"λâ6mÞš4òNF êß ¤!W ŒM-6½á·žX¾y[E¿PDžêÎ æš.kAÑTMDU4dEÃa9úô«3i:¾ù,¥kWÄocÙZ6–ý A(î7˜c¦0tÔ$ò Jt WT]Ç®êª-Ð#qIIÐ\SdÊÖýÂêå?±rùOÔÕV'ýNf³…ý8œý:Ñ’F}S·OÆã“ñdü• ¬"+Ƭ#$[j¥c Õ.*ª]ÑÙ|™|’ •f%;ÓN7Üs2ídgØÉɰÓÍøÛb–þDÞ?#ó6·Ýs6x‡N›B (³®l3k7l¢bçNëwësPRÄÜ{ncöÅç1÷é8òÿÛ;ïð¶ªó$yï!ÏØ‘gâL$”];ì&¬–Q ´ì–…Ò-PJ'e•RF€(Sì0²—³a;{8Êp⽇®Æýýq¯lÙ–µ,yå¼Ï£GÒÕ•tuuîç¼ç{Þó¾7üŒ¯¹šï¾Ø˜ï;†q|÷ñ»Üù¿eyñ¯î°iS§( W<ò’ÉhögTäµÄá°0ÃìùfÖŠþGe“•wŠYƒë¾×hºµéÐ a:Õ®!2LKT¸–È0 »61ß8—Š}žãê“’S)š4„$=±ñ‰ÄÄ&—H\|±ñ „„†ÓÞÖBKs=-õ477ÐÚÜ@KSÕdzsÛ–‹”\ö˜!!œþË8÷Â9è"âiWáÝÞ©È(f³M‘z¬2V5ëšRPÑî]Ʀ:Dz:mëë±CXV§Ïr Fr\IñQ*ì£HŽToQ$ÇGÖïÿäiÛñj®…|öÅ}’¤4+^¨Ä‘;OÌ;~ccS†Iþ/Èùæ“yœqê)}Å«¬8xˆ—^û/«Önà¡ûÁœË/ñik³Ùùós/ñòo;]cî¯ÁÏÞ{›“N8ü3~Œ,ËßH&ã¥Îòk°¤€]²,Ï:TyCv6Z¦Ë{ ¶g®èo>V°ÛÀf·)—V;’EKg˜†ŒÜ¹÷Ñ—ÙS¾–ùŸ¾Å¡ýVêëªY½â{7 Æï!¢V§ãÔ3ÎgæÅדL‡ÙJs‹™³ÎN+;’ºhÉæ8åÈpë‰ûœ”Í›\2-ífZÚ:9p´±ô»dxhH¸ë”ûä„hôñQ$ÆE )ç8mhµûÿ?ýf!õÍœ0i™i©A?æÜ±ÙüóéÇ8x¸’—Þx›?ýŠ'~ó“'x—½[§ÓòدÉ”‰E<ð»'èèìð°¿Ž§L¦âàQǵ¶ËŸãöä¥Ûöì¡ Ç@zB8• Ao]çdYÉìf»V‘l6 VH³•.iÉ*˜Á}žÂÞíëÙ¶¹˜m[×ÑØPçãwûqFCNþx&LšÎÔg—B§d£¾E¢Ól¥SRWœZlŠFoUôy‡”"÷+§ôÝæ]’ÙÍ ÏÅBÙ³¶g–¬TÖ4s¤¦©»“èåÝë´â"Ñ'D¡&9! }B´ýÄhu[ôq%åx“)r$þ&W+‡±øìÈÑÞ3Îçù×Þ#UŸÄY?˜ÎùgŸNNvfPÓØ¬LþþÄï8\y”¿9ÐÐP¸ó6⽋¹rÖEäåò³{àà¡þuó¢Â¢"#Ù¼mO¶È—l,-ãÊ ÎglRDÐAÞ5œ’AȱTVµlEÛ«ÍŽdÉa¡Z:C4„…j“7Üñ3øÑMª+÷³³l=Û¶®gÿžm.C}µè˜8&N9™¢É'SP4Ðð$«³d£¾YR"e$fÉŽdUnµÚ±ÚìØlÊPËî”è¨gb"o®Ù«Mý¾èÃ䌷ï³ÙíÔ6¶QÛÐêÔõ]ÒArB)‰Ñ$ÇG+Oˆ&9!†”Ähô 1ÄD…3Zl° bý÷Ø]/ Dge³Ù1wvb–,ìØ]Á¦Ò<ûï·)ÈËÅ3Ïä’óÎ&Ï´ß–•™Á3=Lå±*Þ˜÷†ì1̾ü’®ÜçîlRÑ8¾ûäüâW±bÍ:—ÌÉ'žÀª e=Øê³lç¯Wf˜½/91!ïÛ·ç²£²•Ö´«@FV¼sÇ$¤ú+t­Ó¢C$Q¢JÂBqÞJt‰#ÊÄbncßÎ-4Ô£¥IÑ¿›ëinRîÛÚZe.„¸øDâ•û¸Dbâ‰M$sl>™Ù…Xmr—‡-YìHV;’ņÙÉó¶XìXíJÈ£ÝnW;¡îv»—¹úËõÐâ)׃çï£ûó\½¿Çñôó}ýæ¦èþM}WÓ*û†‡…œÝv}B4úÄXô Ѥ$Å Oˆ!)>zØK9½¨mÛ±“NsgÿÉņ%¹»ïìv˜T4žˆˆH—‹¡ìv›KË”ÎÞPÇé³eÆäS]ÛȆ-ÛYWRÊš[©­kPêh*“GäqÉyg1ëü³É3wÒ±êV­ÙÀÄ¢B&Ž/ôº3zúÏñÊÜÿöiÛÏÿåÜ0ûjN¼ð6ªë÷K&c~ïÑ}°Aþ:pûG/¿€>%g¿­œÔ M7 ´j,«s%JC§NCˆBÕÇ¡:%)—:¨Ä€+ {”Øðîä]4éñ IDAT`³Y‘ÌDDF;¾Ptl›] S´ªÚ¶ÅjÇ¢Þ[­ÝÏ­jŠÕjÇj—»JHÙeåæ’Bºg•ˆž¹§‰NúXñ ¬®’þ¸oO»„º§ŽÇM’!¯Ï…£C×Br\ úÄhRcHNŒ!%1–”Äô ±¤$Å¢OŒ!,4dHAÞèÎÏ]í;œF®Fý¥QîÝiyû›Ü}¶Ý.³·ÂÄÚM¥¬/)cݦ­ÔÕ7vµ•ñù9Ì:ÿl.½àœ B½¦®žºúÆfeéÝb¢O¿ú†ÿ{ô÷tvš»®ÓUß}Ú0~8ç—oH&ムò€ÿ=ü‹Û¹æÒKxaÁÚ,ƒr§þ»ÇÒhd´êÅ­Õ¨qß:Ô:M7ܵZö(¯k5êJ5Ü#%€ca²úSîJºeSãωզ@Û1qiµËØmvl2ØmJå»L—7!«÷ìÑzVß"V\Å£ãÓ÷õì8\{÷îŽÍßÑDÿ2Çs!ËÄÅD’¨@]Ÿ«À>)}b,©Iqèc‰Ž˜»ºIò3p}ù­¾Â¼¿`oÅAÖm*eý¦­¬+ÙJum² ã r¹ô‚2ëü’ïÇR|oÌb±¸ÌyÞŸ•mßÁOïþ%‡TÃî’5¼ýñw<ú×7~,™Œï6ÈÓ£3O?•¿>òŸ•T±õ`sÐAÞ7-d÷cE—ë–[4ʺzu! g4hµŠ×®S_sÈ1ZMwþlúZoh9tlÙÉ+·«ùZl6›¬‚Û öv{·lbïò†å.Ã[xõö¶½†e¿ô@e¹ß‰Nïdš`Œ&\œ WÇëá÷E„…ì€|r) ±¤$Ç’’GJ’rKJˆAë'}]¥¾Ézïç]ø›¯§âàaÖ•(P_[²™£UµŒ/ÈaÖùçpÙ…ç êÞZ}C·ßÿ !:½ý:w<üwæ/^ !™ŒÇä*Ì·ÇÇÆNXøî[l25óÕæê!¹ã8•œ,Ý0Ð8yé]W3j4ª×N÷2cM×É‘Õ3Ôí5ËNˆ,Ë]•ÊvärxÓIQ¶wÁG¶û®i÷ïm»™WÞ½;)İúú}Þ{÷þÄ¿{ÎíÅ÷õÓѹ:÷:­†äøR’/>59ž”Ä8R“°'%)®_)g4EfzòȃñÙÞšép%ëJ¶°®d+k6l&&&ŠKÏ?‡K/<—‚\Ü/«ÍFiù6¦MÂäón¥¡©e‡d2Nì{þ‚Gî°%M--ö01VŸ9­¥ß'}ÿø™øz^¤]PWsklŽ\.ݱ¦Ç·ô„£¨m·Ü"wI%=#OzÂÀîOèàKHùÿ>/¾7qì¾jÿ;Èn.~Ùý¹–=‡mºz£Íf§º¾‰êú¦~:Ee[Blú¤8R“ãIUŸªWï“ãIIŠ'&*rÄÝÀú› 2=†¬L Y™\{å,WcmÉ^}ûÔ761eâx.»à\ òríÜ…ètœtÂT¶ï>@CS À’}Þ@Aܳ¡´Œ®Ì!2LG‡dLš{l ~8¼ñPw¸ë²]wO(xò–íöžžž½fÛO ºìB)!œJßþæ[öiŸ>_#{ÙéùßV¼ïèdï;:Õ[ÚhhncÏJÕIÐtý"‡ó†>)–ÔäR“âÑ'Ç“š¯%)aH£rF¢e¦§ò£K/êz^USËŽÝ{Ñ'%’˜˜@ˆ.x ÖŠ7–ØU–úmÒÈ ³7EGEN[ò¿w°Ø¡Ó¢.r±ËXírÏ{›úX´Øzm·w¿nµ«Ñê6«Í®ƒpб¨"ÎÛúj¨ýh¶..4ž&ËèCí6\Χ(`F¬¸›èį’ÞïñèˆXqõþLúúÓVzÎø¯ï‡vßÿç*WC|\4iÉ ª7Ÿ@ª>‘ÔäÒô‰¤ê•{_óo ¼Ùìv&žs3-m›%“ñ$—€$`I[{Ç´{÷1i\!¡Zàl“eº:«ÚYX`¯l³+‰©ÔÐ@e»òš¥ë±›Ýi¿®NæV²©û«÷V[×>‹­«c äˆCîåâz½4ß™Föåh}[Ò?àÑ„#3ßEöâ´Èd/¿XöáàúŠp7?d§¡±…†Æfvî;Øï$uTD¸ öDR“À§ë“TÐ'‘ªO$)!NäÊ ¢•îØGK[Ç€e•€xpcY9“Æé‰Ñh”2kŽÔƒÕôÛ©tuö^‚#UmÏÇÊâ![×""‹M]Êos¬ í~M²Úzn·Úºßc±u½.YìØl6Ÿ`à•<Ø’†“¾²×S>jáýt<žKzùÙÑ\|îÞ§½ÃLÅ¡£J²¦~F#!!ºn^ŸDºzŸ–’¤v ðCC„”ã­ÞPîÌÐ!ùJÀº±´,ä–ÙW‹ǹS Ñ¢&Š’aÑÚkôà蔎@é$GÇ`S{Y­Ê{•ÃÚÕy(I¿¬X­vÌkW‡b±Z•×ÔÏ—,V$«òºÕbóÓ{õ³ãðÔ…yšX4íÞ›,ÁŒRêkV«•ʪZŽ«éW6Óh !>Žô”DÒôIŠ7Ÿ’LzŠò8-5™4}’r\˜:ÑiU:´ —LÆ–0Ãì [¶ï<Íj³"Š ÏNE§þ7¡CÖ©8XÐ |GgÐ |‹µ{Da±X‘û8uf‹Uí$¬H’µ{_‹µ»±*ϯK‹ò‹³déêp'ágˆ¥ ËWÙLvÕmyMôÞß.ËÔ74QßÐÈöÝÝú~/ï>&:Š4}"i)ɤ¥$‘ž’¬?™´”dÒS“IŒ?~¤‹ÕÆú-;6H&cËpðÈ–tšÍ§•ïÚÍ´I‚%o¡1œ@*~G÷ka¡ºa‘ºVéT¬jÇ¡Þ;FêcGÑãfU·K݇Y²¨ï±tíg±X1[,HR÷c‹dE²Z0›­X¬$‹òØj³z7šðVÏññC#µ¶µÑÚÖÆÞ‡zœóDoh¨ŽT½÷ôÔdÒôÈë»îSõI„Œ)gsùn::Í‘U ò¥À£ë·líò`xuÁ†ÎPóhþõc !,4„h†6M®,+“æJ‡àè4º;I²tw’EéL$+f‹¤l—ÔNÃbQö•ºßo–$¥±X0KR÷gKNÏÍ’òºÅ‚ÕâÃH%€“¾‹•ÕU®<ÖÕ1ôŽèÑh 91Á ðz2ÒÔûT=i©zÒSSˆŠŒÖmoÅÚ­Îìx[ö¥¡õga†ÙaÀѱ™IŸ¾ú¯a "±MtÂ<›]–±HÝ€3ø%u„áØn–$$É‚ÅbQ:É1ÊÔŽÄé±d¡S’”Ï–,˜%s×{”Ï“0›•÷ÙlV¯S0;§qˆ‰"=5…´T=©)¤§èIOK!=UOFZ i©)$%ÄÙ9>ãê{©8x´%¿ŠÔ¿³1xá‡H&£f˜ýáÁÊ£w•îÜÅÔ¢ñâj&l„šV£!<<Œðð0b‰Òc±Ùí};øÕNÄÑ™˜-’²dQ;…î×Íf‰}LìØµ—NÉŒ$Y™Ä„x’âIJH 1Q}œ˜@rb ñAY TRº‹ŠƒG>tñ¡VæwÍ_²\€\˜0a1VKdD8‘á;:~ÓÇó—;330o >H2×{®,F²XD &L˜°Þœ”,|± `¯ÊÌárGÓÜÚʪ %ýî0ZôØ‘ø;„>.LØÐÚ•%45·Ô Èùë%Ëd‡áï&LØÐÚÇó—2[;|A.™Œ@ñê’M467‹M˜0aÂT«olfiñ&€b••ÃÖ#˜gµÚø~ù*ñÏ &L˜jŸ· ‹ÕF ½ñ`ü#À<é2ñÏ &L˜jª¬bV9¼A.™ŒÀWÛ÷ì£âÐañï &lÔ˜ìgú‚=‡Ùº}ÀW*#jÁJZð0çë%˸ï–»6§IÈѲR¬è&,0ÖÜÒÊѪ*ŽUÕp´º³ÙLRbI $%*‹†’“ýÊõòñ×ËœÙp È¿j¿]ºBÏÍ?Ô:ƒ£0”„Ælv;µuõ­ª¡ªº†£U5­®¦ªª†cÕ5TÕÔFNv‹ ™8¾žþ2ÒRòýv»ŒñÛµ*GÈ%“Ñf˜ý~UmÝ}KË9å„)¢5 &,àÖi6SU]ËÑêŽU×*U@«®áXU5ÕµuØlv@&:*’ñyL_ÈŒ“¦2a\!E…yDE/_úêå­ªx_2ƒ²Z2˜ù ç÷Í_¼L€\˜0a>[cS3G«k©ª©åXur_¥û˜ú¸©¹¥ßú°i)Lž0Ž¢qùL,,`bQ†¬1ƒ–ó\Vk¨ª“œ&gïËAùja†Ù;"#‹¾û‘á" "ë¡0a6›êÚŽÕÔRUSGUuÇjjº`}´º–êš:Ìf³ÍN…®û9 a\nÆå3a\ÇPT˜GB|Ü ÿ¶ªšZ濯¿_ÄŸÿ[²³²™zÁ­´w˜wJ&£ÏÅ5û¡;¯¼£Óü§+‹¹ò‚™¢ 6Ê­½£“ªšú.HW×Ô+^um=UÕµ«©£®¡»Í‘޶WaqGò^d÷äÄxŠ ó`æ3a\>ù9ÙCZlâXU5_/XÄWß.`Ãæ­Øí6fžu&ã øà‹%´w˜ƒêÈß~ÿ_ãgáW\p.š^á± o\ØÈ0Y–ihjQ!]Gum=U5õŠÜQSOU­âY·¶µ÷)Ñ;oxW±g7¦ÕhÈ5d)ÐVoE…y¤¥$‹óQy¬Š¯¿_Ä×ß-dã–­Êo”»» {︻]æåÿ~Jìø[#ä’Éx4Ì0ûMÓáÊ»¯á‚3OW„0aÃÌ,V+5µ«­Wí€tm=Õ*¸kj±X-N`vö »e¾=€Ç DGERTÄqyäRT˜Ëøü\"ÂÆÕy:\y”¯¿_Ì×ß-dsY9²lï9šPmڔɜþƒ|µh5ûL•oJ&ãÑ‘ì‘ü¸ýÍ?  &lp­µ­ƒêºªj¨ªk º¶ª°¨ª©£¡¹ÙnwïAË®A,»Â´ËšÏÊ£ÌôT&æRTCQA.Æå‘•‘6l‹.<\Éü ¼·”oï5±êúDÜsÇÏxñÍO,*ƒjA¹d2šÂ ³ßÛµ¿â§+7”pÖŒ“ÅÕ%LØM©^ßLu]#Uµ T×5P]«>®­W¶×ÔÓÑiv T{<î1qèY\ñâåî}ÂBC)ÌËf|~Žâmæ2¾ ‡¸˜èan<Ìü‹™¿`1[·ípêÔd§$Ïͬ f²hU ÛvU¼'™Œ¦rÕþ Ü<÷£V€\˜0Îd¡º¾‰êڪ뚺`]SרzÕÔÖ7vÅFwïûV¦÷ÄôpÂÞåÆWwNNŒ§(ß@Q¢Â\ŠòsÈ›‰.eÒ‚eûM™¿` _¿˜m;wû õ|á®Û~ŠV«å…¹F»Ê¾ Û €\2w‡fTºs×õJË™1uò€>o´L¬‰§ÇŸ5·¶wÁ¹F½WnMÔÔ5PUÛHSK›“íÒ=dž,é+uxp/C‹uZ-†ìŒ.hÏ7PTƒ>)aDþû*L|½` ó,aÇî==e%çsëê\»xž¢×sÝÕWP¼±œ’Ò]I&ãîQrÕž®›ûá'šS'<b´DuˆH”‘i6›ºÆjê›(×7QS×D•úØîNIrÑÑ{âÐIÃk™ÄÃûb¢#Ÿ;–ñc`ç(ÈÍ&<,tDÿO»÷U0áRæ¿„]ûö÷èý|>÷½ö¹ýæÆ s?q¼ðÌ`ý®A¹d2–…f¹~KÙ•å»ö0¥¨P\ýÂF„uš%jꛩ®o¦¦®I}ÜDMz_ßD}C öÞQ Î1Ѳì-|²/¯É®:k ™izÅÃÎËf\þXŠò ŒIO5ÿßÎ=ûx/\ÊÞýú—MÜ mÜLb¢£¹å†kÙT¾‡Uë˾”LƲQrÕþ\ùƇŸðÂ~+!lHM–¡©¥š†fjê7Å«v<¯®o¢µ­“>=ôhŸÄTŸ% ßÞ×ÿ„\xx9™ŒËËf|ÞXŠòÇR˜—MLTä¨ûo·ïÚË7‹–1ÁRö›ö‘M¼íè¼ÝéÆëfË sÿå̺A³ .Ñwea†Ùßk4š ?ü׳æF¼<"¶ O Æj³S×ÐBMC‹ç†fjZ¨®o¦¶¾…šúfj𑬶n0öˆ‰îzç äêþ.ò|ô«i»Á–½[LãÅ÷éã;7›ñùÙŒËË&'+­VËhµò{˜¿p)ß.\ÆCGú9—½Î½×ÿ]¯ýþ»ˆð0Ö,œOCS;çßð ²,/LÆ‹èa²DߥW.Ëò…s?4ò—GþO¸…Â|¶ö‰šÆÈ ­ÔªÀVž+·ÆæV”Åvý„ÛÉžWlèíʉóM ñ&‚D§Ó’›•θ¼1Ч«@;)!ö¸h eÛw1Ñr¾]¸ Ó‘£=:awRˆë×ä~w‘Ý|Ä/n½™ôÔžxöö§Á>ƒî‘«^ù ­FsÖ§¯½ˆaLf@¼¿¡ð<ƒáÅŽ–ßáŸb ÓÐÒAmC«zk¡¦Q}\ßBmc+ÕõÍttZp›§£_Úiy¸Œ[/Ë¥GîÒƒîÙ)È®<<·Þ¶+ݵ‡Á¸Ü,Æçe1.7‹Â¼,òÇfÂñb²,³uÛN¾]¼‚o­àpåQ¯F:Þÿ½ÿ;÷#3}r"k|EumgϹ»]^)™Œg ÐÃØ#ø“]–¿{ë£Ïxâ{ðcG‡|0šeÉb£®©ºÆ6Å‹nl¥®¡•š†6j[¨mh£®±«ÍæÆƒv“§Ã_}³—%{å…yübÙ‡ƒë5¡Ñh“–̸Ü1 °sÇ0>/‹ô”¤ãr&Ë2[Êw0Ñ ¾[¼‚ÊcÕôYÜäáäÊÖòÈîÜo7Ÿýà=wÍãÿx»}h¼ñ!óÈU¯|CHˆnúWsÿMzŠ^èÊ#x[k»™ÚÆvÎíÔ6¶)^tSµ­ÔÖ·ÑÜÖá•çäI ‘ûñ^]yÛý~_?+ûzlý{Û.½{+®¼ºˆðPò³3——IaŽìC&Q‘áǵ|&Ë2%[·ñí’•|·d%G«j\œKW£—ŽÌÜ8½¾/?×À²¯TÕ4pú•wc±Ú6J&ãŒÀ:wÃÛ#xÚjµ}>÷ÃOyôÞŸ#lø™Ý®HuM œë›Ú©U½êÚÆvê[©mjÇl¶x¸\ûA^IÇõÍþ_p¿XFöÂiö&òÄû÷¥$Å1.GvaN&ãrÇ™2¨¥‡{{+Ùºo¯àû¥«¨ª©Ãçy Ù·Øoïþj×îücþ’Ž—Þú‹ÕðôP»¡ù—À¦O¿[xÒœYP”Ÿ+Zò šÙbSÁÜNCs;uMÔ5©€nj§¾©†–u¸'/4Žìqåœën@àEíÀ= ½Ct:rƤR“¡;'“œLâ¢EÃëe6» ›ËùvÉ*,[EMm}ßÖà)ƒ¢×Ž€ì¿üÕË~0ý$.>ÿ\¶íªà½OlR™6$6dÒŠ*¯œ ¬žR4NóÎ?Ÿé3ŒÒ…ÛZÚÍÔ7wPßÜA]SõÍ*œ›ﺮ©¶ ï'uo¤<†“ù2ÑIaN†t s2)ÌÉ 7+Р´x¯ÛTÆ·‹W²pùêê|o+>ÉX¾ÉfÞÈ4ß|4§LâŠ[GIÙn8]2×Ð#@ZA2׆fÏ-Û¹ûöϾ_Ì.>ßg€þÄ Í6o/€†3-Ô5wÐÐÜA]K'õ*¤š;¨knÇbµ{ VO°ŸÃTž·ç÷ÉAXéèLÓÿûµ ™éI ° 2(ÈÉ -9^Ù›¶k³±¦¤”ï–³pÅjêš½ð¬½k+Gr.¿FöB­sýÊ•³.bÚÔÉüïóE””í˜ ˆ\õÊ“]ñq±É_¾þñq±Ç¥Gm¶X©o餡¹S¹oéT¼ê–NTﺩ­³‡gáµGÛOV<Ÿ§xòh}ôî}Ÿèt3Áåex_ßïsíÝG„…’76BC…c3(0¤‘oH'r˜:îfµÚX³q+ß--fáʵ466»l+^‡tz=щo“ÔÎû»ç‘ aÅüO‰‹‹ç̫©¥/™ŒuÁq,G€G®zåua†Ù45·¼þü›óøÃ¯îUYZÚ$Z;©o1ÓØÒIC« j'pwJ× ²ýôLa"ÏÑ··Ènœ%ôu¹§W–’G¡!‚±éÒ(4¤“™–$& ý4‹ÅÊjÞ‹V®£¹¹µŸ±ä«Î‡×|˜ç¹õÇ×aÈÎâÁ?þ›†¦€G‚q_l¸¬$˜ Üöù‚%§^}ÑyL0~dx6;m’"w´šil3+nVï[pÛìv/< /†”~Ä&ûÜÈ”MÏ{ ^?¥Þ»…†è0dê)›FÁØT éŒM#.fôåtgÌb¡xý¾_¶†Å+×ÑÜÚÞ5ÒqõÏË>¶9h¼=–”äd¸ûJJwñÁKÖªìrriÅIb™lŸ—«{ÿ¥¿¡Ói‡Töè0[H·J4µ™ÕÇ4¶J4¶* né°ô3Y6@iÂo)Ÿca½Í+â^¦é;¼õ$…x–…Ü›ìfôq1äg§:A; C¦žVP7@f–,¬Z¿…ï—®fÉê ´¶¶ûÝVÜO2p5®[é¥ïñömÇÝÛ^{þo\rÁL.¾ña¶íª°3$“qsP=R¤'‰es˜aö+»öWÜûþ—ßrãÕ—å{ì²LK‡•¦6‰Æ6©ë¾Q…uc«™ÆV Éjóœ§ÃÓäÌ`K²»\²÷ÎK<ÙƒÍEY™HAV ùcShMEŸ+Hë4K¬\·™ï—­eÙš´µuôú§îõz5òÀÈÌë÷õ’3g]0“Ë.:Ÿ7ÞŸï(áöJ°!>"=rÕ+vEGE¦}ùÆKè“ÝzϽ·[lvšÛ-4¶[hj³ÐÔÞ ë¦v mÍm첿Wòy Srn®2åõãYø”+Âùû<åŠp›…Ïݱù;špwlþ&ÂÃCÈ“B~¶ž‚±©äg§—•BDx¨ lPámfÅÚÍ|·l-Ë×”ÐÑÑ94m¥Ÿ¶índÖÿºo!¯ñ±q,Ÿÿ 2ZÎþÑ}´´uT¡Lp6Ð#Í#W½ò¦0Ãì‡ÚÚ;ÞùÇkoó—Gèz­Ýl£©Ý¢Ü:¬4·I4¶[hV·5¶I´›mîáåìEx"Ï¿h9rEx¤½šL’zÔƒ“c;%1†¼ìò³S(ÈÖ“ŸBfj°­´>Ú¬£Ó̲5›X°|-+Ön¡£³3hmÅ·E`®U÷>{xžçÉß>Hª>™»}Ž%ÕÄCƒñë‘;yæË³_ÿËÌ8q ¯-:@Eu{wOíK¸ ­«¯°ÏÀ“ŽëÖ»w§úëÝ{¡ÂÏ-gÑ笞óŠôþ¾–±é‰dëÉËR€Ÿ­'6:BÐt­­½“åk7ñý²u¬Ú°…ÎN³Ë¶ü|ì~¶c_òÇ÷‚êêxÏ9ó4Þ{í%Vm(ãÚ;ŸX!™Œ?4@{é¼ WO¶äf ùø•ÒÔaç…o÷#Yl“Bö»›œs×)àsße':½i‘d(6*‚¼¬dò³ôäe+÷c3’ÄäZk{‡êy¯£xC)f³ä}‡ì…sã›3ån¢ÿVã2°b1Ñ‘,ùòcRõzλþÿØ{àˆ8Q2· 7ËDƒɸ-Ì0ûùŠCG~ýŽñKn»îG\6-•O×õnæ•ôàbk@Rscr&ˆyE¼xŸ«‚ýEj42SbÉËÒ«àN&oL2úÄAÎa`-­í,]³‰…+Ö³zcfÉâC{¼„T¿0ý(&ñ»ɘŒt^zëSö8ðü`BÜÎéŸnxퟌ¹äœ39u\*;Ž´²ãHó ÿÁÞµ×`.Âñí ¾F¬ô¿¿ûh‚ˆ°rÇ$‘;&© Ø9c’ˆ;~ ŒknmcéêM,X¾ž5›¶a±XØŸÊÛNÁÓR{ÙïkPæÔé'qóu³9TYÍóo|pDeÒ°´a)­8I,s€§MžÀ›{’‹Ì³_省ÃâF Á³fëK­Ä G¬W»ÔÒ|}B4ycÉÍL"/K¹eêãÄä0µÆæVÞ+7°nó6¬ª,é_[ñòºñ1b¥w;öN þàþ[œdòße&7½~0–û±â•¬Ôaªÿç D§%+5^¶¸c£Â—åp…ȹd†9IDAT÷ââ®ØÈú­Û±YíýWTò©­È>2ý‹nòë:ê½G’­=|ß]äŒÍæÏÿzÏñyCñÑ"­8ì.`úÜ?›0}Ê$NŸ~"§$±no½p–ݪ)ýɼoä¾È-² Ëïaª‡÷ÅF…“›‘€!3‘¼LÜcÓâ{¬ªÐÞVߨÂââ­ÜȆÒ]ØœKåùÍ2ïò±ûš?^–½½¦|åpàœ¢™gŸÁÏú–­Ù¿Þþ `‡Ê amÃZZq’X&ëãã"?yåYââxîë=Ô5›òˆ_d_"V¸˜ d$E““™HNF¹‰äŽI 9>ª×0ÎÕÐλmÂÏêšY\¼‰…+7RR¾»ÍŽÛüñ^G 4b%Kóñ3bÅ·¥ùÈ™‘Æã{˜%+çßð u ÍÀ)’ÉX>d€Éá‡ýÀügÀÜ“§Ldîßžäp}'/»»lú˜ªàäé}¼á¡!ŒM‹#'3œôr20dÄ÷™€‰œg«©oRá]–m{°ÛíÁŸçñ¢°ƒYx$ˆÅ$BBBùìW™:y"×üâ¬Ý´à6Éd|sH=íÑ ‘;›d2¾f˜}NIÙö›þ=ïCîûé œ75•…[ Nî… J!þi÷Éq2â1¤'`H''#Œäh¯*- ˆ«ªm`ñêÍ,Zµ‰­Û§Å¯0S%€d) Ná‘@“øýC¿dÚÔÉüí•÷Ÿ7Ô÷ÅFZœØ]ÀŒ7Þ7MŸ:‘ ¦MeÏÑ*ªÚ¼oXœœ¸É^„‚N§%+%CZ†ôø®[lT˜€ñ(³c5õ,^½…E+7Qºk¿â5ö›¤Í›v>ÐÜÜÁIHåoþøuX®ßtÙ…çñ³Ÿ\ËŠu[yñM#ÀNF€.>"¥'‰e2°>)!>ò“ÿbØZ€p¸'ÆÁS—Ÿ)û»Á_çf NQ:¬~ÞwýÕ—síU—±jCϽñ1(ºø#µHiÅIb™¬Ó'%Dÿó,I ¼¶p/;7û’ä_È–N«!3)Ь”h²SbÉN‰!+%†Ø¨P¯åˆ`ËBV;p¸ŠE«·²dõVöš*½껓B‚;Ï3l ©˜Ä¤ ãø|Þë´´upÁõR]רü@2ˆ G³FÞ æ·oœ:m ¯ýõ˜-vžûj'5}AîsŽeÿèð²S¢ÉÒG“•C¶>šô¤(BC†¶®èpØ&L±ý‡Ž±xu)‹Wo¡âPU€ÓøWÄçµ îïxÑqø\yÇÝ5H':{Û˜Œ4¾x÷ RôÉ\Ï“¬Z_ÃL?.A®Â|pã­×^ɃwÜLuS'Ï}±“N‹ÕíÌ{ok4 ‹ KEVr4Y*¼cÂ;@ {¶½¦£,YSÊâÕ¥8Rå>ÞÀË_^á‘ÑRL".&†ÏÞy•qy<ýÂ;üû/@ÑÅo¶’Éhžìtaw“Þúè‹iúÄDn™s97ÏÌåõ{ú•ÃB4d&G“¥bLr4YÉQŒIŽ",T'€%¬_Ûs ’ÅkÊX²¦”ƒ•5ô[„ÛëE8˜Èëwû‰Rÿ&V“Êã9ð+=´çï åþʸ‚<^}÷+Ä73ÂâÅG5È%“±5Ì0û ø¯ý7?91žËÏ?›K§gñÕúÃ$D‡1&9ŠÌ¤HÜQ¤ÄE Ñ/S˜gÛ¹ÿK×–³xu)GªêpµË{ȸÈúç#X½ÎïîK¼ŠûëaTLB£Ñðϧã´'aüfO=ÿ_€}À%’ÉØ:Úè¨Vœ$–| 8$D—öòË™3¦Ñn¶"¤!­ød;öfÉÚ2–®)§²ºÞíðßë‰Gçý}‘&œ¥?çy›Kßߤp~~ß´{yäWwq÷ÏnbéêÍüô?c±Úª€3$“qß°ôñ¤‘÷‚ù4`ydDxì›’© ‡%ü†KÔ‰€xwûÞ¾÷0K×mcÉÚ2ŽÕ4z /¯ëFâá*<ÒãxÝtý[pŠIÜxíÕ<óدÙT¾‡kïüíæà‡’ɸyDxÚÇ+ÈU˜Ï¾Mˆ‹ {÷…?‘›=FxÏä.ÛtùžC,]»¥ë¶Q]×èÊ”‰N7‡/^¤›u 0B"VÎ?û ^á/T<Ê•?{”†¦I•S–ŒÉäx¹ ók€2RõÚ÷^ü3é)IÆäØe™²]Y¶~;ËÖm§¦¾ié_ý•B¯~¤ בY œûMÍí\~ëo9r¬Ö\/™Œ(íûx¹ ó{€ädóîóO#`|‚Ü.ËlÝibÙºí,_¿ƒÚÆ–J!C//¤QLÆfeðż× åªÛc×¾C÷J&ãË#­í wÃüÀc'M.â¿ýˆð0ããäv»Ì–&–®ÛÆŠ;©olõ&þJ!þÁË;ïÞݱ‰bÎß—•™ÁGs_"9)‰ëîz’ [w<-™ŒD~ ÷„ùkÀçž6Ÿ|N'`< An³ÙÙ¼ÃIJõ;X±qÍíA‡×À#V<,Í÷7bÅ/)d"V‚´4ß=†^‘Ô”dnûõßX¸b#Àë’Éøó‘Ê®ãmA'» HYºfãU¿ÿçøÓC÷ˆ[mv6m?À²õ;XY²‹æ–ö^0èᎸŽÉöX˜Û©²Œ_mð1ÍñXL¢Ÿsßÿ1Èä²ùàIKÑóÀ“/; þ9£dÁðÈ»½ò`pÖí×_̓?¿Qz„‚ÜbµQ²íË7ìdå¦Ý´´vøî!úÑP)„À.ÍFÅ$úý¤b¹cùàõIÑ'ñ§—Þåå·?X \(™Œ#ÐÂ#ïi’ÉØf˜}°â>›’Ãm×_…°‘a« å,ß°‹âÍ{hmëìëaû´¼Û»Ú>{Ó^— PŽm¹ÿñ†§¥ùÞ}¹ìÃoê5ú @ºþ¼{‡/Èåýמ'9)‘ÿ÷sÄË€+F:Ä…GîÞ3ÏV¹·ßp5Þq£ð´‡©G.Y¬l(?À² ;Y½e/ííf/³ðágÔC0#VÜMtâÕDÞ F¬ ò¤¯Çxtï/*Ìã¯=ORB¼³'^œ)™Œ•£Ðb²Ó#Ì¿¦üèâ™<õàèt:èar³de}YË7îbíÖ}´uHø›²Ôgû¯Þ2ï1ß•i{i>AŒXñmiþ¤¢BÞýÏ?‰‰æ¡§ÿÇ_.qx∠{óàKà¬sO›Î?ÿ ‘aƒÝP“ô¶Á€¸Y²²®t?Ë7îfMé~:;-øWÄ7x¯,ÍwÞ_“` +S'ŒcÞ+ÏÎ/yÖ1±¹R•SG•d"@îÌ#€÷«Nš\ÄžùmECÂóÈ;ÌÖ•V°|ãnÖ•U`6[úÀÀSþx¿aàSÎ¥QL"KóO>a2o¿ôWìv™›õgGœøçÀ £Q ÷æ:ààŽ‚œlæþý÷¤é“´ƒòöN‰µ[+XQ²‡ å0KV·0ði¨ï‹‡8àÅ4X Ðâ㬘ÄåË?ž|„†ÆVn¸÷)ÇŠÍ×»$“Ñ6ù$@î;Ðÿ<–‘ªgîßOÞX‘h+ oëPོd¶™°X¬îaàS>@îµÂðË+âöüx#Óc4áîØ¿4ÿ¾;næ;Ê>S%7ÜóGŽÕÂ^±)@\˜ß¼˜«}õ/râÄBr?@ÞÚnfÍÖ VlÚËÆí±Zl‡Þ}aâ{ÊÒàG¬ci>^E¬n4ÁE¬ø7š á¯ÿš«/½Må{¸éþ?ÑÐÔbSÈæ×ïFF„‡½ôÔCœuÊ4r/¬¥ÍÌjÞ›wÂjµ¹‡/ðrÞH"VFP1 _&}’±¿˜Db|,¯>ûGfL›ÂÒÕ›¹ãá¿ÓÞa–€GZCò¡ùLàó]ìŸs/W\pv@à7\¢Nñæ¶NŠ·T°jÓ>6ï<‚ÕfÃ÷É2|X…éoÄJ?Þ²Çô¯¢˜ÄP“țś/<ƒ!{ ÆoVðOþ ‹ÕÖ\5’ò‰ =̧ßj4š´ßÜu ·^{¹ðƦVÞ+7ícëîJl6;‹zp _'ò¼®,3à¥ùÁ”&D1 €S§ŸÀ+{‚ø¸X^}÷+žzþ¿È²\…RbóñÄ!òÀÀ<øÈ¿ýú+ùõ/nB«Õw ohé`õ– VlÚOÙÞ£ØmvRˆ§¡·'Xo¢s ³(&ÌIß9W\Ì3¿ûZ­Žg^šç¨v¿¸h$ÔØ ¾0O¾¦vòž}üWèF=Èë›Û)Þr€U[*(ß{Ù.û$…x?ôöuâÐwï~h—æ÷…Wï}݃õø(&¡Ójyðî[¹ó–ë©©oäžGŸgÕú2€Íª'^u<òG€<°0A‰5¿1%)gÿ§ž4eÔ¼®I…÷æ ¶UT!Ûe¶Üº?ø±â ¼|¹(&1¤Å$ÒRõ<ÿô#œ2m*«6”qï£Ï;ê§¾‹#Þz¼²G€<8@¿ xI«ÕDÞsó5Üs˵ètš òÚÆ6Š·`Õ–ìV×ÊêR«KMì9XëG‚—ðò–ò–½ë@“pÝÑ F1‰œ¬L^zæwL_ÀŠu[¹÷±¨­orH)wJ&c› ŒùH-wÞ8›ûv!:í°ù±ºŠK²f«‰½Gêü\Lã£â‹·=ܖ棼"ÞJ!¾z÷ž¤`Oú^uÉLžzø>Â#ÂyöÕyñM£RȇÌ'E3N˜È O<@ªštk(@~¤¦™5e‡(ÞzG뽂×@—[»¹¿2ÍhŠXÅ$ŸÎSßËճΧª¦ž»~÷k7mwH)×H&c¹ ‰ùpZ^nJJˆãÙÇÉY§œ8h ?\ÝÌšòC¬)=ˆéXcÓ“ô}À:R–æ÷…—'í^“èû}ÆåñâÓ¿#wì–­ÙÂ}¿@]C3À<”¨!¥+ ÿ ø—F£‰üÅWóÀm×­òÐÁª&Ö–bué!U7ùxqB€É4¢˜„7Ç6<‹I„…„p×­×ñ‹›®E£Õð÷W>à_o†,ËÀ½’Éø¦ †ùp–Z>&LŸ:<~?Ù©¸éXk·bMÙ!ŽÔ´ø¯1`¹µ×ð ÐÒüà“ÂÒ|Å$Ôí§<•§~s9Ù™ª¬æ¾Ç_dý–;P¢R„”"@>r¤–Ȉpî¹e·_¡¡!>ƒüÀÑFÖl;ÂÚ²C­kq3¼õ>KÃ4bE“vÅ$byä¾ÛùѬó°X¬üçÝ/yþOèè4 )E€|Ä}ð<0&ß0†'ÿïN;yŠGï¯l`í¶#¬Ûv„ªúV/¥ _¥o¼Pßc¾¶4?°Þ½(&èÑ„»c“¹ú’óøíý·“˪ eüî/¯³÷À€#À¯$“ñAò‘ óàÀ¯€ËÏ?“Gïÿ)©N‹ˆzûº±À,¦ ~ÄJ`eQLb$“È›ÉSßÍ©'M¥ª¶'Ÿ{›Ï¿[`U™'çeöä£ è“€gÇDGòÀí7póœKÐiµ|»vï/Ú†Õf÷˜WdXðeâѫф‡ŽC“ðâ¿üb!¡:~qãlî¼åZt:o}ø-å}ZÚ:VwK&ã6qõ F ßüH›X˜ËS¿¾ƒ“&§º¡÷mcí¶#Þ·@€_+#¨˜DïN¡‹b§MŸÊãüœüœlJJwñÈ_^gÛ® €*à!Édœ'®vòÑóxàià.F£»ö²™üæî›HŒe÷¡zæ}WÊžCõ&Ž×°öÒ|D1‰Á,&€¥ùŽm“Æçñà7sÆŒihjáéçñÁKeÙ†2Áÿ˜d26‰«\€üxú4Un951>–ßÜu#×^~†µÛóþ‚rŽ5´ ° ð€"ŠI@ "H†[1 CV&üüÇ\tÎé¼ÿÅbþôâ»44µ¬Ue”Í⪠?^a®nþ$O›4ާþ9“ÆåbµÙùní>ŒËvÐÖaô‰ÎÁXÅ$†¬˜„›N(-%‰{n½ŽÙ³f¢Ó騶«‚Gþü%e»ê€G€¹’É(!@.,Ì0;Y…ùm:­Vsý•pÏ-?"3MOk‡„qé¾_·‹ÕÁÒ|QL‚Å£nÄJ\\ ?ÿÉÕÜ8ûRÂÃB9r¬–—Þú”÷>]ˆÍn—¹À#’ÉX'®^ra}~*ð2pRHˆŽ«/þ!wßt5¹c3ijëäëâÝ|¿v/–aU @“Kó#ÃùùšK¹íÇWÅ~S%/½ýŸ~³‹Õ° ¸G2׊«U€\˜g¹å à1`ºV«aÖÌÓ¹÷§³™P` ½ÓÂwköðõêÝ4µt2°(QLB“‰ŒŒ`Î¥3¹ã'W£OJ`Ç/¼iäëE«Qp6¢LÐ)dra¾Cý"àQà,FÃygœÌ½·ÎaÚ¤B,V‹6ìç‹;¨ih!+ø˜DP–æ»ëГÈLKáÆÙ—0ûÒ™ÄFG±©|/Ìý„E+KŸ±ø“d2~/®FraúÙ*Ð/8cÆî»u§Ÿ<›]fåæ|ºl;‡ª½”&‚YL"1͈b~{÷}óÇŸ8i·\s)çu :­–âå¼0÷Gåz€*ÀWˆ«O€\Xà>Cú€æä)ã¹ïÖÙÌ<ãdd6l?Ä—+w²m_•(&舕AZš¬ˆVËEçœÊ-sf1¹(€E«Jxa®‘’Ò]Ž7}©|ƒ¸ÚÈ…èS€ß×ÚIãr¹÷§?bÖÌÓÐj5TÖ4³`Ý^–lØGSkGÿ0Å$ø-ð 4ßÉ]7]ÍåœATd86›õÛñýÚÝlÞyY¶£bÁXšïY»?^ŠILŸËìKÎአÏ""<œö3_.(æåÿ~Æ>S%€xø³d2îW“¹°¡ºø ð3 <*2œYçžÆœËÎáô“'£Õj¨nheáÚ=,Z·—šÆV†.bE“V1 Ø4fͲ \ Ü \„‡„è˜yúI̹ì.8ódÂÃC±ÚìlÙu„â-XSz€Æ–QLb“ˆŒç´“&1k橜ýƒ  E’,,\YÂÇó—±´x“cõ¥ø xøN2-â*  ]PO@‰t¹ 8ÐÄÇÅpå…gpÍ¥?ää©ã»þïíû«(Þ\AñÖý«maØ“ðIc9Å$´(*4pÚI“8í¤Iœ8±€%¥»øxþr¾XPLSs«ãKŠUéä#Édl­]€\€üø€z® ô›€€Ü±\}Ñ™œ}ê L›<ŽPGêØ²ëe{*)ÛSÙÒ(ŠIvi~zj2§4ÓNšÄ)'N >6‹ÕÆæòݬX»•Ͼ_EÅÁ.‰{¯ ïy’ÉX!Zµ¹ùñ õÓT _$DF„sʉEœ9c §Ï˜ÌÔ ùè´Zd«W ¾»’Ò=G¨mhõ^~É4®õæ‘^L"*"‚é'Œã´“&rê´‰Ƥ`³Û)ݱÕÊYµ¡Œõ[v:*ÑÔªð^#Z¯¹¹°Þ@ÎÎf3€€ØèHN=ygLŸÌ™3¦0¡ÐÐÕÐŽÖ4Q¶Gzé®ÃTÖ4yË㩘DDx¹™åe3>/› ÙŒËÍF§Ó"Ë2;ö˜Xµ¡Œâå¬-Ùæ¨} Jã À`)°R2%ÑZÈÈ…y öXì3ÕÛ € 1>–Ó§Oâtì…¹Y]ïkë0sàHGêØ¸†ŠÃµT©¥¹­ã¸(&ɸÜ,ÆçgQ”—MQ~6†1©hµÚ®s´§â0«6”±zc9«7nsTÛe¥åVÜKTp·ˆÖ(@.@.,P`OÎqûÇk©É œ>Cú´I…äŽÍ "<¬Çûë[Ù¯B½âp ûÕpèXfˈ+&¡ÓjHIŠ'=%‘´ä²2ôŒÏËb|^©I=~w§Y¢âàQ6oÛ£À{C9Õu=æ#w8{™d2Ö‹Ö&L€\Ø`=ÝI†™ ä97Â1ézò ™äçŒ!ßIa ù9™d¤&÷h¤­ífê[¨ih¥¶¾…ÚÆj”[z_ߨ‚Í=€ô¸ qѤêãI×'’–OZJ‚òX¯Ü''Å¡uú ²,s´ºŽ}*Ùk:Â>S%û(÷GŽÕö¾†ö;{©d2­I˜¹°ávƒ ö©Àxõ–èœ÷‹Œ'ϩ½ôy†Lb¢"]~¶]–ihj£¹µ³Å†$Yè”,H+fÉ‚Y²"©÷fÇv³BBDX(áa¡êã0ÂÃBˆW·……ªn%&:‚°Ð—ÇÑÚÞÁ~Se¨÷ª÷›*'$f»Ô[© n±4^˜¹°÷p”ðÆñ.n‰½÷OKI¢ÀIVf*±Ñ‘ÄFGILT1Ñ‘ÄDEªÏ#ÕçDGGáu×e™¶ŽNÚÚ:hm蘆­ƒÖöõy‡ú\y½¥­–¶WV³×TIUKÕ£Á Öη½’Éh­@˜¹°Ñ ù”œ0½Ÿ‡-ãK£ŽŒè}‡í ç¶ŽNÚ´U•DzÃz§d2ÖˆS˜¹0a= ¤±ýÜbܼÖûÐâå­ÕÍkÇÄrwaÃä„ &L˜0a„ &L˜0a„ &L˜0a„ &L˜0a„ &L˜0a„ &L˜0a„ &L˜0aÂËþµ*:ÛP¯MIEND®B`‚OpenLP-2.4/resources/images/system_servicemanager.png0000644000175000017500000000116212657640340022135 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ïIDAT8¥“1kSQÇ'/‰¦ (Á©¡é{EÈäbmˆAg‡B!C,´±K—n~— @òú2'‰8(.‚±„ŠúB0ORÛÜwCC0mšÅÿéžû»çüù_QUþ§âókµÚ}kkK.5©êD€9 ìû¾v»Ý)ù¾¯@yÜ#ªz Ëf³‡®ëšÁ` ³äº®Éf³‡@NUÏWH$/K¥R8H¥RkívÛi6›3×j·ÛN¡PXV€¯q€R©´†a9N÷EÄÉd2looÏœ‹ˆ8€31±ÕjUEäÕÒÒÒ3c ÇÇÇÔëõ©‹›››¼í&x”¿1ÛD ¼öÒH]tÑÅ·Œé i†‡‚˜)F|(ô¹‹ˆë>"]tÑEßj‡ n檨%"€a$_Ì””Ò]&ûè2.ºèâ¨É¦ÛÿÃn§¹Ï0“™õ}ãsŒ¶\µñ.%—ª°ZX‚/ì¿}úSœõ÷sJQò®W¼…Â1‡É]' ݯ‹.º8 öÂ@Ú<Þ@RçÉR — Qøf-"¨U8ñÔâ¹dç—øÐÅçs饳í䓸ô•W²²cs;ÆÌÏͱ´°ˆŸ䊧\Á#øA€»cë2.ºè¢‹#'QUœs˜Y.+™!Ó„DrƒÜרOÅ¥_¸–·Ÿû^®úÐE¬~u;>”x–æ80ÒóAè Öï=¡?°žçÆk>ƒ¨çî2Òe ]tÑÅzYÈ̽"˜¨âL@æó£öPqîU—rÖ?¿ƒÏ}òjö};=ç™s¨À\9‡ÆHá£áŸ„1%\Ï“4µ*.»wßÊÉ2Çô¶@ X]ÒE]tqg™’•I:_æ< Ü´²›_õ >vÑE\vÞì»uR%6o"†‘RBÍãÔM˜S’*ÎŒ²(QSœ÷hmhL8ïðâÀ'*ò;Ïþ]^òÜ¿&˜ÜeÊX€tÑEßõ0µf“.Íú?S‚…f6 ±¦µ-±y¶Ë÷Sc’Ÿi@e‘ †ãæý۹⺸ðâsá¹aßÎ]øqͶ…cps=ªª†¨*Ô–¦oQA1” ˆ!^И!0‰5Á—hR¼xD.ƒÅ>_½í&&{* ñù4DP5œ;zѤ+auÑEß]ðÀ¦SJ6 Ĕ˜a â Hލ€ŒÁç RJ$ßÇPFÔì¼}/7îü ç¼ÿ_øè¹a×Mß`!̳´°‰ž8¶Hbiž¨†®®ï=*Ô2aØ|Ó7Q@ˆ“HY–T1á$ ±5Éç‘”µ‘0ðs|âªËø‰?2?_óyšÙQ;•Õe ]tÑÅÿuÈ8ìkG] ¥n2‡X( š(pÔu/c­Jâ€% ‡|úk7rÎ;ßÅe¾€ÑŽ=7¿…b~5…˜æˆ)QW5Eħ¯Ÿ’áœÃ¡X³È@ÛxLDpΡª„¨ªŠ^QÒë•T“HŒs‚xGoÎóÀÓÈûßqö:ù°ÉªŽÖ–H ]tÑÅw@lï&Ò”¡“1b x"FÍ„ä n×1•wìïç¦/ßÄ;ßü6.üàyÔ;wsÒÒ©ôæ‘§ ’Æ,¸ªH%Š:°”¨c¤ì•¨¨æR•x pš‡}c™m.Mù)÷/¤ª4¤"Y„fkE¤@“R'£®*LÃÕUó,,,°÷À _xÉù”×íâûOÚÊžùš4Nø5O¤f¬+¡Ž1g´‚Ë¥¤à½*C’¢’ð.L\¾rÎ!Í¢^¥˜¨!ÿ¥”²è‰Y/i›ýM&’qÆe$tŽàóÄÕd2!”ªÊõWÜÀ޽·qÂÖѤHóz]ÒE]ÜÕò f {Ó?Š™¢IIÎa)HnKçÇǘˆ±F8+šÝ»1æ{„¦%$‘®`û {yîo¾˜/~ý:&Ç`oq;(”UŸHÕ¬ZB4Å[ÊE¢¦_¡Á!šÒ8H*ˆˆWRšà¦{fª‰à=uŒ$Ô㜠Nóh± Îå×l'ª”Ùž†á}˜6úE„ÕÉ2¯{ÕkøÍ'ü:àѦ¯ÒH]tq” šþ…­ÔJžn«÷ù±—ˆ¤U3¦š¨ëŠ” x—€D—d€¢ì‚GŠæõš?œeЛ×Ì"*Bpž¾ì"^ñ7¯ã îæ@o£pTH)OFEUĪéñ§¤¾9—IXÄáé5ÌŽ5H®9Q&$«BÔ1RXq¹·!âYbv™4ñ3×Li&´šR˜ïyNܶ•뮺â=®Ë@ºè¢‹#>™°¼ù6‹˜™6 bj8™›¡fLG@Óªeµœi·ÔTÎ{ÄÉa@Ôþ0 T-¤UÊmÒ 3bÀ€7üþ;yÓÞÍd!±3|dcÛGÏ<)x¨Þ9³Iã&A‘Üû SÄ»,›Ø6ÎUïýT+«Í,œF–doK]m¶Ò>V5+Ö3úEþ[uû5e´6¢×+YX\˜–vf_ßòŠÙ.Ó~F[¯šö5fÌ™¾#§LžøÊœצŒV'\xæ5üÙÿÕqCVÜjIÀ\"M<Á•D«QÀ\ Ö£ifÑ‚` m¤Mš‘à”²ò®âš”ZBb5-ÓyïIÉ(Ë2÷oT‰±¦ì÷Ù`?o~ë›øåÇ?ž’ò;s]:颋.þý«¨À´4“kòë„¶HÛ|m„Í„dŠ©b6«‰•¡Ñ| %Ë‹^Ñ£è—øÕØ†¯p¬qùü×XÞyå³ßÆ;Ï~/î”{u?j+ÑêšÂ˜:DâÆ‰ª™,Ä,o[ÎÉ ÍmSÐñëïA@pÓ,Ì{?@PN>žÏ^ý™õâTJåè’@ºèâΜudG¤vù™îÆD}æ\ÄT3–! M.*¥š¡_.q¸BpÎçRÔL}Ê,?‚·:%‚:¤n½zÏýõ?åó;nb´TQ…!ÑVP*ДÕ}5 RO{­D‰ÌM³Kað!—%²ÚÌÂoiCó¼Ø !3ØFo0G·í¼•oÜüuN9ö”if7›ùéáº/j]ÜYcýŸ™¢–P‰hëPa‘¤u“lÄ$Y› ÖC†q„[UÆâØ1€/Ø~¾²ºÁÒ6ú [‘Þ_|(çq>OY!í?ލI!Ã(Ì1)†Ô1râi'ò™zùßp_÷ÊK,ºcè¥9¼”D3jgsýdÛ…]D'9›˜‘D1a]EïBPk¦×rfÒf.)s¸iÓ&^ûÚ×âÆz;ýu´ìÛ» ¤‹.¾KÉÄô‡FL°Y‘ò”4Œævk@dº\šašImU5Æ L\¢Ò„–Ž•ñ_ؽO\{5ø—³ùÒ§®e°’¸á3_àÞ'œHŠqà%L…H.ö!DÂ#¥†kR3Wà “ *ô¼çÅïç¯| ûÙÏj±‘ ©¨•Ëý!U¢3‚óÓžHÛ(oÎ =Í4—5ŒyµFߪ=”„÷a½¯P”%8ObÂÂÜ"_¾ñKÄ:NU}[@餋.ºø×׺™¯˜Ð6 cC^óMÎ!˜Ž«P/<¢BLF´š'˜¬‰2 °–*nÙ¿—O^y%ï}û;ùÒÕ×ÃJÍÖ­[黀T ç¶•½üÝÎäwÎøUzÎãêˆsK¢‘ÜRª1sMˆð'¿òœÿÑ YÞº—ÕzõkŒÕp%,­öX-j¤É"8ô÷Ù,cãã³—4®†!Ôu6¡ö/ïcϽôéçþ4C€tÑEß:åh"0kv´(´= ÕH'8 6Ÿ0ñÔãš5g¬hÄÏB¯ÏW—wsñEãýÿün®½ì |tlÞ¼a`ŽªiöJS¢‰1áú}ƱbXùÇ·¾‰ßxôÏ2ç{xÀjE wÔpÜêzLQôH)3ÍMA¥fåæ OüñßbßÁ}ì.w±âwÐcžº·†2˜†õ¬fè³Z- Zþj燖ÃfA¦ª&¼äeÅÓžô´)AÓuMô.ºèâŽãŽ|ù÷¤ÕÌ+h'uLŒ ¥ŠQ="„+ùâ7oæò+>Åyø_¸úÂH„IFPHN)*%”=Æ …÷¤I…ó~Z~qµbeÀ÷{ÈÞýœ§ð†ý]–.WÃ{9*¤Æs ÎH©%ûiž_k+á‚·_Ê_þþKY±šý[¾J•"IÇÓ ´¶±>%"²N*l!Æ8¸š.¢SY“uÙö¢(¦÷U©bë [¹ñº›c²FëÈ¿î€tÑņE^þGØÔCà0ÂuYÿ“&–=),QÇìiBUGp_ôÙߟ°šÆœÉ…|èÜó¸á¢K¨WÆôéÄ“,á’€’6] QøÞs¸õªkÙÛ nƒ^ ”ºŽvÅ’f¤4€ZÉ lÀt#äv± Îe '$™+JvØË–SŽço^ñ<ùQ?‡6žà.øÆ°©¥îaå–‚†Øz†` Wfù–^ö¯ç¼³Ïayë{ûðZS¥!NÄ8$ÓDÖ­…¤5EQ`©‘€÷Íøn+"Ùì¼÷Ó~ÌÁ8áÒO]ÂÜë~¨5ü£C:颋oPÌ$—K´Ê¦CíŠa¹éRE2Ã’á œzDæ©êšIU1·0Ïk_þ&^væÛ‘þA ;=G'’Bѧª†˜Æfú'ë2…F§ÊÌðÎ5b xÕ@ÀZ¢šs´ŽÜ³¼#+šƒ°4?Ï­{oçÁúq^öÒ¿ãA÷¼o¶‚5Åiö-7wô4|1k$QòØBÀóõO~¿~Æ?qÍg.eùÄ!eê!¢s˜WC$M“\°$(5Îy4Öyõaš9çòTôÔ¸*ƒ?¥ãôGŸÎ?¿ñã,tDÂ.º8: Xw >8#Ò­Ôy¤Ž#Ôj,õ›ÒCT‹l¦”j‚B/æç‘àÚŠx¸îC×óg¿ÿ÷|eïWoÚO‡x—@))j:ã„·‘!Ý4Y )§=3dÀ¶–?;1¼gŒR8¯-=·ßv¿ûâ?ãÅÏú#6÷çÕÆâÕEòFÒˆ“¢É 3‡s¹ÿt1ÿôüàÖ´‹ñ¦½ìI)S‰Ä êmZÆò® iSœ”3Oœßð¾´ö)­Pcö^7vሾˆëÆx»èâˆX4rÆÀd£!Å!ž¶iUoͪ¬F¬#Fn„—qŽó¨í`~UÎQ ¼Ï%/#—´átx<‰š %ïxÉÙüõK_˨¿‹ª¿º®p.€eIŒ¶d¥M™L¦’ãÈ£¥â Òºy>Çlú4•"DJ.{W8GÏ2÷¤XLì;°—7¿ýíüÚÏÿ 9ƒ2™i³Ï6Ú2ÌÒ(™–¶,b´ªº>gz>âG}^ð”—ñ}˜zî ˽} ãouSª´,‡â47Â-_{Ši 3—7ªûà)¼±2ñÎ÷ÅO?ä'á(a¢wÒÅQŒYŠZuÕ”e<ˆy‘tnJ SŒÄZ+Ø”}Œ:VúÔ#¾ÇhTQ²,©ª _ýÁïó·œkšYiu[¾æ¦g>îùô¥ŸgÿÜ­¬–Ëhªð¦Dßc¤ÐSËbI³÷„KÄ×%I`lGRRZ¿_Íð¡7£’b!{iN„~1`÷p?Çßëî¼ë=ïæ§Þ— ¢†y¡|ŠÙ8JÀÔŽYŽ6Ün(l&]È &²BÜ^òÛþÿùÒ7naßÂmŒå!UŒý~¼:„Mš›áÎÀB³ÉhÅ ç[¿ð.€ s ÂCúüí-ç9¨ÛHw­"Ô†‚4Þ™s]ç² $`*DÙƒ™ÇÔÕ0RSšH)¡uM7 kÞõJœse x7]7îpRçß»°Åšè@G?÷#O`×ÞÝÔ 5˶‰+H=¢òÓ™Ò:B$жzN ð³ëšúÓ¯¸jëå‡s¶Áû" 1&æ—ؾw§ýäé|øŸÏf¡ઊ¢(šÙõ†ý·{¾wj€™Ö~öc7ó»OøcªbÈíö%Ö∪TBµÖ(Ì Æ çÞÍg 1çj®{¯×çÄOäû¾ÿdÎ8ãq<ñ OýÎËßwÒEÿÙÐCV„„Š!æA´±qµ*g!()Ž~Žñœô±j¶NsÎBó†Ã9Ö™ãfx—3ˆY³¡oA5&¡è5Ré5|ñò[xò¯ý6C[e9ìfR)Ç}"enÛ„È(7¯g”^U!_[zóÞUš²ˆB¦OçF= Ü+™8Å÷KV®ð_û.øÇ·â ’¦œm¥„ywÔâ’H”xÞ(ïxé¼ð…/Å?bMvSÅý€åFz 1&¼ʲ¤-[¶°°°ÀÜÜóó æ{ ×pöYç`æ¡ìJX]tqçŠú° $%– òÔ” 1jÌ">ö˜L"e1ÏpXÓï{æææpÞ7OkˆvyÃð3*¬m)èPvò· Æ¡OŒ>äJ"„7¿ôl^òÂ?ånw?†Ûê=LŠ u¬ Ñ“œNõ™D„8b™‘®SµTmÝõœŸyÜÑqƒC|LuGr¼ Œ‡k¼à¬7ðôGý2ÄHp¾áBØ7êû­ÄKÉáö›Æ<õŒçñÙo~†ª¿dC ¢  6ož§×/1çéõúxŸß‹~o@Šk<ãéOç§ú©ñ®×H]|WJ ÓLë}Ñ4@[ñZ1ÔÕ÷tÊà ¦FkRÔÜ 1Ã*Å;OU×8qôæ3HHSêjÆbg+Ô­mÓú)<$ÕNúd f’´Äpw¹‰"âÙsë2¯ø«3yÇkÏ¢jäÀäÄD ŠU¼÷L4eÞ‡X.i96´ss£©Œûº¬x@-{ §Á‡|¾¦xS¥( "FôXÙµ—xØòú7½‘žrï,:(™ë,á¼ÛPâºs•¨l𣿙9A§ïŸ5ªù:UÞÕ¦@çMP§x¹Ïc¹ùàM³­¤×÷”a¼gПà ˆKô D]C,+cóæÃÕ½|èÃGµ)â:H]ü_+FiÚ°¯+?X³à j‚P (QÖp6AM2Û×V;L…º®Á ( R•EîúƒA^(wJ)Ù~J– ¾rý-¼ð·^Äõ_º’x¬±ßv€–™gbÅc¤uÿnÉr&­â®kdƒd‡:œoÔ~-!¦¢€íÒÐf5m³Ü»öìæWÿ¿§ð²¿ø[NšßÌ£P#‘!Ü9åQŒõ6YÓJbmÆt›²TíÔ 3yí埿ž_ro~Ó[¹w±ñ#ÊÒá\UGÏ÷p>÷<ªz ’gË1‹ìØuÿóOþ'§?꧉)ƒSº1Þ.ºø»7îICQQpŠjHŸÊFD'òB§‚&A$\Aá‹…ð!ЈmÐ7ºsf]:µŒÍòâ–ðpüË>Ì?¼è•ܲ<„¥]¬ênH}Ä O#MîšÙÕu‰61k2<ÎCŒ‰§®ñÀ0’“üÔ¦4Ö–Ê‚‡ÆÄ~©xÞß¼„ç?å鄦¿ÒÐ1“ÍЛ8Ë ÅðâÀØup_ß¹“âR>ö‰+øÆ¿J1sââóE' 6Æ9ecÃû‚¹Þ£µš2ÿCçF<úѧóÌg>T.¸©yW×DïX$fsz5Ý!‚‘Ò˜ÔxTÇ©cÙV™ï”ÃļÛÌdR17?‡/šÑJɧås8¾eïâÎ Šs¾iÐzòFYó¢/ðâg½Ž·¿ýÝTî ,îg\ERÊAj)š¶¥?@5æ’U žÞ!æ1IM/%”Úú6]ܺùy;(P«²àUÊP°²6d¼Xòþs>ÈcîZ.åÜY÷(Ê”“ƒäìâ¶ýûøüž¼÷ò ùÈ»Îb¸}7ÇXÁ©'žBÙëA2VWW ÊB©øà z¤QM˜$ú¡×¡,,.yÆ£ƒ¼çÝçb„i¿Ê¬Æ¹¢Ë@ºèb&A8$‹˜%ïÁÔË»q™ÎücýÓ×H3ŸŸIzJR%ÆØ”´&$sÔê©öXb_ÚΗ\Ìñr,¿ó‹Oj«(B#aùu›6Èúq˜»sjÑÆXM-RE|ÎÉ’!^Àj Gr5ì-xêÏáS׊ñ–=Œ'cŒ<–›4ÎdV€m®þ ßÈ f u>O¡¡©ÓÇ2¢sg0J‘y_4V —ع{7Çv.{ï9Üsëñ0»´ˆ´ÒaßJòßÌiJÍ~Òòõ‘`1CçkiLb;ɄK¿x-¼è£|ðoÛ˽¶Ï ÇKÌgÀ;²/$‘äjz¾Ÿ‡14e3)ñ ½Ây4lÚ´‰áh;ö¼ÿÉi?òS˜d ÷”j„„óý@ºèâpÉËwÙf3 1CE1s¨E¼Ë­Mo5&* ƒhãlåjFÇD«©Œ½†¼ïýá¬÷›¯ú"ÄÄ–ÅMP'vß²‹‰‰wø)œÇœ#šåqÕ¤ˆw‡ø6 ù×M“S¬vìøÜíüì#žLUîg2+£˜¨ë¸HÙSÆ£úe¤Y166(šÈSeI‰ÈÔßBDã’Ìz·e­J3¥,KRJ¬î;À#žódÎùÛ×Ìág]îµæàÛn³©4`dšÉ“fùïÅ„9—3ÎÜùa(°=®röG?Â{ßw6·^ÿytmÂ}îqOEFC Škkkxï§à­¦„^™Õ¾d¸¶ÞüB0Z©Yô07ßc¥t,ö73Œ{œt,/yé+©c¤á_Ü뤋»6zH njÅ:›´Mpµ3c­QzC4â2¬ ø‚á°ÂÌ—zŒ åö•ƒ|èãáü‹>ÊãõXþò÷ŸÇñ²ˆ[U´–”ªª˜Ÿ›gw˜påÕ×r¿-' •¢…kúŠ´Âv$ËàKŽ!*¨¤¼Û6¦Ä»^wô¬¿gñøÄ¸ø kã¼ïSÇ5’­áýR&Î,^¾ÈB¨[oËÓj`ˆéL"!S»×6#±CF{&ŒçËû÷ó¼Wþ/^ü”gR›‹ /îÛ>ßH"X‡ˆ4?7%ºfÐ"WÞ~+¯?ë\xþy¬Þ²ƒÊy¶6áÅ1ß xïY]É€:²ñtqÏ^½é„Z¯×C œÏ’4©ÊÙÝB¿ÏÊdœefÔÌo"J¤ŽzNÝz<·}í&^ýêW³õ^÷&áGéW¿.þÓà‘½)êüõµ°AJÛëo3C-{b¨*ÉÆ$Œ:EêT³¶ÒìøÈ¥çqÞûÎãÆO]ÏêíûYTzÂüüfÆÉP瘘R®ñE 6$¸-Å"Û×öñ_~,ç¾öm#s!$/ˆˆ]¤·˜p¾Ÿ¬á IDAT‘{T#y(­`¸wÄß=ÿ-œyæ[ÙtBÍP¿A”„Ø<ѪüÜVcËå Á̰¤ ~ 9Û˜ªÁLd–¹žeåuƒÉ’Žž9¬ðŒëŠÁ¦ÞsÎû9ý>ÿ-«áŠQ|»†Jf ÉÇÓd0kÀÇn¼–·œýnn½êÖ–‡èÚ„¥Þ<…|êéSà ÆAIÓq,¡´¬ ffyzL bŒÓó+‹ÁL”ÑdÌüÂãÕeBÑ£žTôCT%9†yû²i®Ï3^ü|îqÿÿJ4G˜)çvÒÅQŒë3ñ¿Üë¿úSþðÔ$[Kxéc&SîD+F˜ RŠÄj‚¥šn•Þ¦mìNWÜpW\p1—!»núå(ѧ¤,爦T:A\¢GA¬c3m¥hÃÇhw#Î9V–W !ËÅEA™3rçŸøÚ\|Í5|êêë¸ñs×3¹mÛ𜼸„“ªÂE.Q* 4%RŒ„šÑeA¤˜-ÛkäÜ€2(ý~ÉʤÂRMáýÞ€ÕÑ„Ð+¨ã„Mó Ȩ†:2Ø=áî›·qÿþ08ý¡œúˆ²¸esCT”©˺{åÑQ6í¤‹Ã*˳[£ÜÊÐÆg¢%“¥õÉ)šš¸XV®UEœG¬Ê»NqhT¢FÖdȨ_q0Vìܻ̕×~ž‹Ï»€O^xãÝû™—‚M‹‹ˆ)F’¶ ’à}Þ›­×¶1Û˜ÝAS7™à¼b–ð®Ä™à%;oÞÎÃ~î1¼þu¯ç>ǟĤ©Ó×bG‰3Üoòû‰Öˆëñ¢çüÿûÌ7WYëMØWWa„7¨€hÊaë™hÞTlð%Áò‚¬ëKÇ,Ù0¥ï­‹Ÿˆ£ÖšÞ`€óŽå•RP^õÖ·ó«?óó,5oÀ7'C®ûêW¸ä3×rù¥—ñåO^Í–Ú8nÓ<½…>)G¥2‡ëõðÕ˜¨Ù>6”)1V¹w#YÊe}tRRƒU]Š"Ÿ]4\ ¡0´®‰”ôææÒò˜b-²¤6máÔ{Þ“Óú ð3eî¸-M1;8f#/wT‰KvÒÅ¿§’¾OLÖŬÙÑe†²›î¢ê4F-ÇFU†FÅi#5‚ãæ]˼ù½çð¦³^Çž=ßd›ö˜+<æ Æ ƒº¦6Å|ÎZDm*Ò`i†‰ž¿‘ëG<-¯è ÐRx,µ_¹)œ€baŽ"9¶ãë<÷¯ÿ‚ç=çÙ2˜Ã’ç¨ÝUV׎"8šjoàW~æÜøÕ©Ã5÷M”HB ôÐTMºX÷AQŠ¢ ©L¥Ü3z¬_yノo²U²y’`1áÔSRíXå„ï»§?ùñ|ð£gô•›9ÅwâV˜w¬ÅE”Œ‹†1/58©œÊÙ—EA•2w¦â ‹ M9j3Y•ÆaQóã\¿Ä4R:ÅkÅ|½ˆ¬TôkÇýðœþ3ä‡~òá°mæ ©‘´™KäÞši£»&€tqô$³Åw5£µ³ží”T+)•M‰bSFÊ™Ad„WO°€$õE ”â–2mÏÎüúãŸÊ×nº™4?b ¥x\t¬ÊSÁë:[¨š5»GH9tàƒæ”ë æPZbE>N­¨JaS,¨bä˜Á"»dÂRè±}û­¼þ_ÞÓs½à¦¾ÙÓ:ü^Ã#÷àš¦å¤Z'®äKŸ¾ß8ã~I±Â/X›çÈ”6•ˆÏ13­× ‰¬÷CDH±Âû¢éUeðw¥§žTxƒ¹þz“¶Ñ?vƒ¨ãB`XOÀ"½Ï}0G'´»‘‚„2‰c¶ø9*KLœ¡Þ±ÍõXݹ‡bÿˆ{ÌËCþPöøÇrÂý¿¹ã¶áC32lJt¹?S´Hj²Þkëð£»bßCemfkÙLÎP…ªš0™ŒpeÎ4,¤è‘䦢}ƒÁ ëÿ¡ñÆhð9’C{ÿJF°þ£®¡( ‘ô¸}û>þüy/ç=g½›­Çö˘:ŽHÔ¨höèžf3œƒÙט”i¶Ûz¼5FJ™§ Šà§H¿ß'UBá<ƒP°gm…Sïyw^{ækyÄ,eäÃÃUp _A*`À'Ï¿'žñdRÿ“°Œ¦õ‘]ï=Þ;æçç)Ë’ùù9Šb.÷ÀÚ,£ª+BÈež^¯l¦ À¹€“€+Êì?‚® ?Æ„‡Á{ALÑ”ò(lÊ¥T = ïðV“g¼s/KkÊ}Ž;™Ó}:xÄC8ñ¾÷bóÝÏ yÀÃ;j”²QJh'¦ÚŒ#¥4õ´ï2@Ž¢¬âзGi­nDjrÕÖçL†ë%£¨1 ª#ÖJ]UóÃCQâ}z½!¸¶ÆT|Î4ÏÕO[ðþ[Å·Ê>ÚãÉ–²`æòÔNÊ;Ù¯}a;Ïzúó¸êÚ+YØ FÙ9Ð×ôkÔªh][¡n¸ íŽ8[¸¶úMÍø):OlûBÎå^ XÖÊBH’EC¥H/°{ïn~æq?Ç+^ùJî}Â)4²K4ºŒ`m9-×¼ï, ÎЛI!!à$[å¶æ[Ò¨´çå¬Ñu ¨Ë’æ}êJ~þôG±eó<þB`nnŽÁ\Irç½Gð„"ïåë©ÉæV¨!$£ìõQÍåD3!Ÿ IyLn:Q£–§ÃZa†—`S‰6ôcÚZý¬w8Ìx {ŸgúƒgçžÝü½€?yÖ°¥?ÈÚG¾9þ)üÎ ©qbdŠmùôc‚r9./íÓöoaŒñ¥í7óñÏ]ÃyçœËUýqÇ>NÚzK[6#A![·Š1›ë)„"d Ç¦žì.s¿,)VàZ%‚Ë€ƒÏ=®ØH$†jBA Jæؤ"xO®q\ Ì”‡<üáüÐéãA{4,ö²4{{’®[ø;¹KGîAL›“Ø´tbF#ÍûíTQ2H:FcEª^Ôu}»}ÀI3¡×+)z.UEf‹\x¾7õýlh¤Sßè$B!Âß¿è-¼æ•oÂÏ­Q±ÌZ}€rÐ<ãÑŸÇRYvw‡, í9Î’ sS}5}h&¥®™ëG({%kuÍÁÑwÿ!ÎøÑ‡£u"™õœ9 4þÙßãÅ˨VªÙ]kS¦ñâ„0ŠvìÛÇ5_þÿð†3¹þƒàŽ9ù¤“¹ûq›±~ï) ‚+ (©ëš²,³:rS½6¦®"EQL'ïhÞX¥¬¶,Š È‚ò!Q‰QÇš>\ M*ú#Xš'V?øÃ?ÄÞøXþË£ŽÌ—Íyå (I†¶ !-YÐuÒÈ]´a²Nœ3Íù¶!5Ö®)ņ囦ÍÌhkÙUmbˆöè‡\Þ-Já¡Ñà1ѦìFqèà{´øµW«¡ÚHˆÛ*¤žöÄçrþ…!lFvQâ¢LõR4ÄÙI RÈiFЪz’ÉmôߨOÁÑOµ6¢,{¹Ø/±•K÷:™K.ú8Û6m¢HJ—-qíÎÑx­-3ëM3w¡–Ìeˆ±âã!¸æÎ|Õ«¹ùâ«+N<õî·iKKKÔufp«E,Æœ©-ôˆIh–7¯ª ’Wʲ@ÕQÇ:ƒ‡©Ê #≓ˆªåÒ¨æé:ï³ý°¸‚±(sæpG¸å1wÂN8üïç~z“"ó@Ü$!…£á­f©3\4j¯®1k²‹@ŽŠ¾Åaeãöm¸Au’'[š;³Ý(ùKK;ÎêPM¨U@$ŽqD¡Ç œÇ1™å–ãšçµæM-Y®ÕLÊžàß“åÕЀdÄãÁGR y'©‰Ý·®òó?ûD¾ùÍ/3¿äXÑåÜ`49Ä¥\¢Óf/œì‘©&×lI05,÷[@ñÞS›â­ qŽ !÷`–æÙ{ómüÒÓŸÌÿî™÷a PM{¡­oOûè°Çj¼4óY™ÞÅ¡„ÐõÇGàÆ;xÍÙgñ¾w¼—W}Ž%ßcÛ¶­œpìfRßC2æ%0¶1OUUôû}úÚ#G#¥óôƒ§ŠUV ðž#Å\I]gM[_ªº¦Š\B4£Ž Ñ\: ’‹h0¶ 6WÖXÙ{»-{ø°ó Où îõ°’æŒ0½~M¯M”J#Áµ=‹ÐL×*†WÉ=)’­OÎuÑÈ Ó œ%N§À A)‘ÇAHªøj• J RAU­fBßhܤþ(£å5Š0àØODú2•þ˜î¦7àR«˜û¯,h߯uCp;d±Íë_“ X‰‡W\üY~ãמB9jP§!HI•ªœ½(×#±–1­Ö4à7–°fù Þ{\cÛN‹Ñîh§}—ß?ï3ÎyÇÞµþüåÿ‹?yÒS±¨ÔÁ& ÜzYëÛê_¤FFF²X$’k”dÅ\uíBi8rS89!+À‡oþ o|Ç?sÃyŸ`ù‹ß`Ó 0× lZX¤×ëÑïg¼ò§0Z¹}ßuY”0ežªé›o˜U®Çx²†éYA­†ó|A¬ïqCqÔ:" _%¶®(õ-¸û=îÁCñpõ+¿À¶ûÞƒ²ßÇÊ<}å۾̬Ò3ë t]0ršøµÊG±ha G}Ʊ^–Y7Rj]Ô³½œIžHb•GWc2®W‰N©æ R9à–Ûwqý%WñOø]êIEм«žY¤6L<%#ˆÖÌë·ÙR¬Œw¿íBþŸ§=“OÞF²ƒ¬éÞÃ$Ž›5§YˆÌp$¹óë%ªYùöZ…i?¤‘ë(†þˆsî°lÁ(}–¤w·m|äÂóùÑãN¾N– ùöÎ7µÀ&L'†DmÝ-?!°xßuWðÎ÷¼‹/»Šám» &gB8f‘0ß§0¥t¹ŒÙëõ2O\V@HV€k ”e‰jE9×#N²s$É(]¶V5æ _† ÎÉá5`êP¯ˆܸ"ݾÊÂÞ §lÞÄãŸøKÜû'NãØû߇¥­Ç­ñUJ 4|ÃËŒ]trt7,S°M€Ÿ5#„2U3M)æÛœR§D#U&)Ri¢V#mZ ºš=£=\ö‰Opþ9ðÙ+®aß®eX‹üÀýîÇYïx÷=õ Á*7 9Z¿|í®Òât4WœcxÀxÉ _Ík^ýfŽ9vBdÂ8­4BÁ@TµÑèJëMó¼å‹Loƒ™Ì¤‘ã>4ÌfðÁHNH^X’‚ÛöîæÇî1¼õ-oå”ùcþC£½­²­›Ý4ïï—Æ8÷Ê˹ââ˹ê’ËXþúvŠÕ w;þx´ô8çr†Q ¾®)0ÊAõº¬ªŠ¢(ðš³q’¬Qø€©'„>f‘qšP¸,zX†ì5& N ‰!ôY*æÐƒcÖö.³4¬¸×÷ÝüèpÚO>’“þ˰x·c›©/ÃiÞ<©÷Ùà+úÆ2@íN5ÉÖE ß±¾ÅF°X7Ptã—¿a€«¦©Š©©’,5œ¥¦&Ö‘d‰u¡øÅy¶¯à«;náÂs/àSœ¯öËÄ5[糬¹…ˆ9nÛ·›'ýöoóºW½:7ïè¸Û:ò×êûßÓy\9"Γ 7Ú”=߸i'Ï~Òs¹üš Ùv·Mì[Ù‹" Ý5òÚBLqC&1›…äœ%å̰‘Í0 SpiYôíû*"¡’Cœà ,x¼Ë¥­Ëûø«3_Éó~ãÿ=¤·qHð•ešLKðçÚ=·ñ‰Ï^ÏE]ÀÇÎ;ŸÕ¯ï`©Ž?îX—À+KKK¬9ð ZGœeo3**…ÏòæÈÆ,Ê'E¼'j.aù h 8)šÉ¸1¡ð€’ê q&}ÄüpÂxÏ6MJŽ?ùô°sÚCÄ=ýÁ”K=š¹Úæ½,ëfYsj"¬—M¦M£Ž¼×ÈQ"ùj¬›*åŒÂ5YE"Ñ4KSQSD‘>£LGø¤¡ÔQË‘­Å¡¥gXÀöƒ{øÈåWqÍy—píy—0ºuÇs<¾t¨å‰%m4¬|³ ¡Èʲ£8á ozO8ãqÚ.| ÒéZòžIÖ˜:‚ó¼u ÜØ>no¿àÜOñ¬gþ.ßNجԣ!j«¨ Ôê&HòhP¢«)S8¬Ü×f)åqSiÆrµ‘ÒhÚ2Ó‘añn*å‘¥ÃùÖ†CV·Îñî·¼_þñŸ"ýöÞþ1îûü9ûGXÐ#.»ìEY²¸²B`aT°é"”sUAÓl¥e,°4H¡0fQ¥›H´aÓÔêUi £l±LÂR-©ë1B—„ÆQE½5¦ª‹Ó‚•Ñ2/¿é:Þú–׳÷M¯d´c9ïò@÷KeoïÛÓ+û;Šo»ã‹ä"Õ/"-z÷QŸ"]ÀcAx¬›Ð8…wP*ð5S1eƒÀ¦H<žÀ}GŽò¹’Ïð·YêjÑh„ŠÆZ Šˆï ”Úl³¤ºRÒØšÁhRræì*×Þp=ï}ïû¹åªkÀ:D 9tIlñ<8æÛéæÃ)#‚ÿî_œŸùÙÿáhŠTê¸Nð\ɼhYt¤¿iÿÝN(2ï¬r$Ò<í·'Nlÿ´ß§”ÂiÁtuÃßu¿ó›àª=—åÄ?Ør ›çÖøÐŸþ1úȇøò§¿Gžgeïn––X^X 4é=/ÊA¦a§Â)¥D©¼x& T z—öÂè$ ¢$Ä)}ìÊ¿Û4PhI#§ˆZRšà<Óh)ÎYv— È)wÜô îþ·òŠ·½ ½\¤#XPz6é†~þÅÛÅòyóäž^‘0«³dïÜ¡zˆ0Ž-¸)¡#Y` Ϻ²8eñ…äÈéçùìïßÃÇ~ã}<óG°8ØÍŽÁˆq] 6ùÿÈB¼ÇxAÀÍŠV¦ß 1fg a¥X 9úÜ3¼íoç}ï~‹ºèõmáø¶…b ôQ ŸŠÿ;ÿŒø#¬ì±Lìj¶3É´]!3Ó4vTÞ¶€t–”øàÓ}ÛE:3úo[@Zõ»ÌðU[¬•RxÊGªá§á~ú¿å®»_Çûß÷>¾þ©/¢ÏNÙ³k‘åÝ»0ưhJÊ•Ý) XH¦a ¬§,*„U™ã=F%ŸÖ‘àìÌm ds’c‚Z£Í“²¤Ó S¤bJ SvÉä™M†cÇkn¾»ÿóáÖ7¿Šti´D¨cZô …Îd…Ö±ø¢þâbù…¬z ðv¹uù°öDáðÞâ]Ò™„† µo˜..±6]çïû2ïyÏoòÈ}¸9ay¸ÈÈ ”lºg$øÀ‚*œkr')©ÒÓÒ6 §…Î’U”DJvóÞ£U”/§N?Ï?ú™ÿ…ú¿þD” ^ê‹?ûâ)’ÇRŠ9JÝúúYøþ7½G¿q?f¡À«)µŸ$«èçXY}[“„ÍÏXóÊj²ážL ¸¬!i§¶ tßã#X”1DŒ¨…ÕÒUY¡•ÐH‚’h Q#„B‡4){Ü{Ÿ`H!(ôÓªJÍ@–(™Ü¬›bsMT:y†yW#£G+Í@›DDð‚é3§Xšn¾êrÞöŽâöù>Âò…¢‚‚t¿ö±iB¢sÑm'®‹·‹ä¥x|tðR!|g°—v’6ü(·J]¨ NâÂ%S6„ ‘¨-¾®1Aâ(¡Q¾aÓ¥°éÀë‚f¡äÇñëïùM¾þ¾O±¹µErù‘H"‹ÑBÖ:T9y¯KÓk-'bÛåBfÆ™Ñ5Ó#€ÈñË©¸‰:u“Æ„”(¡9·±Î{?ð~þÖ[ÞŠÕÚ¡÷œGÉK~)Õ| ßKjÉ)‚Ä9T=M]Éìþ¯>ÅþÍe2Ýb4”L›5¼jl"ˆ°„WS¢OaôaÎ>>½þìè¹R |hºuŒ‰fcì¦?£Ó"¾*+† #ªAÅpi‰"ÊBJb´Ý®Å¨Ä€RÊP;Њ¡*˜Ž×)’€ÀG6efGi¼s™L b„RÆÒ"jO©568dÈ-K¹Y³0‰ÜvãÍÜñ_ü /Õ —PUÙ½r"¦â+²=Ëy´N’³%ñâ2“¼x»X@þÜ{‹¶PtÔ²·ÌmXT¹'M}$™í‰œßÜþÚµHpaBSdÔÖ"4M D‰hVË-ž-t¦Op‘þ:»»¾¢HRv‡¤žùµ?»¨JÆõ”}û÷óÑ|„뮾&ñ—\¢Ã*‘1|‘¨£êÛxGž`Ÿø¾Âßû{!Ö)±Mù4 IDAT#›c‹4’É9*¥3\( Ĺ}È<½´¿pŸŸP¤”hìÌ1 C£!ƒá S³#BÚ]ä,ñ¢4@HÞ^^£T*ìJå4É u3¦¬ ªbéÖ$ xåÀœ”„QÅÀEü¹Mxö,ûBÉ-·¾‚ïþ·qè®[Ù{h?r`:ï¨þçâíâí;lIPOš<2J%Q8BL{„$AH‰Òc:ä ¶; |TÎM7"à½Ã»·P²VžY;ËC_ÿ¿÷™/ðÕO~†És§‘ÓÀh´Œö‚ µ茧wKY¡;«+t)ˆ©ïþºûÞtH‰ÌY‰s»Œ@* 1úc‘OçŽ7 12›ÂÙµs¼ýïàßÿÛ_fey)Yw²[kZëoã2süõ4ø·ÿçoñ ?÷OYÚزçðZ3™Ngv’!žç›•Ä¡óâá!)Š‚ápHQªª¤(Êg œfCèây•R]¡iš)ÆTx'(ÊŠédB©x‡E]”¢˜‚M ‚óŽÆ9FÅ5u¨Ócª-ÏM7ÝÀÝo{3‡_y3û¯»=¨:¨ÖwŸž\Ûßõ¢}ùÅÛwN™EµC¶~ðiºˆŠ!dh F…õI´ç­EŠ)%q_HY!2 –©†µh‘BñÇÇåÁ?~€?úÜïñÈׯYc( ‹!Á9|tX—‡ Ž ³Ð;t$¡…EbD)IÈØ{‹›+¥¶Ùk„Œ'+?Ë3ï@;‰Œ] ÙÅж¯Oê#¨²ÄëëüãòsüìOýIÁ’(eéà”òÛöøð™M%ˆ„˜ý§¾qœŸùÉÌþà3„jL"2ÃO"Ìýî<™ê®hTUÉ`0`4å@b6µ{%%.'< )4$tgŸbŒÜ°$abIã¶PÒ U™?IͽK“TtD6b­fAh®½ô0WÝq+w~ïë¹ò/‡2[æøÁ´ê KÙËEi¡§ow–ÞÅÛwTég9ôÇë²Êþ™}žÄzuÊõŽ!h|°é1àmï"z¬µø(ñ ( ·<1ixòéÇøì'?Æç?õ ¦GN³PŒ‚OÌmrNAˆH"ÆI‚Ê9!Ðr´Û¢¢²ù^›t––ྃ0’×QŸ@œEUq—„èsúÛl9›&“¦›A¦ì ­u¦i’s¤ÓóЦLa:FÓ8‹‹‘w½û]¼ãm?€ =MÞËøl!ÿ’((1Ù¹´à’ÈŠ¼C~}cŠ•‡Sf£Ð<òàÓ¼öõoÃûã™›^»€ÀhƒV’’}~QTŒF#ƒ!UU¢‹mI‰´6ÙÈQB­R¦Ä£ó~Dá¼CJÑÉýÖ£(•D ÅÔFP(¢GÔctÔ+8T-qõ ×ñê7¼Ž;ÞòbÕÚ™ƒ“ ]-pYo!Bζϻ6!fûšd­.‹·—~Ù®¦îw€éÿµ†w,D‰ˆ%Ó¸Át:ÁÈtPop>b]ƒ4 |M0v0US¼q<…ä¹gžãÓŸú4Ÿÿ˜>òÊ9¤b 4Þ¥ ÍG²OƒOç{ŒDŸ–Ï©yOÝÿ…"^û_kÕÌó¹êÏ|-B>Üç`¯o)+ÄÌF¥enµî´-̵º±ÉW^Á?ô!®¿ö:J l„2ì3ÄK¢~ ¼¤{*"‰½$…çR¡J0Mð‘g7×ùê3GùÍ÷üßüλƒáV“^«,ÂÔƒ%”J1·ÃÁ€……!¦HE\«$BtÁvδF+´6©²H¢A!ÓcŠ@ð©©0FeÖ_ÀyG-RÊ£˜zTY %Ô³Ù°kê•%WÞpo}ç;¸éîï‚‘Èûßrq‡qñvq¡c'e³æn Ñ'VMp¸8%xp¼'"18BÞ](ahBdì=^Öš1~Tqlí4ûÈGøôG?Ì䛫4Kƒ!…,˜¸iêêƒC–’ØÄtI… ³e·h¡¦ g¸ì1Ô4ê/^û/kÂÐÛ4¼Oy/Xº¿Ë~n\šZè"ÍQF»ïõ9ÿ»ƒôyÉÛ¼B— Ïx–7þÍïãù0Ë(¨=¢x eBGp"áúd‡Z/@Ö‘P$àµsÜûì1þåGÞÃg?øaxø TQ±°°€ 5•õ(m¨ª4eh‘ªÀ” 2M¯Ý“ý¹ÚÉÒƒ1&MÍJƒÀ¨2ùeµº‘ZaŠäþ»¹¹I5*N mÁB0:w |àæ›nâû~ô‡¹áß £Kš‚UÞ§¡Òç"D¤º8=\¼], Ìì½}Vc{b”DÑ ¾<Μ8gi옧`+:4øè8±\ uÉÑ£'øÄ'?Æïù<Ïßÿfͳ4ZÁj‰Tžè"&\Ýàø´€¯Ì€º®‘Z§Ã¾eK…Ýv›°¬ÛQ´‘ž½~{Aiw}üy;ã§ÏÐê?fÿk¿¯åáowÙÞ:ÄØM!FDU‡APÃ3ÏŸä¿û©Ÿä_ÿ‹_H½x©0sÒg&1ëH–ë\„Ï?ñÿû{~•ßûЀc§éŠX(*eð~̲ZFʽ²D)S”H¡iÄzbU)“&P„´³’¢µ†qÝû¥•µ¡­Wf[x% .zt¡Ö£]šF''PO¹ãUwò–wþ Wÿ;(†ÃÎJ"A¤IZìô'ŠÜlÅxq¹xûN, mÁè;æX’DÊ‚ŅIJ²%soÎC3@lX4”K#NŽÏqß_å·Þõ[<þð4§Ö©¢ÄÄ‚ 5`1""\Àz"2I =¦PLí-‹ÜÙ§½‡”*Ñ)Cò$Ðzv€ÏOçOçÃqçgSôóºÛEl:|TˆÔ/0ÞûnYÞ/JýûH‘–·-“«Ëwž¢*i¬EiÒg×ÎñÏÿÍ/òÿ«ÿú|¨hû?þ‚W÷˜]ŽÃ̦òÂ?wÛýz €5ð©îã_ýƯðð'ÿ€­õ Dˆ L¯†Ú e²xFèJSH”‘ *šdÅrÃP”ÞQ*…P‚&[ô¯µQó6(Å`‘ˆC“èØò>LbŠ“§OÂÆ”W]s3ïüÞïçð »vap1Á!GéÊðB¢ˆyŒŒNHTœ¹¢ÿuúYn‹xÿ÷‚Ÿ €¬/ôqšŸ·ßgέŸæÕ»oÌ_üYÎ[ÛRHºïÍú(ñí—ðm0xbT‰S%Ò”1q5¨ˆoš„/[‘,?BÃædƒu%¨.ÙÍ‘3'ùʃò¥O}‘¾üU6ž=‰ØœR(Ñ:åGXÛ•&ÂyS€Î¸.—$>Ó€ÛÝCk’G. ÞûN­Üþ»-&}K‹í‡~K·míPP½ÉDdÈp•œ‡µæn!ž§œî!C÷sØ¿wO?ýtçe­My½çiTIŒ²”ll®±°s…_y×»yÛßxcv© (1?áD¡þÂk’ÐÒHcDˆÈЙP*c:0e"‹Í2ÇœÄñɯÝË>û þÄïrâÈQʦa‡Ö "!*¢P Œ¡¬JLQtdcLÊÅÈ¿;½¥\ö´§Òºììc„Ha_Q ¤Ž’ú[x¤Ôx%pÆP6À”‰x1´é¹uÊ&pË×r×]wpû÷~;.?Èp÷r/À—žRl¯®Ì[þ™gß_qñ 3í%…º]8W¦7@ — BT9øÌ‘Bk#"6Dtn*“8RÈÁóÙd_d¥~$æ 0DŸIefÐ ¤LTk‘÷Zi¿Õz™‘-!?Î 12qÙóÌÌŠÎÝúbñx‘¾D2h ±fj¬sD뙺 °dËhNù1úäcÜwϽ|éãŸãé¯?Ž×Tz€ÎtX|Ä‹¬8I´%ÅŒ{ßܵ‡{¢ó&pK¿•ZœMÍefçÒ?„û©ÛãSûF?Bµu}í @^Ò#çs+f¶â¡ êÃ_}@et÷÷믿žÅ…EŽ=ÊñãÇqÎ1 ˆ¬µ•¸Í‚"AAÂTœ=w–;ﺋ_ýµ_ãÚ˯L0X†ó¼˜¿„ )Ÿ ˜|‘JTG/ŽRÑZ€ÀòÛ_ù}>Ï=Üÿù/qì‘o¢Ö6Y4%ºPVšÆ7˜R£b‰Ð%Õ`„–P2[퓆 Û÷Ak“Ÿv""„™o´Àúš(<U!\ÌSJò0«ŠŠÐl ¶å$rp÷~n¿ãvîxÝݾåz/Û33ÿI=/Vÿ¨ U¤–:ß/þ²‡äÏogËÎ,m2n à¾{¼ˆNnÑ"[öw÷ja]—› ™éí Ú¯ƒT‚ ²[²©©k%Ξ"eòé Á¡òc¥ëÓ‹ùýˆ³3©íf1r ^¿à´ôª¥ùk+ ‘€jë°Ô…d]GjyúôIî½÷+Üÿ‡ÿ‘¾t'‚‘0, pM݆)pÁµ¤Ò"¨®±sÐPߤ]€¦'Û“$øSD榈Bö6œßg(¥ægûîb{éöJ©™m8}v—ì&ó–òYÛ±½¨Í%eˆ÷ž[n¹…AUqvõ,?þ8RJ¬µTÃAG™IÔþÎÚ4ÎRV§×ÎòÿÍOðó?÷ó¬ »ŽYÆ¿8S+ÄáÙyvEà©É:ÿïÃÂgþà¾ø¹ÏóìWFO£r€–)ã=z ©PÃJ‚Ñ£E9" ñ %¥[&jrû©lÓí…’0­J‰Lrè5AR 41[¥Ëí-râPë5ûF;¸æ¦Ëyíë^ÇM¯ºƒåk®8ïýk³F9P/ZBÞÄñ‚‡‡ˆ3ÁlrkKÖ8qæÑZòĨ2™$$‚Húbî¼—(©ó5¥ˆ¡I;:³E&µ¤'¥”ƺ¤“2 #ƒjrüp;•“í|.& cJQDÄtí‹¶ˆ%O:!@J‘“D=MŒIƒxð«ï\?°?_éÊî…Ðjæò¾ÏÇ9·}OþK&ŒýÙ°ÙXNƧŽ<ÍÞóû|úŸâøWE×°kq'Jxll˜DI¡4Ê9]²C7^ÏüÊW¨§S¦“).twàæœŒ{ÕlÝN%ô…%—5&)Ø3—¾Ï¶j¿·?™l7æk‹Ëö̉îk*?Ç–¦ÛZ1d6Ú2¶ž‡V2k ¤ÏŠi­57Þx#‹ ‹œ9}šG}!û÷ïçÀ¡ƒÜÿýL&“t_‘ >¥’-Šs޲,‰!PXçX«'üÆ{ßËöƒ?DÑ >ºÀLÙe¾‹oÕ”eÇ“çxèèQ>ü…ÿÀïâ³<{ߟ ص¸€®Jh\Ò9(Á¨,Ðe‰,*da0Úè´+:àQ rò©52¿1ÆLùŽ˜¢ÈïIjBp£H"PT*M^Æ ÈIƒZ›²w¸Âe{÷pÛw½†×¾å\zË ¹ʾY¦xÉÐR‘ºáÜ©¤4@!P‚ÿ„®õgs¹&Û³SÎ/ßj×a~Š3%þùÇB{ßì´ ÓDOTùà³² øQµ>:^Ju*(1_kyâˆ1¦ 5ÆL{ÎP…ɦ>€ OÊ’—ÑJæ x%‹Dÿ—›Ä"„O´ë¬ù‘Z¢T* —Ð iAåÈßt+1Úö–È|¯Îƒ(ÿ<Ç,¼dòÝ¿eñ­b¹7±&Ĩ‡ùG2™dv-egš‘.ÄlÍÑÇšŸrJŒyfs¯ýñý|ô×ßÇÃøÊ–1eAŒ NfÝg=9õk-ËKK\sÛ-œ:ñ<óQª¢¤"EwÖuÇÜÙÛz9ç¶Ù‰¨¤3‰ eÌ àó#ýú‹ïíP•1&1·zÐS —õ»Ñöÿw¿xf>L³©HÎì··-Ýg…®˜õ=¶ÚǾúê«YYYa2™ðàƒ2¸ùæ›1Æpß}÷¥×h[1"½ýB¥ *Sþwµ´Àï|îÓ¼ö†Wt‰y‹„öä%zfÞ(Q—†8=Þà‰çNð¾ßÿ8¿ý®÷ròkaœb÷îé=7e™xÚDªªB*…©*dHþQÚ@ŒÉ Ë<×Zã˜bÄ wüõìýÔEÚsÉ$èÔ*‰ù”H+@*¤2L‡*„µTÖSL-;MÅÊp›_uo~ÇpøöW"”¾õRvžw0ßP}+Ôc»Ægn'g‹ìt@º^šì=pk8š'cèºè–ФÇû†@ÀÈ2§i¦Ï„é=œË;ñ›h5H,¿ˆê,øÞV)½‡RÉ‚hAâ…ÅÅt=›èh‚A ‘DŸqJ”x«1¹+ é’z?Hjð&Zd[è-JEœ·HaÐÚ`mMÄ#PxŸÎ¡W¶”-R®»QƒTÇ̘RÅÑÅ)+\T=D…òa)tI!Ñ«µADƒÄÐÏ> ”ì5T=FÀ¶ 4õe¼M¿³V/‰Ë·, -!äÎØŸ߈è˜l0ÆÂSD‰¤bÒÆ‘ŠT€šX÷Sž¯òБGù“‡à£ï~Ï<ñ4»‹e†AÑ4 !¬µ8—°Ê%:1Ÿll¼sÉ!5‚–/ ,“Ãh]×sSÃö sF¡Íôá(3'Ìçgo?ÐûÓLÚèÞírv;·¿‹iw!>_Ȫ[Æót$}ج¯µª?‘ìÝ»—••ž|òIvïÞÍå—_NÓ4|ùË_æöÛo§( Ž;ƱcÇfŒ"cæ )kd®Ø…@YU˜²äÔÙUn|ùÍ|îŸf×â2"¬L¶lŸ‹8#©cÊrë ¿üÑ÷ñþÿëW˜>üÚvî\H í,|”(”IQRkJmPº—¹¡tŽ´M¢È6I»‹¬u‘b¼Â¤AEÓÔ „F 'Ù£{Ÿv0ÎT ¢ÂX(,ŒÎžc´´Èõ¯¸‰þ±¿Íá[_ U&8´…ÿ/²øÖú|j¿6Û5$­Ùj¨|ß7·w-+œóiß%@„@hIR€‹•^ï}Vöçë‚d7¨CãìüVnj$R”iO‘“Ä4yØ*M*:€E ƒÌSJCdŒ BÐ~ÓD×.Ö½wÙú%¡Þ{$†ˆO;Žô ̰”'zs-©Dv׎•Óç%øÈÈ,D5A@Q”8(¥AD‰ÎŸ-!Q7„X3T‹É£LªDÛ.GDêÄšŒ%1’Ò''™†À¦ˆœY?ÉgOÐØ†gŸ>ν÷Þ‹õm jÚpðÊCÜ}÷Ý|×í¯¦L%èÛ¤€´¶ÙÖ6 CvÝݘµž:{’‡Ÿ|”ßûê—y䡇yüþ‡Y=ú a}‹`#r`(´¡ ‰bª"ɽˆÁQEúÐæ½½Ô¸>›©;ЕDä½i´LÝxY–EA]×Ýd`ŒÁ9‡1¦'¹có[dfh/H½½CjûdоýÇØ^Ú"ÕÂNJÈó&œítßvÑz2ŒÇcŒ1(¥¸óÎ;‘RòðÃcŒáꫯÆ9lj'8tèëëë<òÈ#sG·€Wж/mm/Rñˆ”E ©à™¢ xÏ™µs¼óG„¼û7.²©"C!qÀ=§Ÿà—~ã]|þݤ9vYh–´J—È©eP©Îcª,KªÁÖÛ\RS`ŒÆuy e›®«JÍÒ…X‰Ôh)Ъ E¡;‚ˆ¨´AG…P­ZF‹ Üxà ¼ý‡ÞΕß}#Õ`@)©ˆù½¹Àkùÿæí·M.óÔÒ9ÓÈ" !O‚ô)s Rê.Þ %y$ÒDÁ¶_X|ÈD ¥Qä‘ G}ƒ1‘d#§‰A€°©PÄQO2{ ¾j—ç±Û*‚Ô4nŒÑ$“:MR&o·¦ÞD©¢N•šææ‘\”ü¥trÁã*_[±Ì ø`sA4MÒ3j½TAú»w‘Jí°!1²´¨F1ñ º*˜„†¥]Ë”£š ,ëV²zæ,ÇçùçNñ•?¼'<Ê©S'Y=³…8½–¤>µ‡RJ•Ø€UU"¥Âh…T ç=Ãá-`ªG}Œ£GŽrpï—Äb^ÿ9* !F¬ÄÒðà3ós¿ú‹<øå¯2yæ$[g×l¥‘¬(˼xÌú©X–šPŽ:•d"uQ0O°!äŽ0 §\c{êÝdJ'2MO*IÀ'ˆ…„†ÜcYçÐeIllGWõÞSUUv=mæ Oœ·Iß^ ú¸rŸí/`@w¡¢ÒO»Û~¿í¦£ gŸ¬þþä¼#¦`të­·"„àk_ûι®P6MCUUlnnvÆBpîܹ®@Ï(¬j6ÅØÁŽ4¦SgQ¥ÁY¨bŒìÚ±“/~á‹,ï]ám?ñ_"*þàƒãÌñ¬Xõž]Õ€0QOÕ8‘XVìXYd Ï@ŒJ; g-1/\EfÖ$ì:eŽ+£‰Þ¥…gð™ú]ô0PE@RCòT¢Œ”¢ ê†éÚ&5àÎ[_É;¾ÿí\~÷í –F¨JcU@»4aK!’>#&hA¶4п4X!\`G1O‹¢÷ù -ÁÈfÚ©Gæ¿·%ÇłŻ€V#‚qnöžKlž.’Wp€Mvó6 Bk'j™à1Û¤=¡suWŒ¥H®Ð1«â!=76 é ç,1Ö%pq k4šà H›XR¢:iKˆ JV©ÑóMŠhˆ‚ëüʵZ'‹¯D‰Ö’¦É;‰Adú4?ñ$<ø |㛜|þ4«ÏÅmNh&c–††BU'pµgG#¨§PøÈ%Þ… \ÞCØQÐD#àrÌDˆàƒCŽ-déÖt i"Ê–8}òyì½ì%±Ñ}˜ªë’I<ü–‘íUäápŠw¾é­œùúL#J"…`!Jb!ñ!ÐX›=Š’Ómt!e§æÆ:L¸z «èÔiFºq»}£ó^9SìÀyG$ ”ÎÐVÌsûäŸH=Èd:¥*KF£ëëëçA?!dh¬ëõRÓ?ðçö½}F^Ú¾“°ÞÍÊJÊLßœ"çEY‚u¸Š¥ÊѤm‘°Öv“M¿ µþ[íþ¥¥ånll0 XZZbuuuΈàСC,..òÈ#̾¹ +Zíψ!RêÛX’.Ú#UšB‚s¡øô/¾‹àzP1B0ÎÓÝØO¨ª#3@Jƒ.$2x‚…0 dcÈ(ÒdCþÜE1B /NI¼ð,ÉAòS)^éôúf˜!‡@CPh-ÐÔꘋ¼úŽ;¸ó5wqÝkïäÒË¡—ð„´Éý˜duÆv˜‘¡³é£H¢ý«CĤ+²?½f&ùÝ®¢oE“RcÃøÐdMR¢ J!°MC$¤åq°„è0hÙ­7œȦB©´oê)Bºô<£N0TXç@48ß Õ1¬k2Í^¥Á4Œä‘>Þ/kpYK#Î7„èÑ2@!Z¢”L‡’\ Úgíþ˾òïJ¯ƒœ¦à,*‚EI˜4h¥Áhbã’7^anŒiˆË9í[a“rh¨t…,G¨Ñ›Dë›gùÝOÞÃ_Œ3ÏœdõÄóÄ­uÂD#ˆaÌ€’¥b7»wîdiq?‹ËC®¼ù‡æðWpèð刽†aµ‚ҚѨ`çž]¾ò&\˜à|H»ÛtdJJjáÙ/‘6"êÈ%;öð©Ï|†[o~åK‚…¥»ƒ$ÍVĤvõ³ çN=Îëïz%+qˆB¥W´Ývf+Å|˜j!gKÖò½cKcí ¢K€ëö÷ s\†ÜiyçfJrèp3<8ö6þÓéï=£Ñk-6 ·ÛŽô'íà ™nŸ(„ bêí@ ±œèQ[–—µ%dêcdçÎh­Y[[Kêû<1”eIÓ4ç-ó‡Ã!“É­5Óé”ÑhÄÂÂãñ¸{n=öû÷ïgçÎ,//sóÍ7óÐCõŠõŒºŒÜn»ÞyT~oC 8ßô Ó׋ªBæƒ|4\@™„G+e(ˆ£òžÇ9”‘ÄÑZ¥@F2vƆ>ëaTH‹PkjJY!Ó¢QEpï,ÚFMÀ7Æ’_Á]wÝÉËﺃÃ7]‹^ágZàÙDÊöPÝBYôÙ/=Er·ÿ ±‹nY6’93u¼ª½j¼wÛ²¦(YàœO“tøP#EòÔŠøÔ¹ËÄÞòÞƒó%òBtñ¡INÏ:,kÉŒ¥¶@|œf œ`¨ë€Òíµ—òØcôøà;êxÌAl>4 HñÁᘠBz?|HŒÎVgJy“±=6JDZÑÔgÒëªñÉGLÈäPÜXPÊ¢ƒÁÕÉBfjÏ¡ ÃTjWSì(‰>â‡R«µçäÙ3œ›¬qzã,§ãÜñçxöØ Æç69ýüiܪ'XÇN9dd×^w·\v€]×_ÅËÞú2®º„Ñp»v¬°oß%¬ìÚÁ`×®”Í•'¹‚«h2ÉüïÿsN¯× ),!ÔioÖzÔùØmýF5B© Mí¸ç ÷ð?ÿ£Ÿ}i¾\? 0!­ß FHNˆ†7¿éMì“KŒÏmPÈ‚&wí3œ|f‡MÌ\ðm ¦~'¿Ý °˜o]Ú)]è¿`'Ý2Ƥè GQÝAÜe7l;ì·/®ûï‹ø¶[˜(•ˆ}oªzèe¬ IDATy÷]Ñý<ï}W`[¸k÷îÝ\qÅTUÕ=Îc=Ɖ'æ˜VÛý²Ê²ì–ôãñ˜;wR–eWÌŠ¢@kÍ#<Â5×\ÃŽ;X^^æðáÃ9rdîµvÎuìŽn,fSZ—uCÆs«tŸ"v!IZë”)B‚¬„È2iYŒ1xŸIŠB TZÆ*©Aæ¦CHÙAW§ý‰02g-ºÔD-1‡ßœ°w´ÌÅK¸õæ›xÅ]¯âšÛ^ÎðÐ^WãÔÙ¦^yðªH‡i«÷P¢‡]HmgPM:Ýñ!‹˜³[„Í¢´LQÍ…?™‡Á£K>oÔX7¦0‹x3+*Ív±›.Úd)%¾±ˆQZCtÎ7à5ÎY¤T©HÉ4™$aža’&ÿŸ(’@ðbPHJ¬k!2A¶ÒÔ!„&“WÒû]7c”’X›–Þ!x‚ôTXëUVx¼ã=8]$‡u .*”€zêˆ6íO}ö ‹ªA6XôP±¡,ªð„h˜*Ïúx‚uSÖŸ?˳GžæôÉSÔÏ­râÄóœ<}–Ó§7¬Ùµ¸À¡Ý;¹ty;w-sõ¡«¹ä ¯ãÐÁØ·—…»Ùû²ƒ öÎ[1$ôÄç4ÓØyåG2#T«®Ïg‹&Ò“vI¾àëß8Æûßÿ댖JBhR ]LÓÙÕ"5™‚ÞymžQäwïwñÑ£„z @XyÇ”Ýt <~âðÍø7ïú÷èÕ M^à. k˜[ ·Å"ÄóŠ@êwî}hèBô…&‚àSvôöïïÚ!Æ<‹ŽþÛº§¶4ÖíÄ…¨³ÛŸKRŠ1ràÀ>Ì<ÀÚÚJÉîPй¨¶üv!ËËËH­X[[ÃZÇîÝ»¹þúëñÞ³¹¹Ép8¤i®ºê*êºfkkkÞÙ5‡Öž£}.máé[—h­©ª ç>ú(W]uËËˬ®®æÃ|^EÂl‚k©ÆR´.2åR t²K)Š©TJGœ+p"©kd¢i"sHoKŠˆ/:«¾ELhIfó‰ô<¼ ǽJŠe#g6ؽ°À·ÜΫ_ÿ=ÜøêW²¸wgì„¢”f³ÞÄH…Q†F@’£±Q&ïPô¢'øŒ)Ïø…Ìô™íµ¢¨“~$¨„Ç{—­9b¾¢Âû´€žMs!µ5ÆÀ¸™v,¦: ¾¥š6D¥³Í 4 ±u>Ü#ÖM!$ƒï-A„ôZ!p¶&Ä&V}"[çC,AFPX{6¿ÿÉÅ ¢^fr‰%F›çˆ\¬Òk–¦P‰‡¼Û(Ù¤©Än€ÔDiq2[‰hMx‘?Œ·ÆD“é&ëÓ)[[5Çžy†gOgõøI6Ÿ;ÁړϱÄ.v –XZÚC±0䲃¸ãÊ›¸ö{ö°çÒ}¾ö.»üJXÚN‹¥Cë* TÚ™‹ƒN½à[þ¬g‰Ìöü-d s ¸"H‚,XŸÔ¼â¶×pÉ…–ÚÖ¸JJ¤ÊŸÿØÚ#ɹFP dè°3«§¹d×Þ—„Eë<9¹¶Ê¿üÃñËÿìý…4¬¬ìbTÃt2e2ì[¼É{†¶cò¡Ë¸P¿Ýjûá|¡‚ñBÓE{pJ¥ØþmPW rF]×ÝÁÚ.–‡Ã!Óé4!Ø}evŽM̳ÜSJ¹J9¿#Ù³gÎ9–––X[[ëDŒdÕqÛÝïÛ·«®º*ëku]sÿÿ W^y%u]sâÄ Ž?ŽRŠ;ûöíã‘GÉB¦ÐíYÚ×q0tÏëàÁƒÄÙØØ ÆHc´ÑûÌ{Ï7¾ñÍtPfª¦V©Ðt{œì&Ûwn•Ü…)QJƒJªÝV©/”¢(Séï$´‘造„`Z;l ”ÑÆäâš®x)S¨’”$O4çÖSYÁ¢ÐÜ|ð*¾ûÍo滿÷ ˜QI=lllÐ(Å9ß0%ZD¦¬pÞ"”>‘|89F‰ÄüI!eR/çIÚ¹0[j‹ˆdˆ(¥XJ)q¡É;:ED¡ób´õ÷’Ba­Ãûš˜÷<Áe—€`³ ¿ÉŠççlíPº † ¡LŠdF¦#›¢M;q6©“õŠj"çcf%e( >¤ ‡ »\ò²=bªD›·¶F*~gEšž¤#bÁË´XÏ­”É&_)Cã#„ J•9à ¬LlbQ­onáˆîO?}œ£Çžâì铌Ÿ^cksÊÖÖ!ZJ)õˆa1$•†³«Ç¹ïË_ášë^±mNH, /Ó¡+ÉÈ¢ T“<È@! —‘¢·òÔ°-ȼsdÓçP®âÖÖ˜ D¢Ü÷–!`¥äÕw?{÷îFúÓ©IÁlM, B4½ÆYejtë6ž§(J ž{î9ö¬ì튔øOžþFHVë ¿þömÂÂxÂ⎦uM½¹w]–Œ\ 6Ù!4&\_ Aì¾ó‹ÐáìÛá§íÓÂv{ó¾åHê껢¶‹ÿ~’ý¥v>¸[­C«ß¨ëï}ŠÝV@¤Vs¶#RˆYÓ68k»ãîÂÂB'BìOS!<ÈR÷˜©¸kë,..RUUW@Úß{mm­ƒ£Úÿ}Íœs)S¢ªXYYá5¯yM—cäÉ'ŸDk̓?ÌÒÒ2gNŸbPVéƒ+é±¶!‰è¬LJ%ž». ‚\ä¥D!Ó…+RÆ=IÑÁRÉæ\#ˆ:)» aQRVƒ•Ä “ºaP Qã E§,Äas‚œŽ¹æÚ¸óÕ¯áλïbÏ¥»¦Ä9KMAD4’¢,1¦L:•…¦‰—o­ÏxsÀ’4!&=“’žfj:BÑQ9ˆ.Qe»ÏkûúfæRŒ©`X‘2Ê1ØP£¢ƒèhœM´è aб‰¾ÞAt“LuMû“РI{ĉq³+X1 šqD¤àÒ.ÃûZ›¦¿ÚŒrX7ÆÉ‚F„”ã\Ë´jвB)Éx²†Û´˜¢Äù4é°š|§\ZÌ«¢dc²…,’È´,8iØTžñ9NŸ:É©ã'9uæyž~êÇbíÜY&ã1ÑY$©y(Ub܉˜7Z*!(1šD—ŽÉô ÃO{–Ï|æ³\uÍ-Ûy¡É9Bµþ²û²èKí¨Îe¢‹‹mÿm]ôµ}rö¸rþ'˼cRàr|qÔ’ÿñ§~Ž“ÇŸ¡q«T:'{ …Rƒ4) PF&A´(a‰! „@K÷S”V4.0Zò'>ÀM7Þ‚3YJýâ+ ÁXx¶¶¶°O=]\Ò/Zê’:wésÖ˜.Ô¿fb;¥öBTÙ9¾W|¶[ƒôÞ}øöex õážR–õÂÂ[[[]Þ>')e*Rn…°Þuô×#›››”eI™iÌ}Ux{¿C‡!„à±ÇãôéÓÝó½ôÒK; ç’¦?Ý´SÀÁƒQJqôèQŽ9Âòò2UUu,,k-<ðÞ{êº&˜lnQœ·øfŠ–%Bgû‰¬Ç) “µ2 ¤šûÝ’ ±I\þXp"Ž)Š!ÎyŒç·D :­Mb%:·.2ÊEì˜UYa¤dkmêä&‡®8ÀÞü&n½ý6v¼]˜Ä\2§B› “¥¬ £=Á'PA)‰!">Ô¸D\’T0bµw/‘jˆŽñdB:MCÓ~L!ó”Q²ÀfVš ža­ ú1ÑGš¦9M¯]t)Í5%Ö¥ Ýd£Në#•¨bJÓŒûÈš¤Üɹ¶eÂ%Û~óÓï.ò”"eÈZ ‰Všº™â44Þ᥀0&4“ÄVŒ%)Üf­MaY6 t…ˆ%)™ŒkÖ7¦9r„gzjñôgÖÏqncƒ'?¥``:_¦N\ TÉÈiÊÖ–¦?“2»µué_#Q\ã)MÁÚ¹süÒ/ý;ÞøÆ7η½Xâw“è2¹8ûøàGïå—~ù×XÙ1@‹€÷iLG«'&6ÚY,¶'ùy¥I_w‚ÈÂÂ>x?òoÿ¬bð"݇hh‹ƒŒ'°Î&w̦iºÅÞ\Ö„šØsÖÛtr¦Ë’ÞV8ú6å3›óÿÛ/(ý‚qž-Ç»µ¶&íB¸išNØ×ýœ˜°ü¢,ð>0™&ÆS»ËèlÒó„ÓvB`ÇŽH)©ëšS§NÍÙ’´¯[QÝóiYW­P0ÆÈp8äe/{ZkNŸ>Íææ&<ð@·0oš†étÚýþ;vì`ÏÞýœ<½ÊêêIŒ’TeI æ3º Ð%¥Î¢ˆo©›‹h6˜S*Û‰hò4¨€ámxê˜L¡ò’àF!Ó9,k¨F›_~¯Ã¸äš—±´¼Â”1Qƒ“YêtPGÒ*$K#S̱>±vB‚¬syIœ=§¢H¹ä‘.Þ×ù)Zø¦ÉÊv¨›DYu®¡Áf‰ µ–(Q!|º¦ëºa}Ýsnã§NŸamc‹²±8++»¹dïVöìâš+®àà­(¿·H"U¡’¯4èR³¸û FÚÝ8ù”9‡”)4"zP[KaÍZ+•ØÆ™nóþ²½>[Õ»1)‹þµ¯}-÷ïþøçÅR<Ò™“>ã6Dž8ò,?ö#?Æî}C¼;‡ÌâÇ>1(†~cœô)ºÐÛ/ÎY„RÄèyèá[!^öàzqjB´Š(¨´†‹E…­ R.C¶èwÖ¡w@÷ßÜ®Ðd¹¿óhékÛ³,þ¬Ä¾¶“í?Æ…²Ó·³¹ú}!EÜÖý¤..)Ø·&ãŽ-D$*…AÅH¡;¹òÊ+çXc1ÆnzèO:RJ–——±Ö²µµ5ï3g4c)%×]wGåÀ ´ÖR(CÖ'!aò”ÚH4yÞO)uQnQ;Éææ˜ÉxJ=]…1LÏN‘Á —wPíØÉž»¸tÏ˨LÅèú‚j995Õ€;{0Í̧«1fÝ‹ˆà¤à¶7}_Ò,©Hãk|„ ’%hÒÏVšìnB“ "‚Ɇ“ýF°µ )Ë’µ³«|üŸ˜kJ·#•· ýÜ,AhB¼úÕ‹}ûWpñALPr™óJæb ¬Kâhe.€Ö„QZ¡¤Î;3GY”øxòÈãçí’_ŒÞXZf5v¥ì½ê ã§Îe ú.Þµ“YƒŽ 6kdpŽFNØr›éû½IY4R&Z¦8?¦‘)»"Ô5•L ˆBBãmRÙ#>{ÍùˆãIÍVðDW£¥aãì¡ [5æe+;Y.rž%–ö®àu`yy‰;w¢~×­žcòv/®Ö•WБ'º®YÂOÿ¿Èƒ÷?Î.³Iíž*{Ÿ%–í;ï¼{íT`3 ¦ÇÜ‹>PhÃñ£Çxî¹çкxA Ö_Ç-ÆV‡–ÏŒ"ÙW‹ä$%(t¢}Š–-"!$‹x2O*“|‹ðàE„JŒ²oß ×_y%7Þt WÝpfX@¡±ºÂk•Z‡i­CjP†lŸIô©1487A+…ïÒòÑù€­]²‚à7gëñDMÂ:ëÏÐû&çQʦ¥25Î5I""NqaJ IËõhÁc‡ïj„2¸\tD(7Á‰€—‘ºÆ(‚¦ñ³ AßॠT%Óhü&~bÑ ¶0(£jȰ¬ (سÿ ƒQEi öîÙÃâhˆΠK¶4Œ'&̤ۨ€íÄqAsqÁö/й& ~ûK÷ò¯þûÊ®K%®û(dÕw qn_ן ’Y¦˜Û[¶Å£ÝóŒÇÿuofÛU×yÖ°‡sNÍwʽI 7„!3@¦™DcÊŒˆj76¶(4të‹ ê£­(ú€¨m¿8â tGP¢`d$d ¹7777wj>ÃÞ{ ïkï]ûì:•h7’J=OR©“S§ÎÙ{­õ›¾Ã€ë¯¿ž={ölj™?Ö¨síf! Çð_Þû‡Ü|à DU´ŠÈLŽVAAÃ8‡Šu Ì–þ<ªÑj—2̱¤Öà ŠcòlˆÁiYn»ý6žÿmÏ“Ú~DºGìøÞ—¼œwý»ÿÈÂì<ù0 âw.ÀË&AtÛƒ%oCï>M4±–ŒòŒ¬°õEK’„îÔ^†ý~m"ä¼G4ÅI–°“ˆ…[µÀœs<ùÉOf~~ž»ï¾›•••M$Àª¨ ¬J)vîÜÉ¥—^ÊÒÒ;vì¨+ç_|1ËËËìØ±0»j6qüøqöîÝ;†°ª*)%ËËËõßÜ¿?_|qýóÚÚyžsË-·$ RÊÐÖ(‰yE^U‹°ß­QR¢<øU˜G¤i\>7 ßšäCJL:ùFá‹Òú³Ü R #|Êaµõ%é«Óí ½BOTæ»Óœ¿oW<ý<õò§°ãüylWã¼"· Ñ Ãù¸ðı ԊDJð¯ÀaÃÜ­t– ZLÈC[ÉÙˆ¡À°4 X[„ `bâ(¥0T, ‚žs@Tc‚TŽV‘lEÃ’ÛÐs.LPV…ÂùQ¨d| "¢À`]QÅ!òù!V8´ˆð®‹ŽÌäxWkJ—ê½’Q6`yåâ`ñÜ¿äu<çÚ±sçyôÒ.t¢Xµ@ã¾ò¶ ê \HbJèj‰5’ž7ß(ÇCãë§—xíw¼’ùóbF«kµÒBµßL–×bœñê7¸•(*ãsÉ* Œã˜Á`À[Þò^üâOTÐ~l¿|h#:‡\ôùð_~/î‰æÞÛ±v{3Ám~¯Î¨8ޱyH©Ö"œ óDçq6ÌÉÒ^ÂÁƒyþ·=Ûš¢¤ ÷0¥uVZRå ÁúMÐÛfs#«/ Wdè›ÇqLfF¥C Á{Qª¯v ›æ“ÊÔIŠ´[IŠ4]+~Dš¦,//±¾«uQ<÷¹Ïe8rÛm·±°°Pó9xà>Ìå—_ÎyçÇp8 X£Ñˆn·;ÆövÎÑívY[[cvv–}ûöqúôiΜ9Ãý÷ßÏþýûë T>ø çΫ‡ïÎnHEkCÿ\ml´æp¾Îìd¨«ÏWUaá…©ü\„@i£ª¯ì|ðN:xcHI„Æ;ƒ–ÁwAE, •![šB²{jOºìR®ºæjö]xÙ´$•rS0èDtu‡TEc‰£©RBbØÓÔ3“–%B»2qµ*åšk®áøÀ˜ˆèö "Uk]‡Á 㻯»ŽK/œåäà$ø$¨”³q¾ˆ’”]£BB­`áTú_Þ#\©(‡`455ÍwÜx³ÜÖ~ìZ!ðÒ#02åI×^ɱ[¾Ž aˆ#AfÇÛÕ…©f Â:\i^£\AOi„Ë1…#ˇxãqyOb|JuWÎF"!ÉŠGcÛ&c¼¹™3R Ë›óêf5Þ8ŽƒÕk§3&—ÞD2UÃûŠÐwôèQöîÝËììl`^KIwªÇÔÌ4‹‹‹è8bzziŠ,£Ó벺ºÊÅ_L·ÛÅ{ÏÒÒKKK,..nB†U×´ÊPj—V¥Ž®3¥$ZG¡E¡\)ƒ„Ô2 žÂÍ*RAí×ë(ôØ…BxOD/ L…DÆ1JXL^è$HŸçŽùxЧ<õJ¾õYWsÁ·ì¥˜Öx¯ètzI¦¥Ç ÏÜÔ …uA¼OèTâÈ)¬Ÿa­Á»­:vXû¼xïpXœ8+ÊVÔ¹3xx;Ê…JÌ8òȉ©j®l§ k8«J¨¨e”¯¡#O‘g ;X[ ±äňi?CTÀHœÉΑÍ÷åE*é›é%gœbùÔYOžæÜ©Ó?x”ÑpHy•$Š‘Þ†à $IZŠ :”Öì1ôvB¤˜7ŠýÏOÿÎo…½"âMm£`»+Ê͹ђR‘Ú|¨F….·Öjû§•ãs1E1 Žº<ïµoBž=Ö3XUà}¼Q)L, ûwÚ-Æ” •R|þóŸß¦·¤z¶Aü@…9«N³gß ™›Ñ,¯ö‰]„Ž=Ùø¼’Dq ™¶Èˆ DZa K1âeØ§Ææ(Â>wÞS¸`ž§„çØá£å[ðxãjäÚ¶›±´P¼õ-?Â;oü1º* .oÙhŒƒÑ”t¨\Î|3pæçvÐÁ œ üö8¦ï FÈ ³;v°û ¸íŽÛÐhŒ±è8[0“}‡™È\og: ¶ê³¦iZChŸõ¬gÕm¢ªr¨ZCUö_{a— |8Ö<‹$I‚Qž‹.º¨® .¼ð ÒXVªÐ4M7(®ä¼ˆ€jÔQT:GnH¯UU%H&I”T)Q±æàáCuµ"õ6´ÑI¯ûîWóvóVtg —çGh7ÐÍan}`‰Ð"À^“î ;wìàÄ™S †D ¬÷<õ‰—°ãü½Œ¢*hIdZ?ÂníŸÛÜv•b­å‚ .`aa¢(jc©<ÏÙ·o_]yÜzë­ ‡C.¾øböìÙd7´fmmm̸ªj*ã¦C‡ñÔËŸ†sŽ'=éIµÕñãÇ™ŸŸçìÙ³ÄIÂC=ÄÉ“'7¥öûoƒ±"@5|’ëH IDATÜC{ΔßCI-Ä8áró¬ÈJÖ»Nÿ玔$B ûQ³gï^.½ä.}ê%LÍÎ0[ªë8Â)Ž(ŠÉmATIuwŠ‘á-Öâ]%i^:XzÞšá¬U“×磵+=ÞšR™Õ`}˜cx_r& ƒ7x""Ò ®oQ…a.“ÖœDªÀ3==ÃÎù ³]öîDÆŠxz ¥5:‰ñÒ—PU‹šëÞñ“<ðå{éô"R\‘šÂ+—žÌ¸’°˜ø’w$e)?NlÕ:´sMQ„ Ô Î-óà©ãø$"ª Ú¶£ßƒƒÉïþïyÿ»ßÃŽù„¢È™Í²¨s£M ͽ²U©­9sæ ÿøÇÙ·oÛù+ ÿûÓ_àc¿÷1fv Á†£B(¢(®y`ÕùQ)_DeWÄš‚8È xI.¸~ÖÊÜvµ),ž»îÿ:¹7ÕÎö´—Òm^Å”H™Ý½“¸„#8|ñÓÄeodþ²”ІՕ5æF‚½à»8ôà!îÿüó±ÖrôèÑRðPñðÃsþùçcŒ¡×ë]ž²íSihÑè_&IÂÑ£GéîqÙe—QY–qÿý÷sâĉ:(!ÑqÌp8¬ÝþÆÄøÕV“|Øä®TžÔã(1Q÷dí‡Ý®Ø6æ"ÁH^a Q)]³Ð›â‚óö°ÿâK8ÿ¢oafÏN¢^‡D…–HC¡#MäZÆoq¹ÁÄ6˜Ùà bFA6D ñ&@9]]¡†ðý þ*r¬‰qbT+ÏV¼kÚ{œõ$”ƒl8 ’9x¼‹HÓ„NÒaÇì¦g»èN‡îì 2Ötã:a.¢X½í|©=„7xéJž8¡ù•?û8óá?an¾ £ŒHEdEN!] í,Ê– W8Œ ÷¤0&´ ËvYø<“—{PxìpÄ?üãéÌö¤ÁoÏà!ð ¤`5ƒ·¼æ™ŸM±Ùj8ðD)@ˆØÒ&º­Ý\›Õst yï{ßË«^õªMÕùvûòÞóÀñs¼òe¯â¢ów³>XGFZ‡¹]ÁoΊ„k°Tä-ÉËy1v­šÕ™*Ì|5·, w~õ«\õ­W͹mB¦ÜÜÂjh1ŽKžz‡o¿ŒÃxj?ôR¡–oSç,ü`¹?ba÷E<ãÚç’_ÿçœúòkCN;Ãê¾Hžehf—?íi¬®­qø¡‡&"ªšÒï@Íþ^YY©/ú®]»HÓ4”€JñàƒRE=‡pÎ155…1†~¿_«ÓŽF£úsw:šè×î㮬¬°°°P·Å<ô Ç'MCKk04²0‹¯€-¸p“2‰$5VE4‡¥å¼I« ¢U¨.¼P˜²*ñ"RF 4Nß ƒ4Ž^·ËÜÌ —îç_p!»ÏßEÒIpºK” %è8E+A"#|n±Å\Rb½ÄyÅФÏqn´"™ PM'J÷¾JƒJà­Ç;‰”)-y¶F„ }ë(ò o#’8¡“vIã”ît—îT—¹ÙYz.½é)l7!ŠD«éRK¤b¥Ç"ÀÛPõÔH%+]|0°«ˆ´ç/nú*ïþ·oawwšb½Oæ â´,ÇR’{‡µ"¨Ù–­¹fE®J™cm€—E!Éׇüìϼ—Ë®º‚Ü;bäc–JNò¸±ä(‡@/]—\ý¦•ÀŒÖa¸Ü*ˤF6”¥Û¤ÝöþiþíJîß¾}¼ï}ïÛ–ÁÕ†\"¤,ôGžç]{óûvÐÏñ:î™õûöµÞ^“ ¦”b4• ¡[¶¯\C¥c¬í'$…)%ߥDXA'ÜrëÍ\õŒom¬åíÈiZZx^õº×ðÓ_z' t‚Wwu–HæïÔß %½”’%%¸{´ÈÕ×~ÙíŸ#›"ZËÈûdœ ÅÈvìÚÉÜÂQ’pø¡‡j$S›ãáœc÷îÝìß¿¿d;ç¸÷Þ{9{öl-cî½çž{îáܹsÌÎÎÖådsv“¦i­Eµ°°P?>55ÅââbýsÇôû}¤”?~œµµ5Nœ8Q¿Ç<Ë Üi’2ËÑæ÷ßD“µ‰·R)®¸UðÔ‘.mD}ð£ð¯4JE(©Â¢—aÙctD‡ùéyvïÞÉìc÷y;رc'I:ƒGH²òXk¤³ô‡«á³‹R‹0+–õÁ:)ÞiriÑ"xxX¥é-EšD2!Éó¢(µ 1Q®AxâH²Ì ó³óôº=vÍ/ §¦B9؃ÔPÐf&'M8«o¢òj`‚nhÄt ¥·.¯ñ}/5Ó3ÓäýU kÑRPŒò”Ä"‹ØUÇ!p¡L[1K{]'(/ˆ¼à¯y ÿñgÞU&grÛdÕuuà‚u¯SŽÅs_þFN=Ì”°% *$•2A»²˜´–'ÉŽÌÌÌç9ËËË8p`¡w› v±"CÙïs„ŽyÍ÷½QáCÓQW&q¶ŠtEQkÙʳ@Ež±-j³;ï»VÎ9ŠRÊ¥²ÙvÎÅ1_ýÚAâ1$R>jÛ^ù]/á¿üøOO%ô××7!*ª›Þ¢Õ(-†|âƇ~ï·ƒÙF{¦l=yü˜DJE*ªZPUûgff†'?ùÉEQ;íu»]žüä'sÇwçyn;ÇéÓ§‰ã¾d5°«Xæ]tKKKH)Ù¿Í ¯…Š 5ê×ââ"‹‹‹c ¾zŽ1¦ö^ ›ØïÍxs“59Í ]\‰~q•­!Ð¥/V ‹ Ò o,±Žˆ£.»ww8o× îyó;öu¢4BDžBL»‘õQ n„VquåZJ‰0ضU’©¢a»ŽÖ’Âyâ¸Ë)©èešôˆ2‹Ö’ééæægYXØÉôÜ å:Óú r„‡ Câ$#¥xÞ‹_δ,pëk B:Œ«øB¡]U%¢D)Uó©Êî·yndÞŽT¥ìÛ±‹ìÈ Cm%ÕM‚£>•¡DÌo~â³Üò…Ï1ÓMðYg(3g1F ô-ÎVQØî$T°÷ÑhÄÁƒév»Û³e%@º!ÃÐüç~åÃüý_ß@§»87>«z§'Šº6»&Y–Õ{7˲’ÚS©Œ›ZH±å Ę’Sb%àî»ïWÞÖÀ .]8Ÿ=3óŒ\AœÄäÃlì0¬%“Tw…D±æø‘‡Jl…rॣÓëñô§?<Ϲ馛êÍYI{\rÉ%,,, µfii‰{î¹§&EÁ¡C‡8qâQqÕUWEûöíãĉ¤ixe€Z__¯t¯×ãÈ‘#\~ùåEÁ•W^Y# VVV˜ššb}}ç7ß|ó&®K›¸W×ËMRU••lS†¾ÝšjëdU×®’©¯¥Gõw+HHż,¦”bzfš;wqÞûØÙ™£3MÅ bœ s +t,ƒb­dEް— qVã4ÈH“û¡2yÔwH陌"J(„DEaˆzöÔY–—Vé/è<Ç3žx)¿ôßß"€ŒdpÚ°$ÆqÂ*8zݜۢ|i[Á«…¨Aß8TŽ@8‘äòë^qßMÑNp xTÃ̧94—küððB”„«R–CŽÿÒÿÍA“{ˆŒÇiÎðá¿ùóÑßaN€õg}‘ e‚YåÿÒ°ömz¼ˆ†'¶”kr2'H“¿–ñ;ô?Ùÿ´§Ôí -· †¿€ {ï ^Ƽôeo`v—`T,c}T:è’ ÐkÖK•3'Wú†û–"w”Ä% ¥envO~ò“uRV¼ÛeîáEɼ·¯"ž|é ™ÕùY ¯qc5çr¤PäY5ó êÓÎ$H¼ghGxHÕõyÇ ÐRâmÉÞwŽ( öÎ9„Ò5RK 4G‚C‡à Oxµ½ÞãdFSÀú‘çà±#|ùoþ)cð“Ùº…56*álEQŒmü*KÙ³gû÷ï¸èr!---Õ$œÓ§O×CêååeæææHÓtLõ÷á‡æÜ¹sdYFžç\vÙeôz=~øá±ì§j1;vŒ™™NŸ>]¿Fž‡öR ã즌µ" ¶Í«Ú„ÅI‡[µ9ì`@Çô¦¦0•äz#i­qAáæÿá ofV&X†Hg°¥6X…š‚M’ûÍVf3i¨«S­°Ö ÉK^ó*Þðß?–‘o—l[ ‚+£(§°Jóê7ý8ÇÜCÊ(´ª€“°^míüY ™Vµü·l´kÃˈ´¦Ûé°²¼ÂÃG¾FQuÐØN×ÄŠ`ÍlTÄË^öV–V¢¤Åæ‚(΃¹”ÁÞ¢4U«=> ´AaýK1æ¡´á” YVÐIRF£ ëšÌ\™ÉUg­5QÙ ‰ã˜›o¾™ý]´-‰ zóîXvk :Rüû7þÿãW?@Ôí2e¤:Âø ÂPS$­( fgg9ÿüóét:Xk9uê'Ož$)ÛVU&sàÀŽ?^·”ªù…RŠõõuæçç¢a4ªÛÃá3gΰcÇ®¸â Ò4åÔ©SuЪ*€Ê?üĉ?~|L‚¥ÚøÖǺ(è|l邨žñlå‹^U`•‹a1ÊQB© ÆåU(ssáB{ÒnÊt7bÇÎ=ÌÍÍÑ›ê’Lw±dd2L'x]¯;ËÐdý>fu‘þÉeV××Y^^"Ë†äƒ _„ìÇæJHTyí”dÆ •Å2¼µx«É¿*¢Â»1c.o-ZnÈä )q…¥ö,7|îo9ÿ² K²`Ù‚SâÿD†é_&¹…o”àÌJŸë.6óI këdQŽÅ•[5 Pª1èµoÁ.›m«úÐD’êˆ vîá#øÑ1Ó²G²"x,Òm){_+ÁÏÿîðÉ?û8 Óž|8DGqpß,á¬uFk€îkóðà(Å$5‰"bsâÄ)¾òå›HÓnÉÈvß0@Ä7pnŽu TÌÿú«Ïsã?Þ@Ú³Ø"'‰¢ þìK<Ü61xá’,)BPËÅÉŒDâÈ ‹TºnmçypÀÔR’D™s¡úã6´–|å+7ñº×¾æñ1‰½Äz‹Œ#„s|ËÎ]àUWÁx±ÉI°’ßµk—^ziýxš¦ìß¿­5GŽáرc\sÍ5u»©Ù>ªt£*DPó=ªìð’K.© |RJúƒ‡Â9Çm·Ý6*4WõX}à{_ÊOjkì&Ìz[J¾‰`™TyT3‘1ô• –A©äSšxùù©fvL³kïNœt¤»æÉ ËêpÄÉÁ ùò"¶È­­cF9£õŒÌyŠái|ý‹ ²žHITáAÿoÒãBžÌúÀÕ)ʃRiFCKAaÊÏ)%²«ÙÑhaàay™ø£<í…×”$¿@%õBPø¬¾ÙÇÃø¡ä높‚uáyÖë^A"§)ò“‘§3²¸8¢(%Ðe i؆a·¯ÁZ1Òõ_þò—«r*ɶ Å~Ó{4lÌ.”w}×Ýüü»^¤ícµ‚" PÕ2›nVPcHËÆ kR0RpnñúÐoñÌgý«2[w›ÚÞý ŠÆFFÜ{ø¯~éKرwš|”r“L¶–pΠÊùéøZɃåqîB5Μ ‚íJõ§În«¶y“OFùÜN'åÖ[o«gˆÛ{âÅFd-ši' a˜…ß`ãK—ÁrˆxÙe—ÕâkkkìÝ»­5{÷îåᇮKccL å ¤iZ›2 !X]]­çQq×]wq饗֤@c gÏžåÑqðÉæÙ¸wykŽQ»–\Š’Õ36Óh'ñ4ÆúàìvÛ¨”jà GCº½Zkæçæ‚iUš÷|˜á`Èúòjé×!0Ö†at‰_ª ®¡å~V€,ÁË8‡)J„‡-×{9´³¶" DI•¥ô»Ôýíp3}ð®.+ }ÛLX”щÙab^ù}¯æe?ü½gÑB!k/"OôaÖÃý*7¯PµL‰—ßÿŽŸæÔwÒà jç,¹Vxã63•g~“e@=çœ ¨ªríH%±CÃß}é‹Ð :Q6q$›‘Gè&/ï·áXßðÒç½–©he™ñ(ïÃ죱v›û§–Ú˜P¥Ö•YµðàŒç•¯x5o}ëÛ6ÄÛ âð>¸"VÀ O@9f¹ã_?û•ìÜw!¾X¬¡òYž#J±Ø ‰VY¹3 Òú$Jšííj?±á¶èd —…¯[…Õ|Öš°µÔH-)\ŽE©ˆãÇOÂã!€ 6 gªoQCZKÖØVvU ^rÉ%!X[[ãþûïÇÃòò2W\qJ)ºÝ.ƒRÂ]kMÇ!겯B)cê £:˜G£·ß~{ÝC­Ts«ç?ZYܶËm£Çší‰6_£ùûmxoÛ·d’<}õ»ëëëaPïYžcÁ–0]ïr Eé5^¸ñEYe)U ’Ò«½G‡µx;íC¡‰®iÚúzJI.‰ˆ]Åôȳovž_þÈï–ZP¡´bL­ç1:,<™ÏQCżýÃæÓ¿ûÛìJc–!²kÅM@M LídÂæ2ÒDHäúˆßþèïqù•WRË”´xRYÆ]²—½-jΑN¸úYϧ'–Rãm¾É°¨m7[¡'ÅÂ\Ê™Ou{$iÌÿñÇÏÙ&4!ØÀ\@ã¤à ßÿ6Œ;MG[òÆž ¦Y2-“>ÿ¤–wu–Õ­Ñ q(Ýn·ö'‚0|Ϭ-EOa3bnHIˆZZZ|| °&}¥²C4=È]]žÖ– ©æ={ö`­åÈ‘#u immmSæRõü:à Sµ«šCÇ,ËXZZb}}½^¼M±¶šG!d)£"6y°·3Èæ†˜œ½úM £uoãÝ'eªí€Uÿ=&/ùÀ†·B2³ ®ì2%ν+×xíêºUðäfËì‘´‡&Ó6ɱM‚j~þH(rS0“¤ì4ž/Ü>)u~¥Ö6c ³ðBó±;¿Æ¯ÿÄ{˜Ja`Öé‚B‰‰„ØIÌêI„²Î¶}VðïÞüüö ¯è­rư]NÌ€¼÷( Y^ â”×üè»(éGkÌ “ ÷ÕHÄšA¤]UWÉ_›øjËÖðÔÔ§Obqñ\-½±ÝÌ,-,Ö ”’ü·_û(×_ÿ)æç úý5”L[û)p§¬õ4ÚUΤᜠU¿ÖšÑhDÇôG#fffjj^Ê*%IR ½ÞÃlH¿¿¶mÈ£ÖE033‡µm‚ft­¢s3o²T«Å7j{×*èT™y%^ŒB¾öµ¯qøðáz‘¶[QÕcu©ÔXv=F|l<Þ”{¯>Ãf&±Ø²r™¤4é jàÕçÊóœõõu¼€¤“†vˆ,M”¬ÿÛO¨|¶²ümºµ‘cmÿôælg’ºqó¹28U1«ºÌ->{ßW!-Qz"ØrzÉc#³Ðü›¾Ì. •‚#ËÞôßM2­……B2Pr,C¬®×#Éil"€–ˆÃŽÐ¼ð/ä¿ýîoÔ`’ ÅõXµgÚ—E³ qÊ~ïϸñ>†µ'™7ÖT€,7÷U»iî£I•¬µ–¸$Î-//sËÍ·0=3ӪܷÉiçƒÎf˜ þᎻù™wþós¡µ¥“™Z¢¤Ú'áŸq‰jTû®º6¨ UU݃úÜ„ @¥ìÙ¹àu£JI% »gYz| ÌîžEF+¶Jë`«à±•ekÅǨX§£Ñ¨>Ъ€QÉœ¯¯¯sÓM7qß}÷Õ»Éò®‚J.\ÍAƒNoì¦L ºÁ“ä0&Í2ÚÙ÷¤CfR€j·>𲓔KsŒCL^0Õí¡„;¼Ã{uåÆs”x+É•&Y«ºfÍÝ|M„Qu-›·ƒ’P£iq–D%Ä+†ýåÇ™ú–=xaêì²Bœ=&'D9ÃrÞaE™£q:°ôŸýœk™ÉûDÙ/^ ¢ò£VmÒI²ú®l9Ðð# g³SÓ,ÌÍñ—Ÿùßá¹[0±‹AáÂXPÂKî;tŽw¿õÝDiA,4…5t/Kf½* †x„’µ—’Ê‚Œ4^+\DJß÷¾÷qÅ3ž>Ñ^`[ ®D˜ó„ãÔ²áÏ-{öJ¼ g—+r"•Ôü荒Â6îíi´ž• H;ÐQ§K§×ÅKAgªGZþ#P¤I—$)͸¼'-!¼y¤d:ét°1A;‰#¤×ìÝ{=¼= …ÿ$6ÏÔÔÇŠé$‘ãÉ_¹yΜ9ÃÞ½{IÓ”«®º UBÞŽ;V߀Ê#£*¬nBÓò±=ÈkgBíVL[â}’AM»5ÑÜðÍ×l÷¬'eýc ò²܆~Nâ‹´ç,EQÐï÷kØq“C³ÑÙ¸ÞU m‰IסY!ŽÝðF ¢è‚ %’¾+˜Ö)éJξó'¸ò%Ï h Ò?öie5즬(ˆL—g¾á ô——À["ïÂÅ,ñã÷»ÝﯼÄÇ® MºHG$iÄé3§¸ñÀá5 ž9ñÌ#ÜRÙØ›£5‘É8Úw\ýœÑ]â­Ãšqošf sSP­ftdÊ5¤Å+ÀÀÓžö4Þýîw—¯Á¶ÔºòœÏéȄ˾í:vvGÁ³¥ÞX‹PÁˆ-íÄå55‚L—Æ ?ÛK3ÓÓ¡ÅL¨øŒ“¤yž‡–U’ÒéuŒ†Añ"IPUÕ'%i£ê½qš9¹¤Ó]®xâÅøØ°^ ¿ä‚o¹€ûoº=^ÖNÕ¡}ôèQfff˜žž¦×ëÕÙñ¡C‡8yòd]æ !jvye7Û„O [õð›wÓ‹`R•Ñ–^hÂ3ÛÁ¦ ×dAÛnOM L4{©^¯Ê„;Nwé÷Ç¡fù\©¢º–œ~»¥6I.¢y&YŽVÁ0Ò aioŠxäùž};ïzÿ%·ŽsÛ"88Y©xˇ>ÌŸýGbÓÇ—’;•ýnÜIoÓ!×à>ÔU¬Ùð£¤béìYnø_Ÿá¢'n°_ IDAT]Láz›¨ÉŠJ:¿ü t•på ^„c‰N–Q”k@4ˆ›“ÖQ½ÞKÑÈæ¾Ñ‘×ßy¦º¬±ÜrË-c<íú¥TÂw½þgX=yÄ2R‚àÆ5ñ¦@£ËvT\Wþ•6]œtÂ<¶Ô> ‡-,FÏp4$Ës²Ñ¨L<4ÃQ@JÒ”N· å>ìMO3;;‹7žÅÅEâNÊ|á¼'4Y•leÀ³Ÿzåã7€œwÞyʹƒe“¥lu0ÝsÏ=ìÛ·$I(Š¢®6*WÀæÁY îÚ›x’aó n÷šÃù¦fÔ¤ÙÅ$ØíVJ;£oÏÚ¿©5ið> ÜV3í÷ût:ºÝn) m[ILšOú{“Úf~‚ éÄ,Í8œì¶í=ŸÿþÿWX”'Òo8¡¨ S’?½ñ6~ÿ§ßÃt‘HÉÈe¡S·Úƹ=íŒ[J%1×>ï9\úÄ' ±¼ð/D¡¿d÷ÜΠ{ãléN¶ùpªþû¡‡;ŒÛêµÍßc<·Ú “n~íø×ÐÝj÷f›A¥0j‚f&>Élç‘`ÁÍ`1©m6iƒ¶_·íÂXiƒâ¡-«&âòÇÐUÄV‡ã¤ [Ayõ”Áƒ ŠQ*¢»nøË›>…ŸRH_¶·„%ñr›0Í}:t/%__<Ë_úJº‰#Ɇ…7H´¹|ÓŒºQ9·¯Y¥M$•¨g=i¡…â²§=…·½ëXé‘¥­­Ø.:W¥V$Q¬‘Rð ýSþâWù]Ã~VªÂ²)¡isUUnÝ+å:ÆÖ  öÆ‹‹‹|ä#梋.Ú¤ÖûÍhaЦJfåùÒ쌔$×Àû1Ê2Ô°ÏÙ³g°6È—xþ–(çÖéà©$X­3âÅ/¾Ž\û/Ðâq@æfæ1ÎÓõ„*]»&³JÛ@»$nVDw«öΤpÒ\¢ »Ü|HŠM-¨v «í øHœ€¶¬E[âº]e4î­Xï͹%JCˆ  rS‹­ h¿çv+¡´ší¶<ÑéõÊ †¦S‹Cþø³ŸeþâÝg%l5!ˆn _š¬®ËsŸózº7–L:|a‰JW¹:‹.g Õ5lû¶!(l©ITBV…óHëéõRþþ¦ÄùªâØf}~F1ŽNñá=o{;³ó]L¾†Å"]4Ưª¸Jà²RPzlJ«u£Jõ%-?ú£?Êþðo’xùfµ0-®ò‡¯Z”lÃ%$+Ü'>ñ[Y˜M0ƒ!ÆÔ°@ø õí0׈PJÖ§…±dE)‚8k‘eŒF#úë+u[^Æy–£µBiÍêRÙ“[ñd„ÀKÐ" dK©°Î„*Ö”’ENœ¦xk¹í¦›xóë_Ç ¯ý7xçP{øñ@<°cÿ…øþaÚ¡ãÀ‰Í¸ç­Z5Íþz;è´3éö¡×žU4¡¸Íïíùä b+èíV$Áö@½jelÕúz¤™MV àÚפ •ÇÀÔÔ°Á•i·úmÎÒF•Mš‰$QJ^¢(Fd»sÁ/ÿÆorÅ‹ž‰s-¶gé ½Ã)͵?ôFäâÙ0Ÿ³AÐÎ6ûñ-µ€v‚3Ö Õc-It¡aG9·¼#Hîo#žG»qb›cTÂKžûæR|1¬y—‰ˆß4«ßSÕcrlOT-Ú –:77Ç?øÁǬeÎÓ ÁÖu[ºy–j ^+ ày/z3sóÃ\Ïa ¤1µúEè$hŒ±ä¹Á¹ÕPŨ ® µF@Ía«?·óDqP±ÆT³ªu©dp{Õš,•˜…Ç–ëÕ’[Q‹)îܹ“ÂļþÕ?„ó)ôv5$|ôbµÑ'Ò€¡ä(´úùíÁí£ nEdk³b›‡Þ$R3ø´ÊI•PóuÛì¤!y; MzÏ“²ûIH¬IÕÖVÿÏZËÚÚSSSA÷«D­5ÿþ¤kÝⓘԛ|™ìT^ù¼ëxÙ½©ÖBrHäv”õ!5?ñ‘rðÿû,QÔ‡\ø±ÉÇI%G£jÇÔ™tå6؈ j'¬§›¤¬..óçÿ fççÊsÊoOw8#]ráÓžÅçVñ¶æ+[%<¨¥Z”ªµœªŸ›äÌ™3|å+_yÄ–ó7£þô^m”Ã|Û!ð©¼äþóöŸü8tß×éF /‚ÎUQXë˜bCF½ü§y6EJa¬+o{°7°n\q<˳X#=–$¥L‰”‚ÑhH§Ó¥(² ÿ§“z ¡P*ˆz:ï9{ö,gNœdµ¿Ìtw†Â(¡·a÷Ÿ@:w’wüÀ›ˆvÍ3»îXÎG(ã6ô™&´i†°Õðnìð'¨¶ MmÏåvûªjÿL"Ó5 t[1J'e¤ÕBjÎqÚUT;ˆTF1ÕÏÍÀ7iv3&•=&¥í‡t»ÝRM9tÐ|ÿíV]m•[Š Q’UD)f|Ìþ™Ýü§~e!S†¤øHl« áEåÔ ¿õ™¿â7ßþSLuRlá‘H¬1AqÖ™Æ=lÞ#?v?7I]hãt“„|0â?½ó¼ô/§p ZcÚoƒÍÜšD èxø7?ö>NŸ:ËT¾ˆ’ž¼’â IŸ›&ÉmcMmšUè£(ŠY]]åSŸú]tÑx’FóšTï­ñ[5ß}åZ9n³ù%Ú!ÄHXÍ <À½÷Ü×ﺋ»ï¾›cÇsöÄ ²ås(ÑaJO3­Ö­â¥ÄÚ`í,¥C¢ÆAN`miàV9QJYKµH¡Æ¨J)¤ÖìÚ½›$I8}ú4º\_M·B)%ËËË3¢y¾9L©ËfëñÀûxÆÓ¯Dkµ-ƒÇ?)€;s Lïš¡o "áZmR'ÝÊ7½y87ûÎív‘P2ô0µÂ‰*Ñp7‘NÍô$‹Øf©†¥Í0ÖÓµ¶>¼·’µh¼ÛÜ{Û´ŠZ”¡1Eõ@ºùüê½l’j)ßS¿ß§Ûí²Ö_ߌû*4ÝÑšAyl#À ‹ò5$µÀŠŒf–.á¯îü *Òx<‰ñQ0µÚ·LaP‘b€àîÇø±ïÿ·ôz1Z ÛË›’DZŽê] V´ L¨ûÙFÞ’ä†7¼ò5üܯüjù’€Þ(‚@Ì­Dˆ ©R~ÿO?Í_ÿþïÐéxd$‚|‰ kB …¢4F×ok&dqœ¶:ÁZ8MSÀñòïyßýÝ/ÅY .$"Y™ôEe:C,5Ò†™©÷”à/+GLœ¼ ò#à ÷ÜÆ¿|3++Ë,¯¬póM_áä×ý2ï(]Þ;BûGæ6“sLu§ðÞQËå€]!¼CK‚ý€Xãð8Ò4Á{U¶¬äA×¥Káà 3’ªhÌßÄ•Á¡IN k®”*réÁÙõXز£àQµæUsR-ùúý¸ò[¯®”J·å—ð›¸þæÏó²k_ÈìÂ.ŠÁ%<ÂOf_Oª(¶€73ÔÇiç7ý~»-ÓÌÖ'Í$Úó‚f«­Ý»mÿÜ®¶µ°&U[Õÿ¢ˆéé)’´ƒSäxïÈóœ•Õ5ò,C5Ð;íS*,¥ ¾>„§FŽLj#4T7qXÊAeúÔ sCÁ—éKÎCûíÙ¢ Þ$žB(™pÞUÏ!;zQ8¼1H-qÆN$Y6×K»÷¿ ü!½8e>îpçÁû‰ºÉ¶9ë±ÒyɇŽsåeOe~Ï.Šá*Rä8ã‚6ׄöñ$¾FÓצº>R)œwLuz ××9·¸„Ó¡Êö¥îX\šW8‰Ð•ªÒRläͦÌVÏf7ßr+_ºí+µkç—¾øî¸åŽ@ÆS¥®õ(p‚0ÔŽ#QûŒ[k±Õà¿ `JFuµd­„I•ÒD: ÐÜ|¸±ß¤g™7å’—¥ZƒŽ¢Zì´6«¾çÙ _Œg“¼ÓØÅ¹¼ÑžA¶Öê¾>ç­o{+ïÿÅ_)_‹m ~Ô $˲2ú5PK~ëùÀVïVfãjox4Áy[©6·a¬h¨æ jWíj©í²,qÒU-ê(Š˜ž™Ã{ôûh-Ñ‘"‰uùßšSgΛÖÀ{’Iõ÷ cètƒIW%Ñ&NÒÃj~¾àÝ,ñJ =$R1¿ñð!’'îF[ùÉnÇ\‡\yR‘ð”W¿ŒþÑc$yD*Ó[‚[­¹IÕªRŠHiÖÎãëÇN ÒhÛ˜cMÜ2"'8g-×^û<¦RŠÑ Jz²QA¬¢M-ºIÕüØÌ³I°Æ%1‹K‹Üzë­HLÊê¾YùmqÐçK7…c'ŽÓív ‡|á‹7ò™¿¾õõ>£AŸ4M¬­!½§§åZ…8NHnɳ2hµŽ0¥V—±Þ¬uŒ²Ð~T: ^4eЫ¸S• „Ç•„ ×c3@Sä \ÛU¾ÁW‹ÒbÖ9‡q.8 )}t,¬¨%ë›×¶b¸Wü‘88UK,¬#î½ûëuíË­yÔ"J"¥ñ‰7йfv¿äöÑf7F &ÛÔªjV“PVíŒ|+Òߤì¿ùüvk®™µ5[GÍyFµp³Â`Š%*(‰{$‰"[‘t{LÍL3XZ©åÄ'Á~7A#›îxÞMÌ· ²cÃt¥±ÞÑÑ ²?âo/þ—ãœÇ«²ý³M†Â‰‹(½F$ßûþ÷óàçn§£úN•¼ðÆ@K‰`’ ”s®¦‹ŠÛ¼þÃ¥þöú¿fnïn ý͈ ¾Õ¥¨«Àq3¨öH@#©¸îÕoFHÅo-…ôÒ.ÆZœ5›xVUòQ1¬ÛÉÇxV²ôç¿øÅ¬ ‡Üð¥ùôç?Ïõ× „effš#‡Žrúð„R(©Ö%)½©9„Ð$V03•ÇÒ…™ ›'‚’³u–¼"„­^›—Ãk*  ÒÒ¤ƒsÎD*ïQZaŠp°;kñ¥Ân âJ³Ql™¬I¡ÇæŒ{Ä{!ë ¦j'W?%e®ånZ)iTû• Årï<ºôY™tÆT¯YÍäjí:ë¹ïþû{ÚoKy˜GmaÝt×<çš+™›Û,<Ö»ZÁ³yXOPOjgµ¹ Í›¹)ºiÍìì,gΜٌjéQ5$“,I›šOÍ›_ «ÀR•ªÍCh«Ã¹Ýzª•7Ë›-¼ãü}ûȳœÕµ>2Rh-(ò!«+£úó4uÀšs±L°|o•ŠçVí³öP½Ùž Žt"Å.—ò†¾”ŸÿäGZ‡övɹŸb@3BÒáúÛnçå/~i’@f‘¶ML°,žÄéBà” ïÁzl ñÈbEÅ÷¾éÍüæoüÆD_˜ÑRε´'ûºUäl˜Ix‚hb.b~æ×>ʯ½ç=Lux;î[QYŒÙïFmOkmV¡"RáõúýŽbº137‹Qš3wÞ…±–H*dkÀÙ  Õgóh ó·rŠküe©ü™œZ擇ï€nºmÄÞJ òõAÁs^ø¦§ní,B:2-‰PèIðêM^ÝJ†,U&¹wžNct„æ‹7ߪ4¥¾¹Áƒ¢×V¸Žº)œC ÐpÁ¯—BŽ,žáõ¯z»v/÷éÄ)ynjó±z–(| <ЀÁ{QË·Oâµ×X@iÅõA]ýŽÖº†­6“¾z•-¡<ω” – Æ’Û$*Ö•¶MæÆZG~ãðµUoKOœ–:€hÎægj#Ϛ݋ö ¼Íukž?ªD£FQ4žˆª k½.ýf°N… mv@6ZÍáùG:ÂÎ;ƒúÁã‘ÒíuA ZRBÛI“Ô<' êš3Œ1]ý H®­R[}=’¼H›Ñ|~sa5¢fV°Õ€½ùÞâ8fanžµµuV×V˜™›EJÅÞ=óô„áÛ¾í™|îöÛAI„VXë6 {­,gÒP½ý÷' ÍùÐD3Š˜>µÆ ·ÝÊÂEçaß¶øòG"4¸òo$=¹JatR…wAôÑ·ÖS¥šÛNbêûkÇÝ+…¡4ñÐpã=·—2ðüÆÂ “a¢RÙhãÔ0ã¯àø±ã\ãg¹ÿλxèÞ,ž<Éìì,¦¿BŽÇf¦î“׿O ¸wõŒ×m«î* nfôUÅÑ„º7«ßjïgY¶Ébºº/9®r×Ìó¼”ö£š_ä £ò.·> œ‚ó¼i¶U»Û4t¼ªYR›m? X±•%usíL:¯Úù­º%u+ÏoT,UÐi¯ÕzO ±äî»ïäš«¯Ù¶@ŽG 3QvÎá†9Ö¤*ÆL(YÛe²’* fè(Bë8hÝgÃ,g0Ö”Šª›Åvy×.•Û™yû÷ÛbŠíùL⺠ íÄ6‰ínA+%%Ͼü Î{âeœø“?þ#æ¦bDaDÄZn9qì$dÒ¸£lZ¼í÷í)[ãt¤)Œ©{ÎMßô±ÊP‚v´F#X~ñƒäÂg<ãËñvA9ƒõ ¥B ˆ±€â ¿ø~Î|êïˆwXðŠl” ¿óˆ†+eAÔ^—ÍÙXÕRñÞ” ——ùíý{.¾ ÀO‘uÏÈ—´f[ZµT% Íh£‘ÄÆ¼±å}iß<Ž œ=}šÕ•Uî¾ûn¾rË͸ÿ~Ïžbõôi²ÁãÆZ”h‚»ÐÁìij¶‡0#œ-4RH´ŒBö.%:ŽÉ†£Rœ/8%J)QÕ![Nä½ÒHQÂbW¿ïñ¥å²iøìxïW¨¡Û& Á¸ XÆ¥cÀ4á\IŸq(©0E²†£‹’ *d¨&d [ =Û•I“Ì8¶wÊRó÷'íñI³ÍG‚ô×ɤe zcn)KMYfÜÞº »íªÝÚ’m¾fsÖ*ô:=þþ‹7òCo~ @èrc?^f »žýäÑ%FýAørW¿é Wh¥4Mév»á‚W%¢€ÕÕU†ëÁûBKU{6<šüGu 6‰s[ NšË´¡¿[U8“Z@[e£ f»;êòñÏü?øöwP ×­-süÌ)œÍèõ¦dQ’ŽÚÒ-íJgìf•§jó*!'V|õ†qŽB†,û<ÙáUÏ»Ž÷ÿùâ•Ç˲öÛwU™=UY÷(¹éø‘oÝ=¢ÕE,ѦYÚ#µJ'e˜™5¤:¢£Â0õ¯~¿ùÿ~$höV´@¾”Í(À`\µá^ˆ€¶È„N¬,rÏ=÷rï½÷òðñcÜwÿAŽ?|”ãÇŽ²Ø_ìQ¼µ$:BG*QàQ©SºVn¥RÒ ”R ïÊ“wLOO³²´Œ.÷\ÕjÉFƒñù^Y‡A¾+ç&bK®H›Ÿ›²ñö=ØJGnR¶¾)yšÐÑh·kÃuiÉ´ˆ žêw›í7þêÞ<ì®ä®ïüTÕ9wyí-õ"©µô¢–zµÛ6;ØÆv€À ¶àÇž „É$CÈ$™%âöu c Á€í6Þ»ÝívïR«¥V/j©õJïrß{Ï©ªüQUçÖ©[çª3Ï“ÐêçÑ#õ»Ü{Ï9UõÛ¾K:ŒïhÛ¥gOzð§Äå.%Œ°ÇuMa™™×¦•’*äÞOÝ Œqã//UÅ—@¾úû¾Ï¼ÿÏ`³ÏIˆ[ôÄýn†å%½­äe£sU[Ca½J³’Ü÷Ü9^çÝô˜°8s¡¨éOÚ‡TL$½œÑVx6•5ô¬ oGßÈ=~­+Œ—ñ–‘¾’ðó¾ô¿•ñ˜ãOäô™§9yæ O?Á™3g8}ê§NŸæÂÓO3ÖRöû¨¢ Wô–}jã¸6µ;>™vFÀ¦ž0(K0Søi\¡ÇUf ý§¤Wo–’ª®Â*òë±Æ T[ØSª=ÐõÙsüµuÛÖ“ÌÎÞâ€s–âý›Åãg–ê”Í ágM%¢5¯íRôŽ÷p$ÒÃ=no§Ò®ÙÛ´ê¥ípÉCRÕ¤HÓ¢§¨tÅʹ‹`Ç ®Ðò£¿ö^þÍ?úqе1µrŠ˜HQXJ)jã‚J¯×‹®mà–²PŠiàüùs`L‹™¶“R’bz0ÄDÉsŠ¿¹²t0†Úf¢ppÁ04UÍÂÖ-Œª1“õME‰V%,ÚXŒUHAÓ/N7LW62˜ÑͨÓn+ÖÒ²Í\m|îäãŒw.RúÖD¡ÔŒžÙ_i ËZØœ7–ÜÅæÊõ¦;à…ó¬Îø.ŃX¢¤™Õ)I) .^ºÈÉãOrý¡T8òÚùµK¼¸²ÂÚê%ž>ó O?ÿ>y‚ûïÿ'N>Åó§ž‚‹ µãŠí‹‹MwH/ÛR°ÒÉÊSidY0Ñ5J Ï;P”*0R215ý²‡ ƒáTÃÏ”TÔV·£iZ%PBPM\¥ÛÀLEud¼ zóÿº­ Î Âë·õK°°½œ‘YØcóDYç©|§óÊËÍ Ó$0­@Rbr@â=›¶Ñ³×ï×€KÜ$…e†Ž·×]ÇFpqm…K+Xôô^vä%‹•TÕ˜…ÞUÌdÒ:PSb³»tB€R‡¹¶ KGüÑU2–B) !0‰ßrŠÊ!£r±4kÉÍFÒ ”rö‡Ë¦:«k‘¾•f­qå¼’¬n¬!”¤èTµF†ìNJ´©°¶h¼˜§ÒUÝßÖ†ö- ‹¥Ò Â6z”kc~óžÂŽEÆåÕZ¹¦ò¿ÌŽÄõDÀä‹„ מ‰D!à[ÞõNªóOÓÇP×cêÂb7'~uoÒœò@ ïB`jƒíC¹0à{~ðû)v]Ï#?ÂÓgÎ0^YóçšOØë/°eë2u5¡,{XmØÍ"ãeßr5%%#3nxBW”Ú­ë©é”Å`ГÚUÛJ"…ÂjMO˜Z;ùùRÒ7b¤©lmØ©öí%‰ žTP¸¶© k'þg5Ôº¦TE£¦uí¨/Ñ Ù­=7k#>ßÓ½ÒÜGüž–°Û¨ÌQ·×i:4N¥…æð¹ ~-%§ûÇDïÙ#_e )ýYåæÖK÷§NžibšCsåTŽ1o­ur)þ,ˆé½vmI8~ü8·½õe)‰ð’È5ËKH[1¦@T‚¢sôa„u2V‚P>3«']#Q(,{ö^Ãêñ تÓÕ/9ÈnnV‘H§¯ÿ|xˆ]z^¡TMQZa¸ˆ•ÖØ&ËF8è¥?Ž´h ª9`sƒÁ\U2=%Úh2;-ŸfË 7Û¨-•Õ T‰Õüä{†[^w7U­) ·é²Ibþ[¬IãɈÖWx8© ®Ü1Æ‰× «‹‚wüÂÏðç¿õ~¶•ážHŠZ tYÌjõÁŽ@˜—5~ÞEÁd<¦§ŸüðÇšu1‚,ÊØ IDAT¾1°u‰¢œ"“êjk,›£ñLݽ”þs¹ o1já*(áPcÄWH‰®ªö:55f\· Y&ª ¬1.9ðbF:h¨1¶¬Ó‰ÂZ÷žÖéA¹¤¥žzœ·Òé:…‰Y“²«ëæÛˆ3¶3÷©ÔG$q»1­œãg•s«˜/–kµº ¾â4¼VXZªßV€ð÷ŒFåÁµÜ…hÏpbJÿäþÚ‹Ö½ê¢Ô“ª5Oaû!hˆFqÚRÅÿñ8vìö—£ŸÔåÇù8tàÕxìo”Û†¿Æµ1†~¿ï…Ñ$ƒ¡ H)E¯ßçæ[Žpø¶£˜¾§ùgœç¡ ҀѹLeÓsÚ\]ÐÏÜ\¢<’–XJRì’ˆˆïU§7yô:ñï„y“Jæ'ÂXFhŠ^É6Sò]ßñwø†ïýN§öY*çàöß!‘y#¬^7Þ~Ôº@.”ò7[ð'ç·ÿáÿÎUÃ’IgÛÇÏS{á»øO ÏžÑZªjOƒì¶µÖIkL&M{6„Øø}ãçCr¬aäZ ¾Wkغ}_¼Èd4AF®w¶Ã$õT˼0XŒ™íéð+Ç‹H\NV%~è)iožqV.0Ň^JVË‘-sUÓòòr3€L9-Á@•ì°%¯¼íþù¿ÿé¨Íe\ëú¿t×X¤•M‚”ÔX§ž*Àj ³.œ_á§ÿóûø®£¯eXh.L.¢˜ŒâëÿŽŸqxöRJT¡þ0ñÈ·Êgÿ…*è œÊq¥kj£S¡é¡a]N&'¼^Ð_rFE®%e­möJ Ú5ÏXÐahT„Ó5•€ÈJïG®UÓ¶>˜[킹°Ý|¨”•Îc.ˆ«¼m6êÚéëuiCåLÞÒ Ú8iH_Ky‰k'¦­_)¥[gÚ8ø°'VZ—ÒÖ[H,‚kcXçi›=†–§­°ôžåÚïR¸×ãG¾,ë—ØÂÚ±m§cÊÊ=qÝœ˜`xøµ1 ú}ì¸âÝïøþÆ×¾oy×;6Y^^fc}ÌÇ>õ –YZÖY¤táåþN‘´¥–nˆyäŸx’Úã¦HŒÜœ"–4H‡ði&•’ç)7Z[RºÌdÒ¾âÏk¬fIôè¯Nø­?z?•² ×DXw‰Vo9±je¶³šXîû\ÞŸÀg¦+Õ˜§^xŽ~ˆ'ŸæôéS<öøãœ{þy.ž¾À¥ÕÆõ&Õæ=¥=ƒ­G,kÉ8òÍŠ[±äKNª&F²h£ ‚ñ¶mÛ˜L&¬]Zu^™~™:ja&CL×®ñ6¹qr`¦†j6Áô[ëZ„Ö¸ŸCLEãGšÈ¤$DtÝ^zÜèÙJ9E™87nîGЕJ“’tÝÚÀO¢-ñ>cͬ˜©{ Òû“›™Ì<7 ‰ÛÅq‹[Iià0 1WÙ‡9Ox­¸­6eÍ+ÿ¼§l6ÑØK‰’)K=Eqå:)t?åƒx)%/¼p6Æb^YÄbÙÖ_€!,” 7µ²3%mKÚÜXl­YX\âá§Nòž7¿‰7~ý×ð«?÷‹,ˆ‚zs‚K.nlÎ8ðÍãt䪊œbnø™ ±zßqk$å†`¹öI®ÔoK0O5|rpß”ÀØÅ|MuÆû*ï¼æjž=û¼ëë&‚NTN1\Ýä÷ï¹µk ááÓÞ-k…gŸkªÆ¢<ÙÉ‰Ö ÌTVˆf35OÀ©K«|öÁ'xâôYÆ'ï牧NqöÂ9N>ñ+«¹´r½1FÕ¥5RE¦MBBOQ PÂ"—èI…1 Ä(4³,ÿ“öÃC%Ú´W…¤OPJ1ZßpÞ,Â:=,ᮣԮՄŸKic©'•?ÈÍÌ>Hmæ8Ët ”JNgcÁÏøKÖ n†F2Y‹ñçjø n$îàÚÉú+Ër¹¾–¢®‚ÎSlì6ÓB†fvÐV|(£C]ÌxøÄïþ¾>Ó ûÔh´•ûl²P語Û¤šz9ŽIJÜ‹“8çGfE!D$Ôð»Î—¤@©k«ä|3 œ8±É¡ÑR™¢ª2~Wsaå"#J†3íò¿jåå+!èú0,X7UkãÄv«ô”\øÌçÿ’¯ÿÆ·sïƒ÷Ó“ãÍ1ý²‡6º5œŽÙ)=íçææ)ü.ÞØ9¥Þ\«¨Ë‹Ãfج©@[šÏ“TéÒëÊ][øÚÂÂ"z2a¼¹I¯,›¬¸ù|B°„ä½çsëëïÆØ¤ëµ Òú¹„Eîë2,ÿ~ÏÕ†§Ÿ9Ã¥•ž}ö §O?ÍÉSgxâñ<ûìóœ}ö9ÖÎ>ÏxÝ  ýþz½’~¯Çd2AXÃ)©ÈRb ·&šû VkŒq^ ÊCŠÃÇB T»åãûÄmÍÒ™"ó.^¼èßÇSCÙh|5)i†üé™][¢Å;‘.ð$bËSmtËC'w°ÍxÑàØÈSU{›%ŒÎpbÛnx™¹[üµøÀ ÷4èJYkQRåÛcѼ%>$S£JÌ"#)§€;+)?-ˆãJ#UÉžg—ݵ¿ÓJ§K 4'¼hLèT„÷YUòœXcš(ÏÚlû¶–tö»<ð¯¸íÕ3ÛËŸba",K7_Í–ª@_5zø¹¬ÄZ‹õòp0`mmþ ”еµ5½žªv¨åÆsŒ®œ"3RF×À=]¤iÅÒ…ÔJÛK9Xq~›Ã²w 1ã… ›Â+§úý>kkkw®wl66Y›L°ÒËgGqÕT¬\ºÄêêç^<Ï™ó/ðø“ÇyøKqöìYŽ’§ÏœA?·ê E8ñ¾Áâ¢T^ÒÍ´;ÑPz¢dÔÑWh‹Õ%“ªj²Ø^Ù£žÔmkÑ–^™a=[όδ#Rxu"þzP-0·v´FÒ†ƒ¿è„zç^3@¸ÉµV=\6ôæ­‡Öׄk7ŠpÈG £.NEl0ÖuæôÛÄ 2Ë­=c§’©zCü~é¾ÈÝ»4ç”¶Ó@ºÿe¡ÚsNËÌkäöxHsíéX »‹ÌÛERnD#›äÜzÍV ‘µ°Rª‘™Î\‚¢ ·–~ìŸý(?ôîHTô9‹^qÜõö7óôý¡Ï­5Vœ}·TÐPR2ñz*È3y¢aÐÍ1‘gÎT)UËœ—!¦›1G,LÙí9BbnãåIZ•ÄÿN‰Ii¶™ Šñu¨¢ Öu3ëÐZƒ¶S¶­÷7hµ ?ô#ÿ+Ë;·siõ~’ÇO>É™'޳ò̳0¶  ËK¨²`(ýáiœõÆx^ÏùJ£]&dˆ4c5IÑ+Ù¬+z¦‡Âµ¼ÌM¡ jëeI¤jÜݪªj|±ã–FØPÍA§M6ìJ<Òçÿ\¼ÉÓµåB-¡fyªÌóÈŒ]¬ìyü¤xÝ(nŒLtâƒmæsº–s§Â¥¹ ~æXªœ ’Í)?wUnñ¿ã;ü~,CŸ Ö!¨¶öž±Ùvo×l!þ¬ ‹Hv9’¦Ÿ#äb@º>SîIÃædvh·d¥3¹Rƒæ¯}ùëyÿïþa’X_$<Ðoù±àO~õwQë]OfX˜¹rkáB™5’ Æ1¹L)7ûH9ñÁò*b/ƒ´åƒ¶VK[(S7%þ¿÷tО¾¸]üÆÕ„~¿?mÍxÔM€˜†@ß“~¿ßxD‡{­¢Íá0úvæ‹Åq/:ðBª0¨¬k”îÍ YDÙkàr„¶†GW™ªn˜Ï¤ÙÜK1…úæ¼b˜®Š1m/Æ(¹–·E Ãï(tü ÂχÏ3æÊ}–Ô6'±Ÿf A†'MšÒC87M+éµ¥ªÒ±J®å%‹iö«„lmÚêT—M!äÉóKƒnüL•—t¿\['¾Ï±“ð^ë6jÀRºà ×d–ð—Jˆä”us¢ I'. X¶“…B8~JüŒÚ…ÂM ­¡ßë±°4äø‰ÇY™û2ñy 3÷מm;œ¼²œmçä$dzٺ'ŽÓ}tÙÇæÚF]ÙEÎÀ%l„”Ü“’ÏâC8= â…SUU“ÅåK¼abÔMN+'þÝB0µÚ´Hp!KŠ?W€Ž†¯( ÆÉƈͶ⠚ÊR‡Ï>þó–½)óÛHÓ6¼ñÕ8«Õ^ÕÔz†×ÖÒT‚}V5yx"×óMŸAž“¶¨<œ7miäø99´Ý<ß‘ô€ÛJ©ódnçZ¡¹kˆ×sz°¥Ðóø™µ_ýpZ é<,´Íºçu%•)z*7oiE™ª(~½ÜÞ ÷.õI¤š$2TnŽLî³æZ ©)Y°%×UÈqͰA[ÔÚ´æÉ©Î–l«5\Z]uó;¡ÀC’¯Œ!º¿ð;ÞŠ Acט›5´Ú0Ñ!j#`hš’d ¹!áå•®þuZÞ¦-ƒ¸?žª\ß:g—›ËHfHL™}!²Plll4ž©ziš … œ«zâr—Êp@©Å†@!(φ4Èv BÓžó …œ©¾b¢ üºI£3ɇˆÿáדWxŽ/ Šº4•âJ2Õ<êRŒÍU ¹gr9BjÚÒÉÝÏ\k+]ËiÐÈAÒs„×,JFëVLÉ]Á¸ºOù$¹Ä±‹/–ÞŸ˜ÑÕÕHg•3À°:§O¥$ukæ’eLƒbס܅ Êq8r³ Vucó^Ó딞 ï~~}m EéÀ1Æaܯˆ $Ød;|3›Õ&§ó“´iÒ~okƒdBš½w¡–r=ÅܦíjåQ99æ®Å”q%—4ÓRJ5Æ1©5gø¯aA{Àµµ5?cËg ¹v]ÜK‡›¡¢‰Ö”àâ!w*lgGiëi¦®M3\n,ÓIJ‹GϬâöàÌ \Ѝ”™ÂGs}ÿœ*lî MƒpŽÀ–kcu¡¾æÍFÂA“JçÄß#3(OÛT¹ ×ør ­ç_SxFÖȹ z¨!m=ç¹}›SÚMSÙàÐP>9©k=S©Ì³®—4Ì;{ºT)rÕOÓ *k\7½Æ8øºk~豇¸éðM(/ôrÐA} LtÇ Þ¶¸;ÙkÑ™Ì+7Hœ2¤]’´q®43ÞÜÃí‚æ‡@ú*嚤C±8¸„>5BP{ûÍpHEA¿ßoYϦ PkÍx  Skݰ¤ã–—ÉXÂÆò©‡t,E‘«t­1Ñ÷Ãæ f`Fcl6(ÅÙszŸŒ/ÄäDÇæî2k‚CàAf ýÜ„8è¶{™VYüb“¯8ðÇÏ©uÇT~ÓpÉ<Èo*hÚeŠ¿gkø-"Ol‘Ø%8sG¦I¹¶WW[0ç:ýRîï.Uí.oº/Óê" Æ­·\û®ËÆ;5‹¿ÖxÂãø@N€3š•r±N€QŠ^Ÿ¿øØÇüûØ–N×Ë:€€ËL–‹PW”Êù%¬w4sg]YQî¦rü ºZAñßéI5iz½^óÿá`¦WaþP–eSeÔuÍÿüƒ?Ȥš0ô2,a³†9´>r`×ü&,Ø^¯Çp8¤( ÷ž~N¤¤š™yÄ}߸—Ÿ‡80„@Ör‡m ™’¹ÒggNÍuFij´ÄoL}]í´˜ÉT}‰õغ2ÆlÕ*ÅLu”Ó+Êžá@ʵ@b‰‘TA:§\;Tcg=cÚ ñt=¥|Š*~Ýtý4CùxÏdì r‡f<üoø²»E5ìƒ+¢'«¦ÙûôÙuûät%9‘T¡9NÐâõË uÍåæó72ë1¼vX× (N¦3S¿lh³—|ü/>î“ ËKpáxy´°„Ç{=0Ð_ 'ˆ¼]›5Pº!1#|",—­¤R)„6f¤‡û@§­µ˜Mþë¿þkŒÇãFK(Õ¢Š_3‡,‰_3m¤ƒé\gñ 6m·ÌC‡ä†u¹{ ñ!žó[Ï=¿T!7”Ǹû´íÂëâcÄCâ: ”Ž笇mFq  Œ1Ó¶ð²2ÆK•¨L;7×^ÊA’[×dÐ;Úgi`‹×[ŒRêb*§­¡—ÒÆÍµuÒj7¸qè¯É°Ágf0ÄϸMâlæ)!1pur„à—"ª˜ìÓ–V\ra XRbaWçF)…±£ ƒÁÀ½oõ㔜ï¹ç£Ž$f‡ò/Ûb°Hý²Ã’¢W¢Š‚Ñhä¼<|ùªâæ¢vzSsæ Sà¸_gCñ/Ë’Á`Àh4jæ¡‚Y| ¥ ÕÀææ&½^ÕÕÕF½U"šs +LW?<=ÔÂæ ó‡p°æx*i/?•(O‡¤óÚ]³€t¸Üß̽fø,]ëô™§A3t™å¸A]þ 9"]ó:s`¶]Á«u ʳ͕lØÑ¹–^üürß“ Æ2e²KÏx)$×¾žšT#¬K„qÞA—[Wíï¹¹”±¦ACÍ8²b¼^ÔL@ÚkqµÛ ë°«ÂÎÍ•Ò÷‹×`îÊÍÕºf³]{&K$F4ܺ¢WRé3ÑŽ¾Ê|î¹sMÒ"å‚Â’€µ†^¯Ïîk®atiÅ…E×:ñ‡q ¦þ9’M|`¤m‹4"§0¼.g±œ/v<ÓF£¬ên84>½u Ð^¹5ÌEâ!m\ñ„÷ÕNüâ)çfWqK(‡žJ[3má[<5äIžô½ºœsë,ÑÎL‡çWc±ÔU=mÅ/õÞå„#3¢xóúð,rk¡Õ¯ösyÙ`$<z7è½Á“V™]ÀŽve$Oïøúúý>-`è£ábhz:óH³âĸ‹™3k›¿®o[éLòÞ)ü8h`²% ¼9$Bä×C:`ÏùŠä\c$£RÊ%IË8‡ªÊIå ãé™Öå†*¾ðu…6†¢((¯ íQm¨u²‘™¿f ’'‹|äM_ÎæxŒ­-_ù–¯ä¦›oáÒÊEŒ—3X&‘÷A:8Œ3ƒÐ㇬që$FÅ3Ž´Åg_ñ‚ˆüh4ÊÎâÍSA¶;T"x'¼lwŽ˜$½Ã€:ÍøâOÜÆ Ÿ'6( ƒ×x˜ú\¤ÞÍöp`¡¤û»ƒðß«T4yÍZþÍ=òæZÒ}ãN…FNÝúÙY,g~]Ï>=äSG¸t¸Ÿ0Z|/kž[¤÷©k ïüMÜë`lÓÃOç#9Tœ µ2ÿH±7€ B…Û¤c¸îtotU1`$û90J.¹ˆÿĨF%d“Lv¡›Ù…“Û‘¦ýÜjCÔ'ˆ™6XZ¡w%J¹ÏäüEá\9µ5­™C|ýéZ û3Çÿj]GD‰ÖØ! &|Ž—*¹&9‹«Q¥äå¢Ì+_Ú9$Ö[^ý?PiÍÚÚEîùð‡Ù»ÿÿÏoþ®>´¹4DôK† HÒvL<˜ nø“îb$Ln˜—ha\Åt¨héìß§Cùðz!(ä¼Br¤¡ð¾é‚I¹$]¦ðþñÀ<ΠRèaúys¬V;%“9ÆA 7c‰‰¹?1 9€¥ÀÊàî&]?[{Ô”ÿ[þ™tÍaæ‘\K‹ D8 ,9¤WšT¤•QZyuÍOºûô0‡`Ì£Ü,!­âCò“k£ä®;u ŒE c€D JɵâfEBÎåfåWm³Y„˧£“+cM3{ÉùŠÌK¤rCõ[½Ka¸ [à¶Ö¥µˆBqîÅs Â˲……‡ß¯¿ý•NrCõØoò±~„|ú“, ãÍ1Ò‚•Öi(e¼•ãl%×MQ#ñᘖäñ!Ò<4œ£œ”Uº b¢ ·Írrèãñ¸•Õ¥üÜ4•ŽF,9d®š¢vr‡{W{a:„%Òb†O‘öÁs¤H¤—÷ÕBh‹u9àÅÞÆš†d:Ó® }ýäð7|J&Ëe‘]\£yêÇtðrÏ2ýÜ]Þ]ƒgæí´rŒšT'÷Z9–{w!=»*Øt}Å@\ 3%°¦÷8¨[ᬧ²ïdaÓi«+ÌÒ»K窫Ú_S‹^ë÷DB"Õ΂›€Ž’ó‘£qpè¢#tÍïRM¬.v}x2ÒèÂZøÔ§>ÅÛ¿á_6Ö /¡ ¤ìÎC· ¼g‚\(zÄpí"g/0´’‚zR5NZM–š ÿÒCzÞ³ËÄ%Üì4 4¤j—;ÜÒöGnƒ¥ €ùgbñ%g”Óõš)S>wHå ¸é‚Ln¨òÒ7m_¥™¯Î°ÏSLÜ¢®5%½Ð£/ÉÿGfœñÒÌ1Çmé@ÆÕbÜ´E0cêÞ…–êê£Ï³(ÎA9ÓìU6í3ÛÌLÒ¡pîšsY~×׺T„Óýï½´zIÉi¥9σ¢•駨¤æw¼Oã (HÞä*·.ÞEš2^ëùDÏ9ËK™ÃMI¹iÛ/åå¸ésN“±öë·‘}µ}âãGz‹†+BÎÝZ Æ •­KÃÿôÏþ |䳬?÷ Åâ€ó++ŒW7Áh‡p²‚Mo¤iÌ4³ ÃÈ”¨µ°°À¤šPÕ5[·n¥žTÍá\Uý~¿Éô˲dâ{§¢‰Ž¢‘Ï Óâ £r¥s® èRé̽F#8 )ä7‹ê`àÇÂy)\:§Àš–õ9AÊ’gîLEæwjÜ•ª.w)b2] 6ç Ó‚T73ÐÆ¢Ä”̘?ÒAÚ>ÊUGóãg륊£V„ ƇtRk¯×kFh…ì' æÃð3—EJ)›vU‹Å"ºÑDñCÏÁ^ã#·Qº6qšÍvIµtIRää\.'±óbm¯®VDé©«½Ó…«OQw]­ ´"ë’Éi†åäÚçIoϺäÛãà“¢ŸæÉx䮹••'2êÒ¶¿ÖÅSI“Ÿ©’®À*ÚF\––¼Mz(Ç¢”]B¦3{$’Ìi®Y›lI÷yªÆÝ5¯˜1ÓKZŸ1j³ î‹k6{ÇûÁL×ôz%›Õç_8G)Š—E‘/-Ìx_c¹éš}üýw¾‹jÄŽ=Wa½¼wYæR8d÷ž=,-/£Š‚…Å¥†áÝï÷›‡PyõÖÀÇÕDÌó¨“L: ÙÓr`7m7V:Þ<á`77–h)r^ˆ‘9£¦Ë((ÍVrÃÂXò= Né@/—!ƨšÜ÷ã[®Òb7'-‚.dR^¿++L™ñ9…æœç†Ì Ùç Á»Ù.M¶y<\‹%­>ÿƒÁ "W¥Í“ÔH“ ø°Ë‘<ÓÏ>2ly1Û:J¥€âg•¶VÕ¶[š„U×€:·vÃg ‚`Ê4••›³¥ë=¼f®UÚ?ï1iÈÎTW lf “×k[}qÑÆ/—ÿ^B2E+M++c»Éÿ÷çÊ·þ­·³mq[#åmµDÅU„Öº©@Òr.×Ò ¿ÓôáƒñJæ`lmB™'{ݤ® Ýé4—™\®Í—Ë»¸99ë.MK/+ý¦–¢¹~—ÜGÚ ÈeQ]ÙnnX˜V<9˜ÜFMý4æé”åNq¥bypcC±HçÁ |Ìœ*§Ëh)&¤Ï²K@9}u]·ÄôÂA´´´ÄÅ‹[~%9™•.Ó¤´E™+Í u»PeMû/¶± !ç¶E»È~]¦`¹ÙdZÄ–Y·Â„Ï’~vc¦gXƒ=üÌ­æ9‰ÆA»Ò _ª¬Óá ÇÚV hí}¯ƒ•ª\\¸ð"O:Áþk÷c…ú+ç£_¾ñLóæ µ¡}ŽÞx´¦®ê6tÑó‚p^šÆp¹œyÎã\ ápÑÉaf!­ù‚Å®i™€Îf‰¹,0—½å ·éf‰}âßÕ6Hg19ÅÐܼ TZ)/$Þ”ñ?hÓYNnwAes(÷yã{—ŠÓ#­xÒê¥bLÐGÔôC ì¡e"…3ñ)¥r벃–û¬ñÁ•ΕrƒdÃü@¸ÄËÔÞSÈì¡¿¾¾Þ2^Ê ‹ã@ß›|4er3%°ÙVU ôÒJvô´JðrUQ;™’þòò#b¦:‘²@ÊÂ;AЦÒé®Äh¥´¢i´ë<úËúy“ÖÚùê$·²p䰯¿›èŒJ÷B0IJþy ëÑŠ–Öói®Cà^ÊñNj£ü= ý÷ ú IDATŸ¢×CÚZÆU…úý’ápÀçþòs Úpø—m™nÂ)S4<;w@ß‹¨5‚j² Kö¼ÖOÜšHñç!¥.3 —ˆ_có(”,J&!"æ`º)Ê"îkÆßOåÞ»|*âÊćSŽû’¢µÊ²œÐÅâtPšã¿ä†w¹ÖMºiS™“œ›^ÚêÊq.âvä¼ç“C½å8F]‰@¬ÖQʘ'Ê8}ßÕþŠå7 .vqÌÙçZ9dWWUgZñÍ"ŠT§pe*úšÁ­÷Jš9ùk‡Ð¬ÕH9‹2²Vc­FëÿÌêñgK«ð«b‡ê£ikIå8)ÆvºL¦ ‚.Dc¸A€5NÈŠh]†™VN6Ý/ñl8v5uÑÚ¡ø„`ssŸýìg›ùî•1IZZŸÔ{–wÂÖE@`¼¨\®åôxºô€ÄŠû˜iÆœ@¹~tîð_3Ǻ\\6ç ¥q––¨¹q× :,úÔã!×h1b}£CiéÇÆ®X¶}Þ /Wù媠˜øØÚ¬I?w@ÍÂEvx>o4O·)‡réRkMÑ~i@Lß+EÕå~¯]¹$s-K6(å$FÒVgÎç$Œ§Cöô¤{¤kÏtÉ]Î07lN÷ SϵÍR(sΔ,}ö9Ÿ”ymèt¶Á”rí«t_ÇJ¹€Úº®Äì-ƒäöAƒ ÎAÛïøŽÃÿWÿ_ñ_û Ââ/è Ø½k7£Ñ ÒJêÐEÊʯtͺæó9´FÚ>Jm_Ó²¼Ë–7Í»^3,ie‘"7r‡Vcºi#BÃÓˆ¯!uW¼ÜL'w@t1~Sès®·ûwÊòNe"bëÓ.ÔUPrà„¾›K`â{2÷íøÙÛŸ r-˜©’Mœãhär]-®C¬K¼4‡r¿/}ûÊfÜ9­¨y3¿?kú{¶ÑqrçŸÉ€?B¥žµòºW—÷þéš¡Ìt;ÃËAóÓ€ûÕ§s™ðïÉdÒÜÇ""üåˆÓìe´t-‡çæ¬2´^îÜ-TcàÁB›1JôÿÊ«ÿê „€4ðÿí޵˵­°y§{ÚF‰ýº‚G—NOÜÏe¡—ÄK³¶ôŠ[R9XbÜ>Ê•ÜaÁÆ^]â9ò`ºiDHÔÓÏÉN;k70ÃÃô5æA-sTV%†S¦h¸ºÚj)³?'åžfwírA,Í!mCöè™_N™Wx“ !Ec ÛzÎ1qÍæ%QÒk™<¦å‡ƒç±¹Cj/Ô¨3 ”týÅ·6TSæÚ™U”˜¾î-=}¶aÅèÀî„-§ÛN6G*Õxq»0‹ Ìr1mÁÛŒøeSIH·œoŒ{ˆÆZðª¸n¸-½y–SNVÒ¿”Øäl+ÊÂ̓µÅNj&Œ.­¹$ÛLIxÞ0»µÖbmHr›««o›ë!çf]Øÿ4;êòPî’H[-9¸jî°éB 5ðC/ƒ0Ý"6{øÏsvÌABçñ8ÒgŽã0£[µ/lf‰åÌ~Ò*'~>1‘/ö`×lÜjiº(ظë>¸2ƒ ¥ÆZŠÈa1³ÍA“»*,@ i7¦KN¼µg|E„GÙ`ï[ S3¢ ô×_x ­Mìh]Ø©LIÚÚÉIõäZNÍõÒ”gÓ³¾cþ•´¨0Œöi ¬QJQ=ÿà‚LeÝÏiÕ-dÏ9 øŽAíß½¢‡‘ TU0ŽgL…0N@T½¾âºýû¸ýÎ;8vÛm9z ¯~åÝì¸jW&õ¶MR±g÷ͬ¯­a9}Œö‰óG‰“ªª(û®U&û‚sçÏÁ Wà dêæî¨k¯¹]×E‰ðËÆèì‚OÛi–¢i;Å̧Ú4›î‚¦Ãâ®H®ÉõØMÆ>îë绘½œJäø]3ô/dÚÖ³sõ¿r&C9ìþŒ÷ClrÕ_jøÔú¬aNØÔFT!›J ¾ïóúò3ÐeŸ™æîkó\µi?.7s Ÿ7T*“äÌK$rs°X³,x]K©šƒ<§–Kr í}câõoi¦ÍïyXih×´› &XãLR" ÙžûÅ(¨thž‚0‚Jom£õ§¤“GéH³î•¾Â”¢ô[H6ßÂ’a¿X(‘` Wö1F£”³¹6ҽ稖ÑhÄp8äêÝ{¸é書󮻸ýöÛyÕ]¯`ß¾}ˆ2²®jD€zc©±TÖxÍ*‡m*[ÿ3GŽíåK_ú4ƒE‰Tzx…JÄß&òžÆê™€ªœ”K˜Æ.š®…åÛáÖ"§½¤“¹öY"Δ^2ivŸ”e ç÷áÑŠ“É„ºªÙ\[o ÿ;wìäÈMG¸ãŽÛyýë^Çݯz;÷ì¦?pAEX‰,\UWYC;׬h¦óœ"h† ×›QÚΘl5)·O–Ž=Êû̬¹HeÆEI]‡ç¨¨ëª•ô(é¾&¥“€zâñãêË:€X Z@Å ¸vÇnЋ€qïxÖ£bN óKµósŒÔ´m”V#9ͧ˜Ä˜;0r%u€ëÒÜ0Êã¶µÆúë͹ã…û’ßrÛ ± æÏ…bY‰.‚` ù¬…mÿÂëïëLŸl²8WÁŽ¡{óyükÊÂ]§¶íY’TjJ¼Š·´2ÔÆtÊWt]W›Ãà‰o–¬­lŽw„›?­jsΙñÁ^7•¦¯#uãlßÓ"[u¦¸´µc­EM§¾­)}r`õL|Ñè‚Y?\—µF!þ¼ÎUsMqRܸlÞy/‡r k¾6Y¨¦2º¢(”¯r¦}üæw¥p3Ž ¦)ƒbÐØÜ–eÉ¢pʓɄ‹«Q*ëÚVW_µ‡×ছoæîW¾’[o»ë¯¿žáòJ)é÷ûY»ãTÉ;”ǺÆJAa\+Pù°V)éf8>î;oµHöEH&ºv3ÜÙpäèõÔú9Ê^M5ª©)¼E²p'«hCó]Eå+<,÷?p_s»Ÿû«±¸-þÿ bšd²më6ˆHm¨=º"U8M[]~×]ò]&?éë¦'í£Çhž®¶MWTÏ©¯bCyj›>´Í ²s®‘šF¥H Ü°¹KB$7ɹì5ŸËºfXµ1.€F?³ä¾\uÖ:„ñMwѶkî¹µèöjŒi•è¡Mdæ‡.Èu׌('}‘›oÅýüy®~ó8M9¢XÜÍUÉ]^09NS¸gñgMýÕEÔlÉØËD(2³—r ˆ\ °ëšÓ*­ÖÚ¡˜êQ”(À \'jê-ßpŒ H“j‚OWV}"²ua ×]·Ÿƒ7ì絯}-7Üp‡byy™;v°}Û6Ê^ÏÑ ’ì×d˜îÓkw°sÙ<ìT=á'IÂFURºáÐø,ž]ñô³g¹ïÞÏqïç>ÇC_z˜Õs—8ùä£,.)t¥AH¯Û7][2‚—eÙtXÜ-¹ÿþÚÓË•Q4½u5Ûµc§;,¤GµÐ)í–@Wö×…P™×‡îj¤lÚœ‘N,†õ¦<…\àjõ°C¯ÞZTf0¶yæùKt‚yÖ]³‘.ußx°¡ '(¤›WäÌ›rí˜æÿ#Ù‹@˜5Ñ}Ly!ÖZÈhi¦¥×·jÒÖRä:%ZvÍ9r•mE7¯ÅØõ>9 ï.dU”Òµ—çxˆ,Ÿ Kj¤Õ&ÊãöëÛ_#¼dúb&|š|õ¥jÖY¿×oÞwssŒÖ7GíƒÇÂ;vîâÆC‡Ù·o/7Üp#‡fë¶­ºá;w\ÅÒÖ­3ÀPkB;kš°8ÄìžíƯ°a¬E :L‚®}æ-Á¦’(àÓ÷~žOñ~žþ.¼x‰SŸ`åÙ3œ?{޳—ÖmNú²¦7€áB‰1)àÅ4íÞ)œÄí‘);¾ª*o Øk%Ïœ<Ëd¼IÙ+/{f¾¼ZXºkÙ²e‹‡yH°°”EII[çúÉéÆîÊÎh0Ý¢ÞÚÑSN'þwJæËéNuy*§‡Jó;rŠ»'ÓBš9™•°N¯§+èM7BH0‹;ꀀ†Ã½A¦º¯Õ‘v.ëÌ¡±Rȵˆ\Ý,¶…pŠ[xñuš¨õ×5«êåK†´‚ȉ Nß+ÎJ/ùÞ5Jߣ‹Ç’‚'r ÄŒAÕ‚Êzô’5SŸ”tRTí´XkQR¡1*Ì2ÓdÌú$B4»=T4"jï6mM!œä†«”AI»®](‘ ‡CJ%Ù·/;w_Í‘#·pÍ5×pðàŽÜr3ûöícë¶­Y怑Laþ`ˆf#ýyÒ,o1e*¬ØÞ׳i+'Ï<Ë¥Õ‹<~…'Ïœãô‰“<öÐÜxô19ù›£Môx Z3ì)zeB)ʲ`lvÕ   ª&ôKÁdRa«e67jÊ^¶c½^Ï!½bS:=¦ç¢¬$‚ºrIî©Ó§8|øp§˜å˳…e8ÈáN1„k¶ÑŸŒzY;H\®_;ÏÑ­Qß HŸ)Ð¥º’@gSÑjC¤›3ÄèžT§*“¤ÔœˆÐi-Væ[JV g÷[‰äÁîïö¼H ) …6^â¾˜Ú „Ãk[¡TI­qýc¥Ð!J1®+½h×6)Ê‚²?DÃXhD¥¹,º—¥ˆXÔǾx‘çÜפ”~æÕO}8Í…MÜ…œ9hS“´”ƒ&çf`áÙǦeÓjÓA&A¢”tPJ1•žR:ÉñL²0¯EۥʜãѤ0Ô°&s¦CÚ:yF¡|–¬dä5BË® Ì3„òÃg%©lÍ@ô˜xß!€ÂbŒ¯:e­k mM¯X­üÌÊ!,-–BÔu…цz<¡GêšÛ–Yز•n¸Ý{öðê×¼†cÇŽràða®ºêªŽ”T ¨| 0aDí G÷í$‰Ÿ=”õ¯ @˜Ú1ÚkïÃAXß ó•‰ö÷seuÄú¥‹œxá<Ï<ó"'OžäÏ?ô!î»ï~Ο}6V‡Š[\\ ßï;†º1,K¿/P ‹n?k ÂA|'uíÅ!=€§Î[W%{L&c¤2ÔF D–ºÖ­*µ×ëM»ðRUB)œµ§Û3Ož9É¡øÍ%¯Œ ¤ÉZ¬û«:Äʃ'Ü¢ÔÆ)Mvð>rRç¹ 17$ÌáþÓ’=…wɤ0Ã\«*?Ê›-¥Y@®Å`#rµ*¥ð{i†]X´©J8¨¨Öá:h!Áhz%›“  ÊjÀ…ɈA_q•ì#7+¾×¿á Üq×Lêšßøý÷ñá}„íÃ-¬É‘;à};ÒÒŒ.Z'~—à_—,# (º6SeRQÆ>éØÄR°Â¢dd¡C±.$]Ü»ÈwS‰™@L[¿ Ž.²~i…Ñ5ßëB¦ºôïfwS;ÌË ¿! Õ ‚ƒZ†jÁ*Fu…*ÂW0=5%Ì zÒµ¬tI©Ôz“ÚA`KŰ7`Ë®>xW¿ú5Üvë­Ü|ç\¿/*YäªÌYT›K2jQúYœðà =5³òò+ÒᲩq€^í„­tûa"J$01šzcƒÕш‹ë5'Ÿä‘‡¿Ä‰ã'øÐG>ÊÓ§O³yñ<Øj°Èp0`0¸ùP=bû² Ø¶Åeþ~ýVu刘R +Ýâ)ÿ§ÏÌ´Øñ³÷C¢žAš„`]׈UWõÖ·xûƒ§N=ÕTX(r…Ì@„ßÜá¿];wò¢9NU×ÖK•¨D-UÓ/P3(3J‡ÍÜÕ{Oe*r9×vÈ-è.žôLµ´æiÛßWmõ¡Ù‚)Ã7þÜ¥Pi¼œb0XÀ ÙÜXgØ_¢%uemn°´m+›—%lí-`^\ãMoû~ý÷ÇIFcÑR ¬à[¿û»JrË—½†õGŽ#7„ˆØ—›!u âgZM> ¸Ä("·Å3š“H/!Ñž)M•`ÖX)[Þ.é}Ï¡Õr­Ç6t×6ÆCîµ”ü'"’ˆ™ 6®>rFe]zd9àHnŽ”k˦ò=±m ·€€Õ(œtz=©XV=¿ñ•ËÆ«šz4Aë¥zôwÙ³{/_öe¯ãØÑÛxÝ_{=o8àZÕ¡_Ÿ3\ ÀÍ€žLr˜¶Œ ã+U]»y4ë++Ý»i鮦6ŒkxôÉS<ðØÃ|î¡/ò‰–SO=ÅÙÓg`cD±¸„R‚¢€- =·Õ†mƒ 3"ä]A]1Švh']ƒ6¤Âè)Ê®W-y)`QÔqE龑Sˆ6ÑlÉZ7gQEdc!gwñ³ ú|æ3Ÿå»¿ã l”¸f 1ÈÀýëÀÁ<þÑÏ6$¡J×®ãØ ?d£ï#„@Òæ‰ä†ÀéÜ¢ 6˜kt¡mr~Ö¹~ú<•ÌÔ¦2癑ªrω[riPJbß(VWGTV°k÷N¶lÛÆ“'§ßw0Ûëöìã¾?ë*“²àçûwø_Þõ½l®øÐý1¯þê7º.€6®¡½Æ’’ØÚòà§?Ãá£Ç8ÿìÓxÛû™L½Ko)w0· ® þùZ‰A 3Ø´ôÅ÷[&µ‡rká¶.ÿ–˜È–¤h~³EYf gŒ)Qîr¨°â/óLSs$ZšTnÏ@J1•1)”BššÕUFÚ²©k Õg÷u×rìØ1nºù&ÞøÆ7ràÐ~öí;@o0@¢e›G£}ö«[s»8„Ðð3Ü}±Þ烆DG$Õ‘^[—àXU ðÜ…MNœ8Á§>ýi>zÏ=|ñ‰œ}ê8z\¡õ€X£7\ 7ì#¤9AXÃöeM±ÔGÃdbè÷ V/çwÝÉÛþú×q÷k^ÅîÝ×ñå_þVŠþ%7p·Áj7h9)z…dROh¿ë:›™xNni TÈ¥ã}TÊ»¨æ‰™é^+Ë’/>ð€è®ëS(õò¯@Ê*&ÉÜqèØØDôzX[Gs¢‘f‘@XÐëOõ£b‹Ûø°J½&ºúÛá5â^òÜÁ¥¡1ÖPø!ʲ)™±­kÀ Êue0xƒ¡( …EcÇ5(éfU…T`„û™z\ÓW¥^z´V‘i áøJ) —.­râø“l¿z'½A!%×¼ân.:A]Ã×ý·!JA!VZ>÷Ô v™’oÿw𪷽 ŸÐa Xd%ŒÏ k¤-x÷{þ ?ôwßÉâp@OXƵi TçÉÑç˜ûMÕâA l#’XîP í€x¾¤7¬pó!)¦Ó\k(§‰–ãÕÌ*ãÆZViüÜc³dÁp@º÷TºFÖ€ÁP’ÌG„h#bc´Á؇ÿí‹ËÜtäfn¿ãn½óìßÏ-GްeËV†‹ Czžd×TùA_ÉZ7+ÐS)7¥Í²ŒZZ¤M¢4ƹãÉ)MCb~æ'¥÷Vgz žk?ñÿùOþ„ÓgNpò ÷rêÔiÖ.^b¢ RWô‹ÂÃz=BX–Š «&Hµ€.¼xŽRmåè-·ðe¯}=úÈ‘‘ë‚ÅdRT£1“j‚Öšá`ÀÒ–\wݵ\{íµ ¡ ~æçš¥EK]­`z[1f éÆ"(—_²´¼Dµ²¡Žì\bRªƒ•›it™˜2¤²-ÄxÓ¥(ºËAbc{ÓæpTÒ“À|»Ë·B²8׌MðŒ|´FDGû-üNYô°ÆR ‰Õšºª±Ú°Ymb± ¶nÝÊîÝ»¹îºë¸é曹~ï>n¼éFöîÝËÍ7AöÚ[ÑU Ÿ «)‹PI´«E• $¤o³fT |€˜rs¦üŽ‹ë›¼pi•³Ï?ËÓgÎðÈ#süñ'xþÙ³|éá‡xú™30Ú3FÊ>EY2è(4‚) †TŒô ÂÂÎ;ز¸ÌÕ×\Í‘ÃÇ8°;·oåüógùO½‡Ï~á>ú ËšKëk|Ï÷~/?ùÿ$º®|¨=¿ºã®£œzúó<ø:.® ¬}Žþ ïZØZ;¯Ÿ½Y#HªjÌpq"«WJ IDATÑ]o¦Rk‹5žc#hÙJ¤ÐðÄ0ó#‹¶ƒ’ <ª0´Øú1•Ç¢´2tjL4ë z’ÏþsÜzôèLð¹rˆ€ƒ%Ç ¶#ÝÜdüÅÓ@’fœ…RÔ€fšVÏyš¶I\ß8Òê±aàjÀ”*œªi4ôª˜¸žºT(%Äú˜»ï~%÷»þo|ÛWb¬áÃq¿ðk¿ÆÇ>úúLU#*ÅüýßC.Éè`¬ÝÁëËøƒ÷ò±?þwýõ7ñÄ}_d²¾F!%’¶…e£åYÚ¥7ƒ*¤ÂÖ‚=W_ã×L‘ØBñ=o~ ÿdÏÊåa£Œ¼:ÚÄž{‘ý¯s-lí:½§ú ½!T’Íjƒ ëd£…šöÍ.½¸ÂRé,‰ÝA5 lÍtã=fˆi;Mx!>÷ý©ÇDÊvÎIÎÄ-Ì´Åf¬¡ñaŸq+åP6S‰Wýj?SQ±êoC”‹ý¸%µ®] JJ”*•ÎNÕ)­Ö5µö3+ ‹ÃvmßÉþ}{9pøGŽáÆoâÎ;ï`Ûž«Ò¡Z’žô¬iß2®Ãؘ"yuë{ïMåm=ÜÕ“Ac#¤ÆÙφ¶“{½õ±f4Zgåâ‹\º´ÊñÇŸàß¼{ïý,O=õ/ž}Æ—\k§×§×“ô‡=”SÕl+-²?ÄX×ê4Ö€]ÇLzh³‰T%=æ_ýëŸâÝïúžY¾‡ÿ¼VÀ?àGùù_}?ßó÷ÞÉî}Üp­ Fûù™de­båâö^|/6©ªÿćٿÿvTѧèõ"é$K¯CEY Q]Wغž¶¤š„Íë€I…탴«:ÏÃn#š0ÇhÜ ÕèÅÕJœ¨è†hiý´t¢TÑȹ+5•Ý7Æ"žµÞÖ”ë÷Jzèa—Xtxȼ숵°eyJ(„fB¾E4~ë„àQÊÍÂ@Y¸­z’jR#¬¢×ï1©&ôzŠjlPÂ.‹’B;A2£5(Ë@õXÝÜÄ ÁÈL †ØAI96˜Ú0¨Çìå×>ü®ÞsU¥]_|Ó7~#ßüMß̃'NsÇ«ngç¶%ì¹ ]Ö[¸,¯6Ø¢@F[„EÅò³¿ü‹|Ù±;X^XÂlŽf¼J¶Œ\\:©ª»vínà®Æ“¥#j~úW~“áömX©¦àÜxÍGY§ ¤Ô›MÐX&zÌUƒÜqó>¤…Æ"yà¹çÐk›ô¶–Œe® F@? Å´tÎALcÜRŒq§õ\0¯.Ç|ù–˜KÑ5¼oÄøŒõ­ Ïj÷D×Özh­*QJ1Ñ(T3V¥ÄZ/ñm%Ò‚*Ô4)1S<}5»äÃXÙ¾cûöî娭wpÛm·ñêW¿†ƒÐ_&¬édV7µwjô¨¤gÊÂÁý”Qnf¦¬@Xé®Íwis®®í‚2~®-¨M­-R —„Xí:BòÞ_üüø¿øœ?}tív}Y2è/³m(\ÿËöEX\Šž‘¡Ú\§Žö«ÖkƒŠ¯l?o3ÁZ8vì&÷ýÀE‘akl¢z%XË;¿ëëø©ós<öø½ðX¥R\w­âæ[ïäÑûŸÇ”S*¢R«Çîy ƒ°Ú»:‰!?mhQˆ ÁºÖˆÂ ‹eQ‚´®Emj U6ÉpN//4>œñ–p µ{¯Bºó+ l0/ó¨È¶Àf<ÿ337˜Z7`‡8¡ö{Üï‘X"AÆ]1DX.ÀbA-¡'•SžÌø~¤óŽø Ò6Ò­ñ›Zëš²TH!Q¥EÉ!Byô‚0ômKVQÇìݳ—£wÜÆ¹û•wqûm·qý¡ƒ¨å>5ð¡¿ø_ûöo€Å>{×_õæ¯ä'ÿ—°ì¤F•‚B—gn»Ø‘CûøÍß{ßúÕ_Ϲä+ ‹Õ]H~ì_ÿ4g<Î;¾ó[xÝW¼k –‚×ì=ÌÞ[Žpîñã û}ê*Rl¤B¦¯d‰¶$’Z¹zßu¾ò²¬jË}ôcüí7¿)$ßøÕ¯§0¬#]¼tÉmö 9ð%·Ü|×­œ8}’Ý »˜¼p‰ÿ÷ ”#_øg ãš#‡Ž±cϵüÑŸü ýòH$ïagi ”SÙh‰Ï¹ƒZ7½ôFÄ´Ùÿéà:Ç«iÍ(b(-‘¸ £œ9)žl$±Ýk9ò\Y”®'_:ÏÌÚ£ÍV××YT=Fõ‹ ì¿þzn¸ánºùFÞø†7pÓM7rÝþ}$p¬t)±bª7£Òœ+‹¸‚±.Fûö¤››¡À3Â5 4FTX!1VQ ®ÝY½QM8sö9ž|ðþð‡ùÂ÷óÈ#pá¹3œ¯|ÅhRŽyÃ[^ÉÃ÷ÿ‘7ÞIKtj(¦¤÷ÛÀIª3…ƒÞ¦ÖµAkJ)¢rŸAXʲ5¸À”¡ H)‘EÑ€db»â@ül!;øJ]2LZkʲl}/þZY–œ|ê)îóKU\-,`¡7€[¨V+J1öLÊTp-ñ@²/T²q<@¯7dcu•jsu…B²|ÍvÝxˆþâ/Âí¯¾ÍIëÍ{æßrûŸ~ú…5þíϾ—«ï:HE VÒS‚ó/Š·¾åmüÙ ¼ë‡˜ßøÅŸCøVƒô6áÇ´†à~FãÅLÿ¦-ϲbô]ƒ¶17g*õÞ î£×ÈåKÇÐW¥ƒ{*Í,ãIÅÚúEl]3A°´¼Ì¾ë¯çŽWÝÅW|Å[8xð GcÐë¡T*¼†ˆ]ûŒ×v žëK ¥œ.¬Œyôá'¸ÿþ/ðñO’Ïßw?ÏŸ~†zc £+Ê…ýþ€ÂŽüg²JÑ_ðà÷³ÿ­_Ñnd\›š#7ÞÈÅókl[ªÀJê p‚’ Œ—¯¯=×A¶t¶rÀ‚Vr(¦¤Ìªª\åd]¢"€w½óøèG?Ž”ë¼ýëÞÆÏþÛ÷bT@09tó_Y¹g{ßÃϱ¶6ako„Ð {þà~ŸWÞu'²0+8vì6œVTI€4Úf®ã@ƒ^ŸcŠ9ZãÚr¦ÆÖ5ŒGkX`yËvúýeªjìUíÙjN9ÜÐ&–NÛ±ÑlW©ÆŠZ3ã‡ûÔþ1L¬rFùNŸ:ÝÁÒ»‚†èÙ£·´@½¾B=ªšþk ÁM ¦ÚBp`¤pûÖr•Xà7~ï÷¸úæ,ïXf°Ð§WöVæÙ•U¾úmoç©OÞÏßð–†'`…uÚ=V8³[YX,×.,0Xòï?ô;î©K>pêQ¾õÕoai²íÛ{<üؽnsJË"ðïþ>>ôOß‹N­GÏ>”amü<ƒºàé“çÙwx'¢¶l–pí®Ý|BWlñf3€‰É•u:9ã7eqaÑ£k ›ëc&çVùw?õË|ß»ÿ˜ š²!u]Z_‡bÈOüØ?ç}ò;,°[”<÷ä FUÅ WbMM¯’Г|íÿöF§W_µéJxð‰'kSamKv$G¶LÈ`¬¥$>+• †d¤:Jkøí Ƕ™ù%µÆ„”=×'®'Æ“ ãÕU0T}vîÜÉM·ÜÄÝw¿š[o½•WÜý*zKC–——öúô‡ƒi ,:Œ°’‡³Â° ÂÉi.‰F1ÕZÀj )кvƒœºÑI!§„‘ÖW¨Ä4pê™çøÌ¾Ä#œà/ÿò‹<øÀ£¬Ÿ;ÉæÆ&Ú>Å!&(éä^úÒRl5Xml`Ì%j³€0NÿÌÃÖžäž}€¯zÓëÝ|A! ‡¯Û­ ê  Zç¿P÷Þa’]åÿç„{«ª«ãä ÉQ3e!‘ƒÁYm‘ ²±Þ56ÆìõþŒíÅÆ^0»,¬qbÁØ€m0&X`”Ã(Œ¤&÷Œ&çééXuÃ9ç÷Ç9÷Ö­êÖî?lÐ<žõTWߺáœ÷ý¾ß`µw„0dh›…fPºã=6]»*pìž…9‚4>nŠCE–:&Ï_bñÂ:ùÐo“+¡T_ù§oóêW_OæÒåHe9ú<6Pa¥Õ(é? ÞIÌ@s^|VM)7?w°ŒOO´Û †kà@ûòò³ŸûK®ÜØ ÙWc`°FÔàîûvðÆ7ÝîÏËPR …îêš{í–TȽéM 5y¢Ã3ÎS‹{7¢"²V YêJ »š.G ÛI®lÔ€¡=Ýf&¢/î«øj?Ÿf ¡¿vÃVöž{§ÞÆFÌÚ(z é”ò«HGZÉFÄ"ÞòÓwpÃO¼LF®Êø*57 ‘ŒV²|pˆ/}óË\=o3#‹æ{ÃÜïÜO?Æ“Ïì!n ÞzÛÑ s ®Ø¶šm×l$“–º‹8[î¸ýô×,ZâäÑ”gvígÛW– éâZ“¥«V …¢`zj Ú9ºÑDd }± 15í¨saê2±’dõJXdÀ9U¤="D)¬´´±jN3C‹‘yƒäV ¥f*9 \âÿõÞóÞŸÇJ…”¬B Áè‘È¡߸ó›<öÈS¼à¦kqÂ"…À6£ D bÁ¯ýùßrçŸ|ž¾Ážxò!^ð²W1ýýÔõ9æs¦ûrçˆ,àÆér ?&ŸÊ0Ä-[ØŽ™¢è$ Ù¼‹õŒóS-Ž=ɉ'xòÉŒ9ÂÓ»vsîâiÆÆÆ0y޳‚¦³XgJaŸ##Ž:ö…ðÌYAf½xU…RqÜF8‘—ƒ}¬ —’{î½tì»H,ÖÄ  ‚34Œ%1 gŒï¬Ä8‚0RcÂp¸3NŸÏmƒvK”CåN"'H¥IŒE ±"ÃXÐ*Â9øüß| ©>ÍP³îgU6ñS·ÿ&3ãçÉÍ‘tà4¹Í¹òÊ ¸üÊÕqÚù4¯zùkq&CRè„;¶ŠÖåi4 ¢ënXóG_Ζ«¸æú­Œ °dÅ*®¾ñæ0«ðÇ+¬àgÞp-¹!ljÆZý8Ù‡”ãâ+ËΡ=)¡¦4 ÅñÃîkú¹D€UÖMa ¢¨ƒp(a[†M×\E ÄR"3‡$ AL,3¨(ÃXŶ‘,½åFdiJ‰”‚zýO¢œaÀ,äg^úc4ä`k´€—ÿÄúëå¹pœ9ò,{G¹¢ÑOb5Õ`j"D_:‹ #[¶]]LI1BpôÌiP‚¾¤±dÁ’ydÊ€$8}ia5 ‰¬ÅÞÒÙ˜9 ŽÈ·Ù¹DS§Þè+h'§ V£Ö§øÌ§þŠw¾ÿX› ¬Æixúð~êJÑ¿p)¯|õò‰OüïüÅ·wÜ„‚‡wïåWï?ñØwïd`0ÂLÎG ìÞé`ÎçtÍ|=-PRãŒÃ‰`Ù ¼vFJéã>¥B9çxû¶Ö u„B"¬BiÈÒÒt†VkÆWS‘fhhˆ W¬aɲ+Øzõ6–.[Ά-›X¼x1Ë—/gp‹o¯m«Ðº­› $„š=ø!ý. »­ˆ:3©ÐÔY%;›CQÛ:w‘ÝG/pxôgOáØ‘c8¸—cÇŽráüZíM›‚³D5M­¡¤À&-æiU–<7~`,%¹m‡ÊYt‰Eð“êµÔï nªZâ(¥Ø»woåß<9Á< hïé,­µfÖªC]-`h`–"I°‹[×5´RƒTkr„” 4p6ÃÙÌŸ{aqlÝ´ŽïhÃ3;÷ùÏŠEIÁŠ¥u,\€53HÇ5nû©Ÿ JÇŠ÷Þu?‘H廬Þxû­¼éö[ý½å œŒ‘ªè²«À‡q*„DÉÐ5Á?ýÈk@îçn:ò”`kmÝÛDqŒÉóÒî¥J–)ï=å-žŠ¢Kºný”j–_–ªX"õ®£E×R«×xdû#¼ê%¯ðÛóMHö6lÜÈ¿˜iAií«¿9ÔËÕ[Í0ÏÍ4Jj"-°éËæ…ø\)>ý½ïðñþ!«šWðÝýR{—Z€ /¸&`›¹gcóM6_#¯}Ý­Ô‚q1i<Íß?x€–® 6 %g.^áÈ0ĺΌi12o |°ÿð1®_·!,2Ï<}ê4QT‡vÎ+~äÕ Áå£=̵÷>†dŒž™bÉš+8púJ*balÖµÖRF ×#?¨—pzr¡4HË>øA~î—߯@£^È‘ƒYJ"[4úê¼ï½ÿžßþñ½…Kpyr’{î¿‹Ç14RgÌ™›FEý;N œC×T0w  ­Îú¡P~Öûª]†ôž¸^j²4%–š$™ö³…X084‘…ËX¹b)Ë—/b㦠¬_·­[¯âŠ+®ÝÍl1àd‹ásðÅ*5 ½L-ñïœBTÿP‰(ÃTEGÔn·896Αg31q™ÑÑ£=ü,‡Ÿ=Êî½û8wî,ÉÄÊNÓ¬5èkôëã2Ú­q–c¨×úY¸pÃó†Y²t1‹–,áô¹ËÜsïÝXçu8Ò‹²$ËÒ`í-ʹ =ð` ÏMáƒÕëó551ÉL«Å@£á ¢ÂÒ¨G,Z½‚|æD9§(‡½¹™Ó+¬Ê²ôó:Û-Ú¬ˆp]¤‡p !þ~~²Åž£Œ ³uýJ" ¹?ü½wòíï|ƒ}»b¢ÓWiÆ9v<~wÜñ‹ j>ú±ß#/ìU¤äè³cìÚý8%7í@ÃvHã ¹ËÑBûÍJ Œ…dl ´¬fbr’§NqòÌiöí>Äþ}»Ù»g‡F3=y™F R“ûk;3ˆÊ€¼+zÙÙ`ß#ÊÍ´WG„bOAP@´Õ7Ë2â(.gÅ|¤ #æyN\‹RðäSO¢¤z~Òx‹C^µf5išÒ5’$éÎRžC[Í“ð'&BÉ!1#Kc„)Áê/üãW¨MNòìž=$ãmd¿&ò6´.ŽÛ…t~xuðÁGÊÀYŸàn½¯þ×?÷›Cx÷,I ¯Ž5¥ ÄšËVx,Û:Pð½»ïåuïþ ˆŽA]Ŭ^°Œ·Üz+¿ûŸÿë,‘аBðÛ_ù"îò¹1üÙÿ÷qÞö¡ws|bŒUË–£Tm?¨4´á‚¥K–…ªÅ¦wîCiM«5C£?æÖŸz‹æ-åбC>9ÊäùIæ ×0É Ö$ ÖȲ1{ä{di›(ŠQ™aþPÌ´I¥ +R2!©KpÐJ“Rê Í%RøNÄZÁGÖ×éi;!Žcú•bdá"._ÂÖ«·±võ6oÚ̶k¯fhx]‹g«§EéO†Ï\°)íÜ)u þõž§ß2ö 7Ë©´›eëà¤™åøØ“ãã>rŠÃ‡žá¡'÷säÐ!Ž;ÆØ©3^DFÚûFÅ}ÍÖf(µd‚¾º ×4û›=q‚_Ï/sÃM7rí71ÁBúzÇ„|óîûù×»ÿ í@„¡Jž» ©.ž¹ØO+üî±7i i·é¯Õ}8BÛnØÂSÛŸEñœU¨y6;¨ê,QÙD³Ø–}qÝ3ŒDF’×ÝvÜóÎL°óÀ.6¯½¼›¶l]ÉуÏðºÛnç®oýcµìоÿo_óÑÌ3Î&5®»å54›gœ®Åý¿²yü€XX‹àª¥«ÑV`µFÚ<˜~ÙŽ¯¨„̇•½0=ÔZ“ŠœvžÒ4}\fšxFƒr™†–­Â¾¬ÿæ\Úu“sa"åØž#ÚÕ4D³9Bz“8'bfœ¸–rìäAœ{‰ऎ5ë6ÂåœÆ¼¥ÔNÍðÍ»¾EÿÂ>Rrb O]>Ç凿Ê?Yn2‹v’÷ýôÏò¾ŸþY²’#AXÎ9øÌ?Ìü¾˜‰óÓ¬ºù& ¿9ˆnÔQFbð–%EÕ‘F3%gÓqnë;yz÷ÓÜÿ 6I™?BfF8vï~¥4©ËÀZêMÇLÒ¦žk¬°Xc°Ì´R$Š4™AË0ˆ–5¿lÇ‘ÇÉCܨTŠQG‡Òš$I| P¯÷¡#í]\7näúÞĶmÛX»v-C#ó7ÃrÉ\M) éÕ¨þôÌ%z ¯s€Üÿl0²óM†?Vò°¹ ‰8¹ṳ­VJbrö9Á÷î~˜½»phÿ>N?{Œ©‹ç‘±ŸÇ4û"†u2×Bbˆ²”eójdŠL7‰ëЏ —¦®i.Ž]à¡í²õÚëˆÃ=üÑÏ~™úÌá÷þøã~Ë2žE×¶ÎwÇΠƒ©æx;¡fûh«Iš¶Ÿ„ñð\x­ŽV=›H¨|K;ycÊ‹'‹GËÙîíV 72\ ìnÞ²ŽïiÐpíb)È3º²Zž+k½*õP[Ö-~¾eµÔ˜I”þÚR,ìG`ùÒ_~Ž}ìqÆ‚R õ-ÂÖ`ûýßã#¿ÿQ>ôÁߤ?Ž‘.ÇŠ á”Ï—н§ÆyÙu?BÌery¡ûøÌg?Ã3{püøEŽ<ÌäÔe°m”Ò4šu‡‡HÒ”¦N™ž± Œ4hôGëé°yÞ&Kl©ÖÃn¾hQ`Lé,ÇqÇQÒ`þZ\³¢ ¦§cÉò ¥5Qq^#µÁ PúnB­ÖÑWoeO4(˜ŸÎ9d` 6 Úí6 Ééã§ø¿õç°øphxˆ¤5C½Y› Puæí„â‰V ›iê4–˜:ý¤ŠÉs‹²ŽOü‡ÿˆtØ2“ÂÒæ·þúS¬´µÎò†"± ʸ³*÷¬”(㻹ÉÈ/ ¨æ£E³ œr›Óºiš"œ£5=E¬"–,XÈ–+·°aËf^üâsíµ×²fõjDÑ=ØN×P¥çl¥® ¨Œ&~((½J9 ¢’¸Vx2¤Z‹Q‘[æ¸Üâ”ï2&ffåÑGžb×®§¹÷¾8zô¸—à;‹–0hG†1u1 Ú4†2ZíŒ4I0N“‹~ZÎ"]N½13ÕââØeDTdž\-åòä$_ùêW¸öº«ýÜ Ç·vìç?¼ï}¼ä…×”ÔP-3NQÇ‘‹Æxü©|é‹_FÕ%:MÑ2'C•¸z/ÛiÎûŠïîôZו×kŒeåòå¥^à7ß‚ûôŸ‡´¼ÂXÑR0r{íã{3Ù{)§]PŒ#Kx%ö3Àp›i%(ÓÙ4“I‹ *Gƒ/œl“(žàÓŸü$ÿøñgÿùÜöúŸ¥¿ÙÄÁÞ=øÀ>ÄýídþB‰É.#­$Öu„r<|ß½DQ¡rFæ÷#]?ÖùŽ=3]úYeIŽ3ºÜTÓ4 ÷° çÓ”Œ¹Ž)¨›eßSÕ}DQTºˆ\n²î™ÝôÛ*Á(˲н¨.WòbÞR®°UñóišR«ÕHÓ„ééÉçóâç’pÒ¤·8w=´tÒãEp¼,.J–gH"¯d‰¢¿9è¹Z"RƒÔYˆ‹°À’7üÖoòÝÏþoyùëKS#_¸óÛ¼óö;˜ŠøÂß|ŽŸ|ãcƒ€îªõùäö_ãÒé †–4}D§s¼ùÖáM·þ09RêRàóO=Ê—?ñ_X÷!†b+*So?Pd›ÈG'&ùÀG?Â?öo˜7ÜÁÓ*F)I¤$Akf“f´’ ż¡V¬XÁ–k¯cÃúµ¼àúX½zùÃ4šMúêu¢Zm–SŸ‡‚£bÁѵhÖèe»0wk÷á+9(®NxjƒTpâü£‡GÙø<;Œ}ûpôèQ&Ï]`¦5†ÇI %—¨ÅiÛLNµ¨Ñ`ù¢•\µí¥¬]½š[n¹™ kÖÒ\4ŸZ]Ñlra2aͲ•,f|üÿá?þ~¨àKC*n¼ùeœ8º“ÜæH V«ÃYC– ®¼ù%üéÇ~Ïw JQ‹b®[ùšñ õ¬Ms°Y/Τä‰eþP?WoÙÄ•ÖríÕ[P:æöŸ}®ß1(úI0³Ï›  OŸË;ÎU*ßÒy·²8fYRpÿý÷ó_}å„ùó›ÐNõ:Â)¬Ë0&A =·¢¾Ç¹ºwžY¸û˜eoãaŒá/ÿúsHÙæÐ¾3<ðÐ}´¦ÎR«kÒËÅö[Ö®!·’z#•%Íf2¢Åå½/„C+‹Ž4‘å)ê$­Ræ¨(%7 ë4Bj¬i£Uì |Ø{H´•0³NwÑåEUé0ªn¼Õͤz>ª‹…2¼è$üf ÊËû¯#ʬÎ~‹ç?˲® §³yù»ˆ,îÕa9爣˜|×ÝzÛÿñQÈÂrކР8ÄöÒÉzÙ"³ZBçp„Væ,_¸Ö‹èðïuäÒY6­ß€4’š…z½N=Ö` i☿e%ƒNâdŽ@³w×njÂ1–žcñ#þÂ:ƒp†‹çOÒÐ)ßò~üå·ó‰?ÿOlÚ´¶"!á¾'wòÁþ6Ýs7 ƒdiMͶ«7c 9BE k 5±iᤤ¦5­V +œ¯‚œçÇKâ=­AGc|À–¬<¬ ,µ(F ˜œIHò¶7 D02<ÂÚU+Y³~×^s ›6ndÙÒe .ZÀ’Å‹šs[w®{ñwE»XPY•¤ËWÅL º ¤×DØž¸Lç#F»®eÀ:pv’ÃûGyf÷3;îí¾ÏŸ=ÅÙÓG»H–fh)¡ŠóA~Q¯iÏL²Öÿ~gZz§UœcãÆ-|ã[ß`Ñâ%„rO4H+±6E蘓“§Á:®¾j[iÖIè|¬u¼á-¯çwßÿÃC1BúªYií;#¥©YÇßý:Μò†“¯¾í=LféËÛ´D›þæ@¹4 ©YØ/8°ûáÊ‘åZ¡p{Ëò¾¸®/ˆ„ÆÐu'êÂ3¬ ŸÏgáï¥d™_ß9ùEÒ¨ÿúÝù:ßú§/£U© P’ÌL¡„—Rt0L±™%V5²<÷ŠP„ áÐBbSosî„ÁŠ)¢X`r3ý8Ñ&޼¸TFõÎbðs7Taèïáᢀ( fž!ÛÅ¡¥"³Yp`(ÆérŒ.¬ylÐuN©àÇÃòU­Œ •`rC¤uY4‘ÊUkxWRámù^ÏP+6¤¼`*Í=ÜËë^{ÛóÂúj5ä‚aÜ”@äsç‡?Wħ?ù'q±lùƒ0)GëÒe°CýC¨ÜbL†IsbyniöEXRTcb8pì5'ÉÓ6ªÖV1§^ºùþ.IÈާö<À¶m7±âЬ\»š¤Ýfÿ³{™¸|™&C²Žm'ë6§Œí=üM YJ^÷LZúHÌÈyŠ«(ZÐðµ×<¾™¦dY ,DqÄðÐ0Cóضõj6¬ßÈÆMW²hÙ–,]ÌêU«i ̱˜Ìv9¶¶ãJZ:܇\“C·"¬½y0Ü«$™9…tÆ/Þeˆ\I|%u~U\q¾±ýqÞûÆŸãÜô$ùÄ4qä‡R+âÈ'Ê! 5å¨54ÎäX+Ëy޵”ǯe©ñžR1oÞb.^Fáò`…í¤å9A*-‘ò›ðt{ ) ÓÓ“¼ëÝïî(~s‚ºXðæ7ÞÆ‡ÿݯ{¿)›1Øìï¼P5ÝÀÙÜ?¤<ýÿv7 ûR†ºŽi%íãÚÛnBÑXØ¢hjºäD²NB‚”Ú³Ú‚ˆ´Z­>—nª¸¢CDžõú9}â$í4 ‰/ê}14úv%²j‹ám[´T].²ÕΧ¼Ç„ìz¾ åz1CBPë²F’v+À8çLðÛ¥HÉæU8T „s®t>&q<ÄΙ̱FtÍݶêΆ®2Ì7¤T%|U°@1h¡ÉÒ´ì>Êß+:yä]Ì8×£ÒW'‚–YN²(â¬}5_¤ Ç ”*[óÇN·ä•뾌tÄS;Ÿz~Î@ŠjH ÅÀÈùôÊÙ9ƪíboK¬…#3†Äf¬Ù²®¬£•ƒƒc§=ÁZlhõœÃV­Y¼vNÖ8מâÀÞ£œ?pÒ”ÆH“?øÓ?ä?û)Nœ>Kkj ¥3ûk—“¸ŒÁ!˜nŸdïž“ q.lÄVS5Lž"Taæç£.Ò+ˆ…ñ\q#¨I…À«¸19iˇÕëõ2bíšµ¬[½š­Û®féòe\uÕU,Y²„z ƒtºV¼ŠÁ¹Îb)zU¬¥bØamîÕÑ®è® ¢ö›H°Ì(t<˜N ÇO_âÒØEŸ8ÃÁ#‡9{ô»ßÁéSg8zäYžxr×m[ÖuÈHqúÜ9š#uê©Ks(Aa 乄‚ªè|ê]—S³ y$aó«f„YÿpÝ/,ŦæºìGž9ÈC÷íà̳§øç¯ÿCƒCL\>Ï/üÂÏþ¡»Ôj±hpÜXV qÝ-7rìÈl;¥VSωõ“ó¢·2Ô°!SÅ$~c) c ’»÷1zâ ûF²ï©ìܱƒ¾áAr—"]P™«ËèMOä9^[,<Í¥ûuããã,š·¤?ÞH+–®ZÊô™ÑŠU·¯S“ô‡²2X—e¡˜5üïW½Ïz“ùª¿«Šë÷zNUß{.7Ü*ÂQt ¥W…r+„ ›ˆ,+ý*TTØ´+¥;+ïŠ(6œê†Y*Ãâ_Ê®j@ zo5W¤8Æçr)ÏÁaÊÙdžç¾³Ïã‚Û°”’ÑÑÃÏÏ ¤È0@Ö¬[Ïž“Óèá±ÏiƒÜ>os52'X¶nEÐuøŸÙ{þ 2“eЖ(™0Ôôóê׽މ©Lë ±Ši 5Qh¦]ÛN¡5ÆÂF\7IÍ$ † R,€Š$ͼUZTÑJê:öŽ®.)Û|c1Y h¬3Ô”`þüE4X¿q#+W¯àÆoàºë¯gÕªUš«þÉ-V‰Ž¹ZH¬Š‹„ª õŠÌ“v[ïuðòsn!*uª÷`ºt9årû—''9nœ#GŽòÈ=²{ÏnöíÝO{jÌ%@PïkÐh6Ò‹ú´Ô,<ýÈ÷¸nÛÛ»~÷Ê¡~lk 30©´…Šbÿ€ŠGËdåÐ\šuO/=±Âñöj‡Œ±=2Æ_üÅ?óørtt?_þê_Óßß_Þ[ï|×»9~ø}X„ÍÑRòÊW¾"Ü£žñ³o}ßÿÚ—QÊŸ°·ýÒÏókïz7KGFÈl>çâ”o†Wñ}û÷¹rÓµÌnPSq¬J&‰’í>Í+oyRÃHS!¦ŸÛ ݨ¡3nj͂ûÜ‚ÇÿÙÿW¯{™1QÙLŠgj||œE /&Ob¹õ'_ÃßÿÅh9é†?Wî½-2:¨FVæÕ¿÷0‹ò\ƒúªb»:—èMœ¬ZxŸ¹Ø(ºÄx•E¾ìˆ´žµ•tÛ „š$I×µ°=]E±àβ¢¯vs¹‘·U{õsT7Ùb#¤7]ì½þRùÏm¬EÉ‚†í³°Â9[»~-»îyä9«¦¹Zóò¢¦9Ä5t¬9|ü0ß¹ÿ~»ë<²‡»î¿—¡¨Ôe]'4’ Ú­Ià2ó›&,©2èTPi;AÕ"Æó¹°Ô‰±ÒgGD5…0†Ü$ıĺœH4VД.IQÆcòQ±xþÄËT`/c2°>ñ2™J;® ®Ïú¿ÛÚä²8@:Á5W^Í·ì—ºØ9sUGsÝB×&gÆMòåü+¾òµÏ»ǰËILB,bR“zQ‚™4#Ò…"IsŒÀ³C¦¼µ†Ž5¹1Ôj5Dž¡ ;“ŽÈ(&.LR‹c¬3ŒÌáÚë®ãšk¯åÊÍ›¹îºëX³ycitVÆÆõ芢·š,„ ¾ò©sx£>MVW×ö×½Pj‡V¤r㇔‰€‰¶eûöG90z†¹ŸÃÏetïQÚ—ãÚ–¸Ñd°Ó BFä4z‰&I}7æ)Š'Ýgv$^³!%Ƹ @ÎÉŒÇ[ŸÞõTWÇãp CÔ¤?ÓLØ” –(ÂúPªjP·ô>ER̲Çèe§t*RIf J$˜$ •]=`w`œ¼pŽLà%h-¹íõ?—4‡B.yæé½¼èE7á´bí’…\uãK8yt”šî#GYƒqŽi­¹é†Wò±ý>¯ÿ‰—ûÇ3µ|ñ¿ý«îº‹ §ªk¡¬cÕ‚>îúö7;Ù6¡ƒtVóÍ6Êirë)ÉÕì“.ø(¸4Ôê¹`¡j•ìaœXÆÔuöíÛà ×]ï ƒýÎMW­¢YújÂf8)JW…â>=óÊâ.±^"LQñWµ!ÕNº+hlŽB²³z[~('1iÚµpgYÖ B{q_Á€òËNò¡uÞ6½€ËD—Tɳµœd®’ÂçÀg!RW¦b±yw!&UK¦°™ut2²«».ìN"©ˆj16I¨Åív^¯É­éÑédŬ³#ÀE(œõ°x»=ƒ ‰­9ërŽŸ;ƲEËPN—bÇçEâ-Ê᪭[±&Çu-s¦ÌÆ LЄ‹ ™ L g°Ž2šÖA[2+tä/p?>WéºOø²3c“ä&ÇJÉÐÐWo½Š[nº™—½ì¥lÚ°‘þ勈â%:ŽCžH/Æ6%»1ÕªhVðNi«A‡"ü÷  ] }€²^¬­œ¿4ÍÓÏîá_ïú>;œ£ÇŽsöÔiÒs—<)h4šÔ“1”–h)˜73ÍÌÌ9–Z:ͲEK¸òªm¬_·Ž›^õâzÿñ[î^Œí‹ãíø” œUäêqÝOïé(ÊÃB2Tp!yk&@3Ï7î*Õ®«0À¢ëߊ¸\ð©mJ+LÞ:ØO”ï勞{ýP±¿'pðèöíÜòÂk?rJ8>ü‘ßäíoz3ñª¥h`‘ZsÿýÛ9¸g7ïxë›yÃØ)¬ƒZì±ïüë?°uíz°q×¢ï¬ÅIS´ çÀI„4ØÜùEBªY ©ìÊk·]íŽzácL9'ìëëãÉ'žæ-oªÎ9ë×­õÄðÞ™1¥ YïÌ¡w^Ù;·¬Vâ½…aïs?Qe-õÎu fRµŠîdç$MSï{ï(S©üU5ñ´’+^ x*^ÛKèÕÛT‰ ÕçÞÓ‰rîyMuÆS À=ª Ë™“¿òâþªÂaUñ¦5þg¼Ò£ZéÀÔªñàƒrûëoïz¾þŸï@:)X±h 2÷³‚MP ¬ª8k/VXmiñ‰bÎÏ~’>©MGu$‚z_c ©50q™ÌZ¦\ŽD±zér¶lÙÊú xÉ‹_Ì’ËY¶r9ý  u„ B6 %Œõ»µìŽm­.n]›ž˜›Óù]p({ŒÿÂ×ó.pd¬Å<Ä;v²wß^ÎÞÍÔä$if½ƒ­„Xiò,C É`sÆf¤—'iÔä&%é‹H&3>û™ÿΦÍY¶lˆ¾¾>šƒM¤Ö^äL—.\WÇŸÑZ\èæRWǨ60³Ò,a*™ *ØzGÃ"‹W¯`zt²<éš×ô~•Áœ¯HgB`e¨ƒv¦H3œkP[(Úµ Yб344ÀÅéó(%¹tqŒ·¾õ-]4ߟ{ó›¸ã­oé¸Ëߕ޼læ"Èþʆ÷œG¸¡¯xÍpÏ÷î,Aĵ«—óÞßøÙäDyž ƒÆS—¦9uò >ð8O=¹›Ñƒ9tðqG4YâÃÑò¼{þ£+ƒØ"Ö¹—ïß{ßÍžŸ¬õé–<ðÿ¾,:Kˈw™§v?óÏ>˱c'ØóÌN?Åùs癚žö”Þö ‘®£´À‰”>`ì⤳ D‚Ì:j:ò•”I9¸ãQ-]B}¸ŸGž~нñ5ÌæÍo{¸çjÁ>€Xa‘Æx)ÇÚ>CT˜(Å ³Š÷z*° N¸ ‡ezºE½^ï‚ñ6]s5îÛKü›ÜEB {X,¥O¡ôçZ–3•rc™“°aËÁu³¿¯ÔCXç8uú}!£$¯yÍ—Û Y.R,$Å!X¾x+Voah¨¿Ü\-å~ð¯¥cûÃÛ¹÷‡yùK^ȱs—xìÑí /¿‚¿þÔ'ø‘ןâì‰ãœ=wž±‰ lk#ŠHƒV5„ŒÈÜÎ@n2ŸÀÙ3pí=_&TÑ¥QŸ±sæÒ b¢¤¥Ô:4ÚÕÛ#¯û“"Ü¥ìÚæ¢Ý÷~¯WhØM\ йæuvÖÀš*å=Ð^ç:Ž®ó$¼x±ÇÂK;0W‘”Ø[ÙJyyO¬*»±:“);'K˜ºØ$òYSØ9gTsòbV‡Q½Oæ¢ÏŶìD*ñÂx±+ ˜¹µ0E’§Ãv´)t3Õª4ÛrmͬÐ,©d7ûËvûUU~¥ébÏõ­>?UÅzéh,¹µ¤iÚE=‰*X6uˆ«šY\§*]Yç§‚ii­A6=æòÎ•É‘Ï +“r6 dhµÝsŠŸž‹Ò+¤ÄH‘äÈ‘c¡²öNº"l½ù] yØ$DÀîV6 ~ø~±Òjµ˜˜˜dâò÷>sœ;w±÷‰]ìÙ»‡™ó§ÉÒiÀÐh6¨7bj}5œ3ô E”²`ñ^ù£¯áú[náòôß{è.îý—ï!2Km ÓN™NR¾ÿàÃÄ Uòð‹ŠÞà Ò”¤íÚ†ùK®ðIÑÄDBðÚ›náGÞñf¶ÿÃwQÍf‡¢'ÓSÓÞŘÊÂâ4BBžNpÛkna冕\¹e3KÖ¬æ%¯z%q¿B©¾žYO÷¢Pý¯¼nÆ–CíZóÌ3{Y±îŠpíýÏ]¹a$žº´„¢žKü%{fNåýPý¾«T•é?ÑÅ IDAT‡ð¹ÞæER ˜€dÙPX™±|ÿGùÎw²wÏ3<òÐ]ôiÇÔå:ªã¤ä=ïùe¤€HjZÒˆ2šý$IB\‹1&Åä›…0T)±&…§PVÐåq¯®:˜+Ç£êé×õ o{™Žå9­d°ŸF¯;fÙ.‹`ÿþýøÁg!<ÃM–|îòæ«V'ÖÒÂc’I’’¦GŸçàÁQvîÚÁ£=ÌÑ£ÏrêøIHSPšæÐ0 tJl%Æ#ÉÀB@ô3Óš$Ï'‘²Aûò$óTUW,çŸø&+–áLrï¾ãZ Þ÷;拟þo,Vƒ4¢ˆHùü Ïò¶×N@ËZòÌbMÊÓ{B>ÅÔ…é£ê}v$†ÔÀgÿðX󹿣q]¿‡à¤‡ Úi†TŠ(Š+¨g=~ç·ÃDÁÿÿ™v õaÚQ„N¦g9®ön•-¢m#Šbvî|Š{í‡.Db#¸V£¢0qÏ9„k8>«²-"g« O9#ñnÎÿ•osòÂy¾ÿÝ;yòɇ诓¶gš?ÄýÄOà4u´–¸d†¨^ÃFIæg86M‘5ÍôäY“ÚŒFVC9‰Ks_½‰aª‡´O¿áDÈÓ–³XK½À* ·*,+ÜžÍû&$,賯¥S!…'ˆÄgÏžífw/}Ñ ùÔ' ‘Vä&+}ΪðOodës+ªJ¾Å\ÄÙbWQÎÇ\gAè¼(6 ϸ£§#+f@%3©°P)„~Ö=çFÕ;o©^“ªf£ ›öênªƒöb Þ[õþ.ç|¾ŽttmøÆIœPXžÜñ‡ŸÞO«= Ö×}}åX›!¤Ç”.¬Óo›pnœW®â·>òQ¶Þ¼ù#Ü>ßâ_ý >ñÁßeAÿÓõ”Zj¨g ÞpÛ›ùÃÿþ1tTÃZ‡3’K“–ºsüÅGŸûvsê¾§ MÉDNà¬ÀhÉüô_rÿ¿ÜîCÈOŒ3c.Rk V,b^3ÂX °§¬sԔ劑>ýÅÿÁ7¾úM”‹0!7úèÉ“õþápƒ9<ÀkÁ¶B!œ&E€É ›Â 5*P¤óCõêCWÅ­‹EMj\gQqÌ=ÞÇø`IÙµB0¯ÑçÝ"Îòçd U°*ÐÙg[Ý”ð¨ƒMg©7j¼çÝoíªø¤Ë}4q’ɀݧ-0ŠHjòÄÃwZ*ò4y;!®Õ° ½õZuÌ•çÑ ©ô¦ ÏEï<¡dIéµ™À9\*¢—£`@élÎÈÀ OíÚś߸¦ Û ®¿ñz’vL#!Ï'„Ì1›ì¥§W­7zs¿«ðеÖ;M«–eLéL‡Ö ’C½XWç¦BtV¿.‹”PÌt_÷ /0Œ¢­5™É½‚^J56)©}“g28ݦiZéF¼G›sŸ™Q«Eá9ñ® †-;óªIn-qaLîg<Å,%!µzv–G>a1Æ»-€@*íeâ_œå9*^¬µ¤y˜uX‡5Ɔõ|¾ðù¿âº_Kž{ÔóÂêh‹.ä„}Æ¿q%@JÎÁï¶)ˆq./)ÁmR¾~ç¿õÅ|û{wòØ»8{æ"Ó.9­´Å¼þš‡µ¬¯HU}šfüŸœÁº›x…¹µ9`YÚXÈÆµëøOþ=#‹‚I1"FXX²@óñw€þâûY÷C/¦ß1°‚ÅKññ¿ú„OË ZBkÆ.LS_;Gæà[_üGÖ._Á¼¾‘"pîãiÆïÿúû™WŸÇšU+¹ê§^Ì’WðÙÿñç$©×¢¨ã'A Iî@ ËϽá'¹”N}„瘞™FiI­è@ s2¡9z)gß®=$IÚÒMU7wõߣF®V±ÖZŽ~¶œ9!%Â9â8‚ZâZ™Óy.­Á\´ðÞªµøù>(¾ŸUoµ‹êµGy.¡¢¯­À s±Šz¡ ?Ï«Z¬ó?ÕITE´½>pÕc©¾®‹5Tã™Óâ]VŽ«°¼)~‡:­>¦ŽE ûP±Â¯qp6/)ýÕ{uó.ŽO‹f®é=çÅׂÑ×{ „^kS9½,4­#L¼—ÞQJ–óÔ®®¡Ku)ăifñwEgS+<±:ÂÝJg¨EP„+œõù6¢@tm®Õû¤J"èbËjº’ª šÅ½U ÊK¿-©=5yŽâ¢ìnŠ€7ç]â¨NÒNJ1ãóÂê$Ô [¯ºŠߺ'xð„”²À‘íõ²¯>¶XÔ”ÀØŒ… ¼ëoó¦‰Zƒ0DJ1P7Ø,¡^KýµÏomS‡ÓÖº`(„ÄÛƒ+qú̞ܵ ½ é©s2.aO“h¤ÌÉbÍ×¾òunÞzÓð§Ÿÿ¤Ÿ§8P.ç¾½‡xíÞŽš”l\³ŽíOþCYÕ/¯E 6©OÊŠ½‚d(Ž8wá4#µ::R¥対þuòÉ1MUüù›ïßÇën¹™áš¦ >ô¶7{>€óUÊÄÄ$X¬ü”b*ƒ«×2 ùôeÚy‡ÇëG†È­ì‚¦zÛúª¨ªŸ/ÌgÆæ¾Z4ÎÓ‚µŠ¨/šOmj’Ü$s ˪³€jE[]¤{9ö]CQÑ«ø_CdsÑH{7—® Xt°wA€,z©¦¶ãK&J_Åš#èŠ(4-ÏaãÓëk5×BZ~† ­£ÆîŒzÓÏìÙàÝ`É/@ ¨)… 2Ù œ-ÔÞ.ª÷X¬³h¡º(©Nõ@sª~š®Ž¶ÜL%çW¡í^Êru³èÔWlã8.xs>µS)„e aqÞt¤»H õ¨ÐcøŽÅ†ÖO(Ižæåb.Cg騋¶\_ÅuQ²ÜŠM±KiN÷9Ìó|ÖÜDVŠÏ\ճ܅yô‘êÀàyÔ„e㆞U e‡‡í7§a[§ž~j-BfZÓ>»Y038í,fÆyÿ'äéüÎn¬×B Ï>ðËg;LKÍ+^újúv—ãôø%î¸ã\½z Ÿüäȉ®Y¶Œþ%‹Y5®xÅ­?D;K¨ëVZÞöžŸ'7g©×"ŽžãŽw~€v3qñ2ìÆŽÍ0opi1Ýõ¢5+XØßôÔfÛFg5lM0‘¤ ÍÐÈPY};ÿvïcœÛu˜þÊ8›Y ²óNLL €þf³3‡r‚†´üÊ»ÞÌ ›7³zÍZ–-_Ê‚‘!ÎON±iÓ&‡†ü9UÞlΙ¹Ù2½Ú–jÁ0c¦¦&éðJfçÝ^6\s'î{ðY÷ôª¨{žsáÿs1•ª¬§^6Lo·S]à{óhz¤U*ßµõ8 TDjˆÙ3£NŒsx¿ª¾eŽ×Î5ƒêý<³ô΢„*-Þ¥e>E±˜9|¸D!è¢=1†Óe5[.~…ð··x(ÿNìÖÊô.>Ë»XØz {Ùj½Šz­5Y’–Z¹Y‰ŽF¨ê·Õ[ôˆ*+Ëu45¶RÀ”EM ï pcLi'¯¤‡’|ª 1Ö®œï¹J¬ó,[èR<ËQá ÛkáûÕû¼j¦XÕ±T©Ó¢·X Jù<è…¤€;Ÿ&ËoóóàÏdˆ^´ÇؼaƒÇƒçÖWis ¥º«Š`¹Œo“ ksr“…›:v©oóŠÂÛùk°¹ò!TRù`{¬go*ª´Šõë7(ÈãØ™±\>w„?ûæ×xôÑï‘‹‡Nc|l‚%®Îæ½ €Zá¬Ãʼnç˜oÓù$¸o|õsX¡DF0¬j,.ŒùFxÀG ¹8m9ê ;²ûÐ!Ò‹—HC³Þï—ãÉq+åCð;¼çŽ7Ñ7¬É´ ²ž‰dÌÌ´ºŽµª S#…!²Ÿú“wªh(ÉLt tŸwø¬@ ²Wä2?( !éªÀ‹‡eìò8ƒCƒ^WºÏmÛ¶pèᇈììXÖ^(«wŸkF2g6xeC(ªÚ^Ú¤ë)¾zªY,³YVáž›¥4[ê&l±iF`Ï¢Ù»)Tĺº¤ÂJGˆrá*‹+N´Îug• !HfZ\¼<Ƽ¡á`ÌççXÃÃó8;=A¬"²Ì ¥@ 5'mw–7Ya.¨ƒIbÒ)a¥Â€1dŽà‚k¬¥ @Ùö‹Ó¯ _”PmpŸ•¡p²ÁϪsÿüÿÔ½y¬ž×}ç÷9ç<Ïó¾÷^î¤DФHJ”Iíò*Évb#v’I&ËLÐ4ÓÆÉ (’Yº¤Ìü•E:h‘tÚA`:Å 2ifŒLͱc9vb[’µXµQ‹µP ·Ë{ß÷}ÎÒ?Îòžç¼ç¡$J% ’ÈË÷>Ë9ç·}’†›ËXìÓétø,­õ¨3ëBkG,I«ÂÑ´ º×KkYÂÏ ít­ý@ßkÖÜGûtÏ*´•ãm)!’…¯b,8I£”ß{qo„÷&T‹ ž3ï®Z?û’¡RIrHˆ€Zc æÿ_Ïask“Ý;[/Öú. ÿÒS—Ì…ü¡sÓÑh£}@ÈUƒœÁð°9ãu˜œ]ଗ(±Æ·¤ŒT˜`P¹4»ñYžT*´8 Îi?Lf©ªjCká«ßx4d–~1Û»¿ö%^zù ~â'„E£Y\<ÏÞéÕ­±{ºsy˜ÇÖ¬Çn] Ù¢Ý ÝÏq̷ۛ.Õlêž½;S[ oo^a÷Ñ›9xíQî:u?ó?Ä?ÿ¯þköÎç´JsÍþƒ Î,€‹WÞ¦Ùüƒ¿ÿóH¡BÄ"Ðh!˜]ºŒ±-&±–·q(”šbŒWQAœ-üÌÁ£< d8’‰=–Yp”w8ÿÖy"ø–øówßs73%¯"9/Væ9÷Ò·X3%£l‰üPªd¸ƒ|…¼³Öp2%û&[Èj—ÁnE3*²èC¶J¥T“ÅX™A-•8‡’8Y;«„ØÆ–G¼žΞM¤2ÏCÛo»•…Y€q¨F¥¶]4P*‰lùu{M&³<è _šY¯ö›ŒÍ¬ÿ=N.´m¦fëͪü3—J¦{÷çˆÿ¬8ð÷éVfUù $oíuMC×4>9µ68ëÚ QtKïùº·&¬’ Ø 1±KgK¥Ÿʤ‚á-v=@ÃsÔ”êÂ;ò|‡JRË`, „”Þ5S&í)¼û¡5:Ø.Ãæü2Bþõˆ)þ¥Ȳ…à£ôÁ=×Ъ& ò)©üÖU²ÃŒÔ¥AetM#‰÷Å RöÖKù±ïaÚî÷ĺDî´[ÝtøXW5ù‰¬k¦œ{ãœÏzÄR<ñÎÓ·"z“zþTZ/c0ψ³Ïß[­z‰A&8®’w+,ûÜ3b”}_©vjm±Á0»BÆ»Ú|¦œû”ü‚×D¬,ò@S!ò•ÏU)ÅC=”à¡ñ`tú.^~ù•(Šâ¾€{v"ßÞBÍáî›ïä—~åÂ:³0Þ¼°ÉÎÝ{÷(‡víæÜkÏA‹µÐJÉËÛÛ°2Ï΢„¯*®\~ÌœÝ{×øéŸù)žáYlgy{kÆÜH.¼úÖmògþ'|ï÷ÿÏ=÷<Ï?û`âð¢6¦j"è¤dÑo!Ücò¾¹L}ó\¾AH‘ò4É©µµ5}ôÛ|ÿ|ß3%àÐî}ÈYh¸PQ†”XmY•™x­Z)+—Ú¼¤$‹Å¶ Ùf98¯‰zÖXÕ+$ÇJåT­âŠÊdlÍ–ÙóŠ>k’/ÑÎ^¸a¿½6+±ÖÒv-Ï<óŒö,¯ã“Ÿ¼—ñ/¸Æ³³s’šHˆÕ`ahñ*¥ в’ù|^UÞÍÀ(»î °Pn±„,Çy‡]V¦ªQXmªdäBb%˜ÅÃ5!ɲ¾%H«XM¯ûï"úYug9ùÌ¥\ëëëÌf³@h´é k”JÌSmû„ÐZB‡—Ÿ[dªiPñ> ݄})¥¢S“ PJaäþûࣷßÃ_Cüø«©@|‹?,4$ëëë ûð@(ÏáJ¿Å›¯œEÙÃ\aºãzÖÖp`ÿ­9x#¯ž} clÍÞâþïãíË/°wï»vµìÚÕ°g§Dªž™] çÛ,´e1ii„ò⌀^ô+û|ÑÙÚ¶å¹ç–QíaH\³wßêÁ¬`$ñÈAÈXÚù÷ÔÐJÑhÈØU»Ð.›^Õ¶Y¦[kéÔD Çî­$ÝÖç.ù" Ô‚m­º‹_ªixá…Ÿo±|䣯ôsp¬ðN\ÑJ«sfvÔÊf)ï1°† ýA*†ðX­û•NC„ºÆìÚI\°‚`(ç’UñZãçô…©“çÙˆ2*Qe•ƒÖšÙl6PX!I‰ù˜Çù/_#žkå¯!’Ko!ºïéç3úÅœ~>C8›f,ÆÖÖְβ¶¶Æ<°TßÓCôÔ–rCíi1ç4N2…õÝÖCêb6”›âÄE¼ÜD.”¨qà ¥"ÊU‚Ì:—éó†˜þ•lЛsÞÏ]ù07ß~¿ô?ÿKþîOÿ=Іg^ú&ªg FÁ΃;p~ñ~™ÿîWþ «?pË¡kyâß }Üí„“\ð™Ïþ ­ïáË—ý= CÒX§@Ðaø­ûáë_ûS¾ýØÃ°÷ ¿ýÅßã߸^;¬1‘—hz!€9;÷Ì|–Z†¶-%¢¿ˆÐ^]5Çà !è´cá, Zx/ŠÛ_Âe¯æí ™Xžxâ©å"‹BI i<|: -Ž>T"Ñ‹»qC ˆš>Z­=ScH§±Gà ¤JCÈÔÏØ"øq†“}®rÑ,Ñ>¥ŸÊ %úÇB­ j³«màŠìFÔ«È­ç‡M9Ä·ÖÒ5ŠçƒWö’7â8z픦½×\A˜ž&V›6Cª5*í¡¨CNŒsÁ¿RZe 1•ª¡×~_X㤔þý=P”vÙµO&?ÄVr‹Óé%@÷¾ lŒŸÓkh»Ù4Ì´– +ÁiŒvÁ›¥@ž£?’Ñ‹¥Ä»TtÓ)v6ÙÐÛ>l¶f „ƒ®]ç÷ÿ÷ˆŠ½çQX\ ôµvîßϹs—Á á%ÐKBVí0¨ºj‹°†Ô´ bö!HªžPÐÎ{“õ=kAAqû§>ίý‹_å?ý=t :ç¯ó©ï¼L»nùÕ_ûUîüȽüøO~Ç ©§©ååQ¾”ûÈým.¾ù&±<òð7øßü<ÿî÷ÿ€3O=˥ׯpùò´îY,æ´¶Ç1CÈ»™cÅÖÖv"´F¶½7Ç16AB]ØhËlg)ÞãíkYµrT?¬†¶Y1ð‰ï8"Q„àÌ™3,Ó¸¥”¨=;‘³Y¨ E2ä’ù,!Cá”­†W¨&¯R]G+|·C³YBòï«ÃoË@4æ}’Xá¾mȶEñ÷G];…¢àÜ*ù3Zyv,„LÈò|¿gï^úyzŒ•äÀÁÜÃÙAÒQã³äÉà ¸2cƒU—äC™ýÜ\R½ÖZÌÛl«¤Ô°G0©Rî&gÌÖRIPÌï3ç0%‰÷kߦ¹•Ÿz†z|Ïž+m²Íòd¢$¿ "°BH¤’Éj7Îw6&SžÀìOsË|Þóڹט÷ÛLšµw½ÎýŒZáPNÐ øžÏýMîÿýû˜håҌΠb…)œ/šB¦v‰%{º\^zÃøi=³[8Éü‡?åîOßæQÎ[ZÊ4è6H¼_ù¯|áwù…ÿ×N7Àvl]|ÿßø ?ÿßü,7Ý~'MÛrùÊ&ç/^ä×þͯóÿê_Ólo¢äN½AÏ Ón¦U8Ù£dë |„caæ¾"ê5 PƳO­‹¦J…õü˜™Ï‹¼†ö)EùÆO‰8¥h‚ ðºšrþÒ%¶g[¨Fzâ¦ñÕÖÑ»?Äìé³i°žƒàóU D;ŸsjDÀ(Þ¯««ˆ¯Xõ˜ Ï¢¦íT’¿òæJä=äpÙüÍŸq~à¬0‘£;ahÝ”ÛÒ#§ æeöž$Ñ‹ƒ2ïïÇÃëòåËô™´Œ³!NÝñ}œûÎye >˜æC }ÀqŽ®íÐZx"%±¯Öš« ù‡*jÅ;ÄE$VÛr¥^ªÔ檙'HþŒã¬%>Çd—,}£ÐaɇÉ]óˆCT ±Ð¶*Ð|·À/ç»]7Im¨<øw]Ç•+W–ê¾J†6›¢ë:Lï+Fùýb±ð‰²žC³Æ›¯½Ê˯žåÈ¡ãï“–ózXXouÍµ×øì/k)˜‚5:”‡Xe"—(–1Æj¾s@« NH4ž-ú#?öŸò­û¿Ìá÷¢E„ç5ˆàY ð‹¿þëü³ôOÙh./.0m&Lv(þèKŸçßÿÎo‚èÒÁŠì™HÚÎb¤f±°LšŽ‰4ű (ôÜ¢éÂbF”å Á1WàÌœF)x­ •gfR ä­Çdµk2 e‹¤|Ž%ÿb(8Ç’M kÖ¢í‚7νÁ¡Ã΋մBpãM'yìÌó^K5À½·´KÐÖy³4ýZ­RWáâ3;%¢zV†Ç’’•,9Bòù¢*2MŽãABã–ÕDYQå¡Ö¦ÊÙ¸Îk.åá*¥Ï†_~ùe޽~™¡Ço¼‘×^|múT æ„?'²ux"}ðþŽH>Ù4ƒ~ mŽmÔ<»Ž×­È&îç÷ã•qÇQmù #¢¥ÒçÑáš÷•½1š¶mÐa˜"Â`_Á:—˳斪TVx £$BØLÊÝÑ4­ç™Ûàòç !hTç¯S;¯4íTàÄHïeä6ª“7ž?Óëž¶Ùð¶Øo¼É‘ƒÇÞõAHóWQ})h‚¸[ =yskÙÕK6EP>ã”™n¹8#I*Ï®kä<ÈðùA’ÿ¾Î{ºB²Xl#ºW8yómüÇ?ñ9~ò'ÿkû÷²µ½Í£g^â¡Gäÿý¿áís¯±sç´™¡œòFW‚3¬¯CÓšÁ³é^„ölû‡1st¹BÑÏ=Æ@ˆqõ¨O0”,¬ñ °(ŒÞä ‡vºtË ®<$ÇæeP) xjÒ뉼6—ÑšÞ7°}¹î …> ÜñÑ»yè÷¾ˆr<'ŒñÞ!Ë`E’îVmðCÐv”ï‘Të9Q15¦Àò×fQ¾,ØæŸÑ*oš˜èEÕ\ŽšªqM«ÔŠZ­8–-7Ïe¢ Q Zµ6QÛvÈFñÀ#säèÑ4¬T®ç®ÛOó§_üwL;ïe’îK[>ù³ÚÐv„:ݧŒO Ú«‡4A81z´GBñà}$ËÕ "#âß™N&>`9’³inNU¶ c²¢> ò÷½4ŽS¢A/,ªõ„Eg ”˜^#[Iozï«Ñ4žå-eRÂM ¥˜Íf¾Zë|7¡tñ剛˖ŸÉ¤V¬õÖ‡Y8\ ­j°AÔÑa2¬O%1 ÃZ»†Ñ^}Wktk ¡s©X,¶Xß¹ÁÙ—^ä®;>è ÍÞÓD {µ•˜›# IDAT·Þpœe[j¤wõôF.W-‡›Reý+pÆ,«Ž¶l#”þ%´qÙÇÕLÖ-¿ÿ‡¿Á¿ýÿ³¹@(K;]ŠùfÏÆÎ,úyȹí…KdmFÎq¤,›¥¬E¾¹—ˆKí¡då sæ<ˆª„G¾ Ëanyà½S»j,c/³â¶mhh¹¼y9´fiNñ‰;?ÌÿÃ-çg–bpQQ7—œpÅ!7[.-çYKh÷j6_¹«UµƒVgÖ )3ÍÚܤl¥Žµ™( ªe;±l?É”õ/ð¥W÷Õ@¥mtl‡ÜÿÍoò·~臃㟟پù&úÞ2톕KÓ6kÑÚÛx=´œB°´EÛNÈ•D%Þw’/qÅ|.{Vù4:®£ùSj‰)‰ÕvTò¥­ô?¹u.o32HIK˹”@ˆ¢™ë8”O÷äV­wó ²LpbU«{T † Ü<>‹Z?¿0×} vï“äïÇ˼7MüÑ[|àAþößü±÷>Œ·öë®[îð/·ƒF/3’eS²æ”U9ÊaZ\(åЭd3~³ÙÆl²5ƒÉT°c÷Ö§ÛL…Åž·Hçè糄ˎëµD€•mŒA6è&`÷ ã¾<Äó6F)î„Wü5NÁ ã*ïµ<Äò,¼”â®LcÀ—¼úÊëžQ<€€ßr§÷¼ŠÕBum&¥’2CV‡§«ÃÏU³¥Úó¬ý21)[W5Òbyà—Ù}y`—•]'2Æ Ž¤K§VðGå>ów76#,*mÛòT<8Ê×’ùèñžX~u¥ËC)›µ"W+¿?cÍ` Oô"§Æ¦€“sJ"ŸE$ÖrMФÈ]Ϊ"Ú+ßçyb”+ÖæÉD™dÄ€Qî¿$®×D±ò(ŸEÅkYÂv—-¼üÿs(±o/“á²# „¢Q m;E©`@…¯Èœ³H©ˆv,_©L&J)~èaþ:~½+ä艛@)i :k†c+›Wíå–Øø±ŒyŒ;Pš¦™"ÄÝ; œž"¤b®/ ›Ë4Êâ¬N:ü¶@‰ÔÈR«,ë!ô±¥»Zo¾<(H¨¸³öR9 )3×ÚSÎÆ˜Ó5­*Õ4ìÙ½‡ûî»/Ý›Á·øN^sÐ#ò²¬´t¬%k‘Ð]e+á’ñ[#»Õª¦ú*¶ÊçPŠû•s 9VÛZ•R㦤y]Ó†a“O°ÊÊ&¯,òÖ.Ô% ¿jO=ñ„o?†!¾±†S§ŽM2q‹Lhïöç×ì¢ïýòU cœc‘ Ë`ZàÌÛÚ»\Ý¿6ûâ«ÂÈ•(‡õPPãEŸxM‘øX¾Ç”ÌXˆz¬0íW ÈÙºŠßS®§2A‰çÙ|¾ÌËʵ,å’CâBõ†ô®Œ.$6´èKïž”þô«_yÿëå)=|wÑH¯e#(‰“+Äà„óí ÕzÄPÚ šy+ŒA=W/éÐÈÓ¤Ð8ãhÔ:‚Ž^/‘¦×È‚}ëšHœ#èykY‡´Î·ï»¦-´ ÷¬óR)lôÙ[#dò(Uikµèâ¦3Îbƒ1T­ÍRxKoç¼ñú›a,¼œÀN¡5-½ª²rþÏWôª¬¯N„óúBÖ $&?œ¥,6>Ç®ëVž_ÍЩäU¬Ì” ZiþL.‘e˜5ùœZ[,¿–ZO¾FøsÎaô¯1¶m›:1ÈÆª)ñeÜrÿƯTÒ³36 6 ‘:4î;m­×§ V6 &t!,Þ9±„^wÝ4#S/A!>PH}lTðj±^lÆÿ{Ü •Rlì˜â0LT ¬¼ýú®Ì®¬œï‹"€ÉÚÄg¡‰—á’ í2â`ý¯stFíÈ!¿åÆ® óàûeÃMÏU[ƒ`58ÔíÊUpÖsµL-ÞS~Ÿ9œ°f:4æ1Q«àJÙØðgz >¬| j:éxîìs¡3²<¸U$•EùlµÝ{½¹L÷pFãò‹LW+>“8Ô-+­1Åݲ½”f&M“’µäí©2* ®fµï©mÜ1c©«ñrJ´]­ÝXãðœ?>Ãí/=¸÷_s4¬{塨6{?™t}nE›.!óÏ3ú|­•×™?û¼­˜W¤å!5ôš¦Iª´e{;Vñ ÛS Xå¹ÇH51ÊþÜÏê|¤¦i²Kщ0¾³ù|žPx±[PµÁ HÒAK+‘@:©B2†¶i’Žoe9f³Yº¦()ðâ‹/Ž&‘ïé°s×.œ %y±“¿y¾Ø‹’86cKDÑØ¿ËC¤]¬±›Ë6M~@3Âö~Æ6eƹT}íp©*¾è^üZêå¸U¯ëŠÝ(ÁRŠ$ƒí‚ÚgyجPEà´• {èüb—B$–³ €¨˜:Ý¿¬@ ½Z°«“ïj=üÜã[&˜8áªg˜sVvM±·„)ûlÓ¤ 'ïÅ×ïrnT›OÔÐo1¸ù5?PsÅà±e­‚-ñçonnæ¼Ä$;tüäé1ÅÛÛ í[iyÕTüœ¶ëV˶Qþûå>ÏAyÀÈùÁE %Fòû5Ö ÚÆ+ dXîë™ì9ñ0¿îÈž‘G®5¾"ÑÖ¶˜‘d­¢TÁgòXçðeÁÒ@*_;ñïäèÉœ¨ÿþ|>_™“ÚÀY!(,‚vV×uþ3×Ô@ÆfŒœûž ûöîõ%\„³Æ ‘éíÔË5æ²ßZö“ó‘Gú²W]‹–¿6„^9D#ˆÕŒ5`µ x™EFŒ8ƒR"¢F¼,e?òÙ‚uY;°Òc®•‹v‰ÝŒòÎYt¯¹tá®Ïx¾ì¿îÄ $¡«r9ªµê ë&Ž‘\ñ>K­¥rsÖt°Êw•8s(¿JtUYÁäÿŸgßW“òóG‰SœE”*ÈùýÉtP-ÇÃ-*ÍS,pÓÉ£èÞ'ÅŸ§uŸ5óÃ-=†4yÖ^&lµ6jmïæöĹ’nÉiZyY»«< }•4´ Ž{mo/¯/³ÍPü5CæçKÓ4L&“A‚ KQ×åyÜ@´1|vä²øW·2Ÿ)y4ªiÐÆ{½7¡}åõ÷íÝËOÛ‰•ÿºöБÐú0£à¡¤öK¥M»”#R)™¸b.¿‡$‚xW7JI{3—î ºj&«†sz¹×Ú¦ ‘ì_]йJgR˜eäÒI±MQUeÒ¿7jdÅêB*/˜Ú´-œ¢ûåмZWªQ8éýD¤”L§Ó°¿B=RZšÆË¿;cÖáz“T ´5AEZ¢µWþ5Æ÷ž ÆoB¸•NÁ{6€h!¸ãÈqè|ßZ©¡ƒ`$ëä_å ²\l5!À4s D¸<³)‡íeû§ >I˜1È0($ÎØ ª¾Y2SsG-ÃÎ3ðå2ÈÖBÖ*ä§Ÿ…|sze_Aƒ  sZå’²³À¥Èa“%BeÐò ‡ŸÓ‹>v‚'Ÿ~~ݶعs'ZY„콄¸5ÁE-\o”fq©äÊA8@41Fÿ^ÄÒÖ•áà<OË548T‚\HÙÚ*=³KaÆò9Ú~x·Ò†Kï)¥Ã_¿]ÍÅ š¯Ó¼Ý—¯¹|¯©_»ÔPÛ-EáDèŽøk¿ýŽc4¢¥mRu«PÒ }¿$«kO(ßQ0Xœ$‘ƒ©Üc^–2úBI´óÐÜ$W8 &“ ¢‘4]‹h¼j°qÞà)êA¥Ž€”ÈF¡oíª¶çpH„l²¡í¦‡Æ˜0éÞ¢d3h?GžGÓ4à$Ö€’-‚£%R4èÅáz„óUÄÂ,˜éž…5+PNyUn-Q­ÄZMop”ípN"[…ÈU‹„e²ÖB {Ê@äUmÃÆÆ†vA#%O>þtJ†%﯎<m·2”¬®JžCÞÛ¯ :K¾ÄØœ¤äMäÃø2ƒ¯6åFYQ‡ÍŸêWûËj'l5Èæª'/½Ë~ppkJ®"ŸDy„ÊYóþÈ1(•k—I­ô¸Ø³{7å)ÂGó@j³ƒ2kYõ˜^WþwÆ|¸k-±2¨­dxAÄPÆ ÞI¸*SuuÖzƒZ‰ãÒ… Õ€¶ûÀµXë|¦ëV¯dðQ7Ö¢]šVpƒÞ ŽXVˆ¥±Qä”ü‰%WÓ *×bž„ˆ`EP©…æ«HžŒ=÷<ÉÉyµ¤©ä¦äëÇZˤëxìÛ­ ]n>}#W6¨¶¥Q Ö.+·¾ïÑÚ »2QB „±Iþ<çV8§|1ú÷¥öìËÁ¶­ØÔø01àøÃØ­|_îñ[:¥Ë 9qdTƒðç†.K®¶kÃ÷ôaÑŸ3¥åù8|ËÀ§µ¦QŠy¿ "V-Øå`ßÛnkµÎJ×5©fcÇŽ<üÐÃäŠYÛ{» OjÏž½#ùZ²Fö*Ûe¶V³õÌ#lù5È>³ÿ.P©ì9ÆQ¨ÍQÊàŠ>wÙ*+‡’«·9Êì´öùcûZ°¬Á*Ë–Ö Q/8­ ›.¢ÍПÇn¸£#®]­d“2T2J©à?”§)ßÿÕšµê­V ØèPW1Ïã׌U@c•Cí *]Ë yU~¤6'«eŽåº¨=Ÿ(eÒ¨?ùòŸ_pòƃ˜Åë FÛ•}–_ß’­Ý® ­Æ”°ÇÚÈy•—‹‚–m¸ø9MɓDz3á‡×6YËæy®$¼Lútðw,y"›[yH³RrÀ3É5·‹FkŒ™cl”þ³„ðzÜ~î}QT0Þ³V{}+%Bp-1ð.ž}ß{^‰ Aú{mQ²AÊ!Z÷g„‚®›ðôÓOv,Þ³¤dÿÞ½èFЉÕR³Ž¸É‚‡’Ø€‘Bøì¦b{뜟WëN¾¨stD™Eæ°Ô"åAL ¯i­Ö]Ó_–äclðÒ O6 mÍùR jâb-ï¯ÜPqÅJ¦D†ÕÐE5GÍšt%J6Ž+\æì³/`‚ Å¡»ù$3j=Ù…[ŒUšôïcé¬LèžÒø)¥Ún~}UÝ3g±Âù¹aÞâ„ ÌÚùœ*o?–‰‹µ: ß­„L†icŒõÕu/qN†ÔŸ/Ö|¿>“/«ò¿“ÆRÛà"‚P€“ ÑN°B!TË¿ø'g“5°µ–£×ôí%»¤4¾E$W’±ÜìmŒ—2D¥5X‹?ðT‹s¢p/ƒ–”µÙ6h&Ì8ò“ •«Â›^Yg“а [å÷“Ñ+{­m[‹}?Gʨ'ýÐÙ5çQQ~–f’ìºG?)”jÓgö}ŸÖj׬¡m‹c‚A¡- d3A6JtHÑчl§X$Æ æ½Á8I+$J„3ôzNÛvÁZӋ϶ëJ¶X;Öwa—p·Ú¦ÃY?¯êç¾{Ñ[Co4/½tÖ?3¡ßM¬w©…å/òÀáCØ^cp+-Ú†_AßD£–&Me ”w´“•?–1–úR%gc؇^¶eÀðýªµMÆÜìÊC ¢Hr'µÚa_Cså­³’²¢R›0V¸DÚ,!¢å¼)ög#òIkƒµÞ'ûÑG]f ¡1vóM€¾÷‡šX“ˉ‘6ô‡KžGmŽPÓ^ !ƒ§9I´±|Ge_},Ó¯U{Ƙ”‹žI.÷1¬®múŠAiب°ëkáüh­“0¥Ÿ3õÞ'Ûj„Ó<÷Ì™%Œ>|ÎÁƒ‡±š¶}8rÒßX"”£¼Ê÷’˜|VÁy‹Ê@”TÉgB›euÚuÝÒ"CóůÒS'þ|­õ@}7O\V¨$WAg-M@ˆYmA·|&~¿z¡VWT„ÖØiY.í“·*ó Ìôv“ À„EHÇBÏPH’/ÛÛÛƒö¿µ–étê]çš7Ï¿†pâý£…?ôÐÑÃ8m¨—t&h"½•°É A¼ ·´­’”*CÐr0\ôËÍâR.þ³ÚªX–Á`ßq~Sf’Õ¾®­ôÊ£ ¨ôH¢²…RËê(j-Q(ugÙ‚Éõ†×èŸß#<îÝo>á¾ó.èØ€zªylŒÍ[ÆÄóÃá/6K(á­«¼ZRRóà^&ÃVLNRã*íÚ1’¤Èìœk°R}Œ1áóÄ-ɶøÌ¤T¼úê«©JŒ`—=;'¬íÝÐD«Á2çáÄw¥ÓËàZ‚ òÊ9Vc]‚r­Ú@ŠPá©bë¾O@Ôíêº.­Ó¾] ì%qtøóezá~C˪Q^mA¯M°¡ Õ´¥†à™²U•¤ãsé2ʶmÓ¬±”yÉE'­µH!Ò¼#¢Ó¤’)8F_’¦U<õä“81.KÿÞãX‡Ærò¦›¼„€ªëþäýW ²–<ˆ° +ƒÂ¼¥‘gùÏ(•r‡­˜º9U‰‹¬øj6:n ;hS3›²?€.Ë¢5[gl%‚¥†Ì ˜Ãh1zÈ »¾&l¹¬À–– ß—}òÉ'‡Ü$'€v‚Ð[³2(ÛS5Xu9ªÍFJËײÇ?8q+3’«ñ_ê`•ƒS{%¢­d:/“ ƒuzucWH¡5²Ûh.VâÎâŒÆôÚÏœHl€ÞyBÈäÿžsb+4&ñ÷r”Vnè”ï±|Η» Vç5b‰ÐR0ÅY7H$CÁV[ãå]†¸öâ#VC9±Ô¹åu©¶Å°R`¥ÀH¯¿Õ¶í’ëChoKÀKã«øÌâµÆ ç1¾’"}^×u>ˆ4žu.Ål†é{ŒéCÅ*@¸t)¹Ëž×ù ´¶6åO¿úU¯%ö~¢{ÂÙ£´Î®BBhŒLÊZËZ›JväVäKÊöG¼‡«db ŸT3òÄ³ì ¦b²¤ê‹Rj©ë+î‹q% ¢îÐÀ<戱Œ‹=–袬ÿÆóJðs£RVß¹*`aD„ÙÍË/¾00=–Ó–vcã°U Ø1û×Ú{So¨±R ÿí[j"ƒYSex~5B!B¤YaþÛcN{µLo!°Ö-õŽœK-¯ýtY”"è%™kÐY°ÎÛu•4›Í“Û_¬o¿õ6zÛ ·LºQ±ÒÖÌ!Âa^QókŒ^5wÅ\u7*Ð&éõE3Ö_•Ä•çèN‰\²]füjâ¦Ã~öjŸq¸­A(/d£jCh¯Å=¢Ú&­ ®ŒXèÀH¤ê<úPx¾ŠŠÏÇYéM„±  ÖÑ5-F÷` JMA6^‹ø|%ó™f±èý>ªVN—5’nŒÖ0˜~AÛNxࡇ@JÂc{ÐÛ½þÈõXmÒH•%úŠMΨÌHj^Ô5…<¨ÕÐ,5Þ|¡Fÿ’Ç?<ˆ –j1`LY!³”… CJ8Ý9³¢¼ëŠ IŒ“kY½ ’"±¯ŒsÉЩ$zÕPH¥wKž=¾ùÆ[Ùìjù8öíßO\µùgämŸÒ`«jàUiGÖKim‰©.©Æ»C6¥5$˜ŽÅ–N­e6&ÿ_;Ðc™±”Iƒâc pR3 Š_±…c ”b|¾]×ñúëo$8iüø}ðNæ KÛviM¤õS™í•ˆ½èÞy¦žgË9œ6ÿ½Eq®ú XQÙ®iR•HÃÒ•JNÀI„ˆZ>¹²NÔn}²à–í3k“i2J’Ó,%Ip ñ((%e‚KT)‹ÅÜëŠÅù‹j˜n¬ÓL:šIë[EÏÖö^}ýEÞzûUæó8P|å2¡ïÃjÀƒÒZ6o!Éf¥&—t¯‘%ËCÚ:GÄw&Õ¢R»šÿEþ½¹ØßXòSC[Õ`îeÛÌ!>rõ IDATWE¡R°.%6hâ…ùº®ãÌ™3ÜtòÄÒ/Ç-·g¶5g}"=±-[—5ù‘I5Tùp=~oÛ¶Uhü~›}®jB*LH6T£Væ ùÏŠ¾èùœ%ŸSE`€5"‰ Ñà¬ö 1È®cÀ"&[?ƒ$+8FB%M3DAJáh¤·²èåÅ UC£ó9mÛÒÃ|6CÇ®jØØXgïÞ½ÜvÛ­;r„“7~€[n=ÅNÝ·)ÖPÆÚÖ¶If©ë:O’T-þ8l˜!O'kœ{ýœ î=@¢†ÿ¾½{¡$(*­•”• 9ê3ýN.l5DÓ°¯í– lDµeR–å%*¤æ12„6ºÑàçœ]™“Ôîe ¯]öÙãì'¸55Ö²ªÈ?ö·kˆ®1Ý®’Tg­EZÁl»$1Ë9züÝÿ & ½önã!ðNr•è•gÄVŒÂò±œ­Œ"§)×ð’k‚Z²Rãéä•W™¨”þéebQ#–Á7}¾ Í ¤T(Õ„´åË_þ~à¿e¨·ìß¿´F›úl0|c|­ÜdªL¶J!Â2€F’^ÔiÓZ£º.TR)çN‹½Ò¶m %11¢4ã:÷ëÌ·œµ4Äi—Tš0(ÏÕƒ}eâ÷£‚—‡µE×vô}Ÿ®ÅÐã¤ÃÇæì }ojÂÚÚ„£GräèuÜzËíœ8q‚ßs·Ýrkþá0Z W>yÃGxû­³ôæ"B8 Rj‹]×1ŸÏi: ђɤóÒ?âÂÅ aý¸ª¹Û{.€ÄAí`ÇÒ6 Í°¥“y/[ë’¹ËÕÚ åPzÅB4Ô" y#A)V1#+5ŽÊû òŒ§ìi‹›Š¬]6€ ºa{G†Ò6‡íÖf9æ>¿ŽXŠ ŠÂs£lŸÄ{Ž‡ÍØaøNÈ¢ü=èEÏ민ÉÁÃûýu ×n¼ÁnÛº4LùN½—º‡ôÖHO5UäAÒ›˜EîL|7…TM>׉0RQ\ŸÌýÚ3Ê2p×H„µ%OF´Ö y3Ö«£ƒêdYH†•• s<)>ø`ZÇdÊq`ÿ>À„–MŸö¨*ÖQ>ϤÖ:µ¬ÊH)D²‹U ÙxáOd†N’«M&xtédÝtÖ"•_6°»e#Se¡ûѶ{èroooÓ´ mæ!`»¤n+ÜRر„ç÷ßu‹~‘ã؞͘Ͷ‘J±sçöì9À¸çÞñ‰O|‚|ä#ºöh:l=M0´ñ“X«HÀoÝ#Dh>vïÇøã?8‡?ä·½ll‹>ù´¸°w&Ý„Ùö³í“Éo]|‹}»÷Çì{;€çû—;€ýàÍKXaPq8M’¢ûYv°_3Qf-%&¨yl~¶q ¤ÇX†Zks”_¥¤Ã[xp@Ûå¿­5Õ¾v ?vù†²¥U’ Ë Pˆ×Øëy{ª¬Fjå²='h›ž³Ï<ǵ‡÷Ã;I¯ 'oºgT“æå³ú™Ë*–>ç’è¢ Ï:ìô¼ƒ,¹ŒìøHR% jÌóøyÑ«8ØkϹVç•V-A*Õ5èwÙ~)’ê¯wé r5Î2ŸãÏ¿þ5´54– ëØ¿g'tÿ=æl Êaί?¿¯AÂ"½LHo4²‘çåM¼ÑTlILȈ…”Hg²ûSØÞx©< pF'^Ït2aá2_Z/PÊ‹ú––óLn%qè%E ²iPmË•+ØØØ qÞPJ)E7™¤9_Ó¶Ì ¶··½79pøºƒÜ}÷Ý|æ3ŸáÓŸþ4ÇO|€iׄì,{ –<9gJ‰sœëB-ANRc¦|ò»>Ìç?ÿ; =¡p¡çtrBÛ4Ìf3Œ±¬­+\PÊ^,¶°vδÛA×lòÍo|ïÿ¾þ+Ga½+DI¿0‘‚£‡òÚ[—ÑbÿÒàš˜¥¸î8o(+ôxßMÓbÏ”#“;Ÿ¡ùÄÛ<ÍÓ8Ô…*E†–"CSâÉ©¡cu·´íiå:­òר÷mt`›Ç¶”¯Æ¤TI6}ÇžÝ8kÙÞÞæÊ›—|ëõÄq®?~œO~âÜqÇÜróÍœ>}ÚÃlÛ!½‘±Õ鈼X²ê33à'9î*TÊWRõm/Ák°hî¾ûf6/]fç.¯r<®czÍ\k¬°ˆ&ògB‹[øs mZ¾ò•ûøþïýaþªyßHpÁáC‡xå±3!ûÎRo6ϸÊ^ôêLaØSNýN¼fŒ Ñ]È%¿dì ­Y‹Ö°ö%s47XªÍ JÝ­’Þ4"×¹p ¯^W©æ;VåÔf¹Ëâ’[âý?bVi°ìkÚ^¾%‘u±…Æ’ìä,È)þwÅAègŸ8zÌo å%'j{ê*ʼn£Þßµ¡~¬JËvcJ2­’ôÌ‚µoeÖ4ÖŠÊ+¶*Úï*\šš^[¹ÆWàîÙïÅ`›¸•–gÓ(æóy²¢Í[„6{ñÒE®=pM¶6áŽÛïà«÷½”:ƒ¹‘6Õ <_ûÃuéA%:hRåû%'ÄåW;í‹C¥PRD™ÏÁì,_Ï?ôäu®”Ÿ;Dé%X_ÛÀá“” —/¡g½_T t“ë¸õ¶[¹÷îOðÉO~’Ûn¹…;v°¶¶ÆÚt-­?c¯æŒß"¬_;ô¦iFæÐψÁ\¯„1C¡Óa°mTØGHXl žxò~èÛ|ãÏäË÷}'.…V¸ÄéB´H m;MjFkÖÖ¦€c¡Öi6v­sÿ· dÂ÷Ab%ý!pì7ðµ?ü"¡Ði¡Ibù¡œ‹µ-‹•ábÞºª©öR¸æ=íÚæ+­oK²aU,3Ó±~©Ì:F \B)ƒÿsðkÛ,¯¹ÞŽÊ½ªÇÕ}+ "1k[å`ç³M…j¦Z;¨V1.ßQ–ã¸eÆŽXÐ̃R>w«U£Ãêru}”^µ–aîdX©k.š¥<Êjâbï!—ŠÏ6s‰¸ûž{¸ïKŸG‰aâ"ò$%ð¢dA ·øÆº®Aë>S»5žÏ±¸3Á#Þ³EZKfXWúžÍóçCð€ÃG®ãÎ;ïà†oàÞ{î寓7²ï~öﻆ»w²ÖL‹ Ö‚ÌСš<ˆ-“V ü6é2´Ÿ\>ÕeðX=¸¥˜òäÓ¯ðèÃOñðÃóøãçxé¥'¹pñ Þ~û2‹13&­£i4Jj6vhÖ»Ìæ= s!w`LTƒÑs„•‰@ØPÆŽÉtÂc=ñn8Ú¾;¤Ááœ/£N<‚™Ï¡Ù@µ¡ô5¶Ú†‰¤4ÌÉÜD坸”ížZ柦ÇÈ_5/’ò`*Wå@»Z¯ï—è,!V˜¨±+A,f\ÑUƦCcõžjמg¼J¨äuÄÊáñª‘éßqøïÏKÛlòöÛß pQ‰/$,k(6À^<¿òÌQ—'zIBžÍE=£|Мºy{©l™€4²:dÇñ};p½«BÊ`Qª×^%伿ïÝ÷=]×­ÌßòÏ+!Ú¥¦ÓÐ…³Y¹÷õõuž~ê ×<ä hH”ƒÝyóÅ”I7CIh°Z#ƒÅ-8\tÐ þöàý¸›¦AÅ>“Xa“)”TŽëŒñ÷6_øÃVÈD¨EJœ6ˆÆx]«X‡Q ªi™ÏçlnÏ0—7ÁZÚµ5öïßÏÍ7ßÌÉ|€“'OrâÄ œºñ$×\s-G¦©õú> w"#ÔaaCƒ3 íS‹Ý„ ÃLÍ­pvŒŒÔËÀzáÂ6¯½öOŸ9Ë™§ŸæÑÇŸæ©§Ÿã­7/òÖÛ󷸲˜1i§ìؽ‹iw#$8Ëî}‚~¾Hï:Ç-°ífÌÜ ¥Öiå„¶•Ì[Ñ …Fk¿?´õ,æ3¶.]aóâ&Í»`(õ.Áx=ÕÞ9Áñã'ЋVú²0¯”pÞ1”N.ÖVSˆƒ4ÖL¡ÊÃ^eM9ÓW*Îù—ëýÔî­DÒð-¹ÿ3ÒbƒÌ‚71çÔ*´±Và*1ruö³ö²=#¥ÄàØÚÚ,‚¯¿þcÇŽó·/Œz¢ÔXôåï—è©Úµ×s5QËüŒñ᎔Ïiàþ7R Uge•o”ƒBj館ǪžZ뵬†wìØÁ<À§?ýép úàsúÖë™]~‹émzTÈìUA*L 1H蚦Y¢¬–PË H4°è{¤’tm‹ÎîÛhMß/ØÚÖ¾5¥ûöîcïÞ½=z”»îº‹Ó§Nsüøqn½õV®½æšô š„ ÎÀ"2ÓK­[g®l`{;œëÓ~\vdb‚Ç_›Û–—_<ÇÙ³/óüóoóè£ñêw^ä©3Oqîµ—X,®°è·˜®5L§-“޶kèÍ‚¦›±sWǺV€¦é.³Ø¶X*ÆÀWó-î¥ø£ @…Èuoÿèß±B8‰leº[­ûD/ðV¾6ÌZÞ<‚Dõ}û¡¦ÙÔÙѶðU#WÐ%Q¬†R*7ûØà2G»Ä[FË–Æä²¼¶±{«Á1ÇœÂJE\a—,ý²*®kA³¶km·ZÅU{~å5K%˜mÍýü0ŠË…Ë;yÓIžøÁQ4]o26À.«‚ò3ód£l ³k¨¿?(I·xã2•¬æ·1^ÕÄØ°>“sÁ’¯…õ"Sû[ßúVv¯!;wNY²mZ¬5´Ý4ËVnœ;æH¬œi.„ U7€ ‰T¿è½o·sè¾§ >ã{÷ìáà¡CÜ~ûí|àæ›9yã|ìcãð¡ë"Î"òk¶7Ø×6I¤-R– ’ )d…‹0s¡úðs¢ÙÂðÖ[osîÜÛ¼ùÆ&O>ñð/¼øçÞx'6™®C7ÙË®];™v Æjví¿ˆî{æóžÉ¤E›ÚÌq³ŽÞœmXÌ´Ÿ8 ÷ú[@hÁZÙ¦çgWZkúŒÓ"„£ï(Õ`L`Ékϻҡ‰ ¡m%ëëkœ}ñ,'Ž|Ÿ ÑCAxÍ~(7„|g‹Ò²?^ò0®¦(Y3QÊ7ÙŸ$×e*}4ÊSÚÎæ¦«9æó—Á‹¶ÐJÉ?;÷fˆŽnËòZ¦^~­ýTÐÆ˼’·öÞ©2ãƒ~ÏÖùK¬ïßá1áûnºé&~w1gåéÃŒÊ8S–•I]¾Ã’Xþ=WÁjëoÌLª¬LW8#ÕFm-æ/ò&Ê ;W:¨A–k•Hžä¬@j‹û¶ÖòàƒfÄO¿ø¦kSßáW‰Å9¶–6@`ó½WÚÆæ pc —íJ)6Ö×ØØ±“›>ð>~ï½|ßg¿—ãÇsüÈÑöï0¦€Ü»ìÿ·%Êó# ÝqþàiD.©牖ˆºfxôÝÖ•-¶š7ÞØæùç¾ÃW¿ú5yà1žzâ ¯½ö½±H;;wO²÷²Í‚£ÇÖX,Ö:Œ½ŒÓŽK› Åc%Óµ ”h¼§“+‘J …ñ0båQ£Îyõj¥ü5)%°N"•¢A Ök«ÖÏ’—’Åb†Tç¤÷qY’£¤7¹Ò¥»wïæ¾ûîãÄOL3ˆ²™ÎÖ»D$ôí+iûJYªÑŒCÈÂp/'ÄÕ6qi•®eŸ¼dW ú·Ê—x6 ’knmƒ×2ÒšZyÈæ›ª$V…ø¤ô„¢¬%ÿ¬e0õ_2 —Ìú1Ø`­rZÁ¨²eF]r†m?ç¥kÖ6xøñ'øø'ï-¿Øï¸ýúmG·Ë!.d§¤Ò;Öù°9üù»ÊŸgY%äÏ5ò!"Ô’Šhb•¸ÉrS¶Çüç¯æöV›´ÞEIo|x͸ì¾òõ–'@1Èã}¶eàWxÁAèN’ÿ1_ºñ „r<þÔ“ôFÓH… c4ëMË5GOÁâ…eU/M× Å¶;ŸÏ¹²½ZZ{öî去îäSßýÝÜ}÷Ý|ä#áºý׌¶—…pÞúUy(«ÃkÍE¼Ïƒè¨ô÷d ()P:ôǤ1³á{:ább Øþ,[ÚÛ%_º¨yô[/ðµ¯~ƒo=ð=þ-Î>ÿ(0gm2g2mYßXGJ‹j »Åž}òG±Ö0Û^°±æg Î9&ÝZå‡ÕÚ z½ÀJ‹eF7mqXTã%dŒé™´’E¿í1ôý4p<Ö†”p,æs𦡑c´b4ÞŒm!¬ßk“†ù|A7ñâžÎŒÙšÌM4 Œ`­dkk‹?û³?ã§?÷wϤ—q¼×*¥ .ì^Û€¥ÿpÒú‡FTݵmܤ)׾ɇƒì=ó½XfPv””–êÇø5±Â’øUÄë]*£ Kí¢«1#ª>Ì!Žå!;¦/UãTÔTdË쾬n\ÀÞ?ñø|ü»î!W/Þ·wOh)(}”¢îr˜gÞB9”wnY:˜›ˆ¬R©vkò*°ªIVk –ó™<©Ù¯T)¸UƒwBYåU†”’Þ,ÁqM ìÁÙÐXãÛ0§0–‹/²ß>ßÊ‘¾åó¡ÝÄ×¾ò}?g¾µ Ö66¸åæ[øÔ§>Å­·ÞÊg?ûYTÛ2é&I6¥SÍ’\ðmV!Ði•8÷‹²ç3„^‘„ë|+ÔôtÒ«äºVb¼±UEÃ¥-¸ÿëOòàýgxøáoñÐ#ðòË/²}å JÖwÀÞ}¶·/ÒëÝDrèúÙ8ôVƒ±sf‹­€àœ¤­µs”ô3!ç`¾˜§$µ~$ùŒÉaäEL8ƒš¶e{Ö{Â`Ó ›gLP¬ |-åæ=³Þa­WÐÕfî?Oû浑l+BÒÙ&˜ö¡·F#ÿ’!àÝ©@\”,‡ýrµ#‡po^^"!b%ÀPµ6ϨɛÔ0õ5–vT¸õg|æ‚l5ö{IV¬‘ÒÊYGîmPCÌÔ$V(±T¨ŠNŽpƲⲢ«!x®æ 9¦‡U{vƺfÊý÷ßÏö÷~&´E|+óºë®mrŠ“>#’Ra¬õÙ¾À#y²Ã<7ãè”íµÒAÏZ7M‚ŠvXIDØin”ÿÎØ=—í,®Â¡¹šzðSp¶nåóówXŠf*¥PVÆÒ·>Là÷4!¸¬íØ‚­ím®\¾˜¸ û÷í÷ºe³¼ÿÏÿãŸséÂ?eÏž=¬­MiÛ–ë^‘7HÃDëXì $ÞÀ* Ù ’úuÒ+øN„”ñh|Å*×¼é¾_ª ›3xìѧ¸ÿ›gøúýÆÙç_ç¥Ïsþ­Ú\`:Ù¤ëæXñMÓ¢µe÷ž)´ln^¡m¦l_Ù‡žo¡ÜšGÍÚø¡¹’ž è¬Ãz¯·ìÊçIN4³RRáÄ0!iEßÏ}@T-}opHºnеþçigÓŒ ;½m®µ`è|K[ëÓi>_&›à¸fãÚØÞÞf:.[ëÁùÓ##-O<ñTHøç/¯lòîÌ@ÂùaM暎rþ­'ý™"N»QÌ~9ÿ(ý¾kò5dѪ쵬¤1-¨Òj²6 -ƒÅ;‘k(¢ôyj©æ{5´Py°–A,o{ÕæA5¶üØ@¿–m¯V‰ÁzTJz衈Œ -ǵy4‹•A Yâ„ ƒË¡DFžy—´6|Ï5®ò ’ëŸÅöUí9T‡çùÿ»ºŠr-É«j‰Q~Ýiø-<És̹ÖþŒîuñÏzc¸|ù2z6÷?ÒqäèN;ÎÝ÷øöÒ Ç®gמ}?vb Kuþ9t€£÷…½âI®Eâ¼Ml­M¾%Ãò.—8_m]yx·@I‘øxãü&gžºÄc}›gŸy†'Ÿ|šçÎ>ÆùóoqesË·z¬¡i.Òu![®9h˜mk,ÐÏ{67/³½=óìëuÁ¡ë޳ïÀ~^|áyz½Í¡ƒ×b¬Ä²@kÚ¯­÷üÐ%[Œé}û)ìG£Mr´†qFm4¢ƒD¢m›Ä™²Öˆ0h³ðŸ-¼gˆRm˜ï óâþm”ðʺNÑ6kXÓ ¤ `‚ضrIÂß».†ÖÁªE»>œcžï_¹gË ñ——Åzw*¸äªwòúã|ë¡3عô:YÎyÍûFx™‰åþÒeÖý¨}ÙKB+Ô˜²µÃ<—‘.{þQºÆ2_m-ÉQ—½<³V…ȲíB2úÉ!Ìc0oÉÔÏ5‰ð1„O Wl©Ÿ/Æö<ÿü³>kŽY¼€Ãkk¬>€ØÞö.0àURŒ@€ž;Œ(+ÂR-nÆØTñ–•CÉ÷ˆï!oc¡÷•®’þç„TMÏM¬T´và”@ºÀ—"­‡¶i½ž“T\^ÌØšo¢ç^̯[ŸrèÐANßxšÛ︃c‡¯çÔ©Sl±¾u¾ áu^zé^xöÏ=÷,~ûa.¼}‘7ß~+.Ð4Õv¬¯íbº¡°‹mvìêiÍ6Ú(¬îÙ¾rŽE?gK¶ {÷^÷îßÍÏýÜÏñÁ˜Gó?ù_ò…/ýŸúÔ'ùÅ_ø¥4cqH¤7 ô•°|ú»¿›s¯¿Êþ}7²c}®»‚•-Ž>TÀzéRó8«mÛn©<­5M£ÐºG5A¸±zU_@I…ÀÑ42ÙãŠ(n¥dPdž„õí)^ØÒ4Â;Ÿ/˜L&Ìf3”Rôý álèÍ+@;Å`œ£Qž“…³4J&©w4MËm·ÝÉ3O?Íw~Ð „JuÕVíÿoDà¼pËéÓl-¶Ù%6BcÑaæF‡¸5èæ!AmTùA4ÐÑ!{Õ”RË5YÃf¾ÉYÈ×Ïeû+ ±Ígµáq9À­AOÇ ÑcJ±e°«ºT涘>×Ú¦ÃX$*²ŠPÀ©S§xáG‘_|§9O­Z(‘mcÒÝå,!oq•ÚTµê¢D²åmSbOˆ8g m¦¶kSU[OóùœF5l϶iÛ–]]Ǿ8vì§NâúcǸ÷ž{8}ú4÷(³ Cê< \8—¬Jˆs}~(À©¬Ê’ì†ÄÞO!–;YÀÛ\8‰K/óÒK¯ó̳ç¸ÿ›ðØ·ŸäÙgϲyå%’v­cccÂzgQJ#¤¦gßïÕ"Ô'ç\ºô6·;Ö;Åþý×rîÕ‹ìZßÃé[náŸýò/³ÿ^NÝ|šßüí/ó¹¿ó9ö_#˜ÊŽÏ|æ3üÈühj÷ó=H6°Fa8-Ê„©ðW÷†®mq­äw~÷óüØÿDk ^É÷ž+Üehi­½Cb£ÐaÚ@24Z{áJ¥°Öx7ÛÁóƒq¯ ܆õ¡ÊÙ IR;RzØòÚÚ³Ù,˜q„4ÁÀál‹œúV°6e h“I ”lhd‡’æÿ£îÍÃí8ï:ÏÏ»TÕ9ç.Z­Å²,[–lY^d;¶c“²‘tÒ MÂ03@Hš@èéL7ݺfh` 4C–aéi&é,lB vï»eK–%k¿’µëÞ{NU½Kÿñ¾U§Nݺff y=Ù×÷žsnÕ[ïûûý¾J¦¬˜]Å—¾ô%nºñ¬wçÃã¿ ùÇôœ IDAT‹xcâcËæËC›}v¬µSnw¾Yuv©º»æÉµybkdSqÓÛtÝåÀã.~Ó@®bЈ†‡ŒÝÖr•ýK)¼›*øê³v™(¾¡ «{XN¿ÑÞü—ëþº®SfE¬º¼sH/0#ƒH“ nçŽü±É™îõ(G6j –·yYî@hc\íûÔœM7Ëvàrÿtá^펳°Æa U‘GÀgiò?þ<ü(ÏìÙÍÅ 'Jûô²«Öä y¾ÈÔ*èOy„2@÷ç8?rËE¦gV0~Ù3^ñQ.ß°•Ë6O!uˆ…­×²™Ç‰!Jä€ yÂpäø³<~?ë6ôyË[Þ@1ÅiGø¹ëo¸–=OŒ9 ôQJ³¸¸0~ÿFw);F¿)§Éükg¾4Å›išb}0”tÖ‘ç%•¢“¼L°dŒ Ïââb½.«¢2Ëz˜rˆ÷žQ¾H™ç¬˜™b8c ™î1I´¦, Œ)ðÞaLI¯—rèСÆ^üreaÅ9¸ö/=ëV­†Üá{£º”AºŒ]WôèÁW´þF¤ÕÀ³3Žó¥æêmñb[ÁÛ¼5#dŒßìœÛsû6¸^19šn¿mUuЫ¸1H*ØU{_G·m¶Û„f‡ÖíuÑKÛwWUÛüšR!4…óÈDóäî§¹bû•xU<[/Y’ÌøjªŠŒNácW€U%ò“Zü@ ”KÆl))0Œ=°¬³õ¸1„MY}^4@åF!e(zF£Ï«?S:Ýcû¶mÜvÛmìºþîzõkÙ²e Sƒ)„ öÝišÖú1ñ€)*dk293º]Yý<‹C‰ò"x3É2VåƒðèëDD•¼ˆ#Z1Úîçã¿ù{ì}b7Ï<{˜ùù‹X—³becÎ0˜š"I†ÃÓ++W–,ÌŸ§?5ÀiI‘[ç/à­ éqìÅã|Ç{¾“û³ÿžÍ›6AÌÂØ·o?ñ¡Ÿà+}kVÍâ}"gç¶«X¤S áä‹gJK* ʇy½0ôSÌ$’¬?Æ1”@æõ~ãÿúüÁ@j…wMEU¢qy•#’žÉH\žÀ…y2pßCrÛ­·áŒ¡0š+6ïàñ‡!I¦I“¤vý n…®ö†Ht¨Ü‹³,‹nÕ}ºCÊ„Ò,‚—1APNtÂiš†ñ&P×-螎bà"t„¢ „ šMŠ%Ö[l4«\.Z°PEÁìì,…-8wábÀ94ßÙGHJRZ$“ãÚGŸx’Q±@–öðQgò²ë@c2†@035 œÓߺJM³©1èò J³ÉhZΘ± wÙ~té/–á»díQU×û6e»<¹ºh«ØDìì.g7Òu=Ú‡ÌÄï9þŽ*½oùQVu³ ~ÞþŽ·Mø•®X±¼Cɤžß/§æîJí«·‰Ï")}ŽBÕlé@F»y©ÄZÇÃ!ŠÜʲ$ÏsFÃaݧƒ>×\}5×îÜÉë^ûZ®¾æ®¼âJúý>Y?£×ï‘©4:ã»Ù=S­ÉÖaîCÝ/Ú¦à <áÞ§ò!â¶£t}ôf ÕéÐÀþçÏòÀ×vóøc{9pàÏù¹Ÿÿ·ì¼öê`À¹’ûïÿûþVÎ,b9O  ¦²d~4äø±£ˆD³~ý%‡ 73X\Äé(<´a^¶y#<ô /Ù@™hå@)¼×Üpý |éó_à“vßù¶73»z–¢,Ȳ4vXáN—&lúJêØaT.Á®fMŽŠáDñ&,]`Ü€ïùž·ðþ·­£RcMÖ!‡<ä–·òzt†qôû Oͱ8\Äy‡VšÜZ¶o¿cƒ¶"ˆ';в,ë©CÓ¶( a„8!pö:~_`§i=¶7*ËA¢uëŠXü—áÀ«­¥)‘Ò´G Bê€÷ÐÚal¤g+TŽTi„ '²‡BÑËZ)˼XѼK‹/eQ’¥½¿—tÂÿn:æŸéÁôNJÜ(žú3ðæÜÎçX²9Wžý@ûr‡G;œ§]e·aËY~´Íú–8ŸF;!EÄ×<„º¢s—Ztªô¿qÒd)˜5öcݲš¶X³‰»t™%Ž»C_+ú»ñ~\‚|xÉý_¹r$)HAYx2t:û6±®ƒX‰¦®ÂM@Tà:çIŠ"/ óúšMÏÎ²íª«¸êª«¸åÖ[Ù¶u+Û·mgvv†u6ÐËz$NÕákÕ=2˜F6»2%ÇžKžÎ:'‚³ªŒ´Z/ÒóÆbKÓc~¾pš‡îÛÃ#O<Ëþöplî§N`a~‘…ù3iPÊ"”£XXäMßövî¸:¨žUÈl¹ñækqâ,¹ VÞ;œ\`nîýè¯ñ–7¿…K7^J/ÉÇùÅ_øÒ_ñ]ÿä¬Y¹) "lÚx _½÷þPmÛªXý«82*°hÞñÖoæÿèGù×ÿêgÀ 0ÆV} "{Ɔ5ejÓÃûÍ z½¬!ð8x ‡å³Ÿý}zôÑq4mdNÆdéXz„b8‘ö¦0nëÛ·_cd=½Lr|î(‰†Ò^@Ë>Z)”ŒFø'TÅh°äñž J½N4EQÔ¡jy> 1´qLVMš{Kž$½”¢(ËÊ[„÷H/ð.AÈ`-S–e`Zé;›zúý¤›NŽ¡ÃDæV¤N²µ¥Jiò|„Ö $‚…Ŧ§¦_¾HûÏTÚgjÍj|n©éCÈÌK%ù-'öjޘʹ­ë˜`ÓT3ì*P©o4m3ÚÎJèÕe ×å;qÆœg1A3uËj:šúæÆ>瘪\Ez:ߢsÜØF¡™œÖò B£rÂî£IG­ç·ñD¨”Ç´ÆŒ] tÞK”J$ìyöù¥÷jY†µA”FœóV×´é÷T‘0ªëh°ãk›ç9ÎZŒ±o@ÂÊd[.¿œkvì`ÓæË¸açulذ-—_Á† —²zÅŠŽ)«›òÅï\}ßT3¯¤ú76¾¬Þx‘pÑ4šß' ûŸžC‡ŽñØ“sìÝ»Ÿýû^àØ±9ýâFÅŒ›G Å í£ÓŽ(Ë‚,›‚þ(\£øY§gvï~2*(œ…à¦]7’ÓS ë „œb~~ÄñãçØ°fE° Ï @2Ûïóη¿•çŽgÇÆ+¸dý%;v€¯ÜóÕ`="À Í©sðáÿ:§ÏæáŸsÅåkB>†÷ýÏïáŸÿØÿ  ²–˜0&ø©@)MtRçË©øm3LÁÇÿàó¼ïø6°’mW]JÅ V€°¡¨Ùgk׬ ¢e/p“¤=òÜqþüE^qǫؼaãØã Á}÷îAŠ•Hq)E¤ÔjÒ$6v÷!—Èà}+)²½ßSwš>:_TY,³*í…èZkAù”¢ÆXÜ  jÜe'Jã&ˆBHŒ)H’­© ÃÈRÊðýÆXŠaÆ`:ÁšNæá÷ñèŒ\”$:c0pòäIÖ]²Z–3/ÛDƒ+72Ús$$âI‰(ܲ³õ.…t—àMTΛ­¢fÞT`s•Ÿá}ÐýtxHµÙ.»ŠåÂ¥Ú8‹·.æ¿7ÿ¶§TÓ‚£´œ¢¾YÅç@ú°`ǯ+_R+ÒeÙTBWï—U¶ÕÚr žèÐ"÷Ýz‡µBJ掟¤,,I:¾&=`ûõ»8þÂ>VX‰¢Æ¬´V¡BµJIJSà#û®(J²^F&26nÜȆM—²ýê«Ù¾m;›/ßÌõ;oäÊ-[˜ê÷—W$yÞ•qëÐ uT,&‰ÖÑU{c bU†Û¨‰¨/'O.pêÅÓ:~Ž#ÇN°ï¹C<ñØÓìyv/'g~á4‚p¬XQÒïõðÊãl‰î{úI`ý„û±@é _ FQ–-5Åô`Šƒ/¨ï©vžŒ•=èÂ8¡9wþòÇƺÕ+p¾Ä£Èó’#Gç¸jû¤·HëÙ¼z5ïúîâ ñÞôÖ·qíömà Nh.ŽJ6m|=ƒé̹õÖO0wü8ZH°‚éiØùM¯a÷½Ç< ¤4e±ˆ EØJ¼Ho6\D¨k.¹db;ûÍÿøq®Ùv9wÜ~5) [×­ “‡è½vöb0ó€Žêjå$—­¼ýí;¸ó5ߡ>ð£X[Tª½bˆM^E—Õ.&ÕK‰»ˆ ]ÍëÛý›#®JÓàœCi4>ðì§p ŒFC’t²E¾õÆ|vÏ“hKÇm…)éõz¬\¹’™™in¼q»víbçÎ\~ùåÜpÝK{‡˜àãÆ_wíL¨“ÁB‡:à(°ìmTW'xa"lž,þL¾Vƒ!§Î,ræôEΟ=Ë™³9=ö$?þO=ö ssG9uöX¤sBÒï‡Ñ8T?g6³ïB.»œb˜/à"ÿ×ÚIÛžf!ª`WwƒUQP–%‡®«|Ïx7Xµz-Åù$I˜£¿éoŠºƒ¥`ç®»8¸ï~ò'?Ä~änN¾x†Sç±Å çNóC?ø¾ØIiœ3¸7x¨É û€¤G¤Àú°y^{õ6þøSŸo±&j7€¡[äÕw|ƒ^ŠHöcÊ 'J$€g0H)GÃúÚ ÁD×^]Z‡èæx/¤J±•¨ÛßWà{…‡8/Cå'-Rô‘B!¤CxCQLºN8Ü|+¿6„ ˦P*A+Mqë,Ê R­ñÎ℈÷ܽA¸sl²~ÆWî½—ïýîïý{Ñ¢ÿƒ »n¸‘?÷…Ð1¸`?Ò ´œÿRû**–Wä'1W·›ádAÈ@à³r:¬<š˜@—¶¢W¼”6£É47î¶y×Ï6Im¶XWßrfƒ]`Þ°œF¦yÚÀ2Q1²Tb½¥—¥yž3ÃärÇk^Å}|…]›¯äÆWÞÌ®ëná•·¿’M6,#š¯k-Zé1Ó.â> £k£Äö!}„®=ƹhàÚþ0TÒT)mÆò‘eT,pñbÎÃ=Ãî§ö³ïÙÃ<µ{7Ïí{‚ùÅ#ÀˆÁì,I’ÕéÞžƒD°rµC ·!Åh>ð÷¥Ä•õ`.¥óaãlˆ›,<%EÕYSeÿÅà [¯Ÿ²,9räHSÎOÅâ]½zÇΞŒë¹¹ãXŸð§ÿõS|ÿû?Àüø¯ó ¿ð³\²áR(aTzl~-›/ ¾KÞ£UÂ_üׯ²ríBý )­9îBû#&´~݈Á©Þ‹º3;uêTÙE Ò³ Š;XX,IÕ˜57ÞDKÎ;ÿüÈÏðÓÿæ_/ÉÒs.¸úJ¡ÃgPQ'ãLJ—ÒÁÈð…ƒçøÖ×~¢8ŒêÍaË-J8¼)‘JQùÄ4¢)@Ð9‡)ŠˆË¿æã¿ëFÁ×ì݈ܽ²6ÅdYÂphê÷©ÆúOÓo$2Z¿+ï°Þâ¼AëE1Â{Ö±Y–.ѰI)yü‰ÇHn"†÷e}€\µíªhå ƒÍtúOu¿•xoÒ£-‚U45Ýv"/¥7hŸšdsooü]ØÌrÀôršŒ°-í‚Ú¶-ml¦=âjë–û}ºFhmT—^¥9æÓZ£„D§ ‹Ã!‘1¶tvÍj¾ÿßËôÌT«ðüÀw}ïÿ®ï!µ`¤A 5Î[S öa<á*Œ¯³R'˜xñ‡½«¼×ÆÇHL ,é%ɧYyh?_ûê#|ù‹Åñ¹ã>|˜Åá<K– ¦¦ißP”gqnD6%Y‰ks´[R–9¦HI3s#œF›…@#Úë£hºBFµ;mc QžZ×£‰êU–ݧOŸŽ€nZ[Žx<[·ïàÈž'qÊ!¥â¿|æÓ¼ëï Js;®ºœ{¿ø9”ì?v˜»øüåŸ}µ«Ör‹Ndð˜‹tÛ³ÓÀ"Þ:dÔ׫W¯ÄØ`pìØ1)Öºxh…ûðº×½ŽGï¿$I¸|ëUd½ Há9snÑüLß„Ž{¢x)™™òüÜÏÿ,ïý»¹rãê‰4N¥R@1ŽâgõXØkÖ;N¿hùÓ?¹‡_ù¹ßaßþ§X¹ÁéyòÅó ÒA WšœZˆ7©èoÚ¶Wtïj$˜Y%YÒ§tñÿûè × ãT;ÆV}Š"4R& ºžHTþ~•-|Eù÷ÊÆÉD¼¸Ï62¸„JcÁl±¶Œ?kkãÍ<¢Ó{Ÿ{Ž‘‘U1±ßÈ-—]…(#uQÉÚÜ®¾8˸Öâ=.nu¾‡‹m6_è´ÙM“U»Šok8Ú‚Åå’çÚÖáín¡ :wÕŸjLåU¢¸B"Wl3-¶²kÑ Sš%›þدGO¼wSºÙ¤(ZïÐ1Ô(ü^a‘‡C.^œ¯˜–ˆLqíµ×²mÛ6î¼ý¾ùկ檫®bzj:°X¢ŽbLÏŒ©gqÔ˜F––— ÑÊʰ7P\ªMí*_ ðY-×Yyö‘J+,Ö'ÑP e-ãð±Eœão¾t?O<º›‡y¹¹£X_ ä©,iâH3çØ‚¬gèO)LY ¥¤0³ ãÔ ‡“Ëp"X–›2¯×O’”˜ÒÆ ´ªÆ±ëc°˜‘'2­Ù[ΘȖ–QXahD»¯I¤X+4 j]ûüóÏsíµ×†¯ ‰w–›¯ÙÈ?S¢3Ϫ•kùÞÿéGxóßE*t @”¯¸êÒMüù§?Í™ó‹lذ”ââüïrp\wÓ6æ{LõSYðì¼á„’QDÂ×¾øe¦gWóøîG¹tÓ†ÀLòž¼÷;¸pö$Zåüøý00D …)>ô0‡'¡\,ðc“$)yîÙ°f wÝ~G¦p dÀQÎÌ"U‚Gx„÷ßýa{ø{öî¦,.¢S‹R‹ôûç 3«ÃAŸHIéÂ! uöjÈë(Ë²Ž­ö ê¿ó<¯5cìR“IBdo’e” kƒ+oÈïpH­y&óц×_‡R½¹ávé;º¬Ü»,CÚÚÀ´˜ ®²ÄÆ^)…)J@DT¿›¨6…t"Æf'ÎI–Ùp8 JÕ":g)W\q·ßú ^ùÊÛÙ±cGËMM³bÅJýÁDk^ Þi¾ãßÍ7 âΛz¡ÖŒ’ˆOYœ3ÛñXoêCÓ×õ˜‰•pìè'Ÿx†§Ÿz”'ŸØÃ3ÏìgîØi wcr”!,^–é@x²YÜ4·sF¹Å[=&9Ä1C¥Þ¶1ô'Œ]«Ny)E³;T]QeEÑÄ¿š#ÁZXê'ª÷lb„>¦DXäšk®« ¥à–[na”3ŠÂôgú\²q5w½òüʯþ;®½Ä:P1ÔhÅŠ>ýøoócw¿Ÿ'{†;n¿S‚Ò’oyíÍäÃÓxé9sêùwÿž5³³Y' úêC¬]§ùÑ»?ľ½o‚I‡TžŸúðû¢~F!<”¾ ðÏ~ôY¿ñzÊòV¬Lt .\DJ0 §¹a×k(F)çÏZæ$S«Oƒ,9øÂANžü/X7¤? =JÊb„pcÒ‰ûSuÕu­:?¯eszÐ$¸TÙï•§UuÏ*¿ªªÊ¯4$cÏ8Y{lI¦&¢AEnÚà ¥HÅȆu˜$ Rò2.œñ(© Ë@bLY&k-B¸¸*•`M°<ñÎcóLiŽŸ<ÎÚÙµg?,áÿ6DøïC˜îáð¹“l¹t=Sý´T¸.ÅJ±bi#cªêŒ]šßÀòyíèÛÉ*Ži¤ 3I7©Óh{a5U—‡WSí½œ£n›ªÛ´û®_3n:xêXÖ4I(‹¡e½ëfC–eõBô>X!”Ñö`å%kY¿nßtç\±e 7ß|3«W¯aݺKX½z5333¤ ëoW)¹Ýx$>¯íįº1[»‘V;)’xoËà"ЪaÎ_€§ŸÚÇ‘£sì~úYžÛ÷ÇžàÈÑcœ>uœ§´oÞ[t"ЉǺ’bgLA’(ŠÒ"ex?ëÊpЉP¼à“ɘò%Iá`ÑXô²ddøRn{T÷l [±eK¿ÄáYŽ !® ÁFúЇøÈG>Æ$.üŽ{žâÚm7±bd}Ïpa„Ž… #LaÙ¸ñÜñª×ñ ¿t7W^¾‰ ¼,"Y=³Ë6(žn¦t(NJæÎ\䑇aÓ†UÜtãaœ%$Fæ|ôWÿ‚ÿõ_~ˆé©.žžç§æ§ùð‡?ˆó±X!ª5 –‚ôŽçk_ÿ:3³'ñ…eÝ%—²î’-œœ;ËÜ©9¬ÏQêE1VÓ¨4PZ…޹‡^¡˜¼D¦ %“€«8AYQá?I:¨­µdYV*Õ³[Tv;­H„ ›"ªÚ«ojzš¢,ÄÁ`@1Ìã¸ÑR”yt?áÑB¢"†k­e:þ¬ŽX"‘ª> B‘•ò½~Ÿ2/q¥¥×ËÐRa1“VLÊÆK#DÂh4"ËÒ‰Â#KöÙÇçÿìϹ󶻢e?/óÏÜÂ9.]·–©l@âB>yÓÂc‰ßLÌøðÍC"¦b]çx© Ž·à]µú©^ë–äwÙ’ü­¾U-œ&†ÒvN’ã&»Ì n*ƒSQ2* LáõH4«V¯æšíÛÙ¸a;¯»Žk®¹†Ë6mbÓ¦M¬_¿žÙé™6ÁµödrÞñ$Z‘½ár£ä˜åæb^Dµ— ÙÆzUV{ûÏÙó9áÈ¡3ìÝ»Ÿ£G޳gÏ>ŽÏàðáCœ={*tX\ ×Ua)ÁÞÙ`;¡eiHt‰³.à¥20žLéÐ* Ušp8W@´ÓÁ57ÐÍ ³íOÖvóí2cì¢Mw…ž5×H³Òm³ Û×ÿŽ„…øu­56Ž0o¿ýv>ÿùσ·x/qÒ²XjV­¸‚Õ«@ë’w½ë;¸i×õlÞ´•‹ó†w¿û݈Ôqõ×ñðý÷bmènÒL¥; 9Ì/þÂ/ó~_0 ´EÈçŽ.Ú*²•’üù_?Ã[_÷í¬Ûè(GçIdsgÏòê×¾Žý䇸nçu ú}ŽÏáÀøÌg¿È§>õ§Èl„”'Îa¥— B‘¥ ã(mÎüüYf¦x/±ÎGfRéùe` FD^ º)£ŒVu§^u ½dÑ3½ IDAT^<Ï—0/»ý¦_ܵ¸¸¸„ÜBÄJzqìäʸ~d(Ä´Öç(qADki5¢Ššôy¥¦,™ê÷)MIQ–ø¸GàÁÙð;?Þ»*Ð}1/ÈÒ­“z eR*Š"Œìlnñ=ÃÝ?üC|ð‡~üôd:s¶´uÒUõ…܆*‹†º7Z„ûPø¥å.[õñ×p'ú¬_µÿ±#¤æG~ðû" QkÀ ÁÇ~û3ÜýÞŸbÕ‹)G¡»S9«Ö¬`ϳ»yÛ[ßd(ß§p9Z V­]‰JÏá\ŽYt³ÍJ´öh5¢(#@P!ƒÃ¹Mo¼XPgCéc‹àWåM“U=ò®²9Œ߃j¯¨ºe»â˜c]0!TJ2ʇôût’ú·­F‘.2íy‘“e=d$Ix_…p9„ ¦ˆ~íž@çNe‚ˆÙ%R©:â9¼VÌ«•û¡è1h%ë1V嬜È>8Áp:!$ÂËYcZŠ`}’õyz÷Ójˆ—uâgJ²«70Xp¨‘Ã62Ä—S8w©ÓÛôØ—²&iΘۣ¥fçÓŒ”M”nÙÈËZI¾^’eý¥Ù!Œw¥u`»ÇI‰%¤j*¸aa¢/RX¨Óý>³+V°~ýzvîÜÉ7ßÄÎ;ÙµkkW¬jtsÔã=󚌩6Kˆv¾…‹‡†l¸IøF¯èkwá ÊÿŽ‹£œ¼È9{jÈ… xúÉC<û̳<øÀ1öØÇ‘£ûæçòª³Kʲœ ÔZ‰Æ}1&¤üU“ kZÊ`ó!DmERUðÛIÄî°Æ;LXŒñô{SE§D Iµ™@Y„ñXš¦ÃE•mŠ+(MŽÐ )uUiœ/BŠc¼.:I#~¥Bj NÐ |Ä;_wÕI’e¡sG(©É²>ÃBh…óJ ¼µ¤IŠÖŠ<Bݬ§1Z#UÉã_{|‚µø2Æ@/ùò׿‚óO„Ü⌓»è®K4²Êj®F(K™G]@ͳmuRSU“hí'iÄÕx+PúFƒ¤ãª±I‰ŠtSgIäq‡kÐ=Í`jŠM›BÇpëÍ·rçw²sçNV¯\z@Ðu[ªÑ^…KH–ŒG*Ê >v•ðPc#pÞ¢ä˜Z(E†sв0,ea8¾àùç_àé'ó¥/<ÂO<ÎѹCÀ8A¿—1˜Ö‚G*Ϩ"ÅYU´cÆ }žÈsW½xýcç§'™/Þv;wi[Ú]8X»»èªö—µ¶m÷ÛnËežm:B…ê¬BvfÍ´ÇZ¹ïjÒ  „‡Ã!‹ó ±‹ôuùíï|7ó•/’% áìÞó(«VLÊ46~WưqðÐ9¾åÕwSÚƒäÃãHyçýÁJ¼‘ä¹%/ ”8fY³Ö`Êy\‘’‹)Âѹ0jTªeEä&$œaJZëP yó&Þ¢dãšÒ:ÂÖ•® Õh©]4Ö•†…Qp×õ³ìbÁYư¨Šhbý¤ÅŽ1­¬³Ô–äÅXÁ4»°†›‚Œ (WšH©-"]9ØÙTÏasÜWŸª×¨®WõO¥ßHÓ´êcpÖb½‹†–!R¢ÒÔÔ£Á²D§)yFHÖK–%1Œ+ÐÆ½ cx-œ Ôk­5RHtšâL`!ZÆXøñºPJâ ¤io J',,,ÐoZò4¨ö•ö$M³ Ï‰ÁRÞi\ðs\Ä-x…LÆ–H%ëCvqq©{ô’”Oœâè‹G¸líæ¿“ýŒÆël½f;÷”%J¨z6ß…Qtu ¾3±L¢`-: 4Ò¶eˆR kL˜3¶VJJ oeH蜣( F£ETÎÌöÙ±c»n¹Ûn»[n¹…­WmEIEš¤Á Uª:¨¶˜ˆLEcS’cóoéǹî×ú¸PEl6¢ÊÖÅnŽ›`¯ Q É?Åž=ûxnïAÎ/Á8ç» åG8»"f$§†D:2ï1E¨Tm|èŠ",Ø"ޱ&'0>Já—µÆ&T¹RI„KÀðÑô!÷CΨ˜¸Œ ­+Xr<çîHBlw“#&;iÖsŒñ§†YåÒÑêäaЕ ÙfLuyVuÐ&Ì0˜_ó½«Ê¹­‡j>R Ô[‡µ&º= Ê"ž½lÀ÷?Ä-7Ý Ql©<Üvã5”¹C­†áp)‡ÁHq ¢Òž Yå"Ù@_-½ ‰‡>Мó¼DÊ$ŠQ‹ÎEK…5 uïæf@xFáLµ …uÁ®Ü8GY ‹«3h*‘䥋‰•:…úš\R–AýÝñº(úÄšv™fã'k ÎŽ"­5j#\‰·¶–TL¥:OUŠô±‹-ƒÕ‡%b—ÂAšâŠ‹H™"è¤J,W ±á°’.Ú±;„Ч>A¨˜§&$Bj„‚ÒYk ÈGž4Suá[ƒ~Ÿáâ"I’ÐÏz\È :gŽ ¼O°Æƒï“/,ÒëM…@2,v)=eB°jÝ:~†WízÕ7F‚‡Û®†Â†`©ˆ5ˆŽŠ¬Í8iƒéc{‡˜A˜…Zm£àÌc­aáüB­¤LOÑï÷¹ýöÛÙ¶m·Ür ›6mbãÆ¬Z¹Š+W,¡ºz&úD5‚““C?1w—±¡Ð.Tn¹>ܼ@VÙÔBE¦uVĹ #yôO>µ—ûsðàžßϹ“œ={ ëƒPèR0©Â®¤ÊàÇDò†waS°®D¶b]ƒÎÄ»¥Ý`WEݤ#ûj-Û±Ã]6,¶î®pj øßUwù¢µ3YÆ ªP¥Å•b‰Feüu–ÍŒowm뛦½NsÜÔÆWÚׯ]uM{ýæui_„ÀÙ1¨¤äþûïçßÿ͹1×î¼<”V!„‹³ãϘ$IŒSõu'Õ|?ÙHã›°éQ“´x©<Îã[]åFíÝX³â¥1µE“yV ÕëUG–7òê³h­ñÍBz„Žˆ)ê8‡$ŽÙúýyQNŒ°Ër„Ç u,RçýB€ƒ=Ïíý;»)þðœçª ›À9JáH³¾jÑ6è¦V¢=o®¤áhÄÂÂé O¯×ã²Ë6³ñÒ \~ùf¶m»Š¯ßŦ—±aã.ݰ±ƒÇD•ÕGÉc8Â…>K§±BYT‡‚‹|^9ž5))8>w‘ÑpÈsÏŸáèÑì~êöîysÏpòÄ‹,,¹xáÎÍ“õBµT*Šr¯ÂK´ç.D¡œ¢Ù_¨œ‡Ç—X0ÝÊ섦ź:ÓBÔ™à“|øå¢m«à%ë—â “¿oŒ¥äÛª‹>ÛÅ’jÛáOødE0¾›5ߣbÒUÙøó©%£¦jƒjn¤m_´öZíò`k‡‡ùVY»PªFW]£¹úà”"˜,:“Áfþ±Ç[êþ°j™­@x‡9.^ûê`h*¬+¿§æÚÌ’iÆ´véW|´Ã7&XlT.¼Ø¢VdRÇ û1Sq4MâÍëX)üÛ œM•jXÝ·³tjë¡Á†dÁ ?i⣕^ÉðOp×5ÁÖ½êÊD`MVqeíïÅØ"Ѳfe txžädqÖ<4˲DÇî9d¾Gõ}³È‰­³êZë¥\2Zê÷p¨{§€QZk‚oWY2;5˳O=û¡©R¦“²ú ¢š\øÉLåœyÛ¹/^äW~íWyë[ÞÊW\Ùé)¹\m£HÛñÐPMwÚêg/E8pêô¹(HiX¦TùÜsg ‡ŸàìÙÓ<ÿüÏ=ó~ìqÊü(3•ô™¤?¥‘äH«VVI[Vá,®,ä §_é6ššÈW=¬ |ô°Èðùë1N„§%µ0°žÝSiÆã–.=C;T«-˜œåDݬႚ=’h€cÿ¨ÊyV ¤ÇD¡c•ÙÒdÉMöΣ7Ta;U¥Ø=•ÞSñKìl”Jöc-J%€ÄB½¦½öDçÚèLš]BµÑUŸ¿+×}̼brä§dd*Åî£ÕÉLPЭÖ! ÈÙ’,ÕŒ† K×_w=÷Þw-OaüÒ¬±±1#“J¥Üü›Ý]%¶ i›…ÄY_ë,pv­¥ØŒµ±¥"°ÏÇØfiÆ0σ¸6|è Ãê7»@!¶ »]’¤8°A©‚3pO'á‚I¡R ÃÅEŒ ^p.>Ë‹¨Î–5Þ‘êxôz=œµH¥±ˆˆ£”©Æ×9ŒôÀáŒ'“½:ÈN&YèΕ'/† ¦¦Â8Y)´MÀ‚p‚,ͰÞGæWŠõ݃Âh%0”-„…ÄIFd”V“f³(â’s ó‚$É(½'˦ÈóE¤Ò$}‰7#–¢è1÷âÉð¹…C:—~™Hæ—ÁË “93Åâ¹!šŠuá–̇»Ä„5—\/žÊxþ™¸âæÍc„Wõ)î%xºnqªƒ¶ßïןÀNPäÁÛrB\XuÕ5íº4¨¾®Jã,˜¢&c8Ç‘çOpax‚³Ž“¦=†ùEÒ´dJZΕó$*¥×Ú…)™qêüY>ñ‰ßgëö+Y»z-Ÿ|äëüü?ý|Ç›ÞÎo}ò7ƒE2ˆæ\‰“‘…àÔ9.Y½2Ì ­á´üÜ¿ùmö?û<Ï=úsç^`¤Î“zOé|íU[Á’^NèÚ•f…¶Ý…,G»mw íQH³RïzÏæÞ|=êà4¨˜XUf¡ú SÖ~ývÐV—‡Usƒjû}…×0õl:(Ç9]Y,]ÎϾU »ý›ÿ¿>$b‹ónIÝEJh™8¥1(­chÖø-M J¢Ò@_µÖ¢eÈÖPBÒË2îð^ÿ†7ŒÅ‘ Ö­Yô22Eé`!4Žwöà'S*+@¹«{h“Zº¬é‹˜¢WU|λ¨ØV¤VÑ Ðb\@çBšž¢0†,²£Š¢˜8¬*3Ä4‰žUBâ‘ <,`ƒeYuiˆñ<ÓÓ3\4$»0^«”Þ¦ÎN—JÕtYrÈ˲f‡Æ¡”¬i÷yáIRQIdé÷{[¢“ b4¶ÀUoY/Åù¥=ÎçÈTT„)”J±QEnÁ9O/íc`¸¸€—%)š@©¶0æ$‰f4‘&ÒKŸ S%:Í0Æa¥FgckW_ÆÜÏ}ßÝ!YR‹ÿÏù ÿ0HÔP8ïÙ~õvþ¤(Ðôâ”INŒÚ œ®#¨¡á¾Ç>Ë_½÷3¤éœåâü«Öf\¶}×îÜÊ×܈’¯?ðUŽ|þ/™]·½˜HE^ðþ÷|?ïøöwà¢ëí[_ó&~bø^®¾~g„é8³·(‘{ÇÇ~ã“ØûôGŸâ·>ö‹ÁUXiž?´Ÿ¿þòïrÃ-7ðßÿ6žza/Ÿù£?$A>zi:6­I5n;r¶Ëó©}]–»áË9ʶ«ý®N§K0×Ä9|à<×ccm-„ r«6ªrËóíqe;ð«ë3×Ë$“¬9ji¢m›å®“mÑAÛ÷¬Ëv§åZD„æ†Û¦7AâêðÉt+®0FC†k§Dp9°Æpô’ƒ!Í2-Sî¹çžZµ¢M «×¬RDÒÃðÄô¨˜\èÅÒý:0Ú¿suX4 )£ê†Æ ˜“]\½Îª€4h³UGa]ÒÝ´£›• 4d×_ØÌmÄ\mÖXãLDÛ{c(Mu–Œcžh ñPr®öV©1ºZkæ}dU™æÔSý\èÐIL`pÕzr¶îÆ•ó·¯qÊJ?£â{%Ñx³Š:öÑ ÌãÉ‹E¤•*ÀÑïÍpöìYfggèõ+¬ÄR%zçC×,G(™"«NÑ”ôz3Ÿ›‹Ý Ä¿\1(GáÙyÝuKmH:ðvC[_ „@èY_ œ¥—¥Ÿ[`jj0¡ô¨ÿÓÓóÝ“þ%Ÿ IDATo|#—¢oç/òÆoy=¥ó¡ÅS°¹?ÅÊWñë¿÷)žÞsŽ=Ïìã_ýÔxë;n£ðŽË‚þøÝ¬™YÍðì9Y¨´%Ž›·láá¯~äx~ïóŸá“¿÷ûÈ$%·E-Ô«®VºhÜþ{Ò£©Ý5ŒÇ"/UI,7Ûo²–ÛÌÇšŠàãuÒ’}Mi¦Dï öj[×,çU59αuÑQ†$QKÂvÒT2·mÔÛÛrWK:99"¬|¼Úã¸æÁQuViôUL (FÞõ§Òj  ˜š™¢0†ÂæXc8ñBHúSSlܸ‘KׯçÍo~sŽæ£ƒÀšU³°r¨$„MI&D•ÍÑX³ûï¢*7ÇYm¿±^¯Çh4š8|Ú£Øöõœ D«s×36 Fk-JÈúÀщTöøÇSƉ ¡S:¨ÒƒUØÜEe-Ôbú5“•Rõs[Qƒ¨¨ýµ”””.D¤iòÒûƒ@eö2fÛø]ܸÞá€ðQT,ðBÕÕJJR­Q: tï˜Jè(Éú=¬3$IJ> #`4šŸÒëeÁ²]Å ƒitŽð`øa¾øåc Ï8Î~g¬ çÏÀÀ»ch'±Ã2„b;ÎÏ/°oï¾ü™/’h¥Œ3îÉJl¹pªæø¥¹IuË®Q5ˆ¶5U›}Gû=—TÖdBTMëÿçi½oìÀRñìž6èߟ,wxNnúÔ”Ý0C[U#˜6%|¿#¬­¹€n¶‰høÆÅÁR÷ßæÏ5cê % |NA^ÈóP‰æ†•+V°fý%¬¿tWoßÎÖ­W±ë¦]\såU\¾é²‰Qñ$Í8ü÷έÛ81w0$ +M/&ð§.̨¢ÖÖÇ4©¶Í1VîÑ\÷®yÔë½zïÆZhºäEAÒë×ã§DëPa7„€McÍ@åUµ^ÃE‡`)Æ¥w &%ÁÍêÂt*ÓljçÎÏ/‹/HÒ$zð#Iã,*ÑuÝ\yv ©ÆîÌ´L‚Ù©E,š\ ÂâD¸ð}Öy¤Vô² P* º¼¾FC‹A’çYOS# 3Bh‡òŠ´'±¶ “Y‚DR†a1_Àa}‚èø±-ȶ [b;×Ð êØÖå˜XíqK04±ýt¬žY»Ú'àŸ¾÷ßq`Ïó|æ¿Ì¦-)óZð/^ÿvþµ8 ?úÏ~Ù¹ûôçøáw½ƒÒ•|ÿ{ÞÇÏ}àÇqzéÓýA Üz‰-ø½ þuom×u×y~öpι÷¾Iz’¬y¶åAò$Ëvœ; 4©¦éІ†t±ºªHjQ@7ô «hºª hšyU€ M3S5IhÔ"Cyˆ#Ûò Û’eY³%ÙzÒî½çœ=ô{ŸsÏ=ï>SÍZM¹¼VF=Ýwî9ûìýû}ßaè‚¿',Ÿ}â8|øÃøby:-Á¸˜š7YhW}צ©_›Ú¶×W¸UÙ“†Þ“ªyÑšC57ÒfÓ<<êg ˆv)¥ÓýŒ|²ª¯ÙüÞãárŒ–یěd#RÑ+!¦:F±Ô8m×®bE5‹’zŽ$Fp»ºRÔ9R„ŠSUrEû4!MiUÇ•Æh•`õ3çl˜¥ ó!&B½^N·Ã]wæÁw¼ƒé™iî;|/=ô³I¯e›ã¢ÈwÙ*¬¬>P£ ÕìþÝ»¹|á>PˆúÏ!¨ ³NôjÐÊ+èÆ· À#JŽæ@btŸœ6& ¨uHj¬è©:cM°ƒÝØÈ‹ÍÕ0hUϬ(K’,¬»Š7Š]¨qnÌAÈPé—ÆD‰­GÄ51¢1‹Æµé:|JDNMä©BÕ*HN©:]øÑº–J„ƒND¾ŠQªUì¢D\Á=7Š"ÞC_Cè‰J°¬ó¤ZQ)mò¼`ª72F\»J…¡ƒÕZ"T 0s! En™êÍꌥ«+\]xë6¿ßvHL´À6:Áæ[Fv­º¦uõ¤\¿Š©$CU¯CæÔtŠžÄ…¬…¿øâ¿eÃBÂþàÇùä§ÿ=ïpèÙ ôO]àƒßüÍ`¥’|ìcÿ+ÿýþ*Qì6îÛO~ö Ož÷ñ±º=ûú9”2ç(Xbã–›ðN…(ÍÄðŽ¯»ƒ¯|èAîÚ¿›½·ÝÂOüÔÇù«ÏüSqƒ  zÕAÑŽH­‹æ=iC1ac÷ÑK«úÿÜÄ ´­íhV¾“૵œgGjû¬•®yr4‘«º™I³‰I좵Àö?J5fn\x؆bÚW=ÈO"e7¶QJ*JkêCÉUÁZÎÕjëDšgx†5ídAÉ:Uؼ /ò°Ñ<ÙT—í;·säþû¹õÀî¾ën:Ⱦ{¨ê÷  ?‹È\œ‹‚@6ž.„K×ÜsèŸÿÂ@¤£C»ÎwE­l®;'%Ñ Rõ¬Ë²\U­c Bm¦´cz]¤Á +MÒ˜#¢ù¢î±ˆ¦žA„ç=¶ ¦«EY„ÏÔª¦Á5 Ø,ˆÂ÷Ó~äe€{*{öàU'bGkY;:„Ï ù*cE*‰Ê4Ãaž»´¡ÓpA•^)ø tÝÊš$Õ Âz¤HBÁcLT†›úÀ2¥¹‚šA^ ät4c,RÐÍ’)¬2¼5¸Ò ”§²^‚L=Æ " 4ågð.¡ÈsÒ4©C®²4¡È ”Oè©9žyö)¾ò‘¯AõÿÙëïÂq£wMÀŽ+N¬t["®zƒôáe7q³é$Yð܉/AY.`LÊõ…ËQ ZÁ¬§¹yçNn¾}?¸’/ž|•Áég8úü˼û^yÞÿä÷ÿÕÏ3í$º“ ì¯å|€BÄT2‰¼4(ŸðžÃwòÕü; §¦È… ›™GHM1Ì«ÉßDmF{£nÏ&m¦mo¨¶Bz­¸àI^G“øßMP›þ»Ö`{4yv#ÖÔ8¬2œ  i^ó˜KbiŠäÚnÏÍC³fç­‹cG^®uÈP*fÂ(p"Z–%‰Ö¼±p œcn~žíÛ·³oÿ~öíßÇ]‡qäþû¸õÀ­5µU4 j,$Ë¢Å/ªÒUí϶šá¢EˆÇ“„ÃÆêÞŠ€oãƒmL••zøîC|b8@k‡Dek(¥Ç†ŠuUDƶ‚¨*˜®©µ"@ ÓÓÓcæ‹£÷X •×åDv‘r B© ÀaQŽ-Uºkþšë¸ú™vºäh†aj¸ÓƇæúHÓ”Á`€÷1oÄÙÆ;4…XcÀ²Lò<¯»èð=e݆ä ô.(éMÙŠJwÁ"ü|HÔ*‰÷¶¨ *Rj„·u¤ƒ”ª¾ZK’DÑé$¬¬ô‘Jû“T¡”`8(°Þ¢•@*ÐI(H¾üä—âÒtqxÛ £¼;;K~u1ƽ+ b6xÅ¥¦Ò~¬‰WöéR€tžÙÙÙ`Í­Ü “ãEɆÍÓaAÅv'?…ÿñÿøÕŸ¼gÿn–¯0Ûí`e°Uþ§ßûýüöÿö³8-:†H8ÿf8¥YFŸ‚܈˜F>©žæâÅ!?ýO}þqTe ]o|«…lk ע箥Øo§×Ò¯eÖ'™?ޅܶòk&©Ï×Jý[‹2¼–æd­n¨=;«º†IUæ´õ£Œ Õ8ÜŒ1dÝ´öò>Xc¬¬ pÃ0[ÓÝ„‡Þý0»wïæ½ï}/GŽaßÖ%ÉÒ,2Ðdcó÷H貕öI9׺áD-cë™@j²`¯¢ªVtv/ @ãd`©¨k6ΠeÐz7ïÛJ9X&íÉqY„I&­«úÞák:lÛÆ¾†9ýHÐX©Ì›kÌÚ0x®žq`)U3Ñ#-Ì-ªç4bÜL°AnÏd*ÖTÓª§‚ ‹ØT°T¸ŒÍOªÿžçùØaTÅ+»˜Ï“¨w‚ž^‰H(ì(IPkpcŠhõÞPÇ :–ÉØ5:çP:AéçM„·líñV%Öy)bw’ÖÄ™€n$ñ^†gà¾"êÔTÌtq… &^Ðëõ8zô(òï&Dÿû:@ü¿Å33=Myu1òÄ£•€…ÀT‰tL€F =¤‚É4´³33áõ‰_óæurÏOþóB* ;¤\òðû¿2àiR1+%LUrp%wÎofÞÝäÇNS û5<Ó7yT-2“ÍñË?÷{üÂ/~†WϾɛ ç¸þæYrcÉÝ€nK$RbhD¬8VSrÿ£î¤olíž·4ükSN+Þþ$ÑhX‹œÖÕ&ŒÍg°–Ðl’†cRwÔ>Ôš[ݘ½ÕwüWךö.“Ôæ:I‚gW¼î¥¥%†ýÁòÓ³Ü|óÍ:xûx€Ûn»=;w355ÅüÜY'C·|£³aã>ÆÙ‡‹Ï(Ú‡Tó¯T4˜ŒPlý9¾¡BgbGðú¥kœyíÿá±Wxî¹—xéøY®][æk'ù±ÿ~~ø£ß˜`±»Y¿n–Òö‘r©G†‰J«˜nÇÜ ®‚®‡·jm°Ã’C›yU‡2–¤Ùð 3೫°%‰NÆž•1†$Òo›ï|Ó¾§Š¾mÒ¿›³-c SSSµË¯¬®ƒÒÁÔ;’Éø0_6lå1h¬ð­Éº¢ô«àg%ZJò2PÚU æý Ž u÷7hap”…C¥¾Vàeõ\†ƒt’’$a–aLb±µIš`]èÊŒ1± ~sNëטžžÁÚ@_Æ%;A³"(ƒwŽ™ÙiÎ_8Ëß5×üïé LÁ›nÞËå3‘>0 Dk‹£ ÃŒÑ#Ê+%7­ÛNc¼ÃIxé…Ø·s/IlûKà¡/Û7ocÓü Æ–ô½â_ÿ=œ}ñ:7޸Οú—9òÀ~ž}õsr=Wg®ñ3ÿòø¥Oü)çÎãüùçI§àRü”çSóɸ`ÃBЉCª’Ô„Oýy¤Ðõ&WUú•ÈÎUÖÕ›÷d:/‘IÃ}„¦ºYm¶Ï$+ñæ‹5‰ŽZw'„íÓI) Áj+Á›:‹ŠîÙžÕ4»‡IƒBd–b¬E‰ NJ’芽6ª“ÀÀÉË~„ ,J*d’Ön­Á\Ø0ȇ8k1yØxº³=víÚÅ¡ƒ‡¸ýŽÛ¹åÀÞ~BIöìÚÍüìúI§öè õA0Xé^"D^Ó:ñ&®N8®îÂg„t¿µëÿ‘ 4Ü«ë‹9G¿t’×^»ÈéSç9yâ,gΟçõËYºq™"¿A’xJ–Ñ:!M”RÌÌ”|êÏ~ƒ}ô;b’€¡Ù²~=ÐÁ‘"•CXÖŠ2à…Ûô©]‚}mñ_ “N0ýsÆ`e´S\eËRYó˜&„(06G*õeœá„w¼#RвD§ EQÔ1½N€O‚½za%Å…&æŠXR’Dbò-™ÔÊ#”/%BJt’€15«+†Ñ~Ý*LY’fÖ•hZ†¡¼ã *K®›PPú’¤2”’b8Ä+Áâ°O"U…Ð MĽ0Ïm8“$aP ¤P¤Y/ØÜÈcKŒ÷¤.‰'ÇY^àm‰–Szt")í ”By¼t#IDÎÓéè`¶Ý˰¶çvs$BqåÍA ,…|; Ô™æÂ öï¿™§ÿâstdPܶ7¾Ió€U'Â;¬):åÜ¥‹ Ú‡*ÿÖ]û"$&¸>T|ÿý3^úË¿æû¾íÛ9ýò"_~ùY~ã÷—'>÷ïX?ß¡3%øº¯ý:J!–Kô¦ø!§/¾ˆ¸üÎ’ž£,$J”8W %ƒ¯VQݲÖ0z,an š[=P§N†‹Ö¶«Ä1Kˆ¶¹acð<­Møc…gbôì$hjÒ,«ù{­u$RóÈ$A)¸ûBà„#ÍR ‚,ML¢"CGoeØo½™YöìÞŲeëÜz€õóë¹ûÐ]lºi[æoZí9¶F í¤Ã8:ø‡|lïÒˆ€€ŒîÀqè.FÏ7|¦bÐÏ9yâ/\àøñ×xå䫜xñ2W®^àüÅ“ ‡‹xÙÇû’NW“f*°tL‰îyDRv ¶Ýy¹BB‚)ÇŽ=»Šv:77GgÝMt2A9\ª¿Kš&ä¥Hê¨H Í,kØ\­_âì#­lÉãÏVÇÈ1Á@ƒb.¤X%ܬàœÚE´””kÀ—R)dÐæ…Œïꮤ,‹ðL³&m¸¢7…€Õ;g}@RPZ‹áC×it€ ȃ>¢ñ !ÕQ×áÁY‰s‚4™ÂºAp?V ÀÍ’1o­º[sÊò^€OQ²‹±9Zu16FëêSŒ†Æ¦W’$”Å ºh„è¢}=¥`˼WúÃÁøìômÇÂj:Åâ¹ãö;°¦€L§q§ØI p“†È‚€¶dà ,šK—–XZîsòå3¼q¥ÏïÿÁÿÍ_~öϘZ½Nɯý›ÿ“_øõßBŠœÞzE'+.°¦ ‰UÆt*…ÅiIn „éÛ ‘DøðÀù ßU¤íD¾ö€»¦øU/® óŸµDW#‡mTôks¶×ѵCÆÂvŽí.£MvÄTÆ 6s~"lÕè7_54 Ù" •@k…÷Î:‹J5+K+Ç^Yrí·lÙÌüüvïÝré÷ígß¾}lß¾‹-ÑL°q:¡Ÿ±! »â”W×ç«ñ¨–kÏÂ}‰][ (‹†è¥ÜX(¸víW.]åÌ™7yõÔyŽ=ó'^~• /²p}‘’sH)™žî’¦Š¤3 éy’njqT´¡4`ÄÙ¢žÿy+)M¡¡p.h%®_¿N¿ß§á;iwº‹“'ž!Õ œªÍ ›¼J)<ªõžÅLÊT±iµgm•ú(@LìD¥”Á 'º×9$>X‰h´ˆsumS3ä0$9ƒ>h]œ'Ѳ68 ôz½1ÊxͰS*$Jªpg •7–·õÞvAo5æÏÖz–Aè˜K”JÈ:S,--£=&ŽLtè⌥éN uô&:‰äO"œRx[b¥L9[:ëP–%Ɔa¿NÃu$: ÿt(î¤3á`<‘&\Y¹Æ¦ÞüÛª XáͽãŽÛ<ñÈ“–jÍjwM[kAk„’|é©£¬“°â¯9©ô2Ïüü2Æ—”Ö!Ál/ÄͺÜâU†q­3 _àJ Ê!”ÃøEÈä$xè‡Î%„L%WOv‚*V®i+²×>4ÞŠy^Fõ.RÝšYâ“Ù“®­9|¯^æ·dC‰qE½ãþP“ºÉúpñ ]W›Uu[ ‹t†$Kéf¦ç¦¹ëÎ;ùÀ>ÀömÛ™žšæ¾ÃЉªw¿zYEfÍÏ·•²Ö9„V!£N’‹QVd Æ,óG…Œ§™ÙnmÉb+7¸±0àÊ•>Çž:ÇK/½ÌÓGŸçÅ_f±ÿ ž©PÌ­ï¢4HåðÞàµej®À逽[3`h€"tÆ–Há±N d‚q!¥NA'<:Õ”ÎÜ8ìhŽ¡’Z5=N¹ìر“×^} kû";a4SüF,* gëÜ–ê'IÂ`0ž\-3)äÈ::ÍxÕjíTyõ÷ªC§90ov)Íõ®ð59JøZk¸*áyU‚Âê3²,c8Ö4Úêw8ëÐ:„R)±qX.¥Ž´n]Û¥4×vؘGBF)}¤}ƒTãJ¬$3¬ôá‚pxJ¬õ˜h}b­¥×›fee…nw*Æñ G)I9ô¤)JkqÞ EС‰z–VÔ³Ñ,Æ»%Þ Š¢Jãl3Ô¨9HoSq›÷ ´©uÀæåèwkÝÚ…è[­u VÏ@¬põœËœFãûºcX.s¤1ènŸe¬Ÿše~~ž#GŽðàƒò_÷AÖ­_ÿ–kÈ:7Ò`tñÞÔF„Îè¡òJ’•¸NH„£.RD=—pÁ(³ÞÔ$E|¡ËÒ` ë§–xþØ9žî~ñ/½xšåþËX–ÑjÈì\¡®“uº!Ætʳ~:R9…ň’ÂX„quš`a RÂ&•Do%[F « â=-Ö$à,I¢!æPØÒÄA¼²ÎŒ‘16µßï³nݺÄgó®wæ³ýyº:#ÏWÅÓȱ<žª«® *]´è¨ L­T€{Šk%¥ÉH¼WC–*PS¥TØh€Xýy­`ßSª*ï;Ü„ 4Ž,I(«.G)„sH\Ä%eØKD,zdlÓè¯UùmI¡0>0œ¬³8S%‘új P:(½Çè& Ö8:½Œ¥Ået'Á9…ªÅØ;Z»M ½Å:É‚ïŸñLOÏbÅÚ’4M¢öDÓëL‘ƒÇábüoW'”Ɔ¹†”&ˆ‹Â“¥“¤(Á lâ(ìÙuë‚R_€¥$S _æè$ ·RGÄR.‹w—žéL²>ípô‹ÉÞý¾ú}xÛ Ñ…¨ì<;¶l£ê÷µV!™Ë³wì„xÕ5…mQX(Ùa´Ý^‰j÷ögÔª’cö ãpL3»ZŒ™Ž5ƒêóLƒ=ÒÖ.4ÿ$¸hµ]I“µ4bûT˜nûPmVsÞæÊWÔVg-©JÕÙTûA*U&Dk‡²( ×©ý–²,Ã{Ï7®¬ Sź©)î¼ë.¶nÝÊîÝ»ùÐ7}·ï?@Úé6‰ÒLýÌœw(ôØs[]€x”p‘œ§‘h¼•.GRGÄ´"Ýj×ÛïBU\抧Ÿ;ˉ—Ïñןý2¯ºÊ3O}¼¼Nin05“è$˜å¥%Æ.“Ì䬛)Q²²"_“àúyCçæsÎ:|TwWÅDè$åxgzM+—êPS*ˆUfyõ¯ÚÙ¶±¦*}Ã¥K—ضmÛXÇxàÀ- +ôfe øà([–¶•·®Æfm MQ–¤RÆáÕ»1]†jNIì+#Æ6“¯‚ÑŒ-dz7¬%‹gôŽëŽêPsÎ2==Mžç8®9KÓÀꌟ­ÆBÕ,(3ÃÃý¶Î!b~{¦3Џq©@ÅõßÔ›TïcMY)‰NÈó!BZLY Ó ï‹`®©5‚p°%IBÐGÊ8ç+MؽĘݛXå¬ëŠDؘœ¨¢ŠM¸Åº2tU„P¥T úæåè÷ˆñ{‘$ªŽ³¢Œv'Uj¡”:DKÐR2̈¤ĈRP:ƒI ËòEÂ’$=Œ ÷Ѻp¨&Y‡'O1q¼}XXD%n¸Â™©)l> œü2`¦7‘3©™4¤mº­Nb½Õ?“0ÿI›~ j›Ê­uصç×ý­T哲+dtÊlG§¶»¶§Tsãj2dÂõ;úùÅþ0.²„Ã÷ÞË»~„;¶±a~=Û·ï`ãÆÌ¯[ÏüÜ|£²Ag•Ž!0câ³v~¬‹•Ü­µñ·yI °¢@‘V|&––Ó§.sâÅ+<õå<þèãÜXx“ËW/0.aÌ¡ Ž>IjA”( ² Yæc†ö2ei.R€³e˜•È†PÁuÕÚPujå%ÕúØE›@†Šû®"ÒB«çUU´k (Ûk±ú»•ë,buá#dÈûþâ¿Èw÷w׳!iÚ"P…AÍÞZ£í´½Q—*Á·ªhæÒŒYɹ® IDATO5ÔàI’LŒ®ÞÏÑæžÔ郕u»Œ*xëBbTÌQãh…Ðc’&(ý®sj~£vR*”0ˆ(º Ô|mÓDãP²‰ÖóÕõf: @EbE‚5†TIð¥F4zï«wc$TTr¤…Qò¡Aë$Î$ƒÏ\§“†¼4#I2D*™ž™!S‚n6ñ).v@[^R‹”)ˆ„4K(‹¤ÛéPj<’ÅÅ>E#eúís€L¢…Í̯cáÍ‹àCeá',ܵ‚Úè$Ϭfµ^µÆ5l‚øÄŸ ”×¶j·É^jWQín i± ¥û¼"ZSKqiçQ‘õ!dÀ»›™ ‰ÖA±íÓU4A+‹’©©©°èD ¨–yÉÒ¥ÚlizÝ:¶mÛÆÍ·ÜÌÝû8|ßavïÛËÆ›6±q~#7Íoh®£oë° »×qö qŽ)É$%‚jšh[íª Ï(LI2®Ê_é{^<~†WNœçµÓçyíÌ%^{í4g^;ÃÂÂuùuJ3@ˆ¥,xUIéÐ]‡-úáõÑöà †Ã"ÎnÂ=+]),ëKd™QD'ˆLä}h‘’TâÜ °•*;îU¬ˆ:WCV•(†âÖ…Ù’jµÛk„GÚpOeXÛu˜3ZçÇfdÇŽ«9V6Óìt.GÑ ï2|O«øJ@è i{N;î§&ãÃӉЕ¹«©ÐZÉ‘²½Q08ëÇ`1¥NÊ #!Tꉔ’1Ô ‡NBv†ã¤†Úí¹i¡¯N†ùMYHš&(TíδTXÅŽ>ÀWa@îPR‡â!B ´6ˆT- ¿+)Ò¡’[zJc±Î „"U‰†<’ê,t]©XñC©)¼e¶;ÃJ?‡DC,i´H 3³S˜|HY¬ö¼¹ø/\䦛nÂHÉwdßî]HçùòÓO£JNr–‡L#•TúE^‰lÖ +„±,®ÜÀ#Þ¦ˆXͬZ·y3ož8†Ñq!þÇ@H£h\©Ø&‰øÚ³‰vXCy]Y-@}x)p2T@¥ˆd¤cp†ñc‚»k9 †€3óóÒ³k÷öíÞM7K9räï~øÝÌNϲyûÖMM¯©%Yuo}‡¬‚º‚aù4 m|äz'jæ`µhƒí=Ùøø……Î]ã•“8{öçÏ_æå—NsúÕs¼þúë¬ ®aì"*‚,év;(Ry¼.Ñ^¡Ó@çv®¤(Zñ¯–z37qãh&Ö{¤°a0]02äq¡ê<“ ÚªÒ$‰Ý‰?ǘåwø—˜XBÕ‡ntÖ~¼Ø˜äצƒ×ðheƒB0#DJ„œ>}ºV¶ B…ÛëtÈ6nÂy?ºC šnªÓëù¾¶L¯ßÇh.Òú\œ¥„¸ÔÊ™XƧŽwõZY¥1ŠnÎ2nÌE1D©„4I(|PP»ŠEu62z…)%kH]¤úÞ‚5#Û `>mÆ*§[ïFNõyÈ …Ž1&h-Ò”á a^‰BàpÎÔC÷ð|$Ötª¢hÔ`…ÇJjÂGg:ÃY‰1J+ kHµŽ…Dp|è©”¡±HãY^^da8 é¤騲u+»nÚÀwä–›oáСCÜvëmtegl­|çwÿϼtìƒë$i …¹ -YÖ>j®ž5Yç¡,˜]7Ç닯³ev3oÏ<Ö?;·mç%ž$2Ð-Nšmzi{f°ÖÌ¢YÁU:¡]oóåß:“x«C¡ù3kÁdm E…eV›ƒR -F§½–Š$Rr+=x&” ó< L•dÿtnv–»v±s÷NöìÞÍM›7ó®w¾“#ïx=¡' «—~ö¼u¡GWuÅç!lº‘u…8™£EFdï#$”ÖsýZŸ…7û\¹r³ç®óä—žâ…ç_âòå7¸xöuÞX:¤Ö†ÎtŽ’ŠN' ‡wjé¥S†@ä$É0¶OY ”•5”á½CI–&~ÕF;nü7žIÞνx+*t͘s ŠlkÝ´!Åö\«‚MiWC€¬Î>o“.Úp»“¶Ö²´´ÄÒÒ3ÓSõ&ª¤àöÛnãìñ§k ÖzŒßþUZ‰6ÛöOkÚŸ4»íÐÑŒ¨Þ®aï_Ï\jƒð{²ŽÆ”ÓV(Ãj왵‰"Õ¬HŠ,j<Äfbè˜ò8È®SûD˜•¥Aǃ®¢÷J ­›ï‡Œ]Kå¿¥0l<è^`ÒéÚC•T*œhTtÁ0ôoàñ \I§×eóÞíìݳ—w<ôï{ä½Ü²{okƒY¼{ï•[ˆL¸÷àWòÌÇÑYGÈHïvò"ù)%*Éì–(Œ+‘V …dËæ-¼ròe¶Ü·ùm:iqzï¸å6>m ©6Øj0£·R]¯5$U¥,&nc®£¬Æ'“:¡ößo_WõâeY6:ø"__ÅÌp£`P$Z1Ý"íu™ÝªŽ;ﺋ[¶røÎ»8tðÐØ\ÙVž@B…¡ðuÕWUYAC†”Ñ B|ßjþ \¬d+³™ÐyäCC¥dyiÈR¿à…g_àô«—ùÂç¹c/rõêë ÌUÀ£¥ejÚ¤ÁÅÖãñݬÏlíR*ý,Ö–,¯Ü¨_ÜŠ¯4”Ö"è–[©ì‘VÏyµ5KÓµ©/h+Ÿß*Ĭ­ÑišïUëKxÖ4”œÔ¥6ß*âwR–}óç&QÀ›³’………p€TðÀƒpöø3RsrÌò½,Ëz}67ð ·oZ¦·;ìf÷¤µFh°¦¬ÀR*œ·õ¼Ã{¬{t(N,Su^éš9 ÓyY‡ÐÕCý7â¿q¸oã¢) ¥Ní¬hýZiŠŽ®³" ¨Ú^U¹ä¾QD¡¡!qJ&t§Rò|@H®8Ãá¥Ë>g¹,™îvÙµg'»vîâÁ»ïå¾ûpï=÷2—tZð|thŽŠ·¶\Þc!5ªnÿÃ÷¹ï}üâ/]§—$$r€±Cò\¡U'¨çu 'IkË@ÙV;°t’”Gý"ï¾ïáÿ Û¶n í`:…“_˜5«àÕ«XX͹Å$ûöFP%žÕU¢l$×4È‹Èðœ|Ý*‹Æï¬†\¾©ìV1¼QÉ:çXZ^Ž ^±nûŽ<È¡ƒ‡xøá‡¹õÀ^6mº‰ùÎ\E<­ ÂJ­>òN N¯A•<Àª¹µ`µGø.#á_}$DóÄ:Ã<â÷ei°Ö±¸˜óÚé+<ùøó<öèQž|âU^»pÏ!í¤)d]‡q´.Iæ 2©ÃQ†:ÏsΣd8†!_½óA¡'…·¡åÐÐíÎR–%ΔáÐ*Ð1|<碂ªÚÛc¼g 5ÂMµp;ð«½Ñ·YR“,PÚ‚ÐѼ¢šÉ¹U,Âj#o¦÷5Æöõ+ò+ªäÚµkìÚ¹#ʺû®;ù]cL×¢§§i ¨dd×î.¼ÕfÞŒv­îmÓcªv nê¶V!Úxâ$Þy‹™$‘” ênRkMYš0cP²v ¨­;Œ©]»­µJœ ’ÀÎ …•Šë¡( „Ta(^å€$*æˆúz¢Ã Yˆ@HX¼q'Ë:á}cY–Ñí†îéÚµëÜè/0öÑiÊ÷a÷ÞÜ}øN¾ê«¾šƒ{ÒeôÎÕ®Qüê¼Çâ"³P¤ØK¬ó5¯$Â{#ÑÑûñ¼çžûnbie…¹ùu”Ã) išQä6>³¢Þ?„Öï‰Tˆn‚÷–gž:úÖpöÛ ÂÚ÷`,¨æÖ Ú®Åˆš”ßì³n½ˆV.EÜS ½Ø·>Ö6-2Øh Yƒj×ÅÈÛˆU FƒÊÖø /M1eŒ(Õ±Hj¾~s4+üö¼ªÉ¶«œ¿0ÑfMÒÕ¬•oÒžƒÕ×ämîáyMFá*“ˆù!•Jœ_8ø·Ür3wº“D'LuºdI'ú†D"qáþd"ïäØj¥ªnÓ†NCPƒ’‰áà4ÑW+°«-ââ¹~þ8O=Á‹Ç_áü¥‹\]\ ÉR9`ï-= ³€ÉB Pª×:Œˆ<*>cûôUçÏ_jDûNFƒÞ6Èöu› Ñx-QÆSºµãT'Ù¯ÅÀjW‰•µH…_šJÅ›—o+ƒ>+ý¦ÖϱmóVî¹çnî8tˆ{Ža×ö̯›gfzš™n—4*l«¾Ô·š\„ êd9š;IµsÛ‹N˜j¼Iåî‹Ok *@†@ræ\Ÿ£Oçåç®òÊ+'9}ú._yK¯óÆ(¹UÙ†©ùÍÌv»¨Ô mŽíØ}tؤ†GêÀù7eXIŸ` ”1?ÛO¬ÀÛ{S©?ÚŒ BöͤyVsC¯²BÌh³¹©¶ßÍ¿?‰dQ­—*…®,4É¡–†¢¼ sÕCÜÆ|¢YÈT,º*+܉`âØ<¤*åö$ê6´U¹%'v/Y–qôèÑz]ù†ŽHzS³Ó$*Zз‹±‘»ƒs>d–Wpm :kê—ªïÜétêìôÊsª¢Ò¯J€¬ÉÕŒ)rÍcº¨÷ ¤º dÑ®Ä G’JL^ 2n~J u-!ͺ óœ|8diy…K7@Izæ9°k¾ë!n¿ã ÜÂî»Ù4·ž©©)ziÖd°Wfi!Ú×Û-‡Í :†ÆET¡ý>ü×T|¿,Ö«Z—R¡Òå |ñK/òÆeÇ™3yá¹ãœ8qŠë×p.Gè!Y§$/–X¿!¡ïûÌmJ(¼ƒ²¤?ÈIÔz„èÓë‰Í[޼Æ|I’¦”E°‚/KKgJÒï¯07Û{ïÞÖÖ, ©¥ñô\Èöh.Ħ2¶ ´ÙNÍ* MtÖ9kY\\¢4¡AÃìÜ7ïÛÏÍnáÐ]÷°{×.vlÚÊ–-›¹iãF6¶tܘ‘!ó:xdÅwO6gY•eKd;U‡ ’#ÒŽŸãkª?E8nXY±¼öêE®^]àØ çyéøyN:ÅåËgxýü9†} ªÀÊ7ð¬ÐétHSÅÕ7.ó‘ôßð‘ïúÜ|ÛèÎç/_âß}æùøü]•Bjƒˆg@‰¨ú%Ø…yÈÜív`Ò„**Ã9©±# v“e6IhÙÎUq^ln„íùD³ÊdW_øá'RÀ›]óÏ›AGÍ—§}ÊZײºƒX}9:ÖÇFíÖÈ•owÍ8Þ*e¯ ‡57òšå;êÊ5÷¹çž•4UŸ”È´ÔlïBG&[sÝ¥¡Ú"hD¶µð/M)ò|̽©´®;‹ª+DÄy—À;ƒVéØ:L"«œó†ã´¬ß?‹Tª9—P$Y°ßéf]ò"gey…E{=äz$ŠÍ;w°ýÐ~öï¿…[àÖ]·rËžlܺƒ½)šý¦‹ƒuQ?ãšn£("Z€H… êjÖ‰‹E¡c•¯Íð¼üú5Μ^â…ç_ä¥ãxîÙ\Y¸AqãÅp‘BY†¬ UÉÜL†’%½õ‚¢(étŒ¢Ä€~ÑÉ>Z$håqr dݼfx¾5]„2±¡ó”eNšiò"Í;ÓSà|Aw:hÐ&e ­9Îö«øÿ'‚Û9•—O30†¤TÑé6ò”ƒzh|h‰«¼åÖcY^^AwÂüaÛÖ­lßµƒm;·sÇíwpÛ­·²uÛVnÞ{ ¥×º¤ k U…p‘«$𢠢"øà¡:‹•ˆ¬0ý8ˆõU.HïÊgÀiÅØ®^]áâ¹7yõÜ.]¼ÆÉ—/ñâ‹'8{êׯ/²p} /-RY„XA¤7øÆ}-G¸—õ·ðÄóÏó‡ðû”g/ æfèäžk ×øäïþßü¡‡¹ „Ây‰ðø•3|Å=÷‘E–ç¸(ü«ÜGÛv2RŽ*R=ˆ„kf¸ˆV’ds†ÐT·ûÍ¡·‹/ouh„™Ç¸ä*èRSM½u«ŠŒæú©&”Òì0|-ÈŒ&ܸ½E“5)JˆŽÏzôýiyÅM› Î3vâ&Ôìä”Jj¥§¯)àÐív¹råÊXGV §ç6 K ¼ IãæQ1}Ýu$‰Æ˜¸¾ã « sb¬[k~·ªj€ "ÊLéFà˜ÇD¥9.TíRtò¢_‹è”ŒI¡>¨9úyŸ¢((‹¤ô6ͱeÛvíÙþ]{8xûAvnßÉþýûÙ·s –J^¸úô^0òÓŽsO!¨Êœ/Ꟍ%ø)³h0Itý5£® XY†Ë¯¿ÁÉS—8qâ*Ï=ÉW®rþìi.]=OQæ¤)Ì­Ï,‘õÀû‚¡É‘Z0,úhRKf»3X‚f©(VX·nË+Cð"ÌS½ ÓË0vX'4f:ÅYŠš$AÈ@`ÑYŠÈ¦À\iH»Þä—`œ!—7øÅ_úy¹û}T®¾É[ôþ'ê@Â#Ü´k;çž})Z»8d“5?»¹9T ¨fåRU/BHf¦ÖqâÔ)6nÜ‚‰šÃ+|]¡:ñœc]€ó& é^G5늤Vûº |p,HUé:|RA>ð,¬\~ý‹×–yî¥×8sáMŽ{çŸ:ÊÕ«ç @8¦;C’•¤ç,V ¦7JJ[ ¼÷‘¯çþø÷ÂäÁ{,ßù_} ¿ø“?ÍÍÿðý¼ñ¹§æC~ùW~oþЇ±Îà¥æ¥×è Ïþ½7·Þ¼›oùÈËýÊ'ñÑI8‡wkaöÔÜó:N¸uh¬íáµ:ÇeR¬m{ƒ÷QdÙtqeB7ê\`Ä$I‚q-BdÃ5»‹ffv¯4ᬉ®Ï3Ûäv‡\?)W¬¯ŽA}#ÞùšÃüö\©í´,[×þæ›o²aÆQ,wÝs7Ï=óh´.L*1Šˆ}'ш  C–··«»³Æuª¨hö1gC©ƒƒs¥ÈóœžÈDa´G¥ ‹1g †ÆR N3´Jغe ›·lãÎ;rÛm·qøÞ{¹õ¶ÛX—v™€#W¶ «º{¨Ã¡ªBà"Ü”Äî!Pß½õ5aEˆÊT‚ÈpÎsõzÉåË ,½q…cG8uêe^xá%Ο{Ë—¯Rئç:±Ì®ë!e ª`fà ݩ.K‹o ²Åp€éÒ‰îCFäî17_¼ó$ªK™;„ Ab ±Ö¤Óôo\'Ë:8cQÅÒÒ"Ýn—²Ð%EÈ4LtÂÒ`ït]88ùà±Çžàá»Þöc¥Â}àm6©h…³ëæ‚¥5‚rÌä¯R÷”!F´m%’$I°JŠŽ˜bëM›ë*qÔbU£^Y%áÀ™d=DuÆAØTûhÕìe¬Ä%‚/4e)YYéscÙpáÂeΟ{“ãϽʗžä…ç^àÊ¥K Ê D‹U°iã4:uå€Þ”¡7E|‘#¤ ,‡Š§—eᚌäï|ˆ?ýãßÁ2ÀKA´è@a¤†/âOÙ¸i=ô|Û·{ج¥æ×>ñ)~à»>Æ\Òã䳟cíÓxãøØG?ÊïüܯҙêöF¤îZÅ$Áæ$ÆÜ[ ˆ›ôçjn¦ÅÕó ªð,Ië.¡‰9´¯Àe2ކ·Î»1mÃ$‘êZù,õf.ZÝŽukRu›âÅÑç?§1ØÕ­­1’2¨º+Ì}"´[Û­WÐ ©wÑlàÕW_eÆq8ö¡w<ijO=>ŠH–*p2¼G©€‰W”צól •¨U=BçWÛðvó„HX+CÈ“Ð!•P(AÖM WXñŽbe¥$=?ÅÔúiî>týûöó¾÷½—wÞs?›7n^­­i+E¤¿V³œ¤êbõ¼Š %"mX†ÔÒ:Nx¼†ah]X^\a8È9sn‘—Ž_åËO¼Ì‰NñòÉ3\]¹ŽT+L'+¬ßjæÖwÉõlÜ“EŠrIYöé%:héÒÑÏWH“é:ªYJ°Î T¥‡´ б—aøÝíd úà lŒÝ¡Nt¤ÚÇ9S¤á/..’v2òè+¦“„Ò†ì›/â’d„•ÅÕéÝÎ=öâûBáe#Tø¶›ˆ(†Ù²s;EQêN„¡|䀇ÅÜ|aÚUkð *HTðÐ)‡nÕ0ºªdk¾´‘2+&2¼ÂÀÑ…ÃÆ ÊÂ1ÌÖ[J^zñ5¾ôäc<óÄyŽ=û4—^?Gao0Ó›A%–™9…PËWX¿iž{Þ³‹ûþ¼ï½ìØ<Ïü†y?ö$ÿøG?JyB¢õ4fØGa@ÌcÜÏ/ B JÛGËp0ä3þg€Áù§N x×»¾•<°—_ù£Ÿ£c-^Æ×ü—ßĶ´GÖɂʼnVüÀ~;[·¯gÆ ¾óÛ¿•O=ùg¤îÙ°µ~l°R7¾D:BgC;Ñ6ö›Äxjþì$«|ZLžI>gMh[ý\MÃÊIƒXÑ`tµE…Ma\ó°j*ÀÛ*ö0ScsJñVjæ$(¯-¬h¼ml¼Mn“Ú‡Éèï¹:l¬ê¬Ò4åÒ¥K«ÖøÃ?Ì/ÿÂÏâtðu²¾ D Ï<˲zžSi|„™*sA!ÇÙ`B…îg¤fwX<‹yNÙÏÑz³³в$Š¤Æ¡û9\ºÜçÑ¿ù'O_å±GŸá¹c/²pýuœ»BǘݰÙñ,¿q™é›¦ø'?ù}ãi艴ŠHó-¢ÛBb­‰yÙrL@ØfLI©QJ×Ú*OÉJ¹;ê±NŽqJ±düÀvQ,8ú>žL'µµ¿”Áê{8†\Œ,ãø‹Çùà?Öá…ÀK8òà] ŠŒ©™ ã 4R¬Ác7È‘u!NO IDAT'µ%QZPsÊ¢ ßïS ‰dÛž=Üq÷|õ#ïåÀ¹ç0›æ7¢"|Ò.‹0^ ÖÞ†`ªŠÖÕ©ÔÑÀ1vÂ×è…Ô„ÃEÍóaÞ ÆBƒéÒÃÂeÏÑG_äÙ'ÎðÙ¿9ʉӯ°2¸D'9KÚÉÈ2EÖKÐôý wõIEÖñôW–1¶ÂQ:ÈD‡A9@9°ß¨TΩ ˜–‰q&„Ay‹S$‰@'†~âû˜÷ÛÍÕ¿zœ””ÙÙÙ›€Â)↠‘€Uüõ¿þ·lþ“õt³7È£Ãè(ÉØÀ”q…ãðáÃaÔâ=7–sÃ!J ú3Ëüá_ÿä¿ÏHdÕ퀃D%8W²¥×ƒž [‚IÝ÷N:Rℤ–/_â{¿çò±ü1¾é#ßÁ O>Mê&g¨´7áöÁÑ ÈšdéR*^ÂjUóˆI,¦ú£gß«óš×ІZÚ0Z{UéwÍkv.l¾Uæõ$QßÄõ]7±;ëæ"|:ö½ÔçJÔ¶V©XlU·—:I(Ê‚éÙ.\º4ÆÄ*mÉÖuq*=-ƒ[nªCŽD*éq,]_ÄEžzû¶MìºyGî¿Ã÷ÜÃC÷?ÈöÍ[éêY·C7ɰµ##Ö"²]TP<'ÂB¬)â.º'x'"͵ˆBY–¬V·­ç‰¿<ljW.ð¥ÇŽñüñã\¼t’Åþ"2͘êz:I‰×°B’̦³%¦¦f o`µfq`HÊHök%ÖT–GBSNŸ(„Vôó>^:i†1ð.½!N0ÃÆâÐ"l4SBYœÏ±®¤0™õÆ,vduï„À èy2[’,¥, ´Tãv3YJi ©Ò”¦D S-‹@›' Ù6ÞMõ( ‡0¡P(ò’¢(év»äÜ™ÙéH&x›Òx%°{÷*“?!%²…C¯…­60ð%^Z:3~è{~H^zñUúý\¼ú:yž³²rk/7@kf²)voÚÊ¥©eyÇ~à‡€ 7mbýôÝéyz3S(©xce‘_ÿOòSû"åÂËgض{;Þ:41ugئ;üùïý ûv路ÐEe׬4ù'?ŧ~õ‹|ðƒó›¿÷ϰx6¢8üðÃ<ó¹Ç˜Sš¡)Çç;Jc„ÃyO’dqƒ.øâ¨DR”+\]x“-Û¶qó¡›¹¶$xôóòC?ü‚ëæØsßm\yöU®¾q‰Ÿý_gqJó…g^À,]æçÿåÿ‚t)¿ð¿Æ»n½­:õ0·ÊžhnvmդܓÀ ŠL*bÌìÈ’9D šNåÅÚŽËMx¬vŒm0ÙjÈÛÿþvÞF›šÛ´4iÛÍ/kZneÿRéyª{ÒÞÛôe磷N*„š¿’ïš]ˆˆ Ÿ¦{m›  hiV"l“eRJ¾|ôË5‘ïIU‚²¤¤;»ž…¥ôp6ØŸ«u³ìÛ¶‹»ÞÅ#¼‡7`ËÆMÌÎͲnnŽéé™à]=«x¸š nçÐBÆï-¹Ÿ8›‘ òxWÖ–uB¸(¸ÕÁß­¡‘8{fȳOŸâè“'yåÄ9^|ù—¯ž§0K(å, ‹WZ'ˆT0“•8}¥$KK9º“!ƒ/ ¤ƒÂ÷AyòÒ"“ ÐWZଌv>etÕ­@0EaŠxpI¬‰¹hK"¤$/ :½n°ÅW:Ê Λ ñu¤Öaž]‘½w¤Q~ EX祳H­pZ¢}™Ÿ)“Zã¶¼¼ÌºuëX)‡h­é—9Ý4Ì@’TS˜amÅB:³Ò–N %%… °åÜÜ Ëý%6Ínˆd&x Ö23E¼gÛŽÐë`¼6Ë6žÜf{Œ^¼`ƒ 9&½ÁŸ~úã‘2Õ›Bª‚÷ÿƒ÷pÛÙµc»wîbýü‘(`ËÍ7ÓûÜQú~…L‡6|ë„î&K»œ={6ØuxÏüìT¨†µæÚ¥ËüæoþßùßÀOòwø™ô# n¤3’Ò{¾øéϧ>óiÞsøA6l™Å‡Šÿáû~IÆKŸåà;nå·éÿ¢—Í œ˜oÒžƒL²˜©a-­êLˆúϬ«-¼«ƒ ÙŽ67Ç6”UUÿEQ˜±J#Ò´KoÚ€T¬«&,W©áÛz¢ª³iZˆ0Á@°v™mÑdG×ÛÌ“aLµ=¦[i±ÝÆîuãÚ&Škÿy­52édŒµ¼xâårXÝ)ù–ÿîCÌÏvØw`ûvìa~~ž­[·þ¿Ì½i´%YZž÷ì)"ιSÎcåP™UYóØUÕó@7Í  Õ mXØ–d,l 5XnÉÆ Œ¼ zaµ0,F’,–%– ´hi ‡ê®y̬ÊÌÊÌÊyºã9'"öà{Gœ8çžlü¯*×ÊU·nÞá {ïïûÞ÷yÙ½cg» 43‰ø»zÓ\Ã`’/$ž@âçE„ª÷)ýÓ´­d "µ‘eÀ•+NŸºÆ+/á“Wyñ…—¸xéMξyšõÕ˜<)‡ôæÁdm,Þ É{±M­•¢ru<ä˜9œÆ6ZÄYGoÎ3¬WP¾À‡-ÐW=Õ0æ²8—4Y ç*´V(­°6æ…XëQ*Ã¹Šº¬É E‘gçñÞ!µFf†ªª(˜²È2†t¯‡>I£ ÁÇž¡”)bœC][Š¢À{Oå#î%4ëãÏ*T˜ŽºPA®óX‰Mð[Û)Ue!ÄÇ<…PŒÒ° X˜_àôéSܾ÷pëÁûZ‡·F…•\©;ô<ôrÂPETØl›ÕinL‚E C]pzpHjÄPó©øùäÿðwãn=^ÇL%ï|àQ>üòþ½Gزm‡užõ¡çÿð«ôkÍ·~÷; !ö4Þv¿óéŸÅŠ€T#þýÓ¯òk¿þîé-ñéŸüi¾ç‡¾…¥ó ßóñOðçÿüO‘ <¬¬¯cƒC„ WtnÑ»îæó¥C˜ØšÊ2Ež›8ÿðgkT®9õúɶ „à‡øïñoÿÍïò£ïGøø~¼µ 5ÿë§ž^OóþþÿÂÏýêOBpìé/ñ·þ“ïÅŒl¼£æSÿÓ/pâ™çع}ž¯ûàßÄì˜çòå3ôrz²5½°ÏÚ@º_;)Ëí(b:‘t¤À!ňΪ<¦[XÓ’ÙÉE\ÔD’<Ö¹Ítnü=‘ç[@©q” kë8 LCd‘› neúõˆ­:y! º\FªˆRQ=å‰?ßg·’ñ"VåÞ9ŒÉ’â*J›I3™ÑïuUáB ˜ŸcanŽc÷ÜáC‡xðÁ™8‡€ðž_ùôÏ"€ÊŒôM‰‚.æó$Y½l2Ê›¼á”º‘²µÐésV¦µ™‚$ž“ìø#V×ož½Á…ó׸|ùÇ_}§Ÿz™Ó§ÏsåêÖÖW@ZLèÏŠçHMë-RaG’Û·met~:7ú­ÜÆÝé±ÊÊ"„‰¨c© Þ!+Çb±Ÿ~ð¬KÁ¯¿ÉÖÞ»÷õÐÀûödÛwaò¥x¾ÒšÏüëÍýÐ?`Á¼þá'Ùµ·ON^räÈÁd"+ø­ßûm¤ªX]cE—<ù—_æ>þQðžûv¡ O.À§* d…Ô‡¡'N¼FåÑ'æ÷~û×ùG?ûÏøW¿ö¯È¼Â…ÆH¬œ?»Êçÿ¯gùÀ·?LíK~î'~ŒŸÿ‰®2Å}áy.¿¸N/¯ù_ÿ?p¥á§þÙ°°½êLóÊñÓ|ò“?Í_}áéç56(\ï:åúz=Xœ›øU]™ê­âø}?é! ÞC£ÐI*/!ÃùÐñtÌ2#v×î ¬›‘!¥ŒÁdÞ'S­ vV– ¼‡÷QÛ@î´I‹3R£¥¥6ràÆCÔî‹‘Ñdµˆ8 ’ß$DOCU–ô‹ é=¥˜L#¼h(›Ó§Öï<ÎÆM´¾RPKÔŠžÉÙ½kßüî÷qìØ1î»ÿ>žxü ölßÑñ>uæR#muÁ£%§Ú€Ti.%T„êf=ªhªM¢€¥…WW¹¹¼Îõ««œ=sƒ¯|éÏ<}‚“§Ns}ù,#{…ùyC‹Ks(Xú‹Yßâ½EÈh µ>=‘&{&%E*-©­%/•sçF-ö¦ˆ>.’Ò4dˆ”ö(46ÄdH›25\¨&ˆ×.)Ь³ø@‚|¦Þ‚„ÚGj´Q†ªª™3ÃQ™ZCzóeY"CÀzsm@‹’rsi DT tñ`ècpœB¢‚ ²6¦d –&I¯CŒVdYõ–Qí1Y†ïbÕì¤@ªŒPZBPi°®"+ AIF|€§Ÿÿ2â{ÿļ=g ãè‘£¼zé¹6¬hp®-Ë­ÀRL˜²Y¤€²®9zç‘(­áO^z•ïzô;Ù*ös®ú2Ù;Û÷¢×›K'$Ç×à öþ»ŸãÛÞõ lÛ±~÷óO2øÊóí¤`®0ô´kq®bçÞ=ñ—ŠÕåu„¶Iú˜Òâ,¯_ãŸüÜÏ`ò›†c_øþ”r0â7ÿåïrÛîü“ŸùE~ãW-JDp 4Öò¹œøÁ¿Íï-þïüºcøºF˜äèÕÿñóÇù¶~7[¶¼Ü ô†üþþ:¿ý;¿B¯€­;îൠ¯0¬Ï°´ÍÐ+6°õëŠuµæ>¸ˆWŸ’MOWÓnëi"r—5í¿˜•¹2=ˆŸÅ<›þÿiðá,©w#Ýîò¦¦‡ü>ÅwÛN“ó˜fÓ×ç¦y\Ì–Ãï¸B#MJœKrHc Âh|ðô‚06^Ã˶D{‡‚ù<£¿}‰ÃGòðCñ_ÿQ8Ƚ·ß±©ÝH\}ð «‘^Ÿñ:ÖèMLÊFo¨O1ª7y“DjÐ(Ú`}}ÀhdY¾1âôÉ›<÷Ì«<ÿìiž{þiÎ;ÍF¹N¿_¨˜_ÈPÆãÝÙ¯Ø9×̆«ƒ 6¨«ø¸tÐéÛ·1.Yàê@¦óØö;ŒiçCÑäh[ÿV3·k°.Ñd«´&Fz,óu©®"óÍ{¤ÎñX¤ðhm¢Z.Ä )%@ë,þ>!&C«e½_óôóµVxgÉ2C£Â†ƒ2n~Tj–ácèÆpÕà<‡ •Xö@¼†jkÉUžM ”òbû='k;"Ó}À D@Qâ\1­r¬S(¨C Ïr+kÔkWyõÅÔñˆ´Ö ÿÕÛ£…ÕÑÀ8r”WþêÙt"ØìÏè.bÚdZÚ¶=\|J7bqû…06˜ß5âSŸüΨ÷gpóÊùÅ~ :ÇcGðè±#(¥ ä ~í·~Ë%ì ¨¹uJÑç[¾ùù÷ÿòW ™áÐî<úî“ÂþÅÿöË,-.FóX\Å—>ûYvèxªˆ8.É/þ»ÏráÔ›l1Ûø£_ý,ÿÅÿÿû/ÿ6=Ó£ŸÁÆÊµ·(í(Å[_çcßðqÞó¡ð]ßûýÜvøn¾ðôS|úþ9+˯³uË*ØU‚7ˆbŽ›ö:̃S7©Ë§è/L•áí*Ф-ÒÂ0UžX §çP·YNW]¢rwè¦ÞM§:v1 _+²«˜šL{?9ð—BΜ©M£K¦]ó“rå1 Êz×J»!Å«ãcµJL1)@k„XïÙŽðÕü[œgÿ¾}|ô#_Ïý÷ÞÇ}÷ÞË»{&ºe“Úh°„€O›‚s%'Œ—±ºka¢³m!"Û.)G­n*xͰªEÁsâÕë<óÔ+œ:qŽ'¿ü'^½ÀÚŠ¥ä½~`nÁ£L… #”’ÛKr,‚^6o`¼¤¬K´×ø 1:âI”¼1*5ôúóØj˜P94ÆôšLElk=EÑ×™h¥ŒAYm “{¾EÆ$ KÃå*òœõAÙn´–(!PŠ8o¨*„PJ´Œ+D'Y³«âð9‰³#¼(¡ðÖQä9u+˜L›Ø~, FÖ"CÊ %2ŒÉ>‹ÀTañD©m3ë³Ö¬GY<$ò°Ç“eUµ^¢U/K¤kÚäŒÊ ”¡Èû”ƒõØš¢ÆÙøýÂTÈ ±ÎRU–¬Ðx笯“iM°–×ß8ÅÈ–dJÍ…¿XXé$÷ç~Š_û™Ÿ's1ÛÂOÁ些H1 ÉóÞGØš¯Ñš?ûâŸóÀã÷é©qx<æÉ×ÏòÞcñÒ‹Ïs÷}ûpAà„âüùeî[ŠÞÖPsYöîYà3ÿõ/ów~â84Bð³¿ýN=ý?û#?ÉÞƒP"09vîg—ÙÍÅëÏS È}E&žö$”BðÇöç|ûÇÿÛŠç å. @÷6Ðþ"P'PN¯J`݈…ÞNª‘‹Ñl+6œÆÙ‚‘,ñ”侇°¼C`(d&(Ôz¢BéhÂŒ¯_¿år5ù ]ÎÑ´Újºª˜VMCغm¨®jzCȲ¬Í垦/OK{§‡ÖbX9À¦ŸÙnI=Ô`Á¥-¶y¾½^¯¾ÇŒ‰:FêzGð©B+9Žê³–ÕUʲLeɶýûøðG?Â}>Ä;ßû^î?zŒ­EAOšX©4Y­Ò*U9iØÝŸ›d=Æêº¦»H¸eÔÁ½àÛ™ÄéÓ—øÂŸãĉÓ<÷ÌqN<Ïkg^%„йy…2eF(3ºABH‚XO­¶* «ªNŽätO÷»ÔøÈT<¥KdERÂy¼ dZ´1!”§Ího2ïCÂZi=em'˜lY¦½ )§ò>U]" )SP˜œÁˆ¹¢—Z’6æ§°ÒÒ󉀯Û*°ÙF£!ÎȲ%{8öRf †5¹,#0ɘ$·q®¤5•µ(óqâ8NÑÏ ª*Æ›ä…Aø>V©J‹6™)•CKKå†éÞìÑ[”ÔCh4Ëa…2”ƒ!K;æxõô3üùŸ¾ÀÁ];‘Á¼ ‡èDx¸ëÐAFõ£æ¢ËwÕ+ºíeƧ›‰ón"e³6HFu<±)ÀÕdJÅ/ÿú¿å¿ýÑ€¦ —)B0ÆñŸÿøgø“_ú7<¼«às/ÿ^HöæàC|æÓ¿Ì÷ýÐ'0;,KAó?Ï…üÏb “ô– ¥y÷·|‚BhÜú¨ Ï™qõºå«_=ÎoýÆðÙÿð”î Û³!¶Ž-°eu“-Kç]râëö´(“ÇÕ‚f}c9ÅU­¼Â‹ŠÌ py2ÿÄÒ݇‚W¨àÁG§y{¯“nçèŠíÞ\]mƒáîÊz§)ÈÓêîÉ·[et#P§ce§ç›ˆ»Ï5³—¶•™~ŸQ%$µ«ÛÇeñ´ÚEjm(GÁ2¹«{½< ®SÝ®$¦ˆÔ×Ñê寍ý™»ï8Ì᣷ó¡÷¼÷ð>|˜Åù%ta˜/æ)”г¯xìC–ª4xV 2åÕûàPJ$NNkX„ÌZ©qhq£ã?u Ï={§ž<ÁÿêE^~é$ç.Ÿ¦²k8·²b.˱~€RZw ã°×U8o©=ÔUÜ€+WG¹qˆJ¥`ñÂø=! ¼Ã¹2îk^â¼BØ€>ˆ›÷­(r¼whÙ‹ë‚lîi‡ëDB9Ä ŒJ³$;®¼Bï<Ë©BIfâûcgΘŒðF¥PÞQ–#‡QÜÒ6é<¶Ɔv£Æ³/`¾×I… gÔËçØ¬ œCμ H¡©lÙ2É*gɵ¢*K¤ÐdÙRôw‰è¦È{ή’dyFP’ageY1—ŒuäFã”®DIiK(,*䌬%Ë*ìpD?ïƒðé1 ÑÄø ËhÐÃ[‹ÖÖBåXÜÑ'(JÓ[:Ä`pá÷á…oÙ~o3˜b¤šîß»PZD_Œ—Z0©oYÓí‹é¡jÌH¶‰y•3بð¢B`xêõ ~òS¿ÈÇ/qæòsXw‰¥Aµ²ÌÕ+79td?¸tñYäÂ9ž9áY[sÌ-Åsļ+Ùu>ôŽïæ~á¿çýŸx‚¦U.5üþ<ÃßÿÔróÚy2íjw|Ã*àEA Ù *[EgWÖT¶NÌ-’‚2±‡f¹º'ˆ³“·µ‘žëð)“s¡Fî9¦Ôý¹Ó•Á¬*oU2+;|Q2ýþL»µ»m¨®9¯Û²$lnu5bŠ. ¾ ½r®(V¾Bˆ˜C_–eYÆÓ]ˆù$XÓΈæ±ÀÕ×›;Ÿãžî罿“Çy”Ãû°eÇ.Èu–ÒZhqéιØN"` >$uÛ}!¶H¯ñà³”L"Mi½ÄÛè@Y êGF \»4äågOñÔ—Ÿç/þò4W®žçʵ³Œ†«Œª5‚¨É ÐÆbÝ©Jz™¡®ãÀ¶ö5^FygD¿eÔvÔñÞDü»Dì21zx†Ä~ w¬“Â,è\#xH”í3ÒF´Ö?‰Ìˆ6½ÅíeÙJ*\p±%œÜæÖÙDŽ®pÕTs!¾ÖÂGæ®øøµÁ¹Ô¶«£ÁÓ:êM[ûмÈZ¾š«jt^€1±r‘ kã<Ó¹È;SR‘§Íº´6zÊFƒè·‘0Z[AkÅÊò;·íàúÍ›„aRnÿ¶Ra‰¸àØw ý¤ÖWOºk§å¤ÓjnÆy”ÅEòçâ–>Ó(øý/þß|î ¿ÂÒ\A!‡H]SÁ:P1LéæÕ«TaÈ , [ú\¾9äîùý¼^æl=ä¿üO”ÞÿxKÛ—¸róW®\g¹|žÅþ¹,±~º²2jõÕf!.0uí£LЕñÄ“z›qöªoMsÁEjãD! i×mò n%µ¦ÁN¯o•í}«Ê¢Ë±úëf$Ý–c«J7n—ÕmG‰„õGˆ$× ÇlªX9õ²¨ƒ‚¼(YtÎÒ[ŒîÚ‘-ã8A€Þ–E–yäÑG¹ýða9£>ÄÑ£w°gÏnzjRÒî)óZu–’’࢑Χä7Ÿ°4±«w@ÕÀþÓX¢$Ä.þx påꓯåì™7yåÅk¼òÒiNžzƒ›×—¹²voK´®ÐÂcæV0™&H‡5C²Ü E"º¢ckFz¤«€/z¯*âþ=À‚Ž WhÞÓ(ŽÞÙiŸÍ‰½Jž‚Ötªü\ÒY‹Î̤×&‰S6&#ŠcîI’JÁ¥ƒhsè PÕej#ùTѨô5bS؈³‰æ ñû‚ˆê—ö>Q­µxpÁ!uŒ§nf2^øØ¾S:’ˆÓHIEV{“Gã_‘q“Hfɬ0øÚF“0 ¤Å ó1FBiM]ú$=Íùd_kLfÈŠ^z ø¸ A”¤ûšùù"•l“´‹’úBh•qêä)ÞÿH䪯T| UXј´cG”jO,íÅgë(ö• ô|pM†MôÞ]Apƒ Œ „ !r.m¬"óŒáhC ”­‚ŠróÌW/rúõS<÷•çѾâ¶%ý›z0Ï Zü d¿‡+/qqîÙÚέÔѯ¡+¶H…óË GË ë+l9Ä$cOlWŠ`2(6öà¥ÞÔÓ߬š 3Oõ>‰èl2ÓÊ©¯UyLƒùf§«½é¶Rsó5m†YqOgSJŸk6Æ7á»tÞŽ»[Ìx=„ˆôÙ¦5±ÖR; R¡rÅÖÛé÷{|Ã{ßËöíÛ¹ûèÝÜ~ôäž#›UM.…ѸŠU“)E’²Æ¸L N²øÅÇ:M%9½¡ÆÇ½|cƒ7NŸ’í†ó IDATåÜyÉùs×xíÄ9^zù9N?ÁÍk7Y®"Õ:Ê QÆ17W€,©Y£¿a]÷RœÁùö¢7h)$IoËVäÕ%›Mß1˜!ƒ³ðÝÏWU…Éûôvð‘~‚›ë#j(3bËÖ‚jt“àÇ'ëjdYØz¥2¼‡Q9î«×µí yÇioQR×mïtáJΤÐÞ éÝ}ì]ÆÒ´ñmp“iÊŸ± õ1åÁèV*ÝyÄ´Úi“Ò­Súws¸»³´Šc^ç*I[‰-)¢›;äÈzu]ÓÓq’> …dP• Éa™Ÿ›gÛ¶íì¿ý÷Þ{/ï{ßûø¦oþfvö–&%IÑ„”PY0z2Phšd0%é"ã×Ѽ3,žIR¥š_¤ãÁ ¢®#ryyÈ¿ðU¾ðÅ+¼ðü)^í,7V®¸Š7ز%Gˆ½ž¤vŽ;¶öAÚZTÕQ¹Ápd‘2oS/…€º®#{Éa’cVœú¯£n³ù~ç\¼Æ:×BJÐF)ÄùØäŠodzÓé÷qÍ“®Ù`;’iHÂûA§ÆÍAf]©vf2l ÞEGm-ÁÇ9 ”*&*i Qzë]Üümšƒ"ɪk\ôLAmmË•”£‰ªsÑ›Ó|ÎZË–Åm Ãä!‰Sn.½G)b8ÄÙNUW(™¥VâXþÝ$Nªæ~¨,:+¨ƒcXG²^ 󠩪’"S‰dÑðJi‚¯(rƒÅ‘ç}yV°¾1¤WQvn¦è#ê¨X³´ŠÙH>8dª>­¯ð(jk¹¾rš³9×ñí3Do>¾óŽ;9{åù¤Ý)ÛžÖðÏœˆÄÌ"::7ª7Ð*#_‚£°¥Ã–B‘äÃãÞ®­3ð:¦ Š@õ¦›dVÒÞôßé!ô¬–Ðô‰¾ ñ›Å=šF¹Ìš]LÆû2SÂ9íêž®dºmªY?¿%„v0æÝÍCÊHmVkÀCH¹+*½ŸYâ­©|MU•à<ÅÜ•‚w¿ï}Üw_L{÷{ßÃíGŽÐCS'O„K˜ˆþå0•ŠQ&.¸8 “ !Ʊ¼¢‰Jmsêe”Uêø\::•+sñ„~ùâ€Ó§ÎñüÓøã?úc^|ñeVVר9‹Qš¹ùJT¶ŠY¡Ø"–ÑÆSÙ 'Jhn®ÔhSࡤ¦ª=J‘RÿtÚãlÜœ‰±É $²k¬EFªn"bÛÄHÙjµ‡ „ÑS­£Ï…€ IÝ–RµT¶$HQKzâºk2Dº›ŽI2e纭rUĤxP2VãÑûÞ»¨X×6Éz}ò­Úa&=ï ¥â"Ú„_ ½#ÖÆöpð>ù7âu[=jó9”ŒPÄZŒ)˲lùiü6x×"kš×L A‘¥Ti¦d³¡eÔ)öXë¦ÅjRS¶[“o7H…ÄG~žŒ3@ x‡Î2„S(-–C”2H$2(jçbÅê¶–‘S–6ÔÄXQ¸šõõ:±h6ÂÓì'V«%ƒá‹W/rpûío¿ "x­A=¾íoŠ—ct£uQNz‹!ìtïµ»ÐI3¢v­)Ë•Ô#O&e=B˜(Ù˜òII é•TwLV›ûý³ónÛgºýÓ•žN+¦7Åév×,Ç×Jÿ›…ßÞhf½Ž_+jÚ ØœÄÆF:Ùò¤š¬`ecW×`=zqŽÞõû÷ïgçŽ|ìããác÷²¸¸Ø*DúBµ^™ªOQ½¨Ô¡{Bm„BFƒ•”[J(¨ã ~Sêdpí@Â{PzügßXç™/]áÕãÇyþùx奜=†ÑMŒvä½Á¢4(UáóúÛH²ÆùÈ<+G)GQ®Š£¤‡T"Vd Š€ ©~àBséòe.œ“²/¹ýÎcìݹ‹ ‹¸Êsåšca¡Ä;ð¢@g9ÞŽ"V^¤–”Öbkhz½m çÑ&çüåó|ìÎx¡è Õ@éfT ³†ÃÍMÖäÓ`ÚYGæ7k Ý ýʲl¥~³f ÓƒíY!W³Z]Ýtó§Û»Õ°{ó,Eà½@3fuPÞÎ9¼)Ò b²asz*Ë2iÈ6db6„AiMnb‹jm4`d+ü¨?‘ža±ØÂ?Î'>ñ î¼ç….йfßžýlíÏÑÏ‹±Ôµ5‹ÆjB„FRR\DY¬o§Ï±g0àeú8žRe‚SJÕ¤êÖ3pö¼òÊœ>u–ãÇOòâ³'¸tñËËW©í€ºQ¥lz•?IJW£¤§ª†T6Os­øðš6Ñø}jØVãëA'<‡Kó;Rja×ÙàÝÔÜ«}}šQ$?H§â˜¼öÒI¹KfŒ ïæ—ÛÔæÊ´Ø1•3¶»¢) ÁÙøn5¡IÝy\û3i*ëˆêïÎH‚P2‘$|,™£Kâ‰>Ù}n±"RéЙSñšpãSðÉØ)F\ÑP†˜ØWÛš¼(¢Ò*I‚cû,.’ÃѪªæýjóY–É>nFZKÊD½Í²œª*#ÎDgheŽ6Òë«4c e9D™ˆ]q~²LRÕCò,`âDŨ®YÈ{Tkä:GÉ8“r: ƒ!ïõPÆ Tk«¼~æؾg7ßu”c÷ÜÇû¸û®»8zà0{¶l¡¯{íÁüó_z’ïþÎf÷îE†£ ´‰Ì,éU=:¡vè\brðž²ÜÀ9ËÂÂ^=ñ2ßöá¿=aŠ"Að!pðàÁ¸¨šxóNG§NVÝv‘›0Á !ÇØÔ›o>þZíkíäxFël&{ëm î÷lR*M9°gm8³Qñ”ÆX?Þ G©d” d(­y†µ–¹ùùx#{O5ªX/GÑx(ÅB}ûp×Ýwñ¡˜C‡qøàavïÙƒÊ4Û¶nc®«o˜L!åP ƪždìRݶ˜3hÌÐYGÛ"&Ò‡$Mnßu´†Ë—å çÏ^æô©‹œ~}S§^ãܹ³\»~™’%Æx|Ò+,Z9dpe‰¥ÄASVÑñoGÖÖhŒs£ päôF>åÞ͙ՒìΦ¦ge“ó¯é©˜IžA§Çغ}1…j‘0ÎO9þãá¤Ù4ÿU÷>›ÅGk9gaüØÛÇ›n¼¤·Þ[níA¬sŸÄ{a<[ó¾Q,ÆMEJ‘ª%O& ÈTň4“Ð:Šb’€@ù±7J¨æÒÌ$ÂDT³11·u»§MSÊÆcä Aâ½hQ÷UU¡3™¼1—ü&mÈÞû8 ‹ØÝä(CJG@még9ù\Ê;Öà ÃzÄòÕeP ¤áÀb;Gy„£‡Žðб»9tèÛú ¸Îâ” Qš]pðàÔNag°±ŠÊ™6Hi(ò…Èåó_ÕH#rCe΋ Ûxþ…þÚuü-“ñvÓ·-lÔ3. fŸÎg …'á@Ü’ 4Ëåݽ¸g©ž¦ ~ÓÕÅ´¾Ëîšnq5ýçYmzÑšNþ‹7jjŸáhŠ¢hG|tû€·C¼Vḛ̀oïöìÞî={8xçQî¼ãNî:vY‘shÏní=ØžZ𡆫$!´Éé€K†2‘N§: FÚ@¦&36Õtuƒ¨c’>][¸q½â›×9õúNŸ¼ÈéSg9}ú,gÏœçâÅ ¬.€¡•#Ï*» c4fÑãì:F‚Ó¦Ïp0@Š€ÖÈð´P q"PÉï@h¯š* Æ™ !7m³®ÁnûtøÔô{8«õÙ=•7UˆHrÔY³·é,ùFìÑm*¥Ú¤Æ®úGM\çm"Ò;ʧm{Jo}=NÁ´Ocüø#’^ªffàQЮ–œîˆÍw:’c•2x•MQ4 #ª'1¥lŠ %B§ FGŒ¿¡å‡ÉÄ–J‘÷ûT£Êh2Ư•1¦}¾!ÄëH¨h>­ëªÅë+)Ól¥BH‡’©# l«pS*Ê}¥Ð)1:#àÉó>Fklð «’ÕÁ*hi(òœ`$K{vpç=wpôðÞñð£Üw÷½Ý}Û¦Uӥð >šX•šXó|¢„”I³gï6”Ò“‘gyT8‡”y<ª@BíatÆp#:ÔW ú\¼xùí¹ÀË8$•>°cq+¤$<1¾›n‰uÿ•3e§"9Áfa"g ¨gegßj–Ñmc´ Có»“é,¶ÂƧëÖ%ÞA^4m&YÎ ßîªB4œ&Ù.Î9žª.“j¬Œ°¹¥¥E¶oßÁÎÛpÛþýìܾ“#·æ£þzŽî½mÂI-S SèjáR{‚ô\D ù‹í¿˜ß³™ãÓwúÐe.Ó¢…h²2Æ'ÖÑÐ1T,ß\cee…—_XçÅç^âÅ^áÔ‰“œ»rµò°ÆÂ¼"/*¤²á"Zcæ{Šà|2f‚s1ÛÁ¦>»’ADIh9º™Å€ó£¸áJ‡syD_‹è&V2‹ÔÜ AA‚ÚÅÙ…l=HÍ¡@)Ígq1³9Kt0-±žV½MV³MËj’%çR24ÓR鬣1Ì4í™ö¤/@ÝdY7v7™(.æczm×Àׄt‰D· ézÿ¨ic¥Ó~<*µXCç:oᜩÅ'U]hT~1»"ª•y¦[ƒ¡:Î¥„$ ¢dWF,ˆT‚QUbt–®Ù¸Q:稫:†p¨«£3ªªDŠÆ¼ðÂSºšBK\’G%ZÌ_‰7ŽÇµ•jÌA ŽÈàªE/<ÕÈᬎ†é:h%Ù²e‘ûÇ{œ|€‡Þý.ô·vHéñž,ŠÄ…†a˜xˆÖ«<°é*¢iû8°\ P‚­Ûã0_ex$ÎãaIE”Ô"&Ê/4ÊúÅ"£’ —ÏÜòàÝ&a¾%H“z¶Ì/B/AÙlÂ`7^s‚6,FL«‘Ú Ð™ó‹™.é[(¦«IC[T|h-š%9…&¥Ãy42ñyD+]bªŽå¦’ !†€sÍóX£¨زB;ÏŽ]»Ùÿà]<øÐƒìÝ»—C‡ó]ú(}]´›Ô(XŒÐ)Dg3ÇF6\±F÷Œ¤´> €ñ¤hâ€8eC‡V}• ¶‚Ñúª¬¸vÕòÆ©«<ûô ¾ð…g8õúœ:ý 5ÀÒÏ2Loƒ,Ï@‰é+¶ö:t[4K"MÈ& )8›èëQ=d´xçƒàä¹/!ô ÊÏá)2n¬óóó”Ö§ƒmÜæ·-.±±¶¢fmy…Õê& fË&Õ[[4NØô‚.öça±ršºŽ8‚éÞq‹èf2×`rhnÀpKïŬ iZÕfU‘Ô6ñ{dÊ í;#££ZÕÂÌL÷gÃÕxçùxGöñÐýñàƒ²oß~î»÷öíÜÅ=wÞ•Â1› ¤¥>ø˜ÚüØÌPøÑš{í׎_Çô¥í03t„éßEsA¼ÀÓÂOüž oxιÄ3OäÉ/?ÇWž|3^¡æ ™(‘™¥( s k7¨Ý€Å]6åUXop­ê&úš÷MµÃåfèúWº›ü×2]Îj»4§y‹Ìi&WwÑŸ>HL󼚅y|¢w3۔ݛ¯ùZÀËéÏu«¡‰ |†—¨Q15Ê£f^Óm£ºŽLµ}Σ;TorcbŠcbCù(¢B&|ºœ´³>ÿݢᶮ‰[‘ …w’H¹—ŒÊ ”4“íaçЙ¯"Šcåièåyû˜›‘mÔäké<A¢[ßg‚`ãA®žžÔ ¼Cõrë‚›«+x óóó{×|Çw|<ú(w;Æmb1¾ŽÍú’AOdÂÞh1îBÑ»Dû ñðëÒö2vÿ‹ ‘2$óÀhÀÙ€­=«Ë–S'ÏñêÓõ…/óů¼Äõ›#–†ìÚU#{ñ'Ê€ñ=Ô:£®]Œ÷ QE–÷ÃU*[37×C™ÀK/½È»~ßìVô[2 IéÒCpۑì½~%–ž©¼žÅtšFyËü[²o5in¤n «‹ø˜v|{Îñ aŒ!– ™©´0:BY³¾r#&¤5¿¯ŸsèÐ!¾ýÛ¿oùÖoåàþ}ìÚ¹³%€*©ÚÁx³±Ê !5‘‰eã:ŽÕ… nrÃCvX!]ŒÓ›wHjz®B&õwRÇ‘séü—^8ËW¾ø Ï={œãÇ_çì›')GåPºF‡Êj„(©ü:ó;=U¹ÒüV¼ÜX¢TÌ’ÎT/*lB„PS×±wì=,-õF×aëѹù}œn MÏæ7–iý¬ e–°¢[)4ÿmåÍÄd{8ÌTêu7ž[ÅîÌJhÜ”v8ãgu_î}ÕÅã4_?í2ý3ºy™? ¬Œ‡×Îò¼¯j|#iˆîoÕu³b‰£ <"ÍÝ𢚠5wß—Æ|ç\œ”Š$.F¸fÚD²Ç7/UUQ˜ŒZ*Œ©5l X[_çÒò*•ð0Ÿ±çž;yà‰wðõùï¿ÿQîÛ{)d«$Ó‚Ö{DJ„‡÷MÜJŠ\"ÊtoE¡pÜÔ·®Š-À´ñ…‰™®àúÍUμ2äO?û%žþM^xþ$Õh XØZSôk´QØvÈ`v )r‰C¼´(zX«bÕ˜Þ{ë,™ÊÉŠŒÑh@ÞÏqÎÑëÍŬõ­Û8~ü8ï~äý·0o¿•(“4xUéuܳo/7_9O®¢Ì-‰b&zÈ›Ó릕óºÙà åÔDk‡]¤RõÓôiµŽ¨!e{‡«”£A‹S =¶/nçþ‡äƒü O<úõU™-cM¥ÒêîÆ¥AtPi†ÿ¹–!@SƒFÌœÿN½6àÅçÏòÜ3ÇyæÙK\>’«×Þ Þ ÄB‰óUáájDáÉ ›Z в.aRòb: ;NÜ 82‡#‚§ª€@« ï> c[Dx„ð £TÑ5RX;6gc6á^6ñ­¦U’nv‘Ó'ôñõå7‰0¦ù_c•ß´èw1/·RÔÍÚ$¦á—·:ðL›M»³ŽözLZ»•‘Ö:½rB™Ø} šçОº¸”î!+¾é¿2 “L\zRcm9QÅûÆÆB!©ÅŒ•ÐT.ÐÓY6G][¬Íb;-a‚)zwÓÓ:¢è…oõÔEªZGiÖ2EË:FÃ!ëëë¬Ü¼ s[Ùàüð‡xä±y÷CO°Ô_¢77Ç|^Ph“2SUNHQñ®žÈˆŠV¬ˆ_ã$˜Ä‚kÆ„šX)9yeÌ8Åd*ãäëË<ùÅ|é¯^æÙçβqs…jp•lj]bBE¯Œì*K{C9@Åp8Àç6†˜1•Bðàzm +¼GɬƒÕ(é"RuåÈIrn’½ÔœþgqÄ6›.C+ónN¶]%QWµó´%!Øv6Ò,¢MXS+˜H ׬¬Ûî™N^ì.ÔÍïî~O; Ÿa0í¶©f!g&æ‚΃R†˜ IDAT•nk&8fZk‚KäY‡ë±Ç’Ú*Ja“½Ù|Ï}üŸÞSZ:á¿g#8¦ vm]ã<µM§.çÐÆ Ó@¬‘$êÒ1\[¥¶…`¸uŽ=»vsÛ¾}Ü{ÿ}<ðÀܶÿ6öîÝËÎí;صcÛú 3tÈ¡=BÙ¦{™r¸ÇjWU“†·á×f@K>¨6>V(É?!4Ï +7-gÎÜäÔ—9ûÊe^=qг§Îpmy™7Þ8‡gƒëëoâý¹Ø4Í*ÀÎ{ÈzW¯Ð׎GyÿîSÿ˜…ý‡Ù³s+‡·h_Ée[ócÿô§øÌOÿS–òù(Ëír¿Ú™‰ÇûÍ•]óÇÐU,ÑB(§ ™]OÄô¡aró›8`Óó®ñi~¼‘w«Øq?¿û=lòo´m¬À¦~Ö›ÇÜͬo16ù,¼@&)öd;0òÉyüÕ‚Ñ@UÚ85^B0 T`Z* )^¸¶Øªfe}…ºª£@iúG÷qàÈ<úÈÃÜßýÞˆ=;vrÇíGéu–¶f3€¨úÄ7÷âXy8–—û‰“”q“Œ³N›Œ²mdª &y—.ÝäSÏ>sœ‹oÞàüWxíµ3\¹z ëW±v™,ä[lz],¡¨™Ÿ”e•«Ç#€}í‘¢H¡Xo+¼wÔÖ‚­Y–( ŽžY ,GÄ –x©Ð¹Á›8­kz½‚Q9LUºc0`]‰6ÕÓÙ§Žègóœ=õf+ìðiîÚ<¿e™èÓþÃ+_æßù>¶šy\û&oN#œfaMß”J+Œ6 †®bëŽíìØ¾»vqððaö:À}÷ÜÇáÛs÷Ý÷°niâqØØGÛãlç© ~P#Æñqc9ï ïIS1ùÔ~RMXRGÈ7Ú¨X]ñœ=w+7V8súÇ_8ÉÉãg9{úoŽ­]!øeF\'è%=ùBF¡Aé@YÕüð'?É·~ìÛxä¾¹Š?zî/øô/|š¯|î?²ÕlåÚ…‹?q‚ÃG |…S%¡®‘¦H Éâþ]˜õ*êλ­¦Þë¾F÷æSÿ_磘Μe¦›6ãmnm…ŽYQÌ$w7£nÜn·UÔè$ÃÔa³i6¡`zž0á; ­ì^ï]Áô¼$Ïóvƒ‰‹]hå¹"U¹.Á'+ˆÉA)eh'o·bªëº;XkÉó‚ ®mÛVò2¡ÛT¿dF¬Rµ •Šmô˜Ë²D •fˆñ5.«ŠëX<^)úóóìØ¶•;ï<ÆþÛöqôÁ{¸ãÎ;¹ÿÞûؽeKŒ[Ð6NR„‹Ñ*Íc…åWÍ'b³#6ÁÒºå„ߣUp,_ª9qò,Ë7V9ùê¾ü嫼öÚ+\½z™ÑhÈH®°° XZt(µF^À¨Ž‹·wŽ^Ñc}äÉ X7ŒjDŸá“•Á;Až Êr„Š"qºµ-éõz±¡¾,BbŠ,®IA·žÖœ èÍQúˆ®QZ³±r“¹¹yªª† Xܺµåò¹[² RælT½ÍÙ7sê™3ÔÖctTˆvïOÍÛäÏžm;bn@ùùÁVQÑ4e2=ìkËyëPÚ°|ã&¿ô/~‰¿ýƒ?5àÝshùưˆÞˆê4‡à´•ÎxÓˆ¦Ä¨Š9-ãä1kPê ËËCnÜØàÚõ'O\â…g/ðÌS'¹ðú“œ½vË:žš^.È Aѳl ®RÌeÌíÛÉÞmKlݽGŸø6î?|”£·á«øÁïû>n[ÚϹ7ÏFUžŠÀ¼Ð|âáð7~÷#ü7¿ù«üÎü(:Q?µ”äúõšÏ}îeúÆñ-ßñYŠ[ݾ{'+õeHX“¶ÏŸù¦Oݳýn«¥1³ÍRNÍ7NûqšSìÿ_'ÿ䆳9xVï4ñ y/QµÓаiãh—pf\¿³Z²ÓÅôóœne5I“O±yî’ž§’Ñç01€·íÅLÉ8Uéwg@-8³QŽY™¤Îâʃ¢´&àPZ¢BbNIEEôëTeE9±^xüÈ£ì\ØÁž»ïäñw<ƽwã}ïy/‡÷d[уp¯ÚÖ¨p«hç† ‘)ÛI‰L¤¨„J²v)V\|κ1TMæ 3Õܸ²ÁêÊ€ onðÒ oòÔÓ/ñôW_æÊÕ5êò"•)YZÊØ9_ ¶¬0ô#¶š§,KÖü*J@…DÕ’²rxcq!âejÿÿ1÷æÑ–gyçï›öÞçÜ©&©$•JSi²æÁ’ì8@ 1$@‹)$†îÄIw/Ò4ƒilÍj‚B†n ¦mÜÄvlw3Ûlͪ’TR©$•Tã­ºu‡sÎÞûú÷Ûçž{î)ógËkÕªòUÕ÷þ¾ï}ßçù=IB§¢&Å’ÑPS•ž¦æª^S‹hUÊÌ$Ïc [ ‹,‰‹ÞF‹) ÁÚ§H¿ˆÄ¶‹=ÖP·-ÉÈ&ΨAkáU•´Û¦ÁÇ`£Eõú´ ) KŠf°BåÖéÙyi÷*³å{Ýl »Ê0J¤K›J%á2³h°³Rõ”RŒÊ@‚=îªåÝXcHÑo¶ºDà &‘h…¥ÔIcuÌ„N›ÛCmêýÀš;*Ä´Óš„m£&2l¬žpâÕÏ>sŽ¿ùÒ£¼øòËyê //E‡sô­Ãk}›S,Ÿ;ÎuwÞÄ»n½“TôøÛ/}³Ï¿® m"«çÏok¡µx\T$m8ö™O£F†#Ͼ1Ъ–A£9{r…}{q=(SˇàGøè/þ2íJÀ+›¼ŽÿüÑ?å¿ø^Ôù§VÒ: °Y9ÓR6šzzãfk .ZÍòN·n¦•>“™"“Àd¥2Ë 7}Š¿P;©ƒj½uqìZaR©{ÜnQžT^u&<‘fn­º“ywJŸÎWÙ:ÙêÿØVU[1¹ŽÚvwŸM÷¼Û÷ŒeÐòóQkJi©”eÒ]X”G±†¦ñØ ÏÓ6-åü!&êìɲFâqN„Тt)‘ È~]U£YߨÀ·-ëç×èÍõ±;¸úÀ¼éMoâío7_u€+.¾t+u{reJžD“{ïy¤­½`”¢Õ ;V4ÅM§S¶š ´o0IiTn§&ж‰s£†¸ÞòÜ¡øâ³|ñïáì /òÒkGX+ôwôv+t±Ž³sՈʙ=XW Ö­oa0¯LÝŒeÔ6”ÆÑï÷Œ†ôÝ£XlĶ6”¶è2r~mª¬¡EEèBÓ6…,‹‚õs‘ÞbAã*B’ôA|`0ê¡mKU$Bñ1QÍh4’OI‰!SZ‘2‰Z±Ñ®²k~IZ´M‰O l‰ „Á O=ö÷ÜqJ¼B>wõ:Û@*WB©QF‘ê@¼€ƒ|:^urñpɃgniŽÏ}á3üÿ¥Ófö4B·´N¦Ãjñ=ÄhP´n!it0`d8Ÿ°ž#$8qžyú=ø‡Ÿ{•#|™ç^z™ãkËô4ÌC–vïâôÆYšæ,Íð,ZyLö•á)  ®»âŽ}ÐÍ=€Z)¾Îó®¾ïý¶o—ŸÕCŒ­0º•êG óÜåÈÁ£¼ûÝï5”Vwßþ.Ž>{œ·Üvõø’0  ßûÃ?Êïÿü/R¢³‘øÇßõõÜ|ó¯óöox¥¶xàƒŸüË«(ÝÙšW2¹èOöæg1Áf)‹&>©²»2f—j Ì›Íä aCm:`º¥4Y…LÊe§«¦Y¹)“Ã…p%_ÓW”W5ñ÷#ifëkò³)â¬tŹc.%r 'eév’ÂÛûfü_ùÊÓ<ú•§xòÑÇÙ4 “ciñ ÆAÙoèõ=i±fç|ÜRô„™CÈ`OÚ–6zÁŠx°E…W-J¤hÐQᔑC–Ö´$Bg¼U9à+$ŵKÄ´ gH•3 ,88ëm`”†$ ªÐ´m¢õS‹)E¡,Ã8@ù‚6ŒIôK'Ôã¦WcªnZ°÷}1AcŠ>ƒÁQ)æ]E[6CªÅ9zôQî¹ýM¨6*’Ùô—½n6¢°Ø«.#,²3€/×jr#Ñ> ú¸Y祣G³ðÉf&SÊ8 ƒ ­Z”ò@/+ˆDëq?yâñ—yì‘9ôÄ!莟ÉÚêÆŠ*Ð_Ô%({·gÄ"‘ªÖ××XÝhiSO’QÄè0¡O[¯am‹J¢P#&’-2NZiª£ ¤„U ß4E5n‰Å”ˆ!Ѩ­>´—oTQb’àè•RŒ ñ­ Á¨Œ˜‘Š´iœÝ”¶ï!Eœ+i½§öÊbŽ”<¥uxt–CO½Æ ‡ñÕ_áùçsúÌ2ƒÁ€"¾JÙ3Œü9Öš Ûuö]¹Ÿ~•‹®žçž{oçŠÞÆwßÁ¨ª’—ÏŸäWýƒ<ü知ð,¯y…£G_a°±LÎá£'T§) …sµ¸Îî%›»-!µœŒP©«º¤X³1jˆÆ£1Äd~ˆR‘²W2 k˜ž!ø„R™ÿëm›CžFÐfOšUöiRÑiŸ0Jgðy6UåôÑp÷å7ð úzn~åë9ù¹'°¥!àÑAsºÖ|ᯟçå'Ïòüá§ù⣟ƒÅ/¾÷¡êÄ8rv…7í¿ž‹/ÚÏOÿ»Ÿc´9W{{öQN>F9?Bm X(õ8‡ýôú2Ô#ToHè0'* ‚æ’«®¤ö§™3–UŽíÎXÀ“? (J+pk þíOý¯|ü·þ”«.Yâ«/Ê{œG±gi‰µÓ^Ì„»¸C¨t°·”°ÆNÍÂ×4Ä]èç³ä­³Ð$ÓÌ©YˆY†¾i¢Àôu5ù÷'Ûa³”S¢øË*¤)ï4údV–¼ÉÎZM𧀉´–Ó$šrιµc£«F˜MD+@9‹Ê¹.µoÑ)Q×#FÃáx¾°tí~®¾þ¸†Ûï¸ûÞp»vïæ¢‹.bçÒNª-è›8^ÍU§ÞŽ9ýWeJB¯JÂS+0$ÕæÍ lGÛABSD¥´dNçÏQНñÂá<þè³<õøI޾t”3ËG OÑú5’ÞÈ­‚À\ß‘v4 #ÚÔÒ6#L±@£ÀW^Á•W\ÉîüÝnªÕ'6Θr6öD5Ôa3Yx:‡|E”N¨TfŤ’Ÿa§˜kòûÙeÏ«/áèó/óÌ ë<ñØ3{ù8¯¾ò +ƒã ‡k¸Räè®ЛӴqˆª<¥q@Û¶ò~UóëeC¡´ÃûkJBT’*™Ö•ÕIÈÕ™ÈtƒF˜RFXS¬ Ü%c]È h#³ PnS™ir„°4Îbè•¥„FuŸ¡Qc~•Irð0Z3©ª‚¤ÁX'@›ô>•Hˆuž¿j«i½'ï/ôús4)àC ê3){5¢ÌX¬“ˆaDÒ„ÐS Ð…ÁÃህ…Et᨜ÃF¤(ŸÍ¨n³çC«cõz¢wòÚ·}ã7ñÙ?ù3‰öL>ƒö¾v k ¯J¼OhíQîLÞ˜4+gÖùôç?Ï7~Ó[·`c’¨Ê÷ƒÿœð?ýKžýÍ¡¼¡¯ðI³¶¾ZQý|¯ÖF–}û¿›Å•ûô/ñußr 6j.êíÉL œ#?ÿÿ‚ÿÿbìöøé?úM~åÿûö]*­ e’Q*K«†,7«\rñeô—æ9» iUÖú}—_NZ¬Ò †‚ñ>áÊ’~äãüÌ¿ÿ 6qçþü—GäÄãOñ£ÿô ¼ ¼øšçÑ/?Fƒ&»ø¡Y4Iѳ=F5œ_Ûàš7qæä©,Ý ›ÃÚ ‹Vzœý1Y-Lb6fµ¹º…uzc˜EAž\ìgU ’ñNª®ºÖÓ,óâ×Ê›Ÿ/n©RbÏ*&M¾÷YbA…gc›iK”Ñ{Jc%"6Fb Cê¶¥M[:v]´‡Ëöíãªë¯å 7Ýľ+®à ·ÝÌ—`çÜvÓkêòåÉYjSn®Q3‡ÿcUÓ” ºC‡+Ì8ÐÊÐÔpêä*Ç^ZåÔÉ^xþ$O>q„#‡ñÊ«¯püô1 5……jÁÍ€¹…@è¯Ñ+7(–m FÖ¢”t¶dmm@¿ß£®ë1$²(,±m FÚL15U¡‘è[“a!J*#crcš´±D$bÀš‚”"Î9ÞÒz™ã”UÉúÆyˆ&GEŸè/V †kÄ6•ÙE"1 Ù±c«kk•Ùp8 ^ɆS¤õ ÚŠÜ™ I!ÑúFäÖ)H¥cŠq2d÷>Ú ±ˆ7Ë”ÄàqÊ•@® kMÚ ‚’–¢ö„X‹©Ù:šI!ÐsQ[™õ¤D¿ïH*ÇðÒàÀêd>Üëb餛n¾ ¢ø@3‡Y7ÿæÉ6¢ÅhEJž˜<ŽEzªäšK®l5‘ …Á£¼ÁÙćé?pýŸ~’Å£-]¶‡ä#¸œqZæçwæ>mâÈÆ æ/{‚&«nº’b áwÞÿ[XªLæ• ¥^Êq Bzàô‘s@Åòò —¸œ”"ìgà×X*.åôé3üÅÿõ—|Ç·ßýcïæSñIJ«9üÂó¼Ù|Š„REL…Süîo}ˆÿþß¾›ù‹H¾åúÛq×Þ Q-¹ë¾Ìι†ó£†³ /×Ë,Ÿ_á™'ž"ss—qõÞƹӯ±žŽaúCæ+‰ÃÇÞ9±ªM×¶öѬÁù…~“þŠ ýoÚ«1½ùLÏ#fÍ0&O×Ó²Úiðáô†°ýu¨móžIÈôsMr¦*m45–Æ{ÚˆmW0WöX\šg÷Eqã-7s×½oä®»ïæÚK÷sÍE—n9ù‰ Sá’„}ºÄHYI•R˜¤²ú'ßyz«{^<V\út–%°†ÑÈsöÌ€å3«<ÿÌy<Êç™gräÈ øÐbÜ)ú šþòYþ‡ùüé÷ñcï»"ÀµT|×ó}|ì—~Wú¬J¡±¬œ; ¶’ÓN”²üæ=qâ‰çPÑÓ¨!FY~÷“ŸæÈÓGèëZI¼,Vóà“Gùè‡>σãèÓqrí9.™»œÏ|êo¸ãën!ÅÄÍ×à¾ïû^žú¿?ÇGþì£|Û·ÿCbðhcùÌgþR´4Q²Ÿ#"ï †Xñ¡–œå¸åò{ø?þìxÃ;îdI9šÂ°º±Æg?w˜øg?ÎâEç þ4—ì\à¾7¾––½+ÒÆsTºaeðyæ–d8؆¡Ê g’1½ÈÏ"ÏJrœlM‚ §Õ\“m¨éŠà ùŒjôXôÉùÆ6$|>^mù0net×XÊ-žÎ¡¾%d Y¸Q` ¡ÂÆ,’PJQû–Æ J¤uŽ…½»Ù{å~n¾óvÞúηsçM·rÇ%WmS#ÅÎ<—¤²Õc’"ëó ’pÚŽSµˆÿÁˆƒ8Ä$aTcåpÀ¦ ’‚RøV±1Ò4‘Ó§V8ôÔqüâQ¾úðS`;Ê, IDAT¼tô/?Nä Î4ìØ)û !¶Ôõ€¥Ë4!ÕèÔ#Ä€G3¨7°V‹)ΡüGœ‡¤²¯Å±¾±Šs%¾­­ >ˆxŸHQã£xµœu’¤h-‘VԹݗ¢Œ¥p¶’ìŒ<à/«j¼)%T I|Þw™òfüýŽÑ¹)¡S*ø„UŒ´È¬6ãÊŧÄ\Q²±6À-‹$ê7+âRØÂQO2ñrü®€U"¨Íy['u6Ö`ŒE©vœãõ¤%¡$k–eITša[3×r€ § Ê… QÊ¡cĆ:FJgIÁ¡Ð’Í¢*µÌ/.ðÀƒr×wgõëP…uâ³D87bÃn°c~ºlX[[Û’ü×-"›vsÁbŒQ*¢?›äqJ£++©s!òÙÃÍâžÓüÌûßÃwüø_rÙþ=¨äù¶w~'û¥‰"&kGš…½mAYT ø–K”J¼ëÛÞÎÏݺƒÑ#/5x%!5¿öG¿Æ_ü§ßE/:vÌóc?öƒ|ôÉo|àyÏ{þ[ªš>‘ÿú{¡Ìú†<ïüoaãµUvíÒøá {z¤'U–Ó/¿†Q›mTœ×ç™ß•ø'?üã´áãN<Ž–ã¸ùÙ½wÄp8Â$Ãy?Â.yJVdAmV9< ‰Ä(t´2M9°H«qšâ,œÇôâÞ-Òâ@MVÓ¦ÁÉùÁ×Êö˜|-Óˆ”îù'ÿÞø¦ R–'$º…W c-± …£‰ ç êш^)I©(F1b£ðM‹ÕÔì®E.½í:n½ën¹ázÞz÷}|Óí÷PØ’!:f•95³§2`S̯‚€ŒºV)#øcþŽl7D©O´ :÷µÂBHøÐÚ6ðø£ >r/ÿÝ<øÀ“œxí$ƒv]¬²¸[ˆFDZ´ó,í`u õ £Ð2Ü0c"½,¼ÆÖ(M…Åû ¦¾6¿/‰j(qÈXð­ Hzl| Aàœm+¨–²*Å9ÝFBŠÄz„UÙƒD@kƒÕ kmÔÔM‹v23°Ùyî½'mˆyÖ *€‘üuWTDŸÆ›«\ÓŠ-EQ Œ%ÅVæ?IኊQÛ`t>D¤6áSÀŽ&x|u&ÃKêà™7>xü@øbm,HÁKë2yúEDîU¤n<•-‰hFm“Õ £ E b¢TƒTcMÁ\ÕÃ× ý^v´r §{2Ÿñ ˜ù>m’¼˜ý¬dmB¢,ç ï‡<õôA¢J˜`&éK¯Ÿ DNk’Ó §7×Ç9GÓ4cýú,iæ,]~7´BÉ'­Iö:½±LNâMâµ_åÒ}»QZ±kï.`(å[”¬ÁºÌçÇG·gϬóOîû)n½úJ>þùŸÁ§Èþdù®ïùn~ÿ¡÷b­ˆšßþåòÇïÿ(Ca #4ŸzäK¤SgøÉïÿ7|øã¿Ž)‹!Ì…]àýüïûÙ_`ÇhšLoŽ_ÿ•ó?¿çÏYže#-Ó+Í8I¡ÙgPîj׫h BSmúQÀ¥@H[óÛ'Oö³†ÔÓ=üŽ4«Ï?]L·¯&Û[“9ôÛaŒÛeµ“HöYó°YrÜYù/ã9JÞ]ÖÈF#¦ˆ±†6Fl¿$M“À×bâpW¸†»o¿ƒ·}ã7qàškØ»°‹¹ù9Šª¤på¦5WkQå–_×YBèrùˆ3x9mŽ€Û6Ãnƈ©Ekˆl’™;Ôùó-Ï\áážçñ¯<Çs‡óêk/±ºzކ³³Aepžal(ÕæDåcŠ‚º‘Ú”<Ñt¯¡ ¢Aù‚^5O 9%êzC°%J* ¢¨q.ÑZ$¬tífl ¹]ÆK·q×u½¦KI_Tßb+ ‚±AMÙ›c°¶AQInŠqŽóëk,í袵Z‘õ*mÛP•õh„-K![* F£F®Û ¨víÆF¼_øJ ×±âÜٳ추¡×‰D.ÎÒ,^´‡pü,iÆs!5Ï,tÆ8O© ‹íáÜÚ*§Oå¿ÿŸ³gÿ." Jüùÿù  GÛRT(£ ÖpÊðâ /IÕhƒÑè# §Oœ¦á:Œ‚›o¼ð,.IÄåñåO>z’Çž|™ç=Ì+ÇŽðò‰ƒÔ¯V´æç’Ç©U>ö‰#|âÏ>ÂH'TÙbŠ5L\'©eKšÆ¢áUE3Z–%óš‰Ó6 }DYE$Û€µ=|ÛÈB”FØÂƒ+¦ÔŒÊar3™…÷˜nW]ÈÜ9« Õ°tNÔ3Ý Ûh3‘)¿9ƒèX—ib°å¹QÒ‚ìÔQ:úºéh0¤ ]D«fþÊK¹âŠ+¸÷Þ{¹öºë¸îúë¹ò¢K¹bßåÌ/ÌS);~žã™Æ865¦Í×”¹i*éÍך+ÓA6•–™FVñè<ËØbõΓ,'oððƒ9ôÔY^:úÏ=÷¯¼ö*+gVŒÎ¡ì\I¸B£tM,k*«ð±æ|]SÒG'‡wBSðIüF™,EÖ,š%RjHÑ㣧f€-ÎÌ¡R!³9µŽ2:Ócí:ºy/ KN"Šeþb'¸bŒc7´\glƒSNŠºŸwÎûq ;è<ëHyV”[®IaŒ£mk¬5ã¶eQ 78'ôÚÑætLòs91\3ç,GÓ¶"ýM‰˜‚PƒÔ QºÂZM2u ÚSºB6e­°…Á…ICÀÁ—¬¬oˆûßt™ñ9g%‡Øigi›FŒƒ:¢LÉh)‹İ‘çA¹â ‰ù¢G@Ú@ÔI®ÅŒE)¬…˜ð’tE, mˆ¥i›=íÁ,H‚bYH¢djh›uR̹EIm¡¼>d¼*åæ¹äŽëxùô—0uÌxj? *µ=tKÝlÆ}u L ¤b'UÏ’Á›†?~ï/cÞû>î½ú€,dÀKMÃ'þã‡é1ÂÆ@2Á®Œ¶eמ%0 ‹aùÉEŸo5_~ø)Ž/k~âþê Ÿa÷Òe¼aï·²º^s~¸*¨ë"Q–CŒk@Àn`BEZZZ°xÇø}ÖÃî=8áç¤ÄÝ&Ñrñ'Ñ__Œ`Œèµ£WRò¶M‡ 6µÅ¨Ìöb2§»ãMu§È Í"¦™M“›‡Í h]â R’œØ™ñBJlê†å„”Óm!¼§®GTð .°Jcó0rÐ hÚ†0Ê=vq‘®â¦Ûná¢ý—qÛ ·°ï²}ÜtàvíÞÅ[]à@³i¦K`¯H2ÍÖ“R™}9σ„Š2LBl7”Wy#Q[˜çÎ yîÐ9Ž;ÃÁ§_á‰Ç_äø«/qêäINŸ>MÝžC¹86#l¹AQER©(ŠV^£ò¨äð t2xß’p‚ÛH¢*ÊA‘BÂê‚ØJµ¤²KܘD;\£¬Jš1Ε&!ƒkTVž˜1Iƹ—\¯M8‡xY§$pÉ6Fu¾~dnTè.4ÌÈæå“еFñQQ·-ÖºL –ˆˆ<¢¯éÏíb0\Ã$±婽 ™cÔK“˜µ¥ réÐòJèw´hLÑè@=J¸j:6D-*5ƒ‘H[-oÊ×Îä#Ö4¶"(C=jX˜ë3hj”Ñ"t) ŠfÐ2ßÛI;Ѝ¦ÁÌU´¡Á•…Çuem!« Û”P± 4†¦^#š!Pc´E'GðM¦f‡€5VÔtIèÄk¾Å.FTJ˜˜Óšõá:¶è£¢"FŹÁ»w°¾6`içEѱ¶±†]\b5œcÉìIøëÉÒ™•´2Üxíõ<ÿ©¿aÎ9g‚™°Y=ómù!Q!í׈¯=º?Ä2ÏýW\שP1ޝj¾å[~„å<ÃÑI”îqòÕšcË/óÕ‡þ†……]üõ_=Á—¿üó|õÐAž?ò–4E¯äÿá7€¦oP®EÛ§âÐ=9©H††"%ƒoycõOšÀZ\hÎ3^¨õ,0ŸDÍN¶öÆ‹ù¸|‡h6ŸSiµ-SeÖlarãØš­¶Uˆj|²²ézÈä*!’s¦RÚÈÍj Jk’ÑÔM©*êÁ"„ÀÀú‹ ì¹ü2ö콘«o¼–kà–7ÜÌu×^Ë•û¯dQ3«2Nczò° ö“ý*oÄÒštqÊ*Ë¥8vûkm6•ŽIsnyÈ©“ç9uj™×^Yå‰'òø#˼zì§NãüÊ¢YG»@¯Hv„ÑC¬q”»Ô$¼D£ RãhšÆê|x?ÃfìnÚž±’Q#›ˆ¶\/â%ô4ͦdÛ­´­´ŸŒp!Ÿ\%·Çãr›H106Ñv–vjGCVc1@´b90¤nÎ’ˆ±•A}2¤¨°ÎQ·5Ž[L$6ç&‚´ˆ›#¥(Š¥V2S³Š•Á²¸ò‡-U¯äÐÓÏrÿÍ÷¿>‡è¡à†ë¯ç/$õu QÕêm­«Y¨-nçäEó< ؾÄd5 °º:d°²Âï}üÞÿSïcïe ®Ü`þâ;¹áºwrvuDbjaÒ ùÂÆqgç®ÄpIv½3è°ƒzÔBûÆŽ£12¨¤QOf>Ôã¶ Šÿ¾ ¢é6Ñ4·i:s{V¶9,jrþðµ’ýfA§‡î“3’É×9)—Ãû”ÜX&/.Z[|F{´Áƒ³¬‡Vb:Û€*,‹ó‹ì¾ør.½b?7^_ÿæ¯çºk¯å¶ko¢Ìãb?éEÉ;²ø$äÄ•”&*EÑíIN»ØB¦Ž7yÓ FÞP6¿“Õun 9fÇF·ýBÈ”`¥Çd uʯ9ˆ¡MGv&>m iZ,¥¡(4)‰Œµ‹ElˆA(å›Q´1* WP· DäïØÎ«Hxœë‹,8¿ÿ65´*`”C+0ÎQ· “gWïò^A¥”F»(æ@< ©l!Ù…µ+$1nˆÑ°ûΤ*‹¤¨z%Ãõ5 [`Š‚Æ·(­‰Jf#M ̤œ[$Uha+i[á±Ú¢´%zsÎ)*Wpvm]@œ!¸ìcm> B‹Ñ‹¡Ѷ Ðefvý݃_à'~èÝY|žï×K¤-! œ¬²çÒÝì,–ÐIÂz:ÜB”ÀÙÉæÊ6UVw³Lf:w1›Æèq)*’Çî$&51$©ñÀ®S†löô–ÌïÉ$9ò)mš{49|ž>áOþþµä³³ŒrÓÆ=­5m݈º¨sv§4n‰MçotnRÄ)M© ª ‘v¡2*AÏ CKrùçÚÂ9¢÷h¥)¬ÃÇ@P ­¡ÊYÞÃuÝ J‹ïsû×ÝÍ­÷ÞË­÷ÞÅÛoz#—d¥¢¿õüŸ&ЛC2&‚ØÇ›DR>Wâ6–tȘÐ:‡ï&•Ñærò5ãˆâ$7|Ô$4)ÀÙ3pè©ùêCÏñå/<Ρƒ/òò«¯Ñ¤ó8ë©z]¼*NaZP‘Û‰±lRÚlÍ1!C!ŽsÄ»J|Rì*…ÉkEûˆsvËáɧHÊj¦Ä4^&åÖ“ƒçîíž7ji±èîpå1«ªb0H„-HeáœÌ9ò½UMÓŒ•UÝÐ;¤Néfiêš|‰µÛª±´VƒÜÛZ'tÔôû}Ο?O¿ßgX{Œuc¥–ÑšÂ8|fB5±FY™aøº¡t­‡ªp´¾ÆjE=EYä–ƒ)ijYJ›‰ t¤®(0º -C¿ê3X_£rm †!*IÁ£b@¥ˆëÏ¡M¢iF²Þä%ÂØ‚– Œ3S€÷¥Ùµ´“×N½Âüܾi ­§¿°ˆ÷²áWUÁ`mk­D7 ½¹>u#˜VŠ^Õcc°ÆÜÜÜfÕ§"}W½"ä¨Ûápªr˜aÀ [¬±EE<ÃÕ5ú½±eaç"*@Yô Fì¾äV—Oa‹Ëã<ð©‡qÝÉêõÓÂ’ šDd®ßGÑGûFn¤‹<­“ïÊÈiùî4F|KzÞÄ¿}ïÜ|ÌÉÍ Ž³°Ó8‰n:[z’µÔ-ÓRÒiù¬|î¿æ:ù~'[VÞ{Œ³¢ø12Èí¤‡ã÷ª„ઔBåŸUÆâc &L¢TÂaª£'9ñlŒFÌ•=SPG4eIÓzƒ¡têZO±4Ïu÷ÜÎmoº—·}ó[Ù³¸ƒ›ö]Ée »pÚ¡´Ræ+uepÊ!55XF… æÓ$eesHrêÕ*Šu*:ÐRQhsþµ!9“-xÝc­8}2ðØWžçÁ/=ËóϼƓO<Ï©å×8¿~Eƒq#Œe5¤#ª=Jybl0N›Më…½dôTûOb „‰l‘œ#¿%Ó„íñ¶“üɃQ÷¸]Õ Õ•–Ǹ޺ǟ¼ÞÆ1³ùßNrÁäK%œ›ßÁV©õä5ç'Ò½÷ÛÚ•Î9’oÇ•s.›eC#ev¤ l-•óº[  ¬s„X“h Iã“–JF&ŠøÆ#TPðQâ¬c—ažÞÔ8¥<"I´AªáÒ5-/ÒäB–ˆ:-†@’‘Ö\J`:zn‹2 Ô<Þ·ã5%V­5ƒaKѯƇ9g5>6²‰'(Š’ ôxÎ+ß=¢KÒ.-Ëž¼>­ÅÕTS•s2‰ k5¡(i|Ä7C9Œ´Cbš:$ñzXÍ`°ÆÒÒ¼’–zY–ÔmKiŽÕ –– †’5?¬)mEÓ$Î?“?ˆ×ÊD3ÉKe©\1bÑFprU[{Ój3ÓyšYt!Ótº4ùEv7ÆäyòßLû'f õgý|ú9gù!.ä•™õ¶UJ3<¦[K6ÈÉ­¥E¨FYœÒ¸ÂP[Åp0Ä×÷ÙÉ 7Ú»n<Àmo| ßòoåö7ÜÌžÞ»–˜ß³‹Ýs‹9'b•“«ºÍr7¹ƒÚ½Ž™ÆÀdE\ @©@R´C¥˜u÷“å››ïV–á¹gÎðàŸæ‘_âùÃÇ9»ò*kgW¨ÓIœ (3„Øbz§‰VSí*ðu’¬-ž“;4í…˜FfLƹÎj[MCö¦UIÓ9¢¾N¶Ñ&˜éУjL|Õ謟\X 稽gšõª•E¸¸x'—]³ŸwÜÿf.Þ»—7Þq'sss\¹ÿ vîØÁ|Õc©ìo¾¯Üªé<*‚W2”½ŠD-ûIÇ’4Ýè-mžTvݪiÎU ¹Ÿ-ÿ²3`mlhŽ<»Â¡§ðìã+<þÌ^xñY†+ÇXYÑøA @­b‹!ÚÔ"WPyœÖã¶N`F!zŒ•Á)´-={´A['ÞZ[a…f<®£Í'‡Ï×p²â6AÃ,ÃܤÑrWl–ð¤Ël—^»/àÝuصs'«—ÉP¬äÛq[M+…›yô²èËeÁO¼‡Éö›Ënç”’p˜H[¤âL™H¥Í(ö¢\3JÑæÇwÎåC†Å1ß)¥ ±!÷ePè˜Ï*þvl ‘¢Ê ¹}­dÃP"ÃöQ¥¥-Öëô*©ªš¶‰>(¬Ó$-²°÷zmë)œ#a29 >ÞGLöaéŒQ'i ]B R‰%Cë}€cs³ R/§œI/‰©·” HYYakÙŒ—:c奭hm ‰Ó«­§nsUŸ…søQdii‰Á Z)Fà slÔ#вdä[ Ó£2ÃÁ:½Ò2ÔÅNίé÷÷@êm1¾¾Nò@är‰I‚rÊ‹l¬-‹É)e¹eŒÛ6ŒIuÇ,Wútõ1B5í6•²s„ÃϽȩS˼zì5†Ãe”€j1Õ LY¡T‹N#b•ÐÈ©W+!ÑԢƑ¾ƒDÙC€(ïQEÙ|+<¡ÑÆÇs¥ÛäkÔMT£i,ÙܼVD6­»¼‰H·‘L;ì»Aêt›u–‘vRQ×™1ÕT<žsÄÐ%ÂÙimÐ IDATJ.ÄT«Ôt‚ Ò¶\—Í–ÊDôï˜;§ðm‹bëóvs ʊϧk]ïS%i…$U1%F1ÒÝK!H›BÆ–Rðm2Ò]š!úŒùˆX-íØñœOIÕÔ«J¢oDwߤIFÑâpe¬Ñ¢ê ‘ä[|ðTE•!Žò>Œ`£Ö†Œ²Do¨Cƒ-¬ÚR6!&ÑÐÔ”®”øeñÁÓ›ëÑ6 FËG1^Úýkœ#Ÿ±+ P× ýy‰•‡ôŠ“QO  õh›ß›Ò„¤Q¦Ìêx¨ª9™·Ä J¬u¤á:؈-Kêºe÷Å ¬¬®PŠþ¼b1ö97<Å%Å寿¹]ELì¿á:½|f³w?¾Ñ6Ív³NáÓ¾„i ë4{ik‹*oŒÉVÑt¬ê,Òë4Hp[HRF<ø°e!¿ça°J‘àƒèqFJnBd¤äßh %Zõ‘–ŨÞ`aNkêQ`qa¥Ý»¨z=.½òrîºïn»ùî¸å6ö]¼—‹ú;¶`ÀÉdY3ùÚ’7¸yAñºÏ;æÏÄ(ŸMfüÝ©Ž®ä†Jh“#}Ú(–OŽXY>Ç«'68zø»æ…N+í¸ ;ÚJŽÎðÏ0NÚ;>Fúe>[7Îé|UV9„°ZòÊ#š˜M„]•¦\A "<(lž‘ú€)¬DÚFCl¢è:´/}¨ :¡-DZJ+\+W–Œ†œ1=Ú(|Š„Ð’´Ém Š>P8Ǩ‘ÊÄ•JÉìÇ•…H¿µ è”(KÕ£š~ÕLJ(!f­Ìw˲(_ÀÇÄ|ŽÒi†ƒ5ææç„2ì½þ"ÆB¯\bu¸Ê%K¯GH'¼I‰ë¯»žƒÿõ‹ Q¬Æ'¦4¡„RôGL §¥Œ³*’mf³©ÂäM=ÙWžîeÏžwã¬Í2¢'ø£e!”Ÿ•4 …É­»Ð2´‘……yŠ;ßx×Þz®WqÿwS†|ëÛßÁÞù[СãþdŽO›< q¡«’fdk¨„ŠNzÂ:ºU É“pÒr@±öàEãŽüw ÃÕš•ó#ÖV9¼ÌsO¿Â¿À“OòâÑgiš³ÀŠó•5¢*=è†PxvìÌ…h&"M”*Ä„IZrí3†B› g­O‹¦ý3Ó³§ÉÃÀä0{–lúB•Á¤¸bòz™FÏjµNWº³°ôÓŠ¾nÎÑÜgÊ®Õf†ºo[™+nA…0î¥OV.]ÛÓ9·¥½³H£iü&&$…-d™—¥2 Lm{mãÃ\–wj¾ñf ÓõüßÅ$ûÿ±÷æñ–eï÷ÖÚÙOÍsjžR•ªJIaÈepQA•¡q"bk;¶-÷¶Ã½ŠvliT…VÑ(¨„È@ÈäÔ9{X{í½ßç}~Ïo(ŒQ…É„:bÿž!]¾˜Ì7¼ÇE6žq6ä‘'aÞ’4S×Ãx‡Ô Ö©ÊÙ`³ê\è΄` ¹t¯«,ÏæS™b}1_‚f:F·Û¡ÑHR“;BÑPa·_Ðí½øD“E/ËHZ!ÝQKM¿×G« °5Þ“6RAÞï‡YH>J¶hjèö-“ÓÌ/Ì!%˜<§‘¦dyN{lœ,ë!âæ&3ÓðÈD#ó™€íæŒ5ñ¶‡²tútr˧Osï_b߯CÏÌ"\ pØ·/¸Qkw"Åb&– ëœ`Ë__ÕŽ¼lÚ°d·,p¨Ú (•¡guX:²@Euh?Ëh(…IiÀØ›/m5h®›áð‰«Ø¹c[Öoâ•/þ:žsèè sƒNÀáe`äû,GXWÑøM„:ø4…Wû˜i.c¸”dÖÐ(¼™ÙW“E!DÎ5·˜¼ÏRWÑ]Ìyà¾9>ë|ú“Oñ•‡æ‘'ÆfHÄYD’‘Ž{Ò¦Ôa\ö:K gh¯•ì>x„/ÜzGPwš R8rÓ¶ÞEÖƒ :`NH%†™Ýñ½*˜sUÂBв %Õ™súeþN~d@=0Õ+ÍÊÔìÂ÷«.pªŽøP”—7:uy'£ôÞ¡B:ÏóQÕÔa ‹"CÈk@Ñšp£Ñ —õGæ%ÕçíúÅ@Ù_Ü&\›$,¬5t¨íù#±«±%¨¬‘$!‘Õ†9˜òŠ,æ1c(­Hµ×^J›Á ¾è„’H6Öà¥@kgVÁå¢çúÁÝ=‹Ö?2¡ƒ‘#&'÷ic“»v—õqÖ‘¦,4tŠQ½nI Iˆá5ÒV;dÍU24tJ?ËHš­ À7&„à¶øþJ, ©ƒÏ˜s( ßKÝ@kÉâBŸ$iའz)i6[ô²© Ì=c3HÂóÌLϰ¸¸ˆ±9ýwË}ÜöÅûøÊ]wqþÉ'É;]ºZ’4z$­9’Fޤ‹o´hmÌ w+*¿Ÿ+-ÚUÃÇ•º—*dY.(Å¡è@Ë/ŠG£Ñ ÓéŒÌ:ê`¡j§ñt©Œ[Ô@§åùðóC¤Š*f T­ôËdƈžª¬2¸a&ºð4XT„ s%èÔ¢T;ò<§ÑhŒ¨ÑƒÕzx/“$‰Uб9Î1a!ôÞáb SÈy ä!Ü€m•¦)Ýnï]˜3èÓôz=ÚIc-­V ï¹”H'Cž† VîaAެ5ï:0BœòXí‘f¸9l4äyŸ±±1–:´ÆxŠˆŽ› f³lÜãÇpbb‚ÇŸ8ÍìôLèXº9rb² åÂxrgIô°x(¥ñV’›Âç*¤Šø5›M‚ñ©æç—HtP¯›~Ÿf»…õá<ž|âQ6mÙL.Á˜Œ†ódý“\ºtvk’,ï¡Tè²NŸ?Kß-âÛ=¾ë-oáy/üú­í3LJGá…àÔûè CK8lž#¤*1±ŠYEiQËf*G_†Œ8z>§™4‘YNê‹©ƒÜÒPIH¹d¯úœ¦i µé’´šd½ÆXºNø2¤ŠÆÌ$GŽãСƒ½ò×^}ŠÛ® ™¤ ¤c"mãEKU»@ˆ‚­$ Ve Ã&¯ŒuhY@ ¥Bg!c°'‹ÐAÀöƒT! ƒ= ŸÃ¥K‚[o½›Ûþî"_üÜ|”õ³kY?=C³Ù$IS$2ˆ¢µˆ»ú´ÀŸ¬!GüdF0v_Xo„O±,†C^€O‚»©*–å4è¨DvŽáYÊý÷u¹ûžGyè¾G¹í¶»ùò=óÔ¹ótí%D>O"{¨ÔÒu—èúËô:çY·v#:k¢Ò³»7°aç&vì<ÀU;óÁÿ9§?÷%°ò>?zÓMüø½½¨N÷—xïMïaÖ€ö‚™É©A‚aÛÁŸÿásrÇ^´óô%$R& ŠâÜä›t¥’+®*ø¬veË•:¸j¥îc™AeÍ̬ aÕ‰<«Yèå¢T ·ËÐi±S/?NÝà<ˆé*ç=¾êܨ«p]ñßn+CjÕλ¯†ëb“ƒžeÈ0+_§"ףЅ<&Ò—mžCœŠ·³±›qv&bGáB*¤°#–ÁÅ U:qÙDŠkG(ÆÆgDLk-ÎGhÎé{š$ô{=’˜ïãm`#iN„‚Èá|Z­„¬ë±6¼î$ yõ½^ërRÙÀ¹"L-|¡ .Ò²!Èó^ xA³)éæ—i·0¹g6ò~†)$‰jà|(I’õÂ|£Ùl°Ø]¾i2°Ö²~‡´• µ¦ÙR,v/Ñl¶@gXŸÓ“!ÒA[zíŸjÓK±ätú—¸°˜ñø09Ýàð‘½\wõK8yâ({vífíôÚããŒéV, Ã.¯ˆ{ö#B¯gT"áPÈ”¢Cd~˜ý Gá§2dQþ2•¿ôEAš¦(Ú>ç%N»°l¤ƒ¼ÃìÎm\yü(mÝ`÷Wpèà!N;ÎìÌ,“ÓSÌLNѪ&PÄ!#¼$]éù«ÜE¿¦B)‚’Ú *ü¿* ™ÇFðˆA{錑3ßà¡ÎóÐ#·sÏóȃsÜ}ï9ž8ý0½Å'±æ"FYŒ2xץן™3=3êuÈDÆBžqà 7²çšçrÅÁ#lß°›o}õ+X›,réÒeîøËϲuãÖAøÐ̓k8\¾ÈÜ…%¾ãõß>Ð<8/xÝ׿’÷¼ñ-¨Ùu\¼pµkÖºq¬À'6lá[~â]|ôg5"óƒ<ÇëÐm”±õ"“º CUI eÊuUDZàUaËòPºn>Q%\Tguš¢ê,®¼P—…ªe·‚jÁPµó…(¼‹ °‹°ÆÐUW,#‰”¯S9¼« ¿ZkzhMìîl­E”#Õ‚Y6aÔÁ2;Øê[çÁwÔCÒh„´Â,&ÊÑ 1¦e1Óщ&Ï Öz¡Ã ¤B&‹ŒQ·3d¢¹è§W ¬¥”ÁWé0[WAsV\£4MèõúQÓ‘Ç÷FG˜ŠN"tÇrMôx,$çsÒ$‰Ú‹&S–ç$:l*„¤(TßF ² k fsÀ¬Ó¡uPÌ;<ãiŠK¬Ô{‡Òš–›F[MŠ&m6ÉèàsÇO>M—]ûw3½a/¹ú…ìÛ¹›½Ûw3;³Ž ³›(‡(æ—»¬é¢Üý-ð3  ¤9=ØQ´Ûml¶ñÑ\:~!>ÆÜ½±a¦ÍÖõ[q® _ƒ~×’çš±t5¦Ø¹cÇ`/â…gíìZš[7Óïç$ZãòŠ<Ì]^âñ§:\:w‰‡ºÄý<Ńw>É=wÝÁÜå œ?CSwIèÑmgL6 ã‘Ú°(æ™k1¶u†éÍ qœ¾ÿa²ósL´&èwz4’&—.œçÜãgPM‰up9ëò¾w½Õï1Öœ‰ XG.= øÖ7¼Ž_}ß»øáwÿŸ û›`‘¡Ãj¬C[‰ï~ðgßÊ#Q|ú3\¿k=^ðÎïÿ©ŸcLµp²…Séàó—º\¹fœ–ÈùÜGþ‘~š£Eƒ® ‘Š`Ý ¥ø •qå\‹•¨ºuåÂd°4V¾mAx¨ÂYuÌ«òÂ\>·òl£€wÊ¡:ƒ©BOå}±c¯Ò^‹Û¯œï>€ët`,gÑixíRɘ¯è§n0 Á,S²,$[öû}„T1_„ ÞMÎÚbV¨ÏsšÍfŒ£ÕMJ¡ƒqH2cP^¤)žâõ])u¤öêø:Æt¢Ñ¥AT„ óclÐxØv5×]u‚3›ƒÍþ`6„d|ñÙ‹°œ âø$–oÖëþ!žî>+ÿò4ñ>²5Ãàx×®Ý|*Ïꉱ6ø*[³ûd˜@VýâF /ÑMî¿ÿA޾àèˆKѵHÌÒ!ˆ^>RE!”éÀ7ÉMàËÛLÐïeVöÑ)Ì-œGNÌѰ©š0>‰÷†wüèÛ9pÃõß¹ŸC3›F®Ëÿâc¼ño¿‰×¿ê-Œ¯W¤>Á ‡t–¾÷Þ÷Ê×óKâí´…àÂù üèM7‡Râ`¥4üÂÏü<¯ùÛç2¦`º|­„‚…Ì1ÞÐܼ’„M[Öá¥âá3=vm)xJJœ¼53S(ÿr÷}ÜþÿçH¬½b+—ÉÉ¡M»Í3^ÿò·pûÝAàÈ„¢Áp¨Y¸d9¿\q]ç U†³ÊöäU(³j‰^†ˆV2º¬£ôV£ mÕ‰N«–:ÕMO]Ñ)¦:a•\r.(²Eö|Ù`´J,(ã,ËsÂÂa·êûV̪³•bPÄ*ŒW ¯§(Ÿ¥¢X²ÂQJ‘Ù¥5HãÅÚ’Ûoˆ½UR™<ªæ‹œ !Ì—eÝAÚ PaWé¬d¦€¤)5-4½~‡Éf›N£ÐÒäËôcÅ!Pg‡¶."BNYn1YNªô—z$“ãê#štMŽ– µÁ™.‹vž¥®f¾³H{¬Í¾Ã'¸úê«yÑ‹^ȃÙ3¹e°ìcH¬3 '†Ä Iˆþ8?=Wn Bé°Ù_Ýuû™cçãMeì–®¸âŠyéãÎôË^þ ×*\½Ç¸¸¸HÉc=AørŠ@EÆ•ôä:ó’;nyŠ{n˜Û?šÏßöOžy‚ ‘ªs z4ۆ愠ß;C3IÉÓ.óͳ@F2ÑÆJE[5ñÆ2;½Ï}þ LMΠTÂG>ñ×¼þ•ßÌ[Þöv~âÞGâ£AŸÉAéÚ~Ñt”±É&íà×Á—›ãÏÿïÙ6=Ë·¿í…8Û#M›¬Ù¶i~ÞãèÑ#()xâüí´ÁØ„ã%;wáI®Ú“q¸oøâC8y`M ozïÓl%Ì!øÓOþ=7}çKc7'èv2~ô¦÷‘Š0øûÂW¾Äþã[9wî"3kgÀ:¾ë‡ÞÉûßú\6lŸ3s™Gðf¾õ/Àj¹1P“çRg SçZ¼Òìb%ƒÊjîJµ0TW,ÆÅÏ|TeQ•ógÊ‹|™ÚZW WòN[I\ÞÝ—tU—Özdá¯R{GÕäj P/ΧèÆÊ·$ˆ*¥T,l$aªçÃÌn¹3¼®Âž½è@ VZùú _‡Œ¾Z*–ÐHZdYF£Ñ öù2d¸çN t˜GH©£]¼BxM« ;gBG—$i|\O’¦ ¬‡ÔÁì°pè רÅ.cX€ó(#0Αê$Ð}T°j¦) &f[œ¿0‡ržG½Z°~óƶl䯼‚>÷zNž8Îx21è">‰B˨ïòèôh`zÅëûä£pçíó™>Ç—n¿Ó?Á“=Á9q´ÓC72d;G1Sš‰¦×¼Dwát•Ù6ƒÏ[ôz 4DÂgøíßþ^ùªW’4‰mðÍ?ùƒüý‡>LÿÌEî½óf'§Ñ~c.l+P½„ ¬±Nòå‡.ðø¿žçßò(w~å_¹íóL*Ì|»>ÁzÉ{é¿òg¿ýqÒÞ¯{Ë£pß‹œaÝÔßøêobjz ƒãO?úwœ¸òJ®½z^ÁÆœbñæ{XÓjÇ/¼dîÜYN<ûw­ã¿ÿ§ÿ„õ†¿ÿÌ}$yI‚5=æ/_â‡ßõC %Ò;¾ï^Å[_ýð`„EjÅMßûV~ñ?¾ 'ûàòà ±8OÒ^ä¦zßòÚ;P- Z&ßAøVž!—)ÈëÄ~åAjÝÎz¥øÝê]îÊIŒÕa|yÖQ¥îV‹BÝÂ^¶G©vgç"¤¡'‚¨ÏûHˆCÍâõ÷qK°•$Ø<ìÜU!D»t)äÀÉ@D†EˆQ .(ÝDäš<,Ј‚ÚéÆƒw9i3Åš>R6*z1&K´Yža}XÐñ­BR%E¯™ IDAT •&ØtÞ…Ú8šÍ6ßþ¾=|Yc¦À×ý×ó×øvlÙšuÓ‘Þ(2Ät"ããca7.,—,W8cmvíßÄÆ}›Y”3á3¦¦›Á®Ú{~ò=o禷|'{¶oC%`D››?ý”wÌÍÍñ®wÝK’äûkûʃ<ïä€÷¼ÿ½?ÁÛ>ù-ä‰ð‹Çš’?û“ðîw"ï"›)ú¡ó²ÿãº0ó`ú9hËÄdøÈä@ÔΟv¬Ý걮˸l1»víæx€é€ÞüŒï‘9ÏwçpèèaÏß~3ãíµx"¥_Ûu”gUk‘ª¢»ÎgªJ½-/ðÕ~™žZOT»›:xõùëŠH•–ì£Îi0ˆôeGÙ|‘”Q þë`6[ ­ªÃÀ"dé1ZPÃ}º½JJ’DÅ€®²F$PleÚˆnÅÃÎlDYî;gGìãÓ4¥×ëEXU‚¤Ä@üh³ë+OÇ‚$•ó %I…’˜‹1²=¼tqö7Žãà±Ý9\o?¹ãû 3úÒ’¸" UÒxæóó\xòQlÏrîò£l;°ƒµ‡ÖòœWsõU'سuc“3¬›ša"m"QØÂBíëÆ¢<‘^aLQó“XyQ-âk°l?³¬LJÇÁµ;ãM¥Þ ¼°FDwX`ùn³µ‚Ë,wî&É>MAu‘ÒðÔ…‹üÈ»”×}Ûë¸bÏ^„ÒÜ~ß—øûQ>üӿ´ˆ¾û"g~¡ËÇÿòˆ.ãúox9û¿…Ô)B ÓÙ¼ |ú—^{y§Ës_öaˆ­H”7,Ì/‚õL¶C‘>afÜóDçËlhŒ#œÖͬg<ñôeFâ{eïæM47nFxCW䨞æçþèwi5X8†#G® ò ömäŠ#;0R`€W_u o!§/G(p|èCæÇÞýVD³(þùæóº×<Q(ArÉ÷¿å­©±ä|ñÞ§øúÞŒZœ¥—ãÖÛ>NcÂsû]·1‘NóS?öËô..Zn»ûsŒ;Œšçc÷Ç|ä¯>BÚlàEHs=‡ªª²Ëõª™`Ýà»Ú<[³¬ ³ª+2ejmùqª– ÕÇ])ße$¨ÉÕÏ}ªaaaÐ,— áG~&˜\žß»eŠùª&@L!ÿ<8cÆzLØ+ß>I”Rö=B® eÛöòû”$ 6w8ë1yðj+¶Þ"î´—ë»MÙF»]è¸\`rYk\•5ú‘â,‚=‰Nyï* Õ㈾a±»ÀåK1X˜m°}Ç6ØÇ©kŽslç ¶mÙÂÚµkغi ZÃ×é‚_†ð‰q ª ã¿6«ø×ðxÆ&0±a âB'šûZRÔ- UÙÉ á ÎJº¤ôûÌRh._^â/þüã¼êÕ/'wv  zÑ®S\ûÎSøÉ5üÑÿc:EÍ©“'HÁᶯà›_ûüå¯ýSÉ8Ε¼ˆXïÙ56ÍøÁý|÷;~çàìå%ÖÌ´ñ^²0¿xÆÒœEŠ í64&@Žï;X°ôDJ#IÃŽÔ8æ=ÿrË—9yt/“³’~Óñ׿ò±æüwŽzSãa·ç=¿õ ?l¸-¡Ý°óy'Q™*ñôûœ~ð!ü¨<ø•{Ù4;ƒýñÔé§xã·þŸúÄ}œ>s™üæïç gn¡åfyÎÉëXr-”žgb¼Ï?~æoù ‘¤­>ý¼‡µ]”€¤•bEŽs"N½´ô+ ´Ë t¾*›cÊš¶. ¾ 3"±"<©j»^^ÔË ~y3° ©@pÕyIÝßîx­¾.‹¦ú8Å9$i0T¥!ºbÙu*›=bBzLîÁä¢sòÁònMŒêb”’#ï R@ˆ• >\!&ÖÅÌð yÆÚÁkLt|?´Žy7b¤´³ny–éÏÊ)r,}Óa±»€’š~žÓ×l\»†»¶³kß>޼’íWìàÀXhdÍ·…VÎÎa1ƒáµ‹ŸS9ÂÅâÕ`^ñl©$ú™|r“ÓSÌŸ_À 7PR°‚Z¸*š &d Ò©ÀÞ°!ÜE9E?ëò¿ù«¼êÕ/›ƒL¸çKçYÛcã ø_oúAþö¿~tž¹Kùà;Ø G_*RgxíÉçñ¦“ø9ªw¥ë]óÜôÞ÷ðáŸÿ•a¡íB§#¸çާ˜[èñ‡û+p-Þû®_çò9Ë÷Ÿ£!'xþó_Ì-U“±±ó$zî¢Ä«ÚSœì£=XßX£ñÎb|-Sšñàmd-ÎŽ!epÞÒ i ¬ê»Êfzº]x]Á©ƒ¼†EgTXrW;“òâ_U©W!¯2,…>3@œ-ÿ-³£ðå$ÉÀ‚³ÞEþU)¥ÖÀ¿0H!k=¾Šç,6aeÑcÈg7^[­V„åüˆãp±Ø‹è´kƒ•‰Š¶CÎZðnà[e]Ž“*@ø¢ K¬ÉM°ñŠ<·»k¬¤”ã NQ¡ÅÇörú+2äh¯h¬Iؼu3`ÿ¡ý\yåA޾’ÓW JK]1ÂCFN5^ÄlV¼‹QPòí#nkEÐÇøÿYÕ„<£ ÈÚ5k¸tßCx<™”¤~¨PRh½u;×BáZOO"ƒƒj³‘p~a‘7¼áÍ!)N%¼õ}¿ËoýüÿÍ.6r÷üŸ T“Ë.'ö]Ãçîûk&&Ù¾s;Þ;¬æŽ/æyG7Ð^ñÚ×qËo}$bø ´dÑx¾øàž¿#?õÎAyîøƒÿßöâkc¢Y4=ÔáÙ‰.O.zÞýÞ·°fb ÝìÓ>0Éææ&î¼ùlüägX¥¹¸ø3ëã+O=?° ZŒJ9zü^,¡ä/û†ŸáSÿ ¹¿Èë^ñ\~å?Åb·‹|¨Á=w9ÞôÚÿÆïú2>ôYf§g¸æÄבû>í‰>33·ßûWHÆ‹´è`[ï@ÊëÞ»…'siCçå}Å€œG9 .DÁŽzq7'¢w»r9¢ Õy¡=I<5º‹wBf*|™Šç-h¥u¦‹åÁxuV¢” 9eߪ¸»wΡ´Zqì­Ã;?X„ nº5Œ/V;8W°DëlÉp,ÿÂî}D9^,“J T¤Æ¼˜‹”­Ú¥TÑ!whä‹'.Î:Õq1•Šaâ|ð}Ê ƒˆ‰{0Öèèò u¨2&vX–º‹äÆà›‚ɱI&¶­gÏý<ÿøa®»îöí=ÄÖ™íXr‹E{êËו‚Œ€€4–Áb(ʱ‚tB./Ï2èêÿdÇ{ùò?ÝŠ …/¨®¥¢:,­rÿ«ù!ý¥œw~ï;h·šà]:Ço½ÿÝlØ4ÉX?áêÝoäñËs,ÙKŒµÎ!RÏõ×^?$’¿ú—ÏqûÇ>Ï G¾'oxÝøø/ÿk[_Ú4QÜò¯wð‚ý›Ø>;‰09æ¸xßýd´Ðä&¤Zí`].œcËøç.=Ê,àÈÈÑüÓ-·ñ’kÂóKׯ*X˜{§rÄÂEúÝ '¿ñKÈÅ3=¸kŽ~òùäÿþk×µp6ãÓ·Ü̾7’yOc¼KÚìó77ä²Ñ§cú4ÖHÛ&Ï2$ž^¿w Câ##Ç©`e b¡¶µ xU×P5û+‹òª4Úêâl]€B¨ ̫•:Ôò?ìn ÈÉמòyÖmTêž³üZ•RH’Ë󄺠²2Wç&\.¦ÕÙMqäyr¨)ŠGˆ=Îm ‚Ö“»à¬+ĻĢˆô[cL0FD£”œKªu˜Cˆ 6½ B54JhªOŽÓŽC»4 Ö…çc(Ù³te_- pàðA>žËr¨@È ð+.JUx£Œ-·Ó1ž{Í »ÀûïÌ–ú’3r‰qû­™Â,â,d—o{ça}þýäû‘æC—ø/?óýmyéñk`f Ù‹´€ßûÍqÓ_ŠATõ¹¯<Èîõ›IUX./.Ðh¶âæ¥ÄÑB`l?†(I²ž!MÂLCj¸í¶û8ûà„ëÐö;¸z÷wrï#q‰AäOq“m09n09¦Úy¶Hž;2¹€mYš A·»€í§ôH‘V#ROš4qyè"„ĘÂz#G*.br„U*YöÞUó4ªs‡jÂßJƒåò{ê‹i‰ þhŶìÍT§§¨šåð%Gƒ¡ê¼j×^…©Ê.·åót>¤IŠh¯Ÿ›|£¬ìÑU~Ì• ¥ P5Ȭ É¥º°YW#³™Â›*/%ªjkB)µ3¥ª>Fºï(²<§¡U´ì GHÓåsœM…Ò’…î:Ýô=‹ ÅÖÛyÞË¿Ž«N]Í«ox>7mb¼5D‘P‰öáUd’Éù#¼wÁpÔªc … †¦^¨´«Ç³¬€xïY¿~=6ï#tÈÿõÎ4‹|æÛ-éGqéŠõ‰…ÎRŽq&„,Í´¡ J‚oÎs©1ÉÛßó>^ò’Wðëò‡|ô}¿Ì ^úBr<ÒY~ÿý6;£iŒÃ1…ç5oúþù×ÿ">[Bßyë­ø^•¦ àÇñ¿ñ†k¾ aú(­Xè³7¤ 4©€…9ÉÝáÜýî¼ù‹Üq÷Ü|×?1=±méIrÚäE„´8—³ÐžcéÒßNÎÓKrúùeD›7ÃÐ8tâ1yŽT ¬7¤É4Þ6Mšô±yŠë{„ZBËf¦£8!Rð)ƒAYìœ)uùhDMž|5 ¼üûjYÞ© €`0¹!n°§x:­GÄT1‚H0Dý–ŸËEM©8øŸ³ò~%ú°‹Ø½/¥ì•SùÊNÒåÜòc˜<Â5†¼’#uy†QtEQð‚{’Âü¯Z”ò<@`ιAå¨=| 9´*i¤ çAy´Ò´[cdYŸÅÅEp„!y2+9vòŽæä Ïçúã'Ø:µžvÒB© i2ƒ|¥“ pجêñ¨Hm–1î@ä £¼(¡Cšé23§ÕãYU@ŒÚº=°ž´ÄeøŠ½¨­¸¡V±Ÿœn Ç[é=—/ pŒ7\³g?éŽ-,¹ÄÜéÖ\Ž ’àýç¥/UØÕ‹U‚ããH<–MR¼|Ïë¿‹OÿæGÉ€Ôzr%!Š[oû2§ž{Œ¹¾ã®¿ø'¸úåÜû…%þésÿÊgþø3Lµð‹ÿùøÉ›þ„…ÞμÔbÄZâkYÎ<ªŠåê:¹•â{W‚œêô Åì z»:±zߕγx¼²­E•9Uµü¨f‡W}¦ª ªêßëæ,¾Äx*´ 8Çû¶¢°2ÑryžÇ`ÞÙRI’ÐívùeÊmù<ŠYŲ,¡º8˜(ulÅuÐi2°å.la¼&“8¬·(!P"ˆÜ:.Pu½ ªD a¸Àäšgi©Gž‡kÓœm0µeGŽ^Éá#‡Ø`/7bëæMlZ¿Ž1=6XîóÐ{„ð´b'ˆŽU(iµ€|U1,X“kÆkL@×"­«]ªêßá·dà=Þ„TLw¯àOï#œzý.¼8ÄŠxO. ^ñïåÿèÃ,äétæ’çÄÕ/æÌ™ ¬ƒ™d'¿ŒGÎÌs×ý·bò³¸¾ ož"mÌ1>›ÐÍ «þ2=l ™kI׿40X J'X'V!•lðòEš[ðèYÉ®¥Š…?©Ê0ª¦ñÕ™þUçåE°jÒWeH aQÃ*œUÅü«Œ²‡R]6ÈJ óòíªÅi°ÓðO1?©:Ü:r10”¨èzP½žEìjñ"±/ÏB7Xö±*+Þ«sºA¥, !¥ëh¬ VÜ*˜†z)ñKŒ ä–è6¨$ˆIàÝÞ‡¿…­ê"]eE-§Æê˜@§¶à+%õÕ9ÖŽt ñöåN¢¼P/ó„‚‘ §ê`½ÚÏ©ª*ê§dˆv­Ùƹpû<Ïñ¶] Nè0« #ŒSÈð¬ ÂPk $—R­ﻵÝhâdTàå9Þ…Þº˜¥â¹5è$elrŒ©ÍÓlÛ»‹çÜp='íãú#ÇØ<±g%¦ÊrškMliùm‡ ¡ÑÚƒrjhi6±Z9V‡è_£Ê>{Û6oæ‰Û¾ŒÙ”q'j3ªVÞ7Ð"A¶ˆÕ…1‹xÙçÑ™û9Ûÿ vÁA;£ÝÊèÛЂç™Á`¹ÔPn´>ý* é§Ã¶‹!·åbІ-võ‘iTí0†&uõz€k?PÝÉK%‡ØyÅ*½:S.´CýDêUg¯_ÅüG¡°|,W.Åu¬Ë+¯Ì2õ·Néze¨¨:¿)wÕB[ÿ”¯[x>|»|Œ:5Ž´™A.GHJÛ¡˜ p††Tø•…ä@ó!ø(÷}d"§M. hMú:U8aYš_$Ï-ÍFBkf’m÷ròúë8~ø /¼áùìY{08ëÈÀHrøEêƒÝF)L½îRžN—ÿ0€ÇÊ. ŽhðêdõX- _­$ì„öîÛÏ-öSáÃÎ=þ­šs]†´† Pÿ€ìâ\JŽÇú kübØZ``/Ây¼,Šï*EiõxVAŽaÇŽô:í±à‘þ4HË-/Du¯„ó:¶Ý`­BÉ¢³±qÑOB ­ë!%8¿|g_õ?F¨œ†L‰aS…rêåep¯§§–wèÕatmùÚ”úÕ…ûéŠ×hjž¨0´T­‘aõþ£PX€ƒD]uÓrÝ{Ptxå¿—‹DÊ«›Ô‰˾OU¨0@”)lÜÄ+%Þ— )š¤Í”Üvéôèç]²® s½6¬Û²‘׿ÆëŸÏÕGŽr`çfšS4Ò&iš‚”¤È E¸«°5I£ÉŸˆÖ!ŠŠ4òZg•À(PÞ¡…Ã{ºh±Š*­Ï–"<Åî;È]NÛX¼ˆ]€(\d ØðÀ†b8È, ˆ”j@ ©I©3ñ˜ØxÒДrÕ³u"©­œXWþݶ!îV‹Û2–®4DÿH’/)íË;åòíÃë4Q{¡j« wF*‘j—³;*¿¢ JY"µt7 iŸ™1I5¤º ibª¢Ã8‹#h„…¶L!uç0Â!µÆØŒ4mâèFȸ0ΰ´ØÅöhÐëšìݽ›Ã‡¯dמ=:tˆm·²eãÖ­[Çl2[®1dI<Íç¼4=Õß.ú£^r$oHVæËÿõX=ž5ˆïX¿vmØ!6˜¾.Ä‘âÚ!øúűŽ]Èêò%V>µz¼êb\ ð½býÃç*cù!«½,’ü·\fGÏY,(—ϯ®UíB†Ý“¬a”gᚉH+–#×½ eUó¼ërì«›€:YM‰.å^3 çÜÀV\KÀ©‚Px§ð “/Eè@r‡1½<ø.¤9Miؾã Ö®ÙÄî};عw{wïeÏîÝlÚ¼‰ã[ÊàeH¤s~9Yo†hB±Êb]=V ÈW{‚G ÉìÌ,4Rr_æÀ‡]æÀ?Çáµ k/cÿÕΡʺ©êžn€]wŸåÝEXÜË^HÃ.gyLjýFùçªù`‹U;•η*諾ÞjT§Åš1è䆿s˺«U‹F]'R† «ÐXQ¨ÊƒpíÀuT_Ó©éõ3G†°9ããLÏβa×zö:ÈÑCWrèàA®Þwœ©ÆL©<ÝG;+ˆÁB.̬S‘œa!m„Ë„¼ÕÙõê±Z@¾º‡³Ž)ÕdbÍd×೜sD‚ó¦ˆšŠ²b¹š WxyÐefN±ó: ìÓ ™ëâW˦ŽÕ¿Õ"ù4º‹ÑxñØe ðÓ¥3–_¶étÕ¢ Y•3.ê,ÑG¯MÍF@Ê0¯çK*z7YcQR`¼ÉB±ÿ\5÷!ÞY´Ô †n–!E{¬ÅÌšYŽŸ:ÆÞ‡Ø¹n® ÆIDAT{?7¾è…ìßB|vrB¥4RoýÀ´Q‰á"$¾\¯W/-ÂGµu0ÅZT‰öºZAVÕòU…°¢þ•Íû÷pú¶{ÐÅ"­ÄÅÐÓ{Y†B™F[ÞVá©:%t"ºZDªŽ²e[µ÷+ÃeRª`1±ŒSW¨F–Ê0Wau1¨ås(µB4X5ô«{]Õ¢¹rg!ÅMEê©HÂó$LqJ*’4àå„"*½'ÕšÜÒVBžå4£ù j&,--‘÷3„ó˜D36°a÷Žž:ÁU×?—ë¯:É©hÒˆÙ H¼Dø¡£m,ÅÃ8¡òœA‰‘¹Â²ø !+s ½lN± Y­«äPDöíÝÇéÏß=Tk/–-duªô*´T—M±N_†yÊ ª²½Ç°#Xž‰]ç'Uíª‹ý¿å,;¼4£?Iå×Pí(ªZºî¨:D¯û}™fíh>¸¡’œ#±…ôR!°ÍB;²ÜÒ-$º—‚…Îs9è[HAL¥lÞ·…#ÇŽrãuÏ㺓§¸rç>š2¡áSPCèš6,î΂Q œ¦!ˆOË|§ÕcõX=þÏÐÂ{ÿÁ|ª°")à /F£9kàºrÝQ—?±RÆDÕ¿© ƒUزÍFù1ê|«FõðÓòÅ]&™îú½¯÷…*w\å×]-u:“ò¹O¸K ,ªô°C26›t! •(©ðR©XœŸÇCÖç‘ÏŽ³iÇ6ŽÝx 'áêý‡9º{?I£E«Ù&IMÙˆŸ‰8op ¸4ÀL "¶$ó ç‘ŠÜ[R‘ÅZì*´z¬Ï‚""Ëï9xèN­[ø‡7’­äàZg¼Wç©T]Uï_Õ$CÛb1βl>T¨WIÕç(/Ì+9 Î%ü0Ô*ºaqñµÅ'N¸G `¡/SL¥TøÒ¢|}Ê™+"BTBç'A­2Ï{ÝK=,¡½a‚M;¶qèäqN\y„“‡²qv³kÖ1ÑczbФ”K=ðó EP] Ù_¸ |Ÿz” „W`F>AÐΣ…Àyƒb`¸Úy¬«Ç³¬1RpdfÞv¡ÝB˜ˆÓ§ l>¤õ¸}uw]g¢W^ÐËÃîòB^í> …rñå|ݬ¢jéQuÃ- QF+{6yòP/âžÙ#ñ2þäŲîÁ9B£ <µ%pÖE‡Ý8+J@X‰á$¹êD›&ñI$9´R(-°Æ!•ÄaÉsËüB«C0­„Ù™5ìÙ·›»wrèÀöíÚÍ–mÛ™žeËú L§S,Û÷—WóB“#|Ü4 Õé¾xõ>Œ(ý;0(â}Ї*è²B„ûbVýÐÏlµŠ¬«Ç¿ÿ2Г3³1I””lH‡«`ñ…ky(^.µ;ôJ·Q@QËü«*vuÆå¡tuq¯<@nÃ'é†ç‚ŠªúŒ¢ð$I‚´`œÇKЩB *fCGíFÃ9,¯2dC2ÆHEn-KYFÖ]Äz‹—ž‰éI&ÖN²nÝö컂]{÷°uË6ﻊm[·²sÃŽ8¢‡Ãap$^…s÷Nú£5D,ÿYÔ¬ì¢îöOó±ÂÏ£³¢ÕcõX=þÝëÒ „LÍLŽ‹¶‰•„åFŠå}î£ YÕ–¬Åy˨. ±.Ø©®H­t^(IĤBp*î·pV¢“¡í (ÉEáËS…$! H™F§Ž'2²¬Ï‚H‘Rg©h2Ñ‚éµSlÞµ…íûvqèÐ1®:p˜‡¯dms¦´ò»ð?'Î#¢‹/„øa…DzIêdxráð»ÕéÃê±z¬¯ZÿQ0®<´ÆÆ`¢ ˆpEFí ൪·¨.â+ ‹E‹YŸÌe$©¢Ýl265Á†Í»9°ÿ Ç®ÙÃ7Üȶ ;XÛZ‡ ‡Å‘85Ȩ×Äá…Àz‡G­À9“ÕpÑkL‚U±£ò\EÑêîõX=þÝÏÜLt<Ò œôH[®;ÊÜãO¢:Œ¡ØePUÁˆªÓcTÍC'¡Kéx¥¨U@—©«ÕçL¥ yŒ3M¥0>Ç+‰1‰Ða7®$FBâÂEG¡L[XcI• y^[‹L4‰RXkÈE†V ½¥ Ó·¸4C5ã3“:|ˆ}‡öò¼çÞÀÉã×°món¦ªûƒAXP%H(V±‘Aéå› Ce=娡ÕcõX=V;¯Ee#xaÊÑ£Gùܧq¹)Éñ(–ÏVb<3²~#Ü®`sƒ’êÅ}ÕÇ,–<ÑØ<Ú… “çrx#hÊ&J8rNP’éL‘+‡Õ”Â7-ô-¦×!ëôè¤Íc‚-Ûw²{û6®½þ$Ï9~-Çœ`Óú-$ÂЬð(¡PéIý2.Vª3j­¹[ù×¢0TÖ¤ŒüuõX=VÕò5ê@TÉmôe/}ŸøÈŸ1Ñl¢G¼°ª‹}Q,Š—á¢j´iÕ¦\JQë×T}ü{u¬³µ’êq*ÁŽ]JT3Å{=˜,v©‹íÂcH@®i³ïÈaž{êZöìÜÅÉcW±}ófÓ´Z-H•"‘$°¯ÂDBú$,Ù‘a5 ›EÄêJ¾z¬«Ç³­€1°ÅàèÑ£ ÜÿÛÞÙ$5rQøËªî–FˆŸ‘A6fð L0>€ïáßçðm|¯½öÌ RwUzQÕ¢¥q8fòÛ•VR/ôº2_æ#:ÁŽzùh£íÎetèÝrÓæ”úcºíMt3ο¦ÖÝՖǺ üµ*ºOßk™.½QÅø»ó·×Ì¿¿åæî–³é1“oïì³»·ËV5@:wˆ)óÝU¢ÑÜÛAS ,[Ò*ÒÖY—òzQ‰YKÒö>s†ñ"Ä#ÉÅCÊ䘼ڥ¼èžê-jbÈAª”R‚F _ä8!DMn®¶|å=.¯RO9TŠxñDN \Ä{œÔiŠ› 5ÍrÉÃý‚šT†zU2:Øgr<ãúæÎŽgœÏÞ0?9cg¼ËÑôˆ½b¿!ŒÉÛ¡<í¦6ñ©ùœ‚‚äQN"èåf¶Š&wSJÊBT;˜l$þ†a¼iÂÚÓhk›¸¨©²…uKJh(|j~W½J$â{‘‡ó.—¯„X–8_š)ª5qÙ?GêEͧ¢¡è;ý!ãÑû“C¦§Ç\\^r6Ÿs<›quqÉáÎU~| Mþ#oGÝþÃõ•ËJn퇮6löÚRÔÚGt: «Þ†_{€¦†a¼HÙ¤ì÷¯ úeÅg_°XF¤Ÿò£u©PIL%)P ä$ÉÅT–ÚPVƒÁ6û#v¦ßr:Ÿsq}ÅÕÍ{>¾9a:ž0”Ýõ›ƒF ¨RâV7‡ ýjR@íµß0ŒÀ³µñn¢Àô§[ÜŸ¡uÚ‘‚ °X>°K@éõû ·‡ 'cç'œÏϹûxÇ»ëw|8š²íGd£pš·@iÒ½!5ªq+¿ê*›<¿èkˆ8qDQ¢@@’,§Ex•ÎöWÃ0 gÁoüί?ÿÂëÆ³u4áô|ÆÝí®Þ^ruyÁã÷´Å¡˜Öð}i(¹Ì“{ Ova‡¤Õy‘Ÿº˜Óè]’—Œ±ÄˆäÆ59iÒÍCÖšâ†a& ONCà>.¨ÄSð2øª›‹üë!;SrkóuÝA:Úá9Ó£_,K†-ì3 Ã䙑g ‚K.FÔö_m†ñDüošè P´ƒ|iý¸Øë¾a† È×Hˆ¨â5í›Zuµ Ã0Œ'áé—‚ÆøßÔÕIEND®B`‚OpenLP-2.4/resources/images/custom_edit.png0000644000175000017500000000123412657640340020055 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDATxÚ…IhA†ÿêž%ŠËUìEI¼ÈàA/zbðb`ÔDã2xÈ!F#„ ¢ÜÀ`ô"¸DQð ž<èhÀ&¸œÁÁ±«{æY¯èJ“1àkþþ»ªúÿÞ£KѪÌQÒKü¿88›0+×u×}šž~îÿñE„`(ôÃ;ú;öD2IKZZvÌlÛ ì_Õ*,K(Ù‘[Z¢H¯ ÀŒÍ?+˜ÅvjY‘sÅ€hSM"qÀL`„µ` ÖbùRâúØ(:÷ï1ûì‹OÀݸ«ÑûüÛ7f¼e°ãIôyó˜ z29ˆ•þcôüıN]Gò&dºëâ¸"ÀÔƒ!,­M¡gø;ò§V#.ÚÛ;L3-z‰Oïa¹|Þ+ß0vn ¼¯Ÿ¸eºÎ;áÀ£‰ X¾ÆñË_0zÖÁÇ95zïm¤Óéf€©°µíGWú÷3t_œÁx>̹8Ôs©T ¦J¥¤”¨×ë mz”î}­Ã÷îŒø›7­¥—ãÛ(~/U«U ‚€Â0$ F£A…BA{­V£\îÌM6ƒ³ð~÷®á»·¯(?x€*• ©N \ àpßé“<½¹‡UBˆÙ-ëSŸ¯^:ØÜÙt×òmo7z|ßGW4Zùh%BàœÃÚ!ÖZrcÈóœæ£««¯cU«ÕN‡§­ÕDBEc­ÅZE·û›ã=jµZC• Q…£^Êk'Y–ÑétpÎáŒ@Eµ–^¯wk¸Ü‡çq“$ J)´Ö í @AA†·”…H)¹¼¼$Žc´ÖA€”íW®Ap|üý Š"²,©ú¾1¥͉ EQ\z½Ýn)%ÆÎÏÏQJ!¥Ä÷}*• Y–‘¦)ATkW¬†á½‡#`žç(¥F.ê&žç]ŒÉù_c0Æ ¥ÄCš¦LÏü]b’$ñìì“F<0(%ÐR£•D)‰ë,Ö1Ã2L–gss$I{[[[+ Íf³q3ºedË…Þw¿|]óþáZlnn¾©×ëò<çäääíúúúGÀÝ}x °»»û¼Õj½B¼tÎ=Ž¢ÈËóœñññ¢Z­þ¾´ÛíwKKK‡åŒº H’ä•Özqll,°ÖA OJ9Ýï÷ƒÁgàðA€7555³¼¼üb~~¾599Y8;;‹ŽŽÚ;;;ßÂ0ü åÀ«'ˆ‰îeIEND®B`‚OpenLP-2.4/resources/images/system_configure.png0000644000175000017500000000211512657640340021122 0ustar raoulraoul‰PNG  IHDRÄ´l;sRGB®ÎébKGDÿÿÿ ½§“ pHYs¯¯^‘tIMEÙ2-áïýÍIDATxÚ“kL“gÇÏÛöm)£Ò•DJiUp‹ ¬´##c†¹v£3#Ë\Â0[6/! .Ûõ¢6Y„ÄQܲ›’˜R41&›ØQT>Ì&X dÖ®èJ—µïåÙÁ„Ä3¶=É?yrÎ?¿÷¼ç<©eµZô&“©133³œã9q4ú÷ƒP(xÞápž½:z-é@››ÔúžøÇ’H$BfçfÉÍ[¤ïB/o±}ÛŽQÊÔw+ë/¹ÿ $þoœ,Å–HkëQ®¬ìû4Mÿ€–7QBH•.{)kKv¶LÊq0l(Š‚A·ûÌøø„Ë»â¤ÀÊ_–¿533„`Xü€J©œÆÚ“h:`iQQQÙôôïÀ² Š–aaÛöm•k×­¥Ÿ5š­MÙÂd©ooªx­ªªÊ †(i†T*à!#SZˆãÙX¬-mll\ß°»áÐÂÂâád;¦ Ç£òóó¡ï‚ Žkî,‘€Z­y/C"½»áÕ ªþˆhÖhˆN¯#F£‘ ð{šöô¢¥%|ábž=ÛöZ6œuv÷äÌÍ=-‚U²U°sç\¹jßo¯Eß $+£ Í–&‹"GqðäÉ.Q0nžc9н®…Bq¿¾n—íé¯'"¥2Wòõ7_v¬ÎUÖMMMa‡2HÄ‹ÅpQjx¿Ò²Zl{Ñ{ E’ ,6ó>–ã·v;œûÃáð'[?­™_¾—øÂpÛã'Ú¾?ŒùKèå •p8O{+*6ãQŽ¢ÚN´~µ«¡žüÔñ#g4:0— i„@"–D•yy¹x^–0Î0«KKõäòȈëÊ•Ñ#˜‹¤E£Ñ_jjªú4% ⌫GF.¸\­X i…:rpÃ$êpaÔíIoÿg¸ó>Iü …Œ/­ ?IEND®B`‚OpenLP-2.4/resources/images/song_search_title.png0000644000175000017500000000036512657640340021236 0ustar raoulraoul‰PNG  IHDRíÝâRsBITÛáOà pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<'PLTEÿÿÿˆˆˆˆˆˆˆˆˆ‘’ºº¹ÀÁÀÅÅÅÐÑÐìììíííîîîÿÿÿ¹O$tRNS;ØNÌq1IDAT×c` ƒ"ƒúìÝ@°³ˆÁê˜Ç XÌ`}&ÄØŒ…W×77{&…—DIEND®B`‚OpenLP-2.4/resources/images/system_settings.png0000644000175000017500000000241012657640340020777 0ustar raoulraoul‰PNG  IHDROc#" pHYs7\7\ËǤ¹ vpAg\Æ­ÃbKGDÿÿÿÿÿÿ X÷ÜeIDATxÚÏyPÔuÆñg÷§°áEZ“MÌ(–9fv˜£dZ–“„i˜¬µn° ,ǘ¢‰rĵȱ2¹l,š ȆN©x$ˆ©¥“çS™Z3:2«è'žÙ¥¦'Þ¯?žùýóý~lúJR/”Ö3mÆv_·yÂæ;*}uvuá/`Yë²Ë!“§}â¿Ášºål}^ŠÉÇd)±—¬,Yøá¢3EaE³Ùo^>4ƒ-ZK@œž€Ä´ÄøÄ`uDŒ9fQt; ïÒï×'j7Z"-uå3Dª.Ôd×EvíØ=k÷{÷&ÜNú%ù-Àž??¿LY–›œónöUxb°éº ˜=žÐ„5"ÌVn³Ú*ÚnËnKoK1O/î->QrÔÔÜa"óZΑœ»C{àªtoéšÒ0]Îÿÿù:ŸIj÷ßðÎá~G¦O:ÙB÷Ö;b+±"–.Ëï–5[Eœy=k P}«&½¦bMÒæÜ‚ùÛDð bƒ0\&¨“„€¤@RU¾ìC€î’î¢î¢·Û¡ê-¸VE"Wb¯¬º²JÄZbµZwÖ´š7˜ç˜=¶˜«‹÷¼iN$õùk7ÅŸZ€ÿ–A€a+ACÈ»¡‹”´†«T¥ä% ¯’Hç,º«¹–ßÏ$9¬Ž/6)líjmkýQ¤lt™®ìºHˆoˆ_ÈçA£1PªÆ)Up=a 1 H©<íKÀîÍwOHÔ ŠùcÇ Ì?‘R gÏŒk&`Ú\‚úÂýåä‘WFÀ¶íôA ¥˜DZB¨¯èx8‰$Ì!ÃÉʱ˜O“rμ]DÀÔ‚zöpƒ8(7Ž"Gf“HSõ5ò#‘8#}4lëëdTÓ'áÌ™ y8ò…³\ëíÚG\«q­úšW¿öÙ¼÷eÑ͹ö^‰<@ZSfU¤èC€»oßò”¬‰Ê" EK•§ÃÊ)nTÍBžn¢‘Qó(ÂSä1 =4`î}ÎuKsî[ÎUbœ«gÝ®Š¨Ydêö[GëNN¹IK}6®Ùmù4lf9È"zTXtSoftwarexÚ+//×ËÌË.NN,HÕË/J6ØXSÊ\IEND®B`‚OpenLP-2.4/resources/images/messagebox_info.png0000644000175000017500000000143312657640340020707 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<˜IDAT8¥“MHaÇÿ3»ã¦Ù×ÚRìæ´äeÅŒŽ ] ¼A„B:XÓ¡kê•Ðaâ:äFâ$h¬`eµÚØ„Râ~±Öºí6¹3»Îì¾O—5W¬“Ïñ…ÿïåáÿ{8"Båp'ppp—Ÿ“–dˆÈZ "T@œ¢(vaUU]׳º®gUUUÀ°(ŠeøZ®"ì“e¹WÓ´T®`Q߈BçnÒùÛ£ô`t†r‹4MKÉ²Ü À· Y8eYîeŒ±Àø,y;îÐÁ®»4—ÈÒ—Èê– ééËYbŒ±2Ĺú¹ Šb§¦i©¡‰¯ä<~ƒZ.¿"ù~˜t]'Æ]꟡“7ßRÛµ ›Š’¦i©ò:‚ €Ëï÷÷4IÍÍg®¡Æãƒç7 ‹“ß2˜Žå`˜%¬¦ã::Z½[ë=nÇàà`ÈÀ%I’šŠ!•+¢Ä[°J»ÃBÆ‚o¯€ô² Ã,A/K3ŒŠC’$€ËÀíõzëõ¿GÉQ‡¼YB2[@Ú;·Õ€1†ž9TWÙPë°ƒÌÄ–q¤­¡€›¯¬ôgÎÂŽ°»{ †aªì<¶6v¹BÄ­exÉH$o•D¬t6þ/$ŸÏÃ0 Ô:쨮âñK· ¨C$‰Hò–E‰;$bÿv š6àóÔÂ㬆a0 <Ïaé·‰¬n¡ißv´6î¢(±²k5†ÂQª:qvu=§p8LªªÒüü<% B{„ÓÏèÍçïëjÜ R(¥†³ý„S„ö qAB{/ŽÐkuq£HÿR9oiøÝ]y–—_ø“?6â¥R‘·Z-Þét̵ÑhðZ­Æt^­–¹¦•øîn«jêÛÊÊË1$&'CO•aå²Õj0ÇÁ¹`ïØ¬Åb,ËPåÒøøø³¾€ÕíñÜA²,Mv»]aßÜ€)äñ¸¯‹\i~þZð„×{q þ'‰ƒæÂ±àHÀ[\¼sZ¾wÿî+A8<¬A×ÌÊÍfår6› ^¯Œ1ª,Q v»þevëö͇r©øë‚¦•!H:¦½õõul¦6ð0š€Ñ1022"Ú1 ôh6û%mVÞÞÞfõzÝL¦é£P(@ý©bzz¹ìÞ¿û¿ßº>ÌÌÌôÛ2Eòù˜Ïç{DÁs™L‚étzUG¥ÚÆã'Kǰ¶ö !rBÎD7…R©Ô†ìt:ùÜÜúW¨ª*‰´Jo?}A­®ÃéRLë±XÌ\Ýn7è Ýnƒ…ÃámL‘€Â"¨ë:r¹-ä«t¨uˆ…+³V†áp8„€H64MÛÊf³o,]d)FÏÓSžr¹\§öŠ{>™Ég†\CMÍ0‰UHx‡Õd2ùªçÔ-ø;$¢Ø#DŽߣp35@™yIEND®B`‚OpenLP-2.4/resources/images/theme_import.png0000644000175000017500000000116412657640340020234 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ñIDAT8•“?oÓPÅïÅUSgÌ„º„¡ ¨K“,ÍX©KÚ¯¥Ÿ$þ ¶nù ÀkU„²µiµU(cÑc;öó»,µ±i¸Òžôι眫«D¥Ô`ƒÿ«‰SxlÌçó·¿‚€ñxLÝóØìtXYYA)…R*€ÖouuOé¬Àç£#:››¬­­1NÉf`yP©h¢(¢ÑhP­V ÃïWW4›Í?*2’LÑp8üè8Ύ뺸®K½^§Ûí²µµ…1†Ó³3Zëë8Ž“ƒ”ÖÜ«V÷`çàà ”Œµk-•J…‡í6i𢵾3‹’…¢Wn>+¥ÐZ£µ.³r€Oûûû% ½^~¿áüüœV«ukr^"’%½ûÓ÷e4‰ïûbŒ‘ããc™N§’$‰cÄ#išæ ì–,(Àu]‹qívûNïE Eóloosxxˆçyôûý[áe'‰À–(E­Vc0ä "8Š"f³5o•wï?Œ“RAHEÇqî;MS±ÖJ’$2™L$Ž—òôå‹ à ÊaøOß÷åë奖—_ø“?6â¥R‘·Z-Þét̵ÑhðZ­Æt^­–¹¦•øîn«jêÛÊÊË1$&'CO•aå²Õj0ÇÁ¹`ïØ¬Åb,ËPåÒøøø³¾€ÕíñÜA²,Mv»]aßÜ€)äñ¸¯‹\i~þZð„×{q þ'‰ƒæÂ±àHÀ[\¼sZ¾wÿî+A8<¬A×ÌÊÍfår6› ^¯Œ1ª,Q v»þevëö͇r©øë‚¦•!H:¦½õõul¦6ð0š€Ñ1022"Ú1 ôh6û%mVÞÞÞfõzÝL¦é£P(@ý©bzz¹ìÞ¿û¿ßº>ÌÌÌôÛ2Eòù˜Ïç{DÁs™L‚étzUG¥ÚÆã'Kǰ¶ö !rBÎD7…R©Ô†ìt:ùÜÜúW¨ª*‰´Jo?}A­®ÃéRLë±XÌ\Ýn7è Ýnƒ…ÃámL‘€Â"¨ë:r¹-ä«t¨uˆ…+³V†áp8„€H64MÛÊf³o,]d)FÏÓSžr¹\§öŠ{>™Ég†\CMÍ0‰UHx‡Õd2ùªçÔ-ø;$¢Ø#DŽߣp35@™yIEND®B`‚OpenLP-2.4/resources/images/openlp-about-logo.png0000644000175000017500000006720512657640340021113 0ustar raoulraoul‰PNG  IHDRVáyÀÑsBIT|dˆ pHYsbƒ¢tEXtSoftwarewww.inkscape.org›î< IDATxœì]w|EßÿÎîÕä’K'„–@èUz“¢Š`/`Ã.êëc{,>vËc×ÇÞŠˆ¢>ÒAéHïôÞsI®ïÎûÇìÜÍm.•}ø}>ùݙ¹™ùþúJ)ÚBÿ¨»ê?Õ]Ÿi[ëØi:M§é4ýňœê}V’Vd­H ªU(ŠîÊËi@9M§é4¦@§@4ÐàE````ŠIø» € XÀÀ«+­¸µâÑþ.‚Êi0i @ßj:=î§IOÍ™W¦yó¿¶NN*€hƒË% #(XDˆKL1ˆ9>ÈÖ䘸Äv)í;¶Kn×>6>1ÉgµGÇUªÒG…·¢¢ÜYZZR]XTX™——[謭,¡~Wu— þº"ªÔ‚Š€ PèŸé‡:Ùf!„S)†û?§zjEýçÓãÿ¿EÌ©æPÈ\i sçûÓ\j°Ÿmb NÆ;Àa“,"ØÄH"R´ë<`âĉS÷î;Èn0E¢Ú¥ °¬EåÔ9Ýð+ ¨ª€R•]UVâ¢,ˆ¶".ÚŠ‹F ð{œt÷ž¥+W.þÃQr`%õTP €@˜tâ ¶…¢-nAˆ€¡/ó™“Þ.EÃè>·‰ÅpšN Z þ\j…›?§lÞèTï ­…c%}ß´ù§f,N(€è€Ã &e$H)’-mLz¯áÇŒ;¯o»ÝÍ%µù•P)ʯ"hPTUëßæÞø˜HŒèŸ†H ÁÑÇËW,ÝQ”³{…êÌÛ  @)˜¸À€äV"i`1ˆ*F^ˆîs¸@œäªpUÃü?°œ“¿…±q†›S@ø·9sé¤Ï—0*ø¦ÖDs)04ƈr†ì„ˆ0À\∠ÙÒ½}÷‰7^qù gÆ¥ô4ìË«Ciµ³ždQ´k8¹‡Rª 8‘V#FLGr‚ Y™Y®o¿ùtA]Ñ–ïš   HÜøSm…½³wf0ŸÃ98èD\èJ˜âGÃ…ð¿ò;ü•IØ ø|2…Ï£†6\q.‰sÇSd×l ?b¿ëOs¨1ÀPÔF²=.Ç@!|`-`jª$)-:eäÕ3®½{ZR—ÆíGÊàñûÀ'iè@£¡{tÀ£†€I}P²Û,¸ðìaØ·¯cÞ7~éwZ L"©Sm)åͫϷp Ü(ÓìÙ³; tFÇÄ”®©ö¸v¬¶$ c„JŒV+ꓨÏ%ÁïRüîÊšªòüòâììÜœŒ¼×_ýpii©h‡â…o"¨œ’¿é6Û€£Ì€l²,[}>ŸÑï÷(¥’ªªõ6\B$IRdYVL&“×ï÷»wïÞÍ×(wŽ9iL_ð00¥¥¥Ùbcc#xTU•)¥-Þ[ !ðûý4##ÃðRW8FL¼ŠL8ãsÜDPW™ÀŒâIRMq}/¼âÊÛgξnf¤ÃkÀG‹¢ÆånRE© U"Vi)PÂIÀ£ª Ú'Æ`ÚÄ!X½v]ñ’_¾øP­Ë]… ÔðQJÕ;ü'¤&\¦9Pp7s÷îÝ£{ò_Òû Ÿì'ÑKê,‰åuƨ7‘j]NOÃ>£ˆ²DY(³ßÕ>Ú]f•ê k+s·Íýò½_>ûì³\½æ¸(!@rDþ|$ì <¬l‡rªççU“)U ¥ 'ÿaÿJˆDS¨£k‡ÈóÀÖ§ ³mÃ<áÜv¨ š=wç¼WzãÆ)*%”ÒpýiŠBÞÛ(« ¨ê¡Š—@õ(™(ÎÒ‚Ìm¿þôÍÚ÷ß?Á5#2e¢„&Ji'„;.¢ ,—:ât‘l©SÎvÓì»nº>¾[—Ž  ¨¬õàÝ_÷"§ØÑ„š* x4C]Õ(© €IÔLÑ?ÿúë‘«æ½EÝ¥äyoyð0²‡QU‰ª)î g`™:ujûûÿñ¯ëÌQÉœJDÊ‘KBV) êqXAïdoU¢Í]"+ެ«Ï»ïž;6‚m¢ë5_§ãyþ¤$h#¸ 4@ÌïÛŠ?ýïî˜-­ïüþµ‡&ŽŸ   Aû%—DN€p¦‹÷Ç fý¶£/þ¼¯ã¹~åD¶În’ 5ÁëHŒôV‰«Ô[WqxëÆåËþ~ÿ½[ aÇutÌ¢mN`RG÷”^çÝóÜ/LyÆ€pˆÅ¯¨ø|Ùü±¿0(E„ˆæ¨©ô€`š¸‡ª*†ê^i•W_yæcgé®od€yn¹ñ'Vi à!ªªDià bâĉÉO¾ðî=n9yøÆ£ævÕÎæw—°˜¼~ ¥2›QúwRé 5G~_üíÛ?pïFN¹Kî)"‘üY‹ÿ%Ô=°yæu™´lcÎÛ‹ö'ôniçö©Îœ<¢ý-`vË ÝóO¸7¥Ð¬?‘`ýI\±n÷3KŽv¢$Ù,ÝÚ©®‰®üª’#«º÷ÖÏwíÚUŽð ™¨Þ:.ëè˜DCd·‡dê?`ÌuO½òÔ³=:¥´ߺÂ!ÀÒ-9øî÷ƒPÔú.º ©žÂƒJ÷6N"ÀDÛ,¸þ²)xã?o-Ïß¿øu‡À&«€ÿ϶qé¼ED‰Ã ÆAEŽ1¢Ý ¯}t—ßÔaÔšCæäWø.Jè’ *©±5. ¿âuûý>—_ñ:ý^O¯¢¬Äe‹Š6EØbL²Ñj0˜¬ƒÑjŒCYÕt¸Ôj©s7\÷ijmz|͑Š>ûÏ“?ºLMáD£ Y¶ßâ¸î3{(Ðaáš#/-;”œÞÒ:'õªÈ:¦ó=òÁÖe5´µ‰ÌäéÔq0i*@Ê•›ÿù[Nï‘§@DJ²:4Õ]d¡•ûçÏyû½×_{mØø8 $iäXǬբ‡ l ;SÌÈIÞûô¿~ Îa  vø²/»o/ØŽZ§§™jªún½MßÞ†RÏvBUH„â–™Ó±à—_m[õÅ“P½»€q;þ?‹]$ŒÁO ÜŒLOOÿà³ù÷PkDZkšRªêêw+ÂLн×gª¨«-Ï®ZüË7óæÎ)t»Ý|#tîƒãë?f̘ث¯¿3=%µO¼ßh;ZYXY¿=I†u¥Ž®ñ5‡çýÎ+ÿ~ñùÉé¬"ÒÙD#À¸õd©?ÿ¶ÿ™•GRR[Zç9=Ë ¦ëúÙ`k²š½L9ak³„v:ÿ´xýƒk ú9ÕÂÉd ž®V'™Šÿ¸~æyÏddd”!ÔnÄU[Ç "­Ÿ#Àl½í¤þðßU÷¯+8P?O5ÅÚ$:¥Ÿ'{éOŸ¼òäc¯Epé¥úVƒHk\Í‚àÑ-2iðMÿ|ä¥YL:Kj (ûÎçWðþÏ;°awN^UõA¤a•VxÕV£¶Á>¢ì"½Ñ%%ÙûÎ[O¿ Öåü ÆùT£ «³tºZÑû%€ý­w?=¿ßˆéwþ²•´ÓOøö±Pµ/«^ñë×_{é_TUõ!h˜ó Ôk*œ·<ÌB±hWÓà!Cã}úa¹[ÂŽlƒYo¨ÐÎt{ÑÚ ¦Œzª¦¦¦ÌÍZ䢒P[ý=þWIØpM`s/@GÝ~XºëÑß2R:¶´Î³{”—\tVϧó˜äâÅÉ#€ÄHöýϿݻ¾x@ÿ¶ ÛÆöBu¬”»êÊ‹Î~¡¢¢¢¡ëè˜@ÄТ— Ì£t1Æôºò±§>¾ÁoMAGÍ"€"üó g2ÊøÛeCš9KwqWïôUãp(åÖ"í¯ú{êÿ‰ øcû—˜þþÐs¼ôÜýuÔ]¼lÀk !mΰ<Ì`“Ý váò?»Mù~£->k“èðÎŽÝ,ʼèÚvy½^®7ÕÑ('nàâÂÕY‰Æz«ö>"¶mÝâ¼ôü1åSÎ=?åŽûžœïî·7O2òŠvd"¢0&ùìåëöw|äÞY­X±"K«W?“TBik¿Çi Pˆû8¥”¨jË÷zíçÕG}Ÿ û#óþ¨ÇËUñ8Óª}°·‹é4íוۻL8è®ÊÊÊpkH!„´˜k6€lÐX“Ϻë¾×îØSºâjìÍwàì¾ñÕ#²ÔX=É…gvGjûh¼>wêêÜ   ”@%`ÿ!€$ö„«J@%hW¥ @U *é¯Tᢻ'¯ [wî1̸þǾýèñRêwzÀô¯u`h› FÀ#ºgÏž)ŸÏ]üÒº£‘ýùŒâsCÓ|nWþš¬k.¸}‹Ãá¨ëWPêT‰€õ¼:œ”áâKx†å0Ž4 l.E-Yü«sÉâ_ ®ºæ†®×ÜúðËØcÜ>6‹*yî†>O¾2çýÑ >~þ™'YðÇiiÛ$8tPPÚò¥Ãb,Ž)UÈñ¤À{PPB©‚¶<õŠ*iÑnKÿŸ–üñÒY£û<à÷ûùW!‘î-‘F¶ú°÷FH&Û˯}ò1GdoÙåS!IÌ…sᎼ¹(G‹ë  qÔ½^¼ã¤¶$H‘ }$B @‚î*„ý 쯒xe„Ý+Þ#‰íÈd‰`ÿá ˜Œ’mÌ”[Ÿ‘z‰ãfÍtÊ)ŒÁœƒ‡Ýf³%}1oÙ[?m·>Rà3r5¡*Îîå¬ýí»gÿ¸ó–«×8ŽRÅ`109`꺭äéœ i÷•(ÓJ¹VÊ„k)˜§L±öLVG®®þ<­Þ²9_}zàæMìšWgåïêr+øf?e̹7=y×Ý÷3`ÚÀ‰§øo¿Åij’¥4èNß‚¢iN5pÔ§Vöçd—Ò*¿´úpÔÐ…+¶<¦‚‹Û'L/Ù7IÍZtÚFi"õ=å®g“ûMµV;}lãØ2(Jn|´"߬ÉÃåk¢Þ†¿KŽ·áÙÛÏÁ¨Ù>/q7yY’ Ë$‰™h“ˆV ý-x•XŠí{íJØU"$™hõBaéª 7jH‡®g\ü€t0#šéTƒHé"xÐVÜ/K7>³x§¡W…à UU ª ÌŠ©ýª«þýè5Ë¿ü샽`›}!ØæÎKئ_<›q5˜1Î&¡Ôj…K*üÿ5Ú=ÕÚsåZ;ÅZ[ùZ¼½|ÅÅ—N½°‡y[V×$ÅÏßYQ,Øä‰¿ôºûŸ7n\70·ÐH0° ä w9t,¿Ï©¦Ö¾û±ômF”æbK ­ç«Ñ6ˆ­êÏ©(¹e>y{QâØ‹ÖþÌŽ]kÉœiróÓ*3‚q}ÝÒϸòŸ—]uWr±Ã@$‚]Ù•xeÁ>ü¶§J#ºÁÆ^Õj6àþ«Çâêó±Í]™È2 H!À$0AàdYYbŸù•?C$0D†,IøbÞϸíúk†Ù;޼@°MZ>‹´  |ü|•¸¹?.»sWaìÈü2¯Ä¹„(B'tÍ/¾ñʉ ÿظ!lC/@4òÁ@£lÓçQ¿$ôJáŠhpwi…«ÆªÁ‚ÀJ*™Úöz½¥×Í8¹;óÇ=CÓüî€sƒ¢bþ_‡ç^ûâù¤¤¤v` 0 f3ã +ª×Â}BI¢¯³É£~ÛáTÒX&Ø@9Q`f|y_ý‡@Ç$´=¢zqþ ÊÑŸ±FîzÎC<>õ±ÀœiN×µh•ÈZãSÇÝúâ/ NOmžÜX{¸™¥.6†”‚‚jö ª>…bñÖl9T†‹FuB¯Ž1 ´ÓØ;—L쇴”¼þõ*Ô¹TPJÀRè0° ”ì$””°ï©D@U@Õì"z!š …f – ’$1m-¥ DbW•࣯çáû¼ìñÇï?¢Öf~ ¶™ž{ˆnƒâv€˜—^{wš/²÷ô={Ü&~t„ŒaísŠ.Ÿ6a±Ïç«DPÕT†Ð÷xÜ7”ëmâJ·ªI˜Ïb*oBOŽä Ãÿïà{ìá»7ÞvGfí sî¶= fp{_¶ÉÝ¿]ðÛ³gîûB ùÜ2Ψßý¹ØÇzYQµq›BXxúv%áïáÆ©¹nìÃý.ú¾Þý¸D ׎pãÊÁ âw̱¥66*p›NK‡5-‰Ð.ÑeŠªR J@$D¶JÕ©ñZ䊕µÊq7ЯÝ늼æ’ëo}ñ¹§·#Èø<²Ðpš»jʈNÀT"ñÄdtû­_œžÊÜ·;ÆY0sd ªÜX{°GŠkÀÓ BئMUH*jÜøxÉAôélÇ…#S‘`·Ôo¨ Ò»#^¼{:^üt9òŠ+àÀ ဠU%P™möܸNøwTÒÀM•¨8”0Cº¤J“£qHü¢h€x¼^ü¼x1™qíÿ7ç½7ªU<„“š3K\uÀ~Ó-³÷1ýÖùë]6~¿,LêSWuÕEÓ—ú|>QÄ%j„…3’‡ô¯‘þRa#Õ»¾3ˆòpz©%èôþ;¯ï~­ïÀ¸qã{å–)”U«dýÑÈ3~\¸úÞ‹§Ž{ ¡ ä ´Žë׃‰x?¿ŒŠa ®4 £¦·G‰¥! i)ñw wF†þ>ý÷”´ÂÛF¤0’•Ø?®¼þú)Û)Ek¼°Ú,~hVl¥OÞuþáÇyÞ=Õb±ôôtkzz÷ˆ½Úúuéa‰´-vƒß”lÚ™k”kœÇƯªþ8jêôæ;Ÿ\ü·;nœƸ…6gž4 ‚ôaСÇÀéw\4e²Ì¾ Þ×!Ö‚£Ú£°*«”áH*ØŒ J@±/»sËqÖÀ˜4¤3ŒI×fãNIŒÆ wOÇ›s~Çæ½YL QêUE•Áó ÁïTÈ(¡ T‚ªj@#**•%M¢ó± ¬.U•@$ ¤¬S&$EEµ6³¦à0ÕŒ~;TOue0⮟ýðCŸÿVO… }ÞRÝc¿qEEE^8xˆÇþŠé€V$` Ù¾BpSÓŸñ.“(î½ó†Õßÿ²Ê^Y›Ò/œŒBŘÛåœûþþðšW_~a5„£Š…vD/0“V¸ªKÜÈõà.}¶øn ¥žç›¤>Q¥ A³¸Ñ¶†Dðàï ¾€‰'š7oÞì­­­Õ¯ Þ6œtà!ޝAˆ˜VœG´×*/¬?sRˆ²þС’$UÙy½Ün7öìÙ#íٳǀ?Šóלšš=û®‡:ê=¾);ÚTYëo¤…Æi_¶ËxÕ¸ ÄÄÄ,©ªª EƱQjL!`z±bi7âæY·÷7ÈrðKÝôO‰µ`æèŽ(ªrcÕ¾bʯ†Jh€sg5 ª˶åbóÁB\46ƒº%†6ÚIJ²šxðúI˜·l+¾_º*Ó31ICe¯-q×_¢Xˆ«¯ÖeÆt*iê)AŠa’ @ J@)‘Øc”ÒÏ‹—ãºY7_øö‹Û†ê-à:YRHé#àuõîG_]¹jŸÚÑ/äUÕSö,œ÷ÖæÍ›þÈ›¬Ü“ª ÌÆÑÐä9n9§Äz40Ñ«†Ä [äö r묋—|ñýïÿ°ÅË9½5{ël×^zí¯¾üÂn„¦:ád`¹å–[:Ü~Ô:½DUT‰‚ªª„ ›8Ÿ&F ªújÝªò¢Ì¯>ÿhãÏ?ÿ\‚úv1u¶¸ØÄßÄúÝ¿NêØuÀ >ŸP••21—¶@´÷!% ”H„ZÌ&²jñœ|ðÁCÚ»àƒÏ,q¹Ý9Ãt¹Ùív‹ .³¥ ¢Sω)Í­»~Pãô)!„PÕS½åÌ‘ýÞû=8xjZ'´Q„Ñ[.PÈÔ`0”#4-‹ÁyÏ5 &hó)+++òáûo/²Ùlö¿þQotdßtX•h¢IZ¾KM~ûƒ¯®½úŠio"¸˜±¦æHXÑ&ŠÌÛqȘ+fŸ=zT}Y=ÌhkÁ̱]P\åÂï{‹p ·ª*lè`puŸ-ÚbqùøhÙh½úv¯˜<iâñöœ•¨s¹A$ššŠªLò HTIa’ 4»†J5Û†h÷P9hóPU ŒT‰M]‰‚¨ têœ.Xd¿9¹ûøŠ.Ë34ûÉÉ 0Ô§ÊŽŠ‰‰IHë9|êÚßê¿kç$£ê)\ôÃ÷ÞÚ%Z)›´œó[,q´„x½Ú~î$5Q"+** O>tóŠ{ŸúôÜ¥;T´¶gSŸ{ñõ) z¤˜VH"áԦѹeJ¿ïVUwà7Í>ÏfðØoR¥1 h•*QƒÁP…àÛÕžŒÊ÷`ñ¸žBÞ^[[sÇÍ3ª/¿òênçÎüG·Õûh‹‚Â9–¹¤q=Ó‚9ñT'\…ݤÒV@ú"»œ5{Ö­© åÚì“c­˜yfî8¿úvŽƒf“f1„€ B€Ã¹åxáëõX°ú<>%¤Þ¦€dXßTüëî‹Ñ¡]Œæ1E Á»JsÅ•$ $àò ÍeW(2$kî»DðÀ’Iàû`}Á¿-Z¹×_{Ýb°õs‰3âØtÛMRÒG$€è·?üzÖò]ÞdJµ4.TÅð4Oõ½wݼAÏ'î’[…ðj+ÊéDö‰(}ðÔ)N°É,¾sÙ–Í›r‹lÈLŒ–)ïßÎ §yØ™S/“e™Ç†XL›b]VV£REÇ¥±âñùQ^íAF“,ÞRÿÕÊê.­;Ó7î¥U[²¾›3ï—ëÁüèE® ±GÕ8¶æ¶ÛêŠŠŠ ;˜ky,€x¿ßgÈ-q›6–ÎÿËŠÛtÙ´Bç÷ßBï,qîq§XUñË!cèñ˜ô’ãíiû %­égÛ%Úªß 5 0f®Á8©lY2Áò~pD»ò’ gÞܯ÷l\üÁÑÁ]¡´vþ8ÜÆ„þýû§€Íe Bæm”êˆNúè4qò¬‡ôï×ê%É1V\5¡þvÁ H‹‡As·c2TP¬Üž…§?]…Mûó›]7tHŠÅsw_†Á}ºƒÁ\x ÀþO˜[/%vOˆ«¯x¯V@  dYû^‚ª*¨,/–{ >ÿ°ÄjáÆôÞöaëÖ­[²=©çؼ§Ä}¾»§”UKçíUEô¸ª@}ð8egm`ÅÕVDêÀ@„¿{€Š'½wýÈî>‡èÛ¾fŸ¿ãÛ|y 6&<ê=ª¦¦&FUr,þóŠ¢`Ój뇋*zg:»?´nëÑOÇß¡AÜÖÈଫPé‰õí§ª‚ÚÚZ؆ Îï÷TUÁö#5¶Z©ËUÿ~å­óÀ@$ a0›‘0Þebž«EQdñ¼Þ°@ZÓO´a „©°Zø»QJ g–x¬×¡~¼”,™Úÿó>|ïÍ]rõŽÒ¨©Uãº3Ó}ëíwO@@D•c£.½áÄ¢U'Û{wÛµ7Œ­hkÅÌ =Pæè„Û³±'£~……¤ÙGj|¹hÖíÌÄŒIýÑ1ÉÞ¬º#,&›°µ¦¦Æzd÷š#íãÆ.(ó8šï”GNzN\\ÜOnÁÈ ÒãñØTU•ı¹dt¤Ûï®rƒhG¦B3‰H‰ƒäSd9»LŠ8Zà"no(÷»/«Ö˜U$~üß_|ºjñœçž~âkÁ)¸º†çþŠt»]Vð8n>×î*))óB˜=ƒµM9¿×Ät§€öÎ’¤Ê’¬DG|¶¢P› `QEæm.ÝR7cÂÔ»gÍÚVúùçŸnG¨ÚSsXüp6+€(Uõ‡Œ¯ß§Á€Õ6ÇB8ZÚZ‹èX IDAT ¥m3Ù€Yß2R!I’¡qR|ñÊD§ >Þ5ºÚ+È3ÿ}ók/žôëVµ¾‹k”Sì$cÇž1Á˜*‘¹hT×@QçÃFœw~zj—/›‘¦¾O´[1sb/”éŒÛ²°ãH1¨šáZ(‘_‰ç?_…±:ãâ‰}a16\©P÷Œ©#‘Ú!Ì] —Û–aWÍ› *³mP‰»è 6ïAx<‹rO ¯4›ŽJ ”–’„Nƒ¦•Y± l£æ†°AℲˆ´Ùl±¦¨”åU•›úv±úÿôÙvUUyà"×Û¶wïîû¶lÙ¢wK¸$7cè=ÍL¬ª¢Jb{ŠBùü7#öl+m 'X;|LÄ3·ˆT Bÿ-Å \nἠÍIÇ]°äââbsUá¾’HK¯ÎµÎ–{fyit‚ÉdŠôz½\’Ö»e‡¥H ”ŒíG6gÿ±ä¹âß%Ø#0ã¬>xpæH íÕF·/-#Åš™xü½%X³=£ñ90Oýí $'Äh‘èA5•ÔSˆuÂì$D¸‡©»4»ˆD I²`‘˜ Efê,Y–°}÷nœsÖä`9²¬8j¬0Õܰf»ûÞûGìÎòƪT/ý:¸+ß~ëÕ]`êª*ÁCŒëlÀ\}ÈíU]]]öõ×_¾õ†+×\qþˆÅ[?Þ<óLcUT¤ ±ž¯W”$ßvïSÏõîÝ»‚¹…ø"4)ŠbïW© Bms;wn(nfÑ;Bð“ù|`‹Ý ªª$¶éS|µ²¢ó+oõl\\â#e4¡®Ho‡3R:¾ªªòàVQŸ®¹ßQèǤ9¥íMÓ µ¦?*(Ÿ á\²Å8)1«—TªLT  lÁ÷_ìëÑÁ¨´æ]ÊkTkÿþýÛ¡¾Òè|Ðotœƒ‰–l©£Óz•3JaS‘€øh+fžÝ_3Ã{w„ѨmÞ˜8ÝÌY´ Ϻ ™ù7ªQ§ä<{ïUÐ35`D—$ H@v ÍÎÁ é<݉¤ÙI$-×—<I³¯ÔÖÕ¡G×NqÄ ¶( Ç;m:„ªu¬"GŽ2qo¦Ã@5}x—$ Ý´vñ° Šƒ{ëÌOÀ{¶š„÷9m7øñÜZÕ/<ûø–3ºÐÞgª*ðªÖ$‹ÅÂ7q¾ ”R™ª*ï%QµºÄ<`<É£˜ ¬XUÕŠ÷ß}sÿ¬+ÎY>¹·£¨S‚Qåõø|~|½¢<í¥7>¹õí!UUd±]ª*$ɶñ— ˜F†ë·³ÔqëK–PÄD”¥`¿3?Þ•èûKUuN/¾_[ÓcîË3¸‹cØ0Z"2÷¬ ªrf44ˆPûiõïÖœÒVÝx¡ï{sû£Òt$Ñ»µ‹ñ4TD•_ß*–/[–Ñ!ÆçjÍ»TÕ)¦îÝ»'"<€48'ˆ@l¯¾c&ä׬:\НÿÈÅò}¥8Zê„_“樬šû]\´3'õÇ#³&`TÿN0É’`ôr +ñÒËðÙÏQëô„¯T H«Ýz Ο0ŒyYIË%éò]qï*ÑK"A‰#4A`‘5 á #Ëf0VäV¹°êP¾Þ˜‡e{Kq´$&Ç D 6ÊŠ“â±›ÏÆ˜©0 DŠ À¦=™xüŸ°bãþ&'!WM;®:V³DSWIÔZ’¤yiq—_Í+‹ƒƒˆ$fý•C]wïÛ‡qã'ãì,aÆöXIäøç›_rÉ%ÝrÊÔX‘›°ºšÜÜÜruã¢Ñ<\Ê‹¶JœÓƒH €ÚC{·d¥Ä›ýÞ›Qe8sâùg"TÄ‚ŽK”ˆ¤€mºe&”ÓÍsi„—<EªªVÞ~ãå¿Od ‘~–n®ˆøñ—nBhŠl¥Ì6 Y–}`ˆ>¡¤>C±¾ä ¥LúànÙÕX*¥A Äj"˜1±Âÿ ÛaÊw&Mzë/C¨{oHÀ_ ¤h"¶Ç¸kÚàæSOZù³K ­”¨Z¿é¼9ˆxÁÖµ<¶âó´æ]*kÜHîÐ%Aµc³ŽHÜ ºïJ‘‡të=ÈÈ% ±(”"§Ò…ß–áËõ¹X¼»‡‹j[q·¡ïblV̘<OÜ: cv…Ù$€Äãõcþò-xöƒ_p(»¨©>bÔàÞxü®«‘ggÀc>tª­P—]) ¶âQè!6AEAiY9† ìÛ²%l9nYzÃD"/qÃYÛ9¬Ü§;Â"¡¢8«¡iÖ]Ð ¶U郓N UY”ñ_|úþ®þ©F'ï»×ç‡dŽi ¯Ú‰qzßwM…U‹úéæyÜ ßØÅͽ@IqqqiAÆÖÜx»1P_­Ë j´§!èJl“~tmK’¬„i»¬…Ÿ¿Â]²E SSOcuôêhPu‹Ä ¬ÙYn‹ë2âš{î{p4ŽÓù*úØ”fßÛìÒ6§,Z¿Ój>N"\qƒú½­y—J‡ ‰ÉñçôЈ"N’€ý£CÚñN¯ÖOÙ.U¥È+waå¾b|º: wäã`>¥þÀ´Ö{Ën³bÆ”3ðÄmSqæàt˜H„©¢ŠË+ñæWKñÑüßá¨u6Ü€Î)Ixú¾YèÞ¹~ `@ÂÐý_”6d9¨Æ Òƒ€ãñz¡ú’lë:L-Àó/½_x¬ÕÓ¾k¥ÃðéîŸfõÎûæãí=IPퟂt†"ÇU îÈ‘#eQ&WèÓž]ªÄL›6-‚€¤= ¬NÑ0ɉ«ýªŒAá€ÂÏF©xù…'·Œîev†´]â>}z:‚ªü¸S¡m^áÚni©CèQØ̳”µçöøðÛê?ÜI†¬Ú¸hCà=æ¯*ˆŸ|á÷ŸwÞy=jT7Bóüi.ÄT„BÌF#Òê8¶*ÐÖÒœÎF(:›øxÎZ—Qnùû¸Ü^X#l6„O:Ú éÄ jøÐq}÷çס Ü‹Ì" Ê}¨¬Uàö²wá¾y0 ¥È)«ÃÊÝøxÅ!ü¼9ûr+CÀäX ïÑ‘\1y0žš= ã†ö€ÅlÑú¶}&ž|û{,^³娱EXñÐ왘4v(;Kº‰¤bÈ$Ž í„„ÚNdŸßŠÊjdæ`÷¾#Ø(k7lBßǃqs­J-ЉéKÌ,nŸ%æúoo÷׬\¹2lcán¢b°`›pÙméA„»9:¸j* ʬ&)ÐÿÌB·eä˜ =Œ—™ Dw«[\|b6`žbž«Ë¸¡’K •EEEåFâu‹uî<â°L¿xæHF|Ê£®…û40}6b}F⦊Wx^Ìœ¬éËCû É Ýsç çapJÚwª¢âÓ…9í|üÕ§ÓÒÒRDšg¡m¯Ñö;hUŽ!º¾!c»ßjµÊ^Ÿ¿ÅïB@á÷yü¨¾L£$nrò¤„¤È ÇvDv¹ Ùe.d—»PYã20 ¬f #ÅÈ¡Zl„Ä\ÚrËjSâÀï»sÑ!.=:ÚÑ«cLÆÆ%㦦ª-Ò‚Ë' ÅÔ1ý±dýnlØy…ÏçÇWmÅ;â²sG£oz§°ÏK„àš‹&¡K‡vøúÇÅðxYŽ" h†:  ½;Å¢Wç„Á¤9Bsd„—œ3SÆôÇÒu»°qç!¸=”WÕàýo£wzG\9u,âìQaŸ?sØtLNÄ;_|òª*–$‘n·N— N§ .§ u.Ü.7xÊ•ê"NK™¢´¬‰‰ œƒ;.Fô0ñ\1 80±Üá5©'CUŸÈE‹AjÕ•HZp!fÒݹ9™ezÉŠJYFÒê:7¢íq±`Ò‡ MW)‹=Ô« cÐ-@ÝgÑöj¬êü^gÏhÀɯ¢Ð½`Ft¢o[›õŸ‘ÖѯþDÙ@dÆnݺÅVÔøLœ›“%ÅçæÀr0·ÀãøN'‹Ä]ŒÜõdeeUŽ‹€ªŠ¸‘X¹ F¦ÂÒK ,‘÷I![°èƒÏ¥w^ÎÑ’{ß%N¡‰çÃRÈ@= ¤u‰S[B´ž"T0ûŽ÷çó«zôêgÔmbÏ퇫ŒYà·ÚãÇ~öÕ÷7\Íe¢>ˆphsš6g|ÃßÛÜNµÙ©«9,´Xi5OGt%p°—d´FPµ¦ÅÚ#eztÇÑJ„OsÓ ‰3Y`"ƨv‰q±!7…3r'D™mÂðt&¡”×xq´¨G 8RXòj Ÿ_…×ÎÁSª`ßÑ2üºþ¬&º%btÿŽÒ+%&-ñaа˜páÙ H­Ú†ï­CYE5¶ïÍÄ7ÿ]…ûn¼Cûw¯÷œ-2/þãN¼õÉwøà«µ¿ŸPX8agP&“lˆ Ç@€Ð”†Î©éÉåÕ™Û}b¢,(/Ë«DxÝx[]}Í%q# €È*cl¿hûR©ÄÄ ÈyœB°²¦‡C}»ÛEmÃi¶J¡õÒÀïÃò?QJ¨ækÚ•FÉ+¶IXðb´1®jGM`aEÛ êÑGËÖ+çOOâF.J~¿/t1Ê!h¿WëlX²DFÛ<^]zê÷#„KÆc„v¥ž"PZ>Ôðºþ8éЊ€IUÕ¨Ûn¸|ɧß,¼à³Å…ñ^í<žO9˜t÷Í÷ÿsÿ¾=÷lÞ¼Y/Áª—#I?¾nö­ý-Úê4÷7ã©b˜³€Å"7üí2[T''«ÁS[VVV‡úÇ#7ÊxêÄÐ.¹K²ÁÐ8×ßšÀÀØ(3FõiÑ}Ûªë<8]ŠýY¥Ø“QŒÜâªÐ(àöú±jËü¾ùÌF ÃúuÆø!éÑ?fSÓzÀl2bÆôñ¸äÜ1øqÉ:|6o1Þüô,X¼Ý~Fír®1ÿ×pï/cÍÆ­Á—Ñ$ JEõ‡N"¡€×ãäˆÝ ÕÓw‚È&E 2…‘fø‹‹‹9‡Y/Ûêq|—SIõ¥ªøÕ DªÅã‚•4{8D•v•ÌV±N‹Ù·³Æpã´¶)Õ×'–æþVÜÑ@° iSËr\&…¸ÁÖ¾§ººZ}èž?óòçÓ?ù53š½/ðîüý^|ýã]6}Â="7êCèØj­…¶×è‹Óæßú\‹99DëÿÆÍz¬Òqb 1wå`ûçãό۰ÏÑ®5ãiBUin1‚îäziô,½Í^¼u@ÑÔwüû›£úuÄèþAPãô`oF1ö-ž#…È*(˜ÂåñaÕæCø}Ó˜2Fôï‚ ÃzbÄÀn°4LLF®œÆ€ä§%ëðÑÜÿbö#/ã¬ÑgàÁÛ¯FJ»„À½ÑQ6|ðòãxåÝÏñá—ó´7TZTw …Ëå‘ÍQ8þöNÇïóø(øYÌ5uŠ¡C‡füµ$‘ôê$ @¥ !L5D W±„ñžk„„ÅmMm I’‘c„Xgÿn±þåK>: Aú# TVei>øFÀ‹Qh«qö=x(tC§i“°Ó¤yöáZíÏnÊáC‡È'ï<óÛÅ×><é‡ßs" ¶ÎƒÏþ{´Ç·ó?1yâð ˜^Ü-¼g°MÝø65¼­9¤­"S¶ÚˆÞ $ª‘QПd=tèÐÎ#ÇO›þÆ·{›ÇUëhp8ß¼oŸÝŽðž›§’pÏŠB¨%Õâ Ç"-y6:ÒŒÑ:cÌÀÎ Pê<Øs´»`×Á<É- làn¿o:ˆßþسAÆÈA]1axoŒÄ #£Á€Ë΋¦ŒÅOK×âƒ9 0ý†póŒi¸qÆÉF–$M“L¨@ü¥%yE~EQPc«´Ñšï¢mfŒ˜ŠÑS°Ó wÎÇ΃¹Øy ‡²  (€ËëÅÊ?öaņÝ0eŒÔgì‡Ñƒ{5 &ƒŒK§2 ùyéZ¼÷å|,Xü;¾s&ޏoÚ¤ñè–Ú ·Ýÿ8ró BÔU*-nD’·Co9pZ˜—Uk޲ª:@yUúöè‡PéçDIBmHLLŒÁí¥], w„L~~B¿hŠû •|³1dÔÙg¾=ÿp`ýd ²Zëðx¬Ü¸+Öï„Ù(aôà^8{Ԍڳ)l½²,ãâóÆã‚Écñ˲5xáíÏðÍ‚Exôî›Ñ¥#³×ôîÞ?}ùîzø)¬Ý¸2©´T PŸ£ÁÌ·Ç›’•y¤¢Ë°Ñ ¨¬v".>1¡j¿é½ÑHÿþýíåÕ®Ðh|êç+t¸õ=¡BÔzîOT]‰§!Fˆþð³o¯Z¶¹´ƒXßY#;z>yÿ¥uÐ"äµL zî´{·´„^zcr¤ÍVapš-V·ÑhòÉI•ˆÔàœ!’D%B¨$ɪÉdô[Ì&÷ø±Ã>ÒÚ ¤ëp8‰€Ç´ðCº´#Qµ~ºÿÎUŸ}ýcTy•%µ¸¼ŽÀ² ™¶k§õ¹æî{îÏ{ãõWÖkÏbâ½E—ÿÅ$!»pËS¡ªjà¸f°9¦ (‰¡’‡@ÄW\‘~íÿwKf)†¾ôŶ¨cÖicº¸?zçŸëÌ­¦?­´Ùˆ À ÅY\VQ@€S""EXL1 F èp¹½Ø}(Ûöf`ÛÞ#Ø{(Ë×ïÀ²µÛ`6Ê3´Î3gëLdYÆEçNÀôÉãðë²5¸ë‘ç1qÌPÌžu%¬3bíÑøüí—ðüëïâƒÏ¿a…Qiy}*¥>w¥=ž{zý¿räÈ‘ª3Î2z©ªZÀ¯ªd“x8P³2jþÉ(DœžžS^å1rý3!U½üLiî1D¡Bo‡Bíœûƒð?w%,OTì«o¼wI•/áÌ!ÒGÇ_éòeK³Á¢S{G !„R5Ô>ðæÜýñ@ÒÄ`—8æ´Œ®™Þ¿À<0@à\ª€p½¼ŽÄ@L®¾âê>þ¼|Û3–|õÝ¢‹?ý5»ÓÍ„¹/ÙÏ5Wß¿ßîÒ¥K—f"xd°Z²ÊfÛ˜tö™fS•@(Ð*U)Q…Û2ì`cjDðHl@Ž‹‹³Üqǽ 5Ú—2úh~mÇÉŒ®ªq7\y3(&Ú “RR¸aÃúÔ?ö¡Y™»ëõVï/¬Å®ÊD[ °GmeW^,¤ 9Q†÷¦Èj1aø€t `2ÜvÈͽG°e×!¬Ú¸ËVo†Ù$cìÐ~˜tæPŒ1°˜È’„ ¦ŒÇ´Iã°pù*Üùð3¸|údœwö8È’„Þw'úö쎟|.Ñ.¢]ý~…sx'"}hˆ÷Ѿ}ûqÑFEô¼P©dA¨ ë_EÑ«•d†ŽÒ‹ªœ2ƒ˜(+*ËËøÙäï! –J ‚údÎýlñAÕ•€----ùw>½wóAçÈU«[Å»zZÚW_üûJ„ÞÅŽ†¨ÞC§ DçqØJª®qR°§BÚ:O'ÁëLÍ/ö×@öx<†»o¿fákï~{ñ»ó÷Åp'ÿ|³5ùG_|bÿþýäææV#x¬€±‘öêQ«½°ZüÄÉ"Ú*/,EU¥‡ÿùì9^Ÿ2Ül6»&“W– É %FU…Q¡Äêöª±‡sª¢¬¯°æå··¾ðÌÆ)4! IDATuÿ¸ûªßÁæ-?OÆÐø±FÉ@Œ¸õQŸ£ÜUç ™U¶7£DYìVÑrXb"ˆµk3!Êj Çbxo YÌF ØÃö®š ׇ]ûbË®Cؼkyñ}Œ>“ÇÇøgÀb1ž—$‚i“'`ê9ã±håj<û께yÉùè–ÚŸ?Ý»¦âæ»@n^>ø8SJÉÀÓ§O/¨zÒ¿Óéô%êýÏ}ªlCðPýyÔÜ«ãÏJ¢1ÑÀУÏÀî—|ðãb,(,8R @›â!~ú*U%0ÐàÜŸ ¶r•Ž€éöÛoï5iêeWxhÄ_-9œ\XZ2CÏ?3ͽtÁ'k·mÝ’æ"ë[„fh9¤(Ž)ójƒ¤ªŠ¤½?ŽÓ)ôq¿A•58tãZPP ¿ò¯—Ýzßsç~þËþ(p{¼x{>ÿþÑ©“F¿¨( …vx¥*iI[5mTåöŒ–õiéú ÃR Ë z«F)­C Í9¼%£¨¨¨Áy[‡P#zóD#>©ÜÎêB/"RÌá¡ðúU”Õ¨(©®Ÿ7Š_ hTb"Mˆ2!ÖfB\´qQÄE[m ›PñDœ&n61l`/ Ø ·ã PŽ`óÎýøö§exê•1âŒ>˜2aÆ«&’Dpþ9ã1õìqX±fvï;€sÆE¿Þ=°pîç¸í¾‡°vÃ&P)ÉíàpÔÔ@s<þ½pÔt&ƒâTU%:àp^­ýÊ+¯L;wn.BOû³K!zéÃÀd°Ø“®ìÀM=:G{~ùb÷„RÀδ ú8Ä„¸Èÿ¼÷ÙôˆˆˆZ‹Åê2™M“É,™L›¢Â¤¨ˆty‘x »2þãÿfX«õULŸÕÝUœ±a×7s¾Ø –î½l!r7b?Sa…¶}Ë¥|^·ÛO$I% „PÍÍþLT‚D!U"’: G27¾sÃkˆÛrȈø…Ï€D6mÚhèöËçÎsù™¿®É°@Ye ¾^r¸÷œï~¾ýÊKÏÿLz³Ök¯‘;õH´.äTQ¤Õ„ Ïl_=ã’ë×QP‰ ä,ýФ ¾ž€º²Ò‚ºØ>#Í•ua²:46 ¹´rc²Š ‡eÕÎ@bEªÖ›Õˆøh â¢Ìˆ·[g· !&ñö$ÆD">&‘Öððc!(½1l`oàºKàõù°{ÿü±m7,Z {T$&ŒŠ c†Ãj1ƒ‚sÆ¥»ö@ddÒÓºà›ÞÁÓ/¾Š>û}{÷B^~^ ˜Bûx«°Dœ€”çäÅÛ­Ë*™]sÓ®<ó5\9fîܹ›”DRÈqJ­r²Iïo`>|xRQ¹7FÔ=wJ4×lذ¡AWZ\î{ñ“Ѳ, m~¿·§éTضH3n¸ ã›OßX÷óO?ìGð$à 0uOæHêëÇ%GkþvÇMûÀ-÷|ѧÑ—<¹œÇ«ùáâ°Î&R¥^š xbAPe0|óõç{Òº¦Ç éÝãŒ-{ p$«LÞcüâËoÖ>ô÷¿m`S©*…Úšrãý I h äTÉ(ãÖ‹{×Þ{çµK|>?™ˆÞþÑ$éÄ fã¦U»¯5s|8a3/Tï¯wmï —?J¼ÖÔyP]ãÄQª†p5%$Ø#ø˜H$ÄD"1Ö†„Ø($ÄØ{$¤c]LF#† è!z|>?ví;„oüV‹í’â1rÈ@X- ìÇî©©­C”-O?òúõé…}cÙÊ7‚m"-Oʆ„¬°!ê+h‡ }óåG[/¸öÑA?­<`€Ú:Ì‘± Å+àŽ(m ÔÀq¾&–ën¸uÌïÛsmÜûÅl2À[W^ŽÐ— „Uât¶œ[Œ‰Ä´q]²RYú÷;¯Z“ŸŸ_ vBa1ØfΣ¼`ª•€¨z‰%6¬Ó=‹G7 ªÖ/'˜¤S‹à‰“Ü«-Ñ&ã2Dá›…(á$‘çžylÃÛïn/©ˆîž_)ÀºmY–K&õsÅŒ«¼ß};§‚ªìLôÚ§þ‚ÙxõqFmdYÂí—÷wþóÁÙ¿åäää‚ÍÝr°yX ý£9Œf8qfmûÍ ÔŒ·eøU ¿J…ù'¸­B ¦ú áîÑIØ´ aîu{|È)ªDvaY¨#$ñÑHˆ‹FB,•ĸh$ÆÙ‘oGR| ãì053ŠÑhÀ}0d`€ßïÇáÌlDX,ˆ‹…-2Q¶ÈÀýW\4ÎùEUk2ÖƒmMž¡ÐBÒ«¼<ëׯ/¾ó~s­JU ¿±´Ê;`À€Ä]»v•@8Ö-K•Ñ–H/}XX“RÒz宨¸iHßeÉÂv#x˜–Ú¹ õãšÑ(ºvJÀ½’ÜíbŒîŠ’œÒgÿqãÖ¼¼¼J0°([„%J~”RvîƒØ¶,Ë>O8¬F0.£1×IQ}Éõ­APŠáê¬ÀÊ ÷Žô %º4"åïºý†å_|û³íËEÎU5Ljû~éÞÈ;®¼yž];7PªJºóVäæÂĨ4‹Úê¤åcÝš>,’Áì˺_~öÁµöïÏ@ðxær0f„31Í–>@4NWP£:óvÞà~øúYnئ P40QT EUáWUöYaŸýŠ ¿¢À¯¨ð) ûìWàó³Ï>¿¿ß¯_Ïï‡Ïç‡×ç>ûàõùàóùàñúáõyÙÕë…×ëƒÇëƒ×çKÿ 8Š_AQy5 K+ÃÚd8àØ£"°ÄÇ ]B ’âc‹v‰qh—‡v‰qˆŽ²Õ(ƒ½»wkt0_³.ª·lCPN€ªHô á‡F¹}®êr³QJp{˜Ä¸~GnôM·ÜqæÝwÍÎ@ðhW74ŽðO¦ÆÕWÜëÇj·Û£ë܈¹¾~Ýbjßx|^‚j!€™R/äêóûû¢¬’HD%„P¢ÅÞ*Šªøªú¨~ßþ½Û‹?zå…ìƒr¿lÓç祗ƒCk“«¯j%6ÿ‚m˃O{®H»ê¹?=‰N¢® Aµƒ!j0=—öçÖÕà< qqVUÕð·^³ø½O¿¿ø?ßnã‰?˜·Õöô oެpøH‰ç¸J mV…ÕÊ8“E’ì¸ê¼žuo¼ôäÆÍ›7P6÷¸ÔÌç_ÀxÞÜýAŸ K›”ekׯ<ø×ÏÈ¿l 0 žR\ô¥µß‰ß7FŠ¢ÂçWàå¤]½~?¼^Ÿöw¼||¾y40òú¼ðx¼pÔ:QVQ…í{ÂãuÃãñB’€˜è(ÄÚ£kf×;âb¢µk Ì:÷ßjG-Ö¬ZºlCàqÇ“ô$v._òÓŽ¡}§¦¯Ù’!À‘¬b\9eÜY–ç+Š ¡•«IÚæL×Q˜ì£Üí6âù—Þ˜¾híÑ81þC¦î*¿ßÏ#jÝŽ—ª· D<ž¯ºd'‚qÜûDE(·/$Ź~ •ºîºT#$ †]¡úqƒlðiÏ–‚qáù¦"ÑE&Bô¢âd‚ «Aˆ¾nþ¥¢õU\i`¨ªª2<þðKþñÔ[ÓÞùvKx½*>úaOÔÄéj6ú1Húwk6µQAÛµLßÃo7V–^7ãü .—+@VŠ^úhÑ ë„‚M ÊƒûÖÿ–™›7°kçŽ-~épÈI–%ȲÔdÞ«“IË×n£îÊÿƒm(<ú¸PǺ仹ßþxάÚU›Ûù3¿®:œüü¿_üàýwsO› PWÞVYºðÓ‰XDÆÇÇÇÚR‡Í^°ëôëÑîØºî Ø&ÏýÙ%0O(Eïù£e§­E(ˆ™HÃB(ª¨|èÔ„<©¡b!ŠÖ¶ŒäçtˆYPÑ^áRX¡ÝæÇeèÚÓƒHˆ*ëÐÁƒÆ9Ÿ¼ºöŠKfOüván ”V80oñ¶ÿoïºã«¨Òö3wnzrÓ IHMqņЮ ÐEô³­,º*Š »¶U?ö³!(p,(ˆ® ‹¸¢`eé%BÞB ä–äö:óý1sîœ9wnH. I\ßßo˜pïÜ™93çœç¼íyuto›ðDÎÆÛ1»«dÂêXQX©‰x`hçü¹3öþ´øÇýã´¼Ÿm>m‘€øXû‘òÒŠŠ§Š ºjr»·gÒ`{‹ÏçƒÏïG|œ’O¶v}¹IôÛBšPüm09ÓOZqx½^»éôáêÜìäKjÎX[wºõ¯GGGÿìõz‰³–˜u:‹š®â$¾óÞôáó—îȦãîoP`yÿãUPH€±ØÑÇëxÎÉô¤¥Æ“‰ä|MŽò_U=1²z m!õ̯í—ã1×1=õØðm ÄGW+ouPÀ#"Ç9-*¡ü NˆÚ¥GvO“†ÿ¶bëm/±Ù¨­7áL½µuFÔÕ›-™²R HKIFvf²dª £ÑŒ•«–•Cz1„"¢­„àÁUñø—Ç®ùèŸ ‹§Î) j!ß­Ü3õƒéw=ù×Q³¡î,"ÇqBGÔB탘®â$fò±W¯Ùì=—^˜زqå·ÛM"“Ȫ  F ,™ ^ÑZÙˆ©ÈCmTèšó€’¨©z¦ìê”Z³t3Í r¡‹ †äòj¡"ßWDȉOG ¢?ý䣪‰ovKí]”Ñ}ÏáZ¿ð×kIíæþZü›ó%í™…›¯éè–í*/]~ê‰G??äõz-ú·hÔCñבe‹ÃvYÑ*ñ'Ê'®¯Ü´ìÇ}‡«ŸëSRܦµA·¢³ÅŠZ£µõfyo™:jë8Sg„ÍnC×.Yè]ÒMÞŠqë ëƒI…Dü~?Ö®/Çâ¥+°|õŒytŒ`:¹m1$»6á±i a£°\&L›Õjm8²¿j_¯¢¬+ö>£€_öžÐßyÓ-7&&&þh·ÛCe@¤C™²4ÂviÒä×'½÷ð—‹·fÑöæÁW˜ï»gt%”ZN(9 ”ôot:]’æQ D,P©È’\è Mðåšèôµ‰7 … )Òt6–êÔÔsÒÉçŠ $l=æöHF!¦RÖ züËc×Ïü|^¢©ÁÑåL½•9QÓwY5pª qµ ’c˯ª¾nè!çÑ’˜‹‹z抽 SüzÎëõ¹­®¯¿œzdóæŠ3PÌ¢f(‘~4p„A–¶=¢y €øXÖý+¦Ïþüþio¾™´Éê\ß»ÇëC½ÙŠzs#êL¨3ZPgj@­Ñ‚:0êMføý~rèo—ÌTô,ÎGïîxíåèÕ½ù¹Ù× }>Ê6mÁÏËWcéªÕhhh„( ¸cÈ`ÌûvÁ&ÑÛ°Ò j ó•V>‰Äq@ê4oL·aîüÿô|ë`M*ùÝÜ+³gýkþ_‡Ý=t2”6m?ïˆþ6d7€áÁ‡¾ØìÔ_~¦Î ”0\ò|ÈDN'ÛÑ‹Pƒ.Ô‰ÉÈí’•8jÔ¨¾ƒ!Ç`04&$$8âââ Óé­P“ÂqœÈqt:(çóùøqãÆ5±¢ 2y-_Óг!›È$ŸüÛ®þtö7·NŸ¿5ÕéòÒ¿ ý5ŒD˜"Ý f´yÜgk {ï³WŒ +1!™iI!Ÿ'ÄÇÀ'âõbRbŒ˜œ#ÆÆèE¯ÇðºmÞS­sC鼺ÙSÖåòNÈ IHý¹RŸn 6¬¯/bð4Dž¨üò \·â_Ÿ•ß3ì•—IYçD¬v7ê-6-6io¶¢ÎD…Ù‚F«ƒÊ Q‡ïFñ:äàÊ~½Ñ³8=‹º¢Wq’ãµ/H‰ÏçGÙ¦Jü¼b-–¯)E£Õ̦Dètºä~5í3HaqdâjK¡éªÈ ŸÏ×P^¶l{ÿ~%×mÚ&Gd«å+÷d^9õƒéw?÷·ÇçA»d¥ØB{™¨+Rƒ#€¡oß¾yw {ôé‰Ó~NäÛäy.ín|pÂ\ÞÄ®ë’ÏœøE¨ãôe¡ýv¨„ηÑÀ®‡‹lŽÀüeûórÅrUåpD0Ùcðµ}í}úôy®¬¬LZÿD¤OÞ´G] Ú 'ð! €¸ÝnýóÏY5iê?o™úEYy72ÒÏ£Îi=b®#µÀc ½/@ÙBG¾ÑmÐ(ÞYÈõý‹Å€e¯Íd6{tœÎÏIÁ›±Ñ[½¯Îc6›½F£Ñc4=v»h¿Ä/G;œPú/ î°BÑ6M;ºŸxÚ =,£à zcúØ}Sωžp$®+fuºyûÁ<™æIIAºàv» Y‰‚Èi´7”ò$ŒhDþ—ÌâOŸ>­›þþë«G~~Ð̯7$Žhk€¡"1(Ó¦?ÂgN¿³Öú±Z'é§Am„Tclq›DAüáûg8`†z’'&Ò³'àÁÑ@Ôž|N—©¥µŽà¨e7­M¡´€“ÛË¿ùŸÕÃß½mÐõAxh (Ü>?ìXlni³»`±º`¶:`jtÂÔè@£Í);žÂS˜Ðà Ê%cEQZùçgg ¤0%ùY()ÌAn]–šØq{¼(«¨ÂÒ5°ª´v»#¨ÅÐ}‰Î°çu:$$e¸ë«ËæBÒ>Ú*yPKh3ñƒSLҤמÿÏ3ÏOºëí™Ë‚ä£/V¦¾1vÄØ­[6?³}ûvÖÖN Î7ˆhÔ'W RçÌ[8öÓ¯7ô²ÙœÁßõ¿¸È/ØŽíY³zõa(9„’šø¡Âxý¬DÖ@X‡9í÷yÍx.!§ã„Zm ¢àü~?™T%bº½Ò=©ÌhˆÊ‚…5eËl®Ø$”ôø!æÎA¯û~ùöxNŒ4#Œ Œiˆ(1(öd¢eÆ!†¦.5x‰›´…æ—“~QMtQàyÞ )´–Ž$4ªîE$O\ucxðO÷bÞüù úCzù¾ó1ñ†qr?ˆ@bUUÕñEßÎZ÷ðï8뛲Xrð[ÓÊ}ëÝ'>4üޱF£‘ííA‡™ÓÛº=¹t¸®@Ú‡zÙ¶šk= '/ÌË\”vü±‘^ ÅÁ†%êä6yõz½§ß…¢Ûí•¢Š8ˆi©Ê`eâç2Àh£WÏó¾®êå5Y¬œ(’yÒmp‘Ox8âR}{çsß þü¼ ÝëûzÉ1™é)”xÿséŒj_ ðÕ—s\ß¼0¦ÿÅÝð§€»²²òdÌŒIy<ƒ(ŠzžçÝ›W¸k:X#s@HB¯ZƒµÇ?úpʪâââ“'Íçó%‰¢-[‡ˆ–/ÈãLŸM³®Ãq\@§Óùyž÷ð<ïܽ1ʹoß¾FùÚâä‰/ÌÕëõñ8½^ïª\鮃FÒX³¦ÞKG@‘ï\ã_þ¿E~ü™óÄÑCÄ,C®§D©199Í•E+·EC2mžw÷䇤@j“E €Hó@½^ß%ÉrÐ}’HØ=¾Í€ƒÈÙ–ñ"¤Ah}ö_f~òêW¯½5÷ÁÕûÉ— B¨ÈiÓb‚‚("JÏ#?+ݺ$£¨K ŠòRQ”›ŠÄøÖïN—e›Á²ÒÍ(Û¼n·[­iP .”ÿª¿‹‹Ån*¼ñúÿ½àäÌóóiöiB i„4 LjùÇä×Ë?š1+ådϼ’ûŽëàt‰7eaÉ‹ÏLxÿâ~?Mþðƒ©åPOª($yuwÎSÏŒ´)„ØÒIÝqCnnnöÌÏ¿zsöwå—ìÜw"H7 ×óxy|ÄŸÏGbÜéD@BÉPQjV«Õ¼dÉ’½´^þœ˜¼""‘ #4€¸Ø«««OUWW¤Cª© eâi‘_‚:¡Ô ÅNêÐ𥥥NH}ÚH|DµW£ÏÎ,ò^ýò¹cŸ~bô\ùoš¢…Gp$E–Òžâ÷û¢¤Bj¯ª:;‘U$!B¯×Û¡ðª¡$ciuØíl‘m DšUb!Pc;U9烩/–<òä»Wo>Ü 9Á*?–þ1ÄÇ  ;Yf'¡[—däe&繬֧˃ÒÍ;±¢l+ÖoÝ ÛC9°£N”áN‹z^nÏÃ÷߇©ïýãKÁq|¤•ƒÍø­-Ä\B&”è¥hQO?1jÅWß,J²Ú9GOÔsàtº1~Ê·¹}`Є÷§õœóÌSùR_ yªºÈ@hœ}S“ ]JÓ¾ÚdEBuㆠÒýñg^ž4iúâîuÆÆà9x^‡¿þƒýÝ·Æ-«­­=u –’€y&z¹-v(¦-x@gèG¤0!Öt’§U¾¶ ß_<¤wCÛÏéë5÷Ú4P‘k[8OÀ×5}ü¹´W+¼P@%FþŒhÆÄÑ­LŠè¼QMI à!iÆÄ¿¦i¿Üž| "Ïón(´6$’Î îsýùXÔžÕ‘ ¤ÁV}ì—&/YP8í’Ác Ž×ÙÈQÐCVZºf$ kf 2Q„”Äèf‘%ž+ˆØn”UîÆª ÛP^µn'IJWÑʇ4\½‡ˆ›®» -Ù`¯­š à¤Ay¾çÌíij!ô¤¬ ùа§ÏüâÖ²ªšÜµ›öHeŒ|/¿ûÇ×ýþòÒcÑ5=¹ñˆÖëÚ(h±;Ü(ݲ«7î@Åöýðú¼²ƒž^ h˜©‚Š´ò¯¶6¥ì\y9êÍŽc'v-~‰üñŠíH€Ƭ!ãt:¹‡öÓ+Þ¸zÔ}7öþìß«ãH?[´²2qý–}Ç<ùÊ…QWúÂØ§§:tÈÅŸ@k#tr]SfÚÇÁ:\ ÀGÂäLÔ»ïå|½xSqŶ CæE½ …á·ö«}rÌËêëëéN¤[Š“L tA¯¤%?„hm-ª}aMXd¢uCZYj÷ Âͽk'çbý­Ò^ªÏÊ3¦5/²2§'?Â,Сkgh‰ :H  uâ"GrnZÚ&*7'œoCËO¥±Öm¿ü­–„2‘Ä«Z1àÚöü‰¯ö(È™ôÇ,¬Èy ÞIDATkþ¨×2Cµ™¢ÕîBÙÖ}X³i*9ŸÏK9óÐ&¨0U•p\ê+ Ð &­ËûýÉ)9¶Õ‹ßक¯§=ÁƒÖ¡®C¨“S|ýµqn»ýŽº‰ÏŽ0iú¢$‡S².˜Ì xkÚ‚œ‚¼Ì{'¾=ãjÎo[öب³m¶`}w²º¥uZ«#"ဃ8ÊcÄ=ÿÂK—]{Þ\²f{É'¯ÎŽcÎ{†\éÉK<0üÎu‚ X BEMÓ„ä¶È›ê9=hYS]D¢æ,˜­“1Íš3Ø6ç¨æœÛ«"t[Ùö‘vÓ1ù¶vF8ƒz ‚´SŒL(€ò1’gHo*c{'újI³„ò‡8œÝõë¦Nyñâ‚ügÿþJÍÑZ Òhw¡lË~¬Ý¼[wWÃï÷) Aá„úŽÉ“û—Õ09‡TJT¢¯~wAoô¿ü*ß”Éÿ;A ¸¶AšÀÚ#êJS˜¬a²"¤ új’ùiñ½{vY&½3mЬoÖ§í=t2¸>v¢–{qÒÜü¾½ ùçÜï'Äò‡÷ïÙ±èµWÇo´Z­´o$$®ô€ Í öø˜‘#G ¹íî»ø¨øK6ï¨.üÛøYIÆvƒ§G±WnXV5åµ™» ÔΠÁƒ¶çÓöb"ô½p%Ï$Ü`=§AÊ€¨kfÛ æs-8ûÈq­Ú^Æï( ÅöúÚòñmŸÓÚ"JYð4ù%ýmd>!¨„Ý:"hÐÒ¢d *ÁÐ à¸ßzhá³cG'ŒåѺýÍtïHA¤ÁæÄúªCX[¹ÛöCÀïWrJdÍ€LòÍ3SÑ aŽ…Æ±¢ˆ>=»£ï…{¦¾óò¢Ç¸R¼¶íä÷'ÌÄ€ÂD ¨'Q?ßáǽÞw×/¿òÚå÷½«hîwë ‡ ¾_öVóc'VÆDG^Ûÿ‚kß›ñU]š!î¸ÅtzÝüÏ-]½zµÑçó…[ɪ|={öL=ú±¾}.ºìv›Ó×}ïÁšìw?[ž|ªÖҎؘh= ®ºéÖÇ ñ´G¯çÝzžsEéy§^¯sò:8.Æë ÄùüBœ? ÄûBœÃ鎩ÚYôéwsb]n´$:: ÷ßù{wqžÁ4cÚ”ŠÊÊͤJÞh‚Røg²‰2_zUN?°¿k aLD|V„Ñgu¯üîOüùtÍ„io¿uaqAnÈoH—65:Q¾ó8Öo?‚½GNCJ&'¥ ¨4ÕÅ•cT¨c Ð4u,ãûHMNÂÈ?ÃÇŸ|òŸÚƒ«¦8Étr>y®ÎI!÷K:©V‰V€d«ÕšôÂߟ]›šššøØ˜Ç{ßwûy^¿.qËÎ# e»ôN—¶ö@¤¹æß {uoº¦¯335Þio4š¿ùú_{&•o¬‡ôŒ ›(©g@1Y…øR’T’ÅbI|{ò›bxžzÛmÙ1´$:Öb´8Žž¬‹ª56Fåº+$’‹=Ï##=™)ÈÊH dg$û rÓ\1¼`Û»{ûÉ&?¬¶¶Ö¦ª"ð U„]—h­JEý›´¹ÐƒŒ2xºåçžnIù[±ÕëyD&2Çq¢N§ pœ.зw7ê°vAþÛÃëàxù©a6ŸßÇ‹‚¨!r¢(rªöPçä8NÐét z‰Û×Çò±u*áZcüQTܱÒèò :â/c~(gYU-v>–i—%[ åÕÒ"dÔ tgÓý;E/ŠäbÈM×áçe+÷TmüþcÑcÚ ÉßÑ91«³NRd…<”: „7+‰Ú ò>QþŽT¹‹•ŸŸß·o_C^^ׄœ.y†ôÌìĸ¸øØ€Èñ‚½Žƒ ÓÁ/ ~ŸÙdtÔž9e;sºÆvôèQgee¥¡õ H-!ÓµÍÙ8>:å¿]¨9A©%È _ÞgÊŸÇAƒá¶„ö6zH\U5"­òqñÚ RûRäÏÙ„QÅ ¤ÅéiHsÍI(U1IMšNÑÏ[@U‡‰‚4 e(Ðz½ç¾'F”\Ð?qîx<ÞI\Ð †ÁWóئ@ä,Ç&ÆÇáŽ[®ÇŽ]{jÖ-û÷LÁuj€^¬’¿£ÓéÙ¬hÐ¥“AM€„Ј$@ŽDùï¨A$Hu¢"o¨mÝd j¡Mht-R5PR³IU~Pý&ªÅ ÉýI„´¸Ì-o©òç¤ok†8G*D 9æH9©+n—‰ƒÔ†LyKƒ4÷Ñ€HŸ—„t;!iÚF„æ5Ñ\e^Ãn5 žãHü ‚«®[BÎeÃxðñ»Ó»öŽ.­:U^–â@?[©PÀ‘¾kŒÄò²3pãÕ—áБ㠋¿ÿb¶`¯^ 8ŒPh :…¿£¹Â°ßÒ+Cºº[¬¼Åbõ•7òaC%T)4ˆkà ‡>¨Áƒl¤]Ç€MZdù€:ü€úM¡æ‚(Hý( Ò„K62Ù’EI{ƒÚäF(`è¢e„e RRä- Ò¸!ÙêZ¹X„º„®áCˆ=iž²NaùhuBVD}͆.º{Vñu#þô§‡nÊÉ+Š>tÚ†]k˜¢RM™´š!̱Q¼7\Ý%ÝòqèÈqû7_Ï^èªß¾ÀqH« +(‚¹Îðâ" u­d?¢™hmZB'WiE}©Â‡Ãl¤Ží¤¤Éþ~µïä×,Œ‹æ=#Znœü9½Zoo¡Oh!1·ÒË(ÑØ‰¶ÎG3FÐ,Ê´ŸøW:EŸo ž<Ôš àru‰…W–\rã 7Þü»ôìÂø:‹×ÁåvË`ΤÕ<3U^v:.èQ€è(õõõ k×®¨4ŸÞ»ZtÙ),—G¸¬3¼°Ö0@ÂRŽë^3[°”)ÔB„6a± ¢µÑµ ÈoèÐÏß´ŽN*L{šÖfi-¶# í ¡@D;”…½¸"à¡•X­ŠFƒzQ¥òóu–>ߦ¼ˆÚ?BÊ•&CRcӹج>y}o8ð–þý.î—Æñ1¨³8p⌠V¬vlv'(Q@l”†¤X$'ÄÁ‹ì´däå¤Áíö›·l9³fõ² .óÁµ¢¯ñ”ºl.A§yY­-aL[, Ðì¹4hÐþzð³1ÿ´9‹®°ÆK‹òpü „vÂrƒu¡£ÇèþËRøÐc„ÕÈÐqAŸ“ö’swºèÂó Á‹)@ÂÒy'BÒNR¹¨¤\.&½;ø¸¬¸xCV^^AN—.]Ò³³² ))©‰CJL mÖ—ÉbvÔÕÕ6œ:Uc:uêäiŸÇ^€«Vp×@ÀCÓ^ºoåÿk4޳‰Ðm¢bÿ¦m¼Ä„„&±€¢ÁwñÛ{ùu "l?êŽópÂæQÑýÐ#ÍiÖ"‹ü¿Sõÿó Á‹ªÃKµÔ[¢âÒª!DG4§Ùn}õ¹Š¹3½ ó)UÉžÍ(Z`"j|.ýç·wò«–0‹ ã‚­þJÙ·´=šc¡³ƒvÕ 4mgM*l\5Ë0Î,Òé^L{K›ú›û¬E­¿{'ÿ]r–>Õ‘EÕOÃÑÅ eíÑ>.¥R‰G'¬V«¬¯¯ã]¾ýñg:QÈxÆÅÃÊÊ Æ<Ï#Žcúý>j~~¾àyÞq­µ«”Ržç†!õú}í˜~|È™WO0éN’N§1ÆÇñÐ÷ýûÛÛÛ7­>$cÛöÌâââr.—;žÉdžÝÙÝÉ;Êy~"3Ñó<¯¦l„aøÀ÷ýêÆÆÆ~¿_"ë_zb)ÀC@þ“6þp6vûl²IEND®B`‚OpenLP-2.4/resources/images/general_clone.png0000644000175000017500000000101712657640340020332 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ŒIDAT8’»N+A †?Û+…òH4§ â Øw€¼  …î4§==u$ Aˆšš@ * +¢T‰”ÍÅ{Éd—‚‘¬ÑxÇŸÿù½üöøÝêºûk˜ˆ€½Ï$鸃™¢"ˆ*"’€ªÊÖæf ¨Èï$ ½÷w4OˆHÈλ"²ÔDfî¨*Ýn—8Ž5ÌVJT„ÑhôWD¼èxÖnÿ‹Š.¢ŠæÒP¡T„<«Ùl6" ,Ôbf˜YéGù= D„5€€¦º2¶ (MTU$ß«a¡ÕÚ\3 €æ—-IÐ=ÜK5èPÈ­W+áÛ• Ôî­ýHá*gÿÄÝIÓ”išúóËs?WU %†Ââ~¿O£±Áÿóóûë«ëK€à8÷ãøb2™øt:õ4M}>Ÿûb±ðåréãñ؃œ>Ûîî¾­Vë¨Ìf³5À×p¸ÔX´..TJ”KK%®Ÿ=믱±Ù%úŽóOòj’½÷îé“ ³îzå€YË×–®›Ÿ¾aëþýòÕÕnßJG"é8§„ˆ$8œŒ„bMy…椚mÛu:fº´.37®ãÍ#ê;;Å{»-MNHÕ×Kðâ{4Gîà“t¼Ô·ÌÈÏŒÊÜZÒ¾÷i[Ù§içcš»º]ýá‚«ƒ5LO)Î,ËWDÊ\·qO5AôöëZ J¿ôÝéAñ†¤tW?úÑè©´·ÌªjÌŠÖR*ZÃuŠUJ”‹K,SzŸ|@û·Å;zU©j&RC 1 á9&BV×säŸOÙ30¤uÇ.™Ëç~uTm2å©ÓCfw)Ä)°ÆX8ÉZž‹Eæ&ÙúÄë¶>¸ËÍKçÝúú%ÕW?ví›#jSv¼vÂüü‚Ÿ@ü3Ûyw)¤’¤ænâ)bu¹Y²WH¬²ÁО_d%@Ã统·–‰­†”«ˆoЄe.|À¡Q¦Q‰`ý[~‰1|õÉŠt]Q"Q ®dµÌå?8ÈÉ›ü‹ 6 ‘@ª›–z¢#Ì”Y@%ø€ ÿ˜»Z[QIEND®B`‚OpenLP-2.4/resources/images/export_load.png0000644000175000017500000000102312657640340020052 0ustar raoulraoul‰PNG  IHDR(-SsBITÛáOà pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î<äPLTEÿÿÿBˆÛBˆÛB‡ÛA‡Û!d²#k¿#lÁ)qÄ1f¦1wÊ:~ÏA‡ÛC…ÕH|¾KŒÚT“àU„ÁhÄn•Èr¥äx¨æy¨ä~–³~—´…š³‹¶ì”¥·•·á˜¼ë Åò¡Âí¤Åì¥Æì¦Æì©Çî­Êí¯Ëí¯Ëï±Ìð¼Óñ¿ÖôÀØñãäåæçèçèèéêëëìììíííîîîïïïððððððññññññòòòóóóóóóôôôõõõõõõööööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ.` tRNS<>?úüýþ /ŒIDATÁAJQÀêþ/‚‰ˆ ¸ô<Ù ‚;nt2cUH öÃÐ7ï7sºÜ|¤M’gL^¿µíj⼌ß];k­ðôð9Ùv™•°ßLBçÔ&`$fµI"äb€£&ÛËè×\§ûö÷ ¸ÛÚIÖl€YÉô´÷ ÐS§Ó÷íä ’$pÇ?´,!Õ€‡‰IEND®B`‚OpenLP-2.4/resources/images/system_help_contents.png0000644000175000017500000000125412657640340022011 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<)IDATxÚ‘¿Oa‡Ÿ÷îýÑ(­€ ‹‰Á„ABÂàd¢¦êà"‹ƒÁÄÿŒ‹1. &,˜è?`\L0ÚÙ  D ¥¥Bï w÷z´V!\¢ÏòæýÞ'Ï}¾wÂZ‹èžÐ·=Ï£’>§Çù'~í®-ÞŸ4‰Ï.rïÁcþ‡ÅžO/Ž¿ësÕÏóÝ\»r°o”ÌÈ aÄn`i£¥ß# jÔû$->æzû¯.—wÈš<éî>.å=™%-ÙŒKgJ25½Â\©ÀÏòê2€Ã>¢ Àurš‡×YXõxú¦Ä£—K|ýáóäÖ£0J¢”â° q]—±3ÇÈh'º­ÐqøÕ‡ ÇsšK#=Í»TÉ>¬µÈ¸Áë™*½]šÙ%?> 5/¤0œKëA«L€8‘˳÷eŒtèé’ÜOGÚÐæD¯d¶ÆoN–ÈZ@ uÂ7P®$3ÆüI‡•Š%¥5®Ø,¥’H‰c-i£iÓˆÀ h—Â6*©+]|¿ŽŒO€w ‚m˜,Ú–àO6á/ üŸÝF+”**^!ŠgáÁ¨p¾mÕªxÛ›”76Yø²H›™y±Ô=ï;À/»Ù¹VC}æIEND®B`‚OpenLP-2.4/resources/images/openlp-logo-48x48.png0000644000175000017500000001246112657640340020572 0ustar raoulraoul‰PNG  IHDR00Wù‡sRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ8 N£u±IDAThÞ½šyp×}ç?¯¯¹g0ƒfpß Þ—$ÓÔaRqdIeïÆ–×Énì-Ù²+Þ8G9)g½ÞÝÔ®*•µl%±ÖI[»›JvmK¶eYÖE1¦%RER)^ @ 8f0€9ºû½ý£g@ÐׯGí«êê‡F÷ôïû~ßßïýÞû¶àWØü­;ÅM[7jº®iåjU[*å4P˜¦O™J·Ë —få[¯~SBõ†g›¿ªÈ~LüÜ↓у÷Yƒ#[Â/Oµ»Â¿kýððÎH´iÐUzZ" ©¡dÕ2‹ªNMLLž¾2=yd¨;yΰ…ƒßû›2 Ñ÷ÿºFïNô Œ¡ÞÓšî~¿æ‹oô…âdŠŠK+¸Ž’6Òqp¥tL]‘б4e— K…ìþ|nþñTsôø³O<<ØV÷}Ô¦žøÕЂ½È•Éú_ñÄ¿÷Ÿo.Ú¾»þ¶ûð'õÅRÛ®"šB9(×R:¸®r¤ë ¥ƒëØ8NMI×®cÓ  gù\1?ÿh<ìÛÿì_<pI)ú„øå Ýü1Æ_ÿ*ûÞûé=»o¾éߎ®Ûp¿/Ú.ù"Ó 9eW(yÝPéz#®\·~MÕ¯5þ¯\DZ•íÔ„eht´DÀY9éÓœ/~óÐ÷¦/¼: | Tuñ§Ú§ÿ,ã?ðÉ'8üþÄïÿõïÞwçCwÞvÇÞ¡Þ6ÑÚP½­!‘-UÄ\n%% PÒE)Y?ê}éõiôë÷ \!P8Ž­2‹QqTÚ4ýïK·u¶ ®Û651vôn-Ø…²‹?€û?ûþ÷Ã÷´ýÇ¿ùà»n½íOvnݘ4 CI¥Ñ÷3Ü£Z³™ž/`;‚\"å*”DJê×PRÕZU-æ‹B7¬ÍºáÛ±eû­óçOSv-Ô‡²óÿ<ÿòw¾Á×þâ^ ©ïÏþÖöÝzûGºÚÓ†+A„! ˆ†MFºø-ƒ‹W)Wlru´×z#¨5À¤Ï[¥T±TUÛi7Më–m;ßµ8vêÐ[ÊΣùÓ(gég¸éc¼úÔgÚ~ãß=ö;:z_, ŸÒ5@(!„@Ó àÓìŒÓÙaüÊ¥åJNu ¬1ºŽ:¥ N-%JR€RµjU,/—›tÓܱ}ç3çO>ë/~:-ØËâä÷Âøÿõ` ½å#yÛç—Õĵ%Úã~‘ˆ˜(@…ç Ba­6¦¸8“%W\FÊ»…@"Ph«}Öü¯qŸl\©ÇÕj5fYÖæ[o==~æÕÉŸI¡ÇøÔ—?ëÜþ™Q”’R’[ªˆNd)•mÓLC€P Jiš  °gk³™"Wær肺 ãX5X«Ïš¾Ö¸G(!@ÙvM Hš†™nï\÷ê•K'òÿÅÿ`~쩟L¡;îýôž;ï¸óó÷íÛ•ìNøÉ¯8,Ul’¸ÒåÊ|‰cãóÄ‚&-A@¬ñ†>KçÖí}!8}aMcÕpíGF]C¡ Yˆµà@Jhj¹¼,bÑè i¹É·¾>?ö”C}Žøñć~ó|Çž;öš¦¡âaSìêŠÎæ‹¥*+U…¤R³9yqÉÙÝ­a"AkÕš¦¿Í–á6úÚ›yãÜe¤tÑ„\a„D[ë AŒB¨EB(¡ ¡òùœhN4oÙ¼mÏKçO¿:åÍbÚîÿä»cçö[¾Ð×Õ&¼TéµdÔâ–á8鸟ÜR•ªm#¥d6[âØØUŠt"„ejhõ¡”‚îtœ]z8sa†¥r¡V ó nðuôA O Ïkš(©|>3P­9f"5üƒÙ©SPפ†îJìÚ~ËgïÚ»o“T(á5„^FAŽû¹e$IKS¥r Çu¨Tkœš˜e|:K<â#öá3õ5ñXwläÚBŽ…Å"RÊ:­Öï¶Ö×ðJZš&D±˜§½­m“PöÓ—/¼yå Ý}÷oo¾u÷»¾ØÕÞªI¥Dý¡5A J)‚ö滆[iŽù©9.®”\Ë9zfŠ¥• ±°Hȇ¡{”‚ßdçÆ~W23—¥V«¡k ƒ½ÑP×cA° ¤üš@ù,C“JsZ;7üÓÕÉ“Žn»ÙÚ|ÿîw¾û]–a(Ÿ© Mu®RçµXÔÒÕbë`Šd,€¡ ª5›SW9{q”$°ˆGü(À• ËÔÙ8ØE,`f6ÃòJm m •V=ÁõÔ5!ŠÅ=Ý=½…ìÌ?\:WÔöÝõÛ±xûÈCËŽÖÅ¥ŠX®:HÀoiø-Qç5žÛ×xF*…® ºSaFûZI5‡‰Læs%^;y‰ÙL©ñhˆHÈÀq½gºRt¤“dó,æ‹õŒÃâúûA^ï«DSShjzö•eÓüñ¾þM{ÿÔ1Ãd–ª\-T˜/U™/V)–m¤R„&>ƒÕ ÓÈûà1tît˜¡®ºÓM4…ýŒ_žãØéKdóE4M£-C×À•Йnb »rµÊÌì…Þ0¸1ÉÝàÐ5®kH×É–¶RoOï3ºß"bÍ]÷lºéÞ÷M/Ö”ôØ‚#ùr¹B™ÙÜ S™ù¥BÄB&>Ó{“÷2kR)LC§£5L_G’¡žVBAož›ääØe2ù"‰h„d<€í@"d¨·‹@ÀÇø¥+ ¤¸šg¬¡ t] k×qXY)“ËÄäÔ4í¡©ñc_Õ·ìø5}txÓGëž»võ$üÄ–°˜/ÔÈ–lV*6¥rÅR…Lq…™l‰ Wsä—kø xÄÄ2ë±QŸÔ\ –¡ÓÑ×Þ†ÁNL]ãøé œ87AµêÐÝÞŠejø,“þîvºÛSœŸÄvj¸®¤R©P,-‘]Ì3;Ÿen!K.—§P,Q,–èèèH^<ûÊ_‰hPëjol‰j$‚a1˜–Ø®Äv¹å—3K\š+1q­ÀJ¹‚ÀÅg(B– èÓHD¼jt×ú6zÓa„Ø®—yWá÷™ôu$iK6qó–AŽœ8ÏÓ±ÿð›üÖ½·±kó ~Ë`ç¦u¤šã|æÏ¾ÌÉ3㘺Àvj8v ×±WIRz³¶cÛ”‰wêƒÃ;Ìþþ 8:2’Rx®ó™!¿N"lÒÛdKo·oH±¡'N<â£Zµ¹2_b6»ÄÌ|‘3s¼øú8¯½5Ei¹Jº9B4d"4R^Ö2 h(ÀHo[Ö÷2}5Ã#ÿ]ÎM\aÛè ‘H8ÌÞwîàê\†7NžÅÐÄõu„º¾žp]Gu¤[ÅÕ…Âwõ¶ökdý®?X78¯gÇ:§½ Õ5ihøLdÌǺ®&öljã=7÷±©¿™¦ˆŸ•rL~™¹l‘7ǦùÖ;3EµfÓÞÒDÐo\¯x5A$àÛÖqçž­œ}{’Ï?ú5,ÓbÃp¿ŸÛnÙN4äå#oxÅ^}T_üຎèhK1»PøžÞÓ·ÑÙþ»ëšÖ¸>‰ÝxÍ;À2uÒÍ!¶ µr÷îîyç0£ý-DCK+.Í,ðê›|ýÙ#¼56…”’ÖDÓÐWSY4bßîÍìݽƒ§öâïŸx–Ñ¡Ò-ÍìØ<Êp7‡Ž¼A¹âí¼4?ÒuèhK1›)<©÷n7zzGJ*…—º´µF7ÎjuBY <Šø}=m1nÙÜÅîÜȯïÞÈpoŠhÈâí˳ì?t’o½p„s¯ €H8€&¼B<âÞ};Ù:ºŽGÿñINŸ¿ÀèP›GGصm#'N‘Éfë …ë8tu´17·ø5½op§Ö’êû`wßú®šëâJ…DÕÝ]Ͻ«#8ánÔK^*ÛQü&ÝÍܶc€u×N~m÷z;“,d |ïûGyöàQ¦fæA)”Rض"Õ’à}¿~3±hÿçÛÏb×jܼ} {nÚÆôµkLNM{-ÕÙÙ%f¯Í|Y¼û½hD[þ!:òÞLEÄo Dü‘€F$ òi˜†À2–)° Ÿ¥yiÐÔñY½Î å…Ïj Ôèk:˜ØŒOÎqüÔ8GOœÅ±mÖö°y}ñX„DSŒÖdŒÓc¹4u…›7 <ò•ÿÉ7ž|Š|6Ã;Þ±‡·Ž¿ØoLNOËHE?½qÐeb±¢„@(Rºõ(Cs š‚°Oö Â~H@'4ˆM¢!“ ß `éø-¿ÏÀo™ø}Ÿ‰ßgbÛñh7ÒŸbt(ÅG?¸‡|Qqjì"'ÏŽãØ6©–½]mÄcQZ¶n&W(ùŸþ]iù»Ç°,k1¶² gëoî½ëƒŸù§‚Œ ”D*…ëº8¶ãÔ°»fcÛUj¶ëظNm ”6–aŸNد„&á I$h XD‚>BA‹PÀG(à#ôú ‡üDÃ!âQ ŸÏóÚ|¦ÊÛ—¦@4&‹Ö)¬Óóñí§ðì—÷_¾8v¯°¾/5–в…wß4³m…B*…”.RJ¤òήt=ϸ.ŽëâÖwÞ×Á±mju µšMÍ®Q­ÕXÈ™®UqËаLŸY?[õÃ4ð[¿E(à'   ()YÌçI4ÅÔj¨÷Ý}§x깃f Ê12‹¥Ârvrÿ–î½÷9Ž_i¢‘µÉÚVMI/ ¥¤—¤DÖÏ®”ÞÙ•8«À]ÇÅqïšã`;º&ðû,>~¿…ßgaY>ËÄ2M„âØ›oSÈ;8uò›Ê8þÒcåÞžÇÏ_ºv_W›°]ÐY7Z^O©kx+&ÐEýšþÓ7_åòÚç5êŽÕ%h¡³ó®Í-P\Z" ÑÔ!™Hj ©¥%W¼zôøáp(t  1EÊ|±tü­3§Î ÷·­¯ÕSÚCÄOÞö²ŽB)o$4ÖÔî×½(8.dreæ³yf¹6—åÚ\†«ss”JËDB~ÚÓIú»Ûèíbx —p0ÀòJ™WŽç;Ï<‡í(¦g®ÿÌãïFå”~œB·žCŽ¿ò7ô`˃º¯ã/öîÞÞÛÚdz[d 4(W¯/ì›S 0tÐ`iÙ&›_b>[à‡g'8tì,'Ï^À¶k˜:ø,)©ËMõ¢ ‰Â[)%ÑÕÙé&‰¯:üý¯2Ô~+ËWñc`­&õú‹ÿý;]éæHWkèÁÐÆ ݆ᕜš†hìª5Ò«¡ –Ê.S færœ™˜æÓ9qî"•J]SX–©ƒ+ëF×ݧÃíŽRJ tv´»í©Ö¼tñü­,œ*ÜþŸã¥o?øÿPhÜ2Z¨e8ûÖKoj‘™xSÓæ¶t*i™š¥„Â4>Kàº0y-Çñ33x}Œ§žàñçŽrää8s™¼·¢Ó½ÜÐÉø1åæºŽæºŽÐ4Þ.»µ9þw—'Îÿ§‰SÏÏ~ôsÏóä£ÿçILÊ.¬jRç^9;[ÔΘ†•nN$›ãA!@]ž-ˆ×NMóükçyá•1ž;|†£§&™Ë@É5F7ä¦5:Yˆ¼A;s•cÛ¢9£§#iŽ…ÿËK/=ÿÐÂå#Ù>÷<_}ð®Ÿ_fÕüideÖCšØÕ÷GŸúäG†‡F~?S 7ýðíkÌer*_\Jz™ ÙQëRª¬Ë¬ ½xÛ軎­ìZËÔE_g(çùÖx课ûõ‡öò'Ñæçº©Æk÷äOwdVŒÇš»þµcD´Ù…<ʵ•RJ:b­°íiÅöªV,]Û;×oǶEÀoЕnÁ2Ôéåbî¿ÏzîÐs{àGö—úÔ`Ý=2öÌ'¼þö{â©Î‘õè·¤»ß¯ÌHr!_a1_¬çqéÚÊu±*zKÇSè멳½5N$`¢Üêá…¹™ÇÒ­‰¼ðí/M7&)aFPvéWü­„ÐêÊ¢×¶ïù`@3¬d~Ù¾©¿è=‘hr‹5¢™šðÊé8HåâÔª8N ¡ª‹š´OO_9°0?óâèpÿ¥C‡.•Ï»ÿ>öøþäf±cÛ6-¿xÍš¿:.«h§+Bmhz„†’U!+ †›»Ò dۻוsŲ{þ‡OÿÂ_©4Úÿëôþa]1×.IEND®B`‚OpenLP-2.4/resources/images/wizard_createprojector.png0000644000175000017500000044315112657640340022321 0ustar raoulraoul‰PNG  IHDRô~H5ë pHYs  šœtIMEÞ ëOv¬AtEXtCommentCREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 90 °EX“ IDATxÚ|½Ë²%É‘$¦j7«Ða‹ÌjF¸§P„Ãùÿ03  ÊpS.ÔÌÜÏM°«EÐõȼyN„»=ÔTÕøÿü¿ÿ·¤"B¢”È„ $0¹(FHÚ¹“”€¤ÿMDHÊÌþ÷Š $Iì_/)"2“ÄZ+õ$¸·¢%I‚d@)‘„Ìŵ’ð͂֊­D‚$ɽÓO#b…¨ô&þü `­‚´ñ ê{HÖï%‘™™Ir­…þË_9‚þOÏóHÚ{×&Jòo‘$Ð_23!!¨ ¤ EDDýÜLQô?¯µHfn²þP‚„äï"éëë+ )žµ  .ñ„ÿ¢òÍäZ‰Ìzþäõy©­úǽ7Éx–€÷}÷Nòyáï ,.ʤÀ¨Ïæ¿ÖZ™¹ÖòC|H!3åïâ_€I=ŠH‘` )[ùÄ‚”™ÏóÌÓ&°Ö(m)ýsþ^)ÄÊ]/ÚGJý¬H&€JQef0¸ÈO 3c)"¤„€Pd(Aòñ[JÀˆ}`È ©ƒI¥ °^|ýÜé|?ÿ’yˆ×[9¿w´;éßõ‹IR&’}1)*çÚ ¥s{•”¤dDA€2¥¨§Œ ò)—$’Ÿõý,|ý%¤ÄœÞX__ þQI†p}ë¾9éðàB¾äþÒ™&E¢?'Iôwíèp…ù7A#!ù·DD°¯a:žô£Ìú. ùGß÷}Sr¼ÛJÈ'’¤¶‚øîwí;/ |#³ß¸Crÿ2…­gH¿Øëkö¡"ÉUq@Î u IP©ÀBÝ‘Á9þ@pˆ—62‚á?‘h²BÄ”¹ûSáêÁ‰ò¡APB€±µ3R ©ž«sDÔÕdý)SB‚\ýGÆGØ>)ë’Îè¾}f0•) d‚>™Û<þonß"FD¬Lð96û ÍéœwLVIeÇ|ÿj^¯NœsÔro$6 Y—$¯ßÌóH¥ü°|3…‘™áWoµî?“~@¾öu΄:ö~dìÿüA"•Rßø¢¯S…•D‡c„£*/*é'§n ¤tr‘|Õ¯7×g.ÓÿBNæ;÷1F)dø‚)u¹}37¸®í»êx75E½ˆŠÄt8QžðWé†ð?ÊzUЈÄ Øÿ¶¢žü£êý " ]F©­)Ô©t:®z,¢«2 ¡­Ï”èt„_þ")%;«:áÝ_¾Â)(Ò…’ƒ.eMqî<Ä ‰бQ 'ßW÷óï‘HQ[~Â.Û”¹ba¢_¡ÚU8Ý™!3ZOEd8NM5€X 2vÀ_/±;ÌŸ4æóQ1RLˆN•Pjþ§þÑ¡*TуtQšêÜU/U^Ú™]x;ŽW‰JdøAOæS…¬NæÎ{’ Ò5ª_œt‚J„(¥_U‰a\¤ôQªø«C»ÿHùA9ÊÆtHVÜ©gM9ƒO¶‹~C)$ѱ@ ™õ}N®Âfø$A½þ¸.´¤€ƪô@Nõ’™ ȬøD2V(Õm@T¯ROêÒYº ä6]D`'è“’)p#)A‚ºÏ:xf…Q«êçÁ!Ä¿’Òž›ú™úP…S]²Ò[×—•6T'B¢Ï_åL2wN’éÄ\ÿ»åÃ÷ƒL‰<§ªj…ÓØÚ¬®~Š@Ap¹ ‘¤xÄ ²š&„O|d,.ëV0*6ød¨n½–¤Lp9›eŒúô°á£7Åg…늺RNå-?(ÿÍ#A½s_›ðcVPd_Ñ”ÿ€ì ~u‚$íz«~•éO6ýwd ³RàB´wß4·g_ªl‹ÎÉ]Ô;B™âC¤X€œœÕ¹K®ª›W‡Ñù.w’<ŽÁî†pÀ€)v”®-XÏ ÿ`HB¦ÂÕKeÖNCUQ+‘;§$ èb ”ÕEˆR}ì„ NÅÜŒ™Ê¼ÂxÌóª0*¦Û³þ$êΗ 3Éd‚Ä~Sì§L°â›KÛ÷|õ1×ÉŽSÙ_ÕÉÄ‘FštÙP†?ª•÷ysíýÂM7+Mfóq"¡ÉÄå ân˜}U‚wê›Ú¸oP’‹C„S4*ˆÎõðÓä ÕêªYé§Sô” Ì[u#„U³š+tJŠÆrÿ«0«Kt»?…¸o›‹*áÑ…—$T‘ê¬âƒ,©HíwoÝe ~ 2«hT}©p~ïé§ÒM>"›'[g86dÓÕlµ“©¼~yb+cE•¥ÛC›.5¢Ž€»"‰Ðâòź²è~g€”óÁªV”Š>œ©”¢òÒÇŠ8 –cùƒ.>X°ŠŸúž0ê|dd¥ÝF9€œ"°ÒC€Ì&FcÕNAÊõ=K$uúgÃÌt½ éøK:õ^µ´’¯âI²?Oã¸;œj3.0]ÊÁèT˃‹WÕ[;ßùQÊÌЊg üûNe±|ß\/‡0€’Ÿy÷uú ‰dÎu®\T…t/4ƈ ¨Ñÿ:4rѦ±žÊêw3*'Ê™U„#qoÆÆŽ+Lø\l´7§»oÎäÈêqú:ef•b¾ÇJvVé„â:?êªWÈ@îîôGIÿŠÌ iÈxŽ{Õ-+_!ü‡3© §ÑÄÌœ*ÞÑÉC…ã=|z¤' ÜHbÀM§ØU‹4þÈþéx‚á”_ݰ!|òÂq—òiQiÿ¤W +êmQQÕr_<êQ Là`²©U@ýÎS}§ïšïT\–N‰æÐézîç¸]|L?:O>î?µ£¾Ûñì?•[>ú}¹Rw0)@²à„Î*50¨˜òÏwŠªCé¯/±ñú×¥”™},01«¦^™óUc»2é^."´SØŒEÃÑW@î0Z,û˰¬S—Ü!Ä\u—3¬ªZ;·/[LÙÈ 1Ÿ4²wƒ{˜_`¬™dæÞUÆì¼éû¼ûªúEg¾i W´F#ªÒðع•¯+Žˆ)Ìq¿a¾º7©*…Ìd€ˆ+_YEò|pæ}s°R]ƒö%9'¯*_¿œëhäêD#3wJ«JxVla㺲.~ö5yuÁ¶wõ‚5ø†J_x²“(R¹#—è~×}v´åŒƒ=>F&º¢j\±Æ  8P±ü0Ÿµ:B- QÕuIgµjÆý‡® þÓ ›¨J->.NÈXÁ·#ÈÎì¤s&wŒSÓ¨zH)ìð‡‰:Ün)"WWÜHú;ef߈íêÀ®9Lî¨/æW_ÙHI…¢ºù+=ÞÑ3•ˆpÏUí:ׯ“RÏk-ýˆêË" Ü¢J7¤$Ÿ7·€WðûRÅœÉJ1“Áù7Ùö zNß¹»8ÛÈη*ȳg’+V*•ζôÀÑ=j×óì½Immr¶–eÀ³ÛÙy:MX0Ô•jPY@Äry‰Ö¢2× BÝØt4î™ $#‚!efÆZ¾>ADnE5NΊ†«„"zÎPŸÄ½FÍ <ÆË#ä›éAjøf¸Ù Çñ!Ì`˜4PåâZôîR¼NDá)>~ zæ’°Žâ=§;£óË.DâcL«ðáp+>iiCÏÂhêDæ^ƒ™»:{g‰Æ²‹!U \_¡F±C»‹FBßnþ·¡ç#êÖ‘>ÈÔýŠè%2òTÔîžçû²Úßžx‰©º8òÕ+‚±ÀÆ<É5MÌõô˜àC2¤·ÆG]|fk†óæ‹útUË',v ¦™uœßzzh¦Ú{F®º"ÛUÖšõp°º;0=+E#(Ί<=W0± E>$àÉwÊŒf+B›Yÿ>sp)δç`Ïtµ†l~ÍŒªX<Ãç×yùU"¢X'™î5®(=ú8ø8^÷¿7‰sþ>"Þ½q—ËWr3׌T^£ª8-ß©wÙÓJñª+u\_äy0ëb¾8ÜM}Å—NVÄÞI·ŸðÞäì¯eÖRW´ÆäÎ3~UQoÐäºÆ>›Ÿ*»Ó³2ôœ”=&/øÑ?aŠ.÷™5JìRÂQææöÞ†’Œ+ Ū†…AHãEEÖr•:u˜l™ŒHOÌ®æcç®kIÊtŽ€ .Û~ÈYÓ‘ºª„êHù‚®žØ¹ù  …,`‡C ‹áV¹«£›gÍ´hì±zצ\k e|† YxÔ¼¡Â¬ˆs}¾®#Îo¹å”p yÊ:|W˜Î'""ð/õª IS®Jõ!ë(‹C¯¸S‡ >u2>KÐo¹±ÆjŽ1éΓâç«}~/Ìäì[BžÑ˜h®—‚!ªÎФܯtîã*£ÚgS³š+Å“.™Ò´iU‘3Ý;<Ìn`_ ß}Éݻֿ3KÅ#ãajZ†;°š°¢l$ÆÝÚÔô‰œ¡{Âdt¦LMß¿wΜÄÃeV\Ìž#˜_¬-88Ï7Ã&¤½× nqÑÕä›Ï$qú0¨áÀ蹪Às×µÓ ®²¨ò=k‹û@ü'}›yœþ³ú†Ï¸;ê_–)®ÅfàÏô’4Êg–ï5áÅGÔÉÈùšÒ¤ÃÁý'Ÿ»ZêpKo¼nÊ¿z‡åYâž§‰xß·’*¨øÈr“7¥5çʫóӤˆ~b™ŠC6 “!æÂù.WßD ú†ˆ˜AÙ©´ÎØÿ.cŒø Ö´Q;Âsì3ØÅé^ €&j—*ݘu‘UØ×oï½báBõ³‘(’ \ x ÜT¼L!ªŠ7‹ßRÇVREo¼Õ%"û•g¼÷ŽJl@EC—ásN@ƒåÓÜšâõ}0—?†ƒ¿ü§Ï ±n¬öÎTÿùõ“hø¹.jzÈ=·Ç7=K©C’Gðcf]Íq;I§Î<©oo “:Š,—›Ì»nfj7¬ ®Kܲ¢®†ëŠ|#¶²ûëK‹Q0⧬y$5íífâ}_—)ޤMÇâð/è ?Cžë»Ï<ê®fÌ$hïlfmß®¡ä’rï7Öbg¢žK‰‚kr€Ãi¹€2Ÿ«uÿ–Âi}‚FÖÓ%VÅ»ÍÒÌâ+BB¦¾ñÛ׉ÓMYÒoä>ÌEzꣳè,žô+š¬ø|’«CÚÊ@õ ºŠœû¯oBš[£ökú$MŸ½Ç·^|îÛ!F㺼+gÅ,Nb0X¤‚€‹ÃoZ.k0î·"­ºšfH3XÍH×ÚAæÕ?|ëèz²‘w©c±Ú]tUÄgɲi¶~WÏ!J_xLØÌiÌ ~ÍQ„‡Ê7³ø hÚ㌛>gõ3Möß¼ÕÜ;©ê>ð‡VÅ(û?Ê(kœC#MÊ=¥!Ìþ (Fßð^™*î~ ³îÀò4UåYtCŸ™™Ú§¤Æ¶'Q¾=)å·iis_†=N~ƒ²N¿ÚS£«GÈBìž3jíp59ASíx%å;ÏüšX&å}kÇï5“ÍÏRß:¥ÓõДœ1çÌäèNÂÑ¥ èÂæ#+EÖ 4¡‘úžI¦hÜG¡Õ ¤ÁåNú*^v€G„š£é(Ro/ºRQ&âP{»”íøŒÄçùþ¦åq_ÓL}OfÐóOµ:jÆZÞ‡ÒS¬½w޼ŪG®)~ï =`cq$Öj¹QqîÍÕÕý||-Nv<óíuܧçc„YZ‚k]ZÈÆl]).ÍÛ¡“vW"ˆT1Œˆ÷é¢QôƒŠ‚kd{ÎÉ Þò©]·åE™.êþÖ߸sŸÒcÏ‚ŽSÒþ¹‹—õþ_ÿ‡›þKŒ[*³zDpíÜ8 ¡8Ï3¸D¿›e ÌŒ¬š”u„jùgض>Ä×úÆa›y‡´Ù£¨3nuM ^mn?wS±HÎs犈ð€Zß#ºU„Å3bÓRðw1Àš…ì'=^<8LϔБº|ðŠh#ðÆIûÍ—µv°y×ÙoêJ5në†päG´‚aÁiÎuMÞ>%þlâa›"Ü÷VEyaæöãË|ß×sQ´’½,ëIxZó4Fè‚þÑl…ÊÈóÍË®16„B#’­ÔDæVS\a"ÁQtFBÇ»£»Û„~âUö\õvƒhÁKО´LTôj£J|Ÿ 2aÌGÖ5(šiZ@H•†Á‘ÝÁš{”öâÜ&h»ÓOÚRNO\E/hÎ0S£ù7joÖ{ÿ9g¬Ñ0Y·vÆ·„Ê%\&ZÃOSH²5¤ˆŽEq5ÚÐ*Û½L=É͈p)Å¡ sÉå”ò<¾oëåzLID³[‘ñybD£ƒ@¬Õ¼„ ggx°ˆa£)e#mq[þ™Ù²¥ ô&6´Kýé)|éj:ZïÆ—¨$šƒƒ3ˆRSBXiQb§SCvWwH#…´Ä»;*åÁÖ6é åy"Unk(®ß]ƒãˆ]ÏÆ1¶µ/$…,¶I›hE„Ø:И¢Î, Ü`pYPÛq–h©Qt¤$C€Õ©ã9¡S)Ç´ezÌÞxô^¸Ä #·¼À"(pœŽù‹¤”ØS~ø¸˜Aˆ“5´«‘ð”`¯‘G cj"Êh2ÁçäLàWŒò¢`åw¦›r² !J§ªžËãÍêÃüÝ]Ôä0“;O &Ð|€yûF+μÁÃÔŽT¾™æˆÕ#Ìâgz@cr= XÑñÆ}¢¥šÑôœ— uèôØJd¾¯žg5mľ0"6ˆôEÆP…W÷è¹w•ÊÒ~eZäÓ\…žz·~¸êVM¬…Ô›;§Xj%Æá/p¼=¢óÞ½%}­µ"v=2ôlñ"¿l¥ÍH ¶ Í ÒCW“(®U„‘èì¯,R ‡v3&ª¼Ü•ÒQ5*ú¬ î:ît5EjT"×úDD®««VÔП´y ž’­Itt)íì ÚTqÞu£ݹV,Ç]ÍÃ…ïêñ<ѹ3¸ Áœ[:Ÿ¿(Ž¥UWÓcªº-©I•mŒlC³RH²è{…ù¢­t~×=£2#Ý”øz[Y¤y—u‹¼fÅË›€(Ø"NF¸Ýn­(ÂúP?ýG„è(Ëá5°Œ$e+(–UUvàÈvÊRb—†,Z„3t©„³:Žž -ƒgŽÔ\ØÊâ¢qnâÀÑUÄ( <6ÜòÙI{ttºîb4,¤=B$EU¼ìØ¡í«‹Ë'0FŒ]ºZ/Åž_‚_¶³ÊD‰g+ô³³™3|RÒ»»àÀupk-ìíÉ@Ék9°&K†*y¶YÚsO‚"ͧ@áµ[†¡kþ5c–d–Žå©ÒZ¨_æø4«3[ļ}Cƒ¬Ý^-²â|jayɸi•–¸M Œl5ß ?.ç$JèêÛÔ-MÒ}x\Ò8ƒAVš´ KswKý1v,ÊIJ0¡'¨C~0sÏcÞo·éÔbW1³ 4QÒJâòQy³Ç2­à0y"€C6ý1-¸5铱†µv‘w9ãæÔ’|*| ÖR¨h Z'o·N5;Ř·$ÅZA^æZE"X(e@4kÛ‰½xj¡hÙµÜ@ª•±°žÇSÕÕŽ 3ïñøe®ÞZu>jÚ†rœÒíX&.d»¿h$¨†»×`I¥>TNÇSm*@½­A-ƹw‰¬jðšäghëÝïF®(µž;Ú È(ùd#V§œj‹üsÅ0>«·˜‰æ³\jhg) iyVkù4l®I×óÒ¥Q̇½;Ä`ÄZÑ]è\Ç~Ðg6­ Š{ ?Ö,&=ÖzŠr=`-:ñº×ÐH« Úe#¢÷ÅÎm¡º¬HéËÈ 9%¼1ÐÕç.ÓVSÆxr ühZ÷Îík³¦¯~ÂsZ§€ Ý–¹ÆòP¡+ kΪ.HDƒÎQmaUÂè .G­o>ÛãÔM’±| 2¥ Ð×zÞÜÁE–ÙšççBû@Ïïú×X¡Ÿ»†õ€þ±þòûâbµcÎZº<1>9Ô‹l%$žX*Ŷ€ø=<ž„*Åòý¹±| ¢K® 9£+[5OØÑ.˜té¶fþÖ®oL±|™Öˆµž6 96Cl58Û¢¯~DÌô=ߘÛ^dÏA*9†,Ö¡x¬¼:3CYj¸…(Òs÷76ûÖñ¨¬Nä¢é°ÈTƒ•¹Û î½£'—Ï—‡+‘œÐO‹A/Mw`°¹SÝŽ{åi¯Ö +‹üImI;zÉ®ʨ ĈÊhþò˰3"ºtdSq,Ñ÷Äò×ÜíÐXg à*’FOÁR"V,ƒ7ÛT$;%O)wúg‹‰µ ±bíÜ?!(Ÿßÿô/õ•²Åf’eø~o‡§h…ûZ劥SØÝmF5ØQ¶‹Ý´Ô Ô±Êb§dsû-×qÜéÓ[( [v¯IÓÍÁÙ™k€L{7K @<%.Ø J{¤ó$ãkèÉýìKŒ±o‚óe€‹]Iß/>E&l:›¤ÜZ‹ïÎð™fÉ4 .±? ¢°øLFC‘†ÑÛδIè4p”ˆÑ­Qb—z¶2W,Óž•b6ðåê«ÞÆÑ Å´d{\fÐøõåÏ“ †‡Á"®É7*"roÑÀJ!R¸]„!–EIÊ5Bz ŽÿEÛ÷ø~Ö1º!ÿqª °±ËCµT• 1¥÷ýùçÿò/ÿò¯þzž?~þñ—ÿËÿøGáäbü|_sb”#ßÚx!Ã~io "žz÷3²åWŠÁe/æ“‚/œïáœ)[*s3âËG1‘%}o¤´üˆí‘Yü^ iÄ ;S©õ¬Ý~ƒ>Ñ»]HjÛÀ–Õx9ˆ–a»ß$VäÎ׸“e§«ËÒ²š¶gûÌÇ)åNÏ µM6Ô6ÞWŒ¥ôÄZÁXh–÷ h‡µ¸¬³åO}¸ŒG \v©†QIdnË¥³ 2E<¹mþ[y±œK³¹¡™ÚÊákSÓGÄÞîþã"uK±Û½–0³Å¢C?b;·Ùzþ/þñãÉ?~þñ—¿üåç~³ŒÏèsÆÙFÌ9ãèú,Y¦6ŒË5ŠŠrÄ4xÛ”i#´¹¢»èÁ-~þüãç?~îýþöãþ·?ÿøñüãïÿøûüå¯ÑLøf©óyÖó׿üÍD–¾Ã¥v|ýøíY ÷çÏÿøûßg¨býh¹îü<8Ò±ô³³wë)à.>“Ðæ º4?&,Š‘±V Lj¶Díþó¿’Ô†Äÿõ?ÿ}úPA™Ê½×³ÆcE8~>’žXv¿»\N@òÝ[ÚäZϧkkø[}zÅüéK¨²A+OP#ªhŽ6ÛŠ¤¡¾¹íRá4±3›dH+–íÓ9€iÛ6ɾ¨ÏÞ{8tBhïè^bLŠ‚Sm›°689 IDATneŠˆb'EªÅrnbŸµ&|l]N¢—Pï#·€Î½ÍÉ3›SîºxxžÇœKQ{ï?~þ\ëùýÏúñ`îüûÏ¿ûóÙ¶ZÍ7XÆC£qË»ÎçZQØ"»CÛÚ±$û%c­§ÍÅdOðV,º.Y2ßïÏÌüóŸþÄÜÚo(ÿíë+þüõ<z €ž¿ýíYý}Mñ|ýø·¯'b±¥¿þûÿŒ"³×å)óù@ĵBPî<3&ô1…*áÆã#–»±Aù2s+׊r3Ì„°­eØï»ž¯?ýöÛ?¾~|½ïÏ?þñïÏ— !íœRƒ èr·I…åiÚž+ÜÖ3ަStá5E`Žæ~ö/¥+ÆÖ1™‹ê)’2"áæëXàïŽÿÓ|ní7gïUøîõõMÙv¶uì=® ù®ÚÎR·×Í-ð._aÃ"Ž%@eݳ“ ÿ‰ƒnWÚøð7ã‡#Ï1‹H̘a­ Eã–X=xësŠ¥×)÷x›H[äª!Î ™YÖéiª£/ú”gfDŽõ!„,rCì̽_ֆ޳bò›Éà‰ïgÑTks³­]5lJ{¿Á"µ{LוaËiËÙxàÌáÓ"´Ó)ð!Œûx¯ÍᶤVʺSTdï®,Zjq‚©ø 1k­¨E •OVõ µ;9·‚-7ó$kô+=«êàv›w<+תÍ3} í"É”· •Ä#ëí)Å-oˆ.£9…5j÷ˇÚqÜŒSùêš™ŠU¥øÔÌÀã3íf%ºá2Ïtç»#‹”{Ÿ¬þ±Š æ\¤¾#¦ŽÀx ¢Æ*»"ÆÌ\<Û;ZàØz¨~¥2õÕ²‡ÎãÐh«È¡OÑíŽ 4…9‹C”EGoO–Û6íÛÓü¶ø¶ú×`ÖT¤fÀÓ»l¶ì™ XgbêÇî¹Ð+Q,Ï‘øôÙ'ÝR!9Ò $½kèØEÇUßæŽÕ zî[†³ Äð¯ôR;6‹=üšE»ÅÓàÇN‘n¯»¼Yc9/,rTÕàÕ*«“Wrf|§\9:–ÏlIä àã¯ú)<;Qx}©É®§Aº(íõ_"çD›ô—Ìþ4ñ6¥è“¿¸^âvãi{…qµž`Ø FÜ[á-zœ"«Ïí–2µw¾Y³¾ÒNkµ#–²=ª]9ÃèøÜ\Mã,X¶à¯œ®›ÅpD,¿Zo]Ǧ  Êß]o…‚Ìüh !Ô©B-ä,îÒ’°³ãÆú¡_œÜTËïöˆ·p–ùúWÄÚ—?½Ð|ß5÷‡äªõô6B¹sÃÁkwô2ó(jI(Ï>LŽ}ÚgÓê« íJÚT|‹Jõt $wÊÙZbÚ-V|¨U¬¶­ŒZ vÌùÕ˜B×Ò´sú&©Á ”—áv¯ucÍkOaËIÝ×½q{<|sëÿ´§#Hù¦Œìc>ú…ÖÆÁ/ñËìç½÷ÞûçÞÙòKŽ*åÞÏZmÁa·ÔÂÑÌ­³ Ô'oݺ­€»#-oÕ(½'ÃyoÓÎø$«†ÁQ¬Ôò£ížýÉ.žŽµRõ ¦ö‚Áj~qñù§Ž»¥@jïŽ,6ä,èY«ìåÔ;†Úiÿpñ³vÚõN¸k„`µ›¶FÿønãS÷fجfãy¬3fÃ"W±Jï»Y\šÞ_WR¤@È㌽}™ñÑó7PМ†fšÈë;+þ''ÿÏVï-;#Ïæ­pÏ\´tLœõ9Z° góŸ…ªS6⬱Œø0LåñGcwáÜжI;“¯.4Ö1™ùøŒ;édm,óÃ/h?•[Z–VÑU“?µW)STï=:Ж ÅâîsVqï­íµBe¥­Y A®/EAÄñ!ÑÎlnïæ/«‚n37}Hš+䌾¨âank\id)¾™È1Þ[—îjàäubCÓ¡Ýü˜Ö`jˆ+¶ÕÌ%öÿ]-të¾§,›uVg ¢¼(o¹4ËDÆã] ½RGe0¤ I^ÄbàZXÔ2úÑU»ŽûíÅ·k w`c8*’ÄpŸ‹'}ùÊ«ÔY3®ªaÒ±œ,%?¢nhï /:ëPÙ‹ñB¬Þ–µ#uä 5ÆŠÁ‘Z3Ôd›‚xù‚u1ªÔ«o2WÑŒ¡„"3+Ñú—šAó²]`0滵ç¾Êw®Dm¨€P™€i–Œ‡‘4 Äg=bµIY["T¼¡Ku…ùÆÚ!1/wìvãó„œP¯ÔF{;´jµÇ>iV³¹éÌqÍ‹ã¥÷ŠJk•ZÜ×0ÃkxÆ™§wvÄè"û¸Ë”5`Q¡FõÙ…ËŠ¦h$·)¯VïÊ:óD3»íwøÔ’Sô–œÊ»n½V¦íýÛdبáÌð&Œ·yrVaß™Þéâ8\zª†…ŒB¶ ÏWJ[Ã.‰Z—ƒ½s*ñÚKz)»?]¹ \önN‹³Tfõ*±L(à´”+ž°bŽA±ýûõD¸Z^ Ê…(ŽwcïdÛ¡ºëºèíÊÃÁ»léj³?º‚š^®‚~Çþ)ÙMµ×®™‹m·e%Áܳ3ê0 c­Û_¤6T8h‡šþxœþÙ…9ÖBfãcaÛyÔµ“ñ¥ÙùÜÔKOVü¦VïÐ: KÛº§°]I[—Éà£Þ¶³ÜŠ[pfÎÉ.þ¬³nø¸­æÇ-¶Ø™ÅóG⸠x¨Ó±» –bàìK¬YƒË ¸ÝXuIã½Ú䦺šÄyÛ-FyÂ`Às¼Û"íy­æ:«Í.ò6³þ|Ç©ìsé•›ñ™”-ÃP¢*e×4(Ã÷ôf?£Þä¢Ä4©3BÇü“d­éø°Õ-¢žöE l›ˆ! Vô+~급ß3Ži”%ý²¸Å×¼áêöò“už¼B}3zմкéŸÔ DÍäÑùa¦’5ܱãÿ™ñ4µ¾º&“èN-qiǵiª?±—^iÆ”÷è‡ ù|Xƒ¶ÇOA.Qü án~a¡¬IN2ï“4õô½)® žß6O‰5¹c©Ë0Ì𲊞[³Ò§†ÊÌÌ{ü?á‰\÷gИ^ ½žA³TBÖH!=ÔwM±([m”=l×mmkSò{úYÇ»o­¦à×ÖdO#ö~Ë¢e˜m>7í{³ŽŽ¹¯¯mxX²Š×ܪi— D¦Ö:P÷À¼è|¿úÊwy£ÚøuÕϘÜáò˜ÿÖ[N\ŽYÓ Â6mÃZÝésÌ/Q ¥æök0·pïwK_L«êždõW®œri hQ "ÖzÖóÇ$$Þ6%øÕÄ~€”‹±‡{=ÎG,‰‚Y*¢ä)x>Þ Á¼–¶ž%&Ûá®ÇßVkØׂˆðøÚ;ãÖ@:ˆ¬µæ1ÔÊ˵¾M©çm­µ®‘ÏÐÕW¬e›'åZËœkEzh¹ŽõO“;û Tç»6íOДÀµ´kE¦Å°¦¹(-Å4„§=ÏÚ}öÞLEh½Æì<«$'|Û~3,ÉïñåZœ4~5ÎëÔ•!íùÕ—(ã#í®VŸ³fµúVQ÷Ø z x´eRq 8Ô`•MGЉu:=óŽCiYGªÇ—q­½:=Ô}óþk­Õ¹•÷¯¼ Ð`pñ×ûv×ÜSÔ®X»Õ«ÀÉ ûR5xYŒ§‰ÛŸ s«”û^§á§eaz-âj æ[ìüXàþ­øêfh”ÇcÈê-N .> ® }hšò+¢f¾œünÇû£MzÎ0×½ýº×@…SÀXi¸vj,”.5T­Ç¿šñý¹—qݟ묿ç™É'ˆ•íÝ2ñè’ŽÔ µúŽùÒq/«ªÒŽ9ßâP+xö@ÏŠ¤1ªŽ^ÖÕfðãŽÔkI›g–>]2e½ïˆ§nU†¸ƒ{g›1œ=y³¨qö˜¨ó*ýŠÿ?|’ÒÇÃÊòpøÜ2)‚OW/º¡rgkË‘žíu4Øp53Ÿ{)lNV°àÞÑÕc*WÛAÍßx¾4iç^fʳÆ!ýVüç,×?©py <±úqYa0Á˜Y:fC¢OóQ­¬> q©(‹CfÓÛkóG †¸•¬[¬Zf‘Q²gÎ:è7šûk>r‰á¹¢î|Ý|ˆÆl‰8k2´Rï¾—ÞøÅt­HŒ7imƒRë7¬‰kÃNY,œ×ä²Ót.6M¹Û»·Ç‘ñ5rÓÞYÊüí·' …²ûbI²# Ÿç+‚O”f<.š´w¦$â±UGŒ5êÞš§B<\Ôâ jFß3òë%ÌSÀ¶Çâ!ð{–·¬Åùˆ4–KµÌ7×¾m¾è#ù¾.6Uk!€ªð}è»Ò[¯ÆŒaÙXôRÕ.ìÉÞ@‹ù²?‹\\¨¥$„𱢌2‚‹ñ¬§u]vmV ÌÎð ×#H?$7÷KÀFFBeP±žŒD}HmÓd=1âYÅ…­ÓY¾'lg‰rmZÝ,dë¯$ÀP Wùä¶SûÞ›ˆxŒj.è´gAýÎí釖°¤õõ• ¥Æñ<æP ¹4ÌÍáwsøƒ…Ø™6¤ àyžY'@±>˜¾Ó暣ÐgÀœÇèÕhŒ@&3¤GùõõV¬ ö¬óãà#‚ëqy]®Ä×'žHäÎÍÅß~ÿSM$zÜZXîñ&ÙHØGÆ»SÞWgçªw¦`Ùå``ðzj¯m' Ocíi-åúí·(ëÒX_Ïß¿Ž?öÌDl Ç1 j3ÈЮàNß…U\ˆZ#Š'`g€§-2¢X¸±|U'»"k̃Z]ŒÛ[N([í zso_>!…¯Ôν³@ÔÇ›c¼{cï7Ó ø®2ÛV€°£€ý^ÚKQÞ‘¶«X5‡)Tm i­~xnë!¶å©³ì©¯Ý«ÄJâÍ=¶¦•d¬ßû— CÉ WÐìz0zå âr Õ£A¹·3ÈÔëmIoù·‘€¥asFx9ÊI\>õKþb=~7}mšìAðùúÓŸWØÅ³78®g5RÈßþô'[}ªTì´Ö¨’~¾;×1£3óY!ºëUË[䔉fv\û>6H¯ÎqÝpØP€ÏÏ«FÛHû+ ´Ô;50íìjú}î§Ê#­cØn8÷®1þa]ÕöPâùzŒø¯òŸãZÈ|"V¤3ÍSæÆøÄ“S†Db™¤è8Zf›NÌ%#³¥°c:•ÐûZð¾sçkIµ¯MæÎŒÄ#ØGv)¨võà/[¸^‹£kªëBÀ2̘ÊîÌ·íZµ¦ê¶ØÆ*~§j—{w;]S­àÚg ]Ú<ŠL†ZámXP³hàZôR¤²ù˜Å½þÀIxØxbŸI;€E"µ‹ÛhZ¾ÙåÛTV¯åéñVß7û²3ó}3ó§=»‚JZØ…çëÇïËÚîNA¯ x¥Ÿçá.û±C“˜•ë«ìË1þþµ${Os­ªG+Î\æ˜Äm"3ËñZ6ë)oåx=;ÉZÊ(ŠZ³çȦà6œ«…ö¥!9`[°ä,M¶),^~ãúyµYý°":MdtV¹©)Èe*ã/F"WŠžhúZIþ„X,NÎáS©e)×&>fAÐ&VÂ:Í-d"¡wcËð·jÙ¹ecøYž‚µhg¯l»&õ ÅÐHBÜØ^Ò¤,›ÏB–Ú!ö¬5{Š3O¡Ä§éd] ¾÷VÀÖr–¢ZJ9wä] ~ŽÍÀPgrƒ‡¾•×hf”—±Vîݻ軲‰ðnNÕJ²jŸÞ÷ýûßÿñßÿÛÿ¯ú¯ûÝ™ù—¿þí¯ýw‡™l–\óùÇßþæ;Í^"#Ö×C/”ËüÛ_þÆt¨f;×´Ä Xc©\&Ñh–gJa:wËÍ4®9æ4woWóõÞ»¢ˆÐ‡°Àq;*M«ºwÛ˳îÚ.…²´žC@Œ°«dwª3¨báÔ\YǤcÈOµòÁ‹†Ù¬'_EÇ‘Ví¬{ÙT‰ Uu]Ì0ЉDdÔ^Ò2ùµ¬¹¼=! ¯".§J,{g*‘¶¿E$”oöÀL;…„Ü5X-IIƒýË¿k¿ûš¨¬gý—û·‡áòâýÿå]jl$ïAïc´»¶Ö†Ûô¡S’•`_m}±…J ÷Lg‹<Q£À"÷ͽ1gó²Ì#í!#fî¶0îa½´“Œ'¢”ÌÈ<Ëjo7’šÓТB¸Š·Û¿Æ¿Ivgææ°¯,Žé“´b9Þ¼"× mÁ>Yƒk&ðª[J½ún…vËM²ŒgíÝ‹G\væàúV€ø>3Ö×W`¼®ˆrÃ’ývS0£¶Ï&€ÝR0u¸hY µ ù³™ŠÞ#†fƒ@qœ”Yë[ª½sÚ+¼ç.,¥€Êå¯Èze’"Ї´ú¥¡ÁÛIÑFÙ–+¢88{¿ÏóãÇß~û±í1$ã·ßÿZŒ²–Nˆ±ø¬¨pO…¼§t¯ç+įµžXksL¢„ÚŠ!H;£µEhTÝW'BΚ8÷C 0Ëk\×*é*$ÚhtÚÏ:ö935»·¸ÞìÕÛ£·òZäKÏÑš+èº9Âk<ÊeªUòÑ„Ù1¶†€Ãè†DdÌà?\wä׊XK; ãšÀaÚÁ ™à×bDì½{Ÿ-¤Ú ðpdÚÙ rçVþô RàÕ–°ÓDe–%¾çŒ{ïjÕ*Lcje-•ÁxèïUÞ FA׸:6©ü«ÉGŒ "¦b7€Þ{îÏv9wç‘× >ø£ížúCÛz®ÅÞ¶Ò[ 3>•ígë„à~ǰ!%j±s?«1îô^D&—ÛaåVàçþIÄ×b­ Rˆ¤öóxÊR­¢ývØû±¾)ÖB¡‡ªˆxjJÓa‘… Q7¸ÌÕÛUâ{Ú£h_®( ùa™Œgè.ï“ü÷®vg*•wŠâ-¢öj:‹(Ï xñ0[m–ãô4’cnñDÕJ Ï×ó¬6Ñ%“ÀúZ?ÖÔ$ VÒ<Œ¯šZùdæÅcb«*ð8îõ³Í;º‘ÈýæÞÛ}Ζޞ¾û}S椥´]sXûº}g=%æÞ¯Èõ|IzwÚ^‹½£×¨Y/çµéV[+îs@k‹¸Ss°—ÅV½ê`T!ÉÜ– `“ß³(ÚDjAÖ{yêo*KQ4ìO.cü†=KKÇ—]¤½ Y™†Â‰ÕÔí cCUõvyÇUÌö”žl?ùì-»ÃFÍÅÞ¸Fúµˆ‰I4èAš=^XÐN®ðñ ßšQjp¶[!¨ö©“Oo\¶oÿ64Óæ’lù®½´·ÆØ{_˰ŒF®¾j„k&kË{ù_¶¦™½~ª`”ž¨–{S/M_ãZBçp·+Ð ƒÎ Ê7ëAŠúaýáŠE>PÀ »-l,3‡@d‰yÛ ¡{8º†öcÞʯ/dðͽ…ˆÔ¶ÕTÑÔÕ©cÓú`R‘òb¹ýzo]ëÂ3c±™¬Öe¯5õá²`m»/\±bÅÁ‰ncð³–Ô~Bjb5ý i3t+@{{nŒ—‰[iµQÕ¡eò»jICÓ{ŒÂÕô^QJ‡-aE1!BLZ–̽_õ¨,jQv{9×|€µæË•±É邸ËI ÅŠËû•U[,ÇZä\þü„2È-Ÿ«Z° /¦«ÄÎbˆÒÑ´x†z¥¸cp³;‚3†H¯­ŠÅL-;Ô-èâôÖ߬A~=A>’ÒOäάIôXVŽx¦ôÃñ0S EÄ‘ŠIfEÛÕ€±¼µµW«pŽéÈ(O3¦³!ÙÜÛðrûM{!­éX¦?rùçí‹?ìßA›¦ŒÉvÑ«,ç ¶éTÅá´U£A«³·Þ2¶¥”X±6_Ã(”M'bK”^ê“Z«·Ú9e§žX¹w‰Zä6QÆK³+æ Ðº¬ù×)‹?)a‡ÉÕrf¦½0Lx^nT~åô%~ÑHÊ6û«Ý”Áòt "bÌ?SšJ`¬;yݬzÊ™R¨9ÈŠÞ¸^«8=ý_Vo:‰¸ñ .$&"¸"¾jJU‹)«UŒh$•5å6ÙGíGnf»‹i˜_›ãüÄ`XvBh)¼=&³™Ôÿm½c‘gùEõÞ(Ÿc5]ã S½¹¢¤o•ç³$ϱ ŠÜóÎÛû |y8H`u(å)5l΄v5½¸üSµKCѶ ©áõBåÁ²u±æÁY艇ëÑÞ¹-A•—Ò*½FeÕ>Å‚MNÚ¨¦!Ú¢ùÙJ^+lK8`+ Ø3IF:Üð½Û€»jtߦœ•jÝLuTm2D|³¾nä,«SÇàÈ©&PÖpf¦c5‡¾äv<ÌÑ8+!éŸ?Ç1ˆÑàú»8ÒOhҴ̼Àκ³»¹h]¿Øv&N•K`Ö&‘µŽ3"¥ "p Îj@¬c7DçKDxÛ Wá-sðØ;3b¹ÔÃp¨lí[Fu0è~Ò߸ª¶û‡ïªkùPõ„†ß[Vs@/EñêàïbÏKôÇ‚•/´ž#†¦ÒŽù#üªÍž:R³2ðnO³â‹îÐú¡#[ jšQ¦}nšRbø«yqq;@f‘¹iW[C£í‡\äðó͹2Ãf¹Zãq&]¥Æ©˜‡åªq}ƒ0Êíìg:–+ D@+”àÊÐL>Ò)µ“ºÒôûn.‡ˆ?œ$6È>!£˜«Ñ̬¿ [ ¯UT:áÖ8áô›¼ÊüÜœYÿ3‰7ÚD?x¶P訮["5ÚA|Êœ¢¬d*Ž?N`ϲ¬è«>"y™;[GÓe2õõõL™cÃ/ò1·îñTÖ<æÞ÷åeöŽö}ôÌ‘ÅåÜÈaàw&}8ßæå2º‚®fy³ÊºòAÞ™ªÑç/é Ô)+aÖ,ý6•m–h𙤵zm‰‚¦»\›4âò* JR΄V4#º‚–­6–a!?ÀL.âší]/Z³×ëoÓ¨‚ƒkš3[„««0d°Ë"\Ëü*â!6”(!Ȩ•ñ®žz­ŸÉÝõ¼ggš!€^­ØÅWæñrFñÆ=×ò87¹Ìzs]æÿÒy¼šjm›ïpUû+ŠìÛpçq ³9í7« _}…t Å£‘Þ™lW ü˜îTc4Þ¹³{¯í ¢Õ_çØÜ­¬9Œ„ö✌cc_c0‹„PÒíÇnÔ‘÷Ê»×Ì$« ñúS·Ïrc)]‰]«ÏÒ—*‚:ΪÅɰeÜ®šçc¶5pŸM¿Ø=Œ}Ïœv°V˜½÷¡²ø˜À6ªP‘ ®"¶_ =ç¢ÅÉ)„Ü×MÎÑØà“B¬ü#_”]g“ ´#Vno¶)´®*¨$è™[XAîê¹5r‹ÚÃ+OŸSBh¡±Ê£ìj_­ñ(Î À£ÔÆÑÚo¨ µÄm }{q\Öäe¶+¬¿U~¨–»)¹ ßíÔSÞž•jÄ-’^dòé­Ãh?£¶¿&•‰/®1ÉsĕŴ3a÷ ~ÖZñ. M£Ç`¹$^‹þzÓë eúËd“¾{D¿-‹p2liÛÑÁ‹™Z3 õ-¾µËr³eûîÂç‘7±¢L×´³†’ÞÒ+°¢6×ćbDù·M­ÝþÜ·£YZ6v~»ýª‚übiê6g¡?Ù{ÁbY;Å2þl®{ÿx¾öÖF’bz–UYŽ™/âá/ë™Î²U>ëÙ+´FÓœJfàœÃÃ@mâb¿þÑÙÎχډ¦~‡>‘¾ r¿©ƒ³ç¸5EÐÐ pÙ3DáìEwH‹c“À[ÊàÙXKÌš3¾ÏôtQÓDÊºrg©¥¯§¹ Uœ å޳ à»ÕH¼[¥k“Ú^ì^£«Ý£…ú×]ïâ›…!Ú¨Kj1ÀÇÞŽé2§6«FžðòPÿãh¢éÿnšWD¡ ¬ô•Þ¹í—ló ¯¯jÈU,•,oã•›bØ‚½ÿbÔè(bEÝW ÂFû|Yá¢oÖ‚½oÖê·vŽM!TCúéu[9ÒN~®¸iôðÒM}¬c¿£@Q'[„u ¹0•é²§‰òV5G-"È˰7>mо_ìTB™f­hû»MÅà°GxŸcè¢7Ý Ïéj«ñ³$V'÷>cå¢7!½ 7@¹w?¯:—noCÀ®ÁŠ!!·éUËÝhã½+Êz›ÛñX6aã|âփ¶ßÝôùªñ^EÓa»¦8ká²Ú¸­%­(ï±”T¿ûv¸—[ ̺s¿½‘¦¹*±_«-^JàØoöÉ‚‡ðLï>¿m(\ÀøNíHO¬]š+âÍbäú=Lwß6Wϱ¤ZÇyq™W,õ™ïŒó;¬’ÜÌÎÞíÜà—É¥¨Öû设=U§®¬i¡ô ¶q¹B´oו·qËXê¾¢ÔÒ `-ÿj€Sä'³Ú­b¾dÒ$Ô#hL¯FoûWÛn÷Ç·po½äzÅÍ(ȯb¥«Ö¸}ͪ% ±½¢ÿÇHÐ¥2ãõ;ío–*“Üú‹qCæf°oÌñ]ƒõ‰ï+™B¥î +Ca»¢”¡ˆX_ÊÎuí ³›à¾(+êD¢vÁÞà寿ni23¤ÓYnÝo¬u*Aø7¢„=ZÃWT»k±ÓªcO¿Yëyùnª_J%ÿ!!´nÅ•×mf)c´oö-ÚOE%B0W`W-¯=FØââ©6ÒŠ—Bw‘ísÝŸÜxÑ…Øì‘RWy}kö—±á® òÖш½'æ¥ÅíöÆH)¡TZ¶äl½òT”WZɵ;Ɇ©¥Ç,±‰ÚÇÝ)¦WÄðæ^ÕÞ8ìÆ!r%å-ýòòW´ôôjƒwŽÇ7”Ö{Àú½}úúñ@[€VÎ+n«Õ;ؾՂÚཀྵÐl4Pm¸"lHbù¸ê€˜3vøØ……ëyŽG²œåÂÕ]‚R--T6ÉZ -!?×§´H"e5f~5E!ïLÇÿ—]ï-ºµy-y›dKm´+vfû@³KÁÛ ×]z‡á\‰÷g—h£…yM¶N©1–ff«úZMÚûœ!“‘ÑïH›½AD”ÙÖÚd¾Vé­ð@Pûœ^-kŸ™¡ì:›Ë>Ò ŒÄ#93 ¥ ª#f«êr(¢—Й,3I;m¯¾%¿þóÚžwwØ©G5p[ ɨµ.½ÓáíìX|9Ý'ÿ@ÝlÔ ¯‡D·yÀú,°ðW¶• ±=Ü™KȇŠBIo—° ¦½6׉+`´ßè»P°K›qÕÊ/]ΓLƒÙz>3BøüÈUë)U täòdc©$ƒ_Í×W²â-àŠ)ýz²w1¯aÐm×;¿ †-ŸYkÞÇc+lпú+5˜3iKØ×ÉWù•ØåK)íÛˌȈ4™E 4¦–ÐôÎk’Ó°›^›îz•ê ž«Sçž ”^Æ™˜"Žaç\iA„ÊãZR^ö\uxL~EN¬ÑBáB„˜Þ¯jßj{è¥& ; ½Ž—¨ "Κ¸î#³dDy{aîC6üCÌÆ®ý L<¿º£šYR˾oÁ}AíÛÀ½kÑ^|%í]G”s Ú9=ÓŠÛä Ë÷ÙŽ¤–. ´]ó8Rf/ô‰qéa‡íåÔ–u’Gýí×múªj·iP¶|­~ãëŸ|Ÿ4Ýùð[…h^(¶­†Š=Ï-IHù?®n¾zE¡ì%¡ojU'QÃD܃׌ý6¼Š`d™^¡5=4]™-É—Ö+Ëß&«Ï† Ô»%Äl¼X-LjQšÍ©¹;p¨Æ8=jÁ߃z# âÄõÕK¢É&+–ƒ5àUV(D–w2£ '÷lî#¸äÌýÅå5¿rÞ¯UT+zKé£Â*ôD¦/®»ˆfæE¯¯%ÌÞaà[E#ÿñ»Àß=Áá-zíÚÒç±ãu÷¶èyŸnÇš›[ëjo³c3nhßOÜnz€õ§¿´Ý_k„î¡gÞKžZVp©}rŒñ12_mÿ?®òü×Þ´Ú_©•®œ?ˆæµ[ÉMk‘øÕÌ4·_ª·¢€b3cùGhõoiè¦FizýMØ|9 xËĹ)Ò6Á»Ø¨úÀ»ÈìUŒVº™eÃä‘fÑÓµõD³ã·9ˆ°âÄVøcÎõ×©Ž¿XÑUú__â:)+ ² ZÉú¹R‰Ð"ÝÜëð5‚âœÎ’¹öt”79|ÜŸ«ó<﹫+B‚½ÆrŒ~ëF¹¥ÕßÖ¥ámÖƒ¿’¬ˆ¸È qHÀ›­Ó~=ˆtLdab:½TO]Góír»*îköœÅ};yÿCß»:âkôù×¹ û>ùæ'¿ß9ûx¿¯¿9xn/蛬†«‘]ò†è®¿gëÉÞ /!Òr®vWÃÕÚ[91—qhÔX¬EzI$GDR&JC2©9 ƒ«Pëýz/mzi°íâ›»²PÝ5P­£Ç˜E ƒ$÷XÌ Â™Í̉´dÕ „8ÀÉÒ”…!•‡>»\H7*@Ê"£.+Žij 7Û6É}Ù` Öò²¬\uG'¢ï¤©þÕ{È“àîß—ߨª;Ðpñ Ÿ ÿ(ÃA.ù-è@z:¤¡™pž IŸ3rÀ=avm7ªvÜNñþþúTí ÚpºðmßRmóÖòãVÈ;ÆãÝq›ZjÇÕÝú“[¦Ê7zÜõ7Ý‹äªýr!-´Î¶6N—FÝshGÙ÷WX0«oÊBõd&#ÓZÌÆË—£¹&q ÍJÇHhoW»´QÐå‚Ìýÿò»Ûþpƒö>¼ÞÕk÷µ“ô¨2/'ƒ’r–2Ä•‡ód¥S*ÁP'¯›X.õâ`x{;¼àë¶¡FQýô¯ÂøJ06‰åzU®BW=ŒÝ©R¸R2ý‡¶ÏÍ*ÒvBx¬Œû9ùÇô‡k€±¤+ϲû«e}-œü‚™õ~1{Œ©‹ã±æ§VïÈØÔܾpdÖ˜¸R­—ýoÛ•Ì¡K¤Üñz±v%²­¼  ·Éã~b‚_EF®*ºi_¥}åÒ6TåÙfµ+ø¶56¹ 0ÈXs7äÅö²¾+`QWMµëf*øü"Y’lµú7÷G¿7-÷íA¦áÚt\ïFnÀ‹æ4ïCP ï®AªSŠk nM=bÎFu-yDÞf;¶nãGoKi³T°†ëbÖÊ‹gj¥á&¶¾<6%ÑU‘e:€Zæ³¢=éò¦@ƒ¬ÁÀ¨þ§$mUÙBÎ-Vº6W[!˜ËxWëþ‚?s!sKÚ\÷O‘<š¶àÅ-Œˆd”é€fˈ3e{ÝáÁuÔ#µnŠŽn0D™ùlÛÖ^õN áXøÆµeÓÊ•A”·´86w«´ÈP$rg?"7œµù‹™×`q,n³¢ÕH®ÕBO¼ú+u$¶¶JxÒÃ/bzÇŠ„JZƒ¨Žj•Ϊbõa— ÑÚ†è  °@}ÉlöÿªÙbå}sé¤ÕÕk\×1¸ÔDµÄ¸¦„„ï”Óu(]|l®­…öNM;|fþë \Ì™†±¡  ©-4]eõߨýÄ®Î;ó%˜h²2jÄÖ[ß÷Š×PÙÓT@›XV»5'HU(“Zr³ý¦¼tžëáíý/’vçÝÓ˜ÌZúÓ¥ÿ`jéÀJ­Ž>'!e 8£ÖÔŒ\qtÈ&ŠXæê*J;¸>-\ßd¬È÷¯šI´.'ááNRR}ë¯Ê ¤JíœÞVsÝW–½Ôˆå×ß~Ü¥ÙÉ€–58V¶\·÷;ñ«­`\"2“ÞÙÙaê‰d†{ÅHåR¬)wJ5Æ2nËý…>è—wG“Þþ:Q_DÇ-kðÜ“|A•`3Ö£!0øjDvKþÞy×+/»¼Š±‚w¹;ž%k¦õ#Î\(“J—]Âv-Î ¶‘ë4*å‹gm CÐmk׸¯$¦Ö¿I`ÑrÍ ôQB…?Ê ‡Òpìn.P—§û«~°¹ÛjÂñåí®;¹H‡Õ,·àª|G8;R;d•ÕÎJöðlq¶Ñz-Oâ’×WyìÕÞ­îËg¯Ec´=ó©#Á ù¶Z›ÊÉÙlè¬p˪´#w´ñúÉ–h8’d¤Ã·¨jEÅHËîÚø¯¬5²XžkÂ×ÐþJ9@É_zædVÇ%ÕâxiÔ$|ÓyúEÐÞ¢êBpÔ,¥àK*½CÈ‘øP_ÞVh_âå+pgŽ÷4« bq®x³ãöß\÷R¢¡clĪ6(#¶Ÿ§¯¥+ pÍsRH¥ò«Y^­å¹À£ž—Ö®ƒ °‹½p,Bqµí…5ÕªSª”ÁŠ'âšý ƒ- ¥±pÏõØž§µ  Í+²nªbBäŠ ÃæÀGvQÐÖòcQáoáI8OBÌ@0e²9Ë …ÙÞØÜTPVbÍÞ ]‘ݼš+c.¯°oˆæô¸G­ÄÅc ë¾~,+ï0¾Ý€,?²…=^Z®âÍÊ)½Ì¶ 0¿Îÿ¼Îÿý-7w[¶äíÛL({öqi±‡ižÍ4Þƒ±±ÒZŠ2ó>òsww™uA©NþDzaëU¸‡µ¢®…•©4c-¦ææ""Uø¿ª+6xb»Y›»¶ï,ƒ]3ðt¶É±Ë³º.kªQ…µQ´'êW=°:&<&wûŽ%€õ1ÜCûš¯È1Uˆ³Bb-<ÁA#˜S:$Z º–:.Eˆ0,rPëq¶j°³8¢x£ÊŒhÖ@_µP®±Hüô]~¶œp¹'3˜"ôd¦q â W$¦Ÿ(–gq¡rÓKpÓ¶©H‚*¥êq41QZÁ^ˆ ûÜYk{=Ý WLRô8½Ù²À7¿°Æ¾ }•Ê–x÷'ñÀ8mF”ÍŸ…FdÂ*5SU’æU_e8Eky"¼…?=PÉáî)ïÎþ~çË+]ÿ;<¶8Ý“L)P[å2\°šŸD¬Æ]—²ò<„ul~Ëâàeäm ]³‡vDy3Ð @$sFçBˆ”y°I ’áÑ ±{¥cf4Ô‰ŒJ‡.=WËFç>{°3 rëùÏç32ihÿpÇE$$3™™+#{©šß¨3Ûè’Úw["Ãgö0ÈwØâ®§¢,[UÒŸ`›ÂØ<³è(µ.r›»Ì< ¼½„kP¶®wî®q­ "3X/‰öŒ«~Ù$9ãÍ0ÌLK ‡ìœ=#Kš FâåqDÌà1lhõQhÚ§R;nj‘úvì×&¯íS…Öh Ÿ=M÷I1gÒ%Îð˜ÌcèË—§LÇA ð& _Ãý‹]SiTûwÛ¡RjgK)‹ ‹}x'3½fcÒ0*‰ÓÝÝ)#èÓ/ÑMí”´$¡…´üæ /–&;æm­ š·ÐÊEׯZv…+G !‹±ªÝ  ¼u©Œ¬!)"aÃ9çº6©sÎ5Ÿ]`š%â©~è«­JA‰´9+ƒ* ½§ÆPpxG ±ýõÕÇF³Ær¿÷cY…M%”–•IŽ›Z­>·J °(ÁËdºØE)Òr¤¬r¶)½Œ±å²ÝɳX^’“©dÙ0"b‚(Ô³eÕ|h°†­Õ—’âàDUæ’È¡@Bib*&§¿¾á]>4Å£Ÿõ„ûùËÏ¿¼¾¾¼¾û€”OŸó43TþÛÿ¯üã¼òP#æÛsËD¦‡JüŒ–˜µ|—¶¥¦õÛ3Â#mŒˆx¾=?þ²¤‡½$]¢ÔXK›X2ï°¶|è² ­¬§ºFû'¹´ Q[»ðª6M½…4¿hõE좬‡ú4ÆI¥ÉjvVôäÚhv|yZÏ®UaoíH•ºú0i’OÕ JÃòdJ8 FM¥M‘3Há0Fú—Ï¿ýöëoÿò/ÿÛ‡÷85bÈ *ÝM…Öóߪ•=x3–Á™‘õÅK‰FÀÝçé§GݲÏó9=úÛß~ù·û÷úñåõ53gÄy>ÃýŒôÐsæœásÖí–çŒY±†éžŽXÓ™Èð±F™7.{ز*ò¬°ï:ª ©f‰­xjß»ŠX¹$ªè‡k»Ì†üíoýåçŸÿûÿß?|÷Èkªß ¿é¾xu› žÈ(xFÄœÏçé™ ýûo?ÿòëÇc8";á“3<2ç¬+%»$BIº¬~«6áJ¢]‰¹±¤±ö(½OŒšh`¥ þúË'ïç²Iðy㬞±·¹ä„Éë\i“ß<<#à>ßÎîî ΘS€ƒµ©×&D*J*˜çœçT–³%Ï9ûõ·Ÿÿúwc«C+ëÜ–v·ÉvI|ë+/)ݾØ;‰è ¾â&Eí¼®µsÚD„õ`)æ6÷leÂY‰ ›Œ['L”duG&.a3Òsñ7ЧH,Áa·5R¼É›[¤C2úíÿíý@”8tÙT¹÷¹`Ÿ\tÃÞéuÓ°"CV¾IR²R¬[BQ>ÏN¯ 3‹t神}øù?ž‰ÏË ÞD½ŸÌ*u­¥©»©ñò:ÒÖºS ¢S®2=B*J[Ó¨bG¾¨F†¥“È0ë„ÛZ÷½*ÛbŽjt÷à¥t´^õs‰ÉJnTÝâß!Úe­êå/6ânõÈ9çóüóó<¿Ìé}¥Q”“Ó*‡B¤Œ­ïÚ°Ü‹hÐS`±ŸgNOa&‘˜sz8Í>~üáãÇï3%ª&ÂzÆ_›Æ¦._çv(@âlŸY‘Õ ©(º{€žÌk%×Àä NiyïÈÖ±cf:¤£ròjÛmYM—GÎŒ¹ɵ£î”þ}+tÎã¬G-6“ÃJ$…ºÁ;€i€I[‹Fpˆ•Ð]Ï/å:»‹›jV‹ùR+(“=ìxãUã tÎéóÍÏ·9ŸÈÙýtÆnò ?”­^'Š)Zb-±­Bq&{3W7µ¨|¸«’ƒ;£³ÎäâR‘ñ°ö¶*a ÛL',­Ùå¾ ¬bî®@íE7Èfó–ú2Ψ؋âÿæÑ­ q,uæ%'YŽhtƒá×;P‡éd<}¾{¼„+e3 }×gØÈÚk.!ð¥AÎØsœÁó8g|ÿþÃÇ߇c˜e\kí;<¾…º—)µ½]k´Î[ÆQPËÚEÇ’ˆ¶í£ÜŽû~e²œO­?Q[ë·êZCƒÔ1ì=Ã"“)b™ðŒñDUɱ¹È@5fÎDxœ™E3æBcXež #MÔÎCV¿jhßÈÌjtM3-‘DÍS—?Ïó3Ãç|<9ÏϺ(#½2Á<#Ã×úº›æ²Ò_V0ôE·©^èÏ®êÖˆ­Ç8í÷L@÷ÎK‚ƒchX¯Z\$’ƒp^Pd€‘¾d¹ëˆ-S;[r‰ß+š>Üz¨²ØÄëµIÞ˜î+gápr%ö4ÑgÌéPär(î1Dí÷±ÄQ ax–Ú{µv˜+†®‹NÌÍy©vñšSòÚ WàQCͺÓ] ¾^Dz“ãzôZ%+ÍÊO¯ž¾–$kµû ߨÂá&êZ»P LÓ¤C:ÌÂa}ÿdíH*.t&3+MjÃ&.fM…‘EÄŒt0*¾^èQ©sÔ¨åcÍÆè$¬Î j'v°0¢ÐÌØ£ËöJ¯0½Z/–ðDÐA´WhdBŒ‰yö?GW‚êì!xN8²’Š<‚B¸Ò£>7õ³"ékïÑÒ ¿‰}ŸÔ˜wQ D_Y&¹ ½Üø¯¬˜åÜó»­àÎ&!Q ElkáQl®çE­šv©%ÆÙÞ¯Œ-ÛŒp±aJ±ƒžJ²PëÎÕaG™Âì+lêrwæžÞ'w¦­ÇÇ#¬!KkõZÌk‹ÀÍnó5©†gUne\FmWU8ï21óëp¤Ãí8Bt@—X9«+ ¥#µ¾D ƒ)Å0†Á°F7¯h¥ªÈJd?/Ø &U¸×ËéÁŒíË‚%¡„…L¦J7C6ØÉ¤¬˜”UÒn´A ­2qذd:P Íìˆ8¬Ñäz6² Æ’(ÃkúܽޅDŒ9Oµ'' YD¯z'[†“3| :½IåÞ™‰‚¢R 8ÙRÖÓÞ+Ž€êôòRÃI”i:êÚRUúñ¢3sFt• †ûíx½¬šÕA÷\¹)e|7ÇŠ½â’èTÕ‰ 2þ üö}lAÞ6?÷~ªø¸yó[±u# {àhê®,c™I$Ü£F8C– J]#?ô/pu¶³îÜþ¾uÌ:râ¦× ¿$lêýOZ¼$¨SlÆBZ6Ó“ÒÒ;€°¾ˆ:‰Y²˜X…õ 4ĺ¥:ù'‰´äŒôì…æŠ Á¹8P”1bz¦0jC•ÖrÑ‚8AzA6k¯ec°5µ½¬·:r!R£ñxµÿAÅâAeõ:ô´ùi`µQ˜éážžä †a6¶GQ«MÙè-ÿ̈sB4ψ`FŒÁZ}ä¥%+·³Q0Ôå,ø‚]Úðmq/‰? ˜£aõXg¦Ò9ÒñâX q µ@b  ¸fuÕ5+•αñ^%?RͺØ*æ¾Éßðu¯®ûR@ì|˜ebÆÍJvIƒ;ek¿{cù¡¢yሴDmrp ö²«"zÙ_}¼î–ˆlºÐí-¯Gë6æF¹ŒÄL‚!î#ÂÓ´’àÒËe×ƃ;>EÌ…þìqx´zÁ"— -IÙ0’òpGfÁv³7YYQ2¿L/öÌjÛ"™Á0ZM3"+ z¬×Ör+ß ô\ü,ª¡5ûÛfýÙ…¦]Q¼`*vÎY¦€ÁF+}Õ1ùáþ‘^ TÈ;E r•LÁ¤`W < ©£É'%NÉUB üñ|µ÷ÀÖ›Y‚i0ÓËvŸ}Ñ«xLÆž:¢¤‹ÕM<–Ø—¥VðTƒ­¤¨“Mx¦›gHð*CWúU™&B…zÏ#%ÜtËÄk´ÜÛ€ÂÍ=LÃj» 6›-“Ùð=U„ÄâöX!iª_îážjãg—W‹‹ÁåìŒÕ FÁYKÊvOá¼ß3}AlJ¼úÛnº‡Æ•—dåeH“±UKJS¥;dŠ•> ^²Îm÷ã ’}±WT‹$¯›Ð,¾ar(oè–~A  \5§÷,‰­üÝP%qD8¢N•b´W&æ2ZVÍ£JjÒý¬+©lᯯ"¶ËÙ-”ƒ0ÚlXaÍÃdqžú]HÕZH00ê²«Š«M+©Ou]¢o+´Œœ Ã ªÒö¶8°Ò=êYÉv˜4‚–QêÍA„5<ë ô±ÜOK YæÏyöL*–RsyjÃZC¡Ì¤‚±(ððˆ[–‘43ã!šÉ”=b…Õ ..4ó±Vudcyö‡^]GÂ,ö"yÉêM¬éÀÌÙ6ˆ ¯¾F¹âcò@Ǫ™z(Ù‘iëq¬ÿ]Í]Ï KbÖ0_ mÑ¢¬†½–ƒë7hèD $ Z_ZD‹¹ó vøèש+A¨W-ÕR_ä¦iš˜° Dç†Ç”‡_`^Z'bàš(X»•Ó$†ÒZ¼ßS¹–ý“a<¢Iœ+|o[Û^ QšŒçìª5X4I£º2Ñ,ÀhÙï­ŒÆ I*€ÓŠ£ò ½i –Éìi( Þj£Ø¶ÔA…Y<5LéÉédX‚ ³nŒL0ÄŒrß´ë³üde÷‘¯?¶+ºŠRöc¯M8b¥ ŽýÍdÊÊÒÒEd8‘àØék5ßYy ²‚Wu¸sª_Ú-´´Íh¾ao»û ÷ÊŠõDS×22¿Í–ÊU¹®A”>ŒÚ°÷l³ƒVœ¬qˆWÈ×Îض jå0*÷H¹$wM>úJ¹$ým­Áü"‰S—…§|‹ŒÆÊB+«oq$… K"ë*KIL@L cÍs†q ÁVêÀ î½L_H–gf±"6®õiƒæ4Ò#"cv®`Ûé vHšqQ&´ª…Å'÷Hªc]kÍM¾"nryuL…AkbA{à,’ÎI˜4Gµeˆ,¯|O •s“Ñ“V-[‡*p»QÑ3¬c3 ö]é…Vo@6#JáÑíMgïb_>µ}QöÚ¤>(YäZéà.ÃÇ=a©*—bÌ[‰ò«¨œzþ¼¥}¦V>g¶¸f«cÔßအÛë+ýˆHg}$¿Ò ©Ü®Ä}Doñ7±¼Ú–fÀ7-¼‡ŽhÀÅ:‘V"1¶¹k[LE•¥¦áZc°zªª¥@11tc×´¥ šV–L ÆV‡]áé»qÐDŸ<3A„:„³'C’Y­µ †v´WK’HÁ+ªÓ´G»1k ѳ³E°I„ešÒˆA r£Þnèá °šP¨é®MOéYQe£¶x¾ $XËBV{—Ñ™FHÐz§“sβßï@ C­…Uíàé3ŽÁÇàPÛ™p&ÃeÈtµ;< Iœ+Æ<7€ƒ½·ËMÿɼ˜X¬í) ÈÁ}›eàŠ‚ºO3²‡~ËÞLñ\aé›1’sžå‹_ ‚æ¤a¬x0DD}¢ÕD·laCbs{J;7©%ÂXþòÌ Ü[Y ©qÖ&¦aç‹+Ö—&qƒßfä°¢kØf‘í êÕ0ôq#Ö•f2ê  “Õ:×oÔ.—ò9»„¨î†å”AûFÊÀ¬Êut¢·&K´Ößþ^QÕ™¸…ὉÙtÝí-6À¢J ¸ÍT±•výC!0Âê'­wKJÓƒ:MGÊia™ôšÁ•?&ºF ˜‰ŠòVfPa·5pË*O0½\bEÂRCàU(VîP¹!ŽqØqèP‰†£‹÷‚œE:w†4ZÔNÁ=ö] Ì6«‰D(*`$•ÏÔ/øÞNW›˜V9€KWŽ=àÝ >ÔÁR€ ˆçËÆSÎ6Ï4Í+¯‹j=¯4µÞ´Gr{!kqr' ¶8¶ƒ£v°L¿TÚpͳö‡TJ¾*jD×{ó®Õnôù-7 tÅ\ˆ°+:¦øžpÍ¥Uha–4df0q¶è@5h  P91¢D†2梶÷îÈ*ðÈÊo @2 zœ‹qùˆZ„†ÍM¬H[öì~iõº®´;ù‰«ýÛñ½ÂŠ g¶÷´ Ç¡L4É ‹¨« ³˜r÷Dˆ–=±b€PtʸڵU”/5@ßÞ­÷i»¹š÷»t‚Ö´ÉdCCªïY—Õ™dÑ-¹8<·ˆ" ´¯W° ™ª´”„»ç–Òr­[ó–#¾ÕšµL\ Íï» >ëÌ›ÞUvYà—.;N9–I«Ç¤+Up‡FCü6Êd[-ᳫ¸¼Ò4…ÿÆZÒº¦µõƒ=}Eµï‚­çKúÝ„LŒêX¬²Â®†cáF–þ[«‘X·L´3²W„X1æ‹¢iV;Ü#˜=¹ªÆ«ÖÍ;„¦ë:Ð’Ã86ÁÄ,¬„²²´7Ê…ûÌuA ±Ì—k³J-VƶÕ©³ ö[·kÞa%È)ÍfõÉ!ZYÍ£r]"Ôs°RÊ®xŽò¿çÒ+ÀHÆR­§G™/™VÐ’MGYW«0Ú86FªliÆ1t‡²)£ZÏAÀx‹õòn 3Õ™Bì-IkWUïÎî¼êà(=T\ø6YtÊL¥‡+¢éÚ z§ì6î+àiå5e)*Ýkiêîsðºm:sm™.Â#VÊj×V,îp.;ÅVmnÎÇÊÆX«±kìÚbŠår'Ú-A´õ"“Ä–Ånèe‹¡×Ûeb9jÔ‡Œ4f/gˆ¡4áA–òk€£FÄULUÔzYV†FÕECbl¶µFD,LSGÄ¥ÕO1ðšq}¿-ý§¡©ÃÔ$@Åð«iqªý†¹î–Ü#>Y3¾üéÏv@Šº÷*×¶,ÄAÅ1Á)Œòƒ4T´ª£L *c+å3¢Dð   ÒÕã`ºf4:­ÎéÌ%cÆ JP9™ƒÚ2¾N( Ùc¼zÔQ¸ªÌúqDð ž)' äO— þìx2«Â^K›—k¢_á4;,dÏÆ”,à["úoˆ 6nïɆT-:UV®í›µ™R°"àр٠ÿN=Tº»û¨Ù‚gljëú&ÑRš„Ð@R:4emç¬ÝÀÃ{D5'Dí&<°AÃ@ QFÿ*uF­¿"Òd‚5k&;³«ÿnÒ*Í¥k1Íx ãQ•’õü£y{xYÿ 1Ce=ƒ#&™Àéë¡&.PtyècΤà5ºW´X³<Ñ€F' rOQ2£¢T4Y‡ººÁ³ÕÜÕ Š%E2†&@LC‚<È(5Ÿ%:’¾î%¬T>öúø¶ A–àY¥eìF¼D¢–ˆÌÆŠ¸¹8 ‰Ã^öb´jA5;j/gÎÜpu(¼ˆ(ÿEy²-5¬À ¡Œ Šô†(!*Q¥Žè¨ÅjR\‡“:*²s¹µÅKª¢¦—ˆ¨™uÕ`¸;Aš™Yf»ë}%S%¬Ýõeo¹Œ›-¤O®è.×6³ªÂÈ`6ê ›á£Èr¥Dt’ƒFÞ¢®äóKf§Rª*[¤ú¶÷5ä¨K‘C2a6xˆ˜4††ô,nI ØLÕ¬ Hb¬­_£¥ËÍeU»Æà€Œ *˜Óþ“ VGf%Dµn )Šî슀[^æJdÕÈÍúÎÕÏ,¾oU 2HQz†Ù¡ñÈóISi=Š…‚(ŸŸ¦L¥yd0€P¦¡ìúŠVÀ%“Ó½òâ3½‚—ŠZ‡/ fDØ2ÊGùÄ×È´NÃ`Yj`D]¨åÈ¡%“&úEc®>""Zʹ}ü{]‹¸g»ÅBHGãÞúeÚcãòøÖŒ¯Ó€jMÜ™Ùâ„I6lT™3½@·u¥D¡0J ¸žLѺ—#RY‰©~g %ѵÙ14´•Žk [Sk¬ˆ•5 Š52¨vÖ×¶y:j^f­Ÿ,3LfÏȉúpûªP/”ª#é¦çíõØYç34˜YÌAªI–݃ÞÌRHäèeÌ7 [ƒÃ3êž°ªïIJÈpÃðœBëí˜)Ïêƒ2b2K Y;yK$+mQª—1¯Jч^LÃh³×1­µeÁÌ(y¥gÒhY±#ä0\©EõVë.J”¾Â@KÍ–ÅøÞbç+&µÇY ÙJøâ5ÔºÖÚ ¾…ò[Ù”¼­z^Ú í¨á®=%­ùçu¼UF¶ß#ŠV®o'{¶´g’-`õv1sd™K{nV¯jdÔtŸ‰ðÅñè !;0ÒŒvåÅ6L±þ”ƒ Ò ¦:XcYL4ê0¤Û3¨~Û’ƒ¶y‡]‰¥Ž’œq Þy¨Üm ÌŠË;ÄÌ‘œ×Р.¬±`·F ˜-ÃìCÞãOnýoóT5j+ÈÇÖFÀ–&¥˜pÁv´“¥±§1éV±PÎ )•¢:ål¼K2$ *3<¼£©‘2DÊcsQ+G)•#68[êõVÖ±p1Ú¦QÅgÅy7Ô–Ý Áh8e©YRþâäEuä´÷*ÕÊš_køf"Z“»:Ó[_e–-A4ë3ªŸnk¥w\p-Y»nÛ¢±ê(:¹eéT"m,T;v8^Ë%nÆþmn«Ÿ¾*HÛ »LÒî6ªÍ¼8úÙ`ùª0Wʘp9‰÷sß—bÝlýf­DÒž¹–ÁN4Ó0YÍœs‹¦Xš±JXlv®îªŠ(á½vÆVP5Wgý󎄜r?YÚõMü$vð×®w×x_`­âIl%DýÐ+ø¨ÃŒ–í`Å9·,MT¬”’ ZRÙn{ ™J÷ªøÙ*†(6@6_Ù·=’ W ‘JPÔìų́#¹:É–Ô¦6ƒ¦qØQoC_ç¨E¢¤uCíÁôµÅ¯j„é¹ðu½ÉÞ¹¤Á…g»RÔúž)Émv’ABö0Z’,oé3Kƒ…Æé‚ƒ-´Y‘çÔnºR*% /BÍÆÖ%ÕÎVRsX;MdIv ¤jìPk­v/­S3¯@m^½ôÒ5¶“ÉZ®¹r”wþo¿7¯De+½¨ºú*Y(eÉ EXÍs„¡šÒb¸4i$d¦öæ~GÝÈÚî1¦×Ò¦‘uë'UïŽ,kê¡Ñâj—ól]êÈ2ð%mpUÍéAU TáJ=XElÞê“`çƒ3¹`è­ê-±¡…"ƒ‡+“e$ž5…Ê< t$ÂÛi[Á¥-ÇìÉËó[e¾'‹kìµKÎ`"Íáµ¹lÍÙ°qØËÐ1ò¨þdˆ™0àL©œðåÙé»é¥¨w˜ˆÀÄÖ¯ÖtÅjb#z&„fFWOÀV Uˆók# ¹ØÈµâˆ¨KÀ=ü-&[Á°ßš/Ý>”¶§å‚qpsˆ¯ü7ÕÊ`ÇD×^®&z—þpÏÃŽZÕB vy¤%Ôj®’¤!–‹0=R 蟿„.1ì€@…)–UuÀm€TJ½L,g¤†Å0«ôòƒxÔZ=¥…¼ª$mµ-S1ACMÜaΤj1æYÝ,`ÌÙC€aH¥MØ“AæàH%=Оˆú¬Qœf` b¦Šî Œ„H'‘°dºŸ£$yU…]Ë\ÑHsZÇ@ÔJ”®)UWýž^ÅOOXI à¬oÔ{ Çè†<ò’›¢.)Ó„AÌt1'¢š3{µÇ ÂCDˆç›0EúÑÓj ö:FzdbxdXÑ«9³ö°µ,b[ÕÚÈÑkæFûæ*Ôn ¯ËüdXñÈXܹ¼NKº£¨g¿TR&,g!ÚÙ‹‚£…ìÛd©ªE E¹@zxÇÜ–µnßÛs·åb*þ÷2¢Ç ]ã›Éh¢Õp¶Dû¦¾V¹nA1¥4¨,–ø}d½ÈF´’@XrzrI¡ËÇ­Š€E* ÁË_š¥efR &k ™‘£ê‘H‡’ÊaÈ’®1…*iÉGFFR£ñsÉY O¼:•˜Ä¬qIUì51M© †Â‚EUb{ç([8Z—AÊR†Z8”„%à‘g,tÐKX8*ó¾È2êô$S¸ÏH÷Èà E[‹ë¯d2r í§ne¦M$bDÀSÁ|Í—wzI3™Šv¿¤AO«mMÉvw@w,taœÇD8cÒÍpFÎtcY Z‡^F×e¬•ÈK]_|Vö%£*Y»Ü‹‚¾×2jc0H5åŠò«éU½De Çå7¼àVV³W§³‰XÛí_E|Þ˰rÍsIw·R„¹SÒú 4ãè%ÌJwøªXÙ#G5ëJqh<âËó׿þuþþãdRyZFcn²ÂÌÅif¯/ßóý»ÇË;£¦Y¹ò\ƒtàóçÏùóïï~½ ýSDÒ>þôîü)^L0Ë·WÂd£ïÓó1Ÿ6ßÞþþ‹zÎsпĔˆ'Í:;4Џ\ M&†r%È Ó§¨*î`c\’ºlpHf¸cs"ÅéBº1=ê#Q9ÚØ€þ  —eWDàJàYøþX"Ì 5"Þ–-¾®«±lÝ3Œl`EsÏÑã”ÒÐ6Å#i°Wé!{>¾þô“G~zžýEÏg†3£l|…Lâ`¢ŽÂ bã?úÉþÛ§çü]ŸÞާFM^Kê ˜’*|üÇï_ÿÛ?§ûó_ÿïùëoðà»÷ÿÇÕëñåÿüsþû´5ˆ¤Ï÷¦Ÿ¾üáåã;#¨n &Š|Îg¾}ŠÿøÅÿö9?Ÿ0Ú£Xz|üîõ¿ü§'ãSü™þ™Št—{­Éê¶IlÐ1†Þ½ãß?ß~ÿ4a/—ØÓu:#ý=gÚL÷`¸¦ãœzNð³ŽOÐ[O’˜H9ê´<}xÿî?ýñåÃ÷‘ò/Ïó·ÓϧW)(òåñøþãË÷ï òïÿŽ?ÿ?ÿvœþ ß”=_?œßÿðÙ"þdŸžˆ+°½3€9Ïç“þŒ/§Å ^#ñdù¥ 3Ô¸<¨ ÀjÓg…7Œ°(ˆ}f® * *ä#01½[ˆ­öL²>ÇsÍ ÁJ2Ñù5W k‰J"V,ÔªÓ¢“z6! KÆ“¸Ú–ærG€U“æ±]Ó³Üá¥c¨.™3Y¤¤–Ïw¦úei¦GpÐ^`/ïÇ÷8~ü‰/G¼›1©ŸùV¾ùB7wG'#¥ ¥Yy³xyõâûñP|xLqüû¯#ΑîÝrb¸d 3hâ‡þã÷óy>__ùåMãýûøñ£?Œ?Ìÿøû£²:©9À÷ãŸ~Ò?}¯Ç8ÿr~~û|zÌYI4ö2ìÝCï^ß÷Á8~~ûËÏu$Õ.<Æc¾¾N¤cpæÈˆyÐKy€;ÒLãÈq„YˆI3ðöô3òô|;ñæ|€øîEßšùüË/öÛsÎszÌÓ}N0ð|‹/1ò‚õ‚ÂÅGµ):~üáÝ?ýQï¿;ßæó¯¿çooxóô¨`æË<Ÿx7õþ§ñÇú4‡åß>Ò‡v<õpŸ¿|yýù÷êŸI¯Ù•×lüÄÂån“ !+ááð|¢3¾ÈŒºA"¶óFÉQYË‘ÁÞb …÷J¥©¾Õ…& u Roøc¹{f™1ƒ2\¬Ìj1®¾wÐÔoÕM%W½H츮Ì…0ëh›J.¨)Øâh/-2ü©ÎB˜dJ«ò\›[Þï²D„ªµd¦×1^`/¯zÿÝã㮇‡ÆëãøÎãKò‹YÌŒ™1ÕÁ¯å|´!;8‚&mÈ,Æqæ‡ÍAŽwÇ?É\1K<›[.Æj‘Â%Çãùz8cŒ— Ì1b˜¿Œãqh<„ôði6ÿðþõ_þd?}7çyþù·üËÏÇçy-EŠCöÝëøñýëwñŸ_>Ãÿã——™"“9yÀÌ™°—ä\”6B‹~”"8’Ã9SêHd(ßNž§žgœŸg¼ørB”Çw眿MþüvÌ@¸Ó}ž˜ç˜IÈINjȀ˜dP®ƒ>¾ûÓŸôáçÏo_þýïöó—ãD Y‚Tš^5Îß|~ùûù ü/?èÆœ¶¿`GB‡sLD%¸E œ}H‡Ã3QqçªØèš* g¨T ‰•:lH\LÙð2LÖ\V¡dQH³œ¬UÜW¢þÔ–Wwê 3Kï\ú¸,#wx§ŽÖ‹PT¨ —Ñ2òz[ªIî¤Þæ FZu YÝl£ÙÖûÊÖíF?!jp š’¦QÝYuQm1Y$Ó0X`¼;^“ï_¿ûi<ÞùrNÌÇwßÛ»çëÓÏâî°“µ5ƒFȤ9˜(èÐp;ÜŽ0«‘äx}‡ŸÏxû9yN%¬z)ŽÊ‡oÇñfÊC;;àOÓÐavdD˜òã«ýË?û?ÿOŸþÕþ×/¿¸9RòÁ,s0'âù6?íŸM?½Žþ'ô×O*x>´GÒ>ÈgAóÿz±òú8È"LiÕ5Jáõ[ W„Õ5ï$-éŽc"ˆCØ##\ sœH¥¥GDz¸Ì_ÆËO?>¼}™ç_~¿¾½›DƧ˜%ùE$cXä‹gøß~Ÿþë~ð?¼Í§sz…Ì+ðz–$kj0Wh$¦1à…8ˆž&£b#jÅ5ÀYu]T«»´"A«„ËJ0³B“øI¬ àÌíW˜¹¢BnÁmTÓ—ØòXι@۬ߢF+gŒ`±Ò,öãŠ1c‘=–au•–Ë›µ·ãµù¾Èlâå¸TY¬Bmhhîf¶k˜Ô8 ¯tüüÉβ°#Ã8J;gr§”<*… úOL¾¼?ý8ÿðñð—_ßýåóûÓ1Õ£ÑÑ ·t¤eZäÛ¿ÿ¢‡^~ü`ßÌ_ŸyVt‚a“Ö¶†]Íh‘öm%¨iz&9 0'=ᤓ•…SöZÅD #Š´jÖ®‰Ê`†ñ¤é݇ÇÇï"áÿtüý9NPø3òDn3BáÃŽtäß>Ç1ðŸ¿?þð}üþÅýT÷a3ØÊ¤X4Ø@zÂ3]-„žŽ³@ÒÁTY³VÕ ¤ÙˆJúáÒe'`™´pW›ÔJks‹sÊ ¬ S9¯)Ó²Íñöþð€XM‡ebö sô¶ åä™™#|©o¨KÑêÚÚQñ÷Èkúŵœ,z'TÏ,“IeÒZy=´5g€cË@[:7QÆa:`Rãxy¼|8ìõíÍõtÎÌOÏñà Þ}ŸŸ8ƒ€B,‡•¤ÑÀrŽ å°4#3r<1fú¯Ÿâ˜þýûñ‡©gê×gEJ¦mÆðUÍþHÈ€…Ëo© ß=øãÁ_~×_{|™x OBȇf7'éÕØ&ùeÆÏ_òx ¼ÄñNþT·Îš…™³€2(›U ç&ã—¼`dZ¤‚HxÀtd¦UÈb±ú™˜Ë•#¤(ݵ™†¥Q‡½~ÇËóÓ{¾s ù–§3äóŒÚP1PCº$ñú ÿùK~|Å»G|x—ŸOùâŸa‹³™+ƒ„¹¬ýß²"TÙÒ&ÓÛ5S‚¡6*¨0ÛFêš±wpXÔ›Vá.™é;c¬R ¶­fb'ÊÈâ&>¶¥¿_¹QŽÖ5à(w¡.h`·õɶ@gSüV`K‰VjÎEHP¶·ÌhÙŽþGûÉ—6xö"< /Ò#/öúЉø|ê$"ùeæk<Æ»x}ûüù©¤Á-Ü*®•fÔHÒ8`„¢¤ËÉA!1>Ÿã÷·¤ó‡ã‡øìgü:ž³ú³ÖÛ!ÚKËùÍMÉìÈz20*éï_øñ½9âçÏöy*”é3Ž †g¥»¬¤0F åÏO|þ5’˜CL*V·™SÔ°jwsXD!ŽV‘{¸¬*L¥§,aTÅ ¦V¬9ˆ™cag9Ç‘Ït0’Q¿6aÍ]ÉÌ&FÇñbÎç§i•õÊpÆŒéuq5ð´·à†’•¼=õû3?¼úûw‡¾Œ7Pe¿&aÖI†Ì†*€™´\»KÑ`$gù1Ú[É+éka»‚’2.2–¿ ]#²jƒV™ ª¹Y¨ÛŸÕrÕ§çåp*z«g–QSÒÈïF®t“KAÍ[¾‹»äý×ú%A³žÍG+®²»ª"1[£}‚+­”‹¥‹s¼èñr<^ÍŽùœóóYIù6ç§·ññ8^^Ÿ#=˜² c"’6 è%º‰#Vš©„Êùšx|z>Ó!ñ»òOßOýõ·—³E ÑÕ•”dT—\g_ ¿µTÄËÁ×_NüöfûÉ`êÑ©t@#™0H°P>a_ÞJ*«É]<Œ1üQn%(²V/…Æ—ÁwŽÎH.âTkc´‚KËUQ%^´#¥˜`›€¶VìlN:ÔRâ8†=r"Ÿ¾ÌB±’RËVЈ ­À©kxNDêñ +þד"?¼§Œ™ôdxŬ¯ àyø9Ÿoó-Êõ2e¸Rϲ6q¡úTþ^–*'s5~ »%œØ’D¢Ó²†¬G×U1² ¨»œb3Q•ûÖ $eÆ–‚ŽMбZœ4Bm‡|¤¨õÂgG°„j¼v8߀ª+®ÂL´Úب³ýê“ÑÂSoUžqHã/Òa:^Ž:ýË“ž£ŽÆp;ý½?¯þúÞgˆ.”er-ÔyMIÊ‹ŠÆ•<ãñL›ó ?Íñß½ÓŸ>ÚÓŸß pñÔœÆÖÁvTAh5¦TAĤü9ñôá•qUÜÊŒÍ`HªýÝ‚LéaÛËZ&l¶ÿ+‡ÿUoÛ$Ùq\ižãq3ë¥»Ñ €©!¥ÕÈF6;6¶ÿÿì/Ø5[™id#HôKUeÞîg>xDÖŒŸ@Ñ]•÷f„û9ÏóöÍ©Ÿ-«-ƒdÜÐl®Íxî8û~rtrL>¤Œ›šMÑGªËÂ쯌 +y²Ý˜w)š2fë -Òl}¬¿¦ó‰õëœMú•BuG¦F:Íš³%I†[|äéŒU——b㌌@}W~‰q;GPa Í—aÆòu±‘ÕÏÓ|Žj¦dE£ ÊS)+r²*6i°„Œ²)ø«$‰–Lå•ß©e_Ml.AÁŒÅ¡j·@ÚáÇEÿ›4›:IåLÔ8çg±ÚÙó1XÕÓú ó•1Zs7ã’TðÛªÁšJc¯x¯›7Ûš›Ì6ZkíÔ¬ÇHj¥?BûõØîÛùü°ïaºRQä Ð N6Í.ätÚ¤Œð–æ0zÂÄýËqœ¿°µóã]ÿ&óú ^Žª§¢éDÖûmrŽ­~…¬Rsï~$òÈ“ØE³ª8bs›ŸÜî6L—=ÇœnÉc¿(öâŸPJ5ߨ¹t6³bÉeÓÅÉ¢k´Z¡Þ%fVj6+æžnõ cîðúùQU:˜¸ÜE¥Å¬úYSÛÈ>I¢ ØÌ,<‹8Í8…ÒzMÇÒhv0«)H%ëiM—#®û<२TÏ1bŒ]£–ÃÍ­!«G6ë<8¯ôþÿ·S¾b iÎ…€UF¶\¤ÕeÜ4‹ Ns¹Á &™eaFgò¿8€÷yÚÜNfÝüä~îÛ¡íG(a*< d¹lêíœýÐ.³„bRÝŽêc¶}üHˆú¹’¤'òã•zòoðx—ßÄøå‹ö£‘á¨x±-k"0T$å ÑªAJZ}…HÖ‘¤Nw÷íë7yjòzQc¶¡%ÇgàSX Kèùéz<]kÊ”…Ì c2é°“Û·“ù}ÛV)mÒÜQo<™™ Žò€…µ4s2=bh´ˆ÷¦1N¯o´žr 0/èÍ4V S¸W#­@(Ëo2mAŽ B “±…Y(Ÿ½Ôc#) ´TÁÓ”‘yŒ:P×÷FÉ"ˆîæb¦"³èl2r$êEaSßK+îÊ߯v2Ì oKkSNË]‹!V[riä™2£Ì¼’¤)WAâÌÌŠ¯³Œ¨-Mi3§GY™#òÖêYЉÇá²i-@QÍ 0ÿštc´«c^·<-s…¹¡Ï Ì«ñk§æ÷n§¶Ý·í~¤"Óéfk<^Iá4 Y÷­÷6”ÃÌZ•Ö5GÞfm½†æ¬U1±Æ›´óEÔս㫻üðx˜ì—'Û£áL±ê6Ïüx¢Td\D:œðiá]©{Ñ_®ùr¡›`iª} {o[£YÖG]Þj÷÷rÄÓ¬²ñ%§ÕkžÚ…L¢³ÃÒ« ³®šÃ‚>]*.Z½U“¤Ë;C¡(ËB*&Lˆu­wɬ2z¾± íóÐÀÖ-@÷­ÛöÒi/Ú0ÈænHj¯Ûƒ»èGzâ.}ŒZÜ!«H¥‘AŸ.(Ö%ÜŒŒœ2“Úĸ¦’f¡ùT©_( Ø#^„s²nŸuÃoF— PŽ4Ði1y RçM£™C¦»W6ª^‰³€øªGÇ’š{]Ø^õ³ÉJHlfëQö%Âv‚ÌYÍ"ÍÙ›[«Mˆ×Io‚畲sön'çfhÆÍìÔÚl`öî­YÍë&gwÊÈô X?YÛ1&V´V¼æ-­ÓJ7`œ•³?KÀÅSr ãó8øñöžoï©_p¤eZ€dŽVæÌÕ7'Žð#IGs´@ÌU•AÅŠ#c\ iæa)ÝÒq÷æ¡·†Ò«žn7#‡5u‡×E2*yQéK&Íe3;«B´Í¥Léªo3+¢È¨îA3Ilcc©{fß&‚ibwM¢Ž²5yËL 7l«è¡³»w¢§\Ó¢ƒ°Ö[ÛRÌC OÈE?4¹ ε6)ÿv&9¨È8Їæõ€‘^(–Ú6M² 'üƒ°@‰Ê„ƒ¹ŒíÓ¯™Vm‚:‰T4X7¯u«i&‡rÊÅœãZ¡êZÈ./ì£ÏˆrË”{£”1¿éo:´RÝ<¡1·*ój¦Le]ƒôjµ¶â­r.VÃù•Þ)X!fܼy·¶ÑšY7n°*lªnKNó°•Z ‘pk­ßÅ^h°ù؈^Q«QùM-¤ÐÄ6‹jU²í¡Ïl½Ÿ¶öö^ãχŒM$¬™Íe‰@©¥X4˜Ä¸Œ¾Gk}?oãN ànu©’ÇdÞŠŽÒ°è-Á(¸y÷ÒØe.÷$³H&•Kœ‰ÉÒ «isí9ë¨ûWÛŒH`ˆ!Ý=@ؤþVŠqñÁd„dæîCP#Íu²ï1Ò\f8r·bRøfÜ€R¹Üi-!ôf­é^ŽòG”)ØÁ‘u&ÉT `„B `03aˆTå#jQîSáZH–@¼ú ÕÊm´²úÎÎÜ:Rš÷ÕEN««(C'1ÝÐÓ~;÷6ÄÈ[\†Fóæ™cÍ™Õô+{NE³oÓ•qÎ[³ë=š™^`üÊ@‘qÕfÜhn °TON¹DؼÖÝŠ5ã'r3ߺŸ{Œ DÑR’ Ë0AÂZ“»oô¶©ÇœàâWXóé÷¬ÀrV?ŸÅЯ†|ÞÙžûWoí´w÷Ã^°M•T½Í¦z@TÒš{è2ü±ÛÃy<ïíªPlÖ<³¬aõd( øN%šû&rÈš¬P/kÿH‚)“ZÌPfšÜÖsˆX=X–E@«}`ÈW<\ž»”õ•_ ®\ä#Ô¼v ‰n]í´ÌLÓiÚ¯¬{ëu¢ƒœÞ²à\­ãt=®¬S‘à–$Ò(7)ªíSšîC qxP©HOX;æzq†’˵–Xø¬'p¶dH±’•CÓ¤M2¡UVßÍ€‘^¿Ì[ a©mÅöÍ¡¨no}€MRŒ€‘E>ÏÏ©Ÿ2ÍÚ:2Ìvq51³X"+oR+š›"ÓÜš5g› ̱_¹rÍ p››ywkͺy·vêíDÑ‚3Ž=‡‘‚ ´zä†T¶Þ¬±o!€aªËBu†oú²™žðœ'© ˜ðTq ‰°H~ºÒžñþŒ‡3 Ik€'’&·™ÃKYÕÀ à¡ørÑé´ÝßÙã‘ãR:뢬ã5ëT ÂúÍYo›Ã4äâ€ÃÊD»¸ÙÆ J Í´;^5’51j|æ¬ʪÑh9~ÕZ²3‡Õµ©%bž@ê—Uœ²Í]bŒ€¡µ ›†q8¶bÐÑôNæR û餭_GÆuo!¦‰Â,tæMtœË3Nsˆƒ å †±Nc$,¨j'¤4.eHÎ^g±vP?i“澺-jH‚âeGÞ¸û0R­yÈ"bF1yûq"‹Y§¥­œøÁš…-ÞÝtãI‘r¼JYjÿèî!RsFZ÷/–RõÏ3-k61‡û•Ýl >#ÕÆs®Y¸ÌhÍêþ³ÏÀÉmkvrzŽ(Š që» 9û¹ Y(%í÷Íú6K¯é‚0zµ© c8é#\U_²^$Œ‚…È|1ôåÙ:¶7îÏJShV¦œ>ÂìH)Ýh‰ørѶÞÞŸö=ã:JðWšDq0ͧÓfÞr$Ü<]€õ´j@ÇÄ!M5æ°¹8]©ÄGrÈ•¢ÉM³N4#è¥HªÏ@•Ö¦ÝíÕ’ ŸH£, 8äÕæ³ŸRÈÃ=£LjU^w^&iÓ †Yü£h*¥á”­ã‘¦öyFnJQ½â\”’¥Úœ ú¨ ˜Ã,-‘Dyº¦–ÓɬQ©f+ÆŒÅÝ™f üîÍxÄkŸ™™‘5í½Åæ^[b¡ÆÀK)Þ–è}Ú?°@5«ÜY?•V›R[¾YøÕ¥…4sY÷ÞÙ[Ý*YY¼æÉµAC3¸«5ïÍ6÷͹6‚Š@ Ó-‰ù­ÄC¥8.7—÷!¬i¸çJ`T6©–©L,­¥©ªÑ¬ïŠÊãÀ—‹9·Ç3úMjæMHZÛØc•~A¹çøüLãÝùt÷þíñr—}ìQÿ:Ÿ›t€p÷ÓùGDäPëV^Èš–2`™ˆ©c^”îRwß¾4™4²ab´Tf¢¹Ï š5s¼•W†N³^¸­jÄYîì•>gúü7Ä\tpŒ ÍÚÖjK7Vèf©ܽ5šÈܬ}½$‹=d´Q â\ç! Ó–ÁIY”qfPcqYFŽúš¬JgÔ°´Ú,1BK < uƒ(o…5ºÙ †ÑÜÛŒO¡ˆùá7™™GD¤jŠ«[8s’k fzËÓ­2§áÕÚ™3U“‚Ì‹Ÿ²Þ 6]3°2²Í}¿O'²Ù4Q-y[ktf7s·^Ãb›ª¾I­&²À3ƒ âD–mÊg'¥H÷ƶ)1}6ÍK7¸ÇBW,ŸáíM…ý„”†üºçzkÝ6[R¨^ ¦²¤—Ö¢Î]ûuÄç'EÞŸOçÇGÆØ÷yƒ¨‹óòç ˆ%Ídf›· 'fo „Ö0àuêÌ5ƒêÎV—ç’ä,·ã¡-'[s* 6c`c’ˆk TnŸE_Iåä†H9“tÚ›±mEÞéóFã8ŽÁÌFKéƒ*1Ò #¦÷½6©V4u39{)ȹ2™$‹5àÊ©ƒIªÂúV4v3/íY=¦É¥F=e¨ød­Sn}“ ”}ûÌ—%`æUóJÖóFÓ ™™ë‚²¬!¿Wóf-ƒúë C08œb¦jÝéÞÌ_Ñ`—&ÞS%Ð{Ñm2‘1¨¹-F†–®Þè&© [~*x#¢">Þ¼'Ü0iÂu /ÂO½í@eÁ­¾i¦ç«$©kÄ—ýdî­ÛQsKÁÒpL XLÚ¾yëRîy}y‰óé·vº»[Y ˜ Èã¸îûˆ¬ç!ER2€™<²Ø!9A¯ó‡4ÑÁ3^Qb“#iòµXH½")BÄžEBƯ²†,zDÜà'ZÖVÎ^1j1KV³Æ`•ŠMXB©©ÇQÕr̹ӄSMcŒ *¬0NK™\R¹D¥PL^ˆ}[Ö'4ô¶trdµÐÄRÁ)1£(…÷Óª´Dý §þÈœóbPØjK §‘1&³ ³>Õ>iÃ5 z½´¿ÎZ½kSŠÌi([}€ù§̼NÜSÉ™%¤X6¨äÚÍB…ÿk‘¥ÍõÕT”9Ûú´{ñ¢""Õ½¥ RbDŽ*ÁQ"²^óÉY4)òY fmkûTôØG @1gz…û­WÀìÇÍŒ–¥bOWq”SÜ­12"3²Ê·ÖP\^1­Õ Ù©¡”8Ì5?2¬“€ˆnÆÂ §–Ù~·*BÍAäÌEsU+Ö¯ÃE3&ŸsÚ•ç3eæIˆD’Q®Ö¹} ÝPÈ4vÍŠÊ+º·Ð·*ø)ËÈUÁ3W5 iÕ=(‹Ú$ϳ¬¦'pÞJÐ ”aª;aÊLi`,EC¢r$éðiâ e™e°yexÔWSÂÉfÓ s' ,ª`‘*İú£eÍü=‘›5ûènnj5ûËDé ¿eöVó’%‹&Ù w¢£ëå¶f+„3=g¤¹5Þ·6 kn½dÈnnÖºmV‰È §­ÎüFbíéæî“JÔôIÒ© ^'¼Ì©·-FûäÞ%9ŠWÎT°y³â ñµü0oðœJ_sD3KÂm~nfèç"9S«_Gš"Î ­j‹V ɺGw[ÅÁ"ŒÈ Î(ëD‡pÑTç”k^i`ó®\u«µð\ª`/¬J±PeB!Í­+”…bÅëFlnº%éV.|zÄRKS ؼÌΉ±èDKŠ)%¢†i—°ùG3#Â'm9KA# )”1/Í\dä± bNFylÖº ³dxåͳì²u3’ó× ,a)Í׿2§ƒÜR#Ic‰¨HèíãÆ&ª™}0 ÜÌÓ9Ì[åCÊu9¤ãˆËq<í¾ã$m:‘›Ôßy2Ãm´y&Åëúvß­y€,È~U¼ñyïWmmL1©Ìh%,¢ÍnŽt½ƒýÍ©6'zÉã?öþCôÝ“fÅB‹zu˜kz`Ø[ÿí©ÿ®ñD}Ñøüß¹ ÖÆx9çøæø*þæáåÑE¦s§"R—8ÿø’ÿòÃåýx÷eo£4<ˆOåà Ýä‘Üæ>+¤äªÚÎ<À„0͌˼q‡ƒ+F\ÖcÞW×M 7óº¤Î;ªÍIšûºÞøÜN¯UæM¹¡Œ…ª^õŽyQ1³ñ˜³²1Sú5Ï:“ÛS‰•ÕŽf€oðzgÌÞ?žÿÏÿãòÍÛÑx±±‰Ýü0ÐxȆ!|îû‘ìõµ‰]|ÚõËE?_ÆóaÊšVäã»mÿÛsœxކáu¾› ;{Eà'm6:<ÑÚŽþlþ±ÇÏÇñKôú±~]ò¹ àÄØ„ïO—8_¾qÌ ùx¹œ~ ¢‰fI$èÈÖ:RàÌø`—?´—3ΟtúÙû—ƒÁ0ÖH+ÞmøÃ~ßžßpoˆ GCØKÛæ€§ðÞxgWì²Ã -êôëWýÇoü—¯*¼Ygû™Q®ÐK>ÔªÖª%†™ŸCô÷wÍN-ÚáaMfµ:C*2„òÖ. "7s7]O¿{Èÿþ›ë÷wOÑ‚¨Sûüà_ÞÚÛ¿·ÇÓþOò×µõOdÍòYª‹bÙL›h½ÅÉYõA+.;AbZjn¾rMVç…HCÌu*`ðæ½õêù/î¶›ùdöd tŸ7ß‚ä+:ÝÜèÞÜY?‹Ì¢öaŽÚ%U0„·±€Ñª‰G·Þ¬µJŠÖµXs PçÎyÞ2ðÅy5y—7ïÑ6ÝŸ÷¯ÎŸ¾=T×±Á‡Ù´Ð1gs%†džB“?\ïãÇËþçþéx¼°AyâñÆ>?pßÒÉÃ)CÇ ÷:à….A¸`@ØÞðî+o6Nc|ÌûÏjWÚ ÆÈ"·ºxæù›íò?Ýá ÷éçŸ:^®Ìò=×Áµ¢+ÖÒÈ;ă¾ÇÓ=Žä]ÜŒƒÇñ@ýÝ}üçöå^ª\/¤U¯È„æž'ŒD$ú#ü:QéçÈb:¨æÚÛx@Ü!/¹=ç¶‹áiÁ²ž§ÀTÅÔòv±×rP¾(þ2Ú‘ ¥ŠœLXÌþ¸{"«''ºRŠ|»Ù?~ûé?ݽtµ¡ÓÇ«~zi/A¦ßõxÿ0>l¿|Ó>ØoùrÄËŸÛ5œSàä 2Çl°”n¹•L)*"5P–ZdUòeÙ£Q$UM‘’”%cG«b¤e(•u—/ŽóPf«¬8A®5¯hc w7³ÁÅm«#ÓEl‰Õ­6¥9ss&­j¬î0‡ù æ*i”ÜÙz-1ê£c¶ÙͶìÛ8õÃý‹AÐùi÷Ÿ^lx…Ì:LU¯LTO§·ÍóäÇ™±á¹£ŸÎº'ÿýsþxô°t^7ŽM¹±r º é5Ù›RÎ’Înµ–@m86$‘gÜmÄ©í8…z¾@Íó Ž3Ç×ÛñM;îà=G¦ãM¿ÙŽŸþSZ$èå¦ë ÃÒ”¹);²2 Ù”§æh s‹ÿäñ÷þñ+¼t˜ÄKÚ˜á".j•lÁê*TÁãì{ç—Ã?É9¢ä)»únçÜþöÀQ¸vÌ#z 9I·›7÷ã8ž÷öqßžEóAELwXÏo‚AC¹‚¢ôÞü›ÇñýÝõýw|:ýë§ÓçÁŒ8öo®Ï÷îù·÷Oßô÷û5þã‰ùB”7«·±kN@¶Ú‡æ|h¼–í¥Ù¤%¤dÊ ë$°¤¥³V£Ú¨œ³H„X{¢„ѬõëõR#ìi>ÏX¼'3ËÌæ>ãÌÞç®}•5ŠåG·¬ýD-w|ÑPDk½±O’`% 5‚Š8ÌãÝtkò6C'Mæ¢5ÛdÖ ¼ÿáêÿúé|Ñ‘™´¦ Â(u=7ó¶µ|ØÆW[|8ŃïMú°y¾ÕñIÏÁ­Ugnž°]ö’¾WC`ÞÚ@ÕÞ| w ËØwÊ;^:³M?,ŸàWRŠ]tG̰’\ãžû×}kÙ 9 `×ñ5¯ïáŸâ”NâÀÌx5hÍ<ÔØœj47KFÒ¼‘oˆßöç·¼v´Pÿ|Ýžéò¨!æt" aJ"<ílÙ˜”5é­ß¶þ×áÁ1B›_À4˜“_‡ÿ²·OÐ.»F 1u”|v‰™+XcÇ8F´}ø5·C)†Ñ‰¦,x á&YÌ5¥rõ®ïÂÝ%Ï?íw?Û±›!y¨ýéÊûýù7wŸç·çûÇþúÌô¬[Å0é±êœ$ªIæd³²ãæ&!¡B[…r²È-c^Êy{Ò¬UL§èpÍ›/Å5cÔ³1½lõu—±µcömfØyòno½ŸYârÔܼNˆ6ýŲ-ÍpMñ`ôš¯×³?£T3m\îKºÁg·øn¬º*N¶«ù—¸{Ö‹è“ÐÎh1­YëóØŸŽ}O~ww¼óý,¼ß¶Ow®knàÖÌ­¾C·Kž> ;È$R“ñYhû™¿òBÆIûÈAåÙåÈì ã¤hh{Q¼Üb=®~¼×x€ -:¡ËHo±?Ð>xÿi?e0ÌÌ0V||äÒ0¼v»0šYްÌw>ÞÚèp©}ÞÏ?w‡mÑX¸yÓPr¬0Ä%´Á;Õòr§ñµó=Ï@,`ª`©~QÿöQ9d‡ÚY×ѵ¼¬Q•  GFe’-xP¿ôF?ª¦'TV¨ºg™G#ó¼"î &ëÇqvð9~iôF뀖¬•%ÓXcU䓘 Y5c&S&6zå kª”XdÖvBF+悈(DöÍ—sÝ¹Š¡k@ffm.>ç „kK>Uj«RÌTÙ…—Œ ºÍ9™ÑÓP;ŽD} 'ävªÛjŒwK ¬®ÛÔ  \MpaDÄe¿!d X²À˜E3pÀ\æ‹zˆäqnãÞö3Gìïš¿ìœÏìœúõŸÃŸGFXLßz¹ìËŽ“îlÝ;µ±xA‰“Áag×]f˜êr˜Y.îŒMúÊòƒÅ&¹C›s;“¦¸C|àþñ–Lp"ÅUØRÎ0R+Ø8–w¤£hŸŽí—£ï®-ÙÊ5-™`Åõ'žŒ¡Úù…ñØ”ïl¼;éÇÃw:° ô€ Öv´gçUˆÔcTX ±N°3.K&ó ¹±}Ks‡ZYcvE[µ³ëD{ýŠv‡±¹ßµÝ°šàÊ–™Ýmã݉ÛÊžrϬÅ!Q1õš,Ãn¹ÓÂõ$k¼¶vÝ3 ÊÇL0Î fwzþ#ŸÌh¯<¯òqNHgMN4wÕfÀÈÛKÿ–ð¬ëú¬pn›©˜ÿ%)/Šôú2q§W妨õ—-ïœx¯HÁ¤=-T‘QæÒÎpHèÇðË軕{b6‹)Q ŒÝ”0©?‡õŸöü°]8y²l$Ò¤&„$?r{:üyäžÌ ˜[Á=@W¶°>š6G œû}Ëሠºsu™ÃÂôÆÉP¹7ßtO˜Z°=ɾ¨;ø^û#G—ÞX¾³üyØÈT¡8“†N´I É¢uiL2²Ytƒ'|G{G Ã5ª‘Aê…F¯Ë.Í Ûq¶jâ!·^_<Ž´L‹Ú½HS[”²È’]ÒÍçû”uš1™CéJÀ–6µJ™rTÀ  ¤Æà§ËùËq¼ëãÞì7÷øãÕžöûhdË—oÏù7¹±ïò_^ÚÓ0ð <¬“Ì*t¾fÔ¸ÎûÉùrµ–}>XÆÂ¬åíÔSY¨ê(Ðêw*Í€Ei&ÖôxY¤&mz†kÌ]ÐÄ ®äL÷˜Í¸6T¹¯GRšëôî­† „Ü&W`ŽÓ—RšËwËY8{eIÓX[mÔÕu rŒÙFe&Í„\N2ÂhRàU~9|$³TÔ0 @ÙÖŠÉù¶EØ™ùÉò›·G³f4w~$Âq4БåI,A[š DÒÍÞ:ß{œÔ { ÿëxøŒNfy×åÄ=øá¤?‡^‚l¥WˆZU¯rM¤¼-:Çq„Û0Z£÷–vHÉHµr´äâG hÈR;€è„=ëü)ÚÈ]ÌY ,¢á Ç\v»‚a€¥j¿¿Œ]–5ƒBª%Z:R»ç5°Ïw~ +è‚ÖcÆq¾ þééüîÝþ†øfãïâùð§#Lùýýñ_ß?}רOüñóvÉ;D&}./ŒQ‡‘YÒ¯œa…M5³{F) §§iYü€Z)ÎãÚ²àv^²•á139ӫ⤜¡n}çYS›ÁÕ™ýªéÌD Ôðo=7N/CzcÑšu£»5gsxÕÔŠ’;—ÍÐ ¼¾üflœÙ²Eó@Éå*á†SÐCUu¥'M•Q¤9:d-É‘ÊfúÌÅxÁ9`›r+šf™¦Ò§­±ƒY?iCÛU›ðÜyth;Úž½6m ~(‹I{Æñµ}þ û §ç¿\N?ç§lNwÏ7.wlз>þÃÇç°ƒ[àÅAÂCGb zºÒ`@(¥µ ú Ù_wìa?ç ñèpX…^g™JÑÒp€‡ *€çäóÚ²+ƒŽTA¦P—õ­'4™fü µi+~ ¢¨ÌYw¦×»Ì*íX yÐÀݦÚvúcøýÑÿ~»<Øñ÷÷Šëøãí]üýÛãû“ ÛŸ/öO?ßÿpœF7Di$èL² rs •1ñð4”·Î\‘CV^¨ÖìYayZ" [M¸ª$d2K'˜Àå]Í[Œp:‹8ç˜;2.Q×ñÌ$°êõ½•\˜9‹¹œ*5ƒ¼±;Z½Ž_{¯zíÎ&ö `Mf¢Ôæ×ßRaá’G˜Õ‹# `‰4xl4‡ÜÂÕSn[ž àˆœ'XY½ç¡Á¦èÊ»j–×—^(›Žq†'°í¸ÊÓ%gÎÈ4åÆ×6hÂöQç?kû1ý»òüV8ñz‡xD|³Å×þIŽY¯KÜBÊjr×±]¥}2}ÉÓOa[{¹ÃþÖ;ÏýAx¢‰ÌÊû¬ècØ(´”!!\Ť¼)RV 6õA;æŠA1þíùîÅ ·$ÍÊ=ÿ<R‹^Ña³lW'±EZ¨_he¿çkQdílf:2'ØãX(¤Ì¬küÜl×° s";³áB±æ­]Ô+"}âÅç÷n¬>ÐŒ‹vR…з‰Dœ®¼•õ¯Ÿ¬ye ÷<£—ðÉáY6ù‰3BÊÞ»Y «þ Ͱ¹¹œ;ãÅr{ÇoÆC“¡]„—°A˜qºÐ@èàõbû y1dËY…)Ø,À‘Í.omüv‹ §ÀݳÎv‰©2‘ qŠüÖõÞÝÐ.h?ÿqiNGò üÇÑ¿jlj٠oÛøa·K¤˜Î&DÍ'A—µZ°9&ªÏaö9Ú¿½œì¾çŸïp¼ñ0a†‡gÜÿw¿¾×’–i™Žô÷‘ßžŽ7¤ÁŸá?ï|޶»5Øv„~ísôw-ºŽwÄ7ýøË³+©î+p!æP#ņFší£ÿp ¼Üå¾õË#ŽžÎh^oô$°Ãpˆ;òŠ8d#}Ìtc£¥Ù`F¦Qr÷?xüv{I8Õ’>ÄaÓ×Rp) A©NºÐÿ÷ÿ·úɬ¤r~†Œ$<²œ³½Ê¡+®ÏwyúöñÃ÷?=´—ÆêÃâ‚íO_øÏŸžÝŽn@EôÚØ­1†UœU¶¤ÌÅëÒU?‚곤Óf[v¾ß £!«|”Š›ûPV¡à-nž¥˜õFŽëㆬ¼³d•rÚ$~*×Ç2%S«Ç„ÍçµÜ–:§ …kjhÓv\jªåÌ)‡—f­þC^(¬UÅ©·dUf+—×ÍN¶YaVâ²\\²ezòÑãÛ»ø›7ñí)6´ÀéKž~¼>|Œ&;¬þGî¬}{Öù|¤Mμ¢WÙ´öhlÔ=²C ƒhÏyþKœÿ<úgâ0¢Íö›‡No¶ãkgô+¶÷í§k¿²Ãæ@ßGû4ðS¿~ã£cœ±ý¶çŸÌ~ƒ›ÚœsšÖ»ºŸjÓ}k¦M;òÇ‘ûóö¹µo¶ã_Ï8:.uÎ<;ÓÐ@òŠö,>å6²µº†2¨€d’S®$´á¨ñevT³mA@SÈ€cÀx®•`1f¦ï˜Ó3·“RS°He8z\¾îñwñwç—GZâÍÏ æå>7µówoý¯:þùËÉMé)¹œô€©µvÍ#ÃïEr¨7–91MGû/ï¶ß½¹K?æ{ƒ$Õ {Ѳ{Þ›î°7 à´ãô)ù——óûÝNÒÕmÔnÓᜮ;¼”q9g6~2Ôæj"öº`$4ÆxÚããhOÞ†CÍ“I„KM<_÷Ë=‡¡_࿌~AW7ÛnH(|û¸ó‹ç½çÆñ×ïº~~Ù®­Ö’!BrFeÒ«œŠ®r 1±õáùñÊëÞ?ý«~zÚy=1ú,[ HÇР3Ø0݃›RÉ=·mÏ *€L³Ã·ê‡Í­¥,TæJ=P•¬ÀÌè3Èÿ’ÛNº!T“rI3t0Õ@‰£ 0/›öïzþýþПî 'Ýý)òOäñÕïßìߨø úÇ·{ÿåeÛÓ5åÃ6ÞˆÐ__òËžSòFtÓ*ü‚u¥XtÞ˜þ6ɶš'~iV_*¢ÄÈÙ©Yp™1ŽƒEñ¨‘O¢·³`Þ›œÕ­¢@9( IDATnoÖ JoQp‡qŲ›þ®æ½h´s>5ëå›2/rv±ê*¸º7†W§ær ÍrÒðò›Ö>ƒá8êmHO3âBT×/8½¨Êþ×Ã>f¿º’é¬tÕ‹yÀÙ`fS·Liµž­8 .ɼo<ùhhæ-ÙÀ0Ë.öŒ7¾¿³ý ùäîøÃ£ÿã;ÆÿûCþÏÝ{SFŽääºM_‹¦K”,U%e_}L•´©a g+W+ViDÁÂQÖ˜×föÒ]c3ŽÈX%?³~o · ²d¥çp·UÆ, à,8( h ÍZ·îæ%Ö²µyÕÔw¹Õ€¿ 5]aj§§`.˜àì§K{Ü)'ÜlÉ#š L!©´ ìE~QßÍtNcª‘ËoüEöóáOÚŽ›#ä–Tµ ÒS›¬{>x¼qoä£mߣ]ÃAW%„ï¨oúõ ‡À~×õUÃp “¢E7º£Ãî½þUÑx|Ãüî|}:Î †^'C«£±š€>Llƒ” Qá™n‚¶ {°_MÕ6;ìY=Ø ¥ZõDÑÃ^¶€µ¦ŒFYX†BÝG¸“L[èw”o ZùazDÈg+Ç3áÒ;â¿>~þÛ6€ÿë¸û>û»6¨K™wãK×ãþ}×;Ó{tÄ¿ý|ÎÐ9?=ˆäæÚÀÍš<˜±ðkŸYWñ ç£Xüe½]ŒU8ÉÈ1‡qL›–e™Ñá9£juN/à8ULó™W,Õ«'úõ6ÁRóþ¿¤êËiƒupUª´¶8ŽF:Ü ëœëGŠYô™ô®Û``êw¸ ´Õ'°y»=?‚§ü§ç»/­¨&æ8˜6ùÈ3kpÑa^ª÷4 ^ŸÀ†ªëÁ §Dû4ø—£]Ü’³\ý8ªÑGÂ3N1¾ò–§xk/ùöÌø âIxêM»¾çËYI5'¿j—¯ èÃ@6  Ø!ÓAèÄñ»þòãè?^Ýš<¹¬Õ„½ZN®á9úÀ™‡’Ñ<6Ê€ªn!ö„‡j”†e4e“uàŽ—;>o¸œáï¡hG¿d ›p¢:á$¬ È”z¦Wº;æ(9olùb~B¥˜i|rþÊ¡da Íà.§äïOãwíhxü(ÿ—ÿ÷8_7;”0-~Øi_Þëqÿ~Û¿uòݰ#~yö‡ä1îØÝâ r”X7Uìn›®å¨P )`›†’8ÎRÝ”•k² ›1È÷b6Ì»|r¢n'y† 5f Б"Æí–¼æ“ e 2We½0õRÍ™¯YVΦ•/ÐnÀ$Y ŠÅ-‹¦ä÷WOƒàö„í#O >À.óJ`ƒéF+êFoÚjý2 hcÂz'²°{bÖ¯¾íÎ1º¯€‘ÀÐõr„ç0;ö¶=àØÀ·àCê“õfM’$I’³ˆª¹{DäYYÕÇLƒv›°;/Àÿÿxà @K„YììLudVVFF¸»™Š0DÍ#›ÐDÕÔÕ••n¦*óÇÏcKšÜò]_c[ŠçhX ñtØ*CЇ ^ !6øå{ÞèöéšT¹T[Â.¸¡à€Ñ‚o,þÐÏ÷yzrû+üK¶˜9/°Úu{z2¥U2bU"¯ kc;ш;j ÊJ”|HCÝÜ¡Q oKôü2;¹¨qLQ@;¢bjMÌ&Yz4cÏ¿;l'{¸ÿÛ†¿Œ¶†èZrÀ’ô8~ܶ|´¸¿þñ˜ï:þëûõã¯hl_‡=ËÊî2±ªÜq¼˜±u·«§þéÄäZÎ]œ¹Y†f*Îüeš’|/­E½?dDL8hÉã³Ñ©…62×ʬÕn…æô‰C/cP"'vÜÜÜz³…l…æ*V'×¼ÐØFžâæ*5ßÁw¿'“ž&³lÌ5K­•î%¹ƒÐ¼8G(Žàm&ž»Ð½)´T¤­Æ4¬ÀòÔôJÖÍþð]áI^½ŽWðw‡`›êŠû~ù—£@ž®<~λ3©SUÿ&¢+ÞðüW×垯~çüùeƒ–ÐEZ©æb ‰o}ü©Ÿß¡ýºú×8á0„Q NÆ ¥9MöµöÊ«^ïlkÚ.÷†Å¢X' £H÷Y(uxˆ™™K­®™}¸8M ¥†ÎÊ+(Ðúîb“;;0ˆt0‰80Of®¶RãpiK.RBµ RÐ ì[ç/cËó2lüqyz»Œ{—³ý×µ=¥Ù"ÛF2Ý[F4+GYÑϦ™æ,¸åDNÎ]åžWvr^ïØÃ¤ iKÐ+=dbjŠh±Û2±KÛ²‚‰ÁèÆFx%*2eÒ˜‘;dO›2÷š_ÏÀ¯Jb©…¦™ÌJ‚µGåîNLz~)¦'ÖÌ“–Fëèm‘5‡÷€‡”Ęƒ@*U>SDÀEy­ÅàJNhÖþÀ`T ùTÉ¿zÄ×U: x$ ~E» ¢!:óàpkI,9>ðùVG¿ÚÝÏqÿ—õø\-×dÂ\ûÕkHmË?4û¯K¾áf¸}ßúyíA`t¤Qæ®,sèõ¤õ¨sX{“ýãvÍÕrºäg–øÔ¿Þ`úœ3 ÷äT5+¬™{=J&÷²»Õ‰8|K饬ÎË=˸¤òS yCsÌm]ä4€®p6y€%œuOôŒPŽj/„¶ë|—híWÅJ¡ýiɃèð8ì—¯‡UUœúTqLÌ8ÄÀ-}L@Ìq—ÕbÿÆÊ¨ÌÒÀÉ!Æ|üf8Fñ§æÃPaSdÊ&->#rrkÉ &YOmí×2³ +±­¶ÀE-®OË›O¤}Š1o+¡Ú×\N·³Üt/ižSâ°ëJKyQ ð€eÊ…(oǫ̈¬"£Æ!Ömòu¾¹4*¨h‚#qÐ tTf«/0§(w~`2©±Ñ >Jጭqt;´°ãía|¿°ÓÇ‹î>ÅçlO¶m‰!*àà†ÄÄä¾s´ïz¼²gÃzõ÷ÎOðÇ06€M<À ƒg¦M¶!ˆëü°Ø§õúëõ@ôÑ$J¾Ã&¬PL¬jc|t˜±}CÓϹ÷µ”]›ªRY)nf>¥öòA1P±gÚ_mÜ‚©æðöF|Ä.>’Ï4#Zª¶„454ózœb׉¬)0€EFG#}p\Ó‡’ "}jÙãíryCKâî‹NŸóx¦mά‘(Lnštíº› p<†þ–¯¾óí-. –Ìòö|U™ó„–l,%lú°ltŒÎç»3¾úYG‹ŽV>ô e ùLÈóäë·Efv¸â°ª ye&†±{09 ƒ]þBÕ¦Öêáž^ã±åå5¿oùéÂòƒL£k¬¶Tô\ŠOX>ÆÛ7öxõþ±[»¿ü¶iC«lR”„i::’™ŽlÌCË;®GÈè~Ære‡Ñxõ¤éh£*™KÀ‘. *%GL‰)&t%wÀWR#ê×*ZÊ–ÓNž.˜œ†¶åjúqœ¾oøéµoÿëƒçU?]Û5«5ÖD]é7Ýþto8ªáðUíªq´õý‚?¿ùóáçK‹I\­8®¤PŠœ8±BÚƒ‘˜8âÜÓ@`ÆŒ™HŠ„!"#ç¢BsÓ#eì‰S ƒ¿yk0š½ô¥È–.³nsÛkþúqMêPãfkÎÞJ¢Ì6³¦5ë/ì¡T6ž/—›ö4몊lˆª¨‹]ðà‡ºÐ訟Í. ®ëK2iIyèµd²œŽTtŽ¥@Ñæ–f†˜,FÎX¼)mXͳ¤a&øŒ+CúÇo–õ5 áxÉåëàP8KM5M~•Xe7ä-Ò'µ(¿nöKÜÿÑ/mh±õû;èËH‹­qmym<0!Yz»BýHÿC|€îXÆÛOÑWx1/8áŽ8 -D‡Z`¹`ùí*hŠ`je ºÇöAy?,À&Iží¡EÎ[|¨Ä ]a_Â~S[åàDi|JF˜"ä†>š~>ã߇–§;l¿óf§qññ¬Ç±\@ØÖq=ÂÞû‡S¾'§'á/ÏzÚüû{ßñþØÿüCÆ/c<¾PbÚPãžÆ“ûL”–Óÿg°±í×ä„ —³­¢R§ršp6Yto½-fªôÖf¨ñZA"¢æOul™én—UÈ{»5ʰݗ3{P¯ [k."’täL„º…ñy ò}—Tü=X±Täö’|²@Þ˜`¦”©áʾò^ªÀ„àõ?§bT@ù#ÄoÛÐê´"Âä±óÞ)U0ºípÄwS²Üc—ÒHe*‡0ÔlÒÛûŽw˶¦»§ßÖö´y6‘áh1Åv³cÛ¡‘µ]HƒÑ™cûårúr÷ªÛvÄõ•·ï;·‹qX…z¹Úéhė࿯&ÚïÛõ„l¯™¯Ú6¸ ôaÓE¤CÆèÑB8 ôçlçðA6Ó`s?¦oÂz'ÿS?~¿Ô`-€$Ò •µ=Ëóý ®õ»+Îÿ÷µý·qL/êæ å Dš¹ÐpocYÿ²6ç«jçŽïØ_ßáëqüvYÏa"›µ»Î»†Üpü%õ÷‹>ž±¥.v¿‘ošßÚï¿¿®Ÿ/Ÿ~ƒVšŸLÃN¹³ØrjÃj~^ºï2h¦NŒˆÖš!4¤ëBŽVGfŽ˜û(fM¤ëÅ«=átýÁ¶ÛøgÀël·g8ÇLôѼè0Çtrb¤C%a©u¦¦º{¦ÈÑX\ûF ·bŽÒê·&·aÚÐ7ï¬*8ëÏÃÖJJœ›'ã®e ¾YÖr‚½Zú¢v rÃi`IZ̘ýKá­y¬ÑÅ25”Jš2û†ã@v\ð¶é®Áqïžtü~Uƒ{Yƒ0¦ÏšÏñí¼ëÏòñ´ú_ãÝ©=5¤£¿;ú§ìƒ¯W‹ ‡Ñ\Í‹]:Ÿ14üš¯¿kÛƒØN r`ìviÊÇ a:\ØÎéÏq¸¢Ó·ž¼ºÜ]È3®d'Ù÷P2b8Â1 ¡[ å\€-@rVÈÀk˜Ó´Ú³Á™–-d çóÈÿ¸Ø£Ý·loLGó{Ãý]Õá°]c;Gü*ûéÚ×eä×O[nÏ}=µæ'ëíÕ«x:çšÉ¨©0³ûØI45¿p›Zy% 7¸&`Õ ¡ZaʹŸ.{îy¶”4"#³·ÒŽíÇn¤ Û»a6|£à4£™ÿC›=úùe¸YsŸk™Zà%J`zÔæeR¿ÈÌܦ+mßÎb¯Ùe“jim˜?«QþœþÔì‰vH½õÚ7Qûï8¿œH„lžíÍo8]pÿ‡µÙnmÍÁ—8 J7š`É«ü‹îî¡îé¼¾áôs.²ì 扑s9õbi¯TôIKa+ ºÑ6Ú_·¶¸>P’?‚óOzõ÷ä#—gµjÑ+¹¾ÉCוŸÇá]×wMo¸+šÞ>„.Ê{Ò#5–3Ú%}Ã!d:­_?ŽÃ£-I¦ Yç‘7Àá%öšÙ˜¨´É=‘ øøS.W+ÒdºàbÒË@6}¶0ËCû2ìëÐÏW¼²|èvt4Tœ 7áœ:¯|Þü ¿¤«AnC=ñ¬q¾>ÍÚ®«%yK"™q·3@°€ Òrš#/™¾9§æ»‘ Åѯõ^±½÷h™©Ñ¸yømßsä¼lêA&«QoûhØP)3Ãk†øÝ–™!¥›7kn%Á˜#JÛ73“«Rí¯ÇüNoɆ·/Ë A#²= Ûõ/Z\k`­ëÑæÌpŸ#L™úmݶ v@Ë=ÚMæiÎ?ª#­G;“O8,k®}ûÊê­•–é¢ÜÒL­ ÆÇÔ\˜„g‚Zšõ¡å×a+‰V4Yßo¹Ú7î@¸²cXÎDž”pŒ_yýïi?Òs`K?;¾¨=_ï°ÕûohÑ’Ã6yKrS>Ã3ôdížlÀŽpJ™–d¦m(ŽzГ. ˆiÅO›…õÍRJ¥=%K³jçÒ Þ™"½ØŽMÀ ·ô0îó`™Af.“6(¶è.3;ØXâºá™ù‘ÉpŠ^a¹‰ ´p‡ä—@KïkæHÛF*„Í×T@bÜ‚Î9S¸3]1³=*þ(&d`SJ߀9v"¹ÁR¦ÉÜ̼°ëâÎŒ-9™fç k#Ú¼O¦¯3o›=¼¬žYä•ÐÓÑ그őÌ\ [úg=n)gº ¶µûLê1Ë|¾BA#·¡¸Ÿˆ°]JÀ=3(Y‘V{f÷Hfî;ÇÇôu˜mŽAmOcÈ ¹á\;‘ŒV†x¹D°m°/òs”c¨)Ùº·Ä²ÖÑ“LÇ¢ìh;\År¿½˜Ó:Š%›VÓ¿¢ Hë Â9ºÉHß((š|Bx†µ‰ø"'r(›Ê –P"Ë³Ž”§5•…HµÑŸŒ3ƒ1ì°†}T%31w”·*03ëÑK¦=v;Va 3U™p¢JCH™Ú  WŸz™²$Ã(;X”â%¡¨k[½Ÿ–Ã2ÑЈh‰C" ª4æ¨\žýÙ•È»>ûùÂͨ‡7—`±d*å3Må)WmJ·é­R*_â 0÷%å4›IkÎRP›Ô*i#†eÊÜÔŠ‡V͸¥9ZÎ;ÍD¥ÒXC¸=ÞÖ|xcw·q϶kjh3ˆ%(æÕ°~.R^‡]¥¡N¹[ÉMsúcZZ&Âî Íõe ¥€Ãv%ÙkìÝ^èy"M‰hOù¹{6r€ ‡Eñ˜LkYËké\• 7å˨µG]‰DLŒPÑ*J¡N°Òÿв–¹ Dµ[BëÚWÂÈrñç«U}V6³¡ÜlPQ%|µPóÜ3ÁFùg,8j(ìdôn.¦1’‰žÅѤ£ÃEÌ ÙÚfÔ`Ró+Ú©/D”¹p1¬T·Qó#,•zo 0RSBÇÄdÎc¢41¢<ª!Œ-„Ȉ¨xSbdÑ×bÄ-L2'ÏÖnÔ‹½‰œÙ\›ÈB1Y:*ù³ƒYkÊ’×%-ÅRÓfD¨æ9˜{‘ú)¼Hæ«hͼàÞÆH©b:OÝeÂh…]¬Ïó%ÈÀ Lʸƒ¨ |@2‹}W†ÙÍïÉi‚ª¦-3£B³J“[¦¼.Éâ2á`W‚•(¿|+Å…ëÛ|Q@šã‡T)Ef¢“•ê9É©õwåé „µÉÑm;¦„c®|`Ã`¸§û™ëfÙ•³V…¥Z¦ŠÉUÖ‡:¦ßx/¨@q®TrfnIÅÝL5CCá´æ};SÍP½n))bn¬õ t@†(‡ž0æèé• ípš–È :çÐ3GœýL f aŒžÎ0Ï: ¢B ¸åœSÂy¦%*™`Œ-GBÁb¶C"32Ší•±!ãEHô©€õIâ%Ê”rXìqk“_bíÝÓI£A¡Ù?ØìØ™#v¨Ô\FÙÔæSÏ‘»¸f_"²hNû¯šc·M wºÿÿRœY(ܸÏnÑÛ3Š d1ƒÃ0\­Wñ:L™¦0–Gð¦ºâ®ÙÁT H–aÍær2ƒ;nNRb:-g<Y5••Cª6_¥«´þõÜcÚs–õœT¾úm_Æí“H’é;å6ÕeÚG$ÌÛRÓ+8?m×´¤ÍȦÊÕ@O‘™dzTµSAXU/MôLi穌Â4ãP2'ŽÆkûS™bʶRÀÞf#Š6šåü¨ƒvöѵ÷¸©ILf•4Á´1 Ù’‚ÒL,8hBreí²òö¤Ot²LÂ:Rm¸Ô²^i=µsåþp|ýÖš*hìR˜i`ÙYK³¹Ÿ70{ßÌ ³@jsÌ^w÷ÌárgÞ¢Do66nV¡Nºƒþ‹ÉrYì&n+¬Àž°¨™-oÈ„ÉxËs»ÍLóªÙ5œ;Ñ– D’Ìp%å£YjÌo’{Û&W¶g*Mú‡zyP÷™ôÖ…ß"_e@›Å:s†ýê¥ñzÉÅ^¶d³›Üûª¶r±¿ùUþ\ãN£èª0Ⱥe‘æ{93%pØ“¶æAæK˜<ïWQv%Ë"Ã~ñÚ®7§&J{L¤ï3é)§rH`€DkÌ⹪ÍôËÔº¥*Þôºý/⎥7®Á¥ä€ÅìÄifrìÓóybW`½lPç, 8 È4(mGFƒÈLÖ”»|Ú!Ó•™ƒ‰aZ)µ½ìvU?4U…ÿ3›‚­(“¥v‚Æt©C‹Ø“;Þ5¡³’EG2 iÆMÆ P 6„‚M¡Œ–YÙ&ûúxóo˜ÔjÔa° ! æ¼Un• †4GvÆÑòžÙ!'i nL²6&QÌ4*¥bŸ26ÄA‘‚ÉÖ‘+låášT›1Ð@Χ+o)ÙVlŠÎˆ‘ÀWb³ GØXJ¸®:lFq¥„ÈŽÑ囿ª‰˜mJeŽ”R+MAÙVÙ–6H­Î6KÁoÉ3_{.æ2¦L47½%M^³œRÇÔ2?ÕÇÝBe¢VÉ™U¬Ô/–X»9}Ësy2'iœ§|»öa·š`o­Þ0ÿK»üIØ¿ÁÏkû<(loñô/íËrÿCþ<Ú¯"“oh¶ç?ó7S˜­%ó‰9å†×ì'±%b…='¾àÿ}Zþã|÷9}¨‚9¨ÞPÑÒP>.ð6Ê…MÐíœh‚ÌÜFÄmÝ3M}»p“<ÃREJyK€"3çi²/YçäŒLíá³ J¼lªWÆÌž.d‰ w«š)¥X¾Û¶l¾VšÛá–T0e)s5*›ô]Ûþ·7_~pÃúŒ÷ÿçs»Ú¦¹Õš¯¬ÁÌX,Z?,öçÃõŸðÔÒÄÃïRK¤]=RPR>éT´dxþñp-Ïhqú¢–mkŠ×ŒßùöÚò¤8hmØz±ç½&]£ªÕ,Øx¼GÞ©N}eEü@¼b¼·Ë{œOX™S¡»×­ ©Úñ9ÉÉè3…Ѓoíî—¿Dü¸Ým8¶SÄÛ?ôË;<Þáâ*é•ï«ïJmžScÇ ž mAëe#O p%Gl¯ñÛqãÝ+ô%ásseµIÓmºÃWL²4Oýù5¾ÜeÒðêÈ¥Bžl}ÅÇ£ú¦Ã¾ ¤ùÉãȧ%Ÿ,!÷d„ÚVÆÑ}" bŽé Û ãñýÝÝwÜÝþÛËäÕT½œôK$Lœä·cï¤÷¿¦ÞÐf÷"ÿªWÍvTž×”2Å[[¾k^*ÎÙ>¢2RH¶J,€[i¢s‘0e)÷æ²¾<É€`ªan¤Ï¶eª,w:vÁ^F5I ÏEê @×íò„íËëþùÞþŸ ލ`_L³Jw¸ÞcýCÏp9äæÆÕšžlyÎãðºŸ+ójšühyoqs¹(/é=x°h¹½öËïìü—“Ò¦4%Ó„&ëa†Rùêá–¹ ™àèèF{]ôƒs1°5¬¦¨i»je4×C7ÙÄî$„W4  †+à?0[K ÿq€o\ß·õ;žïqnBqœ5“ŠK¾=9Å’À0\ðŽ£eš¡M:pôÜZºÌæ0nƒÚ™§Wcò8em9Ø€[×¹QÄ©»–%;<­uÊl@tªËÃ`^gB¦‡g-¿‘_G»¤`@ ’™ÚÀ0_ró×>~×ÏŽïý䯯cèúø æuÄ-Ÿ¦Š# Q›¡¹‰Ÿžs &îKÒ=8dßXeôæmPl3–†PýÖy»•0‰J{u`´ÁטºY EÊÝk=¹»¸œœ‰¡5cp‚9ÀAïL–³¡’©¬4sÎ «ûÈœ4iZúóÌJébé6Ü»5{fû¸Îz|àñ‡ãó{³g*Ôl@6Í nqtû]ÿú çf†¥zn\ï[½ ß(e“Ø–¼¾µõa h[öÌ<áéèÏßûö×;Œ<Ù·9Õ2ÑrÒ¶U¤ÄDv¦qÎÈ‘^¬Ò´«î­I «AVddpc[çØÙpsäƒÀ0dM ›ûdÅázÒøÁ—\|»ôKðÍáúƒ}}…ÍÒ¨tSТb*È„%ÌTù0‘s¬¼-°{8˜H^¤Ý—²„ D·6ÏØPO§®ŠÏwkm!2mÂæ”/±htËD¯xmZ˜²Áº±¥/ÿ|x~ç_Þqùß_ãóuý×óÑÌd*p.“!“ÅÀÌYÓT׿ï›ë2(™‰vo±Í4Öº³Änì0€C©›1ÃÕXŲrûì*µB:¥,¥œ°PÞn« ‘YÖt˜åœŠ6vf*!·¹+g2d ºIˆÈÞv-\î#šýHKG…¿ÚjÇOúrÇË—|üÇöÀÓU2 Q&‰³lf]¯xíX)ì4÷Ä‘q0uÙ†Ô¶‡G–íØÖ“®w¸‚XÕÄ‘çwöøy©Ö¶¦ì÷ÃÞ¤d&ƒ;ìÀÑ”9¯ y Úðṵ̈âYN—-tzÖÃW´à&pVF4ÕÙ±.ˆ…¶¦Ñ°9ñÖ¯ÝãžOw|jj†VÊÁV€Ù€X‚¦Ô˜‰ìPG:¶6€+mL€È¹vjJD¤Áå9W!/ë2ή§t)ÜÕÅr¥K £T¬ÉHEš2•<˜‹©yšLØR«Ïâ–™AÊ,``V´x7÷/Ù_ßZ~ßñýqüû³]ÑÀ¨ èIÔÞÙ—{jjXöP'Ö³ì*­FI2s_ÊÉ¡AB@Pˆt¡PúRØLCÖl$RûÈŽå~Ý¥œœ_ÀÎAªiø¤- ¤2g0â š;Q®½K–TOû@VôÐ}gs+6Aƒ¬}rÁ‘†Ï[ŠE°nËw¯·ã¦;Œ5O7šx·ŒWì) "qHhA¡#fÞ”æJž:Ô•G¨ÍkÛdk‚ˆ»6Þ˜:ÒxL.ü¼†]i©ZxÙ o$ÜÔ¨“åŠlŒ#óˆÍñÀ±9•ãZâÀ¹•ëÂÕ¯?ŽÓ¯Ésn[rŒ.ÝáÆÔ‘:´¼Ãz§ç׸<ØÚiä)\'aè°&Ø}CK`Ci™S ¿0 fµk¯ªæ`£ubØ¢éÒs½#ZŒ†ÌF"榸%öâ¶\â´,3eÒ€f»{™¥'$&¯ç"©-5ê£FòœøU¼Z&#™’R9ãMž¦q]ןVû]k‹°¼9äÑÇe ‘ 9<eS›+üéñç^×…3q+ÿw+Ù<í:–Ù˳Ɋ|¾+¥bž jÓ7ôô&©Z“¨)gtE*S3޽ø1/élÜØ»æ9'º ö¬jùtÃìºJ»šff®iihòD£ÜG|^ëÝ8AßõñªoOI8*ÎÓZ!í·EãÅLì*_tµ¼×#GÏ Ó©³¢b׆+ަ#šaË%ýº©Ùxe×Wˆí9_Ò.ÞÕ4¤…\ ˜LulK³gÃèÐÉ·ô§{\\ðWŒmÀ8¨†3q·øe³'`+¸K‰@GjÈ ¶øáØÛk!m=ZÍÇI©ÅX ëÅÎÂú\Ñ7Ê-,Å2´Íä …h3ÁrŸgha¢‹[™íKXA}%ëœcÖ¨©²DÈ ÷Âq'‘b¤‚·fc æ67» [‚_t<ÃWßÊýæ))hëÉÑG3c8aÞ.‰ß¤ÈütÈòzz‹Té§ábÖ:k®(E%^n+š¹ •ÍÞM€"rçA—‰ºˆÄËorÓÈìÊë rÚ›öÆ›*®jÀ]ûú2­+·H-Ý8ÃÖ„Á ÔTTË’¦}«]—ÓqKÝœüBöœÁê±³¨:æhvûézüϧ¯G¬÷Kûî¸þ|>Œú>f9Mã®ï°Z¾lý)ðʶnÑ0î1z,>!Š5‰F¶Œ“ÅmCÚ|$}»³s‡€ÃíK>…]Ã/ð aöp âÙ†öî­#îu®n×εÁ,Gó@D¦×Ù#«ôú’öÜ:–ôŒ¨èC ,ÂÒžÑ{øšë[ö:4-E2™áêHCK‰C60e#9ŠŒ5Û`8ÝÍEªL¶ÂV•xJUÒŒhûTœÉ–^˜Ü@dÁ¦ö ÝrFfAKÈÀ q–²û5É æùœ"£ÙÆ  `fÛŠó ³ ±6‚á’zÍüF©N ÷‡y÷äNì¾Íšä¶Á îUl•jsúˆæ?wØn=KsÊYRâ}ÑvcÌr,¥ÖÜw§×üâÌÌfbM9R©Ü‡ÞB’m.CçÞS{\S鬖)¼jcÙ>o/V]F&hMÉÔ€$µVáãóéñáù]ßêÂ9\UnЦ¶Ó”¯ûúŠ™°«–Çmù² Ëö°Ä‚x@ÜSŸ B`¬ŽÑSŒWdzÚ%, c –èç<ü–í‹l•mò Ã4œ‘Âbò«–…‘¹ùè‡ÖNvuD'NÄWbÈ•F¯ý¶rY[ްžîjaYó¡î©†aÙÓ¢Ñ`Žžèk´sèš\Õ:D´Œ°ìŠ!f…O¤$ÛAµJZ¨…b`;G4pÃ$³9@Œ†µ© •Ŷvc¾oânƒh›–+²D5,IX–Vð2)Ìêh†ZXL b¥,V‰‚]@ް´˜Qâ]ÂÀ–ʯ kCޱ¤u‘!fʤ@Æ‹BkŽÿöÜË—MýŽð¯mGæ.†¸‘÷˜*ap£G–¦«¤æ$Ä¿ä0™µ†ˆ†[2çÈ»qË ¬Ì2ôgæ®ë¹ÅZW,ÙÕîþâT;³ öïéæòÜÇà¹ÏÆG5"UÕ=ŽÃ§íð‡¾ôfÉ;Ó9§·ž–¦X‚ßÇ LŸd_¶ö$µìg¬'Ó‚¼g.éc§¶{„G]$ÁÀñy´s”3l,_rù~ת@Ê2Çĺ-ÿ’ŒQª6Êö{DéyÂ`‹VboãþôHĤÇÌ ÂÄÓà ’XŠß^õ±€ÂaS ÿ‚à—8½® é1éÅ\Ù\[àj i$’ž bÆÑ Ð2aX"åEð¶=¦+›â>¯¯#«›.çæäIN ŠƒÍ㤴ú fNõ31Uɪ;›.ÓPns*ÜAƒœÍg¦G‘åaÁâÊèÛxß®ßõóˆ_/˪®Ý†ãS÷Y)V;5àeŸ9¹þ“`JÝuSÕàmJõJ³«4§;KAüRgq4WD¦—á@$+ß È„y…g*«ÌJ¨€ rÆNû0領ßÿˆÝì=7f6éhÜÑ[s r³…&˜ÈDt”‹¸„~\O¾ˆ×¯š~½^V|`l÷ð]=ÑÛìsPƯ:|ÕõµÒ\qº4K™ÌÑ•wÌAøšíkðšÙMÎtX¢_uxÊþ,­@R1ã9³ot 6JEH\Õžu¸h= n2$U,Ô q`BSö1ÀÑsZõ)M>€­c;!ßuý±=ý`£á°áôkøÏ›}eac9 o½ßëÜ)Chn1ÀÑx…´e ÄV@]1ˆ’K®²Ò–wC‘#ÌãÞôO=ßú䘄±jO0ÚÜ2 㜘|7H”‘gm¾ì¸ë° `Ô¥„4Ùf Ï,@–W¨“Ð8é9Ú6ŽÈ÷-þËÝ×Þ–¿oþ·³_Òƒ[Îûjš op“ÙV|“k6ù²Ü÷•/¯@½{£/¾èµ@1ÃõÊXP6²Ì¨œ…â`Õº¿0³ü†e˜å|Ÿr;©2bén }¢D1ãRrÛq}»¿ºä/b†úšòvmÖƒfL$f_)Ê|Ãøåzü-¿ÞÙõžË›&Ÿn.¥Â"ßö|M3-ϰ[{ºù…öˆåÊËÆ·;ŸdÂ5'..ÂóÀìž‹@}ÅrNŽºCm æ‰`ß„ÌÕ’Ò„UŽlÙ.¹¬fb8²#*T îÛ=×êíÎ"lƒq†ÊÚ<’ãÀ¼·|cë\°ÀݯZþgøÉ³ÓØ¿¢ý4’ô®;¯Â2à`‡(Q›¹€-Ê ª!Ûˆ6™Èéö˜õ<¹¹.÷8ý¡["ÌðòÝ6I½Œ “µJì!}þTæ'e1ÿ¿=¾¹“ñÞÆ&d&dƒ1¸Å>\‰@ã8y¼_âCß¾o~Àý'ôÿëŸeQM[¥ì”õ\DPqs×TòÍçÄÂ|cÀÜ¥ÇÊ‚&'n»â“dÆÈŒú¥N¨W 2Bʘä‹M ߯4é…È­¹2ÎØé1/¢dʘ5§˜¾¤]ycÞ*‰¸]P/ :û·_ÿ4 Ídñ8ü×ô?úõ¨Wovß¶ÝTâ°÷írgNâó¦¯Ã¢pßÔ“Ú9ygëý®¥g3¦a3Œ££­ÄhO#¯c$¸vl€} »*£`BUðÚµMËLѶ 9s+æ7ê×l+L¼hÛÁT’¸¾²§eÁ°ùÜxÖ3ç@–æº!{ƒ öÏéÿ¶µÿˆþÔѸ¤Œ¶Á´dßîÔínT66€2«×dÀVõ ô¬¼ ²±Øá–NQÆ­Aµ×Ó>ø‰õ>ëŸiȲ¢9ö]ø,r@Š[c7øë„ïJKÓåMø¿tþ‰zÏšQ#Í«1g¸Þ»pCÿ9ì_·ö¯[;·TFå2b…ž–¾¦¯ùAàì&|c@*7‘¤]vóªN=@(}¿m¢Þ"pÏ¢j®Q œnææQ0Û æËó¯ æ”rNÃÍö,3$÷„“B”Ã9KÛjÉ´b‹J e¦y%Ñ×þ¦T®”0—§hʈÚµ3âï—»éWR¯}»§}ÎVI §ï—í|¼à*=-”ñ¼õ¯no¸ˆW-Ú¥,Aé÷'€ðsØãÕ®²¨×pjÞ¦–É0˜–…K°îV¾#em7f¦ XN¯^*ìÑrvE$FÓp†#gšÑ;ÍQ§ƒÆª†Òʺ²nö̶¶lBLÛ]h_Ñ98l,¦žÑŸöd+É+0ˆ[¨¥±OŠkp Yª¢UÞ@¿3ݵ¯lün=Ùo‘?ËÄ$<‘°kÞ7 i[ЋöbùM“ ÚóƒÒ ç†á84ú£Ûó¨äˆ¯;±œõê¯yü‘q¥ J„ÌÔPÃ$ÝÄL¦ˆí~Àx¯´ä܃fÍÄmX) ŽÚŠ#)¯ÁÚ%ó>ãç&æUã¼aR¶”Éam$xU{Ïjgµgã¶ÍuÆ€˜è1…Í•N\Z÷9ž3Ó$hÒh#b/Õn‹½ä‘ímX%6ZÀhÖÌ34b¨ÎNX³.¸ÃŠ U¼„Y5N:Ê nFœ]Ë7繑Ý;Í”Q¬£®¹Ì¢rÞâ>Ë{^]šñr5oÒ[\„}c£¹E³çÓzýéùáõnoŽúûH`ß5ÝYòÓ–Ÿ¯=•·Û_G?÷~bœ,ï_2#u4œšŒ¶OÈ Ú0¸Å°H`#{ƒ'ûI½bæ“=åuäÃ1÷V‚Ø`Ì$,it o¨c{×#ÃR÷¿êí¿o‡¡‹-á…W.Á =x¯öþØ8ñ/‹ï¹ý3·çõp)»ÐºaøhíÚ}ñјŒƒ`—d”œó.‚”±uیƋØÒ°e+l¯Õ’v…?ÉV˜™B&iásQa ÓPɰ´uhÆ‚' ÇSŽ`u]!3” OÜ=<ü›/ÿ#]\JF#G -sÅ9S³AldÒSH…RqQfŒÈØ 6õÅM £¾á“í{Sñ¾àŸfF§Õ­Orn!9¤9­Å–‘Y ;›ÑÌV¢³ÝÏÝ8°·0Vq»·™±UFÈ=ú¬ÒÖÒªÿÏZü×½^¨•)zÖŒÙ|ñ»éƒÝ§ÄF4 ©JŸ0ˆ-â§Ë«ÿåîÜÉWK¶÷ò-;Û3øyë-^zÆ7è)–¯¹¾¶X8<{lXÇ©çBø,=†3‘ƒ¶r»`ÖÇNïX$lõ#JÕ„1«÷Ì` ‹irð‚¼d6ÄѶƒ…£¶×­ ªE‚ƒ§‹ß´ã/Àæ[Ú9¡ Óe›­ã·k|¼Ÿº·þé=¯‹ú¶Ÿ8~ yô76Þûb9Ll Ã†,f¡,sU–ÍÙW»ÊŸ\@Â/¦+ä6ÛÖÀä%,Û¤î Çr’X¥ªM-\4©%Z‘&æ#¤ªµnhŒJ‰(ZyFrÀÅ~åòÔŽg#säP¸¥eqÒO‰Éé¨ú*23GÆØ®Ê`¦2£*9Uq­©nÞ;™j#¦¹†ÓìžøÇ䣙ÆLxŽI™ŠÌ”''©–4¯í€Ut‡r‹-‘Fº™Ä QŸ¯ÍKú B…Ÿyà>+:(âgefvÓ(•܇I%Ì(oHùóæüoÿOaTû µú†b Û¯Áß`¯™î'çk¼õíå°Oá·eëdÅP&l8Ÿ“ZVœ_a{íÛ)Ül<ø8@;G?‡3Í\3.B ãdqg²è˜ ²\OsÚYf¨EÊ©EJkËË=.'¤aÙpxÚÚszjD¥Ñ œ2¦{X=d¢rGä‹7W×u·åm[_óiá¸C;–zãø—;½ç%Ñ~“~Ńâm«0”f’wB@[Êq^|uº#-Í0|&òÎSyfö‘)ŽuƤ^öÿYïú+Kvd÷­ˆØ™Yu÷Ùݼ$‡l[‰# à‘ ûƒ ÿoÃ0  C–D g†Ýœ!ÙìÇ}gUeæŽXþ{g–~hÞ{îyÔ©Ü;kýV$ŠML%BÖömïðlãÔ³j¿/ [žYúXY%<\ÉÌŸG%G™-%×N¯!î¾V® 3*Âa¦mÆ@o{Ë&M%±æùÞûœHæ—r«¢6iAä$7ÿÊ„bIùËýd†¾iÉ%f a“†q xI÷‹Ê9 ª £ÉL Q¼z"-ƒ´>ò  ¦Œi³eîOˆdª€léž ˜éÃy„ÅÆg wT5Õ1J|ôøþhÏ÷ë~°Ëa}<É‹2_ònµ¼€ƒXa¹ê Þ¡×ð+©× ñ¸Ä2BW ^©Õr€¡ ÊÃzqÔÃ…,†Ós/\VÐsœ¦RƒBcÞÛ!ç€Øk}¦Ë †åÞåTKµZù$é¡ÕA†gÚU3SæŒ[ÅECŠ¡ðq®sñ=ÖÂ}‰‚ˆI¯y)Øû“H¥2µ^ ÿÎð&Ɇ3ƒÁ)t„U–ˆ EQ‘"‹©›nc¥(Õ`¬¡®¥L¦± ©&ôÊü^-WˆÁ`4_FåTfs¤`Xc@‚“`8«À5Ôp/‹¥I ¨Œ¬.Q5‚ +kæ™hª©s–rŸOsXÏ,——iÔÏ™ ,JEÔÖµz]ûÔ})©ž–žû$qF§oÞNlXÎ!»|¾‰NÛЈÚôÍÍ\ØÁ²q–p3I7Û6£9¢ "(áQáRr÷ 1êî¤þá$§}ÀgâG±ç%&µ#qãeÍUec?e§8ÊÑe•dy®c'¡–î¼Ìψ(¨Cêî¶\^•ã€Ççf¯ÌO,zn¶$Çç‹$`#¶#'ðy‰+£aZ1Þ±Üû´šÄ»P)‹ài©MžB…iðÆ¤‹'"àŠuGQ0V÷•Ýdd?¥§£AóÔåfýeÃQÁflMf… —-«»Ímzøi®·•ÎdçmÓÜMÔ•ÑD%Ÿl^P*2 ÎІ´]À…Уi„Öt ‘áM±V gˆ c…{Лm8g{¼6e·þÉ“,J5„#Go§èJ™-"œu[avz:3£VMsŸ¥lDœSÛºS7Á[ž\]M’ ZvÞŠdAÏ d ØÍ<(¢uÿ #Z^ŒöO˜PöIÝb’žÃlDo"Ä*xã¼[íù×E× ƒ…àãªwÕÜKÍOFÊ5{â)ôÓ Ë…Ô«2ŠbRåч‡j« …ÄN^ޯϮ /dÙËò£a89Þ-WÎi`.êÚ¥TUp„—cÄ«rú¤œ.Å€ý#†÷‹Ý¹Õ¸†<±þ¦GDTíD‘œ:<*á& Ôe†žÁ9ÅøÈù…Ì X¯NVøùUFü&6¸}Ã(꣹iKª!Ž’¦šŽ"ÝðWšât‰¶ omM5@]Ä¡­MnDžÇ5 ~þóöÌR!ÅÑ&! Ò‰0z CÕ³€Á€z¯ÿ¢I›‚‘ç¾¼à–·´+(µÐsîlh­$Ûlõ[tFúØB: ™wú®?‚¤j.i¤Á6Këûµbe–b&׫¨H’î°œnkÛ%$.|MS¶‚dúF˜˜v€B’ÙzØdó i.±“N÷ ‘CèÇ*—C½4ÅN†ÁŽˆ÷µn¡ŠHìM‰IQΡw¾;•:!öæVÜPfê}•#Õ…¢tá*p³[î¾w)åîJâ õGEÅ׫>„¹§Ä>¡@(¹ŠÏ£ã’xQÖŸ¯åT00¾¯ãû:7Jˆz{ç E©…%;ÚüIyì3šã«™zt‰ñÈ]•%„&¡â§÷Ô×À„ÓHÆKÚp®”Hµi¢3Ý ;]vê#àˆ%†€Wgg 5o–ùr¦ôo»÷-µ>³ét}¢ýBP„¨”šÐ¾¤Ú¥”V4 +dmÿ*Ù>ÎÊæÈ\ Wй{æ`FÛü¡?)ÕìWMžcó×­hÇmo.š3¶ëýÉ„m£Õpá6¾E dÖ ŽÜlWŽ[bE'¼=” IDATB¼q¢¹ùc˜¼@j£ÚíÐjɆʰJHXŠfXm¸W&H'ï¤þK!áE;þ®ýÌ`¡U¨r‚ܸüqa4¨*ïªÒÛ ˜64{r+Å)÷®G³+‰¢‹ ã!ô±š«„º4œ«€¢Ç·>rmv˜8¿§!.ôtSíºT‰¶¶£8 ç þBÊË!žÛãK9NîßÕñûewºZtexVÃù*¡Ú32«œ‰¤^EªTP!®5l £…a¸±GÕïcÿ‚±—»}Ì{1Œ¢§ÐŒ±¨´@ãj£iŒ²NˆQrú\–œ2gG²F·Íßÿ3°%ìa=Í‚¨Ý×Õ¨o"Pxz“šdÓHf‡¥ùÂÃÂ-Ps&ÝJ§ªt‰ÎÚn‚žäÃË•_kbr6In¢ôÈ†çÆ¿=UYýe{Ñ*[|`CÊx¢…8‚’¹çÖ¼-ÉgÒìÈ“´æ”,#²HË—]Šš™ˆ:™àê|v3“¶¿ºˆ~Ÿ1Ge’×H>pY†ÁT“‰‹¶OoJmjâ0‡˜OÆëÜæÑr’¸Ÿe¾À3q()¼­z»ê", C¡e†XX–窧ÀCØ+]Y2ðàx\Qz‚b «Qô®†yÑiøL×ä*]èøº”‡˜fj¼;ú¥Æµú^’5xù~Ý{*7>.¨‹fÞ°ñѪžÔs &?($qeIC¿PàÁJóˆÃ^§Ñv÷ÔnXe7úYG¯ƒÊ…Ødâ*ÎâD8KY‹¬ËW1.(÷aw«­¡j®=5ùt=Ž%iˆì¼š.12àÒ€ÜZ›,¨K=Â))µÌ ÙŽ{†0¤Â’áÚJ”- ¢è’û»æL³w5èfrnÉæ­Ð¢ð¬~N};*€¤Ï§L£u‘JaÛnËÊ5"1Ú1cá^="jùB°ô‘ObäEÚ]™çQŠjÞé¥ ‰`ûœ]®Âf…в9{ÔÂomƾ…À³žKT±˜65^#Ü Ë#å±ÚåH‘X¡wËx¬Cµ [Ž2î& 3×û2ÍXG°_Xn«=‚Kîµí‰“(ì"®ú!&¯rêkå5b °Ô;¢…z\´Üðâćõ•‹a½]Õ#nö'>ãP_ǽ¸!¬‘åp.„Â.(ŽÝ‰Ó}µ£c͉r T30`«R5#¹+T %›9ifFv!{+RœºâòHÛ ˆW@¨›¸c8áb†ž²öÑÝQYmz”2!ÕÖ˜ÕSvà…>¹Jت*ô„7Ér‚a zõˆ6‡•­MAšQ5¿»–èŒM}žÍ"Úx‹õ-™~–Ø`Nò¦åžÏÇUL¥¨äæî¬Õ¤ôÈÎ2Ë!Y´Bo†{0zT}ˈHŠPúÝ´k³Ûl°ÝÌ}kI¡MÞùͨžví,§ƒi_3w, ¿ó‹ô¡G•”õ½qÙ#ÇT¢rëö¡\‹ˆaz€ßPŽZ8(µv…‚V @ØhƒKÜpšOã•çãúLÖkÄÄ€ºÇŒÌP‡ã v„݇ÞT½ó2‹qRöèȺH9Éþ“àäØ= Ô-êâBADB†Hº‹GúœV oùìwb/a ³& YÑÕTËb|Ë^8(‘hö3Ç ¶Âfî}:T­lY—*âN¼¸8Æ,G–`8jb"sPZBtlÚÒ£Z ‘‘Wø-¹¥ªß;þìã£ÃjÜ–’ÁJÝ šØŸ 2= O5nÃ.E.Eö“Å„ZàY7;mF9º=,åÀq©"¡4–Ñ%삈[Z¬å­Y¬åžáš‘ëš“*¦î$å±Ï„Фȇ*÷Ëõ dâb,2NÂ{„E¸Û‰1­«ÑªJ®©²†­1.VÙ,Ž ÇîÎõ¡ÖUÊG™}Z±:—lpU·éõæäVP„É ý°Yu¥M0VZ©îÃÿq†ë u$Í9EVÞ¯ 1‡GE 8ÅеÄJF@• ªh{ÂA7Üö7U13CC¤!š} ¹AŸLŸ¥×ùŸgÔSË ŒÕÌhL#|J„‡×\¥ÖÅéÕ”n¨.[sa¹ÌQé?-ÉoÉo–¢ZD‹¨"Ç+Ôœo4±E?R‰ íõÏùwþ·0 Žb'…ÁŠÈL6kF&i­K`Xx˜ýãš-›¨ŠXI¬B/vÙa„ÀlF¼ ù@wb0z ':T&ó| ÁšN0‰Ð˜ÉvWU«©¢HM]‡BµÆPc Ët—ì¼»‹„b’¡ÉŒ5¨1¥ùŽ=¡i ]0aÍáJ&;ÁJbTáÀCŒa£±¹{bw­ÊUõˆêQÍó¢ôEÃDD¤V „hbÅÚᤞÌ)v5j †Œ§Ïi)ô–Q!Lüt¦ªåkf!B-‡L¥³œÄÖ‚Re 5/‚êD0<∠rT‘`õ²ŠV‚…‚UÌéCˆz,Ð0#›2œDŽê%‹ýÎÆìåÆëF›À5ÎÓY’¶á9F>ú?æ,¯«ÙAÆ<’K­Шҕ"Œw§':w>ÛBT$°éÜÒLÒkP5ëo¼mÇ”KÜdH‹‘ˆ GhŠPï…¥v¶´29š1ëD.´Q¶ƒ ®‘KFó€D©Iµ–&ŽØR¥¥Ñ•@°r  !:„Œ!¬ˆ¶PN(ÍØ3cþ ¡bZ!Ô3û2¨ my¥I­ÌT)¨ÂTs+rgÌüÜÖäD-E6Wí mA^r†_9´3b‚‘Þ½Ö=׌¯!(¢C$Ä¢À][ÏžEZÀä´/°!:œa+yD"¢0Íá†`0Bu°¦5ã8QEVˆÁkÚ+\•ášâ™äqˆ,`´*%¶9q;ÆŒS˜ôÍtªmnV‹E_/eÆ £!&¤ºGÃêlB±´}¦-Ýt!ªQ›r!“Å&½xä‡mê¸>ØÊ좖¹Ô¦#ñäq¸¦E%½Úh,)E`ˆé°\íÏzÖs4عϋÔ>èA±˜¶ÕZ‚`&‚€¬1Șø÷'¿W˜(Û ¾Â2èÇà’')Ö YÕq/Mî“├Gf(fœS¦¯‰laÞ&—-})kòÌ·ó¾–BûörúÜœIPÍ•£©¢¬i˜Ô’`†€n¤X$ÓOA 1QSiy Œ# ¬Ýr7ZnxfÆ7Þ“óº@$ ÁÆ0”QàRë&(9GÚ´ùl4ù  3ÞÐ…$,hÕµ"*Q4ˆaˆ{²ø#B‘B§#ª„kUá¡®„qÈg)ÚD¹zÅæÚäyHÎŒÜÁ¡Ñ׳ìY×ÝÝ¿í…iµ›Š:"&t§¶}AÈÆóh - ²‘¯zˆHA£§ukç6 0W~múЮ™´aS‚P¶‚f…KK“æÔ’O~Ú\ˤ¼'B…:C`‘F¤C%¼ý$Ê%2‹0¡´Œ¤µl´!"Ïôìœ=¦,„ÚôJ5r ­šê?‹´0ÁH¢[ ¯J4YR›ÒCrÅ€‘b’^}0'‰—’Œ;ò,Uj“ÝIU¦¤ã¯ê„"ò£’R)\%X(ó<û3†/Rç—éÐ[èS[޵‡¦)\Xu³ 'gÖÛèsøƒI²Åf'w¬ýŽÏB«Ôòô}I~÷ 1¤zH¸" !^÷ˆª¨*$¬²83·Ôµf4¨Fú¥{³ Õ]|EUÐRŒ( “’sÏr6ŸIÛR¤'ÑÍ›ùæÌÝPÖ{}*݇&ΈE2¨3âEÔŒ`­UéâìG_Šâ¨šQé…dQM%j·<3B&$}#Ž¥-‡ýÒëš„M³yäò_‡-évSÃfʳ«Iœ˜Vaägî V§(1ˆ›B51¶á2ÜiSƒ£yëÚ¥]‡f7Í\‘! ‚íö;§ô|M°Ç>§öÀHK¸/¢j¨Šfé¯âH,¨ÈJ¼µJY,¤#ó,ŠÀ6@lYÚùeœ>`–úBT(V¢‰ÛdSŽgf&‘UzšÞà‡²ÄNo–æ ¹0kýqЫքíe>i.+4G%Û¶³EOÄÙ_L]¥ ZF GÊÛĪyº«M4ƒ¦\ˆ•œ%”1„T8Ý*,¢êz áƒpu;5M[¡ÔˆUR”å[r8¹ÑtxrË“o›Œ¦7@2mqέŒ:ÛB7•"ªµzòÎ)Îùò ëÌÒoó„7Ò•šx²yÅ9 ^¥eÑôLÇè36¶}j+ÙóqB)zNKI¾ƒö$Ñ´R;Ų·‰óÈMªØn(ôÕÂ1‹„š ìD&1'”ѧÏÑóÚ¨õh %-…IÉ€FÖ·Èʹkhû¼BÛa$Ö QÐÚh€W@”£¦#6¹V*‘TâÐþbt…´­ ÏbŽ|‰k®}‰ôkŠ* 5¶½V5Û½i/Èþ b¯Ñ²åÉÏeUzOô>(*ô‘ɶÄ 2ZÃ…>[ʵaÒX4Ì`µÜ¸6v#!˜á.³Ža„†¨Ë.Ίª<è²ôȱÚbÂSAÅZm yµ{ù³çw_|üÇéy’Öǧ¿¦å”¶8Ñíâ„H«€úv$~àôjÙ¾O2˜4èñdÑžõ–© $ß! ÐA_ù(„{K8 K ؤ¡Ûo‚g¥xŸhä*4±BIh¡æ?è à-XšJêÌ«†¤ÍXT¤-µ˜ÍAii²,ƒâÑ}UåÕ¥L:(‚F B=ŸÞ8݈<¡´º%1dåA]›ÚG·Ö j!æÀúè<½Þ½ú·?}ñóW:«ø‡Óãïîô£Ôšsº ª@P+}ÀèVd Š(!E „JiÅ&#à*jšR¦B¢`¦ B&¬/Ïôx’x $ù_+h%Es £@(Â"¥Å/:ˆÞ ÛJ ²îé_Œã/ÔGy\¡®ëŸ«Ó-”¢b±JÖ´‰‘ŒPFÁâé%•–BOû6(š -qáb† Jˆzûuª Т¨L±fhXs¼…;¢ÔÃQ0`Õ5[ÙÏ>Ÿ®þ›‹ï&&Ì_ÕøÓi'î&3dÿéå‹/®¿çr{:ñzÚÿä…¾ÿûìötýë7åß¾x~s%¿¾;ÞÉ.Ê_úÉ/?›—?ÿöëõOÇqΡV'ä%›Ý|V—Ýå°yÝYŸiò}hªHù(› -U•‰.…hxÍ‚UKëZ6{IÒÌ~¨ˆêê„Y130ñ:ÞÉ·LÙYDþÞ™.Í^|%G¨moØ3nZyâpÍ@Žâ•¶Œ–ü¿™ç+Ý**×ÕÉ—Ÿþ»_âo^}÷áa¹?½xq}}=ž¾á(\ƒQ³*R"\•6¨s‘oÊÕ§ÃÝ7‹ÜÍCxq‰`-P…ˆhÅ:‹îDZ6OÑ!‡–A„•‹®Ç"TõyRÛ« ÆA?™W2 ,$X<”ÁŠЄ—‰J\ݵ5Äšlª•ÁQ"êñ3]m3]_ý›*¦§×äÏ‹|1:—ò÷u<ZY¹Îã0ކ1¢ÔX õÙ0L¦·¬KºÂ%¨¨9$êýM¥%V  Õ;q3 È–æl­«¦Å°~Â~¦‰‹ùR–UkÔÁ÷)à ²ˆ¹UW:Ö‚X>.úíúí+Ñ¿º¶‰Ρ!Óú½ßþ7‡‡Çe¾;~R–ÿî'W?¿ä/Ÿûo£žŽêë°œÖ;ñjW_Ù¾ýxýóÛåÝ?ÚLІæ!¯[«ùÙaFÓCƒNt§·Ukòéb„G—Qç›­2†æ\ʳàSŠb"=pS*ª!!ªå<ò5³^õ5È:T"èÕ%ÿÚ4q NÏô§tÑŠ4ÿo޽4“n Ü`hQà[Aš]I»¬òƒ›8¡4¸º¹ÿhÀϾùþööûòùìòYì/åXÝl•ð½ÅóaÞ«“8¬'©²<—實åçåîb½úsñ‡XNåù4"ä¾Î †ÁŸ¹Vï¼ÌÁÉë+¬à ° uG¼_†9>1¹BdFàëQjuâ¥êåàº(å~ÅûECñɰŽ7Q+ ³y<¹žä6äjlÇ5óàI¯zÍõ¶îYÿÓýÕßÕ«yTÓÓûê'ÕƒãÏË|3_~3ïLô“þ¬®…ƒH9„@°ÓÃ(6®ZàƒÚEñ 0-ÖÀɧ#JÄ@9(– ð›Ä„*X†ê§ã4ó Ž]Ä_ÚñR‡#øµŸ¾Zì±ÓòëK^b½ÃðI¹ s¨\öënð¡É¯QNßœo틽ýò:Š, Sq±:¼=•R¯ âý=ï‹^./‹ËúðÕ7ñëOß~óÍË7/†“ÿù«¯ÿü›?~þ?ýõð¢,;nW¡ "p¶3èˆMüÌöß [önƒŒnÈ»¥M°ånR>öÎ( Ïî¡j!™Ñ FÔ¥Â!H MÉI^K³Å6KNݵnÕW3,CCÕ¤÷Ôì·FntÂ.ÙŽŽ—6ʈ~tV dAˆ» 9h„L:Á¢#lûÎÝ2^jèÁß\_þÍ«úRN)ÀÇÙû¾Þ,—¿øäôÓòÇ=®~µ»|òÕét~]¸2þËÁè{)µ®ìá¿Ü/Öé“ÿëýãˆ}Åeù§Ã\?+úù^æÜÙE\à€õ¥¬e?\ý|\ö¸-Q÷2ÕÂ/k½qûÑ(Ÿ•å«X¿¼¿›¯Ÿ_`§4X€u4¸ÈT.¯Í÷Gáñ~y³þz·–uy{/ûqüõî8øOˤXZ?Åþž—.¬¢²ö¹ ^v(ƒk Î’A¶ƒc¬kì …(³Ï»ë y±/Ó‡C©Ã4Œê¶3Ôª»EÊ1®oýÍ¿<øi?,*×V†Ñ;méŽAÃhÐÉ SÌ)¦Ÿ'€éõŠÞÆPþùÿ„Xþ¨±óÂFˆY]‡2†M^–ŠåƒÛ?Æïå//x!öçåêËe8p}1¯ÏL®†i-»•µÎSÕÉž—Ë9lbÒ º¿[ô³¡>ŸÖÏv§?ßâÕ¥‹ÈŸYU ‡QÚˆ@%m7ÁÁ‹¹V5-–Î0V"*v»¸’y‰òñ4ÞÇ`;¨hTÃaG…’Q}•XÆ!ŠÔ“£ÖÉÝN´S‰UCÊ*ÃA†ƒ¸Æ´'vÀ¤ËÕ ÏŠ#®Ÿï¯ñ¦°‘±rYX+Ça.ñ‡ÓÕwû‹u GT$SIéCÃ!VGsab’A^Å1±õñ8ÍütÜýí§ëç—w¸ÕÿóÏoë våâÿñîÙß¾ØÿåϾùý÷òÏ·¸ñ¨vúû•'f¥z.' #²Âßꮞ¤7*:"²ÕÉ}ƒ4kŠtVyºßZC¦áÖZkUUª¤€+'iyÒ)TÅ/ÿ•ú(ºÀ-åefAð³x®§W%wùÂræë)I}[ë©6K^*He0<Öbƒv2to) Hcü÷·Ç‡Cùúuù—Ÿ ?ÿãOÖÿçíú»ƒ_ ü˫˗Ï'‘õRî&)ˆ+Pd¨¥˜`çÃÕ‰%ì R!N:b•¨âu(ƒ@‚œ `ïëtƒýº;qÜ‹(ì¡kÁiæìËU1YD}}-˯.Ë8pEÝs)’õÃtïø.Ö_áôf”ØÏG<øÅ»õbV'OFŠ•†A ŒGŒ‹,;/Öé¶Ê,âëNæg¶t¦EYEè1žêþ$ã.½JÀz‘Ä$µ“©ÇV¶D¦\múô 9 È5è* Aµ:ÉaªÕ›Xîª „®:®²V[)5‡NÚ2‰’³Ñ*_µ"ˆ•XG„8W×oÊåû)^·ÿï÷ñßOorYDÆŠÇ¿û°~‹òp8ýñ^=vëpó›ï…2ÖïÈaטEßÃxà üÿöd¸D§?{4 º>,'XlVÇl³ÛÓjÎÇDRÐs”ÐLÙMPºùæ¼#VQ´åއ”¼ÜUDÕ¢] jMR{#ˆ¤MD"×–jª`’誔ye*nD¥˜©tQgxb sÔ¤¬*%BëêEä.ð><üéøð?søÛÏÊëñôÍÃÅß¼¶_ìßß¿»=¼œÊõ+§T@•k ’ˆÕÕ¡šPªÇãŠX¯¦Ó¥ºAÝ•¨…‹dq‘0OP-™K¬¬¾“:™VÔ‡±¿xî¯M¾>ñ»c¼(º¿vgUÓ·®?Åú°»rÓÝ×óþ&F—Ã…Ö å©Ê¡*M Ö"£YÁ¯‹þØO7‡éäN©ðf”×*Ÿ>V]ˆòBëŰ>®À Ñ0€WpÅ [QËÊi¦;hV¤/&kQWh@Wfü¤ kñÅ|xÜc1LÕËi]\ŒÇ;/Ð;ÌZ vq4L.ä"ôÀâÖ¢ØsmUX Óù¹Æ:–ÿþõðÙŒ_Ù IDAT¡ÞþýÛx8\¾yµ~qùa¬ö“ËWãX“éñO‡Ãß[|ÆŒ=÷ƒkMdÖ-´Æª=# Å°™ÒJÌó´ßÛ½tÞþ y€¹‘m*ii5-žY=Oš¥ÚbÐ`¶Þ–Žz­èá.Y(vI¤ù6,óäïi¦/BÙµsDÁaW:e½Ð@my„Tº L4)!ÁËõŸýŸß~8Äǵ¼˜ô_<¯âôí–ʇõêõ0~þãË“¯.aWŸ^]~zôo†»:ÌØþâêÙåáŸy¬»?›üo>)n!z=³T]×â5lų³i Nlj_«=çîñ—¨²*†Ã,¬E–µ~wºÜïõÍ…>‡›Ô#÷»rùâ¢ÜÔyžãíÝÅO_Þ¹Ý:!3|Ü_ŠÄwQN¦¡™N6ýnçSýbÚýb'?.jøhs¥ÿçÃøÕ<>L1 »ß­TŸ˵‘‡>½ÖÓGÕâj´%äv–›E8ÖQe‹ VÆc-/.áb3¬Åü˜QÞúîÖ†z=ÿó"ýÙ…ýh*Ÿ……ì¿„ínl’ð‡’²"G¢¥¦¨8ÃC'ÿâjºf½­qýÙõEYï¿ü^m }ïû˜v—ö\d¶ÿ8|%ŠÙ=cdr¼ÕÌ|âJÀƒ •î«é—O°¤l3o¶'W¢ræ´r•g4¬žNéh¶PQQµÓ2çq`Ú˜rL !Qà "’rÎ"U=0Pû!H Ö=ê¬4§ÍŽÜt¥§™ê˜€¨®jÛBÒ(§jÛÕ*J †BBÒŒ-7‡™ÕÇŸ\ÉÏ$„ïï–¾›þtiëÿýîòWŸ\_\a]~{?^”ëg2^ã4|uÏu´O¦“ võ±ò·8íùLÇE¾›Ÿ™ ¶;}†ª¸Sÿj‘NªUDG½ø»“}ˆr)\E|D±°åf´EäŸÖádõ²`Öòp¼6—g¥>hYE Ã¢ãŒX|ún™f¥p–ú°¬câ-¢¯´R')2à¨å«*og¾(¾—¾.÷vñAÇeRŒ+åò¦·b–Ý¥Z‘*!5tݳ£ª9ÎâäÕ’RcÏ•êª_CoÖ¢¢«ŠŠRôÀéV¦yÊ‹;Ý9¿^ëT­œìˆåŽå€Kß ÿ—¯2Û‘–Ü%Ñh’Èœ4ªÎœO7ï(6²†È!ë¼{˜¼>¯ÿ€ùëo€uÆz²µªÜŸäòŽÏ§¨’WJ Î!è`d€r¶%-±<¼¥w²-jð,ßtNxŠCZ¸zÂ<:$AçFIí)”Q¥Þ bªëiebÖ"ê™M‚§‰­\ Ú®G5m:êæd ·IÍ4-e›á!Dj$œJGÛ™$ÛDT¶G^)%y MAJQ•,ú™ûsM-Ááwo¿»×q°iÐaPêäÃÞvEŠÿq­oß¡œ¥Vl)³VNË•žÀ›CìÂ㌲ŽñgòÃŒQÌcòbЀO1Z >„ßR)ÆA åá Ý1áŸà™ "%(Õ(œGj„ÍÔ —Ÿ=›ÕøýŒ»eW§El)¸ByöQ¿g,êJeµ”ÜDiå$v’x/¹›8¦ùŒ(j'»x'qî8•¬Mhú˜L’¨jæ­O0I;‘#4¤8 ˆ •­hsÃtu𸇓 ¡"*Œ"!qªd¤±(ÚℲ© ØIyâD:¥OÂŒ;¥` 9ä§£”ÊU*áHU¤8ÕÙcÆ:–!ÑhµqÉ[æô ¡ædÆ jDdÆ'AÉ(ÀÖÞœ£R®&Þk¶¶{§85T-V—pkDæ,"ÒÛ |# çZà ´nJk]H&O0.Xcëk2]x’;•"Z“ €0ZZu:³ÁiùdiIót áÞ¨ðŒÜ†îŽa§E”2`˜lÜí†ÝZ J¨,ÑÂM¤äÉæ(u•SU‘ä¹Z ¤qMGÉàÒ®®TZ©‰á‰Ð.´`{p~ MÃßÀÊ’®%)"ƒ$ô·.ãå`fË-ø u–Ô“*Íîl}t<„.ꑬ£´šš+‚4 µŠ‘½è"áL¤¯¡ Z5uxÒ³Ó(–ùµi¥¨!ÍSe®ræc2 JÑLX±h¹q†%âAÔÕ*„–šðfnXÒþöPž)ù»C6±by¨FøQO÷±Jj(upjXˆ;<$ÛZˆ÷²Št2jo3¹ çÙ[—>Fî¾´†*Ü27zËÕõË_ÕÌÒýF‚³õ3€5º_:‚U3N· "#$†,ÊD¤ä-˜†èüÇî}àܻޚnƒ™æu± }ÏÉ ]=šÉËyÿBÕгàѳµ²rõ”´!¨@I,¬å<[ápc:/©å`Á‰L`ÝÜ-yõ€¸† ¸©w"‰Èçám¾˜ùüK „Õ¤’fXt‚¢BàÕjŠËïëÌ:ž\ª­b„–¥Æƒ&Z` Ó–”­îüK‹.žX`°œ I%}–¹Õél 6`tü¦Þh›¿|M6Hrz©ºÛ–½”FgЀE©“쎾üÀùRÙè;YE5@dG¿ š4>•'i.Î-|kCr?zö:7©×–-èÍÇšJhoO¶í'#]£-޶EÎ>a2熴IÅ aÛçôf>_q…LÅá9LËøNQ?jAÒ²Vš­ÈDM{k“sZ –诛4ˆD0¤…i3rè Û-·ù›¤˜jŽ£L OÌ AW±T A¢ág(U¥Ç”å'Úì^\ ‚²%·÷Š4;¬l RÚŒmibÖpW݇áíþèF Ù’±š:/7yJxè[x)„ \=¾õ+ÀÀâ0@GWñÈC„jéޣΰÌ´23g:¥’í´~BÊìÍ-à]Î~u{˜$gl®“hOUv¦½0è$¼–$zö²Zj6+åæ-Üê²èÚâ-d&z{w¦Ú2Sb©ÍÁÓ£4œgªlO£mñÊùóem]„ߣl„l1SH³}˜´}(»… ÍÙº7µÕQM6Ù¬ÛK§ª¥Âk­-ÍA„‡³µqÑ)RDú”p§Ä©´ßiãáF´`ĆìñtyE¤¨ÓÏà%4a¤É–‘†ñmÄ:M5 ‘á9*(&43D‹6Í{;« „ˆ š¡++ùÞ‹m™º²®Hâ[ÐA×j†C´™zo¥'à£Á´Î™ñIÎÌûÕúOÞ³4M¼Ð2º:X•!PAF–·a~‡+òüêAEC#eäNÜýQîùu[íÜV‚huÏùÒg{ò*ŸÃÄ£8®Âïÿ3k¯_VÆL! méàbiïEyÆ”wS“E ËmÏz *óRq?‹)s Ò¦ÁîîýñË"-u]Þ·4IYJ+-Z¯Ò˜TAVß"–%s+œ™+ß]’šMhCŠS€pô‚^Eò0UÈïêœmôS"ªj7Bm¯rCýy„¯Nf™¬³Fí*6Iåòf5o¦‚ÎHiBO&MÒXƒ¤fjlHhAϨ—FÍ—ž†Ý¦Û¡Í›Ûðê!"VÐ×»íSµ‘à Ãe+NÂC¥1ã:/¯U+*²agóß&ˆ§goI{mr¶‘ç·p¸ü6›HÆDmuÂTm‘ÛÔ–kÃ~æ'¯.A”ÑŒ¿ jc‡csPe`jt¹±1¢g2±ùJU2“»cŽZ¦07ÀPJëÌöhVºÌ¾FA˜tãu¾Ñ¾q‹ã @ÿÕó­ñs(•ïŸ>ÎH:¬ã B&·;ÍND~½èJFB)ÚýÀwµk¼;†ù–kÏ Ó©ýAM_A>6}õ™úÍ–ÓDÕ xëÒ·m‹&FJ§VÎxÁVf )ù¸7]»…HÙZ) iõ­ØÙÎÈŽT‰¦âI™ª¸¶âAB„ôh©Ü ÐÈA\ºOÔ;à`„‹v²N„ÒÀ±Ìí5Ã[)!šcÒþ#º0ŸÐôw6’»£»ó&ÝÎlö+K"Bº]³™‘ÏÝ9°Š•ùæ‹iß÷ÂÒa Ú¦ Ètøí+²k{pêp,‚þKÞî$nò¥ì$™ ëf\líR‡;·ônÐÞÉKÁa_;J¹í£§ÿmžSœ™ëù,g6f 4ì¶þ¾RÌg„ÌTéþS"—í ê+KÏ;§ßÛçÉ9rS1"Â¥S9¥ùáüjõOÛ:.I~–`ù~F@¨j9©Ë²¥‘k!Ñà†ç8Ú’rýÆ@êgä;\ öd\éGE3ô†‘]ÝI ‡¡0t_';Œ¢Q8ˆeO¿Á ¢™ô«c@»©L{{׎Úö{”Ö|J~ïáÁsïÛ{ÖóMȧæÛòé3ª4¿p·œóÜ)´c µæ-“)ØèG±H¬H¸ZótDx”\×Rµªò4Xr‹Ç“f˜ßÖÛÍêž{òm}' Ø’ÙîÐÕÞ54¢C¾×Ÿ¸Ü7…l«õ†ÃUˆ5¡n S2(aë`žRî;uœÛÉìÞ¦)qÎñK`[¥Ý½™yW$ &¯Äˆ<åóÔo•çŠÆçŽN èLÛÒl¥htvƒô;j›0‡z=@AÞá²ùˆiK¸1ÕÅìô†P1EÄȵ·ªeé/‘ÙÉFèJ’H{òà)M‰§X–Þ¸ml ´ÖXÎDÉY¥ˆ6z~ÛÆ6rccÿ°6Ûžn×r{’:3-1l¿o19ð|6*û?CÈ[ÉŠdÓôO‚nðl˜ÍHxM«Vº¤í¿± ¸¡i¤a¤‘ȱ´²ëùzoí«ôYb2ÒT¶Xö¬:Ð¥ÅÚªD¸ô€œðHJÚ£5Á9_û «êg¨¶²](!¡[E\¢–µ [  K.\œA¤ӭs¤ )kTÄJOŸoG›<þB$ï|¤ lãôø >§Òcç¸Õ©ÛGžû¢|ýdûlÖ»,¯rEÁ¦Ï°mª` µO]ÚÌ=¥<¿ºDFæ@ Û྽{A¹ñF™|þ ž-UÍíÇØÆfÌZ²ÏÛó˜e[#Àj{I¢s%ÙŠÉŲ.™Ïšƒˆü4µIÝÏ3´vÅÓñÚ9pO:Rö sOú£ ÷Ÿ¹#ÎÑ‚y6Bgãì}Q0‚î`D´3—ÒÍ àÔs,lϽûd8Ë}ˆ¨jDÛâ$!9Ç­C±2 Å,d#á½ýÔ…©Z“&OY{óæÐEµú°“`xTkþ6ËŠ€-ѲîC¦³š&šø”ÖC£  Ë6qã}"§kÀÒÃÓâé›b.oä,VÚû€!-ª Õ6ŸÈd ÕíhÌËD6Ìÿ“G+_©'|þ«íefƒ$χT}¤€ö­µ-ýFvÒ>3é°óhzzš2YÝAÒ$R‹Þܤ" 2ë˜}7"8‡ºôôÍ­áäyŽ“Û+ 7*cKˆ@Ë|¡¶.Yó›¾]kÜ¿»lc¶j-²pl;˜-!£?fíRê½LƒÌ]M#Èæo¹?-Áš½JO6Ì)w<à¬#·±[£'3<µ69Ë3'UšS_¨žBËô±ôÞX ,K ÍmæÐ’³WTÓ-ß$윻aª6P­‡ h¦jêž v =ŠªJþøY)Á˜[xËÃÉ[¦ˆ‘Z»|‘¬0ƒ0K¼8”ÖxyR¹{ +áâUÝÍ"¢Bš†¶LYjó]eo`ú•Rk5kOz ßž“¾ªk™[}æq~x¢?~Ľ•‚ì#Ö~ÊäÀ>›Èh¡3ÂížWB%Y¢ÝUÑÓZºÙ™q·M=…¤Ó­, œtiI*-v&zÐXÁ ‹Ü¯gA¢ÖäŒHí­\&Ì›Ô#Ò^®-©Hƒ\{/Eªõá¬ô”É\?0Q£ËÄ!º“¬lø‹†;?àív’`Ô6Ûc8á)òïã¯.ßLš¦†R¶´LÏÁáÙågÕç-¬Y±]Õùp°Mr…*‰öl¬¨áñtP“¼^ ŠË*¨K06Ž#L“ú-*¦Z—žI«b–ïa¨X‹ª‚&Lˆ$©PÕ6cηEõš9˜¶?„K¥¤…4±’°ð²@ÕJ…PÜ!ù}…®Fi M•V-*© ~2ª€ìVs“)M…!O§Û3Ö„Ûüà‡©?0ôWžmhÛƒ”¨çGËÖHGU  RO¡¡Y&L0Q]ÑÒƒU¢W±!OJö&$Ï*¼ÍHÚuI†ö•§óiê¨^—v©pb«ç-ßÔ»ÿaoÚdIvc‰áþ""+k!9­æÒšI³˜þÿ¯ÑXê‘F#²mÔìÚ23žЇà^I•ÙÕ¬¬Xžû½ÎÂ[žP¢¶ ¹Èyž¥ý )1}¤£*b¯8§¼TJ ±fèî¤Ôuá‰ôˆhSØŒ¸§À³‹ ›Ó3#pæò2w¢YÕU'ON$¿0Ì⦊r½©*bç«Gº)èÓ)" ý•ÝÊû‚Ô€ø#ýd”GÞ8ñÒ,ˆ³H'tÂm b¶ŸÒK •Ðy!î’Ó‰IN«¤HºÜ<ˆ&4þæžPÂË~ˆÒ™}×Ö‹.`ˆÀþÒW·­ª=…T°W˜ê宇j?Bòî_)Ô¹Ž9wyŽHoÛ#/†äkó•µÎ4%;+Û0BvÀ ÙE!/‹NÉÉs_GÝ="'¶BD!–Ûj«væ/De~U!þ%‰ ž™8ŠKµÃí†;AÍ„üì “÷9m1Ùlgœ)Þ±:A"sù¾Føy¦z¯šj¤áœLw™6°ªSý02ŽCºi¹[£¿ÉHq²Š¯÷W³ÃÀENeR¡ûLöÇ™ÅëëM 5™kÏ‹Ñ ï%-S¶Á¿#45×ÀÚªSU5¥Õ[eXŠ Ð$àœš@E3Ovªûâ{ ¦UMøADQ5ÒOI1•60A-姆Lé˜×7hlÛk¨‡#ÁÿCѻϮ_œ¦è(y¯¶Qr£„±KÜþ¥X¶E3³ºD («\ÍŒê_³ùi©¤vÕ…lqáô|»Çx»7C`Åu¶Ý–Å|ÌÔÌ'*¿¹…½ý&õUTe,Ée%OšçI<€=[½¢$_ p¤$TèEcÊ‘y¦¸7E ö#ÈOæ}£–¥\nnÛϨj˜Î%«JP2°c+(ü%ÁÐr¿Ÿ­¹®¶nË¡œ†G¹}BÕ 48à+ Æô¨×óî2÷夈Ö<ÕFÄHh;u"AÌZp@%iPÃN€2=%MÒ]Õ=TPžÄ©i0„¸§«œ–ÞÛ.ªÀ•,[UZ¥0›¹Ê?«ËzË M͇·ÞéÚŠn½_ß™…†H²ÿ»sä¸N8ìÇoº7«J4^®öbH,:ÅlõÙ™„ô9¨©'‹²=:•‰Ó²š(dÎ~Eê,ñ´-:•@"ÀII¤Hn}è*Eš;QÍÝâä\qU8q•\†x.Œ¸Laú DÿÓ/½d1—‹ké™—ugµQd¶F^†@««$šËt3Û5°ŒÒX<ÎeÈ@LŠ.’Q=^_¿,YD)£ˆL¹;£#«‹M_1SŒîàîŸ<œôÈ3$Èmðð@ótÂ’äDQËŠ“„"úÕë»òmr—&¨0–X œµŽfÒ »€Bïç)Ò®ü¥«ëE7ieÒÙ©‡gº pXÜå~ž…Õ(†_+1¢LD2¸qdOά…«ƒáÔ &ãuå)Pò÷DU,ât;TâÌópót Q³3ݪÔPe*äq£ Z tâ+àÞùö\Æ!§E½Ë}@šCËŒ»Ø+QÑZºd¦B%4ÓÛ:¸ã´B®grch1B‹´[³ m'•©x‹ ÛbuLUÈŠÙ|Ä·&;xk¶Š)h‹>•ã)ÎLȈ Ýš\‰9£|×Ûi™¬0< Ç“­C­ªëXNè¬,ɨHqY½ŸwÎ@¢f!/ ˜”âNô¾h?<î-Œ“Ç’¼.§ ¯ø‚Q6€ªÝ_ï`Ï?®ìéLglÃ'¾4ªåýo€¢g†9˜íNH©%öôÖRy¦8Ä#îH½Ý8LJŸv“3Ï„¿x2üõç_ýþz³#ò8Ezè¡IZ™™ÄL%Ñf(f€§Ÿ.çýI÷ŒåÓâ)AÏ´afV0ü»‹Þ©DHÞ;ppt%WÝUMpŠ«˜©!Õ•ÄS‹óóýˆ›Æiùl–ª~à°ÜYYú©+Ô©Q7»ž§RfLÊT€ò,MÊHY3¹±§heêX¡ýœò•$½¨û‹«“ºžu©GP €Š½FÞ Ö%i(Š*Ô²ä Z‰'RTa©D˜jwÆyÂøàùdgâ5õ5ÓBNq4'MÄ­ë5Â2s~ÈÂ-œrÉ ƒRÄ!8ÁÍÃý.q=ãKú©÷ÐLÉ/÷üôÙ E¾ÒLÌ»%ýîéîJÉ3Šj_$=<4Hx'i25"Ü»ÎßãŒJÎð¨IÀÉ^?Ã*D:æ…G{œ0p9ÔlgÖI!™:Ñë טªª×óÎv=3Žãˆ/áç=âþãÏ?ÂU÷»x¦´™Èt?O‚qlyŽw ˜Ð7%幩qgqUdúé_ ¦Þ*)­=öî ãØ®­)fògAbõó‡ŒúUN°´Dˆ~>n·§Ûù|œ/Çñ¬ö¬0à€˜Ê3Ô™(í9ʇ¨½¬KÁÈCT#“åŠÞn*šÃ¬§œžHV§à.®oÏîEØhyÕÈ 8ª–Þ[“;#%À IDATÕ& ;(.$L”¦ÙÜe"ù])c wpʯZjc"7ÍCåfxÒ8Äéi2ümc~`€; bA4Y!$5Ø +€CÚÙHÃyÊýÌWÇ=p†¸#=üõšŸ#ï~±Y*±¤‡›uÄj„=EâL åA G–ª<¯%çª QºjTÃP›û yZ@¦ Åw‡1ù¹V+}Mô!’J‘é4úr,Ñ ½ÐìöÃo¾ðOŸ?}yýtž¯§ŸgY7hB‚'S‘¹…;–Ô^VwÂÛ—¡:á÷üòë¯ÿlm¬4ô¦‰Ð]­¬u_„HÓUZdÞp@N¡•xeBÛXµØ©¼,¨ ,krÓvÄ ù¡Ä½ý.â+m¤üƒ;Ð2U—ËâÚ:weQ*ÿFÒ7Jêîüsi'@Þ¹¨+ØÅ€gY‰3Ãó½¹(Èêï†Gœ­1*/U%ú$в9VDÞÜ•æuuëió[÷tHØ’ðÌSfß[}©6mìLuK=RUR¢©^‘0©„&–]Ï„æBÒ9ìÿZ´ž…«(:Ú´/ÛI6å°²èrÍlõyÆ ìq#ƒ½?oj¹·˜¿L"‚ ¬WXg4¬g ‚8ðKbz»½’¿ýøM&ާ[ž_D=ˆ0s˜Õ&R¼l"‹À ê*ÚtŠÿôó¿þøÓÅ69¨‰œ¤,kËÆ¢½dúêÕlühi‹v‡Qr”æKq§ÑàÏh€\¥*¤!‹BÂ…7ІEÓ.t„ª„ñel]‡kV•¤ƒ  8“.T,g^ÑZ ªbº;cE'± ©Á¡B+­ÕçÚ5¡8ý+–¬0Up˜,Û±–Ö¡‚ƒPN“½b"Úª,öÙê»hG¹“•¹KQÞ Ì‡¥ÊÿH$ Dz5GáW§^òLþ+ÙU‰Ê7Ÿ¡{ZÞÅ2hê"˜–ÎÖÐuôµCœSB•+ çHšt[ÚîY”½ jAZbKíðThcòP=zÜž¾ùøñÛo¿{~~:n·ßÿáƒ(=ƒªÂLòâÈÌ<¤ÍIJ7ýÔæ©!ª–÷wÿÓ¯¿~Š÷ôðØD¦¼DkåÃ&Þt·RA³“¹êÓD²òõµ(ôJÐÕUþ²-té5½ø­q™h óZ–V©§ A&‘ÁOJt¯ce.°ý‘‹G)«U=KÕCc…à~³¯v”à¯?Òú%/Q¨Ö‡ÚRCCÙ¡XüR`2ïðDÙ¸Íw+•ÎÕãÅjDžü·,¯7Acý„íxŽ >¾ …䦗Ü^-bizéPöµ¸è¥{HzÖã¬æ¦é/´G ëZ+ÈMT ^!”¸ß«åL¨¡m} U³ÃŽãx²ãéöôòáÇo¾ùx³Ûq³óo~0Ú-é5@U­#4êC9êªV+¿Ú¸A7sÔÛÍþð§?Þ^žýå—ûéçëëý~v"Où7ŒœZY-e\‹Q”~O\µžn¹ÈÐÍM )ÖÖUÍÏn„P$T–EŸ¤@Qçð#j®bT]Hy…àmEa›R€8¦Vh{a ó–¨733Õ2³€i¡¢@´M BhÚ¾30Zób®a½Æ2¢Ûª6ã¬hʘ’Y³Œ¤ñ¤f*zOÆž¸ŽT6ˆ\vV@Y ¯´öæª4¯£V¿ˆ·4>Y5ºYÌäÃ+=«ê3ë•s¢héJÔ¤Sä`nùÚb|"¢×)XB¤ÕÂà”Ñ̶±.Ý­ƒþ9ûf LK?¯jút»ÏjÇq<+ÌÌDM$>¼BFY‚¡LyT7ÃÕJigX¬Þ@6_,8Úžy}_S‡ 8fbT )ëh(<¨D0ÞxàØô«ÆÂÎLuøÉÄèÆ‹´ÈÀèbIÒOõî:îÒ,¦£Xdê¾HÚÛìAªp(:8dôb¦FakU‹àb üE×Ù0Óò«‚\0G<¾ê3YÍUÀçE€—ý’Êf°¨”]Áà@Jé4›³¤õiˆÜTõò›Ö°.)p–£L}QhFÞó$ŸT4SA+"A6‹(¬¶µ3uš¹<„–«óMŠxz²¥™ÕöÐ"{æ^&Ë‘Pf"μZ<@Uã<é‹u@ᯯÀíôxfD“ªÙAPK±›Šª¥˜á¡'€&y<:‚ri»ÔºÝ‚ ³Öçl´þ½qÒï3ÒœÂËQL9U¥ÙZÃÅh¦Ó«þG"r“6ïy¤/>mª5‚QbÙ=Û$8°EXž²ÒnUµ `[]˱p:]S½§TúOH%Þlü¶F TÉý£%ªJµv©[Ã5p Y| W9ŠòT¿ãªu]ÍŒPãomi6ê‘*«#€4V"P›Ôd6Ôi±èþ³=y^EŸEKJ6$Ú¼Ñ"è¤Dšcy½kZÕ˜ŽÕI¾\ªK&í7™QCqkɘÀpðÿ7.,x³BÔ¬&¦³ÿz!¢&ªG™]¡¢V·Ši†š2Ê¡9VQLc£Ë¥*Dõ8*F-«bÏ+'·g¦&b92©aIªÒ5¼Üûûj¹o‡ŸU˜W­r”;vv>Ö"P# `?rvÒ^)ÏI˜Õx<\f2¥‘Sˆû™ ÚÀ7‡ÙèfÊ«@:›®eÖ²<œj*í§ ¾©l Ž ”|»ªeu¸Rª?@¹kAÄøF¥òtêTÑmf‰i§‘ŒÅ¦9fžéÌ/Y{%⥆†\ÊÔBg"i‹þ¾é4‘`ÿ#‘ÇéÔʱùA:NcÕpÀÛí¿g-MËC(üiU ½D/A¬¬õ†—­»ÓL/HY6“ÐÑ4•”‚w›•¤¯îµ^‰Ö´ Ã­ànÜ6•nÖ¢¢JjIrSª¡Sš§2‰äÁ ®È¡k/ ©OrÊHGŠ˜ŠàÐcùŠ/"{0ØøÈ²0’ü™òÚÔ±Ž·´L­—ÐkQ§)[¶^öKý{dÿÒÖ¿‚Æ5dµ˜û½'’ ‰ 1@½`½(éïbZΪ³Ÿlø üÏF‘+Z»§åþØ ŸTH…Õa“tÈÚÞlQ5+ƒ 6å#»™à…õoñƒhæfÍUU¤³o©ÁšÐ4Øj]ÕR´‰|qâ85œíö¿,ÃJf¿Ö ½<•m£Ø Úl—·%u¦^zq~çH \”íhcíŽoɤ“ɸ.çý~Ž‚Vuqà²~m£ddñNª;©nœàº(ô(vËtLÜAO{ªd>³,·TÙü!Ka…\Ã:ê̓6†Ø§=š/·)9Qè+’O7k¤A=Ã2•Ò– õ\¡’¡iä-q.Ï–¼i™ÄÈ¢Ý4vÞk%5m!ý£^Ù.’UjÌLqëŽÙ ]6Yžêµ$ùŸ®ê’ÚܦùšÌŠL¡£)Ö‚WrAf«fen] ÆÜ¶Ø«t™Ð啽2s*GzÚ)É#µ=dèRÜ3X´ãA‹B{ƒ%‘ X–‡Íj0!é¡©N­ŸÐ|´ Ðè—õT5Ñö$Ò a½{u“„Väz¬{&[üê!k•”Aa†ˆdšê‘LÏ*~\y´É ¤D*EWÌ‚Tï·e„hßä)£ QR¡U’¡ö²\»…'2{´uíì‹õ¥tJŸ6(¥Áí•8Ul¾"䔯`k¹.쵨ÒC»¼à ™V,Ì€¶ò0ó#:T€Îa#죛îfhÚAq ÄÈ_hAtghô½ õ…¦<ö|‘Tú·ö”\7‡SÙ¢,È$–µÀLnó ¨ œ#¹&ÂÆ¢WÀÛ$»¥ \”Ǻü tºB¡Œù¼L×åL »ŸÔÊdŠ{ÜO Ÿµ\5*—Ù¹éHæÄÖ)ŽŽÄä H|³wb¥Â'Ö±¹ø¾_Oý¿›ñGi¼“¸l'20¦[§dGXçÊ!½²–­M&@%›=Q3FcBØp*ZW¯½$EiV‘’‡ <_ïwœ§{FqþH“Œó4i†t-ƒ¤ŠÿMŽú%£.›tÔO™“Nñé®’°+ 0æpKÓs2ìHQ‰ôÓTì|u—WµÍCÍì8LLÑñT3ÉCìCЃ‡¶Ô¤âbÇ&e“Æ=¢fÅ\¢É($ÿô§ÕË~FÈTȤ=i„¤@e•¯­—8Ôʆê%.T(BfŃp­ÍnFˆ–¾hÙ4Å0²‡ªÑªe"¶„ihÏ vã%BªjTÐ<ËÑ'îè3ÉPÀÚ¬=øH˜‘€\e-ƒï,éêX}äܵR’èè¡â§–;QRµ!®Òå&I/Çv¸oQ2ŠÇÝþ™ã>A (­«³º²N3-N¤$ÝPH¾¬_CÉT()0»0½±¢kDºèMož5å—®ðèLQB¹1¡9¤ØÂÔé®1JKY"ߘÐÌÎfž jÛò61B5‡Gž§ÿÛßE†·»gœqõç§ÇÇo¿W½)DLãÐãøîûüþú|;Žƒt=Z-†/K-†iÙƒþyu©9Hašurûˆ;-zùÓÅ*¡fR™âyööœ¸(Oùq7Uq÷HØqdJý¬îÌòZOÁ²b ȇ¤Â£vÕR"ièãˆD¨(³*¤=Œ „¥Ü$®ñd&q¸{Iõ“nTGˆ²«)’þsƒ£±‹¥*)b)Gm–h‹LÒÖñz_†3,²³ø„:„S³–X‰¾¥EPQöL­ HPP8î|@è¥I+­µ,ŠHkSÅQ“ƒÊýþ.F-<=Ù‘)â¢"шJ]®qñ2@_ÎÓ 5—6> N褪Z'ò·* Ó䇪hùbU7‚•°e"âéÊõDŠÜž^ÄpÞý<ïÌ`ÿù矿ÿÃ?|úôÅ]òùÓýåÃów?üNÂo@á‘Å&â«Ô–Õ¡£7CQuW 雚ûÂÑ#8jˆúšh?€è¨ i´j錻»Øaj·Ì<=§¨ÂŽgw~UŠ‘ ýhY_tQãÂ1jáDŠ™–t°¢h´ÇØíàØy‘¾Áý qUÔTÍjv²râÑå…VvÅŠ8a.TFT$•ÊÚÉ”ÙBÎÚ3zí£Ë%ph³ H*óöˆQ¦ôË™Rft´«MÖ÷À´l‹¤Šçf Qt>'OtgßtSéÀ}ª›O@Ǽ/¯_ì8»Ÿ¿|ñ3aöôòòòá›§Ûóýž÷óô³ÂÈ$B3œ÷tïW»ØjjÙ?³}òÑÿ‰8ä\Ì\)!Èž·¦Y¨ŒBÙ%ˆH~u ¨Ë©ž¢zËó´'{}}=DTÍNwUûñ§Ÿ~þùgâBLaŠî¬HTtã€juÃ.ÉÑ?doƒJCpÏä[#Þ_°ü[ù("òô{¯¢9Â…§'>½¾ž¯Ÿ~ý|;n·§§ç§ÛÇßüü˧ÓOk"O§_T¼×¶³+¢ <Ø'ð2«n¦,Žs»ûfuÈÖªÖX³F¨1hn ‡ÂL‹tCôzIaJw0z4Ë µÉÍÓ0PvgƒŽ÷mǘ½¶r :Y£³·Ò@éЗr-C+a°b¢›¹è ýSضZdèP`Ô°í[{.í©òè)N!~ž"qž~Þý¯?þòËO¿~øøñ[Q9žå&*f¯÷×ûë]¡çùZ?ÓÄˬ ÖŸDÓ}yuIûâô\XtC¢çX 5½Ì¨ØÃ­R $l4õ8žE·ÛíðhC#èyçïX¶”ÉÒ¬Fc‰cƒžew¤ûÙ$!çH lL±‘ð 'á‘ñhÃPnÁÚã¸üüå‚Ï_¾üùÏùöÃÇïóC¦Üžãõ~úy†¥ZÑ1i€Ù\ï\JFb+*m]1ÿ”o‘.РÌ{*^vʰÿF¯¨jS¨w‰L|Q´.ÄìG= ¨äX* 2SE”Äbñ‹©"+ÚcBxs„à\¦í\Û-Ô--´ö0Œá?Q×:ájX»Úã¯]§,T”`9dVxw´S9?´çé÷/wQ<=½¼~¹KÈñôô˯¿~ÿÛßE2!ÐãçO?þ÷ÿö‡Gøú/wJHìüúˆ!”ÂÝsÅŠNçÛ^1}Ó³·<áoÍDÃÓ„ùåÀQöÒYgü»~øwÿîûæãGžÞã¿üã?þþ÷¿ÿöã÷"òå¼ÿå/ùüù³4—ÂÃÃH@ÆD ¤vÁ™°© [RçR-â̶ŠU3þê‘TL¤¬+®¬gZrkînv|ÿÃ÷¿ÿÃëzÓÛ‡——O_îß}÷CÜÏûýŒ——’E3¹M Ä$ YXϘvè@‡Gf¹„Vk_¨Ÿ÷úƒÂ8¾WÊÌDÑ55mj¢ÌÛkut3«xƒqÐiŠJÕCpÙY-ܬ¨µ¤`è°ÎYïµµ7E Ò]Ár•ŽU ¹ª÷FSÒLK13&‘E:, ZaLÆ._#öMŽ™’—-ïáí:+/Q*uä~;9ÏóééÈøðë/¿~÷Ýï~ýòéÃË‹BÃ0ŠB>}úõõËIæÅÔ Sö/²ø•,@•yÑŠ¿Ú eû¨VƽÒEªâ 9F~u’!)ž§ yúýË—_~ùôɸ‹„ûùòò|ü—ÿãøþ·ßý`ñôüüÓO?ýùÏFhVhHÄžm q8¨Ó,½dûå·GF+R–óÓ"MÒa^væ­¨ÝÌár³Û÷?|»_¾¼†à¦úñÛoÿå¯ÿúÛßýö§Ÿ~:n¦Ê© írrÊj¨=ರ!&DÂX~(¿c"P*¢ZñODÁu1ÐH!j8”ÃmÚ¡4ô =õfz{:L­|‹y Y߉«Ù,  £üÊÞz°¬Öj×k¡ ¨Ä&¿ØB¬Ð’ýî™9Cö%]»ÌeýÞCw¤È[°B㲂Ð ¥÷:y0wdmØ¡ZP†i¥C ú弿¾ÞŸž_Îϯüã?Ün·¿þõÇÿð¿þ/Ÿ>y-©xªÄËíöÍ‡çƒ IùºÖ¹Aéä €§³/BC×^@ÛÔ#Ekzd])\XÄ윬Hn}È—Êx=?é/§Çýéf“Òrv|üøQÕøí^^žó›ßüõ¯…æóqC9è‡ËÊ‘®ŠqF´©]¼£lˆnfçE”A”"…a •Ægmj«)V¶‘'}zÄn·Ûyzd¨fªføÃßÿ·ÿþ~ó͇—çg³B˜k¯“í•ýµ!P ·+š6¡ßiäh" (T{’yƒ µè‰>‘yÚ …0àv»eÆa€IàT3ƒzœ<|¼[ÈÒèµ<(}ã˜CUÙ9ì}éC,"8iì)F†šŠ$¼ù(¹÷‡Rll IÑŠ3’ˆdEó9t-ƒŠ©S5–äåJ¦0hżN‚à~~úüÅÝSðÏÿü—?üñþð‡?ýõ§ŸÎ=žè-­–Çaß¾¼|¢«zñxzPl¤š¦D‘¥©Ø¦®†Ñœ:‘Y²tÂIW§!p-| ¦Ðú– d¨¦û«ûýåùÉØ©ŠÈñÍ7ß<=?¥‡(ŽÛíééöòr3µ—§[q7#ã8&rýiJŠZ€PrÂL‘ôR€*˜E«ujšv(HÅ¡¦"q»¤IÐôcÚ•‰º)èÇMù!„Ÿçé?ýøã÷¿ùîßÿÛÿù—_?}ùôY çyÞIH½32 vì9YÈTÉŠ‹Œ5Õªª*-D”Æñ­ªÄÌs‹ú¯Æ‰$Åh¹«\#Ájæ­è“™HÇ¡E‹KÓÚ"RÛ!Šö–;ÒÝ.*馣Âb"˨kR$=ô0¤8›‚ Á#~ÕÒ#Y^%kL¢uwlêmi;o¾U–™¼¼–£“§Ÿ'¯JÎX‘A½q.wV^¨ jã?¿¾¾Þ_íxR=ä¼ÿÓý¿DìŒ{(àr<€YŽÛÓw?|ÿòÍÉ!ž£ IDAT‡›FÆYÑ8•øä­Ÿ¢·f¡á^œ˜0…aªÔd~@ôØ}ÕØñª6Ï+" q˜¦©=¿|P(š u|øæC& çz»Ùwß}üÝogЧ›Ý’òš8ÃWÖ'JDO‚ž~jÕçÕ穦ê‘"iPމü<µº`÷2ò."âXjöš™jv;ÌÝ݆ˆørÿò/ÿ㋈y}…Àì%%o·ƒw¤ÝJ)M¸9â즉¬dß¡rW@L;ªw…Zµ«ªæp :¸Â*@PÊè £ƒE™ø~¿€ g;ãj4{òÞ×K `µ› –¬ŠNJ{ñ¢ìλ˂€y`u ôzk›ÖkJãÙÎS2ÕÔ½ÆÈ-u³z¼pÏñÍ O9ʹªRÄù‹ƒÓ,±i ™ìMj 2îîî)¿ýVDOç¾V\ÒE>~÷›?ýÛÿòÍÍ%È¢¸©†`luß*^`_ ç•íåê,¼$fº©†4³šÁëz’µÀÙ¨žƒ"µâDšçý~(âv¨xOz3ýðt|ÿñ¦"¦‚@âÉ=0ñÚt¤î•,D=œ­FD°Œ›2ÉûŒ,oUÑ…2WÊ$!Â;¹! DœÅ' DÏ/ç¿þô?îîOv„ûqáçÓñË·ß}ü—ù%¼ 6ééd–7¬]z¯E·C.â-fWf‰ò+…YâQÒѪõQj„ Pþ£.'ëxQ9#èº/ v²Y›JJÕ$Ã#І!›²ª“ßƬKuÔ÷a mÉ!œkJÌnUZ6RL2ì‹XÚ4P‚ ‡Zóˆ%DØÌ/Ú íDªÃ¯9¼4­ªØ¢÷R%Ýï§{¤šÏ?|óÁÔ³Ó¦‡ÚÓó3 yF´YZ'ŸW–kSQ²s¡—¡—C RV˜Pô¾+(cª™ˆÜT#] GÊ ÀX¿¸(¼Ð8¤2Ñ"ó y1=a†p—4 Ï8Óï {_j/q ek+“L£Ž Nk†ª•QyÚà˜Y¡@MÕÏâø‰Þ˜2ö²)ï ðStÒÓ vXõ]&‚T;=~üé§óõ‹ä‰Lµ£<=hA˜cDä7eߢ¿ÑÄr&ŒÊœ”óŠkØÓ•²c¶ôr‘Ã4Oª&’lq/ß2s¥WàG–ãMfå†<¡;cÌ'£˜+ø†Ý…{æ=I÷´P®eMGCÊxÁ0ÌÕŒƒAo7 ´eP3=2©‘È6{†ð8êϸ¡tÝO¶*="¾ùöÛ?ýéOÿ‡?~÷ý÷qF9nOOÇ­îPÈ]â¨þI¡‹ñ(´ž}®BrÅ¥D”4:‰¢«)ã¬ëNr®¼¨¯)Û©ÂvëÓ-.f0p˜ÍýÇ 6DeEo:R‚׺}/ô@Nh1­[,ëÄåÀÞ-u»d¯Ö·&É´Œ *ö­ÚÔà'Ÿ_ž¿}úNU ` ðççãvÓÏŸ~ýç¿ü?¿üø‹Ÿw…òñ«ª{¹ãG;ù‹ex4©ºšÙYuè˜éKÐö ª[fRz.Yxƒî+Z`,Ïî _¸YD cV‘«tJ€ű¬/ÒXk®°ÀFWsR2›c‚ð ;#2ÊIJ¾tw(ÕæWBmýˆ}Yœqª"Ï„ZnQÀÆŒš‹”vÄ7¸³r­]݇kÍ$ÙÌ4µÿðŸþãÿþŸÿÓwß~øøá%=í°¤Ë3j'ƒ+{ñÆ`w-B“ŒæN†BVöŸØCˆG-»m¸æ#ë6l,"(Í´Ò!:zØxÜ£ï¯PÀO?"b$eí[-û…±G½PI&˧„¸4âÙÄuÞóV.>ª%ËÓKPˆ“«Íjß‘F/{™BO·›š‰rˆÈífjz˜>??ÿúËÏÿõŸþéÓ¯?ÉéÚ?´Ôm³>í `Q‘Þ¾¥ä±ÙìlrÂÕ )§Œ Oöäål›“á«DëÍ–Û”´âEGv/‘swr+6Æp  Ù6ž³#¢½IÊXô×ÅÖTIŠo,œ_Àˆ/I'”N¦fmÙèú®ÐˆP=Šk¼WÏÜ5æl<÷mz–]"µÇpi™f$n·Û¡øðòôt˜AÒR…¼Äà롤Õ×qNUÙ2ŸÍc'Ë;m—1l1Ƴ~ZþyÍnYÉÞ2µùO\¬‰ÊÎ-+žÎïçaf}‰"Â=NFM÷wŠÜ6Ãsõ5ŒÞ)ßWÛ*‘«±ÉÝk¤ŸHfÒ;±£Ìö‡ÝÔ»6™Êü)ñLÚ~øðòáËŸ÷ÏŸ?á<›ˆ–›3nKÌW†ôr§¨Cži¹›qa· ø˜qÍ®`Þ"½3"›%PÜÍ¢­ 2LHç’ E y¤±¼p…LÌçήA·‹´¢Qĵá¢6(/Ú¤û¥`Ô•ö±––ÍgLD<–ŸOsC¥ÃEw|…QÇzE—ŽQPªÁŒ|£}#sO[I¬Å?Š’Îtu]î Í[(½Éª"˜N¼_È:ÏTáͦJšBÔ”Ó¶¸ìÎ@j$¹ßËZUö£B^+„±ë™.Ò ”T©.Ô” ]¾ñÃçmâ]]órôÅOͦ€`Ý'­- ŒÇ$&Ðbˆª…²€ÚñáÇãvhñH³$‚E7s-N–2vl û)( Kƒ^ëý>}›j ÐmÑVûܱnáC,úŒ\Üu†ZnmZ©DÇt²+‰¶·ê1"µt`Ý™TW³¸ŠÍ„–….ó £s#J­ý½ûŸ‚=ï¤`EYÍý1!Y}5 Mn_uÍm##d(ûI€¢…reÃc Ã…%®T¥uOÑëå¡8JF½Yã_‰æãתè_ûTFg¤´^œñ¢ú&˜ˆðØh¤¯ˆ¢í5°>Äá_ ë|¸…5§¶Ë+Ki‡.L)Ý‚ý7Ç×ïž·³f„(õx=“ pÞiË[›ãލ|º=vp]SÒôžóâÿÙX-‹àš¨Î¤ûrMÖIÜ.7äîx ’åI® xùFçd}.Ï@ ™‹¼Ì»¨X†3¨ìbt€AT¡é´DŒ‰„LôV$®YQŽ’- fqÍbòÆR46/¶>ÛröòÚPÈZåÈ„lïÌ A‰8o·£­#bìA)›ÑàZûÔÈgÍ™97ÚÆ³BµÑ2¥L‡ˆ-Ü/æè0wO”©ys·)ºÓ²^ïV‹û¼Hrd¦Ò1ó}[éï½YáQ(ÊjíÕ¹ñ.Œ`”r©ÙpŸwƒÈMoºUç¶ÎêÂýA¶ °Šªx†äP¾ À=žoz”ú­l¾Q—4‹8ÇJ aöCŸ2 UzrbávóíœpÕS³ †ìzh^/¤ëJŽŽakSS¼@9†ÖÏ\C³®T’¦À o [6CJT‚çd8tܱìÚ=koÑ÷S“9µ[ç'ßFóõûs+愌ß,?!”Ú¹¼è0àFر®+›?YZlþ¢FÇ©hå®KjL –3øf·’'è9l›ÌšÆtŒÃ$óX‰ ŽÃï~}øågÌÛ¾Ý%‘} iôƒÆÌ.¡êû¬›“ùv7o_°†ëÅ]MÏDDªDš°V‰Ø‘ªn¹‹¸,d«Ÿ›0ðÁöQ …Îo`r/qÜžžh© £x¥"Ht~ªýïÇ:"È Î¡ò)>7&î>â—ªWU¼¡ö«ÏZç¯ì¸"a1ëRr–(\Uí0;Ìê‘)Æ$gÌþC?DÊx}#AÚÕWü}LWï–o{å7ÿU¶”ÔY›ÖÄÒ$¬ýáy¿mÐ/3úuþ~p|8á—Lìë½Pò[–…µWÝÜ¢¯7Èã(ãBØI—l5žniëOòc-'çn.ÛSTIoò^Œœ•Töœ&óz€ëàÖy-öBm ;£.ŠqDÄgéEô‘hö'2ã8Ì4Ò=<ÊÙepÉ|@w*V4u¼h•P³i,V®¬V©#ˆ£oYlžy| çé‘yÈH¸Tw£–å×L&²üÊz˜ïÎôÒ«î~üWÀg9ñ^â-WÛK}o žOæáKEÃh|n±‰[÷@Ol½ ‘m‚6lv,ÍWÝä·5HÖFá''·8º·~ž ™­pçX ×^2êµÿc­ÿeã1LÁӆƵD؇ª–ï™ d!hݶ§\ãjý4à›\U‘‡·‚ýK‚yÛ²’‚›î›"8xß«ª©ùy渡äRÛîWàiUP\1†ÙØ:¶6ÔiÜ&!¹sÈ7„d í ÏFuS¢ÊYûåûõ“n7ª{­x[s.„ÃZûèö‹lÇ•qɃY=Î;íŸLF±¶Q¨ðâ¹Ý0TÒúKTŸFWþâtv6B®`ÇãÅ‘½W샇mHn¿ñÔå&·~©î«;À¯ª[¢ÏrqÒh$·’õ)_<šã¹@'KŠgi}@Ë2hor:"Ra¥­÷6kª“úi%Ãó8jv1³„z¹¦«l)7Óûåd½m‰—hýR*­çÖÀˆxíézÀÚÀc‰øZç¶ýq_¹Ä¶=ìªÖüï½V^'U½¬ó®;þ}‹òЕ=œ|ò¡ån3¢ëõþ_½Û.ןÿa®X1T‹AOé€åUÕƒ\±ÑzVæX3âýns>ÏQº^)•I_Î]–‘€o Í–Ë(˜òÁgzŒõ›©žU…fÙßòyÒ›ÛàÌÿ pMóã ÀÜ®T\†2˜Nž%½ÊXÜ|¥Ý†wò¶H†˜©ì«»b¡,o=ÉÂ/2ɇ‹yÛŠ\jÈ#ÃêJ¡iS§kš‰âkhÁÛ[_·´ÚØìöw?l“(×sòxÞ®ÃØ[¶Ë;³‹ @{Ÿ…ð>P±µà—˜Ý•Ïc@Y2¶›™BUÔ1FN¤¡FfªUlÃAÙÜÙ.û6½WÉãáÓÞWÏxóá”çC3>0—pIÏp?ÏtJÅ=3@ÎûNhçî´miG¯­ÓxÀ û{Çå8U0j«µÄöÚx ÐÖ ½ ÑtDÙ2URFÛ.tFÊ’gS Y.€E¡µËs-hw:¥ýõš›¾<6˜?Þé+ ¹žSyp½y~ó'§|[ï+@Âå-¼¾îû1®œÔ£­3s©œ×Öà«¡WhtÚ‚w©@Øõ‚oÿÄÜßÔ­¬‰D""<Πךfš8U&àtÿAŒ/6š,î!b„ž¯ýä’4=ôºÉ<ú¢ÐZI1=a³Ïœ )N o*ÝYj9É$¹&²®þR‡jåü=ô±ýÐï=ø+âÜ›ñˆ– ]gã7K&hêr(C£Òí7 £×ô扻;í(TécŸC ܂әDßoîñÊô¶ì<¾¾»@÷½wý-æ›;wêÿ﯇ùgeb¾Áô.¼5/Ϫ`ï_±€üÜX¦ùæ€ý ±+á¨:J•³µ!#mleãàT ¤å$.‘.Ž,È,tQ®¹[GÔœjô­]ÖtD‰B…‘K?ûx»Å$ËSh¼zÑN!† ]Ò¨ÛQà°ÀÁŸ½gµõÙK´ÏpVÌOå2ÓXcöž{¶#¥ óØ6FÕp^—šx?þ yåêÍy'é¡iDB!ª´H²ï41ѨäÅŽké~áâ›ÒFá.wÚÕw/Úͱ×[ìØQ®hoÛp­÷¡¶bú@L{½eåý…Whlai á‡z =—¤*wøö©MDzABÞ”ÙõëÌ:y÷ÎÆ°-ù¾Öç»™¿¬»ÖÖ)).y$÷%2Dï‚5‡¡RÑ? ²¾¹Éù&‘B:hŸÒa¶ïn%s¤T´KJÿÞ„eœî#˜îzdx!£’KP:Bõ6¾‰gUq‡m|øHÁ®õ=9dy¢Z Ù%ø¤Uä(Èæ¾Rhâ”0=œV]v¦¬…©Â~à™©ÊN ÖXÏÊöÚÈΞäNQ›DžwÇHñJ:¾ÔŸ7ãM…ÌÏ\!¶‘”iloƒµÇÅuÔ®ªJ4ÃP¡sñbU6ö†ð)ç6ž­¦Îæ]àî…Ö]hûVÍ|ߢm¬ê,\dÎÌ´¸}³èN‹m“Øy¡ÐMÐZ£Væjšk¶|ÈT°mj[[VÊ9q;xiwÛKGe„DVƒ£²±À›¸SO˜&RžÄÌ#ãçpl ¢DørM^›ûœ4LJÀˆüzÆðˆÍ{¦/^ ±t)—›ðØï-F,ÓE=•‰¼=̰uìa¢¯xn£ÊœPóqi°ã‰Kaò€TÌl3Eæ­Ðj^#rðÞ\nÊŽkÍßu•ÙMLʦ3¤O´å»hØÃoÍö WÙÄׯ}ä«{ƒ’ïÎl\ÉT×bèŠø£E“¨D»Ä¤™“­MÕ³ƒ¦9-ê–òÆ—mœ{ˆW•}Ù°¤ b“zÄ&çn¦|Zç6ý¦(Ô:™&2ª¹é[±Éo܆:EL·ˆä8V–mшâá’Ž~ÛuÑqæï¥^ó·4„ÌànäËtÑ–áhbt¿²4îù·÷ýk–¼+·¿ö¥Þ¥5¡NãZ”¾F³_ž&Ý.bZÛÖ¾HÍuÃû ºw¡ð}™öÍ=ÈQvaÙµùÀîít3yä.Ÿ°×ëé\’€ ¦UMvfh¦ÓÙµ‰R6qñ„À•Åt-;gùraxÉ…/¥ª$¹y.Ïô–õå.Y¤ù¾6,éîa"ªzŒ "áßid¨¤Z–[{ON¨[.ÛºÜýwoµ(ÂMß+EzW+Öñ\t@"×0Ë –î¹Åöó|Ûí™Óaö½øVSõ°•ûò=de>4ZYÊå3ðð-€éÝçbÌu›ØÙ¥§Œ¨:‰ý0 ~[¦'89ªðråwa)DU¼‹X¼Õbá …)·èƒ )]ù"˜:+*¥¸dŒYB‰+7¢\Eñžù}­–wOæ¦×‘F†Ø~‹BޣijŒ³yQurš)Tyž¶v”j&Ù\Û²ÅzÜ:¹¾æ²,ȤJ uë½Ç¦;BážSžÚ¡´ð£H‡èHWZùŒkHÉvjKÜyUÓ ¾»‚XOUw 5¿†Dµë$Öu ‚Rþ-?Æ)ÆÐvÖÃÌË­Ï;#/¬³·TÚé”Þ…ËÞj ·!䘛¾ž9ê‰éØŠ+ošñ×׈s;"pQ\c±k1JŽV¢)·mþÏ®Á=2-2­dêml!˜¤ŠJoîÌw#æ´“Ý»õ Àæ òÄJ¢‚H‰¢¡ÌÙñ³oô6#SLuÛ¦ÅB{˜–9ÛlbÛ®pW0yä"µžšÆkìÊDžø{Ü35܇ԄæMÒÖHsw²O3¡#|¼å!o”§÷ùÂ"B+:Ûá@Þâ¼C½¹l'û’©à Ò[‡éHQ2#si Ñùçí¹#rÙ„ìýÕüâoû¥‡äF<üá]Ëíeë’-¼Æe¼­!Â\¥Mwêuš2U—o¼Ž°oÜ;GÎÒNQ*걺ÑÎ%’ÆVN÷imÉ›ÞÌŽh'^‰‰ee,ÓÊ ¥Ñ€GXå²á™é~žîÜáÌ—Ø‚ ü8/zŒ68Hߌ°yJ ]>hY1ލ,ÆÕr:,߃V6Ó§dó´TKÎô3É‹’vüù!—½í…¯µ|I°I¾jZÝ-6.<—n/àFO‡ÙL'îú©(x±c¸ºëäÐð·µîÝ æNc{ø3ûaÛè'`Þ~P‘ñ7¤ÅïV›¦4·™únSV>2fšÒ¦Lp!Øm¶[…2‚û…âkzy—h÷†ü*Íïñ|õ2µÍñ…°Î4ÌK­ü;k:úý[¿C£‡:‡y¾o¥cŠõîjüa@|³¿K)ª†}µo£’mwx©¥Ë² æŸ¶˜‘2-7c¬ÔY"ž¯¯É7¤kM©oöƒúöÁl̉Ýãë3ëßWU}\hÈß`U> îóÊHúÍ2_—½-ÈÞeJyp»þ±ýç¹ &Õ°W]}K·#Û}Þ†.¯*±Qv~N,5ÂÊe„Œ=ó{SÖû°ˆMYU=\s\î°#}䊠M=¥Ú {Éø&(Ï{µY*"øŠ¢EØÌrzûSæ3úkÑÐØ.o¤d¦ç8ÀõàÉ€Ÿ;2"î „{ÁÐ ©ˆ`êG¾«ìX3á—çü1m4îÛ”o×öf&üÏÇߢI²XÞ‹!øï†;G¥½Äíâ°GáþV1n;çåÝëíùÎöÖ*`›C<ªµdÈW:¬<е”“ý Ö'°6ßmw+sh·gu‘»å”$ƧjBmƒXÏIFÔ·¼ïþd²Y{-ö®é£¬Ãð€ ɲÏÁš£ã¹ª¿>³¬aËúO’éâå á4Îr½ë:z’·%åí2aø……$- Ëê€ø<&t€|º\ñ2j&­@dˆ ötÈ)w‚Ko»¡h+Ýi–’ûf³ûÉxàðn±Øï¼ßþsä%<À6âW¬’‡jGÍô¸6*Ûg]åÖì´ú«Î„ÆWD—ó'ߥ¥í ûÃ%mÐhâ„¢³pk{ú¶#ƒÚc;òâ3ûd¸»2F/3ÓÛ”H§¹œÊbLS‚éîŒñD4ÅeM›ÀjÃkº€fjªQ+¬zZ ƒy–kƒ!X6·’DÏSB–@’‡»«!¬'#ƒrœ‹ãíi~gÎùJ¹Ü ¹™ÙÎ× Òœ¡Í»v?e"Ú/ŸþE§»ò•'¹Ðž=ËÞ²ý^®.9; >ÞâNä2§öRm>¼‹K ×»d¤–í´º´î!Sµ)îú´Á æÿˆø =íêˆÍE² B¶…ÎûÎohײ–x½ +JÓc¨´AƒB¿¹æ¢t4W—Zíâx,Zý¾èÍ`dvvGi@-ÇÔ*9¾ãÅ{PEæÙa‰¢‚Њm>TÅ^lä)!FÃmÕý-«+Þg»k$P= IDAT¬ ]%•C•µ$=ÃI‘>X¯L ’Á»à`I5ß·Ãb†ýhDÈßP®W—RÁ´bfõð.DŒBS·Ú†Þnß.œ·¸K$cºbÜ÷R¡ ­k³þú º•õmßV– "á(/öÞ›7r„lóÎú­/æ$«ìÕb2©šñþŽxûZ4ä­ŒþíÆæooB÷îzfÑ‹XärÏì¥ûê°Ü» êTÝÚÑú²Öß™éá{ä[ëSfì¢Òi€¹¦š±Ö A4Kfs&¢èts#©5ˣƀµé6^Ì/ˆµûiF„éµøŒ )ÑcXfoÿ61u èœ$Þq*/§·Zççßœ)i%"<¿ËÇ—ÓͯFË…r­;¤JÍáE3Sß‚ˆ²•–|¼ÆT–D_ CÅ€hË\-£d9šï(;Â#Ë:ˆq¸›l÷ )†ÌâyüsâMûú¸”lУ3ÿ†<ê~'L²E>_“Ó¼U¼é⮫¦7šˆGö8»_Ù4+Û}3Œ^k¢LˆØ~5ç®Ñ˜nM¯h䈬+ .íҹ݊c’% DÍf{&̲ª‘Lg¶Ÿ ñàÞÛÆýr>h!V"yø©yÍ}\(W€ÜwØûB`€#‘|ëí°ß ›¹Â6 c$Q•¶³ßBÞ@ŒˆÛŒÆ±ˆ¼¢´¨]£ç¨Êö”c·ÎŽE¥‚nrù¦gG lÔ› êÍÆ¹¶R×ÂB3ŒZÎ`qZÀÜå¢oùîyešéÓe¿î/ºè¯œ]ãðÀüÞÊà’àoYwë£x«Ò{.4,Ë ˆ‡ò2GÙvNÜC3yQgÖÊQʪѪè; /F3’.Åþ¼ôÁõfnôº"»4”‚µè[³“íoº¼9ö3~ÞÎny„»Ï slÄ„«ô#Ü·?Æ\ µ?-U%°»Ëªê#Ñ%ªí’…’´wße¦\ýSµ,îƒæ7t§@Âó!±Æ#E«Cp½Ÿ:oçÝQAΆîÝò%5¬¤­ò52Øå|cÅôv8eðÁÛ@jhx°vÈr¶žÝü©-Mr>ð‘;5UýÑšã­ƒûå¢,G.iÀõäuñÉ€ Î6 iÉaýêÖ’³רjU¦¢%‹ #¥ùbû6æÝ¦—¨îå‹Ý^¶egÿ¬<+ÑRËŃ¡'™)m%ƒJó+”:ÚiµX¨1l†íuÏwÛ€!Î2ä‘»Qq EÙXsaô޹xPöâ‘J!:÷2QáôÁŠ;݈BVêK*Š ꌥ­â­U±Ñëò`ä2Höû¬øÍPfŠðCƒº¿sƒzSôúà“Ö ƒxS7ôº<Êq1ßw—û,þîT3EâaWØhJzo½V¤<ïSÚ¢rQBÈÞ2I.àG™pÍ “˜!é„OUppní}H- Æ6*7CS¼áoR¸Ù(å·ÊVÛ"Ì2fO!଻’ SjÝY­·¸„¦ã¢¹| 1?6 w¼cwD]tÛŒú%3Ã}r×. 7ç¯ÚŒ„‡Â3A0ãøçÿ?ÂÎmI’$9®¦æžYÕ;³ c–QŸ“ÖG%P•®¹ñ:€¾úÀnÈ+G‘Yäª5OpñÉ%—áâì­ih‘«šû QpþÎVþî(´Úžìʳ Äø#ÁÿÓC¬ý9½ÈpÎ!/êÀ+ ørósAe¿Ä|¶q¯c=k‘µÖ2“³¢þÀNêpç&+]ùqÊ9GˆÏ_k+D;›®DŒÖZ÷XÅÄ;9-§[=U&êÿù²`špú«e–ͧhLØ®6=µ/‡˜-–žÏgÞî´Ø $AÄö=ZÒ# ’LDÁNAD³’äBÒ¦Íå-‹fO®Y!Ü‹cΗKzÅöm¢˜‰iùÎ¥Mdý—.ŽÍD~eæŒñ;ÄV.b¥kæTµO"ÀA´ŒW×&&ªz}yÖk=AØra"zž§£ÍoŸd„wqß´rgìd äsnÕt©rYœn—2=#` =¾Ì–A8áÆd¯‚ÔºŠ·U Þ…Wå)Ïáa;ª[9·¿™l³*p&Œ›Aë0÷oš·@þxiàU©Â#6i7!Ô#Ô*§š$T8Uí|Ü»O/"b\ á&PϬʽ$MMb{5c,†¤Só2ëpBÂú›fAÍÝ‚è Õ´Ó8 ušð²î«DÉœl›9Æ8Oj„äÎÌ+Ä(ž™$œXLÙqX0Q&iuËõ3Ž·,ƒoˆ2LT\”Qt€•:ôvÈG´ì "[pÙaÃ~,ùYЦÛUÁ™Pµó†âD£޾] { mÁòÕ0y!ªžkjþÛNÂÜ«*Qö¨ìÔ!ó Åç¾ó\eÊ+P«È‰‹c~­…´5§[xÄÌè$ UØRáŠÖ¿t7">Ég»Tv_÷Нä÷dÆø¸oCçg²Òó W©]9^¤ý0X6ÛNp&}×GÄ“ˆa‚¤_WІmòy)±ú¥ñB.Ð'Îy+T`®Öæy–D8Ý¡ ²Iö—­¶A;…R©7ÙÊí”)I/˃äX‰‹È·‰¢ŽÖÞž\q|^!´Bgƒ²¹ÜÒ»Ór+¹¢Û>f˃%gtbûÂÍ)‡\«íç"òiÚèœ[|‚è‰ÙgçÀìÔy×<‰‰©¨'ûµÀ¾®ÝâZVþ½…8/ ³ŽÀKÛs´?Т7’ÝÓ¿€ SrµSõ‹5»ïƒä ‰Ý Ü­Ö¬![k\Ç};±§®—”E‘ÚØo[‘»ÇÀg!6áU¯?%®€˜œðºH¶s’%Ëüá€ò£J ŠÔà³l©»¾UqdºâÂTkò£ë´"è{·f`¤ Vc”¼H£ÁT}÷¥ËZ6†hß D*Šƒ–¿ßC´=Á[¶&ûy0Xn²‹ÿ4VÊÿØ?•½M¡ëeç˜tÔ¾LÎÇGÞÁY±Ÿl*j°²ªàª„ <ƒÿÕœóñОkðŸbž3‹ú/.f˽\]†»Ù™òšQšBJDšýI‡º'Á\Ÿ6Þ4íø\K‹´„샇à+b÷í—³éIUÐÞÕÔõit¶²^Ç«Ó0ì¸ø'\„D„šg¾9¼fÊ”àãñð$ 2z‰ЊP(C϶¾–N˜†ÇŽçíâ´R@·Á£™ý-AÍq…ËD[¼û[kCUm-.'!GÚ( ®PôÅöÂø±¾ŽòJŠ×ìB»D‚Tÿ¸ž!2xg>F›Õ³ÝÛx4¹ØxE÷ÇÎá>¼L3÷ÚÆ?-¿„_.=ë3©¡¨¿-ªÒc@Ÿp ­Ë,µ–H¨ýpê²RA¢Å³eQBfx:ÊÙEsSóŒg…"ep@sºm~®gìšdÒxVÒÖZzÿÉt‡¸xãâ›Ü Vô“¾KÔõ¤~ UMrMF‡”èšù#ã nqòÆ6Ÿðeˆ_%{[1"³ÑdÏR»©ø¶Ë{? ]¿ãØ·ø!ÍÌ–‘-µú4­tk˜€ä6b ¯`¾NÍûæÆ¿?ìaÔʼT͜ވÁĺd¸®ÙE’­n³ínœ~Ô“ÖkªË«û|ƒ–2­}Vjý 6mûR§=tFœWø_d5ÖH î’ro¦ؤ_H•¡0¶J í[DÍ8ŠPˆ¶îTE {|’Á¬xË¿H§÷¹sîüëJ¥ß“š  ˜k¾LdÍpKˆ.¯3G é]ûIrè·.e&%w—>–Ò;Mèò‘˜€Ì:‡Š,áæõ2ÒEi7¯(5ÔÐ%VEfƒePW†V|ëȪb5yí–©²s ¶À‰ÕR7é©eêO! T»È›×:=TnˆÈ( i?ƒX—ïKNA:§r:tŒ4¿÷ØhÈÒš"¼\^ç‚6sì0+%Üpâ© (¥Ž(m[nvM«‚uʳ/t€Ñ@±á<,WÆ3¿êÂèÚ3­]m ¥RÛ†6§Î›ÊC~”4/;@Ê43¸©k-AKò=CM/ÁC¯ÞœØµe½¨ìtgާT&×"ŽJ»ÊBRë¾Zfà]éÆÓÅN'6ÍP£©c¡D¡ª‚ ±3h] %y_Å —ãeZ‰FHȆˆ}"¹­¶·"sε–G·%ÆÚ xáü‹Puªñ¸«³¡çËÛÌI&ªÜ¥ÓÖ™Bõ˜`‰˜fm Õ>ÙÂN’<ƒ"0[ŽXÃIÿØŒ± ‘!¢ËÖå ¡’«^ƒøg¡ÉL+ù°)fÞÃٽȉGðbûÙdeaæRØ–¥×Hû@£°Ê—„¸ÉrJ;|A¡˜ÑB)‚”ieŸBT^£Ë˜öiƒÁÔLn¨±ì™ýÎg_&aH 6—¥z´TÓ1>ÃVÔ‡ -#Á A‰ŒÈ Ü#õúá4kÅ•¢I®6¬3M¦šæÜèÕuÒÅö5ðÕÊÃãëb R`…Ùîã†{ÃD;œ³UJéú+,CšIê7¹(¯¤¦|!n­ÀîÓä,°óµMU'Öá Ía„ªè @—"XõCsYeïÀûX%T–9ŽÛŸÉS³ðd `o,vzC“MU·¶GäWSž¬„*sŒ¡ši¦bFja× ¬ ŽüÅLcFþaûÐ ª5±Z&º B*€:¿sKcz ™@QÂH€ôPP[uœ‡$ <©˜?ŒªC úÀàÄGÍíj3j=§;»¢µg˜X?ÈÆrZ#Jý‹Ð:4ýº×HÚH°IËÝ2´“h3Q¥®jqüѺ›ØÁ‰%5“¨µˆþ…_¨ +˜Qj4¢eǶôn—qù½ü?Y¹?‰Ç{dõD®![ÿÚ" „e ¥¢ì]QDË.Ц½’ d¦ìEE¥À:'­?å{2!öl)ßû‰.-/CvMVѸ„xÓð,@„3ö¼¼3ïp"?^¬`)dF œ×6£,ï¼x”bŠýṲ+0—e´NnßzŸöÚX±x¿~'¹q88ÍÚü,3,-÷×¾Fd›´/à¬çI@*»ÙÛëT•ü¶f¾¯Æ ×)$>›{Äeâ,Rìkkø‰_Y*sìH¥ò`P!`Ú¿MNx^;Uäƒ2¸ ‡T‚~š#¶•†ž-,Oºª"d,)r°fI–k|±/̈/Ö´D[¬FµÍe»CæóÔGú<5/ÕtÔ”¿«:Tw­»÷>À]þë¨ÈH4²ê˜1¸Äÿjà¶-¤okº•ßwÅ… —P‰'! Ïq­•â…•YÎP—Eú`³®Ägìº@°ä’^­9:­ôµE5l ÒÅÐR£ÉŽ£¹``Ÿa=i@龜Zþ^óÍ‘Æô~MeUЗ¥¾”X¹\23÷¼6Ovߨª=p’™¯¸­WÆj“)ðd”¬¢'&=’Cj™â~Ùlj Ö—ÅÚXk™­ýXG nû.¶¦Ký÷/_1ïu7²o4]‘Þ6ÖÖ+·\iµÁç©^L¯¥IWÆà·ÍPy<ä)] Ï\V®µ5^ =6saó7ޤ甥6©µ!·4M•›ÆxÚGœº4ÎëEk¥Ø$Ä<‰)NJ…«Çá&ˆ«Óu·:¯—¤'1„KAvVwéj´$‰é.±’Ã]6¥±´±6§þ!…’9oÐ~^4oËöÏä¤4 øÊÚßWîË?ÙåÒw ˆ3{‡2–eÙã–òg—{]ó "Ñ+}Ó^Ý$¶ÀEžS•fíj=„»þ­-ÃVþäšÅÛ+ÍË-#¢R§ƒ'«ßZë6ך¥JæŠE£He¶ÇM¬íšä_@Ž¿»‰@rÓBš`1ƒŸÑ¬f¦cBàòøaÌ Á ƒŽ¦ae§3§¶.;×±7$gGäNØFÆ`œ6îŒ(°8¥¢D¥x¢/àqŠ/aq^&ÆP>ñ7 ¨FDÈUbkíñuW¢_ú㫼ꥱC öñdÉ`z:ª4þÓú¯Ó¯y-;ê—÷:ê”f,½¿Ýƒµø~4%ãtŒxžT ƒˆïw–q™Æ³l¼”ë|á.zÇH ¦‘Cä@Xs¤h/‡E,åö‡K÷ȇÖÿ ëò·TH=ýf(™Ëæ˜ûíûcø7k%9lªÄОGÐÿešÛ:´–E^ù-¶V· t8„RV'‰¶¬F©•#ä\!Çœ9x¾ÖH™ ^ˆvŸ¶.§ÙY—Ìä¾ã⃈ÊmK¹>×ß(ï÷jë<1^ì¨í·¾pÓá«CÔÕm5÷HÔ×Þ,·E(Á*é2ä‡M 2XWÄÃg›6<0ö$pA¥ÖÇ£Ï8ù¢ÉA[¿üùgm,!â»”ÌLó¯pÄÇ ¿šºÝÉ{m3;é„…q1±IÕdqÏ,ÉÔ—9dm¦Öª•k*·NÅ%©»"cò{½àúŸ÷¶[ÎÃi;‹5ñrBýdq ‹´˜7Â2¢W¬¡#žÙ ‡åײâVçBQx™ãR_‡1òR¯êúó~ðG º—tb@ÜP¸©­‰ÏXŠWb?:‚n—ôenk>›&^€ˆÆjÁÊÒYÅžSD\?*¬Ã $¢ÁŠ"XH¹|<“r²Œø/GÞ®ŒYHþ‚Êãàqwö³Å%ö•gC,ï‹åÇÍD e j"Õ¶`V®4+•ÔÏ)ש¶<ûæ/OÉæ9è «c¿Öê»$¿žfÖgzgÎwt„~žÓD69þ¬}¦<½ÀÍò÷̳M· ¶Ðæ9ð'3O4c%pjd;Mñ¤Ä9Ž®¯ +5=kD%”â¤MM+fªÕ~Ý—±,*'ßJͲ¤Ü [öW#ké3lv•Q—¥y†‚éN£M袭§ô`Át¼>¾c¸>9<´Çêm*Üóâ¹»,Ú=*´Õ`ÑóAdÀwžÆ#ˆ$(ŸmhüWc”½mÕ ˆ@ifnþe$ب'c¶q9ót‡ª­€RCU–2^_ÅTI³h!¯JS71ÓÜ&gŠfb”„õÎù]²–ÕB´ô«)Oa›nûsì'½ €¸iñÕ¤#fÊ[¾ë…Eh(ëªqm3‡²ÉŸÓÛ—p!4Ê6t»8s£6ی̓–™ÝñüÞ^SÓ(/{­LwAs "©'ÁFï@Cß VuIi;š:F‘Nº‹S[7D(oËuª üR‰ŠÍeº˜Ç§ï0$V°E]ïp–{¿@ ˉÂÞ·*ï´êÈYÓFÛU^ÎÍæ0‹?{ª‰ ;žh \$4øãƒFñl>¤äE"íw±† v jÀ0i æ“̹0ÉiFrÕò¡TÈ~Õßðk˜€H Š¨¯ð­SjÂÒ’Ùó!h¢ÆÁO~¾ªÕ+q„›d0XÜêe¥F¤‚¿¼Ãþ}ô]¶^²½ü/Q[9•à=ßFYϲ‡$ŸDUÄ–äÐÅžŶge¶¹ÅsS#¢ ’Ããs²UÚUcþQZ éfn*e9‹$ÀDYR¤¢?üH"kÉÉ‘Ü#WqÚ ‘©=Ä~Ù=*™Q°À^ò²f”jößìxß~ÂLÄ>h¼¥ÕŠ&Uéœv)¯+ï3‘ØŽO¾PÝe§| cÞ"ú/my RèÛ˜š Æœ>ƒ‰dO÷ûQaÍbU.š*‰¡—ô(¹Ðâë~4¯êî¶ÒåIz)FÙ»Êòm1†Oã¹í&Í-€RE‘&‘ë ‘ÇÖ° ¸c~·Fqi¥É:ymål×óš×…åÙ„Ú,øý3ÝEÎv˜gªJS-”ÓÅù\fËLU§‚±Jp‡ ­ç¿Öo°‰Mv"º4¾§ìKòQ#8–¥¾-ýãhÝAÓh»*)V´‡{©8"ठ³åo8ž«wÒIgÅÿµ Њ®m®àŒ}}i™Y{l…¶k3[A2I“Zκ=ƒÙ!Cn僪SE›/ çvci”4 N‰kæóu’žuÕŠŠ(›„3ŽÚCÈò51ŢT@,^†Í={1œM0*²…LØJa¾zs´7‹9ðÞÚfnÿM"!]rQÝV`ɰxsLƒ÷6GD¡12ó‚+ër£™‚°±!âËŽ”>¯TÛFmejœ×ZšVðˆ†É „¸ æ²%äZ‡cš™û “vVÜðÂímÐiˆ”í©î]ç¹!Vßgkž¤,÷<©6}¤óÏk0_ä§"ÒÄ\­^O¢c1žh€9 Xä7iNžJ¤ê&õLBNU‚ÆôfGCÓ½wù­¤|ÿBœÚS‡J¶ÎÜÊÐ o¯ ´…ì2fÁ§¤î3U„¶Û Š:7T3 ¾ åöíÝÛÂ>n‹G¼Ò!Ld@7’ŸŸ__Ç÷O³mëÚÕO°8fnKðPó:.;)7ó*[.õ!½ú8ؤsDð);‚‹ñ…]­Wߨ>͵e¾ª“ êx<ü¼^b1A¨&‚Æ¡{VWijº”ñ­Ž›(¸ÌÆx…±bóóEû˜ƒ1f©E ê?®M\å#Ëñ1ݱ´ Åm ½ÐB.ÛFšð ÅSA[+ ½–0H;ñIiß >yp8å0:@‡¤¢7‡ ëh‘Æzk‰²¡£Î%”ÀÏíÍ%”êÉéPÈ ušGË %a€Œ^XyýÖEz3àÎffF°°,~=>¿ÿüþý»l1¹ÿ±xAiÚKKîG ÑŒ#åó_V”~¬½¶¸Á_§ð»EheëS€.¶Ê_"J‘¡:ƒkYÆH̲æô»bÕ¨\ RØ|68uÖnò"õâîp~× F˜C]Í–ÙeQ­ßžÒþÖÐyÈ—Š`¨“w0]‚ÓÄW^¶4¡&v;G¦V)FÓ¡¥Ø I N‘ÄÐáõ®F½'‚*AÛ2Á¢)äýtЪv`ž¿fg{»¡9%ÜLâËkJ)¿kI2pa;èã¡ô9Ujˆªe»å÷Hà8ŽË„÷²0m/«{¯æt»WÒºFè‹ö$¤Â4Êö]KǸ’^+<Yt’+7ÂWÍu,-NªEU÷:ÿY§œJè¶Pu2ÐeÓ÷*X¾·ÔV«ªPÊ×ãñýã·¯ÇmŒŸ~þùíím`|ûö>†Ë£Ìû¸(„ÑñØŠ‘cS£„úlêîWüŽÊ{‘¶°¹Áì9žýä†ó×·pZõgÏEö†Õ[OßÒhx ^C¼^¿lØõ'IËÖd‹,Mdx¸âq,CffzÊZ4òvâɹÜ ß+ö›‹çO­ñö#óì…ÞÝ0Nå°0ë '“·ìl€å€÷YS ør\.kùNèuã§^7N(`>&!.s !_ƒÎÖÊí sŲ œÝ©ýü Ö.óôÛõáôq<>>>¿~~~=îoïóóëÑ¡y|qQ¸ÌÆDŸo©¥¯a+º‘¶fµrq+êìf€”®µÞ©“Óø[‰òwœN :‹ƒq~Bø#%9£fk·/Û‘j^ëæ®«Å¾V;=ö±ßOº§$€H[4Du¸ [(Zú?/*²hóI¬g¡Ö9½„¼®8Íkz}€®fÊyôÉ$¨¸øÖjœxdm\L)_•ï± "CǦ˜»I®?àEàK39ChŸ5zšÃõY%I¦o;5ñ>ûi¿>¿ÿüþùñ ÈmÞÞn··û7¨dDƒéC[.ÂØ´‹ÜD. ’jú7ÜXžìmҖ漕ä5w&rG¾ÆÀZ›EïäÕAÄ È„Â–9¥“ «„?¼­?(TË<€¶XAnYyæh`g¤Ÿ…Ú¸÷BìÁ°%Ú„¤GÄ?æŒþ„Ya5ÈXœÞXK.cˆEc«>ÀUA1œ=ÌòƒXùúíÚTPšÉ2XU(”1ë®:scÍ®€j¯¢IÙ_ 9 ÇrQ ´µ½ÛÑ-{WaaèÊ)2º/DÖ1e›Ú"·¤çøôÅøùu|ÿüøüø43…¾Ýïoïo·ÛmÎ) npIãòÿ[¥)É‘2„žäSæmòmêo©MHH¬‡³ÄµÀm1 ¨×PgV Ù`.N©ÏŽË+G×.òë8¾¾þññùu< òþööv¿ßn7·?Š,¦9ÚÉ–rë‘Zr]Åà4órlÞÏ<ùý3ñÍCwn­ ²mç½ôg ®„\X—]ŒØœ„ê©§À’6)2U ¨yÚ?TÚ£5 ”À°# jW@™¹½Ôí…}ê´“Ž]&*ŠÞÄœjb4#Ôü²ØÅ‡3'Hšþ'R´%?¯mË™E×ÖÈKØáÈÔœ•]ý*£A»ôÑÊe¼P)û’t­›–¤ëeìö~'3’Í‘ñXw©|W7àZ´¨mæ#¶Zªö}¤îÞi:&¥“B›ÞÔèl¨N’Çq|~ÿüãû÷uî÷ûÛýö~cbS*@ ÒiúfA…‘é%¸åxʯÁˆ ©Ê¤(?»Ñ²Xä"§þ¥|–¨—#Žf­5ÒSå¸ò* )pH–’`zµšaÚ#ø˜âœ}HU‚û&ùFv^¦ÈËAM*\¸–uGªˆ µsÈÛ„ÚòšÊu\Â=:܆r iºÝ{KSÃûú¿û+sCüŠ+? ½ÿ£1FŒX6 iðÛíÖe|™Âûf9ã"xy;.¶¿'ï]µ.z‰w¾&VøÇ8‚4„4WâÊ+dâ³Æœ·ãqüñÇŸŸŸ___~ô|{ÿv¿O ZGJ0Wµ¼.sff‰B2ap;œ±A^7¨ü8],.ƒ„¡&ÏœÎÍj<ƒ†öæMÍQ âZìúv—1MXäGÓò™#;üÌ‹=¿1Š¸Ã½\ ÓïuºByB“D¢©ºDô8|½‰HrMª@Ǥ‰;‚IsÉq-yûWük>}R^_¬Ï<ëN;p‘ÕÉØhöŒ}þŠ—}žDí1§ö!k׃Ÿïí4¦S,éixð^cæÓ^Ég˜‡EŽ-“]ôgõ]7ß?~ÿý÷¯¯¯ã8DäÛ·oooosÞ"m(ý n›©éO­ÂÖ2ãÒà1Ùp{ÕI©èÉ„Cõ=) ߥàGÛÖ‰ÈFyIPn*³wÚQG}ƒá´ôòaH,NƒéÐu<2«S;Ö¯ä¹uY©^k¥@Ý7©%ɱøì†@:|C,wsÜnóëkù©cd’êh‘‘G¬FÑ-$]3:8ìÁ˜‘Æã°eTº)Ê.¢ßÏ~]ÿ›'6ÈNèÞO³æèGõgø­{°këO1ÿ†úR\ÂÝ“dÚêpËTë-;]ý1³úÓmÊÑ3ÙÏþgikYr]¤¿}YÚäþØ÷?¾û;`ÎéïLɲYZY?úGèZ“Erñê‡%0ùîšëRí8j‘T™^ÈðL­’\—üÒÃyD0†š‘\Ù.Ö7Bbºþ&DZùºÈq_AË!imY`–)Ñk±mëÐëõž QáÆ…eð;Úw ¹Ô‹cÔëYë±S(œm)jHY‘EŠ`nøJ}á¾2£Q‡Î9nsД¶ÐêàEÂsýS¿^¦ÄÔVÞ¡x—ÓºFVF˜³©i»Ž%ÐNf–¯Æ™§HCZš‡PZ¶ëõò»­Œ»J­O¡3T C7¢Q„‘cŒ¡c-~}}ýþû_Ÿ_$ßÞÞn·Ûí~{óõãh—è‚BÁi²夜èáÛ7Phðœ—Æbj´•RTûí(Œ¾ØÁµŒñaèb™9ž×ľ}ö·ï£$úð.?<¦ˆð ­åünÁ¾¤’?‚­z»c³¨8%Á ÚþYÜ–ìÏí•*,lÓ„ê&57ÿ€\cˆ[ð!T¬/;ÇZ+ݵ§'©7—¢å9SQäÆtQà_’Øò›¯ÙÆ:Kï¼|Ý·ò”ßýš^_CX©Í•™0äÄ=åXÛ”]j,¾ì@ 1»\_\;wX‡(Éï_ï||}~r™ªÞï÷···9gMÛ FkŽÐk„¢Œ Ža{a!Èð)s¬›Î™=c`Žø ”ÝàXùÖÒ`ÒQ"²ðasQà œ:š³thä ¸Í„Æ.P?3µV݃bûCýÕ0\ÙŸ ³•_€^@5µèÍX¼åYÏn·(ý4b”G(0f>Ï”‘èÛtôºoV!/[çË pÖSñ9&Åõ5/·4O×Ï“´†ä”ú²Ä«MN…U±A’:ñiÌ]Ú;0ª~ìúײ™ …RM„zÇÈ; -½X:ÆÁñ°ïß?>??‡ªÞî÷ûíþövŸsnß|“™")ѧ°{¤j8×Þ¡š^Ж?t‡OûN›n¯|(¯¦V†[Œ ?Õª×ç=gCVqG#ty6£*<ùµùÏ»‘ÈÅë7A&f.OBv/ºs!òÜù‹÷Äég#û }ÛÈ9*r+5ÕAªâsªµlºæþžT©Š‹ÿ„/À¶/ÍÏ÷CçÇVÈY<š\,9á/ªZ½` /7äéÆ3#Ä"±á„ƒ9 äújƒÝÎvJžq]OÌM[JnyεÅÏϯÏÏÏO!ÇooïßÞîS¡c0y‰˜W 8ÛÜ_¬e¥Å.§·þlOÑÕgbµ¸§«’:$×ßÝOÙ1èT­.Ûô­®…Ò²ÙqÀ3\eíŒ f…pB™  ËNtðö2Ô`’È+mzñálii Õr-»‚4KªïƒuĘNvtXéyi¤ ª0…y¦UŠ­:ù®óôPGZ_õâºT´´&0êÆ&ë¼Æt:®æˆšL‚]Û[Î’ow¦áÂpݱX>¾sÎûíív»ÝnCE3Là²nì ‡ÓÌe‹÷Û]·Ûýí~»ßÇF‚ *9Žšü¢yQ›û•qéÀÓ0ÖMŽÁ·?}{{÷YÖ™2 (Ô²: š~)í’ ˜vè)Ä+ nÿû•ÇÜvbšööµïk)IâOÌÖckq™ wpxX ÃÆíGŒ†P¢aÄÖ©—~9í5R¬ôÖ‘ˆ·2a×”\؆»¸ŒfîyŠgv‘Ë›“)Ò´{Pf\f*ë•[1ZljÂöƒ¹Y‚bdCÞþŽ]v£OŠ•R1íwìqã7ùÝÏw7Ó{AƒÊà܇§õ¦N¯\)ÆPôÔÑ\æä‘³ÑAq«Rȵ,ÿ8Žõõ8Ö©CÇ÷û=¬öqä1£m…] ™ù¹ç£öϪ>™Å,2æ˜s$8³Zâœ6x óò\*D+x¹$cvÊ騄6ž“Êqô¾or°>][Ÿ-1ŸŒâI<È—‰È ¿«¢½"Gçô'º*'̾GZ+ò~”nY,bÁÙ.ö¼bUd©.CÏ¥N̨ËÍÃw¼F3ªŽå«[…P†êc¨Ò`y0e0u@5äm9 ÏÛ¶Q*y‚O Ìí+Û¹ŸÊu˜Žïʪï0Y˜Ž(ÐŒêÈÑX "F˜.õ}í )Á­>¦WU°õñññxfœz›s&<}¬ØDͼTeç¥çÙ êocôgÙ«/q<±àq,£a ~°À1 ø…M±†NS¹[æãâš @1 "ê ÷Wz€™©ÌØBÃxë½Å³ð,ŒáF‹Sè’ŸAŒ1ç°1çý~›ó–M,#aTÔ©²ÃP¸»gl‡õöj=\ ÆÙy–?a5|š¬°ýú†Ò•ñÅ vÁ ¤”šíŒï‹ÀMòrÛÄ¥ßP¼ÒHê¯]4¾árZßb™ä¤â“„¯åK‘á1Y!ÁY»óÃHN'’ŽnÎrZ/±EµÕHðÌ+Ë#ù,«` ˆˆ9~ݔ⠲4˜–I*>¯c_5¤Ý0©š¿«xйOÄ5 Àc¨ª-/®ebÙ°ûý~»Ýâ[¨–С²‰¯ë•YµE[°Aq8·×'ŒŒ ¬*)ÞEI-bF·wˆÓ‘Âå'›fâºÉÒðì  Lí&9!{kf-{¡XßÎÏô*cc€ùÑч1)Ÿ¬õ0š»Àe§æ:Œ"s=êM Ílä<',ÑeôFEMTý±-¯=‹»,Q ( ¬:bõøeª‰'ó½&oÂÚù mè°”œvïHÙ¶T„#çRl€MœÄÌ|s¼BáPNò¥¼Ã¥”Éš?m¡•Uq¿ßt 1‹~ÔL~941½¤í]§§R×ñ”¦gUÑ1SÔ¹P‰Çï#A[¥sÀ6R—>À™ÒåŠm’Iƒ<þªŠlFPCN5„ÂÃL #ñïŠ1[c†}àµ$¾´,¤®‚õG±¤=1C«²!Š×Ûí^;³0öU~Ý9ˆ™ÂE“:l­„6 ­7J¥›Å>£³è€¡ÁÊþwŒ&ªô´ Ò˸Êu<ŽÇñð2uˆ0y<Ö÷ïßÓi鵟 2,IFwƒ«³àL:÷ÏŸ-²jz‡]'×;½+ÆÆ:°v h" Ø(ë=#6GâUâ”H 1UFô_›œÀ†W£¢è;—=a¬÷Öqasârå”ÒXkwüŠØoåvö4) mJÝÕH>Ççç<@*Q¼#oÆlYDhC5ñb»#{jV]P[*Z¼½ªF¨1<÷2D˜N.‚(òž‰Èó6oAA€ˆÐj-˜  û+´ T„ɇí-u5a„à6Gê-I<9蜾EÆA˜(cˆ¶ÐåæÛoö9€ö` dN0_ÇZ‡ÀDn2==…PÇ+€ã±þôí[©M¹,u0,gÑÌD¹Ä‰eQÃÈÖd½ ÙÝ0…íþ"/HÎÆ¡C3–úEMQM±eß·^LaÎ9VLÖ"[IO¦_®x—ŽxõkÎÌ’ÃŽ±ãíÓlwÑf{aÚ«Iä0M¡fâ@ÉDÊöh&¶¢Ž¨™ËFlÇ8ÑQ¸9A˜ó>Fûùegáˆ1¬_l¶JqÈõdÌZ-íYPõÁh¼}s¢nsÎ9LLcBÝèÚ|Q{”NøË¨ª¶¿÷|ÇP î(Û _i'²Ñ†QU t Q]Ù‘ùF5­Ç›êÓEq÷™bâ0uLÒ†ªNGþèÔy``­ƒFà ¢5sÞ+œ²hô/ŠA%‘fñ ¶Öq,ø0RíúÅ0ûÔä@ÄI&<¯ki$ªür²37¡C¸ýûšá:T®•%"‹S¡Æu¹FÊžéºmRwHÝŠä¡ÃçwÞFÆ¥C±>Îñ’1+ýT‚²¾g)ãæWêÐÁC„¦s”¯FÀy¿ybŒ±²†ócoxa=Òyf{Æ‘¼…ÂCÚCKKuÝ*s—¾xqÔf€¹ç¿ÇDW¸¯`pþ¿ÇhC±“Ò-ýEFQÎQ$óP]…ëuGÓS8ÿlÜ=ÓºZ&Gü¥Üžïü×4¿-{š ,ŠÉró)Tö,™„…$‘,_úóv{ØáO¿GrŽØD@ æl5EËÀSËhÉL›Û2¥,P¡£óFBa«¯3“Yj¤½>Þ-e°d]@ð‹Ï•áD o£5Ø@%Hå÷i}ªõ P’ݲºÇ£÷™IøKÍ=%QÿÌØ¡ºÉ)“3¹ÇV°D ÒàTpØ:LB0r=>Pc(a‹¯OÒîk}žÕæ?³ne Ký‘3.¡¢C»ø¶¦aù"K8¶müX.֛ᬸ‘ ¼ 4L¨XîË…£!kÇtseg{…&vñu\„F[z˜U{Ö†kñN ÊpiÊã*—T “÷9ÔÏpÚÐáKD=½IUï··_þáUYÇz|š-CqsÌœº›ˆÕç[vØHåc%’VîJÜÈ 5³z¼-=³š(Úv\ÖQÑ2$Ê!š€>©ŽÊ Énœ&·¡Fr-sI¸æä;J+PhcÜš*dúŽÄ( Ž¡ƒt¢‰„Élo¾£o±U_\ú K¶PÛmEÌÿd Ÿ¯¡¸yú8‡ë6dÎ9qûõ·ÇçLJÜowŒõ8þöÛo¿ýöÛÏ?ýôù?þûælû ϧ4ß2[È–­1âêuwIà.‚å࣎ïrѸլQ>?AÅöŠd$¢4T—£P µ€*æçççZ+¾Wƒ›¾EóN<3ø:V˜^Ô€¶Ù2r«R›¾R•_¥ {掫­I3Çöm™A¼K6—çF84Ɯ߾ýôñÇëqÜn÷9õþvòëëó8Àc€Â¿àÂu µü/B+œÌÚ-• †uWEÆH›7† ÞJØc÷L¶”+¡4TuŽP‘Åߊ«.€Ã®Wr Ûz IDATE3 „Çg¨»±L¡:4µfêß’Up»ßü§¶˜l *EÆÐµ8ԥДt,ê³d ¨º 6ÉŽ€Çcx4¢ÒƒÀ³²ñaƒªºüX‡O_Ƙ¤ÇÁZ‡,ŠÉãñøõoÆùå—ÛPˆ˜-`r7dl¥ßê^p¶Ã»æô•2òTÉÁ#@Ó´–Q8p˜z¼lræ104ß"2 žJ¤¦˜&:¤pŽitå[vzf+Ý`nÄåèƒîãåvÅE[¶;-)öqþ°ð¯.žõ°CBuuÎy»Ýæ-†‘hìæÄ²V’ÕBá`ÕQ¹˜)©À% ³½^iÑ©sA‡¥ilß?Ê_ìí ™,rfî‚d×èß}ð`2µêbcȽu¹¤g¹ .»Oef[”AØÎKãì둬PœÃ––¨·ô%?~†:äî/ùËŸþy¨(¨š\c.gõDxhæÂouÝžŠb8øÙ¯ˆÑø‚òÊ ˆÒ¯ŽÍƒ©C?‡ÃÃ]úñºâNwk¡Òí(\ÜP;Å”BgVp&~ÕþN¡9Eæþî"(S’,Ÿhˆ˜ÍbÒ•øSÿ`évÄÈ…4#:$>ÅÚC1ü/ ˜76ôS!\ (&K¨Ñöx|9qŸ*FÁMdÈ&úÓ±~ùÇ_Œß„ºÅB›» õqIH~£VèHäËèùr”? óoZK4I±8zBÂé¥Êèb—êPÓB˜­¹O†¸3xøç´qoªíœuºc\OA AC¨–›>S&Î,C·Co…T’¶–ÈêoŽÐe#!¯ÏÿüÿûŸÿþ&$`ƒµ«´ƒŽ=UQȱŽm‘DÊ™aŽgJ·¡Ð=2jjçì²IØþN%÷Õ¿‘CÓÅpPrù¤%Èùªîžf¸x†P_'gT½ ¢ˆ‚ŠÜH‚äÈUy‹ˆ‘¶Q†ÁЦ7l¯!YÍ?™/Î1¨:´ôl‚ÒŽz‘ÆZ)–á¯'uœ¦[9¢å¡¨Î9ÕEÅcŠLŠ>̾ýôÓœ71ÁÍ1$dÒSE­»è¾´ª(m©à‰*|Ž»yÁr¾œòY”*PE,ä²çP_Ôªây&iðg›&&ª*þDžbÄ÷ëa¶v aÿ¹­XY-á<e#:Ï[ÚjmžT#鸃kr,ìá‘E@à€ÙZȃ:†ÎŸ¾}Ã?üYIp©’²5IGÜ›=N Ô¤¾Ä»àB²,ó\0tøâÚ\:\›‰uÛp™ûN*Ê, ‘9ÇZ)6õZ?vòã‰D%‘vXb¼ò÷ªyF‰’BÍ4Z’Q’>û«XéÀ+‘I 9£2¥.A‡ ³/s}w8³Æª?9œø,§dG¦˜4׋0]§²+”CÇýív{¿Gc4Ôb¤¶C!™øÈ:‡GECŸRÊ‘Á0ÈEç~¬ªô_‹âJbÝqšýò©ó§¬´QN-’\óXË ÎØý…O²Ã[܇ËõW_-eQX~¦`N—‘CT!͵¶õ8'–qHÇEîs¨¸mÞ¼:µÒ·ß2T¡2¡SõÛŸÞŽ¯;lP$íÅSE3$Wù²Â9ÌÍ îÉÕ)ùSÿ–€!ÃbXæ ~E(YŽXÝNMƘ /œ±„öÚÄ”\Ut ëè¿{>§YA˜!#³ØK®?Œóž“Æ ‘NS­Vÿ½ˆ2•‘þ»p¨ˆ©~5…baaA óV3Ys9àchWØ Æ¼)::4âõ4ë •µhµY©Lˆ—Ô¤'Ì”ªZxÓdJ˜­œjŠZïŽWQˆI1[¦˜htÕ 'sYÞ•RËz6ªÿ”“F£e.…—97eJ9ƒÃOeõ0 ±SîCRc²¤ŽO”Ë[…U*„ ¨¯Ó)ëï–W[³ß ‹]Æs•߸)¹¬¡ú½wøèY1\œ9ì!àJüª×ú¡‹cpÏ<°RäC u„h?5~¯‰<ޜΠ!#œÄªCÃŽÁœí˜4íÛt<¨Ê gï®#žÎr'‡ÚÓÃãt¸´\1Æ@ÒDs gŽód™ŠYTr·Š4›TíþPÖä©+]‰Æ ÏM¡˜ :ô>§KUÄM°†ÒJ¦hQ¸lYö YÀ³„Qx6ržëµ\®XÅÙq 䇛xñ ¶yC0)!2¦­¬6M±ãoÅ€®}îÔ¡–¬âÆžˆyÓ¢Ø.Ÿqù©ŸKCý1ï%F)rˆLØ£pV©B²hƒ+ƒšŽ! "†oèFj&b~ÂO¨ˆ¬ °þ~ÀºwJPQ™˜ŠÞ~hM<ÃÉS X5`J^ø€Þ2Ɉ“‰â…½ßÂÁuadÅáÖ@UèÆt¡±/Û[$0oò¨ÂĵÕsï_£Ñ$—µ‘&)üéÕ>í!’OQD&¶Üµf‘]ý"еg‚:J³F•cžQðJù×¼Æð{ß‚¢Yc3Wš¬å«ªŠ Ü³?ãÕ` …Zv£§1rÍ(3Sß‹úû–Qô™ó›Þ®q¶îW-«Ùž5ÕV–¡Ü4óú ͽoJð J¸s» ­ZøêRÍ*(áé ­—‰Abµ“[<å)f6(Ù å³u¸îÄšñŠDê‘_Ð'v+6У¥JW§… 5j+•e)ß°·#,‹g2(¶ns~òP¹« PClÚ3åÒò˜Ù= ¨NfÙŽ=KÌâ«‹çÞãÕ!‰ªUilÑ•8¢ÁĸTe Vö“´jÓm™~Ë[P8´D}aÅ…9y–ƒF¡&Â1ê›…²ÄÆTÏFdø=I\”ÝŠÛ9Ì…Ã8Ýô¢šÚ‡D`xÐLè/™q‹Ò¢xùÆ` X<š…l· ›ˆZ Äb#™ioç®4¢)@Møù…¼^ª*~÷‡ïØ¥Íèð›-=Áûÿg²ä"›ˆŒëŸ·ù[&B¢|wjMƒ”¥ý{UwÚ¯âîÜ[¸3 Z^¬ñl3ͼԬ41_j©y§é·ë z×q¿1\,°X=ímÖ¶¸ûÑ1&6í?¥ég‰?”âìd˜ëóÊüÏB9Ž›šML…Œ¡7 älœkIºù…±V*°M‚vœ½×ä™-CM(AÑR{(….sÒ ˆp åhý°{bE®T|xJ–‚f¦¶–`Α‰B6h΂u·zi~7$nk»ðM™¨‰_Úƒb¡e2ì’ /$˜{è¨2cs)ózѧHêÉ1ÊÎD| Nuuy5|³ÙBžÎo¢ûsû­-z­3Bö¼MC(Xmm‰!ºLø"Ü¿ óë/S aÜÇ>Ï„Œ[‡ ø>&ÆŸþEÕîïïß¾½ÏA-Ε_V†k:˜Hê@)©¾'n/‰´e¶wvÚ0¡,Yî«]­CÈUe@s蜷ÛÍk:Õ1PH3@–™p:}5<úºÖZ‡×`.^Ô,ÿá1‚A%¨C×±„6‚MÔ1ï·÷R(ŠÈZ|ŒµÌH¹Ýî*²l‰Å@ˆ’‚j¬ÛÇï1:4`špË(æbuÖº‰;½kë,Òe©Ý ¾¹¨‘gð,Á > e—ÊYþÙô ÍE¶ÝpáLUˆÕÏf®›‰Ã2ãWÌŸÀZi‹OãlY‡PCl _Û^Ó ÁM|«@,½43wDZó%6ºRÎ~úEô£—‡E#Ð(¿D‹”5À&æöÛàf ù¯ÿõ¿ýË¿ÿåy¿ß.Á4ÛyKe—…3‚ãW¦)"¦©Ç/l‘“.—™‡˜´¨Ä…»ü×##C8¾ŽcþüóŸEø>†×CŽJ ¬Ùr8§"lÑa·9¡´c¹ËŒ`'$˜MÉ`$EÚ³ÌÓ´µÖãXÇacÜ>mýûþŠÂ+:*3ÞðV¶aŸó÷ÂçNÎKè"%‡u ‡ª«˜QÕŦ–¨j®%®€ÜÍ{BB-ËI[=io. Ž]°*×QWCÊÉ£~Òa¢aù5SÚ™›¡ÞeýV£|FÍóZTá 7ç%ÖGqôæZ9Ÿ<J¨D:Á~aBœª WLæÞô8ø— ËsþH©ò$b¶àJ)Ê ’‡Äi_kýïû÷ϯü‡Ÿ??CÃG²„cŒ)ˆN{¿œ…~òv7¤ú¾[wr/·!-\^¾ µ.Å C#È»™ÝâX_ÇmÎùOÿôÏùË_ Æeê÷+•6+FÓ¸¯ Ë=ÇbZøpŒfÑÐÑŒî†Ð:–»’HUía´ãáÑ5Ò~ëó×ïßQiË`9ãRd쇳©è"—.¿Ð̶—¤"VÜç,í±é)Å;Áå† §HE ”6IËrÔú­$ýl%`‹®“Ôæ|B Ë·+16';öÕŸEÊŠS}bÓY­ÎÊY¼¶ŸÖºàjƒ‹·ÈUÀ-.ŠpR Ÿµ÷§Ó§È#iNѨ Qð–4/±(ÜlPÁÇãñýÿÛq|­ãPˆYS%îŒÇŸrý4ªIËñÂÎÞö—ÏuG5¥„Èq ·P<Û¶x–uñ8Öýþ6ÿú¯ÿšAWÅ=t‡X>«"\=-دë°1•\Þ•ˆ¹íz§\ZLŠJÙ4qЇ‡Ù£÷4YÇ:DÌd¾¿E¥\çÊÇ=ýZ[Û’Ñ1ú'FS |z ñÔÜ·{´^*‡ú†÷Óµ#Éx‘Eùt ¥L—LˆwqdÏ)IÙìùó{¾þþ¯ýëßþãO¿þü§¡1ºô^š²þ·àÛ½Âá£XgIK²Z5Qœâïáv±ÆZ.¦Ò!ê”$‹ '÷hQo·ùùõeÇñ˜ pnÚ ø£úÎËuuL&SÌoGiœ!¶Ìƒu¹Œpäœ7Ó†=9–9kEeG˜ÈZ&"ßþôóíížÊ;­½~FÆÅïQÝÒc›}嘙/çÉìN,ùÝr˜z= µ°P! ™üô²íÁh¦¢ ëHÂN»»ço"ÙE3††{ÉCÍÑ2Y/g~ëíN3§Ý6åëþ lnGÔs3úÒ¢$dñGÓhðôœ-Õö<')E¥w"µŸ 0¶^§+T]VÍð”‡` ©<>?þÏ¿ýÛ¿ÞÿøçŸ¾½¹ž,®mmüîò%§(ÙPÚòàヹéM¸¦OÒ øºÕO)Íþrvæ ¤eÊ'”mÞv zý¸l5VòúÇHfcúB‡´µ…TéƒÐäDšhä¬e ¾7j–'’÷@ÁÙ‘«[‚8¥žG ÉõWqÛSMfZ¤Ü|>V¼QZŠ7ïF÷”/–€1êÑ.|ê –Àe<Íltì"ª$ECîIÅu ÷ó¾ãÕÜoG*vD…4$¹„`5úK –ü?ÂÞõDzëÈò‹Ç>7+³ªHJ%µ4Ó­™nÛw·ÇmŒÿ{ÆÃó€ Ë3£w«õ¦HV«2óÞ³#–?DÄÞûÜLÚÔMPU™÷qÎÙñXë·dZPžÚ'—ÀìÆ¦—™Ãèæ3jc¬g1•…¥iÊ5IN¡E,ÓÏúO! r7-ƒŽë¶h‚ w,IÞh˜!¹â9ÔDˆh@´›/`}kJ³àL;a:0ãï6‘˜HJå &ä%ȨÀÙpè= š&$±ÕW€IÄ9 GBDìœk2q`^D£.‹‘.UÌUJÔâÙ“÷ºDB2Ãgš°®ê޽ìYÍ8á«©4N”P*–aHU"à":Di9áPwÑ´¦rhr&Ømòyëko"­iï&mã²¶gÿZÀý©fdè”D–åcl.ˆ CÖœ­XЄÓ0é«×hbàGÊ಼ڊx¥Xá£ÌŠh*C1ò•sÈ•Z ë$7¬¢2¦ðשߘù„<„¤Éà:K/RŸ¼òqŽ”jŽ®FÉßø~ŸS ž>"roj‘{à¼XÄê"þ]™”UnnÚ·¾õÉÆøäãW}ôR•GÔöཌ³4.ñ½ù8†æÏ=°•œ¡£|_·ƒH‡Š/EC†tr÷aamc5å%Ì 0ª1‰††§Hç2ËÌÜ|½é+1PÂe2X›dlç= ³;ÊŽ—Í÷òÏMúPÚI¥p´®™Dán)‰$Ô¢éÂ$5/5°\_gq¥wÊ!Pè ž+ä±È)q0Õ(?aΉÓ¥Ãq1A”VmtD™vï«Ðkœ´XÆËc|eù²4Àõ×éÜ]ØnY ü4|å›>Hæ®ÂZž‘°ÅƒìÇFx^ˆ ™Ad‘~w³m¾µ&ª*Üš †Iñ-<K‚ZQ"$kw.,â\jç9Ó¯ ¥ÍÄqwowwwÞUsÚEC<˜Ä0‘ÉTõ"Áê4£ÉçCH•£¶uµQn+¤bqe˜Ñ"}%ápY6s‰ÁÃDA:V#àŸf)ª‡AÛBj«-TMc1BpÒBOä+¸H.ÁÕP(.5å+nêâà¸9éi$ÜŸ^jù¡ùã–0ƒgáÄkvС¤œ¶s|m¬±ž4ˆK½ÁK±øÜ=_ %Yv¯ë£pjá®æcãýò€\Ý%é|¬N$?üñ.N™rŽÔ¿Cn·¨;™0˦Ìs*´¯¥ëà }_ãnŒø½Ú»ä.އª g×I;¸ÂËŒ¨¯±Þû¼µ&{§±ÖHRf‚,‰• JfËÌ·ˆ¦Õ¶×70#õkF^gq~ÊFfRLÙÜ@WÀ-RÕ癎CE˜gR‡&7䪥”ur×ÒÀŒ‡¨°Xö8¯ ¦T+ÝÑ]Œÿ»ºqŸâ/0ëÛ±_ L†48 <[ í*è[©²KP¹"%2¨0Ûi¾Zø.þ9»a—â8 Ø7’Æšº-,/º¼PKÀ@ƒ’2®LÆqXý#3ú=d‘4cGñøâÖ °Ïq~*1"ƒ(¯3ßBeÄÐé,%‡kiÜcŒæi³aXÊRi]ý%ÿkF†'Q!f¾4_ÞOTJæ±ÌRMø€¿X”©÷n[ #n)î4Jàäq呚gOÓÒ n‰™žñá–‰a´ýž:èœö­C‚õeóB”½•]Ý ‡,–Ñ6”^ø›|Ì">¨“ÔàU®Ñô¸”K@0ÓÂóT[zfš‡oª!‰s¼u[ýdnÎÓcW« Å¬•ÿi1µV^ì«ãFÄð0|ùê‰ÌîÙFWÅÁ‡,Èx¬–Û«6`áTŠ)¢ß°'ÕAx ©Åw~„1€ŽV;SÝ<îBhÚ£%äu 1²úà\HzŒüÚRðƒ@W]íÌ¡Éã4q‡‹>öõS;g!*)å8â½×[…žPÌnt½è±ôÏ1[ÖAÅfÃji¡—ÂËg $óE]O·¯< ó &a¹WòñÕXòjÈîõ,SÄcyO€£%éO¦h{r‘×çæ†ÑHµš|^äÀ<Ћ‡d\¦4qúI0؉ɶ•r#°lœ“J¦‘ÈJd±œÄpcš„:a[,ÓC[]gbûWŠ`@šQ¤ÆÞv>¬§v’«BZ!v N¬2æmV)»óÑê±æbÌ›e¦=¯ÒfF²®F­ãŽÁÊ>Ëúœã©ˆ!ë)mƒ¤äé¡Y]ó|¨ zÍã4ÎÁqý~ŠðãIŽÓ˜ N dô7 ‹sì×gTª\>éÜCóÄΪEÆÑNDY?g¨ízô­+Ë«3'W4˜Ì[ÔQäƒI ª§ATž‹ñϪr•ö6~ñÓß=‹ªÊs-®>¦¨<êx=(‰¬’`i¢6XXníßΠ΄O™K&ÌÖü2a+u@Š(´ŠŽÉÕwæRs“¸ ¸ž¬ÆG~ºœá@~(WâLÄ(ÙBYÝÚeî]¬üN :DD:/ª4XÉJÌ[ê]K€Ü3å€Ó;°8Í]F®ãt{>¼%é ã|æ!0/gûõêæé2‡ˆœ\‚&4f_41péÖ­Ãñäx Ïû07 ¾N©ŸU^ ˆkààs›Ù+ª»Ëõÿ>§8S@ÔÂ)™É±g-#ZbÏâkCßT)RF‰'©4fÊ,µlVêtâÒ”ÔË¡ù—, ‘2Ú(:¤úçá DÏAvQwU¡ãâ/þÓá…AÚÔ4%Uy#LKÄ£Î8|n^Êc!,–©¾\ºcêZ-ž›Á˜ÍG)3¥_cæCgÏy˜-6x‰,ªô£°1Ý.¢ ˜G² ƒ#k¢…1ÄZr˜Íq+*¶s>…U1ã.üYU X`ö„U·6Ÿ„xñÑ29~Ír¿<ÍÑ<æ¸PÝq¡É-®Òo¸|SÖ©ŠÌ+“€¾ù÷=Nx5¿rq?ãõ€מ$fn"ì=—ôAAŒë#Öÿ¾1žK«u轇äa´7õ×Ëty\0d¯J äYyßË\ÊcùyйƼÍ3˜.\øàEHf•QX·@/ºj33w[êv3Irt®¤|%„­®`Ì«o²N†¯~»f\fØ—0œ BãY>Š’*n)CÌ#L7Û¿€-JühŸšÿ ^qè÷"½7.q-æ0eÁ*ÜöE<&Gþ¡©óa¨ Ì|_Í×­»åâð â䙼”áW ·©XŰd¯ 31qGË!IkKCÏâ^ý¢«´^¨mË«Õõ$oµ¥ùÌá*lsŒØ{?¥€«òUä`9U¼¬]©R!`˜X¯…’-³Ô›2/8T5Wo9QJn®Œ14KÑ&ÒLZBylìéiñ9§+(«€ÙÓA_ç4„ÄÚ5[—1¶~ò6—D=š )¾ä|½õn†*¶›YOØèQˆ°N!V Å2+‹¹UÌHÖ]2#`™Š°y Џ]KÓA7w]•ƒ^KK8Aœ0¡äŠýÌ´…0Æ>rR,sôxøø¯®Ù £É¢'~쎊ã ¾F`Ù÷=¿VqœÄÜD6•hï=³Û©9@ŽmkÜﹸ,®·ˆzŒ"ÀIó!GÓTû«·TÖFÄP¤º1¿ö¤N‹PÓ!`åÂâUó\êåMøô1z5¡ZCÈ2`”PU-š$ZL³œYs2X$ÑÍ¥åÃ$˜$ z§櫹-YX½|ÀcaË€‹"{µCÅ¢#&F›­Ã2`ÏЭcÊxÞäÿ]µåCÌ]é”åvZÒ®†I5Šº¹¶t#Þtžñ‘IC …ë`³SÑÝ“„]™†Á Ëž#¯JÕã%@}uGòa{²¾Ušr·Cô¾?<<öÞonN/^ܨn[k··/šè—_~q>?lÛv{w{÷òåÍ«—/^ßäñÝû¯>ÿ¢ï—üðŸKá.—~>_ˆ¨µ&̽{‡‡Ñ½÷î@d¯Æ` ‰fηMZS tˆ ››õ¾w3s嬤‡Šä*×ruh^<ÇæçRs`l–¼Og6}QË๥2ÇšÇ\ïUæFs ¥)"¡Ï±õAÛ}àù”ØöÜËÃa¹Œ³Ù§¾MJÈ-š# ¢f¢`ÕŠƒæÃÇ7^Á¡òq–Ð]åÂæ6ßbF,•!=X©À±¨]âÅ@†\/’KLÔ"œƒ&'¤L^žq…5¨‘íhx¯)=ü³Œ¹‹›n `·¯ÈÖ´÷‘ÙüÇH$ÁÜ{ 1ÿ"¹Y¡WɳώÎÖ( _溷¥è}¤@4eqë,bV1@E 9ÙPpÕ†^2+*%Ž#Hh!#òaò0Ù¸ ±pJêhàxRŠ÷–‰(‡v¬XÌ¥@Òê¹w•ÓÄÔp%f#A^µ;@&Ì$(ý²9¢mâ äC+9Ý÷M$Z²MÅ@¸˜/f·*0³}¿ÜßãfqR~ùâôòöF™Ì:Áo¶í†fýññrÿþññÞ}óæ«Ëùáñrî½[7³~éæ m;}¿`å“J%ðÞØÛ8¡mé d<Õ$ÃlRH¿‘¹$)*µJÜÁñ•ØPù²·Kdj&ÔÈ´Êéô—^yI‚M¼öšb;˜ÙOÏ–ošlÅR$f5XR#†Ì¯3 GúRF}^[T.‡rn?QB]á,ÔQ|âB ó›ÓÍ»7oÞ}õN…?¼øüŸßßØÚ %¿“;‘›»[æ° I(£VfRQLXœØöN ‘q*´µvj§½™tÑlÝ“çŠÄ±2ØÞ½}ûï|úðàRî8H¦¿ÕÉ`ÆŒö𰢤^”Úkdy VÂÜe?sáü‹EÈ—N%®!“J ®Tȶ8ÙÓC úI”߃+…ÍQODZ 9†»É³ÏÑíLdÇÑN57–M8Ââ )fH¿ÆLƒZñ(n‘EZxQò)>äZÐ0+àÙÎsÌ#5ÆAf'hüPOûMø`.Éü0»ZÓ‡t˜•ÝWeÌZkÇ+·\A¼yóö'ÿé¿l[#CcùèîU…åL 6uBãÂ2fJ$Èa* €ªD"€»*˜E#›R­QQ®9µ³òv³xÛ¶‡ýüØ/p#",ÎóŒkn›’{ï‘É–«ß§ÆNÂK=³øó~•kuÈœ%¬´Â ñrà8F,hÔŸœÊ›¡úËkæda– ¦:²;+(uñ¡|YŒ·ÎräÊfã<Ââ·ÎÆ\ü©†îN"bj­h”yÎÉï¹Rc’!cvPØõàÌR‰"X‡ùÉ0žØ^¤™®‚Á+£¾*äÅTÆñ¥yƒ;q›¼ße\:yÆ °Ã9}F’0‚jœ–,qbè-¿»»}õú%Ì>ÜxæbÉZa «†Ä8fÑe¨œÆXõaø¾8Ö‡1½¸s®=7Ç´o Yïwwwÿê¿úo^üÉéîÅ÷~ðƒ´S í@u…ÃZ“Ö˜A^8‡Z.@ÉžX°s?¸lÐiñ¤>)Õ2øòJý5)(ÓI–Ã9Ÿ‚ÌíÍõ Y«Ž,KG(’ó”û^ÕƒÕW@‚ø‘ôÇ´ÄýæÌ>1ó¼ä€>@ (O›Iãó{¶*+fá°õÊ:wäû¡Âßnü@´‰–V.V$iùðÊg‹¶d3+\ÁÈ9*çØs.ßjm£àäìÂâ!²c¬œïT÷gL¨ÇGê•v6hÛüÔ]Ëlwÿö§ßþû¿ÿ;ßí׿øÕ¯~þ 7™Óô&ì„ TÒÇqE â ývDf½ÇÖF4¦Q\¥ËåòÑG/ÿîoÿö‡ù—‘ñ{é—Pâî¶ [܉çs¿\,ö¡Š >?äâ,bÔR┦©–'ò§.—õu–Zp„ÖÅo\†I2~"ã9ü„u3~\ÞæµëñCú]—ñ‚EF|YÍ箤ÐÇ‘†¬Ë·°*€ymŽºªü¹­4cù1ïµVÌ„Tq—~ÌyQ¯•fÌhM¦¦¥ÉHppñààó …åHYÜ+ÙÜЄ»ÄC.¨€ƒ«LLâ‘s6W,1§œ`,=iLd¤‚øP“%OÉaˆ«1Åg1û2we~ýú5;Þ}ëã»—/ØÑdä˜{¸«`¬*ž_Ǩ„"K9§„TofxqÉ)µ×ùõ26ŽÅêø“Æ·»›&pëRÑI6¯Ôˆž¹#1—2Vj:׋ÙëÙÂÇ= ž¹®ržÏçÀ8©yuü-iVß(ò: ËÝϲ¦À­!H¥±ÞYr ®›ÿWe§¢Ã0‰Ük¹f×Qømœ«U#!<à Ûˆ#])¯™ö6÷Ô¹Ì9Pyëɲ›Ô‹gêH%Ïd`¹q«j(2U5’‰©$#¤ˆÓ[M;œüJ)˜]G¡ŠˆÎñ|]|Di›ß»·Ö|ïœzw·H n1 ’ð¯‡Ã! èɃž²·q?‚Ø È”yHQiFîw4ḚQ^kV)N.Þ»íÜ`;˦h玦¬“ØEX5„JFÞ‡8’på’L¡luï©GX¼¸rwÕhE´Ï½/é…\îP0­ÈºkJ.Ïì™ù¬<™!^¾‚†õÈý¸2 <ƒ{2=qþÇHnùQ³B-8ÐF¢«ÃP¨¼ÚÌ΄•9eå–˜sñâou"ï É`—‘>—¿eØM:9£rà”XUb¯É* ¸1 +,Öù^â!tJçàÙQ’äœ.@{¥xs¸$ãôpM·aQ¹A4‰FN8»“%ç!ÈÙñ‘UZ€;9Ñ÷àB«±[Œ+¥þNMûçÇâ ˜uø«¨FÀTH™T¸gLÒÌ=Šx+Õ¦¢ÂpÛÍæ–Ö$ιt-9ˆáœÂÜx<꣓;u(èe€g2Ü>êвË‹;2%Œ Ž‘ ÿ0tLM#1“…è¨d:G¡Ë¢LË“½ c"Ç×<"t«uôœz>À±Èt¤€%˜s#´#GY„gƒfC²¾,:{·´Ý9tÎÏ™¬JA>Äb “ÆhÒÝS©ÀBâƒ;y£”Ç ‘3³’´‚,ÆËr)(ïÄÛ¶qÂo}. *†`Q Ž“Š`¦áÀÁ32x 5CwQ)|KÖy1|Ë`-ý\,c2ͲĘe<Ó¼èêýR‹Ü#Ø4œ‚=½’ð«òÆ•¬“q#˜[Â?ÈIöŒuV!e+‹8d9Õ%oÈ\+V/Aƒs9Ÿù`\3jC§’ž­Wg¾;ÉL’Ei˜!Ïy[|¶7¿H&Æ•;6Ó.žz–³Á¶(¹nœ&2¡R~ãþ­ûqš\#Û1†ÆUmµ4]ê:ó„éÜ2ˆ}ÝÕ:M}]D”¡‡@sDlüx\Åç•ÛÆÌžû–¼\<3³V·Dõpñå/#°z Éy ef Ót| e‘ÁTÍÏU€xuˆ!‘È*ž”Á‚šˆ!·b¹ÛÎ0pqŒQÇÀ2¦#Ķd\©!¦Sõâ: ¬æ$ÇåAêÜšnÛÖ´u+£WÂåÈÌD­E¼8Ùî1O‹;60C§6&-s…0 u`˜9GôÚ¼gxÚ!¬!M«>#AKiYŽ1媽œúår¡8£køj¡9®ŠŠ`x p5:_!Ú«%~|ºósSÁV1¤44˜O]{fõ/#®s!žÈ(HY&45„*Åu-‚a†j„éÃX0HD[ñÈÄVOåä ¥{ÕH†2;¹ÈŒ7 ?-&Çô’+%èíÏw¬å¢ë&"ÒTCüÉ`ae»!§ŒR „Ã.êñ9E‡â¨Âe fV͈Yr\cg•ß¾–ñ©ãáþ¾^œÑY™%"'‘ó^æSkBâ~‰€a†!PÓϱGpŧ\ô5Íú¢²©®¤¡Õ¯GP®ÿ½Ò°g-¹·OæscÇd X˜u<Ýô`¢«ÿ¬y;ÇñDØro^ÐYx~\î0ê7€š¨h*MŸ1!,î|xó²–¨dz¡d(õÛFÂæôŠe Ø+`<ÜãÓ‰ ùm;qÅ’¡ºUÀ±ƒ!Ûé÷…Wx\æRu”Ë“ß{„8æ**¶‡ €bŽ™ÌÜ—@*u-g€áSPqŸ¡Œ4ìÝűVŒ’€áBÉÒ22º¨¦ƒƒ@§‹»—\.ï!eϳn?Ÿmïà³l ÄNÐP³ˆê¦ѽ·ËùÞW¯…f'â½ãÑ ÿøÇ?–ŸHå£O>úäÛßÂn¤ ÐnÞÉâ»h,­‰*‹ ÷Yñõ@¶¢Èi,ªãÀ5-6NžËû1dû†ˆµqŒ¬Œa8@c" Øib$5”~µþäu¦¼x¶Ç?ËB»^Kµ¬kܱԮƲ1fŒÜ¢Ú„¯ÛOoÌóJ:þ]±ƒ=o?ŸiTC1,)•K5+®Å,! øm .×ûÉ ÆšN IDATK4fgˆƒ4#oŒëœ›ú¢£öA† '鈼¸ÉW\4Íf†W ôá{+ôê ­3{x|°Þ-Œ-X—pÔb;ì¡-ýÎ̮ᡮ˜2 )Þ¶W*ð`ÎçŠyï;;¤©»‹C˜¶¦Ô½ASÒe²LÏá+´Éº‹ä§ Ã@±-'BÑïˆ%Îä8VxeU½:v"Wx¬1¶%9 ‡F/FëÈ$IÖp°P5Æý |ýÞáLŠÁÅåvŒÒmQysL9GÖ"¯7O$¦@Ò3Gn¼ /±î4 ÅPñ KH”w®·Èp%·š`QÙÛs¸ŒƒÁÒGÂÌã–…LñԽiji¬›F¼a (Z4°y8ÆD…"z4L>%‹J0ž»µøX%ÑÞ<ËÊàjfÎZ‡²ƒ`!˜#a§A§g"Bl¾ÓÕÃ̪+s˜š#7ŠAÊ‘„M-s %¿YkÚ ÷Ú¡ ­‹ Û‰Lز¤ù$ ³ÉàPå ]a³o߉£¹ÙˆÐvdbª)ynu: P‡+1kò>A³¤ž¶pª9—3BÇ µk¥5œ¤H?ì¾ŸÚ w'u'!•|®ÇÈ[…YY¤ikÚN*•¤‘:Ô@볈VÞʈ£zÊ0;Ã0.JLm„ÓÀP‰äJŒÔÊÛ\Z´‡ªMH„…T©w_8§•ÁÚZ¹ª´¦ “ª6mmÛ4„ ” jùßúmä× 5ÞiLoi$´ P†3)ùÂ>šQäA¹ ý…RstUV•9–GÈ‚e êEä«*ÜT„t"A‘ Íaê Ñqsþ\c+Ë+Þók‡ oâîÆ$€u#Þ6CAæƒPÌAaެǽ-¢*JÝ„â]xõ{`@% !T“@î€-©o,é™d(V‰#.3V·{ï"|³Ý(øË·î÷ç“ê¥$½q ¡dFBJìPŒ(Î(ÊÌÓ*`2ÒJšc ÉƒÉ $*‘ættYûpf÷„òß~>¿þøå÷¿ÿ½wÞª&\L‹¸µÀ{UU¥eŠåõç\‰ž P’ŸÑæ“Ôn®e$$E’³ó˜jÄ5KVm"!"<ÓemÛvº½½½œ»0w&Ñé­ˆÏ_wbwÞZÊ”ÉYÛ¦ÛÖ¶›hv\Àk$D )âù¥3ÿ»x1ñ€æ\Âäó=vë €Íܘ•Æ%¥ƒ‘†E׃™OíöîN ¼ [J$uÕ#i†âÀÍÜîCVD”24ì Vàjø¦ÜèÝ5¹ja†üâÖÍÕY[‹ÎDcžjñ…ÅáN`v‹¡úÖÚiÛür¦­T^Üœ¢;­ÃcÉD &Ê-R4‹”_3%79JefÂW°4‹ªÀüDŒÇÇ_þ_?F7¥¦ºåÊN$˜*©`,Ö•÷Rñ &eª­ 9{àòÒÙ&J"Â$ñ?¯‰1Õ–h©@"?ú«ýÛû?ýù‹?©ò¯ÎÏÓsd¢¢ÕÍÜ”¹È¢ë€m Žã3`I‘ÊBöÜ#£Š$.ÿï¼³ÿ$Èùáüöí[7ˆ¨><<>|HÇU¬ÜœEDO§ÛíÝ»·ºÝìæû_ÿ÷/n¶¦rw{{:Ý´Ú„x™òÓʆ1t¥1zðR~Í@&,µÅe¦€·yœ{ëOCr]Pw³NLÔ>ûì³ýÒ=iÜ¿‡/S¥ü‚Ò<\C·®ª*Š%NpÇ ý„Ò!ä¸éPDï»[ñ§„ÜÝ—Ë~Þw‘öðøxéFL[Ûˆ¸[Es¢™yÛÚÝ‹ÛW¯^½|yw~x-ä7Ûvss’ÊÝÓóè1¼Za¡bQN»q†æ(«$_µ€â¡pvÚšÞIûü÷¸8++«6fFÀ•ü°I Ã'»›„[Õ¥êMM¬a(ýSþŠ< [ÄÁ#@o00,!;dáÓ‹›‡¯ï>Üß¿ÔMÒœaâ§‚j™TƒÍ•¼|šŒ”™oÛø4CLY½‘Ø‘7KFßI¹0ihϳi­5U½~|||ùêõG¯?²ÎÒ6œïEn`VinàÝNñÃþ‹ŸýôÅíÝù¼7i§mi "Rä(2w_¾„¬Åäõ0YKuì·9RѰÙ ÷# ‰GG1£Iªª6#Bûè“OÉ!ÂNhÚ@0[{{a , ³¢FEé/€¹õ8¦Y¸÷ýÀ&fU÷‘gÆH€›¡÷Þ{ ÄÚ ’Æí†œúÅùäw§›n¢­5=ØA›êí‹ÛÛ»[Qíöø¸Ã­oþðx6ïîfn”Ò¬¤C«púøB]"¤å¦ä\8øp)ó€¤ý¤îlþO?ÿÕû÷÷7Ò@­Óž~e"+­Â¦‚2wW‹ð©숃a²c Þc ¨œïw·‘JoYµ§)š,ƒ§7.’±‹*ü-‘2™Ð)3Irºz¨¢Š;²»N6eæYÎÛ8mªÐÖÊ"iªÛۯ߼ù?¿ŒME×÷‘ùÐÅöÓéæþþƒ´pÅÐâ×Ó”di”—{*è°>iÄ´0ÈkVêœ$ZX\BÎ?fQÊ ¯YUˆ‹pãfd^¾ì¹¥"fB´«2RQ´ó%Çu–Äx9$!aâ‰pQ)(%‰)¶˜>¼ß{çª £žr•·oß9ÐôôâîÖ æÆÌ>rÆ—TÆC¦q†’³¬d<¼ç¾Ê‰ŒÙá§­ý«ýß]TXUêŒÖ‘WªªpÚN7oß¾ÿßÿÝ¿ÿò«_ÃG£¹á¹¶XDqá¼úΫ¿ûþáŸýð{fÇT !¥øXGŸf3þÐ/ÜÄRË'e•ä‘ù,aìcT„x%LÖIy£êI"6ø„»;­³ø öñöÂeèqFEà2–»k‘m»‰5€T\9OqK*¥/{VºÈ+®Ðáp¶ÒNÀ‘Çô‘PÀ‹Ë)¥Íã­UÔGTñÑÝÄO7”´‚Ý PKÁ±"MDÝlÀŠŽ1€YâI&9IMEkÉx'LØvóˆÉ9¢Ë¹ÒåË^ó×xÅÍO2-r±gDì=™>¸•ÚGéÕçðÍDúH|+!ð*AZ1 ãñYqRH=÷Œ¹õÊZ_y«©f ìn}ú­Æß™.\’š]xh¥xk7´Ý´»»ÙS³‚ã3p¨³QqÕÁDÛÝíéÕ+ëg%SÉ\x–b&©æƒá€™ó„js$’¤¾ ËwkŠp¹Ì[ÙXî§=,È\h9è¯fnù²"-_5avŒãÉ%073K…[ˆžÄ¹ÆðŽ>ÊÁ@f‚ °‡ïoo¶W/_Æ+5QE# |ÈǰDߦ iN:dœFCxÈž&†EpôJÛ]”ßæâÙ£?p9ª )á;-TøX}' ‘¹9>Ê Ò{ÅÚºÁÍÜÝ@°Þ˜Y‘ôå+M‡#Ìb#Oë;95‘$ÐÅ{¦ÌÖdb¡}<†Ý $¢"nñÎ’}Ç0çpêv26Qé½ËHLA¯«GD$HOæt±Ý†®ƒ“VïG•:­Ê{B5élðKßÏûÙúY¸ Á˜™E#SPÃÌAD³Ö”Suy|xß”o6½¹¹ 1ÇœuUþûHÊàƒñ%tc´J>Á€8$½ÆóÆG¼ùoM-˜HÐÂzJN6²ÁÉúÉ(µÜB 7œU4OfçJ àclB–d•„áC B fæeï{^c!&G•û(qm€£„4E%î0&uwëN nP©)à¢õT(ƒo“œM+†n ‹wIBAŸº’˜‰Å ØÚ¶ï½©Â3Æ£˜ `bmÕ;±¤´$û¶)v§ -%8’UAªºÝlÛ’ Ù ¢2‹BµˆN§F@Ó'D΀…¢‹Îý¿G-»¯+')d€JÆ—?œä*t|…ÝDZè¯(OR°,eç$—¡8r¸–š¶’ƒC¼šÎK(ѩɅs”w9Ÿ­ïÛí ˆ˜ø*ébõ½ø"»Ï[2rŽÅ…7kH›…ˆÔ@ó)V}AѺ´mGgªzD†jˆÅ|ä‡ ¨(ÀcÁ‡Ü¹–Ma‰ÓF‘Ö²ãäñôÏçb<®ÜcqË€Ó‰X äCü+víÝ6Ý Žó~î— ‘‰»·™ÂW¸Š¨}ªzIMÕÌÜF 9-F*Ờ–v,ç°6©_"U'è–‰Òe2au÷‡Ç³›–D…,+‡?Ë/Û–op?Ÿß|õÕë»ýëM‚e.ÝázRU¾\oN'‡3¨m/òaDÄ­…)ºIdþ˜YSu÷µ©ˆh#‚YvVDbç@Û¶hüŸåítÊY wá­©jkîF¹Ú!e%Á¶)ˆÜanç‡ó¾mí³ï|¯5q(û |ª½T*w„”}ÿðõû¯¾ú2¶þûi{»µþxaåÖ6‹GfiŠÉD,´„”5:€ÁöSÑ0cȶ1"ëæfLj°Ëãåt:Ål¹iK=‹¤7fß/ÜtÓp2޵î$°0¬{°ÉâZfšŠ[(¥ýæ´]ÌÃþÙx|%ž&ؽE5iœýrÙÊüL{ß{77të7û…¾ûý(γPbî»í~Q‘‡÷_ÿéOŸ?<|8m[ÖÀƒ›„n^x•½ÞͲ´3èTQ…»™©ª’D«Ô´¹„0)SŒ RjÍÐO0Á|­m÷çýË7_Vb®â«|ŒF6 ÈG63}xøðÓŸþä‹Ï׸oDf—­©¶“™AÁrÔ6Ý÷3ÜU›kÛ¦ÛY…¦B›ˆ!„mÛàæpÕ˜ÏÅ'€¶ÖZÛÌ첟Ãzq³íf‹Y‰°˜›jwëf0am[swë»ÅKb&ÂÖ$¼¾¢ Èãù²ïFÿ­ÿèÕ¿Pb3ƒ¨gè·…µ¤´Õÿø«_ýñxõúåiÛ„é«/þ%nâ+ã–Þ»YgâÓé4È•ª¤‚èwÛ¶õÞ÷½»›»‹êiÛÌýë·_·m“|ˆ¥îiÛ6 =í÷¿ùÍÍéÀ{£ôm" (™æ”ŒbOas¨¨õ]„­›WÄñÈU'ž•Ÿ}ß©¸ænæìÌ0³LUwwG7w÷Û»»¿üÑßPB9ÓÕ¤5÷P‘êðåWoþô»ßÞ?ÜGOkmk¹Ù÷ý*ƒ®…¾¦x·ÖâO†10ŒÄê½'s.oª$00GW“Ò‰Á=Õ“4"âÝB¯,»_CUáΞ4’ ¸Õ…?Lt>‘“ß?Ü7Ec¿ÙØ.ga°6÷TËE» [>1·ÖT”è‘YsÆ)¤*Ñ4ßH»ì{ÛáZUU13ò ›uÙ÷ÊŒ€“ÅWysºÙ­wì±—‹@ãóå2úƒM7¬›Wc½_BIøâÅÆD—ó%D²Ä|~¼üæ·¿ùÁ¸5c+Én=5b–×Ï~~pó­ikâÖ;A›|ýþL`Q¦†é¾m›–X;xúÂiçãÏЈ{!Qï{¼å(sZÛBsäî÷÷QYRÈ%>UóÞ¶ @{óÅŸB‚ëHÏJ + RRðW¬ñ@¼šª([·ikKÇO‚w7É4aÒhŠÒjâÝŒÈB®äpÂh Ý/÷{™]h²LBÄmæä¼÷‡/ÿüåùþ½í„÷Ë9ëåᑊ‹ÀÝ÷J¼Yé*8:fÍžç¶²pì Tnf=Ö¥í¶KЙ•UµÅMn &(ƒDÜY%Ew5Ñçá´Äþ´½>_6Ÿ>ÖÈ}ˆŽ]s¢î&SVj#_ˆˆZ1Ò²¥i*æ´‰Vì¼Dø=J>MEŒ0Ì]á1™yºŽE´µ8ÒÝÁ$&SDçò†iÌZd («z|°,·/åë·oÿ·ÿõab'c‘›ms 5Í„ –¾_‚Ra¶÷»Ÿ9¬ï»0õîª"ªnîNñšUµµ_tFÑ#E=½÷¶57xxˆ,ÔHª =+À­¥ó‹Y^¾¼ëݘÉÑúîpÏ( c³=H¸I¹ TtÌÊT,ÝÇÜÁ=›]‚“õŽÆê07oM‰"ÄX);nKÊ à¢¦AÁ „@jdƒ´Êå|á_üìgÂÀŠ×ý˜…üÁAnÝÜ…y;µ¦Jé‘A*‡‰D4¡ýžhcZéV%¦ª”÷$݇õH3ŽÅ‰Ôa¢Ú¶ÆEb$aWHlÜ¢Þ#cÞ[ŒP(HÔc¹:ðhQcúfpjBM¨)µaÉâ€ÍöÆ™Í=Ò§ã;ƒ÷~ñm Ø #´Ï|»>Õ‘¶ æ.•î˜Ü,(“¾,"¢9RjÁžÔ®xx«†j&€‡–ŸŸR2R8+ïn€9“{œØ‘šÊÖ÷ óÙÌ*_Ùƒ]ÊÄÄÝú¶¶“öîfäm-ìkšÜ·z÷Þ£7ëäeŶm¬Ü­om»½»½\.æ&­yïÒÂÚLÛ¶‰HD–Û‡»ïMÜUªf®MuÓÇdzª4wDþP2œtLUº÷Rž\4"…ùRrß Bì`m §HÍ=+*,¬ ²ØkP“/~ǾNÐTN|BMF î­‰4GŽ6gdeCŸ“žZÔ…+½0ÙQ º{lB$µs´È#WCj‚[nûJ*¯­y<âD¤iœ;²ÉGw'»lç½wò\y•L2v‚cˆY€RU:mzÓ¢pwm⽃ ­±ˆ°Š’ä#' Õ"D'9…”…›æ Lƒ1jؙ͙¥i3wJ_›Õþ:n¢fQ3#öÖ`U\#LÎú‘M£Aå„Vs;µt¤5… MUUqÚ{/mé '®1Ìa7ÛÁµÞ{÷P¯SSàDÒZÃL™&w˵ž’@âOÆùãðÌ¡q]²2„£i‰ŒÍ &|’¥J<À¶ÖBˆÜ<ÖŽ‚§‚b†'‚#¨²•c@ØïÍÓ÷”ÚÙQak• 53²žÉ`éMù<Àê<‘(ѼŠTxjÖ PÐ_ á¦*±´Äœše UžÆ„I:nH‰Å{©¨f¢Î’lÖ˜‚ ¬iÕøÜ4A`"R8È$]c/Àf½5V=5bqb ʽi¡0Éyâ²È…4&åJQ^äª9—´œ2ú¶²ÇùKo=É)ÎåA™s"WŽÃŸY[˜e‹¹»ûÈ=ÞšÔr(gÙöW…ß x¼fwEnQ®¨µ–(SÊL  ì¼ê㤠T£\&QVG'¸r,aÀ8Id®Bì‚r¸f:A˜D\6ÉhlË!ŠKÌÅD}ï{ßû‡ø÷KÿwÿþÿøýïW4Ÿ»lÛfìèNq˜GUîóî ÖR±ÂÊÜz—&è!(îýbª«óO¦lï=ªwa^¹~yàON"7m1[ ªhx{ݽºvùa"²÷]µÑn]eCº¹”ÜDUÛIÖ{a„ؼK®€ÈÈÊʹä3€À9a³ÚÿŒwâìD´ïû‘ÔND°ÞY4±AªhMÂY™ÝÐÑÂc¢¬SþœüÊd ÇÖÄM5t–R\ÒXÿ;±¨*!÷0+®=ë™xÅQ«)GG$yŒþ$¤¢TPAÛR¹4îF` uh,R žÏdw8X¹5 u£y¯„"FFÒ118S$± íxé4sxhÑÝ-…5Àt&{x’ü49±»“ÅzÈ™™YÓBeÊÑ•1Ý´Ê…g' ž\s¹tcÁÿ`î÷úý硞ƒ%ÝŒ™ÜŒ9XD™®+K.¬¨|2Êt’‘ËÇ.l½‡ €9\«ƧÖÔÝlª*'7‹q—Þ¼µ&" *‚§,O¤à‡Ì…ø´I¶­¥U]êq‘Þ½÷C6!º½½¥È#aѵ*ÄÅ`JšaÒ5IŸÆ²À­¨JÎŒfÀÑØIÄÇŽ£‹Ⱥï`ŠÛ„n=í} ÔÉIE+‰J,Ì­[—XL2K¥sªÅ˜ÚMaN3LÄ=)ÙÅ«N£ušu(úÃl™.‡Úãïa Ž IDATÒZh4ãUÕLôËläáå|¢&LoWQÐÕ9åžÌn!NðròîÐàãŸA•˜¼÷PÆ•›²³¨$k™~®"*Áƒã"Õ23)Iêá~ SQ &hœã¥ïK@æ`Ïp›0û $·=ÝüøüóßýϪ*\€±Š"¬D*6ä7HH¨Šy U’·DV ­5‰&4E„ÝͬiÔ-{ß‘ÒñBCEêhE’íÈ\qüpyˆ+µ[»K·ÆE?‹-³™‡©“bNEhÚDÄÌnÚò}ߣÁhªéxfÝ÷ò¦ˆÄTEâˆ`a¬Åóz”jªJ„ÖZ(Tâι\væXøDúÖÜ…55æÈ»í›lúŸ}c—Eí‰ñûxp¦F®å“ËM3—”!_·Ñl¿æcI1rU Á¹ß=O*ã@`œëØ*+ﲇkMå¹&jƒCªÄªCõWƒA¢Þ;ˆ¶ms· HÌÏ!~ÉÛM¤ðRo¼"“¢ÿñÜ †ßuïûùâ»å®k²•+HK$‡5F7‡¨l§vûò®m›“ÕÜq¨„¢&2!nMÜ‘½tªºú’˜çun{¨(òñ¤¬9ë§p^Å·©ñ-¼yb!w³n<ѶVç3·Ó)J ÀÃû9Û†,„r~©ªDçÀš;.îz×q\²\‰®³ÄÊpE¢š†gNSkñîâF™ùñ·ºYHQâ×™õú´µM$©âA,‰ÙÚø ™œi`b77·ÖZ^ºF³»¯(ßê§Óð”b­±ÇêPã§ä‚ŠÀmªã_ޝŸ·ÝAÌ ‹ê+©Za_ËQ¶Dí5ñ¾¨Ñ8iâ®ß¢Kk‚¨èÖ›h-+$>2 Õ¶ÌDpscÚ¡Ì–¹-3/E«D€1+p@¨gvï±aˆ•‘*Gä!g>¶Mé$õ£)6v„\©rkZi î¶ÇC@i¸ð}¸š{w³]ddZ^òÕ<><ÜÜÜD".­Uð`-ÓV¼*.fAÀ&û{¨ZF¹5.w+¯þø[« ³%¿¬Gé8®ø¸µFäÎØéE׉ÜiÓæÞ'QvŸ³m[,RãR0‹Þ‚›ˆFgI$ÁÐÈá`ÌtuºÓ8o›5ՄƆ3Ì•´ž#™J”¥àš—­åÊ FBÃà;IùI»@€ÄÔæe ŽFkͤôÌ&çI IPoBUYfqØskJe2ñq{7cméªT…;Ì,î?Oퟱj¹J—ÌàÈ)œêÌQ^¡4QîD™XÚT ÕžN©R¹4g1—¥4¦âNX4£Wß¶mÌ—ë™–êæ|Ff9P×.s˺+ퟜUVªo²v0"ë=öEäÒºúm¸›\.m­‰Šêh}£³Ý÷®JÙ¨T]èÙk ÷™%EAN¨ê‹03³œŒ[…j÷Õ{𙉍¤ [*+{G1èU\›Œ·}`ªxµÃFð¡€&W:èSœÄ@¡‚òÊFú×`´dôç…Þ®l"mæ±ÄNXGŽ}N§hΞã¶qçcÎöŒ…F@‘þÕŒ¼©Yµëbƒ$™IQœÔöÅI)ÅY*(_”Ç¢¹k³´‡ÊÉwìãç¬Ê Í 1?'),9„U¢ @mY™)jL”çNÎHë’HÖÎ@„a@O¹)2É}­îó?Fà¢F-xï¾FˆíºŽk •–Âø0«²BâÍ= W Ô“¨B€‚µ¦T$c]cöŠeêîç'í –AIîéLdK—YV1•™æŽªbmGÃû¾ÑôGtòmkI¶ñÇSòaª#îXU%æžOISi"û^ï̉QNô…YÒO¢¨ÈT“h’tá=ðšqUô*Xªœ‘Óí·«8·•fû¤žØki·Ø™ONÀXábégµÒe†‘ Î ññ‡¦ÊÈà ®Î7Ÿ|æÙeh{úÀ輫b\©*íÇÐcÖ³ˆù ¤ßAek%Uë,ÕjvFUE:¦•)Ê$åå9õCsDÏ~-¡#bÖˆ›(¸g…C:Ã)‹El-œý€"ñ ]Ñ$3‰øÞjvÖÆD>¦yÅÅ4¬ÓHt†¸‹TúªA½tßw†lÐâ|`"²Ë-hÓ³6°®"/?ŸÏ¯_¿ÜóÍ9ê¾=2ªEÆÂ˜Z0³-å(Ö™¡jé`ýÿ“?¬µ2ÓN\AÞZ”FÆT§nŽš)Ì׺²qçæMõ8g*×–83~y©WÈ¡ˆA¯›Õ¶w¾’…*³%Ÿ\ìÊÓüMâSU¦¨X·^Ó^eà„èœêð:q†;5ñ86B-£ÚÀz‡ø±?Ò2:—Xw¥¦h´¤¯ÿf! JS¸µ7ñ+>ˆ^žðD'›±pgdÄØÓ;S¼­XóÄcJ‹13‡‹:‘Ì"Zí4ØÆiõ8ˆÀ-š0îÉÜ ”³' ÁšÎ#ˆrJbe3'õg²Iåï#¢KME=}6þ{°+Îò›(f‚›­ I\r%3"R¤AdQG륢ºŒÒ1 ¨*…¸uŽÝã Z"´®å;Däóùäý­WžîiœNS×|‚ˆ€oú ÚhƒÔŽ &›B0#0ò̦‹·oÛInªJÄ0¸d¦W5lHg90s9 0”Q q‰¨êÂ𷪯¾ä¬jdâ\LU¹w2 NS¥¶oYˆ©2ªd‚§&‡Ax«Ç& tÔ×ýÅîù@½\OV8Èëb&t«2¡í'¾‰ÀLý™òÚÂx PD+øy;ÔÖ¿ZÊAÌ•ζt‹BDk,‘鼚{Eʼn3HÞðSž4_ áÀ×YfÊ:´K‚ö+(ÄŒ1 9„˧œíïΔL•”[J¢‚™”XÔ¢<…÷U,ÉyHûÍzLsVe¦wcp2–(ÂQihO¦,ðeÚ[E/ƒA›ðí{j×Z˶G“q©HûZQQÉHÀ^A¬jª~ß™y]WD¸»"$3"×RÊÊxD•ކ,º>YRåé~CK1¼LljËÇ—’—Ød‘d%!ü ”•È|3ëº>ãŒWÌÀN8³(rb-P3Kâ˜îa Æ!ˆçŸöÏF™OÖ[»ËÈ :Ø–R‹è+:”‰ =Öcñ¬2¹"Ïpjj¹–U4)žáñøK ¿­*N«Tº”Jüqk¯}pÐÜG¸” ¤¼ë|7Á•å­GD¯™N´VçÏxCÕ!ñ€þ3u;'4ÊÁ³ÚÑüdöŠ*0V’lëñL3¥Ô¤ÔA䎢 DY… ýÔèyz"–Wî £…èûÞw2qÂ7ŒÌbò^$¾#\˜U¤¸"3(Õ0WêÑX’8$qhq{~öeOT¾­BW\,hîBÿ¬Ÿ›îgég²pFf§›)¡cu¦;Iy°`4'ÀˆèÞ_UÃZ¾·[õìmï{­+Ó¹¡$6ajÇ¥öµ„ÊZà‹#[ KbéüåjØ]G/¢¤\º†yÌ)Q•µ†Ò·“åýN!e áû©w8ý3jøü|¸:?š9̨å…83¢ AyðqÿÌ ˜„C8>âòfR u‚Ï›t¦™¢Ÿ~fpco^±©¨bŒ¡D|£C ô4‹Eõ/ø„ÌV;0Š Iy´U™Ù#ê*"`Ï©ä©ú’AfÕD zé@«&*¯\NÑôˆ^ÂOveA ¢/-À(#Ë0‡•ÃEâã1€y(€¬öïæZŸK\0ZYk•”õŒ¥í>ÔÀ´™i*Àå¦]Ï4„]Œ×ÎÞèÕ'½QþÇC|biÍÔ}3—©Z$ŽË•Ë4'’„˜ýölËud›³™YÏ"F¥Ä¯ШÒî)WU•ÔCnR.N-eÅ'†‡9gÂJÕ<!úšÝBìñsfÑf޼©‡"ófš‚ÏíÄÃÂ"Q)’ÅÃ×xÉF§ oÀƒXt©Ô 7¯·ÇÑ{)Œe%e“è²]dX…+J˜ôZÊ"”’g› N‹…[X7¹E=Iº Œ²Ñž·Ÿ=edܪc|ëËÖ‰†}ø¼”j|p@ÈãŒCuæËÖ†:DL{\xR)_“e(ƒ´œèâêp2D¢žØqŠ"⟟ÏïïoìSMÕˆÓ'‘ð3Ý‹{ èÂ1z]ÞîóùTUd=¥Ú™åó xº C|NQ¹®kD5–•Ëìó³ö¾Ñ0-1](Ç%š·FSZ£fkÙ‚¥ 23…Xå•Bi¶š#O°I«'ŸóÞ”­Ü:7ò‡Ð*ŽÏb§Ã6ç9Z™QÿœØk9À$}hÔs 1˜5ÒóÁƒ*BÚ¼@&[6¤qÌsé=ÖhÖµaÈq½>ÀY!Sc mÂ"šAY[$j=l—C¥+&á ª%ÜÎñoòc,U°U9OP¶ï"bë³lf²=FJJÓÆ|Þ¤’ª2UÉ}Õ#¨ÊVÏÔ‡®^gü‚³ãÔç!¦ÇE¬Çv(K¨›©mWKG7Æɪ½ø@óãÌ"ÓUAYuàcîF_˜£l¡½·t@\7úüâ¤ávZk‘Ù(/ä0A‚fJ¨|SU—uPŽðИ Ò ¸+7Á'Ë3:U!°³@íÃn.:¶ú)G]ôrrç¶iM!R>É~Ä¢¡*Ì“R„|Ä*N±6š„«i핃mJÛóD*!&.·Íµ{7OÙ2†`öì‡9BAÜÄÖBË÷MBJqA˜•ÙÞA”áI™Á Ú±HN }7 ¥™;2{©ZV*úž"æjU†‰5Ý-÷i$,Ð:ˆ°AÎ. ì‰t½ .ð ‚ld†2s2'ªs½>/‘ªÀƒ™ õ¸S÷ë Áiÿü[¢öe~ÿB»™…X¼xéG7ñùŽ#”ÎÄ$¤33q§ IqrKÉÉJJŠë·‡ÌÊU¯]S¨šj¾:‚N¶mW!îÃHª—e róu`ÂÊG ®­ÎǹS¯˜¤“Ü=wÔD9T If <ûfpüDå $õöXŽ7s“Ž,ôÅljú6ËU4N- þ?E;Ø7tkï™Û„´]üZ‹Q¸fFP¥CEkâKq¥§ï-*úbráôhb²Ä™e©9gßÒÑ"\z-ùûûÍ )¶¦“Õ ‡zpfô«ÌÑ” ¦cž“EUà r¬Ÿe'¬@ÛǤ¤?ÀË­±¯“Ö“´cß®fòâÆo¨ +jOÚJ˜ÂôÃc9–}`dÖd€½‹-GÔñÔ‡(hˆ„<~qÐ ö,•Á—·˜J‘$ÖV H=²9!ÕÎi¢ ò˜eEwë‹²ë” ëz [è3ágÖüPåK¨9VBYéÚ)-ùGÄÜ(dŽÝ(êb^£ܯï°{êù[Ür"ù&2×kè)bUƒúeà‘–ï¾™Ò†ÖN8v.·¹[‘¡àS£ Áëœbøá?ž¨¨hÚ™Ü=JU‚{qeîÑ € ™ît­e #z|÷oÐÄmòF#!ŽŽqT15µ‰˜üküä*2œÃ݄ɜªe£úà³Ñ)6:ŽA­³mˆT­OeÒÚÓNvÓkæ#o?üƒ÷vj#Í®:uèB„пÿÔ$À%ó0Ya‰îŸ3'bî´K7‚ÌF0#E–»W&WÊZ ¾j£$4¬3–’G*@ï÷Á5“‘ßûÆ8šªëRUíÈÆvBR5«—ߟªF& WTTª–\ÆdJØpò$×ã³]k©Ø‰¿íX‡LÀY"¢&^å¾+¥ˆ ¼)‘µ–¿J†hï«ë ËÀÚõy‚™U¥{œ­‹9é‰B"Œw˜™¼ÆO³ZpùA?0ã èùå{Æof¦ØÌUür»å*vߨ´ÃÛbb‰[öóù,+ïîðnî*özcÁ8]E’U2Âìq¬}±ª”TõA‚=­*Ù>Îü`tDÔª8ˆìˆÆk¨‚´<1ÍÅÜ~!ZÓ;‚΄«¹¹œÌļõ€ý%¬ª˜a f™ïóƒš}2ËŒ×Zq^­×¢œÎ,¾ªò¥t˜ØÎ%{§˜Ð\›G ÚT”—–/$W«8ã®È0×ãŠR¯3ÞÝ1Øe TO5Æ 4TÚè–·Ð~èÞûô ùªÇ*3Ô¾IßDLbîß½?ýETÛŸ~IÏNû÷¿ÿ ›ÌL&òŒàfØa™Æ©YßE•ä|éÃŽ+9{2vçÑØÐ È9?¾Ô3òµï÷›¹ÖZDŒŽ<£ ô>êFðöNU5]DafÆœDlÆ-†;@É%ô#2^;BT´p'ÜãûÌ]ÚeUª™@(R;³ÓGéLˆlî}ç9dZŠÌAR@|\W˜ñÁ>Lòl¹öX»o ›ÊìÇ“¬ƒ;¦‰Cñˆ4¤Gæ•Þ=4úJMË%ž‰¤žþh±ël^3¡,èÊÚ= ±WÜ&‘cŒ?<nÚš|$Ò""Z뺮¬ iSY³Pzð*j"úý~»®xZy€ŠMa“¥á[Ç/¦ŸZòº õ¢!tPxµDªšfHÇ3UìsIq­e—¨ïÝ®¾ùŒ¡p¢#Ü=ײ®mÁöY* âHͲyT®ÕÆÙœª®^ey9!€)Pà‹nè(¢sâkšä™õùüà•@gŠ*Ì ŸË—Œ@@“NÝн7 ùRMÝ…¢ÀLÊz| b@dœëŸx²1¯"a#†U 3q­ËÚõ3$ˆ Q¸N*“P¤G‹¹RY”™/=a;¬FUQ¹Ö…þÄ Ã¯–Ó˜²(2G£*? ó9GãOUûÈ ×@r¼dIȪ(æâf¬Ћ¨P3fER_;Ç*Ï©œ*j°Ó𢜥ñ@ÖЫ´@mI0ï«¢ŒŠ¨$a&½ÕàlEÌ"¤˜¤c}àéžU©©%¸kA†"fSfxêÍ -¢kIdàfP‘BD­Á“ÜÓÔXÅ̘ÞüЭÁæ¯C2T ³»3äA¿þó¹ ùi}%bˆ´Oz©`NcAò5Ì»P¬kÅÞÅbKùøUˆ¬µîïíÛ×Z`ß¼i—Ðoª§c»‘é{‡ªþü|öþ¥ª‰,÷õÞ9???8>T­é”å!»ï뺌2m®UUQÊ*}ß7³üu-/FçED×µ°ƒL…ÙnÂXºzVÚ£ægmâçT¨¿—ý(=Øh‘S2ƒßqê}ÉRSN}ß¼0%:ÜeV•½=Ü3{Öœèœ.Òj°Á¬™áŸ ç*´‰)A<ö2©Úµ.föðŠÈ˜íÉ«[É™h±“+Yï. ›K'ã˜Ç¾·ˆ"<#à‹'‡¾@ÀP¼D…DLjb¶22*p¡jš¡„À¬§p8`T’WÞÀÌ¿ï禮˜$¦÷G$f”gf€îºÈyåÖüÌŒN‰èï¿ÿ6…/™T¥gZf™QO«>ŸÏXÏ«¹;3îù×_’lÞ‹«zzs]+"Íòœ•¸ÆŒîp-lWÔ~~ªê¿ÿýoÄJi÷`fµÂ ~P Ú¨°ªÅx |ª5´“f`JYh›´Åi²ðù"n•19Žd¦-ßpú³|–í1xç9*ÆÊ…UŽ“œZ[¶­•Ä‘£H·Å1“¿©*™XáŒÖÍã¥pÏ)$Ä f‰È¶³)r÷e݆OÌ5q ÃUÎâ@˜0QžU¦–šjÍ·Ë—VîåðX׌GL\w+7‰ˆhïM\¢M¶È¡ÞlX44Ó1Mô2k¹NßÀrŒ`4¡&ñ±TQ¢Æ‚c^àg ùåP{ß7™-|W€“¹¿ûóׇI~ÿýû¯ý…çøû÷ï÷:ÎÌïtÔù¶î:"Ui³o¼"0µÜ{ÿ͈ ŽØ‘Þ1÷÷Þ*r­«²Qµ)¿áO@"Š7Å Þ÷ ýæÎôŸŸË½†Kª‡×s k~=ÿí×ÏhJ*#É,æhåp!Ygd2e“‘2"“…løžÅdªB•¦ R½þeÇÿ·Ú(¯“U‚d²pHD„x|ƒœ«”…MépÙ‰”áÉÌÕV†÷7šÄ­<ƒÞ¦QVéÑfÖ0T_‚xQ5ÐÃ!Ül‹ÇJaŠÈhÇÃ"f%í®j|~Œ™”"™YŸϺýÑÚ’Ô_³]­µ-îNøæqü­ ‹ˆõÃÛÈPvo)Éy]klºðI0Ç 3[k¡µ¼·‹°™Üw´K¤GÄçóg0âYT¸—€éö—Y Ä¿ˆè¼N~ù=üî,»f¼øŒ&»y€?L.~T4òý~M•uùF¡‡h©,÷¤"6&"S¹÷®6ÇkêÐ[¥ŠÝ?>0è_¿þ^ËìqЈW£ÛEæ ŠSýÞ;|ÿü|ì2ó½™ùó¹€™ÐCynïT"}&1¼ª"ÑlÛeêfŒ`rHópÂt¹:x/ûçk[l¸¤J»*ŠšY;ÇæPCE /N&ÔÛÐDhZÖZ»èL~Öºjìa±úU5=DÚÎ/³LD'§$3¨'M@¶øx£À2¸Xˆ·¨ª :âf†|¬¤/‡IÇ¥ýbËÀã«|²—áßËkdSÒ ¬9u¬™-•šaÔé§`ƒ“~|•ØL1 A»tÝ÷…«"R2ú[f`.\”Û÷2TÚÂ"ä×TÍNx¥-y˜`G™eÁ"Mw‡¬`ÛKu¹©-³ìGZ³sæ¿,Âßï þG„YaD^ו +C1[Uq:þ3óy+:‘À@TPàèˆûþ~¿F™:ÅëÎÄÔ4û×#ð/añž¡ R7ó½µp'µó?òFLø QªŠµ%$q¥°è¦LÆ>n% ÀŠÜÜØ+RYz?Á‰LHfcaꄊߣ:' éBóëg³EÑmªŠ ó{cf’áS1à Jx"Ê6YZgá@Lvçay0ÓÞ.ª”Õ[Mø\³‚¸&ð#›MÓ`…Êtd˜ʧˆ¸Ì)î ¡"áˆ=Sèe™ þ†ÖÕ„œyh“AzZ-jÂãG„óûÝH_cf÷C¨è§oËCÊû@ãIDATÊ6¦†±ow“J[‹Í„bäE7K K˜>LQÓ|õn+ÄoyzeÂ{É·«ˆikSë’‰×ZÂBJ˜:ñqëƒ,vj¬öBfâÈ”‰ë“Î UŒ•EL’ªi‡CÅîx½2KPf„2ôQˆãÎøV…¨‘Øð¡GꇤÐæ™ Uæ}ß"ÂTÚ'¾åóÚG¥Z Õ×;Æ!Üb/nB ±`õ¡™ä³îUDèag´‹ù ®èÈÚ¡¨Kö - î3›Î³îû+›iéœÂÄkÙøîA…a§u©—9}feúMͬ¹}ë=óÑî<2Sƒ•G½/ÃH–"ŽÌ}ïëºÎköIW…I+ĦíjÒð)bIíEÈ7m÷èÇOtÌÜš<ˆ=VEffÛ ±²­­ïÆ”••©¦Å•ÑÁÏ€ð!}6…¿ÄÿZLfŸˆØù‘À׫sBÌT47„ëÁó[:&ƒÓS™ÍF®mLLÌTžQ†pÑÆ«€eV%öŒ5i5úÔ ¦¤««(NŠñ.\ªI\“Ž·|+ó¤,YT¶P©Ke1•©#W¨üÆfÁ·dx2fU¶ïEQ,ޏP"MéÄ.4EƒÅ–Å‹~F@‰A±*Ø—eµ~¦3ê*0ع® Í®ÖFá˜æ(H "9#ãSñO{ƒƒŠUÕ=c½~—~k¢õùøÞèvp@¬å‘ÇÎfG@u‹¢ #÷?~¾ªB\~;Òãˆ~íaƪ?çDÐ °HPjîù0Øué0ïÊŒíçóáûÔÿÊ*ŠOLE*fU‡!֨ǡÂìçóÁ5ÊÄ=àaQÓeVõÉmÙˆ¦¨ˆM݃aî÷Xju)jU½TÜaPrÌ#‹ŠSDŒŠUaer0uÓÉÍBv•½dÙcÁAY‘I ¤¨%1%"«²U!&J9Ãõ71ñmÓˆh_=^ Ù+ò&Ä'RGcq‡ÎAn_Ä9rÐ.¬» ^½X;r€jôFÆ:םި<£¯ˆ=á÷û=ßšUV&ª\%#“6ë•Àõ8/Ÿu9W_g”ãL;¨wÃîmj¨V”äí>Ÿ˜%ÄÞijbªlƒ›4˜þ¦Ã!‘3,0HˆlðXœI×ûž9ÿüóùLeïíÐüDÔÞ[U ¿£‰jœLöR2ŠÅ—»ï²p®Jw˜oƒ¦|o'îL÷ܨƒ©rßfv™VÔï(ÌÔ½RX>×23ȃè$ ž¤Hf)&eÏ<±SLë@±P#W¸QÙûq, À·C!Å”cìÕçóq[}/‚3@PÕ½)T «­ØÁÌëZ\"ÐQòhÒZ†ü<Ít2@GŒq Åll´ië¬V*ȇº®ŠÞ÷ïHÑãЇbK¡%Á÷ýÊ«è±Õ™iÀej???"òû÷ï¶ñïeMD 1³îû²>Rf à±e;WÊ25Nðû÷ß{;QçÅŸÑý"¼þèj—.nN®…µ÷öðý\HÀ‹ëº˜ùׯ_oNM®\•¬¼äŠ¡H? ý@ÃÞÃÏûŸÿügïý¿ÿýï   RóÿYèI“X™ÍIEND®B`‚OpenLP-2.4/resources/images/song_book_edit.png0000644000175000017500000000106112657640340020521 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<®IDATxÚ»ŽÓ@@Ïx¶CØlĦXh¡!ñ ¨h ¡‚Žo€ ÑÒð ð4û4€(X!-¬(HØ Kìø1—1–#¢–ÓͽÖñ™Q"‚š\yqÞÍfYÆ÷ô\¾Ï©äóG²÷ä¹iOþâõ›·xüôÿë½Ï¼|½h|{wôöýˆ{·oPO®1¸ú€²ö•ÐáLΞ†º*±åbÀÐòf{g÷ÎÁtÉV<&M¸0´|™-éP F6bQ´’ÓÃN°ÂW:ŠðÒü Î9Ék:l¨ˆ¥XkÙø­5.,ó ¶Mé#D A€A˜U5ë6"‚ ±mÇE ;¡bž­*Â^…J 5=P5L`˜è :¦ï `Œ™nM…ó‚÷݃*¬‹{¿óÃ4Y(%$J!|sܦ ÍÚ9“¶Ë5y@¨Tô¼Õ†4IÄ1}hÕB ‚µ}ƉƎV×!Hl_6š<_4ùwÁê[»)@EäËœeQrJé5Á§“ùÙÏc¦³c>|Üç_uÅ"˾üÎŽ”Kç†IEND®B`‚OpenLP-2.4/resources/images/projector_spacer.png0000644000175000017500000000025212657640340021101 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYs  šœtIMEÞ .xŠ«tEXtCommentCreated with GIMPWIDAT8Ëc`£`Œ…?ªrIEND®B`‚OpenLP-2.4/resources/images/android_app_qr.png0000644000175000017500000000137612657640340020527 0ustar raoulraoul‰PNG  IHDRÍÍ>׫µbKGDÿ‡Ì¿ pHYs  ÒÝ~ütIMEß  31ÞY9þIDATxÚíÝÛrƒ0 „aÔéû¿²{Û É†¦ý¸$òO”]#CŒím_4hРAƒ 4hРAƒæ¿Ò|íŒæÁãñqx¦“aqxº…k«44hÐ¤š–¨Æ^õ"SÄ‘2¶Ë×VihÐŒ¤Ñî­ÒРy—³ÉÒKBæ–ág «:N¥¡ACÓ&eäd’eJ ê)š-±RÉU44-Wžîû“CšwÇ›¹U47l½ùÙ¿´¶:µÊnn©44hÐܧi'væZÒÊœSý YwØÑ A3—ÖæÎÐtZuøËÚ¬[Cƒæ¥ÎæÒ»4R;S÷CGêT4hÒZó9A£ YSíϵšIkhРYÑ´fJªU¶Èí÷9¢— õ@¡AóRXÞFiVš-ŽQÚ%•† š»5­Ùî=Ž=M}¢^ŠTihÐдeiM,ßlT žJCƒæV¸ÖtüÙòãØzKÝT4ÿæiïñðÛ Aƒ 4hРAƒ 4¿ýâ,º°K´W¹IEND®B`‚OpenLP-2.4/resources/images/system_about.png0000644000175000017500000000133612657640340020257 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<[IDATxÚ¥“1hA†ÿ73;{›Ë].¹Ó\R)D“B°P,¼Jì,Œ…‘D‹4ÐVbc!h#’& UBbái‘*v‚6*6bÃ]Ü5â]în÷nwœ]×Íiìüác‡7;ÿ¼÷xCJ)üþY1‘mNcSÃéÁè«üh¿WÀ"È\VN;èÒÐä³ñBŸœ;{¬Xî…]ó@²)¬Uš(¿±§î«‡§^ì1 K+¥‘bÏóó'†¤à ßj.îL˜]ZC¶×B'PxüÚñÖm;Y†Ó€.¯æó9«\+H»á£Rï Ÿ169z$ÇP.…J͇ÝP:Ô/ YkŽ®­›»=4qp0“w  @Cøøµ…¥WUp¬®Õ²¬0q`ºhoÔ§<ˆ iN TµA(ßÐp}Üxú):éí·(DLÀæÅÄ Mâð»j9KÀ48Ü–‹êÝãø­Áëoa¦È@ûâ{ËG›IÀmO l5 uÀnK°+/] ¾ì;„­ƒG Œþ®HçW} Š(*H q(&¢¦Á‡® ä‚&Ì$FFu&â"¼1FÆ_sq×Àcó:¸™ü@,ì$…k¢h/2c̆4—uÄ—37Ê ãéØÑÝî¼&b¹ ~NÍfœ½£|k«Åž°À/EÆ}iÒƒ¥ð¹eÁöØ&€u3_Þ3ÊIàv-Ž;E“Œ0ªÙÖ#6y¹íyuuÄýçc"" Õ…©q™¾¦­ñ4­˜¦>Ûù Ïšã•%ì„vIEND®B`‚OpenLP-2.4/resources/images/projector_not_connected_error.png0000644000175000017500000000261012657640340023657 0ustar raoulraoul‰PNG  IHDR@@·ìOPLTE[[[¯¯¯ÿÿÿ€€€'''±±±$$$¤¤¤"""ˆˆˆ™™™777}}}qqq:::444vvv[[[¯¯¯~~~£££???„„„<<<€€€AAA„„„qqqKKK„„„LLLsssœœœÂÂÂXXXqqq¬¬¬ÑÑÑÏÏÏ[[[¯¯¯ŠŠŠ®®®™™™ºººÄÀÀËÏËDDD………˜˜˜™™™ššš¶¶¶¸¸¸¹¹¹¹¹¹gggyyy„„„žžžIII[[[fff}}}ŒŒŒ£££§§§«««¯¯¯ÃÃÃ+++111666777999;;;<<<@@@BBBDDDEEEFFFJJJNNNOOOQQQSSSTTTWWWYVD_\JeaEfffggghhhifTjfJjjjmmmnnnqqqro]wsWxxxyyy|||}}}~xU€‚€‚‚‚ƒ‚‚…e………†††‡¯ìˆˆˆ‰‰‰ŠŠŠ‹‹‹‹Ô‹ŽŽŽ’’’”””•Y–––———›››Äÿ   ¡ç¡§§§¬¬¬¯¯¯²²²³³³´´´µµµ···»»»¾¾¾À×ÀÁÁÁÂÌÐÇÇÇÇàÇÈÈÈÉËÔÍÍÍÎÎÎÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕ×××ØØØÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞÞíñßÏÏßßßàààáááâââãããäääåååæææççççëõèØØéééêêêëëëì¼¼ìììíííîîîðððòòòôôôõõõöööùùùúúúüýÿþÐÐÿÿÿÆÜ tRNS@æØfbKGDˆH pHYsvv}Õ‚ÌtIMEÞ !ÝÖzDzIDATXÃå×ÉOâPÀqÓg.¸o‰\ãnT\Qç #ÁApRª‚‰6Fɨµ!.õ@<£€wilke™ù׿=ª˜É\À¦Í$ó½’ü>Ð×Úœœ¾H„…qÏ¿Âb0ôÊóDz77r——ÏÇbñx"‘Lþ„%“‰D<‹y<‘ˆ<Ë~¿`ïÏË øý ÓÓ‹‹‡‡òwpàó}Iç÷û|¯¯'3 Ë‚¿ây–•…hša†aZ­N÷¦ÓiµÃÃ,Ë0á°@0ÒôØØÈˆ^o0|ƒ z½ÉÄ04 I  TÚlŒ$q€ÑQ£Ñlþ3›ÆñqšŽFƒAéB¡xIG’X,V+IÎÏ[­‹Ñøôôøxq!€ÆÝn•J‘J¥R«½^‚Àn§¨åe»Ýf3™îïÏÏ¥”J´x,ëñP©žŸ½^ŠBK‰~`™Tww··ggÒà8E©Õ–L ㆖íÄí[7°««ÓSi¥’ Ð`s3†%Â8‘ ǯފÀvv¤p\(ÊåÂ`uuh[NÿèäD:€$ÑEt}€x\ØB@Fè"¶6 „åS©!ÐÚà8"ÐA|yAK©Ñ½/5ÐÒìﯮ úÚTºŒv@$P[‹ÆÎ™t2¿/åûIœÁˆJKÜîõõ‰‰ãcø(£ tv ¹\?`““³³;‘á5 (/ohØÜÜÝu8œÎíí­­½½££¦¦,nªE••}}Ã15µ¶æõ¢ñÆÆ¬nëEEEjõÊJOÏÒRWWÖ㢼¼ÁÁ¹¹ööÞÞúúŽŽ’’šš,?_$PP€Æ»» +*ÊÊ>ñ`%¨®Fã¹¹Ÿ~´ WUåç‹x¸ üçý¸AÊ%u ÜIEND®B`‚OpenLP-2.4/resources/images/import_remove.png0000644000175000017500000000123212657640340020423 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<IDAT8¥“=hqÆŸ7Í›^’KRóqù ÁÒR;Á‚µ5‰58 N‚`G‰[êÔAÒ½¥\ 8ˆ h‡"ØV“«bí©mLÉåz§ gÚEúŒÿ÷}~î0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×Âü}‰»K¼q#Ig«ÏãM›ã\•JÅÁÀ´LBËç‚vy NÏNLL|ešæ=Ç9ãѳ<µ‹çÔ‚mvKE2¶ENuR޾J5ö…†Žˆ †‡‡YYY`zzzβ¬/ê^h½Üf¢p©TCDEë¡H\”B…¡ïÚ¼ÈÀÀÀ·ýýýó‰D" ¼;>>þùÈÈHH¾¨WW‡«I.™››»µµµu»Z­îôõõí=J¥R""(u¥DàæÁÁÁw”Rße³ÙÒét "n<?žœœœO$ß+¥²ÿ¬VäµFIEND®B`‚OpenLP-2.4/resources/images/openlp-logo-32x32.png0000644000175000017500000000522012657640340020547 0ustar raoulraoul‰PNG  IHDR szzôsRGB®ÎébKGDÿÿÿ ½§“ pHYs × ×B(›xtIMEÙ89ßC&ˆ IDATXí—yÕÕ•Ç?÷woé÷º_÷ë^ ûÑÝ46Í"T˜(%I*ŒDј©2hÂ$V(uf²93‰ÊÌT⨕X™q™D‘D§&à2¸6ˆˆŠìMo,ÝÐûòÞû­÷æ_?šÎLR1™Wuêž_ÕïÞï÷wÞ÷œ{ŽàÓÿŒ…W¯­jj^\bùFL¡EÄжonyæá óiŸâÝê›îØüP(Ùp£#ò£Ý}ƒ†òlỾçèxTèê’»~õ-‰£¶ì@6?üógSÓ¦¦„ÐBi(.³°!É¢¥t\¦íü {w’µšÊÐ|Ó*йáÚ&ZöÅó< ô¤hRh !%Ú÷ýùgZ< ZçTß»iócyyQ„ÃÁ* 5YÑ\ÉŒiI2–Ë®Cm¼w¸“‚X˜éUEø¾&6¹néÎõôÓÝÛ‡iŒŽŸa5¾$´ïš >sCüÔ‘=oH€µ_ý—'¢ÕóšQƒPÈ d¢ËQŠ>3»‚«fUsêÌEvlåØé®l¨$ aJÉŸ]u}ƒ#œí¹8È8¸¡‘H¾ïPUY9ïÈ¡–€±ñÿ3-­-ÐJ1%E1ƒùµ…4VÅ"H*)AJ=žš¡Ñ,Ï¿¶#­gYÚœbýše( BÀçØüäó„MPž‹ï;(ßÅ÷\´ï¢µ§ ðkj®”ŵ+ªïZ¿é¾tV®‡H; ŒZ?;ÈGí½Œd,„Ð$b!bãRùŠå…Y¾p:³¦rìô9^|}/É‚ÓªŠ™ZQÂ’ysøðÈIlÇF)Û²H¥éëäì¹nÑÖqF”'^7ßþHóß~ýþƒ¡”¦S±ó£ì=q‘£ýx®…Äí0»6É—V̤¦"4¹%„`4åñç^¥ûB/ß»ç+”$H kÖÿGOœBùN ÏÆ÷\P.õu_—Ë–ß\· yÁRÍ”¢‹‹Y5¿Š¥s*˜[WB,bòQk7ÿþëýìØsŒŽvaš03UŠ”`ÊËÏfÖôž~q/½¶‹UËsëšëñ•Ç;ï@ ”RhE<ž8 _½¦fÁÜùw†!.ãÙš”EYÐXÆÚ3¸åú&ªÊ\èæ­½ÇøÉ ;iíì! ‹F˜V•dÕµs™3£žü4±h˜Ûn\ÅÔÊ ZöìÃs´òÑÚ§0Q¸[üå].¼wÃ=ûB!C)˜³@pRÂʉ0¨„|¥PJs¶g€í;÷óß-û©()à_ý"‹šð<Móè¿ý‚Û×}‘H(ÌŠ5·Ekúéu#®[½¡®jÙý'„a˜ùQI<,ˆ…5y‚d̤¸À¤$¡´(JY2L$d…R¦ ´#%tœäãã§¹Ø7€ò} òøüuËè¾ÐK:&?ã¾¾OËîÝ,Y8ÿ&Ä6<òqÿ…l4 ß÷ð=×µqm DZpϵð\›Â¸djIŒêò|¦–'¨©H2mJ1‘°I($ ™’pÈ$˸¼Ñ² ,lš Š‹ Øxï·ü±´½XlúöÖÝ·~iÝ5JyÁx) î[Æñ\70ÛqÈÚ6Ù¬MƲÈd²d²®ë\f6®ccPQ’¤¢ûœÞöêëâäÁ7§CºÃÌضãÕ'–,¼âGZ¡C&BJÉúô¥¹84Æ…ºû†èébxxŒ¡‘††Áw©›VÊÌÔæ6Ö0wV+—6SQ–¤¸ÞÝßÉS[þ“ý|È©¶Vì±Q®^ºä“¤;Buë'÷„÷ÿã+§²ñƆ‹#ô Œb[Y|ÏAû6QƒÂ¸$‘ª*¤©¡‚¦ÕÔTÆp=ðý 2—ö3Ýìzïžýåv:Ït hßÅsmfÖ§Èå7:uñ“lǶÉ®Z¾¾¦qù_ïv¢ñ°Mµ…Ì«/¦yF)y‰iŠK%xR+g@wï0?}þev´ìÃʦqkR—ì{¶›†¨,/ùòÑ}/mÍí5/?èÀ®gº0Bëúûï½<§¡R#Æ Š\a „2-¼{¨ƒïæýNpòt'Bûí¡|´­h¥‹ ¢±.õ³··?¾5V¹”L÷ÞÿÝ–çúö•_øÆÚGúáÖ¢ÂxH­¥Â4Ár<†G³¼¼ë#¶¼²ËÊ …\4“Úô ܹv=l šfÕÿlç¶Çî~¥Só…Zñ»ç‚\ßþÙÏo˜¹á¯6î]yÍÜä‘¶~ý«·>ÇÛ»Áu,”ïÀ¹¹à·ßµµee˜YW#¬±þ/òÞ¯¶îèÔÜP+þ€ÉHˆ „½ík?ù§³£Ñ»|#Éf2(ßÑʳEðµ“þc|ÏÁ±³Zh_”%ó))Š¿‘é»ïýÿñÉåaÿÃgCa€Vrõºon.¬œ³±½g4lY–T¾psà6J¹þ¬T•ŠH·eûs›ï»#/µ†lǶ?a:ž ºõŽêÓŽ™I×Û¶[®”’R¨¡D~¸½¼¸°ý…çžmÃjÕ­Çm{æ÷ÿÙ½rÿ$¦IEND®B`‚OpenLP-2.4/resources/images/song_new.png0000644000175000017500000000110312657640340017350 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<ÀIDATxÚ½kSQ‡ŸsrÁ¶A‚R*Å9ÝŒ“u«ƒ›»S»ä?hŠ%Ô‚C‡¢ éjÅ=µˆ¡BÓM%è͇ƒ’››œ×æàáp‰_?øqΞç}.óü+«ÜÎ\Ë,e/g§«‡õr»ü@–åI0‚ÆžAkm«”JôÙÇvì²xi‘ÍùMî•ïÎ¥¿¥«%ÀÍöé6ÕN•ýO>W ˜AMcX R)ë±ÓÜÚo@í{èN„Ë‹›eÔ#5Bõë vçYg®Ìî0öüX,e#™a9Œr‡謃¯Ê§îΗ_…9‹ùŸLuhZúú:ôŸm€ŸÌs þåþ DY1!Èãûj m¿`Pm~7Ö<ƒÝÆçBÉ’¢×Ÿçg³Ùe³Ù\cõzU½Çù­"B†V*•ÖX¥R!—Ë™sŽg¾~>ñv_¾‰“Äýüëxa>QóXž¼Âõ—#ãî›ý¸vòsã»)¢Ž\6 _P^½;°[>ÈûbmÝçoØñØÝû.á‹ òd2J\û…·òëÖÛpæ?N…&8ÌaÀìQt6—h‰ÉV‚"‚èòLž¿yPux²@UðUAV‚Øó˜) §8§, œgfËüä Dž:Tž,x ¢+ÿAUð=ð=#åƒ-„´:Ҥ̹8Ôs©T ¦J¥¤”¨×ë mz”î}­Ã÷îŒø›7­¥—ãÛ(~/U«U ‚€Â0$ F£A…BA{­V£\îÌM6ƒ³ð~÷®á»·¯(?x€*• ©N \ àpßé“<½¹‡UBˆÙ-ëSŸ¯^:ØÜÙt×òíÍ$©Ê²üZÏh ÆTU­E"‘ÛÏ£z<^„ëzFK0Np§¶¹X=a$ ß h‚ËFO›VšÇ]z¹íQ†ˆù­ˆû-8X±ã<æÄ}~»Ü4¾ìssxËâQd¡Du8]ÓAÙÐAÝbPN±¨=Í"œü‰€Aa“E:Ä6WÛ ^Ž)òü+ƒ“U†ÌßÒ:­Ñ$h}ÆE+ö–,H†† Ä(_h<#Ua$º‰>b€pİf¢‹èl~ªÙ‰¡µK IEND®B`‚OpenLP-2.4/resources/images/messagebox_warning.png0000644000175000017500000000137212657640340021423 0ustar raoulraoul‰PNG  IHDRóÿasBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<wIDAT8Q]HSa~¾'Å8²òçܦΙ^‡LÜ  ./ O!´º Ž]„y7ª …ð¢Â È›¨ »1ÁÑM--7›º¹µÎÎæ™žsÞ.ÜS xùø¾ïyÞŸçeD„`Œ1 <ù§o"´™ˆv€Ö@ 0!ËrB–åD ˜Ðº'w±EÅaÃÐuå÷B&›Z̆¡‹¢8 Àòßy±hhUËFHY%åÇ8i+”X ­vvmÚ1/I’X]ç®UW^BWW¡«QäÖ¦p¸Æ])I’€/ñ«P™1«ÕÚ=ÿùãÓþCY¸ñ7Áq®œÑ`i¼†„Â/Ûm}æŠZ1›ÍüÐÐÐ(QlÖG+Ó­äõz©««‹¢SNŠÍz‰ˆH’¤øÀn·÷D—¿/ç(2 ŠL‚\.¹\®â]ÏP4ü倅â&èíí­ôûý}uõÍõéÐ=€qÛ†ð{2ùé24%Tø:Rðu¤JÖ¤g¢¶}—e9 ç˜Çãñ½›~û¨ÖnŠÏö”oÜÝ>Þ.Ýuu÷ âÙú¥gËESUUÕQ‡³±)~•Å>¡„Ÿëv‡Û)±2UUs†ah÷à–Z~H-綈Ÿíojæ2Û%•ˆ¬†ahÐ222ò$•JÅhŸH§Óɱ±±Ž0 € @€åÌÊpù åc @À<€¥¿¾’%î'a^IEND®B`‚OpenLP-2.4/resources/images/service_down.png0000644000175000017500000000115712657640340020231 0ustar raoulraoul‰PNG  IHDRóÿabKGDÿÿÿ ½§“ pHYsììu85tIME× 7$yóüIDATxÚ¥OkA‡»³iv7ÙÕ˜´)¢Ôƒõ$X¼ø ¤x)"‚^¥BñXÏ~¡‡b±ñRé±x‘JÁ XŠMS“’6±‰»îf»»3¾®‹„Ú¨ó23/Ì3¿ü/z¹<-Q{‚ç„ "®¨±þlâ8zPÐ}ˆ#7ÇNC’¤¸@Ü/-é öD».H€N§óû0•÷=ô'<€¢·Ûvwê»} |À/ƒ8@’€ï•`èÂíIðè®àùvœÀ¶]0&ÇA{J çÎ^³!8øc´?<º¥ ¶» ífGŽZ0Œ 4]‡ÄÀ”$Yç.Žžƒã8Ù­ú6Ö¾”A<!'èO7«5x>݆4¸¤C°,Bhøá+ØÞ PùÚÂF¥ x3ö§ù';oç¨éÞh5jÕfó TÈ))õ ÔÌ!èFfn)†Ž½µBi' #Á^Yh’ùêæê2WÕ4ò…<,«€¢5ˆ¡B]Cåóë@ðhÜ[[tÀÐEø}£,˜¦»íúè™ó—è ÝldÁÇâü4šõÊ”_[zŒ.dô"0U[}³üþå‚0DExGëòÇW/ÀÃ{èf ŸL›E{lò¡¸r§$Ò¦ÕRŒácø˜–¿~àð)aZ'„¬åÆñ/°L±D5‹=ø {ï鈄 IEND®B`‚OpenLP-2.4/openlp/0000755000175000017500000000000012663134435013046 5ustar raoulraoulOpenLP-2.4/openlp/__init__.py0000644000175000017500000000324112657640340015157 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`openlp` module contains all the project produced OpenLP functionality """ from openlp import core, plugins __all__ = ['core', 'plugins'] OpenLP-2.4/openlp/core/0000755000175000017500000000000012663134435013776 5ustar raoulraoulOpenLP-2.4/openlp/core/utils/0000755000175000017500000000000012663134435015136 5ustar raoulraoulOpenLP-2.4/openlp/core/utils/actions.py0000644000175000017500000003555112657640340017161 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.utils.actions` module provides action list classes used by the shortcuts system. """ import logging from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Settings log = logging.getLogger(__name__) class ActionCategory(object): """ The :class:`~openlp.core.utils.ActionCategory` class encapsulates a category for the :class:`~openlp.core.utils.CategoryList` class. """ def __init__(self, name, weight=0): """ Constructor """ self.name = name self.weight = weight self.actions = CategoryActionList() class CategoryActionList(object): """ The :class:`~openlp.core.utils.CategoryActionList` class provides a sorted list of actions within a category. """ def __init__(self): """ Constructor """ self.index = 0 self.actions = [] def __contains__(self, key): """ Implement the __contains__() method to make this class a dictionary type """ for weight, action in self.actions: if action == key: return True return False def __len__(self): """ Implement the __len__() method to make this class a dictionary type """ return len(self.actions) def __iter__(self): """ Implement the __getitem__() method to make this class iterable """ return self def __next__(self): """ Python 3 "next" method. """ if self.index >= len(self.actions): self.index = 0 raise StopIteration else: self.index += 1 return self.actions[self.index - 1][1] def append(self, action): """ Append an action """ weight = 0 if self.actions: weight = self.actions[-1][0] + 1 self.add(action, weight) def add(self, action, weight=0): """ Add an action. """ self.actions.append((weight, action)) self.actions.sort(key=lambda act: act[0]) def remove(self, action): """ Remove an action """ for item in self.actions: if item[1] == action: self.actions.remove(item) return raise ValueError('Action "%s" does not exist.' % action) class CategoryList(object): """ The :class:`~openlp.core.utils.CategoryList` class encapsulates a category list for the :class:`~openlp.core.utils.ActionList` class and provides an iterator interface for walking through the list of actions in this category. """ def __init__(self): """ Constructor """ self.index = 0 self.categories = [] def __getitem__(self, key): """ Implement the __getitem__() method to make this class like a dictionary """ for category in self.categories: if category.name == key: return category raise KeyError('Category "%s" does not exist.' % key) def __len__(self): """ Implement the __len__() method to make this class like a dictionary """ return len(self.categories) def __iter__(self): """ Implement the __iter__() method to make this class like a dictionary """ return self def __next__(self): """ Python 3 "next" method for iterator. """ if self.index >= len(self.categories): self.index = 0 raise StopIteration else: self.index += 1 return self.categories[self.index - 1] def __contains__(self, key): """ Implement the __contains__() method to make this class like a dictionary """ for category in self.categories: if category.name == key: return True return False def append(self, name, actions=None): """ Append a category """ weight = 0 if self.categories: weight = self.categories[-1].weight + 1 self.add(name, weight, actions) def add(self, name, weight=0, actions=None): """ Add a category """ category = ActionCategory(name, weight) if actions: for action in actions: if isinstance(action, tuple): category.actions.add(action[0], action[1]) else: category.actions.append(action) self.categories.append(category) self.categories.sort(key=lambda cat: cat.weight) def remove(self, name): """ Remove a category """ for category in self.categories: if category.name == name: self.categories.remove(category) return raise ValueError('Category "%s" does not exist.' % name) class ActionList(object): """ The :class:`~openlp.core.utils.ActionList` class contains a list of menu actions and categories associated with those actions. Each category also has a weight by which it is sorted when iterating through the list of actions or categories. """ instance = None shortcut_map = {} def __init__(self): """ Constructor """ self.categories = CategoryList() @staticmethod def get_instance(): """ Get the instance of this class. """ if ActionList.instance is None: ActionList.instance = ActionList() return ActionList.instance def add_action(self, action, category=None, weight=None): """ Add an action to the list of actions. **Note**: The action's objectName must be set when you want to add it! :param action: The action to add (QAction). **Note**, the action must not have an empty ``objectName``. :param category: The category this action belongs to. The category has to be a python string. . **Note**, if the category is ``None``, the category and its actions are being hidden in the shortcut dialog. However, if they are added, it is possible to avoid assigning shortcuts twice, which is important. :param weight: The weight specifies how important a category is. However, this only has an impact on the order the categories are displayed. """ if category not in self.categories: self.categories.append(category) settings = Settings() settings.beginGroup('shortcuts') # Get the default shortcut from the config. action.default_shortcuts = settings.get_default_value(action.objectName()) if weight is None: self.categories[category].actions.append(action) else: self.categories[category].actions.add(action, weight) # Load the shortcut from the config. shortcuts = settings.value(action.objectName()) settings.endGroup() if not shortcuts: action.setShortcuts([]) return # We have to do this to ensure that the loaded shortcut list e. g. STRG+O (German) is converted to CTRL+O, # which is only done when we convert the strings in this way (QKeySequencet -> uncode). shortcuts = list(map(QtGui.QKeySequence.toString, list(map(QtGui.QKeySequence, shortcuts)))) # Check the alternate shortcut first, to avoid problems when the alternate shortcut becomes the primary shortcut # after removing the (initial) primary shortcut due to conflicts. if len(shortcuts) == 2: existing_actions = ActionList.shortcut_map.get(shortcuts[1], []) # Check for conflicts with other actions considering the shortcut context. if self._is_shortcut_available(existing_actions, action): actions = ActionList.shortcut_map.get(shortcuts[1], []) actions.append(action) ActionList.shortcut_map[shortcuts[1]] = actions else: log.warning('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' % (shortcuts[1], action.objectName())) shortcuts.remove(shortcuts[1]) # Check the primary shortcut. existing_actions = ActionList.shortcut_map.get(shortcuts[0], []) # Check for conflicts with other actions considering the shortcut context. if self._is_shortcut_available(existing_actions, action): actions = ActionList.shortcut_map.get(shortcuts[0], []) actions.append(action) ActionList.shortcut_map[shortcuts[0]] = actions else: log.warning('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' % (shortcuts[0], action.objectName())) shortcuts.remove(shortcuts[0]) action.setShortcuts([QtGui.QKeySequence(shortcut) for shortcut in shortcuts]) def remove_action(self, action, category=None): """ This removes an action from its category. Empty categories are automatically removed. :param action: The ``QAction`` object to be removed. :param category: The name (unicode string) of the category, which contains the action. Defaults to None. """ if category not in self.categories: return self.categories[category].actions.remove(action) # Remove empty categories. if not self.categories[category].actions: self.categories.remove(category) shortcuts = list(map(QtGui.QKeySequence.toString, action.shortcuts())) for shortcut in shortcuts: # Remove action from the list of actions which are using this shortcut. ActionList.shortcut_map[shortcut].remove(action) # Remove empty entries. if not ActionList.shortcut_map[shortcut]: del ActionList.shortcut_map[shortcut] def add_category(self, name, weight): """ Add an empty category to the list of categories. This is only convenient for categories with a given weight. :param name: The category's name. :param weight: The category's weight (int). """ if name in self.categories: # Only change the weight and resort the categories again. for category in self.categories: if category.name == name: category.weight = weight self.categories.categories.sort(key=lambda cat: cat.weight) return self.categories.add(name, weight) def update_shortcut_map(self, action, old_shortcuts): """ Remove the action for the given ``old_shortcuts`` from the ``shortcut_map`` to ensure its up-to-dateness. **Note**: The new action's shortcuts **must** be assigned to the given ``action`` **before** calling this method. :param action: The action whose shortcuts are supposed to be updated in the ``shortcut_map``. :param old_shortcuts: A list of unicode key sequences. """ for old_shortcut in old_shortcuts: # Remove action from the list of actions which are using this shortcut. ActionList.shortcut_map[old_shortcut].remove(action) # Remove empty entries. if not ActionList.shortcut_map[old_shortcut]: del ActionList.shortcut_map[old_shortcut] new_shortcuts = list(map(QtGui.QKeySequence.toString, action.shortcuts())) # Add the new shortcuts to the map. for new_shortcut in new_shortcuts: existing_actions = ActionList.shortcut_map.get(new_shortcut, []) existing_actions.append(action) ActionList.shortcut_map[new_shortcut] = existing_actions def _is_shortcut_available(self, existing_actions, action): """ Checks if the given ``action`` may use its assigned shortcut(s) or not. Returns ``True`` or ``False. :param existing_actions: A list of actions which already use a particular shortcut. :param action: The action which wants to use a particular shortcut. """ global_context = action.shortcutContext() in [QtCore.Qt.WindowShortcut, QtCore.Qt.ApplicationShortcut] affected_actions = [] if global_context: affected_actions = [a for a in self.get_all_child_objects(action.parent()) if isinstance(a, QtWidgets.QAction)] for existing_action in existing_actions: if action is existing_action: continue if existing_action in affected_actions: return False if existing_action.shortcutContext() in [QtCore.Qt.WindowShortcut, QtCore.Qt.ApplicationShortcut]: return False elif action in self.get_all_child_objects(existing_action.parent()): return False return True def get_all_child_objects(self, qobject): """ Goes recursively through the children of ``qobject`` and returns a list of all child objects. """ children = qobject.children() # Append the children's children. children.extend(list(map(self.get_all_child_objects, children))) return children class CategoryOrder(object): """ An enumeration class for category weights. """ standard_menu = -20 standard_toolbar = -10 OpenLP-2.4/openlp/core/utils/db.py0000644000175000017500000000602012657640340016073 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`db` module provides helper functions for database related methods. """ import sqlalchemy import logging from copy import deepcopy log = logging.getLogger(__name__) def drop_column(op, tablename, columnname): drop_columns(op, tablename, [columnname]) def drop_columns(op, tablename, columns): """ Column dropping functionality for SQLite, as there is no DROP COLUMN support in SQLite From https://github.com/klugjohannes/alembic-sqlite """ # get the db engine and reflect database tables engine = op.get_bind() meta = sqlalchemy.MetaData(bind=engine) meta.reflect() # create a select statement from the old table old_table = meta.tables[tablename] select = sqlalchemy.sql.select([c for c in old_table.c if c.name not in columns]) # get remaining columns without table attribute attached remaining_columns = [deepcopy(c) for c in old_table.columns if c.name not in columns] for column in remaining_columns: column.table = None # create a temporary new table new_tablename = '{0}_new'.format(tablename) op.create_table(new_tablename, *remaining_columns) meta.reflect() new_table = meta.tables[new_tablename] # copy data from old table insert = sqlalchemy.sql.insert(new_table).from_select([c.name for c in remaining_columns], select) engine.execute(insert) # drop the old table and rename the new table to take the old tables # position op.drop_table(tablename) op.rename_table(new_tablename, tablename) OpenLP-2.4/openlp/core/utils/__init__.py0000644000175000017500000005005712657640340017256 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`openlp.core.utils` module provides the utility libraries for OpenLP. """ from datetime import datetime from distutils.version import LooseVersion from http.client import HTTPException import logging import locale import os import platform import re import socket import time from shutil import which from subprocess import Popen, PIPE import sys import urllib.request import urllib.error import urllib.parse from random import randint from PyQt5 import QtGui, QtCore from openlp.core.common import Registry, AppLocation, Settings, is_win, is_macosx if not is_win() and not is_macosx(): try: from xdg import BaseDirectory XDG_BASE_AVAILABLE = True except ImportError: BaseDirectory = None XDG_BASE_AVAILABLE = False from openlp.core.common import translate log = logging.getLogger(__name__ + '.__init__') APPLICATION_VERSION = {} IMAGES_FILTER = None ICU_COLLATOR = None CONTROL_CHARS = re.compile(r'[\x00-\x1F\x7F-\x9F]', re.UNICODE) INVALID_FILE_CHARS = re.compile(r'[\\/:\*\?"<>\|\+\[\]%]', re.UNICODE) DIGITS_OR_NONDIGITS = re.compile(r'\d+|\D+', re.UNICODE) USER_AGENTS = { 'win32': [ 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36' ], 'darwin': [ 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) ' 'Chrome/26.0.1410.43 Safari/537.31', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/536.11 (KHTML, like Gecko) ' 'Chrome/20.0.1132.57 Safari/536.11', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/536.11 (KHTML, like Gecko) ' 'Chrome/20.0.1132.47 Safari/536.11', ], 'linux2': [ 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.22 (KHTML, like Gecko) Ubuntu Chromium/25.0.1364.160 ' 'Chrome/25.0.1364.160 Safari/537.22', 'Mozilla/5.0 (X11; CrOS armv7l 2913.260.0) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.99 ' 'Safari/537.11', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.27 (KHTML, like Gecko) Chrome/26.0.1389.0 Safari/537.27' ], 'default': [ 'Mozilla/5.0 (X11; NetBSD amd64; rv:18.0) Gecko/20130120 Firefox/18.0' ] } CONNECTION_TIMEOUT = 30 CONNECTION_RETRIES = 2 class VersionThread(QtCore.QThread): """ A special Qt thread class to fetch the version of OpenLP from the website. This is threaded so that it doesn't affect the loading time of OpenLP. """ def __init__(self, main_window): """ Constructor for the thread class. :param main_window: The main window Object. """ log.debug("VersionThread - Initialise") super(VersionThread, self).__init__(None) self.main_window = main_window def run(self): """ Run the thread. """ self.sleep(1) log.debug('Version thread - run') app_version = get_application_version() version = check_latest_version(app_version) log.debug("Versions %s and %s " % (LooseVersion(str(version)), LooseVersion(str(app_version['full'])))) if LooseVersion(str(version)) > LooseVersion(str(app_version['full'])): self.main_window.openlp_version_check.emit('%s' % version) class HTTPRedirectHandlerFixed(urllib.request.HTTPRedirectHandler): """ Special HTTPRedirectHandler used to work around http://bugs.python.org/issue22248 (Redirecting to urls with special chars) """ def redirect_request(self, req, fp, code, msg, headers, new_url): # """ Test if the new_url can be decoded to ascii :param req: :param fp: :param code: :param msg: :param headers: :param new_url: :return: """ try: new_url.encode('latin1').decode('ascii') fixed_url = new_url except Exception: # The url could not be decoded to ascii, so we do some url encoding fixed_url = urllib.parse.quote(new_url.encode('latin1').decode('utf-8', 'replace'), safe='/:') return super(HTTPRedirectHandlerFixed, self).redirect_request(req, fp, code, msg, headers, fixed_url) def get_application_version(): """ Returns the application version of the running instance of OpenLP:: {'full': '1.9.4-bzr1249', 'version': '1.9.4', 'build': 'bzr1249'} """ global APPLICATION_VERSION if APPLICATION_VERSION: return APPLICATION_VERSION if '--dev-version' in sys.argv or '-d' in sys.argv: # NOTE: The following code is a duplicate of the code in setup.py. Any fix applied here should also be applied # there. # Get the revision of this tree. bzr = Popen(('bzr', 'revno'), stdout=PIPE) tree_revision, error = bzr.communicate() tree_revision = tree_revision.decode() code = bzr.wait() if code != 0: raise Exception('Error running bzr log') # Get all tags. bzr = Popen(('bzr', 'tags'), stdout=PIPE) output, error = bzr.communicate() code = bzr.wait() if code != 0: raise Exception('Error running bzr tags') tags = list(map(bytes.decode, output.splitlines())) if not tags: tag_version = '0.0.0' tag_revision = '0' else: # Remove any tag that has "?" as revision number. A "?" as revision number indicates, that this tag is from # another series. tags = [tag for tag in tags if tag.split()[-1].strip() != '?'] # Get the last tag and split it in a revision and tag name. tag_version, tag_revision = tags[-1].split() # If they are equal, then this tree is tarball with the source for the release. We do not want the revision # number in the full version. if tree_revision == tag_revision: full_version = tag_version.decode('utf-8') else: full_version = '%s-bzr%s' % (tag_version.decode('utf-8'), tree_revision.decode('utf-8')) else: # We're not running the development version, let's use the file. file_path = AppLocation.get_directory(AppLocation.VersionDir) file_path = os.path.join(file_path, '.version') version_file = None try: version_file = open(file_path, 'r') full_version = str(version_file.read()).rstrip() except IOError: log.exception('Error in version file.') full_version = '0.0.0-bzr000' finally: if version_file: version_file.close() bits = full_version.split('-') APPLICATION_VERSION = { 'full': full_version, 'version': bits[0], 'build': bits[1] if len(bits) > 1 else None } if APPLICATION_VERSION['build']: log.info('Openlp version %s build %s', APPLICATION_VERSION['version'], APPLICATION_VERSION['build']) else: log.info('Openlp version %s' % APPLICATION_VERSION['version']) return APPLICATION_VERSION def check_latest_version(current_version): """ Check the latest version of OpenLP against the version file on the OpenLP site. **Rules around versions and version files:** * If a version number has a build (i.e. -bzr1234), then it is a nightly. * If a version number's minor version is an odd number, it is a development release. * If a version number's minor version is an even number, it is a stable release. :param current_version: The current version of OpenLP. """ version_string = current_version['full'] # set to prod in the distribution config file. settings = Settings() settings.beginGroup('core') last_test = settings.value('last version test') this_test = str(datetime.now().date()) settings.setValue('last version test', this_test) settings.endGroup() if last_test != this_test: if current_version['build']: req = urllib.request.Request('http://www.openlp.org/files/nightly_version.txt') else: version_parts = current_version['version'].split('.') if int(version_parts[1]) % 2 != 0: req = urllib.request.Request('http://www.openlp.org/files/dev_version.txt') else: req = urllib.request.Request('http://www.openlp.org/files/version.txt') req.add_header('User-Agent', 'OpenLP/%s %s/%s; ' % (current_version['full'], platform.system(), platform.release())) remote_version = None retries = 0 while True: try: remote_version = str(urllib.request.urlopen(req, None, timeout=CONNECTION_TIMEOUT).read().decode()).strip() except (urllib.error.URLError, ConnectionError): if retries > CONNECTION_RETRIES: log.exception('Failed to download the latest OpenLP version file') else: retries += 1 time.sleep(0.1) continue break if remote_version: version_string = remote_version return version_string def add_actions(target, actions): """ Adds multiple actions to a menu or toolbar in one command. :param target: The menu or toolbar to add actions to :param actions: The actions to be added. An action consisting of the keyword ``None`` will result in a separator being inserted into the target. """ for action in actions: if action is None: target.addSeparator() else: target.addAction(action) def get_filesystem_encoding(): """ Returns the name of the encoding used to convert Unicode filenames into system file names. """ encoding = sys.getfilesystemencoding() if encoding is None: encoding = sys.getdefaultencoding() return encoding def get_images_filter(): """ Returns a filter string for a file dialog containing all the supported image formats. """ global IMAGES_FILTER if not IMAGES_FILTER: log.debug('Generating images filter.') formats = list(map(bytes.decode, list(map(bytes, QtGui.QImageReader.supportedImageFormats())))) visible_formats = '(*.%s)' % '; *.'.join(formats) actual_formats = '(*.%s)' % ' *.'.join(formats) IMAGES_FILTER = '%s %s %s' % (translate('OpenLP', 'Image Files'), visible_formats, actual_formats) return IMAGES_FILTER def is_not_image_file(file_name): """ Validate that the file is not an image file. :param file_name: File name to be checked. """ if not file_name: return True else: formats = [bytes(fmt).decode().lower() for fmt in QtGui.QImageReader.supportedImageFormats()] file_part, file_extension = os.path.splitext(str(file_name)) if file_extension[1:].lower() in formats and os.path.exists(file_name): return False return True def split_filename(path): """ Return a list of the parts in a given path. """ path = os.path.abspath(path) if not os.path.isfile(path): return path, '' else: return os.path.split(path) def clean_filename(filename): """ Removes invalid characters from the given ``filename``. :param filename: The "dirty" file name to clean. """ if not isinstance(filename, str): filename = str(filename, 'utf-8') return INVALID_FILE_CHARS.sub('_', CONTROL_CHARS.sub('', filename)) def delete_file(file_path_name): """ Deletes a file from the system. :param file_path_name: The file, including path, to delete. """ if not file_path_name: return False try: if os.path.exists(file_path_name): os.remove(file_path_name) return True except (IOError, OSError): log.exception("Unable to delete file %s" % file_path_name) return False def _get_user_agent(): """ Return a user agent customised for the platform the user is on. """ browser_list = USER_AGENTS.get(sys.platform, None) if not browser_list: browser_list = USER_AGENTS['default'] random_index = randint(0, len(browser_list) - 1) return browser_list[random_index] def get_web_page(url, header=None, update_openlp=False): """ Attempts to download the webpage at url and returns that page or None. :param url: The URL to be downloaded. :param header: An optional HTTP header to pass in the request to the web server. :param update_openlp: Tells OpenLP to update itself if the page is successfully downloaded. Defaults to False. """ # TODO: Add proxy usage. Get proxy info from OpenLP settings, add to a # proxy_handler, build into an opener and install the opener into urllib2. # http://docs.python.org/library/urllib2.html if not url: return None # This is needed to work around http://bugs.python.org/issue22248 and https://bugs.launchpad.net/openlp/+bug/1251437 opener = urllib.request.build_opener(HTTPRedirectHandlerFixed()) urllib.request.install_opener(opener) req = urllib.request.Request(url) if not header or header[0].lower() != 'user-agent': user_agent = _get_user_agent() req.add_header('User-Agent', user_agent) if header: req.add_header(header[0], header[1]) log.debug('Downloading URL = %s' % url) retries = 0 while retries <= CONNECTION_RETRIES: retries += 1 time.sleep(0.1) try: page = urllib.request.urlopen(req, timeout=CONNECTION_TIMEOUT) log.debug('Downloaded page {}'.format(page.geturl())) break except urllib.error.URLError as err: log.exception('URLError on {}'.format(url)) log.exception('URLError: {}'.format(err.reason)) page = None if retries > CONNECTION_RETRIES: raise except socket.timeout: log.exception('Socket timeout: {}'.format(url)) page = None if retries > CONNECTION_RETRIES: raise except socket.gaierror: log.exception('Socket gaierror: {}'.format(url)) page = None if retries > CONNECTION_RETRIES: raise except ConnectionRefusedError: log.exception('ConnectionRefused: {}'.format(url)) page = None if retries > CONNECTION_RETRIES: raise break except ConnectionError: log.exception('Connection error: {}'.format(url)) page = None if retries > CONNECTION_RETRIES: raise except HTTPException: log.exception('HTTPException error: {}'.format(url)) page = None if retries > CONNECTION_RETRIES: raise except: # Don't know what's happening, so reraise the original raise if update_openlp: Registry().get('application').process_events() if not page: log.exception('{} could not be downloaded'.format(url)) return None log.debug(page) return page def get_uno_command(connection_type='pipe'): """ Returns the UNO command to launch an openoffice.org instance. """ for command in ['libreoffice', 'soffice']: if which(command): break else: raise FileNotFoundError('Command not found') OPTIONS = '--nologo --norestore --minimized --nodefault --nofirststartwizard' if connection_type == 'pipe': CONNECTION = '"--accept=pipe,name=openlp_pipe;urp;"' else: CONNECTION = '"--accept=socket,host=localhost,port=2002;urp;"' return '%s %s %s' % (command, OPTIONS, CONNECTION) def get_uno_instance(resolver, connection_type='pipe'): """ Returns a running openoffice.org instance. :param resolver: The UNO resolver to use to find a running instance. """ log.debug('get UNO Desktop Openoffice - resolve') if connection_type == 'pipe': return resolver.resolve('uno:pipe,name=openlp_pipe;urp;StarOffice.ComponentContext') else: return resolver.resolve('uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext') def format_time(text, local_time): """ Workaround for Python built-in time formatting function time.strftime(). time.strftime() accepts only ascii characters. This function accepts unicode string and passes individual % placeholders to time.strftime(). This ensures only ascii characters are passed to time.strftime(). :param text: The text to be processed. :param local_time: The time to be used to add to the string. This is a time object """ def match_formatting(match): """ Format the match """ return local_time.strftime(match.group()) return re.sub('\%[a-zA-Z]', match_formatting, text) def get_locale_key(string): """ Creates a key for case insensitive, locale aware string sorting. :param string: The corresponding string. """ string = string.lower() # ICU is the prefered way to handle locale sort key, we fallback to locale.strxfrm which will work in most cases. global ICU_COLLATOR try: if ICU_COLLATOR is None: import icu from .languagemanager import LanguageManager language = LanguageManager.get_language() icu_locale = icu.Locale(language) ICU_COLLATOR = icu.Collator.createInstance(icu_locale) return ICU_COLLATOR.getSortKey(string) except: return locale.strxfrm(string).encode() def get_natural_key(string): """ Generate a key for locale aware natural string sorting. Returns a list of string compare keys and integers. """ key = DIGITS_OR_NONDIGITS.findall(string) key = [int(part) if part.isdigit() else get_locale_key(part) for part in key] # Python 3 does not support comparison of different types anymore. So make sure, that we do not compare str # and int. if string[0].isdigit(): return [b''] + key return key from .languagemanager import LanguageManager from .actions import ActionList __all__ = ['ActionList', 'LanguageManager', 'get_application_version', 'check_latest_version', 'add_actions', 'get_filesystem_encoding', 'get_web_page', 'get_uno_command', 'get_uno_instance', 'delete_file', 'clean_filename', 'format_time', 'get_locale_key', 'get_natural_key'] OpenLP-2.4/openlp/core/utils/languagemanager.py0000644000175000017500000001411012657640340020623 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`languagemanager` module provides all the translation settings and language file loading for OpenLP. """ import logging import re import sys from PyQt5 import QtCore, QtWidgets from openlp.core.common import AppLocation, Settings, translate, is_win, is_macosx log = logging.getLogger(__name__) class LanguageManager(object): """ Helper for Language selection """ __qm_list__ = {} auto_language = False @staticmethod def get_translator(language): """ Set up a translator to use in this instance of OpenLP :param language: The language to load into the translator """ if LanguageManager.auto_language: language = QtCore.QLocale.system().name() lang_path = AppLocation.get_directory(AppLocation.LanguageDir) app_translator = QtCore.QTranslator() app_translator.load(language, lang_path) # A translator for buttons and other default strings provided by Qt. if not is_win() and not is_macosx(): lang_path = QtCore.QLibraryInfo.location(QtCore.QLibraryInfo.TranslationsPath) default_translator = QtCore.QTranslator() default_translator.load('qt_%s' % language, lang_path) return app_translator, default_translator @staticmethod def find_qm_files(): """ Find all available language files in this OpenLP install """ log.debug('Translation files: %s', AppLocation.get_directory(AppLocation.LanguageDir)) trans_dir = QtCore.QDir(AppLocation.get_directory(AppLocation.LanguageDir)) file_names = trans_dir.entryList(['*.qm'], QtCore.QDir.Files, QtCore.QDir.Name) # Remove qm files from the list which start with "qt_". file_names = [file_ for file_ in file_names if not file_.startswith('qt_')] return list(map(trans_dir.filePath, file_names)) @staticmethod def language_name(qm_file): """ Load the language name from a language file :param qm_file: The file to obtain the name from """ translator = QtCore.QTranslator() translator.load(qm_file) return translator.translate('OpenLP.MainWindow', 'English', 'Please add the name of your language here') @staticmethod def get_language(): """ Retrieve a saved language to use from settings """ language = Settings().value('core/language') language = str(language) log.info('Language file: \'%s\' Loaded from conf file' % language) if re.match(r'[[].*[]]', language): LanguageManager.auto_language = True language = re.sub(r'[\[\]]', '', language) return language @staticmethod def set_language(action, message=True): """ Set the language to translate OpenLP into :param action: The language menu option :param message: Display the message option """ language = 'en' if action: action_name = str(action.objectName()) if action_name == 'autoLanguageItem': LanguageManager.auto_language = True else: LanguageManager.auto_language = False qm_list = LanguageManager.get_qm_list() language = str(qm_list[action_name]) if LanguageManager.auto_language: language = '[%s]' % language Settings().setValue('core/language', language) log.info('Language file: \'%s\' written to conf file' % language) if message: QtWidgets.QMessageBox.information(None, translate('OpenLP.LanguageManager', 'Language'), translate('OpenLP.LanguageManager', 'Please restart OpenLP to use your new language setting.')) @staticmethod def init_qm_list(): """ Initialise the list of available translations """ LanguageManager.__qm_list__ = {} qm_files = LanguageManager.find_qm_files() for counter, qmf in enumerate(qm_files): reg_ex = QtCore.QRegExp("^.*i18n/(.*).qm") if reg_ex.exactMatch(qmf): name = '%s' % reg_ex.cap(1) LanguageManager.__qm_list__['%#2i %s' % (counter + 1, LanguageManager.language_name(qmf))] = name @staticmethod def get_qm_list(): """ Return the list of available translations """ if not LanguageManager.__qm_list__: LanguageManager.init_qm_list() return LanguageManager.__qm_list__ OpenLP-2.4/openlp/core/__init__.py0000644000175000017500000004174312660157324016117 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`core` module provides all core application functions All the core functions of the OpenLP application including the GUI, settings, logging and a plugin framework are contained within the openlp.core module. """ import os import sys import logging import argparse from traceback import format_exception import shutil import time from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, OpenLPMixin, AppLocation, Settings, UiStrings, check_directory_exists, \ is_macosx, is_win, translate from openlp.core.lib import ScreenList from openlp.core.resources import qInitResources from openlp.core.ui.mainwindow import MainWindow from openlp.core.ui.firsttimelanguageform import FirstTimeLanguageForm from openlp.core.ui.firsttimeform import FirstTimeForm from openlp.core.ui.exceptionform import ExceptionForm from openlp.core.ui import SplashScreen from openlp.core.utils import LanguageManager, VersionThread, get_application_version __all__ = ['OpenLP', 'main'] log = logging.getLogger() WIN_REPAIR_STYLESHEET = """ QMainWindow::separator { border: none; } QDockWidget::title { border: 1px solid palette(dark); padding-left: 5px; padding-top: 2px; margin: 1px 0; } QToolBar { border: none; margin: 0; padding: 0; } """ class OpenLP(OpenLPMixin, QtWidgets.QApplication): """ The core application class. This class inherits from Qt's QApplication class in order to provide the core of the application. """ args = [] def exec(self): """ Override exec method to allow the shared memory to be released on exit """ self.is_event_loop_active = True result = QtWidgets.QApplication.exec() self.shared_memory.detach() return result def run(self, args): """ Run the OpenLP application. :param args: Some Args """ self.is_event_loop_active = False # On Windows, the args passed into the constructor are ignored. Not very handy, so set the ones we want to use. # On Linux and FreeBSD, in order to set the WM_CLASS property for X11, we pass "OpenLP" in as a command line # argument. This interferes with files being passed in as command line arguments, so we remove it from the list. if 'OpenLP' in args: args.remove('OpenLP') self.args.extend(args) # Decide how many screens we have and their size screens = ScreenList.create(self.desktop()) # First time checks in settings has_run_wizard = Settings().value('core/has run wizard') if not has_run_wizard: ftw = FirstTimeForm() ftw.initialize(screens) if ftw.exec() == QtWidgets.QDialog.Accepted: Settings().setValue('core/has run wizard', True) elif ftw.was_cancelled: QtCore.QCoreApplication.exit() sys.exit() # Correct stylesheet bugs application_stylesheet = '' if not Settings().value('advanced/alternate rows'): base_color = self.palette().color(QtGui.QPalette.Active, QtGui.QPalette.Base) alternate_rows_repair_stylesheet = \ 'QTableWidget, QListWidget, QTreeWidget {alternate-background-color: ' + base_color.name() + ';}\n' application_stylesheet += alternate_rows_repair_stylesheet if is_win(): application_stylesheet += WIN_REPAIR_STYLESHEET if application_stylesheet: self.setStyleSheet(application_stylesheet) show_splash = Settings().value('core/show splash') if show_splash: self.splash = SplashScreen() self.splash.show() # make sure Qt really display the splash screen self.processEvents() # Check if OpenLP has been upgrade and if a backup of data should be created self.backup_on_upgrade(has_run_wizard) # start the main app window self.main_window = MainWindow() Registry().execute('bootstrap_initialise') Registry().execute('bootstrap_post_set_up') Registry().initialise = False self.main_window.show() if show_splash: # now kill the splashscreen self.splash.finish(self.main_window) log.debug('Splashscreen closed') # make sure Qt really display the splash screen self.processEvents() self.main_window.repaint() self.processEvents() if not has_run_wizard: self.main_window.first_time() update_check = Settings().value('core/update check') if update_check: version = VersionThread(self.main_window) version.start() self.main_window.is_display_blank() self.main_window.app_startup() return self.exec() def is_already_running(self): """ Look to see if OpenLP is already running and ask if a 2nd instance is to be started. """ self.shared_memory = QtCore.QSharedMemory('OpenLP') if self.shared_memory.attach(): status = QtWidgets.QMessageBox.critical(None, UiStrings().Error, UiStrings().OpenLPStart, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No)) if status == QtWidgets.QMessageBox.No: return True return False else: self.shared_memory.create(1) return False def hook_exception(self, exc_type, value, traceback): """ Add an exception hook so that any uncaught exceptions are displayed in this window rather than somewhere where users cannot see it and cannot report when we encounter these problems. :param exc_type: The class of exception. :param value: The actual exception object. :param traceback: A traceback object with the details of where the exception occurred. """ # We can't log.exception here because the last exception no longer exists, we're actually busy handling it. log.critical(''.join(format_exception(exc_type, value, traceback))) if not hasattr(self, 'exception_form'): self.exception_form = ExceptionForm() self.exception_form.exception_text_edit.setPlainText(''.join(format_exception(exc_type, value, traceback))) self.set_normal_cursor() self.exception_form.exec() def backup_on_upgrade(self, has_run_wizard): """ Check if OpenLP has been upgraded, and ask if a backup of data should be made :param has_run_wizard: OpenLP has been run before """ data_version = Settings().value('core/application version') openlp_version = get_application_version()['version'] # New installation, no need to create backup if not has_run_wizard: Settings().setValue('core/application version', openlp_version) # If data_version is different from the current version ask if we should backup the data folder elif data_version != openlp_version: if QtWidgets.QMessageBox.question(None, translate('OpenLP', 'Backup'), translate('OpenLP', 'OpenLP has been upgraded, do you want to create ' 'a backup of OpenLPs data folder?'), QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.Yes) == QtWidgets.QMessageBox.Yes: # Create copy of data folder data_folder_path = AppLocation.get_data_path() timestamp = time.strftime("%Y%m%d-%H%M%S") data_folder_backup_path = data_folder_path + '-' + timestamp try: shutil.copytree(data_folder_path, data_folder_backup_path) except OSError: QtWidgets.QMessageBox.warning(None, translate('OpenLP', 'Backup'), translate('OpenLP', 'Backup of the data folder failed!')) return QtWidgets.QMessageBox.information(None, translate('OpenLP', 'Backup'), translate('OpenLP', 'A backup of the data folder has been created at %s') % data_folder_backup_path) # Update the version in the settings Settings().setValue('core/application version', openlp_version) def process_events(self): """ Wrapper to make ProcessEvents visible and named correctly """ self.processEvents() def set_busy_cursor(self): """ Sets the Busy Cursor for the Application """ self.setOverrideCursor(QtCore.Qt.BusyCursor) self.processEvents() def set_normal_cursor(self): """ Sets the Normal Cursor for the Application """ self.restoreOverrideCursor() self.processEvents() def event(self, event): """ Enables platform specific event handling i.e. direct file opening on OS X :param event: The event """ if event.type() == QtCore.QEvent.FileOpen: file_name = event.file() log.debug('Got open file event for %s!', file_name) self.args.insert(0, file_name) return True # Mac OS X should restore app window when user clicked on the OpenLP icon # in the Dock bar. However, OpenLP consists of multiple windows and this # does not work. This workaround fixes that. # The main OpenLP window is restored when it was previously minimized. elif event.type() == QtCore.QEvent.ApplicationActivate: if is_macosx() and hasattr(self, 'main_window'): if self.main_window.isMinimized(): # Copied from QWidget.setWindowState() docs on how to restore and activate a minimized window # while preserving its maximized and/or full-screen state. self.main_window.setWindowState(self.main_window.windowState() & ~QtCore.Qt.WindowMinimized | QtCore.Qt.WindowActive) return True return QtWidgets.QApplication.event(self, event) def parse_options(args): """ Parse the command line arguments :param args: list of command line arguments :return: a tuple of parsed options of type optparse.Value and a list of remaining argsZ """ # Set up command line options. parser = argparse.ArgumentParser(prog='openlp.py') parser.add_argument('-e', '--no-error-form', dest='no_error_form', action='store_true', help='Disable the error notification form.') parser.add_argument('-l', '--log-level', dest='loglevel', default='warning', metavar='LEVEL', help='Set logging to LEVEL level. Valid values are "debug", "info", "warning".') parser.add_argument('-p', '--portable', dest='portable', action='store_true', help='Specify if this should be run as a portable app, ' 'off a USB flash drive (not implemented).') parser.add_argument('-d', '--dev-version', dest='dev_version', action='store_true', help='Ignore the version file and pull the version directly from Bazaar') parser.add_argument('-s', '--style', dest='style', help='Set the Qt5 style (passed directly to Qt5).') parser.add_argument('rargs', nargs='?', default=[]) # Parse command line options and deal with them. Use args supplied pragmatically if possible. return parser.parse_args(args) if args else parser.parse_args() def set_up_logging(log_path): """ Setup our logging using log_path :param log_path: the path """ check_directory_exists(log_path, True) filename = os.path.join(log_path, 'openlp.log') logfile = logging.FileHandler(filename, 'w', encoding="UTF-8") logfile.setFormatter(logging.Formatter('%(asctime)s %(name)-55s %(levelname)-8s %(message)s')) log.addHandler(logfile) if log.isEnabledFor(logging.DEBUG): print('Logging to: %s' % filename) def main(args=None): """ The main function which parses command line options and then runs :param args: Some args """ args = parse_options(args) qt_args = [] if args and args.loglevel.lower() in ['d', 'debug']: log.setLevel(logging.DEBUG) elif args and args.loglevel.lower() in ['w', 'warning']: log.setLevel(logging.WARNING) else: log.setLevel(logging.INFO) if args and args.style: qt_args.extend(['-style', args.style]) # Throw the rest of the arguments at Qt, just in case. qt_args.extend(args.rargs) # Bug #1018855: Set the WM_CLASS property in X11 if not is_win() and not is_macosx(): qt_args.append('OpenLP') # Initialise the resources qInitResources() # Now create and actually run the application. application = OpenLP(qt_args) application.setOrganizationName('OpenLP') application.setOrganizationDomain('openlp.org') application.setAttribute(QtCore.Qt.AA_UseHighDpiPixmaps, True) if args and args.portable: application.setApplicationName('OpenLPPortable') Settings.setDefaultFormat(Settings.IniFormat) # Get location OpenLPPortable.ini application_path = AppLocation.get_directory(AppLocation.AppDir) set_up_logging(os.path.abspath(os.path.join(application_path, '..', '..', 'Other'))) log.info('Running portable') portable_settings_file = os.path.abspath(os.path.join(application_path, '..', '..', 'Data', 'OpenLP.ini')) # Make this our settings file log.info('INI file: %s', portable_settings_file) Settings.set_filename(portable_settings_file) portable_settings = Settings() # Set our data path data_path = os.path.abspath(os.path.join(application_path, '..', '..', 'Data',)) log.info('Data path: %s', data_path) # Point to our data path portable_settings.setValue('advanced/data path', data_path) portable_settings.setValue('advanced/is portable', True) portable_settings.sync() else: application.setApplicationName('OpenLP') set_up_logging(AppLocation.get_directory(AppLocation.CacheDir)) Registry.create() Registry().register('application', application) application.setApplicationVersion(get_application_version()['version']) # Instance check if application.is_already_running(): sys.exit() # Remove/convert obsolete settings. Settings().remove_obsolete_settings() # First time checks in settings if not Settings().value('core/has run wizard'): if not FirstTimeLanguageForm().exec(): # if cancel then stop processing sys.exit() # i18n Set Language language = LanguageManager.get_language() application_translator, default_translator = LanguageManager.get_translator(language) if not application_translator.isEmpty(): application.installTranslator(application_translator) if not default_translator.isEmpty(): application.installTranslator(default_translator) else: log.debug('Could not find default_translator.') if args and not args.no_error_form: sys.excepthook = application.hook_exception sys.exit(application.run(qt_args)) OpenLP-2.4/openlp/core/lib/0000755000175000017500000000000012663134435014544 5ustar raoulraoulOpenLP-2.4/openlp/core/lib/listwidgetwithdnd.py0000644000175000017500000001047312657640340020664 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Extend QListWidget to handle drag and drop functionality """ import os from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry class ListWidgetWithDnD(QtWidgets.QListWidget): """ Provide a list widget to store objects and handle drag and drop events """ def __init__(self, parent=None, name=''): """ Initialise the list widget """ super(ListWidgetWithDnD, self).__init__(parent) self.mime_data_text = name def activateDnD(self): """ Activate DnD of widget """ self.setAcceptDrops(True) self.setDragDropMode(QtWidgets.QAbstractItemView.DragDrop) Registry().register_function(('%s_dnd' % self.mime_data_text), self.parent().load_file) def mouseMoveEvent(self, event): """ Drag and drop event does not care what data is selected as the recipient will use events to request the data move just tell it what plugin to call """ if event.buttons() != QtCore.Qt.LeftButton: event.ignore() return if not self.selectedItems(): event.ignore() return drag = QtGui.QDrag(self) mime_data = QtCore.QMimeData() drag.setMimeData(mime_data) mime_data.setText(self.mime_data_text) drag.exec(QtCore.Qt.CopyAction) def dragEnterEvent(self, event): """ When something is dragged into this object, check if you should be able to drop it in here. """ if event.mimeData().hasUrls(): event.accept() else: event.ignore() def dragMoveEvent(self, event): """ Make an object droppable, and set it to copy the contents of the object, not move it. """ if event.mimeData().hasUrls(): event.setDropAction(QtCore.Qt.CopyAction) event.accept() else: event.ignore() def dropEvent(self, event): """ Receive drop event check if it is a file and process it if it is. :param event: Handle of the event pint passed """ if event.mimeData().hasUrls(): event.setDropAction(QtCore.Qt.CopyAction) event.accept() files = [] for url in event.mimeData().urls(): local_file = os.path.normpath(url.toLocalFile()) if os.path.isfile(local_file): files.append(local_file) elif os.path.isdir(local_file): listing = os.listdir(local_file) for file in listing: files.append(os.path.join(local_file, file)) Registry().execute('%s_dnd' % self.mime_data_text, {'files': files, 'target': self.itemAt(event.pos())}) else: event.ignore() OpenLP-2.4/openlp/core/lib/mediamanageritem.py0000644000175000017500000007175212657640340020423 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provides the generic functions for interfacing plugins with the Media Manager. """ import logging import os import re from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, Settings, UiStrings, translate from openlp.core.lib import FileDialog, OpenLPToolbar, ServiceItem, StringContent, ListWidgetWithDnD, \ ServiceItemContext from openlp.core.lib.searchedit import SearchEdit from openlp.core.lib.ui import create_widget_action, critical_error_message_box log = logging.getLogger(__name__) class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): """ MediaManagerItem is a helper widget for plugins. None of the following *need* to be used, feel free to override them completely in your plugin's implementation. Alternatively, call them from your plugin before or after you've done extra things that you need to. **Constructor Parameters** ``parent`` The parent widget. Usually this will be the *Media Manager* itself. This needs to be a class descended from ``QWidget``. ``plugin`` The plugin widget. Usually this will be the *Plugin* itself. This needs to be a class descended from ``Plugin``. **Member Variables** When creating a descendant class from this class for your plugin, the following member variables should be set. ``self.on_new_prompt`` Defaults to *'Select Image(s)'*. ``self.on_new_file_masks`` Defaults to *'Images (*.jpg *jpeg *.gif *.png *.bmp)'*. This assumes that the new action is to load a file. If not, you need to override the ``OnNew`` method. ``self.PreviewFunction`` This must be a method which returns a QImage to represent the item (usually a preview). No scaling is required, that is performed automatically by OpenLP when necessary. If this method is not defined, a default will be used (treat the filename as an image). """ log.info('Media Item loaded') def __init__(self, parent=None, plugin=None): """ Constructor to create the media manager item. """ super(MediaManagerItem, self).__init__(parent) self.plugin = plugin self._setup() self.setup_item() def _setup(self): """ Run some initial setup. This method is separate from __init__ in order to mock it out in tests. """ self.hide() self.whitespace = re.compile(r'[\W_]+', re.UNICODE) visible_title = self.plugin.get_string(StringContent.VisibleName) self.title = str(visible_title['title']) Registry().register(self.plugin.name, self) self.settings_section = self.plugin.name self.toolbar = None self.remote_triggered = None self.single_service_item = True self.quick_preview_allowed = False self.has_search = False self.page_layout = QtWidgets.QVBoxLayout(self) self.page_layout.setSpacing(0) self.page_layout.setContentsMargins(0, 0, 0, 0) self.required_icons() self.setupUi() self.retranslateUi() self.auto_select_id = -1 def setup_item(self): """ Override this for additional Plugin setup """ pass def required_icons(self): """ This method is called to define the icons for the plugin. It provides a default set and the plugin is able to override the if required. """ self.has_import_icon = False self.has_new_icon = True self.has_edit_icon = True self.has_file_icon = False self.has_delete_icon = True self.add_to_service_item = False def retranslateUi(self): """ This method is called automatically to provide OpenLP with the opportunity to translate the ``MediaManagerItem`` to another language. """ pass def add_toolbar(self): """ A method to help developers easily add a toolbar to the media manager item. """ if self.toolbar is None: self.toolbar = OpenLPToolbar(self) self.page_layout.addWidget(self.toolbar) def setupUi(self): """ This method sets up the interface on the button. Plugin developers use this to add and create toolbars, and the rest of the interface of the media manager item. """ # Add a toolbar self.add_toolbar() # Allow the plugin to define buttons at start of bar self.add_start_header_bar() # Add the middle of the tool bar (pre defined) self.add_middle_header_bar() # Allow the plugin to define buttons at end of bar self.add_end_header_bar() # Add the list view self.add_list_view_to_toolbar() def add_middle_header_bar(self): """ Create buttons for the media item toolbar """ toolbar_actions = [] # Import Button if self.has_import_icon: toolbar_actions.append(['Import', StringContent.Import, ':/general/general_import.png', self.on_import_click]) # Load Button if self.has_file_icon: toolbar_actions.append(['Load', StringContent.Load, ':/general/general_open.png', self.on_file_click]) # New Button if self.has_new_icon: toolbar_actions.append(['New', StringContent.New, ':/general/general_new.png', self.on_new_click]) # Edit Button if self.has_edit_icon: toolbar_actions.append(['Edit', StringContent.Edit, ':/general/general_edit.png', self.on_edit_click]) # Delete Button if self.has_delete_icon: toolbar_actions.append(['Delete', StringContent.Delete, ':/general/general_delete.png', self.on_delete_click]) # Preview toolbar_actions.append(['Preview', StringContent.Preview, ':/general/general_preview.png', self.on_preview_click]) # Live Button toolbar_actions.append(['Live', StringContent.Live, ':/general/general_live.png', self.on_live_click]) # Add to service Button toolbar_actions.append(['Service', StringContent.Service, ':/general/general_add.png', self.on_add_click]) for action in toolbar_actions: if action[0] == StringContent.Preview: self.toolbar.addSeparator() self.toolbar.add_toolbar_action('%s%sAction' % (self.plugin.name, action[0]), text=self.plugin.get_string(action[1])['title'], icon=action[2], tooltip=self.plugin.get_string(action[1])['tooltip'], triggers=action[3]) def add_list_view_to_toolbar(self): """ Creates the main widget for listing items the media item is tracking """ # Add the List widget self.list_view = ListWidgetWithDnD(self, self.plugin.name) self.list_view.setSpacing(1) self.list_view.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) self.list_view.setAlternatingRowColors(True) self.list_view.setObjectName('%sListView' % self.plugin.name) # Add to page_layout self.page_layout.addWidget(self.list_view) # define and add the context menu self.list_view.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) if self.has_edit_icon: create_widget_action(self.list_view, text=self.plugin.get_string(StringContent.Edit)['title'], icon=':/general/general_edit.png', triggers=self.on_edit_click) create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, 'listView%s%sItem' % (self.plugin.name.title(), StringContent.Preview.title()), text=self.plugin.get_string(StringContent.Preview)['title'], icon=':/general/general_preview.png', can_shortcuts=True, triggers=self.on_preview_click) create_widget_action(self.list_view, 'listView%s%sItem' % (self.plugin.name.title(), StringContent.Live.title()), text=self.plugin.get_string(StringContent.Live)['title'], icon=':/general/general_live.png', can_shortcuts=True, triggers=self.on_live_click) create_widget_action(self.list_view, 'listView%s%sItem' % (self.plugin.name.title(), StringContent.Service.title()), can_shortcuts=True, text=self.plugin.get_string(StringContent.Service)['title'], icon=':/general/general_add.png', triggers=self.on_add_click) if self.has_delete_icon: create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, 'listView%s%sItem' % (self.plugin.name.title(), StringContent.Delete.title()), text=self.plugin.get_string(StringContent.Delete)['title'], icon=':/general/general_delete.png', can_shortcuts=True, triggers=self.on_delete_click) if self.add_to_service_item: create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, text=translate('OpenLP.MediaManagerItem', '&Add to selected Service Item'), icon=':/general/general_add.png', triggers=self.on_add_edit_click) self.add_custom_context_actions() # Create the context menu and add all actions from the list_view. self.menu = QtWidgets.QMenu() self.menu.addActions(self.list_view.actions()) self.list_view.doubleClicked.connect(self.on_double_clicked) self.list_view.itemSelectionChanged.connect(self.on_selection_change) self.list_view.customContextMenuRequested.connect(self.context_menu) def add_search_to_toolbar(self): """ Creates a search field with button and related signal handling. """ self.search_widget = QtWidgets.QWidget(self) self.search_widget.setObjectName('search_widget') self.search_layout = QtWidgets.QVBoxLayout(self.search_widget) self.search_layout.setObjectName('search_layout') self.search_text_layout = QtWidgets.QFormLayout() self.search_text_layout.setObjectName('search_text_layout') self.search_text_label = QtWidgets.QLabel(self.search_widget) self.search_text_label.setObjectName('search_text_label') self.search_text_edit = SearchEdit(self.search_widget) self.search_text_edit.setObjectName('search_text_edit') self.search_text_label.setBuddy(self.search_text_edit) self.search_text_layout.addRow(self.search_text_label, self.search_text_edit) self.search_layout.addLayout(self.search_text_layout) self.search_button_layout = QtWidgets.QHBoxLayout() self.search_button_layout.setObjectName('search_button_layout') self.search_button_layout.addStretch() self.search_text_button = QtWidgets.QPushButton(self.search_widget) self.search_text_button.setObjectName('search_text_button') self.search_button_layout.addWidget(self.search_text_button) self.search_layout.addLayout(self.search_button_layout) self.page_layout.addWidget(self.search_widget) # Signals and slots self.search_text_edit.returnPressed.connect(self.on_search_text_button_clicked) self.search_text_button.clicked.connect(self.on_search_text_button_clicked) self.search_text_edit.textChanged.connect(self.on_search_text_edit_changed) def add_custom_context_actions(self): """ Implement this method in your descendant media manager item to add any context menu items. This method is called automatically. """ pass def initialise(self): """ Implement this method in your descendant media manager item to do any UI or other initialisation. This method is called automatically. """ pass def add_start_header_bar(self): """ Slot at start of toolbar for plugin to add widgets """ pass def add_end_header_bar(self): """ Slot at end of toolbar for plugin to add widgets """ pass def on_file_click(self): """ Add a file to the list widget to make it available for showing """ files = FileDialog.getOpenFileNames(self, self.on_new_prompt, Settings().value(self.settings_section + '/last directory'), self.on_new_file_masks) log.info('New files(s) %s' % files) if files: self.application.set_busy_cursor() self.validate_and_load(files) self.application.set_normal_cursor() def load_file(self, data): """ Turn file from Drag and Drop into an array so the Validate code can run it. :param data: A dictionary containing the list of files to be loaded and the target """ new_files = [] error_shown = False for file_name in data['files']: file_type = file_name.split('.')[-1] if file_type.lower() not in self.on_new_file_masks: if not error_shown: critical_error_message_box(translate('OpenLP.MediaManagerItem', 'Invalid File Type'), translate('OpenLP.MediaManagerItem', 'Invalid File %s.\nSuffix not supported') % file_name) error_shown = True else: new_files.append(file_name) if new_files: self.validate_and_load(new_files, data['target']) def dnd_move_internal(self, target): """ Handle internal moving of media manager items :param target: The target of the DnD action """ pass def validate_and_load(self, files, target_group=None): """ Process a list for files either from the File Dialog or from Drag and Drop :param files: The files to be loaded. :param target_group: The QTreeWidgetItem of the group that will be the parent of the added files """ names = [] full_list = [] for count in range(self.list_view.count()): names.append(self.list_view.item(count).text()) full_list.append(self.list_view.item(count).data(QtCore.Qt.UserRole)) duplicates_found = False files_added = False for file_path in files: if file_path in full_list: duplicates_found = True else: files_added = True full_list.append(file_path) if full_list and files_added: if target_group is None: self.list_view.clear() self.load_list(full_list, target_group) last_dir = os.path.split(files[0])[0] Settings().setValue(self.settings_section + '/last directory', last_dir) Settings().setValue('%s/%s files' % (self.settings_section, self.settings_section), self.get_file_list()) if duplicates_found: critical_error_message_box(UiStrings().Duplicate, translate('OpenLP.MediaManagerItem', 'Duplicate files were found on import and were ignored.')) def context_menu(self, point): """ Display a context menu :param point: The point the cursor was at """ item = self.list_view.itemAt(point) # Decide if we have to show the context menu or not. if item is None: return if not item.flags() & QtCore.Qt.ItemIsSelectable: return self.menu.exec(self.list_view.mapToGlobal(point)) def get_file_list(self): """ Return the current list of files """ file_list = [] for index in range(self.list_view.count()): list_item = self.list_view.item(index) filename = list_item.data(QtCore.Qt.UserRole) file_list.append(filename) return file_list def load_list(self, load_list, target_group): """ Load a list. Needs to be implemented by the plugin. :param load_list: List object to load :param target_group: Group to load """ raise NotImplementedError('MediaManagerItem.loadList needs to be defined by the plugin') def on_new_click(self): """ Hook for plugins to define behaviour for adding new items. """ pass def on_edit_click(self): """ Hook for plugins to define behaviour for editing items. """ pass def on_delete_click(self): """ Delete an item. Needs to be implemented by the plugin. """ raise NotImplementedError('MediaManagerItem.on_delete_click needs to be defined by the plugin') def on_focus(self): """ Run when a tab in the media manager gains focus. This gives the media item a chance to focus any elements it wants to. """ pass def generate_slide_data(self, service_item, item=None, xml_version=False, remote=False, context=ServiceItemContext.Live): """ Generate the slide data. Needs to be implemented by the plugin. :param service_item: The service Item to be processed :param item: The database item to be used to build the service item :param xml_version: :param remote: Was this remote triggered (False) :param context: The service context """ raise NotImplementedError('MediaManagerItem.generate_slide_data needs to be defined by the plugin') def on_double_clicked(self): """ Allows the list click action to be determined dynamically """ if Settings().value('advanced/double click live'): self.on_live_click() elif not Settings().value('advanced/single click preview'): # NOTE: The above check is necessary to prevent bug #1419300 self.on_preview_click() def on_selection_change(self): """ Allows the change of current item in the list to be actioned """ if Settings().value('advanced/single click preview') and self.quick_preview_allowed \ and self.list_view.selectedIndexes() and self.auto_select_id == -1: self.on_preview_click(True) def on_preview_click(self, keep_focus=False): """ Preview an item by building a service item then adding that service item to the preview slide controller. :param keep_focus: Do we keep focus (False) """ if not self.list_view.selectedIndexes() and not self.remote_triggered: QtWidgets.QMessageBox.information(self, UiStrings().NISp, translate('OpenLP.MediaManagerItem', 'You must select one or more items to preview.')) else: log.debug('%s Preview requested' % self.plugin.name) service_item = self.build_service_item() if service_item: service_item.from_plugin = True self.preview_controller.add_service_item(service_item) if not keep_focus: self.preview_controller.preview_widget.setFocus() def on_live_click(self): """ Send an item live by building a service item then adding that service item to the live slide controller. """ if not self.list_view.selectedIndexes(): QtWidgets.QMessageBox.information(self, UiStrings().NISp, translate('OpenLP.MediaManagerItem', 'You must select one or more items to send live.')) else: self.go_live() def go_live_remote(self, message): """ Remote Call wrapper :param message: The passed data item_id:Remote. """ self.go_live(message[0], remote=message[1]) def go_live(self, item_id=None, remote=False): """ Make the currently selected item go live. :param item_id: item to make live :param remote: From Remote """ log.debug('%s Live requested', self.plugin.name) item = None if item_id: item = self.create_item_from_id(item_id) service_item = self.build_service_item(item, remote=remote) if service_item: if not item_id: service_item.from_plugin = True if remote: service_item.will_auto_start = True self.live_controller.add_service_item(service_item) self.live_controller.preview_widget.setFocus() def create_item_from_id(self, item_id): """ Create a media item from an item id. :param item_id: Id to make live """ item = QtWidgets.QListWidgetItem() item.setData(QtCore.Qt.UserRole, item_id) return item def on_add_click(self): """ Add a selected item to the current service """ if not self.list_view.selectedIndexes(): QtWidgets.QMessageBox.information(self, UiStrings().NISp, translate('OpenLP.MediaManagerItem', 'You must select one or more items to add.')) else: # Is it possible to process multiple list items to generate # multiple service items? if self.single_service_item: log.debug('%s Add requested', self.plugin.name) self.add_to_service(replace=self.remote_triggered) else: items = self.list_view.selectedIndexes() drop_position = self.service_manager.get_drop_position() for item in items: self.add_to_service(item, position=drop_position) if drop_position != -1: drop_position += 1 def add_to_service_remote(self, message): """ Remote Call wrapper :param message: The passed data item:Remote. """ self.add_to_service(message[0], remote=message[1]) def add_to_service(self, item=None, replace=None, remote=False, position=-1): """ Add this item to the current service. :param item: Item to be processed :param replace: Replace the existing item :param remote: Triggered from remote :param position: Position to place item """ service_item = self.build_service_item(item, True, remote=remote, context=ServiceItemContext.Service) if service_item: service_item.from_plugin = False self.service_manager.add_service_item(service_item, replace=replace, position=position) def on_add_edit_click(self): """ Add a selected item to an existing item in the current service. """ if not self.list_view.selectedIndexes() and not self.remote_triggered: QtWidgets.QMessageBox.information(self, UiStrings().NISp, translate('OpenLP.MediaManagerItem', 'You must select one or more items.')) else: log.debug('%s Add requested', self.plugin.name) service_item = self.service_manager.get_service_item() if not service_item: QtWidgets.QMessageBox.information(self, UiStrings().NISs, translate('OpenLP.MediaManagerItem', 'You must select an existing service item to add to.')) elif self.plugin.name == service_item.name: self.generate_slide_data(service_item) self.service_manager.add_service_item(service_item, replace=True) else: # Turn off the remote edit update message indicator QtWidgets.QMessageBox.information(self, translate('OpenLP.MediaManagerItem', 'Invalid Service Item'), translate('OpenLP.MediaManagerItem', 'You must select a %s service item.') % self.title) def build_service_item(self, item=None, xml_version=False, remote=False, context=ServiceItemContext.Live): """ Common method for generating a service item :param item: Service Item to be built. :param xml_version: version of XML (False) :param remote: Remote triggered (False) :param context: The context on which this is called """ service_item = ServiceItem(self.plugin) service_item.add_icon(self.plugin.icon_path) if self.generate_slide_data(service_item, item, xml_version, remote, context): return service_item else: return None def service_load(self, item): """ Method to add processing when a service has been loaded and individual service items need to be processed by the plugins. :param item: The item to be processed and returned. """ return item def check_search_result(self): """ Checks if the list_view is empty and adds a "No Search Results" item. """ if self.list_view.count(): return message = translate('OpenLP.MediaManagerItem', 'No Search Results') item = QtWidgets.QListWidgetItem(message) item.setFlags(QtCore.Qt.NoItemFlags) font = QtGui.QFont() font.setItalic(True) item.setFont(font) self.list_view.addItem(item) def _get_id_of_item_to_generate(self, item, remote_item): """ Utility method to check items being submitted for slide generation. :param item: The item to check. :param remote_item: The id to assign if the slide generation was remotely triggered. """ if item is None: if self.remote_triggered is None: item = self.list_view.currentItem() if item is None: return False item_id = item.data(QtCore.Qt.UserRole) else: item_id = remote_item else: item_id = item.data(QtCore.Qt.UserRole) return item_id def save_auto_select_id(self): """ Sorts out, what item to select after loading a list. """ # The item to select has not been set. if self.auto_select_id == -1: item = self.list_view.currentItem() if item: self.auto_select_id = item.data(QtCore.Qt.UserRole) def search(self, string, show_error=True): """ Performs a plugin specific search for items containing ``string`` :param string: String to be displayed :param show_error: Should the error be shown (True) """ raise NotImplementedError('Plugin.search needs to be defined by the plugin') OpenLP-2.4/openlp/core/lib/colorbutton.py0000644000175000017500000000637612657640340017504 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide a custom widget based on QPushButton for the selection of colors """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import translate class ColorButton(QtWidgets.QPushButton): """ Subclasses QPushbutton to create a "Color Chooser" button """ colorChanged = QtCore.pyqtSignal(str) def __init__(self, parent=None): """ Initialise the ColorButton """ super(ColorButton, self).__init__() self.parent = parent self.change_color('#ffffff') self.setToolTip(translate('OpenLP.ColorButton', 'Click to select a color.')) self.clicked.connect(self.on_clicked) def change_color(self, color): """ Sets the _color variable and the background color. :param color: String representation of a hexidecimal color """ self._color = color self.setStyleSheet('background-color: %s' % color) @property def color(self): """ Property method to return the color variable :return: String representation of a hexidecimal color """ return self._color @color.setter def color(self, color): """ Property setter to change the instance color :param color: String representation of a hexidecimal color """ self.change_color(color) def on_clicked(self): """ Handle the PushButton clicked signal, showing the ColorDialog and validating the input """ new_color = QtWidgets.QColorDialog.getColor(QtGui.QColor(self._color), self.parent) if new_color.isValid() and self._color != new_color.name(): self.change_color(new_color.name()) self.colorChanged.emit(new_color.name()) OpenLP-2.4/openlp/core/lib/projector/0000755000175000017500000000000012663134435016553 5ustar raoulraoulOpenLP-2.4/openlp/core/lib/projector/db.py0000644000175000017500000004113312657640340017514 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod:`openlp.core.lib.projector.db` module Provides the database functions for the Projector module. The Manufacturer, Model, Source tables keep track of the video source strings used for display of input sources. The Source table maps manufacturer-defined or user-defined strings from PJLink default strings to end-user readable strings; ex: PJLink code 11 would map "RGB 1" default string to "RGB PC (analog)" string. (Future feature). The Projector table keeps track of entries for controlled projectors. """ import logging log = logging.getLogger(__name__) log.debug('projector.lib.db module loaded') from sqlalchemy import Column, ForeignKey, Integer, MetaData, String, and_ from sqlalchemy.ext.declarative import declarative_base, declared_attr from sqlalchemy.orm import backref, relationship from openlp.core.lib.db import Manager, init_db, init_url from openlp.core.lib.projector.constants import PJLINK_DEFAULT_CODES metadata = MetaData() Base = declarative_base(metadata) class CommonBase(object): """ Base class to automate table name and ID column. """ @declared_attr def __tablename__(cls): return cls.__name__.lower() id = Column(Integer, primary_key=True) class Manufacturer(CommonBase, Base): """ Projector manufacturer table. Manufacturer: name: Column(String(30)) models: Relationship(Model.id) Model table is related. """ def __repr__(self): """ Returns a basic representation of a Manufacturer table entry. """ return '' % self.name name = Column(String(30)) models = relationship('Model', order_by='Model.name', backref='manufacturer', cascade='all, delete-orphan', primaryjoin='Manufacturer.id==Model.manufacturer_id', lazy='joined') class Model(CommonBase, Base): """ Projector model table. Model: name: Column(String(20)) sources: Relationship(Source.id) manufacturer_id: Foreign_key(Manufacturer.id) Manufacturer table links here. Source table is related. """ def __repr__(self): """ Returns a basic representation of a Model table entry. """ return '' % self.name manufacturer_id = Column(Integer, ForeignKey('manufacturer.id')) name = Column(String(20)) sources = relationship('Source', order_by='Source.pjlink_name', backref='model', cascade='all, delete-orphan', primaryjoin='Model.id==Source.model_id', lazy='joined') class Source(CommonBase, Base): """ Projector video source table. Source: pjlink_name: Column(String(15)) pjlink_code: Column(String(2)) text: Column(String(30)) model_id: Foreign_key(Model.id) Model table links here. These entries map PJLink input video source codes to text strings. """ def __repr__(self): """ Return basic representation of Source table entry. """ return '' % \ (self.pjlink_name, self.pjlink_code, self.text) model_id = Column(Integer, ForeignKey('model.id')) pjlink_name = Column(String(15)) pjlink_code = Column(String(2)) text = Column(String(30)) class Projector(CommonBase, Base): """ Projector table. Projector: ip: Column(String(100)) # Allow for IPv6 or FQDN port: Column(String(8)) pin: Column(String(20)) # Allow for test strings name: Column(String(20)) location: Column(String(30)) notes: Column(String(200)) pjlink_name: Column(String(128)) # From projector (future) manufacturer: Column(String(128)) # From projector (future) model: Column(String(128)) # From projector (future) other: Column(String(128)) # From projector (future) sources: Column(String(128)) # From projector (future) ProjectorSource relates """ def __repr__(self): """ Return basic representation of Source table entry. """ return '< Projector(id="%s", ip="%s", port="%s", pin="%s", name="%s", location="%s",' \ 'notes="%s", pjlink_name="%s", manufacturer="%s", model="%s", other="%s",' \ 'sources="%s", source_list="%s") >' % (self.id, self.ip, self.port, self.pin, self.name, self.location, self.notes, self.pjlink_name, self.manufacturer, self.model, self.other, self.sources, self.source_list) ip = Column(String(100)) port = Column(String(8)) pin = Column(String(20)) name = Column(String(20)) location = Column(String(30)) notes = Column(String(200)) pjlink_name = Column(String(128)) manufacturer = Column(String(128)) model = Column(String(128)) other = Column(String(128)) sources = Column(String(128)) source_list = relationship('ProjectorSource', order_by='ProjectorSource.code', backref='projector', cascade='all, delete-orphan', primaryjoin='Projector.id==ProjectorSource.projector_id', lazy='joined') class ProjectorSource(CommonBase, Base): """ Projector local source table This table allows mapping specific projector source input to a local connection; i.e., '11': 'DVD Player' Projector Source: projector_id: Foreign_key(Column(Projector.id)) code: Column(String(3)) # PJLink source code text: Column(String(20)) # Text to display Projector table links here """ def __repr__(self): """ Return basic representation of Source table entry. """ return '' % (self.id, self.code, self.text, self.projector_id) code = Column(String(3)) text = Column(String(20)) projector_id = Column(Integer, ForeignKey('projector.id')) class ProjectorDB(Manager): """ Class to access the projector database. """ def __init__(self, *args, **kwargs): log.debug('ProjectorDB().__init__(args="%s", kwargs="%s")' % (args, kwargs)) super().__init__(plugin_name='projector', init_schema=self.init_schema) log.debug('ProjectorDB() Initialized using db url %s' % self.db_url) log.debug('Session: %s', self.session) def init_schema(self, *args, **kwargs): """ Setup the projector database and initialize the schema. Declarative uses table classes to define schema. """ self.db_url = init_url('projector') session, metadata = init_db(self.db_url, base=Base) metadata.create_all(checkfirst=True) return session def get_projector_by_id(self, dbid): """ Locate a DB record by record ID. :param dbid: DB record id :returns: Projector() instance """ log.debug('get_projector_by_id(id="%s")' % dbid) projector = self.get_object_filtered(Projector, Projector.id == dbid) if projector is None: # Not found log.warn('get_projector_by_id() did not find %s' % id) return None log.debug('get_projectorby_id() returning 1 entry for "%s" id="%s"' % (dbid, projector.id)) return projector def get_projector_all(self): """ Retrieve all projector entries. :returns: List with Projector() instances used in Manager() QListWidget. """ log.debug('get_all() called') return_list = [] new_list = self.get_all_objects(Projector) if new_list is None or new_list.count == 0: return return_list for new_projector in new_list: return_list.append(new_projector) log.debug('get_all() returning %s item(s)' % len(return_list)) return return_list def get_projector_by_ip(self, ip): """ Locate a projector by host IP/Name. :param ip: Host IP/Name :returns: Projector() instance """ log.debug('get_projector_by_ip(ip="%s")' % ip) projector = self.get_object_filtered(Projector, Projector.ip == ip) if projector is None: # Not found log.warn('get_projector_by_ip() did not find %s' % ip) return None log.debug('get_projectorby_ip() returning 1 entry for "%s" id="%s"' % (ip, projector.id)) return projector def get_projector_by_name(self, name): """ Locate a projector by name field :param name: Name of projector :returns: Projector() instance """ log.debug('get_projector_by_name(name="%s")' % name) projector = self.get_object_filtered(Projector, Projector.name == name) if projector is None: # Not found log.warn('get_projector_by_name() did not find "%s"' % name) return None log.debug('get_projector_by_name() returning one entry for "%s" id="%s"' % (name, projector.id)) return projector def add_projector(self, projector): """ Add a new projector entry :param projector: Projector() instance to add :returns: bool True if entry added False if entry already in DB or db error """ old_projector = self.get_object_filtered(Projector, Projector.ip == projector.ip) if old_projector is not None: log.warn('add_new() skipping entry ip="%s" (Already saved)' % old_projector.ip) return False log.debug('add_new() saving new entry') log.debug('ip="%s", name="%s", location="%s"' % (projector.ip, projector.name, projector.location)) log.debug('notes="%s"' % projector.notes) return self.save_object(projector) def update_projector(self, projector=None): """ Update projector entry :param projector: Projector() instance with new information :returns: bool True if DB record updated False if entry not in DB or DB error """ if projector is None: log.error('No Projector() instance to update - cancelled') return False old_projector = self.get_object_filtered(Projector, Projector.id == projector.id) if old_projector is None: log.error('Edit called on projector instance not in database - cancelled') return False log.debug('(%s) Updating projector with dbid=%s' % (projector.ip, projector.id)) old_projector.ip = projector.ip old_projector.name = projector.name old_projector.location = projector.location old_projector.pin = projector.pin old_projector.port = projector.port old_projector.pjlink_name = projector.pjlink_name old_projector.manufacturer = projector.manufacturer old_projector.model = projector.model old_projector.other = projector.other old_projector.sources = projector.sources return self.save_object(old_projector) def delete_projector(self, projector): """ Delete an entry by record id :param projector: Projector() instance to delete :returns: bool True if record deleted False if DB error """ deleted = self.delete_object(Projector, projector.id) if deleted: log.debug('delete_by_id() Removed entry id="%s"' % projector.id) else: log.error('delete_by_id() Entry id="%s" not deleted for some reason' % projector.id) return deleted def get_source_list(self, projector): """ Retrieves the source inputs pjlink code-to-text if available based on manufacturer and model. If not available, then returns the PJLink code to default text. :param projector: Projector instance :returns: dict key: (str) PJLink code for source value: (str) From ProjectorSource, Sources tables or PJLink default code list """ source_dict = {} # Get default list first for key in projector.source_available: item = self.get_object_filtered(ProjectorSource, and_(ProjectorSource.code == key, ProjectorSource.projector_id == projector.dbid)) if item is None: source_dict[key] = PJLINK_DEFAULT_CODES[key] else: source_dict[key] = item.text return source_dict def get_source_by_id(self, source): """ Retrieves the ProjectorSource by ProjectorSource.id :param source: ProjectorSource id :returns: ProjetorSource instance or None """ source_entry = self.get_object_filtered(ProjetorSource, ProjectorSource.id == source) if source_entry is None: # Not found log.warn('get_source_by_id() did not find "%s"' % source) return None log.debug('get_source_by_id() returning one entry for "%s""' % (source)) return source_entry def get_source_by_code(self, code, projector_id): """ Retrieves the ProjectorSource by ProjectorSource.id :param source: PJLink ID :param projector_id: Projector.id :returns: ProjetorSource instance or None """ source_entry = self.get_object_filtered(ProjectorSource, and_(ProjectorSource.code == code, ProjectorSource.projector_id == projector_id)) if source_entry is None: # Not found log.warn('get_source_by_id() did not find code="%s" projector_id="%s"' % (code, projector_id)) return None log.debug('get_source_by_id() returning one entry for code="%s" projector_id="%s"' % (code, projector_id)) return source_entry def add_source(self, source): """ Add a new ProjectorSource record :param source: ProjectorSource() instance to add """ log.debug('Saving ProjectorSource(projector_id="%s" code="%s" text="%s")' % (source.projector_id, source.code, source.text)) return self.save_object(source) OpenLP-2.4/openlp/core/lib/projector/__init__.py0000644000175000017500000000336512657640340020673 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod:`openlp.core.ui.projector` Initialization for the openlp.core.ui.projector modules. """ class DialogSourceStyle(object): """ An enumeration for projector dialog box type. """ Tabbed = 0 Single = 1 OpenLP-2.4/openlp/core/lib/projector/pjlink1.py0000644000175000017500000010443612657640340020505 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod:`openlp.core.lib.projector.pjlink1` module Provides the necessary functions for connecting to a PJLink-capable projector. See PJLink Class 1 Specifications for details. http://pjlink.jbmia.or.jp/english/dl.html Section 5-1 PJLink Specifications Section 5-5 Guidelines for Input Terminals NOTE: Function names follow the following syntax: def process_CCCC(...): WHERE: CCCC = PJLink command being processed. """ import logging log = logging.getLogger(__name__) log.debug('pjlink1 loaded') __all__ = ['PJLink1'] from codecs import decode from PyQt5.QtCore import pyqtSignal, pyqtSlot from PyQt5.QtNetwork import QAbstractSocket, QTcpSocket from openlp.core.common import translate, qmd5_hash from openlp.core.lib.projector.constants import * # Shortcuts SocketError = QAbstractSocket.SocketError SocketSTate = QAbstractSocket.SocketState PJLINK_PREFIX = '%' PJLINK_CLASS = '1' PJLINK_HEADER = '%s%s' % (PJLINK_PREFIX, PJLINK_CLASS) PJLINK_SUFFIX = CR class PJLink1(QTcpSocket): """ Socket service for connecting to a PJLink-capable projector. """ # Signals sent by this module changeStatus = pyqtSignal(str, int, str) projectorNetwork = pyqtSignal(int) # Projector network activity projectorStatus = pyqtSignal(int) # Status update projectorAuthentication = pyqtSignal(str) # Authentication error projectorNoAuthentication = pyqtSignal(str) # PIN set and no authentication needed projectorReceivedData = pyqtSignal() # Notify when received data finished processing projectorUpdateIcons = pyqtSignal() # Update the status icons on toolbar def __init__(self, name=None, ip=None, port=PJLINK_PORT, pin=None, *args, **kwargs): """ Setup for instance. :param name: Display name :param ip: IP address to connect to :param port: Port to use. Default to PJLINK_PORT :param pin: Access pin (if needed) Optional parameters :param dbid: Database ID number :param location: Location where projector is physically located :param notes: Extra notes about the projector :param poll_time: Time (in seconds) to poll connected projector :param socket_timeout: Time (in seconds) to abort the connection if no response """ log.debug('PJlink(args="%s" kwargs="%s")' % (args, kwargs)) self.name = name self.ip = ip self.port = port self.pin = pin super(PJLink1, self).__init__() self.dbid = None self.location = None self.notes = None self.dbid = None if 'dbid' not in kwargs else kwargs['dbid'] self.location = None if 'location' not in kwargs else kwargs['location'] self.notes = None if 'notes' not in kwargs else kwargs['notes'] # Poll time 20 seconds unless called with something else self.poll_time = 20000 if 'poll_time' not in kwargs else kwargs['poll_time'] * 1000 # Timeout 5 seconds unless called with something else self.socket_timeout = 5000 if 'socket_timeout' not in kwargs else kwargs['socket_timeout'] * 1000 # In case we're called from somewhere that only wants information self.no_poll = 'no_poll' in kwargs self.i_am_running = False self.status_connect = S_NOT_CONNECTED self.last_command = '' self.projector_status = S_NOT_CONNECTED self.error_status = S_OK # Socket information # Add enough space to input buffer for extraneous \n \r self.maxSize = PJLINK_MAX_PACKET + 2 self.setReadBufferSize(self.maxSize) # PJLink information self.pjlink_class = '1' # Default class self.reset_information() # Set from ProjectorManager.add_projector() self.widget = None # QListBox entry self.timer = None # Timer that calls the poll_loop self.send_queue = [] self.send_busy = False # Socket timer for some possible brain-dead projectors or network cable pulled self.socket_timer = None # Map command to function self.PJLINK1_FUNC = {'AVMT': self.process_avmt, 'CLSS': self.process_clss, 'ERST': self.process_erst, 'INFO': self.process_info, 'INF1': self.process_inf1, 'INF2': self.process_inf2, 'INPT': self.process_inpt, 'INST': self.process_inst, 'LAMP': self.process_lamp, 'NAME': self.process_name, 'PJLINK': self.check_login, 'POWR': self.process_powr } def reset_information(self): """ Reset projector-specific information to default """ log.debug('(%s) reset_information() connect status is %s' % (self.ip, self.state())) self.power = S_OFF self.pjlink_name = None self.manufacturer = None self.model = None self.shutter = None self.mute = None self.lamp = None self.fan = None self.source_available = None self.source = None self.other_info = None if hasattr(self, 'timer'): self.timer.stop() if hasattr(self, 'socket_timer'): self.socket_timer.stop() self.send_queue = [] self.send_busy = False def thread_started(self): """ Connects signals to methods when thread is started. """ log.debug('(%s) Thread starting' % self.ip) self.i_am_running = True self.connected.connect(self.check_login) self.disconnected.connect(self.disconnect_from_host) self.error.connect(self.get_error) def thread_stopped(self): """ Cleanups when thread is stopped. """ log.debug('(%s) Thread stopped' % self.ip) try: self.connected.disconnect(self.check_login) except TypeError: pass try: self.disconnected.disconnect(self.disconnect_from_host) except TypeError: pass try: self.error.disconnect(self.get_error) except TypeError: pass try: self.projectorReceivedData.disconnect(self._send_command) except TypeError: pass self.disconnect_from_host() self.deleteLater() self.i_am_running = False def socket_abort(self): """ Aborts connection and closes socket in case of brain-dead projectors. Should normally be called by socket_timer(). """ log.debug('(%s) socket_abort() - Killing connection' % self.ip) self.disconnect_from_host(abort=True) def poll_loop(self): """ Retrieve information from projector that changes. Normally called by timer(). """ if self.state() != self.ConnectedState: return log.debug('(%s) Updating projector status' % self.ip) # Reset timer in case we were called from a set command if self.timer.interval() < self.poll_time: # Reset timer to 5 seconds self.timer.setInterval(self.poll_time) # Restart timer self.timer.start() # These commands may change during connetion for command in ['POWR', 'ERST', 'LAMP', 'AVMT', 'INPT']: self.send_command(command, queue=True) # The following commands do not change, so only check them once if self.power == S_ON and self.source_available is None: self.send_command('INST', queue=True) if self.other_info is None: self.send_command('INFO', queue=True) if self.manufacturer is None: self.send_command('INF1', queue=True) if self.model is None: self.send_command('INF2', queue=True) if self.pjlink_name is None: self.send_command('NAME', queue=True) if self.power == S_ON and self.source_available is None: self.send_command('INST', queue=True) def _get_status(self, status): """ Helper to retrieve status/error codes and convert to strings. :param status: Status/Error code :returns: (Status/Error code, String) """ if status in ERROR_STRING: return ERROR_STRING[status], ERROR_MSG[status] elif status in STATUS_STRING: return STATUS_STRING[status], ERROR_MSG[status] else: return status, translate('OpenLP.PJLink1', 'Unknown status') def change_status(self, status, msg=None): """ Check connection/error status, set status for projector, then emit status change signal for gui to allow changing the icons. :param status: Status code :param msg: Optional message """ message = translate('OpenLP.PJLink1', 'No message') if msg is None else msg (code, message) = self._get_status(status) if msg is not None: message = msg if status in CONNECTION_ERRORS: # Projector, connection state self.projector_status = self.error_status = self.status_connect = E_NOT_CONNECTED elif status >= S_NOT_CONNECTED and status < S_STATUS: self.status_connect = status self.projector_status = S_NOT_CONNECTED elif status < S_NETWORK_SENDING: self.status_connect = S_CONNECTED self.projector_status = status (status_code, status_message) = self._get_status(self.status_connect) log.debug('(%s) status_connect: %s: %s' % (self.ip, status_code, status_message if msg is None else msg)) (status_code, status_message) = self._get_status(self.projector_status) log.debug('(%s) projector_status: %s: %s' % (self.ip, status_code, status_message if msg is None else msg)) (status_code, status_message) = self._get_status(self.error_status) log.debug('(%s) error_status: %s: %s' % (self.ip, status_code, status_message if msg is None else msg)) self.changeStatus.emit(self.ip, status, message) @pyqtSlot() def check_login(self, data=None): """ Processes the initial connection and authentication (if needed). Starts poll timer if connection is established. :param data: Optional data if called from another routine """ log.debug('(%s) check_login(data="%s")' % (self.ip, data)) if data is None: # Reconnected setup? if not self.waitForReadyRead(2000): # Possible timeout issue log.error('(%s) Socket timeout waiting for login' % self.ip) self.change_status(E_SOCKET_TIMEOUT) return read = self.readLine(self.maxSize) dontcare = self.readLine(self.maxSize) # Clean out the trailing \r\n if read is None: log.warn('(%s) read is None - socket error?' % self.ip) return elif len(read) < 8: log.warn('(%s) Not enough data read)' % self.ip) return data = decode(read, 'ascii') # Possibility of extraneous data on input when reading. # Clean out extraneous characters in buffer. dontcare = self.readLine(self.maxSize) log.debug('(%s) check_login() read "%s"' % (self.ip, data.strip())) # At this point, we should only have the initial login prompt with # possible authentication # PJLink initial login will be: # 'PJLink 0' - Unauthenticated login - no extra steps required. # 'PJLink 1 XXXXXX' Authenticated login - extra processing required. if not data.upper().startswith('PJLINK'): # Invalid response return self.disconnect_from_host() if '=' in data: # Processing a login reply data_check = data.strip().split('=') else: # Process initial connection data_check = data.strip().split(' ') log.debug('(%s) data_check="%s"' % (self.ip, data_check)) # Check for projector reporting an error if data_check[1].upper() == 'ERRA': # Authentication error self.disconnect_from_host() self.change_status(E_AUTHENTICATION) log.debug('(%s) emitting projectorAuthentication() signal' % self.name) return elif data_check[1] == '0' and self.pin is not None: # Pin set and no authentication needed self.disconnect_from_host() self.change_status(E_AUTHENTICATION) log.debug('(%s) emitting projectorNoAuthentication() signal' % self.name) self.projectorNoAuthentication.emit(self.name) return elif data_check[1] == '1': # Authenticated login with salt log.debug('(%s) Setting hash with salt="%s"' % (self.ip, data_check[2])) log.debug('(%s) pin="%s"' % (self.ip, self.pin)) salt = qmd5_hash(salt=data_check[2].encode('ascii'), data=self.pin.encode('ascii')) else: salt = None # We're connected at this point, so go ahead and do regular I/O self.readyRead.connect(self.get_data) self.projectorReceivedData.connect(self._send_command) # Initial data we should know about self.send_command(cmd='CLSS', salt=salt) self.waitForReadyRead() if (not self.no_poll) and (self.state() == self.ConnectedState): log.debug('(%s) Starting timer' % self.ip) self.timer.setInterval(2000) # Set 2 seconds for initial information self.timer.start() @pyqtSlot() def get_data(self): """ Socket interface to retrieve data. """ log.debug('(%s) get_data(): Reading data' % self.ip) if self.state() != self.ConnectedState: log.debug('(%s) get_data(): Not connected - returning' % self.ip) self.send_busy = False return read = self.readLine(self.maxSize) if read == -1: # No data available log.debug('(%s) get_data(): No data available (-1)' % self.ip) self.send_busy = False self.projectorReceivedData.emit() return self.socket_timer.stop() self.projectorNetwork.emit(S_NETWORK_RECEIVED) data_in = decode(read, 'ascii') data = data_in.strip() if len(data) < 7: # Not enough data for a packet log.debug('(%s) get_data(): Packet length < 7: "%s"' % (self.ip, data)) self.send_busy = False self.projectorReceivedData.emit() return log.debug('(%s) get_data(): Checking new data "%s"' % (self.ip, data)) if data.upper().startswith('PJLINK'): # Reconnected from remote host disconnect ? self.check_login(data) self.send_busy = False self.projectorReceivedData.emit() return elif '=' not in data: log.warn('(%s) get_data(): Invalid packet received' % self.ip) self.send_busy = False self.projectorReceivedData.emit() return data_split = data.split('=') try: (prefix, class_, cmd, data) = (data_split[0][0], data_split[0][1], data_split[0][2:], data_split[1]) except ValueError as e: log.warn('(%s) get_data(): Invalid packet - expected header + command + data' % self.ip) log.warn('(%s) get_data(): Received data: "%s"' % (self.ip, read)) self.change_status(E_INVALID_DATA) self.send_busy = False self.projectorReceivedData.emit() return if not (self.pjlink_class in PJLINK_VALID_CMD and cmd in PJLINK_VALID_CMD[self.pjlink_class]): log.warn('(%s) get_data(): Invalid packet - unknown command "%s"' % (self.ip, cmd)) self.send_busy = False self.projectorReceivedData.emit() return return self.process_command(cmd, data) @pyqtSlot(int) def get_error(self, err): """ Process error from SocketError signal. Remaps system error codes to projector error codes. :param err: Error code """ log.debug('(%s) get_error(err=%s): %s' % (self.ip, err, self.errorString())) if err <= 18: # QSocket errors. Redefined in projector.constants so we don't mistake # them for system errors check = err + E_CONNECTION_REFUSED self.timer.stop() else: check = err if check < E_GENERAL: # Some system error? self.change_status(err, self.errorString()) else: self.change_status(E_NETWORK, self.errorString()) self.projectorUpdateIcons.emit() if self.status_connect == E_NOT_CONNECTED: self.abort() self.reset_information() return def send_command(self, cmd, opts='?', salt=None, queue=False): """ Add command to output queue if not already in queue. :param cmd: Command to send :param opts: Command option (if any) - defaults to '?' (get information) :param salt: Optional salt for md5 hash initial authentication :param queue: Option to force add to queue rather than sending directly """ if self.state() != self.ConnectedState: log.warn('(%s) send_command(): Not connected - returning' % self.ip) self.send_queue = [] return self.projectorNetwork.emit(S_NETWORK_SENDING) log.debug('(%s) send_command(): Building cmd="%s" opts="%s" %s' % (self.ip, cmd, opts, '' if salt is None else 'with hash')) if salt is None: out = '%s%s %s%s' % (PJLINK_HEADER, cmd, opts, CR) else: out = '%s%s%s %s%s' % (salt, PJLINK_HEADER, cmd, opts, CR) if out in self.send_queue: # Already there, so don't add log.debug('(%s) send_command(out="%s") Already in queue - skipping' % (self.ip, out.strip())) elif not queue and len(self.send_queue) == 0: # Nothing waiting to send, so just send it log.debug('(%s) send_command(out="%s") Sending data' % (self.ip, out.strip())) return self._send_command(data=out) else: log.debug('(%s) send_command(out="%s") adding to queue' % (self.ip, out.strip())) self.send_queue.append(out) self.projectorReceivedData.emit() log.debug('(%s) send_command(): send_busy is %s' % (self.ip, self.send_busy)) if not self.send_busy: log.debug('(%s) send_command() calling _send_string()') self._send_command() @pyqtSlot() def _send_command(self, data=None): """ Socket interface to send data. If data=None, then check queue. :param data: Immediate data to send """ log.debug('(%s) _send_string()' % self.ip) log.debug('(%s) _send_string(): Connection status: %s' % (self.ip, self.state())) if self.state() != self.ConnectedState: log.debug('(%s) _send_string() Not connected - abort' % self.ip) self.send_queue = [] self.send_busy = False return if self.send_busy: # Still waiting for response from last command sent return if data is not None: out = data log.debug('(%s) _send_string(data=%s)' % (self.ip, out.strip())) elif len(self.send_queue) != 0: out = self.send_queue.pop(0) log.debug('(%s) _send_string(queued data=%s)' % (self.ip, out.strip())) else: # No data to send log.debug('(%s) _send_string(): No data to send' % self.ip) self.send_busy = False return self.send_busy = True log.debug('(%s) _send_string(): Sending "%s"' % (self.ip, out.strip())) log.debug('(%s) _send_string(): Queue = %s' % (self.ip, self.send_queue)) self.socket_timer.start() try: self.projectorNetwork.emit(S_NETWORK_SENDING) sent = self.write(out) self.waitForBytesWritten(2000) # 2 seconds should be enough if sent == -1: # Network error? self.change_status(E_NETWORK, translate('OpenLP.PJLink1', 'Error while sending data to projector')) except SocketError as e: self.disconnect_from_host(abort=True) self.changeStatus(E_NETWORK, '%s : %s' % (e.error(), e.errorString())) def process_command(self, cmd, data): """ Verifies any return error code. Calls the appropriate command handler. :param cmd: Command to process :param data: Data being processed """ log.debug('(%s) Processing command "%s"' % (self.ip, cmd)) if data in PJLINK_ERRORS: # Oops - projector error if data.upper() == 'ERRA': # Authentication error self.disconnect_from_host() self.change_status(E_AUTHENTICATION) log.debug('(%s) emitting projectorAuthentication() signal' % self.ip) self.projectorAuthentication.emit(self.name) elif data.upper() == 'ERR1': # Undefined command self.change_status(E_UNDEFINED, '%s "%s"' % (translate('OpenLP.PJLink1', 'Undefined command:'), cmd)) elif data.upper() == 'ERR2': # Invalid parameter self.change_status(E_PARAMETER) elif data.upper() == 'ERR3': # Projector busy self.change_status(E_UNAVAILABLE) elif data.upper() == 'ERR4': # Projector/display error self.change_status(E_PROJECTOR) self.send_busy = False self.projectorReceivedData.emit() return # Command succeeded - no extra information elif data.upper() == 'OK': log.debug('(%s) Command returned OK' % self.ip) # A command returned successfully, recheck data self.send_busy = False self.projectorReceivedData.emit() return if cmd in self.PJLINK1_FUNC: self.PJLINK1_FUNC[cmd](data) else: log.warn('(%s) Invalid command %s' % (self.ip, cmd)) self.send_busy = False self.projectorReceivedData.emit() def process_lamp(self, data): """ Lamp(s) status. See PJLink Specifications for format. Data may have more than 1 lamp to process. Update self.lamp dictionary with lamp status. :param data: Lamp(s) status. """ lamps = [] data_dict = data.split() while data_dict: try: fill = {'Hours': int(data_dict[0]), 'On': False if data_dict[1] == '0' else True} except ValueError: # In case of invalid entry log.warn('(%s) process_lamp(): Invalid data "%s"' % (self.ip, data)) return lamps.append(fill) data_dict.pop(0) # Remove lamp hours data_dict.pop(0) # Remove lamp on/off self.lamp = lamps return def process_powr(self, data): """ Power status. See PJLink specification for format. Update self.power with status. Update icons if change from previous setting. :param data: Power status """ if data in PJLINK_POWR_STATUS: power = PJLINK_POWR_STATUS[data] update_icons = self.power != power self.power = power self.change_status(PJLINK_POWR_STATUS[data]) if update_icons: self.projectorUpdateIcons.emit() # Update the input sources available if power == S_ON: self.send_command('INST') else: # Log unknown status response log.warn('Unknown power response: %s' % data) return def process_avmt(self, data): """ Process shutter and speaker status. See PJLink specification for format. Update self.mute (audio) and self.shutter (video shutter). :param data: Shutter and audio status """ shutter = self.shutter mute = self.mute if data == '11': shutter = True mute = False elif data == '21': shutter = False mute = True elif data == '30': shutter = False mute = False elif data == '31': shutter = True mute = True else: log.warn('Unknown shutter response: %s' % data) update_icons = shutter != self.shutter update_icons = update_icons or mute != self.mute self.shutter = shutter self.mute = mute if update_icons: self.projectorUpdateIcons.emit() return def process_inpt(self, data): """ Current source input selected. See PJLink specification for format. Update self.source :param data: Currently selected source """ self.source = data return def process_clss(self, data): """ PJLink class that this projector supports. See PJLink specification for format. Updates self.class. :param data: Class that projector supports. """ self.pjlink_class = data log.debug('(%s) Setting pjlink_class for this projector to "%s"' % (self.ip, self.pjlink_class)) return def process_name(self, data): """ Projector name set in projector. Updates self.pjlink_name :param data: Projector name """ self.pjlink_name = data return def process_inf1(self, data): """ Manufacturer name set in projector. Updates self.manufacturer :param data: Projector manufacturer """ self.manufacturer = data return def process_inf2(self, data): """ Projector Model set in projector. Updates self.model. :param data: Model name """ self.model = data return def process_info(self, data): """ Any extra info set in projector. Updates self.other_info. :param data: Projector other info """ self.other_info = data return def process_inst(self, data): """ Available source inputs. See PJLink specification for format. Updates self.source_available :param data: Sources list """ sources = [] check = data.split() for source in check: sources.append(source) sources.sort() self.source_available = sources self.projectorUpdateIcons.emit() return def process_erst(self, data): """ Error status. See PJLink Specifications for format. Updates self.projector_errors :param data: Error status """ try: datacheck = int(data) except ValueError: # Bad data - ignore return if datacheck == 0: self.projector_errors = None else: self.projector_errors = {} # Fan if data[0] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Fan')] = \ PJLINK_ERST_STATUS[data[0]] # Lamp if data[1] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Lamp')] = \ PJLINK_ERST_STATUS[data[1]] # Temp if data[2] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Temperature')] = \ PJLINK_ERST_STATUS[data[2]] # Cover if data[3] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Cover')] = \ PJLINK_ERST_STATUS[data[3]] # Filter if data[4] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Filter')] = \ PJLINK_ERST_STATUS[data[4]] # Other if data[5] != '0': self.projector_errors[translate('OpenLP.ProjectorPJLink', 'Other')] = \ PJLINK_ERST_STATUS[data[5]] return def connect_to_host(self): """ Initiate connection to projector. """ if self.state() == self.ConnectedState: log.warn('(%s) connect_to_host(): Already connected - returning' % self.ip) return self.change_status(S_CONNECTING) self.connectToHost(self.ip, self.port if type(self.port) is int else int(self.port)) @pyqtSlot() def disconnect_from_host(self, abort=False): """ Close socket and cleanup. """ if abort or self.state() != self.ConnectedState: if abort: log.warn('(%s) disconnect_from_host(): Aborting connection' % self.ip) else: log.warn('(%s) disconnect_from_host(): Not connected - returning' % self.ip) self.reset_information() self.disconnectFromHost() try: self.readyRead.disconnect(self.get_data) except TypeError: pass if abort: self.change_status(E_NOT_CONNECTED) else: log.debug('(%s) disconnect_from_host() Current status %s' % (self.ip, self._get_status(self.status_connect)[0])) if self.status_connect != E_NOT_CONNECTED: self.change_status(S_NOT_CONNECTED) self.reset_information() self.projectorUpdateIcons.emit() def get_available_inputs(self): """ Send command to retrieve available source inputs. """ return self.send_command(cmd='INST') def get_error_status(self): """ Send command to retrieve currently known errors. """ return self.send_command(cmd='ERST') def get_input_source(self): """ Send command to retrieve currently selected source input. """ return self.send_command(cmd='INPT') def get_lamp_status(self): """ Send command to return the lap status. """ return self.send_command(cmd='LAMP') def get_manufacturer(self): """ Send command to retrieve manufacturer name. """ return self.send_command(cmd='INF1') def get_model(self): """ Send command to retrieve the model name. """ return self.send_command(cmd='INF2') def get_name(self): """ Send command to retrieve name as set by end-user (if set). """ return self.send_command(cmd='NAME') def get_other_info(self): """ Send command to retrieve extra info set by manufacturer. """ return self.send_command(cmd='INFO') def get_power_status(self): """ Send command to retrieve power status. """ return self.send_command(cmd='POWR') def get_shutter_status(self): """ Send command to retrieve shutter status. """ return self.send_command(cmd='AVMT') def set_input_source(self, src=None): """ Verify input source available as listed in 'INST' command, then send the command to select the input source. :param src: Video source to select in projector """ log.debug('(%s) set_input_source(src=%s)' % (self.ip, src)) if self.source_available is None: return elif src not in self.source_available: return log.debug('(%s) Setting input source to %s' % (self.ip, src)) self.send_command(cmd='INPT', opts=src) self.poll_loop() def set_power_on(self): """ Send command to turn power to on. """ self.send_command(cmd='POWR', opts='1') self.poll_loop() def set_power_off(self): """ Send command to turn power to standby. """ self.send_command(cmd='POWR', opts='0') self.poll_loop() def set_shutter_closed(self): """ Send command to set shutter to closed position. """ self.send_command(cmd='AVMT', opts='11') self.poll_loop() def set_shutter_open(self): """ Send command to set shutter to open position. """ self.send_command(cmd='AVMT', opts='10') self.poll_loop() OpenLP-2.4/openlp/core/lib/projector/constants.py0000644000175000017500000004754712657640340021162 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod:`openlp.core.lib.projector.constants` module Provides the constants used for projector errors/status/defaults """ import logging log = logging.getLogger(__name__) log.debug('projector_constants loaded') from openlp.core.common import translate __all__ = ['S_OK', 'E_GENERAL', 'E_NOT_CONNECTED', 'E_FAN', 'E_LAMP', 'E_TEMP', 'E_COVER', 'E_FILTER', 'E_AUTHENTICATION', 'E_NO_AUTHENTICATION', 'E_UNDEFINED', 'E_PARAMETER', 'E_UNAVAILABLE', 'E_PROJECTOR', 'E_INVALID_DATA', 'E_WARN', 'E_ERROR', 'E_CLASS', 'E_PREFIX', 'E_CONNECTION_REFUSED', 'E_REMOTE_HOST_CLOSED_CONNECTION', 'E_HOST_NOT_FOUND', 'E_SOCKET_ACCESS', 'E_SOCKET_RESOURCE', 'E_SOCKET_TIMEOUT', 'E_DATAGRAM_TOO_LARGE', 'E_NETWORK', 'E_ADDRESS_IN_USE', 'E_SOCKET_ADDRESS_NOT_AVAILABLE', 'E_UNSUPPORTED_SOCKET_OPERATION', 'E_PROXY_AUTHENTICATION_REQUIRED', 'E_SLS_HANDSHAKE_FAILED', 'E_UNFINISHED_SOCKET_OPERATION', 'E_PROXY_CONNECTION_REFUSED', 'E_PROXY_CONNECTION_CLOSED', 'E_PROXY_CONNECTION_TIMEOUT', 'E_PROXY_NOT_FOUND', 'E_PROXY_PROTOCOL', 'E_UNKNOWN_SOCKET_ERROR', 'S_NOT_CONNECTED', 'S_CONNECTING', 'S_CONNECTED', 'S_STATUS', 'S_OFF', 'S_INITIALIZE', 'S_STANDBY', 'S_WARMUP', 'S_ON', 'S_COOLDOWN', 'S_INFO', 'S_NETWORK_SENDING', 'S_NETWORK_RECEIVED', 'ERROR_STRING', 'CR', 'LF', 'PJLINK_ERST_STATUS', 'PJLINK_POWR_STATUS', 'PJLINK_PORT', 'PJLINK_MAX_PACKET', 'TIMEOUT', 'ERROR_MSG', 'PJLINK_ERRORS', 'STATUS_STRING', 'PJLINK_VALID_CMD', 'CONNECTION_ERRORS'] # Set common constants. CR = chr(0x0D) # \r LF = chr(0x0A) # \n PJLINK_PORT = 4352 TIMEOUT = 30.0 PJLINK_MAX_PACKET = 136 PJLINK_VALID_CMD = {'1': ['PJLINK', # Initial connection 'POWR', # Power option 'INPT', # Video sources option 'AVMT', # Shutter option 'ERST', # Error status option 'LAMP', # Lamp(s) query (Includes fans) 'INST', # Input sources available query 'NAME', # Projector name query 'INF1', # Manufacturer name query 'INF2', # Product name query 'INFO', # Other information query 'CLSS' # PJLink class support query ]} # Error and status codes S_OK = E_OK = 0 # E_OK included since I sometimes forget # Error codes. Start at 200 so we don't duplicate system error codes. E_GENERAL = 200 # Unknown error E_NOT_CONNECTED = 201 E_FAN = 202 E_LAMP = 203 E_TEMP = 204 E_COVER = 205 E_FILTER = 206 E_NO_AUTHENTICATION = 207 # PIN set and no authentication set on projector E_UNDEFINED = 208 # ERR1 E_PARAMETER = 209 # ERR2 E_UNAVAILABLE = 210 # ERR3 E_PROJECTOR = 211 # ERR4 E_INVALID_DATA = 212 E_WARN = 213 E_ERROR = 214 E_AUTHENTICATION = 215 # ERRA E_CLASS = 216 E_PREFIX = 217 # Remap Qt socket error codes to projector error codes E_CONNECTION_REFUSED = 230 E_REMOTE_HOST_CLOSED_CONNECTION = 231 E_HOST_NOT_FOUND = 232 E_SOCKET_ACCESS = 233 E_SOCKET_RESOURCE = 234 E_SOCKET_TIMEOUT = 235 E_DATAGRAM_TOO_LARGE = 236 E_NETWORK = 237 E_ADDRESS_IN_USE = 238 E_SOCKET_ADDRESS_NOT_AVAILABLE = 239 E_UNSUPPORTED_SOCKET_OPERATION = 240 E_PROXY_AUTHENTICATION_REQUIRED = 241 E_SLS_HANDSHAKE_FAILED = 242 E_UNFINISHED_SOCKET_OPERATION = 243 E_PROXY_CONNECTION_REFUSED = 244 E_PROXY_CONNECTION_CLOSED = 245 E_PROXY_CONNECTION_TIMEOUT = 246 E_PROXY_NOT_FOUND = 247 E_PROXY_PROTOCOL = 248 E_UNKNOWN_SOCKET_ERROR = -1 # Status codes start at 300 S_NOT_CONNECTED = 300 S_CONNECTING = 301 S_CONNECTED = 302 S_INITIALIZE = 303 S_STATUS = 304 S_OFF = 305 S_STANDBY = 306 S_WARMUP = 307 S_ON = 308 S_COOLDOWN = 309 S_INFO = 310 # Information that does not affect status S_NETWORK_SENDING = 400 S_NETWORK_RECEIVED = 401 CONNECTION_ERRORS = {E_NOT_CONNECTED, E_NO_AUTHENTICATION, E_AUTHENTICATION, E_CLASS, E_PREFIX, E_CONNECTION_REFUSED, E_REMOTE_HOST_CLOSED_CONNECTION, E_HOST_NOT_FOUND, E_SOCKET_ACCESS, E_SOCKET_RESOURCE, E_SOCKET_TIMEOUT, E_DATAGRAM_TOO_LARGE, E_NETWORK, E_ADDRESS_IN_USE, E_SOCKET_ADDRESS_NOT_AVAILABLE, E_UNSUPPORTED_SOCKET_OPERATION, E_PROXY_AUTHENTICATION_REQUIRED, E_SLS_HANDSHAKE_FAILED, E_UNFINISHED_SOCKET_OPERATION, E_PROXY_CONNECTION_REFUSED, E_PROXY_CONNECTION_CLOSED, E_PROXY_CONNECTION_TIMEOUT, E_PROXY_NOT_FOUND, E_PROXY_PROTOCOL, E_UNKNOWN_SOCKET_ERROR } PJLINK_ERRORS = {'ERRA': E_AUTHENTICATION, # Authentication error 'ERR1': E_UNDEFINED, # Undefined command error 'ERR2': E_PARAMETER, # Invalid parameter error 'ERR3': E_UNAVAILABLE, # Projector busy 'ERR4': E_PROJECTOR, # Projector or display failure E_AUTHENTICATION: 'ERRA', E_UNDEFINED: 'ERR1', E_PARAMETER: 'ERR2', E_UNAVAILABLE: 'ERR3', E_PROJECTOR: 'ERR4'} # Map error/status codes to string ERROR_STRING = {0: 'S_OK', E_GENERAL: 'E_GENERAL', E_NOT_CONNECTED: 'E_NOT_CONNECTED', E_FAN: 'E_FAN', E_LAMP: 'E_LAMP', E_TEMP: 'E_TEMP', E_COVER: 'E_COVER', E_FILTER: 'E_FILTER', E_AUTHENTICATION: 'E_AUTHENTICATION', E_NO_AUTHENTICATION: 'E_NO_AUTHENTICATION', E_UNDEFINED: 'E_UNDEFINED', E_PARAMETER: 'E_PARAMETER', E_UNAVAILABLE: 'E_UNAVAILABLE', E_PROJECTOR: 'E_PROJECTOR', E_INVALID_DATA: 'E_INVALID_DATA', E_WARN: 'E_WARN', E_ERROR: 'E_ERROR', E_CLASS: 'E_CLASS', E_PREFIX: 'E_PREFIX', # Last projector error E_CONNECTION_REFUSED: 'E_CONNECTION_REFUSED', # First QtSocket error E_REMOTE_HOST_CLOSED_CONNECTION: 'E_REMOTE_HOST_CLOSED_CONNECTION', E_HOST_NOT_FOUND: 'E_HOST_NOT_FOUND', E_SOCKET_ACCESS: 'E_SOCKET_ACCESS', E_SOCKET_RESOURCE: 'E_SOCKET_RESOURCE', E_SOCKET_TIMEOUT: 'E_SOCKET_TIMEOUT', E_DATAGRAM_TOO_LARGE: 'E_DATAGRAM_TOO_LARGE', E_NETWORK: 'E_NETWORK', E_ADDRESS_IN_USE: 'E_ADDRESS_IN_USE', E_SOCKET_ADDRESS_NOT_AVAILABLE: 'E_SOCKET_ADDRESS_NOT_AVAILABLE', E_UNSUPPORTED_SOCKET_OPERATION: 'E_UNSUPPORTED_SOCKET_OPERATION', E_PROXY_AUTHENTICATION_REQUIRED: 'E_PROXY_AUTHENTICATION_REQUIRED', E_SLS_HANDSHAKE_FAILED: 'E_SLS_HANDSHAKE_FAILED', E_UNFINISHED_SOCKET_OPERATION: 'E_UNFINISHED_SOCKET_OPERATION', E_PROXY_CONNECTION_REFUSED: 'E_PROXY_CONNECTION_REFUSED', E_PROXY_CONNECTION_CLOSED: 'E_PROXY_CONNECTION_CLOSED', E_PROXY_CONNECTION_TIMEOUT: 'E_PROXY_CONNECTION_TIMEOUT', E_PROXY_NOT_FOUND: 'E_PROXY_NOT_FOUND', E_PROXY_PROTOCOL: 'E_PROXY_PROTOCOL', E_UNKNOWN_SOCKET_ERROR: 'E_UNKNOWN_SOCKET_ERROR'} STATUS_STRING = {S_NOT_CONNECTED: 'S_NOT_CONNECTED', S_CONNECTING: 'S_CONNECTING', S_CONNECTED: 'S_CONNECTED', S_STATUS: 'S_STATUS', S_OFF: 'S_OFF', S_INITIALIZE: 'S_INITIALIZE', S_STANDBY: 'S_STANDBY', S_WARMUP: 'S_WARMUP', S_ON: 'S_ON', S_COOLDOWN: 'S_COOLDOWN', S_INFO: 'S_INFO', S_NETWORK_SENDING: 'S_NETWORK_SENDING', S_NETWORK_RECEIVED: 'S_NETWORK_RECEIVED'} # Map error/status codes to message strings ERROR_MSG = {E_OK: translate('OpenLP.ProjectorConstants', 'OK'), # E_OK | S_OK E_GENERAL: translate('OpenLP.ProjectorConstants', 'General projector error'), E_NOT_CONNECTED: translate('OpenLP.ProjectorConstants', 'Not connected error'), E_LAMP: translate('OpenLP.ProjectorConstants', 'Lamp error'), E_FAN: translate('OpenLP.ProjectorConstants', 'Fan error'), E_TEMP: translate('OpenLP.ProjectorConstants', 'High temperature detected'), E_COVER: translate('OpenLP.ProjectorConstants', 'Cover open detected'), E_FILTER: translate('OpenLP.ProjectorConstants', 'Check filter'), E_AUTHENTICATION: translate('OpenLP.ProjectorConstants', 'Authentication Error'), E_UNDEFINED: translate('OpenLP.ProjectorConstants', 'Undefined Command'), E_PARAMETER: translate('OpenLP.ProjectorConstants', 'Invalid Parameter'), E_UNAVAILABLE: translate('OpenLP.ProjectorConstants', 'Projector Busy'), E_PROJECTOR: translate('OpenLP.ProjectorConstants', 'Projector/Display Error'), E_INVALID_DATA: translate('OpenLP.ProjectorConstants', 'Invalid packet received'), E_WARN: translate('OpenLP.ProjectorConstants', 'Warning condition detected'), E_ERROR: translate('OpenLP.ProjectorConstants', 'Error condition detected'), E_CLASS: translate('OpenLP.ProjectorConstants', 'PJLink class not supported'), E_PREFIX: translate('OpenLP.ProjectorConstants', 'Invalid prefix character'), E_CONNECTION_REFUSED: translate('OpenLP.ProjectorConstants', 'The connection was refused by the peer (or timed out)'), E_REMOTE_HOST_CLOSED_CONNECTION: translate('OpenLP.ProjectorConstants', 'The remote host closed the connection'), E_HOST_NOT_FOUND: translate('OpenLP.ProjectorConstants', 'The host address was not found'), E_SOCKET_ACCESS: translate('OpenLP.ProjectorConstants', 'The socket operation failed because the application ' 'lacked the required privileges'), E_SOCKET_RESOURCE: translate('OpenLP.ProjectorConstants', 'The local system ran out of resources (e.g., too many sockets)'), E_SOCKET_TIMEOUT: translate('OpenLP.ProjectorConstants', 'The socket operation timed out'), E_DATAGRAM_TOO_LARGE: translate('OpenLP.ProjectorConstants', 'The datagram was larger than the operating system\'s limit'), E_NETWORK: translate('OpenLP.ProjectorConstants', 'An error occurred with the network (Possibly someone pulled the plug?)'), E_ADDRESS_IN_USE: translate('OpenLP.ProjectorConstants', 'The address specified with socket.bind() ' 'is already in use and was set to be exclusive'), E_SOCKET_ADDRESS_NOT_AVAILABLE: translate('OpenLP.ProjectorConstants', 'The address specified to socket.bind() ' 'does not belong to the host'), E_UNSUPPORTED_SOCKET_OPERATION: translate('OpenLP.ProjectorConstants', 'The requested socket operation is not supported by the local ' 'operating system (e.g., lack of IPv6 support)'), E_PROXY_AUTHENTICATION_REQUIRED: translate('OpenLP.ProjectorConstants', 'The socket is using a proxy, ' 'and the proxy requires authentication'), E_SLS_HANDSHAKE_FAILED: translate('OpenLP.ProjectorConstants', 'The SSL/TLS handshake failed'), E_UNFINISHED_SOCKET_OPERATION: translate('OpenLP.ProjectorConstants', 'The last operation attempted has not finished yet ' '(still in progress in the background)'), E_PROXY_CONNECTION_REFUSED: translate('OpenLP.ProjectorConstants', 'Could not contact the proxy server because the connection ' 'to that server was denied'), E_PROXY_CONNECTION_CLOSED: translate('OpenLP.ProjectorConstants', 'The connection to the proxy server was closed unexpectedly ' '(before the connection to the final peer was established)'), E_PROXY_CONNECTION_TIMEOUT: translate('OpenLP.ProjectorConstants', 'The connection to the proxy server timed out or the proxy ' 'server stopped responding in the authentication phase.'), E_PROXY_NOT_FOUND: translate('OpenLP.ProjectorConstants', 'The proxy address set with setProxy() was not found'), E_PROXY_PROTOCOL: translate('OpenLP.ProjectorConstants', 'The connection negotiation with the proxy server failed because the ' 'response from the proxy server could not be understood'), E_UNKNOWN_SOCKET_ERROR: translate('OpenLP.ProjectorConstants', 'An unidentified error occurred'), S_NOT_CONNECTED: translate('OpenLP.ProjectorConstants', 'Not connected'), S_CONNECTING: translate('OpenLP.ProjectorConstants', 'Connecting'), S_CONNECTED: translate('OpenLP.ProjectorConstants', 'Connected'), S_STATUS: translate('OpenLP.ProjectorConstants', 'Getting status'), S_OFF: translate('OpenLP.ProjectorConstants', 'Off'), S_INITIALIZE: translate('OpenLP.ProjectorConstants', 'Initialize in progress'), S_STANDBY: translate('OpenLP.ProjectorConstants', 'Power in standby'), S_WARMUP: translate('OpenLP.ProjectorConstants', 'Warmup in progress'), S_ON: translate('OpenLP.ProjectorConstants', 'Power is on'), S_COOLDOWN: translate('OpenLP.ProjectorConstants', 'Cooldown in progress'), S_INFO: translate('OpenLP.ProjectorConstants', 'Projector Information available'), S_NETWORK_SENDING: translate('OpenLP.ProjectorConstants', 'Sending data'), S_NETWORK_RECEIVED: translate('OpenLP.ProjectorConstants', 'Received data')} # Map for ERST return codes to string PJLINK_ERST_STATUS = {'0': ERROR_STRING[E_OK], '1': ERROR_STRING[E_WARN], '2': ERROR_STRING[E_ERROR]} # Map for POWR return codes to status code PJLINK_POWR_STATUS = {'0': S_STANDBY, '1': S_ON, '2': S_COOLDOWN, '3': S_WARMUP} PJLINK_DEFAULT_SOURCES = {'1': translate('OpenLP.DB', 'RGB'), '2': translate('OpenLP.DB', 'Video'), '3': translate('OpenLP.DB', 'Digital'), '4': translate('OpenLP.DB', 'Storage'), '5': translate('OpenLP.DB', 'Network')} PJLINK_DEFAULT_CODES = {'11': translate('OpenLP.DB', 'RGB 1'), '12': translate('OpenLP.DB', 'RGB 2'), '13': translate('OpenLP.DB', 'RGB 3'), '14': translate('OpenLP.DB', 'RGB 4'), '15': translate('OpenLP.DB', 'RGB 5'), '16': translate('OpenLP.DB', 'RGB 6'), '17': translate('OpenLP.DB', 'RGB 7'), '18': translate('OpenLP.DB', 'RGB 8'), '19': translate('OpenLP.DB', 'RGB 9'), '21': translate('OpenLP.DB', 'Video 1'), '22': translate('OpenLP.DB', 'Video 2'), '23': translate('OpenLP.DB', 'Video 3'), '24': translate('OpenLP.DB', 'Video 4'), '25': translate('OpenLP.DB', 'Video 5'), '26': translate('OpenLP.DB', 'Video 6'), '27': translate('OpenLP.DB', 'Video 7'), '28': translate('OpenLP.DB', 'Video 8'), '29': translate('OpenLP.DB', 'Video 9'), '31': translate('OpenLP.DB', 'Digital 1'), '32': translate('OpenLP.DB', 'Digital 2'), '33': translate('OpenLP.DB', 'Digital 3'), '34': translate('OpenLP.DB', 'Digital 4'), '35': translate('OpenLP.DB', 'Digital 5'), '36': translate('OpenLP.DB', 'Digital 6'), '37': translate('OpenLP.DB', 'Digital 7'), '38': translate('OpenLP.DB', 'Digital 8'), '39': translate('OpenLP.DB', 'Digital 9'), '41': translate('OpenLP.DB', 'Storage 1'), '42': translate('OpenLP.DB', 'Storage 2'), '43': translate('OpenLP.DB', 'Storage 3'), '44': translate('OpenLP.DB', 'Storage 4'), '45': translate('OpenLP.DB', 'Storage 5'), '46': translate('OpenLP.DB', 'Storage 6'), '47': translate('OpenLP.DB', 'Storage 7'), '48': translate('OpenLP.DB', 'Storage 8'), '49': translate('OpenLP.DB', 'Storage 9'), '51': translate('OpenLP.DB', 'Network 1'), '52': translate('OpenLP.DB', 'Network 2'), '53': translate('OpenLP.DB', 'Network 3'), '54': translate('OpenLP.DB', 'Network 4'), '55': translate('OpenLP.DB', 'Network 5'), '56': translate('OpenLP.DB', 'Network 6'), '57': translate('OpenLP.DB', 'Network 7'), '58': translate('OpenLP.DB', 'Network 8'), '59': translate('OpenLP.DB', 'Network 9') } OpenLP-2.4/openlp/core/lib/pluginmanager.py0000644000175000017500000002175112657640340017755 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide plugin management """ import os import sys import imp from openlp.core.lib import Plugin, PluginStatus from openlp.core.common import AppLocation, RegistryProperties, OpenLPMixin, RegistryMixin class PluginManager(RegistryMixin, OpenLPMixin, RegistryProperties): """ This is the Plugin manager, which loads all the plugins, and executes all the hooks, as and when necessary. """ def __init__(self, parent=None): """ The constructor for the plugin manager. Passes the controllers on to the plugins for them to interact with via their ServiceItems. """ super(PluginManager, self).__init__(parent) self.log_info('Plugin manager Initialising') self.base_path = os.path.abspath(AppLocation.get_directory(AppLocation.PluginsDir)) self.log_debug('Base path %s ' % self.base_path) self.plugins = [] self.log_info('Plugin manager Initialised') def bootstrap_initialise(self): """ Bootstrap all the plugin manager functions """ self.find_plugins() # hook methods have to happen after find_plugins. Find plugins needs # the controllers hence the hooks have moved from setupUI() to here # Find and insert settings tabs self.hook_settings_tabs() # Find and insert media manager items self.hook_media_manager() # Call the hook method to pull in import menus. self.hook_import_menu() # Call the hook method to pull in export menus. self.hook_export_menu() # Call the hook method to pull in tools menus. self.hook_tools_menu() # Call the initialise method to setup plugins. self.initialise_plugins() def find_plugins(self): """ Scan a directory for objects inheriting from the ``Plugin`` class. """ start_depth = len(os.path.abspath(self.base_path).split(os.sep)) present_plugin_dir = os.path.join(self.base_path, 'presentations') self.log_debug('finding plugins in %s at depth %d' % (self.base_path, start_depth)) for root, dirs, files in os.walk(self.base_path): for name in files: if name.endswith('.py') and not name.startswith('__'): path = os.path.abspath(os.path.join(root, name)) this_depth = len(path.split(os.sep)) if this_depth - start_depth > 2: # skip anything lower down break module_name = name[:-3] # import the modules self.log_debug('Importing %s from %s. Depth %d' % (module_name, root, this_depth)) try: # Use the "imp" library to try to get around a problem with the PyUNO library which # monkey-patches the __import__ function to do some magic. This causes issues with our tests. # First, try to find the module we want to import, searching the directory in root fp, path_name, description = imp.find_module(module_name, [root]) # Then load the module (do the actual import) using the details from find_module() imp.load_module(module_name, fp, path_name, description) except ImportError as e: self.log_exception('Failed to import module %s on path %s: %s' % (module_name, path, e.args[0])) plugin_classes = Plugin.__subclasses__() plugin_objects = [] for p in plugin_classes: try: plugin = p() self.log_debug('Loaded plugin %s' % str(p)) plugin_objects.append(plugin) except TypeError: self.log_exception('Failed to load plugin %s' % str(p)) plugins_list = sorted(plugin_objects, key=lambda plugin: plugin.weight) for plugin in plugins_list: if plugin.check_pre_conditions(): self.log_debug('Plugin %s active' % str(plugin.name)) plugin.set_status() else: plugin.status = PluginStatus.Disabled self.plugins.append(plugin) def hook_media_manager(self): """ Create the plugins' media manager items. """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.create_media_manager_item() def hook_settings_tabs(self): """ Loop through all the plugins. If a plugin has a valid settings tab item, add it to the settings tab. Tabs are set for all plugins not just Active ones """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.create_settings_tab(self.settings_form) def hook_import_menu(self): """ Loop through all the plugins and give them an opportunity to add an item to the import menu. """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.add_import_menu_item(self.main_window.file_import_menu) def hook_export_menu(self): """ Loop through all the plugins and give them an opportunity to add an item to the export menu. """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.add_export_menu_item(self.main_window.file_export_menu) def hook_tools_menu(self): """ Loop through all the plugins and give them an opportunity to add an item to the tools menu. """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.add_tools_menu_item(self.main_window.tools_menu) def hook_upgrade_plugin_settings(self, settings): """ Loop through all the plugins and give them an opportunity to upgrade their settings. :param settings: The Settings object containing the old settings. """ for plugin in self.plugins: if plugin.status is not PluginStatus.Disabled: plugin.upgrade_settings(settings) def initialise_plugins(self): """ Loop through all the plugins and give them an opportunity to initialise themselves. """ for plugin in self.plugins: self.log_info('initialising plugins %s in a %s state' % (plugin.name, plugin.is_active())) if plugin.is_active(): plugin.initialise() self.log_info('Initialisation Complete for %s ' % plugin.name) def finalise_plugins(self): """ Loop through all the plugins and give them an opportunity to clean themselves up """ for plugin in self.plugins: if plugin.is_active(): plugin.finalise() self.log_info('Finalisation Complete for %s ' % plugin.name) def get_plugin_by_name(self, name): """ Return the plugin which has a name with value ``name``. """ for plugin in self.plugins: if plugin.name == name: return plugin return None def new_service_created(self): """ Loop through all the plugins and give them an opportunity to handle a new service """ for plugin in self.plugins: if plugin.is_active(): plugin.new_service_created() OpenLP-2.4/openlp/core/lib/db.py0000644000175000017500000004756312657640340015522 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`db` module provides the core database functionality for OpenLP """ import logging import os from urllib.parse import quote_plus as urlquote from sqlalchemy import Table, MetaData, Column, types, create_engine from sqlalchemy.exc import SQLAlchemyError, InvalidRequestError, DBAPIError, OperationalError from sqlalchemy.orm import scoped_session, sessionmaker, mapper from sqlalchemy.pool import NullPool from alembic.migration import MigrationContext from alembic.operations import Operations from openlp.core.common import AppLocation, Settings, translate from openlp.core.lib.ui import critical_error_message_box from openlp.core.utils import delete_file log = logging.getLogger(__name__) def init_db(url, auto_flush=True, auto_commit=False, base=None): """ Initialise and return the session and metadata for a database :param url: The database to initialise connection with :param auto_flush: Sets the flushing behaviour of the session :param auto_commit: Sets the commit behaviour of the session :param base: If using declarative, the base class to bind with """ engine = create_engine(url, poolclass=NullPool) if base is None: metadata = MetaData(bind=engine) else: base.metadata.bind = engine metadata = base.metadata session = scoped_session(sessionmaker(autoflush=auto_flush, autocommit=auto_commit, bind=engine)) return session, metadata def get_db_path(plugin_name, db_file_name=None): """ Create a path to a database from the plugin name and database name :param plugin_name: Name of plugin :param db_file_name: File name of database :return: The path to the database as type str """ if db_file_name is None: return 'sqlite:///%s/%s.sqlite' % (AppLocation.get_section_data_path(plugin_name), plugin_name) else: return 'sqlite:///%s/%s' % (AppLocation.get_section_data_path(plugin_name), db_file_name) def handle_db_error(plugin_name, db_file_name): """ Log and report to the user that a database cannot be loaded :param plugin_name: Name of plugin :param db_file_name: File name of database :return: None """ db_path = get_db_path(plugin_name, db_file_name) log.exception('Error loading database: %s', db_path) critical_error_message_box(translate('OpenLP.Manager', 'Database Error'), translate('OpenLP.Manager', 'OpenLP cannot load your database.\n\nDatabase: %s') % db_path) def init_url(plugin_name, db_file_name=None): """ Return the database URL. :param plugin_name: The name of the plugin for the database creation. :param db_file_name: The database file name. Defaults to None resulting in the plugin_name being used. """ settings = Settings() settings.beginGroup(plugin_name) db_type = settings.value('db type') if db_type == 'sqlite': db_url = get_db_path(plugin_name, db_file_name) else: db_url = '%s://%s:%s@%s/%s' % (db_type, urlquote(settings.value('db username')), urlquote(settings.value('db password')), urlquote(settings.value('db hostname')), urlquote(settings.value('db database'))) settings.endGroup() return db_url def get_upgrade_op(session): """ Create a migration context and an operations object for performing upgrades. :param session: The SQLAlchemy session object. """ context = MigrationContext.configure(session.bind.connect()) return Operations(context) def upgrade_db(url, upgrade): """ Upgrade a database. :param url: The url of the database to upgrade. :param upgrade: The python module that contains the upgrade instructions. """ session, metadata = init_db(url) class Metadata(BaseModel): """ Provides a class for the metadata table. """ pass metadata_table = Table( 'metadata', metadata, Column('key', types.Unicode(64), primary_key=True), Column('value', types.UnicodeText(), default=None) ) metadata_table.create(checkfirst=True) mapper(Metadata, metadata_table) version_meta = session.query(Metadata).get('version') if version_meta is None: # Tables have just been created - fill the version field with the most recent version if session.query(Metadata).get('dbversion'): version = 0 else: version = upgrade.__version__ version_meta = Metadata.populate(key='version', value=version) session.add(version_meta) session.commit() else: version = int(version_meta.value) if version > upgrade.__version__: return version, upgrade.__version__ version += 1 try: while hasattr(upgrade, 'upgrade_%d' % version): log.debug('Running upgrade_%d', version) try: upgrade_func = getattr(upgrade, 'upgrade_%d' % version) upgrade_func(session, metadata) session.commit() # Update the version number AFTER a commit so that we are sure the previous transaction happened version_meta.value = str(version) session.commit() version += 1 except (SQLAlchemyError, DBAPIError): log.exception('Could not run database upgrade script "upgrade_%s", upgrade process has been halted.', version) break except (SQLAlchemyError, DBAPIError): version_meta = Metadata.populate(key='version', value=int(upgrade.__version__)) session.commit() upgrade_version = upgrade.__version__ version_meta = int(version_meta.value) session.close() return version_meta, upgrade_version def delete_database(plugin_name, db_file_name=None): """ Remove a database file from the system. :param plugin_name: The name of the plugin to remove the database for :param db_file_name: The database file name. Defaults to None resulting in the plugin_name being used. """ if db_file_name: db_file_path = os.path.join(AppLocation.get_section_data_path(plugin_name), db_file_name) else: db_file_path = os.path.join(AppLocation.get_section_data_path(plugin_name), plugin_name) return delete_file(db_file_path) class BaseModel(object): """ BaseModel provides a base object with a set of generic functions """ @classmethod def populate(cls, **kwargs): """ Creates an instance of a class and populates it, returning the instance """ instance = cls() for key, value in kwargs.items(): instance.__setattr__(key, value) return instance class Manager(object): """ Provide generic object persistence management """ def __init__(self, plugin_name, init_schema, db_file_name=None, upgrade_mod=None, session=None): """ Runs the initialisation process that includes creating the connection to the database and the tables if they do not exist. :param plugin_name: The name to setup paths and settings section names :param init_schema: The init_schema function for this database :param db_file_name: The upgrade_schema function for this database :param upgrade_mod: The file name to use for this database. Defaults to None resulting in the plugin_name being used. """ self.is_dirty = False self.session = None self.db_url = None if db_file_name: log.debug('Manager: Creating new DB url') self.db_url = init_url(plugin_name, db_file_name) else: self.db_url = init_url(plugin_name) if upgrade_mod: try: db_ver, up_ver = upgrade_db(self.db_url, upgrade_mod) except (SQLAlchemyError, DBAPIError): handle_db_error(plugin_name, db_file_name) return if db_ver > up_ver: critical_error_message_box( translate('OpenLP.Manager', 'Database Error'), translate('OpenLP.Manager', 'The database being loaded was created in a more recent version of ' 'OpenLP. The database is version %d, while OpenLP expects version %d. The database will ' 'not be loaded.\n\nDatabase: %s') % (db_ver, up_ver, self.db_url) ) return if not session: try: self.session = init_schema(self.db_url) except (SQLAlchemyError, DBAPIError): handle_db_error(plugin_name, db_file_name) else: self.session = session def save_object(self, object_instance, commit=True): """ Save an object to the database :param object_instance: The object to save :param commit: Commit the session with this object """ for try_count in range(3): try: self.session.add(object_instance) if commit: self.session.commit() self.is_dirty = True return True except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue - "MySQL has gone away"') self.session.rollback() if try_count >= 2: raise except InvalidRequestError: self.session.rollback() log.exception('Object list save failed') return False except: self.session.rollback() raise def save_objects(self, object_list, commit=True): """ Save a list of objects to the database :param object_list: The list of objects to save :param commit: Commit the session with this object """ for try_count in range(3): try: self.session.add_all(object_list) if commit: self.session.commit() self.is_dirty = True return True except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') self.session.rollback() if try_count >= 2: raise except InvalidRequestError: self.session.rollback() log.exception('Object list save failed') return False except: self.session.rollback() raise def get_object(self, object_class, key=None): """ Return the details of an object :param object_class: The type of object to return :param key: The unique reference or primary key for the instance to return """ if not key: return object_class() else: for try_count in range(3): try: return self.session.query(object_class).get(key) except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') if try_count >= 2: raise def get_object_filtered(self, object_class, filter_clause): """ Returns an object matching specified criteria :param object_class: The type of object to return :param filter_clause: The criteria to select the object by """ for try_count in range(3): try: return self.session.query(object_class).filter(filter_clause).first() except OperationalError as oe: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. if try_count >= 2 or 'MySQL has gone away' in str(oe): raise log.exception('Probably a MySQL issue, "MySQL has gone away"') def get_all_objects(self, object_class, filter_clause=None, order_by_ref=None): """ Returns all the objects from the database :param object_class: The type of objects to return :param filter_clause: The filter governing selection of objects to return. Defaults to None. :param order_by_ref: Any parameters to order the returned objects by. Defaults to None. """ query = self.session.query(object_class) if filter_clause is not None: query = query.filter(filter_clause) if isinstance(order_by_ref, list): query = query.order_by(*order_by_ref) elif order_by_ref is not None: query = query.order_by(order_by_ref) for try_count in range(3): try: return query.all() except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') if try_count >= 2: raise def get_object_count(self, object_class, filter_clause=None): """ Returns a count of the number of objects in the database. :param object_class: The type of objects to return. :param filter_clause: The filter governing selection of objects to return. Defaults to None. """ query = self.session.query(object_class) if filter_clause is not None: query = query.filter(filter_clause) for try_count in range(3): try: return query.count() except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') if try_count >= 2: raise def delete_object(self, object_class, key): """ Delete an object from the database :param object_class: The type of object to delete :param key: The unique reference or primary key for the instance to be deleted """ if key != 0: object_instance = self.get_object(object_class, key) for try_count in range(3): try: self.session.delete(object_instance) self.session.commit() self.is_dirty = True return True except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') self.session.rollback() if try_count >= 2: raise except InvalidRequestError: self.session.rollback() log.exception('Failed to delete object') return False except: self.session.rollback() raise else: return True def delete_all_objects(self, object_class, filter_clause=None): """ Delete all object records. This method should only be used for simple tables and **not** ones with relationships. The relationships are not deleted from the database and this will lead to database corruptions. :param object_class: The type of object to delete :param filter_clause: The filter governing selection of objects to return. Defaults to None. """ for try_count in range(3): try: query = self.session.query(object_class) if filter_clause is not None: query = query.filter(filter_clause) query.delete(synchronize_session=False) self.session.commit() self.is_dirty = True return True except OperationalError: # This exception clause is for users running MySQL which likes to terminate connections on its own # without telling anyone. See bug #927473. However, other dbms can raise it, usually in a # non-recoverable way. So we only retry 3 times. log.exception('Probably a MySQL issue, "MySQL has gone away"') self.session.rollback() if try_count >= 2: raise except InvalidRequestError: self.session.rollback() log.exception('Failed to delete %s records', object_class.__name__) return False except: self.session.rollback() raise def finalise(self): """ VACUUM the database on exit. """ if self.is_dirty: engine = create_engine(self.db_url) if self.db_url.startswith('sqlite'): engine.execute("vacuum") OpenLP-2.4/openlp/core/lib/plugin.py0000644000175000017500000003156012657640340016421 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide the generic plugin functionality for OpenLP plugins. """ import logging from PyQt5 import QtCore from openlp.core.common import Registry, RegistryProperties, Settings, UiStrings from openlp.core.utils import get_application_version log = logging.getLogger(__name__) class PluginStatus(object): """ Defines the status of the plugin """ Active = 1 Inactive = 0 Disabled = -1 class StringContent(object): """ Provide standard strings for objects to use. """ Name = 'name' Import = 'import' Load = 'load' New = 'new' Edit = 'edit' Delete = 'delete' Preview = 'preview' Live = 'live' Service = 'service' VisibleName = 'visible_name' class Plugin(QtCore.QObject, RegistryProperties): """ Base class for openlp plugins to inherit from. **Basic Attributes** ``name`` The name that should appear in the plugins list. ``version`` The version number of this iteration of the plugin. ``settings_section`` The namespace to store settings for the plugin. ``icon`` An instance of QIcon, which holds an icon for this plugin. ``log`` A log object used to log debugging messages. This is pre-instantiated. ``weight`` A numerical value used to order the plugins. **Hook Functions** ``check_pre_conditions()`` Provides the Plugin with a handle to check if it can be loaded. ``create_media_manager_item()`` Creates a new instance of MediaManagerItem to be used in the Media Manager. ``add_import_menu_item(import_menu)`` Add an item to the Import menu. ``add_export_menu_item(export_menu)`` Add an item to the Export menu. ``create_settings_tab()`` Creates a new instance of SettingsTabItem to be used in the Settings dialog. ``add_to_menu(menubar)`` A method to add a menu item to anywhere in the menu, given the menu bar. ``handle_event(event)`` A method use to handle events, given an Event object. ``about()`` Used in the plugin manager, when a person clicks on the 'About' button. """ log.info('loaded') def __init__(self, name, default_settings, media_item_class=None, settings_tab_class=None, version=None): """ This is the constructor for the plugin object. This provides an easy way for descendant plugins to populate common data. This method *must* be overridden, like so:: class MyPlugin(Plugin): def __init__(self): super(MyPlugin, self).__init__('MyPlugin', version='0.1') :param name: Defaults to *None*. The name of the plugin. :param default_settings: A dict containing the plugin's settings. The value to each key is the default value to be used. :param media_item_class: The class name of the plugin's media item. :param settings_tab_class: The class name of the plugin's settings tab. :param version: Defaults to *None*, which means that the same version number is used as OpenLP's version number. """ log.debug('Plugin %s initialised' % name) super(Plugin, self).__init__() self.name = name self.text_strings = {} self.set_plugin_text_strings() self.name_strings = self.text_strings[StringContent.Name] if version: self.version = version else: self.version = get_application_version()['version'] self.settings_section = self.name self.icon = None self.media_item_class = media_item_class self.settings_tab_class = settings_tab_class self.settings_tab = None self.media_item = None self.weight = 0 self.status = PluginStatus.Inactive # Add the default status to the default settings. default_settings[name + '/status'] = PluginStatus.Inactive default_settings[name + '/last directory'] = '' # Append a setting for files in the mediamanager (note not all plugins # which have a mediamanager need this). if media_item_class is not None: default_settings['%s/%s files' % (name, name)] = [] # Add settings to the dict of all settings. Settings.extend_default_settings(default_settings) Registry().register_function('%s_add_service_item' % self.name, self.process_add_service_event) Registry().register_function('%s_config_updated' % self.name, self.config_update) def check_pre_conditions(self): """ Provides the Plugin with a handle to check if it can be loaded. Failing Preconditions does not stop a settings Tab being created Returns ``True`` or ``False``. """ return True def set_status(self): """ Sets the status of the plugin """ self.status = Settings().value(self.settings_section + '/status') def toggle_status(self, new_status): """ Changes the status of the plugin and remembers it """ self.status = new_status Settings().setValue(self.settings_section + '/status', self.status) if new_status == PluginStatus.Active: self.initialise() elif new_status == PluginStatus.Inactive: self.finalise() def is_active(self): """ Indicates if the plugin is active Returns True or False. """ return self.status == PluginStatus.Active def create_media_manager_item(self): """ Construct a MediaManagerItem object with all the buttons and things you need, and return it for integration into OpenLP. """ if self.media_item_class: self.media_item = self.media_item_class(self.main_window.media_dock_manager.media_dock, self) def upgrade_settings(self, settings): """ Upgrade the settings of this plugin. :param settings: The Settings object containing the old settings. """ pass def add_import_menu_item(self, import_menu): """ Create a menu item and add it to the "Import" menu. :param import_menu: The Import menu. """ pass def add_export_menu_item(self, export_menu): """ Create a menu item and add it to the "Export" menu. :param export_menu: The Export menu """ pass def add_tools_menu_item(self, tools_menu): """ Create a menu item and add it to the "Tools" menu. :param tools_menu: The Tools menu """ pass def create_settings_tab(self, parent): """ Create a tab for the settings window to display the configurable options for this plugin to the user. """ if self.settings_tab_class: self.settings_tab = self.settings_tab_class(parent, self.name, self.get_string(StringContent.VisibleName)['title'], self.icon_path) def add_to_menu(self, menubar): """ Add menu items to the menu, given the menubar. :param menubar: The application's menu bar. """ pass def process_add_service_event(self, replace=False): """ Generic Drag and drop handler triggered from service_manager. """ log.debug('process_add_service_event event called for plugin %s' % self.name) if replace: self.media_item.on_add_edit_click() else: self.media_item.on_add_click() @staticmethod def about(): """ Show a dialog when the user clicks on the 'About' button in the plugin manager. """ raise NotImplementedError('Plugin.about needs to be defined by the plugin') def initialise(self): """ Called by the plugin Manager to initialise anything it needs. """ if self.media_item: self.media_item.initialise() self.main_window.media_dock_manager.add_item_to_dock(self.media_item) def finalise(self): """ Called by the plugin Manager to cleanup things. """ if self.media_item: self.main_window.media_dock_manager.remove_dock(self.media_item) def app_startup(self): """ Perform tasks on application startup """ pass def uses_theme(self, theme): """ Called to find out if a plugin is currently using a theme. Returns True if the theme is being used, otherwise returns False. """ return False def rename_theme(self, old_theme, new_theme): """ Renames a theme a plugin is using making the plugin use the new name. :param old_theme: The name of the theme the plugin should stop using. :param new_theme: The new name the plugin should now use """ pass def get_string(self, name): """ Encapsulate access of plugins translated text strings """ return self.text_strings[name] def set_plugin_ui_text_strings(self, tooltips): """ Called to define all translatable texts of the plugin :param tooltips: """ # Load Action self.__set_name_text_string(StringContent.Load, UiStrings().Load, tooltips['load']) # Import Action self.__set_name_text_string(StringContent.Import, UiStrings().Import, tooltips['import']) # New Action self.__set_name_text_string(StringContent.New, UiStrings().Add, tooltips['new']) # Edit Action self.__set_name_text_string(StringContent.Edit, UiStrings().Edit, tooltips['edit']) # Delete Action self.__set_name_text_string(StringContent.Delete, UiStrings().Delete, tooltips['delete']) # Preview Action self.__set_name_text_string(StringContent.Preview, UiStrings().Preview, tooltips['preview']) # Send Live Action self.__set_name_text_string(StringContent.Live, UiStrings().Live, tooltips['live']) # Add to Service Action self.__set_name_text_string(StringContent.Service, UiStrings().Service, tooltips['service']) def __set_name_text_string(self, name, title, tooltip): """ Utility method for creating a plugin's text_strings. This method makes use of the singular name of the plugin object so must only be called after this has been set. """ self.text_strings[name] = {'title': title, 'tooltip': tooltip} def get_display_css(self): """ Add css style sheets to htmlbuilder. """ return '' def get_display_javascript(self): """ Add javascript functions to htmlbuilder. """ return '' def refresh_css(self, frame): """ Allow plugins to refresh javascript on displayed screen. ``frame`` The Web frame holding the page. """ return '' def get_display_html(self): """ Add html code to htmlbuilder. """ return '' def config_update(self): """ Called when Config is changed to restart values dependent on configuration. """ log.info('config update processed') if self.media_item: self.media_item.config_update() def new_service_created(self): """ The plugin's needs to handle a new song creation """ pass OpenLP-2.4/openlp/core/lib/imagemanager.py0000644000175000017500000003316512657640340017543 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provides the store and management for Images automatically caching them and resizing them when needed. Only one copy of each image is needed in the system. A Thread is used to convert the image to a byte array so the user does not need to wait for the conversion to happen. """ import logging import os import time import queue from PyQt5 import QtCore from openlp.core.common import Registry from openlp.core.lib import ScreenList, resize_image, image_to_byte log = logging.getLogger(__name__) class ImageThread(QtCore.QThread): """ A special Qt thread class to speed up the display of images. This is threaded so it loads the frames and generates byte stream in background. """ def __init__(self, manager): """ Constructor for the thread class. ``manager`` The image manager. """ super(ImageThread, self).__init__(None) self.image_manager = manager def run(self): """ Run the thread. """ self.image_manager._process() class Priority(object): """ Enumeration class for different priorities. ``Lowest`` Only the image's byte stream has to be generated. But neither the ``QImage`` nor the byte stream has been requested yet. ``Low`` Only the image's byte stream has to be generated. Because the image's ``QImage`` has been requested previously it is reasonable to assume that the byte stream will be needed before the byte stream of other images whose ``QImage`` were not generated due to a request. ``Normal`` The image's byte stream as well as the image has to be generated. Neither the ``QImage`` nor the byte stream has been requested yet. ``High`` The image's byte stream as well as the image has to be generated. The ``QImage`` for this image has been requested. **Note**, this priority is only set when the ``QImage`` has not been generated yet. ``Urgent`` The image's byte stream as well as the image has to be generated. The byte stream for this image has been requested. **Note**, this priority is only set when the byte stream has not been generated yet. """ Lowest = 4 Low = 3 Normal = 2 High = 1 Urgent = 0 class Image(object): """ This class represents an image. To mark an image as *dirty* call the :class:`ImageManager`'s ``_reset_image`` method with the Image instance as argument. """ secondary_priority = 0 def __init__(self, path, source, background, width=-1, height=-1): """ Create an image for the :class:`ImageManager`'s cache. :param path: The image's file path. This should be an existing file path. :param source: The source describes the image's origin. Possible values are described in the :class:`~openlp.core.lib.ImageSource` class. :param background: A ``QtGui.QColor`` object specifying the colour to be used to fill the gabs if the image's ratio does not match with the display ratio. :param width: The width of the image, defaults to -1 meaning that the screen width will be used. :param height: The height of the image, defaults to -1 meaning that the screen height will be used. """ self.path = path self.image = None self.image_bytes = None self.priority = Priority.Normal self.source = source self.background = background self.timestamp = 0 self.width = width self.height = height # FIXME: We assume that the path exist. The caller has to take care that it exists! if os.path.exists(path): self.timestamp = os.stat(path).st_mtime self.secondary_priority = Image.secondary_priority Image.secondary_priority += 1 class PriorityQueue(queue.PriorityQueue): """ Customised ``Queue.PriorityQueue``. Each item in the queue must be a tuple with three values. The first value is the :class:`Image`'s ``priority`` attribute, the second value the :class:`Image`'s ``secondary_priority`` attribute. The last value the :class:`Image` instance itself:: (image.priority, image.secondary_priority, image) Doing this, the :class:`Queue.PriorityQueue` will sort the images according to their priorities, but also according to there number. However, the number only has an impact on the result if there are more images with the same priority. In such case the image which has been added earlier is privileged. """ def modify_priority(self, image, new_priority): """ Modifies the priority of the given ``image``. :param image: The image to remove. This should be an :class:`Image` instance. :param new_priority: The image's new priority. See the :class:`Priority` class for priorities. """ self.remove(image) image.priority = new_priority self.put((image.priority, image.secondary_priority, image)) def remove(self, image): """ Removes the given ``image`` from the queue. :param image: The image to remove. This should be an ``Image`` instance. """ if (image.priority, image.secondary_priority, image) in self.queue: self.queue.remove((image.priority, image.secondary_priority, image)) class ImageManager(QtCore.QObject): """ Image Manager handles the conversion and sizing of images. """ log.info('Image Manager loaded') def __init__(self): """ Constructor for the image manager. """ super(ImageManager, self).__init__() Registry().register('image_manager', self) current_screen = ScreenList().current self.width = current_screen['size'].width() self.height = current_screen['size'].height() self._cache = {} self.image_thread = ImageThread(self) self._conversion_queue = PriorityQueue() self.stop_manager = False Registry().register_function('images_regenerate', self.process_updates) def update_display(self): """ Screen has changed size so rebuild the cache to new size. """ log.debug('update_display') current_screen = ScreenList().current self.width = current_screen['size'].width() self.height = current_screen['size'].height() # Mark the images as dirty for a rebuild by setting the image and byte stream to None. for image in list(self._cache.values()): self._reset_image(image) def update_images_border(self, source, background): """ Border has changed so update all the images affected. """ log.debug('update_images_border') # Mark the images as dirty for a rebuild by setting the image and byte stream to None. for image in list(self._cache.values()): if image.source == source: image.background = background self._reset_image(image) def update_image_border(self, path, source, background, width=-1, height=-1): """ Border has changed so update the image affected. """ log.debug('update_image_border') # Mark the image as dirty for a rebuild by setting the image and byte stream to None. image = self._cache[(path, source, width, height)] if image.source == source: image.background = background self._reset_image(image) def _reset_image(self, image): """ Mark the given :class:`Image` instance as dirty by setting its ``image`` and ``image_bytes`` attributes to None. """ image.image = None image.image_bytes = None self._conversion_queue.modify_priority(image, Priority.Normal) def process_updates(self): """ Flush the queue to updated any data to update """ # We want only one thread. if not self.image_thread.isRunning(): self.image_thread.start() def get_image(self, path, source, width=-1, height=-1): """ Return the ``QImage`` from the cache. If not present wait for the background thread to process it. """ log.debug('getImage %s' % path) image = self._cache[(path, source, width, height)] if image.image is None: self._conversion_queue.modify_priority(image, Priority.High) # make sure we are running and if not give it a kick self.process_updates() while image.image is None: log.debug('getImage - waiting') time.sleep(0.1) elif image.image_bytes is None: # Set the priority to Low, because the image was requested but the byte stream was not generated yet. # However, we only need to do this, when the image was generated before it was requested (otherwise this is # already taken care of). self._conversion_queue.modify_priority(image, Priority.Low) return image.image def get_image_bytes(self, path, source, width=-1, height=-1): """ Returns the byte string for an image. If not present wait for the background thread to process it. """ log.debug('get_image_bytes %s' % path) image = self._cache[(path, source, width, height)] if image.image_bytes is None: self._conversion_queue.modify_priority(image, Priority.Urgent) # make sure we are running and if not give it a kick self.process_updates() while image.image_bytes is None: log.debug('getImageBytes - waiting') time.sleep(0.1) return image.image_bytes def add_image(self, path, source, background, width=-1, height=-1): """ Add image to cache if it is not already there. """ log.debug('add_image %s' % path) if not (path, source, width, height) in self._cache: image = Image(path, source, background, width, height) self._cache[(path, source, width, height)] = image self._conversion_queue.put((image.priority, image.secondary_priority, image)) # Check if the there are any images with the same path and check if the timestamp has changed. for image in list(self._cache.values()): if os.path.exists(path): if image.path == path and image.timestamp != os.stat(path).st_mtime: image.timestamp = os.stat(path).st_mtime self._reset_image(image) # We want only one thread. if not self.image_thread.isRunning(): self.image_thread.start() def _process(self): """ Controls the processing called from a ``QtCore.QThread``. """ log.debug('_process - started') while not self._conversion_queue.empty() and not self.stop_manager: self._process_cache() log.debug('_process - ended') def _process_cache(self): """ Actually does the work. """ log.debug('_processCache') image = self._conversion_queue.get()[2] # Generate the QImage for the image. if image.image is None: # Let's see if the image was requested with specific dimensions width = self.width if image.width == -1 else image.width height = self.height if image.height == -1 else image.height image.image = resize_image(image.path, width, height, image.background) # Set the priority to Lowest and stop here as we need to process more important images first. if image.priority == Priority.Normal: self._conversion_queue.modify_priority(image, Priority.Lowest) return # For image with high priority we set the priority to Low, as the byte stream might be needed earlier the # byte stream of image with Normal priority. We stop here as we need to process more important images first. elif image.priority == Priority.High: self._conversion_queue.modify_priority(image, Priority.Low) return # Generate the byte stream for the image. if image.image_bytes is None: image.image_bytes = image_to_byte(image.image) OpenLP-2.4/openlp/core/lib/theme.py0000644000175000017500000005170012657640340016223 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide the theme XML and handling functions for OpenLP v2 themes. """ import os import re import logging import json from xml.dom.minidom import Document from lxml import etree, objectify from openlp.core.common import AppLocation, de_hump from openlp.core.lib import str_to_bool, ScreenList, get_text_file_string log = logging.getLogger(__name__) class BackgroundType(object): """ Type enumeration for backgrounds. """ Solid = 0 Gradient = 1 Image = 2 Transparent = 3 @staticmethod def to_string(background_type): """ Return a string representation of a background type. """ if background_type == BackgroundType.Solid: return 'solid' elif background_type == BackgroundType.Gradient: return 'gradient' elif background_type == BackgroundType.Image: return 'image' elif background_type == BackgroundType.Transparent: return 'transparent' @staticmethod def from_string(type_string): """ Return a background type for the given string. """ if type_string == 'solid': return BackgroundType.Solid elif type_string == 'gradient': return BackgroundType.Gradient elif type_string == 'image': return BackgroundType.Image elif type_string == 'transparent': return BackgroundType.Transparent class BackgroundGradientType(object): """ Type enumeration for background gradients. """ Horizontal = 0 Vertical = 1 Circular = 2 LeftTop = 3 LeftBottom = 4 @staticmethod def to_string(gradient_type): """ Return a string representation of a background gradient type. """ if gradient_type == BackgroundGradientType.Horizontal: return 'horizontal' elif gradient_type == BackgroundGradientType.Vertical: return 'vertical' elif gradient_type == BackgroundGradientType.Circular: return 'circular' elif gradient_type == BackgroundGradientType.LeftTop: return 'leftTop' elif gradient_type == BackgroundGradientType.LeftBottom: return 'leftBottom' @staticmethod def from_string(type_string): """ Return a background gradient type for the given string. """ if type_string == 'horizontal': return BackgroundGradientType.Horizontal elif type_string == 'vertical': return BackgroundGradientType.Vertical elif type_string == 'circular': return BackgroundGradientType.Circular elif type_string == 'leftTop': return BackgroundGradientType.LeftTop elif type_string == 'leftBottom': return BackgroundGradientType.LeftBottom class HorizontalType(object): """ Type enumeration for horizontal alignment. """ Left = 0 Right = 1 Center = 2 Justify = 3 Names = ['left', 'right', 'center', 'justify'] class VerticalType(object): """ Type enumeration for vertical alignment. """ Top = 0 Middle = 1 Bottom = 2 Names = ['top', 'middle', 'bottom'] BOOLEAN_LIST = ['bold', 'italics', 'override', 'outline', 'shadow', 'slide_transition'] INTEGER_LIST = ['size', 'line_adjustment', 'x', 'height', 'y', 'width', 'shadow_size', 'outline_size', 'horizontal_align', 'vertical_align', 'wrap_style'] class ThemeXML(object): """ A class to encapsulate the Theme XML. """ def __init__(self): """ Initialise the theme object. """ # basic theme object with defaults json_dir = os.path.join(AppLocation.get_directory(AppLocation.AppDir), 'core', 'lib', 'json') json_file = os.path.join(json_dir, 'theme.json') jsn = get_text_file_string(json_file) jsn = json.loads(jsn) self.expand_json(jsn) def expand_json(self, var, prev=None): """ Expand the json objects and make into variables. :param var: The array list to be processed. :param prev: The preceding string to add to the key to make the variable. """ for key, value in var.items(): if prev: key = prev + "_" + key else: key = key if isinstance(value, dict): self.expand_json(value, key) else: setattr(self, key, value) def extend_image_filename(self, path): """ Add the path name to the image name so the background can be rendered. :param path: The path name to be added. """ if self.background_type == 'image': if self.background_filename and path: self.theme_name = self.theme_name.strip() self.background_filename = self.background_filename.strip() self.background_filename = os.path.join(path, self.theme_name, self.background_filename) def _new_document(self, name): """ Create a new theme XML document. """ self.theme_xml = Document() self.theme = self.theme_xml.createElement('theme') self.theme_xml.appendChild(self.theme) self.theme.setAttribute('version', '2.0') self.name = self.theme_xml.createElement('name') text_node = self.theme_xml.createTextNode(name) self.name.appendChild(text_node) self.theme.appendChild(self.name) def add_background_transparent(self): """ Add a transparent background. """ background = self.theme_xml.createElement('background') background.setAttribute('type', 'transparent') self.theme.appendChild(background) def add_background_solid(self, bkcolor): """ Add a Solid background. :param bkcolor: The color of the background. """ background = self.theme_xml.createElement('background') background.setAttribute('type', 'solid') self.theme.appendChild(background) self.child_element(background, 'color', str(bkcolor)) def add_background_gradient(self, startcolor, endcolor, direction): """ Add a gradient background. :param startcolor: The gradient's starting colour. :param endcolor: The gradient's ending colour. :param direction: The direction of the gradient. """ background = self.theme_xml.createElement('background') background.setAttribute('type', 'gradient') self.theme.appendChild(background) # Create startColor element self.child_element(background, 'startColor', str(startcolor)) # Create endColor element self.child_element(background, 'endColor', str(endcolor)) # Create direction element self.child_element(background, 'direction', str(direction)) def add_background_image(self, filename, border_color): """ Add a image background. :param filename: The file name of the image. :param border_color: """ background = self.theme_xml.createElement('background') background.setAttribute('type', 'image') self.theme.appendChild(background) # Create Filename element self.child_element(background, 'filename', filename) # Create endColor element self.child_element(background, 'borderColor', str(border_color)) def add_font(self, name, color, size, override, fonttype='main', bold='False', italics='False', line_adjustment=0, xpos=0, ypos=0, width=0, height=0, outline='False', outline_color='#ffffff', outline_pixel=2, shadow='False', shadow_color='#ffffff', shadow_pixel=5): """ Add a Font. :param name: The name of the font. :param color: The colour of the font. :param size: The size of the font. :param override: Whether or not to override the default positioning of the theme. :param fonttype: The type of font, ``main`` or ``footer``. Defaults to ``main``. :param bold: :param italics: The weight of then font Defaults to 50 Normal :param line_adjustment: Does the font render to italics Defaults to 0 Normal :param xpos: The X position of the text block. :param ypos: The Y position of the text block. :param width: The width of the text block. :param height: The height of the text block. :param outline: Whether or not to show an outline. :param outline_color: The colour of the outline. :param outline_pixel: How big the Shadow is :param shadow: Whether or not to show a shadow. :param shadow_color: The colour of the shadow. :param shadow_pixel: How big the Shadow is """ background = self.theme_xml.createElement('font') background.setAttribute('type', fonttype) self.theme.appendChild(background) # Create Font name element self.child_element(background, 'name', name) # Create Font color element self.child_element(background, 'color', str(color)) # Create Proportion name element self.child_element(background, 'size', str(size)) # Create weight name element self.child_element(background, 'bold', str(bold)) # Create italics name element self.child_element(background, 'italics', str(italics)) # Create indentation name element self.child_element(background, 'line_adjustment', str(line_adjustment)) # Create Location element element = self.theme_xml.createElement('location') element.setAttribute('override', str(override)) element.setAttribute('x', str(xpos)) element.setAttribute('y', str(ypos)) element.setAttribute('width', str(width)) element.setAttribute('height', str(height)) background.appendChild(element) # Shadow element = self.theme_xml.createElement('shadow') element.setAttribute('shadowColor', str(shadow_color)) element.setAttribute('shadowSize', str(shadow_pixel)) value = self.theme_xml.createTextNode(str(shadow)) element.appendChild(value) background.appendChild(element) # Outline element = self.theme_xml.createElement('outline') element.setAttribute('outlineColor', str(outline_color)) element.setAttribute('outlineSize', str(outline_pixel)) value = self.theme_xml.createTextNode(str(outline)) element.appendChild(value) background.appendChild(element) def add_display(self, horizontal, vertical, transition): """ Add a Display options. :param horizontal: The horizontal alignment of the text. :param vertical: The vertical alignment of the text. :param transition: Whether the slide transition is active. """ background = self.theme_xml.createElement('display') self.theme.appendChild(background) # Horizontal alignment element = self.theme_xml.createElement('horizontalAlign') value = self.theme_xml.createTextNode(str(horizontal)) element.appendChild(value) background.appendChild(element) # Vertical alignment element = self.theme_xml.createElement('verticalAlign') value = self.theme_xml.createTextNode(str(vertical)) element.appendChild(value) background.appendChild(element) # Slide Transition element = self.theme_xml.createElement('slideTransition') value = self.theme_xml.createTextNode(str(transition)) element.appendChild(value) background.appendChild(element) def child_element(self, element, tag, value): """ Generic child element creator. """ child = self.theme_xml.createElement(tag) child.appendChild(self.theme_xml.createTextNode(value)) element.appendChild(child) return child def set_default_header_footer(self): """ Set the header and footer size into the current primary screen. 10 px on each side is removed to allow for a border. """ current_screen = ScreenList().current self.font_main_y = 0 self.font_main_width = current_screen['size'].width() - 20 self.font_main_height = current_screen['size'].height() * 9 / 10 self.font_footer_width = current_screen['size'].width() - 20 self.font_footer_y = current_screen['size'].height() * 9 / 10 self.font_footer_height = current_screen['size'].height() / 10 def dump_xml(self): """ Dump the XML to file used for debugging """ return self.theme_xml.toprettyxml(indent=' ') def extract_xml(self): """ Print out the XML string. """ self._build_xml_from_attrs() return self.theme_xml.toxml('utf-8').decode('utf-8') def extract_formatted_xml(self): """ Pull out the XML string formatted for human consumption """ self._build_xml_from_attrs() return self.theme_xml.toprettyxml(indent=' ', newl='\n', encoding='utf-8') def parse(self, xml): """ Read in an XML string and parse it. :param xml: The XML string to parse. """ self.parse_xml(str(xml)) def parse_xml(self, xml): """ Parse an XML string. :param xml: The XML string to parse. """ # remove encoding string line = xml.find('?>') if line: xml = xml[line + 2:] try: theme_xml = objectify.fromstring(xml) except etree.XMLSyntaxError: log.exception('Invalid xml %s', xml) return xml_iter = theme_xml.getiterator() for element in xml_iter: master = '' if element.tag == 'background': if element.attrib: for attr in element.attrib: self._create_attr(element.tag, attr, element.attrib[attr]) parent = element.getparent() if parent is not None: if parent.tag == 'font': master = parent.tag + '_' + parent.attrib['type'] # set up Outline and Shadow Tags and move to font_main if parent.tag == 'display': if element.tag.startswith('shadow') or element.tag.startswith('outline'): self._create_attr('font_main', element.tag, element.text) master = parent.tag if parent.tag == 'background': master = parent.tag if master: self._create_attr(master, element.tag, element.text) if element.attrib: for attr in element.attrib: base_element = attr # correction for the shadow and outline tags if element.tag == 'shadow' or element.tag == 'outline': if not attr.startswith(element.tag): base_element = element.tag + '_' + attr self._create_attr(master, base_element, element.attrib[attr]) else: if element.tag == 'name': self._create_attr('theme', element.tag, element.text) def _translate_tags(self, master, element, value): """ Clean up XML removing and redefining tags """ master = master.strip().lstrip() element = element.strip().lstrip() value = str(value).strip().lstrip() if master == 'display': if element == 'wrapStyle': return True, None, None, None if element.startswith('shadow') or element.startswith('outline'): master = 'font_main' # fix bold font if element == 'weight': element = 'bold' if value == 'Normal': value = False else: value = True if element == 'proportion': element = 'size' return False, master, element, value def _create_attr(self, master, element, value): """ Create the attributes with the correct data types and name format """ reject, master, element, value = self._translate_tags(master, element, value) if reject: return field = de_hump(element) tag = master + '_' + field if field in BOOLEAN_LIST: setattr(self, tag, str_to_bool(value)) elif field in INTEGER_LIST: setattr(self, tag, int(value)) else: # make string value unicode if not isinstance(value, str): value = str(str(value), 'utf-8') # None means an empty string so lets have one. if value == 'None': value = '' setattr(self, tag, str(value).strip().lstrip()) def __str__(self): """ Return a string representation of this object. """ theme_strings = [] for key in dir(self): if key[0:1] != '_': theme_strings.append('%30s: %s' % (key, getattr(self, key))) return '\n'.join(theme_strings) def _build_xml_from_attrs(self): """ Build the XML from the varables in the object """ self._new_document(self.theme_name) if self.background_type == BackgroundType.to_string(BackgroundType.Solid): self.add_background_solid(self.background_color) elif self.background_type == BackgroundType.to_string(BackgroundType.Gradient): self.add_background_gradient( self.background_start_color, self.background_end_color, self.background_direction ) elif self.background_type == BackgroundType.to_string(BackgroundType.Image): filename = os.path.split(self.background_filename)[1] self.add_background_image(filename, self.background_border_color) elif self.background_type == BackgroundType.to_string(BackgroundType.Transparent): self.add_background_transparent() self.add_font( self.font_main_name, self.font_main_color, self.font_main_size, self.font_main_override, 'main', self.font_main_bold, self.font_main_italics, self.font_main_line_adjustment, self.font_main_x, self.font_main_y, self.font_main_width, self.font_main_height, self.font_main_outline, self.font_main_outline_color, self.font_main_outline_size, self.font_main_shadow, self.font_main_shadow_color, self.font_main_shadow_size ) self.add_font( self.font_footer_name, self.font_footer_color, self.font_footer_size, self.font_footer_override, 'footer', self.font_footer_bold, self.font_footer_italics, 0, # line adjustment self.font_footer_x, self.font_footer_y, self.font_footer_width, self.font_footer_height, self.font_footer_outline, self.font_footer_outline_color, self.font_footer_outline_size, self.font_footer_shadow, self.font_footer_shadow_color, self.font_footer_shadow_size ) self.add_display( self.display_horizontal_align, self.display_vertical_align, self.display_slide_transition ) OpenLP-2.4/openlp/core/lib/__init__.py0000644000175000017500000003117312657640340016662 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`lib` module contains most of the components and libraries that make OpenLP work. """ from distutils.version import LooseVersion import logging import os from PyQt5 import QtCore, QtGui, Qt, QtWidgets from openlp.core.common import translate log = logging.getLogger(__name__ + '.__init__') class ServiceItemContext(object): """ The context in which a Service Item is being generated """ Preview = 0 Live = 1 Service = 2 class ImageSource(object): """ This enumeration class represents different image sources. An image sources states where an image is used. This enumeration class is need in the context of the :class:~openlp.core.lib.imagemanager`. ``ImagePlugin`` This states that an image is being used by the image plugin. ``Theme`` This says, that the image is used by a theme. """ ImagePlugin = 1 Theme = 2 class MediaType(object): """ An enumeration class for types of media. """ Audio = 1 Video = 2 class ServiceItemAction(object): """ Provides an enumeration for the required action moving between service items by left/right arrow keys """ Previous = 1 PreviousLastSlide = 2 Next = 3 def get_text_file_string(text_file): """ Open a file and return its content as unicode string. If the supplied file name is not a file then the function returns False. If there is an error loading the file or the content can't be decoded then the function will return None. :param text_file: The name of the file. :return: The file as a single string """ if not os.path.isfile(text_file): return False file_handle = None content = None try: file_handle = open(text_file, 'r', encoding='utf-8') if not file_handle.read(3) == '\xEF\xBB\xBF': # no BOM was found file_handle.seek(0) content = file_handle.read() except (IOError, UnicodeError): log.exception('Failed to open text file %s' % text_file) finally: if file_handle: file_handle.close() return content def str_to_bool(string_value): """ Convert a string version of a boolean into a real boolean. :param string_value: The string value to examine and convert to a boolean type. :return: The correct boolean value """ if isinstance(string_value, bool): return string_value return str(string_value).strip().lower() in ('true', 'yes', 'y') def build_icon(icon): """ Build a QIcon instance from an existing QIcon, a resource location, or a physical file location. If the icon is a QIcon instance, that icon is simply returned. If not, it builds a QIcon instance from the resource or file name. :param icon: The icon to build. This can be a QIcon, a resource string in the form ``:/resource/file.png``, or a file location like ``/path/to/file.png``. However, the **recommended** way is to specify a resource string. :return: The build icon. """ button_icon = QtGui.QIcon() if isinstance(icon, QtGui.QIcon): button_icon = icon elif isinstance(icon, str): if icon.startswith(':/'): button_icon.addPixmap(QtGui.QPixmap(icon), QtGui.QIcon.Normal, QtGui.QIcon.Off) else: button_icon.addPixmap(QtGui.QPixmap.fromImage(QtGui.QImage(icon)), QtGui.QIcon.Normal, QtGui.QIcon.Off) elif isinstance(icon, QtGui.QImage): button_icon.addPixmap(QtGui.QPixmap.fromImage(icon), QtGui.QIcon.Normal, QtGui.QIcon.Off) return button_icon def image_to_byte(image, base_64=True): """ Resize an image to fit on the current screen for the web and returns it as a byte stream. :param image: The image to converted. :param base_64: If True returns the image as Base64 bytes, otherwise the image is returned as a byte array. To preserve original intention, this defaults to True """ log.debug('image_to_byte - start') byte_array = QtCore.QByteArray() # use buffer to store pixmap into byteArray buffie = QtCore.QBuffer(byte_array) buffie.open(QtCore.QIODevice.WriteOnly) image.save(buffie, "PNG") log.debug('image_to_byte - end') if not base_64: return byte_array # convert to base64 encoding so does not get missed! return bytes(byte_array.toBase64()).decode('utf-8') def create_thumb(image_path, thumb_path, return_icon=True, size=None): """ Create a thumbnail from the given image path and depending on ``return_icon`` it returns an icon from this thumb. :param image_path: The image file to create the icon from. :param thumb_path: The filename to save the thumbnail to. :param return_icon: States if an icon should be build and returned from the thumb. Defaults to ``True``. :param size: Allows to state a own size (QtCore.QSize) to use. Defaults to ``None``, which means that a default height of 88 is used. :return: The final icon. """ ext = os.path.splitext(thumb_path)[1].lower() reader = QtGui.QImageReader(image_path) if size is None: ratio = reader.size().width() / reader.size().height() reader.setScaledSize(QtCore.QSize(int(ratio * 88), 88)) else: reader.setScaledSize(size) thumb = reader.read() thumb.save(thumb_path, ext[1:]) if not return_icon: return if os.path.exists(thumb_path): return build_icon(thumb_path) # Fallback for files with animation support. return build_icon(image_path) def validate_thumb(file_path, thumb_path): """ Validates whether an file's thumb still exists and if is up to date. **Note**, you must **not** call this function, before checking the existence of the file. :param file_path: The path to the file. The file **must** exist! :param thumb_path: The path to the thumb. :return: True, False if the image has changed since the thumb was created. """ if not os.path.exists(thumb_path): return False image_date = os.stat(file_path).st_mtime thumb_date = os.stat(thumb_path).st_mtime return image_date <= thumb_date def resize_image(image_path, width, height, background='#000000'): """ Resize an image to fit on the current screen. DO NOT REMOVE THE DEFAULT BACKGROUND VALUE! :param image_path: The path to the image to resize. :param width: The new image width. :param height: The new image height. :param background: The background colour. Defaults to black. """ log.debug('resize_image - start') reader = QtGui.QImageReader(image_path) # The image's ratio. image_ratio = reader.size().width() / reader.size().height() resize_ratio = width / height # Figure out the size we want to resize the image to (keep aspect ratio). if image_ratio == resize_ratio: size = QtCore.QSize(width, height) elif image_ratio < resize_ratio: # Use the image's height as reference for the new size. size = QtCore.QSize(image_ratio * height, height) else: # Use the image's width as reference for the new size. size = QtCore.QSize(width, 1 / (image_ratio / width)) reader.setScaledSize(size) preview = reader.read() if image_ratio == resize_ratio: # We neither need to centre the image nor add "bars" to the image. return preview real_width = preview.width() real_height = preview.height() # and move it to the centre of the preview space new_image = QtGui.QImage(width, height, QtGui.QImage.Format_ARGB32_Premultiplied) painter = QtGui.QPainter(new_image) painter.fillRect(new_image.rect(), QtGui.QColor(background)) painter.drawImage((width - real_width) // 2, (height - real_height) // 2, preview) return new_image def check_item_selected(list_widget, message): """ Check if a list item is selected so an action may be performed on it :param list_widget: The list to check for selected items :param message: The message to give the user if no item is selected """ if not list_widget.selectedIndexes(): QtWidgets.QMessageBox.information(list_widget.parent(), translate('OpenLP.MediaManagerItem', 'No Items Selected'), message) return False return True def clean_tags(text): """ Remove Tags from text for display :param text: Text to be cleaned """ text = text.replace('
', '\n') text = text.replace('{br}', '\n') text = text.replace(' ', ' ') for tag in FormattingTags.get_html_tags(): text = text.replace(tag['start tag'], '') text = text.replace(tag['end tag'], '') return text def expand_tags(text): """ Expand tags HTML for display :param text: The text to be expanded. """ for tag in FormattingTags.get_html_tags(): text = text.replace(tag['start tag'], tag['start html']) text = text.replace(tag['end tag'], tag['end html']) return text def create_separated_list(string_list): """ Returns a string that represents a join of a list of strings with a localized separator. This function corresponds to QLocale::createSeparatedList which was introduced in Qt 4.8 and implements the algorithm from http://www.unicode.org/reports/tr35/#ListPatterns :param string_list: List of unicode strings """ if LooseVersion(Qt.PYQT_VERSION_STR) >= LooseVersion('4.9') and LooseVersion(Qt.qVersion()) >= LooseVersion('4.8'): return QtCore.QLocale().createSeparatedList(string_list) if not string_list: return '' elif len(string_list) == 1: return string_list[0] elif len(string_list) == 2: return translate('OpenLP.core.lib', '%s and %s', 'Locale list separator: 2 items') % (string_list[0], string_list[1]) else: merged = translate('OpenLP.core.lib', '%s, and %s', 'Locale list separator: end') % (string_list[-2], string_list[-1]) for index in reversed(list(range(1, len(string_list) - 2))): merged = translate('OpenLP.core.lib', '%s, %s', 'Locale list separator: middle') % (string_list[index], merged) return translate('OpenLP.core.lib', '%s, %s', 'Locale list separator: start') % (string_list[0], merged) from .colorbutton import ColorButton from .exceptions import ValidationError from .filedialog import FileDialog from .screen import ScreenList from .listwidgetwithdnd import ListWidgetWithDnD from .treewidgetwithdnd import TreeWidgetWithDnD from .formattingtags import FormattingTags from .spelltextedit import SpellTextEdit from .plugin import PluginStatus, StringContent, Plugin from .pluginmanager import PluginManager from .settingstab import SettingsTab from .serviceitem import ServiceItem, ServiceItemType, ItemCapabilities from .htmlbuilder import build_html, build_lyrics_format_css, build_lyrics_outline_css from .toolbar import OpenLPToolbar from .dockwidget import OpenLPDockWidget from .imagemanager import ImageManager from .renderer import Renderer from .mediamanageritem import MediaManagerItem from .projector.db import ProjectorDB, Projector from .projector.pjlink1 import PJLink1 from .projector.constants import PJLINK_PORT, ERROR_MSG, ERROR_STRING OpenLP-2.4/openlp/core/lib/filedialog.py0000644000175000017500000000536412657640340017225 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide a work around for a bug in QFileDialog """ import logging import os from urllib import parse from PyQt5 import QtWidgets from openlp.core.common import UiStrings log = logging.getLogger(__name__) class FileDialog(QtWidgets.QFileDialog): """ Subclass QFileDialog to work round a bug """ @staticmethod def getOpenFileNames(parent, *args, **kwargs): """ Reimplement getOpenFileNames to fix the way it returns some file names that url encoded when selecting multiple files """ files, filter_used = QtWidgets.QFileDialog.getOpenFileNames(parent, *args, **kwargs) file_list = [] for file in files: if not os.path.exists(file): log.info('File not found. Attempting to unquote.') file = parse.unquote(file) if not os.path.exists(file): log.error('File %s not found.' % file) QtWidgets.QMessageBox.information(parent, UiStrings().FileNotFound, UiStrings().FileNotFoundMessage % file) continue file_list.append(file) return file_list OpenLP-2.4/openlp/core/lib/renderer.py0000644000175000017500000006475112657640340016741 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import re from PyQt5 import QtGui, QtCore, QtWebKitWidgets from openlp.core.common import Registry, RegistryProperties, OpenLPMixin, RegistryMixin, Settings from openlp.core.lib import FormattingTags, ImageSource, ItemCapabilities, ScreenList, ServiceItem, expand_tags, \ build_lyrics_format_css, build_lyrics_outline_css from openlp.core.common import ThemeLevel from openlp.core.ui import MainDisplay VERSE = 'The Lord said to {r}Noah{/r}: \n' \ 'There\'s gonna be a {su}floody{/su}, {sb}floody{/sb}\n' \ 'The Lord said to {g}Noah{/g}:\n' \ 'There\'s gonna be a {st}floody{/st}, {it}floody{/it}\n' \ 'Get those children out of the muddy, muddy \n' \ '{r}C{/r}{b}h{/b}{bl}i{/bl}{y}l{/y}{g}d{/g}{pk}' \ 'r{/pk}{o}e{/o}{pp}n{/pp} of the Lord\n' VERSE_FOR_LINE_COUNT = '\n'.join(map(str, range(100))) FOOTER = ['Arky Arky (Unknown)', 'Public Domain', 'CCLI 123456'] class Renderer(OpenLPMixin, RegistryMixin, RegistryProperties): """ Class to pull all Renderer interactions into one place. The plugins will call helper methods to do the rendering but this class will provide display defense code. """ def __init__(self): """ Initialise the renderer. """ super(Renderer, self).__init__(None) # Need live behaviour if this is also working as a pseudo MainDisplay. self.screens = ScreenList() self.theme_level = ThemeLevel.Global self.global_theme_name = '' self.service_theme_name = '' self.item_theme_name = '' self.force_page = False self._theme_dimensions = {} self._calculate_default() self.web = QtWebKitWidgets.QWebView() self.web.setVisible(False) self.web_frame = self.web.page().mainFrame() Registry().register_function('theme_update_global', self.set_global_theme) def bootstrap_initialise(self): """ Initialise functions """ self.display = MainDisplay(self) self.display.setup() def update_display(self): """ Updates the renderer's information about the current screen. """ self._calculate_default() if self.display: self.display.close() self.display = MainDisplay(self) self.display.setup() self._theme_dimensions = {} def update_theme(self, theme_name, old_theme_name=None, only_delete=False): """ This method updates the theme in ``_theme_dimensions`` when a theme has been edited or renamed. :param theme_name: The current theme name. :param old_theme_name: The old theme name. Has only to be passed, when the theme has been renamed. Defaults to *None*. :param only_delete: Only remove the given ``theme_name`` from the ``_theme_dimensions`` list. This can be used when a theme is permanently deleted. """ if old_theme_name is not None and old_theme_name in self._theme_dimensions: del self._theme_dimensions[old_theme_name] if theme_name in self._theme_dimensions: del self._theme_dimensions[theme_name] if not only_delete and theme_name: self._set_theme(theme_name) def _set_theme(self, theme_name): """ Helper method to save theme names and theme data. :param theme_name: The theme name """ self.log_debug("_set_theme with theme %s" % theme_name) if theme_name not in self._theme_dimensions: theme_data = self.theme_manager.get_theme_data(theme_name) main_rect = self.get_main_rectangle(theme_data) footer_rect = self.get_footer_rectangle(theme_data) self._theme_dimensions[theme_name] = [theme_data, main_rect, footer_rect] else: theme_data, main_rect, footer_rect = self._theme_dimensions[theme_name] # if No file do not update cache if theme_data.background_filename: self.image_manager.add_image(theme_data.background_filename, ImageSource.Theme, QtGui.QColor(theme_data.background_border_color)) def pre_render(self, override_theme_data=None): """ Set up the theme to be used before rendering an item. :param override_theme_data: The theme data should be passed, when we want to use our own theme data, regardless of the theme level. This should for example be used in the theme manager. **Note**, this is **not** to be mixed up with the ``set_item_theme`` method. """ # Just assume we use the global theme. theme_to_use = self.global_theme_name # The theme level is either set to Service or Item. Use the service theme if one is set. We also have to use the # service theme, even when the theme level is set to Item, because the item does not necessarily have to have a # theme. if self.theme_level != ThemeLevel.Global: # When the theme level is at Service and we actually have a service theme then use it. if self.service_theme_name: theme_to_use = self.service_theme_name # If we have Item level and have an item theme then use it. if self.theme_level == ThemeLevel.Song and self.item_theme_name: theme_to_use = self.item_theme_name if override_theme_data is None: if theme_to_use not in self._theme_dimensions: self._set_theme(theme_to_use) theme_data, main_rect, footer_rect = self._theme_dimensions[theme_to_use] else: # Ignore everything and use own theme data. theme_data = override_theme_data main_rect = self.get_main_rectangle(override_theme_data) footer_rect = self.get_footer_rectangle(override_theme_data) self._set_text_rectangle(theme_data, main_rect, footer_rect) return theme_data, self._rect, self._rect_footer def set_theme_level(self, theme_level): """ Sets the theme level. :param theme_level: The theme level to be used. """ self.theme_level = theme_level def set_global_theme(self): """ Set the global-level theme name. """ global_theme_name = Settings().value('themes/global theme') self._set_theme(global_theme_name) self.global_theme_name = global_theme_name def set_service_theme(self, service_theme_name): """ Set the service-level theme. :param service_theme_name: The service level theme's name. """ self._set_theme(service_theme_name) self.service_theme_name = service_theme_name def set_item_theme(self, item_theme_name): """ Set the item-level theme. **Note**, this has to be done for each item we are rendering. :param item_theme_name: The item theme's name. """ self.log_debug("set_item_theme with theme %s" % item_theme_name) self._set_theme(item_theme_name) self.item_theme_name = item_theme_name def generate_preview(self, theme_data, force_page=False): """ Generate a preview of a theme. :param theme_data: The theme to generated a preview for. :param force_page: Flag to tell message lines per page need to be generated. """ # save value for use in format_slide self.force_page = force_page # build a service item to generate preview service_item = ServiceItem() if self.force_page: # make big page for theme edit dialog to get line count service_item.add_from_text(VERSE_FOR_LINE_COUNT) else: service_item.add_from_text(VERSE) service_item.raw_footer = FOOTER # if No file do not update cache if theme_data.background_filename: self.image_manager.add_image( theme_data.background_filename, ImageSource.Theme, QtGui.QColor(theme_data.background_border_color)) theme_data, main, footer = self.pre_render(theme_data) service_item.theme_data = theme_data service_item.main = main service_item.footer = footer service_item.render(True) if not self.force_page: self.display.build_html(service_item) raw_html = service_item.get_rendered_frame(0) self.display.text(raw_html, False) preview = self.display.preview() return preview self.force_page = False def format_slide(self, text, item): """ Calculate how much text can fit on a slide. :param text: The words to go on the slides. :param item: The :class:`~openlp.core.lib.serviceitem.ServiceItem` item object. """ self.log_debug('format slide') # Add line endings after each line of text used for bibles. line_end = '
' if item.is_capable(ItemCapabilities.NoLineBreaks): line_end = ' ' # Bibles if item.is_capable(ItemCapabilities.CanWordSplit): pages = self._paginate_slide_words(text.split('\n'), line_end) # Songs and Custom elif item.is_capable(ItemCapabilities.CanSoftBreak): pages = [] if '[---]' in text: # Remove two or more option slide breaks next to each other (causing infinite loop). while '\n[---]\n[---]\n' in text: text = text.replace('\n[---]\n[---]\n', '\n[---]\n') while ' [---]' in text: text = text.replace(' [---]', '[---]') while '[---] ' in text: text = text.replace('[---] ', '[---]') count = 0 # only loop 5 times as there will never be more than 5 incorrect logical splits on a single slide. while True and count < 5: slides = text.split('\n[---]\n', 2) # If there are (at least) two occurrences of [---] we use the first two slides (and neglect the last # for now). if len(slides) == 3: html_text = expand_tags('\n'.join(slides[:2])) # We check both slides to determine if the optional split is needed (there is only one optional # split). else: html_text = expand_tags('\n'.join(slides)) html_text = html_text.replace('\n', '
') if self._text_fits_on_slide(html_text): # The first two optional slides fit (as a whole) on one slide. Replace the first occurrence # of [---]. text = text.replace('\n[---]', '', 1) else: # The first optional slide fits, which means we have to render the first optional slide. text_contains_split = '[---]' in text if text_contains_split: try: text_to_render, text = text.split('\n[---]\n', 1) except ValueError: text_to_render = text.split('\n[---]\n')[0] text = '' text_to_render, raw_tags, html_tags = get_start_tags(text_to_render) if text: text = raw_tags + text else: text_to_render = text text = '' lines = text_to_render.strip('\n').split('\n') slides = self._paginate_slide(lines, line_end) if len(slides) > 1 and text: # Add all slides apart from the last one the list. pages.extend(slides[:-1]) if text_contains_split: text = slides[-1] + '\n[---]\n' + text else: text = slides[-1] + '\n' + text text = text.replace('
', '\n') else: pages.extend(slides) if '[---]' not in text: lines = text.strip('\n').split('\n') pages.extend(self._paginate_slide(lines, line_end)) break count += 1 else: # Clean up line endings. pages = self._paginate_slide(text.split('\n'), line_end) else: pages = self._paginate_slide(text.split('\n'), line_end) new_pages = [] for page in pages: while page.endswith('
'): page = page[:-4] new_pages.append(page) return new_pages def _calculate_default(self): """ Calculate the default dimensions of the screen. """ screen_size = self.screens.current['size'] self.width = screen_size.width() self.height = screen_size.height() self.screen_ratio = self.height / self.width self.log_debug('_calculate default %s, %f' % (screen_size, self.screen_ratio)) # 90% is start of footer self.footer_start = int(self.height * 0.90) def get_main_rectangle(self, theme_data): """ Calculates the placement and size of the main rectangle. :param theme_data: The theme information """ if not theme_data.font_main_override: return QtCore.QRect(10, 0, self.width - 20, self.footer_start) else: return QtCore.QRect(theme_data.font_main_x, theme_data.font_main_y, theme_data.font_main_width - 1, theme_data.font_main_height - 1) def get_footer_rectangle(self, theme_data): """ Calculates the placement and size of the footer rectangle. :param theme_data: The theme data. """ if not theme_data.font_footer_override: return QtCore.QRect(10, self.footer_start, self.width - 20, self.height - self.footer_start) else: return QtCore.QRect(theme_data.font_footer_x, theme_data.font_footer_y, theme_data.font_footer_width - 1, theme_data.font_footer_height - 1) def _set_text_rectangle(self, theme_data, rect_main, rect_footer): """ Sets the rectangle within which text should be rendered. :param theme_data: The theme data. :param rect_main: The main text block. :param rect_footer: The footer text block. """ self.log_debug('_set_text_rectangle %s , %s' % (rect_main, rect_footer)) self._rect = rect_main self._rect_footer = rect_footer self.page_width = self._rect.width() self.page_height = self._rect.height() if theme_data.font_main_shadow: self.page_width -= int(theme_data.font_main_shadow_size) self.page_height -= int(theme_data.font_main_shadow_size) # For the life of my I don't know why we have to completely kill the QWebView in order for the display to work # properly, but we do. See bug #1041366 for an example of what happens if we take this out. self.web = None self.web = QtWebKitWidgets.QWebView() self.web.setVisible(False) self.web.resize(self.page_width, self.page_height) self.web_frame = self.web.page().mainFrame() # Adjust width and height to account for shadow. outline done in css. html = """
""" % \ (build_lyrics_format_css(theme_data, self.page_width, self.page_height), build_lyrics_outline_css(theme_data)) self.web.setHtml(html) self.empty_height = self.web_frame.contentsSize().height() def _paginate_slide(self, lines, line_end): """ Figure out how much text can appear on a slide, using the current theme settings. **Note:** The smallest possible "unit" of text for a slide is one line. If the line is too long it will be cut off when displayed. :param lines: The text to be fitted on the slide split into lines. :param line_end: The text added after each line. Either ``' '`` or ``'
``. """ formatted = [] previous_html = '' previous_raw = '' separator = '
' html_lines = list(map(expand_tags, lines)) # Text too long so go to next page. if not self._text_fits_on_slide(separator.join(html_lines)): html_text, previous_raw = self._binary_chop( formatted, previous_html, previous_raw, html_lines, lines, separator, '') else: previous_raw = separator.join(lines) formatted.append(previous_raw) return formatted def _paginate_slide_words(self, lines, line_end): """ Figure out how much text can appear on a slide, using the current theme settings. **Note:** The smallest possible "unit" of text for a slide is one word. If one line is too long it will be processed word by word. This is sometimes need for **bible** verses. :param lines: The text to be fitted on the slide split into lines. :param line_end: The text added after each line. Either ``' '`` or ``'
``. This is needed for **bibles**. """ formatted = [] previous_html = '' previous_raw = '' for line in lines: line = line.strip() html_line = expand_tags(line) # Text too long so go to next page. if not self._text_fits_on_slide(previous_html + html_line): # Check if there was a verse before the current one and append it, when it fits on the page. if previous_html: if self._text_fits_on_slide(previous_html): formatted.append(previous_raw) previous_html = '' previous_raw = '' # Now check if the current verse will fit, if it does not we have to start to process the verse # word by word. if self._text_fits_on_slide(html_line): previous_html = html_line + line_end previous_raw = line + line_end continue # Figure out how many words of the line will fit on screen as the line will not fit as a whole. raw_words = words_split(line) html_words = list(map(expand_tags, raw_words)) previous_html, previous_raw = \ self._binary_chop(formatted, previous_html, previous_raw, html_words, raw_words, ' ', line_end) else: previous_html += html_line + line_end previous_raw += line + line_end formatted.append(previous_raw) return formatted def _binary_chop(self, formatted, previous_html, previous_raw, html_list, raw_list, separator, line_end): """ This implements the binary chop algorithm for faster rendering. This algorithm works line based (line by line) and word based (word by word). It is assumed that this method is **only** called, when the lines/words to be rendered do **not** fit as a whole. :param formatted: The list to append any slides. :param previous_html: The html text which is know to fit on a slide, but is not yet added to the list of slides. (unicode string) :param previous_raw: The raw text (with formatting tags) which is know to fit on a slide, but is not yet added to the list of slides. (unicode string) :param html_list: The elements which do not fit on a slide and needs to be processed using the binary chop. The text contains html. :param raw_list: The elements which do not fit on a slide and needs to be processed using the binary chop. The elements can contain formatting tags. :param separator: The separator for the elements. For lines this is ``'
'`` and for words this is ``' '``. :param line_end: The text added after each "element line". Either ``' '`` or ``'
``. This is needed for bibles. """ smallest_index = 0 highest_index = len(html_list) - 1 index = highest_index // 2 while True: if not self._text_fits_on_slide(previous_html + separator.join(html_list[:index + 1]).strip()): # We know that it does not fit, so change/calculate the new index and highest_index accordingly. highest_index = index index = index - (index - smallest_index) // 2 else: smallest_index = index index = index + (highest_index - index) // 2 # We found the number of words which will fit. if smallest_index == index or highest_index == index: index = smallest_index text = previous_raw.rstrip('
') + separator.join(raw_list[:index + 1]) text, raw_tags, html_tags = get_start_tags(text) formatted.append(text) previous_html = '' previous_raw = '' # Stop here as the theme line count was requested. if self.force_page: Registry().execute('theme_line_count', index + 1) break else: continue # Check if the remaining elements fit on the slide. if self._text_fits_on_slide(html_tags + separator.join(html_list[index + 1:]).strip()): previous_html = html_tags + separator.join(html_list[index + 1:]).strip() + line_end previous_raw = raw_tags + separator.join(raw_list[index + 1:]).strip() + line_end break else: # The remaining elements do not fit, thus reset the indexes, create a new list and continue. raw_list = raw_list[index + 1:] raw_list[0] = raw_tags + raw_list[0] html_list = html_list[index + 1:] html_list[0] = html_tags + html_list[0] smallest_index = 0 highest_index = len(html_list) - 1 index = highest_index // 2 return previous_html, previous_raw def _text_fits_on_slide(self, text): """ Checks if the given ``text`` fits on a slide. If it does ``True`` is returned, otherwise ``False``. :param text: The text to check. It may contain HTML tags. """ self.web_frame.evaluateJavaScript('show_text("%s")' % text.replace('\\', '\\\\').replace('\"', '\\\"')) return self.web_frame.contentsSize().height() <= self.empty_height def words_split(line): """ Split the slide up by word so can wrap better :param line: Line to be split """ # this parse we are to be wordy return re.split('\s+', line) def get_start_tags(raw_text): """ Tests the given text for not closed formatting tags and returns a tuple consisting of three unicode strings:: ('{st}{r}Text text text{/r}{/st}', '{st}{r}', '') The first unicode string is the text, with correct closing tags. The second unicode string are OpenLP's opening formatting tags and the third unicode string the html opening formatting tags. :param raw_text: The text to test. The text must **not** contain html tags, only OpenLP formatting tags are allowed:: {st}{r}Text text text """ raw_tags = [] html_tags = [] for tag in FormattingTags.get_html_tags(): if tag['start tag'] == '{br}': continue if raw_text.count(tag['start tag']) != raw_text.count(tag['end tag']): raw_tags.append((raw_text.find(tag['start tag']), tag['start tag'], tag['end tag'])) html_tags.append((raw_text.find(tag['start tag']), tag['start html'])) # Sort the lists, so that the tags which were opened first on the first slide (the text we are checking) will be # opened first on the next slide as well. raw_tags.sort(key=lambda tag: tag[0]) html_tags.sort(key=lambda tag: tag[0]) # Create a list with closing tags for the raw_text. end_tags = [] start_tags = [] for tag in raw_tags: start_tags.append(tag[1]) end_tags.append(tag[2]) end_tags.reverse() # Remove the indexes. html_tags = [tag[1] for tag in html_tags] return raw_text + ''.join(end_tags), ''.join(start_tags), ''.join(html_tags) OpenLP-2.4/openlp/core/lib/dockwidget.py0000644000175000017500000000471012657640340017244 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide additional functionality required by OpenLP from the inherited QDockWidget. """ import logging from PyQt5 import QtWidgets from openlp.core.lib import ScreenList, build_icon log = logging.getLogger(__name__) class OpenLPDockWidget(QtWidgets.QDockWidget): """ Custom DockWidget class to handle events """ def __init__(self, parent=None, name=None, icon=None): """ Initialise the DockWidget """ log.debug('Initialise the %s widget' % name) super(OpenLPDockWidget, self).__init__(parent) if name: self.setObjectName(name) if icon: self.setWindowIcon(build_icon(icon)) # Sort out the minimum width. screens = ScreenList() main_window_docbars = screens.current['size'].width() // 5 if main_window_docbars > 300: self.setMinimumWidth(300) else: self.setMinimumWidth(main_window_docbars) OpenLP-2.4/openlp/core/lib/exceptions.py0000644000175000017500000000343212657640340017301 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.lib.exceptions` module contains custom exceptions """ class ValidationError(Exception): """ The :class:`~openlp.core.lib.exceptions.ValidationError` exception provides a custom exception for validating import files. """ pass OpenLP-2.4/openlp/core/lib/searchedit.py0000644000175000017500000002017012657640340017231 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging from PyQt5 import QtCore, QtWidgets from openlp.core.lib import build_icon from openlp.core.lib.ui import create_widget_action log = logging.getLogger(__name__) class SearchEdit(QtWidgets.QLineEdit): """ This is a specialised QLineEdit with a "clear" button inside for searches. """ searchTypeChanged = QtCore.pyqtSignal(QtCore.QVariant) cleared = QtCore.pyqtSignal() def __init__(self, parent): """ Constructor. """ super(SearchEdit, self).__init__(parent) self._current_search_type = -1 self.clear_button = QtWidgets.QToolButton(self) self.clear_button.setIcon(build_icon(':/system/clear_shortcut.png')) self.clear_button.setCursor(QtCore.Qt.ArrowCursor) self.clear_button.setStyleSheet('QToolButton { border: none; padding: 0px; }') self.clear_button.resize(18, 18) self.clear_button.hide() self.clear_button.clicked.connect(self._on_clear_button_clicked) self.textChanged.connect(self._on_search_edit_text_changed) self._update_style_sheet() self.setAcceptDrops(False) def _update_style_sheet(self): """ Internal method to update the stylesheet depending on which widgets are available and visible. """ frame_width = self.style().pixelMetric(QtWidgets.QStyle.PM_DefaultFrameWidth) right_padding = self.clear_button.width() + frame_width if hasattr(self, 'menu_button'): left_padding = self.menu_button.width() stylesheet = 'QLineEdit { padding-left: %spx; padding-right: %spx; } ' % (left_padding, right_padding) else: stylesheet = 'QLineEdit { padding-right: %spx; } ' % right_padding self.setStyleSheet(stylesheet) msz = self.minimumSizeHint() self.setMinimumSize(max(msz.width(), self.clear_button.width() + (frame_width * 2) + 2), max(msz.height(), self.clear_button.height() + (frame_width * 2) + 2)) def resizeEvent(self, event): """ Reimplemented method to react to resizing of the widget. :param event: The event that happened. """ size = self.clear_button.size() frame_width = self.style().pixelMetric(QtWidgets.QStyle.PM_DefaultFrameWidth) self.clear_button.move(self.rect().right() - frame_width - size.width(), (self.rect().bottom() + 1 - size.height()) // 2) if hasattr(self, 'menu_button'): size = self.menu_button.size() self.menu_button.move(self.rect().left() + frame_width + 2, (self.rect().bottom() + 1 - size.height()) // 2) def current_search_type(self): """ Readonly property to return the current search type. """ return self._current_search_type def set_current_search_type(self, identifier): """ Set a new current search type. :param identifier: The search type identifier (int). """ menu = self.menu_button.menu() for action in menu.actions(): if identifier == action.data(): # setPlaceholderText has been implemented in Qt 4.7 and in at least PyQt 4.9 (I am not sure, if it was # implemented in PyQt 4.8). try: self.setPlaceholderText(action.placeholder_text) except AttributeError: pass self.menu_button.setDefaultAction(action) self._current_search_type = identifier self.searchTypeChanged.emit(identifier) return True def set_search_types(self, items): """ A list of tuples to be used in the search type menu. The first item in the list will be preselected as the default. :param items: The list of tuples to use. The tuples should contain an integer identifier, an icon (QIcon instance or string) and a title for the item in the menu. In short, they should look like this:: (, , , <place holder text>) For instance:: (1, <QIcon instance>, "Titles", "Search Song Titles...") Or:: (2, ":/songs/authors.png", "Authors", "Search Authors...") """ menu = QtWidgets.QMenu(self) first = None for identifier, icon, title, placeholder in items: action = create_widget_action( menu, text=title, icon=icon, data=identifier, triggers=self._on_menu_action_triggered) action.placeholder_text = placeholder if first is None: first = action self._current_search_type = identifier if not hasattr(self, 'menu_button'): self.menu_button = QtWidgets.QToolButton(self) self.menu_button.setIcon(build_icon(':/system/clear_shortcut.png')) self.menu_button.setCursor(QtCore.Qt.ArrowCursor) self.menu_button.setPopupMode(QtWidgets.QToolButton.InstantPopup) self.menu_button.setStyleSheet('QToolButton { border: none; padding: 0px 10px 0px 0px; }') self.menu_button.resize(QtCore.QSize(28, 18)) self.menu_button.setMenu(menu) self.menu_button.setDefaultAction(first) self.menu_button.show() self._update_style_sheet() def _on_search_edit_text_changed(self, text): """ Internally implemented slot to react to when the text in the line edit has changed so that we can show or hide the clear button. :param text: A :class:`~PyQt5.QtCore.QString` instance which represents the text in the line edit. """ self.clear_button.setVisible(bool(text)) def _on_clear_button_clicked(self): """ Internally implemented slot to react to the clear button being clicked to clear the line edit. Once it has cleared the line edit, it emits the ``cleared()`` signal so that an application can react to the clearing of the line edit. """ self.clear() self.cleared.emit() def _on_menu_action_triggered(self): """ Internally implemented slot to react to the select of one of the search types in the menu. Once it has set the correct action on the button, and set the current search type (using the list of identifiers provided by the developer), the ``searchTypeChanged(int)`` signal is emitted with the identifier. """ for action in self.menu_button.menu().actions(): # Why is this needed? action.setChecked(False) self.set_current_search_type(self.sender().data()) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OpenLP-2.4/openlp/core/lib/htmlbuilder.py�����������������������������������������������������������0000644�0001750�0001750�00000065112�12657640340�017436� 0����������������������������������������������������������������������������������������������������ustar �raoul���������������������������raoul������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module is responsible for generating the HTML for :class:`~openlp.core.ui.maindisplay`. The ``build_html`` function is the function which has to be called from outside. The generated and returned HTML will look similar to this:: <!DOCTYPE html> <html> <head> <title>OpenLP Display
""" import logging from PyQt5 import QtWebKit from openlp.core.common import Settings from openlp.core.lib.theme import BackgroundType, BackgroundGradientType, VerticalType, HorizontalType log = logging.getLogger(__name__) HTMLSRC = """ OpenLP Display %s
""" def build_html(item, screen, is_live, background, image=None, plugins=None): """ Build the full web paged structure for display :param item: Service Item to be displayed :param screen: Current display information :param is_live: Item is going live, rather than preview/theme building :param background: Theme background image - bytes :param image: Image media item - bytes :param plugins: The List of available plugins """ width = screen['size'].width() height = screen['size'].height() theme_data = item.theme_data # Image generated and poked in if background: bgimage_src = 'src="data:image/png;base64,%s"' % background elif item.bg_image_bytes: bgimage_src = 'src="data:image/png;base64,%s"' % item.bg_image_bytes else: bgimage_src = 'style="display:none;"' if image: image_src = 'src="data:image/png;base64,%s"' % image else: image_src = 'style="display:none;"' css_additions = '' js_additions = '' html_additions = '' if plugins: for plugin in plugins: css_additions += plugin.get_display_css() js_additions += plugin.get_display_javascript() html_additions += plugin.get_display_html() html = HTMLSRC % ( build_background_css(item, width), css_additions, build_footer_css(item, height), build_lyrics_css(item), 'true' if theme_data and theme_data.display_slide_transition and is_live else 'false', js_additions, bgimage_src, image_src, html_additions ) return html def webkit_version(): """ Return the Webkit version in use. Note method added relatively recently, so return 0 if prior to this """ try: webkit_ver = float(QtWebKit.qWebKitVersion()) log.debug('Webkit version = %s' % webkit_ver) except AttributeError: webkit_ver = 0 return webkit_ver def build_background_css(item, width): """ Build the background css :param item: Service Item containing theme and location information :param width: """ width = int(width) // 2 theme = item.theme_data background = 'background-color: black' if theme: if theme.background_type == BackgroundType.to_string(BackgroundType.Transparent): background = '' elif theme.background_type == BackgroundType.to_string(BackgroundType.Solid): background = 'background-color: %s' % theme.background_color else: if theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.Horizontal): background = 'background: -webkit-gradient(linear, left top, left bottom, from(%s), to(%s)) fixed' \ % (theme.background_start_color, theme.background_end_color) elif theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.LeftTop): background = 'background: -webkit-gradient(linear, left top, right bottom, from(%s), to(%s)) fixed' \ % (theme.background_start_color, theme.background_end_color) elif theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.LeftBottom): background = 'background: -webkit-gradient(linear, left bottom, right top, from(%s), to(%s)) fixed' \ % (theme.background_start_color, theme.background_end_color) elif theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.Vertical): background = 'background: -webkit-gradient(linear, left top, right top, from(%s), to(%s)) fixed' % \ (theme.background_start_color, theme.background_end_color) else: background = 'background: -webkit-gradient(radial, %s 50%%, 100, %s 50%%, %s, from(%s), to(%s)) fixed'\ % (width, width, width, theme.background_start_color, theme.background_end_color) return background def build_lyrics_css(item): """ Build the lyrics display css :param item: Service Item containing theme and location information """ style = """ .lyricstable { z-index: 5; position: absolute; display: table; %s } .lyricscell { display: table-cell; word-wrap: break-word; -webkit-transition: opacity 0.4s ease; %s } .lyricsmain { %s } """ theme_data = item.theme_data lyricstable = '' lyrics = '' lyricsmain = '' if theme_data and item.main: lyricstable = 'left: %spx; top: %spx;' % (item.main.x(), item.main.y()) lyrics = build_lyrics_format_css(theme_data, item.main.width(), item.main.height()) lyricsmain += build_lyrics_outline_css(theme_data) if theme_data.font_main_shadow: lyricsmain += ' text-shadow: %s %spx %spx;' % \ (theme_data.font_main_shadow_color, theme_data.font_main_shadow_size, theme_data.font_main_shadow_size) lyrics_css = style % (lyricstable, lyrics, lyricsmain) return lyrics_css def build_lyrics_outline_css(theme_data): """ Build the css which controls the theme outline. Also used by renderer for splitting verses :param theme_data: Object containing theme information """ if theme_data.font_main_outline: size = float(theme_data.font_main_outline_size) / 16 fill_color = theme_data.font_main_color outline_color = theme_data.font_main_outline_color return ' -webkit-text-stroke: %sem %s; -webkit-text-fill-color: %s; ' % (size, outline_color, fill_color) return '' def build_lyrics_format_css(theme_data, width, height): """ Build the css which controls the theme format. Also used by renderer for splitting verses :param theme_data: Object containing theme information :param width: Width of the lyrics block :param height: Height of the lyrics block """ align = HorizontalType.Names[theme_data.display_horizontal_align] valign = VerticalType.Names[theme_data.display_vertical_align] if theme_data.font_main_outline: left_margin = int(theme_data.font_main_outline_size) * 2 else: left_margin = 0 justify = 'white-space:pre-wrap;' # fix tag incompatibilities if theme_data.display_horizontal_align == HorizontalType.Justify: justify = '' if theme_data.display_vertical_align == VerticalType.Bottom: padding_bottom = '0.5em' else: padding_bottom = '0' lyrics = '%s word-wrap: break-word; ' \ 'text-align: %s; vertical-align: %s; font-family: %s; ' \ 'font-size: %spt; color: %s; line-height: %d%%; margin: 0;' \ 'padding: 0; padding-bottom: %s; padding-left: %spx; width: %spx; height: %spx; ' % \ (justify, align, valign, theme_data.font_main_name, theme_data.font_main_size, theme_data.font_main_color, 100 + int(theme_data.font_main_line_adjustment), padding_bottom, left_margin, width, height) if theme_data.font_main_italics: lyrics += 'font-style:italic; ' if theme_data.font_main_bold: lyrics += 'font-weight:bold; ' return lyrics def build_footer_css(item, height): """ Build the display of the item footer :param item: Service Item to be processed. :param height: """ style = """ left: %spx; bottom: %spx; width: %spx; font-family: %s; font-size: %spt; color: %s; text-align: left; white-space: %s; """ theme = item.theme_data if not theme or not item.footer: return '' bottom = height - int(item.footer.y()) - int(item.footer.height()) whitespace = 'normal' if Settings().value('themes/wrap footer') else 'nowrap' lyrics_html = style % (item.footer.x(), bottom, item.footer.width(), theme.font_footer_name, theme.font_footer_size, theme.font_footer_color, whitespace) return lyrics_html OpenLP-2.4/openlp/core/lib/json/0000755000175000017500000000000012657640341015516 5ustar raoulraoulOpenLP-2.4/openlp/core/lib/json/theme.json0000644000175000017500000000276112657640340017520 0ustar raoulraoul{ "background" : { "border_color": "#000000", "color": "#000000", "direction": "vertical", "end_color": "#000000", "filename": "", "start_color": "#000000", "type": "solid" }, "display" :{ "horizontal_align": 0, "slide_transition": false, "vertical_align": 0 }, "font": { "footer": { "bold": false, "color": "#FFFFFF", "height": 78, "italics": false, "line_adjustment": 0, "location": "", "name": "Arial", "outline": false, "outline_color": "#000000", "outline_size": 2, "override": false, "shadow": true, "shadow_color": "#000000", "shadow_size": 5, "size": 12, "width": 1004, "x": 10, "y": 690 }, "main": { "bold": false, "color": "#FFFFFF", "height": 690, "italics": false, "line_adjustment": 0, "location": "", "name": "Arial", "outline": false, "outline_color": "#000000", "outline_size": 2, "override": false, "shadow": true, "shadow_color": "#000000", "shadow_size": 5, "size": 40, "width": 1004, "x": 10, "y": 10 } }, "theme_name": "" } OpenLP-2.4/openlp/core/lib/screen.py0000644000175000017500000002344712657640340016407 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`screen` module provides management functionality for a machines' displays. """ import logging import copy from PyQt5 import QtCore from openlp.core.common import Registry, Settings, translate log = logging.getLogger(__name__) class ScreenList(object): """ Wrapper to handle the parameters of the display screen. To get access to the screen list call ``ScreenList()``. """ log.info('Screen loaded') __instance__ = None def __new__(cls): """ Re-implement __new__ to create a true singleton. """ if not cls.__instance__: cls.__instance__ = object.__new__(cls) return cls.__instance__ @classmethod def create(cls, desktop): """ Initialise the screen list. :param desktop: A QDesktopWidget object. """ screen_list = cls() screen_list.desktop = desktop screen_list.preview = None screen_list.current = None screen_list.override = None screen_list.screen_list = [] screen_list.display_count = 0 screen_list.screen_count_changed() screen_list.load_screen_settings() desktop.resized.connect(screen_list.screen_resolution_changed) desktop.screenCountChanged.connect(screen_list.screen_count_changed) return screen_list def screen_resolution_changed(self, number): """ Called when the resolution of a screen has changed. ``number`` The number of the screen, which size has changed. """ log.info('screen_resolution_changed %d' % number) for screen in self.screen_list: if number == screen['number']: new_screen = { 'number': number, 'size': self.desktop.screenGeometry(number), 'primary': self.desktop.primaryScreen() == number } self.remove_screen(number) self.add_screen(new_screen) # The screen's default size is used, that is why we have to # update the override screen. if screen == self.override: self.override = copy.deepcopy(new_screen) self.set_override_display() Registry().execute('config_screen_changed') break def screen_count_changed(self, changed_screen=-1): """ Called when a screen has been added or removed. ``changed_screen`` The screen's number which has been (un)plugged. """ # Do not log at start up. if changed_screen != -1: log.info('screen_count_changed %d' % self.desktop.screenCount()) # Remove unplugged screens. for screen in copy.deepcopy(self.screen_list): if screen['number'] == self.desktop.screenCount(): self.remove_screen(screen['number']) # Add new screens. for number in range(self.desktop.screenCount()): if not self.screen_exists(number): self.add_screen({ 'number': number, 'size': self.desktop.screenGeometry(number), 'primary': (self.desktop.primaryScreen() == number) }) # We do not want to send this message at start up. if changed_screen != -1: # Reload setting tabs to apply possible changes. Registry().execute('config_screen_changed') def get_screen_list(self): """ Returns a list with the screens. This should only be used to display available screens to the user:: ['Screen 1 (primary)', 'Screen 2'] """ screen_list = [] for screen in self.screen_list: screen_name = '%s %d' % (translate('OpenLP.ScreenList', 'Screen'), screen['number'] + 1) if screen['primary']: screen_name = '%s (%s)' % (screen_name, translate('OpenLP.ScreenList', 'primary')) screen_list.append(screen_name) return screen_list def add_screen(self, screen): """ Add a screen to the list of known screens. :param screen: A dict with the screen properties: :: { 'primary': True, 'number': 0, 'size': PyQt5.QtCore.QRect(0, 0, 1024, 768) } """ log.info('Screen %d found with resolution %s' % (screen['number'], screen['size'])) if screen['primary']: self.current = screen self.override = copy.deepcopy(self.current) self.screen_list.append(screen) self.display_count += 1 def remove_screen(self, number): """ Remove a screen from the list of known screens. :param number: The screen number (int). """ log.info('remove_screen %d' % number) for screen in self.screen_list: if screen['number'] == number: self.screen_list.remove(screen) self.display_count -= 1 break def screen_exists(self, number): """ Confirms a screen is known. :param number: The screen number (int). """ for screen in self.screen_list: if screen['number'] == number: return True return False def set_current_display(self, number): """ Set up the current screen dimensions. :param number: The screen number (int). """ log.debug('set_current_display %s' % number) if number + 1 > self.display_count: self.current = self.screen_list[0] else: self.current = self.screen_list[number] self.preview = copy.deepcopy(self.current) self.override = copy.deepcopy(self.current) if self.display_count == 1: self.preview = self.screen_list[0] def set_override_display(self): """ Replace the current size with the override values, as the user wants to have their own screen attributes. """ log.debug('set_override_display') self.current = copy.deepcopy(self.override) self.preview = copy.deepcopy(self.current) def reset_current_display(self): """ Replace the current values with the correct values, as the user wants to use the correct screen attributes. """ log.debug('reset_current_display') self.set_current_display(self.current['number']) def which_screen(self, window): """ Return the screen number that the centre of the passed window is in. :param window: A QWidget we are finding the location of. """ x = window.x() + (window.width() // 2) y = window.y() + (window.height() // 2) for screen in self.screen_list: size = screen['size'] if x >= size.x() and x <= (size.x() + size.width()) and y >= size.y() and y <= (size.y() + size.height()): return screen['number'] def load_screen_settings(self): """ Loads the screen size and the monitor number from the settings. """ # Add the screen settings to the settings dict. This has to be done here due to cyclic dependency. # Do not do this anywhere else. screen_settings = { 'core/x position': self.current['size'].x(), 'core/y position': self.current['size'].y(), 'core/monitor': self.display_count - 1, 'core/height': self.current['size'].height(), 'core/width': self.current['size'].width() } Settings.extend_default_settings(screen_settings) settings = Settings() settings.beginGroup('core') monitor = settings.value('monitor') self.set_current_display(monitor) self.display = settings.value('display on monitor') override_display = settings.value('override position') x = settings.value('x position') y = settings.value('y position') width = settings.value('width') height = settings.value('height') self.override['size'] = QtCore.QRect(x, y, width, height) self.override['primary'] = False settings.endGroup() if override_display: self.set_override_display() else: self.reset_current_display() OpenLP-2.4/openlp/core/lib/spelltextedit.py0000644000175000017500000002061012657640340020007 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.lib.spelltextedit` module contains a classes to add spell checking to an edit widget. """ import logging import re try: import enchant from enchant import DictNotFoundError from enchant.errors import Error ENCHANT_AVAILABLE = True except ImportError: ENCHANT_AVAILABLE = False # based on code from http://john.nachtimwald.com/2009/08/22/qplaintextedit-with-in-line-spell-check from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.lib import translate, FormattingTags from openlp.core.lib.ui import create_action log = logging.getLogger(__name__) class SpellTextEdit(QtWidgets.QPlainTextEdit): """ Spell checking widget based on QPlanTextEdit. """ def __init__(self, parent=None, formatting_tags_allowed=True): """ Constructor. """ global ENCHANT_AVAILABLE super(SpellTextEdit, self).__init__(parent) self.formatting_tags_allowed = formatting_tags_allowed # Default dictionary based on the current locale. if ENCHANT_AVAILABLE: try: self.dictionary = enchant.Dict() self.highlighter = Highlighter(self.document()) self.highlighter.spelling_dictionary = self.dictionary except (Error, DictNotFoundError): ENCHANT_AVAILABLE = False log.debug('Could not load default dictionary') def mousePressEvent(self, event): """ Handle mouse clicks within the text edit region. """ if event.button() == QtCore.Qt.RightButton: # Rewrite the mouse event to a left button event so the cursor is moved to the location of the pointer. event = QtGui.QMouseEvent(QtCore.QEvent.MouseButtonPress, event.pos(), QtCore.Qt.LeftButton, QtCore.Qt.LeftButton, QtCore.Qt.NoModifier) QtWidgets.QPlainTextEdit.mousePressEvent(self, event) def contextMenuEvent(self, event): """ Provide the context menu for the text edit region. """ popup_menu = self.createStandardContextMenu() # Select the word under the cursor. cursor = self.textCursor() # only select text if not already selected if not cursor.hasSelection(): cursor.select(QtGui.QTextCursor.WordUnderCursor) self.setTextCursor(cursor) # Add menu with available languages. if ENCHANT_AVAILABLE: lang_menu = QtWidgets.QMenu(translate('OpenLP.SpellTextEdit', 'Language:')) for lang in enchant.list_languages(): action = create_action(lang_menu, lang, text=lang, checked=lang == self.dictionary.tag) lang_menu.addAction(action) popup_menu.insertSeparator(popup_menu.actions()[0]) popup_menu.insertMenu(popup_menu.actions()[0], lang_menu) lang_menu.triggered.connect(self.set_language) # Check if the selected word is misspelled and offer spelling suggestions if it is. if ENCHANT_AVAILABLE and self.textCursor().hasSelection(): text = self.textCursor().selectedText() if not self.dictionary.check(text): spell_menu = QtWidgets.QMenu(translate('OpenLP.SpellTextEdit', 'Spelling Suggestions')) for word in self.dictionary.suggest(text): action = SpellAction(word, spell_menu) action.correct.connect(self.correct_word) spell_menu.addAction(action) # Only add the spelling suggests to the menu if there are suggestions. if spell_menu.actions(): popup_menu.insertMenu(popup_menu.actions()[0], spell_menu) tag_menu = QtWidgets.QMenu(translate('OpenLP.SpellTextEdit', 'Formatting Tags')) if self.formatting_tags_allowed: for html in FormattingTags.get_html_tags(): action = SpellAction(html['desc'], tag_menu) action.correct.connect(self.html_tag) tag_menu.addAction(action) popup_menu.insertSeparator(popup_menu.actions()[0]) popup_menu.insertMenu(popup_menu.actions()[0], tag_menu) popup_menu.exec(event.globalPos()) def set_language(self, action): """ Changes the language for this spelltextedit. :param action: The action. """ self.dictionary = enchant.Dict(action.text()) self.highlighter.spelling_dictionary = self.dictionary self.highlighter.highlightBlock(self.toPlainText()) self.highlighter.rehighlight() def correct_word(self, word): """ Replaces the selected text with word. """ cursor = self.textCursor() cursor.beginEditBlock() cursor.removeSelectedText() cursor.insertText(word) cursor.endEditBlock() def html_tag(self, tag): """ Replaces the selected text with word. """ for html in FormattingTags.get_html_tags(): if tag == html['desc']: cursor = self.textCursor() if self.textCursor().hasSelection(): text = cursor.selectedText() cursor.beginEditBlock() cursor.removeSelectedText() cursor.insertText(html['start tag']) cursor.insertText(text) cursor.insertText(html['end tag']) cursor.endEditBlock() else: cursor = self.textCursor() cursor.insertText(html['start tag']) cursor.insertText(html['end tag']) class Highlighter(QtGui.QSyntaxHighlighter): """ Provides a text highlighter for pointing out spelling errors in text. """ WORDS = '(?iu)[\w\']+' def __init__(self, *args): """ Constructor """ super(Highlighter, self).__init__(*args) self.spelling_dictionary = None def highlightBlock(self, text): """ Highlight mis spelt words in a block of text. Note, this is a Qt hook. """ if not self.spelling_dictionary: return text = str(text) char_format = QtGui.QTextCharFormat() char_format.setUnderlineColor(QtCore.Qt.red) char_format.setUnderlineStyle(QtGui.QTextCharFormat.SpellCheckUnderline) for word_object in re.finditer(self.WORDS, text): if not self.spelling_dictionary.check(word_object.group()): self.setFormat(word_object.start(), word_object.end() - word_object.start(), char_format) class SpellAction(QtWidgets.QAction): """ A special QAction that returns the text in a signal. """ correct = QtCore.pyqtSignal(str) def __init__(self, *args): """ Constructor """ super(SpellAction, self).__init__(*args) self.triggered.connect(lambda x: self.correct.emit(self.text())) OpenLP-2.4/openlp/core/lib/settingstab.py0000644000175000017500000001213012657640340017442 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.lib.settingstab` module contains the base SettingsTab class which plugins use for adding their own tab to the settings dialog. """ from PyQt5 import QtWidgets from openlp.core.common import RegistryProperties class SettingsTab(QtWidgets.QWidget, RegistryProperties): """ SettingsTab is a helper widget for plugins to define Tabs for the settings dialog. """ def __init__(self, parent, title, visible_title=None, icon_path=None): """ Constructor to create the Settings tab item. :param parent: :param title: The title of the tab, which is used internally for the tab handling. :param visible_title: The title of the tab, which is usually displayed on the tab. :param icon_path: """ super(SettingsTab, self).__init__(parent) self.tab_title = title self.tab_title_visible = visible_title self.settings_section = self.tab_title.lower() self.tab_visited = False if icon_path: self.icon_path = icon_path self._setup() def _setup(self): """ Run some initial setup. This method is separate from __init__ in order to mock it out in tests. """ self.setupUi() self.retranslateUi() self.initialise() self.load() def setupUi(self): """ Setup the tab's interface. """ self.tab_layout = QtWidgets.QHBoxLayout(self) self.tab_layout.setObjectName('tab_layout') self.left_column = QtWidgets.QWidget(self) self.left_column.setObjectName('left_column') self.left_layout = QtWidgets.QVBoxLayout(self.left_column) self.left_layout.setContentsMargins(0, 0, 0, 0) self.left_layout.setObjectName('left_layout') self.tab_layout.addWidget(self.left_column) self.right_column = QtWidgets.QWidget(self) self.right_column.setObjectName('right_column') self.right_layout = QtWidgets.QVBoxLayout(self.right_column) self.right_layout.setContentsMargins(0, 0, 0, 0) self.right_layout.setObjectName('right_layout') self.tab_layout.addWidget(self.right_column) def resizeEvent(self, event=None): """ Resize the sides in two equal halves if the layout allows this. """ if event: QtWidgets.QWidget.resizeEvent(self, event) width = self.width() - self.tab_layout.spacing() - \ self.tab_layout.contentsMargins().left() - self.tab_layout.contentsMargins().right() left_width = min(width - self.right_column.minimumSizeHint().width(), width // 2) left_width = max(left_width, self.left_column.minimumSizeHint().width()) self.left_column.setFixedWidth(left_width) def retranslateUi(self): """ Setup the interface translation strings. """ pass def initialise(self): """ Do any extra initialisation here. """ pass def load(self): """ Load settings from disk. """ pass def save(self): """ Save settings to disk. """ pass def cancel(self): """ Reset any settings if cancel triggered """ self.load() def post_set_up(self, post_update=False): """ Changes which need to be made after setup of application :param post_update: Indicates if called before or after updates. """ pass def tab_visible(self): """ Tab has just been made visible to the user """ self.tab_visited = True OpenLP-2.4/openlp/core/lib/toolbar.py0000644000175000017500000000752512657640340016571 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide common toolbar handling for OpenLP """ import logging from PyQt5 import QtCore, QtWidgets from openlp.core.lib.ui import create_widget_action log = logging.getLogger(__name__) class OpenLPToolbar(QtWidgets.QToolBar): """ Lots of toolbars around the place, so it makes sense to have a common way to manage them. This is the base toolbar class. """ def __init__(self, parent): """ Initialise the toolbar. """ super(OpenLPToolbar, self).__init__(parent) # useful to be able to reuse button icons... self.setIconSize(QtCore.QSize(20, 20)) self.actions = {} log.debug('Init done for %s' % parent.__class__.__name__) def add_toolbar_action(self, name, **kwargs): """ A method to help developers easily add a button to the toolbar. A new QAction is created by calling ``create_action()``. The action is added to the toolbar and the toolbar is set as parent. For more details please look at openlp.core.lib.ui.create_action() """ action = create_widget_action(self, name, **kwargs) self.actions[name] = action return action def add_toolbar_widget(self, widget): """ Add a widget and store it's handle under the widgets object name. """ action = self.addWidget(widget) self.actions[widget.objectName()] = action def set_widget_visible(self, widgets, visible=True): """ Set the visibility for a widget or a list of widgets. :param widgets: A list of string with widget object names. :param visible: The new state as bool. """ for handle in widgets: if handle in self.actions: self.actions[handle].setVisible(visible) else: log.warning('No handle "%s" in actions list.', str(handle)) def set_widget_enabled(self, widgets, enabled=True): """ Set the enabled state for a widget or a list of widgets. :param widgets: A list of string with widget object names. :param enabled: The new state as bool. """ for handle in widgets: if handle in self.actions: self.actions[handle].setEnabled(enabled) else: log.warning('No handle "%s" in actions list.', str(handle)) OpenLP-2.4/openlp/core/lib/serviceitem.py0000644000175000017500000006341512657640340017446 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`serviceitem` provides the service item functionality including the type and capability of an item. """ import datetime import html import logging import os import uuid import ntpath from PyQt5 import QtGui from openlp.core.common import RegistryProperties, Settings, translate, AppLocation, md5_hash from openlp.core.lib import ImageSource, build_icon, clean_tags, expand_tags, create_thumb log = logging.getLogger(__name__) class ServiceItemType(object): """ Defines the type of service item """ Text = 1 Image = 2 Command = 3 class ItemCapabilities(object): """ Provides an enumeration of a service item's capabilities ``CanPreview`` The capability to allow the ServiceManager to add to the preview tab when making the previous item live. ``CanEdit`` The capability to allow the ServiceManager to allow the item to be edited ``CanMaintain`` The capability to allow the ServiceManager to allow the item to be reordered. ``RequiresMedia`` Determines is the service_item needs a Media Player ``CanLoop`` The capability to allow the SlideController to allow the loop processing. ``CanAppend`` The capability to allow the ServiceManager to add leaves to the item ``NoLineBreaks`` The capability to remove lines breaks in the renderer ``OnLoadUpdate`` The capability to update MediaManager when a service Item is loaded. ``AddIfNewItem`` Not Used ``ProvidesOwnDisplay`` The capability to tell the SlideController the service Item has a different display. ``HasDetailedTitleDisplay`` Being Removed and decommissioned. ``HasVariableStartTime`` The capability to tell the ServiceManager that a change to start time is possible. ``CanSoftBreak`` The capability to tell the renderer that Soft Break is allowed ``CanWordSplit`` The capability to tell the renderer that it can split words is allowed ``HasBackgroundAudio`` That a audio file is present with the text. ``CanAutoStartForLive`` The capability to ignore the do not play if display blank flag. ``CanEditTitle`` The capability to edit the title of the item ``IsOptical`` Determines is the service_item is based on an optical device ``HasDisplayTitle`` The item contains 'displaytitle' on every frame which should be preferred over 'title' when displaying the item ``HasNotes`` The item contains 'notes' ``HasThumbnails`` The item has related thumbnails available """ CanPreview = 1 CanEdit = 2 CanMaintain = 3 RequiresMedia = 4 CanLoop = 5 CanAppend = 6 NoLineBreaks = 7 OnLoadUpdate = 8 AddIfNewItem = 9 ProvidesOwnDisplay = 10 # HasDetailedTitleDisplay = 11 HasVariableStartTime = 12 CanSoftBreak = 13 CanWordSplit = 14 HasBackgroundAudio = 15 CanAutoStartForLive = 16 CanEditTitle = 17 IsOptical = 18 HasDisplayTitle = 19 HasNotes = 20 HasThumbnails = 21 class ServiceItem(RegistryProperties): """ The service item is a base class for the plugins to use to interact with the service manager, the slide controller, and the projection screen compositor. """ log.info('Service Item created') def __init__(self, plugin=None): """ Set up the service item. :param plugin: The plugin that this service item belongs to. """ if plugin: self.name = plugin.name self.title = '' self.processor = None self.audit = '' self.items = [] self.iconic_representation = None self.raw_footer = [] self.foot_text = '' self.theme = None self.service_item_type = None self._raw_frames = [] self._display_frames = [] self.unique_identifier = 0 self.notes = '' self.from_plugin = False self.capabilities = [] self.is_valid = True self.icon = None self.theme_data = None self.main = None self.footer = None self.bg_image_bytes = None self.search_string = '' self.data_string = '' self.edit_id = None self.xml_version = None self.start_time = 0 self.end_time = 0 self.media_length = 0 self.from_service = False self.image_border = '#000000' self.background_audio = [] self.theme_overwritten = False self.temporary_edit = False self.auto_play_slides_once = False self.auto_play_slides_loop = False self.timed_slide_interval = 0 self.will_auto_start = False self.has_original_files = True self._new_item() def _new_item(self): """ Method to set the internal id of the item. This is used to compare service items to see if they are the same. """ self.unique_identifier = str(uuid.uuid1()) self.validate_item() def add_capability(self, capability): """ Add an ItemCapability to a ServiceItem :param capability: The capability to add """ self.capabilities.append(capability) def is_capable(self, capability): """ Tell the caller if a ServiceItem has a capability :param capability: The capability to test for """ return capability in self.capabilities def add_icon(self, icon): """ Add an icon to the service item. This is used when displaying the service item in the service manager. :param icon: A string to an icon in the resources or on disk. """ self.icon = icon self.iconic_representation = build_icon(icon) def render(self, provides_own_theme_data=False): """ The render method is what generates the frames for the screen and obtains the display information from the renderer. At this point all slides are built for the given display size. :param provides_own_theme_data: This switch disables the usage of the item's theme. However, this is disabled by default. If this is used, it has to be taken care, that the renderer knows the correct theme data. However, this is needed for the theme manager. """ log.debug('Render called') self._display_frames = [] self.bg_image_bytes = None if not provides_own_theme_data: self.renderer.set_item_theme(self.theme) self.theme_data, self.main, self.footer = self.renderer.pre_render() if self.service_item_type == ServiceItemType.Text: log.debug('Formatting slides: %s' % self.title) # Save rendered pages to this dict. In the case that a slide is used twice we can use the pages saved to # the dict instead of rendering them again. previous_pages = {} for slide in self._raw_frames: verse_tag = slide['verseTag'] if verse_tag in previous_pages and previous_pages[verse_tag][0] == slide['raw_slide']: pages = previous_pages[verse_tag][1] else: pages = self.renderer.format_slide(slide['raw_slide'], self) previous_pages[verse_tag] = (slide['raw_slide'], pages) for page in pages: page = page.replace('
', '{br}') html_data = expand_tags(html.escape(page.rstrip())) self._display_frames.append({ 'title': clean_tags(page), 'text': clean_tags(page.rstrip()), 'html': html_data.replace('&nbsp;', ' '), 'verseTag': verse_tag }) elif self.service_item_type == ServiceItemType.Image or self.service_item_type == ServiceItemType.Command: pass else: log.error('Invalid value renderer: %s' % self.service_item_type) self.title = clean_tags(self.title) # The footer should never be None, but to be compatible with a few # nightly builds between 1.9.4 and 1.9.5, we have to correct this to # avoid tracebacks. if self.raw_footer is None: self.raw_footer = [] self.foot_text = '
'.join([_f for _f in self.raw_footer if _f]) def add_from_image(self, path, title, background=None, thumbnail=None): """ Add an image slide to the service item. :param path: The directory in which the image file is located. :param title: A title for the slide in the service item. :param background: :param thumbnail: Optional alternative thumbnail, used for remote thumbnails. """ if background: self.image_border = background self.service_item_type = ServiceItemType.Image if not thumbnail: self._raw_frames.append({'title': title, 'path': path}) else: self._raw_frames.append({'title': title, 'path': path, 'image': thumbnail}) self.image_manager.add_image(path, ImageSource.ImagePlugin, self.image_border) self._new_item() def add_from_text(self, raw_slide, verse_tag=None): """ Add a text slide to the service item. :param raw_slide: The raw text of the slide. :param verse_tag: """ if verse_tag: verse_tag = verse_tag.upper() self.service_item_type = ServiceItemType.Text title = raw_slide[:30].split('\n')[0] self._raw_frames.append({'title': title, 'raw_slide': raw_slide, 'verseTag': verse_tag}) self._new_item() def add_from_command(self, path, file_name, image, display_title=None, notes=None): """ Add a slide from a command. :param path: The title of the slide in the service item. :param file_name: The title of the slide in the service item. :param image: The command of/for the slide. :param display_title: Title to show in gui/webinterface, optional. :param notes: Notes to show in the webinteface, optional. """ self.service_item_type = ServiceItemType.Command # If the item should have a display title but this frame doesn't have one, we make one up if self.is_capable(ItemCapabilities.HasDisplayTitle) and not display_title: display_title = translate('OpenLP.ServiceItem', '[slide %d]') % (len(self._raw_frames) + 1) # Update image path to match servicemanager location if file was loaded from service if image and not self.has_original_files and self.name == 'presentations': file_location = os.path.join(path, file_name) file_location_hash = md5_hash(file_location.encode('utf-8')) image = os.path.join(AppLocation.get_section_data_path(self.name), 'thumbnails', file_location_hash, ntpath.basename(image)) self._raw_frames.append({'title': file_name, 'image': image, 'path': path, 'display_title': display_title, 'notes': notes}) self._new_item() def get_service_repr(self, lite_save): """ This method returns some text which can be saved into the service file to represent this item. """ service_header = { 'name': self.name, 'plugin': self.name, 'theme': self.theme, 'title': self.title, 'icon': self.icon, 'footer': self.raw_footer, 'type': self.service_item_type, 'audit': self.audit, 'notes': self.notes, 'from_plugin': self.from_plugin, 'capabilities': self.capabilities, 'search': self.search_string, 'data': self.data_string, 'xml_version': self.xml_version, 'auto_play_slides_once': self.auto_play_slides_once, 'auto_play_slides_loop': self.auto_play_slides_loop, 'timed_slide_interval': self.timed_slide_interval, 'start_time': self.start_time, 'end_time': self.end_time, 'media_length': self.media_length, 'background_audio': self.background_audio, 'theme_overwritten': self.theme_overwritten, 'will_auto_start': self.will_auto_start, 'processor': self.processor } service_data = [] if self.service_item_type == ServiceItemType.Text: service_data = [slide for slide in self._raw_frames] elif self.service_item_type == ServiceItemType.Image: if lite_save: for slide in self._raw_frames: service_data.append({'title': slide['title'], 'path': slide['path']}) else: service_data = [slide['title'] for slide in self._raw_frames] elif self.service_item_type == ServiceItemType.Command: for slide in self._raw_frames: service_data.append({'title': slide['title'], 'image': slide['image'], 'path': slide['path'], 'display_title': slide['display_title'], 'notes': slide['notes']}) return {'header': service_header, 'data': service_data} def set_from_service(self, service_item, path=None): """ This method takes a service item from a saved service file (passed from the ServiceManager) and extracts the data actually required. :param service_item: The item to extract data from. :param path: Defaults to *None*. This is the service manager path for things which have their files saved with them or None when the saved service is lite and the original file paths need to be preserved. """ log.debug('set_from_service called with path %s' % path) header = service_item['serviceitem']['header'] self.title = header['title'] self.name = header['name'] self.service_item_type = header['type'] self.theme = header['theme'] self.add_icon(header['icon']) self.raw_footer = header['footer'] self.audit = header['audit'] self.notes = header['notes'] self.from_plugin = header['from_plugin'] self.capabilities = header['capabilities'] # Added later so may not be present in older services. self.search_string = header.get('search', '') self.data_string = header.get('data', '') self.xml_version = header.get('xml_version') self.start_time = header.get('start_time', 0) self.end_time = header.get('end_time', 0) self.media_length = header.get('media_length', 0) self.auto_play_slides_once = header.get('auto_play_slides_once', False) self.auto_play_slides_loop = header.get('auto_play_slides_loop', False) self.timed_slide_interval = header.get('timed_slide_interval', 0) self.will_auto_start = header.get('will_auto_start', False) self.processor = header.get('processor', None) self.has_original_files = True if 'background_audio' in header: self.background_audio = [] for filename in header['background_audio']: # Give them real file paths. filepath = filename if path: # Windows can handle both forward and backward slashes, so we use ntpath to get the basename filepath = os.path.join(path, ntpath.basename(filename)) self.background_audio.append(filepath) self.theme_overwritten = header.get('theme_overwritten', False) if self.service_item_type == ServiceItemType.Text: for slide in service_item['serviceitem']['data']: self._raw_frames.append(slide) elif self.service_item_type == ServiceItemType.Image: settings_section = service_item['serviceitem']['header']['name'] background = QtGui.QColor(Settings().value(settings_section + '/background color')) if path: self.has_original_files = False for text_image in service_item['serviceitem']['data']: filename = os.path.join(path, text_image) self.add_from_image(filename, text_image, background) else: for text_image in service_item['serviceitem']['data']: self.add_from_image(text_image['path'], text_image['title'], background) elif self.service_item_type == ServiceItemType.Command: for text_image in service_item['serviceitem']['data']: if not self.title: self.title = text_image['title'] if self.is_capable(ItemCapabilities.IsOptical): self.has_original_files = False self.add_from_command(text_image['path'], text_image['title'], text_image['image']) elif path: self.has_original_files = False self.add_from_command(path, text_image['title'], text_image['image'], text_image.get('display_title', ''), text_image.get('notes', '')) else: self.add_from_command(text_image['path'], text_image['title'], text_image['image']) self._new_item() def get_display_title(self): """ Returns the title of the service item. """ if self.is_text() or self.is_capable(ItemCapabilities.IsOptical) \ or self.is_capable(ItemCapabilities.CanEditTitle): return self.title else: if len(self._raw_frames) > 1: return self.title else: return self._raw_frames[0]['title'] def merge(self, other): """ Updates the unique_identifier with the value from the original one The unique_identifier is unique for a given service item but this allows one to replace an original version. :param other: The service item to be merged with """ self.unique_identifier = other.unique_identifier self.notes = other.notes self.temporary_edit = other.temporary_edit # Copy theme over if present. if other.theme is not None: self.theme = other.theme self._new_item() self.render() if self.is_capable(ItemCapabilities.HasBackgroundAudio): log.debug(self.background_audio) def __eq__(self, other): """ Confirms the service items are for the same instance """ if not other: return False return self.unique_identifier == other.unique_identifier def __ne__(self, other): """ Confirms the service items are not for the same instance """ return self.unique_identifier != other.unique_identifier def __hash__(self): """ Return the hash for the service item. """ return self.unique_identifier def is_media(self): """ Confirms if the ServiceItem is media """ return ItemCapabilities.RequiresMedia in self.capabilities def is_command(self): """ Confirms if the ServiceItem is a command """ return self.service_item_type == ServiceItemType.Command def is_image(self): """ Confirms if the ServiceItem is an image """ return self.service_item_type == ServiceItemType.Image def uses_file(self): """ Confirms if the ServiceItem uses a file """ return self.service_item_type == ServiceItemType.Image or \ (self.service_item_type == ServiceItemType.Command and not self.is_capable(ItemCapabilities.IsOptical)) def is_text(self): """ Confirms if the ServiceItem is text """ return self.service_item_type == ServiceItemType.Text def set_media_length(self, length): """ Stores the media length of the item :param length: The length of the media item """ self.media_length = length if length > 0: self.add_capability(ItemCapabilities.HasVariableStartTime) def get_frames(self): """ Returns the frames for the ServiceItem """ if self.service_item_type == ServiceItemType.Text: return self._display_frames else: return self._raw_frames def get_rendered_frame(self, row): """ Returns the correct frame for a given list and renders it if required. :param row: The service item slide to be returned """ if self.service_item_type == ServiceItemType.Text: return self._display_frames[row]['html'].split('\n')[0] elif self.service_item_type == ServiceItemType.Image: return self._raw_frames[row]['path'] else: return self._raw_frames[row]['image'] def get_frame_title(self, row=0): """ Returns the title of the raw frame """ try: return self._raw_frames[row]['title'] except IndexError: return '' def get_frame_path(self, row=0, frame=None): """ Returns the path of the raw frame """ if not frame: try: frame = self._raw_frames[row] except IndexError: return '' if self.is_image() or self.is_capable(ItemCapabilities.IsOptical): path_from = frame['path'] else: path_from = os.path.join(frame['path'], frame['title']) return path_from def remove_frame(self, frame): """ Remove the specified frame from the item """ if frame in self._raw_frames: self._raw_frames.remove(frame) def get_media_time(self): """ Returns the start and finish time for a media item """ start = None end = None if self.start_time != 0: start = translate('OpenLP.ServiceItem', 'Start: %s') % \ str(datetime.timedelta(seconds=self.start_time)) if self.media_length != 0: end = translate('OpenLP.ServiceItem', 'Length: %s') % \ str(datetime.timedelta(seconds=self.media_length)) if not start and not end: return '' elif start and not end: return start elif not start and end: return end else: return '%s
%s' % (start, end) def update_theme(self, theme): """ updates the theme in the service item :param theme: The new theme to be replaced in the service item """ self.theme_overwritten = (theme is None) self.theme = theme self._new_item() self.render() def remove_invalid_frames(self, invalid_paths=None): """ Remove invalid frames, such as ones where the file no longer exists. """ if self.uses_file(): for frame in self.get_frames(): if self.get_frame_path(frame=frame) in invalid_paths: self.remove_frame(frame) def missing_frames(self): """ Returns if there are any frames in the service item """ return not bool(self._raw_frames) def validate_item(self, suffix_list=None): """ Validates a service item to make sure it is valid """ self.is_valid = True for frame in self._raw_frames: if self.is_image() and not os.path.exists(frame['path']): self.is_valid = False break elif self.is_command(): if self.is_capable(ItemCapabilities.IsOptical): if not os.path.exists(frame['title']): self.is_valid = False break else: file_name = os.path.join(frame['path'], frame['title']) if not os.path.exists(file_name): self.is_valid = False break if suffix_list and not self.is_text(): file_suffix = frame['title'].split('.')[-1] if file_suffix.lower() not in suffix_list: self.is_valid = False break OpenLP-2.4/openlp/core/lib/treewidgetwithdnd.py0000644000175000017500000001276012657640340020651 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Extend QTreeWidget to handle drag and drop functionality """ import os from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry class TreeWidgetWithDnD(QtWidgets.QTreeWidget): """ Provide a tree widget to store objects and handle drag and drop events """ def __init__(self, parent=None, name=''): """ Initialise the tree widget """ super(TreeWidgetWithDnD, self).__init__(parent) self.mime_data_text = name self.allow_internal_dnd = False self.header().close() self.default_indentation = self.indentation() self.setIndentation(0) self.setAnimated(True) def activateDnD(self): """ Activate DnD of widget """ self.setAcceptDrops(True) self.setDragDropMode(QtWidgets.QAbstractItemView.DragDrop) Registry().register_function(('%s_dnd' % self.mime_data_text), self.parent().load_file) Registry().register_function(('%s_dnd_internal' % self.mime_data_text), self.parent().dnd_move_internal) def mouseMoveEvent(self, event): """ Drag and drop event does not care what data is selected as the recipient will use events to request the data move just tell it what plugin to call :param event: The event that occurred """ if event.buttons() != QtCore.Qt.LeftButton: event.ignore() return if not self.selectedItems(): event.ignore() return drag = QtGui.QDrag(self) mime_data = QtCore.QMimeData() drag.setMimeData(mime_data) mime_data.setText(self.mime_data_text) drag.exec(QtCore.Qt.CopyAction) def dragEnterEvent(self, event): """ Receive drag enter event, check if it is a file or internal object and allow it if it is. :param event: The event that occurred """ if event.mimeData().hasUrls(): event.accept() elif self.allow_internal_dnd: event.accept() else: event.ignore() def dragMoveEvent(self, event): """ Receive drag move event, check if it is a file or internal object and allow it if it is. :param event: The event that occurred """ QtWidgets.QTreeWidget.dragMoveEvent(self, event) if event.mimeData().hasUrls(): event.setDropAction(QtCore.Qt.CopyAction) event.accept() elif self.allow_internal_dnd: event.setDropAction(QtCore.Qt.CopyAction) event.accept() else: event.ignore() def dropEvent(self, event): """ Receive drop event, check if it is a file or internal object and process it if it is. :param event: Handle of the event pint passed """ if event.mimeData().hasUrls(): event.setDropAction(QtCore.Qt.CopyAction) event.accept() files = [] for url in event.mimeData().urls(): local_file = url.toLocalFile() if os.path.isfile(local_file): files.append(local_file) elif os.path.isdir(local_file): listing = os.listdir(local_file) for file_name in listing: files.append(os.path.join(local_file, file_name)) Registry().execute('%s_dnd' % self.mime_data_text, {'files': files, 'target': self.itemAt(event.pos())}) elif self.allow_internal_dnd: event.setDropAction(QtCore.Qt.CopyAction) event.accept() Registry().execute('%s_dnd_internal' % self.mime_data_text, self.itemAt(event.pos())) else: event.ignore() # Convenience methods for emulating a QListWidget. This helps keeping MediaManagerItem simple. def addItem(self, item): self.addTopLevelItem(item) def count(self): return self.topLevelItemCount() def item(self, index): return self.topLevelItem(index) OpenLP-2.4/openlp/core/lib/ui.py0000644000175000017500000003177412657640340015547 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`ui` module provides standard UI components for OpenLP. """ import logging from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, UiStrings, translate, is_macosx from openlp.core.lib import build_icon from openlp.core.utils.actions import ActionList log = logging.getLogger(__name__) def add_welcome_page(parent, image): """ Generate an opening welcome page for a wizard using a provided image. :param parent: A ``QWizard`` object to add the welcome page to. :param image: A splash image for the wizard. """ parent.welcome_page = QtWidgets.QWizardPage() parent.welcome_page.setPixmap(QtWidgets.QWizard.WatermarkPixmap, QtGui.QPixmap(image)) parent.welcome_page.setObjectName('welcome_page') parent.welcome_layout = QtWidgets.QVBoxLayout(parent.welcome_page) parent.welcome_layout.setObjectName('WelcomeLayout') parent.title_label = QtWidgets.QLabel(parent.welcome_page) parent.title_label.setObjectName('title_label') parent.welcome_layout.addWidget(parent.title_label) parent.welcome_layout.addSpacing(40) parent.information_label = QtWidgets.QLabel(parent.welcome_page) parent.information_label.setWordWrap(True) parent.information_label.setObjectName('information_label') parent.welcome_layout.addWidget(parent.information_label) parent.welcome_layout.addStretch() parent.addPage(parent.welcome_page) def create_button_box(dialog, name, standard_buttons, custom_buttons=None): """ Creates a QDialogButtonBox with the given buttons. The ``accepted()`` and ``rejected()`` signals of the button box are connected with the dialogs ``accept()`` and ``reject()`` slots. :param dialog: The parent object. This has to be a ``QDialog`` descendant. :param name: A string which is set as object name. :param standard_buttons: A list of strings for the used buttons. It might contain: ``ok``, ``save``, ``cancel``, ``close``, and ``defaults``. :param custom_buttons: A list of additional buttons. If an item is an instance of QtWidgets.QAbstractButton it is added with QDialogButtonBox.ActionRole. Otherwise the item has to be a tuple of a Button and a ButtonRole. """ if custom_buttons is None: custom_buttons = [] if standard_buttons is None: standard_buttons = [] buttons = QtWidgets.QDialogButtonBox.NoButton if 'ok' in standard_buttons: buttons |= QtWidgets.QDialogButtonBox.Ok if 'save' in standard_buttons: buttons |= QtWidgets.QDialogButtonBox.Save if 'cancel' in standard_buttons: buttons |= QtWidgets.QDialogButtonBox.Cancel if 'close' in standard_buttons: buttons |= QtWidgets.QDialogButtonBox.Close if 'defaults' in standard_buttons: buttons |= QtWidgets.QDialogButtonBox.RestoreDefaults button_box = QtWidgets.QDialogButtonBox(dialog) button_box.setObjectName(name) button_box.setStandardButtons(buttons) for button in custom_buttons: if isinstance(button, QtWidgets.QAbstractButton): button_box.addButton(button, QtWidgets.QDialogButtonBox.ActionRole) else: button_box.addButton(*button) button_box.accepted.connect(dialog.accept) button_box.rejected.connect(dialog.reject) return button_box def critical_error_message_box(title=None, message=None, parent=None, question=False): """ Provides a standard critical message box for errors that OpenLP displays to users. :param title: The title for the message box. :param message: The message to display to the user. :param parent: The parent UI element to attach the dialog to. :param question: Should this message box question the user. """ if question: return QtWidgets.QMessageBox.critical(parent, UiStrings().Error, message, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No)) return Registry().get('main_window').error_message(title if title else UiStrings().Error, message) def create_horizontal_adjusting_combo_box(parent, name): """ Creates a QComboBox with adapting width for media items. :param parent: The parent widget. :param name: A string set as object name for the combo box. """ combo = QtWidgets.QComboBox(parent) combo.setObjectName(name) combo.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength) combo.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed) return combo def create_button(parent, name, **kwargs): """ Return an button with the object name set and the given parameters. :param parent: A QtCore.QWidget for the buttons parent (required). :param name: A string which is set as object name (required). :param kwargs: ``role`` A string which can have one value out of ``delete``, ``up``, and ``down``. This decides about default values for properties like text, icon, or tooltip. ``text`` A string for the action text. ``icon`` Either a QIcon, a resource string, or a file location string for the action icon. ``tooltip`` A string for the action tool tip. ``enabled`` False in case the button should be disabled. """ if 'role' in kwargs: role = kwargs.pop('role') if role == 'delete': kwargs.setdefault('text', UiStrings().Delete) kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Delete the selected item.')) elif role == 'up': kwargs.setdefault('icon', ':/services/service_up.png') kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Move selection up one position.')) elif role == 'down': kwargs.setdefault('icon', ':/services/service_down.png') kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Move selection down one position.')) else: log.warning('The role "%s" is not defined in create_push_button().', role) if kwargs.pop('btn_class', '') == 'toolbutton': button = QtWidgets.QToolButton(parent) else: button = QtWidgets.QPushButton(parent) button.setObjectName(name) if kwargs.get('text'): button.setText(kwargs.pop('text')) if kwargs.get('icon'): button.setIcon(build_icon(kwargs.pop('icon'))) if kwargs.get('tooltip'): button.setToolTip(kwargs.pop('tooltip')) if not kwargs.pop('enabled', True): button.setEnabled(False) if kwargs.get('click'): button.clicked.connect(kwargs.pop('click')) for key in list(kwargs.keys()): if key not in ['text', 'icon', 'tooltip', 'click']: log.warning('Parameter %s was not consumed in create_button().', key) return button def create_action(parent, name, **kwargs): """ Return an action with the object name set and the given parameters. :param parent: A QtCore.QObject for the actions parent (required). :param name: A string which is set as object name (required). :param kwargs: ``text`` A string for the action text. ``icon`` Either a QIcon, a resource string, or a file location string for the action icon. ``tooltip`` A string for the action tool tip. ``statustip`` A string for the action status tip. ``checked`` A bool for the state. If ``None`` the Action is not checkable. ``enabled`` False in case the action should be disabled. ``visible`` False in case the action should be hidden. ``separator`` True in case the action will be considered a separator. ``data`` The action's data. ``can_shortcuts`` Capability stating if this action can have shortcuts. If ``True`` the action is added to shortcut dialog otherwise it it not. Define your shortcut in the :class:`~openlp.core.lib.Settings` class. *Note*: When *not* ``True`` you *must not* set a shortcuts at all. ``context`` A context for the shortcut execution. ``category`` A category the action should be listed in the shortcut dialog. ``triggers`` A slot which is connected to the actions ``triggered()`` slot. """ action = QtWidgets.QAction(parent) action.setObjectName(name) if is_macosx(): action.setIconVisibleInMenu(False) if kwargs.get('text'): action.setText(kwargs.pop('text')) if kwargs.get('icon'): action.setIcon(build_icon(kwargs.pop('icon'))) if kwargs.get('tooltip'): action.setToolTip(kwargs.pop('tooltip')) if kwargs.get('statustip'): action.setStatusTip(kwargs.pop('statustip')) if kwargs.get('checked') is not None: action.setCheckable(True) action.setChecked(kwargs.pop('checked')) if not kwargs.pop('enabled', True): action.setEnabled(False) if not kwargs.pop('visible', True): action.setVisible(False) if kwargs.pop('separator', False): action.setSeparator(True) if 'data' in kwargs: action.setData(kwargs.pop('data')) if kwargs.pop('can_shortcuts', False): action_list = ActionList.get_instance() action_list.add_action(action, kwargs.pop('category', None)) if 'context' in kwargs: action.setShortcutContext(kwargs.pop('context')) if kwargs.get('triggers'): action.triggered.connect(kwargs.pop('triggers')) for key in list(kwargs.keys()): if key not in ['text', 'icon', 'tooltip', 'statustip', 'checked', 'can_shortcuts', 'category', 'triggers']: log.warning('Parameter %s was not consumed in create_action().' % key) return action def create_widget_action(parent, name='', **kwargs): """ Return a new QAction by calling ``create_action(parent, name, **kwargs)``. The shortcut context defaults to ``QtCore.Qt.WidgetShortcut`` and the action is added to the parents action list. """ kwargs.setdefault('context', QtCore.Qt.WidgetShortcut) action = create_action(parent, name, **kwargs) parent.addAction(action) return action def set_case_insensitive_completer(cache, widget): """ Sets a case insensitive text completer for a widget. :param cache: The list of items to use as suggestions. :param widget: A widget to set the completer (QComboBox or QLineEdit instance) """ completer = QtWidgets.QCompleter(cache) completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive) widget.setCompleter(completer) def create_valign_selection_widgets(parent): """ Creates a standard label and combo box for asking users to select a vertical alignment. :param parent: The parent object. This should be a ``QWidget`` descendant. """ label = QtWidgets.QLabel(parent) label.setText(translate('OpenLP.Ui', '&Vertical Align:')) combo_box = QtWidgets.QComboBox(parent) combo_box.addItems([UiStrings().Top, UiStrings().Middle, UiStrings().Bottom]) label.setBuddy(combo_box) return label, combo_box def find_and_set_in_combo_box(combo_box, value_to_find, set_missing=True): """ Find a string in a combo box and set it as the selected item if present :param combo_box: The combo box to check for selected items :param value_to_find: The value to find :param set_missing: if not found leave value as current """ index = combo_box.findText(value_to_find, QtCore.Qt.MatchExactly) if index == -1: # Not Found. index = 0 if set_missing else combo_box.currentIndex() combo_box.setCurrentIndex(index) OpenLP-2.4/openlp/core/lib/formattingtags.py0000644000175000017500000002124612657640340020154 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide HTML Tag management and Formatting Tag access class """ import json from openlp.core.common import Settings from openlp.core.lib import translate class FormattingTags(object): """ Static Class for HTML Tags to be access around the code the list is managed by the Options Tab. """ html_expands = [] @staticmethod def get_html_tags(): """ Provide access to the html_expands list. """ return FormattingTags.html_expands @staticmethod def save_html_tags(new_tags): """ Saves all formatting tags except protected ones `new_tags` The tags to be saved.. """ # Formatting Tags were also known as display tags. Settings().setValue('formattingTags/html_tags', json.dumps(new_tags) if new_tags else '') @staticmethod def load_tags(): """ Load the Tags from store so can be used in the system or used to update the display. """ temporary_tags = [tag for tag in FormattingTags.html_expands if tag.get('temporary')] FormattingTags.html_expands = [] base_tags = [] # Append the base tags. base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Red'), 'start tag': '{r}', 'start html': '', 'end tag': '{/r}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Black'), 'start tag': '{b}', 'start html': '', 'end tag': '{/b}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Blue'), 'start tag': '{bl}', 'start html': '', 'end tag': '{/bl}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Yellow'), 'start tag': '{y}', 'start html': '', 'end tag': '{/y}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Green'), 'start tag': '{g}', 'start html': '', 'end tag': '{/g}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Pink'), 'start tag': '{pk}', 'start html': '', 'end tag': '{/pk}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Orange'), 'start tag': '{o}', 'start html': '', 'end tag': '{/o}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Purple'), 'start tag': '{pp}', 'start html': '', 'end tag': '{/pp}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'White'), 'start tag': '{w}', 'start html': '', 'end tag': '{/w}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Superscript'), 'start tag': '{su}', 'start html': '', 'end tag': '{/su}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Subscript'), 'start tag': '{sb}', 'start html': '', 'end tag': '{/sb}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Paragraph'), 'start tag': '{p}', 'start html': '

', 'end tag': '{/p}', 'end html': '

', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Bold'), 'start tag': '{st}', 'start html': '', 'end tag': '{/st}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Italics'), 'start tag': '{it}', 'start html': '', 'end tag': '{/it}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Underline'), 'start tag': '{u}', 'start html': '', 'end tag': '{/u}', 'end html': '', 'protected': True, 'temporary': False}) base_tags.append({ 'desc': translate('OpenLP.FormattingTags', 'Break'), 'start tag': '{br}', 'start html': '
', 'end tag': '', 'end html': '', 'protected': True, 'temporary': False}) FormattingTags.add_html_tags(base_tags) FormattingTags.add_html_tags(temporary_tags) user_expands_string = str(Settings().value('formattingTags/html_tags')) # If we have some user ones added them as well if user_expands_string: user_tags = json.loads(user_expands_string) FormattingTags.add_html_tags(user_tags) @staticmethod def add_html_tags(tags): """ Add a list of tags to the list. :param tags: The list with tags to add. Each **tag** has to be a ``dict`` and should have the following keys: * desc The formatting tag's description, e. g. **Red** * start tag The start tag, e. g. ``{r}`` * end tag The end tag, e. g. ``{/r}`` * start html The start html tag. For instance ```` * end html The end html tag. For example ```` * protected A boolean stating whether this is a build-in tag or not. Should be ``True`` in most cases. * temporary A temporary tag will not be saved, but is also considered when displaying text containing the tag. It has to be a ``boolean``. """ FormattingTags.html_expands.extend(tags) @staticmethod def remove_html_tag(tag_id): """ Removes an individual html_expands tag. """ FormattingTags.html_expands.pop(tag_id) OpenLP-2.4/openlp/core/resources.py0000644000175000017500003041742512657640340016402 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2015 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`resources` module provides application images and icons in a central store for use by OpenLP. """ from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x02\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ \x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ \x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ \xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ \x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ \x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ \xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ \x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ \xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ \xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ \x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ \xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ \x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ \x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ \x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ \x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ \xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ \x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ \x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ \x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ \x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ \x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ \x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ \x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ \x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ \xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ \xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ \x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ \xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ \xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ \x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ \xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ \xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ \xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ \xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ \x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ \x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ \x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ \xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ \xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ \xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x7f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xfc\x49\x44\ \x41\x54\x38\x8d\x8d\x53\x3d\x68\x53\x51\x14\xfe\xae\xef\x25\x31\ \xf0\x5e\x93\x97\x64\x78\x31\x21\x16\x12\x41\xda\x42\x9e\x24\x4e\ \x12\xd0\x20\xd4\xa8\xc5\x51\x34\x8b\x54\x5c\xda\xa1\x93\xd2\xad\ \x2d\x92\x0c\x0e\x16\x1c\xd4\xd5\x21\x9b\x34\x8b\x4b\x07\xd1\x21\ \x43\xd0\x5a\x22\x21\x42\x23\x1a\xa3\xd2\x54\x48\x08\x84\xe8\xfb\ \x69\x5e\x8f\x43\x1b\x09\x69\x78\xf1\x83\xc3\xe1\x72\x2e\xdf\x39\ \xdf\x77\xee\x65\x44\x84\x41\xb8\xdd\x6e\x71\xf9\xc1\xf2\x6d\xbf\ \x7c\x4a\xa9\x7c\xaa\x4c\x7f\xab\xd7\x9a\x36\xbb\xed\x49\x2e\x97\ \x7b\x8b\x11\xe0\x07\x0f\xd9\x6c\x76\x29\x9f\xcf\xdf\xd7\x35\x3d\ \x50\x2c\xbe\x3b\x70\x7b\xa4\x5f\xfc\xcf\x1f\xbc\xe4\x96\xd2\x00\ \x46\x12\x80\x88\x40\x44\xc8\x64\x32\x1b\xdb\x5b\x5b\x07\xfb\x86\ \x41\xcf\x9e\x3e\xa7\xf5\xc7\xeb\x77\xfa\x35\xab\x38\x01\x00\xa9\ \xd4\xd5\xe9\xc9\xd3\x93\xd7\xc4\x89\x09\x53\x55\x55\xba\x94\xbc\ \x08\x63\xdf\xe8\x8c\xec\x38\x04\xb6\xb2\xb2\x7a\xcf\xef\x97\x1f\ \x69\x9a\x2e\x10\xd1\x1b\xc3\xd0\xe5\x2b\xb3\xb3\x7a\x28\x14\xf2\ \x5e\x9f\x9b\x4b\x15\x0a\x85\x1d\x4b\x86\x85\x85\xc5\xed\x52\xe9\ \x23\xcd\xcf\xdf\x7d\xd1\x1f\x2b\x1a\x8d\x9e\xaf\x94\xcb\x2d\x55\ \x55\x1b\x89\x44\x62\xca\x52\x82\x24\x49\xc9\xb5\xb5\xd5\xbc\xc3\ \xe1\x58\xec\x93\x96\x4a\xa5\xf7\xb7\xd2\xe9\xcb\x7b\xbb\xbb\xbc\ \x8d\xe7\x37\x45\x51\x7c\xcd\x18\x73\x58\x9a\x38\x2a\x5c\x2e\xd7\ \x43\x45\x51\x28\x16\x8b\x91\x24\x49\x65\x00\xf2\xf0\x9d\xb1\x2e\ \x0b\x82\x50\x54\x14\x85\xe2\xf1\x38\xc9\xb2\xfc\x05\x80\x32\x58\ \x67\xc3\x0f\xe9\x98\xcb\x8c\x9d\x14\x04\xe1\x43\x38\x1c\x9e\xe2\ \x38\x0e\xed\x76\xfb\x7b\xad\x56\xbb\x49\x44\x45\x00\x87\x6b\xb4\ \x02\x11\x69\xdd\x6e\x37\x59\xaf\xd7\xbf\xf6\x7a\x3d\x78\xbd\xde\ \x50\x24\x12\x79\xc9\x18\xbb\x00\x60\xfc\x04\x03\x93\x84\x3d\x1e\ \xcf\xab\x60\x30\x78\xd6\x6e\xb7\xa3\xd3\xe9\xec\x55\xab\xd5\xd4\ \x7f\x13\x1c\x91\x9c\xf1\xf9\x7c\x1b\x81\x40\x60\x86\xe3\x38\x68\ \x9a\x56\x18\x2b\x61\x48\xce\xe7\x66\xb3\x79\xa3\xd1\x68\xec\x98\ \xa6\xa9\xb7\x5a\xad\xcd\xb1\x5b\x18\x15\x00\x44\xa7\xd3\x79\xee\ \xdf\x16\x18\x63\x0c\x00\x87\xc3\xdf\xc9\x03\xb0\x1d\x65\x6e\x20\ \xf7\x61\x02\x30\x00\xfc\x06\xf0\xe7\x2f\xfa\x13\x63\xcc\xb4\xaf\ \x0c\xf0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xcc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x49\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x21\x4f\xc4\x40\x10\x85\xdf\xdb\x16\xe8\ \xa5\xa8\x25\x4d\x10\x20\xc9\x89\x8a\x2a\x44\x2f\xa9\xa0\x16\x59\ \x4d\x93\xdb\x04\xc7\x0f\xe0\x97\x90\x9c\x39\x89\xa8\xc0\x61\x70\ \x88\xaa\x43\xf6\x1c\x0a\x12\x1c\xb5\x04\x52\xb6\x27\x2e\x3d\x7a\ \xed\x1e\xe1\xc2\x26\x93\x4c\x32\xf3\xbe\x99\x9d\xd9\x65\x51\x14\ \x27\x24\x05\x0c\x27\xcb\xb2\xcb\x20\x08\xee\x86\xc3\xe1\xbb\x29\ \x0e\x00\x9c\x4c\x26\x6f\x96\x65\xed\x99\x82\x75\x5d\x0f\x00\x7c\ \x91\xfc\x36\xc5\xb5\xd6\x95\xed\x79\xde\x6e\x14\x45\x92\xe4\x0f\ \xb5\xe5\x03\x18\x74\xa0\x2b\x3f\xcf\xf3\x52\x74\x92\xb7\x3a\x24\ \x61\x37\x4e\x03\xda\x16\x68\x37\xe2\xbf\x02\x48\xae\x5d\xe3\xff\ \x1d\x6c\x02\x98\x40\xed\xca\x46\x40\xd7\x4c\x80\xb6\xad\x86\x28\ \x84\x80\x10\xa2\x27\x6e\x43\x9a\xea\x8d\x58\x6b\xbd\xec\x80\xe4\ \x1a\x40\x08\xb1\x12\x77\x01\xdd\xea\x00\x60\xcf\xe7\xf3\x57\xc7\ \x71\x7a\x4f\x99\x24\xaa\xaa\x1a\x58\x96\xf5\x49\x52\x9b\x66\x50\ \x14\xc5\x4b\x8f\xdc\xb6\x34\x4d\xaf\xc7\xe3\xf1\xe1\x6f\x39\xc6\ \x4f\x04\x00\x4a\xa9\x63\xdf\xf7\x4f\xb5\xd6\x17\x4a\xa9\x9d\x4d\ \x79\xec\xb6\xa5\x94\xf2\x46\xa3\xd1\x55\x9e\xe7\x1f\x65\x59\x1e\ \xb8\xae\xfb\x10\x45\xd1\xf9\x6c\x36\x7b\x02\x70\x3b\x9d\x4e\xb5\ \x71\x35\x00\x18\x86\xe1\x4d\x18\x86\xf7\x71\x1c\x1f\x01\x70\xa5\ \x94\x8f\x52\xca\x04\xc0\x7e\x92\x24\x67\x71\x1c\x3f\x4b\x29\x03\ \x2c\xd7\xcf\xba\xae\xb1\x00\x35\xf4\xac\x81\x7c\x6a\x79\x61\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x6b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x15\ \x01\x20\x18\xab\x28\x4a\x39\x00\x00\x03\xeb\x49\x44\x41\x54\x78\ \xda\x9d\x93\x7f\x68\x55\x65\x18\xc7\x3f\xef\xbd\x77\xf7\x78\xef\ \x9d\xc3\xb1\x2d\xcd\xa6\x6d\xae\x74\x15\x84\x95\x5a\xf9\x6b\x86\ \xe8\xaa\x15\x8c\x16\x59\xb0\x25\x99\x41\xff\x64\x09\x52\x24\x91\ \x84\x10\x56\x56\x4a\x41\x03\x23\xab\xcd\x8a\xb5\xb9\x68\x10\xdb\ \x1f\x32\x59\xa5\xa5\xa1\x98\x59\x18\xcb\x70\x33\x23\xbb\x53\x77\ \x77\xee\x3d\xbf\xee\x39\x4f\xc7\x83\xd7\x4b\xeb\x3a\xab\x0f\xbc\ \xbc\xe7\x3d\xef\xf3\x3c\x7c\xf9\x9e\xef\x51\x2c\x07\xf6\x70\x89\ \xf6\xf6\x76\xf1\x01\xa0\xa5\xa5\x45\x71\x19\xda\xda\xda\x04\x40\ \x29\x45\x73\x73\x73\xbe\x6e\x19\xb0\x17\x14\x00\x75\x34\x85\x8c\ \xd0\x12\xef\x8c\x67\xc9\xaf\xf2\xac\xeb\xba\x84\xc3\x61\xd4\xcd\ \xea\x4d\x3c\x14\x42\x1e\x05\x84\x11\x39\x22\xeb\x2f\xd5\x55\xab\ \x57\x55\x85\xd2\x24\x26\xbd\x0c\xd0\x9b\x2b\x83\xf9\x7c\x12\x7d\ \x22\xba\xca\x3e\x66\xd3\xbb\xb8\x57\x4c\xd7\x54\xb1\xa2\x62\x79\ \x3d\xb9\x49\xd5\xd7\x2f\xa2\x22\x31\x85\x12\x2d\x81\xe1\xd8\x8c\ \x64\xce\xd3\xf1\x69\x1f\x2f\x54\x6d\x91\x8c\xad\xab\x44\x34\x21\ \x2b\xf6\xad\x50\x91\x32\x8d\x7b\x7f\xbe\x67\xdf\xf6\x07\xb7\x2e\ \x6d\x1d\xd8\xe1\x2a\x00\xe6\xf1\xb1\x6a\x56\x0f\x47\x42\x0a\x46\ \x3d\x12\xbe\x8a\xc9\x71\x8d\x19\xb3\xca\x29\x89\x6a\x94\xc4\x34\ \xe2\x45\x45\x58\xae\xcb\x98\x61\x91\xb2\x2d\x4e\x9e\x48\xa2\xa7\ \x2d\x74\xd7\xc1\x2b\x81\x97\x86\x62\x6c\xdc\x6a\xb0\xe0\xf6\x05\ \xee\xe2\x45\x8b\xab\x23\xe4\x70\xc1\xf3\x84\x78\xa9\x3f\x64\x52\ \x94\xb8\xa6\x61\x99\x2e\x06\x59\x14\x21\x4c\xdb\xc5\xf5\x04\xc3\ \xce\x62\x5a\x59\x12\x65\x31\xdc\xe2\x30\x8e\x61\xd1\x3a\x75\x03\ \x53\xbc\x9d\x94\x95\x7b\x72\xe8\xd0\xd1\xd0\xc1\x03\x07\xbb\x43\ \xe4\xf0\xc0\x75\x05\x27\xeb\x62\xfa\xcd\x19\xc7\x21\x6d\xdb\xa4\ \xfc\xc6\xb3\xe9\x34\x49\x3d\xe3\xef\x19\x46\x0d\x13\xdd\xb2\x49\ \xfb\x35\x67\x4d\x87\x6d\x15\x73\x98\x53\xdd\xc4\xb4\xba\x3e\xa6\ \x55\x94\x48\xc7\xe6\x18\xb1\x28\xc7\x82\xc1\x08\xae\x38\x02\x06\ \x98\xa6\xdf\x60\x18\xfe\x90\x31\xdf\xcf\x31\x92\x69\x7f\xe9\x3a\ \x67\xc6\x52\x9c\xd1\x53\x24\x73\xef\xfd\x9a\xe7\x12\x8a\xa6\xaa\ \x1b\x58\xff\xf4\x5a\x0c\x33\xc3\x47\xbb\xde\x53\xd3\xa7\x4e\xfe\ \x2a\x63\xc9\x6a\x05\x01\x77\x88\xc8\x7e\xfe\x0b\xc3\x9d\x60\x7d\ \xcd\xbc\xa6\xcf\x38\x95\x0c\xb3\xe3\xf9\x49\x12\xa9\x5c\x97\x1c\ \xb4\x1e\xbf\xba\xf6\xb7\x88\xcb\x45\x96\x88\x4f\x36\x9b\x95\x7f\ \xc3\xe8\xa9\x3e\x91\x5f\xd6\xc9\xfd\x2b\x6f\x91\xe9\x95\xb3\xe4\ \xfd\xcd\x37\xc9\x9f\xdf\x3c\x24\xc0\x5d\x5c\x24\x42\x9e\x20\x93\ \x9d\x9d\x9d\x14\xf9\x09\x18\x8f\x52\x0a\x04\xa2\x9c\x62\xc5\x75\ \xfd\x3c\xf5\xda\x30\x87\x7f\x1a\x65\x4d\x43\x88\xfa\x05\x0e\xe5\ \xf3\x77\x02\x1d\x26\x79\xf2\x8a\x6d\xdb\x96\x89\xb0\x33\x49\xf1\ \xbe\x5f\x2e\x5b\x37\xd6\xf9\x4a\xab\xe5\xd1\x07\x66\xcb\x1f\x5f\ \xde\x27\xe7\x7e\xff\x2e\xb8\x07\xee\x2c\xa8\x38\x12\x89\x14\x54\ \x1c\x88\xf5\xe0\xee\xca\x2d\xb4\xf7\xa5\x78\xe3\x43\x8b\x1b\xab\ \xc2\xbc\xf2\x64\x11\xde\x55\x8f\xf9\xd1\x9b\x4b\x8e\x82\x8a\x2d\ \xcb\x92\xcb\x61\x1c\x5c\x28\x7b\x5a\xab\xe5\x9a\x99\xb5\x72\xdb\ \xdc\xeb\x65\xe8\x8b\x5a\x19\x3e\xfa\x41\x70\x67\x9a\xe6\x95\x15\ \x77\x77\x77\x13\x0a\x85\xf2\xbe\x86\xe2\xd4\xaa\x4d\x18\xe7\x07\ \x59\xfd\x72\x29\x31\xcd\xa3\x6d\xa3\xc9\x8f\x23\x4b\xb0\xdd\x69\ \x7c\x7b\xbc\x8b\xc6\xc6\xc6\x89\x15\x1b\x86\x21\xe3\x19\x3c\xd2\ \x23\x27\x3a\x8b\xa5\xa6\xa6\x46\x66\x56\xcd\x96\xfd\xef\x96\xc9\ \xe1\x9e\x55\x92\x27\xe8\xbb\xb2\xe2\xae\xae\xae\x60\x27\x38\x17\ \x11\x76\xcf\x91\x1a\xdb\x40\x2a\xdd\xc6\x3b\xcf\x8c\x70\xde\x99\ \x4e\x36\xb4\x86\xa1\xcf\x7b\x00\xc1\xf3\x3c\x1a\x1a\x1a\x18\x8f\ \x22\xaf\x78\xc0\xf7\x0a\x4d\xd3\x08\x2c\x00\x46\xce\x9e\x63\xf0\ \xc0\xdb\x38\xa9\x1f\xb0\xf4\x21\x9c\xcc\x69\x96\xad\x3d\x4e\x38\ \x12\x06\x09\xac\x0a\x06\xfb\xf9\x27\x1e\x8f\x5f\x38\x2f\x04\xf6\ \x17\xcc\xf1\xee\xdd\xbb\x2f\xa4\x22\x68\xea\xf2\x9f\x6f\xbd\x76\ \x98\xd2\xc9\x1e\xa6\xb6\x92\x47\xd6\xbc\x88\x27\x36\x9e\xed\x30\ \x8e\x89\x3d\xd6\x75\x3d\x48\x46\x2e\x1d\x75\x75\x4b\x65\xdb\xf6\ \xb7\x24\xeb\x5d\xc8\xb8\x23\xe9\x74\xba\xe0\xf2\xfb\x26\xf6\x58\ \x44\xb0\x6d\x1b\x20\xd8\xfb\xfb\xf7\x62\x18\x19\x8c\xb4\xfe\xb7\ \x3f\x70\x22\x0a\x0e\x2e\x2e\x2e\x66\x3c\xf1\x78\x82\xff\x83\x82\ \x80\x2a\x60\x46\x4e\x38\x79\x84\x7f\x22\x14\x46\xfc\x6f\x74\xda\ \x75\xdd\x93\x00\x7f\x01\x45\x27\xaf\x59\x55\xa5\x8e\x0e\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xd9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x56\x49\x44\ \x41\x54\x38\x8d\x5d\x93\x69\x4c\x9b\x05\x1c\xc6\x7f\x6f\x5b\x7a\ \x8d\xc2\x04\x59\xc9\xca\xb6\x76\x18\x43\x09\x21\x48\x1b\x4d\x48\ \x16\x17\x98\x23\x4e\x8c\x71\x09\x7c\xf0\xc3\x92\x7d\x61\x1e\x78\ \xb0\x30\x0d\xc9\x92\x79\xc4\x04\xfd\xe0\x99\xa8\x9d\x31\x4d\x4c\ \x66\x5c\x62\xc2\xcc\x74\x23\xd3\x79\x40\xd8\x22\x3d\x24\x88\x1b\ \x30\x36\xca\xa8\xc5\x4a\x2f\x58\xe9\x0b\xe5\x6d\xff\x7e\x98\x43\ \xe7\xf3\xfd\x39\xfe\xc7\xa3\x88\x08\xff\x87\xe2\x0d\xed\x07\x1e\ \x07\x3e\x3b\x76\x5f\x6c\xf1\xf2\x37\x7f\xbd\xac\xae\x16\x16\x80\ \xf7\x83\xd2\x7d\x17\x41\xf9\xaf\x80\xe2\xf7\x57\xc9\xe1\xc3\x4b\ \xae\x8e\xd0\x47\x07\x5b\xd6\xdb\x5a\x1a\xd1\xb1\x16\xdf\x16\x8d\ \xc6\xb6\xe4\xd3\x96\xd4\x97\xaf\xe7\x77\x37\x61\x54\x76\xb2\xb0\ \x7a\x42\x4e\x14\xef\x12\x50\x7c\xbe\x67\x81\x47\x8f\xb9\x5c\xd7\ \x9e\xab\xab\x7f\xaa\xbc\xac\xd4\xbe\xb8\xb8\x48\x24\x12\x61\x72\ \x72\x12\xb3\xc9\x2c\x96\x44\x75\x77\xe0\x8d\xd4\x63\xa0\xdc\x3c\ \xc9\x91\x97\x44\x44\x74\xff\xda\x2b\x55\x47\x5d\xae\xdd\x3d\x0d\ \x0d\x4f\x57\x56\x6c\xb5\xe7\xf3\x79\x34\x4d\xa3\x50\x28\x60\x32\ \x99\xa8\x73\xd7\x29\x0f\x76\xd4\xbf\x00\x62\x50\xc0\xde\xc9\xab\ \x25\x9b\x09\x94\x90\xb2\x7d\x50\xbd\xf0\x24\x81\xc9\x0f\x6c\xaa\ \xaa\xcb\xab\x2a\xc6\x9a\x1a\x0c\xbb\x76\x91\x52\x55\x1c\x0e\x07\ \x4e\xa7\x13\x51\xe7\xf8\xf9\xf4\xd4\xc0\xc5\x57\xd6\x3f\xee\x86\ \x2c\x90\x36\x28\x21\xa5\x15\xe8\x4d\x9c\xfa\xb4\x65\x9b\xef\x2b\ \xdd\x4d\x11\x92\x40\x02\x58\x31\x99\xd8\x7f\xfc\x38\xee\x7d\xfb\ \xd0\x34\x0d\x6b\xf1\x4f\xf6\x3c\x3c\xfa\x8c\xc3\xd2\x34\x83\x6a\ \x38\x08\x7c\x6d\x00\xcc\x00\xf1\xd9\x6b\x4a\x95\xd9\x4c\xb9\x5e\ \x8f\xc9\xe3\xa1\xa9\xbd\x9d\xba\xae\x2e\xb6\xbb\x5c\x14\x8b\x45\ \xf2\xb1\xd3\x98\xec\x7b\xa8\xd0\x92\xe5\x8b\x6f\xae\x1f\x92\xa3\ \x64\x81\x4a\x44\x04\x82\xd4\x77\xed\xd4\x75\x9e\x69\x6d\xcd\xcd\ \x4d\x4d\x89\xa6\x69\x72\x07\xda\xad\x29\xb9\x7a\x76\xaf\x2c\x87\ \x0f\x89\x96\x38\x2f\xc5\xdc\x0d\x49\xfe\xda\xb3\x71\xb1\xc9\xf7\ \x44\x10\x9f\x45\x77\x12\xa5\xda\xe7\xa1\xb3\xe6\xc5\xa2\x23\x91\ \xcb\xfd\x64\xb4\xd9\xd0\xeb\xf5\x00\x14\xd3\x3f\x90\x1f\x3f\xc0\ \x56\xb9\xcc\xd2\x42\x90\x8d\xcc\x38\xca\x46\x1c\x4b\xc5\x03\x06\ \x67\xef\xf8\xdb\x1e\x8e\xd4\xea\x80\x36\xc0\x5b\xd6\xc8\x23\xba\ \x44\x22\x32\x3f\x3f\xff\x63\x2e\x97\xbb\x7d\x18\x9b\x17\xb3\xcd\ \x81\xc5\x62\x43\xcb\x5e\x41\x4d\xfe\x82\x9a\xfe\x8d\x02\xa5\x18\ \x6b\xd7\xee\x9f\x77\xbb\x9f\xd7\x01\xdf\x03\x97\x32\xd3\x0c\xea\ \x4a\x4a\x8c\x13\x13\x13\xfd\xd1\x68\x74\x03\x40\x31\x94\x51\xac\ \xee\xc1\x6c\xb5\x71\x4f\xb9\x95\xe9\xdf\x03\x64\x97\x82\x14\xd6\ \xe2\xac\x5b\xf6\x72\xb5\xad\xed\x06\x22\x82\x88\xd0\x00\xb5\x9f\ \x38\x9d\x7e\x11\x61\x68\x68\xe8\x54\x2c\x16\xfb\x67\x0b\x45\x29\ \x5c\xe9\x92\xe4\x05\xbb\x4c\x7f\xa1\xc8\xec\xd9\x26\x89\x86\x07\ \x64\x74\x74\x74\xd6\xeb\xf5\x5a\x37\x1f\x29\x0b\x7f\x4c\xa5\xd3\ \x43\x00\xa1\x50\xa8\x7f\x66\x66\x66\x25\x93\xc9\x00\x0a\xd4\xf4\ \x63\x30\xda\x28\xb1\x54\x91\x2b\xed\x22\x5d\x72\x20\x3c\x3c\x3c\ \xdc\x1e\x08\x04\x72\x9b\x09\x1e\x02\xfd\x5b\xcd\xcd\xad\x83\x03\ \x03\x55\x22\x82\xdf\xef\x7f\x6f\x64\x64\x44\x92\xc9\xa4\x2c\x2f\ \x2f\x4b\x6a\xfa\x43\x89\xcd\x8d\xc9\xd8\xd8\xd8\xb9\xde\xde\xde\ \x8a\x3b\x3c\xc5\x07\xaf\xd5\xb8\xdd\x1d\xf7\x7a\x3c\xb5\x5b\xac\ \xd6\x72\x35\x9b\x55\xe3\xc1\xe0\x6c\xe4\xfa\xf5\xa1\xe2\xbb\xef\ \x34\x3b\x9d\xae\x46\x7b\xb5\x3d\xbe\x9a\x5d\xfd\x2e\x1c\x0e\x9f\ \xe9\xeb\xeb\xbb\x24\x22\xda\x66\x03\x3e\x87\x1e\x1d\xb4\xe7\xa1\ \x52\xb7\x63\x07\x1b\x16\xcb\xad\x54\x22\x11\x19\x4e\xa5\xce\x7d\ \x0b\x0b\x7a\xbd\x7e\x4b\xa1\x50\xe0\xf6\x2c\x08\x90\x07\x56\x80\ \x25\x20\xf3\x37\x1b\x19\xb1\xb5\xb0\xfa\x5b\x79\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x4f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x05\ \x15\x38\x05\x8e\x43\x17\x2a\x00\x00\x02\xcf\x49\x44\x41\x54\x78\ \xda\x8d\x93\x5b\x48\x93\x61\x1c\xc6\x9f\x6f\xf3\xb0\x96\xd3\x29\ \xd3\xa1\x17\x82\x8e\x9c\xcd\x16\x88\x05\x05\x89\x90\x95\x68\x8a\ \x61\xe4\xe1\xc6\x43\xa4\x35\xcd\x41\xba\x2e\x9a\xa9\x0d\xb3\xc2\ \x84\xd0\xe5\x70\xa0\x16\x08\x1e\x52\x03\xbd\x28\x0d\xbb\xf2\x90\ \x82\x74\x91\x4d\x27\x09\xdb\xac\x5c\xe9\x06\x2d\x21\xdb\xb7\x6f\ \xbe\x7d\xdf\x24\x29\x2a\xed\x07\x7f\x78\x6f\xfe\xcf\xfb\x3c\xcf\ \xcb\x4b\x61\x0f\xaa\xaa\xaf\x49\xf3\xf2\xf2\x35\x14\x85\xa3\x4e\ \xa7\x73\xe3\xc3\xc7\xf7\x7d\x15\xe5\x95\x3d\xb4\x9b\x26\xd8\x8b\ \xcc\xac\x0c\x89\x79\x69\xc9\xe2\xf5\x7a\x89\xd5\x6a\x21\xb5\x75\ \x37\x5d\x29\x29\xc9\x0f\x00\x04\xe2\x7f\x50\x55\x5c\x51\xdb\x3f\ \xad\x92\xef\x9b\xdf\xc8\xe0\xd0\xe0\x3a\x00\x25\x00\x3e\x7e\x81\ \x87\x5d\xf0\xd0\xb4\xc2\x62\xb1\xc0\x4d\xbb\x71\x30\x3e\xde\x5f\ \xa1\x50\xac\x02\xf0\x82\xa5\xe1\xb6\x2e\x6c\x2f\x01\x4a\xa9\x3c\ \x74\x60\x66\x66\x06\x0c\xe3\x45\x64\x64\x64\x88\x4e\x57\x3f\xda\ \xd0\xa8\xcb\x9a\x7e\x35\xd5\x05\x42\x0d\x03\xf0\xdf\x4d\x20\x20\ \x26\x56\x96\x40\x08\x81\xb6\xb6\x0e\x76\xbb\x1d\x72\xb9\xfc\x88\ \x70\xdf\xfe\x11\x71\x88\xb8\x64\x68\xe8\xe9\x3c\x00\xe6\x9f\x02\ \x25\x25\x85\x0a\x69\x84\x54\xfa\x6c\x6c\x1c\xa1\xa1\x61\x30\x76\ \x74\x42\x14\x1c\x8c\xa0\xa0\x20\x34\x37\x37\x23\x3a\x3a\xfa\x98\ \x4a\xa5\x6a\xe7\xff\xb5\xfd\xcc\x8c\xc0\x6a\x8d\xe6\x71\x5c\x9c\ \x3c\xf6\x8b\xcb\x85\x8d\x8d\xaf\x10\x0a\x02\x41\xbb\xdd\x30\x99\ \x16\x90\x9e\x9e\x81\xd2\xd2\xd2\xc8\x95\x95\x95\xc4\x3f\x1c\x14\ \x14\xe4\x07\x68\x34\xd7\x7b\xd6\x3e\xaf\xa5\xae\xaf\xaf\xe3\xc2\ \xf9\x1c\x86\x0f\x32\x6d\x6c\x37\xde\xea\xed\xed\x43\x7d\x5d\x3d\ \xac\x56\x2b\xeb\x2a\x14\x62\xb1\x98\xfa\x4d\xa0\xec\x72\x69\x40\ \x5e\x5e\x6e\xff\xa2\x79\x31\xa7\xcd\x60\xe0\x5e\xc1\xab\xae\x54\ \x6b\x9b\x9a\xee\x9f\x49\x4c\x4c\x6c\x66\x8b\xf4\x45\x98\x9d\x9d\ \x05\x9f\xcf\xc7\xd6\xd6\x16\xf1\xdb\x59\x2e\xbb\x24\x48\x4e\x3e\ \x31\xf0\x6e\x79\x39\xb3\xb5\x55\x8f\x7b\x77\xef\x60\x64\x78\x64\ \x40\x22\x91\xbc\x56\xab\xd5\x9d\x9b\x9b\x9b\xfe\x6e\x36\x02\x07\ \x45\x51\xbe\x61\x18\x06\x3e\x8a\x8b\x8b\x82\xa6\xa6\x26\x5e\x3c\ \x34\xe8\x49\x78\x44\x38\xc9\xcf\xcf\x25\xfd\x4f\x7a\x6d\x00\x62\ \xb4\x5a\x6d\xa3\xc3\xe1\x20\x34\x4d\x13\x8f\xc7\x43\x38\x0a\x0b\ \x0b\x7d\xe7\x96\x96\x16\x2f\x4f\x91\xa0\xf0\x53\x95\xab\xfa\x08\ \x45\x9d\xee\xea\x7c\x04\x99\x2c\x16\xd9\xe7\xb2\x19\xbd\xbe\xed\ \x06\x00\x6b\x52\x52\x12\x84\x42\xa1\xef\x36\x76\x61\xc7\x01\x07\ \x61\xf1\x2b\xb9\x58\x74\x9c\x61\x3c\x67\x4d\x6f\x17\x10\x15\x15\ \x85\xec\xec\x2c\x8c\x8f\xbf\xec\x9b\x9c\x98\x1c\x02\x40\x64\x32\ \x19\x97\x95\x2d\xb7\x00\x73\x73\x73\x30\x9b\xcd\x10\x89\x44\x60\ \xff\x07\x38\xfc\x5c\x2e\x97\xd3\xe1\x74\x90\xb4\xb4\x34\xea\x54\ \xea\x49\x8c\x8e\x3d\x37\x75\x76\x74\x71\xb7\xfb\x02\x0b\x04\x02\ \x70\x74\x77\x77\x43\xaf\xd7\xa3\xa6\xa6\x06\x6c\x1c\xb0\x7b\xdb\ \x5d\x70\x8e\xda\x8d\x06\xb5\x52\x79\xb8\x92\xa6\x3d\xcb\x6c\x61\ \x55\xf3\x6f\xe6\x17\x80\x6d\x6c\x36\xdb\x55\x1e\x8f\xd7\xca\x96\ \xc8\x59\xfe\x69\x9d\x1b\xce\x99\xed\x07\x39\xf7\x48\x74\xc8\xf9\ \xb8\x6a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xaf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x2c\x49\x44\ \x41\x54\x38\x8d\x65\x93\xcf\x4b\x23\x77\x18\xc6\x9f\x99\xcc\x37\ \x33\x49\x1c\x35\xc9\x68\xd4\x91\x74\xa3\x11\x2d\x83\x84\x24\xe4\ \x60\xda\xaa\xb9\xe8\xa9\x67\xf5\x52\xc5\x56\xf6\xda\xbf\xa0\xb0\ \x7b\x2a\x58\xaa\xd0\x4b\x77\x0f\xee\xa1\x47\x41\x84\xae\x07\x11\ \x8d\x22\x6c\xd5\x29\x15\xb3\x48\x41\x83\x07\x95\x0c\x18\xfc\xc5\ \xcc\x38\x3a\xbf\xbe\xbd\xec\x8a\xd4\x07\x1e\x78\x0e\xcf\xfb\x39\ \xbd\x0f\x43\x29\xc5\x53\x75\x74\x74\x44\x1a\x1a\x1a\x7e\xf0\x3c\ \xef\x9b\xbe\xbe\xbe\x2c\xc7\x71\x82\x69\x9a\x1f\x0f\x0e\x0e\x3e\ \xf0\x3c\xff\xee\xfc\xfc\xfc\xec\x69\x9f\x79\x0a\x68\x6a\x6a\x1a\ \xee\xec\xec\x7c\x97\x4c\x26\x5f\x44\xa3\x51\xc4\x62\x31\xc4\xe3\ \x71\x84\xc3\x61\x78\x9e\x87\x8b\x8b\x0b\x6b\x6d\x6d\xed\xc7\xc3\ \xc3\xc3\xb7\x9f\x6f\xb8\xcf\x41\x92\xa4\xef\xd3\xe9\xf4\xdb\x54\ \x2a\xc5\x2a\x8a\x82\x7a\xbd\x0e\x4a\x29\x7c\xdf\x87\xe3\x38\x48\ \xa5\x52\x88\xc7\xe3\xa1\x5a\xad\xf6\x46\x14\xc5\xbc\xae\xeb\x2f\ \x1f\x01\x81\x40\xe0\x0b\x45\x51\x7e\x6d\x6b\x6b\x63\x67\x66\x66\ \x90\x4c\x26\xb1\xb0\xb0\x00\xc3\x30\x70\x7f\x7f\x0f\xcf\xf3\x50\ \x28\x14\x40\x29\x85\x61\x18\x38\x39\x39\x99\x11\x45\xf1\x4f\x5d\ \xd7\xdf\xb3\x00\x10\x89\x44\xde\x24\x12\x89\xc6\xe9\xe9\x69\xc8\ \xb2\x8c\xad\xad\x2d\xd4\x6a\x35\x10\x42\x70\x77\x77\x07\xdf\xf7\ \xb1\xbe\xbe\x0e\x86\x61\x50\x28\x14\xa0\xeb\x3a\xe3\x79\xde\xef\ \x2d\x2d\x2d\x84\x8d\xc5\x62\x5c\x77\x77\xf7\x60\x7b\x7b\x3b\xd2\ \xe9\x34\x2a\x95\x0a\x56\x56\x56\x40\x08\x81\xa2\x28\x18\x1a\x1a\ \x82\xe3\x38\xd8\xde\xde\xc6\xfc\xfc\x3c\x38\x8e\x43\xb1\x58\x04\ \xcf\xf3\xf2\xd5\xd5\x55\x9e\x05\x90\x65\x18\x26\xd4\xd3\xd3\x03\ \x00\x50\x55\x15\x0f\x0f\x0f\xb0\x2c\x0b\x5d\x5d\x5d\x18\x18\x18\ \x80\xa6\x69\x58\x5a\x5a\x42\xb9\x5c\x86\xeb\xba\xc8\x66\xb3\xa0\ \x94\x22\x91\x48\x7c\xcd\x0a\x82\xd0\x1f\x8d\x46\xc1\xf3\x3c\x08\ \x21\xd0\x34\x0d\x81\x40\x00\x94\x52\x10\x42\xc0\xf3\x3c\x2a\x95\ \x0a\x00\xa0\x5a\xad\x22\x10\x08\x20\x1c\x0e\x43\x10\x04\x98\xa6\ \xf9\x25\xcb\x30\xcc\xbf\xa1\x50\x08\x8e\xe3\x20\x18\x0c\x22\x14\ \x0a\xc1\xb2\x2c\x58\x96\x05\x96\x65\x41\x08\x81\x65\x59\xf0\x7d\ \x1f\x92\x24\x21\x1e\x8f\x83\x10\x02\x8e\xe3\xe0\xfb\xfe\x31\x1b\ \x0c\x06\xff\x76\x1c\xc7\xd9\xdf\xdf\x07\x21\x04\xa5\x52\x09\x86\ \x61\xa0\x5e\xaf\x63\x63\x63\x03\xcb\xcb\xcb\x30\x4d\x13\x00\x30\ \x36\x36\x86\xe6\xe6\x66\xa8\xaa\x0a\x8e\xe3\x20\x8a\xe2\x5f\xa0\ \x94\x62\x70\x70\x50\x1d\x19\x19\xa1\xe5\x72\x99\x5e\x5f\x5f\xd3\ \xd9\xd9\x59\xda\xdf\xdf\x4f\x53\xa9\x14\x15\x04\x81\xb6\xb6\xb6\ \xd2\x89\x89\x09\xaa\xeb\x3a\xd5\x34\x8d\xe6\x72\x39\x9a\x4e\xa7\ \xaf\x01\xf0\x0c\xa5\x14\x8d\x8d\x8d\xca\xe4\xe4\xe4\x3f\xd5\x6a\ \x35\x38\x37\x37\x87\xde\xde\x5e\xa8\xaa\x8a\xd5\xd5\x55\x98\xa6\ \x89\x4c\x26\x83\xd1\xd1\x51\x50\x4a\x31\x35\x35\x85\x9b\x9b\x1b\ \xec\xee\xee\x7e\x67\xdb\xf6\x1f\x8f\xaf\x9c\xcb\xe5\x7e\x2a\x16\ \x8b\xaf\xce\xce\xce\x30\x3e\x3e\x8e\xe1\xe1\x61\xb8\xae\x0b\xdb\ \xb6\xe1\xfb\x3e\xf6\xf6\xf6\xb0\xb8\xb8\x08\xc7\x71\x70\x74\x74\ \xf4\xfe\xf8\xf8\xf8\xdb\x67\x5b\x28\x95\x4a\x2f\xf3\xf9\xfc\x2f\ \xb7\xb7\xb7\x0d\x97\x97\x97\x10\x04\xe1\x11\x60\xdb\x36\x58\x96\ \x75\x76\x76\x76\x7e\xae\xd7\xeb\xaf\x28\xa5\xde\x33\x00\x00\xc8\ \xb2\x2c\x65\x32\x99\xd7\xb2\x2c\x7f\x25\x49\x52\x17\xcb\xb2\x44\ \xd3\xb4\xea\xe6\xe6\xe6\x07\xd7\x75\x7f\x3b\x3d\x3d\xfd\xf8\x6c\ \x8d\x0c\xc3\x00\x40\x04\x80\xf8\x3f\x47\x00\x04\x01\xd8\x00\x2c\ \x00\x06\x00\xfd\x93\x6f\x00\x98\xff\x01\x68\xa5\x71\xa1\x90\xf8\ \x3b\x1c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xde\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x5b\x49\x44\ \x41\x54\x78\xda\xa5\x93\x31\x68\x14\x41\x14\x86\xff\x37\x33\x3b\ \x7b\x9b\xcb\x5d\x2e\xb9\xd3\x5c\x52\x29\x44\x93\x42\xb0\x50\x2c\ \xbc\x4a\xec\x2c\x8c\x85\x91\x44\x04\x8b\x34\x12\xd0\x56\x02\x62\ \x63\x21\x68\x23\x16\x92\x26\xa0\x55\x42\x62\xe1\x69\x91\x2a\x76\ \x82\x36\x2a\x36\x62\x08\x16\x1a\xc3\x5d\xdc\x35\xe2\x5d\xee\x6e\ \xf7\x6e\x77\x9c\x5d\xd7\xcd\x69\xec\xfc\xe1\x63\x87\x37\x3b\xff\ \xbc\xf7\x78\x43\x4a\x29\xfc\x8f\x04\xfe\x12\x9d\x59\x31\x91\x6d\ \x4e\x13\x63\x53\xc3\x03\xe9\xc1\x00\xe8\xab\xfc\x68\xbf\x57\xc0\ \x22\xc8\x5c\x56\x8f\x4e\x3b\xe8\xd2\x1f\x19\xd0\xe4\xb3\xf1\x42\ \x9f\x9c\x3b\x7b\xac\x58\x1c\x1d\xee\x85\x5d\xf3\x40\x00\x06\xb2\ \x29\xac\x55\x9a\x28\xbf\xb1\x1d\xa7\xee\x8f\xab\x87\xa7\x5e\xec\ \x31\xa0\x4b\x2b\xa5\x91\x62\xcf\xf3\xf3\x27\x86\xa4\xe0\x0c\xdf\ \x6a\x2e\xee\x4c\x8d\x81\x08\x98\x5d\x5a\x43\xb6\xd7\x42\x27\x50\ \x78\xfc\xda\xf1\xd6\x6d\xef\x82\x9a\x3b\x59\x86\x16\xd3\x80\x2e\ \xaf\xe6\xf3\x39\xab\x5c\x1a\x2b\x48\xbb\xe1\xa3\x52\xef\x20\x9f\ \x31\x90\x36\x39\x7a\x24\xc7\x50\x2e\x85\x4a\xcd\x87\xdd\x08\x50\ \x3a\xd4\x2f\x0b\x59\x6b\x8e\xae\xad\x9b\xbb\x3d\x10\x34\x71\x70\ \x30\x93\x77\x1a\x0a\xa0\x40\x43\xf8\xf8\xb5\x85\xa5\x57\x55\x70\ \x0e\xac\xae\xd5\x90\xb2\xac\x30\x1e\x71\x60\x7f\xba\x68\x6f\xd4\ \xa7\x01\x3c\x88\x0c\x0c\x69\x4e\x81\x0b\x54\xb5\x41\x28\xdf\x0f\ \xd0\x70\x7d\xdc\x78\xfa\x29\x3a\x90\xe9\xed\x01\x0f\xb7\x28\x44\ \x01\x4c\xc0\x10\xe6\xc5\xc4\xa0\x4d\xe2\xf0\xbb\x6a\x1b\x39\x4b\ \xc0\x34\x38\xdc\x96\x8b\xea\xdd\xe3\xf8\xad\xc1\xeb\x6f\x61\xa6\ \x8d\xc8\x40\xfb\xe2\x7b\xcb\x47\x9b\x19\x03\x49\x0f\xc0\x8d\x6d\ \x4f\x09\x6c\x35\x09\x1b\x75\xc0\x6e\x4b\xb0\x2b\x2f\x13\x03\x5d\ \x0d\xbe\xec\x00\x1b\x3b\x84\xad\x16\x83\x47\x06\x20\x8c\xfe\xae\ \x1e\x48\xe7\x57\x7d\x0c\x8a\x28\x02\x2a\x48\x0c\x14\x71\x28\x26\ \x01\xa2\x18\xa6\xc1\x87\xae\x0c\xe4\x82\x26\xcc\x24\x46\x46\x75\ \x26\xe2\x22\xbc\x31\x46\xc6\x5f\x73\x71\xd7\xc0\x63\xf3\x3a\xb8\ \x99\xfc\x40\x2c\xec\x24\x12\x85\x6b\xa2\x68\x2f\x32\x63\xcc\x86\ \x34\x97\x13\x03\x75\x7f\xc4\x05\x97\x33\x1a\x37\xca\xa0\xe3\xe9\ \xd8\xd1\xdd\x12\xee\x1d\x01\xbc\x26\x62\xb9\x20\x7e\x4e\xcd\x66\ \x9c\xbd\xa3\x7c\x6b\xab\x04\xc5\x9e\xb0\xc0\x2f\x14\x45\x13\xc3\ \x19\x86\x7d\x69\xd2\x83\xa5\xf0\xb9\x65\xc1\xf6\xd8\x26\x80\x19\ \x75\x33\x5f\xde\x33\xca\x49\xe0\x76\x2d\x8f\x8e\x3b\x01\x45\x93\ \x8c\x30\xaa\xd9\xd6\x23\x1c\x36\x79\x01\xb9\xed\x79\x75\x75\xc4\ \xfd\xe7\x63\x22\x22\x09\x20\xd5\x85\xa9\x11\x71\x99\xbe\xa6\xad\ \xf1\x34\xad\x98\xa6\x3e\xdb\xf9\x09\xcf\x9a\xe3\x95\x25\xec\x84\ \x76\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x08\x2c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ \x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ \x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x00\x06\x62\x4b\ \x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\xf7\xdc\x00\x00\x07\x89\ \x49\x44\x41\x54\x18\x19\x65\xc1\x79\x3c\x14\x88\x1e\x00\xf0\xdf\ \x8c\xbc\x14\x6a\x52\x84\x0e\xdd\xdb\xeb\x40\xa1\xb7\xbc\x3e\x14\ \xa5\x83\xa8\xad\x61\xa8\x6d\xa7\xf2\x42\xf5\x96\x50\xba\x56\x92\ \x23\xa4\xc6\x2d\x11\x9e\xb3\x75\x94\x2b\xe5\x88\x1c\x63\xca\x91\ \x26\x39\x47\x1a\x26\xd3\x98\xc1\x30\x87\xc1\x98\xdf\xf6\xb1\xef\ \xbf\xbe\x5f\xc8\xd6\xbb\x57\xe1\xc1\x03\x88\x9e\xf5\xaa\x70\x3c\ \x04\x10\x6b\xe4\xa3\x42\x49\x07\x62\xec\x0d\x1f\x67\x8a\x00\x20\ \x36\xd4\xc7\xcf\x69\x05\x58\x3e\xfe\x70\x43\x44\xf5\x84\x84\x60\ \x15\xf2\x9a\xc3\x0e\x40\x34\x77\x36\x6e\x53\x39\x03\x2a\x56\x5b\ \xff\x35\xa2\x56\x04\x60\xc5\xdc\xf5\x7c\xd1\x73\x02\xc5\x6a\x8f\ \xe9\x73\xd5\x2a\x88\x38\xe0\xb9\xd3\x8d\xf4\x02\xe0\xe0\xf3\x6d\ \x45\x1a\x4f\x08\xaa\xb6\xba\x06\x1f\x34\xeb\xa1\xc3\xa6\xd5\x20\ \x54\xf3\x26\x80\x2d\xc9\xa0\x55\xb3\x02\x54\x80\x66\xe3\xb1\xeb\ \xc4\x20\x00\xed\x8a\xc7\x25\xf2\x7a\x50\xa5\xc5\x78\xc4\x92\x8f\ \x03\x44\xa5\x5c\x0e\x75\x5c\x4a\xc8\x0d\x2f\x76\xaf\xb4\xd7\x21\ \x78\xea\xdd\x82\x39\xf5\x4e\x39\x2f\xa2\xf6\x13\x2f\xbe\x78\x16\ \x67\xef\xd7\x0c\x47\x0f\x9d\xff\x29\x4e\xd9\x00\x12\x1c\x92\x77\ \x7a\x92\x0c\x00\xce\x19\x9a\x26\xe8\xea\xea\x75\x5b\x6b\x6e\x49\ \xd3\xf0\xdf\x5f\xb9\xa7\x66\xf3\xf0\xd2\x0a\xd2\x17\x43\x2b\x6d\ \x47\x25\x04\x30\x5d\xa4\x17\xb1\x20\x19\xee\x9b\xe5\xaf\x91\x2f\ \xfc\x03\x00\x62\x7f\xf6\x39\xeb\x54\x0c\xc4\x18\x9a\xcf\x12\xa7\ \x4b\x00\xd1\x64\x6f\x3d\x0a\x19\x8e\x3e\x9a\xf4\xfa\x78\xb2\x05\ \xf4\xa2\xd6\x7a\x4f\x3a\x2d\x27\x7a\xde\x59\x4d\x75\xdd\x7f\x64\ \xfe\xbc\x68\xe6\x35\xeb\x13\x99\x00\x0e\x5a\xfb\x3e\xaf\x53\x22\ \x32\x4c\x4c\x76\xd0\xd5\x7b\x01\x4c\x73\x8d\x5c\x49\xb9\x66\x67\ \xc8\x85\x3b\x0a\x95\xd5\xc4\x66\x2e\xaf\xcc\x47\x57\x7d\x44\xb4\ \xb9\xb7\xe3\xb2\xf6\x83\x8f\xfb\x2c\x8f\xaf\x7d\xaa\x0c\xa4\xdf\ \xcc\xff\xb1\xe6\x88\x72\x2b\xc0\x61\xb2\x3e\x69\x99\x16\x8c\x43\ \xe8\x4a\x37\x2d\x3b\x7f\x80\x50\x2b\xb7\xad\x76\x64\xc2\xb5\xbb\ \xcc\xb3\x05\x07\xe5\x00\x61\x5e\xee\xfb\xec\x7f\xde\x96\x14\xfd\ \xc7\xe5\x69\xc7\x55\xf4\x99\x17\xcf\x12\x7c\xfd\xb5\xb9\x0d\x75\ \xab\xb2\x1a\x69\xc4\xc0\x74\x8d\x03\xf0\x1d\x51\x64\xcd\xf8\xb7\ \xc9\x62\x29\xc0\x01\x43\x33\x0b\x8d\x55\xf1\x1b\x53\xfd\xee\xdd\ \x38\x47\x45\x94\x9a\xb3\x3c\x6a\x65\x32\xaf\x64\x69\xa0\xf7\x85\ \xfb\x88\x46\x0f\xb4\xb2\x00\x6c\xaf\x6c\xdf\x45\xa2\xc0\x77\x56\ \x9d\x3f\x75\xab\x97\x28\xa9\xc0\x49\x91\xa9\xc6\x3a\x00\xbd\xb1\ \x26\xe6\xc6\xa2\x83\x84\x85\x13\x67\x3f\x7e\x2b\x1a\x01\x48\xdf\ \x14\xd0\xed\xba\xbf\xba\xf6\xd9\x3f\x23\x6f\xfb\x0a\x11\xcb\xc2\ \x92\xe6\x07\x51\x67\x0a\x2b\x5d\x52\xa8\x21\xb7\x10\x53\x2a\xfd\ \x8a\x5d\xd6\x1e\x8b\xa9\xb2\x7f\x6c\x70\x3d\x1c\xa0\x5c\x92\xdc\ \x73\xed\x42\x66\x93\xd4\xb8\x37\xa2\x7a\x33\xa2\x62\x6a\xc2\x8c\ \x63\x37\x4d\x15\x50\x98\xb5\x65\x5f\x11\x0b\x76\x84\x37\x5f\xb0\ \x3c\x7e\xb3\x60\x7e\x18\xc5\x95\x09\x50\x72\x2d\x5a\xcd\xeb\x81\ \x92\x3e\xf8\xce\x27\xbf\xde\x9d\x00\x2f\x55\x7d\x61\x8e\x1a\x03\ \xbe\x5b\x48\x6d\x4e\xc9\x33\x8d\xa8\x66\xbb\x4d\x2f\x1b\x34\x69\ \x2a\x47\x9c\xb8\xca\x9e\x6e\x1b\x9f\xaa\xe3\x7e\x6e\x9b\x2e\xcf\ \x45\x2c\x9c\xa4\xf1\x7c\x76\xdf\x92\x37\xe7\x64\xbe\x0b\xb0\x02\ \x18\x4b\x6a\x7c\x96\x2a\xb5\xf9\x24\xbc\xc9\x74\x2d\x72\x44\x94\ \x1a\x7e\x09\x61\xf0\x11\xbf\x6d\x7b\x1b\x9a\x9d\x33\x45\xae\xd2\ \x7f\x5c\xed\xb9\x6c\xc3\x99\xc2\x93\x41\x0b\x6d\xb4\x01\xe8\x5e\ \x69\x01\xde\x4b\x09\x89\x40\x7f\x92\x51\x11\x70\x8a\xb0\xa4\x38\ \xef\x61\xc7\xc5\x63\x00\xa5\xc1\x51\xbe\xbf\x27\x2c\xd5\x1c\x6c\ \xae\xcd\x4b\xb3\xe3\x1f\x10\x07\xf4\x31\x1b\xd7\x21\xca\x36\x70\ \x4d\x3e\xe5\xce\xd4\x8b\x44\x7d\x4e\xf4\xf3\x88\xfd\xe1\x55\xcb\ \x13\xf5\x6f\x5b\x70\xbc\x6b\x9c\x92\x68\x00\x38\x07\x60\x40\xab\ \xe2\x79\x8c\xe5\xbb\xfd\x13\xd5\xef\x6d\x72\xd7\x22\x66\x1c\xbe\ \xeb\xe7\x7c\x4a\x62\x08\x73\x56\xeb\xc1\xff\x85\x69\xff\x3e\xba\ \xef\x2d\xf1\x2b\x28\x9a\xbb\xbc\x8a\x89\x00\x22\xee\x7b\x93\x3f\ \x57\x13\x3d\x44\xfa\xcd\xa2\xac\xf3\x00\xfc\x01\x3a\x2f\xb5\x2e\ \x22\x42\xe4\xdf\xb1\xbd\x2c\x1f\x51\x6a\xfe\xb9\x9d\x6e\x86\xb7\ \x45\xeb\x3e\x15\x96\xf9\x8b\x13\x79\xb4\x1a\x6e\xdc\xdb\x35\xf9\ \xf5\xe2\x56\xbb\xae\xdb\xba\xcb\xb9\x93\x75\x4f\x93\xff\xb4\x7d\ \x30\xa4\x5e\x97\x91\xe2\x38\x58\x26\xd8\xfb\x4e\x25\xdb\x17\x31\ \x29\xd5\x57\x62\xff\x0a\xc3\x83\xa6\x5d\x38\xe6\x81\xae\x69\x38\ \x67\x45\x2f\xfc\xed\x24\x74\x06\x35\x2e\x28\x5f\x0c\xd0\xa1\xff\ \x7a\x5e\xb6\x23\x51\xa7\xad\x87\x26\x3d\xe8\x0b\xd0\x55\x57\xfa\ \x90\x66\xbd\xa1\x94\x9b\x5f\xe7\x9e\x7c\x58\x3c\x2b\xb4\x68\x6e\ \xc8\xa6\x21\xb2\xcc\xca\x33\xe3\xb7\xa5\x7f\x1d\x4a\x7b\x1d\x1b\ \x4b\x39\x69\xc8\xa3\xb3\xf9\xdd\x6c\xc4\x61\x5e\x73\x51\x41\x22\ \x3a\x8f\x84\x33\xfe\x97\x2e\xc6\x37\xb2\xad\xdd\x79\xaf\x42\x10\ \xe3\x95\xcf\xe9\x18\x5b\x63\x52\x56\x49\xe0\xac\xeb\x08\xa2\xc8\ \x96\x57\xd3\xef\x32\x3d\x33\x98\x50\x7c\xf4\x4e\x18\xe5\x25\xd0\ \x63\x9a\xa3\xfb\xac\xa1\xa2\x4f\xb3\x2b\xba\xb3\x8a\x20\x9f\x39\ \x25\xde\xc0\x8f\x04\x98\xbd\x2e\x55\x15\x04\x6b\x40\x47\x75\xb5\ \x49\x56\x3e\xaf\xba\x86\x99\xb1\x36\xf8\x23\x62\x3b\xa5\xaa\x24\ \x33\x33\x4d\xc8\xdf\x54\x2b\x7a\xb4\x97\xb1\x97\xdf\xc4\x31\x65\ \x05\x20\x0a\x0c\xdb\xc8\xc5\xee\x33\x2b\xc7\x2e\x32\x8e\xa4\x8c\ \xcf\x94\x09\xb6\x37\x1e\x4a\x93\xcb\xdf\x79\x1a\x98\x7a\x92\x2c\ \xe4\x77\x7c\x15\xf6\xde\x3b\x0f\x4d\x45\x0a\x7b\x39\xe9\x9d\xab\ \x11\xf9\x75\x75\x8c\xc4\x85\x2d\x8d\x40\xb3\x4b\xf0\x2a\x89\x01\ \x28\x93\x56\x79\xbe\xcf\x5f\x90\xd7\xb3\xa2\x6f\x39\xd7\xc8\x41\ \xe7\x9b\xcb\x70\xd4\x84\x7a\xcd\xb2\xc1\x94\x1e\x2d\xe6\x1e\xc4\ \x77\x57\xca\x37\xe6\xaa\x21\x0a\x5a\xb9\xfe\x83\xec\xe9\x5f\x84\ \xc3\x83\xc6\x1d\x3d\xd3\x9c\xa1\xb2\xc1\x17\xec\x63\xc8\x1d\xe0\ \xb7\x38\x97\x6d\xc6\x09\x5e\x4c\x53\x49\xde\x75\x9c\xed\x0f\xa9\ \xd5\xc9\x18\x46\x8c\x09\xf6\xd4\x3f\xb6\x13\x59\xf9\x21\x89\x46\ \x61\x8b\x10\xfb\xf6\x32\x1f\x31\x3e\x29\x3e\xb3\xed\x2a\xb6\xc4\ \x6b\xd7\x09\xe0\x91\x55\x5a\x42\x65\x94\xda\xbd\xf6\xa7\x5d\xd6\ \x83\xd2\x86\x1a\xc1\xc8\xe8\x5d\x51\x39\xa2\x38\x5b\x12\x2c\xeb\ \x51\x5c\x95\xd4\x4f\xde\x9f\x79\x8a\x38\xe9\x36\x45\x9d\xad\x45\ \x94\x72\x64\x0f\xe5\x67\xf0\xad\x74\x60\x2a\x5e\x51\xa4\xb0\x98\ \x70\x13\x93\x64\x59\x88\xfd\x46\xfd\xc9\x1c\x2b\x56\x5b\x75\x4e\ \x55\x61\xad\x61\xa0\x79\xe3\xbc\x06\x2b\x06\x27\xb2\x9b\xb9\xa5\ \xed\x54\xbb\x5b\x50\x70\x5b\x16\xd3\xaf\xd7\xdd\x15\x73\x5e\x66\ \x58\xe6\x6b\xed\xe0\xed\xd3\xd6\x1a\xd1\x8d\x57\x8a\x83\xd6\x06\ \x66\xfb\x97\x2d\xff\xfd\xed\x8b\xee\x00\x9d\x1f\x86\x28\xe6\x4a\ \xfa\xa7\xe6\xc9\xfc\xc4\x6f\x24\x8f\x65\x9d\xd3\x24\x31\x55\xa2\ \x2e\x5b\x23\xaf\x11\x53\xc4\x13\x93\x5c\x79\xb9\x78\x9b\x98\x2d\ \x53\x95\x9f\x96\xa8\x4b\x7c\x64\x1b\x67\xce\x08\xdb\xc7\x67\xa4\ \x8b\x11\x87\x2b\x05\x1d\xa2\xdd\x23\xbf\x8c\xf2\xc7\xfd\x64\x4b\ \x96\x07\x8c\x54\x09\x3d\x27\xa9\x00\x82\xa1\xb1\x2b\x52\x0b\xc2\ \x86\x21\x07\x59\x13\x22\x80\xc2\x99\x15\x99\x12\x07\xa0\x18\xe0\ \x84\xe4\xa4\xc1\x17\xa0\xfb\x37\x51\x7a\xa6\x92\xfa\xbb\x98\x2c\ \x83\xa1\xaf\x88\xc3\xd6\x02\xed\xf1\x31\xc5\x95\x31\x53\x61\xae\ \x44\x0b\x71\x2c\x6e\x7c\x9e\x84\x8a\x38\x8a\xc2\xeb\xe2\x69\xc4\ \xb1\x4d\xc2\x27\x92\x25\x88\x63\x77\x85\x28\xb1\xc5\x5a\xae\x0f\ \xef\xbe\xd0\x18\x23\x59\x27\xfa\x4f\x7c\x13\x20\x76\xa6\xf4\x94\ \x72\x52\x2c\x2c\xda\x83\x59\x30\xf6\x00\xa0\x4f\xcc\x52\x65\x39\ \x29\xd7\x7c\x7a\xd4\xce\xee\x68\x52\x32\x28\x79\x5f\xf0\xb4\xc8\ \x9f\xa8\x1e\x76\xf5\x3f\xa5\xa7\xcb\xc0\x0e\x7e\x0d\xba\xa0\x13\ \x7d\x41\xb9\xb8\x30\xfb\xa5\x65\xcb\x0d\x53\x41\xd3\x40\x1b\xf9\ \xf3\x1f\x97\x82\xda\x54\xda\x57\xb3\x0d\xee\xad\x6b\x74\x69\xb6\ \xe8\x4d\x8d\x8d\x79\x73\x9e\x5e\xda\x99\x9b\x60\xcc\xf0\x69\x59\ \xc9\x5a\x1f\xf9\xac\x65\xe7\x87\xd4\x7e\xf7\xdb\xd6\xf5\x81\x6f\ \x73\xbb\xf9\xa7\x0a\xb2\xa2\x0b\x54\x1b\xfa\xd6\x7b\xe0\x1c\x00\ \x9c\x03\x54\xf8\x1b\xf1\xf8\xc6\x5f\xb3\x82\x09\xf0\x23\x69\xed\ \x64\x9c\x4c\x01\x4b\x47\x1d\x84\xa7\x45\x26\x00\xa3\x65\xc2\x2c\ \x91\x1b\x80\xf0\xf8\x38\x5b\x6c\x07\x3f\x40\x05\xca\x11\x01\x50\ \x8c\x7c\x94\x03\xe0\x04\x7e\x43\x39\x00\x8a\x90\x87\x72\x50\xc1\ \x52\x0c\xc1\x3e\xd0\xc0\xaf\xd8\x86\x32\x00\x1c\xc4\x16\x9c\x04\ \x02\x76\x63\x05\x8a\xe1\x07\x7f\x01\x1f\x8b\x3e\x7c\xd8\x51\xe0\ \x08\x00\x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\ \x65\x00\x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\ \x48\xd5\xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x4d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ \x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x04\ \x03\x32\x2d\xe1\x0e\xef\xfd\x00\x00\x03\xcd\x49\x44\x41\x54\x78\ \xda\x9d\x93\x6b\x4c\x93\x67\x14\xc7\xcf\xdb\xf6\x6d\x29\xa3\xd2\ \x95\x44\x4a\x69\x55\x70\x8b\x09\xac\xb4\x23\x23\x63\x86\xb9\x76\ \xa3\x33\x23\xcb\x5c\xc2\x30\x5b\x36\x2f\x21\x20\x2e\xdb\x90\xf5\ \xa2\x36\x59\x84\xc4\x1b\x51\xdc\xb2\x01\x9b\x92\x98\x52\x34\x31\ \x26\x04\x9b\x08\xd8\x02\x51\x54\x3e\xcc\x81\x26\x58\x19\x1a\x1d\ \xa0\x64\xd6\xae\x17\xe8\x4a\x97\xb5\xef\xe5\xd9\xc1\x84\xc4\x0f\ \x33\xb6\x3d\xc9\x3f\x79\x72\xce\x3f\xbf\xf7\xbc\xe7\x3c\x0f\x05\ \xa9\x07\x65\xb5\x5a\xf4\x26\x93\xa9\x31\x33\x33\xb3\x9c\xe3\x39\ \x71\x34\xfa\xf7\x83\x50\x28\x78\xde\xe1\x70\x9e\xbd\x3a\x7a\x2d\ \x01\xe9\x40\x9b\x9b\x0f\xd4\xfa\x9e\xf8\x12\x1c\xc7\x92\x48\x24\ \x42\x66\xe7\x66\xc9\xcd\x5b\x13\xa4\xef\x42\x2f\x6f\xb1\x7d\xdb\ \x8e\x1e\x51\xca\xd4\x77\x2b\x8d\xeb\x2f\xb9\x07\xff\x09\x04\x03\ \x24\xfe\x6f\x9c\x2c\xc5\x96\x48\x6b\xeb\x51\xae\xac\xec\x8d\xfb\ \x34\x4d\xff\x80\x96\x37\x51\x42\x48\x95\x2e\x7b\x29\x6b\x4b\x76\ \xb6\x4c\xca\x71\x1c\x30\x6c\x02\x28\x8a\x82\x41\xb7\xfb\xcc\xf8\ \xf8\x84\x1d\xcb\x01\x14\xbb\xe2\x15\xa4\xc0\x15\xca\x5f\x96\xbf\ \x35\x33\x33\x07\x84\x10\x60\x18\x06\x58\xfc\x80\x4a\xa9\x9c\xc6\ \xda\x93\x15\x68\x3a\x60\x69\x51\x51\x51\xd9\xf4\xf4\xef\xc0\xb2\ \x0c\x8a\x05\x96\x61\x61\xdb\xf6\x6d\x95\x6b\xd7\xad\xa5\x9f\x35\ \x9a\xad\x4d\xd9\xc2\x64\xa9\x6f\x6f\xaa\x78\xad\xaa\xaa\xca\x16\ \x0c\x86\x28\x69\x86\x14\x54\x2a\x15\xe0\x02\x21\x23\x53\x5a\x88\ \xe3\xd9\x58\xac\x2d\x1a\x6d\x6c\x6c\x5c\xdf\xb0\xbb\xe1\xd0\xc2\ \xc2\xe2\xe1\x64\x3b\xa6\x0c\x06\xc3\x87\x08\xa3\xf2\xf3\xf3\xa1\ \xef\x82\x0b\x8e\x1e\x6b\xc3\xae\x11\x2c\x91\x80\x5a\xad\x79\x2f\ \x43\x22\xbd\xbb\xe1\xd5\x0d\x13\xaa\x3c\x55\xed\xf5\x6b\xd7\x17\ \x92\x05\x4b\xb4\x5a\x6d\xf5\x83\x3f\x66\xa1\xcf\xd5\x0f\xfa\xd2\ \x52\xe8\x77\xbb\xe1\xb6\xd7\x0b\x40\x00\x34\x1a\x0d\x64\x65\x65\ \x49\x69\x09\x4d\xfd\x7a\xe3\x06\x3b\x34\x34\x7c\x2e\x19\x30\xd5\ \xd2\xd2\x5c\xa3\xd7\xe9\x4b\xb4\xc5\xc5\xf0\xa7\xcf\x07\x42\x81\ \x00\x0a\x0b\x0a\xe0\x7c\x6f\x2f\xf0\x3c\x0f\x72\xb9\xfc\xe9\x0d\ \xb9\x77\xf7\x1e\xb1\xef\xb3\x7b\x30\x77\x4e\xf4\x22\x68\x67\x67\ \xc7\x67\xe5\xe5\xe5\xa7\xfc\x7e\x3f\x60\xd7\xf0\xc1\x66\xd3\xf2\ \x15\x83\x75\xea\x7c\xd0\xeb\x4a\x40\x2c\x11\x43\x20\xe0\x87\x70\ \x28\xcc\x7c\xde\xf2\xc5\x40\x22\x91\xb0\x03\x80\xff\xb9\x4f\xba\ \x44\xa7\x15\x5a\xcc\xe6\xef\x84\xb4\xf8\xc0\x19\x67\x8f\x60\x31\ \xb2\x08\xc7\x8f\x1d\x07\x35\x02\x1f\xcd\x3f\xe2\xbb\x4e\x75\xc5\ \x7c\x8f\x7d\x21\x02\x30\x3f\x36\x36\x36\x89\xf3\x1e\x07\x00\x0f\ \xea\x2f\x14\xf9\xdf\x8e\x1b\x76\xd7\xcb\x36\xbd\x63\x70\xdc\xf1\ \xde\xa9\xf6\x78\x3c\x90\xa3\xc8\xc1\x39\xae\x01\x65\x9e\x92\xef\ \xec\xfc\xf9\xb7\xf6\xf6\xf6\x8b\xd8\xd9\x4d\xb4\xce\xa2\x82\xa8\ \x25\x14\x83\x22\xf0\xbc\xb0\x58\xcd\xaf\x38\x7b\x1c\x93\x5b\x3e\ \xfe\x88\x68\xd6\x68\x88\x4e\xaf\x23\x46\xa3\x91\x0c\x0e\x0e\xf0\ \x7b\x9a\xf6\xf4\xa2\xa5\x10\x25\x7c\xe1\x62\x9e\x3d\xdb\xf6\x5a\ \x36\x17\x14\x16\x9c\x75\x76\xf7\xe4\xcc\xcd\x3d\x04\x11\x2d\x82\ \x55\xb2\x55\xb0\x73\xe7\x0e\x5c\x12\xb9\x6a\xdf\x6f\xaf\x45\xdf\ \x0c\x24\x11\x2b\xa3\xa0\xcd\x96\x26\x8b\x22\x47\x71\xf0\xe4\xc9\ \x2e\x51\x30\x10\x02\x01\x6e\x9e\x63\x39\xd0\xbd\xae\x03\x85\x42\ \x71\xbf\xbe\x6e\x97\xed\xe9\xaf\x27\x19\x22\xa5\x32\x57\xf2\xf5\ \x37\x5f\x76\xac\xce\x55\xd6\x4d\x4d\x4d\x61\x87\x32\x48\xc4\x13\ \x10\x8b\xc5\x70\x51\x6a\x78\xbf\xd2\x14\xb2\x5a\x6c\x7b\xd1\x7b\ \x0b\x45\x92\x05\x0b\x2c\x36\xf3\x3e\x96\xe3\xb7\x76\x3b\x9c\xfb\ \xc3\xe1\xf0\x27\x5b\x3f\xad\x99\x5f\xbe\x97\xf8\xc2\x70\x04\xdb\ \xe3\x27\xda\xbe\x3f\x8c\xf9\x4b\xe8\xe5\x20\x95\x70\x38\x4f\x7b\ \x2b\x2a\x36\x0e\xe3\x51\x8e\xa2\xda\x4e\xb4\x7e\xb5\xab\xa1\x9e\ \xfc\xd4\xf1\x23\x67\x34\x1a\x3a\x30\x97\x0d\x69\x84\x40\x22\x96\ \x44\x95\x79\x79\xb9\x78\x5e\x96\x30\xce\x30\xab\x4b\x4b\xf5\xe4\ \xf2\xc8\x88\xeb\xca\x95\xd1\x23\x98\x8b\xa4\x03\x16\x45\xa3\xd1\ \x5f\x6a\x6a\xaa\x1d\x1a\x8d\xfa\x34\x25\xa0\x1e\xe2\x8c\xab\x47\ \x46\x2e\x0f\xb8\x5c\x17\xad\x58\x7f\x0c\x69\x06\x85\x12\x1c\x3a\ \x72\x70\x07\xc3\x24\xea\x70\x61\xd4\xed\x49\x6f\xff\x90\x67\xb8\ \x1b\xf3\x3e\x14\x49\x17\xfc\x1f\x0d\x85\x8c\x2f\xad\xa0\x3f\x12\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1b\x16\x19\x10\x1f\x1b\xdd\x16\x00\x00\x02\xba\x49\x44\ \x41\x54\x78\xda\x65\xcf\x5b\x68\xd5\x05\x00\xc7\xf1\xcf\xff\x7f\ \xce\xd9\xce\xce\xae\xe7\x6c\x47\xcb\xe6\x6a\x63\x8b\xda\x1c\x39\ \x2d\xa4\x07\x83\x12\x82\x2e\xf4\x12\x45\x58\x0f\x16\x12\x4a\xa3\ \x87\x32\x32\xc9\xb1\x28\xd4\x20\x7c\xeb\xa1\x7c\xac\x48\x09\x04\ \xe9\xa1\xcb\xc0\x20\x58\x5a\x8b\xf5\x92\x4c\xd2\x1c\x9c\xad\xe9\ \x6e\xed\x76\xb6\x73\xb6\x73\x0b\x1f\x6d\x9f\x87\xdf\xe3\x17\x7e\ \x01\x9b\x7d\x44\x43\x82\x7d\x31\x1e\x08\x88\x16\xc9\x14\xb8\xf8\ \x0e\x13\xfe\xe7\x8e\xc0\x71\x6a\x1b\x18\xa8\x09\xc3\x37\x5a\x77\ \xef\xae\x4d\xf7\xf4\x08\x63\x31\x8b\xe3\xe3\x32\xc3\xc3\xe5\x6c\ \x2e\x77\x7e\x9d\xb7\x8f\x91\xd9\x14\x18\x60\x4b\x13\xdf\xb7\x6e\ \xdf\xde\xd7\xd7\xdf\xaf\xae\xad\xed\x8e\xfa\xc6\xca\x8a\x2b\x67\ \xce\xb8\x36\x32\x32\xbf\xc6\x33\x47\xf9\x15\x02\x78\x96\xe8\xe3\ \x5c\x6c\x4b\x26\xf7\x3e\xd4\x7f\x58\xb4\x2e\x2e\x12\x06\x54\x02\ \x4a\x94\x4b\x14\x4b\x25\x01\xae\x9f\x3d\xeb\xaf\xb1\xb1\xd9\x25\ \xfa\x8e\xf3\x4f\x08\x8f\xf2\x6a\x92\xbd\xf7\xee\xe9\x93\x0b\xb3\ \xee\x7a\xe5\x80\x15\x59\x1b\xcb\xd7\x14\x96\xae\x9b\x9f\xbe\x61\ \xeb\xfe\xfd\xf2\xd5\xd5\x6e\xdf\x4a\x47\x22\xe9\x38\xa7\x10\x84\ \x88\x24\x38\x9c\x8c\x84\x62\x4d\x79\x85\xe6\xa4\x9a\x6d\xdb\x75\ \x1d\x3a\x66\xba\xb4\x2e\x33\x37\xae\xe3\xcd\x23\xea\x3b\x3b\xc5\ \x7b\xbb\x2d\x4d\x4e\x48\xd5\xd7\x4b\xf0\xe2\x7b\x34\x47\x0e\x90\ \xee\xe0\x93\x74\xbc\x12\xd4\xb7\xcc\xc8\xcf\x8c\xca\xdc\x5a\xd2\ \xbe\xf7\x69\x5b\x1e\xd9\xa7\x69\xe7\x63\x9a\xbb\xba\x5d\xfd\xe1\ \x82\xab\x83\x07\x35\x4c\x4f\x29\xce\x2c\xcb\x57\x44\xca\x5c\x0e\ \xb7\x71\x4f\x35\x41\xf4\xf6\x04\xeb\x5a\x12\x0b\x4a\xbf\x9d\xf4\ \xdd\xe9\x41\xf1\x86\xa4\x74\x57\x8f\x3f\x7f\xfa\xd1\xe8\xa9\x17\ \xb4\xb7\xcc\xaa\x6a\xcc\x8a\xd6\x52\x8d\x2a\x5a\xc3\x75\x8a\x55\ \x08\x4a\x94\x8b\x14\x4b\x2c\x16\x53\x7a\x9f\x7c\x0e\x40\xfb\xce\ \x87\xc5\x3b\x7a\x55\x1a\xa9\x6a\x26\x52\x43\x0c\x31\x0a\xe1\x39\ \x26\x42\x56\xd7\x73\xe4\x16\x19\x9f\x4f\xd9\x33\x30\xa4\x75\xc7\ \x2e\x99\xcb\xe7\x8d\x7e\x75\x54\x6d\x32\xe5\xa9\xd3\x43\x66\x1a\ \x77\x29\xc4\x29\x14\x08\xb0\xc6\x58\x38\xc9\x5a\x9e\x8b\x1b\x45\ \xe6\x26\xd9\xfa\xc4\xeb\xb6\x3e\xb8\xcb\xcd\x4b\xe7\xdd\xfa\xfa\ \x25\xd5\x57\x3f\x76\xed\x9b\x23\x6a\x1a\x53\x76\xbc\x76\xc2\xfc\ \x3c\x6b\xcb\x94\x99\xfa\x94\xdf\x23\x28\x77\x30\xdd\xc9\xcb\x1b\ \x79\xe1\xc2\x95\x61\x85\xd5\x29\x93\xe7\xde\x97\x88\x16\x44\xca\ \xe4\x6e\x5c\x92\x9d\xf8\x5b\xe6\xcb\x13\xb2\x23\x79\x61\x8e\x39\ \x3e\xfc\x82\x9f\x03\x40\xfc\x33\x06\xdb\x79\x77\x29\xa4\x92\xa4\ \xe6\x6e\xe2\x29\x62\x75\x04\x01\xb9\x59\xb2\x57\x48\xac\xb2\xc1\ \xd0\x01\x9e\x5f\x64\x25\x00\x40\xc3\xe7\x1c\xbb\x9f\xb7\x96\x89\ \xad\x86\x94\xab\x11\x12\x16\x88\x6f\xd0\x84\x65\x2e\x7c\xc0\xa1\ \x51\xa6\x51\x89\x00\x60\xfd\x5b\x7e\x89\x31\x7c\x1f\xf5\xc9\x8a\ \x74\x5d\x51\x22\x51\xa0\xae\x64\xb5\xcc\xe5\x3f\x18\x38\xc8\xc9\ \x9b\xfc\x8b\x0a\x04\x36\x0b\x91\x40\xaa\x9b\x96\x7a\xa2\x23\xcc\ \x94\x59\x40\x16\x25\x00\xf8\x0f\x80\xa0\xff\x98\xbb\x5a\x5b\x51\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x72\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xef\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x31\x6b\x53\x51\x14\xc7\x7f\x27\x2f\x89\ \xa6\x0d\x28\xc1\xa9\xa1\x06\xe9\x7b\x45\xc8\xe4\x62\x06\x6d\x88\ \x01\x41\x67\x87\x42\x21\x43\x11\x2c\xb4\x90\xb1\x4b\x97\x6e\x7e\ \x01\x97\x0c\x8f\x40\xf2\x01\xfa\x01\x32\x14\x27\x89\x38\x28\x2e\ \x82\x04\xb1\x84\x8a\xfa\x42\x30\x4f\x52\xdb\xdc\x77\x8f\x43\x43\ \x30\x6d\x9a\xc5\x03\xff\xe9\x9e\xfb\xbb\xe7\xfc\xf9\x5f\x51\x55\ \xfe\xa7\xe2\xf3\x0e\x6b\xb5\xda\x14\x7d\x6b\x6b\x4b\x2e\x35\xa9\ \xea\x44\x80\x00\x39\xa0\xec\xfb\xbe\x76\xbb\xdd\x29\xf9\xbe\xaf\ \x40\x79\xdc\x23\xaa\x7a\x09\x90\xcb\x66\xb3\x87\xae\xeb\x9a\xc1\ \x60\xa0\xb3\xe4\xba\xae\xc9\x66\xb3\x87\x40\x4e\x55\xcf\x57\x48\ \x24\x12\x2f\x4b\xa5\x52\x1a\x38\x48\xa5\x52\x6b\xed\x76\xdb\x69\ \x36\x9b\x33\xd7\x6a\xb7\xdb\x4e\xa1\x50\x58\x03\x56\x80\xaf\x71\ \x80\x52\xa9\xb4\x18\x86\x61\x39\x9d\x4e\xf7\x45\xc4\xc9\x64\x32\ \x6c\x6f\x6f\xcf\x04\x9c\x1a\x8b\x88\x38\x80\x33\x31\xb1\xd5\x6a\ \x55\x45\xe4\xd5\xd2\xd2\xd2\x33\x63\x0c\xc7\xc7\xc7\xd4\xeb\xf5\ \xa9\x8b\x9b\x9b\x9b\xbc\xed\x26\x78\x94\xbf\x31\xdb\x44\x20\x05\ \xbc\xf6\x3c\x4f\x7b\xbd\x9e\x5e\x2c\x6b\xad\x9e\x9d\x9d\x69\x7f\ \xf0\x5b\x3d\xcf\x53\xe0\xf1\xc4\x83\x31\xe8\x44\x44\x6a\xc6\x98\ \xe2\xee\xee\x2e\xb9\x5c\x8e\x58\x2c\x06\x80\xb5\x96\x4a\xa5\xc2\ \x9b\x23\x87\x87\xab\x8b\x53\x03\x5c\xcc\xc1\x4f\xc7\x71\x08\x82\ \x80\xe5\xe5\x65\xf6\xf6\xf6\x30\xc6\x4c\xf4\xf4\xa6\xe5\xd4\xd8\ \xb9\x00\x44\x84\x62\xb1\x48\xa3\xd1\xe0\xf3\xa7\x8f\xac\xac\xe6\ \xb1\xd6\xb2\xb1\xb1\xc1\xbb\x6f\xd7\x79\xe0\x2d\xcc\x07\x00\xec\ \xec\xec\xd0\xff\xfe\x05\xe9\x7f\xa0\x5a\xad\x21\x22\xa8\x2a\x4f\ \x6e\x59\xfe\x8c\xa2\xf9\x80\xe1\x70\x48\xa7\xd3\xe1\xd7\x89\xd0\ \xeb\xa7\x79\xf1\xbc\xc2\xdd\xfc\x3d\xd6\xd7\xd7\x79\xff\x63\x81\ \xfb\x77\xae\x31\x1c\x0e\xaf\x04\x44\x61\x18\x46\xc9\x64\xd2\xd9\ \xdf\xdf\xc7\x18\xc3\x68\x34\x22\x1e\x8f\x13\x45\x11\xe5\x8c\x25\ \x08\x02\xc2\x30\x8c\x80\xf3\x51\x2e\x46\x59\x44\x0e\x45\xc4\x88\ \x88\x5e\x21\x23\x22\x93\x28\xcb\xbf\xdf\x59\x44\x04\xb8\xcd\x79\ \x4c\x9d\x59\xfe\x8c\x5f\xee\x00\x47\xaa\xaa\x7f\x01\xf5\xbc\x25\ \x53\xe5\xdd\x28\x92\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\xac\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x29\x49\x44\ \x41\x54\x78\xda\x8d\x91\xbf\x4f\x13\x61\x1c\x87\x9f\xf7\xee\xfd\ \xd1\x16\x28\xad\x80\x0a\x8b\x89\xc1\x84\x41\x42\xc2\xe0\x64\xa2\ \xa6\xea\xe0\x22\x8b\x83\xc1\xc4\x18\xff\x01\x17\x9d\x8c\x8b\x31\ \x2e\x0c\x26\x0e\x2c\x98\xe8\x3f\x60\x5c\x4c\x1c\x30\xda\xd9\x01\ \x13\x14\xc2\x20\x1a\xa0\x44\x0c\xa5\xa5\x42\xef\xa0\x77\xf7\x7a\ \xb4\x56\x21\x5c\xa2\xcf\xf2\xe6\xfd\xde\x27\xcf\x7d\xbe\x77\xc2\ \x5a\x8b\xe8\x1b\x9e\x1a\xd0\x1b\xb7\x3d\xcf\xa3\x92\x3e\x05\xa7\ \xc7\xf9\x27\x7e\xed\xae\x2d\xde\x9f\x90\x34\x89\x06\xcf\x17\x2e\ \x72\xef\xc1\x63\xfe\x87\x17\xc5\x15\x9e\x4f\x2f\x8e\x01\xbf\x05\ \xeb\x73\xd5\xcf\xf3\xdd\x5c\xbb\x72\x81\xb0\x6f\x94\xcc\xc8\x0d\ \x1a\x61\xc4\x6e\x60\x69\xa3\xa5\x13\xdf\x23\x00\xc2\xa0\x81\x6a\ \xd4\xfb\x01\x24\x2d\x3e\xe6\x7a\xfb\xaf\x2e\x97\x77\xc8\x9a\x3c\ \xe9\xee\x3e\x2e\x0f\xe5\x18\x3d\x99\x25\x08\x2d\xd9\x8c\x4b\x67\ \x4a\x32\x35\xbd\xc2\x5c\xa9\x0e\xc0\xcf\xf2\xea\x32\x80\xc3\x3e\ \xa2\x20\xc0\x75\x1c\x72\x1d\x9a\x87\xd7\x07\x59\x58\xf5\x78\xfa\ \xa6\xc4\xa3\x97\x4b\x7c\xfd\xe1\xf3\xe4\xd6\x10\x19\xa3\x30\x4a\ \xa2\x94\xe2\xb0\x20\x0a\x71\x5d\x97\xb1\x33\xc7\xc8\x68\x27\x0e\ \xba\x18\xad\xd0\x71\xf8\xd5\x87\x0a\xc7\x73\x9a\x4b\x23\x3d\xcd\ \xbb\x54\x1a\x00\xc9\x3e\xac\xb5\xc8\xb8\xc1\xeb\x99\x2a\xbd\x5d\ \x9a\xd9\x25\x3f\x3e\x0d\x35\x2f\xa4\x30\x9c\x07\x01\x4b\xeb\x41\ \xab\x81\x4c\x10\x80\x8d\x1b\x38\x04\x91\xcb\xb3\xf7\x65\x00\x8c\ \x74\xe8\xe9\x92\xdc\x3c\x77\x34\x5e\x67\x8d\xb5\x5a\x44\x4a\xef\ \x35\x50\x87\x05\x0e\x20\xa5\x4b\x26\xa5\xd9\xcf\xf8\xd9\x3c\xd3\ \x9f\xb6\x78\x37\xef\x35\x9f\x09\x21\x50\xda\x24\x08\x9c\xbd\xbd\ \x35\x9d\xe9\x14\x6d\x3a\x8d\xc3\xc0\x11\xc3\xe4\xdb\x2a\xd9\x78\ \x1e\x01\x02\xd0\x09\x82\x66\xad\x5c\x3e\x4f\x47\xda\xd0\xe6\x44\ \xaf\x64\xb6\x14\xc6\x6f\x4e\x01\x96\xc8\x5a\x40\xa0\x75\xc2\x37\ \x50\xae\x24\x1d\x07\x33\xc6\xfc\x9d\x49\x87\x95\x8a\x25\xa5\x35\ \xae\xd8\x13\x08\x2c\x16\xa5\x92\x1a\x48\x89\x63\x2d\x69\xa3\x69\ \xd3\x88\xc0\x0a\x68\x97\x12\xc2\x36\x07\x2a\xa9\x81\x2b\x5d\x7c\ \xbf\x8e\x8c\x4f\x80\x0e\x03\x77\x0a\x82\x8d\x6d\x98\x2c\xda\x96\ \xe0\x4f\x36\xe1\x2f\x20\x1c\xfc\x1d\x9f\x9d\xdd\x46\x2b\x04\x94\ \x2a\x2a\x5e\x21\x8a\x67\xe1\xc1\xa8\x70\x0f\x08\xbe\x6d\xd5\xaa\ \x78\xdb\x9b\x94\x37\x36\x59\xf8\xb2\x48\x9b\x99\x79\x0e\xb1\x1b\ \x06\xd4\x3d\xef\x3b\xc0\x2f\xbb\xd9\xb9\x56\x43\x7d\x15\xe6\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x03\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x93\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x03\ \x11\x11\x11\x16\x16\x16\x25\x25\x24\x00\x00\x00\x00\x00\x00\x26\ \x26\x26\x28\x28\x28\x00\x00\x00\x13\x13\x13\xb9\xb9\xb8\xbc\xbc\ \xbb\xc2\xc3\xc2\xc4\xc4\xc3\xc5\xc6\xc4\xae\xae\xae\xaf\xaf\xaf\ \xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xd2\xd2\xd2\xd3\xd3\xd3\xd7\ \xd7\xd7\xd8\xd8\xd8\xdd\xde\xde\xe5\xe6\xe6\xe7\xe7\xe7\xe9\xe9\ \xe9\xef\xef\xef\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf7\xf7\ \xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xf9\xf9\xf9\ \xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\ \xfe\xff\xff\xff\x57\x14\x14\x76\x00\x00\x00\x13\x74\x52\x4e\x53\ \x00\x13\x18\x24\x27\x30\x31\x37\x4c\x4d\x65\x65\x83\x93\xf2\xf5\ \xf9\xfa\xfb\x76\x57\x39\x25\x00\x00\x00\xc3\x49\x44\x41\x54\x78\ \xda\x5d\x8e\x41\xb2\x02\x21\x0c\x44\x3b\xad\x0b\xe7\x02\xba\xf5\ \xfe\x57\xb2\xdc\x7c\xdd\xba\xb2\x14\x45\x49\x3e\xd3\x15\x4a\x1d\ \x58\x84\x3c\x9a\x17\x0c\xb6\xc1\xf7\x7a\x04\x00\xac\xb1\xd9\xbf\ \x09\x9a\x01\x36\xef\x43\x81\x30\xaa\x9b\xb1\x73\x06\x02\x06\x24\ \x66\x74\x4a\x62\x8e\xff\x60\x96\x7b\xb6\x66\xab\x69\xf6\x0b\xaf\ \xca\x76\xe1\xef\x18\xe4\xd2\x2f\x89\x2f\xfd\xc2\x46\xf9\xd9\xab\ \xc9\x2f\xac\x44\xf7\x73\xf1\x13\x8d\x21\x55\xd5\x8d\x34\xe4\xb7\ \xe4\x99\x16\x60\xd2\xbc\xe0\x38\x88\x6a\x5c\x28\x9d\x6c\xa4\xdd\ \x2b\x85\x87\x50\xb4\x95\x16\x1e\xfa\x37\x3e\xce\x76\x09\xf0\xf6\ \xea\xf8\x79\x04\x68\xa1\xb8\x97\xd8\xc5\xa9\xb4\x8e\xfd\x06\x4c\ \x82\x30\x6f\x16\xe7\x7b\xcd\x91\xc3\xef\xd5\xf9\x57\x9e\x18\x78\ \xc8\xe9\xd7\xf2\x52\x2f\xca\x29\x1f\x45\x7d\xab\xfe\x03\x9f\x0f\ \x4a\x81\xbc\x9d\xe1\x83\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\x84\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x35\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x3a\x42\x3a\x00\x00\x00\x2c\x32\x2c\ \x00\x00\x00\x20\x20\x20\x00\x00\x00\x15\x15\x12\x00\x00\x00\x05\ \x05\x05\x3d\x3e\x3c\x00\x00\x00\x3d\x3e\x3b\x63\x63\x63\x00\x00\ \x00\x01\x01\x01\x30\x31\x2f\x02\x02\x02\x24\x25\x24\x02\x02\x02\ \x18\x18\x17\x04\x04\x04\x0d\x0d\x0d\x01\x01\x01\x02\x02\x02\x04\ \x04\x04\x05\x05\x05\x06\x06\x06\x07\x07\x07\x08\x08\x08\x0c\x0c\ \x0c\x0d\x0d\x0d\x10\x10\x10\x14\x14\x13\x14\x14\x14\x19\x19\x19\ \x20\x20\x20\x21\x22\x21\x22\x22\x22\x27\x27\x26\x2f\x30\x2e\x31\ \x31\x31\x32\x33\x31\x37\x37\x37\x3a\x3a\x3a\x3d\x3e\x3b\x3f\x3f\ \x3f\x41\x41\x41\x41\x42\x3f\x44\x45\x43\x45\x45\x45\x47\x47\x47\ \x4a\x4a\x4a\x4a\x4b\x48\x4b\x4b\x4b\x4d\x4e\x4b\x4e\x4e\x4e\x4e\ \x4f\x4d\x50\x50\x50\x53\x53\x53\x54\x54\x54\x56\x56\x55\x56\x57\ \x54\x58\x59\x56\x59\x59\x59\x5b\x5b\x5b\x64\x64\x63\x64\x66\x62\ \x66\x68\x64\x68\x68\x68\x6a\x6a\x6a\x6a\x6b\x67\x71\x71\x71\x75\ \x75\x75\x79\x79\x79\x7a\x7a\x7a\x84\x84\x84\x86\x86\x86\x8a\x8a\ \x8a\x90\x90\x90\x9f\x9f\x9f\xac\xac\xac\xae\xae\xae\xb2\xb2\xb1\ \xb7\xb8\xb7\xc1\xc1\xc1\xc4\xc5\xc4\xc6\xc6\xc6\xcf\xd0\xcf\xd4\ \xd4\xd4\xde\xde\xde\xe1\xe1\xe1\xe7\xe7\xe7\xe9\xe9\xe9\xea\xea\ \xea\xed\xed\xed\xf0\xf0\xf0\xf3\xf3\xf3\xf4\xf4\xf4\xfa\xfa\xfa\ \xfb\xfb\xfb\xfc\xfc\xfc\x75\x4a\xf7\xaa\x00\x00\x00\x18\x74\x52\ \x4e\x53\x00\x1f\x1f\x2e\x2e\x3f\x3f\x54\x54\x65\x65\xb8\xca\xca\ \xd4\xe5\xe5\xe5\xf0\xf0\xf8\xf8\xfd\xfd\x0a\xa9\xac\x9a\x00\x00\ \x00\x9d\x49\x44\x41\x54\x18\x19\x9d\xc1\x03\x16\x02\x01\x00\x05\ \xc0\x9f\x6d\xdb\xb6\x6d\xdb\x76\x5b\x7b\xff\x23\x84\x3d\x40\xef\ \x35\x03\xfc\x89\x2e\x0a\x53\x04\xf8\x62\xca\xea\xe3\x41\xbf\x37\ \xec\xb4\x7d\xf8\x60\x2b\x8a\x33\x62\x52\x1f\x11\xf3\xa2\x1b\x6f\ \x5c\x55\xaa\xb6\x7f\xdc\x17\x04\x79\xc9\xd9\x01\xf0\x35\xd1\x4c\ \xb2\x74\x78\x3c\xc9\x5b\x21\x62\x04\x20\xf1\x47\x42\xc1\xe0\x94\ \x24\x9f\x53\x8f\x53\x0b\x80\xa7\xb6\x58\x6d\x89\xc3\xf5\x74\x3d\ \xe6\x74\x3a\xbc\x71\x94\x06\xfd\xf6\xbc\x29\xaf\xcf\x3b\x97\x1e\ \x1f\x2c\xb9\x23\xbe\xcc\xc7\x2a\xab\x46\xc0\x80\x2f\x86\xd4\x9b\ \xae\x36\xbb\xad\x6a\xd6\x04\x0a\x4d\x68\xa6\x88\xf1\xdb\x0b\x5c\ \x72\x1c\x18\xbd\x2b\x0f\x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x03\xb9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x36\x49\x44\ \x41\x54\x78\xda\x4d\x93\x3d\x6f\x1c\x55\x18\x46\xcf\xbd\x33\x3b\ \xbb\xb3\xb6\xd7\xf6\xee\x3a\xb6\x63\x3b\x61\x63\xb0\x85\x6d\xd6\ \x14\x88\x00\x12\x04\x51\x50\xd1\xc0\x0f\x08\x14\x34\x20\x21\x41\ \x9a\x54\x60\x5b\x08\x09\x29\x92\x05\x2d\x12\x7f\x81\x82\x16\x84\ \x28\x88\x42\x11\x05\x14\x1c\x1b\x30\x38\xfe\x5c\xaf\xe3\x8f\xd9\ \xaf\x99\xd9\x99\x3b\x73\x2f\x1b\x8a\xc8\xa7\x79\xaa\xf7\x3c\x7a\ \x8a\x57\x18\x63\x38\xcf\x58\x65\x65\xae\x54\x76\x97\x5d\xd7\x79\ \xc5\xf7\xe3\xa2\x10\x42\xa6\x3a\x3d\x0e\x83\xe8\x4e\xd4\x35\x9f\ \x1f\x6d\x2f\xff\xc1\x39\x9e\x08\xa6\xa6\x6e\x64\x87\x2e\x8e\xdf\ \x72\x73\xce\x07\x6f\xbc\x3e\x63\x37\x9b\x21\x27\x9e\x8f\x8a\x0d\ \x71\xac\x48\x8c\x66\x77\xc7\x4b\x5b\xcd\xce\x37\x56\xd4\xf9\x64\ \x6f\x6f\x35\x7a\x22\x78\x7c\x9c\x1d\x2a\xdf\x5d\x5c\x98\x98\x7f\ \xfb\x9d\x45\x71\x61\xa2\xc8\x8f\x3f\xfd\xc5\x6f\x1b\x47\x5c\x99\ \x1d\xc7\xf7\x9a\x10\x29\x94\x86\xed\x7f\x4f\xd8\x7b\x78\xfc\xb7\ \x15\xb5\xaa\x8f\x25\x12\x20\x3f\x3c\xfa\x45\x75\x7e\x72\xbe\xba\ \x38\x21\xc6\xa7\x4a\x64\x72\x0e\x99\x81\x3c\x93\x95\x32\xbd\x19\ \xd4\xbd\x98\x03\xaf\xcb\xfe\x71\x9b\x85\x17\xaf\x50\xbc\x50\x98\ \xe9\xca\xfc\xd7\x00\x72\x70\x6c\x65\x4e\x5a\xd6\x47\x0b\xcf\x8d\ \x8a\xe9\xd9\x51\x0a\x43\x79\xc2\xd4\xd0\xe8\xa6\xcc\xcc\x4f\xd2\ \x8a\x63\x9a\xb1\x22\x10\x92\x47\x6d\xc5\xd6\x81\x47\x90\xa4\x38\ \xd9\xdc\xfb\x83\xa3\xcb\x55\x59\xe8\xb3\x3f\x9c\xae\x0c\x3b\x1a\ \xc9\x33\x33\x63\xc4\x1a\x52\x04\x2f\x5f\xad\xf4\x9a\x43\x6a\x9d\ \x94\xd4\x71\x68\x26\x1a\xe9\xf6\x32\xd4\x4c\x3f\x5f\x61\xac\x52\ \xb6\x1c\x47\x7f\x2a\x8d\xe1\xda\xe1\x23\x9f\xed\x7a\x9b\x4e\xa8\ \x48\xb4\xc1\xcd\x65\xd0\x68\xfc\x28\xc2\x38\x36\xca\xc9\x20\x5c\ \x17\xe3\xe6\x48\x84\xee\x4d\xe8\xa7\x3c\x59\xc2\xb2\xac\xab\xb6\ \x8a\xf5\x14\x19\xc1\xda\xd6\x09\x5b\xfb\x0d\xea\xad\x98\x91\x91\ \x3e\x0e\xce\x42\x46\x47\x0b\xcc\x5b\x36\x0f\x76\xcf\xd0\x81\xc2\ \xb6\x21\x6f\x65\xc9\x17\x06\x88\x83\x08\xa5\x28\xdb\x18\x61\x82\ \x50\x91\xeb\x77\xb9\x7d\xbf\xc6\x4b\x2f\x5c\xe6\xc0\x0b\xd9\x3c\ \xeb\xe2\x45\x09\x5d\xa5\xff\x6f\x16\x58\x20\x05\x41\xac\x48\x75\ \x42\x62\x0c\x02\x81\x2d\xa4\xd8\x49\x94\x19\x8a\x52\x43\xed\x2c\ \xe0\xbb\x5f\x77\xa8\x3c\x55\xa6\x91\x82\x2f\x2d\x54\xc6\x22\x3b\ \x20\x31\x52\xa0\x4d\x4a\x9f\x23\x59\xdb\xa8\x13\xd5\x4e\xd0\xa9\ \x3e\xb4\x05\xf2\xe7\x34\x4c\x17\x07\x1c\x8b\x66\x98\x30\x52\xb2\ \xd9\x38\x0e\xf8\xf8\xad\x67\xe9\x28\xc3\x2f\x3b\x4d\xfe\x3c\x68\ \xd2\x35\x82\x62\xd6\xc2\x3b\x6c\x10\xf8\x3e\x69\x3b\x22\xea\xaa\ \x3b\x56\x14\xbe\xba\x8b\x31\xef\xe5\x4a\x39\xa7\x6b\x49\xfa\x86\ \xfb\xa9\xce\x8e\xb0\x70\xa9\x08\x96\x45\xa9\x90\xa3\x5c\xc8\x72\ \xa9\xe8\x52\x7b\xd4\xa6\xd9\x08\x48\x1a\x3e\xde\x86\x17\x87\x0d\ \x79\x5d\xc6\xf1\xd2\xba\x52\xe6\x96\x5f\x0b\x74\xd6\xb6\x68\x77\ \xba\x6c\xd6\x3b\xec\xb7\x42\x86\xf3\x36\x63\x83\x59\xaa\x17\x07\ \xf0\x13\x68\x07\x11\xb6\xd1\xb4\xb6\x5a\x26\x68\xc5\x5f\x29\xb5\ \xb4\x26\x01\x5a\x9e\xf7\x65\xa3\xd6\xb9\xdb\xde\x38\xd5\x39\xd7\ \x21\x50\x29\xf5\x76\xcc\x78\x7f\x86\x91\x9e\x24\x4e\x52\x52\x93\ \x20\xa4\xc5\xc9\xbd\xba\x69\x6d\x37\x7f\x8f\xfc\xce\x67\x00\x36\ \x80\x31\xab\x91\x10\x37\x5e\xd3\x9b\xdc\x6c\x1f\xdd\xbb\x79\xf9\ \xda\xd3\xf9\xa3\xe1\x3e\xb6\x7a\xcd\xa7\x71\xca\x83\xfb\x75\xd6\ \x6f\x3f\xe4\x9f\xef\xd7\xa2\xf0\xd4\x5f\x8d\x3a\xed\x15\x63\xce\ \x3d\xd3\x79\x84\x58\x99\xcb\xe5\x79\x37\x93\xb5\xde\x94\x99\x4c\ \x25\x31\x5a\x48\xad\x77\xa2\x20\xfe\x21\x0e\xe5\xb7\xc6\x2c\xad\ \x73\x8e\xff\x00\x18\x8f\xb3\xf0\x58\xa2\x3f\xb8\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x20\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x9d\x49\x44\ \x41\x54\x78\xda\x75\x92\xcf\x6b\x13\x41\x14\xc7\xdf\x64\x37\x3f\ \xba\x35\x4d\xda\x6a\x6d\x6b\x1b\xa3\x20\xb5\x56\x42\x7f\x80\x7a\ \x10\x44\x41\x0a\x22\xa8\x88\x78\x11\x45\xc4\x93\x47\x8b\xfe\x0f\ \xde\x3d\x78\xf3\x20\x78\x28\x7a\xd0\x22\xa2\x78\x13\x3c\x08\xa2\ \x56\x44\xaa\xb5\x87\x96\x34\x69\x77\x93\x34\xfb\x7b\x77\x66\x9e\ \x6f\x77\x21\xe4\x60\x67\xf3\xf8\xce\xbc\x79\x9f\x2f\xdf\xc0\x30\ \x44\x84\xff\xad\xbb\xef\xe7\x94\x7c\x66\xf8\xd9\xb9\xd2\xcd\x2b\ \x1e\xf7\xd3\x1b\xd6\x1f\xfd\xeb\xd6\xd2\xad\xa7\xf3\x5f\xde\x76\ \xcf\xa9\xb0\xcb\x0a\x04\xde\xbb\x74\xe4\xc1\xb5\x72\xfe\x90\x62\ \x85\x16\x8c\x17\x26\x87\x7e\xb7\x56\x5e\xd2\x95\xb6\xab\xc1\x8d\ \x37\xb3\x39\xa4\x1e\x22\x20\x69\xff\xc7\xda\x87\xb0\x2f\x73\x39\ \x32\xc0\x86\x6f\xb0\x75\x73\xd5\xb8\xfa\x6a\x66\x92\x2e\x37\xe9\ \x1e\x49\xbd\xce\x5f\xb8\xbe\x34\xab\x1d\xec\xaf\x6c\x4d\x0c\xcc\ \xf4\x0a\xc9\x61\x74\x4f\x39\x1c\xed\x2d\x29\xad\xb0\x95\xb2\x29\ \x81\xcb\x1d\x60\x14\xac\xe9\x6e\xa7\x9a\xbe\xa1\xda\xdc\x84\x15\ \x63\xd9\x50\xbb\x22\x17\xca\x85\xa3\xda\x99\x03\xf3\x60\x71\x13\ \x6d\x6e\xa5\x8d\xa0\x1e\xed\xc1\xe1\x16\xd0\x39\xee\xd9\x82\xf6\ \x60\xa1\x43\xa5\xa8\xb9\xc1\x2e\x03\xd0\x54\x55\x91\xad\x50\x4f\ \x39\x22\x02\xec\x18\x24\x00\xdd\xe8\x4c\xe5\x48\x9b\xca\x8a\x2b\ \x04\x0f\x3c\x74\x21\x36\x38\xbf\x38\x53\x41\x80\x52\x2e\x9d\xe5\ \xa6\x68\x64\x1c\x6e\x92\x01\x0d\x92\x89\x2b\x2d\x46\x86\xa4\xb1\ \x01\xfa\x04\x06\x40\xa9\xa0\x0d\x56\x48\x06\x67\x17\xa7\x17\xee\ \x9f\x7c\xf8\xe8\x47\xe3\x3b\x94\xfa\xc6\xb1\xcd\x75\xe6\xd2\x60\ \x04\xb8\x18\x43\x91\x12\xe6\xd0\xb7\x03\x66\xb8\xe3\x57\x75\x3f\ \xdb\xdb\x03\x6e\x10\x20\x53\x8f\x0f\x4f\x2d\xec\xcd\x17\xd8\x5c\ \xcf\x14\xb6\x44\x8d\x79\x04\x53\x81\x8d\x26\x58\xb2\x05\x6d\x61\ \x90\x89\x09\xbe\x70\x00\x18\x62\x75\x3b\x84\x8d\x7a\x38\x86\x00\ \x65\x44\x58\x57\x99\x22\x06\x3f\xb7\x5f\x4b\x47\xb4\xc1\xe3\x36\ \xf3\xa5\x0b\x01\x05\x15\x22\x04\x22\x00\x30\x91\x2c\x4b\x45\x5b\ \xe6\xf9\x41\x7d\xf9\xf6\xb7\x2a\x75\xa3\x02\xf5\x67\xed\x6f\x3d\ \x9d\xcd\x8f\x48\x94\x34\xcc\xa2\x61\xd2\x14\x10\x12\xc3\xdd\x26\ \x8c\x12\xa4\x99\x18\x2d\x3f\xa9\x9c\xa0\xd6\x31\x44\x78\xa1\x68\ \x17\x86\x06\x40\xc2\xa9\x6a\x8b\x2b\x59\x55\x71\x25\x42\x3a\xe4\ \x00\x5c\x30\x16\x69\x28\x00\x02\x2a\x1e\x2b\x42\x21\xa7\xf2\xb4\ \x92\xba\x73\x78\x48\xbb\xb8\xa6\xfb\x8d\xf8\x21\x91\xe3\x69\x92\ \xe2\xf4\x78\xe1\x79\xa1\x27\x15\x3f\x55\x89\x94\x39\x5a\x88\x9d\ \x60\xa4\x74\x48\x02\x45\xdc\xa7\x55\xf3\x5d\xe7\x25\x8e\x3c\xae\ \x8c\x4d\xec\x2f\xae\x15\x35\x19\x83\x92\x31\x16\x4f\x26\x4c\x62\ \x40\xd5\x65\x80\xbf\x6a\x4e\xb3\xfb\x21\x79\x21\x85\x6b\xba\x76\ \xe2\x48\x48\x07\x60\x98\x68\x72\xa0\x5f\x92\xcc\x97\x90\xef\x18\ \xf8\x02\xad\x15\x5d\xd7\x33\x2a\xdb\x17\x81\x28\x93\xdc\xf1\x3e\ \x99\xef\x2c\x89\x18\x25\x60\x1e\x87\xcd\x7f\xa4\xf5\xbb\xd8\x41\ \x74\xba\x21\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ \x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ \x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x00\x06\x62\x4b\ \x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\xf7\xdc\x00\x00\x04\x65\ \x49\x44\x41\x54\x78\xda\x8d\xcf\x79\x50\xd4\x75\x1c\xc6\xf1\x67\ \xf7\xa7\xb0\xe1\x45\x5a\x93\x4d\xcc\x28\x96\x39\x66\x76\x98\xa3\ \x64\x5a\x0e\x96\x93\x84\x69\x08\x98\x14\xac\xb5\x6e\xb0\x1c\x0a\ \x2c\xc7\x98\xa2\x89\x72\xc4\xb5\xc8\xb1\x18\x32\xb9\x6c\x2c\x9a\ \x0a\xc8\x86\x4e\xa9\x78\x24\x88\xa9\xa5\x90\x93\x17\xe7\x10\x53\ \x99\x5a\x33\x3a\x32\xab\xe8\x27\x9e\xd9\xa5\xa6\x1c\x27\xde\xaf\ \x3f\x9e\xf9\xfd\xf3\xfd\x7e\x7f\x18\x6c\xfa\x4a\x02\x52\x2f\x13\ \x94\xd6\x33\x6d\xc6\x76\x03\x90\x5f\xb7\x79\xc2\xe6\x3b\x2a\x7d\ \x75\x76\x75\xe1\x1e\x2f\x60\x59\xeb\xb2\xcb\x21\x93\x17\xa7\x7d\ \xe2\xbf\xc1\x9a\xba\xe5\x6c\x7d\x5e\x8a\xc9\xc7\x64\x12\x29\xb1\ \x97\xac\x2c\x59\xf8\xe1\x81\xa2\x33\x45\x61\x45\x13\x01\xb3\xd9\ \x1c\x6f\x5e\x3e\x34\x08\x83\x2d\x5a\x4b\x40\x9c\x9e\x80\xc4\xb4\ \xc4\xf8\xc4\x60\x75\x44\x8c\x39\x66\x51\x74\x3b\xa0\xef\xd2\xef\ \xd7\x27\x6a\x37\x5a\x22\x2d\x75\xe5\x33\x44\xaa\x2e\xd4\x64\xd7\ \x1a\x45\x76\xed\xd8\x3d\x6b\xf7\x7b\x1f\xf7\x26\xdc\x4e\xfa\x25\ \xf9\x2d\xc0\x14\x9e\x3f\x3f\xbf\x4c\x59\x96\x9b\x9c\xf3\x6e\xf6\ \x55\x78\x62\xb0\xe9\xba\x09\x98\x3d\x9e\xd0\x84\x7f\x35\x22\xcc\ \x56\x6e\xb3\xda\x2a\xda\x7f\x6e\xcb\x6e\x4b\x6f\x4b\x11\x31\x4f\ \x2f\xee\x2d\x3e\x51\x72\xd4\xd4\xdc\x7f\x61\x22\x90\xf3\x5a\xce\ \x91\x9c\xbb\x43\x7b\xe0\xaa\x74\x6f\xe9\x9a\xd2\x30\x5d\xce\xff\ \xff\xf9\x12\x02\x12\x3a\x08\x08\x9f\x49\x6a\xf7\x05\xdf\x10\xf0\ \xce\xe1\x7e\x47\xa6\x4f\x3a\xd9\x42\xf7\xd6\x3b\x62\x1c\x2b\x1d\ \xb1\x22\x96\x2e\xcb\xef\x96\x1b\x35\x5b\x45\x18\x90\x1e\x9c\x79\ \x3d\x6b\x0a\x50\x7d\xab\x26\xbd\xa6\x62\x4d\xd2\xe6\xdc\x82\xf9\ \x05\xdb\x44\xf0\xa0\x62\x83\x08\x30\x5c\x26\xa8\x93\x84\x80\xa4\ \x40\x52\x55\xbe\xec\x43\x80\xee\x92\xee\xa2\xee\xa2\xb7\xdb\xa1\ \x0e\xea\x2d\xb8\x56\x45\x22\x57\x62\xaf\xac\xba\xb2\x4a\xc4\x5a\ \x62\xb5\x5a\x77\xd6\xb4\x9a\x37\x98\xe7\x98\x3d\xb6\x98\xab\x8b\ \xf7\xbc\x69\x7f\x4e\x24\xf5\xf9\x8d\x6b\x37\xc5\x9f\x5a\x80\xff\ \x96\x90\x41\x80\x61\x2b\x41\x1d\x18\x43\x18\xc8\xbb\xa1\x8b\x94\ \xb4\x86\xab\x04\x54\x1c\xa5\xe4\x25\x0d\xaf\x92\x48\xe7\x2c\xba\ \xab\xb9\x96\xdf\xcf\x24\x8f\x39\xac\x8e\x2f\x1c\x36\x29\x6c\xed\ \x6a\x6d\x6b\xfd\x51\xa4\x6c\x74\x99\xae\xec\xba\x48\x88\x6f\x88\ \x5f\xc8\xe7\x41\xa3\x31\x50\xaa\x0f\x01\xc6\x29\x04\x55\x70\x3d\ \x61\xa0\x31\x8d\x0b\x48\xa9\x3c\xed\x4b\xc0\xee\x3c\x4a\x38\x5c\ \x7b\x94\x44\xba\x27\xd1\xdd\xf6\x13\x0f\x53\x9f\xb2\xf7\x4f\xea\ \xd5\x9d\x8a\xec\x67\x10\xb1\x65\xd9\xb2\x6d\xb9\xbf\xce\xd1\x9e\ \xd3\x6e\xd7\xbe\xbf\x7c\x42\x9a\x57\x5a\x4f\x46\x00\x80\xf4\xf5\ \x04\xc4\x97\x12\x54\x0b\xbd\x08\x03\x69\xbe\x2d\x26\x65\x5f\xd3\ \xdb\x04\x54\x77\x52\xec\x21\xbb\x86\x44\x3a\x03\xe8\x76\x61\xe3\ \x26\x12\x89\x78\x89\x56\x2f\x0e\x5d\x47\x63\xb7\x07\x5d\xa0\x99\ \xb9\x23\x8f\xd0\xa8\xe3\x9e\x3f\x78\x9e\xf7\xbc\x04\x04\xdc\x0e\ \x68\x0f\x38\xa7\x3a\x08\x43\x1b\x41\xe5\x93\x40\x80\x08\x03\xf6\ \x2f\x25\xe5\xd8\xe1\x60\x02\xec\x79\x14\xdd\x68\xf7\x27\x91\x8e\ \x7b\x74\xc7\xfd\xf8\x6f\x24\x12\x6e\xa1\xa4\x4f\x6b\x73\x09\x38\ \x51\x4a\xaa\x8c\x81\xf3\xea\xfd\xea\x03\xeb\x57\x60\xb5\xb1\xcc\ \x98\x69\x34\xa8\x57\xc1\x99\x27\xdc\xcf\xd2\x3f\x17\xef\x69\x21\ \xa5\xb9\xde\x8d\x80\xba\x24\x8a\xb8\x56\x3b\x99\x44\xda\xbf\xa7\ \x3b\xa9\x4d\xfe\x24\x12\xf1\x22\xc5\xfb\x7c\x19\x4a\xc0\x67\x6f\ \x90\x92\x17\xfd\x15\xa9\x0a\xa2\x23\x48\x3d\xd5\xf7\x6b\x42\x4b\ \x68\x0a\x01\x2b\x1c\x84\x21\x7f\x5f\x6c\x0d\x25\xe5\x9e\xbd\x87\ \x80\xaa\x0e\xd2\x7b\xee\x7a\x96\x44\x2e\x5e\xa5\x3e\xcd\x77\x4f\ \x90\x48\xd4\x0c\x8a\xf9\x63\xc7\x0d\x02\xcc\x3f\x91\x52\x0b\x67\ \xcf\x8c\x6b\x26\x60\xda\x5c\x82\xfa\x15\x7f\xc2\xfd\xe5\xe4\x91\ \x12\x57\x11\x46\xc0\xb6\xed\xf4\x41\xa0\xa5\x98\x44\x5a\x42\xa8\ \xaf\xe8\x78\x38\x89\x24\xcc\x21\xc3\xc9\xca\xb1\x04\x98\x4f\x93\ \x72\x10\xce\xbc\x1e\x5d\x44\xc0\xd4\x06\x82\x7a\xf6\x70\xc2\x83\ \x1b\x38\x28\x37\x8e\x22\x47\x14\x66\x93\x48\x53\x1d\xf5\x35\x1e\ \xf2\x23\x91\x38\x23\x7d\x34\x6c\xeb\xeb\x04\x64\x54\xd3\x90\x27\ \xe1\xcc\x0f\x99\xa0\x79\x38\x03\xf2\x85\xb3\x17\x5c\xeb\xed\xda\ \x47\x5c\xab\x71\xad\x1a\xfa\x0e\x9a\x57\xbf\xf6\x18\xd9\xbc\xf7\ \x65\xd1\xcd\xb9\xf6\x5e\x12\x89\x3c\x40\x5a\x53\x66\x0f\x01\x55\ \x9d\xa4\x0e\xe8\x1c\x43\x80\x08\xbb\x6f\x07\xdf\xf2\x9d\x94\xac\ \x89\xca\x22\x20\x45\x4b\x95\xa7\xc3\xca\x29\x6e\x54\xcd\x42\x02\ \x9e\x6e\xa2\x91\x51\x00\xf3\x28\xc2\x53\xe4\x31\x11\x0a\x3d\x34\ \x0f\x60\xee\x7d\xce\x75\x4b\x73\xee\x90\x5b\xce\x55\x62\x9c\xab\ \x1e\x06\x67\xdd\xae\x9d\x8a\xa8\x59\x64\xea\xf6\x5b\x47\xeb\x4e\ \x4e\xb9\x49\x4b\x7d\x01\x36\xae\xd9\x6d\x03\xf9\x34\x01\x6c\x66\ \x39\x3c\x68\x86\x07\xc0\xa6\x85\xba\xce\x59\xe2\xdc\x49\xae\xef\ \xf1\xe7\x9d\xfb\xb8\xeb\x41\x63\x34\xce\x1d\xee\xef\xdc\xa1\xae\ \x87\xa9\x96\xfe\x05\xce\x1a\x01\x31\x96\x9d\x3e\xc8\x00\x00\x00\ \x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x00\x78\ \xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\xcb\x2f\ \x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xb6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\xd8\x00\x00\ \x09\xd8\x01\xc7\xa0\xb9\xad\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x02\x03\x33\x56\x94\xc9\x81\x00\x00\x02\x43\x49\x44\ \x41\x54\x38\xcb\xdd\x93\x3d\x4c\x53\x61\x18\x85\xcf\x77\xfb\x7f\ \xb9\x1f\x15\xac\x15\xa3\xb5\xd8\x48\xb0\x4a\x8c\xb5\x0d\x90\xd0\ \x51\x01\xc1\x05\x76\x5c\xcb\xaa\x24\x4e\x26\x6a\x20\x18\x63\xc4\ \x98\x98\x68\x4c\xea\xe0\x62\x8c\x42\x1d\x41\x5d\xd4\x68\xa4\x8d\ \xd2\x00\x2d\x08\x8a\xa4\x31\x42\x69\x4b\xfa\xdd\x1f\x5b\xfa\x73\ \x3f\x27\xbb\xe8\xe0\x68\x3c\xd3\x93\xf7\xbc\xe7\x9d\xde\x03\xfc\ \x5f\xba\x75\x73\xa2\xc6\xc1\xae\x60\x8d\x1d\x10\x6b\x3c\x36\x3a\ \xfa\xe7\x70\x67\x47\x27\x00\x60\xf4\xca\xd5\x97\x3d\xa7\xbb\x15\ \xce\x39\xf9\xe5\xad\x26\x97\x6d\x7d\xbd\x67\xd4\x6b\xe3\xe3\x8f\ \x00\xa0\xc3\x1f\xa8\xe5\x6a\x4b\x23\x17\x46\x9a\x04\x42\xce\x33\ \xc6\x2e\xce\x2f\xcc\xa3\x58\x2c\x9e\xe2\x44\xb0\xba\xdd\xcd\xa5\ \xb5\xd5\x95\x3a\x4a\xa5\x88\xef\x84\x0f\xbb\x1d\x8e\xb1\x03\x2e\ \xd7\xed\xd0\x70\x28\x5b\x3b\x10\x79\x3a\xe9\xe5\x9c\x27\xa7\x22\ \x11\xa4\x52\x29\x48\x54\x42\x76\x2b\x03\x97\xbb\x19\x12\xa5\x58\ \x4a\x2c\xc2\xe1\x70\x40\x51\x14\xf8\xfd\x7e\x9c\xed\xef\x47\x55\ \xd7\x3d\xdd\xbd\x3d\x5f\x05\x00\x60\xb2\x72\x63\x2e\x1e\xc7\xfa\ \xfa\x3a\x32\x99\x0c\x58\x9e\xc1\x60\x32\xc1\xe7\xf3\xfd\x38\xea\ \x3d\x52\x00\x21\x90\x65\x19\x1c\x80\x68\xb3\x21\xcf\x18\xcc\x66\ \xd3\x38\x21\x04\x86\xe5\x44\xf2\xf8\xf4\x8b\xe7\x13\x46\x81\xa3\ \x58\xda\x41\x22\x91\x04\x11\x04\x50\xa9\x0e\xf1\xb9\xb9\x99\xc5\ \x85\x85\x9c\x28\x8a\x6e\x8b\xc5\x02\x55\x51\x40\xeb\x29\x54\xc6\ \x90\x58\xfa\xd4\xf6\x20\x1c\x7e\x66\x88\x46\xa3\x77\x77\x56\x67\ \xbd\x56\x35\x8d\xd6\x43\x07\x91\x65\x2a\x44\xba\x0b\x43\x43\xe7\ \x10\x8f\xc7\x63\x66\x8b\x85\x0f\x0f\x87\x5a\x37\xbe\x6f\x20\xf7\ \x6d\x0d\x96\xec\x17\xec\x31\x95\x61\x97\x44\x5c\xbe\x3e\xe1\x24\ \xed\x5e\x4f\xb5\x5d\xd2\x84\xc3\x4d\x0d\xd0\x74\x01\x9f\xb7\x0b\ \x78\xb5\x65\x9c\xd9\xbf\xd7\x39\x05\x42\x1e\xeb\xd5\xaa\xa1\xaa\ \xeb\x03\xb9\x7c\x7e\xf0\x98\x55\xeb\xf3\xed\x13\xd1\x48\x45\x64\ \x65\x0d\x93\xcb\x0a\x17\x58\x99\xc4\x3c\x8d\x22\xda\x5d\x0d\x68\ \x91\x08\x32\x05\x8e\x52\xa9\x74\xe7\xcd\xbb\xb7\xf7\x55\x55\x65\ \xaa\xa6\x6d\xbf\x8f\xce\x86\x65\x59\xb9\xc7\x4d\x56\xb4\xd8\x8d\ \x38\xe9\xb4\xa2\x51\x28\xa3\x40\xcc\x31\x03\xa5\xf4\x49\x4a\xaf\ \x6f\x2b\x56\x2a\x9e\x35\xde\x90\xcb\xd4\xb9\x2e\x7d\xfc\x10\x7b\ \x08\x00\x9b\xe9\x4d\xa4\xb7\xd2\x00\x00\x4d\x55\x56\xec\xee\x56\ \xb9\x62\xb4\xf9\x73\x65\x83\xf5\xb5\x6a\x9f\x56\x2a\xfa\x00\x02\ \x81\xc0\x5f\x7d\x69\xbd\x24\xfd\x36\xeb\x0a\x06\xff\x81\xfe\xfc\ \x04\x8d\x26\xf3\x15\x69\x9b\x41\x00\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x11\x87\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x08\ \x08\x13\x39\x22\xd4\xa0\x65\xa6\x00\x00\x11\x26\x49\x44\x41\x54\ \x78\xda\xed\x5a\x7b\x74\x14\x55\x9a\xff\xdd\x7b\xab\xbb\xd3\xdd\ \xd5\x9d\xee\xbc\x3b\x49\x27\x21\x21\x21\x3c\xc2\x23\x28\xa2\x02\ \xa2\xa8\x20\xa0\xa3\xa3\x8e\xe8\x8c\x0f\xc4\x27\x3b\xbb\xb3\xee\ \x51\x54\x9c\xb3\xeb\xee\x0e\xc7\x23\xba\xc3\xcc\xce\x71\xc7\x07\ \x0e\x3a\xea\x8c\xaf\xf1\x81\x22\xca\x43\x65\x40\x5c\x79\x18\x20\ \x26\x82\x80\x26\x04\x42\xc8\xb3\xd3\xaf\xaa\xae\xae\xaa\xbb\x7f\ \x54\x77\xa7\xba\x13\x10\x59\xd4\x75\x36\xdf\x39\xf7\x54\x75\x3d\ \xba\xfb\xfb\x7d\xbf\xef\xf7\x7d\xf7\x56\x01\xc3\x36\x6c\xc3\x36\ \x6c\xc3\x36\x6c\xc3\x36\x6c\xff\x4f\x8d\x7c\x1f\x3f\x7a\xcb\xaa\ \x8f\xac\x7d\xbd\xdd\xae\x98\xa2\x5a\xc3\xd1\xb0\x42\xed\x62\xf4\ \xfd\xa5\x57\x4a\x7f\x13\x00\x38\xaf\x5b\x8e\xc8\x9f\x96\x00\x00\ \xfc\xff\xb0\xca\x19\x08\x85\xcf\x93\x95\xf8\xb9\x16\x46\xeb\xa7\ \x54\x97\x8c\xab\xf3\xe7\x95\x4a\x31\x05\x21\x29\x86\xa8\x1c\x43\ \x44\x8a\x41\x92\x65\xc8\x31\x05\xb2\x12\xfb\x54\x89\x29\xaf\x3b\ \xdd\xee\x15\x7b\x56\xdc\x19\xf9\xc1\x00\xe0\x5a\xb0\x0c\xa1\x17\ \x1f\x00\x00\xb8\xaf\x7f\xe4\xb2\x48\x44\xbe\x94\x5a\x84\xf9\x71\ \x55\x2f\x02\x61\x00\xa1\x00\x25\x89\x9f\x23\x18\xed\xcf\xc7\xd9\ \x35\x3e\x28\x71\x15\x11\x59\x41\x54\x8e\x21\x2a\x49\x88\xca\x32\ \xa2\x51\x09\x92\x2c\x83\x73\x2c\x6b\x5d\x75\xdf\x2f\x2b\x6e\x79\ \x04\x2d\x2b\xef\xf9\xbf\x07\x80\xfd\xb2\x25\x90\x56\x2f\x07\x00\ \x38\x7e\xfc\xcf\xd7\xc7\x94\xf8\xcd\x9c\xd2\x99\x3a\x27\x00\x63\ \x00\x65\x00\x11\x12\xce\x27\x06\x61\x00\x21\xc6\x31\x00\xb3\x27\ \x54\xa0\xd4\xeb\x44\x30\x2a\x23\x22\xc7\x10\x95\x62\x88\xca\x32\ \x24\x29\x8a\xa8\x24\x41\x89\xc5\xbb\x99\x45\xf8\x51\xcb\xca\x7b\ \xb6\x7e\x5b\x40\xb0\x6f\x7a\x83\x78\xd9\x3d\x50\xf6\x6d\x85\x7d\ \xcc\x79\x67\x6a\x65\xf5\x2b\x50\x35\xf5\x95\x78\x2c\x76\x05\x07\ \x2a\x38\x27\x03\x91\x26\xd4\xd8\x52\x82\x01\x16\xd0\x01\x00\x28\ \xc3\xc1\x8e\x20\x82\x8a\x8a\xd1\x25\xb9\xa0\x94\x81\x30\x06\xc6\ \x18\x28\x13\x40\x99\x00\x50\xe2\x50\x14\x65\x91\x7b\xe2\xac\xba\ \x22\x5f\xd1\x9b\x47\x36\xbf\xa1\x9d\x6e\x00\xe8\x49\x47\x7c\xce\ \xdf\x03\x00\x14\x39\x72\x19\xbb\xe0\xf6\x7d\xa1\x9e\xae\x6d\x5a\ \x5c\xf9\x09\xd7\x34\x00\x1c\xe0\x3a\xc0\x35\x40\xd7\x01\xce\x8d\ \x2d\xb8\xb1\x4f\xb8\x01\x06\x47\x2a\x0d\x40\x08\x20\x30\x1c\xec\ \x8a\xe0\x99\xad\x07\x11\xe3\x04\x39\x2e\x11\x2e\x97\x13\x6e\x97\ \x2b\x31\xdc\x10\xdd\x1e\x08\x56\xdb\x95\x6d\x47\x8e\xca\xc5\x0b\ \x97\xdf\x01\x00\xe5\xb7\xad\xf8\xee\x00\xb0\xce\x5c\x04\x00\xe0\ \xba\x36\x99\x4e\xbf\xe9\x0b\x25\x1c\x7a\x53\x8b\x2b\x35\x80\x6e\ \x38\xad\xeb\x80\x0e\xc3\x51\xce\x91\x3a\x9e\x02\xc5\x74\x8e\xf0\ \x84\xff\x24\x6d\xc4\x75\xe0\xb5\x1d\xad\x68\x68\xef\x47\x9e\xdb\ \x05\x97\x28\xc2\xe5\x12\xe1\x72\x67\xc3\xed\x76\xc3\xe5\xce\x86\ \xd3\x29\x02\xc0\xef\x0b\x6e\x78\xe8\x0b\x4a\x31\x0a\x00\x8a\x6f\ \x7e\xe4\xdb\xd5\x00\xeb\xf9\x8b\xa0\x7c\xf0\x34\xd8\xb4\xeb\x5f\ \xd0\x14\xe5\x3a\xb0\x04\x95\x09\x33\xf2\x9c\x24\x06\x13\x8c\x9c\ \xa7\x0c\xa0\x19\xfb\x82\x60\x68\x01\x4b\xde\x93\xd8\x27\xd4\x38\ \x0f\x92\x48\x0d\x23\x65\x44\xbb\x05\xf3\xea\x4a\xc0\x08\x10\x91\ \x14\x43\x18\xe5\x18\x22\x92\x04\x49\x92\x10\x8d\x46\x21\xcb\x32\ \x28\xc1\x53\xc7\x9e\xbd\xef\xb6\x6f\x55\x03\x2c\xd5\x53\x2a\xb4\ \xfc\xaa\x16\x5d\x55\xcf\x34\xb8\x42\x4c\xa4\x21\x03\xf9\x4c\x68\ \x22\xb2\x34\x3d\xba\x94\x1a\xd7\xd3\xa4\x26\x98\xf6\x93\x1a\xc1\ \x92\xc7\x8d\xa1\xe8\x04\x4d\x47\xfa\x61\xcf\xb2\xa1\x22\x4f\x04\ \xa7\x0c\x8c\x09\x60\x49\x8d\xa0\x0c\x84\x32\xa8\x9a\x3e\xd9\x3a\ \xee\xfc\x07\x5c\xf5\xb3\x0f\x46\x76\xad\x6f\x2c\x5a\xf4\x6b\x84\ \x1b\xde\x3b\x7d\x00\x58\x66\xdc\x78\x56\x3c\x12\xfc\x8c\x73\x9e\ \x05\x62\x16\x36\x93\xa3\x30\x53\xd9\x4c\x6d\x9a\x7e\x1c\x64\x68\ \x70\x28\x1b\x00\x85\x9a\x2a\x04\x63\x38\xd2\x1f\x43\x4b\x9f\x8c\ \xd1\x3e\x0f\xac\x16\x01\xc4\x24\x8e\x94\x31\x10\x46\x01\x42\x58\ \x2c\x1e\xbf\x32\xab\x6e\xd6\xe5\x76\xbb\xfd\x9d\xe0\x8e\xb5\xc1\ \xbc\x85\x8f\x22\xba\x6b\xdd\xa9\x03\x90\x35\xeb\x16\xb0\xca\x33\ \xea\xe2\x91\xe0\x4e\x0e\x6e\xfc\x41\x42\x06\x24\x83\x92\x81\xcf\ \x43\x01\x01\x32\xb4\xc3\xa0\x26\xb6\x98\xae\x25\xd4\x60\x41\xa2\ \x32\x18\xe7\x8c\x14\x92\x35\xa0\xb1\x3d\x04\xaf\x98\x85\x12\xaf\ \x13\x20\x0c\x54\x60\x09\x30\x18\x28\x35\x86\x0e\x14\x45\xa4\xe8\ \x5d\x59\xe3\x67\x79\xfa\xfe\x78\xef\x7b\x3f\x5f\xf9\x32\xb6\xad\ \x7e\xe5\x9b\x03\x60\x99\x71\x23\xbc\x55\x93\xac\xc1\xb6\x7d\x2d\ \x1c\x9c\x0d\x8a\x7a\x52\x32\xb8\x99\xf6\x49\xe7\x92\x00\x21\x3d\ \xf2\x49\x70\x28\xc9\x00\x8b\xa6\x0f\x98\x7a\x85\xa4\x26\x24\x80\ \x38\xd4\x27\xa3\x23\xa2\xa2\xb6\xc8\x3d\x50\x26\x69\x92\x11\x14\ \x84\x32\x10\x42\xa1\xe9\xfa\x54\x36\x76\xe6\x92\xe6\xc3\xa1\x26\ \x79\xf7\xfa\x7d\x9e\x9b\x1e\x85\xfc\x35\x6c\x48\x03\x40\x6f\xdd\ \x0d\x29\xcb\xf3\x02\xd7\xd4\x09\xe9\x51\x32\xe5\x7e\x8a\xee\x09\ \x50\x38\x31\xd5\xf8\xe3\x68\x43\x5a\xee\x9b\xd9\x70\x3c\xbd\x48\ \x36\x52\x89\x6b\x28\x43\x24\xce\xd1\xd8\x11\x86\xcf\xe3\x40\x81\ \x2b\x0b\xa0\x2c\x91\x0a\x02\x18\xa3\xa0\x54\x00\x31\x80\xb3\x48\ \x31\x65\x81\x65\xdc\x05\x73\xb2\xdd\x9e\x35\xa1\xed\x6f\x87\x4f\ \x1a\x00\xe7\x9c\x9f\xe7\x2a\xe1\xe0\x1f\x53\x7f\xda\x4c\x75\x98\ \x73\xdd\xc4\x86\x41\x8e\x0f\x31\x68\x06\x1b\x06\x8d\x0c\x81\x4c\ \x75\x8e\xa6\x41\x8d\x8a\xf3\x55\x8f\x84\x7e\x45\x47\x4d\xa1\x3b\ \xc1\x02\x33\x23\x0c\x36\x30\x46\xa1\x73\x94\x06\x43\xc1\xbb\xad\ \x13\x2f\xb6\xab\x8d\x1b\x36\xe4\xdd\xfc\x1b\x44\x1b\xde\x3d\x71\ \x1f\xc0\x94\xf0\x22\xa3\xa8\x9b\xf3\x3c\xf9\xc7\xcd\x95\xd3\x24\ \x7a\xc9\x66\x27\xb9\x4d\x1b\xda\x40\x53\xc4\x4d\x7d\x43\xf2\x9c\ \x6e\x6a\xa0\xb8\xe9\x7b\x74\x6e\x30\x8b\x23\x5d\x2f\x28\x05\x04\ \x0b\x0e\x05\x35\xbc\xb4\xa7\x07\x51\xce\xe0\x75\x89\x70\x8b\x2e\ \xb8\xdd\x6e\xb8\xdd\x1e\xb8\xdd\x6e\x88\x62\x36\x44\x97\x0b\x0e\ \xd1\x0d\x9d\xe3\x5e\xe1\x9a\x5f\x05\x25\x55\x9d\x0b\x00\xee\x45\ \xbf\x3d\x3e\x03\xfc\x17\x5c\x63\x57\xc2\xfd\x37\x28\xaa\x66\x02\ \x81\x0c\x1d\x7d\xb3\xda\x23\xb3\x4a\x98\xce\x53\x0c\x44\x98\x64\ \x56\x12\x3a\x58\x40\x93\xe9\x40\x30\xd0\x42\x13\x92\xce\x08\xca\ \xa0\x53\x8a\x83\xdd\x12\x14\x50\x54\xe5\x39\x41\x28\x05\x11\x84\ \x34\x5d\xa0\xd4\x68\xad\x39\x88\x4d\x92\xa2\x3f\x15\xc6\x5f\x34\ \xcb\x57\x5e\xf5\x56\xdf\x5f\x5f\x8a\x0e\xc9\x80\x03\x4f\xdf\xbf\ \x21\xb7\xb4\xe2\x71\x3a\x94\x88\x0d\x72\x9e\xa4\x53\x1f\x89\x8e\ \x0f\x18\xe8\xfe\xa0\x27\xa2\xc9\x4d\xd1\xd7\x12\xdd\xa2\x06\xe8\ \x5a\xe2\x78\xb2\x75\xd6\x06\x98\x92\xbc\x3f\xd9\x46\x0f\x4a\x2b\ \x0a\x58\x6c\xd8\xdf\xab\xe2\x2f\x7b\x03\xd0\x04\x1b\x3c\x2e\x27\ \xdc\x2e\x11\x6e\x57\x36\xdc\xee\x6c\xb8\x5c\x6e\x38\x45\x17\x9c\ \xa2\x0b\x0e\x57\x36\xe2\x1c\xd3\x49\xd7\x57\x5d\x75\x8f\x37\xd7\ \x25\x7d\x16\xcc\x00\xe4\xfd\xe8\x2e\xb4\xbe\xf0\xef\x77\x96\xce\ \xbe\xe9\x8e\xc3\xbd\x91\x44\x4e\x66\x52\xdf\x9c\x1a\x34\xa3\xce\ \x27\xbd\xd7\x0d\x0a\xeb\x1c\xa0\x09\xe7\x28\x31\xaa\x07\xd7\x00\ \x3d\xc9\x88\xc4\x3e\xd1\x12\xd7\x13\x80\xe8\x06\x30\x84\x0e\x80\ \xc3\x92\xad\xf4\x10\x65\x95\x12\xc4\x38\xb0\x66\x5f\x08\x63\x8b\ \xec\x98\x50\x20\x82\x09\x16\x08\x16\x01\x4c\x10\xa0\x12\x8a\xd1\ \x3e\x2f\x3c\xd9\x2e\xf4\xb0\x3c\xec\x08\x3b\x10\xe9\x69\xd7\x4e\ \xd8\x0a\x97\x8c\x1c\xfd\x81\x3c\x72\xe6\x79\x3d\x7d\x01\xf2\xb5\ \xd4\x4f\x53\x7c\x53\x2a\xa4\x95\xb2\x44\xdb\xcb\x28\x40\x2d\x86\ \xa0\xb1\x64\xdb\x6c\x49\xec\x5b\x00\x66\x31\xda\x6a\xc6\x00\x6a\ \x05\x04\x4b\xe2\xbe\xc4\x48\xb6\xd1\xa9\xa9\xb5\x39\xad\x08\xc0\ \x75\x88\x16\x8e\xe9\xe5\x2e\xb8\x04\x1d\x13\x8b\xec\xd8\x1f\x12\ \xb0\xfe\x98\xc0\x0f\xef\xda\xac\x17\x1c\x58\x47\xc4\x43\x9f\xfc\ \xe1\xcb\x7d\xcd\xb7\x0e\xc9\x80\x54\x35\xa0\x5a\x23\x3b\xba\x7b\ \x46\xc4\x5b\x4b\xe4\x98\x7c\x62\xea\x93\x0c\x66\xa4\x04\x33\x91\ \x0e\xe0\x89\x5d\x7d\x20\xc2\xc9\x68\x83\x27\xa2\x9f\x60\x06\xa7\ \x89\x6b\x48\x82\x1d\x09\xe7\x74\xdd\xb8\x8f\x26\x85\x92\x0c\xc4\ \xce\x0c\x42\x9c\xa0\xae\x58\xc4\xa8\x42\x07\x5a\xa2\x16\x2c\x5d\ \x77\x40\xcb\x3f\xb0\x06\xc5\x2d\x1b\x69\x85\x85\x30\x66\xb3\x43\ \xcb\xcf\x79\x92\x15\xcc\xc7\xfe\xcd\x6f\x0f\x0d\x40\x61\xd5\x58\ \x58\x04\xbd\x5b\x0b\xb6\xd3\xc2\x5c\xbf\xde\x6a\xb4\x69\x43\x34\ \x37\x43\xa4\x05\x32\xba\xbc\x81\x0e\xc3\x70\x1a\x89\x74\x20\xc9\ \x74\x48\x82\xa1\x19\xc7\x74\x7d\x00\x90\x64\x1a\x10\x35\x01\x02\ \x07\xa8\x6e\x9c\xd3\x80\x12\x51\xc5\x78\x31\x82\xb5\xbd\x39\x80\ \x46\x70\xd5\x44\x2f\x4a\xb3\x6d\x58\xdb\xaa\xe2\x77\xaf\x7d\xa8\ \x8e\x6e\x7b\x8f\xcc\x91\x0f\x31\xbb\x27\x0f\xdc\x5f\x02\x45\x51\ \x10\x8b\xc5\xb0\x69\xd3\xa6\xed\x66\x7f\x07\x01\x70\xec\x60\x13\ \xfa\x6a\xce\x46\x39\x53\xc0\x5a\xb6\x13\xdf\x98\xd9\xfc\x68\x4f\ \x88\x0c\xe4\x5d\x46\x65\x40\x46\x3a\x50\xb3\x46\x98\x70\xe0\x30\ \x22\x98\x2c\x73\xd0\x4d\x51\x36\xe5\x7d\xf2\x73\xf2\x18\x35\x81\ \xc1\x19\xaa\xac\x61\xe4\x07\x9b\x51\x44\x74\x74\x66\x4d\xc2\xcf\ \xea\x3c\x70\x8b\x0e\x3c\xdb\x18\xe4\x96\xcf\x5e\xd3\xc7\x1d\xdd\ \x88\xfa\x1c\xa7\xe0\x2c\xf1\x40\xd3\x46\x42\x96\x65\xc8\xb2\x0c\ \x9e\x14\xe8\xaf\x9b\x0b\xd8\xc7\xce\x44\x6c\xef\x96\x4d\xf1\xdc\ \xca\xc5\x5e\x41\x13\x49\xa0\x9d\x73\xdf\x28\x12\x53\x94\x21\x1c\ \xa6\xe9\xa2\x44\x33\x40\xa1\xf4\x38\xe5\xd4\x3c\x79\xa2\x19\x60\ \x22\xbd\x94\x9a\xd8\xe7\x16\x34\xf4\x37\xbe\x8b\x16\x35\x07\x63\ \xa6\xcd\x87\xaf\xb8\x04\xcf\x37\x06\xf4\xb6\x8d\x2f\x6a\xf5\x8d\ \x4f\x90\x29\xae\x28\x2b\x2f\xf5\x51\xa7\xe8\x32\x78\xa7\xeb\x50\ \x55\x35\x35\x34\x4d\x43\x85\xbf\xb4\xad\xe5\x8e\x8d\x0d\xd8\xf8\ \xbb\xe3\x8b\xa0\x65\xe2\x3c\xc4\xad\xd9\x35\x85\x3d\xbb\xf6\xe5\ \x5a\x39\xa2\x9e\x72\xed\x88\xdd\xcf\xe2\x71\x35\xdd\xc1\xb4\xd6\ \x36\x63\x39\x8c\x0c\x31\x7b\x34\x2d\x87\xa5\xb6\xa9\xf5\x03\xc1\ \x24\x86\x09\xd1\x33\x0b\x20\xb3\x02\x3a\xc3\xbc\xc9\xe5\x10\x5d\ \x2e\xbc\xb4\xbb\x8b\x17\xef\x7b\x43\x1f\xd3\xf3\x09\x29\xf4\x15\ \x53\x6f\x4e\x0e\x28\xa5\x89\x6a\xcc\x11\x8f\xc7\xa1\x28\x0a\x24\ \x49\x4a\xb1\x40\x51\x14\x74\xe4\x8e\xfd\xb2\xe9\xe5\xff\xac\x3a\ \xe1\x74\x58\xef\xd8\x0f\x1c\x69\xec\x89\x14\x8c\x0b\x7b\xf4\xe0\ \xc5\x42\xb8\x8b\x3a\x7c\x95\x7a\xbf\xa4\x91\xd4\xba\x1e\x58\xba\ \xc3\x34\xa3\x6d\x4e\x45\xdf\xc4\x18\x9a\x39\xa7\x18\x0a\xa0\x8c\ \xea\x02\x02\xa8\x3a\x66\x8c\x2a\x44\xfd\x28\x3f\x56\xef\x0f\xf3\ \xd8\xce\xd5\xda\x15\xa1\x75\xf4\xdc\x32\x37\xcd\x2b\x28\x20\x9a\ \xa6\xa1\xaf\xaf\x0f\x36\x9b\x0d\x8c\xb1\x54\xf4\x35\x4d\x4b\x63\ \x00\x14\x49\xff\xa2\x76\xc1\x6e\xe9\xe3\x97\x9f\x3d\xe9\x55\x61\ \x56\x75\xd6\x47\xa3\x2c\x81\x73\xe4\xb8\xca\xa3\xe3\x2f\x47\x47\ \x77\x80\x0c\x4c\x5b\x33\x16\x3f\x33\x99\x31\x88\x1d\x19\x4c\x20\ \xe6\x19\xa0\x99\x05\x42\x6a\xb5\x68\x74\x59\x3e\x46\x54\x94\x63\ \x7d\x3b\xb8\xb7\xf9\x2d\x7d\x71\x2d\xa1\x67\x4e\x99\x42\x00\xa0\ \xab\xab\x0b\x0d\x0d\x0d\x38\x7a\xf4\x28\x34\x4d\x83\xd3\xe9\x84\ \xd7\xeb\x85\xae\xeb\x83\x18\x10\x8f\x86\xb0\x63\xcc\x42\x48\x62\ \xe1\x48\x7b\xb4\xfb\x60\xc7\x7f\x2c\xf8\x7a\x00\xb2\xc6\x5f\x04\ \xad\x6c\x92\xdd\xd1\xbc\x36\x50\x92\xa5\x5a\x65\x41\xd4\x3b\xcb\ \xa6\xd1\x70\x38\x7a\x6a\xd4\x4f\x63\x8b\x99\x19\x6c\x60\x29\x9d\ \x32\x00\x0c\xf9\x1e\x27\xea\x6a\x47\xa2\x41\xf2\x40\x6d\x5c\xa7\ \xcd\x08\xff\x37\x79\xe4\xa1\x65\xb4\xb0\xb0\x10\xe1\x48\x04\x4d\ \x4d\x4d\xd8\xb6\x6d\x1b\x72\x72\x72\x91\x9b\x9f\x87\x70\x38\x8a\ \x83\x07\x0f\x40\x8e\x46\x06\xa5\x80\x12\x0d\x63\xa7\x7f\x1e\x3a\ \x4a\xce\x99\x23\xdf\x3f\xfe\xbd\x93\x5e\x12\x53\x8f\x7d\x09\xbd\ \x76\x91\xaa\xc4\xbb\xb6\x5a\xc3\x9d\x37\x3a\xa1\x10\xab\xd5\xa6\ \x87\x98\x8b\x18\xe5\x98\x0e\x16\x33\x4a\x07\x53\x98\x0e\x25\x8c\ \x26\x90\x28\x12\x65\x12\xa0\x84\x62\xca\x98\x0a\xc8\x05\xb5\x68\ \x6a\xfe\x5c\xad\xfe\x78\x05\x9f\x5d\xa4\xb2\x55\xab\x56\x91\xa2\ \xa2\x22\x58\x6d\x36\x23\xda\xa2\x88\xba\x71\xe3\xb0\x77\xdf\x3e\ \x3c\xbd\x72\x25\x1a\xf7\xec\x41\xe5\xc8\x6a\x80\x52\x68\x8a\x92\ \x4a\x01\x3d\x2e\x63\x77\xf1\xc5\x68\x2d\x9e\x76\x93\xb2\x74\xfc\ \x5f\x4e\xf9\xc1\x88\x7d\xe2\xec\xff\x2a\x09\x1d\xb8\x53\xa0\x40\ \x68\xf4\x5c\xfd\x48\x7f\x9c\x1a\x51\x1b\x8a\xda\xe6\x63\x89\x49\ \x4d\x6a\xea\x9c\xd0\x0f\x33\x70\x84\x00\x1a\x30\xba\xb2\x08\xa4\ \xb0\x1a\xcd\x47\x02\xfa\xc8\xc6\x67\xf4\x2a\xd6\x2f\xf8\xfc\xe5\ \x78\xf8\xe1\x87\xe1\x14\x45\x58\x18\x83\xc5\x6a\x85\xa6\x69\x58\ \xf1\xeb\x15\x78\xf5\x8d\x57\x11\x0e\x07\xd1\xde\xd6\x81\x40\x20\ \x80\x91\xd5\xd5\xb8\x68\xee\x7c\x08\xba\x0a\x25\x1e\x87\x2e\x47\ \xb0\x39\xe7\x7c\x1c\xcc\x3b\xf3\xf6\xf8\xd2\xba\x27\x4f\xf9\xc1\ \x88\x73\xc2\x85\x88\xee\x5e\xbf\x46\xf7\x8d\xbe\x31\x9b\xc5\xbd\ \x7a\xc7\x7e\xd0\x11\x93\x20\xc5\x14\x92\xbe\x28\xca\x4e\x40\x7d\ \xd3\xa2\x47\x5a\x19\x05\x72\x5d\x76\x54\x8f\x19\x83\x26\x14\x73\ \xb2\xed\x25\xad\xfe\xe0\xcb\xb4\xb2\xd0\xc3\xec\x0e\x27\x6e\x5a\ \xb8\x10\xa2\xd3\x09\x35\x1e\x47\x24\x1c\x46\xa0\x3f\x88\x7b\xee\ \xbb\x1b\x75\xb3\xc6\x42\x70\x01\xbe\xb2\x42\x34\x35\x35\x41\x0e\ \x2b\x10\x04\x01\xf5\x67\x9c\x09\xae\xa9\x20\x71\x99\x6f\xc8\x9f\ \x47\x5a\xbd\x13\x6e\x50\x96\xd6\xad\x3a\x9e\x6f\xc2\xc9\x00\x10\ \xd9\xbd\x01\xb6\xfa\x4b\x11\xc8\xca\x99\x61\xef\xdd\xdd\x96\x67\ \xd7\x48\xfc\xc0\x87\x7a\xb4\x62\x06\x91\x25\xd9\xa4\xfe\x43\xd4\ \xef\x34\xe7\xd3\x27\x53\x84\x02\xa3\x46\x94\xe1\x98\xab\x0a\xfb\ \xf7\x6e\x55\x27\xec\x7f\x85\x96\x14\xe4\x0b\x8e\xd2\x32\x30\xc6\ \x30\xb2\xaa\x0a\x02\x63\xe8\xe9\xe9\x41\x24\x1c\x41\x67\x5f\x2f\ \xfe\xfc\xf2\x73\xa8\x9e\x5b\x8e\xb7\xf7\xbc\x81\x86\x2d\x3b\xe0\ \x81\x17\x42\x96\xf1\x9d\x7e\xbf\x1f\x3d\xbd\xbd\xc8\xb1\x0b\xfa\ \xab\xbe\x05\xb4\xcf\x96\x37\x27\xb6\xb4\xee\x84\x4b\xc5\xc2\xc9\ \xa6\x40\xec\xd3\xb7\x00\xe0\x70\xe7\x84\xb9\xb7\x8a\x4a\xeb\x53\ \x4e\xad\x87\x42\x6a\xd7\x0f\x23\x97\xa6\x35\x3a\xa0\xa6\x56\x99\ \xa6\x77\x85\xc9\xcf\x1c\x28\xce\x73\xc3\x5a\x5c\x83\xbd\xbd\x92\ \x56\xb1\xe5\xdf\xf8\x78\x4b\x54\xc8\x2e\x29\x86\x20\x08\xa9\x32\ \x56\xe4\xf3\xe1\x58\x47\x07\xbe\x92\x24\x74\x05\x02\x78\x7f\xfd\ \x46\x7c\xee\xf8\x18\x3b\x56\x73\xcc\x3d\xe7\x0a\x38\x35\x37\x88\ \x40\x21\xf5\x2b\x00\x00\x4f\x4e\x2e\xfa\x23\x31\x75\x75\xc5\x2d\ \x71\xae\xc6\xce\x90\x96\x4e\x6a\x3e\x6d\x8f\xc6\x92\xa6\xed\x7e\ \x67\xe5\x11\xab\xef\x5d\x4a\x08\xec\x5f\x6e\x25\x45\xd9\x36\x9e\ \x9a\xf7\x64\xae\x17\xa6\x31\xc2\xa0\xbb\x55\xa0\xa8\xae\x19\x89\ \xce\xfc\x09\x08\xec\x58\xa3\x4e\xde\xfc\x20\xad\xc9\x26\x82\xdb\ \x3b\xd0\xc8\x00\x80\xc3\xe1\x40\x77\x57\x17\x0e\x1f\x3e\x8c\xc6\ \xc6\x46\x7c\xb2\x6d\x27\x76\xb7\x6e\x43\x7f\x67\x18\xd5\xde\x71\ \x68\xdc\xdc\x8c\x8b\xa7\xce\x86\x26\xe9\x88\xf4\x19\x2c\xcc\x72\ \x38\xb1\x66\xec\x5d\x5f\xd5\xf4\x6e\xc9\x57\xa8\xa5\xf9\x64\xfc\ \xf9\xc6\x4f\x87\x1d\xf5\x73\x61\xa9\x9d\x4e\x85\x5d\x6f\x06\x8a\ \x48\xc8\x25\xe9\x54\xef\x19\xf7\x63\xda\x1f\x0a\x0f\x5d\xf3\x93\ \xd4\xe7\x40\x49\x41\x0e\xd4\xc2\x1a\x74\x1e\x6d\xd7\x46\x6c\x7f\ \x1c\xbe\x6c\x1b\x73\x3a\x45\x08\x82\x00\x4a\x69\x6a\xcb\x12\x0f\ \x49\x3d\xd9\xd9\x88\xc5\x62\x08\xc9\x0a\xf6\xec\x6a\xc0\xf9\xb3\ \xa6\xc1\x66\xb3\x41\xd7\x39\xce\x9a\x32\x05\x60\x1c\x77\xff\xe3\ \x12\x1c\x3b\xda\x89\x99\xb3\x2e\x84\xb5\x7a\xea\x8b\xeb\x1e\xff\ \xd5\xb5\x05\xf7\xbf\x85\xce\x87\x2e\x3d\x29\x7f\x84\x6f\x0a\x40\ \xf4\xd3\x77\x00\x77\xa9\x8e\xdc\xb1\x17\x38\xba\xb6\x6f\x77\x33\ \x8d\xe6\xb4\x6f\xd7\xa4\xbc\x7a\xa6\x28\xca\x90\xd4\xb7\x0a\x0c\ \xc5\xe5\x23\xd0\x4a\x0b\xb8\xe7\xa3\xe7\xb4\xf1\x5d\x3b\x85\xec\ \xbc\x22\x58\xad\x96\xe3\xfe\x4e\x5f\x6f\x2f\xe2\x8a\x82\x40\x20\ \x80\xe2\xca\x1a\x04\x03\x01\x44\x63\x51\x78\x73\xbd\xa0\x84\x62\ \xd3\x96\x0f\xd1\xb4\xeb\x73\xf4\x74\xf5\x62\xfa\xf4\xe9\xb8\xfa\ \x27\xd7\x34\xff\xdd\xed\xb7\x5e\x7b\xc9\xe2\x5f\x62\xed\x49\x3a\ \x7f\x4a\x8f\xc7\x01\x00\x2d\x3b\x81\x43\x0d\xed\x52\xe5\x34\x9b\ \x47\xea\x98\x6e\x89\x74\xd3\xac\x02\xbf\xd6\xaf\x0a\xd4\x68\x64\ \x06\xc4\xae\x30\xd7\x03\xc1\x5f\x87\xce\x8e\xa3\x6a\xd9\xfb\xcb\ \x88\x9f\x86\x98\x98\xed\x35\xd6\xf7\x29\x05\x21\x64\xd0\x96\x31\ \x86\xce\x63\xc7\x10\x53\x14\x68\x9a\x86\xf2\xca\x4a\xbc\xbf\x7e\ \x1d\x8a\x0b\x4b\x40\x28\xa0\xc6\x34\x1c\xfa\xf2\x30\xb6\x6c\xde\ \x82\xdb\x6e\xbb\x0d\x4f\x3c\xf1\x64\xef\xe6\xcd\x9b\x6a\xe6\xcc\ \x9b\xaf\xfd\x7e\xd9\x03\xdf\xed\x1b\x22\x62\xfd\xec\xc6\x72\xa9\ \x75\x5c\x5c\xd3\x20\x9f\xbb\x48\x6f\xeb\x0c\x50\xce\x01\xc1\x2a\ \xa0\xb8\xac\x02\x6d\xcc\xc7\xdd\x9f\xfc\x41\x2d\xee\x6c\xb0\xb8\ \x72\xf2\x60\xb1\x58\x52\x34\xcf\xa4\xbe\x39\x05\x0e\xb7\xb5\x21\ \x14\x0a\xc1\x9b\x93\x83\x0b\xe7\xce\xc7\xbf\xdc\x7f\x2f\xac\x56\ \x2b\x4a\x4b\x4b\x11\x0c\x06\xd1\xdd\xdd\x8d\x6b\x16\x5c\x8b\xa7\ \x57\x3e\x75\xe4\x93\xed\xdb\x6b\x2d\x82\x25\x3c\x63\xfa\xb4\x6f\ \xef\xfd\x80\x21\x9b\xa3\x73\x17\x20\x5c\x7a\xf6\x79\x3d\x82\x97\ \xdb\x6c\x59\x10\x3e\x7a\x86\x94\x38\xa1\x95\xd4\xd6\xf1\xec\xda\ \xb3\xd0\xd6\x13\x56\x7d\xaf\xff\x42\xf7\x07\xf7\x59\x9c\x1e\x43\ \xe4\x38\xe7\x20\xe4\xc4\xb8\x73\xce\x51\xea\xf7\x43\x92\x65\x74\ \xb4\xb7\xc3\x22\x08\xb8\x71\xe1\x22\x10\x4a\x71\xb8\xbd\x1d\xf9\ \x45\x3e\x3c\xf7\xa7\x3f\xe3\xb7\xbf\x59\xf1\x82\x28\x8a\xa5\x65\ \x7e\xff\x29\x39\x7f\xda\xde\x11\x12\x2e\x5c\x7c\x55\x79\xfb\x96\ \x57\xdc\x36\x86\x68\x38\x84\x40\x20\xa0\x11\x9b\x83\x38\xa8\x4e\ \x9d\xd9\x5e\x08\x82\x70\xc2\x88\x67\x6e\xcd\x0c\x09\x06\xfa\x60\ \xcf\x2f\x51\xa7\xcc\x9a\x27\x8c\x2d\x70\xc0\x66\xcb\xd2\xcb\xcb\ \x4a\x5f\x07\xf0\x60\x55\x65\xe5\x67\x4d\xcd\xcd\x18\x3b\x66\xcc\ \xf7\xff\x96\x98\x78\xde\xf5\x2f\x8d\xe8\xde\x71\x35\xa8\x40\x24\ \x49\x4a\x39\x6d\x1e\x27\x0f\x00\x83\x95\x01\x51\x8b\x4b\x6d\x28\ \x98\x25\xb4\xba\x6b\x3f\xb6\x44\xbb\x16\xc7\x97\xcf\xd9\x95\xfc\ \xbd\x9d\x9f\x36\x60\x72\xfd\xa4\xef\xee\x15\x99\x13\x99\x7b\xe6\ \xcf\x10\xde\xf4\xdc\x35\x9d\xd9\xd5\xdd\x5c\xff\xdf\xbc\xc6\xc3\ \x21\xe8\x0a\xef\xb2\xfb\xd4\xf5\x25\x57\xe3\x8d\xaa\xc5\x1b\xfa\ \x04\xe7\x04\x3c\x38\xf9\x1c\x91\x69\xbb\xcc\x57\x9e\x0e\xe7\x4f\ \x1b\x00\xc1\x0f\x9f\x47\xd6\xdc\x5f\xe0\x98\x6f\xea\xf4\x48\x56\ \xae\xa9\xf3\x3b\xc9\x3f\xa1\xab\x50\xa9\x45\xdd\x9b\x3b\x15\xab\ \xab\xef\xd4\x37\x95\x5f\xfb\x18\x53\xa5\x42\xfc\xeb\x19\x97\x70\ \x08\x7b\x00\xa0\xef\xa1\x79\x3f\x8c\x17\x25\x6d\xf3\xff\xe9\x1e\ \xff\x17\x6b\x96\x0b\x94\x1c\x3f\x05\x18\x83\x85\x72\xe8\x56\xa7\ \xda\x91\x37\x9e\xb6\xe7\x4e\xa0\xfd\xae\x8a\x4d\xb6\x78\xe0\xb1\ \xd8\xa3\xf3\x5f\x01\x00\xc7\x92\xb5\x88\x2e\xbf\xe4\x87\xf9\xaa\ \x6c\xd6\xe5\x4b\x37\x15\xb7\x7c\x70\xae\x53\xee\x61\xd4\x62\x35\ \x9c\x67\x14\x02\x25\x7a\xc4\xed\xd7\x7b\x73\xc7\x08\xbd\x39\xa3\ \x10\x71\x95\xfe\x55\x50\xa3\x2f\x94\x76\x6d\x79\xa6\xe5\xf9\xe5\ \x8a\xe3\xae\x57\x11\x5d\x71\xd5\x0f\xfb\x55\x59\x71\xfe\x5d\x08\ \xbf\xbd\x02\x58\xf8\xd4\x32\x6b\xac\x7f\xb1\x2d\x1e\xf1\x30\x02\ \xc4\xb3\xdc\x88\x8a\x25\x5f\x71\xab\x63\xbd\x35\x1e\x7c\x53\x79\ \xec\xba\x77\x00\xc0\x75\xfd\x72\x84\x9e\x5b\x82\xbf\x59\x13\x7f\ \xfa\x90\x9d\x5c\xfb\x48\xee\x88\x4b\xae\x4b\x75\x9d\xd6\xc5\xcf\ \x63\xd8\x86\x6d\xd8\x86\x6d\xd8\x86\x6d\xd8\x86\x6d\xd8\xbe\x67\ \xfb\x1f\xb5\xfe\xe1\xe1\x47\x14\x26\x51\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x98\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x10\x23\x09\x1a\xbe\x43\x8f\x00\x00\x00\x19\x74\x45\ \x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ \x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ \x00\x03\x00\x49\x44\x41\x54\x38\xcb\x95\x91\x4f\x48\x93\x71\x1c\ \xc6\x9f\xdf\xfb\xbe\xce\xbd\xef\x9a\xcb\xde\xa5\x69\xdb\xb0\x5c\ \xe4\x72\x9b\x8d\xb2\x8b\x66\x85\x95\x04\x16\x5e\x3c\x54\x87\x86\ \xd2\x21\x3a\x24\x15\x85\xb8\x22\x28\xb1\x2e\xd1\xad\x63\x17\x31\ \x12\x41\x70\x1b\x1d\x82\x10\x1d\x46\x82\xcb\x92\xd2\xfe\x6d\x3a\ \x7d\xd7\xde\xd6\xbb\x72\xeb\xd5\xde\xed\xdd\xde\x4e\x81\xfd\x83\ \xfa\xdc\x1e\xf8\x7e\x1e\x78\xf8\x12\xfc\x81\xce\x1b\xe7\x36\xe5\ \xcb\xd9\x33\x6a\x58\x0c\x14\x8a\xa9\xc8\xfe\xea\xdd\x69\xae\xd4\ \x68\x77\xbb\xdd\xb2\xdb\xed\x8e\xad\xbd\x25\xbf\xca\xa7\x1e\x5c\ \xa9\xce\xd5\x18\x47\x64\x64\x77\x24\x1e\xbf\xc2\x86\x15\xdd\x93\ \x93\x9b\x0e\x8c\xb8\x76\xed\xac\x9d\x9d\x9b\x0d\x44\x22\x91\xc9\ \xee\xee\xee\x25\x42\x48\x0e\x00\xe8\xb5\xf2\xa5\x8d\xed\x64\xa5\ \xd1\xb4\x79\x55\xfd\xd6\x25\xbc\x5b\x28\xb6\xd4\xda\x41\x2c\xeb\ \xac\x53\xc2\xec\x41\x25\x2a\x15\xe9\x0b\x0c\x9a\xf6\xef\xab\x98\ \x98\x98\x58\x1e\x1c\x1c\x4c\x02\x00\xb5\xb6\xa0\xa8\xb1\x8c\x7c\ \x99\x17\xcb\x16\x96\x16\x4b\x4a\x59\x13\x34\x5e\x87\xf8\x5c\x14\ \x19\x7d\x0e\xd3\xec\x07\x47\xf1\x7a\xc3\xc9\xf7\x6f\xde\xb9\x9e\ \xbf\x78\x6e\x19\x1f\x1f\xaf\x56\x14\x85\xf9\x6d\x42\xf7\xad\xab\ \x1b\x14\x8e\x3c\x0d\x69\x6f\xed\x1a\x4d\x60\xb2\x95\x81\x77\xda\ \x90\x18\x9b\x85\x9c\x4a\x7f\x6e\x55\x9d\x4f\x8f\x36\xb5\x2c\x2e\ \xcb\x99\x57\x93\x93\x93\x23\x3f\x4d\x18\x1a\x1a\xd2\x3b\xed\x8e\ \xa0\x67\xab\xd3\xc3\x7e\x25\x85\xd7\xe9\x45\xc2\x19\x0d\x48\xbf\ \x4f\x40\xcc\x67\x90\xd3\x83\xcd\x1b\x68\x3b\x27\x15\xaa\xc4\x85\ \x78\xe8\xfc\xc5\x0b\x0f\x99\x1f\xf2\xd8\xd8\x98\x5e\x51\x94\x47\ \x66\xb3\xb9\xd1\x6c\x36\xe3\x30\x4d\x53\xdb\x53\x55\xb8\x3d\x75\ \x1f\x9f\x2a\x35\xd0\x84\x00\x20\x78\x03\x11\x42\xe6\x63\x62\xcb\ \x82\x6e\x0a\x80\x46\x03\x40\x5b\x5b\x1b\x49\xa5\x52\x75\x56\xab\ \xd5\xc7\x71\x1c\x95\x4a\xa5\x88\x9e\x65\xb1\xa5\xc2\x86\x2a\xae\ \x02\xcf\xe2\x73\x90\x75\x79\x50\x20\x20\x00\x72\x3a\x94\xad\x18\ \xb5\x1d\x4d\xb5\x7b\xc2\x14\x00\xb8\x5c\x2e\xc2\xf3\x7c\x1d\xcf\ \xf3\x6f\x05\x41\x88\x00\x80\xa2\x28\x00\x45\x60\x2b\x29\xc7\x69\ \xeb\x11\x94\x7e\x2d\x86\x4a\x15\xa0\x01\x28\x2a\x50\x58\x47\xb1\ \xd9\x92\x0a\x3e\x47\x01\x40\x2c\x16\xe3\x1a\x1a\x1a\xbc\x82\x20\ \x6c\x95\x24\xc9\xca\x30\x8c\xa4\x28\x4a\x3a\x99\x4c\x82\x33\x70\ \x38\xde\xdc\x86\x73\xdb\x8e\x69\xe6\x55\x16\x50\x0b\xd8\x58\x59\ \x8e\xca\xa6\x1a\x4d\x45\x3e\x4f\xf7\xf4\xf4\x18\xda\xdb\xdb\xfd\ \x89\x44\xc2\x19\x0c\x06\x1b\xea\xeb\xeb\xeb\x64\x59\xe6\x22\x91\ \x08\x67\xb3\xd9\x18\x00\x54\x3a\x93\x46\x69\x91\x71\x31\x13\xfb\ \xe4\x97\x57\xe5\x65\xab\x8e\x1f\xd2\xc4\xd5\x3b\xf7\x4e\xdf\x9c\ \x66\x5a\x5a\x5a\x0e\x89\xa2\xc8\x07\x02\x81\xbd\x1d\x1d\x1d\x77\ \x25\x49\xda\x3e\x33\x33\x73\xde\xe1\x70\x5c\x57\x55\xf5\x63\x36\ \x9b\xf5\x98\x4c\xa6\xe5\xa5\x0f\x42\x57\xdf\x59\xdf\xf0\xaf\x6f\ \xa7\x3d\x1e\x4f\x34\x1c\x0e\xf7\x7b\xbd\xde\xcb\xa2\x28\x1e\x1e\ \x18\x18\xa8\x6f\x6e\x6e\xae\xb1\x58\x2c\xa7\xc2\xe1\xb0\x3e\x1a\ \x8d\xbe\x24\x84\x74\xb5\xb6\xb6\x06\xf1\x37\x04\x41\xa0\xfa\xfb\ \xfb\x3d\x9d\x9d\x9d\x9b\x87\x87\x87\xbd\xa1\x50\x28\xef\xf3\xf9\ \xae\xe1\x7f\xf1\xfb\xfd\x96\xd1\xd1\xd1\x47\xbd\xbd\xbd\xbe\x7f\ \x75\x98\xb5\x21\x1e\x8f\xc7\xe7\xe7\xe7\x4f\xf4\xf5\xf5\x25\xff\ \xb5\xe0\x3b\x97\x70\x46\x10\xca\xd7\xe5\x2c\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\x19\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\ \x01\x1e\x75\x38\x35\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x08\x96\x49\x44\ \x41\x54\x78\xda\xed\xdb\x7d\x50\x54\xf5\x1a\x07\xf0\x9a\xde\xfe\ \xe9\xc5\xb9\x73\x9b\xe9\x0e\x4d\x2f\xb7\x6e\x5d\xd2\xb9\x63\xaf\ \x4c\x7f\xd4\x54\x37\x7b\xf9\x23\xa7\xd1\x50\x03\x15\xc8\x3d\x67\ \xcf\xee\xc2\x22\xaf\x19\x92\x02\x03\x4d\x80\x04\x02\xf2\x32\x85\ \x62\xbe\x4c\x6a\xf8\x32\x7b\xbd\x5a\xa8\xb5\x29\xe2\x4b\x8a\x98\ \x2f\xa8\x30\x32\xba\x02\x0a\xd8\x94\xbb\x0b\x0a\xe7\x3c\x7d\x9f\ \xad\xb5\x53\x07\xb8\xe0\x91\xc3\x5e\x90\x99\x47\x66\x59\x04\x3e\ \xdf\xf3\x3b\xbf\xdf\xf3\x3b\x67\xf7\x26\x22\x1a\xd3\x75\x23\x80\ \x1b\x01\x8c\x42\x94\x28\x8a\xb7\xc7\xc4\xc4\xdc\x35\x26\x03\x00\ \xfe\x4e\xe0\x1f\xdf\xbe\x7d\xfb\xfd\x8d\x8d\x8d\x77\x07\x6c\x00\ \x69\x69\x69\xb7\x0a\x71\xd6\x25\x92\x4d\x9a\xd1\xd7\xf3\x51\x51\ \x51\xf7\x5e\x03\xfe\x2f\xc0\xbf\x02\x7c\x08\xf0\xc1\x27\x4f\x9e\ \x0c\x3a\x76\xec\xd8\x80\x23\x61\xc4\xf0\x62\xac\xf5\x3f\xef\xe5\ \x27\xb9\xc5\x38\xab\x07\x21\xcc\x52\x3f\x2f\xd8\xcc\x79\x82\x24\ \x76\x02\xf4\xcf\x21\xe0\xef\x03\x7e\x26\xf0\x53\x81\x9f\x04\x7c\ \x08\xf0\xc1\x07\x0f\x1e\x0c\xda\xbd\x7b\x77\xbf\x21\x8c\x1c\xbe\ \x28\xf9\xd2\x34\xb9\x9c\x66\xb4\x2e\x26\x75\x08\x8c\x9f\x1d\x2b\ \x5c\x7a\xed\xa3\x48\xd9\x24\x89\x17\x39\x84\x41\xe0\x1f\x00\x3e\ \x19\x78\x3b\xf0\x51\xc0\x4f\x05\x7e\x12\xf0\x21\xc0\x07\xef\xd8\ \xb1\x23\x68\xf3\xe6\xcd\x7d\x86\x30\x32\xf8\xc2\x24\x77\x68\x6f\ \x19\x85\x52\x39\xea\xf7\x10\x44\xab\xf4\x5f\xc6\x4f\xfc\x2c\x9c\ \x26\x54\x86\xd1\xbf\x73\x22\x65\x01\x21\x58\x2c\x96\xc7\x07\xc0\ \x3f\x0a\xfc\x62\xe0\x73\x80\x4f\x05\xde\x0e\x7c\x24\xf0\x53\x81\ \x9f\x04\x7c\x08\xf0\xc1\xeb\xd6\xad\x0b\x5a\xbe\x7c\xb9\x26\x04\ \xc3\xf1\x51\x05\x89\x57\xf1\xea\x8a\xf8\x3c\x85\x22\x62\x05\xf2\ \xe3\x51\xbf\x87\x60\x11\x3b\xfb\x0a\x01\xf8\x27\x80\xff\x12\xf8\ \xd5\xc0\x97\x01\x9f\x03\x7c\x2a\xf0\x76\xe0\x23\x81\x9f\x02\xfc\ \x24\xe0\x43\x80\x0f\xce\xca\xca\x0a\x92\x24\xe9\x4e\x4d\x00\x86\ \x1d\xf9\x02\x1c\xf9\x9e\x52\x0d\x7e\x76\xd5\x87\x34\x3b\xd9\xac\ \xc1\x0f\x14\x02\xf0\x13\x81\xaf\x01\xde\x09\xbc\x03\xf8\xd5\xc0\ \x97\x01\x9f\x03\x7c\x2a\xf0\x76\xe0\x23\x81\x9f\x02\xfc\xab\xc0\ \x3f\x07\xfc\x63\xa8\x3f\xac\x0c\x06\x4e\x78\x43\xc1\x0f\x1c\x02\ \xf0\xcf\x01\xdf\x0c\x7c\x13\xf0\x75\xc0\x3b\x81\x77\x00\xbf\x1a\ \xf8\x32\xe0\x73\x80\x4f\x05\xde\x0e\x7c\x24\xf0\x53\x00\x7f\x19\ \x75\xbf\xe6\x14\x30\x02\x3f\x27\x3f\xc9\x33\xad\xa7\xec\xda\xf0\ \xda\x10\x7e\x8a\x8e\x8e\xf6\x00\x7f\x19\xf8\x76\xe0\x9b\x80\xaf\ \x03\xde\x09\xbc\x03\xf8\x55\xc0\x97\x02\x9f\x03\x7c\x2a\xf0\x76\ \xc0\xc3\x51\xe3\x0d\x9f\x04\x31\xa9\x25\x9b\xd2\x62\xbb\x75\xe1\ \xb5\x21\x90\x2d\x36\x9a\xf6\xed\xdb\x47\xc0\x5f\x06\xbe\x1d\xf8\ \x26\xe0\xeb\x80\x77\x02\xef\x00\x7e\x15\xf0\xa5\xc0\x67\x03\x9e\ \x84\x7a\x7e\x44\x96\x41\xab\xd5\xfa\xa8\xd9\x6e\xe9\x98\x55\xf3\ \x91\xac\x03\xaf\xa9\x57\x73\xa3\x28\x26\xce\x4e\x35\x35\x35\x04\ \xfc\x65\xe0\xdb\x81\x6f\x02\xbe\x0e\x78\x27\xf0\x0e\xe0\x57\x01\ \x5e\x80\x7a\x7d\x84\x1a\x21\x6d\x08\xfa\xf1\xda\x10\xb6\x6c\xd9\ \x42\xc0\x77\x03\x7f\x01\xf8\x46\xe0\xeb\x80\x77\x02\xbe\x0e\x35\ \x6d\x04\x5b\x61\x6d\x08\xef\x15\x25\x29\x1a\xbc\xce\x10\xf8\x74\ \x58\xb3\x66\x0d\x01\xdf\x0d\xfc\x05\xe0\x1b\x01\xdf\x85\x32\x05\ \xd4\x66\x48\xb4\x99\x2b\xb0\xce\x2b\xfa\xf1\xda\x39\xc1\x6a\xb7\ \x51\x79\x79\x39\x01\xdf\x0d\xf8\x69\x54\x42\xc0\x6c\x87\xd5\xed\ \x6d\xff\x78\xfd\x21\x98\x6d\x12\x01\xee\x41\xa5\x0f\xe5\x6f\x0b\ \x20\xbc\xfe\x10\xb0\x44\x7a\xcd\x66\xf3\x3f\x02\x26\x00\xfc\x31\ \xd3\x45\xc9\xdc\xfb\xf4\xa7\x33\x87\x09\xae\xed\x13\x4c\x16\x73\ \x07\x87\x10\x10\x01\x84\x86\x86\xde\x32\xc7\x22\x56\xcd\x48\x9a\ \xe3\xfe\xd7\xd2\xb0\x80\x0c\x81\xff\x19\xb5\x21\xf0\xea\x33\xb2\ \x01\x68\x43\xf0\x04\x5a\x08\x46\x5e\xab\x7b\x44\xb0\x9a\xbd\x61\ \x49\x02\x05\x52\x08\x86\xe0\xb1\x34\x3d\x94\x92\x92\xd2\xb2\x64\ \xc9\x92\x2b\x79\x85\xf9\x14\x91\x62\x35\x36\x04\x6b\xff\x21\x18\ \x86\x3f\x7d\xfa\xb4\x72\xee\xdc\x39\xae\x1f\x73\xf2\x17\x19\x16\ \xc2\x53\x58\x81\xe6\x44\x8b\x5d\x18\x81\x09\x86\x07\x60\x32\x99\ \x1e\x56\xe1\xa9\xa9\xa9\x89\xb0\x7b\x93\xb1\x8d\xf5\x72\x08\x33\ \xe7\x99\x11\xc2\xf0\xe2\x23\xed\xa2\x47\xb4\x48\x59\x86\x9f\x02\ \x8c\x9f\x3f\x7f\x7e\xab\x1a\x7f\xf4\xe8\x51\xaa\xab\xab\xe3\xad\ \x6c\x4f\xc9\x8a\x92\x1e\x31\x47\xa2\xf0\x79\xe2\xb0\x84\xf0\xe4\ \xa7\xe1\x14\x61\x17\xba\x07\xc2\x73\x19\x8e\xdf\xbb\x77\x2f\x15\ \x17\x17\xf3\x0e\x8e\x4a\x57\x96\xf6\x66\x7f\x92\x4b\xb3\xe6\x59\ \x10\x42\xf8\xf5\xc5\x27\x98\x49\x8c\xb1\x5c\xc1\x29\x38\xcb\xd0\ \x00\x70\xc9\xea\xef\xff\x0b\x5f\x5f\x5f\x4f\xad\xad\xad\x24\xcb\ \x32\x7d\xf5\xf5\x76\xd9\xba\x60\x31\x85\xbf\x6f\xf5\x87\xa0\x1f\ \x9f\x28\xd1\xec\x4d\x0b\xaf\x5e\x6d\xc6\xdf\x34\xd3\x90\x00\x18\ \x8f\x73\xbe\xad\x2f\xfc\x9e\x3d\x7b\xae\xe2\x5b\x5a\x5a\x48\x51\ \x14\xe2\x0f\xfe\x5c\xe5\xd8\x21\x67\x2e\xca\xa3\x88\x0f\x7c\x21\ \xe8\xc3\x27\xf9\xf0\x9a\x4b\xee\x58\x05\xde\xd2\x11\x80\x7e\x7c\ \x51\x51\x91\x06\xef\xff\xe0\xc7\xdb\xaa\xab\xe5\x4f\xb2\x32\x28\ \x62\x9e\xc4\x21\xe8\xc7\xfb\x03\x68\x2b\x44\x00\x36\xaf\x10\x2d\ \x4c\x1d\xb6\x00\xb8\xc9\xc1\xb0\x3f\x3f\x04\xbc\x26\x80\x13\x27\ \x4e\x50\x65\x71\xb1\xbc\xe8\xe3\x2c\x5e\x22\x39\x04\xdd\xf8\xe9\ \x6d\x38\xfa\xf1\x36\xaf\xc5\x66\xe9\xf7\xe2\x48\x40\xe0\xf9\x39\ \xfe\x1e\x34\x4a\x0a\x82\xe0\x25\x12\xa7\xc3\xe0\x26\x46\xc6\x47\ \xf6\x75\xe4\xcf\xe3\xc8\x27\x68\xf0\x9a\xd2\x8b\xff\xdb\x40\xf8\ \xc2\xc2\xc2\xa1\xe0\xf9\x02\x27\x35\x34\x34\xc8\xf8\x79\xde\xbc\ \xc5\xf9\xfe\x10\x86\x8e\xbf\x50\x48\x42\xbc\xcd\xa3\xc5\x6b\x4b\ \xef\x7e\xff\xf9\x65\xcb\x96\xd1\xa9\x53\xa7\xfe\x80\x3f\x70\xe0\ \x00\x39\x1c\x0e\x5a\xb1\x62\x05\xa1\xe9\x21\xb7\xdb\x3d\x20\x9e\ \x27\x47\xc6\x1f\x3f\x7e\xdc\xf7\x73\xb8\x63\x3c\x73\xe6\x8c\x4b\ \x8a\xb1\x2a\x61\x89\x26\xa5\xaf\x10\x26\x32\x3e\xde\xac\xc5\xb7\ \x17\x91\x98\xa8\xc2\x0f\x67\x00\xb8\x3b\x73\x07\x46\x41\x59\x7e\ \x7e\x3e\x55\x57\x57\xfb\xf1\x5c\x0c\xe3\x10\xf8\x62\xa5\x0f\xe5\ \xf1\x78\x06\x85\xe7\xaf\x77\x76\x76\x52\x73\x73\xb3\x82\x1b\x20\ \x2e\x6c\x66\xb6\xbe\x9b\x60\xf2\x22\x04\x35\x9e\xef\x23\x7a\xc5\ \x68\xc9\xa3\xbe\xe4\x3e\xbd\x1d\x47\x5e\x85\x1f\xd6\x00\x00\xbf\ \x07\x01\xec\x4b\x4f\x4f\x57\xd0\x6c\x74\x55\x56\x56\x2a\x6a\x3c\ \x86\xb2\x6f\x64\xe0\x72\xb5\x3a\x04\x35\x9e\xe7\x07\xfe\x7e\x0d\ \xde\xe5\x72\x29\xdc\x42\xf3\x3e\x82\xb7\xd2\xd8\xcc\xac\xff\x35\ \x84\xab\x78\x37\x77\x78\xbc\xc1\x11\xed\x96\x76\x0e\x61\x7a\x47\ \x11\xf0\xd1\xee\xa1\xe0\xb9\xf4\x6c\x72\x66\x54\x54\x54\x10\x6e\ \x4a\xf8\x2e\x4b\x77\x74\x74\xd0\xd9\xb3\x67\x6b\xd5\x78\x14\xdf\ \xbd\xa1\x4d\x9b\x36\xd1\xda\xb5\x6b\x19\xc9\xb8\x41\xe3\xfd\xbf\ \xcb\x1f\x42\x58\xa2\xe0\xf5\xe3\xfd\xcf\xf9\x43\x10\xe2\x2c\x5d\ \x6a\xbc\x11\x23\xe0\xaf\x18\xa2\x87\x81\x53\x6a\x6b\x6b\x65\x40\ \x9d\x08\x81\x21\xdf\xaa\xf1\x47\x8e\x1c\xa1\x43\x87\x0e\x51\x55\ \x55\x15\x07\xc5\x78\x9e\x1c\xfb\xc5\x73\x17\xc9\xf8\x3e\x2f\xaa\ \x58\xc5\x2a\x93\x24\x66\xfe\xf9\x39\x9b\xcd\xf6\x20\xfa\x90\x17\ \xae\xc5\x71\xcd\x37\x3d\x91\xfc\xf2\xb9\x73\xe7\x9e\xc5\x2f\xef\ \xd9\xba\x75\xeb\x15\x84\xd0\xcb\x21\x60\x02\x63\xfc\x37\x6a\x3c\ \x9f\xe3\x0c\xe6\x10\xf2\xf2\xf2\x06\xc4\xf3\x3e\xa2\xbf\xdf\x8b\ \x8f\x9b\x03\xe2\x65\x72\x38\x42\x02\xcf\xfe\xdb\xb6\x6d\x23\xdc\ \x8d\xa1\xb6\xb6\xb6\x2b\x87\x0f\x1f\xae\xe7\x10\xf0\xd9\x89\xe2\ \x1d\xdf\x77\x6a\x3c\x17\x4f\x92\xfc\x9c\x1a\x8f\x51\xa3\xc1\x07\ \xfc\xeb\x04\x05\x41\x78\x76\xc1\x82\x05\x5d\x3b\x77\xee\x54\x76\ \xed\xda\x75\x11\x1b\x1b\x17\x8e\xbc\x1b\x48\x5f\x08\xb8\x69\xe9\ \xe4\xf3\x7e\xc3\x86\x0d\xb5\x83\xc1\x73\x0b\xcd\xad\xb4\xd1\x78\ \x2e\x3d\x3d\xc0\x8b\x0b\x17\x2e\xec\x42\x00\xbd\x68\x7a\x5c\x98\ \xf8\x5c\x00\xba\x31\x29\xfa\x42\x40\x00\xce\xdc\xdc\x5c\x2a\x29\ \x29\xf9\xde\x18\xbc\xf1\x01\xbc\x83\xf3\xb9\x77\xff\xfe\xfd\x17\ \x01\x76\xa3\x5c\x08\xc3\x05\xb8\x1b\x3d\x81\x2f\x04\xac\x12\x4e\ \x0c\x6b\x4a\x4e\x4e\x6e\xc6\xe3\x80\xc3\x73\xe9\xc2\x63\xd9\x93\ \x31\xe1\xf1\x44\x57\xef\x0f\x61\xe5\xca\x95\x2e\x1c\x79\x37\x96\ \xbd\x33\xbc\x3a\xe0\x86\xe5\xf1\xc9\x93\x27\x53\x41\x41\x01\x6f\ \x78\xd4\xe7\xfc\x79\xde\x47\x8c\x24\x9e\x4b\x37\x9e\x87\x36\x8e\ \x3c\xdf\xa7\xff\x01\xc3\xbf\x0b\xe7\x7f\x4b\x46\x46\xc6\x25\x4c\ \x94\xbc\xfe\xcb\xf8\x9a\x92\x9d\x9d\x4d\xc0\x36\xa3\x59\x22\xb4\ \xb8\x14\x28\x78\xae\xeb\x82\x07\x94\x30\xdc\xe5\xcc\xcc\x4c\x7e\ \x2c\xe3\xf5\x3b\x3d\x09\x09\x09\xbd\x58\x22\x7f\xde\xb8\x71\xa3\ \xb2\x7e\xfd\x7a\x42\x20\x05\xf8\xff\xa9\xf1\xf1\xf1\xdf\x04\x0a\ \x9e\xeb\xba\xe1\xe3\xe2\xe2\x7a\xf1\x3d\xe9\x98\x18\x79\x75\xf0\ \xdd\xaf\xc7\x63\x09\xcd\xd2\x77\x68\x99\xab\xb9\x75\x0e\xec\x97\ \xcb\xeb\xc7\xbf\xf3\x5b\x8f\xf0\x12\x26\xbd\xf3\xf8\xfc\x05\x37\ \x4c\x06\x20\x74\xd5\x75\xc5\xff\x3f\xd6\x98\xc6\x73\x8d\x69\x3c\ \x57\x7f\xf8\xd7\x81\xff\x69\xb4\xe3\xb9\xfa\xc2\x3f\x03\xfc\x57\ \xc0\x1f\x03\xde\x3d\x9a\xf1\x5c\x7f\xc6\x3f\x0c\x7c\x1a\xf0\x15\ \xc0\x57\x03\xdf\x00\xbc\x7b\xb4\xe2\xb9\xd4\xf8\xbb\x81\x7f\x03\ \x78\x13\xf0\x19\xc0\x2f\x05\xbe\x1a\xf8\x06\xe0\x7f\x56\xe3\x47\ \x65\x00\xc0\x8f\x03\x7e\x02\xf0\x6f\x02\x2f\x00\x9f\x01\xfc\x52\ \xe0\xbf\x06\xfe\x28\xf0\x6f\x8f\xfa\xf7\x0d\x02\x3f\x0e\xf8\x09\ \xc0\xbf\x09\xbc\x00\x7c\x3a\xf0\x9f\xf1\xd6\x77\xcc\xbc\x71\x12\ \xf8\x71\xc0\x4f\x00\xfe\x0d\xe0\x4d\xc0\x8f\x1f\x73\xef\x1c\x05\ \x7e\x1c\xf0\xe3\x81\xbf\x6f\xcc\xbe\x75\x16\xf8\xdb\x6e\xbc\x77\ \x78\x0c\xd4\x2f\x19\x7a\x10\x5a\x9c\x5b\xe4\x6d\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xa0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x02\xaf\x50\x4c\x54\x45\x00\x00\x00\x66\x66\x66\x6a\x6a\ \x6a\x69\x69\x69\x6a\x6a\x6a\x80\x80\x80\x55\x55\x55\x6a\x6a\x6a\ \x60\x60\x60\x6a\x6a\x6a\x71\x71\x71\x66\x66\x66\x6b\x6b\x6b\x69\ \x69\x69\xd5\xd5\xd5\x60\x60\x60\xb1\xb1\xb1\x69\x69\x69\x63\x63\ \x63\x69\x69\x69\x6b\x6b\x6b\x6b\x6b\x6b\x66\x66\x66\x68\x68\x68\ \x64\x64\x64\x6a\x6a\x6a\x69\x69\x69\xa0\xa0\xa0\xc6\xc6\xc6\xd3\ \xd3\xd3\x64\x64\x64\x63\x6b\x6b\x7d\x7d\x7d\x66\x6d\x66\x66\x66\ \x66\x6a\x76\x70\x68\x68\x68\x65\x65\x65\x68\x6e\x68\x8a\x8a\x8a\ \x69\x69\x69\x62\x67\x67\x61\x6b\x66\x66\x75\x6b\x64\x78\x69\x66\ \x6b\x66\xb5\xb5\xb5\xd6\xd6\xd6\x71\x71\x71\x77\x77\x77\x67\x67\ \x67\xd2\xd2\xd2\x76\x76\x76\x71\x71\x71\x78\x78\x78\xa0\xa0\xa0\ \x77\x77\x77\x7e\x7e\x7e\xc6\xc6\xc6\xd3\xd3\xd3\x78\x78\x78\x76\ \x76\x76\x8a\x8a\x8a\x69\x69\x69\x7e\x7e\x7e\x7d\x7d\x7d\xb5\xb5\ \xb5\xd6\xd6\xd6\x7d\x7d\x7d\x80\x80\x80\xd5\xd5\xd5\xb1\xb1\xb1\ \x8a\x8a\x8a\x69\x69\x69\xa0\xa0\xa0\xc6\xc6\xc6\xd3\xd3\xd3\x5b\ \x73\x64\x6c\x6c\x6c\x5c\x71\x64\x7d\x7d\x7d\x78\x78\x78\xb5\xb5\ \xb5\xd6\xd6\xd6\x7b\x7b\x7b\x8a\x8a\x8a\x69\x69\x69\xd2\xd2\xd2\ \xe2\xe2\xe2\x62\x8c\x74\x59\x75\x63\x5a\x74\x65\xad\xad\xad\xcb\ \xcb\xcb\xd5\xd5\xd5\x63\x89\x72\xa0\xa0\xa0\xbc\xbc\xbc\xc6\xc6\ \xc6\xd3\xd3\xd3\xbd\xbd\xbd\xd5\xd5\xd5\xcd\xcd\xcd\x62\x95\x76\ \x9e\x9e\x9e\x62\x92\x76\x62\x93\x76\x89\x89\x89\x62\x94\x75\x62\ \x95\x76\x62\x96\x76\xc3\xc3\xc3\x9e\x9e\x9e\x9d\x9d\x9d\x9e\x9e\ \x9e\xc7\xc7\xc7\x54\x7a\x63\x55\x7a\x63\x77\x77\x77\x78\x78\x78\ \x7a\x7a\x7a\x7d\x7f\x7e\xc9\xc9\xc9\x78\x78\x78\x77\x77\x77\x5f\ \xa2\x7a\x5f\xa3\x7b\x5f\xa3\x7b\x60\x9c\x79\x52\x7a\x62\xb5\xb5\ \xb5\xc1\xc1\xc1\xd6\xd6\xd6\x53\x7b\x62\x57\x75\x64\x7b\x7b\x7b\ \xa0\xa0\xa0\x5f\x7b\x6a\xd4\xd4\xd4\x54\x7b\x63\x91\x91\x91\x5e\ \x7f\x6b\x8d\x8d\x8d\xac\xac\xac\xd5\xd5\xd5\x99\x9b\x9a\xd4\xd4\ \xd4\xd5\xd5\xd5\xa3\xa3\xa3\xd4\xd4\xd4\x63\x79\x6b\xc7\xc9\xc8\ \xb1\xb1\xb1\x3c\x91\x5e\x5c\x72\x65\xc6\xc8\xc7\xd1\xd1\xd1\x3c\ \x91\x5e\x56\x7c\x65\x9e\x9e\x9e\x56\x7d\x66\x9e\x9e\x9e\xc2\xc2\ \xc2\xd4\xd4\xd4\xd5\xd5\xd5\xaf\xaf\xaf\xcf\xcf\xcf\x95\xa5\x96\ \xae\xaa\xa9\xb4\xba\xc0\xe1\xe1\xe1\x30\x9b\x5b\x57\xf1\x95\x59\ \xdf\x8f\x63\x86\x70\x96\x96\x96\xa5\xa5\xa5\xb1\xb1\xb1\xbc\xbc\ \xbc\xe1\xe1\xe1\x2c\x9f\x5a\x2c\xa0\x5a\x2d\x9e\x5a\x31\x9b\x5c\ \x3d\x95\x60\x3d\x96\x61\x54\x8e\x6b\x55\xfa\x97\x55\xfe\x98\x55\ \xff\x99\x56\xf9\x97\x56\xfa\x98\x57\xeb\x92\x58\xad\x7a\x58\xe6\ \x90\x59\xab\x79\x59\xac\x7a\x61\x86\x73\x62\x88\x70\x64\x88\x71\ \x66\x85\x6f\x66\x89\x73\x70\x85\x78\x79\x8e\x81\xae\xae\xae\xb0\ \xb0\xb0\xb5\xb5\xb5\xb7\xb7\xb7\xbc\xbc\xbc\xc8\xc8\xc8\xcd\xcd\ \xcd\xce\xce\xce\xcf\xcf\xcf\xd0\xd0\xd0\xd1\xd1\xd1\xd2\xd2\xd2\ \xd3\xd3\xd3\xd5\xd5\xd5\xd7\xd7\xd7\xd8\xd8\xd8\xda\xda\xda\xdb\ \xdb\xdb\xe5\xe5\xe5\xe7\xe7\xe7\xe8\xe8\xe8\xf7\xf7\xf7\xf8\xf8\ \xf8\xfd\xfd\xfd\xff\xff\xff\xf0\x9b\xcb\x83\x00\x00\x00\x01\x74\ \x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x01\x62\x4b\x47\x44\ \x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\ \x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\ \x4d\x45\x07\xde\x0a\x0a\x01\x3a\x32\x2d\x51\xca\xf4\x00\x00\x00\ \x6a\x49\x44\x41\x54\x18\xd3\x63\x60\x20\x16\xd4\xed\x9b\x1b\xc5\ \xe0\x81\xe0\x37\xec\xdd\xb9\x75\xeb\xb4\x96\x20\x84\xc8\x8e\xad\ \x40\x70\x2a\x0c\xce\x6f\xdb\x0a\x06\x51\x08\x15\xeb\xd0\x44\x36\ \x6f\x3a\x06\xe2\x6f\x83\xf3\x2f\x3c\x7a\x72\x02\xc8\x3f\x90\x05\ \xe1\x4f\xb9\x74\xfb\xc9\xd9\x7b\xdd\xdb\xd6\xe6\x41\x15\xf4\x47\ \x5c\x3d\x73\x0f\xd9\x55\xcd\x29\xd9\x28\xfc\x49\x1b\x97\xf6\x20\ \xf3\xa7\x6e\x44\xf3\xc6\x0c\xfc\xbe\x04\x00\x32\x8e\x34\x7c\xb4\ \xc5\xb0\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x57\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x02\x52\x50\x4c\x54\x45\x00\x00\x00\x5b\x5b\x5b\xaf\xaf\ \xaf\xff\xff\xff\x00\x00\x00\x80\x80\x80\x27\x27\x27\xb1\xb1\xb1\ \x24\x24\x24\xa4\xa4\xa4\x11\x11\x11\x22\x22\x22\x88\x88\x88\x99\ \x99\x99\x37\x37\x37\x7d\x7d\x7d\x71\x71\x71\x3a\x3a\x3a\x7f\x7f\ \x7f\x34\x34\x34\x76\x76\x76\x5b\x5b\x5b\xaf\xaf\xaf\x7e\x7e\x7e\ \xa3\xa3\xa3\x3f\x3f\x3f\x84\x84\x84\x3c\x3c\x3c\x80\x80\x80\x41\ \x41\x41\x84\x84\x84\x71\x71\x71\x4b\x4b\x4b\x84\x84\x84\x4c\x4c\ \x4c\x73\x73\x73\x9c\x9c\x9c\xc2\xc2\xc2\x58\x58\x58\x71\x71\x71\ \xac\xac\xac\xd1\xd1\xd1\xcf\xcf\xcf\x5b\x5b\x5b\xaf\xaf\xaf\x8a\ \x8a\x8a\xae\xae\xae\x99\x99\x99\xba\xba\xba\xc4\xc0\xc0\xcb\xcf\ \xcb\x44\x44\x44\x85\x85\x85\x98\x98\x98\x99\x99\x99\x9a\x9a\x9a\ \xb6\xb6\xb6\xb8\xb8\xb8\xb9\xb9\xb9\xb9\xb9\xb9\x67\x67\x67\x79\ \x79\x79\x84\x84\x84\x9e\x9e\x9e\x49\x49\x49\x5b\x5b\x5b\x66\x66\ \x66\x7d\x7d\x7d\x8c\x8c\x8c\xa3\xa3\xa3\xa7\xa7\xa7\xab\xab\xab\ \xaf\xaf\xaf\xc3\xc3\xc3\x2b\x2b\x2b\x31\x31\x31\x36\x36\x36\x37\ \x37\x37\x39\x39\x39\x3b\x3b\x3b\x3c\x3c\x3c\x40\x40\x40\x42\x42\ \x42\x44\x44\x44\x45\x45\x45\x46\x46\x46\x4a\x4a\x4a\x4e\x4e\x4e\ \x4f\x4f\x4f\x51\x51\x51\x53\x53\x53\x54\x54\x54\x57\x57\x57\x59\ \x56\x44\x5f\x5c\x4a\x65\x61\x45\x66\x66\x66\x67\x67\x67\x68\x68\ \x68\x69\x66\x54\x6a\x66\x4a\x6a\x6a\x6a\x6d\x6d\x6d\x6e\x6e\x6e\ \x71\x71\x71\x72\x6f\x5d\x77\x73\x57\x78\x78\x78\x79\x79\x79\x7c\ \x7c\x7c\x7d\x7d\x7d\x7e\x78\x55\x80\x82\x80\x82\x82\x82\x83\x82\ \x82\x85\x81\x65\x85\x85\x85\x86\x86\x86\x87\xaf\xec\x88\x88\x88\ \x89\x89\x89\x8a\x8a\x8a\x8b\x8b\x8b\x8b\xd4\x8b\x8d\x8d\x8d\x8e\ \x8e\x8e\x90\x90\x90\x92\x92\x92\x94\x94\x94\x95\x8d\x59\x96\x96\ \x96\x97\x97\x97\x9b\x9b\x9b\x9d\x9d\x9d\x9d\xc4\xff\xa0\xa0\xa0\ \xa1\xe7\xa1\xa7\xa7\xa7\xac\xac\xac\xaf\xaf\xaf\xb2\xb2\xb2\xb3\ \xb3\xb3\xb4\xb4\xb4\xb5\xb5\xb5\xb7\xb7\xb7\xbb\xbb\xbb\xbe\xbe\ \xbe\xc0\xd7\xc0\xc1\xc1\xc1\xc2\xcc\xd0\xc7\xc7\xc7\xc7\xe0\xc7\ \xc8\xc8\xc8\xc9\xcb\xd4\xcd\xcd\xcd\xce\xce\xce\xd1\xd1\xd1\xd2\ \xd2\xd2\xd3\xd3\xd3\xd4\xd4\xd4\xd5\xd5\xd5\xd7\xd7\xd7\xd8\xd8\ \xd8\xda\xda\xda\xdb\xdb\xdb\xdc\xdc\xdc\xdd\xdd\xdd\xde\xde\xde\ \xde\xed\xf1\xdf\xcf\xcf\xdf\xdf\xdf\xe0\xe0\xe0\xe1\xe1\xe1\xe2\ \xe2\xe2\xe3\xe3\xe3\xe4\xe4\xe4\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\ \xe7\xe7\xeb\xf5\xe8\xd8\xd8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\ \xec\xbc\xbc\xec\xec\xec\xed\xed\xed\xee\xee\xee\xf0\xf0\xf0\xf2\ \xf2\xf2\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf9\xf9\xf9\xfa\xfa\ \xfa\xfc\xfd\xff\xfe\xd0\xd0\xff\xff\xff\xb1\xd8\xa4\xd7\x00\x00\ \x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x01\x62\ \x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\ \x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\ \x07\x74\x49\x4d\x45\x07\xde\x0a\x0a\x01\x3b\x20\xc7\xf3\x8a\xfd\ \x00\x00\x00\x7e\x49\x44\x41\x54\x18\xd3\x63\x60\xc0\x05\x96\xee\ \xdc\xb3\x6f\xff\xde\xdd\xcb\x90\x05\x72\xf3\x90\x05\x96\x6c\xf3\ \x06\x82\x9d\x08\x81\x45\x9b\x02\x82\x43\x03\xb7\x2e\x86\x0b\x2c\ \x58\x1f\x9b\x9c\x19\xb7\x61\x21\x5c\x60\xee\xea\xad\x5b\xb7\x6d\ \x5d\x33\x0f\xca\xdd\x6b\x34\x65\xd9\xb2\xe5\xcb\x97\x2f\x9b\x03\ \xe1\x4f\x9b\xbc\xe2\x30\xb2\x1b\xa6\x55\xec\x9b\xb9\x45\x05\x89\ \x5f\xbb\x6f\x5f\xcd\x36\x24\x05\x9e\xe5\x89\x35\x13\x91\xf8\xea\ \x6e\x49\xed\xc8\x7c\x06\x0f\x1b\x63\x05\x64\xbe\x8e\x23\x03\x5e\ \x00\x00\xf1\x3d\x31\x22\x25\xe4\xf0\x12\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xe8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\ \x01\xbb\x01\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x09\x05\x15\x20\x35\x07\xf4\xc4\xa6\x00\x00\x02\x75\x49\x44\ \x41\x54\x38\xcb\x7d\x93\xbd\x4b\x5c\x69\x14\x87\x9f\x73\xdf\x3b\ \x1f\xd7\xc9\x04\xbd\x3a\x59\x89\x2b\x2c\x81\xac\x85\x01\xab\x45\ \x47\xb0\xc8\xb4\x61\x2b\xd3\x46\xf0\x42\xba\xfc\x01\x69\x6c\xf2\ \x47\x2c\xd8\x58\xa4\x48\x61\x91\x6e\x9b\x65\x09\xa4\xb0\x88\x2e\ \x92\x42\x09\x31\x11\x4c\xb2\x2e\x71\x67\x67\xd4\x99\x7b\x67\xee\ \xc7\x7b\xdf\x77\x8b\x51\x24\x89\xe6\xc0\xa9\xce\xe1\xe1\x77\x3e\ \x7e\xb2\xb3\xb3\x73\x5b\x44\x1c\x2e\x89\xf5\xf5\xf5\x87\x33\x33\ \x33\xcf\xa7\xa6\xa6\x5a\x5c\x11\xb2\xba\xba\xfa\x8f\x52\xaa\x74\ \x59\xd1\x5a\xeb\x01\xa9\x88\xe4\x97\xd5\x8d\x31\xda\xad\xd5\x6a\ \xc5\xcd\xcd\x4d\xbf\xd5\x6a\xe1\x79\x1e\xa5\x52\x89\x62\xb1\x48\ \xa1\x50\x40\x29\x05\xe0\x19\x63\xd0\x5a\x93\x65\x19\x49\x92\x10\ \xc7\x31\x23\x23\x23\xcc\xce\xce\xb6\x5d\x11\x61\x7f\x7f\x9f\x27\ \xd3\xf7\x19\x1d\x1b\xbb\xc0\x6b\x03\xa9\x86\x34\x85\x5c\x43\x76\ \x9e\x39\xad\x6e\x9b\x27\x27\xaf\x98\x9b\x9b\xc3\x3d\x93\x42\x2d\ \xb4\x8c\x0e\xa7\x50\x49\xa1\x12\x41\x33\x84\x3c\x84\xb4\x07\xfd\ \x04\xc2\x18\xc2\x0c\x3a\x39\xce\xbf\xa7\xe4\x93\x83\xa9\x5c\x11\ \x21\xcf\x73\xc4\x39\x85\xb2\x86\x5f\x9b\x70\x2d\x82\x83\x0e\xfc\ \x79\x04\xf4\xc0\xc6\x90\x24\x80\x01\x9d\x23\x36\x25\xcf\xc7\x07\ \x80\x73\x05\xe9\xd8\x67\x8e\x3c\x8b\x1c\xf6\xa9\x4d\xde\x44\xaa\ \x31\xd8\xff\x80\x2e\xb8\x1d\x42\x2f\xa4\x9d\x84\x20\x9a\xb8\x5c\ \xc4\xda\x1f\x2e\x00\xe5\x72\x99\xa7\xcd\x03\x2a\x61\x89\xf0\x75\ \x07\xc7\xee\x61\xd3\x3e\xd1\x49\x97\xc3\xe3\x88\x56\x37\x22\x0a\ \xbb\x38\x3a\xa5\xe8\x40\x98\x74\xf0\xef\xc8\x05\xe0\xf8\xf8\x98\ \x17\x87\x6f\x18\xbf\xe1\xf3\xd3\x84\x62\x7c\xc4\xf2\xf6\xe0\x84\ \x0f\x7f\x47\x74\xba\x7d\xa2\xb0\x47\xaa\x73\x44\x1c\xdc\x82\x22\ \x49\x85\x72\xaf\x87\x88\x0c\x00\x59\x96\xf1\xee\xa0\xcd\xe7\x93\ \x53\x6e\x4d\xe4\x18\x9b\xd3\xcf\x0c\x7b\x47\x0e\x51\x5c\x42\xb9\ \xc3\xa4\x3a\xa5\x5a\xad\xe2\xba\x2e\xcd\x4e\x93\xb1\x2c\xbb\x58\ \xa2\xd6\x9a\xea\xc4\xcf\x94\xaf\x0b\x2d\xd7\x10\x9b\x84\x53\xa5\ \x29\xd7\x84\x3c\xf6\x28\x0d\x0d\x61\x8c\x41\x29\x85\x52\x8a\xe1\ \xa1\x1a\x5a\xeb\x01\x60\x77\x77\xf7\xd3\xca\xca\xca\x37\xaf\x7c\ \x77\x00\xf6\x94\x52\x89\x88\x98\xb3\xcf\xfc\xa2\x67\x7b\x7b\xfb\ \x23\xd6\xda\x2b\x73\x69\x69\xe9\xf1\xf2\xf2\xf2\xf8\xf7\x7a\x9c\ \xab\x4c\x12\x04\xc1\xe4\xf4\xf4\xf4\x2f\xc6\x98\x07\x41\x10\x14\ \xae\x34\xd3\xd7\xb2\x82\x20\xa8\xcd\xcf\xcf\x3f\xda\xd8\xd8\xe8\ \xb7\xdb\xed\xd1\x4a\xa5\xf2\xc7\xc2\xc2\xc2\xbd\xad\xad\xad\xbf\ \x80\x67\x6b\x6b\x6b\xe6\x6b\xc7\x9d\xcf\x26\xf5\x7a\xfd\xb7\x7a\ \xbd\xfe\x7b\xa3\xd1\xf8\x11\xa8\xf8\xbe\xff\xd2\xf7\xfd\x45\xe0\ \xda\xe2\xe2\xe2\xdd\x46\xa3\xf1\xde\xf7\xfd\x99\xb3\xf3\x8b\xb5\ \x96\xff\x01\xc9\xc1\x53\x44\x49\xea\x21\xa6\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x7e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x10\x2d\x0c\xf4\x57\x9a\x8e\x00\x00\x03\x0b\x49\x44\ \x41\x54\x38\xcb\x6d\x93\x51\x68\x5b\x65\x14\xc7\x7f\xdf\xf7\xdd\ \xdc\xe4\xde\x26\x4d\x6e\x6c\x5d\xe7\x43\xbb\x8d\x6a\xd7\x0d\xb6\ \xc8\x6c\x4b\x71\x7b\x99\x58\x86\x74\xee\x61\x79\xdb\xc3\x60\xee\ \xc5\xa7\x29\xcc\x3e\x09\x32\xf7\xaa\xb0\x27\xb5\x42\x11\x0a\x0a\ \xe2\x40\x86\x28\xc3\x8a\x15\x14\x66\xeb\x48\xd5\x75\x6d\xc7\x6c\ \xdd\xd2\xd0\x2e\xc9\x6e\x5d\x9a\xde\xe4\xe6\x26\x37\xd7\x87\x36\ \xda\x87\xfd\xe1\x70\x38\x0f\xe7\xc7\x9f\xff\xe1\x08\x80\xd5\xc1\ \xc1\x93\x95\x85\x85\x70\x00\xb4\xaa\xb9\xd3\x7d\x00\xa5\xc4\xd1\ \xd3\xa7\xa7\xae\x5d\xba\x54\x7f\x7b\x60\x80\xdd\x12\x77\xfb\xfb\ \x5f\x31\xae\x5e\xfd\xc1\xf3\x3c\x44\x10\x10\x08\x81\xd8\x59\x6e\ \xcd\x01\xb0\x35\x39\xf9\xcd\xc0\xcd\x9b\xaf\xcf\x01\x2f\xee\x02\ \x68\xd9\xc5\x45\xa3\x73\x65\x85\xba\x94\xf8\xd1\x28\xe6\xbd\x7b\ \x6c\xc5\xe3\x44\xcb\x65\x9c\x68\x14\xe5\xba\xe8\x9e\x47\x31\x93\ \x79\xee\x8f\x58\x2c\xd5\x7b\xfe\xfc\xd2\x07\x17\x2f\xba\x97\x53\ \xa9\x6d\x80\x07\xd2\x59\x5b\xa3\x7d\x68\x88\xa4\xae\xe3\x26\x12\ \xb4\xf9\x3e\x28\x45\x5b\xb3\x89\x00\x90\x92\xf6\xe1\xe1\x63\x4d\ \xdf\x9f\xfb\x7b\x7a\x7a\xfa\x72\x2a\x75\xf2\x3f\x07\x1e\x48\xd7\ \x75\xe9\xe9\xec\xa4\x78\xfb\x36\xbe\x52\x38\x3d\x3d\xc4\xb2\x59\ \x9c\x8e\x0e\xcc\x8d\x0d\xaa\xf1\x38\xc2\xf3\x88\x94\xcb\x14\x66\ \x67\xe3\xad\xe5\x20\x08\xd0\x9a\x20\xb7\x72\xab\x00\x54\xd6\xd7\ \x89\x8c\x8c\x70\xb8\xbb\x9b\xc2\xc4\x04\x1d\x07\x0e\x50\xcd\xe7\ \xb1\x2c\x0b\x42\x21\xb6\x1e\x3e\x64\x8f\xae\xbf\x70\x67\x78\xf8\ \xfb\xd8\x91\x23\x6e\x46\x88\xb3\x5a\x5d\x29\x8a\x3f\x4e\x21\xdf\ \x19\xa3\xb2\xb9\x49\xff\xf1\xe3\xfc\x35\x3a\x8a\x71\xee\x1c\xa5\ \x9d\x30\xbd\x56\xa8\xa9\x14\x1a\x44\x7d\x78\xd5\x69\x6f\x67\x69\ \x7c\x7c\x44\x7a\x42\x10\x0a\x2b\xe6\xc7\xde\xa4\xbc\x9a\x45\x2a\ \x85\x63\x17\xa9\x16\x0a\xd4\xfa\xfa\x48\x9c\x3a\x45\xc5\x71\xd8\ \x9b\x4e\xe3\xe4\xf3\x74\x9e\x39\x43\xd9\xf3\xa8\xd9\x36\x35\x90\ \xd2\x93\x20\x75\x45\xf9\xfe\x02\xf9\x99\x5b\x68\xe1\x30\x41\xc2\ \xa2\x5a\x2a\xd1\x7d\xf0\x20\xc5\xeb\x5f\xa1\x35\x9b\x18\x86\x41\ \xcd\x7e\x4c\x60\xdb\x74\x8d\x8e\x52\xc9\xe7\xb7\x01\x8d\x90\x26\ \x02\x01\x5e\x1d\x42\xba\x64\xee\x42\x9a\x40\x69\x98\xbd\xbd\x68\ \x4a\xe1\xdc\xf9\x0d\xe5\xda\x54\x5d\x17\xdd\xb5\x79\x74\xe3\x3a\ \x71\xcb\x42\x9a\xe6\x36\x60\xbf\x27\xbe\x73\x65\xf8\xa7\x42\x43\ \x2d\x2a\x5d\x51\x9c\xba\x41\x79\xf9\x2e\x76\x26\x83\x52\x8a\xe0\ \xfe\x0c\xea\xd1\x12\x55\x5f\xc0\xd2\xcf\x54\xb2\x0b\xe8\xa6\xc9\ \xfc\xa7\xe3\x48\xa5\x84\x68\x9d\xe4\x23\x33\x3c\x14\xb2\xc2\xbf\ \x9a\xce\x26\xf8\x1a\x95\xb0\x41\x7a\x39\xc7\xfc\x67\xd7\x78\xf6\ \xf3\xf7\x30\xba\x92\x3c\x5e\xde\x20\xfe\xe5\xef\x44\xa4\xe2\xeb\ \x97\x8e\xe2\xd6\xc5\x59\xad\x05\x48\x1a\x89\xf9\x27\x6d\xfa\x6c\ \xc1\xf5\x62\x66\x23\xd8\xa7\xaa\x65\x23\xfb\xe1\xbb\xf4\xbd\xf5\ \x3e\x85\x81\x13\x94\x0a\x39\xc2\xfb\x0e\x93\x7c\xfe\x10\xb7\x5e\ \xee\x25\x12\x33\x28\xfd\x53\x43\xf0\x14\x7d\x12\x8b\xcc\x48\xdf\ \x1d\xdc\x9b\x84\xfd\x27\x8e\xf1\x4c\xfa\x0d\x9a\xc9\x2e\xfc\x3f\ \x7f\x61\xed\x8b\x09\x72\x0f\x4a\x94\x64\x94\x75\xdb\xfd\xdf\xc1\ \x6e\x69\x5d\x7b\x2a\xca\x2b\x81\x25\x78\x92\x5b\xc1\xff\x78\x0c\ \x4d\x36\x71\x7d\x8d\xaa\x54\x88\x0e\x0b\x3d\x12\x27\x28\xac\xd6\ \x9e\xea\x60\x12\x8c\x15\x78\xcd\x87\xa0\x01\x34\x76\xde\x5b\x00\ \x12\x50\x80\x0e\xb5\x2b\xf0\xed\xbf\x79\xf3\x43\xbb\xce\x3c\x87\ \xbb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0e\xa5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x08\ \x08\x13\x38\x23\xba\xbc\x64\x71\x00\x00\x0e\x44\x49\x44\x41\x54\ \x78\xda\xed\x5a\x6b\x70\x1b\xd7\x79\x3d\x7b\x77\xf1\x20\x77\x89\ \x07\x01\x02\x58\x08\x20\x60\x12\x7a\x50\x14\x95\x09\x6d\x2a\xae\ \x6d\xc9\x9a\xa8\xb5\x1d\xd7\x49\xed\xa9\x62\xc7\xf5\x34\x8e\x9b\ \xb1\xd3\x71\xa6\x3f\x3a\x76\x3d\x99\x36\xd3\x69\x3d\xc9\xb8\xd5\ \xb4\x75\xf3\x23\x7f\x1c\xd7\xca\x34\x75\xd3\x46\x76\x6c\xa7\x8d\ \x5d\x37\xb1\x2d\xb7\xb2\x13\xc9\x94\x68\x51\xe2\x13\x24\x21\x52\ \x20\x40\x91\x00\x89\xf7\x3e\xb0\xbb\xb7\x3f\x24\x70\x40\x8a\x20\ \x01\x4a\x8a\xdb\x94\x67\x66\x07\xfb\xc2\xee\x9e\xf3\x3d\xee\xf7\ \xdd\x5d\x60\x0b\x5b\xd8\xc2\x16\xb6\xb0\x85\x2d\x6c\xe1\xff\x29\ \x98\x4f\xe2\xa6\x4f\x3d\xf5\x94\x79\x69\x69\xa9\x45\x51\x14\x73\ \xb1\x58\x54\x39\x8e\x2b\xbd\xf2\xca\x2b\xd2\xaf\x85\x00\xc1\x60\ \x10\x17\x2f\x5e\x04\x00\xf4\xf6\xf6\xf2\x99\x4c\xe6\x4e\x49\x92\ \x6e\x37\x99\x4c\xbd\xbd\xbd\xbd\x7b\xba\xba\xba\x02\x92\x24\xa1\ \x58\x2c\x42\x92\x24\x94\x4a\x25\x48\x92\x04\x59\x96\xa1\x28\xca\ \x99\x72\xb9\xfc\x1a\xcf\xf3\xcf\x1f\x3f\x7e\xbc\xf8\x7f\x46\x80\ \x50\x28\x84\xe9\xe9\x69\x00\xc0\x4d\x37\xdd\xf4\x85\x42\xa1\xf0\ \x79\x96\x65\xef\x2b\x97\xcb\x3e\x00\x60\x98\xcb\xb7\x31\x0c\x03\ \x86\x61\xa0\xbb\xbb\x1b\x7d\x7d\x7d\x50\x55\x75\x59\x80\xea\x5f\ \x59\x96\x41\x29\xfd\xf6\xc0\xc0\xc0\x37\x7b\x7b\x7b\x71\xe6\xcc\ \x99\xff\x7d\x02\xf8\xfd\x7e\x24\x12\x09\x00\xc0\xb6\x6d\xdb\x7e\ \x5f\x51\x94\x3f\x00\x70\x50\xd7\xf5\x65\xc2\x00\x40\x08\x59\x79\ \xc3\xaa\x63\x87\x0e\x1d\x82\x28\x8a\xc8\xe5\x72\x90\x65\x19\xa5\ \x52\x69\x59\x08\x49\x92\xa0\xaa\x6a\x8a\x65\xd9\xdf\x39\x73\xe6\ \xcc\x87\x37\x4a\x08\xb6\xd1\x3f\xb4\xb7\xb7\x23\x9b\xcd\xc2\xe9\ \x74\xf6\x71\x1c\xf7\xbc\xd5\x6a\x3d\xa6\xaa\xea\x03\x86\x61\x84\ \x29\xa5\x2b\x08\x56\xd6\x57\xef\xab\x2c\xd1\x68\x14\xc5\x62\x11\ \x3b\x77\xee\x5c\xde\xc7\xb2\x2c\x08\x21\x95\xed\x66\x55\x55\xbf\ \xea\xf3\xf9\x7a\xfc\x7e\xff\x1b\xd1\x68\x54\xff\xc4\x04\x10\x45\ \x11\x85\x42\x01\x16\x8b\xe5\x0b\x56\xab\xf5\x27\xa5\x52\xe9\x1b\ \x94\xd2\xee\x0a\xe9\x6a\x92\xd5\x44\xab\x51\xf1\x86\xca\x7e\x42\ \x08\x32\x99\x0c\x46\x47\x47\x11\x0e\x87\x61\xb7\xdb\xc1\x30\x0c\ \x08\x21\x60\x59\x76\x79\xdd\x30\x8c\xdd\x8b\x8b\x8b\xdf\xf4\x78\ \x3c\x97\xe6\xe7\xe7\xfb\x7b\x7b\x7b\x91\x4c\x26\x7f\x35\x02\xb8\ \xdd\x6e\x94\x4a\x25\x08\x82\x70\x33\xc7\x71\xef\xab\xaa\xfa\x75\ \xc3\x30\x5c\xab\xc9\xd5\xb2\xf4\xea\x63\x6b\x85\x84\x61\x18\x18\ \x1e\x1e\x06\xc3\x30\xe8\xec\xec\x5c\x3e\xaf\xe2\x0d\x15\x8f\xd0\ \x34\xed\x3e\xb7\xdb\xfd\x88\xc5\x62\xf9\xcf\x44\x22\x91\xde\xbb\ \x77\x2f\x2e\x5d\xba\x74\xe3\x72\x40\x5b\x5b\x1b\x16\x16\x16\xe0\ \x70\x38\x5e\xd6\x34\xed\xf7\x56\xbb\xf4\x7a\x2e\x5e\xcb\x1b\xd6\ \xfb\x2f\xa5\x14\x82\x20\xe0\xae\xbb\xee\x02\x21\x64\x45\x62\xac\ \x24\xc7\xca\x2f\xc3\x30\xdf\x1b\x1e\x1e\x7e\xe2\x86\x7a\x80\xcd\ \x66\x0b\x13\x42\x2e\xe8\xba\xde\xb7\x16\xd1\x5a\x84\xd7\x8b\xfb\ \xb5\x42\xa2\x7a\xbb\x5c\x2e\xe3\xfc\xf9\xf3\xe0\x79\x1e\xc1\x60\ \xf0\xf2\x43\xae\xcc\x0b\x20\x84\x40\xd7\xf5\x9b\x9d\x4e\xe7\x9f\ \x89\xa2\x38\x39\x3f\x3f\x7f\xae\xa7\xa7\x07\xf3\xf3\xf3\xd7\x4f\ \x00\x97\xcb\xf5\x19\x59\x96\xcf\x53\x4a\xad\xab\x09\xad\x45\xb2\ \x96\xdb\x6f\x64\xf9\xb5\x3c\x81\x10\x82\x44\x22\x81\xd9\xd9\x59\ \x6c\xdf\xbe\x1d\x26\x93\xe9\xaa\xbc\x70\x45\x10\x56\x55\xd5\xdf\ \x75\xb9\x5c\xf7\x5b\xad\xd6\x37\x93\xc9\x64\xae\xbb\xbb\x1b\x0b\ \x0b\x0b\x9b\x17\xc0\xe7\xf3\x41\x10\x84\x1e\x59\x96\x4f\x53\x4a\ \x6b\x92\xad\xe5\x11\x8d\x0a\xb3\x5e\xc2\x94\x65\x19\xe7\xcf\x9f\ \x47\x6b\x6b\x2b\x44\x51\x5c\xe1\x0d\xd5\x8b\x61\x18\x3e\x49\x92\ \xfe\xd8\xed\x76\x3b\x46\x47\x47\xdf\x7e\xf6\xd9\x67\xf1\xde\x7b\ \xef\x35\x2e\x80\xcb\xe5\x82\xcf\xe7\x33\x2f\x2c\x2c\x5c\xa0\x94\ \xb2\xf5\x92\xaf\x65\xf1\x46\xad\x5f\xcb\x1b\x66\x66\x66\x90\x4a\ \xa5\x10\x89\x44\x96\x05\x58\x9d\x20\x19\x86\x81\xae\xeb\xb7\x3a\ \x1c\x8e\x67\x46\x46\x46\x86\x52\xa9\xd4\xd8\xce\x9d\x3b\x91\x4e\ \xa7\xeb\x17\x40\x92\x24\x28\x8a\xf2\xb2\x61\x18\x9f\xda\xc8\xd5\ \xeb\x1d\x01\x36\xb2\xf6\x5a\x79\x60\xf5\x75\x09\x21\x28\x16\x8b\ \x18\x1d\x1d\x85\x28\x8a\x68\x6d\x6d\x5d\x51\x33\x54\x87\x06\x00\ \x93\xa2\x28\x5f\x72\x38\x1c\xf7\x08\x82\xf0\xd3\xb9\xb9\xb9\x42\ \xdd\x02\xf8\xfd\x7e\x97\x2c\xcb\xff\xd8\x08\xd9\x5a\xe7\x34\x92\ \xfd\x1b\x09\x93\xa9\xa9\x29\x48\x92\x84\x8e\x8e\x8e\xab\x42\xa1\ \xe2\x0d\x84\x10\x50\x4a\x03\x85\x42\xe1\xe9\xd6\xd6\xd6\xa6\x4c\ \x26\xf3\xf3\x5a\x49\x72\x85\x00\x2d\x2d\x2d\x7f\x24\xcb\xf2\x6f\ \xd5\x7a\xc8\xf5\xc8\xd6\xeb\xda\xf5\xd4\x0a\xeb\x6d\x13\x42\x90\ \xcb\xe5\x10\x8d\x46\x11\x08\x04\x96\x8b\xa7\xea\x91\x62\x55\x58\ \xdc\x61\xb3\xd9\x9e\xa2\x94\x9e\x5d\x5c\x5c\x8c\xae\x0e\x8b\x15\ \x02\xec\xda\xb5\xab\x49\x96\xe5\x2f\xab\xaa\xba\x29\x01\x6a\x59\ \x7d\xa3\xa1\xb3\xd1\x7c\x51\x29\x9e\xa2\xd1\x28\x0c\xc3\x40\x38\ \x1c\x5e\xb3\x82\xac\x0a\x0b\x8b\x2c\xcb\x8f\xd8\xed\xf6\x43\x7e\ \xbf\xff\xdf\x66\x66\x66\x4a\x6b\x0a\x90\x48\x24\xa6\x3a\x3a\x3a\ \x7c\x99\x4c\xe6\x96\xcd\x90\xaf\x37\xb1\x6d\x56\xa0\xd5\xfb\x58\ \x96\xc5\xd2\xd2\x12\xa6\xa6\xa6\x10\x0a\x85\xc0\xf3\xfc\xea\x61\ \x72\x45\xf9\xad\x28\x4a\x88\xe7\xf9\x67\xf6\xee\xdd\xfb\xe3\x89\ \x89\x89\xf9\xab\x2a\xc1\xce\xce\x4e\x4c\x4e\x4e\x62\xe7\xce\x9d\ \x34\x1e\x8f\xaf\x48\x48\x9b\x21\xbf\x91\xab\xd7\x22\x56\x4b\xbc\ \x5a\x9d\x25\xa5\x14\x9a\xa6\xa1\xa7\xa7\x07\xbb\x76\xed\x42\x2e\ \x97\x5b\xee\x28\x33\x99\x0c\xda\xdb\xdb\x61\xb7\xdb\xb1\xb4\xb4\ \x84\x91\x91\x11\x70\x1c\xd7\xdd\xdf\xdf\x3f\x5c\xb3\x14\x0e\x06\ \x83\xef\xb1\x2c\x7b\x67\x3a\x9d\x66\x1a\x15\x60\x3d\xcf\xd9\xa8\ \x3b\xac\xc7\xfa\xeb\xe5\xa7\x4a\x29\x7d\xeb\xad\xb7\x82\xe7\x79\ \x74\x75\x75\x61\x7a\x7a\x1a\x27\x4e\x9c\xa0\xb1\x58\xcc\x68\x6a\ \x6a\x62\x58\x96\x7d\x69\x62\x62\xe2\xf1\x75\x2b\x41\x9f\xcf\x77\ \x33\x80\x3e\x5d\xd7\x19\x4d\xd3\xae\xd9\xfa\x8d\x8a\xb1\x56\xf7\ \xb8\xd6\x79\xd5\xed\x37\xc3\x30\x90\x24\x09\xbd\xbd\xbd\xe8\xea\ \xea\x42\x36\x9b\xc5\x0b\x2f\xbc\xa0\x4f\x4e\x4e\x52\x42\x08\xe3\ \xf5\x7a\x89\xd3\xe9\x64\x78\x9e\xff\xc3\x96\x96\x96\x44\xa5\x5a\ \x64\xd6\x9a\xe8\x70\x3a\x9d\x7f\x2e\x49\xd2\x5f\x9a\xcd\x66\x63\ \x76\x76\x96\xd4\x93\xf8\x1a\x21\x5f\x0f\xe1\xf5\xac\xaf\xeb\x3a\ \x02\x81\x00\xb6\xef\xfd\x34\xde\x7f\xfb\x4d\x94\x55\x15\x87\x0f\ \x1f\x86\x28\x8a\x38\x7e\xfc\x38\x46\x47\x47\x35\x51\x14\x19\x97\ \xcb\xc5\xf2\x3c\x0f\x4a\x29\x54\x55\x85\xa2\x28\x78\xe7\x9d\x77\ \x56\x3c\x04\xb7\x9a\x4c\x22\x91\x40\xa1\x50\x80\xd7\xeb\x85\xaa\ \xaa\x8c\xdf\xef\xa7\xb3\xb3\xb3\xcc\xea\xf8\xdb\x4c\x82\x5c\x6d\ \xb1\xea\x7d\x15\x8b\xae\x75\xbd\xca\x39\x94\x52\x84\x42\x61\x98\ \xc3\x5d\x70\x44\xba\xb1\x34\x35\x84\xc3\x0f\x3e\x04\xbb\xc0\xe3\ \xd8\xb1\x63\xb4\x5c\x2e\x1b\xdb\xb6\x6d\xc3\x81\x03\x07\x38\x41\ \x10\xa0\xeb\x3a\x64\x59\xae\x4c\xb1\xd5\xd7\x0b\x38\x9d\x4e\x64\ \xb3\xd9\xf7\x19\x86\x79\xd2\x66\xb3\x09\x9a\xa6\x51\x8b\xc5\xc2\ \xc8\xb2\x7c\x4d\xd6\x6f\x24\x57\xd4\x3a\xcf\x66\xb3\x61\x52\x08\ \xe2\xc2\x85\x69\xdc\xe1\xe2\x10\x74\xd9\xf0\xe3\x57\x5f\x35\xc6\ \xc6\xc6\xf4\x40\x20\xc0\x74\x77\x77\xb3\xed\xed\xed\x84\xe7\xf9\ \xe5\x39\x48\x4d\xd3\x96\x17\x5d\xd7\x11\x0e\x87\x2f\x96\xcb\xe5\ \x81\x7c\x3e\x5f\x7b\x3e\xc0\x6e\xb7\x43\xd3\xb4\x1d\x76\xbb\x7d\ \xcc\x6e\xb7\xc3\x30\x0c\x3d\x9d\x4e\xb3\x95\xfa\x60\x23\x32\xf5\ \x86\x4c\x3d\x35\x41\xf5\x7a\xb9\x5c\xc6\x7d\xf7\x7e\x0e\x7c\x4b\ \x0b\x5e\x7f\xfd\x0d\x2a\x08\x82\x11\x08\x04\x18\x9f\xcf\x47\x9c\ \x4e\xe7\x72\x08\x51\x4a\x51\x2e\x97\xa1\xaa\xea\xf2\x8c\xb3\x2c\ \xcb\x50\x55\x15\xf9\x7c\x7e\xea\xd4\xa9\x53\x9d\x35\x43\x00\x00\ \xb2\xd9\x2c\x00\x8c\x6b\x9a\xf6\xb4\x20\x08\x7f\x43\x29\x65\xbd\ \x5e\xaf\x31\x3d\x3d\x4d\x1a\x1d\x1a\xeb\x09\x95\xd5\x73\x89\xd5\ \xdb\x95\xf8\x3d\x78\xf0\x20\xdc\x6e\x37\xde\x7a\xeb\x2d\xea\xf1\ \x78\xf4\xbb\xef\xbe\x9b\xf5\x7a\xbd\xac\xa2\x28\xc8\x66\xb3\x98\ \x9f\x9f\x87\xcb\xe5\x82\xc9\x64\xaa\x79\x6f\x42\x88\x51\x28\x14\ \xa6\x1b\x9a\x15\x6e\x6e\x6e\xfe\x20\x1c\x0e\xdf\x26\xcb\x32\xe5\ \x38\x0e\xc9\x64\x92\xa9\xa7\xda\x6b\x44\x80\xf5\x2c\xde\xdd\xdd\ \x8d\x8e\x8e\x0e\x9c\x38\x71\x82\xb2\x2c\x6b\x3c\xf2\xc8\x23\xa4\ \x6f\xdf\x3e\x06\x94\x62\x61\x61\x01\x03\x03\x03\x48\x26\x93\xd0\ \x75\x1d\x3c\xcf\xc3\xe9\x74\xc2\x30\x8c\xab\x3c\x40\x55\x55\xcc\ \xcc\xcc\xc0\x30\x8c\x08\xc7\x71\x93\x67\xcf\x9e\xdd\x58\x80\x2b\ \x6e\xd5\x04\x20\xe3\xf5\x7a\xcd\xe5\x72\xd9\x28\x16\x8b\xa4\x58\ \x2c\x5e\x53\xaf\xb0\x51\x5e\xa0\x94\xc2\xe3\xf1\xa0\xa7\xa7\x07\ \x23\x23\x23\xc8\xe7\xf3\xfa\x9e\x3d\x7b\x98\x23\x47\x8e\x10\xaf\ \xc7\x83\x42\xb1\x88\xa1\xa1\x21\x9c\x3a\x75\x0a\xad\xad\x2e\xb8\ \xda\xdc\x28\x14\x4a\x98\x9c\x9c\x80\x5c\x2a\x5e\x15\x02\x8a\xa2\ \x60\x7a\x7a\x1a\xf9\x7c\xfe\x9e\xf1\xf1\xf1\xb7\xeb\x9e\x12\x93\ \x65\x19\x92\x24\x69\x1c\xc7\x7d\x48\x08\x79\xd4\x62\xb1\x30\x56\ \xab\xd5\x28\x95\x4a\xcc\x6a\xb7\xbd\x16\xf2\xd5\xc7\x59\x96\xc5\ \xbe\x7d\xfb\x40\x29\xc5\xb9\x73\xe7\x34\x87\xc3\x41\x6f\xbf\xfd\ \x76\xf6\xe8\xd1\xa3\x8c\xcf\xe7\x83\xd9\x62\xb9\x6c\x6d\x41\x40\ \xcf\x9e\x3d\x18\x1d\x1b\xc3\x3f\xbc\xf8\x22\xce\x0d\x0e\xa2\x23\ \xb2\x1d\x20\x04\xba\xaa\xc2\x30\x0c\xe8\xba\x0e\xc3\x30\x30\x33\ \x33\x83\xc5\xc5\xc5\xaf\x4c\x4c\x4c\xbc\xba\xa9\x69\x71\x55\x55\ \x63\x1c\xc7\x79\x2d\x16\x4b\x1f\xc3\x30\x8c\x20\x08\x46\x3e\x9f\ \x67\xd6\xeb\xe4\x1a\x15\x40\xd7\x75\xec\xde\xbd\x1b\xa2\x28\x62\ \x70\x70\xd0\xe0\x38\x4e\x8f\x44\x22\x5c\x24\x12\x21\xcf\x3d\xf7\ \x1c\x38\x93\x09\xa0\x14\x1c\xc7\xc1\x62\xb1\xe0\xe8\x4b\x47\xf1\ \xad\xbf\xfa\x16\x7e\x79\xf2\x43\x5c\x98\x9a\x46\x34\x3a\x8e\x64\ \x32\x81\xe0\x4d\x9d\x20\xa0\xd0\xf5\xcb\xaf\x10\xa2\xd1\x28\x16\ \x16\x16\xbe\x36\x39\x39\xf9\xd2\xa6\xdf\x0b\xb8\xdd\x6e\xa4\xd3\ \xe9\x9f\x72\x1c\xf7\x68\x4b\x4b\x8b\x53\x51\x14\x34\x37\x37\xa3\ \x54\x2a\x31\xeb\x95\xa6\xf5\x90\x37\x0c\x03\x6e\xb7\x1b\xbb\x76\ \xed\x42\x2c\x16\xa3\x85\x42\x41\x0f\x85\x42\x24\x14\x0a\xb1\x4d\ \x4d\x4d\xf8\xca\x63\x8f\x41\xe0\x79\x68\xe5\x32\x8a\x85\x02\x32\ \xd9\x1c\xfe\xe4\x1b\x4f\xa3\xe7\x50\x37\xb8\x16\x40\x6c\xf7\x62\ \x68\x68\x08\x72\x41\x05\xc7\x71\xe8\xbd\xa5\x0f\x54\xd7\x00\x80\ \x0e\x0e\x0e\x32\xa9\x54\xea\xcb\x13\x13\x13\x47\x6b\xdd\x9f\xab\ \x47\x80\x54\x2a\x05\xa7\xd3\x89\x62\xb1\x78\xc0\x62\xb1\x5c\x74\ \x38\x1c\x4c\xa1\x50\x30\x9a\x9b\x9b\x19\x49\x92\x36\x35\x1a\x54\ \x84\xd9\xbd\x7b\x37\xb2\xd9\x2c\xc6\xc7\xc7\x35\xb7\xdb\x4d\xfc\ \x7e\x3f\xd7\xdc\xdc\x0c\x96\x65\x11\xe9\xec\x04\xc7\xb2\x48\xa7\ \xd3\x28\x16\x8a\x98\x5f\x5a\xc4\x0f\x7f\xf4\x03\x6c\xbf\x37\x84\ \x7f\x1f\x7c\x1d\x03\x27\xfa\xe1\x80\x13\x9c\x95\x59\x7e\x31\x9b\ \x5e\x5c\x84\x93\x6f\x32\x4e\x9e\x3c\x49\x0a\x85\xc2\x3d\xd1\x68\ \xf4\xed\xf5\x9e\x81\xab\xf7\x61\x97\x96\x96\x00\x20\x4e\x08\x79\ \xbc\xa9\xa9\xe9\x7b\x66\xb3\x99\x98\xcd\x66\x43\x96\x65\xd2\xa8\ \xeb\xeb\xba\x8e\x60\x30\x08\x9e\xe7\x31\x35\x35\xa5\xdb\x6c\x36\ \xda\xd9\xd9\xc9\xd9\xed\x76\x70\x1c\xb7\xec\x19\x3e\x51\xc4\xa5\ \xb9\x39\xc4\x24\x09\x0b\x99\x0c\xde\xfd\xd9\x3b\x18\x69\xfe\x05\ \xfa\x7f\x42\x71\xef\x6d\x0f\x80\xd7\x6d\x60\x38\x02\x29\x7b\xb9\ \x3e\x71\xb4\xb6\x22\x9f\xc9\x68\x67\x7e\xf9\x41\x19\x60\x6e\x19\ \x1b\x1b\x1b\xde\x88\x17\x69\xd4\x6a\xf9\x7c\xfe\xc5\x74\x3a\xfd\ \x1f\x57\xe6\xe6\x19\xaf\xd7\x4b\x0d\xc3\xa8\x9b\xbc\xd9\x6c\x46\ \x57\x57\x17\xf2\xf9\x3c\x92\xc9\xa4\xe6\xf7\xfb\x49\x38\x1c\xe6\ \x6c\x36\xdb\x8a\x76\xb7\xb9\xb9\x19\xa9\x85\x05\xc4\xe3\x71\x9c\ \x3b\x77\x0e\x27\x4f\x9d\xc6\xd9\xe9\x53\xc8\xce\x17\xb0\xdd\xb9\ \x07\xe7\xfe\x7b\x18\x77\xdd\x7a\x37\x74\xc9\x40\x71\xe9\x72\x95\ \x6a\x11\x6c\x18\x1c\x38\x13\x6b\x6f\x0f\xb5\x69\x9a\x36\x5c\x0f\ \x1f\xae\x51\x01\xdc\x6e\x37\x6c\x36\xdb\x6f\x2f\x2d\x2d\x65\x5c\ \x2e\x57\x8b\xa2\x28\x46\x6b\x6b\x2b\x93\xc9\x64\x36\x4c\x72\xc1\ \x60\x10\x84\x10\xc4\x62\x31\xdd\x66\xb3\xc1\xe3\xf1\x70\x3c\xcf\ \x83\xe3\xb8\xab\xfa\x00\x45\x51\x70\xe9\xd2\x25\xcc\xcc\xcc\x20\ \x2f\xab\x18\x3a\x3b\x80\xfb\x0f\x3d\x00\x8b\xc5\x02\xc3\xa0\xf8\ \xcc\x67\xf7\x01\x2c\xc5\xf7\x5f\xf8\x27\x00\xc0\xc1\x43\xbf\x09\ \x8e\x61\xfe\x65\x72\x72\xe2\x61\xa1\x45\xc0\xe8\xe8\x28\x6e\x88\ \x00\xa9\x54\x0a\xaa\xaa\x1a\x86\x61\x7c\xd6\x6a\xb5\x7e\xc4\xf3\ \x3c\xd1\x75\x5d\x37\x9b\xcd\x2b\x4a\xe5\x6a\xeb\x9b\xcd\x66\x04\ \x02\x01\xcc\xcd\xcd\x51\x00\xba\xd7\xeb\xe5\x1c\x0e\x07\xcc\x66\ \x73\xed\x90\x5b\x5c\x44\x59\x55\x91\xc9\x64\xe0\xef\xd8\x81\x5c\ \x26\x83\x92\x52\x82\xd3\xe5\x04\x61\x08\xde\x3f\x71\x1c\x43\x1f\ \x8f\x20\xbd\xb0\x88\xfd\xfb\xf7\xe3\x8b\x0f\x3e\x34\xfc\xf5\xaf\ \x3d\xfe\xf0\xfd\x87\x1f\xc4\xeb\xaf\xfc\xa8\x6e\x3e\x64\x33\xc9\ \x2b\x97\xcb\xa1\x50\x28\xf4\x67\xb3\xd9\xe7\xae\x0c\x37\xac\xc7\ \xe3\xd1\x2b\xa1\x50\xdd\xb6\x7a\xbd\x5e\xb8\x5c\x2e\x5c\xbc\x78\ \x51\x33\x99\x4c\x54\x14\x45\xce\xe1\x70\x80\x65\xd9\x75\xf3\x46\ \x36\x9b\xc5\x42\x2a\x05\xb5\x5c\x86\xdd\x26\x60\x6e\x2e\x89\x85\ \xd9\x34\x2e\x25\x2f\x61\x29\x95\x41\x7c\x2a\x89\x8f\x4e\xf5\xe3\ \x89\x27\x9e\xc0\x6b\xaf\xbd\xbe\xb8\x98\x9a\xef\xfd\xeb\xbf\xfd\ \xbb\x86\xc8\x6f\xca\x03\x56\x25\xc6\x3f\x35\x99\x4c\x9f\x6f\x6b\ \x6b\xdb\xa3\x28\x0a\x1b\x0a\x85\x8c\x78\x3c\x4e\x0c\xc3\x80\xd9\ \x6c\x46\x28\x14\xc2\xfc\xfc\x3c\x35\x0c\x43\x73\x3a\x9d\x26\x9b\ \xcd\x06\x93\xc9\x04\x4a\x69\xcd\xf6\xb4\xba\x17\x58\x4c\xa7\xe1\ \x6c\x6d\x45\x5b\x5b\x1b\x00\xe0\xdd\x77\xde\x45\x20\x10\x40\x2e\ \x97\x43\x2a\x95\xc2\x43\x5f\x7a\x18\x47\x8e\x1c\x99\x3d\xf9\xd1\ \x47\xbb\xee\x3c\x70\xa7\x72\x60\xff\x1d\x0d\x73\x20\xd7\x22\x80\ \xc7\xe3\x81\xae\xeb\x77\xe6\xf3\x79\x6a\xb1\x58\x50\x2c\x16\x19\ \x51\x14\xf5\x70\x38\x4c\xdb\xda\xda\x30\x3b\x3b\xab\x01\x30\x5c\ \x2e\x97\x49\x10\x84\xca\x7c\xfd\x86\xc3\x26\xa5\x14\x81\x60\x10\ \x92\x2c\x63\x2e\x91\x80\x89\xe3\xf0\xe8\x63\x5f\x05\x43\x08\xe2\ \x89\x04\xda\x7c\x22\x7e\xf0\xcf\x3f\xc4\x77\xfe\xfe\xf9\x97\x05\ \x41\x08\xb4\x07\x83\x85\xcd\x90\xaf\xab\x19\xaa\x07\x6d\x6d\x6d\ \x87\xed\x76\xfb\xb1\x96\x96\x16\x94\x4a\x25\x64\x32\x19\x9d\x10\ \xc2\x58\xad\x56\x22\x08\x02\x38\x8e\x03\xcb\xb2\xe0\x38\x0e\x84\ \x90\x0d\x7f\x2b\xd3\xdb\x1c\xc7\x21\x97\xcb\x81\x17\x04\xed\x37\ \xee\xd8\xcf\xed\x88\x44\x60\xb1\x58\x8d\x50\x7b\xe0\x35\x00\x7f\ \xd1\xd9\xd1\x71\x7e\x68\x78\x18\xdd\xbb\x77\xdf\x98\xef\x03\x1a\ \x81\x28\x8a\xff\xea\x76\xbb\xbf\x08\x80\x91\x24\x69\x99\x74\xf5\ \xd2\x88\x00\x26\x93\x09\xaa\xaa\x6a\xb1\x58\x8c\x4b\xa5\x52\xbf\ \xe0\x58\xf6\xc9\xa9\x58\xec\xe3\xca\xfd\x4e\x9f\x19\xc0\xcd\xbd\ \x9f\xbe\xe6\xe7\x26\xd7\x83\x7c\x20\x10\x40\x32\x99\x7c\x28\x97\ \xcb\xa5\xd6\x8b\xed\xba\xde\xd6\xb2\x2c\xcd\xe5\x72\xda\xe0\xe0\ \x20\x4e\x9e\x3c\xf9\xf3\x52\xa9\xf4\xa9\x99\x99\x99\xdb\x9a\x9a\ \x9b\x3f\xae\x3e\xef\x7a\x90\xbf\x6e\x02\xc4\xe3\x71\x88\xa2\x88\ \x62\xb1\xb8\x5f\x51\x94\x86\x4b\xe3\x2b\x6f\x7a\xb4\x44\x22\x81\ \xd3\xa7\x4f\x1b\xc3\xc3\xc3\xdf\x25\x84\x78\xe3\xf1\xf8\xe7\x28\ \xa5\x83\x00\x30\x34\x34\x84\x1b\x01\xee\x7a\x5d\xe8\xca\x47\x4b\ \x63\x26\x93\xe9\x19\x9e\xe7\x8f\x6c\xa8\xfc\xe5\xf7\xfa\x5a\x36\ \x9b\x25\x99\x4c\x86\x14\x8b\xc5\x0f\x2c\x16\xcb\x77\x63\xb1\xd8\ \x31\x00\xb0\x5a\xad\x00\x80\xb1\xb1\x31\xdc\x48\xdc\x90\x4f\x65\ \x45\x51\x7c\x5f\x10\x84\xdb\x2d\x16\x0b\x5b\x9d\xd0\x38\x8e\x33\ \xca\xe5\xb2\x21\x49\x12\x77\xe5\x5b\x9f\xff\x32\x99\x4c\x2f\x7b\ \x3c\x9e\xef\xf7\xf7\xf7\xab\x91\x48\x04\x13\x13\x13\xf8\x55\xe2\ \xba\x0b\x10\x08\x04\x10\x8f\xc7\xe1\xf5\x7a\xbf\xcd\xb2\xec\x93\ \x1c\xc7\x39\xae\x58\x1b\xe5\x72\x39\x06\xe0\x67\x16\x8b\xe5\x8d\ \x0b\x17\x2e\xbc\x09\x00\x3b\x76\xec\xc0\xf8\xf8\x38\x7e\x6d\x11\ \x89\x44\x9a\xfc\x7e\xbf\xab\xaf\xaf\x6f\xb9\xf4\x0b\x85\x42\xd8\ \xc2\x16\xb6\xb0\x85\x2d\x6c\x61\x0b\x5b\xd8\xc2\x27\x8c\xff\x01\ \x07\x1f\x88\x16\x7c\x3d\x3f\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x03\x92\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x02\x52\x50\x4c\x54\x45\x00\x00\x00\x5b\x5b\x5b\xaf\xaf\ \xaf\xff\xff\xff\x00\x00\x00\x80\x80\x80\x27\x27\x27\xb1\xb1\xb1\ \x24\x24\x24\xa4\xa4\xa4\x11\x11\x11\x22\x22\x22\x88\x88\x88\x99\ \x99\x99\x37\x37\x37\x7d\x7d\x7d\x71\x71\x71\x3a\x3a\x3a\x7f\x7f\ \x7f\x34\x34\x34\x76\x76\x76\x5b\x5b\x5b\xaf\xaf\xaf\x7e\x7e\x7e\ \xa3\xa3\xa3\x3f\x3f\x3f\x84\x84\x84\x3c\x3c\x3c\x80\x80\x80\x41\ \x41\x41\x84\x84\x84\x71\x71\x71\x4b\x4b\x4b\x84\x84\x84\x4c\x4c\ \x4c\x73\x73\x73\x9c\x9c\x9c\xc2\xc2\xc2\x58\x58\x58\x71\x71\x71\ \xac\xac\xac\xd1\xd1\xd1\xcf\xcf\xcf\x5b\x5b\x5b\xaf\xaf\xaf\x8a\ \x8a\x8a\xae\xae\xae\x99\x99\x99\xba\xba\xba\xc4\xc0\xc0\xcb\xcf\ \xcb\x44\x44\x44\x85\x85\x85\x98\x98\x98\x99\x99\x99\x9a\x9a\x9a\ \xb6\xb6\xb6\xb8\xb8\xb8\xb9\xb9\xb9\xb9\xb9\xb9\x67\x67\x67\x79\ \x79\x79\x84\x84\x84\x9e\x9e\x9e\x49\x49\x49\x5b\x5b\x5b\x66\x66\ \x66\x7d\x7d\x7d\x8c\x8c\x8c\xa3\xa3\xa3\xa7\xa7\xa7\xab\xab\xab\ \xaf\xaf\xaf\xc3\xc3\xc3\x2b\x2b\x2b\x31\x31\x31\x36\x36\x36\x37\ \x37\x37\x39\x39\x39\x3b\x3b\x3b\x3c\x3c\x3c\x40\x40\x40\x42\x42\ \x42\x44\x44\x44\x45\x45\x45\x46\x46\x46\x4a\x4a\x4a\x4e\x4e\x4e\ \x4f\x4f\x4f\x51\x51\x51\x53\x53\x53\x54\x54\x54\x57\x57\x57\x59\ \x56\x44\x5f\x5c\x4a\x65\x61\x45\x66\x66\x66\x67\x67\x67\x68\x68\ \x68\x69\x66\x54\x6a\x66\x4a\x6a\x6a\x6a\x6d\x6d\x6d\x6e\x6e\x6e\ \x71\x71\x71\x72\x6f\x5d\x77\x73\x57\x78\x78\x78\x79\x79\x79\x7c\ \x7c\x7c\x7d\x7d\x7d\x7e\x78\x55\x80\x82\x80\x82\x82\x82\x83\x82\ \x82\x85\x81\x65\x85\x85\x85\x86\x86\x86\x87\xaf\xec\x88\x88\x88\ \x89\x89\x89\x8a\x8a\x8a\x8b\x8b\x8b\x8b\xd4\x8b\x8d\x8d\x8d\x8e\ \x8e\x8e\x90\x90\x90\x92\x92\x92\x94\x94\x94\x95\x8d\x59\x96\x96\ \x96\x97\x97\x97\x9b\x9b\x9b\x9d\x9d\x9d\x9d\xc4\xff\xa0\xa0\xa0\ \xa1\xe7\xa1\xa7\xa7\xa7\xac\xac\xac\xaf\xaf\xaf\xb2\xb2\xb2\xb3\ \xb3\xb3\xb4\xb4\xb4\xb5\xb5\xb5\xb7\xb7\xb7\xbb\xbb\xbb\xbe\xbe\ \xbe\xc0\xd7\xc0\xc1\xc1\xc1\xc2\xcc\xd0\xc7\xc7\xc7\xc7\xe0\xc7\ \xc8\xc8\xc8\xc9\xcb\xd4\xcd\xcd\xcd\xce\xce\xce\xd1\xd1\xd1\xd2\ \xd2\xd2\xd3\xd3\xd3\xd4\xd4\xd4\xd5\xd5\xd5\xd7\xd7\xd7\xd8\xd8\ \xd8\xda\xda\xda\xdb\xdb\xdb\xdc\xdc\xdc\xdd\xdd\xdd\xde\xde\xde\ \xde\xed\xf1\xdf\xcf\xcf\xdf\xdf\xdf\xe0\xe0\xe0\xe1\xe1\xe1\xe2\ \xe2\xe2\xe3\xe3\xe3\xe4\xe4\xe4\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\ \xe7\xe7\xeb\xf5\xe8\xd8\xd8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\ \xec\xbc\xbc\xec\xec\xec\xed\xed\xed\xee\xee\xee\xf0\xf0\xf0\xf2\ \xf2\xf2\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf9\xf9\xf9\xfa\xfa\ \xfa\xfc\xfd\xff\xfe\xd0\xd0\xff\xff\xff\xb1\xd8\xa4\xd7\x00\x00\ \x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x01\x62\ \x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\ \x00\x00\x03\x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\ \x07\x74\x49\x4d\x45\x07\xde\x0a\x0a\x10\x27\x36\xc8\xb4\xab\xb6\ \x00\x00\x00\xb9\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x83\x65\xdb\ \x77\xed\xde\xb5\x9d\x01\x01\x96\xee\xee\x4f\xdd\xbb\x1b\x49\x60\ \x89\xf7\x36\xa0\x9a\x9d\xdb\xe0\x02\x8b\xc2\xb7\xed\xde\x77\x60\ \xcf\x4e\xb8\xc0\xfc\xf0\xad\x60\x35\xbb\x20\x6a\x34\x19\x66\xaf\ \xda\x08\x56\xb3\x17\xac\xc6\x7a\xf2\x8a\xc3\x0c\x6b\x80\x6a\x80\ \x00\xa4\xc2\xb2\x7b\xdf\x4c\x4d\x86\x65\x40\x35\xc1\xa1\x81\x9b\ \x80\x02\x2d\x09\x39\xd3\x26\xb7\x1d\x04\xaa\xc9\x2a\x4e\x59\xcb\ \xc0\xa0\xdc\x59\x3b\xad\x62\xdf\x0e\x90\x9a\xd5\xab\x57\x2f\x67\ \x60\x90\x73\xd2\xab\xdd\xb7\xcf\x60\x59\xc7\xc4\x39\x20\xc0\xa0\ \xe3\xc8\x60\x52\xda\x60\x59\xb1\x6f\xe6\x72\xb8\x23\xec\x0b\xf5\ \xba\xf7\xed\xab\xd1\x80\xf1\x33\x24\x19\x4c\x3a\x1b\xba\xcc\x90\ \x7c\xc2\x60\xef\xe4\x6a\x8a\xcc\x07\xaa\x81\x03\x00\xac\xef\x4d\ \xb3\xa1\xf6\xd2\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x10\xd6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x08\ \x08\x13\x3a\x38\x02\xef\xcf\x1f\x00\x00\x10\x75\x49\x44\x41\x54\ \x78\xda\xed\x5a\x79\x70\x1c\xd5\x9d\xfe\xde\x7b\x3d\xf7\x68\x46\ \x33\xba\x46\x1a\xc9\x92\x2c\xc9\x58\xb2\x65\xb0\x7c\x81\xc1\x76\ \xb0\x8d\x31\x60\xae\x2c\x60\x58\xb2\xe6\x5a\x48\x01\xbb\xd9\xcd\ \x2e\xe1\x0a\xb5\xbb\x95\x02\xb2\x86\x2c\x0e\x95\x4a\x52\xcb\x0d\ \xc1\x1b\x16\x93\x98\x23\x18\x8c\x0d\xc4\xac\xc1\x85\x6d\x6c\x8c\ \x2d\xf9\x94\x2f\xdd\xe7\xdc\x33\x7d\xbf\xfd\x63\x66\xe4\x56\x6b\ \x24\x64\x07\xc2\x92\xd5\xaf\x6a\xaa\x7b\xba\xdf\x4c\xf7\xf7\xbd\ \xef\x77\xbd\x6e\x60\xc2\x26\x6c\xc2\x26\x6c\xc2\x26\x6c\xc2\x26\ \xec\xff\xa9\x91\x6f\xe2\xa2\x5b\x6e\xff\x5b\xeb\x60\x24\x94\x27\ \x4b\x92\x35\x99\x88\xcb\x6e\x81\x26\xaf\x7d\xf7\x83\xd4\x5f\x04\ \x01\x3f\x2d\x70\xe1\x81\x81\x04\x00\xe0\xd9\xa9\x93\x5c\xb1\x50\ \x68\x91\x22\x8a\xe7\x33\x8b\xa5\x29\xd8\x34\x77\x7a\x61\x7d\x63\ \xb9\x2c\xa6\x20\xc5\x62\x90\x92\x49\x48\xc9\x24\xc4\x54\x12\xb2\ \x24\x42\x92\xa4\x5d\xb2\x24\xad\xf7\xe4\xe5\xad\xb9\x7b\xc7\xe7\ \x89\x6f\x0d\x01\x3f\x29\xf2\xe0\x5f\xfa\xa2\x00\x80\xd5\xc5\x9e\ \x2b\xc4\x44\xfc\x72\x81\x09\x2b\x74\x45\x0e\x30\x02\xd0\xcc\x85\ \x08\x07\x88\x0e\x14\xd6\xd7\xa3\x6c\xee\x79\x50\x25\x19\x72\x22\ \x01\x29\x95\x44\x2a\x43\x44\x2a\x95\x82\x98\x4a\x01\xe0\x8f\x3c\ \x78\xe8\xf8\x43\xab\xcf\xaa\xc6\x7d\x07\x8f\xfd\xdf\x23\xe0\x9e\ \x7c\x07\x7e\x16\x4e\xab\xf6\x21\x9f\xf3\x6f\x14\x49\xba\x95\x82\ \x7f\x87\x68\x3a\x18\x05\x18\x00\x21\x03\x9e\x02\x60\x24\x43\x02\ \x00\x4a\x00\x70\xa0\x7a\xf1\xc5\x70\x95\x96\x23\x15\x8d\x42\x4e\ \x26\x86\xd4\x90\x4a\xa5\x90\x4c\xa6\xa0\xa8\x52\xbf\xc0\x2c\x57\ \xde\x77\xf0\xe8\x27\x5f\x17\x11\xec\xb4\x81\x17\x78\xf0\x49\x4a\ \xc2\x42\xb7\x73\xce\x4c\xae\xae\x99\x27\x60\x9d\x24\x29\x57\x03\ \xbc\x8a\x70\x0e\x42\x4e\x81\x24\x00\x08\x49\x5f\x84\x18\x94\x40\ \x49\x9a\x90\x48\x6b\x2b\xb4\x44\x14\x85\x53\xea\x41\x09\x05\x25\ \x14\x8c\xa6\x3f\x16\x4a\x40\x40\x9d\xb2\x22\xde\xb6\xd8\x9f\xdf\ \x18\x28\x0e\xbc\xf1\x46\x5b\x87\xf6\x8d\x11\xf0\x77\x5e\x27\xb6\ \x4b\x0a\xce\x66\xfc\x8a\x26\x86\x37\xe3\x49\xf1\x7e\x0e\x3e\x0d\ \x3c\x0d\x8e\x64\xb4\x34\x04\xd4\x04\x98\x1a\x88\x19\x52\x05\x03\ \x94\x48\x08\xe1\x03\x7b\x91\x5f\x55\x03\xbb\xc7\x0b\x0a\x40\xa0\ \x14\x94\x31\x30\x4a\x20\x10\x0a\xae\x6b\x0d\x91\xf0\xe0\x43\x17\ \xf9\xbc\x3d\x9b\xc3\xd1\x9d\x3f\x9b\x52\x85\xf7\x06\xc2\x7f\x1e\ \x02\x6e\x75\x59\xb1\x5b\xd1\xd0\x64\x63\xb3\xa6\x41\xdf\x22\x2a\ \xea\xdd\x3a\xe7\x05\xc4\x30\xc3\x43\x3e\x6e\x3e\x66\xd8\x9a\x8f\ \x51\x03\x19\x44\xd7\x11\xde\xbf\x1f\x8c\x72\xf8\xaa\xa7\x80\x01\ \xa0\x84\xa4\x89\xa0\x34\xbd\x05\xa0\x68\xca\x8a\x0b\xf3\x5c\x37\ \x5a\xac\x96\xf7\xde\xeb\x0f\x0f\xac\xae\x09\x62\x73\x28\xf6\xf5\ \xc5\x80\x5b\xdd\x36\x3c\x17\x97\xf0\x3d\x3b\x5b\x2b\xab\xda\x5f\ \xb3\x0c\x63\x34\x23\x6b\x8a\x53\xbe\xce\x32\x7e\x2e\x64\xb6\xd9\ \xe3\x82\xe9\x3c\x33\xfc\x56\xc8\xaa\x22\xeb\x32\x1c\xb0\xb8\xdd\ \x08\x2e\x59\x01\x50\x06\x39\x11\x87\x98\x4a\x67\x8a\x54\x32\x89\ \x94\x98\x82\x28\xa6\x90\x12\x45\x70\x4a\x9e\xfe\xf1\xf1\xee\x3b\ \xbe\x56\x05\xcc\x71\x58\xab\x26\xeb\xda\x71\x55\xd7\xe7\x64\xd9\ \x22\x99\x1d\x02\x53\x50\x83\x61\xb6\x8d\x33\x6d\x8c\x09\x26\x37\ \x30\x8e\x19\x1a\xab\xca\x88\xb4\xec\x83\xcd\xe5\x84\xbb\xbc\x0a\ \x8c\xeb\x10\x28\x03\x63\x14\x8c\x50\x50\x42\x40\x29\x01\x57\xd5\ \x59\x8b\xdc\xb6\x1f\x2f\xf3\x7b\x5b\x37\x87\xe3\x7b\x1f\xaf\x2e\ \xc5\xa6\x70\xfc\xab\x23\x60\x95\xd3\x32\x2f\x2a\xc9\xfb\x38\xe7\ \xf6\x21\xa0\x18\x09\x34\xeb\xf7\xc0\x48\xf9\x1b\xc9\x32\x12\x90\ \x1d\xc3\x0c\x63\x99\x31\x40\x52\x40\xea\xea\x80\xd8\x71\x1c\xf9\ \xb5\xf5\x10\x2c\x56\x30\x42\x20\x30\x06\x81\x10\x30\x4a\x41\x29\ \x01\xe5\x60\x8a\x22\xff\xd5\xe2\x3c\xfb\x55\x4e\xbb\x73\xc3\x3b\ \x03\x91\xe8\x63\x95\xc5\xd8\x14\x49\x9c\x39\x01\xb7\x79\x6c\x98\ \x6d\xb3\x36\x46\x25\xe9\x33\xce\x4f\xf9\xf7\x10\x70\xe3\x77\xa3\ \x12\x4c\xfb\x34\xc7\x77\x9a\x21\x84\xe6\x50\x89\x31\x55\x32\x00\ \x94\x02\x5c\x12\x11\xdb\xbf\x17\x76\x9f\x0f\xae\x40\x10\x8c\xf3\ \x21\x25\xa4\xb3\x45\x9a\x0c\xe8\x7a\x20\x29\x26\x7e\xb8\x38\xcf\ \x91\xff\x40\xfb\xc0\xc6\x8f\xef\xfb\x01\x9e\xfb\xf8\xd3\xd3\x27\ \x60\x95\xd3\x82\xe9\xc5\xc5\xd6\x23\x03\xa1\xe3\x9c\x83\x19\x67\ \x9d\x98\x88\xa0\xc4\x74\x9c\x18\xc6\x1a\x32\x42\xce\xe0\x68\x92\ \xbd\x71\x9f\x19\x09\xc9\x90\x92\xea\x38\x09\x65\xa0\x07\xde\x9a\ \xb3\xc0\x18\x83\x40\x29\x18\x65\x10\x08\x4d\x8f\xa5\x04\x0c\x04\ \xba\xa6\x9d\xbb\xc8\x65\xb9\xb7\xad\xa5\xa5\xf9\xfd\x68\xf2\xe0\ \x63\xe5\x7e\x6c\x8a\xa6\xc6\x4f\xc0\x1e\x45\x87\x3f\x99\x58\xab\ \xea\xfa\xd9\x46\x1f\x37\x13\x81\x1c\x0a\x30\x13\x32\x6c\xc6\xcd\ \xaa\x30\xed\x8f\x15\x17\x48\x26\x70\xf2\x64\x1c\xf1\x83\xfb\xe0\ \x2a\x09\xc0\x5e\x50\x9c\x26\x27\x9b\x21\x68\x26\x3e\xa4\xef\xd3\ \xa2\xc8\xe2\xf5\x17\xba\x2d\xcb\xbd\x6e\xef\xdb\x1b\x06\xa3\xf1\ \x71\x13\x70\xa7\xdf\x5d\x10\x13\xa5\x97\x8c\x72\xcf\x29\x7d\xd3\ \xac\x1b\x63\x01\xc9\x91\x12\x91\x43\x05\x30\x83\x37\xed\x9b\x53\ \xe5\x90\x1a\x4e\x1c\x03\x4f\x44\xe1\xa9\xae\x1b\x2a\x9a\x04\x92\ \x76\x07\x4a\x29\x28\x08\x18\x21\x00\xe7\xe5\x91\x44\xf4\x9e\x65\ \x79\x76\xc7\xfb\x09\x79\xf3\x13\xd5\xc5\xd8\x18\x4e\x8c\x4d\xc0\ \x34\x87\xe3\xef\x45\x51\xba\x88\x92\xe1\x33\x6e\x76\x03\x6a\x52\ \xc0\x88\x0c\x60\x76\x0b\xe3\x6c\x9b\x62\x41\x76\x9f\x99\x08\x60\ \xb9\x5c\x05\xe9\x00\xa9\xc7\x22\x48\x1e\xd9\x0f\x67\x59\x05\x6c\ \xde\xfc\x8c\x1a\x18\x04\x4a\x32\xf1\x81\x80\x90\xf4\xbe\xaa\x29\ \x17\x2c\x72\xd0\x7f\xa6\x3a\xf6\x6c\x8a\x4b\x87\xd7\x04\xbd\xd8\ \x18\x93\x72\x13\xb0\xb2\xa6\xc2\x11\x11\xe5\x55\x9a\x22\xc3\xec\ \x02\x23\xd4\x40\x72\x07\x45\x8c\x92\x1e\xa9\x19\xfc\x18\xaa\xa1\ \xa6\xc0\x39\xac\x78\xca\x66\x0f\xae\x23\x75\xb4\x15\x54\x93\xe1\ \xaa\xac\x49\x17\x4e\x64\xb8\x4b\xa4\xeb\x0e\x06\x00\xb6\x94\x9c\ \xba\x71\xa9\xd3\xb2\x64\x72\x71\xc9\x5b\xeb\x7a\x43\xc9\x9c\x04\ \xbc\xdf\x3b\x78\xf4\xf2\x49\xa5\x81\xc1\x68\x6c\x36\x38\x1f\x55\ \xfa\xc6\x9b\xa6\x66\xa2\x4c\xc4\x98\xd3\xa2\xb1\x6c\xa6\xa6\x0a\ \x11\xa6\xc0\x68\xec\x1b\xcc\x2e\x41\x01\x58\x28\xa0\x45\x06\x91\ \x3a\x71\x08\xee\x8a\xc9\xb0\x38\x5d\x60\x84\xa6\x95\x40\x69\xa6\ \xbf\xc0\x90\x5b\x28\x52\xaa\x32\xee\xf5\xdf\xfb\x44\x5d\xf0\xf7\ \xbf\x6e\xeb\xed\x1d\x51\x09\xfe\x43\xb0\x10\x4f\x76\xf4\xe3\xa6\ \xaa\x72\x9e\x38\xd9\x0e\x81\xe6\x96\xbe\x71\x46\x46\x53\x06\x33\ \xf8\xad\xb1\x4a\xa4\x00\x2c\xe4\x54\x75\x68\x21\xa7\xce\x09\x24\ \x73\xce\x70\xdc\x62\xa8\x2e\x05\x8c\x8c\x0f\xd9\xeb\x6b\x2a\xe0\ \x98\x3a\x1d\xf6\x29\x8d\x90\xa2\x51\x88\x62\xba\x7a\x8c\x87\x42\ \xb0\x56\xd7\xc0\xed\xcf\x47\x61\xa4\x0f\xce\xe6\xcf\xd0\xc9\x6c\ \xd3\x16\xec\xef\x6e\x19\xb5\x14\xae\x2f\x0f\x7e\xb8\x48\x11\x17\ \x85\x07\x06\xc8\x97\x49\x7f\x98\x12\x8c\xa5\x2d\x86\x17\x3b\xd9\ \xd6\xd8\x62\x20\x25\x4b\x44\x96\x14\x23\x58\x2b\x19\x5e\x4a\x0b\ \x86\x73\xc3\x8a\x28\xc3\xb5\x75\x1d\x80\xcb\x0d\xf7\xac\x85\xe0\ \xae\x3c\x38\x67\x9c\x0d\xa1\xed\x30\xe8\xd6\x4d\x7c\xeb\x89\x76\ \x7d\xb3\xab\x98\x6c\xb7\xba\x9f\x6b\x69\x3d\x7a\x7b\x16\xab\x90\ \x8b\x00\xcd\xe9\xda\xbb\x47\x66\x0b\xa7\xda\x13\x44\x14\xc5\x11\ \xd2\x47\x0e\x02\x8c\xd5\x20\xd2\xed\xfe\xb0\xad\x9e\xe9\x1a\x75\ \xc3\x6f\x74\x00\x1a\x4f\x7f\xd1\x00\x50\x7e\x8a\x60\x8d\x9f\x72\ \x01\x3d\xf3\x7b\x4e\x00\xce\x0d\xf7\xc1\x4d\x6e\x24\x02\x79\x73\ \x1a\xe1\x6a\x98\x02\xa1\xfd\x38\x0e\x3f\xfc\xa0\xf6\x8e\xaf\x08\ \x1f\xfa\xca\x28\xa9\xaf\x62\x0e\x81\xc1\xaf\x69\x4f\x5d\x66\x65\ \x78\x7b\xff\xe1\xdc\x04\x34\x04\x4a\xc0\x2d\x96\xfe\x2e\x4d\xa3\ \x15\xc5\x25\x3a\x3b\x71\x82\x12\x32\xbc\x7b\x22\x26\xe9\xe4\x4a\ \x97\x43\xe7\x39\xa0\x67\x6e\x98\x67\x40\x93\xcc\x8d\x67\x49\x21\ \x3c\x03\x72\x14\x22\x28\xd2\xe0\xf5\xac\x1b\xaa\x80\x1a\x0c\xa2\ \x6f\xe6\xf9\x08\xbe\xf3\x2a\x98\x04\xf8\xaf\xbb\x06\xf6\xb2\x0a\ \x28\x1f\x6e\xc0\x07\xff\xf9\x0b\x75\x73\x45\x3d\x69\x3b\x6f\x39\ \x2b\x74\x3a\x10\xe4\x1c\xb2\x2c\x43\x92\x24\x6c\xd9\xb2\x65\x87\ \x11\xef\x08\x02\x5a\xba\x7b\x70\x5e\x38\x04\xb9\xa2\x12\x3b\x35\ \x46\x96\x05\xcb\x78\xac\xbd\x93\x50\x36\x32\xea\x93\xd1\xd2\x9f\ \x91\x00\x03\x53\x3c\x3b\x8b\xd9\xd9\x37\xfc\x87\x6e\x98\x75\x9d\ \x9c\xfa\x4e\x0d\xa4\x30\x00\xf1\xca\x5a\xbc\x5d\x77\x2e\xda\xa7\ \xce\xc2\x35\x07\x3f\x41\xc3\xca\x9b\xe1\x71\x3b\x11\x7e\xf5\x45\ \xbe\x5e\xb7\xe8\x1f\x56\x4d\x87\x6b\x69\x93\x90\xef\x76\xa1\x56\ \xd3\x20\x8a\x22\x44\x51\x04\xe7\x7c\x7c\xbd\xc0\x22\xb7\x03\x5b\ \x93\xd2\x96\x6a\x4d\xbd\x4b\xcb\xcf\x77\x77\x71\xf0\xb3\x28\x27\ \xb2\x24\xe5\x8e\xfa\x39\xe2\x02\x1d\x83\x1c\x73\x13\x45\x4d\x2b\ \x48\xd9\x81\xb9\xea\x06\x3d\xcf\x83\x07\x0b\xcf\x41\x7e\xeb\x01\ \xfc\xc4\x23\xa2\xde\xe7\x42\x78\xdd\x4b\xfa\x2b\xad\x6d\xda\xb3\ \x35\x4d\x24\x35\x63\x2e\x2b\xad\xac\xa4\x79\x2e\x57\xda\xed\x74\ \x1d\xaa\xaa\x0e\x7d\x34\x4d\x43\x79\x55\x55\xdb\x3b\xa1\xe3\xbb\ \x7f\x25\x8d\xb1\x1e\x70\xa9\xdd\x02\xaf\xa8\x4c\xd9\x13\x28\x39\ \xc8\x7d\x05\x98\x24\x27\xb5\x8a\xae\x0e\xa6\x2a\xca\x88\x02\x29\ \x57\x50\xa4\xb9\xda\x64\x63\xb7\x67\x08\x90\x82\x79\x6b\x0c\x7c\ \x86\x00\x68\x21\x00\x95\x81\xda\xcb\x2e\x81\x2b\x2f\x0f\x3d\xaf\ \xbf\xca\xdf\xf4\x95\xe9\x3b\xaa\x1a\x48\x59\xa0\x84\xfa\x7d\x3e\ \x50\x4a\x33\x4a\xe3\x50\x14\x05\xb2\x2c\xa7\x17\x59\x33\x2a\x90\ \x65\x19\x0d\xa1\x9e\xa3\xbf\xd8\xb5\xaf\x66\xcc\x76\xf8\xb0\xaa\ \x63\x1f\x30\x30\x2d\x9e\x88\xc7\xfc\xf9\xcb\xfa\xa8\x40\xab\xdd\ \x2e\x5d\x0b\x85\x09\x25\xb9\xa3\xbe\x39\x0e\x50\x92\xbb\x4e\x30\ \x16\x4b\xb9\xba\x43\x73\x89\x4c\x08\xa0\xcb\x40\xe0\x82\x85\x98\ \x34\xab\x09\x91\xf7\xde\xe2\x6f\xc5\x24\xed\xfd\x25\x57\x53\xef\ \xbc\xf3\x69\x71\x61\x21\xd1\x34\x0d\xa1\x50\x08\x36\x9b\x0d\x8c\ \xb1\xa1\xd9\xd7\x34\x6d\x98\x02\x52\x1c\xfa\xb5\x5d\x87\xf6\xac\ \x0b\xa5\x5e\x1c\xf7\xaa\xf0\x3c\x0b\xfb\x38\x5c\x77\xd6\x7c\x55\ \x4c\xf1\x2b\x55\x11\xe1\xce\x2e\x42\xc9\xf8\xa5\x6f\x9e\x7d\xe3\ \x58\x63\x07\xc8\x4c\x69\xce\x42\x00\xa2\x02\x45\xd3\xea\x51\x55\ \x5d\x0d\xfd\xe3\x4d\xfc\x6d\x9b\x4f\x67\x37\xdf\x45\xe7\xcc\x9d\ \x4b\x08\xe7\xe8\xeb\xeb\xc3\xee\xdd\xbb\xd1\xd5\xd5\x05\x4d\xd3\ \xe0\x72\xb9\xe0\xf3\xf9\xa0\xeb\xfa\x08\x05\xc4\x64\x05\xab\x0e\ \xef\x44\x89\x2c\xd6\xf6\x5b\x1c\xad\x37\x1e\xee\xfa\x72\x02\x96\ \xba\xec\x38\x47\xd7\x1c\x1b\x6d\xce\xb0\x5a\x16\xb4\xba\x24\x51\ \xbf\x60\xb0\x97\x26\xe2\xf1\x33\x92\xfe\x68\x24\x99\x0b\x26\xaa\ \x03\xee\xe2\x22\xd4\x4e\x6f\x84\xe7\xc0\x6e\x6c\x4a\xa9\xda\x8e\ \x99\x0b\xc9\x23\x8f\x3f\x4e\x03\xc5\xc5\x88\x27\x12\x68\x6e\x6e\ \xc6\xf6\xed\xdb\xe1\xf7\x17\xa0\xa0\xa8\x10\xf1\x78\x12\xad\xad\ \x47\x20\x26\x13\x23\x5c\x20\x2e\xcb\xb8\xe4\xd0\x2e\x9c\x1b\xea\ \x5a\xde\xd4\x2e\x6e\x1c\xf7\x92\xd8\x51\x45\xc5\x6d\xaa\xae\xf6\ \xaa\xf2\x27\xbd\x82\xf5\x26\xd9\xe1\x22\x36\xbb\x4d\xcf\x8b\xc7\ \x48\xb6\x54\x46\x0e\xf0\xb9\xca\xe4\x11\x04\x18\x48\x82\xb1\x79\ \xa2\x14\xd5\x73\xe6\x62\x0a\x17\xb1\x7f\x7f\xb3\xfa\x64\x71\x1d\ \xd7\x17\x5d\xcc\x9e\x7f\xe1\x79\x12\x08\x04\x60\xb5\xd9\xd2\xb3\ \xed\x76\xa3\x71\xfa\x74\x1c\x38\x78\x10\xcf\x3e\xf3\x0c\xf6\x7e\ \xf1\x05\x26\xd7\xd6\x01\x94\x42\x93\xe5\x21\x17\x10\x75\x1d\x4b\ \x8f\xec\xc1\xfc\xde\x93\x37\x37\x75\x48\xbf\x3b\xe3\x07\x23\xcb\ \xdc\x8e\x5f\xb5\x06\x82\x77\x12\x26\xe0\x62\x29\xa6\x2b\xed\x1d\ \x94\xd1\x2f\x07\x8a\xcc\xac\x1a\x15\xc1\x8c\x4b\x65\xd9\x71\x2a\ \x10\x98\x5e\x8f\x5a\x2b\x10\x3a\xb0\x5f\x7f\xb9\xb4\x56\x8f\x54\ \xd6\x08\x95\xa5\xa5\x58\xbd\x7a\x35\x5c\x6e\x37\x2c\x8c\xc1\x62\ \xb5\x42\xd3\x34\xac\x79\x62\x0d\x5e\x7b\xfd\x35\xc4\xe3\x51\x74\ \xb6\x75\x23\x1c\x0e\xa3\xb6\xae\x0e\x17\x5d\xba\x02\x82\xae\x42\ \x91\x65\x24\x35\x1d\x0b\x3e\xdf\x8a\xd9\x9d\x47\xbe\x3f\xb3\x53\ \x79\xea\x8c\x9f\x0b\x2c\xf5\xb8\xb0\x29\x96\x7c\x7b\x2a\xf4\x9b\ \x54\xaf\xd7\x77\x44\xd5\x71\x8e\x95\x42\x4e\xa6\x88\xb1\x75\x66\ \x63\x48\xdf\xe8\xf7\xc6\xf8\x00\x1d\x70\xf8\x0b\xd0\x50\x5f\x87\ \xc0\xb1\x16\xfe\x9a\x44\xb4\xd7\xa6\x34\xd1\xfc\xea\xc9\xcc\x65\ \x77\xe0\xe6\x5b\x6e\x81\xdb\xe5\x82\xaa\x28\x48\xc4\xe3\x08\x47\ \xa2\xf8\xd1\xfd\xf7\xa0\x71\xc9\x34\x08\x79\x40\xe9\xa4\x12\x34\ \x37\x37\x43\x8c\xcb\x10\x04\x01\x4d\xb3\xe7\x80\x6b\x2a\x44\x10\ \xbe\x7c\xc7\x66\x32\xa3\xfb\xc4\xaa\x99\x9d\xf2\xf3\xa3\x61\x13\ \xc6\x43\xc0\xe6\x68\x02\x2b\x9c\x36\xf8\x07\xc3\x0b\xbf\xb0\x3b\ \xda\x58\x41\x21\xf9\x48\x53\xf4\x0b\x1c\x49\x22\x8a\x62\xce\x56\ \x98\x8c\x12\x1f\x86\x95\xcc\x84\xa0\xa2\xfe\x2c\x54\x47\x7a\xb0\ \xad\xf5\xb0\xba\xbe\x62\x06\x2d\x2a\x0b\x0a\x93\x9c\x4e\x30\xc6\ \x50\x5b\x53\x03\x81\x31\x0c\x0c\x0c\x20\x11\x4f\xa0\x37\x34\x88\ \xdf\xbe\xfa\x1b\xd4\x5d\x5a\x89\x3f\x7c\xf1\x3a\x76\x6f\xdd\x89\ \x7c\xf8\x20\xd8\xd3\x7f\x5a\x51\x51\x81\xc1\xc1\x41\xb8\x5d\x4e\ \xfd\xda\x8f\x7e\x47\x0b\x22\xa1\xe5\x33\x3b\xa4\x8d\x63\x61\x13\ \xc6\xeb\x02\x7f\x48\x4a\x00\xd0\xbe\xbc\xbf\xf7\xf6\x36\xb7\xfb\ \xe9\x01\x87\x8b\x76\x31\xa2\xfb\x3b\xda\x68\x2e\xa0\x66\x52\x8c\ \xfe\x0e\x0d\xf0\x94\x97\xa1\xce\x69\x43\xf2\xd8\x01\xed\xd1\xc2\ \x2a\x9e\x6a\x98\x21\x94\x79\xbd\x10\x04\x61\x28\x8d\x05\x4a\x4b\ \xd1\xd3\xdd\x8d\x63\xa9\x14\xfa\xc2\x61\x7c\xb0\xe9\x7d\xec\x77\ \x6e\xc3\xce\x37\x39\x2e\x9d\x7f\x35\x5c\x9a\x07\x44\xa0\x48\x45\ \x64\x00\x40\xbe\xdf\x0f\x25\x34\xa8\xde\xf8\xe1\xab\x8a\xa4\xf1\ \xd9\x73\xda\x92\x2d\x5f\x86\x8b\x9e\xee\x3a\xfa\xbb\xb2\xf6\x4c\ \x69\x57\xc7\xbb\x84\x52\x6c\x63\x76\x62\x2f\x2d\xe5\xd9\x8e\xc7\ \xbc\x5e\x38\xa2\x95\x26\x00\xb5\x5a\x51\x33\xb5\x0e\x8d\xf1\x5e\ \x6c\x18\x08\xa9\x0f\xd7\xcc\xa2\xb4\x66\x8a\xe0\xf7\x78\x86\x0a\ \x19\x00\x70\x3a\x9d\xe8\xef\xeb\x43\x7b\x7b\x3b\xf6\xee\xdd\x8b\ \x4f\xb7\x7f\x86\x3d\x27\xb6\x23\xd2\x1b\x47\x9d\x6f\x3a\xf6\xfe\ \x4f\x0b\x96\x9d\x7b\x31\xb4\x94\x8e\x44\x28\xad\x42\xc1\xe5\xc1\ \x3f\x6d\x7b\xe3\xd8\xb6\xd2\xa9\x45\x16\x55\x6d\x19\x0f\x1e\xe1\ \x74\x09\xb8\xc4\xe3\xc4\x79\xf9\x96\xcb\x36\xf4\xf7\x86\x63\xc5\ \x81\xbc\x77\xb9\x43\xbf\xca\x97\x4f\xe2\x91\xf0\x98\xd2\xe7\x3a\ \xe0\xab\x28\x47\x1d\x51\xd0\x79\xf2\x88\x76\x7f\x41\x35\xec\x81\ \x52\xa1\xcc\xe5\x82\x20\x08\xc3\x6a\x75\x42\x08\x24\x49\x42\x4f\ \x4f\x0f\x4e\x9e\x3c\x89\x98\x28\xa3\x79\xcf\x6e\x5c\xb5\xe4\x6a\ \xd8\x6c\x36\xe8\x3a\xc7\xbc\xc5\x73\x01\xc6\xf1\xc2\x53\x2f\xa7\ \x4b\xf8\x25\x4b\x31\x43\x97\x5e\x99\xdd\xa9\xdc\xf0\x7b\xf7\x71\ \x5c\xd0\x3e\xbe\x67\x03\xa7\x4d\xc0\x3b\xd1\x24\xca\x13\xd0\x1b\ \x38\x16\xef\x74\x3a\x77\x68\x6e\x0f\xdd\x49\x7d\xda\xcc\x54\x92\ \xc9\xb2\x9c\x53\xfa\xcc\x6a\x45\x55\x79\x19\x8a\xbb\x4f\xf0\xb5\ \xd6\x7c\x6d\x57\xe5\x0c\x21\xe0\xf5\xc2\x62\xb5\x8e\x7a\x9d\xd0\ \xe0\x20\x14\x59\x46\x38\x1c\x46\xd9\xe4\x29\x88\x86\xc3\x48\x4a\ \x49\xf8\x0a\x7c\xa0\x84\x62\xcb\xd6\x3f\xa2\xf9\xf3\xfd\x18\xe8\ \x1b\xc4\x82\x05\x0b\x70\xdd\x75\x2b\x5b\xee\xfe\xfe\xed\x37\xdc\ \x7b\xf5\x15\xf8\xee\xfa\x37\xc7\x8d\xe7\xb4\x5d\x00\x00\x9e\xd6\ \x80\xe7\x74\xec\xac\xed\xed\xfe\xa9\xaa\x69\x38\xc2\xec\x2c\x12\ \x28\xd3\xb2\x0f\x52\xb2\xe0\xb9\x06\xe4\x17\x97\x60\xa6\xdf\x8d\ \x50\x67\x9b\x7a\x8f\xb7\x92\x1f\xae\xa8\x15\x4a\xbc\x5e\x50\x36\ \x7a\x02\x22\x84\x20\x12\x89\xa0\xaf\xbf\x1f\xb2\xa2\xc0\xeb\x71\ \xa3\xbb\xbb\x0b\x7d\x1d\x03\xe8\xe9\xea\x41\xa8\x3f\x8c\xf6\xa3\ \x5d\xd8\xb1\x7d\x27\xee\xb8\xe3\x0e\xac\x5f\xff\xfa\xe0\x60\x7f\ \x6f\xd3\xea\xff\x78\x02\x8f\x9d\x06\xf8\xaf\xe4\x0d\x91\x65\xf9\ \x79\x7b\x4f\x06\x27\x4d\xd7\x14\x05\xb7\x70\x51\x0f\xb7\xb7\x51\ \x68\x1c\x82\x55\x40\x55\xb0\x0c\xc5\xfd\x6d\xfc\x45\xea\x51\xf7\ \x14\x94\x59\x0a\x3d\x79\xb0\x58\x2c\xe9\x45\x4b\xc6\x20\x08\x42\ \xfa\xe9\xaf\x69\xcb\x18\x43\x7b\x5b\x1b\x62\xb1\x18\x7c\x7e\x3f\ \x96\x5e\xba\x02\xff\xfa\xc0\x7d\xb0\x5a\xad\x28\x2f\x2f\x47\x34\ \x1a\x45\x7f\x7f\x3f\x56\x5e\x7f\x03\x9e\x7d\xe6\xe9\x8e\x4f\x77\ \xec\x98\x6a\x11\x2c\xf1\x85\x0b\x2e\x38\xed\xfb\xa7\x7f\x0a\xf8\ \x95\xf9\x0e\xcc\x93\x62\x8b\x7c\xa1\x01\x6e\xb7\xd9\xf0\x92\x2e\ \x10\x1e\x2c\xd7\xa6\x57\x06\xf9\xdc\x22\x2f\x62\xdd\x6d\xea\x3d\ \xf6\x52\xfd\x70\x49\x85\xc5\xef\x76\x81\x52\x0a\xce\x39\x08\x19\ \x9b\x77\xce\x39\xca\x2b\x2a\x90\x12\x45\x74\x77\x76\xc2\x22\x08\ \xb8\xe9\x96\xdb\x40\x28\x45\x7b\x67\x27\x8a\x02\xa5\xf8\xcd\x7f\ \xfd\x16\x4f\xfe\x7c\xcd\x5a\xb7\xdb\x5d\x3e\xa9\xa2\xe2\x8c\xc0\ \x7f\x65\xef\x08\xdd\xe9\x16\xae\xf9\xb8\xa4\x72\x1d\xf3\x78\x10\ \x4b\x26\x11\x09\x87\x35\x07\x21\x44\x77\x38\xa9\xcf\x9d\x0e\x72\ \x63\xcd\xb8\x79\x6b\x54\x48\x28\x1a\x45\x99\xcb\xa9\x5e\x3c\x7f\ \xbe\xe0\x9a\xda\x00\xbb\xd5\xa6\x57\x4e\x2a\x5f\x0f\xe0\xdf\x6a\ \x26\x4f\xde\xd7\xdc\xd2\x82\x69\x0d\x0d\xdf\xfc\x5b\x62\xdf\xf3\ \xe7\xfd\xf7\x67\xc1\xaa\x6b\x05\x80\xa4\x52\xa9\x21\xd0\xc6\xcf\ \x78\x09\x60\x94\x02\x56\x2b\xf2\xc4\xa4\x7a\xe1\xa1\x5d\xc2\x94\ \xee\x93\xdb\xfa\xa9\xe5\xae\xcb\x7a\x95\xcf\xb3\xd7\xfb\x6c\xd7\ \x6e\xcc\x6a\x9a\xf9\x27\xdf\x37\xfd\x2a\xc0\xdf\x58\xe4\xc1\xcb\ \x83\xb1\x95\xb5\x83\xbd\xfd\xda\x28\x4b\x4f\xe3\x31\x0e\x40\x61\ \x02\x0f\x84\xfb\xd4\xef\x6e\xdf\x8c\x3b\xfe\xf8\xfa\x66\x67\x2c\ \x72\xf6\xbc\x7e\xcc\xd7\x9c\x79\x9f\x1b\xc7\x7e\x15\xe0\xcf\x28\ \x0d\xe6\xb2\xb5\x7d\x51\xfc\xc0\xe7\x40\xd1\x40\xcf\x82\xb0\xdd\ \x79\xa0\x9b\x9c\xde\xbb\x57\x2a\xa1\x70\x6a\xaa\x3a\xa7\xa3\x55\ \x68\xec\x3e\xa6\xfb\x64\xf1\x97\x87\xf2\x03\x8f\x9e\x3b\x88\xde\ \x37\x5c\x69\x42\xaf\x38\x3e\xf8\xed\x78\x51\xf2\x87\x3e\xc7\x8f\ \x36\x14\x04\x1f\x23\x63\xb8\x00\x13\x04\x40\xb0\xc0\xc9\x75\xb5\ \x31\xdc\x43\x1b\xfb\x3b\xe8\xa4\x58\x64\x4b\xd4\x6e\xfd\xe5\x95\ \xdd\xf2\x3a\x00\x78\x2b\xe8\xc4\xe5\x1d\xc9\x6f\xdf\x9b\xa2\x00\ \x70\xbf\xcf\xbe\x65\x8b\xbf\xec\xfc\x01\x87\x8b\x59\x59\x3a\xa0\ \x51\x41\x00\x65\x82\x1e\x94\x12\x7a\x43\x2c\x24\xd4\xc6\x07\x50\ \x9e\x4c\x7c\x94\xb2\x08\x6b\xb7\x15\x57\xbc\xf0\x58\xcb\x31\xf9\ \x95\x32\x17\xae\xef\xfc\xb3\xbc\x20\xfa\xf5\x11\xf0\x8f\x45\x6e\ \xfc\xbc\x2f\x8e\x5f\xbb\xf1\x48\xd4\x62\xbd\x2b\x61\xb5\xe5\x83\ \x32\x78\x74\x05\x65\x62\xf2\x98\x13\x7c\x53\xd4\x6a\x7f\x63\x55\ \x9f\xb8\x01\x00\x1e\x2d\x2f\xc0\x83\xed\x03\xf8\x8b\xb5\x87\xcb\ \xbc\x8e\x7f\xf7\xb2\x82\x9b\xeb\x26\x0f\x05\x86\x17\x8b\x6c\x98\ \xb0\x09\x9b\xb0\x09\x9b\xb0\x09\x9b\xb0\x09\x9b\xb0\x6f\xd8\xfe\ \x17\xb3\xda\x93\x21\x74\x7d\xdd\x47\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x03\x53\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x02\x01\x1a\x26\x10\x33\x6f\x00\x00\x02\xe0\x49\x44\ \x41\x54\x38\xcb\x6d\x93\x4f\x68\x5c\x55\x18\xc5\x7f\xdf\x7d\xf7\ \xbd\x79\x33\x64\x9a\xb4\xc5\xd6\x99\x50\x6d\x64\xdc\xb8\x69\xc1\ \x85\xa4\xa4\x3a\xa5\x42\x11\x14\x71\xe5\xc2\x42\x29\x22\x58\xd1\ \x9d\x88\x42\xdd\xb8\x11\x89\x20\x54\xe9\x42\xe9\xb2\xba\x10\x84\ \x0a\x46\xa4\x14\x5a\xda\x4d\x44\x2d\x76\x22\x82\x09\xb6\x4d\xcc\ \x24\x9a\x64\x32\x2f\x33\x7d\xf3\xee\xfb\x73\xaf\x8b\x8e\x30\x14\ \x0f\x1c\x38\x07\xbe\xef\xb7\x3b\x02\xb0\x75\xea\x54\x65\x6b\x6e\ \xae\xea\xf2\x1c\x00\x37\x34\x80\x1d\xe9\x6e\xd8\x25\x0c\x79\xe4\ \xe4\xc9\xde\xee\xd9\xd9\x58\x6f\x9e\x39\x53\xe1\xf0\xe1\xf3\xaa\ \x5e\x3f\xee\x9c\x13\x46\xe4\x00\x6f\x04\xe6\x00\x9c\x03\xdf\x77\ \x49\xad\x76\xe5\x8f\x13\x27\xde\x90\x6b\xb0\x7f\xec\xf4\xe9\x9f\ \xfd\xe9\xe9\xc9\x07\x9f\xe5\x7f\xf2\x7f\x1a\x2c\x2c\xac\x2e\x9f\ \x3b\xf7\xa4\x1e\x80\xe8\x28\x52\x76\x7b\x9b\x42\x29\xd2\x83\x07\ \x51\xc6\x50\x5a\x5d\x25\xad\xd7\x71\x40\xa9\xdd\x26\xa9\xd7\xb1\ \x41\x40\x69\x79\x19\xcf\x39\xd2\x38\x56\x03\x10\x65\x41\xd2\x38\ \x16\xd3\xed\xc2\x81\x03\x34\x8e\x1e\xa5\x71\xec\x18\xa6\xdf\xa7\ \xd1\x6c\xd2\x68\x36\x49\x86\xf9\xb1\x99\x19\xec\xe4\x24\xa6\xdb\ \x25\x33\x46\x1c\x88\xca\x40\x4c\x1c\xcb\x20\x8a\xd8\x7f\xe4\x08\ \xa5\x30\xe4\xcf\x2f\x3e\xa7\x18\xc4\x88\x73\x28\xe7\xb0\x83\x98\ \xdb\x17\x2e\x10\x56\x2a\xec\x9b\x9e\x66\x10\x45\x64\xc6\x48\x3a\ \x04\x90\x0d\x62\xf1\x6b\x35\xaa\x13\x13\xec\xb4\x6e\x11\x2f\xfd\ \x8e\xce\x7a\x64\xa9\x21\x4b\x0d\x3a\xeb\x71\x6f\xf1\x37\x7a\xad\ \x16\xd5\xf1\x71\xc2\xa9\x29\xf2\x24\x91\x0c\x50\x16\xa4\xbf\xb1\ \x29\xda\xf7\x51\x4a\x61\xd6\xff\xa2\xe4\xee\xe1\xe7\x43\x40\x96\ \x12\x7a\x19\xd5\x5d\x01\xd9\xe6\x3a\x3a\x08\xe8\xdd\xb9\xc3\xed\ \xcb\x97\x45\x81\x28\xeb\x29\x76\x56\xee\xca\xca\xf7\x73\xe8\x52\ \x09\x99\x98\xc0\xb4\xae\xe3\x16\xe7\x29\xba\x1b\xe4\x9d\x75\xd2\ \x1f\xbf\x63\xeb\xd2\x45\xf2\x40\xe3\xf9\x01\xd1\xc2\x2d\x8a\x22\ \x93\x5c\x7b\xe8\x1c\x41\x2a\x21\xdb\xf3\x37\x48\xd6\xda\xec\x7d\ \xea\x69\xda\x33\xcf\x12\x5c\xf9\x06\xfd\xe9\x6b\xe0\xa0\xbc\xf9\ \x0f\xe5\x17\x5f\xe2\xa1\x99\xe3\x98\xb5\x55\xba\xf3\x37\x90\xb0\ \x4c\x1e\x27\xa8\x5c\x04\xf1\x3d\x3c\xb1\x2c\x7e\x78\x16\x8d\xe3\ \xf1\x77\x3f\xa1\xf7\xd6\x07\xac\x99\x94\xb6\x31\x74\x5e\x3f\xcb\ \xd4\xdb\xb3\x78\x38\x16\x3f\x7a\x1f\x4f\x2c\x2a\xf0\xc8\x44\xd0\ \xb9\x02\xb4\xa0\x3c\x61\xfd\xd2\x45\xf6\x1d\x7a\x82\xf1\xe7\x5f\ \x61\xea\xe5\x37\xe9\xbd\xf0\x2a\x26\x31\xec\x2d\x07\x04\x45\x42\ \xe7\xab\xf3\x6c\x7c\xfb\x25\x9e\x27\x88\x27\x14\x02\xba\x10\x50\ \x9e\xe0\x2c\xd8\xdc\x72\xf7\xe3\xf7\xa8\x5d\xfb\x9a\xf1\x67\x9e\ \x63\x77\xe3\x10\xce\x16\x14\x4b\xbf\xd2\xbd\xfe\x03\x7f\xff\x74\ \x93\x22\x07\x6b\xef\x03\x10\xd0\x36\xf0\xf1\x4a\xbe\xcb\x9c\x90\ \x59\x48\x73\xd8\x6e\xdd\x24\x5f\xfa\x85\x50\x83\x08\x24\x19\xf4\ \x12\xc1\xe4\xf7\x6f\x72\x2b\x88\xf6\x9c\x88\xa0\xcb\x7b\x1e\x8e\ \x82\x47\xf7\x5c\xcd\xc5\x35\x13\xed\xa4\xe3\x43\x4f\x81\xce\x41\ \xb9\xe1\x02\x2d\xe4\x02\x69\x19\x52\x0d\xec\x12\x27\xe5\xea\x55\ \x59\xe9\x44\x02\xf0\xd9\xd8\xd8\xd8\x4e\xbf\x3f\x5e\x8c\xcc\xb7\ \x18\x99\xb0\x3c\x60\x4f\x20\x14\x89\xde\xb1\xae\xff\x2f\x80\x0d\ \x61\x96\x9b\xc0\x81\xfc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x03\x79\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x02\x01\x3a\x1d\x7e\x13\xa7\x00\x00\x03\x06\x49\x44\ \x41\x54\x38\xcb\x8d\xd3\x4d\x68\x5c\x55\x1c\x86\xf1\xe7\x7f\xce\ \xb9\xf3\x99\xc9\xd4\x9a\x58\x9b\xd8\xc1\x2a\x5a\x02\xa2\x49\x31\ \x88\x34\xb4\x01\x93\xb8\xb0\x82\x64\x97\x2e\x04\xdd\x58\xea\x4a\ \x57\xae\xc4\x8d\xd0\x9d\x1b\x11\x3f\x5a\xf0\x63\x23\x2e\x84\x42\ \x17\x2d\x4d\xa0\x60\xa3\xd5\x12\xa3\x69\x88\x6d\xd3\x66\x42\x62\ \x6a\x26\x93\x64\x26\xbd\x99\x7b\xe7\xce\x9d\x7b\x8e\x8b\xe0\x4e\ \xc1\xdf\xf6\xdd\xbd\xf0\x08\xc0\x9b\xd3\xfd\xb9\x5f\xcf\xaf\x17\ \x6c\xdb\x82\x80\xb3\xfc\x2b\x67\x2d\x0e\x48\xe7\x0c\x63\x67\x9e\ \xf7\xcf\x0e\x5c\x0c\xe4\xf4\xcc\x60\x6e\x20\x3f\xf2\xc9\xda\x62\ \xf5\x25\x1c\x02\xe0\xf8\x0f\x6e\x6f\xd1\x46\xbb\xee\xc7\xf6\x4f\ \x5d\x9a\xff\xee\x8c\xb9\xf0\xd6\x42\x41\xde\x3e\x38\xf2\xcc\xd1\ \xbe\x5e\xfe\x2f\x11\xca\xb3\x6b\x23\xd7\xce\xae\x14\x54\x54\xb7\ \xb2\xb3\x5b\x53\xb5\xa8\x42\xbd\xb5\x41\x47\xaa\x48\x4a\xa7\xa9\ \x45\x15\x8c\x32\x18\x65\xa8\x45\x15\xb4\x32\xe4\xbc\x0e\xea\xad\ \x2a\xf5\xa8\x42\x18\x05\x2a\x0e\x9d\x28\xad\x8c\x04\xb1\x2f\xb5\ \x56\x95\x9e\xfc\x93\x0c\xf7\x8e\x33\x7a\x68\x02\x3f\xae\x33\x5a\ \x9a\x60\xb4\x34\x81\x1f\xd7\x18\x2b\x9d\xe2\x44\xef\x38\x07\x72\ \x25\x6a\xd1\x26\x51\xd2\x14\xad\xb4\x28\x70\x12\x35\xda\x52\xf7\ \x6b\x1c\xeb\x39\x49\xd6\x74\xf0\xc5\xfc\xfb\x84\xcd\x10\xe7\x1c\ \x0e\x68\x46\x11\xe7\xe7\x3f\x20\xef\x15\x18\xea\x39\x49\xdd\xdf\ \x26\x8c\x1b\x22\x56\x44\x89\x12\x42\x3f\x92\x83\xc5\x43\xec\x4f\ \x3d\xc2\xcd\xed\x6b\x94\x57\xcb\x24\xb1\xa5\x99\x04\x34\xdb\x0d\ \xda\x71\x42\x79\xa5\xcc\xcd\xad\x69\xf6\xa5\xba\x39\xdc\x75\x84\ \xd0\x3d\x10\x41\x61\x74\x5a\x49\xfd\xcf\x40\x8c\x36\x68\x65\x58\ \x0f\x56\x11\xab\xb0\xd6\xd2\xb6\xad\xbd\xd7\x53\x42\xfe\xa1\x0c\ \x5b\x61\x85\x94\xce\xb0\x52\x29\x33\xf3\xed\xb2\x64\x8b\x29\x51\ \x5e\x46\x53\xfd\xa3\x21\x3f\x5c\xfa\x05\xcf\x4b\xd1\x99\xdd\xc7\ \xf2\xf5\x4d\x56\xef\xde\xa7\x16\x55\xd9\x6e\x6e\xb0\x30\x5d\xe6\ \xfa\xe7\x4b\xe8\xb4\x60\x3c\x8f\x7b\x33\xf7\x49\x5a\x4e\x44\x04\ \x83\x83\x74\xc1\x63\xf1\x72\x95\xb5\xf7\xee\xf0\x62\xf7\x2b\xf4\ \x0f\x5e\x64\xe6\xe7\x59\xbe\xbc\xf2\x31\xe0\x68\x6c\xb4\x18\x1a\ \x1f\xe0\xf8\x81\x71\xfe\x6a\x2f\xb2\x78\x79\x83\x54\x5e\x13\xf9\ \x31\xba\xd8\x9b\xed\xf4\x72\xfa\xb4\x6d\x91\xf3\xd5\x16\xc3\xfd\ \x2f\xf3\xdc\xe1\x41\xa4\xe4\x53\x5e\xbf\x4d\x94\x84\x9c\x18\x39\ \xce\xeb\x2f\xbc\x43\x3e\x55\xe0\xa3\x6f\x3e\xe4\xd6\xec\x3d\xbc\ \x8c\x0a\xe2\x20\xf9\xd4\x00\x28\xad\x10\x49\x98\x9a\xbc\x42\xdf\ \x91\x73\x8c\x0d\xbc\xc6\xa9\xbe\x77\x79\xf5\xa9\x37\x08\xdb\xbb\ \xe4\x75\x11\xc4\xf2\xfd\x8d\xaf\x98\x9c\x9a\x44\x7b\x82\xf6\x34\ \x0e\x30\xce\x82\x32\x02\x0e\x5c\xa0\x39\xf7\xf5\x67\xdc\x98\xfb\ \x89\xa3\x43\xcf\xf2\x44\x57\x1f\xd6\x26\x2c\x6d\x2d\xf0\xdb\x8f\ \x0b\xcc\xfd\x3e\x87\x6b\x68\x9c\x4d\x50\x5a\x10\x04\x63\x32\x82\ \x97\x51\x2e\x00\x92\xd8\x61\x43\xc5\xed\x5b\x77\x58\x5e\x5b\xc2\ \x64\x2e\x20\x0a\xe2\xa6\xa3\xe5\xb7\xb1\xa1\xc6\xda\x04\x6b\x1d\ \xca\x88\x13\x25\x98\xce\x47\xb3\x3b\x5d\x4f\x77\x5c\x45\x18\x36\ \x9e\x16\xed\x09\x49\xcb\xd2\xdc\x89\x51\x0d\x01\xc0\x26\x60\x63\ \x8b\xd2\x42\xa6\xd3\xe0\xe5\xb4\x4b\xe7\xcd\xd5\xcd\xc5\xc6\x8e\ \x00\x3c\x7e\xec\xe1\x8e\x60\xbb\x55\x74\xb1\xc3\x5a\x87\xb3\x6e\ \x2f\xbc\x7f\xb2\x14\x10\x01\x11\x01\x05\x26\xad\x01\x76\x2a\x0b\ \x0f\x76\xff\x06\x20\x04\x61\x72\x16\xdc\x4e\x48\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x10\xaa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x08\ \x08\x13\x3a\x1f\xa7\xe5\x7a\x74\x00\x00\x10\x49\x49\x44\x41\x54\ \x78\xda\xed\x5a\x7b\x70\x5c\xd5\x7d\xfe\xce\x39\x77\xef\x6a\x1f\ \x5a\xed\x43\xd2\xee\x4a\x5a\x49\x96\x64\x59\x96\x64\x1b\x2c\x1b\ \x08\xd8\xe6\xe1\xf0\x2c\x21\xa1\x49\x0a\x84\x86\x47\x1d\x9c\x09\ \x4c\x67\x68\x4b\xa8\x43\x33\x6d\x66\x3a\x21\x75\x92\xe2\x76\x26\ \x49\x67\x82\x09\x29\x19\x4a\x13\x48\x6c\x4c\x48\x0b\x98\x82\x81\ \x40\xf0\x03\xd9\x96\x25\x59\xb6\x65\x6c\xeb\xfd\xde\x5d\xed\xde\ \x7b\xf7\xbe\x4e\xff\xd8\x95\x74\xf7\x61\xd9\x32\x26\xa4\xa9\x7e\ \x33\x77\xee\xdd\xb3\xf7\xee\xbd\xdf\xf7\xfb\x7e\x8f\x73\xf6\x02\ \x8b\xb6\x68\x8b\xb6\x68\x8b\xb6\x68\x8b\xb6\x68\xff\x4f\x8d\x7c\ \x12\x37\x7d\xf8\xe9\xfb\xc4\xf8\x54\xbc\x38\xa5\xc9\x62\x62\x3a\ \xa9\xda\x9c\x4c\x7a\xe1\xb1\x37\xe4\x3f\x0a\x02\x6a\xef\x76\xe2\ \xd4\xb3\x12\x00\x60\xcd\xc3\x95\xae\x68\x3c\x76\xb5\x92\x4a\x5d\ \x25\x0a\xb6\xd5\x97\x34\xac\x6d\x5d\x16\x69\xad\x92\x53\x32\x12\ \xf2\x34\x64\x25\x09\x45\x91\x20\xc9\x12\x52\xaa\x82\x54\x2a\xf5\ \x81\x9a\x4a\xed\x70\x79\x3c\xdb\xde\xdc\x76\x38\xf9\x7f\x86\x80\ \xfa\xbb\xdc\xe8\x7d\x2e\x91\x3e\xfe\x72\xf1\x6d\x49\x29\xf9\x19\ \x66\x63\xb7\xea\xba\x16\x02\x01\x40\x01\x42\x00\x13\x80\xc9\x81\ \xa6\xea\x26\xac\x59\x7a\x05\x54\x4d\x85\xa4\x24\x20\x2b\x32\x24\ \x45\x82\x2c\x25\x21\xc9\x32\x14\x45\x02\x07\xff\x76\xfb\x4f\xfa\ \xbf\xd9\xf6\x95\x08\x0e\x6c\xef\xfb\xc3\x23\xa0\xea\xb6\x22\xf4\ \xef\x52\x00\x00\x91\xcf\x17\x7d\x59\x55\xb5\xbf\x20\x84\x5f\x63\ \xc0\x04\x58\x1a\x30\x08\x40\x66\x8e\x69\xe6\x6e\x64\xee\xae\xd7\ \xac\xbc\x01\x21\x5f\x25\xa6\xa5\x18\x64\x45\x4a\x6f\x72\x9a\x04\ \x59\x96\xa0\xaa\xea\xb8\x4d\x10\x3e\xbb\x7f\xfb\x99\x77\xdb\xbe\ \x52\x8d\x03\xdb\xcf\x5c\x74\x02\xd8\x42\x2f\xa8\xb9\xcd\x85\x58\ \x8f\x06\x7f\x4b\xd1\x5a\x5b\x44\xdf\xe6\xac\xc7\xf3\x29\x55\xbf\ \x9d\x73\x5e\xcb\xc1\xe7\x80\x23\xe3\x79\x64\x08\xc0\x1c\x09\x84\ \x00\x84\x02\x27\x87\x7b\x21\x69\x71\x34\x54\x2e\x07\xa5\x04\x94\ \x11\x50\xc6\x66\xf7\x84\x70\x67\x4a\x55\x37\x85\x2f\x75\xaf\x28\ \x0b\x57\xbd\xd8\xfb\xf6\x80\xf1\x89\x11\x50\x79\x73\x11\xa6\x4f\ \xe8\x28\xaa\xc1\x6d\x8e\x1a\xb2\x4b\x4a\xa6\xb6\x00\xbc\x85\xf3\ \x34\x98\x59\x90\x33\xe0\x67\x80\x66\xc6\x09\xb5\x7c\x9f\x21\x86\ \x32\x20\x26\x4d\xa1\x67\xf0\x08\x6a\x83\xf5\x28\x76\x96\x80\x50\ \x80\x31\x06\xc6\x08\x28\xa3\xa0\x8c\xc2\x30\x8d\xe6\x78\x74\xfc\ \x9b\xa1\x4b\xdd\x23\x23\x07\x93\xfb\xdb\x36\x57\x61\xe8\x40\xfc\ \xf7\x43\x40\xf9\xb5\x36\x24\x4f\x99\x28\xae\xa3\x6d\xb6\x0a\xbe\ \x47\x4b\x19\x0f\x71\xce\x03\x56\xc0\x33\xd8\x66\x62\x7d\x16\xa4\ \xe5\x78\xf6\x5c\x8b\x0a\x66\x14\xc1\x61\xe2\xe8\xe0\x51\x10\xca\ \xb1\x24\xd4\x00\x50\x0e\x42\xd3\xe0\x19\x23\x20\x94\x82\x10\x02\ \x5d\xd7\x6e\x2d\x5d\x51\x74\xb7\x28\xda\x5e\x1d\xdc\x1f\x9f\x58\ \xb5\x29\x88\x91\xf6\xe4\xc7\x97\x03\x82\xd7\xda\x30\xf2\x86\x06\ \xff\x3a\xf6\xac\xa1\x19\x5f\x9a\x49\x68\x33\x40\xb3\xe2\x9b\xa6\ \x3f\xcf\xc6\xbd\x65\x8c\xd0\x34\xd5\xb3\x63\xd4\x72\x0c\x2b\x11\ \x80\xdb\xe1\xc6\x75\xad\x37\x83\x11\x86\xa4\x92\x80\x24\x4b\x90\ \x53\x12\x24\x49\x82\x22\x67\x36\x45\x01\x01\x79\xf2\xc8\xbf\x4f\ \x6c\xfe\x58\x15\x50\xdc\x28\xd6\x0a\xa5\xc6\x29\x43\x37\xd7\xe6\ \xc6\xf5\x0c\x75\x24\x27\xb1\x11\x6b\xdc\x5b\x3c\x4d\xac\xc7\x96\ \xf3\xc0\xe6\xae\xa5\x14\xd0\x4c\x15\xdd\x03\x5d\x70\x16\x39\x50\ \x55\x56\x93\x51\x0d\x01\x63\x0c\x84\x11\x50\xca\x40\x28\x81\x6e\ \xea\x6d\x81\x56\xe1\xef\x42\x6d\xae\xde\xd1\x83\x72\xc7\xca\x4d\ \xa5\x18\x69\x97\x2e\x1e\x01\x65\x1b\x6c\x97\xa7\x92\xda\x11\x6e\ \xf2\x22\x58\x25\x9e\x0b\x1e\x16\x15\xc0\x12\xff\x98\x23\x66\x86\ \x90\xac\x7c\x40\x72\x42\xc6\xf2\x99\x32\x60\x28\x36\x88\xc1\xa9\ \xd3\xa8\x0f\x2d\x83\x28\xda\x41\x29\x20\x30\x01\x44\x20\x60\x94\ \x82\x52\x0a\x50\x30\x4d\x55\x3f\x5f\xba\xd2\xf6\x39\x47\x91\xeb\ \x37\x83\xfb\xa7\xe3\x2d\xf7\xfb\x30\x76\x50\xb9\x70\x02\x42\x1b\ \x45\xb8\xeb\xd9\x8a\x54\x52\x3f\xc0\x39\xcf\x0b\x94\x2c\x80\xd6\ \xb8\xb7\x24\xbe\x2c\x70\x33\xe0\x2d\x09\x30\x2f\x47\x58\xc3\xc9\ \x92\x37\x52\x86\x82\xa3\x43\x9d\xf0\xba\xbd\x08\xf9\x2a\xc1\x09\ \x07\xa3\x14\x44\x20\xa0\x94\x82\x52\x06\xca\x28\x4c\xce\x43\x92\ \x9c\xf8\xab\xd2\x95\xa2\xb7\xfb\x99\xf8\x2b\xff\xf8\xd4\xe3\x78\ \x63\xd7\xeb\x0b\x27\xa0\x6c\x83\x80\x8a\x46\xaf\x38\x76\x3a\x71\ \x8a\x73\xce\xb2\xc0\x93\x6c\xef\xe7\xc9\xdf\xe2\x69\xab\x67\xad\ \xa4\x64\x11\x72\x36\xb2\x68\xf6\x75\x84\x01\xfd\x93\x7d\x98\x48\ \x8c\xa0\x3e\xdc\x08\x2a\x08\xa0\x94\x82\x65\x2a\x44\x9a\x08\x02\ \x50\x02\xc3\xd0\xaf\xf0\xb6\xd2\x47\xbb\xfb\xde\xeb\x1c\x3b\x94\ \xea\x59\x7e\x9f\x1b\xe3\x07\xd5\xf3\x27\x40\x3a\x6d\x22\x25\x2a\ \xcf\x9a\x26\x5f\x95\x9b\x26\x73\x63\xdd\x1a\xf3\xe0\x39\x12\x2f\ \x54\x06\x73\xca\x63\x1e\x89\xb9\x79\xc2\x12\x56\x94\x01\x49\x2d\ \x89\x63\xc3\x47\x10\xf4\x86\x11\x28\x2e\x4b\xe7\x06\x46\x41\x85\ \x74\x95\x60\xe9\x90\x00\x08\x6c\x29\x55\xbe\xd3\xbf\x82\xdd\xe4\ \xf6\x94\xbc\x3c\xb4\x2f\x99\x38\x6f\x02\xaa\x6e\x72\x04\x14\x49\ \x7b\x26\xaf\x46\x58\xbd\x65\xfd\x8e\xe6\x87\x04\xc9\x1d\x27\xf9\ \xbf\x93\x95\x1f\x0a\xe4\x86\xdc\xf0\x98\x1d\xa3\xc0\xe9\xf1\x53\ \x48\xaa\x31\x2c\x29\x6f\x04\xa5\x14\x84\xa5\xd5\x40\x32\x8a\x20\ \x84\x80\x30\x0a\xce\xcd\xaa\xe4\x74\xfc\x91\xd2\x55\x76\xc7\x64\ \x87\xbe\x7b\xe5\x59\x4a\x66\x16\x01\x9e\x6a\xc7\x5f\x2a\x8a\x7a\ \x7d\xde\x43\xa3\x80\xf7\x69\xb6\x17\xf3\xf2\x00\xf2\x49\xc8\x52\ \x01\x0a\x24\x41\x4b\x97\x88\xb4\xaa\xe7\xba\xc7\xcc\x9e\x31\x60\ \x5a\x8d\xe3\xc4\x58\x37\x2a\xfc\x11\x78\x9c\x5e\x10\x4a\x66\x43\ \x82\xd0\x74\x7e\x20\x33\x61\xa1\xa7\xd6\x95\xb4\xd0\xbf\xe1\x54\ \x3f\x34\x71\x48\x3f\xde\xb4\xc9\x8d\xf1\x76\xb5\x30\x01\xcb\xae\ \x8b\x38\x94\x84\x7a\x8f\xa6\x69\xf3\x4b\x9f\xe4\x57\x82\x2c\x6f\ \x93\x9c\x52\x57\x08\x7c\x4e\x78\xe4\x5d\x43\xf3\x15\x60\x3d\x87\ \x13\x8e\xde\xf1\x93\xe0\x48\xa1\xba\xb4\x2e\x0d\xdc\xd2\x3d\xce\ \xa8\x81\x32\x0a\xc0\xb0\x2b\x72\xea\x6e\xdf\x4a\xdb\xc6\x50\x75\ \xf0\xa5\x33\x6f\xc5\xa4\x82\x04\x0c\xb6\x4f\x9d\xac\x5f\x17\x0e\ \xc5\xa6\xe2\x6b\xce\x25\xfd\x73\x81\xcf\x93\x7d\x81\xd0\xc8\xcb\ \x09\xa4\x40\x82\x2c\xd4\x3d\x66\x08\x12\x04\x20\x2a\x4f\xe1\xf4\ \xe4\x09\x44\x02\xb5\x70\x14\xb9\xc1\x2c\x6a\x48\x27\xc7\x19\x55\ \x98\x50\x52\x6a\x8d\xdb\x0c\x3c\xba\x6a\x73\xe8\x57\xc7\x7f\x3d\ \x3e\x9a\xd7\x09\x36\x7c\x36\x80\x13\x2f\x4e\x60\xd9\x0d\x95\x7c\ \x60\x6a\x00\x8c\x9e\x5b\xfa\xd6\xfe\x3e\x8b\x0c\x5a\xa0\x2b\xb4\ \x76\x87\x96\x71\xb0\x74\xa2\x23\x6c\xae\x63\xa4\x99\xe3\x99\xcf\ \xc4\xd2\x69\x66\x29\x82\x00\x9c\x03\xba\x01\x2c\x0f\x35\xa3\xb1\ \xbc\x15\x09\x29\x06\x49\x96\x21\xc9\x49\x44\xa7\x27\x51\x5d\xd2\ \x00\x6f\xb1\x0f\x71\xdb\x04\x8e\x26\x0f\x80\xc6\xec\x2d\xef\x3f\ \x36\xd2\x75\xd6\x56\x38\xd2\x50\xf9\x86\xad\x41\xbe\x7a\x62\x6a\ \x92\x80\x2e\x50\xfa\x56\xc2\x72\xda\x66\x58\x80\x58\xc9\x00\xcb\ \x78\x59\xc8\xf9\x5e\x98\x3b\x9e\x6d\xa7\x89\xa5\xad\xb6\xe4\x12\ \x0e\x00\x26\xe0\x12\x5d\x58\x13\xb9\x0a\x4e\x9b\x07\xcb\x83\x97\ \xa0\x2f\xd1\x8b\xf7\x47\x5e\xe5\xbd\x07\x07\x4c\xf1\x78\x39\x21\ \x67\xdc\x3f\x39\xd1\x73\xf2\x81\x19\xac\x42\x21\x02\x1c\xd4\xd5\ \x61\x0c\xd1\x0d\x45\x7e\x89\x28\x8a\x82\x82\x25\x11\xf3\x97\xc7\ \xd9\x31\x9e\xe9\xf3\x39\x40\x4c\x80\xcf\x8c\x71\x80\xf0\xec\x71\ \x62\x66\xce\xcd\xec\x67\xc7\x33\xf3\x04\xc2\x01\x4e\x73\xbc\x66\ \xa9\x20\x8a\x0e\xb4\x55\xac\x44\x7d\x68\x39\x86\xe4\x53\xd8\xba\ \xfb\x9b\x86\xe3\x58\x19\x9c\xa7\x2a\x68\xb5\x6d\x09\x13\xec\x0c\ \x46\x99\xf1\x63\x7b\x39\x45\xe7\xdb\x27\x0a\x13\x50\x51\x1f\x84\ \x4d\xb0\x8d\xeb\x71\x83\xfa\x4a\xcb\xcd\x41\x7e\x86\xce\x4a\xb5\ \xd0\x54\x8a\x14\x08\x09\xeb\x83\x15\x9a\x75\x99\x19\x8f\xe5\x80\ \x26\x24\x03\x18\x19\xa2\x32\x95\x80\x5b\x95\xc5\x01\xc3\x04\x2a\ \x9c\x95\xa8\x77\x5d\x89\xdf\x4e\x3e\x0f\xd5\x04\xfe\xb4\xf5\x0b\ \x08\x97\x54\xe1\xad\x33\xff\x85\x27\x7f\xf5\x03\xbd\xac\xaf\x89\ \x2c\x97\x6f\x62\x2e\xaf\x03\x3c\xc2\xa1\xaa\x2a\x52\xa9\x14\xf6\ \xec\xd9\xb3\xcf\xfa\x28\x79\x04\x0c\xf6\x8e\x20\xd1\x38\x85\x20\ \xab\x81\x7a\x52\x20\xe1\x96\x30\x1f\x9c\x18\x9a\x0b\xf1\x02\xe5\ \xae\xa0\xf4\xad\xc9\x70\xc6\xd3\x33\x80\xd9\x1c\x11\xb3\xea\xb0\ \xa8\x01\x16\x95\x58\x89\x01\x05\x22\xb6\x7a\x08\xb1\x2b\x50\xc2\ \xd7\x20\x26\xbe\x8b\xdb\x57\xdc\x0b\x8f\xdb\x85\x1d\x47\x7e\xca\ \x95\x23\xa2\x19\x1a\x68\xc1\xa7\xfc\xab\x05\x77\x85\x0b\x86\x61\ \x40\x51\x14\x28\x8a\x82\xd9\xb6\xfe\x5c\x73\x01\x7f\xab\x03\xd1\ \xee\xd4\x1e\x12\xd0\x1e\xf4\x08\x3e\xb7\x1e\x05\x17\x2b\x38\x49\ \xa5\x52\xd9\x13\x21\x9a\x93\xe9\x0b\xe4\x0a\x92\xfb\x39\x57\x15\ \xd6\xd2\x76\x96\xca\x61\x2d\x95\x6e\x5b\x31\x8e\x77\x5c\x82\x33\ \x7a\x0f\xd6\xaf\x97\x50\x15\x76\x62\x67\xc7\x33\x66\xcf\xeb\x67\ \x8c\xe0\xa1\x36\xd2\xec\xbe\x8c\x55\x57\xd5\x50\x97\xdb\x95\xe6\ \xd7\x34\xa1\xeb\xfa\xec\x66\x18\x06\x6a\x22\xb5\x7d\xe4\x6b\xa7\ \xda\xa3\xbb\xe7\x59\x0f\xf0\x5e\x62\x83\x6e\xd7\x1a\x3d\xe3\xc1\ \x9e\x12\x31\x00\xd3\x97\x34\x26\xed\x83\x4c\xd3\xb5\xb3\x67\xfd\ \xb3\x79\xbf\x10\x41\x34\x3b\x99\x59\x93\xdc\x4c\x62\xa4\x2c\xbb\ \x62\x80\x01\x1a\x07\x6e\x69\xbb\x11\x6e\xb7\x07\x2f\x1d\x7e\x9e\ \x3b\x8e\x56\x98\xe1\xf1\x66\x12\x0a\x07\xa9\xcf\xef\x4b\xcf\x10\ \x01\x70\xce\xa1\x69\x1a\x54\x55\x85\x2c\xcb\xb3\x2a\x50\x55\x15\ \xc9\xc0\xf0\xc9\xdf\xfd\xa2\xb3\x7e\xde\x24\x18\x3d\xa8\x01\xc0\ \x31\xbd\x69\xe4\x11\xb7\xe1\xf9\x3e\x1f\xb1\xb3\xf2\xe5\x15\x66\ \xdf\xd4\x69\x4a\x59\xe1\xe5\x2f\x60\x9e\x3e\x80\xe6\xe7\x0c\x4e\ \x32\xb2\x37\xe7\x4a\x99\x35\x1f\xcc\x26\x3f\x13\x50\x0d\x60\x43\ \xcb\x7a\x04\xca\x02\x78\xf5\xe8\x4e\x1e\xe8\x6f\x30\xae\xc5\x26\ \x16\xac\x2f\x67\xa9\x48\x0a\xb1\x58\x0c\xa3\xa3\xa3\x08\x04\x02\ \xb0\xd9\x6c\x67\x5f\xfd\x31\x98\x29\xd5\x0c\x9d\x5e\xd0\xaa\xb0\ \xbb\x81\xfd\xb6\x5a\x58\x76\xa5\xa2\xc9\x5c\x5c\x29\x63\x68\x62\ \x98\x50\x7a\x9e\xd2\xcf\x9d\x2e\xd3\x02\x93\x2b\x6a\xe9\xfd\x73\ \x4a\x9e\xce\x81\xe6\x9a\x26\xd4\xd6\x2e\xc1\xfb\x83\xbb\x39\xba\ \xbc\xe6\x9d\x4d\x0f\xd1\xb5\x6b\x2f\x23\x00\xc7\xd8\xd8\x18\xda\ \xdb\xdb\x31\x34\x34\x04\xc3\x30\xe0\x72\xb9\xe0\xf3\xf9\x60\x9a\ \x66\x9e\x02\x54\x49\xc3\x60\xf3\x3e\x18\xc5\x52\x83\x20\x39\x7a\ \x3f\xf8\xfe\xe8\xb9\x09\xf0\xaf\x2c\x82\x18\x31\x1c\x7a\xb7\x33\ \x5a\x5e\x54\x29\x6a\x82\x6c\x2a\xd5\xa3\x34\x91\x48\x5e\xb0\xf4\ \xf3\xe6\x0b\x34\x9b\x08\xd0\xb4\xf7\xcb\xbd\xa5\x68\x69\x5a\x81\ \xe3\xca\x41\x44\x0f\xe9\x46\x73\x62\x03\xf9\xee\x77\xbe\x47\x83\ \xc1\x72\x24\x92\x49\x74\x76\x76\x62\xef\xde\xbd\xf0\xfb\x03\x08\ \x94\x95\x22\x91\x90\xd0\xdb\x7b\x02\x8a\x94\xcc\x0b\x81\x94\xa4\ \xa2\xbf\xfa\x00\x92\x95\x83\x37\x75\x6e\x51\x5f\x39\xef\x25\x31\ \x79\x44\x47\xa2\xd9\xd4\x05\x4d\x7d\x97\x24\xc4\x7b\xed\x70\x11\ \xbb\x68\x33\x25\x36\x4d\xc0\x79\x16\xa0\xdc\xd5\xa2\xb3\xa9\x03\ \xc8\x9f\x00\x59\x57\x9b\x18\xa5\x68\x6b\x5e\x0b\x94\x2b\xe8\xea\ \xea\xd4\x5d\xef\x2e\xe5\x57\x86\x6e\x64\x4f\x3f\xfd\x34\x09\x85\ \x42\x10\xed\xf6\xb4\xb7\xdd\x6e\xac\x68\x6d\xc5\xd1\x9e\x1e\x3c\ \xb5\x7d\x3b\x3a\x0e\x1f\x46\x5d\xc3\x52\x80\x52\x18\xaa\x0a\xd3\ \x34\x61\x18\x06\x0c\xd5\xc4\x40\xe5\x21\xc4\x2a\x4f\xdd\xd7\xb5\ \x45\xfb\xe5\x05\xff\x31\x12\xb8\xc4\xf1\x23\xdf\x74\xe5\xd7\x18\ \x65\xa0\xcd\xd3\xe6\x50\x6c\x90\x52\x36\x8f\xf7\xcf\x21\xfd\x5c\ \xf0\x86\x01\x34\xd7\x35\xc1\x1e\x24\x38\x3a\xd0\x6d\x7a\x0f\xd7\ \x9b\x15\xac\x41\xa8\x88\x84\xb1\x75\xeb\x56\xb8\xdc\x6e\xd8\x18\ \x83\x4d\x14\x61\x18\x06\xb6\x3d\xb1\x0d\x2f\xec\x7c\x01\x89\x44\ \x1c\x83\x7d\xc3\x88\x46\xa3\x68\x58\xba\x14\xd7\xdf\x72\x2b\x04\ \x53\x87\xaa\xa9\xd0\x15\x13\xc7\x02\x6f\x63\xbc\xec\xf8\x57\xbb\ \xb7\x18\x3f\xbe\xe0\xff\x05\xca\x56\xb9\x30\x7e\x48\x7a\xd9\x16\ \x36\xef\x75\x33\xaf\x4f\x19\xe6\x70\xd6\x12\xc8\x29\x85\x90\xf3\ \xf1\x3e\x2d\xf0\x9f\x01\x9d\x6b\x05\xfc\xc5\x7e\x34\x35\x37\xe0\ \x34\xba\x78\x6c\x2f\x35\xaa\x4e\xac\xa6\xd5\xc1\x3a\xe6\x70\x3a\ \x70\xdf\xfd\xf7\xc3\xed\x72\x41\xd7\x34\x24\x13\x09\x44\x63\x71\ \x7c\x7d\xcb\x23\x58\xb1\xb1\x05\x42\x31\x10\xae\x0e\xa2\xb3\xb3\ \x13\x4a\x42\x85\x20\x08\x58\xbd\x66\x2d\xb8\xa1\x03\x1a\xe1\x5d\ \xc1\xdd\x64\xd2\xff\xe1\x3d\xdd\x5b\xf4\xa7\xcf\x86\x4d\x38\x1f\ \x02\xc6\x0e\x25\xe1\x6f\xb3\x23\x29\x46\x37\x88\x53\x8e\x3e\xaf\ \xa3\x94\x24\x4e\xa8\xa6\xb3\x56\x22\xb2\x92\x3a\xaf\xac\x9f\xb7\ \x3e\x00\x80\x10\x82\xa6\xba\x46\x24\x8a\x47\x70\xec\xe8\x09\xdd\ \xd7\xb3\x8a\x56\x04\x2b\x05\x67\x95\x13\x8c\x31\x34\xd4\xd7\x43\ \x60\x0c\x13\x13\x13\x48\x26\x92\x18\x9d\x9a\xc4\x73\xbf\xf8\x19\ \x96\xde\x52\x83\x5f\x1f\xde\x89\xf6\x77\xf6\xc3\x0b\x1f\x84\xa2\ \xf4\x0f\x46\x22\x11\x4c\x4c\x4e\xc2\x57\xe4\x34\x0f\x54\xbc\x40\ \x25\xfb\xe4\x4d\x5d\x5b\xb4\x57\xe6\xc3\x26\x9c\x6f\x08\x4c\x1e\ \x48\x01\x40\x3f\x5b\x35\xfa\x80\x43\x75\x3f\x29\x1a\x6e\x6a\x97\ \x61\x2a\x64\x80\xce\x1b\x54\x05\xd6\x15\x0c\x0e\x54\x96\x86\xe1\ \xae\x10\x71\x6a\xb2\xc7\x70\xbe\x53\xcb\x6b\x84\x1a\xc1\x5b\x55\ \x02\x41\x10\x66\x9b\x98\x50\x38\x8c\x91\xe1\x61\x7c\x28\xcb\x18\ \x8b\x46\xf1\x3f\xaf\xbd\x8e\x6e\xe7\x7b\xd8\xbf\x8b\xe3\x96\x2b\ \x6f\x87\xcb\xf0\x80\x08\x14\x72\x2c\xbd\xc0\xe1\xf5\xfb\x31\x9d\ \x9c\xd4\x0f\xd7\xfd\x5c\xe3\xba\xb1\xa6\xe3\x1b\x4a\xd7\xb9\x70\ \xd1\x85\xae\xa3\xc7\x0e\x19\xdb\x27\xc4\xfe\xff\xa6\x84\x42\x3f\ \xe9\x24\xe5\x9e\x20\x37\x79\xe1\xf6\x38\x2b\x49\x66\x4c\x14\x44\ \x34\x2d\xad\x87\x5c\x3e\x86\xc1\x7d\x31\xbd\xec\xad\x36\x5a\xeb\ \x69\x14\x4a\x7c\x9e\xd9\x46\x06\x00\x9c\x4e\x27\xc6\xc7\xc6\xd0\ \xdf\xdf\x8f\x8e\x8e\x0e\xbc\xbf\xf7\x00\x0e\x9d\xde\x8b\xd8\x68\ \x02\x4b\x7d\xad\xe8\x78\xbb\x0b\x37\x5c\x71\x23\x0c\xd9\x44\x72\ \x2a\x3d\x61\xb3\x3b\x4b\xd0\xbd\x62\xe7\x87\xa1\xb1\x25\x65\x06\ \xf4\xae\xf3\xc1\xb3\xe0\x7f\x87\xcb\xda\x9c\x28\x6e\xe4\x54\x3e\ \xe4\x88\xfa\x49\xb8\x38\x65\x4a\x26\x6f\x9d\xa0\xd1\xe9\xf8\xbc\ \x59\xdf\xe0\x40\x24\x54\x01\x56\xae\x63\x74\x68\xcc\x70\xec\x5d\ \x82\xf2\x92\x30\x73\xb9\x5c\x10\x32\x2b\xbd\xc2\xec\x8a\x2f\x03\ \x63\x0c\xde\x92\x12\xa4\x52\x29\x4c\x2b\x2a\x0e\x1f\x6c\xc7\xb5\ \x1b\xd7\xc1\x6e\xb7\xc3\x34\x39\x2e\xbf\xec\x32\x80\x71\x3c\xf2\ \xf0\xa3\x18\x19\x1a\xc5\x35\x1b\x3f\x8d\x92\x46\xfb\x7f\xbe\xf8\ \x6f\x2f\xdf\xb5\xfa\xb1\x72\x7c\xf0\xf8\xe8\x79\xe1\x11\x16\x4a\ \xc0\xd8\x01\x09\x6a\x31\x4c\x33\x20\x5f\x67\x1f\x73\xed\x73\x31\ \x0f\x35\x07\xb9\x21\x96\xca\x4c\xd3\xb4\xbc\xd8\x27\x24\xed\xf5\ \xaa\xda\x30\x46\xe9\x19\x6e\xbc\xe3\x35\xfc\x63\x2b\x05\x6f\x69\ \x09\x44\x51\x3c\xeb\x7d\xa6\x26\x27\xa1\xa9\x2a\xa2\xd1\x28\x2a\ \xea\x1a\x11\x8f\x46\x21\xa5\x24\xf8\x02\x3e\x50\x42\xb1\xe7\x9d\ \x37\xd1\x79\xb0\x1b\x13\x63\x93\x58\xbf\x7e\x3d\xbe\xf8\x67\x77\ \x74\x3d\xf4\xd5\x07\xee\xba\xfd\xc1\xdb\xb0\xe3\xf1\x5d\xe7\x8d\ \x67\xc1\x21\x00\x00\xb1\x37\x81\xe9\xb7\xb1\x7f\xba\x64\xe8\x3b\ \x86\x6e\x80\x8f\x39\x58\x19\x0d\x1b\x9c\x67\x6b\xca\x34\x81\x72\ \x7f\x39\xfc\x4b\x5d\xe8\x1f\xed\xd7\xf1\x62\x0d\x0f\x26\x1b\x04\ \x6f\x69\x09\x18\x3b\x7b\x01\x22\x84\x20\x16\x8b\x61\x6c\x7c\x1c\ \xaa\xa6\xa1\xc4\xe3\xc6\xf0\xf0\x10\xc6\x06\x26\x30\x32\x34\x82\ \xa9\xf1\x28\xfa\x4f\x0e\x61\xdf\xde\xfd\xd8\xbc\x79\x33\x76\xec\ \xd8\x39\x39\x39\x3e\xba\x7a\xeb\x3f\x3f\x81\x1d\x3f\xda\xb5\x20\ \x2c\x1f\xf9\x0d\x91\xe0\x6a\x77\x47\xa9\x5c\xd3\xaa\x19\x1a\x5c\ \xeb\x24\xb3\x7f\xb4\x9f\x1a\x1c\x10\x05\x01\x95\xd5\x21\x4c\x88\ \x03\x5c\x7b\xcf\xa3\x17\x8f\x56\xd8\x3c\xfe\x62\xd8\x6c\xb6\x59\ \x99\xe7\x4a\xdf\x1a\x02\xfd\x7d\x7d\x98\x9e\x9e\x86\xcf\xef\xc7\ \xa7\x6f\xb9\x15\xff\xf0\x8d\xbf\x85\x28\x8a\xa8\xaa\xaa\x42\x3c\ \x1e\xc7\xf8\xf8\x38\xee\xb8\xf3\x2e\x3c\xb5\xfd\xc9\x81\xf7\xf7\ \xed\x6b\xb2\x09\xb6\xc4\x86\xf5\xeb\x16\xfc\xfc\xf4\xa3\x80\x0f\ \xad\x73\xc0\xac\x4e\x5c\x3d\x6d\x9b\xe0\x76\xbb\x1d\xf1\x77\x44\ \x12\x72\x55\x1a\xb5\x8d\x61\x5e\xde\xec\xc1\xd0\xe4\x80\xae\xff\ \x32\x6c\xfa\xe2\x11\x9b\xdb\xeb\x02\xa5\x14\x9c\x73\x10\x32\x3f\ \xef\x9c\x73\x54\x45\x22\x90\x15\x05\xc3\x83\x83\xb0\x09\x02\xee\ \xbd\x7f\x13\x08\xa5\xe8\x1f\x1c\x44\x59\x28\x8c\x9f\xfd\xc7\x73\ \xf8\xd7\x7f\xd9\xf6\xac\xdb\xed\xae\xaa\x8e\x44\x2e\x08\xfc\x45\ \x7b\x47\x28\x78\x3d\xfb\x82\x67\xa0\xf6\x79\xb7\xdd\x03\x29\x21\ \x61\x2a\x16\x35\x98\x48\x48\x11\x75\x52\x77\x49\x3a\xc9\xcd\xe7\ \xf1\xdc\xbd\x55\x21\xf1\x68\x1c\xee\x32\xa7\x7e\xc5\xc6\x4f\x09\ \x8d\xe5\x2d\xb0\xdb\xed\x66\x4d\x75\xd5\x0e\x00\xdf\xaa\xaf\xab\ \x3b\xd2\xd9\xd5\x85\x96\xe6\xe6\x4f\xfe\x2d\xb1\xca\x6b\x5c\x3f\ \xf7\x8f\xd5\x7d\x11\x14\x44\x96\xe5\x59\xd0\xd6\x6d\x21\x04\xd8\ \x98\x08\xcd\x26\xe9\x67\x42\xed\xc2\x84\xe7\xf4\x7b\x34\xc9\x1e\ \x3c\xbe\xd5\x38\x38\x73\xbf\x03\x1f\xb4\xa3\x6d\xf5\xa5\x1f\xf9\ \xb9\xe9\xc5\x00\x1f\xb9\xa6\x18\x03\x6f\x26\xef\x48\x94\x8c\x8c\ \xcf\x35\x05\x17\x60\x1c\x60\xa6\xc0\xa7\x1d\x63\x7a\x57\xe4\x35\ \x7c\xd0\xb0\x73\xb7\x4c\x27\x56\xf5\xfe\x3d\xae\x74\x30\xf7\x41\ \xeb\xa9\x17\x03\xfc\x45\x23\xa0\xef\xcd\x69\x54\xde\x6c\x47\xb2\ \x62\x74\xbd\x5a\x94\x04\x59\xa0\xae\x88\x49\x61\x52\x5d\x1f\x2e\ \x3b\x8a\xc3\x8d\xbb\xcc\x63\xb5\x7b\x7e\xc8\x74\x04\x4f\x7e\x0b\ \x37\x9b\x04\x87\x01\xe0\xf0\xe3\xb1\x3f\xdc\xf7\x04\xb3\x42\xe1\ \x56\xfb\xd7\x9d\xc7\x22\xdf\x65\x74\x9e\x10\x60\x02\x04\x6a\x03\ \x44\x53\x4f\x96\x0e\xd3\x58\xe9\x00\x95\x8b\xe3\x7b\xec\x9a\xed\ \x87\xc7\xbe\xa7\x3d\x0f\x00\x4d\x5b\x1c\x38\xfa\x4f\x1f\xff\xcb\ \xa3\x1f\xcb\xab\xb2\x55\x9f\xb3\xef\x71\x9e\xae\xb8\x4a\x94\xdd\ \x8c\xda\x32\x09\x8d\x09\x10\xa8\x60\xea\x9e\xa4\xa9\x94\x4d\x0a\ \x8a\x6f\x12\x6a\x71\xf2\x2d\xc1\x60\xcf\x96\x0d\x86\x7e\xfa\xbb\ \xe7\x06\xd4\x65\x7f\xed\x40\xcf\x13\xbf\xdf\x37\x66\x2f\x3a\x01\ \xd5\x9f\x71\xe1\xcc\x4b\x49\x54\xde\x8f\x6f\x53\xd5\xf6\x20\xd3\ \x8a\xbc\x8c\x30\x70\xbb\x0a\xdd\x23\x7d\xc8\x6d\x78\x4d\xd4\x6c\ \x2f\xf6\xfe\x40\xfb\x0d\x00\x34\xdf\xe3\x46\xd7\x33\x09\xfc\xd1\ \xda\xd2\x3f\x2f\x72\x54\x7d\x89\x06\x2e\xff\x93\xc0\x6c\xeb\x57\ \xf7\xa0\x0d\x8b\xb6\x68\x8b\xb6\x68\x8b\xb6\x68\x8b\xb6\x68\x8b\ \xf6\x09\xdb\xff\x02\x76\x4b\x79\x8c\xd6\x2b\xb0\xf5\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x0d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x09\x01\x1e\x27\xa3\xd1\x60\x57\x00\x00\x02\x9a\x49\x44\ \x41\x54\x38\xcb\xc5\x93\x4d\x6f\x1b\x65\x14\x85\x9f\x99\x77\x5e\ \xc7\x89\x33\x1a\x07\xa9\xb2\x63\xea\x24\x0d\x94\x24\x22\x75\xd4\ \x82\x84\xf8\x90\x68\x59\xf0\xb1\x00\x51\x10\x52\xc5\x3f\xa8\xd4\ \xb0\xa5\x42\x62\x4f\xff\x40\xd5\x6e\x91\x68\x37\x6d\x77\x6c\x80\ \x0d\x42\x42\x21\xaa\xb0\x54\xd4\x50\xc7\xc8\x6a\x62\xbb\xcd\xc7\ \xe0\xf1\x24\x1e\x7b\x6c\x8f\xdf\xcb\x02\x5a\xb5\x1b\x76\x88\xbb\ \x3a\x8b\xa3\xa3\xe7\xea\xde\x03\xff\xf7\x58\x8f\xc4\xc2\xc2\x82\ \xba\x76\xed\x9b\x37\x72\xb9\xdc\x99\xb1\xb1\xf4\x0b\xb6\x6d\x1f\ \x01\x99\x30\xc6\x30\x1a\x8d\x7a\xc3\xe1\x70\x9f\xd7\x5e\x3f\xb7\ \x73\xeb\xc6\x5b\xab\xab\x9f\xfd\xb4\xb6\xf6\x4b\xf2\x38\xe5\xd2\ \xa5\xaf\xa6\x37\x7e\xbf\xbb\xb6\xb7\xb7\x2b\x71\x1c\xcb\x60\x30\ \x90\x38\x8e\xa5\xdb\xed\x4a\xa7\xd3\x91\x83\x83\x50\xda\xed\x96\ \xd4\x8b\x45\x79\xf8\xb0\x29\xd5\x6a\xe5\xf6\x95\x2b\x97\x8f\x02\ \xd8\x00\xc7\x8e\xcd\x9d\x77\x27\xdd\x57\xb4\xd6\x4f\xc0\x09\x22\ \x82\x88\x79\x0a\xd6\x71\x1c\x5c\xd7\x7d\xa9\x58\x2c\x5e\x00\x70\ \x00\xed\x65\xb3\x6f\x5b\xd6\xdf\x06\x63\x0c\x96\x65\x21\x22\x24\ \x49\xc2\xc1\xf2\xf2\x53\x3b\xc7\xa7\x5e\x06\xa0\x04\x9f\x03\x5f\ \x3a\xa7\x4f\xbf\x39\xf3\xcc\xd4\xd4\xa9\x27\x4d\xa3\xd1\x08\x11\ \xc1\xb6\x6d\xdc\xdf\xee\x20\x22\x00\x74\x4a\x2b\xa4\x7f\xbd\x8d\ \x31\x06\xdf\xdf\x1f\xbd\x7f\xf1\x8b\xe7\x9c\x0f\xcf\x7e\xf0\x91\ \xd6\x5a\x8b\x08\x87\x87\x1d\xc2\xf0\x80\x24\x49\xe8\xf5\x7a\xb4\ \x5a\x2d\x52\xa9\x14\x53\x53\x59\x94\x52\xa4\x81\x28\xea\x32\x36\ \x96\x42\x29\x47\xbd\xfb\xde\x3b\x1f\x3b\x7b\xbb\x7f\x9e\xf4\xfd\ \x16\xbe\xdf\x42\x6b\x8d\x65\x59\x94\xcb\x65\xee\x55\xee\x51\x98\ \x2e\x30\x3b\x37\xcb\x70\x30\xa4\x50\x28\xb0\x0c\xd4\xeb\x0d\x92\ \x24\xc1\x88\x61\x7f\xcf\x3f\xe1\x6c\x6d\x6d\xa9\x28\x8a\xd0\x5a\ \x33\x18\x0c\x68\x36\x9b\x54\xff\xa8\xb2\xb4\xb4\x44\x7d\xfb\x01\ \xdf\x7f\xf7\x03\xd3\xd3\x79\x82\x20\x40\xae\x5e\xc5\x8e\x22\x00\ \x92\x24\xa1\xd1\x68\xa2\xf2\xf9\xfc\x27\x41\x10\xbc\x58\xab\xd5\ \xa8\xd5\x6a\x6c\x6e\x6e\x12\xb6\x43\x82\x76\x9f\x73\x9f\xae\x32\ \x33\x73\x94\xeb\xd7\xbf\x66\x6e\x6e\x96\x72\xb9\x4c\x36\x9b\xa5\ \xd1\x68\x60\xdb\x36\x95\x4a\xe5\xae\x33\x3e\x3e\x2e\xa5\x52\x89\ \x47\x27\xac\x56\xab\xac\xaf\xaf\xe3\x07\x5d\xbe\xfd\xf1\x67\x3a\ \x51\xc8\x78\xc6\xc5\x18\xc3\xca\xca\x0a\xc6\x18\x3c\xcf\x23\x8e\ \x63\xfa\xfd\x3e\x6a\x7e\x7e\xbe\xe0\x79\xde\x71\xad\xb5\xab\x94\ \x52\x9e\xe7\x11\x86\x21\xf5\xfa\x7d\x1a\xed\x98\x7e\x7c\xc8\x99\ \x57\x4f\x30\xe9\x4e\x92\x4e\xa7\x31\xc6\x10\xc7\xf1\xd0\xf7\xfd\ \xfb\xdb\xdb\xdb\x37\xad\x7f\x3e\x24\x63\xdb\xf6\xcc\xe2\xe2\xe2\ \x72\x2e\x97\x3b\x9e\xc9\x64\x9e\xdd\xd9\xdd\xc9\x3b\xca\x79\x7e\ \x22\x33\xd1\xf3\x3c\xaf\xa6\x6c\x15\x84\x61\xf8\xc0\xf7\xfd\xea\ \xc6\xc6\xc6\x9d\x7e\xbf\x5f\x07\x22\xeb\x5f\x7a\x62\x03\x29\xc0\ \x00\x43\x40\xfe\x93\x36\xfe\x05\x70\x07\x36\x76\xfb\x6c\xb2\x0e\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x00\xaa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x11\x18\x05\x2e\x78\x8a\xab\x00\x00\x00\x19\x74\x45\ \x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ \x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ \x00\x00\x12\x49\x44\x41\x54\x38\xcb\x63\x60\x18\x05\xa3\x60\x14\ \x8c\x02\x08\x00\x00\x04\x10\x00\x01\x85\x3f\xaa\x72\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x88\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x03\x00\x00\x00\x9d\xb7\x81\xec\ \x00\x00\x02\x4f\x50\x4c\x54\x45\x5b\x5b\x5b\xaf\xaf\xaf\xff\xff\ \xff\x00\x00\x00\x80\x80\x80\x27\x27\x27\xb1\xb1\xb1\x24\x24\x24\ \xa4\xa4\xa4\x11\x11\x11\x22\x22\x22\x88\x88\x88\x99\x99\x99\x37\ \x37\x37\x7d\x7d\x7d\x71\x71\x71\x3a\x3a\x3a\x7f\x7f\x7f\x34\x34\ \x34\x76\x76\x76\x5b\x5b\x5b\xaf\xaf\xaf\x7e\x7e\x7e\xa3\xa3\xa3\ \x3f\x3f\x3f\x84\x84\x84\x3c\x3c\x3c\x80\x80\x80\x41\x41\x41\x84\ \x84\x84\x71\x71\x71\x4b\x4b\x4b\x84\x84\x84\x4c\x4c\x4c\x73\x73\ \x73\x9c\x9c\x9c\xc2\xc2\xc2\x58\x58\x58\x71\x71\x71\xac\xac\xac\ \xd1\xd1\xd1\xcf\xcf\xcf\x5b\x5b\x5b\xaf\xaf\xaf\x8a\x8a\x8a\xae\ \xae\xae\x99\x99\x99\xba\xba\xba\xc4\xc0\xc0\xcb\xcf\xcb\x44\x44\ \x44\x85\x85\x85\x98\x98\x98\x99\x99\x99\x9a\x9a\x9a\xb6\xb6\xb6\ \xb8\xb8\xb8\xb9\xb9\xb9\xb9\xb9\xb9\x67\x67\x67\x79\x79\x79\x84\ \x84\x84\x9e\x9e\x9e\x49\x49\x49\x5b\x5b\x5b\x66\x66\x66\x7d\x7d\ \x7d\x8c\x8c\x8c\xa3\xa3\xa3\xa7\xa7\xa7\xab\xab\xab\xaf\xaf\xaf\ \xc3\xc3\xc3\x2b\x2b\x2b\x31\x31\x31\x36\x36\x36\x37\x37\x37\x39\ \x39\x39\x3b\x3b\x3b\x3c\x3c\x3c\x40\x40\x40\x42\x42\x42\x44\x44\ \x44\x45\x45\x45\x46\x46\x46\x4a\x4a\x4a\x4e\x4e\x4e\x4f\x4f\x4f\ \x51\x51\x51\x53\x53\x53\x54\x54\x54\x57\x57\x57\x59\x56\x44\x5f\ \x5c\x4a\x65\x61\x45\x66\x66\x66\x67\x67\x67\x68\x68\x68\x69\x66\ \x54\x6a\x66\x4a\x6a\x6a\x6a\x6d\x6d\x6d\x6e\x6e\x6e\x71\x71\x71\ \x72\x6f\x5d\x77\x73\x57\x78\x78\x78\x79\x79\x79\x7c\x7c\x7c\x7d\ \x7d\x7d\x7e\x78\x55\x80\x82\x80\x82\x82\x82\x83\x82\x82\x85\x81\ \x65\x85\x85\x85\x86\x86\x86\x87\xaf\xec\x88\x88\x88\x89\x89\x89\ \x8a\x8a\x8a\x8b\x8b\x8b\x8b\xd4\x8b\x8d\x8d\x8d\x8e\x8e\x8e\x90\ \x90\x90\x92\x92\x92\x94\x94\x94\x95\x8d\x59\x96\x96\x96\x97\x97\ \x97\x9b\x9b\x9b\x9d\x9d\x9d\x9d\xc4\xff\xa0\xa0\xa0\xa1\xe7\xa1\ \xa7\xa7\xa7\xac\xac\xac\xaf\xaf\xaf\xb2\xb2\xb2\xb3\xb3\xb3\xb4\ \xb4\xb4\xb5\xb5\xb5\xb7\xb7\xb7\xbb\xbb\xbb\xbe\xbe\xbe\xc0\xd7\ \xc0\xc1\xc1\xc1\xc2\xcc\xd0\xc7\xc7\xc7\xc7\xe0\xc7\xc8\xc8\xc8\ \xc9\xcb\xd4\xcd\xcd\xcd\xce\xce\xce\xd1\xd1\xd1\xd2\xd2\xd2\xd3\ \xd3\xd3\xd4\xd4\xd4\xd5\xd5\xd5\xd7\xd7\xd7\xd8\xd8\xd8\xda\xda\ \xda\xdb\xdb\xdb\xdc\xdc\xdc\xdd\xdd\xdd\xde\xde\xde\xde\xed\xf1\ \xdf\xcf\xcf\xdf\xdf\xdf\xe0\xe0\xe0\xe1\xe1\xe1\xe2\xe2\xe2\xe3\ \xe3\xe3\xe4\xe4\xe4\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\xe7\xe7\xeb\ \xf5\xe8\xd8\xd8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\xec\xbc\xbc\ \xec\xec\xec\xed\xed\xed\xee\xee\xee\xf0\xf0\xf0\xf2\xf2\xf2\xf4\ \xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf9\xf9\xf9\xfa\xfa\xfa\xfc\xfd\ \xff\xfe\xd0\xd0\xff\xff\xff\xc6\xdc\x05\x0b\x00\x00\x00\x01\x74\ \x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x01\x62\x4b\x47\x44\ \x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\ \x76\x00\x00\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\ \x4d\x45\x07\xde\x0a\x09\x01\x21\x17\xdd\xd6\x7a\xc7\x00\x00\x02\ \xb2\x49\x44\x41\x54\x58\xc3\xe5\xd7\xc9\x4f\xe2\x50\x1c\xc0\x71\ \xd3\x13\x67\x2e\xb8\x6f\x89\x1e\x5c\x12\xe3\x6e\x54\x5c\x51\xe7\ \x09\x23\xc1\x41\x70\x52\xaa\x82\x1b\x89\x36\x46\xc9\xa8\x11\xb5\ \x08\x21\x2e\x04\xf5\x40\x3c\x18\xa3\x80\x18\x77\x69\x6c\x6b\x65\ \x99\xf9\xd7\xe6\x3d\xaa\x98\xc9\x5c\xc0\xa6\xcd\x24\xf3\xbd\x90\ \x92\xfc\x3e\xd0\xd7\x16\xda\x9c\x9c\x7f\xbe\x48\x84\x85\x71\x1c\ \xcf\xbf\xc2\x62\x30\xf4\xca\xf3\x1c\xc7\xb2\x37\x37\x72\x00\x97\ \x97\x1e\x0f\xcf\xc7\x62\xf1\x78\x22\x91\x4c\xfe\x84\x25\x93\x89\ \x44\x3c\x1e\x8b\x79\x3c\x91\x88\x3c\x00\xcb\x7e\x00\xbf\x60\xef\ \x00\xcf\xcb\x0d\xf8\xfd\x0b\x0b\xd3\xd3\x8b\x8b\x87\x87\xf2\x03\ \x1c\x77\x70\xe0\xf3\x7d\x49\xe7\xf7\xfb\x7c\xaf\xaf\x1c\x27\x0f\ \x10\x0e\x33\x0c\xcb\x82\xbf\xe2\x79\x96\x95\x07\x08\x85\x68\x9a\ \x61\x86\x61\x5a\xad\x4e\xf7\x15\xa6\xd3\x69\xb5\xc3\xc3\x2c\xcb\ \x30\xe1\xb0\x1c\x40\x30\x18\x8d\xd2\xf4\xd8\xd8\xc8\x88\x5e\x6f\ \x30\x7c\x83\x19\x0c\x7a\xbd\xc9\xc4\x30\x34\x1d\x0a\x49\x09\x00\ \xa0\x54\xda\x6c\x14\x8c\x24\x71\x1c\x80\xd1\x51\xa3\xd1\x6c\xfe\ \x0e\x33\x9b\x8d\xc6\xf1\x71\x9a\x8e\x46\x83\x41\xe9\x00\x00\x08\ \x42\xa1\x78\x49\x47\x92\x00\x58\x2c\x56\x2b\x49\xce\xcf\x5b\xad\ \x16\x8b\xd1\xf8\xf4\xf4\xf8\x78\x71\x21\x15\x80\xc6\xdd\x6e\x95\ \x4a\x91\x4a\xa5\x52\xab\xbd\x5e\x82\x00\xc0\x6e\xa7\xa8\xe5\x65\ \xbb\xdd\x66\x33\x99\x1e\x1e\xee\xef\xcf\xcf\xa5\x02\x94\x4a\xb4\ \x78\x2c\xeb\xf1\x50\xa9\x9e\x9f\xbd\x5e\x8a\x42\x4b\x89\x7e\x60\ \x99\x54\x77\x77\xb7\xb7\x67\x67\xd2\x00\x00\xe0\x38\x45\xa9\xd5\ \x18\x96\x4c\x0a\xe3\x18\x86\x96\x11\xed\xc4\xed\x5b\x37\xb0\xab\ \xab\xd3\x53\x69\x00\xa5\x92\x20\xd0\x60\x73\x33\x86\x25\x12\xc2\ \x38\x91\x0a\xc7\xaf\xde\x8a\xc0\x76\x76\xa4\x02\x70\x5c\x00\x28\ \xca\xe5\xc2\x60\x75\x75\x68\x5b\x00\x4e\xff\xe8\xe4\x44\x3a\x80\ \x24\xd1\x45\x74\x7d\x8d\x80\x78\x5c\xd8\x42\x40\x46\x7f\xe8\x22\ \x81\xb6\x36\x04\xa0\x84\xe5\x53\xa9\x10\x21\x1f\xd0\xda\x1a\x08\ \xe0\x38\x22\xd0\x41\x7c\x79\x41\x4b\xa9\xd1\x08\x07\x12\xbd\x2f\ \x35\xd0\xd2\x12\x08\xec\xef\xaf\xae\x0a\x04\xfa\xda\x54\xba\x8c\ \x76\x40\x24\x50\x5b\x8b\xc6\x9d\xce\x99\x19\x74\x32\xbf\x2f\xe5\ \xfb\x49\x9c\xc1\x0e\x88\x06\x4a\x4b\x07\x06\xdc\xee\xf5\xf5\x89\ \x89\xe3\x63\x81\xf8\x28\xa3\x15\x10\x0d\x74\x76\x0e\x0d\xb9\x5c\ \x3f\x60\x93\x93\xb3\xb3\x1b\x1b\x1f\x3b\x91\xe1\x35\x20\x12\x28\ \x2f\x6f\x68\xd8\xdc\xdc\xdd\x75\x38\x9c\xce\xed\xed\xad\xad\xbd\ \xbd\xa3\xa3\xa6\xa6\x2c\x6e\xaa\x45\x03\x95\x95\x7d\x7d\x1a\x8d\ \xc3\x31\x35\xb5\xb6\xe6\xf5\xa2\xf1\xc6\xc6\xac\x6e\xeb\x45\x03\ \x45\x45\x6a\xf5\xca\x4a\x4f\xcf\xd2\x52\x57\x57\x7f\x7f\xd6\xe3\ \xa2\x81\xbc\xbc\xc1\xc1\xb9\xb9\xf6\xf6\xde\xde\xfa\xfa\x8e\x8e\ \x92\x92\x9a\x9a\x2c\x3f\x5f\x24\x50\x50\x80\xc6\xbb\xbb\x0b\x0b\ \x2b\x2a\xca\xca\x3e\xf1\x60\x25\x1a\xa8\xae\x46\xe3\xb9\xb9\x9f\ \x7e\xb4\x13\x0d\x14\x17\x57\x55\xe5\xe7\x8b\x78\xb8\x14\x0d\xfc\ \xe7\xfd\x06\xb8\x41\x06\xca\x25\x75\x20\xdc\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x8c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\ \x01\xbb\x01\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x10\x2a\x23\x10\xc7\x31\x10\x00\x00\x02\x19\x49\x44\ \x41\x54\x38\xcb\x95\x93\xc1\x4b\x14\x71\x14\xc7\x3f\x6f\x76\xc6\ \x5d\x77\x96\x22\xec\xb0\x03\xa2\x07\x0f\x1e\x3c\x08\x8e\x2d\x06\ \x09\x81\x5d\x92\x24\xe8\xe4\x21\x8c\x34\xba\x06\xee\x2d\xfb\x2b\ \x04\x71\xc1\xf6\x3a\x6c\xd0\x29\xb0\x3d\xe9\x41\xeb\x14\x62\x17\ \x11\xa5\xc5\xed\x62\x04\xb1\x94\xb3\xec\x9a\x3b\x33\xaf\xcb\xee\ \x32\x5a\x90\x7e\xe0\xc7\x8f\xdf\x17\xde\x7b\xdf\xf7\xfb\xbd\x9f\ \x94\xcb\xe5\xbb\xb6\x6d\x27\x54\x55\x01\x6c\xdb\x3e\xdb\xd8\xd8\ \x78\x32\x36\x36\xf6\x36\x99\x4c\xb6\xda\x32\x22\x42\xbd\x5e\xaf\ \x4d\x4f\x4f\x7f\x26\x86\x79\x74\x74\xf4\xbe\x54\x2a\xf5\x1a\x86\ \xd1\x15\x45\x84\x72\xb9\xfc\x2c\x8a\x22\x3a\x7a\x14\x45\xe4\xf3\ \xf9\x77\xc0\x43\x80\xbd\xbd\x3d\x46\x46\x46\x30\x55\xf5\xf7\xd6\ \xd6\x56\xaf\xe3\x38\x24\x12\x09\x3a\x15\x55\x95\xa1\xa1\x21\xaa\ \xd5\x2a\xad\x56\x8b\x20\x08\x70\x1c\xc7\xaa\xd5\x6a\x8e\xef\xfb\ \x3d\x83\x83\x83\x5f\x01\xcc\x4e\xd5\xa5\xa5\x25\x0e\x0f\x0f\xb9\ \xe8\xc4\x75\x5d\x54\x15\x11\xc1\xf3\xbc\xfb\x61\x18\x1e\xbb\xae\ \xfb\x13\xb8\x01\x60\x8a\x08\x00\x99\x4c\x86\xe5\xe5\x65\x2c\xcb\ \xc2\xb2\xac\x78\x9b\xf4\xf5\xf5\x51\xaf\xd7\x39\x3d\x3d\xa5\xd9\ \x6c\xb2\xb9\xb9\xd9\x6c\xbb\xbc\x66\x72\x81\xf9\xf9\x79\x86\x87\ \x87\xcf\x69\x86\x61\xa0\xaa\xdd\x75\x70\x70\x90\x5d\x59\x59\xf1\ \xd7\xd6\xd6\x02\x33\x6e\x17\xa0\xbf\xbf\x9f\xc5\xc5\x45\xfe\x83\ \x00\x99\xd5\xd5\xd5\x5f\x86\xb4\x23\xa3\x28\x22\xbe\x5f\x06\x11\ \xc1\x68\x34\x1a\x1f\x76\x76\x76\x3e\x65\xb3\xd9\x56\xdc\xc9\x65\ \x50\x55\x8c\x7c\x3e\xff\xc0\x75\xdd\x9c\x61\x18\xdf\x01\x82\x20\ \xe0\x2a\x74\xef\x60\x77\x77\xf7\x78\x7d\x7d\xfd\x66\x2a\x95\x4a\ \x5d\xa9\x85\xce\xc1\xf3\xbc\xd7\x73\x73\x73\x4f\x93\xc9\xe4\x9b\ \xab\x24\x10\x80\xc9\xc9\x49\xb6\xb7\xb7\x01\x28\x14\x0a\x45\xdf\ \xf7\x1f\x07\x41\xd0\x63\x59\x16\x61\x18\xa2\xaa\x98\xa6\xd9\x08\ \xc3\x30\x1d\x9f\x54\xdb\xb6\x7f\xfc\x95\x35\x97\xcb\x3d\x1f\x1f\ \x1f\x2f\xb5\x3f\x96\x07\xdc\x9e\x9d\x9d\x7d\x34\x35\x35\x55\x01\ \xae\xff\xeb\x3d\xbb\xc4\x9d\x74\x28\x16\x8b\x77\xf6\xf7\xf7\xef\ \x9d\x9c\x9c\x7c\x19\x1d\x1d\xad\xce\xcc\xcc\x7c\x1c\x18\x18\xd0\ \xce\x78\x9f\x9b\xc4\x78\xf0\xc4\xc4\xc4\x2d\x11\x79\x51\xa9\x54\ \x5e\x79\x9e\x17\xaa\xea\x59\x3a\x9d\xfe\xb6\xb0\xb0\x50\xb2\x6d\ \xfb\xa5\x88\x54\x00\xfe\x00\xd5\x13\xe6\x8b\x37\xce\xfd\x14\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x11\xca\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x08\ \x08\x13\x3a\x00\x2a\xed\x77\x81\x00\x00\x11\x69\x49\x44\x41\x54\ \x78\xda\xed\x5a\x79\x7c\x15\x55\x96\xfe\xee\xbd\x55\xef\xe5\xe5\ \x6d\x79\x09\xd9\x5f\x12\x48\x08\x0a\x84\x06\x09\x08\x02\x01\x65\ \x51\x44\x6c\xb4\x17\x96\xd6\x69\xb7\x06\x15\xd7\x76\x5c\xba\xdb\ \x56\x51\x46\xa7\xd5\xb1\xb1\x1d\xd1\x16\x71\x6f\x06\x05\x1c\xa1\ \x69\x59\x9a\x35\xb2\x38\x82\x08\x1a\xc2\x22\x3b\x84\x90\x3d\x2f\ \x79\x5b\xbd\x7a\x55\xb7\xe6\x8f\xaa\x7a\xa9\x84\x40\xa3\x0d\x3a\ \xdd\x93\xf3\xfb\xd5\xef\x54\xd5\xab\x54\xe5\x7c\xf7\x3b\xdf\x39\ \xf7\x56\x01\x5d\xd6\x65\x5d\xd6\x65\x5d\xd6\x65\x5d\xd6\x65\xff\ \x4f\x8d\x7c\x1f\x0f\xdd\xb1\xf6\x76\x5b\x7d\x53\xab\x5b\x91\x25\ \x5b\x38\x12\x96\x93\x93\x59\xe4\xda\x1b\x57\x46\xff\x29\x00\x78\ \x79\x96\x0b\x77\xcf\x0a\x01\x00\x16\xbd\xd2\xc3\x19\x0c\x36\x8e\ \x52\xe4\xe8\x70\xc6\x6c\x03\x33\xfd\x43\x4b\x52\x33\x06\xf8\x65\ \x39\x02\x39\x16\x44\x2c\x16\x81\x1c\x8b\x20\x1a\x8d\x20\x2e\x4b\ \x88\xc5\xa4\x2f\x64\x59\xfa\xc8\xeb\xf1\xce\xb9\xf9\x97\xdb\xc3\ \xff\x30\x00\xfc\xfe\xb7\x5e\x3c\xf0\x6f\x2d\x00\x80\xb9\x4f\xa5\ \xfc\x30\x16\x0d\x5e\x2b\x8a\x6c\xa2\xaa\xca\x59\x8c\x01\x94\x00\ \x94\x02\x84\xe8\x0f\x4c\xcb\xec\x8b\x8c\xdc\x11\x50\x14\xd9\x00\ \x21\x8c\x98\x14\x45\x34\x1a\x46\x34\x1a\x41\x54\x8a\x82\x80\x3f\ \x7d\xff\xac\x43\xbf\xfd\xcf\xd9\x3d\x71\xcf\x63\x07\xff\xef\x01\ \xf0\xc4\xbd\xc9\x78\xf2\xa5\x08\x00\xe0\x77\x0f\x39\xff\x25\x1e\ \x8f\xdd\x4a\x29\xbf\x9c\x10\x0e\x81\x01\x8c\x41\xf7\x54\x0f\xbe\ \xdd\x66\x3c\x35\xaf\xe8\x1a\x24\xb9\xf2\x21\x4b\x2d\x90\x24\x83\ \x0d\x52\x04\x52\x24\x82\x48\x34\x8c\xb8\x1c\x6b\x10\x44\x71\xd2\ \x3d\x8f\x1d\xd8\xfa\xf2\xec\x62\xdc\xfd\xd8\x81\xef\x1f\x80\xc7\ \xef\xf5\xe2\xa9\x97\x5a\xf0\xd4\x03\x9e\xc1\xe1\x50\xf8\x41\x4a\ \xb4\xc9\x00\x87\x28\x20\x11\x38\x13\x00\x81\xb6\x79\xca\xda\x3c\ \x25\x6d\x1e\x00\xbc\xa9\xc5\xc8\xcc\x1b\x07\x39\x16\xd2\x99\x10\ \x8b\x42\x92\x22\x90\x0c\x36\x44\x22\x61\x68\x1a\xf9\x30\xcb\xef\ \xbf\x61\xea\xf4\x4d\xb1\xf3\x0d\x00\x3d\xd7\x0b\x1f\x9e\xe1\x04\ \x00\x84\xc3\xd2\x0f\xef\xbf\x59\xd8\x5f\x5f\xdf\xba\x2d\x2e\xab\ \x93\x15\x85\x43\xd3\x00\xae\x01\x2a\xd7\xbd\xc6\x01\x0e\x00\x1a\ \xa0\x19\x1e\x06\xfd\x09\xd5\x3d\xa5\x3a\x60\x91\xd6\x03\x38\xbe\ \x6f\x3e\x28\x91\xe0\x74\xf9\xe0\x72\xba\xe1\x76\x7b\xe0\xf1\x78\ \xe0\xf1\x7a\xe0\xf5\x7a\x61\xb7\x0b\x3f\xae\xa9\x3a\x26\xbd\xf4\ \x64\xc1\x1d\x00\xf0\xea\x33\x45\xdf\x1d\x00\x77\xdd\x68\x07\x00\ \x28\x2a\x2f\xbd\x73\x1a\xfb\x3a\x18\x8c\x2d\x8b\xc9\x4a\x2f\x33\ \x68\xae\x41\x07\xc0\x08\x9e\x73\x40\x35\x41\xe0\xba\xd7\xa0\x5f\ \xa3\x99\xb4\x33\xc0\x00\xd1\x99\x40\x20\xa3\xfa\xd0\x22\x84\x9a\ \x77\xc0\xe9\x4e\x83\xd3\xe5\x86\xcb\xed\x81\xc7\x00\xc2\xeb\x75\ \xc3\xed\x76\x82\x10\xed\xd5\x39\x8f\xe7\x7c\x4d\x29\xbd\x08\x00\ \x5e\x9e\x9d\x7f\x61\x53\xe0\xae\x1b\x93\x30\xf7\x4f\x12\xa6\x4f\ \x66\x0b\xe4\xb8\xfa\x33\x46\x75\x8a\x9b\xa3\x67\x1e\x5b\x29\x2f\ \x9a\xd4\x37\x75\x40\x00\x44\x41\xdf\x17\x05\xfd\x6f\x04\x41\x0f\ \xdc\xbc\x97\x29\x92\x94\x00\x82\xcd\x8d\xcc\x82\x49\xd0\x34\xc1\ \x48\x89\x08\x62\x92\x5e\x29\x22\x51\x33\x35\xa2\x00\xc8\xeb\xf7\ \x3d\x59\x3d\xe3\xef\x05\x80\x9d\xed\xc7\x61\x03\xc5\xee\xbd\x7a\ \xa8\x47\x15\x85\x0f\x36\x69\x0b\xd2\x36\x82\xc4\x1c\x41\xc3\xc3\ \xb2\x6f\x52\xdd\x3c\x4e\x5c\xd7\x21\x60\x4a\x0d\xa1\x34\xf6\x01\ \x19\xa1\xe6\xaf\x60\xb3\x25\xc3\xe9\xed\x61\x80\x4c\x21\x30\x0a\ \x26\x10\x30\x46\xc0\x28\x01\xe7\x6a\xe9\xd8\x11\x49\x8f\x4e\x1c\ \xed\x3e\xb4\x72\x63\xa8\xe2\xd5\xa7\x73\xf0\xf1\xfa\xe0\xf9\x4b\ \x81\x19\xd3\x6c\x43\x9a\x02\xd2\x11\x4d\xd5\xbc\x66\x1a\x9b\x54\ \x86\x49\x7b\x4d\xa7\xbb\x99\xff\x9a\x71\x5e\xb5\xea\x41\x87\x7d\ \x6e\xd9\xb7\xf2\x90\x50\x7d\xa3\x06\x43\x42\x4d\x5b\xd1\x74\x72\ \x11\x92\xec\x76\x38\x9d\x1e\xb8\x5c\x7a\x4a\x78\x3d\x5e\x78\xbd\ \x1e\x78\x3d\x6e\xb8\x5d\x0e\x51\xd3\xd4\x05\x2f\x3e\xee\xdb\x29\ \xda\xed\x79\x00\x30\x77\x76\xc6\xdf\xc7\x80\x7b\x7e\xee\xc0\x90\ \xfe\x62\xbf\xd6\xa0\xbc\x43\xd3\xb4\x84\x5a\x13\xd2\xb6\xc1\x14\ \x33\x83\x09\x9d\x5d\x93\x18\x51\xd2\x76\x2d\xed\xc0\x18\x6a\xe9\ \x11\x18\x69\x2b\x93\xcc\x48\x0f\x68\x51\x84\x03\xbb\x60\x4f\x4e\ \x45\xb2\x3b\x0f\x8c\x6a\x06\x1b\x18\x18\xa3\xa0\x8c\x82\x51\x0a\ \x02\x2d\x2b\x12\x0e\xfd\xf2\xaa\x91\x49\x29\xf7\xce\x6a\x5c\xbd\ \xfc\x9d\x7b\xb0\x70\xe9\xb6\x6f\x0e\xc0\x8c\x69\x36\xf4\x2b\xc9\ \xb2\x1d\x38\xd4\x78\x54\x83\xc6\xa8\x25\x28\x4a\x2d\xa2\x61\x49\ \x01\xd2\x41\xdd\xad\x20\x10\xd2\x5e\xf5\xad\xf7\xb2\xa6\x03\xa1\ \x6d\xfd\x42\x02\x08\xd6\xc6\x06\x39\x72\x14\x8a\x5c\x0d\xb7\xaf\ \x0f\x98\x20\xb4\x81\x20\x50\x3d\x25\x18\x03\x25\x80\xa6\xa9\x43\ \xc7\x8d\x60\x0f\x07\x83\x7b\x2a\x57\x6c\x88\xee\x9f\x3b\xdb\x87\ \x15\x1b\xa4\x73\x07\x60\xc7\x6e\x15\x19\x29\xa1\x05\x8a\xca\xfb\ \x5b\x47\x96\x76\x1c\x6d\x6b\x20\xe8\x90\xfb\x56\x4d\xa0\x6d\xe0\ \xd0\x0e\x25\xd0\xdc\xb7\x36\x4a\xc4\xe2\x99\x05\x24\x81\x01\xe0\ \x21\x44\x5b\x77\xc1\xe1\xcc\x45\x92\x23\x03\x8c\x6a\x86\x2e\x50\ \x08\x54\x67\x04\x63\x04\x84\x12\x31\x16\x8b\x4c\xbd\xb2\x4c\x18\ \x9f\x92\xe2\xfd\x78\xe9\xea\xd6\xd0\x39\x03\xf0\xaf\xbf\x70\xa5\ \xb5\x04\x63\xef\x76\x16\x3c\xd0\x49\x80\xa4\x2d\xb0\x04\x30\xb0\ \xb0\xa5\x93\x63\x13\x34\x4a\xda\x07\x4e\x88\x3e\xfa\xc4\xac\x34\ \x30\xbc\x99\x22\x46\x55\x89\x87\x0f\x82\xab\xcd\x70\x7a\x7b\x43\ \xa0\x14\x82\x20\x18\x4c\xd0\xd3\x81\x52\x0a\xa6\xe7\x8f\x3f\xd8\ \xda\xfc\xe0\xd5\xa3\xed\x8e\x55\xe5\xca\xda\x79\xff\x9e\x8e\xe5\ \xeb\x22\x67\x17\xc1\x50\x94\xdd\xa6\x69\x6d\xb5\x91\x58\x8a\x24\ \xed\x84\xda\x00\xa0\x11\x5d\x14\x39\x8c\x9a\x6f\x15\x3a\xa3\x21\ \xe2\xaa\xe5\xd8\x22\xa0\x5c\xd5\x05\xd2\x14\x50\xd5\x14\x59\x6e\ \xe4\x9a\xd6\x1e\x70\x81\x02\xa2\x08\x20\x7e\x14\xc1\x53\xef\x42\ \x60\x11\xb8\x5c\x29\x70\xbb\x3c\xf0\x24\xc4\x51\x17\x4a\x8f\xdb\ \x05\xb7\xc7\x03\x02\xfe\xc8\x0b\x8f\xb2\x56\x45\x89\x4e\x00\x80\ \xf9\xbf\xf3\xb6\x03\x40\xb0\x1e\xf4\x2e\xce\xfa\x62\xf7\x5e\x8e\ \x98\x14\x6c\x2f\x6a\x96\xdc\x87\x55\x08\x49\xe2\xff\x04\xe1\x80\ \xc6\x2c\x4d\x8f\x11\x24\x55\x01\x95\xe8\xbf\x9b\x9e\x12\x80\xa8\ \xc6\xe8\x73\x80\x72\x40\x31\x3c\x27\x00\xa7\x00\xd5\xda\x8f\x52\ \xc7\x32\x4a\x88\x82\x68\xe3\x72\xd8\x9c\x17\xc3\xe9\xbd\x0c\xa2\ \xc0\x60\x13\x18\x44\x51\x84\x68\x13\x20\x8a\x14\x36\x51\x80\x4d\ \x60\x88\x44\x23\xee\x70\x38\xfc\xf1\x9c\xc7\x6c\x9b\xf2\xfd\x99\ \x3f\x02\x5a\x1a\x3a\x65\xc0\xfd\xb3\xf6\xaf\xed\x51\xd0\xed\x8f\ \x00\x4d\x3c\x30\xc1\x04\x0b\x10\x56\x50\x4c\x60\x12\x81\x5b\x58\ \x60\xee\x9b\x5d\xa1\x79\x8e\xab\xc6\x88\xab\x46\xe7\x68\x7a\xde\ \xa1\xa5\x36\xdb\x69\x72\xba\xf0\x52\x0a\xd8\x6c\x80\x26\xef\x43\ \xa4\x61\x21\xec\x36\x15\x4e\x57\x0a\xdc\x6e\x0f\xbc\x6e\x9d\x0d\ \x1e\x8f\x07\x1e\x8f\x1b\x1e\xb7\x1b\x29\x29\x6e\x10\x4d\x2e\x3b\ \x70\x8c\xd7\x57\x7d\x36\xa0\x5f\xa7\x0c\xf8\xf5\xcc\x74\x3c\xfa\ \xdc\x91\x3b\x67\xdc\x90\x7f\x47\x34\x74\x1c\xac\x13\xea\xb7\xcb\ \x6f\x8b\xd0\x59\xb5\x82\x1b\x69\x64\xb6\xca\x84\xeb\xbf\x73\x23\ \x68\x42\xf4\xd1\x26\x44\x0f\x96\x51\xc3\x1b\x6c\xa1\xb4\x0d\x18\ \x4a\x01\xa6\x59\xfa\x05\xcb\xc6\x12\xcf\x94\x20\x35\x7d\x04\xd1\ \xd5\x1f\x2e\xd7\x25\x3a\x1b\x6c\x02\x44\x51\x80\x40\x55\x78\x53\ \xfb\xc0\xe5\xf6\x20\xcb\xd7\x80\x14\xdb\x76\x1c\xaf\x89\xa8\x67\ \x6d\x85\xfb\x5c\x94\xbb\xe1\xca\x11\xb1\x51\x2d\xcd\x0d\x24\xa1\ \xe6\x9d\xa8\xbc\xc9\x0c\xb3\x94\x25\xbc\xa9\xee\xd6\xb6\xd9\xd8\ \xac\xad\xb2\x28\xea\x5e\x10\x00\x9b\x71\x4e\x10\xf5\xf3\x36\xcb\ \x35\xe6\x4c\x33\xd1\x4a\xb3\xf6\xd3\x6b\x13\x78\x4d\x03\x38\x71\ \x23\xc9\x3b\x1a\x1c\x1e\xd8\x5c\xfd\x60\x23\x5f\x23\x99\xaf\xd6\ \xca\xb7\x9e\xe0\xcb\x37\x66\x90\x4d\x3b\xdd\x6f\x56\xee\x39\x34\ \xbd\x53\x06\x98\xa6\x68\xce\x8a\xcf\x2b\x85\x91\xfd\x8b\x42\x44\ \x8a\x49\xed\xa8\x8f\x0e\xd4\x4f\xb4\xbb\x68\xdf\x22\x5b\xb5\x40\ \xe3\x80\x46\x75\xaf\x1a\x79\xcf\x8d\x51\x27\xa4\x4d\x27\xcc\x91\ \xe7\xaa\x2e\x88\x84\x00\xcc\x4c\x1f\xe3\x37\x46\x8d\xd4\xe8\x8c\ \x99\x1c\xb0\xa7\xf4\x83\xdd\x53\x88\x24\x7a\x04\x47\xf7\x3d\xac\ \x2e\x59\x97\x8e\x15\x9b\x73\x28\x48\x01\x73\x38\x18\x7c\xa9\xea\ \xbc\x49\x57\x53\x2c\x5b\x79\xa0\x73\x00\x4a\x7a\x67\x42\x85\xd8\ \x50\x55\xa3\xd2\xee\xb9\xd9\xdc\x4e\x8e\x50\x9c\x8d\xfa\xd6\x0e\ \xb1\xa3\x60\x02\x20\x46\x85\xa0\x5c\xcf\x65\xcd\x14\x3a\x33\x30\ \xd2\x76\x9c\x48\x0f\x73\x6e\xd0\xe1\x9c\x09\x9a\xc0\x00\x99\xfb\ \x71\x22\x3c\x1c\xbd\x3c\x1f\x80\x01\x70\x65\xfc\x14\xa2\xc3\x0f\ \x12\x59\x89\xf5\x6b\x5f\x52\x96\x7d\xd2\x9b\x1c\xaa\x1e\xcf\xd2\ \xd3\x1c\xc8\xc9\xd5\x20\xcb\x32\x62\xb1\x18\xca\xcb\xcb\xb7\x9f\ \xb1\x0a\x00\xc0\xee\xbd\xb5\x18\x79\x69\x00\x27\xe5\x7c\x6c\xdd\ \xc9\xc9\xb5\x57\xe4\x6a\x91\xd6\x93\x89\x98\x4e\x13\x47\xb3\x19\ \xa2\x6d\x2c\x00\xb5\x5c\x47\xdb\xe6\x0e\x9a\xa1\x0b\xd4\x60\x04\ \x57\xdb\x00\x50\xb9\xa1\x15\x66\x79\xa4\xfa\x75\xd4\x38\xaf\xaa\ \x7a\xe0\x01\xa9\x17\x16\x7f\x3e\x04\x87\xe5\x52\xdc\x54\xba\x05\ \xb6\x6e\xb7\xc0\xeb\x72\x42\x6a\x78\x4b\xfb\xf0\x23\x91\x2f\xdf\ \x52\x02\x87\xeb\x12\xc1\x97\xe2\x44\x71\x91\x0a\x49\x92\x20\x49\ \x12\xb4\x76\x93\x8f\xb3\xcc\x05\xc6\x8e\x70\x60\xc3\xa7\x52\x79\ \xcf\x02\x65\xa6\xc2\x7d\xae\xaa\x1a\x68\x7d\x8b\x41\x62\x31\xa9\ \x6d\xb4\x2d\xc2\x47\x3b\xf4\xfa\xc4\xa2\x03\xed\xda\xdf\xce\x9a\ \x29\xeb\x8c\x91\xb6\x35\x56\xa7\xd1\xdb\xb8\x67\x5c\xf5\xe2\xbe\ \xa5\xfd\x91\xe1\xda\x87\xe7\x27\x47\xd1\x37\xdf\x05\xa9\xfe\x1d\ \xfe\xee\x92\xe3\xea\x0b\x0b\x06\x92\x66\xf9\x52\x96\x9d\x53\x40\ \x3d\x6e\x7d\xf1\x86\x73\x0e\x45\x51\x12\x9b\xaa\xaa\xc8\xf5\x77\ \x3f\xf1\xc5\xe2\xa3\x3b\x9f\x9b\x7f\x16\x11\xbc\x6e\x9c\x08\x9f\ \x3b\xde\x6b\xfb\xde\xcc\xfd\x2a\xd2\x50\xe8\x97\xd4\xa2\xec\x2a\ \xa6\x28\xf2\x69\xbd\xbd\x29\x92\x66\xad\x36\x47\xdf\xba\x10\x6a\ \x9d\x1e\x53\x73\x1d\xc1\xd2\xdd\x99\x42\x68\x7a\xd1\x14\x43\x63\ \x5f\x14\xf5\xf3\x8c\x00\xdd\x8b\xaf\x86\xd3\xe5\x45\xa0\xfa\x7d\ \x6d\xe1\xaa\x1c\xbe\x71\x57\x1f\x92\x9b\x93\x49\x53\x53\x7d\xa0\ \x46\x9e\x6a\x9a\x86\x78\x3c\x0e\x59\x96\x11\x8d\x46\x13\x2c\x90\ \x65\x19\x97\xf4\xaa\x3d\xfc\x1f\xaf\xee\x2e\x3a\xeb\x7a\xc0\xbe\ \xc3\x1c\xbb\xf6\xa2\xf1\x92\x8b\xc3\xa1\xe6\xb0\xef\xca\xda\x06\ \x4a\x0b\x0b\x9c\x5c\x53\x03\xa4\xa3\xda\x93\x0e\x41\x52\xd2\x16\ \x68\x22\x65\x3a\x32\xc4\x3a\x79\xa2\xed\x1b\x9d\x04\x83\x2c\x5d\ \xa0\xc6\x81\x6e\xd9\x97\x23\xaf\x47\x29\xa4\xa6\x3f\x6b\x8b\x57\ \x4a\xea\x92\x2d\xd7\xd3\x64\xdf\x70\x9a\x99\xd1\x8d\xa8\xaa\x8a\ \xe6\xe6\x66\xd8\xed\x76\xa3\x0d\xd6\x47\x5f\x55\xd5\x76\x0c\x88\ \x48\xe0\xb7\x4e\xfa\xfa\xcb\xf7\x3e\x8a\xbe\x73\xce\x8b\xa2\x23\ \x06\xb1\x2d\xf5\xc1\x8b\x86\x29\x4a\x54\x9b\x32\x21\x86\xd6\xa6\ \x6a\x42\x59\x27\x41\x9f\x85\xfa\xc4\x3a\xfb\xb3\x80\x96\x60\x82\ \xa5\xbc\x99\x2b\x47\xe6\x88\xa7\x66\xf6\x41\x41\x41\x11\x6c\xf2\ \x2a\x6d\xc9\x1a\x1f\x8f\x26\xcd\xa4\x83\x2f\xbd\x94\x10\x68\xa8\ \xaf\xaf\xc7\xce\x9d\x3b\x71\xea\xd4\x29\xa8\xaa\x0a\xa7\xd3\x09\ \x9f\xcf\x07\xce\xf9\x69\x0c\x68\x0d\xc6\x71\xef\x94\xcf\x91\xdd\ \x4d\xee\x59\xd7\x64\x3f\x34\xf1\xb6\x53\x7f\x1b\x80\x09\x97\x27\ \x61\x70\x5f\xc5\xb1\x6c\xa3\x33\x10\xe3\xb9\x36\x4f\xb2\xc4\xc7\ \x0c\xa9\xa3\xe1\x70\xe8\x9b\x53\x9f\x76\x98\x0a\x5b\x74\xa0\x63\ \x3a\x30\x0a\x24\xbb\x33\xd0\xb3\x67\x7f\xa4\x3b\x77\xe0\x2f\x1b\ \x14\x75\xfd\x97\x65\xe4\xe9\xa7\x9f\xa7\x59\x99\x19\x08\x85\xc3\ \xa8\xac\xac\xc4\xb6\x6d\xdb\x90\x9a\x9a\x86\xb4\xf4\x6e\x08\x85\ \x22\x38\x74\xe8\x20\xa4\x48\xf8\xb4\x14\x08\x86\x64\x4c\x1e\xf3\ \x05\xae\x28\x3d\x35\x3e\xaf\x4c\x5a\x7d\xce\x4b\x62\x07\x8e\x2a\ \x78\xf0\x46\xae\x9c\x6c\x88\x6f\xad\x69\x10\x6f\x92\xe2\x4e\x62\ \xb7\xdb\xb9\xd7\x19\x24\x80\xd6\xa9\xa0\x9d\x16\xbc\x25\x68\x66\ \x05\x8d\xb6\x17\xc7\xb6\x32\x4a\x51\x50\x74\x19\x4a\x8a\xa2\xd8\ \xbb\xb7\x42\x79\xea\xb5\x62\x2d\x42\xaf\x64\x6f\xbd\xf9\x16\xc9\ \xca\xca\x82\xcd\x6e\xd7\x47\xdb\xe5\x42\xbf\x92\x12\xec\xdb\xbf\ \x1f\x6f\xcc\x9f\x8f\x8a\xaf\xbe\x42\x61\xcf\x62\x80\x52\xa8\xb2\ \x9c\x48\x01\x29\xc6\x71\xdd\xc8\xaf\x30\x66\xf0\xb1\x9b\xf3\xca\ \x62\x1f\x7e\xeb\xf7\x02\x13\x47\x3b\x5e\xd9\x7b\x2c\xf7\x4e\x10\ \x86\xeb\xc6\x84\xb9\x1a\xab\xa2\x02\xb3\xe4\x71\x87\x74\x38\xd3\ \xb1\x75\x9f\x99\x9d\xa4\xd1\x24\x65\xe5\x96\xe0\xe2\x42\xa0\xb5\ \x71\x37\x7f\x65\x71\x4f\x5e\x1f\x2a\x12\xba\x17\x64\xe3\xd9\x67\ \x9f\x85\xd3\xe5\x82\xc8\x18\x44\x9b\x0d\xaa\xaa\x62\xce\xef\xe7\ \x60\xc9\xd2\x25\x08\x85\x5a\x51\x7d\xa2\x06\x81\x40\x00\x3d\x8b\ \x8b\x31\x6e\xc2\x44\x08\x5c\x41\x3c\x2e\x23\x1c\xe1\x98\x30\x64\ \x33\xca\xfa\x1f\xba\xdd\x3f\x42\x9e\xf7\x8d\x17\x45\x4d\xbb\xfa\ \x72\x17\x56\x6c\x88\x7c\x5c\xd2\x4b\xbb\x29\xa6\x7a\x7d\xfb\x0f\ \x73\x0c\xee\xc7\x20\xcb\x51\x62\x0d\x92\x19\xa5\x8c\x01\x20\xec\ \x6f\x53\xdf\x2c\x81\x49\x8e\x6e\xe8\xdb\xb7\x17\xba\x77\xab\xd0\ \xde\x5d\x06\xf5\xcd\xe5\x03\xa9\x27\xb5\x90\xb9\x9c\x0e\xdc\x7c\ \xcb\x2d\x70\x39\x9d\x50\xe2\x71\x84\x43\x21\x04\x5a\x5a\xf1\xd0\ \xaf\x1e\x44\xbf\x31\x7d\x21\xb8\x81\xec\xfc\x4c\x54\x56\x56\x42\ \x0a\xc9\x10\x04\x01\x03\x07\x0d\x86\xa6\x2a\x88\x4a\x44\x9b\x72\ \xc5\x5a\x32\xa4\xf7\xb1\x9f\xfb\x47\xc8\x6f\x9d\x29\x36\xe1\x5c\ \x00\x58\xb9\x31\x84\x1f\x8d\xb7\x23\xc3\xdb\x3c\x72\xdb\xde\xa4\ \x13\x71\xd6\x8d\xac\xd9\x1a\xe7\x63\x87\x3a\x88\x24\x45\xdb\xad\ \x0b\x52\xcb\x1c\x93\x58\xa7\xcf\x9d\xcd\x26\x09\x81\x3f\xbf\x0f\ \x7a\x17\x9c\x42\xf9\x67\xfb\x95\x77\x56\xf4\xa7\xe9\xe9\x39\x42\ \x41\x7e\x32\x18\x63\xe8\x59\x54\x04\x81\x31\x34\x36\x36\x22\x1c\ \x0a\xa3\xae\xb9\x09\x0b\x17\xbd\x87\xe2\x09\x05\xf8\xcb\x57\x4b\ \xb1\x73\xf3\xe7\x48\x81\x0f\x42\x92\xfe\xf0\xbc\xbc\x3c\x34\x35\ \x35\xc1\x69\x77\xf0\x19\x13\x97\xd2\xac\xd4\xc0\xf8\xdc\x11\xb1\ \xd5\x67\x8b\x4d\x38\xd7\x14\xf8\xef\x55\x31\x00\xa8\xba\x6e\x6c\ \xdd\xf4\x03\xa7\x5c\xaf\xd7\x36\x3b\xe9\xf1\x5a\xca\x33\xbd\xc7\ \xe9\x69\xeb\x80\xa4\xc3\x5a\x82\xc5\x9b\x9d\xa1\x2b\xc5\x8f\xde\ \x3d\x6d\x90\xc3\x95\xea\xc3\x2f\x74\xd7\x5a\x63\xfd\x84\x9c\x1c\ \x2f\x04\x41\x48\x94\xb1\xac\xec\x6c\xd4\xd6\xd4\xe0\x48\x34\x8a\ \xfa\x40\x00\xeb\xd7\xac\xc3\xde\xe4\x4f\xf1\xf9\x9f\x35\x4c\x18\ \x76\x3d\x9c\xaa\x07\x44\xa0\x88\xb6\xc8\x00\x80\x94\xd4\x54\x28\ \x52\x93\x72\xdf\xd4\xb5\x71\x29\x86\x41\xdd\x47\x85\xf7\x9c\xb7\ \x57\x63\xa6\x2d\x5d\xab\xce\xcf\x4f\x3f\xb9\x8a\x52\x8a\xf2\xed\ \x76\x22\x3a\x72\x34\x53\x4d\xac\xa3\x4f\x3b\x2c\x80\x26\x3a\x3e\ \x66\x43\x51\xcf\x8b\x30\xa8\x77\x2d\x96\xfd\xb5\x49\xb9\xff\x85\ \x52\xca\x85\x5e\x42\x5a\xaa\x27\xd1\xc8\x00\x40\x72\x72\x32\x1a\ \xea\xeb\x51\x55\x55\x85\x8a\x8a\x0a\x7c\xb6\x6d\x07\xbe\x3c\xb6\ \x0d\x2d\x75\x21\x14\xfb\x4a\x50\xb1\x69\x0f\xae\x1c\x7a\x15\xd4\ \x28\x47\xb8\x59\x5f\xf8\x14\x1c\x5e\x3c\x33\x7d\xd9\x91\xb5\x3b\ \xfa\xa6\xdb\x6c\xca\x9e\x73\x89\x47\xf8\xa6\x00\x4c\x1a\x97\x8c\ \xb2\x52\xf1\x9a\xd6\x75\x75\x81\xe6\x48\x96\x7b\xd9\x3a\x95\xff\ \xec\x1a\x1f\x09\x07\x9b\xdb\x4d\x90\xac\xd4\x87\xb1\xb0\xe1\x4d\ \xcd\x43\x9f\xc2\x38\x4e\x56\x7f\xad\xde\xf1\x54\x0f\xd8\x1c\xd9\ \x42\x6e\x8e\x13\x82\x20\xb4\xeb\xd5\x09\x21\x88\xc5\x62\xa8\xad\ \xad\xc5\xf1\xe3\xc7\x11\x94\x64\x54\x7e\xb9\x13\xd7\x8d\xb9\x1e\ \x76\xbb\x1d\x9c\x6b\x18\x32\xfa\x52\x80\x69\x78\x7b\xde\x9f\x00\ \x00\xa3\xc6\x8c\x45\x69\x6f\xe9\xfd\x82\x51\xf1\x69\xeb\x17\x1e\ \x46\xef\x71\x21\x5c\x10\x00\x96\xad\x89\xa0\x7b\x0e\xf8\x80\x62\ \x8c\xde\x52\xe1\xdc\x1e\xe7\x6e\xba\x65\x17\xd4\xa1\x7d\xc3\x4c\ \x8e\xcb\xa7\x51\x5e\x5f\xf9\xb5\xa3\xb0\xd0\x8f\xdc\xb4\xc3\xda\ \xbc\xc5\x29\xea\xa7\x15\x3f\x10\xb2\x32\xbd\x10\x45\xdb\x19\x9f\ \xd3\xdc\xd4\x84\xb8\x2c\x23\x10\x08\x20\xa7\xb0\x17\x5a\x03\x01\ \x44\x62\x11\xf8\xd2\x7c\xa0\x84\xa2\x7c\xf3\x46\x54\xee\xda\x8b\ \xc6\xfa\x26\x94\x95\x95\x61\xf2\xe4\x29\x7b\xee\xba\x7d\xfa\xb4\ \xdf\x3c\x32\x09\xa3\xa7\x2d\x3b\x3f\xaf\xc6\xce\x64\x9f\x7d\x09\ \x6c\xaf\x40\xf5\xe8\xa1\x61\xfb\xc9\x7a\x5f\x59\x5d\x93\x40\x0b\ \xfc\xc9\xaa\x48\x03\x34\xf1\xb2\xc3\x58\x13\xf0\xa6\x64\x63\x40\ \x5f\x01\x35\x35\x35\xca\xaf\x5e\xcc\x27\x81\x48\x1e\xf3\xa5\xb8\ \xf4\xb5\x7c\x4a\x41\x08\x39\xcd\x33\xc6\x50\x57\x5b\x8b\x98\x2c\ \x43\x55\x55\x14\x14\x16\x62\xfd\x9a\xbf\x22\x27\x33\x17\x84\x02\ \x4a\x4c\xc5\xf1\xc3\x55\xd8\xbc\x69\x33\x66\xcc\x98\x81\xd7\x5e\ \x9b\xd7\xb4\x69\x53\x79\xaf\xf1\xd7\x4c\x54\x9f\x78\xfc\xa5\xef\ \xf6\x0b\x91\x89\x63\xdc\x15\x07\x4f\xe6\x97\xa8\x6a\x1c\x77\xdf\ \x20\xf3\x40\xf3\x31\x4a\xa1\x81\x8a\x22\x7a\xe4\xe7\xc2\x9f\x7e\ \x4c\x7b\x75\xa1\x47\xf9\x9f\xdd\x39\x62\x7a\x37\x37\x44\x51\x4c\ \x2c\x5d\x0b\x82\x00\x6a\x2c\x6d\x5b\x3d\x63\x0c\x55\x27\x4e\x20\ \x18\x0c\xc2\x97\x9a\x8a\xb1\x13\x26\xe2\x89\x5f\x3f\x02\x9b\xcd\ \x06\xbf\xdf\x8f\xd6\xd6\x56\x34\x34\x34\x60\xca\xd4\x69\x78\x63\ \xfe\xeb\x27\x3f\xdb\xbe\xfd\x62\x51\x10\x43\x23\xcb\x46\x5c\xb8\ \xef\x03\x3a\xb3\x9b\x7e\xec\xc0\xa8\xd2\xe0\xa8\x74\x6f\xa3\x96\ \x94\x64\xc7\x1f\xdf\xa7\x84\x93\x7c\xb5\x5f\x49\xbe\x36\xbc\x34\ \x05\xe1\xe0\x31\xe5\xb6\xdf\x66\xf3\x8a\xc3\x79\x62\x5a\xaa\x13\ \x94\x52\x68\x9a\x06\x42\xce\x8e\xbb\xa6\x69\xf0\xe7\xe5\x21\x2a\ \x49\xa8\xa9\xae\x86\x28\x08\xb8\xe9\x96\xdb\x40\x28\x45\x55\x75\ \x35\xd2\xb3\xb2\xf1\xde\x7f\x2d\xc4\x1f\x5e\x9c\xb3\xc0\xe5\x72\ \xf9\xf3\xf3\xf2\xbe\x55\xf0\xe7\xed\x1b\xa1\x07\x6e\x65\x3f\x59\ \xb7\xbd\xfb\x62\x2a\x78\xd0\x1a\x8c\xa0\xa5\x25\xa0\x26\x3b\x08\ \xe1\x5a\x32\xf5\xa5\xe8\x22\x77\xb6\x11\xef\xe8\xad\x0c\x69\x6e\ \x6e\x85\x3f\x27\x59\x19\x7f\xf5\x30\x21\xc9\xd5\x07\x49\x76\x3b\ \x2f\xc8\xf7\x7f\x04\x60\x56\x51\x61\xe1\xee\xca\x3d\x7b\xd0\xb7\ \x4f\x9f\xef\xff\x2b\xb1\xdb\xa6\xb8\x3e\xd8\x5a\xd1\xe3\xa7\x02\ \x03\x89\x46\xa3\x89\xa0\xad\xdb\xb9\x02\xc0\x28\x85\x46\x6c\xf0\ \xba\x22\xca\xb5\xc3\x76\x0a\x3f\x28\x3a\xf6\x69\x6d\x93\x6d\xe6\ \x65\x3f\x91\x77\x25\x5e\xe3\x7d\xb1\x13\xa5\x03\x2f\xf9\xee\x3e\ \x91\x39\x9b\xdd\x3a\xd9\x83\x37\x3e\x08\x4d\xe9\xdd\xbd\xae\x41\ \x55\xb5\x6f\x7d\x1f\x4d\x03\xe4\xb8\xa0\xe5\x65\x36\x28\xb7\x4e\ \x58\x83\x47\x6f\x5c\xba\xd6\xed\x68\xe9\x5f\x38\x1a\xc3\x14\xd5\ \xbd\xcb\x7a\xed\xf9\x08\xfe\x5b\x95\xc1\xce\xec\xcd\x45\xad\x78\ \xe4\x8e\x24\x64\x77\xab\x2d\x6b\x6c\x49\xde\x57\x5d\xf7\xcd\x8a\ \x8b\xa2\x50\x38\x93\x55\x65\xe4\x80\x83\xc2\xe0\xde\xc7\x78\x9a\ \x37\x3a\x77\xcf\xd1\x9c\x67\x0a\xc7\xa0\xee\x93\xf7\x39\x00\xa0\ \x6c\x4a\xe3\x3f\xc6\x87\x92\x8f\xde\x95\xf4\xd0\x87\x6b\xfd\xcf\ \x81\x9c\x39\x05\x18\x13\xa0\x41\x84\x2b\x99\x2b\x83\x2e\xae\xa5\ \x83\xfa\x9c\xa4\x3d\xfd\x2d\xe5\x4d\x41\xfb\xdc\x91\x53\x63\x8b\ \x01\x60\xcb\x22\x27\x86\x4f\xbe\xf0\xdf\x4a\x5e\x90\x4f\x65\x67\ \x3f\x90\x54\xbe\x6a\x4b\xce\xf0\xba\x66\x27\xb3\xd9\xf4\x77\xf9\ \x94\x09\x20\x44\xe0\x05\xd9\x61\x3e\xa0\x57\xb3\xd0\xb7\xa8\x09\ \xdd\xb3\x43\x9f\x84\xa3\xe2\x82\x8d\xbb\x0a\xde\x7e\xe2\xf9\x83\ \xf2\xea\xb7\x9d\xb8\xea\xe6\xef\xe4\x03\xd1\x0b\x07\xc0\x6f\x66\ \xba\xf1\xcc\x2b\x41\x2c\x9c\x83\xa7\x03\x41\xdb\xcc\x60\xc4\x9e\ \x02\xc2\x90\xe2\x8a\x23\x3f\x2b\x72\x24\xd9\xa1\xad\x69\x09\x25\ \x2d\xbb\x76\x86\xb4\x02\x00\xfe\x30\xdb\x83\xfb\x1e\x6b\xc5\x3f\ \xad\xcd\x79\xdc\xed\x78\xe5\x49\x92\xf6\x8b\xa9\x85\x09\x61\x58\ \xf6\x9a\x1d\x5d\xd6\x65\x5d\xd6\x65\x5d\xd6\x65\x5d\xd6\x65\x5d\ \xf6\x3d\xdb\xff\x02\x11\x72\x46\x59\x23\xdc\xca\x4a\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x81\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\ \x01\xbb\x01\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x09\x05\x15\x1f\x22\xdc\xf9\x6b\x5d\x00\x00\x01\x0e\x49\x44\ \x41\x54\x38\xcb\xcd\x53\xa1\x4e\xc4\x40\x10\x7d\xd3\x3d\x42\x2e\ \x45\x2d\x21\x41\x80\x24\x15\x15\x55\x88\x6d\x52\xc1\x5a\x64\x35\ \x4d\xba\x09\x8e\x0f\xe0\x4b\x48\x6a\x2a\x11\x15\x4d\x2a\x10\xc5\ \x21\xaa\x4a\xaa\x5a\x87\x82\x04\xc5\xd5\x12\x48\xd9\xc5\x70\x82\ \x4b\x8b\xb8\x23\x81\x97\x3c\x35\x2f\x33\x6f\x5e\x66\xa8\x6d\xdb\ \x23\x22\xb2\x30\x82\x2c\xcb\xce\x3d\xcf\xcb\x1d\xc7\x59\x60\x02\ \x94\x24\xc9\x33\x63\x6c\x7b\xac\x68\x8c\x99\x03\x78\x27\xa2\x8f\ \xb1\xba\xd6\x7a\x40\x9e\xe7\x2f\x00\xcc\x3a\x2c\x8a\x62\x61\x11\ \x11\xd6\x05\x11\xc1\xc2\x86\xd8\xc8\x01\x80\x5f\x70\xf0\xa7\x0d\ \xfe\x47\x88\xb3\xae\xeb\x9e\xca\xb2\xb4\xc6\xec\x0d\xc3\x30\x67\ \x8c\xbd\x11\x91\xfe\xba\xcc\x6f\x9a\xa6\x69\x1e\x61\x8c\x99\x64\ \x14\x45\x97\x71\x1c\xef\xff\xa4\x99\xcc\x40\x29\x75\xe8\xba\xee\ \xb1\xd6\xfa\x4c\x29\xb5\x35\x19\xe4\xaa\x2d\xa5\xd4\x9e\xef\xfb\ \x17\x55\x55\xbd\xf6\x7d\xbf\x6b\xdb\xf6\x6d\x10\x04\xa7\x75\x5d\ \xdf\x03\xb8\x4e\xd3\x54\xaf\x7e\xdc\x72\x37\x12\x42\x5c\x09\x21\ \x6e\xa4\x94\x07\x00\x6c\xce\xf9\x1d\xe7\x3c\x04\xb0\x13\x86\xe1\ \x89\x94\xf2\x81\x73\xee\x01\x98\x2d\x87\x7f\x02\x6c\xf4\x90\xbc\ \x95\x30\x64\xb3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\xa7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x10\x2f\x26\x1d\xda\x31\xda\x00\x00\x03\x34\x49\x44\ \x41\x54\x38\xcb\x6d\x93\x5d\x68\x95\x75\x1c\xc7\x3f\xff\xff\xf3\ \x3a\xcf\x99\x93\x9d\x1d\xd2\x6d\xcc\xb5\x5c\x2b\x25\x89\x14\x07\ \x12\x5b\x33\x96\x82\xbb\xb0\x4e\x14\x2b\x22\xa3\x88\x60\xd5\xea\ \xb6\x2e\xa2\xcb\xa2\x1b\x23\x08\xf2\xc6\x22\x41\x44\x4c\xca\x39\ \x61\xf9\xb2\x39\x96\xca\x24\xdf\x82\xcd\x26\xc7\xbd\xef\x70\xce\ \xd9\x79\x7f\x79\xce\x73\x9e\xe7\xdf\x85\x53\xb0\xfa\x5e\x7d\xf9\ \x7d\xe1\xcb\xe7\xe2\xf7\x15\x00\x2f\x1d\xda\xdc\xb9\x70\x35\x6b\ \xa2\x40\xf1\xa8\x94\xa7\x90\xba\x10\x7b\xde\x7d\x6e\xa2\xa3\x27\ \x5c\xfd\x48\x1c\x7b\x24\x17\x7d\x87\xb7\x74\x1d\xdc\xf3\xc9\x68\ \xd1\xcb\xae\x5d\x04\xff\x96\x50\x70\x6e\x6c\xe4\xf8\x91\xf7\xce\ \xbf\x0e\x70\xe0\xd0\xb3\x9c\x1a\xbc\x7e\x3f\xab\x6d\x31\xfa\x3e\ \xfb\xf5\xad\xdf\x94\x2b\x48\xa5\x56\x99\xfd\x2b\x86\x52\x0a\x81\ \x58\xa3\xb9\xef\x17\xa6\xe3\x71\x63\x9d\x18\xef\x3c\xb0\xed\x8b\ \xaf\xbb\x7f\xb9\xf5\xa0\x5c\xd7\x85\x21\x57\x8a\xf3\x34\xa4\xdb\ \x69\xdd\xbc\x85\xb6\x4d\x4f\xa1\xd4\xff\x80\xf4\x8a\xb0\x52\xfe\ \xcb\xc3\x3f\x8e\x36\x01\x9d\x0f\x0b\x84\x14\x22\xb7\x5a\x60\x7f\ \x78\x1f\x63\xa5\x9f\x30\xbd\x1a\x5e\x68\x7a\x95\x1f\x86\xbe\x61\ \x53\xb0\x95\x78\x71\x91\x3a\x2b\x4c\x55\x55\x48\x97\xe3\xc4\x92\ \x2b\x8d\xdb\xde\x0c\x0d\x3c\xdd\xdd\x52\x39\xf1\xfe\x9f\x87\x75\ \xdd\x92\x52\x65\x74\xb4\xb0\x49\x2c\xb3\x44\x7f\xc7\xa7\x5c\xbc\ \x3a\xc2\x8b\xdd\xbd\x28\x14\x5b\xc5\x93\x28\xe5\x23\x10\x08\x21\ \xe9\xed\xa1\x59\x29\xf5\x5d\xd0\x58\xcf\xcd\xfe\x99\xa8\xb4\xeb\ \x0c\x31\x7e\xec\x36\x96\x69\xe1\xa4\x7c\x9e\x09\xed\xe6\x8f\xd1\ \x2b\x2c\xe5\xa2\xa4\x4b\x09\x5c\xd7\x21\x96\x9b\xc3\xad\xba\x2c\ \x66\x67\xa0\x2a\x58\xca\x46\x89\x95\xe7\x98\xbd\x90\xb3\x25\x0a\ \x9c\x84\xcf\xe5\xf8\x30\x2b\xb7\x32\x68\x52\x23\x5d\x5a\x25\x51\ \x8a\x11\x79\x62\x80\xee\xa6\x57\xb0\xb4\x20\xaf\xb5\x0f\x12\x2f\ \x2e\xd3\xd3\x1c\x61\x6b\xfd\x2e\x12\xa5\x65\x34\xa9\x49\xa9\x7c\ \xb0\x83\x16\x47\xbe\xff\x99\xe9\x73\xcb\x18\xa6\x41\x9d\x0c\x13\ \x30\xd6\x23\x85\xc6\x57\x17\x07\xc9\x55\x56\x71\x3d\x87\x52\xde\ \x61\x7c\xfe\x34\x9d\x8f\xed\x25\xef\xa6\x91\x4a\x4a\xa9\x94\x42\ \x33\x24\x6e\xc1\xc3\xb0\x4c\xbe\x3c\x3a\x88\xe1\xdb\x84\x82\x0d\ \x18\xd2\xc4\x75\x5c\x3c\xe5\x52\xf6\x8a\x68\x96\x60\x2a\x73\x0d\ \x5b\x5f\xc7\x8d\xa1\x28\xc1\xfa\x1a\x29\x03\x0d\x66\x25\xd4\x16\ \xc0\xae\xd3\x31\x2c\x8d\xb3\x27\x7f\x67\x35\x93\xe4\xec\xd1\x4b\ \x08\x21\x99\xb9\x14\xe3\xfa\xe4\x6d\xa6\xf3\x93\xdc\x3c\x3d\x87\ \x9d\xad\xc7\xb2\x6c\xa2\xd7\x62\x48\x43\xa0\x25\xef\x16\xee\x78\ \x55\x3f\x93\x5d\x74\xe6\x02\x61\x6b\x87\x57\x56\xe4\x72\x79\x92\ \xf7\xf2\x7c\x70\xf0\x43\x3a\x76\xb6\x32\x39\x35\xc1\x85\x2b\x23\ \x34\x35\x36\x32\xb0\xff\x73\xce\xff\x7d\x8a\x91\x93\xa3\x78\x8e\ \x3a\x2e\x1e\x7f\xbe\x81\xe8\x78\x82\xed\x91\xe6\xf6\xe6\x1d\x1b\ \xa6\x33\x8b\x65\x37\x71\x37\x6f\x38\x59\x57\x6c\xef\xdf\xc8\xb7\ \x6f\x9f\xa0\xe2\x3b\xa4\x9c\x18\x41\xbd\x0e\x4b\x0b\x10\xf9\xb8\ \x17\x37\x29\x48\xcd\x17\x22\x02\xa0\x75\x77\x88\x7b\x13\x49\xda\ \xba\x1a\xf4\x62\xa2\xa2\x6a\xea\xcd\xcb\x7e\x55\xed\xdc\xd0\x52\ \x43\xa8\x25\x48\xdf\x1b\xbd\x34\x05\xdb\x18\xbd\x33\xc4\x8d\x33\ \x51\xd2\x0b\x25\x50\x8a\xd4\x6c\x31\xf2\xf0\x61\x1f\x90\x00\xec\ \x7a\xa7\x75\xd8\xaf\xfa\xfb\x02\x61\x9b\x40\xbd\x89\x51\xab\xa1\ \xe9\x02\xcf\x51\x94\xb3\x2e\x85\x64\x05\xcd\x94\x4c\x9d\x59\xd9\ \xfb\xdf\xe9\x01\xb5\x1b\x6d\xdb\x0c\xea\x5d\xca\x55\xca\xab\xfa\ \x28\x7f\x6d\xe7\x02\xa4\x26\x10\x52\xa0\xd7\x68\x4e\x7c\x3a\x37\ \xf6\x0f\x15\x12\x6c\xf0\x63\x0d\x5f\xe9\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x0a\xaf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\ \x01\x1e\x75\x38\x35\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x0a\x2c\x49\x44\ \x41\x54\x78\xda\xed\x9b\x07\x50\x15\x49\x1e\xc6\xe5\xd6\xbb\xb5\ \x6a\x2d\x50\xaa\x3c\x43\xb1\x98\x56\x2d\x5d\x73\x16\x73\xf6\x89\ \x39\x61\x0e\xa5\x52\xe6\x80\x39\x9d\x28\x98\x03\x60\x5c\xc3\x19\ \xc1\xe5\x0c\x27\x26\x4c\x57\xba\x62\xc4\x1c\x40\x4b\x05\x04\x13\ \x2a\x60\x44\x71\x45\xf8\xdf\xf7\x75\x55\x57\x0d\xcf\x47\xb0\x4a\ \xbc\x11\x6f\xac\xaf\xc6\xe9\xe9\x9e\x7e\xbf\x6f\xba\x7b\x3a\x91\ \x4b\x44\xbe\x6b\xfd\xdf\x80\xff\xf5\x0f\xb8\x7a\xf5\xaa\x44\x46\ \x46\x4a\x54\x54\x54\x1a\xdd\xbb\x77\x4f\xb4\xa2\xa3\xa3\xd3\x28\ \x26\x26\xc6\x5a\xd6\x71\x8c\xe9\x3f\x79\x36\xf3\x34\x8d\x01\xd7\ \xaf\x5f\x97\xe7\xcf\x9f\xcb\x8b\x17\x2f\x94\x5e\xbe\x7c\x29\xaf\ \x5e\xbd\x92\xd7\xaf\x5f\xcb\x9b\x37\x6f\x24\x31\x31\x51\xe9\xed\ \xdb\xb7\x4a\xef\xde\xbd\x93\xa4\xa4\x24\x6b\x31\x5c\xc7\xd1\x69\ \x98\x9e\xcf\xe1\xf3\xd4\x73\x75\x1e\xc8\xd3\x3c\x06\x5c\xba\x74\ \x49\x9e\x3e\x7d\x2a\x6b\xd7\xae\x95\xb9\x73\xe7\x4a\x7c\x7c\xbc\ \x24\x24\x24\xd0\x94\xf4\x0c\xd1\xa0\x46\xe8\x74\x81\xf9\x1c\x3e\ \x6f\xdd\xba\x75\xea\xf9\xcf\x9e\x3d\x93\xcb\x97\x2f\x9b\xcf\x00\ \x6f\x6f\x6f\x39\x76\xec\x58\x56\x0d\xd0\x25\x81\xe7\x2c\x19\xc0\ \xe7\x1f\x3f\x7e\xdc\xbc\x06\xf0\x87\xc5\xc5\xc5\x65\x97\x01\x7c\ \x2e\x9f\x9f\xa3\x0c\xa0\xbe\x3f\x03\x0e\x1e\x3c\x28\x53\xa7\x4e\ \x35\x8a\x61\x39\xdb\x00\x6a\xf2\xe4\xc9\x32\x65\xca\x14\x19\x3a\ \x74\xa8\x94\x2e\x5d\xda\x28\x86\xf1\x1e\xa5\xe1\xbf\x49\x03\x32\ \x34\xa1\x6c\xd9\xb2\x59\x51\x66\x6f\xdf\x7c\x06\x5c\xbc\x78\x51\ \x9e\x3c\x79\xf2\x49\x29\x98\x38\x71\xa2\xd2\xa4\x49\x93\x94\xca\ \x97\x2f\x9f\x25\xb1\xa4\xe8\x34\x4c\x6f\x6d\x00\xf3\x81\xe9\xe6\ \x34\xc0\x68\x42\xa5\x4a\x95\xbe\x84\xac\xe1\xcd\x69\x40\x6c\x6c\ \xac\xb1\x14\x28\x55\xad\x5a\xd5\xa6\xaa\x55\xab\x26\xd5\xab\x57\ \xb7\x16\xc3\x6d\xc6\xd7\xf0\xda\x00\xe6\x83\x3c\xcd\x67\x80\xb5\ \x09\x35\x6a\xd4\x48\xa3\x9a\x35\x6b\x4a\xad\x5a\xb5\xa4\x76\xed\ \xda\x52\xa7\x4e\x1d\x71\x71\x71\xd1\xe2\x35\xc3\x79\x9f\xf1\x8c\ \xe9\xac\xe1\x99\x8f\xb9\x0c\xb8\x70\xe1\x82\x3c\x7e\xfc\xd8\xda\ \x04\x02\x29\x69\xe0\xba\x75\xeb\x4a\xbd\x7a\xf5\xa4\x41\x83\x06\ \xd2\xb0\x61\x43\x6b\x31\x9c\xf7\x19\x4f\x1b\x42\x59\xc3\x9b\xcf\ \x80\xf3\xe7\xcf\xcb\xa3\x47\x8f\xac\x4d\xe0\x27\x8d\x30\x4a\xf5\ \xeb\xd7\x57\x90\x4d\x9a\x34\x91\xa6\x4d\x9b\x4a\xf3\xe6\xcd\xa5\ \x45\x8b\x16\x5a\xbc\x66\x38\xef\x33\x1e\xe3\x33\x1d\x9f\x61\x0d\ \xaf\xf2\x81\xe9\xe6\x32\xe0\xe1\xc3\x87\xd6\x26\xf0\x8d\x2a\x35\ \x6a\xd4\x48\x1a\x37\x6e\x2c\xcd\x9a\x35\x93\x96\x2d\x5b\x4a\xeb\ \xd6\xad\xc5\xd5\xd5\x55\xda\xb6\x6d\xab\xc5\x6b\x86\xf3\x3e\xe3\ \x31\x3e\xd3\x31\xbd\x35\xbc\xca\x07\x79\x9a\xc7\x80\xd0\xd0\x50\ \x1a\x60\x34\x81\x22\x84\x06\x57\x6f\xd9\x62\xb1\x48\x9b\x36\x6d\ \xa4\x43\x87\x0e\xd2\xa9\x53\x27\xe9\xdc\xb9\xb3\x74\xed\xda\x95\ \x67\x5e\x33\x9c\xf7\x19\x8f\xf1\xb5\x11\x1a\x5c\xc3\x33\x1f\x73\ \x19\x70\xee\xdc\x39\x79\xf0\xe0\x01\xa5\x4d\xa0\x58\xa4\x29\x05\ \xd3\xaa\x55\x2b\x05\xd7\xb1\x63\x47\x05\xdd\xbd\x7b\x77\xe9\xd5\ \xab\x97\xf4\xee\xdd\x9b\x67\x5e\x33\x9c\xf7\x19\x8f\xf1\x55\xba\ \x69\xd3\xa6\x69\x70\x0d\xaf\xf2\x81\xe9\xe6\x31\xe0\xec\xd9\xb3\ \x72\xff\xfe\x7d\xa3\x09\x4a\x33\x66\xcc\x10\x0d\xdf\xd3\xad\xb9\ \x7a\xc3\x83\x06\xb4\x97\xa1\xee\x5d\xa4\x7f\xff\xfe\x32\x76\x54\ \x6f\xf1\x18\xdd\x47\x06\x0d\x1a\x24\x23\x87\x75\x57\xe1\xdd\xba\ \x75\x93\xbe\xbd\x2c\xac\x12\xda\x04\x0d\xae\xe1\x95\x60\xba\x79\ \x0c\x38\x73\xe6\x0c\xa7\xb4\x68\x82\xd1\x08\x16\x65\x4a\xc1\x4c\ \xf5\x70\x51\x45\xdd\x6b\x5a\x53\x99\x37\xb3\xa5\xb8\xbb\xbb\x8b\ \xdf\x82\x8e\xb2\x6c\x61\x27\x19\x31\x62\x84\x2c\xf6\x6e\xa3\xc2\ \x7b\xf4\xe8\x21\xff\x98\xd8\x40\xda\xb5\x6b\xa7\x4d\x48\x03\xae\ \xf3\x80\xe9\xe6\x32\x40\xcf\xf3\x19\x8d\x60\x51\xa6\xd8\xc8\xad\ \x59\x54\x51\xba\x74\xe9\x22\x1b\xfd\xaa\x8b\xff\xaa\x3a\x32\x6c\ \xd8\x30\xf9\xf7\xa6\xa6\xb2\x67\x6b\x0b\x19\x37\x6e\x9c\xfc\x6b\ \x5d\x03\x15\xde\xb3\x67\x4f\x59\xbf\xb4\x0a\x4b\x0b\xd3\x31\x7d\ \x1a\x70\x9d\x07\xf2\x34\x97\x01\x7a\xe2\xd3\x68\x44\xfb\xf6\xed\ \xb5\x08\x44\x03\x08\xc8\xe2\xaf\x46\x7f\xe3\xc7\x8f\x97\x99\x33\ \x67\xf2\xcc\x6b\x86\xf3\x3e\xe3\x31\xbe\x4e\x6b\x04\xd7\x79\x98\ \xcb\x80\xd3\xa7\x4f\xeb\x59\x60\xa3\x11\x7a\x48\xab\xe7\x03\x3e\ \x5b\x3a\xad\x11\x5c\xe7\x81\x3c\xbf\x9e\x01\x9e\x9e\x9e\x7f\xf3\ \xf7\xf7\x77\x0a\x08\x08\xc8\x9f\x2b\x57\x2e\x3b\xeb\xfb\xa7\x4e\ \x9d\xd2\xd3\xe2\xb6\x8c\xa0\x08\xf1\xd9\x32\xa6\xb7\x9e\x1e\x47\ \x9e\x5f\xc7\x80\x8d\x1b\x37\xe6\x01\x7c\x1b\xf4\xbc\x1e\xef\xdc\ \xb9\x33\x08\x33\xb3\x4e\x34\x81\x5a\xb9\x72\x65\xde\x79\xf3\xe6\ \xe5\x3f\x79\xf2\x24\x0d\xd0\xca\x7c\x5d\xc0\xb6\xb2\xb2\x2e\xa0\ \xf3\xf8\x3a\x06\x10\x7e\xd3\xa6\x4d\xae\x98\x7c\x88\xc7\x35\x47\ \x65\x29\x41\x41\x41\x87\x97\x2c\x59\xf2\xf3\x82\x05\x0b\x8a\xac\ \x5f\xbf\x3e\x20\x38\x38\x38\x62\xff\xfe\xfd\x72\xe7\xce\x1d\xa3\ \x09\x19\x2f\x94\x64\x2e\x9d\xc6\x1a\xfc\xab\x19\xc0\x62\x9f\x07\ \x06\xb4\x06\x7c\x1c\xae\xd5\x7c\x9d\x86\x08\x0c\x0c\x0c\xc1\x1a\ \xc0\x6e\x4c\x54\x7c\xe4\xbd\x43\x87\x0e\xa9\x46\x69\xd5\xaa\x55\ \x9c\xba\xd6\x3f\xd2\x96\x21\x59\x95\xcd\xf4\xab\x57\xaf\xe6\xf3\ \xb3\xdf\x00\xc2\x03\xd0\x82\x49\x07\x0d\x9f\xe6\x47\xdd\x8a\xbe\ \x25\x0f\x5e\x3c\x48\x11\xc3\xc1\x49\x4d\x76\x7c\x8e\x1c\x39\xc2\ \x38\xd9\xa2\xd9\xb3\x67\xcb\xd1\xa3\x47\xb3\xd7\x00\x0d\x1f\x12\ \x12\x92\x60\x0b\x3e\x3c\x2a\x5c\xfc\x62\xfc\x64\xc5\xc3\x15\x92\ \x8a\x7f\xfa\x48\x4d\x4d\x95\x7d\xfb\xf6\xc9\x89\x13\x27\x74\x75\ \xc8\x2e\x65\x9f\x01\x84\x47\x31\xb6\x1c\x3e\x7c\x38\x31\x2c\x2c\ \x4c\xee\xde\xbd\x9b\x06\x3e\x2c\x32\x4c\xc1\x7b\x47\x7b\x4b\xc4\ \xbb\x08\x05\xfe\xee\x83\xa4\x31\x01\x0d\xa5\xec\xda\xb5\x4b\xd0\ \x30\xf2\x47\x66\x9b\xf0\x1b\xbf\xac\x01\x84\x5f\xbe\x7c\xb9\x82\ \x0f\x0f\x0f\x67\x57\x53\x15\xb7\x9b\x37\x6f\x2a\xf8\x1b\x11\x37\ \xc4\xf3\xaa\xa7\x4c\x09\x9f\x22\x91\x49\x91\xa2\x8a\x7d\x98\x88\ \xcf\x7f\x3e\x35\x61\xc3\x86\x0d\x11\xe8\xc8\xe4\xfb\x66\x96\xc7\ \x09\xef\xe3\xe3\x63\x41\x63\xa6\xe1\x55\x5d\xde\xbd\x7b\xb7\x6c\ \xdb\xb6\x4d\x42\xaf\x84\x2a\x78\x8f\xcb\x1e\xf2\xc7\xed\x3f\xd4\ \x0c\x4d\xf0\x0d\x11\xcf\x7d\xca\x04\xe3\xc1\xc9\x8b\x8f\x1e\x1e\ \x1e\x01\x18\xcb\xe7\x35\xb9\x01\x99\xc3\xa3\xe3\x23\x2b\x56\xac\ \x50\x5d\xd4\x59\x5b\x67\x11\x5e\x95\x86\x7f\x1e\x8d\x95\x09\x81\ \x89\xca\x04\x75\x60\xee\x5e\x30\x3e\x7f\x1e\x1b\x9b\x32\x66\xcc\ \x98\xdd\x18\xda\x16\x61\x3f\xc1\xf4\x06\x10\x7e\xf1\xe2\xc5\x16\ \xb4\xe0\xe9\xc2\xf7\xeb\xd7\x4f\x8d\xd7\xaf\x5c\xb9\xc2\xee\xa7\ \x82\x1f\xbd\xe5\x39\xcf\xaa\x24\x28\xf8\x90\x10\xf9\xc8\x21\x71\ \x44\x04\x5b\xea\x10\x0c\x61\x7f\x36\xaf\x01\x9f\x0f\xaf\x37\x23\ \x48\x72\x72\xb2\x04\xec\x3b\x4f\x78\x55\x12\xee\x5f\xbb\x26\x89\ \xf8\xfc\x11\x3e\x06\x0d\xa6\xfe\xd6\xe3\x73\x78\x18\x55\x40\xf5\ \x18\x4d\x69\x00\xe1\xe7\xcf\x9f\x6f\x41\x2f\x2e\xcb\xf0\x3c\xb4\ \x09\x2c\x09\x31\x80\x4f\x08\x0a\x92\xb8\xe0\x60\x89\x36\x7c\xf6\ \x60\x00\x67\x70\x52\x50\x6d\x82\x2a\x57\xae\x9c\xcf\x74\x06\x10\ \x7e\xce\x9c\x39\x99\xc2\x73\x58\x7a\x0d\x90\xb6\x0e\x56\x87\x3d\ \x6b\xd6\x28\xf8\x7b\xb7\x6f\x1b\xe1\x55\xbf\x81\x07\xc6\x09\x8f\ \x2b\x56\xac\xe8\x64\x2a\x03\x08\x3f\x6b\xd6\x2c\xcb\x81\x03\x07\ \x32\x85\xe7\x26\x24\x5b\x07\x4b\x04\x4b\xc6\x80\x01\x03\xe4\x06\ \x8c\xb0\x05\xbf\x65\xcb\x96\x78\x2c\x6e\xb8\xa2\x0a\xfc\xd5\x2c\ \x06\x10\x3e\xb7\x97\x97\x57\x8b\x2f\x01\xcf\xaf\xc2\x1a\x94\x00\ \x7e\x22\xd9\x4f\x30\xc2\x6f\xde\xbc\x39\x1e\x4b\x5c\xae\xc5\x8a\ \x15\xcb\xc3\x7c\xcd\x64\x80\x3d\x46\x6f\x57\x6c\xc1\x63\x88\xcb\ \x19\x19\x35\x2b\xbb\x7d\xfb\x76\x9b\xf0\xac\x0e\x46\x78\xa6\x63\ \xaf\x8f\xdd\xdf\x5b\xb7\x6e\x09\x0f\x8c\x1c\xe3\x50\xef\x5b\x6b\ \x78\x53\x19\x30\x72\xe4\xc8\x1f\xb1\xec\xdc\x79\xeb\xd6\xad\x6f\ \xad\xe1\xd1\x03\x14\x8c\xeb\xa5\x4f\x9f\x3e\xb6\x4a\x00\xaf\x19\ \x6e\x0b\x9e\xbd\x45\x76\x7b\x39\x52\x4b\xa8\x50\xa1\x82\x05\xc5\ \x5e\xc1\x9b\xca\x00\xbc\xd9\x1f\x26\x4c\x98\x50\x15\x6b\xed\x81\ \x63\xc7\x8e\xf5\x03\x74\xb2\x11\x1e\x9f\x43\xc1\x57\x41\x50\x45\ \x8c\x26\x64\x15\x9e\x0d\x5e\xa2\x11\xde\x74\x06\x60\x0a\xda\x01\ \x6b\x6c\x97\xf0\x96\xd9\x51\x79\x8f\x7a\x9b\xca\x31\xbc\x11\x5e\ \x8b\xe3\xed\xbe\x7d\xfb\x12\x9a\xd5\x21\x4b\xf0\xe5\xca\x95\x33\ \xc0\x9b\xd0\x00\xbc\xd5\x9f\x50\x05\x7c\x00\xff\x27\x4d\xd8\xb1\ \x63\x47\x2a\x5b\x6e\x7c\x0a\xd3\xc0\x63\x96\x47\x16\x2d\x5a\xc4\ \x33\x1b\x44\xb6\x09\x99\xc2\x63\x7f\x8f\x01\xde\x84\x06\xe0\xb0\ \x43\x09\x70\x1e\x32\x64\xc8\xa8\xc1\x83\x07\xfb\xc3\x84\x64\xc2\ \xf2\xed\x72\xc8\x8b\x59\x9f\x34\xf0\x4b\x97\x2e\x15\x3f\x3f\x3f\ \xf1\xf5\xf5\x95\xe1\xc3\x87\xa7\x07\xcf\xaf\x46\x62\xc9\x92\x25\ \x0d\xf0\x26\x35\x00\x2d\xb7\x3d\xde\x7e\x08\xc0\x3f\xa0\xfe\x3f\ \xc3\x17\x20\x85\x75\x9f\xd0\x84\x5b\xb6\x6c\x99\x4c\x9f\x3e\xdd\ \x08\xcf\xa9\x2d\x6e\x7b\x65\xab\x9e\x2e\x7c\xd1\xa2\x45\x4d\x01\ \x4f\x65\xd6\x00\x3a\x60\xe9\xe9\x22\x80\x53\x59\xfc\xb9\xa8\xc8\ \x86\x8d\xe0\x08\xe3\xc2\x84\x5a\x9b\x83\x39\x59\x81\x67\xbb\x61\ \x13\xde\xcc\x55\xe0\x2f\x58\x93\xfb\x15\xd5\xe0\x26\x0c\x20\x34\ \x27\x35\x09\xcb\x56\x9f\xd7\xdc\x89\xa5\x56\x60\x50\x4d\x32\x82\ \xa7\x69\x89\x85\x0a\x15\x32\xc2\x9b\xdf\x00\x0a\xc3\xd3\xbf\xbb\ \xb9\xb9\xfd\x86\x3e\xc0\xfb\x85\x0b\x17\x0a\x8d\x20\x34\xda\x04\ \x8e\xdc\x94\x09\xa8\x26\xdc\x91\xc1\xcf\xe0\xe7\xc0\x9b\xdf\x00\ \xec\xb8\x70\x04\xbc\x37\xba\xc0\x49\x04\xc2\xe4\x07\x0d\xa0\x58\ \xf4\xb9\x1e\xcf\xfd\x78\x34\x81\xd7\xa9\xd8\xa8\x98\x8a\x3e\xc3\ \x87\x6f\x05\x9e\xca\x10\x1e\xeb\xed\x5e\x58\xb8\x20\x3c\x41\x58\ \xd7\xb9\x1c\xcd\x7d\xf7\x4a\xa8\x1e\xdc\x86\x92\x82\x7e\x42\x32\ \x4c\xe1\xb2\xf4\xfb\xe2\xc5\x8b\xfb\xe1\xde\x5b\xc0\xf3\x6b\x90\ \x58\xa0\x40\x01\xd3\xc2\x53\xe9\xc2\x63\x95\xd5\x1a\x9e\x6f\x59\ \xaf\xc0\xbe\x07\x24\x3b\x46\xdc\x99\xf5\x0c\x7d\x78\x7f\x54\x8b\ \x3f\x19\x56\xa5\x4a\x95\xc0\xc2\x85\x0b\x77\x1e\x38\x70\xe0\x55\ \x47\x47\xc7\x96\x1a\xfe\x9b\x31\x00\x5b\xcc\x1c\x31\x2b\xeb\x05\ \x70\x5b\xf0\xdc\x78\x90\x84\x0d\x88\xbf\xe1\x7c\x13\xc0\xa9\x18\ \x23\x7c\xc0\x00\x66\x54\xa9\x52\xa5\x7c\xb0\x4b\xeb\x52\x91\x22\ \x45\xaa\x02\xfa\x47\xc0\xdb\xe3\x9c\xdb\xcc\xf0\x94\x35\x7c\x3e\ \x14\xe3\xd9\x19\xc1\x63\xa2\xc2\xfb\x97\x5f\x7e\x29\x00\xfd\x8a\ \x8d\x48\x17\x51\x02\x4e\xe6\xcf\x9f\xdf\xb9\x60\xc1\x82\x3f\xe1\ \xec\x00\xe8\x1f\xcc\x0e\x6d\x94\x11\x3e\x2f\x76\x55\xb8\xef\xdd\ \xbb\x37\xca\x06\x3c\xb7\xa1\x25\x61\xd0\xe2\xe5\xe4\xe4\xe4\xa8\ \x3f\x91\x25\x4a\x94\x70\x20\x34\xff\xcf\xb0\x6f\x51\x1a\x3e\x0f\ \xde\xae\x05\xf0\xbf\x03\x3e\x14\xf0\x8f\x32\x82\xcf\x49\x22\x7c\ \x6e\x6c\x46\x2a\xbf\x67\xcf\x9e\xd1\x80\xf7\x05\xfc\x4e\xc0\x87\ \x02\xfe\x91\x86\xc7\xe7\x2d\x47\xc2\x53\x6c\xf1\x1d\x00\x5f\x1b\ \xf0\x6e\x80\x1f\x07\x78\x5f\xc0\xef\x04\x7c\x28\x8c\x89\x2a\x53\ \xa6\xcc\x6c\x0d\x9f\x23\x0d\x00\xbc\x1d\xe0\x9d\x01\xef\x02\x78\ \x37\xc0\x8f\x03\xbc\x2f\xe0\x7f\x47\xcb\xee\x0e\xf8\x7c\x39\xfe\ \x4f\x67\x01\x6f\x07\x78\x67\xc0\xbb\x00\xde\x0d\xfb\xeb\x46\x73\ \xb8\x0a\xf8\xbc\xdf\xcd\xdf\x0e\x03\xde\x0e\xf0\xce\x80\xaf\x8d\ \xde\x5c\x79\xc0\xab\x0e\x4c\x4e\x97\x75\x0f\xd0\xce\xd9\xd9\xd9\ \xc1\xde\xde\x5e\x77\x60\x72\xbc\xfe\x0b\x8b\xb0\xee\xd0\x0d\x8d\ \x44\x86\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xd6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\ \x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0b\x11\ \x17\x19\x36\xe0\x1f\xbc\x7d\x00\x00\x02\x56\x49\x44\x41\x54\x78\ \xda\x8d\x91\x5d\x48\x53\x71\x18\x87\x9f\x73\x66\x52\xe1\x32\x95\ \x30\xb2\xd5\x12\xc2\x30\xa8\x30\xbd\x31\x2f\xba\xd1\x8b\x90\xc0\ \xa0\x4f\xa2\x20\xb2\x4c\xab\x8b\x8c\x60\x41\x12\x18\x41\x82\x91\ \x60\x81\x1f\x45\x17\xd2\xf7\x45\x17\x61\xa4\xa1\x61\x28\xa1\xa8\ \x91\x59\x4a\xea\x14\x5d\x73\xb6\x4c\xcf\xce\x74\xba\xb3\xfd\x3b\ \x1c\xd8\x58\x5b\x50\x0f\xbc\xbc\xef\xb9\x78\x9f\xdf\xcb\xff\x48\ \x60\xb0\x16\xd8\xce\x7f\x50\xb0\x5b\x5e\x79\x7b\x63\x41\x9d\xe6\ \x9a\x1b\x23\x21\xe1\x44\x48\x90\x2f\x84\x68\xe1\x1f\x04\xfc\x8b\ \x78\x7a\x8b\x78\x79\xdf\x4e\x46\x7b\x80\x05\x97\xab\x33\x0e\x30\ \xd0\x05\xfc\x70\xbb\x91\x65\xd9\x28\x49\x92\x90\xf5\xd2\x07\x63\ \x86\x20\xcb\x5f\x4b\x79\xdd\xfa\x85\xeb\xad\x32\x07\x2c\x53\x5a\ \x96\x47\x24\xc9\x44\x60\x32\x99\xc2\x02\x53\xa8\x9b\x4c\xc6\xec\ \xb7\x57\xd1\xdb\xd3\xc5\x8d\xa6\x78\x76\x6e\x76\x73\xfa\xac\xe4\ \x6a\xc9\x92\xcf\xc5\x41\x18\x23\xd1\x48\xd7\x4b\x9f\xc3\xdd\x37\ \xf5\x08\xc7\xb7\x37\xd8\xea\xe3\x59\x6f\x9e\xe1\x56\xe9\x6a\x2a\ \xea\x97\x6a\x9e\xb7\x69\xd3\x91\x17\xfc\x99\x1e\x4a\x9e\x7d\x8f\ \x32\xfe\x84\x0b\xd5\x3e\x56\x48\x1e\x6a\x2e\x06\x59\x48\xad\x40\ \x5f\xf6\x00\x93\x61\x81\x14\x4a\x8c\x90\x04\xd4\x21\xb4\xe9\xc7\ \x5c\xb9\xeb\x61\x5e\x51\xa9\x2e\x51\xd0\x52\xcb\x50\xe5\x1d\x00\ \x0e\x60\x31\xe6\x82\x90\x24\xe0\x73\x12\x9c\x7e\x88\xed\xce\x18\ \x9f\x87\xdd\xdc\x3c\x35\x87\x79\xd3\x41\x66\x02\x79\x58\xad\x56\ \x80\x25\x63\x27\xea\x0d\x8c\x12\x9a\x82\xd0\x97\xab\x1a\x07\x79\ \xd7\xed\xc4\x76\x74\x8e\x2d\xdb\x72\x19\xf5\x15\x92\x96\x96\x86\ \xc5\x62\x01\x20\x46\x60\xfc\x2e\xe1\x27\xe0\xa8\xe3\xc1\xb3\x7e\ \x9e\x36\x4f\x50\x52\xe8\x21\x37\x27\x9d\xfe\x5f\x47\x48\x4e\x4e\ \x21\x33\x33\x13\x01\x61\xe2\xa2\x05\xf3\x93\x6d\xb4\x35\xb7\x53\ \xdb\x34\x49\x51\xde\x22\x87\x0a\x12\x79\x31\xb8\x9f\x29\xe7\x00\ \xe6\x35\x49\xf4\xf5\xf5\xb1\xca\x9c\x08\xa0\xfd\x55\xa0\x7a\x25\ \xbc\x41\x2b\x7b\x77\x8d\x51\x7e\x58\xe6\x95\xfd\x38\xc3\x23\xdf\ \xa9\xac\xac\xd4\x2f\x48\x46\x55\x55\x2e\x95\x97\xbf\x05\xba\x62\ \x04\x3f\x67\x1c\xcc\x3a\x3f\x90\xbe\xce\x49\x46\x51\x36\xe3\xf1\ \xfb\xc8\xd9\x93\x8d\x39\x65\xc8\x58\xf6\x7a\xbd\xd8\xae\xda\x06\ \x1a\x1b\x1a\x4e\x02\x3e\x22\xc8\x17\x3a\xf7\x6a\x6b\xc4\xb5\xcb\ \xc7\x84\x63\xa4\x53\xf8\xfd\xcb\x22\x18\x0c\xea\xdd\x2f\x3a\x3a\ \x3a\x84\xa2\x28\xa2\xec\x7c\xd9\x27\x60\x2b\x21\xa2\x05\x13\xf6\ \x51\x11\xcd\xb2\x16\x10\xdd\x1f\x07\x44\xf1\x99\xe2\x16\x60\x03\ \x51\x48\x60\x90\x02\x64\x85\xbf\x63\xd1\x80\x4e\x60\x89\x28\x7e\ \x03\x99\xc3\x0a\xf4\x03\x8f\xf6\xf6\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x03\x4a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x09\x01\x13\x33\x0c\xa5\xca\x67\x00\x00\x02\xd7\x49\x44\ \x41\x54\x38\xcb\xa5\x93\xcd\x6b\x5c\x55\x18\xc6\x9f\xf7\xbc\xe7\ \x9e\xb9\x77\x32\x5f\x99\xb4\x36\xd3\x84\xa1\xd3\x96\x04\x4d\x91\ \x40\xfd\xa8\x28\x6d\x5a\x75\xe1\x47\xc9\xaa\xe8\xa6\x5d\xa9\xf8\ \x1f\x88\x08\xe2\xc6\x55\xb7\xae\x74\x17\x50\x10\x74\x21\x2e\xb4\ \x08\xa5\x04\x51\xa2\x22\x11\x0d\xc4\x06\x35\x26\x4e\x6d\xf3\x21\ \x93\xf9\xba\x73\xcf\x3d\xe7\xbc\xee\x04\x4b\x77\x7d\x96\x3f\x78\ \x16\x0f\x3c\x3f\xba\x88\x47\x22\xdc\x47\xb4\x83\xa7\xbb\x21\x01\ \x10\x00\x01\x02\x05\x05\x40\x40\xf7\x28\x0b\x00\x5d\x07\xff\x0f\ \x5a\x08\x5e\x40\x0d\xb3\x28\xf9\x05\x73\xa3\x15\x85\x4a\x7a\x81\ \xe2\xfd\x8f\x5e\xf5\xee\xf3\x95\x3e\x1f\x21\x25\x89\x22\x0c\xc4\ \xe3\xfd\xef\x8f\x09\xbd\x81\x85\xff\x26\x14\xc7\x3c\xde\x3e\x57\ \x09\xf4\xe5\xf5\x3a\x71\x32\x2b\x49\x51\x21\x73\x01\x45\xcd\xe8\ \xf7\xfa\x9a\xe3\xcc\x49\xd8\x3d\x94\x15\xb5\xc5\x41\xf9\xe0\xc5\ \x85\x9b\xca\x21\x20\x43\xc0\x24\xca\xf2\xa1\xfc\x65\xcc\xd7\xdf\ \x1d\x47\x54\x1e\x17\x25\x7b\x48\x7b\x07\x08\xc3\x11\x46\xf9\x36\ \x72\xd9\x8b\x8e\x36\x92\x77\x0b\x76\xae\x8e\x1a\xc2\xd9\x5a\x93\ \xae\x7d\xfb\x34\xbd\x86\xa7\xa2\x76\xb1\x4d\x5f\x8d\xb6\x6a\x36\ \x78\x06\x90\x01\xd5\xaa\x46\xa5\xe2\xa9\xb3\x28\x44\x56\xb1\x5f\ \x01\x9b\x5b\x21\xe8\x89\xc4\xfe\xe3\x3d\x74\x15\x05\x63\xf3\x5c\ \x5a\x7c\xfc\x94\x44\x9f\xf5\xf3\xa6\x24\xcd\x2e\x65\xb6\x00\x2a\ \x9a\x2a\x86\xec\x30\x7a\xc8\x27\xc9\x3a\x4a\x93\x3f\x08\x34\x09\ \x7c\x09\x26\x8e\x8c\xa5\x9e\x81\xcd\xd4\x99\xd3\xd5\xbc\xbd\x7d\ \x98\x37\x76\xe5\x39\x1f\x38\x91\xd0\x99\x91\xc3\x87\x86\xa8\x26\ \x79\x36\x1a\xcd\x87\x92\x89\xd0\x68\x6e\xa2\xd3\x9b\x80\xd3\x3b\ \x10\xd7\x01\x47\xe3\xca\xa6\x56\x22\x44\x6e\x47\xa5\xf0\xdd\x32\ \x2b\xa2\x13\x41\xfc\x25\x48\xd4\xe2\xde\xe0\x8a\xf4\x3b\x4f\x90\ \xaa\xfc\x8c\xb8\xbe\x86\xee\xfe\x34\xaa\x93\x5b\x18\x75\x87\x10\ \x7f\x04\xe2\xa7\x0b\x6e\xa4\x7d\xb0\x73\xb9\xd2\x3e\xf1\xfe\x17\ \x66\x8a\x5a\x81\xd4\x3c\x45\x85\xb2\x4c\x9d\xdd\x50\xdd\x9d\x07\ \x29\x74\x66\x24\xe7\x29\xc5\x7a\x5d\xf5\x07\x45\xb1\x52\x04\x87\ \x45\xb8\xb4\xc1\x3a\x8f\xed\x4b\x97\x58\xaf\xfd\xca\x1a\xfe\x4f\ \xae\xc7\x49\x9a\xc2\x34\x44\xe1\x18\x16\x6f\xac\xaa\xcd\xf6\x26\ \x86\x2b\xe7\x64\xec\x81\x65\x19\xdc\x7a\x46\x9c\x7b\x14\xe2\x27\ \x11\x06\xb3\x80\x4e\xc7\xc7\xd4\x72\x5a\x32\x67\xe2\x76\xe7\x47\ \x15\xdc\x81\x7a\xaf\xd1\xd8\x0b\x76\xff\xea\x45\x71\x97\xcd\xda\ \xd2\x54\xf0\xbb\x57\x82\x29\xdf\x44\xb0\x31\x89\x89\x00\x61\xa8\ \x94\x21\x5c\x01\x94\x2a\x58\xb9\x43\x2b\xbf\x5f\x1f\x98\xd2\xc3\ \xe2\x9d\xa8\xd5\x3f\x8e\xca\x9b\x74\x5e\x9f\x7f\xfe\x44\x9e\xb5\ \xb6\xde\x92\xce\x27\x73\x71\xa0\x77\xc8\x0e\xf6\x40\xe4\xa0\x38\ \x40\x33\x83\xf4\x2a\x57\xa6\x3e\xbd\x63\x26\x1a\x41\x17\xa6\xa1\ \x74\x8d\x91\xa7\xf4\x32\x1e\x37\x77\x7f\x3c\x40\xc9\xc7\x4f\xfa\ \xb0\xf4\xdb\x49\x7a\xfd\xf6\xb5\x79\x4b\x12\xbb\xab\xa7\xbe\xc1\ \xf6\x06\xf4\xd2\xd8\xa2\x00\x4d\x9d\xd9\x9f\xfe\x1e\xbe\xb2\x4c\ \x17\x70\xda\xdc\x4b\x13\x07\x05\x82\x80\x11\x50\x86\x96\x7d\x80\ \x18\x1e\x1a\x24\xcf\x62\x26\x7c\x81\x75\x66\x28\xd0\x07\x8f\x29\ \x73\x3f\x3a\xff\x0b\xdd\xda\x54\xb4\xff\xaf\x8b\xef\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x5f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0f\x01\x10\x37\x05\x8e\x02\x61\x00\x00\x00\xec\x49\x44\ \x41\x54\x38\xcb\xed\x90\x2d\x8e\x83\x50\x14\x46\xcf\xe3\xe7\x25\ \xcf\x10\x76\xd0\x35\x60\x48\xea\x2b\xb0\x4f\x12\x1c\x8b\x21\x95\ \x55\x58\x76\xc0\x02\xb0\xac\xa0\x0e\x8d\x6a\x52\x47\x08\x24\x14\ \xb8\x23\x26\x33\x66\x18\x33\x63\x7b\xe4\x4d\xce\x97\xef\xbb\xf0\ \xe6\xdf\x28\xdf\xf7\x25\x0c\x43\x82\x20\xf8\x3e\x8a\x08\x4a\xa9\ \xdf\x25\xa5\x18\xc7\x91\xc7\xe3\x81\x27\x22\xe4\x79\x4e\xdf\xf7\ \x0c\xc3\xc0\xeb\xf5\x42\x44\xd8\xf7\xfd\x50\x34\xc6\x30\xcf\x33\ \x45\x51\x10\xc7\x31\xde\x57\x5a\xd3\x34\x88\x08\xd6\x5a\x3c\xcf\ \xfb\x21\x8b\x08\x5a\x6b\xda\xb6\xe5\x7e\xbf\x53\x96\x25\x00\xde\ \xb6\x6d\x18\x63\x48\xd3\x94\xba\xae\xb9\x5c\x2e\xac\xeb\x7a\x38\ \x61\xdb\x36\xc6\x71\xe4\x74\x3a\xd1\x75\xdd\x67\x2b\xc7\x71\x44\ \x6b\x4d\x96\x65\x24\x49\xc2\xf5\x7a\x45\x6b\x8d\x88\x1c\xee\x3f\ \x9f\xcf\x18\x63\xb8\xdd\x6e\x4c\xd3\x84\x02\xc4\x71\x1c\xf6\x7d\ \xc7\x5a\x4b\x14\x45\x2c\xcb\x82\xeb\xba\x87\x0d\x9e\xcf\x27\x55\ \x55\xb1\xae\xeb\xe1\x9f\xde\xfc\x81\x0f\xf0\x8b\x6a\x03\xf6\x40\ \x84\x42\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x7d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\ \x01\xbb\x01\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x0a\x0a\x10\x32\x00\x30\xbb\xd8\x3b\x00\x00\x03\x0a\x49\x44\ \x41\x54\x38\xcb\x5d\x92\xdd\x4b\xa4\x75\x14\xc7\x3f\xbf\xe7\x6d\ \xde\xd4\x49\xd7\x42\x61\x1b\x93\x85\x0a\x5c\x34\xc2\xc4\x6c\x85\ \xca\xbd\xc9\x92\xa8\x9b\x15\x0c\x22\xac\x6e\xbb\xf0\x2e\xfa\x0b\ \xba\x8d\x95\x10\x85\xae\x06\x17\xba\x88\xbd\x50\x84\x60\x17\x6d\ \x51\x70\xdb\x52\x76\x70\x6d\x1d\xf3\x05\x74\x9c\x79\x66\x9c\x99\ \x67\x9c\xd1\xe7\xed\x74\x25\xd8\x7e\xee\xce\xe1\xfb\x3d\x7c\xf9\ \x72\xd4\xc2\xc2\xc2\xfb\x96\x65\xe9\x22\x22\x00\xb1\x58\xcc\x5d\ \x5e\x5e\xfe\xb2\xb7\xb7\xf7\xd7\x48\x24\xe2\x71\x05\xcf\xf3\x4a\ \xa3\xa3\xa3\x7f\x5f\xdd\x19\x85\x7c\x61\xe1\xf9\xbf\x3b\xb1\x40\ \x42\x2c\xcb\xc2\x34\x4d\xf4\x88\xc1\xe6\xb3\xcc\xd7\x2a\x84\x73\ \xdf\xe5\xfc\xe2\x82\xd6\x58\x13\xdd\xdd\xdd\xf7\x81\x4f\x01\x32\ \x99\x0c\x3d\x3d\x3d\x18\xa2\xb8\xb8\x7e\xa2\x62\x1f\xbf\xfd\x21\ \x4a\x53\x10\x0a\xb8\x01\xba\xeb\xb1\x5e\xde\xe5\xa6\x9e\xc2\xa8\ \x79\xfc\x78\xb2\xc6\xd0\xd0\x90\x59\x2a\x95\x3a\x1d\xc7\xb1\xba\ \xba\xba\xf6\x01\x0c\x41\x68\xaf\xc3\x8a\xb6\xcf\x49\xad\x8c\x17\ \x78\xe8\x9a\x8e\xa6\x6b\xe8\x1d\x3a\xbb\x92\x43\x5d\x83\x1b\xbc\ \xce\xda\xe3\xf5\x8f\xfe\x7c\xf2\xe4\xe8\xa5\x64\xb2\x0c\xb4\x02\ \x18\x08\x84\xb1\x02\xd7\xda\xfa\x58\x5b\x5e\x63\xbc\xe7\x03\xcc\ \xa8\x85\xa6\x69\x68\xbe\xa0\x5c\x8f\x83\x9a\x4d\x6b\x60\x62\xd5\ \x03\xee\x3b\x5b\xdc\xbc\x33\xd6\x00\x10\x91\x16\x43\xd7\x34\x1e\ \x34\x72\xdc\x0e\x7c\x12\xf5\x90\x7a\xc4\xe5\x30\x56\x43\x08\x40\ \x14\x2a\x2a\x84\x49\x9d\x42\x18\xa0\x89\x90\xe2\x4d\xf6\xf6\xf6\ \x3a\x66\x66\x66\x9c\xd9\xd9\x59\x5f\x0b\xc3\x90\x87\xab\x7f\x71\ \xee\xba\x04\x9c\xd1\xde\xd1\xc4\xea\xfa\x3a\xee\x76\x11\xfd\xe8\ \x9c\x68\x41\x68\xb1\x35\x5a\x6c\x45\xfc\x38\xa0\x79\xbf\x81\xb1\ \x99\x57\x87\xab\x4f\x9b\x9a\x9a\x9b\x95\xa1\x14\xea\xd4\x8b\x10\ \x88\xc2\x36\x5d\xf6\xc3\x2a\xe5\x62\x89\x6f\x52\x9f\xa1\xda\x80\ \xa8\x03\x76\x15\xea\x35\x38\x6b\x40\xa5\x81\x9c\x7a\xdc\x2b\x17\ \xf1\x02\x1f\xc3\xb6\x8b\x7f\xfc\x36\xff\xcb\x2b\xb6\x5d\x7c\xeb\ \xe9\x3f\x3b\x66\x5f\x2e\x4f\xe0\xfb\x68\x7a\x8e\x70\xb4\x84\xd6\ \x51\x87\xa5\x03\xd8\x2e\x80\x5f\x43\x9c\x73\xf0\x7c\x24\x34\x10\ \x01\x63\x6a\x6a\xea\x13\x80\xc5\xc5\xc5\xc3\x7c\xb9\x7e\xbd\x7a\ \x01\x9a\xa9\xf3\xc0\xca\xe0\x2c\xd4\x88\xb7\x98\x70\x90\xa7\xb8\ \x9f\xa3\x5c\x29\x51\xa9\x9c\xa2\x79\x1e\x59\x3a\x79\x0f\x85\x71\ \xf9\x51\x1b\x1b\x1b\x47\x3f\xdf\xfd\xa9\x1d\x88\x3e\xfc\x7d\x89\ \xbb\x4b\x07\xbc\x71\x23\x49\x67\xab\xcf\xe3\x4d\x9b\xe3\x5c\x95\ \x4a\xc5\xc1\x0f\xc0\xb4\x4c\x42\xcb\xe7\x16\x82\x76\x79\x20\x9d\ \x4e\xcf\x4e\x4c\x4c\x7c\x65\x9a\xe6\x3d\xc7\x39\xe3\xd1\xb3\x3c\ \xb5\x8b\xe7\xd4\x82\x6d\x76\x4b\x45\x32\xb6\x45\x4e\x75\x52\x8e\ \xbe\x4a\x35\xf6\x1a\x85\x86\x8e\x88\xa0\x00\x86\x87\x87\x59\x59\ \x59\x01\x60\x7a\x7a\x7a\xce\xb2\xac\x2f\xea\x5e\x68\xbd\xdc\x66\ \xa2\x70\xa9\x54\x43\x44\x45\xeb\xa1\x48\x5c\xc2\x10\x94\x42\x85\ \x01\xa1\xef\xda\xbc\xc8\xc0\xc0\xc0\xb7\xfd\xfd\xfd\xf3\x00\x89\ \x44\x22\x0d\xbc\x3b\x3e\x3e\xfe\xf9\xc8\xc8\x48\x16\x48\xbe\xa8\ \x57\x57\x87\xab\x49\x2e\x99\x9b\x9b\xbb\xb5\xb5\xb5\x75\xbb\x5a\ \xad\xee\xf4\xf5\xf5\xed\x8d\x8d\x8d\x3d\x4a\xa5\x52\x22\x22\x28\ \x75\xa5\x44\xe0\x7f\xe6\xc1\xc1\xc1\x77\x94\x52\xdf\x65\xb3\xd9\ \x1f\xd2\xe9\x74\x20\x22\x6e\x3c\x1e\x3f\x9e\x9c\x9c\x9c\x4f\x24\ \x12\xdf\x2b\xa5\xb2\x00\xff\x01\xac\x0f\x7f\x13\x56\xe4\xb5\x46\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x75\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ \x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0c\x1e\ \x10\x24\x2d\xef\x9e\xe7\xec\x00\x00\x02\xf5\x49\x44\x41\x54\x38\ \xcb\x95\x91\x6b\x48\x53\x01\x14\xc7\xff\x77\xbb\x7b\xdc\xeb\xa6\ \xab\xe9\x36\x75\x99\xba\xf5\x70\xa5\x58\x1a\x4e\x4d\x66\x05\x16\ \x45\xd9\x83\x90\xc4\x04\xa5\x2c\x0c\x8b\x48\xcb\x2c\x34\xb0\x8c\ \xe8\x4b\x21\x51\x66\x41\x04\x3d\x3e\x34\xc3\xd4\x32\x34\xa2\xb2\ \x22\x53\x33\xb3\xf2\x95\xaf\x34\x67\xee\xa1\x7b\x34\x77\xa7\xbb\ \x7d\x52\x0a\xbf\xe8\xf9\x74\x38\xff\xf3\xfb\x7d\x38\x87\xc0\x02\ \xeb\x86\x00\x51\x5e\x01\x21\xb7\x68\x85\xa2\x9a\xf6\xf3\xbb\xb0\ \x20\xb8\xae\xe2\x8c\xc4\x56\x27\xed\x2e\x5c\x2a\x64\xcb\x78\x7c\ \xb6\x8c\xa2\x6a\x38\xf3\x85\xef\xe5\x01\xd3\xa2\x8d\x0f\x3a\xe9\ \x72\xb5\x7e\x51\x38\x0c\x9b\x04\xe0\x7a\x33\x8b\x89\xf9\x0a\x4c\ \x2f\x42\x0f\xf6\xff\x49\xb8\x39\x8c\x14\xc8\x15\x0a\x70\x87\x8a\ \x2c\xa6\xde\xaa\xc8\x79\xc1\x86\x67\xca\xd5\xae\x6f\xd9\x7f\x36\ \xe9\x22\xd9\x70\x8d\x8a\xfd\x50\x95\xed\xa9\x7d\xfe\x32\x7d\xce\ \x62\x4e\x34\x49\xe4\x44\x71\x85\xff\xce\xfa\xf4\xb4\x97\xbb\x23\ \xfb\x6b\x51\xee\x6e\x76\x49\x90\x8a\x7d\x7a\x3d\x9c\xfd\x5e\x11\ \x76\x65\x26\x27\x67\x9a\xc2\x9d\x1a\x0d\x25\x51\xd4\xa8\x96\x6b\ \x82\xd6\xef\x62\x6e\xbc\xd3\xdf\x3c\x72\xf5\x13\xe0\xaf\xde\x52\ \xfa\xb2\x15\x9a\x87\x15\x2d\xd0\x2a\x5d\xf8\xd5\x35\x36\xd1\x56\ \xef\x2c\x9e\x23\x58\xac\x50\xe6\xaf\x8d\x4b\x0c\x9e\x9c\xe2\x80\ \x71\xda\xb2\x49\xa9\xaa\xcc\xf6\x56\x14\x61\xb1\xd3\x19\xb9\x25\ \x6f\x10\x2a\x31\x21\x50\x40\xa1\xe9\xc7\x0a\x1f\xf3\x60\xd7\x65\ \x60\x22\xf3\x3f\xc1\xaa\x30\xf5\x92\xb5\x31\x31\xe0\x7a\x49\x61\ \x33\x1a\xe0\x1c\xa9\x4c\xe2\xf1\xe9\xc2\xac\xb3\xdd\x70\x3b\xac\ \x48\x48\xd6\xe1\xe8\x91\x7c\x70\x48\x01\x0a\x8f\x1f\x0a\x43\x6b\ \x0b\x00\x60\xf6\x8d\x52\x6f\xfa\x8b\x87\x99\x84\xc7\xe5\x80\xc7\ \x69\x61\x75\xb1\x63\xa7\x2e\xde\x65\xc4\x2d\xdf\x4c\x38\x91\xca\ \x62\xdf\xd6\xed\xe0\xf2\x45\xe0\x90\x3c\xa4\xef\xdb\x63\x99\xe1\ \x66\x05\x1f\xdf\xbe\x2e\x1e\x1f\xee\x64\xdc\xc6\x01\x08\x5d\x77\ \x89\xc6\x1f\x22\xdf\xdb\x4f\xac\xd8\xab\x73\x21\x62\x19\xf7\xcb\ \xef\x81\x8e\xdb\x6e\xfb\x08\x5c\xa6\x7e\xd4\xd4\x55\x7f\x9e\x23\ \xa8\x6b\xfe\x69\x1c\x75\x0a\xcc\xcd\x6d\xaf\x60\x32\x35\x22\xf7\ \x1a\x01\x75\x80\x0b\x29\x89\x4e\x87\xc5\xd8\x97\x62\x36\x5a\x1a\ \x26\x46\x06\x31\xd0\xd3\x81\xe6\xc6\xf7\xa2\xd9\x23\x6e\xdb\x91\ \xc9\x3b\x90\x91\x9a\xa9\x0a\x09\x3c\x2c\x93\x52\x8a\xf6\x66\x1a\ \x6d\x13\x12\x88\x29\x3d\x8e\x25\x9b\x61\x73\x6f\xe8\x0a\x4a\x38\ \x59\x29\x71\x74\x84\x0a\x25\xbe\xb0\xda\x1d\x58\xa3\x5e\x96\x75\ \xe9\xfe\xa3\x24\xc3\xeb\xf2\x02\x32\x6d\x7f\xda\x39\x6d\x5c\x54\ \x81\x58\x24\x00\x49\xf2\xc1\x23\xc7\x21\xa3\x7a\x70\x3e\x27\x08\ \x94\x6f\x0a\x1b\x22\x8b\x8e\x5c\xa4\x5e\x41\xb8\xba\x06\x01\xb7\ \x13\xc3\xdd\xdf\x31\xd4\xd3\xc3\x17\x4b\xa4\xcb\xd9\xe0\x95\xd7\ \x38\xfe\xfe\x7e\xe9\x00\xe0\x9e\xf2\xc0\x6e\xb7\x23\xf7\x74\x09\ \xc6\x1c\x32\x84\xc4\x97\x42\xa5\x2d\x20\x08\x1f\x25\xc1\x78\x38\ \xf0\x88\x03\xe1\xf1\x56\xc2\x3c\x4d\x41\x16\xb1\x01\xd6\x71\x13\ \x84\x14\x2d\xe7\xae\x8b\xdd\xcc\x00\xe0\xda\x6c\x0e\xe2\x43\x63\ \x13\x01\xbe\x9c\xd1\x6e\x3c\x68\x9d\x74\x73\x7a\x07\x06\x87\xea\ \x1b\x1a\x9a\xee\x8c\x5b\x9d\x96\x51\x3b\xc7\x61\xb0\xb2\x56\x81\ \x6c\xa5\x41\x1e\x16\xdf\xde\xd9\xfd\xb3\xf2\x71\x6d\x6b\xde\x5f\ \xe0\xbc\x32\xda\x82\x1f\x79\x91\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x03\x44\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xc1\x49\x44\ \x41\x54\x78\xda\x85\x91\x5f\x48\x53\x61\x18\xc6\x9f\xef\xec\x6c\ \x3b\xee\xbf\x6e\x39\x19\x6e\x2a\x88\x88\x18\x4c\xbd\x48\x28\x09\ \xed\x26\xa2\x40\xc2\xba\x91\xba\x09\xeb\xb6\x6e\x44\x4a\xca\x75\ \x11\x14\x98\x52\x44\x24\x19\x91\x41\xa6\x54\xa2\x58\x5b\xe5\x85\ \x98\x62\x64\x13\xff\xa4\x35\x4d\xd1\xa1\x96\xe6\x64\x67\x9b\xfb\ \x7b\xce\xd7\x11\xa7\x04\x81\xfe\xe0\xbb\xf9\xde\xe7\x79\xbf\xe7\ \xfd\x5e\x50\x4a\xf7\x3d\x78\x82\x93\xd9\xce\xec\xaf\x55\xa3\x55\ \xbe\xac\xf6\xac\x29\x3c\x42\xe5\x4e\x6d\x7f\xf3\x1d\x9c\xb7\xbf\ \xb5\x0b\x0d\x53\x0d\x34\x2e\xc4\x69\xc3\x74\x03\xb5\xbb\xec\x02\ \x6e\xe3\xdc\x56\x9d\xc1\x1e\x10\x42\x94\xd0\xa3\x9e\x67\x78\x66\ \x70\xa5\x0b\x14\x22\x16\x37\xba\xc0\xb2\x3c\x03\x0d\x6e\x12\x89\ \xbd\x5f\x07\x94\x78\x86\x50\x2c\x11\xa3\xa2\x28\xd2\x7f\xc1\x73\ \x04\x01\x68\x18\xec\x8d\x00\x82\x00\xd7\xa5\x40\x85\x73\x5b\xea\ \xf8\x42\x50\xfa\x81\x00\x14\x7e\x00\xdc\x7e\x0d\x64\x98\xc6\x63\ \x51\x01\x71\x46\xdc\xbe\x70\x6e\x02\x23\x31\x88\x98\x95\xb2\x01\ \x3c\x49\x46\xc5\xfd\x9a\xf2\x52\x8d\x31\x63\x30\xb8\x19\x66\xcc\ \x66\xa3\xf7\xec\xb5\x56\x5b\xf2\x1f\x74\xb8\x82\xeb\xe6\x7c\xf9\ \x85\x53\x9e\x3c\xdd\x3a\xc2\x31\x67\x64\xae\x25\xfc\x00\xb5\x92\ \x37\xba\x9b\x40\x93\x6e\x71\xa9\x35\x29\x8c\xd9\x92\x8d\x54\x73\ \x96\xb5\xe5\xd2\xd1\x83\x90\x90\x44\x3c\x9a\xe0\xa8\x74\xe6\xea\ \x0c\x43\xb3\x8c\xd6\x2d\xe7\xea\xf8\xc3\xc7\xb6\xcc\x90\x60\x91\ \x44\xcd\x52\x79\x45\x79\x19\xb8\x8c\x3c\xf8\xfd\x41\x8c\x0d\xb8\ \x4e\x03\x98\x80\xc4\xc5\x12\x95\xc6\x60\x30\x30\x67\xaa\x1d\x50\ \x6a\x4c\xe8\x68\x7b\x6a\x43\x12\x76\x77\x58\x99\xf8\x8b\xc8\xd8\ \x1c\x06\x22\x12\xb1\x10\x7c\x7f\x3c\x2f\x90\xc4\x62\x62\xa3\x95\ \xc7\x4f\xd0\x9c\x82\x22\xc2\x65\xe4\xa3\x6c\x66\x7c\x03\x49\x76\ \x47\xf8\xf4\xee\x65\xc5\xd4\xd8\x18\x12\xc1\x35\x0c\x0f\x0c\xc4\ \x6e\xf5\xae\x79\x90\xe4\x86\xd3\xef\x0b\x87\x02\x5e\x2a\xc4\x11\ \x5e\x9d\x87\x7b\xdc\xbd\xf2\x5f\x83\xe6\x61\x2c\x32\x46\x2b\x3a\ \x5e\xf7\x42\xa5\xd3\xc6\x3b\x3b\x3b\x15\xd8\xc1\xe1\x60\x78\x1f\ \x3f\x34\xff\x6d\x14\x9f\xfb\xba\x31\xe7\x99\xe4\x90\x84\x94\x94\ \x94\xc8\xeb\x6b\xaf\x7e\x31\x9a\x6d\x85\x66\x93\x4e\x16\xf4\x79\ \xa1\x35\x59\xb1\xb2\xb4\xb0\xb9\xbe\xfc\xb3\x59\xc9\x2f\x65\xda\ \x8a\x8f\x54\xa7\x25\xbc\x32\x4e\xad\x43\x4f\x7b\x07\x46\x07\xfb\ \x50\x73\xaf\x47\x1c\x7f\x75\xb7\x8e\xbc\xe9\xee\x5f\x2b\xb2\x17\ \x98\x52\xf5\xaa\xed\x48\x0c\x41\x22\x21\x20\x21\x88\xd8\x0c\x86\ \xc1\xac\x0e\x43\x30\xe4\x41\x1b\x98\x00\xa2\x51\xb4\x36\x36\x61\ \x61\x61\x12\x97\xdb\xdc\x88\x4e\xbf\x8f\xb3\x46\x63\xba\x89\x65\ \x09\x24\x3d\x08\x03\x88\x22\x05\xdd\xd9\x8c\x5e\x0d\x7f\x20\x13\ \xca\x14\x0d\xa8\x68\x01\xd4\x14\x19\x85\x87\x10\xe2\x52\x11\x0a\ \xf0\x90\x36\x23\x27\x8d\x0f\x3b\x47\x72\x6d\xd6\xa2\xf4\x03\x7a\ \x46\x26\x57\x40\x88\x0b\x80\x8c\x48\x09\xe2\x74\x79\x69\x3d\x3c\ \xf7\x7d\xf2\x63\xbe\x4d\x5d\xac\xd5\xaa\xd3\x94\x9c\x4a\x11\x89\ \x46\x84\x68\x24\xc2\xff\x5e\xf5\x2d\xb8\xfa\x7f\xd4\xfe\x05\xde\ \x59\x81\xd8\xd5\x95\x4d\x17\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\x04\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\x1e\x75\ \x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\x0c\x2b\ \x14\x1e\x41\x65\x08\x00\x00\x00\x02\x62\x4b\x47\x44\x00\xff\x87\ \x8f\xcc\xbf\x00\x00\x01\x88\x49\x44\x41\x54\x18\x19\x45\xc1\x3f\ \x4f\x53\x51\x18\xc0\xe1\xdf\x7b\xce\x29\xfd\xa3\xa5\xd6\x56\x21\ \x48\x69\xda\x40\xec\x60\x42\xe2\xe2\x46\x4c\xfc\x0e\x7e\x08\x17\ \x37\x75\xf1\x1b\x99\x30\xe0\x60\x88\x71\x62\x30\x31\x62\x34\xb1\ \x40\x5a\x0b\x46\xb0\x85\xa2\xbd\xb4\xa5\xf6\xf6\x72\xcf\xab\xa6\ \x12\x9f\x47\xb8\x64\xc9\x3d\xac\xd6\xf2\x50\x0f\x5e\xb4\x08\x88\ \xf9\x6f\xa5\xf0\xfa\xc9\xfe\xbb\x5f\xa1\xfe\x33\x0a\x5b\xef\x5f\ \x3d\xab\x14\x99\x7a\xbe\xd6\x3a\x1c\xea\x48\xc7\x3a\xd1\x48\x23\ \x9d\xe8\x58\x47\x3a\xd4\xe6\xd1\xd3\xfb\x20\xa4\xb6\x77\x6f\x94\ \x85\xbf\x3c\x1e\x10\x0c\x02\x28\xdd\xaf\x77\x6b\x6e\x26\xe9\x4b\ \x01\x31\xa0\x18\x04\x50\xc0\x23\x58\x7c\x69\x26\xe9\xac\xd9\x95\ \x79\x52\x18\x40\xb9\x24\x28\x63\x9a\x62\x8d\x73\x7e\x4f\x45\x0a\ \x5c\x45\x10\xa6\x3c\xca\x80\x3e\x4d\xb5\x6a\x0c\xd7\xa5\xc1\x06\ \x21\x25\x94\x14\x19\x3c\x0b\xa4\xd9\x60\x9f\xac\xb8\xd8\xb9\xe8\ \xcc\x2f\x59\xe1\x23\x8e\x1d\x96\x49\xd0\x24\xe0\x84\x22\xb7\xa8\ \xc7\x99\x0b\x93\xf2\xd7\xe4\x88\x2e\xab\xcc\x93\xe5\x94\x0e\x49\ \x2a\xac\x72\x4a\x9b\x8c\x71\xea\xce\xed\x59\xbc\x64\x84\x3a\x96\ \x3e\x35\x1c\x7b\x7c\xa1\xc7\x4d\x16\xa8\xc7\x7d\xeb\x2e\x12\x45\ \x73\x48\x87\x7b\x2c\xd2\xe5\x04\x21\xcb\x6d\x86\xbc\x25\x4d\xce\ \xc4\x09\x33\xd1\x46\xbb\x4a\x99\xcf\x1c\xd0\xa6\xc0\x1c\x3f\xa9\ \xf3\x89\x32\x15\x0e\xda\xa1\xda\x38\x1a\xb4\x0b\x0f\x82\xd4\x1a\ \x55\x22\x42\x42\x66\xb9\x43\x91\x2d\xce\x83\x97\x8f\x8f\x3f\x58\ \xb4\xbb\xb3\xbd\x19\xa6\xfd\x5c\xe9\xca\x37\x59\x24\xc7\x31\x13\ \xdd\xea\x6c\xae\xaf\x3f\xfa\xfe\x06\x2f\x4c\x25\x4c\x31\xbd\x3c\ \xbb\x92\xcf\xa3\xbd\xde\xa0\x39\x6a\xf8\x1f\x44\xfc\xf1\x1b\x05\ \xb0\xb1\xa2\x56\x08\x4e\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x04\x0e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ \xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ \x12\x14\x17\x8c\x68\x16\x98\x00\x00\x03\x8e\x49\x44\x41\x54\x38\ \xcb\x4d\x8e\x5b\x4c\x9b\x65\x00\x86\xdf\xef\xfb\xfe\xf6\x6f\x4b\ \x4f\x6b\x29\x42\x39\x8f\x8d\xb0\x8c\x11\xad\x81\xad\x90\x11\xdd\ \x16\x06\x86\x45\x13\x33\xa3\x31\x31\x63\x1e\x61\x73\x26\x8b\x87\ \x18\x4f\x89\x17\x66\x17\x64\xcb\x12\x13\x8d\x17\xba\x78\x41\x62\ \xb2\xc5\x71\xb1\x6c\x03\x36\xb6\x0a\x09\x68\x6d\x44\x91\xb1\x60\ \x38\x15\x28\x07\x01\x5b\x7a\xfa\xfb\xff\xdf\xf7\x79\x31\x31\xbc\ \x57\xef\xc5\x9b\xe7\x7d\x48\xf0\x64\x23\x74\x55\x03\xc9\x50\x90\ \x2c\x43\xf4\x76\x06\x6a\x89\xe1\x68\x09\x7a\xde\xac\x1c\xfc\xfd\ \xbd\xcd\x53\x4d\x13\x71\xaf\x63\x6c\x61\x62\xf3\xfb\x96\xce\xda\ \x08\x6f\xba\xec\x87\xce\x7b\x28\xd0\xf5\xf6\x95\xd8\x04\x8b\x86\ \xe6\x71\x63\xe8\x47\xd8\x6d\x56\x22\x34\x60\x57\x85\x75\x77\x53\ \x47\xd5\xf5\xdd\xcb\x6b\xa7\x1d\xc3\xd3\x79\xae\x89\x85\x0a\xe5\ \x44\xe9\x21\x47\xad\xeb\x95\x58\xef\xa4\x52\x3a\x32\xdb\xcd\x80\ \x27\x2d\x80\x78\x67\x73\xf8\x26\xfb\xe9\xe1\x30\x16\xc2\x09\x0c\ \xdd\xbe\x8f\xb9\x07\x09\x56\xdf\x59\x7a\xd5\x51\xa9\x1c\x4e\x1d\ \xc8\x37\xd4\x8c\x41\xdc\x91\x65\x62\x1f\x9a\x47\xae\xce\xa5\x54\ \x7d\x17\x79\x5a\xdd\xca\xe5\x9b\x81\x9e\xa5\x86\x92\xae\x78\x4b\ \x91\x20\xc1\xb3\xf5\x20\xaa\xa4\x5c\x93\x82\x1a\xac\xd9\xd5\x40\ \xef\xab\x56\xc6\x29\x55\xa8\x62\xa6\xa4\xee\xca\x5f\xd8\xd3\x1b\ \xc5\x76\x62\x7b\xdd\xd1\xd2\xa9\x7f\x2a\xef\xca\x26\xf1\x15\xd9\ \x27\x95\x5c\x5e\x1a\xd4\x26\x21\x05\x80\xa4\xb9\x2c\xc5\x0d\xa4\ \x34\x09\xc6\x28\x31\x49\x86\xc8\x71\x17\xaa\xfb\x17\xa1\xa6\x05\ \x04\x23\x08\x9f\x78\x2c\x7e\xfe\xe2\x39\x09\xa2\xca\x06\xff\x20\ \x48\xe3\xd9\x00\x68\x9e\xa0\x52\x87\xa0\x9a\xe9\x88\xad\x21\x77\ \x47\xb1\x13\x61\x56\x14\xe2\x8c\x73\xd2\xfe\xe1\x03\xb8\x16\xb3\ \xd8\x2c\xb6\xc0\xbb\x98\x45\xce\xc6\xb2\xce\x34\x7f\xe2\xba\xac\ \x7b\xd8\x4d\x5a\xa5\x62\x8d\xed\x42\x72\x45\x17\x93\x43\x14\x36\ \x28\x23\xcd\xc1\xe4\x78\x9e\x97\xd6\xda\x37\x0c\xd1\xfa\xd1\x9f\ \xc4\xb1\x98\xc5\xf4\x91\x7c\xdc\x7a\xb9\x44\xec\xbd\x3c\x4d\xdd\ \xcb\x39\x4b\x7d\x96\xdf\x7d\x41\x1d\x3f\x36\xd6\x4d\x26\x68\xec\ \x5a\x25\xea\x3e\xd6\x71\xb2\xd7\xa0\xad\xd7\x32\x69\xbe\x64\xba\ \xe8\xc9\xb3\x22\xd0\xb3\x42\x7c\xd1\x0c\xd6\xda\x0a\x31\xf4\xd9\ \x3e\x61\x29\x73\xd2\x99\xf7\x0f\x8c\x9c\x5f\xad\x51\xfb\x8b\x2d\ \x45\xf6\x9c\xe8\x4a\xf4\x39\x40\x02\x2d\x41\x38\xb8\x13\x91\x3b\ \xeb\xd8\x42\x18\x00\xe8\x07\x03\x6d\x7d\xe5\xd2\x75\xb4\xe8\xb7\ \x65\x31\xd9\x6e\x27\x4b\x1b\x29\xf0\x24\x21\x6b\xc3\x7a\x9b\xbd\ \x10\xb7\x04\x40\x0d\x0d\xc2\xfb\x6b\x0d\xc8\x8b\x4f\xbd\x8a\x85\ \x30\x50\xf3\xf9\x12\xcc\x1e\x49\x39\x72\x62\x2b\x26\x8e\x06\x9f\ \x2d\x1f\xb0\x9b\x9c\x72\x4d\x5f\x12\xab\x89\x2d\x16\x9f\xd6\x6f\ \x7e\xf3\x52\xf5\x33\x53\x58\x25\xd5\x64\x56\x02\x9f\xa2\xe1\xb9\ \x2f\x40\x00\xa0\xf1\xf8\x61\x24\xa6\x6d\x58\x99\x5f\xc7\x9a\x16\ \x06\xe0\x36\x7f\x72\xaf\x39\x52\x50\xe2\xdc\x9f\xd1\x33\x7a\x2c\ \xb6\x6e\x5a\x09\xa3\xd3\x55\x41\xbe\x96\x42\xd2\x5c\x5a\x88\x82\ \x8e\x10\xc6\xdd\xe7\x1e\x01\x6a\xe9\x19\x3c\xde\x15\xc5\xe9\x77\ \x8f\x61\xb4\x7f\x86\xaa\xaa\x59\x84\xfa\x22\x57\xab\xf7\x57\x3e\ \x9f\xd5\x72\x46\x55\x45\x8d\x72\xe9\xc2\x97\x87\x74\x43\x1f\xcd\ \xf7\x79\xa9\xc2\x14\x61\xc4\x3d\x18\xfb\xe3\xde\x23\xc0\xce\x9c\ \x79\xe3\x2d\xe6\xf3\xf9\xf8\xcf\xe1\x5f\xbe\x6d\x3c\x78\xb0\xc3\ \x5f\x5c\xce\x8b\x8a\xfd\xbc\xad\xbd\xb5\x16\xc0\x94\x55\xb5\x90\ \x8c\x96\x95\xdb\x7b\xba\x5d\xfc\xfe\x42\xbc\xfe\xda\x29\x08\x66\ \x60\x23\xf1\x37\xc0\x44\x32\xad\xa7\xa0\x58\x29\x99\x5b\x98\x11\ \x00\x0c\x00\xc8\x19\x59\x94\x96\x16\xff\x7f\xb8\xd3\x80\x01\x30\ \x33\xc6\x2c\x9c\x73\x56\x50\xe0\x2b\x0b\x04\x02\x3f\xb8\x5c\xee\ \x3d\xb3\xb3\x73\x17\x46\x47\x47\x2e\xa9\xaa\x0a\x4d\xd3\x32\x00\ \x34\x00\x3a\x00\xc9\x76\x00\x4c\x00\x6c\x52\x4a\x07\xa5\xd4\x9b\ \x4c\xa6\xa4\x6a\x56\x87\x3d\x5e\xcf\x60\x28\x14\x1a\xe0\x9c\x3b\ \x39\xe7\xdb\x7b\xfe\x9f\x91\xfc\x17\xb9\x74\x8f\xb8\x3b\x01\x1d\ \xdc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ \x12\x1d\x10\xc3\xce\x38\x72\x00\x00\x02\x88\x49\x44\x41\x54\x38\ \xcb\x7d\xd3\x5f\x68\xcd\x61\x1c\xc7\xf1\xf7\xf3\xfb\xfd\x9e\xdf\ \xf9\xb3\xe1\xcc\x76\xc4\xb6\x46\x9a\xb2\x86\x49\x5a\x93\x38\x22\ \xe4\x62\x2d\xc6\x26\x7f\xd7\xb4\xdd\x68\x29\x8d\x5a\x4a\x8c\x18\ \xa5\x56\xb8\xd8\x86\x44\x49\x09\x0b\x29\x65\x4b\xb8\xd0\x2e\x36\ \x84\x0e\x93\x8d\x19\x33\x9d\x63\xff\xce\x39\x3b\xff\x7e\x8f\x8b\ \xad\xd5\x69\x87\xef\xe5\xf3\x7c\x9e\x57\x9f\x7a\xfa\x0a\xa5\x14\ \xc2\xbd\xf4\x4a\xa6\xe9\x3f\x10\x0a\x85\xf8\xe3\x58\x04\x4b\x76\ \xf3\xaf\xc9\x19\xed\xa3\xda\xff\x9c\x40\xfa\xbc\xa7\x6b\x33\x54\ \xb1\x98\x00\xf2\x9f\xed\xda\xb2\xd2\x73\xf4\xf8\x59\xfe\x37\x56\ \x3c\xcc\x82\x9f\xdb\x68\xac\xf0\x92\xf5\xc3\x02\x43\x7f\x3c\x01\ \x08\xd1\x5a\xb0\x72\x55\x49\x70\xd8\x47\xdc\xbd\x02\x67\xc1\x1e\ \xa2\x71\x8b\x48\x4c\x4d\x3d\x36\x0d\x8d\xea\xd5\x26\x9e\xdc\x00\ \xfb\x0f\x9e\xa5\x6c\xae\x97\xac\xae\xe0\x2b\x63\xf2\xfe\xb5\x2b\ \x63\x5e\x49\x9f\x2f\xcc\x4c\x5b\x1a\x8e\x59\x6e\xb2\x52\x25\xfd\ \xfe\xf0\x14\x50\x9c\xd3\xce\xba\xd9\x9f\xe8\xf7\x97\x73\xad\xa5\ \x89\xf0\x97\xfa\x58\x68\x63\x6b\xb9\x91\x50\x31\x16\x43\xd7\x34\ \x2c\xa5\x11\x89\x41\xfa\x0c\x1b\x63\xe3\x71\xe6\xa7\x7c\xa5\x6e\ \xfd\x00\x5b\x6b\xde\x30\xf8\xfb\x25\x2d\x0d\x9b\x69\x7e\xb7\xf3\ \xf3\xcd\xfa\xfb\xdf\x12\x01\x2b\x8e\xae\xeb\x98\x52\x32\x1e\x83\ \x99\x76\x1d\x8d\x30\xe7\x36\x75\x72\xe1\x46\x3f\x9f\x7a\x46\x69\ \xaa\x73\xd2\xf1\xc3\x46\xbb\x37\xf0\x0b\x20\x01\x50\x4a\x61\x68\ \x1a\x36\x39\x71\x1c\x89\xc3\xd1\xc2\x36\x7a\x7a\x87\xb8\x7d\xaf\ \x93\xa2\xec\x30\xbd\xdd\x41\x1e\xa6\x94\x22\x8d\x1e\xa6\x01\xa0\ \xd0\x75\x0d\x53\x4a\xec\x63\x3d\x14\x2e\xec\x63\xb9\xcb\xcb\xe6\ \xba\x37\x2c\x74\xf9\xc8\xb2\x39\x68\xcd\x78\x81\x2e\xc0\x90\xdf\ \xa7\x03\x1a\x60\x18\x3a\x4e\xbb\x49\x9e\x7a\xcf\xc1\xfc\x47\xec\ \x3b\x11\x24\x1a\x18\x61\x4d\x89\x87\x8e\xec\x8b\x38\x01\x21\x04\ \xd2\xb4\x25\x01\x34\x0d\x9b\x34\x49\x75\xd8\xa9\xca\x6d\xa6\xf1\ \x56\x2a\x9d\x1f\x86\x39\x59\xa1\xd8\xe0\x29\xc6\xdb\x6d\xc7\x02\ \x04\x60\x26\x03\x0c\x29\x71\xa5\xa5\x71\x29\xaf\x92\x97\x6f\x63\ \x5c\x7d\x30\xc2\x0e\x4f\x98\xec\xdc\xc5\x9c\xef\x2f\x23\xc5\xa9\ \xb0\x94\x02\x04\xa6\x69\x4e\x07\xa4\x6e\x70\xa4\xb0\x1b\x9f\xaf\ \x83\xda\xcb\x69\xe4\x66\x86\x29\x5d\x07\x4f\x44\x03\x76\x69\xa2\ \x0b\x85\xa5\x04\x0a\x85\x94\xc9\x1a\x18\x06\xca\x5d\xc4\xdb\x61\ \x17\x33\x1c\x77\x39\x54\xe2\x67\x50\x55\x62\xa5\x2e\xc3\x31\x99\ \x11\x42\x81\x12\xc8\x64\x0d\x74\x43\x47\x1a\x43\xcc\x71\x7c\xe6\ \x74\x4d\x0e\xf6\x8c\x72\xda\xc4\xa9\x84\x90\x98\xca\xca\x24\xdf\ \x28\x34\x6a\xeb\xce\x70\xec\xf0\x76\xba\xdc\x77\x18\x8f\x44\x81\ \x68\xd2\xc5\x12\x42\x4f\x00\x7a\xc7\x46\x86\x08\x05\x86\x89\xe6\ \xed\xe5\xfa\x60\x15\x0c\x7e\xfc\xe7\x56\x46\xe2\x31\x82\xa1\xd0\ \x00\xc0\x5f\x20\x50\xec\x78\x0e\xd2\x32\x80\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xae\x49\x44\ \x41\x54\x78\xda\x8d\x90\xbb\x8e\xd3\x40\x14\x40\xcf\x78\x1e\xb6\ \x43\xd8\x6c\xc4\xa6\x58\x68\xa1\x03\x21\xf1\x05\x20\xa8\x68\xa0\ \xa1\x82\x8e\x6f\x80\x0a\xd1\xd2\xf0\x09\x14\xf0\x1f\x34\xfb\x07\ \x34\x80\x28\x58\x21\x2d\xac\x28\x48\xd8\x0d\x4b\xec\xf8\x31\x97\ \x31\x96\x23\xa2\x18\x96\xd3\xcd\xbd\xd6\xf1\x99\x51\x22\x82\x9a\ \x5c\x79\x71\xde\xcd\x1e\x66\x59\xc6\xf7\xf4\x12\x5c\xbe\xcf\xa9\ \xe4\xf3\x47\xb2\xf7\xe4\xb9\x69\x4f\xfe\xe2\xf5\x9b\xb7\x78\xfc\ \xf4\x19\xff\xc3\xab\xbd\xcf\xbc\x7c\xbd\x7f\x17\x68\x05\x7c\x7b\ \x77\xf4\xf6\xfd\x88\x7b\xb7\x6f\x50\x4f\xae\x31\xb8\xfa\x80\xb2\ \xf6\x14\x95\xd0\xe1\x4c\x14\xce\x9e\x86\xba\x2a\xb1\xe5\x62\x17\ \xc0\xd0\xf2\x66\x7b\x67\xf7\xce\xc1\x74\xc9\x56\x3c\x26\x1d\x4d\ \xb8\x30\xb4\x7c\x99\x2d\xe9\x50\x0a\x46\x36\x62\x51\xb4\x92\x1f\ \xd3\xc3\x83\x4e\xb0\xc2\x57\x15\x3a\x8a\xf0\xd2\xfc\x0d\xce\x9d\ \x8d\x39\xc9\x6b\x3a\x6c\xa8\x88\xa5\x15\x58\x6b\xd9\x14\xf8\x1a\ \xad\x35\x2e\x2c\xf3\x0a\xb6\x12\x4d\xe9\x23\x44\xa0\x41\x80\x41\ \x98\x55\x35\x18\xeb\x36\x05\x22\x82\x09\x05\xb1\x6d\xc7\x45\x0d\ \x3b\xa1\x62\x9e\xad\x2a\xc2\x5e\x85\x4a\x09\x35\x3d\x02\x90\x50\ \x10\x35\x05\x7f\x4c\x60\x98\xe8\x20\x13\x3a\x12\x03\xa6\xef\x0a\ \x11\x60\x8c\x0e\x99\x6e\x4d\x1b\x1b\x85\xf3\x82\xf7\xdd\x83\x2a\ \xac\x8b\x7b\x04\xbf\xf3\x1d\xc3\x34\x59\x13\x28\x25\x24\x4a\x21\ \x1e\x7c\x73\x06\xdc\xa6\xa0\xcd\xda\x1e\x8f\x39\x93\xb6\xcb\x35\ \x79\x10\x40\xa8\x10\x01\x54\x10\xf4\xbc\x81\xd5\x86\x34\x49\x18\ \xc4\x31\x7d\x68\xd5\x08\x42\x09\x82\xb5\x7d\x05\xc6\x10\x89\x90\ \xc6\x8e\x1e\x56\xd7\x21\x48\x6c\x5f\x81\x36\x9a\x3c\x5f\x34\x0f\ \xf9\x77\xc1\xea\x5b\xbb\x29\x40\x45\xe4\xcb\x9c\x65\x51\x72\x1a\ \x4a\xe9\x35\xc1\xa7\x93\xf9\x11\xd9\xcf\x63\xa6\xb3\x63\x3e\x7c\ \xdc\xe7\x5f\x14\x75\xc5\x22\xcb\xbe\x02\xfc\x02\xce\x8e\x94\x0e\ \x4b\x04\xe7\x86\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\x5a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ \x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0c\x1e\ \x10\x24\x17\x29\x92\x3e\x5e\x00\x00\x02\xda\x49\x44\x41\x54\x38\ \xcb\x85\x91\x6b\x68\x53\x77\x18\xc6\x7f\xff\x73\x92\xe6\xe4\xd6\ \xc6\x76\xb6\xcd\x22\x5d\x9a\x6a\xd3\x75\xb8\x3a\x2f\x73\x08\xf3\ \xf6\x71\x6a\xf1\xcb\xa0\xd3\x2a\x4e\x36\x90\xae\x0e\x44\x90\x51\ \x44\x44\x05\x41\xbc\xd4\x0f\xb2\xb9\x82\x83\x6d\xf4\x83\x28\x88\ \xa8\x14\x8b\x46\xa5\xa2\xeb\x5a\x34\xf1\x96\xd4\xac\xd5\xb4\x5d\ \xbc\xf4\x92\xd8\x6a\x93\x9c\x9c\x73\xf6\xc1\x45\xac\x52\x7d\xbe\ \x3d\xef\x0b\x3f\x9e\xf7\x7d\x60\x0a\x1d\x02\xcf\x01\xb8\x7c\x08\ \xfc\xaf\xcf\x9b\xc1\x7d\x10\x2e\x35\x43\x35\x80\x34\x15\xc0\x0e\ \x6b\x15\x58\xac\x40\xe0\xd8\xff\x90\xdf\xc0\xad\x40\x40\x81\x25\ \x76\xd8\xf4\x4e\x80\x15\xf6\xd9\xe0\x80\x05\xdc\x12\x04\xfe\x80\ \x65\x12\x04\x2c\xe0\xb7\x41\xab\x02\x5b\x00\x04\xef\xd0\x71\x40\ \x87\xfd\x06\x6c\xcd\xcd\x04\xb4\xca\xb0\xfe\x6b\xd0\xde\x0b\x00\ \x38\x07\x1f\x66\xe0\x0e\xe0\x02\xd4\x3c\xf8\xec\xab\x97\x9e\xb7\ \x4e\xd8\x3c\xdf\x24\x36\xcf\x93\x95\x9c\xef\x00\xb7\x19\x2e\xda\ \xc0\x65\x83\xb0\x03\xcc\x0a\xb4\x77\x40\xd5\x6b\x89\x5e\x6a\xc7\ \xea\xea\x6a\xab\xab\xf4\x6c\x45\x65\x75\x99\x86\xfa\x4b\x45\xd3\ \xd1\x3d\x2a\x04\x74\xf0\x4b\xd0\x7a\x6c\x8e\xb2\xd7\x3b\x2a\xda\ \xec\x13\x86\x67\xc1\x50\x2a\x9e\xaf\xb3\xbc\x06\xc2\xa6\x1c\xa0\ \xb0\x74\xc6\x4f\x73\x17\x2d\xf5\xa6\xb2\x12\xa9\xf4\x58\xc3\xa3\ \x02\xb3\xcb\x9d\x54\xfd\x02\x5a\xcf\xfb\xe4\xef\xe3\x16\x73\xaf\ \x7d\xa6\xad\xa4\x3f\xbf\x8c\x44\xd7\x2d\x77\x5d\x7f\xaa\x11\x68\ \x7c\x15\xbf\xfd\x70\x43\x60\x3c\x72\xc1\x98\x18\xb8\x69\x3c\x0d\ \xb5\x19\x87\x1b\x96\xd7\x46\xa0\x3e\x02\xf2\x8f\x5f\x16\xcc\xda\ \xb3\x75\x95\x31\xfe\x4f\x87\xf1\xfc\x61\x97\xb1\x6d\xc5\xec\x70\ \x2f\x98\x26\xfd\xa0\x28\xdf\x76\x4b\xcf\xa4\xd0\xd3\xe3\x48\xe9\ \xb1\x8c\xac\xbe\xb8\xe1\x87\x3f\xfd\xa0\x15\x97\x94\x26\xd7\xad\ \xac\x55\xe5\x3c\x07\xb2\xc9\xc4\x37\x1b\xea\x7a\x7d\x90\x9d\x04\ \xf8\xfb\xea\x95\xdd\x89\xc1\x48\x26\x3b\xdc\x47\xac\x27\x78\xba\ \xb1\xe5\x7a\x7f\x6e\xb7\xfd\x44\xe4\xc9\xe8\x40\xdf\xaf\xea\x78\ \x9c\xf4\xf0\x03\xda\xda\xcf\x04\xdf\x6a\xa1\xbd\xbb\x7f\xe8\xf1\ \x84\x65\xa4\x33\x18\x66\x38\x65\x8e\xbd\x59\xe7\xd0\xd3\x78\x57\ \x32\x1e\xe3\x61\x34\x4c\x77\xe7\x35\xc7\xab\x16\x56\xd4\x6e\x34\ \x7f\xf7\xed\x9a\x8d\x15\xe5\x9e\x4d\xd3\x0b\x2d\x73\x06\xa3\xb7\ \x29\xff\x64\xa1\x9a\x4c\x24\xce\xde\x0d\x85\x9a\x9d\xcf\xc3\x35\ \x33\x6a\x96\x36\x3a\xc7\xc2\x3e\x73\xfe\x07\xf2\xbf\xb1\x3e\x4e\ \xfd\xfe\x73\xa6\x6e\xd7\x89\x07\x8f\xae\xb4\x34\x99\xea\xd7\xd5\ \xef\xfc\x62\xd1\xbc\x26\xa7\xc3\x02\x42\x50\x55\xe4\x01\x81\xb9\ \xd8\x51\xb0\xda\x3a\xad\xa4\x56\x8d\x22\x0a\xbd\x95\x22\xdd\x13\ \x03\x75\x82\xc1\xfb\xf7\x18\x88\x46\xf3\x9c\xae\xa2\x4a\xc3\x5b\ \x75\xc4\xe4\x76\x4f\x5f\x0f\xa0\x66\x75\x24\xc0\xc8\x45\x13\x02\ \x4d\x43\x12\x05\x1f\x91\xd1\x65\x74\xa7\x07\x64\x89\x11\xcd\x4a\ \xf1\xa7\xcb\x78\x96\x18\x46\xb1\xda\x4a\xc4\x91\x96\x53\x3f\x7c\ \xec\xf7\xae\xb2\xdb\x94\x99\x86\x61\x14\x6a\xba\x21\x49\x42\xa4\ \x85\xe0\xf1\x68\x72\x2c\xd4\x13\xec\xea\x2e\xf3\xf9\x3e\xb7\x58\ \xf2\xca\x65\x59\x38\x75\xdd\xd0\xd4\xac\xf6\x64\x64\x68\x24\x14\ \xfc\xab\xf3\xe4\x7f\x6e\x1a\x12\x34\xb5\x87\x20\xf1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\x12\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd8\x01\x03\x13\x16\x15\x72\x49\xfe\xa9\x00\x00\x06\x9f\x49\x44\ \x41\x54\x78\xda\xed\x97\x6b\x6c\x5c\xc5\x15\xc7\xff\x33\x73\x5f\ \xfb\xb6\x1d\xbf\xed\x8d\xed\x18\x97\x10\x1c\x37\xc5\x09\x09\x52\ \x14\xc9\x60\x08\x04\xd3\x82\x9a\x22\x55\x72\x50\x53\x90\xa0\x05\ \xf5\xf1\x21\x54\xa2\x6a\x1b\xb5\x15\xa5\x2a\xa5\x91\xda\x46\x48\ \xe9\x07\x42\xf3\x05\x14\xd1\x8a\x87\x70\x02\x08\xa5\x2a\x6a\x50\ \x22\x14\x92\x50\xa2\xa4\x06\xc7\xaf\xdd\xb5\x77\xed\x7d\xef\xde\ \xc7\xcc\xf4\xde\x9b\x55\x64\x21\xcb\xb2\x11\x6a\xbf\xf0\xdb\x3d\ \x33\x2b\xdd\xa3\x39\xff\x7b\xfe\x67\xb5\x7b\xf1\x25\xff\x6f\x08\ \xbe\x60\xee\xdf\xd2\x60\x10\xe1\x7c\x8b\xb3\x40\xbf\x23\x49\xd6\ \xe1\xfc\xb5\x93\x17\xe6\x2f\xfe\x4f\x04\xdc\xbb\xa3\xbd\x47\xe7\ \xa5\x13\xed\xcc\xee\xcb\x8a\x10\xf2\x0e\x03\x08\x11\x9c\x8b\xa7\ \xde\x38\x97\xfa\x2d\x96\x81\xe2\x0b\x84\x13\xeb\x05\xae\xd3\x3e\ \xa9\x52\xd4\x69\x1c\x1b\xba\xe3\xa0\x1e\x04\xcf\xec\xdd\xde\xb9\ \x1d\xcb\xa0\x60\x05\x5e\x79\xee\xc7\x64\x2e\x35\xff\x1d\x42\xc8\ \xfe\x48\x34\x16\x0f\x47\x62\x49\x55\xd3\x8e\x29\x8a\xfa\xfc\x9d\ \x0f\x3f\xc5\xb1\x84\xbb\xb6\x36\xae\x17\x70\x76\xa9\xc1\x08\xfa\ \x6f\xd9\x8a\x5b\xb7\xed\x44\xf7\x8d\xfd\x38\xf5\xee\xbb\x38\xfa\ \xc2\x51\x38\x0e\xdf\x0b\xe0\xfd\x55\x0b\x38\xfe\x87\x27\xdd\xe2\ \x89\x17\x85\x94\xa3\x86\xa6\x23\x1c\xad\xc3\xba\xe6\x96\x6e\xc6\ \x94\x1d\xf9\xec\xc2\xdd\xaf\x3f\xff\xb3\x07\x46\x1e\xfb\x95\x83\ \x1a\x94\xa1\x3b\x12\x8d\xe2\x07\xdf\x7d\x0c\x03\x03\x5b\xc1\x02\ \x31\x10\xaa\xe2\xce\x7b\x46\x90\x4a\x26\x71\xe2\xc4\xc9\x86\x35\ \x75\x20\x9d\x4c\x8c\x9a\xa6\x39\x0a\x4a\xa1\x69\x12\xdc\x71\xe0\ \x58\x16\xa0\x02\x82\x8b\x91\x72\xa1\xf4\x3d\x00\x7f\xbc\x3e\x7c\ \x7b\x46\x9a\x29\x75\xd0\xbf\xf1\x26\x50\xc5\x00\xd5\xc3\xbe\x00\ \x29\x1c\xec\xde\x3d\x8c\xf1\xf1\xf1\x56\x9c\x9d\x5d\xfd\x0c\x58\ \x96\xb5\xaf\x7f\xf3\x26\xdc\x77\xff\x37\xd0\xd6\x7d\x03\x32\xb9\ \x3c\x0a\xe5\x0a\x4c\xab\x8a\x42\x7e\x11\xd5\x4a\x79\x14\x4b\xb8\ \x7d\xd7\xd0\xec\xed\xdb\x77\x80\x10\x0a\x4f\x34\xf1\x8f\x96\x9e\ \x5a\xd4\xc7\x22\x78\x64\x74\xef\xe4\x9a\x3a\x40\x15\xa5\x7b\xcb\ \xc0\x4d\x50\xc2\x4d\xd8\x15\xef\x05\x65\x9a\x7f\xb0\xe4\x36\x0a\ \xe9\x24\xde\xfc\xfb\x2b\x5d\x58\x02\x63\xe4\x5f\x11\x25\xf0\x4f\ \x29\xc4\x4e\x2f\x47\x58\x25\x78\x08\xbb\x02\xe9\x86\x46\xc5\xb1\ \x35\x7d\x0b\x22\xe1\x90\x04\x65\x20\x4c\x01\x21\x04\x70\xc3\xff\ \x4c\x19\x42\xae\xd7\xcd\xad\xcd\xec\xe2\xeb\x7f\xd2\x50\xa3\x77\ \xd7\x43\x92\x58\x95\x03\xd2\x2a\x43\x58\x15\xf0\x6a\x1e\xbc\x92\ \x85\x30\x0b\xb8\x3a\x31\x2e\x9f\x78\xfa\x97\xc9\x55\x0b\xb8\xf0\ \xea\xa1\xde\x2d\x03\x1b\xe3\x40\x0d\x59\x5b\x84\x00\xa4\x84\xc7\ \x57\x6e\x58\xdf\x28\xb9\xbd\x01\x4b\x68\xba\xe3\x89\xd3\x66\x61\ \xf1\xa4\xb4\x4a\xae\x80\x9c\x2f\xc2\x29\x65\x71\xf4\xf8\x4b\x44\ \x72\xce\x57\x2d\xc0\x88\xc4\x26\xc2\x91\x70\x09\x52\xc0\x0f\xc8\ \x6b\xbb\xb0\x01\xc9\x7d\x5f\x03\xba\x36\x1e\xed\xe9\xbb\x84\xcf\ \x90\x48\x25\xae\x14\x33\x49\x48\xaf\x0b\xe5\x3c\x26\x3f\x19\x47\ \x72\x66\x0a\x01\xc9\xa3\xab\x16\xd0\x37\xb4\x9f\x13\x61\xff\x14\ \xdc\x86\x74\xaa\x20\x5e\x61\x6e\x41\xba\xe1\xef\x76\x19\x9a\xae\ \xfd\xbc\x6b\x60\x04\x9f\xa5\xa3\xb3\xab\xd9\x84\x8a\xd4\xec\x0c\ \xe6\xd2\x19\xac\x6b\xeb\x82\xe2\x58\x08\x12\xb4\xac\x69\x08\x1b\ \xeb\xa3\x47\x4c\xcb\x7c\xdc\xf5\x70\x80\x13\x79\x6d\x08\x09\x81\ \xb0\x2d\xaf\xb5\x09\x45\x53\x8e\xc3\x65\x6c\x6c\xac\xd1\x30\x8c\ \xa1\xf5\xf6\xc7\xed\x11\x9d\xec\xa4\xc1\xe8\x03\x0d\x11\x0d\x82\ \xd7\x83\x80\x20\x97\x2b\x41\x97\x0e\xfa\x6f\xfe\xda\x93\x3f\xfa\ \xc5\xe3\xb7\x16\x8d\xf8\x84\xe4\xce\x9b\x43\x77\x0c\x2f\xac\x38\ \x84\xd1\x6d\xfb\x24\xe7\xce\xd3\xbc\x5a\x04\xaf\xe4\x6b\x43\x95\ \x83\x53\x5e\x44\x26\x93\xf9\xcb\xba\xc1\x6f\x5b\xa9\xb7\x9e\x7d\ \xf8\xe6\x0d\xad\xe3\x83\x83\x83\x2f\xab\xc1\xba\x43\x44\x09\xec\ \x25\x84\x31\x48\x09\x52\x1b\x9e\xc5\xf9\x04\x82\x84\x20\x9f\x59\ \x18\x6e\xe9\xec\xf9\xb5\x9b\x7b\xac\x2f\x52\xf8\x34\xf5\xf6\xef\ \x47\x56\xea\x80\xcf\x54\x29\x30\x16\x12\x0b\x68\x8a\x71\x50\xa6\ \x40\x4a\x89\x74\x36\x8f\xf1\x39\xf3\x6c\xea\x9d\x43\xb7\x31\x23\ \x7a\x84\x12\x4a\x14\x45\x81\x54\x03\xa0\x5e\x87\x5c\xb1\x90\x00\ \x0d\xc6\xfc\xb9\x49\x8d\x7f\x04\x0d\x40\x21\x3d\x8b\xc4\x74\x02\ \x8d\xbd\x83\x80\x62\x44\xa9\x11\xfb\xeb\xfc\xa9\xc3\x71\x8a\x15\ \xd8\x76\xcf\xbe\x9c\x8c\xc4\xad\x89\x74\x15\x1f\x4f\x24\x71\xc9\ \x8d\x05\xdb\xc0\x8d\x1b\x37\xcd\x53\x3d\xfc\x10\x51\x75\x22\x04\ \x87\x87\x94\x5e\x08\x50\x3d\x04\xa2\x07\x20\xfd\x99\xb1\x31\x33\ \x3d\x03\x4b\x32\x54\x2d\x07\x53\x57\xce\xc3\x43\x72\x0e\xaa\x1a\ \x75\x20\x74\xf7\x8a\x02\x12\xff\x7e\xaf\xae\xa3\x23\xae\x46\x1b\ \x3b\x50\xa8\x08\x40\x8f\xa2\xb5\xad\x13\x9a\xa6\x37\x81\xd0\x11\ \xaf\x23\x80\x84\x10\x02\x84\x69\xbe\x00\x21\x1c\x6f\xf7\x83\x0b\ \x8e\xcb\x97\x2f\xc3\x14\x14\x16\xd1\xf0\xd1\x99\x7f\xf8\xb9\xc2\ \xbb\xee\xb7\x49\xb9\x6f\x59\x0b\x26\x27\xd3\xd4\xe4\xce\xb0\xa5\ \xb2\x9f\x68\x76\x82\x70\xee\x80\x10\x02\x29\x24\x24\x51\x60\xb4\ \x6f\x7e\x91\x66\xf5\x98\xcc\x4d\xc3\x71\x38\x2a\x95\x0a\x24\xd5\ \x00\x47\xc0\x87\x30\x3f\x3f\x9b\x49\x63\xce\xb5\x4c\x82\x80\x29\ \x2a\x7a\x07\x87\xfc\x5c\xce\x05\x40\xa4\x1b\x64\x88\x60\x09\x17\ \x2e\x4d\x36\x2b\x94\x3d\x6a\xe8\xda\x23\x9a\xc6\xd6\x7b\x87\xa8\ \x0a\x45\x69\x61\x16\xc5\x5c\x06\x9a\x11\x42\x43\x5b\x37\x02\xc1\ \xa0\xef\xb7\x63\x5b\x28\x95\x0a\xe0\x42\xa2\x34\xff\x29\xb4\xe2\ \x34\x08\x91\x20\x4c\x85\x14\x1c\x8e\x59\xf1\x7d\xaf\x9a\x16\x9a\ \x3b\x3a\x61\x6c\xb8\x0d\x46\x20\x84\xc4\x87\xef\xc8\x7a\x4d\x9c\ \x4f\x2d\xf2\xdf\x5c\x17\xf0\xf6\xa9\x0b\xfb\x5b\x5b\xea\xfe\xdc\ \x50\x17\x0e\x18\xba\xea\x16\x66\xa0\x94\x00\xfe\x9b\x40\x2e\xf3\ \xf7\xc9\xb3\x80\x0b\xdf\x02\xef\xc7\x09\xd3\x53\xd3\x25\xc6\x10\ \xa0\x8c\x51\xbf\x63\xd2\xbf\x26\x1d\x9b\x17\x2d\xcb\x49\x55\xab\ \xd6\x7f\x72\xd9\xc2\xe9\x8b\x67\xce\x8d\xbd\xf1\x56\xfa\x83\xf7\ \x3f\x78\xce\xf6\xcf\x3c\x7d\xf6\xca\x26\x4a\xe9\xb9\xce\xf6\x06\ \x55\x55\x19\x02\x86\x86\xda\x01\xfe\xbe\x12\x9c\x0b\xcf\x06\x3f\ \xb7\x58\xac\xfe\xee\xfb\x8f\x1e\x7e\xa6\xa5\xc9\x08\xd4\x45\x99\ \x5e\x2e\x73\x7b\x26\x51\xa9\x2c\x64\x4b\x95\x74\x6a\xde\x9c\x4e\ \xe5\x78\xa9\xf4\x37\x89\x25\x90\x83\x07\x5f\xc6\x9e\xaf\x0f\x1e\ \x6a\xa8\x0f\xfd\x50\xd7\x54\xc4\xa2\x41\xef\xce\xaf\x4f\xf6\x8a\ \xf5\x6b\x39\xa6\x65\x7b\x42\x3c\x11\x53\xc9\x54\xb6\x67\xcb\xe6\ \x6e\x8e\x55\x42\xef\xda\xf3\xd5\x90\x7b\xd7\x0f\x12\x10\xff\x10\ \x42\xe0\xdf\x91\x10\xb2\xd6\xc2\x95\xc3\xb7\x81\x0b\xd4\x22\xee\ \xda\xb8\x03\x6b\x80\x56\x4d\x3e\xa4\x28\xac\x4d\x02\xe0\x42\xf8\ \x9e\x5a\xb6\xdf\xd2\x55\x85\x10\x7e\x61\x5f\x0c\x40\xbc\xd7\x37\ \xb1\x06\x94\xab\x33\xe9\xab\x5c\xf0\xcb\x5d\x9d\x8d\x7d\xde\xec\ \x58\x96\xed\x77\x40\x53\x59\x6d\xf0\x96\x47\xd6\x56\xc7\x11\xd7\ \x3b\x37\x97\xce\x67\xdc\x38\xb3\xe6\x07\x93\x67\x0f\xbf\x16\x66\ \x54\x19\xea\xed\x69\x19\x5e\x57\x1f\xbe\x25\x1c\xd2\x7b\x5c\x31\ \x75\x94\x10\x4d\x48\x30\x21\x04\xf1\x3d\x06\xe0\x6a\x94\x12\xd7\ \x86\xdb\x5d\xf2\xb6\xcd\xa7\x4b\x65\xf3\xfc\x27\x57\xe7\x4e\x65\ \x16\x4b\x63\x8a\xa9\x25\x0f\x1c\xd8\xfd\xf9\x9f\x8c\x8e\x1c\x7d\ \x8f\xd8\xdc\xd4\xb9\x70\xa2\x52\xca\x88\xed\xf0\x88\x90\x52\x25\ \x00\xf5\x0a\x53\x10\x87\x32\x5a\x54\x18\x2b\xb8\x5a\xf2\xc2\xb2\ \xab\x99\x54\x50\x1c\x3c\x38\x84\x2f\xf9\x3c\xfc\x17\xd3\x96\x9e\ \xac\xde\x63\x08\x54\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x9e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x1b\x49\x44\ \x41\x54\x78\xda\x7d\xd1\x4f\x48\x14\x51\x00\xc7\xf1\xef\x9b\xf7\ \xe6\x9f\x9a\xba\xea\x96\x66\x50\x87\x82\x82\x22\xf0\xa0\x75\x08\ \x2a\x85\x40\x32\xf1\xd0\x45\xbb\x75\x0e\xf5\xd2\x25\x0a\x3c\x75\ \x8f\x8e\x9d\x0c\xba\x75\x50\xea\xe4\xa1\xa2\x53\x1d\x54\x84\xb2\ \x32\x63\xc1\x64\x3b\xe4\xfa\x27\x75\x76\xd7\xd9\xf7\xda\xb7\x41\ \xec\xb0\x5b\x1f\x18\x06\x86\xe1\x3b\xbf\x99\x11\xc6\x18\x44\xfa\ \xdc\x93\xa3\x5e\xee\x76\x14\x45\x6c\x86\xa7\xe0\xec\x18\x35\x1a\ \xb7\x48\x0d\xcc\x71\xb5\xef\x38\x99\x6c\x96\xf9\x85\x8d\x17\xfa\ \xfe\xe2\x90\xa2\x42\x9f\xbc\xdc\x3f\xc0\xdd\x07\x0f\xa9\x27\x36\ \x07\x8c\x2d\x0d\x32\x72\xe6\x06\xa3\x5d\xa3\xbc\x69\x7e\x45\x7b\ \xeb\xcb\xeb\xe2\xa9\xb8\xa3\xb0\x7e\x7e\xdc\xfa\xb0\xdc\xc2\xcd\ \xc1\x2b\x94\xd2\x3d\x34\x9c\xbf\xc5\x41\x49\x53\x8c\x0d\xd6\xee\ \xe1\xd7\x14\x2f\xac\x33\x97\x9d\x65\xa4\x7d\x80\xf5\xec\x5b\xa2\ \x78\x05\x91\x17\x93\x8a\x3f\x16\x5b\x3b\xba\x86\xd7\x36\x0a\x34\ \xfb\x29\xc2\x96\x34\xdd\x4d\x2e\xeb\xb9\x02\xd6\x5e\x7a\x87\xa9\ \xce\x29\xc6\xfb\xc6\xb1\x7a\x8f\xf4\x63\xb5\x7d\x6a\xeb\x72\xa8\ \xa2\xe3\x18\xe9\x38\x68\xe3\x94\x9f\x0e\xed\x87\x7c\x7c\x57\xd1\ \xa8\x4f\x30\xf1\x75\x82\xd3\xcf\x05\xef\xd6\x66\xb8\x37\x7b\x91\ \x4b\x33\x82\xcd\xf4\xe6\x5a\x32\xa0\x4b\x48\x29\xf1\x5c\x97\x7c\ \xec\x10\x94\xcf\xbe\xe7\xd2\xb9\x33\x48\xe0\x1f\x23\x13\xc2\x5e\ \x09\xb2\x21\xbc\xf7\x00\x8f\x47\x89\x80\xfd\x23\xca\x71\xec\x53\ \x2b\x47\xb1\x24\xe8\xb0\x2b\x94\x4f\xcf\x97\x69\xc2\xdd\x3e\xae\ \xcd\x8f\xf2\xec\x57\x86\x70\x69\x68\xd5\x0c\x9b\xc7\x8a\x04\x83\ \x94\x8e\x5d\x50\x75\x05\x9a\x02\x59\x8e\x75\xd3\xbb\x3a\x8d\xe5\ \x08\x58\x59\x5e\xf8\x0e\x90\x08\x38\x80\x52\x92\x86\xc0\xa3\x9a\ \xaf\x04\x9e\x36\x68\x4d\x85\x10\x02\xd7\xf3\xa9\x0d\x54\xe6\x7b\ \x34\x85\x01\xd5\x84\x30\x04\x42\x60\x34\x68\x40\x00\x5e\xbd\x80\ \x72\x5d\x5a\x53\x29\x1a\x43\x9f\x24\x3b\x5b\x00\x06\x6d\x0c\x20\ \xca\x01\xaf\x36\xe0\x4a\x45\x18\x04\x34\xf8\x3e\xf5\x48\x61\x03\ \x02\x83\xc1\x75\xeb\x2d\x50\x0a\xc7\x18\x42\xdf\x23\x29\xf9\x3a\ \x18\x81\x5b\x6f\x81\x54\x92\x7c\x7e\xdf\x7e\xc8\x7f\x07\xfe\xde\ \xeb\xd6\x06\x10\x0e\xf9\x42\x9e\x42\xf1\x80\x84\xba\x4b\x64\x22\ \x90\xd9\xdd\xd9\x22\xda\xdb\x66\x23\xb7\xcd\xe7\xd5\x6f\xfc\x4f\ \xb1\x14\xb3\x1f\x45\x3f\x00\x7e\x03\xd0\x4f\xb5\x1d\xf3\xfe\x36\ \xa3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x5f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xdc\x49\x44\ \x41\x54\x38\x8d\xa5\x53\x4d\x6b\x13\x51\x14\x3d\xf7\xa5\xf3\xc1\ \x64\x66\x60\x5a\x5a\x4b\xfd\x28\x96\x66\x51\xb1\xc5\x56\x02\x82\ \x74\x11\xc4\x65\xdd\xfa\x13\x8a\xb8\x70\xe9\x4a\x14\x7f\x41\x57\ \x2e\x0a\x82\xe0\x4a\xb2\xad\xae\x84\x86\x22\x88\x46\xe2\x47\xc1\ \xd8\x42\x95\x68\x28\xd1\x36\xe9\x64\xd2\x24\xf3\xf5\xde\x73\x65\ \x6a\xed\x34\x28\xde\xdd\xbd\xe7\x70\xee\xb9\xef\x71\x48\x4a\x89\ \xff\xa9\x81\x7f\x21\xd3\x02\x9d\xd4\xf4\xd4\x05\xdb\x31\x8d\x1f\ \xcb\x6e\x1e\x00\x28\xc9\x01\xe5\x48\x87\x89\x99\xb3\xd3\xa3\xf3\ \x63\xe3\x43\xf3\xce\x88\x75\xde\xb1\xec\x53\x43\xb6\xa3\x0d\xa6\ \x1d\xbc\x7a\x51\x7e\xb3\xb2\x58\xc8\x1e\xeb\x60\xf6\xda\xf8\xe2\ \x95\x4b\xb9\x25\x06\x05\x7e\x10\xa1\xe3\x07\xe8\xb4\x7c\x7c\xa9\ \x79\x58\x6f\xd5\x50\xa9\x7e\x6b\xf4\x3d\x41\xb1\x14\xac\xbe\x7d\ \x87\x46\xe8\xa2\x19\x37\xe1\x86\x4d\x08\x2e\x02\x44\xf8\xc8\x38\ \x6d\x29\x6d\xe6\xf5\x15\xf0\x29\x50\x36\xbf\x57\x5e\xfb\x6a\x54\ \x80\x86\xf7\x50\xf1\x01\x6d\x7c\x92\xf7\x65\x3c\xf9\xe4\xc4\x65\ \xaf\xd4\xb9\xd3\x57\xc0\x1e\xb6\x42\xb5\x50\x2f\x76\x1f\x87\xb7\ \xff\xc4\x4c\xd2\x11\x30\x4e\x7d\x05\x0c\xa6\x33\x22\x50\x12\xa6\ \xa5\x4c\xa6\xa7\xe2\x1e\xc6\x92\x48\x9c\x4b\x76\x0c\x84\x38\x8c\ \x28\x12\x07\x3f\x97\xc8\x6a\x86\x5d\x70\xc1\x13\x05\xf6\xa2\x7d\ \x74\xa2\x6e\xaf\x4f\x3c\xa1\x11\xb4\xc1\xa5\x38\x34\xcb\xed\x90\ \x59\x5d\x43\xa6\xbe\xa1\x4e\x86\xf1\xc1\xde\x44\x07\x6e\xd0\x42\ \x2c\xe2\x5e\x9f\x79\x40\xd7\x47\xb7\xe7\xaa\xe9\x09\x94\x54\x23\ \x7c\xe8\x7f\xf6\xb5\x23\x0e\xe6\xf2\x34\xcc\xce\xe1\xde\x7e\x05\ \xd3\xc1\x06\x46\xe2\x1d\xda\xfa\x85\x05\xbb\xc8\x96\xbf\x96\x2c\ \x63\x96\xc1\x1a\xc3\x4b\x4f\x13\x37\x8f\x08\xd4\xb7\xf1\x74\x61\ \xe6\x6a\xb6\x3c\x55\x84\xb7\xee\xc6\xed\x48\xde\x05\x00\x22\x32\ \x00\x2c\xd7\x32\x28\x8a\x3d\xb2\xf9\x2e\xdf\x04\xd0\x22\x22\x26\ \xa5\x14\xbd\x2c\x9c\xbe\xa5\x5e\x4c\x4f\x89\x1b\x03\x67\x10\xd6\ \x1e\xf1\x67\xf5\x3c\x9e\x4b\x29\xfd\xc4\x97\xfc\xad\x0e\x85\x89\ \x88\x52\x00\x08\x00\x97\x7f\x99\xf3\x9f\xf1\xc3\xc9\xfa\x1d\x76\ \x03\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\xba\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ \x01\xcb\xc7\xa4\xb9\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\ \xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x06\x2c\x49\x44\x41\x54\x78\ \xda\x85\x57\x4b\x6f\x5d\x35\x10\xfe\x6c\x9f\x73\xef\xcd\x0d\x6d\ \x4a\x13\xa0\xb4\x85\x22\xa4\x0a\x15\x54\x45\xac\x10\x12\x08\x84\ \xd4\x05\x88\x25\x0b\x24\xfe\x01\xac\xf8\x01\xa0\xee\x58\xb1\x62\ \xcb\x0a\x21\xf1\x03\x50\x25\xda\x45\xc5\x86\x3d\x0b\xba\x80\x4a\ \x05\xa1\xf0\x08\xaf\xa4\x49\x7b\x1f\xe7\xd8\x1e\x66\xc6\x76\x7d\ \x4a\x6f\x84\x73\x27\x33\xb6\xe7\x7a\xbe\xf9\x66\xec\x28\xee\xf4\ \xe9\xd3\x38\x3c\x3c\xc4\x60\x4c\x58\x36\x58\x46\x49\x5c\x03\x9c\ \x62\xf1\x2d\x0b\x6b\x88\xb8\x2c\x36\x8b\x19\x08\xaa\xfd\x3f\x63\ \x85\xd3\xda\xf9\xf3\xe7\xaf\x5d\xbc\x78\xf1\xd9\x48\x34\x03\x11\ \xb5\xa3\x49\xb8\xf0\xf2\x5b\xd4\x8c\xa6\x32\xa5\x48\xac\x20\x26\ \xd8\x56\x2d\x4a\xb5\xae\x89\x11\xd5\x4f\x16\x28\x04\x22\xe7\x4c\ \xb8\xb9\xb3\x37\xbd\xf5\xdb\xe1\xc7\x87\x8b\xf8\xe9\xfa\xa4\xb5\ \x4d\xeb\xe2\xd9\xe3\x06\xcd\x00\x08\xb1\x3c\xb9\xbd\xbd\xfd\xe2\ \xe5\xcb\x97\xdd\x6c\x36\x7b\xb8\x69\x1a\x63\xad\xc5\x72\x31\x07\ \x62\x0f\x63\x1d\x1a\xe7\xc0\x6b\x59\x8c\x6a\x63\x44\x0c\xc0\x9a\ \x83\xe9\xdc\x1a\xd6\xbc\x27\x40\x4e\x1e\x9b\x84\xcf\xaf\x7d\xe7\ \x3e\xf8\x62\xff\xf5\xfd\x1f\x7f\xfe\xf4\xa1\x53\xc7\x71\x7c\x3a\ \x46\x87\x33\x05\x40\x1d\x57\xaf\x5e\xa5\x9d\x9d\x1d\xe2\x03\x59\ \x2c\x75\x8b\x19\xb6\x5f\x7a\x03\x4f\x5c\x7c\x0d\x2d\x1d\xe0\x60\ \x21\xe9\x17\x6f\xa5\x43\x83\x34\x96\xc5\x01\x77\x97\xa4\xc1\xa9\ \x78\x90\xac\x9b\xb8\x7f\xb7\x77\xcf\x9d\x3b\xb9\xf9\x8d\x79\x05\ \xfe\x54\x1b\x5f\x98\x7c\x85\x59\xff\x17\xcc\x7f\x18\x78\x86\xe5\ \x46\xae\x2f\x19\x4e\x91\x62\xc4\xf6\x9b\xef\xe3\xd5\x77\x3e\x44\ \xe3\x6f\xe3\x60\x69\x70\x73\xb7\xc7\xb8\x31\x12\xb8\x7c\x51\x83\ \x3e\xfd\x88\xc3\xce\x5e\xc0\xa2\xe7\xf5\xb2\x91\x34\x59\x76\x98\ \xb8\xb8\xa0\xe5\xde\x05\x5e\xf9\x09\xb6\x15\x8e\xe8\x01\x06\x84\ \xca\xe9\x74\xaa\x76\xef\x03\xc2\x72\x81\x3b\xbd\xc3\x1f\xfb\x73\ \x9c\x70\x4b\x6c\x4e\x5b\xfc\xd2\x78\x84\xc0\x28\x15\xbe\x91\x60\ \x32\x67\x1f\x8f\xc7\xd6\x2d\x83\x88\x70\x16\x8a\x22\xbb\xe8\xe8\ \x83\x89\x66\xb4\x15\x32\x37\xfa\xb1\xb8\x7f\x28\x73\xce\x39\x95\ \xb2\x30\x19\xb5\xf8\x67\x06\xec\xb1\x58\x8e\xfa\xf8\x46\x8b\x00\ \xe9\x01\x07\x93\x7b\xa0\xe5\x1a\xdc\xed\x0c\x3c\x59\xac\x4f\x1c\ \x08\xa5\x2f\x74\x5f\xfd\x9c\x35\xc1\x22\x78\xab\xdf\x8e\xcc\x5a\ \xc4\x4a\x06\xda\xb6\x05\x53\xaf\xb6\x93\x33\x5c\x83\x11\x53\xfe\ \xf7\x9d\x88\xb5\xfd\x88\xa7\x36\x1d\x76\x0f\x22\x22\x25\xea\x65\ \xb0\xd2\xac\x6f\xcf\x09\x1b\x6b\x06\x4b\x2f\x7b\xba\x93\x3f\x3a\ \x02\x5b\x7e\x18\xcf\xae\x00\x40\xdc\xfd\x70\x2c\xda\xe9\x4e\x18\ \x69\x85\x68\x06\x61\xf1\x0b\x03\xd8\xe7\x20\xe7\x36\x1b\x04\x32\ \x92\x95\x82\x50\xb0\xd6\x0a\xcd\xf0\xd1\x60\x6d\x64\x15\x95\x4d\ \xfb\x64\x8c\x6a\x6f\xad\x88\xae\x13\xcf\x1f\x00\xa0\x8e\x0c\x80\ \xc5\xe5\x43\x59\x9a\x56\x6d\xf9\x19\xb7\x16\x3f\xec\x46\x3d\x78\ \x7d\x6c\x41\xb8\x17\xe4\x9e\xff\xbc\xe7\xb2\xb5\x65\x4d\x75\xb9\ \x96\x5e\x41\x94\x35\xfb\x20\x00\xcd\xba\xd1\xec\x5d\x72\xd2\x7e\ \xe0\xb9\x96\xb3\x7e\xf1\x8f\x43\x66\xe1\xa4\x82\xac\x41\x32\x80\ \x10\xe5\x86\x28\x63\x65\xbf\x80\xf4\x6c\x07\x99\x67\x59\xd9\x03\ \x0a\x80\x88\xb4\x71\x2c\x59\x2d\x47\x09\xa2\xfb\x0c\x66\xd6\x01\ \x5d\x00\x4e\x1d\xb7\xd8\x65\x30\xce\xd6\x76\x77\x06\x5a\x8a\x91\ \x03\x82\xf6\x49\x3e\x3b\xd5\x3f\xa0\x8e\xa3\x19\x70\xac\x4d\x65\ \x20\x07\xaf\xd2\x3a\x61\x01\x5c\x12\x83\x63\x13\x23\xa5\x18\x66\ \xab\x0d\x0a\xf1\x63\x5b\x7e\x6c\x7a\x2d\x7b\xde\x0b\x2c\x95\x81\ \xa3\x7a\xc0\x7b\x9f\x6f\x81\x00\x68\x87\x0c\x14\xa6\x34\xbb\x3b\ \x4b\x60\x3a\xb2\xfa\xe2\x75\x5e\x6f\x5d\xdd\x8f\xe9\x75\xec\x83\ \xce\x85\x1f\x69\x40\x65\x20\xe6\xe7\xb4\x59\xc1\x80\xdc\x82\xfa\ \xd6\x0b\x80\x26\x31\x40\x19\x79\x79\x5d\x5c\x2e\xc5\xc6\x1a\x94\ \x11\x8d\x20\xc1\xf2\x3e\xd5\xeb\x59\xae\x63\xdf\x87\x40\x3d\x27\ \x37\x1d\x8f\x41\x47\x00\xd0\x47\xa8\xfc\x91\x61\x53\xcb\xa0\x71\ \x85\x46\xa5\xb4\xbe\x80\x42\xf5\xd2\x0b\x00\x94\xc8\xba\x56\xbc\ \x08\x0a\x80\x22\xa9\x7f\xdf\xf2\x59\x22\xca\xc8\x0a\x00\x1a\xbc\ \xf4\x80\x76\xf5\xa0\x07\xa8\x94\x60\x00\xa0\x31\x09\xc0\x58\x4f\ \x92\xce\x4f\x94\x93\x06\x2c\x49\x09\x12\x9d\xf4\xf9\xfb\xf2\x9b\ \x56\x95\x80\xca\x9f\x5a\xd4\x86\x52\x00\xb5\x01\x2b\x03\xf9\x93\ \x4a\xd1\x1b\x3c\x34\x22\xd1\x0a\xa6\x0b\xc9\xab\xfc\xb6\xc9\xe8\ \x29\xad\x69\x42\x91\x68\xe5\x35\xcc\xf4\x9b\x62\xb3\xb8\x6c\x17\ \x06\x44\x0f\xbf\x93\x32\x5e\x72\xd0\xb5\x16\x58\x78\x01\x41\xe8\ \x0b\x08\x93\x35\xe3\x12\x00\xa5\x09\xed\x8a\x5b\x50\xea\x3f\x04\ \x23\x3d\xa0\xce\x85\x15\x94\x03\x2b\x02\xcd\x30\x50\x92\xb1\x96\ \xc1\x72\xad\x75\x9e\x00\x27\xd5\x1b\x2a\xf5\x63\xcb\x1c\x71\x0b\ \x06\x74\x4b\xf6\xb9\x1f\x90\x7a\xa0\x80\xab\xb1\xcb\x4c\x7d\x7c\ \x4c\x00\x1a\x0d\xce\x19\x5a\xc9\xf6\x5e\xb9\xba\xf2\xc5\x54\x8a\ \xa3\x7b\xa0\x32\xe0\x06\x25\x28\x0c\xd4\xe0\x25\x9d\x62\xa8\x4f\ \xcf\x20\x46\x8e\x60\x48\x1f\x24\x7d\x9e\x33\xf5\x5d\x52\x35\x81\ \x46\x0e\x24\xa2\x21\x03\xc3\x86\xd3\xec\x91\x7d\xd4\x4b\x7c\x4d\ \x0e\x4a\x15\x45\x59\x33\xaa\x85\x09\xab\x2c\x18\xd2\xfe\x20\x6b\ \x2a\x80\xe1\xf8\xff\x1e\xe0\x39\xf4\x55\x8b\x20\x16\x23\x27\x29\ \x06\x4a\x6c\x90\x68\x01\xa6\x65\xcd\x3a\xed\xf7\x5e\x12\x10\xf7\ \x82\xdb\x64\x00\x54\xba\xf3\x68\x06\x74\xdf\xca\x01\x4e\xd3\x8b\ \x91\xd4\xcf\xc4\x28\x5b\x35\x78\x9a\x48\xc0\xa2\x59\xd5\x3e\x8b\ \x41\x4a\x47\xa5\x66\x3d\x6a\x28\xdd\x57\x00\x83\x41\xc2\x40\xa1\ \xbf\xf4\x00\x01\x95\x81\x42\xbf\x36\x71\x0d\x34\xb8\x6e\xd5\x27\ \xeb\xa8\x6b\x0a\xae\xab\xf1\x53\x6f\x54\x00\xb5\x04\x54\x4a\x60\ \xf5\x29\x4e\x0c\x84\x18\x04\x05\x2f\xd6\xa6\xab\x99\x8a\x1e\x06\ \x1d\x82\xb9\xcf\xb7\xbb\x2f\x5b\x5a\x01\x20\x72\x96\x5d\xd7\xc1\ \x7b\xaf\x76\xf0\x01\x9e\x03\x9b\x90\x19\xa0\x1a\x58\x55\xb5\x8f\ \x06\x54\x81\xf5\xa9\xa1\x53\x19\xbf\x78\xef\x2c\xec\xd6\xd6\xd6\ \x30\xfe\x41\xdf\xf7\x87\x3c\x30\x9f\xcf\x89\x6d\x9a\x2f\x92\xf6\ \x21\x50\x60\xf1\x22\x5e\xc4\xb3\xed\x93\x1d\x92\xdd\x8b\xad\x3a\ \xad\xf7\xba\xef\x8b\x96\x44\x16\xa2\xbb\xc5\x1c\x6f\xbf\x7b\x26\ \xb1\xbc\xbb\xbb\x2b\x9a\xae\x5f\xbf\x8e\x2b\x57\xae\xfc\xcd\xc1\ \x6e\x09\x80\xc5\x62\x21\x81\xcd\x7c\xbe\x30\x5e\x12\x37\x8d\x09\ \x70\x26\x1a\x91\x46\x25\x64\x1d\xa1\x3a\xed\xc1\xe5\x3d\xb5\xab\ \x86\x43\xef\x05\x8e\x01\x35\x13\x7c\xf6\xc9\xaf\xe9\x1a\x32\xcd\ \x96\xf5\xf8\xd2\xa5\x4b\xc7\x02\x8f\x8d\x8d\x8d\x6f\xb9\x04\xcf\ \x33\x80\xdb\x81\x69\x8f\x7e\x61\xf7\x77\x7f\xc4\xb2\x39\x61\x62\ \x3f\x23\x63\x6c\xf9\xdf\x8c\x4a\x29\x07\xaf\xa1\x32\x5c\xcb\x60\ \x88\x15\x69\x97\x12\xb9\x3f\xbf\xff\xfa\xf7\x1b\x5f\x7e\xf4\xe8\ \x68\xfd\x24\xba\xbb\xff\x1c\xb2\xc3\xd2\x94\xde\x63\x69\xb3\x8c\ \x59\xb6\xf2\x1b\x21\xe0\x46\xb6\x19\xb5\x32\xa7\x18\x2c\x11\x03\ \x26\x1a\xfe\xfb\x5d\xc0\xc4\xac\x43\x16\x9f\xa5\xcf\x32\x93\x12\ \x67\x9f\x2e\xaf\x85\x7f\x01\x1c\x52\xf4\x0b\xb6\xf2\xad\xef\x00\ \x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\ \x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\ \xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x09\xa4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ \x01\xcb\xc7\xa4\xb9\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\ \xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x09\x16\x49\x44\x41\x54\x78\ \xda\xa5\x95\x79\x6c\x5c\xd5\x15\xc6\xbf\x7b\xef\x7b\xf3\x66\x73\ \xc6\xc6\xf1\x6e\x27\x71\xbc\x60\x67\x77\x20\x61\x29\x90\x36\x6d\ \x21\x45\xec\x81\x28\x08\x68\xd5\x4a\x48\x2d\xfc\x51\x84\xaa\xaa\ \x82\xf2\x47\x05\x14\x24\x4a\x1b\xa9\xa5\x11\x34\x40\x49\x89\x13\ \x12\xf6\x00\x21\x25\x90\x06\x48\x20\x6e\x20\x8b\x21\x4e\xbc\xc4\ \x8e\xb1\xe3\x2d\xce\x78\xec\xf1\x2c\xef\xbd\x7b\x4f\xef\x1b\xd9\ \xd5\x28\x1a\x03\x12\xbf\xf1\xf7\xce\xbd\xb2\x47\xe7\x3b\xdf\x9d\ \x3b\x66\xc8\xc1\x86\xfb\x1e\xc2\x7d\xcf\xfe\x0d\xf9\x91\x02\x30\ \x00\x0d\xf3\xe6\xe2\x70\xcf\x11\xa4\xfa\xa2\xf0\x88\x84\xab\x8b\ \xcb\x6b\xf3\x6b\x22\x45\x81\x4a\x9f\xdf\x9c\x25\x5d\x65\xc7\x46\ \x92\x7d\xfd\x27\x63\x6d\xd1\x89\x8e\x41\x68\xea\xd6\x5c\x88\x65\ \x35\x75\x18\x1d\x49\x02\x8c\xc1\x99\x14\xb8\x72\xbd\x85\x3f\xde\ \xf9\x26\xb2\x61\x38\x8f\xdf\xac\xff\x15\x0e\x9c\x3b\x89\x54\x22\ \x0d\x27\xa1\x90\xc7\xc2\x28\xfc\xf9\x20\x36\xdf\xdb\x8a\x8b\x2f\ \x5c\xb2\xa0\x66\x65\xd1\xba\xca\xfa\x82\x1f\xe7\x17\x87\x6a\x02\ \x79\x66\x44\x98\xdc\x04\x48\x25\x27\x9d\x89\xe8\xe0\x64\xd7\x99\ \x8e\xe8\xae\xfe\xd6\xf1\xe6\xa3\xdf\x6f\x39\xb9\x72\x72\x01\xea\ \xe3\x4d\x48\xf7\x87\xe0\x04\x13\x30\x4f\x57\x81\xed\x7a\x0a\xdb\ \x57\x8c\x03\x67\x66\x30\xb0\xfe\xf6\xdb\x20\x99\xc2\xe0\xe9\x18\ \xa2\xfd\x49\x7c\xd1\xb3\x1f\x0b\xb0\xc6\x37\xeb\x9a\x89\xbb\x16\ \xfc\xa0\xec\x81\x8a\xfa\x82\xf9\xba\x31\x11\x57\x4c\xc2\x81\x22\ \x17\xc4\x14\x38\xe3\xe0\x24\x28\x15\x97\x6c\xa0\x23\xd6\x79\xfa\ \xf0\xb9\x47\x6b\x0b\xab\x9b\x3f\x7c\xa6\xcb\xae\x5c\x35\x0b\x3e\ \xc3\x42\x68\xb8\x0a\x21\x11\xc2\xf3\x9f\x3e\x86\x69\x04\xb2\xb8\ \xe1\x96\xeb\x11\x4f\xda\x48\xc5\x09\xf1\x5e\x85\x23\xdd\x7d\x58\ \x17\xf9\xa9\x21\xaf\xed\xbd\xbf\xe9\xc6\xca\x27\xca\x16\x44\x8a\ \x94\xa9\xf3\x56\x0e\x1c\x65\xc3\xd5\x72\xa4\x03\x57\xcb\x71\x6d\ \xd8\x32\x4d\xcc\x22\xca\x2f\x0f\x16\x06\x0a\xcc\xab\x4f\xf7\x0e\ \xa4\x56\xff\xb2\xfa\xb3\xe7\x63\x3b\xe4\xbe\x8a\xb7\x50\xd1\xe0\ \xc7\x5f\x57\x3f\x89\x1b\x9d\x9b\x70\xb2\xf3\x04\x3c\x0c\x64\x13\ \x20\x54\x86\x0a\xb0\xf1\xd2\x27\x50\xbe\x73\x29\x43\x7a\x98\xba\ \x1b\x0e\xde\xdc\xf0\xa3\xd9\x0f\x59\x95\xcc\x8a\x25\xc7\x15\x17\ \x5c\x0f\xcb\xc1\x19\x88\x31\xfd\xc3\x00\x10\x30\xf5\xe4\xae\x74\ \xb5\x29\x29\xf3\xab\xfd\xc1\x72\x19\x79\xf0\xe0\x07\xdd\x3d\xec\ \x5f\x6c\x07\xc2\xb3\xf1\x52\xcb\x9d\xf8\xf5\x9e\xeb\xf1\x65\x65\ \x2c\x77\x02\x17\x36\x34\x62\xc0\x19\xc5\x53\x1f\x6d\x45\x6c\x9f\ \x1f\x75\xb3\xea\x4b\x8a\xaf\xe3\x1b\x02\x75\x7c\x7e\x32\x9d\x94\ \xc4\x95\x70\x49\x91\x9e\x99\x39\x90\xcc\x65\x4a\xaf\x08\x12\x9e\ \xa0\x77\x04\x2d\xd2\x7b\x6e\xbb\xae\x34\x22\x22\x90\x8c\xdb\x45\ \xc5\x89\xb9\xbb\xac\x9e\xbc\xc9\xf6\x53\x51\xa4\x53\x02\x10\x84\ \x8e\xcf\x4e\xe5\x48\xc0\x90\xd8\x37\xf6\x01\x6a\xab\x6b\x59\x28\ \x5f\x91\x3f\xe4\xbf\x8a\x95\xb3\x95\x71\x77\x92\x4c\x32\xb8\x4d\ \x0e\x18\x13\x8c\x0b\x06\xc6\x19\xbc\x0a\xa6\xd7\x40\x46\x1c\x99\ \x35\x83\x86\x14\x71\xe2\x80\x51\x89\x4b\x65\x91\x73\x49\x7c\xe1\ \xf0\xce\x3e\xd7\xc7\xf6\x7e\x78\x92\x6e\xff\xde\x5a\x68\x72\x18\ \xe0\xc0\x3d\xe3\xf7\xa3\xf9\x4f\x7f\xa6\x89\x02\xa0\xfc\xe1\x0b\ \x56\x3a\x7e\x12\xcc\x35\xa4\x4b\xae\x50\x20\x70\x2f\x7e\xc9\xa0\ \x7d\x64\xea\x34\xa4\xc5\x3c\x79\x86\xc8\x33\xa0\x0b\x91\x72\x2d\ \xe9\x67\xc5\xea\xe2\xc4\xed\xdd\x3b\x89\x80\x27\x9e\xfe\x3b\x5a\ \x12\x7b\x72\x1b\x20\x05\x0c\xd9\x23\x88\x2e\x24\xbc\x07\xf0\x07\ \xef\x5b\x56\x91\xf6\x02\x75\x25\xa4\x92\x70\x95\x82\x10\x1c\x5c\ \x4b\x78\x26\x78\xb6\x01\x02\x11\x41\x11\xc0\x74\x35\x20\x74\x65\ \xe4\x78\xef\x0b\xf2\xca\xd8\x9d\x40\x0c\xa0\xd6\xbf\xb4\xc2\x25\ \x99\xdb\x00\x97\x1c\x48\x19\xf0\x18\x87\x86\x28\x73\xc2\x92\x98\ \xf7\x04\x13\x94\x89\x5d\x64\x2a\xc0\xd9\xb4\x01\xaf\x31\x81\x3c\ \x29\x05\x0e\x8e\xa0\x30\x61\x72\x03\x49\x96\x86\xe3\x23\x41\x8c\ \x3c\x43\x70\x03\x69\xc0\x97\xdb\x40\xc6\x75\x71\xa2\x02\x21\x62\ \x48\x00\xea\xb2\x7b\x96\x0f\x59\x86\x02\x37\x00\x1f\x13\x99\xe9\ \x0d\x21\x90\x31\xc1\x39\x18\xb4\xa6\xa6\x57\x9e\x48\x41\x4a\x05\ \x1f\x0c\x84\xb8\x1f\x82\xf1\x4c\x7a\x13\x69\xd5\x57\xf2\x1f\x86\ \xf9\xef\x83\xcd\x49\xd7\x52\xbb\x3a\x3b\x43\x02\x8c\x63\x63\xd3\ \x23\xa8\xbd\xb7\x8c\xb9\x93\x44\x2c\xe1\x3b\x1c\x00\xc1\x08\x78\ \xc3\x32\x12\xc2\xbb\x81\x99\x23\xc8\x4c\xef\xbd\xb2\x0d\x48\xc9\ \x20\xb9\x36\xa9\x0c\x10\x40\x4a\x48\xe1\x26\x95\xeb\xf4\x8b\x43\ \xc1\x47\xe7\xc1\xba\xc0\xc0\xe3\x65\x0f\x60\xad\x73\x73\x6e\x03\ \x92\x14\x56\x4c\x5c\x81\x64\x87\xc4\xd0\x51\x20\x39\x37\xf4\x71\ \xe1\x55\xb2\x2b\x5c\xc6\x6b\x48\x42\xe9\xc9\x99\xd7\x5c\xfb\x00\ \xa6\xdb\x4f\x9f\xbf\x22\x38\x1c\x70\xc8\x5b\x03\x92\x24\x81\x13\ \xb3\xcf\xd2\x17\x89\x8f\x22\x07\xe3\x51\x0b\xf9\x4d\x44\xab\xe6\ \xcd\x01\x09\x85\x69\x38\xb2\xf0\x22\x9b\x3f\xbb\x14\x75\xe7\x2e\ \xa2\xeb\xe9\x13\x2c\xe9\xd9\xd3\x95\xec\x10\xaf\x58\xcc\x40\x38\ \x68\x52\x28\x60\x42\x8b\x82\x01\x1f\x82\x7a\x1d\xf0\x0b\xf8\x3d\ \x59\x02\xa6\x99\x31\xe6\xa5\x48\x5a\x10\x3e\x40\xa5\x25\xe2\xed\ \x6c\x7b\xf4\x9d\xdd\x03\x15\xff\xde\x87\xcb\xcc\xd5\x28\x0c\x87\ \x01\x97\xe5\x4e\xc0\xa3\x4c\x71\x6c\x9b\xb5\x17\x81\xc6\x26\xd6\ \x7d\x22\x45\x8b\xe6\xf9\xff\x59\x7a\x91\x7b\x6b\xfe\x12\x73\x3e\ \xb9\x4c\x99\x86\xc9\x0d\x6e\x00\x04\xb8\x70\x32\xb7\x43\x29\x42\ \x8a\x48\xef\x38\x4c\xa6\x31\x98\xf2\x07\xc1\x47\x3a\x71\x6c\x64\ \x57\xa8\xb9\xf7\xd9\xe5\xb0\x1a\x4d\x1c\x28\x7d\x0f\xbe\xae\x21\ \xcc\xab\x58\x96\xfb\x9b\xf0\xf8\x97\x6d\xa8\x59\xbc\x08\x8b\x17\ \xce\x41\xd5\xfb\x6b\x50\xdf\xfe\x16\x4b\xfd\xee\xc4\x88\xf3\x74\ \x95\x51\xbe\xd4\x77\x4d\x28\xe2\xa3\xa0\x08\x20\x6c\x84\x99\xdf\ \xb0\x20\x04\x03\x17\x00\x63\x80\x94\x04\xc7\x06\xa0\x38\x85\x82\ \x06\x43\x42\xe1\xf4\x4e\xf5\xfb\x81\x8b\x3f\xde\x5b\x7f\x6d\x8a\ \xed\x3e\xdb\x81\xd3\x2b\xf6\x21\xdf\xaa\x40\xf3\xd6\x6d\x33\x27\ \x00\x02\x86\xdb\x93\x68\x9f\xfb\x1a\x46\x1b\x1a\x69\xc8\x19\x42\ \x04\xd6\xe6\xaa\x4b\xe4\x0d\x8d\xd7\x84\x56\x99\x76\x40\xf9\x29\ \xcc\x88\xc8\x9b\x16\x69\x00\x29\x46\x48\xeb\xb8\x85\xae\xa6\xc1\ \x29\xe8\xe7\xfc\xab\x83\x6a\x57\xeb\xf6\x92\x1d\x63\xb8\x02\x56\ \xd0\x47\xb7\x2e\x5d\x83\xa2\x1e\x0b\xcc\x27\x91\x0d\xc7\x79\x6c\ \xd9\xf6\x12\xc2\x45\x06\x0e\x9c\xbc\x0d\x43\xfc\x13\x2c\xbf\x4b\ \x30\x5a\x7e\xf8\x6c\xdb\xcb\xf6\x93\x89\x41\x95\x0c\x06\x4d\xee\ \x83\x8f\x2c\x66\xc1\xaf\x65\x71\x13\xa6\x10\x99\x5b\x61\x30\x41\ \xa1\x90\xe0\xe9\x61\x15\xef\x7e\x97\x36\xd8\x73\xf6\x8f\xd7\x5f\ \x7d\x86\xf5\x24\x3e\xc0\x27\x07\xde\x45\x9e\x15\xc0\x9b\x5b\xde\ \x46\x36\x02\x39\x58\xb1\x78\x29\xf6\xbd\x31\x88\x82\xd9\x73\xd1\ \xf9\x5a\x10\xa3\x03\xc7\xd1\xd7\xb5\xb8\xa7\x7a\x51\xba\xb1\xac\ \x21\xb8\xc8\x90\x7e\xc5\x94\xc1\x15\x24\x5c\x72\x32\xff\x92\x53\ \x29\x09\x5d\x94\x4f\x70\xde\xf7\x69\xfa\xe5\x3d\xcf\x2d\xdb\xe0\ \xc4\xee\x56\x85\x7d\x23\xb8\xec\xba\x85\x38\xf5\xc6\x87\x48\x28\ \x85\xcf\xbf\x38\x9a\x3b\x81\x6c\x9e\xdd\xf2\xa2\xfe\x63\x17\xbb\ \x77\xbf\x8e\xc1\xd2\x83\x68\xba\x69\x09\x2b\x59\x72\xdc\x6e\xdf\ \x6d\xbf\x30\x7a\x26\x91\x52\xa6\x2d\x14\x29\x62\x4a\xc0\x13\x29\ \xa6\x2b\x27\x7d\x1b\x44\x6a\x54\xda\xfd\xff\x95\x5b\x2b\x2e\xdf\ \xe9\x2c\x5e\xfb\x30\x6b\x9f\xfb\x36\x7e\xd1\x9c\x44\x97\x11\xc3\ \xa6\x6d\x9b\x71\x3e\x1c\x33\xe0\x23\x8e\x5b\xee\x58\x87\x9f\x5c\ \xb9\x0a\x63\xfb\xf3\x69\xe8\x98\x3e\x96\x77\xe8\xe0\x70\x67\xe2\ \xf3\x34\x26\x61\x53\x8a\xa4\x92\x20\x05\x30\xc9\x61\xc0\x20\x3d\ \x3d\x26\x06\xdc\xe3\xa7\xde\x34\x5a\xfa\x0f\xe4\xc3\x3e\x51\x48\ \x3f\x5c\xbe\x1a\xdb\xef\x8e\x20\x00\x03\x9a\x6f\x6f\xe0\x99\x2d\ \x9b\x91\xc7\x04\x42\x86\x09\xff\x48\x09\x88\x2e\x80\xa2\x8f\xa2\ \xd1\x7e\xf7\x4b\xcf\x40\xda\x8a\x92\x6d\x8d\xc3\x35\x12\x50\x22\ \x05\x12\x09\x12\xc2\x45\x6a\x84\x3a\x86\xd0\x30\x0a\x3c\x07\xff\ \x70\x09\xf2\xbc\xd6\x04\x6c\x7c\xf1\x05\xe4\xc2\xc0\xd7\x10\xb7\ \x53\x60\xe0\x68\xc3\x0e\xd4\x5c\x5e\xcc\xe3\xf1\x90\xaa\x9a\x3d\ \xda\xeb\x9c\x11\xa8\xa8\xc9\x03\x41\xc1\xf4\xe5\xc1\x34\x8a\x50\ \x10\x2a\xc0\xb1\x96\x36\x74\x1e\x1e\x69\x45\xe5\x3f\x64\x59\xd9\ \x8b\xec\xc8\x23\x09\xba\x75\xd3\x5a\x8c\xf9\xc6\x31\x13\x1c\x5f\ \xc3\xab\x3b\x5e\x87\x47\x7e\x5e\x04\x7d\x2d\x63\x18\x6e\x9d\xc4\ \x67\x7b\x8f\x1c\x8a\xb5\x02\x0b\xc4\x15\x8c\x9d\x98\x8d\xdd\x1b\ \x8e\xa0\x7b\x57\x1c\xbf\x5d\xf7\x38\x1a\x23\x97\xe8\xdf\x1f\x3d\ \x86\x3e\xe0\xdc\x11\xc5\x4a\xef\x28\x05\x63\xc0\x5b\x5b\xde\xc1\ \x4c\x18\xf8\x06\x98\x77\xbd\x2c\x0e\x0b\x06\xec\x09\x1b\x9a\xf4\ \xac\xc2\x30\xac\xb0\x40\xfd\xc2\x1a\x1a\x3a\x37\xc0\xee\xfa\xd9\ \x1d\x34\x99\x8c\xf3\xc1\x91\x7e\x68\x46\xa0\xf1\x05\x0c\x98\x01\ \x01\xc2\xd7\xc3\xf1\x0d\xbc\xbc\xfd\x15\x28\x45\x20\x9a\x36\x04\ \x16\x3d\x17\x45\x32\x91\x82\x63\xbb\x70\x1c\x89\xba\xba\x06\x70\ \x26\x30\x32\x9c\xe9\xcd\xa0\x71\x1d\x17\xd2\x95\x78\x65\xfb\xab\ \xdf\xcd\x80\x47\x61\x61\x01\x88\x68\xda\x80\xe1\x19\xe2\x8c\x53\ \xda\x4e\xb3\x64\x32\x49\xb6\x6d\xc3\x30\x0c\x72\xa5\xfc\xbf\x01\ \xa5\x14\xaa\xab\xe7\x40\xf3\xdd\x0d\x8c\x45\x63\xde\x51\x10\x34\ \x4a\xe1\xab\x40\xc0\x3f\x29\x04\x17\xa6\x61\xaa\xe2\xe2\x62\x16\ \x0e\x87\xd1\xd5\xd5\x85\xe1\xe1\x61\x02\xe0\x40\xe3\xf3\xf9\x70\ \xea\x54\x2f\xbe\x09\xf6\x2d\x0c\xb2\x69\x05\x02\x01\xe3\xb1\x47\ \xff\x90\x6c\xde\xfa\xd2\xfa\x70\x38\x6f\x8b\x61\x9a\xe8\xef\x3f\ \xa3\xb4\x01\xae\xc1\xd8\xd8\xd8\xbd\x6d\x6d\x6d\x9b\x84\x30\x4c\ \xe9\xe5\x0f\x28\x2d\xca\xd6\xb7\x31\x20\xa6\x64\x4e\xc9\x97\x5d\ \x0d\x21\xfc\x3a\xea\xf1\xba\xba\xda\xbb\x9b\x96\x2d\x7b\x20\x92\ \x5f\x90\x31\xb0\x7f\xff\xfe\x47\x5a\x5a\x5a\x36\x99\xa6\x39\xcb\ \x71\x1c\x7b\x2a\x89\xf3\xab\x27\x57\x4b\xce\x74\x0b\x98\x16\x9f\ \x6a\xe8\xd7\xb2\xce\xaf\xba\xb9\x4f\x4f\x5b\xda\xd5\xd9\xf5\x7e\ \x63\x43\x43\xa2\xc4\x6f\x55\xe9\xcf\x41\xef\xa1\x43\x87\x3e\x65\ \x8c\x35\xea\xe6\x29\x00\xe9\x2c\xa5\xb2\x2a\xcb\x4a\x42\xcd\x94\ \x00\x3f\x2f\x05\x23\x47\x35\x74\x33\x83\x88\xd2\x53\xd3\x08\xbd\ \xf7\xeb\xbd\x33\xb5\x77\xa7\xa7\xcd\x9e\x3c\x6b\x7a\x85\x29\xfe\ \x07\x0a\x65\x64\x31\x04\xd2\x8f\x09\x00\x00\x00\x22\x7a\x54\x58\ \x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x00\x78\xda\x2b\x2f\x2f\ \xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\xcb\x2f\x4a\x07\x00\x36\ \xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\x4f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x48\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x0a\x66\xf0\x7a\xad\xf5\x0a\x67\xf0\ \x00\x00\x00\x09\x68\xee\x0b\x68\xee\x2f\x80\xf2\x55\x97\xf4\x77\ \xac\xf7\x08\x67\xee\x08\x69\xee\x08\x68\xee\x08\x69\xef\x08\x68\ \xef\x08\x67\xef\x08\x68\xef\x8b\x8b\x8b\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x8b\x8b\x8b\x4c\xd0\xce\xf3\x00\x00\x00\ \x16\x74\x52\x4e\x53\x00\x1b\x32\x32\x34\x47\x78\x78\x78\x78\x78\ \x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x82\x84\xb9\xf6\x5a\x93\x98\x00\ \x00\x00\x57\x49\x44\x41\x54\x18\x19\x85\xc1\x59\x0e\x82\x40\x00\ \x05\xb0\x2a\xf2\x00\x11\xc4\x6d\xb8\xff\x4d\x25\x2e\xc9\xfc\xd1\ \xb2\xaf\x39\x57\x1a\x0c\x2a\x03\x7a\xaf\x47\x79\xbe\xac\x1b\x3d\ \x3a\x07\xc5\xc1\x47\x87\xa0\xf8\x09\x82\x82\x75\x23\x08\x6d\x69\ \x7d\x05\x51\x09\xe2\xbe\xfe\x09\xa2\x12\x44\x25\x38\xdd\x96\xe5\ \x3a\xcf\xd3\x74\x19\xc7\x1c\xed\x7b\x03\x2c\xc0\x04\x0b\x8e\x16\ \xcd\xfc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x7c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xf9\x49\x44\ \x41\x54\x78\xda\x8d\x92\x4d\x6b\x13\x41\x18\xc7\x9f\x79\xd9\x97\ \xec\xa6\xbb\xcd\xdb\x46\x52\x2b\x6d\x4a\x40\x41\xaa\xd6\x82\x07\ \x11\xf2\x05\x04\x11\x85\x7e\x82\xa2\x07\x3d\x79\x11\xbc\xf4\xe2\ \xc1\x8b\x9f\xc0\xb3\x62\x11\xfd\x06\x42\x41\x04\x7b\x10\xa5\x15\ \x84\x46\x0d\x6a\x68\x0c\xd8\xa4\x6c\xb7\x99\x9d\x9d\x19\xc7\x15\ \x2a\x94\x4d\x9b\x1f\x3c\x0c\x3c\x03\xbf\x79\xe6\x3f\x83\x94\x52\ \x30\x8a\xf5\x17\x8f\x97\x28\x21\xdd\x0b\xd7\xee\xbe\x86\x11\x64\ \x0a\xde\x3c\x7d\x74\x66\x38\x64\xef\xc2\x30\xca\x97\xaa\x35\x70\ \x1c\x67\x97\xa8\xf8\xd4\xb9\xab\xb7\x07\x70\x08\x0c\x19\x48\x09\ \xcf\x13\xa9\xf2\x12\x14\x60\xc3\x04\x2f\xa8\x79\xc4\xb4\x5f\x41\ \x06\x14\x32\xc8\xb9\xee\xd4\xf9\xc5\x45\x40\x4e\x19\x84\xfa\x67\ \xfc\xfc\xf3\x5b\x63\x2c\xc1\x8f\xb7\xab\xb9\x4a\xb9\x30\x40\x86\ \x55\xa0\xa6\x0d\xa6\x61\xa5\xfd\xda\x4c\xfd\x3b\x68\x8e\xbd\xc2\ \x16\xab\x70\xcf\x73\x3b\x80\x30\x20\x04\x1a\x05\x4a\x49\x98\xf0\ \x26\x5a\x63\x09\x9a\xcd\x66\xa2\x12\x7e\x1f\x12\x06\x20\x19\x28\ \x1e\xe9\x25\x4a\x08\x52\xf7\xb2\x05\x19\x14\x17\x6e\xac\xb5\xbf\ \xb6\x12\x11\xf5\x41\xc5\x11\x6c\x7c\x5c\x67\xf9\xfa\xe5\xed\xb1\ \x43\x4c\xb1\x0b\xfd\xcd\x4f\x1b\xe5\x98\x09\xc8\x4f\x06\xe9\xf8\ \x63\x4f\x90\x24\x12\x9d\x9c\x3b\x5b\x68\xcc\x5f\x01\xcb\xf5\x21\ \x98\x9e\xad\xeb\x1e\x3e\x56\xd0\x19\x88\x6a\xaf\xb7\xf7\xf0\x77\ \x3f\xdc\x1e\xd2\x8a\xe4\xd4\x87\xe2\xf4\xbc\x32\x4a\x0d\x22\xa5\ \x6c\x31\xc6\x1f\x70\x2e\x82\xcc\x9f\xd8\xed\x0e\x6e\x62\x4c\x9e\ \x39\x2e\xc5\x04\x93\x34\x7d\x8c\xf1\xa1\x0f\xa6\x40\x08\x11\x1b\ \x06\x5d\x32\x4d\xfa\xf2\x40\x30\x64\x9c\x6c\xb5\x7f\xed\x4f\x55\ \x7d\xc3\xb6\x4c\x40\x08\xc1\x28\xf4\x04\x20\xa4\xda\xcd\xd9\x46\ \x60\x99\x94\xa5\x47\x7c\xe9\xf4\xee\x14\x7d\xd7\xd0\x3e\xd0\xc2\ \x23\x4b\xfe\x2d\x29\xbc\x9d\x70\xef\xfa\xc1\x2b\xec\xf4\xc2\xaa\ \x59\x25\x52\x6f\x61\x4a\x31\x10\x9c\x99\x57\x2a\x60\x2c\x86\x30\ \x62\x52\xe7\x34\x77\xa2\xe8\xff\xcf\x60\x65\x65\xd5\x0c\x66\x4a\ \xcd\x4b\x0b\xb3\xb7\x72\xb6\x7d\x5a\x2a\xe1\x4a\x01\xb6\x54\x12\ \x00\xa1\x08\xe9\xb1\xf7\x59\xbc\xf9\xfe\x43\xfb\x09\xe6\x93\x6b\ \xcb\xcb\x17\x39\x68\xfe\x00\x58\x95\xf6\xff\x16\xb1\xc6\xc2\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x9a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ \x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ \xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ \xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ \x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ \xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ \x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ \xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ \x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ \x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ \xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ \xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ \xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ \xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ \x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ \x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ \x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ \x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ \xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ \x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ \xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ \x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ \x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ \x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ \x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ \xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ \x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ \xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ \xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ \xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ \x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ \xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ \xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ \xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xd2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x4f\x49\x44\ \x41\x54\x78\xda\xa5\x93\xcb\x4f\x13\x51\x14\x87\xbf\x3b\x33\x1d\ \x5a\x5b\x0c\x19\xc0\x42\xa0\xe5\x61\x13\x17\x24\xa8\x71\x65\x8c\ \x1b\x8d\x89\x3b\x57\xee\x64\xa7\x0b\x1f\x7b\x48\x7c\x9b\xe0\x42\ \x4d\x8c\x8f\x3f\x42\x57\x2e\x5d\x68\x74\x61\x0a\xa8\x41\x40\x5d\ \xb0\xd0\x50\x1e\xa2\xb5\x0d\x8f\x4e\xa1\x32\x33\x9d\xeb\x1d\x26\ \x4e\x0a\x5b\x4f\x72\x72\xef\xe6\xfb\xf2\x3b\x77\xce\x08\x29\x25\ \xff\x53\x06\xbb\x6a\x4e\x88\xc1\x55\x78\x66\xe6\x72\xc9\xa6\x5c\ \x2e\x16\x4b\xa7\x75\xb7\x58\xac\x3b\xb3\xb3\xf6\x9e\x42\xe1\x6c\ \x9f\x94\x9f\x77\x08\x76\xc3\xa5\x6c\x36\xdf\x79\x77\x34\xd5\x64\ \x59\x08\xa1\x81\xa6\x21\x3d\x17\xa7\x62\x77\x2e\x0f\x0f\xe7\x11\ \xe2\x58\xa3\x24\x18\x21\x82\x17\xbb\xbb\xf2\x3d\x37\x6e\xa6\xcc\ \x8d\x2a\xb2\x5e\x07\xcf\xc3\x57\xa7\xef\xba\xd4\x7d\x1f\x69\xb5\ \xb2\x74\xff\x5e\x35\xf3\x63\x39\x92\x68\xff\xe0\xb9\x8e\xf4\x58\ \xcf\xed\x5b\x29\xbd\x5c\x42\x28\x48\x57\x2d\x2a\x15\x74\xd5\x86\ \x82\x0d\x29\x91\xdf\xbf\x91\x1d\x19\x4e\x15\x3a\x3a\xc6\x02\x86\ \x48\x60\x18\xcf\x7b\xaf\x5f\x4d\x6a\xf3\x0b\xe8\xbe\x4f\xdb\xb9\ \x21\x5a\x87\x86\xd4\x3d\x10\x79\xb4\x9f\xbf\x40\xe7\xc5\x4b\x98\ \x02\xdc\xc9\x49\x7a\xaf\x8d\x24\x03\x26\x7a\x83\x9a\xe7\x25\xaa\ \x1f\x26\x68\x69\x69\x43\x98\x26\x38\x0e\x46\x26\x83\x75\xf9\x0a\ \xc1\x88\x31\x75\x77\x0b\x73\xe8\xab\xab\x18\x2a\xd1\xc6\xfb\x89\ \x6d\x26\x4a\xe0\x80\x60\xb3\x8a\x56\x59\x47\x2f\xfe\x62\x65\xf4\ \x0e\xee\xc2\x3c\x46\x77\x46\xc1\x59\xdc\xc5\x05\xd6\x9f\x3c\x26\ \xae\x44\xcd\x03\x03\x18\xba\xd8\x66\xa2\x04\x1e\x88\x95\xfc\x5b\ \x9a\x8c\x66\xea\xc9\x24\x7a\x36\x1b\x3e\x22\x61\x49\xd7\x65\x63\ \xfa\x13\xde\xf4\x14\x75\xdb\x66\x2d\x11\x32\x8d\x09\x90\x9b\x36\ \xfc\x5c\xc6\x5d\x5f\xa3\xfd\xc1\x43\xcc\xbe\x7e\xfe\x7c\xfd\xb2\ \xdd\x66\xff\x7e\xd2\x8f\x9e\xe2\x27\xe2\x88\x00\xd2\x43\x26\x4a\ \x20\x61\xab\xa6\xb3\xa3\xb6\x14\xb8\x78\xfa\x24\xbe\xef\xd3\xf3\ \xf2\x35\x9a\x69\x22\x01\x01\x54\xf4\x90\x89\xf6\x60\x4a\x88\x83\ \xef\x62\x8c\x0f\x36\x93\xe8\xb2\x41\xdb\xd7\x1e\xda\x83\x4f\x0a\ \xb8\x96\x05\x7a\x0c\x7e\x17\x59\x4a\xc1\x8c\x4d\xed\xb8\xcb\xd1\ \xc3\x52\xce\x44\x8b\x14\x48\xde\x98\x8c\x1f\xd9\x4b\x22\x53\x21\ \x8c\x2a\xc2\x53\x02\xbe\x84\xa5\x16\xc1\xc7\x35\x59\x3b\xe1\x84\ \x70\xe3\x26\x46\x92\x57\x4a\x72\xc0\x57\x49\x52\x49\x62\xf1\x38\ \xba\x61\x50\xf7\x3c\xca\x08\x26\x57\xca\xb5\x53\x0d\xf0\x6e\x41\ \x24\x19\x87\x17\xea\x27\x4a\xc4\x2d\x4b\x0b\x66\xf7\x1d\x07\xaf\ \x54\xaa\x1d\x2a\x97\xcf\x44\x70\xa3\xe0\x7f\xea\x2f\xb2\x2a\x1f\ \x46\x55\x40\xa7\x1e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x00\xf5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x04\x03\x00\x00\x00\xed\xdd\xe2\x52\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x27\x50\x4c\x54\ \x45\xff\xff\xff\x88\x88\x88\x88\x88\x88\x88\x88\x88\x91\x92\x90\ \xba\xba\xb9\xc0\xc1\xc0\xc5\xc5\xc5\xd0\xd1\xd0\xec\xec\xec\xed\ \xed\xed\xee\xee\xee\xff\xff\xff\xb9\x4f\x24\x17\x00\x00\x00\x03\ \x74\x52\x4e\x53\x00\x3b\xd8\x4e\xcc\x71\x00\x00\x00\x00\x31\x49\ \x44\x41\x54\x08\xd7\x63\x60\x20\x02\x08\x19\x83\x81\x22\x83\xfa\ \xec\xdd\x40\xb0\xb3\x88\xc1\xea\x98\xc7\x19\x20\x58\xcc\x60\x7d\ \x26\x06\xc4\xd8\x8c\x85\x01\x57\x03\xd7\x05\x37\x07\x37\x00\x00\ \x1a\x7b\x26\x85\x0e\x97\x44\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x04\x00\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ \xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ \x12\x19\x01\xcd\x12\xdd\x84\x00\x00\x03\x80\x49\x44\x41\x54\x38\ \xcb\x5d\x8f\x6d\x4c\x95\x65\x00\x86\xaf\xe7\x79\x5f\xce\x2b\x07\ \x0e\x14\x04\x1e\x3e\xa5\x46\x8a\x08\x8c\x65\x88\x90\xa0\x75\x96\ \x7c\xb9\x69\x19\xe2\x5c\xb9\x28\x7f\x44\x65\x6b\xcd\xad\x65\xce\ \x3e\x66\x34\x6b\x8c\xe6\xd6\x56\x8b\xa9\xeb\xe3\x4f\xd9\xc6\x16\ \x31\x4d\xca\x48\x6a\xb3\x11\xce\xa6\x45\x80\x1f\x7c\x48\x2a\x12\ \x70\x80\x73\xce\xfb\x9e\xf7\x3c\x4f\x3f\xcc\xcd\x75\x6f\xf7\x76\ \xff\xb8\xb7\xfb\xba\x45\x45\x63\x25\x51\xcb\x46\x84\x25\x22\x62\ \x30\x7e\x22\x8c\x95\xed\xfa\x2a\x1b\xef\xdf\x96\x92\x95\xf0\x88\ \x69\xc9\xe4\xf0\x82\x33\x32\xf1\xc7\xcc\xa7\x1b\x5b\x8a\x06\xe2\ \xd6\xb7\x3f\xe8\xf3\xe7\x7d\xe2\xf5\xfb\xbb\xbc\x69\x69\xef\x08\ \x7d\x53\xb3\x79\x5f\x1d\x5a\x6b\x11\x9c\x8a\x68\x65\x8b\xfb\x8a\ \x1a\xfc\x5f\xa4\x66\x27\xac\x35\x2c\xa5\x95\x88\xa2\x95\x16\xe1\ \x60\x2c\x1c\x1a\x75\x0e\xbc\x57\xda\xdb\xfc\xfe\xae\xc5\xfc\xac\ \x49\x05\xa6\xd1\x6d\x9c\xfe\xeb\x67\x26\xfa\x83\xf4\x9d\xe8\x65\ \xf4\xcf\xa0\x51\xd6\x92\x73\xcc\x77\xaf\x59\xe5\x9a\x31\x37\x22\ \xa2\xc2\xd5\x51\x5c\xed\x2a\x23\x51\xc4\xad\x4e\x6d\x08\x48\x5f\ \x63\x4a\xeb\x0f\x43\x2c\x2b\x99\x25\x79\x26\x32\x2d\x2a\x5e\x2c\ \x43\x58\x5a\xc6\x6c\xad\xa4\x6b\x54\x27\xaf\x91\xbd\x56\xbc\x11\ \x93\xd2\x94\xa6\x47\x0a\x21\x85\x96\x5a\x88\x75\x66\x50\x55\xe8\ \x42\x79\x95\x26\x96\xfa\xfd\x18\x13\x6f\xcc\x4c\x5f\xfa\xa6\xd4\ \x74\x12\x42\x48\xaf\x46\x2b\x60\xc1\x93\xbb\x18\x73\x59\xb4\x35\ \x86\x21\x45\x9c\x36\x10\x08\x91\x21\x1c\x76\xe6\xaf\x93\x8f\xbd\ \x70\x86\x1b\x53\x7d\x74\x1c\xac\xd1\x37\xbd\xaf\xbc\xbc\xbf\x2d\ \x3c\x66\x5a\x8b\x16\x12\x85\x8e\x82\xb4\xe3\x26\xbd\x1e\x8d\x99\ \x28\x84\xc7\x34\xb5\x69\x18\xc2\xa3\x35\x6f\xe6\x96\xd2\x76\x74\ \x8a\xa1\xcb\xf3\x7c\xfc\x9a\x97\xa4\xe8\xa9\x43\x5f\x6d\xea\xfb\ \xec\xd7\xc9\x5a\x44\x60\x6b\x80\x85\xeb\x51\x06\xfb\x24\x5e\x4c\ \x6f\xf5\xe7\x0b\x67\x12\xb2\x65\x91\x21\x0d\x25\xa4\x90\x3b\xac\ \x44\x9c\x8b\x79\xec\xde\xdb\x4d\x89\xdf\xe6\xd1\xf2\xc5\xd0\x3f\ \x63\xe1\xdc\xd3\xd5\xc5\x33\x4e\x34\xa6\x44\x21\xbb\x78\xe8\xf8\ \x05\xb4\x6d\xc8\x98\xab\xd5\xfc\x45\xd9\x9c\xf7\xb0\xe7\xb0\x77\ \xc6\x54\xab\x52\x5d\x59\x1d\xc9\xa0\xa6\xe5\x1c\x59\xe6\x15\x56\ \x24\xc7\xf3\xc1\xa9\x4c\x0b\x1c\x67\xe5\x8a\x24\x92\x96\x99\x88\ \x07\x36\x56\xe0\x8b\x25\x31\xf0\xfd\x34\xf3\xf4\x03\xc8\x57\x7b\ \xea\xbe\x2b\x0c\x11\x78\x3c\x23\xc8\x8e\x7d\x2e\x23\x23\xd7\x78\ \x6a\x73\x31\x67\x13\xe7\xea\x12\xfd\x1c\x57\x20\x5d\x1b\x95\xfa\ \x5b\x01\x62\xfb\x86\x67\x99\xe8\x87\x82\xb7\x27\xf1\xa4\x68\x19\ \xc3\x51\xf3\x7f\xab\xc0\xc1\xd2\x91\x9e\x8e\xee\xa5\x74\x74\xce\ \xf1\xd6\xd3\x0e\x81\xf5\xaf\x93\x17\x18\x10\xc3\xdc\x10\xcb\xc5\ \x15\x0d\xfb\x59\xb3\xa5\x15\x01\x50\x59\x53\x45\xf0\x92\x97\xeb\ \x63\xd3\x4c\xd9\xfd\xcc\xfe\x58\xa7\xfb\x7e\x1f\xe2\xb9\x36\xc9\ \x13\x55\x11\xea\xeb\xe3\x39\x3a\x91\xd9\x92\x9c\x27\x3e\xd2\x4a\ \x4b\x27\xa4\x54\x7a\xf3\x4f\x9c\xbf\xeb\x25\x4c\x80\xe0\xc9\x12\ \x4a\x9f\x1f\xe7\x99\x3d\x3b\xd1\x27\x57\xeb\xe9\xe9\x63\xec\xf9\ \xf0\x6e\xf2\x33\x6d\xb6\x56\x3b\x9c\x0f\x37\xf2\xcb\xe1\x2f\xcf\ \x46\xdd\x28\xf7\xa4\xa5\x62\x1a\x26\x6e\xfb\x06\xce\xcd\x1d\xba\ \x45\x70\xa7\x7a\x3a\x8f\xe8\xf9\xb9\x41\x5a\xdb\xbf\x66\xef\xf6\ \x6b\xc4\x25\x6f\xd1\x46\xce\x93\xd1\xba\x4d\xb5\x45\xc0\x70\xbc\ \xb5\x44\x84\xed\x88\xbe\xdd\x37\x6f\x87\xcc\x4c\x3f\x0d\xf5\xb5\ \xc4\x99\xb3\xa4\xc7\x8f\x70\x60\x77\x2e\x4b\x52\xb7\x31\x1a\x5c\ \xae\x43\x13\x97\x15\xe0\x02\x38\x6e\x84\x9c\x9c\x2c\xc6\xc7\xaf\ \xfe\x7f\x1b\x03\x88\x2f\x2b\x4e\xd3\x9d\x47\x5a\xf4\xd0\xe0\x05\ \x5d\x5b\x5b\x33\xdc\xd4\xd4\xa4\xcb\xcb\xd7\xbe\x0b\xa4\x5b\x96\ \x95\x0e\xf8\x00\x0f\xdc\xa2\xbf\xf3\x82\x07\x48\x00\x7c\x52\xca\ \x24\xa5\x94\x5c\x55\x58\x98\x55\xb0\xb2\x20\xb3\xab\xeb\xdb\x01\ \xdb\xb6\x01\x16\x81\xf9\xff\x1c\x02\xd4\xbf\xaa\x26\x7a\xee\x7a\ \x8e\x2f\x5d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x99\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ \xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ \x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ \x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x18\x49\x44\x41\x54\ \x28\xcf\x63\xf8\xcf\x80\x80\xc2\x7e\x0a\xc7\x94\xce\x48\x4d\xe3\ \x14\x40\x88\x21\x49\x73\x4a\x29\x9e\xf7\xff\x1f\xf7\xdf\xfb\xbf\ \xc2\x11\x4e\x09\x0c\x05\xa2\x5d\xaa\x1f\x6c\xff\x07\xfd\xd7\xff\ \x6f\x0f\x54\x22\xb5\x0e\x4d\x01\x8f\xbb\xda\xcf\xc0\xff\x5e\xff\ \x0d\xfe\x6b\x02\xa1\xd9\x7f\xe3\x1f\xbc\x9e\x28\x0a\x44\xba\x2d\ \xfe\x3b\xfc\x57\x83\x43\x93\xff\xe2\x0b\x50\x14\x88\xef\x77\xfe\ \xaf\xf1\x5f\x19\x0e\x35\xfe\x4b\x1d\x41\x51\x20\x76\xcb\xfa\xbf\ \xe2\x7f\x79\x24\x28\x76\x1d\x45\x81\xf0\x11\x4d\xa0\x3e\x19\x24\ \x28\x30\x17\x45\x01\x77\x99\xf4\x7f\x95\xff\xd2\xff\x25\xa1\x50\ \xf8\x3e\x87\x2b\x8a\x02\x06\x16\xae\x3e\xe1\x6f\xa2\xff\x41\x50\ \xe4\x3f\x67\x27\x13\x0f\x96\x80\x62\x4b\x11\xf8\x2b\xf4\x1f\x04\ \x59\x03\xb1\x84\x24\xb3\x01\xc7\x46\xfe\xff\x10\xc8\x75\x82\xd5\ \x8f\x81\x11\xae\x80\x81\x9d\xb5\x80\xfd\x88\xf0\x4f\x37\x60\x30\ \x71\x83\xa1\xd7\x7f\xeb\x7f\xbc\x17\x58\xab\x18\xb9\x40\x96\xe7\ \xb3\xdf\xd4\x02\x06\xae\xdb\x7f\xb9\xff\x1c\x50\xc8\xfd\x5f\xef\ \xbf\xc7\x7f\xed\xff\xdc\x0f\x58\x2a\x18\x58\xbf\xd9\x01\xc3\x8d\ \xef\x3f\x2b\x06\x14\x03\xfa\x8b\xf3\x17\x03\x2b\x30\x7a\x18\x71\ \x40\x90\x32\x00\xe9\x5b\xf9\x39\xdc\xf0\x5b\x77\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xef\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ \xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ \x12\x0d\x25\xdf\xbf\xee\x00\x00\x00\x03\x6f\x49\x44\x41\x54\x38\ \xcb\x4d\x92\x4b\x4c\x9c\x55\x1c\xc5\xcf\xfd\xdf\x3b\xdf\xc7\xbc\ \x29\xd3\xa1\x74\x06\x0a\x42\x8b\x08\x98\x98\x31\x85\x42\x23\xa6\ \xe2\xa3\x24\x2e\x9a\x98\xb6\xc6\x34\x51\x14\x8d\xb6\xc6\x95\xc6\ \xc4\x44\x93\x76\xa1\x2c\x8c\x4d\x13\x16\x9a\x98\x2e\x6c\x5d\xf8\ \x48\x25\x31\x4d\xa1\xb6\xa1\x4c\x4a\x02\xcc\x94\xc4\x16\xd3\x2a\ \x5a\x5e\x95\x87\x14\x3a\x30\x33\x0c\xdf\xe3\xde\xeb\xa2\x25\xed\ \x59\x9d\xc5\xc9\xef\x9c\xc5\x61\x2d\x07\x5b\xe1\x98\x16\x58\x81\ \xc0\x36\x38\x66\xfb\x0b\x30\xcb\xdd\x60\xeb\xc1\x5d\x87\x4a\xe2\ \xfe\xe7\x84\x49\xe1\x51\x77\x5c\x2e\x54\x65\x6a\x13\xe5\x4f\x6f\ \x4b\xfd\x99\x5a\x98\x5e\x9d\xfe\xa4\xfb\x4c\x77\xef\x47\x5d\xaf\ \x83\xcf\x26\x67\x70\xfe\xea\x2f\x08\xf8\xbc\x4c\x59\xc0\x96\x2a\ \x6f\xf5\xde\xce\x9a\xde\xf8\x93\xe1\xa3\xfe\x32\x6a\xbc\x89\xbf\ \x76\xdd\xdd\xee\xd4\x1d\xae\x7e\x75\xeb\xa9\x86\x53\xde\xac\x27\ \x1b\xcd\xb0\xcc\xa1\xb3\xe1\xb3\x93\x97\x7f\x1a\xba\x4e\xed\x6f\ \xbd\x80\xdb\x03\x19\xfc\xfa\x4d\xbf\x1e\x3c\x77\x9d\x97\xb6\x7b\ \xbe\xa5\x0a\x7b\x4f\x56\xe4\xdc\x8c\x5e\xd7\xc9\xfc\x0d\xb6\x46\ \x6b\x18\x9a\xef\x85\x86\xc2\xcc\xbd\x5e\x08\xb1\x46\x08\xe0\x44\ \x74\x9f\x1f\xac\xe5\xfd\xdd\x60\xa6\x26\x69\x69\x45\x2e\x6f\x0b\ \x37\xd1\xa0\xe9\xe5\x92\x48\x90\x30\x88\x9d\xcb\x0e\xa2\xf0\xda\ \x06\x04\x09\x30\xc6\xb0\x29\xf6\x3d\xcb\xe3\x48\x57\x40\xd8\xfe\ \x75\x90\x4f\x43\x2b\x00\x39\x63\x47\x5e\xba\xc8\x5b\x1a\x9c\x13\ \xf3\x68\x0e\xce\x08\x45\xbd\x06\xda\x7c\xc0\x40\x87\xc6\xf1\x14\ \xc3\x85\x0c\x00\x8d\xd5\xa6\xd8\x14\x84\x99\x37\x41\x50\xd0\x0e\ \x40\x96\x67\xce\x67\x68\x88\x00\x63\x86\x10\x5a\x70\xce\x6a\xa6\ \xb7\xe1\x66\xf8\x5f\x4c\xa8\xfb\xcd\x7d\xeb\x40\xda\x86\xc2\xdf\ \xf8\x6e\x74\x2e\x01\xe1\x9d\xdf\x82\xdc\xa2\xa3\x6e\x5d\x25\xf8\ \x20\x86\xdb\x5a\x72\xe3\xfe\x08\x35\x72\xe2\x8a\x11\x63\xcd\xa2\ \x52\xd3\x84\x66\x19\x73\x05\x8d\x3d\x71\x00\x31\x18\xb7\xe6\x7a\ \xcc\xf3\xfe\x13\xbb\xbf\xec\x07\xab\x47\x17\xf6\xf6\xfd\x01\x6d\ \x71\x92\xae\x56\xd9\x7f\xa8\xb3\x6a\x9f\x71\x3a\xe8\x0b\x2a\xad\ \x34\x15\x54\x1e\x2b\x19\x4b\xb9\x36\x23\x77\x51\x0e\x9f\x39\x92\ \x7f\x16\xb0\xed\x27\x1e\x0f\x21\x54\x29\xc0\x12\x2f\xb6\x20\x28\ \x43\x18\xbb\xbc\x8c\x2c\xd2\x00\x40\x1f\x5f\xea\xb8\x58\xbd\x33\ \xd6\xae\x1d\x92\xf7\xf4\x02\xcd\x2d\xe5\x20\x73\x8c\x2d\x0d\x39\ \x1d\x81\x32\xf4\x29\x80\x5c\x0b\x2a\x72\xad\x0e\xa2\xd6\xae\xc7\ \x9d\x34\x70\xf8\x2b\x82\x51\xb2\x9f\x24\x6c\x35\x9b\x2a\x7c\x51\ \x1e\x73\xdb\x03\x9e\x10\x71\xd7\x50\x26\xf7\xf0\xd5\x65\xe7\xc2\ \x8f\xc7\xeb\xfb\x26\xf0\x1f\xab\x65\x53\x0a\xf8\x0c\x4d\x07\x3e\ \x07\x03\x80\xd6\x97\x9e\xc1\xda\x6d\x1f\x16\x67\x96\xb1\x64\xa5\ \x01\x14\x1b\x9f\x5e\x69\x1b\x2b\x2d\x0f\x35\x14\x9c\x82\x33\x3f\ \xbf\xec\x59\x4c\xe3\xbd\x70\x15\xfb\x5a\x2b\x4d\xf6\xba\x52\xa5\ \x9d\x49\x8c\x17\x7f\x70\x1f\xd0\x48\xc7\xf0\xd4\xd1\x59\xbc\xf9\ \xe1\xf3\x18\xf9\x6d\x92\x4c\xd3\x50\xc9\x8b\x63\x3f\xd7\x36\x3c\ \xf6\xca\x86\x65\xbb\x35\x55\x75\xe2\x64\x77\xcf\x1e\xc7\x75\x46\ \xb6\x46\x23\x24\xb8\x50\xee\x6a\x09\x7e\xbf\x71\x05\x0f\x9f\xf1\ \x40\xc7\xde\x79\x97\x47\xa3\x51\x39\x9a\x4e\x9d\x6e\x6d\x6e\xee\ \x8c\xc5\x2b\xe5\xf6\x78\x4c\x76\xbc\xbc\xbf\x11\xc0\x84\xd7\x2c\ \x62\x05\x6b\x43\x6f\xe6\x69\xd3\xc4\x62\x65\x78\xbb\xeb\x0d\x28\ \xee\x62\x65\xed\x2e\xc0\x55\x6e\xdd\xc9\x43\x78\x89\x4d\xdf\x99\ \x54\x00\x5c\x00\xb0\xdd\x0d\x54\x54\xc4\x1f\x3e\xf2\x91\x72\x0e\ \xc0\xe0\x9c\x17\x49\x29\x79\x69\x69\x74\x47\x22\x91\xf8\x21\x1c\ \x2e\xde\x39\x35\x35\xdd\x3d\x32\x32\x7c\xd2\x34\x4d\x58\x96\x55\ \x00\x60\x01\x70\x00\x68\xfe\x08\xc0\x03\xc0\xa7\xb5\x0e\x12\x51\ \x24\x97\xcb\x6b\xd3\x30\x87\x4a\x22\x25\x03\xc9\x64\xf2\x92\x94\ \x32\x24\xa5\xdc\xcc\xcb\x07\x8b\xf4\xff\x53\xcc\x7a\xe6\x37\xb9\ \xdd\x0f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xe8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ \x12\x1e\x22\x20\x34\x3a\x31\x00\x00\x02\x68\x49\x44\x41\x54\x38\ \xcb\x85\x90\x4b\x48\x54\x51\x18\xc7\x7f\xe7\xdc\x73\xee\x9d\x3b\ \x5a\x93\x2f\xc2\x47\xa2\x3d\xa0\x22\x51\x2c\x48\xa3\x17\x18\x46\ \x11\xb5\x29\x42\xd4\x1e\x86\x94\xd0\x32\x23\x88\x5a\x56\x8b\x08\ \x37\x19\x84\x2d\x0a\x0b\x2a\x88\xa2\x08\xa2\x45\x24\xe4\x26\x22\ \x51\x83\x32\x47\x8a\x92\x5e\x4c\x3a\xa2\x33\x77\xc6\x99\x7b\x5a\ \x58\x91\x4d\x8f\xdf\xf2\xe3\xff\xfd\xbe\x87\x30\xc6\x20\x0a\x2a\ \xba\x8a\xec\xaf\x07\xe2\xf1\x38\x63\xee\x12\x58\xd1\x48\xc8\x1b\ \xa7\x71\xe0\x0a\x37\x97\xef\xe6\x4b\xd6\x7c\x7e\x30\x37\x11\xa5\ \xa9\xff\x32\x8f\x8b\x6a\xce\x0e\x0e\x76\xb7\xab\x99\xb2\xbf\x78\ \x63\xdd\x26\x8e\x9e\x3c\xfd\x33\xf8\xe1\x62\x27\x23\x3d\x61\xaa\ \x87\xba\x58\xd1\x7d\x93\xc0\xc2\xc5\x4c\x7f\xfe\xc4\x8b\xa6\x5d\ \xc4\xc6\xc2\xf8\xa1\xc2\x46\xa0\x5d\x18\x63\x10\x42\xdc\xae\x5c\ \x55\xbb\x23\x16\x8d\x90\x2e\xa8\x26\x58\xd9\xc4\x74\xda\x67\x43\ \xef\x25\x6a\x06\xef\x30\xe5\xe6\x70\xb7\xee\x08\x9b\x7b\x3a\xc9\ \x9d\x18\x65\xa0\x7c\x2d\x57\xab\xf6\x8c\x7c\xbc\xd5\xba\x48\x7e\ \x1f\xd8\x37\x2f\xbf\x90\x48\x2a\x1b\xdf\xc9\xc1\x0d\x15\x50\x56\ \x5a\x42\x6f\xfd\x31\xfa\x57\x36\x90\x1f\x1f\x63\xff\xbd\xe3\x14\ \x4d\x8c\x12\x5e\x5a\xcf\xc3\x1d\x67\x48\x26\xbd\x77\x00\x92\x5f\ \xf0\x53\x29\x2c\x29\xf1\x8d\x24\x99\x82\xbc\x39\x0e\x7d\xab\x9b\ \x11\x4e\x36\x2e\x60\x4b\xc5\xb3\x35\x2d\xd8\x8e\x83\xd6\x9a\x4c\ \x81\x9f\xc6\xb2\x2c\x6c\xad\xf1\x52\x92\x7c\x6f\x9c\x83\xd7\xdb\ \xc8\x4d\x4c\x32\x95\x57\x46\xc8\x4f\x71\xe8\xc6\x61\x8a\xa3\xef\ \x51\xda\xce\x14\x18\x63\x50\x52\xe2\x68\x45\xbe\x37\x46\x73\x57\ \x0b\x25\x91\xb7\x0c\x57\x6c\xe5\xf2\xbe\x0e\x1e\x2d\x2b\x25\x1c\ \x9c\xe4\xd0\xb5\x56\x96\x4e\x8c\x06\x01\x14\xb3\x30\x58\x96\xc4\ \xd6\x9a\xf5\x4f\x3a\x28\x8e\xbc\x61\xb0\x6a\x1b\xf7\x1b\xce\x41\ \xda\xf0\xb4\xf9\x21\x00\xe3\x17\x2a\xd9\x39\xf4\xa0\x18\x4e\xcc\ \x16\x48\x40\x29\x8b\x60\xc0\xe6\xe5\x96\xbd\xc4\xca\x37\xd0\x57\ \xbd\x9d\x2c\x5b\x61\xfb\x06\xdf\x9f\xc9\x59\xeb\x4e\x71\xde\x59\ \x30\xdc\xf6\xfb\x06\x52\x4a\x1c\x6d\x93\xed\x06\x48\xb8\xb5\xbc\ \x2e\xa8\x25\x0b\x10\xc2\x10\x10\x02\xe3\x83\x0f\x0c\xaf\x6b\xc0\ \x1a\x78\x6e\x32\x4e\x50\x5a\x33\x2f\x27\x87\x2c\xd7\xe1\x77\xa4\ \x10\x80\xc1\x37\x06\x10\xd8\xf6\xcc\x13\x67\x09\xb4\xa5\x70\x03\ \x01\x82\x4e\xa6\x00\xc0\x12\x06\xdf\x08\x0c\x06\xad\x9d\x4c\x81\ \x52\x0a\x69\x0c\xae\x63\xf3\x37\x84\x30\x60\x04\xfa\x4f\x1b\x58\ \xca\xc2\xf3\x62\x28\x65\xfd\x5d\xf0\x33\xab\x33\x05\x08\x89\x97\ \xf0\x48\x24\xa7\xf9\x1f\x42\x58\xb3\x04\x6f\x26\x27\xc6\x89\x4f\ \x45\x89\x7c\x8d\xf2\x2a\x3c\xf2\xcf\xe6\x64\x3a\x45\x2c\x1e\xff\ \x08\xf0\x0d\xb5\xd2\xd7\x39\x77\xc6\x6b\x4e\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x9a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ \x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ \xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ \xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ \x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ \xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ \x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ \xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ \x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ \x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ \xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ \xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ \xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ \xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ \x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ \x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ \x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ \x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ \xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ \x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ \xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ \x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ \x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ \x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ \x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ \xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ \x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ \xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ \xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ \xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ \x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ \xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ \xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ \xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x13\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ \x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ \xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ \x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ \xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ \xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ \xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ \xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ \xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ \xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ \xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ \xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ \xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ \xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ \x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ \x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ \xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ \x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ \x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ \xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ \xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ \x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ \xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ \x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ \x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x03\x10\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x8d\x49\x44\ \x41\x54\x38\x8d\x9d\x91\x4d\x68\x94\x57\x14\x86\x9f\xf3\xcd\xfd\ \x7e\x92\x7c\x33\x43\xc6\x2a\x9d\x80\x34\xa4\xd0\x4d\x08\x84\x61\ \xda\x46\x24\xe2\x4e\x2d\x45\x10\x42\x57\xdd\xb5\x74\x57\xb2\x28\ \x59\x74\x55\xba\x71\xe3\xce\xac\x45\x2d\xed\xa2\x10\x6a\x88\x59\ \x54\x88\x10\x89\x10\x34\x5d\x88\x81\x89\x10\x25\x5a\x62\x17\x63\ \xa3\x33\x93\x16\xe6\xe7\xde\x7b\xdc\x98\x2f\xc6\xec\xbc\x70\x39\ \x67\x73\x9f\xf7\x79\xb9\xa2\xaa\xbc\xcf\x39\x35\x2e\xe7\xc3\xd2\ \x64\x47\x54\x95\x4a\xa5\xd2\x88\xe3\x78\xa0\xdb\xed\xfa\xe1\xe1\ \x61\x99\x9e\x9e\x0e\xc3\x30\x24\x4d\x53\xe2\x38\x66\x63\x63\x43\ \x6b\xb5\x9a\x1f\x19\x19\xd1\xd9\xd9\xd9\x17\x83\xa9\x3b\x76\xe6\ \xf4\x68\xe7\xfa\x2f\xbf\xd5\x02\x00\xef\x7d\x11\x30\xaa\x1a\xa9\ \x6a\x08\xd0\xd7\xd7\x47\xb1\x58\x64\x70\x70\x90\xad\xad\x2d\x59\ \x58\x58\xc8\x19\x63\x4c\x12\x76\xcb\x9f\x8d\x3c\xcb\x3d\xdf\x7e\ \xd2\xff\xc7\x95\x6f\x7f\xde\x03\xb0\x37\xf7\x2a\x25\x49\x42\x7f\ \x7f\x3f\x71\x1c\x63\x8c\x41\x55\x31\x41\x8f\x2f\xaa\xff\xf2\xf8\ \x1f\x43\xb3\xf5\x1f\xc7\x4f\xcc\x2e\x1a\x00\x55\x45\x44\x50\x55\ \xda\xed\x36\x41\x10\x10\x86\x21\xc6\x18\xa2\x28\xa2\x52\xa9\x60\ \x7b\x6d\xd2\xff\x7f\x67\xad\xe6\x29\x7f\x78\x84\x7b\x8f\x22\x00\ \x44\x55\x19\x1d\x1d\xd5\x28\x8a\x88\xe3\x18\x55\x25\x4d\x53\x72\ \xb9\x1c\x22\xf2\x06\xec\xb8\xf0\xf9\x73\x6e\xaf\x75\xf9\xe4\xa3\ \x3e\x6e\x3f\x18\x40\x44\x58\x5d\x5d\x95\xcc\xc0\x7b\x4f\x3e\x9f\ \xcf\x1e\xbd\x7d\xcf\x8d\x3f\x65\xe9\x2f\xcf\x64\xf5\x28\x4b\x0f\ \x3e\x00\x5e\x64\x55\xcd\x5e\xf7\x99\x99\x19\xa6\xa6\xa6\xf0\xde\ \x63\xad\xcd\x66\xfd\xe1\x45\x2e\x5f\x6b\x71\xf9\xe2\x97\xb4\x0b\ \x5f\x71\xce\x5a\xe6\xe6\xe6\x98\x9f\x9f\xdf\x07\xa8\x2a\xa5\x52\ \x89\x56\xab\x45\xbd\x5e\xc7\x5a\x8b\x73\x8e\xa7\x0f\x7f\xe5\xc6\ \xc2\x12\x3f\x7e\x7f\x86\xcd\xe6\x04\x76\x67\x8b\x34\x4d\xc9\xe7\ \xf3\x87\x0d\xac\xb5\xc4\x71\x4c\xb9\x5c\xc6\x5a\xcb\xfd\xe5\xab\ \xdc\x5c\xbc\xc5\x4f\x3f\x5c\x40\x8f\x7e\xcd\x31\x0f\xce\x39\xac\ \xb5\x99\xe1\x01\x03\xef\x3d\x8d\x46\x83\x7a\xbd\x4e\xe3\xd5\x4b\ \x0a\xa5\x8f\x99\xa8\x1c\x67\xbb\x33\x89\xfd\x7b\x3b\x0b\x49\xd3\ \xf4\xc0\x77\x1f\x30\x88\xa2\x88\x72\xb9\xcc\xdd\x3b\x7f\x32\x60\ \x5e\x71\xf2\xfc\x25\x82\x20\x77\x20\xd9\x39\x87\x73\x2e\x33\x08\ \xde\x36\xb0\xd6\xb2\x76\xff\x1e\x3b\x3b\x2f\x39\x75\xf6\x3b\x44\ \x02\xac\xb5\xf4\x7a\x3d\x7a\xbd\x5e\xb6\x1f\x32\xa8\x56\xab\x88\ \x08\xcd\x66\x93\x7c\xa1\xc8\xa7\x13\xa7\x59\x5f\x5f\xa7\xd3\xe9\ \x64\xa9\x22\x42\x10\x04\x14\x0a\x05\x44\x84\xb1\xb1\xb1\x7d\x40\ \x92\x24\x38\xe7\x88\xa2\x88\xa1\xa1\xa1\x43\xca\xef\xee\xaa\x4a\ \x92\x24\xfb\x80\xe5\xe5\xe5\x6f\x44\xe4\xe4\xca\xca\x4a\xea\xbd\ \xcf\x79\xef\x8d\xaa\x1a\x55\x0d\xbc\xf7\xf2\xa6\xa6\x13\x11\x0f\ \xf8\xdd\xdd\xdd\xc6\xe6\xe6\xe6\x1a\xc0\x6b\x0c\x31\x88\xff\xa8\ \x35\xfb\x15\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x5e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xdb\x49\x44\ \x41\x54\x38\x8d\x85\x93\x3d\x6c\x5b\x65\x18\x85\x9f\xef\xbb\xdf\ \xbd\xd7\xd7\x76\x6c\xc7\x76\x92\x0a\xa2\x26\x10\x28\x85\x40\xa9\ \x9a\x3a\x80\x14\xa1\x24\xa8\x81\x22\x16\x2a\x15\x18\x33\x95\x09\ \xa6\xce\x14\x65\xe9\x00\x02\xc4\x02\x95\x58\x40\x2c\xb0\x74\x20\ \x02\x41\xab\x0a\x75\xa8\x28\xad\x5a\x51\x0a\x74\x41\xd0\x90\x10\ \x93\xc4\xbe\xc1\xf8\xef\xfe\xbe\x0c\x08\x24\x7e\x1a\x8e\x74\x96\ \x77\x78\x86\xf3\x9e\xa3\x16\x5f\x2e\x95\x46\x6e\x9b\x10\x5f\xe8\ \x9e\x3a\x76\x39\x9a\x9b\x53\x66\x7c\xb6\x94\x2f\x17\x6e\xd7\x85\ \x16\xed\x13\x27\xae\x87\xec\x20\xed\xd8\x45\xef\x5a\x9c\xff\xf0\ \xc7\x38\xfb\xe9\x13\xaf\x1d\xbc\xe3\xb7\x3d\xa8\x81\xc1\x4a\xe6\ \x3b\xb7\xfa\xf1\x85\x6a\xf9\xfc\xe1\x37\xf6\xdf\xb5\x23\xc0\x57\ \x52\xcc\xda\xb9\x99\xa7\xee\x99\x9b\x8e\x9d\xdc\xc5\xd2\xde\xa9\ \xf9\x7a\xd0\xaf\x38\xc6\x7d\xe0\xc8\x83\x87\xa6\x62\xbb\xf8\xc5\ \x63\x6f\x4e\x3f\x7e\x4b\x40\x5f\xfa\x74\xc3\x28\x3b\x5a\x29\xe5\ \x8e\xdc\x37\x33\xe4\xba\xc5\x8f\xb6\xed\xe1\xc5\x20\x09\xb3\xbb\ \xab\x59\xb3\x38\xbd\x50\xc9\x67\xca\xcb\x8f\xbe\xfe\xd0\x71\xf5\ \x8c\xb2\xfe\x05\x90\x08\x49\x62\xf0\xdb\x0d\x72\x9e\xf0\xf4\xbe\ \x29\xbb\x52\x18\x3e\x2e\x12\xd3\xe9\x37\x70\xec\x0e\xcf\x1e\xa8\ \x99\xb1\xea\xae\x57\x1e\xae\xd5\xde\x7f\xf2\xa5\x89\x81\xbf\x01\ \xba\x03\xb1\x1d\x26\x21\xad\x5e\x83\x76\xd0\x40\x74\x8b\x85\xc9\ \x3b\xd9\x37\x52\xd9\xec\x27\x3e\xfd\xd8\x27\x48\x36\x99\xbf\x7b\ \x8c\xda\xc4\xee\xe7\xb6\xf2\x83\xe7\x67\x4e\x4e\xfe\x95\x8b\x1e\ \x71\x52\x2b\xec\x84\xb4\xfa\x4d\x7a\x91\x4f\x90\x34\x89\xa5\xc1\ \xbd\x63\x99\xa1\x58\xf9\xc4\x34\x89\xc5\xa7\x13\xd6\x19\x2f\xd8\ \x2c\x4c\x8e\xef\x4f\xc5\xbb\x38\xbd\x54\x3b\x0c\xa0\x3d\x2b\xb1\ \x9b\xbe\xcf\xf7\xf5\x6b\x6c\x77\xd7\x10\xd5\x02\xab\x89\x36\x4d\ \x2c\xd3\x04\xcb\x27\xd5\x4d\x62\x7c\x82\x74\x03\x93\x6e\x31\xb3\ \x77\xb8\x6c\x52\xf5\x1e\x80\xc9\x79\x89\xd3\x6b\xb5\xd9\x68\xfd\ \x82\x72\x7e\x20\x32\x16\xa3\xd5\x32\x5a\x19\xd0\x90\x24\x8a\x6e\ \xac\xe8\x04\x01\x7e\x27\x64\xb5\x1e\xb2\xd5\x86\xcd\x66\x45\x00\ \x8c\x07\x26\xea\x45\xb8\x8e\xc2\xcb\x28\x2a\x25\xa1\x54\x6a\x60\ \xbb\x06\xad\xa1\xdf\x13\x12\x11\x3a\x61\x4a\x3f\x4c\x09\xb0\xf9\ \xfa\x72\xa1\x45\x26\x7e\x1e\x40\xa7\x92\x98\xa0\x1b\xe1\x38\x30\ \x90\x83\xac\x23\x68\xa5\x39\xb3\x9c\xb6\x87\x2a\x9a\xc1\x82\xe0\ \x66\x52\x50\xf0\xd3\x9a\xcb\xb9\x4f\xb2\x37\x23\xd4\x23\x1b\xef\ \xde\x3c\x0d\xa0\xcb\x05\xc9\x96\xdc\x80\x8c\x0d\x49\x0c\xeb\x1b\ \x16\x6f\xbd\x0d\x57\xaf\x26\x79\xd2\x84\x24\x85\x7e\xa8\x59\x3e\ \x6d\x38\xfb\x99\x7d\x41\x72\xfa\x7e\xff\x83\xd5\x6f\xff\xfc\x82\ \xc1\x12\x93\xb7\x23\xda\x6d\xa1\xbe\x06\x97\x3e\x17\xd9\x33\xa9\ \xcf\x16\xb2\x72\xe8\xe7\x7a\xca\xf6\xaf\xc2\xc9\x25\x64\xb3\xe7\ \xbe\x13\x9c\xd9\x3a\xf6\xcf\x22\x99\x2f\xaf\x5b\xeb\xab\x2b\x92\ \xb4\x2c\xc2\x95\xaf\xc4\x38\x55\xe7\xc5\xd1\x5d\xc1\x95\x2b\x97\ \xf4\xfc\x37\x37\x12\x79\x75\x09\x91\x01\xef\x85\xe8\x5c\xe3\xd4\ \x7f\x76\xf9\xe8\x51\x2c\x55\xf3\x56\x38\x90\x59\x67\xae\x78\x50\ \x44\x98\x9d\xc5\xe8\x9a\xb7\xa2\xa6\xbc\x75\x35\xff\xc7\xed\x56\ \x56\x22\xb2\xd3\xd8\xfe\x57\xbf\x03\xd4\x0b\x53\x31\xe2\x01\x62\ \x9f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x7e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xfb\x49\x44\ \x41\x54\x38\x8d\x95\x92\x4f\x6b\x1a\x51\x14\xc5\x7f\xef\xa9\x38\ \xcd\x7a\x16\x5d\x14\xa4\xd0\x65\x9b\x92\x45\x05\x91\xe2\xae\xed\ \xb6\x76\xd7\x64\x95\x0f\x60\x3f\x44\x0b\xfd\x43\xc1\x76\x15\x42\ \x20\x10\xb2\xf6\x3b\xe8\xc2\x8a\x28\x86\x5a\x90\x11\x0c\x74\x21\ \xb3\x10\xd4\x2c\x26\xe3\x8c\xa3\x73\xbb\x88\x63\x75\x48\x0a\x3d\ \x70\x37\xef\x71\xce\x3d\xf7\xde\xa3\x80\x47\xc0\x2e\xff\x87\xae\ \x88\x0c\x00\x92\xc0\xee\x68\x34\xaa\x84\x22\x68\xad\xd1\x5a\xa3\ \x94\xda\x2a\x80\xcb\xc1\x80\x76\xbb\xcd\xde\xde\x1e\xd9\x6c\xf6\ \x0d\x30\x00\xd0\x00\xa1\xfc\xbb\xdd\xd5\xd5\x15\xc3\xe1\x90\x83\ \x83\x03\x5a\xad\x16\x85\x42\xe1\x69\xf4\xa7\x01\x12\x09\x4d\x22\ \x91\x58\x3b\xd0\x5a\x93\xd8\xa8\x45\x10\x60\x9a\x26\x3b\x3b\x3b\ \x1c\x1e\x1e\x92\xcb\xe5\xde\x95\x4a\xa5\x27\x00\x0a\x28\x8e\x27\ \x93\x0a\x22\xa8\x48\x40\x29\xc2\x30\xa4\xd3\xe9\xe0\xba\x2e\x8e\ \xe3\xe0\x38\x0e\xfb\xfb\xfb\x18\x86\x81\x65\x59\xfd\xa3\xa3\xa3\ \x7b\xae\xeb\xe6\x14\x50\x9c\x4c\xa7\x15\xe0\xaf\x83\xd5\xdc\xa9\ \x54\x6a\xed\x2c\xda\x45\x84\x5e\xaf\x57\x2b\x97\xcb\xa3\x64\x44\ \xbc\x4d\xe0\x36\x62\x1c\x37\x02\x11\x41\xa9\x9b\xd2\x9a\xe5\x72\ \x49\xbd\x5e\xe7\xfa\xfa\x7a\x6b\x84\x74\x3a\x8d\x65\x59\xfd\xe3\ \xe3\xe3\x87\xc0\xdb\x24\x80\x8a\x3b\xd0\x37\x4b\xcd\xe7\xf3\x28\ \xa5\xb0\x6d\x1b\xdb\xb6\x49\xa7\xd3\xf8\xbe\xcf\xd9\xd9\xd9\x7d\ \x11\x79\x7e\x72\x72\x62\x27\xa3\x4d\x46\x37\x8f\xc6\x61\xe3\xcd\ \x30\x0c\xc6\xe3\x31\x9e\xe7\x71\x7a\x7a\x4a\xa3\xd1\xf8\x5e\xad\ \x56\x7f\xad\xcf\x48\x8c\x1c\x0f\x92\x69\x9a\x64\x32\x19\xce\xcf\ \xcf\xc9\x66\xb3\x52\xab\xd5\x2e\xb6\x72\x10\x27\xc4\x53\xe8\x79\ \x1e\x4a\x29\x5e\xbc\x7a\xc9\x8f\x66\xb3\x09\xfc\xdc\x5c\x64\xd1\ \x75\x5d\xf1\x3c\x4f\xe6\xf3\xb9\x04\x41\x20\x8b\xc5\x42\x96\xcb\ \xa5\x84\x61\x28\x41\x10\x48\xb7\xdb\x95\xf9\xdc\x97\x0f\x5f\x3e\ \xf7\x81\xc7\x80\x12\x11\x44\x64\x25\x30\x9b\xdd\x29\xe0\x38\x8e\ \x0c\x2e\x2f\xe5\xfd\xa7\x8f\x7d\xe0\x19\xa0\x23\x72\x24\xf0\xda\ \x9d\xcd\x42\xdf\xf7\x25\x08\x82\x2d\x01\x11\x91\xc9\x74\x1a\x7e\ \x2d\x7f\x6b\xac\x3a\x6f\x91\x45\x04\x05\x3c\x58\x29\xdf\x95\x98\ \x70\x35\xf3\x6f\x89\x5a\x6e\xe0\x0f\xd5\xf2\x24\x09\x1c\xd8\x9f\ \xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x33\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xb0\x49\x44\ \x41\x54\x78\xda\xa5\x93\x3f\x48\xc3\x40\x18\xc5\x5f\xa2\xd8\x74\ \xab\xda\xc1\x3a\xd6\x55\xc4\xcd\x41\x10\xff\xd0\xad\x45\xa1\xe2\ \x24\xae\x8e\xea\xe0\x20\xc5\x4d\xb0\xe8\xac\xb8\xbb\xa8\xb8\xd9\ \xc1\x41\x67\x37\x05\xc7\x42\xc1\x0e\xd6\x52\x41\xcd\x35\x7f\x9a\ \xb6\x97\x78\x5f\x22\xe1\x42\x1d\x0a\x7d\xb9\x7c\x97\xc0\xbd\xdf\ \x3d\xbe\x5c\x14\xcf\xf3\x30\x88\x86\xa9\xe4\xb2\xd9\xef\x56\xcb\ \x49\xec\xec\xed\x43\x96\xa2\x52\x55\xa1\xaa\x0a\x14\x05\x50\x10\ \xdc\xa7\x27\x45\x68\x5a\xec\xe7\xae\x54\x1a\xf5\x01\x96\x69\x25\ \x26\x52\x13\x58\x58\x5c\x82\x27\x03\x80\xc0\x28\x0a\x41\xc4\xf0\ \xe7\xdb\x9b\x2b\x54\x2a\x95\x44\x98\xc0\x75\x5d\x68\x31\x0d\xda\ \xc8\x10\x2e\x1f\x5e\xa3\x29\xfc\x42\x23\x48\xb1\x95\x99\x01\xe7\ \xdc\xf7\x84\x00\x2e\x5e\xba\xdd\xae\xa0\x03\x9b\x2b\xd3\xb4\x3e\ \x4c\x42\x3d\x72\xbd\xbf\x59\x3c\x98\x4e\x87\xd6\xfa\x9e\x48\x02\ \xa2\x36\xed\x36\x99\x43\x79\x01\x81\x06\x5c\x02\x04\x90\xde\x04\ \x2e\xe7\x3e\xd5\x10\x80\xeb\xfb\x27\xc8\x0a\xbf\x12\xa5\x10\x57\ \x3e\x33\x47\x6b\xc9\xd3\x9b\x80\x19\x36\x32\xf3\xb3\xb2\x1b\x9e\ \x64\x26\x56\xd3\x74\xfe\x49\xe0\x72\x70\x41\x3d\xdc\xdd\x46\x9f\ \x22\x8f\xd4\x44\x1e\x34\xb1\x7f\x05\x9e\x68\x0f\x3a\x1d\x90\x8e\ \x8a\xc7\x88\xc7\xe3\x61\x7c\x3a\x03\x24\x8a\xbd\x91\x5f\xf7\xe7\ \xa9\x74\x3a\xda\x83\x8e\xd8\xdd\x69\xb7\x41\x2a\x97\xcb\xb8\x38\ \x3b\x87\x65\x5b\x38\x28\x14\x20\x2b\x35\x39\x89\xda\x47\x8d\x3e\ \x21\x79\x24\x80\xd8\xdd\x71\x1c\x90\x18\x63\x30\x4d\x13\x86\x61\ \x40\xd7\x75\xc8\xf2\x84\xd1\x15\xd1\x93\xc9\x24\xde\xaa\xd5\x48\ \x13\xbf\x18\xd3\xc7\xe8\x34\x32\x9d\xc1\xb6\x6d\x4a\xd4\x03\x20\ \x30\x6d\x66\x5b\x16\xb8\x9c\x40\xe1\x7c\x99\x35\x9b\x8f\xba\xce\ \xc6\x1b\x9f\x0d\xe4\xd6\x56\x41\xaa\xd7\xeb\x90\xf5\x5e\xab\x51\ \x0e\x3c\xbf\xbc\x40\x1d\x52\x7f\x20\x34\xf0\xef\xfc\x0b\xfb\xd2\ \x1e\xf6\x17\x50\x4f\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\xd0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x09\x1c\x09\x10\x1f\x1c\x2b\x28\x4a\x00\x00\x02\x5d\x49\x44\ \x41\x54\x78\xda\xc5\x52\x4b\x6b\x13\x51\x14\xfe\x32\x77\xf2\x6a\ \x3a\x4d\x22\x48\x93\xd8\xa6\x69\xb4\x26\xad\xb6\x41\x5d\x88\x20\ \xd8\x2e\x7c\x81\x15\x1f\x08\xe2\x3f\x10\xac\xbf\xc3\xfe\x01\xe9\ \x5a\xb0\x5d\xb9\x74\xa3\x2e\x14\x41\x62\x10\x0a\x42\x63\x93\x91\ \xd0\xe6\xd1\x36\xe9\x98\x64\xda\xbc\x27\xcd\xf5\xdc\xc1\x94\x6c\ \x5c\x8a\x1f\x7c\xdc\x99\x7b\xee\xf9\xce\x77\xce\xbd\xf8\xef\xb0\ \xf4\x3f\x22\x91\x08\x5b\x5d\x7d\x7d\x75\x74\x74\x74\xc1\x6e\x77\ \x9c\x95\x24\xe9\x24\xc0\x87\x7a\xbd\x1e\x8e\x8e\x8e\x9a\x86\x61\ \xec\xb7\xdb\xad\x74\xa5\x52\xf9\xb8\xb4\xf4\xfc\x73\x3c\xfe\xb5\ \x8b\x3e\x96\x97\x5f\xf8\x93\x3f\x36\xe2\xa5\x52\x91\xb7\x5a\x2d\ \xde\xe9\x74\xcc\xb5\xd1\x68\xf0\x5a\xad\xc6\x0f\x0e\x74\x5e\xad\ \x96\xb9\xa6\x95\xf8\xee\x6e\x81\xab\x6a\xea\xdb\xca\xca\xcb\x31\ \x10\x24\x10\x26\x27\x43\x4f\x95\x61\xe5\xb2\xd5\x6a\x1d\x30\xc7\ \xc1\xb9\x60\xef\xd8\xac\xc5\x62\x81\x2c\xcb\x50\x14\xe5\xd2\xf8\ \xf8\xf8\xb3\xbe\x80\xd5\xed\xf1\xdc\x10\x41\x01\xb2\x2c\x12\x4d\ \x76\xbb\x5d\x61\xdf\xdc\x1b\x80\x29\xe4\xf1\xb8\xaf\x8b\x5c\x69\ \x7e\xfe\x5a\xf0\x84\xd7\x7b\x71\x20\xfe\x27\x89\x83\xe6\x00\xc2\ \xb1\xe0\x00\x48\xc0\x13\x5b\x5c\xbc\x73\x5a\xbe\x77\xff\xee\x03\ \x2b\x41\x1c\x38\x3c\xac\x41\xd7\x0f\xcc\xca\xcd\x66\x13\xe5\x72\ \x19\x36\x9b\x0d\x5e\xaf\x07\x8c\x31\xaa\x2c\x51\x0b\x0c\x76\xbb\ \x8d\xfe\x65\x76\xeb\xf6\xcd\x87\x72\xa9\xf8\xeb\x82\xa6\x95\x21\ \x48\x3a\xa6\xbd\xf5\xf5\x75\x6c\xa6\x36\x11\xf0\x07\x30\x11\x9a\ \x80\xd1\x31\x10\x08\x04\x30\x32\x32\x22\xda\x31\x0b\xf4\x68\x36\ \xfb\x25\x6d\x56\xde\xde\xde\x66\xf5\x7a\xdd\x4c\xa6\xe9\xa3\x50\ \x28\x40\xfd\xa9\x62\x7a\x7a\x1a\xb9\xec\x0e\xde\xbf\xfb\x00\xbf\ \xdf\x07\xba\x3e\xcc\xcc\xcc\xf4\xdb\x32\x45\xf2\xf9\x02\x98\xcf\ \xe7\x7b\x44\xc1\x73\x99\x4c\x06\x82\xe9\x74\x1a\x7a\x55\x47\xa5\ \xda\xc6\xe3\x27\x4b\x08\x06\xc7\xb0\xb6\xf6\x0a\x21\x72\x42\xce\ \x44\xef\x94\x98\x37\x85\x52\xa9\xd4\x86\xec\x74\x3a\xf9\xdc\xdc\ \x1c\xfa\x57\xa8\xaa\x2a\x12\x89\x04\xb4\x4a\x03\x6f\x3f\x7d\x41\ \xad\xae\xc3\xe9\x52\x4c\xeb\xb1\x58\xcc\x5c\xdd\x6e\x37\xe8\x9d\ \xa0\xdd\x6e\x83\x85\xc3\xe1\x00\x6d\x4c\x91\x80\xc2\x08\x22\xa8\ \xeb\x3a\x72\xb9\x2d\xe4\xab\x74\xa8\x75\x88\x85\x2b\xb3\x18\x56\ \x86\xe1\x70\x38\x84\x80\x48\x36\x34\x4d\xdb\xca\x66\xb3\x6f\x2c\ \x00\x04\x5d\x64\x29\x18\x8d\x46\xcf\xd3\x53\x9e\x72\xb9\x5c\xa7\ \xf6\x8a\x7b\x3e\x99\xc9\x67\x86\x5c\x43\x4d\x12\xcd\x30\x89\x55\ \x48\x78\x87\x12\xd5\x64\x32\xf9\x9d\xaa\xe7\x00\xd4\x2d\xf8\x3b\ \x24\xa2\x8d\xd8\x23\x1a\x44\x8e\x7f\x81\xdf\xa3\x70\x33\x35\x18\ \x40\x99\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x13\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ \x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ \xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ \x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ \xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ \xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ \xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ \xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ \xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ \xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ \xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ \xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ \xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ \xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ \x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ \x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ \xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ \x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ \x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ \xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ \xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ \x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ \xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ \x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ \x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\xe1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x02\xa8\x49\x44\x41\x54\x78\xda\x85\x93\x5f\x48\x53\x51\ \x1c\xc7\x17\x24\xc5\x0a\x91\x84\xfe\x58\xad\xa7\x0c\x8a\x90\x10\ \xa3\x29\x65\x3e\x14\xd9\x93\x06\x9a\x86\x11\x65\xcd\x69\x43\x2b\ \x85\x5a\x56\x0f\xb9\x34\x34\xd7\x28\x87\xf9\x50\x09\x81\x81\xe0\ \x83\x92\xe6\x60\x56\x8e\x4c\x1f\x54\x6a\x9a\xe1\xb4\x6c\xa1\xb9\ \x7f\x6e\xbb\xbb\x77\x77\x6e\xbb\xbb\xdf\xce\xee\xe6\xd4\x30\x3a\ \xf0\xe1\xf0\x83\xf3\xfd\xfc\x7e\x70\xce\x11\x01\x10\x20\x2b\x81\ \x20\x8d\x92\xfe\x7f\x84\x73\x09\x2b\x05\x52\x9b\xcd\x06\x8b\xd5\ \x0a\x9b\xdd\x0e\xc7\xc2\x02\x16\x9c\x4e\x38\x5d\x2e\xb8\xdc\x6e\ \xb8\x29\x4a\x80\xf2\x78\x04\x68\x86\x81\x20\x59\x21\x48\xb7\x58\ \xff\x29\x88\x85\x3d\x51\x98\x88\x20\x7d\x95\xc0\xee\x70\x80\x10\ \x0e\xc7\x82\x14\x45\x09\x01\x9a\xa6\x85\x10\xe3\xf5\xc2\x4b\x60\ \x59\x36\x22\x50\xe6\xee\x4c\x5c\x12\x84\x3b\x8e\x0e\xbc\x45\x9b\ \xe6\x2a\xea\xe4\xa9\xb8\x9d\x2f\x41\x83\x42\x0a\xdd\xeb\x7a\x98\ \xa7\xbe\x80\xf5\xf9\xe0\x8b\xb2\xe8\xf7\x47\x04\x0f\xe5\x69\x46\ \x65\x7e\x52\xd5\xfe\xdd\xe2\x9c\x47\x15\x47\xd1\xf9\x38\x03\xe6\ \xa1\x22\x50\x33\xa5\x08\xb8\xaa\xe0\xf9\x29\x87\x79\xb0\x10\xba\ \xe6\x2c\xbc\xac\x2d\x82\x8f\xf5\x22\x10\x08\x20\x18\x0c\x46\x04\ \xcd\x95\x07\x38\x7d\xcb\x71\xbe\xe6\x62\x72\xc8\xa4\x2f\x84\xef\ \x77\x19\xa1\x64\x0d\x4a\xf1\xfd\x43\x01\xd4\x8a\x43\xa0\x5c\xf6\ \x65\x81\xf6\xda\x3e\x8e\x36\xc9\xe1\xfe\x56\x0a\x7a\xba\x44\x80\ \x1a\x2b\x86\xa3\x3f\x17\xf3\x5d\x87\x61\x7f\x7f\x12\x9e\xf1\x4b\ \x60\x4c\x57\x04\x66\x3f\x9e\x83\xba\xfc\xd8\xb2\xe0\x69\x79\x32\ \xe7\x32\x16\xc3\x39\x4e\xf8\x5a\x8c\xd9\xbe\x0c\x4c\x3c\x4f\x40\ \xcf\xbd\x78\xbc\x52\xc4\xe3\x4d\x95\x18\x93\xea\x4d\xb0\xea\x4e\ \xc1\x3d\x72\x41\x40\xaf\xcd\x80\xa1\xeb\x59\x44\xf0\x44\xb1\x97\ \xb3\x0d\x17\xc1\xfe\xf9\x3c\x7e\xf5\x4b\x31\xd1\x11\x8f\xc6\x92\ \x1d\xe8\x6d\xab\xc7\x94\x71\x00\x1d\x2d\xb7\xa0\x29\x4b\xc1\xe8\ \x03\x31\xac\xbd\xd9\x64\xb2\x7c\x58\xdf\xe5\xe1\x4e\xc1\xae\xc8\ \x3b\x50\xcb\x24\xdc\x9c\x21\x1b\xf3\x23\x67\x30\x37\x92\x85\x99\ \x21\x09\xda\x55\x89\x30\x0e\x76\x0b\x63\x72\x1c\x07\xda\xed\x40\ \x7b\xcd\x09\x98\x5b\x0f\x12\x49\x0e\x2c\x3d\xa7\xd1\x5c\x91\x12\ \x16\xa4\x89\xee\x9e\xdd\x6e\x69\xbc\xbc\x95\xd7\x94\x25\xf1\x4d\ \xd7\xf7\x40\x5b\x29\x41\xd3\x8d\x6d\xd0\x2a\x33\xe1\x71\xd9\x11\ \x0a\x85\xc0\xf3\x3c\xfa\xda\x1b\x31\xdc\x9a\x87\x81\x2e\x0d\x8c\ \x43\xdd\x68\x50\xdd\x1c\x23\x82\x38\x82\x68\x9d\x4c\x96\x1a\xb7\ \x79\xe3\xfa\x4c\xca\xed\x04\x43\x53\xb1\x6b\x22\xdd\x63\x82\x4f\ \x3d\x2f\x60\xe8\xd4\x0a\x75\x43\x5d\xf5\x34\xc9\x89\x01\x88\x56\ \xfd\x05\x96\xf5\x82\xf5\x7a\xe0\xf7\xfb\x57\x09\x16\x7d\x0c\xc6\ \x0c\x6d\x18\x1d\xd4\xa3\x56\x55\x6d\x22\x67\xb7\x08\xb9\xbf\x04\ \x47\x58\x96\xe1\x17\x7d\x34\x99\xc0\x1f\x46\x10\x04\xc9\xee\xb4\ \xfc\x80\x65\x52\xc7\xab\xee\x2b\x87\x97\x3a\xaf\x25\xd8\x10\x96\ \xac\xfd\xa5\x85\x3a\x8d\x10\x17\x0b\x47\xf9\x03\x3a\xca\x9b\x53\ \x60\x80\xcc\x4d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x03\xae\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xa4\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x2e\x2e\x2f\x2f\x2f\x16\ \x16\x16\x1a\x1a\x1a\x10\x10\x10\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x12\x12\x12\x07\x07\x07\x11\x11\x11\x05\x05\x05\x05\x05\x05\x03\ \x03\x03\x05\x05\x05\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x07\x07\x07\x00\x00\x00\x02\x02\x02\x05\x05\x05\x20\x20\x20\ \x20\x20\x20\x03\x03\x03\x00\x00\x00\x14\x14\x14\x16\x16\x16\x14\ \x14\x14\x15\x15\x15\x0e\x0e\x0e\x3b\x3b\x3b\x2c\x2c\x2c\x37\x37\ \x37\x37\x37\x37\x3f\x3f\x3f\x31\x31\x31\x43\x43\x43\x54\x54\x54\ \x75\x75\x75\x11\x11\x11\x53\x53\x52\x55\x54\x53\x3c\x36\x32\x8b\ \x8b\x8b\x4b\x4b\x4b\x50\x50\x50\x57\x57\x57\x20\x20\x20\x42\x42\ \x42\x4a\x4a\x4a\x51\x3b\x29\x72\x72\x72\x81\x81\x81\x84\x7b\x73\ \x9f\x91\x83\x03\x03\x03\x07\x07\x07\x0b\x0b\x0b\x0e\x0e\x0e\x10\ \x0a\x07\x10\x10\x10\x11\x11\x11\x12\x12\x12\x14\x14\x14\x1d\x15\ \x0f\x1e\x1e\x1e\x1f\x12\x0a\x20\x20\x20\x21\x21\x21\x22\x22\x22\ \x23\x10\x00\x24\x1a\x16\x26\x26\x26\x2d\x1c\x11\x2d\x2d\x2d\x30\ \x27\x21\x36\x20\x0e\x38\x38\x38\x3e\x3e\x3e\x41\x41\x41\x44\x20\ \x03\x47\x47\x47\x49\x49\x49\x4b\x28\x0c\x4e\x28\x0c\x52\x44\x39\ \x52\x52\x52\x54\x54\x54\x55\x55\x55\x58\x28\x00\x59\x56\x54\x5d\ \x5d\x5d\x5f\x3c\x22\x60\x2d\x01\x60\x3f\x25\x64\x48\x30\x66\x62\ \x61\x67\x52\x45\x69\x63\x60\x6c\x34\x01\x6f\x6f\x6f\x70\x56\x46\ \x74\x47\x21\x77\x38\x02\x78\x44\x15\x78\x78\x78\x7b\x5d\x43\x7c\ \x41\x0d\x7c\x65\x50\x7f\x7f\x7f\x83\x83\x83\x85\x85\x85\x89\x89\ \x89\x8a\x8a\x8a\x8e\x8e\x8e\x90\x60\x34\x90\x90\x90\x93\x93\x93\ \x9a\x62\x39\x9a\x63\x3a\xa4\x72\x4b\xa9\x79\x55\xb1\x99\x82\xb8\ \xb8\xb8\xc0\xc0\xc0\x67\x17\x18\xb9\x00\x00\x00\x46\x74\x52\x4e\ \x53\x00\x01\x02\x03\x07\x08\x0d\x0e\x1b\x1d\x23\x27\x2e\x33\x43\ \x59\x66\x81\x82\x84\x8d\x95\x9b\xaa\xac\xae\xb5\xb5\xb8\xb9\xc0\ \xc1\xc7\xcd\xcd\xcd\xcf\xd0\xd2\xd7\xdc\xdf\xe9\xea\xf0\xf2\xf5\ \xf5\xf7\xf7\xf8\xf9\xf9\xf9\xfa\xfb\xfb\xfc\xfc\xfd\xfd\xfd\xfe\ \xfe\xfe\xfe\xfe\xfe\xfe\xfe\x61\xda\xb4\x94\x00\x00\x01\x2a\x49\ \x44\x41\x54\x78\xda\xb5\x90\x4d\x52\xc2\x30\x00\x46\xd3\x24\x6d\ \x21\xa4\x48\x2d\x50\x08\xca\x80\xe3\xa8\x1b\xd9\xb8\x72\xc6\x85\ \x27\x70\xe5\x91\x39\x82\xba\x71\xd4\x8a\xa3\x45\x68\xa9\x90\x4a\ \xfa\x93\x36\x0e\x3a\x0e\x17\xd0\xb7\xf8\x16\x6f\xf7\x3d\xf0\x8f\ \xa0\x9f\xb5\xbb\x44\x65\x80\xb6\x5a\x5a\xa6\xb6\xba\x3e\x64\x75\ \xb9\xd4\xd8\xa0\x59\xe3\xe9\xaf\x86\x96\xd3\xb6\x61\x02\xad\x46\ \x8b\xaa\xb4\xcc\xd5\xb7\x36\x7a\x1d\xe7\x42\x8f\xd0\xf5\xd9\x54\ \xdf\x3f\x9d\x12\x53\x14\x1b\x6d\xf7\xae\x4e\x28\x0c\x76\x78\x54\ \x01\x03\x7a\x70\xf4\x2a\xd6\x00\x03\xcb\xa5\x8f\xb8\xc8\xbb\x6f\ \x1c\x18\xec\xc1\xd4\x24\x75\x53\x8e\xcc\x3d\xe7\xd2\xb1\x71\xc8\ \x5d\x2f\x39\x9c\x29\xe6\xda\xfb\x3e\x8c\x51\xa3\x7d\xee\x3d\xcd\ \x1a\x78\xa9\x7c\x59\x4f\x5d\xfd\xee\x85\x1f\x4f\x05\x26\x64\xe2\ \xf4\xa5\x6f\x2b\x13\x02\x33\x46\xfe\x10\x7f\x4c\x08\xc1\xa4\x9f\ \x2b\x1b\x16\x8b\xdc\x5b\x2b\xaf\xb2\x72\x3a\x65\x84\xfb\x73\x54\ \x2d\x3b\x96\x4c\x84\xe7\x3f\x07\xab\x55\xa1\x76\xcb\x45\x33\xbb\ \x0f\x60\x2c\x58\xb5\xc0\x4c\x84\x73\x91\xcc\x43\xc1\xb0\x21\x5d\ \x11\x23\x09\x66\xd1\x68\x7c\xb3\x0c\xf2\xcd\x69\x73\x12\x8e\xc6\ \xb7\xef\x91\x06\x74\x6a\xd5\x32\x1e\xaf\xc1\x06\x42\x2d\xe3\x93\ \xc7\xf9\x36\xe3\xb6\xe9\x5f\xf1\x05\x32\xe0\x83\x39\x86\x2c\xe5\ \x0a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ \x0f\x1f\x23\x16\x66\x68\x50\x00\x00\x02\xaf\x49\x44\x41\x54\x38\ \xcb\x95\x92\x4d\x6b\x24\x55\x14\x86\x9f\x5b\x1f\x5d\xd5\x5d\xdd\ \xda\x5d\x55\x19\xa3\x61\x20\xb8\x10\x61\x42\x76\xc9\x2a\x38\x2e\ \x8c\x3b\x37\xc1\xcd\xfc\x07\x0d\x08\x6e\x02\xd9\x38\x5b\x05\x21\ \xce\x1f\x88\xff\x20\x30\xd9\x89\x04\x09\x04\x87\x2c\x24\x04\xc4\ \x91\x86\x18\x8c\x4c\xba\x53\x49\x77\xd7\x47\xdf\xaa\xba\x55\xd7\ \x45\xe8\xc4\x01\x5d\xf8\xc2\xe1\x2c\x0e\xe7\x39\x87\x97\x57\xec\ \xef\xef\x3f\x09\x82\xe0\xbb\x76\xbb\x1d\x00\x18\x86\x81\x10\x02\ \x21\x04\x33\x69\xad\xef\xba\xd6\x9a\xba\xae\x91\x52\x46\x83\xc1\ \xe0\x73\x71\x74\x74\x74\xb5\xb7\xb7\x17\x44\x51\x44\xb3\xd9\xc4\ \x71\x1c\x1a\x8d\x06\xb6\x6d\x63\x9a\x26\x00\x75\x5d\xa3\x94\xa2\ \x2c\x4b\xf2\x3c\x47\x4a\x49\xaf\xd7\x63\x63\x63\x23\xb2\x3c\xcf\ \x0b\xfa\xfd\x3e\x4f\x1f\x7d\x4a\x10\x86\x77\x57\x51\x35\x14\x0a\ \x8a\x02\x2a\x05\xe5\xac\x2a\xa2\xf8\x9a\xa7\xa3\x9f\xf1\x3c\x2f\ \xb0\x66\x17\xe6\x12\x4d\xd0\x2d\xc0\x2b\xc0\x4b\x61\x98\x40\x95\ \x40\x91\xc1\x34\x87\x44\x42\x52\xc2\xa4\xc2\x18\x8c\xa9\x1e\x56\ \x00\x58\x00\x55\x55\x21\x8c\x31\xb8\x0a\x3e\x19\x42\x3b\x85\xb3\ \x09\xfc\x70\x09\x64\xa0\x25\xe4\x39\x50\x83\xaa\x10\xba\xa0\xaa\ \xe6\x6f\x01\x33\x53\x8a\xf0\x15\x97\x4d\x8d\xb8\x98\x32\xf7\xf0\ \x1d\x44\x47\x82\xbe\x02\x62\xb0\x26\x24\xcd\x84\xeb\x3c\x01\xa1\ \x90\x6e\x03\xad\xdf\xba\x07\xb8\xae\xcb\xf7\xc3\x33\xbc\xc4\x21\ \xf9\x65\x82\xa1\x5f\xa2\x8b\x29\xe9\x28\xe6\xe2\x26\x25\x8a\x53\ \xd2\x24\xc6\x50\x05\x0d\x03\x92\x7c\x82\xbf\x24\xee\x01\x37\x37\ \x37\xfc\x78\xf1\x2b\xf3\x0f\x7c\x16\x17\x4c\xe6\x7b\x9a\xdf\xce\ \x46\xfc\xf1\x67\xca\x24\x9e\x92\x26\x19\x85\xaa\x10\xc2\xc0\xb2\ \x4d\xf2\x42\xe0\x66\x19\x5a\xeb\x5b\x0f\xca\xb2\xe4\xf7\xb3\x6b\ \x5e\x8d\xc6\xbc\xbb\x50\x51\xeb\x8a\x69\x59\xf3\xf2\xd2\x20\x95\ \x0e\xa6\xd5\xa5\x50\x05\x9d\x4e\x07\xcb\xb2\x18\x4e\x86\x84\x65\ \x79\x6f\xa2\x52\x8a\xce\xc2\x7b\xb8\x6f\x08\x22\xab\x46\xd6\x39\ \x63\x53\xe1\xce\x09\x2a\xd9\xc4\x69\xb5\xa8\xeb\x1a\xd3\x34\x31\ \x4d\x93\x6e\x6b\x0e\xa5\xd4\x2d\x20\x4d\xd3\x68\x79\x79\x39\xe8\ \xf7\xfb\xb4\x5a\x2d\xae\x06\x4d\x12\xd7\xc5\x7f\xd3\xe5\x83\x15\ \x07\xc3\x30\x28\x8a\xe2\x2e\x40\x52\x4a\xb2\x4c\xb3\xb8\xb8\x48\ \x96\x65\x91\xd8\xdd\xdd\x7d\xb2\xb4\xb4\xf4\xac\xd7\xeb\xf9\xfc\ \x0f\xc5\x71\x7c\x7d\x7a\x7a\xfa\x99\xf8\x8f\xb9\xb1\xb3\xb3\xf3\ \x4d\x18\x86\x5f\x28\xa5\x38\x3f\x3f\xff\x76\x7b\x7b\xfb\xcb\xdb\ \x20\xbc\xae\xd7\x00\x5b\x5b\x5b\xef\xaf\xaf\xaf\x7f\x6d\x18\xc6\ \x63\xd7\x75\x3b\xe3\xf1\x18\x29\x25\x8e\xe3\x60\xdb\x76\x62\x9a\ \xe6\x4f\x27\x27\x27\x5f\x6d\x6e\x6e\xbe\x98\xed\x58\xff\x04\x84\ \x61\xf8\x61\xa7\xd3\xf9\xd8\xf7\xfd\x86\xd6\x9a\x6e\xb7\x8b\x10\ \x02\xdb\xb6\xd1\x5a\xb7\xa3\x28\xfa\x48\x29\xf5\x1c\x78\xf1\xaf\ \x1f\x00\xc2\xf7\xfd\x07\x6b\x6b\x6b\x8f\x57\x56\x56\xde\x5e\x5d\ \x5d\xed\x3a\x8e\x23\x8e\x8f\x8f\x47\x87\x87\x87\x7f\x1d\x1c\x1c\ \x1c\x8c\x46\xa3\x21\xa0\x67\x0b\x7f\x03\xda\x9e\x5f\xc6\x86\x2c\ \xf1\x02\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x9e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ \x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x0b\x09\x1f\x15\x7e\x48\x3d\xcd\x00\x00\x04\x2b\x49\x44\ \x41\x54\x78\xda\xb5\x93\x5d\x4c\x5b\x65\x18\xc7\xdf\xf7\x7c\xf5\ \xe3\x94\x7e\xad\x85\x0d\x28\xa3\x02\xb3\xb2\x02\x1b\x0c\xda\x8c\ \xb9\x21\x13\x63\x36\x08\xec\x46\x32\x75\x33\x4e\x81\x0b\xb9\x10\ \x63\xc2\x85\x77\x93\x99\x68\x8c\x09\xd3\x1b\xa3\xc9\xb6\x84\x2c\ \x31\x71\x6c\x04\x96\xb0\xb1\x91\x09\x32\x47\x99\x1f\xc0\x64\xa3\ \x80\xb4\x14\x68\xd7\x42\x4b\xdb\x73\x7a\xe8\xe9\x39\xe7\xf5\x5c\ \x70\x61\x9c\xd6\x69\xf0\x97\xfc\xf3\xe6\xbd\xf9\xbd\xcf\x9b\xe7\ \x79\xc0\xff\x05\x04\x7f\xa2\xbb\xbb\x5b\x6f\xb7\x97\x36\xd0\xb4\ \xfa\x20\x41\x92\x66\x41\x10\x22\x1c\xc7\x4d\xcc\xb9\xe7\xfa\x5a\ \x5b\xdf\x7e\xfc\xaf\xc5\x34\x4d\xc3\x8b\x97\x2e\xb5\x1a\x8d\x3b\ \xba\x46\x26\x3c\xc6\x29\x77\x08\x84\x99\x24\xd2\x28\x09\x68\xcd\ \xce\x80\x35\x95\x79\x2c\x45\x62\x9f\x9c\x7a\xfd\xb5\x8f\xa2\xd1\ \xa8\xf8\xb4\x62\x78\xe1\xc2\xc5\x4f\x05\xa8\x79\xf7\xab\x6b\x6e\ \x84\x65\x98\xc4\xa3\x75\xa5\x80\x01\x98\x68\x54\x11\x60\xec\xfb\ \x47\x28\xec\x5b\x25\x5f\x2a\xd7\xe0\xf6\x02\xdd\xb7\x6f\x9c\x3e\ \xfd\x6a\x2a\x95\x4a\x2b\xc7\x81\x4c\x57\xd7\xb9\x93\x18\xa5\xfb\ \xf8\x8b\xab\x4b\xa2\x75\xbf\x7d\xe3\x50\xbd\x83\xdd\x5b\x62\x41\ \x92\x41\x17\xdf\x93\x67\x92\x0c\xf9\xd9\x51\x42\xa9\x62\xee\x8c\ \x07\x70\x1d\xc5\xef\x6b\xaa\xaf\xe5\x6f\x0c\x0e\x8e\xfe\x93\x58\ \xd1\xd8\xd8\x74\xa5\xef\x1e\xa3\x51\xef\x2e\x58\xa9\x78\x71\x7f\ \xc0\x9c\xa5\x49\xfd\x34\x32\x66\x9e\x74\xfd\x6c\x1c\xfd\x6e\x5c\ \x5d\xfe\x82\x73\x4e\xad\xd7\x86\x08\xa5\x32\x31\x3a\xe6\x55\x57\ \x15\xa9\x0e\xae\xad\x85\xbe\x5e\x59\x59\xe1\xfe\x4e\x8c\x9d\x39\ \xf3\x56\x15\x2f\x91\x79\x73\x21\x29\xa2\xb5\x17\x4d\xfa\x10\xf6\ \x70\xec\xee\x7d\xce\x1b\x58\x93\x98\x38\x07\x44\x41\x04\xeb\x38\ \xee\x7d\x98\x82\x33\xc9\x5d\x59\xd3\x49\xad\x61\x61\x31\x28\x65\ \x1c\x3e\x72\xf8\x38\x48\x03\x46\x51\xa4\x7d\x83\x85\xb8\x72\x67\ \xe6\x4a\x4c\xa9\xf0\x87\x15\x0a\x2f\x2c\x2c\x18\xad\x79\xb3\xf9\ \x9b\x18\x03\x40\x5c\x96\xc7\x00\xe6\xe6\x68\xe5\x6a\x84\x24\x83\ \x9a\xfc\x1c\xdf\x7a\x02\x4f\x2a\x28\xca\x9e\x4e\x4c\x00\x00\x69\ \x00\x71\x44\x65\x68\xe2\xb8\x8a\x4a\x12\xb4\x22\x41\x65\xe6\xae\ \xf9\x25\x0c\xf9\x23\x4a\x90\x0a\x86\xc0\x26\x02\x41\x42\x49\x10\ \x24\x2d\xeb\xf4\x1a\x06\xe3\x49\x41\x46\x99\xb6\x62\x79\x74\x3c\ \x46\x2d\x21\x89\x3c\x4f\x41\x0c\x20\x82\xc4\x04\x35\x01\x53\x34\ \x09\x93\x49\x2a\x17\x70\x09\x01\xd0\x04\x96\xa2\x70\x4c\x80\x14\ \x2e\x4a\x82\x88\x65\xe9\x49\x05\xcb\xb2\xbe\xb4\xe2\xde\xde\xde\ \x31\x0a\xb0\xec\x33\x1a\x6c\xa7\xc8\xa5\x28\x24\x21\x48\x40\x28\ \x19\x48\x0c\x49\x8c\x1f\x20\x24\x02\x0d\x09\xe4\x37\x01\x90\x78\ \x81\x50\xc4\x62\xb9\x05\x99\x38\x36\xee\x72\x0d\xa5\x15\x27\x93\ \x9b\x8f\xe7\x17\xe6\x7b\xea\x4b\x15\x39\x9c\x7b\x79\x37\x17\xe5\ \x68\x84\x90\xf2\x83\x86\xf7\xbe\x14\xd6\x1f\x01\x24\x70\xe0\x5c\ \xdd\xa9\xcf\xc5\x94\xa8\x4a\x2e\x87\xcd\x0d\x85\x54\xe9\xd2\xe2\ \xec\xcd\x09\x97\xeb\xd7\xb4\x0b\xb2\xb5\x75\x99\x67\xcf\x7e\x38\ \x68\xcc\xaf\x28\xbc\xba\x46\x0f\x23\x9b\xe5\x97\xbc\xec\x8c\xa8\ \x5e\x81\x73\x9b\x02\x22\x82\x71\x5e\x1b\x76\xfb\xad\xc7\xa8\x78\ \x63\x11\xbd\x61\x32\xe8\xf4\xab\xc3\xc3\xb7\x8f\x77\x76\x76\x4e\ \xa6\x5d\x10\x79\x8b\xd8\x99\x99\x99\x1b\xf6\xa2\x9c\x03\x27\xca\ \x72\xeb\x2c\x00\x58\x61\x42\x34\xb1\x11\x6e\x97\x9e\xdb\x2c\xb6\ \xa7\xe2\x47\x5e\xd6\x32\xb5\xfe\x07\x23\xbc\x6b\xfc\x9e\xca\x56\ \xfc\x9c\xb6\xbc\xbc\xbc\xb9\xa4\xa4\xe4\xfe\xc0\xc0\xc0\xe2\x5f\ \x8b\xb7\x88\xc5\x62\x1b\xb7\x6e\x0d\xf5\x72\x6c\xdc\xad\xc7\x12\ \x96\x6c\x31\x5c\xbc\x07\x46\x6c\x74\x68\xde\x14\x76\xff\xb8\x3c\ \x74\xbd\xef\xb3\xf3\xe7\xbb\xdf\xd1\xe9\x74\x99\xcb\x3e\xdf\x3e\ \x93\xd9\xac\x72\x38\x9c\xaf\x38\x9d\x8e\xdf\x3c\x1e\xcf\x03\xbf\ \xdf\x0f\x9e\x06\x42\x8e\x41\x4e\xae\x9c\x1d\x72\x28\xb0\x85\xc5\ \x62\xc1\x9b\x9a\x9a\xba\xdb\xdb\xdb\x51\xcf\xe5\xcb\x68\xc9\xe7\ \x13\xfa\xfb\xfb\xdf\xaf\xa9\xa9\x81\x4f\x56\xfc\x24\x92\x9c\x4d\ \x39\x31\x39\x9c\x1c\xf1\x0f\x3f\x43\x0c\xc3\xdc\x34\x1a\x8d\x78\ \x82\x65\x9f\x0f\x87\xc3\x58\x75\xf5\xa1\xba\xb2\xb2\x52\x7d\x20\ \x10\xb8\xbd\xb0\xb0\x20\xa5\x11\xa7\x61\x4b\x2e\x1f\x77\xe4\xa6\ \x33\x14\x45\x1d\xf5\x7a\xbc\x58\xc5\x81\x0a\x67\x55\x65\xa5\x8d\ \xe7\xf9\xeb\x53\x53\x53\x02\x0e\xfe\x23\xa1\x50\x08\x4c\x4f\x4f\ \xff\x60\xb5\x5a\x97\xcd\x66\xf3\x31\xf7\xec\x2c\xfe\xac\xcd\xb6\ \x57\x96\x57\xab\xd5\xea\x7e\x08\xb6\x81\xb6\xb6\xb6\x13\xf2\x94\ \xf4\x24\x12\x09\xb5\xc3\xe1\x00\x92\x24\xdd\x85\x60\x9b\x90\x9b\ \x59\xeb\x74\x3a\xaf\x04\x83\x41\x8d\x7c\x3d\x09\xb6\x93\x8e\x8e\ \x8e\xf2\x96\x96\x96\x66\x20\xf3\x3b\xa7\x36\xda\x5d\x07\xdf\x7a\ \xe1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x70\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\ \x01\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xed\x49\x44\ \x41\x54\x78\xda\xb5\x95\x3d\x48\x5b\x51\x18\x86\xdf\x9b\x7b\xf3\ \xe7\x4f\x89\x15\x21\xd1\x41\x6b\x25\x85\x06\xd3\xa9\x43\x70\xa8\ \x89\x50\x3b\x77\xeb\xda\xc5\xcd\xcd\xc5\xad\x14\x04\xe9\xe6\xe8\ \x22\x88\xd0\xc1\xdd\x59\x1c\x2b\x1d\x1a\x74\x68\x35\x6d\x21\xd4\ \x04\xff\x62\x34\xb9\x31\x3f\xe6\xf4\x7b\xaf\xde\x78\xbd\xe2\x1f\ \xb4\x2f\x7c\x5c\x38\xf9\xce\x73\xbe\xf3\x7e\xe7\x9c\x68\x4a\x29\ \xb8\xa5\x69\xda\x10\x80\x38\xee\xa7\xb4\x30\xb6\xe1\x16\xc1\xee\ \x10\xbd\x55\xf7\xd4\x45\x2e\xdc\xe1\xc1\xff\xd1\xcd\xe0\x46\xa3\ \xf1\x6f\xc1\xcb\xcb\xcb\xfa\xc8\xc8\xc8\xf3\x6a\xb5\x76\x27\x9c\ \xbf\x33\x97\x73\xe0\x92\x01\x97\x6a\xb5\xda\xbb\x54\x2a\xf5\xb1\ \x54\x2a\xe3\xec\xac\x09\xbf\xdf\x0b\x5d\x37\x24\x3c\x6c\x2a\xfd\ \xe3\xb8\x44\x03\xd5\x6a\x1d\xcc\x95\x39\xbf\x01\x2c\xdd\x0a\x36\ \x0c\x23\xb8\xb3\xb3\x83\x93\x93\x12\x2b\x92\x85\xfc\xf0\x7a\xbd\ \x32\xae\xdb\x60\x19\x3f\x43\xbd\x5e\x17\x70\x15\xcc\x8d\xc5\x62\ \xc1\x6b\x9c\xd9\xd9\xd9\x27\x00\x7e\x42\xd4\xde\xde\x6e\xc5\xfe\ \xfe\x3e\x8e\x8e\x8a\x02\xad\x23\x10\xa8\x09\x98\x15\xeb\x8e\x8a\ \x09\x6e\xe0\xf4\xb4\xca\x5c\x16\x30\xbf\xb8\xb8\x38\x7f\x7c\x7c\ \x8c\x72\xb9\x4c\xd4\x20\x2b\x1e\x93\x10\x40\x00\x9d\x9d\x9d\x28\ \x16\x8b\xd8\xdd\xdd\x45\xa1\x70\xc4\x8a\xc4\x0a\x3f\x7c\x3e\xcb\ \x0e\x07\x98\x3b\x39\xaf\x98\xb9\x9c\xd3\xdb\xdb\x6b\x2f\x2a\x0b\ \x9e\xa6\x08\x4e\x79\x3c\x9e\x56\xb5\xa5\x52\x09\xa1\x50\x08\x33\ \x33\x1f\x98\x78\xe5\xac\x53\x84\x33\x6c\x49\x2e\xed\x43\x47\x47\ \x07\x2b\xa7\x45\xec\xd3\x98\x91\x1a\x7b\x15\x1f\x7a\xfa\x0c\xb6\ \xf6\xf6\xf6\xd0\xdf\xdf\x8f\x87\x28\x1a\x8d\xa2\xa7\xa7\x07\xb6\ \xb6\x33\xdf\xe3\x46\xb0\xad\x4d\xb6\xea\x83\x2d\x6e\x4b\xfc\xc2\ \x43\x34\x35\x35\x85\xbe\xbe\x3e\xd8\x12\x26\x9b\xed\x73\x82\xe9\ \x91\xf8\x5b\x80\x2d\x36\x2d\x1c\x0e\x3b\xad\xa0\xaf\xdc\xb2\x73\ \xce\x15\x06\x99\xda\xd6\xd6\xf6\x46\x3e\x9f\x8b\x35\x9b\x4d\x50\ \xf2\xa5\x47\xce\x49\x6c\x06\x9c\x62\xa3\xb9\xa0\x2d\x42\xd9\x27\ \x8a\xdf\x70\x38\xb2\x69\x68\x9a\xce\x73\x08\x5b\x84\x54\x2a\x15\ \x38\x75\xc3\x0b\x78\xb9\xf5\x60\xd0\x5a\x6c\x6d\x6d\x0d\x89\x44\ \x42\xee\x80\x09\x23\x9b\xfd\x23\x7e\x5c\x26\xcd\xcd\xcd\x61\x75\ \x75\x15\xa6\x69\xba\x4e\xc4\x75\x28\xbf\x84\x26\x93\x49\x4c\x4e\ \x4e\xb2\x28\x81\x9e\x20\x9b\xcd\x43\x5b\x58\xf8\xbc\x11\x8f\x47\ \x59\x32\x2d\xb0\xfc\x1c\x1f\x7f\x23\xc7\xed\x13\xb7\xc8\x5b\x67\ \x5f\x10\x06\x61\x12\x5c\x90\xa1\x30\x31\xf1\x1e\x2b\x2b\x2b\xc8\ \xe7\xf3\x2d\x9f\xd3\xe9\x1f\x9b\xc6\xe1\x61\xc1\x1a\xa4\x78\xe0\ \x23\x91\x08\x1f\x16\x74\x77\x3f\x96\xcb\x61\x35\x96\xe7\x94\xc1\ \xf7\xc2\xf6\xb2\xd5\x8f\xd1\xd1\xa4\xb5\x58\x2e\x97\xb3\x2e\x13\ \x45\xa6\xfb\x1f\x44\x2a\x9d\x51\x03\x03\x83\x6a\x78\xf8\x85\x76\ \x0e\xf6\x5e\x40\x75\x42\x25\x68\x03\x43\x09\x58\x61\x7d\xfd\x8b\ \x4a\xa7\xbf\x69\xd3\xd3\xd3\xda\xad\x8f\xd0\xc1\xc1\x01\x08\x0d\ \x85\x1e\x09\xf4\x3a\xd8\x6d\x45\x57\x57\x97\xc6\x39\x77\xfe\x35\ \x89\x5e\x67\x32\xbf\x8a\xf2\x08\x29\xd3\xac\x28\xf1\x5d\xc9\x91\ \x53\x37\x49\x9a\x55\x04\x30\xee\xe6\xd0\x0a\x56\xa1\x03\xa0\x41\ \x41\x89\x41\x89\x97\x12\x5e\x8e\xb9\x82\x06\x37\xd8\x0e\xf6\xda\ \xf1\xfd\x2a\x91\x91\x30\x25\x2a\xcc\xf9\x0b\x3e\xfb\xf9\xce\xd4\ \xa5\xbf\x61\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xf9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x76\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x4d\x4f\x53\x41\x14\x86\xdf\x73\xe6\xf6\ \xce\xdc\xb6\x6a\x7b\x6b\x4b\x43\xc2\x87\x0b\x74\xa5\x86\xb8\xd1\ \x20\x84\x18\x56\x6c\x70\x83\x11\x13\x51\xc3\xce\x04\x71\x61\x20\ \xc4\x1f\xd0\x05\x41\x13\x16\x86\x0d\x3b\x03\x28\xc6\x88\x0b\x16\ \x86\xb8\x13\xf0\x17\x18\x97\x20\x41\x04\x9a\x36\xb4\xbd\xb7\x17\ \xed\x8c\x1b\xb8\x14\x5c\x3a\xc9\x9b\xcc\xc7\x99\x67\xde\x39\x67\ \x86\x8c\x31\xf8\x9f\x66\x9d\x9e\x68\x6b\x6b\x93\xd1\x64\x72\xc8\ \xe2\xc8\x40\x3a\x93\x69\x20\x32\xe7\x8a\x85\xc2\x37\x80\xe7\xb5\ \x2d\x16\xbe\x2e\x2f\xe7\xeb\xe3\xa9\xde\x41\xfb\xf5\x8e\xbe\x94\ \x9b\x98\xee\xee\xec\xcc\x5e\x68\x6d\x45\xb1\x50\x00\x88\xe0\xba\ \x2e\x7e\x6c\x6e\x62\x75\x6d\x2d\x5f\xa9\x94\xfb\x3e\x2d\x2d\x7d\ \xf9\x07\x70\xa3\xab\xab\xa3\xa9\xa9\xf9\xf3\xad\xee\x6e\x3b\x62\ \x59\xd8\xdb\xdd\xc1\xd8\xe8\x28\x00\x60\x62\x72\x12\x0d\xd9\x2c\ \xb4\xd6\x58\x59\x5d\x39\xd8\xde\xfd\x75\xe7\xe3\xc2\xfb\x45\x00\ \x60\x00\xe8\xe9\xe9\x49\x65\xd2\x99\xc5\x6b\xed\xed\xb6\xe7\x55\ \xb0\x5f\xda\x47\xd9\xf3\x42\x67\x9e\xe7\xa1\x5c\xda\x87\xef\x79\ \xb8\x7a\xf9\x8a\x9d\x4e\xa5\xa7\x7b\x9f\xf4\xca\x30\x07\x2c\x65\ \x7f\x4b\x4b\x73\xca\xaf\xfa\x08\x02\x80\x98\xe1\xfb\xc7\x00\xdf\ \xf7\x50\xae\x54\x40\xc4\x60\x26\x34\x35\x36\x66\xf5\xc6\xc1\x10\ \x80\x57\x16\x00\x44\x63\xb1\x01\x21\x18\x3b\xdb\x3f\xc1\xcc\x20\ \x16\xf0\xeb\x1c\x14\x8b\x45\x68\x6d\xc0\x0c\x80\x18\xf1\x33\x31\ \xc4\xe2\xf1\x7b\x21\x20\x22\xf8\xe2\xc6\xfa\x3a\xde\xbd\x79\x0b\ \xad\x35\x6a\xb5\x1a\xb4\xd6\x21\xe0\xe5\xe4\x8b\xb0\x6f\x60\x30\ \xf2\x74\x04\xb1\x78\xcc\x0d\xaf\xa0\x1c\x59\x08\xfc\x20\x4b\x44\ \x10\x42\x40\x08\x71\xa2\xb4\x8e\xe3\x9c\xac\xbd\x25\xa0\xa4\x4c\ \x86\x00\x69\xcb\xbc\x23\x15\x06\x1f\x3d\x00\x13\x81\x98\x10\x54\ \x03\xcc\xbe\x9e\x05\x00\x0c\x3e\xbc\x8f\x58\x3c\x0e\x26\x02\x33\ \xc3\x4d\xb9\xb0\x2c\xeb\xfb\x31\x40\xc9\x39\xc1\x7c\x33\x1a\x75\ \xc0\xcc\x10\xcc\x28\x97\x2b\xe1\x89\x89\x44\x02\xc9\x64\x02\xcc\ \x7c\x28\x82\x20\x9a\x0f\xcb\x28\x34\xcd\x28\x69\x6f\x29\x25\xa1\ \x94\x84\x54\x12\xb6\x1d\x09\x01\xb6\x1d\xc1\xd1\x9a\x6d\x47\x60\ \x59\xd6\x9e\x31\xd6\x42\x08\x98\x9a\x9a\x0a\x1c\x5b\x3e\x76\xa4\ \x0c\x94\x94\x50\xd2\x3e\x01\x88\x58\x16\x98\xf9\x68\x18\x68\xd0\ \xed\xf1\xf1\xf1\x3c\x70\xea\x29\xe7\x26\x72\x1d\x0c\xf3\x81\x88\ \xce\x3b\x2a\x8a\x6a\x50\x85\x92\x0a\xd1\xa8\x83\x52\xb9\x84\x20\ \x08\xb6\x40\xe6\xf1\xd8\xb3\xe7\x8b\x47\x7b\xe8\xf4\x6f\xcc\xe5\ \x72\x29\x12\xba\x1f\x44\x77\x99\xe8\x12\x40\x05\x03\x9d\x27\x6d\ \xe6\x1c\xe7\xec\xcc\xf0\xf0\x70\x50\x1f\x1f\x02\x88\xc8\x06\xa0\ \xea\x24\x0f\x93\xcc\x00\x6a\x00\x7e\x03\x38\x00\x50\x3d\x94\x6f\ \x8c\xf9\xf3\x17\xb1\x57\xd8\xfd\x23\x30\x24\x2d\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x8b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ \x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1c\x11\x34\x07\x24\x7a\x2c\x02\x00\x00\x03\x18\x49\x44\ \x41\x54\x78\xda\xdd\x93\x49\x68\x14\x41\x18\x85\x5f\x55\x77\xcf\ \xd2\xe9\x4c\xa2\x59\xc5\x2d\x26\x2a\x8a\x0b\xb8\x86\xb8\x80\xa8\ \x78\x34\x8a\xfb\x41\x44\x41\x10\x11\x3c\x18\x45\x6f\x8a\x7a\x53\ \x0f\x82\x10\x08\x38\x1a\x97\x93\x8a\x1a\x02\x42\x0e\x8a\x08\x82\ \x10\x5c\x2e\x6e\xa8\x18\xd1\x10\x98\x89\x93\x64\x7a\x7a\xba\xba\ \x16\xab\x3b\xa0\x82\x26\x2a\x7a\xf2\x35\x0f\x0a\x8a\xfa\xea\xaf\ \xf7\xff\x8d\xff\x5f\x53\x37\x5f\x58\xbc\xf6\xe0\xcd\xfb\xed\x9d\ \xcf\x5a\x31\x8a\xcc\xdf\x06\x6e\x4a\x53\xc9\x8b\x2d\x55\x0e\x4e\ \x34\xcd\xae\xb1\x6e\x74\x75\x2f\x07\xb0\xe7\xaf\xc0\x0d\x9b\xd2\ \x35\x22\x28\xb4\x37\xcd\xaa\x5d\xb3\x63\x5d\x13\x12\xf1\x18\xce\ \xa5\x6f\xe0\xaf\x2a\x9e\xb6\xf5\xd2\x9a\x18\x61\xed\x1b\x57\xcf\ \xae\x69\x9c\x3b\x05\x82\x73\xb8\xda\xcc\xcd\x8c\x0e\x1e\x19\x78\ \xd9\x82\x92\x27\xc6\x8f\x8d\xb7\x6c\x5e\x35\x8b\x56\x96\x97\x20\ \xef\x15\x41\x30\x2c\xee\x66\x51\x31\x6f\xbb\x41\xa8\x09\x62\xc4\ \x15\x8d\xd9\x00\x08\xfa\x1e\x9c\x96\xd0\xa2\x3f\x85\x6e\xb9\x54\ \x0f\x25\x1e\x2c\x9a\x5e\x7e\x68\xdb\xaa\x7a\x9a\xb0\x28\xdc\x82\ \x8f\x82\x17\x9a\x45\xe6\x5e\x0e\x3c\xdf\xc7\x45\x31\xc7\x65\x50\ \x10\x8a\xfb\xa2\xac\x24\x26\xf6\x1e\xbd\xd0\x01\x2d\xf2\x43\x93\ \xb6\x5c\xdc\x6a\x5b\xa4\x75\xc5\xdc\x8a\xb2\xba\x71\x29\x18\xa6\ \x09\xc3\x30\x40\x69\x68\x0a\x42\x86\x8f\x28\xa5\x22\x0b\x21\xb4\ \x39\x78\x10\x80\x31\x1f\x6d\x57\x3a\xf0\xf6\xee\x59\x62\x7e\x37\ \x46\x25\x80\x3a\x5b\xed\xa8\x5d\x8d\xd3\x4b\xe1\xd8\x04\x79\x5d\ \xa5\x69\x49\x98\xa6\xa5\xe1\x2a\x82\x13\x4a\x42\x78\x04\x95\x52\ \x46\x60\x1e\x70\x04\x8c\xc1\xd3\x51\x7d\xce\x0d\x7c\xcb\xb8\x61\ \x43\xdb\x04\xc9\x59\xd7\xe4\x31\xc1\x8c\xfa\x5a\x1b\x3e\x63\x00\ \x21\x88\xc5\x00\x4b\x10\x0d\xa7\xda\x44\xc3\x29\x68\x08\x86\xd2\ \x1f\xa0\x24\x50\xf4\x05\x3e\x0f\xb8\xe8\xed\xcb\xe0\x7d\xcf\x27\ \x68\xce\x37\xb0\x94\x01\x14\x67\xca\xcd\xfb\xe8\xf9\x54\x80\xe3\ \x94\xc2\x76\x1c\xd8\xb6\x42\x3c\x41\x60\x59\x21\x1c\x1a\x2a\xa1\ \x40\x20\xa4\x42\xc0\x25\x0a\x45\x16\xe5\x5e\xf4\x3c\xe4\x5d\x8e\ \xb0\x91\x4a\x0c\x83\x0d\x68\xe5\x5e\x74\x0e\xa6\xea\x57\x9c\x1f\ \x2c\xb0\xf2\xfe\x5c\x7e\x91\x57\x64\xc4\x63\x12\xae\xaf\xe0\x31\ \xc0\x0b\x80\x62\xa0\xc0\x38\x10\x88\x10\x0c\x48\x45\xa2\xde\x53\ \x42\xa2\xcb\x24\xe7\x51\xc6\xbd\x3d\xaf\xc0\xb2\xaf\x8e\x7d\xcd\ \xb8\xe7\xce\x61\x0f\xc0\xbe\x71\xcb\x5b\x3a\x33\x59\xef\x3c\x35\ \x8c\x5a\x27\x55\x1e\x35\xcf\xd2\x8e\x59\x96\x8e\x26\xa6\xab\x37\ \xa3\x48\x10\xc2\x84\x88\xd6\x52\x29\xf8\x7a\x2f\x6c\xae\x9d\xb4\ \x90\x8f\x76\x7f\xa2\xea\xc6\x3d\x55\x52\x04\x6d\x95\x55\xd5\xcd\ \x33\xe7\x2c\x40\x2a\x55\x86\x64\x32\x81\x44\x3c\xae\xe1\x16\x4c\ \xd3\xc0\xa9\x03\xcd\xe1\xfc\x82\x98\x49\x10\x2b\xa1\xd7\x49\x8c\ \xad\xac\x80\x52\xf2\xd6\xc7\xee\xeb\xeb\x08\x46\x50\xe5\x82\x9d\ \x90\xdc\xdf\xad\x7f\xdf\x33\x0b\x97\xac\x74\x26\xd6\x35\x20\x99\ \xd0\xf0\x44\x3c\xaa\xfa\xe4\xfe\x66\xb0\xcc\xcb\x11\xcf\x53\x8c\ \xa0\x4c\x77\x1a\xfd\x4f\xaf\xb6\xb9\x83\xfd\xf3\xef\x75\x5e\x7e\ \xf4\xe4\x61\x57\x34\x0d\xa6\x8e\x25\xae\x9f\x4d\xa8\x85\xd1\x44\ \xf1\x0b\x0d\xbc\xb8\xfd\x5a\x72\xb1\xec\xf1\xc3\xae\xe3\xd7\xd2\ \xa7\xc4\x40\x7f\x5f\x04\x07\x31\xf0\xcf\x94\x1c\xbf\x78\x49\x69\ \xdd\xd2\x37\xcd\x47\x5a\xd5\xa4\xa6\xf5\x0a\xa3\xe8\x8f\xae\xe5\ \x43\x1f\x3f\x10\xbb\x26\x9d\xed\xfd\x60\x0c\x0d\xb9\xcf\xfd\xec\ \xbb\x0e\xfc\x37\xfa\x02\x9d\xc7\x5e\x06\x50\xe4\x66\x9b\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x43\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xc0\x49\x44\ \x41\x54\x78\xda\x8d\x8f\xbd\x6b\x53\x51\x18\x87\x9f\x73\x72\xc1\ \xb6\x41\x90\x82\x52\x2a\xc5\x39\xdd\x8c\x93\x75\xab\x83\x9b\xbb\ \x53\xbb\xe4\x3f\x68\x07\x11\x8a\x25\xd4\x82\x43\x87\xa2\x20\x0e\ \x15\x07\xe9\x6a\x16\xc5\x3d\xb5\x88\xa1\x1f\x42\xd3\x4d\x25\xe8\ \xcd\x87\x83\x12\x92\x9b\x8f\x9b\x9c\xd7\xe6\xe0\xe1\x70\x89\x5f\ \x3f\xf8\x71\xce\x19\x9e\xe7\x7d\x8f\x02\x2e\x00\xf3\xfc\x2b\xab\ \xdc\xce\x5c\xcb\x2c\x65\x2f\x67\xa7\x0f\xab\x87\xf5\x72\xbb\xfc\ \x40\x96\xe5\x49\x30\x82\x1b\x8d\xc6\x9e\x11\x41\x6b\x6d\xab\x94\ \x4a\xf4\xd9\xc7\x1d\x76\x7f\xec\xb2\x78\x69\x91\xcd\xf9\x4d\xee\ \x95\xef\xce\xa5\xbf\xa5\x1f\xab\x1d\x25\x1a\xc0\x08\x7f\xcd\xf6\ \xe9\x36\xd5\x4e\x95\xfd\x4f\x05\x00\x3e\x57\x0b\x98\x41\x4d\x63\ \x58\x0d\x00\x52\x29\xeb\xb1\xd3\xdc\x06\xda\x6f\x40\xed\x7b\x8d\ \xe8\x4e\x84\xcb\x8b\x9b\x65\x00\xd4\x23\x35\x1b\x00\x16\x42\x04\ \xf5\xeb\x0b\x16\x76\xe7\x59\x67\xae\xcc\x10\x3c\x57\x5c\x05\xde\ \x2f\x09\xb9\x82\xe2\x40\x80\x8b\x84\xda\x4d\x76\xb0\x6b\xca\xdf\ \x59\xc9\xac\x20\xe7\x35\x61\x0a\x9b\x0f\xc0\xb1\xc1\x30\xc5\x43\ \xbf\x01\x78\x81\xff\x8a\x6d\x6e\x2e\x07\x1a\xb6\xbe\x6e\x91\x7e\ \x99\x26\x0a\xf8\xc2\x04\x79\xb9\x25\x4f\x15\xb0\xd0\x6c\x36\xf7\ \xbc\xc0\xd7\x6d\xe7\x4e\x97\x20\x08\x6e\x88\xc8\x5b\x7b\x07\x50\ \x7e\x03\x57\x0f\x26\xce\x64\xbc\x00\xdc\xba\x6e\xb2\x83\xfe\x4f\ \x40\x12\x76\x60\x42\x60\x8c\xb1\x6d\xb7\x23\x01\x62\x2f\x18\x03\ \xc6\xe1\x4a\xa5\x42\x18\x86\x4c\x4c\x4e\xf2\xea\xf5\x9b\x77\xc0\ \x11\xf8\x2c\x44\x51\x24\xdd\x6e\x57\xfa\xfd\xbe\xc4\x71\x2c\x83\ \xc1\x40\x86\xc3\xa1\x18\x63\xec\xbb\x58\x2c\xda\xf7\xfd\x8d\x8d\ \x13\x60\x4a\x44\x70\xc5\x0a\x3a\x9d\x3f\x0a\x5a\xad\x96\x94\x4a\ \x25\x59\xcb\xe7\x47\xf0\xb4\x87\xbd\xe0\xfa\x99\xc0\xf4\x7a\xbd\ \x11\x9c\x10\x8c\x52\xaf\x37\xcc\xda\xfa\xfa\xbe\x9f\x9c\xac\x02\ \xce\x01\x59\x40\xf1\xfb\xc4\xc0\x91\x88\xc4\x30\x9e\x9f\xaf\xc9\ \x06\x51\x54\x9d\xd3\x94\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x03\x41\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\ \x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x01\x16\x02\x14\ \x1d\x79\x4f\xdb\xf8\x00\x00\x01\xa7\x50\x4c\x54\x45\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x02\x02\x02\x09\x09\x09\x09\x09\x09\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x02\x02\x02\x00\x00\x00\x01\x01\x01\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x02\x00\x00\x00\x30\x30\ \x30\x00\x00\x00\x00\x00\x00\x3d\x3d\x3d\x00\x00\x00\x9a\x9a\x9a\ \x10\x10\x10\x9b\x9b\x9b\x5d\x5e\x5e\x35\x36\x36\x80\x80\x81\xb0\ \xae\xaf\xc5\xc5\xc6\xe9\xea\xea\xf1\xf1\xf1\x50\x52\x53\x51\x52\ \x53\xfc\xfd\xff\xfd\xff\xff\xfe\xfe\xfe\x18\x18\x1a\x1c\x47\x9c\ \x1d\x1e\x1f\x1f\x49\x9e\x2f\x56\xa4\x40\x70\xc3\x43\x71\xc4\x51\ \x7d\xc9\x57\x8d\xe5\x59\x90\xe7\x67\x9d\xee\x74\x76\x78\x88\x9e\ \xc8\x8a\x8b\x8d\x8a\x9f\xc9\x8d\x8d\x8e\x8d\x8d\x91\x8e\x8e\x8f\ \x8e\xa3\xca\x90\x91\x92\x94\x95\x96\x96\x95\x97\x97\x99\x9b\x99\ \x9a\x9b\x99\x9b\x9b\x9c\x9e\xa0\xaa\xab\xae\xcf\xd0\xd3\xd3\xd5\ \xd9\xd6\xd5\xd2\xda\xdd\xdf\xdb\xde\xe1\xdd\xe1\xe3\xe0\xe2\xe5\ \xe0\xe3\xe5\xe1\xe2\xe6\xe1\xe3\xe6\xe2\xe3\xe8\xe3\xe5\xe7\xe6\ \xe8\xea\xe8\xe9\xea\xe8\xea\xec\xe8\xea\xed\xe8\xeb\xed\xe9\xea\ \xee\xe9\xeb\xec\xea\xe8\xe4\xea\xeb\xee\xea\xed\xf3\xeb\xed\xee\ \xeb\xee\xf5\xec\xed\xef\xec\xee\xef\xec\xef\xf5\xed\xee\xef\xed\ \xef\xf2\xef\xf0\xf1\xef\xf1\xf1\xf0\xf2\xf2\xf1\xf1\xf1\xf1\xf2\ \xf3\xf2\xf2\xf2\xf2\xf4\xf6\xf3\xf5\xf6\xf3\xf5\xf9\xf4\xf3\xf0\ \xf4\xf4\xf5\xf4\xf5\xf6\xf4\xf5\xf7\xf4\xf6\xf7\xf5\xf3\xf1\xf5\ \xf4\xf2\xf5\xf5\xf5\xf5\xf6\xf7\xf5\xf7\xf9\xf6\xf3\xf0\xf6\xf6\ \xf7\xf6\xf8\xfa\xf7\xf7\xf8\xf8\xf9\xfa\xf8\xfa\xfc\xf9\xf7\xf4\ \xf9\xfa\xfb\xf9\xfb\xfc\xfa\xfb\xfc\xfb\xfb\xfc\xfb\xfc\xfd\xfb\ \xfd\xfd\xfb\xfd\xff\xfc\xfc\xfd\xfc\xfd\xff\xfd\xfd\xfe\xfd\xfe\ \xff\xff\xff\xff\xd0\x32\x98\xa6\x00\x00\x00\x2f\x74\x52\x4e\x53\ \x00\x01\x02\x03\x06\x08\x0d\x0f\x13\x1e\x24\x30\x33\x38\x3a\x3b\ \x3c\x3f\x40\x46\x49\x4a\x4d\x53\x5b\x5d\x61\x63\x69\x6f\x6f\x73\ \x91\x93\x96\x9f\xaa\xb8\xce\xde\xf2\xf7\xfe\xfe\xfe\xfe\xfe\xc1\ \x92\xd1\x86\x00\x00\x00\x01\x62\x4b\x47\x44\x8c\x6c\x0b\xd2\x43\ \x00\x00\x00\xd8\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\x36\x05\ \x25\x76\x06\x24\xc0\x22\xdd\xd3\x23\xc7\x8a\xe0\x33\x09\x68\xe8\ \xe9\x69\x8a\x30\xc3\x05\xb8\xd4\x5a\x6a\x6b\x9b\xd5\xb9\x19\xa1\ \x7c\x0e\xe5\xd6\x6c\x20\xa8\x53\xe5\x84\xf0\xf9\x14\xeb\x75\x13\ \x80\x40\xa7\x47\x45\x84\x5f\x40\x80\x87\x41\xd4\x5e\x4b\xbf\x32\ \x2c\xac\xd2\x50\xdb\xca\xa7\xa0\x34\x9f\x97\x41\x28\x2a\xc8\x35\ \x3a\x20\x20\xc2\x23\x38\xd6\xc2\xd2\x3c\x5e\x90\x41\x38\x37\xcd\ \x3b\xd0\xdf\xd7\xcf\x2b\xb2\xca\xc4\xcc\x34\x51\x98\x41\xac\xdd\ \xc6\xc5\xc9\x33\x24\x34\x26\xae\xc1\xc0\xd8\x28\x45\x8c\x41\xbc\ \xa6\xb8\xb8\x24\x3b\x35\x39\x29\xb9\xcc\xd6\xd1\xba\x46\x9c\x41\ \xa2\x29\x3d\x3d\xa3\x22\x2f\xaf\xba\xa8\x28\x33\x27\xab\x4d\x82\ \x41\xaa\x33\x3b\xbb\xd1\xc1\xcd\xdd\xce\xcd\x39\x3c\x3b\xbb\x5b\ \x8a\x41\xa6\xa7\xb0\xb0\xbc\x03\x04\xba\xaa\x0b\x0b\x7b\x64\x18\ \x64\x7b\x50\x80\x2c\x83\xa4\x3c\x0a\x90\x04\x00\x22\x75\x40\x01\ \xd9\xb4\x9c\x69\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x02\x9a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ \x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ \xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ \xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ \x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ \xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ \x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ \xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ \x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ \x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ \xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ \xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ \xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ \xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ \x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ \x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ \x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ \x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ \xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ \x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ \xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ \x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ \x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ \x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ \x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ \xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ \x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ \xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ \xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ \xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ \x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ \xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ \xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ \xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xd6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\ \x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0b\x11\ \x17\x19\x36\xe0\x1f\xbc\x7d\x00\x00\x02\x56\x49\x44\x41\x54\x78\ \xda\x8d\x91\x5d\x48\x53\x71\x18\x87\x9f\x73\x66\x52\xe1\x32\x95\ \x30\xb2\xd5\x12\xc2\x30\xa8\x30\xbd\x31\x2f\xba\xd1\x8b\x90\xc0\ \xa0\x4f\xa2\x20\xb2\x4c\xab\x8b\x8c\x60\x41\x12\x18\x41\x82\x91\ \x60\x81\x1f\x45\x17\xd2\xf7\x45\x17\x61\xa4\xa1\x61\x28\xa1\xa8\ \x91\x59\x4a\xea\x14\x5d\x73\xb6\x4c\xcf\xce\x74\xba\xb3\xfd\x3b\ \x1c\xd8\x58\x5b\x50\x0f\xbc\xbc\xef\xb9\x78\x9f\xdf\xcb\xff\x48\ \x60\xb0\x16\xd8\xce\x7f\x50\xb0\x5b\x5e\x79\x7b\x63\x41\x9d\xe6\ \x9a\x1b\x23\x21\xe1\x44\x48\x90\x2f\x84\x68\xe1\x1f\x04\xfc\x8b\ \x78\x7a\x8b\x78\x79\xdf\x4e\x46\x7b\x80\x05\x97\xab\x33\x0e\x30\ \xd0\x05\xfc\x70\xbb\x91\x65\xd9\x28\x49\x92\x90\xf5\xd2\x07\x63\ \x86\x20\xcb\x5f\x4b\x79\xdd\xfa\x85\xeb\xad\x32\x07\x2c\x53\x5a\ \x96\x47\x24\xc9\x44\x60\x32\x99\xc2\x02\x53\xa8\x9b\x4c\xc6\xec\ \xb7\x57\xd1\xdb\xd3\xc5\x8d\xa6\x78\x76\x6e\x76\x73\xfa\xac\xe4\ \x6a\xc9\x92\xcf\xc5\x41\x18\x23\xd1\x48\xd7\x4b\x9f\xc3\xdd\x37\ \xf5\x08\xc7\xb7\x37\xd8\xea\xe3\x59\x6f\x9e\xe1\x56\xe9\x6a\x2a\ \xea\x97\x6a\x9e\xb7\x69\xd3\x91\x17\xfc\x99\x1e\x4a\x9e\x7d\x8f\ \x32\xfe\x84\x0b\xd5\x3e\x56\x48\x1e\x6a\x2e\x06\x59\x48\xad\x40\ \x5f\xf6\x00\x93\x61\x81\x14\x4a\x8c\x90\x04\xd4\x21\xb4\xe9\xc7\ \x5c\xb9\xeb\x61\x5e\x51\xa9\x2e\x51\xd0\x52\xcb\x50\xe5\x1d\x00\ \x0e\x60\x31\xe6\x82\x90\x24\xe0\x73\x12\x9c\x7e\x88\xed\xce\x18\ \x9f\x87\xdd\xdc\x3c\x35\x87\x79\xd3\x41\x66\x02\x79\x58\xad\x56\ \x80\x25\x63\x27\xea\x0d\x8c\x12\x9a\x82\xd0\x97\xab\x1a\x07\x79\ \xd7\xed\xc4\x76\x74\x8e\x2d\xdb\x72\x19\xf5\x15\x92\x96\x96\x86\ \xc5\x62\x01\x20\x46\x60\xfc\x2e\xe1\x27\xe0\xa8\xe3\xc1\xb3\x7e\ \x9e\x36\x4f\x50\x52\xe8\x21\x37\x27\x9d\xfe\x5f\x47\x48\x4e\x4e\ \x21\x33\x33\x13\x01\x61\xe2\xa2\x05\xf3\x93\x6d\xb4\x35\xb7\x53\ \xdb\x34\x49\x51\xde\x22\x87\x0a\x12\x79\x31\xb8\x9f\x29\xe7\x00\ \xe6\x35\x49\xf4\xf5\xf5\xb1\xca\x9c\x08\xa0\xfd\x55\xa0\x7a\x25\ \xbc\x41\x2b\x7b\x77\x8d\x51\x7e\x58\xe6\x95\xfd\x38\xc3\x23\xdf\ \xa9\xac\xac\xd4\x2f\x48\x46\x55\x55\x2e\x95\x97\xbf\x05\xba\x62\ \x04\x3f\x67\x1c\xcc\x3a\x3f\x90\xbe\xce\x49\x46\x51\x36\xe3\xf1\ \xfb\xc8\xd9\x93\x8d\x39\x65\xc8\x58\xf6\x7a\xbd\xd8\xae\xda\x06\ \x1a\x1b\x1a\x4e\x02\x3e\x22\xc8\x17\x3a\xf7\x6a\x6b\xc4\xb5\xcb\ \xc7\x84\x63\xa4\x53\xf8\xfd\xcb\x22\x18\x0c\xea\xdd\x2f\x3a\x3a\ \x3a\x84\xa2\x28\xa2\xec\x7c\xd9\x27\x60\x2b\x21\xa2\x05\x13\xf6\ \x51\x11\xcd\xb2\x16\x10\xdd\x1f\x07\x44\xf1\x99\xe2\x16\x60\x03\ \x51\x48\x60\x90\x02\x64\x85\xbf\x63\xd1\x80\x4e\x60\x89\x28\x7e\ \x03\x99\xc3\x0a\xf4\x03\x8f\xf6\xf6\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x04\x95\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ \x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x0a\x00\x0b\x07\x14\x32\xc7\x3a\x00\x00\x04\x22\x49\x44\ \x41\x54\x78\xda\xb5\x93\x5f\x4c\x5b\x55\x1c\xc7\xcf\xb9\xff\x7a\ \x7b\x6f\x4b\x4b\x4b\xd9\xa4\x30\x86\xd0\x0d\xa1\xb4\xfc\x19\xb4\ \x19\x38\x91\x0d\x35\x8e\x05\xf6\xe2\x32\x9d\x33\x99\x02\x0f\xf2\ \x20\xc9\x12\xdf\x7c\xc2\x25\x1a\x63\x64\xf1\x4d\xcd\xb6\x84\xec\ \xc9\xa1\x04\xb6\x6c\xa3\x26\xcb\x26\x3a\x60\x3e\x08\x48\xa4\xfc\ \xa7\x54\x0a\x85\x02\x97\xfb\xa7\xf7\xf6\x9e\x7b\xbd\x24\x3e\x18\ \x97\x75\xd3\xe0\x27\xf9\xe6\xe4\xbc\x7c\xf2\x3b\x39\xdf\x1f\xf8\ \xbf\x80\xe0\x1f\x74\x77\x77\xdb\xbd\x5e\xdf\x29\x96\x65\x8e\x12\ \x24\xe9\x52\x55\x75\x53\x92\xa4\xd1\xe9\xf0\x74\x5f\x5b\xdb\x7b\ \xab\xff\x5a\xcc\xb2\x2c\xbc\x7a\xed\x5a\x9b\xc3\xe1\xec\xba\x3f\ \xba\xe0\x18\x0b\xc7\x41\x82\x97\x75\x0b\x4d\xc0\x82\x1c\x2b\xac\ \xaf\x3e\x20\x50\x24\xf6\xe9\xdb\xe7\xde\xba\xb4\xbd\xbd\x8d\x9e\ \x55\x0c\xaf\x5c\xb9\xfa\x99\x0a\x2d\x1f\x7c\xf5\x7d\x58\xc7\xac\ \x59\xe8\x78\xa3\x0f\xf0\x00\x43\x0e\x33\x01\x86\x7e\xfc\x5d\x4f\ \x44\xfe\x20\x5f\xa9\xb4\xe0\xde\x42\xdb\xb7\xef\x9c\x3f\xff\x66\ \x2a\x95\x4a\x2b\xc7\x81\x41\x57\xd7\xc7\x67\x31\xca\xf6\xc9\x97\ \xdf\x2d\xa1\x82\x0a\xef\x56\x5d\x53\x40\x28\x2d\xcb\xd3\xd5\x4c\ \x3b\x77\x38\x3f\x0b\x65\x1e\xcc\xe1\x08\xda\xcc\xdf\x1b\x8e\xe1\ \x36\x4a\x29\x6f\x69\x6a\x50\xee\xdc\xbe\xfd\xe0\x69\x62\x53\x73\ \x73\xcb\x8d\xbe\x87\xbc\x85\xc9\x2f\x8c\x56\x9d\xa8\x88\x65\xe7\ \xd8\x64\x8b\x95\x16\xe6\x10\x8c\x3a\x19\x32\x85\x48\x62\x9b\xb5\ \x67\xac\x13\x34\x2d\x3e\x18\x5a\x64\x6a\x3c\xe6\xa3\xeb\xeb\xf1\ \xaf\xa3\xd1\xa8\xf4\x24\x31\x76\xe1\xc2\xbb\x35\x8a\x46\x1e\x98\ \x8e\x6b\x9b\x19\x65\x9e\x5f\xd7\x20\x31\xbd\x8e\xe1\xe1\x09\x05\ \x4e\xcb\x34\xb5\x3e\x96\xc2\xe6\x36\x71\x22\x3a\x87\xb0\xb0\xfc\ \xdc\xbe\x09\x39\x23\x73\x76\x7e\x4d\xb3\x1e\x7b\xe9\xd8\x49\x90\ \x06\x82\xa2\x48\xef\x96\x00\x71\x7a\x7f\x76\x54\x34\xd1\xab\xa1\ \x6f\x6e\xb5\xc1\x8c\x03\x10\x92\x0c\x40\x7c\x0c\xa0\xad\x45\x80\ \xa4\x4d\xa0\x25\xb7\x40\xf9\xc5\x0f\xbf\xb0\x1c\x74\x47\x36\xc4\ \xb9\x62\x37\x45\x79\xd3\x89\x31\x00\x20\x0b\x20\xae\x53\x56\xcb\ \x0e\xc6\x90\x32\xb7\x83\x80\x88\x18\x88\x68\x27\x84\x34\x0b\x35\ \x82\x82\x72\x0a\x41\x9e\x13\x00\xc9\x9a\x92\x94\xdd\xc2\x63\x04\ \xa9\x1a\xd0\x69\x27\x36\xaa\xb3\xe0\x29\x25\x34\xb4\xa8\x50\x1a\ \x04\xe8\xe4\xa5\x73\x1f\x39\xcd\x84\x68\x25\x31\xd9\x84\x79\x90\ \xaa\x9f\x80\xa2\xaa\x53\x9b\x32\xa2\x97\x37\x04\x46\x53\x11\xb6\ \xcf\x4e\x9a\x76\x22\x42\x24\xed\xc4\xbd\xbd\xbd\x43\x14\x10\x84\ \xe7\x2d\xd8\x7e\x24\xa5\x28\x01\x69\xa9\x14\x04\x12\x4e\x40\xde\ \x64\x82\x1c\x45\xc1\x1d\x0d\x07\x62\x12\x00\x45\x53\x54\xc2\xc4\ \x71\xb9\x85\xd9\x38\x36\x3c\x32\x32\x98\x56\x2c\xcb\xc9\xd5\x99\ \xd9\x99\x9e\x26\x9f\xc9\x2d\x85\x97\xf3\xa5\x6d\x89\x4d\x22\x9d\ \xd8\x6d\x38\x4b\x42\x05\x87\x50\x53\x34\x1d\x13\x65\x95\x92\x97\ \x13\xae\x53\x45\x94\x6f\x69\x7e\xea\xee\xe8\xc8\xc8\x6f\x4f\xab\ \x9b\x3e\x31\x3e\xfe\xa8\x2e\x58\xf1\x6a\xdd\x21\x77\xe5\xd4\x92\ \x24\xf1\x34\xcd\x21\x8a\xd0\x44\x15\x10\x1b\x49\x8d\x89\x71\xb2\ \x4d\x9c\x89\x79\x9a\x59\xa1\xa5\xc4\x99\xcc\xf4\xfb\xfc\x6c\x51\ \x51\xe1\x60\x28\x14\x5a\x4d\xbb\x20\xc6\x16\x09\x93\x93\x93\x77\ \xbc\x1e\xf7\x91\xd3\xfe\xdc\xc6\x3c\x00\x0a\x48\x09\x65\xcb\x5b\ \x92\xdb\x99\x4c\x7a\xfd\x2a\xff\xf2\x6b\x19\x7c\xc3\xca\xc4\x7d\ \x65\x64\xf8\xa1\xb9\xb8\xe4\x85\x8c\xca\xca\xca\x33\x65\x65\x65\ \x8f\x06\x06\x06\xe6\x9f\x28\xde\x85\xe3\xb8\xad\x50\x68\xb0\x57\ \x12\x76\xc2\x76\x4c\xcc\xcb\x41\x89\x92\x43\x70\xb3\x98\x8d\xcf\ \x64\x25\xc2\xbf\x2c\x0f\xde\xec\xfb\xfc\xf2\xe5\xee\xf7\x6d\x36\ \x5b\xf6\x72\x24\x52\x9e\xe5\x72\x99\x03\x81\xe0\x1b\xc1\x60\x60\ \x6e\x61\x61\x61\x62\x65\x65\x05\x3c\x0b\x84\x91\x4c\x23\xb9\x46\ \x9c\x46\x28\xf0\x17\x79\x79\x79\x78\x4b\x4b\x4b\x77\x47\x47\x87\ \xde\x73\xfd\xba\xbe\x14\x89\xa8\xfd\xfd\xfd\x17\xeb\xeb\xeb\xe1\ \xe3\x13\x3f\x8e\x66\x24\x69\x84\x33\x22\x19\x41\x7f\x7b\x99\xce\ \xf3\xfc\x5d\x87\xc3\x81\x8b\x82\xf0\x62\x22\x91\xc0\x6a\x6b\xeb\ \x1a\xfd\x7e\x9f\x3d\x16\x8b\xfd\x30\x3b\x3b\xab\xa5\x11\xa7\x67\ \x57\x6e\x1c\xf7\x58\x96\xe5\x29\x8a\x3a\xbe\xb8\xb0\x88\x55\x1d\ \xa9\x0a\xd6\x54\x57\x17\x2b\x8a\x72\x73\x6c\x6c\x4c\xc5\xc1\x7f\ \x24\x1e\x8f\x83\xf1\xf1\xf1\x9f\x0b\x0a\x0a\x96\x5d\x2e\xd7\xeb\ \xe1\xa9\x29\xfc\x70\x71\x71\xa9\x21\xaf\x65\x18\xa6\x1f\x82\x3d\ \xa0\xbd\xbd\xfd\xb4\xd1\x92\x1e\x51\x14\x99\x40\x20\x00\x34\x4d\ \xfb\x09\x82\x3d\xc2\xf8\xcc\x86\x60\x30\x78\x63\x6d\x6d\xcd\x62\ \x5c\xcf\x82\xbd\xa4\xb3\xb3\xb3\xb2\xb5\xb5\xf5\x0c\x30\xf8\x13\ \x74\xaa\xde\x46\xd5\x46\x63\x32\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x04\xa7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ \x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x0a\x00\x1d\x28\xa3\x7b\x4f\xb4\x00\x00\x04\x34\x49\x44\ \x41\x54\x78\xda\xb5\x95\x5f\x4c\x5b\x55\x1c\xc7\xcf\xfd\xdf\x7f\ \x30\xda\x15\x18\xa4\xa3\xfc\x13\xba\x6e\x02\x2d\x6d\xa1\x64\x74\ \x9b\xc9\x70\x66\x01\x4d\x14\x87\x66\xea\x83\xf3\xc5\xc4\x48\x8c\ \x26\x64\x66\x4b\x7c\x24\xf1\x41\x33\x1f\x8c\x09\x26\x53\x1f\x37\ \x14\x90\x6c\x1a\x23\xdb\x94\x09\x99\x16\x86\xb4\x1d\xdd\xca\x9f\ \x42\xa1\xb7\xff\xe8\xa5\xed\xbd\xbd\xbd\xff\x3c\x0f\x7b\x30\x21\ \x14\xcd\xf4\x93\x7c\x5f\x4e\xee\xf7\x9b\x5f\xce\x3d\xdf\x73\xc0\ \xff\x05\x02\xfe\x86\x5e\xaf\x47\x46\x46\xbe\x6c\x2d\xaf\xa8\xe8\ \xa3\x48\xaa\x09\x41\x11\xbc\xc0\x17\xd6\xd2\x4c\xfa\x87\x57\x5f\ \x19\xb8\xc5\x30\x8c\xfc\xaf\x83\x87\x87\x87\xab\xdb\xdb\x1d\x9f\ \xc7\x92\xd9\xb3\x53\xf7\xc2\x48\x98\xce\xca\x82\x20\x81\x83\xa5\ \x24\xe2\x3a\x56\x89\xb4\x5a\xaa\xbd\xe1\x70\xf8\xad\x0b\x17\xde\ \x9c\xfb\xc7\xc1\x97\x2e\x5f\xae\xb3\xdb\xec\xb7\x26\x7f\x5d\x37\ \x79\x57\x04\xb9\xae\xd9\x2c\x5b\xdb\x6a\x15\x5e\x52\x24\x26\xce\ \x00\x9f\x77\x19\x55\x09\x09\xe2\x8d\xb3\x0d\x5c\x32\xbe\xd5\x37\ \x38\xf8\xee\x14\xd8\x07\x0c\x8a\x78\xed\xfc\xf9\x1b\x37\x67\x13\ \x4d\x7f\xd2\x04\xe7\x38\xed\x4a\x79\x7a\xda\xc4\x85\xc0\xaa\x2a\ \x93\xcb\x22\xcf\xf4\x38\x18\xd2\x68\xd8\x4e\x32\x92\xf0\xcb\xcc\ \xaa\xae\xe3\xa8\xa1\xcf\xa0\xd7\x7f\x7d\xff\xfe\x7c\x16\x14\x01\ \xbd\x78\xf1\xc3\x81\x38\x23\xdb\xee\x06\x85\x9c\xe3\x4c\xc7\x72\ \x95\xb5\x66\xa3\x44\xaf\x49\xac\xae\x27\xc8\xe5\x95\x28\x85\xeb\ \x54\x31\xdd\xe1\xf2\xb0\xab\xc7\xb1\xac\x18\xaa\x22\xb3\x01\xf6\ \x80\xc5\xd2\xfc\x01\xd8\x07\x94\x24\x89\xfe\xb9\x50\x5e\xd4\x35\ \x98\xfd\x79\x43\x59\x90\x46\x71\xff\x8a\x84\x2e\xed\x70\x14\xd8\ \xc9\x08\xc0\x2f\xa0\xa1\x0c\x49\xac\x85\x14\xfc\x81\xfa\x48\xe3\ \xdc\xfc\x86\xcc\x90\x24\xf9\x22\xf4\x92\xa0\x08\xb8\xac\x28\x4f\ \x6d\x73\xb8\xa8\x3e\x66\x5a\xf3\xcf\x2e\x9a\x53\x91\x7c\x27\xaa\ \x3b\x04\x14\xb1\x04\x88\x6c\x0a\x5c\x1d\xfc\xf8\x05\x89\x4b\x03\ \x43\x63\xcd\x3d\xe3\xf1\x67\x7f\xdf\x01\x54\x02\x23\x89\x06\xe8\ \x2d\x85\x4a\xec\x39\x31\x50\x14\x8a\xa0\x28\x81\x28\xd5\xb0\x7c\ \x41\x16\x99\x1c\x82\xf0\xb8\x01\x91\x55\xd0\x47\xa9\x81\xa0\x20\ \x48\x2e\x97\x47\xf2\x5c\x5e\xc4\x34\x04\x8f\xeb\xd4\xf0\x0b\x0c\ \x60\x18\x46\x15\x9d\x58\x92\x24\x5a\xaf\xc3\x0c\x19\x59\x41\xcc\ \x7d\xc7\xa7\x1c\x46\xcd\x77\x15\x14\x56\x18\xff\xc2\x7b\x05\xe8\ \x08\xf0\xfa\x47\xef\xbf\x9d\x14\x64\x3c\xc1\x8a\x9a\xd4\x4a\xb2\ \xc2\xa0\xa5\x28\x54\x61\x32\xd0\x97\x29\xba\xc7\xe9\x74\xfa\xa7\ \x16\x33\xa5\x61\x37\x62\x46\x91\x17\x31\xd8\x00\x09\x43\x91\x42\ \xc4\x17\x04\xe1\xc5\x20\x20\x31\x94\x07\x08\x10\x25\x59\x01\x62\ \x2e\x4f\x39\x6b\xa8\xaa\x58\x2c\x76\x17\x7a\x73\x45\x83\x27\x26\ \x26\x46\x4a\x09\x86\x71\x68\xf9\x36\x2e\x9a\xd6\xb3\xbc\x48\xf2\ \x8a\x02\x9c\xae\xca\x6f\x3a\x3d\x96\xaf\x24\x44\x91\xf3\xa2\x82\ \x73\x69\x4e\x5b\x46\xc7\x5a\xdb\x4d\xf2\x81\x99\x99\xdf\x3e\x81\ \x5e\xa9\xe8\x39\x66\x20\x1a\x8d\x96\xee\xf5\x1c\x1d\x40\xb3\xc8\ \xc1\xe5\x8c\x92\x14\xb4\x2a\xbe\xd6\xd9\xf8\xd0\x64\x6f\x5e\xa5\ \x59\x49\x47\xd3\x19\xa3\x69\x8b\x3e\xf1\x52\x0d\xdf\x65\xae\x32\ \xe0\xf0\xb8\xe5\x58\x96\xfd\x31\x18\x0c\xca\xc5\x0a\x02\xfc\x7e\ \xdf\x22\xac\xe0\xe6\x69\x7b\xed\xf3\x5d\xe5\xba\x76\xbd\xa0\x1c\ \x92\x32\x85\x4a\xc0\xb0\xf5\xb5\x7c\xde\xe9\x41\x99\xe7\x5a\x09\ \xba\xee\xe6\xf8\x75\x91\x65\x73\xe4\x89\x93\xa7\x9c\xd6\x23\x96\ \xa7\x65\x59\x9e\x5c\x58\x58\x28\xec\x19\x0c\x51\x7c\x3e\xdf\xfc\ \x9d\x3b\xb7\xbf\x35\x96\x52\xb8\x5e\x4c\x35\xd5\xc9\xdb\x96\xc3\ \x3c\x5d\xaf\xac\x2f\x12\x8f\xe6\x67\x7e\xfe\xec\xca\xa7\xef\x44\ \x22\x1b\x57\x0b\x3c\xdf\x1b\x8d\x6e\xe9\x3a\x3a\xdd\x16\xbb\xad\ \xed\x64\x59\x59\xd9\xf7\xd3\xd3\xd3\xb9\x3d\x2e\xa1\x5d\x6b\x6a\ \xa8\x12\x28\x14\x2a\x03\xc5\x42\xc9\x00\xe2\x74\x3a\xad\x2d\x2d\ \x2d\x37\xe0\x0d\x58\xf3\xf2\xb9\x73\x40\x4d\x51\x0f\xc6\xc6\xc6\ \x7a\x87\x86\x86\x1e\xed\x9e\x78\x37\xc2\xe3\xbf\x9e\x85\x2a\x40\ \x29\xe0\x31\x9b\x9b\x9b\x71\xd8\xbc\xf1\x72\xa3\xf1\x4c\x70\x69\ \xc9\x58\x6d\x32\x19\xbb\xdc\xee\x7e\x8b\xc5\x72\x7b\x72\x72\x72\ \xb3\x48\xf0\xfe\x44\x22\x91\x6d\x41\x10\xae\xd7\xd7\xd7\x9f\x0a\ \xaf\xad\x55\xa9\xd4\xea\x92\x4e\xb7\x7b\xc0\xe5\x72\x2d\x8c\x8e\ \x8e\x3e\x2c\x12\xbc\x3f\xd1\x68\x34\x0b\x3b\x70\xcd\x6a\xb5\xba\ \xb7\x53\x29\x33\xc7\x71\x14\xdc\xa6\xfe\xee\xee\xee\x48\x36\x9b\ \x9d\xc7\xc0\x13\x10\x8f\xc7\x39\x9a\xa6\xaf\xb5\x40\x60\x13\x9b\ \x60\x71\x30\x9b\xcd\xd6\x0b\x5f\xa2\x00\x06\x9e\x90\x44\x22\x51\ \x08\x85\x42\xa3\x76\xbb\xbd\x46\xab\xd5\xb6\x7a\xbd\xde\x3f\x02\ \x81\xc0\x25\xf0\x5f\x61\x32\x99\xb0\xf7\x20\x1e\x8f\xc7\x08\x20\ \x7f\x01\x05\xd6\xf6\x6e\x13\x0f\xa3\xe1\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x0f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x8c\x49\x44\ \x41\x54\x38\x8d\x8d\x92\xbb\x4e\x2b\x41\x0c\x86\x3f\xdb\x2b\x85\ \x02\xf2\x04\x48\x34\xa7\xa0\xe2\x0d\xd8\x77\x80\xbc\x09\x05\x20\ \x85\xee\x34\xa7\x3d\x05\x3d\x12\x75\x24\xa0\x41\x88\x9a\x0e\x9a\ \x40\x09\x81\x2a\x0a\x2b\xa2\x54\x89\x94\xcd\xc5\x14\x7b\xc9\x64\ \x97\x82\x91\xac\xd1\x78\xc7\x9f\xff\xf9\xbd\x02\xfc\x01\xf6\xf8\ \xdd\xea\xba\xfb\x6b\x98\x88\x80\xbd\xcf\x24\xe9\xb8\x83\x99\xa2\ \x22\x88\x2a\x22\x92\x05\x80\x08\xaa\xca\xd6\xe6\x66\x0b\xa8\x01\ \xc8\xef\x00\x90\x24\x09\xbd\xf7\x77\x34\x4f\x88\x48\x06\xc8\xce\ \xbb\x22\xb2\x1f\xd4\x7f\x44\x00\x66\x06\xee\xa8\x2a\xdd\x6e\x97\ \x38\x8e\x11\x35\xcc\x56\x4a\x54\x84\xd1\x68\xf4\x57\x44\xbc\xe8\ \x78\xd6\x6e\xff\x8b\x8a\x2e\xa2\x8a\xe6\xd2\x1d\x50\xa1\x54\x10\ \x84\x12\x3c\xab\xd9\x6c\x36\x22\xa0\x2c\xd4\x1c\x62\x66\x98\x59\ \xe9\x47\xf9\x3d\x07\x15\x0a\x44\x84\x35\x80\x05\x80\x02\xa6\xba\ \x32\xb6\x0a\x28\x4d\x54\x55\x24\xdf\xab\x61\xa1\x02\xd5\xda\x5c\ \x33\x0f\xa0\x1c\x1d\x80\xe6\x97\x2d\x00\x49\xd0\x3d\xdc\x4b\x13\ \x35\xe8\x50\xc8\xad\x16\x57\x01\x2b\x05\xe1\xdb\x02\x05\x95\x09\ \xd4\xee\xad\xfd\x48\xe1\x2a\x67\xff\x03\xc4\xdd\x49\xd3\x94\x69\ \x9a\xfa\xf3\xcb\x73\x3f\x02\x1c\x11\x57\x55\x09\x25\x86\x9d\xc2\ \xe2\x7e\xbf\x4f\xa3\xb1\xc1\xff\xf3\xf3\xfb\xeb\xab\xeb\x4b\x80\ \x1d\xe0\x00\x38\x04\x0e\xf7\xe3\xf8\x62\x32\x99\xf8\x74\x3a\xf5\ \x34\x4d\x7d\x3e\x9f\xfb\x62\xb1\xf0\xe5\x72\xe9\xe3\xf1\xd8\x07\ \x83\x81\x1f\x9d\x9c\x3e\x00\xdb\xee\x0e\xee\xbe\x16\xad\x56\xeb\ \xa8\x00\xcc\x66\xb3\x35\xc0\xd7\x70\xb8\x3c\x6e\x9f\xdd\x01\xdb\ \x90\xd5\xd6\x3c\xe8\x74\x3a\xb7\x00\x66\x56\x1b\xfa\x5b\xaf\x37\ \x7c\x7a\x7c\xbc\x71\xf7\x61\x91\xfb\x06\x81\x94\x9d\xac\xac\xe0\ \x78\xdb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x74\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xf1\x49\x44\ \x41\x54\x38\x8d\x95\x93\x3f\x6f\xd3\x50\x14\xc5\x7f\xef\xc5\x55\ \x90\x53\x67\xcc\x84\xba\x84\xa1\x09\xa8\x4b\x93\x2c\xcd\x58\xa9\ \x4b\x16\xda\xaf\x90\xa5\x9f\x03\x24\xfe\x08\x09\xb6\x6e\xf9\x06\ \x0c\xc0\x02\x6b\x55\x84\xb2\xb5\x69\x15\xb5\x12\x55\x28\x63\x14\ \xd1\x01\x63\x3b\xf6\xf3\xbb\x2c\xb5\xb1\x69\x19\xb8\xd2\x1d\x9e\ \xf4\xce\xb9\xe7\x9c\xab\xab\x44\x04\x00\xa5\xd4\x03\x60\x83\xff\ \xab\x89\x53\x78\x6c\xcc\xe7\xf3\xb7\xbf\x82\x80\xf1\x78\x4c\xdd\ \xf3\xd8\xec\x74\x58\x59\x59\x41\x29\x85\x52\x2a\x1b\x04\x80\xd6\ \x1a\x6f\x75\x75\x4f\x17\xe9\xac\xc0\xe7\xa3\x23\x3a\x9b\x9b\xac\ \xad\xad\x31\x9d\x4e\xc9\x14\x66\x60\x05\x79\x03\x14\x15\x50\xa9\ \x68\xa2\x28\xa2\xd1\x68\x50\xad\x56\x09\xc3\x90\xef\x57\x57\x34\ \x9b\xcd\x3f\x2a\x32\x92\x4c\xd1\x70\x38\xfc\xe8\x38\xce\x8e\xeb\ \xba\xb8\xae\x4b\xbd\x5e\xa7\xdb\xed\xb2\xb5\xb5\x85\x31\x86\xd3\ \xb3\x33\x5a\xeb\xeb\x38\x8e\x93\x83\x01\x94\xd6\xdc\xab\x56\xf7\ \x1c\x60\xe7\xe0\xe0\xa0\x94\x8c\xb5\x16\x6b\x2d\x95\x4a\x85\x87\ \xed\x36\x69\x9a\xa2\xb5\xbe\x33\x8b\x92\x85\xa2\x57\x6e\x3e\x2b\ \xa5\xd0\x5a\xa3\xb5\x2e\x01\xb3\x72\x80\x4f\xfb\xfb\xfb\x25\x0b\ \xbd\x5e\x8f\x7e\xbf\x8f\x15\xe1\xfc\xfc\x9c\x56\xab\x75\x6b\x72\ \x5e\x22\x92\x25\xbd\xfb\xd3\xf7\x65\x34\x1a\x89\xef\xfb\x62\x8c\ \x91\xe3\xe3\x63\x99\x4e\xa7\x92\x24\x89\x18\x63\xc4\x18\x23\x69\ \x9a\xe6\x0d\xec\x96\x2c\x28\xc0\x75\x5d\x16\x8b\x05\x71\x1c\x13\ \x04\x01\xed\x76\xfb\x4e\xef\x45\x0b\x45\xf3\x6c\x6f\x6f\x73\x78\ \x78\x88\xe7\x79\xf4\xfb\xfd\x5b\xe1\x65\x01\x27\x89\x11\xc0\x96\ \x15\x28\x45\xad\x56\x63\x30\x18\xe4\xa0\x22\x38\x8a\x22\x66\xb3\ \x19\x35\x6f\x95\x77\xef\x3f\x8c\x81\x93\x52\x06\x41\x10\x48\x14\ \x45\x12\xc7\x71\xee\x3b\x4d\x53\xb1\xd6\x4a\x92\x24\x32\x99\x4c\ \x24\x8e\x97\xf2\xf4\xe5\x8b\x0b\xe0\x11\xa0\xca\x04\x61\xf8\x4f\ \x02\xdf\xf7\xe5\xeb\xe5\xa5\x3c\x79\xfe\xec\x02\xe8\x02\x5a\x44\ \x4a\x5b\x78\x1c\x84\xa1\x5d\x2e\x97\x92\x24\x49\x89\x40\x44\xe4\ \xc7\xf5\xb5\x7d\xf5\xfa\xcd\x97\x9b\xc9\x3a\xc3\xa9\xc2\x39\xdf\ \xbf\x61\xfe\x6b\xd1\x79\x59\xe0\x04\xf8\x26\x85\x0b\xfb\x0d\xc2\ \xe3\x2f\xb3\xa8\x69\x9b\xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\xfe\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\xcd\x00\x00\x00\xcd\x08\x00\x00\x00\x00\x3e\xd7\xab\xb5\ \x00\x00\x00\x02\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\ \xdd\x7e\xfc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdf\x0a\x03\x0b\ \x33\x31\xde\x59\x39\xfe\x00\x00\x02\x8f\x49\x44\x41\x54\x78\xda\ \xed\xdd\xdb\x72\x83\x30\x0c\x84\x61\xd4\xe9\xfb\xbf\xb2\x7b\xdb\ \x09\x20\xc9\x86\x1c\xa6\xfd\xb8\x24\x06\xf2\x4f\x94\x9d\x5d\x23\ \x43\x8c\xed\x0f\x6d\x5f\x1b\x1a\x34\x68\xd0\xa0\x41\x83\x06\x0d\ \x1a\x34\x68\xd0\xa0\x41\x83\xe6\xbf\xd2\x7c\x1f\xed\x8c\xe6\xc1\ \xe3\xf1\x90\x71\x78\xa6\x93\x61\x71\x78\xba\x85\x6b\xab\x34\x34\ \x68\xd0\xa4\x9a\x96\xa8\xc6\x5e\xf5\x22\x53\xc4\x91\x1c\x32\xb6\ \xcb\xd7\x56\x69\x68\xd0\x3c\x55\x05\x12\xfb\xb1\xdf\x11\x8f\xa3\ \x8f\xed\x4c\x34\x1d\x51\xf7\xe2\x2a\x0d\x0d\x1a\x34\x53\x9a\x56\ \x6f\x91\xe5\xad\x48\x04\x70\xb7\x63\xf8\x6d\xd0\xa0\x41\xf3\x76\ \x4d\x1b\x8f\x12\x96\xc9\x54\x4c\x44\x2f\x95\x86\x06\xcd\x47\xa8\ \x40\xed\x36\x22\x0b\x71\x4d\x23\x13\xab\x17\x57\x69\x68\xd0\xa0\ \xe9\x6a\xda\x35\xd3\xb1\xd3\xad\xdd\x0c\x54\x24\xb2\x15\x7e\x1b\ \x34\x68\xd0\x2c\x49\xcf\xb3\x56\x45\xd4\x93\x4a\xd3\x73\xe6\x2a\ \x0d\x0d\x9a\x97\x39\x9b\x28\xe3\x5b\x3d\x62\x7b\x74\x2f\x59\x93\ \xd0\x38\x1e\x3c\x65\x86\x54\x1a\x1a\x34\x68\x52\x67\x53\xea\xd1\ \x5e\x00\x47\x65\x72\x16\x52\x58\xfd\x0d\x54\x1a\x1a\x34\x68\x96\ \xd3\x5a\x64\x9a\x33\xaa\x11\xf5\xac\xfa\xb8\x92\xe7\x54\x1a\x1a\ \x34\xf7\xab\x40\xd7\xb7\x6c\xe5\x1f\x36\xca\xcf\x46\x53\x6b\x38\ \x1b\x34\x68\xd0\x9c\x6d\xd5\xbd\xb5\x5d\xef\xf6\xce\x9b\xd4\xce\ \x66\xca\x06\xd5\x99\xd0\x0c\x14\x1a\x34\x68\xee\xf3\x69\xe9\x34\ \x78\x69\xa9\xd2\x15\x2b\xcd\xa9\xfa\xe0\xd3\xd0\xa0\x79\x91\x0a\ \xd4\x5d\x3d\xe5\x02\xfc\x93\x35\x1e\xcd\xc1\x5b\x99\x14\x55\x1a\ \x1a\x34\x68\x1a\x69\x6d\x6a\x42\xa8\xee\x65\x6c\x3e\x8c\xa4\xd1\ \xee\xad\xd2\xd0\xa0\x79\x97\xb3\xc9\xd2\x4b\x9d\x42\xe6\x96\xe1\ \x67\x09\xab\x3a\x4e\xa5\xa1\x41\x43\xd3\x26\x65\xe4\x64\x92\x65\ \x4a\xa0\xea\x29\x9a\x2d\xb1\x52\xc9\x05\x55\x1a\x1a\x34\x34\x2d\ \x57\x9e\xee\x8d\xfb\x93\x43\x9a\x77\xc7\x16\x9b\xb9\x55\x1a\x1a\ \x34\x37\x6c\xbd\x15\xf9\xd9\xbf\xb4\xb6\x3a\xb5\x01\xca\x6e\x6e\ \xa9\x34\x34\x68\xd0\xdc\xa7\x69\x27\x76\xe6\x5a\xd2\xca\x9c\x53\ \xfd\xa0\x59\x77\xd8\xd1\xa0\x41\x33\x97\xd6\xe6\xce\xd0\x74\x5a\ \x75\xf8\xcb\xda\x0f\xac\x5b\x43\x83\xe6\xa5\xce\xe6\xd2\xbb\x34\ \x52\x3b\x53\xf7\x43\x47\x9d\xea\x54\x1a\x1a\x34\x68\x16\xd2\x5a\ \xf3\x39\x41\xa3\x0c\x59\x53\xed\xcf\xb5\x9a\x49\x6b\x68\xd0\xa0\ \x59\xd1\xb4\x66\x4a\xaa\x8d\x55\xb6\xc8\xed\xf7\x39\xa2\x97\x09\ \xf5\x40\xa1\x41\xf3\x52\x15\x58\xde\x46\x69\x56\x9a\x2d\x8e\x51\ \xda\x25\x95\x86\x06\x0d\x9a\xbb\x35\xad\xd9\xee\x3d\x8e\x3d\x4d\ \x7d\xa2\x5e\x8a\x54\x69\x68\xd0\xd0\xb4\x65\x01\x69\x1f\x18\x4d\ \x19\x2c\xdf\x6c\x54\x0a\x9e\x4a\x43\x83\xe6\x56\x15\xb8\xd6\x19\ \x74\xfc\xd9\xf2\xe3\xd8\x7a\x4b\xdd\x54\x1a\x1a\x34\xff\x9d\xe6\ \x69\xef\xf1\xf0\xdb\xa0\x41\x83\x06\x0d\x1a\x34\x68\xd0\xa0\x41\ \x83\x06\x0d\x1a\x34\x1f\xbf\xfd\x00\xe2\x2c\xba\xb0\x4b\xb4\x57\ \xb9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xe6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x0b\x07\ \x14\x37\x1f\x93\x56\x3a\x2c\x00\x00\x01\x66\x49\x44\x41\x54\x38\ \xcb\xa5\x93\x41\x4e\xe3\x40\x10\x45\x5f\x39\x6d\xc7\x69\xbb\x63\ \xdc\x2b\x38\x03\xf7\x60\x8d\xc4\x82\x05\x23\xcd\x0d\x66\x3b\xe2\ \x04\xcc\x7e\xee\x80\x60\x91\x15\x12\x0b\xee\xc1\x35\x3a\x8a\x02\ \x4e\xe2\xd8\x53\xb3\x48\x1c\xc2\x64\x12\x21\xa8\x55\xa9\xeb\xf7\ \xef\xfa\xf5\xab\xe1\x8b\x21\x00\xde\xfb\x24\x84\x70\x06\xe4\x1f\ \xbc\xf7\xe2\xbd\x7f\x0a\x21\xd4\x06\x20\x84\x70\x36\x9d\x4e\x7f\ \x58\x6b\xa5\x43\xa8\xfe\xa1\xd7\x33\x35\x40\xdb\x36\x89\x48\xb4\ \xb9\x5d\x55\x95\x3a\xe7\x04\x78\x30\xeb\xb3\xdc\x5a\x2b\x93\xc9\ \x64\xd6\x81\xca\x61\x59\x9f\x9e\xcb\x05\xc0\xf3\x48\x47\xe3\xc9\ \x38\xe9\x6a\x45\x51\x0c\x80\x0c\xc0\xec\xeb\x51\x15\x49\x93\xb7\ \x7c\x1f\x2e\x3a\x24\x54\x01\x13\xaf\x93\x3d\x61\xb6\x35\x97\xc3\ \xb2\xee\x5e\x13\xc3\xb2\x9f\x42\x3e\x04\x89\x59\xe6\x69\xb9\x9a\ \xba\xa0\xaa\xcd\x60\x87\xa0\xd7\x33\xf5\xe9\xb9\x5c\x74\x6d\x9b\ \x04\x8e\x4f\xd0\x6c\x08\xdf\x7e\xc9\x65\xdc\x87\x28\x82\xd9\x1c\ \x6e\x7f\xea\xe3\x0e\xc1\xbf\xe6\x66\x0e\xac\x03\x77\x04\xb1\x85\ \x7e\xfa\x46\xf0\x5f\x09\x6d\xdb\x24\xcf\x23\x1d\x6d\x4b\xb8\xba\ \x91\xcb\x24\x83\xdf\xdf\xf5\x7e\x31\x27\x46\x57\x12\xda\xb6\x29\ \x76\x08\x44\x22\xb6\xad\xca\xd3\x92\x24\x05\x9b\xc1\x62\x46\x5c\ \x2d\xc7\xf1\xc6\xc6\x41\xf1\x31\x17\xa2\x68\x35\x0b\x3d\x84\xd9\ \x5b\x10\xf4\xb5\x82\xf9\x02\xe4\x00\x47\x27\xe1\xa5\xaa\x2a\x5d\ \x6f\xd8\xda\xd6\x66\x70\x77\xbd\x9a\x76\xdb\x36\x45\x61\x8b\x77\ \xab\x0c\xbc\x6e\x08\xbc\xf7\x4f\xce\x39\x3e\xf1\x99\xf8\x72\xfc\ \x05\xfa\x36\x81\x8c\x25\x97\x00\x90\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x03\x6c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\x01\ \xc1\x30\x55\xfa\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x07\ \x13\x10\x39\xae\xa1\x50\xf0\x00\x00\x02\xec\x49\x44\x41\x54\x38\ \xcb\xed\x94\xcd\x6b\x9c\x55\x14\xc6\x7f\xe7\xdc\xf7\x9d\x37\x33\ \x66\xcc\xa8\xd1\x18\x75\x65\x2b\x84\x46\x05\x89\xd9\x04\x52\x41\ \x5d\x28\x28\x16\xa1\x6e\xfc\x0b\x04\xb1\xff\x41\x41\x5c\x08\x6e\ \x15\x5c\x29\xae\x2c\x98\x85\x50\xa9\x1f\x45\x17\x4d\x71\x8a\x0a\ \x66\x11\xa3\x48\xd5\x12\x93\x36\x69\xda\x98\x64\xd2\x99\x4c\xe6\ \x7e\x1c\x17\x33\x09\xe9\x54\xc1\xb5\xf4\x5c\x0e\xcf\x85\x7b\x78\ \xee\xf9\x78\xee\x85\xdb\x76\xdb\xfe\x57\x66\xc2\x73\xef\x16\xff\ \x25\x72\xfd\xcc\xdd\x63\xd7\xbe\xb8\xeb\xc3\xb5\xcf\xaa\xc7\xff\ \x2d\x46\x00\x26\x26\x26\xb4\x28\x8a\xea\x42\xe5\x99\xd1\xfc\xa1\ \x27\xfd\xab\x93\x43\x57\xe7\x16\x6f\x64\xb3\xef\xbc\xb0\x69\xf6\ \x89\xb6\x17\x4e\x8f\x9a\x5f\x1d\x4f\xa1\x33\x4e\xec\xbc\x94\x7c\ \xfb\xa8\x85\x96\x44\xbf\x7d\x3d\xc6\xc6\xd8\xbd\xcf\x37\xd7\x6f\ \x21\xbe\xf2\xd5\xe3\x1f\x95\xca\x83\xc7\xda\xbe\xa2\xad\x58\x95\ \xda\xf0\xe0\x40\xb9\x32\x94\xe5\x99\xc7\x29\x66\x08\x82\x89\x89\ \x80\x19\x04\x4f\x0a\xbb\x24\xbf\x43\x6c\x5e\x26\xb6\x56\x66\x6a\ \xcf\xfe\xf9\x4a\x3f\xb1\x9e\x9f\xe7\x9b\xb2\xdb\x18\x1a\xae\x6e\ \x55\x47\xee\x2f\x0f\xd6\xee\x24\x2b\xdc\x1a\x9a\x1a\x58\xdc\x10\ \xc2\x96\x58\xdc\x04\xbf\x85\xa4\x6d\x60\x13\xfc\x15\xac\xf5\x13\ \x12\xd6\x50\xe5\xf8\xe6\xd9\x07\x8f\xdd\x92\xf1\xd4\xd4\x54\x36\ \x73\x72\x7d\x79\xb8\x26\x23\x32\xe0\x10\x49\x18\x86\x25\xd8\x4b\ \xf2\x20\x22\x60\xd1\xb0\x98\x48\xc1\xb0\x60\xa4\x18\x56\x90\xec\ \x48\xf5\xa9\xdf\x37\xf7\x33\xae\xd7\xeb\xe1\xe7\x45\x77\x26\x91\ \x70\xb9\xa0\x99\xa2\xb9\xa0\x39\x68\xd6\x8f\xbd\xb3\x92\xa0\x25\ \xc5\xed\x79\x96\x8f\x2a\xf6\xc1\x4d\xad\x00\xf8\x7a\xae\x78\x7b\ \x77\x37\x7a\x0c\xc4\x29\xea\x14\xcd\x04\xc9\xfa\x51\xba\x67\xb9\ \xa0\x05\x68\xa1\x68\xee\x70\xb9\x43\x73\xf7\x72\x73\xf6\xd0\x89\ \x9b\x54\x01\x30\x77\xea\xf0\xfc\x91\x31\xf7\x68\x36\x90\x21\x4e\ \x30\x4b\x60\xbd\x88\xd4\x4b\x21\x75\x2f\x46\x0d\x48\x98\x19\xd6\ \x11\x52\x07\xcc\x1b\x29\xa4\x5d\x8b\x36\x5d\x99\xbe\xf8\x83\xee\ \x11\x7f\xf7\x4b\xe9\xfd\xce\xf6\x0e\xbe\xdd\x21\xec\x7a\x62\x27\ \x92\x42\xea\x62\x4c\x24\x9f\x48\x31\x61\x31\x61\xa9\xdb\x70\x71\ \x82\xe4\xa0\xb9\xa2\xb9\xe2\x32\x57\x38\xa7\x33\x3b\xb3\x87\x86\ \xdc\x1e\xf1\x5f\xfe\x91\xb9\xa7\x1f\x6b\xbc\x5e\x56\x5f\x8e\x9d\ \x44\x0a\x09\x0b\x86\x25\xeb\x0e\x2b\x81\x60\xbd\xb7\x64\xfb\xe5\ \x8a\x28\x82\x22\x08\x22\x0a\x68\x4d\xb4\x18\xdf\x27\x5e\x5a\x5a\ \x4a\x47\x27\xef\x9b\x78\x78\xa4\x3d\x8e\x01\xc9\x30\xeb\x95\x6b\ \xfd\xa4\x3d\x99\xa4\x2e\x7d\x77\x39\x44\x1c\xe2\xee\xb9\x20\xe5\ \x07\xde\xd4\x83\x93\xfc\x76\xe1\x8e\x93\xcd\x36\x21\xc5\x40\x8c\ \x91\x14\x23\x29\x44\x2c\xec\xed\xd3\x01\xb7\x9e\x27\x62\x2c\x42\ \xa3\x55\xf9\xed\xdc\xfc\xe8\x5b\xd3\xaf\x75\x5e\xcc\xc6\x3f\x3d\ \x2f\xfd\xc2\xfe\xfc\xbd\xb1\x1f\x27\x0f\x5f\x7b\x42\xc5\xed\x2b\ \x44\x54\x10\xe7\xd0\x2c\x23\x52\x8a\x3e\xb8\x66\xdb\x67\xcd\x46\ \xab\x74\xf9\x8f\x95\xca\xf7\xa7\xce\xf2\xe5\xa5\x65\xbf\x0c\x6c\ \x00\xd7\xeb\xf5\xfa\x8d\xac\x9f\xf8\xf4\x85\xe1\x37\xca\xd5\xe2\ \x63\xdf\xdc\xda\xf1\xd1\x6d\xb5\x3a\xf9\x5a\xa3\x95\xad\x6e\x34\ \xcb\x8b\xbf\x2e\x95\x2e\x2e\x5c\xb2\x25\xe0\x2a\xb0\x0a\x34\xeb\ \xf5\x73\xf6\x4f\x9f\xd0\xdf\x24\x5a\x81\xc2\x3c\xec\x27\xcc\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xc7\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\ \x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\ \x1e\x0e\x08\x39\x2b\x9b\x64\x90\x00\x00\x01\x5c\x50\x4c\x54\x45\ \x00\x00\x00\x05\x11\x23\x05\x13\x27\x6b\x86\xae\xff\xff\xff\x07\ \x1c\x3a\x07\x19\x34\x01\x05\x0b\x02\x09\x12\x0c\x26\x4b\x0d\x28\ \x4e\x07\x18\x32\x06\x14\x29\x1c\x2e\x38\x44\x6d\xaa\x38\x65\x72\ \x09\x1d\x3c\x08\x1b\x37\x40\x6a\xa8\x0b\x1f\x3b\x0f\x25\x41\x26\ \x55\x9a\x26\x55\x9b\x0c\x1c\x2e\x0f\x1e\x2c\x23\x52\x99\x23\x54\ \x9d\x23\x55\x9e\x25\x53\x99\x25\x58\xa5\x25\x58\xa5\x10\x27\x46\ \x12\x27\x42\x5c\x7c\xab\x37\x59\x8c\x1f\x33\x44\x23\x38\x47\x23\ \x3e\x60\x26\x3f\x5e\x35\x57\x6d\x36\x57\x6d\x1e\x36\x59\x22\x44\ \x70\x27\x48\x73\x3a\x5e\x8f\x3c\x5f\x8f\x38\x67\x85\x38\x68\x85\ \x70\x94\xbe\x74\x98\xc1\x38\x4d\x6a\x63\x83\xae\x63\x83\xb0\x42\ \x60\x84\x45\x63\x86\x29\x44\x6b\x1e\x39\x62\x36\x57\x88\x3a\x57\ \x7d\x3c\x5e\x8e\x3d\x5f\x8f\x42\x62\x8f\x43\x6c\xa2\x44\x62\x8a\ \x48\x6f\xa4\x4d\x6d\x95\x4e\x6d\x96\x4e\x73\xa9\x4f\x6b\x8c\x4f\ \x70\x9b\x4f\x71\x9c\x4f\x74\xaa\x50\x71\xa0\x52\x6b\x8d\x52\x6d\ \x8e\x53\x6e\x8f\x54\x70\x91\x54\x74\x9d\x54\x74\x9e\x56\x72\x95\ \x56\x73\x95\x57\x75\x98\x57\x78\xa2\x58\x77\xa4\x59\x74\x97\x59\ \x78\x9b\x5a\x80\xb7\x5b\x80\xb7\x5c\x7d\xac\x5d\x83\xb8\x5d\x83\ \xb9\x5e\x77\x97\x61\x7d\x9c\x61\x7e\x9d\x61\x81\xaf\x61\x87\xbd\ \x62\x7e\x9d\x63\x84\xb3\x64\x8a\xbc\x65\x86\xb4\x67\x8b\xb3\x6b\ \x8f\xb7\x6b\x91\xc2\x6c\x8a\xab\x6c\x90\xc6\x6c\x91\xc6\x6e\x8c\ \xab\x75\x99\xce\x79\x9d\xd2\x7a\x9e\xd2\x7f\xa6\xd5\x81\xa8\xd7\ \x88\xab\xde\x92\xb5\xe7\x93\xb5\xe7\xff\xff\xff\x3e\x97\x17\x96\ \x00\x00\x00\x39\x74\x52\x4e\x53\x00\x00\x00\x01\x01\x05\x07\x11\ \x11\x12\x18\x24\x28\x32\x32\x33\x40\x49\x4c\x4f\x4f\x4f\x4f\x61\ \x64\x7f\x7f\x7f\x7f\x7f\x80\x85\x8e\x91\x96\xaa\xab\xc9\xce\xe1\ \xe1\xe2\xe7\xe7\xe7\xe7\xe8\xe8\xe8\xe8\xe9\xf0\xf2\xf3\xf4\xfc\ \xfe\x9e\x1c\x96\x45\x00\x00\x00\x01\x62\x4b\x47\x44\x73\x41\x09\ \x3d\xce\x00\x00\x00\xac\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\ \x66\x13\x37\x37\x57\x57\x63\x16\x06\x30\x10\x92\x94\x96\xb3\x8b\ \x49\x88\x8d\x71\x90\x95\x92\xe1\x03\x0a\x28\xb9\x78\xfb\x04\x04\ \x86\x86\x06\xfa\xfb\x78\x45\x2b\x02\x05\x38\x35\xad\xec\x1d\x7d\ \x83\x82\xfc\x9c\x42\x3c\x8d\xb8\x40\x7a\x04\xcc\x6d\x3d\x22\x12\ \x93\xe3\x82\x2d\x2d\x04\x21\xa6\xc8\x5b\x3b\x87\xc5\xc7\x87\xbb\ \xdb\x28\x40\xf8\x0c\xac\xaa\x91\x19\xd9\xd9\x99\x51\x6a\x6c\x50\ \x01\x06\x6e\xd3\x9c\x82\x82\x5c\x33\x1e\x06\x38\x10\x4f\x29\x2c\ \x4a\x95\x40\xf0\x19\x98\x94\xf3\xf2\x55\x18\x91\x04\x18\x38\xd4\ \x35\xd8\x19\x50\x00\x3f\x2f\x2a\x5f\xd4\xc0\x50\x0c\x45\x40\x27\ \x2b\x5d\x17\x45\x40\x2b\x29\x4d\x1b\x45\x40\x44\x4f\x5f\x18\xc2\ \x02\x00\xaf\x8a\x1d\x01\xbf\x6e\x3e\x2d\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x9c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x19\x49\x44\ \x41\x54\x78\xda\x85\x90\x49\x68\x14\x41\x14\x86\xff\xea\x9e\x25\ \x8a\xcb\x55\xec\x0e\x18\x15\x45\x04\x49\xbc\xc8\xe0\x41\x2f\x7a\ \x17\x04\x15\x02\x62\xf0\x62\x60\xd4\x44\xe3\x32\x78\xc8\x21\x46\ \x23\x18\x84\x0c\x06\xa2\x04\xdc\xc0\x60\xf4\x22\xb8\x44\x51\xf0\ \x20\x9e\x3c\xe8\x68\x8f\x81\xc0\x08\x26\xb8\x1c\x9c\xc1\xc1\xb1\ \xab\x7b\xe6\x59\xaf\xe8\x4a\x93\x31\xe0\x6b\xfe\xfe\xbb\xaa\xfa\ \xff\xde\xa3\x04\x11\x81\x4b\x08\xd1\xaa\xcc\x51\xd2\x4b\xfc\xbf\ \x38\x38\x9b\x30\x2b\xd7\x75\xd7\x7d\x9a\x9e\x7e\xee\xff\xf1\x45\ \x84\x60\x28\xf4\xc3\x3b\xfa\x3b\xf6\x44\x32\x49\x4b\x5a\x5a\x76\ \xcc\x03\x6c\xdb\x16\x81\x0c\xec\x5f\xd5\x2a\x2c\x4b\x28\xd9\x91\ \x5b\x5a\xa2\x19\x90\x48\x10\xaf\x0c\xc0\x8c\xcd\x3f\x2b\x98\xc5\ \x00\x76\x0e\x6a\x59\x91\x1b\x00\x7f\x73\xc5\x80\x68\x53\x4d\x12\ \x01\x22\x71\xc0\x4c\x60\x14\x03\x84\xb5\x00\x60\x09\x1d\xd6\x10\ \x15\x62\xf9\x52\xe2\xfa\xd8\x28\x3a\xf7\xef\x31\xfb\xec\x8b\x4f\ \xc0\xdd\xb8\xab\xd1\xc3\xbb\x03\x08\xfc\x00\xdb\x37\x12\x66\xbc\ \x65\xb0\xe3\x49\xf4\x79\xf3\x1d\x98\x03\x0d\x7a\x32\x39\x88\x95\ \xfe\x63\xf4\x8d\xfc\xc4\xb1\x4e\x07\x5d\x47\xf2\x26\x64\xba\xeb\ \xe2\x9d\xb8\x22\xc0\xd4\x83\x21\x2c\xad\x4d\xa1\x67\xf8\x3b\xf2\ \xa7\x56\x23\x10\x2e\xda\xdb\x3b\x4c\x03\x33\x05\x2d\x7a\x89\x4f\ \xef\x0f\x61\xb9\x7c\x81\xde\x2b\xdf\x30\x76\x6e\x0d\xbc\xaf\x0e\ \x0e\x9f\xb8\x65\xba\xce\x3b\x11\xe1\x1f\xc0\xa3\x89\x0b\x58\x11\ \xbe\xc6\xf1\xcb\x5f\x30\x7a\xd6\xc1\xc7\x39\x35\x7a\xef\x6d\xa4\ \xd3\xe9\x66\x80\xa9\x18\xb0\xb5\xed\x47\x57\xfa\xf7\x33\x74\x5f\ \x9c\xc1\x78\x7f\x1b\x3e\xcc\xb9\x38\xd4\x73\x03\xa9\x54\x0a\xa6\ \x4a\xa5\x12\xa4\x94\xa8\xd7\xeb\x0c\x6d\x00\x90\x7a\x94\xee\x7d\ \xad\xc3\xf7\xee\x8c\xf8\x9b\x37\xad\xa5\x97\xe3\xdb\x28\x7f\x7e\ \x2f\x55\xab\x55\x0a\x82\x80\xc2\x30\x24\x15\xa0\x46\xa3\x41\x85\ \x42\x41\x7b\xad\x56\xa3\x5c\xee\xcc\x4d\x00\x36\x83\xb3\x1d\x1b\ \xf0\x7e\xf7\xae\x9d\xe1\xbb\xb7\xaf\x28\x3f\x78\x80\x2a\x95\x0a\ \xa9\x4e\x0b\x00\x5c\x0c\xe0\x70\xdf\xe9\x93\x13\x3c\xbd\xb9\x87\ \x55\x42\x88\xd9\x2d\xeb\x53\x9f\xaf\x5e\x3a\xd8\xdc\xd9\x74\xd7\ \xf2\x3c\x4f\x66\x8f\x66\xaf\x01\x48\x72\x98\x25\xf8\x95\xc9\x64\ \x9c\x62\xb1\x98\x2b\x97\xcb\x93\x00\x42\x25\x11\x09\xec\x46\xd1\ \xd9\x1b\x95\x91\x88\xea\x2f\xfb\x5c\xf8\xbd\xf0\xc1\x4d\x21\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x6f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\ \x06\xec\x01\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1d\x0e\x02\x37\x24\x79\x0e\xf3\x00\x00\x01\xfc\x49\x44\ \x41\x54\x78\xda\xa5\x90\x4f\x6b\x13\x41\x18\x87\x7f\xbb\xb3\x69\ \x76\x37\xd9\xd5\x98\xb4\x1b\x29\xa2\x16\xd4\x83\x17\xf5\x24\x58\ \xbc\xf8\x0d\xa4\x78\x29\x22\x82\x5e\xa5\x42\xf1\x58\xcf\x7e\x01\ \xa1\x87\x62\xb1\x01\xf1\x52\x05\xe9\xb1\x78\x10\x91\x4a\xc1\x7f\ \xa0\x58\x8a\x4d\x53\x93\x92\x36\xb1\x89\xbb\xee\x66\xbb\xbb\x33\ \xbe\xae\x8b\x84\x1c\xda\xa8\x0f\xf3\x32\x33\x2f\xcc\x33\xbf\x19\ \xfc\x2f\x12\x7a\x18\xb9\x3c\x2d\x51\x7b\x1d\x82\xe7\x84\x10\xa0\ \x19\x22\xae\xa8\xb1\xfe\x6c\xe2\x38\x7a\x50\xd0\x03\x0f\x7d\x12\ \x88\x23\x37\xc7\x4e\x43\x92\xa4\xb8\x40\xdc\x2f\x2d\xe9\x20\xf6\ \x15\x44\xbb\x2e\x48\x80\x4e\xa7\xf3\xfb\x30\x95\x14\xf7\x3d\xf4\ \x27\x08\x3c\x80\xa2\xb7\xdb\x76\x77\x02\xea\xbb\x7d\x0a\x7c\x07\ \xc0\x2f\x81\x83\x38\x40\x92\x80\xef\x95\x60\xe8\xc2\xed\x49\xf0\ \xe8\xae\xe0\x81\x14\xf9\x76\x9c\xc0\xb6\x5d\x30\x26\xc7\x02\x41\ \x7b\x4a\x20\xe7\xce\x5e\xb3\x21\x38\x8d\xf8\x63\x1f\xb4\x3f\x3c\ \xba\xa5\x20\xb6\xbb\x0d\x1e\xed\x66\x47\x8e\x5a\x30\x8c\x0c\x34\ \x5d\x87\xc4\x06\xc0\x94\x14\x24\x59\x06\xe7\x11\x2e\x8e\x9e\x83\ \xe3\x38\xd9\xad\xfa\x36\xd6\xbe\x94\x41\x3c\x07\x21\x27\xef\x9b\ \xa5\xe8\x4f\x37\xab\x35\x78\x3e\xdd\x86\x34\xb8\xa4\x43\xb0\x2c\ \x42\x68\xf8\xe1\x2b\xd8\xde\x09\x50\xf9\xda\xc2\x46\xa5\x0a\x1e\ \x78\x33\xf6\xa7\xf9\x27\x7f\x04\x3b\x6f\xe7\xa8\xe9\xde\x68\x35\ \x6a\xd5\x66\xf3\x1b\x09\x54\xc8\x29\x13\x29\xf5\x20\xd4\xcc\x21\ \xe8\x46\x1e\x66\x6e\x10\x03\x29\x86\x8e\xbd\xb5\x42\x69\x27\x90\ \x20\x23\xc1\x5e\x59\x68\x92\xf9\xea\xe6\xea\x32\x57\xd5\x34\xf2\ \x85\x3c\x2c\xab\x80\xa2\x35\x88\xa1\x42\x01\x19\x5d\x43\xe5\xf3\ \xeb\x40\xf0\x68\xdc\x5b\x5b\x74\x90\xc0\xd0\x45\xf8\x7d\xa3\x2c\ \x98\xa6\xbb\xed\xfa\xe8\x99\xf3\x97\xe8\x20\xdd\x6c\x64\xc1\x05\ \xc7\xe2\xfc\x34\x9a\xf5\xca\x94\x5f\x5b\x7a\x8c\x2e\x64\xf4\x22\ \x30\x55\x5b\x7d\xb3\xfc\xfe\xe5\x02\x82\x30\x44\x14\x45\x78\x47\ \xeb\xf2\xc7\x57\x2f\xc0\xc3\x7b\xe8\x07\x66\x0c\x9f\x4c\x9b\x45\ \x7b\x6c\xf2\xa1\xb8\x72\xa7\x24\xd2\xa6\xd5\x52\x8c\xe1\x63\xf8\ \x1b\x98\x96\xbf\x7e\xe0\xf0\x29\x61\x5a\x27\x84\xac\xe5\xc6\xf1\ \x2f\xb0\x4c\xb1\x44\x35\x8b\x3d\xf8\x09\x7b\x1c\xef\xe9\x88\x1f\ \x84\x20\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x7e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x0b\x07\ \x14\x37\x38\x36\x5c\x8f\x47\x00\x00\x00\xfe\x49\x44\x41\x54\x38\ \xcb\xad\x93\x51\x4a\xc4\x30\x10\x86\xbf\x69\x4b\xa1\xb1\x31\x6c\ \x60\xdf\xc5\x3b\x08\x9e\x60\x2f\xe0\x3d\x3c\x84\xf7\xf1\x49\x10\ \xdc\xd3\x78\x82\x2c\xa5\x6b\xc4\xda\x38\x3e\xd8\x2e\x2b\x75\xa1\ \xd8\x9d\xa7\xf0\x27\xff\x3f\x33\xff\x4c\x60\x61\x08\x80\xf7\xbe\ \x0c\x21\x6c\x80\x7a\x26\x6f\xef\xbd\xdf\x86\x10\xba\x02\x20\x84\ \xb0\x69\xdb\xf6\xde\x18\x23\xe3\x0b\xd5\x2f\xf2\xbc\xe8\x00\x52\ \xea\x4b\x91\xec\xc0\x8e\x31\xaa\xb5\x56\x80\xa7\x62\xc0\x6a\x63\ \x8c\x34\x4d\xf3\x7e\x22\xe3\x2f\xdc\x39\x57\x01\x17\x00\xd9\x52\ \x0f\x16\x0b\x14\xc7\x3d\xaf\x2e\x57\x9d\xea\x8f\xb1\x22\xe8\x78\ \xee\x3f\x8f\x5c\x17\x54\xb5\xaf\x26\x02\x79\x5e\x74\xb7\x22\x77\ \x0e\x18\x6f\x6b\x60\x0d\x58\xc0\x8c\x06\x02\x0f\xaa\xcf\x13\x01\ \x80\xbf\xc8\x37\xc0\x35\x70\x35\xe0\xaf\xa7\x5a\x48\xa9\x2f\x5f\ \x7a\x7d\x1c\xcb\x06\xe8\x3e\x00\x1d\xca\x06\x41\xc1\x0b\x9a\x52\ \xef\x26\x02\x22\x19\xbb\x66\x57\xce\x31\xce\x55\xee\x7c\x53\x38\ \xdb\x18\xf7\x31\x46\x1d\x36\x6c\xd6\x2a\x03\x6f\x07\x01\xef\xfd\ \xd6\x5a\xcb\x3f\x3e\x13\x8b\xe3\x1b\x49\xba\x63\x61\xc3\x6c\x62\ \xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xa3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ \x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1f\x0e\x22\x3a\x65\x45\x9e\x67\x00\x00\x02\x30\x49\x44\ \x41\x54\x78\xda\x95\x90\xdf\x4b\x53\x61\x18\xc7\xbf\xef\x7b\x7e\ \x3b\xcf\xb6\xe3\xa6\x47\xcd\x69\xe6\x1c\x8d\x5a\xa2\x95\x8e\x44\ \x45\x8c\xa8\x28\xf0\xa6\x9c\x57\x21\x14\x18\x44\x5d\xd7\x45\x3f\ \x08\xfa\xf1\x17\x68\x5e\x55\x12\x5d\x44\x69\x5d\x84\x17\xe5\x55\ \x08\x75\x53\x37\x05\xd9\xbc\x88\xa2\x1a\x3a\xdd\x71\x6e\xed\xfc\ \xf0\x9c\x3c\x23\x24\xc2\x81\xfb\xc0\xf7\xe5\x81\xf7\xe5\xf3\x3c\ \xcf\x4b\x50\x82\xc8\xa9\x89\xc1\x13\xbd\xe1\x71\x9e\xa5\x78\x36\ \xfb\x65\x74\xfe\xc9\xb9\x69\x6c\x01\x45\x09\x82\x52\x6e\xdc\xd2\ \xd3\xea\x5a\x76\x51\xad\xae\x58\x1b\x83\x4b\x39\x82\xd4\xcf\xaf\ \x4e\xde\x56\xe0\xf0\x2a\x96\x52\xdf\x51\x0a\x06\x25\xb0\x59\x29\ \x49\x02\x9e\xfe\x94\xf6\x23\x37\xff\xe6\xd5\xa8\xa9\x7d\xfb\x8c\ \x72\x39\x7f\xe7\x65\xfb\xd9\x5b\x33\x6d\x70\x29\x77\x85\x86\xc3\ \xd7\xfc\x5e\xbf\x38\xa5\x04\x2a\xa7\xc3\xa7\x1f\xf8\xca\x12\xa8\ \x87\x2e\x22\x16\x51\xc7\x62\x7b\xea\x9b\xda\xa2\xc1\x9d\xd1\x66\ \xff\xbd\xd6\xc4\xe4\xf6\x05\x5e\x0f\x7b\xa6\xbb\x2b\x92\xc8\xac\ \x68\xc8\x64\x34\xc4\x63\x55\x43\x1e\x91\x8e\x6c\xeb\x13\xab\xf6\ \x0d\x87\xfb\xfb\xf6\x3f\x0f\xd6\x28\x82\x5e\x30\xe0\xc6\xb1\x2d\ \xf0\x1c\x19\xc8\x55\x1f\x7f\xba\xfc\x71\x2a\x5d\x72\x02\x5f\x74\ \x90\x8b\xb4\x36\x3e\x0a\x35\xee\x90\x0b\x05\x0b\xba\xb1\x5e\x8c\ \x5b\xd7\x2a\xb4\xb2\xb1\x86\x7b\xdc\x3a\xf4\x90\x2f\x29\x90\x65\ \xcf\xf5\x58\xdb\xde\x4e\xc3\x02\xac\x75\x0a\xcb\x66\xfe\x86\xc2\ \x30\x1d\xb4\xd4\xd1\x0e\x11\xd9\xdb\x5b\xae\x50\xd9\x72\xa4\xaf\ \xa3\xf3\xe0\x44\xa0\xba\x96\xb2\x9c\x08\x96\x13\xc0\xb0\x02\x40\ \x59\x38\x0e\x81\x69\x39\xb0\x4c\x13\x3c\x35\xe3\x05\x25\xfe\x36\ \x93\x9c\x4d\x6e\x4e\x20\x86\x7a\x94\xa6\x5d\xcd\x93\x4a\xb0\x8e\ \x71\x3b\x3a\x54\x00\x65\x24\x30\x1b\x22\x41\x90\xc0\xf3\x15\x60\ \x59\x71\x43\xc4\x82\x63\x08\xf1\x55\x90\xfb\x4d\xc7\xee\xaa\x9b\ \x82\x70\x67\xfb\x4d\xc9\x5f\x1f\x4a\x6b\x3a\x56\xf3\x36\xf2\x3a\ \x81\x61\x32\xb0\x6d\x01\xba\xc9\x41\xcb\x01\xe9\x55\x1b\x8b\xab\ \x16\x7e\x2d\xff\x06\xa5\xeb\x6a\x6c\x60\xf7\x65\x00\x60\xdd\x43\ \x92\xe5\x99\x85\x77\x73\x4b\xb6\x69\x02\x8e\x45\x0e\xf4\x1e\xbd\ \xda\xd5\x73\x12\x5e\xaf\x17\x2e\x84\x50\x7c\x7a\x3f\x8b\x0f\x73\ \xaf\x6f\x70\xb2\x0a\x49\x69\x40\x4d\x6a\xe5\x45\xf1\x0e\xff\xd1\ \x9d\xb8\x44\x6c\x5e\xd6\x14\x39\x20\x4b\xa2\x50\x7c\x52\xd0\x0d\ \x98\x22\xcd\x8e\x5c\xb9\xe0\x1b\xae\x22\x0e\xfe\xe1\x0f\xc9\x22\ \xc0\xef\x7e\x79\xda\xf6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\xa0\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ \x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ \x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ \x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ \x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ \x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ \xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ \xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ \x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ \x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ \xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ \x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ \x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ \xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ \x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ \x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ \xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ \xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ \xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ \x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ \xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ \x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ \xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ \x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ \x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ \x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ \xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ \x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ \xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ \x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ \x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ \xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ \x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ \xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ \xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ \x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ \x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ \x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xd9\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x56\x49\x44\ \x41\x54\x38\x8d\x5d\x93\x69\x4c\x9b\x05\x1c\xc6\x7f\x6f\x5b\x7a\ \x8d\xc2\x04\x59\xc9\xca\xb6\x76\x18\x43\x09\x21\x48\x1b\x4d\x48\ \x16\x17\x98\x23\x4e\x8c\x71\x09\x7c\xf0\xc3\x92\x7d\x61\x1e\x78\ \xb0\x30\x0d\xc9\x92\x79\xc4\x04\xfd\xe0\x99\xa8\x9d\x31\x4d\x4c\ \x66\x5c\x62\xc2\xcc\x74\x23\xd3\x79\x40\xd8\x22\x3d\x24\x88\x1b\ \x30\x36\xca\xa8\xc5\x4a\x2f\x58\xe9\x0b\xe5\x6d\xff\x7e\x98\x43\ \xe7\xf3\xfd\x39\xfe\xc7\xa3\x88\x08\xff\x87\xe2\x0d\xed\x07\x1e\ \x07\x3e\x3b\x76\x5f\x6c\xf1\xf2\x37\x7f\xbd\xac\xae\x16\x16\x80\ \xf7\x83\xd2\x7d\x17\x41\xf9\xaf\x80\xe2\xf7\x57\xc9\xe1\xc3\x4b\ \xae\x8e\xd0\x47\x07\x5b\xd6\xdb\x5a\x1a\xd1\xb1\x16\xdf\x16\x8d\ \xc6\xb6\xe4\xd3\x96\xd4\x97\xaf\xe7\x77\x37\x61\x54\x76\xb2\xb0\ \x7a\x42\x4e\x14\xef\x12\x50\x7c\xbe\x67\x81\x47\x8f\xb9\x5c\xd7\ \x9e\xab\xab\x7f\xaa\xbc\xac\xd4\xbe\xb8\xb8\x48\x24\x12\x61\x72\ \x72\x12\xb3\xc9\x2c\x96\x44\x75\x77\xe0\x8d\xd4\x63\xa0\xdc\x3c\ \xc9\x91\x97\x44\x44\x74\xff\xda\x2b\x55\x47\x5d\xae\xdd\x3d\x0d\ \x0d\x4f\x57\x56\x6c\xb5\xe7\xf3\x79\x34\x4d\xa3\x50\x28\x60\x32\ \x99\xa8\x73\xd7\x29\x0f\x76\xd4\xbf\x00\x62\x50\xc0\xde\xc9\xab\ \x25\x9b\x09\x94\x90\xb2\x7d\x50\xbd\xf0\x24\x81\xc9\x0f\x6c\xaa\ \xaa\xcb\xab\x2a\xc6\x9a\x1a\x0c\xbb\x76\x91\x52\x55\x1c\x0e\x07\ \x4e\xa7\x13\x51\xe7\xf8\xf9\xf4\xd4\xc0\xc5\x57\xd6\x3f\xee\x86\ \x2c\x90\x36\x28\x21\xa5\x15\xe8\x4d\x9c\xfa\xb4\x65\x9b\xef\x2b\ \xdd\x4d\x11\x92\x40\x02\x58\x31\x99\xd8\x7f\xfc\x38\xee\x7d\xfb\ \xd0\x34\x0d\x6b\xf1\x4f\xf6\x3c\x3c\xfa\x8c\xc3\xd2\x34\x83\x6a\ \x38\x08\x7c\x6d\x00\xcc\x00\xf1\xd9\x6b\x4a\x95\xd9\x4c\xb9\x5e\ \x8f\xc9\xe3\xa1\xa9\xbd\x9d\xba\xae\x2e\xb6\xbb\x5c\x14\x8b\x45\ \xf2\xb1\xd3\x98\xec\x7b\xa8\xd0\x92\xe5\x8b\x6f\xae\x1f\x92\xa3\ \x64\x81\x4a\x44\x04\x82\xd4\x77\xed\xd4\x75\x9e\x69\x6d\xcd\xcd\ \x4d\x4d\x89\xa6\x69\x72\x07\xda\xad\x29\xb9\x7a\x76\xaf\x2c\x87\ \x0f\x89\x96\x38\x2f\xc5\xdc\x0d\x49\xfe\xda\xb3\x71\xb1\xc9\xf7\ \x44\x10\x9f\x45\x77\x12\xa5\xda\xe7\xa1\xb3\xe6\xc5\xa2\x23\x91\ \xcb\xfd\x64\xb4\xd9\xd0\xeb\xf5\x00\x14\xd3\x3f\x90\x1f\x3f\xc0\ \x56\xb9\xcc\xd2\x42\x90\x8d\xcc\x38\xca\x46\x1c\x4b\xc5\x03\x06\ \x67\xef\xf8\xdb\x1e\x8e\xd4\xea\x80\x36\xc0\x5b\xd6\xc8\x23\xba\ \x44\x22\x32\x3f\x3f\xff\x63\x2e\x97\xbb\x7d\x18\x9b\x17\xb3\xcd\ \x81\xc5\x62\x43\xcb\x5e\x41\x4d\xfe\x82\x9a\xfe\x8d\x02\xa5\x18\ \x6b\xd7\xee\x9f\x77\xbb\x9f\xd7\x01\xdf\x03\x97\x32\xd3\x0c\xea\ \x4a\x4a\x8c\x13\x13\x13\xfd\xd1\x68\x74\x03\x40\x31\x94\x51\xac\ \xee\xc1\x6c\xb5\x71\x4f\xb9\x95\xe9\xdf\x03\x64\x97\x82\x14\xd6\ \xe2\xac\x5b\xf6\x72\xb5\xad\xed\x06\x22\x82\x88\xd0\x00\xb5\x9f\ \x38\x9d\x7e\x11\x61\x68\x68\xe8\x54\x2c\x16\xfb\x67\x0b\x45\x29\ \x5c\xe9\x92\xe4\x05\xbb\x4c\x7f\xa1\xc8\xec\xd9\x26\x89\x86\x07\ \x64\x74\x74\x74\xd6\xeb\xf5\x5a\x37\x1f\x29\x0b\x7f\x4c\xa5\xd3\ \x43\x00\xa1\x50\xa8\x7f\x66\x66\x66\x25\x93\xc9\x00\x0a\xd4\xf4\ \x63\x30\xda\x28\xb1\x54\x91\x2b\xed\x22\x5d\x72\x20\x3c\x3c\x3c\ \xdc\x1e\x08\x04\x72\x9b\x09\x1e\x02\xfd\x5b\xcd\xcd\xad\x83\x03\ \x03\x55\x22\x82\xdf\xef\x7f\x6f\x64\x64\x44\x92\xc9\xa4\x2c\x2f\ \x2f\x4b\x6a\xfa\x43\x89\xcd\x8d\xc9\xd8\xd8\xd8\xb9\xde\xde\xde\ \x8a\x3b\x3c\xc5\x07\xaf\xd5\xb8\xdd\x1d\xf7\x7a\x3c\xb5\x5b\xac\ \xd6\x72\x35\x9b\x55\xe3\xc1\xe0\x6c\xe4\xfa\xf5\xa1\xe2\xbb\xef\ \x34\x3b\x9d\xae\x46\x7b\xb5\x3d\xbe\x9a\x5d\xfd\x2e\x1c\x0e\x9f\ \xe9\xeb\xeb\xbb\x24\x22\xda\x66\x03\x3e\x87\x1e\x1d\xb4\xe7\xa1\ \x52\xb7\x63\x07\x1b\x16\xcb\xad\x54\x22\x11\x19\x4e\xa5\xce\x7d\ \x0b\x0b\x7a\xbd\x7e\x4b\xa1\x50\xe0\xf6\x2c\x08\x90\x07\x56\x80\ \x25\x20\xf3\x37\x1b\x19\xb1\xb5\xb0\xfa\x5b\x79\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x9a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ \x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ \xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ \xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ \x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ \xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ \x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ \xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ \x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ \x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ \xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ \xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ \xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ \xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ \x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ \x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ \x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ \x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ \xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ \x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ \xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ \x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ \x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ \x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ \x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ \xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ \x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ \xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ \xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ \xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ \x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ \xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ \xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ \xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x36\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xb3\x49\x44\ \x41\x54\x78\xda\x95\x93\x6d\x48\x53\x61\x14\xc7\xcf\xb3\x17\x75\ \xb9\x77\x97\x65\x6e\xa9\x8d\x26\xb9\x25\xbe\xa0\x66\x04\x26\x34\ \x8c\x30\x10\x8b\x04\xeb\x8b\xa1\xb2\x7d\x30\x90\xbe\x48\x49\xb2\ \x20\x8a\xb0\x57\x28\xd4\xa0\x20\x45\x8c\x3e\x54\x04\x85\x04\xa2\ \x54\x03\xcb\x92\xc4\x08\xf6\x21\xd6\xcb\xb0\xcd\xb9\xad\x74\x7b\ \xe4\xde\xed\x3e\x9d\x3b\x86\x8c\xe1\x87\xfa\xc3\xef\x39\xf7\x9c\ \x73\xcf\xe1\x9c\xcb\x7d\xc0\x6e\xb7\xd7\xc9\xe5\xf2\xe7\x00\xd0\ \xc5\x18\x83\xff\x05\xd4\x6a\xf5\x8c\xd5\x6a\xe5\x5c\x2e\x57\xb8\ \xb1\xb1\xb1\x25\x19\xac\x9e\xd3\x40\xe5\x6c\x3d\x5a\xb9\xe8\x57\ \xc1\xdd\xf2\x1a\xb8\x6f\xda\xac\x81\x44\xa7\xd3\x5d\x77\x3a\x9d\ \xfc\xd2\xd2\x92\x62\x7a\x7a\xfa\x02\x21\xc4\x08\x84\xf4\x82\x44\ \x7a\x0e\x00\x3a\x6b\xc9\xbd\x0a\x02\x92\x4b\x0c\xb8\x9b\x36\xf2\ \x38\x0b\x32\x24\xf3\x7a\xbd\xcf\x6c\x36\xdb\x20\x4d\x24\x4e\x18\ \xcd\xe6\x5d\xa1\x95\x95\xa7\x51\x3e\x34\x0a\x32\x1d\x00\x61\x61\ \x1e\x84\xa8\x14\x80\x47\x27\xb2\x07\xc2\x0a\x07\x19\x3e\x29\x80\ \xe4\xeb\x08\xeb\x9a\x01\x14\x49\x8e\x8c\xd2\x56\x55\x7d\x56\xf2\ \xfc\x4e\x9e\xd2\x68\x91\x5e\x3f\xfb\x5e\x76\xab\x83\xb9\xeb\x43\ \x80\xda\x4f\x6e\xe8\xd1\xd0\x72\x50\x1d\x00\x48\x9c\x01\x3c\x18\ \x90\xf6\x61\xd6\x1d\x93\x40\x4a\xab\x6d\x6d\xbd\xc5\x25\x25\xb1\ \x5c\x42\xe4\x81\x40\xc0\x64\x57\x0e\x0c\x40\x4a\x6e\xd6\x1b\x42\ \x28\x03\x61\x11\x0b\xbd\xc8\x94\x58\x0c\x28\x02\x73\x20\x76\x3f\ \x8d\xcc\xe7\x35\xe5\x7d\xe9\xe9\xe9\x99\x1d\x1b\x1b\x33\x70\x1c\ \xe7\xd1\x68\x34\xd7\x16\x16\x16\x1e\x42\x86\x3e\x90\x91\x62\x34\ \xcd\xc8\xa4\x0c\x8f\x43\x48\x03\x52\x13\x0c\x06\xdb\x0c\x06\xc3\ \x31\x8b\xc5\xf2\x60\x79\x79\xb9\x0c\x63\xfd\x85\x85\x85\x8b\x3e\ \x9f\xef\x63\x46\x8f\x53\x48\x1d\x52\x20\xae\xf0\x16\xf9\x84\x4c\ \x20\x80\x4d\xde\x79\x3c\x9e\xcb\x8c\xb1\xc5\x68\x34\x9a\x8f\x53\ \x8c\xab\x54\xaa\xad\x19\x0d\xa6\x10\x2f\x32\x99\xfc\x88\x23\x40\ \x4a\xd1\xf9\xd5\x0d\xec\x37\xa4\x84\x93\x5c\xd5\x6a\xb5\x87\xe3\ \xf1\xb8\x46\x10\x84\x1f\xa8\x83\xf8\x6e\x1c\x44\x11\x22\x4e\x6e\ \x42\xbc\x12\x2c\x6e\xc2\x87\x41\xe4\x0a\x92\xae\xbe\x48\x24\xf2\ \x9d\x10\x22\x50\x4a\xf5\x65\x96\x1d\x13\x69\xb9\x2e\xe4\x36\xe2\ \x10\x57\x88\xa7\x82\x1c\xa4\x09\x57\x11\xd0\xb4\x53\x1a\xa3\xcd\ \xf6\xca\x62\x97\xb3\xa0\xf5\x68\xd3\xbe\xdd\xa9\x74\xf6\x86\x15\ \x57\x18\x66\x50\x84\xe4\x6e\xf6\xab\x1e\x6f\x3d\x62\x7d\x34\x7a\ \x27\xe8\x7e\xd2\xcd\xfa\x1c\xb5\xaf\x93\x71\x00\x19\x52\x8e\xe4\ \xfc\xd3\x85\x41\x49\x2f\x9e\x77\xbc\x3a\xdb\x59\x2d\x94\x9a\xb7\ \x57\xa4\xe7\xc8\xb8\xbf\x63\x6f\xd8\xbf\x4d\x8a\xc0\x06\x81\x7c\ \x50\xaf\xad\x83\x89\xf7\x83\x91\xf3\x83\x09\x31\xf2\x01\x18\xf2\ \xbd\xe9\xf7\xc6\x02\xb2\x17\xf3\xdf\x5a\x36\xee\xc2\xcb\x21\x77\ \xc3\x9f\x50\xb6\x39\xb6\xba\x45\x4a\x57\x15\x32\xba\xa6\x90\xae\ \x23\x34\x96\x2d\xcb\xe2\x78\xa9\x32\x11\x23\x4a\x81\x0a\x6a\xb6\ \x1e\x57\x0b\x89\x88\x29\x91\xf3\x93\x10\xa2\xc5\x5a\x8a\xf0\x7f\ \x01\x53\xb0\x92\xce\xab\xba\x16\x48\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x02\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdb\x05\x08\ \x12\x0c\x27\xaf\x64\x6c\xaa\x00\x00\x02\x7a\x49\x44\x41\x54\x38\ \xcb\x75\x93\x4b\x48\x94\x51\x14\xc7\x7f\xe7\x7e\xd7\xc9\xc7\x44\ \x0f\xe8\x81\x15\x11\xd4\x2a\x2b\xe8\xe1\xae\xd2\x4a\x43\x82\x28\ \x1a\x83\x08\x6a\xd5\xaa\x5d\x41\x24\x04\x6d\x02\x0b\x5a\x44\x11\ \xb4\xab\x55\xf4\x58\x48\x60\x14\x49\x2e\x4c\xa4\xa0\x24\x7a\x40\ \x0a\x16\xbd\x4c\x1c\x2b\xc7\x79\x98\xf3\x7d\xf7\x9e\x16\xdf\x8c\ \x8c\x50\x77\x73\xe1\xc0\xf9\xfd\x7f\xe7\x70\x2f\xfc\xe7\xa4\xce\ \x77\xcf\x2d\x5c\xe2\x50\x53\x77\xf3\x87\xa3\xcf\x8e\xba\xa6\xee\ \xe6\x21\x2e\x71\x08\x40\x52\xe7\x1f\xbe\x70\x62\x1a\x51\x10\x00\ \x15\x6c\x22\x78\x7f\xef\x5c\x4b\xc3\x6c\xf3\x55\x0e\xb4\x6c\x6d\ \xe9\xda\xb5\x64\x8b\x9e\x5d\xdb\x29\x17\x47\x3a\xb4\x77\xfc\x95\ \xf4\x0c\xf4\xa4\xa4\xed\xd4\x6d\x6d\xdd\xdb\x86\xba\x10\x63\x84\ \x20\xb0\x3c\xee\xed\xd3\x44\x22\x21\x88\x61\x9e\x5b\xc0\xdd\x55\ \xad\x34\xac\x4c\xea\xc2\xdc\xa8\xf4\xb5\x2b\x3b\xee\x0b\x93\xc9\ \x7a\x7d\x3b\x36\x3a\x6c\x73\x99\x09\xa6\x0b\x53\xbc\x1e\x99\xc0\ \x60\x58\xb3\xac\x86\x9d\x8d\x9b\xc4\x23\x28\x50\xab\x4b\xb8\x33\ \x3c\xc5\x9b\x13\x19\x29\x0b\xf5\xb5\x2b\x80\xc8\x65\x59\x67\xa7\ \x7e\x8d\x91\xc9\xe6\x89\xa6\xf3\x04\x06\x86\x3e\x67\x71\xa1\x23\ \x9d\xfe\x46\x2e\x33\x49\x55\x34\x1f\xda\x40\x6e\x08\x75\xbf\x21\ \xd7\xa1\x24\x3b\x85\xfc\x22\x60\x0d\xc3\x36\x33\x31\xca\x9b\xc1\ \x17\x7c\xfc\x9a\x26\x30\x02\x08\x7f\xa6\xb3\xec\xdb\xbd\x99\x83\ \xfb\x0f\x22\xde\xf0\x34\x6b\xb8\xf0\xe5\x18\xf9\x92\x41\x7e\x11\ \xb0\x02\x52\xe6\x54\x5a\x52\x1d\x37\xf5\xf4\xc9\x23\x64\x0b\x33\ \x18\x13\x5b\xaa\x0a\x33\x33\x45\x86\x47\x7e\x13\x46\x4a\x35\xb5\ \x0c\x26\x1f\x70\xdb\x9f\x21\xfc\x91\x23\x51\x9f\xe4\x78\xcd\x35\ \xd2\xb7\x3e\x61\x35\xa8\xa5\xff\xe5\x0f\xa2\x62\x31\x6e\x2e\xa5\ \x18\x11\x34\x80\x2a\x81\x22\x05\x36\xe4\xdb\xb8\xa2\x87\xb1\x0b\ \x12\x44\xf9\x19\xbc\x73\xf4\x98\xeb\x58\x55\xc1\x08\x50\x4a\x0f\ \x00\x57\x06\x79\x28\x02\x16\x25\x24\x24\xe4\x57\x09\xaf\x54\xf9\ \x3a\x50\xb0\xaa\x10\x79\xc5\x79\x45\x80\x08\x30\x80\x53\x10\x89\ \xdf\x46\xb1\x04\x34\x65\xb0\x82\xf5\x4a\xa4\x8a\x55\x55\xbc\x53\ \x22\x17\x03\xca\x63\x28\x71\xb3\xaf\x78\x8c\x5a\x31\x62\xe4\x3c\ \xea\x15\x2b\x22\x18\x13\x10\x18\x3f\x3b\x42\x39\xcd\x97\x6e\xa9\ \x80\xc5\x75\xc5\x04\x01\x06\xc1\x8e\xfd\xcc\xf0\xe8\xf9\x3b\xd4\ \x47\x73\x92\x4c\x85\x85\xfe\xe3\xaf\xd8\x44\x0d\xdf\xbe\x8f\x63\ \x57\x2f\x5f\xcc\xa6\x8d\xeb\x71\x51\x38\x9b\x54\xa9\x5a\x59\xf3\ \x15\xe0\xc4\xbc\x1a\x06\xc6\x9f\x63\xa7\x0a\xc5\x27\xc5\xd0\xb7\ \x46\xa1\x22\x02\x5e\xe3\x45\x56\x11\x2f\xb1\xac\x14\x96\x40\x56\ \x00\x55\x1c\x8e\x42\xa8\x5d\xc2\xd2\x6d\x7b\x88\xc2\xed\x80\xa0\ \x6a\x10\x04\x55\x99\x1d\x5f\x15\x44\x4a\x02\x12\xcb\x89\x78\x14\ \xa5\xba\xb6\xff\x2f\x62\x10\x26\x9d\x60\xcb\xdf\xa1\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x1a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdb\x04\x1e\ \x15\x05\x2e\x4a\x27\x58\x31\x00\x00\x05\x9a\x49\x44\x41\x54\x58\ \xc3\xed\x97\x3d\xa8\x6d\x57\x11\xc7\x7f\xb3\xd6\xda\xfb\xdc\xeb\ \x7b\xde\x24\x48\x22\x1a\x7d\x88\x36\x0a\x06\x21\x29\x83\x4d\x0a\ \x31\x58\xa4\x30\xa4\xb1\x10\x3b\x1b\x4b\x8b\x80\x8d\x8d\x76\xd6\ \x16\x06\xb4\x13\x2c\x6d\x44\x50\xb1\x08\x04\x12\x25\x8f\x18\x62\ \x11\xcd\xcb\x33\x79\x1f\xbe\xfb\xee\xbb\x79\xf7\x9e\x8f\xfd\xb1\ \x66\x2c\x66\xd6\xdd\xe7\x11\x04\x0b\x25\x8d\x07\x0e\x7b\x9f\x75\ \x67\xad\x99\xf9\xcf\x7f\xfe\x6b\x2e\x7c\xd4\x9f\x17\x5e\xfc\xdd\ \x7f\x6c\xfb\xfc\x0f\x7e\xff\x5f\xf7\x2f\x00\xcf\xbf\xf8\x87\xd7\ \x86\x71\xf7\x94\x98\xa0\xe2\x8b\x19\x98\x01\xc1\x48\x29\xd3\x77\ \xe5\x2f\xbf\xfa\xd1\x33\x4f\xfc\x4f\x02\xf8\xda\x77\x7f\x69\xdf\ \xfe\xd6\x37\xb8\x75\x67\x64\xae\xa0\x06\x25\xf9\x5f\x0f\x8a\x60\ \xba\xe1\xb7\x7f\x7c\xdd\x72\x29\x82\x08\x02\x18\x60\xe6\x36\x62\ \x60\x02\x28\x68\x1c\x2a\xe2\xe7\x08\x90\x80\x1a\x4f\xff\x18\x66\ \xc3\xb3\xbf\xfe\xc9\x73\xbf\x29\x00\xc3\x70\x9f\x57\xdf\x3c\xe5\ \x9f\xa7\x5b\x4a\x1c\x2e\xe2\x0e\x0c\xf8\xec\x27\x7b\xbe\xfc\xc4\ \x57\xa4\x64\xc1\x30\xb2\xb8\xc3\x92\x05\x80\x94\x84\x2c\x20\x22\ \x74\xc9\xf7\x20\x42\x4e\x90\x04\x04\x7f\x37\x20\x27\xa8\x92\xec\ \xe5\x57\xde\xf8\x1e\xe0\x01\xe8\xbc\xe5\xde\xe9\x39\xd9\x26\x66\ \x15\x77\x1e\x99\x18\x70\xfd\xe6\x8e\x69\xae\xd4\x71\xc3\x6e\xd8\ \xa1\xb5\xe2\x38\x84\xb3\x28\x15\x91\x29\x0a\x29\x81\xa9\x41\xf2\ \xcc\x67\x83\x2c\x50\xab\xf0\xa9\xc7\x1e\x92\x5b\x37\xaf\xf5\x00\ \x05\xc0\x52\x66\x33\x6c\x40\xf5\x02\xd6\xe4\xe7\xf8\x66\x55\xe6\ \xdd\x39\xc7\x77\xde\xe3\xf8\xd6\x0d\xc6\x71\x70\x38\x5b\xa0\x06\ \xd6\x42\x12\x2e\x02\x13\x96\xf7\x8b\x48\x13\xdc\xbc\xf6\x71\xee\ \xdf\x7b\x6f\xba\x08\x60\x7b\x7e\xc6\xbd\xe3\xf7\x31\x53\x72\x38\ \x6e\x28\x60\x80\x56\xce\xcf\x3e\xe0\xc6\xbb\x6f\xf3\xf3\x97\x7e\ \x48\xea\x0a\x27\x67\x20\xe9\xdf\x30\xcb\x3e\xcc\xb4\x07\x02\x52\ \xc0\x78\xf6\xee\xc9\x8f\x5f\x2b\x00\xff\x78\xe7\x2d\xee\x1c\xaf\ \x31\x53\xa4\x65\xd0\x08\x06\xa8\x29\x75\x1c\x78\xec\xd1\x47\xf8\ \x60\x53\xf8\xf3\x55\x63\x00\xfa\x46\xc6\xe6\x27\x08\x99\x62\xad\ \xe2\xb0\xcf\xe6\x99\x2a\x0b\x49\x53\x16\xce\x8e\xaf\x3f\x55\xbe\ \xff\xb3\x3f\xfd\xed\xab\x4f\x3f\x69\xd3\xc4\x42\xef\x7d\xec\xf6\ \xd6\xd6\x6b\xb8\xfa\x57\x85\x64\x94\x60\xbe\x98\x13\x2d\x1b\x4c\ \x41\x4e\x0c\xaa\x2c\x9d\xd2\x08\x88\x41\xd7\xce\x96\xcc\xe9\xc9\ \x6d\xca\xdb\xd7\xee\x7f\xfe\xd2\x0a\xd6\xb3\xd2\x45\xc6\x3b\x83\ \x55\x23\x54\x64\x61\x06\x2a\x70\x98\x8d\xd9\x84\x3e\x81\x6a\xb4\ \x97\xc1\x18\x4f\x42\x3f\x52\x20\x31\x0b\x88\x7a\x5b\x57\xf3\xaf\ \x02\x1d\x30\x6e\xd7\x94\x79\xda\x52\x13\xf4\xd9\xfb\x76\x06\xfa\ \x88\xb2\xc6\x7b\xb5\xa5\x8e\x93\x09\x09\xd8\xd5\x05\x28\x88\x00\ \x80\x12\x90\x27\x1c\x19\x0b\xcc\xc7\xba\x00\xaa\xc0\x60\x5e\xda\ \x92\x80\x5a\x61\xae\xae\x7e\x29\x04\x44\x81\x95\xc0\xa4\xd0\x27\ \x18\x14\x0e\xc5\x9f\xb6\x87\x4c\x8d\xa0\x4b\x70\x20\x05\xc9\x7a\ \x81\xad\xfa\x99\x35\x02\x9b\x82\x0b\x86\x97\x22\x1b\x94\x6a\x0b\ \x5c\xd5\xa0\x33\x18\xcd\x0f\xab\xea\xb5\x5c\xcf\x70\x00\x6c\x65\ \xc9\x0c\xf5\x92\x68\x70\x00\x83\x09\x18\xe2\xf0\x4d\x38\x6b\x28\ \xcc\xb1\xae\xc1\x8b\x39\x92\x49\x62\x30\xab\x1b\xa9\xc2\x4e\xdd\ \xb0\x6a\x1c\xee\x9c\x63\x17\x81\xaa\xfa\xdf\x30\x18\x23\x43\x55\ \x0f\xfa\x80\x65\x1d\xf5\x73\x35\x6c\xab\xb9\xe3\xaa\xfe\x2c\x16\ \x92\xdf\x7a\x7e\xa7\xd6\x74\x82\x5d\x75\xd2\x98\x3e\xd8\x3a\x16\ \xc8\x0c\xba\x68\xfc\x2e\xea\x71\x39\xc1\x46\x97\x0b\x46\x81\x83\ \x58\x6b\x5c\x19\xcd\xcb\x71\x98\x22\x51\x33\x0a\x06\xd3\xec\x3b\ \x2c\x36\xf6\x51\x8e\x29\xd8\xdb\xca\xb1\xdf\xa5\x29\xd8\x7e\x88\ \x97\xe2\x6c\x0e\x1d\x08\xc8\x33\x8e\xc4\x7e\x57\x2b\x70\x20\xb0\ \x9b\x21\x97\x40\x55\x82\x91\xad\x47\x25\xe0\x9e\xc3\xb9\x9a\x93\ \x34\xc5\xcd\x36\x86\xad\x0a\xf4\x61\x3b\x05\x52\xd9\x9c\xcc\x12\ \xb6\x35\x6c\x4d\x7c\xbf\x85\xed\x8c\xb7\x66\x6a\x25\xb8\x94\x60\ \x3b\x39\x4b\xa7\x80\xb4\x34\xb2\xd8\xc2\x70\x31\x38\xcc\x8e\x58\ \x0d\xdb\x96\xe1\x4a\x3c\x91\xdc\xa4\x37\x04\x48\x15\x74\xf6\x00\ \xa7\x38\xb7\x8f\x8e\x50\x85\x64\x06\x75\x8e\x0b\x45\x9d\x48\x16\ \x41\xec\x14\x56\xc9\x37\xd5\x20\xd7\x34\x7b\xe4\x35\x6c\x5b\x07\ \x6d\xd4\xed\xba\xa8\x93\x2a\x8c\xcd\xd6\xbc\xac\x5d\x70\x60\xab\ \x0e\x7d\x0f\x94\x24\x89\x22\x60\x25\x5f\xd4\xec\xa1\xe4\xd1\xae\ \x22\xbb\x51\x96\x16\xc2\xa0\xcb\x4b\x7d\x2f\x25\x6f\xbd\x23\x60\ \x4b\x74\x4e\x5a\xa4\x7c\x15\x02\x56\xcd\x33\xcf\x02\x97\x81\x41\ \x60\x22\x21\x57\x5e\xf8\xa9\xe5\xf2\x09\xa6\xb8\x88\x9a\x1e\xb4\ \xcb\xe3\xe2\x82\x0b\x58\x1b\x7c\xd2\x32\x8d\xf1\xed\xa2\x53\x62\ \x5d\x42\x03\xaa\x2d\x17\x95\xed\xdd\x92\x39\x65\xb6\xf7\xae\x53\ \x1e\x7f\xe4\x88\xd5\xd1\x97\x28\x36\x2f\x63\xd6\xfe\xf5\x1d\x07\ \xda\x5e\x20\xcd\x20\x45\xab\xee\xdf\xbe\x79\x6f\x14\xab\xb1\x37\ \x45\x77\xec\x8f\x6c\x2a\x99\xd3\xdd\x6d\x8a\xaa\x32\x0d\x03\xa3\ \xd5\xc5\x09\x0f\x0e\x24\xda\xe4\xb3\x21\xc1\xa2\x80\x31\xf4\x7c\ \xc8\xb6\x44\x7b\xb6\x69\xa8\x49\x71\x17\xa8\xe4\x94\x18\xe7\x4a\ \xf9\xe2\x95\xcf\xf0\x85\x2b\x4f\x82\x98\xf7\x6f\xe8\xbf\x8a\x6b\ \xff\x5a\x21\x37\x41\xcf\x20\xd5\x33\x6f\x53\xb3\x6a\x9b\xfb\xfc\ \x3b\xed\x4d\xa0\xa2\xb0\xca\x4e\xd8\x91\xa5\xcd\x27\x83\x55\x16\ \xfe\x7e\x79\x4d\xb9\x79\x77\xcd\xd1\x25\x98\x6c\x66\x32\xc8\x0a\ \xa5\x38\xc9\xba\xbd\x8c\x14\xbf\x94\x74\xef\x9e\x50\x85\x2e\x39\ \x49\x53\x75\x67\x63\x68\x44\x8a\xc9\xda\x22\xc8\xa6\xb2\x43\xe8\ \x47\x97\x0b\x37\x6e\x9f\x53\xcc\x60\xb0\x13\x36\xb5\xba\xf0\xc4\ \xa6\x55\xf2\x20\xe6\xa8\x49\x1f\xbf\x53\x82\xf3\x1a\xec\x4e\xfe\ \x2d\x0a\xb9\x77\x2d\x69\xce\x15\xa8\x09\x76\x53\x8c\xe8\x91\x40\ \xae\xa0\x1d\xec\xa6\x84\xa1\x94\x92\xba\xf7\xc7\xfb\x77\x1f\xcf\ \xa2\x58\x0e\x19\xed\x84\xd3\x31\x7a\x35\xb9\xba\xad\x81\xbe\x73\ \x1d\x38\xc0\xe7\xc1\x41\xe1\xa0\x87\xcd\xe8\x0e\x4a\x81\x3a\x04\ \xfc\x02\xab\xe2\xea\xd3\x65\x17\xa9\x2a\xce\xb2\x71\x0d\x86\x72\ \xf4\xf0\xa7\xaf\x3a\xa7\x1f\xfe\xdc\x77\x48\xf9\x63\xbe\xd5\x04\ \xc3\x87\x2b\xd3\xb4\xc7\xfd\x84\x59\x0a\x24\xc5\xdf\x2d\x61\x26\ \x48\x52\x04\x05\x31\x84\xea\xd5\xc7\x30\x0c\x11\xbf\x47\x93\xe8\ \xc5\x6f\x41\x31\xdd\x70\xf2\xce\x2f\xe0\xeb\x1f\xe1\x3f\xa6\xdf\ \xe4\xff\x1f\xfe\x05\xfe\x09\x43\x47\xb1\x8e\x8c\x2b\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x13\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ \x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ \xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ \x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ \xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ \xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ \xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ \xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ \xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ \xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ \xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ \xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ \xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ \xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ \x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ \x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ \xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ \x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ \x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ \xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ \xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ \x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ \xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ \x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ \x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\xcc\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x49\x49\x44\ \x41\x54\x78\xda\x8d\x53\x3d\x48\x1b\x61\x18\x7e\xde\xef\x2e\x77\ \x26\x56\x49\x85\x08\x05\x5b\x28\x2e\x8d\x50\x52\x9b\x41\xec\x1e\ \x68\x71\x71\x76\xd0\xa5\x3a\x74\x70\xaa\x93\xb4\x42\xbb\xb4\x50\ \x70\x16\xe9\xd0\xc5\xd5\x49\x28\x74\xee\x68\x35\x04\x74\x0a\x05\ \x31\x21\x62\xab\x62\xa2\x97\xfb\xfb\xde\xbe\xdf\xa5\x1c\x0a\xa5\ \xe4\x81\xe7\xb8\xbb\xef\x7b\x9f\xfb\xde\x7b\x9e\x97\x98\x19\x37\ \xf1\x45\xa9\xa2\x06\x16\x14\xf0\x14\x40\x09\x3d\x54\x35\xf0\x43\ \xc9\xf2\x82\xd6\x87\xb8\x81\x54\x60\x97\x48\x55\x89\x5e\x8f\x8c\ \x8f\xbf\x2f\xce\xcd\x39\xf9\x89\x09\xe4\xc6\xc6\x60\xe0\x1d\x1f\ \xe3\xfc\xe0\x00\x87\x5b\x5b\xc1\x59\xbd\xfe\xa6\xc4\xfc\xa9\xcc\ \xac\x53\x01\x53\xbc\x4f\xf4\x75\x72\x71\xb1\xf2\x70\x76\x16\x96\ \x52\x50\x44\x20\x21\x84\xcc\x9c\x30\xd2\x1a\x3f\xb7\xb7\xb1\xb7\ \xb9\xf9\xed\x09\xf3\x73\x23\x62\x43\x20\xc5\x2b\x8f\x66\x66\x2a\ \xf7\xa7\xa6\x80\x93\x13\xb0\x6d\x43\x8b\x08\x59\x56\x7a\x54\x8e\ \x63\x90\x08\x3c\x98\x9e\x86\xd7\x6c\x56\xf6\x77\x76\x56\xca\xc0\ \x47\xda\x20\x2a\xe6\x80\xbd\x67\xcb\xcb\xee\xd0\xe8\x28\x2c\xc7\ \x81\x12\x92\x88\x28\x21\x88\x00\x66\xe8\x28\x02\x0b\xe3\x20\x40\ \xbb\xd5\xc2\xf7\xf5\x75\xff\x8a\x79\xd2\x76\x81\xf9\x3c\xe0\xaa\ \xd3\xd3\xde\x57\xb3\x59\xd0\xc0\x00\x94\x2b\x2b\x99\x4c\x2a\x40\ \x61\x08\xed\xfb\xe0\x6e\x17\xf6\xc5\x05\xf2\x96\xe5\x46\x51\x34\ \x6f\x5a\x28\x0f\x02\x88\x6a\x35\xfc\x5e\x5d\x45\x3f\xc8\x2d\x2d\ \x61\x48\xda\xfb\x15\xc7\x65\x23\x50\x1a\x00\x10\x1f\x1d\xa1\x50\ \x28\xa0\x1f\xb4\x1b\x0d\x64\xcd\xe9\x82\xa0\x64\xa7\x6f\x95\xea\ \x5b\xa0\x23\x7b\x21\x34\x30\xd7\xaa\x0f\x40\x6b\x8d\x7e\x61\xf6\ \x76\xa3\x08\xa6\xd6\x36\x19\xea\x10\x55\x46\xe4\x45\x5d\x82\xe3\ \xe4\xf3\xc8\x18\x0e\x0f\x43\xe5\x72\xc6\x89\xc4\x01\x7d\x7d\x8d\ \xf0\xf2\x12\xa1\xfc\xc0\xc0\x38\x21\xb6\x82\x79\xd7\x7a\x41\xd4\ \x94\xdb\x97\x83\xcc\xb6\x6b\x02\x64\x59\xbd\x00\x99\x13\x19\xdb\ \x7c\x3f\x29\x8e\xae\xae\x12\x06\x9d\x0e\xce\xdb\x6d\x34\x3d\xcf\ \xf7\x98\x5f\xd9\x4b\x92\xed\xcf\x4a\xad\xb5\xe2\xf8\x83\xe3\x79\ \x20\xa5\x7a\xbe\x07\x81\xb1\x32\x79\x66\xad\x13\x0b\x43\x59\xbf\ \x94\xe2\x86\x08\x76\xb5\x5e\x33\xb5\xb7\xa2\x7c\x57\xa9\xca\x3d\ \xf9\xbb\x43\x92\x03\x47\x68\xc9\xbd\x08\x24\x3d\x07\x92\x83\xb6\ \x08\x34\x84\xe7\x61\x98\x46\xf9\xd6\x30\xd5\x64\x98\x2c\xa2\x77\ \x23\x44\xee\x1d\xe9\x3d\xfb\x37\x89\x5d\xe9\xb7\x23\x22\x67\x51\ \xe4\xcb\x3c\xbc\x7d\x7c\x63\x98\xfe\x3b\xce\x44\x54\x82\x80\xcd\ \x38\x33\xff\x73\x9c\xff\x00\x0d\xa5\x3c\x12\x46\x2e\x37\x1f\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xf5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x72\x49\x44\ \x41\x54\x78\xda\x75\x93\x4d\x48\x54\x51\x14\xc7\x7f\xe7\xf9\xc6\ \xe7\x28\x8e\x9f\x84\xcc\xb8\x52\x29\x52\x48\x72\x32\x68\x51\xbb\ \x81\xa2\x4d\xd1\xae\x85\xd5\xa2\x55\xdb\x5c\x96\x58\xab\xa0\x6d\ \xab\x16\x51\x8b\x56\x41\x21\x14\x81\xab\xf6\x7e\x60\x0b\xfb\xc0\ \x8c\x42\xa7\x51\x19\x75\xd4\x99\x79\xef\xcd\x7b\xf7\xe4\xe3\x89\ \x8d\x84\x7f\xb8\xdc\xc5\x39\xe7\xc7\xbd\xe7\x9c\xbf\xa8\x2a\xf5\ \xb2\xee\x58\xa7\x1b\xe1\x96\x5a\x8c\x08\x0c\x03\x28\x2c\x88\x61\ \xce\x87\x97\xe6\x85\xf9\x42\x9d\x0e\x01\x72\x46\xac\xc4\x39\xb9\ \x7f\x32\xdd\xff\x78\xec\xd2\xcd\xc6\xc1\xcc\x20\xe9\xf6\x5e\x00\ \xf2\xdb\x2b\x2c\xe6\x17\x79\xf5\xe9\xb5\xff\x3d\xff\xe3\x41\x6d\ \x46\x9f\xea\x67\x35\x87\x80\xa8\xd8\x1e\x91\x8f\xf7\xae\xdc\xcd\ \x5d\x1f\xbd\x86\x6d\x0b\x62\x01\x42\x2c\x05\x55\x08\x6a\xca\xdb\ \x99\x77\x3c\xfb\xf0\x7c\x3a\x98\xd3\xcb\x11\xc4\x06\x68\xc8\xca\ \xf8\x8d\x0b\x57\x73\x17\x87\xce\xb3\x55\xcb\x83\xa1\x0e\x50\x07\ \x31\x10\xe5\x14\x4a\xf9\xdc\x1b\x79\x3f\x0e\x3c\xb1\xa3\x3f\x37\ \x35\x32\x39\xd4\xd7\x47\xb1\xb6\x8a\x00\x62\x22\x6a\x0c\x89\x15\ \x17\x13\x82\x31\x30\x34\xd0\xc7\xd4\x0c\x93\xfb\xb5\x53\xd1\x6b\ \xc7\x52\xed\x38\xbb\xba\x46\x83\xef\x82\x02\x36\x54\x37\xa3\x23\ \x20\xd0\xdc\xad\x24\xdb\x62\x80\x06\xb0\x2b\x25\x52\x5d\x38\x41\ \x81\x31\x5b\x84\x6c\x53\xab\xf2\xb5\x34\x4b\x7f\xf2\x14\x08\x94\ \x8b\xb0\xf9\x53\xc0\x22\x56\x01\xba\x06\x94\x96\x8e\x18\xb0\xbc\ \xf7\x8d\x64\x4a\x91\x75\xc9\xda\xc0\xb0\xe3\xc0\x6a\x65\x89\x60\ \xa7\x4a\x77\xfb\x09\x56\x97\x05\x6f\x0f\xb0\x40\x00\x05\xb6\x96\ \x20\x93\x55\x36\xcb\xeb\x14\xdc\x55\x9c\x16\x40\x18\xb6\x01\x90\ \xf8\x6c\xec\x07\xb6\xcb\x6b\x14\x36\x9b\x09\xca\x09\x6c\xbb\x01\ \x04\x42\x13\x62\x07\x35\xdc\x6a\x85\xc0\x0f\x10\xf9\xd7\x60\x1b\ \x58\xf0\x5c\x72\x2d\x06\x00\xc2\x30\x20\xd1\xbb\xc3\xc6\xbc\x1c\ \x79\x41\x66\x48\x09\x43\x40\xe3\x46\x7a\x55\x40\x59\xb0\x54\x99\ \x75\xf7\x84\xd0\x07\x3d\x68\x52\x5b\x0f\xa4\xb3\x4a\xb2\x1d\x92\ \x1d\x90\x19\x55\xda\xd2\xa0\x7e\x1c\x0f\x5d\xa8\x96\x04\x35\xcc\ \x8a\xdc\x96\x68\x8c\xf3\x99\x01\x75\x52\x3d\x60\xb5\x80\x34\x81\ \x38\x20\x09\xc0\x02\x0c\x68\x0d\xd4\x03\x53\x86\x9d\x3f\xb0\xb2\ \x28\x9e\xeb\x71\xd6\x8a\x76\xdb\xf7\x99\x28\xe6\x85\xea\x36\x84\ \x15\x30\x2e\x68\x25\x4e\x36\x7b\x07\x77\x05\xc2\x72\x3c\xde\xe2\ \x2f\xc1\xf7\x98\x88\x6a\x8f\xac\x72\x6b\x27\xb9\xae\xb4\xd2\xdc\ \x09\x0d\x4d\x60\xd9\x80\xc4\x7f\x36\x1e\x54\xb6\xa0\xf8\x5b\xd8\ \x2d\x32\x5d\x3b\x58\xe5\xff\xcc\x64\x27\x78\x94\xea\xc4\x89\xe6\ \xec\x34\xc7\x00\xaf\x02\xee\xae\x50\x2a\xe2\x05\x3e\x0f\xeb\xcd\ \x74\xac\x9d\xc5\x62\x44\xad\xd8\xce\x62\x58\xd0\x63\xec\xfc\x17\ \x16\xf8\x44\x5c\xdf\x90\xee\x0a\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x01\xc4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x01\x8b\x49\x44\x41\x54\x78\xda\xd5\x91\x3f\x48\x02\x51\ \x1c\xc7\xef\x8e\x68\xd1\xdc\x6a\x29\x1b\xac\xa4\x3f\x14\x11\x34\ \x37\x38\x1a\xad\x09\x52\xcd\x41\x53\xad\x4e\x96\xa3\xd8\x75\x95\ \x1c\x48\x72\x10\x04\x66\x99\x84\x93\x54\x97\xe0\x51\x10\x88\x67\ \xda\xe0\x61\xb8\x28\x11\xf6\x6f\xa8\x26\xbf\xfd\x2e\x08\xc2\xea\ \xfa\xb3\xf5\x83\x0f\xef\xf1\x7b\xdf\xf7\x79\xef\xf1\x18\x00\x1f\ \xa0\xb2\x38\x9d\xce\xd9\x50\x28\x14\x97\x24\x29\xe1\x70\x38\xe6\ \xf4\xde\x67\xd9\xcf\x36\xb7\xc7\xe3\xf1\x4c\xb9\x5c\x86\xa6\x69\ \x28\x16\x8b\xa8\x54\x2a\x90\x65\x59\xa3\xb5\x0e\x43\x01\x15\x17\ \x0c\x06\xf7\x4a\xa5\x12\xe8\xf4\xaa\xdb\xed\x5e\x70\xb9\x5c\xf3\ \x7e\xbf\xff\x52\x55\x55\xc4\x62\xb1\xa4\x9e\x31\x12\x58\xb3\xd9\ \xec\x83\xa2\x28\x75\xb3\xd9\x3c\xf8\xd6\x37\x99\x4c\xf6\x40\x20\ \xf0\x54\x28\x14\x1e\xf5\x8c\x91\x60\x84\xae\x5d\x0f\x87\xc3\x55\ \x9a\xb3\xef\xfa\xac\xc7\xe3\x39\xcd\x64\x32\x75\x3d\x63\x24\x18\ \x25\x01\x78\x9e\xd7\x1a\xdf\xea\xf3\xf9\xe4\x74\x3a\x0d\x3d\xf3\ \xad\x40\x14\xc5\x62\xa3\x40\x10\x04\x39\x95\x4a\x19\x0b\x12\xc2\ \x34\xae\x94\x31\x9c\x47\x86\x71\xb8\xda\x8f\x6d\x6f\x17\xa2\x5e\ \x1b\x92\xcb\x7d\x50\xb7\x87\x70\x9d\x9f\xc1\xee\xca\x04\xbe\x14\ \xec\xaf\x4c\xe1\x39\x6f\xc7\xcd\x01\x87\x9c\xc4\xe2\x74\x9d\x45\ \x6e\x83\x85\xb6\xc5\xa0\x76\xcc\xa1\x7e\x3b\x89\x28\x3f\xfe\x13\ \x01\x83\xc2\x26\x07\x45\xe0\x5e\x05\x97\x11\x06\xf7\x69\x8a\xdc\ \xfd\x4a\xc0\xe0\x64\x8d\x21\x01\xf3\x77\xc1\x99\x48\xa3\xf4\xaf\ \x04\x8d\xdf\xb8\xb3\xd8\x85\xd8\x92\x0d\x47\x42\x2f\x72\xd1\x21\ \xd4\x2e\x0c\xbe\x91\xaa\x99\xb0\x10\x6d\x44\x27\xd1\x43\xf4\x13\ \x03\x44\x1f\xd1\x4d\x58\x89\x56\xa2\x85\x68\xd2\xf7\xbd\x00\x69\ \x97\x84\x60\xd6\x20\x0b\x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x01\xb8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x01\x7f\x49\x44\x41\x54\x78\xda\xd5\x93\xbf\x4b\x02\x61\ \x18\xc7\xcf\x43\xdb\x72\x2b\x28\xb1\x40\x2d\xd2\x42\x82\x68\xd1\ \xa1\x7f\xa0\xa2\xad\xa9\xda\xfd\x03\x74\xb7\x06\xa1\x25\x4f\x0b\ \x72\x08\x84\x8e\x20\xad\x86\xb8\x29\x2f\x73\x48\x0b\x8e\xc3\x3a\ \xb5\xa1\x93\x2c\x5a\xa2\xec\x87\x48\xb4\xe4\xb7\x47\xc1\x25\xed\ \xfa\xb1\xf5\xc0\x87\xf7\xe5\x79\xbf\x7c\x78\x78\x5f\x5e\x06\x40\ \x0b\x54\x3d\x5e\xaf\x77\x59\x14\xc5\xb3\x54\x2a\x95\xf3\xf9\x7c\ \x41\xea\xf5\xb6\xcb\xb6\x34\x4c\x26\x93\x23\x99\x4c\xde\x94\x4a\ \x25\x64\xb3\xd9\x5a\xa1\x50\x40\xa5\x52\x81\x24\x49\x0f\x74\x36\ \xa2\x29\xa0\xd2\xf3\x3c\x7f\x54\x2c\x16\x11\x0e\x87\xf3\x6e\xb7\ \x7b\xc6\xe5\x72\x4d\x05\x02\x01\x39\x93\xc9\x20\x91\x48\x48\xf5\ \x8c\x96\xa0\x5f\x51\x94\x2a\x8d\xfd\x6e\x30\x18\x6c\xcd\x3e\xed\ \xcd\x24\xa9\xca\xb2\xfc\x5a\xcf\x68\x09\xc6\x54\x55\xad\x45\x22\ \x91\xdb\xcf\xa3\x7a\x3c\x1e\x5e\x10\x84\xeb\x7a\x46\x4b\x30\x4e\ \x02\x70\x1c\xa7\xb6\xb9\x58\x3d\x61\x24\x0c\xdf\x0a\x68\x82\xcb\ \x46\x4f\x9b\x56\x81\x10\x9a\xc7\x5d\x7a\x02\xb9\xed\x51\x1c\x86\ \x1d\x88\xf9\xad\x88\xfb\x2d\x38\x58\xb1\xe3\x3c\xe6\xc4\x7d\x7e\ \x01\xbb\xdc\x34\xbe\x14\xec\x73\x73\x78\xcb\x0f\xe2\x51\x64\xa1\ \x44\x75\x38\x5d\xd3\x41\xd9\xd0\x41\xdd\x62\x50\x4e\xb1\xa8\x3d\ \xcd\x22\x1e\x9c\xfc\x89\x80\x41\x61\x93\x45\x3a\xc4\x36\x04\x57\ \xdb\x0c\x5e\x8e\x29\xf2\xfc\x2b\x01\x83\x93\x55\x86\x04\xcc\xdf\ \x05\xd2\x3a\xad\xd1\x7f\x24\x68\x7d\xc6\x9d\x45\x2b\xf6\x96\x2c\ \x48\x86\x86\xa0\xc4\x9d\x28\x5f\x68\x3c\x23\x55\x07\x61\x24\xba\ \x89\x3e\x62\x80\x70\x10\xc3\x84\x9d\xb0\x11\x66\xa2\x8b\xe8\x6c\ \x7e\xaa\x0f\xd9\x9d\x89\x07\xa1\xb5\x4b\xa0\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x07\xef\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ \x00\x00\x00\x06\x62\x4b\x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\ \xf7\xdc\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\ \x37\x5c\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\ \x00\x00\x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x07\x4c\ \x49\x44\x41\x54\x48\xc7\x5d\x93\x69\x50\x94\x67\x16\x85\xcf\xfb\ \x7d\x4d\x77\x4b\x77\xd3\x48\x77\x23\x8a\xb2\x09\x51\x19\x01\x65\ \x53\x16\x01\x1d\xc5\x4e\x06\x89\x80\x62\x08\xee\x83\x36\x91\x21\ \x2a\x48\x8c\x33\x12\xd7\x72\xca\x11\x65\x2c\x97\x41\x0d\x24\x8a\ \x7b\x8c\x30\xb1\x24\xa2\x53\x2a\xa5\x94\x04\x88\x80\x6c\x8a\xad\ \x80\x88\xa8\x48\x0b\xbd\xaf\xdf\x3b\x3f\x70\xa6\x2a\xb9\x7f\x9e\ \xba\x75\x4f\xd5\xa9\x5b\xf7\x5c\x92\x54\x93\x54\x93\x54\x03\xbc\ \x6a\x78\xd5\xf0\xaa\x81\x49\x14\x36\x0a\x1b\x85\x8d\x44\x98\x50\ \x94\xb0\x33\x21\xc3\x61\xf3\x10\x48\x52\xb5\x1f\xe3\xe7\x98\xc2\ \x19\x47\xbc\xf3\x90\xce\xec\xe2\xa9\x19\x21\x2e\xb7\xa4\xf6\xff\ \x5b\x9e\x20\x15\xf9\x0f\x8d\xcd\xd4\x9e\x09\x5f\x3c\xf6\x81\xa8\ \x9a\x6e\x51\xe6\x68\xa5\x23\x92\xe1\xfd\xb3\x43\xff\x35\xb9\xfc\ \xf2\xcf\xee\x6b\x3c\x25\x0b\x44\x0b\x85\x52\xf5\x90\x28\xc9\x59\ \x39\xe6\x04\xd9\x32\xa8\xd4\x24\xea\x26\xd0\xa2\xca\xf1\xb7\xec\ \x0f\x63\x00\xde\x9c\x3b\xb1\x39\x51\x0f\x01\xce\xcc\xe5\xd2\x00\ \x4e\xff\xb8\xa8\x5b\xf5\xb6\x0b\x37\x85\xf9\xce\xd5\x62\xf0\xb7\ \x4f\x3b\x12\x58\x32\x45\x3a\xed\x32\xff\xb0\xf4\x9e\xf4\x4c\xdc\ \x16\xde\x1e\x7b\xda\xc8\xf5\xb9\x95\x61\xd9\xf2\xa0\xde\x69\x91\ \x3c\x36\x8c\x29\xa0\x41\x9e\xbf\xb0\xdf\xd9\x3c\xe8\x2c\x6e\xbd\ \x58\xc1\x5b\x6b\xe3\x31\xad\x41\xf5\x01\x3e\x1e\xaa\xf9\xfb\xfd\ \xeb\xbc\x9c\x15\xd5\xea\x2c\xe2\x49\xba\x51\xcb\x94\x1b\x0e\x99\ \xc6\x59\xd3\x1d\x68\x4a\xeb\xe8\x7c\xd1\x0f\x10\x65\x9f\x52\x90\ \x78\x0e\x18\x1a\x79\xd7\x30\x74\x30\xe1\xdb\xde\xe1\x97\xf5\xaf\ \xd7\x66\xe5\x6c\xb3\xe6\x6e\xfe\x2c\x6a\x96\xe7\xd2\x00\x65\x6c\ \xb8\x6a\xf2\x37\x46\xbd\xfe\x6f\x5a\x6f\xb2\xca\x3e\xd5\x28\x7f\ \x97\x8c\x5e\x6b\xaf\xf1\xf0\xfb\x72\x78\x63\x37\xc2\x49\x1a\x0a\ \xb8\x04\x5a\x44\x9d\x6d\xe9\x6c\x25\xb3\x90\x29\x75\x8a\x68\xcf\ \x57\x6f\x19\xb8\x59\xe9\xc8\x88\x2e\xf0\xcc\xde\x94\xc2\x03\x00\ \x88\x89\x16\x00\xa2\x0f\x50\x17\x99\xcc\xf5\x9a\x48\x0f\x30\x8a\ \xd9\xf2\xb3\x8a\x54\x80\xbe\xc0\x1a\x04\xad\x78\xa3\x10\x28\xca\ \xe4\xfa\x4c\x73\xcb\xb2\x47\xe1\x1d\x7f\xf4\x6d\x31\xfd\x34\x3c\ \xa9\xff\x0a\x51\x9b\x2a\x74\x11\x43\x57\x1c\x97\x46\x38\xcd\xec\ \x81\x78\x2e\xd4\xe4\x62\x36\x59\xf6\xd1\x07\xa6\x74\xf3\x76\x73\ \x2b\xb6\x9b\x61\x1e\x30\xb7\xf1\x26\x59\x6a\xcc\xab\xcc\x5d\x80\ \x58\x3a\xe6\x34\x2f\x26\xea\xac\x60\x2b\x3f\x3c\xee\x86\xac\x5e\ \xb8\x92\xdf\x1e\xc7\x51\x97\x04\xbf\x70\x8d\x9f\x0d\xd6\xc0\x4b\ \x7e\x4a\xf7\x66\x80\xd7\x92\xff\xa8\xb9\x55\x05\x8c\x04\x8e\x7c\ \x33\xc2\x6f\xdb\x20\x2b\x90\x0d\xcb\x8f\x02\x6d\x5f\xaa\xb3\x06\ \x8a\xe9\x92\xc1\x8f\xb4\xf7\x1d\xbe\xa8\xe0\xdd\xb3\x47\xe8\x3d\ \xd8\x31\xe6\x3c\x53\x8a\x79\x2c\x96\x92\x9b\x64\x88\xcc\x03\x43\ \x97\xd3\x42\x1a\x0c\xd0\x4f\xe9\x67\xf8\x82\x88\x99\xdb\x4c\x25\ \x09\xa1\xa9\x4e\x1c\x7b\x90\xab\x1b\x77\x35\x47\xbc\x2c\x6f\xd6\ \xd3\x59\xcf\xdd\xa6\x4b\x53\x9d\x17\x56\x81\x4d\x67\xca\x88\x8a\ \x39\xf1\xde\x4d\x3b\xd9\x34\x85\x03\xaf\xb3\xa3\xf3\x55\x27\x05\ \x68\x29\xdd\x45\x1f\xd7\x6e\x90\xf9\xc9\xd4\x6e\x07\x71\xfe\xdd\ \xfa\xf7\x12\xdd\x7c\x5e\x61\xab\xaa\xad\xb8\xf3\x2d\x6a\xa7\xbc\ \xf7\x20\x90\x63\xbe\x29\xd8\x3c\xd3\x56\x03\x86\xd4\x90\x78\xf2\ \x0c\xc0\x0c\x1a\x44\xa7\x01\x98\x44\x0e\x90\x14\xb0\x08\x43\x14\ \x16\x70\x45\xf4\x38\xf5\xe1\x5a\x59\x4c\x2c\x51\xc4\x88\x13\x13\ \xdd\xe3\x52\x42\xb7\x79\xf3\xaa\x80\xc7\x44\x86\x65\xc8\xf0\x8e\ \x1c\xef\x26\x5d\x8f\x5c\x82\xdf\x94\xf3\xc9\x40\x9f\x69\x47\xa7\ \x56\xb5\xa6\x18\xb7\x59\xa6\x72\x9b\xfd\xe4\x89\x53\x23\xeb\x3d\ \x4f\xd3\x5d\x4b\xb6\xc6\xe6\x79\x9c\x27\x3b\x74\xd5\x26\x6f\xab\ \x05\x60\x6e\x93\xb9\xd8\x0e\xd0\x60\x3a\x13\x51\x00\x5b\xc6\xfe\ \xc0\x54\x01\x8e\x25\x8e\x75\xdc\x01\x1a\xc8\xb4\x10\x3f\xc8\x49\ \xc7\x9b\x16\xcd\xf7\x86\xe4\xd6\x00\x55\xf1\xbe\x73\x37\xe6\xce\ \x54\x8d\xfa\x38\x0a\x3e\x18\xe6\x93\x78\x55\x7c\x76\x7c\x36\xb3\ \x5f\x10\x26\xa8\xe3\x7b\x73\x5b\x3b\x6e\xb6\x5f\xeb\xb8\x70\xee\ \xb9\x73\xa8\xb8\xcf\xe5\xf8\xe7\xbe\x6e\x1d\xce\x2b\xed\x7d\x9c\ \x67\xde\xe7\x4b\x2b\xa6\xf2\x98\x7e\xc7\x29\x87\x90\xbb\x0e\xd0\ \x1f\x70\x92\xee\x01\x48\x33\x69\x26\xbf\x00\xbc\x63\xec\x45\xde\ \x1d\xc0\xaa\xb1\x3e\xb7\xb6\xe3\x3b\xf6\x6b\x56\xca\xac\xc5\x1a\ \x43\x93\x89\xb5\xed\xe5\x56\x5c\xcf\xbd\xef\xf6\xac\x3b\x34\x4f\ \x18\x22\x48\x62\x77\xb4\x84\x8e\x51\x09\xce\x3a\xb5\x31\x62\xe2\ \xa2\x77\xd1\xbb\xe8\xd9\x04\xac\x44\x2a\xe2\x1c\x77\xed\x61\x76\ \x77\xfb\xdb\xac\x5a\xaf\x42\xaf\x07\x5e\xd1\xa7\xa2\x0d\x46\x83\ \x52\x1f\xc1\xa5\x6c\x7a\x97\xda\xef\xe7\xcd\x54\xb8\xa7\x49\x43\ \xf9\x9b\x00\x6b\xb4\xed\x4b\x47\x26\xc0\x17\xf2\x07\xf9\x15\x00\ \x3a\xf1\x84\x3e\x05\x2c\xd4\xd2\x6e\xb9\x02\x38\x0d\x3b\x59\x9d\ \x74\x0e\xce\xe6\x61\x5b\x61\x57\xb3\x4c\x27\xaf\x67\x40\xc3\xe4\ \x35\x4e\xac\x56\xf8\x8b\xcc\xc5\x11\x28\x20\xfb\xc8\x49\x36\xeb\ \xc3\x09\x88\x7a\x94\xd4\x7f\x94\x81\x05\x3e\x51\xde\xf7\xbc\x05\ \x4d\xbb\x75\x73\x8c\x0d\x96\x2e\xbe\x30\xb5\x38\x2a\x53\x66\xc2\ \xce\xe8\xf0\x3f\x44\x8d\xed\xc1\x4e\xfd\x55\xd3\x1c\x7b\x3a\x20\ \x36\x89\x6f\x88\x02\x01\xf3\x88\xe9\xae\xe9\x38\xe0\x28\x71\xec\ \x72\x64\x03\xfc\x1d\x02\xb5\x20\x8d\xdb\x6c\x2f\xb3\x05\xdb\x4e\ \x30\xc5\xaf\xbf\xd2\xcc\x30\x2d\xac\x9e\xb1\xcb\xe9\xab\xca\xe8\ \xbf\x2b\x5b\x00\x56\xc2\x94\x93\x1f\xff\x97\x81\xcd\x1f\x58\x3c\ \x0a\x76\x95\x3c\x5a\x76\xcd\x4d\xfd\xeb\x11\xea\x60\xb6\xf2\xff\ \x1c\x22\x99\xb2\x60\xbc\x33\xb3\x87\xfa\x2e\x0f\x9a\x97\x3f\xe1\ \x16\xe9\xb6\xf6\xd9\xe7\x40\x03\x88\x72\xc5\x79\xa2\x65\x80\xee\ \x91\xee\x96\xae\x16\x60\x85\xac\x8c\xf5\x00\x04\x16\xfe\x25\xfe\ \x18\xc8\x0d\x72\xdd\xc8\xf0\x1d\xbc\x33\x0e\x5a\x92\xed\xd0\x2c\ \xaf\xf0\xab\x8b\x1c\xae\x9a\xbe\x9a\xff\x92\x57\xc8\xc4\x0f\x2c\ \x60\xc4\x87\xc4\x87\xc4\x87\x50\xec\x72\xd5\xe5\xaa\xcb\x55\xe6\ \x81\xeb\xd7\xae\x4a\xa9\xdd\x71\x5a\x3f\xcb\xb0\xd1\x50\x57\x7b\ \x86\x66\x72\xfe\xf6\x68\xa0\x67\xcd\xeb\x7a\xa3\x82\x6b\xd0\xf6\ \x1a\x0b\x6c\xfe\x80\x44\x24\x39\x25\xbe\x03\x90\x25\x34\x84\x4b\ \xc6\x51\xeb\x66\x63\xa9\x76\x3a\x0d\x23\xf7\xb8\x08\xab\xcc\xd1\ \x0d\x57\xd2\xc5\xc8\xb8\x66\xe9\x62\x8f\x8b\x1f\x2d\xc7\x6a\x51\ \xac\xc7\x85\x19\x4d\x6e\x67\xcd\x99\x86\xc9\xda\xd3\xbe\x0f\x2c\ \xfe\xa6\x0c\x9d\x1b\x40\xd0\x83\x1e\xf4\x00\x24\x89\x24\x91\x24\ \xe6\x3e\x7d\x41\x9f\xd1\x36\x2e\x16\x5a\x98\x80\xa5\x3e\x62\x89\ \xe8\xa9\xa8\xe8\x72\xb7\x5e\x67\x08\x30\x0a\x1d\x83\xaa\xea\x3f\ \xc5\x4e\xfa\x07\xb9\x9b\x28\x99\xa3\x09\x9e\x08\x32\x54\xad\x0f\ \xc7\x62\xc6\x8b\x5f\x2a\xd9\x34\x61\x10\x91\x92\x3d\xee\xbe\xfe\ \xcf\x50\x45\x1f\xf3\xd7\xbb\xbe\xc5\x27\xe6\x13\xf6\x1b\x8c\x4a\ \x7b\xa5\x79\x5f\x53\x51\x53\x4e\x8b\xcf\xa1\xec\x7f\xaa\x8e\x69\ \xd7\x05\x72\x0c\x00\x3c\x11\xf1\xb0\x11\x1b\xb1\x11\xa0\x6d\xb4\ \x8d\xb6\xd1\xc3\xbf\x7d\xcb\x3a\x35\xa7\xe7\x8c\x9c\x49\x17\xe8\ \x93\xe3\xfb\xb1\xaf\x97\xa4\x43\xf2\xcc\xf7\xdb\xb8\x12\xa4\x93\ \x92\x89\xda\xc8\x2c\x50\xe7\xbd\x8e\x13\x7c\xbe\xed\xa2\xfe\x9c\ \xa1\xdd\x1c\xda\x75\xa0\xab\xf1\xc9\xf8\xbe\xd2\xfb\x86\x87\xdf\ \x37\x7e\x51\xf5\xc9\xed\x2b\x37\x57\xff\xe7\xfa\xdd\x15\x75\x4f\ \x84\xf9\xee\x1b\x03\x12\xfa\xd4\xdc\x06\x00\x77\xe9\xdb\x0f\x06\ \x0a\x40\x01\x05\x14\xff\x77\x3c\xb2\xc8\x73\x91\xe7\xa2\x89\xec\ \x9b\x0f\x59\xb0\x84\xec\x0d\xd9\x1d\xb2\xb3\xe6\x7e\x56\x49\x56\ \x59\x56\xb9\xa1\x4a\x25\x58\xaf\x55\x39\x55\x59\x97\xfd\xba\xb4\ \x2d\xed\xd3\x6d\x98\x90\x31\x6e\x9b\xec\x54\xcc\xd1\x51\xbd\xb4\ \xf2\xb7\x0b\x20\x64\x52\x34\x53\x06\x00\x3f\x6e\x2d\x6f\x38\x76\ \x8b\x94\xc6\xec\x0f\x4e\xf6\xe4\xa3\x5b\xb9\x60\xf6\x65\x5f\x0d\ \x7e\x5f\xe4\x05\x44\x10\x41\xe4\x9a\x32\xda\x7b\x87\x22\x13\x99\ \xc8\x54\x7a\xc1\x0b\x5e\xf0\x4a\xea\x05\x0f\x02\x88\xa6\x17\x8e\ \xce\x27\x8b\xc8\x3a\x52\xcf\xe4\xfa\x6d\x77\xbb\x20\xcb\x90\xaf\ \xf3\x6b\x77\x3f\xe5\x9e\xac\xe8\xf7\xd2\x8b\xcf\x8b\x5e\x3a\x3f\ \x74\x37\x90\x9f\xc8\x3c\x54\x48\xfe\x3a\xaa\x77\x92\xb0\x7f\x61\ \x7a\x19\x0f\x2c\x66\x0c\xcc\x3e\xf2\x12\xf8\x2f\x08\x94\x26\x93\ \x03\xff\xc8\x24\x00\x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\ \x4e\x4e\x2c\x48\xd5\xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\ \xca\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ \x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ \x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ \xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ \x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ \x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ \xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ \x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ \xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ \xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ \x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ \xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ \x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ \x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ \x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ \x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ \xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ \x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ \x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ \x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ \x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ \x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ \x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ \x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ \x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ \xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ \xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ \x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ \xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ \xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ \x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ \xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ \xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ \xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ \xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ \x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ \x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ \x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ \xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ \xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ \xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x4f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ \x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ \x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ \x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ \x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x48\x50\x4c\x54\ \x45\xff\xff\xff\x00\x00\x00\x0a\x66\xf0\x7a\xad\xf5\x0a\x67\xf0\ \x00\x00\x00\x09\x68\xee\x0b\x68\xee\x2f\x80\xf2\x55\x97\xf4\x77\ \xac\xf7\x08\x67\xee\x08\x69\xee\x08\x68\xee\x08\x69\xef\x08\x68\ \xef\x08\x67\xef\x08\x68\xef\x8b\x8b\x8b\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x8b\x8b\x8b\x4c\xd0\xce\xf3\x00\x00\x00\ \x16\x74\x52\x4e\x53\x00\x1b\x32\x32\x34\x47\x78\x78\x78\x78\x78\ \x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x82\x84\xb9\xf6\x5a\x93\x98\x00\ \x00\x00\x57\x49\x44\x41\x54\x18\x19\x85\xc1\x59\x0e\x82\x40\x00\ \x05\xb0\x2a\xf2\x00\x11\xc4\x6d\xb8\xff\x4d\x25\x2e\xc9\xfc\xd1\ \xb2\xaf\x39\x57\x1a\x0c\x2a\x03\x7a\xaf\x47\x79\xbe\xac\x1b\x3d\ \x3a\x07\xc5\xc1\x47\x87\xa0\xf8\x09\x82\x82\x75\x23\x08\x6d\x69\ \x7d\x05\x51\x09\xe2\xbe\xfe\x09\xa2\x12\x44\x25\x38\xdd\x96\xe5\ \x3a\xcf\xd3\x74\x19\xc7\x1c\xed\x7b\x03\x2c\xc0\x04\x0b\x8e\x16\ \xcd\xfc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xa1\x9b\x9d\xa1\x9b\x9e\xa3\x9d\xa0\xa6\xa0\ \xa1\xa4\x9e\xa1\xa6\xa0\xa3\xa6\xa0\xa2\xa8\xa3\xa5\xaa\xa5\xa7\ \xab\xa6\xa8\xae\xa8\xac\xb0\xaa\xaf\xaf\xa9\xae\xb3\xad\xb2\xb2\ \xab\xb0\xb3\xae\xb3\xb2\xac\xb1\xb3\xab\xb0\xb5\xae\xb1\xb5\xad\ \xb0\xb8\xaf\xb1\xba\xb1\xb3\xba\xb2\xb3\xc0\xb8\xb9\xc0\xb8\xb8\ \xc1\xba\xbc\xc2\xbb\xbc\xc5\xbf\xc0\xc5\xbd\xbe\xc6\xbf\xc0\xc8\ \xc0\xc1\xc9\xc2\xc3\xc9\xc2\xc2\xc9\xc0\xbf\xcc\xc2\xc3\xcb\xc0\ \xc2\xcc\xc2\xc3\xcc\xc2\xc3\xca\xbf\xc0\xc7\xbb\xbc\xba\xa9\xab\ \xa6\x93\x95\xa2\x90\x91\xab\x9c\x9a\xc1\xb5\xb5\xcd\xc5\xc5\xcf\ \xc9\xca\xd0\xc8\xc9\xd2\xca\xc9\xd2\xcb\xc9\xd4\xcd\xca\xd5\xce\ \xcb\xd7\xcf\xcc\xd4\xcc\xcb\xcf\xc1\xc0\xc8\xb6\xb5\xba\xa2\xa0\ \xb3\x97\x94\xb0\x98\x94\xc0\xaf\xab\xcf\xc3\xc1\xd7\xce\xce\xda\ \xd3\xd4\xda\xd5\xd5\xdb\xd6\xd8\xdd\xd7\xd8\xde\xd6\xd7\xe0\xd8\ \xd9\xe0\xd9\xda\xe0\xd9\xd9\xe1\xd9\xda\xe1\xd9\xd9\xe2\xdb\xd8\ \xe0\xd8\xd5\xdf\xd5\xd2\xdc\xce\xcb\xd5\xc2\xbf\xce\xb6\xb1\xc7\ \xa8\xa4\xc2\xa0\x9f\xc0\xa2\xa1\xc0\xa4\xa2\xc6\xad\xa8\xcb\xb5\ \xb2\xd4\xc3\xbf\xd7\xc8\xc5\xdd\xd2\xd0\xdf\xd5\xd3\xe0\xd6\xd6\ \xe0\xda\xd9\xe1\xdb\xda\xe1\xdb\xd9\xe2\xdb\xda\xe1\xdb\xda\xdf\ \xd8\xd6\xdf\xd9\xd7\xe1\xdc\xda\xe0\xdb\xd9\xdf\xd9\xd6\xdf\xda\ \xd6\xa7\x8b\x7e\xe0\xd6\xd3\xe0\xda\xd9\xe1\xda\xda\xdf\xd9\xd9\ \xdd\xd6\xd6\xdc\xd6\xd6\xdb\xd3\xd3\xd6\xcd\xcf\xd2\xca\xcc\xd2\ \xc9\xcb\xcb\xc4\xc5\xc6\xc0\xc0\xbd\xb8\xb7\xb9\xb4\xb4\xb1\xab\ \xac\xa8\xa3\xa4\x9e\x99\x9a\x8f\x8e\x8e\x81\x82\x83\x71\x75\x76\ \x5f\x64\x6a\x45\x4d\x56\x21\x2b\x36\x06\x0a\x10\x00\x00\x00\x07\ \x06\x07\x36\x35\x35\x5e\x5d\x5d\x70\x70\x71\x79\x78\x7a\x80\x7f\ \x83\x85\x84\x88\x84\x85\x89\x86\x86\x8b\x86\x87\x8d\x84\x86\x8c\ \x81\x84\x89\x80\x82\x89\x81\x84\x8a\x80\x82\x87\x71\x73\x77\x69\ \x6b\x6f\x7a\x7d\x81\x79\x7c\x80\x79\x7c\x80\x76\x7a\x7f\x71\x75\ \x7b\x71\x75\x7d\x71\x77\x7e\x70\x76\x7f\x6d\x73\x7d\x69\x70\x7b\ \x65\x6e\x78\x68\x70\x7c\x68\x71\x7e\x59\x63\x70\x20\x25\x31\x0d\ \x0e\x17\x06\x06\x0b\x1d\x23\x2f\x47\x59\x6a\x1d\x27\x33\x00\x00\ \x00\xa1\x9c\x9e\xa1\x9d\x9f\xa5\xa0\xa2\xa6\xa1\xa3\xa6\xa1\xa3\ \xa5\x9f\xa2\xa5\x9f\xa1\xa8\xa3\xa4\xad\xa8\xaa\xac\xa7\xa9\xac\ \xa7\xa9\xae\xa9\xac\xad\xa7\xab\xb2\xac\xb1\xb2\xad\xb1\xb2\xac\ \xb1\xb5\xaf\xb4\xb6\xaf\xb3\xb6\xaf\xb2\xb6\xaf\xb2\xb8\xb1\xb4\ \xbc\xb5\xb7\xbb\xb3\xb5\xbe\xb6\xb7\xc2\xba\xbb\xbf\xb8\xba\xc1\ \xbb\xbc\xc5\xbf\xbf\xc4\xbc\xbd\xc7\xbf\xbf\xc8\xbf\xbf\xc8\xc0\ \xc0\xcb\xc2\xc2\xcd\xc3\xc3\xce\xc4\xc4\xcd\xc3\xc4\xcf\xc5\xc5\ \xcd\xc4\xc4\xcc\xc1\xc2\xce\xc4\xc4\xce\xc5\xc5\xd0\xc6\xc6\xca\ \xbd\xbd\xb7\xa6\xa4\xa2\x8e\x8b\x9f\x8b\x8a\xb0\x9e\x9d\xbe\xae\ \xac\xc8\xbd\xb9\xce\xc4\xc0\xd0\xc8\xc5\xd1\xca\xc7\xd5\xce\xcb\ \xd7\xd0\xcd\xd8\xd1\xcf\xd9\xd1\xcf\xd9\xd1\xce\xda\xcf\xcc\xcf\ \xbf\xbb\xc3\xb0\xac\xb3\x98\x91\xaf\x92\x8c\xb8\xa2\x9b\xc5\xb4\ \xaf\xd0\xc3\xc2\xd7\xcf\xce\xdb\xd4\xd2\xde\xd6\xd5\xde\xd9\xd8\ \xdf\xda\xd9\xe2\xda\xda\xe2\xdc\xdb\xe3\xde\xdd\xe3\xde\xdc\xe3\ \xdd\xdb\xe3\xdc\xda\xe3\xdd\xda\xe4\xdd\xda\xe4\xdd\xdb\xe3\xdb\ \xd9\xe1\xd7\xd5\xe0\xd3\xcf\xda\xc6\xc1\xd1\xb9\xb4\xcc\xb1\xab\ \xc5\xa9\xa2\xc1\xa2\x9e\xbf\xa1\x9c\xbd\x9b\x95\xbc\x9b\x90\xbe\ \x9e\x93\xbb\x9a\x8e\xbb\x9a\x90\xbe\xa0\x99\xbd\xa2\x9a\xbb\xa2\ \x99\xbe\xa5\x9b\xba\xa1\x98\xb8\xa1\x98\xa7\x8a\x7e\xa7\x88\x7d\ \xe4\xdd\xdc\xdf\xd7\xd6\xe0\xd8\xd8\xde\xd6\xd6\xdd\xd4\xd4\xda\ \xd2\xd2\xd7\xcf\xcf\xd4\xcc\xcc\xd1\xc9\xc9\xcd\xc5\xc6\xca\xc3\ \xc4\xc3\xbe\xbe\xbc\xb7\xb6\xb5\xb0\xb0\xab\xa6\xa7\xa2\x9e\x9f\ \x96\x92\x93\x8b\x89\x8b\x7c\x7e\x7e\x6c\x6f\x71\x56\x5c\x61\x34\ \x3d\x46\x11\x19\x20\x02\x03\x04\x00\x00\x00\x16\x16\x18\x4c\x4b\ \x4c\x66\x65\x67\x74\x73\x75\x7e\x7d\x80\x7f\x80\x83\x81\x82\x86\ \x85\x86\x8a\x86\x87\x8c\x84\x86\x8b\x83\x86\x8b\x84\x87\x8c\x80\ \x83\x88\x81\x84\x89\x7c\x7f\x84\x67\x69\x6f\x74\x77\x7b\x79\x7e\ \x81\x79\x7d\x81\x77\x7b\x7f\x77\x7b\x80\x70\x75\x7a\x6e\x75\x7b\ \x6f\x75\x7d\x70\x75\x7f\x6e\x75\x7f\x6b\x72\x7d\x67\x6e\x79\x66\ \x6f\x7a\x64\x6e\x7a\x44\x4e\x5a\x10\x11\x17\x08\x0a\x0e\x11\x12\ \x19\x35\x3e\x4a\x4d\x5d\x6d\x1b\x24\x2f\x00\x00\x00\xa1\x9d\x9f\ \xa1\x9d\x9f\xa7\xa2\xa4\xa7\xa2\xa4\xa7\xa2\xa3\xa6\xa0\xa2\xa9\ \xa3\xa5\xab\xa6\xa7\xad\xa7\xa9\xac\xa7\xa8\xac\xa7\xa9\xaf\xa9\ \xab\xac\xa7\xa8\xb0\xaa\xad\xb2\xac\xaf\xb4\xae\xb0\xb7\xb2\xb4\ \xb8\xb2\xb5\xb9\xb2\xb5\xb8\xb1\xb4\xbc\xb5\xb8\xbc\xb6\xb8\xbe\ \xb7\xb9\xc0\xb8\xb9\xc4\xbc\xbd\xc0\xb9\xba\xc2\xba\xbb\xc4\xbe\ \xbe\xc3\xbc\xbc\xc5\xbd\xbd\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc2\xc2\ \xcd\xc4\xc4\xce\xc5\xc5\xcf\xc6\xc7\xcf\xc7\xc7\xce\xc5\xc6\xd1\ \xc9\xc9\xd0\xc7\xc7\xd0\xc7\xc5\xd1\xc7\xc7\xd2\xc9\xc7\xd3\xc9\ \xc8\xd1\xc7\xc5\xc5\xb9\xb8\xaf\x9b\x98\xa0\x89\x83\xa3\x8f\x86\ \xb5\xa3\x9b\xc2\xb4\xb0\xc8\xbe\xba\xce\xc4\xc1\xd5\xcd\xcc\xda\ \xd3\xd0\xd8\xd1\xce\xda\xd3\xd0\xdb\xd3\xd3\xdb\xd4\xd2\xdc\xd6\ \xd4\xde\xd9\xd7\xd8\xcf\xce\xcc\xbe\xbb\xbe\xa8\xa3\xb4\x9a\x92\ \xb2\x98\x8e\xbc\xa5\x9c\xca\xb7\xb0\xd5\xc7\xc3\xd7\xce\xcb\xdc\ \xd4\xd1\xdd\xd7\xd5\xe2\xdc\xdb\xe2\xdc\xdb\xe3\xdd\xdc\xe3\xde\ \xdd\xe3\xde\xdc\xe3\xde\xdb\xe4\xde\xdb\xe3\xdd\xdb\xe3\xde\xdb\ \xe5\xdf\xdc\xe4\xde\xdc\xe5\xdf\xdc\xe6\xe0\xde\xe7\xe0\xde\xe6\ \xdf\xdd\xe5\xe0\xde\xe5\xde\xdc\xe4\xdc\xd9\xe5\xdd\xda\xe0\xd5\ \xd2\xde\xd1\xce\xdd\xcf\xcc\xdd\xd0\xcd\xdc\xcf\xcb\xdc\xd0\xcb\ \xdc\xd2\xcc\xda\xcf\xca\xb3\x97\x8c\xca\xbb\xb4\xdf\xd8\xd5\xde\ \xd6\xd3\xde\xd7\xd5\xdc\xd4\xd4\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\ \xce\xd2\xca\xc9\xd1\xc8\xc8\xcd\xc5\xc5\xc6\xbe\xbe\xbe\xb8\xb9\ \xb7\xb2\xb1\xae\xa9\xa9\xa7\xa2\xa4\x9c\x99\x9a\x8f\x8d\x8f\x84\ \x83\x86\x77\x78\x7b\x66\x68\x6c\x4f\x54\x59\x2a\x32\x3b\x09\x0e\ \x13\x00\x00\x00\x01\x02\x02\x26\x27\x2a\x55\x58\x59\x6a\x6c\x6f\ \x78\x79\x7b\x7f\x7e\x80\x81\x80\x84\x82\x83\x87\x83\x84\x88\x85\ \x86\x8c\x84\x86\x8b\x83\x86\x8b\x81\x84\x89\x7f\x82\x87\x80\x83\ \x88\x76\x7a\x7f\x65\x68\x6d\x7a\x7f\x83\x79\x7d\x81\x77\x7c\x7f\ \x76\x7a\x7f\x74\x78\x7d\x73\x77\x7c\x73\x77\x7d\x72\x78\x7f\x70\ \x75\x7e\x6d\x74\x7d\x68\x70\x7a\x65\x6f\x79\x65\x6f\x79\x61\x6b\ \x75\x2d\x34\x3d\x04\x04\x07\x0d\x0f\x14\x1d\x22\x2b\x45\x4e\x5c\ \x45\x50\x5e\x23\x27\x31\x00\x00\x00\xa3\x9e\xa0\xa2\x9e\xa0\xa6\ \xa1\xa3\xa7\xa2\xa4\xa9\xa4\xa5\xa7\xa2\xa3\xa8\xa3\xa5\xab\xa5\ \xa7\xad\xa7\xaa\xad\xa7\xa9\xab\xa5\xa7\xaf\xaa\xab\xad\xa8\xaa\ \xb0\xa9\xab\xb0\xa9\xac\xb0\xaa\xad\xb6\xb0\xb4\xb8\xb2\xb5\xb7\ \xb0\xb3\xb9\xb2\xb5\xba\xb3\xb6\xbb\xb4\xb6\xc0\xba\xbb\xc3\xbd\ \xbe\xc1\xbb\xbc\xc4\xbc\xbc\xc3\xbb\xbb\xc7\xc1\xc1\xc6\xc0\xc0\ \xc6\xbd\xbd\xc7\xbe\xbe\xc8\xc0\xc0\xcb\xc2\xc3\xcb\xc1\xc1\xcb\ \xc2\xc1\xce\xc5\xc5\xcf\xc8\xc8\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\ \xcb\xd2\xcb\xca\xd2\xc9\xc8\xd3\xca\xc7\xd2\xc9\xc8\xd2\xca\xc8\ \xd3\xcc\xcb\xd3\xcb\xc8\xd1\xc5\xc2\xc4\xb4\xaf\xb3\x9d\x96\xa7\ \x8f\x89\xaa\x94\x90\xb8\xa5\xa0\xc6\xb8\xb2\xcd\xc5\xc1\xd3\xcb\ \xc8\xd9\xd2\xce\xdb\xd4\xd1\xdb\xd4\xd1\xdc\xd6\xd5\xdc\xd6\xd6\ \xdc\xd7\xd8\xde\xda\xda\xdf\xd9\xd9\xdf\xd7\xd6\xda\xd0\xcd\xd0\ \xc0\xbb\xc1\xad\xa7\xbd\xa6\xa0\xbd\xa5\x9e\xbe\xa6\x9d\xc7\xb5\ \xaf\xd0\xc0\xbc\xd6\xc7\xc3\xd8\xcd\xca\xda\xd1\xd0\xdc\xd4\xd3\ \xdf\xd9\xd8\xe2\xdc\xdc\xe3\xde\xdd\xe2\xde\xdb\xe3\xde\xdb\xe3\ \xde\xdd\xe2\xdd\xdb\xe3\xde\xdd\xe4\xdf\xde\xe3\xde\xdc\xe3\xde\ \xdb\xe2\xde\xdb\xe2\xdd\xda\xe3\xdd\xdb\xe2\xdd\xda\xe2\xdc\xd9\ \xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd9\xd6\xdf\ \xda\xd6\xa5\x8a\x7d\xe0\xd8\xd4\xdc\xd5\xd2\xdc\xd5\xd2\xda\xd3\ \xd2\xd8\xd1\xd1\xd7\xd1\xd0\xd6\xce\xce\xd2\xca\xc8\xcd\xc5\xc3\ \xca\xc2\xc1\xc7\xbf\xbf\xc1\xbb\xba\xb9\xb3\xb4\xb0\xaa\xaa\xaa\ \xa5\xa4\x9e\x99\x9a\x98\x95\x96\x8b\x8a\x8c\x7c\x7b\x7e\x6d\x6f\ \x72\x5b\x5e\x63\x41\x46\x4c\x1d\x23\x2b\x04\x07\x0a\x00\x00\x00\ \x0c\x0c\x0e\x3d\x3e\x41\x5b\x5c\x5d\x6d\x6f\x71\x79\x79\x7d\x7e\ \x7e\x82\x82\x83\x87\x85\x86\x8a\x84\x85\x89\x85\x86\x8b\x86\x88\ \x8c\x83\x86\x8b\x80\x84\x89\x7e\x82\x86\x7f\x83\x87\x69\x6d\x72\ \x6e\x72\x77\x7b\x80\x84\x77\x7b\x7f\x76\x7a\x7e\x76\x79\x7d\x73\ \x77\x7c\x73\x76\x7c\x73\x77\x7d\x72\x78\x80\x72\x77\x80\x6f\x75\ \x7f\x6d\x74\x7d\x68\x70\x7a\x65\x6e\x78\x61\x6b\x75\x23\x29\x30\ \x01\x01\x01\x10\x12\x16\x33\x3b\x46\x3e\x47\x54\x34\x3c\x48\x28\ \x2d\x37\x00\x00\x00\xa5\xa1\xa2\xa5\xa2\xa4\xa7\xa2\xa4\xa7\xa2\ \xa4\xa9\xa4\xa6\xaa\xa5\xa6\xaa\xa4\xa5\xaa\xa4\xa5\xab\xa6\xa7\ \xad\xa7\xa8\xae\xa8\xa9\xb1\xab\xac\xaf\xa9\xaa\xb3\xad\xae\xb2\ \xac\xad\xb3\xad\xae\xb4\xaf\xb2\xb6\xb0\xb3\xb6\xb0\xb3\xb9\xb3\ \xb6\xba\xb3\xb6\xbc\xb6\xb8\xc0\xb9\xbb\xc3\xbd\xbe\xc2\xbb\xbb\ \xc4\xbe\xbe\xc7\xbf\xc0\xc6\xbf\xc0\xca\xc2\xc2\xc7\xc0\xc0\xc8\ \xc0\xbf\xc8\xc0\xc0\xcb\xc2\xc2\xcb\xc3\xc3\xcd\xc4\xc4\xcf\xc7\ \xc7\xcf\xc7\xc7\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\xca\xd2\xcb\xca\ \xd4\xcb\xcb\xd5\xcd\xcc\xd6\xce\xcd\xd5\xcc\xcc\xd4\xcb\xc9\xd4\ \xca\xc7\xd4\xc9\xc7\xd6\xcc\xc9\xd6\xcc\xc8\xd3\xc8\xc4\xc9\xbb\ \xb6\xb6\xa4\x9d\xac\x96\x8d\xb0\x9c\x94\xbb\xa8\xa1\xc1\xb2\xaa\ \xc8\xba\xb4\xcf\xc5\xc0\xd7\xce\xca\xdb\xd5\xd3\xdb\xd6\xd5\xdc\ \xd7\xd6\xdc\xd7\xd7\xdd\xd7\xd5\xde\xd8\xd7\xe0\xdb\xdb\xe0\xdb\ \xdb\xe0\xda\xd9\xde\xd5\xd2\xd5\xc8\xc4\xcb\xbb\xb5\xc4\xae\xa7\ \xc2\xa7\x9f\xc4\xaa\xa5\xc5\xae\xab\xc8\xb5\xb2\xce\xbe\xbd\xd2\ \xc4\xc2\xd5\xc8\xc5\xd5\xcb\xc6\xd6\xcc\xc8\xd8\xd0\xcd\xdb\xd2\ \xd1\xdc\xd3\xd2\xdd\xd8\xd6\xe0\xdb\xd9\xe0\xda\xd8\xe0\xda\xd8\ \xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe0\xdb\xd8\xdf\ \xda\xd9\xde\xdb\xda\xdb\xd7\xd7\xdb\xd6\xd3\xcc\xc0\xb8\xac\x94\ \x89\xdb\xd5\xd2\xd7\xd0\xce\xd7\xd0\xce\xd6\xd0\xce\xd3\xcc\xcc\ \xd3\xcc\xcb\xcf\xc8\xc7\xcc\xc5\xc2\xc8\xc1\xbe\xc4\xbb\xba\xc1\ \xb9\xb9\xba\xb3\xb4\xb4\xad\xae\xaa\xa4\xa4\xa0\x9b\x9a\x97\x93\ \x93\x8e\x8c\x8c\x81\x81\x83\x75\x75\x77\x63\x66\x68\x50\x55\x58\ \x33\x3a\x3e\x10\x17\x1b\x01\x03\x04\x00\x00\x00\x1a\x1b\x1e\x49\ \x4b\x4e\x61\x60\x62\x71\x6f\x72\x7b\x7a\x7b\x7f\x7e\x80\x82\x83\ \x86\x83\x84\x88\x85\x86\x8b\x85\x86\x8b\x84\x87\x8b\x82\x85\x89\ \x7e\x82\x86\x7e\x82\x86\x7c\x7f\x83\x66\x6a\x6f\x73\x77\x7b\x7b\ \x7e\x82\x77\x7a\x7f\x77\x7b\x7f\x75\x7a\x7e\x72\x77\x7c\x72\x77\ \x7c\x70\x76\x7c\x6f\x75\x7c\x6f\x74\x7c\x6e\x75\x7d\x6d\x75\x7e\ \x6a\x72\x7b\x65\x6e\x77\x5a\x64\x6f\x23\x27\x2f\x02\x02\x03\x15\ \x18\x1c\x54\x5d\x67\x45\x4d\x58\x2b\x33\x3d\x29\x2e\x39\x00\x00\ \x00\xa4\x9f\xa0\xa5\xa3\xa3\xa7\xa4\xa6\xa8\xa3\xa5\xa7\xa2\xa3\ \xaa\xa5\xa6\xac\xa6\xa7\xac\xa6\xa7\xad\xa7\xa8\xac\xa7\xa7\xb1\ \xab\xac\xb3\xad\xae\xae\xa9\xaa\xb2\xad\xae\xb5\xb0\xb1\xb5\xaf\ \xb1\xb4\xae\xb1\xb3\xad\xb0\xb6\xb1\xb3\xb9\xb4\xb6\xbb\xb4\xb7\ \xbf\xb8\xba\xc1\xbb\xbc\xc1\xbb\xbc\xc4\xbd\xbe\xc5\xc0\xc0\xc6\ \xc0\xc1\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc4\xc5\xca\xc3\xc2\xcb\xc3\ \xc3\xcc\xc4\xc4\xce\xc6\xc6\xce\xc6\xc6\xce\xc6\xc6\xd0\xc7\xc7\ \xce\xc5\xc5\xd1\xc9\xc9\xd3\xcb\xcb\xd4\xcc\xcb\xd6\xce\xcd\xd8\ \xd0\xd0\xd5\xce\xcc\xd5\xcd\xcc\xd5\xcc\xcb\xd5\xcb\xc9\xd4\xc8\ \xc6\xd3\xc9\xc5\xd5\xcb\xc7\xd7\xce\xc9\xda\xd2\xcf\xda\xd1\xce\ \xd7\xcb\xc7\xd2\xc4\xbf\xbf\xad\xa5\xaf\x99\x8e\xb0\x98\x8e\xb5\ \x9f\x96\xbd\xa9\xa0\xc4\xb4\xac\xc8\xbd\xb7\xd3\xca\xc7\xda\xd2\ \xd0\xdc\xd5\xd2\xdd\xd8\xd7\xde\xd9\xd8\xdd\xd9\xd9\xdd\xd8\xd7\ \xde\xd8\xd7\xdf\xd9\xd7\xe0\xda\xd7\xe1\xda\xd8\xe0\xd9\xd5\xdf\ \xd6\xd3\xdb\xcc\xc9\xd1\xc0\xbc\xcb\xb8\xb4\xc5\xb0\xad\xc3\xad\ \xa8\xc4\xad\xa6\xc3\xae\xa6\xc5\xb1\xaa\xc7\xb4\xb0\xc7\xb3\xad\ \xc6\xb3\xac\xca\xb7\xb2\xc8\xb5\xb0\xca\xb8\xb1\xc9\xb8\xb3\xc9\ \xb8\xb4\xca\xb9\xb5\xc9\xbb\xb5\xc7\xb9\xb4\xc6\xb9\xb4\xc6\xba\ \xb5\xc4\xb7\xb1\xc4\xb5\xac\x96\x77\x61\xc7\xb8\xb1\xd5\xcd\xca\ \xd2\xcb\xc9\xcf\xc9\xc6\xce\xc8\xc5\xcc\xc5\xc3\xca\xc2\xc2\xc6\ \xbf\xbf\xc4\xbc\xbb\xc1\xb9\xb7\xbb\xb5\xb1\xb6\xb0\xae\xb1\xaa\ \xa9\xa8\xa3\xa3\xa0\x9c\x9c\x98\x95\x94\x8e\x8b\x8b\x81\x80\x80\ \x75\x75\x76\x68\x69\x6a\x58\x5c\x5d\x44\x49\x4b\x22\x28\x2b\x07\ \x0a\x0d\x00\x00\x00\x04\x04\x06\x2d\x2d\x31\x51\x52\x54\x65\x65\ \x65\x70\x6f\x70\x79\x79\x7a\x7d\x7d\x7f\x81\x83\x84\x84\x86\x89\ \x84\x85\x8a\x85\x87\x8c\x83\x86\x8a\x80\x83\x87\x7f\x82\x86\x80\ \x83\x87\x72\x75\x7a\x6b\x6e\x73\x77\x7a\x7e\x79\x7c\x81\x76\x7a\ \x80\x77\x7b\x80\x76\x7a\x7f\x71\x78\x7d\x71\x77\x7c\x70\x76\x7c\ \x6e\x74\x7b\x6d\x74\x7b\x6b\x72\x7a\x6b\x72\x7a\x6c\x73\x7b\x68\ \x71\x79\x4e\x55\x61\x26\x2a\x34\x0a\x09\x0f\x21\x25\x2d\x5c\x65\ \x6f\x5a\x63\x6f\x3b\x42\x4e\x26\x2b\x36\x00\x00\x00\xa4\x9f\xa0\ \xa4\xa1\xa1\xa4\xa0\xa1\xa6\xa2\xa3\xa8\xa3\xa5\xaa\xa5\xa6\xab\ \xa5\xa6\xac\xa7\xa8\xae\xa9\xa9\xad\xa8\xa6\xb0\xaa\xab\xaf\xaa\ \xab\xae\xaa\xa9\xb3\xad\xae\xb5\xaf\xb1\xb6\xb0\xb1\xb5\xaf\xb0\ \xb5\xaf\xb2\xb8\xb2\xb4\xb7\xb1\xb3\xb6\xaf\xb2\xbd\xb6\xb8\xc1\ \xbb\xbc\xc2\xbc\xbc\xc4\xbd\xbd\xc6\xbf\xbf\xc6\xc0\xbf\xc8\xc2\ \xc1\xca\xc3\xc2\xcb\xc4\xc5\xc9\xc1\xc1\xcb\xc3\xc3\xcc\xc4\xc4\ \xce\xc7\xc7\xcf\xc8\xc8\xcf\xc8\xc8\xd1\xc9\xc8\xcf\xc7\xc7\xd0\ \xc8\xc8\xd2\xca\xca\xd4\xcc\xcc\xd6\xce\xce\xd6\xcf\xcd\xd5\xce\ \xcc\xd6\xce\xcc\xd5\xcc\xca\xd5\xcb\xc9\xd4\xca\xc8\xd4\xcb\xc7\ \xd6\xcc\xc8\xd5\xcc\xc8\xd7\xce\xcb\xd8\xd0\xcd\xd9\xd0\xcd\xdb\ \xd2\xcf\xdc\xd3\xd1\xd7\xd0\xcd\xd2\xc7\xc3\xc5\xb4\xaf\xbc\xa7\ \x9f\xb6\x9e\x95\xb7\xa0\x97\xba\xa6\x9e\xbe\xaa\xa2\xc3\xb1\xac\ \xc9\xbb\xb8\xcf\xc3\xc1\xd8\xd0\xcf\xdc\xd6\xd6\xdc\xd7\xd5\xdc\ \xd6\xd4\xdb\xd6\xd2\xdb\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd2\xdd\xd6\ \xd3\xdd\xd6\xd3\xde\xd8\xd5\xde\xd8\xd5\xdc\xd7\xd4\xda\xd4\xd3\ \xd6\xcf\xcc\xd3\xc8\xc5\xcd\xc1\xbd\xcc\xbe\xb9\xc4\xb2\xac\xc1\ \xac\xa6\xbd\xa9\xa0\xbd\xa8\xa1\xba\xa4\x9d\xba\xa4\x9d\xb9\xa1\ \x9b\xb8\xa2\x9c\xb7\xa1\x98\xb5\xa0\x99\xb5\xa2\x9a\xb4\xa2\x98\ \xb2\x9f\x93\x80\x5a\x46\xce\xc6\xc3\xca\xc3\xc0\xc8\xc1\xbf\xc4\ \xbe\xbc\xc5\xbe\xbc\xc1\xbb\xb9\xbf\xb8\xb8\xbb\xb5\xb4\xb8\xb2\ \xb0\xb3\xad\xac\xaf\xa8\xa7\xab\xa3\xa3\xa5\x9f\x9f\x9c\x98\x97\ \x94\x90\x90\x8d\x89\x89\x81\x7f\x7e\x74\x73\x73\x69\x69\x69\x5b\ \x5d\x5d\x4b\x4f\x50\x33\x3a\x3a\x15\x1b\x1e\x02\x04\x06\x00\x00\ \x00\x10\x0f\x11\x37\x38\x3b\x55\x57\x58\x65\x65\x65\x70\x6f\x71\ \x77\x76\x78\x7a\x7c\x7d\x81\x82\x84\x83\x85\x88\x83\x85\x88\x84\ \x87\x8b\x82\x85\x89\x80\x83\x87\x7f\x82\x86\x7e\x81\x85\x68\x6b\ \x70\x72\x76\x7b\x7a\x7d\x82\x77\x7b\x80\x77\x7b\x80\x75\x79\x7d\ \x75\x7a\x7f\x72\x78\x7e\x70\x76\x7b\x70\x78\x7d\x6e\x75\x7c\x6d\ \x74\x7b\x6b\x73\x7a\x6a\x72\x7a\x6a\x72\x7a\x66\x6f\x77\x4b\x52\ \x5c\x31\x35\x40\x1e\x21\x2b\x40\x46\x52\x62\x6b\x78\x63\x6c\x77\ \x51\x5a\x67\x36\x3e\x4b\x00\x00\x00\xa7\xa3\xa3\xa7\xa3\xa3\xa4\ \x9f\xa1\xa6\xa1\xa2\xa9\xa4\xa5\xac\xa7\xa7\xae\xa9\xaa\xae\xa9\ \xaa\xae\xa9\xa8\xb1\xac\xab\xb0\xaa\xa9\xae\xaa\xa9\xaf\xaa\xa9\ \xb3\xad\xac\xb4\xae\xaf\xb4\xae\xb0\xb5\xaf\xb0\xb8\xb2\xb3\xbb\ \xb5\xb7\xb9\xb3\xb4\xb5\xaf\xb0\xba\xb4\xb4\xbe\xb8\xb9\xbf\xb9\ \xb9\xc4\xbd\xbb\xc5\xbc\xbc\xc7\xbf\xbf\xca\xc3\xc2\xc9\xc3\xc2\ \xc8\xc1\xc1\xc9\xc2\xc2\xca\xc4\xc3\xca\xc4\xc3\xcd\xc7\xc6\xcf\ \xc9\xc9\xcf\xca\xc9\xcf\xc7\xc7\xd0\xc9\xc9\xd1\xca\xca\xd2\xca\ \xca\xd2\xca\xca\xd4\xcc\xcb\xd3\xcc\xc9\xd4\xcd\xcb\xd6\xcf\xcd\ \xd5\xce\xcc\xd6\xcd\xca\xd6\xcd\xca\xd6\xcd\xcb\xd6\xce\xcb\xd5\ \xcd\xca\xd6\xcd\xca\xd7\xcf\xcc\xd7\xce\xcb\xd6\xcd\xca\xd8\xcf\ \xcc\xd7\xcf\xcc\xd7\xcf\xcc\xd8\xd0\xcd\xd9\xd2\xcf\xd6\xcc\xc9\ \xcf\xc2\xbd\xc6\xb5\xb0\xbd\xa9\xa1\xbc\xa6\xa0\xbd\xa6\xa1\xb9\ \xa1\x9d\xb7\x9f\x96\xbc\xa6\x9d\xc0\xae\xa8\xc4\xb5\xaf\xcf\xc4\ \xbf\xd5\xce\xc9\xd6\xd0\xcd\xd7\xd3\xd0\xd7\xd1\xce\xd6\xd0\xcd\ \xd5\xd0\xcd\xd4\xcf\xcc\xd3\xce\xcd\xd3\xce\xce\xd2\xce\xcc\xd1\ \xcd\xcc\xd0\xcd\xcb\xcf\xcc\xc9\xcf\xca\xc7\xcf\xc9\xc7\xcf\xca\ \xc7\xcd\xc9\xc7\xcb\xc6\xc3\xcc\xc7\xc4\xca\xc5\xc3\xc8\xc2\xc0\ \xc6\xc0\xbe\xc6\xc0\xbe\xc5\xc0\xbe\xc4\xbf\xbe\xb2\xa6\xa1\x9f\ \x8a\x85\xbe\xb6\xb4\xbd\xb5\xb3\xb9\xb4\xb2\xb7\xb1\xb0\xb5\xaf\ \xaf\xb3\xad\xad\xb0\xaa\xaa\xad\xa7\xa6\xa7\xa1\x9f\xa4\x9e\x9d\ \x9f\x99\x97\x98\x92\x91\x95\x90\x90\x8d\x89\x89\x84\x81\x81\x7b\ \x78\x79\x71\x6f\x6f\x64\x64\x64\x5b\x5c\x5c\x4f\x51\x52\x3d\x42\ \x42\x23\x2a\x2b\x0c\x10\x11\x00\x00\x01\x00\x00\x00\x1a\x1a\x1c\ \x3e\x40\x41\x55\x57\x57\x61\x61\x61\x6c\x6b\x6c\x72\x72\x74\x79\ \x7b\x7c\x7e\x80\x81\x81\x83\x85\x82\x85\x88\x82\x86\x88\x81\x84\ \x87\x80\x82\x86\x7f\x81\x85\x77\x7a\x7d\x64\x67\x6a\x76\x7a\x7f\ \x7b\x7f\x83\x76\x7a\x7f\x78\x7c\x80\x76\x79\x7e\x75\x7a\x7f\x71\ \x77\x7d\x6f\x76\x7c\x70\x79\x7e\x70\x78\x7e\x6d\x74\x7b\x6a\x73\ \x7a\x6a\x72\x7a\x69\x71\x7a\x66\x6e\x77\x57\x60\x69\x3b\x40\x4b\ \x3a\x41\x4b\x5c\x65\x71\x66\x6f\x7a\x64\x6d\x79\x5e\x68\x74\x4d\ \x58\x65\x00\x00\x00\xa9\xa5\xa5\xa7\xa3\xa2\xa5\xa1\xa1\xa5\xa1\ \xa1\xab\xa6\xa7\xac\xa8\xa8\xae\xa9\xaa\xb0\xab\xab\xae\xa9\xa9\ \xb1\xad\xad\xae\xaa\xaa\xad\xa8\xa8\xb4\xaf\xaf\xb4\xaf\xaf\xb4\ \xaf\xaf\xb2\xad\xac\xb3\xad\xad\xb5\xaf\xb0\xba\xb4\xb5\xba\xb4\ \xb5\xba\xb4\xb5\xbe\xb8\xb9\xbe\xb9\xb9\xbe\xb8\xb8\xc4\xbd\xbb\ \xc2\xbb\xb9\xc6\xbe\xbd\xc8\xc1\xc0\xc7\xc0\xc0\xc6\xbe\xbe\xc8\ \xc1\xc1\xc9\xc4\xc4\xcb\xc5\xc5\xce\xc8\xc7\xce\xc8\xc7\xce\xc8\ \xc8\xce\xc6\xc6\xcf\xc8\xc8\xd0\xcb\xca\xd1\xca\xc9\xd1\xc9\xc8\ \xd1\xca\xc8\xd1\xc9\xc7\xd2\xc9\xc6\xd4\xcd\xca\xd4\xcc\xc9\xd3\ \xcb\xc8\xd3\xca\xc8\xd4\xcb\xc9\xd4\xcb\xc9\xd4\xcd\xca\xd3\xcc\ \xc9\xd2\xcc\xc9\xd4\xcc\xc9\xd1\xc9\xc6\xd3\xcb\xc8\xd3\xcb\xc8\ \xd2\xc9\xc6\xd3\xca\xc7\xd2\xca\xc7\xd4\xcc\xc9\xd3\xca\xc8\xd3\ \xcb\xc8\xd2\xcb\xc7\xcf\xc8\xc4\xcc\xc0\xbe\xc4\xb7\xb3\xbb\xab\ \xa3\xba\xa5\x9d\xb8\xa3\x9a\xb3\x9b\x90\xb4\x9a\x90\xb3\x9a\x90\ \xb4\x9d\x94\xb3\x9f\x97\xb9\xa9\xa3\xc0\xb4\xaf\xc6\xbd\xb9\xc8\ \xc2\xbf\xc9\xc4\xc0\xc7\xc5\xc2\xc7\xc6\xc3\xc6\xc4\xc1\xc4\xc0\ \xbf\xc2\xbf\xbb\xbe\xba\xb8\xbe\xb9\xb7\xbd\xb9\xb8\xbd\xb9\xb7\ \xbc\xb9\xb6\xba\xb7\xb4\xba\xb6\xb4\xb8\xb5\xb3\xb6\xb3\xb2\xb4\ \xb1\xb0\xb3\xb0\xae\xb5\xb3\xb1\x87\x74\x6c\xa7\x9d\x9a\xac\xa5\ \xa4\xac\xa5\xa3\xa8\xa3\xa1\xa6\xa0\x9f\xa4\x9e\x9e\xa0\x9b\x9b\ \x9e\x98\x98\x99\x94\x93\x94\x8f\x8d\x91\x8c\x8a\x8c\x86\x85\x87\ \x82\x81\x82\x7d\x7c\x7b\x77\x76\x73\x71\x6f\x6a\x68\x68\x61\x60\ \x60\x56\x56\x56\x4d\x4f\x4f\x40\x44\x44\x2f\x33\x34\x17\x1c\x1e\ \x04\x07\x08\x00\x00\x00\x06\x06\x06\x24\x24\x26\x42\x41\x42\x51\ \x51\x52\x5b\x5b\x5b\x66\x65\x66\x6f\x70\x72\x76\x78\x7a\x7b\x7e\ \x7e\x7f\x82\x84\x80\x83\x85\x82\x85\x86\x80\x83\x84\x7f\x82\x86\ \x80\x82\x85\x6b\x6f\x70\x6b\x6f\x6e\x7a\x7d\x80\x7a\x7f\x83\x76\ \x7a\x7f\x76\x7a\x7f\x76\x7b\x80\x74\x79\x7e\x72\x78\x7e\x6e\x76\ \x7c\x70\x78\x7f\x6f\x77\x7d\x6d\x75\x7c\x6c\x74\x7b\x6b\x73\x7b\ \x69\x70\x79\x67\x6f\x78\x5c\x65\x6e\x46\x4f\x59\x51\x59\x63\x61\ \x6a\x75\x63\x6c\x76\x63\x6d\x77\x63\x6d\x77\x5b\x66\x73\x00\x00\ \x00\xa9\xa4\xa5\xa7\xa3\xa3\xa7\xa2\xa2\xaa\xa5\xa6\xaa\xa5\xa5\ \xaa\xa6\xa5\xae\xaa\xaa\xb0\xab\xac\xaf\xaa\xaa\xb3\xae\xaf\xae\ \xa9\xa9\xaf\xa9\xaa\xb2\xad\xae\xb3\xad\xad\xb7\xb2\xb1\xb1\xac\ \xab\xb6\xb0\xaf\xb7\xb1\xb1\xb8\xb1\xb1\xba\xb4\xb5\xbd\xb8\xb8\ \xbf\xb9\xb9\xc2\xbd\xbc\xc1\xba\xba\xc3\xbc\xb9\xc2\xba\xb8\xc3\ \xba\xb7\xc5\xbd\xbb\xc6\xbf\xbd\xc4\xbd\xbc\xc7\xc1\xc0\xc7\xc1\ \xc1\xc9\xc4\xc3\xca\xc4\xc3\xc9\xc2\xc2\xcc\xc6\xc5\xcb\xc5\xc5\ \xca\xc5\xc4\xcd\xc7\xc6\xcd\xc8\xc8\xce\xc7\xc5\xcf\xc7\xc7\xd0\ \xc8\xc6\xcd\xc5\xc2\xcf\xc6\xc3\xcf\xc6\xc4\xce\xc6\xc3\xcd\xc5\ \xc2\xcf\xc6\xc4\xce\xc7\xc5\xce\xc7\xc5\xcc\xc6\xc3\xcc\xc5\xc2\ \xcd\xc6\xc3\xcb\xc2\xc0\xcb\xc3\xc1\xcb\xc3\xc1\xcb\xc4\xc3\xc9\ \xc2\xbf\xc9\xc1\xbe\xc8\xc0\xbd\xc7\xbf\xbd\xc8\xbf\xbc\xc7\xc0\ \xbd\xc7\xbf\xbe\xc7\xc0\xbe\xc6\xc0\xbe\xc6\xc1\xbd\xc5\xbc\xb9\ \xc2\xb9\xb3\xbd\xb1\xab\xb8\xa9\xa2\xb6\xa5\x9f\xb5\xa4\x9d\xb0\ \x9d\x98\xac\x99\x94\xa5\x90\x89\xa2\x8c\x84\xa1\x8a\x80\x9e\x86\ \x7c\x9d\x87\x7f\x9e\x8b\x85\x9f\x90\x8b\x9f\x93\x8c\x9f\x93\x8d\ \xa2\x97\x93\xa5\x9d\x98\xa7\x9f\x9b\xa8\xa1\x9e\xa7\xa2\x9f\xa6\ \xa1\x9f\xa6\xa1\x9f\xa5\xa0\x9e\xa3\x9f\x9f\x9f\x9b\x99\x9d\x98\ \x97\x97\x91\x8e\x74\x61\x5a\x9a\x93\x91\x98\x92\x90\x97\x91\x90\ \x94\x8f\x8e\x91\x8c\x8b\x8f\x8a\x8a\x8c\x87\x87\x89\x84\x83\x85\ \x80\x7f\x81\x7d\x7b\x7d\x78\x77\x77\x73\x71\x74\x6f\x6e\x6f\x6a\ \x69\x68\x64\x63\x60\x5d\x5c\x5c\x5a\x59\x52\x50\x4f\x48\x47\x47\ \x3e\x40\x40\x31\x35\x36\x23\x26\x27\x1d\x1c\x19\x02\x03\x03\x00\ \x00\x00\x0e\x0e\x0f\x2b\x2a\x2b\x3d\x3d\x3d\x4b\x4a\x4a\x55\x55\ \x56\x5e\x5e\x5f\x69\x6b\x6b\x71\x73\x74\x76\x79\x7b\x7b\x7e\x7f\ \x7f\x82\x82\x81\x84\x85\x80\x83\x85\x7f\x82\x85\x7f\x81\x84\x66\ \x69\x6a\x72\x76\x78\x79\x7d\x80\x78\x7d\x80\x78\x7c\x81\x76\x7c\ \x81\x75\x7b\x80\x72\x78\x7d\x72\x78\x7d\x6f\x77\x7d\x70\x77\x7e\ \x6d\x76\x7d\x6e\x75\x7d\x6b\x73\x7b\x67\x6f\x78\x67\x6f\x78\x68\ \x71\x7a\x61\x6a\x73\x5a\x63\x6c\x60\x69\x72\x64\x6d\x77\x63\x6c\ \x76\x63\x6d\x76\x64\x6e\x78\x63\x6d\x79\x00\x00\x00\xa5\xa1\xa1\ \xa5\xa2\xa1\xa9\xa4\xa4\xac\xa7\xa8\xa9\xa4\xa4\xab\xa7\xa6\xaf\ \xab\xab\xb1\xac\xad\xb1\xac\xad\xb4\xaf\xb0\xa9\xa4\xa4\xad\xa7\ \xa8\xb1\xab\xac\xb0\xaa\xaa\xb2\xad\xad\xb0\xab\xaa\xb3\xae\xae\ \xb6\xb0\xb1\xb6\xb0\xb0\xb7\xb0\xb0\xba\xb4\xb4\xbb\xb6\xb5\xc1\ \xbb\xb9\xc1\xba\xb7\xbe\xb8\xb3\xc3\xbc\xb9\xc2\xb9\xb6\xc1\xb9\ \xb6\xc2\xbb\xb8\xc0\xb9\xb7\xc4\xbe\xbc\xc6\xc0\xbf\xc5\xbd\xbd\ \xc4\xbe\xbe\xc6\xc0\xc0\xc8\xc3\xc2\xc6\xc1\xc1\xc6\xc0\xc0\xc9\ \xc1\xc2\xc8\xc2\xc2\xc8\xc1\xc1\xc9\xc2\xc1\xc7\xc1\xbe\xc7\xbf\ \xbc\xc8\xbf\xbd\xc8\xc0\xbf\xc6\xbf\xbe\xc5\xbe\xbc\xc5\xbe\xbc\ \xc5\xbe\xbc\xc6\xbe\xbd\xc5\xbe\xbc\xc3\xbd\xba\xc2\xbb\xb8\xc1\ \xb9\xb6\xc0\xb9\xb7\xc0\xb9\xb5\xc0\xb9\xb6\xbf\xb9\xb6\xbf\xb7\ \xb4\xbd\xb5\xb2\xba\xb2\xaf\xba\xb2\xaf\xba\xb3\xaf\xb8\xb1\xaf\ \xb8\xb0\xaf\xb8\xb1\xaf\xb6\xae\xab\xb6\xaf\xac\xb5\xae\xaa\xb4\ \xad\xaa\xb4\xad\xa9\xb4\xad\xa9\xb2\xab\xa8\xb0\xa8\xa6\xac\xa5\ \xa1\xa7\x9d\x9a\xa4\x99\x94\xa2\x96\x91\x9e\x91\x8b\x9c\x8f\x8a\ \x99\x8d\x88\x96\x88\x83\x91\x82\x7c\x8d\x7e\x77\x88\x79\x71\x84\ \x73\x6d\x81\x70\x68\x82\x72\x6b\x80\x6f\x68\x7e\x6d\x68\x7b\x6a\ \x65\x79\x6a\x65\x77\x68\x63\x73\x64\x5d\x75\x67\x61\x71\x62\x5c\ \x7b\x70\x6c\x84\x80\x7e\x83\x7e\x7c\x81\x7d\x7c\x7e\x7b\x79\x7c\ \x78\x77\x7a\x76\x76\x77\x73\x72\x74\x70\x6f\x70\x6c\x6b\x6e\x69\ \x68\x68\x65\x63\x65\x61\x60\x60\x5d\x5c\x5b\x58\x56\x56\x53\x52\ \x4f\x4d\x4c\x53\x4e\x48\x4f\x49\x41\x3c\x3b\x39\x32\x33\x33\x29\ \x2a\x29\x3a\x32\x28\x22\x1d\x16\x06\x05\x03\x0c\x0a\x07\x1f\x1b\ \x18\x2b\x2a\x2b\x39\x38\x39\x44\x44\x45\x4f\x4e\x50\x59\x5a\x5b\ \x62\x63\x64\x6c\x6e\x6f\x74\x76\x79\x7a\x7c\x7e\x7e\x7f\x82\x7e\ \x81\x82\x7e\x82\x83\x7e\x82\x84\x75\x78\x7b\x69\x6d\x6e\x76\x7a\ \x7e\x79\x7d\x82\x77\x7c\x7f\x79\x7d\x82\x76\x7a\x80\x72\x78\x7d\ \x71\x77\x7c\x72\x78\x7d\x71\x79\x80\x6f\x76\x7d\x6e\x76\x7d\x6d\ \x74\x7d\x6b\x73\x7c\x68\x71\x7a\x66\x6f\x78\x66\x6e\x77\x64\x6d\ \x76\x62\x6b\x74\x64\x6d\x76\x62\x6b\x75\x62\x6c\x76\x62\x6c\x76\ \x64\x6e\x78\x5e\x6a\x76\x00\x00\x00\xa5\xa0\xa0\xa6\xa2\xa1\xab\ \xa6\xa5\xad\xa7\xa7\xa9\xa5\xa4\xac\xa8\xa7\xac\xa8\xa7\xab\xa6\ \xa7\xad\xa8\xa9\xaf\xaa\xab\xaa\xa5\xa6\xad\xa7\xa8\xae\xa8\xa9\ \xad\xa7\xa8\xad\xa8\xa9\xad\xa9\xa8\xb2\xac\xad\xb6\xb1\xb1\xb6\ \xb1\xb0\xb4\xae\xad\xb7\xb0\xaf\xb8\xb2\xb0\xb8\xb3\xb1\xbb\xb4\ \xb1\xb7\xb1\xad\xbd\xb6\xb5\xbe\xb7\xb4\xbd\xb7\xb4\xbb\xb5\xb2\ \xba\xb2\xaf\xbc\xb5\xb3\xbe\xb7\xb7\xbd\xb6\xb5\xbd\xb7\xb5\xbe\ \xb8\xb7\xc0\xb9\xb9\xbf\xb9\xb9\xbe\xb9\xb8\xc0\xbb\xba\xbf\xb8\ \xb7\xbf\xb8\xb8\xbf\xb8\xb7\xbd\xb6\xb5\xbd\xb6\xb4\xbe\xb5\xb5\ \xbe\xb7\xb7\xbc\xb6\xb6\xbb\xb4\xb4\xba\xb4\xb3\xb9\xb2\xb2\xb9\ \xb2\xb2\xb8\xb1\xb0\xb6\xb0\xae\xb4\xad\xaa\xb2\xaa\xa7\xb0\xa9\ \xa6\xb1\xaa\xa6\xb0\xaa\xa7\xb0\xaa\xa8\xaf\xa8\xa6\xae\xa7\xa5\ \xac\xa7\xa4\xaa\xa4\xa2\xa9\xa3\xa0\xa7\xa2\x9f\xa7\xa1\x9e\xa6\ \x9f\x9c\xa5\x9e\x9c\xa2\x9c\x9a\xa1\x9b\x98\xa0\x99\x96\xa0\x99\ \x96\x9f\x9a\x97\x9f\x99\x96\x9d\x97\x94\x9c\x96\x93\x9a\x94\x92\ \x99\x93\x90\x96\x91\x8e\x93\x8f\x8c\x92\x8d\x8a\x8f\x89\x86\x8c\ \x86\x84\x88\x83\x80\x87\x81\x7e\x84\x7e\x7b\x82\x7b\x78\x81\x7a\ \x77\x7f\x78\x75\x7d\x76\x73\x7b\x75\x72\x79\x73\x71\x77\x72\x6f\ \x76\x6f\x6d\x73\x6c\x6a\x71\x6b\x68\x6f\x69\x67\x72\x6d\x6b\x70\ \x6c\x6a\x6e\x6a\x69\x6c\x68\x66\x6a\x66\x65\x67\x64\x63\x65\x62\ \x62\x63\x60\x5e\x5f\x5d\x5b\x5e\x5a\x59\x58\x54\x53\x53\x50\x4e\ \x50\x4e\x4c\x4e\x49\x46\x4c\x47\x44\x4c\x46\x40\x4f\x47\x3e\x53\ \x48\x3d\x53\x47\x3a\x47\x3e\x34\x3c\x36\x2f\x30\x2a\x23\x49\x39\ \x29\x1d\x17\x10\x1a\x13\x0c\x2f\x24\x18\x37\x2d\x23\x2a\x29\x2a\ \x34\x34\x34\x3f\x3e\x3e\x47\x47\x48\x52\x53\x53\x5d\x5f\x5f\x67\ \x69\x6b\x72\x74\x76\x79\x7b\x7c\x7c\x7f\x82\x7d\x80\x81\x7e\x82\ \x83\x7e\x82\x83\x6b\x6f\x71\x6d\x71\x74\x7b\x7f\x83\x79\x7d\x81\ \x77\x7a\x7f\x77\x7c\x7f\x74\x79\x7d\x72\x78\x7d\x70\x76\x7b\x6f\ \x75\x7a\x6d\x75\x7c\x6f\x77\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x73\ \x7c\x69\x72\x7b\x68\x71\x7a\x65\x6e\x77\x66\x6f\x78\x64\x6d\x76\ \x64\x6d\x76\x61\x6a\x73\x62\x6c\x75\x62\x6c\x76\x61\x6d\x76\x53\ \x61\x6c\x00\x00\x00\xa8\xa3\xa3\xa8\xa3\xa3\xa9\xa4\xa4\xac\xa7\ \xa8\xaa\xa4\xa5\xad\xa8\xa8\xac\xa9\xa9\xaa\xa5\xa4\xac\xa7\xa6\ \xa7\xa3\xa4\xa7\xa1\xa2\xad\xa7\xa8\xac\xa6\xa7\xab\xa5\xa6\xa9\ \xa4\xa4\xa9\xa4\xa4\xae\xaa\xaa\xaf\xaa\xa9\xb0\xa9\xa9\xaf\xa9\ \xaa\xaf\xaa\xaa\xb3\xae\xad\xb2\xae\xad\xb1\xab\xa8\xb2\xaa\xa6\ \xb3\xac\xa9\xb4\xad\xaa\xb5\xad\xad\xb4\xad\xac\xb2\xac\xa8\xb5\ \xaf\xac\xb7\xb0\xae\xb4\xae\xac\xb4\xad\xab\xb5\xae\xad\xb4\xae\ \xad\xb4\xae\xad\xb4\xae\xad\xb3\xad\xac\xb3\xac\xac\xb2\xab\xab\ \xb3\xac\xab\xb0\xaa\xa9\xb0\xaa\xa8\xaf\xa9\xa9\xae\xa8\xa8\xae\ \xa9\xa9\xab\xa6\xa6\xaa\xa4\xa4\xaa\xa3\xa4\xa8\xa2\xa2\xa6\xa0\ \xa0\xa5\xa0\x9e\xa3\x9d\x9c\xa1\x9b\x98\xa0\x99\x97\x9e\x98\x96\ \x9e\x99\x96\x9c\x97\x95\x9c\x97\x95\x9a\x95\x93\x99\x95\x93\x97\ \x92\x90\x96\x92\x90\x94\x8f\x8d\x93\x8e\x8c\x90\x8c\x8a\x8f\x8a\ \x88\x8e\x88\x86\x8c\x86\x84\x8b\x86\x83\x8a\x84\x82\x8a\x85\x82\ \x89\x84\x81\x89\x83\x81\x86\x81\x7f\x84\x7f\x7d\x82\x7e\x7c\x80\ \x7c\x79\x7e\x7a\x77\x7c\x78\x76\x79\x75\x72\x77\x73\x70\x75\x71\ \x6f\x74\x6f\x6d\x71\x6d\x6a\x70\x6c\x6a\x6e\x6b\x69\x6d\x6a\x68\ \x6c\x68\x67\x6a\x66\x64\x68\x65\x63\x65\x63\x61\x65\x61\x5f\x63\ \x5f\x5d\x5e\x5a\x58\x59\x55\x54\x59\x56\x52\x5c\x56\x52\x5f\x57\ \x50\x5b\x54\x4d\x5e\x56\x4f\x5b\x52\x4b\x56\x4d\x45\x54\x4b\x41\ \x50\x46\x3e\x4d\x42\x39\x48\x3d\x34\x42\x38\x2f\x45\x3a\x2f\x44\ \x38\x2c\x46\x39\x2c\x4a\x3b\x2c\x54\x42\x2f\x55\x42\x2f\x57\x43\ \x2f\x4e\x3d\x2a\x4e\x3c\x2a\x33\x29\x1e\x2e\x24\x1a\x34\x27\x1a\ \x3f\x2f\x1f\x43\x33\x24\x4f\x3e\x2d\x49\x3c\x2e\x3a\x34\x2f\x39\ \x35\x31\x41\x42\x42\x4c\x4d\x4d\x58\x59\x5a\x63\x65\x66\x6e\x71\ \x71\x76\x78\x78\x79\x7b\x7c\x7b\x7e\x7f\x7c\x80\x81\x7a\x7e\x7f\ \x6a\x6d\x70\x74\x79\x7c\x7e\x83\x87\x7c\x80\x85\x79\x7d\x81\x75\ \x7a\x7e\x75\x7a\x7f\x72\x78\x7d\x72\x77\x7c\x6f\x76\x7b\x70\x77\ \x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x74\x7d\x6b\x72\x7b\x68\x70\x79\ \x65\x6e\x77\x65\x6e\x77\x66\x6f\x78\x66\x6f\x78\x65\x6e\x77\x64\ \x6d\x76\x60\x6b\x73\x62\x6c\x75\x5b\x67\x71\x37\x43\x4d\x00\x00\ \x00\xa6\xa2\xa2\xa5\xa0\xa1\xa5\xa0\xa1\xa7\xa2\xa3\xa8\xa4\xa5\ \xa9\xa4\xa4\xa8\xa3\xa2\xa4\xa1\xa0\xa6\xa2\xa2\xa3\x9e\x9e\xa1\ \x9b\x9b\xa5\xa0\xa1\xa6\xa1\xa2\xa5\x9f\xa0\xa2\x9d\x9d\xa2\x9c\ \x9b\xa8\xa3\xa3\xa8\xa2\xa2\xa5\xa0\xa0\xa6\xa0\xa0\xa8\xa3\xa2\ \xaa\xa6\xa6\xa9\xa5\xa5\xa6\xa0\x9d\xa8\xa1\x9e\xaa\xa3\xa3\xa9\ \xa2\x9f\xa7\xa0\x9f\xa7\xa0\x9f\xa9\xa2\xa0\xa9\xa2\xa0\xa9\xa3\ \xa2\xa8\xa2\xa1\xa8\xa2\x9f\xa7\xa1\x9e\xa6\x9f\x9e\xa6\xa0\x9f\ \xa4\xa0\x9f\xa3\x9e\x9d\xa3\x9d\x9b\xa2\x9d\x9d\xa2\x9c\x9c\xa1\ \x9b\x99\xa0\x9b\x9a\x9e\x98\x98\x9b\x96\x96\x9b\x96\x96\x99\x95\ \x94\x98\x94\x93\x95\x93\x92\x95\x90\x90\x94\x8e\x8e\x91\x8d\x8b\ \x8e\x8a\x89\x8e\x88\x86\x8c\x86\x84\x8c\x85\x84\x8a\x86\x84\x87\ \x83\x81\x86\x82\x80\x84\x80\x7e\x83\x7f\x7d\x81\x7d\x7b\x80\x7c\ \x7b\x7e\x7b\x79\x7d\x79\x77\x7b\x77\x75\x79\x76\x74\x78\x73\x72\ \x77\x74\x72\x77\x73\x71\x76\x71\x6f\x75\x70\x6e\x74\x70\x6d\x73\ \x6f\x6e\x71\x6d\x6b\x70\x6c\x6b\x6d\x69\x67\x6b\x68\x66\x69\x66\ \x64\x66\x62\x61\x65\x62\x5f\x60\x5d\x5b\x5b\x57\x56\x55\x52\x50\ \x53\x4f\x4d\x53\x4e\x4b\x52\x4d\x49\x54\x4e\x48\x56\x4f\x48\x59\ \x50\x48\x58\x4f\x46\x57\x4d\x43\x59\x4d\x41\x5e\x50\x41\x53\x46\ \x39\x54\x46\x38\x52\x43\x35\x4f\x41\x32\x4f\x40\x2f\x42\x34\x27\ \x45\x37\x28\x3f\x30\x22\x3b\x2c\x1d\x3c\x2d\x1e\x36\x2a\x1b\x3e\ \x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3a\x2c\x1d\x31\x24\x18\x35\x28\ \x1a\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x2d\x22\x15\x29\x1f\x14\ \x2f\x24\x17\x37\x29\x1b\x44\x33\x22\x3c\x2e\x1e\x4c\x39\x26\x5a\ \x44\x2d\x5e\x47\x2f\x68\x4e\x33\x52\x41\x2e\x3e\x34\x29\x3d\x3e\ \x3e\x47\x48\x49\x54\x56\x56\x5f\x60\x62\x69\x6b\x6c\x72\x74\x75\ \x7a\x7c\x7c\x7a\x7d\x7e\x7b\x80\x80\x71\x74\x77\x6a\x6c\x71\x79\ \x7d\x80\x7d\x82\x86\x79\x7e\x82\x79\x7e\x81\x78\x7c\x80\x73\x78\ \x7d\x71\x77\x7c\x71\x77\x7c\x6f\x75\x7b\x71\x77\x7e\x70\x76\x7d\ \x6d\x74\x7c\x6b\x73\x7c\x68\x70\x79\x66\x6f\x78\x65\x6e\x77\x65\ \x6d\x76\x63\x6c\x75\x63\x6c\x75\x66\x6f\x78\x64\x6e\x77\x63\x6e\ \x76\x61\x6b\x74\x58\x62\x6c\x1e\x25\x2d\x00\x00\x00\xa6\xa2\xa2\ \xa3\x9e\x9e\xa3\x9e\x9f\xa4\x9f\xa0\xa5\xa0\x9f\xa4\x9f\x9f\xa1\ \x9c\x9c\x9f\x9b\x99\x9f\x9a\x9a\x9b\x96\x96\x9b\x97\x96\x9b\x98\ \x96\x9a\x95\x96\x9c\x97\x97\x9b\x96\x97\x9a\x93\x93\x9c\x96\x96\ \x9b\x95\x95\x9b\x94\x94\x9b\x95\x95\x9b\x96\x95\x9b\x95\x95\x9b\ \x97\x96\x9c\x97\x96\x9d\x98\x97\x9c\x96\x96\x9c\x97\x96\x9a\x94\ \x91\x97\x91\x8e\x9a\x94\x92\x98\x93\x91\x99\x93\x91\x96\x90\x8e\ \x96\x90\x8e\x96\x91\x90\x95\x90\x8e\x94\x90\x8f\x93\x8d\x8d\x91\ \x8c\x8c\x8e\x8a\x88\x8e\x8a\x88\x8d\x88\x89\x8b\x87\x85\x8d\x85\ \x83\x8b\x84\x80\x87\x83\x81\x87\x82\x83\x85\x81\x81\x83\x7e\x7e\ \x82\x7d\x7d\x81\x7c\x7c\x7f\x7b\x7a\x7d\x79\x78\x7b\x76\x75\x7a\ \x75\x74\x77\x73\x71\x76\x72\x70\x76\x72\x71\x73\x6f\x6e\x73\x70\ \x6e\x70\x6d\x6b\x6f\x6c\x6a\x6e\x6b\x69\x6c\x68\x66\x6a\x66\x65\ \x69\x64\x63\x67\x63\x62\x65\x62\x61\x65\x61\x5f\x63\x5f\x5e\x60\ \x5d\x5b\x61\x5d\x59\x62\x5e\x5b\x63\x5d\x57\x5c\x56\x52\x57\x51\ \x4d\x60\x57\x4e\x5e\x55\x4a\x61\x56\x4b\x6b\x5c\x4d\x68\x57\x48\ \x5f\x50\x42\x56\x48\x3a\x4d\x40\x34\x4f\x41\x33\x4a\x3c\x2f\x47\ \x39\x2b\x3c\x31\x24\x37\x2d\x21\x39\x2e\x20\x3a\x2d\x1f\x3b\x2d\ \x1e\x3c\x2d\x1e\x39\x2b\x1d\x3f\x30\x20\x39\x2c\x1d\x3e\x2f\x20\ \x39\x2b\x1d\x30\x25\x18\x2b\x21\x16\x23\x1a\x11\x22\x19\x10\x19\ \x13\x0c\x1b\x15\x0d\x1d\x16\x0e\x1e\x17\x0e\x23\x1a\x11\x31\x24\ \x17\x36\x28\x1a\x2b\x20\x15\x1e\x17\x0f\x22\x19\x10\x2d\x21\x15\ \x30\x24\x17\x2a\x20\x14\x2b\x21\x15\x30\x24\x17\x26\x1d\x13\x26\ \x1d\x12\x24\x1b\x11\x22\x1a\x10\x32\x27\x19\x43\x32\x21\x37\x29\ \x1a\x4c\x39\x25\x64\x4b\x31\x50\x42\x34\x3a\x3a\x3b\x44\x45\x46\ \x50\x51\x52\x5d\x5e\x60\x67\x68\x69\x70\x72\x73\x76\x7a\x7c\x7b\ \x7e\x81\x7d\x80\x84\x6b\x6e\x72\x6d\x71\x74\x80\x84\x86\x7c\x80\ \x84\x7b\x7f\x83\x79\x7e\x81\x78\x7d\x80\x76\x7b\x7f\x74\x78\x7d\ \x73\x78\x7d\x71\x77\x7c\x6f\x75\x7d\x6f\x75\x7c\x6d\x74\x7b\x6b\ \x72\x7b\x69\x70\x79\x65\x6e\x77\x66\x6f\x78\x68\x71\x7a\x68\x71\ \x7a\x64\x6d\x76\x65\x6d\x76\x62\x6c\x75\x65\x70\x78\x63\x6d\x77\ \x54\x60\x6b\x1c\x23\x29\x00\x00\x00\xa7\xa2\xa3\xa5\xa1\xa2\xa3\ \x9e\x9f\x9e\x99\x99\x9e\x9a\x9a\x9d\x99\x98\x99\x96\x94\x97\x94\ \x92\x94\x90\x8f\x90\x8c\x8c\x92\x8d\x8d\x91\x8c\x8b\x91\x8d\x8d\ \x8e\x89\x89\x8c\x87\x86\x8e\x89\x89\x90\x8b\x8b\x8e\x88\x88\x8c\ \x87\x87\x8c\x86\x86\x8d\x87\x88\x8c\x87\x87\x8b\x86\x86\x88\x84\ \x82\x8c\x88\x86\x8b\x87\x85\x8c\x87\x86\x88\x84\x81\x87\x82\x80\ \x88\x83\x83\x89\x84\x84\x87\x82\x81\x84\x7e\x7d\x8b\x7f\x76\x81\ \x7d\x7b\x80\x7b\x79\x80\x7b\x7a\x7e\x79\x79\x7e\x79\x79\x7b\x77\ \x75\x7a\x76\x74\x79\x75\x73\x77\x73\x71\x79\x73\x6f\x77\x71\x6f\ \x73\x6f\x6f\x72\x6e\x6e\x70\x6c\x6c\x6f\x6b\x6b\x6d\x69\x68\x6b\ \x67\x67\x6a\x66\x66\x68\x65\x65\x66\x63\x62\x65\x63\x61\x63\x60\ \x5f\x63\x60\x5f\x61\x5e\x5d\x5f\x5c\x5b\x5b\x59\x56\x53\x51\x4f\ \x4e\x4b\x49\x50\x4c\x47\x53\x4d\x47\x54\x4c\x44\x5c\x51\x46\x60\ \x53\x46\x55\x4b\x40\x56\x4c\x42\x56\x4b\x41\x4f\x45\x3b\x55\x48\ \x3c\x4e\x43\x38\x4f\x43\x37\x4b\x3e\x32\x46\x39\x2b\x4a\x3a\x2a\ \x4e\x3c\x29\x48\x38\x26\x53\x3f\x2a\x4e\x3b\x27\x41\x31\x21\x3d\ \x2f\x1f\x3c\x2e\x1e\x3e\x30\x20\x3d\x2e\x1f\x39\x2b\x1c\x32\x26\ \x18\x2a\x20\x14\x24\x1b\x10\x2a\x1f\x14\x30\x23\x17\x27\x1d\x12\ \x21\x18\x0f\x1d\x15\x0d\x1c\x15\x0d\x1f\x17\x0f\x22\x1a\x11\x1e\ \x17\x0e\x22\x19\x10\x1f\x18\x0f\x2b\x21\x15\x24\x1b\x11\x27\x1e\ \x13\x28\x1e\x13\x2b\x20\x14\x29\x1f\x14\x35\x27\x19\x35\x28\x1a\ \x33\x27\x19\x29\x1f\x14\x21\x18\x0f\x28\x1e\x13\x32\x26\x18\x35\ \x28\x1a\x31\x25\x18\x30\x23\x16\x2e\x22\x16\x2e\x22\x16\x30\x24\ \x17\x28\x1e\x13\x26\x1d\x12\x37\x29\x1b\x29\x1f\x14\x32\x25\x18\ \x6f\x54\x38\x63\x51\x3c\x36\x37\x37\x41\x42\x43\x4e\x4f\x50\x5b\ \x5c\x5d\x67\x68\x69\x70\x71\x72\x74\x77\x79\x79\x7d\x80\x76\x7a\ \x7d\x66\x6a\x6d\x71\x75\x77\x7f\x82\x84\x7b\x7e\x81\x79\x7e\x80\ \x78\x7d\x80\x76\x7b\x7e\x73\x77\x7c\x73\x78\x7d\x73\x77\x7e\x6f\ \x75\x7b\x6d\x73\x7b\x6d\x73\x7b\x6c\x74\x7c\x6d\x74\x7d\x6a\x71\ \x7a\x69\x72\x7b\x6a\x72\x7b\x69\x71\x7a\x68\x71\x7a\x66\x6f\x78\ \x66\x6f\x78\x65\x70\x79\x65\x6e\x78\x65\x6f\x79\x51\x5c\x67\x18\ \x1e\x25\x00\x00\x00\xa4\xa1\xa1\xa2\x9f\x9f\x9d\x9a\x9b\x99\x94\ \x95\x98\x94\x95\x92\x8e\x8e\x8e\x8a\x8a\x89\x85\x84\x85\x81\x7f\ \x83\x80\x7f\x83\x7e\x7c\x80\x7d\x7b\x81\x7c\x7c\x7f\x7a\x79\x7e\ \x79\x78\x7e\x79\x77\x7d\x79\x77\x7c\x77\x77\x7a\x75\x75\x7b\x76\ \x76\x7c\x77\x76\x7a\x75\x74\x79\x73\x73\x75\x70\x6e\x77\x73\x71\ \x78\x73\x72\x76\x72\x71\x76\x71\x70\x76\x71\x6f\x77\x73\x72\x75\ \x71\x71\x74\x70\x6e\x72\x6d\x6c\x78\x6e\x68\x6f\x6b\x6a\x6d\x69\ \x68\x6b\x67\x66\x6a\x67\x67\x69\x66\x65\x68\x64\x63\x66\x63\x61\ \x64\x61\x60\x64\x60\x5f\x62\x5f\x5e\x61\x5e\x5e\x60\x5d\x5b\x5e\ \x5c\x5a\x5d\x5a\x59\x59\x56\x55\x53\x50\x4f\x4d\x4a\x48\x49\x46\ \x42\x4a\x45\x40\x55\x4b\x43\x59\x4d\x43\x55\x4a\x3e\x50\x44\x39\ \x4f\x43\x36\x60\x4f\x3e\x54\x45\x36\x48\x3b\x2d\x4f\x3f\x2f\x4b\ \x3b\x2c\x43\x35\x27\x3f\x32\x24\x3f\x31\x22\x3b\x2d\x1f\x36\x29\ \x1c\x38\x2c\x1f\x40\x32\x22\x41\x32\x22\x45\x35\x24\x36\x29\x1c\ \x37\x2a\x1c\x37\x2a\x1b\x36\x28\x1b\x2a\x20\x14\x2d\x22\x16\x2b\ \x20\x14\x2a\x1f\x14\x2c\x21\x15\x2f\x23\x16\x29\x1f\x14\x23\x1a\ \x11\x25\x1c\x12\x22\x19\x10\x27\x1e\x13\x2f\x24\x17\x35\x28\x19\ \x2e\x23\x16\x2d\x21\x15\x2c\x21\x15\x29\x1f\x13\x2a\x20\x14\x24\ \x1b\x11\x2b\x20\x15\x35\x28\x1a\x35\x28\x1a\x2c\x22\x15\x2d\x21\ \x15\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x37\x29\x1a\x2b\x20\x14\ \x2b\x21\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x34\ \x27\x19\x2d\x22\x15\x29\x1f\x13\x2a\x20\x14\x38\x2a\x1b\x37\x29\ \x1a\x31\x25\x17\x2f\x23\x16\x31\x25\x18\x3c\x2e\x1d\x2b\x20\x14\ \x21\x19\x10\x2f\x24\x17\x28\x1e\x13\x2a\x1f\x14\x52\x3f\x2a\x6e\ \x56\x3e\x33\x34\x34\x3e\x3f\x3f\x4c\x4d\x4e\x59\x5b\x5b\x66\x67\ \x68\x6d\x71\x71\x73\x77\x79\x77\x7a\x7e\x6c\x6e\x71\x68\x6b\x6e\ \x7c\x81\x83\x7c\x80\x81\x7a\x80\x81\x7a\x7f\x82\x75\x7a\x7d\x75\ \x79\x7e\x73\x78\x7d\x72\x78\x7e\x73\x78\x80\x6f\x75\x7d\x6f\x74\ \x7d\x6c\x73\x7c\x6c\x73\x7c\x6d\x74\x7d\x6b\x74\x7d\x68\x71\x7a\ \x66\x6f\x78\x66\x6f\x78\x66\x6f\x78\x67\x70\x7a\x65\x6f\x79\x63\ \x6d\x77\x63\x6d\x78\x5e\x69\x74\x45\x51\x5a\x20\x24\x2c\x00\x00\ \x00\xa1\x9d\x9d\x9d\x98\x99\x96\x92\x92\x90\x8c\x8d\x8b\x87\x88\ \x85\x82\x82\x80\x7e\x7e\x7b\x77\x77\x77\x73\x73\x75\x72\x71\x73\ \x6f\x6e\x6f\x6b\x6a\x70\x6c\x69\x6e\x6a\x68\x6f\x6a\x67\x6e\x6a\ \x68\x6b\x67\x66\x69\x66\x64\x6a\x65\x65\x68\x64\x64\x68\x64\x64\ \x66\x62\x61\x65\x60\x5f\x62\x5e\x5c\x66\x62\x60\x65\x61\x60\x64\ \x60\x5e\x63\x5f\x5d\x62\x5e\x5d\x63\x5f\x5d\x62\x5e\x5d\x61\x5d\ \x5c\x5f\x5b\x5a\x5d\x5a\x59\x5c\x59\x57\x5b\x58\x56\x59\x56\x56\ \x53\x50\x4f\x4e\x4b\x49\x48\x46\x43\x4b\x46\x42\x50\x49\x42\x5a\ \x4f\x44\x63\x54\x46\x64\x54\x43\x58\x49\x3b\x4e\x41\x33\x54\x44\ \x35\x4d\x3e\x30\x49\x3b\x2d\x40\x34\x27\x40\x32\x25\x3c\x2f\x22\ \x38\x2c\x1e\x37\x2a\x1c\x2c\x22\x16\x2b\x20\x15\x2a\x20\x15\x37\ \x2a\x1b\x37\x29\x1b\x3b\x2c\x1d\x3c\x2d\x1e\x37\x29\x1b\x2e\x22\ \x16\x26\x1d\x12\x23\x1a\x11\x1d\x16\x0e\x1f\x17\x0e\x1f\x17\x0f\ \x25\x1c\x12\x31\x25\x18\x37\x29\x1a\x2b\x1f\x14\x2f\x24\x17\x31\ \x24\x17\x39\x2b\x1c\x2a\x20\x14\x22\x1a\x11\x25\x1c\x12\x2a\x20\ \x14\x2f\x23\x17\x36\x29\x1a\x31\x25\x18\x28\x1e\x14\x2d\x22\x15\ \x2f\x23\x17\x36\x29\x1a\x3a\x2b\x1c\x38\x2a\x1b\x31\x25\x17\x32\ \x25\x18\x2f\x23\x17\x2b\x21\x15\x2c\x22\x15\x2c\x21\x14\x2f\x23\ \x16\x34\x27\x19\x35\x28\x19\x33\x27\x18\x2e\x22\x16\x31\x25\x17\ \x32\x25\x18\x2b\x21\x14\x35\x28\x19\x22\x1a\x10\x22\x1a\x11\x27\ \x1d\x13\x27\x1d\x13\x26\x1d\x13\x29\x1f\x14\x31\x24\x17\x33\x26\ \x18\x34\x27\x19\x2e\x22\x16\x34\x26\x19\x33\x26\x18\x33\x27\x19\ \x34\x27\x19\x3a\x2b\x1b\x3c\x2d\x1d\x2a\x20\x14\x22\x1a\x10\x28\ \x1f\x13\x27\x1d\x12\x29\x1f\x14\x31\x25\x18\x66\x4f\x37\x33\x34\ \x34\x3d\x3e\x3e\x4a\x4b\x4c\x57\x58\x58\x63\x64\x65\x6c\x6f\x70\ \x72\x76\x76\x76\x79\x7c\x6a\x6c\x70\x6d\x70\x72\x7e\x82\x85\x7d\ \x80\x82\x7b\x80\x82\x7a\x7f\x83\x74\x79\x7d\x74\x79\x7e\x74\x7a\ \x7f\x72\x78\x7d\x73\x79\x7f\x70\x76\x7d\x6f\x74\x7d\x6f\x75\x7e\ \x6d\x73\x7c\x6b\x72\x7b\x6b\x73\x7c\x69\x72\x7b\x67\x70\x7a\x65\ \x6e\x78\x6a\x73\x7c\x66\x6f\x79\x64\x6e\x78\x63\x6d\x77\x64\x6d\ \x79\x5c\x67\x71\x40\x49\x53\x26\x2c\x36\x00\x00\x00\x9f\x9a\x9b\ \x98\x94\x95\x8f\x8c\x8c\x85\x82\x82\x7f\x7c\x7c\x79\x77\x77\x71\ \x6e\x6e\x6b\x68\x67\x67\x65\x64\x65\x62\x62\x63\x60\x5d\x60\x5d\ \x5b\x5e\x5a\x59\x5d\x5a\x57\x5c\x57\x55\x5c\x58\x56\x59\x55\x53\ \x58\x54\x52\x58\x54\x53\x59\x55\x54\x56\x53\x52\x56\x53\x51\x55\ \x50\x4e\x54\x50\x4d\x55\x51\x4f\x54\x50\x4d\x4e\x49\x46\x4b\x45\ \x41\x4c\x45\x40\x4a\x43\x3d\x52\x48\x40\x5e\x50\x43\x4c\x41\x37\ \x55\x46\x39\x52\x44\x35\x55\x45\x35\x53\x43\x32\x4d\x3d\x2e\x49\ \x3a\x2a\x42\x34\x25\x46\x37\x28\x47\x37\x26\x3e\x30\x22\x3a\x2c\ \x1e\x34\x28\x1b\x3b\x2d\x1e\x34\x27\x19\x2b\x21\x15\x28\x1f\x14\ \x2e\x23\x16\x2c\x22\x16\x28\x1d\x14\x27\x1d\x13\x24\x1b\x12\x21\ \x19\x10\x1b\x15\x0d\x1c\x15\x0d\x25\x1b\x12\x2b\x1f\x14\x32\x25\ \x18\x34\x27\x19\x32\x26\x18\x2c\x21\x15\x27\x1e\x13\x21\x19\x10\ \x23\x1a\x10\x22\x19\x10\x21\x1a\x10\x20\x17\x0f\x22\x19\x10\x2e\ \x22\x16\x38\x2a\x1b\x34\x27\x18\x35\x27\x19\x38\x2a\x1b\x3d\x2d\ \x1e\x37\x2a\x1b\x28\x1e\x13\x26\x1d\x13\x2e\x23\x16\x33\x26\x18\ \x2e\x22\x16\x2b\x21\x14\x26\x1d\x13\x26\x1d\x12\x30\x25\x18\x32\ \x26\x19\x35\x27\x1a\x37\x29\x1a\x30\x24\x17\x33\x26\x18\x30\x24\ \x17\x33\x25\x18\x29\x1f\x14\x2b\x20\x15\x2a\x20\x14\x2d\x21\x15\ \x38\x29\x1a\x3a\x2c\x1c\x32\x26\x18\x37\x29\x1a\x2d\x22\x16\x26\ \x1d\x13\x2b\x20\x15\x29\x1f\x14\x1f\x18\x0f\x33\x26\x18\x31\x25\ \x17\x27\x1e\x13\x24\x1b\x12\x27\x1e\x13\x30\x23\x16\x3a\x2b\x1c\ \x36\x28\x1a\x2f\x23\x17\x2f\x23\x17\x34\x27\x19\x40\x2f\x1f\x3c\ \x2d\x1d\x35\x28\x19\x2a\x20\x14\x26\x1c\x12\x26\x1d\x12\x27\x1d\ \x12\x23\x1b\x11\x31\x24\x17\x5c\x46\x2f\x35\x35\x33\x3d\x3d\x3e\ \x47\x48\x49\x55\x56\x57\x60\x61\x62\x6a\x6c\x6d\x71\x74\x76\x6d\ \x6f\x72\x68\x69\x6e\x7a\x7e\x82\x7f\x84\x87\x7c\x81\x84\x7c\x80\ \x84\x7c\x80\x86\x77\x7d\x81\x73\x7a\x7e\x75\x7b\x81\x73\x79\x7e\ \x73\x79\x80\x71\x77\x7e\x6f\x75\x7d\x6c\x74\x7c\x6c\x72\x7c\x6c\ \x73\x7c\x6a\x72\x7a\x68\x71\x7a\x68\x71\x7b\x66\x70\x7a\x67\x70\ \x79\x69\x72\x7c\x65\x6f\x79\x64\x6e\x78\x63\x6c\x78\x5f\x68\x71\ \x4c\x54\x5e\x33\x3a\x46\x00\x00\x00\x9b\x97\x98\x92\x8e\x8f\x8a\ \x86\x86\x80\x7c\x7d\x74\x71\x71\x6d\x6a\x6a\x64\x62\x61\x5b\x59\ \x58\x57\x54\x53\x54\x52\x51\x51\x4e\x4c\x51\x4e\x4c\x4e\x4b\x4a\ \x4f\x4c\x4a\x4d\x4a\x47\x46\x41\x40\x3e\x3a\x38\x40\x3a\x36\x4c\ \x42\x3a\x50\x45\x3b\x53\x47\x3b\x55\x47\x38\x56\x46\x35\x54\x43\ \x32\x4e\x41\x33\x47\x3b\x30\x3e\x34\x29\x40\x34\x29\x38\x2e\x25\ \x3a\x30\x23\x35\x2a\x1f\x2e\x24\x19\x34\x27\x1b\x36\x28\x1a\x28\ \x1e\x13\x24\x1b\x11\x2f\x23\x18\x34\x27\x1a\x2f\x23\x17\x2f\x24\ \x17\x35\x27\x1a\x3a\x2b\x1c\x32\x25\x18\x25\x1c\x12\x1b\x14\x0c\ \x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x23\ \x1b\x11\x25\x1c\x12\x23\x1a\x11\x23\x1b\x11\x20\x18\x0f\x23\x1b\ \x11\x23\x1a\x11\x26\x1d\x12\x2f\x23\x17\x2d\x21\x15\x30\x24\x17\ \x2e\x23\x16\x2c\x20\x15\x30\x24\x17\x2f\x24\x17\x2c\x21\x16\x26\ \x1c\x12\x2b\x21\x15\x2a\x20\x14\x27\x1e\x12\x30\x24\x17\x30\x24\ \x17\x2e\x22\x16\x2b\x20\x15\x2d\x21\x16\x34\x27\x18\x34\x27\x19\ \x35\x28\x1a\x31\x25\x17\x29\x1e\x14\x2c\x21\x15\x23\x1b\x10\x24\ \x1b\x12\x26\x1d\x13\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x36\x29\ \x1a\x35\x28\x1a\x37\x29\x1a\x33\x27\x18\x32\x26\x18\x30\x24\x17\ \x31\x25\x18\x2c\x21\x16\x25\x1d\x12\x24\x1b\x11\x2e\x22\x16\x2c\ \x20\x15\x3f\x2f\x1f\x40\x31\x1f\x2f\x24\x17\x1e\x17\x0e\x20\x19\ \x0f\x21\x1a\x10\x21\x19\x10\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\ \x24\x1c\x11\x28\x1e\x14\x28\x1e\x13\x2c\x22\x15\x34\x27\x19\x30\ \x24\x17\x30\x24\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2d\x1d\x31\x25\ \x18\x30\x24\x17\x2a\x1f\x14\x2f\x23\x17\x2d\x22\x15\x24\x1b\x11\ \x2c\x21\x15\x6c\x52\x38\x3c\x38\x33\x3c\x3d\x3d\x47\x48\x48\x54\ \x56\x56\x5f\x60\x60\x68\x6a\x6b\x70\x73\x76\x68\x69\x6d\x64\x66\ \x69\x7e\x82\x86\x7e\x82\x86\x7c\x81\x85\x7a\x7e\x82\x78\x7e\x83\ \x79\x7f\x84\x77\x7d\x82\x74\x7a\x80\x74\x7a\x80\x70\x76\x7d\x70\ \x76\x7e\x70\x76\x7f\x6f\x76\x7e\x6c\x73\x7c\x6c\x72\x7c\x6b\x73\ \x7c\x69\x72\x7a\x68\x71\x7b\x65\x6f\x78\x66\x70\x7a\x66\x70\x7a\ \x66\x6f\x7a\x65\x6f\x79\x65\x6f\x78\x62\x6c\x75\x58\x61\x6a\x43\ \x4a\x56\x00\x00\x00\x99\x92\x8f\x8e\x88\x88\x84\x7e\x7e\x76\x72\ \x73\x65\x60\x5e\x60\x5a\x57\x47\x43\x41\x49\x43\x3d\x37\x33\x2f\ \x48\x3e\x34\x66\x53\x41\x59\x49\x37\x4f\x3f\x2f\x49\x3a\x29\x4f\ \x3f\x2c\x4f\x3e\x2c\x57\x43\x30\x4f\x3d\x2a\x51\x3f\x2a\x45\x36\ \x25\x32\x27\x1a\x28\x20\x14\x2b\x20\x15\x29\x1e\x14\x2b\x21\x16\ \x2c\x21\x16\x2d\x23\x17\x26\x1d\x12\x1e\x16\x0f\x2c\x21\x16\x2e\ \x22\x16\x29\x1f\x13\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2d\x22\ \x15\x22\x19\x10\x29\x1f\x14\x26\x1c\x12\x27\x1d\x12\x2a\x1f\x14\ \x32\x25\x18\x36\x28\x1a\x32\x25\x18\x29\x1f\x14\x26\x1d\x12\x2c\ \x21\x15\x2e\x22\x17\x2c\x21\x14\x2a\x1f\x14\x29\x1f\x14\x28\x1e\ \x13\x24\x1b\x11\x28\x1e\x13\x2a\x20\x15\x25\x1c\x12\x25\x1b\x11\ \x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x29\x1f\x14\x22\x1a\x11\x26\ \x1d\x13\x32\x26\x18\x33\x26\x19\x2a\x1f\x14\x25\x1c\x12\x2c\x21\ \x16\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\x2e\x22\x17\x2b\x20\x15\ \x29\x1f\x13\x2c\x21\x15\x30\x24\x16\x34\x28\x1a\x2b\x21\x14\x34\ \x27\x19\x1f\x18\x0f\x24\x1b\x11\x21\x18\x0f\x26\x1d\x13\x2f\x24\ \x16\x2a\x20\x15\x29\x20\x14\x2f\x24\x16\x36\x29\x1a\x30\x24\x17\ \x29\x1f\x14\x2f\x23\x16\x34\x27\x19\x30\x25\x17\x2b\x20\x15\x22\ \x1a\x10\x1e\x17\x0f\x22\x1a\x11\x2a\x20\x14\x2e\x22\x16\x3e\x2f\ \x1d\x36\x28\x1a\x33\x26\x18\x1e\x17\x0e\x22\x19\x10\x22\x1a\x10\ \x22\x1a\x11\x26\x1c\x12\x23\x1a\x11\x24\x1b\x11\x24\x1b\x11\x28\ \x1e\x13\x30\x24\x17\x2e\x23\x16\x32\x26\x19\x2d\x22\x16\x2a\x1f\ \x14\x30\x24\x17\x37\x29\x1b\x40\x30\x1f\x3b\x2c\x1c\x44\x32\x20\ \x2d\x21\x16\x3d\x2d\x1e\x37\x29\x1a\x31\x25\x17\x22\x19\x10\x3b\ \x2d\x1e\x32\x2f\x2b\x40\x3f\x3e\x46\x47\x47\x53\x54\x55\x5d\x5e\ \x5e\x67\x69\x6b\x6b\x6e\x71\x64\x66\x6a\x6b\x6d\x71\x7c\x80\x84\ \x7d\x80\x85\x7c\x80\x85\x7a\x80\x84\x78\x7e\x85\x79\x7f\x85\x76\ \x7c\x83\x74\x7a\x7f\x71\x78\x7c\x71\x77\x7d\x6f\x75\x7c\x6d\x75\ \x7c\x6e\x75\x7d\x6c\x73\x7c\x6b\x72\x7b\x6a\x72\x7b\x69\x70\x79\ \x66\x6e\x78\x64\x6d\x77\x66\x6f\x79\x67\x71\x7b\x65\x6e\x79\x64\ \x6e\x79\x65\x6f\x79\x66\x70\x7a\x5e\x68\x70\x53\x5c\x66\x00\x00\ \x00\x4c\x3d\x2d\x4c\x3d\x2d\x64\x56\x4a\x74\x64\x57\x7a\x61\x48\ \x6b\x52\x39\x5f\x48\x32\x5b\x47\x30\x4b\x39\x27\x4d\x3a\x27\x4e\ \x3c\x27\x2d\x22\x16\x1e\x17\x0f\x21\x18\x0f\x28\x1f\x14\x27\x1e\ \x13\x29\x1f\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x11\x27\x1e\x13\ \x22\x19\x10\x22\x19\x10\x21\x19\x10\x21\x19\x0f\x27\x1e\x13\x2a\ \x1f\x14\x31\x25\x18\x28\x1f\x14\x1f\x17\x0f\x25\x1b\x12\x30\x24\ \x17\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x27\x1d\x12\x23\x1a\x11\ \x22\x1a\x10\x23\x1a\x10\x25\x1b\x11\x2a\x1f\x14\x30\x24\x17\x33\ \x26\x19\x39\x2b\x1c\x2d\x22\x16\x28\x1e\x13\x37\x29\x1a\x3a\x2b\ \x1c\x38\x2a\x1b\x38\x2b\x1b\x38\x2a\x1c\x33\x27\x19\x32\x26\x18\ \x2b\x20\x15\x28\x1e\x13\x28\x1d\x13\x27\x1d\x13\x27\x1d\x12\x28\ \x1e\x13\x24\x1b\x11\x24\x1b\x11\x23\x1a\x10\x25\x1b\x11\x24\x1b\ \x11\x2a\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x2c\x22\x16\x31\x25\x18\ \x2d\x21\x16\x2d\x22\x16\x29\x1f\x14\x2c\x22\x15\x2b\x20\x14\x25\ \x1c\x12\x2c\x21\x15\x2e\x22\x16\x32\x26\x18\x30\x24\x17\x25\x1c\ \x12\x1f\x18\x0f\x2c\x21\x15\x30\x24\x17\x25\x1c\x12\x29\x1f\x13\ \x26\x1c\x12\x25\x1c\x12\x31\x24\x17\x2f\x23\x17\x2a\x20\x14\x31\ \x25\x18\x31\x25\x18\x32\x25\x18\x2c\x21\x15\x22\x1a\x11\x20\x19\ \x10\x25\x1d\x12\x29\x1f\x14\x35\x27\x19\x33\x27\x19\x34\x27\x19\ \x30\x24\x17\x23\x1b\x11\x22\x1a\x10\x27\x1d\x12\x24\x1b\x11\x24\ \x1b\x11\x23\x1a\x11\x26\x1c\x12\x23\x1b\x11\x28\x1e\x13\x2a\x20\ \x14\x2e\x22\x16\x38\x2a\x1b\x35\x28\x1a\x2a\x1f\x14\x2b\x20\x14\ \x2b\x21\x15\x38\x2a\x1b\x41\x31\x1f\x3b\x2c\x1c\x31\x25\x18\x33\ \x27\x18\x3c\x2d\x1d\x39\x2a\x1b\x32\x26\x18\x3a\x2e\x1d\x30\x2c\ \x27\x3a\x3a\x3a\x44\x45\x45\x50\x51\x52\x5b\x5c\x5d\x65\x68\x68\ \x66\x69\x6c\x5d\x60\x63\x77\x7b\x7f\x7b\x7f\x83\x7a\x7f\x83\x7b\ \x7e\x84\x7a\x7e\x83\x77\x7d\x84\x78\x7e\x85\x75\x7b\x82\x73\x79\ \x7f\x6f\x77\x7c\x70\x77\x7e\x71\x78\x7f\x6f\x77\x7e\x6c\x74\x7c\ \x6c\x74\x7d\x6a\x72\x7b\x69\x71\x7a\x69\x71\x7a\x66\x6e\x77\x64\ \x6e\x77\x65\x6f\x78\x66\x6f\x79\x64\x6f\x79\x63\x6d\x77\x66\x70\ \x7a\x66\x70\x7a\x63\x6d\x77\x60\x6a\x74\x00\x00\x00\x53\x3e\x29\ \x59\x43\x2c\x80\x62\x43\x5c\x45\x30\x38\x2a\x1b\x36\x29\x1a\x33\ \x26\x19\x34\x27\x19\x37\x28\x1a\x3a\x2c\x1c\x41\x31\x20\x2a\x1f\ \x14\x21\x19\x0f\x22\x19\x10\x24\x1c\x12\x27\x1d\x13\x33\x26\x18\ \x26\x1d\x13\x1f\x17\x0f\x24\x1b\x11\x27\x1d\x13\x2c\x20\x15\x28\ \x1e\x14\x26\x1d\x13\x1f\x18\x0f\x27\x1d\x13\x2b\x20\x15\x38\x2b\ \x1b\x33\x25\x18\x25\x1c\x12\x1e\x17\x0f\x23\x1b\x11\x23\x1a\x11\ \x2c\x20\x15\x2d\x21\x15\x2e\x23\x16\x2d\x22\x15\x29\x1f\x13\x22\ \x1a\x10\x22\x1a\x10\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x37\x28\ \x1a\x27\x1d\x13\x22\x1a\x11\x2d\x22\x15\x38\x2a\x1a\x49\x37\x24\ \x43\x32\x20\x3e\x30\x1e\x37\x29\x1b\x30\x24\x17\x2b\x20\x14\x29\ \x1f\x13\x2c\x21\x15\x3b\x2c\x1c\x34\x27\x19\x37\x2a\x1a\x29\x1f\ \x13\x28\x1e\x13\x25\x1b\x12\x1c\x14\x0d\x1c\x15\x0e\x24\x1b\x12\ \x27\x1e\x13\x26\x1c\x12\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x29\ \x1e\x14\x39\x2b\x1c\x2c\x21\x16\x2a\x1f\x14\x26\x1d\x12\x2e\x22\ \x16\x27\x1c\x13\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x23\x1a\x10\ \x29\x1f\x14\x32\x26\x18\x32\x26\x17\x2b\x20\x15\x2d\x22\x15\x35\ \x28\x1a\x38\x2a\x1b\x34\x26\x18\x2f\x23\x17\x31\x25\x18\x37\x2a\ \x1b\x36\x28\x1a\x26\x1c\x12\x22\x1a\x10\x20\x18\x0f\x2e\x23\x16\ \x32\x26\x18\x29\x1f\x14\x30\x24\x17\x37\x29\x1b\x36\x29\x1a\x2c\ \x22\x15\x26\x1c\x12\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x2b\x20\ \x15\x2e\x23\x16\x2e\x22\x16\x32\x25\x18\x31\x25\x17\x2f\x23\x17\ \x36\x28\x1a\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x27\x1d\x13\x36\ \x29\x1a\x40\x30\x1f\x34\x28\x19\x27\x1e\x13\x2a\x20\x14\x2e\x23\ \x16\x37\x29\x1b\x36\x28\x1a\x2e\x23\x16\x45\x3a\x2f\x39\x39\x3a\ \x44\x45\x45\x4f\x50\x51\x59\x5a\x5b\x63\x66\x66\x61\x63\x66\x5d\ \x60\x64\x7d\x80\x84\x7a\x7e\x82\x7a\x7e\x82\x7b\x7e\x84\x7a\x7d\ \x82\x78\x7d\x84\x77\x7d\x84\x75\x7b\x81\x72\x78\x7d\x71\x79\x7e\ \x71\x79\x80\x6f\x77\x7e\x6f\x77\x7e\x6b\x73\x7c\x68\x71\x7a\x6b\ \x73\x7c\x69\x72\x7b\x65\x6f\x78\x65\x6f\x77\x63\x6e\x76\x64\x6f\ \x76\x65\x6f\x79\x66\x70\x7a\x64\x6e\x77\x67\x71\x7b\x66\x70\x7a\ \x64\x6e\x78\x62\x6c\x76\x00\x00\x00\x45\x34\x22\x3d\x2e\x1e\x7b\ \x5d\x3f\x36\x29\x1b\x27\x1d\x13\x32\x25\x18\x26\x1d\x12\x33\x26\ \x18\x33\x26\x18\x2b\x20\x14\x33\x26\x19\x30\x25\x17\x2a\x20\x14\ \x29\x1e\x14\x28\x1e\x13\x32\x25\x18\x2d\x22\x15\x22\x1a\x11\x29\ \x1f\x14\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x30\x24\x17\x22\x1a\ \x10\x24\x1b\x11\x25\x1b\x11\x30\x24\x17\x31\x24\x17\x30\x24\x17\ \x26\x1d\x13\x24\x1b\x11\x1c\x15\x0d\x1f\x17\x0f\x33\x27\x19\x30\ \x24\x17\x38\x2a\x1c\x29\x1f\x14\x24\x1b\x11\x20\x19\x0f\x23\x1a\ \x10\x23\x1b\x11\x2a\x20\x15\x2d\x22\x16\x2d\x22\x16\x2e\x23\x16\ \x2f\x23\x17\x2e\x22\x15\x36\x28\x1a\x46\x35\x22\x4a\x37\x23\x5a\ \x44\x2c\x43\x32\x20\x3a\x2c\x1c\x39\x2b\x1b\x33\x26\x18\x32\x25\ \x18\x2c\x21\x15\x33\x26\x19\x36\x29\x1a\x38\x29\x1a\x28\x1e\x13\ \x25\x1c\x11\x25\x1b\x12\x24\x1b\x11\x29\x1e\x13\x28\x1d\x13\x23\ \x1a\x11\x21\x19\x10\x20\x18\x10\x26\x1c\x12\x26\x1c\x12\x29\x1f\ \x13\x2b\x20\x14\x2f\x23\x16\x35\x29\x1a\x33\x26\x18\x33\x27\x19\ \x2a\x20\x14\x30\x24\x17\x35\x27\x19\x2c\x20\x15\x2a\x20\x14\x2d\ \x22\x15\x33\x26\x17\x2d\x22\x15\x2e\x22\x16\x38\x2a\x1b\x3c\x2d\ \x1d\x37\x29\x1b\x2e\x22\x16\x31\x24\x17\x31\x25\x17\x28\x1e\x13\ \x26\x1d\x12\x26\x1c\x12\x23\x1a\x11\x20\x18\x0f\x21\x19\x0f\x25\ \x1b\x12\x2e\x22\x16\x3a\x2b\x1c\x39\x2b\x1c\x2d\x22\x15\x29\x1f\ \x14\x2a\x20\x14\x2a\x20\x14\x27\x1d\x13\x27\x1d\x13\x30\x24\x17\ \x31\x24\x17\x30\x25\x17\x32\x26\x18\x30\x24\x17\x2d\x21\x16\x29\ \x1f\x14\x2a\x20\x14\x33\x27\x19\x2f\x24\x16\x31\x25\x17\x40\x30\ \x1f\x37\x29\x1a\x2c\x22\x16\x2f\x24\x17\x23\x1b\x11\x2d\x22\x16\ \x32\x25\x18\x38\x2b\x1c\x54\x45\x35\x37\x38\x39\x43\x43\x44\x4c\ \x4d\x4d\x59\x5b\x5b\x5f\x61\x62\x5a\x5d\x5e\x6d\x6f\x73\x79\x7c\ \x7f\x7b\x7d\x82\x7c\x7f\x84\x7b\x7f\x84\x79\x7d\x81\x7a\x7e\x84\ \x77\x7d\x84\x76\x7c\x83\x73\x7a\x81\x73\x7b\x80\x70\x78\x7f\x6f\ \x77\x7e\x6f\x77\x7e\x6c\x74\x7c\x68\x72\x7a\x6b\x74\x7c\x6a\x72\ \x7b\x67\x70\x78\x66\x70\x78\x64\x6e\x77\x65\x6f\x78\x65\x70\x7a\ \x66\x6f\x7a\x64\x6e\x77\x66\x70\x7a\x64\x6e\x78\x62\x6c\x75\x64\ \x6e\x78\x00\x00\x00\x50\x3b\x27\x46\x35\x22\x53\x3f\x2a\x30\x24\ \x17\x22\x19\x10\x2d\x22\x16\x32\x25\x18\x34\x27\x19\x3b\x2c\x1c\ \x3e\x2e\x1d\x3e\x2f\x1e\x32\x25\x17\x32\x25\x18\x2e\x23\x16\x2d\ \x22\x15\x31\x25\x18\x2e\x22\x16\x2a\x1f\x14\x27\x1d\x12\x2c\x21\ \x15\x27\x1d\x13\x2a\x1f\x14\x26\x1c\x12\x20\x18\x10\x20\x18\x0f\ \x24\x1c\x11\x32\x26\x18\x2c\x22\x15\x2b\x20\x15\x2c\x21\x15\x2e\ \x22\x16\x26\x1d\x12\x23\x1a\x10\x2c\x21\x15\x2c\x20\x15\x36\x29\ \x1a\x33\x27\x19\x2e\x23\x16\x2c\x21\x15\x20\x18\x0f\x21\x19\x10\ \x27\x1d\x13\x24\x1b\x11\x25\x1c\x12\x24\x1b\x12\x21\x19\x10\x2b\ \x20\x15\x35\x28\x1a\x3b\x2c\x1c\x3a\x2c\x1b\x43\x32\x21\x34\x26\ \x19\x2f\x23\x16\x2e\x22\x16\x3a\x2b\x1c\x37\x29\x1a\x31\x24\x17\ \x35\x27\x19\x3e\x2e\x1e\x3d\x2e\x1e\x3d\x2d\x1d\x38\x2a\x1b\x2c\ \x21\x15\x26\x1d\x12\x24\x1a\x11\x21\x19\x10\x23\x1a\x11\x22\x19\ \x10\x23\x1a\x10\x24\x1b\x11\x27\x1d\x13\x2f\x23\x17\x2c\x21\x16\ \x36\x28\x1a\x37\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1e\x39\x2b\x1b\x37\ \x29\x1a\x3e\x2f\x1e\x2c\x21\x15\x2e\x23\x16\x28\x1d\x13\x2b\x20\ \x14\x2b\x20\x14\x31\x25\x18\x3a\x2c\x1c\x35\x29\x1a\x30\x25\x17\ \x2e\x23\x16\x2f\x23\x17\x2e\x23\x17\x29\x1e\x14\x28\x1e\x14\x2c\ \x21\x16\x25\x1c\x12\x27\x1e\x13\x27\x1e\x13\x25\x1c\x11\x2f\x23\ \x17\x3a\x2b\x1c\x36\x29\x1a\x2f\x23\x16\x36\x29\x1a\x39\x2b\x1c\ \x3e\x2e\x1e\x3b\x2c\x1c\x40\x30\x1f\x45\x34\x22\x3f\x2e\x1e\x3f\ \x2f\x1f\x40\x30\x1f\x3c\x2d\x1c\x36\x29\x1a\x2f\x24\x16\x31\x25\ \x17\x2e\x23\x16\x32\x25\x18\x2f\x23\x17\x3b\x2b\x1c\x42\x31\x20\ \x2f\x23\x16\x29\x1e\x14\x26\x1c\x12\x2d\x23\x17\x28\x1e\x13\x2d\ \x23\x16\x43\x37\x2b\x36\x37\x37\x41\x41\x42\x4a\x4c\x4c\x57\x59\ \x59\x5d\x60\x60\x56\x57\x5a\x74\x76\x7a\x79\x7c\x80\x7c\x7f\x83\ \x7c\x7e\x83\x79\x7d\x82\x79\x7d\x81\x79\x7d\x82\x77\x7c\x83\x75\ \x7b\x82\x75\x7c\x83\x73\x7a\x81\x71\x79\x80\x6f\x77\x7e\x6e\x76\ \x7e\x6a\x73\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7a\x67\x71\x79\ \x66\x6f\x79\x65\x6f\x78\x67\x71\x7a\x67\x72\x7b\x66\x70\x7a\x64\ \x6f\x78\x64\x6f\x78\x63\x6e\x77\x63\x6d\x76\x66\x70\x7a\x00\x00\ \x00\x39\x2b\x1b\x3d\x2e\x1e\x72\x56\x38\x32\x26\x18\x25\x1c\x12\ \x27\x1d\x12\x2d\x21\x15\x30\x24\x17\x3c\x2d\x1d\x41\x31\x1f\x42\ \x31\x20\x3d\x2e\x1d\x30\x24\x17\x2a\x1f\x14\x22\x19\x10\x24\x1b\ \x11\x2b\x20\x14\x2a\x1f\x14\x2f\x23\x16\x2f\x24\x17\x26\x1c\x12\ \x20\x18\x0f\x23\x1b\x11\x2a\x1f\x14\x25\x1c\x12\x20\x18\x0f\x28\ \x1e\x14\x2a\x1f\x14\x23\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\x24\ \x17\x2a\x1f\x14\x26\x1c\x12\x20\x18\x0f\x2d\x22\x16\x2f\x24\x17\ \x32\x25\x18\x28\x1e\x14\x22\x1a\x10\x27\x1e\x13\x26\x1d\x12\x22\ \x19\x10\x27\x1d\x13\x2c\x21\x15\x24\x1b\x12\x22\x19\x10\x31\x24\ \x18\x42\x31\x20\x3a\x2b\x1c\x3c\x2d\x1d\x2b\x21\x15\x31\x24\x17\ \x34\x28\x19\x30\x24\x16\x36\x28\x1a\x2b\x20\x14\x31\x25\x18\x33\ \x26\x19\x2a\x1f\x14\x38\x29\x1b\x3f\x2f\x1e\x42\x31\x20\x2a\x20\ \x14\x26\x1d\x13\x29\x1e\x13\x25\x1c\x11\x29\x1f\x13\x28\x1e\x13\ \x2d\x22\x15\x30\x24\x17\x30\x24\x17\x31\x25\x18\x33\x26\x18\x34\ \x27\x19\x35\x28\x19\x36\x28\x19\x35\x27\x19\x37\x29\x1b\x40\x30\ \x1f\x2c\x21\x14\x2c\x20\x14\x29\x1e\x14\x29\x1e\x13\x28\x1e\x13\ \x2d\x21\x15\x2e\x23\x16\x32\x25\x18\x2a\x1f\x14\x2d\x22\x16\x31\ \x25\x18\x2a\x1f\x14\x27\x1d\x13\x2b\x20\x15\x30\x24\x17\x2e\x22\ \x16\x2a\x1f\x14\x32\x26\x18\x2d\x22\x15\x26\x1d\x12\x31\x24\x17\ \x34\x27\x18\x35\x28\x19\x35\x27\x19\x3f\x2f\x1f\x3d\x2e\x1d\x47\ \x36\x23\x48\x36\x23\x49\x37\x23\x3e\x2e\x1e\x47\x34\x22\x47\x35\ \x22\x44\x33\x21\x3a\x2b\x1c\x32\x25\x18\x35\x28\x19\x37\x29\x1a\ \x34\x27\x19\x30\x25\x17\x2d\x21\x15\x34\x27\x19\x3d\x2e\x1d\x3f\ \x2f\x1f\x2b\x21\x15\x2c\x21\x15\x22\x19\x10\x28\x1d\x13\x3e\x32\ \x25\x35\x36\x37\x3f\x40\x40\x49\x4b\x4c\x54\x56\x57\x53\x56\x59\ \x59\x5b\x5f\x70\x73\x78\x77\x79\x7e\x7b\x7e\x83\x7b\x7d\x82\x78\ \x7c\x81\x78\x7c\x80\x79\x7e\x83\x79\x7f\x84\x76\x7c\x82\x75\x7c\ \x83\x71\x79\x80\x71\x79\x80\x6f\x77\x7e\x6c\x74\x7c\x6b\x73\x7d\ \x69\x72\x7b\x6a\x73\x7c\x69\x73\x7c\x68\x72\x7b\x66\x71\x7a\x64\ \x6e\x77\x66\x71\x79\x66\x70\x7a\x66\x70\x79\x66\x70\x79\x64\x6e\ \x76\x63\x6e\x76\x64\x6f\x77\x66\x70\x7a\x00\x00\x00\x36\x29\x1a\ \x2e\x22\x16\x49\x37\x24\x36\x29\x1b\x24\x1b\x12\x21\x19\x0f\x28\ \x1e\x13\x2c\x22\x15\x31\x24\x17\x30\x24\x17\x37\x2a\x1a\x35\x28\ \x19\x2e\x21\x15\x1b\x14\x0d\x1d\x15\x0e\x2a\x1f\x14\x28\x1e\x13\ \x2e\x23\x16\x32\x25\x18\x2c\x20\x15\x20\x18\x0f\x18\x12\x0b\x28\ \x1e\x13\x38\x2a\x1b\x2e\x22\x16\x23\x1a\x11\x1e\x16\x0e\x27\x1d\ \x13\x27\x1e\x13\x26\x1d\x12\x26\x1c\x12\x2c\x21\x15\x2e\x22\x16\ \x2d\x22\x16\x25\x1c\x12\x29\x1f\x14\x2f\x22\x16\x2f\x23\x16\x31\ \x25\x18\x2d\x21\x15\x2b\x20\x14\x24\x1b\x11\x26\x1c\x13\x2b\x1f\ \x14\x2a\x1f\x14\x29\x1f\x14\x2a\x1f\x14\x31\x25\x18\x3f\x2f\x1e\ \x3e\x2e\x1e\x3b\x2d\x1d\x32\x26\x18\x33\x27\x19\x38\x2a\x1b\x2f\ \x24\x17\x2a\x20\x14\x2c\x21\x16\x2c\x21\x15\x30\x24\x17\x35\x27\ \x1a\x34\x27\x19\x2f\x23\x16\x31\x25\x18\x2f\x23\x17\x2b\x20\x14\ \x29\x1f\x13\x2f\x23\x16\x30\x24\x17\x2c\x21\x15\x2f\x23\x16\x2f\ \x23\x17\x2d\x22\x16\x39\x2b\x1b\x3b\x2c\x1d\x36\x29\x1a\x34\x27\ \x19\x32\x25\x18\x34\x27\x19\x38\x2b\x1a\x3b\x2c\x1c\x34\x27\x19\ \x34\x27\x19\x33\x27\x19\x27\x1d\x13\x27\x1d\x13\x2d\x22\x15\x2d\ \x22\x16\x2d\x22\x16\x2d\x22\x16\x29\x1f\x14\x2c\x21\x15\x28\x1e\ \x13\x22\x1a\x10\x27\x1d\x13\x32\x25\x18\x33\x27\x19\x38\x29\x1a\ \x38\x2a\x1b\x2a\x20\x14\x28\x1e\x13\x27\x1d\x12\x2b\x20\x14\x29\ \x1f\x14\x2a\x1f\x14\x31\x25\x18\x39\x2b\x1b\x34\x27\x19\x39\x2c\ \x1c\x42\x32\x20\x3b\x2c\x1d\x3f\x30\x1f\x42\x31\x20\x41\x30\x1f\ \x41\x30\x1f\x3f\x2f\x1e\x34\x27\x19\x2d\x22\x16\x2d\x22\x15\x2e\ \x22\x16\x31\x25\x17\x3a\x2c\x1c\x37\x2a\x1b\x32\x26\x18\x2f\x24\ \x17\x32\x26\x19\x24\x1b\x11\x1b\x14\x0c\x40\x33\x24\x34\x35\x35\ \x3e\x40\x40\x48\x4b\x4b\x52\x53\x54\x47\x49\x4c\x6b\x6d\x71\x70\ \x74\x78\x75\x79\x7d\x79\x7d\x82\x7a\x7d\x82\x77\x7b\x80\x77\x7b\ \x80\x79\x7e\x83\x75\x7b\x82\x75\x7b\x82\x71\x79\x80\x73\x7a\x81\ \x71\x79\x80\x71\x79\x80\x6c\x73\x7b\x6c\x74\x7e\x6b\x75\x7e\x6b\ \x75\x7e\x69\x73\x7c\x68\x73\x7b\x68\x72\x7b\x65\x6f\x78\x64\x6e\ \x77\x67\x71\x7a\x68\x71\x7b\x68\x72\x7b\x66\x71\x79\x62\x6d\x75\ \x62\x6d\x75\x64\x6f\x78\x00\x00\x00\x3b\x2c\x1d\x2b\x20\x14\x54\ \x3f\x2a\x23\x1b\x11\x19\x13\x0c\x1d\x16\x0e\x22\x1a\x11\x23\x1a\ \x11\x2b\x20\x14\x30\x24\x17\x35\x27\x19\x34\x27\x19\x2f\x23\x16\ \x15\x10\x0a\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x12\x27\x1d\x12\x2a\ \x20\x14\x2f\x24\x17\x29\x20\x14\x21\x19\x10\x28\x1e\x12\x27\x1e\ \x13\x2b\x20\x14\x22\x19\x10\x1e\x17\x0e\x28\x1d\x13\x2b\x1f\x14\ \x21\x19\x10\x24\x1b\x11\x2c\x21\x15\x2e\x23\x16\x34\x27\x19\x26\ \x1c\x12\x27\x1d\x12\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x34\x27\ \x19\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x2b\x20\x14\x29\x1f\x14\ \x2d\x21\x16\x2e\x23\x16\x32\x25\x18\x43\x32\x20\x3c\x2d\x1d\x3d\ \x2e\x1d\x3d\x2e\x1e\x46\x33\x22\x40\x30\x1f\x2f\x23\x17\x2d\x22\ \x16\x2f\x23\x16\x2c\x21\x15\x2f\x24\x16\x3b\x2c\x1c\x3d\x2d\x1d\ \x38\x2a\x1b\x39\x2b\x1b\x35\x28\x19\x2f\x24\x17\x2c\x22\x16\x32\ \x25\x18\x33\x26\x18\x33\x26\x18\x36\x29\x1a\x33\x27\x19\x36\x28\ \x1a\x38\x2a\x1b\x33\x26\x19\x2e\x23\x16\x32\x25\x18\x2c\x21\x15\ \x31\x25\x17\x35\x28\x19\x34\x27\x19\x3f\x30\x1f\x40\x30\x1e\x37\ \x29\x1a\x36\x28\x1a\x2e\x23\x15\x31\x24\x17\x33\x27\x19\x2c\x21\ \x15\x29\x1f\x14\x2c\x21\x15\x29\x1e\x13\x26\x1c\x12\x27\x1d\x12\ \x2c\x20\x14\x30\x24\x17\x37\x29\x1a\x32\x26\x18\x37\x29\x1b\x32\ \x26\x18\x2b\x20\x15\x2d\x22\x15\x2e\x23\x16\x2a\x1f\x13\x26\x1d\ \x13\x32\x26\x17\x30\x25\x17\x2f\x23\x17\x34\x28\x19\x3b\x2c\x1c\ \x36\x28\x1a\x38\x29\x1b\x36\x29\x1a\x39\x2b\x1c\x3e\x2f\x1e\x40\ \x30\x1f\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x33\x27\x18\x33\x26\ \x19\x31\x25\x17\x39\x2a\x1b\x37\x29\x1b\x37\x2a\x1b\x37\x2a\x1a\ \x31\x25\x18\x25\x1b\x12\x3f\x31\x21\x32\x34\x34\x3d\x3e\x3f\x48\ \x4a\x4b\x51\x53\x54\x47\x48\x4b\x6c\x70\x73\x72\x76\x7a\x74\x79\ \x7d\x77\x7b\x80\x7a\x7e\x83\x79\x7d\x83\x77\x7d\x82\x76\x7c\x83\ \x77\x7d\x84\x73\x7a\x81\x72\x79\x80\x73\x7b\x82\x72\x79\x81\x6f\ \x76\x7f\x6d\x75\x7d\x6e\x75\x7d\x6c\x75\x7e\x68\x72\x7b\x68\x72\ \x7a\x69\x74\x7c\x67\x71\x7b\x67\x72\x7b\x66\x71\x79\x66\x71\x7a\ \x65\x70\x78\x66\x6f\x78\x66\x70\x78\x61\x6b\x73\x62\x6c\x75\x67\ \x70\x79\x00\x00\x00\x38\x2a\x1b\x33\x26\x19\x45\x35\x22\x26\x1c\ \x12\x17\x11\x0b\x18\x11\x0b\x1b\x14\x0c\x24\x1a\x10\x2b\x21\x15\ \x32\x25\x17\x2f\x23\x16\x36\x29\x1b\x2a\x1f\x14\x1a\x13\x0c\x1c\ \x16\x0e\x1e\x16\x0e\x24\x1b\x11\x2e\x22\x16\x31\x25\x17\x3d\x2e\ \x1e\x3a\x2c\x1c\x2d\x21\x16\x31\x24\x17\x2a\x20\x15\x2b\x21\x15\ \x28\x1e\x13\x29\x1f\x14\x2f\x23\x16\x33\x27\x18\x25\x1c\x12\x23\ \x1b\x11\x26\x1d\x12\x2b\x20\x15\x31\x24\x18\x1a\x14\x0c\x1f\x17\ \x0f\x28\x1e\x13\x2e\x22\x16\x37\x29\x1b\x30\x24\x17\x2d\x22\x16\ \x2d\x22\x16\x35\x28\x1a\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x2a\ \x20\x14\x2e\x22\x16\x3c\x2d\x1d\x3a\x2b\x1c\x3d\x2e\x1d\x44\x33\ \x21\x41\x2f\x1f\x38\x29\x1a\x31\x25\x18\x31\x26\x18\x27\x1e\x13\ \x2d\x22\x16\x30\x25\x17\x3f\x2f\x1e\x40\x2f\x1f\x3b\x2c\x1d\x37\ \x2a\x1b\x36\x28\x19\x3a\x2b\x1c\x39\x2b\x1b\x2f\x23\x16\x2d\x21\ \x15\x2f\x23\x16\x31\x24\x17\x3b\x2c\x1c\x3e\x2f\x1e\x35\x28\x19\ \x33\x26\x18\x35\x28\x1a\x2c\x21\x15\x27\x1e\x13\x30\x24\x18\x35\ \x27\x19\x34\x27\x19\x3a\x2b\x1c\x3c\x2d\x1d\x3b\x2c\x1c\x3b\x2c\ \x1d\x36\x28\x19\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x37\x29\x1a\ \x35\x28\x1a\x31\x25\x18\x2d\x22\x16\x2a\x20\x14\x32\x26\x17\x35\ \x28\x1a\x36\x29\x1a\x31\x25\x18\x36\x29\x1a\x39\x2a\x1b\x32\x26\ \x19\x3b\x2c\x1d\x2a\x1f\x14\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\ \x28\x1e\x13\x23\x1a\x11\x3e\x2e\x1e\x3d\x2e\x1d\x3b\x2c\x1d\x2c\ \x22\x16\x30\x24\x17\x39\x2b\x1b\x40\x2f\x1f\x3b\x2c\x1c\x36\x29\ \x1a\x37\x2a\x1b\x39\x2b\x1b\x30\x25\x17\x31\x25\x17\x33\x25\x18\ \x39\x2a\x1b\x3a\x2c\x1c\x38\x2a\x1b\x37\x28\x1b\x30\x24\x17\x21\ \x18\x10\x54\x40\x2c\x31\x33\x33\x3c\x3e\x3f\x45\x47\x48\x44\x46\ \x48\x58\x59\x5b\x6b\x6f\x71\x71\x75\x7a\x74\x78\x7d\x77\x7b\x7f\ \x79\x7e\x83\x79\x7e\x84\x76\x7c\x82\x75\x7b\x81\x77\x7d\x84\x74\ \x7b\x82\x73\x7b\x82\x71\x78\x80\x6d\x74\x7c\x6f\x76\x7e\x6e\x76\ \x7e\x6c\x75\x7d\x6a\x72\x7b\x69\x72\x7b\x68\x71\x7a\x6b\x74\x7d\ \x6a\x73\x7d\x68\x72\x7a\x67\x72\x7a\x67\x70\x7a\x66\x70\x79\x65\ \x6f\x78\x65\x6e\x77\x62\x6c\x75\x64\x6e\x76\x65\x6f\x78\x00\x00\ \x00\x38\x29\x1b\x39\x2a\x1c\x42\x32\x21\x32\x25\x18\x1d\x15\x0e\ \x1e\x17\x0f\x20\x18\x0f\x24\x1b\x12\x29\x1f\x13\x29\x1f\x14\x28\ \x1f\x13\x23\x1a\x11\x1e\x17\x0f\x1a\x14\x0c\x18\x12\x0b\x1a\x13\ \x0d\x23\x1a\x10\x26\x1c\x12\x2a\x20\x15\x31\x24\x17\x34\x27\x19\ \x2f\x24\x16\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x2a\x1f\x14\x25\ \x1c\x11\x2d\x22\x16\x34\x27\x19\x30\x23\x16\x2b\x21\x14\x1f\x17\ \x0f\x2b\x20\x15\x29\x1e\x13\x20\x18\x0f\x23\x1a\x10\x27\x1d\x12\ \x27\x1d\x12\x2b\x21\x15\x24\x1b\x11\x21\x19\x0f\x26\x1d\x12\x2a\ \x20\x14\x30\x24\x16\x36\x28\x1a\x34\x26\x19\x2f\x22\x16\x31\x25\ \x18\x3f\x30\x1e\x41\x31\x1f\x41\x31\x1f\x4e\x3a\x26\x43\x32\x20\ \x2f\x23\x16\x32\x25\x18\x26\x1d\x12\x2e\x22\x16\x2b\x20\x15\x2f\ \x22\x16\x3b\x2c\x1c\x36\x28\x1a\x35\x27\x19\x2f\x23\x16\x32\x26\ \x17\x38\x29\x1b\x37\x29\x1b\x34\x27\x19\x32\x25\x18\x2f\x23\x17\ \x2e\x23\x16\x3b\x2c\x1c\x41\x31\x1f\x44\x33\x21\x36\x28\x19\x2f\ \x22\x16\x28\x1e\x13\x2e\x22\x16\x36\x29\x1a\x32\x26\x18\x3a\x2b\ \x1c\x35\x28\x19\x37\x29\x1a\x3a\x2b\x1c\x3d\x2d\x1d\x3c\x2d\x1d\ \x35\x28\x1a\x3c\x2d\x1d\x40\x30\x1f\x3a\x2c\x1c\x34\x27\x19\x2e\ \x22\x16\x2d\x21\x15\x2c\x20\x15\x35\x28\x19\x3b\x2c\x1c\x36\x29\ \x1a\x31\x25\x17\x33\x26\x19\x31\x25\x17\x32\x25\x18\x34\x26\x19\ \x35\x28\x1a\x2b\x21\x15\x28\x1e\x14\x2c\x21\x15\x2e\x22\x16\x3b\ \x2c\x1c\x41\x31\x1f\x42\x32\x20\x42\x31\x20\x3c\x2d\x1d\x35\x28\ \x1a\x33\x26\x19\x3c\x2d\x1d\x40\x30\x1e\x41\x31\x1f\x3f\x2f\x1e\ \x3a\x2c\x1c\x30\x23\x16\x32\x25\x18\x27\x1d\x13\x2e\x23\x16\x2c\ \x21\x15\x32\x26\x18\x48\x36\x23\x32\x26\x18\x2c\x21\x15\x3f\x31\ \x21\x36\x35\x34\x3b\x3d\x3e\x44\x46\x47\x3d\x3e\x41\x5f\x62\x64\ \x69\x6d\x6f\x6d\x72\x77\x70\x78\x7c\x74\x7a\x80\x78\x7e\x84\x77\ \x7d\x83\x76\x7c\x83\x75\x7b\x81\x74\x7b\x82\x72\x7a\x80\x71\x79\ \x80\x70\x77\x7f\x6e\x76\x7d\x6d\x75\x7d\x6d\x75\x7d\x6b\x74\x7b\ \x6b\x75\x7c\x69\x72\x7a\x69\x72\x7a\x68\x71\x7a\x69\x73\x7c\x66\ \x71\x7a\x66\x70\x78\x66\x70\x78\x64\x6e\x76\x65\x6f\x77\x65\x70\ \x78\x62\x6d\x75\x66\x70\x78\x66\x6f\x78\x00\x00\x00\x3d\x2d\x1d\ \x41\x30\x20\x41\x31\x20\x3b\x2c\x1c\x25\x1c\x12\x27\x1d\x13\x25\ \x1c\x12\x27\x1d\x13\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0d\x18\x12\ \x0c\x16\x11\x0a\x1c\x15\x0e\x19\x13\x0b\x1e\x16\x0e\x23\x1a\x11\ \x1e\x17\x0e\x23\x1a\x11\x2c\x21\x15\x2e\x23\x16\x2a\x20\x14\x2a\ \x20\x14\x2c\x21\x15\x34\x27\x18\x2c\x21\x15\x27\x1d\x13\x2f\x23\ \x17\x2b\x20\x15\x28\x1e\x13\x29\x1f\x14\x23\x1a\x10\x20\x18\x0f\ \x20\x18\x0f\x20\x18\x0f\x20\x19\x0f\x25\x1b\x11\x27\x1e\x13\x2f\ \x24\x17\x2a\x20\x14\x25\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x23\ \x16\x3c\x2d\x1c\x40\x30\x1f\x35\x27\x1a\x2a\x20\x14\x2e\x22\x16\ \x36\x29\x1a\x47\x34\x22\x38\x2b\x1b\x35\x28\x1a\x31\x25\x18\x35\ \x27\x19\x2e\x23\x16\x2f\x24\x17\x24\x1a\x11\x2b\x20\x14\x2f\x23\ \x16\x34\x27\x19\x31\x25\x18\x30\x24\x17\x31\x25\x17\x3a\x2b\x1c\ \x39\x2b\x1b\x33\x26\x18\x36\x28\x19\x38\x29\x1b\x35\x27\x1a\x36\ \x28\x1a\x3e\x2e\x1d\x43\x32\x20\x2f\x24\x17\x2a\x20\x14\x26\x1c\ \x12\x22\x19\x10\x2e\x22\x16\x2d\x21\x15\x36\x28\x1a\x35\x27\x19\ \x3a\x2c\x1c\x30\x24\x17\x2c\x21\x15\x35\x27\x1a\x31\x25\x17\x37\ \x29\x1a\x37\x2a\x1a\x38\x2a\x1b\x33\x26\x18\x2d\x21\x15\x29\x1f\ \x13\x2c\x21\x15\x32\x25\x18\x34\x27\x19\x2d\x21\x16\x26\x1d\x12\ \x2b\x21\x14\x29\x1f\x14\x2e\x22\x16\x3c\x2d\x1d\x35\x28\x1a\x35\ \x28\x1a\x2f\x23\x17\x29\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x31\x25\ \x18\x3b\x2d\x1d\x44\x33\x21\x3c\x2d\x1c\x31\x24\x17\x31\x24\x17\ \x34\x27\x18\x35\x28\x19\x3a\x2c\x1c\x3f\x2f\x1f\x39\x2b\x1c\x2e\ \x23\x16\x27\x1d\x13\x26\x1d\x13\x28\x1e\x13\x28\x1d\x12\x2a\x20\ \x14\x37\x29\x1a\x41\x31\x20\x3e\x2e\x1e\x3d\x2f\x20\x34\x32\x31\ \x39\x3b\x3c\x3f\x41\x42\x3f\x41\x42\x5e\x61\x63\x66\x6b\x6d\x6b\ \x72\x75\x63\x6c\x6f\x64\x6e\x73\x71\x78\x7f\x74\x7a\x80\x76\x7d\ \x84\x76\x7c\x82\x72\x7b\x81\x70\x78\x7f\x72\x7a\x81\x71\x78\x80\ \x6f\x77\x7e\x6c\x74\x7b\x6b\x72\x7a\x6a\x72\x79\x6b\x73\x7a\x69\ \x73\x7a\x68\x72\x79\x67\x70\x78\x67\x71\x79\x68\x72\x7b\x66\x70\ \x7a\x65\x6f\x78\x64\x6e\x76\x65\x6f\x77\x66\x71\x79\x66\x6f\x78\ \x65\x70\x77\x65\x70\x77\x00\x00\x00\x45\x34\x22\x45\x33\x21\x32\ \x25\x18\x28\x1e\x13\x1d\x16\x0e\x1c\x15\x0d\x1d\x15\x0e\x1d\x16\ \x0e\x21\x19\x10\x21\x18\x10\x1a\x13\x0c\x16\x11\x0b\x18\x12\x0b\ \x1a\x13\x0d\x1c\x15\x0e\x22\x19\x10\x2c\x21\x15\x22\x19\x10\x22\ \x19\x10\x2a\x1f\x14\x29\x1f\x14\x28\x1e\x13\x24\x1b\x11\x24\x1b\ \x11\x29\x1f\x13\x2a\x20\x15\x29\x1f\x14\x32\x26\x18\x2f\x24\x16\ \x32\x25\x18\x34\x27\x19\x31\x24\x17\x22\x1a\x10\x22\x1a\x11\x26\ \x1d\x12\x29\x1f\x13\x27\x1e\x13\x25\x1b\x12\x2c\x21\x15\x31\x25\ \x18\x27\x1d\x13\x22\x19\x11\x23\x1a\x10\x23\x1a\x10\x2c\x21\x15\ \x3c\x2d\x1d\x37\x29\x1a\x2d\x22\x15\x2c\x22\x16\x35\x27\x19\x3b\ \x2c\x1c\x3b\x2d\x1c\x41\x31\x20\x3b\x2c\x1d\x3a\x2c\x1c\x3a\x2c\ \x1c\x33\x27\x19\x2e\x23\x16\x2a\x20\x14\x2e\x22\x16\x33\x27\x18\ \x2d\x22\x15\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x2d\x21\x15\x2e\ \x22\x16\x37\x29\x1a\x37\x2a\x1b\x35\x27\x1a\x2f\x24\x17\x2f\x23\ \x16\x2b\x21\x15\x2d\x22\x16\x25\x1b\x11\x27\x1d\x13\x25\x1b\x11\ \x30\x24\x17\x2d\x22\x16\x36\x29\x1a\x32\x25\x18\x34\x26\x18\x32\ \x25\x18\x39\x2a\x1b\x36\x28\x1a\x34\x26\x18\x35\x27\x19\x34\x27\ \x19\x3d\x2d\x1e\x3b\x2b\x1c\x35\x28\x19\x2f\x23\x16\x24\x1b\x12\ \x25\x1b\x11\x21\x19\x10\x26\x1c\x12\x23\x1a\x10\x2a\x1f\x14\x24\ \x1b\x12\x24\x1b\x11\x34\x28\x1a\x42\x32\x20\x35\x28\x19\x3e\x2e\ \x1d\x45\x34\x22\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x17\x37\x29\x1b\ \x3d\x2e\x1d\x3d\x2f\x1e\x35\x27\x19\x30\x24\x17\x30\x24\x17\x34\ \x27\x19\x3a\x2b\x1c\x3f\x2f\x1e\x4c\x39\x24\x3d\x2e\x1d\x2a\x1f\ \x14\x34\x28\x1a\x2e\x23\x16\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\ \x5a\x44\x2c\x41\x31\x1f\x3f\x2f\x20\x36\x34\x2f\x38\x3a\x3b\x2e\ \x2f\x31\x50\x53\x53\x5b\x5f\x60\x64\x69\x6b\x58\x5e\x61\x19\x1d\ \x20\x1f\x24\x28\x66\x6d\x74\x78\x7e\x85\x74\x7b\x82\x76\x7e\x84\ \x75\x7d\x84\x72\x7a\x81\x70\x78\x7f\x6e\x76\x7d\x6d\x75\x7c\x6e\ \x75\x7d\x6d\x75\x7d\x6d\x75\x7c\x6b\x73\x7a\x68\x71\x7a\x6a\x73\ \x7b\x68\x72\x7a\x68\x72\x7b\x67\x71\x7a\x68\x72\x7b\x66\x70\x79\ \x67\x72\x7b\x64\x6f\x78\x64\x6f\x77\x66\x6f\x78\x69\x72\x7b\x69\ \x74\x7b\x00\x00\x00\x48\x36\x23\x45\x34\x21\x2c\x20\x15\x22\x19\ \x10\x1c\x14\x0d\x1d\x15\x0d\x1c\x16\x0d\x1f\x18\x0f\x23\x1a\x11\ \x22\x19\x10\x1c\x15\x0d\x17\x11\x0b\x1e\x16\x0f\x24\x1b\x11\x2c\ \x21\x15\x2a\x20\x14\x2f\x24\x17\x2b\x20\x15\x25\x1c\x12\x22\x1a\ \x10\x23\x1a\x11\x20\x18\x0f\x21\x19\x10\x1d\x16\x0e\x1e\x16\x0e\ \x20\x19\x10\x26\x1d\x12\x27\x1e\x14\x2c\x21\x15\x33\x26\x19\x38\ \x2a\x1b\x3b\x2c\x1d\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\x25\x1b\ \x11\x28\x1e\x13\x29\x1e\x13\x27\x1d\x12\x31\x25\x18\x3d\x2e\x1e\ \x33\x26\x19\x2e\x23\x16\x2e\x22\x16\x2e\x23\x16\x3a\x2c\x1d\x3a\ \x2c\x1c\x35\x28\x1a\x2f\x23\x16\x34\x26\x19\x33\x26\x19\x2f\x23\ \x16\x39\x2a\x1c\x36\x28\x1a\x38\x2b\x1b\x3b\x2c\x1c\x40\x30\x1f\ \x31\x25\x18\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x29\x1f\x14\x2e\ \x23\x16\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2d\x22\x16\x2e\x22\ \x16\x31\x25\x18\x3b\x2d\x1d\x39\x2b\x1c\x37\x2a\x1b\x2e\x23\x16\ \x2c\x21\x15\x2a\x20\x14\x26\x1c\x12\x2c\x22\x15\x32\x26\x18\x35\ \x28\x1a\x38\x2a\x1a\x37\x29\x1b\x2e\x22\x16\x32\x26\x18\x39\x2a\ \x1b\x37\x29\x1a\x31\x24\x18\x33\x26\x18\x34\x27\x19\x35\x27\x1a\ \x34\x27\x19\x35\x28\x19\x32\x26\x18\x28\x1e\x13\x23\x1a\x11\x23\ \x1a\x11\x2a\x1f\x14\x25\x1c\x12\x2b\x1f\x14\x23\x1a\x11\x1f\x17\ \x0f\x35\x28\x1a\x3c\x2d\x1d\x34\x26\x19\x2d\x22\x16\x31\x25\x18\ \x29\x1f\x14\x2f\x23\x16\x37\x29\x1a\x37\x29\x1a\x3d\x2e\x1d\x3d\ \x2e\x1d\x39\x2b\x1c\x3e\x2e\x1e\x39\x2b\x1c\x32\x25\x18\x2f\x24\ \x17\x2c\x21\x15\x38\x29\x1b\x40\x30\x1f\x38\x2a\x1b\x36\x29\x1a\ \x28\x1e\x13\x2e\x23\x16\x34\x27\x19\x35\x27\x19\x42\x32\x20\x41\ \x31\x1f\x34\x28\x1a\x3b\x36\x31\x37\x38\x3a\x1e\x1e\x1f\x47\x4a\ \x4c\x5a\x5e\x60\x63\x66\x69\x43\x46\x48\x00\x00\x00\x1b\x1e\x20\ \x5c\x62\x68\x77\x7e\x85\x73\x7b\x82\x76\x7e\x84\x73\x7b\x82\x73\ \x7b\x82\x71\x79\x80\x6d\x76\x7d\x6f\x77\x7e\x6e\x77\x7e\x6c\x74\ \x7d\x6c\x73\x7c\x6b\x74\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7c\ \x68\x72\x7b\x66\x70\x79\x68\x73\x7b\x67\x72\x7a\x6a\x74\x7d\x65\ \x70\x78\x63\x6e\x76\x66\x71\x78\x6b\x74\x7b\x6b\x75\x7c\x00\x00\ \x00\x56\x41\x2b\x4b\x38\x24\x2a\x20\x14\x28\x1e\x14\x1c\x15\x0d\ \x21\x19\x10\x20\x18\x0f\x23\x1b\x10\x22\x19\x10\x1e\x16\x0e\x1e\ \x17\x0e\x1f\x18\x0f\x25\x1c\x12\x26\x1d\x12\x2b\x20\x14\x31\x25\ \x17\x34\x27\x19\x2c\x21\x15\x22\x19\x11\x1d\x16\x0e\x20\x18\x10\ \x1f\x17\x0f\x24\x1b\x11\x23\x1a\x10\x23\x1a\x11\x1d\x16\x0e\x23\ \x1a\x10\x21\x18\x10\x24\x1b\x11\x2c\x21\x15\x3c\x2d\x1d\x35\x27\ \x19\x30\x24\x17\x31\x24\x18\x2c\x21\x15\x2d\x21\x15\x32\x26\x18\ \x34\x27\x19\x2d\x22\x15\x34\x27\x19\x3f\x30\x1f\x3d\x2e\x1d\x39\ \x2b\x1c\x39\x2b\x1c\x2f\x24\x17\x34\x27\x19\x3c\x2c\x1c\x34\x27\ \x19\x2a\x1f\x14\x2e\x22\x16\x2f\x23\x17\x2b\x21\x15\x2e\x22\x16\ \x2d\x22\x16\x31\x26\x17\x3b\x2d\x1d\x3e\x2e\x1d\x34\x27\x19\x32\ \x26\x18\x2d\x22\x16\x24\x1b\x11\x27\x1e\x13\x29\x1f\x14\x2a\x20\ \x14\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2a\x1f\x14\x33\x26\x19\ \x39\x2b\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x2f\x23\x16\x36\ \x29\x1a\x2d\x22\x15\x29\x20\x14\x34\x27\x19\x2f\x24\x17\x29\x1e\ \x13\x35\x27\x19\x31\x25\x18\x34\x27\x19\x34\x27\x19\x30\x24\x16\ \x2f\x23\x17\x37\x29\x1a\x31\x25\x18\x2d\x21\x15\x2e\x22\x16\x30\ \x24\x17\x34\x26\x19\x32\x25\x18\x27\x1d\x12\x23\x1b\x11\x27\x1d\ \x13\x22\x1a\x10\x24\x1b\x11\x21\x18\x10\x1f\x17\x0e\x34\x27\x19\ \x31\x25\x18\x37\x29\x1a\x35\x29\x1a\x3f\x30\x1e\x29\x20\x14\x2e\ \x22\x16\x30\x23\x17\x38\x2a\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x3b\x2c\ \x1c\x40\x30\x1f\x3e\x2f\x1e\x36\x29\x1a\x34\x27\x19\x2a\x20\x14\ \x2d\x21\x16\x3a\x2b\x1c\x3d\x2f\x1e\x37\x29\x1a\x2d\x21\x15\x2d\ \x21\x16\x2a\x1f\x14\x2a\x20\x14\x30\x23\x17\x2f\x24\x17\x23\x1b\ \x12\x3b\x34\x2f\x2f\x30\x31\x36\x37\x38\x30\x32\x34\x59\x5c\x5e\ \x5d\x62\x64\x36\x39\x3c\x00\x00\x00\x2b\x2e\x31\x64\x6a\x70\x73\ \x7a\x80\x73\x7b\x82\x74\x7c\x82\x72\x7a\x81\x71\x79\x80\x70\x78\ \x7f\x6d\x77\x7e\x6f\x77\x7f\x6d\x76\x7d\x6b\x74\x7d\x6b\x74\x7d\ \x6b\x74\x7d\x6b\x75\x7e\x6a\x74\x7d\x6a\x74\x7d\x67\x71\x7a\x65\ \x70\x78\x66\x71\x79\x67\x72\x7a\x68\x74\x7c\x67\x72\x7a\x66\x71\ \x79\x68\x72\x7a\x69\x72\x79\x6a\x74\x7b\x00\x00\x00\x5f\x48\x2f\ \x54\x40\x29\x2f\x24\x17\x1e\x17\x0f\x1f\x17\x0f\x21\x18\x0f\x23\ \x1a\x10\x26\x1c\x12\x2c\x21\x15\x23\x1a\x11\x26\x1c\x12\x28\x1e\ \x13\x2d\x22\x16\x2c\x20\x15\x2d\x21\x16\x28\x1e\x14\x30\x24\x17\ \x2f\x23\x17\x28\x1e\x13\x25\x1c\x12\x23\x1a\x11\x1e\x17\x0f\x23\ \x1a\x11\x24\x1b\x11\x27\x1d\x12\x26\x1c\x12\x2a\x20\x14\x20\x17\ \x0f\x23\x1a\x11\x2b\x20\x14\x33\x26\x18\x32\x25\x18\x35\x28\x19\ \x37\x29\x1b\x31\x25\x18\x34\x28\x19\x3b\x2d\x1d\x2e\x23\x16\x27\ \x1e\x12\x2f\x23\x16\x37\x29\x1a\x38\x2a\x1b\x37\x29\x1a\x33\x26\ \x19\x31\x25\x18\x37\x2a\x1a\x3e\x2e\x1e\x33\x25\x18\x2a\x1f\x14\ \x30\x24\x17\x33\x26\x19\x32\x26\x18\x30\x24\x17\x35\x28\x1a\x33\ \x27\x18\x33\x26\x18\x3d\x2d\x1d\x3a\x2c\x1c\x3c\x2d\x1d\x35\x27\ \x1a\x2b\x20\x15\x2a\x20\x14\x29\x1f\x14\x25\x1c\x12\x28\x1e\x13\ \x2c\x21\x15\x31\x24\x17\x2d\x21\x15\x34\x27\x19\x39\x2b\x1b\x36\ \x28\x1a\x38\x2a\x1b\x38\x2a\x1b\x34\x26\x19\x33\x26\x18\x31\x24\ \x18\x29\x1f\x13\x2d\x22\x15\x2b\x21\x14\x2d\x22\x15\x2e\x22\x16\ \x2e\x22\x16\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x33\x26\x18\x34\ \x27\x19\x30\x24\x17\x2d\x22\x15\x2a\x1f\x14\x2b\x20\x14\x2f\x23\ \x17\x2c\x20\x15\x26\x1d\x12\x31\x25\x17\x2b\x20\x15\x2b\x21\x15\ \x2b\x20\x14\x28\x1d\x13\x32\x25\x18\x2e\x23\x16\x30\x24\x17\x36\ \x28\x1a\x34\x27\x19\x40\x2f\x1e\x3a\x2c\x1d\x2c\x21\x15\x2d\x21\ \x15\x2f\x24\x17\x34\x27\x19\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1c\ \x39\x2b\x1c\x35\x28\x1a\x33\x26\x18\x2b\x20\x14\x2d\x21\x15\x31\ \x25\x18\x3c\x2e\x1d\x2f\x24\x17\x36\x29\x1a\x33\x26\x19\x31\x25\ \x18\x2a\x1f\x14\x2e\x22\x16\x24\x1b\x11\x29\x1f\x15\x38\x31\x2a\ \x23\x25\x26\x40\x42\x44\x36\x38\x3a\x4c\x4e\x51\x5c\x61\x63\x34\ \x36\x38\x00\x00\x00\x36\x39\x3b\x66\x6c\x70\x6f\x75\x7c\x76\x7c\ \x83\x75\x7b\x81\x74\x7c\x83\x71\x79\x80\x6d\x76\x7d\x6a\x74\x7c\ \x6c\x74\x7d\x6b\x74\x7d\x6c\x75\x7e\x6e\x77\x80\x6b\x75\x7d\x6b\ \x75\x7e\x6c\x76\x7f\x6a\x75\x7d\x68\x72\x7b\x67\x72\x7b\x67\x72\ \x7a\x66\x70\x78\x65\x70\x78\x67\x72\x7a\x66\x71\x79\x67\x70\x78\ \x69\x73\x7a\x6b\x74\x7b\x00\x00\x00\x58\x42\x2a\x4d\x3a\x25\x36\ \x28\x1a\x23\x1a\x11\x1f\x17\x0f\x22\x1a\x10\x2a\x1f\x14\x2b\x20\ \x15\x2e\x23\x17\x27\x1d\x13\x28\x1e\x13\x28\x1d\x13\x30\x24\x17\ \x30\x25\x18\x31\x25\x18\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x32\ \x26\x18\x2c\x21\x15\x27\x1d\x13\x24\x1b\x11\x27\x1d\x13\x24\x1b\ \x11\x24\x1b\x11\x2d\x22\x16\x2e\x23\x16\x28\x1e\x14\x22\x1a\x11\ \x2d\x22\x16\x2f\x23\x16\x31\x25\x18\x35\x27\x19\x38\x2a\x1b\x32\ \x25\x17\x2c\x21\x15\x2f\x24\x17\x2b\x21\x15\x24\x1c\x11\x26\x1d\ \x12\x32\x25\x18\x3b\x2b\x1c\x38\x2a\x1b\x36\x29\x1a\x35\x28\x1a\ \x32\x26\x18\x38\x2a\x1b\x36\x28\x1a\x35\x28\x19\x32\x26\x18\x2e\ \x22\x16\x2d\x22\x16\x32\x26\x19\x30\x24\x16\x2e\x22\x16\x34\x27\ \x19\x3d\x2e\x1e\x3e\x2e\x1d\x42\x31\x20\x41\x30\x1f\x32\x26\x18\ \x2f\x23\x16\x29\x1f\x14\x25\x1c\x12\x2a\x20\x14\x2d\x21\x15\x2b\ \x20\x15\x2d\x22\x16\x31\x24\x17\x33\x26\x19\x35\x27\x19\x33\x26\ \x18\x3a\x2c\x1c\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x32\x26\x18\ \x39\x2b\x1b\x39\x2b\x1b\x36\x29\x1a\x28\x1e\x14\x2b\x20\x15\x32\ \x26\x18\x37\x2a\x1a\x37\x29\x1a\x38\x2a\x1b\x36\x29\x1a\x38\x2a\ \x1b\x38\x2a\x1b\x36\x28\x1a\x33\x26\x19\x30\x24\x17\x29\x1f\x14\ \x25\x1c\x12\x2d\x22\x16\x2e\x22\x16\x32\x26\x18\x2c\x22\x15\x29\ \x1e\x14\x31\x25\x18\x2b\x21\x15\x2f\x23\x16\x31\x24\x17\x2e\x22\ \x17\x33\x26\x18\x3d\x2e\x1e\x2b\x1f\x14\x33\x26\x18\x2c\x21\x15\ \x2e\x22\x16\x2e\x22\x16\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x3a\ \x2b\x1c\x33\x26\x19\x33\x26\x18\x32\x25\x18\x2e\x23\x17\x34\x27\ \x18\x2f\x23\x17\x2f\x23\x17\x37\x2a\x1b\x34\x26\x19\x35\x28\x1a\ \x30\x23\x16\x25\x1d\x12\x28\x1f\x14\x3e\x34\x2a\x27\x29\x2a\x40\ \x42\x44\x46\x47\x49\x39\x3a\x3b\x5e\x63\x64\x42\x46\x46\x16\x16\ \x17\x4a\x4d\x51\x65\x6a\x6e\x6f\x75\x7c\x75\x7c\x83\x74\x7c\x82\ \x74\x7c\x83\x70\x78\x7f\x6e\x77\x7e\x68\x71\x7a\x6b\x73\x7c\x6a\ \x73\x7d\x6b\x74\x7e\x6b\x75\x7f\x6c\x76\x7e\x6b\x75\x7e\x6a\x74\ \x7d\x68\x73\x7b\x68\x72\x7b\x67\x72\x7b\x67\x71\x7a\x66\x70\x79\ \x65\x6f\x78\x66\x70\x78\x67\x70\x79\x67\x71\x78\x6a\x74\x7b\x6c\ \x75\x7c\x00\x00\x00\x56\x40\x29\x50\x3c\x26\x33\x27\x18\x2c\x21\ \x15\x22\x19\x10\x22\x1b\x11\x29\x1f\x13\x2c\x20\x15\x21\x19\x10\ \x23\x1a\x10\x27\x1e\x13\x29\x1f\x14\x33\x27\x19\x2f\x24\x16\x25\ \x1c\x11\x20\x18\x0f\x22\x1a\x10\x25\x1c\x12\x2d\x22\x16\x2d\x22\ \x16\x2c\x21\x15\x26\x1d\x12\x25\x1b\x12\x24\x1b\x11\x2b\x20\x14\ \x30\x24\x17\x2e\x22\x16\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x2e\ \x23\x16\x2f\x23\x17\x31\x25\x18\x35\x28\x19\x35\x28\x19\x2d\x21\ \x15\x2b\x20\x15\x29\x1f\x14\x22\x1a\x10\x26\x1c\x12\x2c\x21\x15\ \x31\x25\x18\x33\x26\x18\x35\x28\x19\x37\x2a\x1b\x31\x25\x18\x2f\ \x23\x17\x35\x28\x1a\x34\x28\x19\x33\x26\x19\x34\x27\x19\x2d\x21\ \x15\x33\x26\x18\x2b\x21\x15\x31\x25\x18\x35\x27\x19\x3e\x2e\x1d\ \x3e\x2f\x1e\x40\x30\x1f\x43\x32\x20\x37\x29\x1b\x2d\x22\x15\x28\ \x1f\x14\x22\x1a\x11\x28\x1e\x13\x2f\x23\x16\x30\x24\x17\x31\x24\ \x17\x2b\x20\x15\x2b\x20\x14\x35\x27\x19\x38\x2a\x1a\x3c\x2d\x1d\ \x34\x27\x19\x35\x28\x19\x34\x28\x1a\x39\x2b\x1c\x3c\x2c\x1d\x3e\ \x2e\x1d\x33\x26\x18\x28\x1f\x13\x2d\x22\x16\x34\x27\x19\x2e\x22\ \x16\x30\x24\x17\x35\x27\x19\x38\x2a\x1b\x42\x31\x1f\x41\x30\x1f\ \x42\x31\x20\x3f\x2f\x1f\x3d\x2e\x1d\x31\x25\x18\x2b\x21\x15\x2d\ \x22\x15\x2f\x24\x17\x33\x26\x19\x31\x25\x18\x2c\x21\x15\x2e\x23\ \x16\x32\x25\x18\x2c\x21\x15\x30\x24\x16\x2a\x1f\x14\x2b\x20\x15\ \x2d\x21\x15\x2a\x1f\x14\x2b\x21\x14\x29\x1f\x14\x27\x1c\x12\x25\ \x1c\x12\x25\x1c\x12\x29\x1e\x14\x2f\x23\x16\x37\x29\x1a\x36\x29\ \x1a\x37\x29\x1b\x3b\x2c\x1c\x36\x28\x1a\x32\x26\x18\x33\x26\x19\ \x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x3b\x2b\x1c\x39\x2a\x1b\x21\ \x19\x10\x21\x19\x10\x3c\x30\x24\x24\x26\x27\x3e\x41\x43\x47\x4b\ \x4c\x3f\x43\x45\x4f\x54\x56\x5c\x61\x65\x54\x58\x5c\x5b\x5f\x65\ \x60\x62\x69\x72\x77\x7d\x72\x7a\x81\x73\x7c\x82\x73\x7b\x82\x71\ \x79\x7f\x71\x79\x80\x6c\x75\x7e\x6d\x76\x7f\x6c\x75\x7f\x6d\x76\ \x81\x6b\x74\x7e\x6b\x75\x7f\x6a\x75\x7d\x69\x73\x7c\x68\x72\x7c\ \x69\x73\x7c\x66\x71\x7a\x66\x70\x79\x67\x71\x7a\x68\x72\x7b\x67\ \x70\x78\x68\x72\x7a\x69\x73\x7b\x6c\x75\x7d\x6e\x77\x7e\x00\x00\ \x00\x55\x40\x29\x52\x3e\x28\x3e\x2f\x1d\x2b\x20\x14\x21\x18\x0f\ \x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x21\x18\x10\x24\x1b\x10\x2a\ \x1f\x14\x2c\x21\x15\x2e\x23\x16\x2b\x20\x14\x1d\x16\x0e\x1c\x15\ \x0e\x21\x19\x0f\x20\x19\x10\x24\x1b\x11\x2e\x23\x16\x31\x25\x17\ \x2e\x23\x16\x27\x1d\x12\x25\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2e\ \x23\x16\x32\x25\x18\x39\x2b\x1c\x34\x27\x1a\x31\x24\x17\x28\x1e\ \x13\x2e\x22\x16\x2c\x21\x16\x2d\x22\x16\x30\x24\x17\x30\x24\x17\ \x27\x1d\x12\x22\x1a\x11\x25\x1b\x12\x27\x1e\x13\x2a\x20\x15\x2a\ \x1f\x14\x34\x27\x19\x37\x29\x1b\x2f\x23\x17\x2b\x20\x15\x2f\x23\ \x16\x30\x24\x17\x37\x29\x1a\x3a\x2b\x1c\x34\x26\x19\x34\x26\x19\ \x30\x24\x17\x38\x2a\x1b\x2e\x22\x16\x37\x29\x1a\x37\x29\x1a\x35\ \x28\x1a\x35\x28\x1a\x32\x25\x18\x32\x26\x18\x2f\x24\x17\x25\x1c\ \x12\x27\x1d\x13\x26\x1c\x12\x29\x1e\x13\x2b\x20\x14\x28\x1e\x13\ \x2c\x20\x15\x34\x27\x19\x39\x2c\x1b\x36\x29\x1a\x39\x2b\x1b\x3a\ \x2b\x1c\x38\x29\x1b\x33\x26\x19\x36\x29\x1a\x37\x28\x1a\x35\x27\ \x19\x30\x24\x17\x31\x24\x18\x37\x2a\x1b\x36\x28\x1a\x37\x2a\x1b\ \x36\x29\x1a\x37\x29\x1a\x3c\x2d\x1d\x3a\x2b\x1c\x3f\x2f\x1e\x43\ \x32\x20\x43\x32\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3c\x2c\x1c\x3a\x2c\ \x1c\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x31\x25\x18\x35\x28\x1a\ \x2c\x21\x15\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x27\x1d\x13\x2d\ \x22\x15\x2b\x20\x15\x28\x1e\x13\x26\x1c\x13\x29\x1e\x14\x2e\x23\ \x16\x2b\x21\x15\x28\x1e\x14\x30\x24\x17\x37\x2a\x1b\x34\x27\x19\ \x38\x2a\x1b\x34\x27\x19\x3c\x2d\x1d\x38\x29\x1b\x34\x27\x19\x35\ \x28\x19\x2e\x23\x16\x37\x29\x19\x3d\x2e\x1d\x24\x1b\x11\x22\x1a\ \x10\x3a\x2e\x21\x1e\x1f\x21\x3e\x41\x42\x36\x3b\x3c\x1f\x22\x24\ \x29\x2c\x2e\x6a\x70\x74\x6d\x73\x78\x55\x5b\x60\x5b\x60\x67\x75\ \x7b\x81\x73\x7b\x82\x74\x7c\x82\x71\x79\x80\x70\x77\x7f\x71\x78\ \x81\x6c\x76\x7f\x6e\x78\x81\x6e\x77\x80\x6d\x77\x80\x6b\x75\x7f\ \x6b\x75\x7f\x69\x73\x7d\x68\x73\x7c\x69\x73\x7d\x6a\x74\x7f\x67\ \x71\x7b\x67\x71\x7a\x68\x73\x7c\x69\x74\x7c\x68\x72\x7b\x67\x72\ \x7a\x6b\x74\x7d\x6d\x76\x7f\x6d\x75\x7d\x00\x00\x00\x52\x3e\x28\ \x4f\x3b\x26\x40\x30\x1f\x26\x1d\x12\x23\x19\x10\x20\x18\x0f\x1f\ \x17\x0f\x26\x1c\x12\x2b\x20\x14\x27\x1d\x13\x20\x18\x0f\x20\x18\ \x10\x21\x19\x10\x23\x1a\x11\x19\x13\x0c\x1a\x14\x0d\x1c\x15\x0d\ \x1c\x15\x0e\x1f\x18\x0f\x2e\x23\x16\x37\x29\x1a\x34\x27\x19\x26\ \x1d\x12\x24\x1b\x11\x21\x19\x10\x27\x1d\x13\x2b\x20\x14\x2e\x22\ \x16\x36\x28\x19\x33\x26\x18\x2d\x22\x16\x28\x1e\x13\x27\x1d\x12\ \x29\x1f\x14\x25\x1c\x11\x2e\x22\x16\x2f\x23\x16\x2c\x21\x15\x25\ \x1c\x12\x23\x1b\x11\x26\x1d\x12\x28\x1e\x14\x27\x1d\x13\x2c\x21\ \x15\x31\x25\x17\x2d\x22\x15\x29\x1f\x14\x2c\x21\x15\x32\x25\x18\ \x3a\x2b\x1c\x40\x30\x1f\x3d\x2d\x1d\x37\x29\x1a\x31\x24\x17\x2e\ \x23\x16\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\x38\x2a\x1b\x32\x25\ \x18\x2a\x1f\x14\x2c\x21\x15\x2f\x24\x17\x2c\x21\x15\x34\x27\x19\ \x2d\x22\x15\x2c\x21\x15\x29\x1f\x14\x25\x1c\x12\x2d\x22\x16\x36\ \x28\x19\x3c\x2d\x1d\x34\x27\x19\x38\x2a\x1b\x35\x28\x19\x3b\x2b\ \x1c\x31\x25\x18\x34\x28\x19\x2f\x23\x17\x33\x26\x19\x31\x25\x18\ \x35\x27\x19\x36\x29\x1a\x39\x2b\x1b\x37\x29\x1a\x33\x26\x18\x38\ \x2a\x1b\x35\x28\x1a\x35\x28\x1a\x3c\x2c\x1d\x42\x32\x20\x3e\x2f\ \x1e\x39\x2b\x1c\x3b\x2c\x1c\x3c\x2c\x1c\x39\x2b\x1b\x37\x2a\x1b\ \x33\x26\x18\x31\x24\x18\x34\x27\x19\x3f\x2f\x1f\x37\x2a\x1b\x34\ \x27\x19\x31\x24\x18\x2f\x23\x16\x29\x1f\x13\x30\x24\x17\x30\x24\ \x17\x2f\x23\x16\x2f\x24\x17\x36\x28\x1a\x3c\x2d\x1d\x34\x27\x19\ \x2d\x22\x16\x2a\x1f\x14\x31\x24\x18\x34\x27\x19\x37\x29\x1b\x37\ \x29\x1a\x40\x30\x1f\x3f\x2e\x1f\x37\x29\x1a\x30\x24\x17\x2b\x20\ \x15\x35\x28\x19\x33\x26\x18\x33\x26\x19\x24\x1c\x11\x3d\x31\x23\ \x28\x2a\x2b\x2c\x2a\x28\x0d\x0e\x0f\x1a\x1a\x1c\x1f\x1f\x22\x4d\ \x52\x56\x5f\x65\x69\x4d\x53\x58\x6a\x70\x76\x74\x7b\x81\x71\x79\ \x80\x73\x7b\x81\x70\x78\x7f\x6f\x76\x7d\x6f\x78\x80\x6d\x76\x7f\ \x6d\x76\x7f\x6b\x74\x7d\x6b\x75\x7e\x6c\x76\x7f\x6a\x74\x7d\x69\ \x73\x7c\x6a\x74\x7d\x69\x73\x7d\x69\x73\x7d\x69\x73\x7e\x68\x72\ \x7c\x68\x72\x7c\x66\x70\x7a\x68\x71\x7a\x68\x71\x7a\x6a\x73\x7c\ \x6d\x76\x7f\x6f\x77\x80\x00\x00\x00\x57\x41\x2a\x4c\x38\x24\x44\ \x33\x21\x22\x1a\x11\x26\x1d\x12\x23\x1a\x10\x1d\x15\x0e\x27\x1e\ \x13\x23\x1b\x10\x20\x19\x10\x1f\x17\x0e\x21\x18\x0f\x1c\x15\x0e\ \x1a\x14\x0c\x16\x11\x0b\x16\x11\x0b\x14\x0f\x0a\x16\x10\x0a\x1b\ \x15\x0d\x22\x1a\x10\x26\x1d\x12\x2b\x20\x15\x2a\x1f\x14\x1f\x18\ \x0f\x20\x18\x0f\x27\x1d\x12\x25\x1c\x12\x30\x24\x17\x30\x25\x18\ \x36\x28\x1a\x33\x26\x19\x2b\x20\x15\x27\x1e\x13\x2b\x20\x15\x23\ \x1a\x11\x27\x1d\x13\x2c\x21\x16\x36\x28\x1a\x35\x27\x19\x28\x1e\ \x14\x25\x1b\x12\x27\x1d\x12\x29\x1f\x14\x2b\x20\x15\x2b\x20\x14\ \x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x34\x27\x19\x38\x2a\x1a\x3e\ \x2e\x1e\x37\x2a\x1b\x3a\x2c\x1c\x32\x25\x18\x31\x24\x17\x35\x28\ \x1a\x31\x25\x17\x29\x1f\x14\x34\x27\x19\x2c\x21\x15\x26\x1c\x13\ \x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x34\ \x27\x19\x32\x25\x18\x27\x1d\x13\x2e\x22\x16\x39\x2a\x1b\x3e\x2f\ \x1e\x3f\x2f\x1f\x31\x25\x18\x33\x26\x18\x38\x2a\x1b\x35\x27\x1a\ \x36\x28\x1a\x2c\x21\x15\x30\x23\x17\x2d\x22\x16\x38\x2a\x1b\x3b\ \x2c\x1c\x3a\x2b\x1b\x30\x24\x18\x30\x23\x17\x38\x2a\x1b\x3c\x2d\ \x1d\x3a\x2b\x1c\x3e\x2f\x1e\x42\x32\x20\x44\x33\x21\x44\x33\x20\ \x44\x33\x21\x35\x27\x19\x37\x29\x1a\x3a\x2b\x1b\x37\x29\x1a\x34\ \x27\x19\x35\x28\x19\x3b\x2c\x1d\x42\x31\x20\x38\x2a\x1b\x39\x2b\ \x1c\x35\x28\x19\x35\x28\x19\x2a\x20\x14\x23\x1a\x11\x2a\x20\x14\ \x32\x25\x18\x35\x28\x19\x41\x30\x1f\x3d\x2e\x1d\x32\x26\x18\x28\ \x1e\x13\x29\x1e\x13\x2d\x22\x15\x36\x28\x1a\x36\x28\x19\x3a\x2b\ \x1c\x3c\x2d\x1d\x36\x29\x1a\x33\x27\x19\x2e\x23\x16\x2e\x23\x16\ \x26\x1d\x13\x2a\x20\x14\x23\x1a\x11\x34\x2a\x1e\x32\x34\x35\x0d\ \x0d\x0b\x25\x26\x26\x48\x4b\x4c\x44\x47\x4a\x34\x37\x3d\x49\x4f\ \x54\x54\x5b\x60\x72\x7a\x80\x73\x7b\x81\x71\x79\x80\x73\x7b\x81\ \x72\x7b\x82\x70\x79\x80\x6d\x76\x7f\x71\x7a\x83\x6f\x78\x81\x6b\ \x74\x7d\x6b\x74\x7d\x6a\x74\x7d\x6b\x74\x7d\x68\x72\x7b\x69\x73\ \x7d\x6a\x74\x7e\x69\x73\x7d\x6a\x74\x7e\x6a\x73\x7f\x69\x73\x7d\ \x65\x6f\x78\x67\x71\x7a\x69\x73\x7b\x6b\x74\x7d\x6e\x77\x80\x6f\ \x78\x81\x00\x00\x00\x52\x3e\x27\x51\x3c\x27\x44\x32\x20\x26\x1d\ \x13\x29\x1f\x14\x20\x18\x10\x23\x1a\x11\x26\x1d\x13\x21\x19\x0f\ \x1d\x15\x0d\x1c\x15\x0d\x1f\x18\x0f\x18\x13\x0c\x17\x12\x0b\x17\ \x11\x0b\x1d\x16\x0e\x1d\x15\x0e\x1b\x14\x0d\x1d\x16\x0e\x21\x19\ \x10\x29\x1e\x14\x31\x24\x18\x31\x24\x18\x23\x1b\x11\x1d\x15\x0e\ \x21\x19\x0f\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x38\x29\x1a\x2f\ \x24\x17\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x29\x1f\x13\x29\x1f\ \x14\x32\x26\x18\x30\x24\x17\x36\x28\x1a\x2d\x21\x16\x24\x1a\x11\ \x25\x1c\x11\x27\x1e\x13\x26\x1c\x12\x26\x1c\x12\x2a\x20\x14\x2c\ \x20\x15\x2b\x20\x15\x2b\x20\x15\x30\x23\x17\x3a\x2b\x1c\x39\x2a\ \x1b\x3f\x2f\x1e\x31\x25\x17\x38\x29\x1a\x39\x2b\x1c\x37\x2a\x1a\ \x29\x1f\x14\x32\x26\x18\x37\x2a\x1b\x2b\x20\x15\x2b\x20\x14\x31\ \x25\x18\x2e\x23\x17\x2e\x23\x16\x33\x26\x19\x38\x2a\x1c\x33\x27\ \x19\x2c\x21\x15\x31\x25\x18\x3b\x2c\x1c\x3f\x2f\x1e\x40\x30\x1f\ \x3e\x2e\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x42\x32\x20\x3a\x2b\x1c\x3e\ \x2e\x1d\x3c\x2d\x1d\x3a\x2c\x1c\x46\x34\x21\x49\x37\x23\x47\x35\ \x22\x36\x29\x1a\x3b\x2c\x1d\x38\x2a\x1b\x35\x28\x19\x3a\x2c\x1c\ \x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x41\ \x30\x1f\x3f\x2f\x1f\x45\x33\x22\x36\x29\x1a\x2e\x23\x16\x2c\x21\ \x15\x2b\x20\x15\x3a\x2c\x1c\x3b\x2c\x1d\x34\x27\x19\x3e\x2f\x1e\ \x3b\x2c\x1c\x2a\x20\x14\x28\x1e\x13\x23\x1a\x11\x2e\x22\x16\x31\ \x25\x17\x38\x2a\x1b\x39\x2b\x1c\x38\x2a\x1b\x30\x24\x17\x2c\x21\ \x15\x2a\x1f\x14\x2f\x23\x17\x2b\x21\x15\x32\x25\x18\x37\x29\x1a\ \x33\x26\x18\x34\x28\x19\x32\x26\x18\x34\x27\x18\x35\x28\x1a\x29\ \x1f\x14\x1e\x17\x0f\x45\x36\x26\x27\x29\x2a\x02\x01\x02\x2c\x2e\ \x2f\x24\x28\x2a\x35\x39\x3b\x31\x33\x37\x2f\x33\x37\x6e\x77\x7b\ \x72\x7b\x81\x72\x7b\x81\x75\x7d\x84\x74\x7c\x82\x72\x7a\x81\x6e\ \x78\x7f\x6d\x76\x7f\x6e\x77\x80\x6b\x75\x7e\x6b\x74\x7d\x6b\x74\ \x7d\x6a\x73\x7d\x6b\x74\x7e\x69\x74\x7d\x6a\x74\x7e\x69\x72\x7d\ \x67\x71\x7c\x69\x73\x7e\x6b\x75\x7f\x6b\x75\x7f\x68\x72\x7b\x69\ \x73\x7c\x6c\x75\x7f\x6b\x74\x7c\x6d\x76\x7e\x72\x7a\x82\x00\x00\ \x00\x4f\x3b\x26\x57\x41\x2a\x48\x35\x22\x23\x1b\x11\x26\x1d\x12\ \x2e\x22\x16\x26\x1c\x12\x24\x1c\x12\x2c\x21\x15\x21\x1a\x10\x22\ \x19\x11\x20\x18\x0f\x1a\x14\x0c\x1d\x15\x0e\x1d\x15\x0e\x23\x1b\ \x11\x1f\x17\x0f\x1d\x16\x0d\x20\x17\x0f\x20\x18\x0f\x29\x1e\x13\ \x34\x27\x19\x32\x26\x18\x2e\x23\x16\x24\x1b\x11\x26\x1d\x12\x26\ \x1d\x12\x25\x1c\x12\x28\x1e\x13\x30\x24\x17\x27\x1d\x13\x2b\x20\ \x15\x2b\x21\x15\x38\x29\x1b\x2f\x23\x16\x29\x1f\x13\x24\x1b\x11\ \x31\x25\x18\x34\x27\x1a\x2d\x22\x16\x2c\x21\x15\x31\x24\x17\x2f\ \x23\x16\x30\x24\x17\x31\x25\x18\x2d\x21\x16\x29\x1e\x13\x28\x1d\ \x13\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x35\x28\x19\x30\x24\x17\ \x2a\x1f\x14\x37\x2a\x1b\x37\x2a\x1b\x30\x24\x16\x31\x25\x18\x2b\ \x20\x14\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x39\x2b\x1c\x38\x2a\ \x1b\x37\x29\x1a\x39\x2b\x1b\x33\x26\x18\x32\x26\x18\x2f\x24\x17\ \x30\x23\x17\x3c\x2c\x1c\x3b\x2c\x1c\x37\x29\x1b\x36\x29\x1a\x33\ \x26\x18\x42\x32\x1f\x4b\x38\x24\x47\x35\x22\x4a\x37\x24\x3d\x2e\ \x1d\x33\x27\x19\x3c\x2c\x1d\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ \x37\x2a\x1b\x41\x31\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3b\x2c\x1c\x40\ \x30\x1e\x48\x36\x23\x49\x37\x24\x40\x2f\x1e\x40\x30\x1f\x35\x28\ \x1a\x3a\x2b\x1c\x34\x27\x19\x33\x27\x19\x2c\x21\x15\x2d\x23\x16\ \x32\x26\x19\x32\x26\x18\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x38\ \x2a\x1b\x36\x29\x1a\x27\x1e\x13\x27\x1c\x12\x2b\x21\x15\x30\x25\ \x17\x37\x29\x1a\x3b\x2c\x1c\x35\x28\x19\x32\x25\x18\x2d\x22\x16\ \x2b\x21\x15\x2a\x20\x14\x30\x24\x16\x32\x26\x18\x3a\x2b\x1c\x3a\ \x2c\x1c\x33\x26\x18\x39\x2a\x1b\x33\x26\x18\x2d\x21\x15\x27\x1d\ \x12\x40\x31\x22\x17\x19\x19\x14\x15\x15\x1f\x1f\x21\x3e\x41\x42\ \x53\x56\x58\x32\x34\x35\x1f\x21\x23\x6a\x74\x78\x70\x7a\x7e\x73\ \x7b\x81\x71\x79\x80\x73\x7b\x81\x71\x79\x80\x71\x7a\x81\x6f\x78\ \x81\x6d\x75\x7f\x6c\x75\x7e\x6c\x75\x7e\x6c\x75\x7e\x6b\x74\x7e\ \x6b\x75\x7e\x6b\x75\x7f\x69\x73\x7d\x68\x72\x7c\x68\x72\x7c\x69\ \x73\x7e\x6b\x74\x81\x68\x71\x7c\x67\x71\x7b\x69\x72\x7c\x6f\x78\ \x81\x6d\x76\x7e\x6d\x77\x7e\x6f\x79\x80\x00\x00\x00\x60\x49\x30\ \x56\x40\x2a\x4e\x3a\x26\x25\x1b\x12\x26\x1c\x12\x2b\x21\x15\x30\ \x24\x17\x32\x25\x18\x38\x2a\x1b\x2e\x22\x16\x21\x18\x10\x1b\x14\ \x0d\x1b\x15\x0d\x20\x18\x0f\x24\x1b\x11\x1c\x15\x0d\x19\x13\x0c\ \x1a\x14\x0d\x1e\x17\x0e\x24\x1b\x11\x27\x1d\x12\x30\x24\x17\x2f\ \x23\x17\x26\x1c\x12\x1f\x17\x0f\x26\x1c\x12\x27\x1e\x13\x26\x1d\ \x12\x2d\x22\x16\x2e\x23\x17\x2a\x20\x15\x2b\x20\x14\x2e\x22\x16\ \x35\x28\x1a\x39\x2b\x1c\x35\x28\x19\x29\x1f\x14\x31\x25\x17\x39\ \x2b\x1c\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x33\x26\x19\x32\x26\ \x18\x28\x1f\x13\x24\x1c\x11\x25\x1c\x12\x26\x1d\x12\x26\x1d\x12\ \x27\x1d\x12\x2c\x21\x15\x2b\x21\x14\x33\x26\x18\x34\x27\x19\x33\ \x27\x19\x33\x26\x18\x29\x1f\x14\x34\x27\x19\x2b\x20\x15\x2d\x21\ \x15\x31\x25\x18\x34\x28\x19\x39\x2b\x1b\x38\x2a\x1b\x3b\x2c\x1c\ \x3e\x2e\x1e\x3d\x2d\x1e\x3e\x2e\x1e\x39\x2b\x1c\x33\x26\x18\x35\ \x28\x19\x35\x27\x19\x2f\x23\x17\x33\x27\x19\x34\x28\x19\x43\x32\ \x21\x43\x32\x21\x46\x33\x21\x39\x2b\x1c\x39\x2b\x1c\x37\x29\x1a\ \x2e\x23\x16\x32\x26\x18\x34\x26\x19\x31\x24\x18\x2d\x22\x16\x33\ \x26\x19\x3e\x2e\x1d\x42\x31\x20\x3f\x2f\x1e\x39\x2b\x1c\x44\x33\ \x21\x48\x36\x22\x3f\x2f\x1e\x43\x32\x21\x3b\x2c\x1d\x38\x2a\x1b\ \x3d\x2d\x1e\x35\x28\x19\x2e\x23\x16\x2b\x20\x15\x31\x24\x17\x34\ \x27\x19\x27\x1e\x13\x22\x19\x10\x2d\x22\x15\x33\x26\x18\x3d\x2e\ \x1d\x3e\x2f\x1e\x31\x25\x18\x32\x24\x17\x35\x28\x19\x3d\x2d\x1d\ \x41\x31\x20\x37\x29\x1a\x30\x24\x17\x2c\x21\x15\x2a\x1f\x14\x2c\ \x21\x15\x2e\x23\x15\x31\x25\x18\x40\x30\x1f\x3f\x30\x1f\x38\x29\ \x1a\x3a\x2b\x1c\x34\x27\x19\x2b\x20\x15\x2f\x23\x16\x29\x1f\x16\ \x0f\x0f\x10\x24\x25\x27\x0f\x0f\x11\x3c\x3f\x41\x4f\x54\x55\x27\ \x29\x2b\x22\x22\x25\x4b\x4f\x56\x73\x7b\x81\x72\x7a\x81\x72\x7a\ \x80\x6f\x78\x7f\x6f\x78\x80\x6f\x79\x80\x6e\x78\x7f\x6d\x76\x7f\ \x6d\x77\x7f\x6b\x76\x7e\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\x7d\x69\ \x73\x7d\x6a\x75\x7f\x69\x74\x7d\x6c\x76\x81\x6b\x75\x81\x69\x73\ \x7d\x67\x70\x7a\x69\x73\x7c\x6a\x74\x7d\x6c\x75\x7e\x6d\x77\x7f\ \x6e\x78\x7f\x6e\x77\x7e\x00\x00\x00\x5d\x46\x2e\x48\x36\x23\x43\ \x32\x20\x22\x19\x10\x2a\x20\x14\x29\x1f\x14\x2c\x22\x16\x34\x27\ \x19\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x21\x18\x10\x22\x19\x10\ \x26\x1c\x12\x24\x1a\x11\x21\x18\x0f\x24\x1b\x12\x22\x19\x11\x26\ \x1c\x12\x23\x1b\x11\x23\x1a\x10\x2a\x1f\x14\x28\x1e\x13\x1c\x15\ \x0e\x21\x18\x10\x27\x1d\x12\x29\x20\x14\x30\x24\x17\x2e\x21\x16\ \x26\x1c\x12\x1f\x18\x0f\x1f\x18\x0f\x20\x18\x0f\x2b\x20\x15\x28\ \x1e\x13\x2a\x20\x14\x2f\x23\x16\x37\x2a\x1b\x34\x27\x19\x27\x1d\ \x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\ \x29\x1e\x13\x28\x1e\x13\x21\x19\x10\x26\x1d\x12\x25\x1c\x12\x22\ \x19\x10\x21\x19\x10\x28\x1e\x14\x29\x1f\x14\x2b\x20\x14\x31\x25\ \x18\x24\x1b\x11\x2c\x21\x15\x27\x1d\x12\x26\x1d\x12\x2b\x21\x15\ \x31\x25\x17\x35\x28\x1a\x35\x27\x1a\x3c\x2c\x1d\x44\x33\x21\x41\ \x30\x1f\x3a\x2b\x1c\x34\x27\x19\x35\x28\x19\x35\x27\x19\x31\x25\ \x17\x35\x28\x19\x2b\x1f\x15\x30\x24\x16\x32\x24\x18\x38\x2a\x1b\ \x40\x30\x1f\x39\x2a\x1b\x38\x2a\x1c\x42\x32\x20\x32\x26\x18\x28\ \x1e\x14\x31\x25\x18\x2e\x22\x16\x2c\x21\x15\x2e\x22\x15\x31\x24\ \x17\x39\x2a\x1b\x37\x29\x1a\x31\x25\x17\x38\x2a\x1b\x3c\x2d\x1d\ \x38\x2a\x1b\x3e\x2f\x1e\x43\x32\x20\x41\x30\x1f\x41\x31\x20\x42\ \x31\x20\x3f\x2f\x1f\x40\x30\x1f\x3b\x2b\x1d\x2c\x22\x16\x27\x1e\ \x13\x28\x1e\x13\x2c\x21\x15\x2f\x23\x17\x36\x29\x1a\x38\x2a\x1a\ \x38\x2a\x1b\x33\x26\x18\x2f\x24\x17\x3d\x2e\x1e\x49\x36\x23\x41\ \x31\x1f\x38\x2a\x1b\x30\x24\x17\x32\x26\x18\x2e\x23\x15\x29\x1f\ \x14\x2b\x20\x15\x32\x26\x18\x39\x2a\x1b\x41\x30\x1f\x3e\x2e\x1e\ \x3e\x2f\x1e\x3a\x2b\x1c\x2d\x22\x16\x28\x1f\x14\x0d\x0a\x07\x29\ \x2a\x2c\x13\x14\x15\x31\x36\x39\x39\x3e\x3f\x3e\x41\x44\x37\x39\ \x3e\x3c\x3f\x45\x60\x67\x6e\x72\x7a\x81\x71\x79\x7f\x70\x79\x80\ \x6f\x79\x80\x6f\x78\x80\x6f\x79\x80\x6b\x75\x7d\x6b\x75\x7d\x6e\ \x78\x80\x6d\x77\x81\x6c\x76\x80\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\ \x7d\x68\x73\x7d\x6a\x74\x7f\x69\x73\x7d\x6a\x74\x7e\x68\x72\x7c\ \x6a\x73\x7c\x6b\x76\x7e\x70\x7a\x82\x6f\x79\x80\x6f\x78\x7f\x6e\ \x78\x7f\x00\x00\x00\x46\x35\x22\x47\x35\x22\x3b\x2c\x1c\x1c\x15\ \x0d\x2a\x21\x15\x1e\x17\x0e\x26\x1c\x12\x2b\x20\x15\x27\x1d\x12\ \x31\x25\x17\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\x27\x1d\x13\x25\ \x1c\x12\x1e\x16\x0e\x20\x18\x10\x24\x1c\x12\x27\x1e\x13\x26\x1d\ \x12\x23\x1b\x11\x24\x1b\x11\x25\x1b\x12\x25\x1c\x12\x28\x1e\x13\ \x30\x24\x17\x2d\x21\x15\x29\x1f\x14\x28\x1e\x14\x2a\x20\x14\x2d\ \x23\x16\x2c\x22\x15\x22\x19\x10\x2f\x24\x17\x36\x28\x1a\x2f\x23\ \x17\x38\x2a\x1c\x3f\x2f\x1f\x31\x26\x18\x2d\x22\x15\x2b\x20\x15\ \x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x25\x18\x28\x1e\x13\x24\ \x1b\x12\x22\x1a\x11\x23\x1a\x11\x23\x1a\x11\x23\x1b\x11\x22\x1a\ \x10\x26\x1d\x13\x33\x26\x18\x2f\x23\x16\x2c\x21\x16\x2d\x22\x15\ \x2f\x23\x17\x32\x25\x18\x2e\x23\x16\x30\x24\x18\x35\x27\x19\x3a\ \x2b\x1c\x3d\x2d\x1d\x36\x28\x1a\x34\x27\x19\x36\x29\x1a\x36\x28\ \x1a\x38\x2a\x1b\x36\x28\x1a\x34\x27\x19\x36\x28\x19\x38\x2a\x1b\ \x2a\x1f\x13\x2c\x22\x15\x31\x25\x17\x34\x27\x19\x41\x30\x1f\x3d\ \x2e\x1d\x40\x2f\x1e\x41\x30\x1f\x3d\x2d\x1d\x3c\x2d\x1d\x3a\x2a\ \x1c\x41\x31\x20\x2f\x23\x16\x2c\x21\x15\x30\x24\x18\x33\x27\x19\ \x33\x27\x19\x3e\x2e\x1e\x40\x30\x1f\x38\x2b\x1b\x34\x28\x19\x3c\ \x2c\x1d\x3a\x2b\x1c\x3d\x2e\x1e\x35\x28\x1a\x3d\x2d\x1e\x41\x31\ \x1f\x43\x32\x20\x44\x33\x20\x32\x25\x18\x2e\x23\x16\x23\x1a\x10\ \x25\x1c\x12\x26\x1d\x12\x31\x25\x17\x35\x27\x19\x37\x2a\x1b\x35\ \x28\x1a\x28\x1e\x13\x34\x27\x19\x3e\x2e\x1e\x3d\x2d\x1d\x3d\x2e\ \x1e\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x25\x1c\x12\x24\x1b\x11\ \x32\x26\x19\x30\x25\x17\x2e\x23\x16\x35\x28\x1a\x45\x33\x21\x33\ \x27\x18\x35\x28\x1a\x3a\x2c\x1e\x09\x07\x04\x23\x23\x25\x19\x1b\ \x1c\x3d\x44\x45\x1a\x1e\x1e\x58\x5f\x62\x42\x45\x48\x45\x47\x4c\ \x51\x55\x5c\x6d\x75\x7d\x72\x7a\x80\x6f\x78\x7f\x6c\x76\x7d\x6d\ \x79\x7f\x6f\x79\x80\x6b\x76\x7d\x6a\x75\x7d\x6d\x76\x7f\x6c\x76\ \x80\x6b\x75\x7f\x6a\x74\x7e\x69\x74\x7e\x68\x72\x7c\x67\x71\x7b\ \x69\x73\x7d\x68\x73\x7d\x68\x72\x7c\x6c\x75\x7f\x6a\x75\x7e\x6e\ \x79\x81\x6e\x77\x7f\x6f\x79\x80\x71\x79\x80\x70\x78\x7f\x00\x00\ \x00\x41\x30\x1f\x4c\x39\x25\x3d\x2d\x1d\x1e\x17\x0f\x1f\x17\x0e\ \x1d\x16\x0e\x29\x1e\x14\x24\x1b\x11\x2c\x21\x15\x34\x27\x19\x2b\ \x20\x15\x23\x1a\x11\x1c\x15\x0d\x1f\x17\x0e\x27\x1e\x13\x26\x1d\ \x13\x20\x18\x0f\x2e\x23\x16\x35\x28\x19\x31\x24\x17\x2f\x22\x16\ \x34\x27\x19\x37\x29\x1a\x34\x27\x19\x3d\x2d\x1d\x3c\x2d\x1d\x2f\ \x23\x16\x2e\x22\x16\x2d\x21\x15\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\ \x1c\x24\x1c\x11\x28\x1e\x14\x2c\x21\x15\x25\x1c\x12\x30\x24\x17\ \x39\x2a\x1b\x3a\x2c\x1c\x2e\x23\x16\x28\x1d\x13\x29\x1f\x14\x25\ \x1c\x12\x33\x26\x18\x36\x28\x1a\x2d\x21\x15\x26\x1d\x12\x25\x1c\ \x11\x22\x1a\x10\x2a\x21\x15\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\ \x31\x25\x18\x33\x27\x19\x30\x24\x17\x23\x1a\x11\x25\x1c\x12\x2f\ \x24\x17\x39\x2b\x1b\x32\x25\x18\x34\x28\x19\x3b\x2b\x1c\x37\x29\ \x1a\x31\x25\x17\x34\x27\x19\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\ \x33\x26\x19\x2d\x23\x16\x2d\x22\x16\x33\x25\x19\x39\x2a\x1b\x34\ \x27\x19\x31\x24\x17\x3a\x2b\x1b\x3e\x2f\x1e\x40\x2f\x1e\x42\x32\ \x20\x43\x32\x20\x3a\x2b\x1b\x3a\x2b\x1c\x33\x27\x19\x40\x31\x1f\ \x3d\x2e\x1e\x37\x29\x1b\x3b\x2c\x1c\x3a\x2b\x1c\x34\x27\x19\x2f\ \x23\x17\x35\x28\x1a\x34\x27\x19\x37\x28\x1a\x36\x29\x1a\x39\x2b\ \x1c\x34\x28\x1a\x2c\x21\x15\x2f\x23\x16\x2d\x22\x15\x41\x31\x1f\ \x42\x31\x1f\x36\x29\x1a\x30\x24\x17\x26\x1c\x12\x28\x1e\x12\x28\ \x1e\x13\x2b\x21\x15\x32\x26\x19\x3b\x2c\x1d\x3b\x2c\x1d\x2e\x23\ \x16\x2d\x21\x15\x34\x27\x19\x32\x25\x18\x30\x24\x17\x36\x29\x1a\ \x35\x28\x1a\x32\x26\x18\x2c\x21\x15\x2b\x20\x14\x2e\x22\x15\x2f\ \x23\x17\x2a\x1f\x14\x39\x2a\x1b\x3f\x2f\x1f\x3b\x2c\x1c\x38\x2a\ \x1b\x48\x36\x24\x16\x10\x0a\x24\x24\x27\x11\x12\x13\x2e\x35\x36\ \x2a\x31\x33\x44\x4b\x4e\x38\x3c\x3f\x5b\x60\x63\x4a\x4e\x53\x59\ \x5f\x67\x72\x79\x81\x6f\x79\x80\x6f\x79\x80\x6f\x78\x80\x6d\x78\ \x7f\x6c\x76\x7d\x6d\x77\x7f\x6a\x74\x7e\x6b\x75\x7f\x6c\x76\x80\ \x6b\x75\x7f\x6a\x75\x7e\x67\x71\x7b\x68\x72\x7c\x6a\x74\x7e\x6b\ \x75\x7f\x68\x73\x7c\x6a\x74\x7e\x6d\x76\x80\x70\x79\x81\x6f\x79\ \x81\x6f\x79\x81\x70\x7a\x80\x70\x7a\x80\x00\x00\x00\x45\x34\x21\ \x55\x40\x29\x4a\x38\x24\x27\x1e\x13\x2c\x21\x15\x1a\x13\x0c\x23\ \x1a\x10\x26\x1d\x12\x2f\x23\x17\x34\x27\x19\x39\x2b\x1b\x33\x27\ \x19\x35\x28\x19\x2c\x21\x15\x21\x19\x10\x24\x1b\x11\x20\x18\x0f\ \x23\x1a\x11\x2e\x23\x16\x31\x24\x18\x2f\x23\x16\x2e\x23\x16\x35\ \x28\x19\x35\x29\x1a\x2b\x21\x15\x25\x1c\x12\x2a\x20\x14\x2a\x20\ \x14\x2b\x21\x14\x34\x27\x19\x34\x27\x19\x38\x2a\x1b\x2e\x22\x16\ \x24\x1b\x11\x1f\x17\x0f\x22\x1a\x11\x29\x1f\x14\x30\x24\x17\x2b\ \x20\x15\x33\x27\x19\x36\x29\x1a\x2f\x23\x16\x2f\x23\x16\x31\x24\ \x17\x2b\x20\x15\x23\x1a\x11\x26\x1d\x12\x28\x1e\x13\x27\x1d\x12\ \x2d\x21\x15\x26\x1c\x12\x25\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\ \x22\x16\x30\x24\x17\x2d\x22\x16\x31\x25\x18\x31\x25\x18\x32\x25\ \x18\x30\x24\x17\x2f\x22\x16\x39\x2b\x1c\x42\x32\x20\x3c\x2d\x1d\ \x37\x29\x1a\x2e\x23\x16\x2c\x22\x15\x2d\x22\x16\x2e\x22\x16\x37\ \x29\x1a\x3a\x2c\x1c\x37\x29\x1a\x3a\x2b\x1b\x32\x25\x18\x31\x25\ \x18\x31\x24\x17\x3e\x2e\x1d\x45\x34\x21\x44\x33\x21\x43\x32\x20\ \x3f\x30\x1f\x43\x32\x20\x3c\x2d\x1d\x44\x32\x21\x41\x30\x1f\x46\ \x35\x22\x4d\x39\x25\x48\x36\x23\x40\x30\x1f\x32\x25\x18\x2e\x23\ \x17\x29\x1f\x14\x27\x1d\x13\x2d\x22\x16\x2d\x23\x16\x32\x25\x18\ \x2e\x23\x17\x37\x29\x1a\x31\x25\x17\x3f\x2f\x1e\x43\x33\x21\x3d\ \x2e\x1d\x34\x27\x19\x28\x1e\x13\x23\x1b\x11\x26\x1c\x12\x2e\x23\ \x17\x39\x2b\x1c\x3b\x2d\x1d\x35\x27\x19\x30\x24\x17\x2c\x21\x15\ \x2b\x21\x14\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x2e\x22\x16\x35\ \x28\x1a\x3c\x2e\x1d\x34\x26\x19\x36\x29\x1a\x31\x25\x18\x30\x24\ \x16\x37\x29\x1a\x3f\x2f\x1e\x3a\x2b\x1b\x35\x27\x19\x35\x28\x1a\ \x1f\x17\x0f\x0f\x0f\x11\x04\x04\x04\x27\x2c\x2d\x4c\x54\x56\x1e\ \x24\x28\x2d\x2f\x33\x69\x6f\x74\x5d\x61\x67\x4d\x54\x5b\x67\x6f\ \x76\x6f\x79\x80\x6e\x78\x7f\x6e\x78\x7f\x6c\x77\x7e\x6f\x7a\x81\ \x6e\x79\x81\x6b\x76\x7e\x6a\x75\x7d\x69\x74\x7c\x69\x75\x7d\x69\ \x74\x7c\x68\x73\x7d\x69\x74\x7d\x69\x74\x7c\x68\x73\x7b\x6a\x75\ \x7d\x6c\x77\x7f\x6d\x78\x80\x6e\x77\x80\x6e\x78\x80\x6d\x76\x7f\ \x71\x7b\x82\x70\x79\x80\x00\x00\x00\x3c\x2d\x1d\x4f\x3a\x26\x4b\ \x38\x24\x24\x1b\x11\x22\x1a\x10\x19\x13\x0c\x20\x17\x0e\x2a\x1f\ \x13\x37\x29\x1a\x30\x24\x17\x39\x2b\x1c\x32\x26\x18\x2d\x22\x16\ \x2f\x23\x17\x25\x1c\x12\x28\x1f\x13\x23\x1b\x11\x21\x19\x10\x24\ \x1c\x11\x2d\x21\x15\x33\x26\x18\x33\x26\x18\x35\x28\x19\x31\x25\ \x18\x3a\x2b\x1c\x33\x26\x19\x24\x1b\x11\x20\x18\x0f\x21\x19\x10\ \x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x34\x27\x19\x2d\x22\x16\x29\ \x1f\x14\x2b\x20\x14\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x34\x27\ \x19\x33\x26\x18\x34\x28\x1a\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\ \x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x2d\x22\x16\x2c\x22\x15\x36\ \x29\x1a\x35\x28\x19\x3b\x2c\x1c\x43\x32\x20\x3d\x2e\x1e\x36\x29\ \x1a\x3c\x2d\x1e\x36\x29\x1a\x2c\x21\x15\x36\x28\x1a\x3b\x2c\x1c\ \x3a\x2c\x1d\x2f\x24\x16\x36\x28\x1a\x2d\x22\x15\x2b\x20\x14\x2b\ \x20\x14\x2c\x21\x15\x37\x29\x1b\x39\x2a\x1c\x32\x25\x18\x35\x28\ \x19\x3a\x2c\x1c\x40\x30\x1f\x3e\x2e\x1e\x3b\x2c\x1d\x38\x29\x1b\ \x3a\x2b\x1c\x3d\x2e\x1d\x4b\x38\x24\x43\x32\x20\x3a\x2c\x1c\x35\ \x28\x1a\x31\x25\x17\x36\x29\x1a\x3d\x2e\x1d\x3e\x2e\x1e\x42\x31\ \x20\x42\x31\x20\x43\x32\x20\x35\x29\x1a\x2e\x23\x16\x2c\x21\x15\ \x2a\x20\x15\x2a\x1f\x14\x2e\x22\x16\x2d\x22\x15\x2e\x22\x16\x2e\ \x23\x16\x35\x28\x1a\x43\x32\x20\x46\x34\x21\x3e\x2e\x1d\x32\x26\ \x18\x2f\x23\x17\x2c\x20\x15\x33\x26\x18\x35\x28\x19\x35\x28\x19\ \x3d\x2e\x1e\x37\x29\x1a\x34\x27\x19\x32\x26\x18\x2a\x1f\x14\x29\ \x1f\x14\x2f\x23\x17\x2d\x22\x16\x31\x25\x18\x3b\x2c\x1c\x39\x2b\ \x1c\x35\x28\x1a\x39\x2c\x1c\x31\x25\x18\x31\x25\x17\x34\x26\x19\ \x37\x29\x1b\x31\x24\x17\x31\x25\x18\x28\x1f\x14\x25\x1b\x12\x1e\ \x1f\x21\x00\x00\x00\x23\x26\x26\x40\x48\x49\x16\x19\x1b\x2a\x2c\ \x2f\x73\x79\x7f\x6e\x74\x7b\x4d\x52\x5b\x55\x5a\x63\x6c\x73\x7c\ \x6d\x76\x7f\x6c\x76\x7e\x6b\x76\x7d\x6d\x78\x7f\x6d\x77\x80\x69\ \x74\x7c\x6b\x75\x7d\x69\x73\x7b\x69\x74\x7c\x6a\x75\x7d\x69\x75\ \x7e\x69\x75\x7e\x68\x74\x7d\x69\x74\x7d\x6a\x75\x7e\x6c\x77\x7f\ \x6c\x78\x80\x6c\x76\x7f\x6f\x78\x81\x72\x7c\x84\x71\x7b\x82\x74\ \x7d\x83\x00\x00\x00\x3f\x2f\x1f\x47\x35\x22\x55\x3f\x29\x35\x28\ \x1a\x21\x19\x10\x1d\x16\x0e\x22\x1a\x11\x2c\x21\x16\x28\x1e\x14\ \x32\x26\x18\x38\x2a\x1b\x38\x2a\x1b\x2c\x21\x15\x31\x25\x18\x27\ \x1d\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x28\x1d\x13\x28\x1e\ \x13\x25\x1b\x12\x21\x19\x10\x25\x1b\x11\x29\x1f\x14\x31\x25\x17\ \x35\x28\x19\x2a\x1f\x14\x24\x1b\x11\x1f\x17\x0f\x23\x1b\x11\x26\ \x1d\x12\x2d\x22\x16\x39\x2b\x1c\x3f\x2f\x1f\x30\x24\x17\x29\x1f\ \x14\x23\x1a\x11\x24\x1b\x11\x23\x1a\x10\x2e\x23\x16\x33\x26\x19\ \x31\x25\x17\x33\x26\x18\x2e\x22\x16\x2b\x20\x14\x2b\x20\x14\x23\ \x1b\x11\x23\x1b\x11\x2b\x20\x14\x30\x24\x17\x32\x25\x18\x43\x32\ \x21\x3b\x2c\x1c\x3d\x2d\x1d\x41\x31\x1f\x31\x25\x17\x30\x24\x18\ \x33\x26\x18\x31\x25\x18\x34\x27\x19\x3e\x2e\x1e\x34\x27\x19\x2f\ \x23\x16\x2c\x21\x15\x2b\x20\x14\x2b\x20\x14\x2c\x21\x15\x2c\x21\ \x15\x2c\x21\x15\x2f\x23\x17\x29\x1f\x14\x2b\x20\x15\x30\x24\x17\ \x3c\x2c\x1d\x3c\x2c\x1d\x34\x26\x19\x2f\x23\x17\x2f\x23\x16\x33\ \x26\x18\x40\x30\x1f\x48\x36\x23\x3a\x2b\x1c\x36\x28\x1a\x2f\x23\ \x16\x32\x25\x18\x35\x28\x19\x38\x2a\x1b\x39\x2b\x1b\x41\x30\x1f\ \x4b\x38\x24\x3e\x2d\x1d\x3e\x2e\x1e\x35\x28\x1a\x32\x26\x18\x37\ \x29\x1b\x30\x24\x17\x31\x25\x17\x32\x25\x18\x31\x24\x17\x35\x27\ \x1a\x3b\x2d\x1c\x3c\x2e\x1d\x46\x34\x22\x4b\x38\x25\x38\x2b\x1b\ \x38\x2b\x1b\x34\x28\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x39\ \x2a\x1b\x2d\x22\x15\x2d\x22\x15\x2a\x20\x15\x2d\x22\x16\x33\x27\ \x19\x2b\x21\x15\x2a\x1f\x15\x2f\x23\x17\x35\x27\x19\x32\x26\x18\ \x3e\x2f\x1e\x33\x26\x18\x2c\x21\x16\x2d\x22\x16\x32\x25\x18\x32\ \x26\x18\x2e\x23\x16\x20\x18\x10\x10\x0d\x08\x29\x2a\x2b\x03\x03\ \x03\x01\x01\x01\x0c\x0e\x0e\x05\x06\x07\x33\x37\x3b\x65\x6d\x72\ \x6c\x75\x7a\x6a\x70\x77\x45\x4b\x55\x5b\x63\x6d\x6f\x77\x80\x6d\ \x76\x7e\x6a\x74\x7c\x6a\x75\x7c\x6d\x77\x7f\x6b\x76\x7e\x6b\x76\ \x7e\x69\x74\x7c\x68\x73\x7b\x69\x74\x7c\x6c\x77\x7f\x6b\x76\x7f\ \x6a\x75\x7e\x6a\x75\x7f\x6a\x76\x7e\x6b\x76\x7e\x6c\x77\x7f\x6f\ \x79\x80\x71\x7b\x82\x72\x7c\x83\x71\x7b\x82\x73\x7c\x82\x00\x00\ \x00\x45\x34\x22\x4c\x39\x24\x4b\x38\x24\x39\x2b\x1c\x30\x23\x17\ \x1d\x16\x0e\x2a\x20\x14\x33\x26\x19\x33\x27\x18\x2d\x22\x15\x2d\ \x22\x16\x2e\x22\x16\x2d\x22\x15\x29\x1f\x13\x2a\x1f\x14\x22\x1a\ \x10\x20\x18\x0f\x24\x1b\x11\x29\x1f\x14\x26\x1d\x12\x26\x1c\x12\ \x27\x1d\x13\x27\x1e\x13\x2d\x22\x15\x32\x26\x18\x39\x2a\x1b\x38\ \x2a\x1b\x29\x1e\x13\x28\x1e\x13\x20\x18\x0f\x2b\x21\x15\x39\x2a\ \x1b\x38\x2a\x1b\x3e\x2e\x1e\x33\x26\x18\x2d\x22\x16\x24\x1b\x11\ \x24\x1a\x11\x25\x1c\x12\x2b\x21\x15\x31\x24\x17\x32\x25\x18\x42\ \x31\x1f\x40\x30\x1f\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x25\x1c\ \x12\x24\x1b\x11\x2d\x22\x15\x2b\x20\x15\x2f\x24\x17\x30\x24\x17\ \x2e\x23\x16\x2e\x22\x16\x33\x26\x18\x37\x29\x1a\x2f\x23\x17\x3b\ \x2c\x1c\x45\x34\x22\x3e\x2f\x1e\x36\x29\x1a\x37\x29\x1b\x37\x29\ \x1b\x2e\x22\x16\x27\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x21\x15\ \x2a\x20\x14\x2d\x22\x15\x34\x28\x19\x33\x26\x19\x3b\x2c\x1d\x3e\ \x2e\x1d\x3b\x2c\x1d\x2e\x22\x16\x28\x1e\x13\x33\x26\x18\x45\x34\ \x21\x4d\x3a\x26\x3b\x2c\x1d\x39\x2b\x1c\x32\x26\x18\x38\x29\x1b\ \x33\x25\x19\x2f\x24\x17\x35\x28\x19\x3e\x2e\x1d\x3c\x2c\x1d\x31\ \x25\x18\x35\x28\x19\x36\x29\x1a\x31\x25\x17\x32\x25\x17\x2f\x24\ \x17\x38\x2a\x1b\x3a\x2b\x1c\x34\x27\x19\x37\x29\x19\x34\x27\x19\ \x32\x25\x18\x47\x35\x24\x2c\x21\x16\x2b\x21\x14\x30\x23\x17\x42\ \x32\x21\x34\x28\x1a\x39\x2b\x1b\x36\x28\x19\x3d\x2d\x1d\x3a\x2c\ \x1c\x2c\x22\x16\x2b\x20\x15\x2d\x21\x16\x2d\x21\x15\x2e\x23\x16\ \x2b\x20\x15\x33\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x40\x30\x1f\x3a\ \x2c\x1c\x30\x23\x17\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x34\x27\ \x19\x29\x1f\x14\x18\x11\x0c\x18\x18\x19\x24\x24\x26\x00\x00\x00\ \x01\x01\x01\x28\x2a\x2c\x49\x4e\x54\x4a\x51\x59\x6a\x72\x78\x71\ \x78\x7f\x5a\x5f\x69\x42\x48\x53\x68\x6f\x78\x6d\x75\x7e\x6b\x76\ \x7e\x6a\x74\x7c\x6d\x78\x80\x6b\x76\x7e\x6b\x76\x7e\x6b\x76\x7e\ \x6a\x75\x7c\x6a\x75\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\x69\ \x74\x7d\x6a\x75\x7d\x6b\x76\x7e\x6c\x77\x7e\x71\x7b\x82\x71\x7b\ \x83\x70\x7a\x81\x71\x7b\x82\x72\x7c\x83\x00\x00\x00\x3c\x2d\x1d\ \x4a\x37\x24\x43\x32\x20\x2f\x24\x17\x2b\x20\x15\x1b\x14\x0d\x23\ \x1a\x11\x2b\x21\x15\x28\x1e\x13\x25\x1b\x11\x27\x1e\x13\x28\x1e\ \x13\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\x26\x1c\x11\x2a\x20\x14\ \x32\x26\x18\x38\x2a\x1b\x39\x2b\x1c\x31\x25\x18\x2c\x21\x15\x28\ \x1e\x13\x26\x1c\x12\x30\x23\x17\x34\x27\x19\x37\x29\x1a\x30\x24\ \x17\x33\x27\x19\x25\x1d\x12\x25\x1c\x12\x2e\x23\x16\x31\x25\x18\ \x3e\x2f\x1e\x2f\x23\x16\x30\x24\x17\x28\x1e\x13\x1f\x17\x0e\x1e\ \x17\x0f\x22\x1a\x11\x29\x1f\x13\x2c\x21\x15\x35\x27\x19\x34\x27\ \x19\x2c\x21\x15\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x25\x1c\x12\ \x29\x1f\x14\x27\x1d\x13\x2c\x20\x15\x2e\x22\x16\x2b\x20\x14\x2e\ \x22\x16\x30\x25\x17\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x3d\x2e\ \x1d\x43\x32\x20\x41\x30\x1f\x36\x29\x1a\x33\x27\x19\x35\x28\x19\ \x27\x1d\x12\x23\x1a\x10\x29\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x28\ \x1e\x13\x2e\x23\x16\x35\x28\x1a\x39\x2a\x1c\x3a\x2b\x1c\x34\x27\ \x19\x2b\x20\x14\x28\x1e\x14\x2f\x24\x17\x2c\x22\x15\x34\x28\x19\ \x33\x26\x18\x31\x25\x17\x33\x26\x19\x39\x2a\x1b\x32\x26\x18\x2c\ \x21\x15\x37\x2a\x1b\x39\x2b\x1c\x3a\x2b\x1c\x3c\x2d\x1d\x3c\x2d\ \x1d\x38\x2a\x1c\x3a\x2b\x1b\x36\x28\x1a\x35\x28\x19\x3d\x2e\x1e\ \x44\x33\x21\x3c\x2d\x1d\x35\x27\x19\x35\x27\x19\x32\x25\x18\x37\ \x29\x1b\x2d\x22\x16\x25\x1b\x12\x28\x1e\x13\x2c\x22\x15\x32\x25\ \x18\x2d\x22\x15\x2b\x20\x15\x3b\x2c\x1c\x3d\x2e\x1e\x3a\x2b\x1c\ \x34\x27\x19\x37\x29\x1a\x31\x24\x17\x2b\x20\x15\x2b\x20\x14\x32\ \x26\x18\x30\x25\x17\x3c\x2d\x1d\x40\x2f\x1f\x3b\x2c\x1c\x37\x29\ \x1b\x35\x28\x19\x3e\x2e\x1e\x42\x31\x20\x34\x27\x19\x35\x28\x1a\ \x24\x1b\x11\x22\x23\x23\x3b\x3d\x3e\x17\x18\x19\x25\x26\x28\x54\ \x57\x5a\x5a\x5f\x64\x44\x49\x51\x5b\x61\x69\x6e\x75\x7d\x70\x76\ \x7f\x4a\x50\x5b\x4b\x52\x5c\x6c\x74\x7d\x6d\x78\x80\x6a\x75\x7d\ \x6b\x76\x7e\x6a\x75\x7d\x69\x75\x7d\x6a\x75\x7d\x69\x75\x7d\x68\ \x75\x7d\x67\x73\x7d\x68\x73\x7d\x69\x74\x7d\x6a\x75\x7d\x6b\x75\ \x7d\x6c\x76\x7e\x70\x7a\x82\x71\x7b\x83\x73\x7c\x85\x71\x7b\x82\ \x71\x7b\x82\x71\x7b\x81\x00\x00\x00\x3f\x2f\x1e\x53\x3e\x29\x4d\ \x39\x25\x41\x31\x1f\x27\x1e\x13\x18\x12\x0b\x15\x0f\x09\x1f\x17\ \x0f\x1e\x16\x0e\x1f\x18\x0e\x26\x1c\x12\x28\x1e\x13\x28\x1f\x13\ \x30\x25\x18\x28\x1f\x13\x1f\x17\x0e\x27\x1d\x13\x34\x27\x19\x40\ \x30\x1e\x3e\x2f\x1d\x38\x2a\x1b\x31\x24\x18\x29\x1f\x14\x27\x1e\ \x13\x27\x1d\x12\x26\x1c\x12\x28\x1e\x13\x2a\x20\x14\x30\x23\x17\ \x34\x27\x18\x27\x1d\x12\x29\x1f\x13\x29\x1f\x14\x31\x25\x18\x2f\ \x23\x17\x2a\x1f\x14\x1f\x17\x0f\x27\x1d\x13\x1e\x17\x0e\x1f\x17\ \x0f\x23\x19\x11\x29\x1f\x14\x2e\x22\x16\x31\x24\x17\x33\x26\x19\ \x33\x26\x18\x2e\x22\x16\x28\x1e\x14\x2a\x20\x14\x25\x1c\x12\x25\ \x1c\x12\x2a\x1f\x14\x27\x1d\x13\x28\x1f\x13\x2f\x23\x16\x31\x24\ \x18\x27\x1d\x13\x27\x1e\x13\x35\x28\x1a\x38\x2a\x1b\x44\x32\x20\ \x41\x31\x1f\x3d\x2e\x1d\x33\x26\x18\x2c\x21\x15\x2a\x1f\x14\x27\ \x1d\x13\x24\x1b\x12\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2d\x21\ \x15\x2e\x23\x16\x33\x26\x18\x3a\x2b\x1c\x38\x29\x1b\x36\x29\x1a\ \x37\x29\x1a\x36\x2a\x1b\x41\x32\x1f\x3a\x2b\x1c\x38\x2a\x1b\x46\ \x34\x21\x33\x26\x18\x3a\x2b\x1c\x3c\x2e\x1d\x30\x24\x17\x37\x29\ \x1b\x36\x28\x19\x38\x2a\x1b\x34\x27\x19\x31\x25\x18\x35\x28\x1a\ \x33\x26\x19\x30\x24\x17\x32\x26\x18\x42\x32\x20\x3a\x2b\x1c\x37\ \x2a\x1b\x2f\x23\x16\x38\x29\x1a\x31\x25\x17\x38\x29\x1b\x3e\x2e\ \x1e\x3a\x2b\x1c\x3e\x2e\x1d\x42\x31\x20\x3e\x2e\x1e\x35\x28\x1a\ \x33\x26\x18\x39\x2a\x1b\x41\x30\x20\x38\x2a\x1b\x32\x25\x18\x39\ \x2b\x1c\x33\x26\x18\x2f\x24\x16\x2b\x20\x15\x37\x29\x1a\x37\x2a\ \x1b\x3a\x2b\x1c\x39\x2b\x1b\x35\x28\x1a\x38\x2a\x1a\x34\x27\x19\ \x38\x2a\x1b\x41\x30\x1f\x36\x29\x1a\x36\x29\x1b\x1e\x16\x0f\x2d\ \x2e\x2f\x39\x3d\x3e\x38\x3a\x3d\x35\x38\x3c\x5c\x60\x64\x62\x67\ \x6d\x4f\x55\x5d\x48\x4d\x56\x68\x6e\x77\x6f\x77\x7f\x6a\x71\x7b\ \x42\x49\x55\x59\x61\x6b\x6c\x77\x7f\x6c\x77\x7f\x6c\x77\x7f\x67\ \x73\x7b\x6a\x75\x7d\x6a\x75\x7d\x68\x75\x7d\x67\x74\x7c\x68\x73\ \x7d\x69\x73\x7e\x6b\x74\x7e\x6a\x74\x7d\x6c\x75\x7e\x6b\x75\x7e\ \x71\x7a\x82\x73\x7d\x85\x73\x7d\x84\x71\x7b\x82\x72\x7c\x83\x72\ \x7c\x81\x00\x00\x00\x47\x35\x22\x60\x48\x2f\x51\x3d\x28\x43\x32\ \x21\x20\x18\x0f\x21\x18\x0f\x1f\x17\x0f\x22\x19\x10\x22\x1a\x11\ \x25\x1c\x12\x2c\x21\x15\x23\x1a\x11\x24\x1b\x11\x2d\x22\x15\x2c\ \x21\x15\x23\x1a\x11\x27\x1d\x12\x2c\x21\x15\x32\x26\x18\x39\x2b\ \x1b\x35\x28\x1a\x2c\x21\x15\x22\x1a\x10\x22\x1a\x10\x24\x1c\x11\ \x24\x1b\x11\x29\x1f\x14\x2d\x21\x16\x37\x29\x1a\x37\x2a\x1b\x26\ \x1c\x12\x30\x24\x18\x2f\x23\x16\x34\x27\x19\x27\x1d\x13\x26\x1c\ \x12\x26\x1d\x12\x30\x24\x17\x23\x1b\x11\x24\x1a\x11\x2a\x20\x14\ \x27\x1d\x12\x2b\x20\x14\x36\x28\x1a\x3c\x2d\x1d\x36\x28\x19\x2f\ \x24\x17\x28\x1e\x13\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x2c\x21\ \x15\x2a\x1f\x14\x28\x1e\x13\x25\x1c\x12\x25\x1b\x12\x26\x1c\x12\ \x2f\x23\x17\x2e\x22\x17\x2e\x22\x16\x39\x2b\x1b\x31\x25\x17\x33\ \x26\x18\x31\x25\x17\x2c\x21\x15\x2c\x21\x15\x2a\x20\x14\x2e\x23\ \x16\x28\x1e\x13\x2a\x20\x14\x2b\x20\x14\x2b\x20\x15\x2d\x22\x16\ \x35\x28\x1a\x2f\x23\x17\x34\x26\x19\x34\x27\x19\x33\x26\x19\x37\ \x29\x1b\x3c\x2d\x1d\x3e\x2e\x1e\x36\x29\x1b\x39\x2b\x1b\x26\x1d\ \x12\x28\x1e\x13\x32\x26\x18\x31\x25\x17\x30\x24\x17\x31\x24\x17\ \x34\x27\x19\x35\x28\x1a\x32\x25\x18\x2d\x21\x15\x2c\x21\x15\x2c\ \x21\x15\x2e\x23\x16\x2e\x22\x16\x38\x2a\x1b\x37\x29\x1b\x42\x31\ \x20\x40\x30\x1f\x38\x2a\x1c\x3b\x2c\x1c\x40\x30\x20\x3a\x2b\x1c\ \x38\x2a\x1c\x43\x32\x21\x3f\x2f\x1d\x34\x27\x19\x2c\x21\x15\x2e\ \x23\x16\x30\x24\x17\x30\x24\x17\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\ \x1b\x2a\x1f\x14\x27\x1e\x13\x2d\x22\x16\x2b\x20\x15\x39\x2b\x1b\ \x41\x31\x1f\x3b\x2d\x1d\x38\x2a\x1b\x3d\x2e\x1e\x3a\x2b\x1c\x3c\ \x2c\x1c\x38\x2a\x1b\x2e\x23\x16\x27\x1d\x13\x2a\x2c\x2d\x38\x3d\ \x3e\x3f\x42\x45\x32\x36\x3a\x48\x4c\x52\x62\x6a\x6f\x61\x69\x6f\ \x48\x4d\x56\x55\x5c\x65\x6b\x74\x7e\x6e\x77\x80\x61\x69\x73\x3e\ \x44\x4f\x5b\x65\x6e\x6d\x77\x80\x6a\x75\x7d\x69\x75\x7c\x6a\x76\ \x7d\x6a\x76\x7e\x69\x75\x7d\x69\x75\x7d\x6a\x74\x7e\x69\x73\x7e\ \x6b\x74\x7e\x6c\x76\x80\x6b\x75\x7e\x6d\x76\x7f\x6f\x79\x81\x72\ \x7c\x84\x71\x7b\x82\x70\x7a\x81\x72\x7d\x82\x73\x7d\x81\x00\x00\ \x00\x50\x3c\x26\x67\x4d\x32\x55\x40\x2a\x4f\x3b\x26\x24\x1b\x11\ \x2a\x1f\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x26\x1c\x12\x28\ \x1e\x13\x25\x1b\x11\x24\x1c\x11\x27\x1d\x12\x27\x1d\x12\x28\x1e\ \x13\x28\x1e\x13\x25\x1c\x12\x2e\x23\x16\x36\x28\x1a\x37\x2a\x1b\ \x33\x26\x18\x29\x1f\x14\x28\x1f\x13\x2a\x20\x14\x28\x1e\x13\x27\ \x1e\x13\x2a\x1f\x14\x35\x28\x19\x2f\x24\x17\x2a\x1f\x14\x28\x1e\ \x13\x26\x1c\x12\x2c\x21\x15\x27\x1e\x13\x2b\x20\x15\x2a\x20\x15\ \x2c\x21\x15\x29\x1f\x14\x27\x1d\x13\x2b\x20\x15\x24\x1c\x11\x28\ \x1e\x13\x31\x25\x17\x39\x2a\x1b\x3a\x2c\x1c\x34\x26\x18\x29\x1e\ \x13\x28\x1e\x13\x2b\x21\x15\x29\x1f\x14\x2b\x20\x14\x21\x19\x10\ \x24\x1b\x11\x23\x1a\x11\x1d\x16\x0e\x29\x1f\x14\x2e\x22\x16\x36\ \x28\x1a\x38\x2a\x1b\x3d\x2e\x1e\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\ \x1f\x38\x2a\x1b\x34\x27\x19\x31\x26\x18\x2f\x23\x17\x26\x1d\x12\ \x24\x1b\x11\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x34\x27\x19\x31\ \x24\x18\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x2f\x22\x16\x32\x26\ \x18\x3b\x2c\x1c\x36\x29\x1a\x3a\x2b\x1c\x31\x24\x18\x2b\x20\x14\ \x35\x28\x19\x30\x24\x17\x30\x24\x16\x39\x2b\x1b\x39\x2b\x1c\x39\ \x2a\x1b\x37\x29\x1a\x30\x24\x17\x2d\x22\x16\x2a\x1f\x14\x2a\x20\ \x14\x2e\x22\x16\x37\x29\x1a\x3b\x2b\x1c\x43\x32\x21\x3f\x2f\x1f\ \x38\x2a\x1b\x38\x29\x1b\x32\x25\x18\x34\x28\x19\x38\x2a\x1b\x3d\ \x2e\x1e\x42\x31\x20\x3a\x2b\x1b\x30\x24\x17\x2d\x22\x16\x2b\x21\ \x15\x32\x25\x18\x34\x26\x19\x38\x2a\x1b\x37\x2a\x1a\x34\x27\x19\ \x2c\x21\x15\x2c\x21\x15\x33\x26\x18\x38\x2a\x1c\x3b\x2c\x1c\x3c\ \x2d\x1d\x2e\x22\x16\x34\x27\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ \x1b\x37\x29\x1a\x2b\x21\x14\x18\x1a\x1a\x3a\x3d\x3f\x41\x44\x47\ \x3f\x43\x46\x35\x39\x3e\x5b\x63\x66\x64\x6c\x70\x5d\x64\x6a\x3f\ \x46\x4e\x5d\x65\x6e\x6c\x76\x7f\x6e\x77\x80\x57\x5f\x69\x3c\x45\ \x51\x68\x72\x7b\x6b\x76\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\ \x68\x75\x7c\x69\x75\x7e\x69\x74\x7e\x69\x73\x7d\x6d\x76\x80\x6c\ \x75\x7f\x6c\x75\x7e\x6f\x78\x81\x71\x7b\x83\x72\x7b\x83\x73\x7d\ \x84\x72\x7c\x83\x75\x7f\x84\x74\x7c\x82\x00\x00\x00\x4f\x3b\x26\ \x57\x41\x2a\x50\x3c\x27\x52\x3e\x28\x26\x1c\x12\x2d\x22\x16\x29\ \x1f\x14\x2b\x21\x15\x3a\x2b\x1c\x34\x27\x19\x31\x24\x17\x35\x28\ \x19\x29\x1f\x14\x28\x1e\x13\x29\x1f\x13\x29\x1e\x13\x24\x1b\x11\ \x23\x1a\x10\x27\x1d\x12\x2b\x20\x15\x31\x25\x18\x36\x28\x1a\x32\ \x25\x18\x2c\x21\x15\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x2b\x20\ \x14\x33\x26\x19\x30\x24\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x15\ \x29\x1f\x13\x2b\x20\x15\x2e\x22\x17\x30\x24\x17\x31\x25\x18\x27\ \x1e\x13\x34\x27\x19\x33\x26\x19\x28\x1e\x13\x28\x1e\x13\x2a\x20\ \x14\x2b\x1f\x14\x2a\x20\x14\x26\x1c\x12\x28\x1e\x13\x35\x28\x1a\ \x30\x24\x17\x2e\x22\x16\x35\x28\x1a\x2a\x20\x14\x27\x1d\x12\x21\ \x19\x10\x23\x1a\x11\x28\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x3a\x2b\ \x1c\x40\x30\x1e\x3b\x2d\x1c\x39\x2b\x1c\x43\x32\x21\x3e\x2e\x1e\ \x3a\x2c\x1c\x34\x27\x19\x34\x27\x19\x2b\x20\x14\x1e\x16\x0e\x2a\ \x1f\x14\x29\x1f\x14\x29\x1f\x14\x26\x1d\x13\x26\x1c\x12\x27\x1d\ \x12\x2a\x1f\x14\x2f\x23\x16\x32\x25\x18\x3b\x2c\x1c\x3e\x2e\x1d\ \x36\x28\x1a\x33\x26\x18\x29\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x36\ \x29\x1a\x3b\x2c\x1c\x42\x32\x20\x3c\x2d\x1d\x38\x2a\x1b\x37\x2a\ \x1a\x33\x26\x18\x30\x24\x17\x2b\x20\x14\x2a\x20\x14\x38\x2a\x1b\ \x36\x28\x1a\x3b\x2c\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x3f\x30\x1e\x3b\ \x2c\x1c\x34\x27\x19\x30\x24\x17\x32\x25\x18\x38\x29\x1b\x43\x32\ \x21\x37\x29\x1a\x30\x24\x17\x2d\x22\x15\x2a\x20\x14\x2d\x22\x15\ \x32\x25\x18\x35\x27\x1a\x36\x28\x1a\x32\x26\x18\x31\x24\x17\x2d\ \x22\x16\x32\x26\x18\x37\x2a\x1b\x3c\x2d\x1d\x40\x31\x1f\x33\x27\ \x19\x2f\x23\x17\x32\x25\x18\x36\x29\x1b\x37\x29\x1a\x37\x29\x1a\ \x34\x27\x19\x21\x20\x20\x2e\x31\x33\x41\x44\x46\x48\x4b\x4e\x3a\ \x3d\x41\x41\x45\x49\x64\x6c\x70\x67\x70\x76\x52\x5a\x61\x46\x4e\ \x57\x66\x6f\x78\x6b\x74\x7e\x6e\x76\x80\x49\x52\x5f\x45\x51\x5c\ \x6a\x76\x7f\x66\x73\x7b\x69\x75\x7d\x68\x75\x7d\x69\x75\x7d\x6a\ \x76\x7e\x6a\x75\x7e\x6b\x75\x7f\x6d\x77\x81\x6e\x77\x81\x70\x79\ \x82\x71\x7a\x83\x72\x7b\x84\x73\x7c\x82\x71\x7b\x82\x73\x7d\x84\ \x73\x7d\x83\x76\x7e\x85\x00\x00\x00\x3f\x2f\x1f\x45\x34\x21\x55\ \x3f\x29\x53\x3e\x28\x2e\x22\x16\x31\x25\x18\x26\x1d\x13\x2b\x21\ \x14\x38\x2a\x1b\x3a\x2b\x1c\x38\x2b\x1b\x36\x29\x1a\x31\x25\x18\ \x26\x1c\x12\x28\x1f\x14\x21\x18\x0f\x20\x18\x0f\x23\x1a\x11\x26\ \x1d\x13\x26\x1d\x13\x2a\x20\x14\x33\x26\x18\x2e\x22\x16\x2a\x20\ \x15\x28\x1e\x13\x28\x1f\x13\x28\x1f\x13\x2f\x24\x16\x32\x26\x18\ \x2c\x21\x15\x2c\x21\x15\x2e\x23\x17\x2a\x20\x14\x28\x1e\x13\x26\ \x1d\x13\x2b\x20\x15\x2f\x24\x17\x38\x2a\x1b\x30\x24\x17\x3b\x2c\ \x1d\x40\x2f\x1f\x33\x25\x18\x29\x1e\x14\x28\x1e\x14\x28\x1e\x13\ \x25\x1c\x11\x22\x19\x10\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\x30\ \x24\x17\x32\x26\x18\x2d\x22\x15\x26\x1c\x12\x24\x1b\x10\x2a\x1f\ \x14\x28\x1e\x14\x2e\x23\x16\x2b\x20\x15\x32\x25\x18\x34\x27\x19\ \x2f\x24\x16\x2d\x21\x16\x37\x29\x1a\x36\x28\x1a\x35\x28\x19\x35\ \x28\x1a\x36\x29\x1a\x2a\x1f\x14\x21\x19\x10\x28\x1e\x14\x26\x1c\ \x12\x22\x19\x11\x1e\x17\x0f\x25\x1b\x11\x23\x1a\x10\x27\x1d\x13\ \x2c\x21\x15\x30\x24\x17\x3e\x2e\x1d\x42\x32\x20\x3b\x2c\x1c\x3b\ \x2c\x1c\x2f\x23\x17\x33\x27\x19\x35\x28\x1a\x32\x25\x18\x3c\x2d\ \x1d\x3d\x2e\x1e\x3d\x2d\x1e\x3d\x2e\x1d\x3c\x2d\x1c\x39\x2b\x1b\ \x33\x26\x19\x31\x25\x17\x29\x1e\x13\x30\x24\x17\x34\x27\x19\x33\ \x27\x18\x38\x2a\x1c\x37\x2a\x1a\x42\x32\x20\x3d\x2d\x1e\x33\x26\ \x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x30\x24\x17\ \x30\x24\x16\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\x2a\x20\x14\x2c\ \x21\x15\x2e\x23\x16\x30\x24\x16\x2d\x21\x15\x2f\x24\x17\x35\x28\ \x1a\x35\x28\x19\x37\x29\x1b\x3c\x2d\x1d\x34\x27\x19\x30\x24\x17\ \x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x2e\x22\x16\x29\x20\x14\x30\ \x30\x2e\x1c\x1e\x21\x42\x45\x47\x48\x4d\x50\x4a\x4f\x52\x40\x44\ \x48\x55\x5c\x62\x67\x70\x77\x67\x6f\x77\x3e\x45\x4f\x51\x59\x62\ \x68\x72\x7a\x6b\x76\x7f\x66\x70\x7a\x38\x43\x4f\x4e\x5a\x64\x6a\ \x76\x7f\x69\x75\x7d\x6b\x77\x7f\x69\x74\x7c\x68\x74\x7c\x69\x75\ \x7c\x6a\x75\x7d\x6e\x78\x80\x6f\x79\x81\x70\x79\x83\x71\x7a\x83\ \x74\x7d\x86\x72\x7a\x83\x71\x7b\x82\x72\x7c\x83\x74\x7c\x84\x77\ \x7f\x85\x00\x00\x00\x3e\x2e\x1e\x53\x3e\x29\x65\x4c\x32\x55\x40\ \x29\x2c\x21\x15\x24\x1b\x12\x1e\x17\x0f\x38\x2a\x1b\x33\x26\x18\ \x37\x29\x1b\x39\x2b\x1c\x2f\x23\x17\x32\x26\x18\x2c\x21\x15\x2c\ \x21\x16\x27\x1e\x13\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x27\x1d\ \x12\x2a\x20\x14\x2d\x22\x16\x27\x1d\x13\x20\x18\x0f\x22\x19\x10\ \x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x32\ \x25\x18\x2e\x23\x16\x29\x1f\x14\x28\x1e\x13\x24\x1b\x12\x2e\x23\ \x16\x31\x25\x17\x30\x24\x17\x3a\x2b\x1c\x42\x31\x20\x3a\x2b\x1c\ \x36\x28\x19\x2e\x22\x16\x2d\x22\x16\x2f\x23\x17\x2e\x22\x16\x2c\ \x21\x15\x32\x25\x18\x2f\x23\x17\x2c\x21\x15\x2c\x21\x15\x34\x27\ \x19\x32\x25\x18\x2b\x20\x15\x27\x1d\x12\x27\x1e\x13\x22\x19\x10\ \x2c\x20\x15\x2b\x21\x15\x33\x26\x19\x34\x27\x19\x2c\x22\x15\x2e\ \x23\x16\x33\x26\x18\x31\x25\x18\x2e\x22\x16\x30\x24\x17\x32\x26\ \x18\x2d\x22\x16\x2b\x20\x14\x2f\x23\x16\x25\x1c\x12\x24\x1b\x12\ \x23\x1b\x11\x2b\x20\x14\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2f\ \x24\x17\x3a\x2b\x1c\x47\x35\x22\x36\x28\x19\x42\x31\x20\x3a\x2b\ \x1c\x43\x32\x20\x3d\x2d\x1d\x33\x26\x18\x31\x25\x18\x34\x26\x19\ \x3c\x2d\x1d\x3f\x2f\x1f\x40\x30\x1f\x41\x31\x1f\x3b\x2c\x1c\x3b\ \x2c\x1c\x2f\x23\x16\x2c\x21\x15\x32\x25\x18\x35\x28\x19\x35\x28\ \x1a\x39\x2a\x1b\x42\x32\x20\x47\x34\x22\x3a\x2c\x1d\x31\x25\x17\ \x30\x23\x17\x31\x25\x17\x2c\x21\x15\x2a\x20\x14\x33\x26\x18\x37\ \x29\x1b\x2f\x23\x17\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x29\x1f\ \x14\x2d\x22\x15\x2a\x20\x14\x32\x26\x18\x2f\x24\x17\x31\x25\x18\ \x2a\x20\x14\x36\x28\x1a\x2f\x23\x17\x27\x1d\x13\x2b\x21\x15\x28\ \x1e\x14\x30\x25\x18\x39\x2b\x1b\x32\x26\x19\x33\x30\x2e\x26\x28\ \x2a\x2d\x31\x35\x49\x4e\x52\x50\x56\x5a\x41\x48\x4c\x3b\x42\x49\ \x62\x6b\x71\x69\x73\x7a\x63\x6b\x74\x3b\x43\x4d\x60\x69\x71\x6c\ \x76\x7e\x6c\x77\x80\x61\x6c\x75\x34\x3f\x4c\x5b\x64\x71\x68\x74\ \x7d\x6a\x75\x7d\x68\x74\x7b\x69\x76\x7d\x69\x75\x7d\x68\x73\x7b\ \x6c\x76\x7e\x6e\x77\x80\x6f\x78\x81\x70\x79\x82\x72\x7b\x84\x73\ \x7d\x85\x71\x7a\x82\x74\x7e\x85\x76\x7f\x86\x77\x7e\x85\x00\x00\ \x00\x3b\x2c\x1d\x52\x3e\x28\x65\x4c\x31\x59\x42\x2b\x2e\x23\x16\ \x2a\x20\x14\x23\x1a\x10\x36\x29\x1b\x31\x25\x18\x34\x27\x19\x3d\ \x2e\x1e\x38\x2a\x1b\x30\x24\x17\x32\x26\x19\x2d\x22\x15\x2b\x20\ \x14\x2e\x23\x16\x28\x1e\x13\x24\x1b\x12\x21\x18\x10\x22\x1a\x10\ \x26\x1d\x12\x23\x1a\x11\x21\x19\x10\x25\x1c\x11\x2c\x21\x14\x2a\ \x20\x14\x25\x1c\x12\x2d\x22\x15\x31\x25\x18\x32\x25\x18\x36\x28\ \x1a\x39\x2b\x1b\x33\x27\x19\x2f\x23\x17\x32\x25\x18\x31\x24\x17\ \x33\x26\x19\x3b\x2c\x1c\x46\x34\x21\x39\x2b\x1c\x31\x25\x17\x2d\ \x22\x16\x2d\x22\x16\x34\x27\x19\x33\x27\x18\x30\x24\x17\x31\x25\ \x18\x32\x26\x18\x28\x1e\x13\x26\x1c\x12\x2a\x20\x14\x2f\x23\x17\ \x33\x26\x18\x2e\x22\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x12\x29\ \x1f\x14\x29\x1f\x14\x2e\x23\x16\x2d\x22\x16\x36\x28\x1a\x31\x25\ \x17\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\ \x32\x25\x18\x34\x27\x18\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2f\ \x24\x16\x30\x24\x17\x31\x25\x18\x2f\x23\x16\x30\x25\x17\x3b\x2c\ \x1c\x3d\x2e\x1d\x2a\x20\x14\x36\x28\x1a\x33\x26\x18\x3d\x2d\x1d\ \x3c\x2d\x1d\x37\x29\x1a\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1b\x3e\ \x2f\x1e\x40\x30\x1f\x47\x34\x22\x42\x32\x20\x3e\x2e\x1e\x33\x26\ \x19\x33\x26\x19\x3c\x2c\x1d\x37\x29\x1a\x2f\x23\x16\x34\x26\x19\ \x39\x2a\x1c\x41\x31\x1f\x3d\x2e\x1e\x30\x24\x17\x38\x2a\x1b\x3d\ \x2d\x1c\x34\x27\x19\x2f\x23\x17\x2c\x21\x15\x30\x25\x18\x36\x28\ \x1a\x38\x2a\x1b\x30\x24\x17\x2b\x20\x15\x2b\x21\x15\x2d\x22\x16\ \x30\x24\x17\x32\x25\x18\x30\x25\x17\x37\x29\x1a\x2d\x21\x16\x35\ \x28\x19\x2f\x23\x16\x30\x24\x17\x35\x28\x1a\x32\x25\x18\x3d\x2e\ \x1d\x3e\x2f\x1e\x40\x31\x20\x3a\x35\x2f\x2f\x32\x33\x20\x24\x27\ \x44\x4a\x4d\x50\x57\x5b\x54\x5a\x60\x3f\x46\x4c\x4c\x53\x59\x69\ \x72\x79\x6e\x78\x7e\x3f\x47\x4e\x2e\x33\x3b\x66\x70\x78\x6a\x76\ \x7e\x67\x73\x7b\x55\x61\x6c\x36\x3f\x4b\x64\x6f\x79\x68\x75\x7d\ \x69\x75\x7d\x6a\x76\x7e\x6a\x75\x7d\x6b\x76\x7d\x6e\x78\x80\x6f\ \x78\x82\x70\x79\x81\x70\x79\x82\x71\x7a\x83\x74\x7e\x85\x74\x7e\ \x85\x72\x7c\x83\x76\x7f\x87\x76\x7f\x86\x00\x00\x00\x3e\x2f\x1e\ \x4b\x38\x24\x5f\x47\x2d\x5b\x44\x2c\x31\x25\x18\x2a\x1f\x15\x1d\ \x15\x0d\x21\x19\x10\x2d\x22\x16\x31\x25\x17\x3e\x2e\x1e\x37\x29\ \x1a\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x30\x24\x17\ \x2b\x20\x15\x31\x25\x18\x31\x25\x18\x2a\x1f\x14\x26\x1d\x12\x28\ \x1e\x14\x2a\x20\x14\x31\x24\x17\x36\x28\x1a\x29\x1f\x14\x23\x1b\ \x11\x2b\x21\x15\x31\x24\x17\x33\x26\x18\x42\x31\x20\x40\x31\x1f\ \x36\x29\x1a\x31\x25\x17\x2e\x22\x16\x2f\x23\x17\x37\x29\x1b\x35\ \x28\x1a\x39\x2b\x1b\x3a\x2c\x1c\x30\x24\x17\x28\x1e\x13\x2a\x20\ \x14\x35\x28\x19\x35\x27\x19\x2f\x23\x17\x2b\x20\x15\x29\x1f\x14\ \x26\x1d\x13\x22\x19\x10\x20\x18\x0f\x29\x1f\x13\x33\x27\x19\x2d\ \x22\x16\x30\x24\x18\x27\x1d\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ \x14\x34\x27\x18\x34\x27\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\x17\ \x39\x2b\x1c\x30\x24\x17\x2b\x1f\x14\x2f\x23\x16\x37\x29\x1a\x3d\ \x2e\x1d\x3b\x2d\x1c\x39\x2b\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x36\x28\ \x1a\x31\x25\x18\x33\x26\x19\x3b\x2c\x1c\x3a\x2b\x1c\x31\x25\x18\ \x2b\x21\x15\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x34\x28\x19\x35\ \x28\x1a\x30\x24\x17\x2f\x24\x17\x32\x26\x18\x37\x29\x1a\x3b\x2b\ \x1c\x42\x31\x20\x40\x30\x1f\x34\x27\x19\x30\x24\x17\x36\x29\x1a\ \x3c\x2c\x1c\x35\x27\x19\x33\x26\x19\x34\x27\x1a\x34\x27\x19\x40\ \x30\x1e\x3d\x2e\x1d\x31\x25\x17\x39\x2b\x1b\x41\x30\x1f\x33\x26\ \x19\x2f\x23\x17\x2a\x20\x14\x2d\x22\x16\x39\x2a\x1b\x3d\x2d\x1d\ \x35\x28\x19\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x31\x24\x18\x35\ \x28\x19\x35\x28\x19\x33\x26\x19\x3c\x2c\x1d\x3e\x2e\x1e\x34\x27\ \x19\x34\x27\x19\x33\x27\x18\x33\x26\x18\x36\x28\x1a\x37\x29\x1a\ \x3f\x30\x20\x35\x30\x2a\x31\x33\x35\x31\x36\x39\x27\x2c\x30\x50\ \x58\x5c\x54\x5b\x60\x50\x56\x5b\x41\x47\x4c\x5b\x64\x6b\x6b\x76\ \x7c\x28\x30\x35\x32\x38\x3d\x44\x4d\x55\x68\x75\x7d\x6a\x76\x7e\ \x69\x74\x7d\x4d\x57\x63\x3c\x47\x52\x64\x72\x7a\x69\x76\x7e\x6c\ \x78\x80\x6c\x77\x7f\x6b\x77\x7e\x6b\x77\x7e\x6e\x79\x81\x70\x7a\ \x82\x6f\x78\x82\x71\x7a\x81\x70\x7a\x81\x72\x7d\x83\x76\x80\x88\ \x75\x7f\x86\x77\x80\x87\x00\x00\x00\x3b\x2d\x1d\x4c\x39\x25\x60\ \x48\x2e\x51\x3c\x27\x2d\x21\x15\x2e\x23\x17\x17\x11\x0a\x1f\x17\ \x0f\x28\x1e\x14\x29\x1f\x13\x2f\x23\x16\x2c\x21\x15\x23\x1b\x11\ \x26\x1d\x12\x2a\x20\x14\x29\x1f\x13\x2d\x23\x16\x31\x25\x18\x3a\ \x2c\x1c\x3e\x2e\x1d\x36\x29\x1a\x2b\x20\x15\x29\x1f\x14\x25\x1c\ \x12\x2f\x23\x17\x32\x26\x18\x2a\x1f\x14\x29\x1f\x14\x2b\x20\x15\ \x36\x29\x1a\x37\x29\x1a\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x36\ \x28\x1a\x2f\x24\x17\x31\x25\x17\x2e\x22\x16\x32\x25\x18\x36\x29\ \x1a\x3d\x2e\x1d\x32\x25\x18\x2b\x20\x15\x2d\x21\x15\x32\x25\x18\ \x33\x26\x19\x2d\x21\x15\x2f\x24\x17\x2c\x21\x15\x25\x1c\x12\x21\ \x19\x10\x28\x1e\x13\x32\x25\x18\x2a\x20\x14\x31\x25\x18\x29\x1f\ \x14\x27\x1e\x12\x2d\x22\x16\x30\x24\x17\x2c\x21\x15\x32\x25\x17\ \x31\x25\x18\x2f\x23\x17\x31\x25\x17\x3e\x2f\x1d\x3a\x2b\x1c\x28\ \x1e\x13\x29\x1f\x13\x2e\x23\x16\x34\x27\x19\x3b\x2c\x1c\x38\x29\ \x1b\x3a\x2c\x1c\x36\x28\x1a\x36\x28\x1a\x28\x1e\x13\x2e\x23\x16\ \x32\x26\x18\x38\x29\x1b\x32\x26\x18\x2f\x24\x17\x34\x28\x19\x2e\ \x22\x16\x28\x1e\x13\x36\x29\x1a\x37\x2a\x1a\x33\x26\x19\x2d\x22\ \x16\x35\x28\x19\x35\x28\x1a\x30\x24\x17\x3a\x2b\x1b\x3a\x2b\x1c\ \x38\x2a\x1b\x38\x29\x1a\x36\x29\x1a\x3b\x2c\x1c\x39\x2a\x1a\x2f\ \x23\x16\x2d\x21\x16\x2b\x20\x15\x2e\x23\x16\x3c\x2d\x1c\x31\x25\ \x18\x2f\x23\x16\x37\x29\x1a\x3d\x2d\x1d\x37\x29\x1b\x31\x25\x17\ \x2f\x23\x17\x35\x27\x1a\x38\x2a\x1b\x38\x2b\x1b\x2e\x23\x16\x2d\ \x22\x16\x2b\x20\x15\x30\x24\x17\x2d\x21\x15\x35\x28\x1a\x35\x27\ \x19\x32\x25\x18\x39\x2b\x1b\x3e\x2e\x1e\x38\x2a\x1b\x32\x25\x18\ \x2d\x22\x16\x2a\x20\x15\x2d\x21\x16\x31\x25\x17\x33\x27\x1a\x35\ \x2f\x28\x39\x3a\x38\x37\x3c\x3e\x2d\x33\x37\x35\x3b\x3f\x3d\x42\ \x47\x54\x5a\x5e\x49\x4f\x55\x4e\x57\x5e\x2f\x37\x3a\x27\x2e\x31\ \x36\x3e\x42\x2f\x36\x3d\x54\x5e\x67\x69\x76\x7e\x66\x73\x7b\x62\ \x6e\x76\x3e\x47\x51\x48\x53\x5c\x6a\x77\x7f\x6a\x77\x7f\x6c\x77\ \x7f\x6c\x77\x7f\x6b\x76\x7e\x6e\x78\x80\x6e\x78\x7f\x68\x72\x7a\ \x68\x73\x7b\x6c\x78\x7f\x70\x7d\x83\x75\x7f\x86\x76\x80\x87\x77\ \x81\x88\x00\x00\x00\x3c\x2d\x1d\x47\x36\x22\x5b\x44\x2c\x4c\x38\ \x24\x2c\x20\x15\x1e\x17\x0e\x1b\x15\x0d\x23\x1b\x11\x2a\x1f\x15\ \x2e\x23\x16\x2d\x22\x16\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\ \x1c\x12\x26\x1c\x12\x2a\x20\x14\x32\x26\x18\x37\x29\x1a\x3b\x2c\ \x1d\x32\x26\x18\x29\x1f\x14\x24\x1c\x11\x25\x1b\x12\x2e\x22\x15\ \x2a\x20\x15\x2b\x20\x15\x2c\x21\x15\x2b\x20\x14\x33\x26\x19\x32\ \x26\x18\x2a\x1f\x14\x2b\x21\x15\x32\x25\x18\x3d\x2d\x1d\x35\x28\ \x19\x36\x28\x1a\x31\x24\x17\x39\x2a\x1b\x40\x30\x1f\x3e\x2f\x1e\ \x38\x2a\x1b\x30\x24\x17\x2b\x21\x15\x2a\x20\x14\x2d\x22\x16\x29\ \x1e\x13\x2c\x20\x15\x31\x24\x18\x30\x24\x17\x2e\x23\x16\x29\x1f\ \x14\x2e\x23\x16\x33\x27\x19\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\ \x30\x24\x17\x2b\x21\x15\x25\x1c\x12\x2d\x22\x15\x36\x28\x1a\x31\ \x25\x18\x37\x29\x1a\x3d\x2e\x1d\x34\x27\x19\x2c\x21\x15\x2b\x20\ \x14\x29\x20\x14\x2f\x23\x17\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\ \x36\x28\x1a\x3a\x2c\x1b\x25\x1c\x12\x29\x1e\x14\x32\x25\x17\x2a\ \x20\x15\x2e\x23\x16\x29\x1f\x14\x32\x26\x18\x2e\x23\x16\x2e\x22\ \x16\x34\x27\x19\x2f\x24\x17\x2d\x22\x15\x31\x25\x17\x3a\x2b\x1b\ \x39\x2b\x1b\x36\x28\x1a\x39\x2a\x1b\x30\x23\x17\x33\x26\x18\x35\ \x28\x19\x3a\x2c\x1c\x35\x28\x19\x30\x24\x17\x2e\x22\x16\x2e\x22\ \x16\x2e\x23\x16\x27\x1d\x13\x36\x28\x1a\x29\x1e\x13\x27\x1d\x13\ \x2b\x20\x14\x2f\x24\x17\x2f\x23\x16\x2a\x20\x15\x2e\x22\x16\x31\ \x25\x18\x2c\x21\x15\x2b\x21\x15\x2a\x20\x14\x27\x1d\x13\x27\x1d\ \x13\x2a\x1f\x14\x27\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\ \x30\x25\x17\x3b\x2d\x1d\x3a\x2c\x1c\x39\x2a\x1c\x33\x26\x19\x36\ \x29\x1a\x2e\x23\x17\x2c\x21\x15\x2b\x21\x16\x31\x29\x20\x34\x38\ \x39\x3a\x3f\x43\x39\x3f\x42\x17\x1d\x20\x2c\x2f\x33\x5a\x61\x66\ \x64\x6c\x71\x39\x40\x47\x02\x02\x03\x35\x3a\x3e\x21\x27\x2c\x61\ \x69\x6d\x32\x3a\x42\x5f\x69\x71\x68\x76\x7e\x68\x75\x7d\x5c\x67\ \x70\x3b\x44\x4e\x52\x5e\x67\x6b\x77\x81\x6e\x7a\x83\x6e\x7a\x82\ \x6e\x79\x81\x72\x7c\x85\x61\x6b\x73\x3b\x42\x4b\x33\x3c\x43\x45\ \x52\x59\x64\x71\x77\x71\x7c\x83\x75\x7f\x86\x77\x81\x88\x00\x00\ \x00\x2d\x22\x16\x3f\x2e\x1e\x51\x3c\x27\x41\x31\x1f\x2d\x22\x16\ \x17\x12\x0b\x1b\x15\x0d\x25\x1d\x12\x2d\x22\x15\x2e\x23\x17\x30\ \x23\x17\x2b\x20\x14\x29\x1f\x14\x27\x1d\x13\x24\x1b\x11\x24\x1b\ \x11\x29\x1f\x13\x27\x1d\x12\x32\x25\x18\x38\x2a\x1b\x30\x24\x17\ \x25\x1c\x12\x23\x1a\x10\x22\x19\x10\x23\x1a\x11\x23\x1a\x11\x2b\ \x20\x15\x2e\x23\x16\x28\x1e\x13\x29\x1e\x13\x28\x1e\x13\x24\x1b\ \x11\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x31\x25\x17\x2d\x22\x15\ \x27\x1d\x13\x32\x25\x18\x39\x2a\x1b\x37\x29\x1b\x33\x26\x19\x30\ \x24\x17\x2c\x21\x15\x27\x1d\x13\x2b\x20\x14\x23\x19\x10\x23\x1a\ \x11\x27\x1e\x13\x32\x25\x18\x29\x1e\x13\x27\x1d\x13\x27\x1d\x12\ \x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x35\x27\x19\x33\ \x27\x19\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x37\x29\x1a\x3c\x2d\ \x1d\x33\x26\x18\x26\x1d\x13\x27\x1d\x13\x28\x1e\x13\x23\x1a\x11\ \x23\x1a\x11\x2a\x1f\x14\x2d\x21\x16\x36\x29\x1a\x34\x28\x19\x37\ \x2a\x1b\x32\x25\x18\x2d\x22\x16\x36\x29\x1b\x3a\x2b\x1c\x3c\x2d\ \x1d\x34\x27\x19\x32\x26\x18\x39\x2b\x1b\x32\x25\x18\x34\x27\x19\ \x2d\x22\x16\x2b\x21\x15\x2c\x20\x15\x31\x24\x17\x35\x28\x19\x35\ \x27\x19\x31\x24\x17\x31\x24\x17\x36\x29\x1a\x30\x25\x17\x3a\x2c\ \x1c\x3a\x2c\x1c\x3c\x2d\x1c\x39\x2b\x1b\x38\x2a\x1b\x38\x2a\x1b\ \x28\x1e\x13\x2d\x22\x16\x22\x1a\x11\x20\x18\x0f\x21\x19\x10\x27\ \x1d\x12\x26\x1c\x12\x23\x1a\x11\x29\x1f\x14\x28\x1e\x13\x28\x1e\ \x13\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x1e\x17\x0e\x26\x1c\x12\ \x28\x1e\x13\x26\x1c\x12\x2e\x23\x16\x2e\x22\x16\x34\x27\x18\x3e\ \x2f\x1e\x39\x2a\x1b\x35\x28\x1a\x31\x25\x17\x2c\x21\x15\x2e\x22\ \x17\x31\x25\x18\x30\x24\x17\x36\x2c\x22\x2a\x2c\x30\x39\x3d\x42\ \x38\x3d\x41\x11\x13\x15\x1a\x1e\x21\x4a\x50\x56\x65\x6e\x74\x5c\ \x64\x6c\x13\x15\x17\x02\x03\x04\x3d\x43\x46\x66\x71\x75\x58\x62\ \x67\x35\x3f\x47\x62\x6e\x77\x67\x75\x7d\x68\x75\x7d\x55\x61\x6a\ \x3d\x47\x51\x5c\x68\x73\x6c\x78\x82\x6c\x77\x80\x6c\x77\x80\x6f\ \x79\x82\x67\x71\x78\x50\x59\x62\x30\x36\x3d\x16\x18\x1f\x29\x2d\ \x36\x5f\x68\x70\x74\x80\x86\x77\x83\x8a\x00\x00\x00\x2f\x24\x17\ \x3e\x2f\x1e\x59\x42\x2c\x4e\x3a\x25\x2a\x20\x14\x16\x11\x0b\x1a\ \x14\x0c\x2f\x22\x16\x35\x28\x1a\x37\x29\x1b\x35\x27\x1a\x36\x28\ \x1a\x33\x26\x19\x2f\x23\x17\x22\x19\x10\x1e\x17\x0e\x23\x1a\x10\ \x21\x19\x10\x29\x1f\x14\x2f\x23\x17\x2d\x21\x15\x2b\x20\x14\x24\ \x1b\x11\x20\x18\x0f\x23\x1a\x11\x25\x1b\x12\x2a\x1f\x14\x25\x1c\ \x12\x2b\x20\x14\x28\x1e\x14\x28\x1e\x13\x2b\x20\x15\x28\x1d\x13\ \x27\x1d\x13\x2d\x21\x16\x31\x25\x17\x3a\x2c\x1c\x33\x26\x18\x35\ \x27\x19\x31\x25\x17\x34\x27\x19\x33\x26\x19\x2f\x24\x17\x23\x1b\ \x11\x24\x1b\x11\x25\x1b\x11\x22\x19\x10\x25\x1b\x11\x20\x17\x0e\ \x1e\x16\x0e\x1e\x17\x0f\x25\x1c\x11\x2b\x20\x15\x2f\x23\x16\x2f\ \x23\x17\x30\x24\x17\x2d\x22\x16\x2d\x22\x16\x34\x26\x19\x34\x27\ \x19\x32\x25\x18\x28\x1e\x13\x2f\x23\x17\x32\x25\x18\x36\x28\x1a\ \x27\x1e\x13\x25\x1c\x12\x28\x1f\x13\x1f\x18\x0e\x20\x18\x0f\x24\ \x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\x22\x16\x3a\x2c\x1c\x38\x2a\ \x1b\x31\x25\x17\x37\x29\x1b\x36\x29\x1a\x3c\x2d\x1d\x40\x30\x1f\ \x40\x31\x1f\x3d\x2e\x1e\x38\x2b\x1b\x39\x2a\x1b\x30\x23\x17\x2f\ \x24\x17\x33\x27\x18\x3b\x2c\x1c\x3d\x2e\x1d\x36\x28\x1a\x33\x25\ \x18\x34\x27\x18\x2d\x22\x16\x2b\x21\x15\x29\x1f\x14\x2a\x20\x14\ \x2f\x23\x16\x2e\x22\x16\x2f\x23\x16\x2b\x20\x14\x1e\x17\x0e\x2a\ \x1f\x14\x25\x1c\x12\x26\x1c\x12\x22\x19\x10\x2a\x1f\x14\x24\x1a\ \x11\x25\x1c\x11\x28\x1f\x14\x2a\x1f\x14\x28\x1e\x13\x27\x1d\x13\ \x28\x1e\x13\x29\x1f\x14\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x2c\ \x21\x15\x2e\x23\x16\x2f\x23\x16\x33\x27\x18\x43\x32\x20\x35\x28\ \x1a\x2f\x23\x16\x2a\x1f\x14\x21\x19\x10\x24\x1b\x11\x29\x1f\x13\ \x27\x1d\x13\x3d\x31\x25\x19\x1b\x1e\x37\x3a\x3e\x30\x34\x38\x01\ \x03\x03\x0d\x0f\x11\x32\x39\x3c\x68\x74\x7b\x4d\x58\x60\x15\x18\ \x1b\x00\x00\x00\x58\x60\x65\x69\x76\x7a\x6a\x75\x7b\x46\x51\x58\ \x3b\x45\x4e\x66\x73\x7a\x68\x76\x7d\x68\x75\x7d\x4f\x5a\x62\x40\ \x4a\x55\x60\x6b\x74\x6d\x78\x81\x6f\x7a\x82\x70\x7c\x84\x72\x7c\ \x84\x73\x7d\x84\x72\x7e\x83\x56\x5f\x66\x25\x26\x2f\x26\x2a\x34\ \x60\x6b\x73\x75\x81\x87\x00\x00\x00\x2f\x24\x17\x32\x26\x17\x5b\ \x44\x2c\x48\x35\x22\x36\x28\x1a\x20\x17\x0f\x13\x0f\x09\x2d\x22\ \x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ \x2b\x21\x15\x27\x1c\x12\x22\x1a\x10\x27\x1e\x13\x21\x1a\x0f\x2a\ \x20\x14\x2c\x22\x15\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x2b\x20\ \x14\x2e\x22\x16\x2a\x1f\x14\x24\x1b\x11\x19\x13\x0c\x22\x1a\x10\ \x22\x1a\x10\x26\x1c\x13\x29\x1f\x14\x2c\x21\x15\x2c\x21\x15\x26\ \x1c\x12\x2b\x20\x15\x2d\x22\x15\x2a\x20\x14\x2e\x22\x16\x2d\x21\ \x15\x24\x1b\x11\x27\x1d\x13\x25\x1d\x12\x26\x1d\x12\x24\x1c\x11\ \x23\x1a\x11\x2d\x22\x16\x2c\x21\x15\x29\x1e\x14\x21\x18\x10\x2a\ \x20\x14\x2a\x20\x14\x2c\x22\x15\x30\x23\x17\x2b\x21\x15\x29\x1f\ \x14\x28\x1e\x14\x27\x1e\x13\x2c\x21\x15\x30\x24\x17\x38\x2a\x1b\ \x33\x27\x19\x2f\x23\x16\x2e\x23\x16\x3a\x2b\x1c\x3c\x2c\x1d\x2c\ \x21\x15\x29\x1f\x14\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ \x11\x2e\x22\x16\x29\x1f\x13\x3b\x2c\x1d\x3f\x2f\x1f\x30\x24\x17\ \x36\x28\x1a\x3a\x2c\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x42\x31\x1f\x44\ \x33\x21\x3e\x2e\x1d\x3b\x2d\x1c\x36\x28\x19\x36\x28\x1a\x36\x28\ \x1a\x42\x32\x20\x43\x32\x20\x3b\x2d\x1d\x35\x29\x1a\x31\x24\x18\ \x32\x25\x18\x27\x1d\x13\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x21\ \x19\x10\x1c\x16\x0d\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x24\x1b\ \x11\x20\x19\x10\x24\x1b\x11\x24\x1b\x12\x26\x1c\x12\x2a\x20\x14\ \x2c\x21\x15\x2a\x20\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x12\x28\ \x1e\x13\x2b\x21\x15\x2c\x21\x15\x30\x24\x17\x2d\x21\x15\x31\x25\ \x18\x2e\x23\x16\x29\x1f\x14\x3a\x2c\x1c\x2d\x23\x15\x29\x1f\x14\ \x2a\x1f\x14\x26\x1c\x12\x29\x1e\x14\x24\x1b\x12\x2b\x20\x15\x31\ \x28\x1d\x23\x25\x28\x24\x27\x2a\x30\x34\x36\x00\x00\x00\x13\x15\ \x17\x35\x3b\x41\x4f\x5c\x62\x2b\x34\x3a\x27\x2d\x31\x01\x02\x02\ \x42\x4b\x50\x68\x75\x7c\x69\x77\x7d\x66\x73\x7a\x3a\x44\x4d\x46\ \x51\x5a\x68\x76\x7d\x6a\x78\x7f\x66\x71\x7a\x49\x52\x5c\x45\x4d\ \x58\x65\x6f\x78\x72\x7d\x86\x71\x7b\x83\x71\x7b\x83\x72\x7d\x83\ \x73\x7e\x83\x75\x80\x84\x66\x6e\x75\x38\x3b\x45\x31\x35\x3f\x69\ \x71\x7a\x00\x00\x00\x28\x1d\x12\x2d\x22\x15\x53\x3d\x28\x49\x37\ \x23\x3a\x2c\x1c\x1c\x15\x0e\x19\x13\x0c\x22\x19\x10\x3b\x2c\x1d\ \x42\x32\x21\x50\x3c\x28\x36\x29\x1a\x30\x23\x17\x2a\x1f\x15\x26\ \x1d\x12\x27\x1d\x13\x21\x19\x0f\x1f\x17\x0e\x29\x1f\x14\x2c\x22\ \x15\x2b\x21\x15\x2d\x22\x16\x28\x1f\x13\x27\x1e\x13\x2c\x21\x15\ \x28\x1d\x13\x28\x1e\x13\x17\x12\x0c\x1c\x16\x0e\x29\x1e\x13\x25\ \x1b\x12\x2a\x1f\x14\x29\x1f\x14\x21\x19\x10\x20\x18\x10\x21\x19\ \x10\x30\x24\x18\x30\x24\x17\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ \x2d\x22\x15\x22\x1a\x10\x28\x1f\x13\x2d\x22\x16\x2e\x22\x16\x2f\ \x23\x17\x2e\x22\x16\x36\x28\x1a\x2d\x21\x15\x2e\x23\x16\x35\x27\ \x1a\x39\x2a\x1b\x35\x28\x19\x28\x1f\x14\x21\x1a\x10\x26\x1c\x12\ \x29\x1f\x14\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x35\x27\x19\x2f\ \x23\x17\x2d\x21\x15\x30\x23\x17\x2b\x20\x14\x22\x1a\x10\x2a\x20\ \x14\x23\x1b\x11\x1c\x16\x0e\x21\x19\x10\x25\x1c\x12\x29\x1f\x14\ \x33\x26\x19\x34\x27\x19\x2f\x23\x16\x2d\x21\x15\x2d\x22\x15\x35\ \x28\x1a\x36\x28\x1a\x37\x29\x1b\x38\x2b\x1b\x3c\x2d\x1d\x37\x2a\ \x1a\x39\x2a\x1c\x39\x2b\x1c\x3b\x2d\x1c\x32\x26\x19\x3a\x2b\x1c\ \x3c\x2d\x1d\x3a\x2b\x1c\x36\x28\x1a\x2e\x23\x17\x2b\x20\x15\x26\ \x1d\x12\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0e\x1d\x16\x0e\x20\x18\ \x0f\x24\x1a\x11\x23\x1a\x10\x26\x1c\x12\x2a\x1f\x14\x28\x1e\x13\ \x30\x23\x17\x2c\x21\x15\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x28\ \x1e\x13\x26\x1d\x12\x22\x1a\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ \x11\x25\x1c\x11\x30\x24\x17\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\ \x29\x1e\x13\x2d\x22\x16\x29\x1f\x14\x2a\x1f\x14\x2d\x22\x16\x22\ \x1a\x10\x29\x1f\x14\x24\x1b\x11\x2f\x23\x16\x41\x34\x24\x2d\x30\ \x31\x20\x23\x26\x1d\x20\x21\x03\x03\x03\x20\x21\x24\x48\x50\x55\ \x1a\x1f\x24\x24\x28\x2c\x2c\x33\x36\x20\x23\x24\x33\x38\x3c\x51\ \x5b\x62\x69\x76\x7d\x66\x74\x7c\x5f\x6c\x74\x3b\x44\x4e\x50\x5b\ \x65\x6a\x77\x7f\x6b\x77\x7f\x65\x6f\x77\x47\x4f\x58\x4b\x55\x5f\ \x6b\x77\x7f\x72\x7c\x83\x71\x7b\x82\x73\x7d\x84\x73\x7e\x84\x75\ \x80\x84\x76\x80\x84\x6a\x73\x79\x36\x39\x42\x47\x4c\x55\x00\x00\ \x00\x35\x29\x1b\x2e\x23\x17\x5a\x43\x2c\x53\x3e\x28\x3d\x2e\x1d\ \x1d\x16\x0d\x1e\x16\x0e\x17\x11\x0b\x24\x1a\x11\x3c\x2c\x1d\x3d\ \x2e\x1e\x31\x25\x18\x35\x28\x1a\x2b\x20\x15\x2a\x1f\x14\x29\x1f\ \x14\x20\x18\x10\x1f\x17\x0f\x26\x1c\x13\x25\x1c\x12\x28\x1f\x14\ \x30\x24\x17\x30\x24\x17\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2b\ \x20\x15\x2e\x22\x16\x22\x19\x10\x22\x1a\x10\x27\x1d\x12\x31\x25\ \x18\x21\x19\x0f\x21\x19\x10\x1d\x16\x0e\x26\x1c\x12\x2d\x21\x15\ \x2d\x22\x16\x31\x26\x18\x33\x26\x18\x30\x23\x17\x2e\x23\x16\x31\ \x24\x17\x2f\x23\x17\x28\x1e\x13\x29\x1f\x13\x28\x1e\x13\x2d\x22\ \x16\x32\x25\x18\x30\x24\x17\x2c\x22\x15\x38\x2a\x1b\x30\x25\x17\ \x2e\x23\x16\x2b\x21\x15\x1c\x15\x0d\x24\x1b\x11\x29\x1e\x14\x2d\ \x21\x15\x26\x1b\x12\x26\x1c\x12\x2f\x24\x16\x37\x29\x1b\x2e\x22\ \x16\x24\x1b\x11\x25\x1c\x12\x26\x1c\x12\x2c\x21\x15\x2d\x22\x16\ \x25\x1c\x12\x21\x19\x10\x23\x1b\x11\x27\x1e\x13\x2b\x21\x15\x30\ \x23\x16\x3a\x2b\x1c\x33\x27\x19\x2c\x21\x14\x32\x26\x18\x33\x26\ \x19\x33\x26\x19\x30\x23\x17\x2d\x23\x17\x2d\x22\x16\x35\x28\x19\ \x3a\x2c\x1c\x3c\x2e\x1d\x35\x28\x1a\x2e\x22\x16\x34\x27\x19\x38\ \x2a\x1b\x3b\x2c\x1c\x3c\x2d\x1c\x3b\x2c\x1c\x29\x1e\x13\x2a\x1f\ \x14\x2b\x21\x15\x29\x1f\x14\x1f\x17\x0f\x21\x18\x0f\x28\x1e\x13\ \x20\x18\x0f\x29\x1e\x14\x2b\x20\x14\x23\x1a\x10\x24\x1a\x11\x2a\ \x20\x14\x2d\x22\x16\x2c\x21\x15\x30\x23\x16\x34\x27\x18\x2e\x22\ \x16\x2d\x22\x16\x2a\x1f\x14\x27\x1d\x13\x2a\x1f\x13\x2f\x23\x16\ \x38\x2a\x1b\x31\x24\x17\x2a\x20\x15\x2a\x20\x15\x2c\x21\x14\x2d\ \x22\x15\x2a\x1f\x14\x3a\x2b\x1c\x21\x1a\x10\x29\x1f\x14\x2b\x20\ \x14\x28\x1e\x13\x2c\x21\x15\x43\x34\x25\x2b\x2f\x30\x22\x25\x27\ \x05\x06\x07\x15\x16\x17\x1f\x22\x23\x58\x61\x65\x19\x1c\x1e\x17\ \x1a\x1c\x22\x26\x29\x55\x5d\x5f\x5e\x66\x69\x34\x3c\x42\x5a\x66\ \x6d\x69\x77\x7f\x67\x74\x7c\x59\x64\x6d\x3b\x44\x4f\x57\x62\x6c\ \x6a\x77\x80\x6c\x78\x7f\x61\x6b\x73\x48\x51\x5b\x54\x5d\x66\x6d\ \x77\x7e\x72\x7c\x83\x73\x7d\x84\x75\x7e\x86\x76\x80\x86\x77\x81\ \x85\x75\x7f\x82\x60\x66\x6b\x46\x49\x50\x00\x00\x00\x46\x35\x23\ \x26\x1d\x13\x4c\x39\x25\x57\x41\x2a\x3e\x2f\x1e\x22\x19\x10\x1b\ \x15\x0d\x18\x12\x0b\x27\x1d\x13\x3b\x2d\x1d\x43\x32\x20\x38\x2a\ \x1b\x32\x26\x18\x35\x27\x1a\x30\x24\x17\x24\x1b\x11\x2a\x1f\x14\ \x24\x1b\x12\x1e\x17\x0f\x1c\x16\x0e\x22\x1a\x10\x2a\x20\x14\x24\ \x1c\x11\x24\x1b\x11\x29\x1f\x13\x2a\x1f\x14\x26\x1d\x13\x26\x1c\ \x12\x2b\x20\x15\x1c\x15\x0e\x1f\x17\x0e\x31\x25\x18\x28\x1e\x13\ \x1d\x16\x0e\x1e\x17\x0e\x21\x19\x10\x25\x1c\x12\x2e\x23\x16\x30\ \x24\x16\x2d\x22\x15\x2e\x23\x16\x38\x29\x1a\x35\x27\x19\x2e\x23\ \x16\x22\x1a\x10\x1c\x15\x0d\x20\x18\x10\x2d\x22\x16\x32\x26\x18\ \x3b\x2d\x1c\x46\x34\x21\x34\x27\x19\x2d\x21\x15\x2c\x21\x15\x2f\ \x24\x17\x23\x1a\x10\x22\x1a\x11\x28\x1e\x13\x28\x1e\x13\x22\x1a\ \x10\x20\x19\x0f\x28\x1f\x14\x28\x1e\x13\x35\x28\x1a\x38\x2a\x1c\ \x26\x1d\x12\x2c\x22\x16\x32\x26\x18\x37\x29\x1a\x2b\x20\x14\x23\ \x1b\x11\x2c\x21\x15\x2e\x23\x16\x25\x1c\x12\x2a\x1f\x14\x2a\x1f\ \x14\x2f\x23\x16\x2d\x22\x16\x30\x24\x17\x33\x27\x19\x39\x2b\x1b\ \x33\x26\x18\x30\x24\x17\x2d\x22\x16\x35\x28\x19\x3d\x2e\x1d\x39\ \x2a\x1b\x3a\x2b\x1c\x36\x29\x1a\x36\x28\x1a\x39\x2b\x1c\x3a\x2c\ \x1c\x37\x29\x1a\x37\x29\x1a\x3f\x2f\x1e\x35\x28\x1a\x30\x24\x17\ \x2b\x20\x15\x22\x1a\x11\x24\x1b\x11\x28\x1e\x13\x23\x1a\x10\x25\ \x1c\x11\x28\x1e\x13\x2a\x1f\x14\x2c\x22\x15\x36\x29\x1a\x2e\x23\ \x16\x30\x25\x17\x2c\x21\x15\x31\x24\x17\x35\x27\x19\x31\x24\x18\ \x2d\x22\x16\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\x22\x16\x26\ \x1d\x12\x27\x1d\x12\x24\x1c\x11\x2c\x20\x15\x2a\x20\x15\x27\x1e\ \x13\x24\x1b\x11\x2b\x20\x14\x2d\x21\x16\x2a\x1f\x14\x27\x1e\x13\ \x2f\x23\x16\x59\x44\x30\x2d\x2e\x2e\x10\x11\x12\x13\x14\x15\x12\ \x13\x14\x36\x3b\x3d\x59\x63\x66\x1f\x23\x24\x00\x00\x00\x3a\x40\ \x40\x68\x71\x73\x6b\x76\x7a\x4f\x59\x5e\x36\x41\x48\x66\x74\x7b\ \x67\x75\x7d\x67\x73\x7b\x55\x5f\x68\x3d\x45\x4f\x5b\x66\x6e\x6c\ \x78\x7f\x6e\x77\x7f\x62\x6a\x73\x4a\x52\x5b\x59\x61\x69\x70\x7a\ \x81\x73\x7d\x84\x74\x7e\x85\x75\x7f\x87\x79\x82\x89\x78\x81\x86\ \x74\x7b\x7e\x5f\x64\x69\x00\x00\x00\x4e\x3b\x28\x39\x2c\x1c\x58\ \x42\x2a\x5b\x44\x2c\x4e\x3a\x26\x24\x1b\x11\x1f\x18\x0f\x21\x19\ \x10\x31\x25\x18\x46\x35\x22\x3c\x2c\x1d\x2c\x20\x15\x24\x1b\x11\ \x28\x1e\x13\x29\x1e\x14\x2a\x20\x14\x22\x1a\x10\x22\x19\x10\x23\ \x1a\x11\x1d\x16\x0e\x1c\x15\x0d\x1d\x16\x0e\x1a\x14\x0d\x1f\x18\ \x0f\x24\x1b\x11\x25\x1c\x12\x25\x1b\x12\x27\x1e\x12\x29\x1f\x14\ \x1e\x17\x0f\x27\x1d\x12\x2a\x20\x14\x2c\x21\x15\x3b\x2c\x1c\x26\ \x1d\x12\x19\x13\x0c\x1f\x18\x0f\x23\x1b\x11\x2d\x22\x16\x33\x27\ \x18\x34\x27\x19\x32\x26\x19\x37\x29\x1b\x35\x28\x19\x26\x1d\x12\ \x1e\x16\x0e\x20\x17\x0f\x2b\x21\x15\x34\x27\x19\x38\x29\x1b\x44\ \x33\x21\x32\x26\x18\x25\x1c\x12\x30\x24\x17\x2e\x22\x17\x25\x1c\ \x11\x25\x1c\x11\x23\x1a\x11\x24\x1b\x11\x20\x18\x10\x24\x1b\x11\ \x26\x1d\x12\x25\x1c\x12\x2c\x22\x16\x28\x1e\x13\x23\x1b\x10\x24\ \x1b\x11\x2d\x22\x16\x33\x26\x18\x32\x26\x18\x2b\x21\x14\x2f\x23\ \x16\x3a\x2b\x1c\x3e\x2e\x1e\x30\x23\x16\x34\x27\x18\x32\x25\x18\ \x29\x1f\x13\x37\x29\x1a\x3b\x2c\x1c\x41\x31\x1f\x3a\x2c\x1c\x33\ \x26\x19\x37\x29\x1b\x37\x29\x1b\x38\x29\x1b\x2f\x23\x16\x2c\x20\ \x15\x2d\x22\x15\x30\x24\x17\x35\x28\x1a\x38\x2a\x1b\x3a\x2b\x1c\ \x37\x29\x1a\x41\x31\x1f\x3d\x2e\x1d\x2a\x1f\x14\x2f\x24\x16\x29\ \x1f\x14\x2c\x21\x15\x2c\x21\x15\x33\x27\x19\x34\x27\x19\x33\x26\ \x18\x2d\x22\x16\x27\x1d\x13\x2e\x23\x16\x2f\x23\x17\x33\x26\x19\ \x3e\x2f\x1e\x37\x2a\x1b\x35\x28\x1a\x38\x29\x1b\x39\x2a\x1b\x35\ \x28\x19\x2c\x21\x15\x25\x1d\x12\x28\x1e\x13\x23\x1a\x11\x25\x1d\ \x12\x29\x1f\x13\x29\x1f\x13\x2c\x21\x15\x24\x1b\x12\x24\x1b\x12\ \x2b\x20\x14\x26\x1d\x12\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x4c\ \x3c\x2a\x2e\x2f\x2d\x06\x06\x07\x10\x11\x12\x14\x15\x17\x41\x47\ \x4b\x48\x50\x53\x22\x25\x27\x03\x03\x02\x30\x34\x35\x65\x6f\x73\ \x6a\x77\x7c\x69\x75\x79\x47\x51\x58\x3b\x46\x4e\x69\x76\x7d\x6a\ \x76\x7e\x65\x6f\x78\x4d\x55\x5e\x3d\x45\x4e\x62\x6b\x75\x70\x79\ \x81\x6e\x78\x7f\x63\x6b\x72\x4c\x52\x5a\x5f\x67\x6e\x71\x7b\x81\ \x72\x7d\x83\x74\x7e\x86\x78\x81\x8a\x78\x81\x89\x78\x80\x86\x72\ \x79\x7f\x00\x00\x00\x41\x31\x21\x37\x29\x1b\x5c\x45\x2d\x61\x48\ \x2f\x4d\x3a\x25\x2d\x22\x15\x13\x0e\x09\x20\x18\x0f\x31\x25\x18\ \x39\x2a\x1c\x31\x25\x18\x28\x1f\x13\x1f\x17\x0f\x22\x1a\x10\x29\ \x20\x14\x25\x1c\x12\x23\x1a\x10\x23\x1a\x11\x27\x1e\x12\x27\x1e\ \x13\x24\x1b\x11\x21\x19\x0f\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ \x1f\x17\x0f\x1f\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x19\x13\x0c\x1c\ \x15\x0d\x1e\x16\x0e\x26\x1c\x12\x24\x1b\x11\x26\x1d\x12\x1f\x17\ \x0f\x1d\x16\x0e\x28\x1e\x13\x30\x24\x17\x2d\x23\x16\x33\x27\x18\ \x32\x26\x18\x35\x28\x1a\x2b\x21\x15\x1f\x18\x0f\x21\x19\x0f\x27\ \x1d\x13\x27\x1d\x13\x2a\x1f\x14\x33\x25\x18\x34\x26\x19\x31\x25\ \x18\x2a\x1f\x14\x2a\x20\x14\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\ \x23\x1a\x11\x25\x1c\x12\x29\x1f\x14\x26\x1d\x12\x26\x1d\x12\x2a\ \x1f\x14\x36\x28\x19\x33\x26\x19\x27\x1e\x13\x24\x1c\x11\x2d\x22\ \x15\x3f\x2e\x1e\x38\x2a\x1b\x2e\x23\x16\x2f\x23\x17\x3b\x2c\x1d\ \x3b\x2c\x1c\x36\x28\x1a\x2c\x21\x15\x20\x18\x0f\x27\x1d\x13\x2f\ \x23\x16\x2f\x23\x17\x38\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x30\x24\ \x17\x32\x25\x18\x30\x25\x17\x29\x1f\x14\x26\x1d\x12\x29\x1e\x13\ \x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x28\x19\x3c\x2d\x1d\x3b\ \x2b\x1c\x3c\x2d\x1d\x3a\x2c\x1c\x31\x25\x18\x3a\x2b\x1c\x43\x32\ \x20\x4a\x37\x23\x4b\x38\x24\x48\x36\x22\x40\x30\x1f\x36\x28\x1a\ \x34\x27\x19\x34\x27\x19\x37\x29\x1b\x39\x2a\x1b\x3b\x2d\x1c\x3a\ \x2c\x1c\x33\x26\x18\x3b\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1c\x36\x29\ \x19\x2e\x23\x17\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x2b\x20\x15\ \x26\x1c\x12\x2e\x22\x16\x27\x1d\x13\x2a\x1f\x14\x2b\x20\x15\x28\ \x1e\x13\x32\x25\x18\x33\x26\x19\x38\x2a\x1b\x3a\x2d\x1f\x2e\x2d\ \x2a\x00\x00\x00\x0b\x0c\x0c\x31\x34\x35\x32\x39\x3d\x2f\x36\x39\ \x2f\x33\x35\x13\x15\x16\x1a\x1e\x22\x4b\x54\x5c\x69\x74\x7b\x6a\ \x76\x7c\x67\x72\x79\x40\x4a\x53\x45\x4f\x58\x5e\x69\x72\x39\x42\ \x49\x68\x71\x7a\x48\x4e\x58\x49\x51\x5b\x6c\x75\x7f\x72\x7c\x83\ \x72\x7c\x82\x62\x69\x70\x49\x4e\x55\x5e\x66\x6c\x71\x7b\x82\x77\ \x81\x89\x78\x81\x8a\x77\x81\x88\x76\x80\x87\x79\x82\x89\x00\x00\ \x00\x30\x24\x17\x30\x24\x17\x54\x3f\x28\x6f\x53\x36\x59\x42\x2b\ \x2d\x22\x15\x20\x18\x0f\x29\x1f\x14\x33\x27\x18\x33\x26\x19\x2b\ \x21\x15\x31\x25\x17\x25\x1c\x11\x22\x1a\x10\x24\x1b\x12\x20\x17\ \x0f\x1d\x16\x0e\x1e\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x1d\x16\x0e\ \x19\x14\x0c\x1d\x17\x0e\x1c\x15\x0e\x22\x19\x10\x26\x1d\x12\x23\ \x1a\x11\x22\x19\x10\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\x1d\x15\ \x0e\x23\x1a\x11\x26\x1d\x13\x26\x1c\x12\x22\x1a\x10\x1f\x17\x0f\ \x23\x1a\x11\x2c\x21\x15\x2a\x1f\x14\x33\x26\x18\x31\x25\x17\x30\ \x24\x17\x2b\x20\x15\x26\x1d\x12\x22\x1a\x11\x1f\x18\x0f\x2a\x20\ \x15\x2d\x22\x16\x2e\x23\x16\x34\x27\x19\x30\x24\x17\x2d\x22\x16\ \x28\x1d\x12\x2a\x20\x14\x2b\x22\x16\x20\x18\x0f\x27\x1e\x13\x2c\ \x22\x15\x2c\x21\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x36\x28\ \x1a\x32\x26\x18\x24\x1b\x11\x25\x1c\x11\x2d\x22\x16\x39\x2b\x1b\ \x39\x2a\x1b\x31\x25\x18\x2f\x24\x17\x38\x2b\x1b\x39\x2b\x1c\x30\ \x24\x17\x3b\x2c\x1c\x39\x2b\x1c\x2f\x23\x17\x26\x1d\x12\x2b\x20\ \x14\x34\x27\x19\x33\x26\x19\x37\x29\x1b\x36\x28\x19\x34\x27\x19\ \x30\x25\x17\x26\x1d\x12\x21\x1a\x10\x24\x1b\x12\x2a\x1f\x14\x34\ \x27\x19\x3b\x2d\x1d\x3d\x2d\x1d\x3c\x2d\x1c\x3b\x2c\x1d\x38\x2b\ \x1b\x3a\x2c\x1c\x31\x25\x17\x30\x24\x17\x35\x27\x19\x2d\x23\x16\ \x34\x27\x19\x3b\x2d\x1d\x3c\x2d\x1c\x3b\x2b\x1c\x38\x2a\x1b\x36\ \x28\x1a\x31\x25\x17\x2f\x23\x17\x2d\x21\x16\x30\x24\x17\x37\x29\ \x1b\x3c\x2d\x1d\x3e\x2f\x1f\x3f\x30\x1e\x40\x30\x1f\x33\x26\x19\ \x32\x26\x18\x30\x25\x17\x36\x29\x1a\x2d\x21\x15\x29\x1e\x14\x2b\ \x20\x14\x2c\x20\x15\x26\x1c\x12\x2f\x23\x17\x2f\x23\x16\x3d\x2d\ \x1d\x30\x24\x17\x2b\x21\x15\x27\x20\x15\x28\x25\x21\x0f\x0f\x10\ \x09\x0a\x0a\x3f\x44\x47\x35\x3b\x3f\x2d\x33\x3a\x2e\x34\x3a\x29\ \x2f\x33\x54\x5b\x63\x37\x3f\x49\x5b\x66\x6f\x6a\x76\x7d\x68\x73\ \x7b\x63\x6e\x76\x30\x3a\x44\x24\x2c\x31\x3b\x43\x4a\x72\x7c\x84\ \x65\x6e\x75\x46\x4d\x57\x4d\x56\x60\x6e\x78\x81\x72\x7d\x84\x70\ \x79\x80\x5f\x65\x6b\x4d\x52\x5a\x64\x6d\x74\x74\x80\x86\x7a\x84\ \x8b\x79\x82\x89\x78\x82\x8a\x74\x7e\x85\x00\x00\x00\x37\x29\x1b\ \x35\x28\x1a\x44\x33\x21\x72\x56\x39\x57\x41\x2a\x26\x1c\x12\x20\ \x18\x0f\x34\x27\x1a\x48\x36\x22\x4a\x37\x24\x38\x2a\x1b\x33\x26\ \x18\x26\x1c\x12\x22\x19\x10\x1c\x15\x0d\x1b\x14\x0d\x1d\x15\x0e\ \x1b\x14\x0d\x1d\x17\x0e\x20\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x1f\ \x17\x0f\x1d\x15\x0e\x20\x18\x10\x23\x1a\x11\x23\x1a\x11\x1f\x17\ \x0e\x1d\x16\x0e\x20\x18\x0f\x1c\x16\x0e\x1d\x16\x0e\x1e\x17\x0f\ \x2b\x20\x14\x23\x1b\x11\x25\x1c\x12\x24\x1c\x11\x2b\x20\x15\x2a\ \x20\x14\x2e\x22\x16\x33\x26\x19\x32\x26\x18\x2b\x20\x14\x31\x24\ \x17\x34\x27\x19\x2b\x20\x15\x29\x1f\x14\x2a\x1f\x14\x29\x1f\x14\ \x2a\x1f\x14\x36\x28\x1a\x33\x26\x19\x36\x29\x1a\x39\x2a\x1b\x34\ \x27\x19\x27\x1e\x13\x21\x19\x10\x27\x1d\x13\x2c\x20\x15\x2f\x24\ \x16\x30\x24\x17\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2e\x22\x16\ \x2a\x1f\x14\x21\x19\x0f\x1f\x18\x0f\x2a\x20\x14\x2f\x23\x16\x27\ \x1d\x13\x26\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x2d\x21\x15\x2a\x1f\ \x14\x2a\x1f\x14\x2a\x20\x14\x29\x1f\x13\x27\x1e\x12\x31\x25\x17\ \x36\x28\x1a\x35\x28\x1a\x3b\x2c\x1c\x42\x32\x1f\x37\x29\x1a\x36\ \x28\x1b\x31\x25\x18\x35\x27\x19\x33\x26\x19\x30\x24\x17\x31\x25\ \x18\x2d\x22\x15\x32\x26\x18\x37\x29\x1a\x3f\x2f\x1e\x46\x34\x21\ \x39\x2b\x1c\x3b\x2c\x1c\x33\x26\x19\x2e\x22\x16\x28\x1f\x14\x32\ \x25\x18\x36\x28\x1a\x2c\x21\x15\x26\x1d\x12\x2a\x1f\x14\x2d\x22\ \x15\x2b\x21\x15\x2a\x1f\x14\x2a\x1f\x14\x33\x27\x19\x34\x27\x19\ \x33\x26\x18\x3a\x2b\x1c\x3d\x2e\x1d\x39\x2b\x1b\x39\x2b\x1c\x3a\ \x2b\x1c\x39\x2b\x1c\x33\x26\x19\x26\x1d\x13\x2c\x21\x15\x37\x29\ \x1a\x3a\x2b\x1b\x30\x24\x17\x31\x25\x17\x33\x26\x19\x32\x26\x18\ \x2b\x20\x14\x2c\x22\x18\x2b\x24\x1c\x22\x24\x25\x08\x09\x09\x46\ \x4a\x4d\x4a\x50\x53\x31\x35\x3b\x1f\x23\x29\x4e\x56\x5c\x69\x74\ \x7b\x44\x4b\x53\x21\x28\x2d\x62\x6e\x76\x68\x74\x7b\x69\x74\x7c\ \x29\x33\x39\x06\x07\x08\x39\x43\x49\x45\x50\x57\x71\x7b\x81\x64\ \x6d\x74\x44\x4d\x57\x58\x62\x6b\x71\x7c\x84\x71\x7c\x83\x73\x7c\ \x83\x62\x69\x70\x4d\x51\x59\x67\x71\x78\x76\x81\x88\x7a\x84\x8b\ \x79\x83\x8a\x6c\x76\x7d\x00\x00\x00\x20\x19\x10\x30\x24\x17\x43\ \x32\x20\x70\x54\x37\x58\x41\x2b\x2b\x21\x14\x1e\x16\x0e\x34\x27\ \x19\x47\x35\x22\x5b\x44\x2c\x47\x35\x22\x3d\x2d\x1d\x25\x1c\x12\ \x22\x1a\x10\x20\x18\x10\x1d\x16\x0e\x1a\x13\x0c\x19\x12\x0c\x1e\ \x16\x0e\x23\x1a\x10\x23\x1a\x11\x24\x1b\x12\x27\x1e\x13\x23\x1b\ \x11\x22\x1a\x10\x25\x1c\x12\x2f\x24\x17\x2e\x22\x16\x24\x1c\x11\ \x20\x18\x0f\x1c\x16\x0e\x1f\x17\x0f\x22\x19\x11\x24\x1b\x12\x1b\ \x14\x0d\x1e\x17\x0f\x25\x1b\x12\x22\x19\x10\x22\x1a\x11\x26\x1d\ \x12\x2f\x22\x16\x30\x24\x17\x2a\x1f\x14\x29\x1f\x14\x29\x1f\x14\ \x27\x1d\x12\x27\x1e\x13\x29\x1e\x13\x27\x1d\x13\x26\x1d\x12\x28\ \x1e\x12\x31\x25\x17\x3f\x2f\x1e\x33\x26\x19\x30\x23\x16\x25\x1c\ \x12\x28\x1f\x13\x2e\x22\x16\x36\x28\x1a\x38\x2a\x1b\x33\x26\x18\ \x33\x26\x18\x32\x26\x18\x2c\x21\x14\x27\x1d\x13\x25\x1c\x11\x23\ \x1a\x10\x21\x19\x10\x28\x1e\x13\x2f\x23\x17\x33\x26\x18\x2b\x20\ \x15\x2b\x20\x14\x26\x1d\x13\x26\x1d\x12\x2b\x20\x14\x34\x27\x19\ \x3a\x2b\x1b\x34\x28\x1a\x35\x28\x19\x36\x29\x1a\x36\x29\x1a\x39\ \x2b\x1b\x36\x29\x1a\x37\x2a\x1a\x3a\x2c\x1c\x3b\x2c\x1d\x35\x28\ \x1a\x2b\x21\x15\x2e\x23\x16\x2d\x23\x15\x31\x24\x17\x2d\x22\x16\ \x2c\x21\x15\x31\x24\x17\x34\x27\x19\x33\x27\x18\x2f\x24\x17\x2b\ \x21\x15\x31\x25\x18\x39\x2a\x1b\x37\x29\x1b\x30\x24\x17\x38\x2b\ \x1b\x29\x20\x14\x26\x1d\x12\x24\x1a\x11\x24\x1b\x12\x29\x1f\x14\ \x2d\x22\x16\x2e\x22\x16\x30\x25\x18\x34\x27\x19\x33\x26\x18\x37\ \x29\x1a\x3c\x2d\x1d\x38\x2a\x1b\x32\x26\x18\x2f\x23\x16\x31\x24\ \x18\x36\x29\x1a\x29\x1e\x13\x29\x1f\x14\x2e\x22\x16\x24\x1b\x12\ \x2c\x21\x15\x29\x1f\x13\x26\x1c\x12\x23\x1a\x10\x24\x1b\x11\x27\ \x1e\x14\x3c\x33\x29\x16\x17\x19\x2b\x2e\x30\x44\x49\x4d\x4b\x52\ \x57\x44\x49\x4f\x35\x39\x3e\x52\x5c\x63\x69\x77\x7e\x27\x2f\x34\ \x38\x40\x47\x32\x3d\x44\x65\x74\x7e\x66\x75\x7d\x0b\x10\x14\x05\ \x07\x07\x15\x1a\x1d\x41\x46\x4b\x72\x7b\x81\x70\x79\x80\x64\x6d\ \x75\x45\x4d\x58\x5d\x66\x70\x73\x7d\x85\x75\x7f\x86\x75\x7d\x83\ \x61\x66\x6d\x4d\x51\x59\x6c\x76\x7c\x78\x83\x88\x78\x83\x87\x75\ \x80\x86\x00\x00\x00\x32\x26\x19\x43\x32\x21\x4b\x38\x24\x74\x56\ \x39\x58\x42\x2b\x3a\x2b\x1c\x21\x18\x0f\x2f\x23\x17\x3e\x2f\x1e\ \x4c\x38\x24\x40\x30\x1f\x45\x33\x21\x38\x29\x1b\x25\x1c\x12\x25\ \x1b\x11\x22\x19\x10\x1b\x14\x0d\x1b\x15\x0d\x22\x1a\x10\x2b\x20\ \x14\x29\x1e\x14\x2b\x21\x15\x30\x24\x17\x2a\x1f\x14\x28\x1e\x13\ \x29\x1e\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1c\x11\x1e\x17\x0e\x20\ \x19\x0f\x20\x17\x0f\x1f\x18\x0f\x1e\x17\x0f\x1f\x17\x0e\x1c\x15\ \x0e\x1e\x16\x0f\x1e\x17\x0e\x1f\x17\x0f\x24\x1b\x11\x28\x1e\x13\ \x29\x1e\x14\x25\x1c\x12\x22\x19\x10\x20\x18\x10\x24\x1c\x12\x25\ \x1c\x12\x25\x1c\x12\x22\x19\x10\x21\x18\x10\x2b\x20\x15\x22\x1a\ \x10\x24\x1b\x11\x27\x1e\x13\x23\x1a\x10\x29\x1e\x14\x2b\x20\x15\ \x26\x1d\x12\x25\x1c\x11\x2f\x23\x17\x38\x2a\x1b\x3e\x2f\x1e\x2b\ \x21\x15\x28\x1e\x13\x25\x1b\x11\x21\x18\x0f\x23\x1b\x11\x26\x1c\ \x12\x29\x1e\x13\x29\x1f\x13\x32\x25\x17\x35\x27\x1a\x2d\x21\x16\ \x23\x1a\x10\x25\x1c\x12\x2a\x1f\x14\x35\x28\x19\x2f\x23\x16\x2d\ \x22\x16\x29\x20\x14\x2b\x20\x14\x29\x1f\x14\x28\x1f\x13\x2a\x1f\ \x14\x2a\x20\x14\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x2d\x22\x15\ \x28\x1e\x13\x2b\x20\x15\x2f\x23\x17\x2e\x23\x16\x27\x1d\x13\x29\ \x1f\x14\x30\x23\x17\x2a\x1f\x14\x2e\x23\x16\x2b\x20\x14\x2d\x21\ \x16\x3b\x2d\x1d\x3a\x2c\x1d\x33\x26\x19\x2a\x20\x14\x29\x1e\x14\ \x28\x1e\x14\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x2b\x20\x14\x2a\ \x1f\x14\x2d\x22\x16\x31\x25\x18\x2f\x24\x17\x35\x28\x1a\x39\x2b\ \x1b\x32\x26\x18\x30\x24\x17\x2b\x21\x15\x2e\x23\x16\x31\x25\x17\ \x31\x25\x17\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x27\x1d\x13\x2a\ \x20\x14\x26\x1c\x12\x26\x1d\x12\x29\x1e\x14\x28\x1e\x14\x30\x2a\ \x23\x17\x18\x1a\x3a\x3f\x42\x42\x48\x4d\x4d\x53\x58\x55\x5d\x62\ \x3c\x43\x48\x4a\x53\x57\x26\x2c\x30\x23\x28\x2b\x37\x3e\x42\x24\ \x2c\x32\x3f\x4c\x55\x69\x78\x7f\x0c\x11\x14\x02\x01\x02\x0a\x0c\ \x0e\x3a\x3e\x45\x6b\x73\x7a\x6e\x79\x7f\x72\x7b\x81\x5d\x63\x6b\ \x46\x4d\x58\x64\x6c\x76\x72\x7d\x86\x75\x7f\x88\x74\x7d\x83\x60\ \x66\x6d\x52\x56\x5d\x6e\x77\x7b\x77\x83\x86\x79\x84\x88\x00\x00\ \x00\x2d\x22\x16\x3d\x2d\x1d\x49\x37\x23\x74\x57\x39\x63\x4a\x30\ \x3d\x2d\x1d\x25\x1c\x11\x2b\x20\x14\x2f\x24\x17\x41\x30\x1f\x38\ \x2b\x1b\x3e\x2e\x1e\x35\x27\x1a\x29\x1f\x14\x29\x1f\x13\x27\x1e\ \x13\x2a\x1f\x14\x23\x1a\x11\x27\x1e\x13\x29\x1f\x14\x29\x1f\x13\ \x29\x1f\x13\x28\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ \x1f\x14\x2b\x20\x15\x25\x1c\x12\x22\x1a\x10\x28\x1d\x13\x2a\x1f\ \x14\x25\x1c\x11\x25\x1c\x12\x24\x1b\x11\x22\x1a\x10\x27\x1d\x13\ \x27\x1d\x13\x23\x1a\x11\x26\x1d\x12\x25\x1c\x12\x26\x1c\x12\x22\ \x1a\x10\x20\x18\x0f\x24\x1b\x11\x26\x1d\x12\x2c\x20\x15\x29\x1e\ \x14\x29\x1f\x14\x21\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x21\x18\x0f\ \x24\x1b\x11\x21\x19\x10\x1f\x17\x0f\x23\x1b\x11\x1d\x16\x0e\x24\ \x1b\x11\x24\x1b\x12\x32\x25\x18\x37\x29\x1b\x2d\x22\x15\x27\x1e\ \x13\x25\x1c\x12\x1c\x15\x0d\x21\x19\x10\x27\x1e\x13\x26\x1c\x12\ \x24\x1b\x11\x2f\x24\x17\x35\x28\x19\x38\x2a\x1b\x33\x27\x19\x2f\ \x23\x16\x28\x1e\x13\x2b\x20\x15\x2f\x24\x17\x2c\x21\x15\x24\x1b\ \x11\x28\x1f\x13\x24\x1b\x11\x29\x1f\x14\x2c\x21\x15\x2a\x20\x14\ \x35\x28\x19\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\x18\x2f\x24\x17\x2f\ \x23\x16\x2b\x21\x15\x2f\x24\x17\x2a\x1f\x14\x2b\x20\x15\x2b\x20\ \x15\x2d\x22\x15\x29\x1f\x14\x29\x1f\x14\x2c\x21\x15\x2c\x21\x14\ \x35\x28\x19\x3c\x2d\x1e\x33\x25\x18\x1f\x18\x0f\x21\x18\x10\x25\ \x1c\x12\x23\x1a\x11\x23\x1a\x11\x27\x1e\x12\x26\x1d\x12\x2d\x22\ \x16\x2c\x21\x15\x27\x1e\x12\x2c\x21\x15\x34\x27\x19\x36\x28\x1a\ \x35\x27\x1a\x31\x25\x18\x2d\x22\x16\x2b\x20\x14\x28\x1e\x13\x2f\ \x23\x16\x2e\x22\x16\x31\x25\x17\x26\x1c\x12\x28\x1e\x13\x27\x1e\ \x12\x25\x1c\x12\x2a\x20\x14\x26\x1d\x13\x28\x23\x1e\x27\x2a\x2d\ \x36\x3a\x3e\x41\x47\x4b\x4c\x52\x57\x53\x5b\x61\x5d\x66\x6b\x32\ \x39\x40\x00\x01\x02\x35\x38\x3c\x17\x1c\x1f\x67\x6f\x76\x34\x3f\ \x47\x4b\x55\x5b\x06\x0a\x0b\x01\x01\x01\x26\x2a\x2c\x50\x59\x5e\ \x41\x49\x51\x6d\x78\x7f\x73\x7e\x84\x73\x7c\x83\x5a\x62\x6a\x43\ \x49\x53\x63\x6c\x76\x74\x7d\x87\x78\x81\x8b\x76\x7e\x84\x61\x65\ \x6c\x4f\x56\x5b\x6b\x75\x79\x79\x84\x87\x00\x00\x00\x22\x1a\x11\ \x3d\x2e\x1d\x45\x34\x21\x73\x57\x39\x62\x49\x30\x2f\x23\x17\x23\ \x1a\x11\x20\x18\x0f\x20\x18\x0f\x3a\x2b\x1c\x32\x26\x18\x33\x26\ \x19\x2f\x23\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\ \x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x27\ \x1e\x13\x23\x1b\x11\x23\x1b\x11\x22\x1a\x10\x25\x1c\x12\x23\x1b\ \x11\x22\x19\x10\x29\x1e\x14\x27\x1e\x13\x30\x24\x18\x2f\x23\x16\ \x2a\x20\x14\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x23\x1b\x11\x1e\ \x16\x0e\x20\x18\x0f\x20\x18\x0f\x21\x19\x0f\x22\x19\x10\x1e\x17\ \x0f\x28\x1e\x13\x2c\x21\x15\x2e\x23\x16\x2e\x22\x15\x30\x24\x17\ \x25\x1c\x12\x1c\x15\x0d\x1a\x13\x0c\x22\x1a\x10\x1f\x18\x0e\x22\ \x19\x10\x21\x18\x10\x2b\x21\x15\x27\x1e\x13\x24\x1b\x11\x22\x19\ \x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x15\x2a\x20\x14\x2a\x1f\x14\ \x1f\x17\x0f\x26\x1d\x12\x30\x24\x17\x2d\x22\x15\x24\x1b\x11\x29\ \x1f\x14\x32\x26\x18\x3e\x2f\x1e\x3a\x2c\x1c\x30\x24\x17\x26\x1c\ \x13\x23\x1a\x11\x30\x24\x17\x30\x25\x17\x23\x1b\x11\x29\x1f\x13\ \x2e\x22\x16\x28\x1e\x13\x29\x1e\x14\x29\x1f\x14\x33\x26\x18\x38\ \x2a\x1b\x3b\x2d\x1d\x37\x2a\x1b\x30\x24\x17\x2e\x22\x16\x2f\x23\ \x17\x30\x24\x17\x24\x1c\x11\x21\x19\x10\x28\x1e\x13\x27\x1e\x13\ \x2b\x21\x14\x29\x1e\x14\x2d\x21\x15\x31\x25\x18\x37\x2a\x1b\x3a\ \x2b\x1c\x2c\x20\x15\x24\x1b\x11\x1f\x17\x0f\x24\x1b\x11\x24\x1b\ \x11\x20\x18\x10\x24\x1b\x11\x27\x1c\x12\x2a\x1f\x14\x26\x1d\x12\ \x26\x1c\x12\x28\x1e\x13\x2b\x20\x15\x2a\x1f\x14\x2b\x21\x15\x2b\ \x21\x15\x32\x26\x18\x34\x27\x19\x2a\x20\x14\x27\x1d\x12\x28\x1d\ \x13\x22\x1a\x10\x1c\x16\x0e\x1c\x16\x0e\x21\x1a\x10\x28\x1e\x13\ \x31\x26\x18\x2c\x21\x15\x39\x30\x26\x2d\x30\x33\x36\x3a\x3e\x40\ \x45\x49\x4a\x51\x56\x53\x5c\x60\x5a\x64\x6a\x58\x61\x68\x14\x16\ \x17\x02\x03\x04\x2a\x2f\x33\x66\x72\x78\x62\x6d\x74\x0f\x13\x17\ \x22\x23\x26\x07\x07\x08\x25\x28\x2a\x70\x78\x7e\x45\x4d\x54\x4b\ \x53\x5b\x6f\x79\x80\x72\x7d\x83\x73\x7d\x83\x57\x5f\x68\x48\x4e\ \x57\x6a\x71\x7b\x76\x7f\x87\x7a\x82\x89\x76\x7c\x81\x5d\x62\x67\ \x52\x57\x5d\x6e\x76\x7a\x00\x00\x00\x19\x13\x0c\x34\x27\x19\x3d\ \x2e\x1d\x74\x57\x39\x5b\x44\x2d\x39\x2a\x1c\x22\x19\x10\x18\x12\ \x0c\x23\x1a\x11\x34\x27\x19\x37\x29\x1a\x37\x28\x1a\x2f\x23\x17\ \x29\x1f\x14\x2c\x21\x15\x29\x1e\x14\x29\x1f\x13\x2b\x20\x14\x2b\ \x20\x15\x33\x26\x19\x35\x28\x1a\x30\x24\x17\x2d\x22\x15\x28\x1e\ \x13\x23\x1b\x11\x23\x1b\x11\x25\x1c\x12\x1e\x16\x0d\x1e\x17\x0e\ \x1f\x17\x0f\x23\x1a\x11\x25\x1d\x12\x2d\x21\x16\x2c\x22\x15\x28\ \x1e\x13\x24\x1b\x11\x29\x1f\x13\x27\x1d\x12\x23\x1a\x11\x25\x1c\ \x12\x2b\x20\x15\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2f\x23\x16\ \x34\x27\x19\x31\x25\x18\x31\x25\x18\x36\x28\x1a\x2d\x21\x15\x26\ \x1d\x12\x23\x19\x10\x23\x1a\x11\x26\x1d\x12\x24\x1b\x11\x26\x1c\ \x12\x30\x23\x17\x2e\x23\x17\x30\x24\x17\x26\x1c\x12\x29\x1f\x14\ \x2b\x20\x15\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x24\x1b\x11\x22\ \x1a\x10\x2a\x1f\x14\x21\x19\x10\x1d\x16\x0e\x22\x1a\x10\x2c\x21\ \x15\x31\x25\x17\x35\x28\x1a\x32\x25\x18\x29\x1e\x14\x2a\x1f\x14\ \x33\x26\x19\x2a\x20\x14\x2a\x20\x14\x33\x27\x18\x2e\x22\x16\x2c\ \x21\x15\x2f\x23\x16\x2d\x22\x15\x32\x26\x18\x32\x26\x18\x36\x29\ \x1a\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1b\x3c\x2c\x1c\x33\x26\x19\ \x2a\x20\x14\x24\x1c\x11\x2a\x20\x14\x2b\x20\x15\x25\x1b\x12\x27\ \x1d\x13\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x36\x28\x1a\x34\x27\ \x19\x2f\x23\x17\x25\x1c\x12\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\ \x26\x1c\x12\x21\x18\x0f\x20\x18\x0f\x22\x1a\x11\x24\x1b\x11\x27\ \x1d\x12\x2f\x23\x16\x31\x24\x17\x33\x26\x18\x33\x26\x19\x3f\x2f\ \x1e\x41\x31\x1f\x35\x28\x1a\x2a\x20\x14\x28\x1e\x13\x23\x1b\x11\ \x1c\x15\x0d\x1e\x16\x0e\x23\x1b\x12\x1c\x16\x0d\x1d\x16\x0e\x23\ \x1b\x11\x48\x3a\x2b\x2c\x2f\x32\x35\x3a\x3d\x40\x45\x4a\x4a\x52\ \x56\x53\x5c\x61\x5b\x65\x6c\x4e\x57\x5d\x16\x18\x1a\x00\x00\x00\ \x47\x4d\x4f\x6b\x78\x7d\x34\x3d\x43\x04\x05\x07\x1e\x21\x26\x07\ \x07\x08\x3c\x40\x45\x78\x82\x89\x67\x6f\x77\x44\x4a\x54\x57\x5e\ \x67\x70\x7b\x80\x72\x7c\x83\x76\x80\x86\x59\x60\x68\x4b\x52\x5b\ \x6f\x77\x7f\x78\x81\x88\x77\x7f\x86\x76\x7d\x82\x5f\x64\x68\x51\ \x57\x5b\x00\x00\x00\x10\x0b\x07\x35\x27\x19\x3d\x2e\x1d\x76\x59\ \x3a\x58\x42\x2b\x3f\x2f\x1e\x21\x19\x0f\x1b\x15\x0d\x24\x1c\x12\ \x38\x2a\x1b\x48\x36\x23\x42\x31\x1f\x32\x26\x18\x2f\x23\x16\x32\ \x24\x18\x2c\x21\x15\x24\x1b\x11\x26\x1c\x12\x28\x1e\x13\x26\x1c\ \x12\x2c\x21\x15\x31\x25\x18\x2d\x22\x16\x24\x1c\x11\x1f\x18\x0f\ \x22\x1a\x10\x25\x1c\x12\x1e\x16\x0e\x1f\x17\x0e\x1c\x15\x0e\x21\ \x19\x10\x25\x1c\x12\x27\x1d\x12\x2f\x23\x17\x32\x26\x18\x28\x1e\ \x13\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x14\x22\x1a\x10\x29\x1e\x13\ \x2a\x1f\x14\x2b\x20\x15\x2f\x23\x16\x31\x25\x17\x2e\x22\x16\x27\ \x1d\x13\x2b\x21\x15\x2b\x21\x14\x30\x23\x16\x2f\x23\x16\x32\x25\ \x18\x28\x1e\x13\x24\x1b\x11\x27\x1d\x12\x27\x1d\x12\x32\x25\x18\ \x34\x26\x19\x36\x28\x1a\x32\x25\x18\x2b\x20\x14\x2d\x22\x15\x2c\ \x21\x15\x2e\x23\x15\x33\x26\x18\x2e\x23\x16\x2b\x21\x14\x2c\x21\ \x15\x21\x19\x10\x1f\x18\x0f\x1e\x17\x0e\x26\x1c\x12\x2e\x23\x16\ \x30\x24\x17\x31\x24\x17\x2b\x20\x15\x33\x26\x18\x2c\x21\x15\x2c\ \x21\x16\x3a\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x2f\x23\x17\x30\x24\ \x17\x31\x24\x17\x3a\x2c\x1c\x34\x27\x19\x38\x2a\x1b\x36\x28\x1a\ \x34\x27\x19\x38\x2a\x1b\x39\x2a\x1c\x2e\x22\x16\x25\x1c\x11\x28\ \x1e\x13\x2d\x22\x16\x29\x1e\x14\x20\x18\x10\x24\x1c\x11\x2a\x1f\ \x14\x24\x1b\x11\x2b\x21\x14\x30\x24\x18\x35\x28\x1a\x2f\x23\x16\ \x27\x1e\x12\x26\x1c\x12\x2f\x23\x17\x31\x25\x17\x2d\x21\x15\x2a\ \x20\x14\x23\x1b\x11\x24\x1b\x11\x2a\x1f\x14\x29\x1f\x14\x2e\x23\ \x16\x34\x27\x19\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1c\x44\x33\x21\ \x38\x2a\x1b\x34\x27\x19\x2d\x21\x15\x20\x18\x0f\x1e\x16\x0e\x1f\ \x17\x0f\x1b\x15\x0d\x1a\x14\x0c\x17\x12\x0b\x29\x1f\x14\x4c\x3c\ \x2b\x2b\x2f\x32\x34\x38\x3c\x3e\x43\x47\x48\x4f\x53\x52\x5a\x5f\ \x54\x5e\x63\x29\x30\x34\x32\x3a\x3e\x08\x08\x09\x27\x2d\x2f\x69\ \x76\x7a\x17\x1e\x20\x09\x0a\x0b\x2e\x32\x37\x19\x1b\x20\x61\x6b\ \x74\x73\x7d\x84\x71\x7b\x82\x64\x6c\x75\x48\x4e\x5a\x5c\x64\x6d\ \x73\x7c\x83\x74\x7e\x85\x73\x7c\x83\x54\x5b\x63\x51\x56\x5e\x6d\ \x75\x7c\x79\x81\x86\x79\x81\x86\x76\x7e\x81\x61\x66\x6a\x00\x00\ \x00\x0b\x08\x05\x36\x28\x1a\x3b\x2c\x1c\x69\x4f\x33\x64\x4a\x30\ \x46\x34\x22\x1a\x14\x0c\x22\x19\x10\x29\x1f\x13\x3f\x2f\x1f\x54\ \x3f\x29\x36\x29\x1b\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ \x14\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\ \x2c\x21\x15\x2a\x1f\x14\x20\x18\x0f\x1d\x16\x0e\x20\x19\x10\x21\ \x19\x10\x1f\x17\x0f\x1c\x15\x0d\x1f\x17\x0f\x1f\x18\x0f\x28\x1e\ \x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\x2c\x21\x15\x23\x1b\x11\ \x25\x1c\x12\x2b\x20\x14\x20\x18\x0f\x22\x19\x10\x29\x1e\x14\x2a\ \x1f\x14\x29\x1f\x13\x29\x1f\x14\x26\x1c\x12\x20\x18\x0f\x25\x1c\ \x12\x29\x1f\x14\x2c\x21\x15\x2b\x21\x15\x34\x27\x19\x2c\x21\x15\ \x23\x19\x10\x1f\x17\x0f\x1f\x17\x0f\x25\x1c\x11\x2e\x22\x15\x2a\ \x1f\x14\x2e\x22\x16\x2c\x20\x14\x2a\x20\x14\x29\x1f\x13\x2b\x20\ \x14\x2d\x22\x16\x2f\x23\x17\x38\x29\x1a\x38\x2a\x1b\x2d\x21\x16\ \x27\x1e\x13\x23\x1a\x10\x26\x1d\x12\x2c\x20\x15\x26\x1c\x12\x2a\ \x1f\x14\x2f\x23\x17\x36\x29\x1a\x28\x1e\x13\x2c\x21\x15\x38\x2a\ \x1a\x41\x30\x1f\x38\x2a\x1b\x30\x24\x17\x2f\x23\x17\x2c\x21\x15\ \x35\x28\x1a\x2d\x22\x16\x31\x24\x18\x35\x27\x1a\x31\x25\x18\x31\ \x24\x18\x2d\x22\x16\x2d\x22\x16\x2a\x20\x14\x24\x1b\x12\x1e\x17\ \x0f\x1d\x16\x0e\x1e\x16\x0e\x1c\x15\x0e\x1e\x16\x0e\x26\x1d\x12\ \x27\x1d\x12\x31\x25\x18\x37\x2a\x1a\x30\x24\x17\x29\x1f\x14\x23\ \x1a\x10\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2f\x24\x17\x29\x1f\ \x13\x24\x1b\x11\x28\x1e\x13\x27\x1e\x13\x2c\x21\x15\x31\x25\x18\ \x2f\x24\x17\x2f\x23\x16\x34\x27\x19\x3a\x2b\x1c\x35\x27\x19\x35\ \x28\x1a\x36\x28\x1a\x25\x1c\x12\x28\x1e\x13\x24\x1b\x12\x22\x1a\ \x10\x22\x19\x10\x1e\x17\x0e\x29\x1f\x14\x42\x34\x26\x2b\x2e\x32\ \x34\x38\x3c\x3d\x43\x47\x47\x4e\x52\x55\x5e\x62\x2b\x31\x34\x19\ \x1b\x1d\x34\x3b\x3c\x1b\x1d\x20\x27\x2c\x2f\x4d\x58\x5b\x16\x1b\ \x1c\x00\x00\x00\x0f\x11\x14\x4a\x52\x5b\x43\x4d\x57\x6b\x76\x7d\ \x72\x7d\x84\x72\x7c\x84\x63\x6a\x73\x49\x4e\x58\x5f\x65\x6e\x75\ \x7e\x84\x74\x7e\x85\x78\x7f\x86\x5b\x62\x68\x52\x58\x60\x71\x79\ \x7e\x7b\x84\x89\x79\x83\x87\x76\x7e\x82\x00\x00\x00\x0c\x09\x06\ \x41\x31\x21\x38\x2a\x1b\x62\x4a\x30\x64\x4b\x30\x4c\x39\x25\x1d\ \x16\x0e\x1f\x17\x0f\x27\x1d\x12\x30\x25\x17\x3e\x2f\x1e\x26\x1c\ \x12\x1d\x15\x0d\x20\x17\x0e\x1f\x17\x0f\x21\x19\x10\x23\x1a\x11\ \x2b\x21\x15\x31\x25\x18\x2e\x23\x16\x2b\x20\x15\x2b\x20\x14\x29\ \x1f\x14\x24\x1b\x11\x1f\x18\x0f\x22\x19\x11\x1f\x17\x0f\x1f\x17\ \x0f\x22\x19\x10\x21\x19\x0f\x21\x19\x10\x29\x1e\x13\x2a\x20\x14\ \x2c\x21\x15\x30\x24\x17\x28\x1e\x13\x26\x1d\x12\x21\x19\x10\x28\ \x1e\x14\x26\x1d\x12\x25\x1c\x11\x24\x1b\x11\x25\x1c\x12\x22\x19\ \x10\x1d\x16\x0e\x21\x19\x10\x24\x1b\x11\x23\x1a\x11\x28\x1e\x13\ \x2b\x21\x15\x2d\x22\x16\x31\x25\x18\x2f\x22\x16\x2c\x21\x15\x22\ \x1a\x10\x1b\x15\x0d\x25\x1b\x11\x2e\x22\x15\x2a\x20\x14\x2c\x21\ \x16\x2c\x21\x15\x2a\x20\x14\x24\x1b\x11\x22\x1a\x10\x24\x1c\x11\ \x26\x1d\x12\x2a\x1f\x14\x31\x25\x18\x2d\x21\x15\x25\x1c\x12\x24\ \x1b\x11\x26\x1d\x12\x24\x1a\x11\x25\x1b\x11\x27\x1d\x13\x32\x25\ \x18\x2c\x21\x15\x20\x18\x0f\x29\x1f\x13\x34\x28\x19\x3a\x2c\x1b\ \x39\x2b\x1b\x33\x27\x19\x32\x26\x18\x24\x1b\x12\x23\x1a\x11\x28\ \x1e\x13\x28\x1e\x13\x2d\x22\x15\x2c\x21\x15\x2b\x20\x15\x27\x1e\ \x12\x2c\x21\x15\x29\x1f\x14\x23\x1b\x11\x25\x1c\x12\x2d\x21\x16\ \x22\x19\x10\x24\x1b\x11\x20\x18\x10\x27\x1d\x12\x27\x1e\x13\x37\ \x29\x1a\x3c\x2e\x1d\x2d\x22\x16\x2d\x22\x16\x2c\x21\x15\x2b\x20\ \x15\x2b\x20\x14\x2d\x22\x16\x29\x1f\x14\x27\x1e\x13\x25\x1c\x12\ \x28\x1e\x13\x2c\x21\x15\x2d\x22\x16\x2e\x22\x16\x2e\x22\x16\x2b\ \x21\x15\x2d\x22\x15\x34\x27\x19\x37\x29\x1a\x36\x28\x1a\x35\x28\ \x19\x2a\x1f\x14\x2b\x20\x15\x2e\x22\x16\x27\x1d\x13\x24\x1b\x11\ \x23\x1a\x11\x2c\x21\x15\x48\x38\x28\x2e\x30\x31\x33\x37\x3b\x3c\ \x42\x45\x47\x4e\x51\x53\x5b\x5f\x21\x24\x26\x16\x17\x18\x1d\x1f\ \x21\x4e\x57\x5d\x69\x74\x79\x32\x3a\x3e\x0b\x0c\x0e\x06\x05\x06\ \x17\x1a\x1d\x72\x7c\x84\x4a\x54\x5c\x4b\x56\x5e\x6e\x79\x80\x73\ \x7d\x84\x75\x7e\x85\x5e\x65\x6d\x46\x4b\x54\x67\x6f\x77\x76\x80\ \x87\x7a\x82\x88\x77\x7f\x83\x5d\x63\x6a\x57\x5e\x65\x71\x78\x7e\ \x7a\x83\x88\x7c\x86\x89\x00\x00\x00\x05\x03\x02\x40\x30\x20\x39\ \x2b\x1c\x5f\x48\x2f\x5e\x46\x2e\x4e\x3b\x26\x1a\x14\x0c\x1e\x17\ \x0f\x24\x1a\x11\x2c\x21\x15\x33\x27\x18\x24\x1b\x11\x1e\x16\x0e\ \x1e\x16\x0f\x1d\x16\x0e\x1d\x16\x0e\x1f\x18\x0f\x27\x1d\x13\x2d\ \x22\x16\x34\x27\x1a\x3b\x2c\x1c\x38\x2a\x1b\x32\x26\x19\x2b\x20\ \x15\x28\x1e\x13\x2a\x1f\x15\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\ \x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x28\x1e\x13\x32\x26\x18\x38\ \x2a\x1b\x2c\x21\x15\x2e\x22\x16\x23\x1b\x11\x24\x1b\x11\x2b\x21\ \x15\x2f\x24\x17\x2a\x20\x15\x27\x1d\x13\x28\x1d\x13\x26\x1c\x12\ \x28\x1e\x14\x2b\x20\x15\x27\x1d\x13\x2c\x21\x15\x30\x24\x17\x30\ \x24\x17\x32\x26\x18\x31\x24\x17\x2d\x22\x16\x28\x1e\x13\x1f\x18\ \x0f\x24\x1b\x11\x27\x1e\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\ \x2c\x21\x14\x24\x1b\x11\x1b\x15\x0d\x22\x1a\x10\x20\x18\x0f\x1d\ \x16\x0e\x25\x1c\x12\x2b\x20\x15\x29\x1f\x14\x27\x1e\x13\x26\x1d\ \x12\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\ \x24\x1b\x11\x23\x1b\x11\x2e\x23\x16\x34\x27\x19\x39\x2b\x1b\x39\ \x2b\x1c\x37\x29\x1a\x36\x29\x1a\x33\x27\x19\x30\x24\x17\x32\x26\ \x18\x29\x1f\x13\x2e\x23\x16\x33\x27\x19\x2c\x21\x15\x26\x1c\x12\ \x21\x19\x0f\x25\x1b\x11\x28\x1e\x13\x2c\x21\x15\x28\x1e\x13\x2e\ \x23\x16\x22\x1a\x11\x1d\x16\x0d\x22\x19\x10\x38\x2a\x1a\x38\x2a\ \x1b\x34\x27\x19\x2e\x22\x15\x32\x25\x17\x2e\x22\x16\x30\x24\x17\ \x2c\x21\x15\x24\x1b\x11\x22\x1a\x11\x21\x19\x10\x25\x1c\x12\x2b\ \x20\x15\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x26\x1d\x12\x2b\x20\ \x14\x34\x27\x18\x33\x27\x18\x32\x25\x18\x33\x26\x18\x28\x1e\x13\ \x25\x1b\x12\x25\x1b\x12\x1f\x17\x0f\x1c\x15\x0d\x1e\x16\x0e\x26\ \x1d\x12\x47\x38\x27\x2b\x2c\x2d\x32\x36\x39\x3b\x41\x45\x46\x4d\ \x51\x50\x58\x5c\x21\x24\x26\x00\x00\x00\x26\x29\x2b\x62\x6b\x71\ \x6c\x77\x7e\x38\x3e\x43\x1e\x1f\x24\x09\x09\x0a\x1a\x1c\x20\x72\ \x7d\x83\x68\x73\x79\x47\x51\x59\x50\x5a\x62\x6f\x79\x80\x75\x7f\ \x86\x78\x81\x87\x5a\x60\x67\x4c\x51\x5a\x69\x70\x79\x78\x81\x85\ \x7a\x83\x87\x78\x80\x85\x5f\x66\x6c\x55\x5c\x62\x71\x79\x7e\x80\ \x8a\x8e\x00\x00\x00\x09\x07\x05\x48\x36\x24\x46\x35\x22\x5d\x45\ \x2d\x73\x55\x38\x5c\x45\x2d\x23\x1a\x11\x20\x18\x10\x23\x1a\x11\ \x2a\x20\x14\x27\x1d\x12\x25\x1c\x11\x1f\x17\x0f\x1f\x17\x0f\x1c\ \x15\x0d\x1d\x15\x0d\x20\x18\x10\x25\x1c\x12\x26\x1d\x12\x2e\x22\ \x16\x34\x27\x19\x39\x2b\x1b\x37\x29\x1b\x2e\x22\x16\x2c\x21\x15\ \x2a\x1f\x15\x27\x1e\x13\x24\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x23\ \x1a\x10\x1f\x17\x0f\x24\x1b\x12\x2f\x23\x17\x35\x27\x19\x36\x29\ \x1a\x35\x28\x1a\x30\x24\x17\x32\x26\x18\x31\x25\x17\x32\x26\x18\ \x3a\x2c\x1d\x31\x24\x18\x27\x1d\x13\x25\x1c\x12\x28\x1e\x13\x2c\ \x22\x15\x24\x1c\x12\x21\x19\x10\x24\x1b\x11\x26\x1c\x12\x2e\x23\ \x16\x2f\x23\x16\x2e\x22\x16\x28\x1e\x13\x1c\x15\x0d\x1f\x17\x0f\ \x1b\x15\x0d\x23\x1b\x11\x2b\x21\x15\x2d\x22\x15\x2f\x23\x16\x2e\ \x21\x16\x26\x1c\x12\x27\x1d\x13\x24\x1b\x12\x1f\x18\x0f\x24\x1a\ \x11\x2b\x20\x14\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\x1f\x18\x0f\ \x20\x18\x0f\x1f\x18\x0f\x21\x18\x0f\x23\x1b\x11\x23\x1a\x11\x25\ \x1b\x11\x29\x1f\x13\x30\x24\x17\x38\x29\x1a\x3e\x2f\x1e\x3e\x2f\ \x1e\x44\x33\x21\x47\x35\x22\x46\x34\x21\x3a\x2b\x1b\x28\x1e\x13\ \x27\x1d\x13\x2e\x22\x16\x2d\x22\x16\x27\x1d\x13\x27\x1d\x12\x2a\ \x20\x14\x29\x1f\x14\x2f\x24\x16\x30\x24\x17\x34\x27\x19\x2d\x23\ \x16\x24\x1c\x12\x30\x24\x17\x39\x2b\x1b\x39\x2a\x1b\x35\x28\x1a\ \x2c\x21\x15\x2f\x24\x17\x31\x25\x17\x31\x25\x18\x28\x1d\x13\x27\ \x1d\x13\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x2d\x22\x16\x2e\x22\ \x16\x29\x1f\x14\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\ \x2a\x20\x14\x2c\x21\x15\x34\x27\x19\x2a\x1f\x14\x2f\x23\x16\x1c\ \x15\x0d\x22\x19\x10\x20\x18\x10\x21\x18\x0f\x1f\x16\x0e\x39\x2d\ \x1f\x30\x30\x2f\x31\x36\x39\x3a\x3f\x43\x47\x4d\x51\x3f\x46\x49\ \x28\x2c\x2f\x06\x07\x07\x2b\x2f\x30\x63\x6d\x72\x6e\x77\x7f\x47\ \x4e\x56\x44\x48\x51\x00\x00\x00\x36\x3a\x3f\x75\x80\x86\x6f\x79\ \x7f\x69\x73\x79\x4a\x54\x5c\x57\x60\x68\x74\x7e\x85\x77\x80\x87\ \x75\x7e\x83\x5a\x60\x67\x4f\x53\x5c\x6c\x74\x7a\x7b\x84\x89\x79\ \x82\x86\x77\x7f\x83\x5f\x67\x6c\x5a\x60\x64\x73\x7a\x7f\x00\x00\ \x00\x09\x07\x05\x48\x36\x24\x45\x34\x22\x57\x41\x2a\x6f\x53\x36\ \x5d\x45\x2d\x28\x1e\x13\x30\x24\x17\x2d\x22\x15\x35\x28\x1a\x2c\ \x20\x14\x27\x1d\x12\x23\x1b\x10\x1a\x13\x0c\x1e\x16\x0e\x20\x18\ \x0f\x21\x19\x0f\x1d\x17\x0e\x21\x19\x10\x28\x1e\x13\x2a\x20\x15\ \x31\x25\x18\x2f\x23\x17\x26\x1d\x12\x27\x1d\x12\x28\x1d\x13\x29\ \x1f\x14\x28\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x1f\x18\ \x0f\x25\x1c\x12\x2d\x22\x15\x35\x27\x19\x33\x27\x19\x36\x28\x1a\ \x38\x29\x1b\x3d\x2e\x1d\x39\x2b\x1c\x2d\x22\x15\x2a\x1f\x14\x25\ \x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x0f\x27\x1e\x13\x22\x1a\ \x10\x1a\x14\x0c\x1e\x16\x0e\x1e\x17\x0f\x2b\x20\x15\x33\x27\x19\ \x2f\x24\x17\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x22\x1a\x10\x21\ \x19\x10\x24\x1b\x11\x25\x1b\x11\x28\x1e\x13\x2e\x22\x16\x2d\x21\ \x16\x27\x1d\x12\x23\x1b\x11\x1e\x16\x0f\x1d\x15\x0e\x29\x1f\x13\ \x30\x24\x17\x27\x1d\x12\x2b\x20\x14\x27\x1d\x13\x24\x1b\x11\x20\ \x18\x0f\x21\x18\x0f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x11\x27\x1e\ \x13\x2f\x23\x17\x33\x26\x19\x36\x29\x1a\x3a\x2b\x1c\x35\x27\x1a\ \x3c\x2d\x1d\x40\x30\x1f\x33\x27\x19\x2c\x21\x15\x28\x1e\x14\x2a\ \x1f\x14\x32\x25\x18\x33\x26\x19\x36\x29\x1a\x32\x25\x18\x36\x29\ \x1a\x3a\x2b\x1b\x3b\x2c\x1c\x2d\x22\x16\x33\x26\x18\x24\x1b\x12\ \x26\x1d\x12\x35\x28\x19\x26\x1d\x12\x28\x1e\x13\x27\x1d\x13\x2c\ \x21\x15\x35\x28\x1a\x2d\x22\x16\x1f\x18\x0f\x28\x1e\x13\x25\x1c\ \x12\x1a\x14\x0d\x1e\x16\x0f\x26\x1c\x12\x2a\x1f\x14\x22\x1a\x10\ \x20\x18\x0f\x21\x18\x10\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x32\ \x26\x18\x2f\x23\x16\x28\x1f\x13\x30\x23\x17\x22\x1a\x10\x1e\x16\ \x0e\x21\x19\x10\x1f\x18\x0f\x22\x19\x0f\x3b\x2d\x1f\x35\x32\x2f\ \x2f\x34\x37\x39\x3f\x42\x47\x4d\x51\x32\x36\x3a\x32\x36\x3a\x13\ \x15\x15\x32\x37\x3a\x65\x6e\x75\x6d\x77\x80\x69\x73\x7c\x36\x3b\ \x40\x39\x3d\x40\x37\x3d\x43\x6d\x76\x7d\x73\x7d\x83\x72\x7c\x83\ \x67\x70\x78\x49\x51\x5b\x5b\x64\x6c\x75\x7f\x86\x75\x7f\x83\x76\ \x7e\x83\x5c\x61\x68\x50\x55\x5c\x6d\x76\x7c\x7a\x85\x89\x7b\x88\ \x8c\x76\x83\x87\x65\x6d\x71\x58\x5d\x61\x00\x00\x00\x00\x00\x00\ \x38\x2a\x1b\x3d\x2e\x1e\x59\x43\x2b\x62\x4a\x2f\x61\x48\x2f\x2b\ \x20\x15\x33\x26\x19\x3b\x2c\x1c\x33\x26\x19\x31\x24\x17\x2a\x20\ \x14\x1e\x17\x0e\x1c\x14\x0d\x1e\x17\x0e\x1e\x17\x0f\x1d\x16\x0e\ \x1d\x15\x0e\x20\x18\x0f\x25\x1c\x12\x28\x1e\x14\x2e\x23\x16\x2f\ \x23\x17\x28\x1d\x13\x28\x1e\x12\x2e\x22\x16\x27\x1e\x13\x2b\x20\ \x15\x2a\x20\x14\x24\x1b\x11\x1e\x16\x0e\x1c\x15\x0d\x22\x1a\x10\ \x23\x1b\x11\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x3a\x2b\x1c\x39\ \x2b\x1b\x32\x26\x18\x28\x1e\x13\x20\x18\x0f\x21\x19\x0f\x20\x18\ \x0f\x1f\x17\x0e\x1f\x17\x0f\x25\x1c\x12\x23\x1a\x10\x1b\x15\x0d\ \x21\x19\x10\x26\x1d\x13\x2f\x23\x16\x30\x23\x17\x2e\x23\x16\x2a\ \x1f\x14\x23\x1a\x11\x1f\x17\x0f\x26\x1c\x12\x23\x1b\x11\x2a\x20\ \x14\x27\x1d\x13\x26\x1d\x12\x26\x1c\x12\x2b\x20\x14\x33\x26\x18\ \x34\x27\x18\x33\x26\x18\x29\x1f\x14\x30\x24\x17\x39\x2b\x1c\x32\ \x26\x18\x2f\x24\x16\x35\x27\x1a\x30\x25\x17\x2a\x20\x14\x25\x1c\ \x12\x1e\x17\x0e\x1d\x16\x0e\x23\x1b\x11\x23\x1a\x11\x22\x1a\x10\ \x2c\x21\x15\x26\x1d\x12\x2b\x20\x14\x25\x1c\x12\x2e\x23\x16\x30\ \x24\x17\x26\x1d\x12\x28\x1e\x13\x28\x1f\x14\x25\x1c\x12\x2a\x1f\ \x14\x2a\x20\x14\x30\x24\x18\x2f\x23\x17\x30\x24\x17\x36\x29\x1a\ \x2d\x22\x16\x32\x26\x18\x30\x24\x17\x2d\x22\x15\x28\x1f\x14\x33\ \x26\x19\x23\x1a\x11\x20\x18\x0f\x26\x1d\x12\x2f\x23\x17\x31\x25\ \x17\x2f\x23\x17\x2e\x22\x16\x2c\x21\x15\x27\x1e\x12\x23\x1b\x11\ \x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x20\x18\x0f\x2c\ \x22\x15\x36\x29\x1a\x2e\x23\x16\x2c\x21\x15\x33\x26\x19\x2f\x24\ \x17\x2b\x21\x15\x2a\x1f\x14\x25\x1d\x12\x1b\x14\x0d\x20\x19\x0f\ \x1c\x16\x0e\x21\x19\x10\x34\x28\x1b\x39\x34\x2d\x2f\x34\x37\x39\ \x3e\x41\x45\x4b\x4f\x47\x4d\x52\x2f\x33\x36\x2c\x31\x34\x56\x5f\ \x64\x69\x71\x79\x6b\x76\x7d\x6f\x79\x80\x3f\x47\x4e\x69\x72\x78\ \x51\x59\x60\x3c\x43\x4a\x6e\x78\x80\x75\x7f\x86\x73\x7d\x84\x64\ \x6c\x74\x49\x50\x59\x60\x69\x70\x77\x81\x86\x78\x81\x86\x74\x7c\ \x82\x63\x69\x70\x4c\x53\x5a\x66\x6e\x74\x38\x42\x46\x41\x4d\x52\ \x73\x80\x86\x65\x6d\x70\x00\x00\x00\x01\x01\x01\x3d\x2d\x1e\x45\ \x34\x22\x56\x40\x29\x5b\x44\x2c\x66\x4c\x31\x31\x26\x18\x36\x29\ \x1b\x2f\x24\x17\x31\x25\x17\x34\x27\x19\x2c\x22\x15\x1f\x17\x0f\ \x19\x13\x0c\x1c\x15\x0d\x21\x18\x0f\x1f\x17\x0f\x20\x18\x0f\x20\ \x18\x0f\x23\x1a\x11\x26\x1c\x12\x30\x24\x17\x33\x26\x18\x2d\x22\ \x15\x2a\x20\x14\x26\x1c\x12\x29\x1e\x14\x2c\x21\x15\x31\x25\x17\ \x30\x24\x17\x1f\x17\x0f\x24\x1a\x11\x21\x18\x0f\x29\x20\x14\x2f\ \x23\x16\x33\x26\x19\x36\x28\x1a\x32\x25\x18\x33\x26\x19\x34\x27\ \x19\x31\x25\x18\x2d\x21\x15\x26\x1c\x12\x27\x1d\x13\x23\x1a\x11\ \x20\x18\x10\x27\x1e\x13\x27\x1d\x13\x23\x1a\x11\x25\x1c\x12\x29\ \x1f\x14\x29\x1f\x13\x27\x1e\x12\x24\x1b\x11\x1d\x16\x0e\x21\x18\ \x0f\x22\x19\x10\x1e\x16\x0e\x21\x18\x10\x2b\x1f\x14\x24\x1b\x12\ \x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x3a\x2b\x1c\x3a\x2b\x1c\x34\ \x26\x19\x2f\x23\x17\x34\x27\x19\x2d\x21\x16\x22\x19\x10\x23\x1a\ \x11\x24\x1c\x12\x2e\x23\x16\x2e\x23\x16\x2a\x1f\x14\x24\x1b\x11\ \x1f\x18\x0f\x1f\x16\x0e\x20\x18\x10\x1e\x16\x0e\x20\x19\x0f\x1e\ \x17\x0e\x1d\x16\x0e\x1d\x16\x0e\x2b\x20\x14\x2b\x21\x15\x23\x1a\ \x10\x24\x1b\x11\x27\x1e\x13\x28\x1e\x14\x2a\x1f\x14\x2b\x21\x15\ \x2f\x24\x17\x36\x29\x1a\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2c\ \x21\x15\x30\x24\x17\x26\x1d\x12\x2c\x22\x16\x2b\x21\x15\x2e\x23\ \x16\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\x29\x1f\x14\x30\x25\x17\ \x35\x27\x19\x30\x23\x17\x2b\x21\x15\x27\x1d\x12\x24\x1b\x11\x1d\ \x16\x0d\x1e\x16\x0d\x21\x19\x10\x22\x19\x10\x2b\x20\x14\x2f\x24\ \x17\x30\x24\x17\x2a\x1f\x14\x34\x26\x19\x33\x27\x19\x2d\x22\x16\ \x2b\x20\x15\x2b\x20\x14\x27\x1d\x12\x29\x1e\x13\x31\x24\x17\x2c\ \x21\x16\x38\x2b\x1d\x3d\x36\x2e\x2f\x33\x36\x38\x3d\x41\x43\x4a\ \x4d\x4e\x55\x5a\x2b\x2f\x33\x43\x49\x4f\x66\x70\x77\x66\x70\x78\ \x6b\x76\x7d\x6e\x79\x81\x69\x73\x7c\x6e\x78\x7f\x6d\x76\x7d\x4e\ \x56\x5d\x3e\x48\x4d\x74\x7e\x85\x74\x7e\x85\x73\x7c\x83\x63\x6a\ \x72\x4d\x54\x5d\x67\x70\x76\x75\x7f\x84\x79\x83\x88\x79\x83\x87\ \x62\x68\x6e\x2d\x31\x36\x04\x05\x05\x08\x0b\x0c\x3a\x46\x4b\x79\ \x87\x8a\x00\x00\x00\x01\x01\x00\x27\x1e\x13\x38\x2a\x1b\x4a\x37\ \x23\x65\x4b\x31\x69\x4f\x33\x2f\x23\x16\x3a\x2c\x1c\x2e\x22\x16\ \x33\x27\x18\x25\x1b\x12\x27\x1d\x12\x25\x1c\x12\x22\x19\x10\x1b\ \x14\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x0f\x1b\x14\x0d\x1b\x14\ \x0d\x1e\x16\x0e\x2b\x20\x14\x30\x24\x17\x2f\x24\x16\x26\x1c\x12\ \x26\x1d\x13\x2b\x20\x14\x2a\x20\x14\x2d\x22\x16\x2f\x24\x17\x22\ \x1a\x10\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x2b\x20\x15\x2f\x24\ \x17\x34\x26\x19\x30\x25\x17\x2f\x24\x16\x35\x28\x19\x31\x25\x18\ \x30\x24\x18\x2b\x21\x15\x30\x24\x17\x32\x26\x18\x2c\x21\x15\x2a\ \x1f\x15\x2c\x21\x15\x25\x1c\x12\x27\x1e\x13\x24\x1b\x12\x23\x1a\ \x11\x25\x1b\x12\x24\x1b\x11\x23\x1a\x11\x1f\x18\x0f\x21\x19\x10\ \x22\x19\x10\x20\x18\x0f\x25\x1b\x12\x20\x18\x0f\x1f\x17\x0f\x20\ \x18\x0f\x1e\x17\x0e\x21\x19\x10\x2d\x22\x16\x29\x1f\x14\x2e\x23\ \x16\x2f\x23\x16\x24\x1b\x11\x27\x1e\x14\x2a\x20\x14\x25\x1c\x12\ \x29\x1f\x14\x2c\x21\x15\x33\x26\x18\x20\x18\x0f\x20\x17\x0f\x1e\ \x16\x0e\x22\x19\x10\x22\x19\x10\x24\x1b\x12\x23\x1b\x11\x23\x1b\ \x11\x27\x1e\x13\x1f\x18\x0f\x25\x1c\x12\x2a\x1f\x13\x23\x1b\x11\ \x22\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x14\x30\x24\x17\x32\ \x25\x18\x28\x1e\x13\x29\x1e\x14\x2c\x20\x15\x2c\x21\x15\x2d\x22\ \x15\x2d\x23\x16\x2e\x22\x16\x2c\x21\x15\x30\x24\x17\x2d\x22\x16\ \x21\x19\x10\x25\x1c\x12\x26\x1d\x12\x30\x24\x16\x3a\x2b\x1b\x3e\ \x2e\x1e\x39\x2a\x1b\x2a\x20\x14\x29\x1e\x13\x26\x1c\x12\x25\x1b\ \x11\x24\x1b\x11\x24\x1b\x11\x29\x1f\x14\x2b\x21\x15\x28\x1d\x13\ \x29\x1e\x13\x29\x1e\x14\x2b\x20\x15\x23\x1a\x11\x1e\x16\x0e\x29\ \x1f\x13\x27\x1d\x12\x2b\x20\x15\x2f\x23\x16\x2e\x22\x16\x35\x29\ \x1b\x2c\x28\x23\x2e\x32\x35\x37\x3c\x3f\x42\x48\x4c\x4a\x52\x57\ \x46\x4d\x54\x56\x5e\x66\x63\x6d\x74\x67\x71\x79\x6b\x75\x7d\x6e\ \x77\x80\x6d\x77\x7f\x6f\x79\x80\x73\x7b\x82\x6d\x75\x7c\x4e\x57\ \x5b\x46\x4f\x54\x77\x81\x88\x75\x7e\x85\x75\x7d\x84\x67\x6e\x76\ \x4b\x52\x5b\x67\x70\x76\x78\x82\x86\x7a\x84\x88\x7b\x84\x89\x3a\ \x3e\x42\x00\x00\x00\x00\x00\x00\x0f\x12\x14\x60\x6d\x72\x00\x00\ \x00\x0f\x0b\x06\x49\x37\x24\x3f\x30\x1f\x3e\x2f\x1e\x51\x3c\x27\ \x57\x41\x2a\x2a\x20\x14\x29\x1e\x14\x24\x1b\x11\x2b\x20\x15\x2a\ \x20\x14\x25\x1b\x11\x1f\x17\x0f\x20\x19\x0f\x24\x1b\x10\x23\x1a\ \x10\x20\x17\x0f\x1a\x13\x0c\x18\x12\x0c\x16\x10\x0b\x1c\x15\x0d\ \x2d\x22\x16\x30\x23\x17\x2c\x21\x15\x23\x1b\x11\x21\x19\x10\x2d\ \x22\x15\x2e\x22\x16\x2b\x20\x15\x22\x1a\x10\x1b\x14\x0d\x1b\x15\ \x0d\x23\x1a\x11\x2a\x1f\x14\x2a\x1f\x13\x26\x1d\x12\x2b\x20\x14\ \x32\x26\x17\x34\x27\x19\x36\x29\x1b\x37\x29\x1a\x31\x24\x18\x2c\ \x22\x16\x31\x25\x18\x30\x24\x17\x2e\x22\x16\x29\x1f\x14\x27\x1d\ \x13\x2b\x21\x15\x37\x29\x1b\x30\x24\x17\x2f\x23\x17\x30\x24\x18\ \x28\x1e\x14\x28\x1e\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\x1d\ \x16\x0e\x1d\x16\x0e\x1d\x15\x0e\x23\x1a\x10\x1e\x16\x0e\x17\x11\ \x0b\x19\x13\x0c\x20\x18\x10\x28\x1e\x13\x29\x1f\x13\x28\x1e\x14\ \x2d\x22\x16\x2b\x20\x14\x25\x1c\x11\x1d\x16\x0d\x20\x18\x0f\x29\ \x1f\x13\x31\x25\x18\x28\x1e\x13\x28\x1e\x13\x1d\x16\x0e\x2a\x1f\ \x14\x27\x1d\x12\x2b\x21\x14\x23\x1a\x11\x2c\x20\x15\x39\x2a\x1b\ \x2d\x22\x15\x27\x1e\x13\x24\x1b\x12\x23\x1a\x11\x22\x1a\x10\x23\ \x1a\x10\x27\x1d\x13\x22\x1a\x11\x2b\x20\x14\x30\x24\x17\x2b\x20\ \x15\x2b\x20\x15\x29\x1f\x14\x2e\x22\x16\x33\x27\x19\x29\x1f\x14\ \x2c\x21\x15\x24\x1b\x11\x29\x1f\x14\x32\x25\x17\x29\x1f\x14\x23\ \x1b\x11\x21\x19\x10\x2a\x20\x14\x33\x26\x19\x33\x26\x19\x34\x27\ \x19\x2e\x23\x17\x2a\x20\x14\x2c\x20\x14\x34\x27\x19\x2e\x22\x16\ \x2a\x1f\x14\x2c\x21\x15\x25\x1d\x12\x1e\x17\x0f\x27\x1d\x12\x23\ \x1a\x11\x20\x18\x10\x28\x1e\x13\x1c\x14\x0d\x1e\x16\x0e\x22\x19\ \x11\x2f\x23\x17\x30\x23\x16\x32\x26\x17\x32\x26\x18\x30\x2a\x23\ \x2d\x31\x35\x35\x3a\x3e\x40\x46\x4a\x4a\x51\x56\x54\x5c\x62\x5c\ \x65\x6c\x63\x6d\x75\x68\x72\x79\x6c\x76\x7e\x6c\x77\x7f\x71\x7a\ \x81\x72\x7b\x81\x72\x79\x80\x73\x7b\x82\x6d\x76\x7a\x48\x50\x55\ \x50\x59\x5e\x77\x81\x87\x76\x7f\x86\x78\x7f\x86\x63\x68\x70\x48\ \x4c\x55\x6f\x76\x7b\x7b\x86\x8b\x7f\x8a\x91\x51\x59\x5e\x00\x00\ \x00\x00\x00\x00\x05\x05\x05\x3c\x44\x47\x00\x00\x00\x02\x02\x01\ \x36\x2a\x1b\x40\x30\x1f\x4c\x39\x25\x59\x43\x2c\x60\x48\x2f\x38\ \x2a\x1b\x1d\x16\x0e\x20\x18\x10\x2e\x22\x16\x24\x1b\x11\x21\x19\ \x0f\x17\x12\x0c\x1c\x16\x0e\x1e\x17\x0f\x21\x19\x10\x25\x1c\x12\ \x1f\x17\x0f\x16\x11\x0a\x18\x12\x0b\x23\x1a\x11\x2a\x20\x14\x29\ \x20\x13\x29\x1f\x14\x1e\x16\x0f\x23\x1b\x11\x2b\x21\x14\x32\x26\ \x18\x24\x1b\x11\x21\x18\x10\x1c\x15\x0d\x20\x18\x0f\x26\x1d\x12\ \x27\x1d\x13\x29\x1e\x14\x24\x1c\x12\x2b\x21\x15\x27\x1d\x13\x2e\ \x21\x15\x37\x29\x1b\x38\x29\x1b\x38\x2a\x1a\x38\x2a\x1b\x39\x2b\ \x1c\x2a\x20\x14\x1f\x17\x0f\x24\x1b\x11\x24\x1a\x11\x22\x1a\x10\ \x2e\x22\x16\x26\x1c\x12\x23\x1b\x11\x23\x1a\x11\x23\x1a\x11\x2b\ \x20\x15\x24\x1b\x11\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x20\x18\ \x0f\x26\x1c\x11\x2a\x1f\x14\x26\x1c\x12\x25\x1c\x11\x1e\x17\x0e\ \x1d\x16\x0e\x20\x19\x10\x22\x1a\x11\x27\x1e\x12\x2b\x20\x15\x2c\ \x21\x15\x26\x1d\x12\x25\x1c\x12\x22\x1a\x10\x25\x1c\x12\x29\x1e\ \x13\x20\x18\x0f\x21\x19\x10\x29\x1e\x13\x22\x19\x10\x2a\x20\x14\ \x26\x1d\x12\x24\x1c\x11\x21\x19\x10\x26\x1c\x13\x2a\x20\x14\x2a\ \x1f\x14\x27\x1d\x13\x20\x18\x0f\x23\x1a\x10\x28\x1e\x13\x24\x1b\ \x11\x1e\x17\x0f\x27\x1d\x12\x31\x24\x18\x28\x1e\x13\x24\x1b\x11\ \x28\x1e\x13\x27\x1d\x12\x30\x25\x18\x2f\x23\x16\x36\x29\x1a\x33\ \x26\x18\x36\x28\x1a\x34\x27\x19\x2e\x22\x16\x25\x1c\x11\x2a\x20\ \x14\x30\x25\x17\x3c\x2d\x1d\x3b\x2c\x1d\x36\x28\x1a\x38\x2a\x1b\ \x32\x26\x18\x34\x27\x19\x35\x28\x1a\x34\x27\x19\x34\x27\x19\x3d\ \x2d\x1d\x39\x2b\x1c\x24\x1b\x11\x22\x19\x10\x1f\x17\x0f\x23\x1a\ \x10\x21\x19\x10\x20\x18\x0f\x19\x13\x0b\x18\x13\x0c\x1e\x17\x0e\ \x21\x19\x10\x23\x1b\x11\x3b\x2c\x1e\x47\x3b\x2f\x2d\x31\x33\x35\ \x39\x3e\x40\x45\x4a\x4b\x51\x57\x53\x5a\x61\x5b\x63\x6a\x62\x6b\ \x72\x66\x71\x78\x6a\x76\x7c\x6d\x76\x7e\x70\x7a\x81\x72\x7b\x81\ \x73\x7b\x82\x73\x7b\x82\x75\x7e\x83\x6c\x74\x78\x4b\x52\x57\x58\ \x61\x68\x79\x82\x89\x77\x80\x86\x7a\x83\x88\x5f\x65\x6c\x48\x4d\ \x54\x6e\x77\x7e\x7e\x8a\x90\x6d\x77\x7b\x08\x08\x08\x00\x00\x00\ \x01\x01\x01\x27\x2d\x2f\x00\x00\x00\x00\x00\x00\x26\x1d\x13\x3a\ \x2d\x1d\x41\x30\x1f\x54\x3f\x28\x62\x49\x2f\x4f\x3b\x26\x1e\x16\ \x0f\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x1c\x15\x0d\x1f\x18\x0f\ \x29\x20\x14\x22\x1a\x10\x2b\x20\x15\x2a\x1f\x14\x2b\x20\x15\x26\ \x1d\x12\x1c\x15\x0d\x27\x1d\x13\x2f\x24\x17\x2e\x22\x16\x22\x1a\ \x10\x24\x1c\x11\x28\x1f\x13\x29\x20\x14\x2a\x20\x15\x27\x1d\x13\ \x27\x1d\x13\x20\x18\x0f\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x1e\ \x17\x0e\x1f\x17\x0f\x23\x1a\x11\x22\x1a\x11\x24\x1b\x11\x24\x1b\ \x11\x28\x1e\x13\x2d\x22\x16\x34\x27\x19\x36\x29\x1a\x2a\x20\x14\ \x1f\x17\x0f\x1e\x16\x0f\x1d\x16\x0e\x21\x19\x0f\x1f\x17\x0f\x20\ \x18\x0f\x25\x1c\x12\x26\x1c\x12\x26\x1c\x11\x28\x1e\x14\x21\x19\ \x0f\x22\x19\x10\x1e\x16\x0e\x19\x13\x0c\x1c\x15\x0e\x1d\x16\x0e\ \x20\x18\x10\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x1a\x13\x0c\x20\ \x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x26\x1c\x12\x2d\x21\x16\x29\x1f\ \x14\x2d\x22\x16\x2b\x20\x14\x21\x19\x10\x21\x19\x0f\x19\x13\x0b\ \x1e\x16\x0d\x2a\x1f\x13\x2b\x20\x14\x20\x18\x0f\x26\x1d\x12\x2d\ \x22\x16\x32\x25\x18\x36\x28\x1a\x3b\x2d\x1c\x33\x27\x18\x33\x26\ \x18\x2d\x21\x15\x28\x1e\x13\x22\x1a\x10\x26\x1d\x12\x28\x1e\x13\ \x25\x1c\x12\x24\x1c\x12\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\ \x23\x16\x2b\x20\x15\x2b\x21\x15\x30\x24\x17\x2f\x23\x17\x3a\x2c\ \x1d\x39\x2b\x1c\x29\x1f\x14\x23\x1b\x11\x22\x19\x10\x2a\x1f\x13\ \x31\x25\x18\x36\x29\x1a\x30\x24\x17\x2a\x20\x14\x2c\x21\x15\x2c\ \x21\x15\x2d\x21\x16\x32\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x39\x2a\ \x1b\x2d\x22\x16\x2a\x1f\x14\x23\x1a\x11\x25\x1c\x12\x1e\x16\x0e\ \x1d\x16\x0d\x19\x13\x0c\x1b\x14\x0d\x22\x1a\x11\x22\x1a\x11\x25\ \x1c\x11\x32\x25\x19\x46\x39\x2b\x2b\x2f\x32\x34\x39\x3d\x3f\x44\ \x49\x4a\x50\x56\x54\x5b\x62\x5e\x65\x6c\x63\x6d\x74\x67\x71\x78\ \x6b\x75\x7e\x6d\x79\x80\x6f\x7a\x81\x70\x7a\x81\x71\x7b\x82\x75\ \x7e\x81\x74\x7d\x82\x77\x7f\x86\x66\x6f\x73\x43\x4a\x4f\x60\x69\ \x6e\x79\x82\x86\x7b\x84\x88\x7b\x84\x88\x5c\x61\x68\x43\x48\x50\ \x74\x7d\x82\x7c\x87\x8a\x35\x3b\x3c\x00\x00\x00\x00\x00\x00\x16\ \x1a\x1b\x00\x00\x00\x00\x00\x00\x29\x1f\x15\x49\x38\x24\x40\x30\ \x1f\x50\x3c\x27\x6a\x4f\x34\x50\x3d\x27\x23\x1a\x11\x10\x0c\x07\ \x1c\x15\x0e\x26\x1c\x12\x28\x1e\x13\x2c\x21\x14\x27\x1d\x13\x28\ \x1f\x14\x28\x1e\x13\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x20\x18\ \x0f\x24\x1b\x11\x29\x1f\x14\x21\x19\x10\x1a\x14\x0c\x1d\x15\x0e\ \x20\x18\x0f\x25\x1b\x12\x19\x13\x0b\x18\x13\x0c\x2c\x21\x15\x26\ \x1d\x12\x20\x18\x10\x21\x19\x0f\x1f\x18\x0f\x27\x1d\x12\x20\x18\ \x10\x24\x1b\x12\x26\x1c\x12\x27\x1e\x13\x23\x1b\x11\x2e\x23\x16\ \x36\x28\x1a\x36\x28\x19\x2e\x22\x16\x2d\x22\x15\x25\x1c\x12\x23\ \x1b\x11\x28\x1e\x13\x23\x19\x10\x1b\x15\x0d\x1b\x15\x0d\x1f\x17\ \x0f\x25\x1c\x11\x21\x19\x10\x20\x18\x0f\x25\x1c\x12\x24\x1c\x12\ \x24\x1b\x11\x19\x13\x0c\x16\x11\x0b\x1b\x14\x0d\x22\x19\x11\x21\ \x19\x0f\x20\x18\x10\x23\x1a\x11\x21\x19\x10\x20\x18\x0f\x1d\x16\ \x0e\x1f\x17\x0f\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x14\ \x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x28\x1e\x13\x30\x24\x17\x32\ \x25\x18\x2d\x22\x15\x2e\x23\x16\x2e\x22\x16\x32\x26\x19\x34\x26\ \x19\x30\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x38\x29\x1b\x35\x28\x19\ \x36\x28\x1a\x33\x26\x18\x34\x26\x19\x28\x1e\x13\x23\x1b\x10\x1c\ \x15\x0d\x1f\x17\x0e\x2e\x22\x16\x28\x1e\x13\x1e\x16\x0e\x27\x1d\ \x13\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2e\x23\x16\x2b\x20\x14\ \x25\x1c\x11\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x2f\x23\x16\x39\ \x2b\x1b\x3e\x2f\x1e\x3c\x2d\x1d\x2c\x21\x15\x21\x19\x10\x25\x1c\ \x12\x2f\x23\x17\x32\x26\x18\x3a\x2c\x1c\x3f\x2f\x1f\x3c\x2d\x1d\ \x3f\x2f\x1e\x2c\x21\x14\x24\x1b\x12\x26\x1d\x12\x21\x19\x10\x1c\ \x15\x0d\x1c\x15\x0d\x1d\x16\x0e\x23\x1a\x11\x23\x1b\x11\x32\x26\ \x19\x4d\x3e\x2f\x2b\x2f\x32\x34\x38\x3c\x3e\x44\x48\x48\x4f\x53\ \x51\x57\x5e\x5a\x62\x69\x61\x6a\x71\x67\x71\x79\x6c\x76\x7e\x6c\ \x76\x7e\x6e\x79\x80\x72\x7c\x82\x73\x7c\x83\x72\x7b\x82\x77\x7f\ \x86\x76\x7e\x85\x79\x81\x86\x66\x6e\x73\x49\x51\x56\x64\x6d\x71\ \x7b\x84\x88\x79\x83\x87\x7a\x82\x87\x60\x65\x6d\x51\x57\x5f\x74\ \x7d\x82\x71\x79\x7e\x19\x1b\x1d\x00\x00\x00\x14\x15\x18\x00\x00\ \x00\x03\x02\x01\x22\x1a\x10\x3e\x2f\x1f\x35\x28\x19\x57\x41\x2a\ \x65\x4b\x31\x4d\x39\x26\x1c\x15\x0d\x11\x0d\x09\x18\x12\x0b\x22\ \x1a\x10\x2b\x20\x15\x2f\x24\x17\x26\x1c\x12\x29\x1f\x13\x2c\x21\ \x15\x30\x24\x17\x2d\x22\x16\x29\x1f\x14\x1e\x16\x0e\x1d\x16\x0e\ \x1f\x17\x0f\x1b\x15\x0d\x17\x12\x0c\x19\x12\x0c\x23\x1a\x10\x2b\ \x21\x14\x21\x18\x10\x2c\x21\x15\x2a\x1f\x14\x22\x1a\x11\x28\x1f\ \x14\x31\x25\x18\x26\x1c\x12\x29\x1e\x13\x25\x1c\x12\x27\x1d\x13\ \x2c\x21\x15\x2f\x23\x17\x26\x1c\x12\x27\x1c\x12\x2e\x22\x16\x35\ \x28\x1a\x2d\x21\x15\x28\x1e\x13\x27\x1d\x13\x22\x1a\x11\x21\x19\ \x10\x1e\x17\x0e\x20\x18\x0f\x1c\x16\x0e\x1b\x14\x0d\x1c\x15\x0d\ \x23\x1b\x11\x1b\x14\x0d\x1f\x17\x0f\x26\x1d\x13\x24\x1b\x12\x2c\ \x22\x16\x1b\x14\x0d\x1a\x13\x0d\x21\x19\x10\x29\x1f\x13\x32\x26\ \x18\x2d\x22\x16\x25\x1b\x12\x23\x1b\x11\x1b\x15\x0d\x1a\x13\x0c\ \x1d\x15\x0e\x2b\x20\x15\x28\x1e\x13\x2f\x23\x17\x2e\x23\x17\x2e\ \x23\x16\x24\x1b\x12\x24\x1b\x11\x28\x1e\x13\x2a\x1f\x14\x28\x1e\ \x13\x19\x13\x0c\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2d\x22\x16\ \x30\x24\x17\x31\x25\x18\x35\x27\x19\x36\x28\x19\x31\x25\x18\x37\ \x29\x1a\x3a\x2b\x1b\x34\x27\x19\x22\x1a\x11\x1e\x17\x0e\x1e\x16\ \x0e\x21\x1a\x10\x25\x1c\x12\x1d\x16\x0e\x28\x1e\x13\x21\x19\x10\ \x26\x1c\x12\x27\x1d\x12\x23\x1a\x10\x26\x1c\x12\x24\x1b\x11\x24\ \x1b\x11\x33\x26\x18\x37\x29\x1a\x3a\x2b\x1c\x3c\x2d\x1d\x3a\x2b\ \x1c\x38\x2a\x1b\x2e\x22\x16\x2f\x23\x17\x34\x26\x18\x2c\x21\x15\ \x2a\x21\x15\x29\x1f\x14\x28\x1e\x13\x30\x24\x18\x35\x28\x1a\x29\ \x1f\x14\x28\x1e\x14\x21\x19\x10\x1b\x14\x0d\x20\x18\x0f\x1e\x17\ \x0f\x1d\x16\x0e\x19\x13\x0c\x1f\x17\x0f\x23\x1a\x11\x37\x2d\x22\ \x2a\x2e\x31\x34\x38\x3c\x3f\x44\x48\x47\x4d\x52\x51\x57\x5e\x5a\ \x61\x68\x61\x69\x71\x67\x70\x78\x6d\x75\x7e\x6f\x79\x81\x72\x7c\ \x85\x71\x7a\x82\x73\x7e\x85\x76\x80\x87\x78\x81\x88\x78\x80\x87\ \x76\x7f\x86\x77\x7f\x85\x5e\x64\x69\x46\x4d\x52\x69\x71\x75\x7b\ \x84\x88\x78\x82\x85\x7d\x85\x8a\x5f\x65\x6c\x4d\x53\x5b\x75\x7e\ \x83\x6d\x75\x78\x2e\x31\x33\x50\x54\x58\x00\x00\x00\x09\x07\x05\ \x13\x0e\x09\x4c\x39\x27\x35\x27\x1a\x55\x40\x2a\x4d\x3a\x25\x4a\ \x36\x24\x1a\x13\x0c\x10\x0c\x08\x13\x0f\x09\x1f\x17\x0f\x26\x1c\ \x12\x28\x1e\x13\x29\x1e\x13\x27\x1e\x12\x2d\x22\x15\x25\x1b\x11\ \x24\x1b\x11\x27\x1e\x12\x24\x1b\x11\x22\x19\x10\x1d\x16\x0e\x17\ \x11\x0c\x14\x0f\x0a\x1a\x13\x0d\x1a\x14\x0c\x24\x1b\x11\x28\x1e\ \x13\x2d\x21\x15\x2d\x22\x16\x29\x1f\x14\x2b\x20\x14\x29\x1f\x13\ \x23\x1a\x11\x22\x1a\x10\x25\x1c\x11\x26\x1d\x12\x2a\x1f\x14\x30\ \x24\x17\x2d\x21\x15\x29\x1f\x13\x30\x24\x17\x35\x28\x1a\x31\x26\ \x18\x2d\x23\x16\x29\x1f\x14\x21\x18\x10\x28\x1e\x13\x2a\x1f\x14\ \x2a\x20\x14\x27\x1d\x13\x20\x18\x10\x25\x1c\x13\x1c\x15\x0d\x1b\ \x15\x0d\x1f\x17\x0e\x20\x18\x0f\x26\x1c\x12\x24\x1b\x11\x1f\x17\ \x0f\x1f\x17\x0f\x1e\x17\x0e\x23\x1a\x11\x2e\x23\x16\x2d\x22\x16\ \x26\x1d\x12\x33\x26\x19\x2a\x21\x15\x1d\x16\x0e\x1f\x17\x0f\x28\ \x1e\x13\x26\x1c\x12\x2d\x22\x16\x32\x25\x18\x2f\x24\x17\x29\x1f\ \x14\x27\x1e\x13\x20\x18\x0f\x2a\x20\x14\x23\x1b\x11\x27\x1d\x13\ \x26\x1c\x12\x25\x1c\x11\x27\x1d\x13\x2a\x20\x14\x2e\x24\x17\x31\ \x25\x17\x34\x27\x19\x2b\x20\x15\x2f\x22\x17\x39\x2a\x1c\x39\x2a\ \x1b\x37\x29\x1a\x2c\x21\x16\x26\x1d\x12\x27\x1e\x13\x29\x1e\x14\ \x20\x19\x10\x25\x1c\x12\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x28\ \x1e\x13\x21\x19\x10\x2a\x1f\x14\x22\x1a\x10\x27\x1d\x12\x28\x1e\ \x13\x24\x1b\x12\x2f\x23\x16\x36\x28\x1a\x2b\x20\x15\x29\x1e\x13\ \x26\x1d\x13\x24\x1b\x12\x32\x26\x18\x29\x20\x14\x1e\x17\x0e\x22\ \x19\x10\x26\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x25\x1c\x12\x29\x1f\ \x14\x23\x1a\x11\x21\x19\x10\x21\x19\x10\x1f\x17\x0f\x1e\x18\x0e\ \x20\x19\x0f\x26\x1c\x12\x29\x1f\x14\x34\x2a\x20\x2d\x2f\x30\x32\ \x37\x3a\x3d\x42\x46\x46\x4c\x51\x4f\x56\x5c\x5a\x61\x68\x62\x6a\ \x72\x65\x6f\x76\x6c\x75\x7d\x70\x7b\x82\x72\x7d\x85\x6f\x7a\x81\ \x78\x82\x89\x74\x7e\x85\x76\x80\x87\x77\x80\x87\x76\x7f\x86\x76\ \x7e\x84\x7b\x84\x88\x60\x68\x6d\x48\x4e\x54\x6b\x73\x78\x7e\x87\ \x8b\x7e\x87\x8b\x80\x87\x8c\x66\x6c\x72\x4e\x54\x5c\x6e\x74\x79\ \x47\x4d\x52\x72\x78\x7c\x00\x00\x00\x1e\x17\x0f\x39\x2b\x1d\x50\ \x3d\x2a\x36\x28\x1a\x4b\x38\x23\x51\x3d\x27\x59\x42\x2b\x24\x1b\ \x11\x12\x0e\x09\x11\x0d\x08\x1c\x16\x0e\x24\x1c\x11\x31\x24\x17\ \x2a\x20\x15\x29\x1f\x14\x2c\x21\x15\x30\x24\x17\x2a\x1f\x14\x29\ \x1e\x13\x28\x1e\x14\x29\x1e\x13\x23\x1b\x11\x1f\x17\x0f\x20\x18\ \x0f\x1f\x18\x0f\x1a\x14\x0c\x1f\x17\x0f\x25\x1b\x12\x26\x1c\x12\ \x2d\x22\x15\x31\x25\x17\x27\x1d\x12\x24\x1b\x12\x28\x1e\x13\x2a\ \x1f\x15\x26\x1d\x12\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x1e\x16\ \x0e\x1d\x16\x0e\x1d\x16\x0e\x1e\x16\x0e\x24\x1b\x12\x21\x18\x10\ \x22\x19\x10\x22\x1a\x10\x24\x1c\x12\x29\x1f\x14\x31\x25\x17\x36\ \x29\x1a\x27\x1d\x13\x1f\x17\x0f\x1b\x15\x0d\x20\x18\x0f\x1a\x14\ \x0d\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x11\x22\x1a\x11\x21\x18\x10\ \x17\x12\x0b\x1f\x18\x0f\x2c\x22\x15\x31\x25\x17\x30\x25\x17\x28\ \x1e\x13\x25\x1b\x11\x24\x1b\x11\x22\x1a\x11\x1f\x17\x0f\x24\x1c\ \x11\x22\x1a\x10\x23\x1a\x11\x2a\x20\x14\x29\x1f\x14\x2f\x23\x17\ \x25\x1b\x11\x23\x1a\x10\x23\x1b\x11\x23\x1a\x11\x1b\x14\x0d\x22\ \x1a\x11\x23\x1b\x11\x25\x1b\x11\x25\x1b\x11\x2a\x20\x15\x31\x25\ \x18\x30\x24\x17\x31\x25\x17\x2f\x23\x16\x39\x2a\x1b\x3b\x2d\x1d\ \x2c\x21\x15\x21\x18\x0f\x27\x1e\x13\x21\x19\x10\x20\x18\x0f\x1d\ \x15\x0e\x22\x1a\x11\x20\x18\x0f\x23\x1a\x10\x23\x1a\x10\x20\x18\ \x0f\x23\x1a\x11\x21\x19\x10\x27\x1d\x13\x26\x1d\x13\x2b\x21\x14\ \x2d\x22\x16\x2f\x23\x16\x32\x25\x18\x2c\x21\x16\x21\x19\x10\x22\ \x1a\x10\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x1e\x17\x0e\x21\x1a\ \x10\x24\x1c\x12\x26\x1d\x12\x2a\x20\x14\x2b\x20\x14\x2c\x21\x15\ \x29\x1f\x14\x29\x1f\x14\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x26\ \x1c\x12\x2f\x23\x17\x2c\x23\x19\x31\x30\x2f\x32\x36\x39\x3c\x42\ \x46\x45\x4c\x51\x4f\x56\x5d\x5a\x62\x69\x60\x6a\x71\x65\x6f\x76\ \x6d\x77\x7f\x6f\x7a\x81\x6e\x79\x7f\x72\x7d\x84\x75\x80\x87\x77\ \x82\x89\x77\x81\x88\x78\x80\x87\x77\x80\x87\x78\x7f\x86\x77\x7f\ \x84\x7c\x85\x89\x5b\x61\x67\x4b\x50\x57\x6d\x75\x7a\x7e\x87\x8b\ \x7e\x88\x8c\x7f\x87\x8b\x68\x6d\x73\x36\x3a\x40\x3b\x40\x46\x7f\ \x8a\x8d\x00\x00\x00\x08\x07\x04\x0d\x0a\x06\x3f\x30\x20\x24\x1b\ \x12\x4f\x3b\x26\x61\x48\x2f\x5f\x46\x2e\x35\x28\x1a\x17\x12\x0b\ \x10\x0d\x08\x1a\x13\x0c\x24\x1b\x12\x28\x1e\x13\x2f\x24\x17\x31\ \x25\x18\x2b\x21\x15\x26\x1d\x12\x29\x1f\x13\x2c\x21\x15\x31\x25\ \x18\x2c\x21\x15\x24\x1b\x11\x24\x1b\x11\x22\x1a\x10\x1a\x13\x0d\ \x17\x12\x0b\x18\x12\x0b\x1b\x15\x0d\x2a\x20\x14\x2f\x23\x16\x2b\ \x21\x15\x36\x28\x1a\x2c\x21\x15\x31\x24\x17\x3d\x2e\x1d\x3b\x2c\ \x1c\x2f\x24\x17\x2d\x22\x15\x2a\x20\x15\x23\x1b\x11\x20\x18\x0f\ \x20\x18\x0f\x22\x19\x10\x25\x1b\x12\x2a\x1f\x14\x26\x1c\x12\x20\ \x18\x10\x2a\x1f\x14\x24\x1b\x11\x30\x24\x17\x2b\x1f\x14\x26\x1c\ \x12\x1f\x17\x0f\x21\x19\x10\x1d\x16\x0e\x20\x17\x10\x20\x18\x10\ \x21\x19\x0f\x25\x1c\x12\x24\x1c\x12\x21\x19\x10\x1e\x17\x0e\x1e\ \x17\x0f\x23\x1b\x11\x27\x1e\x13\x2c\x21\x15\x2e\x22\x16\x30\x24\ \x17\x33\x26\x18\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ \x1a\x14\x0d\x26\x1d\x12\x29\x1f\x14\x30\x24\x17\x2d\x22\x15\x24\ \x1b\x11\x1b\x15\x0d\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x10\x26\x1d\ \x13\x20\x18\x0f\x21\x19\x10\x26\x1d\x12\x29\x1f\x13\x2b\x20\x14\ \x2d\x21\x16\x31\x24\x18\x37\x2a\x1b\x31\x24\x18\x2c\x21\x15\x2c\ \x20\x15\x22\x1a\x10\x1f\x17\x0f\x20\x18\x10\x1d\x15\x0d\x22\x19\ \x10\x1c\x15\x0e\x1e\x16\x0e\x1f\x18\x0f\x24\x1b\x11\x26\x1c\x12\ \x27\x1d\x13\x2d\x22\x15\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x2b\ \x21\x15\x2d\x22\x16\x2d\x22\x16\x2b\x20\x14\x23\x1a\x11\x1b\x14\ \x0d\x22\x1a\x10\x20\x19\x10\x1c\x15\x0d\x1f\x17\x0e\x21\x19\x0f\ \x23\x1a\x11\x2b\x21\x15\x28\x1e\x13\x27\x1d\x12\x26\x1c\x12\x1e\ \x17\x0f\x27\x1e\x13\x2b\x20\x15\x2d\x22\x15\x2a\x1f\x14\x25\x1c\ \x12\x2a\x22\x18\x31\x2f\x2c\x31\x35\x38\x3a\x40\x44\x46\x4c\x51\ \x50\x57\x5d\x58\x60\x67\x60\x69\x71\x66\x70\x78\x6c\x75\x7e\x6c\ \x77\x7f\x6e\x79\x80\x70\x7b\x83\x75\x80\x87\x76\x81\x88\x77\x81\ \x89\x78\x82\x89\x78\x81\x88\x78\x80\x87\x78\x81\x87\x77\x82\x86\ \x79\x82\x86\x56\x5d\x62\x4d\x53\x58\x70\x78\x7d\x7e\x87\x8b\x7e\ \x86\x8a\x7c\x82\x87\x33\x37\x3c\x3f\x41\x46\x70\x78\x7c\x00\x00\ \x00\x11\x0d\x08\x01\x01\x00\x2d\x22\x16\x24\x1b\x11\x54\x3e\x28\ \x64\x4b\x31\x56\x40\x2a\x25\x1c\x12\x18\x12\x0c\x1b\x13\x0c\x1b\ \x15\x0d\x23\x1a\x10\x23\x1a\x11\x28\x1e\x13\x28\x1e\x13\x26\x1d\ \x13\x1f\x18\x0f\x22\x19\x10\x2c\x21\x15\x2d\x22\x15\x2a\x20\x14\ \x26\x1c\x12\x25\x1c\x12\x27\x1d\x13\x20\x18\x0f\x1a\x13\x0c\x1c\ \x15\x0d\x20\x18\x0f\x2e\x23\x16\x37\x29\x1b\x35\x28\x1a\x2d\x22\ \x16\x28\x1e\x13\x2e\x22\x16\x2b\x20\x15\x2d\x21\x15\x35\x27\x19\ \x34\x27\x19\x32\x25\x18\x25\x1c\x12\x1e\x16\x0e\x1c\x15\x0d\x1d\ \x16\x0e\x20\x19\x0f\x26\x1d\x12\x23\x1b\x11\x1c\x15\x0e\x23\x1a\ \x11\x22\x1a\x10\x22\x1a\x10\x24\x1b\x10\x2a\x20\x15\x2e\x22\x16\ \x27\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1e\x16\x0e\x1d\x15\x0d\x25\ \x1c\x12\x28\x1d\x13\x1e\x17\x0e\x20\x18\x0f\x19\x13\x0c\x1f\x17\ \x0f\x22\x1a\x10\x25\x1c\x11\x29\x1e\x14\x2f\x23\x17\x37\x29\x1a\ \x32\x26\x18\x28\x1e\x13\x27\x1e\x13\x21\x19\x10\x23\x1b\x11\x22\ \x19\x10\x2b\x21\x15\x32\x26\x18\x30\x24\x17\x24\x1b\x11\x25\x1c\ \x12\x21\x19\x10\x26\x1c\x12\x20\x19\x0f\x23\x19\x10\x1e\x16\x0f\ \x1f\x18\x0f\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x2b\x20\x15\x2b\ \x20\x15\x2d\x22\x16\x2c\x22\x15\x30\x23\x17\x2a\x1f\x14\x27\x1d\ \x13\x29\x1e\x14\x26\x1c\x12\x21\x19\x0f\x21\x19\x0f\x1e\x17\x0f\ \x20\x18\x0f\x22\x19\x10\x22\x1b\x10\x2c\x21\x15\x24\x1b\x11\x27\ \x1d\x13\x21\x19\x10\x24\x1b\x11\x1c\x16\x0e\x1c\x15\x0e\x24\x1a\ \x11\x29\x1f\x14\x2e\x23\x17\x27\x1e\x13\x21\x19\x0f\x28\x1e\x13\ \x2e\x23\x16\x27\x1d\x12\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\x22\ \x1a\x10\x22\x1a\x10\x23\x1b\x11\x1d\x15\x0d\x1c\x16\x0e\x1e\x17\ \x0e\x29\x1e\x14\x33\x27\x19\x31\x24\x17\x31\x24\x18\x2e\x23\x19\ \x39\x35\x2f\x2f\x34\x37\x39\x3f\x43\x45\x4b\x50\x4f\x57\x5c\x58\ \x61\x67\x5e\x67\x6f\x66\x70\x78\x6b\x75\x7d\x6d\x78\x7f\x72\x7c\ \x84\x72\x7d\x85\x74\x7f\x86\x76\x7f\x88\x77\x81\x89\x75\x7f\x86\ \x78\x82\x89\x77\x81\x89\x7a\x84\x8b\x7b\x85\x8a\x7a\x84\x88\x7c\ \x84\x88\x61\x66\x6b\x4c\x52\x58\x6e\x76\x7b\x83\x8d\x91\x73\x79\ \x7e\x41\x47\x4c\x6b\x71\x75\x59\x5d\x60\x00\x00\x00\x1c\x15\x0d\ \x0b\x08\x05\x33\x27\x19\x2b\x20\x15\x55\x40\x2a\x6e\x51\x35\x54\ \x3e\x28\x2e\x22\x16\x1b\x14\x0c\x12\x0d\x09\x1d\x15\x0e\x22\x1a\ \x10\x24\x1c\x12\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x22\x1a\x10\ \x21\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\x25\ \x1b\x12\x30\x24\x17\x25\x1c\x11\x1b\x15\x0d\x15\x10\x0a\x1a\x14\ \x0d\x2d\x21\x15\x2b\x1f\x15\x2f\x23\x17\x2a\x1f\x14\x26\x1d\x12\ \x25\x1d\x12\x25\x1c\x12\x27\x1d\x13\x2c\x21\x15\x2c\x21\x15\x2a\ \x1f\x14\x27\x1d\x12\x26\x1d\x12\x23\x1a\x11\x26\x1c\x12\x25\x1c\ \x12\x1f\x18\x0f\x23\x1a\x11\x22\x1a\x10\x26\x1d\x12\x23\x1b\x11\ \x27\x1d\x12\x2b\x20\x14\x2f\x23\x16\x32\x25\x18\x33\x26\x18\x26\ \x1c\x12\x24\x1b\x11\x22\x19\x10\x28\x1e\x13\x25\x1c\x12\x25\x1c\ \x11\x2b\x20\x14\x26\x1d\x12\x20\x19\x0f\x1f\x17\x0f\x22\x1a\x11\ \x24\x1c\x12\x26\x1d\x12\x2b\x20\x15\x30\x24\x17\x2e\x23\x16\x32\ \x26\x18\x2a\x1f\x14\x24\x1b\x11\x23\x1b\x11\x20\x18\x0f\x24\x1b\ \x11\x28\x1e\x14\x28\x1e\x14\x27\x1d\x13\x24\x1c\x11\x26\x1d\x13\ \x24\x1b\x11\x24\x1c\x11\x2c\x20\x15\x29\x1f\x13\x26\x1c\x12\x27\ \x1d\x13\x27\x1d\x13\x27\x1d\x13\x2e\x23\x16\x30\x24\x17\x30\x23\ \x17\x38\x29\x1b\x33\x26\x18\x32\x25\x18\x2a\x20\x15\x2f\x23\x16\ \x2e\x23\x16\x2f\x23\x16\x2b\x21\x15\x20\x18\x0f\x27\x1d\x13\x24\ \x1b\x11\x27\x1e\x13\x2b\x20\x15\x27\x1d\x13\x27\x1e\x13\x27\x1e\ \x13\x30\x24\x17\x30\x24\x17\x2e\x23\x16\x25\x1c\x12\x21\x19\x10\ \x2c\x21\x15\x2b\x20\x15\x25\x1b\x11\x2a\x20\x14\x28\x1e\x14\x28\ \x1e\x13\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x1f\x17\x0f\x1d\x16\ \x0e\x24\x1b\x11\x21\x19\x10\x1f\x18\x0f\x21\x19\x10\x29\x1f\x14\ \x2d\x22\x16\x35\x28\x1a\x3a\x2b\x1c\x30\x25\x1a\x2b\x29\x26\x2f\ \x34\x37\x39\x3e\x42\x43\x49\x4e\x4d\x55\x5a\x58\x60\x67\x5f\x68\ \x6f\x69\x72\x79\x6a\x73\x7c\x6e\x78\x80\x74\x7d\x85\x74\x7e\x87\ \x75\x7f\x86\x74\x7e\x86\x78\x83\x8a\x78\x82\x89\x79\x83\x8a\x77\ \x82\x89\x78\x83\x89\x7c\x86\x8c\x7b\x85\x8b\x7b\x84\x88\x7d\x85\ \x8a\x5f\x65\x6a\x4e\x53\x5a\x73\x7a\x7f\x59\x5f\x65\x63\x6a\x6f\ \x83\x8d\x91\x6e\x75\x78\x00\x00\x00\x0f\x0b\x07\x00\x00\x00\x21\ \x19\x10\x25\x1b\x11\x53\x3f\x29\x6a\x4f\x34\x5c\x44\x2c\x32\x26\ \x18\x23\x1a\x11\x20\x18\x0f\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\ \x24\x1b\x12\x26\x1c\x11\x23\x1a\x11\x1e\x17\x0e\x1b\x14\x0d\x21\ \x19\x10\x23\x1b\x11\x24\x1b\x12\x27\x1d\x13\x26\x1c\x12\x2a\x20\ \x14\x25\x1c\x11\x26\x1c\x12\x1d\x16\x0e\x20\x19\x10\x28\x1e\x13\ \x33\x26\x19\x2d\x22\x16\x2d\x22\x16\x26\x1d\x13\x1c\x16\x0e\x1d\ \x15\x0e\x26\x1d\x12\x2a\x1f\x14\x2f\x23\x16\x23\x1a\x11\x29\x1f\ \x13\x2a\x20\x14\x28\x1e\x13\x26\x1d\x12\x22\x1a\x10\x24\x1b\x11\ \x22\x19\x10\x24\x1b\x11\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x28\ \x1d\x13\x28\x1e\x13\x2e\x22\x16\x31\x24\x17\x25\x1c\x12\x2b\x20\ \x15\x25\x1c\x12\x2f\x23\x16\x2b\x20\x14\x26\x1d\x12\x2e\x23\x16\ \x25\x1c\x12\x28\x1e\x13\x24\x1b\x11\x23\x1a\x11\x25\x1c\x12\x27\ \x1d\x13\x2a\x1f\x14\x31\x25\x17\x35\x28\x19\x37\x2a\x1a\x34\x27\ \x19\x30\x24\x17\x28\x1e\x14\x21\x19\x10\x25\x1b\x12\x2c\x21\x15\ \x23\x1b\x11\x1e\x17\x0e\x28\x1e\x13\x2a\x1f\x14\x2a\x1f\x14\x2f\ \x23\x16\x30\x24\x17\x28\x1f\x13\x26\x1c\x12\x29\x1f\x14\x2c\x22\ \x16\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x2f\x23\x16\x37\x29\x1a\ \x30\x24\x17\x39\x2b\x1c\x33\x27\x18\x2f\x23\x17\x33\x26\x18\x2b\ \x21\x15\x2d\x22\x16\x22\x19\x10\x27\x1d\x13\x1e\x16\x0e\x24\x1b\ \x11\x27\x1d\x13\x21\x19\x10\x21\x19\x10\x22\x1a\x10\x23\x1a\x11\ \x21\x19\x10\x26\x1c\x12\x2b\x20\x15\x2a\x20\x14\x2c\x22\x15\x29\ \x1f\x14\x22\x1a\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x28\x1f\ \x14\x29\x1e\x13\x33\x26\x19\x2e\x22\x16\x2b\x20\x15\x28\x1f\x13\ \x28\x1e\x13\x24\x1b\x11\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x38\ \x2a\x1b\x47\x35\x22\x4a\x38\x26\x28\x26\x23\x2f\x34\x36\x38\x3e\ \x41\x43\x49\x4e\x4d\x55\x5a\x56\x5e\x64\x5e\x68\x6f\x67\x70\x78\ \x6a\x73\x7d\x6e\x78\x81\x72\x7b\x84\x74\x7d\x86\x75\x7f\x86\x41\ \x48\x4d\x52\x59\x60\x7f\x89\x90\x7a\x84\x8b\x79\x83\x8a\x7a\x84\ \x8a\x7b\x85\x8b\x7b\x86\x8c\x7c\x87\x8b\x7f\x88\x8c\x7e\x86\x8a\ \x68\x6e\x74\x4b\x50\x55\x35\x38\x3d\x80\x88\x8d\x7f\x88\x8c\x81\ \x8a\x8d\x00\x00\x00\x15\x10\x09\x01\x00\x00\x26\x1d\x14\x29\x1f\ \x14\x44\x33\x21\x61\x49\x30\x64\x4b\x31\x2b\x21\x16\x2a\x1f\x14\ \x30\x25\x18\x33\x27\x19\x2c\x21\x15\x29\x1f\x14\x20\x18\x0f\x22\ \x1a\x10\x24\x1b\x11\x24\x1b\x11\x20\x18\x0f\x1e\x16\x0e\x20\x18\ \x0f\x26\x1d\x12\x27\x1d\x12\x29\x1e\x14\x29\x1e\x14\x27\x1d\x12\ \x27\x1d\x13\x20\x18\x0f\x20\x18\x0f\x27\x1d\x12\x2d\x22\x16\x2f\ \x23\x17\x29\x1f\x14\x23\x1a\x11\x23\x1a\x11\x23\x1a\x11\x1e\x16\ \x0e\x1e\x16\x0e\x25\x1c\x11\x28\x1e\x13\x2b\x20\x14\x2c\x21\x15\ \x2f\x24\x17\x31\x24\x17\x25\x1c\x11\x24\x1b\x11\x20\x18\x0f\x23\ \x1a\x10\x22\x19\x10\x23\x1a\x10\x22\x19\x10\x1e\x16\x0e\x22\x1a\ \x10\x25\x1b\x11\x23\x1b\x11\x1e\x16\x0e\x21\x19\x10\x1e\x16\x0e\ \x20\x19\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x2c\x21\x15\x28\ \x1e\x14\x24\x1c\x11\x20\x18\x0f\x20\x18\x0f\x1f\x17\x0f\x24\x1b\ \x11\x28\x1e\x13\x32\x26\x18\x34\x27\x19\x38\x2b\x1b\x31\x25\x18\ \x2d\x21\x16\x1b\x14\x0d\x27\x1e\x13\x29\x1e\x13\x24\x1b\x11\x1e\ \x16\x0e\x26\x1c\x12\x2c\x21\x15\x2a\x1f\x13\x2f\x23\x16\x2e\x23\ \x16\x2d\x21\x16\x28\x1e\x13\x28\x1e\x13\x2d\x22\x16\x2d\x21\x16\ \x34\x27\x19\x34\x27\x1a\x35\x28\x1a\x39\x2a\x1b\x31\x24\x17\x2a\ \x1f\x14\x26\x1c\x12\x29\x1f\x14\x2c\x21\x15\x2d\x22\x16\x27\x1d\ \x13\x2d\x22\x16\x24\x1a\x10\x1d\x16\x0e\x1f\x17\x0f\x21\x19\x10\ \x1b\x14\x0d\x1b\x14\x0c\x16\x11\x0b\x1d\x15\x0d\x1a\x14\x0d\x22\ \x19\x11\x2d\x22\x16\x26\x1d\x12\x26\x1d\x13\x2b\x20\x15\x27\x1e\ \x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x28\x1e\x13\x31\x25\x17\ \x38\x29\x1b\x2e\x22\x16\x2e\x23\x17\x2d\x22\x15\x29\x1e\x13\x26\ \x1c\x12\x22\x1a\x11\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x3b\x2c\ \x1c\x3a\x2c\x1d\x2f\x2a\x25\x2f\x33\x36\x3a\x3f\x41\x41\x48\x4c\ \x4c\x53\x59\x57\x5f\x65\x5e\x67\x6e\x65\x6f\x75\x6b\x73\x7c\x6f\ \x78\x81\x72\x7b\x84\x72\x7c\x85\x6c\x75\x7c\x29\x2c\x2f\x42\x47\ \x49\x5a\x61\x67\x7f\x8a\x91\x7a\x85\x8b\x7b\x85\x8c\x7b\x85\x8b\ \x7c\x85\x8c\x7e\x89\x8f\x80\x89\x8e\x7e\x87\x8b\x84\x8d\x93\x47\ \x4c\x50\x28\x2a\x2e\x6c\x73\x78\x81\x89\x8c\x81\x8b\x8e\x00\x00\ \x00\x1a\x14\x0c\x00\x00\x00\x2a\x20\x16\x28\x1e\x14\x3a\x2c\x1c\ \x5f\x47\x2e\x5b\x44\x2b\x29\x1f\x14\x1a\x13\x0d\x1f\x17\x0f\x2c\ \x21\x15\x2c\x21\x15\x2c\x22\x16\x25\x1b\x12\x27\x1d\x12\x21\x19\ \x10\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x1e\x16\x0e\x1f\x17\x0f\ \x1d\x16\x0e\x20\x18\x0f\x26\x1c\x13\x23\x1a\x11\x26\x1d\x13\x22\ \x1a\x10\x1b\x15\x0d\x21\x19\x10\x32\x26\x18\x2e\x23\x16\x2a\x1f\ \x14\x1f\x17\x0f\x1d\x16\x0e\x28\x1e\x14\x1d\x16\x0e\x1b\x14\x0c\ \x20\x18\x0f\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\x2b\x20\x14\x2c\ \x21\x15\x27\x1d\x12\x22\x1a\x10\x23\x1b\x11\x27\x1e\x13\x27\x1d\ \x13\x2d\x22\x16\x2b\x20\x15\x26\x1d\x12\x25\x1c\x12\x24\x1c\x11\ \x20\x18\x0f\x18\x12\x0b\x1e\x16\x0f\x21\x19\x10\x23\x19\x10\x25\ \x1c\x12\x25\x1c\x11\x2a\x20\x14\x33\x26\x18\x31\x24\x17\x28\x1d\ \x13\x28\x1e\x13\x25\x1c\x12\x24\x1b\x12\x27\x1e\x13\x2b\x21\x15\ \x31\x25\x18\x35\x27\x19\x3a\x2c\x1c\x34\x28\x19\x28\x1e\x13\x1f\ \x18\x0f\x33\x26\x18\x2b\x20\x15\x2a\x1f\x14\x23\x1b\x11\x27\x1c\ \x12\x22\x19\x10\x28\x1e\x13\x2a\x20\x14\x26\x1d\x12\x27\x1d\x13\ \x2c\x22\x15\x2a\x20\x14\x22\x19\x11\x20\x18\x10\x27\x1e\x13\x27\ \x1d\x13\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x20\x18\x0f\x21\x18\ \x10\x25\x1c\x11\x29\x1f\x13\x2f\x23\x17\x2a\x1f\x14\x34\x27\x19\ \x30\x24\x16\x30\x24\x17\x26\x1c\x12\x26\x1d\x12\x20\x18\x0f\x1b\ \x15\x0d\x1c\x15\x0e\x1c\x15\x0e\x1a\x13\x0d\x21\x18\x10\x28\x1e\ \x13\x24\x1b\x11\x22\x1a\x11\x25\x1c\x11\x27\x1d\x12\x26\x1c\x11\ \x1f\x17\x0e\x1a\x14\x0d\x24\x1b\x11\x26\x1c\x12\x31\x24\x18\x2a\ \x20\x14\x25\x1c\x12\x24\x1c\x12\x24\x1b\x11\x22\x1a\x11\x1e\x16\ \x0e\x20\x18\x10\x22\x1a\x10\x25\x1b\x12\x2e\x22\x16\x39\x2b\x1c\ \x3f\x36\x2b\x2e\x32\x35\x3a\x3e\x41\x41\x47\x4c\x4a\x52\x57\x56\ \x5d\x64\x5f\x67\x6f\x65\x6e\x75\x6a\x74\x7b\x70\x79\x82\x73\x7c\ \x85\x74\x7e\x85\x49\x4f\x55\x5b\x61\x65\x66\x6d\x6f\x3c\x42\x46\ \x61\x69\x70\x7f\x89\x90\x7b\x85\x8c\x7c\x86\x8d\x7c\x85\x8c\x7e\ \x86\x8d\x7f\x88\x8e\x7f\x88\x8c\x81\x8a\x8e\x43\x48\x4d\x66\x6a\ \x6e\x58\x5c\x61\x68\x6c\x72\x84\x8c\x8f\x00\x00\x00\x1a\x14\x0d\ \x00\x00\x00\x1c\x16\x0e\x28\x1e\x14\x2d\x22\x16\x59\x43\x2c\x44\ \x33\x21\x27\x1d\x13\x19\x13\x0c\x1b\x15\x0d\x29\x1f\x14\x2a\x20\ \x14\x31\x25\x18\x2a\x20\x14\x22\x19\x10\x21\x19\x10\x23\x1b\x11\ \x1c\x15\x0e\x19\x13\x0c\x23\x1b\x10\x21\x19\x10\x1b\x15\x0d\x20\ \x18\x0f\x22\x19\x11\x27\x1e\x13\x2b\x20\x14\x29\x1f\x14\x24\x1c\ \x11\x21\x1a\x10\x32\x26\x18\x30\x24\x17\x27\x1d\x12\x1e\x17\x0e\ \x15\x10\x0a\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0d\x1e\x17\x0e\x20\ \x18\x0f\x22\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x28\x1f\ \x13\x25\x1c\x12\x25\x1c\x12\x2d\x22\x16\x2d\x21\x16\x2e\x23\x16\ \x32\x25\x18\x31\x25\x18\x27\x1e\x13\x22\x1a\x10\x26\x1c\x12\x26\ \x1d\x12\x26\x1d\x12\x29\x1f\x14\x26\x1d\x12\x20\x19\x10\x23\x1b\ \x11\x29\x1f\x14\x2f\x23\x16\x30\x23\x17\x2c\x21\x16\x2f\x23\x17\ \x28\x1e\x14\x24\x1b\x12\x26\x1c\x12\x2d\x22\x16\x30\x24\x17\x35\ \x27\x19\x36\x29\x1a\x33\x26\x18\x28\x1f\x13\x21\x18\x0f\x2c\x21\ \x15\x32\x25\x18\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x1e\x16\x0f\ \x27\x1d\x13\x29\x1f\x14\x25\x1c\x12\x2c\x21\x15\x2f\x23\x16\x30\ \x24\x17\x26\x1c\x12\x20\x18\x0f\x22\x1a\x11\x25\x1c\x12\x2b\x21\ \x14\x29\x1f\x13\x22\x1a\x10\x23\x1a\x11\x24\x1a\x11\x28\x1e\x13\ \x28\x1e\x13\x24\x1b\x11\x2a\x1f\x14\x32\x25\x18\x31\x25\x17\x36\ \x28\x1a\x31\x25\x17\x2e\x23\x16\x27\x1e\x13\x1f\x17\x0f\x1f\x17\ \x0f\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x1f\x17\x0e\x18\x12\x0b\ \x1b\x15\x0d\x1a\x13\x0c\x1d\x15\x0e\x21\x18\x0f\x20\x18\x0f\x19\ \x13\x0c\x1e\x16\x0e\x23\x1a\x11\x30\x24\x17\x2d\x22\x16\x27\x1d\ \x12\x24\x1b\x11\x24\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1b\x11\ \x22\x1a\x10\x22\x19\x10\x26\x1c\x12\x36\x29\x1b\x42\x37\x2b\x2d\ \x31\x33\x36\x3b\x3f\x40\x45\x4b\x4b\x51\x57\x56\x5e\x64\x5f\x67\ \x6d\x63\x6b\x72\x6c\x74\x7d\x70\x79\x81\x72\x7c\x82\x7b\x84\x8b\ \x13\x16\x19\x5f\x67\x6c\x80\x8c\x90\x57\x5d\x61\x1c\x1f\x23\x67\ \x6f\x75\x80\x8a\x90\x7e\x88\x8f\x7d\x87\x8e\x7e\x86\x8d\x80\x88\ \x8e\x82\x8a\x8f\x6a\x71\x74\x47\x4b\x50\x82\x88\x8c\x75\x79\x7e\ \x50\x53\x5a\x69\x6d\x72\x00\x00\x00\x1d\x16\x0e\x00\x00\x00\x19\ \x13\x0c\x2c\x21\x16\x25\x1c\x12\x4a\x37\x24\x3b\x2c\x1c\x2e\x23\ \x16\x11\x0d\x08\x18\x12\x0c\x28\x1d\x13\x28\x1e\x13\x31\x25\x17\ \x2b\x20\x15\x27\x1e\x13\x26\x1d\x12\x24\x1b\x11\x21\x1a\x10\x1b\ \x15\x0d\x1f\x18\x0f\x23\x1b\x11\x24\x1b\x11\x20\x18\x0f\x22\x19\ \x10\x27\x1d\x12\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x20\x18\x10\ \x2b\x21\x16\x32\x26\x18\x2e\x22\x16\x25\x1b\x11\x16\x11\x0a\x16\ \x11\x0b\x1b\x14\x0d\x1d\x16\x0e\x19\x13\x0c\x1a\x13\x0d\x1c\x15\ \x0d\x1b\x15\x0d\x1c\x16\x0e\x20\x18\x0f\x1f\x18\x0f\x1f\x18\x0f\ \x22\x1a\x11\x2a\x1f\x14\x2d\x22\x15\x2d\x21\x16\x30\x24\x17\x32\ \x25\x18\x2f\x24\x17\x28\x1f\x13\x26\x1c\x12\x2e\x22\x16\x2d\x21\ \x15\x2d\x21\x15\x2d\x22\x16\x1e\x17\x0f\x20\x19\x0f\x23\x1a\x11\ \x28\x1e\x14\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x22\ \x19\x10\x21\x19\x10\x2c\x20\x15\x30\x24\x17\x30\x24\x17\x33\x26\ \x19\x30\x24\x17\x2a\x20\x14\x21\x19\x0f\x25\x1c\x12\x31\x24\x17\ \x2f\x23\x16\x2d\x21\x15\x27\x1d\x13\x1d\x16\x0e\x21\x19\x10\x23\ \x1a\x11\x25\x1c\x12\x29\x1e\x13\x29\x1f\x14\x28\x1e\x13\x23\x1b\ \x11\x25\x1c\x12\x20\x18\x0f\x1d\x16\x0e\x23\x1b\x11\x22\x1a\x10\ \x1e\x16\x0e\x1e\x16\x0e\x29\x1f\x14\x2b\x20\x15\x24\x1b\x11\x22\ \x1a\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x16\x30\x24\x17\x32\x26\ \x18\x39\x2b\x1c\x2f\x23\x17\x29\x1e\x13\x23\x1a\x11\x23\x1a\x11\ \x20\x18\x10\x1e\x16\x0e\x16\x10\x0a\x15\x10\x0a\x1d\x16\x0e\x18\ \x12\x0c\x18\x12\x0c\x22\x1a\x11\x1e\x17\x0e\x17\x12\x0b\x19\x12\ \x0b\x23\x1a\x11\x2c\x21\x15\x30\x23\x17\x2c\x21\x15\x26\x1d\x12\ \x29\x1f\x13\x2a\x1f\x14\x2a\x1f\x14\x27\x1e\x13\x28\x1e\x13\x2a\ \x1f\x14\x23\x1b\x11\x43\x32\x21\x4a\x3c\x2d\x2d\x30\x33\x36\x39\ \x3e\x40\x45\x4a\x4b\x51\x57\x54\x5b\x61\x5e\x66\x6d\x65\x6e\x76\ \x69\x72\x7a\x6e\x78\x80\x75\x7e\x85\x59\x62\x68\x38\x3d\x40\x31\ \x38\x3c\x69\x73\x79\x5e\x64\x6a\x34\x35\x39\x48\x4b\x52\x68\x70\ \x77\x80\x8b\x92\x7d\x87\x8e\x7e\x86\x8d\x83\x8a\x91\x86\x8f\x93\ \x49\x50\x56\x6c\x70\x76\x81\x87\x8b\x82\x89\x8c\x76\x79\x7f\x57\ \x59\x60\x00\x00\x00\x29\x1f\x14\x00\x00\x00\x13\x0e\x0a\x2e\x23\ \x16\x21\x18\x10\x3c\x2c\x1d\x37\x29\x1a\x37\x29\x1a\x0f\x0c\x07\ \x18\x12\x0b\x26\x1d\x12\x2c\x21\x15\x37\x29\x1a\x34\x27\x19\x35\ \x28\x19\x30\x24\x17\x2b\x20\x15\x2b\x20\x15\x20\x19\x0f\x1d\x16\ \x0e\x20\x18\x0f\x22\x1a\x10\x1b\x14\x0d\x1e\x16\x0e\x1e\x17\x0f\ \x1a\x14\x0c\x1f\x18\x0f\x20\x19\x0f\x1c\x15\x0d\x22\x19\x10\x24\ \x1b\x11\x2a\x1f\x14\x28\x1d\x13\x20\x18\x0f\x16\x11\x0a\x20\x18\ \x0f\x1e\x16\x0e\x21\x18\x0f\x24\x1b\x11\x24\x1b\x11\x1f\x18\x0f\ \x1b\x14\x0d\x1b\x14\x0c\x16\x10\x0a\x12\x0e\x09\x13\x0e\x09\x1b\ \x15\x0c\x27\x1d\x13\x31\x25\x18\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\ \x18\x2e\x22\x16\x25\x1c\x12\x27\x1d\x13\x2c\x20\x15\x31\x25\x17\ \x2e\x22\x16\x27\x1e\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x26\ \x1d\x12\x29\x1f\x14\x26\x1c\x12\x2b\x20\x14\x29\x1f\x14\x27\x1d\ \x13\x28\x1e\x13\x2e\x22\x16\x2e\x23\x17\x35\x28\x19\x32\x25\x18\ \x28\x1e\x13\x1f\x18\x0f\x20\x18\x10\x24\x1b\x11\x26\x1d\x12\x2b\ \x20\x15\x2d\x21\x16\x20\x18\x0f\x1b\x14\x0d\x20\x18\x10\x27\x1e\ \x13\x29\x1f\x13\x27\x1e\x12\x20\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ \x27\x1d\x13\x1e\x17\x0f\x1d\x17\x0e\x21\x19\x10\x22\x19\x10\x21\ \x19\x10\x2d\x22\x16\x2c\x21\x15\x29\x1f\x14\x23\x1a\x11\x28\x1e\ \x13\x2e\x23\x17\x2e\x22\x16\x2f\x23\x16\x3b\x2c\x1c\x3d\x2e\x1d\ \x32\x26\x18\x29\x1f\x14\x1c\x15\x0e\x20\x18\x0f\x1f\x17\x0f\x1b\ \x14\x0d\x17\x11\x0b\x19\x13\x0c\x1f\x17\x0f\x1c\x15\x0d\x17\x12\ \x0b\x27\x1d\x13\x24\x1b\x11\x1d\x17\x0e\x1d\x16\x0e\x1f\x17\x0f\ \x25\x1b\x11\x33\x26\x19\x24\x1b\x11\x24\x1b\x12\x2a\x1f\x14\x25\ \x1c\x11\x2b\x20\x14\x36\x29\x1a\x27\x1d\x12\x41\x31\x20\x44\x34\ \x22\x3f\x30\x20\x4e\x3e\x2e\x2b\x2e\x31\x33\x38\x3b\x3e\x43\x47\ \x48\x4f\x54\x54\x5a\x60\x5d\x65\x6b\x65\x6d\x74\x6b\x73\x7c\x6f\ \x79\x82\x77\x81\x88\x2f\x35\x39\x76\x7f\x83\x67\x6f\x75\x24\x28\ \x2f\x37\x3a\x3f\x76\x7d\x81\x5c\x62\x66\x3c\x40\x46\x6b\x74\x7a\ \x80\x8a\x91\x7f\x88\x8f\x81\x8a\x92\x79\x82\x88\x40\x46\x4d\x7e\ \x85\x8c\x82\x89\x8d\x85\x8c\x90\x82\x88\x8b\x7a\x7d\x81\x00\x00\ \x00\x30\x23\x16\x00\x00\x00\x1c\x15\x0e\x3e\x2f\x1f\x26\x1d\x12\ \x3d\x2e\x1e\x36\x28\x19\x33\x27\x19\x11\x0d\x08\x16\x10\x0b\x21\ \x18\x10\x2f\x23\x16\x33\x26\x19\x35\x28\x19\x36\x28\x1a\x30\x24\ \x17\x32\x25\x18\x2c\x21\x15\x25\x1b\x11\x1b\x14\x0d\x1e\x17\x0e\ \x19\x13\x0c\x1d\x16\x0e\x1c\x15\x0d\x17\x11\x0b\x16\x11\x0a\x1a\ \x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x25\x1c\x12\x1d\x15\x0d\x25\x1c\ \x12\x23\x1a\x11\x15\x10\x0a\x0f\x0b\x07\x15\x10\x0a\x1a\x13\x0c\ \x1e\x17\x0e\x2a\x1f\x14\x30\x24\x18\x3b\x2d\x1e\x41\x32\x22\x44\ \x34\x23\x46\x36\x24\x45\x35\x24\x48\x37\x25\x3a\x2c\x1d\x29\x1f\ \x14\x2f\x23\x16\x3b\x2c\x1c\x3a\x2b\x1c\x33\x26\x19\x2e\x22\x16\ \x28\x1e\x14\x27\x1d\x13\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x37\ \x29\x1a\x29\x1f\x15\x21\x19\x10\x1e\x16\x0e\x23\x1b\x11\x26\x1d\ \x12\x25\x1c\x11\x29\x1f\x14\x32\x26\x18\x2f\x24\x17\x26\x1d\x13\ \x2d\x22\x16\x35\x27\x19\x39\x2a\x1b\x35\x28\x1a\x26\x1d\x12\x1e\ \x17\x0e\x1e\x16\x0e\x21\x18\x10\x21\x18\x0f\x25\x1c\x12\x2b\x21\ \x15\x28\x1e\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x26\x1c\x12\ \x24\x1b\x12\x21\x19\x10\x21\x19\x10\x24\x1c\x12\x2a\x20\x14\x23\ \x1b\x11\x19\x14\x0c\x19\x13\x0c\x26\x1d\x12\x2a\x20\x14\x29\x1f\ \x14\x23\x1a\x11\x28\x1d\x13\x24\x1b\x11\x1d\x16\x0e\x23\x19\x11\ \x30\x24\x17\x27\x1e\x13\x2f\x23\x17\x34\x28\x19\x38\x2a\x1b\x2e\ \x23\x16\x26\x1d\x12\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x23\x1a\ \x11\x1e\x17\x0f\x1e\x16\x0e\x1f\x18\x0f\x20\x19\x0f\x22\x1a\x10\ \x27\x1e\x13\x23\x1b\x11\x20\x18\x0f\x1f\x17\x0f\x20\x17\x0f\x29\ \x1f\x14\x23\x1a\x11\x1f\x17\x0f\x20\x17\x0f\x20\x18\x0f\x28\x1e\ \x13\x33\x27\x19\x30\x24\x17\x4a\x38\x25\x43\x32\x21\x2b\x21\x15\ \x3d\x32\x25\x2e\x30\x31\x33\x38\x3c\x40\x45\x48\x4a\x50\x55\x54\ \x5b\x62\x5e\x66\x6c\x63\x6c\x73\x6d\x75\x7d\x71\x7b\x84\x6d\x78\ \x80\x0b\x0d\x10\x78\x81\x87\x7b\x85\x8c\x55\x5b\x5f\x14\x15\x17\ \x76\x7e\x81\x84\x8d\x91\x43\x47\x4b\x2a\x2f\x34\x72\x7c\x82\x82\ \x8c\x93\x85\x8d\x95\x54\x58\x61\x65\x6a\x70\x80\x89\x8e\x84\x8d\ \x91\x88\x90\x94\x81\x88\x8c\x83\x89\x8d\x00\x00\x00\x36\x2a\x1d\ \x00\x00\x00\x10\x0d\x08\x45\x35\x23\x24\x1b\x11\x38\x2a\x1b\x3d\ \x2d\x1d\x35\x28\x19\x10\x0c\x08\x10\x0c\x08\x1b\x15\x0d\x2a\x20\ \x14\x23\x1a\x11\x28\x1e\x13\x2d\x22\x16\x29\x20\x14\x2f\x23\x16\ \x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\x1b\x15\x0d\x19\x13\x0c\x18\ \x12\x0b\x14\x0e\x0a\x13\x0e\x09\x13\x0f\x09\x14\x10\x0a\x26\x1c\ \x13\x41\x32\x22\x3a\x2c\x1d\x3c\x2e\x1e\x48\x36\x24\x4d\x3b\x27\ \x41\x31\x21\x3a\x2c\x1d\x33\x26\x19\x3e\x2f\x1e\x3a\x2c\x1d\x37\ \x2a\x1b\x3a\x2c\x1d\x3c\x2d\x1e\x3f\x2f\x1f\x3a\x2c\x1c\x37\x29\ \x1b\x36\x28\x1b\x34\x27\x1a\x38\x2b\x1c\x29\x1e\x14\x27\x1d\x13\ \x2f\x23\x17\x35\x27\x19\x35\x28\x19\x32\x26\x18\x34\x27\x18\x27\ \x1d\x13\x26\x1c\x12\x25\x1c\x12\x28\x1f\x14\x2f\x23\x17\x2b\x20\ \x14\x26\x1c\x12\x20\x18\x0f\x1c\x15\x0d\x20\x18\x10\x25\x1c\x12\ \x27\x1d\x13\x29\x1f\x13\x28\x1e\x13\x29\x1f\x13\x2b\x21\x15\x34\ \x27\x19\x35\x28\x19\x35\x28\x19\x29\x1f\x14\x22\x19\x10\x27\x1d\ \x12\x23\x1a\x11\x22\x1a\x10\x24\x1b\x12\x2a\x20\x14\x1e\x17\x0e\ \x1e\x16\x0e\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x1f\ \x17\x0f\x21\x19\x10\x29\x1f\x14\x2c\x22\x15\x2f\x23\x17\x2c\x21\ \x15\x22\x1a\x10\x23\x1a\x11\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\ \x21\x19\x10\x20\x17\x0f\x19\x13\x0b\x24\x1a\x11\x26\x1c\x12\x20\ \x19\x0f\x26\x1c\x12\x27\x1d\x13\x31\x25\x17\x2b\x20\x15\x27\x1d\ \x12\x29\x1f\x13\x2d\x22\x16\x2c\x21\x15\x29\x1f\x13\x28\x1e\x13\ \x28\x1e\x13\x27\x1e\x12\x2a\x20\x14\x29\x1f\x14\x26\x1c\x12\x25\ \x1c\x12\x1e\x16\x0e\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\x1b\x14\ \x0d\x1c\x15\x0d\x1a\x14\x0d\x19\x13\x0c\x24\x1b\x11\x29\x1f\x14\ \x2e\x22\x16\x45\x34\x22\x2f\x23\x17\x22\x19\x10\x29\x22\x1a\x30\ \x32\x31\x33\x38\x3b\x3c\x42\x45\x48\x4e\x53\x53\x59\x5e\x5b\x63\ \x69\x65\x6e\x74\x6c\x75\x7c\x74\x7d\x85\x3e\x44\x4b\x47\x4b\x51\ \x24\x28\x2e\x76\x80\x85\x4b\x52\x56\x3a\x3f\x42\x3b\x43\x46\x6f\ \x78\x7d\x44\x49\x4e\x33\x36\x3a\x42\x48\x4d\x70\x79\x80\x83\x8d\ \x94\x66\x6c\x74\x7e\x85\x89\x83\x8b\x90\x89\x91\x96\x86\x8e\x92\ \x85\x8b\x90\x86\x8c\x91\x00\x00\x00\x3d\x2f\x1f\x00\x00\x00\x03\ \x02\x01\x4c\x3a\x27\x25\x1b\x11\x3d\x2e\x1d\x3d\x2e\x1d\x35\x28\ \x1a\x12\x0e\x09\x15\x10\x0b\x23\x1a\x10\x2b\x21\x14\x22\x1a\x10\ \x2a\x20\x14\x26\x1c\x12\x31\x25\x18\x35\x28\x1a\x29\x1f\x13\x2a\ \x20\x14\x25\x1c\x12\x1e\x16\x0e\x1a\x14\x0d\x19\x13\x0c\x17\x11\ \x0b\x18\x12\x0b\x0f\x0b\x07\x19\x13\x0c\x4e\x3c\x28\x37\x2a\x1c\ \x25\x1c\x12\x25\x1c\x12\x29\x1f\x14\x27\x1e\x13\x29\x1f\x13\x24\ \x1c\x12\x1a\x14\x0d\x1c\x15\x0d\x24\x1b\x12\x33\x27\x19\x3c\x2e\ \x1e\x44\x34\x23\x55\x41\x2c\x5a\x45\x2f\x57\x42\x2d\x49\x37\x25\ \x2c\x21\x16\x2c\x21\x16\x26\x1c\x13\x27\x1d\x12\x2d\x21\x15\x37\ \x29\x1a\x35\x28\x19\x33\x26\x19\x31\x25\x18\x2f\x23\x17\x27\x1e\ \x13\x2d\x21\x15\x28\x1e\x14\x24\x1b\x11\x24\x1b\x11\x28\x1e\x13\ \x28\x1e\x13\x29\x1f\x14\x24\x1b\x11\x21\x18\x0f\x1b\x15\x0c\x1e\ \x17\x0e\x23\x1a\x11\x25\x1c\x11\x2c\x21\x15\x2f\x23\x16\x31\x25\ \x18\x32\x26\x18\x2d\x22\x16\x26\x1c\x12\x28\x1e\x13\x21\x19\x10\ \x2a\x20\x14\x33\x27\x19\x30\x24\x18\x1f\x17\x0e\x22\x19\x10\x25\ \x1c\x12\x2c\x22\x15\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\x16\ \x0e\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x2e\x22\x16\x28\x1e\x13\ \x22\x1a\x10\x20\x19\x0f\x24\x1c\x12\x29\x20\x14\x2e\x23\x16\x1f\ \x16\x0e\x20\x18\x0f\x1c\x15\x0e\x1e\x16\x0e\x20\x18\x0f\x22\x1a\ \x11\x22\x1a\x10\x28\x1e\x14\x22\x1a\x10\x28\x1e\x13\x23\x1a\x10\ \x27\x1d\x13\x2c\x21\x15\x29\x1e\x14\x27\x1e\x13\x24\x1c\x11\x26\ \x1c\x12\x2a\x1f\x14\x2c\x21\x15\x28\x1e\x14\x2b\x20\x15\x2c\x21\ \x15\x27\x1d\x12\x20\x18\x10\x1c\x16\x0e\x18\x12\x0c\x19\x13\x0c\ \x19\x13\x0c\x1c\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x29\x1f\x13\x38\ \x2a\x1a\x25\x1c\x12\x26\x1d\x13\x35\x2a\x1f\x34\x32\x31\x32\x36\ \x39\x3b\x40\x44\x47\x4d\x52\x52\x58\x5e\x5c\x64\x6a\x65\x6d\x73\ \x6b\x75\x7c\x79\x83\x8c\x23\x28\x2d\x7f\x88\x90\x52\x58\x5d\x1f\ \x21\x26\x30\x35\x37\x84\x8d\x91\x56\x5d\x61\x1e\x21\x25\x42\x44\ \x47\x7d\x84\x88\x55\x5b\x5f\x3a\x40\x45\x72\x7a\x81\x84\x8c\x92\ \x84\x8d\x93\x85\x8d\x94\x86\x8e\x93\x86\x8c\x91\x8b\x92\x96\x87\ \x8e\x94\x00\x00\x00\x46\x37\x26\x05\x04\x02\x00\x00\x00\x42\x31\ \x21\x29\x1e\x14\x40\x30\x1f\x3a\x2b\x1c\x39\x2c\x1c\x17\x11\x0b\ \x1b\x15\x0d\x23\x1a\x11\x2b\x1f\x15\x21\x19\x10\x27\x1d\x13\x26\ \x1d\x12\x29\x1f\x13\x2b\x20\x15\x21\x19\x10\x2a\x20\x14\x2a\x1f\ \x14\x25\x1c\x12\x1d\x16\x0e\x1d\x16\x0e\x18\x13\x0c\x15\x10\x0a\ \x12\x0e\x08\x13\x0f\x09\x28\x1e\x14\x15\x0f\x0a\x32\x27\x19\x48\ \x37\x25\x46\x36\x24\x3d\x2e\x1e\x4e\x3b\x27\x4d\x3a\x28\x43\x33\ \x22\x4f\x3c\x28\x62\x4c\x34\x31\x25\x18\x49\x38\x26\x6b\x53\x38\ \x32\x25\x17\x60\x49\x31\x62\x4b\x33\x50\x3d\x29\x34\x28\x1a\x25\ \x1d\x12\x25\x1c\x12\x25\x1c\x12\x2b\x20\x14\x2f\x23\x16\x30\x23\ \x17\x30\x23\x18\x29\x1f\x14\x22\x19\x10\x33\x26\x18\x33\x27\x19\ \x2d\x21\x15\x28\x1f\x13\x28\x1e\x13\x2c\x20\x15\x2f\x24\x16\x2d\ \x22\x16\x2d\x22\x15\x27\x1e\x12\x26\x1d\x13\x26\x1c\x13\x26\x1c\ \x12\x29\x1f\x14\x2f\x23\x16\x2f\x23\x16\x32\x25\x18\x31\x25\x18\ \x23\x1a\x11\x23\x1a\x10\x29\x1e\x13\x26\x1d\x13\x31\x25\x18\x32\ \x26\x18\x30\x25\x17\x27\x1d\x13\x29\x1e\x13\x27\x1e\x13\x27\x1d\ \x13\x2b\x21\x14\x27\x1d\x12\x21\x18\x10\x1f\x17\x0e\x24\x1b\x11\ \x22\x1a\x11\x1f\x18\x0f\x20\x18\x0f\x27\x1e\x13\x25\x1c\x11\x19\ \x12\x0b\x1e\x16\x0e\x26\x1d\x12\x2c\x21\x15\x1f\x17\x0f\x1e\x17\ \x0e\x1b\x14\x0d\x1d\x15\x0d\x20\x18\x0f\x19\x13\x0c\x1a\x14\x0c\ \x21\x19\x10\x1f\x18\x0f\x22\x1a\x11\x1f\x17\x0f\x24\x1b\x11\x26\ \x1c\x12\x22\x19\x10\x23\x1b\x11\x23\x1a\x11\x23\x1b\x11\x29\x1f\ \x14\x2d\x23\x16\x30\x24\x17\x28\x1e\x13\x2c\x21\x15\x2d\x22\x15\ \x2a\x1f\x14\x26\x1c\x12\x22\x19\x10\x1a\x14\x0d\x1c\x16\x0e\x1e\ \x17\x0e\x1e\x17\x0e\x22\x1a\x11\x37\x29\x1a\x2d\x22\x16\x28\x1e\ \x13\x28\x1e\x13\x35\x2a\x1e\x33\x31\x2e\x32\x36\x39\x3a\x40\x43\ \x45\x4b\x4f\x51\x58\x5c\x59\x61\x67\x62\x6b\x70\x6b\x75\x7a\x56\ \x5d\x64\x32\x37\x3a\x72\x7c\x82\x7b\x85\x8b\x3c\x40\x44\x2b\x2e\ \x30\x7c\x86\x8a\x79\x83\x86\x37\x3a\x3d\x31\x33\x37\x81\x8a\x8f\ \x43\x48\x4b\x00\x00\x00\x2f\x35\x3a\x74\x7e\x82\x83\x8c\x90\x86\ \x8e\x95\x88\x90\x97\x89\x91\x96\x8a\x90\x95\x88\x8e\x92\x00\x00\ \x00\x5e\x49\x34\x0a\x07\x05\x00\x00\x00\x41\x31\x21\x37\x29\x1b\ \x3d\x2e\x1d\x55\x3f\x29\x41\x31\x20\x21\x19\x0f\x15\x0f\x0a\x1a\ \x13\x0c\x1c\x14\x0d\x19\x12\x0c\x25\x1c\x11\x25\x1c\x12\x23\x1b\ \x11\x24\x1b\x11\x1d\x16\x0e\x1e\x17\x0f\x23\x1a\x11\x23\x1a\x11\ \x24\x1a\x11\x1e\x16\x0e\x19\x12\x0b\x1a\x13\x0c\x17\x11\x0b\x15\ \x0f\x0a\x23\x1a\x11\x15\x0f\x09\x2e\x22\x16\x37\x2a\x1c\x35\x29\ \x1a\x1f\x17\x0f\x34\x27\x1a\x40\x30\x1f\x19\x13\x0c\x48\x37\x26\ \x78\x5c\x40\x0d\x0a\x06\x3e\x2f\x20\x6b\x52\x38\x2b\x20\x15\x4e\ \x3b\x27\x71\x57\x3b\x57\x43\x2d\x2c\x21\x16\x27\x1d\x13\x24\x1a\ \x11\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2d\x22\x15\x39\x2b\x1b\ \x2f\x23\x16\x27\x1d\x12\x2d\x22\x16\x36\x29\x1a\x2c\x21\x15\x2e\ \x23\x16\x22\x19\x10\x2b\x20\x14\x2d\x21\x16\x34\x27\x19\x35\x28\ \x1a\x26\x1d\x12\x21\x19\x10\x1f\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ \x2e\x22\x15\x2d\x22\x15\x39\x2b\x1b\x31\x25\x17\x25\x1c\x12\x21\ \x19\x10\x25\x1c\x12\x23\x1b\x11\x26\x1c\x12\x2c\x22\x15\x28\x1e\ \x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x13\x21\x19\x10\x20\x17\x0f\ \x22\x19\x10\x1e\x17\x0e\x14\x0f\x0a\x13\x0e\x09\x16\x10\x0a\x18\ \x12\x0c\x1b\x14\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x18\x10\x1a\x14\ \x0c\x18\x12\x0c\x1c\x15\x0d\x27\x1d\x12\x26\x1d\x12\x29\x1f\x13\ \x25\x1b\x12\x23\x1a\x11\x1d\x16\x0e\x1e\x16\x0e\x25\x1c\x12\x25\ \x1c\x12\x26\x1d\x13\x21\x19\x10\x25\x1c\x12\x25\x1c\x11\x25\x1b\ \x11\x2a\x20\x14\x2d\x22\x15\x27\x1e\x12\x30\x25\x17\x38\x2a\x1b\ \x35\x28\x19\x28\x1e\x13\x2a\x20\x15\x2a\x1f\x14\x27\x1e\x13\x28\ \x1e\x13\x27\x1d\x12\x24\x1a\x11\x2e\x22\x16\x1e\x17\x0e\x1f\x18\ \x0f\x27\x1d\x13\x33\x26\x19\x46\x35\x23\x21\x19\x10\x26\x1c\x12\ \x2c\x23\x19\x34\x30\x2c\x30\x35\x38\x3b\x40\x44\x46\x4c\x51\x51\ \x58\x5d\x5b\x62\x67\x63\x6a\x70\x72\x7b\x82\x30\x35\x3b\x45\x4b\ \x4f\x42\x4a\x50\x70\x7b\x7e\x31\x34\x37\x4a\x4f\x53\x40\x44\x49\ \x63\x6b\x6f\x42\x46\x4a\x36\x3a\x3f\x48\x4e\x53\x1b\x1d\x1e\x00\ \x00\x00\x07\x08\x0a\x3e\x44\x4a\x74\x7c\x80\x88\x91\x96\x8b\x93\ \x99\x89\x90\x98\x8c\x92\x98\x8a\x91\x96\x00\x00\x00\x63\x4d\x37\ \x11\x0d\x08\x07\x06\x03\x34\x27\x1a\x22\x19\x10\x27\x1e\x13\x41\ \x31\x20\x36\x28\x1a\x18\x12\x0b\x11\x0d\x09\x12\x0d\x08\x1e\x17\ \x0e\x17\x11\x0b\x1d\x16\x0e\x20\x18\x10\x2c\x21\x15\x1e\x17\x0f\ \x15\x10\x0a\x18\x12\x0b\x1a\x14\x0d\x1b\x14\x0d\x24\x1b\x11\x30\ \x24\x17\x24\x1b\x11\x23\x1b\x11\x1d\x16\x0e\x17\x11\x0b\x1a\x13\ \x0c\x13\x0e\x0a\x38\x2a\x1b\x50\x3d\x29\x4e\x3b\x26\x12\x0d\x09\ \x48\x36\x24\x4f\x3c\x27\x0d\x0b\x06\x41\x33\x22\x50\x3d\x2a\x25\ \x1c\x13\x2e\x23\x17\x5e\x48\x30\x49\x37\x25\x3f\x30\x1f\x5f\x48\ \x31\x45\x34\x23\x27\x1d\x13\x2d\x22\x16\x23\x1b\x10\x1d\x16\x0d\ \x1f\x17\x0e\x25\x1b\x11\x2a\x20\x14\x31\x25\x17\x2b\x21\x15\x21\ \x19\x10\x21\x18\x0f\x28\x1f\x13\x26\x1c\x12\x30\x24\x17\x2b\x20\ \x14\x23\x1b\x12\x27\x1d\x13\x2a\x20\x14\x2e\x23\x15\x26\x1c\x12\ \x1e\x16\x0e\x20\x18\x0f\x21\x19\x10\x2d\x21\x16\x30\x23\x17\x32\ \x25\x18\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x1f\x17\ \x0f\x1a\x14\x0d\x20\x18\x10\x20\x19\x0f\x2c\x21\x15\x2d\x22\x16\ \x2c\x22\x16\x22\x1a\x10\x17\x11\x0b\x1a\x13\x0c\x19\x13\x0c\x15\ \x10\x0a\x15\x10\x0a\x12\x0e\x08\x16\x11\x0b\x1c\x15\x0e\x1e\x16\ \x0f\x21\x18\x10\x25\x1b\x12\x29\x1f\x14\x26\x1c\x12\x25\x1c\x12\ \x28\x1f\x13\x30\x24\x17\x32\x25\x18\x2c\x21\x15\x2f\x22\x16\x21\ \x19\x10\x21\x19\x10\x21\x19\x10\x24\x1b\x11\x23\x1a\x10\x27\x1d\ \x13\x1e\x17\x0f\x21\x19\x0f\x28\x1e\x13\x29\x1f\x14\x30\x25\x17\ \x2b\x21\x15\x32\x26\x18\x41\x31\x20\x3f\x2f\x1e\x30\x24\x18\x28\ \x1e\x13\x2f\x23\x16\x31\x24\x18\x2a\x20\x14\x2d\x21\x15\x29\x1f\ \x14\x29\x1e\x13\x28\x1e\x13\x1e\x16\x0d\x24\x1b\x11\x21\x19\x10\ \x27\x1c\x13\x30\x24\x17\x2d\x21\x15\x28\x1e\x13\x2f\x24\x19\x38\ \x33\x2c\x30\x35\x37\x3a\x3f\x43\x45\x4b\x4f\x4f\x56\x5c\x5c\x63\ \x68\x65\x6c\x72\x66\x6d\x74\x37\x3c\x40\x80\x8b\x8f\x43\x4a\x4f\ \x40\x44\x48\x35\x3a\x3b\x82\x8c\x8e\x41\x45\x49\x15\x16\x19\x46\ \x4b\x4e\x89\x92\x96\x52\x58\x5b\x0f\x0f\x10\x00\x00\x00\x3b\x3e\ \x40\x56\x5c\x60\x3f\x42\x47\x70\x77\x7c\x88\x90\x96\x85\x8c\x93\ \x8c\x94\x99\x8a\x92\x96\x00\x00\x00\x71\x56\x3b\x1b\x14\x0c\x03\ \x03\x01\x1b\x14\x0d\x1c\x15\x0d\x20\x19\x0f\x33\x25\x18\x43\x33\ \x21\x18\x12\x0b\x11\x0d\x08\x19\x13\x0b\x26\x1c\x12\x1d\x16\x0f\ \x1d\x16\x0e\x2b\x21\x15\x31\x25\x17\x19\x13\x0c\x12\x0e\x09\x12\ \x0e\x09\x12\x0d\x08\x18\x12\x0b\x21\x19\x0f\x24\x1b\x11\x24\x1b\ \x11\x26\x1c\x12\x19\x13\x0c\x11\x0d\x08\x11\x0c\x08\x11\x0e\x08\ \x34\x28\x1a\x33\x28\x19\x3f\x2f\x1f\x14\x10\x0a\x48\x35\x23\x36\ \x29\x1a\x2d\x22\x16\x52\x3f\x2b\x2c\x22\x16\x56\x42\x2e\x31\x25\ \x19\x49\x37\x25\x55\x41\x2c\x35\x28\x1a\x40\x30\x20\x4b\x38\x26\ \x2d\x21\x15\x2a\x1f\x14\x23\x1b\x11\x21\x18\x10\x20\x19\x10\x20\ \x18\x0f\x25\x1c\x12\x22\x19\x10\x23\x1a\x11\x21\x19\x0f\x1e\x17\ \x0f\x24\x1b\x12\x27\x1d\x13\x2a\x20\x14\x29\x1f\x14\x2a\x20\x14\ \x1e\x17\x0f\x27\x1d\x12\x2b\x20\x15\x2d\x22\x16\x28\x1e\x13\x1d\ \x16\x0e\x1d\x16\x0e\x20\x18\x10\x28\x1e\x13\x2b\x21\x14\x2b\x20\ \x14\x29\x1f\x14\x2c\x21\x15\x2a\x1f\x14\x20\x19\x0f\x1e\x17\x0e\ \x1e\x17\x0e\x25\x1c\x11\x31\x25\x18\x2b\x21\x15\x2a\x20\x14\x2b\ \x21\x15\x24\x1b\x11\x1a\x13\x0c\x20\x18\x0f\x20\x18\x0f\x18\x12\ \x0b\x11\x0d\x08\x17\x11\x0b\x18\x12\x0c\x17\x11\x0b\x19\x13\x0c\ \x25\x1c\x11\x31\x25\x18\x2a\x1f\x15\x27\x1d\x13\x29\x1e\x13\x2a\ \x1f\x14\x32\x26\x18\x33\x26\x18\x2e\x21\x16\x26\x1c\x12\x25\x1c\ \x11\x23\x1a\x11\x2a\x20\x14\x19\x13\x0d\x1d\x16\x0e\x1e\x17\x0f\ \x22\x19\x11\x21\x19\x10\x29\x1f\x14\x2c\x21\x15\x2b\x20\x14\x2d\ \x21\x16\x39\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x27\x1e\x13\x2e\x22\ \x16\x2d\x22\x15\x28\x1d\x13\x24\x1c\x12\x26\x1c\x12\x27\x1d\x12\ \x30\x23\x16\x25\x1b\x12\x1d\x16\x0e\x22\x1a\x10\x26\x1d\x13\x2e\ \x23\x17\x3d\x2d\x1e\x25\x1b\x12\x2a\x20\x16\x36\x2f\x29\x2f\x33\ \x36\x3a\x3f\x42\x44\x4a\x4e\x4f\x56\x5b\x5c\x62\x68\x5c\x64\x6a\ \x59\x60\x66\x39\x3e\x42\x74\x7f\x84\x80\x8a\x8e\x1f\x21\x23\x45\ \x49\x4c\x72\x7c\x7f\x30\x34\x36\x00\x00\x00\x37\x3b\x3e\x80\x89\ \x8d\x85\x8e\x91\x2d\x2f\x31\x0b\x0c\x0e\x62\x67\x6a\x8b\x93\x97\ \x34\x37\x3c\x36\x37\x3c\x6c\x73\x77\x89\x91\x97\x89\x91\x97\x8a\ \x90\x95\x00\x00\x00\x87\x73\x60\x2f\x25\x1a\x10\x0c\x08\x22\x19\ \x11\x2f\x24\x17\x27\x1d\x12\x46\x34\x22\x44\x33\x21\x26\x1c\x12\ \x0e\x0b\x06\x10\x0b\x07\x21\x19\x10\x30\x24\x17\x21\x19\x0f\x21\ \x19\x10\x18\x12\x0c\x15\x10\x0a\x16\x11\x0b\x0f\x0c\x07\x0d\x0a\ \x06\x11\x0c\x07\x18\x12\x0b\x1d\x16\x0e\x1f\x18\x0f\x1d\x16\x0e\ \x1c\x15\x0d\x14\x0f\x0a\x1c\x15\x0d\x1d\x16\x0e\x44\x33\x22\x38\ \x2b\x1c\x32\x26\x18\x31\x24\x18\x49\x37\x24\x1e\x17\x0e\x45\x34\ \x22\x31\x25\x18\x23\x1a\x11\x54\x41\x2c\x31\x25\x19\x2a\x20\x15\ \x4a\x39\x26\x37\x2a\x1b\x1b\x14\x0d\x48\x37\x25\x41\x31\x21\x29\ \x1e\x13\x23\x1b\x11\x23\x1b\x11\x23\x1a\x11\x26\x1d\x12\x1f\x18\ \x0f\x1a\x14\x0d\x1e\x16\x0e\x22\x1a\x11\x1c\x15\x0e\x1c\x15\x0d\ \x1b\x14\x0d\x20\x19\x0f\x2d\x22\x16\x28\x1e\x13\x1c\x15\x0e\x1a\ \x13\x0c\x1b\x14\x0d\x1d\x16\x0e\x21\x19\x10\x1e\x17\x0e\x17\x12\ \x0b\x19\x14\x0c\x20\x18\x10\x23\x1a\x11\x28\x1e\x13\x27\x1e\x13\ \x2b\x20\x14\x28\x1e\x13\x1a\x14\x0c\x12\x0d\x09\x16\x10\x0b\x1e\ \x17\x0f\x1f\x18\x0f\x21\x19\x10\x2a\x21\x15\x33\x26\x19\x20\x18\ \x10\x1c\x14\x0e\x1a\x13\x0d\x1c\x15\x0d\x17\x11\x0a\x14\x10\x0a\ \x19\x13\x0d\x1e\x17\x0e\x1b\x14\x0c\x1b\x14\x0c\x21\x19\x10\x29\ \x20\x14\x2b\x20\x15\x20\x18\x0f\x27\x1d\x13\x2f\x23\x16\x38\x2a\ \x1b\x37\x29\x1b\x2f\x23\x16\x2a\x1f\x14\x2b\x21\x15\x35\x28\x1a\ \x35\x28\x1a\x31\x25\x18\x21\x19\x10\x21\x18\x10\x24\x1b\x11\x22\ \x1a\x10\x2a\x1f\x14\x2d\x22\x16\x2b\x20\x15\x2f\x23\x16\x31\x25\ \x18\x29\x1f\x14\x27\x1d\x12\x22\x1a\x10\x1f\x17\x0f\x22\x19\x10\ \x20\x18\x10\x24\x1b\x11\x2a\x1f\x14\x2d\x22\x15\x30\x24\x17\x2f\ \x23\x16\x28\x1e\x13\x27\x1d\x12\x2a\x1f\x14\x46\x34\x22\x4d\x3a\ \x25\x30\x24\x17\x39\x2c\x1c\x37\x31\x29\x2f\x33\x36\x38\x3d\x41\ \x43\x48\x4c\x4e\x54\x58\x5c\x62\x68\x3a\x42\x47\x5c\x64\x6a\x40\ \x46\x4b\x43\x4a\x4f\x6e\x76\x7a\x2d\x2f\x31\x51\x57\x5b\x3a\x3f\ \x43\x00\x00\x00\x01\x01\x01\x21\x23\x26\x54\x5a\x5e\x59\x5f\x63\ \x49\x4c\x50\x49\x4d\x50\x4b\x4f\x53\x72\x7a\x7e\x32\x36\x3a\x63\ \x68\x6c\x4c\x50\x54\x6f\x76\x7a\x8b\x94\x99\x8a\x90\x95\x00\x00\ \x00\xa6\x9c\x94\x20\x1e\x1b\x01\x01\x01\x1f\x17\x0f\x3f\x30\x1f\ \x28\x1e\x14\x40\x30\x1f\x4a\x37\x24\x25\x1c\x12\x0e\x0a\x06\x14\ \x0f\x0a\x19\x13\x0c\x1c\x14\x0d\x21\x19\x10\x16\x11\x0a\x12\x0e\ \x08\x16\x11\x0a\x14\x0f\x09\x0c\x08\x05\x0e\x0b\x07\x0f\x0b\x07\ \x13\x0e\x09\x16\x11\x0b\x19\x12\x0c\x1e\x17\x0f\x20\x18\x0f\x12\ \x0e\x08\x1a\x13\x0d\x1d\x15\x0e\x37\x2a\x1b\x2a\x1f\x14\x1f\x17\ \x0f\x4e\x3b\x26\x2a\x20\x14\x1e\x17\x0e\x4a\x39\x24\x36\x28\x1a\ \x1b\x15\x0d\x49\x38\x26\x5d\x48\x31\x0c\x0a\x05\x46\x36\x24\x54\ \x40\x2c\x0f\x0b\x06\x3d\x2e\x1f\x33\x27\x1a\x21\x19\x10\x22\x1a\ \x10\x1d\x15\x0e\x1b\x15\x0d\x29\x1f\x14\x1e\x17\x0e\x1b\x14\x0c\ \x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x23\x1a\x11\x25\x1c\x12\x26\ \x1d\x13\x26\x1d\x13\x29\x1e\x14\x1f\x17\x0f\x1f\x17\x0f\x20\x18\ \x10\x1a\x14\x0d\x1c\x16\x0d\x20\x18\x0f\x1c\x15\x0e\x28\x1d\x13\ \x28\x1e\x13\x25\x1c\x12\x2a\x1f\x14\x26\x1d\x12\x2c\x21\x15\x23\ \x1b\x11\x18\x13\x0c\x13\x0f\x0a\x19\x13\x0b\x23\x1a\x11\x1c\x15\ \x0e\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x29\x1f\x13\x1e\x17\x0e\ \x24\x1b\x11\x23\x1a\x10\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x18\ \x12\x0c\x1b\x15\x0d\x1e\x17\x0f\x21\x1a\x11\x2e\x23\x16\x2f\x22\ \x16\x24\x1c\x11\x1d\x16\x0e\x28\x1f\x13\x2c\x21\x15\x35\x28\x19\ \x33\x26\x18\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x31\x25\x18\x2b\ \x21\x15\x2d\x22\x16\x1f\x18\x0f\x21\x19\x10\x28\x1e\x13\x29\x1f\ \x13\x2b\x20\x15\x32\x26\x18\x2f\x23\x17\x2c\x21\x15\x1f\x17\x0f\ \x1a\x14\x0d\x1f\x17\x0e\x1b\x15\x0d\x1b\x15\x0d\x19\x13\x0c\x26\ \x1c\x12\x2b\x20\x14\x29\x1f\x13\x36\x29\x1a\x34\x27\x19\x2e\x22\ \x15\x2d\x22\x16\x29\x20\x13\x2a\x20\x14\x2a\x1f\x14\x2e\x22\x16\ \x33\x26\x19\x39\x32\x29\x2e\x32\x35\x37\x3c\x40\x42\x47\x4b\x50\ \x56\x5a\x59\x60\x65\x2f\x34\x37\x38\x3e\x42\x77\x7f\x85\x45\x4b\ \x50\x29\x2c\x2e\x61\x65\x68\x7f\x85\x89\x3e\x43\x46\x01\x02\x02\ \x0c\x0c\x0d\x50\x54\x58\x56\x5c\x60\x1a\x1c\x1f\x60\x65\x69\x87\ \x90\x92\x59\x5d\x60\x2f\x30\x32\x4b\x50\x54\x8d\x9a\x9f\x5f\x66\ \x6a\x20\x23\x25\x6e\x74\x79\x8b\x92\x96\x00\x00\x00\x77\x66\x5c\ \x1f\x1c\x19\x00\x01\x00\x1e\x17\x0f\x36\x28\x1a\x24\x1b\x11\x3c\ \x2e\x1d\x2c\x21\x15\x22\x1a\x10\x12\x0e\x08\x1a\x14\x0c\x18\x12\ \x0b\x1d\x16\x0e\x19\x13\x0b\x19\x13\x0c\x1f\x17\x0f\x1b\x14\x0d\ \x14\x0f\x0a\x14\x0f\x09\x11\x0d\x08\x12\x0d\x08\x16\x11\x0a\x1b\ \x15\x0d\x19\x13\x0c\x1d\x16\x0e\x20\x18\x0f\x13\x0f\x09\x1f\x18\ \x0f\x16\x10\x0a\x29\x1f\x15\x25\x1c\x12\x23\x1a\x10\x4e\x3b\x27\ \x25\x1c\x11\x1f\x17\x0e\x36\x29\x1b\x47\x36\x23\x18\x12\x0b\x2e\ \x22\x16\x49\x37\x25\x1f\x18\x0e\x3a\x2c\x1e\x3c\x2e\x1f\x12\x0e\ \x08\x24\x1a\x11\x2f\x23\x17\x27\x1d\x13\x30\x24\x17\x23\x1a\x11\ \x1e\x17\x0f\x25\x1c\x12\x20\x19\x10\x1a\x14\x0d\x1e\x16\x0e\x27\ \x1d\x13\x20\x18\x0f\x21\x19\x10\x1e\x16\x0e\x29\x1f\x14\x2b\x20\ \x15\x2b\x20\x14\x25\x1c\x12\x1f\x17\x0f\x1c\x16\x0e\x23\x1a\x11\ \x24\x1b\x12\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x20\x19\x10\x25\ \x1c\x12\x2c\x21\x15\x25\x1c\x12\x23\x1a\x11\x19\x13\x0c\x17\x12\ \x0b\x1b\x15\x0d\x16\x11\x0a\x1f\x17\x0f\x1c\x16\x0e\x27\x1c\x13\ \x32\x26\x19\x32\x25\x18\x2a\x20\x14\x21\x19\x10\x27\x1e\x13\x26\ \x1c\x12\x24\x1c\x11\x29\x1e\x13\x26\x1d\x12\x24\x1b\x11\x20\x18\ \x0f\x1f\x18\x0f\x20\x18\x0f\x1f\x18\x0f\x13\x0f\x09\x13\x0f\x0a\ \x15\x10\x0a\x18\x12\x0b\x1e\x17\x0f\x2b\x20\x15\x31\x24\x17\x26\ \x1c\x12\x30\x24\x17\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x2f\x24\ \x17\x26\x1d\x13\x22\x1a\x10\x1e\x17\x0e\x22\x19\x10\x27\x1e\x13\ \x29\x1f\x14\x29\x1f\x14\x27\x1d\x13\x21\x19\x10\x24\x1b\x11\x1f\ \x18\x0f\x1c\x15\x0e\x1e\x17\x0e\x2b\x21\x15\x2a\x20\x14\x2b\x20\ \x15\x30\x24\x17\x2e\x22\x16\x30\x24\x17\x2d\x22\x16\x2c\x21\x15\ \x26\x1d\x12\x29\x1f\x14\x29\x1f\x13\x23\x1b\x10\x29\x1f\x13\x35\ \x2e\x25\x2e\x32\x35\x37\x3b\x3f\x43\x49\x4d\x3d\x43\x47\x52\x59\ \x5d\x4f\x55\x5a\x4a\x51\x56\x73\x7e\x81\x52\x5a\x5e\x3a\x3d\x41\ \x47\x4b\x4f\x83\x8a\x8f\x71\x78\x7d\x0c\x0d\x0f\x25\x26\x28\x7a\ \x82\x87\x6b\x74\x77\x21\x23\x25\x3a\x3d\x40\x7b\x84\x86\x88\x92\ \x92\x1e\x21\x22\x3b\x40\x46\x78\x83\x89\x41\x47\x4b\x00\x00\x00\ \x32\x36\x39\x8d\x96\x9a\x00\x00\x00\x9c\x7f\x66\x23\x1d\x16\x00\ \x00\x00\x10\x0c\x08\x20\x18\x10\x17\x11\x0b\x2c\x20\x15\x34\x28\ \x19\x30\x24\x17\x13\x0f\x09\x1b\x15\x0d\x21\x18\x0f\x27\x1d\x13\ \x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x1b\x15\x0c\x16\ \x11\x0b\x11\x0d\x08\x17\x11\x0b\x1b\x15\x0d\x1b\x14\x0d\x16\x11\ \x0b\x17\x12\x0b\x19\x13\x0c\x16\x11\x0a\x27\x1d\x14\x19\x13\x0c\ \x1b\x14\x0c\x16\x11\x0b\x1b\x15\x0d\x40\x30\x20\x25\x1c\x12\x29\ \x1f\x14\x2e\x22\x16\x2f\x23\x17\x17\x11\x0b\x1c\x15\x0e\x2a\x20\ \x14\x22\x1a\x10\x30\x24\x18\x2f\x24\x17\x14\x0f\x09\x1d\x16\x0e\ \x27\x1d\x12\x1f\x17\x0f\x24\x1c\x11\x22\x19\x10\x1d\x16\x0d\x1f\ \x17\x0e\x1a\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x11\x29\x1f\ \x14\x30\x24\x17\x2a\x1f\x13\x2a\x20\x14\x2d\x22\x16\x34\x28\x19\ \x27\x1d\x13\x22\x19\x10\x1b\x14\x0d\x21\x19\x10\x26\x1d\x12\x2b\ \x20\x14\x2a\x20\x14\x26\x1d\x12\x21\x18\x10\x1b\x14\x0d\x21\x19\ \x10\x24\x1b\x11\x23\x1b\x11\x17\x11\x0b\x1a\x13\x0c\x16\x11\x0b\ \x19\x12\x0b\x19\x12\x0c\x20\x18\x0f\x1b\x14\x0c\x28\x1e\x13\x31\ \x26\x18\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x22\x19\x11\x20\x18\ \x10\x24\x1b\x11\x29\x1e\x14\x2a\x1f\x14\x29\x1f\x14\x20\x18\x0f\ \x25\x1c\x12\x1d\x16\x0e\x13\x0f\x09\x15\x10\x09\x16\x10\x0b\x12\ \x0d\x09\x1a\x15\x0d\x26\x1c\x12\x24\x1b\x11\x24\x1b\x11\x1e\x17\ \x0e\x1a\x14\x0c\x28\x1e\x13\x27\x1e\x13\x2b\x21\x15\x29\x1e\x13\ \x1c\x15\x0e\x22\x19\x11\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2e\ \x22\x16\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x25\x1c\x12\x1d\x15\ \x0e\x1e\x17\x0e\x1d\x16\x0e\x29\x1f\x13\x22\x19\x10\x1f\x17\x0e\ \x29\x1f\x13\x23\x1a\x10\x2c\x21\x16\x2b\x20\x15\x24\x1a\x11\x2e\ \x22\x16\x2f\x23\x16\x2f\x23\x17\x30\x24\x17\x33\x2b\x22\x2c\x30\ \x33\x35\x3a\x3d\x47\x4c\x50\x2a\x2d\x30\x3e\x44\x49\x60\x67\x6e\ \x65\x6c\x72\x58\x5e\x63\x49\x4f\x53\x44\x4a\x4e\x50\x54\x59\x46\ \x4a\x4f\x6f\x75\x78\x35\x37\x39\x54\x58\x5c\x5e\x64\x69\x51\x58\ \x5c\x4f\x53\x56\x4e\x52\x55\x47\x4d\x51\x5e\x67\x68\x44\x4b\x4e\ \x66\x6d\x74\x42\x48\x4d\x14\x16\x18\x00\x00\x00\x11\x13\x15\x86\ \x8c\x92\x00\x00\x00\xb7\x97\x75\x29\x1f\x14\x00\x00\x00\x1a\x13\ \x0c\x24\x1b\x11\x1b\x15\x0d\x34\x27\x1a\x3d\x2e\x1e\x32\x26\x18\ \x0d\x0a\x06\x13\x0e\x09\x1b\x14\x0d\x28\x1e\x13\x22\x19\x10\x16\ \x11\x0b\x19\x13\x0c\x19\x13\x0c\x1f\x17\x0e\x20\x18\x0f\x19\x13\ \x0c\x1a\x13\x0c\x18\x12\x0b\x13\x0e\x09\x12\x0e\x09\x16\x11\x0b\ \x1d\x16\x0e\x16\x10\x0b\x1e\x17\x0e\x1b\x14\x0d\x1d\x15\x0e\x25\ \x1c\x12\x25\x1c\x11\x31\x25\x17\x25\x1c\x12\x25\x1b\x11\x30\x24\ \x17\x3c\x2d\x1d\x14\x10\x0a\x1d\x16\x0e\x2e\x23\x17\x20\x19\x10\ \x35\x28\x1a\x3c\x2d\x1e\x25\x1b\x12\x1d\x16\x0e\x20\x18\x0f\x1e\ \x16\x0e\x2e\x22\x17\x23\x1b\x11\x1d\x16\x0e\x23\x1a\x11\x23\x1b\ \x11\x1a\x13\x0c\x1b\x15\x0d\x22\x1a\x10\x27\x1d\x13\x27\x1d\x13\ \x26\x1c\x12\x24\x1b\x11\x2b\x20\x15\x26\x1d\x12\x24\x1b\x11\x29\ \x1f\x13\x24\x1b\x12\x22\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\ \x12\x25\x1b\x11\x1d\x16\x0e\x1f\x18\x0f\x1c\x16\x0e\x1d\x15\x0e\ \x1e\x17\x0e\x19\x13\x0c\x1b\x14\x0c\x1a\x13\x0c\x16\x11\x0b\x1b\ \x14\x0d\x19\x13\x0c\x13\x0e\x09\x1a\x13\x0d\x1e\x17\x0f\x22\x19\ \x10\x1d\x16\x0e\x1f\x17\x0e\x1d\x16\x0e\x23\x1a\x10\x2a\x20\x14\ \x2b\x20\x15\x2b\x21\x15\x2e\x22\x16\x2d\x22\x16\x29\x1f\x14\x26\ \x1d\x12\x19\x13\x0c\x1e\x16\x0e\x1e\x16\x0e\x1b\x14\x0d\x19\x13\ \x0c\x1d\x16\x0e\x2a\x1f\x14\x31\x25\x18\x23\x1a\x11\x1f\x18\x0f\ \x23\x1b\x11\x26\x1d\x12\x29\x1f\x14\x2d\x22\x16\x25\x1c\x12\x26\ \x1c\x12\x2a\x1f\x14\x2c\x21\x15\x27\x1d\x13\x23\x1a\x11\x24\x1c\ \x11\x22\x1a\x11\x28\x1e\x13\x31\x25\x17\x24\x1b\x12\x1a\x14\x0d\ \x17\x12\x0b\x22\x1a\x10\x25\x1c\x12\x23\x1a\x11\x27\x1d\x12\x24\ \x1b\x12\x2b\x21\x15\x2b\x20\x15\x2c\x21\x15\x32\x25\x18\x30\x24\ \x17\x2f\x23\x16\x2b\x20\x15\x28\x23\x1d\x2e\x30\x32\x36\x3a\x3e\ \x44\x4b\x4e\x2d\x31\x33\x48\x4e\x52\x63\x69\x6f\x6f\x75\x7c\x52\ \x57\x5c\x6d\x71\x75\x35\x3a\x3e\x7e\x83\x87\x45\x47\x4c\x24\x25\ \x27\x6e\x72\x77\x7a\x80\x86\x50\x54\x59\x2f\x31\x35\x6a\x71\x74\ \x8a\x93\x95\x42\x46\x49\x0e\x11\x12\x6c\x76\x7a\x8a\x94\x99\x70\ \x75\x7a\x23\x23\x26\x08\x08\x09\x30\x32\x35\x87\x8d\x92\x00\x00\ \x00\xc1\xaa\x92\x2d\x25\x1c\x00\x00\x00\x1d\x15\x0e\x36\x28\x1a\ \x1c\x15\x0e\x39\x2b\x1c\x3a\x2c\x1c\x35\x28\x1a\x07\x05\x03\x10\ \x0c\x08\x10\x0c\x07\x1c\x14\x0e\x29\x1e\x14\x20\x18\x10\x1e\x16\ \x0e\x1e\x16\x0e\x1f\x17\x0f\x24\x1b\x12\x20\x18\x10\x1c\x15\x0e\ \x17\x12\x0b\x15\x10\x0a\x16\x11\x0a\x1a\x13\x0c\x17\x11\x0b\x15\ \x10\x0a\x18\x13\x0c\x1d\x16\x0e\x23\x1a\x11\x2b\x20\x14\x2c\x21\ \x15\x2c\x20\x15\x32\x27\x18\x23\x1a\x10\x29\x1f\x14\x34\x27\x19\ \x17\x12\x0b\x27\x1d\x13\x3f\x30\x20\x1c\x14\x0d\x30\x24\x18\x3a\ \x2b\x1d\x2b\x20\x14\x20\x18\x0f\x20\x18\x0f\x1d\x16\x0e\x24\x1b\ \x11\x22\x1a\x10\x29\x1e\x13\x1f\x17\x0f\x1f\x18\x0f\x1f\x17\x0f\ \x20\x19\x10\x2a\x1f\x15\x2b\x1f\x14\x2c\x21\x15\x2d\x22\x16\x29\ \x1e\x14\x30\x23\x17\x27\x1d\x13\x27\x1d\x12\x2e\x22\x16\x2d\x21\ \x16\x2d\x22\x16\x24\x1b\x11\x22\x1a\x11\x22\x1a\x10\x20\x18\x0f\ \x1a\x13\x0c\x1d\x15\x0e\x1c\x15\x0d\x14\x10\x0a\x18\x13\x0c\x17\ \x11\x0b\x17\x11\x0a\x15\x10\x0a\x1b\x15\x0d\x1e\x16\x0e\x1c\x15\ \x0d\x17\x12\x0b\x1b\x14\x0d\x22\x19\x10\x1e\x17\x0f\x15\x0f\x0a\ \x1b\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x27\ \x1d\x12\x30\x24\x17\x30\x24\x17\x2d\x22\x16\x2b\x21\x15\x1e\x16\ \x0e\x15\x10\x0a\x15\x10\x0a\x1d\x16\x0d\x1a\x14\x0c\x1b\x14\x0c\ \x1e\x17\x0e\x24\x1b\x11\x2d\x22\x15\x23\x1a\x11\x22\x1a\x11\x26\ \x1d\x12\x26\x1d\x13\x2b\x21\x14\x25\x1c\x11\x27\x1d\x12\x27\x1d\ \x13\x2b\x20\x14\x2a\x1f\x14\x28\x1d\x13\x23\x1b\x11\x26\x1d\x13\ \x2f\x23\x16\x2a\x20\x14\x2b\x21\x15\x23\x1b\x11\x24\x1b\x11\x23\ \x1a\x11\x24\x1b\x11\x24\x1b\x11\x24\x1a\x11\x21\x19\x10\x26\x1d\ \x12\x2c\x21\x16\x2a\x20\x14\x30\x24\x17\x30\x25\x17\x31\x25\x17\ \x2a\x20\x14\x29\x22\x1b\x2e\x31\x32\x35\x3a\x3d\x44\x4a\x4d\x23\ \x27\x29\x40\x45\x49\x63\x6a\x6f\x54\x5b\x62\x6f\x77\x7d\x3c\x3f\ \x44\x2f\x33\x37\x84\x8a\x8f\x78\x7e\x81\x45\x48\x4c\x42\x47\x4b\ \x8b\x95\x99\x60\x68\x6c\x20\x23\x28\x53\x58\x5d\x7b\x82\x86\x21\ \x22\x24\x00\x00\x00\x2e\x32\x35\x7e\x88\x8c\x8d\x96\x9a\x31\x34\ \x38\x67\x6b\x6e\x7d\x83\x88\x8b\x91\x96\x00\x00\x00\x9c\x87\x6f\ \x33\x28\x1d\x02\x01\x00\x26\x1d\x13\x3a\x2b\x1c\x1e\x16\x0e\x2a\ \x20\x14\x3d\x2d\x1d\x38\x2a\x1a\x0f\x0b\x07\x0e\x0a\x07\x17\x11\ \x0b\x1f\x18\x0f\x28\x1e\x13\x27\x1e\x13\x1c\x15\x0d\x19\x13\x0c\ \x24\x1b\x11\x29\x1e\x13\x25\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x1c\ \x15\x0d\x18\x12\x0b\x18\x12\x0b\x14\x0f\x0a\x16\x11\x0b\x18\x13\ \x0c\x1f\x17\x0f\x2b\x1f\x15\x23\x1a\x11\x20\x19\x10\x1a\x14\x0c\ \x2f\x24\x17\x28\x1e\x14\x33\x26\x18\x3d\x2e\x1e\x13\x0f\x09\x28\ \x1f\x14\x46\x35\x24\x18\x12\x0b\x31\x25\x18\x3f\x30\x1f\x2b\x20\ \x15\x24\x1b\x11\x29\x1f\x14\x22\x1a\x10\x28\x1e\x13\x2b\x21\x15\ \x27\x1d\x13\x29\x1e\x14\x21\x19\x10\x20\x19\x10\x23\x1a\x11\x23\ \x1b\x11\x2e\x22\x16\x25\x1c\x12\x2f\x23\x16\x2e\x22\x16\x2e\x22\ \x16\x2e\x23\x16\x2f\x23\x17\x37\x29\x1a\x33\x26\x18\x2c\x21\x15\ \x24\x1b\x11\x1f\x18\x0f\x21\x19\x10\x1e\x17\x0e\x23\x1b\x11\x27\ \x1d\x13\x19\x13\x0c\x17\x11\x0a\x18\x12\x0b\x1a\x13\x0c\x17\x12\ \x0b\x16\x10\x0a\x1d\x17\x0e\x2e\x23\x17\x27\x1e\x13\x1e\x17\x0e\ \x18\x12\x0c\x21\x19\x10\x1a\x13\x0c\x17\x11\x0b\x16\x10\x0a\x13\ \x0e\x09\x14\x0f\x09\x18\x12\x0b\x1b\x14\x0d\x1e\x16\x0e\x25\x1c\ \x12\x2a\x1f\x14\x27\x1d\x13\x27\x1d\x13\x26\x1d\x12\x1a\x14\x0c\ \x19\x13\x0c\x1f\x17\x0f\x24\x1b\x11\x1f\x18\x0e\x1c\x15\x0e\x27\ \x1d\x12\x24\x1a\x11\x2e\x22\x16\x30\x25\x17\x35\x28\x19\x29\x1e\ \x14\x25\x1c\x11\x2a\x20\x14\x2e\x23\x16\x2b\x20\x14\x29\x1f\x14\ \x2b\x21\x14\x28\x1e\x13\x24\x1a\x11\x2d\x21\x16\x2f\x23\x16\x30\ \x24\x17\x2e\x22\x16\x28\x1e\x13\x26\x1d\x13\x25\x1c\x12\x21\x19\ \x10\x22\x19\x10\x2a\x20\x14\x24\x1b\x11\x1f\x17\x0e\x22\x1a\x10\ \x25\x1c\x12\x2d\x22\x16\x33\x27\x18\x2e\x22\x16\x2a\x1f\x15\x30\ \x27\x1e\x32\x32\x31\x33\x38\x3b\x44\x4a\x4d\x31\x37\x39\x1e\x24\ \x26\x43\x48\x4c\x0b\x0c\x0e\x55\x5a\x62\x72\x79\x7f\x70\x75\x79\ \x7a\x80\x85\x81\x87\x8b\x78\x7e\x81\x4b\x4f\x54\x4f\x55\x5b\x5a\ \x61\x64\x52\x55\x59\x57\x5c\x61\x39\x3c\x41\x0c\x0d\x0e\x00\x00\ \x00\x23\x25\x27\x2d\x31\x36\x71\x77\x7d\x29\x2b\x30\x8b\x93\x97\ \x8e\x96\x9c\x8e\x94\x99\x00\x00\x00\xc4\xb5\xa9\x4c\x41\x34\x07\ \x05\x03\x00\x00\x00\x2f\x24\x17\x20\x18\x0f\x33\x27\x19\x3c\x2e\ \x1d\x3a\x2b\x1c\x0f\x0c\x07\x0a\x07\x05\x19\x14\x0c\x25\x1c\x11\ \x27\x1d\x12\x25\x1c\x12\x1b\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x24\ \x1b\x11\x27\x1d\x12\x1f\x17\x0f\x18\x12\x0b\x1b\x14\x0d\x1e\x16\ \x0e\x1f\x18\x0f\x19\x13\x0c\x11\x0d\x08\x11\x0d\x08\x1b\x15\x0d\ \x1d\x16\x0e\x18\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x31\x26\x19\x1b\ \x14\x0d\x21\x18\x10\x2c\x20\x15\x0f\x0b\x07\x23\x1b\x11\x44\x34\ \x23\x1b\x15\x0d\x2b\x21\x15\x40\x30\x20\x41\x31\x20\x36\x29\x1b\ \x2d\x22\x16\x27\x1d\x12\x2c\x21\x15\x26\x1d\x13\x2b\x20\x15\x30\ \x25\x17\x2b\x20\x14\x30\x24\x17\x23\x1a\x10\x1d\x16\x0e\x23\x1a\ \x10\x26\x1c\x12\x27\x1d\x12\x22\x1a\x10\x23\x1a\x11\x2b\x21\x15\ \x2f\x24\x17\x2d\x21\x15\x2a\x20\x14\x28\x1e\x13\x28\x1e\x13\x24\ \x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x3c\x2d\x1d\x30\x24\x18\x20\x18\ \x0f\x1a\x14\x0c\x14\x0f\x0a\x19\x13\x0c\x18\x12\x0b\x17\x12\x0b\ \x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x19\x10\x1d\x15\x0e\x1f\ \x17\x0f\x1a\x13\x0d\x18\x13\x0c\x1d\x16\x0d\x20\x18\x0f\x22\x1a\ \x11\x25\x1c\x12\x2d\x21\x15\x26\x1d\x12\x23\x1b\x11\x29\x1e\x14\ \x28\x1e\x13\x2b\x21\x15\x2c\x21\x15\x1f\x17\x0f\x1f\x17\x0f\x22\ \x1a\x11\x22\x19\x11\x22\x1a\x10\x20\x18\x0f\x20\x18\x0f\x25\x1c\ \x11\x29\x1f\x14\x28\x1e\x13\x27\x1d\x13\x25\x1c\x11\x24\x1b\x11\ \x2b\x20\x15\x22\x1a\x10\x24\x1c\x11\x27\x1e\x13\x2a\x20\x14\x28\ \x1e\x13\x23\x1a\x11\x29\x1e\x14\x31\x25\x18\x30\x25\x17\x32\x26\ \x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x14\x26\x1d\x12\x22\x19\x10\ \x23\x1b\x11\x26\x1d\x13\x27\x1d\x13\x27\x1e\x13\x21\x19\x0f\x2e\ \x23\x16\x2b\x21\x15\x27\x1d\x13\x24\x1b\x12\x33\x29\x1f\x37\x35\ \x32\x33\x38\x3b\x42\x48\x4b\x34\x3a\x3c\x2e\x33\x36\x08\x08\x09\ \x2f\x30\x33\x68\x6e\x75\x78\x80\x85\x7c\x83\x88\x7c\x82\x87\x80\ \x87\x8c\x80\x87\x8a\x7c\x82\x85\x3e\x42\x46\x28\x2b\x2e\x76\x7c\ \x7f\x88\x90\x93\x4b\x4f\x53\x09\x09\x09\x00\x00\x00\x61\x65\x68\ \x6a\x6f\x75\x13\x14\x18\x63\x67\x6d\x8e\x96\x9a\x8e\x95\x9a\x8b\ \x91\x96\x00\x00\x00\xc3\xb2\xa4\x59\x49\x39\x0a\x08\x05\x00\x00\ \x00\x18\x12\x0c\x1c\x15\x0e\x1d\x16\x0e\x35\x28\x1a\x45\x33\x21\ \x1b\x15\x0d\x17\x11\x0a\x21\x1a\x10\x26\x1c\x12\x25\x1c\x12\x2a\ \x20\x14\x25\x1c\x12\x1c\x15\x0d\x1d\x16\x0e\x20\x18\x0f\x26\x1c\ \x12\x23\x1a\x11\x15\x10\x0a\x14\x0f\x0a\x1d\x15\x0e\x20\x18\x0f\ \x1f\x18\x0f\x14\x0f\x09\x0b\x08\x05\x17\x12\x0b\x14\x0f\x0a\x1c\ \x15\x0d\x2d\x21\x16\x2e\x22\x17\x49\x38\x25\x19\x13\x0c\x16\x11\ \x0b\x32\x25\x18\x14\x0f\x09\x1f\x18\x0f\x37\x2a\x1c\x1e\x17\x0f\ \x1f\x18\x0f\x3a\x2c\x1d\x58\x43\x2e\x4d\x3b\x28\x32\x26\x18\x28\ \x1e\x13\x2d\x22\x16\x26\x1c\x12\x24\x1b\x12\x2d\x22\x15\x2a\x20\ \x14\x33\x26\x18\x28\x1e\x14\x21\x19\x10\x24\x1a\x11\x24\x1b\x11\ \x27\x1c\x12\x1d\x16\x0e\x20\x17\x0f\x28\x1e\x13\x29\x1f\x13\x27\ \x1e\x13\x28\x1e\x13\x26\x1c\x12\x25\x1c\x11\x23\x1b\x11\x1f\x17\ \x0f\x21\x18\x0f\x2c\x20\x15\x23\x1b\x12\x1e\x17\x0f\x1c\x15\x0d\ \x19\x13\x0c\x1e\x17\x0e\x1a\x14\x0c\x1e\x16\x0e\x22\x1a\x10\x1c\ \x15\x0d\x21\x19\x10\x25\x1c\x12\x27\x1e\x13\x2a\x1f\x14\x1d\x16\ \x0e\x1b\x15\x0d\x22\x1a\x10\x25\x1c\x12\x2b\x21\x15\x31\x25\x17\ \x36\x29\x1a\x2d\x22\x16\x20\x18\x0f\x25\x1b\x12\x2c\x21\x15\x31\ \x26\x18\x33\x27\x19\x22\x19\x10\x22\x1a\x10\x1e\x16\x0e\x1d\x16\ \x0e\x1e\x16\x0e\x1b\x15\x0d\x1d\x15\x0d\x27\x1e\x13\x28\x1f\x14\ \x30\x24\x17\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x29\x1e\x14\x2e\ \x23\x17\x2c\x22\x16\x29\x1f\x13\x26\x1c\x12\x2a\x1f\x14\x26\x1c\ \x12\x27\x1e\x14\x31\x25\x18\x28\x1e\x13\x2d\x22\x16\x38\x29\x1b\ \x38\x29\x1b\x27\x1d\x12\x26\x1c\x12\x23\x1a\x11\x27\x1d\x12\x22\ \x19\x11\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x2e\x22\x16\x23\x1b\ \x11\x24\x1b\x12\x28\x1e\x13\x33\x28\x1c\x34\x32\x2f\x32\x36\x39\ \x45\x4a\x4d\x21\x25\x27\x00\x00\x00\x3b\x3e\x40\x6e\x73\x78\x73\ \x7b\x80\x4f\x57\x5b\x6b\x71\x76\x7e\x85\x89\x7e\x86\x8a\x81\x89\ \x8d\x83\x8a\x8f\x7b\x81\x86\x48\x4b\x4f\x59\x5d\x62\x8d\x95\x99\ \x67\x6d\x71\x26\x26\x29\x2b\x2a\x2e\x85\x8c\x92\x8c\x95\x9a\x1b\ \x1b\x21\x8d\x92\x98\x8c\x92\x97\x8d\x93\x98\x8d\x93\x98\x00\x00\ \x00\xc6\xb9\xb0\x64\x51\x3f\x0e\x0b\x06\x01\x01\x01\x19\x12\x0c\ \x21\x1a\x10\x17\x11\x0b\x3f\x30\x1e\x46\x34\x22\x29\x1f\x14\x17\ \x12\x0b\x1f\x17\x0f\x1c\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x16\x10\ \x0b\x11\x0d\x08\x14\x0f\x0a\x1a\x13\x0c\x24\x1b\x11\x1f\x17\x0f\ \x13\x0e\x09\x14\x0f\x0a\x19\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1a\ \x13\x0c\x12\x0d\x08\x17\x11\x0b\x0c\x0a\x07\x2c\x21\x16\x41\x32\ \x21\x46\x36\x24\x52\x3f\x2a\x15\x10\x0a\x15\x10\x0a\x29\x1f\x14\ \x12\x0e\x08\x1d\x16\x0e\x32\x26\x19\x1c\x16\x0d\x19\x12\x0b\x38\ \x2a\x1c\x38\x2a\x1c\x21\x19\x0f\x2b\x20\x14\x2d\x21\x15\x26\x1c\ \x13\x24\x1b\x11\x26\x1c\x12\x25\x1c\x12\x27\x1e\x14\x30\x24\x17\ \x2a\x20\x14\x1d\x16\x0f\x1e\x17\x0f\x21\x18\x0f\x20\x18\x0f\x20\ \x18\x0f\x22\x19\x11\x28\x1e\x13\x28\x1e\x13\x25\x1c\x12\x29\x1f\ \x14\x2b\x20\x15\x27\x1d\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\ \x23\x1b\x11\x1e\x17\x0f\x1d\x16\x0d\x1f\x17\x0e\x25\x1b\x11\x1e\ \x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x1b\x14\x0d\x1d\x15\ \x0e\x1f\x18\x0f\x2a\x20\x14\x31\x25\x17\x25\x1c\x11\x20\x18\x0f\ \x1f\x17\x0f\x21\x18\x0f\x28\x1d\x13\x2a\x1f\x14\x2b\x20\x14\x2a\ \x20\x14\x28\x1e\x13\x24\x1c\x12\x21\x19\x10\x28\x1f\x13\x2d\x22\ \x15\x2f\x24\x17\x2a\x20\x14\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0e\ \x1c\x15\x0d\x19\x13\x0c\x24\x1a\x11\x28\x1d\x13\x29\x1f\x14\x2d\ \x22\x16\x23\x1a\x10\x23\x1a\x10\x28\x1e\x13\x31\x25\x17\x33\x26\ \x19\x2b\x21\x15\x29\x1e\x13\x27\x1d\x13\x21\x19\x10\x26\x1c\x12\ \x26\x1d\x13\x27\x1d\x13\x2b\x20\x15\x32\x25\x18\x33\x26\x19\x29\ \x1f\x13\x29\x1f\x14\x2b\x20\x14\x24\x1b\x11\x25\x1b\x11\x1b\x15\ \x0d\x1c\x15\x0d\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\x29\x1f\x14\ \x30\x24\x17\x2b\x21\x18\x2a\x2a\x27\x32\x36\x39\x42\x45\x49\x21\ \x23\x25\x3d\x40\x44\x64\x69\x6d\x6c\x73\x77\x73\x7b\x7e\x43\x47\ \x4a\x25\x29\x2c\x7a\x82\x86\x7f\x85\x89\x80\x86\x8b\x80\x89\x8d\ \x83\x8c\x90\x7d\x83\x87\x43\x44\x49\x63\x65\x6a\x42\x46\x4b\x7a\ \x7e\x83\x5c\x5d\x63\x5a\x5c\x63\x5b\x5f\x62\x54\x56\x5b\x8e\x94\ \x99\x8f\x95\x9a\x8f\x95\x9a\x8e\x94\x99\x00\x00\x00\xc6\xb9\xb0\ \x6f\x5d\x4a\x0f\x0b\x07\x00\x00\x00\x17\x11\x0b\x21\x19\x10\x1b\ \x14\x0d\x3d\x2d\x1d\x3e\x2e\x1e\x20\x18\x0f\x15\x10\x0a\x1f\x17\ \x0f\x1d\x16\x0d\x17\x12\x0b\x14\x0f\x09\x12\x0d\x09\x12\x0e\x09\ \x13\x0f\x09\x16\x10\x0a\x21\x19\x0f\x23\x1a\x11\x18\x12\x0b\x11\ \x0c\x08\x11\x0d\x09\x15\x10\x0a\x16\x10\x0a\x1b\x15\x0d\x1b\x14\ \x0d\x15\x10\x0a\x0d\x0a\x06\x1c\x15\x0d\x20\x18\x0f\x21\x19\x10\ \x43\x33\x22\x16\x11\x0a\x1d\x15\x0e\x2a\x1f\x14\x19\x13\x0c\x18\ \x12\x0c\x30\x25\x18\x21\x19\x10\x0f\x0b\x06\x3a\x2c\x1d\x40\x31\ \x20\x20\x18\x0f\x37\x2a\x1b\x2d\x23\x16\x2a\x20\x14\x29\x1f\x14\ \x2d\x22\x16\x2c\x21\x15\x25\x1c\x12\x26\x1d\x12\x2a\x20\x15\x1d\ \x16\x0e\x20\x18\x10\x27\x1d\x12\x1f\x17\x0e\x23\x1a\x10\x25\x1c\ \x12\x29\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\x1d\x12\x2b\x20\x15\ \x2c\x21\x16\x29\x1e\x14\x25\x1c\x12\x23\x1b\x11\x26\x1d\x12\x26\ \x1d\x12\x22\x1a\x10\x21\x19\x10\x21\x19\x0f\x1e\x17\x0e\x1b\x15\ \x0d\x1b\x14\x0c\x21\x19\x11\x20\x18\x10\x20\x18\x10\x24\x1c\x12\ \x2c\x21\x15\x34\x27\x19\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\ \x15\x0e\x21\x19\x10\x22\x1a\x11\x29\x1f\x14\x2c\x21\x15\x25\x1b\ \x11\x26\x1c\x12\x1c\x15\x0e\x1b\x15\x0d\x1d\x17\x0e\x28\x1e\x13\ \x2e\x23\x17\x2c\x22\x15\x2e\x23\x16\x23\x1a\x11\x1c\x15\x0d\x1e\ \x17\x0e\x21\x18\x0f\x20\x18\x0f\x22\x1a\x10\x28\x1e\x13\x30\x24\ \x17\x24\x1b\x11\x23\x1b\x11\x29\x1f\x13\x31\x25\x17\x2b\x20\x14\ \x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x20\x19\x0f\x25\x1c\x11\x28\ \x1e\x13\x29\x1f\x13\x32\x25\x18\x2e\x22\x16\x2a\x20\x14\x2a\x1f\ \x14\x2d\x21\x16\x29\x1f\x13\x2b\x21\x14\x23\x1a\x11\x20\x19\x10\ \x20\x19\x0f\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x22\x15\x2a\ \x21\x16\x2a\x28\x25\x31\x36\x39\x3d\x42\x44\x4a\x4e\x51\x57\x5c\ \x60\x60\x65\x6a\x6d\x72\x78\x74\x7b\x80\x11\x12\x13\x7c\x82\x86\ \x46\x4d\x50\x68\x6d\x71\x82\x8a\x8f\x81\x8a\x8f\x81\x89\x8e\x87\ \x8f\x94\x7f\x85\x89\x3f\x41\x45\x34\x35\x38\x7c\x83\x88\x8e\x95\ \x9c\x5c\x5f\x66\x10\x10\x12\x82\x86\x8a\x8f\x94\x99\x90\x94\x99\ \x90\x95\x9a\x8f\x93\x98\x00\x00\x00\xca\xc0\xbb\x7a\x68\x57\x12\ \x0e\x09\x00\x00\x00\x0d\x0a\x06\x1c\x15\x0d\x19\x12\x0c\x33\x26\ \x18\x34\x27\x19\x1d\x16\x0d\x1b\x14\x0d\x24\x1b\x11\x1d\x16\x0e\ \x1a\x14\x0d\x14\x10\x0a\x1a\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1d\ \x15\x0d\x1e\x17\x0f\x28\x1e\x13\x29\x1f\x13\x1e\x17\x0e\x17\x11\ \x0b\x17\x11\x0b\x19\x13\x0c\x1b\x14\x0c\x27\x1d\x13\x1c\x15\x0d\ \x0c\x0a\x05\x2b\x20\x14\x1c\x15\x0e\x1c\x16\x0e\x54\x40\x2b\x12\ \x0e\x07\x16\x10\x0a\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x24\x1b\ \x12\x34\x27\x1a\x21\x1a\x11\x58\x44\x2e\x52\x3f\x2b\x14\x0e\x08\ \x5b\x45\x2f\x39\x2c\x1d\x1e\x16\x0e\x26\x1c\x12\x2b\x20\x15\x2a\ \x20\x14\x27\x1d\x12\x28\x1e\x14\x2b\x20\x14\x22\x1a\x10\x21\x19\ \x10\x2a\x1f\x14\x21\x18\x10\x24\x1b\x11\x26\x1c\x12\x27\x1d\x12\ \x1f\x18\x0f\x22\x19\x10\x28\x1e\x13\x2c\x21\x15\x2b\x21\x15\x2e\ \x22\x16\x2a\x20\x15\x24\x1b\x11\x2b\x20\x15\x2d\x22\x16\x31\x25\ \x18\x34\x27\x19\x25\x1c\x11\x1b\x15\x0d\x17\x12\x0b\x1b\x14\x0c\ \x1b\x14\x0d\x1e\x16\x0f\x1b\x14\x0d\x1f\x17\x0f\x21\x19\x0f\x29\ \x1f\x14\x29\x1f\x14\x28\x1e\x13\x1e\x17\x0e\x1a\x13\x0c\x1d\x16\ \x0e\x21\x19\x10\x23\x1a\x11\x29\x1e\x14\x2b\x20\x14\x2a\x1f\x14\ \x23\x1a\x11\x1d\x16\x0e\x17\x12\x0b\x1c\x15\x0e\x28\x1d\x13\x2b\ \x21\x15\x37\x2a\x1a\x2a\x1f\x14\x21\x19\x10\x18\x12\x0c\x1f\x17\ \x0f\x22\x1a\x10\x27\x1d\x13\x2b\x20\x15\x2c\x21\x16\x20\x18\x0f\ \x1e\x17\x0e\x20\x18\x0f\x2a\x20\x14\x2b\x20\x14\x28\x1f\x13\x24\ \x1b\x11\x22\x1a\x10\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\x27\x1d\ \x13\x2f\x23\x17\x2b\x20\x14\x2b\x20\x14\x26\x1d\x12\x28\x1e\x13\ \x29\x1f\x14\x27\x1d\x12\x2c\x21\x15\x28\x1e\x13\x27\x1e\x13\x29\ \x1f\x13\x28\x1e\x14\x24\x1b\x11\x23\x1b\x11\x29\x1f\x15\x2a\x27\ \x23\x30\x33\x36\x3b\x3f\x41\x48\x4c\x4f\x55\x5a\x5e\x5e\x64\x69\ \x6e\x74\x7a\x3e\x43\x48\x26\x26\x28\x87\x91\x94\x24\x27\x28\x46\ \x4a\x4e\x77\x7f\x82\x81\x8a\x8f\x82\x8a\x91\x84\x8b\x91\x86\x8e\ \x92\x88\x8e\x90\x4a\x4b\x4d\x5e\x60\x64\x88\x8e\x94\x76\x7b\x82\ \x40\x42\x45\x90\x95\x99\x8f\x94\x99\x93\x96\x9b\x90\x94\x99\x91\ \x96\x9b\x00\x00\x00\xc8\xbf\xb8\x83\x6b\x55\x14\x0f\x0a\x00\x00\ \x00\x0b\x08\x05\x1e\x17\x0e\x18\x12\x0b\x2f\x24\x16\x32\x26\x18\ \x1e\x16\x0e\x15\x10\x0a\x22\x1a\x11\x1e\x16\x0e\x19\x13\x0c\x18\ \x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x1d\x16\ \x0e\x21\x19\x10\x2a\x20\x14\x28\x1f\x13\x20\x18\x10\x1f\x17\x0e\ \x1c\x15\x0e\x1c\x14\x0d\x27\x1d\x13\x21\x19\x10\x0b\x08\x05\x37\ \x2a\x1b\x15\x10\x0a\x11\x0d\x08\x5c\x46\x2f\x38\x2c\x1d\x47\x36\ \x25\x3c\x2e\x1e\x22\x1a\x10\x21\x19\x10\x33\x26\x19\x53\x40\x2b\ \x3b\x2d\x1e\x58\x43\x2e\x64\x4c\x35\x2f\x24\x18\x5d\x47\x31\x36\ \x29\x1c\x17\x11\x0a\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2d\x22\ \x16\x2c\x21\x15\x29\x1f\x13\x20\x19\x0f\x25\x1c\x11\x25\x1c\x12\ \x29\x1e\x14\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x21\x19\x10\x24\ \x1b\x11\x26\x1c\x12\x29\x1f\x14\x2a\x20\x14\x31\x24\x17\x2c\x21\ \x15\x29\x1f\x13\x27\x1d\x13\x27\x1d\x13\x2b\x20\x14\x36\x28\x19\ \x2a\x20\x15\x1b\x14\x0d\x16\x11\x0a\x13\x0e\x09\x19\x12\x0c\x20\ \x18\x10\x1b\x15\x0d\x1b\x14\x0d\x20\x19\x0f\x22\x19\x10\x28\x1e\ \x13\x32\x26\x18\x27\x1e\x12\x1d\x16\x0e\x1b\x14\x0d\x22\x19\x10\ \x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x1b\ \x14\x0d\x1a\x13\x0c\x1d\x16\x0d\x21\x19\x10\x29\x1f\x13\x34\x27\ \x19\x31\x24\x18\x28\x1e\x13\x1a\x14\x0d\x17\x12\x0b\x1e\x17\x0e\ \x20\x18\x0f\x28\x1e\x13\x23\x1a\x11\x1b\x14\x0d\x1a\x13\x0d\x20\ \x18\x0f\x24\x1c\x11\x26\x1d\x12\x2e\x23\x16\x2b\x20\x14\x24\x1b\ \x11\x29\x1e\x14\x2e\x22\x16\x2e\x22\x16\x29\x1f\x14\x2e\x22\x16\ \x31\x24\x17\x31\x24\x17\x29\x1f\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ \x20\x14\x30\x24\x17\x2d\x21\x15\x2b\x21\x14\x2e\x22\x16\x2a\x1f\ \x15\x29\x1e\x14\x2a\x20\x14\x2b\x20\x15\x2a\x26\x21\x2f\x33\x35\ \x3b\x40\x42\x47\x4c\x4f\x54\x5a\x5d\x5f\x66\x69\x6a\x71\x76\x5f\ \x63\x69\x40\x42\x47\x5e\x64\x65\x1e\x20\x20\x8e\x94\x99\x2a\x2d\ \x31\x75\x7d\x83\x88\x91\x98\x80\x88\x8f\x83\x8a\x90\x87\x8d\x90\ \x83\x88\x88\x41\x44\x45\x60\x63\x66\x3b\x3c\x3f\x78\x7b\x80\x8f\ \x93\x98\x94\x97\x9c\x91\x95\x9a\x8f\x93\x98\x92\x96\x9b\x00\x00\ \x00\xc6\xb9\xae\x99\x86\x72\x1a\x15\x12\x00\x00\x00\x15\x10\x0b\ \x2e\x23\x17\x1e\x16\x0e\x30\x24\x17\x3e\x2e\x1d\x1d\x16\x0e\x13\ \x0f\x09\x27\x1d\x13\x22\x19\x10\x1e\x16\x0e\x25\x1c\x12\x20\x18\ \x10\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x1e\x17\x0f\x1e\x17\x0e\ \x24\x1c\x11\x24\x1b\x12\x23\x1a\x11\x29\x1f\x14\x26\x1c\x12\x1b\ \x14\x0d\x21\x19\x10\x20\x19\x10\x0e\x0a\x07\x31\x25\x19\x3b\x2c\ \x1d\x20\x18\x10\x7c\x5f\x42\x2c\x22\x17\x3f\x2f\x20\x3c\x2d\x1e\ \x26\x1c\x12\x1f\x17\x0f\x33\x26\x19\x43\x33\x22\x1d\x16\x0e\x37\ \x2a\x1c\x54\x40\x2c\x54\x41\x2c\x49\x39\x26\x1c\x15\x0e\x1c\x15\ \x0e\x21\x19\x10\x1b\x15\x0d\x27\x1e\x13\x2b\x20\x15\x2e\x23\x16\ \x2f\x24\x17\x27\x1d\x12\x24\x1b\x11\x25\x1c\x12\x26\x1c\x13\x2c\ \x21\x15\x31\x25\x18\x2a\x1f\x14\x25\x1c\x12\x21\x19\x10\x26\x1c\ \x12\x29\x1e\x13\x30\x23\x16\x32\x25\x17\x2c\x21\x15\x2f\x23\x16\ \x2d\x22\x16\x2e\x23\x16\x22\x1a\x10\x26\x1c\x12\x21\x19\x10\x18\ \x12\x0c\x13\x0e\x09\x10\x0c\x08\x19\x13\x0c\x21\x18\x10\x1c\x15\ \x0d\x1b\x15\x0d\x19\x13\x0c\x1f\x18\x0f\x2a\x20\x14\x2d\x22\x15\ \x29\x1f\x13\x24\x1b\x11\x1b\x15\x0d\x1f\x17\x0f\x25\x1b\x11\x23\ \x1b\x11\x24\x1b\x11\x25\x1b\x12\x22\x19\x10\x1f\x18\x0f\x1f\x17\ \x0f\x20\x18\x0f\x20\x18\x10\x1e\x17\x0e\x25\x1c\x12\x2d\x22\x15\ \x2a\x1f\x14\x27\x1d\x13\x1d\x16\x0e\x1c\x16\x0e\x1e\x17\x0e\x1d\ \x15\x0e\x1d\x16\x0e\x1b\x14\x0d\x18\x12\x0c\x1f\x17\x0f\x23\x1a\ \x11\x2c\x21\x15\x37\x29\x1a\x33\x26\x19\x29\x1f\x14\x2b\x20\x15\ \x35\x28\x19\x33\x26\x19\x32\x26\x18\x2d\x22\x15\x31\x25\x18\x32\ \x25\x18\x34\x27\x19\x31\x25\x18\x32\x25\x18\x31\x26\x18\x36\x29\ \x1a\x2e\x22\x16\x29\x1f\x14\x30\x24\x17\x2b\x20\x15\x26\x1c\x12\ \x29\x1f\x13\x28\x1e\x14\x26\x23\x1e\x2f\x33\x34\x3a\x3f\x41\x45\ \x4c\x4e\x52\x59\x5c\x5d\x65\x68\x66\x6e\x72\x77\x7e\x83\x64\x68\ \x6d\x1b\x1d\x1e\x4d\x50\x53\x75\x7a\x7e\x18\x1a\x1b\x63\x68\x6c\ \x70\x77\x7d\x82\x8b\x92\x79\x81\x87\x7f\x84\x86\x87\x8c\x8e\x89\ \x8e\x90\x50\x51\x55\x32\x31\x35\x8f\x93\x98\x8e\x92\x97\x90\x95\ \x99\x8f\x93\x98\x90\x94\x99\x91\x96\x9a\x00\x00\x00\xcb\xc1\xb8\ \x9e\x84\x6c\x1b\x15\x0f\x00\x00\x00\x18\x13\x0c\x39\x2c\x1d\x1e\ \x17\x0f\x2d\x22\x16\x41\x31\x1f\x25\x1c\x11\x10\x0c\x07\x1f\x17\ \x0f\x1e\x16\x0f\x1c\x16\x0e\x28\x1f\x14\x24\x1b\x11\x1e\x16\x0e\ \x26\x1c\x12\x1f\x17\x0e\x1c\x15\x0d\x1a\x14\x0c\x1e\x16\x0f\x23\ \x1a\x11\x23\x1a\x11\x26\x1c\x12\x2b\x20\x14\x1e\x17\x0f\x2e\x22\ \x16\x2d\x22\x15\x13\x0f\x09\x39\x2b\x1d\x3a\x2c\x1d\x5c\x47\x30\ \x59\x45\x2f\x0e\x0a\x06\x16\x10\x0a\x30\x24\x18\x34\x27\x19\x26\ \x1c\x11\x37\x29\x1b\x3f\x30\x20\x16\x10\x0a\x3e\x2f\x20\x45\x34\ \x24\x2c\x21\x16\x39\x2b\x1d\x26\x1d\x13\x26\x1d\x13\x24\x1c\x12\ \x1b\x14\x0d\x1c\x15\x0d\x26\x1d\x12\x2e\x23\x16\x2e\x22\x15\x2a\ \x20\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x2d\x21\x15\x34\x27\ \x19\x2d\x22\x16\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2a\x20\x14\ \x33\x26\x18\x32\x26\x18\x2e\x23\x16\x31\x24\x17\x38\x2a\x1b\x38\ \x2a\x1b\x2a\x20\x14\x22\x19\x10\x1d\x15\x0d\x19\x12\x0b\x17\x12\ \x0b\x17\x12\x0b\x16\x11\x0a\x20\x18\x0f\x21\x19\x0f\x1b\x15\x0d\ \x1d\x16\x0e\x1e\x17\x0e\x26\x1d\x13\x25\x1c\x12\x21\x19\x10\x21\ \x19\x0f\x1e\x16\x0e\x22\x19\x10\x23\x1a\x11\x20\x18\x0f\x28\x1f\ \x13\x26\x1c\x12\x26\x1d\x12\x22\x1a\x10\x23\x1b\x11\x28\x1e\x13\ \x23\x1a\x10\x25\x1b\x11\x23\x1a\x11\x2d\x22\x15\x2d\x22\x16\x2b\ \x1f\x14\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\x24\x1b\x12\x23\x1b\ \x11\x20\x18\x0f\x1d\x16\x0e\x1e\x16\x0e\x23\x1b\x11\x30\x25\x17\ \x32\x26\x18\x2b\x20\x15\x27\x1d\x13\x31\x25\x17\x32\x26\x18\x2c\ \x21\x15\x31\x24\x17\x2d\x22\x16\x2d\x22\x15\x2e\x23\x16\x37\x29\ \x1a\x36\x28\x19\x31\x25\x17\x33\x26\x19\x32\x25\x18\x30\x24\x17\ \x2c\x20\x15\x2b\x20\x14\x2a\x20\x14\x28\x1e\x13\x24\x1b\x11\x24\ \x1b\x11\x2d\x26\x1e\x2f\x33\x35\x39\x3d\x40\x44\x49\x4d\x52\x59\ \x5c\x5c\x63\x65\x65\x6e\x72\x72\x7a\x7f\x7c\x82\x86\x6f\x75\x79\ \x47\x49\x4c\x3a\x3c\x3d\x4c\x50\x50\x51\x54\x55\x32\x34\x37\x75\ \x7d\x82\x54\x59\x5e\x5c\x5f\x61\x86\x8a\x8c\x8a\x90\x93\x8f\x93\ \x98\x81\x83\x89\x8b\x8f\x94\x8f\x94\x98\x90\x95\x99\x91\x95\x9a\ \x93\x96\x9b\x93\x97\x9b\x00\x00\x00\xc9\xc1\xbd\xb9\xa7\x96\x21\ \x1c\x17\x00\x00\x00\x08\x07\x04\x2e\x23\x17\x1e\x17\x0e\x26\x1c\ \x12\x34\x27\x19\x23\x1a\x11\x0e\x0b\x07\x18\x12\x0b\x19\x12\x0b\ \x1e\x16\x0e\x25\x1c\x12\x22\x1a\x10\x22\x19\x10\x23\x1a\x11\x19\ \x13\x0c\x1a\x13\x0d\x1c\x15\x0e\x1f\x17\x0f\x27\x1e\x13\x2a\x1f\ \x14\x28\x1e\x13\x29\x1f\x14\x1b\x14\x0d\x21\x19\x10\x2c\x21\x15\ \x20\x18\x0f\x4e\x3b\x27\x23\x1b\x12\x34\x28\x1a\x39\x2c\x1d\x29\ \x1f\x14\x13\x0f\x09\x2e\x23\x17\x38\x2a\x1b\x20\x17\x0f\x39\x2b\ \x1d\x4d\x3b\x27\x18\x12\x0b\x4f\x3c\x2a\x4c\x3a\x28\x11\x0d\x08\ \x21\x19\x10\x30\x24\x18\x28\x1e\x13\x2d\x23\x16\x1b\x15\x0d\x19\ \x13\x0c\x20\x18\x0f\x27\x1e\x12\x27\x1c\x12\x28\x1d\x13\x2a\x20\ \x14\x31\x25\x17\x34\x27\x19\x39\x2b\x1b\x31\x25\x17\x31\x25\x18\ \x28\x1e\x13\x27\x1d\x13\x21\x19\x10\x25\x1c\x12\x2e\x22\x16\x35\ \x27\x19\x33\x27\x19\x32\x26\x18\x3a\x2c\x1c\x3c\x2d\x1d\x36\x29\ \x1a\x26\x1c\x12\x24\x1b\x11\x17\x11\x0b\x16\x11\x0a\x13\x0f\x09\ \x13\x0e\x09\x17\x12\x0b\x19\x14\x0d\x1e\x17\x0f\x20\x18\x10\x21\ \x19\x0f\x23\x1a\x10\x2a\x1f\x13\x25\x1b\x11\x1f\x17\x0f\x19\x12\ \x0c\x1d\x15\x0e\x1f\x17\x0f\x1d\x16\x0e\x24\x1c\x12\x29\x1f\x14\ \x25\x1b\x12\x20\x18\x10\x24\x1b\x11\x30\x24\x16\x30\x24\x17\x37\ \x2a\x1a\x2d\x21\x16\x37\x29\x1b\x30\x24\x17\x27\x1d\x13\x29\x1f\ \x14\x2d\x22\x15\x2f\x23\x17\x2c\x21\x15\x1a\x14\x0d\x1c\x15\x0d\ \x1d\x16\x0e\x1c\x16\x0d\x1e\x17\x0e\x20\x18\x0f\x20\x18\x0f\x20\ \x19\x0f\x29\x1f\x13\x33\x26\x18\x35\x28\x19\x34\x27\x19\x33\x27\ \x19\x2d\x22\x16\x38\x2a\x1b\x36\x29\x1a\x41\x31\x1f\x3c\x2d\x1c\ \x37\x29\x1b\x3c\x2d\x1d\x34\x26\x19\x31\x25\x17\x2f\x24\x16\x33\ \x26\x19\x2d\x22\x16\x2b\x21\x15\x23\x1a\x11\x1b\x15\x0d\x25\x21\ \x1b\x35\x36\x36\x38\x3d\x3e\x44\x48\x4c\x52\x58\x5b\x5c\x63\x66\ \x68\x70\x74\x74\x7b\x7f\x77\x7e\x83\x7e\x87\x8a\x64\x69\x6e\x3a\ \x3d\x3e\x7a\x80\x80\x51\x57\x57\x42\x45\x47\x3d\x40\x43\x50\x53\ \x56\x4c\x4d\x51\x77\x7c\x7f\x89\x8e\x91\x8f\x93\x98\x8f\x93\x98\ \x8a\x8e\x93\x8f\x93\x98\x91\x96\x9a\x94\x98\x9c\x91\x95\x99\x94\ \x99\x9c\x00\x00\x00\x62\x56\x4d\x8b\x7b\x6c\x23\x1f\x1a\x00\x00\ \x00\x02\x02\x01\x29\x20\x14\x1b\x15\x0d\x2c\x21\x15\x3a\x2c\x1c\ \x2f\x23\x17\x15\x10\x0a\x1a\x13\x0c\x18\x12\x0b\x1a\x14\x0d\x1e\ \x17\x0e\x1a\x14\x0c\x26\x1d\x12\x2b\x20\x14\x26\x1d\x12\x1b\x15\ \x0d\x24\x1c\x11\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x25\x1b\x12\ \x27\x1c\x12\x1f\x17\x0f\x16\x10\x0b\x30\x24\x17\x1b\x14\x0d\x45\ \x34\x22\x23\x1a\x11\x1f\x17\x0f\x35\x28\x1b\x6b\x53\x39\x13\x0f\ \x09\x3b\x2d\x1e\x44\x34\x22\x3e\x2f\x20\x54\x40\x2c\x65\x4d\x35\ \x24\x1b\x12\x4a\x38\x26\x52\x3f\x2b\x14\x0f\x0a\x1c\x15\x0d\x2e\ \x22\x17\x1f\x17\x0f\x26\x1d\x13\x15\x10\x0a\x15\x10\x0a\x20\x18\ \x0f\x24\x1b\x11\x29\x1e\x13\x25\x1c\x12\x29\x1f\x14\x2b\x21\x15\ \x30\x24\x17\x32\x25\x17\x30\x24\x17\x30\x24\x17\x23\x1a\x11\x1d\ \x16\x0e\x1b\x15\x0d\x20\x18\x0f\x29\x1f\x14\x34\x27\x19\x37\x29\ \x1a\x35\x28\x1a\x36\x29\x1a\x3a\x2b\x1b\x38\x2a\x1b\x31\x25\x18\ \x2a\x1f\x14\x21\x19\x10\x22\x1a\x11\x21\x18\x0f\x1d\x16\x0e\x20\ \x18\x0f\x1e\x17\x0f\x23\x1b\x12\x23\x1b\x11\x24\x1a\x11\x20\x17\ \x0e\x21\x19\x0f\x22\x19\x10\x19\x13\x0c\x17\x12\x0b\x1a\x13\x0c\ \x1d\x15\x0d\x19\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0f\x1c\ \x15\x0d\x23\x1b\x11\x33\x26\x19\x36\x29\x1a\x35\x27\x19\x34\x27\ \x19\x2f\x24\x17\x2d\x22\x16\x2a\x20\x14\x27\x1c\x13\x21\x18\x0f\ \x28\x1e\x13\x2a\x20\x14\x1b\x15\x0d\x1a\x14\x0c\x1d\x16\x0e\x1d\ \x16\x0e\x1b\x15\x0d\x15\x10\x0a\x16\x11\x0a\x1a\x14\x0d\x22\x1a\ \x11\x29\x1f\x14\x30\x24\x17\x2f\x23\x16\x29\x1e\x13\x29\x1f\x14\ \x31\x25\x18\x2e\x23\x16\x37\x28\x1a\x2f\x24\x16\x33\x26\x18\x2e\ \x23\x16\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\x2b\x21\x15\x2a\x20\ \x14\x27\x1e\x13\x25\x1c\x12\x1b\x15\x0d\x1f\x1b\x17\x30\x32\x32\ \x38\x3c\x3e\x43\x48\x4b\x51\x56\x59\x59\x60\x63\x68\x6f\x72\x72\ \x7a\x7d\x77\x80\x83\x7c\x85\x89\x85\x8e\x91\x84\x8c\x90\x78\x7e\ \x80\x3f\x44\x43\x39\x3e\x3e\x2f\x31\x32\x5c\x60\x62\x4b\x4d\x50\ \x77\x7d\x7f\x8c\x91\x94\x8c\x91\x95\x8c\x91\x94\x88\x8d\x90\x91\ \x95\x99\x90\x94\x98\x93\x98\x9b\x91\x95\x99\x93\x97\x9b\x00\x00\ \x00\x16\x10\x0b\x41\x30\x1f\x1f\x19\x11\x02\x01\x00\x00\x00\x00\ \x28\x1e\x13\x1c\x14\x0d\x34\x27\x18\x4b\x38\x24\x39\x2a\x1b\x15\ \x0f\x09\x14\x10\x0a\x18\x12\x0b\x16\x11\x0a\x1b\x14\x0c\x18\x12\ \x0b\x1e\x17\x0e\x28\x1e\x13\x25\x1c\x12\x1a\x13\x0c\x1a\x14\x0c\ \x1f\x18\x0f\x1a\x14\x0d\x18\x12\x0b\x19\x13\x0c\x1f\x18\x0f\x19\ \x13\x0c\x11\x0c\x08\x35\x28\x1b\x1d\x16\x0e\x35\x28\x1a\x30\x24\ \x18\x2b\x20\x15\x29\x1f\x13\x67\x4e\x35\x36\x2a\x1c\x4d\x3a\x27\ \x59\x43\x2c\x48\x37\x26\x54\x40\x2b\x62\x4b\x33\x4c\x3b\x28\x58\ \x43\x2d\x3f\x2f\x20\x19\x13\x0d\x16\x11\x0a\x25\x1c\x12\x19\x13\ \x0c\x2d\x22\x16\x18\x13\x0c\x10\x0d\x08\x17\x11\x0b\x23\x1a\x11\ \x1e\x16\x0f\x1e\x17\x0f\x2b\x20\x15\x2c\x21\x15\x2b\x20\x15\x2c\ \x21\x15\x32\x25\x17\x2b\x20\x14\x24\x1b\x11\x21\x18\x10\x20\x18\ \x0f\x22\x1a\x10\x2b\x21\x15\x30\x24\x17\x36\x28\x1a\x34\x26\x19\ \x33\x26\x19\x3b\x2c\x1c\x2f\x23\x16\x2f\x24\x17\x29\x1f\x13\x24\ \x1c\x12\x1f\x17\x0f\x26\x1d\x13\x21\x19\x10\x1d\x15\x0e\x1e\x16\ \x0e\x1b\x15\x0d\x21\x19\x10\x1c\x14\x0d\x1f\x18\x0f\x20\x18\x10\ \x1b\x15\x0d\x17\x12\x0b\x1d\x16\x0e\x22\x19\x11\x24\x1b\x11\x1e\ \x17\x0f\x22\x19\x10\x27\x1e\x13\x21\x19\x10\x1a\x14\x0c\x1e\x16\ \x0e\x2c\x21\x15\x2a\x1f\x14\x2c\x22\x15\x2d\x21\x15\x32\x26\x18\ \x2e\x22\x16\x23\x1a\x11\x23\x1a\x11\x1d\x16\x0e\x27\x1e\x13\x2f\ \x23\x16\x28\x1e\x13\x1a\x14\x0d\x16\x11\x0a\x1b\x14\x0c\x18\x12\ \x0c\x1a\x14\x0c\x1b\x14\x0d\x1c\x14\x0d\x22\x19\x10\x25\x1c\x12\ \x23\x1b\x11\x24\x1c\x12\x25\x1c\x12\x28\x1f\x13\x30\x24\x17\x2f\ \x23\x17\x2c\x21\x16\x30\x24\x17\x3b\x2c\x1c\x2f\x24\x16\x2c\x21\ \x16\x2e\x22\x16\x2c\x21\x15\x32\x26\x18\x2d\x22\x15\x2e\x23\x16\ \x2a\x1f\x14\x19\x13\x0c\x1f\x1b\x15\x32\x32\x31\x37\x3a\x3d\x42\ \x47\x49\x50\x56\x58\x5a\x61\x64\x64\x6c\x6f\x6f\x76\x79\x79\x80\ \x84\x7d\x86\x8a\x82\x8a\x8e\x85\x8d\x91\x77\x7c\x81\x3a\x3d\x40\ \x28\x2a\x2a\x5f\x62\x63\x4c\x4f\x51\x49\x4c\x4e\x8e\x94\x97\x8e\ \x94\x97\x8e\x93\x96\x8b\x90\x94\x8c\x91\x94\x8e\x93\x96\x90\x95\ \x98\x90\x95\x98\x8f\x93\x97\x92\x96\x99\x00\x00\x00\x8e\x8e\x8d\ \x81\x6d\x59\x2f\x24\x17\x03\x02\x01\x00\x00\x00\x22\x1a\x11\x1b\ \x14\x0d\x3a\x2b\x1c\x5d\x45\x2d\x3d\x2e\x1d\x11\x0d\x08\x18\x12\ \x0c\x1d\x16\x0d\x12\x0e\x09\x19\x12\x0c\x17\x11\x0b\x18\x13\x0b\ \x1c\x16\x0d\x23\x1b\x11\x1c\x15\x0e\x17\x11\x0b\x12\x0e\x09\x11\ \x0d\x09\x14\x0f\x0a\x14\x0f\x0a\x17\x12\x0b\x11\x0d\x08\x0d\x0a\ \x06\x2c\x22\x16\x29\x1f\x14\x2f\x23\x18\x39\x2b\x1c\x1d\x16\x0e\ \x23\x1a\x12\x4d\x3a\x27\x59\x44\x2f\x42\x32\x21\x39\x2b\x1c\x14\ \x0f\x0a\x30\x24\x18\x46\x35\x24\x21\x19\x10\x2d\x22\x16\x2d\x22\ \x16\x1e\x16\x0f\x17\x11\x0b\x24\x1b\x12\x1b\x15\x0d\x21\x19\x10\ \x15\x11\x0b\x11\x0d\x08\x14\x10\x09\x27\x1d\x13\x20\x19\x0f\x24\ \x1c\x12\x2a\x20\x15\x2a\x20\x14\x32\x25\x18\x2d\x22\x15\x31\x25\ \x18\x28\x1f\x13\x26\x1c\x12\x26\x1c\x12\x26\x1d\x12\x25\x1c\x12\ \x28\x1e\x13\x2b\x20\x15\x2a\x20\x15\x28\x1e\x13\x2c\x21\x15\x32\ \x25\x18\x29\x1e\x14\x30\x23\x17\x2d\x22\x16\x2b\x21\x15\x27\x1e\ \x13\x23\x1a\x11\x21\x19\x10\x17\x11\x0a\x19\x13\x0c\x20\x18\x0f\ \x28\x1e\x13\x24\x1b\x11\x28\x1e\x13\x27\x1d\x13\x22\x19\x10\x24\ \x1b\x11\x25\x1b\x11\x25\x1c\x12\x28\x1e\x13\x27\x1d\x13\x2a\x1f\ \x14\x33\x25\x18\x30\x23\x17\x20\x18\x0f\x16\x11\x0b\x1f\x18\x0f\ \x1b\x15\x0c\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x31\x24\x18\x2c\ \x22\x15\x22\x19\x10\x1d\x15\x0e\x1a\x13\x0c\x28\x1f\x13\x2d\x21\ \x15\x29\x1e\x14\x23\x1a\x10\x20\x19\x10\x27\x1e\x13\x29\x1f\x14\ \x27\x1e\x13\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x2a\x20\x14\x25\ \x1c\x11\x24\x1c\x12\x2c\x22\x15\x2b\x20\x14\x2c\x21\x15\x29\x1f\ \x14\x2c\x21\x15\x34\x27\x18\x31\x25\x17\x2e\x23\x17\x2b\x20\x15\ \x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x30\x24\x17\x25\x1c\x11\x1c\ \x15\x0e\x1e\x19\x13\x2c\x2c\x2b\x36\x39\x3b\x41\x46\x49\x4f\x55\ \x57\x59\x60\x63\x64\x6b\x6f\x6e\x75\x78\x78\x80\x84\x7d\x84\x88\ \x81\x87\x8c\x85\x8b\x90\x81\x87\x8c\x6e\x73\x76\x5f\x62\x63\x6d\ \x70\x72\x37\x37\x39\x66\x6a\x6d\x92\x98\x9c\x8f\x95\x98\x93\x97\ \x9b\x8f\x93\x98\x8e\x93\x97\x90\x95\x99\x91\x96\x9a\x8e\x93\x96\ \x8f\x94\x97\x8f\x94\x97\x00\x00\x00\xd0\xcd\xcc\xbb\xaa\x99\x48\ \x3c\x2f\x05\x04\x02\x05\x04\x02\x18\x12\x0b\x15\x10\x0a\x2e\x23\ \x16\x46\x34\x21\x3d\x2e\x1d\x0f\x0c\x08\x14\x0f\x0a\x1f\x17\x0f\ \x14\x0f\x0a\x15\x10\x0a\x14\x10\x0a\x12\x0e\x09\x1c\x15\x0d\x26\ \x1d\x12\x22\x19\x11\x1d\x16\x0e\x17\x12\x0b\x17\x11\x0b\x16\x11\ \x0b\x13\x0f\x09\x16\x10\x0a\x0f\x0b\x07\x10\x0c\x08\x1c\x15\x0e\ \x2a\x1f\x14\x27\x1c\x13\x3a\x2c\x1d\x1e\x17\x0e\x23\x1a\x11\x4c\ \x3a\x26\x23\x1a\x11\x2d\x22\x16\x40\x30\x1f\x0e\x0a\x06\x2d\x23\ \x17\x50\x3d\x2a\x1f\x17\x0f\x21\x19\x0f\x2e\x22\x16\x28\x1d\x13\ \x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x2a\x20\x15\x1f\x17\x0f\x1a\ \x13\x0d\x1d\x16\x0e\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x25\x1c\ \x12\x2c\x21\x15\x2f\x23\x17\x2e\x22\x16\x21\x19\x0f\x24\x1b\x11\ \x25\x1c\x12\x26\x1d\x11\x24\x1b\x11\x26\x1c\x12\x27\x1e\x13\x24\ \x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1a\x11\x23\x1a\x11\x23\x1a\ \x10\x29\x1e\x13\x2a\x1f\x14\x30\x24\x17\x29\x1f\x13\x1d\x16\x0e\ \x27\x1d\x12\x25\x1c\x12\x22\x1a\x10\x1f\x18\x10\x24\x1a\x11\x27\ \x1e\x12\x2b\x21\x15\x23\x1b\x11\x2c\x20\x15\x2b\x20\x15\x22\x1a\ \x10\x1c\x16\x0e\x1f\x17\x0f\x23\x1a\x10\x28\x1e\x13\x2e\x23\x16\ \x31\x24\x17\x2c\x20\x15\x23\x1a\x10\x19\x13\x0c\x1b\x14\x0d\x22\ \x19\x10\x1c\x16\x0e\x24\x1b\x11\x2d\x21\x16\x2d\x22\x16\x2f\x23\ \x17\x28\x1e\x13\x17\x12\x0c\x20\x17\x0f\x1f\x17\x0f\x1e\x17\x0e\ \x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x25\x1c\x12\x25\x1c\x11\x26\ \x1c\x12\x2f\x23\x17\x2d\x22\x16\x29\x1e\x13\x30\x23\x17\x2d\x22\ \x16\x2a\x20\x15\x27\x1d\x13\x23\x1a\x11\x26\x1c\x12\x2d\x22\x16\ \x2f\x24\x17\x32\x25\x18\x29\x1f\x14\x27\x1d\x12\x23\x1b\x11\x22\ \x1a\x10\x25\x1c\x12\x2a\x20\x14\x28\x1f\x14\x23\x1b\x11\x2a\x21\ \x18\x31\x2e\x2b\x35\x38\x3a\x42\x46\x48\x4e\x53\x55\x5a\x5f\x64\ \x66\x6a\x6e\x70\x75\x7b\x77\x7d\x83\x80\x86\x8c\x82\x88\x8d\x80\ \x86\x8b\x84\x8a\x8f\x87\x8c\x90\x8c\x90\x95\x4c\x4d\x50\x31\x32\ \x33\x83\x88\x8b\x68\x6e\x73\x87\x8d\x92\x92\x96\x9b\x90\x94\x99\ \x8e\x92\x97\x91\x95\x9a\x91\x95\x9a\x8d\x92\x96\x91\x96\x99\x91\ \x95\x99\x00\x00\x00\xce\xca\xc9\xc1\xaa\x94\x54\x42\x31\x08\x06\ \x03\x01\x02\x00\x1a\x13\x0c\x20\x18\x0f\x28\x1e\x13\x3d\x2d\x1c\ \x3b\x2c\x1c\x16\x11\x0a\x13\x0d\x09\x20\x18\x0f\x1a\x13\x0d\x17\ \x11\x0b\x15\x10\x0a\x17\x11\x0b\x18\x12\x0c\x23\x1b\x11\x2d\x22\ \x16\x25\x1c\x12\x1d\x15\x0e\x16\x11\x0a\x11\x0d\x08\x10\x0d\x08\ \x16\x11\x0a\x13\x0e\x09\x13\x0e\x09\x17\x11\x0b\x26\x1d\x12\x1a\ \x14\x0d\x40\x31\x21\x1c\x15\x0d\x27\x1e\x12\x4a\x38\x26\x1e\x16\ \x0f\x3a\x2b\x1d\x62\x49\x31\x28\x1e\x13\x31\x25\x19\x51\x3e\x2a\ \x1d\x16\x0e\x1c\x15\x0e\x22\x1a\x11\x1d\x16\x0f\x1c\x16\x0e\x21\ \x19\x10\x1e\x17\x0f\x26\x1c\x13\x1f\x18\x0f\x1a\x14\x0d\x17\x12\ \x0b\x1c\x15\x0d\x1e\x16\x0e\x1e\x17\x0d\x22\x1a\x11\x2a\x1f\x14\ \x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x24\x1b\x12\x2f\x23\x16\x27\ \x1d\x13\x21\x19\x10\x1e\x17\x0e\x1b\x14\x0d\x1b\x14\x0c\x22\x19\ \x10\x21\x18\x0f\x22\x1a\x10\x23\x1b\x11\x25\x1c\x12\x2a\x1f\x14\ \x32\x25\x18\x2a\x1f\x14\x22\x1a\x11\x27\x1e\x13\x26\x1c\x12\x26\ \x1d\x13\x20\x18\x10\x23\x1a\x10\x20\x18\x10\x23\x1a\x11\x20\x19\ \x10\x20\x18\x0f\x27\x1e\x13\x2c\x21\x15\x2e\x23\x16\x29\x1f\x14\ \x21\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\x13\x2a\x20\x15\x28\ \x1f\x13\x23\x1a\x11\x20\x18\x10\x17\x12\x0b\x21\x19\x10\x1a\x14\ \x0d\x1b\x14\x0d\x22\x1a\x11\x24\x1b\x12\x22\x1a\x10\x2a\x20\x14\ \x26\x1c\x13\x1c\x16\x0e\x23\x1a\x11\x1b\x15\x0d\x1f\x17\x0f\x24\ \x1b\x10\x27\x1d\x12\x2b\x20\x15\x2c\x21\x15\x2f\x23\x17\x3c\x2e\ \x1d\x35\x27\x19\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x2f\x23\x17\ \x2f\x24\x17\x2e\x22\x16\x2b\x20\x14\x27\x1e\x13\x2c\x21\x15\x29\ \x1f\x14\x29\x1f\x14\x24\x1b\x11\x24\x1c\x12\x28\x1e\x13\x25\x1c\ \x12\x26\x1d\x13\x24\x1b\x11\x1f\x17\x0e\x29\x1e\x14\x35\x30\x29\ \x35\x38\x3a\x3f\x43\x45\x4b\x4f\x52\x5a\x5e\x63\x67\x6b\x6f\x6e\ \x73\x77\x78\x7e\x82\x7f\x84\x89\x83\x89\x8e\x84\x89\x8e\x83\x88\ \x8c\x89\x8f\x94\x8e\x93\x98\x74\x76\x7a\x79\x7c\x7f\x8d\x92\x96\ \x63\x69\x6c\x79\x80\x82\x8c\x90\x95\x8e\x93\x97\x8e\x93\x96\x94\ \x98\x9d\x90\x94\x99\x91\x96\x99\x92\x97\x9a\x91\x95\x97\x00\x00\ \x00\xce\xcb\xca\xc6\xc2\xc1\x66\x57\x48\x0b\x08\x05\x01\x00\x00\ \x20\x18\x0f\x22\x19\x11\x26\x1d\x12\x44\x33\x21\x39\x2b\x1b\x15\ \x0f\x0a\x0f\x0b\x07\x16\x10\x0a\x26\x1d\x12\x23\x1b\x11\x1f\x17\ \x0f\x1e\x17\x0e\x1f\x18\x0f\x1a\x14\x0c\x22\x19\x10\x1d\x15\x0e\ \x1a\x14\x0d\x20\x18\x0f\x1e\x17\x0f\x19\x14\x0c\x1d\x16\x0e\x17\ \x11\x0a\x13\x0e\x09\x15\x10\x0a\x27\x1d\x13\x16\x11\x0b\x38\x2a\ \x1c\x1a\x14\x0c\x1b\x14\x0c\x33\x27\x19\x21\x19\x10\x37\x2a\x1b\ \x5c\x45\x2e\x53\x40\x2b\x2c\x21\x16\x47\x37\x25\x28\x1f\x14\x1b\ \x14\x0d\x2a\x1f\x15\x2f\x23\x17\x27\x1e\x13\x28\x1e\x13\x1f\x17\ \x0f\x2f\x23\x17\x27\x1d\x13\x1c\x15\x0d\x12\x0e\x09\x1f\x17\x0e\ \x1b\x14\x0d\x24\x1b\x11\x21\x19\x10\x2e\x23\x16\x2f\x23\x17\x2f\ \x23\x16\x2e\x23\x16\x34\x27\x19\x2c\x21\x15\x32\x25\x18\x28\x1e\ \x14\x1f\x16\x0e\x1c\x15\x0d\x1f\x17\x0f\x24\x1b\x11\x25\x1c\x11\ \x22\x19\x10\x25\x1c\x12\x26\x1c\x12\x32\x26\x18\x2e\x22\x16\x28\ \x1e\x13\x25\x1c\x11\x29\x1f\x14\x24\x1b\x12\x1d\x16\x0e\x1d\x15\ \x0d\x23\x1a\x11\x25\x1b\x11\x21\x19\x0f\x1e\x16\x0e\x1e\x16\x0e\ \x20\x18\x10\x23\x1a\x11\x29\x1e\x14\x2c\x20\x15\x26\x1d\x12\x1a\ \x14\x0d\x1a\x14\x0d\x1e\x16\x0f\x22\x19\x10\x24\x1b\x11\x25\x1c\ \x11\x26\x1d\x12\x23\x1a\x11\x1a\x13\x0c\x11\x0d\x08\x1b\x14\x0d\ \x19\x14\x0d\x29\x1f\x14\x2b\x20\x14\x2f\x23\x17\x2d\x22\x16\x22\ \x1a\x10\x22\x19\x10\x28\x1e\x13\x1f\x18\x0f\x27\x1d\x13\x29\x1f\ \x14\x2c\x21\x15\x2c\x21\x15\x28\x1d\x13\x37\x29\x1b\x39\x2b\x1c\ \x2b\x20\x15\x36\x29\x1a\x37\x29\x1b\x3c\x2d\x1d\x3f\x2f\x1e\x43\ \x32\x20\x35\x28\x1a\x2c\x21\x15\x2d\x22\x15\x28\x1e\x13\x1e\x16\ \x0e\x25\x1b\x11\x29\x1f\x14\x1f\x18\x0f\x24\x1b\x11\x25\x1c\x11\ \x24\x1a\x11\x23\x1a\x10\x20\x1a\x12\x30\x2c\x27\x35\x38\x3a\x3e\ \x42\x44\x4a\x4d\x50\x5b\x5f\x62\x66\x6b\x70\x6b\x70\x75\x7a\x80\ \x84\x7d\x82\x87\x80\x86\x8b\x80\x86\x8b\x84\x8a\x8f\x8f\x93\x98\ \x6f\x73\x77\x54\x57\x5a\x72\x75\x78\x2f\x31\x33\x1c\x1d\x20\x4a\ \x4d\x50\x86\x8b\x90\x91\x96\x99\x8e\x93\x96\x93\x98\x9b\x92\x96\ \x99\x93\x98\x9b\x8f\x94\x97\x91\x95\x99\x00\x00\x00\xd1\xcc\xca\ \xc1\xae\x9a\x69\x52\x3a\x14\x0f\x0a\x04\x04\x02\x0e\x0a\x07\x1d\ \x16\x0e\x27\x1d\x12\x54\x3f\x28\x34\x27\x19\x1a\x14\x0c\x0a\x07\ \x04\x11\x0d\x08\x1a\x13\x0c\x1f\x17\x0f\x25\x1c\x12\x20\x19\x0f\ \x1d\x15\x0d\x1a\x13\x0c\x22\x19\x10\x1b\x14\x0d\x13\x0f\x09\x19\ \x13\x0c\x20\x18\x0f\x2a\x1f\x14\x1f\x17\x0e\x1c\x15\x0d\x15\x10\ \x0a\x13\x0e\x09\x33\x26\x19\x0f\x0b\x07\x3e\x2f\x1f\x0f\x0b\x07\ \x10\x0d\x08\x4b\x39\x26\x24\x1b\x12\x27\x1d\x13\x49\x37\x24\x4a\ \x38\x26\x5a\x45\x2f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x10\x3b\x2c\ \x1c\x39\x2a\x1b\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x30\x25\x18\ \x26\x1d\x12\x1d\x16\x0e\x19\x13\x0c\x16\x11\x0b\x19\x13\x0b\x21\ \x19\x0f\x21\x19\x10\x27\x1d\x13\x2d\x22\x16\x34\x27\x19\x35\x28\ \x19\x35\x28\x19\x34\x27\x19\x2d\x22\x16\x22\x1a\x10\x1d\x15\x0d\ \x1f\x17\x0f\x22\x1a\x11\x22\x1a\x10\x24\x1b\x11\x27\x1e\x13\x28\ \x1e\x14\x21\x18\x0f\x26\x1c\x12\x2b\x1f\x14\x2e\x23\x16\x24\x1b\ \x11\x1e\x17\x0f\x1f\x17\x0e\x27\x1d\x13\x29\x1f\x14\x2a\x20\x14\ \x2b\x20\x14\x1f\x18\x0f\x1f\x18\x0e\x25\x1b\x12\x1e\x17\x0f\x25\ \x1c\x11\x2a\x20\x14\x32\x26\x18\x34\x27\x19\x2e\x22\x16\x21\x19\ \x10\x21\x19\x0f\x26\x1c\x12\x2f\x24\x16\x2f\x23\x16\x28\x1e\x14\ \x29\x1f\x14\x1e\x17\x0f\x1d\x16\x0e\x1b\x14\x0d\x1e\x17\x0e\x27\ \x1d\x13\x2d\x22\x16\x31\x25\x17\x2a\x1f\x14\x29\x1f\x13\x26\x1c\ \x12\x25\x1c\x12\x1f\x18\x0e\x25\x1b\x12\x1f\x17\x0f\x20\x18\x0f\ \x25\x1c\x12\x2c\x21\x15\x38\x2b\x1b\x30\x24\x17\x2b\x20\x15\x38\ \x2a\x1b\x2e\x23\x16\x35\x27\x1a\x37\x29\x1b\x39\x2b\x1b\x3c\x2d\ \x1c\x39\x2b\x1c\x30\x24\x17\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\ \x24\x1b\x11\x24\x1b\x11\x21\x19\x10\x22\x1a\x11\x21\x19\x10\x1e\ \x16\x0f\x25\x1c\x12\x34\x2d\x26\x35\x37\x39\x3d\x40\x43\x4a\x4d\ \x50\x54\x58\x5c\x61\x65\x69\x6e\x74\x78\x78\x7e\x81\x7b\x81\x87\ \x7d\x83\x88\x83\x89\x8e\x83\x89\x8f\x89\x8d\x92\x86\x8a\x8f\x90\ \x95\x99\x68\x6b\x6e\x64\x66\x6b\x64\x66\x6a\x3f\x41\x43\x83\x87\ \x8b\x93\x97\x9b\x95\x99\x9e\x91\x96\x9c\x90\x94\x9a\x92\x97\x9b\ \x8e\x93\x96\x8e\x93\x96\x00\x00\x00\xd2\xcd\xcc\xc9\xc5\xc4\x7b\ \x66\x50\x11\x0d\x08\x00\x00\x00\x1d\x16\x0f\x1f\x17\x0f\x24\x1b\ \x11\x52\x3d\x28\x4d\x39\x25\x2a\x1f\x14\x0f\x0b\x07\x12\x0e\x09\ \x13\x0f\x09\x17\x11\x0b\x20\x18\x0f\x20\x18\x0f\x26\x1d\x13\x2b\ \x21\x15\x25\x1c\x12\x1f\x17\x0e\x1b\x14\x0d\x1b\x15\x0e\x1c\x15\ \x0d\x22\x1a\x10\x30\x24\x17\x21\x19\x0f\x1a\x14\x0d\x1a\x13\x0d\ \x3e\x2f\x1f\x19\x13\x0c\x40\x31\x21\x0c\x09\x05\x12\x0e\x09\x3f\ \x31\x20\x19\x12\x0c\x28\x1f\x14\x3d\x2e\x1e\x1c\x15\x0d\x22\x1a\ \x10\x2a\x20\x15\x33\x26\x19\x1c\x15\x0d\x3a\x2c\x1d\x3b\x2d\x1d\ \x1d\x15\x0e\x30\x24\x17\x2c\x20\x15\x25\x1b\x11\x1c\x16\x0e\x1e\ \x16\x0e\x1e\x16\x0e\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x21\x18\ \x0f\x23\x1b\x12\x24\x1b\x12\x31\x25\x17\x41\x30\x20\x49\x37\x23\ \x3e\x2e\x1e\x28\x1f\x14\x1d\x16\x0e\x1b\x14\x0d\x1d\x15\x0e\x1f\ \x18\x0e\x20\x18\x0f\x1e\x17\x0f\x1f\x18\x0f\x21\x19\x10\x26\x1c\ \x12\x27\x1d\x12\x29\x1f\x14\x21\x1a\x10\x27\x1d\x12\x24\x1c\x12\ \x23\x1a\x11\x20\x18\x0f\x28\x1e\x13\x29\x1e\x13\x2a\x1f\x14\x2b\ \x20\x14\x25\x1c\x12\x29\x1f\x13\x22\x19\x10\x25\x1c\x12\x22\x19\ \x10\x26\x1d\x12\x29\x1f\x14\x29\x1f\x14\x29\x1e\x14\x1f\x17\x0f\ \x1f\x18\x0f\x28\x1e\x14\x2f\x24\x17\x2d\x22\x16\x1d\x16\x0e\x1f\ \x18\x0f\x2c\x21\x16\x38\x2a\x1c\x3e\x2f\x20\x1e\x16\x0e\x26\x1c\ \x12\x25\x1c\x12\x2d\x22\x16\x2c\x22\x15\x38\x2a\x1b\x2c\x21\x15\ \x25\x1c\x12\x1f\x17\x0f\x22\x19\x10\x28\x1f\x13\x29\x1f\x14\x2c\ \x21\x15\x30\x24\x17\x29\x1f\x14\x2a\x20\x15\x2d\x22\x15\x2e\x24\ \x17\x36\x28\x1a\x33\x26\x19\x37\x29\x1b\x36\x28\x1a\x3f\x30\x1e\ \x3a\x2b\x1b\x2b\x20\x14\x28\x1e\x13\x20\x19\x0f\x1a\x14\x0c\x1a\ \x13\x0d\x1c\x15\x0e\x1f\x17\x0e\x24\x1b\x11\x1e\x17\x0f\x1f\x18\ \x0f\x29\x26\x21\x32\x34\x36\x3e\x41\x43\x4b\x4e\x51\x58\x5c\x5f\ \x61\x65\x69\x6f\x74\x78\x78\x7f\x84\x7f\x85\x89\x81\x87\x8d\x88\ \x8e\x94\x82\x88\x8e\x88\x8e\x93\x88\x8e\x93\x8d\x92\x98\x6d\x71\ \x78\x6e\x71\x79\x47\x48\x4c\x59\x5a\x5e\x8c\x90\x95\x8f\x93\x98\ \x94\x98\x9d\x90\x94\x99\x99\x9d\xa2\x93\x97\x9c\x94\x99\x9d\x95\ \x99\x9c\x00\x00\x00\xd3\xcd\xcb\xc2\xb3\xa5\x85\x68\x4b\x12\x0d\ \x09\x00\x00\x00\x32\x26\x19\x2f\x23\x17\x24\x1b\x11\x4e\x3a\x25\ \x55\x40\x29\x48\x36\x23\x18\x13\x0b\x1c\x15\x0d\x13\x0e\x09\x1c\ \x14\x0d\x2b\x20\x14\x29\x1e\x14\x25\x1c\x12\x24\x1b\x11\x24\x1b\ \x11\x24\x1c\x12\x1e\x17\x0f\x1e\x16\x0e\x19\x12\x0c\x21\x18\x10\ \x27\x1d\x12\x25\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x48\x36\x24\x16\ \x11\x0b\x31\x25\x18\x11\x0d\x08\x19\x13\x0c\x44\x34\x23\x1f\x18\ \x0f\x30\x23\x17\x40\x30\x20\x26\x1d\x12\x2a\x20\x14\x36\x28\x1a\ \x3b\x2d\x1e\x1d\x15\x0d\x3e\x2f\x1f\x42\x33\x21\x23\x1b\x11\x2f\ \x23\x17\x24\x1b\x11\x1e\x17\x0f\x1f\x17\x0f\x1e\x16\x0e\x1c\x15\ \x0e\x18\x12\x0b\x1f\x17\x0e\x2d\x22\x16\x22\x19\x10\x22\x1a\x10\ \x22\x19\x10\x24\x1c\x11\x27\x1e\x13\x2f\x23\x17\x2f\x23\x16\x2a\ \x20\x15\x1f\x18\x0f\x1c\x15\x0e\x20\x18\x10\x21\x19\x10\x1c\x15\ \x0d\x1f\x17\x0e\x1d\x16\x0e\x19\x13\x0c\x25\x1b\x11\x27\x1d\x12\ \x2a\x1f\x14\x24\x1b\x12\x25\x1c\x11\x23\x1a\x10\x20\x17\x0f\x1f\ \x18\x0f\x27\x1e\x13\x25\x1c\x12\x2e\x22\x16\x2e\x23\x16\x1e\x17\ \x0e\x20\x18\x10\x21\x19\x10\x29\x1f\x15\x2b\x20\x16\x20\x18\x0f\ \x2a\x1f\x15\x30\x24\x17\x32\x26\x18\x5b\x46\x30\x7f\x62\x44\x88\ \x6a\x49\x90\x70\x4e\x51\x3d\x29\x31\x25\x17\x88\x67\x47\xaa\x84\ \x5c\xb2\x8a\x60\x71\x57\x3c\x21\x19\x10\x25\x1c\x12\x29\x1f\x13\ \x2c\x21\x15\x3b\x2c\x1d\x40\x30\x1f\x33\x26\x18\x24\x1b\x11\x1f\ \x17\x0f\x1f\x18\x0f\x21\x19\x0f\x22\x19\x0f\x24\x1b\x11\x27\x1e\ \x13\x2a\x20\x15\x26\x1d\x13\x26\x1c\x12\x27\x1d\x12\x35\x27\x1a\ \x2f\x23\x16\x3c\x2d\x1d\x3b\x2c\x1d\x37\x28\x1a\x2f\x23\x17\x31\ \x25\x17\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x1f\x18\x0f\x22\x1a\ \x10\x28\x1e\x13\x25\x1c\x12\x22\x1a\x10\x30\x25\x18\x36\x2e\x26\ \x32\x34\x37\x3d\x41\x43\x49\x4e\x51\x57\x5d\x5f\x61\x67\x6b\x72\ \x77\x7d\x76\x7e\x84\x7e\x85\x8b\x85\x8c\x91\x84\x8b\x8f\x87\x8d\ \x92\x83\x89\x8e\x89\x8f\x95\x8e\x94\x9a\x8f\x94\x9c\x68\x6c\x73\ \x48\x4a\x4e\x85\x89\x8d\x8f\x94\x99\x92\x96\x9b\x91\x95\x9a\x91\ \x95\x9a\x95\x9a\x9c\x97\x9b\x9e\x97\x9b\x9e\x98\x9d\xa0\x00\x00\ \x00\xd5\xd0\xcd\xca\xc2\xbb\x96\x7d\x66\x15\x11\x0b\x00\x00\x00\ \x1b\x14\x0d\x2d\x21\x16\x25\x1b\x12\x54\x3f\x29\x4d\x39\x25\x28\ \x1f\x14\x12\x0e\x08\x1e\x17\x0f\x18\x12\x0b\x15\x10\x0a\x1a\x13\ \x0d\x1a\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x22\x1a\x10\x25\x1c\x12\ \x1e\x17\x0f\x18\x13\x0c\x1a\x13\x0c\x1f\x16\x0e\x22\x19\x11\x21\ \x19\x10\x1e\x16\x0e\x1e\x17\x0f\x3c\x2d\x1e\x18\x12\x0b\x3d\x2e\ \x1e\x13\x0f\x09\x1b\x15\x0d\x3f\x30\x1f\x1d\x15\x0e\x23\x1a\x10\ \x30\x24\x17\x2b\x21\x15\x1e\x16\x0e\x30\x24\x17\x3a\x2c\x1d\x18\ \x12\x0b\x28\x1f\x14\x31\x26\x18\x29\x1f\x13\x2a\x1f\x14\x1f\x18\ \x10\x1c\x15\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x10\x21\x19\x10\ \x22\x1a\x10\x27\x1d\x12\x21\x19\x10\x19\x12\x0c\x18\x12\x0b\x1d\ \x16\x0e\x26\x1d\x12\x28\x1e\x13\x2d\x22\x15\x25\x1c\x11\x28\x1e\ \x13\x29\x1e\x14\x29\x1f\x14\x29\x1f\x14\x2a\x20\x14\x24\x1b\x11\ \x24\x1c\x12\x26\x1d\x13\x20\x19\x10\x20\x18\x10\x21\x19\x10\x16\ \x11\x0b\x29\x1f\x15\x49\x37\x25\x57\x43\x2e\x62\x4c\x34\x2e\x23\ \x16\x22\x19\x10\x2c\x21\x15\x31\x25\x18\x48\x37\x25\x9d\x7a\x55\ \xb6\x8d\x64\xa6\x81\x5b\x52\x40\x2b\x1b\x14\x0c\x26\x1c\x12\x2a\ \x1f\x14\x26\x1d\x12\x41\x32\x21\x97\x75\x52\xba\x91\x66\x62\x4a\ \x33\x2a\x1f\x14\x23\x1a\x11\x39\x2b\x1c\x9d\x7a\x54\xa1\x7c\x56\ \x2c\x21\x16\x28\x1e\x13\x1b\x14\x0d\x1f\x17\x0f\x27\x1d\x12\x2e\ \x22\x16\x37\x29\x1a\x35\x28\x19\x28\x1e\x13\x21\x19\x10\x1f\x17\ \x0f\x21\x18\x10\x27\x1d\x13\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\ \x23\x1a\x10\x2c\x21\x15\x33\x26\x18\x33\x26\x18\x37\x2a\x1b\x35\ \x27\x19\x3e\x2e\x1e\x39\x2a\x1b\x34\x27\x19\x37\x29\x1b\x2f\x23\ \x17\x2c\x21\x15\x23\x1a\x11\x1a\x13\x0c\x1c\x15\x0d\x1e\x17\x0e\ \x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x2b\x26\x20\x33\x36\x37\x3e\ \x41\x42\x4a\x4d\x50\x55\x5a\x5d\x63\x6a\x6d\x6e\x76\x79\x76\x7e\ \x82\x82\x87\x8d\x85\x8a\x90\x85\x8e\x92\x87\x8d\x92\x86\x8c\x90\ \x89\x90\x95\x8b\x91\x96\x8f\x95\x9b\x93\x98\x9e\x95\x99\x9e\x91\ \x95\x9a\x94\x98\x9d\x93\x97\x9c\x93\x97\x9c\x97\x9b\x9f\x95\x9a\ \x9d\x95\x99\x9c\x99\x9d\xa0\x98\x9c\x9f\x00\x00\x00\xd5\xd0\xcd\ \xce\xc9\xc6\xa6\x90\x79\x19\x14\x0f\x00\x00\x00\x0b\x09\x05\x2d\ \x22\x16\x1f\x17\x0f\x45\x34\x21\x3a\x2b\x1c\x26\x1d\x12\x16\x10\ \x0a\x22\x1a\x11\x23\x1a\x10\x18\x12\x0b\x14\x0f\x0a\x18\x12\x0c\ \x18\x12\x0c\x1a\x14\x0d\x22\x1a\x10\x23\x1b\x11\x21\x19\x10\x1f\ \x17\x0f\x1d\x16\x0e\x18\x13\x0b\x1c\x15\x0e\x21\x19\x10\x1e\x17\ \x0f\x20\x18\x10\x47\x35\x22\x24\x1b\x12\x44\x34\x23\x1b\x15\x0c\ \x15\x10\x0a\x26\x1c\x13\x1f\x17\x0e\x28\x1d\x13\x3c\x2c\x1d\x34\ \x26\x19\x25\x1c\x12\x2a\x20\x15\x31\x25\x18\x1f\x17\x0f\x2d\x21\ \x16\x2a\x1f\x14\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\x22\x1a\x10\ \x28\x1f\x13\x21\x19\x10\x1f\x17\x0f\x25\x1c\x12\x29\x1f\x14\x26\ \x1d\x12\x26\x1d\x13\x22\x1a\x11\x1a\x14\x0d\x1f\x18\x10\x2d\x22\ \x16\x2c\x21\x15\x2d\x22\x15\x25\x1c\x11\x18\x12\x0b\x2b\x21\x16\ \x50\x3d\x2a\x66\x4e\x36\x66\x4f\x36\x34\x27\x1a\x57\x42\x2d\x8c\ \x6c\x4b\x9b\x78\x54\x7b\x5f\x41\x30\x24\x18\x1f\x18\x0f\x5a\x45\ \x2f\xaa\x84\x5d\xb6\x8d\x63\x6d\x54\x3a\x23\x1a\x11\x21\x19\x10\ \x29\x1f\x14\x2d\x22\x15\x2d\x22\x15\x65\x4e\x35\xbb\x91\x67\x87\ \x68\x49\x24\x1a\x10\x21\x18\x10\x23\x1a\x11\x2a\x1f\x14\x29\x1f\ \x14\x25\x1c\x12\x76\x5b\x3e\xae\x86\x5e\x5d\x47\x31\x29\x1f\x14\ \x27\x1d\x13\x32\x26\x18\x9f\x7c\x57\x89\x69\x48\x40\x31\x20\x20\ \x19\x10\x23\x1a\x11\x24\x1c\x11\x26\x1c\x12\x24\x1b\x12\x2e\x22\ \x16\x32\x25\x17\x2e\x22\x16\x23\x1a\x11\x22\x1a\x11\x26\x1d\x12\ \x27\x1d\x12\x29\x1f\x13\x27\x1d\x12\x2a\x1f\x14\x2b\x20\x15\x2d\ \x22\x15\x2c\x21\x15\x32\x26\x18\x3b\x2c\x1d\x36\x28\x1a\x35\x28\ \x1a\x39\x2a\x1b\x38\x29\x1b\x3c\x2d\x1d\x3a\x2c\x1d\x2f\x23\x16\ \x2e\x23\x16\x25\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x21\x18\x0f\x22\ \x19\x11\x1c\x15\x0d\x27\x22\x1c\x33\x35\x36\x3c\x3f\x43\x48\x4c\ \x4f\x55\x5a\x5d\x63\x6a\x6e\x6e\x74\x78\x75\x7c\x80\x7e\x84\x8a\ \x84\x89\x8f\x88\x8f\x95\x8b\x91\x96\x85\x8b\x90\x86\x8c\x91\x8a\ \x90\x94\x8e\x94\x99\x8f\x94\x99\x92\x96\x9b\x90\x94\x99\x94\x98\ \x9d\x92\x96\x9b\x94\x98\x9d\x95\x99\x9d\x97\x9a\x9e\x94\x97\x9b\ \x97\x9a\x9d\x95\x98\x9d\x00\x00\x00\xd5\xd0\xce\xce\xc8\xc4\xb3\ \x97\x7b\x1b\x16\x10\x00\x00\x00\x12\x0f\x09\x39\x2b\x1d\x26\x1d\ \x12\x3a\x2c\x1c\x3f\x2f\x1e\x32\x25\x18\x10\x0c\x08\x20\x18\x0f\ \x25\x1b\x12\x24\x1b\x11\x21\x18\x10\x22\x19\x10\x19\x12\x0c\x1c\ \x15\x0e\x1e\x17\x0e\x24\x1b\x11\x26\x1d\x12\x2b\x20\x14\x2c\x21\ \x15\x23\x1a\x10\x2c\x21\x15\x28\x1e\x13\x21\x19\x0f\x1a\x14\x0d\ \x38\x2a\x1b\x23\x1b\x11\x3d\x2e\x1e\x1b\x14\x0d\x20\x18\x10\x43\ \x33\x21\x3a\x2c\x1d\x28\x1f\x14\x33\x27\x19\x37\x29\x1a\x22\x19\ \x11\x27\x1e\x13\x31\x25\x18\x1f\x17\x0f\x2b\x20\x15\x29\x1f\x14\ \x20\x18\x0f\x30\x25\x18\x21\x19\x11\x19\x13\x0c\x2b\x21\x15\x1e\ \x17\x0e\x1e\x16\x0e\x20\x19\x10\x22\x1a\x11\x22\x19\x10\x45\x35\ \x24\x62\x4c\x33\x6e\x54\x39\x7d\x5f\x42\x5b\x45\x2f\x24\x1a\x11\ \x2d\x21\x16\x25\x1b\x12\x18\x12\x0b\x30\x25\x18\x80\x63\x45\xa3\ \x7e\x57\x51\x3e\x2a\x17\x11\x0a\x24\x1c\x12\x8a\x6b\x4b\xa1\x7c\ \x57\x33\x27\x1a\x1c\x15\x0d\x1d\x16\x0e\x13\x0f\x08\x9e\x7a\x56\ \xaf\x89\x60\x4c\x3b\x29\x17\x11\x0b\x1f\x17\x0f\x23\x1a\x11\x22\ \x1a\x10\x2c\x21\x16\x5e\x48\x32\xbe\x93\x69\x90\x70\x4f\x35\x28\ \x1b\x21\x19\x0f\x26\x1c\x12\x29\x1f\x14\x46\x36\x25\x41\x32\x22\ \x75\x5a\x3e\x97\x74\x50\x5b\x46\x2f\x52\x3f\x2a\x53\x40\x2c\x62\ \x4b\x34\x86\x67\x46\x84\x65\x46\x4a\x38\x25\x25\x1c\x12\x28\x1e\ \x13\x17\x13\x0b\x17\x12\x0b\x22\x19\x10\x21\x19\x0f\x27\x1d\x12\ \x22\x19\x10\x26\x1d\x12\x29\x1e\x14\x27\x1d\x13\x29\x1f\x13\x29\ \x1e\x13\x2a\x20\x14\x2b\x20\x15\x32\x26\x18\x33\x26\x19\x31\x25\ \x18\x2d\x23\x16\x2f\x23\x16\x2c\x21\x15\x3a\x2c\x1c\x31\x24\x17\ \x2e\x22\x16\x39\x2b\x1c\x33\x27\x19\x2e\x22\x16\x2c\x21\x15\x29\ \x1f\x13\x25\x1c\x12\x1b\x14\x0d\x1c\x15\x0d\x1c\x16\x0e\x18\x13\ \x0c\x33\x29\x1e\x3f\x3c\x37\x3c\x3f\x41\x46\x4a\x4d\x57\x5d\x60\ \x5f\x64\x68\x6c\x71\x75\x77\x7c\x81\x7f\x86\x8a\x85\x8a\x8f\x88\ \x8f\x93\x8c\x92\x97\x89\x8f\x95\x8b\x92\x96\x8a\x90\x94\x8e\x93\ \x98\x8e\x93\x97\x90\x95\x99\x91\x95\x9a\x91\x95\x9a\x94\x98\x9d\ \x92\x96\x9b\x93\x96\x9a\x94\x97\x9b\x95\x98\x9b\x93\x97\x99\x98\ \x9b\x9f\x00\x00\x00\xd8\xd3\xd1\xcf\xcc\xca\xb9\x98\x78\x21\x1a\ \x11\x00\x00\x00\x10\x0d\x08\x36\x29\x1b\x22\x1a\x10\x3d\x2d\x1d\ \x40\x30\x1f\x31\x24\x17\x10\x0d\x08\x1f\x17\x0f\x20\x18\x10\x2a\ \x20\x14\x27\x1d\x13\x24\x1b\x12\x18\x11\x0b\x17\x11\x0a\x1a\x13\ \x0c\x18\x12\x0c\x1b\x15\x0e\x21\x18\x10\x28\x1e\x13\x27\x1d\x12\ \x1f\x17\x0f\x26\x1c\x12\x23\x1a\x10\x1a\x14\x0d\x37\x2a\x1c\x23\ \x1a\x11\x40\x31\x20\x19\x12\x0b\x1e\x16\x0e\x39\x2c\x1d\x3a\x2b\ \x1d\x1e\x17\x0e\x2d\x22\x15\x3c\x2d\x1d\x22\x1a\x10\x33\x26\x19\ \x43\x32\x21\x29\x1e\x13\x37\x29\x1b\x32\x25\x18\x1a\x13\x0c\x1d\ \x17\x0e\x20\x19\x10\x17\x11\x0b\x22\x1a\x10\x1b\x15\x0d\x1d\x16\ \x0e\x1e\x16\x0e\x1f\x18\x0f\x1e\x16\x0e\x29\x1f\x14\x54\x40\x2b\ \x97\x74\x4f\x89\x6a\x49\x11\x0d\x08\x26\x1c\x12\x26\x1d\x12\x27\ \x1d\x13\x2c\x22\x16\x32\x25\x1a\x6e\x54\x3b\x9e\x79\x54\x57\x43\ \x2d\x30\x25\x19\x3d\x2e\x20\x8f\x6e\x4d\xa6\x81\x5a\x48\x37\x24\ \x23\x1b\x11\x1d\x16\x0e\x18\x12\x0b\x90\x70\x4e\xb0\x89\x60\x56\ \x42\x2e\x13\x0e\x09\x18\x13\x0c\x1d\x16\x0e\x1d\x16\x0e\x22\x1a\ \x11\x4b\x39\x27\xb9\x8f\x65\x8f\x6e\x4d\x3a\x2c\x1e\x21\x18\x10\ \x2a\x1f\x14\x2c\x20\x15\x7e\x61\x43\xac\x85\x5d\xaa\x84\x5d\x92\ \x70\x4e\x70\x55\x39\x97\x75\x51\x97\x75\x51\x8b\x6b\x49\x9f\x7b\ \x55\xa2\x7d\x56\x5e\x48\x31\x34\x27\x19\x30\x25\x17\x21\x19\x10\ \x21\x19\x10\x27\x1d\x13\x27\x1d\x12\x23\x1a\x10\x22\x1a\x11\x29\ \x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x33\x26\x18\x33\x26\x19\x2d\x22\ \x16\x2b\x21\x14\x35\x27\x19\x3d\x2e\x1d\x32\x25\x17\x2b\x21\x15\ \x33\x25\x19\x35\x28\x19\x35\x28\x1a\x2e\x22\x16\x3a\x2b\x1c\x3c\ \x2d\x1d\x3c\x2d\x1d\x36\x29\x1a\x31\x25\x18\x30\x24\x17\x2d\x22\ \x15\x26\x1c\x12\x1d\x16\x0e\x1d\x17\x0e\x21\x19\x10\x24\x1e\x18\ \x2f\x31\x31\x3b\x3e\x40\x47\x4b\x4d\x54\x59\x5c\x5e\x63\x67\x6f\ \x74\x78\x78\x7d\x81\x7d\x82\x87\x82\x88\x8d\x89\x90\x92\x87\x8d\ \x92\x8c\x92\x97\x8e\x95\x99\x8d\x93\x98\x8a\x90\x95\x8c\x91\x95\ \x90\x94\x98\x93\x97\x9b\x93\x98\x9b\x96\x9a\x9e\x93\x96\x9a\x96\ \x99\x9d\x93\x96\x9a\x97\x99\x9d\x95\x98\x9a\x95\x98\x9c\x00\x00\ \x00\xc9\xbd\xb8\xbf\xb8\xb6\xb9\x9a\x7b\x2c\x22\x17\x02\x02\x01\ \x04\x03\x01\x3e\x2f\x1f\x20\x18\x0f\x37\x29\x1a\x44\x33\x21\x3b\ \x2c\x1c\x13\x0e\x09\x14\x0f\x09\x1e\x17\x0f\x2b\x21\x15\x23\x1a\ \x10\x1f\x18\x0f\x17\x11\x0b\x14\x0f\x09\x14\x0f\x09\x13\x0e\x09\ \x17\x11\x0b\x1b\x14\x0d\x23\x1b\x11\x22\x19\x10\x21\x19\x10\x21\ \x19\x10\x1b\x14\x0c\x15\x10\x0a\x2a\x20\x15\x1d\x16\x0e\x26\x1c\ \x12\x20\x17\x0f\x18\x12\x0c\x2a\x1f\x14\x36\x28\x1b\x1b\x14\x0d\ \x2a\x1f\x14\x3b\x2d\x1d\x27\x1d\x12\x34\x27\x1a\x40\x31\x20\x2e\ \x22\x16\x39\x2b\x1c\x37\x2a\x1b\x21\x19\x10\x19\x13\x0c\x1f\x18\ \x0f\x19\x12\x0c\x22\x1a\x11\x18\x12\x0c\x1b\x13\x0d\x1d\x16\x0e\ \x1d\x16\x0e\x24\x1b\x11\x22\x1a\x10\x3f\x30\x20\x95\x73\x4f\x94\ \x73\x50\x1a\x13\x0c\x24\x1b\x11\x22\x1a\x10\x24\x1b\x12\x5a\x45\ \x2f\x87\x69\x48\x75\x5a\x3d\x8c\x6c\x4a\x8d\x6d\x4c\x8c\x6c\x4c\ \x8f\x6f\x4d\xa3\x7e\x58\xb3\x8a\x61\x58\x43\x2e\x27\x1d\x13\x20\ \x18\x0f\x1f\x17\x0e\x7e\x61\x43\xad\x87\x5f\x68\x50\x37\x1a\x13\ \x0c\x1a\x14\x0c\x23\x1b\x10\x26\x1d\x13\x20\x18\x0f\x3f\x30\x20\ \xac\x85\x5d\x8b\x6b\x4b\x3b\x2d\x1f\x21\x19\x10\x2c\x21\x16\x29\ \x1f\x14\x4e\x3b\x28\x61\x4a\x32\x89\x69\x49\x9e\x79\x54\x79\x5d\ \x40\x3e\x2e\x1e\x2e\x22\x15\x23\x1a\x10\x7f\x61\x43\xa7\x82\x5b\ \x6b\x52\x37\x36\x28\x19\x2f\x24\x17\x2e\x22\x15\x27\x1e\x13\x2c\ \x21\x15\x33\x26\x18\x2b\x21\x14\x29\x1f\x14\x33\x26\x19\x33\x27\ \x19\x31\x25\x17\x3b\x2c\x1c\x3e\x2f\x1e\x3a\x2b\x1c\x39\x2b\x1b\ \x35\x28\x1a\x34\x27\x19\x33\x26\x18\x31\x25\x17\x36\x29\x1a\x3d\ \x2d\x1d\x3a\x2b\x1c\x38\x29\x1b\x37\x29\x1b\x31\x24\x18\x35\x28\ \x1a\x31\x25\x18\x2d\x21\x16\x2f\x23\x17\x30\x23\x17\x2f\x23\x16\ \x22\x19\x11\x1c\x15\x0d\x16\x11\x0b\x1d\x19\x13\x32\x31\x2f\x3a\ \x3c\x3e\x47\x4b\x4d\x55\x58\x5c\x5f\x64\x67\x6f\x74\x78\x74\x78\ \x7c\x7d\x82\x87\x87\x8d\x91\x86\x8b\x90\x85\x8b\x90\x8c\x92\x96\ \x8c\x92\x96\x8d\x93\x98\x8f\x95\x9a\x90\x94\x99\x90\x94\x98\x92\ \x96\x9a\x94\x99\x9c\x97\x9a\x9e\x94\x97\x9b\x97\x9a\x9e\x92\x95\ \x99\x9c\x9e\xa2\x99\x9c\x9f\x97\x9a\x9e\x00\x00\x00\xc2\xb4\xae\ \xb2\xa9\xa4\xb4\x9c\x85\x34\x2a\x1e\x03\x02\x00\x05\x04\x02\x2c\ \x22\x15\x1f\x17\x0f\x41\x31\x20\x56\x40\x29\x4c\x39\x25\x0d\x0a\ \x06\x10\x0c\x07\x21\x18\x0f\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\ \x17\x11\x0b\x16\x11\x0a\x11\x0d\x08\x11\x0c\x08\x17\x11\x0b\x19\ \x13\x0c\x20\x18\x10\x26\x1c\x12\x25\x1c\x12\x28\x1e\x14\x22\x19\ \x10\x1c\x15\x0d\x22\x1a\x11\x19\x14\x0c\x26\x1c\x12\x23\x1b\x11\ \x1e\x17\x0f\x25\x1c\x12\x3a\x2c\x1d\x20\x18\x0f\x27\x1d\x13\x36\ \x29\x1a\x26\x1d\x12\x33\x26\x19\x44\x34\x23\x2e\x22\x16\x36\x29\ \x1a\x39\x2b\x1c\x2a\x20\x14\x1c\x15\x0e\x18\x13\x0b\x16\x11\x0b\ \x27\x1e\x13\x14\x0f\x09\x16\x10\x0a\x18\x13\x0c\x16\x10\x0b\x1e\ \x17\x0e\x21\x19\x10\x45\x34\x23\xa5\x7f\x59\x99\x76\x52\x27\x1d\ \x12\x1f\x17\x0f\x1f\x18\x0f\x1b\x15\x0d\x34\x28\x1a\x51\x3e\x2b\ \x63\x4c\x34\x94\x72\x4f\x69\x50\x38\x39\x2b\x1d\x28\x1f\x13\x84\ \x66\x47\xb4\x8c\x62\x61\x4b\x34\x29\x1e\x13\x26\x1c\x12\x24\x1b\ \x11\x75\x5a\x3f\xae\x86\x5e\x82\x65\x46\x22\x1a\x10\x29\x1f\x13\ \x26\x1c\x12\x25\x1b\x12\x20\x17\x0f\x34\x28\x1b\xad\x86\x5e\x9a\ \x78\x54\x45\x35\x24\x1a\x14\x0c\x20\x18\x0f\x21\x19\x10\x26\x1d\ \x12\x29\x1e\x12\x6a\x51\x37\x8c\x6c\x4a\x6d\x54\x39\x34\x26\x19\ \x28\x1e\x12\x1f\x17\x0f\x66\x4e\x35\xa5\x80\x59\x6f\x55\x39\x3f\ \x2f\x1e\x36\x29\x1a\x34\x27\x18\x2e\x23\x16\x33\x27\x18\x37\x2a\ \x1a\x36\x28\x1a\x32\x25\x18\x3f\x2f\x1f\x42\x31\x20\x3a\x2b\x1c\ \x43\x32\x20\x43\x32\x21\x3a\x2b\x1c\x38\x2a\x1a\x38\x2b\x1b\x32\ \x25\x18\x2f\x24\x17\x2c\x21\x15\x29\x1f\x14\x31\x25\x17\x36\x29\ \x1a\x32\x25\x18\x2d\x22\x16\x2e\x22\x16\x35\x27\x1a\x34\x27\x1a\ \x2b\x1f\x15\x2f\x24\x17\x33\x27\x19\x31\x25\x17\x2c\x21\x15\x22\ \x1a\x10\x1c\x15\x0d\x26\x1f\x17\x31\x31\x2f\x3a\x3d\x3f\x46\x4b\ \x4d\x53\x57\x5a\x62\x67\x6a\x6e\x71\x76\x75\x78\x7d\x80\x83\x88\ \x89\x8d\x92\x85\x8b\x90\x87\x8d\x92\x8d\x93\x98\x8a\x8e\x93\x90\ \x94\x99\x90\x95\x9a\x90\x94\x99\x90\x95\x99\x90\x94\x98\x95\x99\ \x9d\x96\x99\x9d\x94\x97\x9b\x93\x96\x9a\x92\x95\x99\x9a\x9d\xa1\ \x97\x9a\x9e\x9b\x9e\xa3\x00\x00\x00\xd9\xd0\xcd\xcc\xc4\xc0\xc0\ \xad\x9b\x42\x36\x28\x05\x04\x01\x03\x02\x01\x1c\x15\x0d\x1f\x17\ \x0f\x3b\x2c\x1d\x5c\x44\x2d\x46\x34\x22\x19\x13\x0b\x11\x0d\x08\ \x1c\x15\x0d\x25\x1c\x11\x2b\x20\x14\x25\x1c\x12\x1e\x17\x0f\x1e\ \x16\x0e\x15\x0f\x0a\x0f\x0b\x07\x14\x0f\x0a\x13\x0e\x09\x19\x13\ \x0c\x1c\x15\x0e\x1e\x16\x0e\x2a\x1f\x14\x24\x1b\x12\x17\x11\x0b\ \x1a\x14\x0d\x1a\x14\x0c\x26\x1c\x12\x26\x1d\x13\x1f\x17\x0f\x21\ \x19\x10\x40\x31\x20\x1e\x17\x0e\x28\x1e\x13\x3b\x2d\x1d\x22\x1a\ \x10\x2b\x21\x16\x3a\x2c\x1d\x31\x24\x17\x33\x26\x19\x3a\x2b\x1d\ \x26\x1c\x12\x17\x11\x0b\x14\x0f\x0a\x12\x0e\x09\x26\x1c\x12\x15\ \x10\x0a\x19\x13\x0c\x15\x10\x0a\x17\x11\x0b\x1b\x14\x0d\x21\x18\ \x0f\x2f\x24\x18\x92\x70\x4e\x8f\x6e\x4c\x2c\x21\x15\x1b\x14\x0d\ \x26\x1d\x12\x26\x1c\x12\x1b\x14\x0c\x0a\x07\x04\x47\x37\x25\x99\ \x76\x52\x69\x51\x38\x1f\x18\x10\x09\x07\x03\x6d\x54\x3a\xab\x84\ \x5c\x6b\x53\x39\x28\x1e\x13\x22\x19\x10\x22\x19\x10\x68\x50\x37\ \xaa\x84\x5c\x93\x71\x4f\x23\x1a\x10\x2e\x23\x16\x2c\x21\x15\x22\ \x19\x10\x16\x11\x0a\x2e\x23\x18\xa1\x7c\x57\x9c\x78\x54\x4c\x3b\ \x28\x17\x11\x0a\x23\x1b\x11\x32\x26\x19\x29\x1f\x14\x26\x1c\x12\ \x5f\x48\x30\x7d\x5f\x41\x61\x4a\x32\x32\x25\x18\x2a\x1f\x14\x1a\ \x14\x0c\x66\x4f\x36\xa5\x80\x59\x84\x65\x46\x3c\x2d\x1e\x3a\x2c\ \x1c\x37\x29\x1a\x2e\x22\x16\x2a\x20\x14\x34\x28\x19\x39\x2b\x1c\ \x3a\x2b\x1c\x3b\x2c\x1c\x31\x24\x17\x29\x1f\x14\x2c\x21\x15\x2d\ \x22\x16\x2f\x23\x16\x33\x26\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\ \x17\x2a\x1f\x14\x29\x1e\x14\x2e\x23\x17\x31\x25\x18\x29\x1f\x14\ \x2b\x20\x14\x2d\x22\x15\x35\x28\x19\x37\x29\x1b\x2d\x21\x15\x33\ \x26\x18\x33\x26\x18\x2f\x24\x17\x2a\x1f\x14\x27\x1e\x13\x24\x1b\ \x11\x24\x1c\x14\x2e\x2d\x2b\x39\x3c\x3e\x46\x4a\x4c\x54\x57\x5b\ \x63\x66\x69\x6d\x71\x74\x78\x7b\x80\x7f\x83\x87\x85\x89\x8d\x8a\ \x8e\x92\x88\x8d\x92\x8a\x8f\x94\x89\x8e\x93\x8e\x94\x98\x8f\x94\ \x99\x90\x95\x99\x93\x98\x9b\x90\x95\x98\x93\x96\x9a\x94\x97\x9b\ \x96\x99\x9e\x90\x93\x97\x91\x93\x98\x95\x98\x9c\x96\x99\x9d\x9b\ \x9e\xa3\x00\x00\x00\xdc\xd4\xd2\xd7\xd0\xcd\xc4\xae\x98\x56\x4b\ \x3e\x06\x06\x04\x01\x01\x01\x19\x12\x0c\x28\x1f\x14\x3b\x2c\x1c\ \x64\x4b\x31\x4b\x38\x25\x28\x1e\x13\x13\x0e\x09\x1b\x14\x0d\x23\ \x1b\x11\x2b\x20\x14\x26\x1d\x12\x27\x1d\x13\x29\x1f\x14\x1f\x17\ \x0f\x16\x10\x0b\x17\x11\x0b\x13\x0e\x09\x18\x12\x0c\x1d\x16\x0e\ \x1f\x17\x0e\x29\x1e\x13\x26\x1c\x12\x19\x13\x0c\x1d\x16\x0e\x1e\ \x16\x0e\x24\x1b\x11\x27\x1e\x13\x1e\x16\x0e\x1a\x15\x0d\x2c\x21\ \x15\x1a\x13\x0c\x20\x18\x10\x39\x2b\x1c\x1d\x16\x0e\x28\x1e\x13\ \x38\x2a\x1c\x2f\x23\x17\x27\x1d\x12\x35\x27\x1a\x2a\x1f\x14\x1b\ \x15\x0d\x21\x19\x10\x18\x12\x0b\x38\x2a\x1d\x1c\x15\x0e\x16\x12\ \x0a\x13\x0e\x09\x18\x12\x0b\x1d\x16\x0e\x21\x19\x10\x2a\x20\x15\ \x9b\x77\x52\x8d\x6d\x4c\x38\x2b\x1c\x1c\x15\x0d\x26\x1d\x12\x23\ \x1a\x11\x20\x18\x0f\x19\x12\x0c\x2b\x21\x16\x7b\x5f\x41\x95\x73\ \x50\x4d\x3b\x29\x11\x0d\x07\x5a\x45\x2f\xa3\x7e\x57\x68\x50\x37\ \x26\x1c\x13\x22\x19\x10\x21\x19\x10\x4f\x3c\x29\xa5\x80\x59\x93\ \x72\x4f\x25\x1c\x11\x31\x24\x17\x40\x30\x20\x43\x34\x23\x35\x29\ \x1b\x49\x39\x27\xa0\x7b\x57\xa3\x7e\x58\x76\x5b\x3f\x5c\x48\x31\ \x7b\x60\x43\x67\x4f\x37\x30\x24\x17\x32\x25\x18\x69\x50\x36\x84\ \x65\x45\x7e\x60\x42\x4f\x3c\x29\x38\x2a\x1b\x30\x24\x18\x7c\x5f\ \x41\xa1\x7d\x58\x89\x69\x49\x51\x3e\x29\x38\x2a\x1b\x32\x26\x18\ \x29\x1f\x14\x2e\x22\x16\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1d\x3a\ \x2c\x1c\x30\x24\x17\x29\x1e\x14\x31\x24\x17\x32\x26\x18\x2e\x22\ \x16\x30\x24\x17\x2e\x22\x16\x2b\x20\x15\x30\x24\x17\x2c\x21\x15\ \x28\x1e\x13\x28\x1e\x13\x35\x28\x1a\x23\x1a\x11\x26\x1d\x13\x2d\ \x21\x16\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x13\x31\x25\x17\x31\x25\ \x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x14\x29\x1e\x14\x1f\x17\x10\ \x20\x1f\x20\x39\x3b\x3d\x46\x48\x4a\x53\x56\x58\x5f\x63\x65\x6c\ \x70\x72\x77\x7b\x7f\x7e\x83\x86\x82\x87\x8a\x8c\x91\x95\x88\x8c\ \x91\x87\x8b\x90\x8c\x91\x95\x8d\x92\x97\x8e\x93\x96\x92\x97\x9a\ \x92\x96\x9a\x92\x97\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\xa0\x8e\ \x91\x96\x94\x96\x9b\x8f\x92\x96\x94\x97\x9b\x9a\x9d\xa1\x00\x00\ \x00\xb8\xb0\xab\xbc\xb4\xaf\xbe\xa9\x94\x64\x55\x47\x09\x08\x06\ \x01\x01\x00\x28\x1e\x14\x2f\x24\x17\x3d\x2e\x1d\x60\x48\x2f\x49\ \x36\x23\x30\x24\x17\x15\x10\x0a\x18\x12\x0c\x26\x1d\x12\x27\x1e\ \x13\x23\x1a\x11\x22\x19\x10\x29\x1e\x13\x25\x1b\x12\x22\x19\x10\ \x21\x19\x10\x18\x12\x0b\x18\x12\x0c\x22\x19\x10\x1f\x17\x0e\x25\ \x1b\x11\x29\x1e\x13\x1d\x15\x0e\x1e\x17\x0e\x21\x19\x0f\x1a\x13\ \x0c\x22\x19\x10\x1b\x15\x0d\x18\x12\x0c\x2e\x22\x17\x1b\x15\x0d\ \x1d\x15\x0e\x2a\x1f\x14\x19\x12\x0b\x22\x1a\x10\x2b\x21\x15\x26\ \x1c\x13\x22\x1a\x10\x2e\x23\x16\x29\x1f\x14\x25\x1c\x12\x29\x1e\ \x14\x1c\x15\x0d\x3d\x2e\x20\x1b\x14\x0d\x15\x10\x0a\x14\x0e\x09\ \x16\x11\x0a\x1e\x16\x0e\x17\x12\x0b\x21\x19\x10\x95\x72\x4e\x99\ \x76\x52\x43\x34\x22\x20\x17\x0f\x1e\x16\x0e\x20\x18\x0f\x2a\x20\ \x15\x1e\x16\x0e\x1d\x15\x0e\x4c\x3a\x28\x9d\x79\x54\x9d\x7a\x55\ \x74\x5a\x3e\x83\x65\x46\xa4\x7f\x58\x71\x57\x3c\x25\x1d\x13\x25\ \x1c\x12\x1b\x14\x0d\x37\x2a\x1c\x9e\x79\x54\x9b\x77\x53\x37\x29\ \x1b\x2f\x24\x17\x4f\x3c\x28\x97\x75\x52\x8e\x6e\x4d\x94\x73\x50\ \xa5\x80\x5a\x9c\x78\x54\x98\x76\x52\x9a\x78\x54\x9d\x7a\x56\x5f\ \x49\x33\x25\x1b\x11\x37\x29\x1b\x5f\x49\x31\x70\x55\x3a\x68\x4f\ \x36\x51\x3d\x29\x3a\x2b\x1c\x38\x2a\x1c\x54\x40\x2b\x5a\x44\x2e\ \x58\x43\x2d\x4e\x3b\x27\x36\x28\x1a\x2f\x23\x17\x20\x18\x0f\x29\ \x1f\x14\x30\x24\x17\x2d\x21\x15\x2f\x23\x16\x38\x2a\x1b\x37\x2a\ \x1b\x2e\x23\x17\x34\x27\x19\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x14\ \x2a\x1f\x14\x2f\x23\x17\x38\x2b\x1b\x34\x27\x19\x30\x24\x17\x27\ \x1e\x13\x35\x28\x1a\x2c\x21\x15\x2d\x22\x16\x36\x28\x1a\x32\x26\ \x18\x2b\x20\x15\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2a\x1f\x14\ \x29\x1f\x14\x2b\x21\x15\x31\x25\x18\x2b\x20\x15\x1d\x1c\x1a\x2d\ \x2f\x31\x46\x48\x4a\x52\x55\x57\x5f\x63\x65\x6c\x70\x73\x78\x7c\ \x7f\x7b\x80\x82\x81\x86\x89\x8a\x8e\x93\x89\x8c\x91\x8c\x90\x94\ \x8f\x93\x99\x8c\x91\x95\x8c\x91\x94\x91\x96\x99\x91\x96\x99\x94\ \x98\x9b\x8c\x90\x94\x92\x95\x99\x95\x97\x9b\x93\x96\x9a\x94\x97\ \x9b\x8e\x91\x95\x93\x96\x9a\x96\x99\x9d\x00\x00\x00\xce\xc8\xc4\ \xc3\xbc\xb7\xb5\xab\xa3\x68\x5a\x4e\x0a\x09\x07\x01\x00\x00\x28\ \x1e\x13\x2d\x22\x15\x3a\x2b\x1b\x53\x3f\x29\x5d\x45\x2d\x37\x29\ \x1b\x15\x0f\x0a\x19\x13\x0c\x21\x18\x10\x24\x1b\x12\x26\x1d\x13\ \x27\x1d\x13\x28\x1e\x13\x27\x1c\x12\x2b\x20\x15\x2e\x22\x16\x24\ \x1b\x11\x18\x12\x0b\x19\x13\x0c\x17\x11\x0b\x1c\x16\x0d\x20\x18\ \x0f\x1c\x15\x0e\x1d\x16\x0e\x27\x1d\x13\x19\x13\x0c\x31\x25\x18\ \x1f\x18\x0f\x1e\x16\x0e\x40\x30\x1f\x1f\x17\x0f\x1f\x17\x0f\x26\ \x1d\x12\x1d\x16\x0e\x1c\x15\x0e\x1d\x16\x0e\x23\x1a\x10\x1f\x17\ \x0f\x2f\x24\x17\x2a\x20\x15\x22\x1a\x10\x27\x1d\x12\x1d\x16\x0d\ \x3b\x2d\x1e\x1b\x15\x0d\x16\x11\x0a\x16\x10\x0a\x1a\x14\x0c\x19\ \x13\x0c\x37\x2a\x1c\x21\x19\x11\x81\x63\x44\x97\x74\x51\x60\x49\ \x32\x42\x32\x22\x4e\x3b\x28\x67\x4f\x36\x5a\x45\x2e\x1d\x16\x0d\ \x1b\x15\x0d\x1f\x18\x0f\x46\x36\x24\x84\x66\x47\xac\x86\x5e\xac\ \x85\x5d\xaf\x88\x5e\x98\x75\x52\x4a\x38\x26\x2b\x21\x15\x2c\x22\ \x16\x5b\x45\x2f\x85\x66\x46\x7c\x5f\x41\x51\x3e\x2a\x2f\x23\x17\ \x3b\x2c\x1d\x6c\x53\x39\x6b\x52\x39\x61\x4b\x34\x51\x3e\x2b\x48\ \x37\x25\x47\x36\x25\x44\x34\x23\x40\x31\x21\x34\x28\x1a\x29\x1e\ \x14\x2a\x20\x14\x34\x27\x19\x3a\x2c\x1c\x2e\x22\x16\x2f\x23\x16\ \x35\x27\x19\x2a\x20\x14\x1e\x17\x0e\x27\x1d\x12\x33\x26\x19\x39\ \x2a\x1c\x35\x28\x1a\x2e\x23\x17\x23\x1a\x11\x26\x1d\x12\x24\x1b\ \x11\x28\x1d\x13\x29\x1f\x13\x2e\x23\x16\x2e\x23\x16\x2e\x23\x16\ \x2a\x1f\x14\x23\x1b\x11\x29\x1e\x14\x28\x1e\x13\x2b\x20\x15\x33\ \x26\x18\x3f\x30\x1e\x3d\x2e\x1d\x34\x27\x19\x34\x27\x19\x32\x25\ \x18\x33\x26\x18\x35\x28\x1a\x31\x25\x17\x32\x26\x18\x30\x23\x17\ \x2f\x23\x16\x34\x27\x19\x30\x24\x17\x2b\x21\x15\x27\x1d\x13\x29\ \x1e\x13\x2d\x22\x16\x34\x28\x1a\x33\x2e\x29\x21\x23\x24\x38\x3a\ \x3c\x53\x56\x58\x5f\x61\x65\x6e\x71\x74\x77\x7b\x7d\x79\x7c\x80\ \x84\x89\x8d\x85\x8a\x8d\x8c\x91\x94\x8b\x8e\x93\x90\x94\x98\x90\ \x94\x98\x8f\x94\x97\x8f\x94\x97\x90\x96\x99\x93\x98\x9c\x93\x97\ \x9c\x95\x98\x9d\x98\x9a\x9e\x94\x97\x9b\x94\x97\x9b\x94\x97\x9b\ \x95\x98\x9b\x95\x98\x9c\x00\x00\x00\xdc\xd7\xd3\xd4\xcf\xcc\xcc\ \xc5\xbe\x7e\x71\x63\x0d\x0a\x08\x02\x01\x00\x21\x18\x0f\x29\x1f\ \x13\x37\x29\x1a\x60\x48\x2f\x68\x4d\x33\x39\x2b\x1b\x0f\x0b\x07\ \x16\x10\x0a\x1b\x14\x0d\x20\x19\x10\x26\x1d\x13\x26\x1d\x12\x26\ \x1c\x12\x29\x1e\x13\x2d\x22\x16\x2f\x23\x17\x2a\x1f\x14\x1a\x14\ \x0d\x19\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x20\x18\x0f\x1b\x15\x0d\ \x1f\x18\x0f\x26\x1d\x13\x1d\x16\x0e\x32\x26\x18\x23\x1a\x11\x21\ \x19\x0f\x37\x2a\x1b\x21\x19\x10\x25\x1c\x12\x32\x26\x18\x27\x1d\ \x13\x26\x1d\x12\x27\x1d\x13\x24\x1b\x12\x1c\x16\x0e\x2f\x23\x17\ \x2b\x20\x15\x1f\x17\x0f\x2d\x21\x16\x20\x18\x0f\x2f\x23\x17\x24\ \x1c\x11\x1e\x17\x0e\x1a\x14\x0c\x18\x12\x0b\x16\x11\x0a\x71\x57\ \x3d\x7f\x62\x43\x8c\x6c\x4b\x95\x73\x4f\x9b\x78\x54\x95\x73\x50\ \x94\x72\x4f\x9d\x7a\x54\x6f\x55\x3b\x20\x18\x0f\x22\x19\x10\x1c\ \x15\x0d\x19\x12\x0b\x2c\x22\x17\x47\x36\x25\x55\x41\x2c\x5a\x45\ \x2f\x59\x44\x2f\x45\x34\x22\x34\x27\x19\x34\x28\x19\x46\x35\x23\ \x3b\x2d\x1e\x38\x2b\x1c\x3f\x2f\x1f\x2c\x20\x15\x2d\x21\x15\x2c\ \x21\x15\x27\x1d\x12\x20\x19\x0f\x17\x11\x0a\x16\x11\x0b\x1c\x15\ \x0d\x1e\x17\x0e\x21\x18\x0f\x27\x1e\x13\x2d\x22\x16\x28\x1e\x13\ \x26\x1d\x12\x33\x26\x19\x34\x27\x19\x34\x27\x19\x37\x29\x1a\x36\ \x28\x19\x2c\x21\x15\x2f\x23\x16\x32\x26\x18\x33\x26\x18\x35\x28\ \x1a\x34\x27\x19\x26\x1c\x12\x2b\x1f\x14\x2d\x22\x16\x32\x25\x18\ \x31\x25\x17\x34\x27\x19\x2b\x21\x15\x2c\x21\x15\x2c\x21\x15\x2a\ \x1f\x14\x2b\x20\x15\x2d\x21\x15\x30\x25\x17\x36\x28\x1a\x3a\x2c\ \x1c\x3d\x2e\x1d\x3c\x2d\x1d\x40\x30\x1f\x38\x2a\x1c\x34\x28\x19\ \x34\x27\x19\x33\x26\x18\x38\x2a\x1b\x37\x29\x1a\x35\x27\x19\x33\ \x26\x19\x31\x25\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x33\x26\ \x19\x32\x26\x18\x33\x2e\x27\x37\x39\x3a\x26\x28\x2a\x41\x43\x46\ \x5e\x62\x64\x6c\x70\x73\x73\x77\x7a\x7a\x7f\x82\x88\x8d\x90\x85\ \x8a\x8c\x8a\x8f\x92\x8b\x90\x93\x8b\x90\x93\x8f\x94\x97\x90\x95\ \x98\x91\x96\x99\x91\x96\x99\x90\x96\x99\x95\x99\x9e\x90\x93\x98\ \x99\x9c\xa0\x99\x9c\xa0\x96\x99\x9d\x95\x99\x9b\x95\x98\x9a\x93\ \x96\x99\x00\x00\x00\xdb\xd6\xd4\xd6\xd2\xd0\xc5\xb1\x9d\x86\x6e\ \x55\x0f\x0c\x08\x02\x02\x01\x26\x1c\x12\x29\x1f\x14\x33\x26\x19\ \x56\x3f\x2a\x5b\x44\x2c\x35\x28\x1a\x0d\x0a\x06\x0b\x09\x05\x15\ \x10\x0a\x1f\x17\x0e\x20\x18\x0f\x1c\x15\x0d\x21\x18\x10\x26\x1c\ \x12\x2d\x22\x15\x32\x26\x18\x2a\x1f\x14\x24\x1b\x11\x22\x1a\x10\ \x29\x1f\x14\x25\x1c\x12\x27\x1e\x13\x1d\x16\x0e\x1e\x17\x0e\x1b\ \x15\x0d\x1c\x15\x0d\x26\x1c\x11\x23\x1a\x11\x26\x1c\x12\x3a\x2c\ \x1d\x28\x1e\x13\x2a\x1f\x14\x31\x24\x17\x2c\x22\x15\x27\x1e\x13\ \x30\x24\x17\x2c\x21\x16\x1c\x15\x0d\x2b\x21\x16\x22\x1a\x11\x19\ \x13\x0c\x24\x1b\x12\x1b\x14\x0d\x2e\x23\x17\x24\x1b\x11\x20\x18\ \x10\x20\x18\x0f\x1a\x14\x0d\x1d\x16\x0e\x4e\x3b\x28\x6e\x55\x3a\ \x92\x71\x4d\x90\x6f\x4d\x7f\x62\x44\x47\x37\x25\x50\x3d\x29\x49\ \x37\x26\x31\x26\x19\x1f\x17\x0f\x28\x1e\x13\x25\x1c\x12\x1d\x16\ \x0e\x1a\x13\x0c\x1a\x14\x0d\x1d\x15\x0e\x26\x1c\x12\x28\x1d\x13\ \x2e\x22\x16\x32\x25\x18\x2e\x22\x16\x29\x1f\x14\x22\x1a\x10\x28\ \x1e\x13\x2d\x22\x16\x2b\x20\x14\x2c\x20\x15\x29\x1e\x13\x29\x1f\ \x13\x27\x1e\x13\x1c\x15\x0d\x21\x19\x10\x25\x1b\x12\x1e\x17\x0e\ \x1b\x15\x0d\x25\x1c\x12\x2c\x21\x15\x2e\x23\x16\x33\x26\x18\x38\ \x2a\x1b\x36\x28\x1a\x36\x28\x19\x33\x26\x18\x32\x25\x17\x2d\x22\ \x16\x31\x24\x18\x32\x26\x18\x2b\x20\x14\x2e\x22\x16\x2c\x21\x15\ \x2a\x1f\x14\x2e\x22\x16\x32\x26\x18\x3a\x2c\x1c\x3e\x2e\x1e\x39\ \x2b\x1b\x2f\x23\x16\x33\x26\x18\x30\x23\x17\x31\x24\x17\x36\x29\ \x1a\x35\x27\x1a\x33\x26\x19\x34\x27\x18\x35\x28\x1a\x37\x29\x1b\ \x3a\x2c\x1c\x3e\x2f\x1e\x3c\x2d\x1d\x3a\x2b\x1c\x37\x29\x1a\x33\ \x27\x18\x3e\x2e\x1e\x3e\x2f\x1e\x37\x2a\x1a\x37\x29\x1a\x30\x24\ \x17\x2d\x22\x16\x2a\x1f\x14\x2e\x23\x16\x30\x24\x17\x2f\x24\x17\ \x31\x2d\x25\x36\x38\x39\x45\x47\x49\x2a\x2c\x2e\x4b\x4d\x50\x6b\ \x6e\x70\x75\x79\x7c\x79\x7e\x80\x82\x86\x8a\x86\x8a\x8e\x87\x8c\ \x8f\x8e\x93\x96\x8b\x90\x93\x8a\x8f\x92\x93\x98\x9b\x92\x97\x9a\ \x92\x97\x9b\x90\x94\x98\x91\x95\x9a\x92\x96\x9a\x9a\x9d\xa1\x99\ \x9c\xa0\x98\x9b\x9f\x95\x98\x99\x92\x96\x97\x97\x99\x9d\x00\x00\ \x00\xb5\xae\xa8\xb6\xaf\xa9\xbc\xb1\xa5\x96\x85\x74\x11\x0f\x0b\ \x02\x02\x01\x29\x1f\x14\x32\x26\x19\x2e\x22\x16\x49\x37\x23\x5d\ \x45\x2d\x3e\x2f\x1e\x0f\x0b\x07\x14\x0f\x09\x26\x1d\x12\x21\x18\ \x0f\x17\x12\x0b\x1a\x13\x0d\x21\x19\x10\x24\x1a\x11\x29\x1f\x13\ \x32\x25\x18\x31\x24\x17\x28\x1e\x13\x20\x18\x10\x26\x1c\x12\x26\ \x1c\x13\x2c\x21\x16\x26\x1d\x13\x26\x1c\x12\x1b\x14\x0d\x17\x10\ \x0b\x1e\x17\x0e\x1c\x14\x0e\x24\x1b\x11\x3b\x2d\x1c\x2a\x20\x14\ \x2a\x1f\x14\x2d\x21\x15\x28\x1e\x13\x23\x1a\x11\x31\x25\x17\x31\ \x25\x18\x1a\x13\x0c\x36\x29\x1b\x2e\x23\x17\x16\x11\x0a\x2a\x20\ \x15\x21\x19\x10\x34\x28\x1a\x2c\x21\x15\x22\x1a\x10\x2b\x20\x15\ \x2b\x20\x15\x20\x18\x0f\x2a\x1f\x15\x2a\x20\x15\x88\x69\x48\x89\ \x6a\x49\x5f\x49\x31\x20\x18\x0e\x24\x1b\x11\x1e\x16\x0e\x19\x13\ \x0c\x1c\x15\x0d\x20\x18\x0f\x26\x1c\x12\x23\x1a\x11\x1e\x17\x0e\ \x1e\x17\x0e\x1e\x17\x0f\x28\x1e\x13\x28\x1e\x13\x30\x24\x17\x2f\ \x23\x17\x2c\x21\x15\x24\x1b\x11\x20\x19\x0f\x26\x1d\x12\x26\x1c\ \x12\x27\x1d\x13\x22\x1a\x10\x2b\x21\x15\x2a\x1f\x14\x28\x1e\x13\ \x24\x1b\x11\x21\x19\x10\x27\x1e\x13\x22\x19\x10\x1a\x13\x0c\x1d\ \x15\x0d\x1f\x17\x0f\x20\x18\x10\x31\x24\x17\x31\x25\x18\x33\x27\ \x19\x2f\x23\x16\x30\x24\x17\x2a\x20\x14\x2c\x22\x16\x32\x25\x18\ \x39\x2a\x1b\x35\x28\x1a\x31\x24\x18\x28\x1e\x13\x2b\x20\x15\x30\ \x24\x17\x2b\x21\x15\x32\x25\x18\x37\x2a\x1b\x38\x2a\x1b\x35\x28\ \x1a\x35\x28\x1a\x30\x24\x17\x31\x25\x17\x36\x29\x19\x32\x25\x18\ \x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2e\x22\x16\x31\x25\x18\x3a\ \x2c\x1c\x34\x27\x19\x37\x29\x1a\x3c\x2c\x1c\x34\x27\x19\x3c\x2d\ \x1d\x3c\x2d\x1d\x35\x28\x19\x3a\x2b\x1c\x32\x25\x18\x2d\x22\x16\ \x2a\x1f\x14\x28\x1f\x13\x2a\x20\x14\x30\x24\x18\x31\x2a\x23\x3a\ \x3b\x3b\x41\x43\x45\x50\x53\x55\x30\x32\x36\x53\x56\x59\x74\x78\ \x7a\x7e\x82\x85\x84\x88\x8b\x89\x8e\x91\x88\x8c\x8f\x8c\x91\x94\ \x89\x8e\x91\x8b\x90\x92\x8d\x92\x94\x90\x95\x98\x8f\x94\x98\x91\ \x96\x9a\x93\x97\x9c\x95\x98\x9c\x97\x9a\x9e\x96\x99\x9d\x98\x9b\ \x9e\x97\x9a\x9c\x94\x98\x99\x95\x99\x9b\x00\x00\x00\xd7\xd1\xce\ \xc7\xc1\xbe\xb3\xad\xa9\x96\x86\x77\x10\x0f\x0c\x10\x0c\x08\x3f\ \x30\x20\x46\x35\x23\x31\x25\x18\x4d\x3a\x25\x5b\x44\x2c\x4e\x3a\ \x25\x16\x10\x0a\x2b\x20\x14\x2f\x23\x16\x25\x1c\x11\x20\x18\x0f\ \x14\x0f\x0a\x19\x13\x0c\x22\x19\x11\x25\x1c\x12\x2c\x21\x15\x2e\ \x22\x16\x2c\x20\x15\x1e\x16\x0e\x23\x1a\x11\x25\x1c\x12\x2b\x21\ \x15\x2d\x22\x16\x27\x1d\x12\x1e\x17\x0e\x1a\x14\x0d\x24\x1b\x12\ \x18\x12\x0b\x20\x18\x10\x34\x27\x19\x2a\x20\x14\x2a\x20\x14\x34\ \x27\x19\x2d\x21\x16\x28\x1e\x13\x37\x2a\x1b\x33\x27\x19\x19\x13\ \x0c\x3a\x2c\x1d\x30\x24\x18\x1d\x15\x0e\x2d\x22\x16\x21\x19\x10\ \x2e\x23\x17\x2f\x24\x17\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x29\ \x1e\x14\x24\x1b\x12\x28\x1f\x13\x6b\x51\x38\x79\x5c\x3f\x64\x4d\ \x35\x19\x12\x0c\x24\x1a\x11\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\ \x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x21\x19\x10\x22\x19\x10\x22\ \x1a\x11\x2b\x20\x15\x2b\x20\x14\x2e\x23\x16\x2c\x20\x15\x25\x1c\ \x12\x26\x1d\x12\x22\x1a\x10\x24\x1a\x11\x1f\x18\x0f\x24\x1c\x12\ \x20\x18\x0f\x29\x1f\x13\x29\x1e\x13\x2b\x20\x14\x29\x1f\x14\x1e\ \x17\x0f\x25\x1c\x12\x25\x1c\x12\x24\x1b\x11\x24\x1b\x12\x1c\x15\ \x0d\x24\x1b\x11\x2f\x23\x16\x2f\x23\x16\x2a\x1f\x14\x25\x1b\x12\ \x2c\x21\x15\x26\x1d\x12\x25\x1c\x12\x2e\x22\x16\x30\x24\x17\x36\ \x29\x1a\x37\x2a\x1a\x33\x27\x19\x31\x24\x17\x2b\x20\x14\x2a\x1f\ \x14\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x33\x26\x19\x37\x29\x1a\ \x35\x28\x1a\x34\x28\x19\x2f\x23\x17\x29\x1e\x14\x2c\x21\x15\x2b\ \x21\x15\x2e\x22\x16\x31\x25\x17\x34\x27\x1a\x3b\x2c\x1d\x35\x28\ \x19\x39\x2b\x1b\x3e\x2e\x1e\x37\x2a\x1b\x3a\x2b\x1c\x3c\x2d\x1d\ \x37\x29\x1a\x40\x2f\x1f\x37\x29\x1a\x2e\x22\x16\x2b\x21\x15\x2b\ \x20\x15\x28\x1e\x13\x30\x24\x18\x2c\x24\x1c\x30\x31\x31\x40\x43\ \x44\x4b\x4d\x4f\x66\x69\x6b\x33\x36\x3a\x5a\x5d\x60\x81\x86\x88\ \x81\x86\x89\x86\x8a\x8d\x89\x8e\x91\x8f\x94\x97\x8d\x92\x95\x8e\ \x93\x96\x89\x8e\x91\x8c\x91\x94\x90\x95\x98\x96\x9b\x9e\x96\x9b\ \x9f\x94\x97\x9b\x95\x98\x9c\x9a\x9d\xa1\x97\x9a\x9e\x97\x9a\x9f\ \x97\x9b\x9e\x98\x9c\x9e\x00\x00\x00\xdd\xd8\xd5\xd8\xd3\xd3\xd0\ \xcc\xca\xb8\xab\xa0\x14\x12\x0f\x11\x0d\x08\x3c\x2d\x1e\x35\x28\ \x1b\x35\x28\x1a\x57\x41\x2a\x5c\x44\x2d\x4e\x3b\x26\x1b\x15\x0d\ \x27\x1d\x13\x1f\x18\x0f\x2a\x1f\x14\x26\x1d\x12\x18\x12\x0c\x19\ \x13\x0c\x1e\x17\x0e\x20\x17\x0f\x28\x1d\x13\x2d\x22\x16\x28\x1e\ \x14\x1c\x15\x0d\x21\x18\x10\x29\x1f\x14\x33\x26\x18\x28\x1d\x13\ \x28\x1e\x13\x26\x1c\x12\x1c\x15\x0d\x26\x1c\x12\x1e\x17\x0f\x19\ \x13\x0d\x39\x2b\x1d\x25\x1b\x12\x26\x1d\x12\x32\x25\x18\x34\x27\ \x19\x23\x1a\x11\x30\x24\x17\x32\x26\x18\x1d\x16\x0e\x3a\x2d\x1e\ \x45\x35\x23\x30\x24\x17\x28\x1e\x13\x1e\x17\x0e\x24\x1b\x12\x3a\ \x2c\x1d\x29\x1e\x14\x24\x1b\x11\x2e\x23\x17\x34\x28\x19\x26\x1c\ \x13\x27\x1d\x12\x54\x40\x2b\x8f\x6e\x4c\x80\x63\x44\x20\x17\x0f\ \x28\x1e\x13\x23\x1b\x11\x21\x19\x10\x1d\x16\x0e\x21\x19\x10\x24\ \x1b\x11\x24\x1b\x11\x21\x19\x10\x1b\x14\x0d\x1f\x17\x0f\x25\x1b\ \x12\x27\x1d\x13\x2b\x20\x15\x31\x24\x17\x2b\x20\x14\x30\x25\x17\ \x33\x25\x19\x27\x1d\x13\x24\x1c\x12\x23\x1a\x10\x1c\x15\x0d\x21\ \x18\x10\x23\x1b\x11\x21\x1a\x10\x24\x1b\x11\x27\x1d\x13\x27\x1d\ \x13\x2c\x21\x15\x2a\x20\x14\x28\x1e\x13\x27\x1e\x13\x23\x1b\x11\ \x27\x1d\x13\x29\x1e\x13\x1e\x16\x0e\x2a\x1f\x15\x30\x24\x17\x20\ \x18\x10\x24\x1b\x11\x34\x27\x19\x2e\x23\x16\x32\x24\x18\x38\x2b\ \x1b\x30\x24\x17\x32\x26\x18\x25\x1d\x12\x22\x1a\x11\x29\x1f\x14\ \x27\x1d\x12\x2a\x20\x14\x32\x25\x18\x3b\x2c\x1c\x3a\x2b\x1b\x39\ \x2b\x1b\x35\x28\x19\x2c\x20\x15\x2c\x21\x15\x29\x1f\x13\x2a\x1f\ \x14\x2b\x20\x14\x33\x26\x18\x36\x29\x1b\x39\x2c\x1c\x34\x28\x19\ \x38\x2a\x1b\x3e\x2e\x1d\x3f\x2f\x1e\x43\x32\x20\x3b\x2c\x1c\x39\ \x2b\x1c\x3c\x2d\x1d\x33\x26\x19\x29\x1e\x14\x2b\x20\x14\x2e\x23\ \x16\x33\x26\x19\x2d\x26\x1e\x20\x21\x22\x36\x38\x39\x4b\x4d\x50\ \x58\x5b\x5e\x6d\x70\x74\x3c\x3f\x43\x5d\x5f\x64\x84\x88\x8a\x89\ \x8d\x8f\x89\x8e\x91\x8c\x91\x94\x8d\x92\x95\x90\x95\x97\x8e\x93\ \x96\x89\x8e\x91\x8d\x92\x93\x92\x97\x9a\x92\x97\x9a\x98\x9c\x9f\ \x95\x98\x9c\x98\x9c\x9f\x99\x9c\xa0\x96\x9a\x9e\x96\x99\x9d\x9b\ \x9e\xa1\x00\x00\x00\xd4\xcf\xcc\xd3\xcf\xcd\xce\xcb\xca\xc8\xbf\ \xba\x18\x17\x14\x0c\x09\x06\x2c\x22\x16\x47\x36\x24\x30\x24\x17\ \x53\x3f\x28\x54\x3e\x28\x51\x3d\x27\x19\x12\x0b\x15\x0f\x0a\x19\ \x13\x0c\x23\x1a\x11\x2e\x22\x16\x2d\x21\x15\x22\x1a\x10\x22\x1a\ \x10\x23\x1b\x11\x26\x1d\x12\x30\x24\x17\x27\x1d\x12\x1d\x15\x0d\ \x1f\x18\x0f\x26\x1d\x13\x23\x1a\x11\x23\x1a\x10\x2e\x22\x16\x28\ \x1e\x14\x2e\x22\x17\x2a\x1f\x14\x20\x19\x0f\x16\x11\x0a\x33\x27\ \x1a\x2c\x21\x16\x27\x1e\x13\x33\x27\x19\x35\x27\x1a\x25\x1c\x12\ \x32\x26\x18\x37\x29\x1b\x23\x1b\x11\x2c\x21\x16\x34\x27\x1a\x28\ \x1e\x13\x26\x1d\x12\x20\x18\x0f\x15\x10\x0a\x36\x29\x1b\x26\x1d\ \x12\x26\x1d\x12\x2b\x20\x15\x35\x28\x19\x32\x26\x18\x36\x2a\x1b\ \x5d\x47\x30\x85\x66\x45\x86\x67\x47\x26\x1c\x11\x34\x26\x19\x29\ \x1e\x13\x1f\x17\x0e\x17\x11\x0b\x1b\x14\x0d\x1f\x17\x0f\x1e\x17\ \x0f\x1d\x15\x0e\x1b\x15\x0d\x1a\x14\x0c\x1a\x14\x0d\x23\x1b\x11\ \x20\x18\x0f\x26\x1d\x12\x23\x1a\x11\x2b\x21\x15\x2c\x20\x15\x29\ \x1e\x13\x23\x1a\x11\x23\x1b\x11\x23\x1a\x11\x19\x13\x0c\x1b\x14\ \x0d\x24\x1b\x12\x28\x1e\x13\x22\x1a\x10\x1d\x16\x0e\x20\x18\x10\ \x20\x18\x10\x27\x1d\x13\x21\x19\x10\x18\x13\x0c\x1f\x17\x0f\x1e\ \x16\x0e\x1f\x17\x0f\x23\x1a\x11\x27\x1d\x13\x2d\x21\x15\x1f\x17\ \x0f\x2a\x1f\x14\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x37\x29\x1a\ \x35\x27\x1a\x2b\x20\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x2a\ \x1f\x14\x32\x25\x18\x3a\x2b\x1b\x39\x2a\x1b\x33\x27\x19\x2e\x23\ \x16\x2a\x20\x14\x2f\x23\x17\x2b\x20\x15\x2a\x1f\x14\x30\x25\x17\ \x35\x28\x1a\x33\x26\x19\x32\x25\x18\x30\x24\x17\x39\x2b\x1c\x3a\ \x2b\x1c\x3d\x2e\x1e\x3c\x2c\x1d\x3a\x2c\x1b\x3e\x2f\x1e\x3f\x2f\ \x1e\x36\x28\x1a\x2c\x21\x15\x2c\x21\x15\x32\x26\x18\x2e\x22\x16\ \x2c\x25\x1d\x2e\x2f\x2e\x23\x24\x26\x41\x43\x45\x5c\x5f\x62\x5a\ \x5d\x60\x7a\x7e\x81\x4c\x50\x53\x5b\x5d\x61\x88\x8d\x8e\x8d\x91\ \x95\x8e\x93\x96\x8b\x90\x93\x8d\x92\x95\x8e\x93\x96\x8e\x93\x95\ \x91\x96\x97\x8f\x94\x97\x90\x95\x98\x97\x9b\x9e\x97\x9a\x9e\x98\ \x9b\x9f\x9a\x9d\xa1\x97\x9a\x9e\x9b\x9f\xa3\x9d\x9f\xa3\x00\x00\ \x00\xba\xb4\xb2\xbd\xb7\xb8\xbf\xba\xba\xb3\x94\x78\x1e\x18\x10\ \x06\x05\x02\x3c\x2d\x1e\x3d\x2e\x1f\x3b\x2c\x1c\x54\x3e\x28\x5a\ \x43\x2b\x4d\x39\x25\x1c\x14\x0d\x1a\x13\x0c\x24\x1b\x11\x28\x1e\ \x14\x29\x1f\x14\x23\x1a\x11\x20\x18\x10\x18\x12\x0b\x1d\x16\x0e\ \x21\x19\x10\x26\x1c\x12\x28\x1e\x13\x21\x1a\x10\x1d\x16\x0e\x1c\ \x15\x0d\x27\x1d\x13\x22\x19\x10\x1e\x17\x0e\x25\x1c\x12\x28\x1e\ \x13\x2c\x21\x15\x20\x19\x0f\x1d\x15\x0e\x2b\x21\x15\x28\x1e\x14\ \x26\x1d\x12\x35\x29\x1a\x45\x33\x21\x2f\x24\x17\x31\x25\x18\x33\ \x26\x19\x26\x1c\x12\x3b\x2d\x1e\x44\x34\x22\x29\x20\x14\x23\x1a\ \x11\x27\x1d\x12\x1b\x14\x0d\x32\x26\x19\x23\x1b\x11\x2d\x21\x15\ \x29\x1f\x14\x2f\x23\x17\x34\x27\x19\x33\x26\x18\x55\x40\x2b\x8b\ \x6a\x49\x80\x63\x44\x29\x1f\x14\x34\x27\x19\x31\x24\x18\x2f\x23\ \x16\x2e\x23\x16\x26\x1d\x12\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0e\ \x1d\x15\x0e\x1d\x17\x0e\x1c\x15\x0d\x1f\x18\x0f\x23\x1a\x10\x23\ \x1b\x11\x2e\x23\x16\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x21\x19\ \x10\x29\x1e\x13\x25\x1c\x11\x22\x1a\x10\x1b\x14\x0c\x1e\x16\x0e\ \x24\x1b\x11\x28\x1d\x13\x23\x1a\x10\x24\x1b\x11\x28\x1d\x13\x26\ \x1c\x12\x1d\x16\x0e\x1e\x17\x0e\x20\x18\x0f\x23\x1a\x11\x21\x19\ \x10\x24\x1b\x11\x21\x19\x10\x29\x1f\x14\x21\x19\x10\x28\x1e\x13\ \x29\x1f\x14\x31\x25\x17\x38\x2a\x1b\x35\x28\x19\x35\x29\x1a\x26\ \x1c\x12\x24\x1b\x12\x25\x1b\x11\x23\x1b\x11\x2a\x20\x14\x33\x26\ \x19\x3c\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x33\x26\x18\x32\x26\x18\ \x36\x29\x1a\x33\x26\x19\x33\x26\x18\x38\x29\x1a\x3b\x2d\x1c\x3e\ \x2e\x1e\x34\x28\x19\x33\x26\x18\x35\x28\x1a\x38\x2a\x1b\x37\x29\ \x1b\x2e\x23\x16\x2b\x20\x15\x35\x28\x19\x35\x27\x1a\x39\x2b\x1b\ \x33\x26\x19\x2d\x21\x15\x27\x1d\x12\x2a\x1f\x14\x27\x21\x1a\x32\ \x32\x32\x37\x39\x3a\x29\x2b\x2e\x53\x55\x58\x1e\x1f\x21\x72\x75\ \x78\x7e\x83\x84\x57\x5b\x5e\x56\x59\x5c\x87\x8d\x90\x8f\x95\x99\ \x8e\x93\x96\x8d\x92\x96\x8f\x94\x96\x8e\x93\x94\x8d\x92\x93\x8c\ \x90\x92\x8f\x93\x95\x94\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x98\x9b\ \xa0\x99\x9c\xa0\x9c\x9f\xa3\x9c\x9f\xa4\x00\x00\x00\xdb\xd6\xd5\ \xce\xc9\xc8\xc0\xbb\xbb\xb7\xa2\x91\x2a\x22\x1a\x07\x06\x04\x36\ \x28\x1b\x3f\x2f\x1f\x30\x24\x17\x4b\x38\x24\x4f\x3b\x26\x48\x37\ \x24\x17\x11\x0b\x2b\x21\x15\x3b\x2c\x1d\x34\x27\x1a\x1f\x17\x0f\ \x23\x1b\x11\x28\x1e\x13\x2b\x20\x14\x21\x19\x10\x1e\x17\x0e\x27\ \x1e\x13\x2e\x23\x16\x26\x1c\x12\x27\x1d\x13\x2c\x21\x16\x2d\x21\ \x15\x35\x28\x1a\x3e\x2f\x1e\x3e\x2f\x1e\x2b\x20\x14\x37\x29\x1b\ \x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x38\x2a\x1d\x20\x18\x0f\x30\ \x24\x17\x3f\x30\x1e\x33\x26\x18\x35\x28\x1a\x32\x25\x18\x2d\x22\ \x15\x34\x27\x1a\x3a\x2b\x1c\x31\x25\x18\x26\x1d\x12\x38\x2a\x1c\ \x22\x1a\x10\x1e\x16\x0e\x20\x18\x0f\x25\x1c\x12\x2f\x23\x17\x2f\ \x24\x17\x30\x24\x17\x2c\x21\x15\x53\x40\x2a\xa1\x7c\x56\x8b\x6a\ \x4a\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1b\x30\x24\x17\x2a\x1f\x14\ \x26\x1c\x12\x22\x19\x10\x1e\x16\x0e\x24\x1b\x11\x2c\x21\x15\x2d\ \x22\x16\x23\x1a\x11\x24\x1b\x12\x23\x1a\x11\x24\x1b\x11\x2a\x20\ \x14\x22\x19\x10\x29\x1f\x14\x24\x1c\x12\x2c\x21\x15\x2b\x20\x15\ \x2a\x20\x15\x23\x1a\x11\x1e\x17\x0f\x21\x18\x10\x26\x1c\x12\x26\ \x1c\x12\x23\x19\x10\x21\x19\x10\x22\x1a\x11\x22\x1a\x10\x20\x18\ \x0f\x20\x18\x0f\x1c\x15\x0d\x20\x18\x0f\x27\x1d\x13\x28\x1e\x13\ \x25\x1c\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2d\x21\x15\x36\ \x28\x1a\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x20\x18\x0f\x20\x18\ \x10\x22\x19\x10\x21\x19\x10\x24\x1c\x12\x27\x1d\x13\x30\x24\x17\ \x33\x26\x18\x34\x27\x19\x2c\x22\x15\x26\x1d\x12\x24\x1b\x12\x27\ \x1d\x13\x2c\x20\x15\x2a\x1f\x15\x2b\x20\x15\x2f\x23\x17\x2d\x22\ \x15\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x31\x25\x17\x2d\x22\x15\ \x28\x1e\x13\x2c\x21\x15\x39\x2b\x1b\x3d\x2d\x1e\x32\x25\x18\x2c\ \x21\x15\x2b\x21\x15\x37\x29\x1b\x3d\x30\x22\x35\x34\x31\x41\x44\ \x45\x3a\x3c\x3e\x11\x11\x13\x2f\x2f\x31\x5c\x5f\x5f\x7a\x7f\x7f\ \x8a\x91\x92\x62\x66\x6b\x54\x58\x5b\x86\x8b\x8e\x96\x9c\x9f\x8a\ \x90\x94\x8d\x92\x94\x8c\x91\x92\x8f\x94\x96\x8d\x91\x93\x92\x96\ \x98\x96\x99\x9d\x97\x9b\x9e\x97\x9a\x9e\x96\x99\x9e\x99\x9c\xa0\ \x9a\x9d\xa1\x99\x9c\xa0\x00\x00\x00\xdd\xd8\xd7\xdb\xd6\xd3\xd7\ \xd1\xd1\xca\xbb\xad\x3c\x34\x2c\x06\x05\x03\x1f\x17\x0f\x56\x41\ \x2b\x2d\x22\x16\x41\x30\x1f\x55\x40\x2a\x45\x34\x21\x23\x1a\x10\ \x41\x31\x20\x3a\x2c\x1c\x34\x27\x19\x2f\x23\x16\x3a\x2c\x1d\x32\ \x26\x18\x2d\x22\x16\x31\x25\x18\x27\x1d\x13\x1f\x17\x0f\x29\x1e\ \x14\x26\x1d\x12\x26\x1c\x13\x2e\x23\x17\x3a\x2b\x1b\x33\x26\x19\ \x36\x29\x1a\x34\x28\x1a\x38\x2a\x1b\x3f\x2f\x1f\x34\x28\x1a\x27\ \x1e\x13\x26\x1c\x13\x35\x28\x1a\x21\x19\x10\x34\x27\x1a\x3b\x2d\ \x1d\x2f\x24\x16\x35\x28\x1a\x3a\x2c\x1d\x30\x24\x17\x25\x1c\x12\ \x3a\x2d\x1d\x33\x26\x19\x2e\x22\x16\x40\x30\x20\x22\x19\x11\x26\ \x1c\x12\x1a\x13\x0c\x1f\x17\x0f\x1f\x17\x0f\x21\x19\x10\x24\x1b\ \x12\x29\x1f\x14\x48\x36\x25\x9e\x79\x54\x8e\x6d\x4b\x3e\x2f\x1f\ \x39\x2b\x1c\x48\x36\x24\x51\x3d\x29\x50\x3d\x29\x74\x5a\x3e\x6a\ \x51\x37\x2f\x23\x16\x25\x1b\x11\x26\x1c\x12\x2f\x23\x17\x2c\x20\ \x15\x32\x25\x18\x29\x1e\x14\x22\x1a\x10\x29\x1f\x13\x18\x12\x0b\ \x1f\x17\x0f\x23\x1b\x11\x22\x19\x11\x25\x1c\x12\x3d\x2e\x1e\x3b\ \x2d\x1e\x21\x19\x10\x19\x13\x0c\x22\x1a\x10\x2d\x21\x16\x2f\x23\ \x17\x2f\x24\x17\x2c\x22\x16\x27\x1e\x13\x27\x1d\x12\x26\x1c\x12\ \x2f\x23\x16\x2e\x23\x16\x2b\x20\x15\x26\x1c\x11\x23\x1a\x10\x23\ \x1a\x11\x25\x1c\x12\x30\x24\x17\x37\x29\x1b\x29\x1f\x14\x2e\x22\ \x16\x29\x1e\x13\x28\x1e\x13\x1e\x17\x0e\x1a\x14\x0d\x1a\x14\x0d\ \x18\x12\x0c\x1d\x17\x0e\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x31\ \x24\x18\x2e\x23\x16\x31\x25\x18\x2f\x24\x17\x38\x2a\x1b\x32\x26\ \x18\x31\x25\x17\x34\x27\x19\x35\x28\x19\x35\x28\x19\x32\x26\x18\ \x35\x28\x19\x2b\x20\x14\x31\x25\x18\x2f\x23\x16\x2c\x21\x15\x2d\ \x22\x16\x36\x29\x1a\x3f\x2f\x1e\x3a\x2c\x1c\x2c\x21\x15\x27\x1e\ \x13\x2d\x22\x15\x33\x27\x1b\x34\x31\x2e\x43\x45\x46\x2a\x2c\x2d\ \x00\x00\x00\x35\x37\x39\x17\x18\x18\x84\x88\x8a\x82\x86\x8a\x87\ \x8c\x8f\x69\x6d\x70\x5a\x5d\x60\x82\x86\x88\x92\x97\x9a\x90\x96\ \x97\x8e\x93\x95\x8e\x93\x96\x93\x97\x9a\x93\x96\x9a\x91\x93\x97\ \x97\x99\x9e\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x9b\x9e\xa3\x9a\ \x9e\xa1\x00\x00\x00\xc8\xc1\xc0\xcd\xc6\xc4\xcc\xc7\xc5\xcd\xc3\ \xba\x4d\x43\x39\x07\x06\x03\x15\x0f\x0a\x49\x37\x24\x28\x1e\x14\ \x40\x30\x1f\x4a\x37\x24\x48\x36\x23\x27\x1d\x13\x39\x2b\x1c\x2c\ \x21\x15\x28\x1e\x13\x2e\x22\x16\x34\x27\x19\x2e\x23\x16\x32\x26\ \x18\x32\x25\x18\x34\x27\x19\x31\x24\x18\x31\x25\x18\x29\x1f\x14\ \x29\x1f\x13\x35\x28\x19\x3c\x2d\x1e\x33\x26\x18\x34\x27\x19\x39\ \x2a\x1b\x39\x2b\x1c\x3d\x2d\x1d\x34\x27\x19\x27\x1d\x13\x27\x1d\ \x13\x47\x35\x24\x25\x1c\x12\x32\x25\x19\x3a\x2c\x1c\x25\x1c\x11\ \x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x2d\x21\x16\x47\x36\x24\x30\ \x25\x18\x23\x1b\x11\x3f\x2f\x1f\x2c\x20\x15\x32\x26\x19\x1a\x13\ \x0d\x2b\x20\x14\x1f\x18\x0f\x23\x1a\x11\x26\x1d\x13\x29\x20\x14\ \x4d\x3b\x27\xa8\x82\x5b\xa9\x83\x5c\xaa\x83\x5c\xb1\x89\x61\xb3\ \x8b\x62\xb1\x8a\x61\xb2\x8b\x62\xb5\x8d\x64\x78\x5d\x40\x2e\x22\ \x16\x20\x18\x10\x26\x1e\x13\x2b\x21\x15\x27\x1d\x12\x32\x25\x17\ \x2b\x20\x15\x2e\x22\x17\x65\x4d\x32\x81\x63\x44\x64\x4d\x36\x26\ \x1d\x13\x26\x1e\x12\x66\x4f\x35\xa2\x7d\x56\x7d\x61\x43\x29\x1f\ \x14\x21\x1a\x10\x23\x1a\x10\x2c\x21\x15\x2b\x21\x15\x2e\x23\x16\ \x32\x25\x18\x2e\x22\x16\x2d\x22\x15\x2a\x20\x14\x2e\x23\x16\x2d\ \x22\x16\x28\x1e\x13\x26\x1d\x13\x1e\x17\x0f\x2b\x20\x15\x34\x27\ \x18\x29\x1f\x14\x29\x1f\x13\x2d\x22\x15\x24\x1b\x11\x1f\x17\x0e\ \x22\x1a\x10\x1a\x14\x0d\x1f\x17\x0f\x20\x18\x0f\x1d\x15\x0e\x21\ \x19\x10\x2b\x20\x14\x2b\x20\x14\x2e\x22\x16\x2f\x23\x16\x2e\x23\ \x16\x31\x26\x18\x32\x26\x18\x32\x25\x18\x36\x29\x1a\x3b\x2d\x1c\ \x44\x33\x21\x39\x2b\x1c\x3c\x2c\x1d\x36\x29\x1a\x34\x27\x1a\x2e\ \x22\x16\x2c\x21\x14\x2e\x23\x16\x2d\x22\x16\x2e\x23\x16\x2a\x1f\ \x14\x2d\x22\x16\x2d\x22\x16\x25\x1c\x12\x27\x1e\x13\x33\x26\x19\ \x47\x36\x23\x31\x2b\x25\x3b\x3d\x3e\x2a\x2b\x2c\x00\x00\x00\x27\ \x28\x29\x20\x20\x21\x63\x65\x69\x84\x89\x8b\x85\x8b\x8c\x8d\x92\ \x95\x76\x78\x7a\x59\x5c\x5d\x83\x87\x87\x99\x9e\x9e\x8e\x93\x95\ \x8e\x92\x94\x94\x98\x9a\x97\x9a\x9e\x90\x93\x97\x95\x98\x9c\x95\ \x98\x9c\x96\x99\x9d\x9b\x9f\xa1\x9b\x9f\xa2\x9c\x9f\xa2\x00\x00\ \x00\xc9\xc3\xc1\xc6\xbf\xbb\xbe\xb8\xb4\xba\xad\xa3\x57\x4c\x42\ \x05\x05\x03\x0d\x0a\x07\x51\x3d\x28\x31\x25\x18\x47\x36\x23\x46\ \x34\x22\x4c\x38\x24\x34\x27\x19\x3c\x2d\x1e\x34\x27\x1a\x2b\x20\ \x15\x36\x29\x1a\x30\x24\x17\x2d\x21\x15\x2f\x23\x17\x3b\x2c\x1c\ \x33\x27\x19\x2c\x21\x15\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x2c\ \x21\x15\x33\x26\x19\x35\x28\x19\x38\x2a\x1b\x36\x28\x1a\x3b\x2d\ \x1d\x33\x26\x18\x32\x26\x19\x23\x1a\x11\x25\x1c\x12\x46\x36\x24\ \x21\x18\x0f\x30\x24\x17\x37\x29\x1b\x22\x19\x10\x29\x1f\x13\x38\ \x2a\x1b\x37\x29\x1b\x2e\x23\x17\x4a\x38\x25\x33\x27\x19\x24\x1c\ \x12\x38\x2b\x1c\x30\x25\x17\x32\x25\x18\x27\x1d\x13\x24\x1b\x11\ \x25\x1c\x12\x25\x1c\x12\x22\x1a\x11\x45\x34\x23\x8e\x6e\x4c\x93\ \x71\x4e\x87\x68\x48\x75\x59\x3d\x73\x57\x3c\x75\x59\x3d\x69\x50\ \x37\x5d\x47\x30\x5b\x45\x2e\x43\x32\x21\x33\x26\x18\x28\x1e\x13\ \x28\x1e\x13\x27\x1d\x12\x26\x1d\x12\x24\x1b\x11\x29\x1e\x14\x8f\ \x6d\x4c\xad\x86\x5f\x9c\x79\x53\xa5\x7e\x57\x6a\x51\x37\x1d\x16\ \x0e\x2f\x24\x17\x89\x68\x46\x6d\x54\x3a\x17\x11\x0b\x24\x1a\x10\ \x2c\x21\x15\x2d\x22\x16\x2d\x22\x16\x33\x27\x19\x38\x2a\x1b\x35\ \x28\x19\x2b\x21\x14\x29\x1f\x14\x28\x1e\x14\x31\x24\x17\x31\x25\ \x18\x22\x1a\x11\x1e\x17\x0f\x22\x19\x10\x25\x1c\x11\x2f\x24\x16\ \x2e\x23\x17\x2c\x21\x15\x28\x1e\x13\x1d\x16\x0d\x22\x18\x10\x26\ \x1d\x12\x2a\x20\x14\x2b\x20\x15\x24\x1b\x11\x25\x1c\x12\x25\x1d\ \x12\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x2a\x1f\x14\x2d\x22\x16\ \x2d\x22\x16\x2b\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x27\x18\x34\ \x27\x19\x36\x28\x1a\x38\x2a\x1b\x3b\x2c\x1d\x36\x28\x1a\x33\x26\ \x18\x32\x25\x18\x2e\x22\x16\x31\x25\x17\x2f\x23\x17\x39\x2b\x1b\ \x3b\x2c\x1d\x36\x29\x1a\x30\x24\x17\x2b\x20\x14\x22\x1b\x12\x25\ \x24\x22\x29\x2b\x2c\x1f\x20\x20\x13\x14\x14\x00\x00\x00\x4f\x51\ \x54\x50\x53\x56\x59\x5c\x5f\x8b\x90\x92\x8e\x93\x96\x96\x9a\x9c\ \x6e\x70\x70\x35\x36\x36\x7f\x83\x83\x96\x9b\x9c\x8e\x93\x94\x95\ \x99\x9b\x93\x96\x99\x94\x96\x9a\x95\x98\x9c\x92\x95\x98\x98\x9c\ \x9f\x98\x9b\x9d\x9a\x9e\xa0\x9c\xa0\xa1\x00\x00\x00\xde\xd9\xd8\ \xd8\xd2\xcf\xcc\xc6\xc5\xa4\x90\x7e\x63\x50\x3e\x07\x06\x04\x0c\ \x09\x06\x4e\x3a\x27\x31\x24\x17\x40\x30\x1f\x54\x3f\x29\x4a\x38\ \x24\x32\x25\x19\x41\x31\x20\x3a\x2b\x1c\x33\x26\x19\x30\x23\x16\ \x2b\x20\x14\x21\x18\x10\x2b\x20\x15\x2f\x24\x17\x24\x1b\x11\x2e\ \x22\x16\x35\x28\x1a\x33\x26\x19\x25\x1c\x11\x26\x1d\x13\x2b\x1f\ \x15\x2b\x20\x14\x2b\x20\x14\x2e\x23\x16\x3a\x2c\x1c\x33\x27\x19\ \x44\x34\x22\x22\x1a\x10\x23\x1b\x11\x50\x3e\x29\x23\x1a\x10\x31\ \x25\x17\x42\x32\x20\x2a\x1f\x14\x2b\x20\x14\x3a\x2b\x1c\x3b\x2c\ \x1d\x33\x27\x19\x4d\x3a\x26\x34\x27\x1a\x25\x1c\x12\x31\x25\x18\ \x32\x26\x18\x42\x32\x20\x35\x27\x1a\x29\x1f\x14\x26\x1d\x13\x2e\ \x21\x16\x2c\x22\x15\x24\x1b\x11\x28\x1e\x13\x30\x24\x17\x32\x25\ \x17\x30\x24\x16\x3a\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x36\x28\x1a\ \x3c\x2d\x1d\x37\x29\x1a\x33\x26\x18\x2e\x22\x16\x2d\x21\x15\x28\ \x1e\x13\x25\x1c\x11\x21\x19\x10\x49\x38\x25\x98\x75\x50\x64\x4d\ \x34\x23\x1a\x11\x8e\x6c\x4a\x9e\x7a\x55\x2b\x20\x15\x34\x27\x19\ \xa0\x7b\x55\x81\x63\x45\x21\x18\x0f\x2f\x23\x17\x2b\x20\x15\x2b\ \x1f\x14\x26\x1d\x12\x2f\x24\x17\x34\x28\x19\x30\x24\x17\x32\x25\ \x18\x2f\x23\x16\x33\x27\x19\x3f\x2f\x1e\x38\x2a\x1b\x27\x1d\x13\ \x2b\x20\x14\x2e\x22\x16\x30\x23\x17\x2f\x24\x17\x2a\x20\x14\x2e\ \x22\x16\x26\x1c\x12\x25\x1b\x11\x2b\x20\x14\x29\x1f\x14\x24\x1c\ \x12\x31\x25\x18\x33\x26\x18\x34\x27\x19\x2f\x23\x16\x28\x1d\x13\ \x2a\x20\x14\x29\x20\x14\x2d\x21\x16\x31\x25\x17\x2d\x22\x16\x2d\ \x22\x16\x30\x24\x17\x29\x1f\x14\x30\x24\x17\x35\x28\x1a\x3d\x2e\ \x1e\x44\x32\x20\x3b\x2c\x1c\x3c\x2d\x1d\x36\x29\x1a\x39\x2b\x1b\ \x35\x28\x1a\x37\x29\x1a\x37\x2a\x1b\x41\x31\x1f\x42\x31\x20\x38\ \x2a\x1b\x3a\x2b\x1c\x3f\x2f\x1f\x3f\x2f\x1e\x35\x31\x2c\x1b\x1c\ \x1d\x06\x06\x06\x30\x32\x32\x00\x00\x00\x4e\x50\x51\x79\x7d\x7e\ \x5c\x5f\x61\x55\x59\x5a\x93\x96\x99\x93\x96\x9a\x61\x62\x63\x00\ \x00\x00\x24\x25\x25\x75\x79\x7a\x93\x97\x99\x96\x99\x9b\x92\x94\ \x96\x93\x96\x98\x97\x9b\x9d\x96\x9a\x9c\x99\x9d\x9f\x9a\x9d\x9f\ \x9a\x9e\x9f\x9d\xa0\xa1\x00\x00\x00\xde\xd9\xd7\xdd\xd7\xd5\xd6\ \xd1\xcd\xce\xc9\xc6\x76\x65\x53\x09\x08\x05\x0a\x07\x05\x3e\x2f\ \x1e\x2e\x23\x17\x38\x2a\x1c\x48\x36\x23\x46\x34\x21\x2f\x23\x17\ \x3c\x2d\x1e\x42\x32\x20\x37\x2a\x1b\x2c\x21\x15\x23\x1a\x11\x24\ \x1b\x12\x27\x1d\x13\x23\x1a\x10\x28\x1e\x13\x33\x27\x19\x35\x28\ \x1a\x35\x28\x19\x2a\x1f\x14\x2b\x20\x15\x22\x19\x10\x2b\x20\x15\ \x30\x24\x17\x2d\x21\x16\x4e\x3b\x26\x34\x27\x19\x54\x41\x2b\x1f\ \x17\x0f\x24\x1b\x12\x4f\x3c\x28\x25\x1c\x11\x36\x29\x1b\x46\x34\ \x23\x29\x1f\x13\x2a\x1f\x14\x46\x34\x23\x4b\x39\x26\x32\x26\x18\ \x56\x42\x2c\x3a\x2b\x1c\x22\x19\x0f\x2a\x20\x14\x34\x27\x19\x3d\ \x2e\x1e\x2f\x23\x16\x28\x1e\x13\x2a\x20\x14\x35\x28\x1a\x33\x27\ \x19\x29\x1f\x14\x2c\x22\x15\x2e\x22\x16\x2f\x24\x17\x32\x26\x18\ \x39\x2b\x1b\x36\x28\x1a\x31\x25\x17\x37\x29\x1a\x3b\x2c\x1c\x33\ \x26\x18\x2f\x24\x16\x2e\x23\x16\x31\x24\x17\x2c\x21\x15\x27\x1d\ \x13\x2b\x20\x15\x4a\x38\x25\x99\x75\x50\x85\x66\x45\x63\x4c\x35\ \x8e\x6d\x4a\x8e\x6e\x4c\x3a\x2c\x1d\x58\x44\x2e\x9a\x77\x51\x92\ \x71\x4e\x65\x4d\x35\x7c\x5f\x41\x24\x1b\x11\x28\x1e\x13\x23\x1a\ \x11\x2c\x21\x15\x34\x27\x19\x35\x27\x19\x3a\x2a\x1b\x39\x2b\x1b\ \x3b\x2c\x1d\x40\x30\x1e\x35\x27\x19\x2e\x23\x16\x2b\x20\x15\x27\ \x1d\x13\x2b\x20\x14\x38\x2a\x1b\x2a\x20\x14\x2a\x1f\x14\x23\x1a\ \x11\x2b\x20\x15\x24\x1c\x11\x2f\x23\x16\x30\x24\x17\x38\x29\x1a\ \x36\x28\x1a\x34\x28\x19\x35\x28\x1a\x30\x23\x17\x2b\x20\x15\x30\ \x24\x17\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2b\x20\x15\x32\x25\ \x18\x2f\x23\x17\x2d\x22\x16\x36\x28\x1a\x41\x30\x1f\x38\x2b\x1b\ \x3b\x2d\x1d\x43\x32\x20\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x3d\ \x2e\x1e\x39\x2b\x1c\x31\x25\x18\x31\x25\x17\x33\x26\x18\x3e\x2f\ \x1e\x36\x29\x1a\x2c\x21\x15\x31\x2b\x24\x08\x08\x08\x29\x2a\x2a\ \x1e\x20\x1f\x17\x17\x18\x6b\x6e\x6f\x77\x7a\x7d\x82\x87\x88\x63\ \x66\x68\x56\x58\x5a\x88\x8a\x8d\x34\x35\x36\x00\x00\x00\x22\x23\ \x24\x4d\x4f\x50\x73\x75\x76\x97\x9a\x9b\x93\x96\x99\x92\x95\x96\ \x97\x9b\x9c\x9a\x9f\x9f\x98\x9c\x9d\x97\x9b\x9c\x9a\x9e\x9f\x9d\ \x9f\xa0\x00\x00\x00\xe0\xdb\xda\xdd\xd9\xd7\xd2\xc9\xc2\xcd\xc3\ \xb9\x8c\x80\x74\x0e\x0c\x09\x00\x00\x00\x4c\x39\x27\x31\x24\x17\ \x3c\x2c\x1c\x4b\x38\x25\x49\x37\x24\x31\x25\x17\x32\x26\x19\x38\ \x29\x1b\x45\x34\x22\x37\x29\x1b\x2c\x21\x15\x2c\x22\x16\x29\x1f\ \x14\x28\x1e\x13\x2d\x22\x16\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\x1b\ \x2e\x22\x16\x23\x1b\x11\x1e\x17\x0e\x27\x1d\x13\x29\x1e\x14\x2d\ \x22\x15\x43\x32\x21\x39\x2b\x1c\x4d\x3b\x26\x2e\x22\x16\x2d\x22\ \x17\x53\x3f\x2a\x2a\x1f\x14\x3b\x2d\x1d\x51\x3c\x28\x2c\x21\x15\ \x2c\x21\x15\x45\x34\x22\x41\x32\x20\x2a\x20\x14\x37\x29\x1b\x2b\ \x20\x14\x1c\x15\x0d\x37\x2a\x1c\x2f\x23\x17\x3d\x2e\x1e\x2f\x23\ \x16\x26\x1d\x12\x21\x1a\x0f\x2b\x20\x15\x35\x28\x19\x35\x27\x19\ \x2f\x23\x16\x30\x24\x17\x30\x24\x17\x2c\x21\x16\x34\x27\x19\x3a\ \x2c\x1c\x35\x28\x1a\x3b\x2c\x1c\x40\x2f\x1e\x34\x27\x19\x2e\x23\ \x16\x2f\x23\x16\x31\x25\x17\x2c\x21\x15\x28\x1e\x14\x2d\x22\x15\ \x30\x24\x17\x73\x58\x3d\x99\x75\x51\xa7\x82\x5a\x95\x73\x4f\x53\ \x40\x2a\x47\x36\x24\x9e\x7a\x55\x95\x72\x4e\xa0\x7b\x55\x8a\x6a\ \x49\x6f\x55\x39\x34\x27\x18\x2b\x20\x15\x2d\x21\x15\x2f\x23\x17\ \x33\x26\x18\x31\x25\x18\x33\x27\x18\x38\x2b\x1b\x36\x29\x1a\x32\ \x26\x18\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x3a\x2b\x1c\x33\x26\ \x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\ \x24\x1b\x11\x2f\x23\x16\x31\x26\x18\x37\x29\x1b\x33\x26\x18\x36\ \x29\x1a\x3f\x2f\x1e\x3d\x2e\x1d\x36\x29\x1b\x31\x25\x18\x2b\x21\ \x15\x32\x26\x18\x34\x27\x19\x32\x26\x18\x3d\x2e\x1d\x40\x30\x1f\ \x37\x2a\x1a\x36\x27\x1a\x32\x26\x18\x37\x29\x1a\x3b\x2c\x1c\x36\ \x29\x1a\x39\x2b\x1b\x31\x25\x17\x3a\x2b\x1c\x37\x29\x1a\x2e\x22\ \x16\x2a\x20\x15\x28\x1e\x13\x31\x24\x17\x3b\x2c\x1c\x2b\x20\x14\ \x30\x24\x18\x46\x38\x2b\x15\x12\x0e\x18\x19\x18\x15\x16\x16\x28\ \x2a\x2c\x64\x67\x6a\x7a\x7d\x81\x88\x8a\x8e\x86\x89\x8d\x72\x75\ \x77\x41\x42\x43\x06\x06\x06\x00\x00\x00\x53\x55\x55\x98\x9c\x9c\ \x53\x55\x55\x6a\x6c\x6d\x96\x9a\x9b\x96\x9a\x9b\x97\x9b\x9c\x9a\ \x9e\x9f\x98\x9c\x9d\x98\x9b\x9c\xa1\xa4\xa5\x9a\x9d\x9e\x00\x00\ \x00\xe1\xdb\xda\xde\xd9\xd8\xd8\xd4\xd3\xcf\xca\xc9\x90\x77\x5e\ \x0c\x0a\x06\x01\x01\x00\x2c\x21\x16\x31\x25\x18\x35\x27\x19\x3f\ \x2f\x1e\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x1a\x33\x27\x19\x38\x2a\ \x1c\x36\x29\x1a\x33\x26\x19\x32\x26\x18\x31\x25\x17\x2c\x21\x15\ \x31\x24\x17\x3c\x2d\x1d\x40\x2f\x1e\x30\x24\x17\x2e\x22\x16\x24\ \x1b\x12\x25\x1b\x12\x29\x1e\x13\x24\x1b\x11\x22\x1a\x10\x45\x34\ \x22\x37\x28\x1a\x4d\x3a\x26\x27\x1d\x13\x30\x24\x18\x52\x3e\x29\ \x29\x1f\x13\x34\x27\x19\x40\x31\x20\x2d\x22\x16\x25\x1c\x11\x43\ \x32\x21\x41\x32\x21\x24\x1b\x11\x3e\x2f\x1f\x33\x26\x19\x1f\x17\ \x0f\x29\x1f\x14\x29\x1f\x14\x43\x32\x22\x37\x28\x1b\x28\x1e\x13\ \x25\x1c\x12\x2f\x24\x17\x3a\x2b\x1c\x37\x29\x1a\x39\x2b\x1b\x36\ \x28\x1a\x33\x26\x19\x32\x26\x18\x34\x27\x19\x38\x2a\x1b\x3b\x2b\ \x1d\x3a\x2c\x1c\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ \x29\x1f\x13\x24\x1b\x11\x25\x1b\x11\x26\x1d\x12\x2a\x1f\x15\x2b\ \x21\x14\x4e\x3c\x28\x63\x4c\x33\x44\x34\x22\x32\x26\x18\x37\x28\ \x1b\x2c\x20\x15\x79\x5c\x3e\x92\x70\x4e\x2e\x22\x15\x2e\x23\x16\ \x2f\x23\x17\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\ \x24\x17\x2e\x23\x17\x2b\x20\x14\x26\x1c\x12\x26\x1d\x12\x32\x25\ \x18\x36\x28\x1a\x34\x27\x19\x34\x27\x19\x32\x26\x18\x30\x25\x18\ \x30\x23\x17\x2b\x21\x15\x2f\x23\x16\x27\x1d\x13\x2b\x20\x15\x2e\ \x23\x16\x36\x28\x1a\x3b\x2c\x1d\x32\x26\x18\x38\x2b\x1b\x3c\x2d\ \x1d\x3e\x2e\x1e\x40\x2f\x1e\x3d\x2d\x1d\x36\x28\x1a\x38\x2a\x1b\ \x38\x2a\x1b\x37\x2a\x1b\x35\x28\x19\x44\x33\x21\x42\x32\x20\x3b\ \x2c\x1d\x36\x28\x1a\x35\x28\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ \x1b\x38\x29\x1a\x3a\x2b\x1c\x30\x23\x17\x2d\x21\x15\x32\x25\x18\ \x2e\x23\x16\x30\x25\x18\x36\x28\x1a\x2e\x22\x16\x37\x29\x1b\x25\ \x1f\x19\x0b\x0b\x0c\x00\x00\x01\x2b\x2b\x2c\x5b\x5e\x60\x3a\x3d\ \x40\x64\x67\x6a\x8b\x8e\x91\x8b\x8e\x92\x8a\x8d\x90\x44\x44\x45\ \x00\x00\x00\x1a\x1b\x1b\x72\x75\x76\xa9\xad\xad\x5c\x5d\x5d\x53\ \x56\x57\x5f\x62\x65\x9b\x9e\xa0\x99\x9d\x9e\x9c\xa0\xa1\x98\x9c\ \x9d\x95\x98\x99\x9e\xa1\xa2\x98\x9a\x9b\x00\x00\x00\xe0\xda\xd9\ \xde\xd9\xd7\xd8\xd4\xd3\xcf\xcb\xca\xa5\x93\x81\x0f\x0d\x09\x02\ \x01\x00\x34\x28\x1a\x3e\x2f\x1f\x31\x25\x17\x30\x23\x16\x37\x2a\ \x1b\x38\x2a\x1b\x1b\x14\x0d\x2b\x21\x15\x2f\x23\x17\x33\x26\x19\ \x2c\x21\x15\x29\x1f\x14\x2c\x21\x15\x2b\x20\x15\x2a\x1f\x15\x2d\ \x21\x16\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x25\x1c\x12\x2b\x21\ \x15\x2b\x20\x14\x26\x1c\x12\x23\x1b\x11\x3f\x2f\x1f\x34\x27\x19\ \x3b\x2c\x1d\x2e\x22\x16\x2c\x21\x15\x4e\x3b\x28\x26\x1c\x12\x2e\ \x22\x16\x36\x28\x1a\x31\x25\x18\x28\x1e\x13\x40\x30\x20\x44\x34\ \x22\x2a\x20\x14\x46\x35\x24\x37\x29\x1b\x26\x1c\x12\x28\x1e\x14\ \x26\x1c\x12\x33\x27\x19\x35\x27\x19\x2a\x1f\x14\x25\x1c\x12\x2c\ \x21\x15\x36\x29\x1a\x39\x2b\x1b\x43\x32\x20\x45\x33\x21\x42\x32\ \x20\x36\x29\x1a\x3a\x2c\x1c\x38\x2b\x1b\x3b\x2c\x1c\x39\x2a\x1c\ \x38\x2a\x1b\x3c\x2d\x1d\x36\x29\x1a\x2e\x23\x16\x29\x1f\x13\x23\ \x1b\x11\x26\x1c\x12\x27\x1e\x13\x2e\x23\x16\x2b\x1f\x15\x27\x1e\ \x13\x2c\x21\x15\x2e\x23\x16\x2c\x22\x15\x29\x20\x13\x30\x24\x17\ \x71\x55\x3a\x8f\x6e\x4b\x41\x32\x22\x42\x32\x21\x3e\x2f\x1f\x23\ \x1b\x10\x27\x1d\x13\x27\x1e\x13\x2e\x23\x16\x31\x25\x18\x30\x24\ \x17\x22\x1a\x10\x1b\x15\x0d\x26\x1d\x12\x31\x24\x17\x34\x27\x19\ \x39\x2b\x1b\x33\x26\x18\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x31\ \x24\x17\x2b\x20\x15\x2e\x22\x16\x36\x28\x19\x39\x2b\x1b\x37\x29\ \x1a\x35\x27\x1a\x2f\x23\x17\x2e\x22\x16\x32\x26\x18\x3e\x2f\x1e\ \x43\x32\x20\x47\x35\x22\x40\x30\x1f\x31\x25\x18\x2c\x21\x15\x32\ \x25\x18\x36\x28\x1a\x3f\x2f\x1f\x3c\x2d\x1e\x3b\x2d\x1c\x34\x27\ \x19\x31\x24\x18\x2d\x22\x15\x2f\x23\x16\x34\x27\x19\x37\x29\x1b\ \x3b\x2c\x1d\x3b\x2b\x1c\x3a\x2c\x1d\x3b\x2c\x1c\x39\x2b\x1b\x34\ \x27\x19\x31\x25\x18\x31\x24\x17\x3d\x2e\x1e\x27\x1f\x18\x14\x15\ \x16\x05\x05\x05\x1b\x1b\x1c\x59\x5d\x5f\x6d\x71\x74\x3e\x41\x45\ \x67\x6a\x6d\x93\x95\x99\x85\x86\x89\x0b\x0b\x0c\x00\x00\x00\x1d\ \x1e\x1e\x80\x83\x84\x88\x8b\x8b\x69\x6b\x6d\x92\x95\x97\x75\x78\ \x7a\x53\x55\x59\x9f\xa3\xa4\x98\x9c\x9d\x99\x9d\x9e\x95\x99\x9a\ \x9b\x9f\xa0\x9c\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xde\xd9\xd8\xd8\ \xd4\xd3\xce\xca\xc9\xbb\xad\xa2\x12\x10\x0d\x00\x00\x00\x32\x26\ \x19\x3f\x30\x1f\x25\x1c\x12\x29\x1e\x14\x37\x29\x1b\x36\x29\x1a\ \x20\x18\x0f\x29\x1f\x14\x29\x1f\x13\x27\x1e\x13\x26\x1c\x12\x23\ \x1a\x11\x20\x18\x10\x23\x1a\x11\x24\x1b\x11\x26\x1d\x12\x26\x1c\ \x12\x28\x1e\x13\x26\x1d\x13\x2a\x20\x14\x26\x1c\x12\x2a\x1f\x14\ \x2b\x21\x15\x27\x1d\x13\x3a\x2b\x1d\x2c\x20\x15\x40\x30\x1f\x2d\ \x22\x16\x2f\x23\x17\x44\x34\x23\x27\x1d\x13\x32\x26\x18\x44\x33\ \x21\x43\x32\x21\x34\x27\x19\x46\x35\x23\x47\x36\x23\x2c\x21\x15\ \x3f\x30\x1f\x2f\x23\x17\x28\x1e\x13\x2b\x20\x14\x24\x1b\x10\x2c\ \x21\x15\x38\x29\x1b\x2b\x20\x14\x28\x1f\x13\x2d\x22\x16\x3a\x2b\ \x1c\x42\x32\x20\x3f\x2e\x1e\x4a\x36\x24\x4d\x3a\x25\x3d\x2e\x1e\ \x3d\x2d\x1d\x39\x2b\x1c\x37\x29\x1a\x3d\x2d\x1d\x3d\x2d\x1d\x39\ \x2a\x1b\x38\x2a\x1b\x3c\x2d\x1d\x31\x25\x18\x27\x1d\x13\x26\x1c\ \x12\x2c\x22\x15\x31\x25\x18\x2a\x1f\x15\x2a\x20\x14\x28\x1e\x13\ \x29\x1f\x14\x29\x1f\x13\x2c\x21\x15\x33\x26\x19\x62\x4a\x32\x98\ \x74\x50\x8d\x6c\x4b\x8a\x6a\x49\x5c\x46\x30\x26\x1d\x12\x2b\x20\ \x15\x2a\x20\x15\x2c\x21\x15\x2d\x22\x15\x2c\x21\x15\x21\x19\x10\ \x1e\x17\x0e\x28\x1e\x13\x30\x25\x17\x37\x29\x1b\x38\x2a\x1b\x33\ \x26\x18\x29\x1f\x13\x26\x1c\x12\x33\x25\x18\x30\x24\x17\x30\x24\ \x17\x32\x25\x18\x32\x26\x17\x2c\x21\x15\x28\x1e\x13\x2f\x23\x16\ \x2e\x23\x16\x2b\x20\x14\x30\x24\x17\x40\x2f\x1f\x47\x35\x23\x4a\ \x38\x24\x46\x35\x22\x32\x25\x18\x28\x1e\x13\x2e\x23\x16\x38\x2a\ \x1b\x31\x24\x17\x3d\x2e\x1e\x48\x36\x22\x46\x34\x22\x3e\x2e\x1e\ \x36\x28\x1a\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x37\x2a\x1b\x33\ \x27\x19\x40\x30\x1f\x3d\x2e\x1e\x37\x29\x1b\x39\x2a\x1b\x3e\x2e\ \x1e\x33\x26\x19\x30\x24\x18\x2c\x25\x1e\x24\x24\x23\x02\x02\x02\ \x32\x33\x35\x5d\x60\x60\x6d\x71\x73\x7a\x7e\x81\x49\x4b\x4f\x62\ \x62\x64\x62\x61\x63\x00\x00\x00\x0e\x0e\x0e\x50\x52\x53\x6d\x6e\ \x70\x43\x43\x44\x7c\x7f\x80\x9b\xa0\xa1\x9a\x9e\x9f\x84\x87\x89\ \x47\x47\x4d\x94\x97\x98\x9b\x9f\xa0\x9a\x9e\x9f\x9b\x9e\xa2\xa0\ \xa3\xa6\x00\x00\x00\xdf\xdb\xda\xde\xd9\xd8\xd9\xd4\xd3\xd1\xcd\ \xcb\xcb\xc2\xbb\x16\x14\x11\x01\x01\x00\x1b\x15\x0e\x2e\x23\x16\ \x1d\x16\x0e\x25\x1c\x12\x37\x29\x1a\x33\x26\x18\x1e\x17\x0e\x24\ \x1b\x11\x24\x1c\x12\x2b\x20\x14\x25\x1c\x12\x23\x1b\x11\x23\x1a\ \x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x24\x1b\x11\x28\x1f\x14\ \x2a\x20\x15\x2a\x20\x14\x27\x1e\x13\x29\x1e\x13\x27\x1e\x13\x1f\ \x18\x0f\x31\x25\x18\x2c\x21\x15\x55\x40\x2b\x26\x1c\x12\x24\x1b\ \x12\x37\x2a\x1c\x29\x1f\x14\x2d\x21\x16\x37\x29\x1b\x3e\x2e\x1e\ \x35\x28\x19\x40\x30\x20\x43\x32\x21\x2b\x21\x15\x40\x30\x20\x2c\ \x21\x16\x26\x1d\x13\x24\x1b\x12\x2f\x24\x17\x27\x1e\x13\x49\x37\ \x24\x33\x26\x19\x2f\x24\x17\x30\x24\x17\x39\x2b\x1b\x3c\x2d\x1d\ \x39\x2b\x1b\x45\x34\x22\x51\x3c\x27\x47\x35\x23\x3a\x2c\x1c\x33\ \x26\x19\x38\x2a\x1b\x3f\x2f\x1e\x3c\x2d\x1c\x34\x27\x19\x38\x2a\ \x1b\x40\x2f\x1f\x3d\x2e\x1d\x30\x24\x17\x22\x1a\x11\x24\x1c\x11\ \x24\x1b\x11\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x27\x1d\x13\x25\ \x1b\x11\x25\x1c\x12\x30\x24\x17\x39\x2b\x1b\x6c\x53\x38\x90\x6f\ \x4c\x80\x62\x43\x46\x35\x23\x28\x1e\x13\x26\x1d\x12\x25\x1b\x11\ \x28\x1e\x13\x2d\x22\x15\x2f\x24\x16\x28\x1e\x13\x25\x1c\x12\x2a\ \x1f\x14\x32\x26\x18\x3a\x2b\x1c\x38\x2a\x1b\x31\x24\x18\x2b\x20\ \x14\x2a\x20\x15\x2e\x22\x16\x2b\x21\x15\x2f\x23\x17\x2f\x23\x16\ \x30\x24\x17\x2c\x22\x15\x29\x1f\x14\x2f\x24\x17\x33\x27\x19\x32\ \x26\x18\x2d\x22\x15\x37\x29\x1a\x41\x31\x1f\x40\x30\x1f\x3b\x2c\ \x1c\x2f\x23\x17\x25\x1c\x11\x2c\x22\x16\x35\x28\x1a\x32\x26\x18\ \x41\x31\x20\x4f\x3b\x27\x45\x33\x21\x43\x32\x21\x3b\x2b\x1c\x31\ \x25\x18\x31\x25\x18\x37\x29\x1b\x39\x2b\x1b\x37\x29\x1b\x3f\x2f\ \x1f\x3f\x30\x1f\x37\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x2e\x22\x16\ \x27\x1e\x13\x2e\x27\x20\x1d\x1c\x1a\x2d\x2d\x2e\x29\x2b\x2d\x5c\ \x5f\x60\x6d\x6f\x70\x7a\x7e\x81\x7f\x84\x86\x5b\x5d\x5e\x01\x01\ \x02\x00\x00\x00\x29\x2b\x2b\x93\x98\x98\x85\x89\x89\x38\x38\x38\ \x75\x76\x76\x99\x9c\x9d\x96\x99\x9a\x9e\xa1\xa3\x8e\x92\x94\x45\ \x46\x48\x8b\x8c\x8e\xa2\xa5\xa6\x99\x9b\x9f\xa0\xa1\xa5\x00\x00\ \x00\xe0\xda\xda\xde\xd9\xd8\xda\xd6\xd4\xd3\xce\xcc\xcd\xc2\xb9\ \x1f\x1b\x15\x01\x01\x00\x18\x12\x0c\x33\x27\x19\x28\x1e\x13\x2a\ \x20\x14\x32\x25\x18\x33\x26\x18\x15\x10\x0a\x1f\x17\x0f\x25\x1c\ \x12\x26\x1d\x12\x27\x1e\x13\x28\x1e\x13\x26\x1c\x12\x26\x1c\x12\ \x23\x1a\x10\x24\x1b\x11\x26\x1d\x12\x2a\x20\x15\x32\x26\x18\x2f\ \x23\x16\x2d\x22\x15\x33\x26\x19\x2e\x22\x16\x29\x1f\x14\x2b\x21\ \x14\x3d\x2e\x1d\x3c\x2c\x1d\x29\x1e\x14\x2b\x20\x15\x32\x25\x18\ \x35\x29\x1a\x31\x25\x18\x37\x29\x1b\x3f\x30\x1e\x31\x25\x17\x42\ \x31\x20\x46\x35\x23\x2e\x23\x16\x40\x30\x20\x38\x2b\x1c\x27\x1d\ \x13\x25\x1c\x12\x31\x25\x18\x21\x19\x10\x3d\x2f\x1e\x32\x26\x18\ \x32\x26\x18\x37\x29\x1b\x3a\x2c\x1c\x33\x26\x19\x34\x27\x18\x3f\ \x2f\x1e\x49\x36\x23\x46\x34\x22\x33\x26\x18\x2f\x23\x17\x32\x25\ \x17\x37\x2a\x1b\x33\x27\x18\x2d\x22\x16\x32\x25\x18\x35\x28\x19\ \x3b\x2c\x1c\x34\x28\x19\x25\x1c\x12\x21\x18\x10\x1f\x17\x0f\x23\ \x1b\x11\x24\x1b\x11\x28\x1e\x13\x1f\x18\x0f\x23\x1a\x10\x25\x1c\ \x12\x27\x1e\x13\x2c\x21\x15\x33\x26\x18\x3e\x2e\x1e\x3e\x2f\x1d\ \x37\x29\x1a\x2c\x21\x15\x26\x1d\x12\x28\x1e\x13\x2c\x21\x15\x2c\ \x21\x15\x2a\x20\x14\x29\x1f\x14\x28\x1e\x14\x2e\x22\x16\x32\x25\ \x18\x38\x2a\x1b\x36\x28\x1a\x33\x26\x18\x33\x26\x19\x30\x24\x17\ \x31\x25\x17\x31\x24\x17\x2f\x23\x16\x2e\x23\x17\x2f\x23\x16\x2a\ \x20\x14\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x28\x1e\x13\x26\x1d\ \x12\x2a\x20\x14\x32\x25\x18\x3a\x2b\x1c\x39\x2b\x1b\x2e\x22\x16\ \x29\x1f\x14\x2a\x20\x15\x33\x27\x19\x40\x30\x1f\x43\x32\x21\x42\ \x31\x20\x3c\x2d\x1d\x3b\x2c\x1d\x35\x28\x19\x2f\x23\x17\x2e\x23\ \x17\x36\x29\x1a\x3d\x2e\x1e\x3f\x30\x1f\x47\x35\x22\x40\x30\x1f\ \x3a\x2b\x1c\x34\x26\x19\x29\x1f\x14\x2b\x21\x15\x25\x1c\x12\x28\ \x22\x1a\x25\x24\x23\x3c\x3e\x3f\x45\x47\x49\x2c\x2d\x30\x65\x67\ \x69\x7a\x7c\x80\x81\x83\x86\x71\x73\x74\x00\x00\x00\x04\x05\x05\ \x4e\x52\x52\xa8\xaf\xae\x68\x6c\x6b\x75\x77\x78\x56\x58\x58\x75\ \x75\x75\x97\x9b\x9b\x97\x9a\x9d\x96\x9a\x9d\x9c\x9f\xa2\x4f\x4f\ \x51\x7d\x7e\x80\x9b\x9e\xa2\xa0\xa2\xa5\x00\x00\x00\xe0\xdb\xda\ \xdf\xda\xd9\xdb\xd5\xd3\xd5\xd0\xcd\xc5\xb2\x9e\x2b\x23\x18\x00\ \x01\x00\x1a\x14\x0d\x48\x36\x24\x28\x1e\x13\x2c\x22\x15\x31\x25\ \x18\x36\x29\x1a\x18\x12\x0c\x1f\x17\x0f\x28\x1e\x13\x23\x1a\x11\ \x2a\x20\x14\x2a\x1f\x14\x2d\x21\x15\x29\x1f\x13\x29\x1f\x14\x27\ \x1d\x12\x26\x1c\x12\x2d\x22\x16\x38\x2a\x1b\x34\x27\x19\x2e\x23\ \x16\x35\x28\x1a\x32\x25\x18\x30\x24\x17\x2e\x23\x16\x34\x27\x19\ \x36\x29\x1a\x2d\x21\x16\x2d\x21\x16\x38\x2a\x1b\x39\x2b\x1c\x32\ \x26\x18\x3d\x2e\x1e\x41\x31\x20\x25\x1c\x11\x41\x31\x21\x45\x34\ \x23\x2a\x1f\x14\x43\x32\x21\x43\x32\x22\x33\x26\x19\x2c\x22\x15\ \x2d\x22\x16\x1e\x17\x0e\x2f\x24\x17\x27\x1e\x13\x2f\x23\x16\x34\ \x27\x19\x37\x29\x1a\x33\x26\x18\x36\x28\x1a\x3b\x2d\x1d\x43\x32\ \x20\x44\x33\x21\x39\x2b\x1b\x35\x27\x19\x33\x26\x18\x33\x26\x18\ \x2f\x24\x17\x2e\x23\x16\x30\x24\x17\x30\x24\x17\x38\x2a\x1c\x33\ \x27\x19\x2c\x21\x15\x27\x1d\x12\x27\x1d\x12\x26\x1d\x12\x1f\x18\ \x0f\x22\x1a\x10\x1f\x18\x0f\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\ \x27\x1d\x13\x2d\x22\x16\x2f\x23\x16\x34\x27\x19\x34\x27\x19\x2c\ \x20\x14\x2a\x1f\x14\x30\x24\x17\x35\x27\x19\x33\x26\x18\x2e\x23\ \x16\x2b\x21\x15\x28\x1e\x13\x2c\x21\x16\x31\x25\x18\x2f\x24\x17\ \x38\x29\x1b\x38\x2a\x1b\x37\x29\x1a\x34\x26\x19\x3d\x2d\x1d\x3b\ \x2c\x1c\x30\x24\x17\x2c\x21\x15\x2b\x21\x15\x28\x1e\x13\x2a\x1e\ \x14\x25\x1c\x12\x27\x1d\x13\x21\x19\x10\x23\x1b\x11\x2c\x21\x15\ \x2e\x22\x16\x38\x2a\x1a\x3d\x2e\x1d\x32\x26\x18\x33\x27\x19\x2b\ \x21\x15\x34\x27\x19\x3f\x2f\x1e\x3e\x2f\x1e\x3a\x2b\x1b\x37\x2a\ \x1b\x35\x29\x1a\x3b\x2d\x1c\x38\x2a\x1b\x33\x27\x19\x34\x28\x1a\ \x3b\x2c\x1c\x3d\x2e\x1e\x44\x33\x21\x42\x31\x20\x3b\x2d\x1c\x36\ \x28\x19\x29\x1f\x14\x25\x1c\x11\x22\x19\x10\x25\x1d\x16\x31\x30\ \x30\x40\x42\x43\x4d\x4f\x51\x58\x5a\x5d\x30\x32\x36\x72\x75\x79\ \x7e\x81\x83\x2a\x2c\x2b\x00\x00\x00\x0c\x0c\x0d\x57\x59\x5b\x96\ \x9a\x9c\x6b\x6c\x6d\x80\x83\x83\xa8\xac\xac\x54\x55\x55\x72\x73\ \x74\x94\x98\x99\x97\x9b\x9c\x9d\xa1\xa2\xa1\xa5\xa6\x61\x62\x64\ \x6c\x6c\x6e\x9f\xa1\xa2\x00\x00\x00\xe1\xdb\xda\xdf\xdb\xd9\xdb\ \xd6\xd2\xd6\xd2\xce\xbe\xa2\x85\x3c\x30\x24\x07\x05\x03\x10\x0c\ \x08\x36\x2a\x1c\x1f\x17\x0f\x29\x1f\x14\x34\x27\x19\x44\x33\x21\ \x1d\x15\x0e\x1c\x14\x0d\x20\x18\x10\x24\x1b\x11\x2d\x23\x16\x2e\ \x23\x16\x36\x28\x1a\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x2a\x1f\ \x14\x34\x27\x19\x36\x28\x19\x2b\x20\x14\x2a\x21\x14\x2c\x21\x15\ \x2f\x23\x16\x31\x24\x17\x35\x28\x19\x31\x25\x17\x39\x2b\x1b\x31\ \x25\x17\x2f\x23\x16\x36\x29\x1a\x49\x37\x24\x37\x29\x1a\x47\x35\ \x22\x4a\x38\x24\x2d\x22\x16\x3b\x2c\x1d\x39\x2b\x1c\x28\x1e\x13\ \x31\x25\x18\x33\x26\x19\x2b\x21\x15\x25\x1c\x12\x29\x1f\x14\x1b\ \x14\x0d\x34\x28\x1b\x20\x17\x0f\x2a\x20\x14\x2c\x21\x15\x32\x26\ \x18\x33\x27\x19\x33\x27\x19\x34\x27\x19\x3e\x2e\x1e\x41\x31\x20\ \x46\x34\x21\x3a\x2b\x1c\x32\x25\x18\x39\x2a\x1b\x34\x27\x19\x2f\ \x22\x16\x31\x25\x18\x2f\x23\x17\x33\x26\x18\x36\x29\x1a\x32\x25\ \x18\x31\x25\x17\x31\x24\x17\x2b\x20\x14\x1e\x17\x0e\x1f\x18\x0f\ \x23\x1b\x11\x27\x1d\x12\x26\x1c\x13\x23\x1a\x11\x24\x1b\x11\x28\ \x1e\x13\x2d\x22\x15\x32\x25\x18\x2b\x21\x15\x26\x1c\x12\x27\x1d\ \x13\x2e\x23\x17\x33\x27\x19\x2f\x23\x17\x30\x24\x17\x2b\x20\x14\ \x21\x19\x0f\x2b\x20\x14\x33\x26\x19\x32\x26\x18\x38\x2a\x1b\x33\ \x26\x19\x33\x26\x18\x31\x24\x17\x3c\x2d\x1d\x3c\x2c\x1c\x34\x27\ \x19\x2b\x20\x14\x28\x1f\x13\x2b\x20\x14\x2f\x23\x16\x2d\x22\x16\ \x2b\x20\x15\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x2e\x23\x16\x36\ \x29\x1a\x3a\x2c\x1c\x37\x2a\x1b\x3a\x2b\x1b\x38\x2a\x1b\x39\x2b\ \x1c\x37\x2a\x1b\x34\x26\x19\x35\x27\x19\x3a\x2c\x1c\x37\x2a\x1b\ \x3c\x2d\x1d\x3a\x2b\x1c\x35\x28\x19\x3a\x2c\x1c\x41\x30\x1f\x3c\ \x2d\x1d\x3f\x2f\x1e\x43\x32\x20\x36\x29\x1a\x30\x25\x17\x2c\x21\ \x15\x2a\x1f\x14\x2b\x20\x15\x30\x25\x19\x28\x25\x22\x3b\x3d\x3f\ \x4c\x4e\x4f\x5b\x5c\x5f\x69\x6b\x6f\x35\x36\x3a\x6c\x6e\x6f\x00\ \x00\x00\x02\x02\x02\x3f\x41\x42\x86\x8a\x8d\x39\x39\x3c\x68\x68\ \x6a\x9a\x9c\x9d\x79\x7b\x7c\x98\x9c\x9c\x60\x61\x61\x64\x66\x67\ \x91\x95\x96\x9d\xa0\xa3\x9b\x9e\xa2\xa2\xa6\xa8\x79\x7b\x7c\x63\ \x63\x65\x00\x00\x00\xdf\xda\xd8\xdd\xd9\xd7\xdb\xd5\xd2\xd7\xd2\ \xcf\xc6\xb1\x9d\x4c\x43\x38\x05\x04\x03\x05\x04\x03\x27\x1d\x13\ \x1c\x15\x0d\x2a\x1f\x14\x35\x28\x19\x4f\x3b\x26\x25\x1b\x12\x17\ \x12\x0b\x24\x1b\x11\x2a\x20\x14\x28\x1e\x13\x30\x24\x17\x3f\x2f\ \x1e\x35\x27\x19\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x3a\x2c\x1c\ \x36\x28\x1a\x2b\x20\x14\x2a\x1f\x14\x28\x1e\x13\x2c\x21\x16\x2c\ \x21\x15\x37\x2a\x1b\x3a\x2c\x1c\x3d\x2e\x1d\x34\x27\x19\x27\x1d\ \x12\x2f\x24\x17\x43\x33\x21\x3d\x2e\x1e\x4a\x38\x24\x4b\x38\x24\ \x33\x26\x18\x3c\x2d\x1d\x32\x25\x18\x26\x1c\x12\x29\x1e\x14\x36\ \x29\x1a\x2c\x21\x15\x20\x18\x10\x2c\x21\x16\x1c\x16\x0d\x32\x26\ \x18\x22\x1a\x10\x30\x24\x17\x2e\x22\x16\x34\x26\x18\x39\x2b\x1b\ \x40\x30\x1f\x37\x28\x1a\x40\x30\x1f\x44\x33\x21\x4d\x3a\x25\x46\ \x35\x22\x3c\x2d\x1c\x3c\x2d\x1c\x37\x29\x1b\x2e\x23\x17\x39\x2b\ \x1b\x3a\x2c\x1c\x33\x26\x18\x31\x25\x17\x35\x28\x19\x30\x24\x17\ \x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x24\x1b\x11\x24\x1b\x11\x26\ \x1c\x13\x30\x24\x17\x21\x18\x0f\x1c\x16\x0e\x23\x1a\x10\x33\x26\ \x19\x2f\x23\x16\x2c\x21\x15\x27\x1e\x12\x25\x1c\x12\x2b\x20\x15\ \x32\x26\x18\x33\x27\x19\x34\x27\x19\x26\x1d\x12\x21\x18\x10\x29\ \x1f\x14\x2d\x22\x16\x2d\x22\x16\x40\x30\x20\x37\x29\x1b\x2d\x21\ \x15\x24\x1b\x11\x33\x26\x19\x39\x2b\x1b\x38\x2a\x1b\x32\x26\x18\ \x30\x23\x16\x2d\x22\x15\x2d\x22\x16\x2c\x21\x15\x27\x1d\x13\x27\ \x1e\x13\x2c\x22\x15\x2f\x24\x16\x2e\x22\x16\x2e\x22\x16\x2d\x22\ \x15\x32\x25\x18\x34\x27\x19\x35\x27\x19\x33\x26\x18\x32\x26\x18\ \x2e\x23\x17\x34\x27\x19\x34\x27\x19\x36\x28\x1a\x32\x26\x18\x32\ \x25\x18\x36\x28\x19\x39\x2a\x1b\x46\x34\x21\x49\x37\x23\x3d\x2e\ \x1d\x3f\x30\x1e\x37\x2a\x1a\x33\x26\x18\x2e\x23\x17\x2f\x23\x16\ \x28\x1e\x13\x34\x29\x1b\x2b\x28\x24\x2a\x2c\x2d\x48\x4c\x4d\x5b\ \x5d\x5f\x6c\x70\x72\x75\x78\x7c\x0a\x0b\x0c\x00\x00\x00\x11\x11\ \x12\x78\x7c\x7e\x9f\xa3\xa6\x5e\x5f\x61\x44\x44\x47\x7d\x7e\x81\ \x28\x29\x2a\x7b\x7e\x7e\xaa\xae\xaf\x6f\x72\x75\x67\x69\x6c\x89\ \x8d\x90\x9d\xa1\xa4\xa2\xa5\xa9\xa7\xaa\xad\x87\x89\x8b\x00\x00\ \x00\xdf\xd9\xd6\xde\xda\xd7\xdc\xd7\xd3\xd7\xd2\xcf\xcd\xc0\xb4\ \x5d\x55\x4e\x05\x05\x04\x03\x02\x02\x21\x18\x10\x1d\x17\x0e\x2c\ \x21\x15\x3c\x2d\x1d\x53\x3e\x28\x36\x29\x1a\x1d\x16\x0e\x2a\x1f\ \x14\x2e\x23\x16\x29\x1f\x14\x2a\x20\x15\x36\x29\x1a\x35\x28\x19\ \x2b\x21\x14\x2d\x22\x16\x33\x27\x19\x3b\x2c\x1c\x33\x26\x19\x2c\ \x21\x16\x29\x1e\x13\x2b\x20\x15\x2e\x23\x17\x27\x1d\x13\x32\x25\ \x18\x3a\x2b\x1c\x34\x27\x19\x36\x29\x1a\x23\x1a\x10\x30\x24\x17\ \x53\x3f\x2a\x3d\x2e\x1d\x4d\x39\x25\x55\x3f\x29\x3a\x2b\x1c\x3e\ \x2f\x1e\x3a\x2c\x1d\x29\x1e\x14\x26\x1c\x12\x40\x30\x20\x2c\x21\ \x16\x23\x1b\x11\x35\x28\x1a\x2c\x21\x15\x2c\x21\x15\x22\x1a\x10\ \x29\x1e\x14\x2c\x21\x15\x2f\x23\x17\x39\x2a\x1b\x41\x31\x20\x3a\ \x2c\x1c\x37\x29\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x43\x33\ \x20\x41\x31\x1f\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\x31\x25\x17\ \x31\x25\x17\x33\x26\x18\x33\x26\x18\x2e\x22\x16\x2d\x22\x16\x2b\ \x21\x15\x23\x1a\x11\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x0f\x2c\x21\ \x15\x1e\x17\x0e\x1e\x17\x0f\x21\x1a\x10\x29\x1e\x13\x26\x1d\x11\ \x28\x1e\x13\x23\x1b\x10\x25\x1c\x11\x2c\x21\x15\x2c\x21\x15\x2c\ \x21\x15\x42\x32\x21\x49\x37\x25\x3c\x2d\x1e\x2f\x23\x17\x26\x1d\ \x12\x23\x1a\x10\x5b\x45\x2e\x7b\x5e\x40\x7d\x60\x41\x63\x4a\x32\ \x42\x31\x20\x31\x25\x17\x35\x27\x19\x34\x27\x19\x33\x26\x19\x31\ \x26\x18\x33\x27\x19\x30\x24\x17\x2a\x20\x15\x28\x1e\x13\x28\x1e\ \x14\x2e\x23\x16\x2c\x21\x15\x2b\x21\x15\x2d\x22\x16\x2f\x23\x16\ \x31\x25\x17\x38\x2a\x1b\x33\x26\x19\x35\x28\x1a\x30\x24\x18\x31\ \x25\x17\x30\x24\x17\x35\x28\x19\x31\x25\x18\x32\x25\x18\x39\x2b\ \x1c\x3a\x2b\x1b\x4a\x37\x23\x50\x3c\x27\x48\x36\x23\x43\x32\x20\ \x3c\x2d\x1d\x36\x29\x1a\x30\x24\x17\x2e\x23\x16\x29\x1f\x13\x2d\ \x22\x16\x35\x34\x31\x2f\x32\x33\x32\x34\x36\x50\x52\x55\x69\x6c\ \x6e\x74\x77\x7a\x07\x07\x07\x00\x00\x00\x1a\x1a\x1b\x9b\x9e\xa1\ \x85\x87\x8a\x6d\x6e\x72\x7b\x7c\x80\x67\x69\x6d\x5e\x60\x63\x90\ \x93\x95\x9c\xa0\xa0\xa6\xab\xad\x85\x8a\x8c\x54\x58\x5b\x82\x86\ \x88\xa4\xa8\xaa\xa0\xa3\xa7\xa1\xa5\xa6\x00\x00\x00\xe0\xdb\xd8\ \xe0\xdb\xd8\xdc\xd7\xd4\xd6\xd0\xcc\xd0\xca\xc5\x6d\x67\x60\x06\ \x05\x04\x0b\x08\x05\x49\x37\x24\x25\x1c\x12\x2e\x22\x16\x36\x29\ \x1a\x55\x3f\x29\x39\x2b\x1c\x28\x1e\x13\x2a\x20\x14\x2f\x23\x16\ \x34\x27\x19\x30\x24\x17\x34\x27\x19\x39\x2b\x1b\x32\x25\x18\x2b\ \x20\x15\x23\x1a\x11\x23\x1a\x10\x24\x1b\x11\x1f\x17\x0f\x20\x19\ \x10\x26\x1d\x13\x28\x1e\x13\x24\x1b\x11\x27\x1d\x13\x39\x2b\x1c\ \x37\x28\x1a\x3e\x2e\x1e\x29\x1f\x14\x34\x26\x19\x4e\x3b\x27\x2c\ \x21\x15\x3c\x2d\x1d\x52\x3d\x28\x37\x29\x1a\x3a\x2c\x1d\x40\x31\ \x21\x29\x1f\x14\x1e\x17\x0e\x30\x25\x18\x24\x1c\x11\x21\x1a\x10\ \x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x1b\x15\x0c\x23\x1b\x11\x25\ \x1c\x12\x28\x1e\x13\x2f\x23\x17\x3a\x2b\x1b\x37\x29\x1a\x38\x2a\ \x1b\x40\x2f\x1e\x41\x31\x1f\x3f\x2f\x1e\x43\x33\x20\x3d\x2e\x1e\ \x31\x25\x18\x36\x29\x1a\x3e\x2e\x1d\x37\x29\x1a\x35\x28\x19\x31\ \x24\x17\x2f\x23\x16\x29\x1e\x14\x29\x1f\x14\x2c\x21\x15\x27\x1e\ \x13\x2e\x23\x16\x35\x28\x1b\x39\x2c\x1d\x47\x36\x25\x3b\x2d\x1e\ \x19\x13\x0c\x21\x1a\x11\x65\x4e\x35\x77\x5c\x3f\x74\x58\x3c\x45\ \x35\x23\x2a\x1f\x14\x2e\x22\x16\x47\x35\x23\x70\x55\x39\x85\x66\ \x45\x94\x71\x4e\x87\x67\x46\x69\x4f\x34\x45\x34\x22\x29\x1e\x13\ \x57\x42\x2b\xa4\x7e\x58\x9f\x7a\x55\xa1\x7c\x55\x72\x57\x3a\x3d\ \x2e\x1e\x3a\x2b\x1c\x39\x2a\x1b\x30\x25\x17\x30\x25\x17\x2e\x22\ \x16\x2f\x24\x17\x2f\x23\x17\x2c\x21\x16\x32\x25\x18\x3a\x2c\x1c\ \x36\x29\x1a\x2e\x23\x16\x32\x26\x18\x33\x26\x19\x34\x27\x18\x3a\ \x2c\x1c\x3a\x2b\x1c\x3d\x2e\x1e\x3d\x2e\x1e\x40\x30\x1f\x3d\x2e\ \x1d\x3e\x2e\x1e\x37\x2a\x1b\x32\x26\x18\x3b\x2c\x1c\x3e\x2f\x1e\ \x5e\x46\x2e\x47\x35\x23\x43\x32\x20\x43\x32\x21\x42\x32\x20\x3d\ \x2e\x1d\x38\x2a\x1a\x31\x25\x17\x40\x30\x20\x51\x3d\x29\x3d\x37\ \x32\x42\x44\x46\x38\x3a\x3b\x38\x3a\x3c\x5a\x5d\x60\x49\x4a\x4c\ \x00\x00\x00\x05\x05\x05\x43\x45\x46\x70\x72\x76\x70\x72\x74\x6d\ \x6f\x73\xa5\xaa\xaf\x87\x8a\x8f\x6a\x6c\x72\x73\x76\x7a\x9b\x9e\ \xa0\x9e\xa3\xa4\xa0\xa5\xa6\x93\x98\x9b\x5c\x5e\x61\x78\x7a\x7c\ \x9d\xa0\xa1\x9f\xa3\xa4\x00\x00\x00\xe0\xdb\xd9\xdf\xda\xd8\xdd\ \xd8\xd5\xd7\xd3\xd0\xcf\xcb\xc8\x76\x67\x58\x07\x06\x04\x07\x05\ \x03\x49\x37\x24\x22\x1a\x10\x2c\x20\x15\x3b\x2c\x1c\x4d\x3a\x25\ \x3a\x2b\x1c\x17\x11\x0b\x21\x19\x10\x2e\x22\x16\x40\x30\x1f\x39\ \x2b\x1b\x2f\x23\x16\x2c\x21\x15\x2b\x20\x15\x2a\x20\x14\x26\x1d\ \x12\x23\x1a\x10\x21\x19\x10\x1e\x17\x0e\x23\x1a\x11\x27\x1e\x13\ \x20\x18\x0f\x20\x19\x10\x20\x18\x0f\x38\x2a\x1c\x31\x25\x18\x43\ \x32\x21\x2c\x21\x15\x2d\x22\x16\x3e\x2f\x1e\x25\x1b\x11\x34\x27\ \x19\x44\x32\x20\x36\x28\x1a\x46\x34\x23\x58\x42\x2d\x39\x2c\x1d\ \x18\x12\x0b\x3b\x2d\x1e\x27\x1e\x13\x1b\x14\x0d\x2c\x21\x15\x27\ \x1d\x13\x41\x31\x21\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x24\x1b\ \x12\x2c\x22\x15\x35\x28\x19\x2e\x22\x16\x30\x23\x17\x33\x26\x18\ \x37\x2a\x1a\x3e\x2e\x1d\x4a\x37\x24\x46\x34\x22\x42\x31\x1f\x3e\ \x2e\x1e\x3c\x2d\x1d\x3b\x2c\x1c\x47\x36\x23\x5d\x47\x30\x53\x3e\ \x29\x4b\x38\x26\x39\x2b\x1c\x23\x1a\x10\x20\x18\x0f\x32\x25\x18\ \x74\x59\x3e\x91\x70\x4d\x81\x62\x43\x3a\x2d\x1d\x1a\x14\x0c\x1f\ \x18\x10\x4f\x3c\x29\xa3\x7e\x58\x84\x66\x45\x30\x24\x17\x23\x1a\ \x11\x43\x32\x21\x83\x64\x43\xa0\x7b\x56\x9c\x78\x53\x97\x74\x50\ \xa3\x7e\x57\x94\x72\x4e\x7a\x5d\x3e\x31\x24\x18\x51\x3e\x2a\x58\ \x44\x2d\x48\x36\x24\x92\x70\x4e\x90\x6f\x4c\x63\x4b\x32\x31\x24\ \x17\x3b\x2c\x1d\x37\x29\x1b\x34\x27\x19\x2d\x21\x15\x2f\x23\x16\ \x2d\x22\x15\x2a\x1f\x14\x2d\x21\x15\x38\x29\x1b\x3a\x2b\x1c\x38\ \x2a\x1b\x35\x27\x19\x38\x2a\x1b\x3e\x2e\x1e\x38\x2a\x1b\x33\x26\ \x18\x37\x2a\x1a\x3d\x2e\x1e\x3b\x2d\x1d\x42\x31\x20\x42\x31\x1f\ \x3c\x2d\x1d\x3a\x2c\x1c\x39\x2b\x1c\x3c\x2d\x1d\x4c\x39\x25\x4d\ \x3a\x25\x4c\x39\x25\x48\x36\x23\x4d\x3a\x26\x4c\x39\x25\x46\x34\ \x22\x39\x2a\x1b\x34\x28\x1a\x3d\x2e\x1e\x3b\x35\x2f\x3c\x3e\x40\ \x4b\x4e\x4f\x4a\x4c\x4d\x42\x45\x47\x0e\x0f\x0f\x00\x00\x00\x16\ \x16\x16\x94\x98\x99\x63\x66\x69\x47\x48\x4a\x84\x87\x8b\x6a\x6c\ \x6f\x66\x67\x6a\x95\x97\x9c\x68\x6b\x6f\x6a\x6c\x70\x9d\xa1\xa3\ \x9d\xa2\xa4\xa0\xa5\xa8\x99\x9d\xa0\x6a\x6d\x70\x6d\x6f\x72\x96\ \x98\x9b\x00\x00\x00\xe1\xdd\xdb\xe0\xdb\xd9\xdf\xd9\xd6\xd6\xd0\ \xcb\xd0\xcc\xc9\x88\x7c\x71\x08\x07\x05\x0b\x08\x04\x59\x44\x2d\ \x29\x1f\x14\x2f\x23\x16\x44\x33\x21\x4c\x38\x25\x4d\x3a\x25\x2a\ \x1f\x14\x37\x29\x1b\x35\x28\x19\x3e\x2e\x1e\x3d\x2e\x1d\x3c\x2d\ \x1d\x38\x2a\x1b\x2e\x22\x16\x2f\x24\x16\x2f\x24\x16\x27\x1d\x12\ \x24\x1b\x12\x2a\x1f\x14\x33\x26\x19\x30\x24\x17\x26\x1c\x12\x21\ \x18\x0f\x1c\x15\x0d\x38\x2a\x1c\x35\x28\x1a\x47\x35\x23\x31\x25\ \x17\x2d\x22\x16\x3e\x2f\x1f\x24\x1b\x11\x34\x27\x19\x47\x35\x22\ \x38\x2a\x1b\x40\x30\x1f\x49\x37\x25\x36\x29\x1b\x1a\x14\x0d\x45\ \x34\x24\x32\x26\x19\x20\x18\x0f\x25\x1c\x12\x32\x26\x18\x4b\x39\ \x26\x2c\x21\x15\x22\x19\x10\x24\x1a\x11\x21\x19\x10\x23\x1b\x11\ \x51\x3d\x29\x4e\x3a\x26\x57\x42\x2b\x5c\x45\x2d\x49\x38\x25\x3a\ \x2c\x1c\x44\x33\x21\x45\x33\x21\x42\x31\x1f\x39\x2b\x1b\x3a\x2b\ \x1c\x6a\x50\x36\x7c\x5e\x40\x80\x61\x42\x63\x4b\x32\x77\x5b\x3e\ \x93\x71\x4f\x55\x41\x2b\x2b\x20\x14\x2d\x22\x16\x5e\x48\x32\x72\ \x57\x3b\x7e\x60\x41\x2d\x21\x15\x15\x10\x0a\x19\x12\x0c\x3d\x2e\ \x1e\xa4\x7e\x58\x75\x59\x3d\x26\x1d\x13\x2e\x23\x17\x71\x56\x3a\ \xaa\x83\x5b\x8a\x6b\x4a\x43\x34\x22\x2c\x21\x15\x37\x29\x1c\x84\ \x65\x45\x8e\x6c\x49\x3c\x2c\x1d\x4b\x3a\x27\x37\x29\x1a\x28\x1e\ \x13\x3f\x30\x20\x8c\x6b\x49\x6d\x53\x38\x2e\x22\x16\x38\x2a\x1b\ \x37\x29\x1b\x3b\x2d\x1d\x38\x2a\x1b\x2d\x21\x15\x2c\x21\x15\x23\ \x1a\x11\x29\x1f\x14\x2e\x23\x16\x2f\x23\x17\x35\x27\x19\x33\x26\ \x18\x3b\x2c\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3f\x2f\x1e\x2b\x21\x15\ \x34\x26\x19\x33\x26\x19\x3a\x2c\x1c\x4a\x37\x23\x44\x33\x20\x3e\ \x2e\x1d\x3b\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1f\x46\x34\x22\x48\x36\ \x23\x4e\x3b\x26\x4f\x3b\x26\x49\x36\x23\x44\x33\x21\x3f\x2e\x1e\ \x2e\x23\x16\x2c\x22\x16\x32\x2d\x28\x3b\x3c\x3e\x49\x4c\x4d\x59\ \x5d\x5e\x40\x42\x44\x00\x00\x00\x03\x03\x03\x4a\x4b\x4d\x9d\xa0\ \xa4\x83\x84\x87\x44\x44\x45\x73\x75\x79\x58\x59\x5c\x67\x68\x6a\ \x98\x9b\x9f\x97\x9a\x9e\x77\x79\x7d\x5f\x61\x65\x98\x9b\x9d\xa0\ \xa4\xa8\x9f\xa2\xa7\x9e\xa1\xa5\x75\x77\x7b\x68\x68\x6c\x00\x00\ \x00\xe4\xe0\xdf\xe2\xde\xdd\xe0\xdc\xda\xda\xd4\xd1\xd2\xce\xcc\ \x9b\x93\x8c\x0a\x09\x07\x05\x04\x02\x4a\x37\x24\x2d\x22\x16\x2a\ \x20\x14\x36\x28\x1a\x48\x37\x23\x44\x33\x21\x25\x1c\x12\x2c\x21\ \x16\x2c\x21\x15\x30\x23\x17\x2f\x23\x16\x38\x2a\x1b\x3b\x2c\x1d\ \x2d\x22\x16\x24\x1b\x11\x28\x1e\x13\x27\x1e\x12\x29\x1f\x14\x36\ \x29\x1a\x37\x29\x1a\x4d\x39\x26\x35\x28\x19\x27\x1e\x13\x26\x1d\ \x13\x3b\x2d\x1d\x32\x25\x18\x43\x32\x21\x28\x1f\x13\x38\x2b\x1b\ \x48\x36\x24\x2c\x20\x15\x41\x30\x1f\x43\x32\x21\x2a\x1f\x14\x29\ \x1f\x14\x33\x26\x19\x32\x25\x18\x24\x1b\x11\x39\x2c\x1c\x2e\x23\ \x17\x20\x18\x0f\x2b\x21\x15\x2f\x23\x16\x50\x3c\x28\x28\x1e\x13\ \x2e\x23\x16\x27\x1e\x13\x2c\x20\x15\x2e\x23\x16\x5b\x44\x2d\x6b\ \x51\x35\x74\x57\x3a\x61\x48\x2f\x69\x4f\x34\x63\x4a\x31\x3b\x2c\ \x1c\x34\x28\x19\x31\x24\x17\x35\x28\x19\x5f\x48\x31\x83\x64\x44\ \x8d\x6c\x4a\x82\x63\x44\x75\x5a\x3d\x7d\x5f\x40\x8c\x6b\x49\x97\ \x74\x50\x48\x36\x25\x2d\x22\x16\x49\x37\x25\x6f\x55\x38\x8b\x6b\ \x49\x26\x1c\x12\x1f\x17\x0f\x19\x13\x0c\x3d\x2e\x1e\xa3\x7d\x57\ \x83\x64\x44\x31\x25\x18\x3e\x2f\x1f\x8a\x69\x48\x9a\x77\x53\x50\ \x3e\x2a\x22\x1a\x10\x21\x19\x10\x30\x23\x18\x83\x64\x44\x96\x72\ \x4e\x76\x5a\x3d\x5a\x44\x2c\x3d\x2e\x1e\x30\x24\x17\x2e\x22\x16\ \x6f\x54\x37\x88\x69\x48\x4e\x3b\x28\x2d\x22\x15\x35\x28\x19\x33\ \x26\x18\x39\x2b\x1c\x32\x26\x18\x30\x24\x17\x2a\x1f\x14\x2a\x20\ \x14\x2a\x1f\x14\x2d\x21\x16\x30\x24\x17\x31\x25\x18\x33\x26\x19\ \x38\x2a\x1b\x3f\x2f\x1e\x41\x30\x1f\x39\x2b\x1c\x35\x27\x19\x2f\ \x23\x16\x36\x29\x1a\x3f\x30\x1e\x42\x31\x20\x45\x34\x21\x3f\x2f\ \x1e\x3c\x2d\x1c\x3c\x2d\x1c\x40\x30\x1e\x3b\x2b\x1c\x41\x30\x1f\ \x41\x31\x1f\x3f\x2f\x1e\x42\x31\x20\x3d\x2e\x1e\x2a\x20\x15\x2d\ \x22\x16\x32\x2c\x26\x3a\x3b\x3c\x49\x4b\x4c\x5d\x60\x61\x1e\x20\ \x20\x00\x00\x00\x02\x02\x02\x52\x55\x58\x93\x96\x99\x6d\x6f\x71\ \x80\x81\x84\x84\x86\x88\x5b\x5b\x60\x81\x82\x85\xa0\xa2\xa3\x9e\ \xa1\xa3\xa3\xa6\xaa\x7d\x80\x84\x59\x5a\x5e\x8a\x8c\x90\xa8\xac\ \xaf\x9c\xa0\xa4\xa1\xa4\xa7\x86\x87\x8a\x00\x00\x00\xe4\xe0\xdf\ \xe2\xde\xdc\xdf\xdb\xda\xdc\xd7\xd5\xd3\xce\xcc\xab\xa2\x9a\x0c\ \x0b\x08\x03\x02\x01\x3b\x2c\x1d\x2e\x22\x16\x33\x26\x19\x3b\x2c\ \x1c\x52\x3d\x28\x50\x3c\x27\x10\x0c\x08\x1f\x17\x0e\x2c\x21\x15\ \x36\x29\x1b\x3e\x2f\x1e\x41\x31\x1f\x3f\x30\x1f\x3b\x2c\x1d\x2f\ \x23\x17\x2e\x22\x16\x2d\x21\x15\x31\x24\x17\x2f\x24\x17\x2c\x20\ \x15\x2d\x22\x16\x27\x1d\x12\x32\x25\x17\x27\x1e\x13\x39\x2b\x1b\ \x28\x1e\x13\x37\x2a\x1b\x30\x23\x17\x2e\x23\x17\x46\x35\x23\x23\ \x1b\x11\x32\x26\x18\x3b\x2d\x1d\x29\x1f\x14\x1c\x15\x0d\x33\x27\ \x19\x32\x26\x19\x26\x1c\x12\x31\x25\x17\x27\x1e\x13\x29\x1f\x14\ \x2d\x22\x16\x25\x1c\x12\x43\x33\x21\x31\x24\x18\x27\x1d\x13\x28\ \x1f\x14\x39\x2b\x1b\x30\x24\x17\x57\x42\x2b\x83\x64\x43\x99\x74\ \x50\x89\x68\x46\x70\x55\x38\x5e\x46\x2e\x43\x33\x20\x2c\x22\x15\ \x2e\x23\x16\x46\x35\x23\x73\x58\x3b\x8b\x6a\x49\x56\x41\x2c\x2c\ \x21\x15\x28\x1e\x13\x37\x29\x1b\x70\x55\x39\x8c\x6b\x49\x6b\x52\ \x38\x2c\x22\x15\x41\x31\x20\x9c\x79\x53\x93\x70\x4c\x30\x24\x17\ \x23\x1b\x11\x19\x12\x0c\x3f\x2f\x20\xa4\x7f\x59\x83\x64\x45\x33\ \x28\x1a\x45\x35\x23\x9e\x79\x54\x8c\x6b\x4b\x44\x34\x23\x25\x1c\ \x11\x27\x1d\x12\x54\x41\x2c\x6b\x52\x38\x69\x50\x37\x57\x43\x2d\ \x33\x27\x19\x2d\x21\x15\x2e\x22\x16\x34\x28\x19\x60\x48\x2f\x8c\ \x6b\x49\x5f\x48\x31\x34\x28\x19\x3d\x2d\x1e\x36\x29\x1a\x31\x25\ \x17\x2f\x24\x17\x30\x24\x17\x30\x23\x17\x30\x24\x17\x2d\x22\x16\ \x2e\x23\x16\x2e\x23\x16\x31\x25\x17\x33\x26\x18\x3d\x2d\x1e\x3f\ \x2f\x1f\x49\x37\x23\x45\x34\x21\x42\x32\x20\x3a\x2b\x1b\x34\x27\ \x19\x35\x28\x1a\x39\x2b\x1c\x3d\x2d\x1d\x31\x25\x18\x3a\x2b\x1c\ \x3a\x2b\x1c\x3b\x2c\x1c\x3f\x2f\x1e\x3b\x2c\x1d\x3b\x2c\x1c\x3c\ \x2d\x1d\x3d\x2e\x1e\x40\x30\x1f\x30\x24\x17\x33\x26\x18\x38\x30\ \x27\x42\x3f\x3c\x48\x49\x4b\x4d\x4f\x50\x03\x03\x03\x00\x00\x00\ \x30\x30\x31\x68\x6b\x6e\x4c\x50\x52\x5a\x5b\x5d\xa0\xa3\xa7\x9c\ \x9f\xa2\x8b\x8d\x91\x5b\x5c\x60\x7d\x7e\x81\x9e\xa0\xa2\x9f\xa2\ \xa5\xa2\xa5\xaa\x8c\x8e\x92\x5c\x5d\x61\x7b\x7e\x80\xa9\xac\xb0\ \xa3\xa6\xaa\xa8\xaa\xad\x00\x00\x00\xe3\xdf\xdc\xe0\xdc\xd9\xde\ \xd9\xd7\xdd\xd8\xd5\xd5\xd0\xcd\xb9\xb2\xab\x0e\x0d\x0a\x00\x00\ \x00\x44\x33\x21\x2e\x22\x16\x27\x1d\x12\x3a\x2c\x1c\x58\x42\x2b\ \x52\x3d\x27\x18\x12\x0b\x1d\x16\x0e\x22\x1a\x11\x2d\x22\x16\x33\ \x26\x18\x39\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x3d\x2e\x1e\x36\x28\ \x1a\x30\x24\x17\x34\x27\x19\x31\x25\x18\x2a\x20\x14\x28\x1e\x13\ \x25\x1c\x11\x2a\x20\x13\x26\x1d\x12\x39\x2b\x1c\x23\x1a\x11\x25\ \x1c\x11\x1e\x17\x0e\x29\x1f\x14\x4c\x3a\x27\x24\x1b\x11\x32\x25\ \x18\x42\x32\x21\x37\x2a\x1b\x2a\x20\x14\x32\x27\x19\x2b\x20\x15\ \x1d\x15\x0e\x40\x30\x20\x33\x26\x18\x25\x1b\x11\x2f\x24\x17\x35\ \x28\x19\x38\x2b\x1c\x2f\x23\x17\x25\x1b\x12\x25\x1c\x11\x35\x28\ \x1a\x3e\x2e\x1e\x59\x44\x2c\x6c\x52\x35\x42\x31\x1f\x4a\x37\x24\ \x73\x57\x3a\x76\x59\x3b\x4d\x3a\x25\x33\x26\x19\x2b\x20\x14\x4b\ \x39\x25\x86\x66\x46\x73\x57\x3b\x3e\x2e\x1e\x2a\x1f\x14\x2b\x21\ \x14\x32\x25\x18\x5a\x43\x2c\x8b\x6a\x48\x86\x66\x45\x31\x24\x17\ \x3d\x2e\x1f\x9b\x78\x53\x94\x72\x4e\x34\x27\x1a\x26\x1c\x12\x1f\ \x18\x0f\x34\x27\x1b\xa1\x7c\x56\x88\x68\x46\x39\x2c\x1c\x3d\x2f\ \x1f\x84\x64\x44\x87\x68\x47\x4d\x3b\x29\x2d\x22\x16\x34\x27\x19\ \x33\x25\x18\x27\x1d\x13\x31\x25\x18\x44\x33\x22\x34\x28\x19\x2e\ \x22\x16\x32\x25\x17\x32\x26\x17\x4b\x38\x25\x8b\x6a\x48\x78\x5c\ \x3f\x2f\x22\x16\x59\x43\x2d\x6d\x53\x39\x24\x1b\x11\x31\x26\x18\ \x38\x2a\x1b\x35\x27\x19\x3a\x2b\x1c\x3e\x2e\x1e\x36\x28\x1a\x30\ \x24\x17\x39\x2a\x1b\x37\x29\x1a\x37\x29\x1a\x3d\x2d\x1d\x45\x34\ \x22\x49\x37\x23\x45\x34\x21\x3f\x2f\x1e\x36\x28\x19\x39\x2a\x1b\ \x40\x30\x1f\x3f\x2f\x1e\x3b\x2d\x1c\x34\x27\x19\x37\x29\x1a\x36\ \x29\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x36\x28\x1a\x37\x29\x1a\x38\x2a\ \x1a\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x19\x30\x29\x21\x37\x37\x38\ \x4a\x4c\x4e\x23\x24\x25\x00\x00\x00\x00\x00\x00\x71\x74\x74\x81\ \x84\x86\x54\x56\x56\x3e\x3f\x42\x9d\xa0\xa2\x9f\xa2\xa4\x9e\xa2\ \xa4\x92\x95\x97\x5d\x5e\x63\x7e\x7f\x83\xa1\xa5\xa6\x9f\xa2\xa5\ \xa1\xa4\xa8\x94\x97\x9b\x6b\x6d\x6e\x66\x68\x69\xb1\xb2\xb5\xa7\ \xa8\xac\x00\x00\x00\xe2\xdd\xda\xe1\xdc\xda\xdf\xda\xd7\xdb\xd7\ \xd4\xd6\xd2\xcf\xc4\xba\xb1\x11\x0f\x0b\x00\x00\x00\x4d\x3b\x28\ \x31\x25\x18\x22\x1a\x10\x3a\x2b\x1c\x55\x3f\x29\x51\x3e\x28\x16\ \x10\x0b\x19\x13\x0d\x20\x18\x0f\x2a\x1f\x14\x30\x24\x17\x31\x24\ \x17\x33\x26\x18\x34\x27\x19\x42\x31\x20\x37\x29\x1b\x33\x26\x19\ \x33\x26\x18\x39\x2b\x1b\x37\x29\x1b\x33\x27\x19\x30\x24\x17\x33\ \x26\x19\x27\x1d\x12\x3e\x2f\x1e\x2b\x21\x15\x3a\x2b\x1c\x28\x1d\ \x13\x2c\x21\x15\x3d\x2e\x1f\x34\x27\x19\x35\x28\x1a\x3d\x2f\x1e\ \x3b\x2d\x1d\x28\x1e\x13\x39\x2c\x1d\x2c\x22\x16\x13\x0e\x08\x44\ \x34\x23\x6d\x54\x3a\x7e\x61\x43\x90\x6f\x4d\x3d\x2e\x1e\x39\x2b\ \x1c\x34\x27\x19\x32\x26\x19\x29\x1f\x14\x2b\x20\x15\x40\x30\x1f\ \x69\x4f\x35\x62\x4a\x30\x40\x30\x1f\x3b\x2c\x1c\x46\x35\x22\x65\ \x4c\x32\x62\x49\x31\x46\x34\x22\x2a\x1f\x13\x4e\x3a\x26\x87\x67\ \x45\x63\x4c\x33\x31\x24\x18\x25\x1c\x12\x27\x1d\x12\x24\x1c\x11\ \x44\x33\x21\x84\x65\x46\x98\x75\x51\x2c\x22\x16\x39\x2a\x1c\x9b\ \x77\x53\x94\x72\x4e\x3c\x2d\x1d\x33\x27\x19\x2a\x20\x14\x35\x28\ \x1a\xa5\x7f\x59\x88\x68\x47\x3d\x2f\x1f\x2f\x24\x17\x7c\x5f\x42\ \xa0\x7b\x55\x75\x5a\x3d\x3e\x2f\x1f\x35\x28\x19\x2e\x23\x17\x3c\ \x2e\x1e\x91\x70\x4f\x73\x59\x3d\x2c\x21\x15\x23\x1a\x10\x28\x1e\ \x13\x25\x1b\x12\x2e\x23\x16\x81\x63\x43\x97\x74\x50\x78\x5d\x40\ \x85\x65\x44\x65\x4d\x33\x2c\x20\x15\x36\x28\x1a\x32\x26\x18\x36\ \x28\x1a\x3b\x2d\x1d\x41\x31\x20\x39\x2b\x1b\x31\x25\x17\x33\x27\ \x19\x34\x27\x1a\x38\x2a\x1a\x35\x28\x19\x3c\x2d\x1d\x42\x31\x20\ \x45\x34\x22\x43\x32\x20\x40\x30\x1f\x3a\x2b\x1c\x3f\x2f\x1f\x45\ \x33\x21\x40\x30\x1f\x44\x33\x21\x3f\x2f\x1e\x33\x26\x18\x3e\x2f\ \x1e\x49\x37\x24\x35\x27\x19\x3b\x2c\x1d\x37\x29\x1b\x33\x26\x18\ \x3e\x2e\x1d\x41\x31\x1f\x2f\x27\x1f\x34\x35\x35\x45\x46\x48\x07\ \x07\x07\x00\x00\x00\x1a\x1b\x1b\x87\x8b\x8c\x80\x84\x84\x46\x48\ \x48\x80\x84\x86\x58\x5a\x5e\x94\x97\x99\xa3\xa6\xa7\x9b\x9e\xa1\ \x9c\x9e\xa2\x6a\x6b\x6f\x68\x68\x6c\x9c\x9e\xa1\xa3\xa6\xaa\xa1\ \xa4\xa8\x9b\x9e\xa1\x79\x7c\x7d\x5a\x5b\x5d\xac\xad\xb0\x00\x00\ \x00\xe2\xdf\xdd\xe2\xdf\xdc\xe0\xdc\xda\xdb\xd7\xd4\xd5\xd0\xce\ \xc4\xb2\xa2\x15\x11\x0d\x00\x00\x00\x3e\x30\x1f\x2f\x23\x16\x25\ \x1c\x12\x30\x24\x17\x3e\x2e\x1e\x3f\x2f\x1f\x1d\x15\x0d\x1a\x14\ \x0d\x20\x18\x10\x27\x1e\x13\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\ \x3c\x2d\x1d\x38\x2a\x1b\x2f\x23\x16\x2f\x22\x16\x2a\x20\x15\x31\ \x26\x18\x2c\x22\x15\x27\x1d\x13\x27\x1e\x13\x2f\x23\x16\x29\x1f\ \x14\x4d\x3b\x27\x31\x25\x18\x47\x36\x24\x62\x4c\x33\x59\x45\x2e\ \x59\x44\x2e\x31\x25\x18\x2f\x23\x16\x3b\x2c\x1c\x3f\x2f\x1f\x37\ \x29\x1a\x3d\x2e\x1e\x2a\x20\x15\x17\x11\x0b\x43\x34\x23\x9d\x7a\ \x56\xa9\x82\x5b\xae\x87\x5e\x49\x38\x26\x32\x26\x18\x41\x32\x21\ \x25\x1c\x12\x25\x1c\x12\x22\x1a\x10\x31\x25\x18\x41\x31\x1f\x3c\ \x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x3b\x2d\x1c\x64\x4b\x31\x6c\x52\ \x36\x54\x3f\x2a\x2f\x23\x16\x5a\x44\x2c\x81\x62\x42\x6e\x53\x38\ \x3a\x2c\x1d\x2b\x20\x14\x29\x1f\x13\x27\x1d\x12\x4a\x38\x25\x6b\ \x51\x37\x76\x5b\x3e\x33\x27\x19\x2e\x23\x16\x82\x64\x45\x7b\x5e\ \x3f\x3d\x2d\x1e\x2f\x23\x16\x3e\x2f\x1f\x6f\x55\x3b\x9c\x77\x53\ \x88\x68\x48\x38\x2a\x1c\x1d\x15\x0d\x57\x42\x2e\xa1\x7d\x57\xa2\ \x7e\x57\xa5\x80\x5a\x99\x77\x54\x9f\x7b\x57\xad\x86\x5d\xac\x84\ \x5c\x71\x56\x3b\x36\x29\x1b\x27\x1d\x13\x28\x1e\x13\x27\x1e\x13\ \x24\x1b\x12\x46\x35\x22\xa4\x7f\x58\x9f\x7a\x54\x97\x73\x4f\x6a\ \x51\x36\x28\x1e\x12\x2e\x23\x17\x30\x25\x17\x37\x2a\x1b\x3b\x2d\ \x1d\x3b\x2c\x1c\x3e\x2e\x1e\x3f\x2f\x1e\x36\x29\x1a\x2d\x22\x16\ \x30\x24\x17\x37\x2a\x1b\x38\x2a\x1a\x41\x31\x1f\x4a\x37\x24\x40\ \x30\x1f\x4a\x37\x24\x39\x2b\x1c\x37\x29\x1a\x3a\x2b\x1c\x3d\x2e\ \x1e\x39\x2b\x1c\x36\x29\x1a\x42\x31\x20\x42\x32\x20\x4a\x37\x23\ \x43\x32\x20\x3f\x2f\x1e\x49\x36\x24\x4b\x38\x25\x42\x31\x20\x3b\ \x2b\x1c\x31\x28\x1f\x38\x37\x37\x27\x28\x29\x02\x02\x02\x00\x00\ \x00\x52\x54\x54\x78\x7d\x7c\x6f\x73\x72\x58\x5b\x5b\x99\x9d\x9f\ \x7d\x80\x83\x5d\x5f\x63\x8e\x90\x92\xa4\xa7\xa7\xa1\xa4\xa5\xa4\ \xa7\xaa\x75\x77\x7b\x56\x56\x5c\xa8\xab\xaf\xa1\xa4\xa8\xa4\xa7\ \xab\xa4\xa7\xaa\x8c\x8f\x92\x58\x57\x5c\x00\x00\x00\xe5\xe0\xdf\ \xe3\xdf\xdd\xe1\xde\xdc\xdc\xd8\xd5\xd5\xd0\xcd\xc9\xb9\xaa\x1f\ \x19\x11\x01\x01\x00\x4c\x3a\x27\x31\x24\x18\x2d\x21\x15\x2e\x22\ \x16\x42\x31\x20\x46\x35\x22\x1b\x14\x0d\x17\x11\x0b\x1f\x17\x0e\ \x2b\x20\x15\x2a\x1f\x14\x27\x1d\x12\x2e\x23\x16\x30\x24\x17\x39\ \x2b\x1b\x3e\x2e\x1e\x41\x30\x1f\x33\x27\x19\x2d\x22\x15\x37\x29\ \x1a\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x40\x30\x20\ \x3a\x2c\x1d\x48\x37\x24\x78\x5b\x3e\x7f\x60\x42\x7c\x5f\x40\x37\ \x2a\x1b\x2b\x20\x15\x35\x28\x1a\x37\x29\x1b\x2e\x22\x16\x42\x32\ \x21\x3d\x2e\x1e\x1f\x17\x0f\x31\x25\x19\x85\x66\x47\x8c\x6c\x4a\ \x9e\x7a\x55\x47\x36\x24\x2d\x22\x15\x3f\x30\x1f\x35\x28\x19\x2b\ \x21\x15\x24\x1c\x12\x2a\x20\x14\x3b\x2c\x1d\x32\x25\x18\x37\x29\ \x1b\x3d\x2e\x1e\x51\x3d\x27\x5f\x47\x2f\x5e\x47\x2f\x63\x4a\x31\ \x36\x29\x1a\x4b\x38\x25\x67\x4d\x33\x6e\x53\x37\x66\x4d\x33\x46\ \x35\x23\x38\x2b\x1c\x4e\x3b\x28\x6f\x55\x39\x8d\x6b\x49\x65\x4d\ \x34\x3c\x2d\x1d\x33\x27\x18\x98\x75\x51\x81\x63\x44\x81\x63\x43\ \xa9\x82\x5a\xa8\x81\x5a\xa2\x7d\x56\x9f\x79\x53\x75\x5a\x3e\x24\ \x1b\x10\x25\x1c\x12\x22\x19\x0f\x4f\x3c\x29\x8f\x6e\x4d\xa3\x7e\ \x57\xa5\x7f\x58\xa5\x7f\x59\xac\x86\x5e\xa7\x82\x5b\x76\x5b\x3e\ \x2d\x22\x16\x30\x24\x17\x32\x26\x18\x2e\x23\x17\x32\x24\x18\x2b\ \x21\x15\x43\x32\x21\x65\x4d\x33\x6e\x53\x38\x54\x41\x2b\x32\x25\ \x18\x30\x24\x18\x36\x29\x1a\x36\x29\x1a\x36\x28\x19\x3e\x2e\x1e\ \x49\x36\x23\x4a\x38\x24\x43\x32\x21\x3b\x2c\x1d\x37\x29\x1a\x38\ \x29\x1a\x34\x27\x19\x39\x2b\x1c\x49\x37\x23\x45\x34\x22\x46\x35\ \x22\x3c\x2d\x1d\x3a\x2c\x1c\x38\x2a\x1b\x3e\x2e\x1e\x31\x25\x18\ \x3a\x2c\x1b\x42\x32\x20\x4b\x38\x25\x54\x3f\x29\x3e\x2e\x1e\x3f\ \x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3e\x2f\x1f\x34\x27\x19\x35\x2a\ \x1d\x3d\x3b\x39\x0b\x0b\x0c\x00\x00\x00\x0a\x0b\x0b\x74\x77\x78\ \x74\x77\x78\x44\x46\x47\x91\x95\x96\x95\x98\x9a\x98\x9b\x9d\x83\ \x86\x88\x5d\x5f\x62\x89\x8b\x8c\xa1\xa4\xa4\xa2\xa5\xa7\xa3\xa6\ \xaa\x89\x8a\x90\x4c\x4b\x51\x9a\x9b\x9e\xa4\xa7\xaa\xa5\xa8\xac\ \xa9\xab\xae\x96\x97\x9b\x00\x00\x00\xe5\xe0\xdf\xe4\xdf\xde\xe1\ \xdc\xda\xdd\xd8\xd6\xd6\xd1\xce\xc9\xb9\xa9\x2d\x24\x1b\x00\x00\ \x00\x33\x26\x1a\x24\x1b\x12\x27\x1d\x13\x3b\x2c\x1c\x44\x33\x22\ \x4a\x38\x23\x19\x13\x0c\x17\x12\x0b\x16\x11\x0b\x1c\x15\x0d\x1e\ \x17\x0e\x26\x1d\x12\x30\x23\x17\x2f\x23\x17\x38\x2a\x1b\x3e\x2e\ \x1e\x3d\x2e\x1d\x3e\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2f\x23\x16\ \x2c\x21\x15\x2d\x22\x16\x27\x1d\x13\x43\x32\x21\x37\x2a\x1b\x3b\ \x2d\x1d\x85\x66\x46\x8e\x6d\x4b\x89\x69\x48\x44\x34\x22\x28\x1d\ \x13\x3b\x2b\x1c\x43\x32\x20\x31\x25\x17\x44\x34\x22\x48\x36\x23\ \x36\x28\x19\x39\x2b\x1c\x82\x65\x45\x9f\x7b\x55\x99\x76\x51\x48\ \x37\x25\x29\x1f\x14\x5c\x47\x2f\x39\x2a\x1b\x34\x26\x19\x25\x1c\ \x12\x2d\x21\x15\x41\x31\x20\x3d\x2e\x1d\x3a\x2c\x1c\x3f\x2f\x1f\ \x4b\x38\x25\x68\x4e\x34\x69\x4f\x35\x5e\x47\x2f\x3d\x2d\x1d\x43\ \x32\x20\x5d\x46\x2e\x7c\x5e\x3f\x89\x68\x46\x91\x6f\x4b\x8d\x6b\ \x49\x8d\x6c\x49\x8d\x6b\x48\x81\x62\x43\x3d\x2e\x1e\x37\x29\x1b\ \x35\x28\x1b\x95\x73\x51\x89\x69\x48\x9d\x79\x54\x9d\x79\x54\x9b\ \x78\x53\x91\x6f\x4d\x65\x4c\x35\x30\x24\x17\x29\x1f\x14\x27\x1c\ \x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x46\x36\x24\x5f\x48\x30\ \x64\x4c\x33\x4e\x3b\x27\x34\x27\x18\x26\x1c\x12\x27\x1d\x13\x2d\ \x22\x15\x31\x25\x17\x36\x29\x1a\x3e\x2e\x1e\x3c\x2d\x1d\x2e\x23\ \x16\x29\x1e\x14\x2b\x20\x14\x27\x1e\x13\x2a\x1f\x14\x2b\x20\x14\ \x34\x27\x19\x33\x26\x18\x35\x28\x1a\x3d\x2d\x1d\x40\x30\x1e\x48\ \x36\x22\x47\x36\x22\x46\x34\x22\x46\x35\x22\x3e\x2e\x1d\x48\x37\ \x23\x47\x34\x22\x49\x37\x23\x48\x36\x23\x4a\x37\x24\x41\x31\x1f\ \x39\x2b\x1b\x33\x26\x19\x3e\x2f\x1e\x32\x26\x19\x34\x27\x19\x40\ \x30\x1e\x4e\x3a\x25\x5a\x44\x2c\x4a\x37\x24\x43\x32\x21\x3f\x2f\ \x1f\x34\x26\x19\x35\x27\x19\x2e\x22\x16\x32\x26\x1a\x2b\x28\x25\ \x04\x04\x04\x00\x00\x00\x39\x3a\x3a\x6d\x71\x72\x75\x78\x7a\x45\ \x46\x49\x95\x98\x9b\x94\x97\x9a\x95\x99\x9a\x9e\xa2\xa3\x91\x94\ \x96\x5b\x5c\x60\x88\x89\x8b\xa2\xa4\xa6\x9e\xa1\xa5\xa3\xa6\xab\ \x99\x9a\x9f\x48\x47\x4b\x93\x93\x97\xa4\xa6\xaa\xa7\xa8\xab\xac\ \xad\xaf\x00\x00\x00\xe5\xe0\xe0\xe3\xde\xdd\xe2\xdd\xdc\xde\xda\ \xd9\xd7\xd1\xd0\xd1\xca\xc4\x3d\x34\x2b\x03\x02\x01\x28\x1f\x14\ \x30\x25\x18\x24\x1b\x11\x40\x30\x1f\x49\x36\x24\x54\x3f\x29\x22\ \x1a\x10\x16\x11\x0a\x1a\x13\x0c\x1f\x18\x0f\x24\x1b\x11\x2c\x21\ \x15\x2e\x22\x16\x27\x1d\x12\x34\x27\x19\x3b\x2b\x1c\x32\x26\x18\ \x33\x26\x18\x37\x29\x1a\x35\x28\x19\x30\x23\x17\x27\x1d\x12\x2a\ \x20\x14\x28\x1e\x13\x37\x29\x1a\x37\x2a\x1b\x2f\x23\x17\x5e\x47\ \x30\x86\x67\x46\x7d\x60\x43\x45\x34\x22\x37\x29\x1b\x3f\x2f\x1e\ \x3d\x2e\x1e\x24\x1b\x11\x44\x33\x22\x4f\x3b\x28\x39\x2b\x1c\x33\ \x27\x19\x75\x5b\x3e\x89\x69\x48\x98\x75\x51\x50\x3d\x29\x2a\x20\ \x14\x47\x36\x23\x31\x25\x18\x39\x2b\x1c\x2f\x24\x17\x2d\x22\x16\ \x36\x28\x1a\x42\x32\x20\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\x1f\x6a\ \x4f\x34\x73\x56\x3a\x55\x40\x2a\x3f\x2f\x1e\x45\x34\x21\x41\x31\ \x1f\x61\x4a\x31\x87\x67\x46\x94\x71\x4e\x87\x67\x46\x8d\x6c\x4a\ \x64\x4d\x34\x2c\x21\x15\x20\x18\x0f\x24\x1a\x11\x4e\x3c\x28\x58\ \x43\x2e\x50\x3d\x2a\x44\x34\x23\x3e\x2e\x1e\x2d\x22\x15\x22\x19\ \x0f\x23\x1a\x11\x2b\x20\x15\x2a\x20\x14\x2d\x22\x16\x31\x25\x18\ \x2d\x21\x15\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x32\x25\x18\x2e\ \x22\x16\x28\x1e\x13\x26\x1d\x13\x29\x1e\x13\x2d\x22\x16\x30\x24\ \x17\x33\x26\x18\x3f\x30\x1e\x45\x34\x21\x3b\x2c\x1c\x39\x2b\x1b\ \x2c\x21\x16\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x2f\x23\x16\x2b\ \x1f\x14\x31\x24\x18\x3a\x2b\x1c\x37\x29\x1a\x37\x29\x1a\x42\x32\ \x20\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x3d\x2e\x1e\x41\x31\x1f\ \x3f\x2f\x1e\x42\x32\x20\x3f\x2f\x1f\x3c\x2d\x1d\x34\x26\x19\x35\ \x28\x1a\x3d\x2e\x1d\x3e\x2f\x1e\x3a\x2c\x1d\x4e\x3a\x26\x4d\x3a\ \x26\x46\x35\x22\x41\x30\x20\x46\x34\x21\x38\x2a\x1b\x3c\x2d\x1d\ \x3b\x2c\x1d\x2d\x21\x16\x3a\x2c\x1c\x1e\x1b\x16\x00\x00\x00\x00\ \x01\x01\x5e\x61\x62\x69\x6c\x6e\x49\x4a\x4c\x7f\x80\x83\x8e\x91\ \x95\x96\x99\x9d\x97\x99\x9e\x9c\x9f\xa2\xa0\xa2\xa3\x9a\x9b\x9e\ \x5c\x5e\x63\x7e\x81\x83\xa0\xa3\xa6\xa3\xa5\xa9\xa3\xa5\xaa\xa5\ \xa7\xa9\x53\x54\x57\x84\x83\x87\xa6\xa8\xa9\xaa\xac\xad\x00\x00\ \x00\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\xde\xda\xd9\xd8\xd4\xd3\ \xcf\xca\xca\x47\x3e\x35\x03\x03\x02\x18\x13\x0c\x2f\x23\x17\x18\ \x12\x0b\x2b\x20\x14\x36\x28\x19\x44\x33\x20\x1c\x15\x0d\x11\x0d\ \x08\x15\x10\x0a\x1d\x16\x0e\x24\x1b\x11\x2f\x23\x17\x32\x25\x18\ \x29\x1f\x14\x33\x27\x19\x39\x2b\x1c\x37\x2a\x1b\x2f\x23\x16\x36\ \x28\x1a\x2f\x24\x17\x2d\x22\x16\x31\x25\x17\x26\x1c\x12\x24\x1c\ \x11\x35\x28\x1a\x40\x31\x21\x31\x25\x18\x82\x63\x44\x69\x50\x37\ \x70\x55\x3a\x40\x30\x1f\x36\x28\x19\x38\x2a\x1b\x39\x2a\x1b\x20\ \x18\x0f\x43\x33\x22\x4e\x3c\x27\x34\x27\x19\x2b\x20\x14\x73\x58\ \x3c\x87\x67\x48\x83\x64\x46\x44\x34\x23\x26\x1c\x12\x44\x34\x23\ \x33\x26\x18\x37\x29\x1a\x36\x28\x1a\x30\x24\x17\x2d\x21\x15\x36\ \x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x3d\x2d\x1d\x6e\x52\x37\x79\x5c\ \x3d\x52\x3e\x29\x32\x26\x18\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\x1c\ \x34\x27\x19\x38\x2a\x1a\x42\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x36\ \x28\x1a\x2b\x21\x15\x26\x1d\x12\x1d\x15\x0d\x1b\x14\x0d\x23\x1a\ \x10\x1b\x14\x0d\x21\x19\x10\x21\x19\x10\x23\x1b\x11\x28\x1e\x14\ \x29\x1f\x14\x31\x24\x18\x2e\x23\x17\x31\x25\x18\x29\x1e\x13\x2b\ \x20\x14\x31\x24\x18\x3b\x2c\x1c\x39\x2a\x1b\x31\x24\x18\x2e\x23\ \x16\x37\x2a\x1b\x29\x20\x14\x27\x1e\x13\x26\x1c\x12\x32\x25\x18\ \x3d\x2d\x1d\x3c\x2d\x1d\x39\x2b\x1b\x37\x29\x1a\x31\x25\x18\x2d\ \x22\x16\x2f\x23\x16\x30\x24\x17\x34\x27\x19\x36\x28\x1a\x33\x26\ \x18\x33\x26\x18\x35\x28\x1a\x39\x2b\x1b\x42\x31\x1f\x3e\x2e\x1e\ \x36\x28\x19\x35\x28\x1a\x3d\x2d\x1d\x39\x2a\x1c\x3b\x2c\x1d\x41\ \x31\x1f\x4b\x38\x24\x4d\x3a\x26\x43\x32\x21\x36\x29\x1a\x3b\x2c\ \x1c\x3c\x2d\x1d\x36\x28\x1a\x3c\x2d\x1e\x36\x29\x1b\x41\x31\x1f\ \x3d\x2e\x1e\x45\x34\x22\x45\x34\x22\x48\x36\x23\x46\x35\x21\x33\ \x27\x18\x30\x24\x17\x13\x0f\x0c\x00\x00\x00\x22\x23\x23\x5b\x5e\ \x5e\x6c\x6f\x6f\x37\x38\x39\x94\x97\x99\x8d\x8f\x93\x97\x99\x9d\ \x9b\x9e\xa1\x9c\x9e\xa2\x9d\x9f\xa1\x9e\x9f\xa2\xa8\xa9\xae\x5c\ \x5f\x63\x79\x7b\x7f\x99\x9b\x9f\xa5\xa7\xaa\xa3\xa5\xa6\xa9\xaa\ \xab\x6c\x6b\x6e\x6e\x6d\x6f\xa6\xa6\xa8\x00\x00\x00\xe5\xe1\xe0\ \xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\xdb\xd8\xd6\xd5\xce\xc4\xbb\x4d\ \x3e\x2d\x05\x04\x02\x18\x12\x0b\x39\x2c\x1c\x24\x1b\x11\x35\x28\ \x1a\x48\x36\x23\x52\x3e\x28\x29\x1e\x13\x1b\x14\x0d\x19\x13\x0c\ \x1e\x17\x0f\x26\x1d\x12\x2e\x22\x16\x2c\x21\x15\x29\x1f\x14\x2e\ \x23\x16\x32\x25\x18\x31\x24\x18\x37\x29\x1a\x35\x28\x19\x2a\x20\ \x14\x2a\x20\x14\x32\x25\x17\x33\x26\x18\x31\x24\x17\x35\x27\x19\ \x3c\x2e\x1e\x2d\x22\x16\x90\x6f\x4c\x7c\x5e\x40\x7a\x5c\x3f\x49\ \x37\x25\x3a\x2b\x1d\x40\x30\x1f\x3b\x2c\x1c\x21\x19\x10\x36\x29\ \x1b\x4e\x3b\x27\x4a\x38\x25\x3e\x30\x1f\x7a\x5e\x41\x93\x71\x4f\ \xa8\x82\x5c\x67\x4f\x36\x23\x1a\x11\x3f\x30\x20\x29\x20\x13\x34\ \x27\x19\x33\x26\x18\x32\x25\x18\x3a\x2b\x1c\x37\x29\x1b\x3d\x2e\ \x1d\x37\x29\x1a\x45\x33\x21\x5d\x46\x2d\x68\x4e\x33\x4d\x3a\x26\ \x35\x27\x19\x37\x29\x1a\x3c\x2d\x1d\x3c\x2c\x1d\x35\x28\x1a\x34\ \x27\x19\x36\x28\x19\x38\x29\x1b\x37\x2a\x1b\x2f\x23\x16\x2d\x22\ \x15\x29\x1f\x14\x30\x24\x17\x20\x18\x10\x29\x1f\x14\x24\x1b\x12\ \x20\x18\x10\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x2e\x23\x17\x2b\ \x20\x15\x2f\x23\x17\x2c\x21\x15\x28\x1f\x13\x25\x1d\x12\x2f\x23\ \x16\x37\x29\x1a\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x30\x24\x17\ \x2f\x23\x17\x26\x1d\x12\x29\x1f\x13\x34\x27\x19\x40\x2f\x1e\x3e\ \x2f\x1f\x3c\x2d\x1d\x3e\x2e\x1e\x47\x36\x23\x3c\x2d\x1d\x34\x26\ \x19\x36\x28\x19\x36\x28\x1a\x36\x28\x1a\x2f\x23\x16\x2d\x21\x16\ \x31\x24\x17\x36\x29\x1a\x35\x28\x1a\x2f\x23\x16\x31\x25\x17\x37\ \x29\x1b\x40\x30\x1f\x43\x32\x21\x46\x35\x23\x49\x37\x23\x4b\x38\ \x24\x51\x3d\x28\x4f\x3b\x26\x3a\x2c\x1c\x38\x2a\x1b\x3f\x2f\x1f\ \x34\x27\x19\x3b\x2b\x1c\x44\x33\x21\x4a\x37\x24\x41\x31\x20\x45\ \x34\x22\x38\x2b\x1b\x30\x24\x17\x35\x27\x1a\x32\x25\x18\x33\x26\ \x18\x14\x0f\x0a\x00\x00\x00\x45\x48\x47\x5c\x60\x5f\x42\x45\x44\ \x62\x65\x65\x88\x8b\x8d\x8f\x92\x96\x96\x99\x9d\x97\x99\x9d\x9d\ \x9d\xa2\x9d\x9f\xa3\x9c\x9e\xa1\xa2\xa4\xa8\xaa\xad\xb1\x6d\x6e\ \x73\x6d\x6e\x73\x95\x97\x9b\xa8\xab\xac\xa6\xa5\xa7\xac\xab\xac\ \x82\x82\x83\x60\x5f\x62\x00\x00\x00\xe5\xe0\xdf\xe5\xe0\xdf\xe2\ \xde\xdd\xdf\xdc\xdb\xda\xd7\xd6\xd2\xcd\xc9\x67\x5b\x51\x05\x04\ \x03\x12\x0e\x08\x48\x36\x24\x25\x1c\x12\x30\x24\x17\x40\x30\x1f\ \x54\x3f\x29\x30\x24\x17\x19\x13\x0c\x23\x1a\x11\x23\x1b\x11\x22\ \x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2a\x20\ \x14\x2f\x24\x17\x35\x28\x1a\x2e\x22\x16\x25\x1c\x11\x2f\x24\x16\ \x30\x24\x17\x2f\x23\x16\x30\x23\x17\x3f\x30\x1e\x46\x36\x22\x3c\ \x2d\x1d\x90\x6f\x4c\x78\x5b\x3e\x8e\x6c\x4a\x7e\x60\x43\x7a\x5d\ \x40\x75\x59\x3c\x45\x33\x22\x20\x18\x0f\x27\x1e\x13\x71\x58\x3c\ \xa1\x7d\x57\xa2\x7d\x57\x96\x74\x50\x96\x73\x50\xaa\x84\x5d\x74\ \x59\x3e\x26\x1d\x13\x49\x37\x25\x2a\x20\x14\x2d\x22\x15\x36\x28\ \x1a\x33\x26\x19\x46\x34\x22\x42\x32\x20\x44\x33\x21\x37\x29\x1a\ \x42\x31\x20\x52\x3e\x28\x5a\x44\x2c\x51\x3d\x27\x3c\x2d\x1d\x3d\ \x2e\x1e\x3a\x2c\x1c\x35\x27\x19\x32\x25\x17\x2a\x20\x14\x2d\x22\ \x15\x2d\x22\x16\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2a\x20\x14\ \x25\x1c\x12\x20\x17\x0f\x20\x18\x0f\x1f\x18\x0f\x24\x1b\x12\x27\ \x1d\x13\x28\x1d\x13\x2a\x1f\x14\x2e\x22\x16\x28\x1e\x14\x2d\x22\ \x16\x32\x25\x18\x32\x25\x18\x2d\x22\x16\x31\x25\x17\x3a\x2c\x1c\ \x34\x27\x19\x31\x24\x17\x2e\x22\x16\x30\x23\x17\x31\x24\x17\x2a\ \x20\x14\x29\x1f\x14\x30\x24\x17\x31\x25\x18\x33\x26\x19\x3a\x2b\ \x1c\x39\x2b\x1b\x3a\x2b\x1c\x48\x36\x23\x3e\x2f\x1e\x3e\x2e\x1e\ \x43\x32\x20\x3e\x2f\x1e\x37\x29\x1a\x34\x26\x19\x34\x27\x19\x34\ \x27\x19\x36\x28\x1a\x35\x27\x1a\x35\x28\x1a\x43\x32\x20\x42\x31\ \x20\x3c\x2c\x1c\x37\x29\x1a\x3b\x2c\x1c\x48\x36\x23\x4e\x3a\x26\ \x4d\x39\x25\x41\x30\x1f\x3e\x2f\x1e\x38\x2a\x1b\x36\x28\x1a\x3a\ \x2c\x1c\x3d\x2e\x1d\x3e\x2f\x1e\x48\x36\x23\x41\x31\x20\x3c\x2d\ \x1d\x39\x2b\x1c\x33\x26\x18\x2e\x22\x16\x41\x30\x20\x1d\x16\x0e\ \x12\x13\x14\x4b\x4d\x4d\x5c\x60\x5f\x2a\x2c\x2c\x7e\x82\x83\x81\ \x84\x86\x91\x91\x96\x95\x97\x9a\x98\x9b\x9f\x9a\x9d\xa0\x9e\xa0\ \xa4\x9f\xa1\xa5\xa1\xa4\xa8\xa1\xa4\xa8\xb0\xb4\xb8\x80\x80\x85\ \x65\x64\x6a\x8e\x8f\x92\xaa\xa9\xaa\xab\xab\xab\xae\xae\xae\x97\ \x97\x98\x00\x00\x00\xe4\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\ \xdb\xdb\xd7\xd6\xd2\xcf\xcc\x6d\x5d\x4c\x06\x05\x03\x0a\x08\x05\ \x51\x3d\x29\x32\x25\x18\x2f\x23\x16\x37\x29\x1a\x41\x31\x1f\x2d\ \x22\x16\x15\x10\x0a\x2b\x21\x14\x2c\x21\x15\x30\x24\x17\x2b\x20\ \x14\x27\x1e\x12\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x2b\x21\x14\ \x2c\x21\x15\x2a\x1f\x14\x29\x1f\x14\x2d\x22\x15\x2b\x20\x14\x24\ \x1b\x11\x2c\x21\x16\x3f\x2f\x1e\x56\x41\x2b\x3b\x2c\x1c\x84\x66\ \x45\x81\x61\x42\x8d\x6c\x4b\x9d\x78\x54\x96\x73\x4f\x88\x68\x47\ \x58\x43\x2c\x28\x1e\x13\x2d\x22\x15\x7c\x5f\x42\xa8\x82\x5b\x92\ \x71\x4e\x94\x72\x4f\x90\x6f\x4d\xa2\x7d\x57\x7c\x5f\x41\x2f\x24\ \x17\x3a\x2c\x1d\x23\x1a\x11\x24\x1c\x12\x28\x1e\x14\x34\x27\x19\ \x3e\x2e\x1e\x45\x34\x22\x3d\x2e\x1e\x37\x2a\x1a\x42\x31\x20\x5f\ \x47\x2e\x51\x3c\x27\x44\x33\x21\x3a\x2c\x1c\x39\x2b\x1b\x36\x29\ \x1a\x34\x26\x19\x35\x27\x19\x29\x1f\x13\x25\x1c\x12\x2e\x23\x16\ \x33\x26\x18\x33\x26\x18\x2d\x22\x16\x32\x26\x18\x2c\x21\x16\x26\ \x1c\x12\x2c\x21\x15\x28\x1e\x13\x1e\x17\x0e\x20\x18\x0f\x26\x1c\ \x12\x24\x1b\x11\x2a\x20\x14\x2c\x21\x15\x33\x26\x19\x31\x25\x18\ \x30\x24\x17\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x38\x2a\x1b\x3e\ \x2f\x1e\x35\x28\x19\x2b\x21\x15\x2b\x21\x15\x2d\x22\x16\x38\x29\ \x1b\x2f\x23\x17\x33\x26\x18\x31\x25\x17\x32\x26\x18\x37\x2a\x1b\ \x32\x25\x18\x30\x24\x17\x34\x27\x19\x34\x27\x19\x3b\x2c\x1d\x42\ \x31\x20\x3a\x2c\x1c\x3f\x2f\x1e\x46\x35\x22\x45\x33\x21\x3c\x2d\ \x1d\x38\x2a\x1b\x3c\x2d\x1d\x47\x35\x23\x43\x32\x20\x3e\x2e\x1e\ \x38\x2a\x1a\x36\x29\x1a\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x3f\ \x2f\x1e\x3d\x2e\x1d\x34\x28\x19\x37\x29\x1a\x35\x28\x19\x33\x27\ \x19\x38\x2b\x1b\x40\x30\x1e\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\ \x34\x27\x19\x2a\x1f\x14\x3f\x30\x1f\x22\x1a\x11\x2c\x2d\x2c\x4d\ \x4f\x4f\x45\x47\x47\x4d\x4e\x50\x77\x7a\x7c\x7e\x81\x84\x90\x91\ \x94\x96\x98\x9c\x94\x96\x9a\x9c\x9e\xa2\xa1\xa2\xa6\x9f\xa1\xa5\ \x9e\xa1\xa5\xa5\xa7\xac\xa3\xa5\xaa\xaa\xac\xaf\x95\x96\x9a\x5f\ \x5f\x63\x80\x80\x81\xa6\xa6\xa7\xb1\xb1\xb1\xad\xad\xae\x00\x00\ \x00\xe4\xdf\xde\xe4\xdf\xdd\xe4\xdf\xde\xe1\xdc\xdb\xda\xd7\xd6\ \xd3\xce\xca\x73\x5e\x49\x07\x06\x04\x09\x06\x04\x40\x31\x20\x31\ \x25\x18\x24\x1b\x11\x2e\x23\x16\x42\x32\x20\x34\x27\x19\x16\x11\ \x0b\x2b\x20\x15\x2e\x23\x16\x37\x29\x1a\x30\x24\x17\x2f\x24\x17\ \x31\x25\x17\x2f\x24\x16\x33\x26\x18\x2d\x22\x15\x33\x26\x19\x2f\ \x23\x16\x25\x1c\x12\x26\x1d\x12\x23\x1a\x10\x24\x1b\x11\x2c\x21\ \x15\x39\x2b\x1c\x52\x3d\x28\x3f\x30\x1f\x89\x69\x49\x8c\x6b\x48\ \x88\x69\x47\x98\x75\x51\x8b\x6b\x4a\x8e\x6d\x4b\x5d\x47\x30\x25\ \x1b\x11\x27\x1d\x12\x78\x5c\x40\xad\x86\x5e\x8a\x6a\x49\x91\x70\ \x4d\x7c\x60\x42\x8e\x6d\x4c\x87\x68\x48\x3a\x2c\x1c\x3c\x2d\x1d\ \x1e\x16\x0e\x1f\x18\x0f\x25\x1c\x12\x31\x25\x18\x33\x26\x18\x3c\ \x2d\x1d\x38\x2b\x1b\x37\x29\x1a\x4a\x37\x24\x70\x55\x37\x56\x40\ \x2a\x3e\x2e\x1e\x31\x25\x17\x30\x24\x17\x2e\x23\x16\x2e\x23\x17\ \x2f\x23\x16\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x32\x26\x18\x33\ \x26\x18\x2e\x22\x15\x33\x27\x19\x3e\x2e\x1e\x34\x27\x19\x35\x27\ \x19\x2f\x23\x16\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x26\x1c\x12\ \x28\x1e\x13\x2a\x1f\x14\x29\x1f\x13\x2c\x22\x15\x2a\x20\x14\x2f\ \x23\x17\x31\x25\x18\x2d\x22\x16\x34\x27\x19\x39\x2b\x1b\x34\x27\ \x19\x2f\x24\x17\x2c\x21\x15\x2f\x23\x16\x48\x36\x23\x37\x2a\x1b\ \x38\x2a\x1b\x3b\x2c\x1c\x38\x2a\x1b\x39\x2b\x1b\x33\x26\x19\x2d\ \x22\x16\x2d\x21\x15\x31\x24\x17\x35\x28\x1a\x3a\x2b\x1c\x3d\x2e\ \x1e\x42\x31\x20\x4b\x38\x24\x47\x35\x23\x3e\x2e\x1e\x39\x2b\x1b\ \x38\x2a\x1b\x41\x31\x20\x43\x33\x20\x44\x33\x21\x37\x29\x1a\x32\ \x26\x18\x32\x26\x19\x3b\x2c\x1c\x3b\x2c\x1c\x41\x31\x1f\x41\x31\ \x20\x3d\x2e\x1d\x3c\x2d\x1d\x36\x28\x1a\x31\x24\x17\x30\x24\x17\ \x39\x2b\x1c\x39\x2b\x1b\x35\x28\x19\x31\x25\x17\x2e\x22\x16\x26\ \x1d\x12\x32\x26\x19\x1f\x19\x12\x37\x39\x39\x4f\x52\x52\x2a\x2c\ \x2c\x6b\x6e\x6f\x74\x76\x79\x84\x86\x89\x8e\x90\x94\x99\x9a\x9d\ \x96\x99\x9d\x9f\xa2\xa6\x9f\xa2\xa6\x9d\xa0\xa4\x9d\xa1\xa5\xa4\ \xa6\xaa\xa3\xa5\xa9\xa8\xa9\xad\xae\xaf\xb3\xa3\xa6\xa7\x70\x71\ \x72\x7a\x7a\x7a\x9d\x9d\x9d\xb1\xb1\xb2\x00\x00\x00\xe6\xe1\xe0\ \xe5\xe0\xde\xe4\xdf\xde\xe2\xde\xdd\xda\xd6\xd6\xd4\xce\xcb\x84\ \x73\x61\x08\x06\x04\x04\x03\x02\x34\x27\x19\x2e\x22\x16\x29\x1f\ \x14\x34\x27\x19\x43\x32\x20\x33\x26\x18\x11\x0d\x08\x29\x1f\x14\ \x2a\x20\x14\x2d\x22\x15\x2f\x23\x17\x34\x27\x19\x37\x29\x1a\x35\ \x28\x19\x35\x28\x19\x34\x27\x19\x36\x29\x1a\x2d\x22\x16\x29\x1f\ \x14\x26\x1d\x12\x22\x1a\x10\x28\x1d\x13\x2e\x23\x16\x3b\x2c\x1d\ \x52\x3e\x29\x3e\x2e\x1e\x81\x63\x44\x8c\x6b\x49\x92\x70\x4c\x99\ \x76\x51\x89\x69\x48\x8a\x69\x48\x65\x4c\x34\x2a\x1f\x14\x23\x1a\ \x10\x6d\x54\x3a\xa8\x82\x5b\x96\x73\x50\x8c\x6c\x4b\x98\x75\x52\ \xa0\x7c\x56\x95\x73\x50\x36\x29\x1a\x42\x32\x21\x2a\x20\x14\x1e\ \x17\x0e\x23\x1b\x11\x2d\x21\x15\x30\x24\x17\x38\x2a\x1b\x3a\x2c\ \x1c\x38\x2a\x1b\x50\x3c\x27\x71\x55\x39\x54\x3f\x29\x44\x33\x21\ \x35\x28\x19\x33\x26\x19\x3a\x2c\x1c\x34\x27\x19\x2d\x21\x15\x2a\ \x20\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x2f\x23\x16\x2c\x21\ \x15\x2f\x24\x17\x34\x27\x19\x30\x24\x17\x2b\x21\x14\x2a\x20\x14\ \x25\x1d\x12\x20\x18\x0f\x22\x19\x10\x25\x1c\x12\x23\x1a\x11\x24\ \x1b\x11\x22\x19\x10\x27\x1e\x13\x27\x1d\x13\x2c\x21\x15\x32\x26\ \x18\x34\x27\x19\x35\x27\x19\x35\x28\x19\x32\x25\x19\x31\x25\x18\ \x2d\x21\x15\x35\x28\x19\x3f\x2f\x1e\x3a\x2c\x1c\x3d\x2e\x1d\x40\ \x30\x1f\x43\x32\x20\x3c\x2d\x1c\x3a\x2c\x1c\x34\x26\x19\x30\x23\ \x17\x2e\x23\x16\x35\x28\x1a\x38\x2a\x1b\x3a\x2c\x1c\x42\x31\x20\ \x44\x32\x20\x3f\x30\x1e\x3b\x2c\x1c\x33\x26\x19\x35\x28\x1a\x38\ \x2a\x1b\x38\x2a\x1b\x3d\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2b\x21\ \x15\x29\x1f\x14\x2e\x23\x16\x38\x2a\x1b\x37\x29\x1a\x46\x34\x21\ \x3f\x30\x1f\x36\x29\x1a\x33\x26\x19\x31\x24\x18\x3c\x2d\x1d\x3b\ \x2c\x1c\x38\x2a\x1b\x33\x27\x18\x33\x26\x18\x27\x1d\x12\x27\x1e\ \x13\x29\x22\x1a\x3a\x3b\x3c\x3e\x40\x41\x3d\x3f\x3f\x69\x6c\x6d\ \x75\x77\x7b\x83\x86\x88\x8f\x91\x93\x96\x97\x9b\x99\x9a\x9e\x9f\ \xa1\xa5\x9e\xa0\xa3\xa0\xa3\xa6\xa4\xa7\xa9\xa3\xa6\xa8\xa5\xa7\ \xaa\xa7\xa8\xab\xab\xac\xb0\xa8\xaa\xab\xb0\xb2\xb3\x80\x80\x81\ \x76\x74\x75\x8f\x8d\x8f\x00\x00\x00\xe6\xe1\xe0\xe5\xe0\xdf\xe4\ \xe0\xdf\xe2\xde\xdd\xdb\xd7\xd6\xd3\xcf\xcf\x94\x84\x72\x09\x07\ \x05\x04\x03\x02\x2d\x22\x16\x30\x23\x17\x32\x26\x18\x35\x28\x1a\ \x3a\x2b\x1c\x2f\x23\x16\x16\x11\x0a\x20\x18\x0f\x24\x1c\x12\x27\ \x1e\x13\x2b\x20\x15\x33\x26\x18\x3c\x2d\x1d\x3b\x2c\x1c\x35\x28\ \x1a\x36\x28\x1a\x2c\x21\x16\x28\x1e\x13\x26\x1c\x12\x2d\x21\x15\ \x2a\x1f\x13\x22\x19\x10\x26\x1c\x12\x2c\x21\x15\x50\x3c\x28\x31\ \x25\x18\x6b\x52\x38\x7f\x61\x41\x83\x64\x44\x94\x72\x4f\x85\x66\ \x46\x87\x67\x46\x68\x4f\x35\x31\x24\x17\x28\x1e\x13\x55\x41\x2c\ \x8e\x6e\x4c\xa1\x7d\x57\xa1\x7c\x57\x9a\x76\x53\x9f\x7b\x56\x96\ \x73\x50\x35\x29\x1a\x44\x33\x22\x3f\x30\x1f\x2f\x24\x17\x2a\x20\ \x14\x2d\x21\x15\x32\x26\x18\x2f\x23\x17\x38\x2b\x1b\x40\x30\x1f\ \x59\x43\x2d\x7d\x5f\x40\x64\x4b\x32\x56\x40\x2a\x48\x36\x22\x4e\ \x3b\x26\x52\x3d\x29\x3a\x2b\x1c\x30\x24\x17\x2c\x21\x15\x2c\x22\ \x16\x29\x1f\x13\x2d\x22\x16\x27\x1e\x13\x2a\x1f\x14\x2e\x23\x17\ \x2e\x23\x16\x30\x24\x17\x2f\x23\x16\x26\x1d\x13\x29\x1f\x14\x23\ \x1a\x11\x23\x1a\x11\x1f\x17\x0f\x24\x1a\x11\x20\x18\x0f\x1e\x17\ \x0f\x23\x1a\x11\x24\x1b\x11\x25\x1c\x12\x28\x1e\x14\x2f\x23\x16\ \x38\x29\x1b\x39\x2b\x1c\x2f\x23\x16\x2f\x23\x16\x29\x1f\x14\x29\ \x1f\x14\x2b\x20\x14\x37\x29\x1b\x3d\x2e\x1d\x37\x2a\x1b\x3a\x2c\ \x1c\x3c\x2c\x1c\x41\x30\x1f\x36\x28\x1a\x36\x28\x1a\x2d\x22\x15\ \x32\x25\x18\x37\x29\x1a\x32\x26\x18\x35\x28\x1a\x3a\x2b\x1c\x3e\ \x2e\x1e\x35\x27\x19\x2c\x21\x15\x2c\x21\x15\x2c\x22\x15\x35\x28\ \x19\x35\x28\x1a\x3b\x2c\x1d\x40\x30\x1f\x33\x27\x19\x2d\x21\x15\ \x33\x26\x19\x30\x24\x17\x32\x26\x18\x3d\x2d\x1d\x3e\x2f\x1e\x3a\ \x2b\x1b\x34\x27\x19\x33\x26\x19\x3c\x2d\x1d\x3f\x2f\x1e\x3b\x2c\ \x1c\x37\x29\x1a\x3a\x2b\x1c\x3a\x2c\x1c\x36\x28\x1a\x3b\x30\x25\ \x42\x42\x41\x21\x22\x23\x56\x58\x5a\x67\x69\x6b\x76\x79\x7c\x85\ \x88\x8b\x8d\x8f\x91\x95\x96\x9b\x9b\x9c\x9f\x9f\xa1\xa3\x9e\xa1\ \xa2\xa2\xa3\xa5\xaa\xab\xad\xa5\xa7\xa9\xa7\xa9\xaa\x9f\xa1\xa2\ \xa6\xa7\xa9\xaa\xab\xad\xa7\xa9\xaa\xad\xaf\xb0\x92\x93\x95\x7a\ \x7a\x7d\x00\x00\x00\xe6\xe0\xdd\xe7\xe2\xdf\xe6\xe1\xdf\xe3\xde\ \xdd\xde\xda\xd9\xd5\xd1\xd1\xa6\x9b\x91\x0a\x09\x06\x02\x01\x00\ \x25\x1c\x12\x2c\x21\x15\x3a\x2c\x1c\x3c\x2d\x1d\x30\x24\x17\x2e\ \x22\x16\x19\x12\x0c\x24\x1a\x11\x23\x1a\x11\x29\x1f\x14\x2c\x21\ \x15\x37\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1e\x39\x2b\x1c\x33\x26\x19\ \x2c\x22\x15\x29\x1f\x14\x24\x1b\x11\x32\x26\x18\x30\x23\x16\x1f\ \x17\x0f\x27\x1e\x12\x22\x1a\x10\x49\x38\x25\x2f\x23\x16\x6b\x51\ \x37\x8d\x6b\x49\x90\x6e\x4c\x93\x72\x4f\x82\x64\x45\x82\x64\x44\ \x6f\x55\x39\x30\x24\x17\x2c\x21\x15\x5b\x45\x2f\x8b\x6b\x4b\x99\ \x76\x52\xa7\x81\x5a\x89\x69\x49\xa2\x7d\x57\xa6\x81\x5b\x3b\x2c\ \x1d\x3d\x2e\x1d\x41\x30\x20\x30\x24\x17\x28\x1e\x14\x2b\x20\x15\ \x30\x25\x17\x2d\x22\x16\x3e\x2f\x1e\x41\x31\x1f\x49\x37\x23\x70\ \x55\x39\x8a\x69\x47\x6a\x50\x35\x66\x4c\x32\x6d\x52\x36\x59\x43\ \x2c\x36\x29\x1a\x2e\x22\x16\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\ \x2c\x21\x15\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2c\x21\x15\x29\ \x1f\x13\x2c\x21\x15\x2c\x21\x14\x31\x24\x17\x2c\x21\x15\x25\x1c\ \x12\x22\x1a\x10\x26\x1c\x11\x25\x1b\x12\x28\x1e\x14\x26\x1c\x12\ \x24\x1b\x11\x21\x19\x10\x25\x1b\x12\x2e\x22\x16\x32\x25\x18\x2e\ \x22\x16\x2b\x20\x14\x31\x25\x17\x2d\x21\x16\x28\x1e\x13\x23\x1a\ \x11\x2e\x21\x16\x33\x26\x19\x31\x25\x18\x39\x2a\x1b\x3a\x2b\x1c\ \x39\x2a\x1c\x32\x25\x18\x33\x26\x18\x29\x1e\x14\x27\x1e\x13\x2d\ \x22\x15\x28\x1e\x13\x2d\x22\x16\x37\x29\x1b\x3d\x2e\x1d\x35\x28\ \x19\x33\x26\x18\x32\x26\x18\x34\x27\x19\x37\x29\x1a\x35\x27\x19\ \x37\x29\x1a\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x42\x31\x20\x3b\ \x2d\x1d\x35\x28\x1a\x3c\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1e\x3b\x2c\ \x1c\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1c\x38\x2a\x1b\x38\x2a\x1b\ \x3f\x2f\x1f\x3d\x2e\x1e\x35\x28\x19\x42\x36\x29\x3d\x3b\x39\x2a\ \x2b\x2c\x5c\x5d\x61\x67\x69\x6c\x78\x7a\x7d\x81\x84\x87\x8b\x8e\ \x91\x9b\x9c\xa0\x9f\x9f\xa2\xa0\xa3\xa4\xa0\xa3\xa4\xa4\xa6\xa7\ \xa8\xa9\xaa\xa4\xa6\xa7\xa7\xa9\xaa\x9f\xa1\xa2\xa8\xaa\xab\xa8\ \xaa\xab\xa7\xa7\xa8\xad\xae\xaf\xad\xaf\xb0\xa2\xa4\xa6\x00\x00\ \x00\xbb\xb5\xb1\xc5\xbb\xb7\xcd\xc2\xbe\xd0\xc8\xc3\xd2\xca\xc8\ \xcf\xca\xc8\xb0\xa0\x92\x0b\x09\x06\x01\x01\x00\x2b\x20\x15\x32\ \x25\x18\x42\x31\x20\x43\x32\x20\x43\x32\x20\x3b\x2c\x1d\x21\x19\ \x0f\x26\x1c\x12\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\x36\x29\x1a\ \x3c\x2c\x1d\x3d\x2e\x1e\x40\x30\x1f\x41\x30\x1f\x3d\x2d\x1d\x37\ \x29\x1b\x30\x24\x17\x3e\x2e\x1e\x30\x24\x17\x2d\x21\x15\x2c\x21\ \x15\x28\x1f\x13\x48\x36\x24\x34\x27\x19\x67\x4f\x36\xaf\x88\x60\ \xb0\x88\x60\xad\x86\x5e\xa3\x7f\x59\x9f\x7b\x56\x8a\x6a\x49\x51\ \x3d\x29\x48\x36\x24\x71\x57\x3b\x96\x73\x50\x92\x70\x4e\x91\x6f\ \x4d\x7d\x5f\x41\x83\x65\x44\x7f\x62\x43\x47\x35\x23\x31\x25\x17\ \x31\x25\x17\x2b\x21\x15\x23\x1a\x11\x2c\x21\x15\x35\x27\x19\x34\ \x26\x19\x40\x2f\x1e\x4a\x37\x24\x45\x34\x21\x4f\x3b\x26\x80\x62\ \x42\x94\x71\x4d\x98\x74\x50\x98\x74\x4f\x7a\x5d\x3e\x45\x33\x21\ \x2e\x22\x16\x2e\x23\x16\x2a\x20\x14\x30\x24\x17\x2e\x23\x16\x2a\ \x1f\x14\x1e\x16\x0e\x24\x1b\x11\x24\x1b\x11\x30\x24\x17\x29\x1f\ \x14\x2a\x20\x14\x2d\x22\x15\x28\x1f\x13\x2b\x20\x15\x31\x25\x18\ \x2a\x1f\x14\x26\x1c\x12\x24\x1b\x11\x22\x1a\x11\x26\x1d\x12\x20\ \x18\x0f\x24\x1b\x11\x30\x24\x17\x2f\x23\x17\x23\x1b\x11\x29\x20\ \x14\x28\x1e\x13\x28\x1e\x14\x29\x1f\x13\x25\x1b\x12\x29\x1f\x13\ \x2d\x21\x15\x32\x25\x18\x30\x25\x17\x3a\x2b\x1c\x3d\x2e\x1e\x35\ \x28\x1a\x32\x25\x18\x2a\x1f\x15\x28\x1f\x13\x2a\x1f\x14\x24\x1b\ \x12\x27\x1d\x12\x32\x26\x18\x3a\x2b\x1c\x39\x2a\x1b\x35\x28\x19\ \x33\x26\x18\x3a\x2c\x1c\x3b\x2c\x1d\x39\x2b\x1b\x32\x25\x18\x35\ \x27\x19\x40\x2f\x1f\x46\x35\x22\x43\x33\x21\x3a\x2c\x1c\x39\x2a\ \x1b\x4d\x3b\x26\x4b\x38\x25\x3f\x2f\x1e\x36\x28\x1a\x3a\x2c\x1c\ \x3c\x2d\x1d\x38\x2a\x1b\x3f\x30\x1f\x41\x31\x1f\x41\x31\x1f\x32\ \x25\x17\x29\x1f\x13\x4d\x3d\x2d\x2c\x29\x25\x44\x45\x47\x58\x5a\ \x5c\x67\x69\x6c\x78\x7a\x7d\x7e\x80\x84\x8f\x91\x95\x98\x9a\x9e\ \x9c\x9e\x9f\x9e\xa0\xa2\xa4\xa5\xa7\xa7\xa9\xaa\xa3\xa5\xa6\xa5\ \xa7\xa8\xa7\xa9\xaa\xa6\xa8\xa9\xad\xad\xaf\xa6\xa7\xa8\xa9\xaa\ \xab\xa9\xab\xac\xaf\xb0\xb0\xab\xab\xad\x00\x00\x00\xc7\xc4\xbf\ \xc2\xbd\xb8\xbe\xb8\xb3\xbb\xb5\xb1\xb5\xad\xa9\xb1\xa8\xa5\xa1\ \x88\x71\x0c\x0a\x06\x03\x03\x02\x33\x27\x19\x41\x31\x20\x40\x30\ \x1f\x3f\x2f\x1e\x46\x34\x22\x41\x30\x1f\x25\x1b\x12\x1e\x16\x0e\ \x23\x1b\x11\x25\x1c\x11\x28\x1e\x14\x2c\x20\x15\x32\x25\x18\x3a\ \x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x33\x26\x19\x30\x23\x17\x29\x1f\ \x14\x3b\x2c\x1d\x30\x24\x18\x2d\x21\x15\x2c\x21\x15\x2c\x21\x15\ \x39\x2b\x1c\x2e\x23\x16\x50\x3d\x29\x91\x70\x4e\x7d\x60\x42\x78\ \x5d\x40\x70\x56\x3b\x66\x4e\x35\x58\x43\x2d\x49\x37\x24\x3f\x2f\ \x1f\x42\x32\x21\x4f\x3c\x28\x4b\x39\x26\x3f\x2f\x20\x37\x29\x1b\ \x37\x2a\x1b\x32\x26\x19\x2e\x23\x16\x2d\x21\x16\x3c\x2d\x1d\x32\ \x25\x17\x30\x24\x17\x32\x25\x18\x3e\x2e\x1d\x3c\x2d\x1d\x40\x30\ \x1f\x4d\x39\x25\x43\x32\x20\x38\x29\x1b\x4a\x37\x24\x66\x4d\x33\ \x72\x57\x3a\x79\x5c\x3e\x6b\x51\x36\x43\x32\x20\x2c\x21\x15\x29\ \x1e\x13\x27\x1e\x13\x26\x1d\x12\x2b\x20\x15\x2b\x20\x15\x1f\x16\ \x0e\x1d\x16\x0e\x29\x1f\x14\x37\x29\x1a\x2b\x20\x15\x2b\x1f\x14\ \x2f\x23\x16\x2e\x23\x16\x2c\x22\x15\x36\x28\x1a\x2a\x1f\x14\x24\ \x1c\x11\x21\x19\x10\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x26\x1c\ \x12\x28\x1e\x13\x2b\x21\x15\x23\x1b\x11\x23\x1a\x11\x22\x19\x10\ \x21\x19\x10\x28\x1e\x13\x22\x19\x10\x23\x1a\x11\x25\x1b\x11\x2a\ \x1f\x14\x2b\x20\x14\x30\x24\x17\x38\x2a\x1b\x2c\x22\x15\x2b\x20\ \x15\x2b\x20\x15\x2b\x20\x14\x28\x1e\x13\x25\x1c\x12\x26\x1c\x12\ \x2c\x21\x15\x2f\x23\x16\x36\x28\x1a\x37\x29\x1a\x34\x27\x19\x37\ \x29\x1a\x3a\x2c\x1c\x3c\x2e\x1d\x36\x28\x1a\x32\x25\x18\x37\x2a\ \x1b\x44\x33\x21\x3c\x2e\x1e\x34\x26\x18\x34\x27\x19\x3a\x2c\x1c\ \x44\x33\x21\x44\x33\x21\x3e\x2e\x1e\x3c\x2d\x1d\x40\x30\x1f\x40\ \x30\x1f\x47\x35\x22\x46\x34\x21\x42\x31\x20\x36\x28\x1a\x32\x25\ \x17\x57\x44\x30\x31\x2d\x28\x49\x4b\x4c\x58\x59\x5b\x67\x69\x6c\ \x79\x7b\x7e\x83\x85\x89\x8b\x8e\x91\x94\x97\x9b\x9e\x9f\xa2\xa0\ \xa2\xa5\xa3\xa4\xa7\xa6\xa7\xa9\x9d\x9f\xa0\xa1\xa3\xa4\xa7\xa9\ \xaa\xaa\xac\xad\xab\xac\xad\xa4\xa5\xa6\xac\xab\xad\xae\xaf\xb0\ \xad\xae\xaf\xac\xab\xae\x00\x00\x00\xe2\xde\xda\xe0\xdc\xd8\xdd\ \xd8\xd5\xd8\xd4\xd0\xd0\xcc\xc8\xc8\xc2\xbf\xae\x98\x84\x13\x0f\ \x0a\x02\x02\x01\x23\x1b\x11\x3a\x2c\x1d\x32\x26\x18\x3a\x2b\x1b\ \x32\x25\x18\x3e\x2e\x1e\x27\x1d\x12\x16\x11\x0b\x1c\x15\x0e\x22\ \x1a\x10\x25\x1c\x12\x26\x1d\x12\x33\x26\x19\x38\x2a\x1b\x2f\x23\ \x17\x30\x24\x18\x2c\x20\x15\x2d\x22\x15\x2b\x20\x14\x36\x28\x1a\ \x2e\x23\x16\x31\x25\x18\x34\x27\x19\x32\x26\x18\x40\x30\x1f\x2f\ \x23\x16\x2b\x20\x15\x3d\x2d\x1e\x38\x2a\x1b\x35\x28\x1a\x2e\x23\ \x16\x2f\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x3f\x30\x1f\x3f\x30\x1f\ \x3e\x2f\x1f\x45\x34\x23\x3a\x2c\x1c\x2b\x21\x15\x32\x26\x18\x37\ \x29\x1a\x39\x2a\x1b\x3a\x2c\x1c\x3c\x2e\x1e\x32\x26\x18\x35\x28\ \x1a\x2f\x23\x16\x3b\x2c\x1d\x46\x34\x22\x40\x2f\x1f\x47\x34\x22\ \x47\x35\x22\x35\x27\x19\x36\x28\x1a\x3d\x2d\x1d\x43\x32\x20\x48\ \x37\x23\x49\x36\x23\x36\x29\x1a\x2a\x20\x15\x28\x1e\x14\x23\x1a\ \x11\x1f\x17\x0f\x2b\x20\x15\x22\x1a\x10\x23\x1b\x11\x27\x1d\x13\ \x32\x25\x18\x30\x24\x17\x24\x1b\x12\x28\x1e\x13\x27\x1d\x13\x2b\ \x21\x14\x2f\x24\x17\x2c\x21\x15\x24\x1b\x11\x24\x1c\x11\x27\x1d\ \x13\x1e\x16\x0e\x1b\x14\x0d\x22\x1a\x10\x23\x1a\x11\x20\x19\x10\ \x21\x19\x10\x1f\x18\x0f\x1c\x15\x0e\x1b\x14\x0d\x20\x18\x10\x25\ \x1c\x12\x27\x1e\x13\x24\x1b\x11\x27\x1d\x13\x2a\x1f\x14\x2d\x21\ \x15\x35\x28\x1a\x36\x28\x1a\x2b\x20\x14\x2e\x23\x16\x30\x24\x17\ \x32\x25\x18\x30\x24\x18\x2d\x22\x16\x2c\x21\x15\x2a\x20\x14\x2a\ \x20\x14\x36\x29\x19\x36\x28\x19\x30\x24\x17\x35\x28\x19\x39\x2b\ \x1c\x3d\x2e\x1d\x3b\x2c\x1c\x3f\x2f\x1e\x3c\x2d\x1d\x41\x30\x1f\ \x3d\x2d\x1d\x35\x28\x1a\x37\x29\x1b\x31\x25\x18\x37\x2a\x1b\x4e\ \x3b\x27\x3a\x2b\x1c\x3d\x2d\x1d\x3e\x2e\x1e\x41\x31\x20\x3b\x2c\ \x1d\x34\x27\x19\x32\x25\x18\x31\x25\x18\x30\x24\x17\x4d\x3a\x27\ \x3e\x3b\x36\x4b\x4c\x4d\x59\x5b\x5d\x6a\x6c\x6f\x78\x7a\x7d\x87\ \x8a\x8d\x8e\x91\x94\x98\x9a\x9d\x9d\x9e\xa2\xa2\xa3\xa7\xa7\xa7\ \xab\xa5\xa7\xab\xa8\xa9\xac\xa7\xa9\xaa\xa2\xa4\xa5\xa8\xa7\xa9\ \xac\xad\xae\xac\xad\xae\xab\xaa\xac\xb1\xb0\xb2\xae\xae\xaf\xad\ \xae\xb0\x00\x00\x00\xe7\xe2\xde\xe5\xe0\xdd\xe3\xde\xdb\xe1\xdd\ \xda\xdd\xd8\xd5\xd6\xd1\xce\xca\xc1\xba\x1e\x18\x10\x02\x02\x00\ \x19\x13\x0c\x37\x29\x1b\x2e\x23\x16\x39\x2b\x1b\x38\x2a\x1b\x43\ \x32\x20\x24\x1b\x11\x12\x0e\x08\x1f\x17\x0f\x25\x1c\x11\x2a\x1f\ \x14\x2d\x22\x15\x3f\x30\x1f\x3e\x2e\x1e\x30\x24\x18\x31\x25\x18\ \x2f\x23\x17\x2b\x21\x15\x2c\x21\x15\x36\x29\x1a\x33\x27\x19\x35\ \x27\x19\x3e\x2f\x1e\x4b\x38\x25\x59\x43\x2d\x72\x58\x3c\x63\x4c\ \x33\x68\x50\x35\x54\x40\x2a\x68\x50\x36\x5e\x49\x31\x56\x42\x2c\ \x48\x36\x23\x43\x32\x21\x34\x27\x1a\x2d\x22\x16\x2d\x22\x16\x31\ \x25\x18\x30\x25\x17\x31\x25\x17\x30\x24\x17\x28\x1e\x13\x27\x1e\ \x13\x32\x26\x18\x3a\x2b\x1c\x3b\x2d\x1d\x2c\x21\x15\x2c\x21\x15\ \x33\x26\x19\x37\x29\x1a\x38\x2a\x1b\x44\x33\x20\x4c\x39\x25\x37\ \x29\x1b\x3f\x2f\x1e\x3a\x2c\x1c\x36\x29\x1a\x39\x2b\x1c\x37\x28\ \x1a\x2b\x21\x15\x2e\x23\x16\x2a\x20\x14\x22\x1a\x10\x22\x1a\x10\ \x2a\x1f\x14\x28\x1f\x13\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x2b\ \x20\x15\x30\x25\x18\x1f\x18\x0f\x29\x1e\x13\x28\x1e\x13\x2d\x21\ \x15\x26\x1d\x12\x2a\x20\x14\x29\x1f\x14\x27\x1d\x13\x1b\x14\x0d\ \x1a\x13\x0c\x23\x1b\x11\x25\x1c\x12\x23\x1a\x11\x21\x18\x10\x22\ \x1a\x10\x20\x18\x0f\x26\x1d\x12\x24\x1b\x11\x24\x1c\x11\x26\x1c\ \x12\x27\x1d\x12\x25\x1b\x11\x24\x1b\x11\x27\x1e\x12\x2e\x22\x16\ \x26\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x22\x17\x30\x24\x17\x2f\ \x24\x16\x34\x27\x19\x35\x28\x19\x2a\x20\x14\x27\x1d\x12\x28\x1e\ \x13\x28\x1e\x14\x2a\x1f\x14\x2e\x22\x15\x30\x24\x17\x33\x27\x19\ \x32\x25\x18\x3a\x2b\x1c\x34\x27\x19\x33\x26\x18\x32\x25\x18\x2b\ \x21\x15\x31\x25\x18\x32\x25\x18\x37\x29\x1b\x3b\x2c\x1d\x31\x25\ \x17\x3b\x2d\x1c\x3e\x2e\x1e\x42\x32\x20\x37\x29\x1b\x2b\x20\x14\ \x32\x25\x18\x35\x28\x1a\x32\x25\x18\x48\x37\x27\x47\x44\x40\x4f\ \x50\x51\x5c\x5e\x60\x6e\x70\x73\x79\x7c\x7e\x89\x8b\x8e\x91\x93\ \x96\x9c\x9d\x9f\x9f\xa0\xa4\xa0\xa1\xa4\xa1\xa1\xa3\xa3\xa4\xa5\ \xaa\xab\xad\xad\xac\xae\xa4\xa5\xa7\xab\xac\xae\xa7\xa6\xa8\xae\ \xb0\xb1\xac\xaa\xac\xb0\xae\xb1\xae\xad\xaf\xae\xb0\xb1\x00\x00\ \x00\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe1\xdd\xda\xdd\xd8\xd6\ \xd8\xd3\xd0\xce\xc9\xc7\x2f\x28\x22\x01\x01\x00\x0e\x0a\x06\x25\ \x1b\x12\x32\x25\x18\x41\x30\x20\x39\x2b\x1c\x3c\x2e\x1d\x27\x1e\ \x13\x0e\x0b\x06\x1e\x17\x0f\x2c\x20\x15\x2d\x22\x15\x2e\x23\x16\ \x30\x24\x17\x35\x28\x1a\x37\x29\x1b\x39\x2b\x1b\x32\x26\x18\x28\ \x1e\x13\x20\x18\x0f\x2f\x23\x17\x33\x26\x19\x36\x28\x1a\x38\x2a\ \x1b\x41\x31\x1f\x40\x30\x20\x42\x32\x20\x34\x27\x1a\x2d\x23\x16\ \x2f\x24\x17\x39\x2c\x1d\x40\x30\x20\x3d\x2e\x1e\x2c\x21\x15\x1f\ \x18\x0f\x1c\x15\x0e\x1f\x17\x0f\x1e\x17\x0e\x22\x19\x10\x2a\x1f\ \x13\x2b\x20\x14\x1e\x17\x0e\x1e\x17\x0e\x2c\x21\x15\x31\x24\x17\ \x37\x29\x1b\x34\x28\x19\x31\x25\x18\x27\x1d\x13\x2d\x22\x16\x2b\ \x20\x14\x31\x25\x18\x3c\x2d\x1d\x3d\x2e\x1d\x3f\x30\x1e\x3e\x2f\ \x1e\x39\x2b\x1c\x39\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x31\x25\x17\ \x3b\x2c\x1c\x37\x2a\x1b\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x22\ \x1a\x10\x25\x1c\x11\x2a\x20\x14\x2e\x22\x16\x26\x1c\x12\x2e\x23\ \x17\x25\x1c\x12\x23\x1b\x10\x26\x1d\x12\x27\x1d\x13\x1f\x18\x10\ \x22\x19\x10\x25\x1c\x12\x24\x1b\x11\x20\x18\x10\x1f\x18\x0f\x27\ \x1e\x13\x30\x23\x16\x30\x24\x17\x31\x24\x17\x32\x25\x18\x31\x25\ \x18\x2e\x23\x17\x2d\x22\x16\x2b\x21\x15\x28\x1f\x13\x25\x1b\x11\ \x22\x1a\x10\x22\x1a\x11\x24\x1b\x11\x2b\x20\x15\x20\x18\x0f\x20\ \x18\x0f\x23\x1b\x11\x2d\x22\x16\x36\x28\x1a\x38\x29\x1b\x3f\x2f\ \x1e\x3d\x2d\x1d\x35\x28\x19\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\ \x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x24\x17\x37\ \x2a\x1b\x2f\x23\x16\x2e\x23\x16\x2d\x21\x15\x2d\x22\x16\x2d\x22\ \x15\x2d\x22\x16\x2f\x23\x16\x2e\x23\x16\x30\x24\x17\x31\x25\x17\ \x2c\x21\x15\x2f\x24\x17\x31\x25\x18\x30\x24\x17\x36\x29\x1a\x35\ \x28\x19\x2c\x21\x15\x5d\x48\x31\x51\x4c\x46\x55\x56\x56\x61\x63\ \x64\x70\x73\x74\x7c\x7e\x82\x88\x8a\x8c\x93\x94\x98\x9c\x9d\xa1\ \x9e\x9f\xa3\xa1\xa2\xa6\x9d\x9e\xa2\xa3\xa4\xa8\xa9\xab\xad\xa9\ \xab\xac\xa5\xa7\xa8\xa3\xa5\xa6\xa9\xa8\xaa\xa6\xa5\xa7\xad\xac\ \xae\xb0\xb0\xb1\xac\xab\xad\xad\xad\xaf\x00\x00\x00\xe6\xe1\xde\ \xe5\xe0\xdd\xe4\xdf\xdd\xe2\xde\xdb\xe0\xdb\xd8\xd9\xd4\xd1\xcf\ \xca\xc7\x3c\x37\x31\x01\x01\x00\x0d\x0a\x06\x1e\x17\x0e\x32\x25\ \x18\x46\x34\x22\x36\x29\x1a\x3f\x30\x1e\x2e\x23\x16\x0b\x09\x05\ \x1e\x16\x0e\x28\x1e\x14\x32\x26\x18\x30\x24\x17\x33\x27\x19\x3f\ \x2f\x1f\x41\x31\x1f\x39\x2a\x1b\x3a\x2c\x1c\x29\x1e\x13\x21\x18\ \x10\x28\x1e\x13\x2c\x21\x15\x3c\x2d\x1d\x3e\x2f\x1e\x3e\x2f\x1e\ \x3f\x2f\x1e\x41\x31\x1f\x2a\x1f\x14\x1f\x17\x0e\x20\x18\x10\x26\ \x1d\x13\x2e\x22\x16\x34\x27\x19\x32\x25\x18\x27\x1d\x13\x27\x1e\ \x13\x24\x1b\x11\x1e\x17\x0e\x1d\x16\x0e\x25\x1c\x11\x2a\x1f\x14\ \x2c\x21\x15\x32\x26\x18\x2d\x21\x15\x31\x25\x17\x35\x28\x1a\x35\ \x28\x19\x2f\x23\x17\x2b\x21\x15\x2f\x23\x16\x34\x27\x19\x37\x2a\ \x1b\x3e\x2e\x1d\x42\x31\x1f\x42\x31\x20\x37\x2a\x1b\x3d\x2d\x1d\ \x44\x32\x20\x42\x31\x20\x39\x2a\x1b\x2c\x22\x15\x2c\x21\x15\x2e\ \x22\x16\x2a\x1f\x14\x27\x1d\x13\x26\x1c\x12\x20\x18\x0f\x21\x19\ \x10\x23\x1b\x11\x29\x1e\x14\x23\x1b\x11\x26\x1c\x12\x1f\x17\x0f\ \x1c\x15\x0d\x1b\x14\x0d\x21\x19\x10\x1b\x14\x0c\x1b\x14\x0d\x1e\ \x17\x0f\x1f\x17\x0f\x1d\x16\x0e\x21\x19\x10\x2a\x20\x14\x31\x24\ \x17\x35\x27\x19\x31\x25\x18\x2c\x21\x16\x34\x27\x19\x30\x24\x17\ \x2e\x23\x16\x34\x27\x19\x2b\x20\x14\x35\x28\x19\x2e\x23\x16\x2e\ \x22\x17\x26\x1c\x12\x24\x1c\x12\x21\x19\x0f\x19\x13\x0c\x23\x1b\ \x11\x2a\x1f\x15\x2e\x23\x16\x32\x25\x18\x38\x29\x1b\x34\x27\x19\ \x30\x24\x16\x27\x1d\x13\x23\x1b\x11\x29\x1e\x14\x2a\x20\x14\x29\ \x1e\x14\x25\x1c\x11\x2b\x20\x14\x2f\x23\x16\x31\x25\x17\x34\x27\ \x19\x31\x24\x17\x35\x27\x19\x36\x29\x1a\x3b\x2c\x1d\x37\x29\x1b\ \x32\x26\x18\x2f\x23\x17\x32\x25\x17\x35\x27\x19\x32\x26\x18\x2e\ \x23\x16\x37\x29\x1b\x35\x28\x1a\x37\x29\x1b\x35\x27\x19\x43\x34\ \x22\x58\x47\x35\x54\x51\x4e\x58\x59\x5a\x66\x68\x68\x72\x75\x76\ \x81\x84\x85\x8e\x91\x94\x99\x9b\x9d\x9f\xa1\xa3\x9f\xa0\xa4\xa2\ \xa3\xa6\xa2\xa3\xa6\xa4\xa6\xa8\xa9\xab\xad\xac\xad\xae\xaa\xab\ \xac\xab\xab\xad\xad\xad\xaf\xac\xab\xad\xaa\xa9\xab\xad\xad\xae\ \xad\xad\xae\xb2\xb1\xb3\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\ \xe0\xdd\xe3\xde\xdc\xe0\xdb\xd8\xd9\xd5\xd2\xd0\xcc\xc9\x3c\x34\ \x2a\x01\x01\x00\x11\x0d\x08\x21\x18\x10\x41\x30\x1f\x46\x34\x22\ \x31\x24\x17\x37\x29\x1b\x2d\x21\x15\x10\x0c\x07\x20\x18\x0f\x28\ \x1e\x13\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x3a\x2b\x1c\x36\x28\ \x1a\x33\x26\x19\x33\x26\x18\x2d\x21\x15\x29\x1f\x13\x25\x1c\x11\ \x2f\x23\x16\x36\x28\x1a\x36\x29\x1a\x33\x26\x18\x3f\x2f\x1f\x46\ \x34\x21\x39\x2a\x1b\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x26\x1c\ \x12\x26\x1c\x12\x2e\x23\x16\x2f\x23\x16\x29\x1e\x13\x28\x1d\x13\ \x1f\x17\x0f\x1f\x18\x0f\x24\x1c\x11\x2c\x20\x15\x30\x23\x17\x2d\ \x23\x16\x32\x25\x18\x2b\x20\x14\x2b\x20\x14\x35\x28\x19\x3a\x2b\ \x1c\x34\x27\x19\x3a\x2c\x1c\x38\x2b\x1b\x4a\x37\x24\x44\x33\x21\ \x3b\x2c\x1c\x42\x32\x20\x4b\x37\x24\x43\x32\x20\x47\x35\x22\x43\ \x32\x20\x34\x27\x19\x2b\x21\x14\x27\x1d\x12\x26\x1d\x12\x25\x1c\ \x12\x29\x1f\x14\x24\x1b\x11\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\ \x26\x1d\x13\x25\x1c\x12\x26\x1d\x13\x2a\x20\x15\x24\x1b\x11\x1c\ \x15\x0e\x1a\x13\x0c\x16\x10\x0b\x13\x0e\x09\x17\x11\x0b\x1c\x15\ \x0d\x20\x19\x10\x24\x1b\x11\x25\x1c\x11\x28\x1d\x13\x2a\x1f\x14\ \x29\x1f\x13\x30\x23\x17\x34\x27\x19\x34\x27\x1a\x2e\x22\x16\x36\ \x28\x19\x2e\x23\x17\x2a\x1e\x14\x2c\x21\x15\x2f\x23\x17\x32\x26\ \x18\x2a\x20\x14\x28\x1f\x13\x1f\x18\x0f\x24\x1b\x12\x25\x1c\x12\ \x2a\x20\x15\x2b\x21\x15\x28\x1e\x14\x24\x1c\x12\x22\x1b\x11\x27\ \x1e\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x3b\x2c\x1d\x34\x27\ \x19\x35\x27\x1a\x38\x2b\x1b\x40\x30\x1f\x35\x28\x1a\x32\x26\x18\ \x2c\x21\x16\x30\x23\x17\x39\x2b\x1c\x38\x2a\x1b\x3f\x2f\x1e\x41\ \x31\x20\x3f\x2f\x1e\x48\x35\x22\x34\x27\x19\x33\x27\x19\x44\x33\ \x21\x36\x28\x1a\x2d\x21\x16\x33\x26\x19\x3f\x2f\x1f\x4e\x41\x34\ \x58\x56\x56\x5e\x60\x61\x6c\x6e\x6f\x7a\x7d\x7e\x85\x88\x8a\x8f\ \x92\x95\x99\x9b\x9c\x9e\x9f\xa4\xa5\xa7\xab\xa2\xa4\xa7\xa2\xa4\ \xa6\xa8\xaa\xab\xaa\xac\xad\xad\xaf\xb0\xab\xac\xad\xa7\xa9\xaa\ \xaa\xab\xac\xb1\xb0\xb2\xaa\xa9\xab\xae\xad\xaf\xa9\xa8\xaa\xb4\ \xb3\xb5\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xdf\xe4\xe0\ \xdd\xe1\xdc\xdc\xda\xd6\xd5\xd0\xc9\xc2\x40\x31\x21\x02\x01\x00\ \x14\x0f\x0a\x24\x1b\x11\x3b\x2c\x1d\x50\x3c\x27\x30\x24\x17\x3d\ \x2d\x1d\x30\x24\x17\x17\x11\x0b\x26\x1d\x12\x24\x1b\x11\x26\x1c\ \x12\x2a\x20\x14\x2a\x20\x14\x32\x25\x18\x35\x27\x19\x35\x28\x19\ \x34\x28\x19\x28\x1f\x13\x2e\x22\x16\x27\x1e\x13\x26\x1d\x12\x27\ \x1e\x13\x24\x1b\x11\x30\x24\x17\x40\x31\x1f\x3b\x2c\x1c\x31\x24\ \x18\x29\x1f\x14\x33\x26\x19\x35\x27\x1a\x28\x1e\x13\x23\x1b\x11\ \x24\x1c\x11\x27\x1d\x12\x36\x28\x1a\x36\x29\x1a\x25\x1c\x12\x22\ \x19\x10\x24\x1b\x11\x26\x1d\x12\x32\x25\x18\x2f\x23\x16\x3a\x2b\ \x1c\x43\x32\x20\x37\x29\x1a\x41\x30\x1f\x38\x2a\x1b\x37\x29\x1a\ \x3e\x2f\x1e\x3a\x2c\x1c\x42\x31\x20\x3f\x30\x1e\x49\x36\x23\x4a\ \x37\x24\x41\x31\x20\x40\x30\x1f\x3c\x2d\x1d\x3e\x2f\x1e\x37\x29\ \x1a\x33\x26\x18\x28\x1d\x12\x1d\x15\x0e\x1e\x16\x0f\x2a\x1f\x14\ \x23\x1a\x11\x20\x18\x0f\x23\x1a\x11\x1c\x15\x0e\x1a\x14\x0d\x20\ \x18\x0f\x25\x1c\x12\x30\x24\x17\x29\x20\x14\x29\x1e\x13\x27\x1e\ \x13\x21\x19\x10\x17\x12\x0b\x19\x13\x0c\x1e\x16\x0e\x2c\x20\x15\ \x2a\x20\x15\x28\x1f\x13\x2f\x23\x16\x2f\x23\x17\x2a\x1f\x14\x2f\ \x23\x16\x33\x26\x19\x2b\x20\x14\x2f\x23\x17\x38\x2a\x1b\x2f\x23\ \x17\x2a\x1f\x14\x29\x1f\x13\x35\x28\x1a\x37\x29\x1b\x35\x28\x1a\ \x2d\x21\x16\x24\x1a\x12\x23\x1b\x11\x2c\x21\x15\x35\x28\x1a\x2f\ \x23\x17\x28\x1e\x13\x25\x1c\x11\x22\x1a\x10\x24\x1b\x11\x25\x1c\ \x12\x27\x1d\x13\x2b\x21\x14\x31\x25\x17\x31\x25\x18\x31\x25\x18\ \x32\x25\x18\x30\x25\x18\x30\x24\x17\x2d\x22\x16\x2f\x23\x16\x2f\ \x23\x17\x37\x29\x1b\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x45\x34\ \x21\x39\x2a\x1b\x27\x1d\x12\x22\x1a\x10\x2a\x20\x15\x2a\x1f\x14\ \x37\x29\x1b\x58\x43\x2d\x4d\x3b\x27\x62\x4b\x33\x64\x60\x5c\x6a\ \x6c\x6f\x77\x7a\x7b\x7c\x7e\x7f\x8a\x8c\x90\x93\x95\x98\x99\x9b\ \x9d\x9e\x9f\xa3\xa4\xa6\xaa\xa2\xa4\xa8\xa3\xa4\xa8\xa4\xa5\xa8\ \xa8\xaa\xac\xaa\xac\xad\xac\xae\xaf\xa8\xaa\xab\xab\xad\xae\xa7\ \xa8\xa9\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\xaf\xae\xb0\x00\x00\ \x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\xe0\xde\xe4\xe0\xdd\xe0\xdc\xd9\ \xda\xd7\xd3\xcc\xbf\xb3\x4e\x3b\x28\x02\x01\x00\x18\x12\x0b\x35\ \x28\x1a\x38\x2a\x1b\x42\x32\x20\x39\x2a\x1c\x3d\x2e\x1e\x27\x1d\ \x12\x18\x12\x0b\x18\x13\x0b\x1e\x17\x0e\x25\x1c\x11\x2b\x21\x14\ \x2a\x1f\x14\x27\x1d\x12\x2f\x24\x17\x33\x26\x18\x2b\x20\x15\x23\ \x1b\x11\x25\x1c\x11\x2a\x20\x14\x20\x18\x0f\x25\x1b\x11\x22\x19\ \x10\x2b\x21\x15\x38\x2a\x1b\x3d\x2e\x1e\x33\x26\x18\x2a\x1f\x14\ \x37\x2a\x1a\x30\x24\x17\x2b\x20\x15\x23\x1a\x11\x1e\x17\x0e\x24\ \x1a\x11\x35\x28\x1a\x31\x25\x18\x1f\x17\x0f\x1a\x14\x0d\x1d\x15\ \x0e\x21\x19\x10\x25\x1d\x12\x2d\x22\x16\x32\x26\x18\x41\x30\x1f\ \x3b\x2c\x1c\x48\x35\x22\x41\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x32\ \x25\x18\x33\x27\x19\x3e\x2f\x1e\x40\x30\x1e\x44\x34\x21\x40\x31\ \x1f\x36\x28\x19\x34\x27\x19\x34\x26\x19\x2e\x22\x16\x2a\x1f\x14\ \x1e\x16\x0e\x19\x13\x0c\x14\x0f\x09\x16\x11\x0a\x10\x0c\x08\x19\ \x12\x0c\x23\x1a\x11\x18\x12\x0c\x16\x11\x0a\x1d\x16\x0e\x23\x1b\ \x11\x35\x27\x19\x3d\x2d\x1d\x33\x27\x18\x27\x1d\x13\x24\x1b\x11\ \x20\x18\x10\x18\x12\x0c\x1d\x16\x0e\x24\x1b\x11\x21\x19\x10\x1c\ \x15\x0d\x28\x1e\x13\x2d\x22\x15\x2d\x22\x15\x3a\x2c\x1b\x35\x27\ \x19\x37\x29\x1a\x35\x28\x19\x39\x2b\x1b\x34\x27\x19\x31\x25\x18\ \x2d\x22\x15\x34\x27\x19\x33\x26\x19\x36\x28\x1a\x31\x25\x17\x36\ \x29\x19\x33\x26\x18\x2d\x22\x16\x2b\x21\x15\x2d\x22\x15\x29\x1e\ \x13\x24\x1a\x11\x26\x1d\x13\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\ \x30\x25\x17\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x36\ \x28\x1a\x3b\x2c\x1c\x34\x27\x19\x3c\x2d\x1d\x33\x26\x19\x36\x29\ \x1a\x3a\x2b\x1c\x3b\x2c\x1d\x44\x33\x21\x4e\x3b\x26\x33\x26\x19\ \x29\x1f\x14\x2c\x21\x15\x23\x1a\x10\x25\x1c\x12\x3e\x2f\x1f\x6a\ \x51\x36\x4d\x3b\x27\x3e\x31\x24\x65\x64\x63\x74\x76\x79\x7f\x81\ \x84\x86\x8a\x8c\x8d\x90\x93\x94\x97\x9a\x99\x9c\x9e\xa3\xa4\xa7\ \xa2\xa3\xa7\xa4\xa5\xa9\xa6\xa7\xab\xa5\xa7\xaa\xa4\xa7\xa9\xae\ \xb1\xb1\xac\xae\xaf\xa7\xa9\xaa\xa7\xa9\xaa\xaa\xab\xad\xab\xaa\ \xac\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\x00\x00\x00\xe7\xe2\xe0\ \xe6\xe1\xe0\xe5\xe1\xdf\xe4\xe0\xde\xe2\xdd\xda\xdb\xd7\xd4\xd3\ \xcc\xc7\x63\x53\x42\x03\x02\x00\x0c\x08\x05\x2b\x21\x14\x38\x2a\ \x1b\x48\x36\x23\x3d\x2e\x1d\x37\x2a\x1b\x32\x25\x18\x18\x12\x0b\ \x1c\x15\x0d\x1c\x15\x0d\x23\x1a\x11\x28\x1e\x13\x29\x1e\x13\x2a\ \x20\x14\x3a\x2c\x1b\x2d\x23\x16\x2b\x20\x15\x34\x27\x19\x36\x29\ \x1a\x31\x25\x18\x30\x24\x17\x2a\x20\x14\x28\x1f\x14\x22\x1a\x10\ \x2a\x1f\x14\x36\x28\x1a\x28\x1e\x13\x2a\x1f\x14\x32\x26\x18\x36\ \x29\x19\x32\x26\x18\x2c\x22\x15\x29\x1f\x14\x26\x1d\x12\x2f\x24\ \x17\x2b\x20\x15\x20\x18\x0f\x20\x18\x10\x1b\x14\x0d\x1f\x17\x0f\ \x24\x1c\x12\x2a\x1f\x14\x31\x25\x17\x36\x28\x1a\x2e\x22\x16\x47\ \x35\x22\x4c\x38\x26\x3e\x2f\x1e\x28\x1e\x14\x23\x1b\x11\x33\x26\ \x19\x3d\x2e\x1d\x3a\x2c\x1c\x3d\x2e\x1e\x3b\x2c\x1d\x34\x27\x18\ \x2b\x20\x14\x2f\x23\x16\x33\x26\x18\x2d\x22\x15\x29\x1e\x13\x22\ \x1a\x10\x22\x1a\x11\x1b\x15\x0d\x1a\x13\x0c\x1e\x17\x0f\x2a\x20\ \x14\x26\x1d\x13\x1f\x17\x0f\x23\x1b\x11\x32\x25\x18\x3e\x2e\x1e\ \x3d\x2d\x1d\x37\x29\x1b\x2d\x22\x15\x2d\x21\x15\x27\x1d\x12\x1c\ \x15\x0e\x1b\x14\x0d\x23\x1a\x11\x22\x19\x10\x23\x1a\x11\x2c\x21\ \x15\x33\x26\x19\x35\x27\x1a\x34\x27\x19\x30\x24\x17\x34\x28\x1a\ \x37\x29\x1b\x35\x28\x1a\x2f\x23\x17\x2c\x21\x15\x2c\x21\x16\x2e\ \x22\x16\x32\x25\x18\x36\x29\x1a\x48\x36\x23\x3c\x2d\x1c\x35\x28\ \x1a\x34\x27\x19\x28\x1e\x13\x2a\x20\x13\x2a\x20\x14\x2c\x22\x16\ \x2d\x21\x15\x2e\x23\x16\x2d\x22\x16\x30\x24\x17\x39\x2b\x1c\x34\ \x27\x19\x35\x28\x1a\x3b\x2d\x1c\x43\x32\x1f\x36\x28\x1a\x35\x28\ \x1a\x37\x29\x1a\x3b\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x31\x24\x17\ \x2e\x22\x16\x2e\x22\x16\x27\x1d\x13\x1e\x17\x0e\x26\x1d\x12\x34\ \x27\x19\x3e\x2e\x1f\x45\x34\x23\x53\x40\x2a\x54\x40\x2b\x32\x26\ \x18\x4c\x44\x3d\x74\x75\x76\x82\x84\x87\x88\x8a\x8c\x8a\x8d\x90\ \x95\x98\x9b\x93\x96\x9a\x9f\x9f\xa3\x9f\xa0\xa4\xa2\xa4\xa8\xa5\ \xa7\xab\xa7\xa8\xac\xa8\xa9\xad\xa0\xa3\xa5\xad\xaf\xb0\xa8\xab\ \xac\xa9\xab\xac\xa7\xa9\xaa\xaa\xac\xad\xac\xad\xae\xb0\xb0\xb2\ \xb2\xb1\xb3\xb2\xb1\xb3\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xdf\xe5\ \xe1\xdf\xe4\xdf\xde\xe3\xde\xdc\xdc\xd7\xd7\xd4\xd0\xcf\x74\x66\ \x57\x08\x06\x03\x17\x12\x0b\x2f\x24\x16\x2b\x21\x15\x46\x35\x22\ \x38\x2b\x1b\x2f\x23\x17\x32\x25\x18\x17\x11\x0b\x1a\x14\x0c\x22\ \x19\x10\x21\x18\x10\x28\x1e\x13\x25\x1c\x12\x26\x1e\x13\x2a\x20\ \x14\x25\x1b\x11\x28\x1d\x13\x29\x1e\x13\x2b\x21\x15\x30\x24\x17\ \x2f\x24\x17\x33\x27\x19\x36\x29\x1a\x2c\x21\x15\x32\x26\x18\x33\ \x26\x18\x2d\x22\x16\x26\x1d\x12\x2e\x22\x16\x2a\x1f\x14\x2d\x21\ \x16\x36\x29\x1a\x2d\x22\x15\x23\x1a\x11\x27\x1d\x13\x22\x1a\x10\ \x1f\x17\x0f\x1c\x15\x0d\x19\x13\x0b\x1f\x17\x0f\x1e\x16\x0e\x23\ \x1b\x11\x26\x1c\x12\x2e\x22\x16\x2e\x22\x15\x40\x2f\x1e\x4a\x37\ \x24\x3d\x2d\x1e\x2c\x21\x15\x24\x1b\x11\x2e\x22\x16\x36\x28\x1a\ \x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1a\x31\x25\x18\x2b\x20\x15\x2a\ \x1f\x14\x2b\x20\x14\x26\x1c\x13\x28\x1d\x13\x27\x1c\x12\x27\x1d\ \x12\x21\x19\x10\x14\x10\x0a\x1c\x16\x0e\x21\x19\x10\x2c\x21\x15\ \x31\x25\x18\x2a\x1f\x14\x30\x24\x17\x3c\x2d\x1d\x38\x2a\x1b\x3f\ \x2e\x1e\x33\x26\x18\x2a\x1f\x14\x2e\x23\x16\x27\x1d\x12\x1d\x16\ \x0e\x1b\x14\x0d\x1a\x14\x0d\x21\x19\x10\x28\x1d\x13\x2b\x20\x14\ \x2f\x23\x16\x38\x2a\x1b\x3a\x2c\x1c\x37\x29\x1a\x30\x24\x17\x30\ \x24\x17\x2f\x23\x17\x2d\x21\x15\x30\x23\x16\x2d\x22\x16\x3b\x2c\ \x1d\x36\x29\x1a\x4a\x37\x24\x3b\x2d\x1d\x31\x25\x18\x2f\x23\x17\ \x2b\x20\x15\x35\x28\x1a\x35\x27\x19\x2d\x21\x15\x30\x24\x17\x2e\ \x22\x15\x30\x24\x17\x37\x29\x1a\x37\x2a\x1a\x30\x24\x17\x37\x29\ \x1a\x3a\x2b\x1c\x33\x27\x19\x37\x29\x1a\x3e\x2e\x1e\x37\x29\x1a\ \x38\x2a\x1b\x38\x29\x1a\x41\x30\x1f\x35\x28\x19\x26\x1d\x13\x26\ \x1c\x12\x22\x1a\x11\x1e\x16\x0f\x37\x2a\x1c\x6f\x55\x39\x78\x5c\ \x3e\x4d\x3a\x26\x5f\x48\x30\x71\x57\x3a\x6a\x5a\x4a\x7a\x77\x74\ \x84\x87\x8a\x8f\x91\x95\x8c\x8f\x92\x93\x96\x99\x96\x9a\x9d\x9c\ \x9f\xa2\x9f\xa1\xa4\x9d\x9f\xa3\xa3\xa4\xa8\xa4\xa6\xaa\xa8\xa9\ \xac\xa7\xa9\xab\xa6\xa8\xaa\xaa\xac\xad\xa4\xa7\xa8\xaf\xb1\xb2\ \xaa\xab\xac\xaa\xac\xad\xab\xab\xad\xaf\xb0\xb2\xae\xad\xaf\xb1\ \xb0\xb2\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xde\xe5\xe1\xe0\xe4\xe0\ \xde\xe3\xde\xdd\xdd\xd8\xd8\xd4\xd0\xcf\x84\x7e\x78\x03\x02\x01\ \x21\x18\x10\x4c\x3a\x27\x3d\x2d\x1d\x41\x30\x1f\x39\x2b\x1c\x32\ \x25\x18\x29\x1f\x14\x1f\x18\x0f\x23\x1b\x11\x27\x1e\x13\x22\x1a\ \x10\x26\x1c\x12\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\ \x27\x1e\x13\x27\x1e\x13\x28\x1e\x13\x32\x26\x18\x39\x2c\x1c\x3c\ \x2d\x1d\x37\x2a\x1b\x37\x2a\x1a\x2b\x20\x15\x2e\x22\x15\x29\x1f\ \x14\x20\x19\x0f\x1f\x18\x0f\x25\x1c\x11\x22\x1a\x10\x2a\x1f\x14\ \x29\x1f\x14\x25\x1c\x12\x29\x1e\x13\x23\x1a\x11\x24\x1b\x11\x23\ \x1a\x11\x1b\x15\x0d\x19\x13\x0c\x1e\x16\x0e\x22\x1a\x10\x27\x1d\ \x12\x28\x1d\x13\x32\x25\x18\x34\x27\x18\x41\x31\x1f\x32\x26\x18\ \x28\x1e\x13\x28\x1e\x13\x2c\x21\x15\x31\x25\x17\x35\x27\x19\x3a\ \x2c\x1d\x38\x29\x1b\x30\x24\x17\x28\x1d\x13\x2c\x21\x15\x2d\x22\ \x15\x2a\x1f\x13\x25\x1b\x11\x20\x17\x0f\x23\x1b\x11\x23\x1b\x11\ \x18\x13\x0b\x21\x19\x0f\x20\x18\x0f\x27\x1d\x12\x29\x1f\x13\x22\ \x19\x10\x29\x1f\x14\x2e\x23\x16\x32\x25\x18\x37\x29\x1a\x38\x2a\ \x1c\x2a\x20\x14\x28\x1e\x13\x32\x25\x18\x30\x24\x17\x27\x1d\x13\ \x24\x1b\x11\x28\x1e\x13\x2c\x21\x15\x32\x26\x17\x38\x2a\x1b\x3d\ \x2d\x1d\x42\x31\x1f\x3c\x2e\x1d\x2f\x24\x17\x30\x24\x17\x2f\x23\ \x16\x3f\x2f\x1f\x29\x1f\x14\x3a\x2b\x1b\x3f\x2f\x1e\x3a\x2b\x1c\ \x58\x43\x2b\x51\x3d\x28\x47\x35\x23\x3b\x2d\x1d\x33\x27\x19\x32\ \x26\x18\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x3b\x2b\x1c\x3e\x2e\ \x1e\x40\x30\x1f\x45\x34\x21\x46\x35\x22\x40\x30\x20\x39\x2c\x1c\ \x44\x33\x21\x3c\x2d\x1d\x30\x24\x17\x34\x27\x19\x2b\x20\x14\x2f\ \x24\x17\x28\x1e\x13\x2e\x23\x18\x27\x1f\x15\x29\x21\x16\x33\x28\ \x1b\x35\x29\x1b\x22\x19\x10\x24\x1c\x13\x32\x29\x1d\x4f\x3f\x2d\ \x60\x4d\x38\x5e\x4e\x3e\x76\x6f\x68\x8c\x8d\x8f\x91\x93\x97\x91\ \x94\x98\x91\x94\x98\xa1\xa4\xa5\x98\x9c\x9e\xa0\xa4\xa6\xa4\xa6\ \xa7\xa2\xa4\xa7\xa2\xa3\xa7\xa2\xa3\xa7\xaa\xab\xae\xa8\xaa\xab\ \xab\xad\xae\xa8\xaa\xab\xa5\xa6\xa7\xa9\xab\xac\xad\xae\xaf\xa9\ \xab\xac\xac\xaa\xac\xb4\xb4\xb6\xac\xab\xad\xaf\xae\xb0\x00\x00\ \x00\xe6\xe2\xe0\xe6\xe1\xe0\xe6\xe2\xe0\xe4\xe0\xdf\xe3\xde\xdd\ \xdd\xd8\xd7\xd4\xd0\xcf\x8b\x80\x76\x05\x04\x02\x1e\x17\x0f\x74\ \x58\x3c\x32\x26\x18\x40\x30\x1e\x36\x29\x1a\x38\x2a\x1b\x32\x25\ \x18\x1b\x14\x0d\x1e\x17\x0f\x26\x1d\x12\x2e\x23\x16\x2c\x21\x15\ \x2d\x22\x16\x2b\x21\x15\x26\x1d\x13\x24\x1a\x11\x23\x1a\x10\x20\ \x18\x0f\x22\x19\x11\x27\x1e\x12\x2a\x20\x14\x25\x1b\x12\x25\x1c\ \x11\x26\x1c\x13\x29\x20\x14\x33\x25\x18\x2d\x22\x16\x26\x1d\x12\ \x2b\x20\x14\x2a\x20\x14\x30\x24\x17\x2e\x22\x16\x2d\x22\x15\x2c\ \x21\x15\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\x22\x1a\ \x11\x1d\x16\x0e\x19\x13\x0b\x1f\x17\x0f\x28\x1e\x13\x1f\x18\x0f\ \x2c\x21\x15\x33\x26\x18\x34\x26\x19\x24\x1b\x11\x1d\x16\x0e\x24\ \x1b\x11\x2a\x20\x14\x2c\x21\x15\x35\x28\x1a\x37\x2a\x1b\x31\x24\ \x17\x35\x28\x1a\x27\x1d\x12\x28\x1e\x13\x2d\x22\x15\x27\x1e\x12\ \x26\x1c\x12\x25\x1b\x11\x27\x1d\x13\x27\x1d\x13\x23\x1a\x11\x24\ \x1b\x11\x21\x19\x10\x29\x1f\x14\x20\x19\x10\x22\x19\x10\x2b\x20\ \x15\x31\x24\x17\x38\x2a\x1b\x3c\x2d\x1d\x35\x27\x19\x2f\x23\x16\ \x2e\x23\x16\x33\x26\x18\x34\x26\x19\x31\x25\x18\x2d\x22\x16\x28\ \x1e\x14\x2c\x20\x15\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x37\x29\ \x1a\x36\x27\x1a\x2a\x20\x14\x24\x1b\x11\x30\x23\x17\x37\x2a\x1a\ \x36\x28\x1a\x3f\x30\x1f\x48\x35\x23\x42\x32\x20\x5c\x45\x2d\x53\ \x3f\x29\x40\x30\x1f\x34\x28\x19\x35\x28\x19\x2d\x22\x15\x28\x1e\ \x13\x27\x1d\x13\x22\x1a\x11\x2f\x23\x17\x35\x28\x1a\x2e\x22\x16\ \x2e\x23\x17\x2a\x20\x14\x2a\x1f\x14\x31\x27\x1b\x2e\x25\x19\x29\ \x1f\x14\x2d\x22\x19\x31\x26\x1b\x2a\x22\x19\x3a\x33\x2b\x43\x3e\ \x36\x39\x36\x31\x37\x35\x33\x52\x52\x50\x3a\x39\x37\x05\x04\x02\ \x0c\x0b\x09\x40\x43\x44\x79\x7c\x7d\x5e\x61\x62\x6c\x6f\x72\x7e\ \x81\x85\x5d\x60\x63\x7b\x7c\x80\x97\x99\x9c\x97\x98\x9c\x98\x9b\ \x9f\xa2\xa5\xa8\x9d\x9f\xa1\xa4\xa6\xa9\xa5\xa6\xa8\xa3\xa4\xa8\ \xa5\xa6\xaa\xa7\xa8\xab\xaa\xab\xaf\xa9\xab\xad\xaa\xac\xad\xab\ \xac\xad\xa6\xa6\xa7\xa5\xa7\xa8\xad\xae\xaf\xad\xae\xaf\xae\xad\ \xaf\xb3\xb2\xb4\xaf\xae\xaf\xad\xac\xae\x00\x00\x00\xe7\xe2\xe1\ \xe6\xe2\xe1\xe7\xe2\xe1\xe5\xe1\xe0\xe3\xde\xdd\xde\xda\xd9\xd7\ \xd3\xd2\x9c\x94\x8e\x05\x05\x03\x1a\x13\x0c\x5f\x49\x31\x33\x26\ \x19\x34\x27\x19\x41\x32\x20\x46\x35\x22\x3a\x2c\x1d\x1d\x17\x0e\ \x1c\x15\x0d\x24\x1b\x11\x24\x1b\x12\x30\x24\x17\x37\x29\x1a\x34\ \x27\x19\x2c\x21\x15\x2e\x22\x16\x2f\x23\x17\x27\x1e\x12\x29\x1e\ \x14\x2b\x20\x15\x2a\x1f\x14\x23\x1a\x11\x1e\x17\x0f\x21\x19\x10\ \x2f\x23\x16\x2e\x22\x16\x2a\x20\x14\x27\x1e\x13\x2d\x21\x16\x2c\ \x21\x15\x2f\x23\x16\x30\x25\x17\x2e\x23\x16\x28\x1e\x13\x22\x1a\ \x11\x21\x19\x10\x1f\x18\x0f\x20\x18\x0f\x1f\x17\x10\x20\x18\x0f\ \x1d\x16\x0e\x21\x18\x10\x21\x19\x10\x22\x1a\x10\x2b\x21\x15\x21\ \x1a\x10\x1a\x14\x0d\x16\x11\x0b\x21\x19\x10\x22\x1a\x11\x29\x1f\ \x14\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x33\x26\x18\x2e\x22\x16\ \x2d\x21\x15\x32\x25\x18\x33\x26\x18\x32\x25\x17\x30\x25\x17\x31\ \x25\x18\x36\x28\x1a\x34\x27\x19\x30\x24\x17\x2f\x23\x17\x24\x1a\ \x12\x2c\x22\x15\x33\x26\x18\x33\x26\x18\x2c\x21\x15\x38\x2b\x1b\ \x39\x2a\x1b\x3f\x2f\x1e\x36\x28\x1a\x2c\x21\x15\x33\x27\x18\x32\ \x26\x18\x2f\x23\x17\x2d\x22\x15\x30\x23\x17\x2e\x22\x16\x2f\x24\ \x17\x2d\x22\x15\x2e\x23\x16\x35\x27\x19\x35\x27\x19\x33\x27\x19\ \x2f\x24\x16\x2f\x23\x16\x3a\x2b\x1c\x42\x31\x20\x3e\x2f\x1d\x39\ \x2b\x1c\x32\x26\x18\x34\x27\x18\x3a\x2b\x1d\x2e\x24\x18\x2e\x25\ \x1a\x2e\x25\x1b\x30\x27\x1d\x33\x2a\x1f\x33\x2b\x21\x34\x2b\x22\ \x35\x2d\x23\x34\x2e\x26\x31\x2b\x24\x1d\x15\x0d\x36\x31\x2b\x28\ \x25\x20\x3c\x3a\x37\x46\x48\x46\x37\x3a\x38\x0d\x0d\x0d\x10\x10\ \x11\x35\x38\x3b\x4c\x4f\x53\x7b\x7e\x80\x83\x87\x88\x83\x87\x88\ \x66\x6c\x6e\x55\x5a\x5a\x14\x14\x15\x00\x00\x00\x26\x28\x28\x7e\ \x83\x85\x4c\x4f\x52\x56\x58\x5b\x91\x93\x95\x99\x9a\x9d\x88\x8a\ \x8e\x67\x69\x6d\x7a\x7c\x80\x9e\xa0\xa4\xa0\xa2\xa6\x9f\xa3\xa6\ \xa0\xa2\xa4\xa7\xa8\xaa\xa2\xa4\xa5\xa3\xa5\xa7\xa6\xa8\xaa\xa5\ \xa6\xaa\xa5\xa7\xaa\xa7\xa9\xab\xad\xad\xaf\xac\xab\xad\xaf\xae\ \xaf\xac\xab\xac\xab\xab\xad\xae\xae\xaf\xaf\xae\xaf\xac\xac\xad\ \xb1\xb0\xb2\xaf\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\ \xe1\xe0\xe6\xe1\xe0\xe3\xde\xdd\xdf\xdb\xda\xd9\xd5\xd4\xaa\xa3\ \x9e\x06\x05\x02\x13\x0e\x09\x51\x3e\x29\x34\x27\x19\x37\x2a\x1b\ \x49\x37\x24\x37\x29\x1b\x3c\x2d\x1d\x2c\x21\x15\x2f\x23\x17\x3c\ \x2c\x1d\x2e\x22\x16\x36\x28\x1a\x35\x27\x19\x41\x31\x1f\x3d\x2e\ \x1e\x33\x26\x19\x40\x30\x1f\x2f\x24\x16\x23\x1a\x11\x2b\x20\x14\ \x2a\x1f\x14\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x25\x1c\x12\x2f\ \x23\x17\x2b\x20\x14\x2a\x1f\x14\x2e\x23\x17\x34\x27\x19\x35\x28\ \x1a\x33\x26\x18\x2a\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\ \x25\x1c\x12\x24\x1c\x11\x27\x1e\x13\x21\x18\x0f\x1f\x17\x0f\x22\ \x1a\x10\x22\x1a\x10\x19\x12\x0c\x1f\x17\x0f\x21\x19\x10\x20\x18\ \x0f\x1d\x16\x0e\x1f\x18\x0f\x2b\x21\x14\x34\x27\x19\x30\x24\x17\ \x31\x25\x17\x37\x29\x1b\x38\x2a\x1b\x34\x27\x19\x39\x2b\x1b\x3a\ \x2b\x1c\x36\x28\x1a\x38\x2a\x1b\x37\x29\x1b\x36\x29\x1a\x41\x31\ \x1f\x3e\x2e\x1e\x38\x2a\x1b\x32\x26\x18\x33\x26\x18\x2e\x22\x16\ \x4c\x3a\x25\x4f\x3b\x26\x32\x26\x18\x2e\x23\x17\x2f\x23\x17\x36\ \x29\x1a\x37\x28\x1b\x2f\x24\x17\x38\x2a\x1b\x2f\x23\x16\x2b\x21\ \x15\x2b\x20\x15\x28\x1f\x13\x28\x1e\x13\x25\x1c\x12\x26\x1d\x12\ \x29\x1f\x14\x2c\x21\x17\x2b\x22\x17\x28\x20\x17\x30\x26\x1d\x38\ \x2d\x21\x30\x28\x1f\x30\x29\x21\x35\x2e\x24\x33\x2d\x25\x35\x2e\ \x29\x3d\x38\x32\x3f\x3d\x39\x42\x40\x3f\x48\x48\x48\x4d\x4e\x4f\ \x53\x57\x59\x5b\x5e\x60\x63\x68\x6a\x6a\x71\x75\x6f\x75\x79\x72\ \x78\x7a\x4e\x56\x59\x00\x00\x00\x16\x17\x19\x52\x55\x58\x7f\x83\ \x85\x71\x76\x78\x33\x38\x3a\x0e\x10\x11\x01\x02\x02\x5a\x5c\x60\ \x72\x76\x7b\x5a\x5e\x62\x87\x8a\x8d\x8a\x8e\x8f\x89\x8e\x8f\x51\ \x55\x55\x00\x00\x00\x0a\x0b\x0b\x64\x66\x67\x9c\xa0\xa1\x5b\x5f\ \x61\x3d\x3f\x43\x87\x88\x8b\x9c\x9d\x9e\x9f\xa0\xa2\x91\x93\x96\ \x6d\x6f\x74\x6b\x6d\x70\xa6\xa8\xaa\xa3\xa5\xa7\xa4\xa4\xa6\xa7\ \xa9\xab\xa3\xa5\xa6\x9e\x9f\xa2\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb2\ \xb3\xa9\xab\xac\xad\xad\xaf\xab\xaa\xac\xb3\xb2\xb3\xab\xab\xac\ \xad\xad\xb0\xb0\xaf\xb1\xaf\xae\xb0\xad\xac\xae\xb2\xb1\xb3\xaf\ \xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\ \xe0\xe4\xe0\xdf\xe0\xdb\xda\xd9\xd6\xd4\xb5\xad\xa6\x07\x05\x03\ \x0a\x07\x04\x4e\x3c\x27\x3c\x2d\x1d\x35\x28\x19\x36\x29\x1a\x38\ \x2a\x1b\x41\x30\x1f\x34\x28\x19\x37\x29\x1b\x3d\x2d\x1d\x28\x1e\ \x13\x2e\x22\x16\x35\x28\x19\x38\x2a\x1a\x43\x32\x20\x3e\x2e\x1e\ \x4c\x3a\x26\x38\x2a\x1b\x30\x25\x17\x2e\x22\x16\x2c\x22\x16\x2a\ \x1e\x14\x29\x1f\x13\x31\x25\x17\x2b\x20\x15\x30\x24\x17\x33\x26\ \x19\x32\x26\x18\x2d\x21\x16\x31\x24\x17\x38\x2a\x1b\x35\x28\x19\ \x2a\x1f\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1d\x12\x27\x1e\x13\x26\ \x1d\x12\x22\x1a\x10\x21\x18\x0f\x26\x1c\x12\x25\x1b\x12\x29\x1e\ \x14\x24\x1b\x11\x23\x1b\x11\x24\x1b\x11\x1f\x18\x0f\x25\x1c\x12\ \x2d\x22\x16\x2b\x21\x15\x31\x25\x17\x32\x26\x18\x36\x29\x1a\x38\ \x29\x1b\x36\x28\x1a\x3c\x2d\x1d\x3e\x2f\x1e\x3b\x2d\x1c\x37\x29\ \x1a\x36\x29\x1a\x34\x26\x19\x34\x27\x19\x32\x26\x18\x3c\x2d\x1d\ \x3a\x2c\x1c\x40\x31\x1f\x3a\x2c\x1c\x3a\x2b\x1c\x39\x2b\x1c\x4b\ \x39\x25\x36\x28\x1a\x23\x1b\x11\x21\x19\x0f\x1e\x17\x0f\x29\x1f\ \x14\x2d\x24\x19\x2e\x26\x1b\x27\x21\x19\x2c\x25\x1d\x2d\x27\x1e\ \x2c\x26\x20\x35\x2e\x26\x2a\x24\x1d\x1c\x14\x0d\x21\x1a\x14\x33\ \x2f\x2b\x48\x44\x41\x4a\x4a\x49\x4d\x4f\x50\x50\x54\x56\x58\x5d\ \x5f\x5f\x65\x67\x67\x6e\x6f\x6c\x73\x77\x6c\x73\x79\x70\x77\x7d\ \x70\x77\x7c\x72\x79\x7f\x72\x79\x80\x71\x78\x7f\x75\x7b\x81\x73\ \x79\x7d\x75\x7a\x7f\x77\x7e\x82\x77\x7d\x81\x7d\x83\x87\x23\x2c\ \x2f\x35\x3c\x3f\x07\x06\x06\x64\x67\x69\x8a\x8e\x92\x76\x7a\x7e\ \x48\x4e\x50\x28\x2d\x2e\x00\x01\x01\x60\x61\x65\x8e\x91\x96\x7a\ \x7f\x82\x56\x59\x5f\x8a\x8d\x8f\x98\x9a\x9b\x22\x23\x24\x00\x00\ \x00\x0f\x0f\x0f\x80\x82\x84\x8c\x8e\x8f\x64\x67\x68\x84\x87\x8a\ \x67\x69\x6e\x7d\x7d\x80\xa0\x9f\xa2\x9d\x9e\x9f\x9e\x9f\xa1\x78\ \x7a\x7c\x64\x65\x66\xac\xad\xad\xa8\xa7\xa8\xab\xaa\xac\xa3\xa3\ \xa5\x80\x80\x83\x46\x45\x47\x33\x32\x32\x63\x63\x63\xa5\xa5\xa5\ \xb2\xb2\xb2\xae\xae\xaf\xb2\xb1\xb2\xac\xac\xac\xae\xae\xaf\xb1\ \xb0\xb1\xaf\xaf\xaf\xb1\xb1\xb1\xb1\xb0\xb1\xae\xae\xae\x00\x00\ \x00\xdf\xd8\xd5\xdf\xd9\xd6\xdf\xd9\xd6\xe1\xdb\xd9\xdf\xdb\xda\ \xdc\xd7\xd6\xd6\xcf\xcc\xbf\xb4\xac\x08\x06\x03\x0c\x0a\x06\x58\ \x44\x2e\x5d\x47\x30\x3f\x2f\x1f\x33\x26\x18\x32\x25\x18\x43\x32\ \x20\x39\x2b\x1c\x3a\x2c\x1d\x3d\x2e\x1e\x22\x1a\x10\x28\x1e\x13\ \x2a\x20\x14\x2b\x20\x15\x48\x36\x23\x3e\x2f\x1e\x3d\x2e\x1d\x3a\ \x2c\x1c\x39\x2b\x1c\x34\x27\x19\x2f\x24\x17\x2e\x22\x16\x32\x25\ \x18\x35\x28\x19\x36\x28\x1a\x30\x24\x17\x30\x24\x17\x34\x27\x19\ \x2f\x24\x17\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x2e\x22\x16\x33\ \x26\x18\x38\x29\x1a\x34\x27\x19\x36\x28\x1a\x34\x27\x18\x2d\x22\ \x15\x2f\x23\x17\x33\x26\x19\x34\x27\x1a\x36\x29\x1a\x2d\x22\x16\ \x2c\x21\x15\x2f\x24\x16\x29\x1f\x13\x36\x29\x1a\x37\x29\x1a\x36\ \x28\x1a\x3a\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1d\x33\x26\x19\x30\x24\ \x17\x34\x27\x19\x2e\x23\x16\x2c\x22\x15\x2a\x20\x14\x2e\x22\x16\ \x36\x28\x1a\x33\x26\x19\x2d\x21\x16\x36\x29\x1d\x37\x2c\x1f\x3a\ \x2f\x22\x39\x2f\x23\x35\x2d\x24\x40\x36\x2c\x42\x39\x2e\x3c\x34\ \x2d\x3c\x36\x2f\x3e\x39\x33\x3f\x3c\x38\x42\x41\x3f\x41\x41\x41\ \x37\x3a\x3c\x3e\x41\x43\x53\x54\x56\x53\x57\x5a\x4e\x53\x56\x5e\ \x64\x67\x41\x48\x4c\x01\x03\x04\x0f\x11\x14\x41\x48\x4f\x64\x6a\ \x6e\x6f\x74\x78\x6f\x77\x7a\x71\x79\x7c\x6f\x78\x7b\x6d\x75\x79\ \x70\x78\x7b\x73\x7b\x7f\x72\x7a\x7e\x71\x79\x7e\x74\x7c\x81\x76\ \x7d\x84\x76\x7e\x84\x75\x7d\x82\x79\x7f\x84\x7c\x82\x87\x7e\x84\ \x89\x7c\x84\x88\x7b\x82\x86\x79\x80\x84\x3f\x49\x50\x57\x5f\x61\ \x05\x07\x08\x6b\x6f\x73\x8e\x92\x96\x86\x8a\x8e\x85\x8a\x8d\x42\ \x47\x49\x0e\x11\x14\x72\x75\x77\x8f\x93\x95\x8f\x93\x95\x8b\x90\ \x93\x56\x5a\x5d\x72\x73\x75\x00\x00\x00\x04\x04\x05\x40\x42\x44\ \x6a\x6e\x71\x5d\x5f\x61\x64\x67\x69\xa5\xa8\xaa\xa1\xa2\xa5\x6c\ \x6d\x72\x77\x78\x7c\x9f\x9f\xa0\xa0\xa2\xa3\x9e\xa0\xa1\x8b\x8d\ \x8e\x58\x58\x59\xa8\xa7\xa8\xab\xaa\xac\xa5\xa4\xa7\x94\x94\x96\ \x32\x32\x33\x00\x00\x00\x15\x15\x16\x3a\x3b\x3c\x8e\x8c\x8c\xb3\ \xb1\xb2\xac\xab\xad\xaf\xae\xb0\xae\xaf\xaf\xb0\xb0\xb0\xad\xad\ \xad\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb1\x00\x00\x00\xdd\xd7\xd2\ \xdd\xd4\xd0\xdd\xd5\xd1\xdc\xd5\xd2\xda\xd3\xd1\xd7\xd1\xcf\xd1\ \xcb\xc8\xc8\xbf\xbe\x0a\x08\x04\x07\x06\x04\x78\x5c\x3f\x94\x72\ \x4f\x50\x3c\x28\x38\x29\x1a\x37\x2a\x1b\x40\x30\x1f\x36\x29\x1a\ \x2a\x20\x15\x30\x24\x17\x25\x1c\x12\x24\x1b\x11\x27\x1d\x13\x29\ \x1e\x14\x2c\x21\x15\x34\x26\x19\x3e\x2f\x1e\x46\x35\x22\x37\x29\ \x1a\x38\x2a\x1b\x40\x30\x1f\x34\x27\x19\x41\x30\x20\x40\x30\x1f\ \x3d\x2e\x1d\x34\x27\x19\x32\x25\x18\x35\x28\x19\x2f\x24\x17\x37\ \x29\x1b\x37\x2a\x1a\x37\x29\x1b\x46\x34\x22\x4d\x39\x25\x52\x3d\ \x27\x4d\x3a\x26\x45\x33\x21\x47\x35\x22\x43\x32\x21\x42\x32\x20\ \x41\x31\x20\x3d\x2e\x1e\x3d\x2e\x1d\x38\x2a\x1b\x2f\x23\x16\x2c\ \x22\x16\x29\x1f\x14\x2d\x22\x16\x26\x1d\x12\x29\x1f\x14\x2d\x21\ \x16\x2d\x22\x15\x2c\x22\x18\x25\x1f\x16\x2a\x24\x1c\x31\x29\x22\ \x33\x2d\x25\x35\x2f\x28\x3a\x35\x2f\x43\x3c\x35\x49\x43\x3a\x4c\ \x45\x3f\x4d\x48\x44\x4c\x49\x47\x4e\x4d\x4c\x51\x53\x53\x56\x58\ \x59\x5c\x5d\x5f\x62\x64\x67\x67\x6b\x6f\x6d\x72\x77\x70\x75\x7a\ \x70\x74\x79\x72\x76\x7a\x6f\x76\x79\x5f\x66\x6c\x5b\x64\x6a\x59\ \x61\x67\x60\x66\x6c\x6e\x72\x76\x56\x5b\x61\x58\x5d\x62\x5f\x65\ \x6a\x2a\x32\x36\x28\x30\x35\x4c\x55\x5c\x61\x69\x6e\x71\x78\x7b\ \x72\x79\x7d\x74\x7c\x80\x77\x80\x84\x73\x7c\x80\x77\x7f\x83\x76\ \x7e\x83\x76\x7e\x82\x76\x7e\x83\x7a\x81\x88\x7b\x84\x8a\x79\x82\ \x89\x7a\x81\x87\x7b\x80\x85\x80\x85\x8b\x80\x87\x8b\x7f\x85\x8a\ \x7e\x84\x89\x80\x86\x8b\x7b\x80\x85\x30\x3b\x3f\x69\x71\x76\x85\ \x89\x8d\x8c\x90\x94\x90\x94\x98\x83\x88\x8b\x58\x5e\x61\x65\x6a\ \x6e\x5d\x63\x67\x84\x87\x8a\x94\x97\x9b\x96\x9a\x9d\x89\x8f\x93\ \x1a\x1c\x1e\x00\x00\x00\x0d\x0f\x0f\x8f\x94\x97\x83\x87\x88\x40\ \x43\x45\x70\x72\x74\x5d\x5d\x5f\x55\x55\x58\x9a\x9a\x9e\x71\x72\ \x76\x75\x76\x79\xa2\xa2\xa3\xa4\xa5\xa6\x9d\x9f\xa0\x97\x99\x9b\ \x61\x61\x63\x90\x8f\x90\xae\xb0\xb0\xa2\xa3\xa5\x4d\x4d\x4e\x00\ \x00\x00\x42\x45\x46\x9c\xa0\xa1\x72\x72\x73\x8f\x8d\x8e\xab\xa9\ \xab\xb2\xb1\xb2\xae\xae\xae\xb1\xb1\xb1\xae\xae\xae\xb0\xaf\xb0\ \xb1\xb1\xb1\xb3\xb3\xb3\x00\x00\x00\xe4\xde\xdb\xe4\xdd\xd9\xe2\ \xdb\xd8\xe2\xda\xd8\xdf\xd9\xd5\xdd\xd6\xd2\xd8\xd2\xce\xcd\xc0\ \xb4\x10\x0d\x08\x07\x05\x03\x62\x4b\x33\x8c\x6c\x4a\x5a\x44\x2e\ \x32\x26\x17\x34\x27\x19\x40\x30\x1f\x34\x27\x19\x2c\x21\x16\x3c\ \x2e\x1e\x29\x1f\x13\x23\x1a\x10\x1f\x17\x0f\x24\x1b\x11\x2a\x1f\ \x14\x32\x25\x18\x38\x2a\x1b\x3b\x2d\x1c\x40\x30\x1e\x3d\x2e\x1e\ \x45\x34\x21\x40\x30\x1f\x45\x34\x21\x43\x32\x21\x44\x33\x21\x44\ \x33\x21\x45\x34\x22\x42\x32\x20\x3e\x2e\x1e\x38\x2a\x1b\x3e\x2e\ \x1e\x49\x38\x24\x4f\x3c\x27\x47\x35\x22\x45\x34\x22\x41\x32\x20\ \x37\x29\x1a\x3a\x2b\x1c\x37\x2a\x1b\x3c\x2e\x1e\x33\x27\x19\x2c\ \x22\x16\x2a\x21\x16\x34\x2a\x1e\x35\x2c\x22\x32\x2c\x25\x3a\x34\ \x2d\x42\x3c\x35\x46\x41\x3b\x4c\x46\x41\x54\x4e\x49\x56\x52\x4e\ \x58\x56\x53\x5f\x5c\x5b\x64\x62\x61\x69\x68\x67\x6e\x6e\x6d\x72\ \x72\x72\x77\x78\x7a\x7c\x7f\x81\x7f\x81\x85\x7e\x81\x85\x7c\x7f\ \x82\x7b\x7e\x81\x79\x7d\x81\x7b\x7e\x83\x7a\x7e\x83\x78\x7b\x81\ \x78\x7c\x81\x78\x7c\x81\x76\x7c\x81\x76\x7c\x80\x74\x79\x7d\x74\ \x7a\x7d\x6e\x73\x78\x58\x61\x68\x66\x6c\x70\x6c\x71\x76\x47\x4f\ \x57\x1c\x24\x2a\x09\x12\x17\x19\x21\x27\x56\x5c\x61\x6d\x71\x75\ \x67\x6e\x72\x56\x60\x64\x60\x69\x6d\x73\x7b\x7f\x78\x80\x84\x78\ \x80\x84\x77\x80\x84\x75\x7e\x82\x79\x82\x86\x77\x80\x84\x78\x80\ \x84\x79\x81\x86\x7c\x83\x89\x7c\x85\x8b\x7d\x85\x8d\x7f\x87\x8e\ \x7e\x85\x8c\x7f\x85\x8b\x7e\x85\x8a\x80\x88\x8d\x80\x87\x8c\x82\ \x88\x8d\x83\x89\x8d\x4c\x55\x5a\x8a\x8e\x93\x8b\x8f\x93\x8b\x8f\ \x94\x8f\x93\x98\x8d\x91\x96\x8b\x8f\x93\x8c\x90\x94\x86\x8b\x8e\ \x57\x5e\x62\x7e\x81\x86\x95\x9a\x9d\x89\x8d\x90\x03\x03\x03\x01\ \x01\x01\x34\x36\x37\xa7\xac\xae\x84\x88\x89\x4b\x4f\x52\x6f\x73\ \x76\x54\x57\x5a\x76\x79\x7e\x9c\x9f\xa3\xac\xad\xb1\x80\x81\x86\ \x6a\x6b\x70\x9d\x9f\xa0\x9f\xa1\xa2\xa4\xa8\xab\xa3\xa6\xa7\x6b\ \x6d\x6f\x7b\x7b\x7c\x92\x91\x93\x61\x61\x62\x45\x47\x47\x84\x89\ \x88\x6a\x6f\x6f\x7e\x80\x80\x36\x36\x36\x99\x98\x98\xaf\xaf\xb0\ \xb4\xb3\xb5\xb1\xb0\xb2\xac\xab\xac\xb3\xb2\xb3\xb0\xb0\xb1\xb3\ \xb2\xb3\x00\x00\x00\xe1\xd7\xd2\xe1\xd8\xd3\xe0\xd8\xd4\xe1\xd9\ \xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdd\xd5\xd1\xd2\xc5\xb9\x1f\x19\x12\ \x1c\x14\x0d\x72\x57\x3c\x72\x57\x3b\x67\x4f\x35\x40\x31\x20\x27\ \x1d\x13\x3e\x2e\x1e\x2d\x21\x16\x28\x1e\x14\x4b\x39\x26\x37\x29\ \x1a\x33\x26\x19\x2d\x22\x16\x2c\x21\x15\x36\x28\x1a\x3b\x2d\x1d\ \x3a\x2c\x1c\x46\x35\x23\x46\x35\x22\x40\x30\x1f\x40\x30\x1f\x3f\ \x2f\x1f\x36\x29\x1a\x34\x28\x19\x37\x29\x1a\x38\x2a\x1b\x3a\x2c\ \x1c\x33\x26\x18\x2f\x23\x17\x27\x1d\x12\x31\x25\x1b\x44\x37\x29\ \x45\x3a\x2d\x40\x38\x2f\x45\x3d\x35\x4a\x41\x3a\x4b\x44\x3d\x48\ \x42\x3c\x3d\x3a\x36\x30\x2f\x2b\x18\x1a\x1b\x15\x16\x19\x2d\x2c\ \x2d\x4c\x48\x47\x61\x5d\x5c\x6f\x6b\x6b\x7b\x79\x79\x84\x83\x83\ \x8e\x8d\x8e\x92\x91\x93\x94\x93\x94\x93\x92\x94\x91\x90\x92\x92\ \x91\x93\x90\x91\x92\x8e\x8f\x91\x8b\x8d\x8e\x87\x88\x89\x87\x8a\ \x8c\x87\x8a\x8d\x83\x87\x8a\x81\x84\x87\x81\x84\x88\x7f\x85\x87\ \x81\x85\x88\x7f\x82\x87\x7e\x82\x87\x7d\x81\x85\x7a\x7f\x84\x7a\ \x7f\x84\x79\x7f\x85\x79\x7f\x85\x76\x7d\x81\x77\x7d\x80\x69\x70\ \x74\x4f\x59\x60\x63\x69\x6e\x71\x75\x7a\x27\x2f\x36\x06\x09\x0d\ \x37\x40\x47\x39\x42\x49\x3a\x41\x4a\x67\x6c\x72\x6e\x73\x76\x4b\ \x56\x5c\x61\x6a\x71\x76\x7f\x83\x7c\x84\x88\x7b\x83\x87\x78\x80\ \x85\x7b\x83\x87\x7d\x86\x8a\x7b\x84\x88\x78\x81\x85\x7d\x86\x8a\ \x7f\x88\x8d\x7c\x85\x8b\x7d\x85\x8c\x7f\x87\x8d\x7e\x85\x8c\x7f\ \x85\x8b\x7f\x84\x89\x82\x88\x8d\x84\x8a\x8f\x82\x88\x8d\x85\x8b\ \x90\x87\x8d\x91\x8c\x91\x94\x8d\x91\x94\x8b\x8e\x92\x8a\x8f\x93\ \x8e\x92\x96\x90\x95\x98\x91\x96\x99\x8e\x93\x96\x87\x8e\x91\x5b\ \x62\x65\x89\x8f\x91\x4a\x4c\x4f\x00\x00\x00\x02\x03\x03\x43\x49\ \x4a\x81\x85\x87\x74\x78\x7a\x78\x7c\x7e\x9c\xa0\xa1\x69\x6e\x71\ \x78\x7c\x80\xa7\xa9\xad\xa2\xa3\xa6\xa7\xa9\xab\x90\x92\x96\x58\ \x5a\x5f\x9d\x9e\xa0\xa9\xab\xad\xa0\xa4\xa5\xa5\xa8\xa9\x65\x66\ \x67\x00\x00\x00\x00\x00\x00\x0c\x0c\x0c\x6b\x6d\x6c\xb7\xb9\xb7\ \x49\x49\x4a\x00\x00\x00\x59\x59\x59\xa8\xa7\xa9\xb3\xb3\xb4\xab\ \xaa\xab\xb3\xb2\xb3\xb0\xaf\xb0\xad\xac\xae\xb2\xb2\xb2\x00\x00\ \x00\xd9\xcf\xca\xd8\xcf\xc7\xd9\xce\xc7\xd9\xcd\xc9\xd9\xce\xc9\ \xda\xce\xcb\xda\xd0\xcd\xd7\xce\xca\x42\x34\x27\x30\x25\x18\x7d\ \x5e\x40\x65\x4d\x34\x51\x3d\x29\x5d\x46\x2f\x3d\x2e\x1f\x38\x2a\ \x1b\x2d\x23\x16\x33\x27\x19\x50\x3d\x28\x5d\x47\x2f\x5f\x48\x30\ \x48\x36\x23\x41\x31\x20\x47\x36\x24\x41\x31\x1f\x3a\x2c\x1c\x3d\ \x2e\x1e\x36\x29\x1a\x34\x29\x1d\x3a\x30\x25\x41\x37\x2c\x48\x3f\ \x36\x51\x48\x40\x58\x50\x49\x62\x5a\x52\x6b\x63\x5d\x72\x6c\x65\ \x79\x73\x6e\x7f\x7a\x75\x85\x80\x7c\x8a\x85\x81\x90\x8a\x87\x94\ \x8f\x8d\x95\x8f\x8d\x94\x8f\x8d\x8b\x88\x86\x7b\x7b\x7a\x5e\x63\ \x65\x30\x39\x41\x13\x1c\x25\x20\x26\x2d\x4d\x4c\x4f\x72\x6f\x71\ \x82\x7f\x81\x8d\x8b\x8d\x92\x91\x93\x97\x97\x98\x98\x97\x9a\x9c\ \x9b\x9e\x9b\x9a\x9d\x99\x98\x9b\x98\x97\x9c\x96\x97\x9b\x94\x96\ \x98\x91\x93\x94\x8c\x8e\x8f\x8c\x8e\x8f\x8c\x8e\x8f\x8b\x8d\x8f\ \x88\x8a\x8e\x85\x88\x8c\x83\x86\x8a\x83\x86\x8a\x81\x86\x89\x82\ \x86\x89\x81\x86\x8a\x80\x85\x8a\x7c\x82\x87\x7d\x82\x87\x7b\x80\ \x85\x7a\x7f\x84\x7d\x82\x87\x77\x7e\x82\x64\x6d\x71\x5e\x68\x6c\ \x61\x6a\x6e\x5a\x62\x66\x11\x18\x1e\x16\x1a\x1d\x4c\x50\x54\x54\ \x5a\x5f\x46\x4f\x58\x4b\x54\x5d\x4f\x58\x5f\x56\x5f\x65\x73\x79\ \x80\x78\x81\x87\x7a\x82\x88\x7a\x82\x88\x7a\x82\x89\x7a\x83\x88\ \x7a\x82\x87\x7d\x85\x8c\x7b\x82\x89\x7e\x85\x8c\x80\x87\x8e\x80\ \x87\x8e\x7d\x84\x89\x7d\x84\x88\x80\x88\x8c\x80\x87\x8b\x81\x87\ \x8c\x83\x89\x8e\x81\x87\x8c\x86\x8c\x90\x85\x8b\x8f\x8a\x8f\x93\ \x8e\x91\x96\x8e\x92\x96\x90\x95\x99\x8f\x94\x97\x8f\x94\x97\x91\ \x96\x99\x91\x96\x99\x8f\x94\x97\x8d\x92\x95\x8a\x8e\x92\x55\x59\ \x5f\x0d\x0f\x0f\x00\x00\x00\x1f\x20\x21\xa2\xa7\xa8\x56\x5a\x5d\ \x3b\x3e\x40\x99\x9d\x9f\x75\x78\x7b\x8f\x92\x96\x6f\x73\x79\x73\ \x76\x7a\x9b\x9c\x9e\xa3\xa4\xa5\xaa\xac\xae\x9a\x9c\x9f\x58\x5b\ \x5e\x98\x9a\x9b\xa9\xab\xac\xab\xaf\xae\x8a\x8c\x8d\x00\x00\x00\ \x12\x13\x13\x5c\x5f\x5f\x57\x5b\x5a\x21\x22\x21\x0a\x0a\x0a\x00\ \x00\x00\x26\x26\x28\xa6\xa7\xa7\xb1\xb2\xb3\xad\xad\xaf\xab\xaa\ \xad\xad\xac\xae\xaa\xa9\xaa\xb0\xb0\xb0\x00\x00\x00\xb4\x9f\x93\ \xba\xa5\x97\xc1\xa9\x9f\xc6\xae\xa6\xc8\xb1\xa7\xcc\xb7\xae\xce\ \xbb\xb5\xcc\xbd\xb6\x7d\x67\x51\x35\x28\x1a\x3f\x2f\x1f\x4b\x38\ \x25\x45\x33\x22\x58\x43\x2c\x5c\x45\x2e\x4d\x3b\x26\x3c\x2d\x1d\ \x4f\x3d\x29\x57\x44\x30\x54\x42\x30\x61\x4f\x3f\x63\x57\x4a\x6b\ \x60\x55\x75\x6a\x60\x78\x6f\x67\x7f\x77\x70\x88\x81\x7a\x8c\x86\ \x81\x91\x8b\x86\x93\x8d\x87\x9b\x95\x90\xa7\xa0\x9b\xb2\xac\xa8\ \xbb\xb5\xb2\xc2\xbb\xb7\xca\xc2\xc0\xce\xc7\xc5\xcd\xc7\xc3\xcc\ \xc6\xc2\xc9\xc4\xc0\xc6\xc2\xc0\xc3\xbe\xbd\xbc\xb8\xb7\xb3\xae\ \xad\xa8\xa4\xa3\x97\x95\x94\x7b\x7c\x7b\x52\x59\x5d\x25\x30\x39\ \x16\x1f\x28\x33\x36\x3c\x61\x5e\x5f\x7e\x7b\x7d\x8d\x8a\x8c\x93\ \x90\x92\x99\x97\x99\x9e\x9d\x9f\xa0\x9f\xa1\x9f\x9f\xa1\x9e\x9d\ \x9f\x9c\x9b\x9d\x9d\x9c\xa0\x9d\x9c\xa0\x99\x99\x9b\x93\x95\x96\ \x91\x92\x93\x8e\x8f\x91\x8e\x8f\x91\x8e\x90\x93\x8c\x8e\x92\x8a\ \x8d\x91\x86\x89\x8d\x83\x88\x8b\x85\x89\x8e\x84\x88\x8c\x82\x87\ \x8a\x82\x87\x8c\x80\x85\x8a\x7d\x82\x87\x7c\x81\x86\x7b\x81\x86\ \x7b\x81\x86\x70\x78\x7c\x5e\x69\x6d\x6c\x75\x78\x6b\x75\x78\x40\ \x48\x4f\x07\x0b\x0f\x21\x29\x2f\x28\x2f\x35\x4a\x51\x58\x63\x6a\ \x72\x32\x3b\x47\x2c\x37\x41\x66\x6c\x72\x79\x80\x84\x7a\x81\x88\ \x7a\x82\x87\x7a\x81\x87\x7c\x83\x8a\x7d\x87\x8b\x7c\x85\x89\x7c\ \x85\x8b\x7c\x84\x8b\x7e\x86\x8b\x7e\x87\x8b\x7f\x87\x8d\x7f\x87\ \x8d\x82\x89\x8e\x84\x8a\x8f\x84\x8a\x8f\x85\x8b\x90\x83\x89\x8e\ \x84\x8a\x8f\x87\x8c\x91\x85\x8b\x90\x8c\x90\x95\x8a\x8e\x93\x8c\ \x90\x95\x8f\x93\x97\x8f\x94\x97\x8d\x92\x95\x8f\x94\x97\x91\x96\ \x99\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x95\x9a\x9e\x40\x46\x48\ \x06\x07\x07\x63\x68\x6b\x9f\xa3\xa4\x7b\x7f\x82\x3d\x42\x45\x6c\ \x70\x73\x4b\x4d\x51\x67\x69\x6e\xaa\xae\xb2\x74\x77\x7b\x79\x7c\ \x80\x98\x9a\x9c\xa6\xa7\xaa\xa4\xa6\xa9\xa9\xac\xac\x61\x63\x66\ \x8e\x8f\x91\x9e\xa0\xa0\x90\x93\x93\x2b\x2c\x2c\x33\x36\x36\x78\ \x7e\x7d\xa3\xa7\xa5\x47\x49\x48\x34\x35\x37\x49\x4c\x4e\x68\x6c\ \x6f\x72\x75\x79\xad\xae\xb0\xac\xab\xad\xb0\xaf\xb1\xb2\xb1\xb3\ \xaf\xae\xaf\xb1\xb0\xb1\x00\x00\x00\x54\x56\x58\x5b\x59\x58\x62\ \x5a\x59\x69\x5e\x5b\x73\x66\x5f\x7c\x71\x69\x81\x79\x73\x83\x79\ \x72\x86\x75\x66\x5d\x4e\x40\x50\x44\x39\x58\x4b\x40\x5d\x50\x46\ \x66\x58\x4d\x6b\x5e\x51\x6a\x5f\x55\x5f\x59\x51\x54\x50\x46\x58\ \x4f\x45\x74\x64\x5a\x9f\x8f\x87\xb2\xab\xa6\xba\xb5\xb0\xc0\xba\ \xb5\xc8\xc2\xbf\xcc\xc7\xc5\xcd\xc8\xc6\xcf\xc9\xc6\xcf\xc7\xc5\ \xca\xc4\xc0\xcc\xc4\xc1\xd3\xcd\xc9\xd7\xd1\xce\xd7\xd1\xce\xd8\ \xd1\xce\xd7\xd2\xcf\xd5\xd1\xce\xd5\xcf\xcc\xd3\xcd\xca\xd1\xc9\ \xc7\xcc\xc6\xc4\xc7\xc2\xbf\xc0\xbc\xbb\xb6\xb1\xb0\xa6\xa3\xa0\ \x93\x92\x8e\x72\x75\x74\x42\x49\x4f\x19\x24\x2c\x1b\x25\x2e\x48\ \x47\x4d\x72\x6e\x70\x88\x85\x87\x93\x91\x93\x9b\x99\x9b\x9d\x9c\ \x9e\xa1\xa0\xa2\xa1\xa0\xa2\xa2\xa1\xa3\xa1\xa0\xa4\xa0\x9f\xa3\ \x9e\x9e\xa2\x9d\x9d\xa0\x99\x99\x9b\x95\x96\x98\x91\x93\x94\x91\ \x93\x95\x91\x92\x96\x90\x92\x96\x8b\x8e\x92\x8a\x8d\x91\x87\x8a\ \x8f\x86\x8a\x8f\x85\x89\x8e\x83\x88\x8c\x83\x89\x8d\x81\x87\x8c\ \x80\x84\x89\x7d\x81\x85\x7c\x80\x83\x7b\x7f\x83\x7c\x81\x84\x68\ \x70\x73\x55\x60\x64\x6b\x73\x76\x75\x7c\x7f\x45\x4f\x53\x03\x06\ \x09\x23\x2b\x32\x22\x2a\x30\x52\x59\x61\x6c\x73\x7a\x35\x3f\x48\ \x1e\x28\x31\x60\x66\x6c\x7b\x81\x85\x79\x81\x87\x7c\x85\x8c\x7b\ \x84\x8a\x7c\x84\x8b\x7e\x86\x8d\x7d\x85\x8b\x7e\x87\x8e\x7e\x87\ \x8d\x7e\x86\x8c\x7d\x86\x8c\x7f\x87\x8d\x82\x8b\x8f\x82\x8b\x8f\ \x82\x8a\x8e\x83\x89\x8d\x83\x8a\x8e\x82\x88\x8d\x87\x8c\x91\x86\ \x8a\x8f\x89\x8d\x92\x8e\x92\x97\x8a\x8e\x92\x8c\x90\x94\x8e\x92\ \x96\x8f\x92\x97\x90\x95\x99\x93\x97\x9b\x92\x96\x99\x91\x96\x99\ \x91\x96\x99\x94\x99\x9b\x93\x97\x9b\x97\x9d\xa1\x4e\x55\x58\x70\ \x76\x7a\x8d\x90\x90\x4f\x53\x55\x97\x9a\x9d\x70\x75\x79\x76\x7c\ \x80\x9b\x9e\xa2\x9e\xa0\xa4\xab\xad\xb1\x7e\x83\x86\x6d\x70\x72\ \x91\x93\x94\xa7\xa9\xa9\xaa\xac\xad\xa7\xaa\xab\x6f\x71\x72\x3e\ \x3d\x3d\x28\x27\x27\x31\x31\x31\x47\x49\x49\x9d\xa0\xa0\x74\x76\ \x73\x29\x29\x26\x30\x31\x32\xa3\xa7\xaa\xb5\xba\xbb\xae\xb1\xb3\ \xb0\xb0\xb2\xb4\xb3\xb5\xaf\xae\xb0\xb5\xb4\xb6\xb5\xb5\xb7\xb3\ \xb1\xb4\x00\x00\x00\x83\x8b\x8b\x78\x80\x7f\x69\x75\x75\x64\x6f\ \x70\x65\x6e\x6e\x67\x70\x6f\x66\x6f\x6e\x62\x6b\x6a\x63\x69\x68\ \x63\x69\x65\x63\x67\x65\x65\x69\x68\x69\x6c\x6c\x69\x6e\x6e\x6c\ \x71\x6f\x71\x78\x75\x75\x7d\x7a\x7d\x82\x7f\x8e\x8b\x88\xae\xa0\ \x96\xca\xbc\xb4\xd2\xcb\xc8\xd4\xcd\xcb\xd4\xce\xca\xd5\xd0\xcd\ \xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xcc\xc8\xd3\xcc\xc7\xd7\ \xd0\xcb\xde\xd7\xd3\xdf\xd8\xd5\xdd\xd8\xd5\xdd\xd8\xd5\xdc\xd7\ \xd5\xdc\xd7\xd4\xdb\xd5\xd2\xd8\xd1\xce\xd6\xce\xce\xd0\xca\xc7\ \xcb\xc4\xc3\xc3\xbe\xbd\xb6\xb1\xb0\xa5\xa2\xa0\x8a\x89\x88\x67\ \x6a\x6b\x33\x3a\x40\x13\x1c\x24\x28\x2e\x36\x5c\x5a\x5e\x7e\x7a\ \x7c\x8f\x8d\x8f\x9a\x97\x99\xa1\x9d\x9f\xa0\x9f\xa1\xa4\xa3\xa5\ \xa4\xa3\xa5\xa3\xa2\xa5\xa3\xa2\xa6\xa0\xa0\xa4\x9e\x9f\xa2\x9b\ \x9b\x9f\x98\x99\x9c\x94\x97\x97\x93\x95\x96\x91\x93\x95\x90\x92\ \x96\x8f\x92\x96\x8c\x8f\x93\x88\x8c\x90\x87\x8a\x8f\x85\x89\x8e\ \x84\x88\x8d\x83\x87\x8c\x82\x87\x8c\x81\x87\x8c\x80\x85\x8a\x7c\ \x81\x85\x7c\x81\x85\x7d\x82\x86\x77\x7e\x81\x66\x6f\x72\x5d\x68\ \x6c\x62\x6c\x70\x73\x79\x7d\x5c\x63\x68\x07\x0c\x11\x1a\x20\x25\ \x28\x2f\x35\x4d\x55\x5c\x46\x50\x5a\x47\x53\x5c\x2b\x39\x41\x3e\ \x49\x52\x71\x77\x7e\x7d\x84\x8a\x7b\x83\x89\x7e\x86\x8d\x7d\x85\ \x8c\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\ \x7d\x85\x8b\x7d\x86\x8c\x81\x89\x8e\x81\x88\x8d\x82\x89\x8e\x82\ \x88\x8d\x84\x89\x8e\x88\x8e\x93\x89\x8d\x92\x86\x8b\x90\x89\x8d\ \x92\x89\x8d\x92\x8d\x91\x96\x8c\x91\x95\x8c\x91\x95\x8f\x93\x97\ \x95\x99\x9d\x94\x99\x9c\x8e\x93\x96\x90\x94\x98\x94\x99\x9c\x96\ \x9a\x9d\x94\x97\x9b\x91\x94\x98\x9b\x9f\xa3\x69\x6d\x70\x66\x69\ \x6b\x57\x5b\x5d\xa6\xaa\xab\x9d\xa0\xa4\x7a\x7f\x82\x6f\x73\x76\ \x94\x95\x99\xa3\xa5\xa8\xab\xaf\xb0\x8f\x93\x95\x63\x66\x68\x8f\ \x91\x92\xa8\xa9\xa9\xa9\xaa\xa9\xab\xad\xad\x24\x24\x25\x00\x00\ \x00\x09\x0a\x0a\x38\x3a\x3b\x57\x58\x59\x48\x48\x46\x08\x08\x07\ \x00\x00\x00\x7f\x80\x81\xb1\xb3\xb4\xad\xad\xae\xb4\xb3\xb5\xae\ \xad\xaf\xb2\xb1\xb3\xb3\xb3\xb4\xb6\xb6\xb7\xb2\xb0\xb3\x00\x00\ \x00\xdf\xd6\xd0\xdc\xd3\xcc\xd5\xcf\xc8\xd1\xcd\xc7\xd0\xcb\xc6\ \xce\xc9\xc2\xca\xc7\xc2\xc6\xc3\xbf\xc4\xc1\xbc\xc3\xc0\xba\xc3\ \xbf\xbb\xc3\xc0\xba\xc3\xbe\xb9\xc2\xbd\xb8\xc5\xc0\xbc\xc8\xc3\ \xbd\xca\xc5\xc0\xcd\xc7\xc3\xd3\xca\xc4\xd7\xce\xc8\xdb\xd3\xcf\ \xdc\xd6\xd2\xdc\xd5\xd3\xdc\xd6\xd1\xdc\xd6\xd2\xdb\xd4\xd1\xdc\ \xd6\xd2\xdd\xd7\xd3\xd8\xd1\xcc\xd9\xd1\xcd\xde\xd7\xd2\xe3\xdd\ \xd9\xe3\xdd\xda\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdd\xda\xde\xda\xd8\ \xdc\xd8\xd6\xdb\xd6\xd3\xd7\xd2\xd1\xd2\xcc\xc9\xca\xc5\xc4\xc1\ \xbc\xbc\xb5\xb0\xb0\x9f\x9c\x9d\x81\x82\x82\x53\x59\x5c\x22\x2b\ \x32\x18\x1f\x28\x3c\x3f\x45\x6b\x68\x6b\x86\x82\x83\x95\x92\x93\ \x9e\x9b\x9d\xa1\x9e\xa0\xa5\xa3\xa5\xa4\xa3\xa5\xa4\xa3\xa5\xa4\ \xa3\xa6\xa3\xa3\xa7\xa1\xa2\xa5\x9b\x9c\x9f\x99\x9a\x9d\x97\x98\ \x9b\x94\x95\x97\x92\x94\x95\x90\x92\x96\x92\x95\x99\x8f\x93\x97\ \x8c\x8f\x94\x89\x8e\x93\x88\x8c\x90\x86\x8a\x8e\x87\x8b\x90\x84\ \x88\x8d\x82\x87\x8c\x7f\x85\x8a\x7e\x84\x88\x7b\x81\x85\x7a\x80\ \x83\x7c\x83\x86\x73\x79\x7d\x65\x6d\x72\x70\x77\x7b\x66\x6f\x74\ \x67\x6e\x75\x61\x69\x6e\x0b\x12\x17\x0b\x0e\x13\x18\x1d\x20\x3b\ \x42\x48\x36\x40\x4a\x59\x61\x68\x4b\x57\x5e\x3a\x48\x50\x5e\x66\ \x6e\x78\x7d\x83\x7d\x83\x89\x7d\x84\x8b\x7e\x85\x8c\x7f\x87\x8e\ \x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x87\x8f\x80\x87\x8e\x81\ \x89\x91\x7f\x87\x8c\x81\x88\x8c\x85\x8b\x90\x80\x86\x8b\x82\x87\ \x8c\x8b\x8f\x94\x89\x8d\x92\x88\x8c\x91\x8a\x8e\x94\x8c\x90\x95\ \x8f\x93\x98\x90\x93\x99\x8d\x91\x96\x8d\x91\x96\x92\x96\x9b\x91\ \x95\x99\x95\x99\x9c\x92\x97\x9a\x93\x97\x9a\x96\x99\x9d\x94\x96\ \x9a\x96\x9a\x9d\x97\x9a\x9e\x96\x9a\x9d\x6f\x75\x76\x68\x6c\x6f\ \x94\x97\x99\xa0\xa3\xa7\xa0\xa4\xa7\x80\x84\x88\x6d\x70\x75\x93\ \x95\x98\xa6\xa9\xab\xa7\xaa\xac\x97\x99\x9c\x6c\x70\x73\x83\x86\ \x85\xa7\xa8\xa7\x91\x92\x92\x40\x41\x41\x06\x06\x06\x5f\x62\x62\ \xa1\xa3\xa3\x65\x65\x64\x1b\x1b\x1b\x24\x27\x27\x2d\x2f\x31\x6b\ \x6d\x70\x95\x98\x99\xb0\xb1\xb1\xb3\xb2\xb4\xab\xac\xae\xb4\xb3\ \xb5\xb3\xb2\xb4\xb1\xb0\xb2\xb2\xb1\xb3\x00\x00\x00\xe1\xd9\xd5\ \xe2\xd9\xd5\xe2\xda\xd6\xe3\xdb\xd8\xe4\xdd\xd9\xe6\xdd\xd8\xe4\ \xdb\xd7\xe5\xdd\xd9\xe4\xdc\xd8\xe4\xdd\xd8\xe3\xdc\xd8\xe3\xdc\ \xd9\xe2\xdc\xd8\xe1\xd9\xd5\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\ \xde\xd7\xd3\xde\xd5\xd2\xde\xd7\xd3\xdf\xd8\xd4\xde\xd8\xd4\xdf\ \xd9\xd5\xdf\xd9\xd5\xe0\xda\xd5\xe0\xdb\xd7\xe0\xdb\xd6\xde\xd8\ \xd3\xda\xd3\xcf\xdc\xd4\xd1\xe2\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xdd\ \xe4\xdf\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe0\xdb\xd9\xde\xd9\xd8\xdb\ \xd5\xd3\xd6\xcf\xcd\xcf\xca\xc7\xc8\xc3\xc2\xbb\xb6\xb7\xae\xa9\ \xaa\x95\x93\x94\x72\x75\x76\x42\x4a\x4f\x1b\x26\x2e\x23\x29\x32\ \x4e\x4f\x55\x79\x75\x76\x8c\x86\x87\x98\x95\x95\x9f\x9d\x9e\xa2\ \xa1\xa3\xa5\xa3\xa5\xa3\xa2\xa4\xa4\xa3\xa6\xa4\xa3\xa6\xa2\xa1\ \xa3\xa1\xa0\xa4\x9d\x9f\xa2\x9b\x9c\xa0\x97\x98\x9c\x94\x95\x98\ \x91\x93\x96\x8f\x92\x96\x90\x93\x97\x8f\x93\x97\x8a\x8e\x93\x8b\ \x90\x93\x89\x8d\x92\x87\x8b\x90\x85\x8a\x8f\x83\x88\x8d\x82\x87\ \x8c\x80\x86\x8b\x7d\x84\x88\x7b\x82\x86\x7b\x81\x85\x7b\x82\x85\ \x74\x7b\x7f\x65\x6e\x73\x74\x7a\x7f\x73\x79\x7f\x61\x6a\x70\x59\ \x61\x67\x0d\x15\x19\x05\x08\x0d\x09\x0c\x10\x1b\x1f\x23\x4d\x53\ \x59\x62\x68\x6e\x44\x4d\x54\x44\x50\x57\x5e\x66\x6e\x69\x6f\x77\ \x7d\x82\x88\x7c\x82\x89\x7d\x84\x8b\x80\x87\x8e\x80\x88\x8f\x7f\ \x87\x8e\x7f\x87\x8f\x81\x88\x8f\x82\x89\x90\x82\x8b\x91\x81\x89\ \x8f\x82\x88\x8d\x85\x8b\x90\x84\x8a\x8f\x85\x89\x8e\x8c\x90\x95\ \x87\x8b\x90\x87\x8b\x90\x8a\x8e\x93\x8f\x93\x98\x8f\x93\x98\x90\ \x94\x99\x8d\x91\x96\x8d\x91\x96\x8f\x93\x98\x91\x95\x99\x99\x9d\ \xa1\x95\x99\x9d\x93\x97\x9b\x92\x96\x9a\x95\x98\x9c\x97\x99\x9e\ \x9b\x9e\xa2\x98\x9c\x9f\xa4\xa7\xaa\x82\x86\x8a\x6e\x71\x76\x8e\ \x90\x94\xa0\xa4\xa6\xa2\xa6\xa8\x88\x8c\x90\x70\x73\x79\x8b\x8e\ \x91\xa5\xa7\xa8\xa6\xa8\xa9\xa7\xaa\xab\x73\x77\x78\x73\x76\x77\ \x33\x33\x33\x21\x21\x21\x17\x18\x18\x91\x93\x92\x8c\x8d\x89\x75\ \x75\x70\x3a\x3b\x3a\x72\x76\x77\xaf\xb5\xb7\x91\x97\x9b\x78\x7c\ \x7f\x8c\x8d\x8e\xac\xad\xac\xb1\xb2\xb4\xb3\xb3\xb4\xb3\xb2\xb4\ \xb4\xb4\xb6\xb6\xb5\xb6\x00\x00\x00\xdb\xd3\xd0\xda\xd3\xcf\xdb\ \xd3\xd0\xdd\xd5\xd3\xde\xd7\xd4\xdf\xd7\xd3\xde\xd6\xd2\xdd\xd5\ \xd2\xde\xd7\xd4\xdf\xd8\xd5\xdf\xd9\xd5\xdf\xd9\xd6\xdf\xd9\xd6\ \xde\xd8\xd5\xdd\xd8\xd4\xde\xd7\xd3\xdd\xd6\xd3\xdd\xd6\xd3\xde\ \xd7\xd4\xe0\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe0\xda\xd6\xe1\xdb\ \xd7\xe2\xdc\xd7\xe3\xdd\xd8\xe2\xdc\xd7\xdd\xd6\xd1\xdb\xd4\xd0\ \xe0\xd9\xd6\xe4\xdf\xdc\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xe0\xdd\xe4\ \xdf\xdc\xe2\xdd\xdb\xe1\xdc\xda\xdf\xda\xd9\xdb\xd5\xd3\xd6\xce\ \xcc\xd0\xc8\xc7\xc6\xc1\xc0\xb9\xb4\xb5\xa7\xa3\xa4\x8d\x8d\x8d\ \x62\x67\x6b\x2f\x3a\x41\x17\x23\x2b\x2e\x34\x3c\x60\x5f\x62\x83\ \x7f\x7f\x92\x8d\x8d\x9d\x9a\x9a\xa3\xa2\xa3\xa4\xa3\xa5\xa5\xa3\ \xa5\xa5\xa4\xa5\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9f\x9f\xa1\ \x9b\x9d\x9f\x98\x9a\x9d\x96\x97\x9b\x94\x96\x99\x90\x93\x97\x8f\ \x92\x96\x8e\x91\x95\x8c\x90\x94\x89\x8c\x91\x8a\x8f\x93\x87\x8b\ \x90\x88\x8c\x91\x84\x89\x8e\x83\x89\x8e\x83\x89\x8e\x80\x86\x8b\ \x7d\x84\x88\x7c\x82\x87\x7c\x82\x87\x7b\x81\x85\x78\x7e\x83\x6c\ \x74\x79\x69\x71\x77\x78\x7e\x83\x6a\x71\x76\x50\x59\x5f\x0d\x15\ \x1b\x0e\x0f\x17\x14\x16\x1d\x08\x09\x0b\x45\x49\x4d\x57\x5e\x64\ \x1d\x25\x2b\x42\x49\x4e\x73\x79\x7e\x67\x6d\x75\x6e\x74\x7b\x7c\ \x82\x89\x80\x86\x8d\x7f\x86\x8e\x7f\x87\x8e\x80\x88\x8f\x7e\x86\ \x8d\x80\x87\x8e\x81\x89\x8e\x80\x89\x8d\x82\x8b\x8f\x83\x8a\x8f\ \x85\x8b\x90\x88\x8e\x93\x87\x8d\x92\x8c\x91\x96\x86\x8b\x90\x88\ \x8d\x91\x8a\x8e\x93\x8e\x92\x97\x8f\x93\x97\x92\x96\x9b\x8c\x90\ \x95\x8c\x90\x95\x8f\x94\x98\x92\x97\x9a\x94\x99\x9d\x95\x99\x9d\ \x97\x9b\x9f\x96\x9a\x9e\x96\x99\x9d\x97\x9a\x9e\x9e\xa1\xa5\x9a\ \x9d\xa1\xa0\xa3\xa6\xa2\xa6\xa8\x87\x8a\x8f\x74\x78\x7c\x8b\x8e\ \x91\xa1\xa5\xa6\xa6\xa9\xac\x90\x93\x98\x78\x7b\x80\x82\x83\x87\ \xa5\xa8\xa8\xa7\xaa\xa9\xa4\xa8\xa8\x7e\x82\x84\x00\x00\x00\x00\ \x00\x00\x08\x07\x07\x4b\x4b\x4a\x7a\x7a\x75\x33\x32\x2f\x00\x00\ \x00\x4f\x4f\x4f\xa9\xaa\xac\xaf\xb2\xb4\xa5\xa9\xab\x85\x87\x89\ \x7f\x7f\x7f\xa7\xa7\xa7\xb6\xb6\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb3\ \xb3\xb4\x00\x00\x00\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe1\xdb\ \xd8\xe1\xdb\xd9\xe0\xda\xd7\xe0\xda\xd7\xdf\xd9\xd7\xe1\xdb\xd8\ \xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdc\xda\xe1\xdc\xda\xe1\ \xdc\xd9\xe1\xda\xd7\xe0\xd9\xd5\xe2\xda\xd7\xe3\xdc\xd8\xe3\xdd\ \xd9\xe3\xdd\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe2\xdc\xd7\xe1\xdb\xd6\ \xe2\xdb\xd7\xe2\xdd\xd8\xdc\xd6\xd1\xdc\xd5\xd1\xe1\xdb\xd6\xe7\ \xe1\xde\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe3\xde\ \xdc\xe0\xdb\xd9\xde\xd9\xd7\xda\xd5\xd2\xd5\xce\xcb\xce\xc6\xc4\ \xc1\xbc\xbb\xb5\xb1\xb1\x9d\x9b\x9c\x80\x81\x83\x50\x58\x5e\x1f\ \x2b\x34\x19\x24\x2c\x42\x45\x4b\x6f\x6c\x6b\x88\x84\x82\x95\x91\ \x90\x9f\x9d\x9d\xa2\xa1\xa3\xa5\xa3\xa5\xa6\xa4\xa6\xa4\xa3\xa5\ \xa3\xa2\xa4\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9d\x9e\x98\x9a\x9c\x96\ \x98\x9a\x95\x97\x9a\x91\x94\x98\x8f\x92\x96\x8d\x91\x95\x8c\x91\ \x94\x8a\x8e\x93\x87\x8c\x91\x87\x8c\x91\x85\x8a\x8f\x87\x8c\x91\ \x81\x87\x8c\x83\x89\x8e\x81\x88\x8d\x7f\x86\x8b\x7e\x85\x8a\x7d\ \x85\x8a\x7d\x84\x89\x7b\x83\x86\x7b\x82\x86\x74\x7c\x80\x64\x6d\ \x71\x6d\x74\x79\x75\x7a\x7f\x5d\x64\x6a\x0f\x16\x1b\x09\x0a\x0d\ \x28\x2e\x36\x10\x16\x1a\x0c\x0d\x0f\x18\x1b\x1e\x01\x04\x07\x3e\ \x42\x47\x7c\x7f\x84\x78\x7d\x84\x61\x68\x70\x6f\x74\x7c\x82\x88\ \x8f\x7e\x84\x8c\x7e\x86\x8d\x81\x89\x90\x7f\x87\x8e\x80\x88\x8f\ \x7f\x87\x8e\x82\x8a\x90\x86\x8e\x93\x85\x8c\x93\x85\x8b\x91\x88\ \x8e\x93\x86\x8c\x91\x89\x8f\x94\x88\x8d\x92\x8a\x8f\x93\x8f\x93\ \x98\x8f\x93\x98\x8e\x93\x98\x90\x95\x9a\x8b\x8f\x94\x8a\x8f\x93\ \x91\x95\x9a\x92\x97\x9b\x93\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x97\ \x9b\x9f\x99\x9c\xa0\x9c\x9f\xa3\x99\x9c\xa0\x9c\x9f\xa3\xa2\xa5\ \xa9\xa0\xa3\xa7\x9f\xa3\xa6\x95\x99\x9c\x73\x76\x7b\x83\x86\x89\ \xa0\xa3\xa5\xa4\xa8\xaa\x98\x9c\xa0\x7b\x7d\x83\x73\x74\x77\xa2\ \xa5\xa5\xa4\xa6\xa6\xb1\xb4\xb5\x19\x1a\x1a\x00\x00\x00\x00\x00\ \x00\x1d\x1e\x1d\x6a\x6b\x6a\x27\x29\x28\x00\x01\x01\x30\x31\x33\ \x8a\x8a\x8c\xad\xae\xb0\xb1\xb3\xb4\xae\xb1\xb2\x91\x91\x92\x76\ \x76\x76\x8c\x8a\x8d\xbd\xbc\xbe\xb0\xaf\xb0\xb4\xb3\xb5\x00\x00\ \x00\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd8\xe2\xdc\xd8\ \xe1\xdb\xd7\xe1\xdb\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdc\xd9\xe3\ \xde\xdb\xe3\xde\xdb\xe1\xdc\xda\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\ \xd8\xe0\xda\xd5\xe1\xda\xd6\xe2\xdb\xd7\xe2\xdc\xd7\xe3\xdc\xd9\ \xe3\xdd\xda\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xdf\xdc\xe3\ \xdd\xd8\xde\xd8\xd3\xde\xd7\xd4\xe3\xdd\xd8\xe7\xe1\xde\xe7\xe2\ \xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe2\xdd\xda\xde\xd9\xd7\ \xdc\xd6\xd5\xd8\xd2\xcf\xd1\xca\xc7\xc9\xc2\xbe\xbf\xba\xb7\xaf\ \xac\xac\x95\x94\x94\x70\x73\x76\x3d\x46\x4d\x19\x26\x2e\x22\x2c\ \x34\x53\x54\x58\x7d\x78\x77\x8d\x89\x88\x9a\x96\x95\xa2\x9f\xa0\ \xa5\xa3\xa5\xa5\xa4\xa6\xa4\xa3\xa5\xa4\xa3\xa5\xa2\xa1\xa3\xa1\ \xa0\xa2\xa0\xa0\xa2\x9b\x9c\x9d\x99\x99\x9b\x94\x96\x97\x92\x94\ \x96\x91\x93\x97\x90\x94\x98\x8d\x91\x95\x8c\x91\x95\x8a\x8f\x93\ \x87\x8c\x91\x85\x8b\x90\x86\x8b\x90\x82\x88\x8d\x82\x88\x8d\x82\ \x89\x8e\x80\x88\x8e\x7e\x85\x8b\x7c\x84\x89\x7c\x85\x8a\x7c\x83\ \x88\x7b\x82\x86\x7a\x83\x87\x78\x81\x85\x6b\x74\x78\x63\x6b\x70\ \x72\x77\x7c\x73\x77\x7d\x28\x31\x36\x06\x06\x07\x49\x4e\x54\x4f\ \x57\x5d\x0c\x13\x18\x00\x00\x03\x1d\x22\x27\x4e\x54\x5b\x71\x76\ \x7b\x82\x86\x8c\x72\x78\x80\x60\x67\x6f\x76\x7d\x84\x7f\x85\x8b\ \x7f\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x8e\x80\x88\x8e\x84\ \x8b\x91\x86\x8d\x93\x86\x8d\x94\x85\x8c\x92\x86\x8c\x93\x87\x8d\ \x92\x87\x8d\x93\x8b\x8f\x95\x8c\x91\x96\x90\x94\x99\x90\x94\x99\ \x8f\x94\x99\x8f\x94\x99\x8e\x92\x97\x8e\x92\x97\x92\x96\x9b\x94\ \x98\x9d\x93\x97\x9c\x93\x97\x9b\x92\x96\x9a\x96\x99\x9d\x97\x9a\ \x9e\x9b\x9e\xa2\x98\x9b\x9f\x9c\x9f\xa3\xa1\xa4\xa8\xa1\xa4\xa8\ \xa0\xa3\xa6\xa2\xa6\xa9\x95\x98\x9c\x77\x7b\x7f\x7e\x80\x84\x9e\ \xa0\xa3\xa4\xa7\xaa\xa0\xa3\xa6\x82\x84\x88\x6e\x70\x74\x99\x9c\ \x9c\xae\xb0\xb0\x72\x75\x75\x00\x00\x00\x00\x00\x00\x19\x1a\x1a\ \x83\x87\x86\x92\x98\x95\x7c\x81\x81\x88\x8c\x8d\x7d\x7d\x81\x81\ \x82\x86\xb1\xb2\xb3\xac\xac\xad\xb0\xb1\xb1\x9e\x9e\x9e\x80\x81\ \x81\x78\x78\x7a\xb1\xb0\xb2\xb8\xb7\xb9\x00\x00\x00\xde\xd7\xd5\ \xdd\xd7\xd4\xde\xd8\xd6\xde\xd8\xd5\xdd\xd8\xd4\xdd\xd7\xd4\xde\ \xd7\xd3\xde\xd7\xd3\xdf\xd8\xd5\xe0\xd9\xd6\xe1\xdc\xda\xe1\xdc\ \xda\xe0\xdb\xd9\xe0\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd7\ \xe1\xdb\xd8\xe3\xdc\xd9\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdf\xdc\xe5\ \xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe8\xe3\xe0\xe5\xdf\xdc\xe1\xdb\ \xd7\xe2\xdb\xd8\xe6\xe0\xdc\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ \xe5\xe0\xdd\xe3\xde\xdb\xe0\xdb\xd8\xdd\xd8\xd7\xda\xd5\xd4\xd5\ \xce\xcc\xd0\xc9\xc6\xc7\xbf\xbc\xb9\xb4\xb1\xa5\xa3\xa3\x89\x8a\ \x8a\x5e\x64\x68\x2c\x37\x3e\x19\x25\x2c\x32\x39\x3f\x65\x63\x66\ \x85\x82\x83\x94\x91\x92\x9d\x9b\x9c\xa2\x9f\xa2\xa6\xa5\xa6\xa6\ \xa5\xa7\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\xa4\xa3\xa2\xa4\x9f\xa0\ \xa1\x9b\x9d\x9e\x98\x99\x9a\x93\x95\x96\x91\x93\x94\x91\x94\x95\ \x8f\x93\x96\x8c\x91\x94\x8c\x90\x95\x89\x8d\x92\x88\x8c\x91\x85\ \x89\x8e\x84\x89\x8f\x82\x88\x8e\x82\x89\x8e\x80\x87\x8e\x7d\x86\ \x8c\x7e\x86\x8b\x7e\x85\x8a\x7c\x85\x8a\x7a\x81\x85\x79\x81\x85\ \x79\x82\x87\x79\x82\x86\x74\x7d\x81\x67\x71\x75\x62\x6b\x6f\x70\ \x76\x7a\x2c\x36\x3a\x05\x06\x07\x4e\x53\x57\x79\x7e\x82\x4c\x56\ \x5c\x38\x42\x49\x61\x65\x6b\x6c\x73\x78\x60\x68\x6d\x75\x7b\x81\ \x7f\x85\x8c\x70\x78\x7f\x60\x6b\x72\x79\x80\x87\x81\x87\x8e\x7e\ \x86\x8d\x81\x88\x8e\x83\x8b\x91\x83\x8b\x91\x85\x8b\x91\x87\x8d\ \x92\x89\x90\x95\x87\x8d\x92\x89\x8f\x95\x84\x8a\x90\x87\x8d\x93\ \x8a\x90\x95\x8c\x91\x96\x8e\x91\x96\x8c\x90\x95\x8f\x93\x98\x90\ \x95\x9a\x93\x97\x9c\x91\x95\x9a\x92\x96\x9a\x96\x99\x9e\x97\x9c\ \x9f\x94\x99\x9d\x93\x97\x9a\x98\x9b\x9f\x99\x9c\xa0\x98\x9b\x9f\ \x9c\x9f\xa3\x9b\x9e\xa2\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa1\ \xa4\xa7\xa0\xa4\xa5\x9c\x9f\xa1\x7d\x80\x84\x72\x75\x7a\x9a\x9d\ \xa0\xa6\xa9\xaa\xa7\xa9\xac\x92\x95\x98\x69\x6d\x70\x8f\x91\x92\ \xaf\xb3\xb2\x56\x5a\x5c\x00\x00\x00\x02\x02\x02\x4a\x4c\x4b\xa4\ \xa7\xa5\xb8\xba\xb9\xb1\xb2\xb2\xa7\xa7\xa9\x89\x8b\x8e\x73\x74\ \x78\xab\xaa\xac\xb3\xb3\xb3\xb4\xb4\xb4\xaa\xab\xab\x91\x92\x94\ \x6f\x70\x72\xa3\xa1\xa4\x00\x00\x00\xe2\xde\xdd\xe2\xde\xdc\xe3\ \xdd\xdb\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd8\xe0\xdb\ \xd8\xe2\xdd\xda\xe3\xdd\xda\xe4\xde\xdc\xe5\xe0\xde\xe3\xde\xdb\ \xe3\xde\xdb\xe4\xdf\xdd\xe5\xdf\xdd\xe5\xdf\xdd\xe5\xe0\xde\xe7\ \xe2\xe1\xe8\xe3\xe2\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe5\xe1\xe9\xe4\ \xe2\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xde\xdb\xe1\xda\xd7\xe4\xdd\xda\ \xe7\xe1\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xdf\xdc\xe3\ \xde\xda\xe0\xdb\xd8\xdc\xd7\xd5\xd9\xd3\xd1\xd5\xce\xcc\xcc\xc5\ \xc4\xc2\xbc\xbb\xb1\xac\xab\x9e\x9a\x9a\x7c\x7d\x7f\x49\x53\x56\ \x20\x2b\x32\x1d\x26\x2e\x47\x48\x4e\x75\x72\x74\x8b\x87\x88\x99\ \x96\x97\xa2\xa0\xa1\xa3\xa0\xa2\xa5\xa3\xa4\xa5\xa4\xa6\xa6\xa5\ \xa7\xa4\xa3\xa5\xa2\xa1\xa3\x9f\x9e\xa0\x9d\x9f\xa0\x9b\x9d\x9e\ \x95\x97\x98\x91\x94\x95\x90\x93\x94\x90\x93\x94\x8d\x92\x94\x8d\ \x91\x94\x8a\x8e\x92\x88\x8c\x90\x86\x8a\x90\x84\x89\x8e\x85\x8b\ \x91\x81\x88\x8e\x81\x87\x8d\x80\x87\x8d\x7e\x86\x8c\x7d\x84\x88\ \x7c\x82\x88\x7c\x83\x88\x7b\x83\x87\x7a\x83\x86\x7a\x83\x89\x7b\ \x84\x89\x76\x7f\x83\x6f\x79\x7d\x5e\x69\x6d\x4a\x54\x5b\x28\x33\ \x3a\x02\x04\x05\x32\x34\x37\x78\x7c\x80\x70\x78\x7d\x5d\x64\x6b\ \x6c\x71\x76\x7b\x81\x85\x6c\x74\x79\x61\x69\x70\x78\x7f\x85\x7f\ \x85\x8c\x69\x73\x7a\x62\x6c\x74\x7b\x82\x89\x80\x89\x8e\x80\x89\ \x8e\x81\x8a\x8f\x83\x8b\x8f\x85\x8c\x91\x88\x8e\x93\x88\x8d\x92\ \x87\x8c\x91\x87\x8d\x92\x88\x8e\x93\x86\x8d\x92\x8d\x92\x97\x8d\ \x92\x97\x8e\x93\x98\x90\x94\x99\x8d\x91\x96\x92\x96\x9b\x93\x97\ \x9c\x94\x97\x9c\x92\x95\x9a\x91\x95\x99\x97\x9a\x9f\x98\x9c\xa1\ \x95\x99\x9d\x96\x99\x9d\x97\x9a\x9d\x9a\x9d\xa0\x9c\x9f\xa3\x9c\ \x9f\xa2\x9f\xa1\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x9f\xa2\xa5\xa0\xa2\ \xa5\xa2\xa5\xa9\xa0\xa3\xa7\x85\x89\x8d\x6b\x6f\x72\x98\x9a\x9c\ \xa1\xa2\xa5\xa4\xa6\xaa\x99\x9c\xa0\x6d\x71\x74\x7f\x81\x82\xa8\ \xab\xac\x75\x79\x7a\x44\x48\x4a\x76\x78\x7b\x78\x79\x7a\x8d\x8c\ \x8b\xaf\xae\xae\xb1\xb1\xb2\xae\xb0\xb1\x9e\x9f\xa2\x6d\x6d\x6f\ \x97\x97\x98\xba\xb9\xba\xb0\xaf\xb0\xb2\xb4\xb5\x9b\x9e\x9f\x74\ \x74\x75\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe1\xe6\xe1\ \xde\xe5\xe1\xde\xe5\xe2\xde\xe6\xe3\xdf\xe7\xe2\xdf\xe8\xe3\xe0\ \xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe3\xe0\xe9\ \xe4\xe1\xe9\xe4\xe2\xe9\xe5\xe4\xe9\xe5\xe4\xea\xe6\xe5\xea\xe5\ \xe4\xe9\xe5\xe3\xea\xe5\xe3\xeb\xe6\xe4\xea\xe5\xe3\xea\xe6\xe3\ \xe8\xe2\xdf\xe2\xdd\xda\xe0\xda\xd7\xe5\xde\xda\xe7\xe2\xdd\xe7\ \xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdb\xdf\xda\ \xd7\xdb\xd6\xd3\xd8\xd2\xd0\xd2\xcc\xc9\xca\xc2\xc1\xbd\xb7\xb6\ \xad\xa8\xa7\x95\x92\x92\x6d\x6f\x71\x3b\x45\x49\x1c\x26\x2d\x28\ \x2e\x35\x59\x58\x5d\x7f\x7b\x7c\x90\x8d\x8d\x9a\x98\x98\xa2\xa0\ \xa0\xa5\xa3\xa3\xa5\xa1\xa3\xa5\xa4\xa5\xa5\xa4\xa6\xa4\xa3\xa5\ \xa3\xa2\xa4\xa1\xa0\xa1\x9c\x9c\x9d\x98\x99\x9a\x94\x96\x97\x91\ \x94\x94\x91\x95\x97\x8f\x92\x95\x8c\x91\x94\x8a\x8f\x92\x86\x8b\ \x8f\x87\x8d\x93\x88\x8e\x95\x85\x8b\x92\x83\x89\x90\x82\x8a\x91\ \x82\x89\x8f\x83\x8a\x91\x81\x87\x8e\x80\x86\x8c\x7e\x84\x89\x7c\ \x82\x87\x7b\x81\x86\x78\x81\x85\x79\x82\x87\x78\x81\x85\x76\x7f\ \x83\x73\x7d\x81\x62\x6e\x74\x2a\x36\x41\x32\x3c\x46\x10\x15\x1a\ \x1b\x1d\x20\x63\x68\x6d\x77\x7e\x83\x6f\x75\x7b\x62\x69\x70\x73\ \x79\x7e\x7c\x82\x87\x65\x6f\x75\x61\x6a\x71\x7d\x84\x89\x7c\x84\ \x8b\x68\x73\x7a\x61\x6b\x73\x7d\x85\x89\x7d\x87\x8b\x80\x89\x8d\ \x81\x89\x8d\x87\x8c\x92\x89\x8f\x94\x87\x8d\x92\x86\x8c\x91\x89\ \x8f\x94\x8e\x93\x98\x88\x8d\x92\x8d\x91\x96\x8d\x91\x96\x8f\x95\ \x9a\x91\x96\x9b\x91\x95\x9a\x93\x98\x9c\x94\x97\x9c\x95\x99\x9d\ \x94\x99\x9d\x94\x98\x9c\x94\x98\x9c\x97\x9b\x9e\x98\x9c\x9f\x9a\ \x9d\xa1\x94\x97\x9a\x9e\xa1\xa5\x9e\xa1\xa5\x9e\xa1\xa4\x9f\xa3\ \xa6\x9c\xa0\xa2\x9f\xa2\xa3\x9e\xa0\xa1\xa2\xa4\xa7\xa3\xa5\xa9\ \xa1\xa4\xa8\xa2\xa4\xa8\x93\x96\x9b\x5f\x62\x67\x9a\x9a\x9e\xa6\ \xa7\xab\xa5\xa8\xac\xa1\xa4\xa9\x82\x84\x88\x6a\x6b\x6c\x9b\x9d\ \x9e\x59\x5c\x5e\xb7\xb8\xbb\xaa\xaa\xac\x7c\x7b\x7d\x7b\x7a\x7d\ \xab\xab\xac\xaf\xaf\xb0\xb2\xb2\xb3\xab\xab\xac\x76\x77\x7b\x7f\ \x7f\x82\xb8\xb8\xb8\xb2\xb3\xb4\xb5\xb7\xb7\xab\xad\xae\x00\x00\ \x00\xe8\xe3\xe2\xe8\xe4\xe3\xe7\xe3\xe2\xe6\xe2\xe1\xe7\xe3\xe2\ \xe7\xe4\xe2\xe7\xe4\xe2\xe7\xe3\xe0\xe8\xe4\xe3\xe8\xe4\xe3\xe9\ \xe5\xe3\xe8\xe4\xe3\xe9\xe5\xe3\xe9\xe5\xe4\xe9\xe5\xe3\xe9\xe5\ \xe4\xea\xe6\xe5\xeb\xe6\xe5\xea\xe5\xe4\xea\xe5\xe5\xea\xe6\xe4\ \xea\xe6\xe4\xeb\xe6\xe5\xeb\xe7\xe4\xea\xe5\xe3\xe5\xe0\xdd\xe1\ \xdb\xd8\xe2\xdc\xd9\xe6\xe0\xdd\xe7\xe3\xdf\xe6\xe1\xde\xe6\xe1\ \xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xdb\xde\xd8\xd6\xda\xd3\xd0\ \xd6\xcf\xcc\xce\xc7\xc4\xc4\xbd\xba\xb9\xb4\xb2\xa3\x9f\x9e\x87\ \x86\x86\x5e\x61\x64\x30\x37\x3f\x1e\x27\x2f\x39\x3d\x42\x6b\x68\ \x6a\x88\x83\x83\x94\x90\x8f\x9c\x98\x99\xa1\x9e\x9e\xa4\xa2\xa2\ \xa6\xa4\xa4\xa3\xa2\xa3\xa2\xa1\xa3\xa2\xa1\xa3\xa1\xa0\xa1\xa0\ \xa0\xa2\x9b\x9c\x9d\x95\x97\x98\x92\x94\x95\x90\x94\x94\x8f\x93\ \x95\x8e\x92\x96\x8e\x93\x96\x8b\x90\x93\x88\x8c\x90\x88\x8d\x93\ \x87\x8d\x93\x86\x8c\x93\x85\x8b\x92\x81\x89\x90\x7f\x87\x8e\x7f\ \x86\x8d\x7e\x84\x8b\x7e\x84\x89\x7c\x82\x87\x7b\x81\x86\x79\x7f\ \x84\x78\x7e\x83\x79\x81\x85\x78\x80\x85\x77\x80\x84\x79\x82\x86\ \x64\x6e\x75\x1d\x2a\x36\x32\x3d\x47\x1b\x25\x2b\x23\x2a\x30\x5c\ \x63\x69\x6b\x73\x78\x79\x7e\x81\x69\x70\x76\x62\x6a\x71\x75\x7c\ \x81\x79\x80\x85\x63\x6e\x73\x64\x6d\x74\x81\x88\x8e\x7a\x83\x89\ \x62\x6c\x74\x5f\x67\x6f\x81\x89\x8d\x81\x89\x8f\x82\x89\x8d\x85\ \x8b\x8f\x86\x8c\x91\x87\x8c\x91\x88\x8c\x91\x88\x8d\x92\x8c\x90\ \x95\x8d\x91\x96\x8e\x92\x97\x8c\x91\x95\x91\x95\x9a\x90\x94\x99\ \x92\x97\x9a\x95\x9a\x9d\x96\x9a\x9d\x97\x9a\x9f\x98\x9b\xa0\x99\ \x9c\xa0\x95\x98\x9d\x94\x97\x9a\x93\x96\x9a\x97\x9a\x9e\x97\x9a\ \x9e\x9a\x9d\xa2\xa1\xa3\xa7\x9e\xa0\xa3\xa1\xa2\xa6\x9f\xa0\xa2\ \xa0\xa4\xa5\x9c\x9e\xa1\x9f\xa2\xa6\xa5\xa8\xac\xa3\xa5\xa9\xa8\ \xa9\xad\xa5\xa8\xac\x9a\x9e\xa2\x64\x65\x6b\x8a\x8b\x8f\xa3\xa3\ \xa6\xaa\xad\xaf\xa7\xa9\xac\x92\x94\x96\x51\x54\x56\x6c\x6c\x6e\ \xba\xba\xbb\xa4\xa3\xa5\xa3\xa2\xa3\x81\x80\x83\x6f\x6f\x73\xa7\ \xa6\xa8\xb3\xb3\xb4\xb2\xb1\xb3\xac\xac\xae\x8e\x90\x92\x6b\x69\ \x6c\xb3\xb2\xb3\xb4\xb6\xb6\xb5\xb6\xb6\x00\x00\x00\xe8\xe4\xe3\ \xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe7\xe3\xe2\xe8\ \xe4\xe3\xe9\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\xe4\ \xe3\xea\xe6\xe5\xea\xe6\xe5\xeb\xe7\xe6\xea\xe6\xe5\xea\xe7\xe6\ \xeb\xe6\xe5\xea\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe3\xeb\xe6\xe4\xeb\ \xe6\xe5\xea\xe5\xe3\xe8\xe3\xe0\xe3\xde\xdb\xe2\xdb\xd7\xe4\xdd\ \xda\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\ \xe4\xdf\xdc\xe0\xdc\xd9\xdd\xd7\xd4\xd8\xd1\xce\xd3\xca\xc9\xcd\ \xc5\xc1\xc1\xba\xb8\xb3\xae\xac\x9d\x9b\x9a\x79\x7a\x7b\x4c\x51\ \x56\x20\x29\x30\x20\x28\x2f\x49\x4c\x50\x77\x74\x74\x8d\x88\x89\ \x9a\x96\x97\xa0\x9f\x9f\xa3\xa1\xa1\xa5\xa4\xa4\xa6\xa5\xa5\xa6\ \xa5\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9e\xa0\xa0\x9f\xa1\x9b\x9d\ \x9e\x96\x98\x99\x91\x94\x95\x8e\x91\x93\x8e\x91\x94\x8f\x92\x96\ \x8c\x91\x94\x89\x8e\x92\x86\x8c\x91\x86\x8c\x91\x88\x8e\x93\x86\ \x8c\x92\x84\x8a\x91\x83\x89\x8f\x82\x88\x8f\x81\x87\x8e\x80\x86\ \x8c\x7e\x84\x89\x7c\x82\x87\x7a\x80\x85\x7a\x80\x86\x79\x81\x86\ \x78\x81\x85\x78\x81\x85\x78\x81\x85\x79\x82\x86\x56\x63\x69\x1c\ \x29\x34\x47\x50\x59\x12\x1d\x25\x35\x3f\x47\x6a\x72\x79\x5c\x66\ \x6e\x70\x76\x7c\x77\x7e\x82\x65\x6e\x74\x66\x6e\x75\x7a\x81\x85\ \x79\x81\x85\x61\x6b\x73\x6a\x73\x79\x80\x86\x8b\x7a\x84\x88\x61\ \x6b\x72\x68\x72\x77\x83\x8a\x8f\x85\x8b\x90\x87\x8d\x92\x88\x8e\ \x93\x88\x8d\x92\x87\x8c\x91\x88\x8e\x93\x8d\x91\x96\x90\x94\x99\ \x8c\x90\x95\x8d\x92\x96\x8f\x93\x97\x8e\x93\x96\x92\x97\x99\x94\ \x99\x9c\x91\x95\x98\x96\x98\x9c\x97\x9a\x9d\x94\x97\x9b\x95\x98\ \x9c\x90\x94\x96\x93\x98\x99\x99\x9b\x9d\x9a\x9b\x9e\x9b\x9e\x9f\ \x9d\x9f\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa5\xa6\xa0\xa5\xa6\x9f\ \xa2\xa6\x9d\xa0\xa4\xa0\xa3\xa7\xa5\xa6\xaa\xa9\xaa\xae\xa1\xa3\ \xa7\xa2\xa5\xa9\xa5\xa8\xac\x6f\x72\x77\x7c\x7e\x80\xa7\xa9\xaa\ \xa6\xa9\xac\xa1\xa3\xa4\x4a\x4d\x4f\x6f\x73\x75\x9a\x9a\x9c\x8b\ \x8a\x8c\x35\x36\x39\x88\x89\x8b\x94\x97\x9b\x66\x68\x6c\xa4\xa6\ \xa6\xb2\xb2\xb3\xb1\xb0\xb2\xb5\xb7\xb7\xa8\xa9\xaa\x70\x70\x73\ \x99\x9a\x9b\xbd\xbd\xbd\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\ \xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe8\xe4\ \xe3\xe9\xe5\xe4\xea\xe6\xe5\xe9\xe6\xe4\xe9\xe4\xe3\xe9\xe5\xe4\ \xe9\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe4\xea\xe6\xe4\xea\xe5\xe3\xeb\ \xe5\xe3\xea\xe5\xe2\xe9\xe5\xe2\xea\xe6\xe4\xea\xe5\xe4\xea\xe5\ \xe4\xe6\xe1\xde\xe4\xdd\xda\xe2\xdb\xd9\xe6\xdf\xdc\xe6\xe2\xdf\ \xe6\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xda\xdf\ \xda\xd8\xdc\xd6\xd4\xd8\xd0\xce\xd2\xc9\xc5\xca\xc3\xbf\xbc\xb6\ \xb2\xaa\xa7\xa5\x90\x91\x8f\x69\x6d\x6f\x39\x40\x47\x1c\x25\x2d\ \x2c\x33\x3a\x5d\x5d\x5f\x81\x7c\x7d\x90\x8c\x8d\x9b\x98\x98\xa1\ \x9f\x9f\xa4\xa3\xa3\xa7\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa4\xa4\xa3\ \xa4\xa0\x9f\xa2\xa0\x9f\xa1\x9d\x9c\x9e\x99\x9b\x9c\x96\x97\x9a\ \x8e\x92\x93\x8d\x91\x93\x8f\x92\x95\x8d\x90\x94\x89\x8e\x91\x88\ \x8c\x90\x85\x8a\x90\x87\x8d\x92\x83\x8a\x8e\x83\x89\x8f\x83\x89\ \x90\x82\x8a\x90\x84\x8a\x91\x83\x89\x8f\x7f\x85\x8a\x7e\x84\x89\ \x7d\x83\x88\x7b\x81\x86\x7a\x80\x85\x7c\x81\x87\x7b\x83\x88\x7b\ \x85\x89\x7a\x83\x87\x78\x81\x84\x4d\x5a\x60\x21\x2e\x36\x5c\x63\ \x6b\x23\x31\x3b\x3f\x49\x50\x75\x7a\x80\x63\x6c\x74\x65\x6b\x73\ \x79\x7f\x84\x77\x7f\x83\x61\x6b\x71\x6d\x74\x7a\x7e\x84\x88\x7a\ \x81\x85\x5f\x69\x70\x70\x77\x7c\x86\x8c\x90\x78\x80\x84\x5d\x67\ \x6d\x71\x78\x7d\x87\x8c\x91\x88\x8e\x93\x88\x8e\x93\x86\x8c\x91\ \x88\x8e\x93\x89\x8d\x93\x8d\x92\x96\x8b\x90\x94\x8e\x92\x97\x8f\ \x94\x98\x93\x97\x9b\x8a\x90\x92\x90\x95\x98\x94\x99\x9b\x97\x9b\ \x9e\x93\x97\x99\x90\x94\x96\x91\x95\x97\x99\x9c\x9f\x98\x9b\x9d\ \x96\x9a\x9b\x99\x9c\x9d\x9b\x9d\x9f\x9e\x9f\xa3\xa0\xa2\xa3\x9f\ \xa0\xa2\x9c\x9e\x9f\x9d\x9f\xa0\xa4\xa6\xa8\xa6\xaa\xac\xa1\xa3\ \xa7\xa0\xa2\xa6\xa8\xa9\xad\xa5\xa7\xab\xa8\xa9\xad\xa6\xa7\xab\ \xa6\xa7\xab\xa5\xa7\xab\x87\x89\x8c\x62\x63\x65\xa4\xa5\xa6\x94\ \x94\x96\x65\x69\x6a\xb1\xb3\xb3\x79\x78\x7a\x87\x87\x8a\x9d\x9f\ \xa4\xa3\xa5\xa9\xb0\xb1\xb3\xaa\xac\xad\x6a\x6c\x6f\x93\x93\x95\ \xb1\xb0\xb1\xaf\xaf\xaf\xb3\xb4\xb4\xaf\xb0\xb1\x7e\x7e\x80\x86\ \x84\x84\x00\x00\x00\xe7\xe3\xe1\xe8\xe3\xe1\xe7\xe3\xe2\xe8\xe4\ \xe3\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\ \xe9\xe5\xe4\xea\xe6\xe5\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe6\xe5\xea\ \xe6\xe4\xe9\xe5\xe3\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe0\xe8\xe3\ \xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xea\xe5\xe3\xe4\xde\xdb\ \xe1\xda\xd7\xe2\xdb\xd8\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe5\ \xe0\xdd\xe5\xdf\xdc\xe4\xde\xdb\xe1\xdb\xd9\xdd\xd8\xd5\xda\xd4\ \xd1\xd6\xce\xca\xcd\xc5\xbf\xc3\xbc\xb7\xb6\xb0\xac\xa2\x9f\x9d\ \x82\x84\x84\x58\x5e\x62\x26\x31\x38\x1d\x25\x2e\x3e\x43\x4a\x70\ \x6d\x6f\x89\x85\x85\x97\x94\x94\x9e\x9d\x9b\xa1\x9f\x9f\xa6\xa4\ \xa4\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa3\xa3\xa4\xa4\xa5\xa2\xa1\xa3\ \x9c\x9d\x9e\x9a\x99\x9b\x96\x99\x9a\x92\x94\x95\x8f\x93\x94\x90\ \x94\x95\x8d\x8f\x93\x8b\x8f\x92\x8a\x8f\x92\x88\x8c\x91\x87\x8c\ \x91\x86\x8d\x92\x83\x89\x8e\x83\x89\x8e\x80\x89\x8d\x81\x8a\x8e\ \x81\x87\x8c\x80\x86\x8d\x80\x86\x8b\x7e\x85\x8b\x7d\x85\x8b\x7c\ \x83\x88\x7d\x83\x88\x7a\x80\x85\x79\x82\x86\x7b\x84\x88\x79\x80\ \x85\x78\x81\x85\x4f\x5c\x61\x10\x1e\x21\x47\x50\x58\x31\x3e\x49\ \x48\x51\x5a\x71\x77\x7b\x75\x7c\x81\x66\x6f\x74\x67\x6f\x74\x7b\ \x82\x85\x76\x7e\x80\x61\x6b\x6e\x70\x78\x7c\x81\x88\x8b\x75\x7e\ \x82\x5f\x69\x6f\x75\x7c\x81\x83\x8a\x8d\x75\x7d\x82\x60\x6a\x71\ \x74\x7c\x81\x86\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8b\ \x8f\x94\x8b\x8f\x94\x8a\x8e\x93\x8d\x91\x96\x8e\x92\x97\x8f\x93\ \x97\x8d\x92\x96\x92\x97\x9b\x92\x96\x9a\x95\x99\x9c\x95\x98\x9b\ \x94\x96\x99\x94\x97\x9b\x99\x9c\xa0\x9d\xa0\xa4\x99\x9c\xa0\x94\ \x97\x9b\x99\x9b\x9c\x9e\xa0\xa2\x9c\x9d\xa0\xa4\xa5\xa8\xa0\xa2\ \xa3\x9d\x9f\xa0\xa1\xa3\xa4\xa3\xa7\xa9\xa6\xa8\xaa\xa3\xa5\xa6\ \xa6\xa7\xa9\xa8\xa9\xac\xa6\xa7\xaa\xa8\xaa\xad\xa4\xa4\xa8\xaa\ \xab\xad\xac\xad\xb0\x95\x98\x9c\x5d\x5f\x62\x4a\x4a\x4b\xa9\xaa\ \xaa\xaf\xaf\xae\xb0\xaf\xb0\x87\x88\x89\x77\x79\x7b\xa7\xa7\xa9\ \xb2\xb3\xb4\xb0\xb1\xb2\xb3\xb5\xb6\x7c\x7d\x7e\x73\x73\x75\xaf\ \xaf\xaf\xad\xad\xad\xb4\xb4\xb4\xbd\xbd\xbe\x95\x95\x97\x00\x00\ \x00\xe7\xe3\xe2\xe7\xe2\xe1\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ \xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe8\ \xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe4\xea\xe6\xe2\xe9\xe6\ \xe2\xe9\xe4\xe1\xe8\xe3\xe0\xe7\xe3\xdf\xe8\xe3\xe0\xe9\xe3\xe0\ \xe8\xe3\xe1\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xdf\xdb\xe1\xdb\xd7\xe3\ \xdc\xd9\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xde\ \xdb\xe3\xdc\xd9\xe0\xd9\xd7\xdc\xd7\xd5\xd9\xd3\xd0\xd3\xcc\xc7\ \xcb\xc3\xbc\xc1\xbc\xb5\xb0\xab\xa9\x9a\x97\x97\x76\x79\x7b\x45\ \x4e\x54\x1f\x2a\x32\x28\x30\x37\x52\x53\x57\x7c\x77\x78\x8e\x8a\ \x8a\x9a\x97\x97\x9f\x9e\x9d\xa3\xa2\xa2\xa4\xa4\xa4\xa4\xa4\xa4\ \xa5\xa5\xa5\xa4\xa4\xa4\xa3\xa2\xa4\x9b\x9b\x9d\x93\x94\x95\x96\ \x97\x98\x95\x97\x98\x93\x94\x97\x90\x93\x96\x8e\x92\x95\x8b\x8e\ \x92\x8a\x8e\x91\x89\x8e\x92\x86\x8b\x8f\x85\x89\x8e\x84\x8a\x8f\ \x85\x8b\x90\x83\x8b\x90\x81\x89\x8e\x80\x87\x8c\x7f\x86\x8b\x7e\ \x87\x8b\x7e\x85\x8b\x7c\x84\x8a\x7c\x84\x89\x7c\x84\x89\x7c\x85\ \x8a\x7a\x83\x87\x79\x82\x86\x7c\x85\x89\x7a\x83\x87\x77\x7f\x83\ \x57\x63\x68\x08\x0f\x13\x10\x19\x1f\x4a\x57\x60\x60\x6a\x6f\x61\ \x6a\x71\x74\x7c\x81\x74\x7b\x7f\x62\x6b\x6f\x6b\x72\x75\x74\x78\ \x7b\x6d\x74\x76\x5b\x64\x69\x73\x7b\x7e\x7f\x87\x8a\x71\x79\x7c\ \x4c\x56\x5b\x7a\x80\x84\x84\x8a\x8f\x76\x7e\x83\x64\x6b\x71\x79\ \x7e\x84\x88\x8c\x91\x8b\x8f\x94\x8c\x8f\x95\x8a\x8e\x93\x89\x8e\ \x92\x8b\x90\x94\x8a\x8e\x91\x8c\x90\x95\x8f\x93\x98\x92\x97\x99\ \x95\x9a\x9d\x94\x99\x9c\x92\x97\x9a\x94\x98\x9b\x95\x98\x9c\x94\ \x98\x9b\x96\x99\x9d\x9b\x9e\xa2\x99\x9c\xa0\x97\x9b\x9c\x9c\xa0\ \xa1\x98\x9a\x9c\x9e\x9f\xa1\xa5\xa7\xa8\xa2\xa4\xa5\xa1\xa3\xa4\ \x9e\xa1\xa2\xa2\xa6\xa7\xa4\xa6\xa8\xa6\xa8\xab\xa3\xa4\xa8\xa3\ \xa5\xa8\xa5\xa7\xa8\xa6\xa8\xaa\xaa\xab\xad\xab\xab\xae\xaa\xab\ \xad\xab\xad\xb0\x97\x99\x9b\x31\x33\x35\x95\x97\x97\xb1\xb2\xb2\ \xaf\xb0\xb1\xae\xb0\xb1\x97\x99\x9b\x79\x79\x7c\x96\x95\x98\xb0\ \xb0\xb2\xb3\xb2\xb4\xb3\xb4\xb5\x9c\x9e\x9f\x6e\x6f\x71\x9d\x9f\ \x9f\xb3\xb3\xb3\xb8\xb9\xb9\xb8\xb9\xb8\x00\x00\x00\xe8\xe3\xe2\ \xe7\xe2\xe1\xe8\xe3\xe2\xe7\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\ \xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\ \xe4\xe8\xe3\xe2\xe9\xe4\xe1\xe9\xe5\xe2\xe9\xe4\xe1\xe8\xe3\xe0\ \xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xe0\xe9\ \xe4\xe1\xe6\xe1\xde\xe3\xdd\xd8\xe1\xdb\xd6\xe5\xde\xdb\xe7\xe1\ \xde\xe7\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xde\xdb\xe2\xdc\xd9\ \xe0\xd9\xd6\xdc\xd5\xd1\xd7\xd1\xce\xd0\xc9\xc5\xc7\xc0\xbb\xbc\ \xb8\xb3\xab\xa8\xa4\x8d\x8e\x8d\x65\x6a\x6e\x33\x3f\x47\x1d\x29\ \x31\x31\x38\x40\x62\x62\x64\x83\x81\x7f\x94\x90\x8f\x9c\x9a\x99\ \xa2\xa2\xa1\xa3\xa4\xa3\xa5\xa5\xa4\xa5\xa5\xa5\xa6\xa6\xa6\xa3\ \xa3\xa3\x9c\x9c\x9d\x87\x89\x8a\x84\x87\x87\x8a\x8c\x8d\x91\x93\ \x95\x93\x95\x99\x8d\x8f\x93\x8c\x8f\x92\x8b\x8e\x92\x89\x8d\x91\ \x89\x8d\x92\x88\x8c\x91\x87\x8b\x90\x84\x89\x8e\x81\x87\x8c\x82\ \x88\x8d\x81\x87\x8c\x7f\x86\x8a\x7f\x87\x8b\x7f\x88\x8c\x7f\x88\ \x8b\x7d\x86\x8a\x7c\x84\x89\x7b\x83\x87\x7b\x84\x88\x7b\x84\x88\ \x7b\x84\x88\x7b\x84\x88\x7b\x84\x88\x78\x7e\x85\x6a\x73\x7a\x36\ \x44\x4c\x34\x3f\x47\x67\x71\x78\x73\x7c\x80\x65\x6e\x73\x63\x6c\ \x71\x77\x7e\x81\x71\x79\x7c\x52\x5b\x5f\x48\x4e\x52\x6b\x6e\x71\ \x6c\x72\x76\x64\x6b\x70\x71\x76\x7a\x56\x5a\x60\x37\x3f\x43\x59\ \x60\x63\x7a\x7f\x82\x87\x8c\x91\x77\x7e\x83\x66\x6d\x73\x7b\x80\ \x85\x8a\x8f\x93\x8a\x8e\x93\x86\x8c\x90\x89\x8f\x92\x8a\x8f\x93\ \x8b\x91\x93\x8c\x90\x95\x8f\x93\x98\x94\x99\x9c\x94\x99\x9c\x94\ \x99\x9c\x95\x99\x9c\x96\x99\x9d\x96\x9a\x9d\x99\x9d\xa0\x97\x9a\ \x9e\x9a\x9d\xa1\x96\x9a\x9b\x98\x9d\x9d\x9a\x9e\x9f\x9c\x9f\xa2\ \x9c\x9f\xa0\xa2\xa5\xa6\x9d\x9f\xa0\xa1\xa3\xa4\xa2\xa4\xa5\xa0\ \xa3\xa4\xa2\xa4\xa5\xa6\xa8\xa8\xa7\xa8\xa9\xa7\xa8\xa9\xa6\xa7\ \xa8\xa5\xa7\xa8\xab\xac\xad\xa7\xa8\xaa\xaa\xab\xac\xa7\xa8\xa9\ \x5c\x5f\x61\xa0\xa5\xa7\x7a\x7d\x7f\x80\x81\x82\xa5\xa5\xa6\xb0\ \xaf\xb1\xb5\xb4\xb6\xa5\xa5\xa7\x76\x75\x78\x91\x91\x92\xae\xae\ \xae\xb1\xb2\xb2\xb6\xb6\xb7\xb0\xb2\xb3\x6e\x71\x72\x8a\x8b\x8a\ \xae\xaf\xad\xb9\xba\xb8\x00\x00\x00\xe7\xe2\xdf\xe7\xe2\xdf\xe7\ \xe3\xe1\xe7\xe4\xe2\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\ \xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe4\xe3\xe8\xe4\xe3\ \xe9\xe4\xe1\xe9\xe5\xe2\xe8\xe3\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\ \xe4\xe1\xe9\xe4\xe1\xe8\xe4\xe0\xe9\xe4\xe1\xe9\xe3\xe0\xe5\xe0\ \xdb\xe2\xdc\xd7\xe2\xdc\xd7\xe6\xe0\xdc\xe7\xe0\xdd\xe7\xe0\xdd\ \xe5\xe0\xdd\xe4\xdf\xdc\xe4\xde\xdb\xe0\xdb\xd8\xde\xd8\xd5\xda\ \xd4\xd0\xd5\xcf\xcc\xce\xc7\xc3\xc5\xbf\xbb\xb5\xb1\xac\xa1\xa1\ \x9c\x80\x82\x82\x53\x5b\x5f\x27\x33\x3d\x1e\x2b\x32\x40\x45\x4b\ \x71\x70\x71\x8b\x89\x89\x96\x94\x94\x9f\x9d\x9d\xa3\xa2\xa2\xa4\ \xa4\xa3\xa4\xa4\xa4\xa6\xa6\xa6\xa3\xa3\xa3\xa0\xa0\xa0\x8a\x8c\ \x8d\x7b\x7f\x80\x7b\x7e\x7f\x89\x8b\x8c\x90\x92\x93\x8f\x91\x93\ \x8d\x90\x93\x8c\x8f\x93\x89\x8c\x90\x87\x8b\x90\x87\x8b\x90\x88\ \x8c\x91\x87\x8b\x92\x83\x88\x8e\x83\x88\x8d\x83\x89\x8f\x81\x89\ \x8e\x7f\x87\x8b\x80\x86\x8c\x7e\x87\x8b\x7d\x85\x8a\x7c\x84\x89\ \x7c\x85\x8a\x7c\x85\x8a\x7a\x83\x87\x7b\x83\x88\x7a\x83\x87\x79\ \x82\x86\x79\x82\x86\x79\x81\x87\x75\x7d\x84\x72\x7a\x81\x71\x79\ \x80\x78\x7f\x85\x78\x80\x84\x71\x78\x7e\x61\x6a\x70\x6b\x72\x78\ \x74\x7a\x7e\x2e\x35\x39\x14\x1a\x1e\x53\x55\x59\x79\x7c\x7f\x6e\ \x73\x77\x45\x4c\x51\x0d\x0f\x13\x4a\x4e\x52\x48\x4f\x52\x63\x69\ \x6d\x80\x84\x88\x87\x8c\x91\x72\x78\x7d\x67\x6d\x72\x7d\x81\x85\ \x8a\x8d\x92\x8b\x8f\x93\x8d\x92\x95\x8d\x92\x96\x8c\x91\x95\x8c\ \x91\x94\x90\x95\x98\x94\x97\x9c\x93\x98\x9b\x97\x9b\x9f\x98\x9c\ \xa0\x95\x98\x9c\x96\x99\x9d\x99\x9c\xa0\x9a\x9c\xa0\x9d\xa0\xa2\ \x9a\x9e\x9f\x9b\x9f\xa0\x9f\xa2\xa3\x9e\xa2\xa3\x9d\xa0\xa2\xa0\ \xa4\xa5\x9e\x9f\xa0\xa0\xa2\xa3\xa6\xa8\xa9\xa3\xa5\xa6\xa4\xa7\ \xa8\xa4\xa6\xa7\xa8\xa9\xaa\xaa\xaa\xac\xa9\xa8\xaa\xa6\xa5\xa6\ \xaa\xaa\xac\xa7\xa6\xa8\xa8\xa9\xaa\x9b\x9d\x9e\x51\x56\x57\xb3\ \xb8\xb8\xad\xaf\xb0\x8b\x8b\x8d\x75\x75\x76\x9d\x9d\x9e\xb1\xb1\ \xb2\xb5\xb4\xb5\xb1\xb1\xb1\x7f\x7f\x80\x83\x83\x85\xa1\xa1\xa2\ \xb5\xb6\xb7\xb2\xb4\xb5\xb7\xba\xba\x88\x89\x89\x7c\x7d\x7d\xa2\ \xa3\xa1\x00\x00\x00\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xde\xe8\xe3\ \xe1\xe8\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ \xe8\xe4\xe3\xe9\xe5\xe4\xea\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xe9\ \xe4\xe2\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xe9\xe4\ \xe1\xe9\xe4\xe0\xe8\xe3\xe0\xe7\xe1\xdc\xe2\xdc\xd7\xe1\xdb\xd6\ \xe3\xdd\xd8\xe7\xe1\xdd\xe7\xe1\xde\xe7\xe1\xde\xe5\xe0\xdd\xe4\ \xde\xdb\xe3\xdd\xda\xe0\xdb\xd9\xdd\xd6\xd4\xda\xd3\xcf\xd4\xcd\ \xca\xca\xc4\xbf\xbf\xba\xb6\xaf\xad\xa8\x95\x95\x93\x72\x74\x76\ \x43\x4b\x52\x20\x2a\x34\x2a\x33\x3b\x55\x57\x5b\x7d\x7b\x7b\x8f\ \x8d\x8c\x99\x96\x95\xa2\xa0\x9f\xa5\xa3\xa3\xa3\xa3\xa3\xa5\xa5\ \xa5\xa5\xa4\xa5\xa3\xa3\xa3\x95\x96\x97\x7e\x81\x83\x75\x79\x7b\ \x7c\x7f\x80\x87\x89\x8a\x8b\x8d\x8e\x8c\x8e\x90\x8e\x91\x95\x8d\ \x8f\x93\x89\x8d\x91\x87\x8b\x90\x87\x8b\x90\x86\x8a\x90\x87\x8c\ \x93\x83\x89\x8f\x83\x89\x8e\x82\x89\x8e\x81\x88\x8d\x7f\x86\x8b\ \x7e\x86\x8c\x7c\x85\x89\x7d\x86\x8b\x7d\x85\x8a\x7c\x84\x8a\x7c\ \x84\x8b\x7b\x83\x88\x79\x82\x86\x79\x81\x85\x7a\x82\x86\x7a\x82\ \x87\x7a\x82\x88\x77\x7f\x85\x77\x7f\x85\x78\x80\x86\x78\x7f\x86\ \x79\x80\x85\x79\x7f\x84\x6f\x76\x7c\x64\x6c\x71\x66\x6d\x71\x21\ \x26\x29\x00\x03\x05\x26\x2a\x2e\x6a\x6d\x71\x7f\x83\x85\x45\x4c\ \x51\x00\x00\x00\x24\x26\x29\x4e\x52\x56\x6d\x74\x77\x67\x6d\x71\ \x83\x87\x8b\x88\x8d\x91\x75\x7b\x80\x6b\x70\x76\x7f\x82\x86\x8c\ \x90\x94\x90\x94\x98\x93\x98\x9b\x8e\x93\x96\x8d\x92\x95\x92\x97\ \x9a\x94\x98\x9c\x95\x99\x9d\x96\x9a\x9e\x96\x9b\x9f\x98\x9b\x9f\ \x96\x99\x9d\x97\x9a\x9e\x9b\x9e\xa2\x9b\x9f\xa1\x9c\xa0\xa1\x9b\ \x9f\xa0\x9e\xa2\xa3\x9e\xa1\xa3\xa0\xa3\xa5\xa1\xa3\xa4\x9d\x9f\ \xa0\x9e\xa0\xa2\xa5\xa7\xa8\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa8\ \xa6\xa8\xa9\xa6\xa9\xaa\xa9\xaa\xab\xa4\xa4\xa5\xa7\xa8\xa9\xa9\ \xa8\xaa\xa7\xa8\xa9\x5d\x60\x63\x94\x98\x99\xac\xaf\xaf\xb1\xb1\ \xb1\xb3\xb4\xb4\x9b\x9c\x9d\x7d\x7e\x7f\x8f\x90\x90\xa6\xa7\xa7\ \xb2\xb3\xb2\xb4\xb5\xb5\x90\x91\x93\x82\x81\x83\x96\x95\x96\xac\ \xae\xae\xb5\xb6\xb6\xba\xbb\xbb\xa0\xa1\xa1\x7b\x7c\x7c\x00\x00\ \x00\xe7\xe1\xde\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe7\xe2\xe0\ \xe7\xe3\xe1\xe8\xe4\xe3\xe9\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\ \xe4\xe3\xea\xe5\xe5\xe9\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe3\xe9\xe4\ \xe1\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe2\xdf\xe8\xe2\xde\xe7\xe1\xdd\ \xe5\xe0\xdb\xe2\xdb\xd6\xdf\xd7\xd2\xdf\xd8\xd3\xe4\xde\xd8\xe8\ \xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\xe5\xe0\xdd\xe4\xde\xdb\xe1\xdc\ \xdb\xdf\xda\xd8\xdc\xd6\xd5\xd8\xd1\xce\xd1\xcb\xc8\xc7\xc1\xbe\ \xb9\xb4\xb1\xa7\xa4\xa2\x8b\x8b\x8b\x62\x66\x69\x33\x3c\x44\x21\ \x2a\x33\x3a\x40\x47\x67\x66\x67\x85\x81\x81\x94\x90\x90\x9d\x9a\ \x99\xa2\xa0\x9f\xa4\xa3\xa3\xa5\xa5\xa5\xa4\xa5\xa5\xa5\xa5\xa5\ \xa2\xa2\xa2\x8b\x8c\x8d\x77\x7a\x7c\x74\x78\x7a\x80\x83\x84\x86\ \x88\x89\x81\x83\x84\x87\x8a\x8c\x8d\x90\x93\x8b\x8d\x92\x88\x8c\ \x90\x88\x8c\x90\x89\x8d\x91\x85\x8a\x8f\x85\x8a\x90\x83\x88\x8d\ \x82\x88\x8d\x81\x87\x8c\x81\x87\x8c\x81\x87\x8d\x7f\x87\x8c\x7d\ \x86\x8b\x7d\x86\x8c\x7c\x85\x8a\x7c\x84\x8a\x7c\x84\x8a\x7c\x84\ \x8a\x7a\x83\x89\x7a\x82\x88\x7a\x83\x87\x79\x81\x87\x78\x80\x87\ \x77\x7f\x86\x76\x7d\x84\x77\x7f\x86\x79\x80\x87\x7d\x82\x88\x7d\ \x83\x8a\x7b\x82\x88\x6f\x77\x7c\x52\x5b\x5f\x18\x1d\x1f\x00\x00\ \x00\x19\x1c\x20\x5a\x5e\x61\x72\x77\x7b\x47\x50\x55\x0b\x0f\x12\ \x03\x03\x04\x61\x63\x66\x82\x87\x89\x6e\x74\x78\x6b\x6f\x73\x83\ \x86\x8a\x89\x8e\x91\x73\x79\x7d\x69\x6e\x72\x81\x84\x87\x91\x95\ \x99\x92\x96\x9a\x8f\x94\x97\x91\x96\x99\x92\x97\x9a\x94\x99\x9c\ \x96\x99\x9d\x95\x98\x9c\x99\x9d\xa0\x9b\x9d\xa1\x97\x9a\x9e\x98\ \x9b\x9f\x9a\x9d\xa1\x99\x9c\x9e\x9b\x9f\xa0\x9c\x9f\xa0\x9c\xa0\ \xa1\x9d\xa1\xa2\x9f\xa2\xa4\x9e\xa0\xa1\xa1\xa3\xa3\xa6\xa8\xa8\ \xa5\xa7\xa8\xa4\xa6\xa7\xa4\xa6\xa7\xa2\xa4\xa5\xa2\xa4\xa5\xa4\ \xa6\xa7\xa5\xa7\xa8\xa6\xa6\xa7\xa7\xa8\xa9\xaa\xaa\xab\xa3\xa4\ \xa5\x5c\x5f\x63\xb0\xb2\xb3\xb0\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\ \xb4\xb3\xb4\xa7\xa7\xa8\x80\x82\x84\x7e\x80\x82\xa4\xa4\xa5\xb2\ \xb2\xb3\xb9\xb9\xba\xa9\xa8\xaa\x85\x85\x87\x83\x84\x85\xa6\xa5\ \xa6\xba\xba\xb8\xba\xba\xb9\xac\xad\xac\x00\x00\x00\xe7\xe1\xde\ \xe7\xe1\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\ \xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe2\xe0\xe8\xe2\ \xe0\xe8\xe2\xe1\xe8\xe2\xe0\xe7\xe1\xdf\xe6\xe0\xdd\xe5\xdf\xdc\ \xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xda\xe4\xde\xda\xe2\xdc\xd7\xde\ \xd6\xd2\xdd\xd5\xd1\xe0\xd7\xd3\xe5\xdf\xda\xe8\xe1\xde\xe6\xe0\ \xdd\xe7\xe0\xdd\xe6\xdf\xdc\xe2\xde\xdb\xe1\xdb\xda\xde\xd8\xd7\ \xda\xd5\xd4\xd6\xcf\xcd\xce\xc8\xc5\xc3\xbe\xbc\xb3\xad\xac\x9e\ \x9b\x9c\x7c\x7e\x7e\x4f\x56\x5c\x26\x32\x3b\x25\x30\x38\x47\x4a\ \x50\x77\x73\x73\x8c\x87\x88\x9a\x96\x96\x9f\x9d\x9c\xa2\xa0\xa0\ \xa6\xa4\xa5\xa6\xa6\xa7\xa4\xa5\xa5\xa5\xa4\xa4\x9d\x9d\x9d\x81\ \x83\x84\x71\x75\x76\x77\x7b\x7c\x86\x88\x88\x83\x86\x87\x7c\x80\ \x81\x81\x85\x86\x89\x8c\x8f\x89\x8c\x90\x87\x8b\x8f\x87\x8c\x90\ \x88\x8c\x8f\x85\x8b\x8e\x82\x88\x8c\x81\x88\x8c\x81\x88\x8c\x80\ \x86\x8b\x80\x86\x8a\x80\x86\x8d\x7e\x85\x8c\x7e\x85\x8b\x7d\x85\ \x8b\x7c\x84\x8b\x7c\x84\x89\x7b\x84\x88\x7c\x85\x8a\x7c\x85\x8c\ \x7a\x83\x89\x79\x82\x86\x77\x81\x86\x78\x81\x87\x78\x81\x86\x77\ \x7f\x86\x78\x7e\x85\x7b\x81\x88\x7e\x85\x8a\x7e\x85\x8c\x7b\x84\ \x8b\x6d\x76\x7c\x34\x3c\x40\x0c\x12\x14\x00\x00\x00\x2c\x30\x34\ \x5f\x64\x67\x34\x3a\x3e\x26\x2e\x35\x2d\x36\x3d\x01\x04\x07\x4f\ \x54\x59\x85\x89\x8b\x82\x88\x8c\x6d\x72\x76\x6c\x71\x75\x84\x88\ \x8b\x87\x8b\x8f\x74\x79\x7c\x6d\x72\x75\x85\x89\x8b\x91\x95\x98\ \x93\x97\x9b\x95\x9a\x9d\x91\x96\x99\x95\x99\x9c\x97\x9a\x9e\x98\ \x9b\x9f\x99\x9c\xa0\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x99\x9d\ \xa0\x98\x9c\x9d\x9b\x9e\x9f\x9f\xa1\xa2\x9c\xa0\xa1\x9d\xa1\xa2\ \x9d\xa0\xa1\xa0\xa1\xa2\xa0\xa0\xa0\x7a\x7c\x7c\x77\x79\x7a\x96\ \x98\x99\xa5\xa6\xa7\xa2\xa5\xa5\xa4\xa7\xa7\xa6\xa8\xa9\xa6\xa7\ \xa8\xa7\xa7\xa8\xa9\xa9\xab\xa8\xa9\xaa\xa6\xa8\xa9\x9b\x9d\x9e\ \xab\xad\xae\xaf\xaf\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb3\xb2\xb4\xb1\ \xb1\xb3\xaa\xac\xad\x92\x94\x97\x83\x84\x85\x92\x93\x94\xb6\xb6\ \xb6\xb8\xb7\xb8\xb4\xb4\xb6\x8f\x90\x91\x88\x88\x89\x94\x94\x94\ \xbb\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xdd\xda\xe4\xdd\xda\xe5\ \xdd\xda\xe5\xde\xda\xe5\xde\xdb\xe4\xde\xdc\xe4\xde\xdb\xe5\xde\ \xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe3\xdd\xda\xe3\xdd\xda\ \xe3\xdc\xda\xe3\xdc\xda\xe2\xdb\xd8\xe3\xdc\xd9\xe4\xdd\xda\xe4\ \xde\xda\xe4\xdd\xd9\xe2\xdb\xd7\xde\xd6\xd2\xda\xd0\xcc\xde\xd4\ \xd0\xe2\xd9\xd5\xe7\xe1\xdc\xe7\xe0\xdd\xe7\xe1\xde\xe8\xe0\xdd\ \xe5\xdf\xdb\xe2\xdd\xda\xe0\xdb\xd9\xde\xd7\xd6\xd9\xd4\xd3\xd4\ \xcf\xcd\xcb\xc6\xc3\xbe\xb9\xb7\xaf\xaa\xa8\x94\x93\x92\x6e\x72\ \x72\x40\x48\x4f\x20\x2b\x33\x2e\x35\x3d\x5c\x5b\x5f\x80\x7d\x7d\ \x91\x8d\x8d\x9c\x98\x98\xa1\x9f\x9f\xa5\xa3\xa3\xa6\xa5\xa5\xa6\ \xa6\xa6\xa4\xa4\xa4\xa4\xa3\xa4\x95\x95\x96\x7b\x7e\x7f\x70\x74\ \x75\x7c\x7f\x80\x86\x88\x89\x82\x84\x85\x7c\x80\x81\x7f\x83\x84\ \x86\x89\x8c\x8a\x8d\x91\x86\x8a\x8d\x85\x8a\x8d\x85\x8a\x8d\x84\ \x8a\x8e\x82\x88\x8c\x81\x87\x8c\x81\x87\x8d\x81\x87\x8b\x80\x86\ \x8b\x81\x88\x8e\x7e\x85\x8b\x80\x88\x8d\x7d\x86\x8b\x7e\x86\x8b\ \x7d\x86\x8a\x7b\x85\x89\x7c\x85\x8a\x7b\x84\x89\x7b\x83\x88\x79\ \x81\x87\x78\x80\x87\x78\x80\x87\x78\x80\x87\x77\x7f\x86\x7a\x81\ \x88\x79\x81\x87\x7b\x83\x88\x7e\x85\x8c\x7c\x84\x8b\x5d\x67\x6d\ \x1a\x21\x25\x0a\x0f\x12\x06\x0a\x0d\x47\x4a\x4e\x77\x7a\x7c\x1e\ \x23\x28\x0b\x0e\x10\x32\x3a\x40\x37\x3d\x42\x5a\x60\x65\x6f\x75\ \x79\x83\x88\x8b\x83\x87\x8b\x6e\x73\x78\x6c\x71\x76\x83\x87\x8b\ \x8c\x90\x93\x79\x7f\x82\x6b\x71\x74\x87\x8b\x8f\x93\x96\x9b\x96\ \x99\x9d\x93\x97\x9a\x94\x97\x9b\x97\x9a\x9e\x99\x9c\xa0\x97\x9a\ \x9e\x96\x99\x9d\x9a\x9d\xa1\x9c\x9e\xa2\x9a\x9d\xa1\x99\x9d\x9f\ \x9b\xa0\xa0\x9f\xa3\xa3\x9f\xa3\xa4\x9e\xa1\xa2\xa1\xa2\xa3\xa1\ \xa2\xa3\x66\x67\x68\x3c\x3f\x40\x86\x8a\x8b\xa0\xa1\xa2\xa6\xa7\ \xa8\xa5\xa6\xa6\xa7\xa8\xa8\xa7\xa8\xa9\xab\xac\xad\xa9\xaa\xab\ \xa8\xa9\xaa\xaa\xab\xac\xad\xaf\xb0\xac\xad\xaf\xad\xac\xae\xae\ \xad\xaf\xae\xae\xaf\xaf\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xb0\xae\xaf\ \xb0\xb6\xb7\xb9\xa1\xa4\xa5\x81\x83\x85\x84\x84\x86\xb2\xb2\xb3\ \xb5\xb2\xb4\xbb\xba\xba\xa3\xa2\xa4\x84\x85\x86\x86\x85\x85\xb3\ \xb2\xb2\x00\x00\x00\xd7\xbc\xb1\xe1\xd6\xd1\xe1\xd8\xd5\xe1\xda\ \xd7\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe2\xdb\xd8\ \xe2\xdb\xd8\xe2\xdc\xda\xe2\xdc\xda\xe3\xdc\xd9\xe2\xdb\xd8\xe3\ \xdc\xd9\xe3\xdb\xd8\xe3\xda\xd6\xe0\xd7\xd2\xdf\xd6\xd1\xe0\xd8\ \xd5\xe0\xd8\xd4\xda\xd1\xcd\xd9\xcf\xcb\xdc\xd3\xd0\xe4\xdc\xd9\ \xe8\xe1\xdd\xe6\xdf\xdc\xe8\xe1\xde\xe6\xe0\xdd\xe4\xde\xdc\xe1\ \xdc\xdb\xe0\xd9\xd9\xdb\xd6\xd4\xd6\xd1\xcf\xd1\xcb\xc9\xc7\xc2\ \xbf\xb8\xb4\xb0\xa6\xa3\x9f\x88\x88\x87\x60\x64\x66\x33\x39\x41\ \x23\x2a\x33\x3d\x41\x48\x6e\x6d\x6d\x86\x83\x82\x96\x92\x91\x9f\ \x9c\x9c\xa3\xa1\xa1\xa7\xa5\xa5\xa6\xa6\xa6\xa4\xa4\xa4\xa4\xa3\ \xa4\xa1\xa1\xa1\x8a\x8c\x8d\x73\x77\x79\x74\x77\x78\x82\x83\x85\ \x85\x87\x89\x7f\x82\x84\x7c\x80\x81\x80\x84\x85\x82\x85\x88\x87\ \x8b\x8e\x86\x8b\x8d\x84\x89\x8c\x83\x89\x8c\x82\x88\x8c\x81\x87\ \x8b\x81\x87\x8c\x80\x86\x8c\x7e\x84\x8a\x7c\x80\x85\x6f\x75\x7c\ \x6a\x71\x79\x73\x7b\x81\x7b\x84\x89\x7b\x84\x89\x7b\x84\x88\x7c\ \x85\x89\x7b\x84\x89\x7b\x84\x89\x7c\x85\x8c\x7b\x82\x89\x79\x83\ \x8b\x79\x80\x89\x7a\x82\x89\x7a\x82\x89\x7b\x82\x89\x79\x80\x86\ \x79\x7f\x85\x7d\x84\x8a\x80\x88\x8d\x5c\x66\x6c\x13\x18\x1c\x04\ \x07\x09\x26\x2b\x2f\x5c\x5f\x62\x7a\x7c\x7f\x25\x2e\x34\x00\x01\ \x01\x24\x26\x2a\x77\x79\x7d\x7c\x81\x86\x6c\x71\x77\x6d\x72\x76\ \x86\x8a\x8e\x85\x88\x8c\x6d\x72\x76\x6e\x72\x77\x88\x8c\x8f\x90\ \x94\x99\x7d\x82\x86\x6c\x71\x75\x87\x8a\x8e\x98\x9b\x9e\x96\x99\ \x9d\x98\x9b\x9f\x98\x9b\x9f\x9a\x9d\xa1\x9b\x9e\xa2\x99\x9c\xa0\ \x9b\x9e\xa2\x9d\x9f\xa3\x9f\xa2\xa6\x9d\xa0\xa3\x9c\xa0\xa1\x9c\ \x9f\xa1\xa2\xa6\xa8\x9f\xa2\xa4\xa2\xa3\xa4\x9b\x9e\x9f\x22\x25\ \x26\x79\x7e\x7f\xa4\xa6\xa6\x8d\x8d\x8f\x97\x97\x9a\xab\xaa\xab\ \xa4\xa4\xa5\xa6\xa7\xa8\xac\xad\xae\xac\xac\xae\xaa\xac\xad\xac\ \xae\xaf\xa9\xab\xac\xaa\xac\xac\xac\xad\xaf\xaf\xaf\xb0\xae\xae\ \xaf\xaf\xb0\xb1\xae\xae\xaf\xae\xaf\xb0\xaf\xae\xb0\xb2\xb2\xb4\ \xb5\xb6\xb7\xab\xae\xaf\x91\x93\x96\x76\x76\x79\xa4\xa1\xa3\xbc\ \xb9\xbb\xb7\xb6\xb6\xab\xab\xac\x98\x99\x9a\x82\x80\x82\x00\x00\ \x00\xa9\x87\x7e\xe0\xcc\xc4\xe3\xdb\xd7\xe1\xda\xd7\xe3\xdc\xd9\ \xe4\xdd\xda\xe4\xdd\xda\xe3\xdd\xda\xe5\xdd\xda\xe4\xdd\xdb\xe3\ \xdd\xda\xe5\xdd\xdb\xe2\xda\xd7\xe1\xd7\xd3\xdd\xd2\xcd\xda\xcf\ \xc9\xd9\xce\xc7\xd7\xcc\xc5\xd8\xcd\xc8\xdc\xd3\xcf\xde\xd6\xd2\ \xdb\xd2\xce\xd9\xd0\xcc\xdd\xd4\xd0\xe5\xdd\xd9\xe7\xe0\xdd\xe6\ \xdf\xdc\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xdb\xe0\xda\xda\xdf\xd7\ \xd7\xda\xd4\xd2\xd4\xce\xca\xcc\xc7\xc2\xc2\xbd\xba\xb3\xaf\xaa\ \x9c\x9a\x94\x7a\x7b\x7b\x4f\x54\x59\x29\x2f\x37\x29\x2e\x36\x50\ \x52\x56\x78\x77\x77\x8b\x86\x86\x98\x95\x95\xa1\x9f\x9f\xa5\xa3\ \xa3\xa7\xa6\xa6\xa6\xa6\xa6\xa3\xa3\xa3\xa3\xa3\xa3\x9d\x9e\x9e\ \x83\x86\x87\x71\x76\x77\x76\x79\x7a\x84\x85\x87\x83\x86\x87\x80\ \x83\x84\x7e\x81\x82\x7f\x83\x84\x7f\x82\x86\x85\x89\x8d\x87\x8c\ \x8f\x83\x88\x8b\x83\x88\x8c\x81\x87\x8c\x82\x88\x8c\x80\x86\x8a\ \x7e\x86\x8b\x7d\x83\x88\x6e\x74\x79\x44\x4c\x59\x37\x41\x4e\x4f\ \x56\x60\x70\x77\x7d\x7b\x84\x89\x7b\x84\x88\x7a\x83\x87\x7b\x84\ \x88\x7b\x85\x8a\x7c\x85\x8c\x79\x82\x89\x79\x82\x89\x7b\x83\x8a\ \x7a\x82\x89\x7b\x83\x8a\x7b\x82\x89\x7d\x83\x89\x7b\x80\x85\x7b\ \x82\x87\x7b\x82\x87\x56\x61\x67\x18\x21\x26\x03\x07\x0a\x47\x4b\ \x4d\x63\x67\x6b\x53\x5a\x61\x36\x43\x4b\x0d\x12\x16\x0a\x0b\x0d\ \x69\x6c\x72\x86\x8a\x8e\x7c\x81\x85\x67\x6e\x71\x71\x76\x7a\x89\ \x8c\x91\x86\x8b\x8f\x6d\x73\x77\x6e\x73\x77\x8c\x8f\x93\x8f\x94\ \x97\x7f\x85\x89\x6e\x73\x78\x89\x8c\x91\x9a\x9d\xa1\x97\x9a\x9e\ \x96\x99\x9d\x9a\x9d\xa0\x9b\x9e\xa1\x99\x9c\x9f\x9a\x9e\xa0\x9a\ \x9d\xa0\x9b\x9e\xa2\x9f\xa2\xa5\x98\x9c\x9e\x9d\xa0\xa3\xa0\xa4\ \xa6\x9e\xa1\xa4\xa2\xa5\xa7\x92\x97\x98\x27\x2d\x30\xa6\xa9\xa9\ \xa0\xa2\xa2\x6d\x6e\x72\x4a\x4c\x52\xa3\xa3\xa5\xa8\xa8\xa9\xa6\ \xa6\xa6\xab\xab\xab\xac\xad\xad\xad\xae\xaf\xae\xaf\xaf\xa9\xa8\ \xa9\xac\xab\xac\xac\xad\xad\xb1\xb1\xb1\xb1\xb1\xb1\xad\xad\xae\ \xac\xab\xac\xac\xac\xad\xb1\xb1\xb3\xaf\xaf\xb0\xb1\xb1\xb3\xb5\ \xb5\xb7\xaf\xb0\xb2\x9e\x9e\xa0\x7e\x7d\x7f\x91\x8e\x92\xbd\xbd\ \xbf\xb9\xb9\xb9\xb1\xb4\xb5\xa3\xa3\xa5\x00\x00\x00\x78\x62\x60\ \xd4\xb6\xae\xdf\xd6\xd2\xd9\xcf\xcb\xd9\xcf\xcb\xdb\xd2\xcf\xda\ \xd1\xce\xd8\xcf\xcc\xd9\xd1\xcd\xd9\xd0\xcb\xd8\xcf\xcb\xd6\xca\ \xc6\xd2\xc5\xbe\xd0\xc1\xba\xcf\xc0\xb7\xcf\xc1\xb9\xd1\xc6\xbe\ \xd4\xca\xc2\xd8\xce\xc7\xdc\xd3\xcf\xdb\xd2\xce\xdb\xd2\xce\xde\ \xd5\xd1\xe3\xda\xd6\xe6\xe0\xdc\xe7\xe1\xdd\xe7\xe0\xdd\xe6\xe0\ \xdd\xe3\xde\xdd\xe2\xdc\xdb\xdf\xda\xd9\xde\xd7\xd6\xd9\xd3\xd2\ \xd4\xce\xca\xca\xc5\xc0\xbf\xba\xb6\xae\xaa\xa6\x92\x91\x8d\x6b\ \x6e\x71\x3d\x43\x4a\x24\x2c\x34\x35\x39\x40\x60\x60\x63\x80\x7e\ \x80\x92\x8f\x8f\x9d\x9a\x9b\xa1\x9f\x9f\xa5\xa4\xa4\xa6\xa6\xa6\ \xa6\xa5\xa5\xa2\xa3\xa3\xa3\xa3\xa3\x96\x97\x97\x7b\x7e\x80\x6d\ \x71\x73\x74\x77\x78\x83\x85\x85\x80\x83\x84\x7e\x82\x83\x80\x84\ \x85\x7a\x7e\x7f\x7f\x82\x85\x82\x86\x8a\x85\x89\x8d\x83\x88\x8b\ \x82\x88\x8b\x82\x88\x8b\x81\x87\x8c\x80\x87\x8b\x7f\x89\x8c\x7f\ \x85\x89\x65\x6b\x73\x31\x3c\x48\x2a\x34\x3f\x3d\x45\x4f\x67\x6c\ \x73\x7d\x83\x89\x7b\x83\x88\x7a\x83\x87\x7b\x84\x88\x7a\x84\x89\ \x79\x81\x88\x79\x82\x88\x79\x81\x89\x7b\x83\x8a\x7b\x83\x8a\x7b\ \x82\x89\x7c\x84\x8b\x7e\x85\x8c\x7b\x82\x86\x7c\x82\x87\x77\x7d\ \x81\x62\x6a\x6e\x2e\x3a\x41\x0a\x16\x1d\x52\x59\x5d\x73\x7a\x7e\ \x51\x5c\x63\x46\x52\x5b\x26\x33\x3c\x26\x2f\x35\x57\x5e\x65\x75\ \x7a\x7f\x85\x89\x8d\x7b\x81\x83\x65\x6c\x70\x71\x75\x7a\x8f\x92\ \x96\x89\x8d\x91\x72\x76\x7b\x72\x76\x7b\x8f\x93\x96\x93\x97\x9a\ \x83\x88\x8c\x6c\x71\x76\x8b\x8e\x93\x98\x9a\x9e\x98\x9b\x9e\x9b\ \x9f\xa1\x9c\x9f\xa2\x9a\x9e\xa0\x99\x9d\x9f\x9a\x9e\xa1\x9c\x9f\ \xa3\x9f\xa2\xa6\x9d\xa0\xa4\x9e\xa1\xa5\xa0\xa3\xa7\x9b\x9e\xa1\ \xa1\xa5\xa6\x95\x9a\x9c\x4f\x57\x5b\xad\xae\xae\x94\x97\x96\x5e\ \x63\x66\x81\x84\x87\xa9\xa9\xaa\xa9\xa9\xab\xa6\xa7\xa8\xa9\xa9\ \xaa\xab\xab\xab\xac\xad\xad\xac\xab\xad\xad\xad\xad\xa5\xa5\xa5\ \xae\xae\xae\xaf\xaf\xaf\xb1\xb1\xb1\xad\xad\xad\xad\xac\xad\xac\ \xac\xad\xb0\xaf\xb1\xb0\xb0\xb2\xb2\xb3\xb4\xb2\xb4\xb5\xb2\xb3\ \xb5\xba\xb9\xbb\xaf\xaf\xb1\x87\x87\x8b\x6f\x70\x74\xb4\xb3\xb3\ \xb9\xba\xbb\xb4\xb6\xb6\x00\x00\x00\x97\x8a\x86\xd3\xbf\xba\xdd\ \xd5\xd1\xd3\xc9\xc5\xcc\xc1\xbd\xcf\xc5\xc3\xcb\xc2\xbf\xc5\xbc\ \xba\xc4\xbb\xb8\xc5\xbd\xb9\xc8\xc0\xbc\xc6\xbd\xb6\xc6\xbc\xb4\ \xc7\xbd\xb4\xc9\xbf\xb5\xce\xc3\xb9\xd3\xc8\xc0\xd7\xcd\xc5\xda\ \xd0\xc9\xdf\xd7\xd2\xdf\xd6\xd3\xdd\xd4\xd0\xdf\xd6\xd2\xe4\xdb\ \xd8\xe7\xe0\xdd\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe3\xdd\xdd\ \xe0\xdc\xdb\xdf\xdb\xd9\xdc\xd5\xd3\xd6\xd0\xcd\xd0\xc9\xc5\xc5\ \xc0\xba\xb8\xb4\xaf\xa5\xa1\x9f\x86\x86\x85\x5a\x5f\x62\x30\x39\ \x40\x25\x2e\x36\x44\x47\x4c\x71\x6e\x70\x89\x86\x88\x98\x94\x96\ \xa1\x9e\xa0\xa3\xa2\xa3\xa5\xa5\xa5\xa7\xa7\xa7\xa6\xa5\xa5\xa3\ \xa3\xa3\xa1\xa1\xa1\x8e\x8f\x90\x74\x77\x7a\x6e\x72\x74\x79\x7c\ \x7d\x83\x85\x85\x7f\x82\x83\x7e\x80\x81\x7f\x84\x85\x79\x7d\x7f\ \x7c\x80\x83\x7f\x82\x86\x84\x88\x8b\x85\x89\x8d\x83\x88\x8d\x83\ \x89\x8d\x81\x87\x8d\x7d\x83\x89\x7d\x84\x8a\x7c\x82\x89\x64\x6d\ \x75\x3c\x48\x52\x37\x3f\x4a\x48\x4f\x59\x60\x64\x6e\x7b\x7f\x85\ \x7d\x84\x89\x7a\x83\x87\x7a\x83\x88\x7b\x83\x89\x7b\x83\x8a\x79\ \x82\x89\x7c\x83\x8c\x7c\x85\x8c\x7d\x85\x8c\x7b\x82\x89\x7c\x82\ \x89\x7a\x81\x87\x79\x80\x85\x7a\x80\x85\x7a\x80\x84\x70\x77\x7b\ \x49\x55\x5d\x46\x54\x5b\x6c\x75\x7a\x7c\x83\x88\x73\x7a\x7f\x44\ \x51\x59\x3d\x4a\x54\x71\x77\x7a\x73\x79\x7c\x5b\x62\x66\x77\x7b\ \x7e\x88\x8c\x8d\x7a\x7f\x83\x69\x70\x73\x70\x74\x77\x72\x74\x77\ \x7b\x7f\x81\x6d\x73\x77\x72\x78\x7c\x92\x94\x98\x96\x9a\x9d\x85\ \x8a\x8d\x6a\x6f\x72\x87\x89\x8d\x9b\x9d\x9e\x99\x9c\x9f\x9a\x9d\ \xa1\x9a\x9d\xa1\x99\x9d\xa0\x9a\x9d\xa1\x9d\xa0\xa4\x9c\x9f\xa3\ \x9d\xa0\xa4\x9f\xa2\xa6\xa2\xa5\xa9\xa3\xa6\xaa\x9f\xa3\xa4\x9a\ \x9d\xa0\x74\x7a\x7d\xa4\xa6\xa7\x8a\x8c\x8d\x5c\x61\x63\xae\xad\ \xad\xae\xac\xad\xb1\xae\xaf\x9f\x9d\x9d\xa5\xa5\xa5\xa9\xa9\xa9\ \xac\xac\xae\xab\xaa\xad\xac\xac\xad\xac\xab\xac\xb1\xb1\xb1\xad\ \xad\xad\xb0\xb0\xb0\xb0\xb0\xb0\xb2\xb2\xb2\xb0\xaf\xb0\xae\xae\ \xaf\xb1\xb0\xb2\xb4\xb4\xb5\xb0\xb0\xb1\xb8\xb7\xba\xb7\xb9\xba\ \xb3\xb3\xb5\xb1\xb2\xb3\x9e\xa1\xa4\x6c\x6d\x71\xa2\xa2\xa4\xbb\ \xbb\xba\x00\x00\x00\xc9\xbc\xb8\xdd\xd2\xce\xe1\xda\xd7\xd8\xd0\ \xcd\xce\xc4\xc0\xd2\xca\xc6\xd4\xcc\xc9\xce\xc6\xc3\xcb\xc4\xc0\ \xcc\xc3\xbf\xcc\xc3\xbf\xcb\xc1\xbd\xcc\xc3\xbc\xd1\xc7\xbf\xd5\ \xcb\xc3\xda\xd0\xc9\xdd\xd4\xd0\xdf\xd6\xd3\xe2\xdb\xd7\xe2\xdb\ \xd7\xde\xd5\xd2\xdd\xd4\xd0\xe0\xd7\xd3\xe6\xe0\xdd\xe6\xe0\xdd\ \xe6\xdf\xdc\xe6\xe1\xde\xe4\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\ \xda\xd8\xda\xd4\xd2\xd5\xce\xcb\xcd\xc7\xc2\xc2\xbd\xb9\xb2\xad\ \xac\x9b\x98\x99\x78\x78\x7b\x47\x50\x55\x27\x32\x39\x2f\x36\x3e\ \x54\x56\x5a\x7c\x79\x7b\x8f\x8c\x8e\x9c\x99\x9b\xa2\x9f\xa1\xa4\ \xa3\xa3\xa8\xa8\xa8\xa7\xa7\xa7\xa5\xa5\xa5\xa5\xa4\xa5\xa0\x9f\ \xa1\x87\x89\x8a\x6f\x72\x74\x70\x74\x75\x7c\x7e\x7f\x83\x85\x87\ \x7e\x82\x84\x7c\x80\x81\x79\x7d\x7e\x76\x7a\x7c\x77\x7b\x7d\x7a\ \x7d\x81\x80\x83\x87\x84\x88\x8d\x84\x88\x8d\x81\x87\x8c\x81\x87\ \x8c\x80\x86\x8b\x7f\x85\x8b\x7c\x84\x8b\x64\x6f\x76\x44\x52\x5b\ \x3c\x47\x51\x3f\x47\x54\x57\x5c\x67\x75\x79\x80\x7d\x84\x88\x7b\ \x85\x88\x7c\x85\x8a\x7b\x84\x8a\x7b\x83\x8a\x7a\x82\x89\x79\x81\ \x88\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x83\x8b\x7c\x84\x8b\ \x7b\x84\x89\x7c\x84\x89\x7e\x84\x88\x76\x7d\x81\x66\x70\x75\x70\ \x77\x7d\x7b\x81\x86\x7f\x86\x8b\x7e\x84\x89\x6d\x76\x7c\x57\x61\ \x68\x79\x7d\x82\x7b\x7f\x82\x4d\x52\x57\x4e\x53\x58\x7e\x81\x84\ \x89\x8e\x90\x77\x7d\x7f\x33\x39\x3c\x3f\x41\x45\x7e\x81\x84\x8b\ \x91\x94\x72\x78\x7c\x74\x78\x7c\x94\x96\x99\x95\x99\x9a\x87\x8c\ \x8e\x65\x67\x69\x89\x88\x8a\x9b\x9e\x9f\x97\x9b\x9e\x99\x9c\xa0\ \x99\x9c\xa0\x9c\x9f\xa3\x9d\xa0\xa4\x9d\xa0\xa4\x99\x9c\xa0\x9d\ \xa0\xa4\xa0\xa3\xa7\xa4\xa7\xab\xa0\xa4\xa5\xa1\xa5\xa7\x95\x99\ \x9a\x84\x87\x89\x53\x54\x56\x4c\x4a\x4b\x5c\x58\x58\x30\x2d\x2e\ \x10\x0d\x0e\x41\x3f\x41\x9b\x9a\x9b\xae\xae\xaf\xa8\xa9\xa9\xae\ \xad\xae\xab\xab\xab\xb2\xb2\xb2\xb0\xb0\xb0\xaf\xaf\xaf\xae\xae\ \xae\xb3\xb3\xb3\xb3\xb3\xb3\xb2\xb2\xb2\xaf\xaf\xaf\xb3\xb3\xb4\ \xb2\xb1\xb3\xb3\xb2\xb4\xb7\xb7\xb8\xb2\xb1\xb3\xb4\xb3\xb5\xb5\ \xb6\xb7\xb7\xb7\xb9\xb2\xb4\xb5\x81\x81\x83\x89\x87\x87\x00\x00\ \x00\xd2\xc5\xc0\xdd\xd0\xcb\xe0\xd5\xd0\xd4\xc9\xc5\xcc\xc1\xbd\ \xd6\xcb\xc8\xdc\xd4\xd1\xdc\xd5\xd2\xda\xd2\xcf\xda\xd3\xcf\xdb\ \xd4\xd0\xdc\xd5\xd0\xdd\xd5\xd1\xdf\xd6\xd3\xe1\xd8\xd5\xe2\xda\ \xd7\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd6\xdf\xd7\xd3\xdc\xd3\xcf\ \xde\xd4\xd0\xe3\xdc\xd9\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe5\ \xe0\xdd\xe4\xde\xdb\xe1\xdc\xda\xe0\xdb\xda\xdd\xd8\xd4\xd9\xd3\ \xd0\xd3\xcc\xc8\xc9\xc4\xbf\xbd\xb9\xb6\xab\xa9\xa7\x8f\x8f\x8f\ \x69\x6d\x71\x37\x41\x48\x22\x2d\x35\x3a\x40\x48\x67\x66\x6a\x85\ \x81\x83\x94\x91\x93\x9d\x9b\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa5\xa5\ \xa5\xa6\xa6\xa6\xa6\xa6\xa6\xa4\xa3\xa3\x9c\x9c\x9d\x7f\x83\x84\ \x6c\x71\x72\x6d\x71\x74\x7e\x81\x83\x80\x84\x86\x7e\x83\x83\x7d\ \x81\x82\x72\x76\x79\x73\x76\x7a\x77\x7a\x7e\x7b\x7e\x82\x7c\x7f\ \x83\x81\x85\x88\x82\x87\x8a\x7f\x84\x89\x7d\x83\x87\x7d\x83\x8a\ \x80\x87\x8e\x7c\x84\x8b\x6b\x75\x7c\x4d\x59\x62\x44\x4f\x5a\x39\ \x44\x50\x47\x4e\x5a\x73\x77\x7f\x7d\x84\x88\x7c\x84\x88\x7a\x83\ \x87\x79\x82\x87\x7b\x84\x8a\x7b\x83\x8a\x7b\x82\x8a\x7a\x82\x89\ \x7c\x84\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7d\ \x85\x8b\x7c\x84\x89\x79\x81\x85\x77\x7f\x83\x7d\x85\x89\x80\x87\ \x8c\x7f\x87\x8b\x81\x87\x8c\x83\x89\x8e\x74\x7a\x7f\x53\x5b\x60\ \x31\x36\x3c\x2f\x33\x38\x53\x58\x5b\x57\x5c\x5f\x7d\x82\x83\x62\ \x67\x66\x12\x14\x15\x1d\x1e\x21\x4a\x4d\x51\x80\x83\x87\x8e\x92\ \x95\x70\x77\x7a\x72\x76\x79\x93\x97\x98\x96\x99\x9a\x3a\x3b\x3b\ \x1c\x1b\x1c\x81\x7e\x7f\x97\x9a\x9b\x97\x9b\x9e\x98\x9b\x9f\x9b\ \x9e\xa2\x9c\x9f\xa3\x9a\x9d\xa1\x9b\x9e\xa2\x9a\x9d\xa1\x9d\xa0\ \xa4\x9f\xa0\xa4\xa3\xa6\xa8\xa6\xa9\xaa\xa2\xa5\xa6\x8a\x8e\x90\ \x35\x3b\x3e\x1a\x20\x24\x3f\x47\x4a\x68\x70\x73\x3a\x40\x44\x6c\ \x70\x74\xa5\xa5\xa7\x99\x97\x9a\xa2\xa2\xa2\xac\xac\xac\xad\xad\ \xae\xb0\xb0\xb1\xae\xad\xae\xaa\xab\xaa\xad\xad\xad\xaf\xaf\xaf\ \xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xb4\xb4\xb5\xb2\xb1\xb3\xb3\ \xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\xb6\xbb\xba\ \xbc\xbc\xbb\xbd\xaf\xb2\xb3\x97\x99\x9a\x00\x00\x00\xd4\xc9\xc2\ \xdd\xd2\xcd\xd4\xc9\xc4\xc2\xb8\xb4\xc6\xbc\xb7\xd7\xcd\xc9\xe0\ \xd9\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe2\xdb\xd8\xe1\xda\xd7\xe2\xdb\ \xd8\xe2\xdb\xd8\xe3\xdb\xd8\xe2\xd9\xd6\xe2\xda\xd7\xe2\xda\xd7\ \xe3\xdc\xd9\xe3\xdc\xd9\xdf\xd7\xd3\xdd\xd4\xd0\xe0\xd7\xd3\xe5\ \xdd\xda\xe7\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdd\ \xda\xe1\xdc\xd9\xde\xd9\xd7\xdc\xd7\xd6\xd7\xd1\xd0\xd0\xc9\xc6\ \xc4\xbf\xbc\xb7\xb3\xb1\xa5\xa2\xa2\x83\x84\x86\x5a\x5f\x67\x2e\ \x39\x41\x25\x2f\x38\x49\x4d\x55\x74\x72\x74\x8a\x87\x88\x98\x95\ \x97\xa1\x9e\xa0\xa5\xa4\xa4\xa7\xa6\xa6\xa7\xa7\xa7\xa6\xa6\xa6\ \xa4\xa3\xa4\xa3\xa3\xa3\x93\x93\x94\x77\x7b\x7d\x6b\x70\x73\x72\ \x74\x78\x83\x84\x87\x82\x84\x87\x80\x82\x86\x82\x84\x87\x74\x78\ \x7b\x70\x74\x77\x75\x79\x7a\x7a\x7f\x81\x79\x7e\x82\x7e\x82\x85\ \x82\x86\x8a\x7f\x85\x89\x7e\x83\x88\x7e\x83\x89\x7c\x83\x8a\x7d\ \x84\x8b\x71\x7b\x82\x4b\x5b\x62\x2c\x39\x45\x22\x2e\x39\x39\x42\ \x4e\x6f\x74\x7b\x7e\x84\x89\x7d\x85\x89\x7b\x84\x87\x7a\x83\x88\ \x7c\x84\x8a\x7a\x82\x89\x7b\x83\x8a\x7b\x83\x8a\x7e\x86\x8d\x80\ \x87\x8f\x7f\x88\x8e\x7d\x86\x8c\x7c\x83\x8a\x7c\x85\x8b\x7b\x83\ \x88\x7b\x82\x88\x7b\x82\x88\x7c\x83\x88\x80\x86\x8b\x80\x87\x8c\ \x84\x8c\x91\x86\x8c\x91\x82\x88\x8d\x6a\x72\x79\x09\x10\x14\x1a\ \x1b\x1d\x45\x49\x4d\x5e\x61\x66\x6e\x70\x72\x5c\x60\x60\x18\x19\ \x19\x03\x04\x04\x29\x2b\x2e\x75\x78\x7b\x93\x97\x98\x92\x97\x98\ \x74\x7a\x7e\x73\x77\x7a\x84\x86\x87\x09\x09\x09\x00\x00\x00\x2b\ \x2e\x30\x86\x8a\x8c\x9a\x9d\xa0\x96\x99\x9c\x9a\x9c\xa0\x9c\x9f\ \xa2\x97\x9a\x9e\x98\x9b\x9f\x9a\x9c\x9f\x9c\x9e\xa2\x9d\x9e\xa2\ \xa2\xa4\xa6\xa9\xab\xac\xa5\xa7\xaa\xa5\xa8\xab\xa6\xab\xae\xa1\ \xa8\xac\xa5\xac\xb0\x9e\xa4\xa7\x63\x69\x6b\x8d\x90\x92\x3f\x3f\ \x42\x23\x25\x29\x5a\x5c\x5e\x9e\x9e\x9f\xb2\xb1\xb2\xaf\xaf\xb0\ \xaf\xae\xb0\xae\xae\xae\xad\xad\xae\xaf\xaf\xaf\xb2\xb2\xb2\xad\ \xad\xae\xaf\xaf\xaf\xb3\xb3\xb3\xb0\xb0\xb1\xb7\xb6\xb8\xb2\xb1\ \xb3\xb1\xb0\xb2\xb6\xb5\xb8\xb6\xb4\xb7\xb6\xb6\xb7\xbb\xba\xbb\ \xb7\xb8\xb9\xba\xbb\xbd\x00\x00\x00\xd4\xc8\xc0\xd4\xca\xc3\xc2\ \xb7\xb1\xbf\xb6\xb2\xcd\xc2\xbe\xdc\xd1\xce\xe0\xd8\xd5\xe1\xda\ \xd7\xe1\xda\xd7\xe1\xda\xd7\xe0\xd9\xd6\xe1\xda\xd7\xe2\xdb\xd8\ \xe3\xdb\xd8\xe3\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe5\xde\xdb\xe3\ \xdc\xd9\xdf\xd6\xd3\xde\xd6\xd2\xe1\xd9\xd6\xe6\xe0\xdd\xe7\xe1\ \xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe0\xda\xd7\ \xdd\xd8\xd5\xda\xd5\xd4\xd4\xcf\xcd\xcd\xc8\xc6\xc2\xbd\xbd\xb2\ \xae\xad\x98\x97\x97\x73\x77\x7a\x47\x50\x58\x27\x32\x39\x2f\x37\ \x3f\x5b\x5c\x62\x7d\x79\x7b\x91\x8c\x8d\x9b\x97\x98\xa2\xa0\xa0\ \xa5\xa3\xa3\xa6\xa4\xa5\xa7\xa7\xa7\xa5\xa5\xa5\xa3\xa3\xa3\xa1\ \xa0\xa1\x8c\x8c\x8d\x70\x74\x77\x6b\x70\x74\x77\x78\x7c\x83\x83\ \x85\x82\x84\x85\x80\x82\x83\x7e\x81\x82\x73\x77\x78\x6c\x70\x71\ \x73\x76\x78\x78\x7c\x7f\x77\x7b\x7f\x78\x7c\x80\x81\x85\x88\x82\ \x88\x8c\x7f\x85\x8a\x7e\x84\x89\x7e\x86\x8c\x7c\x84\x8b\x73\x7d\ \x84\x51\x61\x68\x21\x33\x3c\x15\x24\x2e\x3e\x4a\x55\x6e\x72\x79\ \x74\x78\x7d\x72\x78\x7d\x78\x7e\x83\x7a\x81\x86\x78\x80\x86\x78\ \x80\x87\x7b\x83\x8a\x7b\x83\x8a\x7d\x86\x8d\x7d\x87\x8e\x7c\x86\ \x8d\x7c\x84\x8b\x7b\x84\x8a\x7d\x86\x8c\x7e\x86\x8d\x7e\x86\x8d\ \x7c\x84\x8b\x7b\x82\x88\x7d\x83\x88\x81\x89\x8d\x85\x8c\x90\x84\ \x8c\x90\x81\x87\x8a\x77\x7d\x80\x1c\x25\x29\x01\x01\x02\x32\x35\ \x37\x85\x88\x89\x73\x77\x77\x3c\x40\x42\x10\x12\x15\x00\x00\x00\ \x43\x46\x47\x6b\x6f\x73\x85\x87\x88\x93\x96\x97\x92\x96\x99\x77\ \x7b\x7f\x2e\x31\x35\x00\x00\x00\x0f\x10\x11\x6c\x71\x74\x74\x78\ \x7a\x79\x7d\x7f\x97\x9b\x9c\x9b\x9e\x9f\x9e\xa0\xa1\x9c\x9e\xa1\ \x98\x9b\x9f\x9c\x9e\xa0\x9d\xa0\xa1\x9e\xa0\xa1\xa3\xa5\xa6\xa7\ \xa8\xaa\xa5\xa6\xa9\xa2\xa4\xa7\xa8\xaa\xab\xa3\xa6\xa7\x9b\x9e\ \x9f\x60\x64\x65\x6a\x6e\x6f\xa1\xa3\xa4\x33\x36\x37\x93\x98\x98\ \xb4\xb8\xb8\x5d\x5d\x60\xaa\xaa\xab\xa1\xa0\xa1\xa1\xa1\xa1\xac\ \xac\xae\xb1\xb1\xb3\xb0\xaf\xb0\xaf\xaf\xb0\xaf\xaf\xaf\xb1\xb1\ \xb1\xb2\xb2\xb2\xb5\xb5\xb5\xb9\xb8\xba\xb5\xb4\xb6\xb1\xb0\xb2\ \xb4\xb3\xb5\xb6\xb5\xb7\xb9\xb8\xb9\xbc\xbc\xbd\xb7\xb6\xb8\xba\ \xb8\xba\x00\x00\x00\xc0\xb0\xa9\xc5\xb9\xb2\xbd\xb1\xab\xc6\xb8\ \xb3\xd6\xc9\xc5\xdf\xd6\xd3\xe1\xd8\xd7\xe0\xd9\xd7\xe2\xdb\xd8\ \xe2\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdb\xd8\xe3\xdc\xd9\xe3\ \xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdc\xd9\xe1\xda\ \xd7\xe2\xda\xd6\xe4\xdd\xda\xe6\xe1\xde\xe6\xe1\xde\xe5\xe1\xde\ \xe5\xe1\xde\xe4\xde\xdb\xe2\xdd\xda\xdf\xda\xd7\xdd\xd8\xd5\xd8\ \xd3\xd2\xd2\xcd\xcb\xc8\xc3\xc2\xbc\xb6\xb7\xaa\xa5\xa6\x8c\x8c\ \x8d\x63\x6a\x6f\x37\x43\x4b\x28\x32\x3a\x40\x45\x4c\x6d\x6b\x6e\ \x85\x82\x83\x95\x90\x92\x9e\x9a\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa7\ \xa7\xa7\xa6\xa5\xa6\xa5\xa4\xa6\xa4\xa3\xa5\x9c\x9b\x9d\x81\x83\ \x85\x69\x70\x73\x68\x6d\x70\x7a\x7c\x7e\x83\x84\x85\x7c\x7e\x7f\ \x75\x78\x79\x72\x74\x75\x71\x74\x75\x68\x6d\x6d\x71\x74\x76\x78\ \x7c\x7f\x79\x7e\x81\x77\x7c\x7f\x7c\x80\x84\x7f\x85\x89\x80\x86\ \x8b\x7c\x82\x87\x7e\x84\x8b\x7f\x86\x8c\x78\x80\x86\x6e\x79\x7e\ \x5b\x6a\x72\x53\x62\x6a\x62\x6d\x72\x6b\x71\x76\x47\x4e\x56\x37\ \x3f\x49\x60\x64\x6b\x77\x7c\x82\x7b\x81\x88\x79\x81\x87\x7b\x83\ \x8a\x7e\x86\x8d\x7e\x87\x8e\x7d\x86\x8d\x7d\x85\x8c\x7e\x86\x8d\ \x80\x88\x8f\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8d\x7d\x86\x8c\x7c\ \x84\x88\x7e\x86\x8a\x81\x88\x8d\x82\x88\x8d\x84\x8a\x8e\x75\x7b\ \x7e\x45\x4b\x4e\x3c\x43\x46\x0e\x12\x15\x27\x29\x2c\x82\x84\x85\ \x5a\x5c\x5d\x16\x19\x1c\x18\x1c\x1f\x09\x0c\x0e\x52\x55\x55\x87\ \x8a\x8c\x71\x75\x78\x80\x84\x86\x95\x96\x98\x8f\x91\x93\x13\x15\ \x18\x00\x00\x00\x28\x2b\x2c\x98\x9d\x9e\x7a\x7f\x82\x4d\x54\x58\ \x7d\x81\x83\x99\x9b\x9d\xa1\xa2\xa3\xa0\xa4\xa4\x9d\xa0\xa2\xa0\ \xa2\xa3\xa1\xa3\xa4\x9f\xa1\xa2\xa5\xa7\xa8\xa8\xa9\xab\xa3\xa5\ \xa8\xa7\xa9\xaa\xa9\xab\xae\xa8\xaa\xad\xa3\xa5\xa9\x69\x6d\x6f\ \x6e\x72\x73\xa8\xaa\xac\x6a\x6f\x70\x8e\x92\x91\xa0\xa2\xa1\x1a\ \x1a\x1c\xa1\xa1\xa4\x6a\x6a\x6f\x77\x77\x7b\xaf\xb1\xb2\xb2\xb3\ \xb5\xad\xad\xaf\xb2\xb1\xb2\xb3\xb3\xb3\xb3\xb3\xb3\xb1\xb0\xb0\ \xb6\xb5\xb6\xb7\xb6\xb8\xb1\xb0\xb2\xb5\xb4\xb6\xb5\xb4\xb6\xb6\ \xb5\xb7\xb9\xb8\xba\xb9\xb7\xba\xb4\xb4\xb5\xb7\xb7\xb8\x00\x00\ \x00\xb0\xa7\xa2\xc9\xc0\xbb\xd0\xc7\xc2\xd7\xce\xc9\xdf\xd8\xd4\ \xe1\xda\xd8\xe0\xd8\xd5\xe1\xd9\xd5\xe2\xdb\xd7\xe3\xdc\xd9\xe3\ \xdc\xd9\xe3\xdc\xd9\xe2\xda\xd7\xe2\xd9\xd5\xe3\xda\xd7\xe2\xdb\ \xd8\xe3\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe4\xdd\xda\xe5\xde\xda\ \xe6\xdf\xdc\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe2\ \xdd\xda\xe1\xdc\xd9\xdd\xd8\xd4\xdb\xd6\xd3\xd6\xd1\xcf\xcf\xca\ \xc8\xc4\xbf\xbf\xb6\xb1\xb2\xa1\x9d\x9d\x80\x7f\x81\x55\x5b\x62\ \x2e\x3a\x42\x29\x33\x3b\x50\x53\x57\x77\x74\x75\x8c\x87\x88\x99\ \x94\x95\xa1\x9d\x9e\xa4\xa2\xa2\xa8\xa6\xa7\xa8\xa6\xa8\xa7\xa5\ \xa7\xa3\xa3\xa4\xa0\x9f\xa1\x90\x90\x92\x74\x79\x7c\x66\x6d\x70\ \x6b\x70\x72\x7d\x7f\x81\x81\x83\x85\x71\x73\x74\x5d\x61\x64\x5b\ \x5e\x60\x68\x6a\x6b\x6a\x6d\x6d\x70\x73\x75\x7a\x7d\x81\x79\x7d\ \x82\x78\x7c\x80\x77\x7c\x7f\x7d\x82\x85\x7d\x82\x87\x7c\x82\x87\ \x7d\x83\x89\x7d\x83\x89\x7d\x84\x8a\x7b\x83\x88\x79\x82\x87\x74\ \x7e\x83\x77\x80\x84\x60\x6a\x70\x20\x2d\x38\x0e\x1a\x26\x40\x46\ \x50\x6c\x70\x76\x79\x80\x84\x79\x82\x85\x7d\x85\x8c\x7f\x87\x8e\ \x7e\x86\x8c\x7d\x86\x8d\x7d\x85\x8c\x7c\x85\x8c\x7e\x87\x8e\x81\ \x88\x90\x80\x88\x8f\x7e\x86\x8d\x7d\x86\x8b\x7c\x85\x8a\x7d\x86\ \x8a\x7f\x88\x8c\x80\x8a\x8e\x84\x8c\x8f\x59\x64\x66\x03\x08\x0b\ \x3b\x3f\x42\x29\x30\x32\x37\x3b\x3f\x6b\x6e\x70\x44\x47\x48\x06\ \x08\x0a\x17\x1c\x1e\x24\x2c\x2f\x6a\x6e\x6f\x95\x97\x98\x89\x8e\ \x8f\x6a\x70\x73\x83\x85\x88\x5e\x60\x62\x00\x00\x00\x04\x05\x05\ \x48\x4c\x4e\x8b\x8d\x8f\x70\x75\x77\x75\x7c\x7e\x7e\x81\x84\x7b\ \x7d\x80\x99\x9b\x9c\xa1\xa4\xa5\x9f\xa2\xa3\xa5\xa7\xa8\xa4\xa6\ \xa7\xa3\xa5\xa6\xa8\xaa\xab\xa7\xa9\xaa\xa2\xa4\xa6\xab\xac\xaf\ \xaa\xab\xaf\xaa\xab\xaf\xab\xac\xb0\xab\xae\xb1\x9e\xa2\xa3\xa5\ \xa7\xa9\x9f\xa3\xa3\x82\x87\x86\x4c\x4f\x50\x33\x36\x39\xa5\xa7\ \xaa\x5a\x5c\x61\x80\x81\x86\xb3\xb4\xb6\xaf\xb1\xb3\xad\xae\xaf\ \xae\xae\xaf\xb3\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\xb6\xb5\xb7\xb4\ \xb4\xb5\xb2\xb1\xb3\xb8\xb7\xb8\xb6\xb5\xb7\xb3\xb2\xb4\xba\xb9\ \xbb\xb3\xb2\xb4\xb6\xb5\xb7\xbc\xbb\xbd\x00\x00\x00\xc2\xb8\xb1\ \xd9\xcf\xc9\xdf\xd7\xd2\xe2\xdb\xd6\xe3\xdd\xd8\xe2\xdb\xd8\xe0\ \xd8\xd4\xe0\xd7\xd2\xdf\xd8\xd4\xe0\xd9\xd5\xe0\xd9\xd5\xe2\xdb\ \xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xde\xdb\ \xe5\xdf\xdc\xe5\xdf\xdc\xe6\xdf\xdc\xe6\xe0\xdc\xe6\xe0\xdd\xe7\ \xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe1\xdc\ \xd9\xdc\xd7\xd4\xd9\xd4\xd2\xd4\xce\xcc\xcb\xc6\xc5\xc0\xbb\xbb\ \xb0\xab\xac\x97\x94\x94\x71\x73\x75\x44\x4c\x53\x28\x33\x3c\x30\ \x39\x3f\x61\x61\x63\x7f\x7b\x79\x91\x8c\x8c\x9d\x99\x9a\xa3\x9f\ \xa1\xa6\xa2\xa3\xa7\xa5\xa6\xa8\xa6\xa6\xa5\xa4\xa5\xa2\xa2\xa3\ \x96\x97\x98\x7c\x80\x82\x69\x6f\x73\x66\x6d\x70\x73\x77\x79\x82\ \x84\x85\x7e\x80\x81\x6a\x6d\x6f\x45\x4e\x52\x3f\x45\x49\x58\x5b\ \x5d\x66\x6a\x6b\x6f\x72\x75\x7a\x7e\x82\x79\x7d\x82\x78\x7c\x80\ \x74\x78\x7c\x79\x7d\x82\x7d\x82\x87\x7c\x82\x87\x7c\x82\x87\x7d\ \x83\x88\x7b\x82\x87\x7d\x85\x8a\x7b\x84\x89\x7b\x83\x89\x78\x81\ \x87\x58\x65\x6e\x21\x34\x41\x33\x3e\x4a\x57\x5e\x66\x63\x69\x70\ \x76\x7c\x81\x7a\x82\x86\x7d\x85\x8c\x80\x88\x8e\x7f\x88\x8d\x7e\ \x86\x8d\x7b\x83\x89\x7d\x85\x8c\x7c\x84\x8b\x7f\x87\x8f\x81\x89\ \x91\x82\x8a\x91\x7f\x87\x8d\x7e\x86\x8b\x80\x87\x8c\x81\x88\x8c\ \x82\x8a\x8e\x85\x8d\x91\x5b\x68\x6b\x02\x06\x0a\x0c\x0f\x12\x4d\ \x54\x57\x7f\x82\x83\x70\x74\x75\x30\x37\x3a\x00\x00\x00\x0e\x12\ \x14\x50\x56\x59\x72\x76\x79\x86\x88\x89\x97\x99\x9a\x90\x94\x95\ \x6e\x73\x77\x19\x1b\x1d\x00\x00\x00\x1a\x1c\x1d\x7d\x80\x84\x60\ \x65\x68\x54\x5b\x5d\x98\x9b\x9c\x9a\x9d\x9e\x7c\x7f\x82\x7a\x7d\ \x7f\x93\x96\x96\xa0\xa2\xa3\xa3\xa5\xa6\xa5\xa7\xa8\xa8\xaa\xab\ \xa6\xa8\xa9\xa5\xa7\xa9\xa5\xa7\xa9\xaa\xac\xae\xab\xac\xb0\xad\ \xae\xb2\xad\xae\xb2\xa9\xab\xad\xa8\xaa\xab\xa8\xa9\xab\xaa\xab\ \xad\xa7\xa9\xaa\x8f\x94\x98\xa4\xa7\xab\xac\xad\xaf\xb3\xb5\xb7\ \xab\xad\xb0\xb0\xb0\xb2\xae\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xaf\xb0\ \xb0\xaf\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb5\xb3\xb2\xb3\xb3\xb2\ \xb4\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb8\xb7\xb9\xb8\xb7\xb9\ \xb6\xb5\xb7\xb9\xb8\xba\x00\x00\x00\xd6\xcb\xc5\xdf\xd6\xd2\xe1\ \xd9\xd6\xe2\xdb\xd7\xe2\xdc\xd8\xe1\xdb\xd8\xe1\xda\xd6\xe1\xda\ \xd5\xe1\xda\xd7\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdb\xd8\xe4\xdd\xda\ \xe5\xde\xdc\xe5\xe0\xdd\xe7\xe0\xde\xe7\xe1\xdf\xe6\xe2\xe0\xe6\ \xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ \xde\xe6\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xd9\xe0\xdb\xd8\xdc\xd7\xd5\ \xd8\xd2\xcf\xd2\xcb\xc8\xc8\xc2\xc1\xbb\xb6\xb5\xa8\xa5\xa4\x89\ \x8a\x89\x5f\x65\x68\x36\x3f\x48\x28\x32\x3b\x40\x47\x4d\x6c\x6b\ \x6b\x85\x81\x7e\x97\x92\x91\xa0\x9b\x9c\xa4\x9f\xa0\xa8\xa4\xa5\ \xa7\xa5\xa5\xa8\xa5\xa5\xa5\xa3\xa3\x9e\x9e\x9f\x8f\x91\x92\x77\ \x7c\x7e\x6a\x70\x73\x6d\x72\x74\x7d\x80\x81\x87\x89\x8a\x82\x84\ \x85\x6d\x72\x73\x44\x4f\x52\x43\x4b\x4e\x4d\x52\x55\x58\x5c\x5f\ \x66\x69\x6d\x77\x7b\x80\x78\x7c\x81\x77\x7b\x80\x74\x78\x7d\x74\ \x79\x7e\x7c\x81\x84\x7d\x83\x88\x7d\x83\x88\x7b\x82\x86\x7a\x80\ \x85\x7c\x83\x88\x79\x82\x86\x7c\x83\x8a\x78\x80\x87\x59\x66\x6f\ \x2a\x3d\x4a\x4d\x56\x5f\x6b\x71\x77\x66\x6c\x74\x74\x7a\x7f\x7c\ \x81\x86\x7e\x85\x8d\x7e\x86\x8d\x7e\x87\x8c\x7e\x86\x8c\x7d\x85\ \x8c\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8e\x7f\x87\x8e\x82\x89\x91\ \x7f\x88\x8e\x80\x88\x8d\x82\x89\x8c\x83\x89\x8d\x83\x89\x8e\x82\ \x87\x8b\x4f\x5c\x61\x1c\x27\x2d\x03\x05\x08\x5c\x62\x66\x8e\x8f\ \x90\x7a\x7e\x81\x3b\x44\x4a\x0a\x11\x15\x11\x13\x15\x6b\x6d\x70\ \x81\x84\x88\x71\x73\x77\x86\x87\x89\x99\x9b\x9c\x6c\x70\x74\x00\ \x00\x01\x01\x01\x01\x4a\x4c\x4f\x9f\xa0\xa2\x62\x68\x6b\x4d\x54\ \x58\x8b\x8d\x90\x9b\x9d\x9f\x9b\x9e\xa0\x84\x88\x8b\x7a\x7d\x7e\ \x91\x94\x95\xa3\xa5\xa6\xa9\xaa\xab\xaa\xab\xac\xa5\xa7\xa8\xa8\ \xaa\xab\xa8\xaa\xab\xab\xac\xaf\xab\xac\xaf\xad\xaf\xb2\xac\xae\ \xb0\xaa\xab\xac\xaa\xac\xad\xa9\xaa\xac\xa8\xa7\xa9\xad\xac\xae\ \xaf\xb0\xb1\xae\xaf\xb0\xb0\xb1\xb2\xac\xad\xaf\xaa\xab\xad\xab\ \xab\xad\xb1\xb1\xb2\xb0\xaf\xb1\xb1\xb0\xb1\xaf\xaf\xaf\xaf\xae\ \xaf\xb1\xb1\xb1\xb4\xb4\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb4\xb5\ \xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xba\xb9\xba\xb6\ \xb5\xb7\x00\x00\x00\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe4\xdd\ \xda\xe3\xdd\xda\xe3\xdd\xd9\xe4\xdd\xd9\xe4\xde\xd9\xe4\xdd\xda\ \xe5\xde\xdb\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe7\ \xe2\xdf\xe8\xe3\xe2\xe8\xe3\xe2\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\ \xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xdf\xdc\ \xe3\xde\xdb\xe0\xdb\xd8\xde\xd9\xd6\xdb\xd6\xd3\xd6\xd0\xce\xcf\ \xc9\xc6\xc5\xbf\xbf\xb4\xb0\xb1\x9d\x9d\x9c\x7a\x7f\x7e\x4e\x57\ \x5a\x2d\x37\x3e\x2a\x33\x3c\x50\x55\x5a\x77\x76\x77\x8d\x89\x88\ \x9c\x97\x98\xa5\xa0\xa1\xa6\xa2\xa2\xa5\xa3\xa3\xa8\xa6\xa6\xa8\ \xa6\xa6\xa5\xa4\xa4\x9e\x9e\x9e\x8e\x91\x91\x80\x84\x85\x79\x7e\ \x7f\x7b\x7e\x7f\x87\x89\x89\x89\x8c\x8d\x86\x88\x8a\x76\x7b\x7c\ \x5c\x64\x68\x5b\x62\x66\x4b\x50\x56\x41\x48\x4e\x5e\x61\x66\x77\ \x7b\x7f\x77\x7b\x81\x75\x79\x7e\x75\x79\x7e\x71\x77\x7c\x77\x7d\ \x81\x7e\x84\x89\x7c\x82\x87\x7c\x83\x87\x7a\x80\x85\x7a\x81\x86\ \x79\x82\x86\x7a\x82\x89\x7a\x81\x88\x63\x70\x78\x3b\x4d\x58\x56\ \x5f\x67\x73\x78\x7e\x65\x6c\x72\x59\x5f\x66\x6b\x70\x76\x7b\x82\ \x89\x7f\x86\x8e\x7c\x85\x8a\x7e\x86\x8d\x7c\x84\x8b\x80\x88\x8f\ \x80\x88\x8f\x7f\x87\x8e\x7f\x87\x8e\x81\x89\x90\x7e\x87\x8d\x80\ \x88\x8d\x82\x89\x8d\x85\x8a\x8f\x83\x89\x8e\x7e\x84\x88\x60\x6b\ \x6f\x3e\x4c\x52\x18\x23\x27\x62\x67\x6c\x8d\x8f\x90\x85\x88\x8c\ \x6a\x72\x77\x2f\x3a\x41\x21\x29\x2f\x71\x74\x77\x93\x95\x97\x80\ \x82\x85\x73\x75\x79\x83\x84\x87\x38\x39\x3d\x00\x00\x00\x07\x08\ \x09\x64\x66\x6c\x87\x88\x8b\x6b\x6f\x71\x87\x8a\x8c\x7d\x80\x83\ \x85\x87\x8a\x9e\xa0\xa1\xa2\xa6\xa7\x8d\x91\x92\x7a\x7e\x80\x89\ \x8c\x8e\xa4\xa5\xa7\xa7\xa7\xa9\xa6\xa8\xa9\xa8\xaa\xab\xaa\xac\ \xae\xab\xad\xb0\xac\xae\xb0\xab\xac\xaf\xaa\xab\xad\xa9\xaa\xab\ \xa8\xa9\xaa\xac\xad\xae\xab\xab\xad\xac\xac\xad\xaa\xab\xac\xad\ \xaf\xb0\xb0\xb2\xb3\xae\xb0\xb1\xaf\xb0\xb1\xaa\xa9\xab\xaf\xae\ \xb0\xaf\xaf\xb0\xb4\xb4\xb4\xb1\xb1\xb1\xb0\xb0\xb0\xb1\xb1\xb1\ \xb4\xb4\xb4\xb7\xb6\xb8\xb7\xb7\xb8\xb6\xb6\xb6\xb9\xb8\xba\xba\ \xb9\xbb\xb6\xb5\xb7\xb8\xb7\xb9\xbd\xbc\xbd\xb7\xb6\xb7\x00\x00\ \x00\xe4\xdf\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\ \xe6\xe0\xdd\xe6\xe1\xdd\xe7\xe1\xdd\xe7\xe0\xdd\xe7\xe0\xdd\xe7\ \xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\ \xe2\xe8\xe3\xe1\xe7\xe2\xe0\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe1\xde\ \xe6\xe1\xde\xe6\xe1\xde\xe4\xdf\xdc\xe3\xde\xda\xe2\xdd\xda\xe0\ \xdb\xd9\xdd\xd8\xd5\xd8\xd3\xd1\xd3\xce\xcc\xcc\xc7\xc5\xc1\xbc\ \xbc\xb0\xac\xad\x92\x93\x93\x6b\x71\x72\x3f\x4a\x4e\x28\x32\x38\ \x38\x3f\x46\x63\x63\x67\x83\x7f\x82\x93\x8e\x8f\x9d\x98\x99\xa5\ \xa0\xa1\xa7\xa3\xa3\xa7\xa4\xa5\xa8\xa5\xa6\xa4\xa3\xa4\xa3\xa4\ \xa3\x9c\x9c\x9d\x8e\x90\x90\x88\x8c\x8c\x86\x89\x8a\x89\x8c\x8d\ \x8a\x8d\x8f\x8a\x8c\x8e\x8d\x8f\x92\x7d\x81\x83\x6c\x73\x76\x5d\ \x62\x68\x45\x4d\x54\x30\x38\x40\x54\x58\x5e\x76\x7a\x7e\x77\x7c\ \x80\x74\x78\x7e\x75\x79\x7e\x73\x78\x7d\x71\x77\x7d\x7c\x80\x86\ \x7a\x80\x85\x7b\x82\x86\x7b\x81\x86\x79\x81\x87\x79\x81\x88\x79\ \x81\x88\x7b\x83\x8a\x6e\x78\x80\x51\x5e\x68\x5c\x65\x6e\x75\x7a\ \x80\x5f\x65\x6d\x2e\x38\x41\x45\x4d\x54\x72\x77\x7d\x80\x87\x8e\ \x7d\x85\x8a\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x88\x8f\x7f\ \x87\x8e\x80\x88\x8e\x81\x88\x8f\x81\x89\x8f\x81\x88\x8e\x83\x89\ \x8e\x86\x8c\x91\x86\x8c\x91\x82\x89\x8d\x76\x7f\x82\x4b\x58\x5c\ \x54\x60\x65\x82\x86\x89\x8c\x90\x92\x8c\x90\x93\x7f\x85\x8a\x59\ \x66\x6d\x5a\x64\x6b\x73\x77\x7c\x8c\x8e\x90\x94\x97\x98\x86\x8a\ \x8d\x5a\x5d\x61\x0b\x0b\x0c\x00\x00\x00\x33\x39\x3a\x7e\x82\x84\ \x5c\x60\x63\x6a\x6d\x6f\x93\x93\x95\x77\x7a\x7c\x7b\x7e\x7f\x81\ \x83\x86\x9b\x9d\x9f\xa1\xa5\xa6\x94\x98\x9a\x7d\x80\x84\x86\x88\ \x8b\xa7\xa7\xa8\xa6\xa8\xa9\xa8\xaa\xac\xab\xac\xae\xac\xae\xb1\ \xae\xaf\xb2\xac\xae\xb0\xaa\xac\xad\xaa\xac\xad\xaa\xab\xac\xae\ \xaf\xb0\xb0\xb0\xb2\xae\xb0\xb1\xad\xae\xaf\xac\xab\xad\xae\xae\ \xb0\xb0\xb2\xb3\xb3\xb4\xb5\xb0\xaf\xb1\xaf\xae\xb0\xb1\xb0\xb1\ \xb2\xb2\xb2\xb1\xb0\xb1\xb3\xb3\xb4\xb4\xb4\xb5\xaf\xaf\xaf\xb3\ \xb2\xb3\xb5\xb5\xb5\xb5\xb5\xb5\xba\xba\xbb\xba\xba\xbb\xb5\xb4\ \xb5\xb9\xb8\xba\xbb\xba\xbc\xb9\xb8\xb9\x00\x00\x00\xe6\xe1\xde\ \xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\ \xe2\xdf\xe7\xe1\xde\xe8\xe1\xde\xe8\xe1\xde\xe7\xe2\xdf\xe7\xe1\ \xde\xe8\xe2\xdf\xe7\xe1\xde\xe6\xe0\xdd\xe6\xdf\xdd\xe6\xe0\xde\ \xe6\xe1\xde\xe7\xe1\xde\xe8\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe5\ \xe0\xdd\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\xda\xd9\xdc\xd7\ \xd5\xd8\xd3\xd2\xd2\xcd\xca\xc8\xc3\xc2\xbb\xb5\xb5\xa6\xa2\xa3\ \x86\x86\x87\x5c\x62\x65\x34\x3f\x44\x29\x33\x3a\x47\x4b\x51\x70\ \x6e\x70\x8a\x86\x88\x97\x92\x94\xa2\x9d\x9e\xa5\xa2\xa2\xa6\xa3\ \xa4\xaa\xa7\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa3\x99\x99\x9a\ \x8a\x8d\x8f\x87\x8a\x8c\x8a\x8c\x8e\x8b\x8d\x91\x8b\x8e\x91\x8a\ \x8d\x91\x8e\x92\x95\x80\x85\x88\x6c\x74\x78\x41\x49\x51\x20\x29\ \x32\x1e\x27\x30\x40\x44\x4b\x6f\x72\x77\x77\x7b\x80\x76\x7a\x7f\ \x73\x77\x7c\x74\x78\x7d\x70\x75\x7a\x76\x7b\x80\x7c\x81\x86\x7b\ \x81\x86\x7a\x82\x87\x79\x81\x86\x79\x81\x88\x79\x81\x88\x7a\x81\ \x88\x73\x7c\x83\x62\x6c\x76\x5d\x67\x71\x6b\x72\x79\x55\x5e\x65\ \x25\x31\x3a\x37\x42\x4a\x62\x67\x6d\x7e\x82\x89\x80\x86\x8c\x7f\ \x87\x8e\x7f\x87\x8e\x82\x8a\x91\x80\x88\x8f\x80\x88\x8f\x81\x89\ \x90\x84\x8c\x92\x83\x8b\x91\x84\x8a\x91\x84\x8a\x8f\x87\x8d\x92\ \x86\x8d\x92\x84\x8b\x8f\x81\x8a\x8d\x6c\x77\x7a\x7b\x81\x86\x8a\ \x8d\x91\x8c\x92\x95\x8e\x93\x97\x8a\x8f\x93\x83\x89\x8e\x86\x8c\ \x91\x7c\x81\x87\x76\x79\x7e\x8b\x8f\x90\x97\x9a\x9b\x41\x44\x45\ \x01\x01\x01\x04\x05\x05\x76\x7b\x7c\x92\x96\x95\x53\x59\x5a\x66\ \x6b\x6c\x68\x6c\x6e\x58\x5c\x5f\x92\x94\x96\x80\x82\x86\x7b\x7e\ \x81\x98\x9a\x9c\xa4\xa6\xa8\x9d\x9f\xa1\x84\x88\x8a\x7e\x82\x83\ \xa3\xa4\xa5\xa9\xaa\xac\xa9\xab\xac\xab\xae\xaf\xad\xaf\xb0\xad\ \xae\xaf\xab\xac\xad\xac\xad\xae\xad\xad\xae\xad\xad\xae\xaf\xaf\ \xb1\xaf\xaf\xb1\xb2\xb1\xb3\xae\xad\xaf\xab\xaa\xac\xac\xae\xaf\ \xb5\xb5\xb7\xb1\xb0\xb2\xaf\xae\xb1\xb2\xb1\xb3\xb2\xb2\xb2\xb0\ \xb0\xb0\xb3\xb3\xb4\xb3\xb3\xb3\xb0\xb0\xb0\xb3\xb3\xb3\xb4\xb4\ \xb4\xb3\xb3\xb3\xbb\xbc\xbb\xbb\xbb\xbb\xba\xba\xbb\xba\xb9\xba\ \xb8\xb7\xb9\xb7\xb6\xb7\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\ \xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe7\xe2\xde\xe6\xe0\xde\xe7\xe1\ \xde\xe7\xe1\xde\xe6\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xdc\xe6\xdf\xdc\ \xe5\xde\xdb\xe4\xdd\xda\xe4\xdd\xda\xe4\xde\xda\xe5\xe0\xdd\xe5\ \xe0\xdd\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\ \xdd\xe4\xdf\xdd\xe0\xdb\xda\xdf\xda\xd9\xdd\xd8\xd6\xd5\xd0\xce\ \xce\xc9\xc7\xc4\xbf\xbe\xb2\xad\xab\x9b\x97\x96\x78\x79\x79\x4b\ \x52\x55\x2b\x37\x3d\x2f\x38\x3e\x55\x56\x5a\x7a\x76\x77\x8e\x89\ \x8b\x9b\x96\x97\xa0\x9d\x9e\xa5\xa3\xa3\xaa\xa7\xa8\xa7\xa5\xa6\ \xa6\xa5\xa7\xa5\xa4\xa5\xa0\x9f\xa1\x90\x91\x93\x83\x84\x87\x83\ \x83\x87\x88\x8a\x8c\x88\x89\x8d\x8b\x8d\x91\x8d\x8f\x94\x8e\x93\ \x96\x87\x8c\x8f\x6c\x75\x78\x38\x48\x51\x0a\x17\x22\x12\x1a\x23\ \x34\x37\x3f\x5e\x60\x65\x73\x75\x79\x78\x7b\x80\x73\x76\x7b\x72\ \x76\x7b\x72\x76\x7b\x71\x77\x7c\x7a\x80\x85\x7b\x82\x87\x7a\x81\ \x87\x79\x7f\x86\x79\x81\x88\x7b\x81\x88\x7b\x82\x8a\x7a\x81\x89\ \x72\x7a\x82\x56\x63\x6d\x47\x56\x5f\x46\x53\x5c\x36\x44\x4d\x34\ \x42\x4a\x47\x50\x59\x75\x78\x7f\x83\x87\x8d\x80\x87\x8d\x7f\x88\ \x8f\x81\x89\x90\x81\x89\x90\x81\x89\x90\x81\x8a\x91\x82\x8b\x92\ \x84\x8c\x93\x85\x8d\x94\x86\x8d\x94\x89\x8f\x96\x88\x8d\x92\x87\ \x8e\x93\x85\x8c\x90\x84\x8b\x8f\x87\x8c\x91\x87\x8c\x8f\x8b\x90\ \x94\x8d\x92\x95\x8e\x93\x96\x90\x95\x99\x91\x95\x9a\x8e\x92\x97\ \x7e\x83\x88\x77\x7c\x7f\x85\x88\x89\x1d\x20\x20\x00\x00\x00\x13\ \x17\x18\x77\x7b\x7c\x83\x87\x89\x5e\x66\x67\x86\x8b\x8b\x6c\x73\ \x74\x72\x77\x7b\x9f\xa2\xa4\x9d\x9f\xa3\x82\x84\x89\x7a\x7d\x80\ \x95\x97\x9a\xa7\xa9\xaa\xa2\xa3\xa6\x88\x8b\x8f\x7a\x7d\x81\x9a\ \x9c\x9d\xad\xae\xaf\xac\xae\xaf\xaa\xab\xad\xad\xad\xaf\xb0\xaf\ \xb1\xae\xae\xaf\xac\xab\xad\xab\xab\xad\xad\xad\xaf\xaf\xae\xb0\ \xb2\xb1\xb3\xae\xaf\xb0\xb1\xb1\xb2\xae\xaf\xb1\xb1\xb0\xb1\xab\ \xab\xac\xaf\xae\xb0\xb2\xb1\xb3\xb4\xb4\xb5\xb3\xb3\xb4\xaf\xaf\ \xb0\xb3\xb3\xb4\xb6\xb6\xb6\xb6\xb6\xb6\xb8\xb8\xb8\xb6\xb6\xb6\ \xb8\xb8\xb8\xb8\xb8\xb8\xbc\xbc\xbc\xb9\xb8\xb9\xb9\xb9\xba\xb8\ \xb7\xb9\x00\x00\x00\xe6\xe1\xde\xe5\xe1\xde\xe5\xe0\xdd\xe5\xde\ \xdc\xe4\xdd\xda\xe4\xdd\xd9\xe4\xdb\xd8\xe3\xdd\xd9\xe3\xdd\xd9\ \xe3\xdc\xd8\xe3\xdd\xda\xe3\xdd\xda\xe4\xde\xdb\xe4\xdd\xda\xe3\ \xdd\xdb\xe4\xde\xdc\xe5\xde\xdc\xe6\xdf\xdc\xe6\xe0\xdd\xe6\xe2\ \xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdd\xe3\xde\xdd\ \xe1\xdc\xdb\xdc\xd7\xd6\xd9\xd4\xd3\xd4\xcf\xce\xcc\xc6\xc6\xbf\ \xb9\xb9\xae\xa9\xa6\x91\x8e\x8c\x69\x6c\x6c\x3d\x46\x4a\x2a\x36\ \x3c\x3d\x44\x4a\x65\x64\x67\x84\x7f\x81\x95\x90\x92\x9e\x9a\x9c\ \xa4\xa1\xa2\xa6\xa5\xa7\xaa\xa8\xa9\xa7\xa6\xa7\xa5\xa4\xa6\xa2\ \xa1\xa3\x9c\x9b\x9d\x89\x8a\x8b\x7b\x7e\x7f\x7c\x7e\x81\x86\x87\ \x8a\x8a\x8c\x8e\x8d\x8f\x93\x8e\x91\x95\x8d\x92\x95\x8b\x8f\x92\ \x78\x7f\x83\x51\x60\x67\x2c\x3c\x48\x29\x32\x3b\x43\x46\x4f\x5e\ \x61\x67\x70\x72\x76\x76\x79\x7d\x74\x77\x7c\x70\x74\x79\x74\x78\ \x7d\x72\x77\x7d\x71\x77\x7c\x79\x7f\x84\x7a\x80\x86\x77\x7e\x85\ \x78\x80\x86\x79\x80\x87\x79\x81\x88\x7a\x82\x89\x7a\x81\x88\x68\ \x71\x7a\x51\x5f\x69\x51\x5f\x68\x4a\x58\x60\x27\x34\x3c\x19\x24\ \x2a\x37\x3d\x44\x63\x67\x6c\x80\x86\x8b\x7f\x87\x8e\x80\x88\x8f\ \x81\x8a\x91\x83\x8b\x92\x82\x89\x90\x81\x89\x90\x84\x8c\x93\x86\ \x8e\x95\x85\x8d\x94\x86\x8e\x95\x87\x8e\x95\x85\x8b\x91\x87\x8d\ \x92\x8a\x90\x95\x8b\x8f\x94\x8b\x90\x94\x8b\x90\x93\x89\x8e\x91\ \x8b\x90\x94\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x90\x95\x99\x80\ \x86\x89\x4b\x51\x55\x04\x04\x04\x00\x00\x00\x5c\x61\x62\x72\x77\ \x77\x44\x4d\x51\x7c\x80\x81\x88\x8a\x89\x82\x85\x85\x7d\x80\x83\ \x8a\x8c\x8f\xa5\xa6\xa8\xa2\xa3\xa6\x8a\x8d\x90\x75\x79\x7c\x96\ \x97\x99\xa7\xa7\xa8\xa6\xa6\xa8\x94\x97\x99\x77\x7b\x7c\x93\x94\ \x96\xae\xae\xb0\xaa\xa9\xac\xad\xac\xae\xad\xac\xae\xad\xac\xae\ \xac\xab\xad\xad\xac\xae\xae\xae\xb0\xad\xad\xaf\xb4\xb2\xb5\xb3\ \xb2\xb3\xb3\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xae\xad\xaf\xad\xac\ \xae\xb2\xb1\xb3\xb3\xb2\xb4\xb6\xb5\xb7\xb2\xb1\xb3\xb3\xb3\xb4\ \xb6\xb6\xb6\xb3\xb4\xb3\xb9\xb8\xb9\xba\xba\xbb\xb4\xb4\xb4\xbb\ \xbb\xbb\xb9\xb9\xb9\xb9\xb9\xb9\xb8\xb8\xba\xb8\xb8\xb9\x00\x00\ \x00\xe5\xdf\xdc\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\xd9\xe1\xda\xd7\ \xe1\xd8\xd4\xe1\xd9\xd5\xe1\xda\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe2\ \xdd\xda\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\ \xdd\xe6\xe0\xdd\xe7\xe0\xdd\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\ \xe6\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdc\xe3\xde\xdd\xdf\xda\xd9\xdc\ \xd7\xd6\xd7\xd2\xd0\xd0\xcb\xcb\xc9\xc4\xc4\xb9\xb4\xb3\xa5\xa1\ \xa0\x83\x82\x82\x59\x5e\x60\x33\x3d\x43\x2a\x33\x39\x4a\x4f\x53\ \x73\x71\x74\x8b\x87\x8a\x9a\x97\x9a\xa2\x9e\xa0\xa5\xa1\xa3\xa6\ \xa5\xa6\xa8\xa7\xa9\xa6\xa5\xa6\xa5\xa4\xa6\xa3\xa2\xa4\x95\x96\ \x96\x7e\x80\x80\x74\x78\x79\x79\x7b\x7d\x86\x87\x89\x89\x8b\x8e\ \x8d\x8f\x93\x8e\x91\x95\x8d\x91\x94\x8a\x8f\x92\x83\x89\x8e\x6f\ \x79\x7f\x50\x5e\x66\x3f\x4b\x54\x4e\x55\x5d\x69\x6d\x72\x72\x75\ \x79\x6f\x71\x76\x70\x73\x78\x6f\x73\x78\x73\x77\x7b\x6c\x71\x76\ \x66\x6c\x73\x76\x7b\x80\x7b\x81\x88\x78\x7f\x86\x79\x81\x87\x79\ \x81\x89\x7a\x82\x89\x7a\x82\x89\x7a\x82\x89\x75\x7d\x86\x6f\x78\ \x80\x6e\x78\x7f\x5e\x69\x71\x21\x2f\x38\x06\x0e\x13\x0a\x12\x17\ \x38\x3f\x46\x75\x79\x7f\x85\x8c\x93\x82\x89\x90\x80\x88\x8f\x83\ \x8b\x91\x80\x88\x8d\x81\x89\x8f\x85\x8b\x92\x88\x8f\x96\x87\x8f\ \x96\x89\x8f\x96\x8a\x90\x97\x89\x8f\x96\x89\x8f\x94\x8c\x92\x97\ \x8a\x8e\x93\x8a\x8f\x92\x88\x8d\x90\x88\x8d\x90\x8c\x91\x94\x8f\ \x94\x97\x90\x94\x99\x94\x98\x9c\x93\x98\x9c\x91\x96\x99\x7c\x84\ \x88\x1e\x25\x28\x18\x1f\x21\x8b\x8f\x8f\x83\x87\x87\x3f\x4a\x4e\ \x68\x6d\x6f\x51\x56\x58\x61\x64\x67\x95\x97\x99\x7b\x7e\x82\x8a\ \x8b\x8e\xa1\xa1\xa4\xa4\xa6\xaa\x91\x94\x98\x74\x76\x7a\x8f\x8e\ \x91\xab\xaa\xac\xa8\xa9\xaa\x9b\x9d\x9e\x7f\x81\x82\x8a\x8b\x8d\ \xad\xac\xae\xaf\xae\xb0\xae\xad\xaf\xae\xad\xaf\xaf\xae\xb1\xb1\ \xb0\xb3\xae\xae\xb0\xae\xaf\xb0\xb3\xb2\xb4\xb0\xaf\xb1\xb4\xb3\ \xb5\xb4\xb5\xb6\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ \xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb6\xb3\ \xb2\xb3\xb7\xb6\xb8\xb6\xb6\xb6\xba\xb9\xb9\xb9\xb9\xb9\xbb\xbb\ \xbb\xb8\xb8\xb8\xba\xba\xba\xbb\xbc\xbb\x00\x00\x00\xe3\xdc\xd9\ \xe2\xdd\xda\xe0\xda\xd7\xdf\xda\xd7\xe0\xdb\xd7\xe0\xdb\xd6\xe2\ \xdb\xd7\xe3\xdc\xd8\xe4\xde\xdb\xe4\xde\xdb\xe5\xe0\xdd\xe6\xe1\ \xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xdf\xe7\xe2\xdf\ \xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe5\ \xe0\xdd\xe3\xde\xdc\xe2\xdd\xdc\xde\xd9\xd8\xdb\xd5\xd4\xd4\xcf\ \xce\xcf\xca\xc8\xc3\xbf\xbe\xb2\xaf\xae\x9b\x98\x98\x75\x78\x79\ \x46\x4f\x52\x2a\x35\x39\x34\x3c\x41\x5c\x5e\x62\x7d\x7c\x7f\x8f\ \x8c\x8f\x9b\x98\x9a\xa1\x9e\xa0\xa5\xa3\xa5\xa7\xa6\xa7\xa8\xa7\ \xa9\xa5\xa4\xa6\xa5\xa4\xa6\xa1\xa0\xa1\x8d\x8d\x8d\x74\x77\x77\ \x6e\x73\x73\x77\x7a\x7b\x86\x87\x8b\x89\x8c\x90\x8e\x91\x95\x8e\ \x91\x95\x8c\x90\x92\x8a\x8f\x92\x87\x8c\x91\x7c\x84\x8a\x66\x72\ \x7a\x4f\x5b\x63\x55\x5d\x65\x66\x6b\x70\x6a\x6e\x73\x58\x5b\x63\ \x5f\x62\x6a\x6c\x70\x76\x66\x6a\x70\x58\x5d\x65\x57\x5c\x65\x63\ \x68\x6f\x77\x7d\x82\x7a\x81\x88\x78\x81\x87\x77\x80\x85\x77\x7f\ \x86\x79\x80\x87\x7a\x81\x88\x79\x81\x88\x79\x81\x88\x7a\x82\x89\ \x72\x7b\x83\x59\x67\x70\x37\x43\x4c\x19\x24\x2b\x22\x29\x2f\x3b\ \x40\x46\x75\x79\x80\x84\x8a\x90\x84\x8b\x91\x84\x8b\x92\x83\x8a\ \x91\x85\x8b\x92\x85\x8c\x92\x88\x90\x96\x88\x8f\x96\x88\x8e\x95\ \x8c\x92\x99\x8a\x90\x97\x88\x8e\x93\x8b\x8f\x94\x8d\x91\x96\x8c\ \x90\x95\x8b\x8f\x92\x88\x8d\x90\x8a\x8f\x92\x8d\x92\x95\x91\x95\ \x99\x92\x96\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\x9f\x7d\x85\x88\ \x57\x62\x66\x87\x8a\x8b\x6f\x74\x76\x71\x77\x7a\x7b\x7f\x81\x6a\ \x6f\x73\x8a\x8c\x90\xa1\xa1\xa4\x96\x99\x9c\x7b\x7e\x82\x85\x86\ \x8a\xa2\xa2\xa5\xa7\xa9\xaa\x9c\x9f\xa0\x76\x79\x7c\x84\x86\x87\ \xab\xab\xab\xa7\xaa\xaa\xa2\xa4\xa6\x82\x86\x89\x80\x82\x85\xaa\ \xa9\xab\xb1\xb0\xb2\xac\xad\xae\xaf\xb0\xb2\xb1\xb0\xb4\xb1\xb0\ \xb4\xb2\xb2\xb4\xb0\xaf\xb1\xaf\xae\xb0\xaf\xae\xb1\xb1\xb0\xb2\ \xb1\xb0\xb2\xb5\xb4\xb6\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\xb3\ \xb2\xb4\xb3\xb2\xb3\xb6\xb5\xb6\xb5\xb5\xb5\xb3\xb3\xb4\xb2\xb2\ \xb2\xb8\xb7\xb9\xbc\xba\xbd\xb9\xb9\xb9\xb9\xb8\xb8\xb6\xb6\xb6\ \xb9\xb9\xb9\xbc\xbc\xbc\x00\x00\x00\xe3\xdb\xd8\xe4\xe0\xdd\xe3\ \xde\xdb\xe2\xdc\xd9\xe2\xdd\xd9\xe4\xde\xdb\xe3\xde\xdb\xe5\xdf\ \xdc\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\xe2\xe8\xe3\xe2\ \xe8\xe3\xe2\xe7\xe2\xe1\xe8\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xdf\xe7\ \xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xdd\xe4\xdf\xde\xe3\xde\ \xdd\xe0\xdb\xda\xdd\xd7\xd7\xd9\xd4\xd3\xd5\xcf\xce\xcb\xc6\xc3\ \xbe\xba\xba\xad\xaa\xaa\x8c\x8c\x8c\x64\x6b\x6b\x3b\x46\x49\x2b\ \x36\x3a\x45\x49\x4e\x6b\x6a\x6f\x83\x82\x85\x96\x92\x97\x9f\x9c\ \x9e\xa4\xa2\xa4\xa9\xa6\xa7\xa8\xa7\xaa\xa7\xa6\xa8\xa6\xa5\xa7\ \xa5\xa4\xa6\x98\x97\x99\x7e\x7f\x81\x6a\x6f\x6f\x6a\x6f\x6e\x7b\ \x7e\x7f\x87\x8a\x8e\x8b\x8e\x93\x8c\x8f\x94\x8b\x8e\x92\x8e\x91\ \x96\x87\x8b\x90\x87\x8b\x90\x81\x87\x8d\x73\x7b\x81\x64\x6c\x73\ \x66\x6a\x71\x6f\x72\x77\x5f\x64\x6a\x3a\x42\x4b\x45\x4a\x55\x68\ \x6b\x72\x5e\x62\x69\x37\x3e\x48\x39\x40\x4a\x57\x5b\x61\x70\x74\ \x79\x78\x7e\x84\x7c\x82\x87\x7a\x82\x87\x78\x80\x87\x7a\x80\x87\ \x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\x83\x8b\x7a\x81\x89\x76\ \x7e\x85\x65\x6f\x77\x41\x4b\x54\x23\x29\x31\x13\x1a\x23\x5b\x61\ \x69\x82\x86\x8d\x82\x88\x8c\x84\x8a\x90\x85\x8c\x92\x86\x8c\x92\ \x88\x8e\x94\x89\x8f\x94\x87\x8d\x94\x86\x8c\x93\x87\x8d\x94\x87\ \x8d\x95\x8a\x8f\x95\x8c\x91\x97\x8a\x8e\x92\x8d\x91\x96\x8c\x92\ \x95\x8c\x91\x94\x8b\x8f\x93\x8c\x8f\x93\x8e\x91\x95\x92\x95\x98\ \x94\x97\x9b\x94\x97\x9a\x97\x9b\x9e\x98\x9d\xa0\x87\x8d\x90\x6a\ \x70\x74\x53\x5d\x61\x8c\x91\x92\x96\x99\x9a\x81\x85\x88\x77\x7a\ \x7f\x96\x98\x9c\xa2\xa3\xa5\x9e\xa1\xa3\x7f\x82\x85\x83\x85\x89\ \x9e\xa0\xa1\xa6\xa8\xa9\xa4\xa7\xa7\x85\x87\x88\x7f\x7f\x7f\xa6\ \xa6\xa7\xa8\xa9\xa9\xa7\xaa\xab\x8e\x91\x92\x80\x81\x82\xa0\xa2\ \xa3\xb0\xb0\xb2\xae\xae\xb1\xaf\xaf\xb3\xaf\xae\xb1\xb1\xb0\xb3\ \xb1\xb0\xb2\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xaf\xae\xb0\xb3\ \xb2\xb5\xb1\xb0\xb3\xb3\xb2\xb5\xb5\xb4\xb6\xb3\xb2\xb4\xb4\xb3\ \xb5\xb7\xb7\xb8\xb6\xb5\xb7\xb7\xb6\xb8\xb3\xb3\xb3\xb6\xb5\xb6\ \xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xb7\xb7\xb7\xbb\xbb\xbb\xbc\ \xbb\xbc\x00\x00\x00\xe4\xde\xdb\xe6\xe1\xde\xe6\xdf\xdc\xe6\xe0\ \xdd\xe6\xe0\xdd\xe5\xdf\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\ \xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe2\xe9\xe4\xe2\xe8\xe3\xe2\xe7\ \xe2\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\ \xdf\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdc\xe0\xdb\xda\ \xdc\xd7\xd6\xd7\xcf\xcf\xd2\xca\xca\xc8\xc2\xc0\xb9\xb5\xb4\xa2\ \x9f\x9f\x80\x82\x82\x55\x5c\x5e\x30\x3c\x40\x31\x3a\x41\x53\x55\ \x5b\x75\x74\x77\x8d\x8a\x8c\x99\x96\x98\xa1\x9e\xa0\xa7\xa4\xa6\ \xa9\xa7\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa6\xa5\xa7\xa1\xa0\xa1\x8c\ \x8d\x8e\x70\x74\x75\x65\x6b\x6c\x6e\x72\x73\x81\x84\x88\x8c\x8f\ \x94\x8d\x90\x94\x8e\x90\x94\x8c\x90\x94\x89\x8d\x92\x88\x8c\x91\ \x86\x8a\x8f\x85\x89\x8e\x7c\x80\x85\x74\x79\x7c\x72\x76\x7a\x71\ \x75\x7a\x4b\x51\x59\x1d\x26\x30\x2c\x33\x3d\x63\x65\x6b\x5d\x60\ \x67\x1f\x28\x31\x21\x28\x30\x58\x5c\x61\x66\x6a\x6f\x71\x77\x7c\ \x7a\x80\x85\x7a\x82\x86\x7a\x81\x88\x7b\x81\x88\x7b\x82\x89\x7d\ \x84\x8b\x7e\x86\x8d\x7e\x86\x8d\x7d\x85\x8c\x7d\x85\x8c\x76\x7e\ \x85\x56\x61\x69\x1d\x27\x32\x1b\x25\x2f\x4d\x50\x5a\x65\x68\x6f\ \x7c\x7f\x85\x85\x89\x8e\x86\x8a\x8f\x88\x8c\x91\x88\x8e\x93\x88\ \x8d\x92\x89\x8e\x93\x88\x8e\x94\x87\x8d\x93\x89\x8f\x94\x89\x8f\ \x95\x8a\x8e\x94\x8d\x91\x96\x8f\x93\x98\x8e\x92\x97\x8c\x90\x96\ \x8c\x90\x95\x8d\x90\x94\x90\x93\x97\x92\x96\x99\x95\x99\x9b\x96\ \x9a\x9c\x97\x9a\x9d\x98\x9c\x9e\x99\x9e\xa1\x8c\x93\x94\x6a\x72\ \x74\x86\x8a\x8b\x9b\x9d\x9d\x9c\x9e\x9f\x89\x8d\x90\x79\x7c\x81\ \x93\x94\x97\xa4\xa3\xa4\xa1\xa2\xa3\x86\x88\x8b\x7e\x7f\x82\xa0\ \xa2\xa3\xaa\xab\xab\xa9\xa8\xa8\x8e\x8d\x8d\x79\x7a\x79\xa1\xa0\ \xa0\xab\xab\xab\xad\xae\xaf\x94\x96\x98\x7b\x7f\x80\x99\x9b\x9c\ \xad\xae\xaf\xaf\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb2\xad\xac\xae\xad\ \xac\xae\xad\xac\xae\xab\xaa\xac\xb2\xb1\xb3\xae\xad\xaf\xb1\xb0\ \xb3\xb5\xb4\xb7\xb6\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb2\xb1\xb3\ \xb4\xb3\xb5\xb9\xb8\xba\xb9\xb8\xba\xb8\xb7\xb9\xbb\xb9\xbc\xb6\ \xb5\xb7\xb5\xb4\xb5\xbc\xbc\xbc\xbc\xbb\xbc\xb9\xb9\xb9\x00\x00\ \x00\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe1\xde\ \xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\ \xe3\xe0\xe9\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\ \xe1\xe7\xe2\xe1\xe8\xe3\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ \xe4\xdf\xde\xe4\xdd\xdd\xe1\xdc\xdb\xde\xd9\xd8\xda\xd4\xd2\xd7\ \xcf\xcf\xcf\xc7\xc7\xc3\xbd\xbc\xb3\xaf\xae\x99\x97\x98\x73\x75\ \x77\x48\x4f\x53\x2b\x36\x3b\x37\x3e\x44\x61\x60\x66\x80\x7d\x81\ \x93\x90\x92\x9e\x9b\x9e\xa3\xa0\xa1\xa7\xa4\xa6\xaa\xa7\xa8\xa9\ \xa7\xa9\xa5\xa5\xa6\xa3\xa2\xa4\x99\x99\x99\x7b\x7e\x7e\x64\x6a\ \x6a\x64\x69\x6a\x72\x76\x79\x85\x88\x8c\x8b\x8e\x92\x8e\x91\x96\ \x8d\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8c\x91\x86\x8c\x91\x83\ \x89\x8e\x81\x86\x8a\x78\x7d\x81\x71\x76\x79\x67\x6d\x72\x3d\x46\ \x4e\x16\x1f\x2a\x2a\x31\x3b\x52\x55\x5b\x4f\x53\x5a\x1a\x24\x2c\ \x21\x29\x32\x5d\x61\x66\x6b\x6f\x74\x70\x74\x79\x77\x7c\x81\x78\ \x7f\x84\x7c\x82\x88\x7b\x81\x88\x7b\x81\x89\x7d\x84\x8b\x7c\x84\ \x8c\x7b\x83\x8b\x7a\x82\x89\x7d\x85\x8c\x7c\x85\x8c\x69\x73\x7c\ \x1d\x2c\x39\x1d\x28\x33\x31\x37\x3f\x21\x27\x31\x5f\x61\x68\x81\ \x85\x8a\x86\x8b\x90\x89\x8d\x92\x8a\x8e\x93\x89\x8f\x94\x88\x8e\ \x93\x89\x8e\x93\x8a\x8e\x95\x8b\x91\x97\x8e\x94\x9b\x8f\x92\x99\ \x8f\x92\x9a\x90\x94\x99\x93\x96\x9b\x91\x94\x99\x8f\x92\x97\x91\ \x94\x98\x93\x96\x9a\x90\x93\x96\x91\x94\x97\x96\x9a\x9b\x96\x99\ \x9c\x9a\x9e\xa1\x9d\xa0\xa3\x99\x9d\x9e\x91\x95\x96\x77\x7c\x7d\ \x82\x85\x86\x9b\x9e\x9f\xa1\xa4\xa5\x90\x92\x96\x7a\x7c\x80\x8d\ \x8e\x8f\x9f\xa1\xa1\xa5\xa7\xa8\x8a\x8d\x90\x7d\x80\x83\x85\x83\ \x85\x64\x5c\x5a\x96\x8b\x89\x9a\x96\x96\x74\x74\x75\x97\x96\x97\ \xb0\xb0\xb0\xac\xaf\xaf\x9b\x9e\xa0\x7c\x7f\x81\x92\x93\x95\xad\ \xad\xaf\xb0\xb0\xb3\xb0\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xb0\xaf\ \xb0\xb1\xb0\xb1\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb5\xb3\xb6\ \xb4\xb3\xb5\xb6\xb5\xb6\xb6\xb6\xb6\xb4\xb4\xb4\xb5\xb5\xb5\xb6\ \xb6\xb6\xb7\xb7\xb8\xb6\xb5\xb6\xb6\xb6\xb7\xb7\xb6\xb7\xb6\xb5\ \xb6\xbd\xbd\xbd\xbc\xbb\xbc\xba\xb9\xba\x00\x00\x00\xe5\xe0\xdd\ \xe5\xdf\xdc\xe6\xe0\xdd\xe5\xe0\xdc\xe5\xe1\xdd\xe7\xe2\xdf\xe8\ \xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\ \xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe7\xe2\xe0\ \xe7\xe2\xe0\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe4\xde\xdb\xe2\ \xdd\xd9\xe1\xdc\xda\xde\xd9\xd8\xd9\xd3\xd0\xd4\xcd\xcd\xc9\xc1\ \xc1\xbd\xb6\xb6\xaa\xa5\xa6\x8a\x89\x89\x63\x67\x6a\x3d\x43\x4a\ \x2d\x33\x3c\x47\x4a\x50\x70\x6d\x73\x89\x85\x88\x96\x93\x95\xa0\ \x9d\x9f\xa6\xa3\xa4\xa8\xa5\xa6\xaa\xa7\xa8\xa8\xa7\xa9\xa6\xa5\ \xa7\xa1\xa0\xa2\x8a\x8b\x8c\x6e\x74\x73\x64\x6a\x6a\x6b\x70\x71\ \x7d\x80\x81\x89\x8c\x8f\x8d\x90\x94\x8f\x92\x96\x8d\x90\x95\x8e\ \x91\x96\x8b\x8f\x94\x89\x8d\x92\x86\x8c\x92\x86\x8c\x90\x83\x89\ \x8d\x7b\x80\x83\x6f\x75\x79\x55\x5d\x64\x28\x31\x3b\x14\x1d\x27\ \x35\x3a\x44\x47\x4b\x53\x2d\x34\x3d\x1a\x23\x2c\x2c\x34\x3c\x5d\ \x60\x66\x72\x76\x7b\x6a\x70\x75\x70\x74\x79\x7b\x80\x85\x7a\x80\ \x85\x7a\x81\x88\x7a\x83\x8a\x7b\x84\x8b\x7c\x84\x8b\x7c\x83\x8b\ \x7b\x83\x8a\x7a\x82\x89\x80\x88\x8f\x71\x7b\x82\x26\x39\x46\x22\ \x30\x3e\x34\x3e\x47\x1a\x23\x2d\x3f\x46\x4f\x5f\x64\x6a\x84\x88\ \x8c\x8a\x8e\x93\x88\x8d\x92\x88\x8d\x92\x88\x8e\x93\x8a\x90\x96\ \x8c\x91\x98\x89\x8f\x96\x8d\x93\x98\x8d\x91\x97\x8f\x94\x99\x8f\ \x93\x98\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x8f\x92\x96\x90\x93\ \x97\x91\x94\x97\x93\x95\x99\x92\x95\x98\x96\x99\x9d\x97\x9a\x9e\ \x99\x9c\xa0\x98\x9b\x9d\x9b\x9e\x9f\x92\x96\x97\x79\x7e\x80\x81\ \x84\x86\x9c\x9d\x9e\xa8\xaa\xab\x97\x9a\x9c\x79\x7c\x7f\x89\x8a\ \x8c\xa0\xa0\xa0\xa6\xa6\xa6\x99\x9b\x9e\x3b\x3e\x40\x00\x00\x00\ \x0c\x07\x07\x79\x6d\x6c\xa4\xa2\xa1\x7e\x7f\x80\x90\x91\x91\xa9\ \xa9\xaa\xaf\xb2\xb3\xa6\xa9\xad\x83\x86\x8a\x89\x8a\x8c\xa4\xa4\ \xa7\xaf\xae\xb1\xb0\xaf\xb1\xb1\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\ \xae\xad\xaf\xac\xab\xad\xb2\xb1\xb3\xb3\xb2\xb5\xb6\xb5\xb7\xb6\ \xb5\xb7\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb7\xb7\xb5\xb5\xb5\xb4\xb4\ \xb4\xbb\xbb\xbb\xb9\xb8\xb8\xb8\xb8\xb8\xbb\xba\xbb\xb5\xb5\xb6\ \xb7\xb7\xb7\xb9\xb8\xb9\x00\x00\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe6\ \xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\ \xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xdf\xe7\xe2\xe0\xe7\xe2\xdf\ \xe6\xe1\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xdf\xe6\ \xe1\xde\xe6\xe0\xde\xe6\xe0\xde\xe3\xdf\xdc\xe2\xdd\xda\xdf\xda\ \xd9\xdb\xd6\xd5\xd9\xd3\xd2\xd1\xcb\xca\xc7\xbf\xbf\xb8\xb3\xb3\ \xa1\x9d\x9e\x7c\x7c\x7e\x51\x58\x5c\x31\x39\x42\x32\x37\x40\x56\ \x55\x5b\x79\x75\x7a\x8f\x8a\x8d\x9c\x97\x99\xa3\x9f\xa1\xa8\xa4\ \xa5\xa9\xa5\xa7\xa9\xa6\xa7\xa9\xa7\xa9\xa5\xa4\xa4\x99\x98\x9a\ \x7e\x81\x82\x69\x6f\x70\x66\x6b\x6c\x74\x78\x79\x84\x87\x89\x89\ \x8d\x90\x8e\x91\x95\x8f\x92\x97\x8c\x8f\x94\x8b\x8f\x94\x88\x8c\ \x91\x86\x8b\x8f\x87\x8c\x92\x85\x8b\x90\x85\x8a\x8f\x80\x86\x8b\ \x70\x76\x7a\x43\x4d\x55\x15\x20\x2b\x20\x28\x32\x49\x4c\x56\x49\ \x4e\x59\x1b\x25\x30\x1f\x27\x32\x4c\x51\x59\x5f\x65\x6c\x71\x75\ \x7b\x70\x75\x7a\x6a\x70\x75\x74\x79\x7e\x7a\x80\x85\x7a\x80\x87\ \x7b\x82\x89\x7c\x83\x8b\x7d\x85\x8c\x7c\x83\x8b\x7c\x84\x8b\x7e\ \x86\x8d\x7d\x85\x8c\x71\x7a\x82\x20\x34\x41\x2e\x40\x4d\x44\x51\ \x5b\x30\x3a\x44\x22\x2b\x35\x2d\x34\x3c\x79\x7c\x82\x8a\x8e\x93\ \x8a\x8e\x93\x89\x8f\x94\x8a\x90\x95\x8b\x91\x96\x8b\x90\x96\x89\ \x8f\x94\x8d\x93\x99\x92\x95\x9c\x8f\x93\x99\x90\x94\x99\x91\x95\ \x9a\x92\x96\x9b\x92\x97\x9a\x92\x96\x9a\x93\x96\x9a\x92\x95\x97\ \x91\x94\x97\x93\x96\x98\x97\x9a\x9e\x9a\x9d\xa1\x97\x9a\x9e\x9a\ \x9c\x9f\x9d\x9f\xa1\x9e\xa0\xa1\x97\x9b\x9c\x7e\x83\x85\x7e\x81\ \x83\x9b\x9c\x9d\xa6\xa6\xa8\x9a\x9b\x9d\x80\x82\x84\x89\x89\x8b\ \xa1\x9f\x9f\xae\xac\xab\x71\x74\x75\x05\x05\x06\x00\x00\x00\x11\ \x0e\x0d\x9a\x93\x91\xaa\xaa\xac\x89\x8b\x8c\x86\x87\x89\xa5\xa7\ \xa9\xae\xb0\xb3\xae\xaf\xb2\x8c\x8d\x8f\x7e\x7f\x83\x9f\x9d\xa1\ \xae\xad\xb0\xb6\xb5\xb7\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xb1\ \xb1\xb2\xb2\xb1\xb4\xb5\xb4\xb5\xb9\xb8\xbb\xb8\xb7\xb9\xb9\xb8\ \xb9\xb9\xb9\xb9\xb8\xb8\xb8\xb6\xb5\xb6\xb6\xb6\xb6\xb6\xb6\xb6\ \xb6\xb5\xb5\xb5\xb5\xb5\xbb\xbb\xbb\xba\xb9\xba\xb6\xb5\xb7\xb8\ \xb7\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ \xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ \xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xdf\xe7\ \xe2\xe0\xe7\xe2\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe5\xe0\xde\xe5\xe0\ \xde\xe5\xe0\xde\xe3\xde\xdb\xe1\xdc\xda\xde\xd9\xd8\xda\xd5\xd4\ \xd5\xd1\xcf\xce\xc9\xc9\xc1\xbc\xbb\xb1\xac\xab\x96\x92\x93\x6d\ \x71\x73\x44\x4e\x54\x2e\x39\x41\x40\x45\x4e\x67\x65\x6b\x84\x7f\ \x83\x93\x8e\x90\x9d\x98\x9a\xa4\xa0\xa2\xa8\xa4\xa6\xa7\xa4\xa6\ \xa8\xa5\xa7\xa7\xa5\xa7\xa1\xa1\xa2\x90\x92\x93\x76\x7a\x7b\x6b\ \x71\x72\x70\x74\x75\x80\x82\x84\x89\x8c\x8d\x8b\x8e\x91\x8d\x90\ \x95\x8e\x92\x97\x8b\x90\x94\x89\x8d\x92\x87\x8c\x90\x87\x8b\x8f\ \x87\x8b\x90\x84\x8a\x8f\x85\x8b\x8f\x7f\x85\x8a\x73\x7b\x7f\x45\ \x51\x5a\x15\x22\x2e\x2a\x34\x3e\x53\x59\x61\x48\x4f\x59\x17\x24\ \x31\x27\x2f\x3d\x60\x63\x6c\x6c\x72\x79\x6b\x70\x77\x74\x79\x7e\ \x6e\x74\x79\x6d\x72\x78\x76\x7c\x82\x7b\x81\x88\x7c\x82\x89\x7c\ \x83\x8a\x7c\x84\x8b\x7d\x84\x8d\x7e\x85\x8e\x7d\x84\x8c\x7e\x86\ \x8e\x78\x80\x87\x52\x63\x6e\x53\x62\x6d\x61\x6c\x74\x3d\x49\x52\ \x17\x22\x2c\x30\x39\x41\x79\x7c\x83\x89\x8e\x92\x89\x8f\x94\x8b\ \x91\x97\x8a\x90\x96\x8a\x90\x95\x8a\x8f\x94\x8a\x8f\x95\x8b\x91\ \x97\x8e\x93\x98\x92\x96\x9c\x90\x94\x9a\x92\x96\x9b\x92\x97\x9b\ \x95\x98\x9d\x96\x98\x9d\x94\x97\x9b\x92\x96\x9a\x93\x96\x9a\x94\ \x97\x9b\x99\x9c\xa0\x98\x9b\x9f\x9b\x9d\xa1\x9b\x9f\xa1\x9c\x9e\ \x9f\x9d\x9f\xa0\x9d\xa0\xa1\x9a\x9e\x9f\x88\x8d\x8f\x81\x84\x85\ \x94\x95\x96\xa5\xa6\xa7\xa2\xa4\xa5\x86\x88\x8a\x89\x89\x8a\x9e\ \x9b\x9a\x9f\xa0\xa1\x27\x2e\x31\x00\x00\x00\x01\x01\x01\x50\x4c\ \x4d\xb4\xb2\xb3\xb0\xaf\xb0\x92\x94\x96\x81\x83\x87\x9d\x9e\xa0\ \xb2\xb1\xb4\xb3\xb3\xb5\x96\x97\x9a\x7f\x80\x83\x95\x95\x97\xab\ \xaa\xac\xb8\xb7\xb9\xb4\xb3\xb5\xaf\xae\xb0\xb4\xb3\xb6\xb3\xb2\ \xb4\xb3\xb2\xb4\xb9\xb8\xba\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\xb9\ \xb7\xb7\xb8\xb9\xb9\xba\xb8\xb8\xb8\xb9\xb9\xb9\xb6\xb6\xb6\xb7\ \xb7\xb7\xba\xba\xba\xbb\xbb\xbb\xba\xb9\xba\xba\xba\xba\x00\x00\ \x00\xe7\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\xdf\ \xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe6\ \xe1\xde\xe8\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\ \xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\ \xe2\xdc\xd9\xe0\xdb\xd9\xdd\xd8\xd7\xd7\xd2\xd1\xd1\xcc\xcb\xca\ \xc5\xc4\xbb\xb6\xb5\xa7\xa4\xa1\x85\x85\x86\x5e\x64\x67\x36\x40\ \x48\x30\x3a\x43\x4b\x4f\x57\x72\x6f\x74\x8c\x87\x89\x99\x94\x96\ \xa2\x9d\x9f\xa7\xa3\xa5\xa9\xa6\xa8\xa9\xa6\xa8\xa8\xa6\xa8\xa7\ \xa6\xa8\x9f\x9e\x9f\x87\x89\x8a\x74\x78\x79\x70\x74\x75\x79\x7c\ \x7d\x86\x88\x89\x89\x8b\x8c\x8c\x8e\x90\x8e\x90\x95\x8e\x91\x96\ \x8c\x90\x95\x8a\x8d\x92\x86\x8a\x8f\x87\x8b\x90\x84\x89\x8e\x82\ \x88\x8d\x83\x88\x8c\x7f\x85\x8a\x77\x7e\x83\x50\x5c\x64\x25\x35\ \x41\x39\x44\x4f\x5d\x64\x6c\x49\x51\x5c\x22\x30\x3e\x2b\x36\x45\ \x61\x66\x6f\x75\x7a\x80\x6c\x72\x77\x70\x75\x7a\x73\x79\x7e\x6d\ \x73\x78\x6f\x75\x7a\x78\x7e\x84\x7b\x81\x87\x7c\x83\x89\x7d\x84\ \x8c\x7b\x83\x8b\x7d\x84\x8c\x7d\x84\x8b\x80\x87\x8f\x81\x87\x8e\ \x79\x82\x88\x77\x81\x85\x76\x7f\x85\x51\x5d\x65\x16\x24\x2d\x45\ \x4f\x59\x82\x85\x8c\x88\x8d\x92\x8a\x90\x95\x8b\x91\x96\x8b\x91\ \x97\x89\x8e\x94\x86\x8c\x91\x87\x8c\x91\x87\x8b\x90\x8b\x90\x94\ \x8e\x93\x99\x91\x96\x9b\x92\x96\x9b\x91\x96\x9a\x95\x99\x9e\x97\ \x9b\x9f\x97\x9a\x9e\x96\x9a\x9d\x95\x98\x9c\x95\x98\x9c\x98\x9b\ \x9e\x95\x98\x9c\x9a\x9c\xa0\x99\x9c\x9d\x9a\x9c\x9d\x9e\x9e\xa1\ \x9e\xa1\xa2\xa1\xa4\xa5\xa1\xa5\xa7\x8c\x90\x91\x7b\x7f\x80\x90\ \x92\x93\xa6\xa8\xaa\xa6\xa8\xaa\x8a\x8c\x8e\x81\x81\x83\x98\x99\ \x99\x7b\x84\x87\x1e\x23\x26\x01\x01\x01\x1b\x1b\x1c\x9e\x9b\x9e\ \xb1\xae\xaf\xb3\xb1\xb2\x98\x99\x9a\x86\x86\x8a\x97\x97\x9a\xac\ \xac\xae\xb1\xb1\xb3\xa2\xa3\xa5\x85\x86\x89\x8a\x8b\x8c\xac\xab\ \xad\xb4\xb2\xb4\xaf\xaf\xb1\xb4\xb4\xb7\xb5\xb4\xb6\xb9\xb8\xba\ \xb9\xb8\xba\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb8\xb8\xb7\xb9\xb8\ \xb8\xb9\xbb\xbb\xbd\xbb\xbb\xbb\xbb\xbb\xbb\xba\xba\xba\xb7\xb7\ \xb7\xbb\xba\xba\xbb\xbb\xbb\xbb\xbb\xbb\x00\x00\x00\xe7\xe2\xdf\ \xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\ \xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xe0\xe6\xe1\xde\xe7\xe3\ \xe0\xe8\xe3\xe2\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ \xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\ \xda\xd9\xdc\xd7\xd6\xd6\xd2\xd0\xd0\xcb\xca\xc5\xc0\xc0\xb4\xb0\ \xaf\x9e\x9d\x9a\x77\x7a\x79\x4e\x56\x5a\x30\x3a\x44\x36\x3e\x48\ \x59\x5a\x61\x7d\x79\x7b\x90\x8b\x8d\x9c\x97\x9a\xa4\xa0\xa3\xa8\ \xa5\xa7\xaa\xa7\xa9\xa9\xa7\xa9\xa9\xa7\xa9\xa6\xa5\xa7\x9a\x9a\ \x9c\x81\x83\x85\x76\x79\x7c\x79\x7c\x7d\x81\x83\x84\x86\x88\x89\ \x86\x88\x89\x8a\x8c\x8e\x89\x8b\x8f\x85\x88\x8c\x88\x8c\x90\x89\ \x8d\x92\x87\x8b\x90\x86\x8b\x8f\x83\x87\x8c\x82\x88\x8c\x83\x89\ \x8e\x82\x88\x8c\x7a\x81\x86\x60\x6b\x73\x46\x53\x5d\x4e\x58\x62\ \x67\x6d\x76\x57\x60\x6b\x3d\x4a\x57\x4a\x54\x60\x60\x67\x6f\x6f\ \x75\x7b\x71\x76\x7b\x6d\x72\x77\x72\x77\x7c\x6f\x75\x7a\x6c\x71\ \x76\x71\x77\x7c\x7a\x80\x85\x7d\x83\x88\x7c\x83\x89\x7b\x83\x8a\ \x7d\x84\x8b\x7e\x85\x8c\x81\x87\x8e\x80\x86\x8d\x80\x88\x8e\x80\ \x89\x8d\x82\x8b\x8f\x70\x7a\x80\x47\x57\x5e\x5b\x66\x6e\x84\x89\ \x8e\x87\x8d\x92\x89\x8f\x94\x8a\x90\x95\x8a\x90\x95\x8a\x90\x96\ \x89\x8f\x94\x86\x8b\x90\x86\x8a\x8f\x8a\x8e\x92\x8b\x8f\x94\x91\ \x95\x9a\x92\x96\x9b\x94\x98\x9b\x99\x9e\xa1\x97\x9c\x9f\x96\x9a\ \x9d\x98\x9c\xa0\x98\x9b\x9f\x96\x99\x9d\x97\x9a\x9e\x97\x9b\x9f\ \x9b\x9d\xa0\x99\x9b\x9c\x9a\x9b\x9c\x9c\x9d\x9f\x9d\x9f\xa0\xa0\ \xa2\xa3\xa3\xa6\xa7\xa0\xa4\xa5\x8e\x93\x94\x80\x85\x85\x8e\x91\ \x92\xa4\xa6\xa7\xa9\xab\xac\x90\x93\x94\x7f\x80\x81\x93\x95\x97\ \x80\x87\x8a\x40\x45\x45\x31\x36\x38\x86\x87\x89\x92\x91\x93\xac\ \xaa\xaa\xb5\xb3\xb4\xa6\xa5\xa8\x88\x89\x8e\x8c\x8d\x90\xa4\xa3\ \xa5\xb3\xb2\xb3\xae\xaf\xb1\x8e\x90\x90\x8b\x8a\x8c\x99\x97\x99\ \xb3\xb1\xb3\xb7\xb7\xb9\xb4\xb3\xb6\xb7\xb6\xb8\xb9\xb8\xba\xb8\ \xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xb8\xb8\xb9\xbb\xba\ \xbc\xbc\xbb\xbc\xbd\xbd\xbe\xbc\xbc\xbe\xb6\xb6\xb6\xb9\xb8\xb8\ \xb9\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe7\ \xe2\xdf\xe7\xe2\xdf\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ \xdf\xe7\xe2\xde\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\xe0\xe8\xe3\xe0\ \xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe5\xe0\xde\xe4\ \xdf\xdd\xe4\xdf\xdc\xe2\xdd\xda\xe0\xdc\xda\xde\xda\xd9\xda\xd7\ \xd6\xd5\xd0\xcf\xcc\xc7\xc6\xc1\xbc\xbd\xaf\xac\xac\x90\x90\x90\ \x69\x6d\x6e\x40\x49\x4f\x2e\x38\x41\x3f\x44\x4c\x67\x65\x69\x86\ \x81\x82\x95\x8f\x91\x9e\x99\x9d\xa4\xa1\xa3\xa8\xa6\xa8\xaa\xa6\ \xa8\xa8\xa7\xaa\xa7\xa5\xa7\xa4\xa3\xa5\x92\x93\x95\x80\x82\x85\ \x7a\x7d\x81\x80\x82\x85\x85\x87\x88\x83\x87\x88\x84\x86\x88\x83\ \x84\x87\x77\x7a\x7e\x6d\x70\x75\x79\x7b\x80\x86\x8a\x8f\x87\x8c\ \x91\x85\x8b\x8f\x83\x87\x8c\x83\x88\x8d\x83\x89\x8d\x81\x87\x8c\ \x7c\x83\x88\x71\x7b\x81\x63\x6e\x76\x63\x6c\x75\x6d\x73\x7c\x68\ \x70\x79\x5c\x66\x70\x5f\x67\x6f\x60\x67\x6e\x64\x6a\x70\x72\x77\ \x7c\x71\x75\x7a\x64\x6a\x6f\x66\x6b\x6f\x6a\x70\x75\x6c\x72\x77\ \x75\x7b\x80\x7c\x82\x86\x7c\x83\x89\x7c\x83\x8a\x7c\x84\x8b\x7e\ \x86\x8d\x80\x88\x8f\x7f\x86\x8e\x81\x8a\x8f\x81\x8a\x8e\x84\x8b\ \x90\x82\x88\x8e\x79\x81\x87\x7c\x83\x88\x86\x8c\x92\x88\x8e\x93\ \x87\x8d\x92\x89\x8f\x94\x87\x8d\x92\x8a\x91\x96\x8b\x92\x97\x89\ \x8e\x93\x88\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x91\x95\x99\x94\x98\ \x9d\x95\x9a\x9e\x99\x9d\xa1\x97\x9b\x9f\x96\x9a\x9e\x99\x9d\xa2\ \x9a\x9d\xa2\x99\x9c\xa1\x97\x9b\x9f\x98\x9b\x9f\x9a\x9c\x9f\x9a\ \x9d\x9f\x9b\x9c\x9d\x9c\x9e\x9f\xa0\xa1\xa2\xa1\xa2\xa4\xa3\xa3\ \xa5\xa3\xa5\xa6\xa4\xa7\xa8\x99\x9c\x9d\x85\x88\x89\x88\x8a\x8c\ \x9f\xa1\xa2\xab\xad\xad\x98\x9a\x9b\x82\x85\x85\x8c\x8e\x8e\x74\ \x7a\x7c\x78\x7f\x82\xa2\xa4\xa4\x8a\x8b\x8d\x8c\x8b\x8d\xa3\xa2\ \xa3\xb5\xb4\xb6\xa9\xaa\xad\x8d\x8f\x93\x85\x87\x8a\x9c\x9d\x9d\ \xb1\xb0\xb2\xb4\xb6\xb7\x9e\x9d\xa1\x8a\x89\x8d\x91\x91\x94\xb0\ \xaf\xb2\xb9\xb8\xba\xb6\xb5\xb8\xb7\xb6\xb9\xb7\xb6\xb8\xb9\xb7\ \xb9\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xbc\xbc\xbc\ \xba\xba\xbb\xbb\xba\xbb\xb8\xb8\xb7\xbc\xbc\xbc\xbd\xbc\xbc\xb8\ \xb8\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe3\ \xe0\xe7\xe3\xe0\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xe0\ \xe8\xe3\xe2\xe8\xe3\xe0\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe6\ \xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xdf\ \xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd8\xd7\xd8\xd4\xd3\xd1\xcd\xcc\ \xc7\xc2\xc1\xbb\xb6\xb7\xa4\xa2\xa2\x81\x81\x82\x5a\x60\x61\x36\ \x42\x46\x32\x3a\x41\x50\x52\x58\x75\x72\x75\x8d\x88\x89\x99\x95\ \x96\xa2\x9f\xa1\xa6\xa4\xa6\xa8\xa6\xa8\xa9\xa7\xa9\xa7\xa6\xa9\ \xa5\xa4\xa6\xa0\x9f\xa1\x8e\x8e\x90\x84\x86\x8a\x82\x84\x87\x85\ \x86\x88\x87\x89\x8b\x81\x84\x86\x83\x86\x89\x7c\x7d\x81\x65\x6a\ \x70\x4d\x55\x5e\x5f\x64\x6b\x7e\x81\x86\x85\x8a\x90\x86\x8c\x91\ \x85\x89\x8f\x82\x88\x8c\x81\x87\x8c\x7f\x85\x8a\x7e\x86\x8a\x7c\ \x84\x89\x74\x7d\x84\x6e\x77\x7f\x6d\x75\x7e\x6f\x76\x7f\x69\x71\ \x7a\x54\x5c\x65\x4a\x50\x57\x54\x5a\x61\x69\x6e\x73\x6c\x70\x75\ \x49\x50\x53\x47\x4d\x51\x64\x6b\x6e\x6c\x72\x77\x6d\x73\x78\x78\ \x7d\x82\x7e\x85\x8b\x7d\x84\x8b\x7d\x85\x8c\x7f\x87\x8f\x80\x88\ \x8f\x80\x89\x8e\x82\x8b\x8f\x82\x8a\x8f\x84\x8d\x91\x83\x8b\x90\ \x84\x8a\x8f\x84\x8a\x90\x87\x8d\x93\x86\x8c\x92\x86\x8c\x91\x89\ \x8f\x94\x88\x8e\x93\x8a\x90\x96\x8a\x90\x95\x8b\x91\x96\x8d\x91\ \x97\x8b\x8f\x94\x8d\x91\x96\x92\x97\x9a\x95\x9a\x9d\x95\x9a\x9e\ \x97\x9b\x9f\x98\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9d\xa0\xa5\x9c\ \x9f\xa4\x9a\x9d\xa2\x99\x9c\xa0\x98\x9b\x9e\x9c\x9e\xa1\x9d\x9f\ \xa0\x9c\x9d\x9e\xa0\xa0\xa2\xa1\xa0\xa2\xa2\xa2\xa4\xa3\xa4\xa6\ \xa4\xa6\xa7\xa7\xaa\xab\x9e\xa1\xa2\x89\x8b\x8e\x83\x85\x86\x9f\ \x9f\xa0\xa7\xa9\xa9\x9c\x9e\x9e\x80\x82\x84\x3e\x44\x47\x88\x8c\ \x8e\xa5\xa6\xa6\x88\x89\x89\x7b\x7c\x7e\x88\x89\x8a\x9d\x9c\x9e\ \xb0\xaf\xb1\xab\xac\xae\x98\x9b\x9c\x83\x85\x86\x91\x91\x93\xb2\ \xb3\xb4\xb5\xb6\xb7\xaa\xaa\xad\x91\x91\x95\x89\x88\x8c\xa4\xa2\ \xa4\xbc\xb9\xbc\xb8\xb7\xb9\xba\xb7\xb9\xb9\xb6\xb8\xb8\xb6\xb8\ \xbb\xba\xbc\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xb9\xb9\xb8\xb9\xbc\ \xbb\xbd\xb9\xb8\xba\xc0\xc0\xc0\xbd\xbc\xbd\xbb\xbb\xbb\x00\x00\ \x00\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe0\ \xe7\xe2\xe0\xe7\xe2\xde\xe7\xe2\xdf\xe8\xe3\xe2\xe7\xe2\xe1\xe7\ \xe2\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\ \xe1\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\ \xdf\xda\xda\xdb\xd5\xd6\xd7\xd2\xd1\xcf\xc9\xc8\xc5\xc0\xbf\xb3\ \xaf\xaf\x98\x97\x97\x71\x74\x74\x4a\x52\x53\x31\x3c\x40\x3a\x42\ \x46\x62\x61\x65\x80\x7b\x7d\x90\x8b\x8c\x9c\x98\x99\xa4\xa1\xa2\ \xa6\xa4\xa6\xa8\xa7\xa8\xa7\xa6\xa8\xa8\xa7\xa9\xa7\xa6\xa8\x9f\ \x9e\xa0\x8f\x8f\x91\x87\x8a\x8d\x85\x88\x89\x85\x87\x88\x87\x8b\ \x8c\x7f\x83\x86\x7f\x81\x84\x78\x7a\x7d\x5a\x61\x68\x39\x47\x52\ \x4e\x56\x60\x77\x7a\x7f\x82\x88\x8d\x86\x8c\x91\x83\x89\x8f\x80\ \x87\x8c\x80\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8a\x7b\x83\ \x89\x74\x7c\x83\x6d\x75\x7d\x6e\x75\x7d\x6c\x73\x79\x46\x4f\x58\ \x22\x2b\x33\x3d\x44\x4b\x60\x63\x68\x5f\x63\x67\x34\x3b\x40\x1f\ \x25\x2a\x51\x57\x5c\x70\x75\x7a\x6d\x72\x77\x6f\x75\x79\x7a\x80\ \x86\x7d\x83\x89\x7d\x85\x8c\x80\x88\x8e\x7f\x87\x8d\x80\x89\x8c\ \x81\x89\x8e\x84\x8a\x8f\x83\x8a\x8f\x84\x8b\x90\x85\x8b\x91\x85\ \x8b\x92\x89\x8f\x94\x88\x8e\x93\x87\x8d\x92\x87\x8d\x92\x89\x8f\ \x94\x8a\x90\x96\x8b\x91\x98\x8d\x93\x99\x90\x95\x9a\x8f\x93\x98\ \x90\x93\x98\x92\x96\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9b\x9e\x97\ \x9c\x9f\x98\x9c\xa0\x9b\x9e\xa3\x9e\xa1\xa6\x9d\xa0\xa5\x9a\x9d\ \xa2\x98\x9b\xa0\x98\x9b\x9f\x9e\xa1\xa3\xa0\xa2\xa3\x9f\x9f\xa0\ \x9f\x9e\xa1\xa1\xa0\xa2\xa2\xa4\xa5\xa5\xa7\xa8\xa4\xa6\xa7\xa5\ \xa6\xa9\xa7\xa9\xad\xa4\xa6\xaa\x91\x93\x96\x85\x88\x89\x95\x97\ \x98\xab\xab\xac\x82\x83\x85\x5f\x64\x66\x7a\x80\x82\x8c\x8f\x90\ \x6d\x70\x72\x66\x69\x6c\x9d\x9f\xa0\x86\x88\x8a\x90\x91\x93\xab\ \xab\xac\xb2\xb3\xb3\xa4\xa6\xa7\x8d\x8e\x91\x85\x87\x8a\xaa\xaa\ \xab\xb6\xb6\xb7\xaf\xaf\xb1\x9e\x9e\xa1\x89\x89\x8b\x93\x91\x95\ \xba\xb8\xb9\xbf\xbc\xbe\xb9\xb6\xb8\xb8\xb6\xb8\xba\xb9\xbb\xba\ \xb9\xbb\xbc\xbb\xbd\xba\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ \xbe\xc2\xc2\xc3\xbd\xbd\xbd\xbc\xbb\xbd\x00\x00\x00\xe6\xe1\xe0\ \xe6\xe1\xde\xe7\xe2\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe8\ \xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ \xe0\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe5\xdf\xdf\ \xe5\xe0\xdf\xe5\xe0\xde\xe2\xdd\xdc\xe0\xdb\xda\xde\xd8\xd8\xdb\ \xd5\xd5\xd3\xcc\xcc\xcc\xc4\xc5\xbf\xb9\xb8\xac\xa9\xa9\x8e\x8d\ \x8d\x64\x68\x68\x3c\x46\x48\x2f\x39\x3d\x45\x4b\x4e\x6c\x6c\x6d\ \x88\x84\x84\x97\x92\x92\xa0\x9c\x9c\xa5\xa3\xa3\xa7\xa6\xa6\xa8\ \xa6\xa7\xa7\xa6\xa8\xa6\xa5\xa7\xa5\xa5\xa6\x9e\x9d\x9f\x92\x94\ \x96\x89\x8b\x8f\x87\x89\x8b\x85\x88\x89\x83\x86\x88\x77\x7b\x7e\ \x6c\x70\x73\x68\x6b\x6f\x60\x66\x6b\x53\x5d\x66\x56\x5d\x65\x77\ \x7a\x80\x81\x86\x8b\x84\x89\x8e\x81\x88\x8d\x81\x87\x8e\x7f\x85\ \x8c\x7d\x84\x8b\x7b\x83\x88\x7c\x85\x89\x7c\x84\x8a\x79\x81\x88\ \x73\x7b\x82\x6e\x75\x7c\x69\x6f\x75\x42\x4c\x53\x0e\x1a\x20\x2f\ \x37\x3e\x63\x66\x6a\x53\x57\x5b\x1c\x24\x2b\x08\x0d\x13\x3c\x41\ \x47\x6f\x72\x77\x73\x77\x7d\x6a\x70\x76\x73\x78\x7e\x7e\x84\x88\ \x7c\x85\x8a\x7d\x86\x8b\x7e\x87\x8c\x80\x87\x8c\x82\x89\x8e\x84\ \x8a\x90\x83\x89\x8e\x86\x8c\x92\x87\x8d\x94\x87\x8d\x94\x87\x8d\ \x93\x88\x8e\x93\x88\x8e\x94\x87\x8c\x92\x89\x8e\x93\x8a\x90\x95\ \x8f\x95\x9c\x8e\x94\x99\x8e\x93\x98\x93\x97\x9c\x94\x98\x9d\x91\ \x93\x98\x94\x97\x9c\x98\x9b\x9f\x97\x9a\x9e\x97\x9b\x9f\x99\x9c\ \xa0\x9b\x9e\xa3\x9c\x9f\xa4\x9d\xa0\xa5\x9c\x9f\xa4\x9e\xa1\xa5\ \x9c\x9f\xa3\x9f\xa2\xa3\x94\x95\x96\x8f\x8f\x90\xa3\xa2\xa5\xa0\ \xa1\xa3\xa1\xa2\xa4\xa4\xa5\xa7\xa4\xa6\xa7\xa6\xa7\xaa\xa9\xaa\ \xae\xa9\xab\xaf\xa5\xa7\xa9\x98\x9b\x9e\x7f\x82\x86\x86\x87\x8a\ \x6a\x6b\x6e\x96\x98\x9a\x98\x9d\x9d\x84\x88\x8a\x79\x7c\x80\x97\ \x99\x9c\xad\xad\xaf\xa3\xa4\xa6\x88\x89\x8c\x87\x87\x8a\xaa\xaa\ \xaa\xb3\xb4\xb4\xad\xae\xaf\x96\x97\x99\x81\x80\x82\xa0\x9f\xa1\ \xb6\xb5\xb6\xb7\xb6\xb7\xa9\xa9\xaa\x91\x91\x95\x8c\x8b\x8f\xaf\ \xac\xaf\xbb\xb8\xba\xb9\xb8\xba\xbb\xb9\xbb\xbb\xb9\xbb\xbc\xbb\ \xbd\xbd\xbb\xbd\xb9\xb8\xba\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbf\xbf\ \xbd\xbd\xbe\xbd\xbd\xbd\x00\x00\x00\xe7\xe2\xe0\xe6\xe1\xdf\xe5\ \xe0\xdf\xe4\xdf\xdc\xe5\xe0\xde\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\ \xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe1\ \xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe1\xe5\xe0\xde\xe5\xe0\xde\xe4\ \xdf\xde\xe2\xdd\xdc\xe0\xdb\xda\xdd\xd8\xd7\xd9\xd3\xd3\xd2\xca\ \xcb\xc9\xc2\xc1\xb9\xb5\xb4\xa2\xa0\xa0\x7e\x7f\x7f\x59\x5e\x5f\ \x35\x3e\x42\x33\x3e\x42\x55\x59\x5a\x7a\x78\x78\x8f\x8a\x8b\x9b\ \x97\x98\xa2\xa0\xa0\xa5\xa3\xa4\xaa\xa8\xa9\xab\xa8\xa9\xa8\xa7\ \xa8\xa6\xa6\xa7\xa3\xa3\xa4\x9b\x9b\x9c\x92\x93\x95\x8d\x90\x94\ \x87\x8a\x8e\x84\x88\x8a\x77\x7a\x7c\x67\x6c\x6e\x5b\x60\x65\x5d\ \x61\x66\x62\x66\x6b\x6a\x6f\x73\x6c\x71\x75\x7a\x7e\x82\x7e\x83\ \x88\x82\x88\x8d\x82\x88\x8f\x80\x86\x8d\x7f\x85\x8c\x7b\x83\x8b\ \x7b\x83\x8a\x7d\x85\x8b\x7c\x84\x8a\x7c\x84\x8a\x77\x7f\x86\x6b\ \x74\x7a\x54\x5d\x65\x34\x40\x48\x0e\x1b\x22\x29\x32\x3a\x5e\x62\ \x66\x40\x48\x4d\x10\x18\x1e\x07\x0e\x13\x36\x3d\x44\x6a\x6e\x75\ \x75\x7a\x7f\x70\x76\x7b\x6d\x73\x79\x78\x7e\x83\x7d\x84\x8a\x7f\ \x86\x8c\x7f\x87\x8d\x80\x89\x8d\x84\x8c\x92\x85\x8b\x91\x84\x8a\ \x8f\x86\x8c\x91\x87\x8d\x94\x87\x8d\x93\x85\x8b\x91\x86\x8c\x91\ \x86\x8c\x91\x88\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8d\x93\x99\x8e\ \x94\x9a\x8c\x91\x98\x8f\x93\x98\x93\x97\x9c\x94\x98\x9c\x93\x98\ \x9b\x98\x9c\xa0\x99\x9c\xa0\x97\x9b\x9f\x9a\x9e\xa2\x9a\x9e\xa3\ \x99\x9e\xa2\x9c\x9f\xa3\x9c\x9f\xa3\x9d\xa0\xa5\xa2\xa5\xa9\x9f\ \xa0\xa3\x6f\x73\x75\x64\x65\x68\x84\x83\x86\xa2\xa1\xa4\xa4\xa3\ \xa5\xa4\xa3\xa5\xa4\xa6\xa7\xa9\xab\xad\xaa\xab\xb0\xa6\xa8\xaa\ \xa6\xa8\xa9\xa5\xa7\xa9\xa0\xa2\xa6\x68\x6b\x70\x59\x5d\x62\xa5\ \xa7\xa7\xab\xae\xad\xa4\xa6\xa8\x89\x8b\x8f\x84\x85\x88\xa3\xa2\ \xa3\xae\xad\xae\xa7\xa8\xaa\x93\x96\x99\x80\x82\x86\xa4\xa4\xa4\ \xb5\xb6\xb4\xb4\xb4\xb4\xa4\xa5\xa6\x88\x89\x8b\x90\x8f\x91\xb6\ \xb5\xb5\xb7\xb6\xb7\xb3\xb5\xb6\x9e\xa0\xa2\x86\x88\x8b\x9e\x9d\ \xa0\xbd\xbb\xbd\xbc\xba\xbc\xba\xb8\xbb\xbb\xba\xbc\xbc\xbb\xbd\ \xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\xbd\xbd\xbe\xb9\xb8\xba\xba\ \xb9\xbb\x00\x00\x00\xe6\xe1\xdf\xe6\xe1\xde\xe6\xe1\xdf\xe5\xe0\ \xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe0\xdf\xe6\xe1\xe0\ \xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe6\ \xe1\xdf\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdd\ \xdb\xdf\xda\xda\xdc\xd6\xd6\xd8\xd0\xcf\xcf\xc8\xc7\xc3\xbe\xbd\ \xb3\xae\xae\x97\x96\x97\x6f\x72\x74\x48\x50\x54\x30\x3a\x3f\x3b\ \x44\x46\x62\x64\x64\x84\x80\x81\x94\x8f\x90\x9d\x9a\x9a\xa4\xa1\ \xa2\xa8\xa5\xa6\xa8\xa6\xa8\xa9\xa7\xa7\xa6\xa6\xa7\xa6\xa6\xa6\ \xa4\xa4\xa4\x9d\x9d\x9d\x99\x99\x9a\x8d\x90\x93\x87\x8a\x8e\x82\ \x86\x88\x72\x77\x78\x5c\x61\x63\x4a\x50\x54\x52\x56\x5c\x64\x68\ \x6d\x6c\x70\x74\x76\x79\x7d\x7a\x7f\x83\x82\x87\x8c\x83\x89\x8e\ \x82\x89\x8f\x7d\x86\x8b\x7d\x84\x8b\x7c\x84\x8b\x7c\x84\x8b\x7c\ \x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x84\x8b\x70\x78\x80\x43\x51\ \x5a\x1c\x28\x30\x1b\x28\x2f\x36\x40\x48\x46\x4f\x56\x28\x32\x3a\ \x07\x10\x15\x19\x22\x29\x4d\x54\x5d\x6a\x71\x78\x71\x77\x7c\x74\ \x7a\x7f\x70\x77\x7c\x6e\x74\x7a\x7a\x7f\x84\x81\x87\x8c\x7e\x87\ \x8b\x80\x88\x8d\x86\x8c\x93\x83\x89\x8e\x85\x8b\x90\x87\x8d\x92\ \x87\x8d\x92\x88\x8e\x95\x88\x8d\x93\x87\x8c\x91\x87\x8d\x91\x8a\ \x8f\x93\x8c\x91\x96\x8c\x91\x96\x89\x8d\x92\x88\x8d\x92\x88\x8d\ \x92\x8e\x92\x97\x90\x94\x99\x94\x99\x9d\x95\x98\x9b\x96\x99\x9d\ \x97\x9b\xa0\x9a\x9d\xa2\x9c\xa0\xa4\x9a\x9e\xa3\x98\x9c\xa0\x9a\ \x9e\xa1\x9d\xa0\xa4\xa0\xa3\xa8\xa5\xa8\xac\x91\x94\x98\x64\x69\ \x6d\x89\x8c\x8d\x78\x7a\x7b\x7d\x7d\x7f\xa0\x9f\xa1\xa2\xa3\xa5\ \xa1\xa2\xa5\xa3\xa5\xa6\xa7\xa7\xaa\xa4\xa6\xa8\xa4\xa6\xa8\xa5\ \xa6\xa9\xa0\xa2\xa6\x6d\x71\x74\x7c\x7f\x82\x80\x83\x84\xa1\xa3\ \xa2\xb0\xb0\xb1\xab\xab\xad\x94\x95\x97\x87\x88\x89\x9c\x9c\x9d\ \xaf\xaf\xaf\xae\xb0\xb1\x9f\xa2\xa5\x7f\x82\x85\x94\x95\x95\xb5\ \xb6\xb4\xb5\xb5\xb5\xae\xaf\xb0\x93\x94\x95\x80\x80\x82\xab\xaa\ \xaa\xbc\xbc\xbd\xb6\xb7\xb8\xab\xac\xae\x8c\x8d\x8e\x96\x95\x96\ \xb5\xb2\xb2\xbb\xba\xbc\xbe\xbb\xbd\xbf\xbc\xbe\xbe\xbd\xbf\xbb\ \xba\xbc\xba\xb9\xbb\xb9\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xb9\x00\x00\ \x00\xe6\xe1\xdf\xe6\xe1\xdf\xe6\xe1\xdd\xe5\xe0\xdd\xe5\xe0\xdd\ \xe5\xe0\xde\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\xe0\xe7\ \xe2\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe6\xe1\xe1\xe6\xe1\xe0\xe5\xe0\ \xde\xe4\xdf\xde\xe4\xde\xde\xe3\xdd\xdb\xe1\xdb\xd9\xde\xd9\xd8\ \xd9\xd3\xd2\xd5\xcd\xcb\xcb\xc5\xc3\xbc\xb7\xb7\xa9\xa6\xa6\x88\ \x89\x8a\x62\x66\x6a\x3c\x46\x4d\x36\x3f\x45\x49\x4e\x52\x6e\x6e\ \x6e\x8a\x85\x86\x98\x92\x93\xa1\x9c\x9d\xa7\xa3\xa4\xaa\xa7\xa9\ \xa8\xa6\xa8\xa7\xa4\xa6\xa5\xa4\xa5\xa5\xa5\xa5\xa4\xa3\xa5\x9f\ \x9e\xa0\x98\x99\x9a\x8f\x92\x93\x85\x88\x8b\x7d\x80\x82\x6e\x73\ \x74\x55\x5c\x5d\x4a\x50\x53\x55\x59\x5d\x65\x68\x6c\x6a\x6d\x71\ \x75\x78\x7c\x7c\x81\x84\x82\x87\x8c\x82\x89\x8e\x80\x88\x8d\x7f\ \x87\x8e\x7f\x87\x8e\x7e\x86\x8c\x7c\x84\x8a\x7d\x85\x8c\x7c\x84\ \x8b\x7b\x83\x8a\x7e\x84\x8b\x72\x79\x81\x3a\x48\x53\x0e\x1c\x24\ \x2c\x38\x40\x54\x5d\x61\x40\x4b\x51\x0e\x1a\x20\x06\x0c\x11\x2e\ \x36\x3e\x60\x68\x70\x75\x7b\x82\x6e\x76\x7c\x71\x78\x7d\x77\x7d\ \x82\x6e\x75\x7a\x71\x77\x7c\x7c\x81\x87\x7e\x85\x8a\x82\x88\x8d\ \x82\x88\x8d\x81\x87\x8b\x83\x89\x8e\x86\x8c\x91\x89\x8e\x93\x89\ \x8e\x93\x8b\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8d\x92\x8a\x8f\ \x94\x8b\x91\x95\x8a\x8f\x94\x85\x8a\x8f\x84\x89\x8d\x89\x8e\x91\ \x8f\x94\x98\x92\x97\x9a\x95\x98\x9d\x97\x9b\xa0\x97\x9b\xa0\x9a\ \x9d\xa2\x9d\xa0\xa5\x9d\xa1\xa5\x9b\x9f\xa2\x9e\xa1\xa5\x9f\xa2\ \xa6\xa0\xa3\xa7\xa5\xa6\xaa\x78\x7d\x82\x4f\x55\x5c\x89\x8a\x8d\ \x99\x99\x9b\x68\x69\x6b\x65\x64\x67\x9b\x9b\x9d\xa3\xa4\xa6\xa5\ \xa4\xa6\xa7\xa7\xa9\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa9\x8d\x8e\ \x92\x76\x7a\x7c\xa5\xa6\xa7\x97\x99\x9a\x7f\x82\x83\x99\x9a\x9b\ \xaf\xae\xaf\xad\xae\xaf\x9d\x9f\xa0\x84\x86\x87\x92\x92\x93\xac\ \xab\xad\xb5\xb6\xb7\xa8\xab\xac\x8a\x8c\x8d\x89\x8a\x8a\xaf\xaf\ \xb0\xb4\xb4\xb4\xb3\xb3\xb4\xa2\xa4\xa5\x86\x87\x88\x9a\x99\x9b\ \xba\xba\xbb\xbb\xba\xbb\xba\xb8\xba\x9a\x99\x9b\x86\x84\x84\xaf\ \xad\xae\xbe\xbb\xbd\xbf\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\ \xbc\xb7\xb6\xb7\xb8\xb7\xb8\xb9\xb7\xb8\x00\x00\x00\xe5\xdf\xdd\ \xe5\xdf\xdc\xe7\xe0\xe0\xe6\xdf\xdf\xe5\xe0\xde\xe5\xe0\xdf\xe6\ \xe1\xe0\xe6\xe1\xe0\xe7\xe1\xdf\xe6\xe0\xdf\xe5\xdf\xde\xe6\xe1\ \xe0\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\ \xe3\xde\xdb\xe2\xdc\xda\xdf\xda\xd8\xdb\xd6\xd5\xd7\xd2\xd1\xd0\ \xc9\xc7\xc6\xc1\xbe\xb8\xb4\xb5\xa1\xa0\xa0\x7a\x7c\x7c\x52\x58\ \x5b\x37\x40\x47\x3d\x44\x4b\x5b\x5c\x61\x7b\x79\x7a\x8f\x8b\x8b\ \x9c\x98\x99\xa2\x9f\xa0\xa6\xa3\xa5\xa8\xa6\xa8\xa9\xa6\xa8\xa9\ \xa6\xa8\xa5\xa4\xa5\xa3\xa3\xa4\xa1\xa0\xa1\x9e\x9d\x9f\x97\x99\ \x9a\x8c\x8f\x91\x85\x89\x8c\x7c\x80\x81\x6c\x70\x71\x55\x5c\x5e\ \x48\x4f\x53\x5c\x5f\x63\x62\x65\x69\x64\x67\x6b\x71\x74\x78\x7d\ \x81\x85\x81\x86\x8b\x84\x8a\x8f\x82\x88\x8d\x7f\x87\x8c\x7d\x85\ \x8c\x7d\x85\x8c\x7e\x86\x8d\x7c\x84\x8b\x7c\x83\x8a\x7b\x82\x89\ \x7c\x82\x89\x72\x7a\x81\x3a\x49\x54\x0e\x1e\x26\x2d\x3b\x44\x61\ \x68\x6c\x4d\x57\x5d\x09\x17\x1d\x0b\x14\x1c\x41\x4a\x53\x6c\x72\ \x79\x76\x7c\x83\x75\x7c\x82\x6e\x74\x7b\x75\x7b\x81\x77\x7d\x82\ \x6b\x72\x78\x70\x76\x7c\x7e\x85\x89\x83\x8a\x8e\x81\x86\x8c\x84\ \x8a\x90\x87\x8d\x93\x87\x8c\x93\x89\x8d\x92\x89\x8e\x93\x8b\x90\ \x94\x8c\x91\x95\x8b\x90\x94\x8c\x91\x96\x8a\x90\x95\x8c\x91\x94\ \x8c\x91\x95\x8a\x8e\x92\x8b\x90\x94\x8f\x94\x98\x91\x96\x99\x96\ \x9a\x9e\x96\x99\x9e\x97\x9a\x9f\x99\x9c\xa1\x99\x9c\xa1\x9c\x9f\ \xa3\x9b\x9e\xa3\x9b\x9f\xa4\x9d\xa0\xa5\x9d\xa0\xa4\x9f\xa2\xa6\ \x96\x98\x9c\x67\x6d\x72\x82\x86\x89\x78\x7b\x7e\x73\x75\x78\x6b\ \x6d\x70\x6b\x6e\x70\x7a\x7c\x7d\x99\x99\x9b\xa7\xa7\xa8\xa5\xa5\ \xa6\xa7\xa7\xa9\xa8\xa8\xaa\xa7\xa7\xa9\x70\x74\x77\x8c\x8f\x91\ \xaa\xaa\xab\xaa\xad\xae\xa4\xa8\xa9\x89\x8b\x8c\x8d\x8e\x8d\xa5\ \xa5\xa5\xb0\xb0\xb1\xaa\xab\xac\x87\x88\x89\x8b\x8b\x8c\xa8\xa9\ \xab\xaf\xb0\xb0\xb1\xb3\xb3\x9a\x9b\x9b\x7d\x7d\x7d\xa4\xa2\xa2\ \xb3\xb2\xb3\xb7\xb6\xb8\xae\xaf\xb1\x8b\x8c\x8e\x8c\x8d\x8e\xb3\ \xb1\xb2\xbd\xb9\xbb\xbd\xbb\xbd\xae\xac\xac\x80\x7f\x80\x9c\x9b\ \x9d\xbb\xba\xbb\xbe\xbc\xbd\xba\xb8\xba\xbc\xba\xbc\xbe\xbc\xbd\ \xbb\xb8\xba\xb9\xb8\xb8\x00\x00\x00\xe6\xe1\xde\xe6\xe0\xde\xe6\ \xe0\xe0\xe5\xe0\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xde\xe6\xde\ \xdd\xe3\xdc\xd9\xe1\xd9\xd6\xe2\xdb\xd8\xe5\xde\xdb\xe6\xe1\xde\ \xe6\xe0\xde\xe6\xe0\xdd\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xdc\xdc\xe2\ \xda\xda\xdf\xd8\xd6\xda\xd3\xd0\xd4\xce\xcb\xcb\xc6\xc3\xc2\xbd\ \xbc\xaf\xac\xad\x91\x91\x91\x6c\x6f\x6f\x46\x4e\x53\x31\x3b\x42\ \x44\x4b\x52\x69\x68\x6d\x83\x81\x82\x94\x92\x92\xa0\x9e\x9e\xa4\ \xa1\xa2\xa6\xa4\xa6\xaa\xa8\xaa\xaa\xa8\xaa\xa8\xa7\xa9\xa6\xa5\ \xa7\xa2\xa1\xa3\xa0\x9f\xa1\x9d\x9e\x9f\x93\x95\x96\x89\x8c\x8f\ \x82\x85\x87\x7c\x80\x81\x6b\x70\x71\x52\x59\x5d\x45\x4b\x51\x55\ \x58\x5c\x59\x5d\x61\x61\x64\x68\x6c\x6f\x73\x80\x84\x88\x82\x88\ \x8d\x81\x87\x8c\x80\x86\x8b\x7d\x83\x88\x7c\x85\x8a\x7b\x84\x89\ \x7c\x84\x8a\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x84\x8a\x72\ \x7a\x81\x51\x5d\x68\x24\x37\x41\x39\x47\x52\x5f\x67\x6d\x63\x6b\ \x70\x28\x37\x41\x15\x22\x2d\x52\x5c\x64\x6f\x76\x7b\x70\x77\x7d\ \x76\x7c\x82\x71\x79\x7e\x6c\x75\x7a\x77\x7d\x82\x74\x7a\x80\x6d\ \x74\x7a\x78\x7c\x81\x7f\x84\x89\x83\x88\x8d\x82\x88\x8d\x86\x8c\ \x92\x88\x8c\x92\x88\x8c\x91\x88\x8c\x91\x8b\x8f\x94\x8a\x8f\x93\ \x8c\x91\x96\x8c\x92\x96\x8d\x92\x96\x8d\x92\x96\x8e\x92\x96\x89\ \x8d\x91\x8f\x94\x97\x93\x97\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\ \xa0\x9b\x9f\xa4\x99\x9d\xa2\x9b\x9f\xa4\x9c\x9f\xa4\x9b\x9e\xa3\ \x9d\x9f\xa5\x9d\xa0\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x81\x85\x88\x4b\ \x53\x5a\x8a\x8b\x8f\x94\x97\x99\x64\x67\x6c\x49\x4c\x51\x9a\x9b\ \x99\x8b\x8e\x8d\x74\x76\x77\x8e\x8d\x8f\xa3\xa2\xa4\xa8\xa6\xa8\ \xa7\xa6\xa8\x93\x94\x97\x76\x7a\x7d\xa1\xa3\xa5\xab\xac\xae\xac\ \xac\xad\xaf\xaf\xb0\xa9\xaa\xac\x89\x8c\x8d\x81\x83\x84\xa5\xa6\ \xa6\xb4\xb3\xb3\xb2\xb2\xb3\x91\x93\x94\x7f\x81\x83\x9e\x9e\xa0\ \xb3\xb3\xb3\xb3\xb4\xb4\xa8\xa8\xa8\x81\x7f\x7f\x92\x8e\x8f\xaf\ \xae\xae\xb7\xb6\xb8\xb7\xb8\xb9\x99\x9a\x9b\x83\x83\x84\xa2\xa1\ \xa1\xba\xb8\xb8\xbf\xbd\xbd\xb8\xb7\xb8\x8e\x8f\x92\x85\x85\x88\ \xb4\xb2\xb4\xba\xb7\xb8\xbd\xba\xbc\xbe\xbb\xbd\xbc\xbb\xbc\xbd\ \xbc\xbc\x00\x00\x00\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xdb\xe3\xdd\ \xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xda\xe2\xdc\xdb\xe0\xd9\xd7\ \xde\xd6\xd3\xdf\xd7\xd4\xe2\xdb\xd8\xe5\xdf\xdd\xe6\xe0\xdf\xe5\ \xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe2\xdc\xd9\xe0\xda\xd7\xdd\xd7\ \xd5\xd9\xd3\xd1\xd2\xcd\xcb\xca\xc5\xc4\xbd\xb8\xb7\xa9\xa5\xa5\ \x83\x85\x84\x5c\x62\x62\x3b\x44\x4b\x2f\x3a\x41\x4c\x51\x58\x76\ \x74\x77\x8c\x8a\x89\x97\x94\x94\xa2\xa0\xa0\xa5\xa3\xa4\xa8\xa5\ \xa7\xab\xa8\xaa\xa8\xa7\xa9\xa6\xa6\xa8\xa4\xa3\xa5\xa2\xa1\xa3\ \xa0\x9f\xa2\x9b\x9c\x9d\x8f\x92\x93\x84\x88\x8a\x7f\x83\x85\x7c\ \x80\x80\x6c\x71\x72\x4c\x54\x59\x31\x36\x3d\x47\x49\x4f\x5b\x5e\ \x62\x60\x63\x67\x67\x6a\x6e\x7a\x7e\x81\x81\x86\x8b\x81\x87\x8c\ \x80\x86\x8a\x7d\x84\x89\x7c\x85\x89\x7d\x85\x8a\x7c\x84\x8a\x7d\ \x85\x8b\x7d\x85\x8b\x7b\x83\x8a\x7b\x84\x8a\x77\x7f\x86\x67\x71\ \x78\x54\x5f\x68\x57\x63\x6a\x63\x6b\x72\x65\x6d\x71\x4d\x5a\x64\ \x3c\x4b\x56\x5e\x67\x6e\x75\x7b\x80\x6e\x76\x7d\x71\x78\x7f\x77\ \x7e\x85\x6f\x77\x7e\x70\x76\x7c\x7a\x80\x85\x75\x7b\x80\x6e\x73\ \x78\x79\x7e\x82\x84\x88\x8c\x86\x8a\x8f\x88\x8c\x91\x87\x8b\x90\ \x89\x8d\x92\x89\x8d\x92\x8b\x8f\x94\x8f\x93\x98\x8d\x91\x96\x8e\ \x92\x96\x8e\x93\x96\x8f\x94\x98\x8e\x92\x96\x8f\x93\x97\x90\x95\ \x99\x90\x95\x99\x93\x96\x9a\x94\x97\x9c\x99\x9c\xa0\x9a\x9d\xa2\ \x9b\x9e\xa3\x9d\xa0\xa5\x9c\x9f\xa4\x9b\x9e\xa2\x9c\x9f\xa3\x9b\ \x9e\xa2\xa0\xa3\xa7\x9c\x9f\xa3\x6e\x73\x77\x77\x7a\x7e\x6e\x71\ \x76\x7a\x7d\x7f\x68\x6c\x6f\x66\x69\x6c\x7f\x80\x81\x93\x94\x93\ \x62\x67\x69\x57\x59\x5d\x8f\x8c\x8d\xa5\xa3\xa3\xa8\xa7\xa8\xa2\ \xa3\xa4\x9e\xa1\xa3\xab\xab\xac\xb0\xb0\xb2\xae\xad\xaf\xab\xaa\ \xac\xb1\xb0\xb2\xad\xac\xae\x93\x94\x96\x83\x85\x86\x9f\x9f\x9f\ \xb2\xb1\xb2\xb1\xb1\xb3\x9d\x9f\xa0\x85\x88\x88\x9c\x9c\x9c\xa9\ \xaa\xaa\xb3\xb2\xb2\xb3\xb2\xb2\x90\x8e\x8e\x81\x7f\x7f\xaa\xab\ \xab\xb5\xb5\xb6\xbb\xbb\xbd\xa7\xa7\xa9\x82\x82\x82\x9a\x97\x97\ \xb7\xb4\xb4\xbb\xb9\xb9\xbf\xbe\xbf\xab\xac\xac\x81\x81\x82\x9b\ \x99\x98\xbc\xb9\xba\xbd\xba\xbc\xc1\xbf\xc1\xc1\xbf\xc2\x00\x00\ \x00\xe2\xdb\xd7\xe0\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\ \xe1\xda\xd6\xe1\xd9\xd6\xdf\xd8\xd4\xd9\xd0\xcd\xd9\xd0\xcd\xde\ \xd6\xd3\xe2\xdb\xda\xe5\xe0\xde\xe5\xe1\xde\xe5\xe0\xde\xe3\xde\ \xdd\xe2\xdd\xdb\xe2\xdb\xd8\xe0\xd9\xd6\xdb\xd5\xd2\xd7\xd2\xd0\ \xcf\xca\xc9\xc6\xc0\xc0\xb8\xb4\xb3\x9d\x99\x98\x77\x7a\x78\x51\ \x58\x5b\x35\x3f\x46\x37\x41\x46\x5f\x60\x64\x7d\x7b\x7c\x90\x8e\ \x8e\x9c\x99\x9a\xa2\xa0\xa1\xa5\xa4\xa4\xa7\xa5\xa7\xa8\xa5\xa7\ \xa7\xa5\xa7\xa5\xa4\xa6\xa2\xa1\xa3\xa2\xa2\xa3\x9f\x9f\xa2\x98\ \x9a\x9c\x8d\x91\x92\x86\x89\x8d\x7f\x82\x86\x7a\x7e\x7f\x69\x6e\ \x6f\x42\x4a\x51\x29\x2f\x38\x3e\x41\x48\x58\x5c\x60\x5a\x5e\x62\ \x66\x69\x6d\x76\x79\x7d\x81\x84\x89\x81\x87\x8c\x7f\x85\x8a\x80\ \x87\x8c\x7f\x86\x8d\x7e\x86\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ \x8b\x7a\x82\x89\x7b\x82\x89\x79\x81\x88\x77\x7e\x85\x72\x79\x7f\ \x71\x79\x80\x6e\x76\x7b\x65\x6d\x71\x67\x6f\x76\x64\x6e\x75\x68\ \x6e\x75\x74\x7a\x7f\x74\x7b\x81\x6e\x75\x7c\x74\x7b\x81\x77\x7e\ \x83\x6f\x77\x7c\x70\x78\x7d\x7b\x80\x85\x75\x7b\x7e\x70\x74\x79\ \x7b\x80\x84\x86\x8a\x8f\x88\x8d\x91\x87\x8b\x90\x88\x8c\x91\x88\ \x8d\x92\x8a\x90\x96\x8d\x92\x97\x8d\x93\x97\x8b\x92\x97\x8e\x94\ \x97\x8e\x93\x96\x90\x94\x99\x90\x95\x99\x8f\x93\x97\x90\x94\x97\ \x92\x95\x99\x93\x96\x9a\x97\x9a\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9b\ \x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa3\x9e\xa1\xa5\x9e\xa1\xa5\xa3\xa5\ \xa9\x89\x8c\x90\x5a\x61\x65\x86\x88\x8c\x92\x94\x98\x64\x68\x6c\ \x45\x4b\x4f\x93\x94\x95\x89\x8a\x8b\x5d\x60\x62\x55\x5c\x60\x83\ \x87\x89\x7b\x79\x78\x80\x7b\x7b\xa0\x9e\x9f\xab\xa9\xac\xac\xaa\ \xac\xac\xab\xad\xad\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xae\xad\xaf\ \xae\xae\xaf\xae\xae\xaf\x99\x9c\x9d\x85\x87\x88\x94\x94\x95\xaa\ \xa9\xab\xb0\xb2\xb3\xac\xad\xae\x84\x83\x85\x8e\x8d\x8d\xaa\xa8\ \xa8\xb1\xaf\xaf\xb2\xb0\xb0\x9b\x9b\x9b\x81\x82\x82\x99\x99\x9a\ \xb6\xb5\xb5\xba\xba\xba\xb7\xb6\xb7\x94\x94\x94\x8f\x8c\x8c\xa9\ \xa5\xa6\xb9\xb6\xb6\xc1\xbe\xbe\xb8\xb7\xb7\x8f\x8f\x8f\x90\x90\ \x92\xb1\xaf\xaf\xbe\xbc\xbe\xc4\xc3\xc5\x00\x00\x00\xe0\xd8\xd5\ \xe0\xd9\xd6\xe0\xd8\xd4\xde\xd5\xd0\xdc\xd3\xce\xdb\xd1\xcc\xdb\ \xd1\xcc\xdb\xd1\xcd\xd7\xce\xc9\xd7\xce\xcb\xdc\xd4\xd1\xe2\xdc\ \xda\xe6\xe2\xdf\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdc\xd9\ \xe0\xdb\xd8\xde\xd8\xd6\xda\xd5\xd3\xd5\xd0\xcf\xcd\xc8\xc7\xc1\ \xbb\xbc\xae\xa9\xa9\x8f\x8e\x8d\x67\x6d\x6c\x46\x4f\x53\x36\x40\ \x46\x4a\x4e\x55\x6d\x6b\x6e\x87\x83\x84\x95\x91\x92\x9e\x9b\x9c\ \xa4\xa1\xa3\xa6\xa5\xa6\xa6\xa6\xa7\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ \xa3\xa5\xa2\xa2\xa4\x9e\xa0\xa2\x9c\x9d\xa1\x95\x96\x99\x8b\x8e\ \x91\x84\x87\x8b\x80\x83\x87\x7b\x7e\x80\x6a\x6f\x71\x3f\x47\x4d\ \x22\x2a\x32\x2f\x34\x3c\x3e\x41\x4a\x55\x59\x5e\x66\x69\x6e\x73\ \x76\x7b\x7b\x7e\x82\x83\x87\x8c\x80\x87\x8c\x7f\x85\x8c\x7e\x85\ \x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x83\x8a\x7a\x82\x89\ \x7b\x83\x8a\x7b\x84\x8b\x7b\x82\x89\x7a\x82\x89\x7c\x84\x8b\x76\ \x7e\x84\x6e\x76\x7c\x6e\x76\x7b\x73\x7b\x82\x6f\x77\x7d\x6e\x75\ \x7c\x76\x7d\x83\x71\x7a\x7f\x6d\x75\x7b\x75\x7c\x81\x77\x80\x84\ \x6c\x74\x79\x76\x7a\x7e\x7c\x80\x83\x77\x7b\x7e\x70\x73\x78\x7d\ \x81\x86\x88\x8d\x91\x8b\x8f\x93\x8a\x8f\x93\x87\x8d\x91\x89\x8d\ \x92\x8b\x8f\x94\x8c\x91\x94\x8c\x92\x95\x8c\x91\x94\x8f\x93\x97\ \x92\x97\x9b\x93\x98\x9b\x8e\x93\x96\x91\x95\x98\x93\x97\x9a\x91\ \x95\x98\x96\x99\x9d\x9a\x9d\xa1\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\ \xa2\x9d\xa0\xa4\x9f\xa2\xa6\xa0\xa3\xa7\x9e\xa0\xa4\x74\x79\x7d\ \x71\x78\x7b\x77\x7b\x7f\x8e\x8f\x93\x6e\x72\x76\x58\x5c\x60\x80\ \x80\x82\x9a\x99\x9b\x68\x6b\x6e\x4b\x51\x54\x8d\x8f\x8e\x65\x63\ \x62\x25\x20\x1f\x65\x5d\x5d\x9e\x9a\x9c\xa9\xa8\xaa\xa8\xa7\xa9\ \xab\xaa\xac\xaf\xae\xb0\xb0\xaf\xb0\xae\xae\xaf\xae\xae\xae\xad\ \xac\xae\xb1\xb0\xb2\xa7\xa7\xa9\x8a\x8a\x8c\x8f\x8e\x90\xa7\xa5\ \xa7\xb5\xb4\xb5\xb3\xb3\xb3\x93\x93\x94\x84\x84\x85\xa0\x9f\x9f\ \xb1\xaf\xaf\xb5\xb4\xb4\xac\xad\xac\x91\x91\x91\x90\x90\x91\xa8\ \xa9\xa9\xb8\xb6\xb7\xba\xb8\xb8\xa1\x9e\x9d\x89\x87\x87\x9f\x9c\ \x9f\xb2\xaf\xb0\xb9\xb7\xb7\xc2\xc1\xc1\xa9\xa9\xab\x8a\x8a\x8c\ \x9f\x9d\x9f\xb8\xb6\xb8\x00\x00\x00\xdd\xd4\xd0\xdc\xd2\xce\xd8\ \xce\xc9\xd5\xca\xc3\xd3\xc7\xc0\xd3\xc8\xc1\xd8\xcd\xc8\xd9\xcf\ \xcb\xd9\xcf\xcb\xd9\xd1\xce\xdf\xd6\xd1\xe3\xdc\xd9\xe5\xe0\xdd\ \xe5\xe0\xdf\xe4\xdf\xde\xe4\xdf\xde\xe2\xdd\xdc\xdf\xda\xd9\xdc\ \xd7\xd5\xd7\xd2\xd0\xd1\xcc\xcb\xc9\xc4\xc3\xbb\xb5\xb6\xa5\xa2\ \xa2\x82\x83\x84\x59\x61\x63\x37\x42\x47\x39\x42\x48\x57\x59\x5d\ \x78\x75\x77\x8d\x89\x8a\x9a\x95\x96\xa1\x9d\x9d\xa7\xa3\xa5\xa6\ \xa5\xa6\xa6\xa5\xa6\xa7\xa6\xa8\xa6\xa5\xa6\xa4\xa3\xa5\xa1\xa0\ \xa2\x9d\x9e\xa1\x9c\x9d\xa1\x92\x94\x98\x89\x8c\x90\x86\x89\x8d\ \x83\x86\x8a\x7e\x82\x84\x6a\x6f\x72\x48\x51\x55\x2c\x33\x3c\x27\ \x2c\x36\x1c\x20\x2a\x3e\x43\x4b\x5e\x61\x65\x70\x74\x78\x77\x7a\ \x7e\x7e\x83\x87\x81\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8c\ \x7c\x84\x8c\x7d\x85\x8d\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\ \x84\x8b\x7e\x87\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x85\x8c\x73\x7b\ \x82\x71\x79\x80\x71\x78\x7e\x74\x7b\x81\x6e\x76\x7d\x6f\x76\x7d\ \x77\x7e\x85\x72\x7b\x82\x6f\x78\x7e\x76\x7f\x84\x67\x6f\x73\x53\ \x56\x5a\x70\x6f\x73\x7e\x81\x85\x72\x76\x7b\x71\x76\x79\x83\x87\ \x8b\x8c\x92\x94\x8b\x91\x94\x8a\x8f\x92\x89\x8e\x91\x88\x8d\x90\ \x89\x8e\x91\x8d\x92\x95\x8c\x92\x95\x8f\x94\x97\x92\x97\x9a\x94\ \x99\x9c\x92\x97\x9a\x90\x94\x98\x90\x94\x97\x95\x98\x9b\x97\x9a\ \x9e\x9c\x9f\xa3\x9b\x9f\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\xa5\ \xa0\xa2\xa6\x9f\xa1\xa3\x8f\x92\x94\x70\x75\x78\x86\x88\x8b\x93\ \x95\x98\x6f\x72\x75\x4f\x54\x58\x8d\x8f\x90\x84\x84\x84\x59\x58\ \x5b\x5b\x5c\x5f\x7f\x80\x81\x82\x83\x81\x33\x36\x36\x00\x00\x00\ \x19\x17\x19\x71\x6d\x70\x94\x92\x94\xa8\xa7\xa7\xac\xac\xad\xab\ \xab\xac\xae\xad\xaf\xaf\xae\xb0\xb2\xb2\xb2\xaf\xae\xb0\xaf\xae\ \xb0\xb5\xb4\xb6\xb2\xb1\xb3\x98\x97\x99\x90\x8f\x91\x9f\x9d\x9e\ \xb4\xb1\xb1\xb6\xb6\xb7\x9f\xa0\xa1\x8c\x8d\x8d\x9c\x9b\x9b\xaa\ \xa9\xa9\xba\xb9\xb9\xba\xba\xba\x9d\x9e\x9e\x8c\x8d\x8e\xa2\xa1\ \xa1\xb6\xb3\xb2\xbc\xb9\xb7\xae\xae\xad\x90\x90\x92\x8e\x8b\x8e\ \xa5\xa2\xa3\xba\xb8\xb8\xbf\xbe\xbf\xb6\xb6\xb7\x96\x97\x98\x8b\ \x8b\x8d\x00\x00\x00\xd4\xc9\xc2\xd1\xc5\xbf\xd0\xc4\xbd\xcf\xc5\ \xbe\xd0\xc5\xbf\xd1\xc7\xc1\xd5\xcb\xc7\xd7\xcd\xc9\xd8\xce\xca\ \xdb\xd3\xcf\xe1\xd8\xd5\xe5\xde\xdb\xe5\xe0\xdd\xe4\xdf\xdd\xe4\ \xdf\xde\xe4\xdf\xde\xe1\xdc\xdb\xdf\xda\xd8\xdb\xd6\xd4\xd6\xd0\ \xcd\xcf\xca\xc7\xc5\xc0\xbf\xb5\xb0\xb0\x99\x98\x98\x74\x77\x7a\ \x4e\x57\x5b\x31\x3d\x42\x41\x49\x50\x63\x62\x66\x82\x7d\x7f\x92\ \x8e\x8f\x9d\x9a\x9b\xa3\xa1\xa2\xa8\xa6\xa8\xa7\xa5\xa7\xa6\xa5\ \xa7\xa7\xa6\xa8\xa5\xa4\xa6\xa3\xa3\xa4\x9f\x9f\xa1\x9a\x9b\x9e\ \x97\x98\x9c\x90\x93\x97\x88\x8b\x8f\x88\x8b\x8f\x85\x88\x8c\x7f\ \x82\x86\x66\x6c\x6f\x50\x57\x5c\x41\x46\x4e\x40\x45\x4d\x34\x3a\ \x43\x3e\x45\x4f\x5e\x62\x68\x71\x75\x79\x76\x7a\x7e\x79\x7d\x82\ \x7f\x83\x88\x7e\x84\x89\x7e\x84\x8b\x7d\x85\x8d\x7b\x83\x8c\x7c\ \x84\x8c\x7d\x84\x8d\x7c\x84\x8d\x7c\x85\x8c\x7c\x84\x8b\x7e\x86\ \x8e\x7e\x86\x8d\x7d\x85\x8b\x7e\x86\x8d\x7b\x83\x8a\x74\x7c\x83\ \x6e\x76\x7d\x73\x7a\x81\x73\x7a\x81\x6c\x74\x7a\x73\x7a\x80\x79\ \x80\x86\x72\x7a\x7f\x6c\x75\x79\x4d\x57\x5d\x18\x1b\x20\x30\x2e\ \x31\x72\x70\x74\x7e\x82\x86\x76\x7b\x7e\x76\x7b\x7e\x85\x8a\x8d\ \x8c\x91\x94\x8b\x90\x93\x8a\x8f\x92\x88\x8e\x91\x8b\x90\x93\x8e\ \x93\x96\x8d\x92\x95\x8c\x91\x94\x90\x95\x98\x93\x98\x9b\x94\x99\ \x9c\x91\x95\x99\x91\x95\x97\x94\x98\x9a\x97\x9b\x9f\x9b\xa0\xa3\ \x9c\x9e\xa3\x9c\x9f\xa4\x9c\x9f\xa4\x9c\xa0\xa3\x9f\xa1\xa4\x95\ \x97\x99\x72\x77\x7a\x78\x7c\x7e\x79\x7d\x7e\x87\x89\x8a\x6e\x73\ \x75\x54\x59\x5c\x80\x83\x84\x62\x62\x64\x0f\x0e\x10\x27\x26\x27\ \x84\x83\x83\x9d\x9e\x9d\x50\x57\x58\x0f\x16\x17\x45\x49\x4d\x8d\ \x89\x8b\x7a\x77\x78\x86\x85\x86\xa6\xa4\xa5\xae\xad\xad\xad\xac\ \xad\xab\xaa\xac\xb0\xaf\xb0\xaf\xaf\xaf\xb0\xaf\xb1\xb1\xb0\xb2\ \xb1\xb0\xb2\xb3\xb3\xb5\xa4\xa4\xa6\x8b\x8a\x8d\x99\x98\x9a\xa9\ \xa9\xaa\xb3\xb2\xb4\xaf\xad\xb0\x98\x96\x98\x90\x90\x90\xa1\xa1\ \xa1\xb8\xb6\xb6\xb9\xb7\xb7\xaa\xa9\xaa\x95\x95\x96\x94\x94\x94\ \xaa\xa8\xa7\xbc\xbb\xba\xba\xb9\xb9\xa1\x9e\x9f\x91\x8f\x91\x98\ \x97\x98\xb3\xb2\xb3\xc1\xc1\xc1\xc0\xc0\xc1\xa8\xa9\xaa\x00\x00\ \x00\xcb\xbf\xb7\xcb\xc1\xba\xcc\xc2\xbb\xd0\xc6\xc0\xd2\xc8\xc3\ \xd5\xcc\xc7\xd9\xd0\xcc\xd9\xd0\xcc\xdb\xd2\xce\xdf\xd8\xd4\xe2\ \xdb\xd8\xe6\xe0\xdd\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\xdc\xe3\xde\ \xdd\xe0\xda\xd9\xde\xd8\xd7\xd9\xd4\xd2\xd4\xce\xcb\xcc\xc6\xc4\ \xbf\xba\xb8\xab\xa7\xa6\x8b\x8c\x8d\x67\x6b\x6f\x41\x4b\x50\x34\ \x3f\x46\x4a\x51\x58\x6e\x6b\x6e\x89\x84\x85\x97\x94\x95\xa0\x9e\ \x9f\xa5\xa3\xa4\xa7\xa5\xa8\xa7\xa5\xa8\xa7\xa6\xa8\xa6\xa5\xa7\ \xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9a\x9e\x91\x92\x96\x8b\ \x8e\x92\x86\x89\x8d\x89\x8c\x90\x88\x8b\x8f\x7c\x7f\x83\x63\x67\ \x6c\x4f\x55\x5b\x50\x55\x5c\x5f\x63\x68\x5e\x65\x6a\x5a\x62\x69\ \x6a\x6f\x75\x72\x76\x7b\x77\x7c\x7f\x73\x78\x7b\x79\x7d\x81\x7d\ \x81\x88\x7d\x83\x8a\x7e\x85\x8c\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ \x8c\x7c\x84\x8c\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8c\x7d\x85\x8b\ \x7b\x83\x8a\x7e\x86\x8d\x7e\x86\x8d\x79\x81\x88\x73\x7b\x82\x6f\ \x77\x7e\x75\x7c\x83\x75\x7d\x83\x6f\x78\x7d\x76\x7d\x82\x7a\x81\ \x85\x6f\x77\x7b\x3c\x49\x51\x04\x07\x0a\x01\x00\x01\x3d\x3b\x3f\ \x7b\x7c\x80\x82\x85\x89\x77\x7c\x7f\x76\x7b\x7f\x84\x89\x8c\x8a\ \x8f\x92\x8c\x91\x94\x8b\x91\x94\x8c\x91\x94\x8d\x91\x95\x8c\x91\ \x94\x8d\x91\x95\x8f\x94\x97\x90\x95\x98\x94\x99\x9c\x93\x96\x99\ \x92\x97\x99\x93\x97\x9a\x95\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\x99\ \x9c\xa1\x99\x9c\xa0\x95\x98\x9c\x87\x89\x8c\x89\x8b\x8c\x70\x76\ \x79\x7f\x83\x86\x89\x8d\x8e\x71\x75\x76\x5d\x64\x68\x81\x84\x86\ \x89\x8c\x8d\x43\x4a\x4d\x00\x00\x00\x1f\x20\x21\x6d\x6f\x70\x7b\ \x7e\x7e\x63\x6d\x6e\x5e\x68\x6c\x77\x7b\x7f\x98\x95\x95\x75\x72\ \x73\x6b\x6b\x6d\x86\x84\x85\xa5\xa2\xa2\xad\xab\xab\xa9\xa8\xaa\ \xab\xaa\xab\xad\xac\xad\xb1\xb0\xb2\xb0\xaf\xb1\xb0\xaf\xb1\xb2\ \xb1\xb3\xb5\xb5\xb6\xab\xac\xae\x97\x97\x9b\x8c\x8d\x8e\xa1\xa0\ \xa1\xb5\xb2\xb4\xb8\xb5\xb7\xa2\xa0\xa1\x8f\x8e\x8f\x9a\x97\x98\ \xae\xaa\xaa\xbe\xbc\xbd\xb5\xb5\xb6\x97\x98\x98\x8f\x8f\x8f\x9f\ \x9e\x9e\xb6\xb4\xb4\xc0\xbd\xbe\xb6\xb5\xb7\x99\x98\x9b\x92\x91\ \x93\xa5\xa3\xa4\xbc\xbb\xbb\xc3\xc2\xc4\x00\x00\x00\xcc\xc2\xbb\ \xd0\xc6\xc0\xd4\xca\xc4\xd8\xce\xca\xdb\xd2\xcf\xdd\xd5\xd1\xdd\ \xd4\xd1\xdc\xd4\xd0\xdd\xd5\xd1\xdf\xd8\xd5\xe4\xdd\xda\xe6\xe0\ \xdc\xe4\xdf\xdd\xe4\xde\xdb\xe3\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\ \xdc\xd6\xd5\xd8\xd2\xd1\xd2\xcc\xca\xc7\xc1\xbe\xba\xb4\xb0\xa1\ \x9f\x9c\x7e\x80\x80\x5a\x60\x64\x38\x42\x49\x38\x41\x48\x58\x5b\ \x60\x7a\x76\x78\x90\x8b\x8c\x9b\x99\x99\xa2\xa0\xa0\xa6\xa4\xa5\ \xa8\xa6\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa4\xa2\ \xa1\xa4\x9e\x9d\xa1\x98\x99\x9d\x91\x92\x96\x89\x8b\x8f\x89\x8b\ \x8f\x8c\x8e\x92\x89\x8c\x90\x79\x7c\x80\x5e\x63\x69\x48\x4f\x57\ \x51\x57\x5e\x67\x6c\x70\x73\x79\x7c\x70\x76\x7a\x76\x7a\x7f\x76\ \x7a\x7f\x75\x79\x7d\x72\x77\x7a\x73\x77\x7c\x7c\x80\x85\x7c\x81\ \x86\x7d\x83\x89\x7c\x83\x8a\x7b\x83\x8a\x7c\x84\x8c\x7a\x83\x8a\ \x7c\x83\x8a\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\ \x85\x8c\x7c\x85\x8d\x7f\x87\x90\x78\x81\x88\x70\x78\x80\x70\x78\ \x7f\x77\x7e\x84\x74\x7b\x80\x6f\x76\x7a\x77\x7d\x81\x79\x80\x83\ \x4d\x5e\x66\x08\x10\x15\x00\x00\x00\x14\x15\x17\x62\x62\x66\x7d\ \x80\x84\x83\x87\x8b\x76\x7c\x7f\x76\x7b\x7e\x84\x8a\x8d\x8c\x91\ \x94\x8d\x92\x95\x8c\x91\x94\x8a\x8f\x92\x8a\x8f\x92\x8e\x93\x96\ \x92\x97\x9b\x92\x97\x9a\x95\x98\x9c\x95\x98\x9c\x96\x99\x9d\x98\ \x9c\x9f\x98\x9c\xa0\x99\x9c\xa1\x99\x9c\xa0\x98\x9b\x9f\x98\x9b\ \x9f\x92\x95\x99\x72\x75\x79\x7e\x82\x84\x92\x96\x97\x93\x96\x97\ \x86\x89\x8b\x71\x77\x7a\x69\x6f\x73\x7c\x80\x83\x94\x98\x99\x6c\ \x75\x76\x1d\x29\x2c\x4b\x52\x55\x91\x94\x95\x63\x68\x6a\x4c\x53\ \x56\x8e\x91\x92\x99\x9b\x9d\x75\x75\x79\x50\x4f\x53\x94\x95\x95\ \x86\x85\x85\x64\x5f\x62\x98\x93\x94\xb1\xb0\xb0\xab\xab\xac\xad\ \xac\xae\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb1\xb0\ \xb2\xb3\xb3\xb5\xb4\xb4\xb6\x9d\x9f\xa0\x8b\x8c\x8c\x95\x93\x95\ \xb5\xb1\xb3\xb8\xb6\xb7\xaf\xaf\xaf\x96\x94\x96\x8e\x8b\x8e\xa6\ \xa2\xa4\xbb\xb8\xb9\xba\xb9\xb9\xa9\xa9\xa9\x93\x94\x94\x8d\x8e\ \x8e\xae\xac\xae\xc0\xbe\xbf\xbf\xbe\xbf\xa6\xa5\xa7\x96\x95\x95\ \x97\x95\x95\xb3\xb0\xb1\x00\x00\x00\xd8\xd1\xcd\xdb\xd2\xce\xdc\ \xd3\xcf\xdd\xd5\xd2\xde\xd7\xd4\xde\xd7\xd4\xdc\xd5\xd2\xdc\xd5\ \xd2\xdd\xd6\xd3\xe1\xda\xd7\xe5\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\ \xe4\xde\xdb\xe2\xdd\xdc\xe0\xdb\xda\xde\xd9\xd8\xda\xd4\xd4\xd7\ \xd0\xd0\xcf\xc8\xc7\xc2\xbc\xba\xb3\xae\xaa\x95\x94\x91\x6e\x71\ \x71\x4b\x53\x58\x37\x40\x46\x43\x48\x4e\x68\x66\x69\x83\x7e\x7f\ \x95\x90\x91\x9f\x9d\x9d\xa3\xa0\xa1\xa7\xa5\xa7\xa8\xa6\xa8\xa7\ \xa6\xa9\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa5\xa2\xa1\xa5\x9d\x9d\ \xa1\x95\x95\x99\x8e\x8f\x93\x8b\x8c\x90\x8a\x8b\x8f\x8c\x8e\x92\ \x88\x8a\x8e\x76\x79\x7d\x5e\x63\x69\x47\x4e\x56\x52\x57\x5e\x69\ \x6d\x72\x77\x7c\x7f\x78\x7e\x81\x75\x7a\x7d\x77\x7b\x80\x72\x76\ \x7b\x72\x76\x7b\x72\x76\x7b\x76\x7a\x7f\x7c\x80\x85\x7c\x82\x87\ \x7b\x81\x88\x7c\x83\x8b\x7d\x84\x8b\x7b\x83\x8a\x7b\x83\x8a\x7b\ \x82\x8a\x7c\x85\x8b\x7c\x85\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x85\ \x8c\x7e\x87\x90\x7e\x87\x90\x78\x81\x88\x70\x78\x7e\x71\x79\x7e\ \x77\x7e\x82\x73\x79\x7e\x70\x77\x7b\x79\x80\x84\x6e\x7b\x81\x2b\ \x44\x4e\x00\x04\x06\x09\x0d\x10\x59\x5c\x61\x75\x78\x7c\x7f\x83\ \x87\x84\x89\x8c\x77\x7d\x81\x76\x7c\x80\x85\x8a\x8d\x8f\x93\x97\ \x8f\x94\x98\x8c\x91\x94\x8c\x91\x95\x8e\x93\x96\x93\x97\x9b\x93\ \x98\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\x9e\x9b\x9e\xa3\x9e\xa1\ \xa5\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\xa2\x9b\x9d\xa1\x95\x97\x9b\ \x71\x77\x7a\x73\x77\x7a\x96\x99\x9a\x9a\x9c\x9c\x89\x8b\x8c\x73\ \x77\x7a\x71\x76\x78\x7e\x83\x87\x76\x7b\x7f\x5d\x65\x68\x6a\x73\ \x78\x7e\x84\x87\x82\x86\x87\x69\x6f\x70\x64\x6a\x6b\x7d\x7e\x7e\ \x9c\x9d\x9e\x77\x7a\x7d\x56\x59\x5c\x84\x83\x84\x75\x74\x73\x11\ \x0f\x11\x47\x44\x46\xa9\xa8\xaa\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\ \xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\ \xb1\xb1\xb2\xb3\xb5\xb6\xa7\xa9\xaa\x98\x98\x99\x8d\x8b\x8d\xa7\ \xa6\xa6\xba\xba\xb9\xb3\xb2\xb5\xa1\xa0\xa3\x8f\x8c\x90\x9b\x97\ \x99\xb8\xb5\xb6\xbf\xbd\xbd\xb3\xb2\xb2\x99\x9a\x9a\x8a\x89\x8b\ \x9a\x99\x9a\xbb\xb9\xba\xc1\xbf\xc1\xb5\xb5\xb5\xa2\xa0\xa0\x95\ \x92\x93\x00\x00\x00\xdd\xd6\xd3\xdd\xd5\xd2\xde\xd6\xd3\xdf\xd8\ \xd5\xdf\xd8\xd5\xde\xd7\xd4\xdc\xd6\xd3\xdd\xd5\xd2\xdf\xd8\xd5\ \xe2\xdb\xd8\xe5\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe3\xdd\xda\xe2\ \xdc\xda\xe0\xd9\xd9\xdd\xd6\xd6\xd9\xd2\xd1\xd4\xcd\xcc\xcc\xc4\ \xc4\xbf\xb8\xb8\xaa\xa5\xa3\x8a\x8a\x87\x63\x67\x6a\x3f\x47\x4f\ \x37\x40\x48\x51\x53\x58\x72\x6e\x70\x8a\x85\x84\x98\x95\x95\xa1\ \x9f\x9f\xa6\xa3\xa4\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa5\xa7\xa5\xa4\ \xa6\xa3\xa2\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9e\x9d\x9f\x93\x93\x96\ \x8c\x8d\x91\x8b\x8c\x90\x8b\x8c\x90\x8c\x8d\x91\x85\x88\x8c\x73\ \x77\x7a\x5f\x64\x6a\x51\x57\x5e\x5a\x5f\x64\x6c\x70\x74\x74\x79\ \x7c\x78\x7d\x80\x74\x79\x7b\x75\x79\x7d\x74\x78\x7d\x70\x74\x79\ \x71\x75\x7a\x71\x74\x79\x79\x7d\x83\x7b\x81\x86\x7c\x82\x88\x7e\ \x84\x8a\x7c\x84\x89\x7a\x83\x87\x7b\x83\x89\x7b\x82\x88\x7d\x84\ \x8a\x7d\x85\x8c\x7c\x85\x8c\x7e\x85\x8d\x7c\x83\x8b\x7f\x87\x90\ \x7f\x88\x91\x7c\x85\x8b\x75\x7e\x84\x6f\x78\x7e\x73\x7a\x7f\x79\ \x7f\x84\x74\x7a\x80\x71\x79\x7f\x7c\x83\x88\x67\x79\x81\x25\x3c\ \x44\x16\x27\x2f\x65\x6b\x6f\x7a\x7e\x81\x77\x7d\x7f\x80\x86\x89\ \x82\x88\x8d\x76\x7c\x81\x75\x7a\x7d\x87\x8b\x8e\x8e\x93\x96\x8f\ \x93\x96\x90\x95\x98\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x93\x98\ \x9b\x98\x9c\xa0\x98\x9b\x9e\x99\x9c\xa0\x9b\x9f\xa1\x99\x9d\x9f\ \x9a\x9d\xa0\x9b\x9e\xa2\x9a\x9d\xa0\x97\x99\x9b\x79\x7e\x7f\x6b\ \x6f\x71\x6b\x6e\x70\x56\x59\x5c\x7c\x7e\x80\x86\x88\x89\x7e\x82\ \x85\x97\x9a\x9f\x8a\x8f\x93\x68\x70\x73\x81\x84\x85\xa0\xa0\xa2\ \x6f\x73\x75\x51\x56\x58\x8b\x8e\x8e\x8b\x8d\x8c\x58\x57\x55\x56\ \x54\x54\x95\x96\x96\x8e\x8e\x8f\x5b\x60\x63\x00\x00\x00\x0d\x0e\ \x13\x8b\x8d\x93\xb1\xb0\xb2\xaf\xaf\xb0\xae\xae\xaf\xae\xae\xaf\ \xad\xac\xae\xaf\xae\xb0\xb4\xb3\xb4\xb5\xb4\xb5\xb2\xb1\xb2\xb3\ \xb4\xb5\xb4\xb6\xb7\xb4\xb6\xb6\x9b\x9d\x9e\x8e\x8f\x90\x99\x99\ \x99\xb5\xb3\xb4\xbb\xb8\xba\xae\xab\xae\x9a\x97\x99\x90\x8e\x90\ \xaa\xa7\xa6\xbc\xb9\xb8\xb8\xb6\xb6\xa7\xa5\xa6\x93\x92\x94\x8d\ \x8b\x8b\xb0\xad\xaf\xc1\xbe\xbf\xbf\xbc\xbe\xb1\xad\xae\x00\x00\ \x00\xdf\xd7\xd5\xdf\xd7\xd5\xdf\xd8\xd5\xde\xd7\xd5\xde\xd7\xd4\ \xdf\xd7\xd4\xde\xd7\xd4\xdd\xd5\xd2\xe0\xd8\xd5\xe4\xdc\xd9\xe5\ \xdf\xdc\xe5\xdf\xdc\xe3\xde\xdb\xe2\xdd\xda\xe1\xdb\xd9\xdf\xd8\ \xd7\xdc\xd5\xd5\xd8\xd1\xd1\xd2\xca\xca\xc7\xc0\xc0\xb8\xb2\xb0\ \xa0\x9c\x99\x7d\x7d\x7d\x57\x5b\x61\x3b\x42\x4b\x40\x47\x4f\x5c\ \x5d\x63\x7d\x78\x7a\x90\x8b\x8b\x9c\x99\x99\xa3\xa0\xa2\xa7\xa4\ \xa6\xa7\xa5\xa7\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa4\xa5\xa3\xa2\xa4\ \xa0\x9f\xa2\x9f\x9e\xa0\x99\x98\x9b\x90\x91\x95\x8d\x8e\x92\x8c\ \x8d\x91\x8c\x8d\x91\x8c\x8d\x91\x83\x86\x89\x6b\x71\x74\x51\x59\ \x5f\x52\x59\x60\x60\x66\x6b\x70\x75\x78\x75\x7a\x7d\x77\x7c\x7f\ \x75\x7a\x7d\x73\x77\x7b\x77\x7b\x80\x71\x75\x79\x70\x74\x79\x6f\ \x73\x78\x71\x76\x79\x79\x7f\x83\x7d\x83\x88\x7c\x82\x88\x7c\x83\ \x89\x7b\x82\x87\x7b\x81\x87\x7c\x84\x89\x7d\x85\x8b\x7c\x83\x8a\ \x7c\x84\x8b\x7f\x87\x8f\x7d\x84\x8d\x7e\x85\x8e\x7f\x86\x8f\x80\ \x87\x8e\x7c\x84\x8b\x74\x7d\x84\x6e\x76\x7c\x76\x7c\x82\x7a\x81\ \x87\x72\x7a\x80\x74\x7b\x7f\x7f\x86\x8b\x5d\x6c\x74\x3e\x50\x59\ \x6a\x70\x74\x78\x7e\x81\x6a\x71\x76\x74\x79\x7e\x80\x86\x8b\x84\ \x89\x8e\x76\x7c\x81\x77\x7c\x80\x85\x8a\x8d\x8e\x93\x96\x8f\x94\ \x97\x91\x95\x98\x90\x95\x99\x93\x97\x9a\x92\x96\x99\x97\x9b\x9e\ \x98\x9c\x9f\x99\x9c\x9f\x99\x9d\x9e\x99\x9d\x9e\x9a\x9e\xa1\x9b\ \x9e\xa2\x9b\x9e\xa1\x9c\x9f\xa0\x7b\x7e\x80\x42\x44\x48\x1f\x24\ \x29\x37\x3f\x44\x7e\x80\x82\x9c\x9d\x9e\x9f\xa0\xa4\xa9\xaa\xae\ \xa4\xa6\xaa\x96\x99\x9b\x84\x87\x88\x83\x85\x86\x6f\x73\x75\x67\ \x6c\x6e\x80\x85\x86\x62\x67\x68\x15\x16\x15\x10\x0f\x0f\x76\x74\ \x74\xa6\xa7\xa7\x80\x86\x88\x38\x47\x4d\x6d\x74\x7b\xa3\xa4\xa6\ \xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb0\xb1\xb1\xaf\xaf\xb0\xb2\ \xb2\xb2\xb3\xb3\xb3\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb4\xb5\xb5\xb6\ \xb5\xb3\xb3\xb3\xb3\xb4\xb4\xab\xac\xad\x91\x91\x93\x92\x8f\x91\ \xb1\xae\xaf\xbb\xba\xbb\xb6\xb5\xb7\xa5\xa4\xa5\x8c\x8a\x8b\x9c\ \x98\x99\xb5\xb0\xb1\xb9\xb5\xb6\xb5\xb1\xb2\xa5\xa3\xa4\x8a\x87\ \x88\x99\x94\x96\xc0\xbe\xbe\xc4\xc2\xc2\x00\x00\x00\xdd\xd6\xd3\ \xdc\xd5\xd2\xdd\xd6\xd3\xde\xd7\xd4\xdf\xd9\xd6\xe0\xd9\xd6\xe1\ \xda\xd7\xe2\xdb\xd8\xe2\xdc\xd9\xe4\xde\xdb\xe5\xe0\xdd\xe5\xdf\ \xdc\xe3\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xda\xd5\xd4\ \xd5\xcf\xce\xce\xc7\xc6\xc3\xbd\xbe\xb1\xac\xaa\x93\x90\x8c\x6e\ \x71\x72\x4b\x51\x58\x39\x41\x4b\x4b\x4f\x58\x6d\x6c\x70\x85\x83\ \x83\x95\x93\x93\x9f\x9a\x9c\xa4\xa1\xa3\xa6\xa3\xa5\xa6\xa4\xa6\ \xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9d\ \x9c\x9e\x95\x96\x98\x8d\x8e\x92\x8e\x8f\x93\x8b\x8c\x90\x8e\x8f\ \x93\x8c\x8f\x93\x82\x87\x8a\x68\x70\x74\x4e\x59\x60\x4f\x58\x5f\ \x66\x6d\x71\x71\x76\x79\x77\x7c\x7f\x73\x77\x7c\x76\x7a\x7f\x74\ \x78\x7c\x72\x76\x7b\x71\x75\x7a\x70\x74\x79\x71\x75\x7a\x71\x75\ \x7a\x76\x7b\x80\x7c\x81\x85\x7c\x82\x88\x7c\x82\x88\x7b\x81\x87\ \x7e\x84\x8b\x7b\x83\x88\x7c\x84\x8b\x7b\x82\x89\x7e\x85\x8d\x7e\ \x85\x8d\x7e\x85\x8e\x7f\x87\x8f\x7f\x86\x8f\x7e\x86\x8e\x7e\x86\ \x8d\x7d\x86\x8d\x74\x7c\x82\x6f\x78\x7d\x7c\x83\x8a\x7b\x83\x8a\ \x74\x7c\x81\x70\x75\x7a\x6c\x73\x79\x62\x6a\x72\x6d\x73\x79\x64\ \x6c\x73\x62\x6c\x73\x6e\x75\x7b\x77\x7c\x81\x82\x87\x8a\x83\x89\ \x8d\x75\x7b\x7e\x77\x7c\x7f\x86\x8b\x8e\x8e\x92\x95\x92\x96\x99\ \x92\x95\x99\x95\x98\x9c\x95\x99\x9c\x99\x9d\x9e\x9a\x9e\x9f\x98\ \x9b\x9d\x99\x9d\x9e\x99\x9d\x9e\x9c\x9f\xa2\x9e\xa1\xa5\x9c\x9f\ \xa3\x9c\x9f\xa2\x78\x7f\x81\x40\x4d\x52\x57\x62\x67\x82\x88\x8a\ \x9d\x9f\xa0\x97\x96\x97\x82\x80\x81\xa2\xa2\xa4\xac\xad\xb0\xa8\ \xa9\xac\x9e\xa1\xa4\x7c\x81\x85\x62\x67\x6b\x87\x8a\x8c\x9a\x9d\ \x9e\x53\x5b\x5e\x07\x07\x07\x00\x00\x01\x61\x63\x64\x78\x7b\x7b\ \x5b\x61\x64\x7a\x82\x87\xac\xad\xb2\xb4\xb3\xb5\xb1\xb0\xb2\xb0\ \xb0\xb1\xb1\xb1\xb2\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb4\xb1\xb1\ \xb1\xaf\xaf\xaf\xb6\xb6\xb6\xb6\xb5\xb6\xb6\xb6\xb7\xb4\xb3\xb5\ \xb3\xb2\xb4\xb3\xb4\xb5\xb1\xb2\xb2\x9e\x9d\x9e\x8a\x86\x88\xa2\ \x9f\xa0\xb9\xb7\xb8\xbc\xba\xba\xb2\xb2\xb2\x93\x91\x93\x87\x82\ \x84\xb0\xab\xac\xbd\xb8\xb9\xb9\xb6\xb7\xb1\xaf\xaf\x9a\x98\x99\ \x91\x8f\x90\xb4\xb2\xb2\x00\x00\x00\xdd\xd6\xd3\xdf\xd7\xd4\xdf\ \xd8\xd5\xe0\xda\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdd\xda\xe2\xdd\ \xda\xe5\xdf\xdc\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdb\xe3\xde\xdc\ \xe1\xdc\xdb\xdf\xda\xd9\xdc\xd6\xd6\xd9\xd1\xd1\xd3\xcd\xcc\xca\ \xc4\xc4\xbe\xb8\xb8\xa6\xa1\xa0\x84\x83\x81\x60\x63\x66\x42\x48\ \x51\x3a\x41\x4a\x54\x57\x5e\x76\x74\x76\x8d\x89\x8a\x99\x95\x96\ \xa1\x9d\x9f\xa4\xa0\xa2\xa7\xa4\xa6\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ \xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa3\xa0\x9e\xa1\x9a\x9a\x9c\x92\x93\ \x97\x8f\x90\x94\x8c\x8d\x91\x8a\x8b\x8f\x8d\x8f\x93\x8d\x90\x94\ \x85\x89\x8d\x70\x78\x7b\x64\x6e\x73\x60\x68\x6e\x6f\x74\x79\x73\ \x77\x7c\x75\x79\x7d\x70\x75\x79\x70\x75\x78\x74\x78\x7d\x6f\x74\ \x78\x72\x76\x7b\x6f\x73\x78\x6f\x73\x78\x70\x74\x79\x71\x75\x7a\ \x78\x7e\x83\x7d\x83\x88\x7c\x83\x89\x7c\x82\x89\x7d\x83\x89\x7d\ \x84\x8b\x7c\x84\x8b\x7d\x85\x8b\x7e\x85\x8c\x7f\x86\x8e\x7d\x84\ \x8d\x7f\x87\x8e\x7f\x88\x90\x80\x88\x90\x80\x88\x8f\x81\x89\x90\ \x7a\x82\x89\x71\x79\x7e\x70\x78\x7c\x7a\x81\x86\x7a\x80\x85\x65\ \x6d\x72\x5e\x65\x6b\x76\x7b\x80\x79\x7f\x83\x69\x71\x76\x70\x76\ \x7c\x7d\x84\x87\x75\x7c\x7f\x77\x7c\x81\x85\x8a\x8e\x84\x89\x8c\ \x76\x7b\x7e\x7a\x7f\x82\x8e\x91\x95\x92\x97\x9a\x95\x98\x9c\x94\ \x97\x9b\x95\x99\x9c\x9b\x9e\xa1\x99\x9d\x9e\x99\x9b\x9d\x98\x9b\ \x9d\x99\x9c\xa0\x9d\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\x9f\xa2\xa6\ \x96\x9b\x9e\x8a\x92\x95\x92\x97\x9a\x9c\x9e\xa0\xa3\xa5\xa6\x7b\ \x7d\x7e\x4e\x51\x53\x8e\x8c\x8d\xa3\xa1\xa3\xab\xab\xad\xa7\xa9\ \xaa\x9c\x9f\xa1\x87\x8b\x8f\x7c\x81\x83\x9b\x9d\x9e\x77\x7e\x81\ \x2f\x3c\x41\x3d\x48\x4c\x98\x9b\x9b\x87\x8b\x8c\x50\x5a\x5e\x9e\ \xa2\xa6\xb1\xb1\xb5\xb4\xb2\xb5\xb5\xb4\xb6\xb0\xaf\xb0\xb0\xaf\ \xb0\xaf\xae\xaf\xb0\xb0\xb0\xb3\xb3\xb3\xb2\xb3\xb2\xb0\xb0\xb1\ \xb5\xb4\xb6\xb2\xb1\xb3\xb7\xb6\xb8\xb7\xb6\xb8\xb5\xb4\xb6\xb2\ \xb2\xb3\xb4\xb4\xb5\xb8\xb8\xb9\xad\xab\xad\x93\x92\x94\x92\x91\ \x93\xb1\xb0\xb0\xb9\xb9\xb9\xbb\xba\xbb\xa5\xa3\xa4\x87\x85\x85\ \x9e\x9b\x9b\xbb\xb7\xb7\xbb\xba\xba\xb6\xb3\xb3\xa8\xa6\xa6\x8c\ \x8a\x8b\x00\x00\x00\xe1\xda\xd7\xe2\xdb\xd8\xe1\xdc\xda\xe1\xdc\ \xda\xe3\xdd\xdb\xe3\xde\xda\xe3\xde\xdb\xe4\xdf\xdc\xe5\xe0\xdd\ \xe5\xe0\xde\xe5\xe0\xde\xe3\xde\xdc\xe3\xde\xdc\xe0\xda\xd9\xdf\ \xd8\xd7\xdc\xd4\xd4\xd7\xd2\xd2\xcf\xc9\xc9\xc5\xbe\xbb\xb6\xb0\ \xac\x9b\x97\x95\x77\x78\x79\x53\x5a\x5f\x3c\x44\x4e\x42\x48\x51\ \x5e\x5f\x64\x7c\x79\x7a\x92\x8d\x8d\x9a\x97\x99\xa2\xa0\xa2\xa6\ \xa4\xa6\xa9\xa6\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa0\ \xa1\x9f\x9f\xa0\x9d\x9d\x9f\x98\x98\x99\x91\x92\x96\x8d\x8e\x92\ \x8b\x8d\x92\x8d\x8e\x94\x8d\x90\x94\x8c\x8f\x93\x86\x8b\x8e\x7c\ \x82\x85\x76\x7c\x7f\x72\x77\x7b\x75\x7a\x7e\x75\x7a\x7d\x73\x77\ \x7a\x6b\x70\x74\x67\x6b\x70\x6c\x71\x75\x72\x76\x7a\x6c\x71\x74\ \x6b\x6f\x74\x6b\x6f\x74\x6d\x73\x77\x6f\x76\x7a\x74\x79\x7f\x7a\ \x80\x86\x7a\x81\x87\x7d\x84\x89\x7f\x84\x8a\x7f\x86\x8d\x7d\x85\ \x8b\x7d\x85\x8c\x7e\x85\x8d\x7f\x87\x8e\x7d\x85\x8d\x7d\x85\x8c\ \x7e\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x90\x80\x88\x8f\x7b\ \x83\x89\x72\x7a\x7e\x72\x79\x7e\x7a\x80\x85\x68\x6f\x75\x5c\x64\ \x6b\x75\x7a\x80\x85\x8a\x8f\x7b\x81\x86\x74\x7a\x7f\x7f\x84\x88\ \x83\x89\x8c\x7a\x80\x84\x79\x7f\x83\x86\x8b\x8f\x85\x8a\x8d\x7b\ \x81\x83\x7e\x82\x86\x8d\x91\x94\x94\x97\x9b\x94\x97\x9b\x93\x96\ \x9a\x98\x9b\x9d\x96\x99\x9c\x96\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\ \x9b\x9e\xa2\x9b\x9e\xa2\x9e\xa1\xa5\xa2\xa4\xa9\xa0\xa4\xa6\xa1\ \xa4\xa5\xa0\xa1\xa3\x9f\xa2\xa3\x94\x97\x9a\x4b\x55\x59\x62\x67\ \x69\x80\x80\x81\x6b\x6d\x6d\xa1\x9f\xa1\xad\xac\xae\xac\xac\xad\ \xa7\xa9\xaa\x93\x97\x98\x79\x7d\x7f\x60\x67\x6b\x84\x8b\x8c\x87\ \x8b\x8c\x81\x83\x84\x69\x6f\x72\x75\x7c\x81\xae\xaf\xb2\xb2\xb2\ \xb5\xb4\xb3\xb5\xb5\xb4\xb6\xaf\xaf\xb0\xb2\xb1\xb2\xb2\xb2\xb2\ \xb1\xb1\xb1\xb4\xb4\xb4\xb3\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\ \xb3\xb5\xb3\xb2\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb5\xb6\xb3\xb3\ \xb3\xb8\xb8\xb8\xb9\xb9\xba\xb6\xb6\xb7\x9b\x9b\x9e\x8a\x88\x8a\ \xa5\xa3\xa4\xbc\xbb\xbb\xba\xb8\xb8\xb8\xb7\xb6\x91\x91\x91\x88\ \x85\x85\xb1\xad\xad\xbc\xb8\xb7\xba\xb8\xb7\xb9\xb7\xb7\x00\x00\ \x00\xe2\xdc\xd9\xe2\xdc\xd9\xe3\xdd\xdb\xe4\xde\xdc\xe3\xde\xdd\ \xe5\xe0\xdd\xe6\xe1\xde\xe6\xe1\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\ \xdf\xdd\xe4\xdf\xdd\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xdc\xd5\ \xd5\xd6\xcf\xcf\xcd\xc6\xc6\xc1\xbb\xb9\xaf\xaa\xa7\x90\x8f\x8f\ \x69\x6e\x71\x46\x51\x57\x3a\x43\x4b\x4d\x4f\x58\x6d\x6b\x6e\x86\ \x81\x84\x99\x95\x97\xa0\x9b\x9d\xa5\xa2\xa4\xa8\xa5\xa7\xa7\xa4\ \xa6\xa5\xa4\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9f\xa1\x9d\x9d\x9e\ \x9a\x9b\x9e\x93\x94\x97\x8c\x8e\x91\x89\x8c\x8e\x8a\x8d\x91\x8e\ \x92\x95\x8d\x90\x94\x8b\x8e\x92\x86\x8a\x8e\x84\x89\x8c\x80\x86\ \x89\x7f\x85\x88\x7d\x82\x85\x77\x7b\x80\x67\x6c\x71\x5a\x5f\x64\ \x52\x59\x5f\x61\x64\x69\x6b\x6e\x73\x5c\x5f\x64\x5b\x5e\x63\x61\ \x65\x6a\x6b\x70\x74\x6c\x72\x78\x6d\x73\x79\x76\x7c\x81\x7b\x81\ \x88\x7c\x82\x88\x7e\x84\x8a\x7c\x84\x8a\x7d\x86\x8b\x7e\x86\x8c\ \x7c\x85\x8a\x7c\x84\x8a\x7d\x86\x8b\x81\x89\x90\x81\x89\x90\x7e\ \x87\x8e\x7f\x87\x8e\x81\x89\x90\x80\x87\x8e\x81\x87\x8d\x7d\x83\ \x89\x74\x7a\x7f\x6c\x73\x77\x67\x6e\x73\x67\x6f\x73\x6f\x75\x7a\ \x7d\x82\x86\x86\x8b\x90\x7a\x80\x85\x76\x7b\x80\x83\x87\x8b\x85\ \x8b\x8e\x78\x7d\x81\x7a\x7e\x83\x86\x8a\x8f\x87\x8c\x8f\x7a\x7f\ \x81\x7d\x81\x85\x91\x94\x98\x93\x96\x9a\x96\x99\x9c\x98\x99\x9e\ \x96\x98\x9c\x97\x99\x9d\x97\x99\x9d\x9c\x9f\xa3\x9e\xa1\xa5\x9c\ \x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\xa0\xa3\xa7\x9e\xa1\xa4\x9f\xa2\ \xa5\xa0\xa3\xa4\x9c\xa0\xa2\x78\x80\x84\x6f\x74\x76\x57\x5c\x5d\ \x65\x67\x67\x8e\x89\x89\x93\x90\x91\xaa\xa9\xaa\xad\xae\xaf\xac\ \xad\xae\x9c\x9e\xa0\x76\x7b\x7f\x88\x8b\x8c\xa5\xa5\xa6\x82\x87\ \x87\x4e\x55\x5b\x9d\xa1\xa3\xb1\xb0\xb2\xb3\xb2\xb4\xb7\xb6\xb7\ \xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb2\xb1\xb2\xb1\xb2\xb2\xb2\xb3\ \xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\xb3\xb5\xb3\xb2\xb4\xb8\xb7\ \xb8\xb7\xb6\xb8\xb8\xb7\xb9\xb9\xb9\xba\xba\xb9\xbb\xb6\xb6\xb7\ \xba\xb9\xba\xba\xb9\xbb\xbe\xbd\xbe\xac\xab\xad\x8c\x8b\x8d\x9e\ \x9c\x9c\xb5\xb4\xb3\xbc\xbb\xba\xbd\xbb\xba\xa8\xa7\xa7\x87\x86\ \x84\x9b\x98\x94\xba\xb6\xb4\xbf\xbb\xba\x00\x00\x00\xe4\xde\xdb\ \xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\ \xe0\xde\xe6\xe1\xdf\xe5\xe0\xde\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\ \xdd\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd7\xd6\xd9\xd3\xd2\xd3\xcd\xcd\ \xca\xc5\xc4\xbb\xb7\xb6\xa5\xa2\xa2\x82\x83\x86\x5a\x61\x65\x3b\ \x47\x4d\x3c\x46\x4d\x59\x5c\x61\x79\x76\x78\x8d\x89\x8b\x9b\x98\ \x9a\xa1\x9f\xa1\xa6\xa3\xa6\xa8\xa5\xa7\xa8\xa5\xa7\xa7\xa4\xa6\ \xa6\xa4\xa6\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9b\x9d\x96\x96\x98\x8f\ \x91\x92\x89\x8d\x8f\x88\x8c\x8d\x8a\x8c\x90\x8d\x90\x95\x8d\x90\ \x95\x89\x8d\x91\x86\x8b\x8e\x85\x89\x8e\x85\x8a\x8e\x82\x87\x8c\ \x7f\x84\x89\x7b\x7f\x84\x65\x6a\x70\x41\x49\x51\x38\x40\x48\x50\ \x55\x5c\x63\x67\x6c\x4f\x54\x5b\x33\x38\x40\x54\x58\x5f\x6a\x6e\ \x73\x6f\x73\x78\x6b\x71\x77\x6e\x74\x7a\x78\x7e\x84\x7b\x81\x87\ \x7c\x82\x87\x7d\x84\x89\x7d\x85\x89\x7d\x86\x89\x7d\x86\x89\x7d\ \x85\x8b\x7d\x85\x8b\x82\x8a\x92\x81\x89\x90\x81\x89\x90\x7d\x85\ \x8b\x7d\x85\x8c\x7f\x86\x8d\x83\x88\x90\x82\x88\x90\x7c\x82\x88\ \x64\x6d\x72\x5b\x64\x69\x75\x7a\x7f\x7b\x81\x86\x75\x7b\x80\x7e\ \x83\x87\x89\x8e\x92\x7d\x83\x88\x77\x7d\x82\x82\x87\x8a\x87\x8c\ \x8f\x7c\x81\x85\x7c\x80\x84\x8a\x8e\x92\x89\x8d\x90\x7a\x7e\x82\ \x7d\x80\x84\x91\x94\x96\x96\x98\x9a\x9a\x9c\x9f\x98\x9b\x9d\x96\ \x99\x9d\x96\x99\x9d\x99\x9c\xa0\x9e\xa1\xa5\x9e\xa1\xa5\x9d\xa0\ \xa4\x9e\xa1\xa5\x9f\xa1\xa6\x9f\xa2\xa4\xa0\xa3\xa4\xa1\xa3\xa4\ \xa3\xa6\xa7\xa0\xa2\xa3\x80\x86\x88\x49\x55\x58\x77\x7a\x7b\x6d\ \x6c\x6f\x67\x66\x6a\x99\x98\x99\xa6\xa6\xa6\xaa\xaa\xab\xaa\xab\ \xac\xa2\xa3\xa5\x88\x8c\x8e\x82\x84\x87\x6f\x72\x76\x72\x76\x7a\ \xab\xac\xad\xb0\xb0\xb1\xb3\xb2\xb4\xb3\xb2\xb3\xb3\xb2\xb4\xb4\ \xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb3\xb2\ \xb3\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb9\xb8\xba\xb7\xb6\xb8\ \xb7\xb6\xb8\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xba\xbb\xba\xbc\xb9\ \xb9\xba\xb7\xb7\xb8\xbb\xba\xba\xbc\xbd\xbd\x9b\x9c\x9d\x8f\x8e\ \x8e\xac\xaa\xa8\xb9\xb6\xb4\xbd\xba\xba\xba\xb9\xb9\x96\x95\x93\ \x89\x87\x83\xb0\xac\xab\x00\x00\x00\xe4\xde\xdc\xe4\xde\xdc\xe5\ \xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xde\xe4\xdf\ \xde\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdd\xe0\xdb\xda\ \xde\xd9\xd8\xdc\xd4\xd4\xd7\xd0\xd0\xd1\xcb\xca\xc6\xc0\xc0\xb5\ \xb0\xb1\x98\x96\x97\x75\x77\x79\x50\x57\x5c\x37\x43\x49\x43\x4c\ \x52\x62\x63\x67\x83\x7e\x80\x91\x8c\x8e\x9c\x99\x9a\xa5\xa2\xa4\ \xa7\xa3\xa5\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa3\xa5\xa4\xa3\xa5\xa1\ \xa0\xa2\x9e\x9d\x9f\x9d\x9d\x9f\x93\x95\x96\x8c\x90\x93\x89\x8c\ \x90\x89\x8c\x8f\x8a\x8d\x91\x8a\x8e\x92\x8a\x8f\x92\x87\x8c\x8f\ \x84\x8a\x8e\x82\x88\x8c\x82\x87\x8c\x82\x87\x8b\x7f\x86\x8a\x79\ \x7e\x83\x63\x69\x70\x33\x3f\x49\x22\x2d\x36\x45\x49\x52\x57\x5a\ \x61\x3f\x44\x4e\x2a\x32\x3d\x3d\x43\x4b\x69\x6d\x72\x6e\x73\x79\ \x6d\x73\x79\x6c\x72\x78\x74\x7a\x80\x7a\x80\x86\x7d\x82\x87\x7e\ \x86\x8a\x7e\x84\x89\x7e\x86\x8a\x7c\x85\x89\x7c\x85\x8a\x7f\x87\ \x8c\x80\x88\x8f\x80\x88\x8f\x7f\x87\x8e\x7e\x86\x8c\x7e\x84\x8a\ \x80\x86\x8b\x84\x8a\x90\x86\x8c\x92\x7f\x85\x8a\x67\x70\x74\x60\ \x69\x70\x75\x7a\x7f\x84\x8a\x8f\x7d\x83\x88\x76\x7b\x80\x80\x85\ \x89\x89\x8f\x93\x7e\x85\x88\x7a\x80\x83\x84\x89\x8c\x87\x8c\x8f\ \x7b\x7f\x84\x7b\x7f\x83\x8d\x90\x94\x88\x8c\x8f\x79\x7c\x80\x7d\ \x81\x83\x92\x95\x96\x9a\x9c\x9d\x97\x99\x9c\x96\x98\x9c\x96\x99\ \x9c\x98\x9b\x9f\x9a\x9d\xa1\x9d\xa0\xa4\x9f\xa3\xa7\xa0\xa2\xa6\ \xa1\xa2\xa6\xa2\xa4\xa6\xa5\xa8\xa9\xa4\xa7\xa8\xa3\xa5\xa6\xa6\ \xa8\xa9\xa0\xa3\xa4\x90\x96\x98\x6d\x73\x74\x54\x57\x5a\x70\x70\ \x73\x68\x69\x6d\x7f\x7f\x82\x95\x94\x96\x93\x92\x94\xa5\xa6\xa6\ \xa8\xab\xab\x89\x8d\x8f\x61\x65\x6b\x95\x97\x9a\xac\xac\xae\xae\ \xae\xb0\xb2\xb2\xb3\xb0\xaf\xb1\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\ \xb5\xb5\xb5\xb6\xb8\xb7\xb8\xb7\xb6\xb8\xb7\xb5\xb8\xb4\xb4\xb5\ \xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xba\ \xb9\xbb\xb7\xb6\xb8\xba\xb9\xbb\xbb\xba\xbc\xb8\xb7\xb9\xb7\xb6\ \xb7\xb9\xb9\xb9\xbc\xbc\xbc\xc0\xc1\xc0\xae\xad\xae\x8a\x88\x88\ \xa2\x9e\x9d\xb7\xb4\xb4\xbd\xbb\xbb\xc2\xc0\xbf\xb2\xb1\xb0\x90\ \x8d\x8d\x00\x00\x00\xe5\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe4\xdf\ \xdc\xe4\xde\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xde\xe4\xdf\xde\ \xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd7\xd6\xdc\ \xd4\xd4\xd7\xcf\xcf\xcd\xc5\xc5\xc0\xb9\xb8\xab\xa7\xa4\x8a\x8a\ \x88\x68\x6c\x6c\x46\x4e\x52\x3a\x43\x4a\x4b\x52\x57\x6f\x6f\x71\ \x8b\x85\x87\x97\x92\x93\xa1\x9e\x9e\xa5\xa3\xa3\xa7\xa4\xa6\xa8\ \xa6\xa7\xa6\xa4\xa6\xa3\xa2\xa4\xa2\xa1\xa3\xa1\xa0\xa2\x9e\x9d\ \x9f\x98\x99\x9a\x93\x93\x96\x8b\x8e\x91\x8a\x8d\x91\x8a\x8d\x91\ \x8a\x8d\x91\x8d\x92\x95\x8a\x8e\x92\x87\x8c\x8f\x84\x89\x8c\x84\ \x8a\x8d\x80\x86\x8a\x81\x86\x89\x81\x86\x8a\x73\x79\x7e\x57\x5f\ \x67\x28\x36\x41\x20\x2b\x36\x3c\x42\x4e\x4b\x50\x5a\x2d\x36\x43\ \x2b\x34\x41\x47\x4e\x57\x69\x6d\x72\x6f\x75\x7b\x6d\x73\x7a\x6c\ \x72\x79\x6c\x72\x79\x74\x7a\x7f\x7b\x7f\x84\x7c\x83\x88\x80\x86\ \x8b\x7e\x86\x8a\x7c\x84\x89\x7c\x85\x89\x7d\x87\x8a\x7d\x86\x8a\ \x82\x8a\x90\x80\x88\x8f\x7f\x87\x8e\x80\x87\x8e\x82\x88\x8f\x84\ \x89\x90\x84\x89\x8e\x7b\x80\x85\x6f\x76\x7b\x6d\x76\x7b\x73\x7a\ \x7f\x7b\x80\x85\x86\x8a\x91\x7d\x83\x89\x78\x7e\x83\x81\x87\x8b\ \x89\x8f\x92\x7c\x82\x86\x77\x7d\x81\x86\x8a\x8e\x88\x8c\x8f\x7e\ \x83\x86\x7c\x7f\x83\x8c\x8f\x93\x8e\x92\x94\x7f\x83\x86\x80\x84\ \x87\x92\x94\x96\x97\x9a\x9c\x99\x9b\x9f\x97\x9a\x9c\x9b\x9d\xa1\ \x9b\x9d\xa1\x9c\x9f\xa3\xa0\xa3\xa7\xa2\xa5\xa8\xa1\xa4\xa7\xa3\ \xa7\xa8\xa6\xa9\xab\xa4\xa7\xa8\xa7\xa9\xaa\xa3\xa5\xa6\xa4\xa6\ \xa7\xa4\xa8\xa8\x96\x9c\x9c\x8f\x93\x94\x8a\x8c\x8e\x6a\x6e\x72\ \x5e\x61\x65\x6c\x6c\x6e\x74\x73\x75\x90\x90\x91\xad\xae\xae\xac\ \xae\xae\xa7\xab\xaa\xaa\xaa\xac\xae\xae\xae\xae\xaf\xaf\xae\xad\ \xaf\xae\xad\xaf\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ \xb5\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb9\xb8\xba\xb6\ \xb5\xb7\xb3\xb2\xb4\xb9\xb8\xba\xba\xb9\xbb\xb8\xb7\xb9\xb9\xb8\ \xba\xba\xb9\xbb\xbb\xba\xbc\xb9\xb8\xba\xba\xb9\xba\xbb\xb9\xbb\ \xbd\xbc\xbd\xbd\xbd\xbd\xbf\xbe\xbe\xb9\xb9\xb8\x9d\x9d\x9d\x95\ \x92\x93\xab\xa9\xa9\xbf\xbc\xbc\xc4\xc2\xc1\xbe\xbc\xbd\x00\x00\ \x00\xe4\xdd\xdb\xe4\xdd\xdb\xe5\xdf\xdc\xe5\xde\xdb\xe4\xdf\xdc\ \xe4\xdf\xdd\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdc\xe2\ \xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd6\xd5\xd9\xd2\xd1\xd3\xcc\ \xcb\xc9\xc1\xbf\xbb\xb4\xb0\xa2\x9e\x98\x7e\x7f\x7b\x5a\x60\x60\ \x3d\x46\x4c\x3c\x45\x4c\x59\x5c\x61\x79\x77\x79\x90\x8b\x8c\x9a\ \x96\x97\xa2\x9f\xa1\xa4\xa1\xa3\xa7\xa4\xa6\xa7\xa5\xa6\xa6\xa4\ \xa6\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9d\x9c\x9e\x97\x98\x99\ \x91\x92\x95\x89\x8c\x90\x86\x8a\x8e\x87\x8a\x8e\x8b\x8e\x92\x8b\ \x8f\x93\x8a\x8e\x92\x88\x8d\x90\x84\x8a\x8d\x84\x89\x8e\x81\x87\ \x8b\x81\x86\x89\x81\x87\x8b\x70\x79\x7f\x49\x57\x60\x1f\x2e\x3a\ \x2d\x38\x44\x3d\x46\x51\x40\x4a\x55\x21\x2c\x38\x2e\x36\x41\x51\ \x58\x5f\x6a\x6f\x74\x71\x77\x7d\x6c\x73\x79\x6b\x72\x78\x6b\x71\ \x77\x6f\x74\x7a\x78\x7d\x82\x7c\x82\x87\x7e\x84\x89\x7d\x82\x87\ \x7e\x85\x8a\x7e\x85\x8b\x7e\x87\x8a\x7d\x86\x8b\x7e\x87\x8d\x7f\ \x87\x8d\x7d\x84\x89\x7c\x82\x87\x81\x87\x8c\x84\x8a\x90\x84\x89\ \x8e\x7e\x83\x88\x7b\x81\x85\x7e\x83\x88\x7e\x84\x89\x75\x7b\x81\ \x7a\x7f\x84\x86\x8b\x90\x7d\x84\x89\x74\x79\x7e\x80\x85\x88\x88\ \x8e\x91\x7e\x84\x87\x7a\x7f\x82\x87\x8b\x8e\x89\x8d\x90\x7e\x83\ \x86\x7c\x80\x84\x8e\x90\x93\x8b\x8e\x8f\x81\x86\x86\x7f\x82\x83\ \x8f\x91\x92\x9a\x9d\x9e\x9c\x9e\xa0\x9b\x9c\x9f\x9d\x9f\xa2\x9e\ \xa1\xa4\xa1\xa2\xa6\xa1\xa3\xa6\xa2\xa4\xa7\xa5\xa7\xa9\xa4\xa6\ \xa9\xa4\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa4\xa6\xa6\xa7\xa9\xa9\ \xa9\xaa\xaa\xa6\xa8\xa9\x8f\x92\x95\x65\x6a\x6f\x44\x4a\x50\x65\ \x66\x6a\x62\x62\x66\x7e\x7f\x81\xad\xad\xad\xb2\xb1\xb1\xb0\xb1\ \xb1\xae\xad\xae\xae\xae\xad\xb0\xb0\xb0\xac\xac\xad\xaf\xaf\xb0\ \xb5\xb4\xb6\xb2\xb1\xb3\xb1\xb0\xb2\xb4\xb3\xb5\xb6\xb6\xb8\xb5\ \xb4\xb6\xb7\xb6\xb8\xb7\xb7\xb9\xbb\xba\xbc\xb7\xb6\xb8\xb5\xb4\ \xb6\xba\xb9\xbb\xbd\xbc\xbf\xba\xb9\xbb\xbc\xbb\xbd\xbb\xba\xbc\ \xb7\xb6\xb8\xba\xb9\xbb\xbd\xbc\xbd\xbc\xbb\xbb\xbd\xbd\xbd\xbd\ \xbd\xbd\xb9\xb8\xb8\xbb\xba\xba\xc1\xc0\xc1\xae\xad\xae\x90\x8f\ \x91\x9f\x9c\x9c\xb3\xaf\xae\xc3\xbf\xc0\x00\x00\x00\xe4\xde\xdb\ \xe4\xde\xdb\xe5\xde\xdb\xe5\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\ \xdf\xdd\xe4\xdf\xde\xe3\xde\xdb\xe3\xde\xdb\xe2\xdd\xdc\xe1\xda\ \xda\xde\xd9\xd8\xdb\xd5\xd4\xd6\xcf\xcc\xcf\xc7\xc4\xc5\xbd\xba\ \xb2\xac\xaa\x95\x92\x8e\x71\x73\x71\x4d\x55\x57\x3a\x42\x49\x45\ \x4a\x51\x66\x67\x6a\x80\x7d\x7f\x93\x8e\x90\x9e\x9b\x9e\xa3\xa2\ \xa1\xa4\xa2\xa2\xa7\xa6\xa6\xa7\xa5\xa6\xa4\xa4\xa4\xa3\xa2\xa4\ \xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9b\x9c\x94\x95\x97\x8f\x90\x94\x8a\ \x8c\x90\x88\x8b\x8f\x89\x8b\x8f\x89\x8d\x91\x88\x8b\x90\x88\x8b\ \x90\x86\x8a\x8f\x84\x88\x8c\x82\x87\x8c\x80\x87\x8b\x80\x86\x8a\ \x7f\x84\x89\x6d\x76\x7c\x44\x55\x5f\x24\x34\x40\x39\x44\x4f\x44\ \x4c\x56\x32\x3e\x4a\x23\x30\x3d\x38\x41\x4a\x63\x69\x6d\x6b\x70\ \x76\x70\x75\x7b\x70\x76\x7b\x6e\x74\x7a\x6e\x74\x79\x6c\x72\x77\ \x73\x79\x7d\x7c\x82\x85\x80\x86\x8b\x7e\x84\x89\x7f\x85\x8a\x7f\ \x85\x8a\x7f\x87\x8b\x7f\x87\x8e\x7e\x86\x8d\x7d\x85\x8a\x74\x79\ \x7e\x75\x7a\x7f\x7d\x81\x86\x84\x88\x8d\x85\x8a\x8e\x83\x89\x8e\ \x82\x88\x8c\x85\x8b\x90\x89\x8f\x95\x81\x89\x8f\x79\x7e\x83\x7e\ \x83\x88\x88\x8d\x92\x7d\x83\x88\x77\x7d\x80\x84\x89\x8c\x8c\x91\ \x94\x80\x85\x88\x7c\x81\x84\x88\x8c\x8d\x8b\x8f\x91\x7f\x82\x86\ \x7a\x7d\x80\x8b\x8d\x8f\x91\x94\x95\x86\x8a\x8b\x81\x85\x86\x8e\ \x91\x92\x9a\x9c\x9e\x9c\x9e\x9f\x9e\xa0\xa1\xa0\xa2\xa3\xa1\xa3\ \xa5\xa1\xa3\xa5\xa3\xa4\xa8\xa3\xa6\xa7\xa2\xa6\xa6\xa4\xa6\xa7\ \xa5\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa8\xaa\xaa\xa5\xa7\xa7\xa7\ \xa9\xaa\xa0\xa2\xa4\x7d\x84\x87\x6c\x73\x77\x6f\x71\x76\x52\x56\ \x5c\x86\x88\x8c\xad\xad\xad\xb1\xb1\xb1\xaf\xaf\xaf\xb0\xb0\xb0\ \xb1\xb1\xb1\xb1\xb1\xb2\xaf\xb0\xb1\xb2\xb1\xb3\xb3\xb3\xb5\xb0\ \xaf\xb1\xb3\xb2\xb4\xb7\xb6\xb8\xb9\xb9\xba\xb7\xb7\xb9\xb8\xb7\ \xb9\xba\xba\xbc\xbc\xbb\xbd\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\ \xb9\xb8\xbb\xb7\xb6\xb8\xba\xb9\xbb\xba\xb8\xba\xba\xba\xbc\xbd\ \xbc\xbe\xbd\xbc\xbe\xba\xba\xba\xbd\xbc\xbd\xbe\xbd\xbe\xbc\xbb\ \xbc\xbb\xba\xbc\xbd\xbc\xbe\xc1\xc0\xc1\xbc\xbb\xbc\xa3\xa2\xa4\ \x96\x95\x96\xa5\xa4\xa5\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe5\ \xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\ \xde\xe3\xde\xdc\xe3\xde\xdb\xe1\xdc\xdb\xe0\xda\xd9\xde\xd8\xd8\ \xda\xd3\xd0\xd5\xce\xcb\xcd\xc6\xc3\xbf\xb8\xb7\xa9\xa5\xa4\x89\ \x89\x87\x63\x69\x69\x43\x4c\x50\x3d\x44\x4b\x53\x55\x5b\x72\x70\ \x72\x8a\x85\x87\x99\x94\x96\xa0\x9d\x9f\xa4\xa2\xa2\xa6\xa4\xa4\ \xa8\xa8\xa8\xa6\xa6\xa6\xa5\xa5\xa6\xa3\xa2\xa4\xa1\xa0\xa2\x9e\ \x9d\x9f\x98\x98\x9a\x90\x92\x95\x8c\x8d\x91\x8a\x8b\x8f\x8a\x8b\ \x8f\x8a\x8d\x91\x89\x8b\x8f\x87\x8a\x8e\x87\x8a\x8f\x86\x8a\x8e\ \x84\x88\x8c\x83\x87\x8c\x82\x87\x8c\x7f\x84\x89\x7e\x83\x88\x71\ \x79\x7f\x4f\x5e\x67\x3a\x48\x54\x45\x4e\x58\x54\x5b\x65\x2f\x3c\ \x47\x28\x39\x45\x41\x4c\x55\x67\x6d\x73\x70\x75\x7c\x70\x75\x7a\ \x74\x79\x7e\x6f\x75\x7a\x6f\x75\x7a\x6e\x73\x78\x6d\x72\x77\x74\ \x79\x7d\x7d\x83\x87\x7e\x84\x89\x7f\x85\x8a\x80\x86\x8b\x80\x86\ \x8b\x81\x88\x8f\x80\x88\x8e\x7a\x80\x85\x6e\x74\x79\x70\x76\x7b\ \x7b\x80\x85\x83\x88\x8d\x86\x8c\x90\x86\x8c\x91\x85\x8b\x8f\x87\ \x8d\x92\x8a\x91\x96\x88\x90\x95\x80\x88\x8d\x7a\x81\x86\x81\x86\ \x8b\x87\x8c\x91\x81\x87\x8b\x7c\x82\x85\x85\x89\x8d\x8b\x90\x93\ \x83\x89\x8b\x7d\x82\x85\x88\x8b\x8e\x8b\x8e\x90\x7f\x83\x85\x7d\ \x81\x83\x8e\x91\x93\x96\x98\x9a\x89\x8d\x8f\x81\x85\x85\x8f\x92\ \x93\x9c\x9e\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa3\xa4\xa0\xa2\xa3\ \xa0\xa2\xa5\xa2\xa5\xa6\xa3\xa6\xa6\xa5\xa7\xa8\xa6\xa8\xa9\xa5\ \xa7\xa9\xa7\xa9\xaa\xa7\xa9\xaa\xa7\xa9\xaa\xa6\xa8\xa9\xa9\xab\ \xac\xaa\xac\xad\x9e\xa0\xa1\x69\x6e\x71\x6a\x70\x73\x9d\x9e\x9f\ \xa2\xa2\xa3\xad\xad\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb4\xb3\xb4\xb1\ \xb0\xb1\xb3\xb3\xb5\xb7\xb6\xb8\xb2\xb2\xb4\xb2\xb1\xb4\xb6\xb5\ \xb7\xb8\xb7\xb9\xb9\xb8\xbb\xb8\xb8\xba\xb7\xb7\xb9\xba\xb9\xbb\ \xba\xb9\xbb\xb8\xb7\xb9\xb8\xb7\xba\xbb\xba\xbc\xb9\xb8\xbb\xb9\ \xb8\xba\xba\xb9\xbb\xbb\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xba\xba\ \xba\xbb\xbb\xbb\xbc\xbc\xbc\xbc\xbb\xbc\xc0\xbe\xc0\xbf\xbe\xc0\ \xbe\xbc\xbe\xc0\xbe\xc0\xc1\xbf\xc1\xc2\xc0\xc2\xb5\xb4\xb6\x9d\ \x9c\x9e\x00\x00\x00\xe4\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe5\xdf\ \xdc\xe4\xdf\xdc\xe4\xde\xdb\xe4\xde\xdc\xe3\xde\xdc\xe3\xde\xdb\ \xe2\xdd\xdb\xe1\xdc\xda\xde\xda\xd8\xdd\xd7\xd6\xd9\xd2\xcf\xd3\ \xcc\xc8\xc8\xc1\xbf\xb9\xb4\xb4\x9f\x9d\x9c\x7b\x7d\x7d\x59\x5e\ \x61\x3f\x47\x4e\x41\x48\x50\x5f\x60\x65\x7e\x7c\x7e\x90\x8b\x8d\ \x9d\x97\x99\xa1\x9e\xa0\xa5\xa3\xa3\xa7\xa5\xa6\xa6\xa6\xa7\xa5\ \xa5\xa5\xa4\xa4\xa4\xa1\xa1\xa3\x9f\x9e\xa0\x9c\x9b\x9d\x94\x94\ \x97\x8e\x8f\x93\x87\x89\x8e\x86\x88\x8c\x89\x8b\x8f\x8b\x8d\x91\ \x88\x89\x8d\x86\x88\x8c\x86\x89\x8e\x86\x8a\x8f\x85\x89\x8d\x84\ \x87\x8c\x83\x87\x8c\x80\x86\x8a\x7e\x84\x88\x74\x7c\x81\x63\x6e\ \x75\x5a\x65\x6e\x5a\x63\x6b\x5f\x67\x6e\x43\x4f\x59\x39\x47\x51\ \x53\x5a\x63\x6b\x6e\x75\x72\x77\x7d\x71\x75\x7b\x73\x77\x7c\x70\ \x75\x7b\x6d\x73\x78\x6f\x74\x79\x6d\x71\x76\x6d\x71\x76\x79\x7e\ \x83\x7e\x84\x89\x7f\x85\x8a\x80\x87\x8c\x81\x88\x8c\x81\x86\x8c\ \x7f\x85\x8b\x75\x7b\x80\x6e\x74\x79\x73\x78\x7d\x7f\x84\x89\x83\ \x88\x8e\x84\x89\x8e\x85\x8b\x90\x87\x8d\x91\x88\x8e\x93\x87\x8d\ \x92\x8a\x8f\x95\x89\x90\x95\x81\x88\x8d\x7a\x7f\x84\x81\x85\x89\ \x8a\x8e\x93\x83\x88\x8c\x7a\x80\x83\x84\x87\x8b\x8e\x92\x94\x84\ \x89\x8b\x7d\x81\x85\x89\x8c\x8e\x90\x93\x95\x85\x89\x8c\x7c\x7f\ \x83\x89\x8c\x8d\x95\x97\x9a\x8b\x8f\x91\x82\x86\x88\x8d\x8f\x92\ \x9a\x9d\x9e\x9f\xa2\xa2\x9e\xa0\xa1\x9f\xa1\xa2\xa2\xa4\xa5\xa2\ \xa3\xa6\xa1\xa2\xa5\xa3\xa5\xa7\xa6\xa8\xa9\xa6\xa8\xa9\xa9\xab\ \xac\xa9\xab\xac\xa9\xaa\xab\xa8\xa9\xaa\xab\xac\xad\xb1\xb1\xb2\ \xa0\xa1\xa2\x84\x87\x89\x87\x8a\x8b\x83\x85\x85\x78\x79\x79\x96\ \x96\x96\xaf\xaf\xaf\xb0\xb0\xb0\xb1\xb0\xb2\xb0\xaf\xb0\xb4\xb3\ \xb5\xb6\xb6\xb8\xb1\xb1\xb4\xb3\xb1\xb4\xb5\xb4\xb7\xb2\xb1\xb5\ \xb6\xb5\xb9\xb9\xb9\xbc\xb9\xb9\xbb\xb9\xb8\xba\xb9\xb8\xba\xba\ \xb9\xbb\xba\xba\xbb\xbb\xba\xbc\xb9\xb8\xbb\xbb\xba\xbc\xbc\xbb\ \xbd\xbc\xbb\xbd\xba\xb9\xbb\xb9\xb8\xb9\xb9\xb9\xb9\xbe\xbe\xbe\ \xbe\xbe\xbe\xbb\xba\xbb\xbe\xbd\xbe\xc0\xbe\xc0\xc0\xbd\xbf\xc0\ \xbe\xbf\xc1\xbe\xc0\xbf\xbd\xbf\xc1\xbf\xc1\xc1\xc1\xc2\x00\x00\ \x00\xe4\xdd\xda\xe4\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe2\xde\xdb\ \xe4\xde\xdb\xe5\xde\xdb\xe3\xdd\xda\xe3\xde\xda\xe2\xdc\xd9\xe1\ \xdb\xd8\xdf\xd9\xd7\xdb\xd5\xd2\xd6\xcf\xca\xd0\xc9\xc7\xc3\xbc\ \xbc\xb0\xab\xac\x92\x91\x90\x6f\x72\x73\x50\x56\x5b\x3f\x46\x4e\ \x4b\x50\x57\x6a\x69\x6d\x85\x82\x84\x95\x91\x93\x9f\x9b\x9d\xa4\ \xa1\xa2\xa6\xa4\xa5\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa5\xa6\xa5\xa4\ \xa5\xa0\xa0\xa1\x9d\x9c\x9e\x9b\x9b\x9d\x91\x92\x95\x8a\x8c\x90\ \x85\x87\x8c\x85\x86\x8a\x82\x83\x87\x7e\x80\x84\x7e\x7f\x83\x82\ \x84\x88\x86\x89\x8d\x85\x88\x8c\x85\x89\x8e\x84\x88\x8d\x83\x88\ \x8d\x81\x87\x8c\x80\x85\x8b\x7a\x7f\x85\x71\x79\x7f\x6f\x77\x7d\ \x6f\x76\x7c\x6c\x74\x78\x5e\x68\x6e\x55\x5e\x65\x5d\x61\x68\x6b\ \x6e\x73\x6d\x70\x75\x73\x76\x7c\x6f\x72\x77\x6b\x70\x75\x6c\x72\ \x77\x6f\x73\x78\x71\x75\x7a\x6e\x72\x77\x72\x77\x7c\x7a\x80\x85\ \x7f\x85\x8a\x7e\x85\x8a\x82\x87\x8c\x80\x86\x8b\x7c\x82\x87\x71\ \x77\x7c\x6f\x75\x7a\x79\x7e\x82\x83\x88\x8d\x84\x89\x8f\x85\x89\ \x8e\x86\x8b\x90\x87\x8d\x92\x89\x8e\x93\x88\x8e\x92\x89\x8f\x94\ \x8b\x91\x96\x8b\x91\x96\x81\x87\x8c\x79\x7f\x84\x81\x86\x8a\x8a\ \x8f\x93\x83\x89\x8d\x7c\x81\x84\x87\x8b\x8d\x91\x94\x97\x88\x8d\ \x90\x7d\x81\x84\x85\x89\x8c\x90\x94\x96\x85\x88\x8d\x7d\x80\x83\ \x89\x8b\x8e\x99\x9c\x9d\x90\x93\x95\x82\x86\x88\x87\x8b\x8c\x98\ \x9a\x9b\x9f\xa1\xa2\xa2\xa4\xa5\xa5\xa7\xa7\xa2\xa3\xa7\xa0\xa0\ \xa5\xa3\xa5\xa6\xa5\xa7\xa8\xa4\xa6\xa7\xa8\xaa\xab\xaa\xac\xad\ \xaa\xab\xac\xa9\xa9\xab\xad\xac\xae\xaf\xaf\xb1\xa4\xa6\xa7\x99\ \x9c\x9d\x84\x88\x89\x6c\x70\x72\x5f\x63\x66\x75\x77\x78\xab\xac\ \xab\xb1\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb0\xb1\xb3\xb1\xb3\xb4\ \xb0\xb1\xb3\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb0\xb3\xb6\xb4\xb7\xb7\ \xb6\xb8\xba\xb9\xbb\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbc\ \xbe\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\ \xbd\xbc\xbe\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbe\xbf\xbe\xc0\xbe\ \xbd\xbf\xbc\xbc\xbd\xbe\xbd\xbf\xc0\xbe\xc1\xc3\xc2\xc3\xc3\xc0\ \xc2\xc1\xbf\xc1\xbf\xbd\xbf\xc2\xc2\xc3\x00\x00\x00\xe5\xde\xdb\ \xe5\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe5\ \xde\xdb\xe4\xde\xda\xe3\xde\xdb\xe2\xdb\xd8\xdf\xd9\xd6\xde\xd6\ \xd6\xd9\xd2\xce\xd3\xcd\xc8\xcb\xc5\xc3\xbe\xb7\xb7\xa7\xa2\xa3\ \x86\x85\x86\x62\x67\x6a\x46\x4d\x55\x40\x46\x4f\x57\x59\x5f\x76\ \x73\x76\x8b\x87\x89\x9a\x95\x97\x9f\x9b\x9d\xa5\xa2\xa4\xa6\xa3\ \xa6\xa7\xa4\xa6\xa7\xa5\xa7\xa3\xa3\xa4\xa3\xa2\xa4\xa2\xa1\xa3\ \x9f\x9d\x9f\x99\x9a\x9c\x8f\x91\x94\x88\x89\x8e\x83\x84\x89\x82\ \x83\x87\x77\x79\x7b\x6b\x6e\x72\x69\x6c\x6f\x76\x76\x7b\x82\x84\ \x88\x83\x87\x8c\x82\x86\x8b\x81\x85\x8a\x82\x87\x8c\x81\x87\x8c\ \x80\x86\x8c\x7c\x82\x88\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\x77\ \x7d\x82\x6d\x74\x79\x62\x68\x6e\x55\x5a\x61\x5e\x62\x68\x66\x69\ \x6e\x6c\x70\x74\x64\x67\x6c\x61\x64\x69\x68\x6c\x70\x6d\x72\x76\ \x70\x74\x79\x6f\x75\x7a\x6b\x72\x76\x71\x77\x7c\x7e\x83\x88\x7e\ \x83\x89\x81\x87\x8c\x7f\x85\x8a\x78\x7d\x82\x6f\x75\x7a\x72\x77\ \x7b\x7f\x83\x87\x86\x8a\x8f\x87\x8c\x91\x87\x8b\x90\x87\x8b\x90\ \x86\x8b\x90\x88\x8d\x91\x87\x8d\x90\x89\x8f\x93\x8d\x91\x96\x8f\ \x94\x99\x8a\x91\x96\x83\x8a\x8f\x7d\x82\x87\x83\x87\x8c\x8a\x90\ \x94\x84\x8a\x8d\x7e\x82\x85\x89\x8c\x90\x92\x96\x9a\x86\x8a\x8d\ \x7c\x81\x84\x85\x88\x8b\x91\x94\x96\x8c\x8f\x92\x81\x83\x87\x8a\ \x8c\x8e\x99\x9c\x9c\x92\x94\x96\x84\x88\x89\x87\x8a\x8b\x97\x9a\ \x9b\xa3\xa5\xa7\xa5\xa7\xa9\xa4\xa6\xa8\xa4\xa6\xa8\xa4\xa5\xa7\ \x9f\xa0\xa1\xa2\xa4\xa5\xa5\xa6\xa7\xa9\xaa\xac\xa9\xa9\xaa\xa9\ \xa9\xab\xad\xab\xad\xaf\xae\xb0\xae\xae\xb0\xaa\xab\xac\x95\x99\ \x9a\x7e\x83\x86\x5c\x63\x68\x70\x76\x78\xa9\xaa\xab\xaf\xb1\xb2\ \xb2\xb1\xb3\xb5\xb4\xb6\xb1\xb3\xb4\xb0\xb2\xb3\xb0\xb2\xb3\xb2\ \xb3\xb5\xb3\xb4\xb5\xb5\xb5\xb6\xb8\xb6\xb8\xb7\xb6\xb8\xba\xb9\ \xbb\xbb\xba\xbc\xb9\xb8\xba\xb9\xb8\xba\xbd\xbc\xbe\xbc\xbb\xbd\ \xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbc\ \xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbf\xbe\xc0\xc1\xc1\xc2\xbf\xbe\ \xc0\xc1\xc0\xc2\xc0\xbf\xc1\xc4\xc1\xc3\xc3\xc1\xc2\xc2\xc1\xc2\ \xbf\xbd\xbf\xbe\xbd\xbe\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe4\ \xde\xdb\xe4\xde\xdb\xe4\xdf\xdc\xe4\xde\xdc\xe3\xdd\xdb\xe3\xdd\ \xd9\xe3\xdc\xd9\xe1\xda\xd6\xde\xd8\xd5\xdb\xd6\xd3\xd9\xd2\xcf\ \xd0\xca\xc6\xc7\xc0\xbe\xb8\xb2\xb1\x9c\x98\x98\x78\x79\x7b\x55\ \x5c\x60\x3d\x44\x4c\x44\x47\x50\x61\x61\x66\x7f\x7a\x7d\x92\x8c\ \x8e\x9a\x95\x97\xa0\x9b\x9d\xa5\xa2\xa5\xa7\xa3\xa6\xa7\xa4\xa6\ \xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa1\xa2\xa0\xa0\xa1\x9d\x9c\x9e\x94\ \x94\x98\x8c\x8d\x91\x86\x87\x8c\x80\x81\x85\x80\x81\x84\x70\x72\ \x73\x58\x5d\x60\x4f\x55\x59\x5f\x61\x65\x7d\x7f\x83\x84\x87\x8c\ \x82\x85\x8a\x83\x87\x8c\x80\x85\x8a\x7f\x85\x8a\x7f\x86\x8b\x7d\ \x83\x89\x7d\x82\x87\x7b\x81\x86\x7b\x81\x86\x7b\x81\x86\x76\x7c\ \x81\x63\x68\x6d\x47\x4d\x55\x38\x3d\x45\x56\x5a\x61\x63\x65\x6a\ \x51\x53\x5b\x46\x4a\x52\x57\x5a\x62\x69\x6f\x74\x6d\x73\x79\x72\ \x78\x7d\x6e\x74\x7a\x6d\x72\x78\x75\x7a\x7f\x7c\x83\x87\x7e\x85\ \x89\x80\x85\x8a\x74\x78\x7e\x6e\x72\x77\x77\x7c\x80\x82\x87\x8b\ \x85\x8a\x8e\x86\x8a\x8f\x86\x8b\x90\x88\x8c\x90\x88\x8c\x91\x88\ \x8c\x91\x8a\x8f\x93\x8c\x90\x95\x8c\x90\x95\x90\x94\x99\x8d\x93\ \x98\x8d\x92\x96\x85\x89\x8f\x7d\x81\x86\x84\x88\x8c\x8d\x91\x95\ \x86\x8b\x8f\x7f\x83\x87\x89\x8c\x90\x94\x97\x9b\x88\x8d\x90\x7d\ \x81\x85\x84\x87\x8a\x93\x96\x99\x8d\x90\x94\x82\x85\x88\x88\x8a\ \x8b\x99\x9b\x9c\x98\x9b\x9b\x88\x8c\x8d\x87\x8b\x8c\x97\x9a\x9c\ \xa4\xa6\xa7\xa5\xa6\xa7\xa6\xa8\xa9\xa5\xa6\xa8\xa1\xa1\xa4\xa1\ \xa3\xa5\xa4\xa5\xa5\xa7\xa7\xaa\xa8\xa9\xaa\xa9\xab\xac\xad\xad\ \xaf\xaf\xaf\xb1\xb1\xb0\xb2\xad\xad\xaf\xa7\xaa\xaa\x9a\x9e\x9f\ \x88\x8e\x91\x9a\x9e\xa1\xaf\xaf\xb1\xaf\xb1\xb2\xb2\xb1\xb3\xb5\ \xb4\xb6\xb4\xb4\xb6\xb2\xb4\xb5\xb1\xb3\xb4\xb2\xb4\xb5\xb2\xb4\ \xb5\xb8\xb7\xb9\xb8\xb7\xb9\xb7\xb6\xb8\xb9\xb8\xba\xbc\xbb\xbd\ \xba\xb9\xbb\xb9\xb8\xba\xbb\xba\xbb\xbc\xbb\xbd\xb9\xb9\xba\xbb\ \xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc1\ \xc2\xbe\xbe\xbf\xbc\xbb\xbd\xc0\xbf\xc1\xc0\xbf\xc1\xc1\xc0\xc2\ \xbf\xbf\xc0\xc4\xc2\xc3\xbe\xbb\xbc\xbd\xbc\xbd\xbf\xbe\xbf\xbf\ \xbf\xbf\x00\x00\x00\xe5\xde\xdb\xe3\xde\xdb\xe4\xdf\xdb\xe3\xde\ \xdb\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe3\xdd\xda\xe1\xdc\xd9\ \xe0\xda\xd7\xdd\xd8\xd5\xdb\xd5\xd2\xd5\xce\xcb\xcc\xc6\xc1\xc2\ \xbb\xb8\xaf\xa8\xa6\x8e\x8b\x8a\x6a\x6e\x70\x4a\x53\x59\x3f\x46\ \x4f\x4f\x51\x59\x6f\x6c\x70\x87\x82\x83\x97\x92\x93\x9e\x99\x9a\ \xa4\x9f\xa1\xa5\xa2\xa4\xa7\xa4\xa5\xa5\xa3\xa5\xa3\xa3\xa5\xa2\ \xa1\xa3\xa1\xa0\xa2\x9d\x9d\xa0\x98\x98\x9c\x92\x92\x96\x8a\x8b\ \x8f\x83\x84\x88\x76\x77\x7a\x6e\x70\x72\x6a\x6b\x6d\x59\x5d\x60\ \x4e\x55\x58\x56\x5a\x5d\x77\x79\x7d\x81\x84\x89\x80\x84\x89\x81\ \x85\x8a\x80\x85\x8b\x81\x85\x8b\x7f\x84\x8a\x7e\x84\x89\x7c\x82\ \x87\x7c\x81\x86\x7b\x80\x85\x7c\x82\x87\x7a\x7f\x84\x5e\x64\x69\ \x39\x42\x4a\x25\x2e\x36\x46\x4b\x51\x59\x5b\x61\x35\x3c\x43\x1b\ \x26\x2d\x40\x46\x4e\x69\x6e\x75\x6f\x76\x7c\x70\x75\x7a\x71\x77\ \x7c\x6e\x74\x79\x6c\x73\x78\x76\x7c\x80\x7c\x81\x84\x75\x7a\x7e\ \x65\x69\x6d\x68\x6c\x70\x78\x7c\x80\x83\x88\x8b\x84\x89\x8d\x83\ \x87\x8d\x86\x8a\x8f\x88\x8c\x91\x88\x8c\x91\x86\x8a\x90\x8a\x8e\ \x93\x8b\x8f\x94\x8f\x93\x97\x8d\x91\x96\x8e\x92\x97\x8f\x93\x98\ \x8f\x93\x99\x86\x8b\x90\x80\x84\x89\x83\x86\x8b\x8d\x92\x96\x89\ \x8d\x91\x81\x85\x89\x89\x8c\x90\x94\x98\x9b\x8b\x8f\x92\x81\x84\ \x88\x84\x87\x89\x97\x99\x9c\x94\x97\x99\x85\x89\x8a\x88\x8a\x8b\ \x96\x98\x99\x9a\x9c\x9d\x8a\x8e\x8e\x83\x87\x88\x97\x99\x9a\xa6\ \xa6\xa8\xa5\xa7\xa9\xa4\xa6\xa8\xa2\xa2\xa3\xa0\xa1\xa3\xa5\xa5\ \xa6\xa7\xa6\xa8\xa8\xa9\xab\xab\xac\xae\xac\xac\xae\xab\xac\xae\ \xac\xac\xae\xae\xaf\xb0\xae\xb0\xb1\xac\xad\xaf\xac\xae\xaf\xaf\ \xb0\xb1\xb1\xb2\xb3\xaf\xaf\xb1\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb4\ \xb5\xb4\xb4\xb6\xb5\xb5\xb7\xb3\xb4\xb5\xb3\xb4\xb6\xb7\xb6\xb8\ \xb7\xb6\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xba\ \xba\xbb\xba\xba\xbb\xbb\xbb\xbc\xbb\xbb\xbc\xbc\xbc\xbe\xbd\xbc\ \xbe\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xbf\xbf\xbe\xbf\xbd\xbd\xbe\ \xbc\xbb\xbd\xba\xb8\xba\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xc2\xc2\xc3\ \xc2\xc2\xbd\xbc\xbd\xc0\xbf\xc0\xbe\xbe\xbe\xc1\xc0\xc2\x00\x00\ \x00\xe5\xdf\xdc\xe3\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xde\xdb\ \xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xda\xe1\xdc\xd9\xdf\xd9\xd6\xdd\ \xd6\xd3\xd8\xd2\xcf\xd4\xcc\xc9\xc8\xc1\xbe\xba\xb2\xaf\xa4\x9f\ \x9d\x82\x81\x83\x5d\x62\x69\x42\x4c\x54\x42\x4a\x52\x59\x59\x60\ \x77\x73\x76\x8e\x88\x89\x9a\x95\x96\xa1\x9c\x9c\xa4\xa0\xa2\xa5\ \xa2\xa3\xa6\xa5\xa6\xa4\xa3\xa5\xa2\xa1\xa3\xa2\xa1\xa3\x9e\x9e\ \xa1\x99\x9a\x9e\x94\x95\x99\x8d\x8e\x93\x86\x87\x8a\x76\x78\x7a\ \x6a\x6d\x6f\x61\x64\x68\x60\x63\x66\x5e\x62\x63\x60\x65\x66\x63\ \x66\x68\x74\x77\x7c\x7f\x83\x87\x7f\x82\x87\x80\x85\x8a\x7f\x85\ \x8b\x7e\x84\x8b\x7d\x83\x89\x7d\x83\x89\x7e\x84\x8a\x7b\x81\x86\ \x7a\x80\x85\x7b\x81\x86\x71\x76\x7b\x5a\x60\x66\x2a\x35\x3d\x23\ \x2d\x35\x40\x47\x4d\x4d\x51\x58\x27\x30\x37\x09\x17\x1c\x30\x37\ \x3f\x63\x68\x70\x73\x7a\x7f\x71\x77\x7b\x71\x77\x7c\x6f\x77\x7a\ \x6d\x75\x7c\x6c\x72\x78\x78\x7c\x7f\x6b\x6f\x73\x4d\x51\x56\x4f\ \x52\x57\x72\x74\x78\x82\x86\x89\x83\x87\x8b\x83\x88\x8c\x85\x8a\ \x8e\x88\x8c\x91\x8a\x8f\x93\x8a\x8f\x92\x8b\x8f\x93\x8b\x8f\x94\ \x8d\x92\x96\x8e\x92\x97\x8e\x92\x97\x8f\x94\x98\x90\x95\x98\x91\ \x96\x99\x88\x8c\x91\x7d\x82\x86\x82\x87\x8a\x8e\x93\x96\x8b\x8f\ \x94\x81\x85\x89\x86\x89\x8d\x99\x9c\xa0\x93\x97\x9b\x84\x87\x8b\ \x85\x88\x89\x94\x96\x98\x96\x9b\x9c\x88\x8c\x8d\x85\x88\x89\x98\ \x9a\x9a\x9d\xa0\xa0\x8a\x8d\x8f\x85\x88\x8a\x96\x98\x9a\xa7\xa7\ \xa9\xa8\xa8\xaa\xa5\xa4\xa6\xa3\xa4\xa5\xa6\xa5\xa7\xa5\xa4\xa6\ \xa7\xa7\xa9\xad\xac\xae\xae\xad\xb0\xac\xab\xae\xac\xab\xad\xaf\ \xae\xb0\xaf\xae\xb0\xb0\xaf\xb1\xb2\xb1\xb3\xb0\xaf\xb1\xb3\xb2\ \xb4\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb3\xb4\xaf\xb1\xb2\ \xb3\xb5\xb6\xb4\xb6\xb7\xb4\xb5\xb6\xb5\xb5\xb7\xb8\xb7\xb9\xb8\ \xb7\xb9\xba\xb9\xbb\xbc\xbc\xbd\xba\xba\xbb\xbc\xbb\xbd\xba\xba\ \xbb\xbc\xbc\xbd\xbb\xba\xbc\xbb\xba\xbc\xbe\xbe\xbf\xbe\xbc\xbf\ \xba\xb9\xbc\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbf\xbe\xbd\xbf\xbd\ \xbc\xbe\xbe\xbd\xbf\xc0\xbf\xc0\xc1\xc1\xc2\xc2\xc1\xc2\xbe\xbe\ \xbe\xc2\xc2\xc2\xc0\xbf\xc1\xc0\xc0\xc0\x00\x00\x00\xe3\xdd\xdb\ \xe4\xde\xdc\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdd\xe3\xde\xdb\xe2\ \xdd\xda\xe1\xdc\xd9\xe1\xdb\xd8\xde\xd8\xd5\xdb\xd5\xd2\xd7\xd1\ \xce\xcf\xc9\xc6\xc4\xbd\xba\xb5\xae\xab\x9a\x95\x96\x77\x78\x7b\ \x55\x5a\x61\x3f\x48\x52\x44\x4c\x55\x62\x63\x68\x81\x7d\x7e\x93\ \x8d\x8e\x9f\x9a\x9a\xa3\x9e\xa0\xa6\xa3\xa4\xa7\xa5\xa6\xa5\xa3\ \xa5\xa5\xa4\xa6\xa4\xa3\xa5\x9f\x9f\xa1\x9a\x9b\x9e\x99\x9a\x9e\ \x95\x96\x9a\x8d\x8e\x91\x81\x85\x86\x6d\x71\x72\x5d\x61\x65\x56\ \x59\x5d\x59\x5b\x5f\x62\x65\x66\x67\x69\x6c\x70\x73\x76\x78\x7b\ \x7f\x7e\x82\x87\x80\x85\x8a\x82\x87\x8d\x7f\x85\x8b\x7f\x84\x8a\ \x7d\x81\x87\x7e\x84\x8a\x7e\x84\x8b\x7d\x81\x86\x7b\x81\x86\x7b\ \x82\x86\x66\x6f\x75\x47\x52\x59\x1b\x27\x2f\x26\x31\x38\x3b\x41\ \x49\x38\x3e\x46\x1b\x25\x2c\x0b\x19\x20\x32\x3c\x44\x62\x68\x6f\ \x71\x76\x7d\x70\x76\x7c\x6e\x74\x79\x6f\x75\x7c\x70\x79\x7f\x6b\ \x72\x76\x6d\x72\x77\x5e\x64\x68\x36\x3d\x43\x2f\x33\x38\x5f\x5f\ \x63\x7b\x7c\x7e\x84\x88\x8c\x86\x8b\x8f\x87\x8c\x90\x89\x8d\x92\ \x89\x8e\x93\x89\x8e\x91\x88\x8d\x92\x8a\x8e\x92\x8d\x92\x96\x8d\ \x91\x96\x8e\x93\x96\x91\x95\x99\x91\x95\x9a\x95\x99\x9e\x94\x99\ \x9d\x8a\x8f\x93\x7f\x85\x88\x84\x88\x8c\x94\x98\x9c\x8d\x92\x96\ \x81\x86\x89\x88\x8b\x8f\x9d\x9f\xa3\x93\x97\x9a\x84\x87\x8a\x83\ \x86\x88\x96\x98\x99\x98\x9a\x9b\x8b\x8e\x8e\x85\x87\x89\x92\x94\ \x95\x9c\x9e\x9f\x90\x93\x94\x81\x85\x88\x92\x92\x94\xaa\xa8\xaa\ \xa8\xa8\xa9\xa4\xa6\xa7\xa6\xa6\xa7\xa6\xa5\xa7\xa9\xa8\xaa\xae\ \xad\xaf\xaf\xae\xb0\xae\xae\xb0\xb0\xb0\xb2\xaf\xae\xb0\xaf\xae\ \xb0\xb1\xb0\xb2\xb4\xb3\xb5\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\ \xb2\xb1\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb0\xaf\xb1\xb5\xb5\xb7\xb6\ \xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb7\xb7\xb8\xb7\xb6\ \xb8\xba\xb9\xba\xbc\xbb\xbc\xbd\xbc\xbd\xbb\xba\xbc\xbc\xbb\xbd\ \xbd\xbc\xbe\xbb\xba\xbc\xbe\xbd\xbf\xbc\xbc\xbd\xba\xb9\xbb\xb9\ \xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\ \xc2\xc3\xc2\xc4\xc2\xc2\xc3\xc0\xc0\xc0\xbf\xbf\xc0\xc1\xc0\xc1\ \xc2\xc2\xc2\xc2\xc2\xc3\x00\x00\x00\xe3\xde\xdb\xe4\xde\xdc\xe4\ \xdf\xdd\xe4\xdf\xde\xe3\xde\xdc\xe2\xdc\xda\xe2\xdd\xda\xe1\xdc\ \xd9\xdf\xda\xd9\xdc\xd6\xd5\xd9\xd4\xd2\xd3\xcc\xc9\xcd\xc6\xc3\ \xbe\xb7\xb4\xac\xa7\xa4\x8b\x89\x8a\x67\x6a\x6e\x48\x4e\x55\x3d\ \x44\x4e\x4f\x54\x5b\x6d\x6d\x70\x87\x83\x84\x97\x92\x93\x9e\x99\ \x9a\xa2\x9d\x9e\xa4\xa1\xa3\xa7\xa5\xa5\xa7\xa6\xa8\xa6\xa5\xa7\ \xa1\xa2\xa4\x9c\x9e\xa1\x9c\x9d\xa1\x96\x98\x9b\x8e\x90\x92\x86\ \x89\x8a\x7b\x7f\x80\x6c\x70\x72\x56\x5a\x60\x49\x4d\x53\x4c\x4f\ \x54\x5d\x60\x63\x6b\x6c\x70\x74\x76\x7a\x78\x7b\x7f\x7c\x81\x84\ \x7f\x84\x88\x7e\x83\x89\x7c\x82\x88\x7d\x83\x8a\x7c\x82\x88\x7d\ \x82\x88\x7e\x83\x88\x7a\x80\x85\x7c\x82\x87\x77\x80\x84\x5c\x69\ \x6e\x30\x40\x47\x1d\x2c\x32\x32\x3f\x47\x47\x4e\x57\x27\x31\x39\ \x0a\x17\x1e\x1b\x26\x2e\x4c\x53\x5e\x69\x6e\x77\x70\x76\x7d\x72\ \x79\x7e\x6f\x78\x7c\x6b\x74\x7a\x70\x76\x7d\x70\x76\x7b\x65\x6a\ \x6f\x48\x4f\x55\x27\x30\x37\x22\x27\x2c\x46\x47\x4c\x70\x6f\x73\ \x83\x86\x8b\x89\x8e\x93\x89\x8d\x92\x88\x8d\x92\x88\x8e\x93\x89\ \x8e\x91\x8b\x91\x96\x8a\x8e\x93\x8e\x92\x97\x8c\x90\x95\x8f\x93\ \x98\x91\x95\x9a\x95\x99\x9e\x97\x9b\x9f\x96\x9a\x9e\x94\x97\x9c\ \x8b\x90\x93\x80\x85\x89\x84\x88\x8c\x90\x95\x98\x8f\x94\x97\x83\ \x88\x8b\x8a\x8d\x91\x9a\x9d\xa1\x96\x99\x9d\x85\x89\x8b\x80\x84\ \x85\x92\x94\x95\x9b\x9e\x9e\x8d\x91\x92\x86\x89\x8a\x92\x94\x95\ \x9e\xa0\xa1\x94\x98\x98\x86\x88\x8a\x8f\x91\x92\xa3\xa2\xa4\xa6\ \xa5\xa7\xa4\xa3\xa5\xa6\xa7\xa8\xac\xaa\xac\xaa\xa9\xab\xac\xab\ \xad\xae\xae\xaf\xb1\xb1\xb3\xb2\xb1\xb3\xb1\xb0\xb2\xb1\xb0\xb2\ \xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb0\xaf\xb0\xb2\xb1\xb3\xb2\ \xb2\xb3\xb2\xb2\xb3\xb3\xb3\xb4\xb2\xb2\xb3\xb3\xb2\xb4\xb6\xb5\ \xb7\xb9\xb8\xba\xb9\xb8\xba\xb7\xb7\xb8\xb9\xb9\xba\xba\xba\xbc\ \xb9\xb8\xba\xbd\xbc\xbd\xbc\xbb\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\ \xbb\xbc\xbe\xbd\xbf\xbd\xbc\xbe\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\ \xbe\xbf\xbe\xc1\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\xc4\xc2\xc4\ \xc4\xc1\xc2\xc2\xc1\xc1\xbf\xbd\xbe\xbd\xbc\xbc\xc1\xc1\xc1\xc3\ \xc3\xc3\x00\x00\x00\xe4\xdf\xdd\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\ \xdb\xe3\xdd\xdc\xe2\xdc\xdb\xe2\xdd\xdc\xe0\xdb\xd9\xde\xd9\xd8\ \xdc\xd7\xd6\xd7\xd2\xd0\xd2\xcb\xc8\xc7\xc1\xbe\xba\xb3\xb0\xa0\ \x9b\x99\x7d\x7e\x7e\x5b\x60\x65\x41\x49\x50\x43\x49\x51\x5b\x5d\ \x63\x79\x76\x78\x8e\x89\x89\x99\x94\x95\xa2\x9d\x9e\xa3\x9f\xa1\ \xa5\xa2\xa2\xa3\xa1\xa3\xa5\xa4\xa6\xa3\xa2\xa4\xa0\xa2\xa2\x9e\ \xa1\xa1\x99\x9b\x9c\x93\x94\x97\x8b\x8e\x8f\x84\x88\x89\x7a\x7e\ \x7f\x68\x6d\x6f\x4f\x55\x59\x4a\x4f\x54\x51\x53\x57\x62\x63\x67\ \x67\x69\x6d\x72\x74\x78\x7b\x7f\x83\x7d\x83\x87\x81\x86\x8b\x7e\ \x84\x89\x7c\x82\x87\x7b\x80\x85\x7c\x80\x85\x7d\x81\x86\x7d\x81\ \x86\x7b\x80\x85\x7b\x80\x86\x77\x7e\x82\x60\x6d\x73\x2c\x42\x48\ \x23\x38\x3f\x40\x4f\x58\x4f\x5b\x63\x2b\x36\x3f\x0a\x17\x20\x2a\ \x34\x3c\x5d\x62\x6a\x71\x76\x7d\x72\x78\x7f\x70\x76\x7d\x75\x7b\ \x80\x72\x79\x80\x6d\x74\x7b\x6c\x72\x77\x5c\x63\x68\x33\x3c\x43\ \x19\x21\x26\x18\x1e\x23\x2b\x30\x35\x5c\x60\x65\x7d\x81\x86\x8a\ \x8f\x94\x89\x8e\x92\x88\x8e\x93\x8a\x90\x95\x8c\x92\x96\x8a\x8f\ \x93\x8e\x93\x98\x8c\x91\x96\x8d\x91\x96\x90\x94\x99\x92\x96\x9b\ \x94\x98\x9d\x95\x99\x9e\x95\x99\x9e\x96\x9a\x9f\x95\x9a\x9e\x8f\ \x94\x98\x83\x88\x8d\x82\x86\x8b\x93\x97\x9a\x91\x95\x9a\x86\x8a\ \x8d\x84\x87\x8b\x97\x9a\x9d\x9c\x9f\xa3\x8b\x8e\x91\x81\x84\x85\ \x91\x93\x94\x9c\x9e\x9f\x91\x95\x96\x89\x8c\x8d\x91\x93\x94\x9e\ \x9f\xa0\x9a\x9b\x9d\x8d\x8f\x8f\x8a\x8d\x8d\x9b\x9b\x9d\xa6\xa5\ \xa7\xa7\xa6\xa8\xab\xaa\xac\xa9\xa8\xaa\xab\xaa\xac\xae\xad\xaf\ \xaf\xae\xaf\xb1\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\xb0\xb1\ \xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb6\xb5\ \xb7\xb6\xb5\xb7\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ \xb9\xb8\xba\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xba\ \xb9\xba\xbd\xbd\xbd\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\ \xbd\xbd\xbc\xbe\xc0\xbf\xc1\xbe\xbd\xbf\xc0\xbf\xc1\xc0\xbf\xc1\ \xc0\xbf\xc1\xc3\xc2\xc4\xc4\xc2\xc4\xc1\xbe\xc0\xc1\xbe\xc0\xc3\ \xc2\xc4\xc2\xc2\xc3\xbc\xbb\xbd\xbf\xbf\xbf\xc2\xc2\xc2\x00\x00\ \x00\xe4\xdf\xdd\xe3\xde\xdd\xe2\xdd\xdc\xe2\xdd\xdb\xe3\xdc\xdc\ \xe2\xdd\xdc\xe0\xdb\xda\xdf\xda\xd9\xdd\xd6\xd5\xdb\xd3\xd3\xd6\ \xce\xcd\xce\xc7\xc5\xc3\xbd\xba\xb0\xa9\xa6\x95\x92\x8e\x72\x73\ \x74\x53\x58\x5f\x42\x48\x51\x49\x4d\x54\x67\x66\x6b\x82\x7d\x7e\ \x93\x8e\x8d\x9b\x97\x97\xa3\xa0\xa1\xa5\xa2\xa4\xa7\xa6\xa7\xa4\ \xa4\xa6\xa3\xa2\xa4\xa1\xa0\xa2\xa1\xa2\xa3\x9b\x9e\x9e\x99\x9b\ \x9c\x92\x94\x96\x8c\x8f\x90\x86\x8a\x8b\x7b\x7f\x80\x67\x6d\x70\ \x50\x59\x5d\x43\x48\x4d\x4f\x50\x55\x5b\x5b\x60\x63\x65\x69\x6d\ \x6f\x73\x7b\x7f\x83\x80\x86\x8a\x7d\x82\x86\x7b\x7f\x84\x7b\x80\ \x85\x7c\x82\x86\x7e\x82\x87\x7d\x82\x87\x7e\x83\x88\x7c\x81\x86\ \x7a\x80\x85\x77\x7c\x81\x6a\x73\x79\x48\x5a\x61\x39\x4c\x55\x55\ \x61\x6b\x63\x6e\x76\x40\x4f\x58\x1a\x2c\x37\x34\x40\x4b\x60\x66\ \x6f\x6f\x75\x7c\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x74\x7a\x80\ \x70\x78\x7e\x65\x6c\x73\x51\x59\x5f\x29\x33\x39\x11\x19\x1c\x1c\ \x23\x28\x2c\x33\x38\x55\x5a\x60\x77\x7c\x80\x88\x8c\x91\x89\x8e\ \x93\x88\x8d\x91\x8a\x8e\x93\x8b\x8f\x94\x8c\x90\x95\x8c\x90\x95\ \x8c\x90\x95\x8e\x92\x97\x91\x94\x9a\x90\x94\x99\x90\x94\x99\x94\ \x98\x9d\x95\x98\x9d\x96\x99\x9e\x96\x9b\x9e\x97\x9b\x9f\x90\x95\ \x9a\x84\x89\x8c\x87\x8b\x8e\x97\x9b\x9f\x95\x9a\x9d\x88\x8d\x90\ \x88\x8b\x8f\x96\x98\x9d\x9a\x9d\xa1\x8d\x91\x92\x86\x89\x8a\x90\ \x92\x93\x9b\x9d\x9e\x94\x97\x97\x85\x88\x89\x8e\x90\x91\xa2\xa2\ \xa3\xa0\xa2\xa2\x91\x93\x94\x8b\x8d\x8e\x98\x98\x9a\xa9\xa8\xaa\ \xaa\xa9\xab\xac\xab\xad\xaf\xae\xb0\xad\xad\xae\xac\xac\xad\xad\ \xad\xae\xb0\xaf\xb1\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xb0\xb2\xb1\xb0\ \xb2\xb4\xb3\xb5\xb6\xb5\xb7\xb4\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb7\ \xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb8\xb7\xb8\xb8\ \xb7\xb7\xba\xba\xbb\xb8\xb7\xb8\xb8\xb8\xb8\xba\xb9\xbb\xbc\xbb\ \xbd\xbd\xbc\xbe\xbb\xba\xbc\xbb\xba\xbc\xbd\xbc\xbe\xbd\xbc\xbe\ \xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc0\xc2\xbf\xbf\xc1\xc1\xbf\xc1\xc0\ \xbf\xc1\xc0\xbe\xc0\xbf\xbe\xc0\xc4\xc3\xc5\xc3\xc2\xc2\xc0\xbf\ \xc1\xc0\xbf\xc1\xc0\xbf\xc1\xbe\xbd\xbf\x00\x00\x00\xe2\xdd\xdb\ \xe3\xde\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe2\xdd\xdc\xe2\xdd\xdc\xe0\ \xda\xd9\xdf\xda\xd8\xdc\xd6\xd6\xd8\xd2\xd1\xd2\xcc\xcb\xcc\xc5\ \xc4\xbe\xb8\xb5\xa7\xa1\x9d\x88\x85\x83\x67\x6a\x6c\x4a\x50\x58\ \x42\x48\x51\x54\x55\x5c\x72\x6f\x72\x89\x84\x84\x96\x92\x91\xa0\ \x9b\x9c\xa3\x9f\x9f\xa5\xa3\xa4\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\ \xa4\xa2\xa2\xa3\x9d\x9f\xa0\x98\x9a\x9b\x96\x98\x99\x91\x93\x95\ \x8a\x8d\x8f\x84\x88\x89\x7a\x7e\x7f\x64\x6b\x6e\x49\x53\x57\x31\ \x37\x3c\x4d\x4e\x53\x57\x58\x5d\x62\x63\x68\x6a\x6b\x6f\x79\x7c\ \x80\x7e\x84\x86\x7e\x83\x86\x7c\x81\x85\x7c\x80\x84\x7b\x80\x84\ \x7b\x7f\x84\x7c\x80\x85\x7d\x80\x85\x7c\x82\x87\x7a\x80\x85\x7b\ \x81\x86\x6d\x77\x7b\x62\x6c\x74\x5e\x69\x72\x67\x70\x78\x6e\x76\ \x7e\x59\x65\x6e\x41\x53\x5f\x4d\x5b\x66\x66\x6e\x76\x71\x77\x7d\ \x6f\x75\x7c\x71\x77\x7e\x70\x76\x7d\x71\x77\x7e\x73\x7b\x80\x64\ \x6c\x73\x3b\x45\x4c\x1a\x22\x27\x15\x1d\x21\x23\x2b\x2f\x46\x4d\ \x53\x6f\x73\x79\x7e\x82\x87\x86\x8a\x8f\x89\x8d\x92\x89\x8d\x92\ \x8b\x8f\x94\x8b\x8f\x93\x8c\x90\x95\x8c\x90\x95\x8e\x92\x97\x8e\ \x92\x97\x90\x94\x98\x8f\x93\x98\x91\x95\x9a\x94\x97\x9b\x96\x9a\ \x9f\x97\x9b\x9f\x99\x9c\xa0\x98\x9c\xa1\x9b\x9e\xa4\x93\x98\x9c\ \x85\x8a\x8e\x86\x8a\x8e\x96\x99\x9d\x99\x9c\xa0\x8d\x90\x94\x85\ \x88\x8c\x93\x96\x98\x9d\xa0\xa2\x94\x98\x99\x87\x8b\x8c\x8e\x90\ \x91\x9c\x9f\x9f\x99\x9c\x9c\x8b\x8d\x8d\x8f\x90\x91\x9e\x9e\x9e\ \xa5\xa5\xa5\x96\x97\x99\x89\x8c\x8d\x94\x95\x96\xa8\xa8\xa9\xaf\ \xaf\xaf\xad\xad\xae\xae\xae\xaf\xae\xae\xaf\xad\xad\xad\xaf\xaf\ \xb0\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb2\xb1\xb3\ \xb5\xb5\xb6\xb6\xb5\xb7\xb7\xb7\xb8\xb6\xb6\xb7\xb2\xb2\xb3\xb0\ \xaf\xb2\xb4\xb3\xb5\xb7\xb6\xb7\xb7\xb6\xb8\xb5\xb5\xb7\xb8\xb8\ \xb8\xb8\xb7\xb9\xbb\xbb\xbb\xbd\xbc\xbe\xbd\xbc\xbe\xbd\xbd\xbd\ \xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\xbc\xbc\xbb\xbd\xbf\ \xbe\xc0\xc0\xbf\xc1\xbf\xbe\xc0\xc1\xbf\xc1\xc1\xbf\xc1\xc1\xbe\ \xc0\xc5\xc2\xc4\xc4\xc2\xc4\xc2\xc1\xc2\xc2\xc1\xc1\xc1\xc0\xc2\ \xc1\xc0\xc2\xc2\xc1\xc2\x00\x00\x00\xe4\xdf\xdb\xe4\xdf\xdc\xe4\ \xdf\xdd\xe2\xdd\xdb\xe1\xdc\xda\xe0\xdb\xda\xe0\xda\xda\xde\xd9\ \xd8\xdb\xd5\xd5\xd7\xcf\xcf\xd1\xca\xca\xc6\xbf\xbe\xb7\xb0\xac\ \x9e\x98\x95\x7a\x79\x77\x5a\x5d\x61\x45\x4c\x54\x44\x4b\x53\x5e\ \x5e\x63\x7b\x76\x79\x8e\x89\x88\x9b\x97\x96\xa0\x9d\x9d\xa3\xa1\ \xa1\xa4\xa2\xa2\xa3\xa2\xa3\xa5\xa4\xa6\xa2\xa1\xa3\x9f\xa0\xa2\ \x9a\x9c\x9d\x99\x9b\x9c\x97\x99\x9a\x92\x95\x97\x8b\x8f\x91\x86\ \x8a\x8b\x7a\x7e\x80\x65\x6c\x6f\x43\x4d\x52\x2c\x32\x37\x3b\x3f\ \x43\x50\x51\x57\x5e\x60\x65\x68\x6a\x6e\x73\x76\x7a\x7c\x81\x84\ \x7b\x80\x83\x7a\x80\x84\x79\x7e\x83\x7a\x7f\x83\x7b\x7f\x83\x7c\ \x80\x85\x7c\x80\x85\x7b\x80\x85\x7a\x81\x86\x7c\x82\x87\x78\x7e\ \x83\x72\x7a\x80\x72\x79\x80\x74\x7b\x82\x78\x80\x87\x70\x77\x7e\ \x61\x6d\x75\x62\x6d\x74\x6b\x72\x79\x70\x77\x7d\x6f\x76\x7b\x6f\ \x75\x7a\x73\x79\x7f\x6f\x76\x7d\x73\x79\x80\x6a\x71\x79\x43\x4e\ \x56\x19\x21\x27\x16\x1f\x24\x22\x29\x2d\x53\x5a\x5e\x76\x7a\x7e\ \x87\x8b\x8f\x88\x8c\x91\x88\x8c\x91\x8a\x8e\x93\x8c\x90\x95\x8b\ \x90\x94\x8a\x8e\x93\x8b\x8f\x94\x8f\x93\x98\x92\x96\x9b\x90\x94\ \x9a\x8f\x92\x97\x92\x96\x99\x92\x96\x9a\x96\x99\x9e\x9a\x9c\xa1\ \x9b\x9d\xa1\x98\x9b\xa0\x9a\x9d\xa2\x9e\xa1\xa5\x97\x9b\xa0\x89\ \x8e\x93\x85\x8a\x8f\x92\x95\x9a\x98\x9b\x9f\x8b\x90\x92\x83\x87\ \x89\x92\x95\x96\xa0\xa3\xa4\x96\x99\x9a\x8b\x8e\x8f\x90\x93\x93\ \xa0\xa1\xa1\x9e\xa0\xa0\x8e\x90\x91\x8a\x8c\x8d\x9c\x9d\x9d\xa3\ \xa3\xa3\x9d\x9f\x9f\x8c\x8f\x90\x91\x93\x94\xa6\xa6\xa6\xac\xab\ \xac\xad\xad\xad\xae\xae\xae\xae\xae\xae\xae\xae\xaf\xb1\xb0\xb2\ \xb2\xb0\xb2\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xaf\xb0\xb3\xb3\xb3\xb3\ \xb3\xb3\xb4\xb3\xb5\xb6\xb6\xb8\xb4\xb4\xb6\xb4\xb4\xb6\xb5\xb4\ \xb6\xb5\xb4\xb6\xb5\xb4\xb6\xb6\xb5\xb7\xba\xb9\xba\xbc\xbb\xbc\ \xbc\xbc\xbc\xbc\xbc\xbd\xbe\xbd\xbf\xbc\xbc\xbd\xbb\xbb\xbc\xba\ \xb9\xbb\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xbf\xbe\ \xc0\xbf\xbe\xc0\xc1\xc1\xc2\xc0\xbe\xc0\xc0\xbd\xbf\xc4\xc1\xc3\ \xc2\xc0\xc2\xc1\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xc2\xc1\xc3\xc1\ \xbf\xc1\x00\x00\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe2\xdd\ \xda\xe1\xdc\xda\xe0\xdb\xda\xdf\xda\xd9\xdc\xd7\xd6\xd8\xd2\xd2\ \xd5\xcd\xcd\xcd\xc5\xc4\xc1\xbb\xb8\xb1\xab\xa6\x91\x8d\x88\x6e\ \x6e\x6f\x53\x57\x5c\x41\x48\x50\x4f\x53\x5a\x6a\x69\x6c\x82\x7e\ \x7f\x93\x8f\x8e\x9d\x99\x99\xa2\x9f\x9e\xa2\xa0\xa0\xa4\xa2\xa2\ \xa4\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa2\xa0\x9f\xa1\x9c\x9d\x9e\x98\ \x9a\x9c\x96\x98\x9a\x92\x95\x98\x8c\x90\x93\x88\x8b\x8f\x7b\x7e\ \x82\x67\x6d\x71\x40\x49\x50\x28\x2f\x33\x28\x2e\x32\x35\x38\x3e\ \x53\x55\x5a\x64\x66\x6b\x6f\x72\x76\x7a\x7e\x82\x7b\x80\x83\x7a\ \x80\x84\x79\x7f\x83\x7a\x7f\x83\x7a\x7f\x84\x7a\x7f\x84\x7a\x7f\ \x84\x7b\x80\x85\x7b\x82\x87\x7d\x83\x89\x7c\x82\x87\x78\x80\x85\ \x78\x80\x87\x79\x80\x86\x78\x7f\x87\x76\x7d\x84\x74\x7b\x82\x6e\ \x75\x7c\x6d\x74\x7a\x71\x77\x7d\x71\x77\x7e\x71\x76\x7d\x73\x79\ \x80\x74\x7a\x80\x6b\x72\x78\x5b\x62\x69\x42\x4c\x55\x1f\x28\x31\ \x21\x2c\x33\x36\x40\x44\x5b\x62\x64\x74\x78\x7c\x83\x87\x8c\x89\ \x8d\x92\x89\x8d\x92\x8b\x8f\x93\x8b\x8f\x93\x8a\x8f\x93\x8b\x90\ \x94\x8a\x8e\x93\x8f\x93\x97\x91\x95\x9a\x92\x95\x9a\x91\x94\x99\ \x92\x95\x99\x95\x98\x9c\x97\x9a\x9e\x9a\x9d\xa1\x9b\x9e\xa2\x9a\ \x9d\xa1\x9e\xa1\xa5\x9f\xa2\xa6\x9f\xa3\xa7\x99\x9d\xa1\x8c\x91\ \x95\x85\x88\x8d\x90\x93\x97\x97\x9b\x9e\x91\x94\x97\x87\x8a\x8e\ \x90\x92\x94\x9d\x9f\xa0\x9c\x9f\xa0\x8c\x8f\x90\x8d\x8f\x8f\x9e\ \x9e\x9e\xa1\xa2\xa2\x93\x95\x95\x88\x8a\x8b\x95\x97\x98\xa4\xa5\ \xa5\xa2\xa3\xa4\x90\x91\x92\x8e\x8e\x90\x9d\x9c\x9d\xab\xab\xab\ \xb0\xb0\xb0\xaf\xaf\xaf\xad\xad\xad\xae\xae\xae\xb1\xb0\xb1\xb1\ \xb0\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xaf\xb0\xb1\xb0\xb2\xb4\xb3\ \xb5\xb6\xb6\xb7\xb6\xb5\xb7\xb6\xb5\xb8\xb7\xb6\xb8\xb6\xb5\xb7\ \xb8\xb7\xb9\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbb\xba\xba\xba\xba\ \xba\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xbe\xbd\ \xbf\xbc\xbb\xbd\xba\xb9\xba\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\ \xc3\xc3\xc4\xc2\xc1\xc2\xc1\xbf\xc1\xc2\xc1\xc3\xc2\xc1\xc3\xc0\ \xbf\xc0\xc2\xc1\xc3\xc3\xc2\xc4\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ \x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe1\xdc\xdb\xe0\xdc\xda\ \xe0\xdb\xda\xdd\xd8\xd7\xdb\xd5\xd5\xd7\xcf\xcf\xd2\xcb\xc9\xc8\ \xc0\xbd\xbb\xb5\xaf\xa6\xa0\x9b\x82\x81\x7e\x64\x69\x6b\x49\x51\ \x56\x42\x47\x4e\x58\x59\x5e\x75\x73\x74\x8c\x88\x87\x97\x94\x93\ \x9e\x9a\x9a\xa3\x9f\x9f\xa3\xa0\xa0\xa5\xa3\xa3\xa4\xa3\xa5\xa2\ \xa1\xa3\x9f\x9e\xa0\x9f\x9f\xa1\x9a\x9b\x9d\x97\x98\x9c\x94\x95\ \x99\x91\x93\x97\x8b\x8e\x92\x88\x8b\x8f\x7d\x80\x85\x65\x6a\x6f\ \x4d\x56\x5d\x2d\x37\x3d\x26\x30\x36\x20\x27\x2e\x41\x46\x4c\x5f\ \x62\x67\x6a\x6d\x72\x76\x7a\x80\x79\x7d\x82\x7c\x80\x85\x7a\x7f\ \x85\x7a\x7f\x84\x7a\x80\x85\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\ \x7c\x82\x87\x7c\x83\x88\x7a\x80\x85\x7a\x80\x86\x78\x80\x85\x78\ \x80\x87\x79\x81\x87\x79\x80\x87\x7a\x80\x87\x76\x7c\x83\x71\x77\ \x7d\x6f\x75\x7b\x71\x76\x7c\x72\x78\x7e\x6f\x75\x7c\x73\x79\x7e\ \x66\x6d\x73\x46\x51\x5a\x26\x32\x3c\x1a\x25\x2d\x23\x2d\x35\x4e\ \x56\x5d\x6f\x75\x77\x76\x7b\x7e\x7b\x7f\x83\x86\x89\x8e\x8b\x8f\ \x93\x8b\x90\x94\x8b\x90\x94\x8b\x90\x94\x8a\x90\x93\x8c\x90\x93\ \x8f\x93\x96\x91\x95\x99\x91\x94\x98\x90\x93\x97\x94\x97\x9b\x98\ \x9b\x9f\x98\x9b\x9f\x99\x9c\xa0\x9a\x9d\xa2\x9c\x9f\xa3\x9d\xa0\ \xa4\x9d\xa0\xa4\x9f\xa2\xa6\x9f\xa3\xa6\x9a\x9f\xa2\x8b\x90\x93\ \x86\x8a\x8e\x8f\x91\x95\x9a\x9d\x9e\x93\x95\x9a\x86\x89\x8d\x8d\ \x8f\x90\x9d\x9f\x9f\x9d\x9f\xa0\x8f\x92\x93\x8d\x8f\x90\x98\x98\ \x97\xa0\xa0\xa0\x99\x9b\x9c\x8e\x91\x92\x90\x91\x92\xa2\xa2\xa3\ \xa4\xa5\xa6\x97\x98\x99\x8d\x8e\x8e\x9a\x9b\x9b\xac\xab\xab\xb1\ \xb0\xb0\xae\xae\xae\xb0\xb0\xb0\xb1\xb1\xb2\xb0\xaf\xb1\xae\xad\ \xae\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\ \xb6\xb5\xb8\xb8\xb7\xb9\xb7\xb8\xb9\xb8\xb8\xba\xb8\xb7\xb9\xb8\ \xb7\xb9\xba\xb9\xba\xb9\xb9\xb9\xb5\xb5\xb5\xb9\xb9\xb9\xbc\xbc\ \xbc\xbc\xbb\xbd\xbf\xbe\xbe\xbe\xbd\xbe\xba\xb9\xbb\xbc\xbc\xbd\ \xbd\xbc\xbd\xbc\xbc\xbd\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc1\xc2\xc0\ \xbf\xc1\xc1\xc0\xc1\xc3\xc1\xc3\xc2\xbf\xc1\xc1\xbe\xc0\xc3\xc2\ \xc4\xc2\xc1\xc3\xc1\xc0\xc2\xc1\xbf\xc1\x00\x00\x00\xe3\xdd\xdb\ \xe3\xdc\xd9\xe2\xdd\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xdf\xda\xd9\xdc\ \xd7\xd6\xd9\xd4\xd3\xd6\xd0\xcf\xce\xc7\xc4\xc4\xbc\xb6\xb6\xaf\ \xa9\x9a\x96\x91\x77\x79\x78\x58\x5f\x63\x43\x4b\x51\x48\x4c\x53\ \x63\x64\x67\x7e\x7b\x7c\x90\x8d\x8c\x9a\x98\x97\x9f\x9d\x9d\xa3\ \xa0\xa0\xa2\xa0\xa0\xa5\xa3\xa5\xa3\xa1\xa3\xa2\xa1\xa3\xa1\xa0\ \xa2\x9d\x9c\x9e\x98\x9a\x9c\x94\x96\x9a\x91\x93\x97\x90\x93\x97\ \x8e\x91\x95\x88\x8b\x90\x7d\x80\x85\x61\x66\x6b\x4f\x58\x5f\x3b\ \x46\x4d\x37\x43\x4c\x3b\x46\x50\x40\x4a\x52\x5c\x61\x67\x6b\x6e\ \x73\x74\x78\x7d\x76\x7a\x7f\x7c\x80\x85\x7b\x7f\x84\x7b\x80\x85\ \x7a\x80\x85\x79\x7f\x84\x79\x7f\x84\x79\x7f\x84\x7b\x81\x86\x7a\ \x82\x86\x7a\x82\x86\x7b\x82\x88\x78\x80\x85\x79\x81\x87\x79\x81\ \x86\x79\x81\x87\x7b\x82\x89\x7b\x82\x88\x76\x7e\x83\x71\x78\x7d\ \x70\x75\x7a\x71\x77\x7c\x6d\x73\x79\x6d\x73\x79\x67\x6d\x73\x4b\ \x57\x60\x1a\x28\x33\x19\x25\x30\x27\x33\x3e\x56\x5e\x66\x72\x77\ \x7c\x7d\x81\x84\x79\x7d\x81\x7b\x80\x84\x86\x8a\x8e\x8d\x91\x95\ \x8b\x90\x93\x8a\x8f\x93\x8b\x8f\x93\x8d\x91\x96\x8e\x92\x96\x8f\ \x93\x97\x91\x94\x98\x91\x94\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9a\ \x9f\x97\x9a\x9f\x98\x9b\xa0\x9c\x9f\xa4\x9d\xa0\xa4\x9c\x9f\xa3\ \x9b\x9e\xa2\x9c\xa0\xa4\x9d\xa0\xa4\x99\x9e\xa1\x91\x95\x99\x87\ \x8b\x8e\x8c\x8e\x91\x99\x9b\x9d\x96\x99\x9c\x8a\x8d\x8e\x8d\x8f\ \x90\x9b\x9c\x9d\xa1\xa2\xa2\x94\x96\x96\x8b\x8d\x8e\x95\x96\x96\ \xa3\xa4\xa5\xa1\xa3\xa4\x91\x94\x95\x8f\x91\x92\x9f\x9f\xa0\xab\ \xab\xab\x9f\xa0\xa1\x93\x93\x94\x98\x97\x98\xa6\xa5\xa6\xaf\xae\ \xae\xb0\xb0\xb0\xb0\xb0\xaf\xb0\xb0\xaf\xad\xad\xad\xb0\xb0\xb0\ \xb2\xb2\xb2\xb0\xaf\xb0\xb1\xb0\xb3\xb2\xb1\xb3\xb4\xb3\xb5\xb7\ \xb5\xb7\xb8\xb8\xba\xba\xba\xbc\xb8\xb8\xb9\xb8\xb7\xb9\xba\xb9\ \xba\xb7\xb6\xb7\xb7\xb7\xb7\xba\xba\xba\xba\xba\xba\xba\xba\xbb\ \xbd\xbd\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbd\ \xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbd\xbc\xbe\xbe\xbd\xbf\xc2\xc1\ \xc3\xc1\xc0\xc2\xc0\xbe\xc0\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc2\xc4\ \xc3\xc1\xc3\xc0\xbe\xc0\x00\x00\x00\xe3\xdb\xdb\xe3\xdd\xda\xe1\ \xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xde\xd9\xd7\xdb\xd6\xd5\xd8\xd2\ \xd1\xd3\xcd\xcb\xcb\xc4\xbf\xc0\xb8\xb2\xae\xa8\xa2\x8d\x8a\x88\ \x6e\x70\x71\x50\x56\x5c\x41\x48\x4f\x50\x54\x59\x6d\x6c\x6f\x86\ \x81\x82\x94\x91\x91\x9c\x9a\x9a\xa1\x9f\x9f\xa4\xa3\xa2\xa3\xa0\ \xa1\xa4\xa3\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9f\x9e\xa0\x9b\x9a\x9c\ \x98\x99\x9b\x94\x96\x99\x92\x94\x98\x8f\x92\x96\x8e\x91\x95\x87\ \x8b\x8f\x79\x7d\x81\x60\x66\x6b\x4d\x56\x5d\x4b\x53\x5c\x4f\x58\ \x5f\x5c\x64\x6a\x57\x60\x66\x65\x69\x6e\x6b\x6f\x74\x73\x77\x7c\ \x75\x79\x7e\x79\x7d\x82\x7c\x80\x85\x7a\x7e\x83\x79\x7e\x83\x78\ \x7e\x83\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x7a\x7f\x84\x7c\x84\ \x88\x7a\x83\x89\x79\x82\x86\x78\x80\x86\x78\x7f\x85\x79\x80\x86\ \x7c\x82\x8a\x7d\x84\x8a\x7a\x82\x88\x75\x7c\x81\x6f\x75\x7a\x6e\ \x74\x79\x6f\x75\x7a\x6e\x74\x79\x66\x6c\x73\x59\x63\x6c\x30\x3e\ \x49\x28\x36\x42\x47\x51\x5c\x64\x6b\x71\x73\x77\x7c\x7d\x81\x85\ \x7d\x82\x85\x79\x7e\x81\x7d\x82\x85\x88\x8c\x8f\x8c\x90\x94\x8c\ \x90\x94\x8d\x91\x95\x8f\x93\x97\x92\x95\x9a\x8f\x93\x98\x91\x94\ \x99\x94\x97\x9c\x95\x98\x9d\x96\x9a\x9e\x99\x9c\xa0\x97\x9a\x9f\ \x98\x9b\xa0\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\x9b\x9e\xa2\x9c\ \x9f\xa3\x9e\xa1\xa5\xa0\xa4\xa7\x9d\xa2\xa5\x95\x9a\x9d\x89\x8d\ \x90\x8c\x8e\x92\x98\x9a\x9d\x9a\x9c\x9d\x90\x92\x94\x8c\x8e\x90\ \x99\x9a\x9a\xa4\xa3\xa5\x9c\x9e\x9f\x8e\x90\x91\x94\x95\x96\xa2\ \xa4\xa5\xa3\xa6\xa6\x94\x97\x98\x8e\x8f\x90\x9c\x9b\x9c\xa9\xa8\ \xaa\xa6\xa6\xa8\x98\x98\x9a\x94\x93\x95\xa1\xa0\xa1\xaf\xad\xad\ \xb1\xb0\xb0\xaf\xaf\xaf\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\ \xb0\xb0\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb4\xb3\xb5\xb7\xb6\ \xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xb9\xbc\xb8\xb7\xb9\ \xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xbc\xbb\xbc\xbd\xbd\xbe\xbd\ \xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbf\ \xc1\xbf\xbe\xc0\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\ \xc0\xbf\xc1\xc2\xc1\xc3\xc5\xc4\xc6\xc6\xc4\xc6\xc3\xc1\xc3\xc0\ \xbe\xc0\x00\x00\x00\xe2\xdb\xda\xe2\xdc\xda\xe1\xdb\xd8\xe0\xdb\ \xd8\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\xcf\xce\xd0\xc9\xc6\ \xc6\xbf\xba\xba\xb3\xad\xa2\x9d\x99\x7e\x7e\x7e\x62\x64\x67\x48\ \x4f\x55\x43\x4a\x50\x57\x5a\x5e\x77\x75\x76\x8a\x86\x85\x96\x92\ \x91\x9e\x9a\x9a\xa2\x9f\xa0\xa5\xa3\xa4\xa4\xa2\xa3\xa3\xa2\xa4\ \xa0\xa0\xa1\x9e\x9d\x9f\x9d\x9b\x9d\x99\x99\x9b\x98\x99\x9b\x93\ \x94\x99\x92\x94\x98\x90\x93\x97\x8e\x91\x96\x86\x89\x8d\x75\x7a\ \x7e\x5d\x64\x68\x46\x50\x55\x50\x58\x5e\x5e\x64\x68\x6d\x72\x75\ \x68\x6d\x71\x6f\x71\x76\x70\x74\x78\x6f\x73\x78\x73\x77\x7b\x76\ \x7a\x7f\x79\x7e\x82\x78\x7c\x81\x78\x7e\x83\x78\x7e\x83\x78\x7e\ \x83\x79\x7f\x84\x79\x7f\x84\x78\x7e\x83\x7b\x83\x88\x79\x83\x87\ \x7a\x83\x88\x78\x81\x85\x78\x80\x86\x7a\x81\x87\x7b\x82\x89\x7d\ \x83\x89\x7c\x83\x89\x79\x80\x86\x71\x77\x7c\x6f\x75\x79\x70\x76\ \x7b\x73\x77\x7c\x6c\x72\x78\x5d\x66\x6d\x4b\x55\x5f\x32\x3d\x4a\ \x50\x58\x61\x71\x76\x79\x7a\x7f\x82\x79\x7e\x81\x7e\x82\x85\x7f\ \x83\x87\x7b\x7f\x83\x7d\x82\x85\x87\x8b\x8f\x8d\x90\x94\x8f\x92\ \x96\x91\x95\x99\x94\x98\x9d\x93\x96\x9b\x91\x94\x99\x94\x96\x9b\ \x95\x98\x9d\x97\x9a\x9f\x98\x9b\x9f\x96\x9a\x9e\x99\x9c\xa0\x9e\ \xa0\xa5\x9d\xa0\xa5\x9d\xa0\xa4\x9e\xa1\xa5\x9b\x9e\xa2\x9d\xa0\ \xa4\xa0\xa3\xa7\xa0\xa4\xa8\xa0\xa4\xa5\x98\x9c\x9e\x8d\x90\x94\ \x88\x8b\x8e\x94\x96\x97\x9f\xa1\xa2\x96\x98\x99\x8f\x91\x92\x96\ \x97\x98\xa5\xa6\xa7\x9f\xa1\xa2\x92\x95\x96\x90\x92\x93\x9a\x9c\ \x9c\xa2\xa4\xa4\x9c\x9e\x9f\x8f\x90\x91\x94\x93\x94\xa5\xa5\xa7\ \xaa\xaa\xac\x9c\x9b\x9d\x93\x91\x93\x9b\x99\x9a\xaa\xa9\xa9\xb2\ \xb0\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb0\xb0\ \xb1\xb2\xb1\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb2\xb4\ \xb4\xb3\xb5\xb9\xb9\xba\xba\xb9\xbb\xb9\xb9\xb9\xb8\xb8\xb8\xb9\ \xb9\xb9\xb9\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbf\xbf\xbe\xc0\xbe\xbd\ \xbf\xbc\xbb\xbd\xbd\xbc\xbd\xbd\xbd\xbd\xbe\xbd\xbf\xc1\xc0\xc2\ \xc1\xc0\xc1\xbf\xbe\xc0\xc0\xbf\xc1\xc3\xc2\xc4\xc2\xc1\xc3\xc0\ \xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xbf\xbd\xbf\xbf\xbe\xc0\x00\x00\ \x00\xe1\xdc\xdb\xe1\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xde\xd9\xd8\ \xdb\xd6\xd5\xd8\xd2\xd2\xd6\xce\xcd\xcd\xc6\xc3\xc3\xbc\xb9\xb4\ \xae\xac\x96\x91\x90\x73\x75\x76\x56\x5b\x5f\x42\x49\x4e\x4a\x50\ \x56\x63\x65\x68\x80\x7d\x7e\x90\x8c\x8d\x9a\x97\x97\x9f\x9c\x9d\ \xa2\x9f\xa0\xa4\xa1\xa3\xa3\xa2\xa3\xa1\xa0\xa2\x9f\x9e\xa0\x9d\ \x9d\x9f\x9c\x9c\x9e\x98\x99\x9a\x96\x97\x98\x93\x94\x98\x91\x93\ \x97\x8d\x90\x94\x8d\x90\x94\x84\x88\x8c\x73\x78\x7c\x5c\x63\x68\ \x48\x51\x55\x53\x5a\x5f\x63\x68\x6c\x71\x75\x79\x76\x79\x7d\x6f\ \x73\x78\x72\x76\x7b\x6e\x71\x76\x72\x75\x79\x73\x77\x7c\x74\x78\ \x7d\x79\x7d\x82\x7a\x7e\x82\x78\x7d\x82\x76\x7c\x81\x77\x7d\x82\ \x77\x7d\x81\x77\x7d\x82\x7b\x83\x88\x7a\x81\x86\x7b\x82\x88\x79\ \x80\x86\x7a\x81\x88\x7c\x82\x89\x7b\x82\x88\x7c\x82\x88\x7d\x82\ \x89\x7b\x81\x87\x79\x7f\x84\x73\x7a\x7e\x70\x76\x7c\x72\x76\x7b\ \x74\x79\x7e\x68\x6f\x75\x57\x61\x68\x49\x52\x5b\x52\x5a\x62\x70\ \x74\x78\x7f\x84\x87\x7c\x80\x84\x7a\x7f\x82\x7e\x82\x86\x7f\x83\ \x87\x7b\x81\x83\x80\x84\x87\x8b\x8e\x92\x90\x93\x98\x91\x94\x99\ \x93\x96\x9b\x95\x98\x9d\x93\x96\x9b\x91\x94\x99\x95\x99\x9e\x97\ \x9a\x9f\x97\x9b\xa0\x96\x9b\x9f\x99\x9d\xa1\x9d\xa0\xa5\x9d\xa0\ \xa5\x9d\xa0\xa4\x9d\xa0\xa4\x9c\x9f\xa3\x9d\xa0\xa4\x9e\xa0\xa4\ \xa2\xa5\xa9\xa3\xa6\xa9\xa1\xa4\xa7\x98\x9c\xa0\x8c\x90\x93\x88\ \x8b\x8d\x96\x98\x9a\xa1\xa2\xa4\x99\x9c\x9e\x8c\x8e\x91\x92\x93\ \x95\xa3\xa3\xa4\xa5\xa7\xa8\x96\x99\x9a\x8b\x8d\x8d\x95\x96\x96\ \xa5\xa5\xa5\xa1\xa3\xa3\x92\x92\x93\x93\x91\x94\xa1\xa0\xa2\xaa\ \xa9\xaa\xa2\xa1\xa2\x93\x93\x94\x93\x93\x93\xa5\xa3\xa3\xb2\xb0\ \xb0\xb2\xb2\xb2\xb1\xb0\xb0\xb3\xb3\xb4\xb3\xb2\xb3\xb3\xb2\xb4\ \xb3\xb2\xb3\xb4\xb3\xb6\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb6\ \xb5\xb6\xb8\xb8\xb9\xba\xb9\xba\xbb\xbb\xbc\xbb\xbb\xbb\xba\xba\ \xba\xba\xba\xba\xbd\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbe\xbd\xbe\ \xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbe\xbe\xbf\xc1\xc0\xc2\xc1\ \xc0\xc2\xc0\xbf\xc1\xc1\xc0\xc1\xc1\xc0\xc2\xbf\xbe\xc0\xc0\xbf\ \xc1\xbf\xbe\xc0\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\ \xe0\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\ \xd0\xce\xd1\xcb\xc8\xcb\xc5\xc2\xc0\xb9\xb8\xaa\xa4\xa3\x8c\x8a\ \x8a\x68\x6c\x6e\x4c\x52\x55\x43\x49\x50\x54\x58\x5d\x71\x70\x74\ \x88\x83\x85\x95\x91\x92\x9d\x9a\x9c\xa2\x9f\xa1\xa3\xa0\xa2\xa4\ \xa1\xa3\xa3\xa2\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9a\x99\x9b\x9b\x9a\ \x9c\x97\x98\x99\x94\x96\x97\x93\x94\x97\x8e\x90\x93\x8c\x8f\x93\ \x8a\x8d\x91\x81\x84\x88\x6e\x73\x78\x57\x5f\x63\x4d\x56\x5a\x58\ \x60\x65\x66\x6c\x70\x71\x75\x79\x76\x79\x7d\x71\x76\x7a\x71\x75\ \x79\x73\x76\x7a\x6e\x72\x76\x71\x74\x7a\x72\x76\x7b\x79\x7d\x81\ \x79\x7e\x82\x77\x7d\x81\x77\x7d\x82\x77\x7e\x82\x75\x7b\x80\x7a\ \x80\x85\x79\x7f\x84\x7b\x81\x86\x7c\x83\x89\x79\x80\x85\x7b\x81\ \x86\x7c\x82\x87\x7b\x81\x87\x7d\x83\x89\x7d\x84\x8a\x7d\x84\x8b\ \x7e\x84\x89\x7a\x81\x86\x74\x7b\x7f\x71\x76\x7b\x75\x79\x7e\x76\ \x7a\x7f\x65\x6c\x72\x5b\x63\x69\x64\x6b\x70\x72\x77\x7b\x7b\x80\ \x84\x7e\x83\x87\x7b\x80\x83\x79\x7e\x81\x7f\x82\x86\x80\x85\x88\ \x7d\x83\x86\x80\x83\x88\x8b\x8e\x93\x92\x95\x99\x91\x94\x99\x94\ \x97\x9c\x92\x96\x9c\x91\x95\x9b\x94\x98\x9d\x97\x9b\xa0\x98\x9c\ \xa1\x99\x9d\xa1\x98\x9c\xa0\x9b\x9e\xa3\x9f\xa2\xa6\x9c\x9f\xa4\ \x9b\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\xa1\xa4\xa8\xa0\ \xa3\xa7\xa1\xa5\xa8\x9f\xa3\xa7\x9c\x9f\xa3\x92\x96\x99\x8a\x8d\ \x90\x94\x94\x97\xa4\xa4\xa6\x9f\xa0\xa2\x90\x92\x94\x91\x91\x93\ \xa2\xa3\xa4\xa9\xab\xac\x9b\x9d\x9d\x8f\x91\x91\x93\x93\x94\xa6\ \xa5\xa6\xaa\xaa\xaa\x9c\x9d\x9e\x91\x92\x94\x99\x98\x9a\xac\xa9\ \xaa\xa9\xa8\xa8\x99\x9a\x9a\x95\x95\x95\xa4\xa3\xa3\xb2\xb2\xb2\ \xb6\xb5\xb5\xb2\xb2\xb3\xb4\xb3\xb4\xb6\xb5\xb6\xb5\xb5\xb6\xb6\ \xb5\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb5\xb4\ \xb6\xbb\xba\xbb\xbc\xbb\xbc\xba\xba\xba\xbb\xbb\xbb\xba\xba\xba\ \xba\xb9\xbb\xbe\xbd\xbf\xc1\xbf\xc1\xc0\xbf\xc1\xbd\xbc\xbe\xbc\ \xbb\xbd\xbe\xbc\xbe\xc1\xbf\xc1\xc1\xc0\xc2\xc0\xbf\xc1\xc0\xbf\ \xc1\xc1\xc0\xc2\xc0\xbf\xc2\xc2\xc0\xc2\xc1\xc0\xc2\xc0\xbf\xc1\ \xc1\xc0\xc2\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\xe1\xdc\xdb\xe0\ \xdb\xda\xde\xd9\xd8\xdc\xd6\xd5\xd9\xd3\xd0\xd5\xce\xcb\xce\xc7\ \xc3\xc6\xbf\xbd\xba\xb4\xb4\xa0\x9a\x9b\x7f\x80\x80\x5d\x63\x63\ \x48\x4f\x52\x49\x4e\x54\x5d\x5e\x64\x7a\x76\x7a\x8e\x89\x8b\x98\ \x94\x96\x9d\x9b\x9c\xa1\x9f\xa0\xa5\xa2\xa4\xa3\xa0\xa2\xa4\xa2\ \xa3\x9f\x9d\x9f\x9d\x9c\x9e\x9b\x9a\x9c\x98\x97\x99\x97\x98\x9a\ \x91\x93\x97\x90\x93\x96\x8e\x90\x94\x8b\x8e\x92\x88\x8c\x8f\x80\ \x83\x87\x6c\x71\x75\x55\x5d\x61\x4e\x57\x5c\x5d\x64\x69\x69\x6d\ \x72\x75\x79\x7d\x70\x73\x78\x75\x78\x7d\x6e\x72\x77\x71\x74\x79\ \x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x75\x79\x7e\x77\x7c\x81\x78\ \x7d\x82\x76\x7b\x80\x76\x7c\x81\x78\x7e\x83\x7c\x82\x87\x79\x7f\ \x84\x7a\x81\x86\x7c\x83\x88\x7a\x82\x87\x7b\x81\x86\x7b\x81\x86\ \x7c\x82\x88\x7c\x82\x89\x7c\x83\x88\x7e\x85\x8a\x7e\x84\x8a\x7e\ \x85\x8a\x79\x7f\x84\x71\x77\x7c\x74\x78\x7d\x73\x78\x7d\x69\x6f\ \x74\x60\x68\x6d\x6e\x74\x79\x7c\x80\x85\x7b\x7f\x83\x7b\x7f\x84\ \x7f\x84\x87\x7c\x81\x84\x7b\x7f\x83\x81\x86\x89\x83\x88\x8b\x7e\ \x83\x86\x80\x83\x87\x8c\x8f\x93\x91\x94\x98\x94\x97\x9c\x94\x98\ \x9d\x95\x99\x9f\x96\x9a\x9f\x96\x9a\x9f\x97\x9b\xa0\x99\x9c\xa1\ \x9b\x9e\xa3\x9d\xa0\xa5\x9d\xa0\xa5\x9e\xa1\xa6\x9c\x9f\xa4\x9e\ \xa1\xa5\x9f\xa2\xa6\xa0\xa3\xa7\xa0\xa3\xa7\x9f\xa2\xa6\xa0\xa4\ \xa7\xa1\xa3\xa7\xa3\xa5\xa9\xa3\xa5\xa8\x9a\x9a\x9f\x8f\x8f\x93\ \x90\x91\x93\xa4\xa4\xa6\xa5\xa7\xa8\x96\x98\x9a\x90\x93\x94\x9d\ \x9f\xa0\xa9\xaa\xaa\xa3\xa3\xa4\x8f\x90\x91\x93\x93\x95\xa4\xa4\ \xa5\xab\xab\xac\x9f\xa0\xa2\x8e\x90\x91\x94\x93\x94\xa6\xa5\xa5\ \xae\xad\xad\xa5\xa5\xa5\x95\x95\x95\x99\x98\x98\xad\xab\xab\xb7\ \xb5\xb7\xb5\xb4\xb5\xb4\xb4\xb4\xb7\xb7\xb7\xb5\xb5\xb6\xb4\xb4\ \xb5\xb4\xb3\xb5\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb8\xba\xbb\xba\xbb\ \xb8\xb8\xb8\xba\xba\xba\xbd\xbd\xbd\xbc\xbb\xbb\xba\xba\xba\xbd\ \xbc\xbe\xc0\xbf\xc1\xc1\xc0\xc1\xbd\xbc\xbe\xbc\xbb\xbd\xbe\xbe\ \xbf\xc1\xc0\xc1\xc1\xbf\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc1\ \xc1\xc0\xc1\xbf\xbe\xc0\xc2\xbf\xc1\xc3\xc2\xc4\xc4\xc3\xc5\xc0\ \xc0\xc2\x00\x00\x00\xdf\xdb\xda\xe0\xdb\xda\xdf\xda\xd9\xdd\xd7\ \xd7\xdb\xd5\xd5\xd8\xd2\xd2\xd5\xce\xcb\xcc\xc5\xc2\xc1\xbb\xb8\ \xb0\xaa\xa8\x92\x8e\x8e\x70\x72\x71\x53\x5a\x5c\x46\x4d\x50\x4d\ \x50\x55\x68\x68\x6a\x81\x7d\x7e\x90\x8c\x8d\x9c\x99\x9a\xa1\x9f\ \xa0\xa1\x9f\xa0\xa3\xa0\xa2\xa4\xa1\xa3\xa0\x9e\xa0\x9e\x9d\x9f\ \x9c\x9b\x9d\x9d\x9c\x9e\x97\x96\x99\x93\x93\x97\x8f\x91\x93\x8e\ \x90\x94\x8c\x8f\x93\x89\x8c\x8f\x87\x8b\x8e\x7e\x83\x86\x71\x77\ \x7c\x64\x6c\x71\x55\x5e\x62\x63\x69\x6d\x6b\x6f\x75\x75\x78\x7c\ \x6f\x72\x77\x72\x75\x7a\x70\x73\x78\x6e\x71\x76\x70\x73\x78\x6c\ \x71\x76\x6f\x74\x78\x71\x75\x79\x75\x7b\x7f\x79\x7e\x83\x77\x7d\ \x82\x77\x7d\x82\x77\x7d\x82\x78\x7d\x82\x78\x7e\x83\x7c\x81\x86\ \x7b\x80\x85\x7c\x82\x88\x7c\x82\x87\x79\x7f\x84\x7a\x80\x85\x7b\ \x81\x86\x7b\x81\x86\x7d\x83\x88\x80\x86\x8b\x81\x87\x8c\x80\x86\ \x8b\x76\x7c\x81\x73\x79\x7e\x6a\x70\x75\x67\x6d\x72\x6a\x71\x76\ \x6e\x73\x78\x7a\x7e\x81\x7c\x81\x85\x79\x7e\x82\x7b\x80\x83\x82\ \x87\x8a\x7e\x82\x86\x7b\x7f\x84\x85\x88\x8c\x87\x8b\x8f\x7f\x83\ \x86\x82\x85\x89\x8f\x92\x97\x93\x96\x9a\x93\x96\x9b\x96\x9a\x9f\ \x94\x97\x9c\x95\x99\x9e\x97\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9c\ \x9f\xa4\x9e\xa1\xa5\x9e\xa1\xa5\x9b\x9e\xa3\x9e\xa1\xa5\x9f\xa2\ \xa6\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa2\xa5\xa9\xa4\xa7\xab\ \xa7\xa8\xac\xa8\xa9\xad\xa6\xa7\xab\x9e\x9f\xa3\x94\x95\x99\x92\ \x93\x97\xa2\xa3\xa5\xa8\xaa\xab\x9d\x9f\xa0\x91\x93\x94\x99\x99\ \x9b\xa8\xa8\xa9\xa7\xa8\xa8\x96\x97\x98\x90\x91\x92\x9b\x9a\x9b\ \xac\xac\xac\xa8\xa8\xaa\x97\x99\x9a\x93\x93\x95\xa5\xa4\xa4\xb0\ \xae\xae\xac\xab\xab\x95\x95\x95\x91\x91\x91\xa8\xa6\xa6\xb7\xb7\ \xb7\xb3\xb3\xb3\xb5\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb6\xb4\xb4\xb5\ \xb5\xb5\xb6\xb8\xb6\xb7\xb9\xb9\xba\xba\xba\xba\xb9\xb9\xb9\xb9\ \xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbc\xbd\xbd\xbd\xbd\xbc\xbe\xbe\xbd\ \xbe\xbf\xbe\xbf\xbb\xb9\xbb\xb9\xb8\xba\xbc\xbb\xbd\xc0\xbf\xc1\ \xc0\xbf\xc1\xc2\xc0\xc1\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbe\xbd\ \xbb\xbc\xbe\xbc\xbc\xbe\xbd\xbe\xbe\xbc\xbe\xbf\xbd\xbf\x00\x00\ \x00\xe0\xd9\xd7\xdf\xd9\xd7\xdf\xda\xd9\xdd\xd7\xd6\xda\xd4\xd4\ \xd6\xd0\xd0\xd2\xcb\xca\xcb\xc4\xc1\xbf\xb8\xb4\xa7\xa1\x9d\x86\ \x86\x82\x67\x6b\x6a\x4e\x55\x59\x46\x4e\x52\x56\x5a\x5c\x72\x6f\ \x70\x89\x84\x85\x95\x90\x91\x9c\x9a\x9a\xa1\x9f\xa0\xa3\xa0\xa1\ \xa2\x9f\xa1\xa3\xa0\xa2\xa0\x9f\xa1\x9c\x9b\x9d\x9b\x9a\x9c\x99\ \x98\x9b\x93\x93\x96\x93\x94\x98\x92\x93\x96\x90\x91\x95\x8d\x90\ \x93\x88\x8c\x8e\x85\x89\x8b\x81\x86\x89\x79\x7f\x82\x70\x77\x7a\ \x68\x6e\x73\x6b\x6f\x74\x70\x75\x78\x71\x75\x79\x70\x74\x78\x6b\ \x6f\x73\x6e\x71\x76\x6e\x71\x76\x70\x72\x77\x6d\x71\x76\x6f\x73\ \x78\x72\x76\x79\x74\x78\x7c\x78\x7c\x81\x77\x7d\x82\x76\x7d\x82\ \x76\x7b\x80\x78\x7d\x82\x7a\x7f\x84\x7a\x7f\x84\x7b\x81\x86\x7c\ \x82\x87\x7c\x82\x87\x7b\x81\x86\x7d\x83\x87\x7c\x82\x88\x7c\x82\ \x87\x7d\x83\x88\x7d\x83\x88\x7d\x83\x87\x7e\x86\x8a\x7e\x87\x8b\ \x79\x80\x85\x68\x71\x75\x61\x6a\x6e\x6c\x71\x76\x72\x78\x7c\x76\ \x7c\x7f\x7c\x81\x85\x7d\x81\x86\x79\x7d\x81\x7e\x83\x85\x81\x86\ \x89\x7e\x83\x86\x7c\x80\x83\x84\x89\x8c\x85\x88\x8c\x7f\x83\x87\ \x84\x87\x8c\x8f\x92\x96\x93\x96\x9b\x95\x98\x9d\x95\x98\x9d\x93\ \x97\x9c\x96\x9a\x9e\x99\x9d\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\ \xa5\xa0\xa3\xa7\x9f\xa2\xa6\x9f\xa2\xa6\x9e\xa1\xa5\x9d\xa0\xa5\ \x9f\xa2\xa6\xa1\xa4\xa8\xa2\xa5\xaa\xa5\xa8\xac\xa4\xa6\xaa\xa4\ \xa5\xa8\xa9\xaa\xad\xac\xad\xb0\xa2\xa4\xa7\x96\x97\x9b\x92\x93\ \x96\x9f\x9f\xa2\xab\xac\xad\xa2\xa4\xa5\x94\x94\x97\x92\x92\x94\ \xa6\xa7\xa7\xa9\xab\xac\x9d\x9f\xa0\x90\x91\x92\x96\x96\x98\xaa\ \xa9\xab\xac\xac\xae\x9e\x9f\xa0\x93\x93\x93\x9e\x9d\x9d\xb0\xad\ \xae\xac\xac\xac\x9e\x9e\x9e\x96\x95\x95\xa1\xa0\xa0\xb1\xb1\xb1\ \xb4\xb4\xb5\xb5\xb5\xb6\xb6\xb5\xb6\xb5\xb5\xb6\xb6\xb6\xb7\xb7\ \xb5\xb7\xb6\xb5\xb7\xb7\xb6\xb8\xb9\xb8\xba\xbb\xbb\xbb\xba\xba\ \xba\xbd\xbd\xbd\xbf\xbf\xbf\xbc\xbc\xbd\xbc\xbb\xbd\xbb\xba\xbc\ \xb9\xb8\xba\xb9\xb8\xba\xbd\xbb\xbd\xbf\xbd\xbf\xbf\xbd\xbf\xc3\ \xc1\xc3\xc2\xbf\xc0\xc0\xbd\xbe\xbb\xb7\xb8\xba\xb8\xb8\xbd\xbb\ \xbb\xbd\xbc\xbc\xbb\xbb\xbb\xbf\xbd\xc0\x00\x00\x00\xe1\xd9\xd9\ \xdf\xd7\xd7\xdd\xd6\xd6\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\xcc\xce\ \xc7\xc4\xc5\xbe\xbb\xb7\xb1\xad\x9c\x98\x94\x7b\x7e\x7c\x5b\x61\ \x61\x45\x4b\x50\x49\x4f\x51\x5f\x61\x63\x7b\x77\x78\x8d\x88\x89\ \x99\x94\x95\x9f\x9b\x9b\xa2\xa0\xa0\xa4\xa2\xa2\xa2\x9f\xa1\xa2\ \x9e\xa0\x9f\x9e\xa0\x9c\x9b\x9d\x9c\x9b\x9d\x98\x98\x9c\x92\x92\ \x96\x91\x92\x96\x90\x91\x95\x90\x92\x96\x8b\x8e\x92\x88\x8b\x8f\ \x86\x89\x8d\x83\x88\x8b\x7f\x84\x87\x7c\x82\x85\x76\x7c\x7f\x75\ \x7b\x7e\x75\x79\x7c\x69\x6e\x72\x67\x6b\x70\x63\x66\x6b\x66\x69\ \x6e\x69\x6d\x71\x61\x65\x6a\x68\x6c\x71\x6a\x6e\x73\x6f\x74\x77\ \x6f\x73\x78\x73\x77\x7c\x76\x7b\x80\x76\x7c\x80\x78\x7e\x83\x79\ \x7f\x84\x78\x7e\x83\x7b\x7f\x84\x79\x80\x85\x79\x7f\x84\x79\x7f\ \x84\x7c\x82\x87\x7d\x83\x88\x7c\x82\x87\x7c\x82\x87\x7e\x84\x89\ \x7e\x84\x89\x7d\x84\x88\x7f\x85\x8a\x80\x86\x8b\x7c\x82\x87\x69\ \x71\x76\x64\x6d\x71\x6c\x72\x77\x7b\x80\x84\x78\x7e\x82\x77\x7d\ \x81\x7d\x81\x85\x7f\x84\x87\x7b\x80\x83\x7f\x84\x86\x84\x89\x8b\ \x80\x85\x87\x80\x85\x86\x87\x8b\x8c\x87\x8b\x8e\x81\x85\x89\x82\ \x86\x8a\x8e\x91\x95\x94\x97\x9c\x94\x98\x9d\x92\x96\x9b\x97\x9a\ \x9e\x99\x9c\xa0\x9c\x9f\xa3\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\ \x9e\xa1\xa5\x9e\xa1\xa5\xa1\xa4\xa8\xa0\xa3\xa7\xa0\xa3\xa7\xa2\ \xa4\xa8\xa3\xa5\xa9\xa4\xa5\xa9\xa4\xa6\xa9\xa4\xa5\xa9\xa9\xaa\ \xad\xaa\xaa\xad\xa8\xa9\xac\xa6\xa8\xac\x99\x9b\xa0\x8f\x92\x95\ \x9a\x9a\x9c\xa9\xaa\xab\xa9\xa9\xab\x9a\x9c\x9d\x90\x92\x93\xa1\ \xa2\xa3\xab\xab\xab\xa6\xa7\xa7\x96\x98\x99\x94\x94\x95\xa7\xa6\ \xa7\xaf\xae\xae\xa5\xa5\xa5\x94\x94\x94\x99\x98\x98\xa9\xa8\xa8\ \xb3\xb3\xb3\xa7\xa8\xa8\x96\x97\x97\x94\x94\x94\xa9\xa8\xa8\xb4\ \xb2\xb2\xb6\xb5\xb5\xb5\xb5\xb5\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\ \xb9\xb7\xb6\xb8\xb4\xb3\xb5\xb7\xb5\xb5\xb8\xb8\xb8\xbc\xbc\xbc\ \xbb\xbb\xbb\xba\xb9\xb9\xbc\xbb\xbb\xbb\xbb\xbc\xbb\xba\xbc\xbe\ \xbc\xbe\xbd\xbb\xbd\xbc\xba\xbc\xbe\xbc\xbe\xc2\xc0\xc1\xc3\xc0\ \xc1\xc0\xbe\xbe\xbd\xbb\xbb\xba\xb8\xb8\xbb\xb9\xb9\xbb\xb9\xb9\ \xbc\xbc\xbc\xbf\xbe\xc0\x00\x00\x00\xdf\xd7\xd7\xde\xd7\xd5\xdd\ \xd5\xd5\xda\xd3\xd2\xd7\xcf\xcf\xd3\xcb\xcb\xcb\xc3\xc1\xc1\xb9\ \xb8\xaf\xa7\xa7\x90\x8c\x8b\x6d\x71\x70\x52\x59\x5b\x44\x4a\x4f\ \x51\x56\x59\x6a\x6b\x6d\x82\x7e\x7f\x94\x8f\x90\x9b\x97\x98\x9f\ \x9c\x9d\xa0\x9f\x9e\xa2\xa0\xa1\xa2\xa0\xa2\x9f\x9d\x9f\x9c\x9b\ \x9d\x9b\x9a\x9c\x99\x98\x9a\x96\x95\x98\x93\x92\x96\x8c\x8e\x91\ \x8d\x8e\x92\x8c\x8e\x92\x89\x8c\x90\x88\x8c\x8f\x87\x8a\x8d\x83\ \x88\x8b\x83\x88\x8b\x81\x86\x89\x7d\x83\x86\x77\x7c\x7f\x75\x7a\ \x7d\x65\x69\x6d\x50\x54\x59\x50\x54\x59\x58\x5b\x5f\x5c\x60\x63\ \x55\x59\x5d\x53\x58\x5c\x62\x66\x6a\x6b\x70\x73\x6d\x72\x76\x6f\ \x74\x78\x76\x7a\x7f\x79\x7c\x81\x79\x7d\x82\x79\x7d\x82\x77\x7c\ \x81\x79\x7e\x83\x7a\x80\x85\x77\x7d\x82\x78\x7e\x83\x7c\x82\x88\ \x7d\x83\x89\x7b\x81\x86\x7b\x81\x86\x7e\x83\x88\x80\x86\x8a\x7e\ \x85\x8a\x80\x87\x8c\x81\x87\x8b\x76\x7c\x81\x6e\x77\x7b\x69\x72\ \x76\x6f\x76\x7a\x7a\x7f\x84\x7c\x81\x85\x77\x7c\x81\x77\x7c\x7f\ \x80\x84\x88\x80\x85\x88\x7c\x80\x83\x80\x84\x86\x85\x89\x8a\x81\ \x86\x88\x80\x84\x87\x89\x8c\x90\x89\x8d\x91\x82\x87\x8b\x81\x84\ \x88\x90\x93\x97\x96\x99\x9d\x96\x9a\x9e\x95\x99\x9d\x97\x9a\x9e\ \x9b\x9e\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\xa0\ \xa3\xa7\xa3\xa4\xa8\xa1\xa4\xa8\xa0\xa3\xa7\xa2\xa4\xa8\xa3\xa5\ \xa9\xa6\xa8\xaa\xa7\xa8\xab\xa8\xaa\xad\xa7\xa8\xac\xa8\xa9\xac\ \xa8\xa9\xac\xac\xad\xb1\xab\xac\xb0\xa1\xa2\xa7\x92\x93\x97\x94\ \x95\x99\xa5\xa6\xa8\xa7\xa9\xaa\x9a\x9b\x9c\x92\x93\x94\x9d\x9c\ \x9c\xac\xad\xac\xac\xad\xad\x9c\x9c\x9d\x94\x92\x94\xa0\x9f\xa0\ \xb0\xaf\xaf\xad\xae\xae\x9b\x9c\x9c\x93\x92\x92\xa1\xa1\xa1\xae\ \xae\xae\xab\xab\xab\xa0\xa0\xa0\x95\x94\x94\xa1\x9e\x9e\xb3\xb2\ \xb1\xb9\xb8\xb8\xb8\xb6\xb8\xb9\xb7\xb9\xba\xb8\xba\xb8\xb6\xb7\ \xb4\xb2\xb3\xb3\xb0\xb3\xb4\xb4\xb4\xbe\xbd\xbd\xbc\xbc\xbc\xbc\ \xbc\xbc\xbc\xbc\xbc\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbd\xbf\xbf\xbe\ \xbf\xbf\xbd\xbf\xc1\xbe\xbf\xc1\xbf\xc0\xc1\xbf\xbf\xbe\xbb\xbd\ \xbd\xbb\xbc\xbc\xba\xba\xbd\xbb\xbc\xbc\xba\xba\xbf\xbc\xbd\xbf\ \xbd\xbf\x00\x00\x00\xdf\xd7\xd7\xdf\xd7\xd7\xdc\xd5\xd5\xd9\xd4\ \xd3\xd7\xcf\xcf\xd2\xca\xca\xc8\xc0\xbe\xba\xb1\xb1\xa6\x9f\x9f\ \x82\x81\x81\x60\x65\x67\x4b\x53\x58\x46\x4c\x50\x57\x5b\x5d\x73\ \x74\x75\x88\x85\x86\x96\x92\x94\x9d\x98\x9a\xa0\x9e\x9e\xa1\x9f\ \x9f\xa0\x9e\x9f\xa1\x9e\xa0\x9e\x9c\x9e\x9c\x9c\x9d\x99\x98\x9a\ \x98\x97\x99\x92\x93\x96\x8f\x91\x93\x8d\x8d\x90\x8c\x8d\x91\x8a\ \x8b\x8f\x87\x89\x8c\x85\x87\x8a\x83\x87\x8a\x84\x89\x8c\x82\x87\ \x8a\x80\x85\x88\x7c\x81\x84\x7b\x81\x84\x76\x7b\x7e\x60\x65\x69\ \x3d\x44\x4c\x39\x41\x48\x49\x4d\x52\x4f\x52\x55\x45\x4b\x4e\x3c\ \x42\x48\x55\x59\x5e\x67\x6c\x6f\x6c\x70\x75\x6c\x71\x77\x73\x78\ \x7c\x78\x7c\x81\x7a\x7e\x83\x7b\x7f\x84\x77\x7c\x80\x79\x7d\x82\ \x79\x7f\x84\x78\x7e\x83\x7a\x80\x85\x7c\x82\x87\x7d\x83\x89\x7d\ \x83\x88\x7b\x81\x85\x7b\x7f\x83\x7d\x82\x85\x80\x86\x8b\x82\x88\ \x8d\x7e\x85\x89\x74\x7b\x80\x6d\x76\x7a\x73\x7c\x7f\x7a\x81\x85\ \x77\x7e\x82\x79\x7e\x82\x7e\x84\x87\x78\x7e\x83\x7a\x7f\x82\x82\ \x87\x8a\x81\x86\x89\x7c\x80\x83\x82\x86\x88\x86\x8b\x8d\x82\x87\ \x8a\x7f\x82\x86\x89\x8c\x90\x89\x8e\x91\x7f\x84\x87\x80\x83\x87\ \x8f\x92\x96\x96\x99\x9d\x96\x99\x9d\x98\x9b\x9f\x99\x9d\xa0\x9b\ \x9f\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\xa0\xa3\xa7\xa3\xa3\ \xa7\xa1\xa3\xa7\xa1\xa4\xa8\xa2\xa4\xa8\xa4\xa6\xaa\xa2\xa3\xa7\ \xa7\xa8\xab\xa8\xaa\xac\xa6\xa8\xaa\xa7\xa8\xaa\xa9\xa9\xab\xad\ \xad\xb0\xad\xae\xb1\xad\xae\xb3\xa4\xa4\xa9\x97\x98\x9c\x8f\x90\ \x93\x9e\x9d\x9e\xab\xab\xab\xa2\xa3\xa4\x93\x95\x96\x9b\x9b\x9b\ \xac\xac\xac\xb0\xaf\xb1\xa3\xa2\xa4\x95\x94\x96\x9c\x9a\x9c\xab\ \xab\xab\xb1\xb2\xb2\xa2\xa5\xa4\x95\x95\x97\x98\x97\x97\xad\xac\ \xac\xb3\xb2\xb1\xa9\xa8\xa9\x98\x97\x98\x9e\x9c\x9d\xae\xac\xad\ \xb7\xb5\xb6\xb9\xb6\xb8\xb8\xb5\xb8\xba\xb7\xb9\xb7\xb4\xb7\xb7\ \xb5\xb7\xb5\xb4\xb4\xb9\xb8\xb9\xbd\xbb\xbd\xbd\xbc\xbe\xba\xba\ \xbb\xb9\xb8\xb9\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbc\xbf\xbe\xbd\xbe\ \xbf\xbd\xbe\xbc\xba\xbc\xbc\xba\xba\xbb\xb8\xb9\xbc\xba\xba\xbc\ \xba\xba\xbc\xba\xbb\xbd\xbb\xbc\xbf\xbc\xbe\xc1\xbf\xc1\x00\x00\ \x00\xde\xd6\xd5\xde\xd6\xd6\xdb\xd4\xd4\xd8\xd2\xd1\xd4\xcd\xcd\ \xce\xc6\xc6\xc5\xbd\xbc\xb6\xad\xac\x9a\x94\x94\x77\x77\x78\x5a\ \x5f\x64\x48\x50\x58\x4d\x52\x56\x62\x63\x65\x7b\x7a\x7a\x8d\x8a\ \x8a\x99\x93\x95\x9e\x99\x9a\xa2\x9d\x9e\xa1\x9f\xa0\xa0\x9e\x9e\ \xa0\x9e\x9e\x9e\x9d\x9e\x9b\x9a\x9c\x9a\x99\x9b\x96\x95\x97\x93\ \x93\x95\x8f\x92\x93\x8d\x8f\x91\x8a\x8c\x8f\x87\x89\x8c\x85\x88\ \x8a\x85\x88\x8c\x84\x87\x8c\x82\x86\x8a\x81\x85\x88\x80\x86\x89\ \x7d\x83\x86\x7d\x82\x85\x71\x76\x78\x58\x5f\x63\x2f\x39\x41\x2b\ \x35\x3e\x38\x3e\x45\x3e\x43\x47\x38\x3e\x43\x34\x3c\x44\x47\x4d\ \x53\x68\x6c\x6f\x6c\x72\x76\x6f\x75\x7a\x71\x75\x7a\x75\x79\x7e\ \x7a\x7e\x83\x77\x7b\x80\x77\x7d\x81\x79\x7d\x82\x78\x7e\x83\x78\ \x7e\x83\x7a\x80\x85\x7b\x81\x86\x7d\x83\x88\x7e\x84\x89\x75\x7a\ \x7e\x6c\x71\x75\x75\x79\x7c\x7f\x84\x89\x83\x88\x8d\x7e\x84\x89\ \x78\x80\x85\x73\x7c\x80\x7b\x82\x85\x83\x8a\x8d\x7c\x82\x86\x76\ \x7c\x81\x7a\x7f\x84\x80\x85\x8a\x7c\x81\x84\x7d\x82\x85\x84\x89\ \x8b\x82\x87\x8a\x7c\x81\x82\x82\x86\x86\x8a\x8e\x8f\x85\x8a\x8d\ \x81\x85\x89\x8a\x8d\x91\x8b\x8f\x92\x84\x89\x8c\x83\x86\x8a\x8e\ \x90\x94\x97\x9a\x9e\x98\x9b\x9f\x98\x9b\x9d\x9b\x9e\xa1\x9e\xa0\ \xa4\xa0\xa2\xa6\x9f\xa1\xa4\xa2\xa3\xa7\xa2\xa3\xa7\xa2\xa5\xa9\ \xa3\xa4\xa8\xa1\xa3\xa7\xa2\xa3\xa7\xa1\xa2\xa6\xa3\xa5\xa7\xa8\ \xab\xab\xa8\xa9\xaa\xa9\xa8\xaa\xac\xab\xae\xac\xad\xaf\xac\xad\ \xae\xac\xad\xb0\xab\xac\xaf\xaa\xab\xad\x9c\x9d\xa1\x92\x92\x94\ \x9d\x9d\x9d\xad\xad\xad\xa7\xa8\xa8\x9a\x9c\x9c\x96\x97\x98\xa5\ \xa5\xa6\xb0\xaf\xb1\xab\xaa\xac\x98\x99\x9a\x96\x95\x97\xa6\xa6\ \xa6\xb4\xb5\xb5\xb0\xb0\xb0\x9b\x9a\x9b\x97\x96\x96\xa8\xa4\xa4\ \xb3\xb2\xb2\xb1\xb1\xb2\x9d\x9d\x9e\x95\x94\x96\xa2\xa0\xa2\xaf\ \xad\xae\xb7\xb4\xb6\xba\xb9\xbb\xba\xb9\xbb\xba\xb8\xba\xb7\xb5\ \xb6\xb9\xb9\xb9\xba\xb9\xbb\xbc\xbc\xbd\xbb\xbb\xbc\xb9\xb8\xba\ \xbb\xbb\xbc\xbd\xbc\xbd\xbe\xbd\xbf\xbe\xbd\xbf\xbf\xbe\xc0\xc1\ \xc0\xc2\xbf\xbd\xbe\xbb\xb8\xb9\xbb\xb8\xba\xc0\xbd\xbf\xbd\xba\ \xbc\xc0\xbe\xc0\xbf\xbd\xbf\xc2\xc0\xc2\x00\x00\x00\xde\xd7\xd5\ \xde\xd6\xd6\xda\xd2\xd2\xd8\xd0\xd0\xd3\xcb\xcb\xcb\xc3\xc3\xc0\ \xb8\xb8\xab\xa4\xa4\x8d\x8a\x89\x6d\x6e\x71\x50\x56\x5c\x46\x4e\ \x55\x54\x58\x5d\x6e\x6d\x6f\x86\x82\x83\x92\x8d\x8e\x9a\x95\x96\ \x9e\x99\x9a\xa2\x9f\xa0\xa2\x9f\xa0\x9f\x9c\x9e\x9d\x9a\x9c\x9d\ \x9b\x9d\x9a\x99\x9b\x97\x96\x98\x94\x93\x95\x91\x93\x94\x8c\x8e\ \x90\x8c\x8d\x91\x89\x8d\x91\x86\x89\x8d\x84\x87\x8a\x83\x86\x8a\ \x80\x84\x88\x7f\x84\x87\x7f\x84\x87\x7e\x84\x87\x7b\x81\x86\x7a\ \x7f\x83\x6c\x72\x76\x4e\x57\x5b\x26\x32\x3b\x26\x31\x38\x30\x39\ \x40\x34\x3a\x40\x29\x30\x37\x31\x3a\x41\x4c\x52\x59\x67\x6b\x70\ \x6d\x72\x77\x6d\x73\x78\x70\x74\x7a\x71\x76\x7b\x76\x7b\x80\x79\ \x7d\x82\x7a\x7e\x83\x77\x7c\x80\x78\x7e\x83\x78\x7e\x83\x7a\x80\ \x85\x7b\x82\x87\x7d\x84\x88\x78\x7e\x83\x66\x6d\x72\x5c\x62\x68\ \x63\x67\x6c\x76\x79\x7e\x82\x86\x8a\x81\x86\x8b\x7f\x85\x89\x7d\ \x85\x88\x82\x88\x8c\x86\x8c\x8f\x83\x8a\x8d\x7c\x82\x86\x78\x7e\ \x82\x7e\x82\x86\x82\x86\x89\x7e\x83\x85\x80\x85\x87\x85\x8a\x8c\ \x83\x88\x89\x7e\x82\x83\x85\x89\x8a\x8c\x8f\x91\x86\x8b\x8d\x82\ \x86\x89\x8c\x90\x94\x8e\x91\x95\x86\x8a\x8e\x84\x87\x8b\x8e\x90\ \x94\x99\x9b\x9e\x9d\xa0\xa2\x9e\xa0\xa4\x9f\xa0\xa4\x9f\xa0\xa2\ \xa1\xa2\xa5\x9e\x9f\xa3\xa0\xa2\xa6\xa3\xa4\xa8\xa2\xa3\xa7\xa1\ \xa2\xa5\xa2\xa4\xa8\xa2\xa3\xa6\xa2\xa4\xa5\xa5\xa6\xa7\xab\xab\ \xac\xae\xac\xae\xac\xab\xac\xab\xab\xad\xac\xac\xae\xac\xac\xb0\ \xab\xad\xae\xac\xac\xae\xaa\xac\xad\xa2\xa4\xa5\x94\x96\x97\x95\ \x95\x96\xa6\xa5\xa6\xac\xac\xad\x9f\xa0\xa1\x97\x96\x98\x9e\x9e\ \x9f\xad\xad\xad\xaf\xaf\xaf\xa1\xa0\xa2\x96\x95\x98\xa3\xa2\xa2\ \xb0\xb0\xaf\xb3\xb2\xb3\xa5\xa5\xa5\x98\x97\x97\x9e\x9c\x9b\xae\ \xad\xac\xb0\xb0\xb0\xa3\xa3\xa4\x96\x95\x97\x9d\x9b\x9d\xad\xaa\ \xac\xb7\xb5\xb7\xb9\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb8\xb7\xb7\ \xb8\xb7\xb7\xb6\xb6\xb6\xba\xba\xbb\xbb\xbb\xbb\xbc\xbb\xbc\xbd\ \xbc\xbd\xbc\xbb\xbd\xbd\xbd\xbe\xc0\xbf\xc1\xc2\xc1\xc3\xbf\xbe\ \xc0\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbc\xbd\xba\xbc\xc1\xbe\xc0\ \xc3\xc0\xc2\xc1\xc0\xc2\x00\x00\x00\xdd\xd6\xd4\xdd\xd5\xd5\xd9\ \xd2\xd1\xd5\xcd\xcd\xcf\xc7\xc7\xc7\xbe\xbd\xb9\xb0\xaf\xa0\x99\ \x98\x81\x7f\x7e\x62\x64\x67\x48\x4e\x55\x46\x4c\x53\x5b\x5e\x62\ \x76\x73\x74\x8a\x84\x85\x95\x8f\x90\x9b\x97\x98\xa0\x9d\x9f\xa1\ \x9e\xa0\xa1\x9f\xa1\x9f\x9d\x9f\x9c\x9a\x9c\x9d\x9b\x9d\x98\x97\ \x99\x95\x94\x96\x95\x95\x98\x8e\x90\x92\x8d\x8f\x92\x8a\x8c\x90\ \x88\x8b\x8f\x87\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x82\x86\x89\x7f\ \x84\x87\x7e\x82\x86\x7d\x81\x85\x7c\x81\x85\x79\x7f\x83\x68\x70\ \x75\x45\x53\x59\x2b\x3a\x42\x2d\x37\x3e\x36\x3e\x45\x2d\x36\x3c\ \x26\x30\x37\x37\x40\x47\x59\x5e\x66\x67\x6c\x72\x6e\x73\x78\x6b\ \x71\x76\x6d\x73\x79\x6e\x73\x79\x70\x76\x7a\x7a\x7e\x83\x78\x7d\ \x82\x78\x7d\x81\x79\x7f\x84\x7a\x80\x85\x79\x7f\x84\x7b\x81\x86\ \x7b\x81\x86\x75\x7c\x81\x64\x6e\x74\x4d\x57\x5f\x4b\x52\x5b\x63\ \x66\x6d\x78\x7c\x80\x81\x87\x8b\x85\x8a\x8f\x83\x89\x8d\x85\x8c\ \x90\x84\x8a\x8e\x85\x8c\x8f\x83\x8a\x8d\x7d\x83\x87\x7c\x81\x85\ \x7e\x83\x86\x83\x88\x8b\x7f\x84\x88\x80\x84\x86\x87\x8b\x8d\x84\ \x88\x89\x81\x84\x87\x88\x8c\x8d\x8b\x8e\x90\x89\x8e\x90\x81\x86\ \x89\x89\x8c\x90\x8f\x92\x97\x88\x8b\x8f\x84\x87\x8b\x91\x93\x96\ \x9c\x9e\xa0\x9d\xa0\xa3\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa2\xa6\x9e\ \x9f\xa3\x9f\xa0\xa4\xa1\xa3\xa7\xa1\xa2\xa7\xa2\xa3\xa7\xa4\xa5\ \xa8\xa3\xa5\xa7\xa1\xa2\xa3\xa5\xa5\xa7\xab\xaa\xab\xab\xaa\xac\ \xac\xab\xad\xac\xab\xad\xac\xab\xad\xad\xae\xaf\xac\xae\xb0\xab\ \xac\xae\xad\xae\xb0\xae\xae\xb0\xa5\xa7\xa8\x98\x9a\x9b\x97\x96\ \x98\xa5\xa4\xa6\xae\xae\xaf\xa8\xa8\xa9\x9a\x99\x9a\x9c\x9b\x9c\ \xa9\xa7\xa9\xb2\xb1\xb1\xa8\xa7\xa9\x9b\x9a\x9c\x9c\x9c\x9d\xab\ \xaa\xab\xb2\xb2\xb2\xaa\xaa\xa9\x9b\x9a\x9a\x97\x96\x97\xa4\xa3\ \xa4\xb0\xb0\xb0\xad\xac\xae\x9d\x9c\x9d\x9b\x99\x9b\xa8\xa6\xa8\ \xb4\xb1\xb3\xb9\xb7\xb9\xb8\xb7\xb9\xba\xb8\xba\xb8\xb8\xb9\xb7\ \xb6\xb8\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xbd\xbc\ \xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xbf\xc1\xbf\xbd\xbf\ \xc0\xbe\xc1\xbd\xbb\xbe\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xbf\xc1\xbf\ \xbd\xbf\x00\x00\x00\xdd\xd6\xd3\xdb\xd3\xd4\xd8\xd1\xd1\xd4\xcc\ \xcc\xcd\xc4\xc3\xc3\xb9\xb6\xb2\xa9\xa6\x94\x90\x8e\x73\x75\x73\ \x57\x5c\x5e\x48\x4e\x53\x4f\x52\x58\x67\x67\x6a\x7d\x7a\x7a\x8f\ \x8a\x8a\x98\x93\x94\x9d\x99\x9a\x9f\x9c\x9e\xa1\x9e\x9f\xa1\x9e\ \xa0\x9e\x9c\x9f\x9b\x9a\x9c\x9b\x9a\x9c\x98\x97\x99\x94\x95\x96\ \x91\x92\x95\x8d\x8e\x92\x8a\x8d\x92\x87\x8a\x8e\x85\x88\x8c\x86\ \x89\x8d\x83\x87\x8b\x83\x87\x8a\x82\x86\x89\x7f\x83\x86\x7d\x81\ \x84\x7c\x80\x85\x7b\x7f\x84\x78\x7e\x82\x6b\x73\x79\x4a\x5b\x62\ \x3d\x4e\x55\x39\x44\x4c\x3e\x48\x4f\x2c\x38\x3e\x2d\x39\x40\x3c\ \x45\x4d\x61\x67\x6d\x6b\x70\x75\x6d\x72\x77\x6d\x73\x79\x6a\x70\ \x75\x6e\x73\x78\x6d\x73\x78\x75\x7a\x7f\x79\x7e\x82\x79\x7e\x83\ \x79\x7f\x84\x78\x7d\x82\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x79\ \x81\x87\x6d\x78\x7e\x55\x61\x69\x41\x4a\x54\x49\x4e\x57\x63\x66\ \x6e\x7b\x7e\x84\x85\x89\x8f\x86\x8c\x90\x85\x8b\x8f\x85\x8b\x90\ \x89\x8f\x92\x87\x8e\x91\x85\x8b\x8e\x7e\x85\x88\x79\x7f\x82\x7e\ \x83\x86\x83\x89\x8b\x81\x86\x89\x82\x85\x88\x84\x88\x8a\x87\x8b\ \x8e\x81\x85\x86\x86\x89\x8c\x8a\x8f\x92\x87\x8b\x8f\x84\x87\x8b\ \x8b\x8e\x92\x8f\x92\x96\x8b\x8e\x91\x86\x89\x8d\x8f\x91\x93\x9a\ \x9c\x9e\x9f\xa1\xa4\xa1\xa2\xa6\xa0\xa1\xa5\xa1\xa2\xa5\xa0\xa2\ \xa6\x9e\xa0\xa4\xa0\xa2\xa6\xa2\xa4\xa8\xa4\xa5\xa9\xa5\xa7\xa9\ \xa4\xa6\xa7\xa8\xa9\xaa\xac\xab\xae\xab\xaa\xac\xac\xab\xad\xae\ \xae\xb0\xad\xae\xb0\xb0\xb0\xb2\xae\xae\xb0\xad\xae\xaf\xaf\xb0\ \xb2\xaf\xaf\xb1\xb0\xb2\xb2\xac\xae\xaf\xa2\xa3\xa4\x98\x98\x9b\ \x9d\x9d\x9f\xab\xaa\xac\xaa\xa9\xaa\x9f\x9e\xa0\x9a\x99\x9b\xa6\ \xa4\xa5\xb1\xaf\xaf\xb1\xaf\xb0\xa2\xa1\xa2\x99\x98\x9a\xa1\x9f\ \x9f\xad\xab\xab\xaf\xae\xae\xa3\xa4\xa4\x98\x98\x99\x9d\x9b\x9d\ \xaf\xad\xae\xb7\xb4\xb5\xaa\xa8\xaa\x9b\x99\x9b\x9e\x9c\x9e\xab\ \xa8\xaa\xb7\xb4\xb6\xb9\xb7\xb9\xba\xba\xbb\xbb\xba\xbb\xba\xb9\ \xbb\xbb\xbb\xbc\xba\xb9\xbb\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbd\xbf\ \xbe\xbd\xbf\xbe\xbd\xbf\xc0\xbe\xc0\xbe\xbc\xbe\xbf\xbe\xc1\xbe\ \xbd\xc1\xc0\xbe\xc1\xbe\xbc\xbe\xbc\xb9\xbb\xbe\xbb\xbd\x00\x00\ \x00\xdb\xd4\xd2\xd9\xd1\xd0\xd6\xce\xcc\xd2\xca\xc8\xca\xc1\xbf\ \xbf\xb5\xb3\xaa\xa2\xa0\x89\x88\x86\x67\x6b\x6a\x4c\x53\x57\x49\ \x4e\x53\x55\x57\x5c\x71\x6f\x71\x84\x80\x80\x93\x8e\x8f\x9a\x96\ \x97\x9d\x9a\x9c\x9f\x9c\x9e\xa1\x9e\x9f\xa0\x9d\x9f\x9d\x9b\x9d\ \x9b\x9a\x9c\x9a\x99\x9b\x97\x96\x98\x94\x95\x98\x8d\x8f\x93\x8c\ \x8e\x92\x89\x8c\x91\x86\x89\x8d\x85\x88\x8c\x84\x87\x8b\x83\x86\ \x8a\x81\x87\x8a\x80\x85\x88\x7e\x82\x86\x7c\x81\x85\x7c\x81\x84\ \x7a\x7f\x83\x79\x7d\x82\x6f\x76\x7c\x5c\x68\x6e\x55\x63\x6a\x4f\ \x5a\x62\x4d\x58\x60\x3d\x4a\x52\x39\x46\x4d\x49\x52\x59\x62\x67\ \x6d\x6f\x74\x78\x6c\x71\x76\x6d\x72\x78\x6d\x72\x77\x6d\x71\x76\ \x6f\x74\x7a\x6f\x74\x79\x76\x7a\x7e\x7a\x7e\x83\x78\x7e\x83\x77\ \x7c\x81\x79\x7f\x84\x79\x7f\x84\x7a\x80\x85\x7b\x81\x86\x76\x7f\ \x85\x6a\x75\x7c\x53\x5e\x66\x3e\x47\x51\x53\x58\x62\x6c\x70\x77\ \x80\x84\x89\x87\x8c\x90\x86\x8a\x8f\x89\x8e\x92\x8b\x90\x93\x89\ \x8e\x91\x8a\x8f\x92\x86\x8c\x8f\x7f\x85\x88\x7b\x7f\x82\x80\x84\ \x88\x85\x89\x8c\x81\x85\x88\x7d\x81\x83\x86\x8a\x8c\x85\x89\x8b\ \x80\x84\x87\x82\x85\x89\x8b\x8e\x92\x8a\x8e\x91\x86\x89\x8d\x8c\ \x8e\x92\x92\x94\x97\x8c\x8f\x91\x85\x89\x8b\x8d\x90\x92\x99\x9b\ \x9d\x9f\xa1\xa4\xa1\xa2\xa6\xa1\xa2\xa6\xa0\xa1\xa7\x9f\xa1\xa5\ \xa0\xa2\xa6\xa3\xa5\xa9\xa6\xa7\xaa\xa5\xa6\xa8\xa6\xa6\xa8\xa8\ \xa8\xaa\xab\xaa\xac\xab\xaa\xac\xac\xab\xad\xad\xac\xae\xad\xae\ \xaf\xaf\xae\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb1\xb0\xb2\xb0\xb0\xb2\ \xb2\xb2\xb4\xb3\xb3\xb5\xb0\xb0\xb2\xa7\xa7\xa9\x99\x9a\x9c\x97\ \x97\x99\xa5\xa4\xa5\xae\xac\xad\xa6\xa6\xa7\x9c\x9b\x9d\x9f\x9d\ \x9d\xad\xab\xab\xb7\xb6\xb6\xac\xac\xac\x9e\x9d\x9c\x9a\x9a\x99\ \xa7\xa6\xa6\xb0\xb0\xb0\xab\xab\xac\x9c\x9b\x9d\x9b\x9a\x9c\xab\ \xa9\xaa\xb6\xb4\xb4\xb0\xae\xaf\xa0\x9f\xa0\x9c\x9c\x9d\xa7\xa4\ \xa6\xb3\xb2\xb3\xbb\xba\xbb\xbc\xbb\xbb\xbc\xbb\xbc\xbd\xbd\xbd\ \xbb\xba\xbc\xbb\xba\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbc\ \xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xc0\xbf\xbe\xc0\xc0\xbf\ \xc2\xbc\xbb\xbd\xb8\xb6\xb8\xc0\xbd\xbf\x00\x00\x00\xdb\xd4\xd2\ \xd8\xd1\xce\xd5\xcd\xca\xcf\xc6\xc3\xc6\xbd\xba\xb8\xaf\xad\x9d\ \x97\x95\x7c\x7d\x7c\x5f\x64\x66\x47\x50\x54\x4c\x51\x57\x5d\x5e\ \x62\x79\x76\x78\x8a\x85\x86\x96\x91\x91\x9a\x97\x97\x9f\x9c\x9e\ \x9f\x9c\x9e\x9f\x9d\x9f\x9e\x9c\x9e\x9b\x9a\x9c\x9a\x99\x9c\x98\ \x97\x99\x95\x96\x97\x91\x92\x95\x8e\x8f\x93\x8a\x8d\x91\x88\x8b\ \x90\x88\x8b\x8f\x85\x89\x8c\x84\x88\x8b\x81\x85\x89\x7f\x84\x88\ \x7f\x83\x87\x7e\x82\x87\x7e\x82\x87\x7d\x81\x85\x7b\x80\x83\x7a\ \x7e\x83\x76\x7b\x80\x6d\x74\x79\x68\x71\x78\x66\x6f\x76\x5e\x68\ \x6e\x58\x62\x6a\x4d\x57\x5f\x56\x5d\x64\x64\x69\x6f\x6e\x72\x77\ \x6e\x73\x78\x6b\x70\x75\x6e\x72\x77\x6d\x70\x75\x6e\x72\x77\x6f\ \x74\x79\x70\x74\x79\x78\x7c\x81\x79\x7e\x83\x78\x7c\x81\x79\x7f\ \x84\x79\x7f\x84\x7c\x81\x86\x7b\x82\x87\x7c\x83\x88\x77\x80\x85\ \x6b\x76\x7c\x59\x64\x6c\x52\x5b\x65\x66\x6a\x73\x7d\x81\x86\x85\ \x89\x8d\x86\x8b\x8e\x88\x8c\x91\x8a\x8f\x91\x8a\x8e\x91\x8a\x8f\ \x92\x8b\x90\x93\x88\x8d\x90\x81\x86\x89\x7d\x82\x85\x82\x85\x89\ \x86\x8a\x8c\x82\x86\x88\x80\x84\x86\x88\x8c\x8d\x85\x89\x8c\x80\ \x84\x87\x83\x86\x8a\x8b\x8f\x91\x8c\x90\x94\x86\x89\x8d\x89\x8c\ \x8f\x90\x93\x95\x8e\x92\x94\x88\x8b\x8e\x8b\x8d\x8e\x98\x99\x9c\ \x9f\xa0\xa4\xa1\xa2\xa7\xa1\xa2\xa7\xa4\xa5\xa9\xa2\xa4\xa8\xa5\ \xa7\xab\xa6\xa8\xab\xa5\xa7\xa9\xa7\xa6\xa8\xa8\xa7\xa9\xab\xaa\ \xac\xab\xaa\xac\xab\xaa\xac\xab\xaa\xac\xad\xae\xaf\xaf\xae\xb0\ \xaf\xae\xb0\xaf\xae\xb0\xaf\xae\xb0\xb1\xb1\xb3\xb2\xb2\xb4\xb2\ \xb1\xb3\xb2\xb2\xb4\xb2\xb1\xb3\xab\xac\xae\x9d\x9d\x9e\x96\x95\ \x96\x9f\x9d\x9d\xad\xab\xac\xae\xad\xad\xa0\x9e\x9e\x9c\x9a\x99\ \xa6\xa3\xa3\xb4\xb2\xb2\xb2\xb3\xb2\xa4\xa3\xa3\x9b\x9a\x9a\x9e\ \x9d\x9d\xaf\xae\xaf\xb2\xb2\xb2\xa5\xa5\xa6\x9b\x9a\x9c\xa0\x9e\ \x9f\xb2\xaf\xb0\xb4\xb3\xb3\xad\xac\xad\xa1\x9f\xa1\x9f\x9c\x9e\ \xad\xab\xac\xbc\xbb\xba\xbc\xba\xba\xbc\xbb\xbb\xbc\xba\xbb\xbd\ \xbc\xbd\xbe\xbc\xbe\xbb\xba\xbc\xba\xb9\xbb\xba\xb9\xbb\xbb\xba\ \xbc\xbf\xbd\xbf\xbc\xba\xbd\xbd\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\ \xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xda\xd4\xd3\xd8\xd1\xce\xd3\ \xcb\xc8\xcc\xc3\xbf\xc0\xb7\xb4\xaf\xa6\xa2\x91\x8d\x8a\x6f\x71\ \x71\x56\x5e\x60\x45\x4e\x52\x4f\x54\x58\x68\x67\x6b\x80\x7e\x7e\ \x8f\x89\x8a\x98\x94\x94\x9b\x98\x99\x9e\x9c\x9d\x9f\x9d\x9e\x9e\ \x9d\x9e\x9c\x9b\x9c\x9a\x9a\x9c\x98\x97\x98\x95\x95\x96\x91\x93\ \x94\x8e\x8f\x93\x8c\x8e\x92\x8a\x8d\x91\x88\x8b\x8f\x87\x8a\x8e\ \x85\x88\x8c\x84\x88\x8c\x80\x84\x88\x80\x84\x89\x7e\x83\x86\x7c\ \x81\x84\x7d\x81\x86\x7c\x81\x85\x7b\x7f\x83\x7b\x7f\x84\x79\x7c\ \x81\x77\x7d\x82\x73\x79\x7e\x72\x78\x7d\x70\x76\x7c\x68\x6f\x76\ \x59\x61\x69\x53\x59\x61\x61\x65\x6c\x6a\x6d\x72\x6b\x6f\x74\x66\ \x6b\x6f\x66\x6a\x70\x6a\x6e\x74\x6b\x70\x74\x6f\x74\x77\x6e\x73\ \x78\x71\x75\x7a\x7a\x7e\x82\x7b\x80\x84\x79\x7f\x84\x7a\x80\x85\ \x7a\x80\x85\x7b\x81\x86\x7c\x82\x87\x7c\x83\x88\x78\x81\x86\x6d\ \x77\x7d\x5e\x68\x70\x67\x6c\x75\x7b\x7f\x84\x85\x8a\x8e\x86\x8a\ \x8f\x87\x8c\x90\x88\x8e\x91\x8a\x8f\x92\x8a\x8f\x92\x8b\x90\x93\ \x8c\x91\x94\x8b\x90\x93\x84\x89\x8c\x7e\x83\x86\x81\x85\x88\x88\ \x8c\x8f\x82\x87\x8a\x80\x84\x87\x84\x88\x8b\x88\x8c\x90\x80\x85\ \x88\x81\x85\x88\x8b\x8d\x91\x8c\x90\x93\x87\x8a\x8d\x8b\x8e\x90\ \x93\x96\x98\x90\x94\x95\x88\x8b\x8c\x8a\x8c\x8d\x99\x9a\x9d\xa2\ \xa3\xa8\xa1\xa2\xa6\xa4\xa5\xa9\xa6\xa7\xab\xa6\xa7\xab\xa6\xa7\ \xab\xa4\xa5\xa6\xa8\xa7\xa9\xaa\xa9\xab\xa9\xa8\xaa\xa9\xa8\xaa\ \xaa\xa9\xab\xab\xaa\xac\xad\xac\xaf\xb1\xb0\xb2\xae\xad\xaf\xad\ \xac\xae\xaf\xb0\xb1\xb0\xb1\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb2\xb2\ \xb3\xb3\xb2\xb4\xb3\xb2\xb4\xae\xad\xaf\xa3\xa3\xa5\x99\x99\x99\ \x9b\x9a\x9a\xa5\xa3\xa3\xb0\xae\xad\xa7\xa5\xa5\x9c\x99\x9a\x9e\ \x9d\x9d\xac\xaa\xa9\xb4\xb2\xb1\xab\xab\xab\x9a\x99\x9a\x98\x97\ \x98\xa9\xa8\xa9\xb6\xb4\xb4\xaf\xad\xae\xa2\xa1\xa2\x9e\x9c\x9d\ \xa6\xa4\xa5\xb6\xb4\xb4\xb5\xb3\xb6\xa4\xa2\xa4\x9a\x99\x9a\xa3\ \xa2\xa1\xb3\xb0\xb0\xba\xb8\xb9\xbd\xbb\xbc\xbf\xbd\xbd\xbe\xbd\ \xbe\xba\xb9\xbb\xb9\xb8\xba\xb8\xb7\xb9\xb7\xb6\xb8\xba\xb8\xba\ \xbc\xba\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\xc2\xc3\ \xc2\xc4\x00\x00\x00\xd9\xd4\xd2\xd7\xcf\xcd\xd0\xc8\xc5\xc8\xbf\ \xbb\xbd\xb3\xb0\xa5\x9e\x9a\x84\x83\x80\x65\x68\x6a\x4d\x54\x59\ \x46\x50\x54\x56\x5a\x5f\x73\x71\x74\x87\x84\x84\x90\x8b\x8c\x99\ \x94\x95\x9e\x9a\x9b\x9f\x9d\x9e\x9f\x9d\x9e\x9e\x9c\x9c\x9c\x9a\ \x9c\x99\x98\x9a\x98\x97\x98\x94\x93\x95\x90\x91\x93\x8d\x8f\x93\ \x8b\x8d\x91\x88\x8b\x90\x85\x88\x8d\x86\x89\x8d\x82\x86\x8a\x83\ \x86\x8b\x80\x83\x88\x7f\x83\x87\x7e\x82\x86\x7b\x80\x84\x7a\x7f\ \x82\x79\x7d\x81\x79\x7d\x81\x78\x7c\x81\x79\x7d\x82\x79\x7f\x84\ \x76\x7c\x81\x76\x7c\x82\x76\x7c\x81\x6b\x72\x78\x5c\x63\x6c\x4a\ \x50\x5a\x4c\x50\x59\x60\x62\x6a\x60\x63\x69\x59\x5c\x63\x57\x5a\ \x61\x63\x66\x6c\x6c\x70\x74\x6c\x71\x74\x6f\x73\x78\x6e\x72\x77\ \x73\x77\x7b\x7a\x80\x83\x7b\x80\x86\x7b\x81\x86\x7b\x80\x85\x7b\ \x81\x86\x7d\x82\x87\x7f\x85\x8a\x7d\x84\x89\x77\x7f\x84\x6f\x78\ \x7d\x74\x7a\x80\x7e\x82\x87\x86\x8a\x8f\x88\x8b\x91\x87\x8b\x8f\ \x88\x8b\x8f\x88\x8d\x90\x89\x8e\x91\x89\x8e\x91\x8d\x92\x95\x8e\ \x93\x96\x8c\x91\x94\x84\x8a\x8d\x7e\x83\x86\x81\x85\x89\x8a\x8f\ \x92\x84\x89\x8c\x7f\x84\x87\x85\x88\x8c\x89\x8d\x90\x85\x88\x8c\ \x84\x87\x8b\x8c\x8f\x92\x90\x94\x97\x8a\x8d\x91\x88\x8c\x8f\x91\ \x94\x96\x91\x93\x95\x89\x8d\x8e\x8c\x8e\x8f\x97\x99\x9b\x9f\xa0\ \xa4\xa3\xa4\xa8\xa2\xa4\xa8\xa5\xa6\xa9\xa8\xa7\xa9\xa5\xa4\xa6\ \xa5\xa4\xa6\xa8\xa7\xa9\xa9\xa8\xab\xaa\xa9\xab\xab\xaa\xab\xab\ \xaa\xac\xad\xac\xae\xae\xad\xaf\xac\xad\xae\xad\xac\xae\xae\xad\ \xaf\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb2\xb4\ \xb3\xb2\xb3\xb1\xb1\xb3\xb1\xb0\xb2\xab\xab\xac\x9c\x9d\x9d\x93\ \x92\x92\xa0\x9e\x9d\xaf\xad\xac\xae\xae\xac\xa0\xa0\xa0\x9a\x97\ \x97\xa1\xa0\x9f\xb1\xaf\xb0\xb1\xaf\xb0\xa5\xa4\xa5\x9b\x9a\x9c\ \xa2\xa0\xa1\xb4\xb2\xb2\xb8\xb7\xb7\xab\xaa\xab\x9c\x99\x9b\xa0\ \x9e\x9f\xaf\xad\xad\xb6\xb5\xb6\xae\xae\xae\xa1\xa1\xa0\x98\x96\ \x96\xa7\xa4\xa4\xbb\xb8\xb8\xbe\xbd\xbd\xbd\xbb\xbc\xbd\xba\xbc\ \xbc\xba\xbc\xba\xb8\xba\xb7\xb6\xb8\xb7\xb6\xb8\xba\xb9\xbb\xc0\ \xbf\xc1\xc0\xbe\xc0\xc2\xc1\xc3\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ \x00\xd7\xd1\xce\xd5\xce\xcb\xce\xc7\xc3\xc5\xbd\xb9\xb6\xaf\xab\ \x9b\x96\x94\x7a\x7a\x7c\x5d\x60\x64\x49\x4f\x56\x49\x4f\x55\x5f\ \x61\x65\x79\x76\x77\x8d\x88\x89\x94\x8f\x90\x9c\x97\x98\x9f\x9b\ \x9d\x9f\x9d\x9e\x9f\x9c\x9e\x9c\x9a\x9c\x99\x98\x9a\x95\x94\x96\ \x91\x90\x92\x8f\x90\x91\x8e\x90\x92\x8d\x8e\x91\x8a\x8c\x8e\x87\ \x89\x8b\x84\x86\x8a\x83\x85\x89\x81\x85\x89\x81\x84\x88\x80\x83\ \x87\x7d\x82\x85\x7c\x81\x85\x7c\x80\x85\x7b\x7f\x84\x79\x7d\x82\ \x78\x7c\x81\x77\x7b\x80\x7a\x7e\x83\x78\x7c\x81\x77\x7c\x81\x76\ \x7d\x82\x74\x7a\x7f\x6f\x74\x7a\x55\x5c\x64\x3c\x45\x4f\x32\x3a\ \x43\x4b\x4e\x57\x52\x54\x5d\x3d\x40\x49\x3c\x3f\x49\x53\x55\x5c\ \x6a\x6d\x72\x6f\x73\x77\x6d\x71\x76\x70\x74\x79\x6e\x73\x77\x74\ \x79\x7c\x7b\x80\x83\x7b\x7f\x83\x7c\x81\x85\x7e\x83\x87\x7d\x82\ \x87\x7e\x83\x88\x80\x85\x8a\x80\x85\x8a\x7e\x85\x89\x82\x87\x8c\ \x85\x89\x8e\x86\x8a\x8f\x85\x89\x8e\x87\x8b\x8f\x86\x89\x8d\x89\ \x8c\x90\x8b\x8e\x92\x8d\x91\x95\x8d\x92\x95\x8d\x92\x95\x8f\x94\ \x97\x8d\x92\x95\x85\x8a\x8d\x80\x85\x88\x84\x89\x8c\x8a\x8f\x92\ \x84\x89\x8c\x80\x85\x88\x87\x8a\x8e\x8e\x91\x95\x88\x8b\x8f\x85\ \x88\x8c\x8d\x90\x93\x91\x95\x97\x8a\x8d\x92\x89\x8b\x90\x90\x93\ \x95\x95\x99\x9a\x8f\x91\x92\x89\x8b\x8c\x92\x94\x95\xa1\xa2\xa4\ \xa4\xa4\xa7\xa6\xa7\xaa\xa9\xa8\xab\xa9\xa8\xaa\xaa\xa9\xab\xa9\ \xa8\xaa\xa9\xa8\xaa\xaa\xa9\xac\xab\xaa\xad\xaa\xa9\xab\xac\xad\ \xae\xac\xab\xad\xac\xab\xad\xab\xaa\xac\xad\xac\xae\xaf\xae\xb0\ \xaf\xae\xb0\xb1\xb0\xb2\xb1\xb2\xb3\xb3\xb4\xb5\xb3\xb3\xb5\xb2\ \xb1\xb3\xb2\xb1\xb3\xb3\xb2\xb4\xac\xac\xad\x9f\xa0\xa0\x94\x96\ \x96\x99\x97\x98\xab\xaa\xaa\xb3\xb1\xb1\xa8\xa8\xa8\x9b\x9a\x9c\ \x9b\x9a\x9c\xac\xab\xac\xb7\xb6\xb7\xae\xae\xaf\x9f\x9e\x9f\x9c\ \x9a\x9c\xab\xa8\xa9\xb5\xb3\xb3\xb3\xb0\xb1\xa7\xa5\xa6\x99\x97\ \x99\xa6\xa3\xa5\xb6\xb4\xb4\xb7\xb6\xb8\xab\xaa\xac\x9e\x9c\x9d\ \x9f\x9b\x9c\xb1\xad\xae\xbf\xbd\xbe\xbe\xbb\xbd\xbe\xbb\xbd\xbf\ \xbd\xbf\xbe\xbd\xbf\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbd\xbf\xc0\xbe\ \xbf\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc0\xc2\x00\x00\x00\xd6\xcf\xcc\ \xd3\xcb\xc7\xcc\xc3\xbf\xc0\xb8\xb4\xad\xa6\xa5\x8f\x8c\x8d\x6f\ \x71\x72\x56\x5c\x60\x49\x4e\x54\x50\x54\x5a\x68\x67\x6b\x82\x7e\ \x7f\x8f\x8a\x8b\x98\x93\x94\x9e\x99\x9b\x9f\x9b\x9d\x9f\x9c\x9e\ \x9e\x9b\x9d\x9c\x9a\x9c\x98\x97\x99\x8d\x8c\x8e\x88\x88\x89\x84\ \x86\x86\x89\x8b\x8d\x8b\x8c\x90\x87\x88\x8c\x87\x88\x8a\x82\x84\ \x88\x81\x83\x87\x80\x83\x87\x80\x83\x87\x7f\x83\x86\x7c\x7f\x83\ \x7c\x7f\x83\x7b\x7f\x82\x7b\x7f\x83\x7b\x7f\x84\x79\x7d\x82\x77\ \x7b\x80\x77\x7b\x80\x78\x7d\x82\x77\x7a\x80\x76\x7b\x81\x74\x7a\ \x7f\x68\x6d\x73\x4f\x56\x5e\x31\x3d\x45\x2a\x36\x3f\x3c\x42\x4b\ \x42\x46\x4f\x23\x2a\x33\x20\x26\x2f\x49\x4c\x54\x65\x68\x6d\x70\ \x74\x79\x6f\x72\x77\x6e\x72\x77\x6e\x72\x77\x70\x74\x78\x77\x7a\ \x7e\x74\x77\x7b\x6b\x6e\x73\x70\x72\x76\x7a\x7e\x82\x7d\x83\x87\ \x7f\x85\x89\x80\x86\x8b\x81\x87\x8c\x83\x88\x8d\x86\x8a\x8f\x86\ \x8a\x8e\x84\x89\x8d\x85\x89\x8c\x86\x89\x8d\x8c\x8f\x93\x8c\x8f\ \x93\x8c\x8f\x93\x8d\x91\x94\x8e\x93\x96\x91\x96\x99\x92\x97\x9a\ \x8e\x93\x96\x85\x8a\x8d\x81\x86\x89\x81\x86\x89\x8a\x8f\x91\x85\ \x8a\x8d\x83\x88\x8c\x88\x8b\x8f\x8e\x92\x96\x89\x8c\x90\x87\x89\ \x8d\x8d\x8f\x93\x92\x96\x99\x8c\x8f\x93\x87\x8a\x8e\x96\x98\x9b\ \x9a\x9c\x9d\x8f\x91\x92\x8b\x8d\x8e\x92\x92\x95\xa4\xa3\xa5\xa8\ \xa7\xaa\xa8\xa7\xaa\xa9\xa8\xaa\xa8\xa7\xa9\xa6\xa5\xa7\xa7\xa6\ \xa8\xaa\xa9\xab\xab\xaa\xac\xac\xab\xad\xad\xad\xae\xad\xac\xae\ \xab\xaa\xac\xab\xaa\xac\xaf\xb0\xb1\xb1\xb0\xb2\xb0\xaf\xb1\xb0\ \xb0\xb1\xb1\xb0\xb2\xb1\xb2\xb4\xb1\xb1\xb3\xb0\xaf\xb1\xb0\xaf\ \xb1\xb4\xb3\xb5\xb6\xb5\xb7\xb0\xb1\xb2\xaa\xac\xad\x9a\x9d\x9e\ \x97\x96\x96\xa5\xa3\xa4\xb2\xb1\xb1\xae\xae\xaf\x9f\x9e\xa1\x99\ \x98\x9a\xa5\xa3\xa5\xb5\xb4\xb5\xb4\xb4\xb5\xa7\xa6\xa7\x99\x97\ \x99\xa1\x9e\x9f\xb1\xaf\xb0\xbb\xb9\xb9\xb0\xb0\xb1\xa0\x9f\xa0\ \x9e\x9c\x9e\xb0\xaf\xb0\xb9\xb8\xb9\xb6\xb5\xb5\xa6\xa4\xa4\x9c\ \x99\x99\xab\xa6\xa7\xbb\xb8\xb9\xbf\xbc\xbe\xbf\xbd\xbf\xc0\xbf\ \xc1\xc1\xbf\xc1\xbf\xbd\xbf\xbe\xbb\xbc\xbf\xbd\xbe\xc1\xbe\xc0\ \xc0\xbf\xc1\xc1\xc1\xc2\x00\x00\x00\xd6\xcf\xcc\xd1\xc8\xc5\xc8\ \xc0\xbc\xbb\xb3\xb1\xa2\x9c\x9d\x83\x80\x82\x66\x69\x6c\x51\x56\ \x5b\x49\x4e\x53\x59\x5a\x5d\x73\x71\x72\x88\x82\x83\x92\x8e\x8f\ \x9a\x95\x96\x9c\x97\x99\x9e\x9a\x9c\x9e\x9c\x9e\x9c\x9a\x9c\x99\ \x98\x99\x90\x90\x91\x87\x86\x88\x7f\x80\x82\x81\x83\x84\x85\x86\ \x89\x87\x87\x8a\x89\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x80\x83\x87\ \x80\x84\x88\x7d\x81\x85\x7e\x81\x84\x7e\x81\x85\x7c\x7f\x84\x79\ \x7d\x82\x7a\x7e\x83\x79\x7d\x82\x77\x7b\x80\x77\x7b\x80\x78\x7c\ \x81\x77\x7c\x80\x79\x7c\x81\x78\x7e\x83\x74\x7a\x7f\x63\x69\x70\ \x44\x4d\x57\x23\x32\x3c\x2a\x37\x42\x33\x3b\x45\x32\x38\x41\x18\ \x21\x2a\x19\x22\x2b\x40\x44\x4c\x63\x66\x6b\x6d\x71\x76\x70\x75\ \x79\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x6f\x73\x78\x6b\x6e\x73\ \x4e\x51\x59\x43\x43\x4b\x60\x5e\x64\x7c\x7e\x82\x7e\x82\x86\x7f\ \x84\x88\x83\x89\x8d\x83\x88\x8c\x84\x89\x8d\x85\x89\x8e\x84\x89\ \x8c\x82\x87\x8a\x85\x87\x8b\x89\x8c\x90\x8d\x90\x94\x8d\x90\x94\ \x90\x94\x97\x8f\x94\x97\x90\x95\x98\x91\x96\x99\x90\x95\x98\x90\ \x95\x98\x8a\x8f\x92\x80\x85\x88\x83\x87\x8a\x8d\x90\x94\x8a\x8d\ \x91\x84\x87\x8b\x87\x89\x8d\x90\x91\x95\x8d\x8f\x93\x87\x8a\x8e\ \x8c\x8e\x92\x95\x97\x9b\x8f\x90\x94\x8e\x8f\x93\x92\x94\x97\x9b\ \x9d\x9e\x93\x95\x96\x8a\x8b\x8e\x8e\x90\x91\xa1\xa0\xa2\xa8\xa7\ \xa9\xa6\xa7\xa7\xa9\xa9\xaa\xa9\xa8\xaa\xaa\xa9\xab\xac\xab\xad\ \xac\xac\xae\xae\xaf\xb0\xae\xae\xb0\xae\xad\xaf\xab\xaa\xac\xae\ \xad\xaf\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\ \xb2\xb2\xb1\xb3\xb1\xb1\xb2\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\ \xb6\xb5\xb7\xb5\xb4\xb6\xb2\xb3\xb4\xad\xb0\xb1\xa4\xa4\xa6\x97\ \x95\x97\x96\x95\x97\xa9\xa7\xa8\xb2\xb1\xb2\xa7\xa6\xa8\x9b\x9a\ \x9c\x9e\x9c\x9e\xae\xad\xac\xb7\xb6\xb8\xae\xae\xb0\x9d\x9c\x9f\ \x9b\x9a\x9c\xac\xab\xab\xb9\xb8\xb7\xb7\xb7\xb7\xab\xab\xac\x9a\ \x9a\x9a\xa1\xa0\xa1\xb6\xb2\xb2\xbe\xba\xbb\xb6\xb3\xb4\xa3\xa0\ \xa1\xa0\x9b\x9d\xb1\xad\xaf\xbe\xba\xbb\xc0\xbd\xbe\xc2\xc0\xc2\ \xbf\xbc\xbe\xbe\xbb\xbd\xbd\xbc\xbd\xbd\xbb\xbd\xc0\xbd\xbf\xc3\ \xc1\xc2\x00\x00\x00\xd6\xcd\xca\xce\xc6\xc2\xc4\xbc\xb8\xb3\xac\ \xa9\x97\x92\x91\x76\x76\x77\x5d\x60\x65\x4b\x51\x58\x4d\x51\x57\ \x62\x62\x65\x7b\x76\x76\x89\x84\x84\x96\x90\x91\x9c\x96\x98\x9f\ \x9a\x9c\x9e\x9b\x9d\x9c\x99\x9b\x9d\x9a\x9c\x98\x96\x98\x88\x88\ \x89\x7e\x7f\x80\x7c\x7d\x7f\x7c\x7d\x7f\x7c\x7e\x7f\x85\x86\x88\ \x87\x89\x8c\x85\x88\x8c\x82\x85\x89\x80\x83\x87\x7e\x82\x85\x7e\ \x82\x85\x7d\x80\x84\x7b\x7f\x82\x7b\x7e\x83\x7b\x7f\x83\x79\x7d\ \x82\x78\x7c\x81\x76\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\x77\x7a\x80\ \x76\x7b\x7e\x76\x7a\x80\x71\x76\x7b\x59\x61\x69\x39\x45\x50\x26\ \x35\x42\x2f\x3c\x47\x3b\x44\x4d\x23\x2b\x34\x11\x1b\x25\x22\x2b\ \x35\x49\x4f\x56\x66\x69\x6e\x6d\x71\x76\x71\x75\x7a\x6f\x73\x78\ \x6e\x72\x77\x72\x76\x7b\x72\x76\x7b\x68\x6c\x71\x3c\x43\x4b\x0d\ \x13\x1c\x2f\x2e\x36\x6c\x6a\x6f\x80\x83\x87\x80\x85\x89\x83\x88\ \x8d\x86\x8b\x8f\x85\x8a\x8d\x84\x89\x8c\x84\x88\x8c\x7e\x82\x86\ \x79\x7c\x80\x7d\x81\x83\x89\x8c\x90\x8e\x91\x95\x90\x93\x97\x90\ \x95\x98\x90\x95\x98\x8f\x94\x97\x8f\x94\x97\x90\x94\x98\x92\x97\ \x9a\x89\x8e\x91\x83\x86\x8a\x82\x86\x8a\x8e\x91\x95\x8c\x8f\x93\ \x84\x87\x8b\x87\x88\x8d\x90\x93\x97\x8c\x8f\x93\x86\x89\x8d\x8d\ \x8f\x92\x9b\x9c\x9f\x95\x96\x99\x8c\x8d\x91\x90\x90\x92\x9b\x9a\ \x9c\x96\x97\x9a\x8b\x8d\x8f\x8e\x8f\x91\x9e\x9e\x9f\xa9\xa9\xaa\ \xa9\xa9\xaa\xaa\xa9\xab\xa9\xa8\xaa\xab\xaa\xac\xad\xac\xae\xad\ \xad\xaf\xad\xad\xaf\xad\xab\xad\xae\xad\xaf\xb0\xaf\xb1\xb1\xb0\ \xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb2\xb0\xb2\xb1\xb1\xb3\xb2\xb2\xb4\ \xb2\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb5\xb5\xb6\xb6\ \xb5\xb7\xb3\xb3\xb5\xb6\xb5\xb7\xb4\xb3\xb4\xac\xab\xad\x9d\x9c\ \x9e\x99\x97\x99\xa3\xa2\xa4\xb5\xb4\xb6\xb5\xb4\xb6\xa3\xa2\xa4\ \x9a\x99\x9b\xa6\xa5\xa6\xb5\xb4\xb5\xb4\xb4\xb4\xa4\xa4\xa6\x97\ \x97\x97\xa3\xa1\xa1\xb6\xb4\xb4\xbe\xbc\xbc\xb2\xb0\xb1\xa0\x9e\ \x9e\x9d\x99\x99\xb2\xad\xae\xbe\xbc\xbb\xbc\xba\xba\xac\xa9\xaa\ \x9d\x99\x9b\xa7\xa2\xa3\xbb\xb8\xb9\xc0\xbd\xbe\xbd\xba\xbc\xbe\ \xbb\xbd\xc0\xbe\xbf\xbd\xba\xbd\xc0\xbd\xbf\xc0\xbe\xbf\x00\x00\ \x00\xd3\xca\xc6\xcb\xc2\xbf\xc0\xb7\xb3\xaa\xa3\xa0\x8a\x88\x86\ \x6b\x6d\x6e\x56\x59\x60\x49\x4c\x56\x52\x54\x5b\x6b\x68\x6a\x82\ \x7d\x7b\x8f\x8a\x89\x97\x91\x92\x9d\x98\x9a\x9e\x9b\x9d\x9f\x9c\ \x9e\x9d\x9a\x9c\x9b\x9a\x9c\x92\x91\x93\x83\x84\x86\x79\x7b\x7c\ \x76\x78\x79\x73\x75\x76\x7b\x7d\x7d\x82\x83\x87\x83\x85\x89\x80\ \x83\x87\x82\x83\x87\x7f\x82\x86\x7a\x7d\x81\x7c\x7f\x83\x7d\x81\ \x85\x7c\x81\x84\x7a\x7f\x82\x78\x7c\x80\x77\x7c\x80\x77\x7c\x80\ \x77\x7b\x80\x76\x7b\x80\x77\x7b\x7f\x75\x7a\x7d\x76\x79\x7f\x76\ \x7b\x80\x73\x78\x7e\x5e\x67\x6e\x3b\x4a\x53\x31\x40\x4b\x3b\x48\ \x50\x40\x4b\x53\x23\x31\x3b\x0f\x1d\x27\x2b\x36\x40\x56\x5b\x63\ \x6a\x6e\x73\x6f\x73\x78\x6b\x6f\x74\x6f\x73\x78\x71\x75\x7a\x6f\ \x74\x78\x72\x77\x79\x6a\x6f\x73\x44\x4c\x55\x0f\x18\x21\x0d\x10\ \x17\x4c\x4c\x52\x7a\x7b\x7f\x80\x84\x88\x83\x88\x8c\x85\x8a\x8e\ \x85\x89\x8e\x84\x88\x8c\x87\x8c\x90\x85\x8a\x8d\x7b\x80\x83\x7d\ \x81\x84\x83\x86\x8a\x8c\x90\x93\x8f\x93\x97\x90\x94\x98\x90\x95\ \x99\x8f\x93\x96\x92\x97\x9a\x92\x95\x99\x93\x97\x9a\x92\x96\x9a\ \x8c\x91\x94\x84\x88\x8d\x83\x86\x8a\x8b\x8e\x92\x8a\x8d\x91\x84\ \x87\x8b\x87\x89\x8d\x92\x93\x97\x93\x95\x98\x8a\x8c\x8f\x8c\x8d\ \x90\x99\x9a\x9d\x97\x98\x9b\x8e\x8f\x90\x8f\x8e\x90\x9a\x99\x9b\ \x9a\x9c\x9d\x91\x93\x94\x90\x91\x94\x9b\x9b\x9c\xa8\xa8\xa8\xa7\ \xa7\xa8\xa8\xa7\xa9\xaa\xa9\xab\xab\xaa\xac\xaa\xa9\xab\xae\xad\ \xaf\xae\xad\xaf\xae\xad\xaf\xac\xab\xad\xb0\xaf\xb1\xb3\xb2\xb4\ \xb2\xb1\xb3\xaf\xae\xb0\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb2\xb3\ \xb2\xb3\xb4\xb3\xb4\xb3\xb2\xb3\xb5\xb4\xb6\xb6\xb5\xb7\xb5\xb4\ \xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb3\xb3\xb3\xa3\xa3\xa4\ \x97\x96\x98\xa0\x9f\xa1\xb2\xb1\xb3\xb6\xb6\xb7\xaa\xab\xad\x98\ \x99\x99\x9c\x9a\x9a\xae\xaa\xaa\xb7\xb6\xb7\xb1\xb0\xb1\xa3\xa2\ \xa2\x9c\x99\x9a\xac\xa9\xa9\xbd\xb9\xba\xbb\xb9\xb9\xae\xac\xac\ \x9e\x9b\x9c\xa5\xa1\xa3\xb6\xb3\xb4\xbd\xba\xbb\xb7\xb4\xb6\xa7\ \xa4\xa6\x9e\x9b\x9c\xab\xa7\xa9\xba\xb7\xb9\xc2\xbf\xc1\xbd\xbb\ \xbc\xc0\xbd\xbf\xbf\xbd\xbf\xc0\xbe\xbf\x00\x00\x00\xcf\xc6\xc2\ \xc5\xbb\xb9\xb8\xaf\xac\xa1\x9b\x98\x80\x80\x7e\x63\x66\x68\x4f\ \x53\x5a\x4c\x50\x59\x5a\x5a\x60\x75\x71\x73\x87\x82\x80\x93\x8c\ \x8e\x9a\x95\x96\x9e\x99\x9b\xa0\x9e\x9f\x9e\x9b\x9d\x9d\x9a\x9c\ \x98\x97\x99\x8c\x8c\x8e\x7e\x7f\x80\x78\x7a\x7b\x74\x76\x77\x72\ \x74\x75\x7b\x7d\x7e\x7f\x81\x83\x7e\x80\x84\x81\x84\x88\x80\x83\ \x87\x7e\x81\x85\x7e\x81\x85\x7d\x81\x84\x7c\x81\x84\x7b\x7f\x83\ \x7a\x7f\x82\x79\x7e\x81\x77\x7c\x7f\x77\x7c\x80\x77\x7b\x80\x78\ \x7c\x80\x76\x7b\x7e\x76\x7b\x7e\x76\x7a\x7f\x76\x7a\x7f\x72\x78\ \x7d\x62\x6b\x71\x4c\x59\x61\x48\x57\x5f\x54\x60\x65\x54\x5e\x64\ \x3b\x49\x54\x21\x32\x3f\x36\x45\x4f\x5e\x65\x6d\x6a\x6d\x73\x6e\ \x72\x77\x6e\x72\x77\x6e\x72\x77\x71\x76\x7b\x6e\x73\x77\x6e\x73\ \x77\x6f\x74\x77\x54\x5e\x63\x23\x31\x39\x05\x13\x19\x31\x3a\x41\ \x6d\x71\x77\x7f\x84\x89\x80\x85\x89\x84\x89\x8c\x85\x89\x8d\x84\ \x88\x8c\x86\x8b\x8f\x87\x8b\x8e\x85\x8a\x8d\x84\x89\x8c\x87\x8c\ \x90\x8e\x91\x95\x8e\x93\x96\x91\x95\x99\x92\x96\x9a\x91\x95\x99\ \x90\x94\x98\x92\x95\x99\x94\x97\x9b\x94\x99\x9c\x95\x9a\x9e\x8f\ \x93\x98\x87\x8a\x8e\x85\x88\x8d\x8e\x91\x95\x8d\x90\x94\x87\x8a\ \x8d\x89\x8b\x8e\x94\x96\x99\x93\x95\x97\x8e\x90\x92\x8f\x8f\x91\ \x97\x96\x98\x98\x99\x9b\x90\x92\x96\x90\x91\x94\x98\x98\x9a\x9e\ \x9d\x9f\x93\x94\x95\x8d\x8e\x8f\x98\x97\x99\xa6\xa5\xa7\xac\xab\ \xad\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xac\xab\xad\xae\xad\xae\ \xae\xad\xaf\xae\xad\xaf\xae\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\xaf\ \xb0\xb2\xb0\xaf\xb1\xb3\xb2\xb4\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\ \xb4\xb5\xb4\xb5\xb6\xb5\xb6\xb6\xb5\xb6\xb5\xb3\xb5\xb3\xb2\xb4\ \xb4\xb3\xb4\xb8\xb7\xb9\xb4\xb3\xb5\xb3\xb3\xb3\xab\xab\xac\x9d\ \x9e\x9f\x9d\x9b\x9d\xae\xac\xae\xb9\xb8\xb9\xb0\xb0\xb0\xa1\x9f\ \x9f\x9b\x99\x99\xa8\xa5\xa6\xb8\xb5\xb7\xbb\xb9\xb9\xaa\xaa\xaa\ \x9c\x99\x9b\xa1\x9e\x9e\xb3\xb0\xb0\xbe\xbc\xbc\xb7\xb6\xb6\xa7\ \xa5\xa5\xa2\x9e\xa0\xaa\xa6\xa8\xbb\xb8\xb9\xbe\xbc\xbc\xb6\xb4\ \xb5\xa1\x9f\xa1\xa0\x9d\x9f\xb4\xb0\xb2\xbd\xba\xbb\xc0\xbd\xbf\ \xbd\xbb\xbc\xc1\xbf\xbe\x00\x00\x00\xcd\xc4\xc1\xc2\xb9\xb6\xb1\ \xa9\xa6\x93\x90\x8e\x72\x76\x75\x58\x5e\x60\x49\x50\x56\x4d\x50\ \x58\x61\x61\x67\x7e\x79\x7b\x8c\x86\x87\x96\x90\x91\x99\x94\x96\ \x9b\x97\x99\x9e\x9b\x9c\x9c\x99\x9b\x9c\x9a\x9c\x95\x94\x96\x89\ \x88\x8a\x7b\x7d\x7e\x75\x78\x79\x73\x76\x77\x73\x76\x77\x77\x79\ \x7a\x7b\x7d\x7f\x7c\x7e\x82\x7f\x82\x86\x7f\x82\x86\x7e\x82\x86\ \x7b\x80\x83\x7c\x80\x83\x79\x7d\x81\x7a\x7e\x82\x7a\x7e\x81\x78\ \x7c\x7f\x77\x7c\x7f\x76\x7b\x7e\x75\x79\x7e\x76\x7a\x7e\x78\x7d\ \x81\x75\x79\x7f\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x6c\x73\x79\ \x67\x6f\x76\x60\x6a\x70\x65\x6e\x74\x64\x6e\x71\x55\x63\x69\x44\ \x55\x60\x49\x56\x60\x63\x69\x71\x69\x70\x77\x69\x6f\x74\x6d\x72\ \x77\x71\x75\x7a\x6e\x73\x78\x72\x77\x7c\x6e\x73\x77\x6f\x75\x78\ \x6b\x71\x77\x4a\x57\x60\x2d\x43\x4c\x3e\x4f\x57\x66\x6e\x74\x7d\ \x83\x87\x82\x87\x8a\x85\x88\x8d\x86\x8a\x8f\x84\x87\x8c\x86\x8b\ \x8f\x88\x8c\x90\x89\x8d\x92\x8a\x8e\x92\x8d\x91\x95\x91\x94\x98\ \x8e\x92\x96\x90\x95\x98\x91\x95\x9a\x90\x94\x99\x91\x96\x9b\x91\ \x94\x98\x93\x96\x9a\x97\x9a\x9d\x95\x98\x9c\x96\x99\x9e\x91\x95\ \x98\x88\x8c\x8f\x83\x86\x8a\x88\x8b\x8f\x8e\x91\x94\x89\x8c\x8e\ \x87\x89\x8c\x93\x95\x96\x97\x98\x9a\x92\x93\x96\x8d\x8d\x8f\x96\ \x96\x98\x9a\x9c\x9e\x95\x96\x9a\x91\x92\x94\x98\x97\x99\x9c\x9b\ \x9d\x96\x97\x98\x91\x92\x95\x96\x96\x99\xa2\xa1\xa4\xa9\xa9\xaa\ \xac\xab\xad\xad\xac\xae\xad\xac\xad\xaf\xae\xaf\xaf\xae\xb0\xac\ \xac\xae\xad\xaf\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb1\xaf\xae\ \xb0\xb1\xb0\xb2\xb2\xb2\xb3\xb4\xb4\xb4\xb3\xb3\xb3\xb4\xb5\xb4\ \xb6\xb6\xb7\xb5\xb5\xb5\xb3\xb2\xb3\xb3\xb2\xb4\xb2\xb2\xb3\xb7\ \xb6\xb7\xb5\xb4\xb6\xb5\xb5\xb5\xb7\xb7\xb7\xb3\xb4\xb5\xa6\xa7\ \xa8\x9d\x9d\x9e\xa6\xa5\xa7\xb1\xaf\xb0\xb6\xb4\xb4\xab\xaa\xa9\ \x9c\x9a\x9b\xa2\xa0\xa2\xb4\xb1\xb2\xbb\xba\xba\xb3\xb3\xb3\xa4\ \xa3\xa4\x9a\x97\x98\xa9\xa5\xa6\xba\xb8\xb8\xbc\xbc\xba\xb1\xb0\ \xaf\xa2\xa0\xa1\xa5\xa1\xa3\xb3\xb0\xb1\xc0\xbd\xbe\xba\xb9\xbb\ \xa7\xa6\xa8\x9e\x9b\x9d\xa5\xa2\xa5\xb6\xb3\xb5\xbe\xbb\xbd\xc0\ \xbc\xbd\x00\x00\x00\xc9\xc0\xbc\xbc\xb4\xb0\xa7\xa1\x9f\x88\x86\ \x86\x69\x6e\x6f\x4f\x57\x5a\x49\x50\x56\x57\x58\x5f\x6e\x6b\x6f\ \x83\x7e\x80\x90\x8a\x8c\x99\x94\x96\x9b\x97\x99\x9b\x97\x99\x9e\ \x9b\x9d\x9b\x98\x9a\x99\x97\x99\x92\x90\x93\x82\x82\x84\x78\x7a\ \x7b\x73\x75\x76\x6f\x72\x73\x76\x78\x79\x79\x7b\x7c\x77\x79\x7a\ \x7a\x7d\x80\x7d\x80\x84\x7e\x81\x85\x7d\x80\x84\x7c\x80\x84\x7b\ \x7f\x83\x7a\x7f\x82\x78\x7d\x80\x77\x7c\x7f\x77\x7c\x7f\x76\x7c\ \x7e\x76\x7b\x7f\x76\x7a\x7e\x76\x7a\x7f\x76\x7b\x7f\x75\x79\x7d\ \x75\x7a\x7e\x74\x79\x7e\x75\x7a\x7f\x74\x79\x7e\x71\x77\x7d\x70\ \x77\x7b\x70\x77\x7b\x71\x79\x7c\x6b\x75\x79\x61\x6c\x72\x5e\x67\ \x6e\x68\x6e\x74\x70\x76\x7c\x6d\x73\x78\x6d\x73\x78\x70\x75\x7a\ \x6f\x73\x78\x6e\x73\x78\x6f\x74\x78\x6f\x75\x78\x70\x76\x78\x63\ \x6b\x70\x54\x60\x66\x5e\x68\x6e\x76\x7c\x80\x7f\x84\x87\x81\x86\ \x8a\x85\x88\x8d\x84\x89\x8d\x89\x8d\x92\x88\x8c\x90\x87\x8b\x8f\ \x8a\x8e\x93\x8a\x8f\x93\x8c\x91\x95\x8f\x92\x97\x8e\x92\x96\x8f\ \x94\x97\x90\x94\x98\x91\x95\x99\x92\x95\x9a\x90\x94\x98\x94\x98\ \x9b\x95\x98\x9c\x95\x99\x9d\x96\x9a\x9d\x96\x99\x9d\x93\x96\x9b\ \x88\x8b\x90\x83\x86\x8a\x8a\x8d\x8f\x90\x93\x94\x8d\x8f\x91\x88\ \x8b\x8c\x91\x91\x93\x98\x98\x9a\x93\x93\x95\x8d\x8f\x90\x97\x97\ \x98\x9e\x9e\x9f\x97\x99\x9b\x90\x91\x95\x92\x92\x94\x9a\x9c\x9d\ \x9b\x9c\x9e\x90\x91\x96\x92\x94\x97\xa0\xa0\xa2\xa9\xa8\xaa\xae\ \xad\xaf\xad\xad\xae\xab\xab\xac\xae\xad\xaf\xaf\xae\xb0\xad\xab\ \xae\xae\xae\xb0\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\ \xb2\xb2\xb2\xb3\xb3\xb3\xb2\xb2\xb2\xb3\xb3\xb3\xb5\xb5\xb6\xb4\ \xb3\xb4\xb2\xb2\xb2\xb4\xb3\xb4\xb4\xb3\xb4\xb5\xb4\xb5\xb5\xb4\ \xb6\xb8\xb7\xb9\xb6\xb6\xb6\xb7\xb6\xb8\xb6\xb5\xb7\xb1\xb0\xb2\ \xa5\xa4\xa4\xa3\xa1\xa1\xad\xab\xab\xb8\xb6\xb6\xb3\xb2\xb2\xa6\ \xa4\xa5\xa1\x9e\xa0\xab\xa8\xa9\xb8\xb7\xb7\xbb\xba\xba\xb2\xb1\ \xb1\xa0\x9d\x9e\xa0\x9d\x9d\xae\xac\xab\xbb\xb9\xb8\xba\xb8\xb9\ \xab\xa9\xab\xa1\x9e\xa0\xa9\xa6\xa8\xb6\xb3\xb6\xbf\xbd\xbf\xb6\ \xb4\xb6\xa5\xa2\xa4\xa1\x9d\x9f\xae\xa9\xab\xb8\xb3\xb5\x00\x00\ \x00\xc5\xbc\xb8\xb6\xae\xab\x9b\x97\x95\x7c\x7b\x7c\x5e\x64\x65\ \x49\x51\x54\x4a\x50\x55\x5c\x5d\x61\x76\x73\x75\x89\x84\x86\x93\ \x8e\x90\x99\x96\x97\x9a\x97\x98\x9c\x99\x9a\x9d\x9a\x9c\x99\x96\ \x98\x97\x95\x97\x8e\x8d\x8f\x7d\x7e\x7f\x74\x76\x77\x6d\x71\x72\ \x6c\x6f\x70\x76\x78\x79\x76\x79\x7a\x74\x77\x78\x79\x7a\x7d\x79\ \x7b\x7f\x7c\x7f\x81\x7c\x7f\x83\x7c\x7f\x83\x7b\x7e\x82\x7a\x7e\ \x82\x78\x7d\x81\x77\x7c\x7f\x77\x7c\x7f\x75\x7a\x7e\x76\x7b\x7e\ \x76\x7b\x7f\x76\x7a\x7e\x75\x79\x7d\x74\x78\x7c\x73\x78\x7d\x75\ \x7a\x7f\x75\x7a\x7f\x73\x79\x7e\x74\x79\x7d\x76\x7b\x7f\x75\x7a\ \x7f\x76\x7c\x7f\x75\x7c\x80\x6f\x77\x7c\x6c\x73\x79\x6b\x71\x77\ \x6d\x73\x78\x6f\x75\x7b\x6c\x72\x77\x6e\x73\x78\x70\x76\x7b\x6d\ \x72\x76\x70\x76\x79\x70\x75\x79\x6e\x73\x76\x66\x6c\x70\x63\x6b\ \x6f\x6a\x71\x74\x7a\x7e\x82\x83\x86\x8a\x84\x88\x8c\x84\x87\x8c\ \x86\x89\x8d\x87\x8b\x8f\x89\x8d\x93\x8a\x8e\x93\x89\x8d\x92\x8c\ \x90\x95\x8e\x91\x95\x8e\x92\x96\x90\x94\x98\x92\x96\x99\x90\x93\ \x97\x91\x93\x97\x91\x93\x97\x92\x95\x99\x93\x96\x9a\x94\x97\x9a\ \x94\x98\x9c\x95\x98\x9c\x99\x9c\xa0\x97\x9a\x9f\x93\x96\x9b\x8c\ \x8f\x93\x86\x89\x8d\x8a\x8c\x8f\x91\x94\x95\x8e\x90\x92\x88\x8a\ \x8c\x91\x92\x93\x9b\x9c\x9d\x97\x98\x99\x92\x92\x94\x95\x95\x97\ \xa0\xa1\xa3\x9e\x9f\xa3\x91\x94\x96\x91\x92\x95\x99\x9b\x9d\x9b\ \x9d\xa0\x93\x95\x98\x92\x93\x95\x9e\x9e\xa0\xaa\xa9\xab\xad\xac\ \xae\xad\xac\xae\xae\xad\xaf\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\ \xae\xad\xaf\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\xb1\xb1\xb1\xb0\ \xb0\xb0\xb2\xb2\xb2\xb2\xb2\xb2\xb1\xb1\xb2\xb2\xb1\xb2\xb1\xb0\ \xb2\xb3\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb8\xb7\xb9\ \xb8\xb7\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb8\xb7\xb8\xb5\xb5\xb5\xaa\ \xaa\xaa\x9e\x9d\x9e\xa3\xa1\xa3\xb2\xae\xb0\xba\xb7\xb8\xb2\xb1\ \xb2\xa6\xa4\xa5\xa2\xa0\xa0\xad\xab\xab\xbf\xbc\xbc\xbb\xb9\xba\ \xa9\xa9\xa9\x9f\x9e\x9f\xa5\xa3\xa5\xb6\xb3\xb4\xbe\xbc\xbe\xb5\ \xb3\xb5\xa6\xa3\xa5\xa3\xa0\xa2\xb1\xae\xb1\xb9\xb6\xb8\xbe\xbb\ \xbd\xb4\xb3\xb4\xa3\xa0\xa3\xa5\xa1\xa3\x00\x00\x00\xc0\xb7\xb3\ \xad\xa6\xa2\x8e\x8c\x8a\x71\x72\x73\x55\x5b\x5c\x46\x4e\x50\x4e\ \x53\x57\x65\x66\x68\x7d\x79\x7b\x8c\x88\x89\x95\x91\x93\x99\x96\ \x98\x9b\x98\x99\x9a\x98\x98\x9b\x98\x9a\x99\x98\x9a\x96\x94\x96\ \x8a\x8a\x8c\x7b\x7c\x7f\x71\x74\x75\x6c\x70\x70\x6e\x71\x72\x76\ \x78\x79\x74\x77\x78\x72\x75\x76\x74\x76\x78\x77\x79\x7d\x78\x79\ \x7c\x7b\x7e\x81\x7b\x7e\x82\x7a\x7d\x81\x7a\x7e\x82\x78\x7d\x81\ \x76\x7b\x7f\x74\x79\x7d\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7e\x75\ \x7a\x7e\x75\x79\x7e\x74\x78\x7c\x75\x79\x7e\x75\x7a\x7f\x75\x7a\ \x7f\x75\x7a\x80\x73\x7a\x7f\x74\x7b\x7f\x75\x7b\x7f\x77\x7d\x81\ \x7a\x80\x85\x78\x7e\x83\x71\x78\x7d\x6d\x75\x7c\x6b\x71\x78\x6d\ \x73\x79\x6f\x75\x79\x6c\x72\x77\x70\x75\x7a\x73\x78\x7b\x70\x75\ \x78\x70\x74\x78\x6b\x71\x75\x62\x69\x6e\x64\x6b\x70\x6a\x71\x74\ \x78\x7c\x80\x84\x87\x8a\x87\x8a\x8e\x88\x8b\x8e\x87\x8a\x8e\x87\ \x8b\x8f\x89\x8d\x92\x8b\x8f\x94\x8c\x8f\x94\x90\x93\x98\x90\x93\ \x97\x90\x93\x97\x8e\x92\x95\x8e\x91\x94\x83\x85\x88\x7c\x7e\x80\ \x82\x83\x86\x8d\x90\x94\x93\x97\x9a\x95\x98\x9d\x94\x97\x9b\x96\ \x98\x9c\x96\x99\x9d\x97\x9a\x9e\x97\x9a\x9e\x98\x9a\x9e\x8f\x92\ \x96\x89\x8c\x8f\x8b\x8d\x8f\x92\x94\x95\x92\x94\x95\x8d\x8f\x90\ \x92\x93\x94\x9b\x9a\x9c\x9a\x9b\x9d\x95\x96\x99\x95\x95\x99\x9e\ \x9f\xa3\x9d\x9e\xa1\x94\x96\x9a\x8e\x90\x93\x97\x99\x9b\x9c\x9e\ \x9f\x98\x9a\x9b\x94\x95\x98\x9a\x9a\x9d\xa6\xa5\xa7\xac\xab\xad\ \xae\xad\xae\xaf\xae\xb0\xad\xac\xae\xae\xad\xaf\xad\xad\xae\xb1\ \xaf\xb2\xae\xad\xaf\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\ \xb0\xb3\xb3\xb3\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\ \xb6\xb4\xb6\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb8\ \xb7\xb9\xb5\xb4\xb7\xb5\xb4\xb6\xba\xb9\xba\xbb\xbb\xbb\xb1\xb0\ \xb2\xa2\xa1\xa3\x9f\x9d\x9f\xad\xab\xad\xb8\xb7\xb7\xb9\xb9\xb9\ \xa8\xa8\xa9\x9f\x9e\x9e\xa7\xa5\xa5\xb5\xb2\xb3\xbb\xba\xba\xb3\ \xb2\xb3\xa2\xa1\xa3\xa0\x9e\xa0\xac\xa9\xab\xba\xb7\xb9\xbd\xbc\ \xbe\xb2\xb0\xb2\xa7\xa4\xa8\xa4\xa1\xa2\xb2\xaf\xb1\xbb\xb9\xba\ \xbd\xba\xbc\xb1\xae\xb0\x00\x00\x00\xba\xb2\xae\xa4\x9d\x9b\x82\ \x80\x80\x67\x6a\x6b\x4e\x55\x55\x44\x4c\x4d\x54\x5a\x5a\x6e\x6f\ \x6f\x83\x7f\x80\x8e\x8c\x8c\x98\x95\x97\x9b\x98\x9a\x9a\x98\x99\ \x9b\x99\x9a\x9a\x98\x9a\x97\x96\x98\x93\x93\x94\x85\x85\x88\x77\ \x79\x7c\x6e\x71\x73\x69\x6d\x6e\x6e\x71\x72\x77\x79\x7a\x71\x74\ \x75\x70\x73\x76\x71\x74\x77\x74\x77\x7b\x77\x79\x7d\x7b\x7e\x82\ \x7b\x7e\x82\x79\x7d\x80\x78\x7c\x80\x79\x7e\x81\x77\x7c\x7f\x75\ \x7a\x7d\x75\x7a\x7e\x76\x7a\x7f\x75\x78\x7e\x74\x78\x7d\x74\x78\ \x7d\x75\x79\x7d\x74\x78\x7d\x75\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\ \x76\x7b\x81\x77\x7c\x81\x76\x7a\x7f\x76\x7b\x80\x77\x7d\x82\x79\ \x7f\x84\x77\x7d\x82\x71\x78\x7f\x6d\x73\x7a\x6a\x70\x77\x6f\x75\ \x7a\x6f\x75\x7a\x6e\x74\x78\x6f\x76\x79\x70\x75\x78\x6d\x73\x75\ \x68\x6f\x72\x64\x6b\x6f\x66\x6e\x71\x70\x76\x78\x76\x7a\x7d\x7c\ \x7f\x83\x85\x88\x8c\x88\x8b\x8f\x87\x8a\x8e\x89\x8b\x91\x89\x8d\ \x92\x8b\x8e\x92\x8c\x8f\x95\x8d\x90\x95\x90\x93\x97\x8e\x92\x96\ \x8d\x91\x94\x85\x89\x8c\x6f\x73\x76\x5c\x62\x65\x6b\x6e\x71\x85\ \x86\x8a\x93\x96\x99\x96\x98\x9c\x95\x97\x9b\x96\x97\x9b\x95\x97\ \x9b\x96\x98\x9c\x98\x9b\x9f\x99\x9b\x9f\x98\x9a\x9e\x92\x95\x99\ \x8b\x8e\x91\x8a\x8d\x8e\x94\x95\x96\x98\x9a\x9b\x93\x95\x96\x92\ \x92\x94\x9c\x9b\x9d\x9c\x9c\x9f\x95\x96\x9a\x91\x93\x97\x96\x97\ \x9b\xa0\xa1\xa4\x98\x9b\x9d\x90\x92\x95\x93\x95\x97\x9d\x9e\xa0\ \x9e\x9e\xa1\x97\x98\x9c\x98\x98\x9a\xa2\xa1\xa3\xa9\xa8\xa8\xb0\ \xaf\xb0\xae\xaf\xaf\xaf\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xb0\xaf\ \xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\xb0\xb3\xb3\xb3\ \xb3\xb3\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb1\xb0\xb2\xb3\xb2\xb4\xb7\ \xb6\xb8\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb9\xb8\xba\xb5\xb4\ \xb6\xb6\xb5\xb7\xbb\xba\xbc\xbc\xbb\xbc\xb9\xb8\xbb\xb4\xb3\xb6\ \xac\xac\xad\xa3\xa2\xa3\xa3\xa1\xa1\xb1\xb0\xb0\xb7\xb5\xb5\xb1\ \xb0\xb0\xa4\xa4\xa4\xa1\x9f\x9f\xa8\xa5\xa5\xb4\xb2\xb2\xbb\xba\ \xba\xae\xae\xaf\xa4\xa2\xa4\xa4\xa1\xa2\xb1\xae\xaf\xbe\xbc\xbd\ \xbb\xb8\xb9\xad\xac\xab\xa6\xa3\xa4\xa9\xa4\xa6\xb3\xaf\xb0\xbe\ \xba\xbb\x00\x00\x00\xb5\xad\xab\x99\x94\x93\x79\x79\x79\x5e\x63\ \x64\x4a\x52\x53\x4a\x50\x51\x5d\x60\x60\x75\x74\x74\x88\x84\x84\ \x91\x8e\x8e\x97\x95\x95\x9a\x97\x98\x99\x99\x99\x9a\x99\x9a\x97\ \x96\x98\x96\x95\x96\x8f\x8e\x90\x7f\x7f\x82\x73\x76\x7a\x6d\x70\ \x73\x68\x6b\x6d\x6f\x71\x72\x75\x77\x78\x70\x73\x75\x6f\x71\x75\ \x71\x74\x77\x70\x73\x77\x76\x79\x7d\x78\x7b\x7f\x7b\x7e\x82\x79\ \x7d\x81\x77\x7b\x7f\x79\x7d\x81\x77\x7b\x7f\x76\x7a\x7f\x74\x79\ \x7c\x76\x7a\x7f\x76\x7a\x7f\x77\x7b\x7f\x74\x79\x7e\x73\x77\x7c\ \x73\x77\x7c\x75\x79\x7e\x75\x79\x7e\x76\x7a\x7f\x77\x7b\x80\x77\ \x7b\x80\x76\x7a\x7f\x77\x7b\x80\x77\x7c\x80\x78\x7d\x82\x79\x7d\ \x83\x77\x7c\x82\x6f\x75\x7b\x6e\x74\x79\x6d\x73\x78\x6f\x75\x7a\ \x71\x77\x7a\x6f\x74\x77\x70\x75\x78\x6d\x74\x77\x64\x6b\x6e\x65\ \x6b\x6f\x6b\x70\x73\x73\x77\x7a\x78\x7b\x7f\x78\x7b\x7f\x7d\x80\ \x84\x87\x8a\x8e\x88\x8b\x8f\x89\x8c\x90\x89\x8c\x90\x8a\x8d\x90\ \x8b\x8e\x92\x8c\x8f\x94\x8d\x92\x96\x8c\x91\x94\x8c\x91\x95\x88\ \x8c\x90\x77\x7c\x80\x64\x6a\x6f\x69\x6e\x72\x73\x76\x79\x7d\x80\ \x83\x85\x87\x8a\x93\x94\x98\x96\x97\x9c\x97\x98\x9c\x98\x99\x9d\ \x99\x9a\x9e\x99\x9b\x9f\x99\x9c\x9f\x99\x9c\x9e\x95\x99\x9b\x8e\ \x91\x93\x8c\x8d\x8e\x95\x97\x98\x99\x9b\x9c\x95\x97\x98\x91\x91\ \x94\x95\x96\x99\x9b\x9c\xa0\x99\x9c\x9e\x90\x91\x93\x98\x9a\x9b\ \xa0\xa2\xa3\x9a\x9c\x9d\x8f\x91\x93\x93\x94\x95\x9f\x9f\xa0\xa6\ \xa6\xa8\x9d\x9d\x9f\x96\x97\x98\x9c\x9c\x9d\xaa\xaa\xa9\xb0\xb0\ \xb0\xaf\xac\xaf\xaf\xae\xb0\xb1\xb0\xb1\xb0\xaf\xb1\xb0\xaf\xb1\ \xb0\xaf\xb1\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb2\xb3\xb1\xb1\xb1\xb3\ \xb2\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb5\xb4\xb6\xb6\xb5\ \xb7\xb6\xb5\xb7\xb8\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb9\xb8\xba\ \xbb\xba\xbc\xba\xb9\xbb\xb8\xb7\xba\xb8\xb7\xb9\xba\xb9\xbb\xb6\ \xb6\xb6\xa8\xa8\xa8\xa2\xa1\xa1\xa4\xa2\xa2\xaf\xae\xae\xb9\xb8\ \xb8\xb1\xb0\xb0\xa2\xa1\xa1\x9f\x9e\x9e\xae\xac\xac\xbd\xbc\xbc\ \xbb\xb9\xb9\xac\xaa\xaa\xa4\xa2\xa2\xaa\xa6\xa7\xb4\xb1\xb2\xbf\ \xbb\xbb\xba\xb6\xb7\xb0\xab\xad\xa4\x9f\xa1\xa5\xa1\xa2\x00\x00\ \x00\xac\xa5\xa2\x8d\x8a\x8a\x6e\x71\x71\x54\x5a\x5c\x48\x4f\x51\ \x50\x53\x55\x66\x65\x65\x7c\x79\x78\x8c\x88\x88\x93\x91\x91\x98\ \x96\x96\x99\x97\x98\x99\x99\x9a\x98\x97\x98\x95\x95\x95\x93\x92\ \x93\x8a\x8a\x8b\x7a\x7b\x7f\x70\x73\x77\x69\x6d\x71\x67\x6a\x6d\ \x71\x73\x75\x73\x75\x76\x6f\x71\x73\x6f\x71\x75\x6c\x6f\x73\x6d\ \x70\x74\x73\x76\x7a\x76\x79\x7d\x79\x7c\x80\x78\x7b\x7f\x78\x7c\ \x80\x77\x7b\x80\x75\x7a\x7e\x74\x78\x7d\x74\x79\x7d\x76\x7a\x7e\ \x75\x79\x7e\x76\x7a\x7f\x75\x79\x7e\x73\x78\x7d\x76\x7a\x7f\x75\ \x79\x7e\x72\x76\x7b\x70\x74\x79\x73\x77\x7c\x76\x7a\x7e\x77\x7b\ \x80\x78\x7c\x81\x77\x7b\x80\x75\x78\x7c\x76\x7a\x7e\x78\x7d\x82\ \x75\x7a\x7f\x70\x75\x7b\x6e\x74\x79\x6e\x73\x78\x73\x78\x7b\x70\ \x75\x78\x6f\x74\x78\x69\x70\x73\x63\x6a\x6e\x66\x6b\x6e\x70\x74\ \x78\x75\x79\x7d\x79\x7c\x80\x7a\x7e\x81\x79\x7c\x80\x7f\x82\x86\ \x87\x8a\x8e\x8a\x8d\x91\x89\x8c\x90\x88\x8b\x8f\x8a\x8d\x91\x8a\ \x8d\x90\x8b\x8f\x93\x8c\x91\x94\x8d\x91\x94\x8c\x8f\x94\x87\x8b\ \x90\x7e\x83\x87\x71\x76\x7a\x61\x66\x6b\x5c\x61\x66\x6f\x70\x74\ \x88\x88\x8a\x94\x95\x98\x96\x98\x9c\x98\x99\x9e\x99\x9a\x9e\x99\ \x9b\x9e\x9a\x9c\x9f\x9a\x9d\x9e\x9d\xa1\xa1\x9c\xa0\xa1\x90\x94\ \x94\x8d\x90\x90\x91\x93\x95\x9b\x9e\x9f\x94\x96\x99\x8e\x8f\x92\ \x93\x94\x98\x9e\x9f\xa0\x9e\x9f\xa0\x95\x98\x98\x95\x97\x98\x9b\ \x9d\x9e\x9a\x9c\x9d\x94\x95\x96\x94\x95\x96\x9f\x9f\xa1\xa7\xa6\ \xa8\xa0\xa1\xa3\x95\x97\x98\x99\x98\x99\xa5\xa4\xa4\xad\xab\xad\ \xb0\xae\xb0\xaf\xae\xaf\xaf\xaf\xb0\xaf\xaf\xb0\xb1\xb0\xb2\xb3\ \xb2\xb4\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb2\xb3\xb3\xb4\xb4\xb3\ \xb5\xb4\xb3\xb5\xb4\xb3\xb5\xb5\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\ \xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\xb9\xbb\xba\xbc\xbb\xba\xbc\xbd\ \xbc\xbe\xba\xb9\xbb\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xba\xba\ \xbb\xb1\xb0\xb2\xa4\xa3\xa4\x9f\x9d\x9d\xaa\xa8\xa8\xb6\xb5\xb5\ \xb8\xb8\xb8\xac\xad\xad\xa4\xa3\xa3\xa5\xa3\xa3\xb5\xb2\xb2\xc0\ \xbd\xbe\xba\xb9\xb9\xad\xa9\xab\xa5\xa0\xa1\xab\xa6\xa8\xba\xb4\ \xb5\xc4\xc1\xc2\xb8\xb4\xb5\xa8\xa5\xa6\x00\x00\x00\xa0\x9a\x96\ \x80\x80\x7f\x64\x69\x6a\x4e\x55\x58\x48\x4f\x51\x58\x5b\x5b\x71\ \x6f\x6f\x84\x7f\x7f\x90\x8b\x8c\x95\x90\x91\x97\x95\x96\x9b\x98\ \x9a\x9a\x99\x9b\x98\x97\x98\x94\x93\x94\x8b\x8b\x8d\x7c\x7e\x81\ \x6f\x72\x76\x6b\x6e\x72\x67\x6a\x6d\x68\x6b\x6d\x6e\x70\x71\x6d\ \x6f\x6f\x6a\x6c\x6d\x68\x6c\x6d\x68\x6b\x6f\x6b\x6e\x72\x70\x73\ \x77\x75\x78\x7c\x75\x78\x7c\x79\x7d\x81\x78\x7c\x81\x75\x79\x7d\ \x74\x79\x7c\x74\x79\x7d\x74\x79\x7d\x75\x7a\x7e\x74\x78\x7c\x74\ \x78\x7d\x74\x78\x7d\x73\x78\x7d\x75\x79\x7e\x72\x77\x7c\x6c\x71\ \x76\x68\x6e\x73\x6c\x70\x75\x72\x76\x7b\x78\x7b\x80\x78\x7c\x81\ \x74\x77\x7c\x6e\x72\x76\x6c\x71\x76\x70\x74\x79\x79\x7e\x82\x75\ \x7b\x7e\x70\x76\x7b\x6d\x72\x78\x6e\x74\x78\x71\x77\x7a\x6e\x73\ \x76\x65\x6a\x6e\x65\x6b\x6e\x69\x6e\x71\x72\x75\x79\x79\x7c\x80\ \x7a\x7d\x81\x7b\x7e\x81\x7a\x7e\x80\x7b\x7f\x81\x80\x83\x87\x89\ \x8b\x8f\x8b\x8e\x92\x8a\x8d\x91\x8a\x8d\x90\x8a\x8d\x91\x8a\x8d\ \x91\x8c\x8f\x93\x8d\x90\x94\x8e\x92\x95\x8e\x92\x96\x8b\x8e\x92\ \x7f\x84\x87\x68\x6f\x73\x5d\x64\x68\x64\x67\x6a\x7a\x7b\x7b\x86\ \x85\x88\x90\x91\x94\x9a\x9b\x9f\x99\x9b\x9e\x98\x9a\x9e\x9b\x9d\ \xa1\x9d\xa0\xa2\x9f\xa2\xa4\xa0\xa4\xa5\x9c\xa1\xa1\x96\x9a\x9a\ \x8e\x91\x93\x91\x92\x93\x99\x9b\x9c\x99\x9a\x9c\x91\x92\x95\x94\ \x94\x96\x9c\x9c\x9e\xa0\xa2\xa2\x99\x9b\x9c\x93\x95\x96\x97\x98\ \x99\x9e\x9d\x9f\x99\x9a\x9b\x93\x95\x97\x9a\x9b\x9e\xa6\xa5\xa8\ \xa5\xa6\xa8\x9d\x9c\x9f\x97\x96\x98\xa1\xa0\xa1\xad\xab\xac\xaf\ \xad\xad\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb1\xb0\ \xb2\xb2\xb1\xb3\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb4\xb5\ \xb6\xb5\xb7\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb3\xb5\xb5\ \xb4\xb6\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ \xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\ \xb8\xb7\xb9\xac\xac\xad\xa0\xa0\xa0\xa4\xa3\xa3\xb2\xaf\xae\xbc\ \xbb\xbb\xb7\xb7\xb8\xa9\xa7\xa7\xa1\x9d\x9e\xad\xa8\xa9\xbb\xb6\ \xb7\xc2\xbe\xbf\xb8\xb5\xb5\xa9\xa7\xa8\xa1\x9e\x9e\xac\xa7\xa8\ \xbc\xb7\xb8\xbe\xba\xbb\x00\x00\x00\x94\x8f\x8b\x76\x77\x77\x5c\ \x61\x62\x4a\x52\x55\x4a\x51\x54\x5f\x61\x62\x79\x75\x76\x88\x83\ \x84\x93\x8e\x8f\x98\x93\x94\x98\x96\x97\x9c\x99\x9a\x98\x98\x99\ \x97\x96\x98\x93\x92\x94\x87\x87\x89\x78\x7a\x7e\x6f\x73\x76\x67\ \x6c\x6f\x65\x69\x6c\x6a\x6c\x6e\x6a\x6c\x6e\x60\x63\x66\x5e\x60\ \x64\x5e\x61\x64\x65\x68\x6c\x67\x6a\x6e\x6d\x71\x75\x72\x76\x7a\ \x74\x78\x7c\x76\x7b\x7e\x76\x7b\x7f\x77\x7c\x80\x75\x7a\x7d\x74\ \x7a\x7d\x74\x79\x7d\x73\x78\x7b\x72\x77\x7b\x71\x77\x7c\x74\x78\ \x7d\x74\x79\x7e\x74\x78\x7e\x70\x76\x7a\x66\x6d\x72\x61\x66\x6d\ \x5d\x63\x69\x67\x6b\x70\x73\x76\x7b\x78\x7b\x80\x71\x75\x7a\x68\ \x6d\x72\x64\x6a\x6f\x67\x6c\x71\x70\x74\x79\x79\x7e\x82\x75\x7b\ \x80\x71\x77\x7b\x70\x76\x79\x6f\x75\x79\x6a\x70\x73\x65\x69\x6e\ \x66\x6b\x6f\x6e\x74\x77\x73\x77\x7b\x79\x7d\x80\x7a\x7d\x81\x79\ \x7c\x7f\x7b\x7f\x80\x7c\x80\x83\x7a\x7d\x81\x80\x83\x85\x8b\x8f\ \x91\x8d\x8f\x93\x8b\x8e\x91\x8a\x8e\x90\x89\x8c\x8f\x8c\x90\x92\ \x8d\x90\x94\x8e\x92\x95\x90\x93\x97\x90\x93\x97\x8f\x93\x97\x80\ \x85\x8a\x69\x73\x77\x65\x6b\x6f\x5f\x62\x64\x6f\x70\x72\x83\x82\ \x84\x94\x94\x98\x99\x9b\x9f\x9a\x9b\xa0\x9b\x9d\xa1\x9c\x9f\xa2\ \x9e\xa1\xa3\xa0\xa4\xa5\xa0\xa3\xa4\x9f\xa2\xa4\x96\x99\x9b\x8e\ \x91\x92\x8c\x8e\x8f\x97\x98\x9a\x9e\x9e\xa0\x98\x99\x9b\x93\x93\ \x96\x9a\x9a\x9c\xa3\xa4\xa4\x9b\x9c\x9d\x92\x93\x95\x96\x96\x98\ \xa1\xa1\xa2\xa1\xa1\xa3\x97\x98\x9a\x96\x96\x98\xa1\xa1\xa3\xab\ \xaa\xac\xa0\x9f\xa0\x98\x97\x99\x9b\x99\x99\xa9\xa7\xa8\xb2\xb0\ \xb1\xb0\xae\xb0\xae\xad\xaf\xb1\xb0\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ \xb2\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb6\xb5\xb7\xb6\xb5\xb7\xb5\ \xb4\xb6\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\ \xb9\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbc\xbb\xbd\ \xbd\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xc0\xbf\xc1\xb9\ \xb9\xba\xb6\xb6\xb7\xad\xad\xad\xa2\x9f\x9e\xa4\xa1\xa1\xb5\xb3\ \xb3\xbc\xbb\xbb\xb6\xb3\xb2\xa9\xa6\xa6\xa3\xa0\xa1\xb2\xae\xaf\ \xbf\xbb\xbc\xbf\xbd\xbd\xb1\xaf\xb0\xa4\xa0\xa2\xa3\x9e\x9f\xb1\ \xac\xad\x00\x00\x00\x89\x85\x83\x6c\x6e\x6e\x55\x5b\x5d\x4a\x50\ \x53\x52\x57\x59\x68\x68\x69\x80\x7c\x7d\x8c\x87\x88\x93\x8f\x90\ \x99\x95\x95\x99\x97\x97\x99\x96\x97\x98\x97\x98\x96\x95\x97\x91\ \x91\x93\x84\x87\x88\x7a\x7e\x80\x73\x77\x7a\x6b\x6f\x72\x68\x6c\ \x70\x6c\x6e\x70\x62\x66\x68\x56\x5b\x5e\x4f\x53\x57\x4e\x51\x55\ \x5e\x61\x65\x66\x6b\x6e\x69\x6d\x70\x6b\x70\x73\x71\x76\x79\x73\ \x78\x7b\x77\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x74\x79\x7e\x75\x7a\ \x7e\x73\x78\x7b\x71\x76\x7a\x70\x75\x7b\x70\x76\x7b\x73\x79\x7e\ \x73\x78\x7d\x72\x78\x7c\x68\x6f\x74\x5b\x63\x68\x58\x5f\x64\x5f\ \x64\x69\x70\x74\x79\x75\x79\x7d\x6b\x6f\x74\x62\x68\x6d\x59\x5f\ \x63\x5c\x60\x65\x69\x6c\x71\x73\x78\x7b\x79\x7e\x82\x76\x7b\x7e\ \x73\x79\x7c\x6a\x6f\x72\x60\x66\x69\x56\x5c\x60\x5a\x5d\x61\x71\ \x72\x75\x7b\x7d\x82\x7b\x7e\x81\x7c\x7f\x83\x7a\x7d\x81\x79\x7d\ \x7e\x7c\x7f\x83\x7b\x7e\x82\x7b\x7e\x80\x7e\x82\x85\x89\x8c\x8e\ \x8c\x90\x91\x8a\x8e\x8f\x8a\x8e\x90\x8b\x8f\x92\x8f\x92\x96\x90\ \x93\x97\x90\x93\x97\x90\x93\x98\x92\x95\x9a\x8e\x91\x96\x80\x87\ \x8c\x6d\x75\x7a\x55\x5f\x63\x5e\x65\x68\x7b\x7e\x80\x94\x95\x99\ \x98\x99\x9c\x99\x9a\x9d\x9a\x9c\x9f\x9d\x9f\xa2\x9e\xa1\xa3\xa0\ \xa4\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x9b\x9e\x9f\x97\x9b\x9c\x8f\x92\ \x93\x8e\x8f\x93\x93\x94\x96\x9e\xa0\xa1\x98\x9a\x9b\x91\x92\x93\ \x94\x95\x95\xa0\xa0\xa1\x9c\x9d\x9e\x93\x95\x96\x95\x97\x99\xa0\ \xa0\xa2\xa3\xa5\xa6\x9a\x9c\x9d\x94\x95\x96\x9d\x9d\x9f\xa9\xa8\ \xa9\xa6\xa6\xa7\x9b\x99\x9b\x9b\x99\x9b\xa5\xa3\xa4\xaf\xae\xaf\ \xb1\xb1\xb1\xb2\xb1\xb2\xb0\xaf\xb1\xb3\xb1\xb3\xb3\xb2\xb4\xb3\ \xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb5\xb4\xb6\xb6\xb5\xb7\xb4\xb3\ \xb5\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb7\xb8\xb7\xb9\ \xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xbe\xbd\xbf\xbb\ \xba\xbc\xbd\xbc\xbe\xc0\xbf\xc1\xbf\xbe\xc0\xbb\xba\xbc\xbe\xbd\ \xbf\xbb\xba\xbb\xb1\xb1\xb1\xa3\xa3\xa3\xa1\xa0\xa0\xab\xa9\xa8\ \xbb\xb8\xb7\xbf\xbc\xbc\xb4\xb3\xb3\xa7\xa5\xa6\xa4\xa1\xa1\xb5\ \xb3\xb3\xc1\xbf\xbf\xbd\xbb\xbb\xb3\xb1\xb1\xa7\xa4\xa5\x00\x00\ \x00\x7b\x7a\x77\x61\x64\x65\x4f\x55\x58\x4c\x50\x54\x59\x5b\x5d\ \x71\x70\x70\x84\x81\x81\x8e\x89\x8a\x96\x92\x92\x98\x94\x94\x99\ \x96\x97\x99\x96\x98\x96\x96\x97\x95\x94\x96\x8e\x8d\x8f\x83\x85\ \x86\x7a\x7d\x7e\x74\x77\x79\x6f\x72\x76\x70\x73\x77\x72\x76\x78\ \x68\x6c\x6e\x5c\x60\x64\x4d\x52\x56\x40\x43\x48\x53\x55\x5a\x61\ \x65\x68\x67\x6c\x6f\x6b\x70\x73\x6c\x71\x75\x70\x74\x79\x73\x77\ \x7c\x76\x7b\x7f\x75\x7a\x7f\x73\x77\x7c\x75\x79\x7d\x72\x78\x7d\ \x71\x76\x7b\x70\x77\x7b\x70\x76\x7a\x73\x79\x7e\x71\x78\x7c\x71\ \x77\x7b\x6d\x74\x79\x67\x6d\x72\x5c\x63\x68\x5a\x60\x65\x66\x6a\ \x6f\x6e\x73\x75\x66\x6c\x6f\x5e\x64\x69\x55\x5a\x5e\x55\x59\x5e\ \x5b\x5f\x65\x68\x6b\x6f\x77\x7a\x7e\x79\x7e\x81\x75\x7b\x7e\x70\ \x75\x78\x5a\x61\x65\x3d\x46\x4d\x3b\x40\x47\x5b\x58\x5d\x7b\x79\ \x7d\x7b\x7e\x82\x79\x7c\x81\x7b\x7e\x81\x7c\x7f\x82\x7c\x7f\x82\ \x7c\x7f\x83\x7d\x80\x82\x7b\x7e\x82\x7f\x83\x84\x89\x8c\x8e\x8a\ \x8e\x90\x8b\x8e\x91\x8c\x8f\x93\x8e\x91\x95\x90\x93\x97\x91\x94\ \x98\x92\x95\x99\x93\x96\x9a\x91\x94\x99\x90\x94\x98\x85\x8a\x8f\ \x6d\x76\x7b\x65\x6e\x71\x7b\x7e\x80\x98\x99\x9d\x97\x98\x9b\x98\ \x99\x9d\x9b\x9c\x9f\x9c\x9e\xa2\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa3\ \xa5\x9f\xa1\xa3\x9f\xa0\xa3\x9f\xa1\xa3\x9b\x9e\x9f\x94\x96\x9a\ \x8c\x8e\x90\x92\x94\x95\x9a\x9c\x9d\x99\x9b\x9c\x93\x94\x95\x94\ \x93\x95\x9e\x9d\x9f\x9f\x9f\xa2\x97\x98\x9a\x95\x95\x97\x9f\x9f\ \xa1\xa9\xa8\xaa\xa2\xa3\xa4\x95\x96\x97\x98\x96\x97\xa6\xa5\xa7\ \xac\xaa\xad\xa2\xa1\xa3\x9b\x9a\x9c\xa1\xa0\xa1\xac\xaa\xab\xb0\ \xaf\xb1\xaf\xae\xb0\xaf\xad\xaf\xb2\xb1\xb2\xb4\xb2\xb4\xb4\xb2\ \xb4\xb3\xb2\xb4\xb6\xb5\xb7\xb3\xb2\xb4\xb4\xb3\xb6\xb5\xb4\xb6\ \xb7\xb5\xb7\xb7\xb5\xb7\xb8\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb8\ \xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\ \xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbd\xbc\xbe\xbc\xba\xbb\xbb\xbb\xbb\ \xba\xba\xba\xb9\xb9\xb9\xb2\xb1\xb1\xa3\xa0\xa0\xa3\x9f\x9e\xb3\ \xb0\xb0\xbd\xbc\xbc\xbc\xba\xba\xb3\xb2\xb2\xa3\xa1\xa1\xa9\xa4\ \xa5\xb9\xb5\xb6\xc3\xc1\xc1\xbc\xb9\xb8\x00\x00\x00\x73\x73\x72\ \x57\x5c\x5e\x4b\x51\x53\x4e\x52\x54\x61\x62\x63\x78\x76\x76\x88\ \x84\x85\x91\x8c\x8d\x97\x93\x93\x97\x95\x95\x9a\x98\x98\x99\x98\ \x99\x95\x95\x96\x92\x91\x93\x8b\x8a\x8d\x82\x84\x86\x7c\x7e\x80\ \x76\x79\x7b\x77\x7a\x7f\x7a\x7e\x80\x78\x7c\x7d\x6e\x72\x74\x62\ \x67\x69\x51\x56\x5a\x3b\x3f\x44\x49\x4c\x51\x59\x5c\x60\x65\x69\ \x6d\x6e\x72\x76\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x75\x7a\x7e\ \x75\x79\x7d\x73\x77\x7b\x72\x76\x7b\x73\x79\x7d\x73\x79\x7e\x73\ \x79\x7e\x71\x77\x7c\x70\x76\x7b\x74\x7a\x7f\x73\x7a\x7e\x72\x77\ \x7c\x6f\x75\x7a\x64\x6a\x6e\x5a\x61\x65\x5c\x63\x67\x60\x65\x69\ \x60\x66\x6a\x5a\x60\x65\x4b\x4f\x54\x4f\x53\x58\x55\x59\x5e\x61\ \x64\x69\x6d\x70\x74\x77\x7b\x7e\x7c\x81\x84\x75\x7b\x7f\x66\x6f\ \x72\x3c\x49\x50\x1f\x2c\x35\x30\x30\x38\x63\x5c\x60\x7b\x7a\x7d\ \x7c\x7e\x81\x7c\x7e\x82\x7d\x80\x84\x7e\x81\x85\x7a\x7d\x81\x7e\ \x81\x85\x80\x83\x87\x7c\x7f\x83\x7f\x83\x85\x88\x8c\x8d\x8c\x90\ \x92\x8d\x90\x94\x8d\x90\x94\x8f\x92\x96\x91\x95\x98\x92\x95\x99\ \x91\x94\x99\x93\x97\x99\x92\x96\x97\x92\x96\x99\x86\x8c\x90\x7d\ \x84\x87\x86\x89\x8c\x94\x95\x99\x9a\x9c\x9e\x9a\x9b\x9f\x9b\x9b\ \x9f\x9c\x9d\xa1\x9f\xa0\xa3\xa1\xa2\xa6\xa0\xa2\xa3\xa1\xa3\xa6\ \xa2\xa4\xa8\xa1\xa2\xa6\x9f\xa1\xa2\xa1\xa3\xa5\x98\x9a\x9c\x8c\ \x8e\x8f\x8d\x8b\x8e\x99\x98\x9a\x9d\x9d\x9e\x95\x96\x98\x90\x90\ \x93\x9a\x9a\x9b\xa5\xa6\xa7\x9f\xa0\xa1\x98\x97\x99\x9a\x99\x9b\ \xa9\xa8\xaa\xa3\xa3\xa4\x98\x98\x9a\x98\x99\x9a\xa2\xa0\xa2\xad\ \xac\xad\xa9\xa8\xaa\x9e\x9e\x9f\x9c\x9a\x9d\xa8\xa6\xa8\xb0\xae\ \xb0\xb3\xb0\xb2\xb5\xb3\xb5\xb6\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\ \xb3\xb1\xb3\xb2\xb0\xb2\xb5\xb4\xb5\xb6\xb5\xb7\xb7\xb6\xb7\xb6\ \xb6\xb7\xb7\xb6\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xba\xba\ \xbc\xba\xba\xbb\xbb\xba\xbc\xbd\xbc\xbd\xbc\xba\xbc\xbc\xb9\xbb\ \xbe\xbd\xbf\xbd\xbb\xbd\xbb\xba\xbc\xb9\xb9\xba\xbe\xbd\xbe\xc0\ \xbf\xc0\xbf\xbe\xc0\xb9\xb8\xb9\xae\xad\xad\xa0\x9f\x9f\xa4\xa1\ \xa1\xb5\xb1\xb0\xbe\xbc\xbb\xb9\xb8\xb8\xa9\xa8\xa8\x9f\x9a\x9a\ \xac\xa7\xa6\xbe\xb9\xb8\x00\x00\x00\x6a\x6b\x6b\x51\x56\x58\x47\ \x4d\x4f\x52\x55\x57\x6b\x6a\x6a\x80\x7c\x7d\x8e\x89\x8a\x92\x8e\ \x8e\x97\x93\x94\x97\x94\x95\x97\x96\x97\x96\x95\x97\x93\x91\x93\ \x92\x91\x93\x88\x87\x89\x7c\x7d\x80\x78\x7a\x7b\x74\x78\x79\x77\ \x7a\x7b\x7b\x7f\x81\x7a\x7d\x80\x74\x77\x7b\x6a\x6e\x72\x4e\x54\ \x59\x35\x3b\x41\x40\x45\x4c\x51\x53\x58\x5d\x60\x64\x6b\x6e\x73\ \x6b\x6f\x74\x6b\x6f\x74\x6f\x73\x78\x73\x77\x7c\x74\x78\x7d\x74\ \x78\x7d\x73\x78\x7d\x71\x76\x7b\x71\x77\x7c\x72\x78\x7d\x70\x76\ \x7b\x71\x77\x7c\x74\x7a\x7e\x73\x79\x7c\x71\x78\x7b\x70\x77\x7a\ \x6c\x71\x74\x61\x68\x6c\x5b\x62\x66\x56\x5c\x60\x57\x5e\x61\x51\ \x58\x5c\x4d\x52\x57\x4c\x50\x55\x52\x56\x5b\x53\x56\x5a\x63\x65\ \x69\x6c\x6f\x73\x7a\x7e\x82\x7d\x82\x86\x74\x7b\x7e\x5c\x68\x6d\ \x36\x45\x4e\x1d\x2a\x35\x37\x36\x3f\x6a\x64\x68\x7e\x7e\x80\x7e\ \x80\x84\x7c\x7f\x83\x7f\x82\x86\x7f\x82\x86\x7d\x80\x84\x7e\x81\ \x85\x7f\x82\x86\x7d\x80\x84\x80\x83\x85\x8a\x8c\x8d\x8d\x91\x93\ \x8f\x93\x97\x90\x94\x98\x90\x93\x97\x92\x95\x99\x92\x95\x98\x91\ \x95\x97\x92\x96\x96\x93\x95\x96\x93\x96\x97\x90\x92\x96\x92\x94\ \x97\x94\x95\x99\x98\x9a\x9d\x9c\x9d\xa1\x9e\x9f\xa3\x9d\x9e\xa2\ \x9e\x9f\xa2\xa0\xa0\xa4\xa1\xa2\xa4\xa0\xa1\xa4\xa1\xa2\xa5\xa0\ \xa2\xa5\xa2\xa4\xa5\xa3\xa5\xa6\xa1\xa2\xa4\x9a\x9c\x9d\x91\x92\ \x94\x8f\x8e\x91\x95\x94\x97\x9e\x9e\xa0\x97\x99\x9b\x92\x92\x94\ \x9a\x99\x9b\xa5\xa5\xa7\xa2\xa3\xa4\x97\x97\x98\x96\x95\x97\xa0\ \x9e\xa0\xa9\xa9\xab\xa0\xa1\xa2\x99\x98\x9a\x9c\x9b\x9d\xac\xab\ \xad\xac\xab\xad\x9e\x9e\xa0\x97\x96\x99\xa0\x9f\x9f\xb0\xaf\xaf\ \xb5\xb4\xb5\xb6\xb4\xb7\xb6\xb3\xb5\xb2\xaf\xb1\xb2\xb1\xb2\xb3\ \xb1\xb2\xb4\xb3\xb4\xb7\xb6\xb7\xb8\xb7\xb9\xb8\xb7\xb7\xba\xb9\ \xb9\xb9\xba\xba\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbc\xbb\xba\ \xbc\xba\xbc\xbe\xbc\xbd\xbc\xb9\xbb\xbc\xb9\xbb\xbd\xbb\xbc\xbb\ \xb9\xbb\xba\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xc0\xbf\xc1\xc1\xc0\ \xc2\xc0\xbf\xc1\xc1\xc1\xc2\xb9\xb9\xba\xa6\xa6\xa7\xa0\x9c\x9b\ \xae\xaa\xaa\xbd\xbb\xbb\xbd\xbb\xbb\xb5\xb2\xb3\xa8\xa3\xa3\xa1\ \x9c\x9b\x00\x00\x00\x5e\x60\x62\x4d\x52\x56\x4d\x51\x56\x5b\x5b\ \x5e\x72\x6e\x6f\x84\x7f\x80\x91\x8c\x8d\x94\x91\x91\x98\x95\x96\ \x9a\x97\x99\x95\x94\x96\x95\x93\x95\x92\x91\x93\x8d\x8c\x8f\x80\ \x7f\x82\x76\x78\x7a\x72\x74\x75\x71\x73\x74\x76\x78\x7a\x7a\x7d\ \x81\x7a\x7d\x81\x77\x7a\x7e\x69\x6e\x72\x49\x52\x57\x2b\x33\x39\ \x27\x2c\x34\x41\x43\x49\x5a\x5a\x5e\x66\x69\x6d\x68\x6b\x70\x6a\ \x6e\x73\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x74\x78\x7d\x73\x77\ \x7c\x72\x76\x7b\x70\x76\x7b\x70\x76\x7b\x70\x75\x7a\x6f\x75\x7a\ \x74\x79\x7d\x74\x79\x7c\x71\x76\x79\x74\x79\x7c\x73\x78\x7b\x69\ \x6f\x73\x61\x67\x6b\x58\x5f\x63\x55\x5d\x60\x48\x4e\x53\x49\x4d\ \x53\x49\x4d\x52\x3e\x42\x47\x46\x48\x4c\x52\x54\x56\x63\x65\x66\ \x72\x73\x77\x80\x82\x85\x7c\x81\x84\x73\x7a\x7d\x5a\x66\x6b\x32\ \x45\x4e\x1e\x2a\x36\x3b\x39\x43\x6e\x68\x6c\x80\x81\x84\x7f\x80\ \x84\x7e\x80\x84\x7f\x81\x85\x7f\x82\x86\x7b\x7e\x82\x80\x82\x86\ \x7e\x81\x85\x7d\x80\x83\x82\x83\x87\x89\x8a\x8e\x8e\x90\x94\x8f\ \x92\x96\x90\x94\x96\x91\x94\x95\x93\x96\x97\x93\x96\x97\x91\x94\ \x95\x94\x96\x97\x96\x97\x98\x97\x99\x9a\x97\x98\x9b\x98\x99\x9c\ \x99\x9a\x9d\x9d\x9e\xa2\x9e\x9f\xa3\x9c\x9d\xa1\x9d\x9d\xa1\x9f\ \xa0\xa3\xa0\xa1\xa5\xa2\xa3\xa5\xa0\xa2\xa3\xa1\xa3\xa5\xa3\xa5\ \xa6\xa4\xa5\xa7\xa4\xa6\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x96\x97\x9b\ \x8f\x8f\x93\x96\x94\x97\x9f\x9f\xa1\x9a\x9a\x9b\x93\x92\x94\x97\ \x96\x98\xa1\xa0\xa2\xa2\xa0\xa2\x98\x97\x99\x95\x94\x96\x9f\x9e\ \xa0\xa9\xa8\xaa\xa4\xa3\xa5\x9a\x99\x9b\x9b\x9a\x9c\xa9\xa7\xa9\ \xad\xac\xae\xa3\xa2\xa4\x98\x96\x97\x9c\x99\x98\xa9\xa7\xa8\xb2\ \xb0\xb1\xb2\xaf\xb1\xb0\xad\xae\xb0\xaf\xb1\xb0\xae\xae\xb2\xb0\ \xb0\xb6\xb4\xb4\xb8\xb6\xb7\xb7\xb6\xb6\xb7\xb6\xb7\xb8\xb8\xb9\ \xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbf\xbd\xbd\xbc\xb9\xbb\xbc\ \xb9\xbb\xbb\xb8\xba\xbb\xb8\xba\xbb\xb9\xb9\xba\xb9\xb9\xbb\xba\ \xba\xb9\xb8\xba\xbf\xbe\xc0\xbf\xbf\xc0\xbf\xbd\xbf\xbe\xbd\xbf\ \xbe\xbd\xbf\xbf\xbd\xbf\xbf\xbe\xbf\xb6\xb6\xb7\xa4\xa4\xa4\xa1\ \x9f\x9f\xb1\xae\xaf\xb9\xb4\xb5\xbd\xb8\xb8\xb0\xad\xad\x00\x00\ \x00\x58\x5c\x5e\x4c\x52\x55\x51\x55\x59\x64\x65\x67\x7c\x77\x78\ \x8a\x85\x86\x92\x8f\x8f\x95\x92\x93\x97\x95\x97\x97\x96\x97\x97\ \x95\x96\x93\x92\x94\x91\x90\x92\x86\x85\x87\x76\x77\x7b\x6e\x6f\ \x73\x6a\x6b\x6f\x6e\x70\x72\x74\x76\x77\x79\x7c\x7f\x7a\x7d\x81\ \x7a\x7e\x81\x6a\x71\x75\x56\x61\x67\x38\x45\x4c\x22\x29\x34\x2d\ \x30\x3a\x4b\x4c\x54\x65\x67\x6b\x68\x6b\x70\x69\x6c\x71\x6a\x6e\ \x73\x6c\x70\x75\x6f\x74\x78\x72\x77\x7b\x72\x76\x7b\x71\x75\x7a\ \x71\x75\x7a\x72\x77\x7c\x72\x77\x7c\x72\x77\x7c\x71\x76\x7a\x73\ \x78\x7b\x76\x7b\x7e\x73\x78\x7b\x73\x78\x7b\x6f\x74\x78\x64\x6b\ \x6f\x5b\x61\x66\x4b\x51\x57\x3a\x40\x46\x37\x3e\x44\x3c\x43\x48\ \x29\x2f\x35\x23\x27\x2b\x38\x3a\x3d\x53\x54\x56\x6b\x6c\x6e\x75\ \x76\x7a\x7e\x81\x85\x7c\x80\x83\x74\x7b\x7f\x5a\x68\x6d\x34\x45\ \x4f\x1f\x2b\x37\x3f\x3e\x46\x70\x6b\x70\x7f\x7f\x82\x7f\x81\x85\ \x80\x81\x85\x80\x83\x87\x80\x83\x87\x7e\x81\x85\x81\x84\x88\x7f\ \x82\x86\x7e\x81\x84\x80\x82\x84\x85\x88\x8b\x8c\x8e\x91\x90\x91\ \x93\x93\x95\x96\x93\x94\x95\x93\x94\x95\x93\x95\x96\x95\x97\x98\ \x93\x95\x96\x97\x99\x9a\x97\x99\x9c\x97\x99\x9d\x97\x98\x9c\x9b\ \x9c\xa0\x9d\x9f\xa2\x9f\xa0\xa3\x9f\x9e\xa2\x9e\x9e\xa1\x9f\xa1\ \xa3\xa2\xa3\xa5\xa1\xa2\xa3\xa1\xa3\xa4\xa3\xa5\xa6\xa5\xa4\xa6\ \xa6\xa6\xa8\xa3\xa4\xa5\xa5\xa6\xa7\xa4\xa5\xa6\x9b\x9c\x9e\x90\ \x91\x92\x93\x93\x94\x9f\x9e\xa0\x9e\x9d\x9f\x97\x96\x98\x94\x93\ \x95\x9c\x9a\x9c\xa5\xa4\xa6\x9d\x9c\x9e\x96\x95\x97\x99\x99\x9b\ \xa5\xa4\xa6\xa7\xa6\xa8\x9e\x9d\x9f\x99\x97\x99\xa2\xa0\xa1\xab\ \xa9\xaa\xa8\xa7\xa6\x9c\x9c\x9b\x9a\x99\x99\xa7\xa4\xa5\xad\xab\ \xad\xb0\xaf\xaf\xb3\xb2\xb3\xb3\xb1\xb1\xb4\xb2\xb2\xb3\xb1\xb1\ \xb7\xb4\xb4\xb7\xb6\xb6\xb8\xb8\xb8\xbb\xba\xbb\xbb\xb9\xbb\xba\ \xb9\xbb\xba\xb8\xb9\xba\xb8\xb8\xbc\xb9\xba\xbd\xba\xbb\xbe\xbc\ \xbc\xbd\xba\xbb\xbc\xba\xba\xba\xb8\xb8\xbd\xbc\xbc\xbd\xbb\xbb\ \xbf\xbc\xbd\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ \xbe\xc0\xc1\xc0\xc2\xc2\xc1\xc3\xbe\xbd\xbf\xac\xaa\xac\x9f\x9b\ \x9e\xa2\x9e\xa0\xb3\xae\xaf\xbd\xb9\xb8\x00\x00\x00\x52\x55\x5a\ \x49\x4e\x51\x55\x57\x5a\x6d\x6a\x6b\x80\x7b\x7c\x8d\x88\x89\x94\ \x92\x93\x98\x96\x97\x97\x95\x97\x97\x95\x96\x95\x94\x96\x95\x94\ \x96\x90\x8f\x91\x7c\x7d\x80\x6e\x70\x74\x68\x6a\x6e\x66\x67\x6b\ \x6c\x6d\x70\x76\x78\x78\x7a\x7c\x7f\x7a\x7d\x7f\x7a\x7e\x80\x72\ \x78\x7b\x62\x6b\x71\x49\x57\x5e\x2f\x3c\x48\x30\x39\x43\x4b\x50\ \x58\x5d\x61\x65\x63\x66\x6b\x68\x6b\x6f\x69\x6c\x71\x6b\x6f\x74\ \x6e\x71\x76\x71\x75\x79\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x72\ \x77\x7c\x71\x76\x7b\x73\x76\x7c\x71\x76\x7a\x72\x77\x7a\x72\x77\ \x7a\x74\x79\x7c\x74\x79\x7b\x72\x77\x7b\x6b\x72\x76\x5f\x67\x6b\ \x45\x4d\x54\x27\x30\x37\x28\x30\x37\x2c\x32\x37\x26\x2c\x32\x20\ \x28\x2d\x28\x2d\x32\x3f\x41\x46\x5c\x5e\x61\x6b\x6b\x6f\x76\x77\ \x7b\x81\x83\x87\x7e\x84\x87\x75\x7d\x80\x58\x65\x6b\x2f\x41\x4b\ \x1c\x27\x31\x40\x3c\x44\x6e\x67\x6a\x80\x7f\x82\x7f\x81\x83\x7d\ \x7f\x82\x81\x84\x87\x80\x84\x87\x7f\x81\x85\x82\x84\x88\x81\x83\ \x86\x73\x75\x77\x62\x60\x63\x6a\x63\x66\x82\x7c\x7d\x8f\x8e\x8e\ \x93\x93\x95\x93\x94\x94\x93\x93\x94\x94\x96\x97\x95\x97\x98\x96\ \x98\x99\x98\x9b\x9c\x95\x98\x9b\x98\x99\x9d\x9a\x9b\x9f\x9d\x9f\ \xa2\x9e\x9f\xa1\xa0\xa0\xa2\xa1\xa0\xa2\xa1\xa2\xa3\xa1\xa2\xa3\ \xa1\xa0\xa2\xa2\xa4\xa5\xa0\xa1\xa2\xa5\xa3\xa6\xa7\xa6\xa8\xa6\ \xa5\xa7\xa5\xa4\xa6\xa8\xa6\xa9\xa6\xa5\xa7\x9c\x9c\x9e\x92\x93\ \x94\x92\x92\x93\x9b\x9a\x9b\xa0\x9f\xa0\x9b\x9a\x9c\x93\x92\x94\ \x98\x97\x99\xa7\xa6\xa8\xa5\xa5\xa6\x9a\x9b\x9c\x97\x96\x98\x9f\ \x9e\xa0\xaa\xaa\xab\xa3\xa2\xa3\x9b\x9b\x9b\x9b\x9a\x9a\xa7\xa5\ \xa4\xae\xac\xab\xa4\xa4\xa4\x9a\x99\x9a\x9e\x9c\x9e\xac\xa9\xab\ \xb2\xaf\xb1\xb5\xb3\xb3\xb3\xb1\xb1\xb6\xb4\xb4\xb4\xb2\xb2\xb5\ \xb2\xb2\xb6\xb4\xb3\xb8\xb7\xb7\xbc\xba\xbb\xbc\xb9\xbc\xba\xb7\ \xba\xbb\xb7\xba\xbb\xb9\xba\xbc\xba\xba\xbc\xba\xba\xbe\xbc\xbc\ \xbc\xb9\xba\xbd\xbc\xbc\xbe\xbc\xbc\xbe\xbc\xbc\xbf\xbc\xbe\xc0\ \xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc2\xbe\xc0\xc0\xbe\ \xc0\xc1\xc0\xc2\xc0\xbf\xc1\xbe\xbd\xbf\xb6\xb3\xb5\xa6\xa3\xa6\ \x9f\x9a\x9b\xa5\xa0\xa1\x00\x00\x00\x4e\x52\x56\x4f\x51\x56\x60\ \x5f\x61\x76\x71\x72\x87\x81\x81\x90\x8b\x8d\x95\x91\x94\x98\x95\ \x97\x98\x96\x98\x96\x95\x97\x93\x92\x94\x91\x90\x92\x85\x84\x86\ \x73\x73\x76\x68\x6b\x6e\x61\x64\x68\x61\x64\x68\x6c\x6d\x70\x77\ \x79\x7b\x7a\x7d\x80\x7a\x7d\x81\x79\x7c\x80\x77\x7b\x7e\x6d\x74\ \x77\x54\x5d\x64\x44\x50\x5b\x3f\x49\x53\x50\x56\x5c\x59\x5d\x62\ \x5d\x60\x65\x64\x68\x6c\x68\x6b\x70\x68\x6b\x70\x6c\x6f\x74\x6e\ \x72\x77\x72\x76\x7b\x71\x75\x7b\x71\x75\x7b\x73\x76\x7c\x71\x76\ \x7b\x72\x76\x7b\x72\x77\x7b\x73\x78\x7c\x72\x77\x7a\x74\x79\x7c\ \x74\x79\x7c\x73\x78\x7b\x6f\x75\x78\x69\x6e\x73\x54\x5c\x63\x38\ \x43\x49\x2d\x36\x3c\x29\x2f\x34\x32\x39\x3f\x35\x3d\x41\x32\x38\ \x3e\x3f\x42\x48\x52\x54\x59\x5e\x5f\x64\x6d\x6e\x72\x7a\x7d\x80\ \x7f\x83\x86\x7d\x82\x85\x72\x7a\x7e\x57\x66\x6c\x2e\x41\x4b\x1c\ \x26\x32\x3e\x3a\x43\x6f\x68\x6c\x81\x80\x82\x82\x83\x85\x81\x82\ \x85\x82\x84\x87\x81\x83\x87\x81\x83\x87\x7e\x80\x84\x70\x74\x76\ \x41\x43\x49\x26\x20\x27\x55\x44\x47\x84\x7b\x7b\x92\x91\x92\x93\ \x91\x94\x93\x93\x95\x94\x95\x97\x96\x98\x99\x95\x97\x98\x98\x9a\ \x9c\x99\x9a\x9e\x97\x98\x9c\x9a\x9b\x9f\x9b\x9c\x9e\x9d\x9e\x9f\ \xa1\xa2\xa3\xa2\xa1\xa3\xa2\xa2\xa3\xa1\xa1\xa3\xa2\xa2\xa4\xa4\ \xa4\xa6\xa5\xa6\xa6\xa5\xa4\xa6\xa6\xa5\xa6\xa8\xa7\xa9\xa9\xa8\ \xaa\xaa\xa9\xab\xa9\xa8\xaa\xa4\xa3\xa5\xa2\xa0\xa2\x9a\x99\x9b\ \x93\x92\x94\x9a\x99\x9a\xa1\xa0\xa1\x9c\x9c\x9d\x97\x96\x98\x96\ \x95\x97\xa2\xa1\xa3\xa7\xa6\xa8\x9f\x9e\x9f\x9a\x98\x9a\x9f\x9d\ \x9e\xaa\xa8\xa8\xa9\xa7\xa7\xa0\x9f\x9f\x9b\x9a\x99\xa4\xa2\xa1\ \xae\xac\xac\xa7\xa6\xa6\x9b\x9a\x9c\x9c\x9a\x9a\xa7\xa3\xa3\xae\ \xab\xab\xb1\xaf\xaf\xb4\xb2\xb2\xb6\xb4\xb4\xb4\xb1\xb1\xb2\xaf\ \xaf\xb5\xb4\xb3\xb9\xb7\xb8\xbb\xb8\xba\xbd\xbb\xbc\xbc\xb9\xbb\ \xbd\xba\xbb\xbb\xb8\xb8\xbc\xba\xba\xbb\xb9\xb9\xbb\xb9\xb9\xbd\ \xbb\xbc\xbd\xbc\xbc\xc0\xbd\xbf\xc0\xbd\xbf\xbe\xbb\xbd\xbf\xbb\ \xbd\xc1\xbd\xbf\xc1\xbd\xc0\xc1\xbe\xc0\xc0\xbd\xbf\xc0\xbe\xc0\ \xbe\xbc\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbe\xbc\xbd\xb5\xb1\xb3\xa8\ \xa3\xa4\x00\x00\x00\x4e\x53\x57\x54\x57\x5a\x66\x63\x65\x7d\x77\ \x78\x8a\x84\x84\x92\x8c\x8e\x95\x92\x94\x97\x94\x96\x97\x94\x96\ \x95\x94\x96\x93\x92\x94\x8d\x8c\x8e\x7b\x7b\x7d\x6c\x6e\x72\x64\ \x68\x6c\x5e\x62\x67\x64\x67\x6b\x6e\x70\x73\x79\x7a\x7e\x7a\x7d\ \x81\x79\x7c\x80\x78\x7b\x80\x77\x7a\x7e\x74\x77\x7b\x66\x6b\x6f\ \x5c\x64\x6b\x54\x5d\x65\x50\x55\x5b\x4f\x52\x58\x58\x5b\x60\x5c\ \x5f\x63\x61\x63\x68\x60\x62\x65\x64\x66\x6b\x69\x6c\x71\x6f\x72\ \x77\x71\x75\x7a\x72\x76\x7c\x73\x77\x7c\x71\x76\x79\x72\x76\x7b\ \x72\x77\x7b\x72\x77\x7b\x73\x78\x7c\x73\x77\x7b\x73\x78\x7b\x6d\ \x72\x76\x66\x6b\x6f\x65\x6a\x6e\x63\x69\x6e\x58\x5f\x64\x42\x4a\ \x51\x34\x3b\x42\x45\x4c\x53\x46\x4e\x54\x44\x4b\x51\x48\x4c\x54\ \x55\x57\x5e\x59\x5a\x60\x65\x65\x6a\x6e\x6f\x73\x7b\x7d\x81\x81\ \x85\x89\x7e\x84\x87\x74\x7d\x80\x5a\x69\x70\x31\x44\x4e\x1c\x27\ \x33\x3f\x3a\x44\x6d\x65\x69\x84\x82\x84\x81\x82\x85\x81\x83\x86\ \x81\x84\x88\x80\x83\x87\x7d\x80\x84\x73\x77\x7b\x41\x4d\x52\x06\ \x0f\x14\x19\x11\x16\x61\x56\x58\x8c\x88\x88\x92\x91\x92\x94\x94\ \x96\x95\x95\x97\x95\x97\x98\x95\x96\x98\x94\x96\x99\x98\x9a\x9b\ \x9a\x9b\x9d\x9a\x9b\x9d\x9b\x9c\x9e\x9d\x9f\xa0\x9e\xa0\xa1\xa1\ \xa1\xa3\xa1\xa1\xa3\xa2\xa1\xa3\x9f\x9f\x9f\x99\x98\x98\xa2\xa0\ \xa0\xa8\xa5\xa5\xa8\xa6\xa6\xa8\xa5\xa7\xaa\xa8\xaa\xaa\xa7\xa9\ \xa8\xa7\xa9\xa9\xa8\xaa\xa9\xa8\xab\xa8\xa7\xa9\x9f\x9e\xa0\x95\ \x94\x96\x96\x95\x97\x9e\x9e\x9f\xa1\xa1\xa2\x9c\x9b\x9d\x94\x93\ \x95\x9b\x99\x9a\xa5\xa3\xa3\xa6\xa4\xa5\x9c\x9a\x9a\x9c\x99\x99\ \xa7\xa4\xa4\xab\xa9\xa9\xa6\xa5\xa5\x9e\x9c\x9d\x9e\x9b\x9d\xab\ \xa8\xaa\xab\xa9\xaa\xa8\xa6\xa6\x9f\x9b\x9b\xa1\x9e\x9d\xa9\xa7\ \xa7\xb0\xae\xaf\xb4\xb2\xb2\xb3\xb1\xb1\xb2\xb0\xb0\xb4\xb2\xb2\ \xb5\xb3\xb3\xb7\xb6\xb5\xbc\xb9\xba\xbd\xba\xbc\xba\xb8\xb8\xbb\ \xb8\xb8\xbc\xba\xba\xbb\xb8\xb8\xbb\xb9\xba\xbb\xb8\xba\xbb\xb9\ \xba\xbf\xbc\xbd\xbf\xbc\xbd\xbe\xba\xbc\xbf\xbb\xbd\xc1\xbe\xc0\ \xbf\xbc\xbe\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ \xbe\xc0\xc0\xbe\xc0\xc0\xbf\xbf\xbe\xbc\xbc\xbf\xbd\xbe\x00\x00\ \x00\x4d\x52\x54\x58\x59\x5b\x6f\x6b\x6c\x81\x7b\x7c\x8b\x86\x87\ \x93\x8d\x8f\x95\x91\x93\x97\x94\x96\x94\x92\x94\x96\x94\x96\x91\ \x8f\x91\x84\x83\x85\x73\x75\x77\x69\x6c\x6f\x60\x64\x68\x61\x64\ \x69\x68\x6a\x6e\x74\x75\x79\x7a\x7c\x80\x79\x7c\x80\x79\x7c\x80\ \x78\x7c\x80\x76\x7a\x7e\x73\x77\x7a\x6e\x72\x76\x63\x69\x6f\x61\ \x68\x6d\x53\x56\x5c\x4c\x4f\x55\x49\x4c\x53\x4d\x4f\x54\x52\x53\ \x58\x54\x54\x5a\x55\x55\x5b\x5f\x60\x65\x6a\x6d\x71\x6e\x72\x77\ \x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x73\x77\x7c\x74\x78\x7d\x72\ \x77\x7b\x72\x77\x7b\x72\x76\x7b\x70\x75\x78\x66\x6b\x70\x59\x5f\ \x64\x56\x5d\x64\x5c\x63\x68\x60\x66\x6b\x56\x5d\x63\x45\x4d\x55\ \x48\x4f\x57\x49\x4f\x56\x48\x4e\x54\x53\x57\x5d\x56\x58\x5e\x57\ \x57\x5d\x60\x5f\x65\x65\x65\x6a\x72\x72\x77\x7c\x7f\x83\x82\x86\ \x89\x81\x86\x89\x77\x7f\x83\x5b\x6a\x71\x33\x45\x4f\x1e\x29\x33\ \x39\x35\x3d\x6f\x65\x69\x83\x80\x82\x82\x83\x86\x7f\x81\x85\x82\ \x84\x88\x81\x84\x88\x79\x7d\x81\x5b\x69\x6d\x21\x34\x39\x02\x0d\ \x12\x34\x38\x3d\x7a\x79\x79\x90\x90\x90\x95\x94\x96\x96\x95\x97\ \x96\x97\x99\x96\x96\x9b\x96\x96\x9a\x99\x9a\x9c\x9a\x9b\x9d\x9d\ \x9d\xa0\x9c\x9c\x9f\x9d\x9e\xa0\x9e\x9f\xa0\x9f\xa0\xa1\xa1\xa1\ \xa3\x9e\x9d\x9f\x8d\x8b\x8b\x7c\x7a\x7a\x8a\x84\x85\x9c\x95\x96\ \xa7\xa2\xa3\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xaa\ \xa8\xaa\xaa\xa9\xab\xac\xab\xae\xab\xaa\xac\xa1\xa0\xa3\x98\x97\ \x99\x95\x96\x98\x9c\x9c\x9e\xa5\xa3\xa5\x9e\x9d\x9f\x96\x95\x97\ \x97\x96\x96\xa2\xa0\xa1\xa6\xa4\xa4\xa2\xa0\xa0\x9e\x9c\x9c\xa2\ \x9f\x9f\xaa\xa8\xa8\xaa\xa8\xa9\x9f\x9d\x9e\x9a\x97\x99\xa3\xa0\ \xa2\xaf\xac\xac\xad\xaa\xaa\xa3\xa3\xa3\x9b\x9a\x9a\xa2\xa0\xa1\ \xab\xa9\xaa\xb3\xb0\xaf\xb5\xb3\xb3\xb4\xb3\xb3\xb4\xb2\xb2\xb6\ \xb4\xb4\xb8\xb6\xb7\xba\xb7\xb9\xb9\xb5\xb6\xba\xb7\xb7\xba\xb7\ \xb7\xbb\xba\xba\xb9\xb6\xb9\xb9\xb6\xb8\xbb\xb8\xba\xbb\xb8\xba\ \xbe\xbb\xbd\xbe\xbb\xbc\xbf\xbc\xbe\xc0\xbc\xbf\xbe\xbb\xbd\xbf\ \xbc\xbe\xbf\xbc\xbe\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc1\xbe\ \xc0\xc2\xbf\xc1\xc2\xbf\xc1\xc2\xbf\xc1\x00\x00\x00\x4e\x53\x56\ \x5e\x5e\x5f\x77\x72\x73\x87\x81\x83\x8e\x89\x8b\x94\x8f\x91\x96\ \x92\x94\x96\x93\x95\x94\x91\x93\x94\x93\x95\x8f\x8e\x90\x7d\x7d\ \x7d\x70\x72\x74\x67\x6a\x6e\x61\x64\x68\x64\x67\x6b\x6e\x70\x74\ \x79\x7a\x7e\x79\x7b\x7f\x79\x7c\x80\x79\x7c\x81\x79\x7c\x80\x77\ \x7a\x7e\x74\x78\x7c\x6f\x74\x77\x6a\x6e\x73\x64\x6a\x6f\x54\x59\ \x5e\x42\x46\x4d\x37\x3b\x45\x3b\x3d\x46\x3b\x3c\x45\x46\x46\x4f\ \x44\x45\x4f\x50\x50\x58\x61\x63\x68\x6d\x70\x75\x6f\x73\x78\x70\ \x74\x79\x71\x75\x7a\x73\x77\x7c\x74\x78\x7d\x74\x78\x7c\x72\x76\ \x7b\x71\x76\x7b\x70\x75\x79\x65\x6a\x6f\x59\x61\x66\x51\x59\x5f\ \x57\x5f\x64\x61\x67\x6c\x5e\x64\x69\x54\x5c\x64\x42\x48\x51\x39\ \x3d\x45\x3c\x40\x47\x44\x48\x4e\x4d\x50\x56\x53\x53\x58\x5c\x5d\ \x61\x60\x61\x66\x66\x67\x6d\x76\x77\x7c\x81\x83\x87\x84\x89\x8b\ \x7f\x85\x89\x76\x7e\x82\x5d\x6a\x70\x37\x49\x52\x1d\x28\x30\x35\ \x30\x38\x6b\x62\x65\x85\x82\x83\x82\x82\x86\x80\x82\x85\x82\x85\ \x89\x82\x85\x89\x75\x7b\x7f\x4e\x5f\x64\x2b\x3e\x45\x38\x46\x4c\ \x68\x6c\x6e\x88\x89\x8a\x93\x92\x95\x97\x96\x98\x97\x97\x99\x98\ \x98\x9b\x9a\x99\x9d\x9a\x9b\x9c\x9a\x9a\x9d\x9d\x9d\xa0\x9f\x9e\ \xa1\x9d\x9c\x9f\x9b\x9b\x9e\x9f\x9f\xa1\xa2\xa1\xa3\x9c\x9b\x9d\ \x84\x85\x86\x71\x71\x72\x6e\x6b\x6d\x81\x7b\x7c\x95\x8c\x8e\xa6\ \xa0\xa2\xab\xa7\xa9\xa9\xa6\xa8\xa9\xa6\xa8\xaa\xa8\xaa\xaa\xa9\ \xab\xac\xaa\xad\xad\xac\xae\xab\xaa\xac\xa6\xa5\xa7\x9f\x9f\xa1\ \x97\x96\x98\x9b\x99\x9a\xa2\xa0\xa1\xa2\xa1\xa3\x9c\x9b\x9b\x98\ \x96\x96\xa1\x9e\x9f\xaa\xa7\xa8\xa9\xa6\xa6\xa0\x9d\x9e\x9d\x9b\ \x9c\xa6\xa3\xa4\xac\xa9\xaa\xa4\xa3\xa4\x9e\x9d\x9e\x9e\x9b\x9b\ \xa9\xa4\xa6\xb1\xb0\xb0\xa9\xa8\xa8\xa1\x9e\xa0\xa2\x9e\xa0\xaa\ \xa5\xa5\xb2\xad\xae\xb5\xb1\xb2\xb5\xb2\xb3\xb5\xb2\xb3\xb6\xb2\ \xb3\xb6\xb2\xb4\xb7\xb2\xb3\xb8\xb4\xb5\xb8\xb4\xb5\xb9\xb7\xb7\ \xb8\xb5\xb7\xb9\xb6\xb8\xbb\xb8\xba\xba\xb7\xb9\xbe\xbb\xbd\xbf\ \xbc\xbe\xbf\xbc\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xc1\xbe\xbf\xc0\xbd\ \xc0\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbf\xc0\xbd\xbf\xc1\xbe\xc0\ \xc2\xbf\xc1\xc3\xc0\xc2\x00\x00\x00\x52\x56\x5a\x66\x65\x67\x7d\ \x78\x7a\x8a\x85\x87\x90\x8c\x8e\x94\x90\x92\x95\x92\x94\x96\x94\ \x96\x94\x92\x94\x91\x90\x93\x8b\x8a\x8c\x7a\x7a\x7d\x71\x73\x76\ \x6a\x6d\x71\x65\x68\x6c\x66\x69\x6d\x74\x75\x79\x7a\x7b\x7f\x79\ \x7a\x7e\x79\x7b\x7f\x78\x7c\x80\x77\x7b\x80\x76\x79\x7e\x76\x7a\ \x7e\x71\x75\x79\x70\x74\x78\x64\x6a\x6f\x4e\x56\x5c\x30\x36\x3d\ \x2c\x31\x3a\x2b\x2f\x39\x29\x2b\x35\x32\x33\x3e\x37\x39\x45\x43\ \x45\x50\x5a\x5c\x64\x6a\x6d\x72\x6e\x72\x77\x70\x74\x79\x70\x74\ \x79\x72\x76\x7b\x72\x76\x7b\x74\x77\x7d\x73\x77\x7c\x73\x77\x7c\ \x71\x75\x7a\x68\x6e\x73\x61\x67\x6c\x58\x5f\x64\x5e\x64\x68\x6b\ \x6f\x73\x66\x6b\x6f\x5e\x64\x6a\x41\x49\x51\x25\x2d\x36\x22\x2b\ \x32\x1e\x25\x2c\x26\x29\x2f\x3c\x3d\x41\x4c\x4c\x52\x5e\x5e\x63\ \x64\x66\x6a\x72\x74\x79\x7f\x82\x86\x86\x8a\x8e\x85\x89\x8d\x80\ \x84\x88\x77\x7f\x84\x5f\x6d\x74\x38\x49\x52\x1f\x2a\x33\x35\x32\ \x3a\x6a\x60\x64\x82\x7f\x80\x82\x84\x87\x81\x82\x86\x84\x86\x8a\ \x83\x85\x89\x71\x77\x7b\x5d\x68\x6d\x60\x6a\x6d\x72\x77\x79\x81\ \x83\x86\x8a\x8a\x8e\x94\x93\x96\x96\x97\x98\x9a\x99\x9b\x9b\x9a\ \x9d\x9a\x99\x9b\x9b\x9a\x9c\x9c\x9c\x9f\x9d\x9d\xa0\x9d\x9d\xa0\ \x9c\x9c\x9f\x9e\x9f\xa1\xa1\xa0\xa2\x9e\x9e\xa1\x90\x91\x94\x7e\ \x81\x82\x67\x67\x68\x6a\x67\x69\x76\x6f\x71\x8d\x86\x87\x9f\x9a\ \x9c\xa9\xa5\xa6\xa8\xa6\xa8\xaa\xa7\xaa\xa9\xa6\xa9\xaa\xa8\xaa\ \xab\xa9\xab\xac\xaa\xac\xaa\xa9\xac\xa9\xa8\xaa\xa2\xa1\xa2\x9a\ \x99\x9a\x96\x95\x97\x9c\x9b\x9d\xa4\xa3\xa3\xa3\xa2\xa3\x9d\x9b\ \x9d\x9e\x9b\x9c\xa8\xa5\xa5\xac\xa9\xaa\xa4\xa2\xa4\x9b\x98\x9a\ \xa0\x9d\x9e\xaa\xa7\xa8\xac\xab\xab\xa6\xa3\xa3\x9c\x98\x99\xa4\ \xa1\xa2\xaf\xad\xad\xb1\xb0\xb0\xaa\xa6\xa8\xa1\x9d\x9f\xa5\xa1\ \xa2\xad\xaa\xab\xb5\xb1\xb3\xb7\xb3\xb4\xb5\xb1\xb3\xb3\xaf\xb1\ \xb5\xb1\xb3\xb4\xb1\xb2\xb7\xb3\xb5\xb9\xb6\xb7\xb9\xb6\xb8\xbb\ \xb8\xba\xbc\xb9\xba\xbd\xba\xbc\xbe\xbb\xbd\xbe\xbb\xbd\xbf\xbc\ \xbe\xbf\xbc\xbe\xbd\xba\xbc\xc0\xbd\xbe\xbf\xbc\xbf\xbf\xbb\xbf\ \xc2\xbe\xc1\xc1\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc2\xc1\xbe\xc0\xc1\ \xbe\xc0\x00\x00\x00\x5a\x5a\x5d\x70\x6d\x6f\x84\x7f\x81\x8d\x88\ \x8b\x91\x8c\x90\x94\x91\x94\x95\x91\x95\x95\x93\x96\x92\x91\x93\ \x91\x90\x93\x87\x86\x89\x7d\x7e\x82\x73\x76\x7a\x6c\x6f\x72\x69\ \x6a\x6e\x6c\x6d\x71\x76\x78\x7a\x76\x77\x7b\x77\x78\x7c\x78\x7a\ \x7e\x78\x7b\x80\x77\x7b\x80\x76\x7a\x7f\x74\x78\x7c\x74\x77\x7c\ \x6f\x73\x78\x61\x68\x6d\x49\x52\x59\x2c\x33\x3b\x27\x2c\x35\x21\ \x26\x30\x26\x29\x33\x26\x28\x33\x31\x34\x40\x40\x44\x4f\x57\x5a\ \x63\x66\x69\x70\x6a\x6e\x74\x6f\x73\x78\x71\x75\x7a\x71\x75\x7a\ \x73\x77\x7c\x74\x78\x7c\x74\x78\x7d\x74\x79\x7e\x73\x77\x7c\x6d\ \x73\x78\x66\x6c\x71\x5f\x65\x6a\x5e\x63\x67\x67\x6b\x6e\x68\x6c\ \x71\x65\x69\x6e\x54\x5c\x63\x2b\x39\x42\x21\x2f\x39\x1b\x24\x2c\ \x11\x16\x1a\x1e\x22\x26\x34\x36\x3b\x4f\x4f\x53\x66\x67\x6b\x71\ \x72\x77\x7e\x81\x86\x88\x8b\x8f\x88\x8b\x8f\x85\x89\x8e\x82\x88\ \x8d\x7a\x81\x88\x64\x71\x79\x3c\x4d\x56\x20\x2b\x35\x30\x2d\x36\ \x61\x58\x5c\x82\x7f\x80\x84\x85\x88\x82\x84\x88\x81\x82\x85\x79\ \x7b\x7d\x6d\x72\x74\x6f\x74\x75\x7e\x80\x82\x83\x85\x88\x83\x84\ \x88\x8b\x89\x8d\x93\x93\x94\x98\x97\x99\x9a\x99\x9b\x9a\x99\x9b\ \x9a\x99\x9b\x98\x98\x9b\x9b\x9b\x9f\x9e\x9f\xa3\x9f\x9e\xa2\x9f\ \x9e\xa2\x9f\x9f\xa2\x9f\xa1\xa4\x9b\x9b\xa0\x80\x82\x86\x65\x67\ \x69\x5d\x5d\x5e\x5f\x5c\x60\x72\x70\x71\x8d\x8a\x8b\xa4\xa0\xa2\ \xaa\xa7\xa9\xab\xa8\xaa\xaa\xa7\xaa\xaa\xa8\xaa\xaa\xa7\xa9\xac\ \xa8\xaa\xab\xa9\xad\xab\xaa\xae\xaa\xa9\xac\xa8\xa7\xaa\x9e\x9d\ \xa1\x96\x95\x97\x9a\x98\x99\xa3\xa0\xa2\xa5\xa2\xa4\x9d\x9c\x9d\ \x9b\x98\x9a\xa2\x9f\xa0\xa7\xa4\xa6\xa5\xa3\xa5\x9b\x99\x9b\x9e\ \x9c\x9d\xa8\xa5\xa6\xb0\xad\xae\xab\xa9\xaa\xa2\x9e\xa0\xa1\x9e\ \x9f\xaa\xa6\xa7\xb0\xad\xaf\xb0\xad\xaf\xa6\xa3\xa5\xa1\x9e\xa0\ \xa7\xa3\xa5\xaf\xaa\xac\xb5\xb0\xb2\xb5\xb2\xb4\xb6\xb3\xb5\xb3\ \xb1\xb2\xb5\xb1\xb4\xb6\xb2\xb4\xb6\xb3\xb6\xb8\xb4\xb8\xbb\xb8\ \xbc\xbe\xba\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xbf\xbc\xbe\xbf\xbc\xbd\ \xbe\xb9\xbd\xc0\xbc\xc0\xbe\xbb\xbf\xbe\xba\xbf\xc0\xbc\xc1\xc2\ \xbe\xc1\xc0\xbc\xc0\xc2\xbe\xc2\xc1\xbd\xc1\xbf\xbc\xc0\x00\x00\ \x00\x62\x60\x63\x78\x73\x75\x87\x82\x84\x8f\x8a\x8e\x93\x8f\x93\ \x96\x93\x98\x94\x91\x96\x93\x91\x95\x91\x90\x94\x90\x8f\x93\x83\ \x82\x87\x7e\x7e\x84\x76\x78\x7c\x6e\x70\x72\x6b\x6c\x70\x71\x72\ \x75\x74\x75\x77\x6f\x70\x74\x6c\x6d\x72\x70\x71\x76\x74\x76\x7c\ \x76\x79\x7e\x75\x78\x7d\x72\x77\x7b\x71\x76\x7a\x6f\x73\x79\x63\ \x6a\x6f\x4a\x53\x5b\x33\x3c\x44\x29\x30\x39\x20\x25\x2f\x27\x2c\ \x35\x2a\x2d\x38\x2f\x35\x40\x44\x48\x52\x59\x5b\x64\x67\x69\x71\ \x6a\x6c\x74\x6d\x70\x75\x71\x75\x79\x71\x75\x7a\x73\x76\x7c\x74\ \x77\x7d\x74\x78\x7e\x74\x77\x7e\x73\x77\x7e\x72\x77\x7c\x6b\x71\ \x76\x66\x6c\x71\x5d\x63\x67\x54\x5a\x5f\x5c\x60\x66\x64\x67\x6c\ \x61\x66\x6b\x4c\x57\x5f\x34\x42\x4d\x2f\x39\x42\x2a\x32\x38\x2e\ \x35\x3c\x34\x39\x3f\x4d\x4e\x54\x66\x67\x6b\x74\x75\x79\x80\x81\ \x87\x86\x89\x8e\x86\x89\x8e\x87\x8b\x90\x87\x8b\x90\x82\x87\x8d\ \x7a\x82\x89\x66\x74\x7c\x3f\x50\x59\x20\x2e\x3a\x2b\x2c\x38\x5a\ \x55\x5b\x81\x7e\x81\x85\x86\x89\x7c\x7d\x7f\x74\x75\x75\x72\x74\ \x74\x75\x76\x77\x7e\x80\x81\x85\x85\x87\x88\x89\x8d\x85\x85\x89\ \x87\x88\x8a\x93\x92\x94\x96\x95\x97\x99\x98\x9b\x98\x99\x9c\x98\ \x98\x9c\x9b\x9b\x9f\x9f\x9f\xa3\xa0\xa0\xa4\xa0\x9f\xa3\x9f\xa0\ \xa3\x9e\x9f\xa3\x9d\x9d\xa3\x86\x88\x8d\x6d\x71\x76\x5e\x62\x66\ \x62\x64\x67\x6a\x6b\x6c\x7c\x7b\x7b\x8c\x88\x8a\x96\x92\x94\xa4\ \xa0\xa2\xad\xaa\xac\xac\xaa\xab\xaa\xa6\xa9\xa9\xa7\xa9\xac\xaa\ \xac\xad\xac\xb0\xab\xaa\xad\xab\xaa\xad\xab\xaa\xac\xa4\xa3\xa6\ \x9d\x9c\x9e\x96\x94\x96\x9c\x99\x9b\xa3\xa1\xa3\xa2\x9f\xa1\x9a\ \x97\x99\x99\x96\x98\xa4\xa1\xa3\xaa\xa7\xa9\xa6\xa4\xa6\x9f\x9c\ \x9e\xa4\xa1\xa3\xab\xa8\xa9\xb2\xaf\xb1\xa9\xa5\xa7\xa0\x9c\x9f\ \xa2\x9e\xa2\xad\xa9\xad\xb5\xb1\xb3\xad\xab\xac\xa3\x9f\xa2\xa0\ \x9c\xa0\xa9\xa4\xa8\xb6\xb1\xb3\xb7\xb3\xb5\xb7\xb4\xb6\xb7\xb3\ \xb5\xb5\xb2\xb3\xb6\xb3\xb6\xb7\xb3\xb7\xb9\xb5\xba\xbd\xb9\xbd\ \xbd\xb9\xbd\xbd\xba\xbe\xbf\xbb\xbe\xbf\xbc\xbd\xbe\xba\xbe\xc0\ \xbc\xc0\xc0\xbc\xc0\xbf\xbc\xc1\xc0\xbc\xc1\xc0\xbc\xc1\xbf\xbb\ \xc0\xc0\xbb\xc0\xbe\xba\xbf\xbe\xba\xbf\x00\x00\x00\x6a\x67\x6b\ \x7e\x79\x7c\x8a\x84\x88\x90\x8c\x90\x94\x90\x95\x95\x92\x97\x95\ \x93\x98\x93\x92\x97\x90\x8f\x93\x8d\x8c\x90\x87\x86\x8b\x7d\x7e\ \x83\x77\x79\x7d\x70\x71\x74\x6f\x70\x74\x74\x75\x79\x6d\x6f\x73\ \x64\x66\x6b\x60\x61\x67\x62\x62\x6a\x67\x69\x6f\x72\x74\x79\x75\ \x79\x7e\x74\x78\x7d\x71\x75\x7a\x72\x76\x7c\x68\x6e\x75\x50\x59\ \x62\x3f\x4a\x54\x34\x3f\x4a\x2b\x34\x3f\x2a\x32\x3c\x2f\x36\x42\ \x32\x39\x44\x4a\x4e\x58\x5f\x61\x6a\x65\x68\x70\x69\x6c\x74\x6b\ \x6e\x75\x70\x74\x79\x70\x75\x7c\x73\x76\x7e\x73\x76\x7e\x76\x79\ \x80\x74\x78\x80\x74\x78\x7f\x74\x79\x80\x70\x76\x7d\x6c\x72\x78\ \x60\x66\x6c\x4a\x51\x59\x4a\x4f\x58\x52\x57\x5f\x5d\x62\x67\x5c\ \x64\x6a\x4d\x56\x5f\x44\x4e\x57\x44\x4e\x56\x44\x4b\x54\x43\x49\ \x51\x56\x59\x5d\x6b\x6d\x71\x77\x79\x7d\x83\x86\x8b\x88\x8b\x91\ \x89\x8c\x91\x88\x8b\x91\x87\x8a\x92\x88\x8b\x92\x84\x89\x90\x7c\ \x85\x8c\x68\x74\x7c\x45\x55\x60\x25\x34\x43\x27\x2e\x3a\x53\x54\ \x5c\x7c\x7c\x7f\x7a\x7c\x7d\x6b\x6d\x6e\x72\x72\x73\x7f\x7e\x81\ \x84\x84\x86\x83\x85\x86\x87\x87\x8b\x89\x8a\x8e\x86\x87\x8b\x89\ \x8a\x8e\x90\x91\x94\x96\x96\x9a\x97\x98\x9c\x99\x9a\x9e\x9c\x9b\ \x9f\x9e\x9c\xa1\x9e\x9e\xa2\x9e\x9e\xa3\x9f\x9f\xa4\x9f\x9d\xa3\ \x9d\x9d\xa3\x93\x95\x9b\x87\x8b\x91\x81\x85\x8b\x7c\x7f\x82\x72\ \x74\x75\x6a\x68\x6a\x69\x67\x6a\x76\x72\x75\x91\x8c\x8e\xa7\xa3\ \xa4\xae\xac\xad\xab\xa8\xaa\xad\xaa\xac\xb0\xac\xaf\xaf\xad\xb0\ \xac\xab\xad\xab\xaa\xae\xaa\xa9\xad\xaf\xae\xb2\xac\xab\xae\xa0\ \x9f\xa1\x96\x94\x96\x99\x95\x97\xa3\xa0\xa2\xa6\xa4\xa6\x9c\x9b\ \x9d\x9a\x99\x9c\x9f\x9d\xa1\xad\xaa\xac\xac\xa9\xab\xa4\xa2\xa4\ \xa0\x9d\x9f\xa4\xa1\xa3\xb2\xaf\xb1\xb1\xae\xb1\xa4\xa1\xa5\x9d\ \x99\x9e\xa7\xa3\xa8\xb3\xb0\xb4\xb1\xaf\xb2\xa6\xa4\xa6\x9d\x99\ \x9c\xa1\x9d\x9f\xad\xaa\xac\xba\xb7\xb9\xba\xb7\xb9\xb9\xb5\xb9\ \xb8\xb4\xb8\xb8\xb4\xb9\xb8\xb4\xb9\xba\xb6\xbb\xbb\xb7\xbc\xba\ \xb6\xbb\xbe\xba\xbe\xc1\xbd\xc1\xc0\xbc\xc1\xc0\xbc\xc0\xc0\xbc\ \xc1\xc0\xbc\xc1\xbe\xba\xbf\xc0\xbc\xc1\xbf\xbb\xc0\xbe\xba\xbf\ \xbf\xbb\xc0\xbd\xb9\xbe\x00\x00\x00\x73\x6f\x74\x84\x7f\x82\x8c\ \x87\x8c\x91\x8d\x93\x94\x90\x95\x94\x92\x97\x92\x91\x95\x91\x90\ \x94\x8f\x8e\x92\x8b\x8a\x8e\x86\x86\x8b\x80\x81\x87\x79\x7b\x80\ \x72\x73\x77\x6e\x6f\x73\x6d\x6e\x72\x67\x68\x6d\x5c\x5d\x63\x55\ \x58\x5f\x56\x59\x61\x5b\x5d\x66\x69\x6c\x73\x72\x75\x7b\x73\x77\ \x7c\x72\x76\x7b\x70\x73\x7a\x69\x6f\x77\x5f\x68\x71\x51\x5c\x66\ \x47\x53\x5f\x3f\x4b\x57\x3c\x46\x51\x3f\x49\x55\x42\x49\x56\x52\ \x57\x61\x60\x63\x6b\x63\x66\x6e\x65\x68\x70\x69\x6c\x74\x6b\x6e\ \x76\x70\x74\x7b\x73\x76\x7d\x71\x75\x7d\x73\x79\x7f\x73\x79\x80\ \x73\x79\x80\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x66\x6c\x74\x55\ \x5d\x67\x43\x4b\x57\x3e\x44\x50\x51\x57\x5f\x59\x5e\x66\x58\x60\ \x67\x52\x5b\x63\x46\x50\x59\x3b\x44\x50\x38\x3f\x4a\x4e\x52\x59\ \x6b\x6c\x71\x7d\x7f\x83\x85\x88\x8d\x88\x8b\x90\x88\x8c\x93\x89\ \x8c\x94\x88\x8b\x93\x8a\x8d\x95\x89\x8c\x94\x88\x8f\x95\x7f\x87\ \x8e\x6d\x78\x80\x49\x5a\x65\x24\x35\x41\x1f\x27\x32\x41\x3e\x47\ \x5b\x55\x57\x57\x50\x52\x5f\x57\x5b\x7b\x76\x7a\x88\x86\x8a\x86\ \x86\x8a\x82\x83\x87\x8b\x8a\x8e\x8c\x8c\x90\x89\x89\x8e\x86\x87\ \x8a\x8e\x8f\x92\x98\x99\x9d\x9c\x9b\xa0\x9d\x9c\xa2\x9e\x9c\xa2\ \x9e\x9d\xa3\x9d\x9d\xa2\x9d\x9d\xa3\x9c\x9b\xa1\x9f\x9e\xa4\xa1\ \xa1\xa7\x9e\x9f\xa5\xa0\x9f\xa5\x9a\x9b\x9f\x8c\x8d\x90\x77\x79\ \x7d\x68\x6b\x6f\x6d\x6e\x72\x84\x81\x85\x92\x8e\x91\x9f\x9a\x9e\ \xaa\xa7\xaa\xad\xab\xad\xb0\xac\xb0\xad\xac\xaf\xae\xad\xb0\xad\ \xac\xb0\xad\xac\xb0\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xaf\xa5\xa4\ \xa8\x9a\x99\x9c\x97\x94\x97\x9d\x9a\x9d\xa9\xa7\xaa\xa7\xa6\xaa\ \x9b\x9a\x9e\x9d\x9a\x9f\xa5\xa1\xa4\xae\xab\xae\xab\xa8\xaa\xa0\ \x9c\xa0\xa2\x9f\xa2\xad\xa9\xad\xb2\xae\xb2\xac\xa8\xab\x9e\x9d\ \xa0\x9f\x9d\xa0\xa9\xa7\xaa\xb4\xb2\xb4\xac\xaa\xac\x9f\x9c\x9e\ \x9e\x9c\x9f\xa9\xa6\xa8\xb6\xb2\xb4\xba\xb7\xba\xbc\xb8\xbd\xbb\ \xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xba\xb7\xbb\xb8\xb4\xb9\xbb\xb7\ \xbc\xbf\xbc\xc1\xc0\xbc\xc1\xbd\xbb\xbf\xbd\xba\xbf\xbc\xba\xbf\ \xbd\xb9\xbf\xbe\xbb\xc1\xc0\xbc\xc2\xc2\xbe\xc3\xc0\xbc\xc1\xc1\ \xbd\xc2\x00\x00\x00\x7b\x77\x7a\x86\x81\x84\x8f\x8b\x8f\x91\x8f\ \x94\x92\x91\x95\x92\x90\x95\x92\x91\x95\x90\x8f\x93\x90\x8f\x94\ \x8c\x8b\x90\x84\x84\x8a\x84\x84\x8a\x78\x7b\x80\x74\x75\x78\x6b\ \x6c\x71\x62\x62\x68\x59\x5b\x60\x53\x55\x5b\x4b\x4e\x57\x51\x54\ \x5c\x56\x59\x61\x63\x66\x6e\x6f\x71\x78\x71\x75\x7a\x71\x74\x7b\ \x72\x74\x7c\x6c\x72\x78\x6a\x72\x7a\x60\x69\x72\x58\x62\x6b\x52\ \x5c\x66\x50\x59\x63\x4e\x55\x60\x4d\x52\x5d\x54\x58\x61\x5f\x62\ \x6a\x68\x6b\x73\x65\x67\x70\x68\x6b\x73\x6a\x6e\x75\x6d\x72\x79\ \x72\x78\x7e\x71\x77\x7e\x71\x77\x7e\x75\x7b\x82\x74\x7a\x81\x75\ \x7b\x82\x74\x79\x80\x72\x78\x7f\x6d\x74\x7c\x62\x6b\x74\x58\x62\ \x6d\x4f\x59\x62\x47\x4d\x56\x4f\x56\x5f\x5a\x61\x68\x5c\x66\x6d\ \x57\x62\x6b\x35\x40\x4d\x23\x2b\x37\x3a\x41\x4b\x63\x65\x6d\x7f\ \x81\x88\x87\x89\x90\x87\x89\x90\x88\x8a\x92\x89\x8b\x94\x89\x8c\ \x95\x8b\x8e\x97\x8b\x8e\x96\x8b\x8f\x97\x89\x8e\x95\x7f\x85\x8d\ \x6e\x77\x80\x4d\x5b\x65\x28\x34\x40\x19\x1a\x25\x19\x13\x1b\x1f\ \x19\x1f\x29\x20\x27\x57\x4c\x52\x81\x7c\x7f\x89\x88\x8b\x89\x89\ \x8d\x86\x85\x8a\x8b\x8b\x8f\x8d\x8d\x92\x8a\x8b\x8f\x89\x8a\x8e\ \x8c\x8d\x91\x99\x9a\x9e\x9e\x9e\xa4\xa0\x9e\xa4\xa0\x9f\xa5\xa0\ \x9f\xa5\x9f\x9e\xa4\xa2\xa2\xa8\xa1\xa1\xa7\xa2\xa2\xa8\xa0\xa0\ \xa6\xa1\xa2\xa5\xa1\xa2\xa6\x9d\x9e\xa2\x92\x95\x99\x7b\x7f\x83\ \x72\x76\x7b\x74\x74\x79\x76\x72\x77\x81\x7c\x81\x94\x90\x94\xa6\ \xa4\xa7\xad\xab\xaf\xad\xab\xb0\xaf\xae\xb2\xaf\xae\xb2\xaf\xae\ \xb2\xb0\xaf\xb3\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xb0\xad\xac\xaf\ \xa3\xa2\xa6\x9a\x99\x9d\x9e\x9d\xa0\xa9\xa8\xac\xae\xac\xb0\xa4\ \xa3\xa7\x9e\x9a\x9e\xa2\x9e\xa3\xad\xaa\xad\xb2\xaf\xb3\xa4\xa2\ \xa6\x9e\x9d\xa1\xa3\xa1\xa5\xad\xac\xae\xaf\xae\xb0\xa5\xa4\xa7\ \x9f\x9d\xa1\xa4\xa0\xa5\xae\xaa\xae\xb3\xb0\xb2\xa9\xa8\xaa\xa0\ \x9f\xa3\xa2\x9f\xa2\xae\xa9\xae\xbc\xb8\xbd\xc0\xbc\xc1\xbd\xb9\ \xbe\xbb\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xb9\xb6\xbb\xbc\xb9\xbd\ \xc0\xbc\xc1\xbf\xbd\xc2\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbd\ \xbb\xc0\xc2\xbf\xc4\xc1\xbd\xc2\xc0\xbc\xc1\xc2\xbe\xc3\x00\x00\ \x00\x80\x7b\x7e\x89\x86\x89\x8e\x8b\x90\x92\x90\x95\x93\x92\x96\ \x94\x93\x97\x93\x93\x96\x90\x8e\x93\x8d\x8c\x92\x8c\x8c\x92\x89\ \x89\x8f\x81\x84\x89\x77\x7a\x7f\x74\x76\x7b\x66\x67\x6b\x59\x5a\ \x60\x4e\x51\x58\x4b\x4e\x56\x4b\x4e\x56\x53\x55\x5d\x5b\x5e\x66\ \x64\x67\x6f\x6e\x71\x79\x72\x74\x7c\x71\x74\x7c\x70\x73\x7b\x6e\ \x74\x7a\x6d\x74\x7b\x68\x70\x77\x63\x6c\x74\x5e\x68\x71\x59\x62\ \x6b\x53\x59\x63\x49\x4e\x59\x51\x54\x5e\x5b\x5e\x66\x5e\x61\x69\ \x5c\x60\x66\x5e\x61\x68\x65\x69\x71\x6a\x70\x77\x70\x76\x7d\x71\ \x77\x7e\x73\x79\x80\x74\x7a\x81\x76\x7c\x83\x75\x7b\x82\x75\x7b\ \x81\x74\x7a\x80\x72\x79\x80\x6e\x76\x7e\x69\x73\x7b\x61\x6a\x73\ \x56\x61\x69\x4a\x55\x5e\x4f\x56\x5e\x5a\x64\x6b\x60\x6b\x72\x58\ \x65\x6e\x42\x52\x5f\x4b\x59\x65\x68\x6e\x77\x7e\x81\x88\x86\x88\ \x90\x87\x8a\x92\x89\x8c\x94\x88\x8b\x94\x88\x8d\x96\x8a\x8e\x97\ \x8b\x8d\x97\x8d\x8f\x98\x8e\x91\x99\x8a\x8f\x95\x80\x88\x8e\x71\ \x7c\x81\x58\x64\x6b\x2b\x38\x46\x0b\x11\x1b\x01\x01\x04\x06\x04\ \x08\x19\x13\x18\x50\x45\x4a\x7c\x75\x7a\x89\x88\x8c\x8b\x8c\x90\ \x89\x89\x8f\x8c\x8c\x91\x8e\x90\x94\x8c\x8e\x93\x88\x89\x8e\x8e\ \x8e\x94\x9a\x99\x9f\x9f\x9d\xa4\xa1\x9f\xa5\xa1\x9f\xa5\xa0\x9e\ \xa4\xa0\x9f\xa5\xa0\xa0\xa6\xa2\xa2\xa8\xa3\xa4\xa9\xa4\xa4\xaa\ \xa2\xa4\xa8\xa4\xa4\xa8\xa2\xa4\xa8\x98\x9c\xa0\x8a\x90\x95\x80\ \x84\x89\x75\x74\x79\x64\x61\x66\x70\x6b\x6e\x88\x81\x84\xa0\x9a\ \x9f\xac\xa8\xad\xae\xac\xaf\xaf\xae\xb0\xae\xad\xb1\xb0\xaf\xb3\ \xb1\xb0\xb4\xb1\xb0\xb4\xb3\xb0\xb7\xb3\xb1\xb7\xb1\xb0\xb6\xa9\ \xa9\xae\x9f\x9f\xa3\x9b\x9b\x9f\xa6\xa4\xa9\xb0\xad\xb2\xaa\xa8\ \xad\xa0\x9e\xa2\x9f\x9b\xa0\xa7\xa3\xa7\xb1\xaf\xb1\xaa\xa9\xac\ \xa0\x9f\xa3\x9b\x9a\x9e\xa5\xa4\xa7\xb0\xaf\xb1\xad\xac\xaf\xa2\ \x9f\xa4\x9e\x9a\x9f\xa8\xa4\xa9\xb5\xb1\xb6\xb2\xb1\xb5\xab\xaa\ \xad\xa4\xa2\xa7\xa8\xa4\xa9\xb5\xaf\xb5\xbd\xb9\xbe\xbc\xb8\xbe\ \xbe\xba\xbf\xbd\xba\xbf\xbb\xba\xbe\xbb\xba\xbe\xbb\xb9\xbd\xbd\ \xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbe\xbd\xc1\xbf\xbb\ \xc0\xc1\xbd\xc2\xc1\xbe\xc3\xc3\xc0\xc5\x00\x00\x00\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x35\x56\x65\x69\x8f\xa2\x7c\x9f\xb9\x77\x96\ \xb7\x64\x7f\xa3\x36\x4c\x6b\x0b\x1c\x34\x14\x27\x3e\x41\x60\x7a\ \x6a\x96\xb2\x75\x9d\xbe\x67\x89\xaa\x35\x4b\x68\x12\x20\x39\x22\ \x33\x4c\x56\x70\x8c\x67\x84\xa3\x59\x76\x94\x39\x50\x6c\x1f\x33\ \x47\x12\x28\x38\x32\x4d\x61\x5a\x7e\x97\x7c\xa4\xbd\x85\xae\xc7\ \x8b\xb3\xcc\x8c\xb2\xcf\x87\xaf\xcf\x7f\xae\xcf\x77\xa8\xcc\x73\ \xa1\xc4\x69\x98\xb8\x5a\x84\xa1\x44\x61\x7a\x3b\x51\x65\x54\x67\ \x79\x80\x96\xad\x87\xa0\xbc\x70\x8a\xa4\x42\x55\x6e\x0d\x1e\x33\ \x1e\x35\x49\x62\x82\x98\x83\xa3\xc0\x7c\x98\xb9\x5b\x78\x96\x37\ \x55\x6d\x4e\x6b\x80\x70\x90\xa6\x71\x90\xab\x70\x8e\xae\x7d\x9f\ \xc3\x82\xaa\xcd\x80\xa6\xc9\x7c\xa3\xc0\x76\xa2\xba\x7e\xab\xc3\ \x83\xac\xc6\x86\xad\xca\x80\xa6\xbe\x77\x9e\xb4\x7c\x9e\xb6\x86\ \xa1\xc2\x88\xa4\xc8\x8c\xa9\xcd\x8c\xab\xce\x89\xad\xcb\x8f\xb0\ \xd0\x94\xb1\xd1\x8e\xad\xcf\x8c\xab\xce\x81\x9c\xc2\x70\x89\xab\ \x65\x7f\x9c\x6a\x86\x9e\x7d\x9a\xb1\x8c\xaa\xc6\x8b\xac\xcf\x8a\ \xaf\xd3\x88\xaf\xd3\x84\xb0\xd0\x7c\xa3\xc2\x63\x82\x9f\x2b\x45\ \x60\x34\x4f\x6a\x7e\x9a\xb7\x8d\xae\xd0\x89\xb2\xd4\x89\xaf\xce\ \x91\xad\xcf\x95\xab\xcf\x97\xac\xcf\x91\xaa\xcc\x90\xa9\xcb\x8d\ \xa4\xc7\x88\xa2\xc3\x83\xa4\xc1\x86\xa7\xc5\x87\xa5\xc8\x86\xa5\ \xc9\x88\xa5\xc7\x8d\xa7\xc4\x8f\xa7\xc2\x89\xa7\xc1\x83\xa4\xc3\ \x84\xa0\xc5\x8b\xa1\xc9\x8a\xa1\xc7\x8c\xa1\xcb\x81\x9f\xc7\x7b\ \x9e\xc3\x85\xa3\xc9\x8c\xa4\xcc\x90\xa5\xcf\x8e\xa4\xd1\x8b\xa7\ \xd2\x87\xa7\xcd\x89\xa8\xcb\x8c\xaa\xcc\x8c\xad\xcf\x8b\xab\xcf\ \x8c\xa8\xcc\x87\xa4\xc7\x84\xa5\xc8\x83\xa7\xc8\x80\xa8\xc6\x85\ \xab\xc7\x87\xab\xc8\x88\xa8\xca\x8a\xa4\xcc\x88\xa4\xcc\x80\xa1\ \xc8\x85\xa5\xcc\x8d\xa7\xcc\x8c\xa4\xc8\x89\xa3\xc1\x87\xa1\xbe\ \x87\x9f\xc3\x88\xa0\xc5\x88\x9e\xc7\x87\x9c\xc3\x85\x9c\xc0\x87\ \xa0\xc3\x8d\xa3\xbc\x8d\x9a\xa4\x65\x70\x70\x34\x44\x45\x1d\x28\ \x29\x21\x2f\x30\x1b\x24\x2a\x1b\x2c\x33\x26\x42\x4d\x11\x21\x2a\ \x14\x1a\x1d\x10\x16\x19\x13\x1b\x21\x21\x36\x42\x1c\x33\x44\x2d\ \x49\x61\x29\x45\x52\x1e\x2c\x37\x1c\x27\x28\x16\x23\x1f\x00\x00\ \x00\x22\x40\x4e\x49\x6a\x7b\x72\x91\xaa\x7c\x9b\xbc\x74\x91\xb3\ \x5b\x75\x94\x3f\x54\x73\x26\x3c\x5b\x46\x66\x86\x69\x90\xb1\x77\ \xa1\xc1\x6e\x94\xb4\x4c\x68\x85\x18\x2a\x42\x12\x24\x39\x3e\x58\ \x6e\x69\x86\xa1\x60\x7d\x99\x46\x60\x77\x16\x2d\x3e\x0a\x21\x31\ \x35\x50\x63\x69\x8b\xa4\x7f\xa3\xbe\x84\xac\xc5\x87\xb0\xc9\x85\ \xb0\xcc\x82\xaf\xcd\x7c\xab\xcb\x74\xa4\xc6\x6b\x9a\xbd\x5f\x8d\ \xab\x45\x6d\x87\x2d\x49\x64\x30\x49\x61\x3f\x55\x6c\x4d\x61\x7b\ \x6a\x81\x9c\x5e\x78\x90\x32\x45\x5e\x0a\x17\x30\x1f\x32\x48\x4e\ \x69\x7e\x6e\x8a\xa5\x6d\x85\xa3\x50\x67\x83\x26\x3d\x55\x2c\x43\ \x5a\x44\x5f\x75\x46\x62\x7b\x41\x5c\x79\x54\x73\x92\x75\x9b\xbc\ \x76\x9d\xbe\x68\x8c\xa9\x57\x7e\x93\x5c\x85\x98\x6d\x97\xab\x71\ \x9b\xaf\x66\x8d\xa0\x58\x79\x8c\x56\x71\x8a\x5d\x77\x97\x6d\x8a\ \xab\x7f\x9e\xbe\x85\xa6\xc8\x86\xaa\xca\x8c\xae\xd0\x8f\xaf\xd3\ \x8b\xad\xd1\x87\xa8\xcd\x78\x94\xb6\x54\x6c\x88\x37\x50\x6a\x3c\ \x57\x73\x50\x6b\x88\x66\x83\x9f\x7f\xa1\xbf\x7f\xa8\xc7\x81\xad\ \xcb\x83\xb0\xcd\x7d\xa5\xc3\x6a\x88\xa5\x3a\x50\x6e\x2c\x45\x61\ \x75\x92\xad\x89\xaa\xca\x84\xac\xcb\x87\xad\xcc\x90\xaf\xd0\x92\ \xac\xd0\x90\xab\xce\x8b\xab\xcb\x89\xa7\xc9\x88\xa4\xc6\x84\xa2\ \xc4\x80\xa3\xc0\x81\xa4\xc1\x82\xa3\xc5\x85\xa5\xc9\x88\xa7\xc9\ \x8b\xa8\xc4\x89\xaa\xc0\x84\xa8\xc0\x7f\xa5\xc2\x84\xa3\xc7\x8b\ \xa5\xcb\x8f\xa7\xcd\x8c\xa7\xcc\x81\xa3\xc7\x7e\xa4\xc8\x84\xa6\ \xcb\x8b\xa6\xcd\x8b\xa5\xce\x88\xa5\xcc\x83\xa7\xca\x83\xa6\xc8\ \x86\xa7\xc9\x87\xa9\xc9\x85\xab\xca\x83\xa7\xcb\x85\xa5\xcb\x82\ \xa3\xc7\x81\xa4\xc6\x81\xa5\xc7\x7d\xa5\xc5\x7d\xa9\xc5\x83\xaa\ \xc8\x87\xa6\xca\x8c\xa4\xce\x88\xa3\xcb\x81\xa1\xc8\x84\xa5\xcc\ \x89\xa5\xca\x88\xa2\xc5\x86\xa2\xbf\x84\xa1\xbd\x84\xa0\xc0\x86\ \xa1\xc3\x85\x9f\xc5\x83\x9d\xc3\x9d\xb0\xca\x6e\x7b\x7e\x6c\x77\ \x7a\x3a\x47\x4a\x24\x2e\x32\x1e\x26\x2a\x18\x24\x29\x15\x1f\x26\ \x20\x34\x39\x16\x2f\x38\x0f\x1f\x29\x1a\x29\x31\x11\x1c\x25\x14\ \x29\x36\x1d\x2f\x41\x1e\x2f\x43\x35\x4c\x64\x28\x44\x5a\x19\x25\ \x2c\x19\x29\x26\x17\x16\x17\x20\x20\x1e\x00\x00\x00\x20\x35\x44\ \x37\x51\x62\x53\x6d\x85\x74\x92\xb0\x7a\x9a\xbc\x73\x91\xb1\x67\ \x86\xa8\x5c\x7b\xa0\x61\x81\xa9\x71\x97\xbc\x7a\xa3\xc6\x75\x9e\ \xbc\x63\x83\xa1\x3b\x53\x6c\x13\x28\x3b\x2b\x42\x58\x5e\x7b\x96\ \x6b\x89\xa4\x4c\x65\x7c\x17\x2e\x3d\x0f\x25\x32\x30\x48\x5c\x58\ \x76\x8d\x7b\x9c\xb6\x80\xa6\xbf\x82\xad\xc8\x7f\xae\xcc\x79\xa8\ \xc8\x79\xa7\xc7\x6e\x9e\xc0\x5f\x8c\xaf\x45\x6c\x8c\x2d\x4d\x67\ \x1e\x37\x51\x33\x4e\x69\x4e\x67\x83\x48\x5a\x79\x41\x55\x70\x38\ \x4e\x63\x1f\x31\x45\x12\x20\x38\x34\x45\x5e\x4b\x61\x7b\x47\x5e\ \x79\x47\x5b\x78\x38\x4a\x67\x20\x30\x4d\x24\x35\x52\x2c\x42\x5d\ \x26\x3d\x58\x1a\x31\x4d\x26\x40\x5d\x43\x62\x83\x58\x78\x98\x4a\ \x66\x81\x30\x49\x5c\x39\x57\x67\x43\x68\x79\x43\x6b\x79\x3a\x5b\ \x69\x29\x43\x53\x35\x4b\x61\x45\x5b\x79\x41\x5a\x78\x4a\x65\x81\ \x6e\x8e\xaa\x83\xa9\xc7\x88\xae\xce\x8b\xaf\xd1\x8a\xac\xcf\x85\ \xa7\xc8\x69\x87\xa0\x35\x4c\x5f\x1b\x31\x44\x38\x50\x6c\x45\x5d\ \x7d\x3e\x56\x72\x53\x71\x8b\x74\x9b\xb5\x80\xac\xc7\x82\xad\xc8\ \x81\xa7\xc4\x74\x8f\xad\x47\x5a\x79\x23\x38\x54\x68\x80\x9c\x8b\ \xa9\xc8\x88\xae\xcc\x8a\xb1\xcd\x8d\xb2\xcf\x89\xaa\xcb\x85\xa7\ \xca\x7e\xa6\xc6\x80\xa5\xc8\x81\xa1\xc6\x7d\x9e\xc0\x7b\xa0\xbd\ \x7d\x9f\xbf\x83\xa3\xc6\x87\xa7\xcb\x8b\xa9\xcb\x8b\xac\xc7\x86\ \xab\xc3\x80\xa9\xc0\x7d\xa5\xc1\x84\xa7\xc8\x8e\xab\xce\x90\xac\ \xcf\x8c\xaa\xce\x85\xa7\xcb\x83\xa8\xcc\x85\xa8\xcc\x88\xa8\xce\ \x86\xa6\xcd\x81\xa5\xca\x80\xa7\xc6\x80\xa7\xc2\x88\xaa\xc7\x86\ \xaa\xc9\x80\xa9\xc8\x80\xa8\xcc\x84\xa5\xcd\x82\xa4\xcb\x83\xa4\ \xca\x83\xa3\xc9\x81\xa4\xc7\x7e\xa5\xc6\x80\xa6\xc8\x85\xa2\xc8\ \x89\xa2\xc9\x87\xa3\xc9\x81\xa1\xc7\x80\xa1\xc8\x82\xa2\xc7\x84\ \xa2\xc3\x82\xa0\xbe\x81\xa1\xbc\x81\xa1\xbd\x80\x9e\xbe\x81\x9f\ \xc3\x85\xa4\xc8\x79\x89\x90\x20\x23\x2c\x24\x34\x3a\x28\x31\x33\ \x1d\x26\x29\x18\x21\x21\x12\x17\x19\x15\x1c\x23\x0e\x1d\x21\x16\ \x27\x28\x21\x36\x43\x2b\x45\x5a\x1f\x3a\x4d\x1c\x33\x48\x29\x3d\ \x4e\x3b\x57\x65\x1f\x36\x3c\x17\x21\x20\x22\x29\x26\x1c\x26\x25\ \x17\x16\x14\x20\x20\x1a\x00\x00\x00\x1b\x28\x37\x2e\x3f\x51\x47\ \x5d\x74\x6e\x88\xa6\x7f\x9e\xbf\x7e\xa0\xc2\x7c\x9e\xc3\x79\x9d\ \xc4\x78\x9e\xc5\x79\xa1\xc6\x7e\xa4\xc7\x7f\xa2\xc3\x77\x96\xb7\ \x61\x7d\x9a\x46\x5e\x79\x44\x5b\x78\x62\x7b\x9f\x74\x8d\xaf\x54\ \x68\x7f\x1a\x2b\x39\x16\x2a\x36\x38\x4e\x5f\x41\x5a\x71\x5f\x7f\ \x96\x7a\xa0\xb8\x80\xa8\xc6\x7e\xaa\xcb\x75\xa3\xc4\x73\x9f\xc3\ \x6c\x98\xbf\x5e\x8a\xaf\x47\x6c\x8e\x28\x45\x62\x1f\x33\x4f\x3c\ \x55\x71\x63\x7f\x9e\x68\x7f\xa1\x4c\x60\x7e\x23\x36\x50\x15\x28\ \x3f\x2e\x42\x58\x52\x6b\x85\x61\x7c\x9a\x55\x70\x8e\x48\x61\x80\ \x3b\x52\x73\x32\x48\x68\x3e\x55\x76\x4c\x65\x86\x4b\x64\x85\x43\ \x58\x7a\x40\x54\x78\x40\x55\x7c\x34\x4a\x6d\x24\x36\x52\x19\x27\ \x3c\x30\x41\x55\x4a\x65\x79\x45\x63\x76\x22\x3b\x4e\x16\x29\x3c\ \x33\x47\x5a\x59\x6f\x88\x4b\x5e\x7a\x2f\x41\x5b\x3b\x55\x6d\x5e\ \x7f\x9a\x7a\x9f\xba\x85\xaa\xc5\x83\xa8\xc3\x7a\x9d\xb6\x52\x6e\ \x81\x1c\x32\x41\x0e\x21\x30\x2b\x40\x54\x3a\x4e\x67\x2a\x3a\x53\ \x3c\x55\x6d\x6c\x8d\xaa\x82\xa9\xc7\x87\xad\xcc\x85\xa8\xc8\x7d\ \x96\xb7\x56\x65\x85\x22\x2f\x4a\x52\x62\x80\x88\xa1\xc1\x8b\xad\ \xcb\x88\xaf\xca\x87\xaf\xca\x83\xa6\xc2\x7a\x9b\xbb\x76\x9a\xba\ \x76\x9b\xbb\x77\x9b\xbc\x6e\x8f\xb0\x6b\x8c\xaa\x76\x96\xb4\x84\ \xa1\xc2\x88\xa5\xc7\x89\xa9\xc9\x86\xaa\xc6\x81\xa7\xc2\x7e\xa4\ \xc0\x7e\xa2\xc1\x83\xa5\xc6\x8a\xa8\xca\x8b\xaa\xcc\x88\xaa\xc9\ \x84\xa7\xc8\x85\xa8\xc9\x84\xa8\xc9\x80\xa5\xc8\x82\xa3\xca\x83\ \xa3\xc8\x84\xa6\xc5\x85\xa8\xc2\x8c\xab\xca\x88\xa9\xcc\x84\xa9\ \xcb\x82\xa6\xcc\x85\xa3\xcd\x83\xa1\xcb\x86\xa3\xca\x89\xa4\xcb\ \x87\xa3\xc8\x83\x9f\xc6\x7e\x9c\xc3\x7d\x9c\xc0\x80\x9c\xbe\x83\ \xa0\xc2\x83\xa2\xc7\x7f\xa0\xc7\x81\xa1\xc6\x81\xa0\xc3\x81\xa1\ \xc3\x7f\xa0\xbe\x7d\x9e\xbe\x7f\x9e\xc1\x7d\x9e\xc1\x93\xa1\xb6\ \x31\x30\x35\x1a\x22\x21\x1e\x2b\x2d\x19\x24\x25\x0f\x16\x15\x0e\ \x19\x12\x15\x13\x14\x04\x07\x03\x0e\x12\x18\x22\x32\x41\x23\x3d\ \x51\x29\x3e\x5b\x38\x50\x68\x4d\x6b\x84\x16\x20\x29\x1b\x27\x27\ \x14\x1e\x1a\x17\x1b\x13\x23\x23\x1f\x20\x26\x24\x1b\x1a\x15\x1c\ \x21\x1d\x00\x00\x00\x13\x1e\x30\x23\x31\x46\x4e\x63\x7c\x79\x93\ \xb1\x87\xa7\xc7\x86\xa8\xcc\x86\xa6\xcf\x84\xa8\xd1\x80\xa8\xce\ \x80\xa7\xcd\x82\xa8\xcb\x85\xa9\xcb\x86\xa6\xc9\x7a\x9a\xbb\x6d\ \x8a\xac\x6c\x87\xac\x7c\x95\xbd\x7f\x95\xba\x5c\x6c\x84\x1f\x2e\ \x3b\x1a\x2a\x36\x3c\x52\x64\x47\x5e\x78\x43\x5e\x78\x6e\x8d\xa9\ \x7c\xa4\xc3\x7c\xa8\xca\x74\xa1\xc6\x73\x9b\xc5\x72\x9b\xc6\x6b\ \x95\xbc\x60\x89\xaa\x55\x77\x97\x46\x61\x7f\x4a\x66\x85\x67\x88\ \xa9\x76\x95\xb7\x66\x81\x9f\x42\x5b\x7a\x31\x4a\x66\x4f\x6a\x86\ \x6c\x8d\xaa\x73\x96\xb5\x6b\x90\xb1\x61\x86\xa8\x5a\x7e\xa2\x54\ \x76\x99\x5c\x7f\xa0\x6a\x89\xab\x70\x8c\xae\x6c\x85\xaa\x6a\x81\ \xaa\x66\x79\xa6\x58\x6c\x94\x38\x4b\x6c\x1f\x30\x4a\x2c\x3f\x59\ \x4f\x69\x84\x5f\x7b\x98\x4e\x69\x85\x2a\x41\x5c\x1e\x36\x4c\x36\ \x4e\x65\x37\x4a\x62\x1c\x2c\x44\x29\x3e\x57\x3a\x55\x70\x47\x66\ \x7f\x5e\x7f\x95\x6a\x8a\xa0\x58\x76\x8b\x31\x4a\x5d\x15\x26\x38\ \x09\x17\x26\x0f\x1f\x2c\x22\x31\x42\x2a\x3b\x4e\x4f\x66\x82\x75\ \x92\xb4\x83\xa5\xca\x89\xac\xd0\x8b\xab\xce\x82\x9b\xbf\x64\x76\ \x99\x2a\x37\x56\x3d\x4d\x6a\x7a\x92\xaf\x85\xa8\xc5\x83\xab\xc5\ \x7e\xa7\xc0\x77\x98\xb0\x66\x81\x9e\x5c\x7a\x96\x68\x8b\xa4\x68\ \x8d\xa6\x58\x76\x92\x43\x5e\x77\x5a\x72\x8b\x72\x8e\xa9\x7c\x9b\ \xb6\x7c\xa0\xb8\x77\x9d\xb6\x76\x9a\xb3\x76\x9b\xb6\x7b\x9b\xba\ \x7e\x9c\xbb\x7f\x9d\xbb\x7d\x9e\xbb\x7e\xa3\xbf\x7e\xa2\xc0\x81\ \xa6\xc3\x7d\xa1\xbf\x76\x9b\xba\x79\x9c\xbf\x81\xa0\xc3\x87\xa4\ \xc5\x89\xa8\xc7\x8b\xaa\xcd\x88\xa9\xce\x84\xa6\xca\x85\xa5\xca\ \x86\xa2\xc9\x88\xa2\xcb\x86\xa2\xc9\x85\xa0\xc8\x86\x9f\xc6\x81\ \x98\xbe\x6e\x87\xac\x67\x84\xa7\x6e\x8c\xad\x79\x95\xb9\x83\x9d\ \xc4\x83\x9f\xc6\x80\x9f\xc3\x80\x9e\xc4\x7e\xa0\xc4\x7d\xa0\xbf\ \x81\xa0\xc2\x7c\x9d\xc2\x8b\xa9\xc7\xbd\xc7\xd1\xa9\xab\xb3\x53\ \x50\x51\x0c\x0f\x0c\x08\x0c\x0e\x0c\x0e\x0f\x16\x22\x20\x20\x27\ \x28\x15\x20\x27\x24\x3a\x4c\x26\x3e\x59\x33\x4a\x65\x55\x79\x93\ \x67\x95\xac\x39\x5e\x6d\x1e\x26\x29\x19\x24\x22\x12\x17\x11\x0d\ \x0f\x0c\x1a\x1e\x1b\x22\x30\x2a\x1b\x1c\x16\x16\x18\x11\x00\x00\ \x00\x24\x35\x49\x33\x48\x60\x5f\x78\x96\x87\xa3\xc5\x8d\xad\xd0\ \x8a\xae\xd2\x8a\xaf\xd3\x84\xaa\xd0\x81\xaa\xcf\x7d\xa8\xc9\x82\ \xaa\xcb\x84\xaa\xcb\x87\xac\xcf\x80\xa8\xcb\x7b\xa3\xc5\x81\xa4\ \xc7\x8a\xaa\xcd\x82\x9e\xbf\x64\x7d\x95\x29\x3b\x4d\x11\x21\x32\ \x32\x47\x5b\x47\x5c\x76\x47\x5b\x79\x60\x7a\x9a\x7d\xa2\xc2\x7d\ \xa8\xca\x76\xa4\xc7\x75\x9f\xc7\x76\x9d\xca\x77\x9e\xc9\x77\x9e\ \xc4\x6e\x97\xb8\x67\x8d\xae\x68\x8d\xaf\x6f\x98\xba\x79\xa1\xc1\ \x75\x98\xb9\x62\x83\xa6\x5c\x7d\xa1\x6b\x8a\xad\x79\x9b\xbc\x7a\ \x9f\xc1\x76\x9f\xc1\x71\x9a\xbe\x6f\x96\xbc\x6a\x93\xb6\x6e\x96\ \xb9\x78\x9b\xbd\x79\x9b\xbe\x78\x99\xbd\x79\x97\xbf\x79\x92\xbd\ \x73\x8b\xb4\x64\x7e\xa3\x54\x6c\x8f\x4c\x66\x89\x56\x76\x97\x66\ \x8a\xaa\x66\x88\xac\x57\x75\x95\x3b\x57\x72\x27\x3f\x59\x23\x38\ \x52\x24\x3a\x54\x41\x5a\x76\x54\x6e\x8d\x50\x6a\x87\x3c\x58\x71\ \x36\x50\x66\x2c\x43\x56\x18\x2a\x3c\x22\x31\x46\x2a\x3a\x4d\x0d\ \x1b\x29\x22\x33\x40\x45\x5b\x6d\x64\x7f\x9a\x7a\x99\xbc\x81\xa4\ \xca\x85\xa8\xce\x87\xa6\xcc\x85\xa0\xc8\x71\x8b\xb1\x4d\x65\x84\ \x41\x5b\x76\x6b\x8a\xa6\x79\xa1\xbd\x75\x9f\xb8\x68\x90\xa6\x58\ \x74\x8c\x40\x54\x6d\x2c\x42\x57\x34\x50\x62\x49\x68\x7b\x46\x5d\ \x71\x22\x31\x45\x2a\x3a\x4f\x40\x59\x6f\x5d\x7f\x93\x5d\x83\x94\ \x4c\x6f\x7f\x4e\x6d\x80\x5e\x7f\x95\x6b\x8b\xa6\x72\x8f\xac\x62\ \x7e\x99\x59\x77\x91\x63\x86\xa0\x70\x95\xaf\x72\x97\xb0\x64\x87\ \x9f\x54\x77\x90\x5e\x80\x9a\x72\x91\xaf\x81\x9d\xbe\x83\xa2\xc4\ \x84\xa5\xca\x83\xa5\xc9\x7f\xa2\xc4\x80\xa2\xc4\x83\xa2\xc8\x81\ \xa2\xc9\x80\xa1\xc7\x7d\x9e\xc1\x7b\x98\xbb\x6f\x86\xa7\x4e\x63\ \x80\x3d\x58\x72\x4e\x6c\x89\x68\x86\xa5\x79\x92\xb6\x80\x9a\xbf\ \x80\x9d\xc0\x7d\x9c\xc0\x7c\x9e\xc2\x7f\x9f\xc1\x7f\x9e\xbf\x73\ \x94\xb6\xa1\xb0\xbf\x99\xa4\xa7\x8e\x99\x9b\x71\x7f\x7d\x12\x17\ \x16\x15\x22\x1c\x10\x21\x1f\x13\x1b\x24\x14\x23\x32\x12\x29\x3f\ \x25\x3b\x52\x41\x63\x7f\x4b\x6a\x85\x50\x7c\x91\x25\x40\x4d\x17\ \x21\x23\x1a\x1b\x1a\x1a\x1d\x1f\x1b\x1d\x1d\x0e\x0c\x0b\x1d\x1d\ \x18\x24\x28\x23\x1c\x1e\x19\x1a\x13\x0d\x00\x00\x00\x5a\x79\x94\ \x5e\x7c\x9b\x73\x94\xb7\x88\xa8\xcf\x8b\xaf\xd3\x8a\xb1\xd4\x87\ \xac\xd0\x82\xa5\xc9\x78\x9f\xc1\x76\xa2\xc0\x7c\xa8\xc6\x83\xad\ \xcc\x83\xad\xce\x7e\xab\xce\x7f\xad\xce\x85\xae\xce\x8a\xb0\xd0\ \x7e\xa4\xc3\x63\x86\xa2\x40\x5a\x73\x13\x26\x3e\x1b\x2d\x46\x2f\ \x44\x5d\x43\x57\x75\x5c\x78\x96\x77\x9c\xbc\x7c\xa5\xc7\x78\xa3\ \xc6\x76\xa1\xc6\x76\xa1\xc9\x7b\xa2\xcd\x7c\xa1\xcc\x79\xa1\xc7\ \x76\x9d\xc1\x79\xa0\xc3\x7c\xa5\xc6\x7b\xa7\xc7\x7a\xa1\xc3\x76\ \x9b\xbf\x70\x94\xba\x77\x97\xbb\x7f\xa0\xc3\x7e\xa4\xc6\x7a\xa3\ \xc5\x7b\xa2\xc6\x79\xa0\xc5\x75\x9e\xc1\x76\x9d\xbf\x7d\xa2\xc3\ \x81\xa3\xc8\x81\xa3\xc9\x7c\x9d\xc4\x7a\x9a\xc1\x78\x97\xbe\x72\ \x91\xb9\x6d\x8b\xb2\x6a\x88\xaf\x6a\x8d\xb3\x6d\x93\xb9\x71\x94\ \xb8\x6e\x91\xb4\x64\x84\xa3\x53\x6e\x8c\x48\x61\x81\x52\x70\x91\ \x65\x84\xa8\x75\x93\xb6\x73\x8f\xb1\x61\x7e\x9d\x47\x5f\x7b\x20\ \x32\x48\x10\x20\x33\x2f\x41\x55\x50\x66\x79\x37\x4a\x5b\x1b\x2e\ \x3d\x4a\x63\x75\x6b\x89\xa4\x79\x9c\xbe\x81\xa2\xca\x81\xa1\xc9\ \x80\xa0\xca\x7d\x9e\xc7\x79\x9b\xc1\x6a\x8c\xae\x60\x7f\x9f\x6e\ \x92\xae\x74\x9e\xbb\x6f\x9a\xb4\x5e\x80\x97\x3c\x51\x67\x1f\x2d\ \x42\x10\x20\x35\x1f\x37\x4a\x2a\x44\x59\x29\x3c\x51\x17\x22\x36\ \x1c\x28\x3d\x34\x4b\x60\x33\x50\x64\x2e\x4c\x5b\x1d\x36\x43\x1c\ \x31\x40\x31\x48\x5d\x4a\x65\x7d\x59\x71\x8a\x42\x57\x6f\x29\x41\ \x57\x39\x55\x6c\x4a\x68\x81\x56\x74\x89\x46\x61\x72\x2a\x43\x55\ \x42\x5d\x71\x59\x76\x8d\x68\x82\xa0\x78\x92\xb4\x7e\x9c\xbf\x7f\ \xa0\xc2\x83\xa1\xc4\x81\x9f\xc3\x80\xa0\xc7\x7e\xa2\xc7\x79\x9f\ \xc0\x70\x95\xb3\x6c\x8b\xa7\x57\x6c\x84\x2c\x3d\x51\x23\x39\x4e\ \x3e\x58\x74\x41\x5b\x7a\x5a\x71\x93\x73\x89\xac\x74\x8d\xae\x73\ \x90\xb0\x76\x95\xb5\x7d\x98\xb8\x7d\x93\xb4\x7c\x90\xa7\x90\x99\ \x9d\x7e\x86\x89\x56\x61\x63\x17\x20\x21\x03\x07\x06\x04\x0c\x0c\ \x12\x1d\x29\x20\x35\x44\x29\x3f\x54\x38\x56\x6d\x42\x64\x7b\x29\ \x45\x60\x30\x49\x5f\x1a\x29\x2c\x1e\x28\x29\x1d\x21\x1d\x16\x19\ \x1a\x1d\x21\x21\x1e\x1c\x1b\x15\x0f\x0d\x1a\x17\x17\x26\x27\x23\ \x1e\x19\x1c\x11\x0e\x0d\x00\x00\x00\x78\xa1\xc0\x79\xa2\xc2\x81\ \xa8\xcb\x87\xae\xd4\x86\xb0\xd3\x85\xaf\xd2\x7f\xa2\xc6\x6d\x89\ \xad\x58\x77\x99\x5a\x7f\x9f\x73\x9c\xbb\x7f\xab\xc8\x82\xaf\xcb\ \x81\xaf\xcf\x80\xae\xce\x84\xb0\xcf\x86\xb0\xd0\x81\xad\xcb\x74\ \x9d\xb9\x60\x81\x9d\x42\x5c\x7a\x2e\x44\x65\x37\x4d\x6e\x50\x6a\ \x8b\x66\x89\xa9\x77\x9f\xc2\x75\xa2\xc5\x76\xa1\xc5\x73\xa1\xc3\ \x72\xa3\xc5\x77\xa5\xca\x7b\xa5\xca\x7d\xa5\xcb\x7f\xa4\xc6\x83\ \xa6\xc9\x84\xa8\xcc\x82\xa9\xcc\x81\xa7\xcb\x7e\xa2\xc9\x7a\x9d\ \xc4\x7b\x9c\xc1\x80\xa3\xc6\x82\xa7\xcb\x7f\xa2\xc7\x7f\xa2\xc6\ \x7d\xa3\xc6\x7b\xa3\xc4\x7a\xa4\xc3\x7c\xa5\xc3\x81\xa5\xc7\x83\ \xa5\xc9\x7e\xa1\xc6\x79\x9f\xc2\x78\x9d\xc1\x76\x99\xbf\x77\x96\ \xbc\x77\x93\xbc\x73\x96\xbc\x74\x9b\xbf\x79\x9e\xc1\x79\x9f\xc0\ \x74\x9b\xb9\x6e\x90\xae\x6e\x8c\xb1\x74\x93\xbb\x7b\x9d\xc4\x80\ \xa1\xc5\x80\xa0\xc4\x79\x9a\xbc\x6d\x8a\xa9\x54\x68\x82\x25\x37\ \x4c\x1f\x37\x4b\x4d\x69\x7e\x5d\x75\x8d\x2b\x3d\x53\x2c\x42\x55\ \x62\x80\x97\x75\x98\xb7\x80\xa1\xc9\x7f\xa0\xca\x7c\x9e\xc8\x78\ \x9e\xc6\x77\x9f\xc5\x76\x9b\xc0\x76\x97\xbc\x76\x98\xbc\x77\x9d\ \xbf\x72\x99\xb7\x6d\x8b\xa7\x5b\x70\x8b\x4a\x5b\x74\x3c\x51\x6b\ \x3e\x58\x74\x46\x62\x81\x3b\x50\x6f\x22\x30\x4b\x24\x33\x48\x4a\ \x5f\x74\x4f\x67\x7f\x32\x47\x5d\x11\x24\x34\x0d\x1c\x2e\x28\x37\ \x51\x37\x4b\x67\x34\x46\x61\x25\x33\x4b\x1b\x29\x41\x38\x4a\x65\ \x44\x58\x77\x37\x4c\x64\x24\x37\x47\x15\x27\x35\x3c\x53\x65\x57\ \x73\x8d\x58\x73\x93\x58\x72\x96\x6b\x88\xab\x78\x98\xba\x81\x9f\ \xc2\x82\xa1\xc5\x7c\x9e\xc4\x7b\xa0\xc2\x72\x97\xb5\x5d\x7d\x96\ \x40\x5a\x70\x2f\x41\x52\x10\x1f\x2c\x2b\x3e\x50\x53\x6c\x86\x56\ \x70\x8e\x47\x5c\x7c\x4a\x5b\x7c\x5e\x70\x8d\x55\x6b\x86\x56\x6f\ \x8a\x6a\x7d\x9b\x7b\x88\xa4\x8d\x95\x99\x69\x72\x74\x44\x4b\x4c\ \x30\x33\x33\x1c\x1e\x1b\x09\x0d\x0c\x05\x0d\x0f\x0f\x1c\x27\x21\ \x35\x43\x26\x40\x53\x22\x3e\x4e\x1f\x34\x44\x18\x26\x26\x16\x1e\ \x1c\x15\x19\x15\x17\x14\x15\x12\x12\x12\x1b\x1b\x18\x19\x19\x15\ \x19\x16\x0e\x19\x17\x14\x15\x14\x12\x1f\x26\x24\x25\x29\x2d\x18\ \x20\x1d\x00\x00\x00\x7f\xb1\xce\x82\xb1\xd1\x88\xb2\xd4\x88\xb1\ \xd5\x83\xb0\xd3\x80\xab\xcf\x77\x98\xbe\x5d\x74\x9b\x3a\x54\x77\ \x4c\x6b\x8c\x6d\x91\xb0\x82\xa8\xc4\x8a\xb0\xcd\x89\xb1\xd2\x87\ \xb0\xd2\x87\xb1\xd0\x85\xb3\xd2\x85\xb3\xd0\x80\xab\xc8\x78\xa0\ \xbe\x6b\x8d\xae\x61\x7d\xa4\x5f\x7b\xa2\x69\x8a\xaf\x78\xa0\xc3\ \x79\xa3\xcb\x74\xa2\xc8\x71\x9f\xc3\x6e\xa0\xc0\x6e\xa3\xc1\x72\ \xa4\xc4\x7a\xa7\xca\x7f\xa7\xcc\x82\xa7\xc8\x84\xa6\xc8\x82\xa7\ \xca\x80\xa6\xc9\x80\xa6\xca\x81\xa5\xcc\x7e\xa0\xc7\x7d\xa0\xc3\ \x7f\xa6\xc7\x81\xa8\xcb\x80\xa4\xc5\x81\xa5\xc4\x82\xa8\xc7\x7f\ \xaa\xc7\x7c\xaa\xc3\x7f\xaa\xc3\x82\xa7\xc5\x83\xa6\xc5\x82\xa5\ \xc3\x80\xa4\xc3\x7d\xa0\xc1\x7f\x9d\xc3\x7f\x9a\xc2\x7f\x98\xc1\ \x7a\x99\xc0\x78\xa0\xc1\x7b\xa4\xc3\x7b\xa5\xc3\x79\xa1\xc1\x7a\ \xa0\xc1\x7c\x9f\xc4\x7f\xa1\xc8\x86\xa6\xcd\x88\xa7\xcb\x85\xa4\ \xc9\x81\xa3\xc7\x7e\x9d\xbf\x74\x8f\xaf\x5b\x73\x90\x3c\x5a\x75\ \x51\x70\x8e\x6e\x86\xa7\x4f\x5e\x7c\x1c\x2d\x44\x46\x60\x75\x71\ \x94\xaf\x7d\xa1\xc4\x7f\xa2\xc9\x7a\x9f\xc6\x7b\xa2\xc6\x7d\xa2\ \xc7\x7d\xa0\xc5\x7f\x9b\xc3\x7e\x9c\xc6\x7d\xa0\xc6\x7f\xa0\xc2\ \x7c\x9a\xb8\x75\x91\xad\x6e\x89\xa3\x66\x82\xa0\x66\x85\xa7\x69\ \x86\xab\x67\x7e\xa5\x5b\x6f\x92\x52\x65\x80\x5e\x76\x8f\x66\x80\ \x9d\x5a\x73\x91\x41\x58\x71\x36\x49\x63\x48\x5a\x7b\x57\x6c\x8e\ \x4c\x5f\x7f\x33\x42\x5f\x31\x3e\x5b\x54\x63\x84\x66\x77\x9b\x58\ \x68\x87\x3b\x49\x5e\x20\x2f\x42\x33\x48\x5f\x5d\x7b\x99\x62\x81\ \xa5\x4f\x6c\x91\x42\x60\x81\x61\x82\xa0\x78\x98\xb8\x7d\x9c\xbf\ \x7b\x9c\xc1\x7a\x9c\xbf\x75\x94\xb2\x62\x78\x94\x36\x46\x5f\x18\ \x26\x3b\x11\x1e\x30\x38\x4d\x60\x65\x80\x9a\x71\x8d\xab\x64\x7d\ \x9f\x4a\x5b\x7c\x39\x46\x62\x45\x56\x6f\x3a\x4f\x69\x58\x65\x7d\ \x78\x81\x88\x4a\x50\x53\x3a\x43\x44\x2f\x38\x39\x20\x26\x26\x1c\ \x22\x1e\x17\x22\x1f\x0e\x0e\x12\x26\x36\x3e\x18\x27\x33\x13\x1f\ \x23\x0e\x15\x17\x13\x18\x18\x13\x15\x16\x15\x17\x15\x1c\x1e\x1a\ \x17\x1b\x17\x17\x1a\x17\x1f\x1e\x19\x1b\x19\x15\x1c\x20\x1d\x18\ \x17\x19\x0e\x10\x09\x20\x24\x1f\x22\x2c\x2f\x21\x2c\x2b\x00\x00\ \x00\x78\xac\xcc\x80\xad\xd2\x89\xae\xd5\x87\xaf\xd2\x82\xac\xd0\ \x7e\xa5\xcb\x77\x98\xc1\x64\x7c\xa8\x4d\x66\x8d\x5f\x7d\xa1\x7a\ \x99\xba\x8c\xab\xc9\x93\xb2\xd3\x90\xb2\xd6\x8a\xb0\xd4\x88\xb1\ \xd1\x85\xb2\xd0\x88\xb5\xd3\x86\xb4\xd2\x81\xae\xcb\x82\xaa\xc9\ \x7d\xa1\xc4\x7b\x9f\xc3\x7e\xa5\xc7\x82\xa8\xcd\x7e\xa6\xcf\x77\ \xa0\xcb\x71\x9d\xc2\x70\x9d\xbe\x6e\x9f\xbd\x72\xa2\xc4\x7a\xa6\ \xcc\x80\xa8\xcf\x82\xa6\xcb\x7f\xa4\xc8\x7b\xa4\xc6\x7b\xa6\xc5\ \x7f\xa8\xc7\x80\xa4\xc9\x7e\xa0\xc6\x7c\xa3\xc3\x7e\xaa\xc9\x82\ \xab\xcb\x85\xaa\xca\x86\xab\xc8\x8b\xb0\xca\x8a\xaf\xcb\x8a\xaf\ \xcb\x87\xad\xc8\x84\xaa\xc8\x85\xaa\xc8\x89\xaa\xc7\x89\xa8\xc7\ \x89\xa6\xc8\x88\xa1\xc8\x85\x9e\xc7\x82\x9d\xc6\x7e\x9e\xc5\x7e\ \xa5\xc6\x80\xaa\xc6\x7d\xa7\xc4\x7e\xa5\xc6\x80\xa7\xca\x81\xa7\ \xcb\x84\xa6\xcd\x88\xa6\xca\x8c\xa7\xc9\x8a\xa7\xc8\x88\xa7\xcb\ \x86\xa4\xc8\x83\xa1\xc4\x78\x98\xba\x6c\x8f\xb0\x6e\x8e\xb1\x7d\ \x93\xba\x67\x74\x95\x27\x33\x4b\x30\x46\x58\x71\x8e\xa6\x83\xa1\ \xc2\x81\xa4\xc9\x7d\xa4\xc9\x7f\xa5\xc9\x83\xa4\xc9\x82\xa3\xc5\ \x83\xa1\xc6\x80\xa0\xc9\x82\xa4\xc8\x85\xa5\xc5\x86\xa3\xc1\x81\ \x9e\xbc\x7f\x9d\xba\x7b\x98\xb8\x76\x97\xb8\x74\x95\xb8\x7b\x95\ \xbc\x79\x91\xb6\x74\x8e\xad\x73\x8f\xae\x77\x95\xb6\x70\x8f\xb2\ \x6b\x88\xaa\x67\x80\xa4\x6e\x85\xaa\x74\x8d\xb2\x6b\x84\xa8\x5d\ \x73\x94\x5c\x6f\x90\x6a\x7c\xa1\x76\x8a\xb1\x74\x88\xab\x66\x76\ \x94\x4e\x5c\x79\x3d\x4f\x6f\x5b\x74\x98\x6c\x8b\xaf\x60\x7f\xa1\ \x3f\x5b\x7a\x38\x53\x6e\x68\x86\xa1\x79\x99\xb7\x7b\x9a\xbb\x7c\ \x9a\xbd\x79\x94\xb9\x72\x85\xa9\x5c\x6c\x8f\x43\x52\x73\x34\x45\ \x63\x4d\x63\x80\x6b\x88\xa4\x79\x99\xb9\x78\x95\xb6\x65\x7b\x9a\ \x40\x4f\x6d\x34\x45\x60\x5f\x71\x85\x69\x74\x76\x3d\x48\x48\x30\ \x38\x3c\x29\x33\x37\x24\x2c\x30\x1a\x1f\x1d\x15\x1c\x1d\x17\x1a\ \x1f\x27\x32\x32\x27\x34\x34\x17\x1d\x1f\x19\x1c\x1a\x16\x17\x18\ \x19\x1e\x1d\x1f\x24\x24\x1e\x20\x1c\x1d\x1a\x19\x1c\x22\x1c\x1c\ \x1d\x1b\x22\x22\x20\x22\x22\x24\x21\x20\x1f\x1d\x1c\x1d\x12\x10\ \x0a\x1d\x21\x1d\x29\x34\x33\x1e\x21\x21\x00\x00\x00\x69\x99\xc3\ \x70\x98\xc6\x79\x9c\xc9\x79\xa0\xca\x7a\xa0\xca\x79\x9b\xc8\x75\ \x94\xc4\x6a\x89\xb7\x67\x87\xb2\x74\x96\xbd\x82\xa3\xca\x8e\xac\ \xd1\x90\xae\xd4\x8a\xae\xd4\x84\xad\xd2\x81\xad\xd0\x84\xaf\xd0\ \x83\xb0\xd2\x83\xb2\xd3\x82\xb1\xd1\x85\xb1\xd1\x85\xad\xcf\x83\ \xac\xcc\x86\xad\xce\x84\xa9\xce\x81\xa6\xcc\x7c\xa0\xc9\x7a\x9e\ \xc6\x76\x9d\xc2\x74\x9f\xc2\x75\xa2\xc5\x78\xa4\xc8\x7c\xa6\xcb\ \x7f\xa5\xcb\x78\x9f\xc4\x76\xa2\xc3\x7a\xa7\xc6\x7f\xa7\xc8\x81\ \xa4\xc9\x80\xa1\xc8\x7e\xa7\xc7\x7f\xad\xcc\x84\xaf\xcf\x89\xaf\ \xd1\x8c\xb2\xcf\x8f\xb2\xce\x90\xb2\xd1\x91\xaf\xd0\x8d\xaf\xcf\ \x88\xb0\xcf\x87\xaf\xce\x8d\xb0\xcf\x91\xaf\xd1\x8f\xab\xcf\x8b\ \xa7\xce\x86\xa4\xcd\x85\xa5\xce\x84\xa7\xcd\x82\xa8\xc9\x85\xab\ \xc8\x83\xa9\xc9\x82\xa8\xcc\x82\xa9\xcd\x85\xab\xce\x87\xa9\xcb\ \x88\xa5\xc8\x8a\xa5\xc7\x89\xa6\xc6\x87\xa6\xca\x87\xa5\xca\x84\ \xa7\xc9\x83\xa7\xc9\x82\xa7\xc9\x82\xa4\xc6\x8b\xa2\xc6\x73\x83\ \xa1\x2f\x39\x4f\x2f\x3f\x52\x79\x8f\xa8\x89\xa3\xc4\x86\xa7\xcb\ \x81\xaa\xcc\x81\xaa\xcd\x83\xa7\xce\x81\xa4\xc7\x82\xa5\xc7\x83\ \xa6\xc9\x86\xaa\xc9\x89\xaa\xc6\x88\xa8\xc5\x85\xa5\xc5\x84\xa6\ \xc4\x81\xa3\xc0\x78\x9e\xbb\x77\x9d\xbb\x7d\x9e\xbf\x7f\x9e\xbf\ \x7f\x9e\xbd\x81\xa0\xbf\x7d\x9f\xbf\x7c\x9e\xc1\x7c\x9d\xc5\x7d\ \x99\xc1\x7e\x9a\xc1\x7e\x9b\xc1\x77\x98\xbc\x75\x92\xb7\x77\x8d\ \xb4\x79\x8e\xb7\x7c\x95\xbd\x78\x93\xb9\x75\x8c\xb1\x6e\x80\xa4\ \x63\x77\x9a\x66\x80\xa3\x6c\x8a\xab\x67\x85\xa2\x4e\x66\x83\x2b\ \x41\x5b\x45\x61\x7b\x6e\x91\xae\x73\x95\xb7\x76\x97\xbc\x78\x94\ \xbd\x75\x8c\xb6\x72\x85\xaf\x68\x7e\xa5\x5e\x77\x9c\x64\x80\xa2\ \x70\x8e\xb2\x77\x9a\xbd\x79\x9a\xbb\x73\x8f\xad\x5b\x6f\x8e\x5e\ \x6c\x7b\x4e\x56\x59\x35\x3f\x41\x2c\x37\x3b\x2b\x2f\x33\x23\x2d\ \x2e\x21\x2e\x2e\x17\x20\x24\x1b\x28\x2a\x1e\x2d\x31\x18\x27\x27\ \x14\x1a\x15\x15\x15\x16\x15\x15\x10\x19\x1c\x1a\x14\x19\x17\x17\ \x19\x19\x17\x16\x17\x1a\x18\x14\x1d\x1f\x19\x16\x17\x13\x17\x12\ \x12\x18\x1b\x18\x18\x1c\x18\x1b\x1e\x1c\x14\x13\x0f\x22\x23\x1d\ \x21\x2e\x31\x1d\x1f\x1d\x00\x00\x00\x5e\x8b\xbb\x62\x8a\xbb\x68\ \x89\xbd\x6b\x8e\xc2\x6a\x8d\xc2\x68\x89\xc0\x63\x84\xbb\x60\x85\ \xb8\x64\x8a\xbc\x6c\x92\xc1\x72\x97\xc5\x79\x9c\xca\x7f\x9f\xcc\ \x7d\xa0\xcd\x76\x9f\xcc\x75\x9f\xcc\x77\xa1\xcc\x7a\xa6\xd0\x7d\ \xaa\xd3\x7d\xac\xd1\x81\xae\xd2\x87\xb0\xd5\x89\xae\xd4\x85\xab\ \xce\x82\xa8\xcb\x7e\xa3\xc8\x78\x9f\xc5\x74\x9c\xc3\x75\x9d\xc4\ \x78\xa0\xc6\x7a\xa2\xc6\x7a\xa3\xc5\x7c\xa8\xc6\x7c\xa4\xc5\x7b\ \xa2\xc2\x7d\xa7\xc8\x7f\xa9\xcb\x82\xa8\xcd\x82\xa5\xcb\x7e\xa3\ \xc6\x7f\xa9\xc8\x80\xac\xcb\x85\xaf\xcf\x8b\xb1\xd4\x8b\xb1\xd3\ \x8b\xb1\xd0\x8d\xb2\xd1\x8f\xb0\xd3\x8c\xb2\xd4\x88\xb4\xd3\x84\ \xb2\xd1\x89\xb1\xd1\x90\xb1\xd4\x91\xaf\xd6\x8d\xac\xd5\x8b\xab\ \xd4\x88\xac\xd3\x89\xaf\xd5\x85\xad\xce\x85\xab\xcb\x85\xaa\xcc\ \x81\xa8\xce\x7f\xaa\xce\x83\xac\xcc\x82\xa4\xc5\x7b\x98\xb9\x7b\ \x97\xb7\x81\x9d\xbd\x81\x9f\xc2\x81\xa4\xc7\x7f\xa7\xc9\x82\xac\ \xcd\x87\xb0\xd0\x89\xae\xce\x89\xa5\xc6\x71\x86\xa1\x2c\x3b\x50\ \x33\x46\x5b\x77\x91\xad\x8d\xaa\xcc\x8b\xac\xd0\x85\xad\xd0\x81\ \xad\xcf\x7f\xab\xd0\x80\xa8\xcb\x82\xab\xcb\x82\xad\xcb\x85\xaf\ \xc9\x87\xad\xc9\x85\xa9\xc7\x84\xa6\xc6\x80\xa1\xc2\x7c\x9f\xbb\ \x77\x9d\xb9\x72\x9c\xb7\x7a\xa0\xbd\x80\xa2\xc0\x82\xa4\xc1\x81\ \xa5\xc1\x82\xa6\xc1\x86\xa7\xc7\x83\xa4\xcb\x82\xa2\xca\x80\xa1\ \xc8\x80\xa3\xc8\x7c\xa0\xc4\x79\x9a\xc0\x7a\x97\xbc\x7b\x94\xbb\ \x7c\x98\xc0\x7a\x9a\xc1\x79\x94\xbb\x75\x8e\xb2\x70\x89\xab\x6f\ \x8b\xa8\x64\x82\x9b\x53\x6e\x85\x4c\x65\x7c\x38\x50\x67\x2d\x4a\ \x62\x5f\x82\x9e\x6f\x92\xb5\x77\x97\xbe\x75\x95\xbc\x76\x92\xb9\ \x78\x91\xb9\x74\x8f\xb7\x6a\x8c\xb0\x68\x8b\xad\x70\x8f\xb6\x76\ \x96\xbb\x77\x97\xb8\x7b\x8f\xa4\x5a\x62\x6a\x2b\x37\x38\x2d\x37\ \x38\x2e\x34\x38\x25\x2d\x2c\x1f\x25\x28\x1c\x29\x2e\x12\x20\x1f\ \x2f\x46\x48\x1c\x2a\x2b\x0d\x17\x13\x16\x18\x1a\x1d\x1b\x1b\x1c\ \x21\x20\x19\x18\x12\x20\x25\x25\x18\x20\x23\x19\x17\x19\x1d\x1d\ \x18\x1c\x18\x16\x19\x18\x11\x20\x1f\x1a\x18\x18\x13\x21\x26\x22\ \x18\x1f\x1b\x16\x1b\x15\x13\x15\x13\x1e\x1f\x1b\x26\x2f\x32\x21\ \x2b\x2c\x00\x00\x00\x6d\x98\xc4\x6e\x94\xc3\x6f\x92\xc4\x6f\x94\ \xc8\x6c\x91\xc9\x6a\x8d\xc7\x67\x8a\xc4\x63\x8a\xc0\x69\x91\xc4\ \x6e\x95\xc7\x6d\x94\xc3\x68\x93\xbd\x6b\x91\xbe\x70\x90\xc3\x6b\ \x8d\xc3\x65\x8c\xc1\x68\x90\xc4\x69\x90\xc6\x6a\x95\xc9\x6c\x9a\ \xca\x73\x9e\xcb\x7d\xa2\xcf\x7f\xa1\xcf\x7c\x9f\xca\x7a\xa0\xc8\ \x76\x9e\xc5\x6f\x99\xc0\x6c\x97\xc1\x71\x9a\xc5\x78\x9e\xc6\x7c\ \x9f\xc3\x7d\xa1\xc1\x7b\xa2\xbf\x7a\xa0\xbf\x78\x9e\xbf\x7a\xa2\ \xc5\x7f\xa7\xcc\x82\xa8\xd1\x7f\xa4\xcb\x7c\xa5\xc7\x7e\xa8\xc7\ \x81\xac\xce\x85\xad\xd0\x87\xaf\xd3\x8a\xaf\xd3\x8a\xb0\xd1\x8c\ \xb1\xd3\x8f\xb1\xd7\x8c\xb3\xd6\x86\xb2\xd3\x83\xb2\xd3\x86\xb2\ \xd2\x8a\xb0\xd2\x8a\xae\xd2\x8d\xb0\xd6\x8d\xb0\xd9\x89\xb1\xd6\ \x86\xb1\xd6\x86\xb0\xd1\x88\xae\xd1\x83\xaa\xcd\x7d\xa7\xcb\x7c\ \xa9\xca\x7a\xa5\xc6\x72\x98\xb8\x5b\x78\x97\x54\x6c\x8a\x6a\x83\ \xa1\x7c\x98\xb7\x7e\xa0\xc2\x80\xa9\xc9\x7f\xac\xcd\x81\xad\xcd\ \x87\xaf\xcd\x84\xa5\xc0\x62\x7c\x91\x25\x3b\x4e\x3c\x57\x6c\x78\ \x97\xb5\x8d\xaf\xd1\x8f\xb0\xd4\x8b\xb1\xd4\x87\xae\xd1\x85\xad\ \xd0\x84\xac\xcf\x86\xad\xcf\x88\xb0\xcf\x83\xac\xca\x84\xaa\xca\ \x7f\xa4\xc6\x78\x9c\xbb\x70\x92\xac\x64\x83\x9e\x63\x84\xa0\x68\ \x8b\xa7\x70\x92\xae\x7c\x9d\xba\x7e\x9e\xbf\x80\xa3\xc2\x86\xa9\ \xc6\x88\xac\xca\x89\xab\xce\x86\xa8\xce\x83\xa5\xcb\x81\xa2\xc9\ \x7e\xa0\xc6\x79\x9d\xc1\x78\x99\xbd\x7d\x99\xbe\x81\x9e\xc3\x7f\ \x9f\xc3\x79\x99\xbe\x73\x93\xb6\x71\x92\xb0\x67\x84\x9e\x47\x5f\ \x74\x30\x46\x58\x3e\x55\x68\x40\x5a\x6e\x27\x45\x58\x5a\x7e\x96\ \x75\x98\xb9\x7a\x98\xbd\x78\x94\xb9\x76\x95\xb9\x78\x96\xbd\x78\ \x98\xbf\x6e\x93\xb4\x6c\x91\xb1\x71\x90\xb2\x88\x9c\xb5\x5f\x69\ \x6e\x36\x3d\x42\x2c\x38\x37\x22\x29\x2b\x25\x28\x30\x1f\x31\x2e\ \x18\x27\x26\x29\x35\x3a\x1e\x2d\x2e\x1a\x25\x24\x19\x22\x1e\x1c\ \x1e\x21\x14\x1b\x15\x20\x22\x26\x16\x1c\x1a\x1b\x1e\x17\x18\x1c\ \x19\x1a\x1b\x17\x18\x1b\x12\x1c\x19\x19\x1a\x1c\x1c\x16\x19\x16\ \x16\x17\x15\x22\x21\x20\x1a\x1e\x16\x1e\x20\x1c\x1d\x1f\x19\x1b\ \x21\x1d\x1e\x27\x28\x17\x19\x12\x23\x2a\x2a\x1f\x22\x20\x00\x00\ \x00\x7f\xa6\xd0\x7e\xa3\xce\x7e\xa3\xd0\x79\xa3\xd1\x75\xa1\xd2\ \x76\x9d\xd0\x76\x9b\xce\x73\x9b\xcd\x74\xa0\xcf\x78\xa3\xd1\x76\ \xa3\xca\x73\xa2\xc4\x74\x9e\xc4\x78\x9a\xc8\x74\x96\xc9\x70\x95\ \xc7\x6f\x95\xc8\x6b\x92\xc8\x67\x8f\xc8\x65\x8f\xc5\x67\x90\xc3\ \x6f\x95\xc6\x73\x95\xc8\x70\x93\xc5\x6c\x92\xc3\x65\x8c\xbb\x60\ \x88\xb6\x60\x89\xb9\x67\x8e\xbe\x6c\x90\xbf\x73\x94\xbf\x74\x95\ \xbc\x71\x93\xb9\x72\x91\xbc\x70\x93\xc0\x72\x98\xc3\x75\x9d\xc8\ \x79\xa2\xcd\x7a\xa4\xca\x77\xa3\xc5\x7b\xa5\xc7\x7d\xa8\xcd\x7f\ \xaa\xcf\x81\xab\xd1\x86\xad\xd1\x8b\xad\xd1\x8d\xae\xd1\x8c\xac\ \xd3\x89\xac\xd2\x84\xac\xd0\x7e\xab\xce\x7e\xab\xcd\x83\xae\xcf\ \x84\xad\xd0\x84\xad\xd4\x86\xaf\xd7\x88\xb1\xd7\x87\xb0\xd3\x86\ \xaf\xd1\x84\xad\xcf\x81\xaa\xcc\x78\xa5\xc8\x74\xa3\xc4\x71\x9f\ \xc2\x66\x8d\xb2\x54\x6e\x92\x35\x47\x68\x3a\x4a\x69\x5e\x75\x90\ \x79\x99\xb4\x82\xa9\xc6\x7f\xaa\xcd\x7e\xa9\xcc\x81\xa8\xc8\x79\ \x9b\xb7\x4f\x6e\x82\x1f\x3c\x4f\x48\x69\x7f\x7e\xa2\xc0\x8a\xb0\ \xd1\x8b\xb0\xd3\x89\xaf\xd2\x89\xae\xd2\x88\xac\xd0\x8a\xad\xd3\ \x8f\xae\xd4\x8f\xae\xd3\x86\xab\xcd\x81\xa7\xc9\x7b\x9d\xc1\x66\ \x85\xa2\x4a\x65\x7a\x32\x4b\x61\x35\x51\x6b\x43\x5f\x7a\x49\x64\ \x7d\x63\x7f\x99\x79\x99\xb7\x80\xa2\xc0\x87\xab\xc7\x89\xae\xcc\ \x88\xad\xce\x86\xa8\xcc\x85\xa6\xcb\x83\xa4\xcb\x7f\xa3\xc9\x79\ \x9f\xc4\x79\x9e\xc0\x7c\x9e\xc1\x83\xa3\xc6\x83\xa2\xc5\x7a\x9d\ \xbf\x76\x9a\xbb\x72\x95\xb2\x5e\x79\x91\x2b\x3c\x50\x16\x24\x36\ \x3b\x4c\x5f\x42\x59\x6b\x28\x42\x55\x61\x81\x99\x7e\x9d\xbe\x7d\ \x98\xbe\x7a\x96\xbb\x77\x99\xbb\x78\x9c\xc1\x78\x9d\xc3\x75\x98\ \xbb\x79\x9a\xb8\x6f\x82\x8d\x46\x4e\x52\x32\x3e\x40\x2c\x30\x31\ \x24\x28\x27\x22\x2a\x29\x1d\x25\x25\x1e\x2b\x2e\x1b\x2d\x2e\x27\ \x34\x34\x1e\x2b\x29\x1a\x1d\x18\x19\x1c\x18\x19\x1d\x1a\x20\x21\ \x1b\x1b\x1e\x1a\x14\x16\x13\x17\x1e\x19\x1b\x22\x20\x14\x15\x13\ \x1b\x19\x19\x1b\x1d\x1c\x22\x23\x1f\x1c\x1e\x1e\x20\x20\x1c\x21\ \x25\x1a\x21\x23\x1d\x25\x28\x22\x1c\x21\x1e\x1c\x1e\x14\x20\x1c\ \x15\x11\x0e\x0d\x23\x26\x23\x21\x23\x1f\x00\x00\x00\x8a\xac\xd4\ \x88\xa9\xd2\x84\xa9\xd2\x7c\xa9\xd2\x78\xa7\xd3\x7a\xa4\xd1\x7d\ \xa2\xd0\x79\xa2\xd0\x79\xa8\xd1\x7a\xac\xd1\x7b\xaf\xcd\x7c\xaf\ \xc8\x80\xaf\xcc\x84\xac\xd0\x7d\xa6\xcf\x7a\xa5\xcd\x78\xa4\xcd\ \x79\xa3\xd2\x76\x9e\xd1\x74\x9d\xce\x73\x9d\xca\x73\x9e\xc9\x77\ \x9b\xcc\x72\x97\xcb\x6d\x93\xc7\x67\x8b\xbd\x60\x83\xb5\x61\x84\ \xb6\x65\x88\xba\x69\x8c\xbe\x68\x87\xb9\x69\x87\xb7\x66\x84\xb5\ \x68\x84\xba\x68\x88\xbf\x65\x8a\xbf\x65\x8e\xc1\x69\x93\xc3\x6c\ \x97\xc2\x6d\x99\xbf\x6f\x9b\xc2\x71\x9b\xc7\x72\x9b\xc9\x72\x9b\ \xca\x77\x9e\xc9\x7d\x9d\xc8\x7b\x99\xc6\x7c\x99\xca\x7b\x9b\xca\ \x79\x9f\xc9\x75\xa1\xc7\x75\xa1\xc6\x79\xa2\xc7\x75\x9f\xc9\x75\ \xa1\xcd\x7a\xa3\xcf\x81\xa5\xcf\x82\xa3\xcd\x82\xa5\xce\x7d\xa3\ \xca\x78\x9f\xc8\x6f\x98\xc4\x6c\x95\xc1\x68\x92\xbe\x66\x8a\xb7\ \x5f\x77\xa3\x45\x52\x7a\x26\x2e\x4f\x26\x36\x4f\x4b\x64\x7c\x70\ \x92\xad\x7b\xa1\xc1\x7d\xa3\xc4\x76\x99\xbb\x64\x85\xa5\x33\x56\ \x6c\x20\x45\x57\x57\x7d\x96\x82\xa7\xc6\x8a\xae\xd0\x88\xae\xd2\ \x85\xaf\xd2\x88\xb0\xd4\x8a\xae\xd3\x8c\xad\xd3\x8f\xae\xd4\x8c\ \xad\xd2\x84\xab\xcd\x82\xa8\xc9\x79\x98\xb9\x56\x70\x8b\x25\x3a\ \x50\x1f\x37\x4c\x38\x56\x6f\x49\x68\x81\x41\x5c\x73\x2f\x4b\x5e\ \x5b\x7a\x8e\x82\xa2\xbb\x87\xa8\xc5\x87\xad\xca\x83\xab\xcb\x84\ \xa7\xca\x82\xa4\xc9\x81\xa3\xca\x7c\xa2\xc9\x78\xa1\xc6\x7c\xa2\ \xc8\x7f\xa1\xc6\x83\xa2\xc6\x83\xa1\xc5\x7e\x9f\xc5\x7d\x9f\xc4\ \x75\x96\xb7\x5f\x78\x91\x1f\x2f\x41\x08\x14\x23\x2a\x39\x4b\x38\ \x4a\x5d\x32\x47\x5f\x6c\x86\xa3\x88\xa4\xc5\x83\x9e\xc3\x7e\x9a\ \xbf\x7a\x9c\xbf\x78\xa0\xc3\x7e\xa4\xc7\x7c\x93\xaa\x52\x5d\x60\ \x36\x3d\x40\x2d\x37\x3b\x22\x2d\x2d\x20\x23\x23\x1f\x25\x2a\x1a\ \x23\x22\x13\x1a\x1e\x1b\x26\x25\x1e\x27\x28\x1f\x20\x1f\x20\x20\ \x1f\x1d\x1d\x1e\x1f\x2a\x29\x1c\x1c\x18\x21\x26\x26\x1d\x1d\x1b\ \x1c\x1c\x18\x20\x24\x1f\x1c\x24\x27\x16\x16\x13\x1d\x25\x1f\x19\ \x16\x14\x1d\x1b\x17\x16\x1f\x18\x1b\x16\x10\x21\x22\x23\x22\x20\ \x22\x1c\x20\x1e\x1a\x1f\x19\x24\x23\x1e\x1d\x20\x1c\x12\x10\x0e\ \x23\x28\x25\x27\x2b\x26\x00\x00\x00\x89\xa9\xd2\x8a\xaa\xd3\x84\ \xaa\xd2\x7a\xa6\xcc\x70\x9c\xc3\x6e\x96\xbe\x72\x97\xc0\x74\x9e\ \xc8\x75\xa5\xcc\x78\xad\xce\x7c\xb1\xcd\x80\xb2\xca\x87\xb4\xce\ \x8a\xb1\xd0\x83\xaa\xcc\x7c\xa8\xcb\x79\xaa\xcd\x7f\xad\xd3\x7f\ \xab\xd3\x7e\xa9\xd3\x7e\xaa\xd1\x7d\xaa\xd0\x82\xa9\xd1\x7f\xa4\ \xd0\x7a\xa1\xcf\x77\x9b\xc8\x75\x95\xc1\x73\x97\xc2\x71\x99\xc3\ \x70\x99\xc4\x74\x98\xc6\x77\x97\xc6\x78\x96\xc7\x75\x91\xc5\x75\ \x94\xc8\x6d\x90\xc5\x66\x8e\xc2\x67\x8f\xc1\x67\x8e\xbc\x6a\x92\ \xbd\x6d\x94\xc1\x70\x93\xc4\x6c\x90\xc4\x6b\x8f\xc4\x6d\x91\xc3\ \x6d\x90\xc1\x6a\x8d\xc1\x66\x89\xbf\x67\x8b\xbe\x69\x90\xbe\x6d\ \x98\xc2\x70\x99\xc2\x71\x95\xc0\x6e\x93\xc3\x68\x92\xc4\x6d\x93\ \xc3\x76\x95\xc5\x74\x92\xc3\x73\x93\xc4\x70\x93\xc2\x71\x92\xc4\ \x6c\x8d\xc3\x65\x88\xbd\x63\x86\xbb\x62\x82\xb6\x5e\x78\xa9\x4e\ \x5d\x8c\x2f\x38\x5f\x14\x1f\x3d\x14\x26\x42\x30\x49\x64\x51\x6e\ \x8a\x5b\x78\x94\x57\x74\x91\x43\x5f\x7c\x1e\x3c\x57\x29\x4f\x69\ \x5a\x83\xa4\x77\x9e\xc4\x84\xa6\xcf\x84\xa7\xd0\x7e\xa9\xd0\x81\ \xab\xd3\x86\xad\xd3\x8a\xab\xd1\x8a\xab\xcf\x83\xab\xcd\x7f\xab\ \xcc\x80\xa9\xca\x79\x98\xba\x55\x6e\x8d\x2b\x40\x5d\x42\x5b\x77\ \x62\x84\xa0\x6b\x8f\xa9\x5e\x7d\x92\x2e\x49\x58\x2b\x48\x56\x70\ \x8f\xa6\x87\xa8\xc6\x86\xaa\xcb\x83\xa9\xcc\x82\xa6\xcb\x7f\xa0\ \xc7\x7d\xa0\xc7\x78\x9f\xc5\x78\xa1\xc6\x80\xa6\xcc\x84\xa6\xcc\ \x86\xa4\xc9\x84\xa2\xc8\x80\xa1\xc9\x80\xa1\xc8\x7b\x9c\xbf\x68\ \x85\xa1\x35\x4b\x5f\x06\x15\x27\x13\x22\x36\x1f\x31\x48\x3e\x53\ \x71\x77\x93\xb4\x86\xa5\xc6\x81\xa0\xc3\x80\x9d\xc2\x8e\xa7\xc3\ \x79\x93\xa6\x5c\x62\x6a\x35\x39\x3b\x32\x37\x35\x2a\x34\x35\x22\ \x29\x28\x1e\x26\x22\x1c\x24\x22\x21\x2b\x2f\x1f\x2d\x2d\x1b\x27\ \x27\x27\x2e\x2f\x24\x27\x26\x1a\x1e\x1e\x23\x29\x28\x1b\x1e\x18\ \x23\x23\x1d\x1c\x1f\x18\x16\x17\x14\x1b\x1e\x1a\x18\x19\x18\x20\ \x1f\x1f\x21\x2a\x29\x24\x28\x2a\x1b\x20\x1f\x1c\x1c\x1a\x22\x25\ \x25\x1b\x1e\x1c\x20\x1f\x1d\x25\x25\x22\x22\x24\x22\x1c\x23\x1c\ \x25\x30\x2a\x25\x2d\x31\x21\x23\x28\x1a\x1e\x1d\x19\x1b\x18\x29\ \x2b\x28\x00\x00\x00\x89\xa9\xd2\x86\xa6\xcf\x80\xa6\xcc\x6c\x93\ \xb6\x53\x75\x97\x4a\x68\x8a\x51\x74\x98\x5e\x87\xad\x6b\x9b\xbd\ \x75\xa7\xc8\x7d\xae\xcd\x86\xb2\xd1\x8a\xb1\xcf\x84\xa6\xc5\x71\ \x92\xb2\x6a\x90\xb2\x6e\x9d\xc0\x78\xa9\xca\x7f\xad\xcf\x7f\xaa\ \xcf\x81\xad\xd0\x7e\xab\xca\x83\xaf\xcc\x86\xb0\xcf\x83\xb0\xd2\ \x85\xae\xd1\x84\xa9\xcc\x80\xa5\xc7\x7f\xa7\xc8\x7d\xa8\xc9\x7f\ \xaa\xce\x86\xad\xd4\x89\xaa\xd3\x87\xa8\xd1\x85\xa8\xd0\x7d\xa4\ \xcd\x77\xa1\xcb\x76\x9c\xc8\x72\x97\xc0\x74\x98\xc1\x79\x9d\xc9\ \x7c\x9d\xca\x7b\x9c\xca\x77\x98\xc8\x75\x97\xc4\x75\x99\xc6\x71\ \x98\xc9\x6b\x93\xc5\x6b\x94\xc2\x6b\x94\xc0\x6d\x94\xc0\x75\x9b\ \xc4\x76\x9b\xc2\x73\x97\xc3\x6f\x96\xc6\x6f\x94\xc1\x71\x93\xbf\ \x6e\x90\xbf\x6c\x8e\xc0\x6e\x91\xc4\x71\x93\xc6\x70\x91\xc7\x6d\ \x8e\xc6\x6a\x8c\xc3\x67\x89\xbc\x63\x81\xb0\x58\x6e\x9c\x45\x54\ \x7f\x32\x40\x64\x27\x39\x5a\x1b\x30\x50\x1a\x2f\x4e\x1f\x35\x51\ \x1c\x34\x4e\x1b\x33\x4e\x12\x2c\x4c\x27\x47\x6c\x49\x6f\x9c\x5e\ \x84\xb3\x6d\x8e\xbf\x70\x92\xc3\x70\x99\xc9\x75\x9f\xcd\x7c\xa4\ \xcd\x82\xa4\xca\x82\xa6\xca\x7b\xa5\xcd\x79\xa4\xcd\x7d\xa4\xcd\ \x78\x9b\xc1\x63\x81\xa7\x53\x71\x94\x5e\x81\xa3\x75\x9b\xb9\x79\ \x9e\xb9\x6d\x8d\xa4\x47\x61\x72\x18\x30\x41\x4c\x68\x80\x79\x9c\ \xbc\x82\xa8\xcb\x7d\xa5\xc9\x7b\xa0\xc5\x79\x9c\xc2\x76\x9a\xc0\ \x74\x9a\xc1\x77\x9e\xc5\x7e\xa4\xca\x84\xa7\xc9\x83\xa5\xca\x84\ \xa4\xce\x83\xa3\xcf\x81\xa2\xca\x7e\x9f\xc6\x73\x94\xb4\x58\x75\ \x90\x2b\x41\x5b\x16\x26\x42\x1f\x32\x52\x52\x6b\x8f\x84\xa0\xc0\ \x92\xa6\xb3\x7c\x8d\x97\x7d\x84\x8a\x4e\x54\x58\x34\x40\x43\x34\ \x38\x39\x25\x2b\x2c\x23\x27\x28\x26\x2a\x2f\x1c\x28\x27\x1a\x22\ \x22\x1d\x26\x28\x1d\x28\x26\x18\x25\x20\x19\x1e\x1a\x1d\x21\x1c\ \x1e\x24\x1e\x16\x18\x13\x20\x26\x21\x1a\x1f\x1c\x1e\x22\x1e\x19\ \x1d\x1a\x19\x19\x17\x20\x24\x20\x1d\x20\x1b\x1c\x18\x16\x1b\x1a\ \x1b\x18\x1e\x19\x18\x1e\x1c\x1b\x1c\x1c\x1e\x1f\x1d\x21\x1e\x19\ \x23\x25\x21\x1d\x25\x24\x1f\x23\x1c\x1c\x17\x15\x22\x27\x23\x20\ \x20\x1f\x22\x2a\x27\x20\x28\x25\x1a\x1c\x17\x29\x2e\x2a\x00\x00\ \x00\x86\xaa\xd2\x86\xa6\xcf\x7e\x9e\xc3\x57\x75\x94\x28\x40\x59\ \x24\x3c\x56\x37\x56\x74\x3e\x63\x85\x4d\x77\x96\x68\x97\xb4\x7b\ \xaa\xc9\x88\xb2\xd5\x83\xa5\xc6\x68\x84\xa2\x42\x5d\x78\x43\x63\ \x82\x57\x81\xa6\x6c\x9a\xbd\x7d\xa9\xcb\x7c\xa7\xc9\x71\x9a\xba\ \x68\x92\xaa\x73\x9d\xb2\x81\xad\xc3\x83\xb0\xc9\x81\xab\xc6\x77\ \x9d\xb9\x76\x97\xb3\x7f\xa1\xbc\x84\xab\xc8\x84\xad\xcf\x88\xb1\ \xd4\x88\xaf\xd2\x89\xaf\xd0\x8b\xb1\xce\x86\xaf\xcd\x82\xad\xcd\ \x80\xa5\xc7\x7e\xa0\xc2\x7b\xa1\xc0\x7f\xa7\xc7\x83\xa9\xcb\x84\ \xa6\xca\x83\xa4\xc8\x7f\xa1\xc2\x80\xa5\xc7\x7f\xa5\xcd\x7d\xa2\ \xce\x75\x9f\xc6\x69\x95\xb9\x67\x8e\xb4\x71\x97\xba\x7a\xa4\xc1\ \x82\xaa\xcc\x7d\xa6\xcd\x7d\xa3\xcb\x7a\xa2\xc7\x75\x9e\xc6\x76\ \x9d\xca\x74\x9c\xca\x79\xa1\xcd\x7a\xa1\xca\x77\xa1\xcb\x77\xa3\ \xcc\x76\xa0\xc8\x74\x9c\xc3\x70\x94\xba\x6c\x8a\xaf\x68\x82\xa7\ \x60\x79\x9a\x58\x70\x93\x48\x5f\x82\x39\x52\x6f\x36\x4f\x68\x37\ \x50\x6e\x3d\x58\x7d\x49\x64\x91\x58\x76\xaa\x64\x83\xb8\x69\x88\ \xbe\x67\x8a\xc0\x62\x8a\xc0\x67\x8d\xc3\x70\x94\xc4\x76\x98\xc4\ \x73\x96\xc3\x6f\x95\xc4\x71\x98\xc6\x73\x96\xc5\x71\x93\xc0\x6b\ \x90\xb9\x62\x89\xaf\x63\x8b\xb0\x6d\x91\xb4\x6f\x91\xae\x5f\x7e\ \x94\x3d\x55\x67\x13\x27\x3a\x30\x48\x63\x63\x82\xa6\x73\x98\xbd\ \x77\x9d\xc2\x71\x97\xbe\x6e\x90\xb7\x6f\x91\xb7\x6f\x95\xbb\x70\ \x99\xc0\x77\xa0\xc5\x7e\xa5\xc9\x7d\xa2\xc7\x7d\xa1\xc9\x7f\xa2\ \xcd\x7d\x9f\xc7\x7e\x9f\xc6\x76\x9c\xbc\x6a\x8f\xad\x5d\x7c\x9c\ \x49\x62\x86\x58\x6e\x91\x79\x8b\x9c\x7d\x89\x89\x27\x32\x34\x35\ \x40\x40\x2c\x2f\x3a\x36\x3d\x3e\x2e\x36\x33\x24\x2b\x2b\x1d\x24\ \x23\x16\x1b\x1d\x1d\x21\x24\x1b\x21\x22\x21\x2d\x2c\x15\x19\x19\ \x1b\x24\x1f\x22\x27\x24\x15\x1d\x15\x1c\x20\x22\x1f\x29\x26\x16\ \x1b\x1b\x1f\x28\x2e\x1c\x1d\x1a\x1e\x1f\x18\x16\x18\x15\x1c\x21\ \x1e\x18\x1d\x1f\x16\x18\x17\x1e\x1f\x19\x1e\x21\x20\x20\x21\x21\ \x1b\x1f\x1a\x1a\x1c\x19\x22\x25\x23\x14\x14\x12\x26\x29\x29\x22\ \x26\x27\x24\x20\x1b\x23\x25\x22\x24\x24\x20\x1f\x1f\x20\x1f\x20\ \x1f\x1e\x29\x2a\x19\x1a\x1a\x28\x2a\x24\x00\x00\x00\x85\xaa\xd2\ \x87\xa7\xd1\x7c\x96\xba\x4a\x5f\x79\x15\x27\x3a\x1e\x35\x48\x3c\ \x5a\x76\x44\x65\x85\x3a\x5b\x77\x47\x6c\x84\x71\x99\xb5\x83\xaa\ \xca\x7a\x9a\xb9\x47\x5f\x7a\x1c\x32\x4a\x38\x55\x70\x5a\x81\xa2\ \x72\x99\xbd\x7b\xa3\xc5\x71\x96\xb5\x4e\x6d\x86\x38\x56\x68\x46\ \x67\x78\x5d\x82\x93\x6c\x92\xa5\x69\x8f\xa3\x53\x72\x88\x43\x5e\ \x75\x53\x6f\x87\x70\x90\xa9\x82\xa4\xc1\x82\xa6\xc7\x73\x96\xb6\ \x65\x8a\xa4\x72\x99\xb0\x7c\xa6\xbe\x7b\xa0\xbc\x6d\x8c\xaa\x65\ \x80\x9c\x62\x81\x9b\x70\x94\xad\x7f\xa5\xc0\x7a\x9e\xbd\x6f\x8e\ \xad\x61\x7e\x99\x75\x94\xae\x87\xa8\xc8\x85\xa6\xcb\x73\x98\xba\ \x59\x7f\x9c\x42\x64\x81\x52\x77\x90\x75\x9f\xb6\x85\xb0\xcc\x83\ \xb0\xd0\x80\xa9\xca\x77\x9f\xbc\x72\x9a\xb9\x79\xa2\xc5\x78\xa5\ \xca\x7a\xa9\xc9\x7e\xa9\xca\x7b\xa7\xc8\x7d\xa9\xcb\x7d\xa8\xcb\ \x7f\xa9\xcc\x80\xa8\xca\x83\xa5\xc6\x86\xa3\xc3\x85\xa1\xc0\x82\ \x9b\xbd\x7b\x94\xb7\x72\x8e\xac\x70\x8f\xab\x71\x8e\xad\x72\x8f\ \xb3\x73\x92\xbb\x79\x97\xc5\x7c\x9a\xc8\x7a\x9a\xc7\x73\x97\xc5\ \x6d\x95\xc6\x70\x95\xc8\x75\x97\xc7\x75\x97\xc6\x74\x97\xc9\x71\ \x95\xc7\x70\x91\xc4\x6f\x8d\xc1\x6c\x8a\xbb\x6a\x8c\xba\x63\x87\ \xb2\x62\x83\xaf\x63\x7f\xa8\x54\x6f\x8e\x3c\x54\x6b\x20\x32\x44\ \x09\x18\x2c\x1c\x2e\x4b\x3f\x57\x7e\x54\x70\x9b\x5c\x7d\xa9\x5e\ \x80\xac\x5f\x80\xa8\x60\x82\xa8\x63\x89\xb1\x64\x8c\xb5\x6b\x93\ \xbc\x6f\x96\xc0\x70\x93\xbe\x73\x98\xc1\x73\x98\xc3\x75\x98\xc4\ \x74\x99\xc1\x6e\x97\xbc\x6a\x93\xb7\x68\x8e\xb1\x65\x85\xac\x94\ \x9e\xae\x70\x7d\x7c\x21\x27\x2b\x17\x1e\x20\x29\x30\x38\x30\x3c\ \x3e\x28\x30\x32\x25\x2a\x2b\x27\x32\x36\x13\x1a\x1c\x1a\x26\x25\ \x16\x1f\x1d\x28\x36\x37\x1d\x26\x25\x1d\x1b\x1c\x20\x25\x23\x21\ \x22\x21\x1a\x20\x20\x1e\x24\x22\x1c\x22\x1f\x1c\x1c\x18\x20\x28\ \x28\x1a\x1d\x19\x1c\x20\x1e\x1a\x1c\x1a\x1f\x22\x21\x1d\x1e\x1c\ \x1d\x1d\x1b\x24\x25\x25\x1e\x20\x21\x20\x22\x20\x19\x1b\x17\x16\ \x1d\x18\x21\x28\x25\x14\x14\x11\x23\x21\x19\x1d\x1b\x15\x1d\x20\ \x1c\x1c\x1e\x1a\x21\x1c\x19\x19\x1d\x18\x21\x22\x22\x19\x23\x23\ \x15\x15\x14\x22\x2a\x27\x00\x00\x00\x84\xab\xd4\x85\xa8\xd0\x79\ \x95\xb6\x4a\x5e\x75\x0e\x1e\x2f\x1a\x2f\x42\x41\x5e\x77\x45\x62\ \x7e\x2c\x46\x5f\x31\x4e\x63\x65\x8a\xa2\x80\xa6\xc1\x67\x84\xa0\ \x2e\x42\x59\x14\x26\x3a\x41\x5b\x72\x6b\x8e\xab\x7e\xa4\xc5\x81\ \xa4\xc6\x67\x86\xa2\x2d\x45\x59\x0f\x24\x33\x2e\x48\x57\x4f\x6e\ \x7e\x4c\x6d\x7e\x3f\x5a\x6c\x2b\x3f\x52\x1d\x2e\x42\x30\x4a\x5e\ \x42\x5f\x76\x54\x72\x8c\x66\x81\x9e\x4e\x69\x84\x31\x4f\x64\x3d\ \x5d\x70\x51\x72\x89\x56\x71\x8d\x3e\x55\x72\x30\x47\x63\x31\x4a\ \x64\x3d\x56\x6f\x55\x72\x8c\x60\x7f\x9b\x4c\x68\x80\x2e\x47\x5b\ \x36\x50\x64\x5f\x7d\x95\x7b\x99\xb7\x6b\x8a\xa6\x43\x62\x75\x21\ \x3d\x50\x39\x58\x6d\x4d\x72\x89\x6f\x98\xb3\x7d\xa9\xc7\x74\xa0\ \xbb\x64\x8d\xa5\x4a\x6f\x87\x53\x7a\x95\x6e\x9c\xb7\x7a\xaa\xc3\ \x7f\xa8\xc5\x7c\xa1\xc2\x73\x97\xb8\x6f\x91\xb3\x75\x98\xbb\x83\ \xa6\xc8\x8b\xa9\xcc\x91\xab\xcd\x8f\xa9\xcb\x92\xaa\xcc\x90\xaa\ \xc8\x86\xa7\xc2\x84\xa8\xc1\x89\xa7\xc5\x86\xa6\xc7\x83\xa6\xcb\ \x85\xa7\xd0\x87\xa8\xcc\x85\xa8\xc9\x82\xa5\xca\x7c\xa2\xcb\x7a\ \xa1\xcd\x7a\xa3\xcc\x7c\xa3\xcf\x7f\xa3\xd2\x7d\xa1\xd0\x77\x9c\ \xc9\x75\x97\xc4\x70\x91\xbc\x71\x91\xbc\x6f\x8f\xbb\x6f\x8a\xb8\ \x68\x80\xae\x56\x6e\x91\x3c\x4f\x68\x19\x28\x3d\x11\x20\x38\x23\ \x35\x56\x39\x4e\x79\x47\x5f\x90\x4f\x6d\x9e\x55\x73\xa3\x58\x76\ \xa2\x61\x7d\xa7\x63\x86\xaf\x64\x88\xb4\x64\x8b\xb9\x67\x8d\xbd\ \x66\x8a\xb9\x66\x8b\xb6\x6c\x8f\xbb\x6b\x8d\xbd\x6b\x8d\xbe\x6a\ \x8e\xbd\x65\x8e\xb9\x62\x8c\xb4\x7f\x96\xab\x6c\x77\x77\x3c\x45\ \x47\x21\x2c\x32\x2e\x38\x3a\x32\x3b\x3c\x28\x30\x30\x23\x2d\x30\ \x20\x27\x2b\x23\x30\x32\x1d\x26\x24\x1b\x1f\x1d\x22\x2d\x33\x20\ \x23\x22\x20\x24\x1f\x20\x23\x25\x1c\x20\x21\x1d\x28\x2a\x1e\x26\ \x26\x24\x27\x20\x1e\x28\x22\x20\x23\x24\x13\x17\x16\x1d\x25\x29\ \x1c\x25\x25\x1a\x1e\x1d\x21\x21\x1d\x21\x22\x1e\x1b\x1f\x1e\x1e\ \x22\x1f\x1c\x1d\x1c\x1c\x1d\x1a\x1d\x21\x1d\x1f\x23\x1f\x20\x25\ \x25\x1d\x1b\x18\x1f\x22\x22\x1b\x1a\x16\x23\x26\x25\x1f\x23\x1e\ \x1e\x18\x15\x1d\x1e\x1a\x1e\x25\x24\x1c\x21\x26\x17\x18\x1b\x1d\ \x1d\x17\x00\x00\x00\x7c\xaa\xcf\x7d\xa9\xcc\x75\x9a\xba\x4f\x69\ \x80\x10\x21\x33\x0f\x22\x33\x2b\x44\x56\x29\x44\x58\x18\x2f\x44\ \x36\x4f\x66\x68\x8c\xa5\x7c\xa1\xbc\x59\x74\x90\x23\x34\x49\x09\ \x1a\x29\x2f\x48\x57\x64\x85\x9b\x82\xa7\xc3\x83\xa7\xc4\x71\x8e\ \xab\x3d\x52\x67\x0a\x1b\x2a\x1c\x31\x3d\x46\x60\x6f\x4a\x64\x75\ \x2c\x3e\x51\x14\x1f\x31\x16\x24\x38\x3f\x59\x6f\x5d\x7a\x94\x5d\ \x79\x95\x46\x5e\x7a\x2b\x42\x59\x17\x2e\x40\x30\x4d\x5d\x3f\x5b\ \x6f\x31\x46\x5f\x20\x33\x4e\x2b\x45\x5f\x42\x5e\x7a\x4b\x63\x80\ \x3d\x56\x72\x34\x51\x6a\x28\x43\x59\x18\x2d\x42\x28\x3f\x53\x36\ \x52\x67\x45\x61\x79\x4d\x68\x7c\x2f\x48\x56\x18\x31\x3f\x3f\x5e\ \x72\x50\x72\x8b\x4b\x6e\x8b\x56\x7c\x9a\x61\x89\xa4\x4f\x74\x8c\ \x24\x40\x59\x2d\x4b\x66\x42\x69\x86\x62\x8b\xa7\x74\x98\xb5\x6f\ \x8b\xac\x51\x69\x89\x3b\x54\x72\x4d\x67\x88\x6b\x86\xa9\x85\xa0\ \xc3\x8e\xa8\xcb\x93\xac\xcd\x94\xad\xce\x92\xaf\xcb\x88\xae\xc4\ \x82\xa7\xbf\x7f\x9c\xb8\x84\xa2\xc0\x84\xa9\xc9\x84\xab\xcf\x83\ \xa8\xc8\x79\x9f\xb9\x74\x98\xb3\x76\x9a\xbb\x77\x9d\xc1\x77\xa3\ \xc7\x7a\xa7\xcb\x81\xaa\xcf\x7e\xa8\xcc\x77\xa2\xc2\x72\x97\xb5\ \x6b\x8c\xa9\x71\x93\xb2\x7c\x9c\xc3\x83\xa0\xca\x81\x9d\xc6\x77\ \x92\xb5\x69\x80\x99\x54\x6a\x7f\x4e\x66\x80\x59\x75\x97\x65\x81\ \xab\x68\x85\xb3\x67\x86\xb6\x66\x84\xb3\x6a\x89\xb3\x74\x91\xb8\ \x79\x94\xbc\x75\x93\xbb\x6e\x92\xba\x68\x90\xb9\x65\x90\xb7\x69\ \x91\xb8\x6c\x91\xb9\x6c\x8f\xba\x70\x90\xc0\x73\x92\xc2\x6d\x91\ \xbf\x83\x97\xae\x5a\x65\x66\x30\x38\x3c\x29\x34\x37\x2d\x34\x35\ \x2a\x3a\x3c\x25\x2c\x2d\x20\x2e\x31\x14\x19\x1c\x22\x2b\x2e\x26\ \x30\x2e\x22\x24\x2b\x1c\x22\x20\x21\x29\x28\x19\x1a\x1e\x1f\x26\ \x20\x22\x29\x2d\x23\x29\x26\x1f\x27\x22\x18\x17\x13\x20\x23\x1c\ \x1b\x1f\x1b\x21\x24\x25\x1a\x19\x1a\x1c\x26\x27\x1f\x24\x22\x19\ \x1b\x18\x23\x25\x23\x24\x23\x25\x1e\x27\x26\x1b\x22\x1d\x1b\x1a\ \x1b\x1f\x21\x22\x18\x1d\x1a\x24\x29\x28\x21\x2f\x32\x1c\x24\x20\ \x2e\x36\x3b\x21\x24\x23\x2a\x31\x2b\x20\x20\x1e\x1d\x1e\x1a\x23\ \x29\x27\x24\x2e\x31\x26\x31\x35\x1d\x25\x29\x21\x23\x23\x00\x00\ \x00\x77\xaa\xcc\x79\xa8\xc9\x74\x9d\xbe\x58\x75\x91\x1c\x2c\x41\ \x04\x10\x1e\x10\x21\x2e\x15\x28\x39\x1e\x32\x49\x4b\x66\x81\x72\ \x99\xb6\x76\x9e\xbd\x61\x7f\x9f\x2a\x3d\x56\x07\x16\x26\x19\x30\ \x3c\x35\x53\x66\x57\x78\x93\x79\x9a\xb7\x7e\x9c\xb9\x64\x7c\x96\ \x2f\x43\x55\x10\x24\x31\x24\x39\x45\x30\x46\x56\x2c\x3c\x4f\x1d\ \x2a\x3f\x20\x30\x47\x48\x63\x7c\x72\x92\xad\x7d\x9d\xb8\x67\x84\ \xa0\x41\x59\x73\x24\x3b\x53\x3a\x57\x6b\x5b\x7a\x91\x59\x71\x8c\ \x3e\x56\x71\x42\x64\x7c\x61\x87\xa1\x70\x91\xae\x65\x84\xa0\x52\ \x70\x89\x3b\x56\x70\x39\x52\x6c\x4c\x68\x7f\x56\x74\x89\x4d\x69\ \x80\x3a\x52\x68\x29\x3f\x52\x25\x40\x51\x47\x69\x7f\x63\x89\xa2\ \x66\x84\xa5\x57\x74\x99\x43\x63\x84\x31\x4e\x6b\x18\x2e\x4b\x28\ \x42\x60\x4a\x6b\x8d\x4e\x71\x94\x53\x71\x92\x50\x66\x82\x2b\x3d\ \x54\x1f\x32\x48\x3f\x57\x72\x60\x7a\x9c\x77\x93\xb6\x89\xa6\xc7\ \x92\xae\xcc\x92\xb0\xcc\x8d\xaf\xc8\x7d\xa0\xb6\x65\x85\x9d\x5d\ \x73\x92\x64\x7d\x9e\x74\x96\xb6\x7e\xa1\xc6\x7f\xa4\xc3\x6b\x8e\ \xa7\x45\x65\x79\x50\x6d\x86\x57\x76\x97\x62\x85\xa7\x71\x99\xb8\ \x79\xa0\xbd\x77\x9f\xba\x6b\x91\xaa\x51\x6f\x89\x45\x61\x7a\x5d\ \x7b\x98\x74\x92\xb5\x83\xa1\xc5\x80\x9f\xc3\x7a\x99\xb8\x6a\x86\ \x9e\x66\x83\x9a\x71\x93\xad\x7b\x9f\xc0\x82\xa5\xca\x7d\x9d\xc5\ \x72\x93\xbb\x6a\x8a\xb3\x73\x8f\xb6\x7e\x97\xbc\x80\x9a\xbc\x76\ \x91\xb2\x68\x89\xa9\x63\x8a\xa9\x64\x8e\xac\x69\x90\xb0\x6f\x95\ \xb5\x75\x99\xbb\x79\x9a\xc0\x88\xa3\xc4\x71\x82\x8b\x3b\x47\x49\ \x2b\x36\x3d\x2e\x39\x3f\x2c\x36\x37\x26\x2e\x2e\x23\x27\x2a\x1f\ \x29\x28\x21\x29\x2a\x22\x29\x2d\x21\x2d\x2d\x18\x1e\x19\x25\x2b\ \x32\x24\x27\x28\x1b\x23\x24\x1a\x1a\x1a\x1f\x26\x2a\x18\x1f\x22\ \x1d\x21\x1f\x20\x26\x22\x1d\x19\x15\x1e\x22\x1c\x1c\x1c\x1a\x19\ \x1d\x17\x19\x22\x1e\x1d\x23\x24\x1c\x1f\x1d\x1f\x1d\x1a\x21\x24\ \x1d\x25\x24\x1f\x20\x1c\x1b\x24\x2a\x2c\x1e\x20\x20\x1f\x22\x1e\ \x1c\x1a\x16\x2b\x2e\x30\x1e\x28\x25\x1d\x21\x1a\x21\x25\x25\x1c\ \x1a\x1b\x1a\x1d\x1b\x1c\x28\x29\x1b\x23\x1f\x28\x2f\x2f\x23\x27\ \x24\x23\x26\x26\x22\x25\x24\x19\x19\x1a\x00\x00\x00\x7a\xa9\xcc\ \x78\xa5\xc6\x74\x9c\xbf\x62\x81\xa1\x33\x46\x5e\x03\x0b\x1b\x0a\ \x15\x25\x17\x27\x3a\x2d\x43\x5c\x58\x75\x93\x74\x99\xbc\x78\x9e\ \xc2\x6e\x8d\xb1\x40\x56\x73\x0b\x1d\x31\x1f\x39\x47\x44\x65\x78\ \x45\x65\x7f\x4c\x6a\x86\x70\x8f\xab\x78\x95\xb0\x5f\x77\x90\x38\ \x4d\x62\x22\x36\x4b\x37\x4d\x62\x48\x5e\x76\x4f\x62\x7d\x45\x5b\ \x79\x53\x70\x8e\x76\x99\xb5\x89\xae\xca\x83\xa5\xc2\x6b\x89\xa8\ \x53\x6f\x8d\x55\x74\x91\x6e\x91\xb0\x78\x96\xb6\x6e\x8c\xa9\x68\ \x8e\xaa\x76\xa0\xbd\x85\xaa\xcb\x83\xa5\xc4\x7c\x9b\xbb\x6d\x8e\ \xaf\x6e\x8f\xae\x77\x99\xb3\x7c\x9d\xb4\x77\x95\xaf\x67\x81\x9e\ \x56\x6d\x8a\x4e\x6a\x86\x5a\x7d\x99\x71\x95\xb3\x79\x9b\xbd\x74\ \x94\xba\x66\x83\xa8\x4c\x66\x88\x31\x47\x67\x3a\x53\x73\x61\x81\ \xa4\x68\x8a\xb1\x5f\x7d\xa2\x46\x5c\x79\x29\x3b\x50\x26\x3a\x4c\ \x53\x6f\x86\x6f\x90\xb0\x7c\x9e\xc1\x88\xa5\xc9\x90\xad\xcf\x8e\ \xaf\xcc\x82\xa4\xbe\x62\x80\x99\x40\x57\x72\x47\x5b\x7c\x55\x6e\ \x93\x5e\x7f\xa4\x77\x97\xbe\x82\xa1\xc4\x6a\x87\xa2\x2c\x42\x57\ \x1c\x30\x46\x2e\x47\x63\x47\x63\x83\x5d\x7a\x9a\x66\x86\xa1\x6f\ \x8f\xa8\x59\x75\x8f\x2b\x40\x5c\x29\x3f\x5a\x4e\x68\x88\x57\x70\ \x94\x63\x7d\xa1\x6a\x89\xac\x6a\x8a\xa8\x55\x6e\x88\x3c\x57\x6e\ \x53\x73\x8c\x77\x9c\xba\x81\xa6\xc8\x7f\x9f\xc3\x6d\x88\xaf\x55\ \x6d\x96\x55\x6e\x92\x6d\x87\xa8\x76\x8f\xad\x60\x7a\x97\x41\x5e\ \x77\x43\x63\x7c\x53\x75\x8e\x52\x72\x8c\x58\x7a\x93\x79\x99\xae\ \x7c\x8f\x98\x41\x49\x4f\x24\x2e\x34\x2f\x38\x40\x34\x38\x3c\x26\ \x2f\x2d\x20\x2c\x2b\x1f\x2c\x2f\x20\x27\x2c\x25\x2c\x2d\x29\x2c\ \x2a\x2c\x33\x38\x27\x33\x36\x16\x1b\x19\x22\x26\x24\x23\x29\x28\ \x1d\x23\x23\x1c\x1d\x18\x25\x28\x2a\x1e\x1f\x1d\x1e\x1e\x1c\x1e\ \x1f\x1e\x1b\x1f\x1f\x1e\x20\x20\x17\x1a\x14\x1c\x20\x1c\x1d\x27\ \x25\x20\x28\x27\x1f\x25\x21\x23\x27\x25\x22\x1f\x1c\x1e\x20\x1f\ \x21\x1f\x21\x1a\x1e\x19\x21\x21\x1c\x1c\x1c\x1a\x19\x17\x10\x24\ \x27\x23\x1d\x22\x24\x1c\x25\x21\x19\x1f\x20\x19\x1f\x1e\x1b\x20\ \x22\x20\x26\x24\x1e\x20\x1e\x29\x2b\x2a\x20\x21\x21\x1f\x1d\x1a\ \x20\x28\x23\x18\x1b\x16\x00\x00\x00\x7b\xa6\xcd\x7a\xa2\xc8\x75\ \x9c\xc1\x6c\x8e\xb1\x49\x5f\x7d\x10\x1c\x33\x0a\x15\x2b\x28\x3a\ \x52\x40\x5b\x77\x52\x6f\x92\x60\x81\xa7\x74\x97\xbd\x72\x90\xb6\ \x50\x68\x87\x13\x27\x3b\x1f\x3a\x48\x5e\x82\x92\x6a\x90\xa8\x48\ \x6c\x88\x45\x65\x82\x71\x91\xae\x76\x95\xb2\x69\x85\xa3\x5e\x77\ \x97\x68\x80\xa2\x75\x90\xb2\x77\x95\xb7\x72\x91\xb5\x72\x95\xb8\ \x7c\xa3\xc3\x88\xaf\xcd\x85\xab\xcc\x7a\x9f\xc3\x6d\x94\xb4\x6c\ \x93\xb3\x79\xa2\xc2\x82\xa6\xc4\x81\xa6\xc3\x80\xa7\xc5\x82\xad\ \xce\x8a\xb0\xd3\x8d\xae\xd1\x8d\xac\xd0\x85\xa9\xcc\x85\xaa\xcb\ \x8a\xac\xc9\x8e\xad\xc9\x89\xa7\xc7\x86\xa4\xc5\x7d\x99\xbb\x78\ \x96\xb8\x76\x98\xbb\x7f\xa2\xc5\x85\xa6\xcd\x84\xa7\xcc\x80\xa2\ \xc3\x71\x92\xb1\x64\x80\xa2\x64\x80\xa3\x73\x92\xb5\x7a\x9c\xc2\ \x79\x9a\xbf\x6a\x85\xa4\x56\x6c\x86\x52\x69\x82\x65\x84\x9f\x78\ \x9e\xbf\x81\xa7\xcb\x89\xaa\xcf\x8b\xab\xd0\x85\xa8\xc8\x73\x96\ \xb3\x44\x60\x7c\x27\x3b\x58\x4b\x62\x84\x62\x80\xa6\x6d\x8c\xb5\ \x7d\x9b\xc2\x86\xa2\xc6\x75\x8e\xaa\x3b\x4c\x61\x0b\x1b\x2f\x2a\ \x41\x5d\x58\x71\x93\x69\x83\xa5\x6b\x86\xa4\x5d\x78\x92\x3f\x56\ \x71\x17\x27\x46\x21\x34\x50\x5b\x73\x93\x66\x7e\xa3\x51\x68\x90\ \x41\x5d\x83\x4f\x6a\x8c\x47\x5c\x76\x21\x35\x4b\x1d\x38\x4f\x44\ \x66\x83\x6c\x90\xb1\x7b\x96\xba\x68\x7c\xa1\x3d\x4f\x75\x36\x4d\ \x6e\x49\x65\x84\x60\x7c\x9b\x56\x70\x8d\x26\x3e\x58\x11\x2a\x40\ \x24\x3f\x53\x56\x6c\x7c\x70\x81\x87\x4d\x5a\x5b\x23\x31\x31\x2b\ \x32\x35\x2b\x32\x35\x30\x36\x3a\x25\x2b\x2f\x1d\x27\x2d\x1d\x29\ \x2c\x24\x33\x35\x22\x28\x27\x1d\x1b\x19\x2a\x2a\x29\x29\x2c\x30\ \x20\x26\x2b\x19\x18\x16\x26\x2c\x28\x21\x25\x21\x1c\x1d\x17\x1f\ \x21\x1e\x16\x16\x17\x15\x1a\x15\x1c\x26\x29\x1c\x1e\x1d\x1e\x1c\ \x19\x22\x21\x21\x1c\x1a\x19\x20\x28\x28\x18\x20\x20\x1e\x1d\x19\ \x1c\x1e\x19\x1f\x21\x1e\x1b\x20\x1b\x20\x1c\x1d\x23\x25\x24\x22\ \x26\x27\x1d\x20\x1c\x25\x23\x1e\x1c\x1a\x12\x28\x32\x29\x25\x2e\ \x33\x22\x2c\x2b\x1b\x27\x28\x20\x1e\x20\x22\x20\x21\x1d\x1e\x1e\ \x1b\x1e\x16\x1f\x26\x25\x21\x1d\x18\x25\x22\x1f\x22\x24\x22\x1e\ \x24\x21\x00\x00\x00\x7d\xa4\xd0\x7d\xa1\xca\x75\x99\xc0\x70\x93\ \xb8\x5f\x79\x9d\x26\x37\x55\x0a\x19\x32\x34\x48\x61\x5f\x7b\x9b\ \x5c\x7a\xa0\x44\x5f\x87\x51\x6e\x93\x6d\x8b\xae\x5f\x77\x97\x25\ \x37\x4c\x13\x29\x34\x4b\x6a\x78\x7d\xa2\xb8\x61\x85\xa1\x39\x59\ \x75\x54\x76\x8e\x7b\xa0\xbb\x7c\x9d\xbe\x82\xa0\xc3\x8c\xa7\xcb\ \x8b\xa9\xcd\x89\xaa\xce\x87\xa9\xcc\x84\xa9\xcc\x82\xab\xcb\x87\ \xad\xcd\x84\xa9\xcd\x7a\xa3\xc8\x73\xa0\xbf\x77\xa3\xbe\x77\xa3\ \xbc\x76\x9d\xb4\x7b\x9b\xb6\x7e\xa1\xbf\x7e\xa6\xc4\x85\xaa\xca\ \x8e\xad\xcf\x91\xae\xd1\x91\xae\xd4\x8f\xae\xd5\x8e\xb0\xd3\x91\ \xb1\xd2\x8d\xac\xcf\x8c\xab\xcd\x89\xac\xcb\x86\xa9\xca\x85\xa7\ \xcc\x88\xa8\xcf\x8d\xac\xd3\x90\xae\xd2\x8a\xad\xcb\x83\xa9\xc5\ \x7b\xa1\xc1\x7e\x9f\xc4\x84\xa5\xca\x89\xa8\xcc\x8b\xa8\xca\x86\ \xa1\xc1\x7d\x98\xb6\x7a\x97\xb5\x7c\x9d\xbe\x81\xa7\xc9\x82\xa8\ \xcb\x85\xa8\xcd\x87\xa8\xcf\x7e\xa4\xc6\x72\x97\xb7\x4e\x6a\x89\ \x19\x30\x4c\x37\x51\x6e\x69\x88\xab\x79\x96\xbc\x7d\x9f\xc3\x84\ \xa4\xc5\x7e\x97\xb0\x47\x57\x69\x09\x16\x29\x1f\x32\x4a\x53\x6b\ \x8b\x7a\x95\xb6\x81\x9c\xbb\x74\x8e\xac\x54\x6b\x89\x28\x3a\x57\ \x1d\x30\x4a\x55\x6d\x8a\x79\x92\xb4\x73\x8a\xb2\x55\x6b\x94\x33\ \x48\x6b\x2a\x3b\x57\x1d\x2d\x45\x25\x3a\x56\x32\x50\x72\x40\x5f\ \x84\x57\x6e\x92\x5a\x69\x8b\x38\x48\x69\x46\x5b\x7b\x55\x70\x90\ \x47\x61\x85\x46\x5c\x7f\x28\x3a\x59\x0c\x20\x39\x56\x65\x70\x58\ \x68\x6a\x23\x2e\x2f\x27\x2f\x30\x29\x38\x37\x2b\x35\x33\x2c\x34\ \x37\x23\x2c\x2d\x23\x2b\x30\x21\x2a\x2a\x21\x25\x21\x1e\x1f\x21\ \x26\x27\x28\x19\x1e\x1b\x24\x29\x22\x2b\x2e\x2c\x21\x24\x23\x18\ \x1a\x18\x25\x28\x27\x26\x2d\x2e\x22\x24\x1d\x23\x24\x26\x1a\x23\ \x22\x1e\x21\x23\x1d\x21\x21\x1c\x1d\x1d\x1a\x1b\x1c\x28\x2a\x2a\ \x20\x21\x1f\x23\x24\x22\x19\x1e\x1e\x23\x2c\x33\x1e\x24\x24\x1e\ \x24\x24\x23\x26\x23\x20\x26\x25\x20\x22\x24\x20\x27\x23\x1e\x21\ \x1e\x1f\x22\x21\x1e\x1b\x18\x1e\x26\x21\x23\x2b\x2e\x26\x32\x31\ \x1d\x24\x21\x1f\x21\x22\x24\x23\x21\x1d\x1f\x1e\x27\x26\x25\x1f\ \x28\x25\x1d\x1a\x19\x1e\x1e\x1d\x1f\x1f\x22\x1e\x29\x28\x00\x00\ \x00\x82\xa7\xd5\x7f\xa3\xcd\x7c\x9f\xc7\x75\x9c\xc3\x69\x8b\xb2\ \x3d\x55\x77\x09\x17\x34\x22\x35\x52\x62\x81\xa0\x6e\x91\xb7\x53\ \x73\x99\x38\x57\x79\x52\x70\x8e\x6b\x84\xa1\x45\x58\x6d\x11\x22\ \x30\x2b\x43\x50\x69\x8a\x9d\x6e\x91\xab\x40\x60\x78\x3f\x5e\x76\ \x73\x95\xb2\x7f\xa1\xc5\x89\xab\xce\x90\xb0\xd1\x90\xb0\xd1\x8f\ \xb0\xd1\x8e\xad\xcf\x8c\xaf\xd1\x8b\xb0\xd0\x8b\xad\xce\x87\xaa\ \xcd\x7f\xa9\xcb\x75\xa6\xc0\x72\xa0\xb7\x5f\x87\x9d\x51\x71\x89\ \x58\x71\x8d\x61\x79\x97\x70\x8f\xaa\x81\xa2\xbf\x8c\xaa\xc8\x91\ \xae\xcf\x8d\xa8\xce\x8d\xa8\xd1\x8e\xae\xd5\x8d\xaf\xd2\x8c\xaf\ \xd0\x8d\xaf\xce\x89\xae\xca\x8a\xae\xcc\x8b\xad\xcf\x8e\xae\xd2\ \x93\xb1\xd6\x94\xb2\xd4\x8d\xb2\xcd\x85\xb0\xc9\x82\xae\xcc\x83\ \xae\xce\x89\xaf\xd2\x92\xb1\xd4\x96\xaf\xd3\x93\xac\xce\x8f\xab\ \xcc\x8a\xaa\xcc\x83\xa7\xc9\x7f\xa5\xc8\x80\xa3\xc7\x84\xa3\xc9\ \x83\xa3\xca\x7b\x9f\xc1\x76\x9c\xbc\x64\x84\xa4\x39\x53\x72\x19\ \x32\x4f\x3f\x5d\x7b\x6d\x8c\xab\x76\x9a\xb9\x7c\xa0\xbe\x7b\x97\ \xaf\x4a\x5b\x6d\x07\x11\x20\x10\x1e\x32\x3b\x51\x6b\x57\x73\x8f\ \x74\x91\xaf\x81\x9d\xbb\x7a\x96\xb2\x5f\x78\x93\x43\x59\x73\x56\ \x70\x8b\x7a\x96\xb7\x86\x9f\xc6\x7a\x91\xb9\x5a\x70\x94\x3d\x50\ \x6f\x38\x4e\x6a\x4e\x6b\x89\x58\x7c\x9f\x5a\x7c\xa1\x52\x6d\x94\ \x4a\x5f\x83\x3e\x51\x75\x56\x6c\x8e\x6f\x88\xaa\x64\x7a\xa0\x4c\ \x5d\x85\x44\x54\x72\x5e\x6a\x74\x37\x46\x45\x31\x3a\x3d\x32\x39\ \x3a\x2e\x37\x38\x29\x2e\x32\x20\x28\x28\x24\x29\x29\x21\x2c\x2b\ \x22\x2a\x2b\x22\x23\x22\x24\x24\x1f\x28\x2c\x2a\x21\x23\x25\x1f\ \x22\x1e\x19\x1a\x18\x27\x2a\x26\x27\x28\x28\x1b\x1a\x15\x25\x1f\ \x22\x23\x28\x27\x21\x20\x25\x1f\x26\x27\x18\x1d\x18\x1d\x24\x21\ \x1d\x1f\x20\x1b\x1e\x1f\x1b\x1d\x18\x20\x22\x22\x1e\x1e\x1f\x27\ \x29\x28\x1f\x22\x1c\x1e\x29\x23\x1f\x26\x28\x23\x25\x20\x21\x22\ \x22\x1c\x20\x1d\x29\x2a\x30\x24\x24\x20\x20\x25\x21\x1c\x22\x1e\ \x1f\x27\x26\x1c\x28\x29\x21\x22\x22\x22\x23\x1e\x20\x20\x1d\x1c\ \x1f\x1a\x1b\x1c\x19\x21\x1f\x1f\x24\x24\x26\x21\x29\x27\x20\x24\ \x20\x1e\x25\x1f\x1f\x24\x1b\x22\x2a\x28\x00\x00\x00\x7e\xa8\xd3\ \x80\xa7\xd0\x82\xa7\xd0\x78\xa4\xcd\x6a\x99\xbf\x4c\x71\x93\x1b\ \x30\x4c\x0e\x1f\x3b\x48\x65\x81\x73\x9c\xbb\x6a\x91\xb2\x4b\x6d\ \x8c\x36\x52\x6e\x5c\x75\x8f\x68\x7d\x94\x36\x48\x5b\x15\x29\x39\ \x37\x53\x64\x5b\x7b\x90\x39\x59\x6f\x37\x57\x70\x6a\x8b\xac\x86\ \xa9\xcb\x8a\xaf\xcf\x8d\xb1\xd0\x8f\xb1\xce\x92\xb3\xcf\x95\xb3\ \xd3\x8d\xb0\xd2\x8f\xb0\xd3\x8e\xb0\xd2\x87\xa9\xcd\x82\xa7\xca\ \x7a\xa5\xc0\x66\x8f\xa5\x40\x60\x77\x39\x50\x6c\x51\x63\x83\x50\ \x61\x7f\x4d\x65\x7f\x7f\x9c\xb8\x8b\xa9\xc8\x8c\xab\xcb\x88\xa8\ \xcb\x87\xa6\xcd\x87\xa7\xce\x8a\xab\xce\x8b\xaf\xcf\x89\xad\xcd\ \x88\xad\xc9\x8a\xae\xc9\x8d\xb0\xce\x8e\xb1\xd0\x90\xb2\xd3\x8f\ \xb2\xd1\x89\xb0\xca\x84\xaf\xc7\x83\xaf\xc8\x86\xb2\xce\x8d\xb4\ \xd4\x92\xb3\xd7\x98\xb2\xd7\x97\xb1\xd4\x92\xb2\xd2\x8b\xaf\xd0\ \x84\xaa\xcb\x7f\xa5\xc8\x83\xa3\xc7\x85\xa1\xc6\x84\xa0\xc6\x7d\ \xa0\xc2\x77\x9f\xbf\x70\x96\xb6\x61\x7f\xa1\x3e\x58\x7a\x24\x3d\ \x5d\x3a\x57\x72\x5a\x7d\x98\x6e\x92\xaf\x6d\x8d\xa7\x47\x5c\x70\ \x0a\x16\x24\x08\x14\x24\x39\x4d\x60\x5d\x7a\x91\x50\x6f\x8a\x68\ \x89\xa5\x7e\xa0\xba\x7d\x9b\xb6\x74\x8e\xaa\x74\x92\xae\x7c\x9d\ \xbb\x82\xa2\xc7\x7f\x9b\xc3\x76\x90\xb6\x66\x81\xa2\x60\x82\xa0\ \x67\x91\xae\x6b\x99\xb8\x69\x95\xb4\x67\x8e\xb1\x60\x81\xa3\x5c\ \x78\x9b\x69\x83\xa6\x7b\x95\xb8\x7f\x94\xb3\x78\x85\x94\x49\x5a\ \x5b\x29\x35\x36\x2e\x3b\x3b\x2a\x32\x34\x2a\x36\x37\x24\x2c\x2f\ \x1c\x25\x27\x25\x2f\x2e\x2b\x2d\x2b\x27\x30\x32\x22\x29\x26\x23\ \x26\x22\x23\x28\x22\x24\x29\x2a\x23\x23\x22\x1f\x21\x20\x18\x18\ \x1a\x2b\x2d\x2a\x22\x23\x24\x1c\x1b\x16\x1d\x1c\x1c\x23\x29\x2b\ \x23\x30\x32\x22\x2d\x31\x19\x19\x18\x21\x27\x23\x21\x29\x24\x22\ \x27\x24\x1c\x1e\x1b\x25\x2a\x29\x1d\x24\x28\x1d\x23\x23\x24\x33\ \x32\x1d\x30\x2e\x1b\x1c\x1c\x24\x28\x24\x20\x26\x23\x1f\x26\x28\ \x22\x26\x29\x1b\x24\x24\x16\x1b\x18\x22\x21\x1d\x22\x2a\x2a\x24\ \x31\x32\x1a\x1c\x1c\x29\x2d\x29\x1e\x21\x1b\x22\x24\x20\x22\x20\ \x1d\x1d\x23\x1e\x22\x27\x25\x1c\x20\x1d\x20\x22\x1c\x22\x25\x27\ \x22\x25\x22\x1b\x1f\x1a\x00\x00\x00\x75\x9f\xcb\x7b\xa1\xce\x7e\ \xa3\xd0\x76\xa5\xcf\x66\x9b\xc1\x56\x83\xa6\x36\x51\x6f\x0b\x1f\ \x35\x21\x3d\x50\x5a\x82\x98\x74\x9c\xb8\x60\x82\xa4\x34\x4e\x6b\ \x3c\x51\x6b\x69\x82\x9a\x5e\x77\x90\x28\x40\x55\x10\x27\x3a\x28\ \x43\x56\x26\x46\x5b\x38\x59\x74\x6c\x8e\xb0\x85\xa9\xcc\x87\xaf\ \xd0\x89\xb2\xd2\x8d\xb3\xd0\x92\xb7\xd1\x93\xb7\xd3\x8e\xb2\xd3\ \x8e\xaf\xd2\x89\xab\xd0\x86\xa6\xce\x82\xa3\xc8\x7b\x9e\xbb\x53\ \x72\x8a\x28\x3d\x56\x3d\x4f\x6d\x65\x76\x99\x5b\x6d\x8d\x36\x4b\ \x64\x62\x7e\x96\x8c\xad\xc8\x86\xaa\xc7\x84\xa8\xc7\x84\xa6\xc9\ \x83\xa5\xca\x87\xa9\xc9\x87\xae\xca\x83\xac\xc9\x85\xab\xc8\x8a\ \xad\xcb\x8f\xb2\xd0\x8d\xb2\xd0\x8d\xb2\xd2\x8b\xaf\xce\x87\xac\ \xca\x85\xab\xc8\x88\xae\xc9\x8d\xb2\xcd\x90\xb5\xd2\x92\xb5\xd7\ \x94\xb3\xd6\x94\xb3\xd2\x8f\xb2\xcf\x89\xb0\xd0\x82\xab\xcc\x80\ \xa8\xca\x80\xa4\xc7\x80\xa1\xc4\x7f\x9f\xc3\x7e\xa1\xc4\x7c\xa2\ \xc4\x7a\xa0\xc3\x76\x97\xbe\x6a\x86\xae\x52\x6b\x8f\x2f\x48\x66\ \x27\x42\x5c\x47\x66\x82\x57\x75\x91\x3a\x51\x67\x10\x1f\x31\x0e\ \x1d\x2f\x26\x3a\x4e\x66\x83\x9a\x60\x82\x9d\x40\x64\x80\x67\x8b\ \xa6\x81\xa5\xbf\x84\xa1\xbf\x83\xa4\xc1\x82\xa6\xc4\x7b\x9e\xc2\ \x7a\x9a\xc2\x7a\x99\xc2\x75\x98\xbc\x74\x9b\xba\x73\xa1\xbe\x71\ \xa1\xbd\x71\xa1\xbb\x73\xa0\xbe\x74\x9a\xbd\x79\x99\xbd\x7e\x9b\ \xbf\x8d\x9e\xac\x53\x60\x65\x32\x39\x3b\x2e\x38\x36\x27\x2e\x30\ \x29\x2b\x2b\x23\x27\x29\x22\x2b\x29\x1d\x27\x2a\x20\x2b\x2b\x25\ \x21\x21\x22\x21\x1e\x1f\x25\x22\x1b\x21\x20\x23\x27\x20\x21\x2a\ \x2d\x20\x2d\x32\x1e\x26\x25\x1e\x26\x24\x0f\x14\x13\x27\x2a\x25\ \x22\x26\x24\x15\x1c\x1b\x11\x14\x13\x21\x2b\x29\x21\x27\x2c\x21\ \x29\x2a\x21\x23\x1f\x24\x26\x23\x1c\x1f\x21\x21\x23\x1f\x27\x27\ \x25\x22\x26\x26\x25\x2d\x31\x27\x2c\x2d\x2b\x36\x34\x27\x22\x22\ \x1f\x22\x22\x1c\x20\x1e\x1d\x25\x21\x1e\x28\x28\x23\x2c\x2b\x1c\ \x23\x26\x1a\x1d\x1a\x20\x21\x20\x1f\x2a\x28\x25\x2d\x33\x1a\x1c\ \x12\x1f\x22\x22\x21\x28\x26\x1f\x1d\x1a\x20\x1f\x22\x1e\x29\x22\ \x1f\x1e\x1c\x21\x29\x27\x1e\x20\x1c\x22\x29\x23\x1d\x1e\x1d\x1c\ \x20\x18\x00\x00\x00\x66\x8d\xbe\x6a\x8f\xc1\x72\x95\xc8\x69\x95\ \xc5\x5e\x91\xbd\x58\x86\xaf\x49\x67\x8a\x24\x39\x54\x0a\x21\x34\ \x2c\x4c\x5e\x5b\x80\x97\x5d\x7e\x9a\x3c\x54\x72\x27\x3b\x56\x51\ \x69\x85\x64\x81\xa0\x47\x65\x82\x1a\x34\x4e\x11\x28\x43\x1e\x3c\ \x58\x47\x6a\x8a\x6e\x93\xb9\x7e\xa2\xcb\x83\xa9\xd2\x88\xaf\xd4\ \x8d\xb2\xd4\x8f\xb5\xd3\x90\xb6\xd6\x8c\xb1\xd3\x88\xab\xce\x85\ \xa5\xce\x82\xa0\xcd\x84\xa0\xcb\x7a\x96\xbd\x59\x72\x92\x2e\x42\ \x5e\x48\x5d\x7b\x6f\x87\xa7\x63\x79\x96\x33\x4a\x60\x3e\x57\x6f\ \x7e\x9c\xb8\x83\xa8\xc6\x7f\xa5\xc6\x80\xa5\xc5\x84\xa8\xc7\x84\ \xab\xc8\x80\xaf\xc6\x7f\xae\xc6\x85\xad\xc9\x8b\xaf\xd0\x8d\xb3\ \xd5\x8c\xb4\xd3\x8a\xb2\xd1\x8b\xae\xcf\x8a\xad\xce\x87\xab\xcc\ \x86\xad\xcb\x8e\xb3\xcf\x90\xb4\xd2\x8e\xb4\xd3\x8c\xb2\xd3\x8e\ \xb2\xd2\x8b\xb1\xd0\x87\xae\xcd\x82\xa9\xc9\x82\xa9\xc9\x7d\xa6\ \xc6\x7a\xa1\xc1\x7d\xa3\xc5\x7e\xa5\xc8\x81\xa7\xcb\x81\xa6\xcc\ \x81\xa3\xcc\x7f\xa1\xc6\x77\x97\xb9\x5b\x78\x98\x38\x50\x6f\x25\ \x3d\x5c\x33\x4b\x68\x30\x45\x5c\x15\x2a\x3e\x28\x3e\x53\x1f\x36\ \x4e\x5b\x79\x93\x70\x94\xb1\x4b\x6f\x8f\x41\x65\x83\x7a\x9e\xba\ \x82\xa4\xc2\x80\xa3\xc1\x78\x9c\xbb\x70\x91\xb6\x73\x94\xbd\x78\ \x9c\xc3\x76\x9e\xc3\x75\x9f\xc1\x72\xa0\xc0\x72\xa2\xc0\x71\xa2\ \xbd\x75\xa1\xc2\x7b\xa1\xc7\x81\x9f\xc1\x6e\x7f\x89\x30\x3c\x43\ \x36\x3a\x41\x35\x3d\x3d\x28\x2f\x2d\x1f\x26\x26\x2a\x33\x35\x20\ \x2e\x2b\x1c\x22\x22\x2a\x37\x39\x20\x23\x26\x21\x2b\x28\x25\x24\ \x25\x26\x29\x26\x20\x1c\x19\x21\x22\x26\x20\x22\x26\x22\x28\x29\ \x21\x29\x2b\x27\x31\x35\x12\x14\x12\x22\x25\x21\x1f\x25\x23\x17\ \x20\x1f\x14\x18\x14\x27\x2f\x2e\x23\x27\x2c\x21\x23\x1f\x20\x22\ \x1c\x2a\x2c\x2c\x1e\x20\x23\x1e\x1f\x1f\x22\x24\x21\x1b\x1c\x15\ \x20\x21\x20\x1e\x20\x1d\x27\x28\x28\x1f\x1e\x20\x1e\x21\x1f\x20\ \x24\x20\x22\x24\x24\x1a\x20\x1a\x20\x20\x23\x1d\x24\x23\x1e\x24\ \x1f\x20\x29\x2e\x1f\x2b\x2a\x24\x26\x27\x1e\x23\x1c\x20\x22\x1e\ \x24\x27\x23\x21\x23\x25\x18\x21\x1f\x1c\x1f\x1b\x21\x20\x1e\x1e\ \x21\x20\x26\x27\x22\x1e\x1f\x1a\x1e\x22\x1f\x1f\x1e\x16\x00\x00\ \x00\x65\x8e\xbd\x6b\x92\xc2\x71\x97\xc8\x6b\x93\xc7\x61\x8d\xbe\ \x5d\x85\xb5\x54\x76\xa0\x3d\x57\x7a\x16\x2c\x45\x0b\x22\x34\x26\ \x42\x53\x3f\x5c\x70\x31\x49\x62\x18\x2c\x47\x39\x50\x6f\x4b\x69\ \x8d\x41\x62\x89\x34\x52\x7b\x2a\x43\x6d\x3a\x56\x80\x4f\x74\x9d\ \x68\x8d\xb9\x70\x94\xc4\x76\x99\xca\x81\xa5\xd1\x86\xaa\xd2\x87\ \xad\xd0\x86\xac\xd0\x83\xa9\xce\x7a\x9d\xc7\x79\x98\xc8\x77\x94\ \xc9\x79\x98\xcc\x78\x96\xc6\x6b\x87\xb0\x56\x71\x94\x5a\x75\x96\ \x67\x84\xa2\x59\x70\x8b\x2d\x40\x55\x25\x39\x53\x5e\x7a\x99\x78\ \x9b\xbf\x7a\xa0\xc5\x7d\xa3\xc8\x7f\xa5\xc8\x80\xaa\xc9\x7d\xad\ \xc7\x7e\xad\xc7\x87\xae\xcb\x8d\xaf\xd5\x89\xaf\xd6\x87\xb2\xd3\ \x86\xb2\xd0\x88\xaf\xd1\x88\xac\xd2\x81\xaa\xcc\x83\xae\xcd\x8a\ \xb1\xd0\x8a\xb1\xcf\x87\xaf\xce\x86\xae\xcf\x86\xae\xd0\x86\xad\ \xce\x85\xaa\xcc\x83\xa8\xc9\x7f\xa4\xc5\x7c\xa4\xc4\x79\xa2\xc3\ \x7f\xa5\xc9\x80\xa8\xcb\x82\xaa\xce\x86\xab\xd1\x83\xa9\xcd\x84\ \xa9\xcb\x80\xa6\xc5\x78\x9c\xbd\x6a\x88\xab\x56\x70\x91\x39\x51\ \x6e\x28\x40\x58\x2b\x46\x5c\x46\x65\x7e\x35\x52\x6d\x45\x65\x82\ \x79\x9d\xbb\x5e\x82\xa4\x36\x59\x7a\x67\x8b\xa9\x7e\xa4\xc0\x72\ \x96\xb3\x60\x81\xa2\x59\x7a\x9c\x63\x86\xac\x70\x9a\xbf\x73\xa1\ \xc2\x76\xa0\xc3\x73\x9f\xc1\x70\xa1\xc0\x71\xa2\xc0\x89\xa9\xbe\ \x75\x88\x95\x42\x4c\x4c\x2d\x36\x38\x31\x37\x36\x2a\x30\x2d\x23\ \x2f\x30\x25\x30\x2f\x17\x20\x1e\x26\x30\x33\x1e\x26\x26\x26\x2b\ \x28\x24\x21\x23\x21\x23\x1c\x2a\x29\x27\x20\x26\x21\x1f\x20\x19\ \x20\x20\x20\x26\x2a\x2f\x23\x23\x21\x29\x23\x24\x22\x27\x29\x22\ \x29\x27\x15\x15\x12\x26\x25\x23\x27\x28\x27\x1b\x20\x1f\x14\x15\ \x12\x2e\x30\x35\x2c\x29\x28\x26\x2b\x29\x1c\x1f\x17\x1b\x23\x1c\ \x1c\x22\x20\x23\x26\x24\x27\x28\x26\x23\x21\x20\x25\x2a\x26\x1e\ \x22\x21\x22\x27\x29\x20\x21\x1f\x1f\x22\x25\x1a\x1d\x1a\x1d\x1d\ \x1a\x24\x27\x26\x25\x2a\x27\x22\x26\x23\x25\x28\x24\x20\x25\x24\ \x25\x35\x39\x23\x29\x26\x22\x22\x1e\x22\x22\x1d\x21\x21\x1c\x1c\ \x1f\x1c\x1b\x1d\x1b\x1e\x21\x1b\x24\x2a\x29\x1a\x1e\x1b\x21\x27\ \x26\x22\x28\x24\x20\x22\x1f\x23\x27\x23\x00\x00\x00\x6f\x9e\xc2\ \x75\xa1\xc8\x79\xa2\xcc\x7a\xa1\xcf\x76\x9d\xcd\x70\x98\xc4\x6d\ \x92\xba\x62\x83\xa8\x4e\x69\x87\x1e\x33\x48\x0a\x1b\x2c\x1b\x2e\ \x3e\x25\x3a\x4d\x17\x2d\x48\x3a\x52\x74\x50\x6a\x92\x52\x71\x9d\ \x53\x71\xa0\x57\x71\xa2\x5a\x78\xaa\x60\x83\xb2\x68\x8c\xbc\x6e\ \x90\xc2\x6e\x91\xc3\x73\x96\xc7\x7a\x9a\xc8\x7a\x9e\xc7\x77\x9d\ \xc5\x70\x97\xc2\x66\x8c\xbb\x64\x85\xbb\x67\x84\xbd\x6a\x8a\xc0\ \x6d\x8c\xbf\x6c\x8a\xb9\x66\x82\xac\x63\x7e\xa4\x5a\x73\x96\x3e\ \x51\x6d\x1f\x2e\x46\x1a\x2b\x48\x3d\x55\x79\x5f\x7b\xa8\x68\x8a\ \xba\x68\x8f\xbf\x6e\x94\xc0\x77\x9c\xc7\x78\xa1\xc8\x7d\xa3\xc9\ \x80\xa0\xca\x83\xa1\xcf\x7e\xa2\xd0\x7c\xa6\xcd\x81\xa6\xce\x85\ \xa5\xd1\x81\xa1\xce\x7c\xa1\xc9\x80\xa7\xcc\x86\xac\xd0\x85\xab\ \xce\x82\xac\xcc\x7e\xa9\xc8\x7b\xa8\xc8\x7d\xa6\xca\x81\xa7\xcd\ \x83\xa4\xcc\x80\xa3\xc8\x7c\xa0\xc5\x79\x9d\xc3\x7f\xa3\xca\x83\ \xa8\xce\x85\xaa\xd0\x88\xaa\xd1\x89\xab\xd0\x89\xab\xce\x85\xab\ \xcb\x84\xaa\xcd\x83\xa7\xcb\x82\xa1\xc4\x71\x90\xae\x5d\x7e\x97\ \x56\x7a\x92\x65\x88\xa4\x56\x76\x92\x31\x4e\x6b\x74\x94\xb1\x6b\ \x8c\xad\x38\x5a\x79\x58\x7d\x99\x7d\xa1\xbd\x6f\x90\xad\x51\x6f\ \x8c\x48\x67\x89\x58\x7c\x9e\x6f\x99\xbb\x75\xa4\xc4\x75\xa1\xc0\ \x77\x9f\xc1\x87\xa7\xc0\x6b\x7f\x8a\x38\x45\x4a\x37\x3f\x44\x30\ \x38\x37\x29\x30\x30\x26\x2d\x2f\x24\x30\x31\x1d\x23\x22\x23\x27\ \x27\x1e\x22\x22\x1d\x1f\x22\x21\x25\x29\x23\x24\x23\x23\x24\x23\ \x1c\x1e\x1d\x1f\x23\x23\x22\x24\x21\x20\x22\x1f\x22\x26\x27\x25\ \x2a\x26\x23\x26\x1e\x23\x26\x24\x24\x2a\x2e\x21\x25\x22\x18\x1d\ \x1d\x21\x20\x20\x27\x2b\x26\x1f\x21\x1d\x18\x13\x11\x25\x2a\x28\ \x2b\x2f\x2a\x22\x28\x24\x1c\x20\x1c\x20\x26\x25\x21\x24\x26\x1f\ \x1f\x1e\x23\x29\x2a\x1b\x1b\x18\x25\x2c\x2c\x1e\x25\x28\x20\x23\ \x24\x1d\x1d\x1d\x23\x29\x29\x1c\x1e\x1b\x1b\x21\x1b\x21\x25\x25\ \x19\x20\x21\x1d\x25\x22\x1d\x22\x1f\x22\x20\x1a\x24\x2b\x29\x22\ \x27\x27\x1c\x1e\x1d\x1c\x1f\x1a\x1e\x20\x1a\x23\x20\x1d\x23\x22\ \x1f\x1c\x1f\x1e\x20\x27\x22\x1d\x1e\x1b\x1e\x22\x22\x21\x24\x1d\ \x25\x2b\x2a\x1f\x24\x24\x00\x00\x00\x78\xa9\xc7\x7a\xa9\xc9\x7f\ \xad\xcf\x84\xac\xd3\x87\xac\xd6\x83\xa9\xcf\x84\xaa\xcd\x82\xa7\ \xc9\x78\x98\xb9\x5f\x77\x94\x2b\x3a\x53\x12\x1f\x33\x18\x28\x3e\ \x2b\x40\x5c\x52\x6d\x8f\x6b\x89\xaf\x70\x90\xb9\x78\x95\xbf\x7d\ \x98\xc4\x7c\x9b\xc7\x7c\x9f\xc8\x7c\xa0\xc9\x7a\x9d\xc8\x78\x9c\ \xc9\x7a\x9e\xcc\x7d\xa2\xcc\x7d\xa4\xcb\x78\xa1\xc8\x71\x9b\xc3\ \x6b\x95\xc1\x69\x8e\xbf\x6e\x8e\xc0\x73\x91\xc1\x75\x94\xc2\x74\ \x94\xc1\x70\x8f\xba\x6c\x8c\xb3\x66\x82\xa5\x56\x6c\x8b\x46\x57\ \x77\x46\x5a\x7f\x57\x6f\x97\x67\x82\xaf\x6d\x8b\xbf\x6e\x8c\xc3\ \x6f\x8e\xc3\x7a\x98\xca\x7c\x9e\xcd\x7b\x9f\xcd\x7e\x9c\xcd\x7e\ \x9b\xcd\x7e\x9c\xd0\x7c\x9c\xcc\x7b\x99\xc9\x7e\x98\xcb\x78\x94\ \xc6\x73\x92\xc2\x77\x99\xc7\x7c\x9b\xc9\x7b\x9c\xc9\x77\x9d\xc5\ \x74\x9b\xc3\x73\x9b\xc2\x74\x9a\xc4\x74\x97\xc5\x77\x97\xc7\x76\ \x95\xc2\x71\x90\xbd\x70\x8f\xbc\x77\x96\xc3\x7b\x9a\xc6\x7c\x9f\ \xc8\x7e\xa2\xca\x7f\xa4\xca\x81\xa5\xcb\x83\xa7\xcc\x85\xa8\xcc\ \x84\xa8\xcc\x82\xa7\xcb\x7f\xa6\xc6\x76\xa0\xbb\x72\x9e\xb8\x75\ \x9d\xb9\x64\x84\xa0\x2d\x48\x63\x56\x71\x8e\x6d\x8b\xa8\x38\x57\ \x72\x49\x6a\x85\x7a\x9d\xb8\x7b\x9a\xb8\x6c\x8b\xa9\x65\x86\xa8\ \x6c\x8e\xb1\x77\x9e\xbe\x77\xa3\xc0\x8f\xaa\xb9\x83\x8d\x92\x42\ \x51\x53\x3a\x45\x48\x31\x39\x37\x27\x2e\x2f\x27\x30\x33\x22\x2a\ \x29\x24\x30\x34\x23\x2e\x2e\x23\x29\x28\x25\x25\x24\x2a\x28\x2a\ \x22\x23\x1f\x2a\x32\x31\x27\x2a\x2b\x1f\x23\x1f\x19\x21\x1e\x22\ \x29\x29\x1f\x22\x21\x24\x2b\x2c\x1e\x1f\x1c\x1f\x24\x1d\x1c\x21\ \x16\x21\x25\x23\x25\x2b\x2e\x20\x25\x22\x1d\x19\x16\x1d\x21\x1e\ \x2e\x2e\x2e\x25\x24\x20\x17\x16\x12\x1e\x23\x1f\x2c\x30\x30\x24\ \x2d\x2f\x1f\x23\x22\x1e\x20\x20\x20\x25\x24\x19\x20\x21\x1b\x21\ \x23\x1d\x21\x1f\x21\x28\x29\x20\x25\x29\x23\x27\x29\x23\x23\x27\ \x1a\x1b\x1b\x1d\x21\x1b\x18\x21\x1c\x21\x25\x1d\x23\x2b\x27\x22\ \x24\x20\x20\x22\x24\x22\x25\x24\x1a\x21\x1f\x22\x25\x26\x20\x24\ \x22\x18\x1a\x19\x1f\x24\x1a\x20\x22\x1d\x1e\x1d\x1d\x22\x28\x29\ \x1b\x1f\x1a\x1f\x24\x20\x1e\x1f\x1b\x22\x25\x28\x23\x24\x27\x27\ \x2e\x30\x00\x00\x00\x80\xb0\xce\x7f\xae\xcd\x81\xaf\xd0\x81\xad\ \xd2\x85\xae\xd4\x8a\xb0\xd4\x8b\xb1\xd3\x8a\xb0\xcf\x88\xab\xcc\ \x82\xa0\xc2\x6b\x81\xa2\x44\x55\x72\x33\x45\x63\x4b\x65\x83\x6e\ \x8f\xaf\x7f\xa2\xc4\x86\xa9\xcd\x8c\xad\xcf\x8f\xae\xd2\x8c\xaf\ \xd0\x8a\xb0\xcf\x89\xaf\xcf\x86\xac\xcd\x83\xa8\xcc\x87\xab\xd3\ \x85\xae\xd3\x81\xae\xd0\x7e\xa9\xcb\x7c\xa7\xca\x75\xa2\xc7\x75\ \xa0\xc5\x7a\x9f\xc4\x7f\xa2\xc6\x80\xa2\xc7\x81\xa1\xc7\x7c\x9e\ \xc4\x78\x9d\xc1\x79\x9b\xbe\x76\x94\xb7\x74\x8f\xb4\x75\x90\xb8\ \x7e\x9b\xc0\x84\xa3\xc8\x85\xa5\xd1\x83\xa1\xd2\x83\xa3\xd2\x85\ \xa6\xd5\x84\xa8\xd5\x80\xa6\xd1\x83\xa4\xd0\x85\xa5\xd2\x86\xa6\ \xd3\x8a\xa7\xd6\x89\xa4\xd4\x86\xa1\xd4\x80\x9d\xcf\x7a\x98\xca\ \x7a\x99\xcb\x7f\x9d\xcd\x7f\x9f\xcd\x79\x9c\xc6\x74\x97\xc3\x71\ \x94\xc0\x71\x96\xc3\x6f\x94\xc3\x6d\x8d\xc0\x6a\x8a\xba\x67\x86\ \xb5\x68\x87\xb6\x68\x89\xb8\x69\x8b\xbb\x69\x8f\xbe\x6c\x92\xbf\ \x70\x95\xc0\x71\x95\xc2\x75\x96\xc3\x7a\x9a\xc5\x7a\x9c\xc7\x78\ \x9d\xc7\x73\x9d\xc3\x6d\x9c\xbc\x68\x98\xb7\x6b\x96\xb7\x5f\x7e\ \x9f\x2e\x45\x62\x31\x47\x64\x55\x6e\x8b\x29\x44\x5e\x2e\x4a\x65\ \x63\x84\xa5\x73\x94\xb9\x77\x99\xbf\x72\x96\xbf\x72\x99\xbf\x7d\ \xa2\xc3\x7b\x92\xa1\x49\x53\x57\x34\x3a\x3e\x2e\x37\x36\x28\x2d\ \x2f\x27\x2e\x2f\x25\x2e\x33\x22\x2e\x2c\x1d\x27\x27\x23\x2a\x2a\ \x1e\x20\x20\x25\x22\x26\x24\x25\x22\x22\x22\x21\x22\x22\x1f\x20\ \x23\x1f\x21\x26\x27\x26\x29\x2d\x1d\x1c\x1c\x28\x2c\x2b\x1f\x28\ \x26\x25\x2a\x28\x1c\x1f\x17\x1f\x26\x22\x23\x27\x25\x1a\x25\x27\ \x1f\x26\x20\x1e\x26\x27\x1c\x21\x19\x13\x14\x10\x2c\x31\x2e\x27\ \x29\x23\x1c\x1b\x16\x16\x1a\x13\x2c\x37\x32\x22\x29\x29\x21\x23\ \x23\x1f\x2b\x29\x1e\x25\x26\x1e\x20\x21\x1a\x22\x1f\x1d\x22\x20\ \x22\x28\x28\x20\x1f\x1d\x23\x28\x22\x27\x2b\x2f\x1e\x1b\x17\x24\ \x22\x22\x20\x21\x21\x1b\x1d\x1f\x1d\x1c\x18\x1f\x24\x21\x20\x27\ \x25\x25\x2e\x2c\x28\x2c\x2a\x25\x2c\x2d\x20\x25\x1e\x1c\x21\x1f\ \x22\x24\x27\x1e\x23\x21\x25\x26\x22\x26\x24\x24\x1e\x1f\x1b\x25\ \x25\x22\x21\x26\x26\x2b\x33\x3a\x20\x24\x22\x1f\x20\x1b\x00\x00\ \x00\x7a\xab\xc4\x7c\xac\xc9\x7f\xaf\xcd\x81\xad\xd0\x83\xad\xd0\ \x8a\xb0\xd3\x8d\xb5\xd5\x89\xb3\xce\x85\xae\xc9\x89\xaf\xcd\x82\ \xa4\xc6\x73\x90\xb4\x68\x83\xa5\x71\x93\xb2\x80\xa6\xc5\x85\xac\ \xcd\x8a\xb1\xd3\x8d\xb4\xd0\x8e\xb4\xd1\x8f\xb6\xd1\x8c\xb4\xce\ \x8b\xb3\xcd\x86\xb1\xcb\x87\xaf\xd0\x8d\xb0\xd3\x88\xaf\xce\x83\ \xaf\xcd\x83\xac\xcb\x7f\xa9\xc9\x7c\xa7\xc7\x7c\xa7\xc6\x7d\xa6\ \xc4\x80\xaa\xc6\x87\xad\xcb\x89\xab\xca\x86\xa9\xca\x84\xa9\xcc\ \x84\xa9\xcb\x89\xaa\xd0\x8a\xa9\xd0\x87\xa7\xcd\x8e\xae\xcf\x94\ \xb2\xd2\x93\xb3\xd3\x8d\xb0\xd3\x88\xb1\xd6\x87\xb1\xd7\x85\xaf\ \xd6\x84\xad\xd2\x87\xad\xd2\x88\xaf\xd4\x8c\xb0\xd5\x8f\xb1\xd7\ \x90\xaf\xd7\x8e\xac\xd8\x89\xab\xd8\x86\xaa\xd6\x85\xa9\xd3\x87\ \xa8\xd2\x88\xa8\xd1\x83\xa5\xcb\x80\xa1\xcb\x7d\x9e\xca\x7a\xa0\ \xc9\x78\x9e\xc8\x74\x9a\xc4\x6f\x95\xbf\x70\x96\xc0\x70\x95\xbf\ \x6b\x92\xbd\x6a\x92\xc1\x6a\x92\xc5\x6b\x93\xc3\x6e\x94\xc0\x75\ \x95\xc5\x7b\x99\xc9\x7b\x99\xc7\x7c\x9a\xc8\x78\x9b\xc7\x72\x9c\ \xc4\x67\x96\xba\x63\x94\xb8\x64\x8d\xb5\x5b\x78\xa1\x34\x49\x6b\ \x1c\x2f\x4d\x37\x49\x64\x17\x2a\x43\x1b\x2e\x4c\x4e\x69\x8f\x5e\ \x7c\xa9\x69\x8a\xba\x6f\x92\xc0\x7b\x96\xb0\x5f\x6d\x71\x38\x47\ \x4b\x32\x3b\x3c\x2a\x2e\x2d\x27\x2d\x2e\x28\x2e\x2e\x27\x2e\x32\ \x24\x2f\x30\x21\x25\x23\x20\x26\x21\x24\x2a\x25\x20\x2c\x28\x26\ \x26\x25\x24\x28\x23\x21\x22\x20\x24\x26\x23\x23\x2a\x2c\x1e\x28\ \x26\x20\x28\x29\x1a\x21\x1b\x23\x22\x26\x1c\x23\x21\x25\x2a\x29\ \x23\x24\x24\x20\x26\x25\x1f\x27\x28\x21\x20\x21\x20\x25\x1f\x22\ \x28\x26\x18\x1f\x18\x18\x18\x13\x31\x37\x35\x2c\x30\x2c\x2c\x2d\ \x2f\x14\x17\x11\x23\x28\x27\x24\x2e\x31\x23\x27\x28\x1f\x28\x28\ \x20\x23\x20\x23\x2b\x28\x24\x23\x24\x1b\x21\x1c\x25\x24\x24\x18\ \x1d\x1a\x20\x1e\x1c\x22\x21\x26\x1c\x1e\x20\x23\x24\x22\x1c\x20\ \x1a\x24\x22\x1b\x19\x22\x1e\x1e\x28\x29\x28\x32\x34\x2b\x33\x36\ \x22\x29\x26\x23\x21\x1e\x25\x29\x28\x21\x27\x22\x25\x27\x25\x1c\ \x24\x1f\x1f\x22\x1a\x1d\x1e\x16\x20\x24\x24\x18\x1d\x1b\x1d\x27\ \x29\x26\x27\x2a\x27\x30\x32\x26\x2d\x2d\x00\x00\x00\x63\x90\xa8\ \x6d\x99\xb5\x7f\xab\xc8\x84\xaf\xcc\x84\xac\xcc\x88\xaf\xce\x83\ \xae\xc8\x7d\xa8\xbf\x82\xae\xc5\x86\xb2\xcc\x87\xaf\xcf\x80\xa3\ \xc5\x74\x95\xb5\x74\x9a\xb8\x88\xae\xcd\x8d\xb4\xd2\x8c\xb2\xd1\ \x88\xb0\xca\x84\xad\xc6\x82\xab\xc4\x7e\xa4\xbc\x7d\xa5\xba\x7e\ \xaa\xc2\x86\xb3\xcc\x8b\xb2\xcd\x8b\xb2\xcb\x85\xae\xc8\x82\xa9\ \xc6\x80\xa5\xc5\x78\xa0\xbc\x77\xa2\xbd\x7b\xa6\xc1\x82\xac\xc9\ \x8a\xaf\xcf\x93\xb2\xd1\x90\xb0\xcf\x8b\xae\xcf\x8e\xb1\xd2\x90\ \xb3\xd6\x8f\xb3\xd7\x8e\xb2\xd3\x91\xb6\xd3\x97\xb8\xd3\x97\xb6\ \xd2\x92\xb6\xd2\x8a\xb4\xd4\x84\xb2\xd3\x82\xb1\xd2\x82\xaf\xd0\ \x84\xae\xd0\x88\xb2\xd2\x8d\xb5\xd5\x94\xb7\xd8\x93\xb5\xd9\x8f\ \xb4\xd7\x8b\xb3\xd7\x87\xb4\xd6\x8a\xb2\xd6\x8b\xaf\xd3\x8b\xad\ \xd3\x89\xaa\xd1\x87\xa7\xd0\x87\xa8\xd0\x84\xa9\xcd\x80\xa7\xcb\ \x7b\xa2\xc6\x77\xa2\xc5\x79\xa6\xca\x7b\xa6\xca\x7b\xa4\xca\x78\ \xa2\xcc\x77\xa2\xcf\x75\xa2\xcc\x76\xa0\xc8\x80\xa3\xcd\x85\xa6\ \xcf\x85\xa8\xce\x86\xa8\xcd\x85\xa7\xcc\x7e\xa6\xc8\x78\xa4\xc6\ \x77\xa1\xc7\x77\x9c\xc7\x6d\x8d\xb7\x4a\x63\x86\x1c\x2f\x4b\x2d\ \x3d\x56\x19\x28\x42\x1d\x2e\x4d\x5b\x72\x9a\x71\x8b\xb8\x81\x93\ \xae\x60\x71\x71\x39\x46\x47\x35\x3e\x3d\x29\x35\x36\x25\x2b\x2e\ \x2b\x2e\x2d\x22\x2c\x2f\x1f\x28\x2a\x23\x2b\x27\x1e\x24\x22\x21\ \x24\x22\x21\x25\x25\x23\x28\x26\x21\x28\x1f\x21\x24\x24\x27\x27\ \x29\x23\x24\x24\x1e\x1f\x1f\x27\x31\x32\x22\x2b\x2b\x1e\x22\x20\ \x1f\x21\x20\x27\x2f\x30\x25\x2b\x28\x1f\x23\x1d\x21\x21\x22\x21\ \x27\x21\x28\x2e\x28\x20\x25\x1e\x1d\x1f\x1d\x21\x27\x27\x1a\x21\ \x1d\x15\x19\x16\x26\x29\x29\x29\x2d\x2b\x20\x25\x28\x13\x16\x13\ \x26\x2c\x29\x27\x36\x3d\x1b\x2a\x29\x1e\x23\x1c\x1e\x21\x20\x1c\ \x1f\x1c\x26\x23\x23\x1f\x24\x24\x26\x2a\x22\x1c\x1f\x1b\x20\x22\ \x1d\x20\x20\x1e\x1a\x22\x1c\x1f\x2a\x2d\x1c\x1d\x1d\x1c\x20\x1e\ \x1d\x20\x1e\x1c\x22\x22\x20\x20\x1c\x21\x21\x1c\x1f\x22\x20\x24\ \x25\x21\x20\x25\x23\x19\x21\x1e\x25\x2b\x27\x2d\x2e\x2e\x23\x25\ \x20\x22\x24\x24\x24\x2d\x2f\x1f\x27\x28\x21\x25\x23\x21\x25\x23\ \x1d\x28\x28\x1f\x2a\x2a\x00\x00\x00\x3b\x5c\x78\x52\x75\x95\x68\ \x8d\xaa\x75\x9c\xb5\x7e\xa4\xbf\x7a\xa1\xbb\x6b\x93\xa9\x5a\x7f\ \x92\x68\x8e\xa3\x80\xa9\xc1\x81\xa7\xc5\x6b\x8b\xa8\x44\x62\x7c\ \x53\x76\x91\x74\x9a\xb8\x7d\xa1\xc1\x7d\xa0\xbf\x7c\xa0\xbb\x6c\ \x91\xaa\x58\x7b\x93\x50\x6e\x85\x58\x79\x8d\x5d\x84\x9a\x67\x92\ \xa5\x7e\xa8\xbb\x8a\xb0\xc6\x86\xab\xc6\x81\xa1\xc0\x72\x90\xb0\ \x5c\x7b\x97\x61\x84\x9e\x76\x9d\xb8\x7f\xa6\xc5\x87\xa8\xca\x92\ \xaf\xce\x91\xaf\xd0\x8d\xae\xce\x8c\xaf\xce\x8a\xaf\xce\x89\xb2\ \xd2\x8d\xb4\xd3\x8d\xb4\xd2\x90\xb5\xd1\x92\xb3\xd0\x8f\xb1\xce\ \x8b\xb1\xcf\x88\xb2\xd0\x83\xb0\xd0\x80\xae\xd1\x80\xae\xd0\x84\ \xb3\xd1\x8c\xb8\xd3\x92\xb6\xd4\x93\xb2\xd3\x90\xb2\xd1\x8d\xb4\ \xd2\x8d\xb7\xd6\x91\xb7\xd8\x92\xb4\xd8\x8d\xaf\xd6\x86\xab\xd2\ \x83\xa5\xcd\x84\xa6\xcc\x84\xa7\xca\x7f\xa3\xc6\x7b\xa1\xc4\x78\ \xa4\xc5\x7b\xa9\xca\x80\xab\xcd\x84\xab\xcc\x81\xaa\xce\x7b\xaa\ \xcf\x77\xaa\xcc\x7a\xa9\xca\x85\xad\xcf\x8d\xb1\xd4\x8f\xb5\xd5\ \x8c\xb0\xcf\x8d\xaf\xcd\x8b\xae\xcc\x88\xae\xcd\x89\xae\xd2\x89\ \xac\xd3\x83\xa5\xca\x68\x85\xa5\x2b\x3f\x5b\x26\x36\x4e\x24\x35\ \x4f\x2c\x41\x60\x79\x8e\xaa\x74\x82\x89\x3d\x4a\x4a\x33\x3b\x3c\ \x29\x32\x35\x29\x30\x2c\x24\x31\x32\x22\x27\x27\x21\x29\x27\x2b\ \x31\x30\x28\x2c\x2d\x24\x30\x30\x23\x32\x30\x20\x28\x25\x26\x2b\ \x2a\x25\x2c\x2c\x26\x2b\x2b\x20\x26\x24\x22\x21\x21\x24\x25\x23\ \x1b\x22\x1f\x1e\x1d\x1c\x23\x25\x24\x1e\x23\x24\x1d\x21\x28\x22\ \x23\x27\x1f\x26\x23\x25\x27\x28\x27\x2b\x27\x22\x23\x1f\x21\x27\ \x20\x1f\x21\x1e\x23\x29\x25\x26\x2d\x32\x21\x27\x29\x1a\x1d\x1f\ \x1e\x1f\x20\x2a\x2f\x2a\x24\x2a\x28\x18\x19\x12\x20\x21\x21\x29\ \x32\x36\x21\x26\x27\x1e\x1f\x1d\x1f\x28\x29\x21\x23\x21\x23\x27\ \x25\x21\x22\x21\x21\x26\x20\x1d\x1b\x17\x23\x23\x21\x21\x22\x1e\ \x20\x27\x24\x21\x2f\x2c\x1c\x22\x21\x1e\x23\x20\x24\x2d\x31\x20\ \x29\x2a\x20\x2a\x2c\x1e\x1d\x1d\x1e\x1e\x1d\x1d\x20\x21\x21\x28\ \x26\x18\x1e\x18\x1c\x20\x1c\x1f\x21\x1d\x22\x1e\x1f\x20\x25\x1e\ \x20\x2b\x26\x1a\x21\x1c\x27\x29\x2b\x25\x2d\x2d\x25\x28\x25\x20\ \x27\x24\x00\x00\x00\x2e\x46\x63\x4c\x68\x88\x47\x66\x83\x42\x64\ \x7b\x54\x79\x8f\x5e\x83\x99\x4a\x6a\x7c\x2b\x46\x56\x47\x64\x75\ \x66\x86\x9f\x6f\x8d\xa8\x50\x69\x80\x24\x3c\x4f\x43\x62\x79\x67\ \x89\xa9\x5f\x7f\xa4\x44\x60\x80\x42\x5f\x78\x3c\x57\x6d\x23\x3a\ \x51\x35\x49\x62\x5b\x72\x8d\x5d\x79\x92\x43\x60\x74\x43\x60\x71\ \x6c\x8b\x9d\x81\xa0\xbb\x78\x93\xb3\x5b\x73\x90\x2b\x43\x59\x42\ \x5e\x71\x6f\x91\xa9\x6b\x8d\xab\x6a\x89\xa8\x77\x95\xb2\x7b\x9a\ \xb7\x71\x92\xae\x67\x89\xa4\x66\x8a\xa6\x74\x98\xb5\x8d\xb0\xcd\ \x8e\xb2\xcd\x88\xaf\xc7\x81\xa6\xbe\x82\xa0\xbd\x82\xa1\xc1\x83\ \xa6\xc6\x81\xa7\xc9\x81\xa9\xce\x82\xad\xd1\x83\xb2\xd1\x88\xb3\ \xce\x8b\xac\xca\x81\x9e\xba\x7d\x9d\xb4\x89\xad\xc5\x90\xb3\xd2\ \x97\xb5\xd8\x91\xae\xd1\x7d\x9e\xc1\x72\x97\xb9\x74\x99\xba\x79\ \x9c\xbd\x7f\x9f\xbf\x7c\x9b\xbc\x6e\x8e\xaf\x6b\x93\xb0\x79\xa5\ \xc2\x82\xaa\xc9\x86\xa9\xcb\x84\xa9\xcb\x7d\xa8\xca\x78\xa8\xc7\ \x7d\xad\xc9\x8b\xb1\xcf\x90\xb4\xd2\x8d\xb1\xcd\x8a\xac\xca\x8d\ \xad\xcc\x92\xb0\xd0\x90\xb1\xd2\x8f\xb1\xd3\x8e\xb1\xd4\x8b\xae\ \xcf\x79\x96\xb6\x43\x58\x76\x1e\x2f\x4b\x33\x47\x5e\x56\x68\x73\ \x45\x50\x53\x2e\x3b\x3a\x2d\x37\x37\x28\x32\x2f\x24\x2f\x33\x21\ \x2f\x2c\x1f\x2b\x2a\x29\x2e\x2c\x22\x28\x22\x23\x23\x21\x25\x29\ \x27\x20\x25\x24\x24\x27\x25\x22\x23\x23\x22\x25\x26\x25\x22\x1b\ \x29\x2e\x2f\x25\x2d\x29\x21\x28\x25\x20\x26\x2a\x1d\x20\x1e\x23\ \x23\x20\x1f\x23\x29\x24\x28\x2d\x20\x20\x24\x28\x27\x29\x21\x20\ \x1e\x20\x24\x21\x23\x23\x20\x1b\x20\x1a\x23\x28\x24\x24\x27\x2a\ \x24\x26\x22\x26\x26\x24\x1f\x23\x21\x21\x25\x24\x16\x14\x17\x31\ \x2f\x32\x24\x29\x2b\x1d\x20\x19\x1c\x1e\x1a\x2a\x2e\x2f\x23\x27\ \x23\x1d\x23\x23\x1b\x22\x24\x21\x24\x2a\x20\x23\x23\x1e\x2c\x32\ \x1a\x23\x1f\x19\x1c\x17\x1c\x20\x1b\x1c\x1f\x1d\x1d\x20\x1f\x20\ \x1c\x1a\x1d\x22\x1b\x22\x26\x25\x22\x27\x24\x23\x26\x23\x23\x2b\ \x29\x22\x1f\x22\x1f\x25\x23\x18\x20\x18\x1f\x22\x1f\x28\x2f\x30\ \x1e\x21\x1d\x24\x28\x24\x24\x2d\x31\x21\x22\x20\x1f\x25\x25\x23\ \x2e\x31\x1d\x1e\x20\x1f\x22\x1c\x20\x22\x1e\x23\x27\x22\x00\x00\ \x00\x31\x4a\x62\x58\x77\x95\x56\x7a\x97\x3e\x64\x7d\x31\x55\x6e\ \x2e\x50\x66\x26\x3f\x54\x1d\x34\x46\x4a\x67\x7a\x67\x87\x9f\x5c\ \x7b\x96\x32\x4d\x64\x1e\x35\x4a\x47\x63\x7c\x6e\x8d\xaf\x6b\x88\ \xaf\x51\x6c\x90\x38\x52\x6f\x1b\x31\x47\x0b\x1b\x2f\x32\x42\x5a\ \x71\x86\xa2\x6c\x84\x9f\x43\x56\x6d\x24\x39\x4a\x29\x40\x54\x4b\ \x64\x7f\x5a\x70\x8f\x4f\x62\x79\x1f\x31\x41\x32\x49\x57\x74\x91\ \xa7\x73\x92\xb0\x65\x85\xa1\x56\x75\x8f\x4a\x67\x7e\x39\x57\x6b\ \x2b\x49\x5e\x3e\x5d\x76\x54\x71\x8c\x61\x7c\x9a\x70\x8f\xa7\x6b\ \x8e\xa2\x57\x77\x8c\x50\x6b\x84\x5c\x77\x94\x6c\x8a\xac\x77\x95\ \xb8\x80\x9e\xc4\x83\xa6\xc9\x86\xaf\xce\x87\xaf\xcb\x81\xa0\xbe\ \x64\x7b\x98\x4c\x66\x7d\x75\x93\xad\x8f\xab\xcb\x90\xa9\xcb\x77\ \x92\xaf\x52\x6f\x89\x49\x69\x83\x4f\x71\x8d\x5e\x83\x9d\x6d\x8e\ \xa9\x6d\x8b\xa5\x49\x65\x7e\x40\x62\x78\x68\x8f\xa7\x80\xa4\xc1\ \x85\xa4\xc3\x7f\x9f\xbf\x72\x95\xb2\x71\x98\xb1\x79\xa3\xbb\x86\ \xab\xc4\x84\xa4\xbc\x70\x8f\xa5\x71\x94\xae\x82\xa5\xc4\x8f\xb1\ \xd0\x94\xb3\xd5\x93\xb4\xd7\x91\xb4\xd6\x8d\xaf\xce\x89\xa7\xc4\ \x70\x81\x91\x6c\x79\x7e\x4b\x58\x5d\x36\x40\x44\x2a\x36\x36\x2a\ \x2e\x33\x2e\x34\x3a\x3e\x4a\x50\x26\x31\x37\x29\x2b\x2a\x1f\x22\ \x20\x21\x28\x28\x23\x2f\x2c\x20\x22\x21\x26\x31\x32\x1e\x26\x28\ \x22\x25\x27\x22\x2a\x27\x20\x25\x22\x2a\x29\x25\x26\x2d\x2c\x22\ \x26\x26\x27\x2e\x31\x22\x2d\x30\x25\x2a\x2e\x22\x30\x33\x22\x28\ \x2b\x1f\x20\x1c\x28\x2d\x2a\x25\x26\x26\x29\x29\x26\x23\x25\x25\ \x22\x24\x21\x1d\x25\x24\x1c\x23\x1d\x26\x2a\x26\x1b\x22\x20\x1e\ \x23\x20\x24\x2c\x30\x23\x2a\x2f\x0f\x11\x0f\x2d\x29\x28\x27\x2a\ \x27\x1e\x24\x21\x17\x19\x15\x2b\x2c\x30\x22\x27\x27\x22\x21\x20\ \x1b\x20\x19\x21\x2b\x2d\x22\x2c\x2e\x21\x24\x24\x1d\x28\x27\x1c\ \x1e\x1c\x28\x25\x23\x23\x27\x29\x1d\x24\x22\x1d\x22\x1f\x21\x27\ \x24\x22\x25\x22\x1f\x1c\x1a\x1f\x20\x1d\x1b\x1f\x19\x22\x25\x20\ \x21\x20\x1d\x20\x23\x25\x1e\x2b\x2f\x1e\x26\x26\x20\x26\x23\x2c\ \x2c\x31\x1a\x23\x24\x1f\x29\x27\x22\x28\x26\x26\x2f\x32\x23\x26\ \x28\x23\x20\x20\x18\x18\x17\x20\x23\x20\x00\x00\x00\x3d\x5b\x73\ \x60\x85\xa2\x6e\x9a\xba\x67\x94\xb2\x5c\x84\xa0\x4d\x6e\x8a\x37\ \x51\x6d\x3a\x56\x6e\x60\x84\x9b\x74\x9b\xb4\x6a\x90\xab\x4e\x71\ \x8b\x3e\x5d\x78\x51\x6d\x8c\x72\x92\xb3\x7d\x9d\xc0\x76\x96\xbb\ \x61\x80\xa1\x3b\x53\x6b\x0d\x1c\x2f\x1e\x30\x42\x4a\x64\x7a\x5c\ \x76\x8f\x3b\x4e\x68\x23\x34\x4c\x27\x3b\x55\x3c\x53\x71\x4b\x60\ \x7f\x41\x52\x6a\x26\x37\x48\x2b\x40\x4e\x6e\x89\xa0\x88\xa9\xc6\ \x7a\xa1\xbb\x6d\x92\xa9\x50\x6f\x82\x25\x3f\x4f\x10\x29\x39\x3f\ \x5b\x71\x67\x83\x9f\x6c\x88\xa4\x55\x72\x8c\x3a\x5a\x6d\x23\x3f\ \x4f\x1f\x38\x4a\x41\x5d\x75\x5f\x7d\x9c\x64\x7f\xa3\x62\x7a\x9f\ \x78\x95\xb7\x84\xa9\xc6\x82\xa8\xc2\x7b\x98\xb3\x5a\x6d\x89\x28\ \x3a\x54\x55\x6a\x87\x7e\x97\xb6\x81\x99\xb6\x57\x6e\x86\x2d\x48\ \x5e\x49\x67\x80\x4f\x71\x8e\x40\x65\x7f\x47\x68\x81\x57\x72\x88\ \x2c\x40\x53\x1c\x31\x45\x4d\x69\x80\x6f\x8e\xa7\x77\x94\xb0\x6b\ \x89\xa4\x4f\x6b\x83\x43\x5f\x74\x61\x82\x95\x7b\x9a\xae\x66\x81\ \x91\x38\x51\x61\x4a\x6c\x81\x72\x9b\xb5\x89\xb0\xcf\x93\xb5\xd6\ \x96\xb5\xd8\x93\xb5\xd6\x8f\xb2\xce\x8f\x9e\xa5\x30\x3a\x3f\x3f\ \x46\x48\x2f\x39\x3f\x27\x2f\x31\x25\x30\x30\x23\x2f\x2f\x26\x33\ \x34\x31\x3c\x37\x25\x2a\x29\x26\x28\x25\x28\x2a\x2b\x27\x27\x26\ \x21\x27\x28\x21\x26\x27\x29\x2b\x30\x23\x2d\x2d\x2c\x2b\x30\x25\ \x24\x24\x22\x21\x1c\x21\x29\x25\x25\x2a\x27\x26\x24\x20\x20\x24\ \x26\x23\x23\x27\x1e\x23\x25\x23\x28\x2a\x21\x24\x28\x24\x24\x23\ \x2a\x32\x32\x1d\x1e\x1e\x25\x29\x25\x1f\x22\x1f\x22\x28\x23\x20\ \x25\x24\x23\x1f\x1e\x25\x25\x21\x1e\x22\x1e\x21\x22\x20\x24\x2c\ \x2e\x23\x26\x2a\x17\x16\x12\x28\x2b\x27\x22\x25\x26\x1c\x23\x25\ \x1b\x1c\x1b\x24\x29\x2a\x23\x2d\x2d\x22\x29\x26\x1d\x25\x1f\x29\ \x33\x37\x1f\x21\x1f\x22\x22\x1e\x21\x26\x21\x1f\x21\x23\x24\x33\ \x36\x22\x27\x28\x19\x1e\x1d\x1e\x2a\x28\x1c\x1c\x20\x22\x28\x2c\ \x20\x24\x26\x1c\x23\x21\x1f\x1e\x1d\x20\x21\x1e\x24\x31\x2e\x24\ \x2b\x2b\x2a\x38\x3c\x24\x31\x2d\x20\x24\x21\x22\x2e\x2b\x14\x1c\ \x18\x1c\x21\x1f\x1a\x1b\x17\x20\x23\x1f\x19\x1e\x1a\x1a\x1c\x1e\ \x26\x28\x25\x1b\x24\x19\x00\x00\x00\x6b\x8c\xa8\x73\x9c\xbb\x7e\ \xad\xcd\x7c\xac\xcb\x77\xa6\xc5\x70\x98\xb9\x69\x89\xab\x6e\x8e\ \xae\x7a\xa0\xbd\x7c\xa7\xc4\x75\xa4\xc2\x6a\x98\xb6\x65\x8d\xb0\ \x6c\x8f\xb5\x77\x9d\xbf\x80\xa6\xc9\x82\xaa\xcf\x79\xa0\xc2\x5c\ \x79\x94\x1c\x2d\x40\x16\x25\x35\x39\x51\x63\x42\x5d\x73\x54\x68\ \x83\x53\x67\x83\x61\x79\x96\x72\x8d\xac\x75\x8f\xb1\x67\x80\x9e\ \x52\x68\x81\x48\x5f\x75\x67\x85\x9d\x8c\xb1\xcd\x87\xb2\xcb\x7d\ \xa5\xba\x67\x85\x98\x33\x48\x56\x0a\x1b\x28\x3c\x55\x67\x78\x98\ \xb0\x84\xa5\xc3\x76\x95\xb4\x4f\x6c\x84\x1a\x32\x42\x10\x25\x33\ \x3b\x55\x68\x6a\x88\xa7\x6f\x8d\xaf\x65\x7e\xa2\x59\x73\x94\x6d\ \x89\xa6\x71\x8f\xaa\x6f\x89\xa1\x51\x61\x7a\x1d\x2b\x44\x2b\x3d\ \x59\x4e\x64\x80\x62\x76\x91\x3d\x4f\x65\x31\x48\x5e\x62\x81\x9e\ \x6e\x95\xb4\x5c\x82\xa1\x43\x62\x7f\x34\x47\x62\x1e\x28\x3d\x0f\ \x1a\x2e\x30\x46\x5c\x45\x61\x78\x4d\x6d\x83\x45\x63\x7a\x29\x40\ \x57\x21\x34\x48\x3b\x52\x62\x57\x70\x7d\x40\x55\x60\x17\x2b\x3c\ \x45\x65\x79\x72\x9b\xb4\x84\xad\xcb\x8f\xb5\xd5\x93\xb4\xd6\x96\ \xb2\xcd\x73\x83\x86\x35\x49\x48\x32\x3d\x3e\x28\x33\x33\x26\x2f\ \x35\x25\x27\x2a\x2a\x30\x32\x23\x2d\x2f\x25\x2c\x31\x20\x2c\x2a\ \x26\x2f\x27\x24\x2a\x27\x24\x29\x24\x23\x24\x20\x2c\x33\x31\x24\ \x25\x23\x27\x2d\x2e\x22\x2b\x2b\x1f\x24\x20\x1e\x22\x1c\x1e\x27\ \x20\x24\x2d\x2b\x22\x22\x28\x2a\x2e\x2b\x22\x28\x29\x25\x2d\x32\ \x1c\x29\x2b\x2c\x35\x37\x23\x2a\x30\x1e\x1f\x1e\x28\x2e\x2b\x1f\ \x23\x20\x2b\x31\x2e\x1f\x22\x1e\x25\x28\x21\x22\x22\x1a\x28\x2a\ \x27\x25\x27\x23\x21\x27\x22\x2a\x32\x30\x1d\x23\x21\x1c\x23\x29\ \x1d\x24\x24\x1d\x1d\x1a\x27\x2b\x27\x22\x25\x28\x1b\x1c\x1e\x1f\ \x27\x26\x25\x2d\x2d\x22\x24\x23\x22\x20\x24\x22\x20\x1f\x20\x24\ \x26\x1e\x21\x1e\x20\x23\x21\x21\x27\x29\x1e\x25\x22\x21\x25\x25\ \x23\x2b\x2c\x1d\x29\x2e\x1a\x21\x25\x20\x28\x2c\x25\x2e\x34\x17\ \x1d\x1b\x25\x27\x28\x22\x2a\x2d\x1b\x24\x29\x20\x23\x29\x24\x26\ \x27\x18\x1e\x19\x1d\x23\x22\x1d\x1d\x1f\x21\x25\x26\x20\x25\x23\ \x20\x21\x21\x28\x27\x27\x21\x24\x1f\x1a\x1b\x19\x1f\x1d\x1b\x28\ \x25\x24\x00\x00\x00\x87\xab\xca\x83\xac\xcd\x83\xb2\xd2\x83\xb1\ \xd2\x81\xae\xd1\x7c\xa9\xce\x7e\xa3\xc9\x83\xa4\xca\x85\xa9\xcb\ \x80\xa8\xcb\x79\xa7\xc8\x76\xa6\xc8\x75\xa3\xc8\x79\xa4\xc9\x7c\ \xa7\xca\x83\xab\xd0\x85\xb0\xd6\x81\xac\xd0\x72\x93\xb1\x36\x4b\ \x5f\x1b\x2c\x3b\x4c\x63\x76\x4c\x62\x7c\x52\x67\x83\x73\x8d\xa6\ \x82\xa3\xbb\x8c\xb1\xcb\x8d\xb3\xd0\x86\xaa\xca\x7a\x9b\xba\x75\ \x94\xb1\x7c\x9f\xbc\x8d\xb2\xcf\x8c\xb2\xcf\x84\xac\xc3\x75\x93\ \xa9\x41\x53\x64\x09\x15\x23\x2d\x3f\x51\x5b\x75\x8b\x85\xa5\xc1\ \x88\xaa\xca\x78\x96\xb5\x4c\x65\x7c\x1b\x2f\x42\x32\x48\x5f\x6a\ \x89\xa7\x78\x99\xbc\x6d\x87\xab\x45\x57\x79\x34\x46\x64\x41\x54\ \x6f\x43\x57\x70\x38\x4b\x65\x2b\x40\x5a\x38\x50\x6b\x3c\x55\x71\ \x35\x4c\x68\x29\x3e\x57\x2c\x45\x5e\x65\x87\xa6\x80\xab\xcd\x7c\ \xa4\xc7\x6b\x8b\xae\x45\x58\x77\x1c\x26\x3c\x0c\x18\x2c\x3e\x58\ \x6e\x5a\x7d\x95\x56\x7c\x94\x4b\x6f\x87\x39\x52\x6e\x37\x49\x63\ \x3f\x54\x68\x3a\x52\x62\x2c\x41\x54\x1f\x35\x4e\x4e\x6b\x87\x7e\ \xa3\xbe\x87\xb0\xcc\x9a\xb9\xce\x85\x97\xa2\x51\x5b\x60\x3a\x43\ \x4b\x30\x3c\x41\x34\x41\x3e\x23\x2f\x2f\x2b\x30\x34\x20\x27\x28\ \x24\x2c\x2a\x30\x3a\x3a\x2b\x2d\x29\x22\x21\x1b\x2c\x32\x2e\x28\ \x31\x32\x23\x26\x24\x25\x28\x27\x24\x24\x23\x26\x25\x25\x28\x2d\ \x2d\x25\x33\x35\x20\x23\x22\x21\x28\x22\x2a\x35\x36\x25\x2e\x2e\ \x27\x2a\x27\x26\x2a\x28\x2f\x37\x38\x21\x29\x2e\x21\x27\x2d\x2c\ \x38\x38\x27\x2a\x2a\x22\x21\x21\x29\x2b\x2d\x24\x28\x29\x1f\x1e\ \x1e\x22\x23\x21\x26\x28\x27\x1d\x1e\x1f\x24\x29\x27\x26\x27\x2a\ \x1f\x20\x20\x21\x25\x22\x22\x26\x27\x25\x2a\x2f\x1a\x1e\x21\x1c\ \x1f\x1f\x2f\x2d\x2f\x20\x26\x25\x1c\x1c\x1b\x1f\x23\x24\x2a\x35\ \x37\x2c\x37\x36\x29\x2e\x2c\x21\x23\x21\x21\x28\x29\x1f\x23\x1d\ \x25\x28\x27\x25\x2c\x2d\x29\x37\x37\x1f\x1f\x1a\x24\x27\x24\x1f\ \x26\x25\x22\x2d\x2c\x17\x1e\x1a\x20\x24\x26\x21\x28\x24\x1f\x24\ \x25\x20\x24\x25\x25\x33\x36\x20\x24\x26\x1d\x22\x21\x1e\x29\x27\ \x1e\x21\x1f\x23\x2e\x2f\x23\x29\x2b\x2d\x31\x34\x22\x22\x22\x27\ \x25\x26\x21\x21\x1f\x1f\x1a\x15\x23\x21\x1f\x28\x26\x27\x00\x00\ \x00\x8b\xaf\xd1\x86\xb1\xd2\x82\xb1\xd1\x82\xb0\xd2\x82\xaf\xd3\ \x7d\xab\xd0\x7c\xa5\xcb\x7e\xa1\xc7\x7f\xa1\xc4\x7a\xa0\xc2\x79\ \xa2\xc5\x7a\xa7\xcb\x7c\xab\xd0\x7d\xab\xcf\x84\xaf\xd2\x85\xaf\ \xd3\x85\xaf\xd6\x81\xad\xd1\x79\xa1\xc0\x50\x6e\x82\x1d\x36\x44\ \x53\x6f\x7f\x69\x83\x9b\x3f\x57\x70\x5f\x7e\x91\x84\xab\xbe\x8a\ \xb6\xcc\x8f\xba\xd4\x88\xb4\xd3\x83\xaf\xce\x80\xab\xca\x81\xac\ \xcb\x8b\xb2\xd2\x8d\xb1\xcf\x87\xad\xc8\x84\xa1\xbb\x51\x61\x76\ \x0a\x15\x25\x29\x38\x49\x39\x4e\x63\x67\x82\x9b\x8c\xad\xca\x88\ \xaa\xca\x7c\x99\xb8\x5b\x71\x8f\x4d\x66\x85\x6c\x8e\xaf\x7f\x9f\ \xc1\x6a\x81\xa5\x31\x40\x61\x14\x22\x3f\x18\x28\x41\x37\x4b\x64\ \x4e\x69\x84\x5c\x7d\x99\x68\x8e\xa8\x6c\x8e\xac\x5e\x7b\x9a\x47\ \x61\x80\x45\x5f\x7e\x6d\x8f\xaf\x86\xad\xcf\x8a\xaf\xd3\x81\xa2\ \xc8\x6f\x88\xa9\x3d\x4c\x67\x12\x23\x37\x44\x64\x77\x70\x9c\xb2\ \x6f\xa0\xb7\x6c\x9c\xb3\x68\x8f\xab\x6d\x8b\xa6\x6f\x88\xa3\x65\ \x7e\x99\x52\x6c\x8a\x4f\x6b\x8d\x6a\x8b\xaa\x8e\xaf\xc6\x83\x93\ \x99\x4f\x5b\x5e\x3d\x44\x4f\x37\x42\x43\x35\x3d\x44\x2a\x36\x3a\ \x1f\x2b\x29\x22\x32\x31\x1d\x25\x25\x22\x27\x28\x22\x23\x22\x2c\ \x2f\x31\x24\x27\x20\x23\x1d\x17\x29\x2b\x2a\x2a\x2f\x2f\x2b\x2d\ \x30\x1e\x21\x1c\x2c\x28\x2a\x27\x26\x22\x24\x25\x23\x1e\x29\x27\ \x22\x27\x26\x25\x2d\x28\x1e\x25\x21\x1f\x1e\x1e\x20\x24\x1f\x24\ \x22\x22\x26\x2e\x31\x23\x25\x25\x23\x20\x1c\x2a\x27\x25\x26\x28\ \x28\x25\x27\x24\x27\x2a\x28\x23\x28\x23\x22\x23\x22\x29\x2b\x27\ \x26\x2a\x2a\x2c\x34\x37\x25\x30\x2b\x23\x2c\x2b\x27\x2d\x2d\x26\ \x2b\x2c\x20\x22\x20\x20\x27\x27\x19\x1c\x1a\x1b\x17\x15\x2c\x2c\ \x2b\x20\x28\x24\x1e\x26\x20\x19\x1d\x1a\x24\x2a\x2a\x23\x2f\x32\ \x21\x2f\x31\x1e\x24\x22\x1c\x1d\x1c\x21\x23\x1e\x1e\x23\x20\x21\ \x21\x1d\x21\x25\x1d\x26\x27\x26\x31\x36\x30\x28\x2b\x24\x1e\x20\ \x1a\x1a\x1e\x18\x1c\x1f\x23\x1d\x23\x21\x23\x22\x21\x25\x2d\x2b\ \x21\x27\x24\x1c\x1f\x1d\x27\x2a\x24\x23\x26\x24\x1e\x22\x1c\x11\ \x17\x16\x1c\x1d\x1c\x1e\x22\x1b\x19\x1b\x14\x20\x24\x22\x1b\x1e\ \x1c\x20\x1e\x1b\x25\x24\x20\x26\x26\x24\x00\x00\x00\x88\xae\xcd\ \x85\xae\xcf\x80\xaf\xcf\x7f\xaf\xd0\x7f\xae\xcd\x7b\xaa\xca\x78\ \xa4\xc6\x77\x9e\xc1\x77\x9d\xbf\x78\x9e\xc0\x7b\xa2\xc4\x7a\xa8\ \xca\x78\xaa\xcc\x7b\xac\xcb\x80\xae\xca\x7e\xaa\xc8\x7e\xa8\xcc\ \x7a\xa6\xcb\x76\xa3\xc2\x60\x87\x9c\x24\x45\x52\x38\x57\x64\x6c\ \x8a\x9c\x44\x62\x72\x3f\x61\x6e\x7b\xa5\xb5\x89\xb7\xcd\x8b\xba\ \xd4\x85\xb4\xd3\x7f\xae\xcc\x7a\xad\xc7\x7f\xad\xcc\x87\xb1\xd0\ \x8c\xb2\xcf\x8a\xb0\xcc\x8b\xa8\xc5\x5b\x71\x86\x0f\x1e\x2c\x29\ \x39\x47\x3d\x50\x63\x40\x5a\x71\x7f\xa0\xbb\x8b\xaf\xcd\x89\xac\ \xce\x83\xa2\xc6\x7b\x9c\xbe\x80\xa6\xc6\x84\xa4\xc4\x60\x76\x96\ \x27\x34\x55\x25\x33\x4f\x25\x38\x4f\x3d\x56\x6f\x6d\x90\xab\x7f\ \xa9\xc7\x86\xb4\xcf\x86\xb2\xcd\x80\xa7\xc7\x7a\x9c\xbd\x78\x98\ \xb9\x84\xa6\xc7\x8c\xb0\xd1\x8f\xb2\xd4\x8b\xae\xcf\x84\xa3\xc2\ \x61\x78\x91\x1c\x30\x42\x3b\x5c\x6a\x7a\xa5\xba\x7a\xad\xc4\x73\ \xab\xc3\x73\xa6\xc2\x80\xa6\xc3\x82\xa1\xbe\x83\xa0\xc2\x7d\x9b\ \xc1\x83\xa2\xc3\x87\x9e\xab\x5e\x6f\x6e\x3b\x45\x47\x36\x3f\x45\ \x33\x40\x45\x2a\x35\x38\x2b\x30\x36\x29\x33\x36\x24\x34\x37\x23\ \x2a\x2b\x24\x29\x25\x28\x2c\x26\x22\x1e\x1c\x2f\x35\x36\x29\x30\ \x30\x1e\x20\x1d\x2c\x30\x31\x2b\x38\x39\x26\x2f\x2f\x28\x2b\x2d\ \x2e\x32\x34\x2b\x30\x31\x25\x29\x27\x25\x2c\x2a\x21\x28\x29\x22\ \x26\x27\x22\x24\x23\x25\x26\x23\x2c\x29\x29\x21\x23\x1d\x27\x37\ \x3b\x2a\x35\x3d\x1e\x26\x23\x2a\x30\x2e\x23\x27\x25\x21\x24\x25\ \x28\x29\x2c\x27\x2b\x2b\x25\x32\x33\x21\x2b\x29\x20\x21\x1d\x28\ \x30\x32\x21\x2a\x29\x22\x23\x1e\x22\x21\x20\x23\x1e\x20\x1f\x21\ \x1d\x1e\x20\x22\x22\x24\x20\x15\x17\x10\x26\x29\x28\x2a\x2e\x2d\ \x20\x27\x27\x17\x17\x16\x27\x2e\x2c\x2a\x30\x33\x22\x28\x29\x1e\ \x23\x25\x1c\x21\x21\x23\x28\x23\x20\x26\x21\x1c\x24\x23\x1c\x20\ \x1f\x1f\x1e\x1e\x1c\x1f\x1a\x1e\x1a\x16\x1f\x23\x23\x22\x26\x29\ \x23\x2e\x2c\x1a\x1e\x1b\x1a\x1f\x1d\x1b\x21\x1e\x1f\x26\x23\x1e\ \x20\x1f\x1e\x1e\x20\x20\x20\x1d\x1e\x1c\x19\x1c\x1e\x1d\x21\x23\ \x24\x1d\x22\x1d\x1b\x19\x15\x1d\x1e\x1e\x1d\x1f\x1e\x1d\x1e\x1e\ \x24\x21\x21\x24\x25\x23\x00\x00\x00\x80\xab\xc8\x81\xaa\xcc\x7e\ \xab\xd0\x78\xac\xce\x75\xa9\xca\x73\xa6\xc5\x70\xa3\xc3\x71\x9f\ \xc2\x75\xa1\xc6\x78\xa3\xc5\x79\xa6\xc7\x76\xa9\xca\x72\xaa\xca\ \x6f\xa6\xc1\x6b\x9d\xb4\x68\x94\xae\x6a\x94\xb4\x69\x95\xb8\x6d\ \x98\xba\x66\x8d\xa9\x3f\x5f\x72\x1d\x3a\x48\x49\x66\x75\x3a\x58\ \x66\x27\x4a\x56\x6f\x9a\xa9\x89\xba\xd1\x84\xb6\xd2\x7f\xb2\xd0\ \x77\xa9\xc3\x6e\xa2\xb8\x72\xa3\xbb\x7d\xa8\xc3\x86\xae\xca\x88\ \xae\xca\x89\xac\xc6\x64\x81\x95\x1b\x30\x3e\x1c\x2c\x3b\x28\x3c\ \x4f\x2d\x4a\x61\x71\x95\xb0\x89\xb2\xd1\x84\xb0\xd2\x86\xac\xd2\ \x8a\xae\xd0\x88\xad\xcf\x84\xa1\xc3\x53\x66\x85\x1e\x2d\x48\x3d\ \x50\x68\x3d\x55\x6d\x36\x53\x6c\x73\x98\xb5\x8b\xb3\xd3\x8b\xb8\ \xd7\x84\xb4\xd2\x85\xb3\xd1\x88\xb1\xd1\x8c\xaf\xcf\x8e\xb2\xd3\ \x8f\xb4\xd6\x8d\xb2\xd3\x8a\xaf\xcf\x88\xad\xcb\x70\x8d\xa5\x26\ \x3d\x4c\x2c\x48\x54\x79\x9e\xb4\x80\xaf\xcb\x79\xae\xcb\x7c\xaf\ \xce\x81\xae\xcd\x84\xaa\xc8\x89\xa8\xca\x8f\x9f\xae\x69\x71\x76\ \x44\x49\x51\x3a\x48\x4a\x31\x3e\x3f\x30\x3a\x3e\x2b\x33\x36\x2f\ \x34\x33\x2e\x39\x41\x2f\x38\x3b\x24\x30\x33\x21\x27\x26\x25\x24\ \x22\x25\x27\x27\x1a\x1d\x1b\x36\x34\x39\x26\x2a\x29\x1d\x24\x23\ \x2d\x33\x2f\x2f\x3a\x3e\x26\x2e\x2c\x22\x2c\x2a\x1f\x27\x28\x28\ \x28\x29\x23\x25\x1f\x24\x2b\x2a\x27\x2b\x2e\x2a\x28\x26\x1f\x20\ \x1e\x25\x29\x26\x23\x27\x23\x1e\x25\x21\x27\x2d\x2e\x25\x29\x2f\ \x20\x22\x23\x26\x2e\x31\x26\x33\x38\x1f\x24\x22\x24\x26\x21\x25\ \x2c\x2b\x24\x2e\x30\x26\x29\x27\x26\x29\x26\x26\x2c\x2a\x24\x2f\ \x2c\x28\x27\x28\x25\x27\x25\x26\x2a\x24\x24\x27\x21\x1f\x21\x20\ \x1f\x20\x1e\x17\x19\x13\x24\x25\x24\x29\x2a\x29\x21\x21\x1e\x1b\ \x14\x13\x30\x34\x36\x23\x24\x23\x28\x2c\x2a\x25\x28\x25\x25\x29\ \x27\x1f\x22\x20\x27\x2b\x2b\x20\x27\x20\x1f\x21\x25\x25\x29\x26\ \x1f\x20\x1b\x1a\x1d\x19\x1d\x25\x22\x28\x2c\x2b\x21\x25\x28\x21\ \x26\x2a\x1d\x28\x29\x1f\x23\x25\x23\x2b\x27\x23\x23\x24\x1a\x21\ \x1c\x22\x25\x22\x1d\x22\x1d\x20\x25\x22\x1e\x23\x1e\x24\x21\x1f\ \x23\x26\x28\x2b\x25\x24\x23\x2a\x21\x1b\x21\x1d\x1f\x1c\x18\x1d\ \x1e\x13\x00\x00\x00\x79\xa7\xc4\x7b\xa7\xca\x7a\xaa\xcf\x75\xa9\ \xce\x73\xa6\xcc\x71\xa5\xc9\x6e\xa5\xc7\x70\xa5\xc8\x70\xa3\xc8\ \x75\xa2\xc8\x76\xa4\xca\x73\xa6\xca\x69\xa0\xc2\x5b\x8d\xa9\x47\ \x73\x8a\x41\x69\x83\x3f\x68\x87\x48\x6f\x91\x51\x77\x99\x5a\x7e\ \x99\x50\x6e\x82\x21\x39\x49\x1b\x2f\x3f\x1c\x32\x41\x1a\x37\x46\ \x66\x8d\xa0\x89\xb7\xd0\x83\xb2\xd1\x7b\xab\xca\x69\x99\xb4\x54\ \x80\x95\x50\x76\x89\x64\x88\x9f\x77\x9d\xb8\x81\xa9\xc6\x7f\xaa\ \xc4\x6c\x91\xa8\x33\x4d\x61\x0f\x20\x32\x15\x28\x3d\x37\x57\x71\ \x77\x9e\xbc\x87\xb2\xd4\x7f\xac\xd1\x7f\xa9\xce\x84\xaa\xcd\x82\ \xa8\xc9\x77\x95\xb7\x3d\x50\x6c\x13\x22\x38\x4b\x60\x74\x49\x62\ \x78\x31\x51\x69\x72\x99\xb4\x8c\xb4\xd2\x8c\xb4\xd3\x84\xb1\xd0\ \x86\xb1\xd1\x8d\xb5\xd4\x92\xb6\xd6\x8f\xb6\xd7\x8e\xb5\xda\x8c\ \xb1\xd5\x88\xae\xd0\x84\xaa\xcc\x74\x95\xb0\x29\x41\x52\x1c\x36\ \x43\x6e\x91\xa9\x7f\xaa\xcb\x7d\xac\xcc\x85\xb2\xd1\x87\xb1\xd0\ \x8e\xad\xc4\x73\x7f\x80\x3c\x49\x4c\x3e\x4a\x4f\x3a\x47\x48\x32\ \x41\x42\x2d\x37\x39\x26\x2f\x30\x2b\x35\x37\x2b\x3b\x3c\x28\x2e\ \x2d\x2c\x37\x39\x29\x35\x36\x24\x23\x1f\x28\x2f\x29\x21\x29\x28\ \x1c\x1b\x18\x33\x38\x31\x29\x30\x26\x20\x24\x21\x27\x2f\x2b\x2d\ \x33\x37\x26\x2f\x30\x2a\x36\x38\x28\x2e\x28\x2b\x2c\x2c\x20\x25\ \x26\x21\x24\x21\x24\x2c\x28\x21\x22\x1e\x25\x25\x25\x2b\x31\x31\ \x29\x30\x30\x20\x2c\x27\x28\x37\x35\x26\x39\x3c\x28\x2a\x2b\x27\ \x2d\x30\x2b\x32\x32\x25\x2c\x27\x28\x2c\x2c\x2d\x34\x34\x24\x2f\ \x2c\x1f\x21\x1e\x25\x2a\x27\x23\x2c\x2d\x24\x22\x23\x21\x26\x24\ \x23\x25\x22\x21\x21\x1e\x24\x26\x21\x22\x27\x22\x1f\x21\x1b\x12\ \x16\x0f\x23\x2d\x29\x29\x2b\x28\x23\x26\x26\x18\x14\x14\x2c\x34\ \x37\x2b\x2c\x2a\x28\x26\x23\x22\x24\x26\x1a\x1d\x1d\x1d\x24\x1e\ \x22\x27\x24\x1e\x23\x1f\x22\x29\x25\x1e\x1e\x1b\x1e\x21\x19\x1a\ \x1d\x1a\x1c\x20\x1c\x22\x27\x28\x1d\x27\x2c\x21\x31\x35\x24\x2a\ \x28\x21\x25\x24\x22\x1d\x1c\x24\x26\x22\x22\x22\x20\x23\x23\x20\ \x25\x28\x25\x22\x27\x22\x1e\x24\x23\x23\x24\x21\x1f\x22\x1f\x24\ \x26\x26\x22\x23\x1f\x1e\x1c\x16\x24\x24\x24\x1f\x1c\x19\x00\x00\ \x00\x6f\x9b\xbf\x70\x9c\xc3\x74\xa1\xcc\x6e\x9f\xca\x72\x9e\xcb\ \x70\x9c\xca\x6d\x9e\xc9\x6a\x9e\xc8\x6b\x9d\xc7\x6f\x9c\xc6\x70\ \x9e\xc9\x6b\x9a\xc4\x61\x8a\xb0\x3f\x60\x81\x20\x40\x5c\x35\x57\ \x78\x42\x66\x8b\x4a\x6c\x93\x4b\x69\x8d\x42\x60\x7b\x3b\x56\x67\ \x26\x3a\x47\x08\x16\x21\x03\x0f\x1b\x16\x2d\x3d\x61\x84\x9a\x87\ \xaf\xcb\x83\xad\xcd\x7b\xa8\xc7\x61\x8c\xac\x37\x5d\x76\x26\x46\ \x5b\x37\x55\x6f\x5c\x7d\x9f\x7a\xa2\xc3\x7b\xa8\xc6\x72\x9a\xb7\ \x59\x76\x93\x31\x46\x62\x31\x47\x63\x59\x79\x97\x84\xaa\xca\x89\ \xad\xd1\x84\xac\xd0\x81\xa9\xcd\x7b\xa1\xc6\x75\x9a\xbf\x65\x84\ \xa4\x2d\x43\x5a\x0a\x18\x29\x3c\x4c\x5d\x38\x4d\x62\x3d\x59\x72\ \x77\x9d\xb9\x89\xb1\xd1\x8a\xb0\xd1\x88\xb0\xd2\x8d\xb3\xd6\x92\ \xb5\xd6\x93\xb6\xd6\x91\xb4\xd6\x8f\xb2\xd7\x8c\xad\xd4\x84\xa8\ \xcf\x81\xa4\xc9\x70\x8c\xab\x27\x3a\x4e\x12\x28\x39\x62\x83\x9e\ \x7a\xa3\xc6\x85\xaa\xcd\x94\xb0\xc8\x74\x8b\x95\x47\x55\x58\x3a\ \x45\x49\x3e\x46\x4a\x34\x40\x40\x2a\x34\x36\x2d\x34\x33\x25\x2c\ \x2d\x26\x2f\x32\x26\x2e\x32\x22\x2b\x24\x2c\x31\x2e\x2d\x3b\x3b\ \x2e\x3a\x37\x2a\x2a\x2b\x2d\x32\x35\x27\x2f\x36\x1c\x1f\x1c\x2a\ \x2f\x2a\x2c\x2f\x2c\x24\x28\x1e\x22\x24\x24\x2e\x33\x31\x24\x29\ \x26\x2b\x2d\x2b\x28\x2f\x34\x27\x31\x32\x22\x21\x22\x29\x30\x2f\ \x28\x2e\x31\x21\x27\x23\x27\x2a\x2d\x29\x28\x28\x1f\x26\x25\x25\ \x26\x24\x27\x2e\x32\x20\x25\x26\x23\x22\x26\x25\x2c\x2c\x1f\x20\ \x23\x25\x2c\x2e\x27\x2b\x2d\x26\x29\x2d\x25\x29\x26\x1e\x23\x23\ \x28\x2f\x2f\x23\x2b\x29\x26\x2e\x31\x2b\x2c\x2c\x2a\x29\x25\x2c\ \x26\x22\x20\x24\x1b\x24\x22\x20\x25\x27\x23\x15\x16\x10\x21\x28\ \x28\x25\x2d\x2b\x23\x27\x22\x15\x19\x16\x2d\x35\x30\x2e\x31\x31\ \x29\x27\x2d\x27\x29\x2a\x1e\x24\x26\x1b\x1a\x1c\x1a\x1d\x1b\x24\ \x26\x20\x21\x23\x1d\x20\x22\x23\x1d\x1f\x1b\x1c\x23\x26\x22\x2e\ \x31\x1c\x21\x1d\x21\x23\x22\x20\x25\x23\x25\x28\x29\x28\x2d\x31\ \x23\x1c\x1c\x1c\x1b\x18\x27\x2a\x2a\x27\x28\x23\x24\x26\x21\x21\ \x24\x20\x1d\x24\x23\x1c\x1e\x1c\x21\x20\x1c\x22\x29\x25\x22\x25\ \x1e\x23\x25\x20\x1c\x20\x1c\x23\x24\x1d\x00\x00\x00\x66\x91\xbf\ \x60\x8d\xbd\x63\x91\xc3\x61\x8f\xc2\x65\x8c\xc2\x62\x8a\xbf\x62\ \x8b\xbe\x60\x8d\xbd\x62\x8e\xbc\x65\x8e\xbd\x62\x8b\xbc\x5d\x85\ \xb4\x4b\x6a\x94\x25\x39\x5d\x12\x27\x47\x35\x52\x79\x4e\x72\x9e\ \x53\x75\xa5\x52\x6e\x9b\x44\x5e\x80\x2d\x45\x59\x0e\x1d\x2a\x02\ \x06\x11\x01\x04\x12\x1f\x31\x45\x63\x84\x9e\x7a\xa5\xc2\x80\xa9\ \xca\x80\xa7\xcd\x6f\x97\xbf\x5e\x84\xa7\x54\x76\x96\x57\x7a\x9c\ \x66\x8a\xb1\x78\x9c\xc3\x7d\xa3\xc8\x7f\xa1\xc7\x75\x96\xbc\x64\ \x84\xa8\x65\x85\xa7\x7b\x9e\xbf\x89\xad\xce\x8d\xad\xd0\x8b\xad\ \xce\x81\xa8\xca\x79\xa2\xc4\x75\x9a\xbf\x65\x87\xa8\x39\x52\x6c\ \x11\x1e\x33\x1e\x2a\x3d\x2e\x3d\x56\x5a\x72\x90\x84\xa6\xc6\x88\ \xae\xd0\x87\xad\xd0\x84\xad\xd0\x88\xb1\xd4\x8d\xb2\xd4\x8f\xb2\ \xd3\x92\xb3\xd4\x8f\xb0\xd5\x89\xab\xd1\x7f\xa4\xc9\x7c\x9f\xc1\ \x66\x7e\x9b\x1d\x2d\x42\x11\x25\x37\x5a\x7b\x95\x7d\xa0\xbe\x74\ \x88\x90\x41\x53\x53\x3a\x44\x4d\x43\x4b\x4d\x39\x40\x47\x31\x3c\ \x41\x2c\x36\x3b\x2c\x34\x38\x2e\x37\x3c\x1d\x28\x24\x2b\x34\x37\ \x2b\x33\x33\x2b\x35\x2f\x2f\x35\x33\x27\x34\x39\x2e\x30\x32\x2a\ \x2b\x28\x2b\x31\x2d\x25\x2b\x28\x1e\x23\x21\x2a\x2c\x27\x30\x39\ \x34\x1d\x2d\x2c\x27\x2c\x2a\x39\x3a\x39\x26\x31\x30\x2d\x31\x2f\ \x26\x2c\x2d\x29\x34\x35\x24\x2a\x27\x22\x27\x22\x22\x23\x22\x25\ \x29\x25\x24\x29\x22\x2b\x2b\x28\x20\x28\x27\x30\x32\x3a\x29\x2c\ \x2f\x20\x26\x27\x21\x22\x27\x26\x31\x30\x2b\x31\x30\x2a\x2d\x2d\ \x2d\x37\x36\x26\x2d\x2d\x26\x2d\x2b\x1e\x23\x20\x21\x28\x24\x1f\ \x2a\x25\x20\x24\x22\x25\x25\x20\x20\x1e\x19\x23\x21\x1d\x20\x25\ \x21\x20\x1f\x1d\x26\x21\x22\x1e\x1c\x1a\x1a\x1a\x17\x30\x30\x2d\ \x26\x26\x24\x1b\x1a\x17\x1b\x21\x1e\x29\x2b\x2a\x29\x2a\x2e\x21\ \x29\x27\x1f\x23\x20\x23\x2b\x2a\x21\x28\x25\x21\x28\x28\x1a\x21\ \x20\x1c\x21\x20\x1b\x20\x1d\x22\x27\x2a\x1f\x23\x23\x1e\x21\x1e\ \x1e\x1f\x1b\x24\x26\x26\x24\x27\x23\x23\x25\x21\x1e\x1a\x1a\x21\ \x21\x20\x21\x22\x1e\x20\x2b\x24\x22\x2c\x2c\x21\x24\x22\x1d\x20\ \x19\x1d\x21\x21\x1b\x1e\x19\x1c\x18\x18\x22\x25\x24\x25\x2b\x2c\ \x22\x25\x25\x26\x25\x20\x00\x00\x00\x67\x99\xc6\x63\x98\xc4\x66\ \x98\xc9\x68\x97\xcb\x67\x94\xc8\x67\x92\xc5\x67\x91\xc3\x68\x92\ \xc1\x68\x91\xbe\x67\x8f\xbd\x63\x8c\xbd\x5b\x82\xb4\x4e\x6b\x99\ \x2d\x3f\x64\x0c\x1b\x3d\x2d\x47\x6f\x4d\x72\xa1\x53\x77\xad\x4f\ \x6f\xa3\x41\x5f\x8a\x2a\x42\x61\x0a\x17\x2b\x01\x04\x15\x04\x0d\ \x21\x28\x3f\x5a\x5e\x80\xa2\x6c\x96\xbb\x75\x9d\xc6\x79\x9c\xca\ \x74\x97\xc7\x6b\x90\xbd\x68\x8f\xb9\x67\x91\xbb\x6e\x96\xc1\x77\ \x9a\xc7\x7f\x9e\xcb\x85\xa4\xd0\x82\xa6\xcf\x79\xa4\xc8\x7f\xa8\ \xca\x85\xac\xce\x86\xad\xcf\x89\xae\xd0\x86\xac\xcd\x7f\xab\xc9\ \x7c\xa9\xc6\x7d\xa4\xc4\x74\x98\xb9\x5d\x79\x99\x3c\x4e\x6b\x36\ \x47\x60\x4c\x64\x7e\x78\x96\xb4\x89\xac\xcc\x87\xad\xce\x81\xa9\ \xcb\x82\xaa\xcd\x86\xaf\xd1\x87\xb0\xd0\x8b\xb3\xd0\x8c\xb3\xd2\ \x8b\xb2\xd4\x85\xaf\xd0\x7c\xa9\xc9\x77\x9d\xbc\x5d\x75\x92\x14\ \x20\x36\x21\x30\x43\x71\x85\x92\x4f\x5e\x63\x38\x44\x4b\x38\x44\ \x49\x35\x3f\x41\x2e\x3d\x3d\x2a\x39\x39\x2f\x3a\x3c\x33\x3f\x41\ \x29\x30\x35\x25\x2d\x2c\x22\x28\x27\x27\x2d\x31\x2a\x27\x23\x28\ \x26\x29\x2f\x36\x35\x2c\x32\x31\x31\x32\x38\x27\x2b\x30\x2d\x31\ \x33\x21\x24\x22\x27\x2a\x2b\x34\x3b\x39\x2d\x30\x30\x26\x2e\x31\ \x23\x24\x21\x39\x39\x38\x2f\x36\x39\x28\x2f\x2c\x23\x2b\x26\x27\ \x32\x31\x22\x27\x26\x26\x2c\x2a\x23\x27\x25\x2b\x34\x33\x28\x30\ \x30\x2c\x30\x33\x26\x2d\x28\x2b\x35\x32\x28\x30\x2f\x28\x33\x37\ \x27\x2c\x2c\x28\x2b\x29\x25\x28\x27\x24\x25\x24\x24\x24\x25\x2a\ \x2e\x2c\x26\x31\x32\x1e\x27\x23\x22\x29\x27\x1c\x25\x20\x24\x29\ \x25\x2c\x2a\x28\x26\x24\x25\x2d\x2a\x24\x2b\x2e\x29\x24\x23\x20\ \x1e\x24\x1e\x1b\x20\x1a\x19\x1c\x18\x2f\x30\x30\x27\x27\x22\x1c\ \x1c\x1c\x1c\x22\x23\x26\x32\x2f\x25\x29\x28\x22\x22\x22\x1f\x26\ \x21\x21\x2b\x2a\x20\x26\x27\x1a\x23\x21\x22\x20\x1e\x21\x24\x24\ \x22\x25\x1d\x1e\x25\x21\x19\x1d\x17\x1f\x23\x20\x1d\x1d\x1c\x1e\ \x22\x22\x20\x26\x23\x21\x29\x29\x21\x24\x26\x1d\x23\x22\x27\x29\ \x2b\x1b\x1f\x1a\x22\x24\x20\x1e\x21\x1f\x23\x28\x25\x20\x22\x1f\ \x1e\x20\x21\x1f\x21\x1d\x27\x2e\x2d\x23\x25\x23\x24\x29\x28\x24\ \x21\x20\x00\x00\x00\x70\xa8\xca\x6c\xa6\xca\x70\xa6\xd0\x74\xa5\ \xd3\x73\xa4\xd0\x76\xa7\xd1\x78\xa5\xd0\x7a\xa3\xce\x7a\xa2\xc9\ \x7a\xa2\xca\x72\x9e\xc8\x6a\x98\xc4\x66\x8a\xb3\x53\x6b\x91\x20\ \x34\x54\x1b\x37\x59\x53\x78\xa0\x63\x8c\xba\x65\x8d\xbc\x5b\x82\ \xad\x48\x67\x8b\x1c\x2f\x49\x03\x0f\x25\x17\x2e\x46\x47\x68\x89\ \x5d\x88\xb0\x65\x91\xbd\x6a\x91\xc1\x71\x91\xc5\x6d\x8d\xc3\x69\ \x8d\xbe\x68\x90\xbc\x6a\x95\xc0\x6c\x98\xc3\x6f\x99\xc4\x78\x9c\ \xc8\x81\xa4\xcf\x83\xae\xd2\x81\xaf\xd1\x84\xb0\xd2\x85\xaf\xd1\ \x85\xaf\xd0\x87\xb0\xd0\x84\xb2\xcf\x82\xb2\xcc\x80\xb0\xc8\x80\ \xad\xc8\x82\xa9\xca\x7d\x9e\xc1\x73\x91\xb2\x6b\x8d\xa9\x77\x9e\ \xb8\x85\xad\xc7\x8a\xb0\xcc\x87\xac\xcb\x82\xab\xcb\x82\xaa\xcd\ \x86\xae\xd1\x86\xb0\xd0\x88\xb5\xd2\x89\xb6\xd4\x87\xb5\xd6\x80\ \xb2\xd1\x7d\xae\xcd\x79\xa3\xc2\x6e\x86\x9d\x63\x70\x79\x58\x65\ \x67\x3a\x4c\x4c\x36\x43\x46\x37\x43\x4a\x31\x36\x3d\x2f\x36\x3d\ \x27\x32\x34\x2f\x36\x33\x2a\x33\x35\x24\x2a\x2a\x25\x2b\x2d\x24\ \x26\x27\x27\x2b\x29\x2e\x34\x35\x32\x30\x31\x37\x37\x39\x29\x2e\ \x2b\x26\x2e\x2a\x29\x31\x34\x23\x28\x2a\x2d\x31\x2f\x2a\x2e\x2d\ \x2d\x39\x38\x18\x17\x19\x33\x35\x31\x2a\x30\x2c\x1e\x24\x24\x30\ \x35\x35\x2d\x36\x38\x2b\x2f\x2f\x25\x2e\x2a\x2c\x2e\x2b\x2f\x34\ \x33\x2c\x30\x2b\x27\x30\x29\x25\x25\x21\x27\x2c\x27\x26\x27\x24\ \x2b\x2d\x2e\x28\x2f\x2a\x2d\x30\x31\x2a\x36\x30\x23\x24\x24\x27\ \x27\x28\x26\x25\x2a\x24\x28\x1e\x22\x20\x1d\x27\x2d\x2f\x1d\x24\ \x2a\x21\x2c\x2f\x22\x2b\x2c\x22\x26\x1f\x2c\x2a\x29\x24\x25\x26\ \x20\x1e\x1a\x28\x26\x24\x20\x20\x1d\x1f\x24\x1e\x1f\x21\x1e\x1c\ \x1e\x1a\x17\x14\x0c\x2a\x30\x2e\x25\x29\x26\x1c\x24\x1d\x23\x24\ \x24\x29\x2e\x2d\x29\x2e\x2d\x20\x28\x26\x28\x2f\x2f\x24\x30\x30\ \x1e\x24\x23\x1c\x20\x22\x1d\x1f\x1e\x1f\x27\x21\x20\x24\x1c\x20\ \x20\x1c\x20\x23\x1f\x23\x28\x22\x1d\x1d\x1c\x2b\x31\x2d\x26\x2c\ \x2e\x26\x22\x24\x21\x25\x26\x20\x26\x22\x24\x29\x29\x1a\x21\x1f\ \x1f\x1f\x1d\x1f\x23\x1f\x23\x28\x28\x20\x22\x1c\x1b\x1e\x1d\x1f\ \x20\x21\x29\x2a\x23\x2b\x2a\x2a\x29\x29\x2a\x25\x24\x23\x00\x00\ \x00\x79\xb0\xcc\x75\xad\xcc\x78\xad\xcf\x7e\xae\xd2\x7d\xad\xd0\ \x7f\xb0\xd3\x82\xaf\xd3\x82\xad\xd1\x85\xad\xd0\x86\xad\xd1\x82\ \xae\xd2\x7d\xaa\xcf\x74\xa1\xc4\x68\x8e\xae\x48\x69\x85\x1a\x39\ \x56\x2f\x52\x72\x6b\x92\xb7\x76\xa5\xc8\x75\xa3\xca\x64\x8b\xad\ \x2f\x46\x60\x0a\x1d\x30\x33\x4f\x67\x69\x93\xb1\x6e\xa0\xc6\x71\ \xa0\xcc\x75\x9d\xcc\x77\x99\xcb\x75\x97\xc7\x77\x9b\xc7\x77\xa0\ \xc7\x79\xa6\xca\x7b\xa8\xcc\x7c\xaa\xce\x83\xad\xd0\x86\xb1\xd4\ \x86\xb5\xd5\x83\xb4\xd3\x81\xb3\xd1\x81\xb1\xd0\x80\xb0\xce\x84\ \xb3\xce\x86\xb5\xd0\x86\xb6\xce\x83\xb4\xcc\x83\xb3\xcb\x84\xb1\ \xd0\x89\xaf\xd0\x85\xab\xcb\x82\xae\xc9\x83\xb2\xcb\x86\xb4\xcc\ \x8a\xb3\xcc\x8d\xb3\xcf\x89\xb1\xcf\x8b\xb2\xd5\x8b\xb2\xd7\x8b\ \xb3\xd7\x88\xb5\xd5\x87\xb6\xd6\x89\xb5\xd6\x84\xb3\xd3\x83\xb2\ \xd1\x91\xae\xc1\x62\x75\x77\x3a\x49\x4e\x3a\x49\x50\x3b\x4a\x4d\ \x33\x3e\x41\x33\x38\x3d\x29\x34\x35\x28\x32\x33\x2f\x3a\x3a\x27\ \x30\x2d\x25\x28\x26\x2e\x35\x33\x29\x2f\x2f\x29\x30\x32\x2a\x2e\ \x2e\x2d\x35\x2e\x2c\x2e\x2d\x2d\x2d\x2a\x25\x22\x22\x2d\x3a\x3c\ \x2e\x40\x45\x28\x2d\x2d\x2c\x34\x30\x23\x27\x26\x29\x2f\x2f\x26\ \x26\x23\x30\x39\x36\x29\x32\x32\x22\x29\x25\x2f\x30\x36\x37\x44\ \x46\x32\x37\x38\x2d\x31\x2d\x28\x30\x2d\x26\x2b\x29\x25\x2b\x28\ \x2b\x34\x36\x21\x23\x23\x2e\x33\x39\x2f\x33\x2f\x32\x35\x33\x25\ \x23\x26\x27\x2f\x34\x24\x2e\x30\x25\x23\x23\x2b\x32\x2d\x23\x25\ \x22\x24\x25\x25\x23\x26\x23\x24\x26\x28\x25\x2f\x2e\x26\x29\x2a\ \x25\x26\x27\x21\x22\x1d\x23\x24\x1f\x20\x25\x1f\x2a\x26\x1e\x27\ \x2a\x25\x21\x26\x1f\x1f\x22\x22\x20\x2b\x25\x1d\x26\x22\x15\x19\ \x16\x32\x3a\x38\x27\x29\x28\x22\x21\x1c\x19\x20\x18\x27\x2b\x30\ \x22\x2d\x30\x1d\x28\x23\x24\x2c\x2b\x22\x27\x21\x1f\x22\x21\x23\ \x26\x24\x22\x24\x22\x1a\x1c\x1a\x1a\x1d\x1d\x28\x2a\x25\x20\x25\ \x21\x24\x2e\x2e\x21\x25\x23\x20\x2a\x28\x23\x29\x28\x27\x27\x23\ \x21\x22\x21\x1b\x1a\x1a\x24\x22\x1e\x21\x21\x20\x21\x25\x28\x1c\ \x20\x1d\x21\x24\x21\x25\x20\x1e\x24\x28\x26\x24\x22\x22\x1f\x1b\ \x14\x24\x22\x21\x20\x20\x1b\x24\x2a\x28\x00\x00\x00\x78\xaa\xc2\ \x74\xa6\xc1\x77\xa5\xc2\x81\xaa\xc7\x81\xad\xc9\x7d\xac\xc9\x7c\ \xaa\xc6\x7b\xa5\xc1\x7e\xa7\xc5\x84\xab\xc9\x84\xaf\xcc\x81\xb0\ \xcf\x79\xaa\xc9\x73\xa1\xc0\x61\x8c\xa7\x44\x68\x85\x22\x42\x62\ \x3b\x60\x7d\x71\xa1\xbb\x78\xa7\xc3\x6c\x93\xae\x2f\x49\x5d\x0f\ \x23\x35\x48\x67\x7d\x7b\xa6\xc2\x7e\xae\xcf\x7f\xac\xd2\x7d\xa8\ \xce\x7d\xa5\xcd\x7c\xa5\xcc\x80\xa8\xcc\x7f\xac\xcc\x81\xb0\xd0\ \x84\xb3\xd1\x87\xb3\xd0\x8b\xb8\xd6\x8a\xb8\xd7\x86\xb9\xd6\x7f\ \xb7\xd1\x79\xb3\xcd\x7b\xb1\xcb\x84\xb4\xce\x85\xb6\xce\x88\xb7\ \xd0\x8d\xb7\xd3\x89\xb4\xd1\x84\xb3\xcf\x84\xb4\xd1\x88\xb4\xd3\ \x87\xb3\xd2\x86\xb5\xd2\x87\xb7\xd1\x8b\xb8\xd0\x90\xb8\xd1\x8f\ \xb6\xd0\x90\xb6\xd5\x8f\xb6\xd8\x8d\xb5\xd9\x8c\xb4\xd7\x89\xb5\ \xd6\x89\xb8\xd8\x8f\xb7\xd7\x92\xaf\xc5\x7e\x8e\x95\x40\x4f\x54\ \x2f\x3c\x40\x3b\x44\x48\x37\x45\x48\x2e\x39\x37\x2b\x38\x3d\x25\ \x30\x31\x2a\x3a\x38\x2a\x32\x30\x27\x2d\x2f\x24\x28\x25\x31\x37\ \x37\x2c\x2c\x29\x34\x3f\x45\x25\x2d\x2f\x29\x2e\x2d\x2a\x2c\x2c\ \x27\x2a\x2d\x2c\x2f\x31\x26\x2b\x2c\x2e\x3f\x47\x1d\x26\x27\x24\ \x2c\x2a\x2d\x33\x33\x2f\x37\x3b\x32\x3f\x45\x2b\x2d\x2c\x30\x34\ \x38\x34\x38\x34\x27\x2e\x29\x38\x34\x33\x37\x41\x41\x27\x31\x2f\ \x2c\x31\x2c\x2e\x35\x34\x2a\x2e\x31\x28\x2d\x2c\x34\x3a\x3f\x2f\ \x34\x35\x2b\x32\x2b\x2a\x31\x2c\x2c\x30\x2c\x32\x33\x33\x2c\x33\ \x33\x26\x29\x2d\x27\x30\x2d\x24\x22\x24\x1f\x27\x26\x29\x2a\x2b\ \x24\x2c\x2d\x21\x28\x26\x29\x2c\x2a\x28\x2d\x31\x28\x38\x3c\x26\ \x2e\x33\x20\x23\x23\x1d\x1e\x1c\x28\x25\x21\x2b\x29\x27\x2a\x2d\ \x2b\x25\x2b\x25\x20\x25\x1d\x23\x24\x22\x19\x18\x16\x27\x2c\x2b\ \x28\x2b\x2b\x1d\x22\x1d\x19\x1e\x1c\x2a\x36\x3b\x22\x31\x30\x25\ \x24\x22\x1e\x21\x19\x24\x26\x1e\x24\x28\x20\x22\x26\x20\x1e\x22\ \x21\x24\x24\x22\x23\x25\x24\x18\x19\x16\x29\x29\x27\x24\x2a\x26\ \x1f\x27\x26\x1f\x27\x27\x22\x21\x20\x27\x29\x29\x1f\x1d\x1b\x24\ \x23\x22\x22\x23\x21\x20\x23\x1d\x25\x2a\x21\x22\x21\x1c\x1d\x1e\ \x18\x21\x21\x1c\x26\x28\x25\x2b\x24\x22\x25\x26\x25\x22\x22\x1c\ \x24\x27\x1d\x22\x28\x1e\x00\x00\x00\x62\x8c\xa1\x50\x79\x91\x58\ \x7f\x99\x67\x89\xa3\x6c\x94\xac\x66\x90\xa8\x56\x7d\x94\x4c\x70\ \x84\x4e\x72\x88\x5a\x7f\x96\x65\x8d\xa6\x71\x9c\xb6\x69\x96\xb0\ \x61\x8a\xa6\x62\x89\xa8\x5e\x83\xa2\x45\x69\x85\x2c\x4e\x67\x43\ \x6a\x7d\x66\x8d\x9f\x53\x74\x86\x1c\x35\x44\x17\x2c\x3c\x5e\x7c\ \x93\x84\xab\xc8\x80\xaa\xc9\x77\x9e\xbc\x71\x99\xb5\x7a\xa4\xc3\ \x82\xab\xcb\x86\xb0\xcf\x83\xb2\xd0\x82\xb3\xd0\x85\xb5\xcf\x88\ \xb7\xcf\x8b\xba\xd5\x8c\xba\xd9\x86\xba\xd6\x7b\xb5\xcc\x79\xb3\ \xca\x7f\xb3\xc9\x88\xb3\xcf\x88\xb2\xcf\x88\xb5\xd2\x8c\xb5\xd5\ \x8c\xb2\xd4\x84\xae\xcf\x84\xb0\xd1\x85\xb3\xd4\x85\xb3\xd5\x85\ \xb3\xd3\x8b\xb6\xd3\x8c\xb8\xd1\x90\xb8\xd1\x90\xb7\xd4\x90\xb7\ \xd8\x91\xb6\xd9\x8e\xb4\xd7\x87\xb3\xd2\x8a\xb6\xd3\x94\xa7\xb2\ \x77\x85\x8a\x44\x53\x55\x2e\x3c\x3e\x39\x40\x47\x33\x3f\x3e\x33\ \x3f\x3f\x2f\x3d\x3f\x2a\x38\x39\x26\x33\x37\x27\x2f\x35\x2f\x34\ \x30\x30\x32\x33\x2f\x34\x34\x31\x32\x34\x2a\x2f\x2c\x2b\x2f\x30\ \x28\x30\x2d\x29\x2e\x2d\x2b\x34\x30\x2d\x2e\x30\x24\x28\x25\x29\ \x28\x23\x2b\x31\x30\x2b\x3b\x3f\x25\x2b\x31\x2d\x3c\x47\x2d\x36\ \x3b\x26\x2c\x2f\x25\x2c\x2f\x1b\x1e\x1d\x2e\x2f\x30\x32\x3a\x3b\ \x27\x26\x25\x30\x2d\x2f\x33\x3c\x3f\x2c\x2f\x2f\x2c\x38\x35\x2c\ \x30\x30\x2d\x35\x32\x39\x37\x33\x31\x2d\x32\x24\x26\x24\x28\x31\ \x2c\x24\x23\x21\x26\x2a\x29\x20\x20\x1d\x29\x2a\x2a\x25\x29\x2c\ \x29\x33\x38\x23\x30\x2e\x24\x2d\x2c\x28\x31\x29\x20\x24\x21\x23\ \x23\x21\x2b\x2b\x2c\x28\x2b\x2e\x2e\x39\x3d\x26\x31\x39\x24\x25\ \x27\x27\x28\x24\x2b\x2d\x28\x24\x22\x1e\x22\x27\x21\x24\x29\x26\ \x24\x2c\x2c\x22\x22\x23\x19\x17\x14\x25\x30\x2a\x27\x2d\x2b\x20\ \x26\x28\x19\x1a\x17\x20\x27\x27\x21\x29\x24\x25\x2d\x2c\x21\x27\ \x24\x21\x26\x24\x1d\x1e\x1b\x22\x25\x20\x1b\x22\x21\x26\x29\x25\ \x24\x21\x20\x21\x1f\x19\x1a\x1c\x15\x25\x2d\x2b\x2c\x32\x32\x26\ \x29\x25\x23\x21\x1b\x2b\x2c\x26\x1f\x1f\x18\x28\x25\x23\x26\x25\ \x27\x21\x1f\x18\x29\x27\x2b\x22\x25\x24\x22\x22\x21\x19\x1b\x17\ \x1a\x1a\x16\x2b\x2a\x28\x28\x24\x29\x21\x26\x21\x1d\x1b\x1d\x25\ \x28\x21\x00\x00\x00\x37\x58\x69\x22\x43\x56\x43\x67\x80\x57\x7a\ \x98\x51\x78\x96\x3d\x62\x7e\x1d\x3c\x51\x09\x21\x31\x0b\x24\x36\ \x20\x3e\x53\x36\x5a\x72\x42\x69\x80\x3a\x5c\x6f\x31\x4e\x65\x44\ \x61\x7d\x55\x76\x91\x4c\x70\x89\x40\x5f\x75\x2a\x43\x54\x29\x43\ \x50\x22\x39\x46\x09\x1a\x25\x1d\x31\x43\x5f\x7b\x94\x7f\xa3\xc0\ \x74\x99\xb5\x52\x73\x8b\x3c\x5e\x74\x63\x86\x9e\x84\xa8\xc4\x85\ \xad\xc9\x81\xad\xc8\x78\xa8\xc0\x77\xa5\xbb\x81\xb1\xc8\x85\xb4\ \xcf\x85\xb3\xd3\x7f\xad\xca\x73\xa4\xbd\x77\xa9\xc1\x80\xaf\xca\ \x86\xb0\xcc\x85\xad\xcb\x7c\xa6\xc4\x7c\xa3\xc2\x85\xab\xcb\x84\ \xad\xce\x7f\xad\xcd\x82\xb1\xd3\x85\xb2\xd6\x84\xb2\xd4\x85\xb4\ \xd1\x8a\xb6\xd1\x91\xb9\xd5\x90\xb5\xd6\x8d\xb2\xd5\x8b\xae\xd1\ \x82\xa8\xc6\x85\xa9\xbd\x84\x93\x94\x53\x5f\x65\x41\x4b\x52\x3a\ \x41\x48\x30\x3c\x40\x31\x3c\x3f\x28\x32\x32\x29\x39\x34\x29\x35\ \x3d\x2e\x37\x3b\x2b\x38\x3f\x26\x2e\x2d\x29\x2d\x2e\x2e\x31\x34\ \x2f\x2f\x2c\x2d\x35\x34\x30\x35\x33\x34\x38\x3a\x29\x2d\x2b\x2d\ \x36\x37\x26\x2e\x26\x25\x24\x25\x2c\x34\x37\x2f\x33\x35\x2e\x34\ \x32\x28\x2f\x2d\x2b\x31\x32\x2e\x3b\x3f\x2c\x38\x39\x2a\x2e\x32\ \x2a\x34\x38\x20\x25\x21\x26\x29\x26\x31\x38\x38\x2a\x2d\x2d\x25\ \x26\x1f\x39\x3e\x3b\x30\x36\x39\x29\x35\x36\x25\x2c\x2f\x2d\x34\ \x31\x2b\x2e\x31\x2f\x32\x30\x29\x2f\x2c\x2a\x2d\x2e\x2b\x2d\x2e\ \x2d\x34\x34\x23\x24\x1f\x2a\x34\x37\x26\x2f\x2d\x29\x2c\x2b\x1e\ \x28\x24\x22\x29\x27\x24\x2e\x2d\x24\x25\x25\x27\x27\x1f\x28\x28\ \x25\x27\x29\x27\x29\x2c\x2a\x2a\x37\x37\x22\x24\x1d\x22\x2a\x28\ \x1e\x28\x28\x21\x23\x20\x1d\x21\x1e\x1d\x22\x1f\x21\x1e\x22\x20\ \x24\x22\x1d\x22\x24\x29\x32\x33\x26\x27\x29\x1f\x21\x1f\x17\x1c\ \x14\x28\x2e\x2e\x25\x30\x2e\x22\x29\x27\x23\x26\x22\x1c\x1f\x1c\ \x21\x22\x22\x1e\x21\x21\x1d\x23\x23\x1e\x25\x25\x1f\x1e\x1d\x1f\ \x27\x22\x21\x23\x23\x1f\x1e\x1e\x1d\x1f\x1d\x24\x24\x22\x1e\x20\ \x1c\x1c\x1d\x18\x1e\x22\x1c\x23\x27\x22\x22\x26\x21\x25\x25\x24\ \x28\x2b\x29\x26\x27\x20\x22\x1b\x1a\x26\x26\x25\x22\x20\x1c\x25\ \x23\x22\x26\x2c\x27\x23\x2b\x29\x1b\x1f\x1e\x2a\x29\x26\x00\x00\ \x00\x17\x33\x41\x14\x30\x41\x46\x67\x80\x69\x8e\xaf\x6b\x94\xb5\ \x53\x7a\x99\x28\x47\x5f\x06\x18\x2d\x0a\x1d\x30\x33\x4e\x64\x4f\ \x76\x8f\x41\x69\x81\x1a\x37\x4c\x12\x26\x38\x39\x4e\x62\x60\x7c\ \x94\x56\x77\x8d\x3b\x57\x69\x19\x2d\x3b\x07\x16\x20\x02\x0d\x16\ \x01\x09\x15\x16\x29\x3b\x39\x53\x6b\x5f\x7e\x99\x5a\x79\x91\x2c\ \x47\x5b\x14\x2d\x3f\x33\x4f\x64\x64\x83\x9a\x7d\x9f\xb5\x75\x98\ \xab\x5b\x7d\x8f\x4d\x70\x81\x5f\x87\x9b\x75\xa1\xb9\x79\xa2\xbf\ \x65\x89\xa6\x4c\x70\x8c\x55\x7b\x98\x75\x9d\xb9\x7c\xa5\xbe\x6e\ \x96\xaf\x52\x7a\x94\x4b\x6e\x89\x63\x87\xa4\x80\xa7\xc6\x84\xb1\ \xd0\x83\xb1\xd3\x85\xb3\xd5\x82\xb0\xd1\x84\xb3\xd2\x89\xb7\xd4\ \x8f\xb8\xd6\x8c\xb5\xd5\x92\xb6\xd2\x98\xb0\xc3\x84\x93\x9c\x54\ \x63\x6a\x3b\x4a\x4f\x40\x46\x4c\x39\x40\x44\x32\x40\x43\x30\x3d\ \x42\x30\x3c\x42\x2a\x37\x3c\x30\x3c\x39\x2b\x32\x2d\x2b\x2c\x2f\ \x25\x28\x29\x27\x28\x28\x32\x3b\x3f\x29\x2d\x2a\x37\x3b\x37\x2b\ \x31\x32\x27\x2b\x27\x2f\x32\x30\x24\x2c\x2a\x28\x2e\x2d\x26\x2a\ \x2b\x29\x31\x34\x25\x2b\x2b\x27\x2b\x28\x2b\x2f\x31\x27\x30\x2a\ \x2a\x2f\x33\x2b\x39\x3f\x29\x32\x37\x2b\x3c\x42\x29\x30\x34\x26\ \x2c\x2d\x27\x26\x24\x35\x37\x32\x27\x2b\x2a\x26\x24\x22\x35\x3d\ \x3d\x36\x42\x48\x27\x31\x38\x29\x32\x33\x2b\x31\x30\x30\x32\x30\ \x31\x31\x2f\x2c\x2e\x2e\x2d\x37\x34\x27\x2b\x28\x27\x29\x29\x30\ \x32\x33\x2d\x34\x37\x25\x2b\x2b\x28\x28\x22\x2b\x31\x33\x2a\x2b\ \x2d\x28\x2e\x2c\x24\x28\x27\x28\x27\x24\x22\x2a\x28\x1d\x1d\x18\ \x21\x24\x1e\x1f\x24\x21\x20\x25\x23\x23\x26\x23\x25\x2b\x2d\x23\ \x25\x23\x2b\x29\x27\x26\x2b\x2c\x1e\x24\x24\x1f\x29\x29\x1b\x1c\ \x1d\x25\x2a\x23\x27\x2b\x2a\x21\x23\x26\x1c\x1d\x17\x2b\x2b\x29\ \x29\x31\x2d\x23\x23\x23\x20\x21\x1e\x25\x26\x23\x21\x25\x21\x1f\ \x25\x24\x1e\x24\x23\x20\x26\x20\x23\x24\x22\x24\x24\x23\x22\x24\ \x21\x2c\x32\x33\x20\x23\x25\x26\x2f\x2b\x22\x22\x1f\x21\x21\x20\ \x17\x1c\x18\x23\x22\x25\x20\x1f\x1d\x1f\x22\x1e\x1b\x1c\x17\x22\ \x20\x19\x2a\x27\x26\x29\x25\x21\x29\x2b\x29\x1d\x1c\x1c\x20\x23\ \x1d\x20\x22\x23\x1f\x21\x1e\x25\x2a\x33\x00\x00\x00\x13\x2c\x3b\ \x17\x2e\x40\x40\x5d\x78\x5c\x7e\xa0\x78\xa1\xc2\x76\xa0\xc0\x5a\ \x7d\x9b\x30\x47\x64\x19\x2e\x47\x41\x61\x78\x68\x95\xae\x64\x90\ \xab\x47\x65\x81\x16\x27\x3f\x28\x3a\x4d\x62\x7e\x92\x71\x92\xa9\ \x53\x6f\x82\x1c\x2c\x3b\x01\x08\x13\x00\x03\x0e\x05\x0d\x1b\x1e\ \x2f\x42\x36\x51\x67\x36\x54\x6d\x2e\x4a\x60\x1a\x31\x45\x18\x2d\ \x42\x2f\x4a\x61\x39\x58\x6f\x45\x63\x73\x44\x5f\x6c\x2e\x43\x53\ \x26\x3b\x4d\x38\x55\x68\x44\x66\x7e\x51\x72\x8c\x47\x62\x77\x29\ \x43\x5b\x3f\x5c\x79\x4d\x6c\x88\x54\x77\x8e\x44\x67\x7c\x24\x43\ \x5b\x35\x50\x6c\x4d\x6a\x89\x55\x76\x97\x6c\x96\xb6\x7d\xaa\xcc\ \x84\xae\xd0\x83\xaf\xd0\x83\xb2\xd0\x8a\xb4\xd4\x90\xb7\xd7\xa2\ \xb4\xbd\x6a\x75\x79\x5d\x70\x73\x41\x4d\x54\x3d\x49\x4f\x3a\x45\ \x4a\x31\x3d\x42\x2e\x37\x3c\x25\x33\x35\x36\x44\x4e\x2a\x38\x39\ \x2b\x34\x30\x27\x2f\x28\x2a\x2a\x29\x2b\x2e\x2f\x2c\x32\x33\x27\ \x2e\x2f\x31\x3a\x36\x27\x29\x21\x34\x35\x31\x2a\x2c\x32\x27\x2a\ \x2b\x29\x33\x34\x27\x35\x36\x27\x2c\x31\x28\x2f\x2f\x24\x2c\x29\ \x2a\x30\x29\x30\x34\x34\x32\x34\x36\x2c\x30\x32\x26\x30\x31\x2f\ \x34\x34\x2b\x33\x39\x29\x32\x31\x2a\x33\x32\x24\x31\x31\x1d\x1f\ \x1c\x31\x39\x35\x24\x30\x2e\x24\x28\x29\x2f\x34\x35\x2d\x37\x3c\ \x2a\x31\x2c\x29\x2c\x2c\x26\x2e\x2e\x2c\x32\x32\x26\x29\x29\x22\ \x2a\x29\x27\x2d\x2a\x24\x28\x27\x2b\x2f\x2d\x24\x2a\x26\x29\x2f\ \x2a\x21\x2a\x25\x29\x2e\x31\x26\x2d\x2a\x21\x26\x23\x23\x22\x20\ \x2d\x33\x31\x26\x29\x28\x1f\x26\x20\x21\x24\x1f\x21\x24\x20\x23\ \x32\x34\x21\x27\x2c\x1d\x1e\x17\x1f\x22\x21\x27\x29\x29\x27\x2e\ \x2e\x22\x2a\x2f\x22\x2a\x2d\x1c\x1d\x1b\x16\x1a\x12\x29\x2d\x29\ \x2e\x2c\x2d\x20\x23\x20\x19\x20\x1d\x2e\x2e\x2e\x29\x2d\x2b\x28\ \x2c\x2a\x26\x2c\x2b\x1d\x1a\x16\x25\x28\x2b\x23\x2c\x28\x1c\x1b\ \x16\x27\x27\x22\x27\x28\x26\x23\x22\x20\x20\x28\x24\x21\x25\x28\ \x29\x2d\x28\x22\x2a\x24\x1e\x1f\x19\x22\x22\x21\x21\x24\x1d\x27\ \x24\x21\x25\x27\x27\x1e\x22\x1c\x1c\x17\x0f\x2a\x29\x24\x25\x29\ \x26\x27\x28\x29\x29\x27\x29\x23\x22\x1c\x20\x1c\x1c\x25\x27\x23\ \x20\x23\x21\x20\x28\x2a\x00\x00\x00\x14\x2d\x3e\x20\x39\x4f\x4e\ \x6b\x8a\x4a\x6b\x8d\x5f\x82\xa3\x7f\xa6\xc7\x7f\xa3\xc5\x6d\x8a\ \xad\x53\x6f\x90\x60\x84\xa3\x74\xa3\xc1\x76\xa3\xc2\x6c\x8d\xae\ \x4b\x61\x80\x2a\x41\x5a\x51\x70\x88\x7d\xa1\xbb\x6f\x8d\xa3\x31\ \x44\x53\x02\x08\x12\x02\x07\x12\x06\x10\x1d\x21\x32\x42\x4b\x67\ \x7d\x66\x88\xa1\x60\x7f\x98\x57\x72\x8c\x59\x76\x92\x64\x84\xa2\ \x63\x86\xa1\x5a\x7b\x8e\x49\x62\x74\x34\x47\x5e\x34\x45\x5f\x50\ \x69\x84\x59\x77\x95\x46\x65\x81\x2d\x48\x5f\x26\x3e\x54\x42\x5d\ \x78\x61\x7e\x9a\x52\x6f\x8b\x39\x54\x6f\x26\x40\x5f\x48\x63\x84\ \x6c\x8a\xad\x6c\x8d\xb0\x61\x89\xaa\x62\x8d\xb0\x79\xa0\xc4\x84\ \xac\xcd\x85\xb1\xd2\x91\xb9\xd7\x95\xa8\xb1\x67\x78\x7b\x3c\x48\ \x4d\x36\x47\x49\x38\x47\x4b\x38\x48\x4b\x2b\x36\x3c\x2b\x38\x3f\ \x34\x42\x45\x30\x3f\x3f\x28\x33\x33\x28\x34\x32\x23\x29\x28\x2f\ \x34\x32\x2d\x33\x30\x2a\x2a\x27\x36\x3a\x3c\x2a\x2d\x2d\x2f\x34\ \x36\x29\x2e\x2c\x2f\x34\x36\x25\x29\x2b\x29\x32\x36\x32\x3c\x45\ \x28\x32\x35\x30\x35\x36\x2c\x32\x31\x28\x31\x31\x2a\x2e\x2d\x2b\ \x31\x2d\x2e\x2d\x2e\x30\x39\x3f\x23\x2c\x2a\x2e\x3a\x3d\x2a\x36\ \x39\x29\x30\x2d\x2b\x30\x33\x22\x2a\x2b\x1a\x1a\x16\x31\x36\x32\ \x2d\x34\x34\x23\x27\x2a\x2d\x34\x31\x36\x3d\x40\x2e\x2c\x2b\x2a\ \x31\x36\x25\x2e\x2e\x24\x2a\x2a\x27\x2a\x25\x22\x26\x28\x2b\x2d\ \x2d\x26\x2a\x29\x1f\x28\x22\x29\x2f\x2d\x2a\x30\x30\x2c\x33\x36\ \x26\x31\x2f\x26\x27\x27\x26\x28\x23\x20\x24\x1e\x25\x2e\x2d\x23\ \x29\x22\x2a\x2c\x2c\x26\x29\x24\x29\x2a\x2a\x2c\x30\x30\x23\x28\ \x28\x25\x2a\x2b\x1c\x22\x22\x20\x21\x1f\x27\x28\x25\x26\x2b\x2e\ \x26\x2a\x2e\x25\x25\x21\x14\x15\x15\x27\x2d\x2b\x2c\x30\x2f\x1d\ \x22\x1d\x1c\x1d\x20\x28\x2d\x2d\x26\x2f\x2e\x2a\x33\x33\x20\x20\ \x1d\x20\x22\x19\x21\x24\x21\x23\x25\x20\x23\x20\x1f\x26\x24\x23\ \x1c\x1c\x17\x26\x27\x24\x22\x26\x23\x24\x24\x23\x28\x25\x22\x29\ \x2b\x28\x24\x26\x22\x29\x29\x26\x20\x1f\x1c\x21\x22\x1f\x26\x28\ \x29\x20\x1d\x1a\x1f\x1d\x1b\x20\x20\x1e\x20\x22\x1a\x22\x20\x1b\ \x23\x25\x20\x1e\x1f\x23\x1e\x25\x22\x25\x2c\x2e\x23\x2e\x2d\x26\ \x2c\x2f\x00\x00\x00\x17\x2f\x40\x24\x3d\x55\x5d\x7e\x9c\x4a\x6c\ \x8b\x39\x5b\x79\x77\x9d\xbd\x84\xab\xce\x82\xa9\xcd\x7f\xa3\xc9\ \x80\xa7\xca\x7f\xad\xcd\x7d\xab\xcb\x7f\xa7\xc9\x79\x98\xba\x63\ \x84\xa4\x6c\x90\xad\x81\xa6\xc3\x80\xa0\xb9\x43\x58\x69\x05\x11\ \x1b\x10\x18\x23\x13\x1c\x29\x1b\x28\x38\x57\x71\x84\x81\xa4\xba\ \x87\xac\xc7\x85\xaa\xc6\x83\xa8\xc6\x84\xa9\xcb\x83\xa9\xc9\x80\ \xa4\xbf\x78\x97\xb2\x6f\x8b\xaa\x6b\x87\xa7\x79\x97\xb9\x7a\x9d\ \xbe\x70\x96\xb5\x5e\x80\x9b\x4c\x6a\x84\x54\x73\x8f\x72\x91\xb1\ \x7a\x97\xb6\x70\x8a\xa9\x58\x73\x94\x61\x81\xa4\x7e\xa2\xc5\x84\ \xa7\xc8\x7d\xa2\xc1\x6f\x95\xb7\x63\x88\xad\x69\x90\xb1\x86\xab\ \xc3\x70\x87\x8d\x43\x57\x5e\x3d\x4e\x53\x3b\x4b\x4e\x2e\x3c\x43\ \x2b\x37\x3c\x2b\x38\x3e\x30\x3a\x42\x2f\x3c\x3f\x2c\x30\x34\x2e\ \x38\x39\x2f\x32\x31\x2e\x37\x35\x27\x2c\x2a\x2b\x31\x2c\x25\x31\ \x26\x27\x30\x2a\x2b\x35\x35\x2b\x38\x32\x2b\x33\x32\x26\x2e\x2f\ \x2d\x36\x33\x33\x43\x47\x25\x2d\x2d\x2b\x37\x35\x29\x2e\x2d\x2a\ \x2d\x2e\x28\x2e\x2e\x26\x2a\x26\x2d\x30\x2d\x29\x31\x30\x25\x29\ \x2b\x31\x30\x32\x26\x30\x2e\x2e\x3d\x40\x23\x2e\x2b\x2d\x32\x34\ \x27\x32\x33\x21\x2d\x28\x1f\x1f\x1a\x33\x37\x33\x29\x2f\x2d\x26\ \x2d\x2b\x2c\x2e\x25\x30\x36\x35\x35\x38\x3a\x29\x33\x3a\x29\x35\ \x36\x23\x26\x27\x2a\x2f\x30\x26\x2b\x2c\x28\x2b\x2d\x27\x2e\x2a\ \x24\x27\x21\x23\x28\x25\x2d\x2f\x2e\x2d\x2b\x2d\x24\x28\x26\x22\ \x27\x22\x27\x27\x28\x25\x2c\x27\x23\x25\x23\x22\x21\x1e\x21\x21\ \x22\x21\x20\x22\x28\x29\x2a\x23\x23\x1f\x26\x2a\x2c\x21\x27\x29\ \x29\x30\x2e\x23\x27\x2b\x21\x26\x20\x25\x2c\x2a\x23\x27\x25\x26\ \x27\x28\x17\x15\x13\x2a\x2f\x2c\x29\x2f\x2f\x1f\x20\x21\x1d\x1e\ \x1d\x2c\x2f\x32\x22\x29\x2c\x25\x25\x21\x28\x2c\x28\x28\x28\x2b\ \x20\x1f\x1d\x1d\x1b\x17\x27\x2e\x29\x22\x24\x27\x17\x17\x12\x29\ \x27\x25\x2a\x2b\x23\x28\x28\x24\x23\x25\x1f\x25\x24\x21\x28\x2e\ \x29\x27\x25\x23\x23\x23\x1c\x24\x25\x23\x28\x29\x28\x2a\x27\x26\ \x28\x27\x23\x24\x28\x27\x19\x1c\x1a\x1d\x1d\x1a\x21\x26\x26\x20\ \x2b\x2b\x28\x2e\x2e\x26\x2a\x27\x25\x22\x22\x25\x28\x26\x00\x00\ \x00\x1b\x2e\x3f\x15\x2a\x3f\x52\x6f\x86\x52\x71\x88\x2e\x4d\x66\ \x70\x93\xb1\x85\xaf\xd1\x83\xaf\xd2\x88\xaf\xd3\x89\xae\xd1\x83\ \xae\xd0\x82\xb0\xce\x86\xb1\xd1\x85\xaf\xd0\x84\xae\xcd\x86\xad\ \xcd\x89\xae\xce\x84\xa6\xc4\x5b\x73\x8c\x10\x1e\x30\x1b\x25\x34\ \x2f\x38\x49\x24\x2f\x44\x60\x76\x8b\x92\xb2\xc9\x94\xb9\xd4\x8f\ \xb8\xd3\x8a\xb1\xcf\x88\xb1\xd1\x8c\xb5\xd5\x8d\xb3\xd4\x8d\xaf\ \xd1\x8a\xac\xce\x88\xab\xcc\x87\xac\xcd\x88\xaf\xd1\x87\xb0\xd0\ \x84\xaa\xc8\x7b\x9f\xbc\x78\x9b\xba\x85\xa8\xc9\x8c\xad\xcb\x90\ \xad\xca\x86\xa3\xc3\x81\xa4\xc7\x88\xaf\xd2\x8f\xb3\xd4\x8c\xb0\ \xcf\x89\xab\xc8\x84\x9f\xb6\x6e\x84\x8f\x53\x61\x68\x40\x49\x50\ \x42\x4b\x53\x3a\x47\x4f\x33\x3f\x47\x28\x36\x40\x29\x3a\x3a\x2c\ \x37\x3a\x2d\x37\x38\x2d\x31\x31\x27\x27\x28\x30\x38\x37\x2c\x36\ \x35\x30\x38\x39\x2c\x32\x34\x2e\x31\x31\x27\x2c\x25\x2e\x32\x32\ \x31\x44\x45\x27\x36\x35\x27\x35\x36\x2c\x34\x35\x2a\x32\x33\x29\ \x37\x40\x25\x2c\x2b\x2f\x39\x37\x25\x24\x24\x2f\x38\x3c\x2a\x34\ \x34\x2b\x2f\x2c\x2d\x30\x31\x30\x34\x34\x29\x28\x28\x2f\x35\x33\ \x24\x2e\x30\x31\x3d\x40\x2b\x2e\x2e\x26\x2e\x2e\x2b\x33\x35\x28\ \x2e\x2c\x20\x26\x1f\x25\x2b\x2d\x30\x38\x3a\x30\x37\x3d\x25\x25\ \x29\x34\x3f\x40\x29\x2e\x2d\x23\x2a\x26\x26\x30\x32\x2d\x3b\x42\ \x27\x31\x33\x2b\x33\x32\x2a\x2f\x2f\x2c\x30\x2b\x24\x2b\x27\x24\ \x25\x23\x2c\x2f\x2e\x29\x30\x2e\x2e\x34\x2f\x26\x2b\x29\x28\x2b\ \x2a\x20\x25\x23\x23\x24\x22\x2e\x30\x2c\x25\x28\x27\x20\x22\x1e\ \x24\x25\x25\x26\x2c\x2a\x2b\x34\x31\x2c\x30\x31\x25\x2b\x2a\x28\ \x25\x26\x27\x27\x25\x23\x29\x27\x24\x25\x25\x22\x25\x20\x1a\x13\ \x13\x2c\x30\x2d\x27\x2c\x2a\x18\x1c\x1a\x1c\x20\x1e\x2e\x36\x38\ \x24\x25\x25\x24\x23\x23\x20\x23\x23\x23\x21\x1d\x1d\x21\x1d\x25\ \x2a\x24\x25\x2b\x27\x22\x1e\x1c\x1f\x20\x1f\x1d\x1e\x17\x1a\x18\ \x15\x22\x24\x20\x17\x15\x12\x27\x27\x24\x24\x27\x23\x1e\x1d\x1e\ \x1f\x21\x1e\x1a\x16\x10\x26\x26\x25\x26\x2b\x29\x28\x2a\x27\x1e\ \x23\x1f\x1e\x29\x2d\x26\x2e\x30\x23\x2b\x2e\x24\x27\x29\x26\x23\ \x27\x22\x22\x1e\x1f\x21\x1c\x24\x24\x25\x00\x00\x00\x1b\x2d\x3d\ \x09\x19\x29\x27\x3c\x4c\x35\x4d\x5e\x36\x51\x67\x72\x96\xb3\x89\ \xb1\xd3\x8a\xb2\xd5\x88\xad\xce\x83\xa9\xc9\x7e\xa6\xc5\x80\xab\ \xc8\x86\xb3\xd2\x89\xb7\xd8\x8c\xba\xda\x8c\xb8\xd8\x88\xb0\xd4\ \x86\xaa\xcf\x6e\x89\xaa\x21\x30\x4a\x13\x1d\x2f\x27\x31\x44\x28\ \x37\x4c\x5f\x78\x90\x93\xb4\xce\x98\xbe\xdc\x93\xbb\xd9\x8c\xb4\ \xd4\x8a\xb4\xd6\x90\xb9\xdc\x92\xb8\xda\x95\xb8\xd8\x95\xb6\xd7\ \x90\xb4\xd5\x88\xb1\xd4\x88\xb3\xd7\x8d\xb7\xd7\x8e\xb5\xd5\x8d\ \xb3\xd4\x8b\xb3\xd4\x8f\xb5\xd5\x93\xb6\xd3\x98\xb6\xd3\x96\xb4\ \xd4\x91\xb2\xd6\x90\xb6\xda\x8f\xb6\xd9\x98\xb7\xd0\x8f\xa1\xa5\ \x56\x6b\x6c\x3e\x50\x55\x2b\x3b\x40\x3c\x44\x4b\x39\x4b\x52\x34\ \x45\x49\x2c\x3c\x42\x25\x30\x2c\x20\x2e\x2e\x27\x28\x27\x39\x44\ \x49\x2e\x37\x38\x24\x24\x21\x34\x3c\x3e\x30\x3e\x3e\x2f\x38\x3a\ \x29\x30\x30\x2a\x30\x30\x2b\x35\x31\x2b\x34\x36\x2c\x35\x35\x37\ \x3f\x46\x2b\x3c\x3c\x30\x3b\x3d\x30\x37\x3e\x34\x3e\x47\x34\x3f\ \x3e\x2a\x2b\x26\x26\x29\x28\x2a\x2d\x34\x27\x31\x31\x2e\x35\x34\ \x2a\x2d\x2b\x2d\x30\x30\x26\x2a\x29\x28\x30\x32\x2a\x36\x3c\x2d\ \x3d\x3d\x3b\x4e\x53\x27\x35\x3b\x24\x29\x29\x28\x2e\x2b\x23\x31\ \x32\x24\x27\x24\x2c\x39\x3b\x29\x34\x33\x23\x26\x22\x34\x3c\x40\ \x2f\x37\x3a\x2a\x33\x33\x2c\x36\x3c\x2a\x2e\x2e\x29\x2e\x2c\x22\ \x2a\x24\x22\x27\x21\x29\x2d\x2a\x2b\x2d\x29\x2a\x30\x28\x27\x2a\ \x26\x24\x28\x25\x23\x25\x27\x26\x2e\x2e\x26\x2a\x28\x23\x25\x24\ \x28\x29\x2b\x27\x2f\x27\x27\x2c\x2a\x27\x2a\x2b\x1c\x24\x24\x1c\ \x1e\x1f\x25\x28\x25\x27\x2e\x2f\x29\x30\x31\x23\x25\x26\x31\x32\ \x34\x27\x2a\x2c\x25\x2a\x29\x21\x22\x1f\x17\x14\x14\x2d\x30\x2c\ \x2a\x31\x33\x18\x1f\x1d\x21\x21\x1c\x31\x31\x32\x27\x2a\x2c\x28\ \x2f\x33\x23\x2b\x2f\x1d\x1f\x1b\x26\x24\x23\x1f\x1c\x1c\x26\x25\ \x20\x29\x27\x20\x28\x2c\x23\x25\x22\x1c\x24\x27\x24\x22\x27\x23\ \x1e\x21\x1e\x28\x29\x2a\x24\x23\x22\x21\x22\x21\x1e\x1b\x18\x23\ \x24\x22\x22\x23\x21\x23\x24\x1f\x22\x29\x27\x23\x2a\x2d\x24\x32\ \x31\x23\x2b\x2d\x25\x28\x2a\x29\x21\x24\x22\x1d\x1b\x25\x24\x21\ \x2b\x2a\x28\x29\x29\x26\x00\x00\x00\x57\x6b\x82\x24\x33\x45\x0b\ \x1a\x2a\x1c\x2f\x40\x44\x63\x7a\x79\xa1\xc0\x86\xb0\xd2\x87\xae\ \xd1\x84\xa9\xc8\x75\x9a\xb7\x6a\x91\xac\x71\x99\xb5\x83\xab\xcc\ \x8d\xb9\xdb\x8b\xb8\xda\x88\xb6\xd7\x85\xb2\xd6\x83\xab\xd1\x75\ \x95\xb9\x41\x52\x71\x0f\x18\x2f\x16\x23\x36\x2d\x45\x58\x69\x8b\ \xa1\x8f\xb6\xd1\x95\xbd\xdd\x92\xba\xdc\x8e\xb8\xda\x89\xb7\xd9\ \x8c\xb9\xdc\x91\xbb\xdc\x96\xbc\xda\x98\xba\xdb\x90\xb6\xd9\x88\ \xb1\xd8\x86\xb2\xd8\x8a\xb5\xd8\x8e\xb7\xd8\x8d\xb7\xd8\x8d\xb8\ \xd9\x93\xbb\xdc\x99\xbb\xdc\x98\xb8\xd9\x96\xb6\xd8\x95\xb6\xda\ \x96\xb9\xd9\x93\xab\xbc\x67\x76\x7c\x40\x53\x5a\x3e\x4b\x4f\x40\ \x49\x50\x38\x44\x46\x35\x41\x47\x35\x40\x47\x31\x3d\x44\x30\x41\ \x47\x30\x40\x45\x24\x31\x32\x23\x29\x26\x38\x44\x4d\x2f\x3b\x3e\ \x22\x23\x21\x36\x3b\x3f\x32\x38\x3a\x2a\x2e\x2f\x25\x2d\x2c\x2e\ \x39\x3b\x2c\x38\x3e\x25\x2a\x28\x2e\x39\x39\x2d\x31\x35\x2d\x34\ \x33\x2c\x32\x31\x28\x2f\x2b\x2d\x35\x39\x32\x3d\x42\x2c\x32\x31\ \x2a\x2c\x2e\x32\x37\x3c\x29\x30\x30\x2c\x2f\x30\x28\x32\x31\x27\ \x31\x31\x29\x32\x2e\x2e\x3d\x3f\x2a\x32\x35\x29\x2f\x31\x29\x35\ \x3a\x29\x2e\x31\x29\x2e\x2f\x2d\x37\x3e\x27\x36\x39\x26\x28\x25\ \x30\x39\x3f\x25\x32\x33\x1d\x22\x1e\x2e\x3b\x41\x2d\x32\x31\x2a\ \x2e\x2c\x27\x2b\x2d\x28\x2d\x2a\x25\x28\x22\x2a\x2d\x2c\x20\x27\ \x26\x24\x23\x22\x29\x2c\x2b\x2b\x2d\x2c\x28\x2d\x2e\x23\x26\x26\ \x22\x29\x2b\x29\x30\x30\x24\x30\x2c\x24\x2a\x25\x26\x2c\x27\x2a\ \x32\x2c\x2a\x2e\x2a\x28\x29\x2b\x28\x27\x22\x27\x2e\x2b\x27\x2c\ \x2a\x27\x2e\x2d\x27\x25\x25\x27\x27\x27\x2a\x2d\x2d\x29\x37\x35\ \x24\x24\x23\x23\x24\x23\x13\x16\x15\x2b\x2f\x29\x29\x2f\x30\x1e\ \x1f\x1f\x1c\x1e\x17\x2a\x34\x32\x2d\x32\x32\x24\x2c\x2f\x27\x29\ \x24\x27\x2e\x28\x25\x28\x25\x1f\x1c\x15\x1d\x18\x15\x24\x28\x24\ \x26\x27\x29\x24\x28\x26\x20\x24\x22\x21\x1b\x19\x25\x2c\x2c\x23\ \x25\x26\x2a\x2b\x28\x21\x19\x16\x24\x25\x21\x25\x28\x28\x1f\x20\ \x21\x1e\x2b\x2c\x26\x32\x36\x28\x31\x37\x23\x27\x2b\x23\x26\x26\ \x1f\x1f\x1f\x29\x21\x1c\x26\x1e\x17\x2c\x23\x1f\x2f\x2a\x29\x2a\ \x2c\x27\x00\x00\x00\x82\x9e\xbc\x5f\x75\x8d\x20\x34\x47\x26\x3b\ \x50\x5e\x7f\x99\x7f\xa7\xc9\x82\xab\xcf\x86\xad\xce\x7e\xa5\xc2\ \x65\x8a\xa2\x46\x69\x83\x5a\x7e\x9a\x80\xa4\xc4\x8d\xb5\xd4\x86\ \xb1\xd3\x84\xae\xd3\x83\xaf\xd4\x84\xaf\xd1\x79\x9d\xbe\x5d\x77\ \x96\x35\x46\x61\x32\x46\x5e\x58\x76\x8d\x7d\xa5\xbd\x8b\xb3\xcf\ \x92\xb7\xd9\x93\xb9\xdc\x91\xb9\xdc\x8a\xb7\xd9\x87\xb7\xd8\x88\ \xb9\xd8\x8e\xba\xd9\x94\xba\xdd\x90\xb7\xdd\x8c\xb3\xda\x87\xb2\ \xd6\x86\xb4\xd6\x88\xb5\xd4\x8e\xb7\xd7\x90\xbb\xda\x93\xbc\xdc\ \x96\xbb\xdd\x96\xb9\xdb\x92\xb5\xd6\x9b\xb0\xc2\x6d\x7b\x81\x47\ \x56\x5a\x3f\x4a\x51\x3d\x4a\x52\x3d\x48\x4f\x34\x45\x4b\x2a\x3a\ \x40\x2d\x3b\x43\x2e\x3d\x3f\x2d\x36\x33\x27\x2e\x2d\x2a\x31\x33\ \x25\x31\x35\x22\x2f\x2b\x39\x46\x4e\x33\x3c\x3f\x25\x25\x24\x2d\ \x35\x3a\x33\x3b\x3e\x2e\x34\x34\x2c\x32\x34\x31\x3d\x45\x2c\x34\ \x38\x2f\x35\x34\x2d\x39\x3f\x26\x2c\x2d\x2e\x38\x37\x2f\x35\x30\ \x2c\x2e\x2e\x30\x37\x37\x26\x2d\x2b\x2b\x2f\x2e\x2a\x32\x2f\x26\ \x29\x29\x2d\x2f\x2f\x31\x38\x31\x25\x31\x30\x25\x2a\x23\x27\x31\ \x30\x2c\x34\x37\x2d\x3d\x3e\x30\x40\x46\x2c\x36\x38\x2b\x32\x33\ \x27\x2d\x33\x24\x30\x30\x23\x2c\x28\x1f\x1f\x1a\x2e\x37\x36\x23\ \x2b\x2f\x1a\x20\x1c\x2f\x36\x38\x29\x35\x37\x23\x2b\x2e\x2c\x30\ \x32\x2c\x35\x38\x29\x2d\x27\x28\x27\x26\x30\x2c\x2d\x2b\x2c\x29\ \x2a\x2f\x28\x25\x2d\x2a\x28\x26\x24\x2f\x34\x38\x27\x30\x34\x27\ \x2e\x30\x20\x28\x28\x24\x29\x28\x25\x2c\x2a\x21\x24\x22\x27\x2f\ \x2d\x2a\x28\x29\x29\x2b\x2c\x26\x2d\x29\x27\x2b\x25\x27\x29\x28\ \x24\x29\x28\x2c\x26\x23\x26\x2a\x28\x26\x2b\x30\x26\x2f\x31\x26\ \x2d\x2f\x14\x14\x14\x2c\x2e\x2c\x2d\x2c\x2b\x1c\x1f\x1f\x1e\x1f\ \x1d\x2c\x34\x31\x2d\x32\x33\x25\x2c\x2b\x2a\x2a\x23\x33\x2d\x2d\ \x27\x25\x20\x27\x25\x1e\x28\x28\x25\x29\x2d\x30\x27\x2f\x31\x27\ \x28\x2a\x20\x20\x1d\x1d\x1b\x1a\x2d\x37\x34\x23\x22\x21\x24\x26\ \x23\x27\x2c\x2b\x24\x2a\x2c\x28\x32\x34\x27\x2d\x31\x21\x29\x2d\ \x28\x2e\x2e\x28\x27\x27\x25\x22\x1e\x22\x25\x23\x24\x23\x1e\x2c\ \x24\x1f\x2d\x2b\x24\x30\x32\x2f\x33\x33\x33\x2c\x30\x2f\x00\x00\ \x00\x8b\xae\xcd\x80\x9f\xbb\x59\x73\x8e\x2e\x47\x60\x63\x84\xa0\ \x7e\xa6\xc6\x82\xad\xcf\x84\xaf\xcf\x7e\xaa\xc6\x6d\x95\xb0\x5f\ \x82\xa2\x6a\x8d\xaf\x82\xa7\xc7\x87\xb0\xcf\x7f\xae\xce\x7b\xa8\ \xcd\x82\xac\xd1\x83\xad\xd0\x7b\xa6\xc6\x71\x96\xb6\x64\x83\xa5\ \x6b\x89\xab\x7d\xa1\xbe\x86\xae\xc7\x8c\xb1\xce\x92\xb5\xd7\x93\ \xb8\xda\x8f\xb6\xd8\x87\xb5\xd5\x80\xb3\xd5\x7f\xb5\xd3\x81\xb3\ \xd3\x87\xb4\xd7\x8a\xb3\xd8\x89\xb0\xd5\x86\xb1\xd5\x85\xb4\xd4\ \x89\xb6\xd3\x90\xb9\xd4\x91\xb8\xd4\x96\xba\xd8\x95\xba\xda\x94\ \xb8\xd5\x81\x99\xa1\x48\x5c\x5e\x3e\x4a\x52\x3c\x4a\x4d\x3f\x46\ \x4e\x31\x3c\x40\x2e\x3c\x3c\x2f\x38\x41\x37\x42\x4b\x2a\x2f\x32\ \x31\x36\x35\x35\x3d\x41\x2d\x32\x31\x33\x3a\x3a\x2b\x39\x3b\x1e\ \x26\x27\x38\x3b\x3e\x32\x3a\x3e\x26\x29\x24\x35\x3c\x46\x32\x40\ \x40\x29\x2f\x2b\x2e\x2f\x32\x2c\x37\x3c\x2a\x30\x32\x33\x37\x3b\ \x2c\x3b\x3e\x2e\x35\x36\x32\x37\x3a\x32\x3f\x46\x28\x35\x35\x30\ \x38\x3c\x30\x35\x34\x2e\x32\x31\x29\x35\x31\x2a\x2d\x2f\x2d\x34\ \x36\x24\x31\x31\x29\x2b\x2d\x2d\x30\x30\x30\x35\x37\x34\x3b\x40\ \x28\x33\x35\x2a\x32\x30\x2d\x33\x32\x28\x32\x32\x25\x32\x34\x2c\ \x3c\x42\x27\x2d\x31\x1f\x1d\x1e\x33\x39\x3b\x2d\x36\x39\x22\x22\ \x1e\x32\x3c\x3f\x2d\x38\x3d\x27\x2d\x2e\x24\x26\x23\x22\x28\x28\ \x2c\x32\x33\x28\x2a\x23\x32\x33\x32\x33\x35\x33\x2f\x33\x31\x30\ \x36\x32\x23\x28\x24\x28\x2a\x2b\x28\x33\x39\x28\x33\x3a\x28\x2e\ \x38\x2e\x31\x30\x22\x29\x26\x29\x2e\x2e\x24\x2a\x27\x26\x2d\x2d\ \x26\x2c\x2b\x23\x2b\x25\x29\x2d\x2a\x2a\x31\x2f\x25\x2a\x29\x20\ \x20\x1c\x22\x29\x29\x22\x29\x28\x25\x2a\x27\x26\x26\x28\x15\x14\ \x14\x27\x2c\x2d\x25\x2c\x28\x1b\x1f\x18\x26\x2c\x2e\x32\x3a\x41\ \x2a\x2d\x2d\x26\x23\x22\x27\x24\x23\x24\x29\x20\x21\x22\x1f\x22\ \x26\x24\x23\x29\x29\x21\x23\x21\x28\x27\x24\x2e\x2c\x27\x22\x24\ \x1e\x23\x21\x1e\x1e\x1d\x1b\x1f\x20\x1f\x26\x2d\x30\x27\x2c\x2e\ \x25\x2f\x31\x23\x2f\x31\x23\x26\x2c\x22\x28\x2a\x27\x26\x27\x23\ \x27\x23\x2a\x29\x28\x2f\x2f\x2a\x2f\x28\x27\x33\x2e\x29\x34\x37\ \x32\x33\x3c\x3a\x30\x36\x35\x31\x37\x35\x00\x00\x00\x88\xb2\xd1\ \x89\xb0\xcf\x7d\x9c\xbd\x42\x5e\x7a\x47\x67\x84\x7b\xa6\xc2\x82\ \xb0\xcd\x87\xb3\xd3\x80\xac\xcd\x79\xa4\xc3\x77\x9d\xbf\x7c\xa3\ \xc5\x83\xab\xcc\x83\xae\xce\x7d\xac\xce\x7b\xa7\xcc\x83\xa9\xd0\ \x83\xac\xd2\x7d\xa9\xcc\x77\xa4\xc5\x7c\xa6\xc8\x80\xa9\xcd\x84\ \xac\xcc\x87\xaf\xce\x8c\xb1\xd2\x8f\xb5\xd7\x8f\xb8\xd9\x8d\xb7\ \xd7\x85\xb3\xd5\x7c\xb1\xd2\x79\xb0\xcf\x7b\xb0\xcd\x80\xaf\xd0\ \x87\xb1\xd4\x88\xaf\xd1\x8a\xb1\xd4\x88\xb4\xd3\x8b\xb7\xd1\x8d\ \xb8\xd0\x8e\xb7\xd3\x9d\xbd\xd6\x89\xa1\xaf\x53\x66\x66\x43\x4b\ \x4e\x43\x4e\x51\x39\x49\x4e\x3a\x47\x4f\x35\x41\x45\x32\x3e\x40\ \x35\x3f\x3e\x2d\x38\x3e\x31\x3a\x3c\x30\x31\x32\x35\x3c\x3b\x39\ \x3e\x44\x33\x3c\x38\x2f\x35\x35\x2d\x39\x3e\x1a\x22\x21\x2e\x33\ \x36\x2f\x37\x3a\x28\x28\x24\x31\x3a\x3e\x2c\x3b\x3a\x2d\x38\x39\ \x2c\x36\x3a\x2a\x36\x39\x32\x3d\x39\x3a\x3e\x40\x2d\x33\x34\x2b\ \x30\x33\x2b\x33\x32\x2b\x36\x39\x2b\x2f\x2f\x2d\x31\x32\x2c\x31\ \x30\x2b\x2d\x2d\x2a\x2d\x2e\x2e\x31\x31\x2c\x36\x3b\x29\x2d\x31\ \x2b\x30\x2f\x2b\x30\x30\x2e\x36\x32\x2a\x30\x2e\x22\x2c\x26\x2f\ \x39\x38\x33\x37\x35\x2b\x34\x34\x26\x2d\x2d\x2d\x3e\x3b\x29\x2f\ \x32\x20\x23\x1f\x31\x3d\x3e\x29\x37\x38\x20\x23\x21\x2e\x37\x3b\ \x29\x30\x32\x30\x36\x37\x2b\x2b\x2a\x20\x25\x20\x2a\x31\x2f\x23\ \x29\x29\x26\x2d\x2e\x24\x21\x22\x22\x25\x25\x26\x2d\x2b\x20\x22\ \x1d\x20\x27\x28\x25\x2c\x29\x22\x2c\x25\x29\x2c\x29\x2f\x30\x2b\ \x2f\x32\x30\x28\x29\x25\x2c\x2e\x2c\x1f\x27\x29\x25\x28\x23\x32\ \x35\x36\x2d\x34\x33\x2c\x33\x36\x22\x28\x28\x2f\x2d\x2e\x26\x29\ \x26\x25\x2c\x2d\x2a\x30\x37\x25\x2a\x29\x11\x13\x11\x26\x29\x28\ \x27\x2f\x29\x23\x21\x1a\x1c\x1f\x1d\x2e\x3d\x3e\x27\x28\x25\x2a\ \x28\x29\x28\x25\x26\x25\x23\x1c\x2c\x2f\x2b\x21\x25\x21\x20\x23\ \x19\x22\x23\x1c\x21\x25\x1f\x23\x23\x25\x25\x2c\x28\x24\x28\x2a\ \x25\x28\x2c\x30\x38\x3d\x25\x2a\x2e\x27\x2c\x2b\x25\x2b\x2f\x24\ \x2b\x2e\x26\x2d\x2e\x2e\x35\x2f\x2a\x25\x23\x2a\x2b\x24\x2c\x2e\ \x2d\x2f\x29\x25\x30\x2f\x2b\x31\x36\x30\x30\x37\x2f\x34\x39\x35\ \x2d\x31\x32\x28\x34\x33\x00\x00\x00\x88\xb5\xd4\x87\xb2\xd2\x86\ \xab\xcc\x59\x78\x95\x2b\x4a\x64\x6b\x91\xa9\x87\xaf\xce\x89\xb1\ \xd4\x84\xac\xd1\x83\xaa\xcd\x82\xaa\xcb\x81\xac\xcd\x82\xac\xce\ \x85\xab\xce\x84\xab\xd0\x83\xa9\xcf\x88\xaa\xd5\x86\xac\xd6\x7f\ \xac\xcf\x7d\xad\xcc\x7f\xad\xcb\x83\xae\xce\x88\xaf\xd1\x8a\xb1\ \xd2\x8c\xb3\xd4\x8d\xb6\xd7\x8d\xb5\xd4\x8e\xb4\xd3\x86\xb2\xd1\ \x7b\xb0\xd0\x77\xaf\xcd\x7a\xad\xcb\x7f\xaf\xce\x86\xaf\xcf\x88\ \xae\xce\x8c\xb0\xd0\x8c\xb3\xd2\x8b\xb4\xce\x95\xba\xcf\x91\xa4\ \xa8\x5a\x6c\x6e\x42\x4f\x50\x43\x4c\x4e\x36\x41\x3b\x3a\x45\x49\ \x32\x40\x43\x37\x43\x42\x34\x3e\x3e\x31\x38\x39\x34\x3a\x3d\x36\ \x3b\x41\x32\x39\x38\x33\x36\x38\x37\x44\x48\x2b\x31\x2d\x31\x36\ \x3b\x30\x41\x42\x2b\x33\x36\x29\x2a\x2b\x31\x37\x39\x2d\x38\x3a\ \x28\x32\x30\x2d\x34\x34\x36\x41\x46\x37\x43\x41\x2e\x37\x38\x2c\ \x33\x36\x2d\x31\x32\x2a\x35\x38\x26\x2b\x29\x37\x40\x44\x2e\x38\ \x39\x29\x33\x35\x2d\x34\x32\x31\x34\x34\x2f\x34\x35\x2e\x38\x3a\ \x2c\x31\x32\x2c\x30\x2d\x27\x2b\x29\x2d\x34\x32\x2d\x31\x2e\x26\ \x2e\x2b\x29\x31\x2e\x2a\x35\x39\x28\x34\x38\x2b\x30\x31\x2b\x37\ \x34\x2e\x39\x39\x25\x2e\x2d\x22\x2b\x2a\x23\x30\x33\x20\x23\x22\ \x33\x3a\x3d\x2a\x34\x35\x27\x1f\x1e\x29\x2e\x2e\x28\x2e\x2a\x28\ \x2e\x29\x28\x26\x24\x25\x29\x27\x1d\x24\x24\x27\x33\x39\x1f\x27\ \x24\x27\x2b\x27\x26\x2a\x2c\x23\x2d\x2e\x27\x31\x33\x28\x2c\x29\ \x28\x2c\x2b\x28\x27\x25\x26\x26\x23\x2f\x33\x2f\x30\x39\x3a\x2b\ \x2b\x2b\x28\x2a\x24\x2f\x30\x31\x25\x30\x31\x25\x27\x2a\x2e\x35\ \x3b\x28\x2b\x2e\x26\x2a\x25\x28\x2e\x2f\x2b\x2d\x2b\x28\x32\x34\ \x27\x28\x2c\x28\x29\x29\x18\x16\x13\x2b\x2b\x26\x2e\x2f\x2c\x20\ \x20\x1f\x14\x17\x13\x29\x30\x32\x28\x29\x25\x27\x29\x22\x24\x23\ \x1e\x22\x22\x21\x2c\x32\x2d\x26\x2a\x26\x25\x26\x24\x1f\x25\x1c\ \x1d\x20\x19\x1b\x20\x20\x26\x32\x32\x27\x33\x36\x1d\x24\x22\x2b\ \x2d\x30\x26\x29\x26\x24\x27\x2a\x24\x27\x28\x25\x22\x1e\x2e\x34\ \x33\x2e\x2d\x28\x31\x32\x30\x34\x3f\x40\x30\x38\x3b\x31\x34\x31\ \x32\x31\x2f\x31\x31\x2d\x30\x37\x34\x26\x31\x2f\x22\x2b\x2c\x2b\ \x30\x2f\x00\x00\x00\x84\xb3\xd1\x83\xb2\xd1\x83\xaf\xcc\x65\x8a\ \xa4\x25\x42\x5a\x4e\x6e\x86\x88\xaa\xcb\x8a\xae\xd5\x88\xae\xd4\ \x86\xad\xce\x84\xae\xce\x81\xaf\xd0\x80\xad\xd0\x81\xab\xce\x84\ \xa9\xce\x85\xa9\xd0\x89\xae\xd5\x85\xb0\xd4\x80\xb0\xd0\x83\xb3\ \xcd\x86\xb3\xcd\x89\xb0\xcf\x8e\xb2\xd3\x8f\xb3\xd5\x8d\xb7\xd7\ \x8a\xb8\xd6\x8c\xb7\xd2\x91\xb5\xd2\x8a\xb2\xd0\x7e\xaf\xcf\x79\ \xaf\xcd\x7b\xad\xcd\x80\xae\xce\x86\xaf\xcf\x8a\xb0\xce\x8e\xaf\ \xcf\x96\xb6\xd4\x90\xab\xbb\x66\x7b\x7e\x45\x4f\x5c\x3f\x4c\x4f\ \x3e\x49\x4d\x36\x45\x48\x31\x47\x47\x24\x3a\x32\x30\x3e\x3f\x29\ \x2f\x2e\x39\x39\x39\x34\x3c\x39\x2e\x33\x2e\x31\x38\x36\x3c\x42\ \x44\x39\x40\x49\x34\x42\x49\x3c\x44\x4c\x2a\x35\x38\x31\x3a\x3b\ \x2e\x35\x38\x24\x29\x28\x31\x36\x35\x34\x3c\x3d\x26\x2d\x2b\x2a\ \x2f\x2f\x32\x3d\x39\x2b\x3d\x3d\x30\x3c\x3f\x35\x43\x47\x31\x39\ \x37\x31\x3d\x3b\x2f\x2e\x32\x2e\x2f\x34\x2d\x38\x3c\x2f\x32\x2f\ \x2e\x34\x35\x31\x3b\x3e\x2f\x31\x34\x34\x37\x35\x2f\x34\x33\x2e\ \x31\x2c\x2e\x35\x33\x31\x36\x36\x28\x2d\x2a\x29\x2c\x2d\x2d\x32\ \x36\x2b\x37\x36\x26\x29\x26\x2b\x30\x2b\x2a\x2d\x2b\x2d\x36\x34\ \x2a\x32\x2f\x24\x29\x2a\x27\x30\x31\x24\x24\x23\x3b\x42\x46\x2f\ \x3c\x40\x1c\x21\x1d\x30\x34\x36\x2b\x3a\x37\x25\x2c\x25\x2f\x34\ \x3a\x29\x2f\x32\x28\x27\x29\x24\x2f\x34\x23\x2a\x2a\x23\x24\x27\ \x29\x2d\x2c\x29\x2c\x2a\x2c\x2e\x32\x24\x25\x27\x24\x28\x26\x2f\ \x32\x32\x2a\x2d\x2a\x2c\x35\x30\x2a\x2e\x2b\x2a\x29\x25\x2e\x31\ \x2a\x2a\x2b\x2a\x22\x24\x21\x23\x28\x23\x27\x25\x28\x28\x2b\x29\ \x2c\x33\x31\x29\x27\x28\x2a\x2d\x2d\x2f\x34\x33\x22\x29\x21\x1f\ \x25\x20\x18\x18\x16\x24\x30\x2c\x2e\x31\x2f\x26\x24\x1f\x1b\x17\ \x13\x2a\x28\x28\x2a\x2e\x2a\x27\x30\x2b\x26\x2c\x29\x1d\x1d\x1a\ \x24\x27\x21\x27\x2c\x2a\x26\x29\x2c\x23\x27\x22\x25\x2a\x2b\x27\ \x2a\x2e\x24\x2d\x2d\x23\x2a\x2c\x23\x29\x28\x2a\x2e\x2c\x25\x2d\ \x28\x28\x2d\x2b\x2a\x28\x25\x28\x25\x1e\x30\x27\x21\x34\x30\x2a\ \x3a\x37\x37\x32\x35\x30\x32\x32\x34\x2f\x38\x36\x33\x33\x33\x2c\ \x34\x30\x25\x2d\x2d\x25\x28\x28\x2a\x38\x36\x2e\x35\x32\x00\x00\ \x00\x7c\xab\xc9\x80\xb1\xcb\x83\xb3\xcc\x6f\x98\xaf\x25\x43\x5a\ \x35\x51\x6b\x80\xa0\xc1\x8b\xae\xd4\x87\xaf\xd2\x84\xb0\xcf\x83\ \xb0\xce\x82\xb0\xd2\x82\xaf\xd4\x7f\xad\xcf\x7e\xa9\xcb\x7c\xa8\ \xcb\x7f\xac\xcd\x80\xb1\xcd\x82\xb5\xcc\x84\xb3\xcb\x8c\xb5\xce\ \x91\xb5\xd4\x92\xb5\xd8\x92\xb7\xd9\x8d\xba\xd8\x8a\xba\xd6\x8e\ \xb9\xd3\x94\xb9\xd4\x92\xb7\xd5\x89\xb4\xd3\x84\xb3\xd2\x85\xb2\ \xd5\x87\xb1\xd6\x8c\xb3\xd5\x93\xb3\xd3\x96\xaa\xb7\x75\x83\x87\ \x4a\x5b\x5d\x3f\x4a\x50\x3f\x44\x48\x39\x44\x48\x36\x40\x47\x32\ \x40\x49\x33\x41\x46\x35\x43\x46\x3a\x41\x43\x38\x35\x38\x3c\x47\ \x41\x38\x43\x43\x32\x36\x38\x33\x3d\x37\x2f\x35\x30\x39\x3f\x42\ \x30\x3a\x3b\x2b\x34\x35\x2e\x3b\x3c\x32\x3f\x47\x27\x2b\x2a\x29\ \x34\x38\x29\x30\x33\x35\x3c\x3c\x2f\x3b\x38\x22\x23\x23\x35\x3f\ \x45\x35\x41\x43\x30\x37\x3e\x34\x40\x43\x2c\x36\x34\x2e\x39\x3e\ \x28\x2e\x2f\x2f\x30\x32\x25\x2e\x2d\x2c\x31\x2f\x36\x3b\x38\x30\ \x33\x33\x31\x3a\x3d\x2e\x35\x36\x31\x38\x36\x32\x3b\x3a\x2a\x32\ \x2f\x2a\x2c\x2d\x20\x2a\x2e\x2b\x34\x34\x28\x31\x34\x29\x35\x35\ \x27\x30\x2a\x2a\x33\x32\x26\x2b\x25\x28\x2e\x2b\x2d\x38\x38\x2e\ \x39\x39\x28\x31\x30\x22\x26\x29\x31\x37\x35\x27\x33\x33\x21\x23\ \x22\x29\x30\x31\x29\x35\x32\x2b\x35\x33\x28\x2e\x2d\x23\x2f\x2d\ \x25\x2d\x2e\x27\x28\x2a\x23\x29\x23\x25\x23\x23\x28\x2e\x2a\x24\ \x2b\x29\x24\x29\x22\x2b\x29\x2c\x38\x3b\x3e\x30\x35\x38\x27\x2d\ \x29\x27\x25\x22\x27\x2a\x2a\x28\x29\x26\x28\x28\x23\x2b\x33\x32\ \x2a\x2f\x2b\x26\x24\x26\x22\x20\x1f\x28\x2b\x2a\x20\x22\x22\x27\ \x2a\x25\x2b\x2c\x26\x21\x27\x22\x24\x2a\x28\x25\x2d\x28\x19\x18\ \x13\x23\x28\x26\x2a\x2c\x2d\x25\x24\x24\x1a\x19\x15\x2e\x2f\x2d\ \x28\x31\x2e\x27\x2a\x23\x24\x23\x23\x25\x2a\x23\x1c\x22\x1c\x20\ \x2b\x29\x24\x2a\x2e\x22\x28\x29\x23\x29\x2a\x27\x2a\x2a\x24\x29\ \x24\x24\x28\x2a\x25\x29\x26\x27\x2f\x2a\x2c\x32\x30\x35\x31\x2d\ \x2e\x30\x2c\x2e\x2e\x2c\x28\x2e\x26\x2e\x2a\x28\x32\x33\x2e\x30\ \x2d\x32\x2f\x30\x33\x2b\x2f\x32\x25\x2e\x2c\x23\x2d\x2c\x23\x2a\ \x29\x27\x2b\x2b\x2c\x30\x2d\x30\x39\x3c\x00\x00\x00\x69\x93\xae\ \x7b\xab\xc2\x81\xb3\xca\x76\xa0\xb6\x2b\x4a\x60\x2a\x46\x61\x7a\ \x9d\xbc\x8c\xb0\xd2\x8a\xb0\xd3\x85\xb1\xcf\x82\xb1\xce\x85\xb1\ \xd4\x84\xaf\xd3\x80\xac\xce\x7c\xa7\xc6\x79\xa8\xc6\x7b\xac\xc6\ \x80\xb3\xca\x84\xb6\xcc\x8b\xb5\xcf\x90\xb4\xd4\x92\xb4\xd6\x8f\ \xb6\xd9\x8f\xb9\xdb\x8f\xb9\xd9\x8b\xb6\xd4\x8c\xb5\xd2\x92\xb7\ \xd3\x93\xb6\xd6\x90\xb4\xd6\x90\xb3\xd6\x8e\xb4\xd6\x8e\xb3\xd7\ \x97\xb6\xd3\x83\x95\x97\x45\x58\x5c\x3c\x4a\x4f\x3d\x4a\x4f\x3a\ \x4b\x4e\x34\x41\x48\x32\x41\x49\x33\x42\x48\x2c\x3a\x3d\x31\x3d\ \x3e\x32\x3b\x35\x35\x3d\x3d\x3a\x3d\x3d\x3d\x43\x43\x39\x41\x3e\ \x38\x3f\x3d\x3e\x42\x3f\x31\x36\x33\x2b\x2f\x2c\x34\x42\x42\x2c\ \x3c\x44\x2d\x37\x3c\x37\x44\x46\x2e\x32\x2e\x2c\x39\x35\x2a\x30\ \x31\x3c\x42\x41\x31\x3b\x3e\x27\x2e\x32\x3e\x48\x53\x37\x47\x4a\ \x28\x31\x30\x3c\x45\x4e\x38\x4c\x50\x35\x44\x49\x2a\x2d\x2d\x32\ \x36\x34\x2d\x36\x38\x29\x33\x32\x32\x37\x38\x34\x3b\x3d\x2d\x30\ \x30\x2b\x30\x2e\x26\x2a\x29\x2e\x2f\x34\x29\x2f\x30\x2a\x31\x32\ \x29\x34\x36\x33\x46\x4f\x2c\x32\x30\x29\x2b\x2b\x36\x39\x3b\x2c\ \x33\x32\x35\x37\x38\x26\x2c\x2b\x30\x3b\x3d\x29\x31\x2e\x2b\x31\ \x35\x1c\x1f\x21\x30\x35\x35\x2a\x38\x37\x23\x27\x28\x29\x2b\x2b\ \x2f\x3b\x3b\x2b\x34\x34\x25\x2a\x2d\x2a\x2c\x2b\x2d\x2b\x2e\x27\ \x2f\x32\x2a\x32\x31\x25\x2b\x27\x2c\x34\x33\x2d\x2c\x2c\x25\x2b\ \x26\x2c\x2c\x2b\x25\x29\x27\x2d\x2e\x2c\x2c\x2c\x2c\x28\x2f\x30\ \x25\x27\x26\x30\x2f\x30\x2a\x30\x2f\x25\x27\x24\x2d\x31\x2e\x2b\ \x30\x2e\x2d\x34\x30\x2b\x30\x31\x20\x20\x1a\x2a\x28\x24\x2a\x30\ \x2e\x2c\x34\x34\x2a\x32\x34\x28\x2b\x2b\x18\x19\x14\x1c\x1c\x1b\ \x2b\x2f\x2f\x25\x26\x26\x1c\x19\x17\x27\x29\x24\x28\x2e\x2b\x1d\ \x1c\x18\x2d\x2c\x31\x26\x2b\x2c\x22\x25\x25\x29\x2b\x29\x27\x2c\ \x2e\x2a\x2f\x30\x23\x2e\x30\x23\x26\x27\x29\x2c\x2a\x26\x29\x2b\ \x29\x2b\x2a\x2b\x28\x25\x2e\x2a\x28\x2e\x2d\x26\x37\x36\x2f\x2e\ \x32\x2b\x2f\x33\x32\x31\x30\x2e\x2e\x34\x32\x2e\x34\x32\x28\x2f\ \x2d\x23\x26\x27\x28\x28\x24\x27\x29\x26\x2b\x30\x2d\x2d\x30\x2e\ \x31\x3b\x38\x30\x35\x34\x00\x00\x00\x48\x65\x7c\x75\x9b\xb2\x83\ \xb1\xc6\x7a\xa1\xb7\x2e\x4c\x60\x2b\x49\x61\x7d\xa3\xbf\x88\xb2\ \xd1\x8b\xb4\xd3\x8a\xb2\xd2\x87\xaf\xd1\x89\xb1\xd3\x82\xac\xd1\ \x7b\xa6\xc7\x79\xa0\xc0\x76\xa0\xbc\x7a\xa7\xc0\x7f\xaf\xc7\x87\ \xb3\xcb\x8c\xb2\xd1\x90\xb3\xd7\x8c\xb3\xd6\x88\xb4\xd6\x8a\xb8\ \xd8\x85\xaf\xce\x7f\xa5\xc4\x83\xae\xc9\x8e\xb5\xd3\x8f\xb3\xd1\ \x8d\xae\xcf\x8e\xb0\xce\x90\xb3\xcd\x87\xa0\xaf\x59\x67\x6b\x3e\ \x4e\x50\x3c\x49\x50\x3c\x49\x4c\x36\x44\x4d\x34\x41\x48\x3e\x52\ \x5b\x2e\x3e\x42\x2e\x34\x38\x43\x4b\x4f\x38\x3d\x40\x31\x38\x3b\ \x2b\x30\x2a\x3c\x3e\x43\x3c\x3e\x3e\x36\x3d\x39\x32\x36\x3a\x34\ \x3a\x38\x30\x3e\x3f\x2b\x2c\x25\x32\x3d\x3b\x33\x3f\x46\x2f\x32\ \x34\x3b\x4c\x56\x33\x45\x44\x2c\x3a\x3f\x22\x2a\x27\x3e\x42\x46\ \x31\x3e\x42\x22\x27\x27\x39\x43\x47\x35\x3c\x3a\x33\x36\x39\x35\ \x43\x47\x2a\x38\x38\x20\x2c\x31\x2f\x34\x39\x2a\x38\x39\x26\x33\ \x35\x2a\x36\x33\x34\x3e\x3e\x31\x34\x33\x34\x3d\x46\x2c\x33\x30\ \x2f\x2f\x31\x2f\x3a\x39\x35\x3d\x3e\x2c\x30\x2c\x27\x2b\x27\x27\ \x32\x35\x28\x29\x27\x2d\x2d\x2f\x2b\x32\x32\x34\x40\x44\x2c\x38\ \x37\x2c\x2e\x2a\x24\x2d\x2c\x31\x3b\x3d\x2c\x39\x3f\x18\x1f\x1c\ \x33\x35\x36\x2c\x32\x34\x20\x24\x20\x2c\x33\x33\x32\x37\x35\x28\ \x2b\x2d\x23\x27\x25\x24\x2a\x26\x25\x25\x22\x29\x2e\x2c\x2b\x30\ \x31\x28\x2b\x30\x2b\x36\x2f\x2a\x2b\x2b\x2c\x37\x37\x29\x2c\x2d\ \x27\x2f\x2f\x2c\x2f\x30\x2d\x39\x3b\x29\x31\x34\x2a\x2a\x26\x33\ \x32\x2f\x2d\x32\x31\x2c\x31\x2e\x32\x36\x39\x2a\x2a\x25\x2e\x32\ \x2d\x25\x25\x24\x24\x23\x1c\x2e\x2a\x2b\x2a\x2d\x2a\x2b\x32\x34\ \x27\x2d\x2b\x26\x2e\x2d\x16\x19\x10\x1f\x24\x23\x27\x30\x2b\x27\ \x2b\x28\x17\x19\x11\x26\x25\x28\x2a\x2d\x2c\x21\x2b\x27\x2a\x34\ \x38\x28\x2f\x30\x27\x2e\x2e\x26\x26\x27\x28\x27\x2a\x23\x25\x24\ \x23\x25\x23\x23\x22\x22\x2b\x29\x29\x2b\x28\x2a\x2c\x2b\x27\x30\ \x2f\x2a\x33\x31\x2f\x34\x2e\x2b\x38\x33\x2f\x2c\x35\x36\x2b\x38\ \x39\x28\x2d\x2e\x2c\x30\x33\x2a\x33\x35\x27\x2f\x2f\x29\x32\x2d\ \x2c\x32\x2f\x2a\x34\x2f\x35\x37\x37\x39\x40\x3c\x33\x34\x33\x35\ \x3c\x37\x00\x00\x00\x29\x3c\x51\x61\x7d\x93\x84\xa6\xbd\x77\x96\ \xb0\x31\x4b\x64\x30\x4e\x65\x7f\xa7\xbf\x86\xb4\xce\x89\xb3\xd2\ \x8d\xb3\xd3\x89\xae\xd0\x86\xab\xcd\x7b\xa6\xc7\x6d\x97\xb4\x5c\ \x80\x9b\x5c\x80\x98\x72\x97\xb0\x7f\xa6\xc1\x89\xad\xcb\x8f\xae\ \xd1\x8c\xab\xd0\x89\xac\xce\x88\xaf\xce\x84\xab\xc8\x66\x89\xa3\ \x48\x6b\x82\x64\x8c\xa2\x86\xad\xc8\x93\xb1\xca\x99\xaf\xc0\x8b\ \x9f\xa9\x6c\x7d\x88\x3a\x4f\x55\x38\x47\x4c\x38\x45\x4a\x2c\x3c\ \x44\x35\x45\x44\x34\x42\x4c\x2a\x3b\x44\x2d\x3c\x3c\x2e\x31\x2c\ \x34\x3c\x3c\x42\x4c\x4d\x3f\x49\x47\x36\x41\x3f\x38\x3d\x3b\x41\ \x44\x46\x38\x46\x45\x37\x3b\x3b\x3a\x39\x3a\x30\x39\x36\x2c\x39\ \x35\x2f\x38\x38\x34\x3f\x42\x40\x51\x5f\x41\x59\x66\x3e\x54\x63\ \x33\x3c\x41\x32\x3d\x3f\x1e\x27\x28\x38\x3f\x42\x34\x44\x50\x34\ \x3a\x42\x3c\x3d\x3e\x3a\x40\x42\x2d\x3d\x3c\x39\x48\x4f\x37\x42\ \x43\x2e\x35\x35\x33\x37\x35\x2d\x35\x34\x2f\x30\x33\x2c\x35\x2f\ \x30\x31\x30\x2e\x36\x33\x25\x2f\x2e\x26\x2c\x28\x2c\x32\x2f\x26\ \x2e\x30\x26\x2c\x2b\x2e\x33\x31\x29\x37\x3c\x2f\x3a\x3d\x2b\x30\ \x2f\x2f\x2f\x29\x32\x37\x36\x2d\x35\x32\x35\x3c\x3c\x29\x32\x30\ \x2c\x33\x2f\x2c\x36\x38\x25\x2e\x2d\x1f\x25\x21\x34\x36\x34\x2f\ \x31\x33\x23\x23\x25\x2b\x31\x2f\x2b\x33\x31\x20\x27\x26\x29\x34\ \x36\x2c\x2b\x2e\x25\x26\x28\x23\x28\x25\x2b\x2e\x31\x23\x24\x23\ \x2b\x32\x31\x2d\x32\x33\x30\x31\x2d\x2c\x34\x33\x2d\x2a\x28\x27\ \x2c\x29\x2c\x36\x34\x2a\x2e\x2a\x2c\x28\x27\x23\x2a\x29\x24\x26\ \x23\x24\x29\x29\x23\x25\x26\x27\x27\x24\x30\x34\x31\x2b\x27\x29\ \x2d\x30\x2d\x25\x2d\x2a\x23\x24\x1f\x2c\x32\x2e\x2a\x26\x23\x28\ \x27\x28\x1a\x22\x1e\x1c\x23\x25\x2a\x2f\x2d\x22\x27\x21\x12\x14\ \x10\x23\x29\x2b\x29\x30\x36\x29\x2d\x31\x2a\x2f\x2e\x23\x27\x29\ \x23\x26\x28\x22\x2a\x23\x27\x31\x2f\x26\x29\x26\x2c\x2d\x25\x29\ \x26\x22\x2a\x29\x25\x30\x2f\x2d\x2e\x33\x32\x2e\x30\x32\x33\x33\ \x2f\x2e\x31\x30\x2c\x31\x30\x2b\x31\x2f\x27\x2d\x2a\x25\x2b\x2a\ \x23\x27\x27\x2b\x31\x31\x2a\x32\x31\x2d\x39\x3d\x2b\x33\x34\x2a\ \x28\x27\x33\x33\x2e\x38\x3a\x37\x36\x38\x36\x37\x3c\x3c\x00\x00\ \x00\x2b\x3c\x56\x34\x4c\x66\x57\x73\x8c\x5e\x78\x94\x29\x44\x5f\ \x3c\x5d\x73\x82\xac\xc2\x8a\xb5\xd0\x8c\xb5\xd4\x8d\xb4\xd5\x88\ \xae\xd0\x81\xa5\xc5\x73\x98\xb2\x57\x75\x8b\x2c\x46\x5a\x3a\x58\ \x6a\x5c\x7f\x96\x64\x87\xa2\x76\x96\xb4\x82\x9c\xbf\x75\x8c\xaf\ \x69\x82\xa1\x7b\x98\xb2\x7a\x97\xaf\x45\x5e\x72\x1a\x35\x45\x3c\ \x5d\x6e\x89\xa7\xb8\x92\xa3\xa8\x5c\x71\x74\x46\x56\x57\x3d\x4e\ \x57\x34\x46\x4a\x3a\x4c\x51\x25\x31\x35\x30\x40\x45\x2b\x3c\x43\ \x2e\x41\x49\x31\x43\x48\x31\x36\x33\x37\x3a\x39\x3c\x40\x41\x45\ \x4d\x51\x35\x3b\x3a\x39\x46\x41\x31\x39\x3d\x43\x4c\x4d\x30\x3c\ \x38\x34\x37\x35\x31\x36\x3d\x2f\x37\x38\x2e\x35\x33\x2f\x3d\x3f\ \x36\x3e\x42\x40\x54\x6e\x45\x67\x7e\x33\x46\x4c\x30\x38\x37\x2e\ \x37\x3a\x20\x22\x20\x3f\x3d\x3f\x39\x46\x4f\x28\x35\x3d\x36\x35\ \x39\x3d\x3f\x43\x2d\x37\x39\x2d\x3b\x39\x28\x31\x2f\x34\x36\x38\ \x34\x37\x33\x2b\x32\x2d\x3a\x3e\x3f\x2c\x38\x34\x2c\x2f\x2f\x32\ \x34\x34\x2a\x30\x31\x29\x2c\x2b\x2b\x38\x37\x30\x3a\x3d\x29\x34\ \x35\x27\x2c\x2c\x30\x37\x3d\x26\x2d\x2f\x2b\x2e\x2c\x2e\x31\x30\ \x24\x27\x27\x29\x30\x30\x29\x2c\x2c\x27\x2c\x2a\x2e\x3a\x35\x28\ \x2f\x2d\x28\x36\x39\x1b\x2a\x2a\x30\x38\x36\x29\x3a\x39\x21\x26\ \x23\x2f\x35\x37\x26\x2f\x2d\x2d\x37\x3a\x2d\x30\x36\x2b\x31\x34\ \x29\x33\x38\x26\x2e\x2c\x28\x2d\x2f\x26\x28\x2b\x27\x2a\x28\x2a\ \x31\x31\x20\x1e\x1d\x2e\x32\x2c\x2e\x32\x35\x27\x2f\x28\x26\x2b\ \x26\x2f\x32\x2f\x28\x2e\x2d\x2e\x34\x31\x31\x3d\x3e\x2c\x2f\x2b\ \x28\x2b\x2a\x1e\x1a\x18\x1f\x24\x21\x2c\x2d\x2c\x2c\x2f\x28\x25\ \x23\x20\x23\x20\x1c\x22\x1f\x1c\x1e\x29\x22\x22\x25\x23\x1e\x1e\ \x1e\x1d\x20\x26\x2b\x2e\x2d\x21\x25\x23\x20\x27\x27\x23\x2c\x31\ \x21\x2a\x29\x23\x25\x26\x26\x28\x26\x23\x26\x26\x28\x25\x27\x26\ \x27\x23\x24\x29\x27\x2b\x2d\x2e\x2a\x2e\x2a\x29\x2e\x2a\x2e\x2d\ \x2c\x2e\x30\x31\x2b\x2f\x2c\x2a\x2e\x2a\x2b\x2f\x2b\x29\x2c\x2b\ \x27\x2e\x2b\x29\x29\x28\x2b\x2c\x29\x25\x28\x27\x2e\x32\x30\x2c\ \x38\x38\x31\x38\x37\x36\x3b\x39\x31\x39\x35\x39\x3b\x38\x34\x38\ \x34\x36\x3b\x39\x38\x3f\x3b\x38\x3e\x40\x00\x00\x00\x68\x87\xa7\ \x56\x74\x93\x3e\x5e\x7a\x33\x52\x6d\x25\x45\x60\x4a\x6e\x86\x82\ \xac\xc3\x8c\xb7\xd2\x8a\xb6\xd6\x89\xb5\xd7\x82\xaa\xcd\x70\x94\ \xb1\x57\x75\x8a\x34\x46\x57\x10\x23\x34\x38\x56\x67\x65\x8f\xa4\ \x67\x8f\xac\x5f\x7c\x9d\x68\x7e\xa1\x6a\x7e\x9d\x4c\x63\x7d\x42\ \x5d\x74\x47\x5e\x78\x2d\x40\x58\x1b\x32\x43\x79\x8a\x92\x64\x76\ \x79\x49\x58\x65\x3b\x4a\x52\x3b\x4c\x52\x33\x44\x49\x26\x34\x39\ \x32\x3c\x41\x35\x3d\x48\x2e\x3f\x42\x2f\x3a\x40\x2c\x33\x34\x3c\ \x4c\x53\x3f\x51\x58\x3a\x44\x45\x45\x49\x4b\x56\x60\x61\x4e\x59\ \x58\x34\x42\x3b\x2c\x30\x30\x33\x41\x40\x34\x38\x39\x3c\x40\x3f\ \x36\x44\x4a\x30\x37\x37\x35\x3b\x3d\x37\x3c\x40\x34\x3a\x39\x39\ \x4a\x5c\x57\x7d\x9c\x2f\x41\x4e\x4d\x64\x7b\x33\x44\x45\x27\x2a\ \x28\x39\x3d\x3e\x38\x40\x41\x2a\x35\x36\x30\x32\x37\x35\x3c\x3a\ \x32\x3a\x3b\x33\x38\x36\x2d\x3b\x39\x29\x32\x32\x2a\x32\x35\x30\ \x34\x34\x2f\x33\x38\x2d\x39\x3c\x30\x39\x38\x2b\x31\x2f\x2d\x30\ \x2d\x2f\x36\x34\x27\x2d\x2a\x29\x31\x35\x2f\x34\x33\x2a\x32\x36\ \x2d\x30\x35\x2a\x31\x2d\x32\x39\x3a\x35\x3e\x3e\x2c\x33\x32\x26\ \x2d\x2e\x2f\x34\x3a\x28\x31\x38\x26\x2d\x2e\x22\x2c\x2a\x2f\x39\ \x39\x1d\x1e\x1f\x32\x35\x34\x2b\x35\x35\x23\x2a\x2a\x30\x34\x35\ \x2a\x33\x35\x2c\x34\x3a\x26\x2c\x25\x2a\x2b\x2c\x28\x30\x2e\x27\ \x36\x35\x22\x2e\x2d\x2b\x33\x34\x26\x28\x25\x2c\x30\x2d\x2d\x31\ \x36\x2e\x32\x2c\x2a\x31\x2f\x25\x2d\x2d\x26\x28\x27\x25\x2a\x28\ \x20\x21\x1c\x2e\x2c\x29\x34\x35\x35\x2a\x2f\x2f\x2c\x2b\x2c\x2f\ \x2e\x33\x22\x25\x24\x29\x29\x25\x29\x26\x1e\x2d\x2f\x2a\x2a\x2a\ \x24\x29\x28\x2b\x26\x26\x28\x1e\x24\x20\x1b\x1e\x1c\x17\x1d\x22\ \x27\x2f\x33\x26\x2f\x31\x23\x2d\x26\x24\x29\x2a\x22\x25\x25\x22\ \x21\x20\x28\x27\x22\x2b\x25\x22\x29\x23\x22\x2b\x26\x24\x2c\x2b\ \x28\x2a\x2c\x28\x2d\x33\x2f\x2a\x2e\x2e\x30\x33\x32\x31\x33\x31\ \x2c\x2d\x25\x2b\x2e\x29\x26\x32\x32\x21\x29\x24\x24\x29\x23\x27\ \x2f\x30\x2d\x32\x30\x28\x26\x23\x2a\x2f\x2d\x29\x34\x34\x32\x36\ \x35\x33\x35\x32\x2e\x30\x2e\x37\x3d\x38\x37\x3e\x3b\x43\x43\x42\ \x39\x3d\x3a\x30\x32\x33\x00\x00\x00\x80\xac\xcc\x7c\xa4\xc4\x69\ \x91\xb0\x51\x78\x97\x46\x6d\x8c\x64\x8c\xa9\x86\xb1\xc9\x8c\xba\ \xd4\x84\xb6\xd2\x82\xb2\xd1\x7d\xa8\xc7\x66\x8b\xa8\x3c\x58\x6f\ \x16\x27\x3c\x10\x22\x36\x4b\x6f\x84\x75\xa7\xbf\x79\xa6\xc6\x72\ \x94\xb9\x5b\x73\x9a\x5b\x72\x92\x69\x85\x9e\x5b\x7a\x94\x48\x65\ \x84\x46\x5d\x77\x7f\x91\x94\x50\x66\x69\x38\x4e\x57\x45\x55\x62\ \x3c\x4a\x50\x36\x42\x4b\x2d\x39\x3d\x26\x33\x37\x2e\x3c\x42\x2f\ \x38\x3a\x30\x36\x34\x37\x39\x37\x32\x36\x31\x37\x3e\x3e\x38\x3f\ \x43\x50\x5d\x5c\x4a\x56\x58\x35\x3f\x45\x40\x4d\x4b\x3a\x44\x46\ \x37\x3e\x44\x38\x4a\x4f\x35\x3e\x3a\x34\x36\x38\x36\x42\x43\x2c\ \x36\x38\x2d\x35\x32\x31\x3a\x3f\x39\x3c\x42\x30\x3a\x44\x49\x6c\ \x89\x4f\x7c\x97\x37\x4f\x5e\x2c\x36\x35\x23\x2f\x2d\x33\x39\x38\ \x33\x3d\x3b\x28\x32\x2f\x2d\x2e\x2f\x38\x42\x43\x3c\x48\x4d\x31\ \x35\x3a\x34\x3b\x38\x34\x37\x34\x2d\x39\x36\x2f\x35\x3a\x2f\x37\ \x37\x2d\x31\x34\x31\x35\x34\x32\x38\x36\x27\x2f\x2c\x31\x38\x39\ \x2f\x33\x30\x2e\x36\x34\x38\x45\x47\x29\x31\x30\x35\x3a\x37\x27\ \x2b\x27\x32\x2f\x32\x2e\x37\x30\x2c\x30\x30\x2e\x34\x38\x26\x2e\ \x2f\x28\x31\x33\x25\x31\x30\x26\x2c\x2c\x23\x2e\x2f\x1a\x1c\x1c\ \x30\x35\x34\x29\x32\x35\x21\x21\x22\x31\x3b\x3d\x36\x43\x46\x2b\ \x2e\x2f\x29\x37\x35\x27\x2c\x26\x34\x3f\x44\x29\x37\x36\x21\x26\ \x2a\x27\x2c\x2a\x26\x2e\x2d\x2f\x32\x31\x2e\x32\x31\x28\x24\x1f\ \x3a\x3b\x3d\x2f\x36\x3a\x32\x33\x31\x24\x2f\x2f\x21\x23\x1e\x1f\ \x1e\x18\x2a\x2f\x2d\x2a\x2c\x24\x27\x2b\x25\x30\x30\x2f\x2f\x2c\ \x2a\x2f\x33\x2e\x2a\x28\x26\x2f\x2d\x2d\x29\x29\x27\x20\x28\x27\ \x1e\x26\x22\x15\x21\x22\x33\x3d\x48\x2e\x36\x3e\x2c\x31\x33\x27\ \x2a\x2b\x23\x27\x24\x24\x25\x1f\x27\x22\x23\x27\x21\x1f\x28\x23\ \x1e\x2c\x27\x21\x2c\x28\x28\x30\x30\x2f\x2c\x32\x34\x2f\x34\x34\ \x2a\x2f\x2c\x2a\x2a\x28\x2c\x32\x29\x2f\x31\x32\x27\x2a\x25\x24\ \x2d\x2a\x26\x2e\x2d\x27\x2a\x25\x29\x2b\x2c\x30\x32\x33\x38\x3e\ \x38\x2f\x36\x34\x2d\x2f\x37\x2e\x37\x3b\x35\x36\x37\x30\x2d\x31\ \x35\x3e\x3f\x41\x42\x44\x32\x35\x33\x31\x35\x32\x37\x38\x36\x38\ \x3b\x3e\x00\x00\x00\x7f\xae\xcd\x7b\xa8\xc5\x6d\x99\xb8\x65\x91\ \xb0\x6a\x97\xb8\x7b\xa8\xc8\x8b\xb9\xd4\x85\xb8\xcf\x7e\xb6\xcd\ \x75\xae\xc8\x75\xa9\xc7\x6d\x97\xb7\x57\x76\x95\x38\x4e\x6c\x2f\ \x47\x64\x60\x86\xa1\x76\xa8\xc5\x81\xb0\xcf\x7e\xa3\xc7\x63\x80\ \xa4\x44\x5d\x7b\x56\x73\x88\x86\xa6\xba\x81\x99\xa7\x5e\x74\x77\ \x3d\x51\x58\x42\x4f\x58\x39\x48\x52\x39\x3f\x48\x35\x46\x4a\x33\ \x42\x44\x2c\x39\x39\x30\x3f\x3d\x32\x38\x37\x32\x34\x35\x35\x39\ \x39\x3b\x3b\x3b\x35\x3c\x3c\x3e\x4a\x4a\x36\x3e\x3f\x33\x46\x48\ \x37\x3c\x3e\x36\x3d\x41\x2e\x32\x30\x3d\x45\x4c\x56\x7e\x9c\x4a\ \x63\x6e\x38\x3f\x41\x2d\x33\x35\x3f\x49\x53\x36\x40\x41\x34\x3c\ \x3c\x2f\x32\x3b\x35\x30\x35\x31\x32\x3a\x47\x63\x84\x53\x78\x98\ \x4e\x78\x93\x33\x3d\x45\x32\x41\x44\x2c\x32\x35\x35\x3c\x3c\x2f\ \x36\x37\x2f\x31\x33\x33\x42\x44\x34\x44\x4a\x2d\x33\x35\x32\x38\ \x39\x2e\x34\x32\x2b\x37\x33\x2e\x34\x39\x2b\x36\x3d\x2c\x34\x38\ \x2f\x32\x32\x36\x3c\x3a\x2f\x33\x30\x2d\x34\x32\x2e\x33\x34\x2a\ \x32\x30\x27\x31\x31\x2d\x35\x33\x29\x2e\x30\x35\x3e\x3b\x27\x27\ \x27\x30\x33\x32\x2e\x3e\x41\x35\x38\x3b\x25\x2e\x2f\x2b\x31\x2f\ \x21\x27\x27\x2f\x35\x39\x27\x2b\x2d\x1a\x1b\x19\x32\x3b\x3a\x28\ \x30\x2f\x27\x25\x22\x31\x31\x30\x2f\x32\x30\x2c\x30\x30\x26\x29\ \x27\x24\x2b\x27\x29\x2d\x2c\x27\x2b\x2d\x2f\x2e\x2b\x2f\x32\x2e\ \x23\x2a\x28\x2b\x34\x34\x31\x34\x33\x24\x21\x1c\x32\x31\x30\x30\ \x31\x31\x2e\x33\x35\x2e\x30\x34\x24\x2a\x27\x29\x29\x26\x1f\x1b\ \x18\x2b\x2a\x28\x21\x22\x23\x2d\x2e\x2a\x27\x2a\x28\x19\x1a\x1e\ \x28\x2c\x2c\x24\x28\x29\x22\x2c\x32\x22\x2b\x34\x28\x32\x36\x21\ \x2d\x30\x2e\x39\x3c\x25\x2b\x29\x2a\x2f\x2e\x27\x29\x27\x24\x23\ \x20\x2d\x2a\x27\x2a\x2a\x28\x2a\x2f\x2d\x2c\x30\x2f\x32\x35\x31\ \x28\x32\x2f\x2e\x31\x30\x2d\x30\x2d\x28\x32\x2e\x26\x2a\x2a\x2e\ \x2e\x2e\x2e\x2e\x2c\x27\x2d\x2a\x29\x2d\x29\x21\x2d\x28\x27\x2a\ \x29\x23\x29\x24\x28\x2d\x2c\x2c\x2c\x2c\x31\x2e\x2d\x2a\x2e\x28\ \x2c\x32\x30\x29\x2f\x2b\x35\x3b\x36\x36\x39\x3b\x33\x3b\x39\x37\ \x39\x3a\x3b\x40\x45\x37\x45\x45\x2f\x36\x33\x2c\x2d\x2c\x00\x00\ \x00\x68\x96\xb1\x64\x8e\xa9\x60\x8a\xa8\x4a\x72\x92\x6c\x96\xb5\ \x80\xad\xcd\x87\xb7\xd3\x84\xb8\xcf\x7b\xb6\xcc\x71\xb2\xc8\x73\ \xad\xc7\x77\xa5\xc4\x75\x9a\xbd\x64\x84\xa9\x60\x83\xa4\x75\xa1\ \xc0\x79\xaa\xc7\x7c\xa9\xc6\x6f\x93\xb0\x4e\x6b\x84\x65\x76\x85\ \x71\x82\x88\x6d\x80\x84\x43\x51\x58\x41\x4c\x54\x3e\x49\x4d\x3c\ \x47\x4f\x36\x49\x54\x2f\x3a\x3c\x3f\x49\x4f\x32\x38\x3a\x31\x35\ \x34\x33\x3c\x3c\x34\x2f\x2e\x3b\x3e\x3e\x39\x3e\x39\x34\x34\x2f\ \x38\x3e\x3c\x3c\x40\x3d\x35\x3a\x3d\x3a\x49\x4d\x3d\x47\x49\x37\ \x43\x46\x4f\x6a\x7c\x52\x7c\x9c\x56\x8d\xb4\x4a\x66\x75\x33\x3c\ \x3c\x34\x3e\x43\x2e\x37\x35\x30\x35\x2f\x3c\x46\x49\x3c\x40\x3f\ \x33\x36\x30\x2f\x37\x39\x45\x64\x82\x41\x64\x7d\x3d\x56\x68\x2f\ \x38\x38\x2f\x3c\x3c\x2a\x30\x33\x37\x40\x45\x2e\x32\x38\x2b\x2f\ \x32\x3d\x42\x43\x2e\x3b\x3c\x31\x36\x36\x2a\x30\x2c\x2e\x34\x32\ \x31\x3c\x3d\x33\x3b\x3d\x33\x3b\x3d\x2f\x3b\x41\x2d\x30\x2e\x33\ \x37\x38\x2f\x34\x31\x2a\x2f\x2b\x28\x31\x31\x27\x33\x37\x27\x2f\ \x30\x2d\x37\x38\x2c\x36\x3a\x2b\x38\x3e\x28\x37\x3c\x2a\x38\x3c\ \x23\x28\x28\x32\x38\x3b\x2d\x34\x38\x2e\x35\x35\x28\x2a\x2c\x28\ \x2e\x29\x25\x25\x24\x20\x25\x21\x32\x3a\x3a\x2a\x31\x32\x28\x23\ \x25\x2f\x35\x37\x28\x2f\x30\x2c\x33\x35\x24\x26\x26\x2f\x34\x35\ \x29\x2b\x2c\x25\x25\x25\x2a\x30\x2b\x27\x2a\x27\x2b\x2f\x2c\x22\ \x25\x24\x2d\x2e\x2b\x30\x31\x33\x28\x2a\x23\x2a\x2f\x2d\x2f\x2d\ \x2b\x2a\x28\x28\x23\x26\x23\x24\x23\x1b\x2b\x2d\x2b\x2c\x2a\x29\ \x20\x24\x20\x25\x2f\x2b\x20\x26\x27\x1c\x22\x2a\x21\x29\x30\x24\ \x2c\x30\x25\x35\x3a\x30\x3f\x45\x2d\x38\x3f\x25\x30\x32\x25\x27\ \x24\x28\x29\x22\x28\x29\x28\x28\x2c\x27\x28\x29\x28\x2c\x33\x2f\ \x30\x34\x32\x33\x36\x2e\x33\x38\x37\x31\x33\x33\x2e\x37\x2f\x2f\ \x31\x29\x2c\x2f\x2a\x24\x28\x27\x22\x28\x24\x2b\x30\x29\x24\x27\ \x28\x2b\x33\x33\x2b\x32\x34\x2a\x2f\x31\x32\x38\x38\x27\x2d\x28\ \x27\x2b\x27\x29\x2b\x29\x2f\x30\x29\x2b\x2e\x2a\x2a\x31\x2d\x2b\ \x30\x2c\x2f\x35\x33\x2f\x34\x30\x34\x39\x3c\x3b\x44\x44\x3b\x4a\ \x4a\x37\x3a\x38\x2b\x32\x34\x2f\x37\x34\x00\x00\x00\x3f\x65\x7c\ \x35\x56\x6e\x65\x86\xa1\x33\x54\x6e\x5d\x7f\x9b\x82\xac\xc9\x87\ \xb4\xd1\x84\xb5\xcd\x7f\xb7\xcd\x77\xb3\xc9\x7a\xaf\xcb\x7f\xac\ \xce\x80\xa7\xcc\x7a\xa4\xc8\x7a\xa5\xc5\x81\xae\xcb\x7e\xab\xc7\ \x75\x9e\xb6\x59\x78\x8c\x74\x85\x8e\x51\x63\x66\x45\x56\x5c\x47\ \x54\x5d\x41\x4b\x51\x44\x4d\x55\x2e\x38\x3a\x3d\x44\x49\x31\x42\ \x3f\x34\x36\x37\x3d\x43\x42\x39\x43\x41\x2e\x34\x2e\x3c\x40\x3e\ \x36\x37\x36\x36\x3a\x3d\x40\x44\x43\x3c\x42\x3c\x35\x3a\x36\x53\ \x62\x76\x38\x46\x4f\x37\x41\x44\x4a\x5c\x6d\x54\x81\x9f\x59\x8f\ \xae\x44\x5e\x72\x2f\x43\x53\x4e\x6f\x86\x35\x3d\x3a\x37\x40\x3e\ \x34\x3e\x42\x2f\x3c\x3b\x30\x35\x33\x33\x36\x33\x31\x39\x38\x36\ \x40\x41\x2f\x3d\x4d\x56\x84\xa1\x45\x6d\x87\x2c\x39\x3d\x2d\x39\ \x3a\x2a\x2b\x2d\x39\x42\x41\x2d\x3a\x43\x2a\x31\x32\x35\x3f\x43\ \x30\x36\x36\x2b\x2e\x2c\x26\x30\x31\x2a\x2e\x32\x35\x40\x3e\x2c\ \x30\x31\x29\x33\x3a\x31\x43\x43\x2d\x30\x2b\x35\x39\x37\x30\x35\ \x34\x30\x37\x38\x30\x35\x34\x28\x2c\x2d\x32\x3a\x42\x28\x30\x30\ \x31\x3b\x3d\x2a\x39\x40\x2e\x3c\x41\x22\x30\x35\x27\x2b\x2e\x2a\ \x32\x36\x2a\x2c\x2f\x2a\x30\x30\x2c\x39\x3b\x2b\x31\x33\x20\x26\ \x28\x25\x2a\x2c\x35\x39\x3b\x22\x2b\x24\x28\x2f\x2c\x2f\x3e\x44\ \x23\x2b\x34\x2a\x2d\x2c\x2f\x31\x2f\x2c\x33\x35\x29\x34\x37\x27\ \x2c\x2e\x25\x26\x25\x2b\x2f\x34\x2a\x2b\x29\x20\x27\x26\x32\x34\ \x2c\x30\x2b\x29\x30\x2e\x2d\x2c\x2f\x2e\x2d\x2f\x30\x2e\x31\x2e\ \x23\x21\x1b\x2b\x26\x27\x2b\x30\x2d\x25\x2a\x24\x1c\x1e\x1b\x1b\ \x28\x26\x18\x20\x22\x29\x37\x37\x28\x2b\x2e\x27\x2d\x2e\x25\x2c\ \x30\x29\x2a\x2c\x2a\x29\x2b\x28\x26\x27\x2c\x2b\x28\x2c\x2c\x28\ \x2b\x27\x28\x28\x2f\x2d\x2e\x31\x33\x33\x34\x33\x37\x37\x32\x35\ \x36\x35\x2f\x30\x32\x29\x29\x28\x2e\x30\x2e\x29\x2f\x2b\x2d\x32\ \x34\x27\x2b\x2f\x27\x2c\x2a\x2b\x2f\x2f\x29\x2b\x28\x2b\x2a\x28\ \x30\x34\x2f\x33\x36\x32\x30\x30\x2c\x31\x32\x2d\x31\x35\x31\x34\ \x3d\x39\x36\x3b\x36\x32\x35\x38\x2f\x30\x35\x30\x34\x34\x33\x34\ \x34\x35\x3b\x3c\x37\x40\x3e\x32\x37\x37\x2f\x2e\x2f\x3f\x46\x42\ \x3a\x3d\x39\x39\x40\x40\x00\x00\x00\x30\x4d\x63\x1d\x39\x4c\x65\ \x84\x9a\x2e\x4c\x62\x4f\x6c\x84\x86\xaa\xc6\x89\xb3\xcf\x87\xb5\ \xcd\x82\xb4\xcb\x82\xb3\xcd\x83\xb1\xce\x85\xb0\xd2\x83\xb0\xd2\ \x81\xb0\xd0\x82\xb1\xce\x84\xb1\xce\x89\xb1\xca\x88\xa1\xaf\x6d\ \x7b\x81\x4c\x5a\x64\x44\x51\x5b\x43\x51\x57\x3c\x49\x4b\x39\x40\ \x45\x37\x45\x49\x2d\x33\x2f\x3e\x44\x45\x3a\x41\x40\x34\x39\x39\ \x38\x3c\x3b\x33\x3c\x3b\x36\x33\x33\x34\x3c\x39\x3a\x3b\x3f\x35\ \x34\x33\x2e\x33\x31\x33\x35\x34\x31\x37\x3a\x49\x6b\x8b\x50\x72\ \x86\x58\x84\xa3\x59\x92\xb5\x4e\x7c\x96\x34\x45\x4d\x31\x3b\x3c\ \x30\x38\x37\x49\x62\x7c\x2e\x35\x36\x2f\x38\x33\x38\x44\x43\x2f\ \x3b\x35\x3f\x43\x41\x40\x42\x42\x37\x39\x3a\x34\x39\x37\x43\x5f\ \x77\x35\x53\x63\x56\x85\xa3\x39\x47\x4b\x29\x39\x36\x26\x27\x2b\ \x32\x3a\x3d\x2d\x36\x3e\x2a\x2e\x30\x3d\x49\x4e\x31\x3a\x3c\x2c\ \x39\x39\x2c\x36\x3b\x2d\x39\x40\x26\x2e\x33\x32\x38\x39\x2f\x32\ \x31\x2c\x2f\x30\x2b\x32\x32\x25\x2e\x28\x30\x36\x34\x2c\x35\x2e\ \x29\x2f\x2e\x2e\x39\x36\x2b\x34\x31\x2a\x37\x37\x20\x27\x23\x2b\ \x30\x34\x2e\x33\x39\x2c\x38\x3b\x29\x31\x33\x26\x29\x2b\x2d\x35\ \x36\x31\x36\x37\x2d\x3a\x38\x2a\x36\x35\x1c\x1d\x1e\x25\x2e\x29\ \x31\x3a\x39\x21\x2c\x2a\x28\x30\x31\x30\x40\x43\x27\x32\x36\x21\ \x2b\x2c\x2d\x30\x32\x31\x31\x3a\x31\x30\x33\x29\x2f\x2f\x31\x34\ \x33\x2f\x32\x33\x21\x27\x25\x27\x2c\x2a\x2b\x30\x31\x2c\x2e\x2a\ \x2c\x28\x2b\x2c\x28\x29\x29\x25\x26\x24\x24\x1d\x26\x27\x22\x26\ \x26\x2a\x23\x2b\x28\x20\x25\x24\x1e\x21\x29\x23\x2b\x2c\x29\x2e\ \x34\x24\x28\x2c\x20\x29\x2b\x27\x29\x2b\x2c\x2b\x2a\x2c\x2c\x29\ \x2b\x27\x26\x2b\x27\x24\x2a\x27\x24\x2b\x2f\x2b\x32\x34\x2b\x36\ \x32\x30\x36\x38\x34\x34\x39\x37\x33\x37\x36\x29\x2e\x2e\x2d\x30\ \x32\x2d\x32\x2c\x2c\x2d\x2e\x2c\x2c\x2f\x2e\x3c\x3b\x2a\x30\x30\ \x2d\x28\x26\x27\x2a\x29\x26\x29\x26\x2b\x2d\x28\x2e\x31\x2a\x29\ \x2f\x27\x2b\x34\x30\x50\x57\x59\x32\x35\x32\x2e\x32\x2e\x2e\x2c\ \x29\x31\x36\x32\x36\x38\x3c\x33\x38\x3a\x36\x3f\x43\x2e\x32\x2f\ \x2c\x2c\x29\x28\x29\x25\x2e\x33\x34\x3b\x41\x40\x35\x33\x37\x2f\ \x36\x34\x00\x00\x00\x37\x4f\x68\x1a\x35\x47\x68\x89\x9b\x3d\x5d\ \x70\x4d\x6c\x83\x88\xab\xc9\x8b\xb5\xd2\x8a\xb5\xd1\x88\xb2\xcf\ \x88\xb2\xd1\x87\xb3\xd4\x87\xb3\xd6\x85\xb3\xd6\x85\xb4\xd5\x80\ \xb4\xd1\x8b\xb0\xc1\x76\x86\x8e\x48\x5b\x64\x3f\x52\x5d\x38\x47\ \x4b\x39\x43\x47\x33\x42\x4a\x32\x3f\x43\x33\x37\x3c\x3b\x43\x41\ \x29\x2a\x27\x42\x46\x48\x43\x4c\x4f\x30\x3d\x3a\x36\x3a\x3d\x35\ \x3d\x3d\x27\x2b\x2a\x3a\x43\x41\x34\x3b\x37\x34\x35\x34\x35\x3c\ \x3a\x33\x3c\x36\x35\x41\x3e\x3b\x4e\x6b\x6c\xac\xd3\x52\x84\x9d\ \x2e\x40\x4c\x47\x5d\x71\x37\x43\x47\x36\x40\x44\x31\x39\x38\x42\ \x59\x71\x32\x3d\x3f\x2d\x31\x2d\x38\x39\x3f\x2f\x36\x3b\x32\x38\ \x39\x2f\x3c\x3d\x34\x39\x38\x33\x39\x39\x37\x47\x53\x4a\x75\x99\ \x3a\x5b\x70\x3d\x56\x63\x2f\x36\x37\x26\x2a\x2b\x39\x43\x43\x32\ \x3b\x36\x1f\x20\x20\x37\x41\x41\x31\x38\x3a\x31\x35\x36\x2b\x35\ \x38\x2f\x3e\x44\x2e\x33\x35\x2a\x2e\x2d\x30\x35\x38\x32\x3e\x43\ \x25\x33\x30\x26\x28\x25\x2d\x33\x33\x2f\x3a\x3a\x26\x2e\x32\x2a\ \x31\x33\x30\x3a\x3b\x2e\x2f\x35\x2e\x34\x35\x43\x4c\x4f\x2f\x38\ \x38\x2b\x31\x36\x2a\x38\x37\x29\x2d\x2e\x2a\x2f\x2f\x2c\x33\x34\ \x30\x38\x3e\x23\x26\x26\x1e\x1f\x1a\x2c\x30\x31\x2c\x39\x39\x24\ \x35\x39\x2b\x3b\x3e\x29\x36\x38\x2e\x32\x33\x29\x2d\x31\x24\x25\ \x22\x2a\x30\x31\x2e\x36\x3a\x2d\x32\x39\x2d\x32\x36\x2b\x2a\x2c\ \x29\x27\x27\x2a\x32\x31\x2e\x2f\x2e\x2e\x33\x33\x29\x2d\x2d\x23\ \x20\x1d\x34\x36\x30\x26\x26\x22\x21\x28\x28\x1b\x1f\x20\x25\x31\ \x35\x29\x34\x34\x30\x3b\x3c\x27\x2e\x2e\x1c\x27\x2a\x1d\x25\x26\ \x26\x26\x2a\x28\x2a\x2a\x27\x28\x27\x2e\x29\x29\x32\x2d\x31\x33\ \x36\x37\x2b\x2c\x2f\x30\x37\x2d\x35\x34\x2f\x39\x38\x2e\x34\x35\ \x33\x2e\x36\x34\x24\x24\x27\x2d\x2b\x2a\x2b\x31\x30\x28\x2c\x26\ \x2a\x2f\x31\x29\x30\x31\x28\x31\x31\x2f\x2c\x2f\x25\x25\x21\x25\ \x2c\x2a\x2b\x31\x30\x34\x37\x33\x30\x31\x32\x2f\x34\x34\x2e\x2f\ \x31\x30\x38\x32\x2e\x37\x34\x32\x35\x35\x30\x35\x3a\x2b\x2d\x2e\ \x2a\x2b\x2e\x2d\x31\x2c\x2b\x2e\x2b\x2e\x2d\x2b\x2f\x33\x36\x38\ \x3a\x37\x35\x3a\x3f\x36\x40\x39\x39\x3e\x3a\x31\x32\x31\x00\x00\ \x00\x4c\x6b\x86\x29\x4c\x5f\x69\x92\xa4\x5b\x84\x99\x5f\x84\xa0\ \x82\xab\xcb\x89\xb7\xd6\x8a\xb7\xd5\x88\xb4\xd3\x86\xb1\xd3\x90\ \xb7\xd2\x93\xb7\xd3\x9c\xb8\xcb\x8f\xa9\xb7\x6f\x83\x89\x47\x58\ \x5e\x3a\x4e\x55\x38\x48\x4b\x3a\x4b\x56\x41\x50\x57\x25\x33\x37\ \x2b\x39\x3e\x2c\x31\x32\x36\x35\x33\x38\x44\x45\x27\x2d\x23\x3b\ \x40\x3d\x3a\x3f\x40\x38\x41\x43\x38\x41\x43\x28\x2d\x2d\x33\x3a\ \x37\x32\x37\x38\x37\x3b\x37\x28\x2c\x2a\x39\x41\x44\x2f\x33\x35\ \x47\x60\x6f\x2f\x3e\x51\x41\x68\x7d\x38\x44\x46\x36\x3f\x41\x43\ \x5c\x6b\x36\x3e\x43\x3a\x43\x44\x40\x58\x6a\x4f\x7d\x90\x33\x39\ \x36\x3a\x40\x41\x36\x3f\x3d\x33\x39\x38\x37\x45\x46\x2f\x38\x3b\ \x32\x3c\x3c\x30\x36\x34\x3a\x4b\x5f\x45\x6c\x84\x41\x5b\x6f\x2d\ \x40\x42\x2d\x35\x35\x29\x27\x26\x37\x44\x40\x28\x36\x37\x25\x27\ \x28\x3c\x40\x44\x39\x40\x41\x36\x3d\x3f\x2d\x34\x39\x30\x39\x37\ \x2e\x34\x2d\x31\x3d\x3c\x31\x3b\x3b\x2f\x3a\x3e\x2f\x37\x37\x2e\ \x34\x31\x26\x2a\x28\x36\x3a\x3c\x2c\x33\x36\x2b\x2e\x31\x28\x2a\ \x2b\x32\x37\x3b\x2d\x35\x36\x30\x36\x34\x2a\x32\x2f\x2a\x30\x2b\ \x2d\x33\x36\x2d\x31\x30\x2d\x2f\x2d\x27\x2f\x28\x2a\x32\x30\x22\ \x30\x31\x1b\x1f\x21\x29\x2e\x2b\x2b\x3f\x43\x2f\x3d\x3e\x26\x2d\ \x2c\x30\x3d\x3b\x30\x39\x3d\x27\x2c\x33\x28\x25\x24\x27\x24\x26\ \x38\x3d\x3e\x31\x32\x34\x37\x40\x3a\x26\x28\x21\x2b\x2f\x2c\x29\ \x2e\x31\x24\x23\x22\x27\x2a\x23\x2f\x31\x2f\x2f\x2c\x25\x29\x2d\ \x28\x25\x27\x2b\x29\x33\x35\x26\x32\x30\x28\x30\x33\x30\x30\x33\ \x29\x30\x30\x22\x27\x26\x27\x28\x28\x28\x28\x28\x26\x27\x1f\x2d\ \x29\x22\x2d\x31\x2d\x36\x34\x34\x33\x33\x32\x35\x3e\x3d\x34\x32\ \x32\x31\x36\x33\x31\x35\x2e\x2e\x35\x2f\x28\x2c\x2c\x25\x2a\x25\ \x25\x2a\x26\x28\x2f\x29\x26\x2d\x2a\x2b\x2d\x2b\x28\x2c\x2b\x28\ \x2e\x25\x2a\x2d\x25\x2b\x2f\x2b\x29\x2f\x2e\x34\x38\x37\x2f\x35\ \x35\x34\x39\x39\x38\x3b\x38\x34\x3d\x35\x30\x38\x34\x31\x35\x38\ \x31\x3a\x3c\x39\x3e\x3a\x31\x37\x32\x2e\x35\x30\x35\x3b\x3c\x35\ \x3c\x39\x30\x36\x36\x33\x36\x37\x2f\x35\x34\x32\x3b\x38\x39\x43\ \x45\x37\x3f\x3f\x37\x40\x3f\x2e\x38\x33\x00\x00\x00\x6a\x90\xb0\ \x57\x80\x9b\x6e\x9b\xb4\x74\xa1\xbd\x7a\xa7\xc5\x84\xb3\xd3\x89\ \xb8\xd8\x89\xb8\xd8\x8c\xb8\xd8\x9d\xb8\xc5\x4f\x62\x63\x5d\x6e\ \x71\x68\x78\x79\x49\x5a\x63\x3c\x4f\x59\x41\x52\x5d\x3b\x48\x4a\ \x3f\x4a\x53\x32\x40\x47\x37\x44\x4e\x2a\x37\x3c\x32\x3d\x46\x25\ \x2f\x31\x35\x35\x38\x3a\x45\x43\x2b\x2d\x23\x3e\x45\x46\x3e\x46\ \x49\x38\x45\x41\x32\x38\x35\x31\x38\x3b\x30\x3d\x3e\x29\x31\x33\ \x31\x38\x38\x33\x38\x37\x38\x41\x3e\x2e\x36\x3b\x55\x83\xa0\x2c\ \x35\x41\x46\x60\x6d\x39\x46\x4b\x2c\x36\x42\x5a\x85\xa9\x48\x5f\ \x6f\x52\x7a\x92\x71\xaa\xce\x41\x53\x5c\x3a\x3d\x40\x3e\x47\x48\ \x37\x3d\x3c\x32\x31\x33\x34\x41\x47\x3b\x41\x45\x45\x52\x5f\x48\ \x62\x6f\x2f\x3b\x47\x43\x64\x81\x51\x80\xa2\x36\x4d\x53\x2f\x39\ \x34\x24\x25\x28\x2f\x41\x44\x2f\x3c\x3c\x29\x2a\x2b\x3c\x3e\x3f\ \x35\x38\x35\x2b\x33\x30\x25\x32\x31\x28\x2c\x29\x34\x37\x35\x2e\ \x37\x38\x2d\x36\x31\x32\x35\x37\x2a\x37\x36\x29\x31\x30\x2c\x31\ \x2d\x28\x2d\x2b\x33\x3d\x3e\x2f\x36\x35\x2f\x34\x32\x2a\x2b\x28\ \x26\x2f\x2e\x29\x30\x2b\x27\x2a\x26\x2b\x31\x2f\x28\x2d\x2d\x31\ \x2f\x33\x25\x2c\x30\x31\x36\x38\x32\x37\x37\x2a\x2f\x2c\x21\x26\ \x29\x2b\x33\x31\x33\x3f\x46\x23\x2e\x2f\x20\x22\x21\x37\x3f\x43\ \x2f\x3b\x3e\x28\x2d\x2c\x2e\x2f\x2f\x29\x28\x29\x21\x1f\x1e\x25\ \x2a\x28\x23\x27\x27\x28\x29\x25\x30\x34\x30\x1c\x1a\x1a\x30\x2e\ \x31\x25\x24\x21\x23\x25\x23\x29\x28\x29\x24\x29\x29\x28\x33\x38\ \x2c\x33\x34\x28\x2d\x2a\x29\x2b\x27\x28\x30\x31\x26\x2e\x2f\x27\ \x2b\x2c\x26\x29\x27\x27\x27\x24\x29\x22\x1f\x30\x2e\x28\x2c\x2f\ \x2a\x2a\x2e\x2a\x31\x36\x34\x38\x3b\x38\x2d\x31\x31\x31\x35\x36\ \x28\x32\x2d\x25\x29\x29\x29\x2a\x26\x26\x2a\x25\x2d\x29\x28\x27\ \x27\x27\x28\x28\x2a\x24\x27\x28\x2d\x2f\x28\x2c\x2d\x25\x2a\x2e\ \x2e\x2c\x30\x30\x30\x33\x34\x33\x33\x35\x2e\x30\x31\x2d\x33\x30\ \x2d\x34\x30\x2a\x30\x2f\x30\x3a\x37\x35\x36\x3b\x33\x35\x35\x32\ \x37\x33\x2c\x2d\x2c\x2f\x38\x35\x30\x3b\x3a\x35\x39\x37\x34\x3d\ \x41\x38\x40\x41\x33\x3d\x3a\x39\x41\x44\x36\x3c\x3d\x2b\x32\x30\ \x35\x3e\x3e\x3e\x49\x4a\x00\x00\x00\x7d\xa7\xc7\x75\xa3\xc2\x76\ \xa6\xc6\x7a\xa9\xca\x7f\xaf\xcf\x83\xb4\xd3\x86\xb6\xd5\x8c\xb8\ \xd3\x8d\xa6\xaf\x31\x46\x45\x2a\x37\x3b\x2d\x3a\x3d\x3f\x4b\x50\ \x3d\x48\x51\x3a\x46\x4b\x42\x4e\x56\x36\x44\x45\x38\x44\x50\x35\ \x3e\x41\x37\x46\x46\x36\x44\x4a\x33\x46\x46\x2c\x34\x33\x33\x33\ \x37\x3e\x49\x48\x29\x2f\x2a\x41\x42\x44\x43\x4c\x4c\x36\x3e\x3d\ \x3e\x45\x48\x40\x49\x4f\x2d\x41\x46\x2d\x37\x39\x2c\x2f\x31\x3a\ \x49\x50\x51\x72\x88\x5e\x99\xba\x57\x92\xb0\x2f\x34\x3e\x4e\x7b\ \x9c\x44\x5b\x6c\x5e\x8f\xab\x46\x69\x89\x6a\xac\xd5\x6f\xb2\xd5\ \x4b\x7b\x8d\x36\x3c\x3e\x3c\x42\x42\x38\x3e\x3b\x3b\x3b\x3c\x39\ \x39\x3a\x36\x40\x46\x47\x5c\x6f\x40\x61\x79\x4b\x6c\x87\x33\x43\ \x52\x45\x68\x7f\x48\x6a\x80\x38\x47\x4b\x27\x35\x38\x21\x2e\x30\ \x36\x3b\x3a\x2f\x35\x33\x22\x23\x1e\x38\x41\x3f\x2f\x39\x3a\x2c\ \x3a\x3a\x28\x3a\x3a\x2a\x36\x35\x2b\x32\x34\x27\x2b\x2c\x38\x3d\ \x37\x32\x38\x33\x31\x3a\x38\x27\x2f\x2f\x29\x30\x2f\x27\x2d\x2a\ \x26\x30\x2b\x2c\x31\x32\x30\x39\x3d\x32\x34\x34\x29\x2e\x2d\x31\ \x34\x33\x31\x37\x35\x2a\x2e\x2b\x2b\x2d\x2b\x32\x39\x37\x29\x2c\ \x2e\x2a\x2c\x2e\x29\x2e\x2a\x2d\x2f\x2f\x1c\x1d\x18\x2f\x30\x32\ \x2e\x38\x3c\x28\x37\x33\x17\x1b\x18\x33\x36\x38\x2c\x31\x2e\x2e\ \x33\x33\x2e\x2f\x31\x2c\x2f\x30\x23\x24\x23\x2a\x32\x2c\x2c\x2f\ \x2c\x24\x29\x21\x2a\x33\x2c\x26\x2a\x2a\x27\x2f\x2d\x23\x2d\x2c\ \x26\x30\x32\x2a\x31\x31\x24\x2e\x2e\x26\x30\x33\x28\x2b\x2d\x28\ \x2c\x30\x20\x27\x22\x2a\x2c\x2e\x2d\x2e\x2f\x30\x32\x2e\x32\x31\ \x2d\x33\x31\x2b\x32\x33\x30\x33\x36\x36\x2d\x30\x2e\x2f\x36\x35\ \x31\x35\x34\x2e\x33\x31\x29\x31\x2f\x28\x32\x36\x27\x30\x30\x24\ \x2b\x28\x26\x2a\x27\x28\x28\x28\x2c\x2d\x2d\x29\x2a\x2c\x2c\x2d\ \x2c\x2d\x30\x2b\x32\x38\x37\x2d\x2f\x2b\x29\x2d\x2e\x32\x31\x31\ \x30\x31\x2b\x2e\x2b\x25\x2a\x2e\x2b\x27\x2c\x27\x29\x2f\x2b\x2a\ \x2e\x28\x24\x28\x28\x31\x2e\x2d\x31\x30\x30\x2d\x2e\x2e\x2a\x2d\ \x2d\x33\x37\x35\x2c\x2c\x2b\x2a\x2b\x28\x2c\x29\x2c\x2d\x30\x32\ \x2f\x33\x2f\x34\x39\x3c\x2a\x2a\x2c\x32\x39\x35\x34\x3b\x39\x37\ \x42\x43\x00\x00\x00\x82\xad\xcd\x7c\xac\xcb\x77\xa8\xcb\x7c\xa9\ \xcf\x81\xae\xd2\x8e\xb7\xd5\x91\xb1\xbe\x75\x84\x8c\x50\x60\x66\ \x0f\x1b\x13\x22\x29\x2f\x2d\x3e\x47\x40\x4f\x57\x39\x4c\x58\x39\ \x49\x53\x37\x4a\x52\x3b\x4c\x53\x35\x3e\x43\x39\x39\x3a\x3e\x40\ \x43\x36\x3e\x42\x32\x39\x37\x2d\x37\x34\x35\x36\x36\x42\x49\x4b\ \x2c\x2f\x2f\x38\x38\x3c\x40\x49\x4a\x32\x39\x36\x29\x2b\x2a\x33\ \x3b\x3d\x33\x39\x3d\x3a\x4a\x51\x4d\x71\x8a\x6e\xae\xd0\x70\xb0\ \xd4\x4e\x85\xa0\x5c\x8b\xa8\x35\x3b\x3e\x4b\x77\x9c\x66\xa9\xd2\ \x51\x8d\xa4\x2e\x38\x3e\x39\x52\x61\x3f\x63\x75\x29\x36\x36\x38\ \x42\x43\x30\x3c\x39\x34\x39\x3b\x31\x36\x37\x34\x39\x35\x36\x3d\ \x39\x46\x62\x7d\x5e\x8e\xaf\x44\x66\x7d\x28\x3a\x3e\x41\x64\x7f\ \x35\x51\x68\x3f\x60\x6f\x2c\x37\x41\x20\x27\x29\x37\x42\x3f\x30\ \x32\x31\x28\x24\x22\x38\x47\x4e\x31\x3e\x47\x2d\x36\x36\x2c\x31\ \x35\x2e\x32\x30\x28\x31\x2e\x27\x32\x30\x26\x2d\x31\x24\x2d\x2c\ \x2b\x33\x2c\x32\x39\x38\x2f\x30\x2d\x2d\x36\x35\x2d\x30\x31\x2e\ \x34\x38\x2c\x34\x34\x2e\x38\x36\x2e\x33\x30\x2f\x34\x3a\x2d\x31\ \x34\x21\x29\x26\x2d\x30\x2b\x32\x3a\x39\x29\x2c\x29\x32\x35\x35\ \x2f\x37\x3a\x23\x28\x28\x1c\x19\x1c\x2d\x30\x2f\x32\x39\x41\x25\ \x34\x38\x19\x1a\x19\x2d\x2b\x2d\x26\x26\x25\x2d\x32\x30\x2d\x2d\ \x2b\x29\x2d\x28\x2c\x2e\x2a\x29\x2c\x2b\x32\x39\x39\x24\x2a\x24\ \x27\x2e\x2a\x1f\x25\x28\x24\x32\x35\x25\x2f\x35\x2b\x2e\x37\x2b\ \x33\x33\x2a\x2f\x2d\x27\x2b\x2c\x24\x27\x27\x24\x28\x29\x28\x28\ \x24\x2c\x2b\x29\x2e\x30\x2e\x36\x37\x39\x36\x36\x32\x35\x36\x32\ \x30\x37\x36\x30\x36\x32\x2c\x34\x2f\x26\x2b\x2d\x28\x2a\x2a\x2a\ \x2a\x2a\x21\x29\x26\x22\x27\x24\x26\x29\x22\x23\x26\x1f\x28\x28\ \x25\x27\x24\x22\x28\x2d\x2a\x28\x2c\x25\x2b\x2e\x2e\x2c\x31\x2f\ \x32\x39\x37\x34\x39\x35\x31\x37\x32\x2d\x31\x30\x2c\x29\x2a\x27\ \x2d\x27\x2b\x2e\x2e\x2b\x32\x30\x39\x41\x42\x32\x3b\x3a\x35\x3f\ \x3f\x40\x46\x47\x34\x3d\x39\x33\x3b\x39\x35\x40\x41\x39\x3c\x3a\ \x32\x38\x37\x37\x3b\x3c\x38\x3e\x41\x30\x3c\x3a\x36\x3e\x3c\x3a\ \x42\x41\x30\x39\x36\x35\x3f\x3f\x36\x44\x48\x34\x45\x40\x00\x00\ \x00\x88\xb3\xcf\x7f\xad\xcb\x98\xbb\xd5\x94\xb6\xd6\x98\xb4\xcc\ \x8b\xa3\xa9\x57\x6b\x76\x58\x63\x6f\x23\x31\x32\x25\x25\x2a\x2d\ \x33\x36\x36\x38\x3d\x3b\x45\x48\x3a\x4b\x55\x3e\x53\x5e\x3c\x49\ \x50\x3b\x42\x45\x32\x35\x3a\x3b\x43\x46\x3b\x44\x45\x3a\x48\x4e\ \x34\x38\x3b\x2f\x37\x34\x2c\x2c\x31\x3c\x4a\x4d\x28\x37\x32\x35\ \x36\x31\x3c\x4c\x4a\x2c\x39\x35\x43\x51\x67\x52\x70\x80\x64\x8a\ \xa3\x75\xb8\xd7\x6f\xb1\xd3\x48\x7d\x95\x37\x4d\x54\x34\x39\x3b\ \x32\x3a\x3f\x32\x3b\x42\x2b\x35\x3c\x41\x5f\x74\x3d\x49\x4f\x40\ \x45\x47\x3d\x40\x3c\x39\x42\x44\x3c\x43\x42\x34\x43\x4c\x3c\x4f\ \x54\x38\x3e\x40\x30\x38\x38\x37\x3b\x3a\x2d\x32\x30\x4b\x6c\x89\ \x32\x4e\x64\x2b\x3e\x43\x37\x3e\x4a\x45\x65\x77\x4e\x78\x91\x30\ \x3d\x41\x2f\x39\x3b\x22\x24\x25\x37\x3f\x44\x2b\x33\x36\x22\x28\ \x27\x32\x3e\x3d\x2e\x3b\x40\x28\x2b\x30\x2e\x30\x30\x2d\x30\x2d\ \x2b\x35\x30\x2d\x35\x36\x31\x38\x3b\x2a\x32\x31\x32\x39\x3b\x31\ \x32\x33\x2d\x30\x2c\x30\x32\x34\x28\x2f\x34\x2a\x2f\x2f\x2e\x2d\ \x2d\x2e\x35\x37\x29\x2e\x28\x2a\x31\x30\x2f\x34\x32\x2d\x2f\x2d\ \x30\x3a\x36\x2b\x2c\x2b\x2d\x30\x30\x2f\x36\x35\x29\x31\x30\x2d\ \x32\x31\x1e\x1e\x1b\x2f\x31\x2f\x2e\x39\x3a\x24\x32\x37\x23\x21\ \x22\x2e\x2c\x2a\x2f\x33\x36\x29\x2f\x2d\x18\x19\x17\x21\x27\x24\ \x2e\x32\x31\x2a\x27\x29\x21\x25\x26\x2c\x36\x3d\x1f\x28\x2d\x25\ \x30\x32\x26\x2d\x2f\x30\x38\x36\x2f\x33\x34\x28\x2c\x2f\x25\x32\ \x31\x25\x23\x26\x22\x23\x1c\x24\x23\x1c\x2f\x2b\x29\x35\x34\x32\ \x30\x33\x2d\x37\x33\x34\x34\x35\x33\x34\x36\x33\x2a\x34\x33\x2b\ \x35\x39\x22\x27\x23\x23\x28\x24\x26\x2a\x27\x26\x2b\x28\x29\x2e\ \x2d\x25\x25\x21\x26\x26\x21\x2c\x2f\x2a\x27\x2b\x27\x24\x28\x26\ \x26\x25\x22\x24\x29\x26\x26\x29\x25\x27\x2d\x28\x2d\x2b\x2b\x27\ \x27\x23\x2b\x30\x29\x30\x35\x33\x2a\x34\x34\x30\x38\x39\x2d\x37\ \x3d\x31\x3c\x3c\x2d\x33\x33\x26\x2a\x2b\x2e\x34\x31\x30\x35\x37\ \x2a\x31\x2b\x33\x3a\x39\x36\x3a\x39\x2d\x2e\x31\x31\x32\x32\x36\ \x42\x41\x38\x42\x3e\x3c\x47\x4a\x37\x40\x40\x30\x36\x37\x38\x3b\ \x3d\x3b\x46\x4c\x3e\x4a\x4d\x39\x43\x45\x00\x00\x00\x86\xb3\xd0\ \xcd\xd6\xda\xa2\xba\xc9\x67\x85\x8a\x2b\x38\x37\x50\x62\x6a\x4a\ \x5f\x6b\x4a\x5c\x64\x1c\x25\x27\x31\x35\x3b\x3f\x4f\x53\x3b\x40\ \x43\x3b\x4b\x50\x38\x46\x4f\x45\x52\x62\x3e\x4b\x50\x2d\x2f\x35\ \x41\x43\x44\x38\x41\x4b\x3b\x40\x49\x3e\x4a\x4b\x31\x36\x35\x32\ \x39\x37\x2e\x2c\x2f\x39\x43\x48\x30\x3f\x41\x2e\x31\x31\x3c\x46\ \x47\x38\x4e\x51\x3a\x49\x61\x78\xc1\xe4\x7a\xc1\xe0\x4b\x84\x99\ \x3f\x6b\x80\x37\x40\x3a\x33\x35\x3a\x31\x3c\x3e\x3e\x47\x51\x33\ \x42\x41\x33\x3a\x3b\x35\x3b\x39\x39\x3d\x3d\x30\x3b\x39\x38\x3f\ \x3e\x35\x3b\x39\x3d\x4c\x58\x61\x8f\xac\x43\x60\x69\x35\x3d\x3d\ \x48\x65\x74\x35\x40\x42\x2f\x39\x34\x33\x3e\x48\x3e\x60\x74\x47\ \x75\x8d\x30\x3e\x42\x41\x60\x7a\x43\x63\x7a\x3b\x48\x4e\x2f\x39\ \x35\x22\x2a\x28\x33\x3d\x3e\x2b\x3e\x47\x21\x29\x29\x36\x42\x43\ \x34\x35\x39\x2b\x33\x2f\x2e\x30\x30\x34\x36\x35\x29\x2f\x28\x39\ \x39\x3e\x29\x2e\x2c\x2e\x32\x2e\x2a\x2e\x2d\x29\x2e\x2a\x2d\x33\ \x34\x30\x37\x35\x2f\x32\x38\x35\x3e\x41\x26\x29\x28\x2f\x36\x38\ \x2a\x35\x34\x22\x2b\x23\x2b\x30\x2b\x2b\x31\x2e\x2d\x38\x36\x28\ \x2c\x29\x30\x34\x33\x30\x32\x2f\x2c\x2d\x28\x2c\x2f\x2a\x20\x22\ \x20\x2c\x2f\x2b\x2c\x36\x36\x28\x2a\x27\x28\x27\x25\x31\x33\x30\ \x34\x3a\x39\x26\x29\x27\x20\x1d\x1f\x24\x27\x27\x23\x27\x2a\x21\ \x29\x27\x22\x2b\x2d\x2a\x35\x38\x2d\x34\x36\x36\x45\x47\x25\x30\ \x33\x28\x30\x2d\x2f\x2e\x31\x28\x2c\x2d\x24\x24\x23\x2a\x25\x1f\ \x2a\x22\x20\x28\x27\x24\x33\x32\x2e\x30\x34\x34\x33\x34\x31\x2f\ \x37\x37\x30\x36\x36\x29\x34\x31\x23\x32\x3a\x2b\x33\x34\x2a\x2b\ \x24\x28\x2c\x2c\x29\x2c\x2a\x29\x28\x26\x2a\x2e\x2a\x28\x2e\x29\ \x2d\x2d\x2d\x2a\x2e\x30\x28\x2d\x2a\x2f\x36\x35\x2d\x33\x34\x2b\ \x31\x2c\x2b\x31\x31\x35\x3b\x3b\x33\x2f\x33\x31\x37\x34\x30\x33\ \x34\x2e\x34\x31\x30\x37\x36\x3b\x41\x40\x36\x3d\x3c\x35\x3c\x3e\ \x31\x38\x3a\x34\x3e\x3d\x36\x37\x39\x2f\x2d\x2d\x38\x3f\x3e\x31\ \x37\x38\x32\x34\x35\x30\x3b\x3a\x35\x3b\x3a\x3c\x4a\x48\x36\x38\ \x3b\x30\x36\x35\x30\x2d\x2e\x2e\x31\x32\x32\x3c\x3d\x2f\x34\x36\ \x29\x2d\x2b\x2f\x33\x35\x00\x00\x00\xa2\xc0\xd3\xa4\xba\xc1\x66\ \x85\x8b\x4f\x63\x6d\x45\x56\x5d\x3f\x4c\x56\x47\x59\x5d\x37\x45\ \x44\x2e\x3b\x40\x3c\x47\x47\x3f\x45\x46\x3a\x42\x43\x33\x3b\x3e\ \x3f\x47\x4b\x3c\x48\x47\x3e\x40\x41\x39\x3c\x36\x47\x50\x53\x3b\ \x48\x4e\x31\x35\x38\x38\x40\x3c\x37\x3f\x47\x29\x36\x33\x29\x29\ \x29\x42\x47\x4a\x30\x38\x39\x31\x30\x33\x43\x4d\x53\x36\x48\x4a\ \x2f\x3c\x4b\x5e\x97\xb4\x31\x43\x4d\x2b\x38\x3d\x49\x6a\x85\x36\ \x3f\x3f\x39\x40\x40\x32\x3d\x40\x54\x77\x92\x33\x44\x45\x37\x3d\ \x3e\x32\x3b\x3c\x3f\x43\x44\x35\x3f\x3c\x39\x46\x4c\x54\x72\x8c\ \x77\xb6\xda\x6d\xb2\xd6\x47\x69\x73\x32\x39\x36\x3e\x5d\x77\x2e\ \x36\x39\x2e\x35\x37\x51\x7e\xa3\x4c\x89\xa5\x39\x5f\x77\x3b\x46\ \x57\x63\x97\xb3\x41\x67\x87\x3f\x61\x6f\x2a\x2f\x2d\x21\x23\x25\ \x35\x3f\x43\x2a\x31\x2f\x20\x25\x24\x36\x3e\x3d\x2f\x37\x35\x2a\ \x33\x34\x29\x36\x35\x2d\x31\x30\x2c\x30\x30\x2f\x31\x31\x2e\x3a\ \x37\x2e\x38\x34\x2a\x2f\x31\x2f\x39\x3d\x34\x37\x3c\x2d\x36\x35\ \x24\x2b\x2d\x34\x38\x3e\x31\x40\x45\x23\x35\x35\x2a\x32\x32\x2a\ \x2f\x2b\x32\x39\x36\x35\x3b\x38\x29\x2e\x2b\x2d\x31\x30\x29\x2c\ \x2c\x2a\x2c\x2c\x28\x28\x28\x35\x38\x37\x22\x21\x23\x2e\x2f\x2e\ \x30\x37\x37\x26\x26\x28\x1f\x25\x21\x2d\x2e\x2d\x26\x27\x26\x25\ \x28\x25\x26\x27\x27\x1f\x25\x23\x2a\x30\x35\x27\x35\x3a\x2e\x3a\ \x42\x28\x30\x36\x38\x45\x4b\x29\x36\x39\x28\x2f\x36\x2c\x37\x3a\ \x33\x37\x35\x2c\x2c\x29\x2d\x2a\x29\x29\x28\x20\x29\x2b\x29\x33\ \x31\x30\x2f\x32\x2d\x33\x30\x32\x2f\x32\x34\x2b\x36\x38\x26\x31\ \x32\x27\x2e\x30\x26\x2e\x30\x25\x2b\x2a\x26\x2d\x27\x26\x2b\x26\ \x27\x2a\x27\x29\x2b\x24\x24\x28\x28\x25\x24\x23\x28\x2e\x2a\x32\ \x33\x30\x2e\x35\x31\x2a\x2e\x32\x31\x35\x35\x2c\x31\x2e\x2b\x32\ \x2f\x2d\x31\x2d\x34\x34\x34\x31\x36\x33\x34\x37\x34\x2f\x37\x38\ \x35\x3f\x3e\x33\x3c\x37\x31\x35\x37\x35\x3c\x3c\x36\x40\x3e\x38\ \x41\x40\x3f\x44\x45\x37\x3c\x3f\x35\x40\x42\x3b\x40\x46\x40\x4c\ \x4f\x36\x3b\x39\x32\x3e\x37\x2d\x31\x31\x30\x35\x33\x3c\x41\x46\ \x3a\x43\x43\x36\x40\x43\x39\x40\x49\x38\x40\x45\x38\x3f\x3f\x3c\ \x4a\x52\x00\x00\x00\x73\x90\x9e\x85\xa5\xbb\x5c\x7d\x8d\x49\x66\ \x74\x34\x48\x51\x29\x2c\x2d\x3c\x49\x50\x3f\x4a\x54\x3b\x4a\x51\ \x3f\x4d\x52\x41\x49\x49\x3c\x46\x49\x34\x38\x37\x40\x46\x4a\x3a\ \x3e\x3d\x40\x44\x40\x31\x37\x35\x3f\x43\x43\x46\x4a\x4b\x41\x45\ \x47\x36\x41\x3d\x3d\x49\x48\x2d\x38\x34\x28\x24\x23\x40\x44\x48\ \x32\x3c\x3c\x29\x30\x2e\x3f\x49\x48\x3e\x4d\x4c\x32\x3f\x44\x36\ \x4a\x57\x38\x43\x49\x35\x3e\x41\x48\x6e\x82\x32\x3c\x41\x43\x58\ \x69\x69\x9c\xbc\x6b\xaf\xd2\x37\x4c\x53\x3d\x43\x46\x34\x3d\x3a\ \x31\x39\x44\x68\x99\xba\x79\xb7\xd9\x66\xa5\xc2\x46\x69\x7d\x2c\ \x3f\x45\x34\x47\x4f\x34\x38\x38\x54\x77\x99\x34\x3a\x3a\x34\x37\ \x36\x4c\x64\x82\x40\x56\x6f\x47\x68\x78\x3a\x40\x4a\x3c\x52\x60\ \x4c\x6a\x7d\x33\x45\x4d\x28\x33\x34\x20\x25\x24\x36\x41\x3e\x2e\ \x32\x31\x28\x2f\x2e\x31\x3f\x41\x32\x3e\x42\x2d\x35\x32\x26\x2c\ \x29\x2f\x37\x39\x30\x33\x33\x2b\x2d\x2f\x33\x3b\x3d\x2f\x3b\x3e\ \x27\x2b\x2b\x2b\x35\x38\x2c\x30\x35\x29\x37\x37\x23\x31\x31\x2d\ \x31\x34\x2b\x35\x35\x24\x29\x24\x2b\x32\x2e\x24\x2b\x2c\x2b\x29\ \x2a\x32\x33\x38\x36\x33\x37\x2e\x39\x37\x30\x39\x36\x2e\x31\x2e\ \x27\x27\x25\x2c\x2c\x2e\x1d\x21\x23\x2d\x31\x30\x2e\x36\x37\x26\ \x27\x2a\x25\x25\x27\x28\x31\x2e\x22\x2f\x30\x1c\x28\x28\x19\x1d\ \x1f\x2e\x3f\x41\x31\x3f\x44\x34\x44\x48\x2e\x37\x3d\x29\x31\x38\ \x2f\x33\x38\x38\x3a\x41\x3c\x42\x44\x52\x5a\x5f\x58\x5e\x63\x39\ \x3f\x3e\x38\x36\x33\x2e\x32\x2d\x33\x34\x2f\x34\x35\x34\x27\x2a\ \x2b\x26\x2a\x27\x2b\x2f\x30\x25\x29\x29\x25\x2c\x2a\x2a\x31\x32\ \x26\x2a\x27\x28\x2b\x26\x27\x29\x25\x2c\x33\x2d\x2d\x33\x33\x2f\ \x32\x32\x2c\x30\x2c\x2b\x33\x32\x2e\x37\x35\x34\x33\x34\x2d\x36\ \x35\x32\x35\x33\x27\x2d\x29\x2b\x31\x2a\x28\x2c\x27\x31\x31\x2d\ \x2e\x2d\x2a\x2b\x2d\x28\x2f\x33\x30\x35\x3a\x3a\x2f\x35\x34\x29\ \x2c\x28\x28\x29\x28\x2b\x2e\x2b\x2c\x2c\x29\x2f\x34\x31\x27\x2a\ \x29\x27\x29\x27\x2d\x2d\x29\x2a\x2b\x2b\x2b\x31\x30\x36\x3b\x3e\ \x3b\x46\x48\x35\x3e\x3e\x3d\x50\x53\x3a\x45\x46\x3b\x41\x43\x46\ \x4d\x4d\x41\x52\x51\x3b\x46\x49\x38\x41\x42\x43\x4e\x51\x00\x00\ \x00\x6d\x94\xa9\x70\x93\xa6\x5a\x75\x82\x33\x4c\x51\x3c\x4d\x5c\ \x24\x2b\x30\x3d\x40\x49\x45\x50\x5a\x39\x44\x44\x3c\x4c\x54\x41\ \x49\x49\x3b\x46\x49\x2d\x34\x2f\x46\x49\x4e\x48\x4c\x4f\x49\x56\ \x58\x3b\x43\x47\x2f\x32\x37\x33\x3b\x36\x31\x3a\x37\x34\x40\x3d\ \x39\x3e\x43\x30\x34\x32\x29\x28\x25\x3e\x4a\x4a\x31\x3d\x3c\x2f\ \x2d\x32\x40\x45\x46\x35\x3e\x41\x30\x3a\x3a\x2f\x39\x39\x33\x3d\ \x3c\x2f\x3c\x3a\x4f\x78\x94\x6f\xa6\xc5\x6f\xb7\xd7\x55\x8a\xa5\ \x3f\x5f\x73\x37\x49\x4f\x36\x38\x38\x36\x38\x37\x2c\x31\x3a\x67\ \xa2\xcc\x39\x5f\x72\x2b\x3c\x3e\x2e\x39\x38\x32\x3e\x3d\x33\x38\ \x36\x33\x39\x39\x48\x6a\x8a\x2f\x39\x38\x33\x3b\x3f\x3d\x58\x6b\ \x25\x30\x3d\x43\x59\x66\x37\x46\x59\x45\x71\x86\x45\x67\x80\x4b\ \x6c\x7c\x2e\x30\x2c\x24\x28\x2a\x35\x44\x44\x27\x34\x39\x2c\x30\ \x2f\x33\x39\x38\x35\x3b\x3d\x34\x3c\x3e\x2a\x32\x30\x2a\x2e\x2e\ \x36\x40\x3c\x27\x2c\x2c\x33\x32\x34\x2e\x37\x39\x28\x2e\x31\x32\ \x3d\x44\x30\x3a\x41\x2f\x39\x3c\x2a\x2f\x31\x35\x3b\x3b\x2a\x2d\ \x29\x32\x3b\x3a\x2b\x35\x31\x2b\x2c\x2b\x29\x29\x29\x32\x34\x2f\ \x2f\x2d\x2e\x35\x37\x37\x39\x3b\x39\x30\x33\x30\x2c\x38\x37\x2a\ \x3a\x3b\x1d\x20\x23\x2c\x2f\x32\x30\x34\x3a\x1f\x2c\x2d\x1b\x25\ \x25\x1b\x1f\x29\x2d\x45\x46\x26\x35\x37\x2e\x37\x3b\x27\x34\x3c\ \x35\x44\x4b\x2a\x39\x39\x2c\x30\x2b\x2d\x2c\x30\x34\x32\x34\x3f\ \x46\x49\x40\x45\x4a\x73\x7c\x7c\x53\x5d\x5f\x3f\x44\x44\x32\x3c\ \x3d\x2f\x35\x34\x2d\x36\x35\x2a\x31\x34\x22\x27\x24\x2a\x29\x2c\ \x2b\x2e\x2d\x2a\x32\x2a\x26\x2d\x26\x27\x28\x28\x2a\x2b\x27\x23\ \x26\x23\x23\x28\x26\x25\x2a\x27\x25\x2b\x29\x26\x2e\x2c\x27\x2d\ \x26\x2e\x30\x2d\x2c\x31\x31\x2c\x2f\x2d\x2d\x34\x32\x34\x38\x35\ \x34\x38\x35\x30\x38\x36\x34\x3b\x39\x37\x3a\x39\x2d\x38\x33\x34\ \x38\x3a\x2f\x32\x32\x30\x36\x35\x2e\x2f\x30\x2d\x32\x30\x32\x35\ \x34\x35\x3b\x3b\x2f\x35\x33\x3b\x3c\x3a\x3b\x43\x43\x3c\x43\x46\ \x33\x38\x36\x36\x3f\x44\x35\x3a\x38\x33\x3c\x3b\x32\x31\x33\x35\ \x39\x40\x35\x39\x37\x2d\x2e\x2b\x3e\x41\x42\x4b\x51\x54\x39\x42\ \x45\x36\x3e\x3f\x2f\x32\x2e\x2a\x33\x30\x00\x00\x00\x41\x5d\x70\ \x7f\x98\xac\x7e\xa3\xb9\x5f\x7e\x8b\x32\x47\x48\x21\x2c\x30\x3a\ \x4b\x54\x44\x4f\x57\x38\x4a\x4e\x37\x42\x43\x36\x39\x36\x44\x49\ \x4d\x3c\x40\x42\x3d\x41\x44\x44\x4b\x4f\x44\x4d\x4e\x40\x44\x43\ \x3e\x45\x48\x36\x39\x37\x40\x49\x4d\x38\x40\x41\x3a\x45\x47\x39\ \x41\x45\x27\x2a\x25\x40\x44\x46\x3e\x47\x45\x28\x2b\x29\x40\x47\ \x4b\x30\x3b\x3f\x25\x29\x32\x45\x60\x78\x4e\x70\x86\x6b\xa3\xc6\ \x76\xbf\xe2\x5c\x9d\xb6\x36\x4d\x55\x36\x3d\x3d\x36\x45\x3c\x38\ \x3f\x3c\x37\x39\x36\x33\x3d\x43\x3f\x4f\x57\x3e\x60\x71\x3b\x40\ \x44\x32\x3f\x48\x2e\x3c\x3a\x2d\x3c\x3e\x3a\x4e\x56\x39\x44\x49\ \x4b\x70\x8b\x34\x3c\x3c\x36\x42\x44\x48\x5c\x6e\x61\x95\xaf\x3b\ \x64\x74\x38\x4a\x61\x64\x9d\xba\x50\x79\x8e\x35\x4c\x57\x29\x35\ \x39\x23\x29\x2d\x2f\x36\x3f\x2b\x35\x3d\x2a\x33\x31\x34\x44\x46\ \x2e\x34\x33\x30\x38\x36\x2a\x30\x31\x2b\x37\x36\x2b\x35\x36\x29\ \x37\x35\x35\x3e\x40\x30\x43\x4a\x28\x2f\x2f\x31\x3f\x3e\x2d\x35\ \x34\x29\x31\x2d\x2b\x32\x31\x23\x28\x24\x2e\x31\x2e\x33\x3a\x38\ \x2d\x33\x32\x28\x2d\x29\x26\x27\x23\x27\x25\x24\x2c\x2e\x2d\x27\ \x26\x23\x2f\x2b\x2a\x35\x39\x3a\x29\x2e\x2a\x29\x3a\x35\x1c\x23\ \x29\x2e\x2f\x32\x30\x3e\x3d\x23\x2d\x33\x28\x31\x36\x3f\x51\x59\ \x2b\x37\x3e\x25\x2b\x2c\x28\x2e\x2c\x25\x31\x36\x2c\x34\x37\x2d\ \x30\x2b\x38\x34\x33\x34\x33\x34\x41\x42\x44\x3a\x43\x42\x4e\x55\ \x57\x43\x49\x4a\x33\x38\x37\x2d\x31\x32\x2a\x32\x35\x31\x40\x42\ \x2b\x3a\x3b\x24\x2b\x2a\x29\x2f\x2e\x2c\x2f\x31\x2e\x2f\x33\x2e\ \x2e\x2c\x2a\x2e\x29\x24\x29\x28\x28\x29\x23\x29\x2f\x2e\x29\x2f\ \x2a\x29\x2c\x2e\x29\x31\x2d\x23\x2f\x2b\x29\x31\x2e\x2c\x31\x2c\ \x2a\x30\x31\x2a\x2d\x2c\x2f\x33\x2e\x2a\x2b\x27\x37\x3a\x39\x32\ \x3b\x3e\x2f\x32\x34\x30\x31\x2f\x33\x3a\x38\x31\x37\x36\x31\x35\ \x35\x2c\x32\x30\x2c\x2f\x2f\x37\x3a\x3a\x39\x3e\x41\x3c\x41\x40\ \x3a\x42\x3f\x3c\x40\x40\x2e\x2e\x2c\x31\x33\x35\x37\x3d\x3c\x3c\ \x45\x47\x3b\x48\x49\x3a\x3f\x42\x3e\x47\x4b\x3f\x49\x48\x36\x37\ \x36\x3b\x40\x41\x45\x4e\x51\x48\x56\x5c\x46\x51\x53\x37\x3b\x3c\ \x3e\x47\x48\x42\x4d\x4c\x00\x00\x00\x6d\x84\x9a\x93\xb6\xc8\x75\ \x97\xa7\x64\x87\x94\x38\x4d\x53\x1f\x2d\x32\x39\x4c\x51\x3b\x46\ \x4c\x38\x42\x43\x41\x4a\x4f\x39\x3f\x40\x3d\x40\x42\x45\x50\x55\ \x42\x55\x59\x37\x3e\x44\x39\x43\x46\x37\x3c\x3a\x2f\x36\x38\x3a\ \x40\x3f\x3b\x45\x43\x33\x39\x37\x38\x3d\x3c\x3e\x46\x48\x2a\x29\ \x26\x3c\x3d\x40\x45\x49\x4a\x2a\x31\x32\x38\x38\x3e\x35\x45\x47\ \x29\x35\x37\x5a\x87\xb1\x69\xb3\xd9\x5a\x93\xb2\x41\x5c\x68\x37\ \x3d\x44\x3d\x4a\x44\x36\x3a\x3b\x37\x3f\x3d\x32\x37\x32\x38\x3d\ \x41\x33\x3c\x39\x30\x37\x31\x35\x3c\x3a\x3d\x46\x4a\x34\x42\x45\ \x34\x41\x4b\x58\x88\xa5\x44\x60\x6e\x34\x3d\x3e\x45\x68\x8b\x35\ \x3f\x40\x2d\x31\x34\x4f\x6f\x88\x1f\x37\x3f\x3d\x5f\x69\x2e\x3c\ \x49\x3f\x66\x84\x43\x74\x90\x31\x46\x55\x2d\x39\x38\x27\x31\x2e\ \x30\x3c\x3b\x2c\x2d\x2e\x2f\x36\x3a\x33\x3b\x3b\x34\x37\x39\x2c\ \x34\x37\x33\x38\x3f\x32\x3a\x3e\x2f\x35\x37\x33\x3e\x3c\x32\x3b\ \x3c\x35\x3d\x3e\x28\x2a\x25\x30\x37\x30\x32\x35\x33\x32\x3f\x3e\ \x2f\x33\x37\x28\x34\x35\x24\x2c\x2c\x33\x3d\x3f\x26\x29\x23\x2b\ \x30\x31\x31\x37\x38\x2c\x2e\x2b\x21\x23\x1e\x30\x3a\x3b\x2e\x36\ \x33\x1d\x21\x1d\x2a\x31\x32\x2e\x3b\x40\x28\x2f\x2e\x20\x27\x27\ \x30\x40\x42\x39\x49\x4f\x33\x42\x43\x2a\x30\x35\x23\x2e\x33\x25\ \x22\x21\x26\x26\x2a\x2d\x35\x35\x2a\x2d\x2e\x37\x39\x3b\x43\x44\ \x46\x44\x4f\x4e\x3e\x41\x47\x3a\x41\x3e\x2f\x37\x36\x33\x38\x32\ \x2f\x33\x32\x29\x2b\x2b\x2a\x34\x35\x2a\x32\x32\x29\x30\x2d\x2d\ \x31\x2d\x2a\x30\x2e\x2b\x26\x25\x24\x23\x21\x25\x24\x1e\x26\x29\ \x24\x2c\x30\x32\x30\x33\x33\x2a\x31\x32\x27\x2d\x2c\x31\x32\x31\ \x34\x35\x34\x33\x42\x3f\x36\x3f\x3d\x32\x3b\x3c\x33\x3e\x40\x37\ \x3c\x41\x34\x3a\x37\x39\x40\x41\x30\x3d\x3b\x34\x38\x3b\x37\x3b\ \x3c\x37\x3d\x3d\x35\x3a\x38\x33\x37\x33\x31\x33\x33\x32\x34\x32\ \x31\x38\x37\x30\x3a\x39\x2c\x2e\x2e\x37\x38\x36\x35\x38\x38\x2f\ \x33\x31\x36\x3e\x3c\x37\x40\x40\x32\x3b\x3c\x3c\x44\x47\x36\x3c\ \x38\x2e\x31\x30\x2d\x34\x34\x30\x35\x31\x36\x3b\x3e\x45\x51\x53\ \x3d\x4a\x4d\x3d\x45\x46\x29\x2e\x2a\x2f\x33\x36\x32\x3c\x40\x38\ \x3d\x3e\x00\x00\x00\x72\x8d\xa0\x90\xb2\xc7\x79\x9c\xb3\x78\x98\ \xab\x41\x57\x5f\x32\x3d\x44\x2b\x37\x40\x3c\x4f\x53\x35\x3d\x42\ \x3f\x48\x47\x35\x41\x46\x40\x41\x48\x43\x48\x4b\x40\x4a\x49\x39\ \x46\x45\x3a\x45\x4c\x3c\x43\x48\x32\x3c\x37\x40\x41\x43\x39\x3f\ \x3e\x38\x3e\x3c\x29\x2e\x2b\x38\x39\x3a\x2b\x31\x27\x38\x3c\x3f\ \x38\x41\x42\x28\x31\x34\x33\x38\x38\x43\x4b\x50\x38\x44\x44\x4a\ \x75\x93\x34\x4f\x5c\x36\x3e\x3f\x34\x3a\x36\x2f\x36\x34\x37\x4a\ \x4b\x44\x59\x60\x3b\x42\x46\x38\x40\x3c\x32\x37\x36\x36\x36\x39\ \x37\x45\x51\x32\x46\x4f\x32\x42\x4e\x55\x81\x9b\x59\x9a\xbf\x49\ \x7b\x9a\x3b\x5a\x6b\x28\x35\x34\x4f\x73\x8f\x2d\x3a\x3f\x31\x39\ \x3a\x33\x36\x39\x41\x54\x64\x36\x58\x65\x39\x52\x62\x3f\x68\x85\ \x58\x8c\xa8\x33\x48\x4f\x28\x2b\x29\x2d\x35\x36\x34\x3d\x39\x26\ \x27\x24\x35\x39\x3f\x38\x43\x4a\x33\x3b\x3c\x33\x3e\x3c\x2d\x32\ \x33\x35\x39\x3d\x2a\x33\x32\x26\x2b\x2a\x2d\x3b\x3a\x2a\x31\x33\ \x32\x39\x3c\x2c\x31\x2f\x27\x2b\x2a\x33\x37\x39\x35\x3a\x3c\x2d\ \x35\x32\x2a\x2c\x29\x35\x39\x3a\x2b\x2d\x2a\x30\x33\x2f\x39\x3d\ \x3c\x25\x2b\x27\x30\x32\x36\x28\x2e\x2e\x31\x35\x32\x27\x2c\x2b\ \x20\x2a\x2b\x27\x34\x37\x2e\x40\x46\x31\x41\x48\x3d\x4b\x51\x39\ \x47\x4e\x2f\x39\x3c\x28\x31\x36\x2a\x32\x32\x2d\x30\x2f\x37\x39\ \x38\x39\x39\x3d\x3e\x3d\x41\x3d\x47\x48\x4a\x54\x56\x39\x41\x3d\ \x36\x34\x32\x2f\x32\x2e\x2d\x2d\x2a\x2a\x2f\x33\x29\x30\x33\x2d\ \x35\x38\x2d\x36\x37\x31\x34\x34\x2e\x34\x33\x2b\x2c\x2d\x25\x25\ \x21\x25\x2b\x2a\x2e\x30\x2f\x29\x2e\x2e\x2f\x37\x37\x31\x31\x30\ \x31\x32\x32\x35\x38\x37\x2f\x36\x36\x2c\x31\x2f\x2b\x2d\x2a\x2e\ \x34\x31\x2b\x2f\x2c\x32\x35\x31\x30\x35\x33\x34\x3b\x38\x2c\x2d\ \x2b\x2a\x2e\x2f\x27\x2b\x24\x2b\x31\x30\x2d\x2c\x2e\x28\x2c\x28\ \x2a\x2c\x2c\x30\x30\x2d\x31\x36\x32\x2f\x37\x2f\x2e\x3a\x3c\x34\ \x3d\x3a\x34\x3b\x3a\x35\x3a\x3c\x2f\x31\x31\x2a\x2e\x2c\x2d\x31\ \x34\x36\x3b\x39\x2b\x2d\x2b\x30\x35\x36\x31\x37\x35\x31\x3a\x35\ \x31\x3c\x3b\x35\x3d\x3a\x2a\x2b\x2f\x31\x35\x3a\x30\x39\x39\x2c\ \x2e\x2f\x34\x40\x3e\x3c\x44\x46\x39\x46\x4a\x3d\x47\x4a\x00\x00\ \x00\x45\x5f\x6b\x93\xaf\xcd\xa1\xc4\xd9\x84\xa9\xbc\x3d\x54\x5b\ \x2e\x42\x48\x26\x2b\x28\x2f\x38\x39\x3d\x43\x47\x3e\x48\x4a\x3e\ \x40\x43\x36\x39\x37\x4b\x4d\x50\x44\x4e\x4d\x44\x48\x4d\x3c\x46\ \x46\x36\x41\x41\x2e\x36\x35\x44\x4a\x50\x48\x4a\x4a\x40\x48\x43\ \x38\x40\x41\x30\x38\x38\x29\x33\x30\x2c\x2f\x2f\x3a\x44\x49\x2b\ \x34\x31\x30\x37\x35\x34\x40\x3c\x3a\x43\x42\x35\x4c\x58\x31\x36\ \x36\x34\x41\x3f\x30\x36\x3c\x33\x4f\x62\x6f\xae\xd5\x68\xaf\xd0\ \x61\x97\xae\x2e\x3c\x41\x31\x38\x3b\x34\x35\x35\x34\x3d\x52\x69\ \xa9\xd2\x67\xa6\xc8\x56\x95\xb6\x36\x55\x5e\x35\x40\x49\x44\x57\ \x63\x32\x35\x3b\x4b\x6d\x8f\x2b\x39\x47\x2c\x36\x3a\x35\x3f\x4b\ \x5b\x7b\x99\x35\x5b\x67\x2f\x45\x50\x3d\x65\x7c\x32\x4c\x68\x2e\ \x37\x39\x1f\x25\x21\x33\x36\x39\x2e\x39\x38\x22\x27\x24\x36\x43\ \x45\x30\x3b\x3a\x2e\x38\x40\x25\x2d\x2d\x31\x33\x39\x37\x39\x3b\ \x2e\x3b\x3e\x36\x44\x4a\x34\x3b\x40\x31\x3c\x3d\x2c\x2f\x2f\x2f\ \x2f\x32\x2e\x2e\x30\x3c\x40\x41\x33\x3e\x39\x34\x3d\x39\x2d\x2d\ \x2f\x2f\x2c\x2e\x34\x34\x30\x2b\x2d\x2b\x41\x47\x45\x35\x3a\x38\ \x37\x3c\x3a\x25\x2d\x2a\x2a\x3c\x3a\x1f\x26\x28\x32\x41\x48\x2f\ \x3c\x42\x38\x4a\x53\x37\x4a\x50\x32\x45\x4c\x38\x48\x52\x33\x39\ \x3d\x3d\x42\x43\x37\x3a\x38\x35\x36\x30\x3d\x3f\x3a\x42\x45\x3f\ \x38\x3b\x3e\x35\x36\x37\x2f\x36\x34\x2b\x2d\x29\x2d\x30\x2d\x2a\ \x2f\x2d\x29\x2c\x2d\x26\x2d\x2e\x28\x28\x25\x27\x2c\x28\x29\x30\ \x2d\x2b\x36\x34\x27\x2a\x2a\x2b\x2e\x2a\x26\x29\x24\x28\x2b\x26\ \x22\x26\x25\x35\x3b\x3b\x33\x38\x39\x30\x33\x32\x2e\x32\x2f\x29\ \x2e\x29\x28\x2c\x2d\x2b\x31\x30\x34\x3f\x3c\x35\x38\x3d\x30\x32\ \x32\x34\x36\x3a\x36\x39\x3b\x2d\x34\x31\x2e\x35\x32\x35\x3b\x3d\ \x3b\x43\x43\x35\x3e\x3a\x2d\x30\x2f\x32\x38\x39\x32\x3b\x35\x37\ \x3f\x3d\x37\x42\x41\x37\x3f\x40\x2e\x35\x37\x31\x35\x32\x31\x39\ \x38\x31\x36\x3a\x33\x3c\x3c\x32\x41\x40\x3e\x43\x44\x35\x3a\x38\ \x3d\x42\x40\x41\x47\x48\x38\x3c\x3f\x3b\x42\x45\x37\x43\x46\x37\ \x43\x42\x3c\x48\x4d\x40\x47\x49\x32\x3a\x38\x4b\x53\x54\x47\x53\ \x52\x3f\x47\x4a\x3f\x4a\x4a\x48\x53\x51\x00\x00\x00\x87\xa4\xb6\ \xac\xd6\xec\x91\xc0\xdc\x57\x7e\x8c\x46\x62\x6d\x30\x3e\x44\x26\ \x2e\x2e\x2b\x34\x36\x3b\x45\x45\x42\x44\x4a\x44\x4a\x4d\x40\x44\ \x46\x47\x4b\x4e\x3a\x49\x49\x3e\x3d\x3e\x50\x5a\x63\x44\x4a\x46\ \x3d\x43\x3e\x3c\x41\x42\x38\x3e\x3c\x35\x38\x37\x3e\x46\x45\x2c\ \x3c\x3b\x2d\x33\x31\x2f\x2e\x34\x42\x4b\x47\x2f\x34\x2c\x38\x37\ \x34\x3c\x45\x45\x32\x3b\x3d\x36\x3e\x40\x37\x3c\x3d\x33\x38\x37\ \x39\x4b\x5b\x60\x9f\xc0\x3d\x6a\x7a\x35\x4f\x60\x5b\x96\xbb\x38\ \x48\x53\x32\x37\x37\x31\x39\x39\x2c\x37\x45\x4e\x8a\xab\x2c\x4a\ \x5b\x45\x69\x84\x3b\x47\x4a\x38\x46\x54\x44\x64\x79\x31\x3c\x43\ \x41\x63\x7c\x34\x3d\x46\x25\x2e\x34\x51\x78\x9b\x3d\x5e\x72\x30\ \x33\x37\x49\x68\x88\x2e\x42\x51\x43\x5c\x74\x2f\x36\x35\x24\x21\ \x23\x3b\x40\x3f\x2d\x35\x35\x27\x2a\x2d\x39\x45\x48\x30\x3c\x40\ \x2e\x36\x40\x33\x3d\x41\x31\x3c\x41\x34\x3f\x3f\x2f\x3a\x39\x32\ \x3f\x43\x26\x2d\x2c\x32\x33\x33\x38\x3c\x3b\x24\x29\x28\x2e\x32\ \x32\x2e\x31\x2e\x32\x38\x39\x26\x27\x28\x35\x37\x37\x2a\x2b\x2c\ \x25\x25\x24\x27\x2a\x26\x2c\x2d\x2e\x27\x2d\x2a\x22\x2a\x26\x25\ \x2d\x2f\x2f\x3e\x44\x36\x44\x4e\x2e\x3d\x43\x2e\x3a\x3e\x31\x3e\ \x44\x36\x45\x4a\x29\x38\x3d\x33\x3d\x44\x54\x5d\x5e\x47\x50\x50\ \x3e\x3d\x3a\x3a\x3b\x38\x34\x37\x33\x39\x39\x37\x36\x3b\x3c\x2f\ \x33\x36\x2b\x2e\x29\x2d\x32\x2e\x26\x2c\x2b\x2f\x2f\x31\x2b\x30\ \x2e\x2f\x2d\x2b\x2a\x2b\x2a\x29\x2e\x2a\x26\x2e\x29\x28\x2d\x29\ \x26\x2a\x23\x27\x2e\x2a\x28\x2f\x2d\x30\x35\x35\x37\x3b\x3d\x2c\ \x31\x2e\x32\x30\x2f\x2c\x33\x30\x30\x35\x34\x2c\x34\x35\x2d\x37\ \x34\x31\x36\x37\x28\x32\x2b\x27\x2d\x28\x2d\x35\x38\x2d\x2f\x2e\ \x2a\x2b\x2d\x28\x2f\x2c\x33\x3c\x3a\x32\x3a\x38\x2a\x29\x2b\x2a\ \x2f\x2e\x2d\x34\x30\x33\x37\x35\x39\x3a\x36\x39\x3f\x3e\x33\x39\ \x39\x32\x36\x38\x36\x44\x42\x35\x3f\x3b\x33\x36\x36\x31\x39\x34\ \x37\x3d\x3b\x40\x46\x46\x33\x39\x3a\x34\x34\x34\x33\x38\x37\x31\ \x38\x36\x39\x3e\x40\x31\x33\x35\x32\x36\x39\x39\x3e\x3f\x35\x3b\ \x3d\x40\x4a\x4e\x35\x3f\x3a\x3a\x47\x45\x38\x3c\x43\x3e\x49\x4d\ \x36\x43\x46\x30\x36\x3b\x00\x00\x00\x66\x8d\xa7\x9a\xc4\xe0\xd0\ \xe7\xf6\xa1\xc1\xc5\x34\x42\x45\x2c\x37\x3b\x24\x27\x22\x31\x35\ \x38\x30\x33\x31\x41\x41\x3f\x3e\x43\x46\x37\x42\x42\x43\x47\x4a\ \x3f\x45\x49\x3e\x47\x48\x39\x3f\x43\x3a\x44\x46\x34\x43\x46\x40\ \x4d\x4e\x3c\x4a\x4b\x31\x35\x36\x39\x41\x41\x2d\x36\x38\x30\x38\ \x38\x29\x31\x33\x3e\x44\x47\x2a\x34\x2f\x33\x36\x39\x37\x3e\x44\ \x31\x3a\x3a\x32\x3c\x3c\x33\x35\x3a\x31\x36\x33\x4d\x75\x8a\x2f\ \x43\x49\x33\x38\x39\x31\x35\x35\x45\x67\x87\x33\x48\x50\x32\x3d\ \x40\x30\x38\x3b\x36\x3d\x48\x43\x62\x6f\x33\x40\x45\x4d\x76\x90\ \x3b\x4c\x59\x63\x97\xb8\x38\x53\x61\x30\x39\x3f\x58\x7b\x94\x2e\ \x37\x3c\x2a\x33\x40\x3e\x60\x73\x33\x40\x3f\x2e\x34\x38\x4b\x76\ \x94\x39\x5f\x78\x3b\x58\x62\x2b\x36\x2d\x22\x25\x27\x3e\x44\x45\ \x2b\x2e\x2e\x2b\x2d\x2f\x3d\x43\x47\x2e\x32\x32\x32\x3a\x3d\x2f\ \x43\x48\x2d\x38\x3e\x24\x2d\x2f\x36\x3d\x3f\x38\x3d\x44\x2d\x35\ \x32\x29\x2d\x2b\x26\x2c\x2a\x34\x3a\x38\x3a\x3a\x3a\x38\x3b\x39\ \x33\x3c\x3b\x30\x35\x33\x3a\x40\x3d\x38\x3b\x3b\x29\x26\x23\x2e\ \x31\x31\x26\x2e\x2f\x27\x2e\x36\x30\x3e\x3f\x2f\x37\x3a\x39\x45\ \x42\x39\x46\x4a\x3b\x51\x5a\x29\x3a\x3e\x21\x30\x35\x18\x1e\x23\ \x22\x2c\x2c\x49\x54\x5b\x64\x6d\x6a\x57\x5f\x5f\x38\x40\x40\x35\ \x3a\x3c\x33\x33\x35\x31\x2f\x30\x2e\x2c\x2c\x2e\x31\x2e\x2e\x3b\ \x3c\x35\x43\x45\x2e\x33\x33\x2c\x2e\x2b\x26\x2d\x2b\x29\x2b\x29\ \x25\x29\x26\x26\x2a\x26\x27\x31\x2a\x2c\x30\x2d\x2e\x33\x2d\x2f\ \x33\x30\x33\x3a\x35\x2e\x38\x37\x2f\x33\x33\x33\x32\x30\x31\x35\ \x36\x28\x30\x2d\x31\x38\x36\x39\x40\x45\x33\x3b\x40\x39\x3f\x42\ \x30\x37\x31\x34\x3f\x3b\x31\x39\x3a\x3c\x3e\x44\x37\x45\x47\x31\ \x3e\x3c\x2a\x35\x34\x30\x33\x34\x30\x35\x34\x2d\x35\x32\x31\x36\ \x35\x33\x37\x39\x2d\x30\x2d\x33\x37\x35\x2b\x32\x2c\x2b\x30\x2c\ \x29\x33\x30\x2f\x2d\x2e\x2c\x2e\x2b\x2e\x34\x36\x33\x39\x39\x2b\ \x2d\x2a\x2c\x31\x2e\x2e\x37\x38\x33\x3c\x3e\x29\x34\x33\x33\x3a\ \x38\x3e\x48\x50\x48\x52\x53\x3b\x42\x40\x43\x4b\x4b\x33\x38\x39\ \x38\x41\x42\x3b\x3f\x45\x2f\x3f\x42\x33\x40\x43\x3b\x48\x48\x42\ \x50\x52\x00\x00\x00\x94\xa9\xbb\xdc\xf0\xf9\xdb\xf1\xf9\xc8\xe4\ \xe9\x48\x60\x68\x33\x41\x48\x26\x30\x30\x2f\x3b\x43\x2e\x39\x36\ \x2e\x2d\x31\x42\x49\x55\x3e\x4e\x51\x42\x4b\x4d\x43\x4b\x47\x41\ \x46\x48\x34\x3b\x39\x3f\x4d\x55\x3e\x49\x4d\x39\x47\x4a\x2e\x38\ \x39\x36\x3d\x40\x3e\x47\x47\x36\x42\x3c\x34\x3b\x3c\x2a\x31\x31\ \x3d\x45\x4a\x2b\x36\x36\x35\x39\x3d\x34\x3e\x40\x30\x3e\x40\x30\ \x36\x3b\x36\x35\x3b\x3a\x49\x57\x3c\x5a\x6a\x31\x3c\x3d\x36\x3a\ \x3c\x29\x30\x33\x56\x7d\x9d\x29\x36\x38\x32\x3b\x3b\x34\x3f\x40\ \x36\x3d\x50\x47\x6c\x7d\x51\x74\x8a\x50\x87\xad\x54\x99\xc3\x40\ \x69\x7f\x31\x3a\x3e\x2d\x2d\x38\x4c\x70\x85\x33\x3e\x41\x28\x37\ \x38\x2d\x36\x38\x36\x3f\x3c\x32\x3b\x42\x40\x60\x79\x46\x69\x81\ \x36\x4a\x52\x21\x2a\x25\x27\x28\x2d\x3a\x43\x41\x25\x28\x25\x2c\ \x34\x36\x3b\x44\x45\x37\x40\x3f\x2b\x34\x33\x30\x39\x3b\x3a\x41\ \x42\x2b\x2e\x2a\x2c\x37\x36\x29\x2c\x2b\x36\x3c\x3c\x34\x3a\x3c\ \x29\x2c\x29\x29\x2c\x2c\x2b\x2f\x2e\x2e\x33\x30\x30\x35\x34\x2b\ \x2d\x2e\x2a\x28\x2b\x2f\x30\x2f\x29\x36\x36\x27\x2d\x32\x2d\x37\ \x39\x33\x39\x3c\x37\x3d\x41\x35\x38\x3f\x3a\x3e\x44\x3a\x48\x4e\ \x39\x48\x4e\x3b\x43\x44\x20\x28\x2a\x3d\x46\x4d\x31\x46\x4a\x3d\ \x4f\x52\x3f\x46\x48\x34\x3b\x3a\x35\x3c\x3a\x32\x35\x31\x2c\x2f\ \x31\x2f\x2f\x34\x2a\x2c\x2d\x2c\x2c\x2a\x2b\x33\x31\x2a\x31\x30\ \x29\x2b\x29\x29\x29\x26\x28\x2b\x27\x2d\x29\x29\x27\x28\x27\x24\ \x29\x24\x25\x24\x24\x2c\x2d\x2b\x2b\x2c\x2a\x27\x2b\x27\x25\x2c\ \x2a\x2a\x2c\x2c\x2c\x2f\x2d\x25\x2e\x2b\x26\x2a\x2c\x2d\x30\x30\ \x34\x38\x37\x2f\x32\x33\x31\x37\x34\x33\x35\x33\x3c\x40\x46\x36\ \x42\x42\x36\x40\x44\x3a\x42\x43\x36\x3d\x40\x2f\x34\x38\x2e\x33\ \x33\x33\x34\x38\x36\x3d\x42\x37\x3c\x3b\x3a\x45\x43\x39\x44\x43\ \x38\x3d\x3f\x2c\x34\x35\x36\x3d\x3e\x3a\x42\x41\x38\x44\x44\x3a\ \x3e\x3d\x3a\x40\x43\x3c\x47\x44\x2d\x32\x2d\x32\x36\x39\x39\x40\ \x40\x36\x39\x3d\x36\x3d\x40\x3a\x41\x44\x34\x3b\x37\x38\x3f\x42\ \x36\x36\x3b\x2f\x2e\x30\x3c\x3e\x42\x35\x3a\x38\x35\x42\x44\x38\ \x3e\x43\x3f\x46\x48\x47\x4e\x53\x43\x4e\x52\x44\x4e\x54\x00\x00\ \x00\xa5\xb6\xbf\xda\xf0\xf7\xdb\xf1\xf9\xd6\xef\xf7\x9b\xc2\xc7\ \x39\x47\x4a\x2e\x35\x32\x2d\x33\x34\x2c\x31\x31\x39\x3e\x40\x38\ \x3e\x42\x3d\x48\x4c\x3b\x47\x45\x39\x48\x4a\x35\x46\x46\x2c\x2f\ \x31\x36\x3d\x37\x34\x39\x37\x39\x47\x4e\x40\x4b\x4a\x3c\x3f\x3e\ \x38\x3f\x41\x3a\x43\x43\x2a\x34\x38\x32\x34\x39\x3b\x45\x48\x2a\ \x33\x34\x30\x3b\x39\x34\x3d\x3d\x32\x38\x39\x2b\x30\x2c\x34\x3d\ \x3d\x3c\x58\x72\x35\x47\x4e\x37\x3e\x3f\x2d\x39\x3f\x2e\x43\x53\ \x51\x82\x9d\x2f\x42\x40\x2f\x35\x35\x31\x3c\x3c\x2f\x3a\x47\x5c\ \xa7\xcf\x4d\x83\xa2\x2f\x3c\x45\x36\x51\x61\x2c\x32\x36\x35\x37\ \x3b\x29\x34\x37\x31\x38\x3e\x3b\x3e\x40\x31\x33\x34\x32\x35\x37\ \x32\x3a\x39\x37\x41\x50\x44\x69\x83\x55\x85\x9f\x2c\x3a\x3c\x26\ \x27\x21\x2c\x2c\x2e\x37\x43\x46\x27\x2b\x28\x34\x37\x3a\x3c\x42\ \x43\x32\x39\x3c\x2c\x35\x34\x2a\x2d\x31\x31\x38\x3d\x33\x45\x4e\ \x26\x32\x35\x2d\x32\x39\x2a\x32\x33\x32\x3a\x3f\x27\x2c\x2e\x2f\ \x34\x37\x2b\x2f\x2b\x2d\x35\x34\x2b\x2e\x2d\x25\x27\x2a\x24\x28\ \x2b\x31\x39\x3b\x2c\x3c\x40\x35\x41\x43\x31\x35\x37\x36\x34\x38\ \x3d\x44\x45\x36\x3e\x43\x42\x51\x5a\x3a\x4a\x4f\x41\x4f\x52\x47\ \x52\x54\x34\x44\x4e\x35\x4b\x55\x3e\x53\x5b\x3b\x43\x48\x31\x37\ \x34\x30\x30\x32\x2c\x31\x31\x2d\x34\x34\x26\x2d\x2d\x2d\x31\x31\ \x27\x2b\x29\x26\x27\x24\x2b\x2a\x26\x22\x28\x25\x29\x2b\x27\x2d\ \x30\x2c\x27\x2e\x2c\x26\x27\x29\x2b\x29\x2c\x24\x2c\x27\x2b\x33\ \x31\x2e\x32\x2e\x28\x2d\x2b\x2d\x33\x31\x32\x37\x37\x31\x39\x35\ \x34\x3e\x3c\x31\x39\x3b\x31\x36\x37\x33\x39\x3a\x2e\x39\x32\x2e\ \x31\x30\x2e\x33\x32\x29\x2e\x2d\x2a\x32\x34\x2a\x31\x30\x32\x3d\ \x3d\x2f\x38\x31\x2f\x36\x30\x31\x3c\x3e\x36\x39\x38\x38\x43\x48\ \x39\x4b\x4d\x33\x3c\x3c\x38\x3b\x3e\x30\x2f\x31\x29\x2d\x2a\x34\ \x32\x36\x31\x36\x37\x39\x3e\x40\x2f\x36\x35\x2d\x34\x2f\x31\x37\ \x39\x32\x3a\x39\x39\x47\x49\x3b\x4e\x50\x36\x3d\x3d\x40\x4a\x49\ \x40\x4e\x4f\x37\x3e\x3d\x3a\x47\x44\x3f\x48\x47\x35\x3b\x3e\x46\ \x50\x52\x3d\x47\x4e\x39\x45\x47\x3a\x47\x49\x35\x41\x41\x3d\x48\ \x4d\x39\x3f\x40\x31\x35\x32\x27\x30\x2b\x00\x00\x00\xa4\xb8\xc2\ \xd8\xf0\xf8\xd7\xef\xf7\xd3\xec\xf6\xa2\xc0\xc5\x2b\x37\x39\x34\ \x3d\x3b\x34\x3c\x3d\x24\x2a\x25\x2d\x30\x32\x37\x40\x46\x2f\x33\ \x35\x3d\x44\x48\x3b\x47\x4d\x34\x3c\x39\x37\x3b\x3e\x3d\x43\x43\ \x3b\x42\x42\x34\x37\x30\x3b\x3c\x3e\x37\x3d\x3b\x39\x3d\x3e\x34\ \x40\x41\x2f\x37\x37\x2f\x33\x34\x32\x40\x46\x24\x2d\x2e\x35\x3d\ \x42\x36\x44\x45\x30\x37\x37\x36\x3d\x39\x2e\x37\x33\x43\x60\x82\ \x46\x6b\x79\x3f\x55\x63\x56\x83\x9c\x67\xa7\xcb\x30\x46\x4b\x32\ \x42\x48\x29\x39\x37\x2a\x33\x36\x31\x3d\x3d\x31\x3e\x4b\x2e\x37\ \x3a\x31\x3f\x3e\x2c\x3d\x42\x3e\x5f\x68\x31\x42\x40\x34\x3c\x3d\ \x30\x37\x3a\x33\x36\x33\x31\x39\x39\x35\x40\x3c\x34\x3d\x39\x45\ \x5a\x70\x45\x6d\x86\x43\x67\x74\x37\x40\x43\x23\x25\x21\x2f\x34\ \x32\x36\x40\x3f\x26\x2b\x25\x37\x38\x39\x39\x4b\x4e\x38\x46\x4d\ \x30\x31\x31\x31\x3d\x42\x31\x3d\x40\x2a\x40\x45\x2b\x36\x3e\x26\ \x26\x29\x33\x3d\x42\x2e\x2f\x2d\x2d\x37\x37\x32\x31\x35\x36\x3e\ \x40\x31\x3b\x3c\x24\x2d\x2f\x29\x32\x33\x2c\x32\x35\x2b\x35\x35\ \x2f\x35\x3e\x37\x3e\x3e\x35\x38\x37\x34\x38\x36\x31\x3c\x3f\x33\ \x3d\x46\x3e\x4c\x55\x52\x5b\x63\x45\x51\x55\x3e\x48\x4c\x3e\x4b\ \x4f\x3e\x49\x4d\x32\x39\x3b\x2d\x30\x2e\x2d\x39\x34\x30\x3b\x3a\ \x2c\x2f\x2f\x22\x28\x26\x2b\x32\x31\x31\x32\x31\x2d\x2f\x2b\x29\ \x2d\x29\x28\x2b\x22\x2d\x30\x2e\x2e\x2e\x29\x2b\x27\x23\x2a\x2c\ \x2a\x2f\x30\x30\x2f\x34\x30\x30\x30\x2e\x30\x34\x2e\x2e\x32\x2f\ \x30\x31\x2f\x2a\x33\x2e\x35\x3b\x3d\x39\x3d\x38\x33\x3c\x38\x30\ \x34\x30\x38\x40\x3f\x38\x3e\x3f\x36\x3e\x38\x38\x41\x44\x36\x40\ \x45\x3c\x41\x44\x3c\x46\x4e\x38\x43\x41\x27\x29\x26\x29\x2d\x2a\ \x2d\x31\x2e\x28\x2d\x30\x2a\x36\x3c\x33\x3f\x45\x34\x39\x3c\x31\ \x35\x36\x37\x3b\x3b\x37\x42\x3f\x35\x41\x40\x39\x45\x45\x38\x49\ \x49\x35\x3b\x3c\x2b\x31\x31\x34\x42\x43\x3a\x44\x47\x3c\x42\x41\ \x2f\x35\x34\x2c\x2d\x2f\x35\x3b\x3b\x3d\x49\x48\x41\x4c\x4a\x42\ \x46\x46\x43\x4c\x50\x30\x33\x35\x35\x41\x43\x3c\x3e\x47\x36\x40\ \x47\x42\x51\x56\x3a\x4b\x4f\x3f\x50\x52\x38\x3f\x3e\x3a\x42\x43\ \x34\x41\x46\x40\x4d\x50\x00\x00\x00\xae\xc5\xd2\xd6\xef\xf7\xdf\ \xf3\xfb\xd7\xf1\xf8\x5b\x76\x79\x34\x38\x39\x36\x3c\x3c\x29\x2d\ \x2b\x27\x28\x23\x33\x3b\x3d\x31\x3a\x3e\x31\x40\x47\x31\x42\x49\ \x30\x3e\x41\x2e\x39\x3b\x2f\x2d\x30\x37\x46\x48\x39\x4b\x4f\x31\ \x38\x38\x46\x4c\x4b\x38\x3e\x3a\x3c\x41\x43\x32\x3d\x45\x2b\x33\ \x32\x2f\x33\x36\x35\x3b\x40\x26\x2c\x2e\x3c\x42\x42\x34\x3d\x3d\ \x35\x3b\x3d\x39\x3e\x3f\x2e\x36\x36\x33\x48\x62\x66\xac\xd2\x6f\ \xbd\xde\x69\xb1\xd0\x28\x4a\x54\x2d\x38\x3a\x31\x37\x3c\x34\x3e\ \x42\x34\x3e\x3c\x2d\x39\x3d\x31\x3b\x41\x33\x3d\x48\x3e\x57\x6e\ \x50\x80\xa4\x3e\x69\x7d\x3e\x4a\x49\x37\x3c\x3c\x35\x3c\x3e\x2c\ \x33\x30\x39\x3b\x3d\x3e\x44\x42\x34\x3e\x3b\x3a\x51\x60\x53\x82\ \xa0\x40\x68\x85\x35\x3d\x40\x1e\x20\x1c\x3a\x41\x3d\x36\x3e\x3c\ \x21\x27\x21\x31\x39\x34\x2f\x35\x36\x38\x3c\x3e\x38\x48\x4c\x2b\ \x37\x3d\x33\x3c\x41\x2b\x38\x40\x24\x2c\x2b\x31\x3c\x39\x2c\x2a\ \x29\x34\x37\x40\x2e\x38\x3d\x25\x33\x30\x27\x32\x33\x27\x34\x38\ \x2b\x3b\x40\x31\x38\x3f\x2e\x3a\x40\x2c\x36\x39\x2e\x37\x36\x35\ \x3a\x3c\x2e\x34\x37\x30\x38\x39\x39\x41\x47\x44\x4d\x50\x57\x5f\ \x5e\x4d\x53\x54\x3b\x4b\x50\x33\x3e\x42\x30\x39\x3a\x2d\x30\x2e\ \x2a\x2f\x2d\x29\x2d\x2d\x2c\x2e\x2f\x2c\x2e\x2d\x2b\x33\x2e\x2c\ \x30\x2e\x32\x36\x35\x2a\x2d\x29\x24\x24\x23\x2b\x31\x2e\x2f\x35\ \x32\x2c\x35\x30\x33\x36\x30\x2e\x31\x2c\x2d\x32\x31\x2e\x33\x31\ \x30\x34\x33\x2a\x2d\x2a\x27\x2c\x2b\x33\x41\x40\x2d\x36\x32\x28\ \x31\x31\x2a\x2d\x2b\x30\x36\x36\x38\x3a\x3a\x34\x3c\x3b\x2b\x2b\ \x2b\x29\x2c\x24\x2a\x2e\x2d\x33\x35\x37\x3a\x3f\x3c\x2f\x2c\x2e\ \x2c\x2d\x2e\x36\x36\x37\x34\x38\x3d\x31\x36\x39\x34\x3d\x42\x38\ \x41\x43\x35\x41\x43\x34\x3f\x46\x27\x31\x30\x29\x2e\x2a\x30\x33\ \x31\x28\x2d\x2b\x2b\x32\x32\x37\x3e\x3d\x30\x33\x34\x2a\x2e\x2e\ \x2f\x39\x3a\x31\x35\x38\x34\x3b\x3b\x31\x34\x36\x31\x33\x36\x37\ \x3c\x3f\x38\x43\x48\x34\x3f\x40\x32\x34\x32\x34\x3a\x39\x26\x2a\ \x29\x35\x3a\x3b\x36\x43\x46\x39\x46\x49\x3a\x47\x4a\x31\x3f\x43\ \x35\x41\x42\x2d\x36\x35\x3b\x42\x43\x41\x4c\x4e\x34\x38\x3b\x41\ \x48\x48\x00\x00\x00\xc2\xda\xe8\xe4\xf6\xfb\xd7\xef\xf5\xc9\xe5\ \xec\x5f\x7b\x84\x39\x47\x4c\x36\x42\x43\x2f\x40\x44\x37\x3c\x40\ \x35\x39\x3a\x35\x3a\x3d\x33\x3e\x43\x37\x42\x47\x2d\x39\x3a\x2f\ \x39\x3b\x36\x3f\x44\x33\x3c\x39\x30\x39\x3a\x2f\x36\x38\x38\x3d\ \x3f\x36\x42\x3f\x33\x37\x34\x36\x41\x44\x23\x2b\x2a\x3a\x3d\x3c\ \x3b\x46\x47\x27\x2e\x2d\x3e\x48\x4f\x31\x38\x39\x31\x31\x32\x35\ \x39\x3a\x35\x3a\x3d\x2b\x34\x37\x38\x54\x6e\x41\x63\x7f\x2c\x4d\ \x54\x26\x33\x38\x3d\x4c\x5b\x3b\x3f\x42\x2f\x39\x3b\x27\x34\x30\ \x45\x67\x7e\x46\x5d\x72\x58\x8f\xb0\x4e\x83\xa1\x35\x53\x67\x41\ \x54\x60\x32\x38\x38\x3d\x46\x44\x33\x37\x33\x39\x3b\x3b\x30\x2f\ \x2c\x33\x37\x35\x2e\x38\x36\x3d\x5e\x7a\x42\x63\x7b\x49\x70\x82\ \x33\x3d\x3b\x1f\x22\x23\x33\x3c\x3a\x33\x3e\x3f\x1f\x2b\x26\x38\ \x3b\x3c\x36\x3e\x3b\x33\x37\x37\x2c\x35\x3a\x2f\x39\x41\x32\x36\ \x36\x30\x39\x3d\x21\x27\x25\x30\x36\x35\x3c\x44\x44\x2f\x34\x36\ \x23\x2e\x2c\x2a\x36\x3b\x38\x51\x59\x30\x3c\x42\x30\x36\x32\x32\ \x35\x33\x31\x37\x3b\x2f\x32\x37\x32\x35\x3a\x36\x40\x40\x43\x4a\ \x4e\x3b\x45\x43\x40\x47\x50\x56\x5a\x5e\x4c\x55\x56\x34\x3e\x41\ \x31\x31\x32\x26\x2b\x29\x2b\x2d\x2d\x2c\x3a\x38\x2c\x33\x2e\x29\ \x31\x33\x2f\x2e\x2f\x27\x28\x24\x2b\x27\x27\x26\x29\x23\x2e\x33\ \x2a\x2c\x30\x2f\x24\x2e\x2a\x29\x2b\x26\x28\x28\x23\x28\x2e\x29\ \x29\x29\x27\x29\x31\x2b\x31\x37\x36\x33\x39\x39\x32\x38\x34\x34\ \x3b\x3d\x31\x3a\x39\x39\x43\x3e\x30\x38\x36\x30\x36\x36\x33\x37\ \x39\x39\x40\x3a\x2f\x31\x2c\x31\x31\x31\x2e\x35\x37\x2f\x3b\x37\ \x2b\x2f\x28\x32\x38\x36\x34\x38\x37\x2f\x31\x2f\x33\x39\x35\x37\ \x3f\x3b\x3a\x41\x43\x3a\x44\x42\x35\x43\x41\x33\x39\x3b\x39\x42\ \x44\x36\x3e\x3f\x32\x3c\x3f\x37\x43\x4b\x2f\x38\x33\x31\x40\x3b\ \x38\x3e\x3f\x3c\x48\x4a\x38\x42\x45\x3a\x42\x47\x3c\x4a\x4b\x3a\ \x48\x46\x2c\x30\x33\x2b\x35\x32\x35\x3d\x41\x3e\x4b\x4c\x3d\x48\ \x49\x34\x36\x39\x39\x41\x3f\x3a\x41\x44\x37\x41\x44\x3f\x4a\x4b\ \x34\x43\x46\x2c\x33\x36\x2f\x37\x3a\x35\x3a\x3b\x38\x42\x42\x41\ \x49\x47\x33\x3a\x3b\x32\x35\x34\x40\x47\x4a\x41\x49\x4f\x00\x00\ \x00\xc3\xe0\xed\xdc\xf1\xf7\xde\xf2\xfa\xdb\xf4\xfa\x74\x92\x9d\ \x4b\x61\x6d\x38\x47\x4c\x31\x45\x47\x30\x36\x39\x36\x40\x41\x2b\ \x37\x39\x2b\x32\x36\x30\x3e\x40\x38\x3c\x3d\x38\x3f\x3d\x3b\x47\ \x4b\x34\x41\x43\x2f\x3a\x3f\x36\x3b\x39\x34\x3f\x3d\x34\x43\x47\ \x2f\x36\x36\x35\x3e\x3b\x28\x30\x2b\x43\x4c\x4d\x36\x41\x3d\x2a\ \x2e\x2e\x3a\x49\x4a\x31\x3a\x3a\x2f\x32\x34\x37\x35\x3c\x2c\x2d\ \x30\x2d\x38\x38\x32\x3c\x41\x26\x2c\x2d\x35\x43\x4e\x47\x6a\x7e\ \x5e\x91\xad\x2d\x36\x37\x33\x38\x3d\x28\x2b\x2c\x4b\x70\x96\x4c\ \x80\x9e\x35\x51\x5f\x35\x40\x45\x3f\x59\x67\x37\x44\x4b\x32\x3e\ \x3a\x38\x40\x41\x32\x3c\x39\x38\x3f\x38\x34\x3e\x3a\x3d\x41\x44\ \x2f\x36\x3a\x4b\x6d\x86\x35\x47\x58\x33\x3c\x40\x32\x3d\x3e\x21\ \x25\x24\x33\x3e\x3a\x2e\x3d\x3c\x1f\x20\x1d\x38\x3a\x3b\x3e\x45\ \x4c\x2f\x3e\x45\x29\x36\x35\x30\x30\x30\x32\x33\x37\x2c\x34\x35\ \x28\x30\x2c\x29\x33\x32\x32\x46\x4b\x38\x46\x49\x2f\x3a\x40\x37\ \x4d\x51\x3b\x4c\x53\x32\x3e\x3f\x2d\x32\x34\x39\x3b\x3b\x32\x3a\ \x3c\x37\x3f\x43\x47\x49\x4d\x4d\x52\x55\x57\x5a\x5a\x3a\x42\x40\ \x3c\x45\x4a\x34\x38\x3b\x30\x35\x33\x2a\x30\x2d\x28\x2c\x27\x2b\ \x2b\x2a\x2a\x2b\x2a\x25\x2b\x2b\x2e\x31\x2f\x32\x3a\x41\x2e\x31\ \x2e\x27\x29\x25\x24\x25\x21\x26\x2a\x29\x28\x2c\x28\x30\x36\x31\ \x2f\x36\x36\x32\x37\x32\x32\x36\x35\x33\x33\x34\x2e\x36\x35\x2e\ \x32\x30\x26\x2c\x28\x27\x29\x26\x2d\x2c\x24\x2c\x2b\x2e\x2b\x30\ \x30\x2f\x37\x31\x36\x3e\x3c\x34\x38\x34\x38\x3f\x3e\x37\x3f\x3e\ \x3b\x3c\x3b\x36\x3d\x3b\x28\x30\x31\x2c\x2f\x30\x32\x3d\x3f\x36\ \x40\x45\x31\x3e\x39\x31\x34\x36\x30\x34\x34\x2a\x35\x33\x29\x34\ \x34\x29\x2d\x26\x30\x32\x33\x25\x2c\x2a\x2a\x2e\x2b\x32\x35\x34\ \x34\x40\x41\x36\x41\x45\x37\x3a\x3c\x33\x3b\x3e\x36\x36\x3c\x2d\ \x2d\x2e\x2b\x30\x35\x33\x39\x3f\x2f\x36\x33\x30\x35\x37\x34\x3f\ \x42\x36\x42\x40\x40\x44\x4d\x3a\x45\x4b\x2f\x30\x31\x38\x3f\x40\ \x42\x4f\x51\x43\x4d\x4e\x42\x4c\x4e\x38\x44\x44\x43\x4e\x54\x3e\ \x4b\x4d\x3b\x44\x4c\x39\x3f\x3f\x3e\x49\x48\x35\x3e\x3e\x36\x41\ \x43\x40\x46\x46\x34\x3c\x3e\x2c\x36\x32\x00\x00\x00\xc6\xe2\xef\ \xde\xf4\xfa\xdf\xf5\xfb\xdb\xf3\xf9\x8b\xa9\xad\x42\x49\x50\x43\ \x52\x5a\x39\x44\x4c\x36\x3d\x39\x38\x3e\x40\x2b\x32\x32\x32\x38\ \x3b\x3c\x47\x4d\x39\x41\x47\x32\x3c\x3f\x32\x3e\x41\x35\x41\x4a\ \x33\x45\x4e\x34\x45\x4b\x2e\x38\x3b\x3b\x44\x46\x3b\x49\x48\x31\ \x3a\x33\x2e\x2a\x2e\x46\x4b\x4d\x31\x39\x37\x31\x34\x37\x37\x42\ \x47\x2d\x36\x36\x39\x40\x48\x31\x36\x36\x30\x38\x3c\x2c\x3c\x45\ \x36\x49\x56\x51\x80\x99\x5f\x9c\xc2\x50\x80\x9f\x44\x6c\x86\x38\ \x40\x3f\x3a\x43\x4b\x34\x3e\x4e\x45\x5d\x6f\x30\x3b\x3d\x34\x3d\ \x3f\x42\x4c\x57\x55\x7f\x9c\x35\x42\x44\x34\x3c\x3b\x31\x3a\x38\ \x2d\x36\x32\x33\x3d\x3b\x37\x39\x3a\x3f\x43\x3f\x35\x37\x34\x32\ \x39\x3c\x30\x36\x39\x36\x3a\x3d\x29\x37\x35\x1d\x23\x1e\x35\x3e\ \x3f\x33\x3b\x3a\x21\x22\x1e\x30\x34\x34\x3e\x42\x44\x2c\x38\x39\ \x28\x34\x33\x30\x32\x35\x33\x39\x39\x27\x30\x2e\x28\x37\x3a\x1f\ \x29\x2e\x3b\x4b\x59\x48\x59\x64\x37\x49\x51\x36\x47\x4c\x36\x3f\ \x40\x37\x3b\x3d\x3a\x41\x3f\x40\x3f\x43\x3b\x41\x46\x48\x51\x54\ \x4a\x50\x4d\x4e\x54\x56\x4c\x48\x46\x3a\x3c\x3c\x36\x38\x33\x35\ \x3c\x3f\x2e\x37\x37\x26\x27\x26\x26\x24\x23\x26\x2b\x2b\x2e\x32\ \x30\x27\x28\x24\x2f\x2f\x2a\x30\x32\x32\x2c\x31\x2f\x2c\x33\x2f\ \x29\x2f\x2e\x2d\x31\x2f\x2d\x2f\x2e\x29\x2f\x2d\x2f\x2e\x2c\x38\ \x39\x35\x2d\x2e\x2e\x31\x37\x38\x31\x35\x34\x32\x33\x37\x2e\x37\ \x35\x2f\x39\x37\x34\x3b\x3b\x31\x34\x37\x2a\x30\x2d\x2b\x2e\x2b\ \x27\x2a\x26\x2e\x32\x31\x30\x33\x31\x2c\x34\x30\x2b\x30\x2e\x27\ \x2e\x2d\x2e\x30\x38\x39\x43\x45\x2e\x30\x36\x32\x39\x38\x32\x38\ \x34\x3f\x4c\x4a\x36\x3d\x3d\x2e\x38\x34\x34\x42\x44\x3c\x41\x48\ \x35\x3c\x3d\x33\x3d\x44\x37\x48\x45\x38\x41\x43\x39\x46\x46\x2d\ \x33\x34\x2e\x38\x39\x30\x3d\x3c\x31\x39\x39\x37\x40\x40\x3c\x42\ \x48\x34\x38\x3c\x35\x40\x3e\x34\x3a\x38\x39\x43\x46\x39\x47\x4a\ \x38\x3e\x40\x32\x35\x35\x40\x4a\x4a\x39\x43\x46\x38\x42\x47\x3d\ \x44\x47\x41\x49\x4b\x3a\x46\x4b\x3c\x49\x4a\x3a\x42\x44\x3f\x49\ \x4d\x3d\x47\x4b\x33\x36\x3a\x2e\x37\x38\x31\x42\x46\x30\x3e\x39\ \x31\x3b\x39\x38\x40\x43\x00\x00\x00\xc6\xe1\xf0\xdd\xf3\xf9\xd9\ \xee\xf8\xd7\xef\xf6\xa0\xc1\xc8\x4d\x62\x6b\x37\x42\x48\x37\x3e\ \x3e\x35\x3e\x3f\x34\x3c\x3b\x2a\x31\x2f\x36\x3d\x43\x33\x40\x44\ \x32\x40\x49\x32\x3f\x46\x30\x3f\x40\x33\x3d\x42\x33\x40\x3f\x38\ \x40\x44\x32\x39\x3a\x36\x44\x42\x35\x3f\x3f\x30\x39\x39\x2b\x2d\ \x30\x3d\x49\x4a\x2c\x34\x2f\x33\x32\x36\x33\x46\x4a\x31\x39\x37\ \x2a\x31\x32\x29\x31\x2a\x2c\x32\x38\x63\x9a\xc5\x65\x9f\xc6\x49\ \x74\x8c\x32\x40\x4a\x2c\x39\x3e\x3a\x52\x63\x3a\x3e\x3b\x37\x3f\ \x42\x3a\x46\x49\x3d\x45\x49\x3d\x44\x45\x33\x3a\x3e\x34\x3f\x45\ \x3c\x4e\x5d\x3a\x46\x4c\x37\x3f\x40\x3f\x46\x49\x38\x42\x42\x32\ \x31\x32\x2d\x33\x35\x32\x36\x36\x39\x3d\x3f\x3b\x41\x41\x35\x3d\ \x3f\x34\x3b\x39\x2c\x30\x2e\x1a\x1c\x19\x37\x3d\x43\x30\x38\x39\ \x22\x25\x25\x2e\x36\x3a\x30\x3e\x42\x25\x2d\x2c\x29\x32\x32\x1e\ \x25\x26\x28\x37\x37\x2a\x35\x39\x28\x3e\x44\x2a\x34\x3e\x3d\x53\ \x60\x33\x4a\x5b\x34\x45\x4c\x3d\x49\x45\x33\x3b\x3b\x2e\x36\x3b\ \x39\x3c\x3b\x3f\x46\x49\x4b\x51\x52\x50\x54\x54\x47\x4f\x4a\x3e\ \x47\x44\x33\x35\x35\x30\x31\x33\x2c\x2b\x2f\x31\x3c\x3e\x2c\x35\ \x39\x27\x2b\x2b\x2a\x2b\x2b\x30\x30\x2e\x2b\x2d\x30\x28\x2c\x29\ \x26\x28\x2b\x27\x28\x28\x2c\x2e\x2b\x29\x2b\x2d\x32\x35\x30\x38\ \x40\x3d\x36\x39\x38\x30\x39\x3b\x2e\x35\x36\x31\x31\x2e\x30\x33\ \x30\x35\x3a\x39\x38\x3c\x3c\x38\x3e\x3d\x3f\x41\x42\x34\x3a\x3b\ \x2f\x32\x32\x34\x39\x37\x31\x3a\x33\x2e\x39\x37\x30\x36\x36\x2a\ \x34\x31\x32\x38\x3c\x35\x3b\x3b\x33\x3a\x3a\x31\x38\x3b\x2f\x38\ \x39\x35\x3a\x41\x38\x46\x47\x33\x3a\x3b\x2e\x31\x2f\x30\x38\x34\ \x35\x3c\x3d\x39\x40\x42\x3c\x49\x44\x2e\x34\x36\x36\x3b\x3f\x37\ \x41\x46\x34\x41\x40\x33\x3a\x37\x33\x3c\x40\x39\x3d\x41\x3a\x44\ \x49\x36\x3f\x42\x36\x3c\x3e\x3b\x45\x48\x35\x34\x37\x35\x42\x4d\ \x32\x3f\x42\x2f\x2f\x36\x30\x37\x37\x2e\x37\x33\x30\x35\x36\x37\ \x3d\x40\x36\x3b\x3b\x3e\x3f\x47\x43\x4d\x4f\x3d\x46\x46\x2e\x37\ \x36\x33\x3f\x40\x37\x41\x48\x35\x39\x3e\x3c\x45\x47\x32\x37\x39\ \x3b\x47\x4e\x40\x4c\x48\x44\x55\x55\x37\x41\x43\x42\x4e\x53\x3b\ \x4a\x4e\x00\x00\x00\xcc\xe5\xf0\xc9\xea\xf6\xb9\xdd\xee\xca\xe5\ \xef\xc6\xe2\xe8\x5e\x78\x80\x3a\x45\x4b\x3a\x49\x4f\x3d\x48\x4a\ \x32\x39\x36\x35\x3d\x3f\x35\x3f\x45\x2f\x3c\x40\x2e\x3c\x40\x30\ \x39\x3f\x34\x41\x45\x35\x41\x47\x2e\x38\x3c\x35\x38\x3c\x34\x42\ \x44\x31\x3c\x44\x2f\x3a\x41\x2a\x36\x38\x2a\x31\x32\x39\x46\x48\ \x2c\x33\x34\x2e\x35\x38\x34\x41\x46\x2d\x38\x3f\x24\x2e\x2d\x2f\ \x37\x3a\x2d\x3b\x4b\x48\x6c\x86\x2a\x38\x3d\x3a\x3d\x42\x3a\x3f\ \x41\x37\x4b\x5c\x3b\x51\x5a\x33\x40\x3d\x32\x3e\x43\x31\x35\x37\ \x3b\x43\x42\x35\x3e\x3b\x33\x38\x3d\x44\x5f\x6e\x4a\x71\x8b\x3a\ \x44\x47\x31\x3a\x39\x2e\x39\x36\x33\x3a\x38\x36\x40\x38\x35\x38\ \x3b\x2b\x34\x30\x32\x3b\x3b\x2e\x30\x31\x36\x43\x44\x36\x3c\x40\ \x24\x31\x30\x1c\x1e\x19\x39\x3c\x3e\x32\x3a\x3a\x26\x22\x22\x37\ \x3e\x3f\x32\x3f\x3f\x2f\x3d\x41\x21\x30\x35\x2b\x37\x3b\x32\x3b\ \x3c\x32\x3b\x3e\x2d\x40\x47\x26\x38\x3b\x2f\x41\x4b\x3a\x51\x5d\ \x42\x4c\x50\x33\x3c\x3c\x35\x3f\x41\x3d\x46\x48\x43\x4a\x4c\x51\ \x57\x57\x42\x4b\x4a\x3f\x4a\x49\x36\x3b\x3a\x30\x35\x36\x2a\x2d\ \x2b\x2e\x31\x2e\x2a\x30\x33\x2e\x35\x38\x2c\x2f\x2f\x2c\x2e\x2a\ \x28\x31\x2c\x28\x2b\x26\x25\x2a\x27\x2c\x2f\x31\x2c\x32\x31\x2b\ \x2d\x2a\x32\x2f\x2d\x33\x36\x38\x2b\x2d\x2d\x2a\x29\x28\x30\x32\ \x2f\x31\x34\x32\x2d\x32\x32\x33\x37\x39\x2d\x32\x32\x2f\x37\x35\ \x2b\x32\x30\x2b\x2b\x28\x2d\x30\x2f\x30\x38\x3a\x36\x3d\x3b\x34\ \x38\x35\x35\x3c\x3a\x34\x3f\x43\x2c\x36\x39\x2a\x37\x36\x2c\x32\ \x30\x2f\x36\x31\x2a\x2a\x2c\x2f\x31\x32\x2e\x34\x38\x30\x3b\x37\ \x2b\x31\x31\x31\x33\x33\x2a\x2f\x2c\x2d\x33\x31\x2f\x35\x34\x34\ \x37\x36\x38\x38\x35\x2e\x33\x30\x2c\x38\x37\x32\x41\x41\x39\x40\ \x3e\x31\x37\x38\x36\x41\x45\x3b\x46\x49\x37\x3d\x3f\x31\x39\x38\ \x3d\x46\x47\x31\x3a\x3a\x33\x3a\x35\x35\x43\x49\x3d\x48\x4b\x3b\ \x48\x50\x39\x43\x4c\x35\x3c\x3c\x48\x4f\x4c\x39\x47\x47\x38\x45\ \x46\x3c\x42\x4e\x3e\x40\x45\x32\x31\x30\x37\x41\x46\x43\x4d\x55\ \x3a\x44\x48\x41\x4e\x4c\x3e\x4b\x4c\x42\x4d\x54\x44\x51\x56\x39\ \x41\x42\x36\x3f\x42\x43\x4c\x54\x33\x3f\x3f\x32\x36\x39\x00\x00\ \x00\xb4\xd9\xed\xbf\xe1\xf2\xc7\xe6\xf6\xc0\xe0\xef\xce\xeb\xf5\ \x78\x95\x9f\x37\x3f\x41\x34\x41\x42\x37\x3d\x3d\x31\x3f\x45\x37\ \x3d\x40\x39\x45\x4d\x2e\x3e\x3c\x33\x3b\x40\x2b\x3a\x3d\x36\x3f\ \x47\x31\x3c\x3b\x37\x43\x48\x32\x41\x45\x31\x3f\x41\x2e\x40\x47\ \x2a\x35\x3a\x2d\x3a\x3c\x2a\x30\x32\x32\x3e\x3f\x28\x33\x34\x2a\ \x31\x35\x2e\x36\x39\x2d\x31\x31\x2b\x34\x36\x24\x28\x28\x37\x3e\ \x4b\x2d\x3a\x3a\x39\x3c\x40\x3b\x38\x3e\x38\x49\x51\x3d\x4e\x5c\ \x32\x39\x39\x3e\x45\x47\x33\x39\x41\x35\x39\x3f\x38\x46\x4b\x44\ \x63\x76\x61\x9a\xba\x4b\x76\x9b\x3d\x58\x66\x38\x3b\x3d\x32\x39\ \x3a\x31\x33\x32\x3b\x3f\x40\x36\x3d\x3e\x28\x2b\x2a\x3b\x45\x42\ \x31\x37\x34\x28\x2b\x2b\x36\x3a\x3d\x39\x42\x44\x28\x2d\x2a\x20\ \x22\x20\x3b\x3e\x41\x34\x3a\x3a\x21\x27\x24\x31\x3f\x40\x24\x37\ \x37\x26\x2f\x30\x28\x34\x37\x31\x42\x44\x31\x38\x3b\x33\x3a\x3d\ \x2d\x3b\x41\x3e\x4c\x53\x30\x3f\x46\x35\x46\x4f\x37\x46\x48\x41\ \x4b\x4f\x55\x5a\x5c\x4a\x51\x52\x4b\x4a\x4c\x3f\x45\x43\x36\x35\ \x36\x33\x38\x39\x2c\x30\x2b\x26\x2b\x29\x28\x2b\x29\x2c\x30\x34\ \x2f\x34\x34\x2f\x3b\x3c\x2a\x2e\x2e\x2d\x30\x30\x33\x39\x3a\x32\ \x36\x34\x31\x35\x36\x29\x2b\x29\x2b\x29\x26\x2a\x2c\x29\x28\x2c\ \x2a\x2d\x28\x2a\x2d\x2f\x30\x2d\x31\x31\x32\x37\x38\x30\x35\x34\ \x2e\x38\x33\x33\x3a\x3d\x31\x39\x40\x36\x3c\x3f\x2b\x30\x2d\x2d\ \x38\x3a\x2d\x35\x36\x26\x2f\x2c\x35\x37\x37\x36\x39\x38\x33\x38\ \x39\x3a\x3f\x3f\x3a\x46\x43\x3d\x44\x41\x37\x3a\x3a\x2f\x33\x32\ \x30\x33\x37\x2e\x3a\x3a\x34\x41\x45\x2c\x37\x33\x33\x39\x35\x33\ \x38\x38\x34\x3c\x3a\x35\x39\x3c\x34\x38\x3c\x34\x3e\x3a\x2b\x30\ \x2a\x33\x36\x38\x35\x41\x43\x30\x3c\x3d\x31\x39\x38\x35\x3f\x3e\ \x32\x3b\x3a\x39\x44\x42\x39\x43\x41\x35\x3e\x3f\x2c\x35\x37\x38\ \x3b\x3e\x35\x3d\x3b\x38\x40\x47\x2c\x34\x33\x2d\x34\x36\x38\x44\ \x48\x35\x41\x43\x2d\x30\x32\x30\x39\x41\x30\x39\x3c\x38\x41\x40\ \x3b\x41\x3f\x40\x46\x4c\x3c\x4a\x53\x3f\x4f\x50\x3d\x41\x3e\x37\ \x45\x48\x36\x3d\x3c\x39\x42\x45\x32\x38\x3e\x33\x3f\x43\x36\x44\ \x44\x2e\x32\x31\x32\x36\x36\x37\x41\x44\x00\x00\x00\xba\xdb\xee\ \xc1\xe2\xf0\xc6\xe4\xf3\xcf\xe9\xf5\xd9\xf0\xf9\x6d\x83\x8e\x40\ \x4a\x53\x31\x3f\x46\x32\x3c\x3b\x32\x35\x3a\x31\x3b\x3c\x30\x37\ \x38\x2b\x32\x32\x37\x39\x41\x30\x38\x3b\x36\x3e\x40\x36\x40\x47\ \x31\x3f\x43\x31\x40\x44\x2c\x35\x3b\x30\x3c\x3c\x2c\x32\x39\x23\ \x31\x2f\x28\x2e\x31\x2e\x3b\x3c\x21\x29\x29\x30\x33\x37\x29\x30\ \x32\x2d\x37\x36\x2f\x33\x30\x3d\x43\x44\x39\x41\x49\x3f\x44\x45\ \x3b\x42\x43\x32\x33\x37\x35\x3b\x3c\x43\x52\x62\x38\x3b\x40\x3a\ \x41\x42\x2b\x34\x35\x56\x7a\x9c\x5c\x8c\xad\x56\x95\xb6\x3e\x55\ \x61\x36\x42\x4d\x30\x47\x4f\x2c\x31\x33\x39\x3a\x40\x38\x42\x41\ \x2b\x31\x31\x2d\x35\x32\x33\x33\x32\x30\x39\x38\x2f\x3a\x39\x2b\ \x39\x38\x26\x2b\x29\x2a\x2f\x2e\x2b\x2f\x2e\x25\x25\x24\x39\x3f\ \x40\x2c\x38\x36\x2b\x36\x37\x28\x3a\x43\x1e\x30\x35\x25\x38\x3f\ \x2a\x35\x37\x2e\x36\x3d\x34\x3a\x3a\x2f\x39\x43\x34\x3f\x47\x38\ \x46\x4d\x3c\x4c\x54\x44\x51\x5a\x45\x4f\x4e\x49\x4e\x55\x49\x4d\ \x50\x3d\x41\x40\x3b\x42\x3d\x36\x36\x33\x35\x34\x34\x33\x36\x35\ \x29\x2d\x29\x2e\x33\x34\x2d\x31\x2b\x29\x2f\x28\x2f\x31\x31\x2c\ \x31\x2f\x2e\x32\x2d\x28\x2c\x28\x26\x2d\x2d\x26\x2b\x27\x30\x2e\ \x2d\x35\x35\x31\x30\x34\x35\x33\x3a\x35\x2d\x37\x35\x2b\x38\x37\ \x33\x39\x3a\x34\x34\x34\x33\x39\x39\x33\x3d\x3f\x37\x3f\x42\x39\ \x40\x3d\x32\x39\x3d\x3b\x3d\x3f\x36\x40\x3f\x38\x3f\x41\x3b\x44\ \x43\x34\x3b\x3b\x2f\x35\x33\x32\x34\x31\x2e\x31\x33\x27\x26\x28\ \x29\x2c\x2d\x28\x2b\x28\x35\x3b\x38\x38\x3c\x3c\x3b\x41\x48\x36\ \x43\x41\x3c\x46\x45\x3c\x45\x47\x37\x3d\x42\x35\x3b\x3d\x40\x44\ \x49\x3f\x43\x46\x3e\x48\x48\x33\x3a\x3a\x33\x3a\x3e\x3f\x47\x48\ \x36\x3f\x41\x32\x38\x3e\x33\x3b\x3d\x3a\x43\x43\x3f\x48\x4c\x49\ \x57\x57\x33\x37\x37\x33\x38\x36\x3d\x44\x48\x37\x46\x47\x3b\x45\ \x46\x3c\x42\x44\x3a\x45\x46\x37\x4b\x47\x38\x46\x47\x35\x42\x44\ \x3f\x4a\x4d\x38\x3e\x40\x40\x4b\x53\x3d\x46\x4a\x3c\x47\x4a\x41\ \x4a\x4c\x46\x54\x58\x41\x49\x4d\x3b\x42\x3e\x3b\x4f\x4d\x47\x51\ \x55\x41\x4c\x51\x40\x4d\x4f\x45\x50\x54\x3d\x4b\x4d\x45\x52\x56\ \x45\x54\x57\x3f\x4c\x50\x00\x00\x00\xb4\xd7\xea\xda\xf1\xf9\xda\ \xf0\xf9\xc7\xe5\xf2\xc7\xe4\xf1\x61\x7d\x86\x3a\x3f\x46\x37\x42\ \x43\x36\x3d\x39\x2f\x31\x32\x38\x43\x43\x2a\x2f\x2e\x33\x39\x37\ \x30\x33\x34\x34\x3f\x3f\x32\x38\x38\x33\x42\x44\x30\x3c\x3f\x2b\ \x37\x39\x2e\x39\x37\x2f\x38\x3f\x26\x2f\x30\x1f\x25\x24\x2b\x34\ \x35\x26\x2d\x2f\x23\x26\x26\x32\x37\x3b\x3f\x44\x45\x34\x34\x34\ \x2a\x32\x32\x33\x3c\x41\x56\x80\x9f\x44\x59\x5f\x3d\x43\x43\x35\ \x41\x3f\x34\x44\x52\x49\x65\x7c\x36\x38\x38\x3d\x45\x44\x33\x41\ \x50\x51\x7d\xa0\x30\x47\x59\x47\x6c\x7f\x3c\x44\x42\x3f\x58\x71\ \x29\x3b\x44\x29\x2b\x2a\x30\x35\x35\x33\x39\x39\x34\x3d\x3f\x2a\ \x34\x32\x33\x3a\x3a\x2c\x2f\x2e\x32\x3b\x39\x2b\x33\x33\x32\x39\ \x36\x30\x35\x32\x24\x2a\x29\x22\x29\x27\x28\x37\x37\x24\x32\x37\ \x2d\x39\x39\x2b\x3a\x3f\x2b\x3a\x45\x2e\x40\x45\x30\x3a\x3c\x3a\ \x44\x48\x32\x3a\x3f\x48\x4b\x54\x47\x4a\x50\x55\x5d\x63\x4a\x52\ \x58\x47\x56\x56\x49\x50\x4b\x3a\x41\x3b\x34\x33\x35\x2f\x33\x33\ \x2e\x32\x2f\x2f\x31\x2f\x34\x36\x36\x29\x2d\x27\x32\x31\x2a\x26\ \x2c\x27\x28\x2c\x2a\x26\x28\x23\x22\x27\x23\x22\x24\x20\x2a\x2e\ \x29\x31\x33\x31\x2f\x35\x34\x30\x30\x31\x31\x2f\x30\x2d\x2e\x2e\ \x2e\x34\x32\x2d\x32\x33\x2e\x37\x38\x30\x35\x37\x2d\x33\x34\x2b\ \x2d\x2e\x31\x36\x35\x2e\x36\x34\x31\x34\x37\x2f\x35\x30\x31\x37\ \x39\x2f\x33\x33\x36\x3e\x3b\x39\x3d\x3d\x37\x3e\x3c\x37\x41\x3c\ \x35\x3c\x3a\x36\x3c\x41\x3d\x45\x45\x3a\x42\x42\x35\x39\x3b\x34\ \x3c\x3f\x33\x39\x3c\x33\x3a\x3c\x32\x3a\x3f\x30\x33\x35\x2f\x37\ \x3a\x2c\x31\x31\x2e\x31\x35\x38\x41\x44\x3a\x46\x46\x34\x40\x3c\ \x2c\x2c\x2b\x2f\x38\x35\x30\x3b\x3e\x33\x35\x35\x31\x34\x34\x37\ \x3f\x41\x32\x38\x38\x35\x3d\x41\x3c\x42\x42\x30\x36\x34\x33\x35\ \x34\x33\x38\x3d\x30\x35\x3c\x35\x3b\x38\x34\x3e\x3a\x30\x33\x30\ \x2f\x37\x36\x28\x36\x33\x2f\x3b\x3f\x36\x47\x4b\x34\x36\x38\x32\ \x39\x3b\x31\x39\x3c\x32\x38\x37\x3a\x42\x41\x3e\x45\x45\x35\x39\ \x3d\x34\x3b\x3c\x37\x3f\x42\x3b\x42\x45\x33\x3c\x3b\x3a\x43\x45\ \x38\x42\x45\x2e\x33\x33\x3a\x3e\x46\x38\x41\x40\x2d\x31\x31\x32\ \x3a\x3b\x00\x00\x00\xce\xe6\xf2\xd4\xf0\xf6\xa6\xc7\xd8\x9e\xbf\ \xd2\xcb\xe7\xf1\x6c\x8a\x92\x36\x41\x41\x31\x34\x34\x34\x3d\x3f\ \x2b\x30\x30\x32\x32\x32\x2d\x39\x38\x35\x36\x3a\x37\x3c\x41\x2d\ \x36\x37\x2d\x39\x3c\x2a\x30\x34\x2b\x34\x3a\x2f\x39\x40\x23\x32\ \x32\x28\x2e\x30\x24\x2b\x2c\x1c\x21\x23\x26\x33\x34\x1f\x26\x29\ \x24\x2b\x2a\x34\x3e\x3f\x30\x36\x35\x33\x3e\x3f\x2d\x32\x2e\x2e\ \x36\x49\x5c\x98\xbe\x5a\x95\xb7\x5a\x8a\xa4\x51\x81\x9d\x5e\x92\ \xb5\x35\x4f\x58\x32\x3c\x40\x38\x42\x45\x3c\x52\x6a\x33\x43\x4d\ \x39\x50\x5f\x45\x5d\x70\x34\x41\x49\x4f\x7c\x98\x2a\x33\x35\x3c\ \x42\x41\x37\x3d\x3f\x35\x36\x35\x39\x40\x3f\x37\x3e\x3e\x32\x36\ \x35\x21\x23\x24\x35\x42\x46\x2c\x38\x3a\x2f\x35\x34\x2d\x35\x34\ \x2a\x35\x3a\x31\x3e\x44\x2e\x3f\x46\x33\x46\x4c\x30\x3c\x44\x36\ \x40\x45\x2f\x32\x38\x2f\x3a\x3e\x38\x40\x42\x36\x40\x41\x55\x59\ \x5f\x60\x69\x68\x5c\x63\x66\x51\x58\x5c\x52\x5a\x5a\x3e\x48\x49\ \x31\x39\x38\x35\x35\x37\x2c\x30\x2e\x26\x2c\x2c\x2b\x2d\x2b\x30\ \x38\x30\x2c\x2f\x2c\x28\x28\x23\x2e\x2e\x30\x26\x2b\x2b\x2d\x2c\ \x2c\x2d\x33\x2d\x2f\x39\x34\x2c\x34\x33\x2e\x2f\x30\x2f\x33\x31\ \x2d\x32\x32\x2f\x32\x2e\x30\x34\x35\x32\x35\x37\x32\x38\x3c\x35\ \x39\x41\x35\x34\x3a\x30\x32\x34\x30\x34\x34\x2e\x36\x37\x2f\x39\ \x39\x2b\x2c\x2d\x2b\x33\x38\x2e\x29\x2e\x2f\x2d\x30\x2b\x30\x30\ \x30\x33\x38\x38\x3c\x38\x2a\x37\x35\x29\x2f\x2e\x2d\x33\x32\x40\ \x44\x46\x3d\x47\x46\x3a\x41\x41\x3b\x46\x44\x37\x40\x3b\x38\x43\ \x45\x3c\x44\x47\x34\x3d\x3c\x35\x38\x39\x32\x39\x3d\x36\x40\x43\ \x35\x3d\x45\x32\x38\x3c\x35\x3d\x3e\x32\x36\x33\x2c\x31\x31\x3a\ \x42\x44\x39\x44\x48\x3a\x40\x42\x3f\x47\x45\x38\x43\x42\x36\x3f\ \x3d\x30\x37\x34\x34\x35\x34\x33\x3e\x3e\x33\x37\x3b\x39\x46\x46\ \x3e\x4a\x4c\x3e\x46\x49\x32\x37\x3c\x38\x40\x43\x3f\x49\x4d\x3f\ \x48\x49\x3b\x4d\x50\x38\x46\x47\x3f\x49\x4a\x44\x51\x56\x3c\x47\ \x48\x37\x40\x3f\x38\x46\x45\x3d\x48\x48\x49\x58\x5a\x3f\x49\x48\ \x37\x42\x44\x3c\x47\x4a\x49\x53\x5a\x43\x50\x4e\x39\x40\x3d\x41\ \x4d\x4c\x44\x50\x53\x3f\x43\x4d\x3a\x41\x42\x42\x54\x5b\x00\x00\ \x00\xc3\xe1\xf0\xb4\xd9\xde\x3f\x4a\x55\x61\x6d\x79\x59\x65\x6d\ \x53\x65\x6c\x39\x47\x4a\x2e\x33\x34\x30\x33\x34\x2d\x32\x2e\x35\ \x37\x37\x2c\x2f\x2d\x31\x32\x34\x30\x36\x35\x2f\x37\x38\x2f\x2b\ \x2e\x2a\x28\x29\x32\x36\x3a\x25\x2f\x2c\x27\x31\x2e\x25\x2b\x2f\ \x26\x2d\x31\x1f\x25\x27\x34\x3d\x3e\x26\x2e\x2e\x29\x32\x31\x27\ \x35\x38\x35\x38\x3e\x33\x37\x38\x30\x38\x36\x39\x45\x55\x37\x4f\ \x5f\x32\x4b\x62\x41\x6a\x8b\x37\x50\x62\x2d\x39\x40\x2d\x36\x34\ \x34\x3c\x3e\x36\x3f\x3f\x43\x5f\x79\x39\x47\x4b\x31\x39\x3b\x32\ \x3b\x39\x40\x52\x60\x33\x3b\x3f\x2c\x35\x32\x2e\x36\x38\x31\x3b\ \x36\x34\x36\x37\x3c\x43\x42\x37\x3e\x39\x3a\x3b\x3b\x2c\x32\x35\ \x24\x2e\x2c\x1e\x29\x2d\x2f\x3c\x3f\x28\x33\x3c\x39\x49\x4e\x30\ \x42\x47\x30\x40\x44\x35\x42\x4d\x36\x3c\x43\x33\x3f\x42\x39\x3f\ \x41\x45\x50\x54\x41\x4f\x50\x52\x5b\x5a\x6b\x71\x72\x59\x60\x64\ \x45\x4d\x4b\x43\x4b\x48\x45\x45\x48\x31\x36\x37\x30\x31\x2c\x28\ \x2d\x2a\x26\x2c\x29\x2d\x34\x32\x30\x3b\x3c\x31\x3b\x3d\x30\x33\ \x32\x2c\x32\x32\x33\x38\x35\x2c\x33\x2e\x30\x30\x30\x2c\x2e\x2b\ \x2c\x2d\x2a\x2f\x35\x34\x33\x3c\x3a\x31\x36\x35\x30\x34\x32\x2f\ \x2f\x2f\x34\x39\x3b\x3b\x3e\x41\x3d\x3f\x40\x37\x43\x41\x34\x3b\ \x3a\x34\x39\x3b\x36\x38\x3a\x36\x39\x3d\x37\x3b\x3b\x32\x3b\x3e\ \x37\x3c\x3f\x32\x37\x33\x2e\x38\x39\x32\x39\x3b\x37\x3a\x41\x39\ \x3e\x3b\x34\x39\x3c\x32\x3e\x3d\x34\x3b\x41\x31\x37\x36\x33\x35\ \x36\x2c\x2e\x31\x28\x2b\x2a\x31\x34\x33\x2e\x33\x38\x32\x35\x35\ \x30\x36\x33\x3b\x41\x41\x34\x40\x44\x2e\x37\x35\x30\x38\x37\x36\ \x44\x47\x37\x3c\x3f\x2f\x34\x37\x32\x3e\x3c\x33\x3e\x41\x32\x3a\ \x38\x3e\x41\x45\x34\x3d\x41\x33\x40\x41\x37\x3d\x40\x36\x42\x44\ \x3a\x49\x49\x41\x4a\x50\x3d\x49\x49\x3a\x3f\x43\x2e\x36\x37\x2f\ \x35\x38\x34\x3b\x37\x3a\x42\x46\x3f\x4a\x47\x37\x3c\x3e\x2d\x34\ \x30\x34\x3d\x41\x39\x42\x46\x39\x40\x46\x36\x3d\x3e\x3f\x4c\x4e\ \x39\x48\x45\x37\x45\x45\x34\x3b\x3a\x38\x42\x42\x41\x4c\x52\x42\ \x52\x54\x50\x57\x5d\x3e\x42\x45\x36\x3f\x40\x3d\x4b\x4d\x3f\x49\ \x4a\x33\x3c\x3b\x3a\x45\x4b\x30\x3f\x3c\x00\x00\x00\xc1\xe1\xf0\ \x8f\xac\xb4\x4b\x55\x5b\x60\x6b\x6b\x5e\x66\x6b\x6d\x74\x79\x4d\ \x56\x52\x28\x2d\x32\x2e\x31\x35\x22\x29\x29\x2a\x28\x29\x2b\x32\ \x34\x26\x2e\x2d\x28\x29\x2c\x32\x30\x2f\x26\x2f\x2c\x2a\x2b\x2c\ \x28\x2e\x2e\x22\x2a\x28\x26\x30\x2d\x25\x30\x2f\x24\x28\x26\x2d\ \x33\x35\x3b\x43\x43\x21\x28\x25\x2b\x33\x34\x2d\x33\x34\x2c\x31\ \x33\x2d\x33\x35\x30\x36\x37\x33\x3d\x3a\x32\x3a\x41\x47\x6d\x84\ \x32\x42\x42\x3c\x44\x48\x39\x3c\x3f\x31\x3c\x3e\x29\x32\x31\x33\ \x39\x3e\x47\x6d\x91\x53\x80\x94\x44\x4d\x50\x37\x41\x3d\x2e\x30\ \x2c\x3b\x45\x43\x32\x3b\x3b\x2d\x2e\x30\x35\x37\x37\x2d\x30\x2f\ \x2b\x31\x35\x29\x2e\x2f\x2b\x36\x35\x1b\x2b\x2f\x14\x1e\x21\x28\ \x35\x3e\x29\x36\x40\x2e\x41\x47\x33\x3e\x45\x35\x39\x3d\x32\x42\ \x48\x39\x47\x4e\x40\x4a\x4f\x3b\x4b\x49\x51\x5c\x61\x47\x50\x52\ \x54\x55\x5b\x4f\x55\x55\x57\x5e\x63\x50\x55\x57\x3d\x3f\x42\x34\ \x3a\x39\x33\x36\x35\x2f\x33\x31\x2c\x33\x2e\x34\x3b\x3e\x2a\x30\ \x32\x2e\x33\x36\x2f\x36\x3a\x2c\x38\x38\x30\x36\x30\x2f\x39\x31\ \x30\x32\x32\x28\x2b\x28\x2f\x30\x2f\x31\x38\x35\x31\x37\x36\x2d\ \x37\x37\x2d\x32\x34\x33\x39\x37\x32\x37\x34\x2f\x34\x34\x2f\x36\ \x34\x29\x31\x28\x2b\x31\x30\x29\x29\x2b\x2f\x2e\x2c\x2b\x2f\x30\ \x2c\x31\x31\x33\x3a\x42\x34\x3b\x3a\x37\x43\x46\x3d\x44\x43\x38\ \x41\x40\x31\x40\x40\x30\x40\x41\x34\x3c\x3c\x3e\x42\x40\x36\x3d\ \x3c\x3b\x43\x45\x35\x39\x3c\x3b\x41\x41\x36\x3d\x3b\x3c\x42\x49\ \x33\x41\x40\x38\x48\x49\x3c\x42\x47\x31\x36\x34\x31\x3a\x3a\x34\ \x3a\x38\x2f\x34\x36\x2f\x3c\x41\x39\x42\x48\x34\x3a\x3d\x29\x31\ \x2f\x31\x37\x3a\x40\x47\x4b\x3c\x41\x44\x33\x38\x3b\x2e\x36\x36\ \x36\x3b\x39\x3b\x3d\x3e\x43\x4e\x54\x40\x4e\x51\x3a\x46\x49\x36\ \x3f\x42\x2c\x33\x34\x36\x3d\x38\x3a\x44\x40\x38\x42\x41\x3d\x48\ \x4a\x42\x4a\x4d\x3a\x3e\x3c\x38\x3f\x3c\x3b\x46\x47\x3e\x48\x4d\ \x35\x40\x45\x2c\x32\x30\x39\x40\x42\x35\x3e\x41\x40\x48\x49\x40\ \x4f\x57\x35\x42\x4a\x35\x40\x46\x3e\x48\x51\x39\x48\x4b\x31\x35\ \x37\x2a\x34\x2f\x39\x48\x47\x31\x3a\x3b\x33\x3c\x3b\x3c\x4a\x4a\ \x34\x3f\x40\x32\x3c\x40\x00\x00\x00\xc3\xe2\xf0\xa0\xbe\xc2\x51\ \x55\x5c\x57\x60\x64\x42\x48\x4f\x61\x6b\x72\x66\x70\x71\x2b\x3a\ \x3d\x20\x2d\x2c\x1d\x23\x22\x26\x28\x2c\x26\x2b\x2c\x2a\x2c\x2a\ \x2a\x2a\x2a\x2f\x30\x31\x2b\x36\x2e\x28\x30\x2d\x2b\x2d\x2d\x31\ \x36\x36\x35\x39\x38\x29\x2e\x2d\x20\x20\x1e\x39\x3b\x3e\x31\x36\ \x37\x25\x29\x27\x35\x3f\x41\x31\x3d\x3d\x29\x35\x32\x30\x37\x37\ \x2d\x38\x35\x37\x53\x65\x3c\x58\x6c\x2f\x3b\x3e\x36\x3f\x42\x3b\ \x3d\x3f\x39\x3f\x3f\x2f\x38\x39\x2c\x33\x30\x36\x3e\x40\x35\x42\ \x49\x2f\x2f\x33\x35\x3a\x3f\x35\x3b\x3b\x39\x3c\x3d\x3c\x45\x43\ \x2c\x31\x2e\x37\x3d\x39\x2d\x34\x35\x2f\x39\x3c\x20\x35\x36\x1e\ \x27\x27\x29\x39\x3a\x31\x3a\x3e\x2e\x3b\x39\x31\x3b\x43\x33\x3a\ \x3f\x34\x40\x44\x3e\x45\x4b\x37\x42\x48\x46\x51\x58\x3c\x48\x51\ \x4a\x53\x58\x5a\x65\x6a\x48\x53\x5b\x46\x4b\x48\x48\x4a\x48\x4d\ \x50\x4f\x42\x4b\x4d\x36\x3a\x37\x32\x39\x35\x33\x3a\x36\x2e\x35\ \x34\x46\x4d\x50\x32\x38\x3c\x2c\x37\x37\x2b\x2d\x2f\x31\x39\x37\ \x27\x2e\x2e\x3b\x44\x4a\x31\x34\x33\x2a\x2d\x2d\x2e\x35\x31\x2e\ \x38\x34\x2f\x35\x34\x2e\x31\x32\x2e\x34\x35\x33\x38\x37\x30\x36\ \x34\x35\x3d\x3b\x33\x37\x39\x3a\x3f\x40\x32\x34\x33\x33\x35\x39\ \x2f\x34\x39\x32\x37\x3d\x3c\x46\x43\x35\x38\x40\x2d\x32\x34\x2d\ \x31\x2f\x2d\x2e\x2c\x31\x35\x31\x2a\x2e\x30\x32\x37\x37\x36\x3c\ \x3b\x33\x3f\x42\x33\x3b\x3d\x36\x3c\x3a\x2f\x37\x35\x32\x34\x34\ \x39\x3c\x43\x30\x36\x35\x3c\x43\x44\x38\x42\x42\x3c\x49\x47\x39\ \x45\x43\x2c\x35\x35\x41\x46\x46\x36\x3c\x40\x38\x3e\x3e\x38\x46\ \x45\x3b\x43\x47\x33\x3d\x39\x36\x37\x30\x37\x3e\x3e\x34\x3e\x40\ \x2f\x38\x34\x33\x34\x37\x3a\x40\x46\x3c\x4d\x4c\x39\x44\x44\x39\ \x43\x43\x33\x36\x3c\x35\x3c\x3d\x2d\x34\x33\x31\x3f\x3f\x3a\x45\ \x44\x3d\x47\x4b\x3c\x44\x44\x3f\x47\x4b\x44\x51\x51\x38\x40\x41\ \x35\x3c\x39\x3e\x48\x4a\x3d\x4b\x4d\x39\x42\x42\x30\x3c\x3e\x3d\ \x43\x48\x3c\x4a\x50\x3d\x4a\x4a\x37\x3f\x40\x3a\x43\x46\x38\x46\ \x4a\x44\x54\x5a\x3e\x51\x57\x2f\x3c\x41\x31\x3e\x47\x36\x41\x43\ \x41\x4b\x4e\x3d\x50\x50\x44\x52\x54\x46\x50\x53\x38\x42\x43\x45\ \x4c\x52\x00\x00\x00\xc1\xe1\xed\x6a\x94\xa4\x3c\x4f\x5d\x45\x4e\ \x5a\x3c\x46\x4a\x53\x5b\x61\x66\x6a\x74\x38\x47\x48\x22\x2c\x31\ \x1a\x21\x21\x23\x23\x25\x27\x2f\x32\x27\x29\x27\x27\x2b\x2d\x28\ \x2a\x2a\x29\x30\x2e\x30\x34\x36\x29\x2e\x2a\x2f\x33\x31\x2d\x30\ \x31\x2c\x2f\x2e\x1d\x23\x26\x33\x3a\x3a\x28\x32\x2f\x2b\x2d\x2b\ \x30\x35\x34\x32\x38\x35\x37\x40\x41\x28\x32\x2c\x27\x2f\x34\x4c\ \x7d\x9c\x34\x3c\x44\x36\x40\x40\x31\x36\x35\x38\x41\x45\x3d\x45\ \x45\x32\x3b\x35\x33\x37\x36\x36\x3f\x3b\x31\x39\x3a\x38\x41\x44\ \x32\x38\x36\x38\x36\x38\x33\x37\x35\x2d\x31\x31\x3a\x42\x45\x2d\ \x34\x37\x19\x29\x2e\x28\x36\x37\x27\x31\x35\x2b\x37\x37\x2f\x35\ \x37\x3b\x40\x47\x2e\x3e\x42\x38\x42\x40\x33\x3e\x40\x3f\x48\x4c\ \x42\x49\x51\x4b\x5e\x63\x5e\x69\x74\x67\x72\x77\x67\x71\x77\x5b\ \x65\x67\x47\x4d\x4c\x45\x43\x41\x44\x48\x47\x39\x3f\x3c\x3a\x3e\ \x3c\x38\x3d\x40\x37\x3c\x3b\x3a\x3f\x3b\x30\x35\x34\x2c\x32\x34\ \x2c\x34\x34\x2c\x32\x33\x35\x34\x33\x30\x37\x37\x33\x3d\x3c\x37\ \x42\x42\x33\x3b\x38\x33\x3c\x3a\x32\x3c\x3a\x31\x38\x32\x3d\x47\ \x46\x39\x41\x41\x36\x3f\x3f\x31\x36\x38\x34\x36\x37\x30\x31\x32\ \x2a\x30\x2e\x2a\x2d\x29\x30\x35\x33\x31\x36\x36\x37\x3d\x3f\x35\ \x3e\x3c\x2d\x3a\x34\x37\x3f\x42\x34\x3c\x3e\x35\x3c\x3e\x38\x3b\ \x3e\x38\x3c\x3b\x30\x37\x38\x2e\x34\x35\x2e\x34\x34\x2a\x32\x31\ \x30\x3a\x3c\x31\x33\x36\x2f\x34\x36\x36\x40\x41\x34\x3a\x3b\x2a\ \x29\x2c\x2f\x34\x33\x31\x34\x33\x31\x31\x32\x38\x3a\x3b\x34\x3e\ \x40\x33\x3f\x3d\x32\x30\x2e\x2f\x37\x32\x32\x34\x35\x32\x37\x32\ \x39\x42\x42\x3a\x43\x42\x3a\x40\x40\x3b\x43\x45\x3e\x48\x45\x3c\ \x42\x48\x3f\x4b\x4f\x3c\x49\x4a\x30\x3f\x43\x35\x42\x46\x35\x43\ \x45\x3c\x42\x46\x3c\x46\x47\x3c\x45\x46\x3b\x44\x43\x42\x4c\x4d\ \x46\x51\x51\x36\x41\x43\x31\x3b\x3f\x32\x3b\x3b\x36\x3c\x3f\x32\ \x3e\x3d\x32\x36\x37\x32\x3d\x3a\x34\x42\x41\x3b\x41\x45\x34\x40\ \x41\x3b\x41\x44\x3c\x4a\x4a\x3c\x47\x46\x33\x39\x3a\x3c\x49\x4a\ \x36\x3f\x41\x3c\x47\x4a\x3e\x4a\x4d\x3f\x4f\x57\x34\x3f\x42\x39\ \x47\x47\x3b\x43\x49\x34\x39\x3d\x31\x39\x3c\x33\x39\x3d\x00\x00\ \x00\x92\xb6\xcf\x54\x80\xa3\x43\x68\x8f\x1b\x29\x3b\x2c\x36\x3f\ \x43\x49\x51\x57\x61\x64\x42\x51\x4d\x21\x2e\x32\x1c\x20\x1e\x2d\ \x2d\x2f\x21\x26\x24\x25\x29\x29\x21\x28\x28\x20\x24\x25\x2d\x32\ \x32\x2e\x32\x32\x2e\x37\x34\x21\x24\x20\x2f\x30\x30\x21\x25\x26\ \x22\x26\x2d\x2d\x36\x33\x21\x25\x26\x2f\x34\x3c\x31\x3a\x3a\x32\ \x3c\x3f\x2b\x35\x3a\x2c\x35\x37\x35\x43\x53\x32\x46\x4f\x3a\x3f\ \x45\x31\x3d\x3f\x39\x40\x40\x30\x3a\x3a\x34\x38\x39\x36\x3e\x3e\ \x30\x3a\x39\x38\x3e\x3f\x32\x39\x39\x33\x3a\x39\x31\x35\x35\x3e\ \x3f\x41\x32\x31\x31\x2b\x32\x37\x2b\x3d\x42\x13\x24\x27\x1c\x2b\ \x2e\x22\x2f\x32\x35\x3f\x41\x36\x40\x45\x40\x47\x4b\x38\x3c\x3d\ \x4b\x55\x5c\x32\x3b\x42\x4d\x53\x59\x57\x5b\x60\x5f\x6d\x6a\x65\ \x72\x77\x59\x64\x6b\x54\x60\x61\x4c\x54\x50\x45\x4a\x47\x41\x43\ \x41\x39\x3d\x38\x34\x3b\x39\x35\x3a\x37\x32\x37\x36\x3c\x42\x3f\ \x39\x43\x3e\x38\x3e\x3e\x30\x34\x38\x2f\x32\x2d\x33\x35\x39\x3a\ \x3e\x3f\x2d\x2f\x2b\x2e\x30\x2f\x2b\x2f\x2f\x36\x3e\x3d\x38\x3d\ \x3e\x32\x32\x2f\x2d\x2e\x2e\x2b\x30\x2c\x28\x2d\x28\x24\x29\x27\ \x2e\x30\x2e\x26\x30\x2d\x2f\x36\x38\x3a\x3e\x3b\x34\x3e\x3c\x38\ \x43\x47\x35\x3d\x3c\x3e\x43\x46\x32\x39\x41\x2f\x32\x35\x32\x35\ \x33\x3f\x4a\x4d\x2e\x39\x37\x2d\x31\x30\x2a\x34\x38\x2e\x39\x38\ \x34\x3c\x3f\x36\x3d\x40\x3c\x43\x43\x36\x3b\x39\x34\x3a\x3b\x3c\ \x3f\x44\x37\x3b\x40\x33\x3f\x3f\x33\x39\x3b\x39\x3f\x3f\x35\x3b\ \x3a\x2d\x33\x32\x33\x37\x37\x32\x39\x3a\x35\x40\x40\x38\x43\x42\ \x2f\x35\x3a\x38\x3e\x3e\x36\x3c\x3c\x32\x38\x37\x36\x3e\x41\x39\ \x41\x47\x3d\x46\x45\x3f\x48\x4c\x36\x39\x3c\x37\x39\x3b\x36\x3c\ \x3e\x3e\x4b\x54\x38\x46\x46\x38\x3b\x40\x41\x4f\x57\x49\x51\x58\ \x35\x3c\x3a\x37\x3e\x3e\x37\x40\x40\x36\x3f\x3f\x3b\x3e\x3e\x3b\ \x46\x47\x3f\x50\x58\x36\x40\x41\x40\x50\x4f\x3f\x47\x4d\x38\x47\ \x48\x3c\x4e\x53\x3d\x46\x46\x37\x43\x41\x3c\x45\x46\x33\x37\x34\ \x2d\x31\x31\x36\x41\x3d\x39\x46\x48\x3f\x4c\x52\x3b\x42\x42\x40\ \x49\x4e\x3d\x48\x4a\x36\x3c\x41\x38\x43\x44\x36\x41\x40\x35\x41\ \x41\x3e\x4b\x52\x40\x50\x53\x3b\x4a\x50\x00\x00\x00\x87\xb2\xcf\ \x6e\xa1\xc4\x40\x73\x9e\x1e\x39\x5b\x19\x29\x34\x2d\x30\x3d\x49\ \x52\x58\x43\x51\x4d\x29\x3a\x3d\x23\x29\x2a\x1f\x1f\x24\x20\x20\ \x24\x18\x1b\x19\x24\x24\x21\x26\x27\x25\x1d\x1c\x20\x2d\x2f\x2b\ \x2d\x32\x2f\x29\x33\x31\x1e\x27\x28\x1e\x21\x21\x34\x37\x3b\x35\ \x3c\x3a\x27\x28\x2a\x3b\x41\x3f\x2c\x34\x34\x32\x34\x39\x2f\x39\ \x3c\x34\x39\x3b\x2e\x2c\x2d\x3a\x44\x4a\x2e\x36\x36\x39\x43\x47\ \x3d\x45\x49\x30\x3a\x38\x37\x3b\x3c\x24\x2a\x25\x36\x3a\x3f\x38\ \x3a\x3d\x32\x38\x39\x23\x29\x2c\x1f\x28\x26\x2b\x38\x37\x32\x40\ \x45\x1c\x27\x2d\x43\x4f\x54\x2e\x36\x3c\x37\x48\x44\x27\x2d\x35\ \x37\x45\x4f\x3e\x49\x4f\x3e\x44\x49\x34\x41\x44\x45\x4d\x55\x43\ \x4b\x56\x6a\x70\x77\x69\x70\x73\x6e\x72\x78\x63\x6b\x6c\x4c\x54\ \x51\x40\x43\x41\x46\x48\x46\x39\x43\x43\x35\x44\x45\x34\x39\x3d\ \x31\x35\x39\x33\x39\x3b\x3b\x39\x37\x3a\x3e\x3e\x3a\x40\x42\x3c\ \x44\x45\x3a\x3c\x3d\x32\x3c\x39\x2c\x2f\x2b\x2c\x2f\x2d\x35\x38\ \x36\x31\x37\x35\x30\x34\x32\x31\x33\x31\x2b\x2d\x2e\x30\x35\x32\ \x34\x39\x3c\x30\x3b\x39\x31\x38\x38\x31\x38\x36\x32\x3c\x39\x2e\ \x3c\x3c\x36\x3c\x3f\x36\x3b\x38\x35\x3a\x37\x34\x37\x39\x30\x31\ \x30\x30\x35\x36\x3d\x3e\x40\x3a\x3c\x3e\x31\x3a\x39\x37\x43\x49\ \x35\x38\x3a\x39\x42\x48\x39\x3f\x40\x30\x36\x38\x2e\x35\x37\x26\ \x2d\x2c\x28\x2b\x2c\x2e\x34\x3a\x30\x34\x38\x35\x38\x3f\x34\x3c\ \x40\x30\x3f\x3f\x2d\x3a\x36\x2c\x2f\x2b\x2e\x2f\x2f\x32\x39\x3d\ \x31\x3c\x40\x3a\x45\x45\x3e\x49\x49\x33\x3d\x3c\x32\x36\x31\x2d\ \x31\x2f\x2f\x37\x37\x37\x3c\x3d\x36\x3e\x3d\x30\x38\x38\x30\x39\ \x34\x30\x35\x33\x31\x37\x3b\x37\x38\x3b\x3b\x47\x49\x38\x42\x45\ \x33\x3d\x3b\x3c\x47\x48\x38\x40\x44\x35\x3c\x3c\x38\x45\x49\x41\ \x4c\x49\x43\x4f\x53\x42\x51\x53\x34\x3c\x38\x32\x38\x39\x33\x3d\ \x3f\x3b\x45\x46\x2f\x34\x32\x30\x38\x35\x35\x3c\x3f\x33\x3b\x3f\ \x3a\x46\x44\x36\x40\x41\x37\x3e\x40\x44\x54\x57\x40\x4c\x4a\x3f\ \x54\x56\x43\x49\x4d\x33\x3d\x3d\x34\x38\x3c\x3b\x42\x49\x42\x4c\ \x4e\x45\x4e\x54\x38\x3e\x3e\x32\x3f\x3b\x3f\x48\x51\x3f\x4c\x53\ \x45\x53\x5b\x40\x48\x4a\x00\x00\x00\x85\xae\xcd\x9a\xc7\xe3\x86\ \xb8\xdd\x73\xa5\xcb\x3f\x69\x7f\x2c\x45\x5a\x1f\x2b\x38\x35\x3f\ \x44\x27\x2e\x35\x22\x2c\x30\x1e\x22\x21\x17\x1b\x1b\x1d\x1e\x1e\ \x1d\x1c\x1d\x1a\x25\x24\x19\x1a\x1d\x1e\x24\x20\x1d\x25\x24\x1e\ \x23\x29\x1b\x23\x24\x23\x24\x29\x40\x48\x49\x2f\x34\x32\x30\x31\ \x33\x36\x3f\x41\x24\x31\x37\x29\x30\x32\x33\x34\x37\x2b\x2b\x2d\ \x31\x30\x2f\x37\x3e\x3c\x33\x39\x3f\x32\x3b\x3c\x37\x41\x42\x33\ \x3a\x3d\x2c\x30\x2f\x2f\x32\x30\x2e\x2f\x33\x2b\x3c\x3b\x23\x34\ \x33\x0a\x14\x13\x24\x35\x3a\x32\x43\x4b\x2c\x37\x37\x1e\x22\x2a\ \x36\x3a\x43\x32\x3b\x3f\x38\x42\x47\x50\x59\x5d\x36\x46\x49\x32\ \x3d\x3f\x42\x4c\x53\x3d\x4a\x56\x4b\x58\x63\x5e\x6a\x70\x60\x6c\ \x78\x60\x6c\x71\x52\x58\x5a\x4e\x52\x4f\x43\x47\x47\x34\x3e\x3f\ \x2c\x39\x3c\x30\x38\x3d\x31\x38\x3d\x2f\x39\x37\x3d\x40\x42\x34\ \x3c\x3a\x35\x36\x36\x3b\x3d\x42\x3a\x3c\x38\x34\x35\x36\x37\x40\ \x42\x41\x48\x49\x3b\x43\x41\x38\x3f\x3b\x35\x3a\x39\x39\x3c\x3b\ \x3b\x3d\x42\x34\x39\x39\x31\x3b\x3a\x37\x3a\x3b\x37\x3f\x43\x38\ \x3d\x3f\x3b\x44\x44\x3c\x46\x49\x39\x43\x43\x38\x41\x41\x33\x3a\ \x3a\x30\x33\x34\x2d\x33\x32\x2b\x30\x2e\x32\x37\x34\x35\x36\x35\ \x2d\x2f\x2d\x2b\x2c\x2a\x2d\x33\x32\x32\x38\x39\x37\x3d\x3d\x37\ \x3c\x3d\x33\x39\x35\x30\x33\x35\x35\x37\x38\x32\x3a\x39\x34\x3b\ \x3c\x34\x3c\x3f\x33\x3a\x36\x36\x3c\x41\x39\x45\x46\x3b\x42\x42\ \x33\x39\x39\x33\x3a\x38\x3b\x40\x40\x36\x43\x41\x34\x3a\x3c\x2e\ \x30\x2e\x2f\x36\x37\x2e\x33\x31\x38\x3c\x3e\x3a\x43\x46\x39\x41\ \x49\x38\x46\x48\x39\x46\x46\x33\x3a\x3c\x35\x3f\x40\x38\x43\x47\ \x3c\x46\x4a\x3a\x44\x44\x40\x48\x48\x38\x41\x44\x42\x4c\x4e\x39\ \x41\x3f\x40\x49\x4a\x3f\x47\x45\x41\x50\x51\x3a\x45\x45\x38\x43\ \x48\x3c\x4a\x4b\x3a\x47\x4a\x3d\x47\x4b\x41\x4e\x54\x3b\x46\x46\ \x3c\x45\x44\x3e\x48\x48\x3f\x45\x47\x3f\x4d\x53\x3a\x41\x44\x37\ \x40\x40\x3e\x4b\x4a\x39\x42\x45\x2e\x3a\x3a\x32\x3a\x3a\x32\x33\ \x3b\x3b\x4c\x4a\x3b\x48\x4a\x3f\x4a\x52\x38\x41\x43\x28\x2f\x32\ \x31\x37\x38\x2e\x37\x3a\x34\x3d\x3f\x3a\x44\x47\x38\x3f\x41\x2f\ \x36\x35\x00\x00\x00\x9b\xc5\xdd\xbc\xe2\xf5\xb6\xdc\xed\xb4\xdc\ \xee\x97\xc9\xdf\x83\xb7\xd6\x58\x82\xa8\x2a\x4a\x68\x21\x33\x40\ \x18\x1b\x21\x1c\x1f\x27\x19\x23\x23\x1d\x20\x20\x19\x1a\x17\x1c\ \x23\x1f\x16\x16\x18\x19\x1c\x1e\x1e\x25\x28\x1e\x24\x23\x17\x19\ \x18\x27\x2b\x2c\x32\x38\x38\x23\x25\x22\x2c\x2e\x31\x2b\x35\x3a\ \x27\x35\x39\x25\x26\x26\x2d\x31\x30\x36\x3d\x3a\x2f\x35\x36\x31\ \x39\x37\x3a\x3f\x44\x2a\x2e\x2b\x2f\x34\x39\x2f\x35\x37\x2c\x32\ \x36\x30\x3a\x3b\x23\x33\x36\x1f\x32\x33\x10\x1a\x1a\x0a\x12\x0f\ \x1c\x2c\x2d\x2f\x3a\x41\x2c\x34\x2e\x31\x32\x39\x36\x3c\x3b\x41\ \x4b\x4d\x39\x49\x4c\x3c\x43\x46\x34\x3d\x43\x40\x4d\x56\x53\x5f\ \x6e\x6d\x75\x7d\x5f\x69\x6a\x62\x67\x6d\x56\x5f\x60\x45\x4a\x4a\ \x3d\x42\x41\x34\x3a\x3a\x33\x37\x38\x2f\x39\x3d\x32\x35\x35\x2b\ \x32\x31\x2c\x32\x31\x32\x32\x33\x38\x41\x44\x36\x3a\x38\x33\x35\ \x33\x35\x3b\x3d\x3c\x42\x3b\x3e\x43\x45\x36\x3c\x3b\x31\x35\x35\ \x30\x37\x36\x2d\x33\x31\x2b\x2e\x30\x37\x3a\x3e\x3b\x3d\x3f\x44\ \x4b\x4a\x3c\x48\x49\x45\x4a\x48\x43\x4b\x4d\x3d\x40\x44\x2e\x33\ \x31\x30\x37\x33\x36\x3a\x3d\x3a\x41\x3e\x3b\x44\x43\x33\x39\x3b\ \x35\x3d\x3c\x37\x3f\x40\x3d\x42\x45\x3b\x3e\x41\x3a\x46\x41\x37\ \x41\x3f\x35\x3a\x3b\x32\x35\x35\x3a\x3f\x41\x2f\x33\x34\x2d\x38\ \x37\x31\x3a\x3e\x35\x37\x3b\x34\x3d\x38\x36\x3b\x3e\x33\x3b\x3b\ \x2a\x30\x2d\x35\x3b\x39\x32\x33\x36\x2e\x33\x2b\x34\x3c\x3f\x32\ \x3c\x3a\x33\x3c\x38\x30\x32\x33\x38\x42\x40\x3d\x44\x44\x36\x40\ \x3d\x3c\x44\x4b\x3d\x44\x46\x40\x44\x4a\x34\x3d\x3b\x2c\x30\x31\ \x34\x3a\x38\x35\x3b\x3d\x3a\x4b\x4d\x39\x49\x4a\x3a\x44\x43\x30\ \x38\x34\x30\x38\x3a\x38\x40\x40\x33\x3e\x3c\x34\x3e\x3b\x3a\x44\ \x49\x42\x49\x50\x39\x45\x47\x3b\x4b\x50\x3f\x4c\x51\x43\x4e\x52\ \x3d\x4a\x4b\x39\x48\x4c\x3b\x45\x47\x35\x3f\x41\x30\x3c\x3e\x3f\ \x49\x4a\x3d\x43\x46\x31\x3b\x39\x2c\x34\x33\x34\x41\x45\x35\x40\ \x42\x37\x42\x43\x3b\x49\x47\x38\x46\x47\x39\x45\x4c\x36\x45\x4b\ \x3b\x4a\x4c\x37\x47\x48\x3b\x43\x43\x43\x54\x59\x3e\x49\x50\x42\ \x55\x58\x41\x4b\x50\x33\x38\x3d\x41\x4d\x50\x3c\x4d\x51\x00\x00\ \x00\xaa\xd1\xe9\xb5\xde\xf3\xc8\xe8\xf6\xcd\xe8\xf4\xc2\xe5\xf4\ \xa2\xd1\xe8\x90\xc3\xe0\x6b\xa1\xc0\x3f\x67\x8e\x1a\x37\x47\x15\ \x1c\x20\x1d\x21\x22\x21\x28\x2a\x1a\x1e\x1d\x18\x21\x1f\x1f\x1f\ \x20\x1b\x1d\x1f\x15\x19\x1b\x22\x24\x25\x20\x1f\x20\x2d\x30\x36\ \x22\x2b\x2a\x1e\x22\x1f\x25\x2f\x2d\x28\x33\x36\x28\x32\x37\x2d\ \x36\x39\x28\x2c\x2e\x30\x36\x37\x38\x3d\x3b\x30\x33\x2e\x2a\x38\ \x36\x23\x34\x38\x1e\x28\x29\x1e\x2b\x2e\x2d\x42\x49\x2a\x39\x41\ \x1e\x29\x2a\x0f\x14\x14\x0b\x14\x15\x20\x2a\x2c\x2f\x35\x37\x39\ \x3f\x40\x38\x43\x45\x49\x4e\x4f\x36\x46\x47\x4b\x54\x57\x4d\x56\ \x60\x32\x3c\x3f\x41\x51\x58\x54\x5e\x68\x5e\x65\x6c\x62\x6a\x6c\ \x56\x5f\x5d\x43\x48\x47\x3f\x4a\x4a\x35\x3f\x42\x32\x35\x34\x2d\ \x32\x2f\x2c\x2e\x2b\x2e\x33\x30\x30\x31\x31\x2d\x35\x32\x2e\x38\ \x38\x31\x37\x36\x31\x32\x31\x30\x32\x32\x34\x39\x37\x30\x36\x33\ \x2e\x2d\x2a\x33\x37\x34\x39\x3f\x41\x35\x44\x42\x3d\x49\x49\x3d\ \x43\x47\x3c\x47\x42\x37\x3f\x3c\x30\x36\x36\x30\x35\x37\x2e\x35\ \x31\x31\x34\x35\x35\x37\x38\x43\x44\x46\x34\x38\x3d\x37\x43\x44\ \x2c\x32\x2d\x2e\x38\x34\x2d\x32\x32\x34\x3b\x3c\x33\x37\x36\x2f\ \x37\x37\x2e\x32\x31\x2d\x33\x2c\x2d\x2f\x2c\x33\x38\x39\x36\x3b\ \x39\x3b\x44\x46\x3b\x44\x3f\x35\x38\x35\x32\x3d\x46\x3a\x43\x4b\ \x3f\x4a\x49\x30\x36\x35\x38\x3f\x41\x38\x41\x44\x35\x43\x44\x34\ \x3e\x3c\x2c\x2e\x2f\x36\x3b\x3e\x41\x48\x4f\x3f\x4e\x51\x3b\x48\ \x47\x36\x41\x41\x3c\x4b\x4b\x3d\x47\x44\x3c\x45\x48\x32\x3b\x3c\ \x39\x3f\x43\x37\x44\x42\x39\x41\x3c\x3d\x4a\x49\x3c\x43\x45\x38\ \x47\x47\x3f\x48\x4b\x41\x4c\x4c\x40\x48\x47\x3b\x44\x46\x38\x42\ \x48\x3b\x4b\x54\x40\x4d\x54\x3a\x47\x4a\x41\x4d\x52\x3c\x47\x4c\ \x35\x40\x44\x40\x51\x55\x38\x3e\x3d\x34\x3e\x40\x33\x40\x43\x3a\ \x48\x4c\x35\x3f\x39\x2f\x35\x35\x37\x45\x49\x36\x41\x44\x36\x3d\ \x3f\x3a\x47\x4b\x40\x4c\x51\x3e\x55\x55\x39\x4a\x4a\x2e\x38\x3c\ \x3b\x4c\x52\x39\x4b\x50\x3c\x46\x48\x32\x38\x3b\x2f\x38\x39\x2d\ \x34\x31\x3a\x43\x41\x39\x44\x49\x3b\x45\x48\x42\x4e\x55\x3c\x44\ \x43\x46\x53\x5c\x42\x49\x4f\x3f\x46\x4e\x00\x00\x00\xaa\xd7\xed\ \xa5\xd4\xec\xcd\xe9\xf7\xdb\xf1\xfa\xd0\xee\xf8\xc3\xe5\xf3\xb7\ \xdc\xed\xa1\xcc\xe1\x75\xa3\xc7\x71\xa0\xc2\x4d\x77\x90\x1f\x2e\ \x43\x1b\x25\x32\x1e\x2c\x37\x10\x1e\x24\x18\x1d\x23\x1e\x24\x28\ \x13\x1a\x1b\x1c\x16\x1a\x2d\x34\x35\x29\x2f\x30\x1c\x20\x1e\x28\ \x31\x31\x23\x30\x36\x30\x38\x41\x26\x34\x37\x22\x29\x2e\x21\x2c\ \x31\x2b\x38\x40\x21\x2e\x33\x25\x37\x38\x28\x37\x3d\x25\x36\x43\ \x1f\x31\x3a\x38\x52\x6b\x21\x3a\x43\x07\x10\x0c\x0b\x0b\x0c\x18\ \x26\x39\x2b\x3d\x52\x2e\x3f\x46\x33\x3e\x44\x37\x3c\x40\x59\x60\ \x61\x57\x61\x65\x46\x4f\x56\x4e\x55\x53\x57\x5c\x5c\x4c\x53\x56\ \x41\x4e\x5a\x58\x67\x6d\x49\x55\x59\x41\x4a\x4e\x3e\x48\x49\x39\ \x47\x4a\x2c\x35\x36\x31\x3c\x3e\x2d\x31\x36\x30\x39\x3b\x33\x38\ \x37\x32\x38\x39\x2e\x2d\x2d\x38\x3e\x3a\x35\x3b\x36\x30\x37\x31\ \x31\x34\x30\x38\x35\x37\x35\x3a\x36\x34\x39\x37\x37\x3e\x3f\x35\ \x38\x39\x31\x37\x3a\x36\x40\x45\x34\x39\x3b\x3c\x45\x44\x3a\x42\ \x3e\x3b\x41\x40\x3b\x45\x3f\x3c\x45\x45\x41\x47\x49\x3e\x42\x42\ \x30\x37\x32\x30\x33\x33\x2f\x33\x36\x34\x3f\x3c\x36\x3c\x41\x3b\ \x46\x47\x37\x3d\x3c\x35\x40\x43\x36\x3d\x3d\x3b\x43\x42\x3a\x40\ \x3f\x3b\x43\x42\x38\x3c\x40\x33\x3d\x40\x39\x3c\x3c\x39\x38\x39\ \x2c\x31\x2f\x34\x39\x3a\x36\x3d\x43\x2c\x34\x34\x30\x35\x33\x2f\ \x38\x35\x33\x34\x37\x2f\x32\x35\x31\x3b\x3d\x33\x3b\x34\x37\x40\ \x3f\x3b\x45\x43\x36\x39\x3a\x31\x38\x37\x37\x41\x3e\x34\x39\x38\ \x39\x3e\x41\x3f\x42\x46\x36\x3e\x3c\x37\x3a\x3f\x3a\x43\x45\x38\ \x3c\x40\x3f\x4b\x4b\x35\x3f\x3f\x3d\x45\x46\x38\x42\x3f\x36\x39\ \x39\x36\x40\x44\x32\x3a\x3a\x2e\x39\x37\x3a\x49\x4e\x3a\x48\x4e\ \x36\x40\x3e\x34\x3d\x3e\x37\x44\x42\x3f\x4c\x52\x4a\x5c\x66\x3a\ \x4e\x54\x42\x4c\x4d\x42\x53\x5a\x3c\x46\x48\x3f\x4e\x4e\x3b\x45\ \x42\x3c\x4b\x4d\x40\x4e\x50\x41\x4c\x4f\x34\x3d\x3e\x39\x3f\x40\ \x3a\x4b\x4d\x34\x3e\x3d\x32\x3a\x3d\x37\x3d\x45\x3d\x45\x4f\x39\ \x45\x49\x32\x3d\x41\x3b\x49\x4c\x3f\x4e\x55\x3f\x4b\x49\x42\x53\ \x5b\x3c\x47\x4e\x37\x40\x43\x33\x3e\x43\x33\x33\x33\x37\x3f\x42\ \x3b\x45\x49\x47\x51\x54\x00\x00\x00\xa7\xd5\xec\xb3\xdb\xf0\xd1\ \xec\xf8\xd6\xed\xf9\xd5\xef\xf8\xc6\xe5\xf4\xb4\xdc\xef\xb1\xd9\ \xed\x7d\xab\xc9\x73\x96\xb9\x8a\xb6\xd1\x5e\x8b\xaf\x3f\x5c\x7c\ \x2a\x3d\x4e\x0c\x17\x20\x13\x1c\x26\x16\x23\x26\x1b\x20\x20\x22\ \x27\x29\x25\x26\x2e\x23\x28\x2c\x26\x31\x34\x2e\x40\x51\x3e\x52\ \x64\x37\x56\x63\x28\x3f\x4e\x2b\x3b\x44\x23\x32\x39\x29\x3e\x4d\ \x2c\x40\x54\x33\x4b\x5c\x49\x69\x87\x60\x8f\xad\x5d\x89\xa3\x27\ \x44\x5a\x36\x56\x68\x3f\x5f\x76\x3f\x5f\x70\x41\x5d\x6e\x36\x46\ \x50\x47\x51\x5b\x48\x52\x5b\x52\x5d\x5c\x54\x5d\x5b\x62\x65\x6c\ \x5c\x67\x68\x57\x61\x63\x59\x63\x6b\x58\x5d\x61\x46\x4f\x58\x41\ \x4e\x57\x41\x49\x46\x34\x3c\x38\x2b\x32\x34\x33\x3e\x40\x31\x3d\ \x3f\x2e\x38\x36\x30\x36\x37\x36\x3d\x3f\x2f\x34\x32\x30\x32\x34\ \x2b\x2f\x2a\x27\x2f\x2a\x2a\x30\x2d\x35\x36\x32\x33\x3b\x36\x3a\ \x3e\x3f\x2d\x33\x30\x2e\x37\x32\x31\x3a\x3a\x39\x3d\x42\x3b\x3e\ \x42\x3b\x46\x50\x35\x41\x43\x38\x3c\x3e\x33\x35\x34\x29\x30\x2f\ \x2f\x32\x33\x33\x36\x34\x3b\x3f\x3b\x30\x33\x30\x35\x39\x3a\x3c\ \x42\x41\x3c\x43\x47\x3c\x43\x44\x38\x40\x41\x35\x3a\x39\x40\x44\ \x47\x39\x3f\x40\x31\x34\x35\x2b\x2e\x2a\x2b\x33\x35\x3b\x47\x4a\ \x38\x41\x44\x3e\x43\x48\x41\x48\x47\x2e\x32\x31\x3a\x3b\x3e\x34\ \x40\x45\x39\x43\x45\x36\x3e\x3d\x37\x3f\x3f\x3b\x42\x41\x40\x44\ \x45\x3c\x44\x42\x41\x4f\x56\x34\x3b\x3e\x3a\x39\x3c\x31\x34\x32\ \x40\x46\x47\x3c\x40\x42\x38\x40\x42\x3f\x46\x42\x3a\x40\x43\x3b\ \x3f\x40\x42\x4d\x50\x3d\x4a\x4a\x3a\x44\x46\x3b\x47\x48\x39\x41\ \x43\x30\x38\x3b\x34\x3e\x41\x34\x3b\x40\x35\x3f\x44\x35\x41\x41\ \x3d\x48\x4f\x3d\x4c\x52\x3c\x4c\x55\x3f\x4b\x4e\x33\x39\x3d\x35\ \x47\x4c\x34\x3f\x40\x37\x4a\x4b\x3b\x42\x45\x30\x38\x3b\x32\x39\ \x3b\x2f\x33\x36\x33\x3c\x3f\x39\x44\x42\x3c\x44\x44\x3b\x41\x47\ \x3f\x49\x48\x39\x3d\x40\x31\x39\x39\x3d\x48\x4f\x36\x40\x44\x3b\ \x44\x48\x36\x45\x48\x3e\x4c\x4e\x43\x4f\x54\x47\x51\x58\x3b\x43\ \x45\x47\x4d\x50\x3a\x49\x49\x40\x4c\x4d\x38\x46\x48\x3d\x4c\x4f\ \x41\x4e\x51\x38\x45\x46\x42\x4f\x53\x43\x54\x5a\x40\x4c\x4f\x35\ \x3f\x40\x00\x00\x00\xb4\xd9\xee\xd4\xee\xf9\xd4\xed\xf7\xc9\xe9\ \xf6\xb7\xd7\xe8\x79\xa1\xcb\x83\xb2\xda\xa6\xc8\xe6\xb2\xdb\xea\ \x58\x87\xb1\x52\x7a\xb6\x7b\xae\xd6\x6d\x9e\xc6\x73\xa1\xcc\x69\ \xa1\xbe\x39\x4e\x5a\x3a\x51\x61\x41\x5b\x6d\x40\x60\x75\x2f\x3f\ \x4f\x36\x4a\x61\x4e\x6f\x94\x5b\x82\xab\x57\x88\xb3\x53\x85\xb3\ \x5f\x8f\xb0\x58\x76\x94\x64\x8c\xa9\x72\x9d\xbd\x85\xab\xca\x8b\ \xb8\xce\x83\xae\xca\x7c\xa7\xc0\x5d\x85\x98\x5e\x82\x9b\x6e\x98\ \xb4\x51\x72\x86\x3c\x51\x65\x37\x46\x4d\x3f\x49\x50\x4b\x57\x5b\ \x53\x57\x5c\x72\x7e\x83\x4f\x5c\x5b\x5c\x62\x6b\x5a\x64\x66\x4a\ \x56\x5f\x52\x59\x5d\x42\x4a\x4e\x38\x3f\x42\x32\x3b\x3e\x30\x3c\ \x40\x2f\x36\x38\x2d\x32\x30\x2f\x3b\x42\x32\x3a\x3b\x35\x35\x3a\ \x30\x35\x32\x2e\x2d\x2c\x2f\x34\x34\x34\x3b\x3b\x33\x37\x35\x33\ \x3c\x38\x39\x45\x44\x31\x3b\x36\x30\x36\x2e\x34\x3b\x39\x3f\x43\ \x46\x3a\x47\x45\x3d\x48\x48\x3b\x41\x45\x3c\x48\x48\x3c\x44\x4b\ \x33\x3d\x3e\x30\x34\x3a\x37\x3f\x44\x3a\x45\x46\x3b\x42\x44\x3b\ \x43\x46\x37\x3c\x3d\x38\x3a\x3c\x35\x3a\x3d\x31\x37\x34\x33\x36\ \x36\x31\x35\x36\x35\x39\x38\x39\x36\x36\x38\x46\x47\x36\x3d\x3c\ \x32\x3c\x3c\x31\x3c\x3d\x3b\x46\x4a\x37\x3e\x40\x31\x36\x38\x2b\ \x31\x31\x2b\x31\x33\x34\x39\x38\x34\x3b\x3b\x37\x43\x47\x36\x3e\ \x3d\x2e\x36\x34\x30\x38\x39\x33\x3e\x3f\x37\x41\x40\x33\x3a\x3a\ \x31\x35\x33\x35\x37\x3b\x37\x3b\x3b\x36\x40\x40\x3d\x46\x45\x38\ \x41\x42\x34\x38\x36\x3b\x3c\x3a\x33\x3e\x39\x3c\x44\x43\x3b\x40\ \x44\x43\x4a\x49\x3f\x48\x4b\x41\x48\x4c\x3d\x44\x45\x34\x43\x42\ \x38\x41\x3f\x3b\x46\x4b\x44\x52\x56\x3c\x48\x46\x33\x41\x3f\x37\ \x3f\x44\x38\x46\x4d\x2f\x38\x39\x3b\x45\x51\x3d\x49\x56\x41\x4c\ \x50\x3f\x45\x4a\x3a\x47\x4d\x37\x47\x4d\x34\x40\x40\x3f\x4e\x54\ \x39\x49\x4b\x3c\x4c\x4b\x31\x3a\x3a\x34\x3c\x3b\x36\x3a\x39\x30\ \x38\x35\x34\x43\x45\x39\x46\x46\x31\x37\x39\x3a\x4b\x51\x3d\x4b\ \x52\x31\x3c\x42\x2d\x35\x34\x31\x36\x3a\x2d\x35\x36\x32\x3d\x3e\ \x41\x4c\x50\x38\x45\x48\x39\x45\x4a\x48\x57\x62\x44\x58\x61\x36\ \x43\x47\x36\x40\x3f\x37\x3e\x46\x38\x3c\x3c\x43\x4e\x52\x00\x00\ \x00\xc0\xdf\xf2\xd1\xee\xf9\xca\xe8\xf5\xa0\xca\xe2\x71\x9f\xce\ \x71\x9c\xcf\x88\xb7\xdd\x6e\x97\xc9\xae\xd6\xee\x9f\xd0\xe4\x44\ \x73\xab\x70\xa7\xd2\x7c\xb3\xd8\x6f\xa5\xd0\x6e\xa8\xd3\x7a\xab\ \xcf\x68\x9f\xc3\x64\x95\xbc\x7a\xad\xd5\x78\xa9\xcb\x6e\x98\xba\ \x7a\xa6\xc9\x7f\xad\xcd\x74\xa5\xc4\x79\xa8\xc8\xa0\xc9\xe2\x90\ \xbe\xd9\x87\xb8\xd2\x94\xbf\xd9\x82\xaf\xcb\x82\xae\xca\x99\xbc\ \xd5\x8d\xb7\xcf\x7f\xaf\xcb\x6b\x91\xa9\x39\x55\x60\x34\x46\x4f\ \x2c\x39\x40\x3c\x3e\x46\x5a\x60\x68\x62\x69\x6b\x53\x5e\x5d\x5b\ \x62\x67\x46\x4f\x53\x57\x5a\x5b\x59\x5e\x5c\x45\x48\x47\x37\x3d\ \x3e\x34\x3b\x3a\x30\x31\x33\x31\x38\x39\x2d\x38\x3b\x30\x33\x36\ \x2d\x38\x38\x2e\x38\x37\x36\x3d\x3c\x33\x37\x35\x31\x38\x37\x35\ \x3b\x38\x2e\x32\x30\x31\x34\x34\x3a\x44\x47\x3e\x48\x4a\x34\x34\ \x33\x30\x39\x38\x34\x36\x35\x34\x38\x36\x33\x3d\x3c\x35\x3b\x37\ \x2c\x30\x2d\x31\x37\x3b\x2f\x39\x3c\x2d\x3b\x39\x30\x39\x36\x39\ \x41\x44\x33\x39\x3b\x37\x3c\x3e\x35\x3b\x3c\x3b\x46\x43\x43\x4d\ \x4b\x48\x4e\x4e\x37\x40\x40\x3b\x42\x43\x3a\x46\x48\x39\x41\x42\ \x39\x44\x42\x39\x41\x3e\x36\x3c\x3b\x31\x39\x39\x38\x46\x45\x3c\ \x47\x48\x31\x36\x35\x33\x3e\x3f\x38\x42\x46\x44\x57\x54\x3b\x43\ \x45\x38\x46\x4b\x3a\x3d\x3e\x38\x45\x48\x2f\x36\x38\x39\x40\x3f\ \x3a\x47\x4b\x3b\x4a\x4a\x3e\x43\x42\x38\x46\x47\x3a\x49\x48\x3c\ \x46\x46\x39\x44\x46\x3e\x46\x48\x39\x44\x44\x33\x38\x35\x3f\x46\ \x44\x39\x47\x47\x35\x3d\x37\x3f\x47\x47\x40\x48\x49\x37\x38\x37\ \x3f\x41\x41\x3c\x3d\x41\x32\x35\x37\x35\x3f\x3b\x35\x42\x44\x3c\ \x44\x49\x39\x3d\x3f\x37\x3e\x3e\x34\x39\x3d\x43\x55\x5f\x36\x47\ \x52\x37\x46\x46\x38\x49\x4e\x39\x44\x49\x30\x38\x3b\x32\x37\x37\ \x2a\x35\x39\x39\x48\x4d\x35\x3e\x3c\x3f\x4f\x50\x3c\x4b\x4e\x34\ \x3c\x3d\x3c\x47\x4c\x40\x44\x4e\x3c\x46\x49\x3c\x49\x4c\x3e\x4a\ \x4e\x43\x4f\x54\x41\x4f\x57\x37\x45\x48\x33\x3c\x38\x39\x47\x4d\ \x41\x4c\x51\x41\x4b\x49\x40\x49\x4c\x43\x53\x5c\x3e\x48\x4c\x31\ \x38\x36\x38\x42\x48\x3b\x44\x46\x33\x3d\x3e\x38\x43\x49\x3f\x51\ \x51\x46\x54\x58\x40\x50\x54\x37\x40\x44\x00\x00\x00\xb8\xdb\xf0\ \xbd\xdf\xf2\xad\xd8\xef\x6a\x9f\xcf\x68\x9a\xd0\x6e\x9a\xce\x79\ \xae\xdb\x4e\x85\xbd\x75\xa8\xd7\x8e\xc9\xe5\x5e\x98\xc6\x86\xbe\ \xe2\x9c\xcd\xeb\x87\xbc\xe0\x82\xbd\xdc\x79\xae\xd1\x6c\x9c\xbd\ \x6d\x96\xbc\x78\xa1\xc5\x9e\xc4\xdd\xab\xd0\xe3\xa0\xcb\xe2\x9d\ \xc7\xdd\xaa\xd7\xe9\x80\xb3\xd2\x91\xc2\xdc\x84\xb8\xd7\x7e\xab\ \xc7\x8a\xba\xd3\x9c\xc7\xdc\xa2\xca\xe0\x82\xad\xc8\x7d\xa6\xc1\ \x53\x72\x80\x36\x42\x49\x31\x43\x49\x39\x43\x4d\x3c\x51\x56\x4a\ \x57\x61\x59\x60\x62\x63\x6a\x70\x4c\x5e\x62\x48\x56\x62\x4c\x4f\ \x52\x47\x4f\x51\x41\x47\x4a\x39\x3e\x40\x33\x3a\x3c\x35\x40\x41\ \x2f\x35\x3a\x2d\x3a\x3a\x30\x30\x36\x30\x3c\x3c\x2c\x3a\x3a\x33\ \x3a\x39\x2b\x32\x2d\x32\x35\x33\x30\x34\x35\x31\x38\x35\x34\x39\ \x3b\x37\x41\x3e\x33\x3c\x39\x33\x3a\x3d\x35\x3d\x3d\x36\x3d\x3b\ \x37\x3b\x3c\x3a\x44\x4c\x39\x41\x41\x2f\x40\x41\x36\x43\x45\x38\ \x46\x4b\x30\x3d\x3c\x40\x4d\x52\x3c\x4c\x51\x3a\x47\x49\x39\x3d\ \x3b\x3b\x44\x41\x38\x41\x43\x34\x3b\x3a\x3d\x43\x3f\x36\x3e\x3c\ \x3a\x4a\x4c\x45\x51\x5d\x3f\x45\x49\x31\x37\x36\x30\x3c\x3d\x35\ \x3a\x39\x36\x3f\x3c\x37\x40\x41\x30\x3b\x40\x38\x45\x46\x30\x36\ \x36\x37\x3b\x35\x3a\x44\x4c\x3f\x49\x4c\x38\x3d\x3d\x35\x3d\x40\ \x3c\x4b\x4e\x3a\x4b\x4b\x3e\x47\x4a\x3d\x48\x4c\x33\x39\x39\x35\ \x3b\x3e\x32\x39\x3b\x3b\x49\x4c\x43\x4d\x49\x36\x3f\x3e\x37\x3b\ \x3a\x36\x3c\x3d\x32\x36\x39\x37\x3c\x41\x37\x3c\x40\x3c\x48\x4d\ \x39\x45\x45\x35\x3a\x3e\x39\x3d\x41\x39\x44\x47\x34\x36\x37\x38\ \x40\x45\x41\x4b\x4e\x3b\x42\x42\x3c\x49\x4f\x3b\x44\x46\x3a\x46\ \x49\x42\x4c\x51\x3f\x4b\x4d\x39\x46\x49\x41\x4a\x54\x3f\x46\x4a\ \x3e\x47\x49\x34\x3c\x41\x39\x49\x4b\x3f\x46\x4d\x3e\x4a\x51\x3c\ \x46\x4c\x31\x38\x38\x34\x3b\x3f\x33\x3e\x3a\x38\x43\x44\x3e\x48\ \x4e\x48\x4d\x56\x42\x4c\x52\x34\x40\x41\x41\x4e\x50\x3e\x4c\x4e\ \x38\x42\x43\x37\x3e\x3f\x41\x4e\x53\x41\x4d\x58\x3b\x44\x46\x43\ \x53\x58\x3a\x42\x43\x3e\x4a\x4d\x36\x3d\x3b\x3a\x4a\x52\x3b\x4a\ \x4e\x37\x46\x45\x3c\x48\x4c\x36\x43\x47\x40\x50\x51\x36\x3d\x3f\ \x2f\x34\x31\x34\x3e\x42\x00\x00\x00\x6d\x99\xc5\x6a\x96\xc4\x6e\ \xa0\xd2\x69\x98\xcd\x58\x89\xc0\x63\x8d\xc6\x5f\x98\xc9\x46\x76\ \xb1\x44\x7c\xad\x52\x78\xb6\xa1\xcd\xec\x8e\xbb\xd8\x99\xca\xe9\ \x73\x9a\xb7\xa4\xcc\xe3\x92\xbc\xd4\x77\xa3\xc5\x96\xbb\xd8\xb2\ \xd1\xe8\xb1\xd6\xe8\xb0\xd4\xe6\xb6\xd5\xe9\x98\xc4\xdd\x8a\xbe\ \xdb\x82\xb4\xd3\x85\xae\xcb\x84\xb1\xce\x94\xc2\xd9\x8c\xb9\xd7\ \x8a\xb7\xd3\x86\xb3\xc7\x39\x54\x69\x27\x34\x40\x39\x47\x4c\x40\ \x4a\x4f\x53\x5d\x67\x5b\x68\x71\x3e\x4c\x56\x52\x62\x6a\x59\x63\ \x6a\x71\x7e\x80\x3e\x47\x4a\x38\x43\x41\x35\x37\x39\x33\x37\x36\ \x2e\x37\x36\x32\x44\x4d\x2d\x40\x42\x2b\x2f\x32\x2a\x30\x2f\x28\ \x32\x35\x2e\x30\x2e\x2a\x2e\x2e\x34\x35\x39\x35\x3a\x39\x35\x39\ \x36\x33\x39\x37\x37\x36\x34\x34\x3f\x3d\x36\x3d\x41\x3c\x42\x44\ \x37\x44\x43\x34\x45\x46\x35\x3d\x3b\x37\x3f\x41\x3e\x46\x4c\x39\ \x48\x4b\x40\x4e\x53\x39\x4b\x52\x39\x45\x44\x39\x3d\x40\x38\x42\ \x44\x38\x44\x44\x3c\x43\x42\x3c\x41\x40\x35\x3b\x39\x3d\x43\x44\ \x3b\x43\x46\x2d\x35\x2e\x32\x37\x35\x37\x35\x39\x36\x38\x38\x2e\ \x2e\x2f\x37\x3b\x3e\x3e\x43\x46\x33\x3b\x37\x32\x35\x30\x30\x30\ \x33\x32\x35\x32\x32\x3d\x3b\x3a\x42\x42\x3f\x44\x43\x37\x43\x42\ \x3d\x47\x46\x38\x40\x3f\x37\x40\x3f\x37\x41\x40\x38\x46\x4c\x36\ \x40\x42\x33\x3a\x38\x3e\x43\x43\x40\x4a\x4f\x33\x3d\x3c\x3d\x40\ \x44\x45\x4f\x4e\x3a\x43\x42\x38\x3e\x3b\x38\x40\x3c\x3b\x46\x45\ \x46\x51\x56\x42\x52\x52\x3b\x45\x46\x43\x4c\x50\x42\x48\x4e\x35\ \x40\x42\x3c\x4b\x4c\x3e\x46\x42\x40\x44\x48\x41\x4b\x4f\x3e\x4f\ \x4c\x42\x4e\x51\x3c\x49\x4a\x39\x44\x49\x3b\x3f\x46\x31\x39\x3e\ \x39\x45\x47\x44\x49\x50\x39\x40\x41\x32\x3d\x40\x3c\x48\x4e\x40\ \x4c\x4f\x36\x48\x45\x3f\x44\x4a\x38\x3d\x3e\x38\x44\x41\x38\x47\ \x4d\x33\x44\x44\x33\x34\x36\x34\x40\x3f\x39\x3f\x40\x3f\x43\x45\ \x3a\x39\x3c\x37\x42\x3f\x3c\x4b\x4e\x34\x40\x42\x34\x3b\x3c\x3b\ \x40\x46\x40\x4c\x53\x3c\x48\x4c\x45\x4e\x52\x34\x3c\x41\x3f\x45\ \x46\x39\x44\x45\x3c\x45\x4a\x43\x50\x54\x41\x50\x51\x49\x5a\x5e\ \x40\x4c\x4d\x3e\x4f\x59\x30\x3d\x41\x43\x54\x59\x45\x51\x54\x3d\ \x4b\x4f\x00\x00\x00\x7d\xac\xd7\x7a\xa9\xd1\x58\x88\xbc\x57\x82\ \xb9\x58\x86\xb7\x62\x8d\xc2\x53\x81\xaf\x36\x55\x90\x4c\x73\xa5\ \x2e\x48\x87\x5a\x84\xbf\x7b\xa5\xd2\xb1\xd8\xee\xb1\xd7\xec\xb2\ \xd4\xe7\xb9\xd9\xeb\xb4\xd8\xeb\x9f\xcb\xe2\xb4\xd6\xeb\xb9\xdf\ \xef\x9e\xcc\xe2\x98\xc8\xe4\x9f\xcb\xe2\x77\xa2\xbf\x80\xa7\xc5\ \xa5\xc9\xdf\x9a\xc2\xda\x91\xba\xd1\x85\xb0\xcd\x85\xb3\xd1\x51\ \x71\x80\x35\x43\x4f\x3e\x49\x54\x45\x53\x58\x5c\x62\x6a\x56\x61\ \x67\x78\x87\x89\x3e\x4e\x5d\x50\x57\x61\x4f\x58\x5f\x43\x51\x5c\ \x3b\x48\x4b\x31\x38\x3a\x32\x37\x37\x3d\x42\x47\x32\x3c\x3f\x2e\ \x38\x3b\x30\x38\x36\x2d\x31\x30\x2d\x33\x35\x2e\x31\x2e\x36\x38\ \x35\x38\x3a\x3a\x39\x37\x36\x31\x35\x33\x33\x33\x33\x38\x42\x46\ \x33\x3f\x3d\x3a\x45\x47\x35\x43\x40\x35\x35\x39\x32\x34\x33\x31\ \x34\x36\x41\x4b\x4a\x39\x42\x40\x35\x3a\x37\x3b\x44\x48\x43\x4b\ \x52\x32\x32\x30\x35\x35\x36\x37\x3d\x3a\x30\x35\x38\x38\x3d\x3d\ \x36\x39\x37\x3a\x3e\x3e\x3e\x42\x46\x42\x45\x4a\x3c\x3f\x3d\x3b\ \x44\x40\x3d\x45\x44\x3f\x43\x44\x36\x40\x43\x39\x41\x41\x3b\x42\ \x43\x38\x40\x40\x37\x3d\x3c\x3b\x44\x47\x3e\x46\x49\x37\x3d\x41\ \x39\x44\x46\x31\x37\x36\x39\x3c\x3e\x3b\x3e\x43\x35\x3c\x3a\x35\ \x3a\x3b\x3b\x44\x49\x41\x47\x4c\x3e\x49\x4e\x3a\x43\x45\x36\x3e\ \x3e\x3c\x45\x4e\x3b\x44\x4a\x41\x4b\x50\x3e\x45\x42\x2e\x37\x35\ \x37\x38\x3a\x3e\x4b\x4f\x45\x4c\x54\x4b\x59\x5f\x3f\x4b\x4e\x38\ \x3f\x40\x37\x3d\x3a\x2c\x33\x30\x34\x38\x36\x3a\x4a\x4a\x3c\x4c\ \x4a\x33\x34\x35\x31\x39\x41\x39\x44\x46\x38\x40\x3d\x2e\x31\x30\ \x33\x39\x3a\x32\x3a\x3b\x3a\x41\x45\x40\x49\x4e\x38\x42\x41\x3a\ \x3e\x41\x3a\x3f\x45\x4b\x58\x5c\x52\x5b\x5d\x3a\x43\x46\x3e\x49\ \x4b\x3d\x48\x48\x3b\x41\x49\x3b\x41\x41\x3d\x43\x4c\x39\x40\x3f\ \x3d\x4c\x4f\x44\x51\x56\x48\x54\x58\x3a\x40\x3f\x3b\x44\x48\x41\ \x4d\x54\x41\x4d\x53\x4c\x61\x67\x4f\x61\x67\x44\x52\x57\x4a\x56\ \x5b\x4d\x5e\x63\x38\x44\x41\x40\x4d\x51\x3d\x40\x43\x3c\x40\x46\ \x3a\x41\x46\x42\x4d\x53\x47\x55\x52\x3b\x44\x49\x35\x3c\x3c\x36\ \x43\x45\x47\x55\x5d\x48\x56\x5d\x3e\x47\x4a\x38\x47\x4a\x00\x00\ \x00\x83\xb0\xdc\x76\xa7\xd3\x3f\x6a\xa5\x56\x7b\xb1\x54\x7c\xb0\ \x57\x85\xb6\x52\x6b\xa2\x4e\x7b\xb3\x4d\x7a\xab\x4a\x6b\xab\x56\ \x8a\xc3\x47\x6f\xae\xa9\xce\xec\xc1\xe1\xf2\xc2\xe2\xf0\xba\xdc\ \xeb\xbc\xdf\xef\xbb\xdd\xed\xa9\xd4\xe8\xa8\xd2\xe7\xa9\xd3\xe9\ \x91\xb9\xd2\x90\xb3\xcf\xa9\xd0\xe4\xb3\xd6\xe7\x9d\xc5\xd8\x99\ \xc1\xd8\x8c\xb8\xcd\x66\x86\x9d\x45\x5f\x6e\x38\x48\x4d\x3a\x3e\ \x45\x59\x5d\x62\x58\x5e\x65\x55\x62\x6f\x58\x68\x73\x4b\x5e\x64\ \x3d\x53\x5e\x3e\x4b\x51\x3d\x46\x47\x3b\x43\x4a\x31\x3c\x42\x31\ \x37\x3b\x31\x3d\x40\x2b\x31\x35\x2e\x3a\x3b\x2f\x33\x33\x2e\x33\ \x33\x2f\x33\x33\x2d\x31\x31\x33\x35\x35\x30\x37\x34\x2e\x2f\x2d\ \x2f\x31\x32\x37\x3b\x3d\x36\x39\x39\x31\x31\x33\x36\x36\x34\x32\ \x36\x32\x33\x36\x38\x31\x37\x34\x39\x3a\x3c\x3a\x42\x46\x3e\x52\ \x57\x3e\x51\x50\x32\x3a\x3c\x32\x38\x3c\x3a\x42\x42\x41\x46\x44\ \x41\x47\x48\x36\x3a\x37\x39\x44\x47\x3c\x42\x46\x3a\x3f\x40\x3a\ \x46\x48\x3e\x45\x45\x3e\x48\x44\x3d\x3f\x3d\x3b\x42\x41\x37\x39\ \x3a\x3c\x3f\x42\x38\x3f\x42\x39\x41\x3e\x34\x3b\x3a\x3a\x43\x49\ \x3b\x42\x43\x2f\x38\x35\x37\x39\x3c\x3d\x42\x45\x33\x38\x38\x36\ \x3a\x36\x3f\x41\x45\x38\x3e\x44\x3c\x42\x46\x37\x41\x46\x38\x40\ \x3f\x35\x40\x45\x34\x3e\x40\x39\x44\x4a\x31\x3c\x3b\x39\x46\x46\ \x40\x44\x48\x45\x4e\x51\x3b\x43\x44\x3e\x49\x50\x3a\x49\x4f\x3a\ \x43\x48\x43\x4a\x52\x3a\x41\x46\x32\x37\x3e\x38\x3d\x3f\x37\x3e\ \x3d\x40\x47\x47\x3d\x49\x48\x42\x4c\x54\x40\x45\x4b\x42\x46\x47\ \x46\x50\x51\x42\x49\x4c\x33\x40\x3f\x38\x48\x4c\x3c\x46\x4d\x42\ \x4b\x55\x46\x54\x57\x43\x4e\x4d\x3c\x44\x46\x3f\x47\x48\x34\x3d\ \x42\x31\x3e\x3b\x31\x3a\x3e\x39\x47\x47\x39\x43\x4c\x34\x3f\x3f\ \x38\x43\x3f\x3f\x4b\x4e\x46\x4e\x53\x41\x4d\x52\x46\x55\x5b\x3f\ \x4c\x51\x35\x3f\x42\x39\x47\x4c\x4a\x5a\x63\x3f\x49\x4c\x3d\x45\ \x4a\x46\x54\x5a\x3a\x43\x43\x33\x3b\x3f\x33\x41\x44\x3e\x47\x4c\ \x36\x3e\x40\x40\x46\x47\x41\x44\x49\x3e\x4f\x53\x44\x4d\x52\x40\ \x4f\x57\x41\x46\x4c\x35\x3a\x3c\x3d\x4f\x56\x38\x46\x47\x40\x4c\ \x50\x3c\x46\x49\x35\x3f\x41\x39\x42\x42\x00\x00\x00\x7e\xa9\xd2\ \x7a\xa1\xcf\x6b\x96\xc5\x4b\x74\xa5\x5a\x83\xb7\x4d\x73\xa4\x56\ \x84\xba\x44\x79\xb4\x51\x7e\xba\x57\x91\xca\x56\x87\xc1\x63\x8f\ \xc7\xc4\xe7\xf6\xbe\xdf\xee\xc4\xe5\xf3\xc9\xe7\xf6\xb1\xda\xeb\ \xa7\xd4\xea\xb6\xdb\xef\xb3\xd7\xec\xaf\xd6\xe8\xb8\xd8\xea\xaf\ \xd5\xe8\xa2\xca\xdf\xa4\xcc\xe1\x6a\x8a\xa3\x49\x67\x77\x2c\x3e\ \x48\x34\x40\x45\x45\x57\x5c\x44\x53\x60\x4c\x54\x61\x57\x64\x6b\ \x6b\x72\x7c\x80\x91\x93\x49\x52\x58\x44\x52\x56\x3f\x4b\x51\x39\ \x3b\x3b\x33\x39\x36\x2c\x2e\x2f\x2a\x32\x33\x2a\x34\x3b\x32\x37\ \x3f\x2f\x3a\x3c\x29\x2f\x2b\x2d\x2f\x2d\x30\x32\x31\x35\x34\x32\ \x2d\x35\x39\x2e\x31\x31\x2f\x35\x31\x34\x3b\x37\x35\x35\x35\x33\ \x33\x33\x33\x33\x33\x37\x3e\x40\x39\x3c\x3d\x3c\x41\x41\x3b\x42\ \x43\x39\x48\x48\x39\x41\x40\x33\x3f\x3e\x3c\x49\x4d\x3e\x46\x49\ \x3b\x42\x44\x37\x41\x3e\x34\x41\x3d\x38\x3d\x3c\x35\x38\x37\x3c\ \x45\x47\x3a\x4a\x4b\x37\x45\x43\x33\x36\x33\x31\x36\x35\x39\x40\ \x40\x2d\x31\x2d\x34\x38\x38\x2f\x35\x36\x35\x3e\x3d\x36\x3f\x3d\ \x46\x50\x4f\x3f\x48\x48\x34\x3b\x3a\x33\x33\x3c\x35\x36\x36\x3b\ \x41\x44\x3e\x49\x4c\x3b\x43\x47\x3b\x46\x46\x3f\x48\x45\x3d\x45\ \x44\x3d\x46\x49\x3c\x41\x48\x3c\x41\x43\x39\x40\x3e\x3f\x49\x4d\ \x40\x4a\x51\x41\x4d\x59\x3e\x48\x4b\x40\x4b\x48\x3c\x43\x45\x3a\ \x3d\x40\x33\x39\x39\x39\x42\x44\x40\x45\x4c\x44\x4d\x50\x3a\x41\ \x42\x39\x3f\x3d\x38\x43\x43\x3a\x47\x4c\x3d\x4b\x4e\x3d\x4a\x4c\ \x3a\x45\x48\x39\x39\x3b\x32\x36\x36\x34\x3d\x3c\x31\x36\x33\x33\ \x39\x3d\x37\x42\x46\x39\x41\x44\x3c\x40\x40\x35\x3f\x40\x31\x3a\ \x39\x37\x3f\x3f\x34\x35\x38\x32\x3e\x40\x37\x45\x47\x3d\x47\x45\ \x39\x44\x45\x43\x53\x52\x40\x4f\x50\x40\x46\x4a\x44\x4a\x4a\x37\ \x3e\x40\x36\x41\x43\x39\x48\x49\x44\x4d\x4e\x40\x4a\x49\x46\x53\ \x5b\x3d\x46\x47\x3d\x47\x4d\x44\x4a\x4e\x41\x49\x4f\x43\x4b\x4a\ \x3a\x45\x4a\x47\x57\x63\x4c\x5e\x65\x49\x5d\x62\x40\x50\x50\x54\ \x60\x63\x51\x60\x67\x41\x50\x56\x37\x43\x48\x44\x4d\x54\x3f\x44\ \x4b\x45\x52\x59\x41\x4a\x51\x41\x4c\x51\x42\x50\x52\x3e\x49\x4c\ \x3b\x43\x49\x43\x51\x55\x00\x00\x00\x84\xaa\xd5\x75\xa3\xce\x6f\ \x9a\xbf\x61\x8b\xb8\x5e\x89\xbd\x5f\x83\xae\x67\x96\xcc\x44\x7b\ \xb5\x47\x7a\xb8\x5d\x95\xcc\x4a\x79\xbb\x87\xb2\xdc\xbd\xe1\xf2\ \xbe\xe3\xf3\xb2\xd6\xeb\xba\xdf\xf3\x97\xcd\xe9\x73\xaa\xd0\xa6\ \xc9\xe4\xbf\xe2\xf0\xb8\xdc\xeb\xb0\xd7\xe5\xac\xd4\xe8\x87\xb2\ \xcb\x46\x65\x77\x2a\x44\x4d\x36\x42\x4d\x3b\x47\x4a\x3c\x42\x42\ \x50\x55\x63\x65\x74\x7b\x64\x71\x7d\x55\x69\x70\x51\x5f\x69\x4a\ \x5d\x69\x43\x44\x45\x3b\x45\x49\x37\x41\x45\x33\x43\x49\x3e\x53\ \x59\x38\x47\x48\x34\x42\x46\x2e\x36\x39\x2d\x2e\x2c\x2d\x36\x34\ \x32\x3f\x3e\x32\x36\x31\x30\x35\x34\x2f\x35\x35\x33\x3b\x3a\x35\ \x3c\x3e\x39\x42\x40\x38\x3f\x3b\x35\x3d\x39\x38\x3f\x43\x38\x41\ \x42\x37\x44\x49\x33\x37\x35\x35\x37\x35\x38\x39\x3c\x33\x37\x37\ \x3a\x3e\x43\x3b\x45\x48\x37\x3d\x3b\x31\x36\x33\x36\x3c\x38\x35\ \x42\x40\x36\x3e\x3f\x34\x3a\x37\x34\x3d\x3e\x34\x3b\x40\x38\x42\ \x40\x38\x3e\x39\x3d\x3e\x3f\x39\x3e\x41\x3a\x44\x43\x34\x3e\x3e\ \x3a\x43\x4a\x46\x4b\x50\x3e\x4a\x4c\x38\x40\x3e\x33\x36\x36\x2d\ \x30\x31\x30\x39\x3c\x3a\x44\x49\x33\x39\x3a\x34\x3b\x39\x44\x4c\ \x4e\x3f\x49\x48\x35\x3c\x3c\x33\x38\x37\x33\x3a\x39\x34\x3b\x3c\ \x4c\x53\x5c\x41\x46\x4c\x42\x46\x49\x44\x54\x57\x45\x4f\x52\x3c\ \x46\x4b\x3b\x45\x49\x38\x3e\x3d\x34\x39\x36\x3c\x45\x48\x4d\x54\ \x5a\x47\x4b\x4a\x35\x3d\x3f\x36\x35\x35\x37\x3e\x42\x35\x3f\x3e\ \x37\x42\x44\x39\x47\x4a\x47\x51\x59\x37\x43\x44\x36\x3c\x3f\x4c\ \x58\x5e\x48\x59\x60\x41\x4b\x50\x42\x49\x4a\x3e\x4c\x50\x42\x50\ \x53\x43\x4e\x51\x37\x3a\x3c\x3b\x40\x42\x41\x4e\x53\x49\x54\x59\ \x42\x4c\x4d\x3e\x49\x4e\x38\x3f\x3e\x35\x41\x3f\x37\x3c\x3e\x36\ \x40\x44\x31\x33\x32\x33\x36\x38\x36\x3a\x3f\x3e\x51\x53\x43\x52\ \x55\x3d\x49\x4a\x35\x3e\x40\x33\x3a\x3c\x31\x3a\x3e\x40\x48\x46\ \x3f\x4c\x51\x3f\x4a\x4b\x34\x3b\x3d\x35\x3d\x39\x3f\x4c\x4f\x3d\ \x41\x48\x42\x4d\x50\x40\x4b\x4b\x41\x4f\x55\x42\x4c\x51\x37\x43\ \x49\x3f\x46\x48\x46\x52\x59\x43\x4a\x50\x4a\x55\x5b\x44\x4a\x4c\ \x3c\x44\x48\x36\x45\x4c\x3f\x47\x49\x3a\x3d\x44\x41\x4f\x53\x3a\ \x43\x47\x00\x00\x00\x75\x9f\xc7\x7a\xaa\xd4\x8f\xc6\xe6\x4f\x87\ \xc1\x59\x80\xb5\x50\x74\xae\x5e\x89\xb6\x4b\x70\xab\x6d\x9f\xce\ \x91\xc0\xe1\xb1\xd9\xf0\xaf\xd9\xef\xa5\xd1\xea\xa7\xd5\xec\x96\ \xc9\xe5\x83\xbd\xe0\x8a\xbf\xe4\xb4\xdc\xf0\xbd\xdc\xef\xb4\xd9\ \xea\xb2\xd6\xe9\xaf\xd8\xea\x58\x7e\x92\x30\x46\x59\x37\x45\x54\ \x45\x50\x55\x52\x5a\x5e\x51\x5e\x5f\x59\x5e\x69\x70\x7c\x83\x93\ \x9c\xa4\x65\x74\x73\x48\x50\x54\x41\x4b\x52\x3d\x48\x50\x33\x39\ \x38\x3a\x43\x4b\x38\x45\x4b\x2b\x36\x37\x2d\x39\x39\x32\x38\x3b\ \x3b\x46\x4d\x33\x40\x3f\x32\x3a\x36\x2f\x31\x2e\x2c\x2f\x2f\x2c\ \x33\x30\x2c\x33\x2d\x36\x3b\x3b\x2e\x31\x30\x33\x39\x3a\x33\x36\ \x36\x32\x34\x32\x32\x36\x33\x35\x3a\x3b\x31\x3d\x39\x30\x39\x39\ \x39\x3d\x3d\x38\x43\x44\x3c\x4a\x4e\x3b\x47\x4a\x36\x42\x43\x33\ \x38\x39\x37\x3d\x3b\x3e\x46\x47\x3f\x46\x49\x34\x3d\x3d\x30\x36\ \x31\x3c\x49\x49\x34\x43\x40\x34\x3b\x36\x31\x34\x31\x33\x39\x39\ \x3f\x48\x4b\x39\x46\x4a\x37\x43\x3d\x32\x3b\x3a\x38\x3e\x3e\x3f\ \x42\x45\x3a\x41\x40\x30\x36\x38\x35\x3a\x3b\x3e\x46\x4a\x3b\x45\ \x48\x38\x45\x49\x41\x4a\x4b\x43\x4e\x4c\x3e\x4e\x4f\x3b\x44\x40\ \x3d\x46\x42\x39\x48\x49\x3d\x4d\x50\x45\x55\x57\x3a\x3f\x3f\x34\ \x39\x3a\x31\x3a\x3c\x31\x3a\x36\x38\x40\x43\x3e\x4c\x4f\x2d\x36\ \x35\x34\x41\x43\x38\x44\x48\x37\x44\x42\x34\x3b\x3c\x31\x35\x35\ \x3a\x40\x3f\x40\x49\x4b\x38\x42\x42\x34\x3f\x3e\x36\x3d\x3d\x31\ \x36\x37\x36\x3c\x3c\x38\x3a\x39\x37\x41\x43\x3b\x4e\x54\x35\x42\ \x43\x35\x3c\x3d\x32\x39\x37\x3d\x48\x49\x43\x4d\x4c\x38\x3d\x3c\ \x3a\x43\x43\x3f\x4a\x4e\x3b\x47\x4b\x33\x3b\x3d\x2d\x31\x35\x32\ \x35\x39\x41\x49\x4d\x42\x4c\x4a\x3e\x46\x45\x34\x3f\x43\x44\x4f\ \x54\x43\x4f\x52\x3e\x4b\x4f\x3e\x4a\x51\x38\x42\x45\x38\x46\x48\ \x37\x3f\x3d\x37\x41\x43\x39\x49\x4d\x44\x4f\x53\x39\x3e\x43\x35\ \x3a\x40\x41\x4a\x4e\x3f\x4e\x4d\x39\x49\x4c\x3b\x4d\x53\x3a\x4c\ \x4e\x34\x3d\x3f\x3d\x4f\x51\x34\x3d\x42\x3e\x4d\x5a\x43\x50\x57\ \x3e\x4b\x4c\x42\x4f\x53\x43\x50\x55\x37\x40\x41\x41\x44\x4d\x3a\ \x44\x4f\x37\x3e\x43\x46\x53\x58\x3e\x47\x4f\x38\x43\x47\x00\x00\ \x00\x7d\xac\xd4\x86\xbc\xde\x6a\x95\xbe\x6c\x9f\xca\x64\x92\xc6\ \x61\x86\xba\x65\x8b\xb3\x49\x71\xaa\x72\xa4\xd1\x80\xb8\xdc\x81\ \xbd\xde\x86\xc5\xe6\x52\x85\xb5\x59\x95\xc7\x72\xae\xda\xa3\xd3\ \xec\xab\xd8\xec\xa0\xcd\xe1\xaa\xd3\xe6\xb7\xdd\xee\xa4\xcb\xdc\ \x60\x81\x9b\x3d\x50\x60\x3b\x50\x5a\x49\x54\x5e\x55\x64\x6c\x5c\ \x66\x6f\x67\x76\x7a\x79\x88\x8a\x8b\x96\x9a\x66\x78\x7e\x44\x51\ \x50\x39\x41\x41\x37\x39\x3c\x2e\x31\x32\x31\x39\x3c\x3c\x4a\x4e\ \x2e\x38\x33\x31\x34\x37\x36\x40\x48\x39\x42\x48\x29\x32\x32\x2f\ \x2e\x31\x33\x37\x34\x35\x37\x3c\x35\x3b\x3b\x36\x3e\x3f\x3d\x46\ \x45\x3d\x45\x47\x38\x42\x44\x36\x43\x48\x3a\x44\x44\x39\x41\x42\ \x34\x3e\x3f\x31\x3a\x39\x34\x3c\x3e\x3a\x3f\x40\x40\x46\x44\x39\ \x42\x3e\x3a\x42\x46\x35\x3c\x3d\x3b\x44\x46\x37\x3f\x3d\x38\x3c\ \x3e\x37\x3b\x3a\x3e\x3d\x40\x3b\x42\x43\x3a\x44\x41\x3b\x3c\x3f\ \x37\x40\x43\x3b\x44\x44\x33\x3e\x3f\x39\x45\x47\x2e\x37\x36\x34\ \x42\x43\x2e\x38\x39\x33\x41\x41\x34\x40\x43\x35\x42\x48\x32\x36\ \x35\x38\x47\x48\x34\x37\x37\x35\x3c\x3e\x3e\x44\x45\x40\x4a\x4e\ \x3d\x42\x45\x3c\x3f\x46\x3a\x44\x44\x3a\x40\x3f\x3b\x3c\x3d\x44\ \x50\x52\x45\x57\x57\x48\x51\x59\x47\x51\x52\x3d\x47\x49\x4e\x54\ \x5b\x47\x51\x50\x4c\x5c\x5a\x47\x4e\x4e\x41\x49\x45\x42\x4e\x4e\ \x42\x4f\x56\x38\x43\x47\x40\x49\x4e\x44\x4d\x51\x41\x4b\x49\x3c\ \x43\x45\x38\x47\x48\x41\x47\x48\x3b\x3f\x3f\x3d\x46\x48\x35\x40\ \x40\x40\x46\x4a\x3e\x4a\x4f\x3b\x44\x44\x37\x44\x44\x34\x3a\x3e\ \x36\x41\x3f\x32\x3b\x3a\x3b\x44\x45\x3c\x42\x40\x40\x49\x4b\x3f\ \x49\x4f\x36\x40\x43\x39\x40\x40\x3f\x47\x49\x40\x4f\x52\x40\x4a\ \x52\x38\x41\x43\x3b\x43\x42\x36\x42\x44\x3d\x46\x4a\x36\x42\x3f\ \x36\x41\x43\x33\x38\x3d\x32\x34\x34\x2a\x39\x38\x38\x40\x42\x40\ \x49\x4e\x47\x50\x59\x3a\x45\x49\x3d\x48\x4b\x43\x51\x50\x3e\x47\ \x48\x36\x3f\x3f\x43\x4c\x4f\x44\x51\x59\x34\x3e\x41\x3e\x4b\x52\ \x40\x4e\x4f\x3c\x4e\x51\x39\x51\x57\x37\x41\x43\x42\x4d\x51\x41\ \x4f\x58\x44\x4e\x59\x3d\x46\x4a\x3d\x49\x4d\x42\x4c\x52\x4c\x56\ \x5e\x49\x53\x53\x49\x51\x53\x46\x54\x5a\x00\x00\x00\x86\xbf\xe3\ \x83\xb9\xd9\x71\x9c\xc9\xa3\xce\xe7\x56\x75\x92\x41\x5d\x87\x59\ \x79\xa8\x60\x99\xc5\x70\xa7\xd0\x67\x96\xbe\x67\x9d\xc6\x65\x99\ \xc0\x2c\x55\x86\x48\x75\xa8\x85\xab\xd2\x9c\xc6\xe1\xa9\xd3\xe8\ \xac\xd9\xec\x96\xc2\xda\x62\x88\xa0\x45\x65\x7b\x32\x49\x54\x3f\ \x4f\x59\x45\x56\x65\x77\x84\x8d\x7e\x91\x97\x72\x87\x8c\x67\x6e\ \x74\x72\x7a\x82\x67\x76\x78\x38\x46\x46\x32\x38\x34\x38\x3e\x43\ \x30\x34\x32\x30\x3f\x3a\x2b\x31\x33\x30\x37\x3a\x2f\x3a\x36\x39\ \x43\x42\x35\x3c\x3e\x37\x39\x38\x32\x38\x3b\x3a\x46\x4a\x46\x58\ \x5d\x34\x3a\x3f\x34\x43\x44\x2e\x37\x39\x35\x3d\x42\x33\x3d\x3c\ \x30\x33\x30\x34\x3a\x3b\x3b\x43\x46\x39\x44\x4b\x36\x42\x45\x3d\ \x4c\x54\x33\x3d\x3d\x31\x39\x3a\x34\x36\x39\x39\x3f\x42\x35\x38\ \x39\x35\x3a\x39\x3a\x3d\x3e\x37\x40\x45\x3a\x42\x45\x39\x42\x42\ \x38\x40\x43\x36\x3a\x3d\x37\x3a\x3d\x40\x43\x44\x3f\x44\x44\x3a\ \x41\x3b\x34\x38\x39\x38\x3c\x3e\x38\x41\x41\x39\x40\x41\x3f\x49\ \x4e\x3e\x49\x4b\x3a\x41\x40\x43\x4c\x52\x3f\x47\x46\x40\x4c\x4d\ \x37\x3c\x3c\x3b\x41\x42\x41\x4c\x4e\x34\x3a\x3c\x35\x3c\x42\x3e\ \x49\x4e\x42\x4e\x4b\x38\x3e\x3e\x38\x42\x43\x3e\x45\x4b\x40\x49\ \x49\x3c\x45\x47\x34\x3a\x36\x36\x3d\x3d\x3a\x3f\x3f\x40\x4b\x4b\ \x34\x3f\x3e\x38\x40\x44\x38\x3d\x3f\x34\x38\x36\x37\x3c\x41\x40\ \x49\x4a\x47\x56\x55\x3a\x47\x44\x3c\x44\x42\x38\x40\x45\x44\x4f\ \x52\x2f\x39\x34\x3a\x41\x43\x36\x3e\x3e\x39\x3f\x40\x39\x3e\x42\ \x32\x3c\x3d\x3e\x4c\x4b\x37\x46\x44\x37\x45\x44\x40\x4b\x4d\x3b\ \x46\x4a\x35\x40\x44\x33\x3d\x39\x37\x42\x45\x3d\x47\x47\x3b\x43\ \x40\x44\x4c\x4f\x3a\x3f\x3e\x30\x38\x37\x2f\x35\x3a\x35\x3d\x3d\ \x39\x47\x48\x2f\x38\x37\x31\x38\x35\x38\x3f\x43\x39\x44\x47\x3c\ \x46\x4d\x3f\x4d\x56\x37\x42\x44\x3f\x4f\x56\x37\x3e\x41\x39\x41\ \x44\x32\x35\x38\x3a\x45\x45\x38\x42\x40\x37\x3e\x3d\x42\x4c\x4d\ \x3d\x41\x42\x32\x38\x33\x34\x3e\x3e\x3c\x47\x4b\x34\x41\x43\x36\ \x46\x4b\x38\x43\x47\x3e\x47\x46\x3c\x46\x47\x3c\x48\x4e\x38\x40\ \x40\x37\x42\x40\x42\x4e\x53\x3f\x4d\x59\x43\x43\x4e\x31\x3b\x38\ \x3a\x43\x48\x33\x3d\x42\x00\x00\x00\xa0\xcf\xea\xb0\xd8\xef\x83\ \xb4\xd6\x67\x92\xb4\x4f\x5c\x6e\x4b\x68\x7d\x4e\x6e\x98\x60\x8e\ \xbf\x69\x96\xc7\x6f\xa2\xc6\x5b\x82\xa3\x54\x7a\x96\x1f\x3f\x63\ \x4a\x6b\x94\x81\xac\xcf\xa0\xcc\xe4\xa1\xcd\xe3\x61\x80\x93\x40\ \x56\x69\x46\x57\x68\x4b\x5d\x6f\x51\x64\x69\x5e\x6b\x79\x5f\x70\ \x7d\x76\x81\x8c\x7b\x8d\x92\x4b\x57\x5e\x61\x69\x71\x41\x44\x42\ \x39\x3e\x41\x31\x34\x36\x37\x3c\x3f\x32\x3a\x3b\x31\x34\x32\x3a\ \x44\x48\x32\x3f\x41\x38\x41\x46\x31\x3b\x38\x34\x38\x3a\x2f\x33\ \x33\x30\x2f\x2f\x2f\x31\x31\x38\x42\x41\x36\x42\x43\x3c\x3c\x3b\ \x39\x48\x49\x38\x43\x45\x41\x4c\x56\x43\x57\x5d\x3d\x4a\x49\x36\ \x42\x47\x3c\x4e\x58\x39\x4e\x52\x3a\x4e\x57\x39\x4d\x53\x3a\x3c\ \x3e\x49\x53\x5a\x49\x52\x55\x3d\x46\x47\x35\x38\x38\x3d\x41\x44\ \x40\x47\x48\x3c\x43\x4a\x39\x42\x43\x38\x46\x44\x36\x3e\x45\x37\ \x41\x42\x30\x39\x36\x3d\x45\x4a\x37\x3f\x3f\x3b\x42\x44\x39\x3f\ \x3f\x3b\x42\x40\x38\x3b\x40\x34\x41\x3e\x35\x43\x42\x3f\x4a\x4b\ \x33\x3d\x38\x32\x3b\x3c\x32\x38\x37\x38\x38\x3a\x42\x44\x47\x46\ \x55\x59\x3f\x47\x48\x44\x54\x57\x44\x53\x5f\x44\x4e\x55\x4e\x5e\ \x67\x3f\x56\x5a\x3d\x4a\x4e\x48\x4f\x54\x40\x4b\x4b\x35\x3d\x3f\ \x44\x4d\x4d\x47\x4d\x4d\x45\x51\x53\x40\x4c\x52\x48\x57\x5a\x3f\ \x42\x46\x41\x48\x49\x4c\x51\x54\x3e\x47\x4a\x34\x3d\x3b\x2f\x35\ \x31\x38\x47\x4c\x3a\x48\x49\x3c\x46\x4b\x36\x39\x3a\x47\x4d\x4f\ \x48\x54\x56\x42\x4e\x52\x3a\x47\x48\x39\x42\x44\x40\x4b\x51\x31\ \x3a\x3d\x32\x37\x37\x38\x45\x45\x3a\x3f\x42\x31\x3b\x3c\x36\x3d\ \x43\x3a\x41\x46\x42\x49\x4d\x37\x3b\x3a\x3b\x42\x42\x3c\x47\x48\ \x39\x40\x3f\x32\x38\x38\x3b\x43\x49\x3f\x50\x54\x41\x4d\x4e\x3d\ \x4b\x49\x40\x4d\x55\x3e\x4a\x51\x3d\x50\x5c\x33\x44\x4a\x38\x41\ \x48\x35\x3d\x3f\x39\x46\x4a\x3e\x54\x5a\x37\x41\x41\x39\x48\x4b\ \x43\x50\x4f\x39\x44\x45\x43\x50\x54\x3b\x4b\x50\x3b\x48\x49\x31\ \x3e\x40\x39\x48\x4a\x3c\x4a\x4d\x3c\x49\x4f\x3b\x45\x4b\x34\x41\ \x46\x3c\x43\x48\x34\x40\x46\x34\x3a\x3b\x3c\x40\x45\x3e\x4a\x4b\ \x3a\x4a\x50\x46\x56\x59\x3f\x41\x41\x3e\x4a\x4a\x3a\x4b\x49\x37\ \x43\x42\x00\x00\x00\x89\xb2\xd2\x89\xaf\xd5\x72\xa0\xc9\x6e\x99\ \xbf\x50\x64\x72\x51\x6e\x90\x56\x79\x99\x43\x60\x89\x71\x9e\xcc\ \x6a\x9b\xc1\x4f\x6f\x92\x51\x6b\x94\x79\xa3\xc8\x88\xbb\xdb\x90\ \xba\xda\x5f\x87\x9d\x55\x76\x90\x44\x5c\x6a\x44\x53\x60\x66\x75\ \x84\x73\x83\x88\x61\x75\x7a\x55\x63\x74\x66\x70\x77\x69\x75\x7a\ \x49\x50\x56\x4e\x55\x56\x40\x4d\x53\x3b\x43\x41\x36\x3c\x3b\x30\ \x34\x31\x2f\x30\x31\x32\x32\x30\x31\x37\x33\x2d\x36\x36\x33\x39\ \x36\x3a\x43\x43\x2e\x34\x31\x32\x37\x33\x34\x3a\x3a\x33\x3a\x37\ \x3e\x49\x4a\x47\x52\x53\x35\x3f\x3c\x35\x3b\x39\x36\x3d\x41\x34\ \x3c\x3e\x39\x3c\x3f\x3d\x4b\x50\x32\x3a\x44\x2d\x39\x3d\x36\x4a\ \x4f\x34\x41\x47\x36\x43\x44\x35\x3c\x3b\x35\x3a\x41\x32\x37\x37\ \x31\x36\x3b\x39\x42\x46\x39\x44\x45\x36\x3b\x3d\x34\x3a\x34\x3b\ \x3f\x44\x3d\x40\x43\x32\x38\x35\x34\x3a\x38\x3b\x45\x47\x3f\x47\ \x49\x40\x4a\x51\x37\x44\x4a\x37\x3a\x3c\x33\x3a\x3b\x38\x3b\x3c\ \x31\x36\x34\x34\x3b\x3c\x3c\x47\x4e\x3a\x49\x4d\x3c\x48\x44\x46\ \x4d\x52\x3d\x44\x45\x38\x3d\x3d\x38\x3f\x3f\x3a\x44\x4a\x38\x44\ \x46\x39\x4b\x4f\x3f\x4f\x4f\x38\x43\x41\x3d\x49\x47\x43\x4b\x49\ \x3a\x3f\x40\x37\x3c\x3f\x43\x4d\x4d\x4b\x57\x57\x3d\x49\x49\x41\ \x4b\x4f\x38\x45\x41\x3b\x42\x44\x37\x40\x41\x3f\x47\x4a\x3c\x47\ \x49\x3e\x46\x46\x3b\x3d\x41\x45\x4e\x52\x46\x53\x55\x49\x54\x58\ \x42\x4b\x53\x3b\x41\x43\x41\x47\x4c\x3d\x51\x51\x44\x4d\x51\x3e\ \x44\x4d\x2f\x34\x35\x36\x3b\x3f\x36\x3a\x3b\x38\x43\x48\x41\x50\ \x58\x40\x47\x4d\x38\x3f\x3e\x3a\x44\x47\x3d\x46\x49\x39\x3d\x42\ \x35\x3a\x3d\x40\x42\x47\x35\x39\x3a\x2a\x31\x2f\x36\x3e\x3f\x4b\ \x56\x59\x4b\x59\x5e\x3e\x4d\x56\x31\x3c\x3d\x31\x37\x34\x2e\x37\ \x3a\x35\x3f\x44\x38\x43\x42\x3a\x44\x44\x3d\x4a\x4e\x37\x41\x48\ \x3e\x4a\x4f\x32\x40\x43\x31\x43\x46\x3b\x46\x55\x39\x44\x48\x32\ \x3c\x3c\x35\x3a\x3a\x32\x3c\x3d\x2f\x38\x38\x32\x43\x45\x3c\x4c\ \x53\x35\x39\x3d\x2e\x36\x33\x34\x3c\x3e\x34\x3d\x3c\x31\x38\x37\ \x31\x43\x46\x35\x40\x3e\x3f\x46\x50\x37\x43\x42\x36\x40\x43\x30\ \x38\x35\x36\x3f\x3e\x3b\x48\x4c\x41\x51\x56\x37\x4b\x50\x00\x00\ \x00\x6b\x8f\xb8\x78\xa1\xcc\x62\x85\xb2\x62\x85\xb9\x65\x8a\xaf\ \x61\x8f\xbb\x50\x79\x9c\x4f\x6c\x96\x54\x75\x9e\x46\x66\x86\x5d\ \x82\xa6\x5c\x81\xaa\x35\x53\x87\x62\x86\xa7\x58\x7e\x94\x5d\x74\ \x89\x58\x6f\x7c\x53\x65\x7a\x63\x79\x84\x7c\x84\x90\x6c\x79\x80\ \x55\x69\x75\x4e\x60\x6e\x52\x5b\x68\x4c\x60\x6a\x3c\x42\x44\x40\ \x48\x4c\x32\x3b\x39\x3a\x45\x47\x37\x40\x45\x34\x42\x47\x2e\x36\ \x37\x3a\x43\x43\x36\x3c\x42\x3a\x44\x46\x36\x46\x48\x34\x37\x32\ \x2e\x38\x34\x36\x3e\x3c\x3b\x3e\x42\x3d\x43\x44\x3e\x47\x45\x3d\ \x43\x3f\x37\x3b\x3b\x32\x3a\x39\x37\x48\x4d\x42\x55\x5b\x3b\x4b\ \x54\x49\x5c\x69\x3d\x4b\x54\x3a\x4f\x55\x3d\x4f\x54\x37\x3e\x40\ \x3c\x43\x45\x39\x42\x46\x3d\x50\x56\x3c\x46\x4a\x3b\x4c\x4f\x39\ \x44\x4b\x38\x3e\x3e\x36\x3c\x3e\x3c\x46\x45\x3f\x43\x44\x3c\x42\ \x42\x33\x3e\x3d\x3a\x42\x42\x3c\x42\x41\x31\x3d\x3b\x36\x40\x3f\ \x38\x3d\x3f\x3e\x43\x48\x3b\x45\x46\x37\x3c\x3d\x38\x3e\x40\x32\ \x42\x42\x3f\x4c\x51\x39\x41\x41\x38\x40\x3f\x39\x3f\x44\x40\x51\ \x56\x3e\x4e\x51\x46\x52\x57\x44\x4a\x51\x37\x42\x45\x3d\x46\x45\ \x35\x39\x3d\x3a\x42\x45\x3c\x45\x45\x33\x37\x36\x36\x3b\x3d\x46\ \x49\x4e\x45\x51\x52\x43\x51\x55\x4b\x51\x56\x48\x4e\x54\x44\x4d\ \x4a\x3a\x41\x44\x3e\x4b\x4a\x42\x4e\x54\x49\x55\x58\x48\x54\x5a\ \x45\x4f\x53\x3f\x46\x4a\x38\x43\x42\x37\x3d\x3d\x38\x3c\x3d\x36\ \x42\x41\x3a\x46\x44\x44\x51\x53\x36\x3e\x41\x36\x40\x44\x35\x3c\ \x40\x36\x3f\x42\x36\x44\x45\x3e\x53\x5e\x3c\x4b\x51\x39\x3d\x3f\ \x3a\x40\x3e\x36\x43\x42\x2d\x37\x34\x39\x41\x45\x40\x50\x53\x43\ \x4c\x52\x42\x48\x48\x40\x49\x4e\x45\x51\x56\x3a\x41\x44\x41\x4e\ \x56\x39\x45\x45\x38\x3f\x3f\x3e\x4f\x56\x40\x4b\x52\x39\x41\x46\ \x39\x44\x47\x33\x38\x39\x32\x39\x39\x36\x42\x44\x36\x43\x4a\x35\ \x3f\x44\x3a\x4d\x50\x3e\x4a\x54\x34\x3f\x40\x35\x40\x43\x3b\x4d\ \x53\x3b\x4c\x57\x30\x3c\x3e\x39\x49\x49\x30\x39\x3b\x3a\x45\x45\ \x3b\x48\x4b\x34\x3a\x3d\x39\x3f\x3f\x38\x49\x4a\x32\x3f\x41\x39\ \x46\x48\x3b\x44\x47\x40\x4f\x50\x3f\x4d\x4e\x38\x41\x43\x41\x4c\ \x4f\x43\x52\x5c\x38\x43\x44\x3b\x48\x4a\x00\x00\x00\x74\x9c\xba\ \x83\xb5\xd2\x4d\x76\x9a\x60\x87\xb9\x6b\x9a\xc7\x6b\x9f\xc6\x5d\ \x85\xab\x76\x9c\xb9\x48\x6b\x88\x56\x79\xa1\x8d\xb7\xd8\x55\x79\ \x9a\x48\x64\x7f\x4b\x5f\x74\x58\x76\x85\x5c\x76\x86\x55\x69\x75\ \x64\x6f\x7e\x6e\x7b\x83\x6b\x7a\x82\x54\x60\x6d\x60\x66\x6d\x4c\ \x5a\x62\x44\x4e\x52\x40\x4b\x4d\x36\x3d\x3d\x3c\x3a\x3c\x2e\x37\ \x38\x36\x3b\x3e\x34\x3a\x3e\x30\x37\x38\x2f\x3e\x3b\x31\x3d\x39\ \x31\x37\x35\x32\x3c\x39\x34\x3e\x3c\x36\x45\x44\x37\x46\x48\x38\ \x3b\x38\x38\x40\x43\x32\x3a\x3a\x32\x3c\x42\x2e\x37\x3d\x3a\x4f\ \x51\x37\x47\x4d\x40\x4a\x56\x3b\x43\x4b\x3c\x47\x4c\x3c\x4a\x51\ \x41\x4a\x4c\x39\x43\x49\x31\x3f\x42\x33\x3f\x3c\x3d\x42\x41\x3e\ \x4c\x4c\x38\x46\x4a\x3a\x40\x42\x33\x3b\x3e\x35\x45\x47\x40\x52\ \x58\x33\x40\x40\x37\x39\x3b\x3f\x45\x49\x35\x3c\x3a\x34\x39\x38\ \x36\x3d\x3c\x38\x41\x40\x35\x3f\x40\x39\x45\x42\x39\x40\x42\x37\ \x34\x34\x2f\x3a\x39\x41\x4f\x51\x3f\x49\x47\x44\x4e\x56\x42\x47\ \x4e\x3c\x41\x42\x37\x43\x43\x40\x4a\x4b\x3c\x47\x48\x4c\x5c\x62\ \x3f\x4b\x4c\x38\x41\x40\x3e\x48\x4f\x44\x4f\x53\x4d\x57\x5a\x42\ \x4b\x4d\x43\x4a\x47\x43\x4b\x48\x46\x54\x53\x3e\x48\x48\x3c\x44\ \x44\x42\x48\x44\x47\x4f\x53\x36\x41\x40\x42\x4d\x4b\x44\x51\x5a\ \x44\x4b\x4e\x42\x50\x57\x3f\x46\x49\x36\x3b\x38\x32\x36\x31\x37\ \x3f\x3d\x35\x45\x45\x3e\x4d\x4d\x3e\x4d\x4c\x38\x41\x3f\x31\x3a\ \x3c\x39\x42\x47\x3d\x4b\x4b\x3c\x44\x43\x3f\x4a\x4d\x47\x58\x5d\ \x3f\x49\x4b\x3c\x46\x4a\x32\x3d\x3d\x33\x36\x36\x30\x38\x3a\x39\ \x3e\x43\x43\x4c\x50\x46\x52\x53\x42\x4a\x4e\x30\x36\x37\x2e\x30\ \x30\x33\x3b\x3a\x2f\x33\x35\x39\x3d\x3f\x38\x43\x44\x2c\x33\x34\ \x33\x40\x3c\x38\x43\x43\x3a\x48\x4d\x41\x4a\x4f\x3d\x43\x45\x31\ \x3c\x3c\x43\x4d\x51\x38\x47\x4a\x3e\x46\x49\x3c\x49\x4c\x34\x43\ \x47\x2e\x34\x38\x2f\x41\x46\x3a\x45\x4c\x3a\x47\x4e\x38\x43\x45\ \x34\x41\x43\x37\x43\x44\x38\x40\x42\x3d\x47\x4c\x35\x42\x43\x31\ \x40\x3b\x39\x4e\x51\x3b\x47\x4a\x38\x44\x45\x37\x40\x43\x38\x3c\ \x3e\x35\x44\x45\x31\x37\x39\x3c\x4c\x50\x44\x50\x58\x43\x53\x5b\ \x35\x43\x43\x3a\x46\x49\x00\x00\x00\x79\x9b\xb8\x81\xa8\xcc\x87\ \xba\xdd\x79\xa6\xd5\x72\x9d\xc5\x57\x82\xb1\x61\x8a\xb5\x66\x87\ \xb0\x7f\xae\xcc\x46\x6c\x91\x44\x61\x87\x55\x71\x88\x4b\x60\x6d\ \x5a\x73\x85\x5e\x7c\x8c\x53\x6a\x78\x4d\x60\x71\x56\x64\x6e\x5c\ \x66\x72\x4a\x59\x66\x5c\x66\x70\x4d\x55\x58\x3f\x46\x43\x38\x3b\ \x3a\x3b\x46\x45\x37\x3e\x43\x36\x3e\x45\x33\x40\x44\x36\x3c\x3f\ \x31\x32\x30\x31\x32\x2f\x3b\x41\x43\x3c\x3e\x3d\x32\x3b\x3b\x30\ \x38\x38\x36\x39\x3b\x41\x4b\x4e\x47\x55\x5a\x41\x47\x48\x3b\x45\ \x48\x39\x41\x49\x43\x47\x4e\x3f\x4e\x53\x3f\x4d\x50\x36\x3f\x43\ \x3f\x44\x49\x40\x46\x47\x36\x39\x38\x2f\x34\x30\x30\x36\x34\x2c\ \x32\x32\x2d\x30\x30\x2b\x32\x34\x31\x35\x37\x2b\x31\x33\x2b\x31\ \x31\x33\x39\x3d\x36\x43\x43\x34\x45\x46\x3b\x4a\x4c\x36\x43\x44\ \x3a\x46\x49\x39\x42\x49\x34\x3a\x39\x2d\x32\x31\x32\x35\x34\x34\ \x38\x37\x33\x3b\x3d\x31\x3a\x3a\x42\x47\x44\x39\x41\x44\x42\x4b\ \x4f\x39\x47\x4a\x34\x40\x42\x33\x3d\x3c\x2e\x3a\x37\x3b\x47\x45\ \x3d\x48\x47\x39\x40\x3e\x37\x3e\x3e\x3e\x46\x46\x42\x45\x4a\x35\ \x3f\x3d\x46\x50\x53\x46\x50\x52\x3d\x46\x48\x3e\x45\x43\x49\x4b\ \x4e\x4b\x4f\x53\x44\x4e\x52\x3e\x46\x48\x40\x43\x49\x3c\x40\x44\ \x3a\x3f\x42\x4a\x59\x5f\x39\x42\x46\x3b\x41\x43\x35\x3d\x3a\x34\ \x44\x41\x3c\x45\x49\x3c\x49\x46\x45\x4c\x4d\x3e\x42\x48\x3c\x47\ \x49\x3f\x49\x4e\x39\x47\x47\x42\x4c\x53\x43\x51\x57\x48\x54\x59\ \x3f\x49\x49\x42\x47\x49\x41\x4a\x51\x43\x49\x50\x39\x42\x4b\x35\ \x44\x46\x31\x3b\x3c\x3d\x49\x49\x3a\x48\x4b\x3c\x43\x49\x36\x3c\ \x3f\x35\x3d\x42\x32\x3d\x38\x38\x48\x47\x3b\x4b\x4c\x44\x52\x57\ \x3d\x48\x4a\x3c\x4d\x4d\x36\x39\x39\x36\x3d\x3f\x3b\x43\x41\x39\ \x43\x43\x3a\x45\x45\x35\x3e\x3f\x32\x38\x39\x39\x40\x42\x3b\x47\ \x51\x38\x46\x4f\x3a\x3e\x42\x39\x43\x46\x32\x38\x3a\x3f\x4b\x53\ \x3a\x4b\x57\x3b\x46\x4b\x36\x3d\x42\x31\x3a\x3c\x38\x44\x48\x38\ \x44\x47\x36\x3c\x3a\x30\x3a\x3b\x31\x3a\x38\x3b\x42\x4c\x34\x3e\ \x44\x30\x37\x38\x32\x3c\x3e\x3c\x4e\x54\x41\x55\x5e\x3e\x49\x4b\ \x3a\x45\x42\x3e\x49\x4b\x45\x53\x53\x46\x50\x51\x47\x4d\x51\x42\ \x4b\x50\x00\x00\x00\x92\xb5\xcf\xbc\xdd\xf0\x91\xbd\xdc\x73\x9d\ \xc5\x8d\xb7\xd6\x95\xc3\xdc\x4d\x76\xa1\x48\x6f\x93\x42\x5c\x7b\ \x34\x4e\x64\x52\x71\x88\x47\x5d\x6e\x55\x66\x71\x54\x6c\x7c\x57\ \x6f\x7e\x72\x7e\x8a\x50\x66\x70\x59\x69\x74\x4c\x57\x6b\x4b\x56\ \x5a\x4b\x4f\x50\x45\x4a\x50\x34\x40\x41\x33\x34\x34\x34\x40\x44\ \x35\x42\x46\x2d\x34\x34\x3a\x42\x47\x32\x3e\x3e\x3a\x3d\x3f\x32\ \x3b\x32\x33\x2f\x32\x33\x38\x31\x30\x39\x35\x36\x46\x46\x3a\x4b\ \x4a\x3f\x47\x4a\x35\x39\x36\x36\x3b\x39\x3a\x3f\x46\x3f\x46\x48\ \x3b\x40\x3f\x3f\x45\x43\x3f\x47\x44\x3a\x41\x42\x3e\x42\x45\x36\ \x41\x3f\x41\x44\x4a\x40\x45\x48\x39\x47\x46\x3e\x43\x41\x3b\x43\ \x47\x40\x44\x4a\x3e\x49\x48\x3e\x44\x46\x3c\x44\x45\x34\x3b\x3c\ \x33\x3a\x3e\x34\x3b\x3b\x2e\x34\x36\x2f\x33\x32\x34\x44\x47\x31\ \x3f\x3e\x39\x41\x41\x3f\x51\x58\x36\x45\x41\x3c\x43\x43\x3f\x42\ \x46\x44\x4d\x53\x47\x55\x59\x41\x43\x46\x3c\x42\x43\x39\x42\x43\ \x3f\x4b\x4f\x43\x51\x59\x3c\x49\x48\x47\x56\x59\x47\x55\x5b\x46\ \x4b\x4b\x48\x52\x53\x45\x4d\x50\x3b\x41\x3d\x43\x4a\x4d\x3e\x4b\ \x53\x35\x3f\x3f\x39\x45\x44\x3f\x4e\x4f\x41\x4c\x4e\x3c\x40\x46\ \x38\x41\x40\x3b\x44\x47\x42\x4d\x4f\x44\x4d\x52\x43\x52\x57\x40\ \x51\x54\x44\x4d\x4e\x42\x47\x4f\x3e\x43\x46\x42\x4e\x52\x42\x4d\ \x55\x46\x56\x5d\x3d\x44\x49\x3e\x45\x4c\x35\x3c\x3b\x33\x31\x33\ \x32\x3b\x36\x31\x3b\x3c\x42\x4c\x4f\x3e\x49\x4a\x3e\x4a\x4f\x3d\ \x44\x4a\x3b\x45\x4a\x3b\x4a\x49\x3e\x50\x52\x36\x3e\x41\x3b\x48\ \x4a\x40\x44\x47\x3b\x49\x4c\x3c\x42\x3f\x3e\x48\x4c\x32\x3b\x3f\ \x36\x45\x48\x39\x45\x49\x3b\x4c\x50\x3c\x42\x46\x33\x35\x3c\x38\ \x40\x49\x39\x43\x47\x3f\x4b\x4f\x43\x4c\x4d\x37\x40\x46\x30\x39\ \x38\x2e\x35\x34\x34\x3f\x3f\x3e\x49\x4c\x39\x46\x48\x30\x34\x3c\ \x36\x3b\x41\x35\x45\x48\x3e\x4a\x4a\x3f\x4e\x54\x39\x42\x48\x2d\ \x34\x36\x36\x40\x3d\x3a\x44\x47\x39\x48\x4c\x31\x3e\x40\x38\x45\ \x47\x41\x4a\x4f\x38\x48\x4f\x34\x3d\x40\x31\x3c\x3c\x3f\x4a\x4c\ \x3d\x49\x4b\x3e\x4d\x50\x34\x3f\x41\x39\x42\x43\x3b\x49\x48\x38\ \x3e\x3f\x37\x3f\x42\x40\x49\x4c\x35\x37\x3d\x33\x38\x37\x00\x00\ \x00\x87\xac\xca\x90\xb3\xd4\xa7\xcc\xe5\xb5\xd8\xee\x9d\xca\xe4\ \x69\x97\xba\x4e\x75\x91\x4d\x72\x8c\x5d\x75\x8b\x4e\x5d\x69\x4b\ \x5c\x6d\x52\x67\x75\x57\x69\x7a\x6b\x79\x85\x58\x68\x74\x58\x62\ \x70\x54\x63\x71\x54\x5f\x70\x48\x54\x60\x4a\x55\x5c\x47\x54\x56\ \x3d\x45\x4f\x44\x58\x65\x39\x4a\x51\x32\x3a\x3b\x37\x3c\x42\x31\ \x39\x3b\x3b\x40\x44\x34\x38\x30\x35\x37\x38\x39\x3c\x3c\x40\x43\ \x46\x41\x46\x44\x3f\x46\x48\x48\x4e\x53\x42\x48\x4b\x47\x4f\x53\ \x3c\x44\x44\x3d\x42\x41\x38\x41\x42\x38\x3a\x38\x37\x3b\x37\x31\ \x38\x39\x3d\x4a\x4b\x39\x47\x49\x37\x42\x44\x3e\x42\x46\x4b\x5c\ \x6b\x3d\x4e\x54\x39\x44\x45\x3f\x47\x49\x3b\x43\x43\x36\x3a\x3a\ \x31\x39\x36\x34\x3c\x37\x3f\x45\x48\x3d\x42\x46\x37\x3f\x43\x36\ \x3f\x3d\x37\x3d\x3e\x39\x3c\x41\x3a\x43\x4a\x2f\x3a\x3c\x2f\x37\ \x34\x2c\x32\x33\x32\x38\x3a\x34\x3d\x41\x32\x39\x38\x31\x38\x3c\ \x36\x44\x49\x3b\x47\x4e\x3e\x49\x48\x35\x3e\x3e\x3c\x48\x4d\x33\ \x3f\x3f\x3a\x40\x40\x47\x4a\x4f\x35\x3c\x3d\x3c\x44\x46\x3c\x43\ \x44\x3f\x4b\x4a\x40\x4e\x4f\x43\x4c\x4f\x41\x4a\x4e\x48\x54\x59\ \x48\x4f\x51\x39\x40\x40\x44\x4f\x56\x47\x52\x57\x4c\x58\x63\x3c\ \x45\x4b\x38\x45\x4f\x3f\x4f\x4d\x3f\x4d\x51\x33\x3f\x42\x33\x3b\ \x3c\x3b\x41\x45\x3b\x47\x47\x41\x4e\x51\x3a\x43\x46\x31\x39\x38\ \x2a\x2f\x31\x39\x3f\x47\x45\x4e\x50\x46\x50\x50\x3c\x45\x45\x43\ \x4f\x59\x3c\x4e\x5a\x3b\x49\x49\x34\x42\x40\x33\x45\x45\x31\x3f\ \x46\x32\x3d\x48\x36\x41\x46\x3b\x43\x46\x42\x50\x56\x40\x4c\x52\ \x31\x38\x38\x30\x3b\x3f\x3f\x47\x4c\x3b\x41\x45\x3d\x4a\x4e\x44\ \x4f\x53\x38\x45\x46\x32\x3b\x36\x3a\x46\x4b\x33\x43\x47\x2e\x38\ \x3a\x34\x3d\x3c\x32\x37\x36\x3d\x43\x44\x40\x49\x4b\x3a\x47\x49\ \x3c\x4b\x4d\x37\x3f\x42\x35\x3f\x3c\x3d\x49\x4f\x37\x41\x45\x44\ \x56\x5e\x3e\x42\x46\x38\x3b\x3e\x31\x38\x35\x38\x47\x4a\x32\x40\ \x40\x37\x45\x4a\x37\x4b\x50\x3b\x47\x4d\x41\x4a\x4e\x3b\x43\x44\ \x31\x3e\x42\x33\x3c\x40\x32\x3b\x40\x2f\x3b\x3c\x35\x3d\x42\x32\ \x35\x37\x33\x42\x43\x3b\x42\x47\x33\x37\x37\x39\x3c\x3e\x42\x4c\ \x4f\x3c\x47\x4b\x35\x41\x44\x47\x57\x5d\x00\x00\x00\xa3\xc5\xe1\ \xbc\xdd\xf0\xb9\xdc\xee\x9e\xc7\xda\x7f\xa7\xc1\x3d\x53\x67\x46\ \x61\x75\x46\x5f\x76\x5e\x7b\x8e\x6d\x80\x90\x73\x81\x8b\x52\x63\ \x72\x56\x6b\x7b\x68\x75\x81\x59\x69\x78\x54\x58\x60\x4c\x57\x5d\ \x3b\x48\x51\x48\x4d\x54\x43\x52\x5c\x4b\x5d\x68\x36\x42\x49\x33\ \x3d\x40\x37\x3d\x41\x37\x41\x43\x40\x4e\x4f\x35\x3c\x39\x39\x3b\ \x3a\x3a\x3f\x3f\x3e\x41\x3f\x38\x3c\x3d\x35\x3a\x3b\x39\x3b\x3c\ \x34\x37\x39\x35\x3a\x36\x33\x3a\x39\x36\x3a\x3c\x34\x39\x37\x3b\ \x3d\x3e\x3a\x3f\x3c\x3b\x42\x3f\x3b\x42\x40\x37\x3b\x3d\x37\x3f\ \x42\x39\x43\x46\x35\x3c\x3e\x42\x43\x50\x38\x46\x5b\x4c\x60\x76\ \x35\x3f\x3e\x31\x38\x39\x3a\x3d\x3c\x3f\x49\x4a\x36\x41\x3a\x36\ \x3b\x39\x2d\x32\x30\x32\x34\x32\x30\x32\x34\x31\x3d\x3a\x35\x3c\ \x3d\x3c\x3f\x41\x3c\x43\x47\x3c\x47\x47\x3a\x3f\x41\x39\x45\x48\ \x38\x4d\x52\x37\x42\x44\x3d\x47\x4b\x36\x45\x49\x37\x46\x4b\x3d\ \x47\x4d\x3b\x3f\x44\x3e\x47\x45\x46\x50\x56\x41\x50\x4e\x41\x4a\ \x4f\x37\x42\x44\x3a\x3f\x44\x3a\x40\x40\x3e\x45\x46\x3c\x3f\x41\ \x30\x38\x38\x33\x38\x39\x39\x43\x45\x37\x42\x3d\x39\x42\x46\x3a\ \x45\x44\x40\x4b\x4b\x42\x4f\x56\x3d\x4a\x53\x3d\x47\x49\x51\x58\ \x5f\x49\x54\x63\x3c\x46\x46\x4c\x5b\x63\x43\x53\x57\x42\x53\x58\ \x41\x4d\x54\x41\x49\x52\x3a\x3f\x41\x3f\x45\x4a\x42\x4c\x51\x3e\ \x48\x4d\x36\x3c\x41\x30\x3a\x3d\x36\x42\x45\x3d\x48\x4c\x38\x40\ \x42\x3a\x3f\x41\x46\x50\x57\x40\x50\x55\x40\x51\x5a\x3f\x4b\x51\ \x3b\x52\x58\x43\x4d\x54\x40\x46\x4a\x2d\x35\x35\x3d\x46\x45\x3b\ \x43\x44\x34\x3c\x3c\x34\x42\x43\x3b\x44\x42\x31\x34\x33\x29\x31\ \x2f\x2f\x33\x36\x38\x44\x49\x43\x53\x59\x39\x46\x4d\x36\x3c\x41\ \x3c\x44\x4b\x3e\x49\x4f\x38\x3e\x3b\x35\x3e\x3d\x34\x41\x42\x3b\ \x42\x44\x40\x50\x53\x39\x49\x45\x33\x42\x42\x30\x3b\x38\x35\x40\ \x45\x3c\x4d\x53\x42\x53\x57\x3f\x4a\x50\x3f\x49\x4b\x3b\x4a\x4e\ \x30\x38\x38\x3b\x3d\x44\x30\x34\x34\x30\x35\x36\x34\x3e\x3d\x43\ \x56\x5e\x3f\x51\x5a\x3c\x4f\x52\x41\x47\x51\x39\x3f\x3f\x33\x3d\ \x40\x38\x3d\x3d\x41\x4d\x50\x45\x50\x50\x44\x4d\x4f\x3f\x43\x48\ \x42\x4d\x53\x46\x54\x57\x00\x00\x00\xb0\xd7\xea\xae\xd2\xe4\x9a\ \xbd\xd2\x76\x9d\xb3\x51\x73\x85\x51\x64\x79\x5d\x76\x89\x54\x6f\ \x82\x64\x83\x92\x59\x6f\x7e\x57\x68\x75\x5e\x70\x7a\x4e\x64\x6e\ \x5b\x6e\x7b\x4e\x56\x5c\x3f\x4a\x4d\x4a\x55\x5b\x3f\x4d\x54\x48\ \x58\x5d\x3a\x45\x51\x37\x3e\x45\x3c\x3e\x43\x3f\x49\x4c\x32\x39\ \x36\x38\x42\x42\x3c\x46\x4d\x42\x48\x50\x39\x40\x3d\x37\x40\x43\ \x3d\x45\x47\x3d\x45\x44\x3d\x44\x45\x3a\x43\x47\x41\x4a\x4b\x3e\ \x44\x46\x3f\x46\x45\x3d\x45\x4a\x38\x3e\x3c\x36\x3a\x3a\x3d\x3e\ \x43\x3f\x42\x47\x34\x3d\x3c\x39\x44\x49\x37\x42\x44\x37\x45\x49\ \x3f\x4c\x57\x45\x5a\x6c\x37\x45\x58\x45\x5c\x72\x51\x6c\x86\x48\ \x5a\x62\x3b\x46\x46\x44\x4d\x52\x3c\x43\x43\x35\x3c\x3c\x3f\x47\ \x4b\x41\x48\x46\x40\x48\x49\x3e\x49\x47\x34\x3a\x37\x34\x38\x35\ \x39\x41\x42\x3a\x41\x41\x33\x3b\x39\x36\x3e\x42\x38\x3f\x3c\x3a\ \x41\x43\x44\x50\x54\x40\x48\x4d\x47\x52\x5b\x3c\x42\x41\x3e\x47\ \x47\x35\x41\x43\x39\x41\x42\x2f\x3a\x3b\x37\x3e\x3c\x41\x49\x4d\ \x42\x50\x58\x49\x55\x5a\x40\x4a\x4f\x42\x48\x4b\x46\x4e\x52\x47\ \x53\x53\x41\x4f\x51\x44\x54\x5a\x41\x48\x4b\x45\x4c\x51\x42\x4e\ \x4f\x3e\x4a\x4f\x38\x42\x44\x31\x38\x3c\x38\x3f\x46\x3c\x43\x4c\ \x33\x41\x41\x3b\x3f\x42\x40\x45\x46\x4a\x5a\x60\x44\x56\x5a\x43\ \x55\x56\x37\x42\x45\x3b\x48\x4c\x3f\x4e\x50\x3f\x4d\x56\x35\x3a\ \x38\x46\x58\x61\x38\x47\x4d\x38\x47\x4e\x3d\x46\x47\x31\x3a\x3a\ \x30\x3b\x39\x33\x3d\x3a\x35\x3f\x3e\x3c\x47\x48\x3f\x4d\x57\x2f\ \x38\x3b\x2e\x39\x3a\x38\x40\x42\x38\x47\x48\x47\x54\x55\x3d\x4e\ \x4e\x3d\x48\x4d\x39\x43\x44\x43\x50\x53\x3a\x44\x47\x36\x41\x42\ \x38\x42\x42\x36\x40\x3f\x34\x3d\x41\x41\x47\x4a\x3b\x40\x46\x46\ \x52\x58\x48\x57\x5c\x3f\x4d\x54\x41\x51\x55\x44\x53\x59\x3c\x49\ \x50\x3a\x45\x4b\x3d\x53\x58\x40\x4a\x52\x34\x3e\x43\x39\x42\x46\ \x40\x4b\x50\x37\x41\x48\x40\x4d\x4f\x3d\x4d\x50\x44\x4e\x55\x3c\ \x46\x4e\x3b\x44\x43\x44\x53\x56\x3e\x4b\x4d\x34\x3b\x3f\x3d\x49\ \x50\x3f\x4e\x53\x38\x3b\x3f\x37\x3d\x40\x41\x49\x4f\x3d\x44\x48\ \x40\x4e\x54\x3c\x44\x46\x2e\x38\x35\x39\x40\x3f\x38\x40\x3f\x30\ \x35\x36\x00\x00\x00\x9e\xc4\xda\xa1\xc4\xd8\x8b\xb2\xc5\x57\x77\ \x91\x50\x6d\x7e\x4e\x66\x77\x5d\x78\x8a\x56\x71\x84\x53\x6a\x78\ \x41\x53\x62\x3d\x4a\x4e\x4b\x59\x64\x60\x76\x84\x4c\x61\x6b\x47\ \x50\x58\x48\x5e\x6a\x43\x5a\x69\x43\x5b\x60\x3c\x4d\x54\x3a\x44\ \x48\x36\x3b\x40\x36\x41\x44\x32\x39\x34\x33\x36\x39\x33\x37\x37\ \x37\x3b\x3a\x37\x3c\x3d\x36\x39\x39\x3b\x42\x40\x3a\x42\x43\x39\ \x40\x42\x39\x40\x3e\x46\x49\x4e\x42\x47\x48\x44\x4a\x4b\x3d\x42\ \x45\x3d\x45\x47\x48\x4d\x50\x46\x49\x4c\x38\x40\x3f\x33\x3b\x3d\ \x35\x40\x43\x3d\x45\x4b\x3d\x45\x4c\x41\x4d\x5c\x3b\x4a\x59\x3a\ \x46\x50\x3f\x45\x4c\x41\x4b\x55\x40\x4d\x57\x47\x5e\x6d\x43\x5b\ \x67\x36\x47\x44\x35\x3e\x3f\x34\x3c\x3b\x38\x3d\x41\x32\x3d\x3b\ \x32\x36\x37\x31\x33\x33\x33\x3b\x3c\x3f\x43\x4a\x3e\x4a\x49\x38\ \x40\x42\x33\x37\x38\x35\x3a\x3c\x33\x38\x37\x36\x3c\x3e\x38\x3e\ \x3e\x33\x38\x38\x30\x39\x38\x2f\x35\x36\x39\x40\x3b\x3a\x45\x48\ \x4a\x56\x5d\x40\x4c\x4c\x47\x54\x55\x45\x53\x56\x3e\x49\x49\x33\ \x3a\x3d\x39\x43\x48\x3a\x46\x44\x3d\x42\x44\x3a\x3f\x3f\x3e\x49\ \x4b\x3a\x47\x49\x30\x39\x3b\x36\x42\x44\x33\x3c\x3f\x37\x3e\x42\ \x3b\x45\x48\x42\x57\x5a\x44\x53\x55\x33\x3e\x3b\x3e\x44\x46\x3f\ \x4c\x4f\x3d\x47\x4b\x3a\x3c\x3c\x35\x43\x46\x2f\x32\x32\x3a\x40\ \x41\x42\x4c\x4e\x3f\x4c\x50\x30\x3a\x3d\x3e\x46\x4d\x46\x5a\x5d\ \x47\x55\x5e\x46\x53\x58\x33\x40\x43\x35\x49\x4b\x3f\x4b\x52\x3f\ \x48\x4a\x32\x39\x3e\x39\x46\x44\x38\x3f\x41\x3e\x48\x4f\x41\x52\ \x58\x43\x50\x55\x3a\x48\x48\x41\x4b\x50\x37\x44\x46\x32\x3d\x3d\ \x36\x40\x3d\x3a\x45\x4a\x38\x4c\x51\x3b\x43\x46\x41\x45\x49\x42\ \x4c\x50\x37\x3f\x42\x38\x41\x41\x39\x40\x44\x3d\x4c\x4f\x3f\x4a\ \x51\x33\x3c\x43\x33\x3a\x41\x3b\x46\x4d\x3a\x3e\x44\x36\x45\x47\ \x39\x42\x4a\x40\x52\x5b\x46\x57\x5d\x3c\x4b\x50\x3e\x49\x4b\x33\ \x3c\x42\x2c\x35\x33\x3b\x44\x48\x36\x3f\x41\x2d\x34\x31\x35\x3c\ \x3b\x38\x40\x41\x37\x39\x3a\x3a\x3d\x42\x32\x3e\x41\x30\x35\x33\ \x32\x3a\x3c\x3d\x45\x4a\x3d\x4a\x50\x3c\x49\x4c\x3c\x44\x4a\x37\ \x3f\x45\x3a\x45\x48\x3b\x43\x49\x36\x42\x46\x33\x3d\x45\x00\x00\ \x00\x9d\xc3\xdd\x95\xbd\xd3\x5e\x86\xa1\x58\x74\x8f\x50\x6c\x83\ \x4f\x66\x7a\x52\x6b\x80\x60\x7d\x92\x5b\x73\x81\x35\x46\x51\x4f\ \x60\x70\x4f\x5e\x6b\x42\x57\x65\x3c\x4e\x5a\x4e\x5b\x6c\x39\x4a\ \x51\x3d\x47\x4d\x3c\x45\x48\x3a\x3e\x43\x3f\x45\x4b\x3f\x4e\x4f\ \x3e\x46\x46\x3c\x44\x43\x3d\x3f\x41\x40\x47\x4e\x3d\x4b\x4a\x3b\ \x49\x4b\x44\x52\x57\x45\x52\x56\x43\x4b\x4d\x45\x4d\x4f\x3c\x45\ \x45\x3a\x42\x43\x3a\x48\x48\x3c\x47\x48\x3e\x43\x43\x44\x45\x48\ \x38\x3f\x3e\x36\x38\x3b\x35\x3f\x3f\x3a\x46\x46\x36\x43\x44\x3e\ \x4f\x5a\x40\x4f\x66\x3b\x3f\x51\x3c\x46\x4c\x3a\x45\x49\x3c\x42\ \x49\x3b\x48\x50\x3a\x44\x4d\x3b\x46\x4f\x47\x5c\x6e\x49\x5f\x72\ \x4a\x5d\x66\x44\x51\x56\x45\x4c\x51\x43\x4b\x4b\x3c\x42\x41\x3e\ \x46\x48\x3a\x42\x42\x37\x3c\x3c\x34\x3a\x38\x3a\x3d\x3e\x37\x41\ \x40\x3e\x49\x4a\x3f\x42\x42\x3f\x46\x45\x33\x39\x35\x40\x43\x46\ \x41\x4b\x4a\x41\x49\x4c\x44\x51\x58\x48\x52\x54\x43\x4c\x48\x3d\ \x48\x46\x39\x42\x46\x37\x3e\x47\x3b\x44\x46\x3b\x49\x51\x3a\x47\ \x4e\x36\x3c\x37\x3b\x45\x45\x43\x4d\x51\x33\x3d\x3a\x2c\x37\x33\ \x42\x4b\x53\x3c\x48\x4b\x4b\x50\x51\x3c\x3e\x40\x40\x47\x4d\x40\ \x47\x4a\x44\x43\x48\x43\x48\x47\x3e\x47\x48\x40\x47\x4b\x3f\x47\ \x4b\x41\x46\x48\x39\x41\x42\x3e\x43\x44\x34\x43\x40\x2e\x37\x39\ \x34\x3d\x41\x37\x48\x46\x3b\x46\x45\x34\x3c\x40\x2f\x38\x39\x32\ \x3b\x3d\x34\x40\x44\x3d\x49\x53\x3c\x43\x46\x2f\x39\x38\x37\x40\ \x42\x39\x44\x45\x3e\x40\x43\x3f\x40\x44\x3f\x4e\x55\x32\x3b\x3d\ \x2c\x32\x33\x2b\x33\x31\x35\x3f\x43\x31\x39\x3b\x2d\x39\x36\x39\ \x48\x4c\x3e\x4c\x52\x39\x40\x3f\x41\x4e\x54\x40\x45\x4c\x3f\x4c\ \x4e\x47\x59\x5f\x40\x4b\x4f\x44\x53\x59\x3c\x4a\x4d\x37\x40\x3f\ \x3e\x50\x56\x35\x3f\x44\x2c\x36\x37\x37\x43\x43\x30\x39\x36\x37\ \x40\x44\x31\x39\x38\x33\x3c\x3d\x32\x37\x38\x2e\x3a\x38\x3d\x4b\ \x52\x45\x4e\x54\x39\x42\x43\x3d\x4c\x51\x4f\x5a\x60\x36\x41\x41\ \x35\x42\x42\x43\x55\x5c\x45\x54\x5c\x3c\x4c\x50\x48\x59\x62\x3d\ \x4b\x52\x40\x4e\x54\x41\x4f\x56\x37\x3e\x3d\x37\x40\x43\x3c\x46\ \x47\x2e\x3c\x3a\x3b\x4d\x51\x3e\x4e\x50\x00\x00\x00\x89\xaf\xd0\ \x61\x85\xa4\x51\x74\x95\x56\x79\x8e\x57\x73\x84\x58\x73\x89\x57\ \x76\x89\x5f\x75\x82\x47\x5b\x67\x46\x59\x66\x55\x69\x79\x54\x67\ \x74\x3d\x4f\x55\x36\x3e\x46\x3f\x4a\x54\x3b\x43\x45\x38\x44\x48\ \x33\x3e\x40\x3d\x47\x4d\x3a\x44\x46\x35\x3e\x3c\x34\x3a\x39\x36\ \x36\x39\x47\x4b\x51\x46\x4f\x59\x41\x46\x46\x3f\x45\x4d\x3d\x46\ \x48\x3f\x4c\x4c\x47\x4d\x4f\x3f\x47\x4b\x39\x41\x42\x37\x3f\x46\ \x3c\x47\x49\x3a\x3f\x43\x38\x3c\x3d\x36\x36\x3a\x3e\x44\x4b\x42\ \x4c\x53\x40\x4b\x50\x4b\x57\x6a\x43\x5c\x6f\x3c\x49\x55\x3d\x43\ \x47\x41\x46\x4d\x41\x49\x50\x3a\x41\x48\x3b\x48\x4d\x3f\x4b\x4a\ \x3c\x46\x48\x3f\x45\x48\x3f\x4e\x57\x48\x55\x6b\x47\x64\x7a\x4a\ \x5e\x72\x45\x53\x57\x3d\x44\x45\x3d\x3f\x41\x37\x40\x44\x33\x39\ \x39\x36\x36\x3b\x3a\x40\x44\x32\x37\x36\x39\x42\x43\x3a\x3f\x43\ \x36\x3e\x3c\x34\x3d\x38\x3d\x45\x49\x44\x48\x4e\x3b\x41\x44\x3d\ \x41\x40\x3a\x41\x45\x3c\x44\x45\x32\x36\x3a\x34\x3e\x3c\x3b\x48\ \x4c\x34\x3d\x41\x31\x3a\x3b\x38\x40\x43\x3a\x44\x40\x3f\x49\x46\ \x3e\x48\x4c\x35\x41\x43\x3c\x46\x47\x3e\x4a\x4f\x41\x56\x5a\x43\ \x4d\x4f\x3a\x42\x41\x37\x42\x42\x3d\x43\x42\x31\x37\x35\x30\x32\ \x35\x34\x36\x37\x34\x39\x36\x39\x43\x42\x45\x4f\x56\x35\x42\x42\ \x36\x3c\x38\x3d\x43\x46\x39\x46\x44\x42\x4f\x55\x3e\x4b\x50\x3c\ \x4b\x4e\x30\x41\x42\x3f\x54\x60\x3f\x4f\x58\x39\x46\x4b\x3d\x4a\ \x4d\x3a\x44\x49\x35\x3d\x42\x3c\x4a\x51\x3d\x46\x50\x37\x42\x45\ \x36\x40\x3c\x30\x3b\x3f\x2f\x37\x3c\x38\x47\x4e\x38\x3e\x3e\x38\ \x48\x49\x3d\x4b\x51\x3c\x43\x46\x3e\x4a\x4a\x38\x47\x4d\x34\x3e\ \x3d\x36\x45\x44\x44\x4e\x52\x37\x44\x49\x3c\x43\x4c\x36\x3f\x43\ \x2e\x36\x32\x2c\x37\x35\x34\x41\x3d\x38\x48\x49\x2d\x36\x33\x3f\ \x4e\x52\x42\x50\x57\x3c\x46\x47\x46\x53\x55\x40\x4b\x52\x3d\x48\ \x4c\x45\x4e\x56\x3a\x45\x47\x40\x4f\x56\x47\x54\x5e\x35\x41\x43\ \x2f\x3b\x3e\x3e\x47\x4c\x37\x3b\x41\x30\x38\x3c\x34\x3e\x40\x38\ \x43\x48\x35\x3b\x3d\x38\x47\x4a\x37\x3e\x42\x35\x3c\x3d\x34\x3d\ \x40\x34\x3a\x3b\x31\x38\x38\x3c\x49\x51\x35\x40\x45\x3b\x47\x43\ \x3f\x4d\x51\x39\x45\x44\x00\x00\x00\x50\x73\x91\x47\x63\x82\x5a\ \x7c\x90\x5f\x78\x8a\x5c\x74\x84\x50\x69\x7a\x5c\x72\x85\x4b\x59\ \x62\x4b\x56\x59\x55\x67\x72\x54\x67\x73\x4c\x5a\x6f\x4a\x59\x60\ \x3f\x44\x4b\x35\x40\x3e\x35\x3d\x3b\x35\x3f\x45\x37\x3d\x3b\x3c\ \x3e\x3e\x35\x3b\x38\x3f\x44\x40\x45\x4d\x53\x3e\x42\x42\x4b\x53\ \x56\x45\x4e\x52\x40\x48\x4a\x3c\x45\x44\x3d\x44\x48\x3c\x3e\x41\ \x3a\x40\x3a\x41\x4a\x48\x43\x48\x4a\x45\x4e\x52\x3c\x45\x45\x3a\ \x40\x41\x40\x49\x4e\x42\x4b\x53\x4a\x5c\x68\x4e\x6a\x7e\x4e\x6c\ \x83\x47\x66\x7f\x3e\x44\x51\x3d\x48\x4e\x3f\x46\x4c\x3c\x41\x44\ \x41\x48\x4b\x43\x4a\x4f\x3c\x46\x48\x3f\x46\x47\x41\x46\x46\x3f\ \x46\x48\x3b\x46\x49\x41\x4d\x57\x40\x51\x5f\x44\x55\x6b\x4e\x68\ \x81\x4d\x62\x76\x3d\x51\x56\x34\x3e\x41\x3e\x46\x48\x34\x3e\x40\ \x33\x3b\x3c\x3e\x49\x47\x3b\x4b\x44\x38\x42\x40\x40\x49\x49\x3b\ \x41\x41\x37\x42\x42\x3f\x48\x4b\x34\x3b\x3c\x3f\x4b\x4a\x36\x3e\ \x41\x35\x42\x40\x3e\x49\x4f\x3c\x4b\x4d\x3c\x45\x47\x48\x58\x60\ \x47\x52\x5b\x3e\x48\x49\x3b\x40\x3f\x43\x4b\x53\x42\x4e\x51\x38\ \x3f\x40\x3f\x48\x4b\x39\x48\x4e\x42\x52\x56\x35\x40\x3e\x3c\x4a\ \x4c\x3a\x44\x46\x37\x44\x49\x3f\x46\x49\x41\x4c\x55\x40\x4e\x52\ \x3a\x40\x42\x38\x46\x4a\x30\x38\x3b\x2e\x37\x37\x43\x4e\x4d\x45\ \x50\x5b\x41\x4d\x4c\x38\x42\x41\x34\x3b\x3a\x36\x3d\x3c\x3c\x46\ \x4b\x46\x52\x5f\x45\x55\x5b\x42\x49\x51\x3f\x4f\x57\x46\x56\x5f\ \x3a\x48\x4d\x31\x3a\x35\x29\x34\x32\x33\x39\x39\x37\x3f\x44\x34\ \x43\x46\x36\x3e\x43\x34\x41\x46\x34\x3b\x3e\x32\x3d\x3e\x33\x3a\ \x3c\x2b\x38\x37\x2e\x32\x35\x2e\x36\x35\x30\x3a\x3a\x3d\x4c\x51\ \x3f\x4b\x4a\x32\x38\x3e\x35\x44\x47\x2e\x36\x37\x32\x3e\x40\x3f\ \x53\x5a\x41\x55\x5a\x3f\x49\x4c\x3a\x45\x4a\x40\x4b\x50\x38\x44\ \x45\x38\x43\x43\x37\x3e\x45\x33\x3b\x40\x3d\x43\x44\x31\x3c\x3c\ \x38\x43\x46\x37\x45\x43\x31\x39\x3b\x3b\x46\x51\x3b\x4d\x56\x36\ \x43\x4a\x3c\x4c\x4c\x42\x4d\x4c\x4c\x5d\x67\x43\x50\x55\x40\x49\ \x4c\x45\x4f\x55\x35\x3e\x3f\x42\x52\x5c\x42\x4e\x56\x3c\x45\x49\ \x3a\x48\x48\x36\x45\x41\x2e\x3a\x38\x3c\x4b\x4e\x37\x45\x44\x34\ \x41\x3f\x00\x00\x00\x45\x5e\x79\x4c\x63\x7a\x56\x74\x8a\x5d\x71\ \x83\x4a\x64\x75\x55\x6f\x82\x53\x6c\x79\x42\x51\x5e\x45\x55\x5e\ \x4d\x5f\x6c\x4b\x5a\x68\x3c\x4d\x53\x3a\x40\x46\x3e\x44\x4a\x42\ \x4c\x50\x3b\x46\x47\x3e\x4b\x4c\x41\x46\x46\x3c\x42\x43\x3c\x41\ \x43\x42\x4a\x4b\x44\x4f\x54\x3c\x44\x42\x42\x47\x49\x42\x47\x4c\ \x49\x4f\x55\x47\x4f\x52\x3f\x44\x44\x44\x4a\x4b\x47\x4d\x51\x40\ \x47\x45\x38\x39\x3b\x37\x3f\x3f\x3f\x48\x49\x41\x4a\x4d\x41\x50\ \x61\x55\x73\x92\x5d\x8d\xac\x50\x79\x94\x49\x5f\x6e\x47\x50\x5e\ \x41\x4e\x56\x42\x4a\x4d\x42\x4e\x50\x48\x4d\x52\x42\x49\x51\x42\ \x47\x4f\x48\x4c\x4f\x43\x49\x4f\x43\x4b\x4f\x44\x4d\x53\x40\x49\ \x4a\x3b\x48\x4c\x3d\x47\x4f\x3e\x49\x53\x41\x47\x55\x51\x69\x83\ \x4e\x71\x8e\x3c\x4e\x61\x43\x4e\x5d\x3b\x48\x51\x42\x4d\x50\x3c\ \x44\x44\x39\x46\x49\x36\x42\x3e\x38\x43\x44\x3f\x45\x41\x3e\x48\ \x45\x36\x41\x41\x38\x44\x45\x3e\x47\x49\x3f\x49\x48\x3c\x46\x43\ \x36\x42\x42\x32\x39\x38\x36\x3e\x40\x38\x46\x4b\x35\x43\x4a\x39\ \x44\x4b\x3c\x43\x45\x43\x51\x5a\x2f\x39\x38\x2f\x37\x38\x3b\x47\ \x4a\x37\x47\x49\x31\x38\x3c\x38\x40\x44\x38\x46\x4a\x39\x47\x48\ \x35\x47\x4f\x38\x42\x4c\x3a\x43\x4a\x35\x40\x40\x37\x3c\x3f\x3c\ \x3c\x41\x3d\x46\x4a\x3b\x49\x4d\x4b\x56\x5a\x3d\x41\x46\x36\x37\ \x3e\x3c\x45\x45\x3b\x47\x45\x3b\x44\x49\x3b\x45\x46\x39\x47\x46\ \x38\x3e\x43\x35\x3d\x39\x37\x3f\x42\x37\x3f\x3f\x34\x36\x39\x3d\ \x48\x4b\x3b\x4f\x53\x3d\x4a\x4e\x42\x50\x5b\x48\x53\x5c\x35\x42\ \x3e\x3b\x4c\x4b\x3c\x4a\x4c\x3b\x46\x4b\x31\x37\x3c\x38\x42\x4b\ \x38\x40\x42\x41\x4b\x50\x42\x4c\x52\x3f\x46\x49\x30\x36\x37\x3a\ \x41\x3f\x3b\x4e\x52\x40\x4c\x53\x3c\x4d\x53\x36\x40\x46\x30\x3e\ \x3d\x3b\x48\x49\x3f\x4a\x4f\x3c\x4c\x4e\x39\x42\x44\x39\x48\x4e\ \x45\x55\x5e\x54\x65\x68\x3b\x44\x44\x42\x4d\x53\x40\x4d\x54\x57\ \x63\x67\x42\x50\x5e\x43\x4e\x5b\x3d\x46\x4b\x45\x55\x5e\x45\x4c\ \x52\x37\x3f\x46\x3a\x46\x4c\x31\x38\x39\x35\x3f\x3f\x2f\x3a\x37\ \x3b\x47\x4b\x3a\x46\x4d\x33\x3c\x3e\x37\x40\x45\x43\x4e\x4e\x41\ \x4d\x4d\x43\x4f\x53\x40\x46\x4b\x3d\x44\x43\x52\x62\x6a\x00\x00\ \x00\x42\x53\x6e\x38\x4d\x5a\x52\x6c\x7d\x58\x70\x81\x59\x75\x87\ \x5d\x7a\x91\x53\x65\x73\x47\x54\x61\x42\x4f\x5a\x3d\x47\x4e\x3b\ \x42\x46\x3b\x48\x4d\x39\x45\x4a\x47\x56\x62\x40\x4f\x53\x3c\x45\ \x45\x37\x3f\x3e\x45\x4a\x4e\x3d\x46\x46\x3f\x4f\x53\x3c\x47\x4d\ \x39\x40\x42\x3c\x3d\x3e\x44\x47\x49\x3b\x40\x40\x3a\x3d\x3e\x39\ \x41\x40\x3c\x46\x43\x37\x3d\x40\x3a\x3d\x3b\x43\x4b\x4f\x44\x4a\ \x49\x30\x3d\x36\x36\x3b\x38\x36\x3e\x41\x3d\x44\x44\x39\x41\x49\ \x40\x56\x68\x51\x73\x8c\x53\x6b\x87\x4c\x5b\x68\x45\x54\x5e\x45\ \x51\x54\x49\x50\x5b\x4c\x56\x5b\x46\x49\x4f\x42\x49\x4f\x42\x4b\ \x4c\x47\x4c\x53\x3f\x48\x4d\x41\x46\x4b\x42\x4c\x50\x3f\x49\x58\ \x42\x4b\x53\x40\x50\x56\x3f\x4e\x60\x36\x3a\x49\x30\x38\x3d\x3f\ \x49\x51\x35\x41\x42\x39\x3f\x40\x44\x49\x4f\x35\x3a\x3b\x33\x3e\ \x3b\x3c\x41\x41\x3b\x4c\x4d\x47\x5b\x61\x41\x4e\x4f\x41\x4a\x4c\ \x3c\x45\x45\x38\x44\x47\x36\x3f\x3e\x44\x46\x49\x3b\x40\x3f\x42\ \x52\x57\x38\x47\x49\x3b\x49\x4c\x3a\x4a\x4e\x3b\x46\x4a\x3f\x4a\ \x4b\x4a\x54\x5e\x41\x4f\x50\x45\x54\x56\x3b\x45\x4c\x39\x3d\x3f\ \x44\x4c\x4e\x48\x54\x5a\x47\x53\x5a\x47\x4a\x53\x48\x52\x5f\x40\ \x4c\x51\x3d\x48\x4e\x35\x3d\x3e\x3c\x4d\x51\x46\x54\x5c\x3a\x49\ \x4e\x3d\x49\x48\x32\x39\x35\x35\x3b\x3c\x41\x47\x48\x40\x46\x4b\ \x44\x4d\x55\x42\x4b\x53\x49\x52\x5a\x43\x4a\x50\x40\x47\x49\x40\ \x48\x4d\x3b\x42\x46\x36\x42\x42\x45\x4e\x52\x38\x43\x44\x36\x40\ \x44\x39\x3c\x3e\x32\x3b\x3e\x30\x39\x3b\x2d\x34\x32\x3e\x4b\x4c\ \x40\x4e\x52\x32\x38\x39\x48\x53\x57\x40\x47\x4c\x40\x47\x4b\x35\ \x40\x41\x34\x3a\x3f\x2f\x33\x35\x3d\x42\x4a\x3e\x4d\x54\x3d\x49\ \x4a\x30\x35\x33\x2a\x38\x35\x34\x41\x3f\x43\x50\x55\x3c\x48\x4e\ \x36\x42\x41\x32\x38\x3d\x3d\x4a\x51\x3e\x4e\x50\x43\x49\x53\x42\ \x49\x4a\x43\x50\x54\x3f\x4b\x4f\x3c\x46\x45\x3f\x49\x50\x30\x3a\ \x40\x35\x40\x43\x3f\x47\x4e\x3e\x4b\x50\x38\x3f\x3d\x32\x38\x37\ \x38\x45\x47\x3c\x4d\x51\x3a\x47\x4a\x3a\x49\x49\x3e\x50\x53\x3c\ \x4c\x52\x3d\x45\x45\x44\x4f\x50\x3f\x48\x4c\x33\x37\x39\x34\x3a\ \x37\x32\x3a\x38\x44\x4c\x4e\x47\x51\x53\x00\x00\x00\x4b\x5b\x6a\ \x2f\x3a\x41\x32\x39\x47\x4a\x62\x70\x3f\x60\x71\x4e\x64\x75\x3d\ \x4c\x54\x3d\x4b\x4f\x3a\x42\x45\x38\x46\x4a\x3c\x4c\x51\x3d\x53\ \x5a\x43\x55\x59\x3f\x3f\x40\x38\x3e\x3b\x3d\x42\x44\x4c\x56\x55\ \x4a\x4f\x54\x40\x4b\x4a\x40\x4a\x4f\x42\x4c\x4f\x4b\x5c\x62\x41\ \x4b\x4c\x3a\x41\x45\x40\x4a\x49\x44\x4a\x46\x3f\x45\x44\x39\x42\ \x3e\x38\x3e\x3d\x3b\x41\x42\x3d\x44\x47\x45\x4f\x4d\x48\x50\x4f\ \x43\x4c\x4b\x40\x4c\x50\x48\x4d\x4f\x44\x4f\x53\x49\x51\x51\x43\ \x4d\x52\x41\x4c\x5a\x43\x52\x5b\x49\x55\x60\x48\x50\x58\x47\x51\ \x53\x48\x51\x57\x48\x4e\x56\x49\x50\x57\x46\x4a\x51\x41\x49\x4e\ \x3f\x48\x4b\x47\x4b\x50\x40\x48\x4f\x42\x4b\x53\x3e\x4a\x5d\x3c\ \x46\x56\x32\x3a\x3e\x40\x49\x4a\x37\x42\x44\x39\x43\x48\x39\x43\ \x45\x35\x40\x43\x38\x3f\x43\x3d\x44\x4c\x3f\x47\x4a\x3d\x4a\x46\ \x39\x46\x45\x3b\x49\x4d\x31\x3c\x3f\x3f\x45\x42\x3e\x48\x4a\x42\ \x48\x4d\x43\x4d\x4a\x43\x49\x49\x42\x47\x49\x39\x46\x49\x39\x43\ \x49\x3b\x47\x4a\x36\x3f\x45\x3c\x46\x4b\x3c\x46\x49\x3b\x46\x48\ \x37\x42\x3e\x3d\x46\x43\x3f\x48\x4b\x40\x4e\x55\x3f\x47\x4d\x3a\ \x41\x46\x3d\x40\x40\x3a\x42\x43\x30\x3d\x3b\x30\x3e\x3f\x33\x3d\ \x3d\x3e\x4e\x52\x3d\x4e\x52\x39\x4e\x53\x35\x3d\x43\x2f\x3a\x38\ \x3d\x43\x46\x41\x48\x50\x3c\x44\x46\x37\x40\x3e\x3a\x41\x46\x3c\ \x46\x47\x34\x39\x3b\x32\x3e\x40\x34\x3b\x3b\x35\x3d\x3c\x39\x3e\ \x41\x3d\x43\x47\x37\x3f\x3f\x35\x3c\x39\x42\x49\x50\x40\x4e\x51\ \x38\x46\x48\x39\x3f\x40\x33\x41\x41\x2c\x36\x38\x35\x3e\x3f\x35\ \x3b\x3f\x3d\x45\x42\x31\x33\x34\x33\x3b\x3b\x30\x3a\x38\x34\x3d\ \x3e\x3a\x44\x46\x3b\x41\x49\x39\x43\x45\x34\x3a\x3e\x37\x46\x4a\ \x44\x4e\x55\x40\x4c\x52\x37\x3b\x3e\x3d\x40\x41\x39\x43\x42\x3c\ \x46\x48\x34\x3d\x3e\x3d\x44\x47\x36\x38\x3b\x34\x3e\x3e\x45\x52\ \x52\x3b\x49\x4c\x30\x37\x3c\x37\x3e\x40\x3e\x49\x4b\x36\x44\x41\ \x3f\x47\x4c\x37\x3f\x47\x3f\x46\x4c\x3f\x4f\x54\x3e\x4e\x53\x36\ \x40\x41\x34\x39\x41\x36\x3d\x3e\x39\x40\x41\x32\x3b\x3a\x42\x4d\ \x52\x3a\x3f\x45\x39\x43\x44\x43\x4e\x56\x48\x54\x54\x42\x4f\x52\ \x3b\x42\x47\x32\x42\x3f\x00\x00\x00\x47\x5e\x74\x36\x3f\x4b\x46\ \x4f\x54\x41\x57\x69\x35\x4f\x62\x3f\x56\x6b\x3a\x4c\x53\x30\x3d\ \x3c\x39\x44\x46\x36\x43\x44\x3b\x4b\x52\x3a\x4e\x56\x3c\x48\x4e\ \x42\x48\x4a\x40\x4b\x4e\x50\x5b\x5e\x51\x5e\x5e\x3b\x3f\x3b\x46\ \x46\x4a\x3d\x46\x49\x3d\x47\x47\x45\x4a\x4d\x41\x49\x47\x43\x47\ \x45\x41\x46\x48\x3f\x45\x44\x3b\x3d\x3b\x39\x44\x41\x42\x4c\x4f\ \x4c\x52\x56\x3c\x42\x43\x35\x3d\x3a\x34\x35\x32\x34\x37\x35\x3d\ \x42\x43\x43\x4b\x4b\x38\x43\x44\x39\x41\x40\x3a\x40\x3e\x39\x40\ \x43\x3e\x46\x47\x3b\x49\x55\x48\x58\x67\x4e\x5b\x68\x4c\x54\x61\ \x4e\x4e\x5a\x46\x51\x5c\x42\x4b\x54\x3f\x4b\x56\x42\x4d\x50\x4a\ \x52\x62\x44\x51\x6c\x35\x3c\x46\x34\x45\x43\x3a\x50\x5a\x42\x5c\ \x66\x47\x63\x6d\x49\x6b\x7a\x44\x5f\x67\x45\x61\x6e\x3a\x4b\x4f\ \x40\x4c\x52\x3d\x45\x4a\x3c\x41\x43\x34\x3c\x3e\x37\x3e\x41\x3e\ \x48\x49\x38\x42\x40\x3f\x48\x4a\x3a\x45\x45\x38\x40\x40\x3b\x43\ \x48\x3e\x48\x49\x3d\x43\x48\x3d\x45\x47\x41\x4c\x4a\x45\x52\x55\ \x3d\x47\x4c\x37\x41\x43\x37\x44\x43\x3a\x42\x43\x38\x3e\x3d\x38\ \x48\x45\x3a\x41\x45\x37\x40\x3f\x34\x3b\x3e\x33\x3c\x3c\x42\x4b\ \x4e\x43\x49\x4f\x45\x50\x56\x3e\x49\x49\x37\x40\x40\x39\x47\x49\ \x3c\x4b\x54\x3e\x4e\x50\x3c\x44\x47\x42\x4e\x55\x42\x54\x54\x3d\ \x49\x4a\x3e\x4c\x4c\x37\x45\x48\x31\x41\x41\x35\x3e\x3d\x40\x48\ \x4f\x38\x42\x44\x3e\x48\x4e\x3a\x4b\x4b\x41\x47\x49\x42\x4f\x55\ \x3e\x4c\x4f\x35\x44\x41\x31\x37\x34\x35\x39\x3b\x34\x3c\x3a\x34\ \x3d\x3f\x31\x3a\x3b\x2f\x36\x38\x37\x43\x45\x3a\x45\x4e\x33\x3c\ \x3e\x38\x40\x3f\x3f\x49\x4f\x3e\x4c\x4f\x3b\x49\x51\x35\x3f\x48\ \x4b\x52\x54\x34\x38\x3b\x36\x44\x43\x36\x47\x49\x3f\x49\x4b\x3c\ \x43\x43\x32\x37\x35\x34\x3a\x3c\x3b\x42\x48\x3c\x46\x4a\x42\x4e\ \x52\x46\x4d\x55\x41\x47\x49\x3b\x40\x42\x43\x4b\x4d\x36\x3f\x3f\ \x32\x3f\x3e\x3d\x48\x4b\x4d\x59\x60\x3a\x48\x4a\x34\x3f\x42\x34\ \x40\x42\x41\x52\x57\x39\x46\x47\x37\x3f\x43\x3c\x47\x4f\x3e\x4c\ \x53\x41\x4f\x52\x43\x50\x59\x36\x43\x44\x37\x41\x41\x2f\x38\x3b\ \x3f\x49\x4d\x43\x4f\x52\x3a\x44\x45\x3c\x45\x44\x3e\x4d\x53\x37\ \x44\x45\x00\x00\x00\x51\x64\x75\x61\x6e\x76\x86\x9c\xa4\x78\x97\ \x9c\x23\x35\x3f\x3b\x4f\x63\x33\x48\x4e\x40\x52\x5a\x3f\x52\x60\ \x37\x4b\x4c\x3f\x49\x46\x47\x50\x52\x40\x4b\x50\x43\x4f\x50\x43\ \x47\x44\x44\x50\x4f\x4c\x54\x56\x54\x61\x62\x43\x4e\x4f\x3e\x45\ \x47\x42\x4c\x49\x42\x4f\x4a\x3f\x46\x44\x3d\x42\x3d\x3b\x3d\x3d\ \x49\x4b\x4a\x40\x4c\x48\x46\x51\x56\x3f\x47\x49\x3e\x44\x46\x3c\ \x40\x40\x4b\x50\x54\x44\x4d\x4e\x45\x4f\x51\x4c\x55\x58\x40\x4a\ \x4c\x3b\x42\x44\x38\x3d\x3e\x40\x49\x4e\x41\x4e\x4e\x40\x4c\x48\ \x3c\x47\x44\x3d\x48\x53\x41\x56\x67\x4a\x57\x65\x46\x51\x5c\x46\ \x51\x59\x44\x4c\x58\x41\x4d\x5d\x3d\x45\x5a\x3b\x42\x54\x38\x41\ \x48\x3c\x46\x44\x49\x69\x82\x58\x89\xaf\x3f\x63\x7a\x39\x4e\x5f\ \x39\x4e\x60\x42\x56\x65\x5c\x87\xa8\x49\x74\x8f\x3b\x46\x4c\x36\ \x3f\x3b\x3b\x43\x41\x38\x41\x42\x2f\x39\x37\x34\x3d\x3e\x41\x4b\ \x4b\x40\x49\x47\x3d\x47\x48\x36\x42\x40\x3a\x45\x44\x3a\x3c\x3f\ \x34\x38\x37\x3c\x42\x3f\x42\x4b\x4c\x3f\x4a\x49\x37\x40\x41\x41\ \x4a\x4c\x3c\x43\x46\x38\x3e\x3e\x39\x48\x45\x47\x58\x5a\x44\x51\ \x57\x3b\x43\x42\x40\x49\x4a\x44\x51\x54\x46\x55\x56\x45\x4d\x51\ \x40\x4a\x4e\x3d\x46\x4b\x3e\x4b\x52\x3b\x48\x4d\x3f\x49\x54\x3d\ \x43\x48\x34\x3e\x43\x35\x3f\x42\x37\x43\x43\x36\x44\x42\x36\x42\ \x43\x37\x3f\x42\x3c\x49\x49\x42\x4f\x52\x37\x44\x4a\x3e\x46\x49\ \x3a\x42\x45\x3e\x47\x51\x2f\x38\x3d\x2f\x3b\x40\x3e\x44\x42\x31\ \x34\x34\x2d\x38\x39\x2d\x37\x3b\x39\x43\x48\x3e\x4e\x54\x44\x4f\ \x52\x3a\x47\x4b\x2d\x39\x3a\x2e\x34\x35\x37\x41\x41\x3b\x4d\x4f\ \x3a\x45\x4b\x2d\x35\x33\x2e\x3b\x3d\x3d\x48\x4b\x3b\x44\x42\x2f\ \x39\x38\x3d\x45\x47\x41\x4d\x4d\x3e\x4c\x50\x3a\x40\x3f\x39\x49\ \x4a\x43\x4c\x53\x3b\x47\x48\x34\x3e\x3a\x34\x42\x43\x3a\x44\x4d\ \x32\x38\x37\x3a\x43\x41\x3e\x4a\x50\x33\x3d\x39\x35\x40\x3f\x38\ \x44\x41\x3b\x40\x42\x3b\x41\x44\x3e\x45\x48\x45\x4f\x57\x44\x51\ \x56\x32\x36\x38\x30\x36\x32\x3d\x43\x47\x33\x40\x43\x3d\x43\x45\ \x31\x37\x38\x32\x3f\x3b\x3f\x48\x4c\x3e\x4d\x51\x37\x46\x43\x3e\ \x46\x46\x4a\x5b\x5e\x40\x4e\x51\x3b\x49\x45\x44\x52\x52\x00\x00\ \x00\xa8\xc4\xd7\xc2\xde\xed\xab\xca\xdc\xb7\xda\xe9\x8a\xac\xb9\ \x65\x7d\x8c\x78\x8f\x9d\x51\x70\x83\x55\x72\x85\x4b\x61\x69\x42\ \x4a\x49\x47\x4d\x51\x49\x54\x57\x48\x55\x57\x42\x4b\x48\x3f\x47\ \x47\x4e\x54\x59\x4d\x56\x57\x41\x46\x47\x41\x46\x45\x42\x47\x49\ \x41\x47\x44\x42\x44\x44\x44\x4c\x47\x41\x4a\x4c\x42\x49\x4b\x3b\ \x49\x49\x3c\x43\x3b\x3b\x46\x44\x3c\x43\x41\x3a\x3c\x41\x3e\x48\ \x46\x3d\x49\x4b\x46\x4d\x53\x41\x46\x49\x45\x4e\x50\x43\x46\x45\ \x41\x4a\x4a\x47\x4e\x55\x43\x48\x4c\x3d\x41\x44\x3a\x44\x47\x40\ \x48\x4b\x39\x42\x43\x38\x48\x4f\x47\x55\x6a\x3c\x48\x5a\x39\x4a\ \x62\x38\x3d\x4f\x38\x42\x45\x44\x44\x46\x41\x45\x49\x43\x50\x58\ \x57\x8e\xb6\x3f\x59\x6a\x3a\x44\x48\x40\x4a\x49\x3f\x4a\x4e\x3b\ \x48\x4e\x43\x65\x7f\x48\x7b\xa5\x34\x49\x4f\x39\x43\x47\x45\x66\ \x7b\x35\x47\x54\x34\x3e\x3d\x36\x3b\x3e\x37\x3b\x41\x37\x3d\x3b\ \x3c\x43\x44\x3f\x42\x48\x3a\x3e\x41\x37\x41\x44\x3a\x48\x4c\x40\ \x4e\x51\x3e\x49\x4b\x3a\x42\x41\x35\x40\x3f\x31\x3a\x37\x37\x3d\ \x3e\x3f\x46\x49\x36\x45\x46\x3a\x40\x3f\x39\x41\x43\x35\x41\x40\ \x3b\x49\x4a\x3a\x48\x4b\x3d\x44\x44\x31\x3a\x3a\x2a\x38\x36\x31\ \x3c\x3d\x38\x42\x47\x3e\x4c\x4c\x3a\x3f\x3c\x39\x43\x4a\x40\x4e\ \x52\x3f\x4d\x54\x44\x50\x56\x3f\x4c\x50\x35\x42\x41\x3b\x3e\x42\ \x38\x40\x47\x35\x42\x45\x35\x3d\x3f\x39\x41\x42\x33\x40\x3d\x2c\ \x36\x37\x3d\x45\x48\x3f\x48\x4c\x57\x5f\x62\x4f\x53\x56\x3b\x4b\ \x4c\x3e\x4d\x53\x3d\x45\x44\x36\x3f\x3e\x2e\x37\x38\x39\x3d\x41\ \x45\x53\x5a\x43\x4f\x51\x40\x4f\x52\x38\x41\x44\x39\x49\x4b\x3f\ \x49\x4d\x4b\x58\x60\x56\x61\x67\x43\x4c\x4f\x40\x50\x55\x49\x55\ \x56\x3d\x45\x44\x3b\x41\x45\x3b\x42\x43\x3e\x4e\x52\x38\x40\x42\ \x33\x35\x31\x45\x50\x51\x47\x52\x57\x43\x4a\x4f\x3c\x3f\x44\x35\ \x41\x40\x30\x38\x39\x38\x42\x4c\x35\x4c\x4e\x42\x4e\x55\x42\x4f\ \x54\x34\x3e\x3a\x35\x40\x41\x33\x3f\x42\x31\x33\x35\x37\x3d\x3f\ \x3f\x4e\x4d\x3d\x4b\x48\x3b\x4c\x4e\x33\x3f\x3d\x30\x3f\x41\x3f\ \x4b\x53\x3d\x4a\x4f\x39\x40\x41\x3c\x4a\x49\x41\x44\x46\x35\x3f\ \x41\x32\x3e\x3c\x3d\x49\x4d\x38\x45\x45\x00\x00\x00\x9c\xb8\xcb\ \xaf\xc9\xd9\xba\xda\xea\xc0\xde\xed\xc2\xde\xeb\xc5\xe1\xed\xbf\ \xdd\xe4\xa6\xbf\xcc\x93\xaf\xbb\x80\x9c\xa8\x5d\x73\x7c\x59\x6d\ \x71\x4d\x5a\x5d\x3c\x42\x42\x3e\x44\x43\x42\x48\x48\x4f\x51\x51\ \x4c\x52\x56\x44\x4f\x4d\x41\x4d\x4a\x41\x42\x44\x44\x47\x48\x3e\ \x43\x42\x38\x3f\x3e\x36\x3d\x3c\x39\x43\x3f\x41\x4b\x4c\x41\x46\ \x47\x3f\x46\x45\x43\x46\x49\x39\x47\x44\x40\x47\x49\x3e\x46\x46\ \x3c\x41\x43\x3c\x42\x42\x34\x3c\x3a\x36\x3d\x40\x41\x4a\x4e\x3e\ \x43\x45\x43\x48\x48\x41\x49\x4e\x3d\x44\x44\x3b\x42\x43\x40\x47\ \x48\x40\x46\x45\x35\x43\x47\x39\x49\x61\x3b\x3f\x4c\x3b\x43\x44\ \x3d\x40\x41\x3a\x42\x41\x3b\x41\x3f\x36\x40\x40\x59\x84\xa8\x51\ \x7c\x92\x40\x59\x64\x46\x5f\x6a\x4b\x6e\x83\x54\x88\xaa\x4c\x7e\ \xa4\x41\x5e\x70\x3e\x50\x57\x4a\x6e\x86\x49\x79\x9b\x39\x5c\x7d\ \x41\x66\x81\x42\x55\x62\x3e\x4b\x55\x39\x40\x3f\x3b\x44\x43\x36\ \x3f\x43\x3a\x42\x40\x3a\x43\x3f\x39\x44\x46\x3b\x49\x48\x34\x40\ \x3a\x35\x3e\x3d\x39\x44\x42\x41\x4c\x4f\x3d\x48\x48\x41\x4b\x4f\ \x39\x40\x47\x38\x44\x46\x3d\x45\x4a\x32\x3b\x3d\x32\x43\x3f\x3c\ \x44\x47\x33\x3e\x3d\x35\x40\x42\x3d\x4d\x53\x3c\x48\x4f\x3d\x49\ \x4e\x3b\x46\x4a\x3c\x47\x49\x39\x45\x48\x33\x43\x46\x37\x42\x46\ \x33\x39\x3b\x2f\x35\x33\x36\x3c\x41\x35\x3d\x42\x41\x4b\x4d\x46\ \x54\x59\x3e\x4a\x4e\x3d\x44\x49\x3e\x4b\x4f\x3e\x4c\x51\x3a\x3f\ \x48\x35\x3d\x3b\x46\x4f\x51\x33\x38\x39\x32\x3a\x3e\x34\x3b\x3d\ \x3d\x44\x42\x38\x41\x3e\x3d\x4d\x50\x3b\x47\x49\x40\x4d\x50\x37\ \x3e\x40\x33\x38\x3d\x44\x4e\x55\x3d\x4d\x4d\x3c\x3c\x41\x3a\x42\ \x43\x35\x36\x38\x39\x41\x46\x3f\x4a\x4d\x3e\x47\x47\x32\x39\x37\ \x3f\x47\x49\x3c\x41\x47\x34\x3f\x43\x3b\x3d\x3f\x41\x4c\x52\x3f\ \x51\x54\x3e\x45\x4d\x36\x3d\x3f\x3a\x44\x46\x3a\x43\x45\x3e\x50\ \x58\x3f\x54\x5a\x3a\x45\x46\x2e\x33\x36\x2f\x3a\x3d\x3a\x42\x45\ \x43\x51\x54\x38\x40\x45\x42\x49\x4d\x3f\x4d\x54\x3f\x48\x4c\x3a\ \x44\x43\x35\x3d\x3f\x3b\x46\x4c\x3a\x49\x4f\x33\x38\x3b\x39\x45\ \x45\x3f\x4a\x4f\x41\x4b\x51\x42\x47\x4b\x42\x55\x58\x43\x4e\x50\ \x46\x50\x57\x43\x51\x56\x00\x00\x00\x97\xb2\xc5\xbd\xdc\xe9\xc1\ \xde\xec\xc8\xe2\xf0\xcc\xe3\xef\xce\xe3\xef\xd1\xe8\xf2\xcb\xe5\ \xf2\xce\xe7\xf2\xcd\xe8\xf2\xcb\xe7\xf3\xc1\xe0\xea\xa2\xbd\xc7\ \x8d\xa8\xb0\x66\x7b\x81\x48\x57\x54\x3c\x42\x43\x4d\x55\x58\x40\ \x41\x42\x45\x46\x4b\x43\x4a\x4c\x49\x4b\x4f\x43\x4d\x50\x41\x4b\ \x4c\x44\x4a\x4d\x43\x49\x47\x39\x40\x41\x42\x44\x48\x3e\x47\x44\ \x42\x49\x4a\x3f\x43\x47\x3b\x46\x47\x40\x47\x49\x37\x3f\x39\x40\ \x46\x45\x42\x4a\x4e\x45\x4c\x50\x42\x45\x49\x42\x4b\x4e\x3c\x40\ \x42\x42\x44\x48\x43\x4e\x4f\x38\x40\x3d\x40\x45\x4a\x3a\x40\x41\ \x37\x3d\x3b\x30\x38\x43\x39\x40\x41\x45\x4e\x4d\x3b\x41\x41\x37\ \x42\x40\x38\x40\x3d\x3c\x49\x47\x37\x43\x49\x3a\x4d\x57\x3c\x4c\ \x58\x3e\x52\x68\x3c\x51\x5c\x32\x4a\x53\x38\x4f\x59\x5b\x82\x9b\ \x5c\x8e\xb2\x48\x6f\x8a\x3b\x4d\x57\x3e\x47\x4c\x39\x4b\x62\x51\ \x82\xa8\x45\x7d\x9e\x39\x53\x5c\x41\x4c\x4e\x3f\x4b\x47\x3a\x47\ \x49\x44\x4a\x4b\x33\x3c\x37\x34\x3f\x3f\x40\x45\x47\x3b\x41\x40\ \x3b\x3d\x40\x3a\x43\x41\x3f\x48\x4a\x3c\x45\x48\x3b\x43\x45\x3a\ \x44\x46\x3b\x45\x47\x3f\x46\x46\x3d\x47\x4d\x3d\x46\x45\x34\x45\ \x45\x32\x3c\x3e\x31\x3e\x3e\x3c\x44\x46\x3c\x48\x49\x31\x3c\x3c\ \x3a\x3e\x40\x3b\x41\x40\x41\x4d\x50\x35\x3d\x43\x3c\x49\x4d\x3e\ \x4c\x4e\x40\x4d\x51\x4a\x59\x58\x40\x4f\x4f\x33\x42\x3f\x37\x40\ \x43\x41\x49\x4b\x39\x43\x47\x31\x3a\x39\x31\x34\x34\x2f\x37\x39\ \x2f\x3c\x3d\x38\x3f\x44\x3b\x4b\x4b\x3b\x44\x45\x38\x45\x48\x3e\ \x43\x49\x34\x42\x41\x3d\x48\x4c\x36\x3f\x43\x34\x3c\x40\x44\x55\ \x5d\x4c\x5e\x66\x44\x55\x59\x42\x46\x45\x3f\x4c\x52\x3d\x45\x45\ \x43\x49\x53\x38\x40\x44\x40\x45\x47\x43\x4b\x4e\x3f\x45\x4a\x40\ \x4a\x4f\x42\x4c\x51\x35\x41\x41\x38\x3d\x3d\x35\x3c\x40\x3a\x3f\ \x44\x3b\x47\x4b\x40\x47\x4d\x42\x4e\x53\x3c\x47\x4a\x30\x39\x3b\ \x34\x3d\x3b\x46\x51\x56\x39\x48\x4b\x41\x4f\x54\x37\x42\x44\x2a\ \x32\x31\x37\x40\x42\x3f\x46\x4c\x35\x3f\x3f\x39\x41\x42\x42\x4e\ \x50\x3f\x45\x49\x37\x37\x3b\x3d\x45\x46\x41\x47\x4e\x40\x4b\x50\ \x40\x4b\x4d\x49\x51\x5c\x3b\x47\x46\x41\x4c\x4f\x3d\x4b\x52\x34\ \x43\x4a\x00\x00\x00\xaf\xcc\xdb\xbf\xdb\xe8\xc7\xe3\xf1\xce\xe7\ \xf2\xcd\xe9\xf3\xd4\xe9\xf3\xd3\xe9\xf3\xd3\xe9\xf3\xd1\xe9\xf4\ \xd5\xea\xf5\xd3\xea\xf5\xcf\xe9\xf5\xce\xe7\xf1\xca\xe4\xf0\xba\ \xd8\xe2\x97\xba\xc2\x60\x77\x7c\x4c\x51\x56\x4a\x50\x51\x42\x4a\ \x49\x45\x49\x4a\x3f\x48\x43\x3c\x45\x43\x48\x4c\x52\x40\x48\x46\ \x40\x4e\x4b\x48\x4d\x50\x43\x4f\x4c\x43\x52\x56\x42\x4a\x4a\x41\ \x40\x43\x43\x4e\x51\x40\x4f\x4c\x42\x4b\x4d\x40\x47\x4a\x40\x4c\ \x4e\x3d\x45\x43\x39\x3e\x3e\x3e\x45\x4c\x38\x3e\x40\x39\x3e\x42\ \x3a\x43\x46\x41\x48\x48\x3f\x45\x4a\x43\x49\x49\x3e\x4c\x4f\x3b\ \x49\x48\x3f\x49\x47\x3c\x42\x43\x40\x47\x46\x37\x43\x42\x37\x42\ \x42\x41\x47\x46\x32\x37\x34\x36\x3e\x3b\x3a\x3e\x3e\x3a\x42\x45\ \x41\x4c\x54\x4b\x6e\x87\x54\x87\xae\x4c\x7f\x9c\x35\x49\x54\x36\ \x3d\x41\x41\x4d\x5a\x42\x64\x7e\x40\x5e\x7e\x3b\x5b\x72\x40\x5b\ \x72\x3f\x59\x6b\x38\x45\x4b\x33\x3b\x38\x37\x40\x42\x3c\x42\x47\ \x3d\x42\x44\x35\x40\x3f\x38\x43\x40\x39\x43\x42\x37\x43\x40\x33\ \x3d\x3e\x36\x3b\x3c\x33\x3e\x40\x2c\x32\x2f\x34\x3f\x41\x37\x3c\ \x3e\x38\x41\x40\x38\x41\x3f\x39\x46\x4a\x36\x3f\x3e\x3e\x46\x48\ \x37\x41\x42\x37\x3d\x3f\x37\x3d\x40\x3d\x50\x57\x3d\x4c\x56\x3d\ \x47\x49\x42\x50\x58\x38\x3f\x40\x47\x51\x58\x41\x4f\x4e\x36\x3b\ \x3f\x34\x40\x45\x33\x40\x43\x34\x3f\x47\x2f\x38\x3a\x2f\x38\x3a\ \x37\x42\x41\x34\x3b\x3b\x3e\x4e\x54\x42\x52\x56\x44\x4d\x55\x40\ \x4e\x52\x36\x41\x3e\x30\x39\x36\x36\x41\x43\x3b\x44\x47\x37\x43\ \x44\x38\x45\x46\x38\x45\x45\x34\x40\x41\x38\x41\x44\x3b\x47\x49\ \x34\x42\x4c\x2f\x37\x35\x3e\x40\x45\x45\x52\x59\x47\x55\x5c\x3d\ \x43\x46\x38\x3e\x41\x3b\x41\x40\x3c\x47\x48\x44\x50\x57\x43\x4a\ \x4d\x3c\x44\x42\x43\x4e\x4f\x45\x4e\x56\x3f\x44\x48\x3d\x48\x4a\ \x3b\x44\x48\x39\x43\x42\x2f\x38\x35\x39\x3f\x41\x3b\x46\x4c\x3b\ \x47\x4d\x3c\x4c\x4c\x3b\x41\x43\x32\x36\x35\x43\x48\x4c\x45\x51\ \x55\x45\x50\x50\x3c\x43\x44\x40\x4b\x4f\x3c\x42\x46\x35\x3d\x3b\ \x45\x51\x52\x44\x4f\x54\x3d\x49\x4c\x3b\x47\x47\x3a\x42\x49\x3d\ \x45\x47\x3b\x47\x49\x3b\x46\x45\x3c\x4d\x51\x45\x52\x5d\x00\x00\ \x00\xb3\xd0\xe0\xbe\xd7\xe3\xc9\xe1\xea\xca\xe4\xed\xce\xe6\xf0\ \xd0\xe8\xf1\xd1\xe9\xf3\xd7\xec\xf4\xd2\xeb\xf5\xd2\xeb\xf5\xd2\ \xeb\xf5\xd2\xeb\xf6\xd0\xea\xf5\xd0\xe9\xf4\xce\xe9\xf4\xcc\xe9\ \xf3\xb7\xd6\xdf\x72\x89\x91\x50\x59\x60\x44\x4c\x4e\x3f\x43\x3e\ \x3e\x40\x42\x40\x43\x43\x39\x40\x40\x45\x48\x4c\x48\x4f\x54\x46\ \x4f\x53\x3f\x46\x49\x3f\x44\x45\x3c\x43\x46\x3f\x44\x44\x43\x4d\ \x4d\x44\x4a\x4c\x42\x49\x48\x3f\x43\x43\x3f\x41\x3f\x40\x45\x44\ \x46\x45\x4d\x49\x4d\x56\x47\x4e\x51\x45\x4b\x50\x38\x3d\x3e\x3a\ \x3e\x3f\x37\x3f\x40\x3b\x48\x48\x3d\x48\x4c\x39\x41\x3e\x3e\x42\ \x43\x42\x48\x4e\x41\x4b\x4c\x35\x40\x3f\x38\x3e\x3d\x38\x41\x40\ \x39\x43\x3f\x37\x3e\x43\x36\x3f\x40\x37\x3a\x3d\x36\x3f\x43\x38\ \x3e\x42\x36\x40\x48\x45\x59\x6b\x3d\x45\x47\x38\x40\x40\x41\x53\ \x69\x48\x6e\x94\x3e\x53\x65\x3b\x45\x47\x39\x45\x4c\x41\x46\x46\ \x3a\x40\x44\x4c\x68\x7d\x4f\x7b\x98\x42\x5a\x68\x3d\x43\x46\x3d\ \x44\x48\x3c\x48\x4a\x35\x3c\x44\x40\x4a\x4b\x41\x4c\x52\x42\x53\ \x57\x39\x4a\x4b\x46\x54\x54\x43\x4b\x50\x41\x41\x46\x41\x48\x4a\ \x3e\x45\x45\x37\x41\x49\x3c\x46\x47\x36\x3c\x3f\x3a\x3f\x42\x37\ \x41\x41\x39\x42\x42\x3d\x48\x48\x38\x3e\x40\x33\x3c\x3e\x31\x34\ \x35\x3f\x44\x44\x34\x3e\x42\x34\x3d\x3c\x33\x39\x39\x38\x48\x4d\ \x43\x4f\x53\x3f\x4f\x54\x36\x43\x41\x40\x4e\x54\x44\x4a\x4d\x40\ \x49\x52\x40\x4a\x50\x39\x46\x48\x37\x41\x42\x33\x3e\x3d\x3a\x43\ \x3e\x3b\x48\x47\x38\x48\x4b\x35\x3a\x40\x3d\x48\x51\x42\x50\x56\ \x3e\x4a\x54\x3f\x4a\x55\x42\x51\x5e\x3e\x48\x4a\x3f\x48\x46\x40\ \x4e\x50\x3d\x4d\x50\x3f\x48\x4e\x3a\x3c\x44\x34\x36\x36\x2c\x36\ \x38\x3e\x4b\x4f\x43\x50\x58\x44\x52\x56\x3a\x41\x40\x3e\x45\x50\ \x43\x4a\x52\x37\x3e\x40\x3a\x3f\x45\x34\x3c\x3b\x39\x3f\x3f\x3b\ \x43\x48\x40\x4a\x4e\x44\x4f\x55\x40\x4a\x4e\x3e\x49\x4d\x40\x4e\ \x4c\x41\x4e\x4e\x36\x3d\x3e\x3e\x4b\x4c\x3e\x4d\x4d\x39\x43\x46\ \x39\x43\x44\x32\x3e\x3d\x3c\x44\x47\x45\x4e\x52\x42\x51\x53\x3a\ \x45\x49\x3a\x41\x48\x33\x3f\x3e\x39\x4b\x4d\x45\x51\x5b\x3a\x42\ \x46\x39\x49\x4e\x45\x54\x5a\x3c\x48\x4c\x00\x00\x00\xb1\xd1\xe0\ \xba\xd0\xdd\xc6\xdf\xea\xce\xe6\xef\xd1\xe6\xf0\xd2\xe9\xf4\xd4\ \xe9\xf5\xd3\xeb\xf5\xd5\xed\xf6\xd4\xed\xf6\xd6\xed\xf5\xd6\xec\ \xf6\xd5\xed\xf7\xd4\xec\xf6\xd1\xeb\xf5\xd4\xec\xf6\xd5\xeb\xf6\ \xce\xea\xf4\x96\xb4\xbc\x73\x8e\x97\x59\x6b\x71\x45\x52\x51\x40\ \x4b\x48\x43\x49\x48\x43\x4b\x4b\x47\x51\x53\x3d\x42\x45\x3a\x3e\ \x3f\x3e\x44\x44\x45\x50\x53\x45\x4b\x4e\x45\x52\x55\x3e\x42\x41\ \x39\x3e\x3a\x3f\x45\x47\x41\x45\x49\x48\x4b\x51\x43\x4b\x4a\x37\ \x3b\x3c\x3b\x3b\x3c\x43\x46\x49\x43\x4a\x4a\x48\x4e\x55\x42\x48\ \x4e\x3c\x45\x45\x3a\x45\x48\x40\x42\x45\x3a\x43\x43\x35\x3e\x40\ \x3d\x44\x42\x37\x40\x42\x39\x43\x47\x36\x3e\x41\x35\x3d\x3d\x37\ \x3b\x3f\x38\x3f\x40\x40\x45\x44\x3f\x47\x47\x35\x3f\x3e\x38\x3d\ \x40\x36\x40\x45\x39\x44\x45\x39\x3f\x44\x48\x5a\x6a\x41\x57\x66\ \x45\x59\x68\x4c\x6a\x7d\x49\x6a\x7d\x4c\x65\x79\x53\x78\x94\x46\ \x6e\x92\x3e\x5d\x74\x41\x57\x64\x3b\x48\x4a\x40\x4e\x4b\x35\x42\ \x41\x36\x44\x48\x3f\x49\x4c\x39\x3f\x42\x3b\x45\x46\x53\x76\x93\ \x31\x41\x4c\x3b\x48\x4c\x37\x44\x3f\x2f\x36\x30\x31\x34\x38\x36\ \x3d\x3e\x36\x40\x40\x2b\x36\x37\x38\x3e\x3f\x3d\x47\x50\x42\x4b\ \x51\x40\x48\x4d\x3a\x40\x43\x38\x46\x47\x41\x4b\x50\x43\x4f\x57\ \x38\x43\x44\x39\x48\x4b\x3c\x46\x48\x43\x4b\x51\x3d\x47\x4a\x32\ \x3a\x3a\x31\x3c\x3b\x37\x3f\x42\x39\x3d\x3c\x3c\x47\x48\x3a\x45\ \x47\x43\x50\x55\x34\x40\x3c\x32\x3f\x3f\x37\x40\x49\x37\x42\x47\ \x37\x45\x45\x42\x4b\x54\x45\x55\x5c\x37\x41\x45\x32\x39\x3f\x38\ \x40\x48\x2e\x3b\x37\x2f\x35\x33\x31\x3e\x3f\x43\x51\x56\x3b\x49\ \x50\x36\x42\x48\x37\x3f\x40\x45\x4f\x57\x35\x44\x43\x3b\x4d\x58\ \x3d\x4c\x57\x31\x39\x3e\x2e\x31\x35\x3c\x48\x50\x3d\x4d\x51\x39\ \x47\x49\x30\x3a\x38\x38\x49\x4b\x45\x4e\x54\x42\x47\x4c\x31\x3b\ \x37\x33\x37\x39\x2f\x32\x31\x38\x3c\x3e\x41\x4f\x4d\x48\x50\x55\ \x72\x7b\x83\x57\x63\x6c\x4f\x60\x67\x44\x4f\x54\x39\x43\x3d\x3b\ \x4c\x50\x3d\x4e\x4d\x3f\x4c\x4f\x3b\x44\x49\x36\x42\x47\x34\x42\ \x43\x35\x41\x45\x3a\x47\x4c\x3b\x46\x4b\x39\x40\x42\x42\x50\x56\ \x3d\x49\x4e\x3e\x4c\x4b\x00\x00\x00\x9c\xba\xcf\xbe\xd7\xe4\xcc\ \xe3\xef\xce\xe6\xf1\xcc\xe5\xf0\xd0\xe9\xf2\xd5\xea\xf4\xd4\xec\ \xf4\xd8\xee\xf6\xd5\xec\xf6\xd8\xed\xf5\xd8\xed\xf6\xd6\xec\xf6\ \xd6\xed\xf7\xd6\xed\xf6\xd3\xec\xf7\xd4\xec\xf6\xd3\xed\xf5\xd3\ \xea\xf4\xcf\xea\xf1\xa5\xc6\xcc\x63\x7d\x80\x42\x56\x58\x3d\x4f\ \x4f\x3b\x43\x43\x40\x44\x4a\x45\x4b\x4b\x43\x47\x45\x4b\x54\x58\ \x44\x4c\x53\x40\x47\x47\x43\x4e\x4e\x47\x49\x50\x43\x49\x4c\x3e\ \x45\x45\x38\x3e\x42\x35\x3a\x38\x40\x43\x44\x3e\x3d\x43\x35\x3d\ \x3d\x38\x3f\x3c\x38\x3d\x3e\x3f\x4b\x4c\x40\x45\x44\x3f\x4a\x49\ \x31\x3e\x3e\x41\x44\x41\x38\x3e\x3d\x35\x3c\x3a\x3e\x44\x48\x38\ \x43\x47\x32\x3d\x3b\x32\x3d\x3e\x34\x42\x3f\x33\x3c\x38\x33\x38\ \x3a\x36\x3a\x39\x3b\x47\x49\x38\x3d\x3e\x38\x3f\x42\x39\x46\x47\ \x34\x3c\x3a\x33\x3c\x3f\x37\x3e\x44\x42\x56\x64\x49\x6c\x86\x35\ \x49\x5c\x38\x4c\x5a\x39\x4e\x5b\x49\x78\x98\x35\x3e\x42\x33\x3e\ \x3e\x36\x3b\x3a\x33\x3c\x41\x34\x3c\x39\x3b\x45\x4a\x40\x4f\x55\ \x3f\x4b\x52\x42\x55\x5f\x49\x6e\x86\x53\x80\xa9\x49\x66\x80\x3c\ \x43\x4a\x3a\x44\x46\x42\x50\x54\x3f\x4e\x52\x43\x4e\x52\x3b\x41\ \x43\x34\x43\x3f\x34\x40\x3d\x3e\x48\x4a\x36\x3d\x39\x34\x3c\x3c\ \x2f\x37\x36\x35\x3b\x41\x38\x3c\x3e\x38\x3d\x48\x31\x39\x38\x2e\ \x35\x36\x3b\x43\x47\x3d\x42\x43\x30\x38\x3a\x3e\x45\x4c\x3e\x51\ \x56\x38\x48\x4c\x37\x42\x40\x3e\x53\x56\x40\x4e\x53\x3d\x43\x46\ \x38\x3c\x3c\x36\x46\x46\x37\x41\x42\x33\x3a\x3e\x33\x3b\x38\x39\ \x3f\x42\x31\x3b\x38\x2f\x34\x34\x39\x42\x43\x38\x49\x51\x43\x4c\ \x4f\x48\x52\x56\x3b\x46\x49\x39\x3f\x44\x39\x42\x42\x3d\x42\x46\ \x41\x4c\x52\x45\x51\x56\x3d\x4a\x4c\x3c\x4c\x56\x39\x45\x48\x38\ \x42\x44\x3e\x50\x55\x45\x56\x61\x3c\x49\x51\x3a\x44\x45\x3c\x42\ \x48\x41\x53\x5a\x38\x44\x48\x35\x3b\x3f\x3b\x48\x49\x44\x4d\x55\ \x3f\x4b\x4c\x47\x4c\x54\x46\x4e\x58\x3a\x43\x45\x56\x60\x68\x42\ \x4b\x4c\x3b\x43\x49\x33\x3b\x3a\x30\x39\x37\x3a\x45\x49\x3b\x47\ \x49\x3b\x44\x46\x3e\x46\x45\x43\x50\x56\x40\x51\x56\x40\x4d\x4e\ \x3d\x48\x46\x43\x4d\x52\x3c\x4c\x50\x36\x41\x40\x37\x3f\x3d\x3c\ \x43\x48\x00\x00\x00\x9d\xc4\xdc\xc0\xd9\xe6\xc8\xdf\xe8\xcb\xe4\ \xf0\xcb\xe5\xf2\xd1\xe9\xf3\xcf\xe9\xf2\xd0\xe8\xf2\xd4\xea\xf4\ \xd5\xea\xf3\xd8\xed\xf5\xd5\xed\xf5\xd4\xeb\xf4\xd6\xec\xf6\xd5\ \xee\xf6\xd3\xec\xf6\xd2\xec\xf6\xd5\xec\xf5\xd5\xed\xf5\xd5\xef\ \xf6\xd3\xed\xf5\xd0\xe9\xf3\xa5\xc6\xcf\x89\xa4\xac\x6e\x86\x8c\ \x61\x6f\x75\x3f\x4e\x51\x40\x4b\x4f\x3a\x44\x43\x37\x3e\x3f\x34\ \x3b\x3c\x3a\x42\x3f\x38\x43\x3f\x3d\x42\x3e\x41\x47\x4e\x3f\x46\ \x49\x3b\x42\x43\x49\x4a\x4e\x40\x48\x49\x42\x4c\x4c\x43\x4d\x50\ \x45\x4e\x4f\x4d\x5a\x5d\x48\x4f\x52\x40\x4f\x52\x3a\x46\x46\x3d\ \x43\x46\x41\x44\x44\x3a\x44\x44\x34\x41\x40\x36\x3d\x43\x34\x3e\ \x3d\x30\x3b\x3b\x35\x3c\x40\x33\x3c\x3e\x36\x40\x3b\x36\x3a\x3b\ \x30\x38\x39\x33\x36\x36\x2a\x33\x2f\x35\x3a\x38\x38\x40\x43\x39\ \x3c\x44\x34\x42\x46\x34\x3c\x40\x36\x42\x45\x3c\x43\x47\x41\x4f\ \x5c\x52\x78\x98\x41\x67\x81\x34\x42\x45\x3c\x47\x46\x3c\x46\x44\ \x3a\x45\x42\x3b\x4c\x4e\x3f\x50\x53\x43\x55\x5e\x4b\x64\x77\x4e\ \x6e\x8e\x41\x5c\x74\x3a\x4e\x66\x48\x64\x80\x58\x79\x93\x3e\x51\ \x5b\x3e\x48\x4d\x3e\x46\x4c\x38\x41\x3d\x3c\x45\x48\x3b\x48\x48\ \x32\x3e\x44\x34\x3d\x43\x34\x3c\x3c\x37\x3f\x41\x38\x47\x4b\x45\ \x4f\x57\x46\x51\x54\x3f\x40\x46\x3d\x43\x47\x43\x4c\x4c\x42\x4d\ \x4a\x39\x41\x3f\x3f\x48\x47\x3f\x4a\x4f\x39\x46\x48\x30\x3e\x42\ \x35\x3b\x41\x3a\x43\x4b\x38\x3f\x42\x30\x3a\x39\x3e\x46\x4b\x3b\ \x4e\x54\x46\x57\x65\x3f\x4b\x51\x45\x4f\x53\x3a\x42\x45\x36\x40\ \x44\x44\x4f\x5a\x45\x57\x58\x3c\x46\x49\x34\x37\x3b\x36\x39\x3d\ \x3e\x44\x48\x3e\x4d\x4d\x37\x3a\x3c\x33\x37\x3c\x3b\x45\x49\x34\ \x3e\x3f\x29\x33\x2f\x2d\x39\x38\x34\x43\x44\x3a\x48\x4c\x43\x50\ \x55\x3d\x46\x4d\x41\x4d\x54\x35\x41\x42\x35\x42\x42\x3b\x44\x43\ \x37\x43\x44\x44\x4e\x52\x4a\x55\x5b\x3d\x4c\x4d\x3a\x47\x45\x39\ \x43\x46\x3d\x43\x44\x46\x54\x54\x3b\x44\x42\x34\x3e\x3c\x37\x46\ \x47\x39\x44\x43\x42\x4d\x51\x3d\x4a\x4c\x39\x45\x44\x3c\x47\x4b\ \x3f\x4d\x4f\x3c\x48\x4c\x39\x41\x42\x3f\x50\x51\x37\x3b\x3c\x33\ \x3e\x41\x36\x45\x45\x42\x48\x4c\x44\x51\x55\x36\x4e\x55\x00\x00\ \x00\x8b\xb9\xdb\x88\xb8\xd7\x92\xbf\xdb\xb6\xd2\xe4\xca\xe2\xec\ \xc5\xe1\xed\xc4\xe1\xe9\xca\xe2\xec\xcd\xe4\xef\xd1\xe5\xef\xd9\ \xed\xf4\xd7\xee\xf6\xd9\xed\xf6\xd8\xef\xf7\xd6\xee\xf6\xd7\xed\ \xf7\xd8\xef\xf7\xd9\xed\xf7\xd7\xee\xf7\xd4\xed\xf6\xd5\xee\xf6\ \xd2\xeb\xf4\xcc\xe8\xf2\xcc\xe7\xf3\xd0\xea\xf6\xce\xeb\xf6\xcc\ \xeb\xf4\xae\xcd\xd7\xac\xcd\xd3\x7c\x94\x9b\x60\x7c\x7f\x4a\x5f\ \x67\x48\x59\x60\x40\x47\x46\x40\x48\x4c\x42\x50\x4f\x3c\x42\x43\ \x3e\x45\x45\x41\x49\x48\x41\x48\x49\x3c\x4c\x4b\x40\x48\x4b\x43\ \x46\x49\x3c\x43\x47\x3d\x44\x49\x3a\x40\x3e\x3e\x44\x44\x41\x45\ \x48\x36\x42\x41\x36\x41\x3f\x35\x3d\x3a\x37\x40\x42\x39\x41\x43\ \x32\x36\x38\x36\x3a\x3f\x2f\x37\x36\x30\x3b\x38\x35\x3a\x3f\x35\ \x3d\x3f\x39\x3f\x43\x35\x3f\x41\x33\x3c\x3a\x36\x39\x3f\x36\x3a\ \x39\x34\x3f\x3e\x39\x44\x45\x3e\x4a\x48\x35\x3b\x40\x36\x43\x4f\ \x36\x52\x63\x39\x48\x52\x3e\x4b\x4f\x36\x44\x47\x39\x46\x4c\x49\ \x69\x76\x4f\x71\x89\x49\x59\x6f\x3c\x53\x64\x41\x5d\x70\x48\x63\ \x7e\x3b\x48\x57\x47\x61\x73\x3e\x55\x6b\x47\x63\x7c\x4d\x6a\x7a\ \x3d\x46\x4d\x38\x3e\x42\x31\x3d\x3d\x3b\x4a\x4c\x36\x44\x47\x40\ \x4d\x53\x3d\x44\x42\x3b\x46\x44\x3b\x41\x48\x4c\x52\x54\x3b\x47\ \x45\x3d\x3f\x40\x3d\x48\x46\x3e\x4b\x4f\x37\x35\x38\x39\x3e\x41\ \x3f\x43\x4a\x35\x3e\x43\x39\x47\x46\x44\x53\x5b\x3e\x53\x56\x38\ \x3d\x3f\x34\x40\x44\x31\x3b\x3e\x37\x40\x45\x3d\x46\x4d\x39\x40\ \x43\x32\x36\x36\x34\x35\x36\x30\x39\x38\x2e\x34\x39\x35\x39\x40\ \x37\x3b\x42\x2d\x34\x36\x3f\x46\x48\x42\x4d\x52\x36\x3c\x35\x35\ \x37\x37\x34\x3c\x3b\x34\x43\x46\x3f\x4a\x50\x3f\x49\x4d\x3e\x4c\ \x50\x39\x45\x4b\x37\x41\x46\x36\x3c\x41\x2e\x3a\x3a\x35\x41\x44\ \x36\x43\x46\x34\x40\x41\x3e\x4b\x53\x40\x51\x5a\x3d\x4a\x50\x40\ \x4e\x54\x43\x4c\x52\x3b\x44\x44\x37\x41\x3f\x3a\x44\x47\x3d\x48\ \x48\x3d\x47\x47\x3f\x46\x48\x43\x4c\x50\x3d\x50\x57\x46\x50\x55\ \x45\x4e\x54\x40\x48\x4d\x42\x4c\x4c\x3b\x44\x4a\x36\x3f\x46\x3d\ \x48\x4d\x40\x4b\x52\x3c\x45\x4c\x3f\x4a\x4f\x43\x4e\x53\x3c\x46\ \x4c\x34\x3e\x3f\x35\x40\x42\x37\x42\x3c\x00\x00\x00\x8f\xb9\xda\ \x8a\xb8\xd8\x8a\xba\xda\x8b\xba\xda\x93\xbd\xd9\xb0\xcd\xde\xc5\ \xdd\xe5\xc7\xdd\xe8\xc4\xdd\xe9\xcb\xe2\xee\xd5\xea\xf4\xd5\xea\ \xf5\xd3\xea\xf5\xd7\xed\xf6\xd9\xed\xf7\xd6\xee\xf7\xd4\xed\xf7\ \xd6\xef\xf6\xd7\xec\xf7\xd4\xed\xf7\xd2\xec\xf6\xd7\xed\xf6\xd1\ \xeb\xf6\xd1\xeb\xf6\xd3\xec\xf6\xd3\xed\xf6\xd6\xed\xf7\xd1\xeb\ \xf5\xd4\xed\xf7\xd3\xec\xf6\xcf\xec\xf5\xc3\xde\xe7\x9b\xba\xc1\ \x56\x71\x7d\x51\x63\x69\x4b\x59\x5d\x3d\x45\x49\x43\x45\x4c\x4b\ \x4f\x57\x44\x4a\x4c\x3b\x42\x44\x3d\x42\x41\x41\x49\x47\x3c\x46\ \x4a\x3b\x44\x43\x3a\x43\x44\x3d\x45\x44\x3f\x45\x48\x38\x43\x47\ \x37\x41\x40\x3e\x46\x49\x35\x3d\x3f\x3b\x3f\x40\x33\x3a\x3c\x2f\ \x3b\x3f\x34\x3b\x37\x2e\x38\x39\x32\x35\x3b\x35\x38\x39\x32\x35\ \x38\x33\x36\x35\x36\x3a\x3b\x31\x39\x39\x2e\x37\x36\x30\x3a\x3d\ \x36\x42\x43\x39\x47\x45\x3b\x4a\x4d\x40\x45\x46\x36\x43\x40\x3d\ \x44\x4a\x3a\x44\x50\x42\x54\x5f\x54\x76\x90\x47\x67\x85\x41\x58\ \x6d\x46\x57\x67\x49\x5a\x6f\x3e\x54\x60\x3f\x4e\x57\x47\x5d\x6f\ \x49\x60\x75\x41\x53\x65\x46\x5c\x70\x3e\x58\x71\x4d\x6a\x81\x47\ \x58\x66\x47\x55\x5c\x43\x51\x52\x3c\x4c\x4f\x3a\x46\x49\x39\x3d\ \x3b\x3a\x3e\x3a\x3e\x45\x47\x32\x3a\x3a\x38\x42\x41\x37\x3f\x42\ \x38\x48\x48\x37\x3d\x40\x3c\x42\x45\x4a\x55\x58\x41\x4b\x53\x37\ \x42\x49\x3a\x46\x49\x3a\x43\x43\x32\x3a\x3a\x39\x42\x46\x3e\x4a\ \x54\x38\x45\x48\x3f\x46\x4f\x39\x42\x44\x36\x3b\x3e\x34\x41\x42\ \x3e\x44\x48\x37\x44\x45\x3f\x4d\x56\x47\x4e\x58\x3c\x42\x45\x44\ \x4c\x52\x49\x52\x56\x3c\x40\x42\x34\x3b\x38\x40\x47\x4c\x36\x42\ \x43\x38\x43\x43\x3b\x49\x4c\x39\x40\x42\x32\x36\x39\x31\x39\x3b\ \x3e\x49\x4d\x3c\x46\x47\x3c\x50\x51\x39\x44\x3f\x34\x41\x43\x46\ \x52\x5c\x3f\x4e\x58\x43\x4d\x53\x37\x41\x45\x3d\x46\x4a\x3b\x43\ \x3c\x43\x51\x51\x42\x4b\x4b\x42\x52\x56\x3b\x44\x48\x36\x3e\x3f\ \x44\x4e\x52\x3d\x45\x47\x33\x3a\x39\x35\x3e\x41\x37\x44\x47\x37\ \x3d\x3d\x36\x40\x43\x40\x4c\x50\x3c\x49\x4a\x3d\x4c\x4f\x39\x47\ \x4c\x3a\x41\x43\x31\x38\x3d\x33\x3c\x3f\x36\x3d\x3c\x40\x48\x4a\ \x40\x4b\x4d\x3f\x4b\x4d\x00\x00\x00\x93\xba\xdb\x8c\xb7\xd8\x8a\ \xb6\xd6\x89\xb7\xd6\x8c\xb6\xd6\x8c\xb4\xd4\x8d\xb6\xd5\xa0\xc3\ \xde\xae\xcb\xe1\xbe\xd8\xe6\xce\xe5\xf0\xd2\xe8\xf2\xd7\xed\xf5\ \xd4\xeb\xf4\xd7\xed\xf6\xd8\xee\xf6\xd5\xee\xf7\xd4\xee\xf6\xd3\ \xec\xf7\xd1\xea\xf6\xd1\xeb\xf6\xd7\xef\xf6\xd5\xee\xf7\xd8\xee\ \xf7\xd9\xef\xf7\xd7\xee\xf7\xd6\xed\xf6\xd4\xee\xf6\xd3\xec\xf6\ \xd5\xec\xf5\xd2\xec\xf5\xd2\xe9\xf4\xd1\xea\xf5\xb9\xd9\xe4\x84\ \xa6\xb5\x5c\x78\x87\x44\x56\x5a\x43\x4e\x51\x3d\x46\x45\x3c\x44\ \x46\x43\x4b\x4d\x40\x4a\x49\x43\x48\x4c\x3b\x44\x49\x38\x43\x47\ \x43\x53\x57\x37\x45\x46\x3a\x43\x46\x35\x43\x44\x35\x40\x42\x39\ \x40\x41\x36\x39\x3e\x3d\x40\x41\x37\x3f\x42\x32\x3e\x3b\x30\x38\ \x37\x32\x37\x37\x31\x35\x35\x3b\x41\x41\x3b\x3e\x41\x34\x3f\x3f\ \x32\x3b\x3b\x36\x3c\x3e\x34\x3b\x3d\x30\x37\x33\x34\x3a\x3c\x35\ \x43\x44\x46\x51\x58\x49\x5c\x67\x3d\x54\x5b\x46\x68\x7b\x4d\x76\ \x93\x45\x62\x7a\x41\x59\x70\x49\x64\x7a\x4d\x6c\x83\x3e\x4d\x5c\ \x3b\x47\x4b\x4b\x64\x7d\x4c\x65\x7a\x54\x6d\x7f\x51\x70\x8b\x4d\ \x65\x7b\x3c\x4c\x5b\x46\x5a\x6e\x42\x5a\x68\x4a\x62\x7d\x53\x78\ \x94\x47\x61\x72\x40\x4e\x52\x43\x52\x57\x3f\x47\x4b\x38\x3e\x3e\ \x36\x3f\x40\x36\x40\x41\x45\x4e\x51\x38\x3f\x41\x37\x40\x47\x37\ \x3f\x42\x2e\x36\x37\x2b\x38\x37\x32\x36\x3b\x36\x38\x3b\x35\x42\ \x41\x34\x3d\x3c\x45\x4e\x50\x43\x51\x55\x37\x41\x41\x34\x40\x3f\ \x2f\x39\x3a\x38\x45\x45\x32\x39\x38\x33\x3e\x3e\x33\x38\x39\x3f\ \x46\x49\x3c\x42\x48\x35\x3b\x3e\x2c\x34\x37\x2c\x35\x33\x2e\x3a\ \x37\x33\x36\x3a\x39\x42\x47\x3b\x43\x47\x3a\x41\x44\x3f\x4b\x52\ \x35\x3e\x47\x34\x3b\x3d\x39\x40\x46\x3c\x4b\x4d\x3d\x46\x50\x33\ \x38\x39\x37\x41\x3e\x38\x42\x43\x37\x40\x47\x3b\x46\x4a\x38\x40\ \x43\x37\x3e\x46\x3b\x4b\x4e\x36\x40\x40\x33\x3f\x3f\x37\x44\x48\ \x32\x41\x3f\x32\x39\x38\x32\x39\x37\x36\x43\x41\x3d\x47\x4d\x3b\ \x42\x45\x3b\x49\x4e\x44\x50\x54\x40\x50\x55\x3d\x40\x46\x3b\x43\ \x43\x3e\x45\x4a\x33\x3a\x3c\x39\x45\x44\x3f\x45\x4b\x37\x3f\x3b\ \x40\x49\x4e\x3a\x4a\x4c\x3c\x44\x47\x3d\x49\x4b\x3d\x4b\x4f\x36\ \x43\x41\x00\x00\x00\x96\xbc\xdc\x87\xb1\xd4\x76\xa2\xc5\x79\xa5\ \xc5\x7d\xa4\xc5\x87\xad\xcd\x90\xb6\xd5\x97\xbb\xdc\x9a\xbb\xdd\ \x94\xb5\xd6\x9b\xb9\xd4\xba\xd1\xdd\xd3\xe7\xf1\xc9\xe2\xed\xd2\ \xea\xf4\xd7\xec\xf5\xd5\xec\xf6\xce\xeb\xf5\xcf\xea\xf6\xcf\xea\ \xf6\xd4\xec\xf6\xd7\xee\xf7\xd6\xee\xf7\xd8\xee\xf6\xda\xef\xf6\ \xd7\xed\xf6\xd5\xeb\xf6\xd5\xed\xf5\xd3\xed\xf6\xd2\xed\xf4\xd4\ \xed\xf5\xd2\xea\xf4\xd0\xe9\xf5\xce\xe8\xf3\xcb\xe6\xf2\xa4\xc8\ \xd2\x7c\xa6\xb7\x6b\x87\x96\x56\x72\x7c\x42\x54\x57\x3d\x4a\x4a\ \x34\x3e\x3f\x3b\x47\x4a\x3d\x42\x47\x39\x41\x45\x36\x40\x40\x35\ \x3f\x39\x34\x3e\x3f\x38\x3f\x3b\x36\x39\x37\x35\x3c\x3e\x31\x35\ \x36\x31\x35\x36\x2f\x37\x3c\x32\x39\x3d\x30\x3a\x3d\x30\x38\x39\ \x2d\x37\x34\x2c\x32\x2f\x32\x3a\x38\x2f\x36\x33\x2f\x37\x37\x33\ \x38\x3e\x30\x38\x35\x30\x3a\x38\x30\x37\x36\x32\x3d\x3d\x3f\x54\ \x69\x3f\x5b\x74\x49\x72\x98\x4f\x7c\x9e\x3d\x58\x6c\x43\x62\x7c\ \x44\x5f\x78\x38\x4b\x5e\x3e\x51\x5e\x42\x5c\x6f\x3f\x53\x62\x45\ \x5d\x75\x49\x61\x73\x47\x60\x78\x4b\x61\x7a\x4d\x67\x82\x40\x4e\ \x55\x49\x62\x6d\x4f\x6f\x89\x4c\x5d\x71\x42\x61\x76\x4b\x6c\x8c\ \x4a\x66\x86\x3a\x51\x66\x45\x60\x6e\x3f\x45\x4a\x41\x4b\x56\x37\ \x42\x43\x2f\x35\x33\x2e\x32\x34\x31\x40\x45\x2f\x3f\x3e\x37\x42\ \x40\x39\x45\x43\x38\x44\x42\x37\x3f\x44\x37\x42\x43\x31\x37\x37\ \x40\x4a\x51\x3d\x45\x47\x3c\x3e\x42\x3a\x3e\x3c\x46\x59\x5c\x3c\ \x4f\x51\x3d\x41\x40\x40\x48\x50\x39\x44\x45\x42\x48\x48\x3a\x41\ \x40\x32\x3e\x3f\x39\x48\x46\x43\x4f\x4d\x3d\x4a\x49\x41\x4a\x54\ \x39\x44\x48\x32\x39\x37\x32\x3b\x3e\x3b\x41\x47\x41\x4d\x51\x3a\ \x49\x4c\x35\x3a\x41\x38\x3f\x44\x37\x43\x47\x43\x51\x54\x47\x51\ \x5a\x3f\x46\x53\x40\x4d\x63\x3e\x4d\x55\x3b\x48\x4a\x3d\x4b\x4e\ \x43\x50\x5a\x3d\x46\x4c\x3f\x54\x5d\x47\x55\x5e\x3e\x50\x51\x3a\ \x45\x49\x40\x4a\x50\x43\x52\x57\x48\x4b\x54\x3e\x42\x44\x3b\x48\ \x4c\x41\x4b\x4f\x3c\x46\x47\x3d\x44\x43\x3e\x4b\x49\x3e\x49\x4e\ \x40\x4a\x4e\x3a\x44\x4d\x36\x3d\x3c\x38\x41\x43\x36\x40\x42\x3f\ \x4b\x4d\x44\x4f\x56\x46\x53\x5b\x39\x42\x43\x38\x47\x49\x00\x00\ \x00\x97\xc0\xe0\x8c\xba\xdc\x80\xb1\xd4\x77\xa8\xc8\x6b\x97\xb7\ \x61\x8a\xaa\x66\x8d\xad\x6d\x90\xb2\x69\x89\xac\x59\x78\x99\x4c\ \x6c\x8d\x46\x6a\x8a\x90\xb1\xca\xbf\xd9\xe7\xd2\xe9\xf0\xcf\xe8\ \xf3\xd2\xeb\xf5\xcf\xeb\xf6\xd1\xec\xf7\xd5\xed\xf7\xd8\xee\xf7\ \xd3\xed\xf5\xd9\xee\xf7\xdc\xee\xf6\xdb\xef\xf6\xd9\xef\xf6\xd6\ \xed\xf6\xd5\xec\xf6\xd0\xea\xf3\xd1\xeb\xf5\xd0\xea\xf4\xd4\xec\ \xf5\xcf\xe9\xf5\xcd\xe7\xf3\xca\xe5\xf2\xc3\xe3\xef\xaf\xd9\xea\ \x8d\xb6\xc8\x67\x82\x90\x66\x89\x9a\x60\x7d\x8b\x66\x83\x92\x53\ \x6a\x72\x45\x56\x5c\x45\x54\x59\x3c\x4b\x4d\x34\x3f\x3f\x33\x3d\ \x3d\x3c\x41\x43\x37\x3c\x41\x35\x3e\x45\x36\x39\x3c\x36\x3d\x4d\ \x33\x3b\x4c\x2c\x36\x37\x2f\x36\x34\x2b\x33\x35\x29\x29\x2e\x2b\ \x2f\x32\x27\x2e\x2f\x25\x29\x2e\x2d\x31\x37\x27\x2e\x2f\x39\x42\ \x43\x34\x3d\x3e\x2c\x33\x35\x33\x3e\x41\x31\x35\x39\x34\x43\x46\ \x35\x3f\x48\x38\x4f\x5a\x4e\x76\x93\x4d\x6b\x86\x40\x61\x77\x38\ \x4f\x5f\x47\x64\x79\x47\x5b\x69\x42\x58\x67\x52\x70\x8a\x42\x4f\ \x57\x48\x5b\x6a\x4c\x59\x62\x4a\x5a\x66\x44\x56\x62\x49\x64\x79\ \x4f\x75\x8f\x49\x6d\x8d\x3d\x5b\x79\x34\x45\x51\x31\x3d\x40\x33\ \x3d\x3d\x3c\x41\x45\x39\x40\x45\x3b\x44\x46\x31\x36\x35\x32\x32\ \x34\x35\x3d\x3d\x40\x46\x4a\x3c\x49\x4d\x40\x4b\x4f\x41\x4c\x4f\ \x3d\x46\x44\x3f\x49\x4d\x3c\x45\x4a\x41\x48\x4e\x46\x54\x59\x37\ \x42\x40\x36\x3d\x3e\x36\x41\x3d\x31\x3a\x37\x37\x40\x43\x34\x38\ \x3a\x36\x3e\x40\x2c\x36\x36\x31\x3e\x42\x3c\x45\x4a\x41\x4d\x54\ \x3a\x46\x4a\x2e\x37\x38\x2d\x31\x32\x2e\x38\x39\x31\x37\x40\x34\ \x37\x3c\x41\x4e\x52\x44\x50\x55\x3f\x49\x47\x3e\x43\x47\x40\x4a\ \x4d\x3d\x49\x4d\x3a\x45\x46\x35\x44\x46\x3c\x43\x47\x38\x40\x45\ \x3b\x45\x4d\x38\x3f\x40\x37\x44\x42\x3e\x4f\x57\x3a\x48\x4d\x41\ \x4a\x4f\x42\x4a\x52\x42\x4a\x51\x3a\x43\x44\x3d\x46\x49\x3e\x4c\ \x52\x42\x4d\x53\x38\x3f\x3f\x3c\x46\x4b\x43\x4a\x51\x3d\x44\x46\ \x32\x3f\x39\x35\x42\x3f\x38\x42\x47\x3c\x49\x4b\x39\x41\x42\x36\ \x3c\x3d\x3d\x48\x49\x40\x4b\x53\x3e\x49\x51\x3c\x47\x48\x3d\x44\ \x44\x34\x3e\x3f\x42\x4d\x51\x46\x55\x5f\x00\x00\x00\x99\xc5\xe5\ \x92\xc1\xe2\x88\xbd\xdd\x87\xbb\xda\x85\xb4\xd5\x86\xaf\xd2\x8b\ \xb2\xd2\x8d\xb2\xd2\x89\xad\xcf\x80\xa4\xc6\x7a\x9e\xbf\x89\xb0\ \xd0\x93\xbe\xd8\x94\xc0\xd8\x9e\xc3\xdf\xbd\xd7\xe9\xd0\xe7\xf1\ \xcf\xe9\xf4\xd0\xea\xf5\xd3\xeb\xf5\xd5\xed\xf6\xd7\xeb\xf7\xd6\ \xeb\xf6\xd5\xea\xf4\xd8\xed\xf6\xd8\xee\xf6\xd7\xed\xf6\xd6\xec\ \xf5\xd2\xec\xf4\xd3\xeb\xf4\xd0\xe9\xf1\xd0\xe7\xf2\xcd\xe8\xf1\ \xcd\xe7\xf2\xca\xe5\xf1\xc9\xe4\xf1\xc7\xe3\xf1\xc0\xe1\xf1\xb0\ \xda\xe9\x77\xa1\xbc\x77\xa2\xb4\x8f\xb3\xd1\x7f\xac\xc2\x64\x7f\ \x91\x67\x91\xa4\x5b\x75\x86\x57\x75\x7f\x54\x67\x6f\x3c\x4b\x4e\ \x39\x44\x42\x2d\x36\x36\x33\x38\x3b\x2d\x33\x34\x2e\x36\x35\x29\ \x2d\x2e\x22\x29\x2a\x29\x2d\x2f\x35\x39\x39\x2d\x2f\x34\x29\x2b\ \x2b\x27\x2d\x33\x2e\x36\x34\x2a\x2e\x2d\x33\x36\x35\x2a\x31\x32\ \x2b\x34\x35\x2b\x32\x33\x30\x35\x36\x34\x39\x3b\x3d\x41\x42\x31\ \x39\x3a\x34\x41\x44\x3a\x49\x59\x46\x66\x7f\x40\x5b\x6b\x44\x56\ \x6f\x43\x54\x69\x46\x5b\x6b\x45\x58\x68\x44\x54\x5c\x4e\x67\x7e\ \x46\x58\x6a\x47\x61\x75\x46\x61\x7a\x40\x5c\x6d\x36\x4a\x62\x31\ \x3e\x46\x4a\x68\x7f\x3c\x5c\x6e\x3a\x48\x4a\x38\x41\x44\x31\x37\ \x38\x38\x39\x3c\x34\x37\x38\x3c\x43\x44\x3b\x46\x46\x3a\x47\x45\ \x43\x4b\x4e\x41\x4b\x4b\x37\x3e\x3d\x33\x38\x37\x31\x35\x38\x2b\ \x38\x38\x36\x41\x40\x36\x3e\x3d\x37\x39\x37\x36\x43\x40\x3d\x49\ \x4d\x43\x4d\x4b\x45\x4f\x54\x42\x4e\x53\x38\x3f\x42\x38\x42\x44\ \x3c\x4d\x51\x40\x48\x4f\x38\x48\x47\x3a\x47\x4e\x37\x39\x3d\x38\ \x41\x41\x3e\x49\x50\x3f\x4c\x4f\x3e\x44\x48\x3f\x47\x4c\x3e\x4b\ \x4c\x36\x3b\x3a\x37\x3e\x3d\x36\x3d\x40\x38\x44\x43\x37\x48\x4c\ \x47\x54\x59\x3e\x44\x4b\x33\x3a\x3a\x3b\x49\x4d\x3d\x42\x48\x33\ \x3e\x3d\x36\x48\x4d\x34\x3c\x3f\x31\x3e\x3d\x35\x46\x48\x38\x43\ \x43\x3c\x42\x45\x32\x3c\x3a\x3b\x41\x46\x34\x40\x40\x3c\x44\x48\ \x39\x43\x3e\x3e\x4a\x4d\x3c\x45\x49\x37\x42\x40\x41\x52\x53\x41\ \x50\x57\x44\x4e\x55\x3c\x43\x47\x37\x3e\x40\x37\x42\x49\x3b\x4d\ \x51\x38\x43\x43\x3e\x47\x4b\x40\x4e\x53\x36\x3f\x3c\x38\x3e\x3f\ \x3f\x3f\x46\x35\x46\x47\x00\x00\x00\x99\xc8\xe6\x99\xc7\xe7\x94\ \xc3\xe1\x91\xc0\xdf\x90\xbe\xdd\x93\xbd\xdc\x98\xbf\xdb\x95\xbf\ \xda\x8f\xbc\xdb\x8e\xb9\xdb\x8e\xba\xdc\x91\xbd\xdd\x8f\xbc\xd9\ \x96\xc0\xda\x9c\xc2\xdf\x9c\xc2\xe1\x9e\xc1\xdc\x9f\xbc\xcc\xcd\ \xdf\xea\xcf\xe8\xf2\xd0\xea\xf4\xd0\xe9\xf5\xcf\xe9\xf5\xcd\xe7\ \xf3\xd1\xea\xf3\xd3\xeb\xf5\xd4\xec\xf4\xce\xe9\xf0\xd4\xea\xf4\ \xd2\xe9\xf4\xd0\xe9\xf2\xd2\xea\xf4\xcf\xea\xf3\xcf\xe8\xf3\xcc\ \xe7\xf2\xcc\xe7\xf3\xca\xe6\xf2\xc8\xe6\xf2\xc2\xe4\xf2\x9e\xd7\ \xed\xad\xd9\xeb\xad\xd5\xe9\x99\xc5\xd9\x89\xbb\xd9\x87\xbc\xdb\ \x6e\x9c\xbb\x64\x94\xb7\x67\x8c\xa1\x4c\x63\x7a\x47\x5e\x6d\x2d\ \x3f\x44\x30\x38\x3b\x2a\x33\x35\x34\x38\x3a\x2f\x37\x38\x2b\x32\ \x30\x30\x35\x36\x26\x2d\x2b\x23\x2a\x2c\x2f\x38\x33\x2d\x31\x33\ \x2c\x34\x36\x1f\x25\x24\x2a\x34\x36\x35\x3b\x39\x2d\x30\x34\x2e\ \x31\x38\x2a\x33\x33\x37\x3d\x41\x29\x36\x3b\x31\x3b\x40\x32\x37\ \x3b\x2f\x39\x3b\x38\x43\x49\x48\x5f\x78\x4d\x6e\x8a\x46\x60\x71\ \x53\x61\x77\x53\x66\x7b\x4f\x64\x77\x4d\x5d\x70\x4b\x65\x7e\x44\ \x62\x7f\x34\x44\x55\x3e\x48\x4a\x48\x5c\x6a\x51\x76\x92\x57\x8c\ \xb6\x42\x6e\x91\x3f\x5b\x6d\x38\x45\x49\x38\x3f\x40\x37\x44\x49\ \x3d\x44\x46\x40\x4a\x53\x45\x50\x57\x3c\x45\x47\x3c\x40\x44\x31\ \x3e\x3f\x38\x3b\x3f\x3a\x40\x3f\x45\x4d\x57\x3d\x4b\x53\x3f\x4e\ \x4f\x39\x40\x41\x41\x4a\x47\x3f\x4a\x4e\x3a\x43\x48\x46\x4a\x4e\ \x3b\x41\x41\x37\x42\x3f\x34\x3e\x41\x37\x45\x41\x3a\x41\x46\x36\ \x42\x47\x37\x3f\x40\x37\x3d\x3e\x41\x4a\x4f\x45\x4f\x55\x40\x47\ \x4d\x36\x3c\x3f\x33\x39\x3b\x41\x47\x4f\x36\x43\x46\x33\x3c\x3d\ \x35\x42\x44\x35\x43\x47\x3b\x47\x4c\x3c\x4b\x4d\x41\x48\x4e\x44\ \x52\x55\x40\x52\x58\x3e\x4b\x50\x40\x44\x48\x3e\x45\x4b\x3f\x44\ \x4a\x38\x44\x45\x4d\x5c\x5f\x48\x4d\x56\x42\x50\x55\x46\x50\x51\ \x3d\x48\x46\x40\x4b\x4e\x43\x52\x55\x43\x50\x57\x3f\x47\x50\x33\ \x43\x43\x37\x43\x46\x3a\x42\x41\x3c\x3f\x47\x36\x3b\x3c\x36\x3d\ \x41\x38\x41\x42\x3e\x4d\x51\x3c\x42\x44\x3b\x47\x45\x39\x40\x42\ \x3d\x43\x46\x37\x42\x43\x37\x47\x45\x45\x4e\x4e\x46\x52\x57\x4c\ \x5c\x62\x00\x00\x00\x99\xc8\xe6\x9b\xc5\xe5\x9a\xc3\xe2\x96\xc2\ \xdf\x96\xc2\xe0\x97\xc2\xdb\x97\xc2\xda\x91\xc0\xd8\x8d\xbd\xd9\ \x90\xbe\xdf\x91\xc0\xe0\x93\xc1\xe1\x91\xbe\xde\x97\xbf\xdf\x9b\ \xc2\xe2\x99\xc1\xe2\x89\xb2\xd1\x43\x69\x81\x6b\x8d\xa3\xa9\xc5\ \xd9\xc7\xdf\xe9\xd4\xe7\xf1\xcd\xe6\xf1\xc9\xe3\xf0\xce\xe6\xf1\ \xd0\xe9\xf4\xd3\xea\xf3\xce\xe8\xf1\xcf\xe8\xf2\xd0\xe7\xf2\xce\ \xe6\xf1\xcf\xe6\xf3\xcd\xe8\xf2\xce\xe7\xf2\xcb\xe6\xf1\xcd\xe8\ \xf3\xc9\xe4\xf1\xc8\xe4\xf1\xb0\xdf\xf1\x97\xd5\xed\xbb\xdf\xef\ \xb8\xde\xed\xb1\xd9\xee\xb7\xdd\xf0\xbc\xe0\xf3\xb1\xdb\xee\x96\ \xc5\xdd\x75\xa6\xc8\x4b\x71\x89\x42\x52\x61\x4d\x65\x6e\x32\x42\ \x3f\x25\x2e\x2f\x32\x34\x34\x25\x28\x29\x29\x2f\x32\x2a\x2d\x2d\ \x27\x2d\x2b\x21\x28\x29\x24\x2c\x2c\x22\x25\x23\x21\x23\x20\x26\ \x28\x27\x2b\x30\x35\x26\x2a\x2c\x22\x28\x28\x25\x2b\x2e\x23\x2d\ \x2b\x29\x34\x2f\x2a\x30\x35\x2c\x34\x30\x2d\x34\x32\x2e\x33\x33\ \x35\x41\x44\x3e\x4a\x4f\x39\x40\x4b\x40\x53\x6b\x42\x5d\x73\x47\ \x56\x68\x4a\x6a\x87\x45\x58\x77\x35\x4d\x5c\x41\x58\x65\x49\x67\ \x7b\x50\x82\xa0\x51\x7d\x9e\x41\x63\x7d\x2e\x3c\x49\x3f\x4e\x57\ \x39\x49\x4a\x50\x77\x8d\x3e\x59\x69\x38\x49\x4c\x3e\x48\x4a\x35\ \x3f\x40\x32\x3b\x39\x36\x3d\x3f\x2f\x38\x36\x33\x3f\x40\x37\x42\ \x3f\x42\x4d\x4e\x45\x52\x5c\x3d\x48\x49\x30\x38\x39\x2f\x36\x32\ \x38\x3e\x3e\x33\x3e\x3e\x34\x47\x46\x2e\x39\x37\x36\x3c\x3e\x41\ \x46\x4b\x3c\x3c\x43\x3e\x48\x4e\x37\x40\x3e\x30\x3a\x3a\x35\x3d\ \x3d\x3d\x48\x4d\x46\x52\x53\x4a\x54\x56\x45\x52\x59\x38\x45\x44\ \x47\x53\x55\x49\x55\x5c\x39\x41\x40\x41\x4a\x4b\x42\x4d\x55\x3a\ \x47\x48\x46\x50\x56\x47\x55\x55\x4a\x58\x57\x36\x3c\x3d\x35\x3c\ \x40\x40\x46\x4a\x3f\x46\x48\x3e\x4b\x4d\x46\x51\x5a\x3b\x4a\x50\ \x3f\x47\x4a\x3e\x46\x46\x3b\x47\x4c\x3e\x49\x49\x3e\x48\x4e\x34\ \x3e\x3f\x33\x3c\x3d\x35\x3e\x43\x3d\x44\x48\x40\x4d\x52\x3b\x44\ \x4a\x38\x3c\x3f\x3b\x45\x47\x3b\x4a\x49\x3a\x45\x4b\x37\x41\x43\ \x37\x3d\x48\x3b\x42\x41\x3a\x44\x44\x41\x4a\x4d\x40\x42\x48\x3e\ \x46\x49\x34\x44\x41\x35\x3c\x3b\x3d\x48\x4a\x42\x4b\x4f\x00\x00\ \x00\x96\xc2\xe1\x94\xbb\xda\x98\xbd\xda\x92\xbd\xd7\x93\xbf\xd8\ \x96\xc0\xd9\x97\xc1\xd9\x91\xbf\xd7\x8f\xbf\xd8\x8d\xbc\xd9\x8e\ \xbd\xd9\x8e\xbd\xd9\x91\xc0\xda\x92\xc0\xdb\x97\xc3\xe1\x95\xc0\ \xe1\x7f\xab\xca\x49\x74\x8b\x65\x8b\xa1\x8e\xb2\xce\x8f\xb3\xd4\ \x84\xa3\xbe\x74\x89\x99\xc0\xd8\xe4\xcc\xe7\xf0\xcc\xe8\xf2\xcd\ \xe5\xf1\xca\xe6\xee\xc9\xe4\xf0\xcb\xe5\xf1\xcc\xe6\xf2\xca\xe5\ \xf1\xca\xe6\xf1\xca\xe5\xf1\xca\xe6\xf0\xc9\xe4\xf0\xcb\xe6\xf1\ \xc7\xe7\xf1\xb4\xe2\xf3\xba\xdf\xf0\xca\xe4\xf1\xc9\xe5\xf0\xc1\ \xe0\xef\xb7\xdd\xf0\xb7\xda\xee\xb1\xdc\xf0\xae\xd8\xf0\x8b\xbe\ \xdb\x64\x97\xb6\x60\x84\xa1\x47\x5d\x6b\x4b\x62\x70\x3c\x4f\x54\ \x2f\x33\x2f\x2e\x34\x39\x2e\x2f\x31\x25\x2b\x29\x22\x26\x26\x1a\ \x1f\x1c\x29\x2d\x2e\x26\x2b\x2b\x2f\x31\x33\x23\x27\x2a\x24\x28\ \x2d\x21\x26\x2a\x20\x28\x25\x23\x2a\x2a\x2b\x33\x37\x2a\x2c\x2e\ \x26\x2f\x2b\x27\x2e\x2a\x25\x2c\x28\x27\x30\x32\x2a\x37\x39\x2a\ \x37\x36\x32\x3f\x46\x34\x42\x46\x38\x4a\x60\x4f\x7c\xa0\x38\x4c\ \x5f\x39\x41\x43\x37\x48\x48\x38\x4a\x59\x4e\x81\xa6\x3c\x60\x78\ \x31\x3d\x41\x44\x4d\x54\x45\x55\x5c\x51\x69\x7d\x55\x81\xa2\x4d\ \x7e\xa4\x3d\x5c\x73\x58\x7a\x96\x49\x69\x76\x39\x40\x41\x3a\x41\ \x46\x3d\x40\x43\x41\x4e\x55\x3e\x4c\x52\x3a\x42\x44\x38\x3f\x3c\ \x34\x3e\x3c\x37\x40\x3b\x3a\x46\x47\x43\x48\x50\x45\x52\x57\x3e\ \x4a\x4b\x46\x54\x5f\x3a\x43\x48\x40\x46\x4d\x36\x43\x4c\x35\x3e\ \x41\x38\x41\x40\x32\x3c\x39\x42\x4b\x51\x42\x50\x52\x3e\x47\x48\ \x3e\x4a\x4c\x3b\x44\x49\x30\x3d\x3d\x3c\x48\x48\x44\x4b\x4e\x43\ \x4b\x4f\x39\x49\x4a\x43\x51\x59\x41\x4b\x4e\x3a\x42\x42\x3b\x44\ \x49\x3b\x41\x44\x3e\x44\x4a\x4a\x54\x59\x40\x4e\x54\x3e\x48\x4b\ \x3c\x47\x4b\x41\x4e\x50\x3e\x48\x4b\x35\x42\x40\x3e\x47\x46\x3d\ \x45\x4a\x39\x40\x3e\x30\x3f\x40\x36\x46\x46\x36\x44\x47\x3c\x4b\ \x54\x39\x43\x4a\x38\x3d\x41\x3f\x4b\x4d\x3c\x42\x41\x37\x42\x41\ \x3b\x3f\x44\x3b\x48\x4b\x39\x41\x41\x36\x41\x40\x38\x46\x47\x3c\ \x49\x46\x32\x39\x3a\x3b\x43\x42\x3b\x45\x45\x33\x3d\x40\x37\x47\ \x48\x43\x4a\x4e\x43\x49\x4e\x35\x3d\x39\x00\x00\x00\x87\xb0\xd2\ \x6f\x94\xb3\x84\xa9\xc4\x83\xae\xc6\x81\xa9\xc2\x6f\x95\xac\x6c\ \x93\xa8\x7b\xa2\xba\x84\xac\xc4\x81\xa9\xc2\x89\xb0\xcc\x8e\xb8\ \xd1\x8d\xb9\xcd\x8a\xb6\xc6\x89\xb5\xc7\x8a\xb8\xd0\x85\xb6\xd0\ \x7d\xac\xc4\x56\x7d\x96\x52\x74\x94\x7b\x9c\xbf\x6b\x87\xa4\x18\ \x2f\x45\x46\x60\x74\xa2\xc1\xd7\xc8\xe1\xed\xc7\xe0\xed\xc7\xe4\ \xef\xc8\xe3\xf0\xc7\xe4\xf0\xc9\xe5\xf1\xca\xe5\xf1\xc8\xe5\xf0\ \xc8\xe2\xee\xc7\xe1\xee\xc3\xe3\xef\xc5\xe2\xf0\xc5\xe3\xf0\xc8\ \xe3\xf1\xca\xe4\xf0\xcb\xe4\xf0\xc8\xe1\xee\xc1\xdf\xec\xc2\xde\ \xeb\xbe\xdb\xea\xb0\xd9\xea\xa5\xd3\xeb\xa4\xd1\xeb\x96\xc7\xdd\ \x41\x5c\x63\x40\x5b\x62\x4d\x68\x79\x4e\x67\x78\x4b\x65\x74\x33\ \x43\x45\x1e\x21\x20\x21\x25\x28\x26\x29\x27\x1f\x27\x26\x1a\x1c\ \x19\x21\x25\x26\x18\x1f\x20\x22\x26\x29\x21\x27\x27\x1f\x29\x22\ \x23\x23\x23\x19\x1b\x1c\x1f\x1d\x1f\x21\x20\x21\x22\x27\x27\x22\ \x24\x20\x21\x27\x24\x2a\x2c\x2f\x27\x2e\x31\x23\x2c\x2c\x29\x32\ \x36\x39\x42\x45\x35\x3b\x43\x45\x61\x78\x31\x38\x3c\x33\x41\x3f\ \x37\x45\x43\x37\x3f\x3f\x3a\x4a\x52\x3c\x4d\x5a\x48\x6a\x7e\x49\ \x70\x87\x4c\x7d\xa3\x4f\x70\x95\x4b\x72\x99\x3a\x52\x5c\x3d\x4b\ \x53\x3e\x4e\x59\x4d\x79\xa1\x3d\x57\x6d\x3b\x43\x47\x40\x4a\x4f\ \x42\x4f\x4c\x35\x43\x46\x33\x3a\x39\x43\x4a\x4f\x3d\x4e\x4d\x3a\ \x40\x41\x40\x4b\x4d\x3f\x48\x49\x3e\x43\x46\x3a\x45\x45\x3d\x3e\ \x45\x31\x3c\x3f\x35\x3c\x44\x31\x3d\x3a\x37\x41\x43\x38\x46\x45\ \x3b\x44\x48\x3d\x47\x4e\x43\x4d\x4c\x3b\x41\x44\x41\x50\x52\x40\ \x4d\x52\x3e\x46\x4a\x44\x51\x5a\x49\x4e\x58\x47\x50\x57\x3e\x49\ \x47\x3a\x46\x4b\x3a\x41\x46\x3f\x48\x48\x36\x3f\x41\x3f\x46\x48\ \x3b\x48\x48\x3d\x4e\x50\x45\x51\x57\x3a\x42\x41\x3a\x48\x47\x3f\ \x4d\x52\x3f\x41\x49\x37\x40\x42\x44\x4e\x59\x4d\x57\x61\x46\x4f\ \x53\x47\x4b\x55\x3b\x42\x46\x35\x3c\x3a\x37\x40\x44\x34\x3d\x3d\ \x30\x39\x36\x38\x3f\x42\x38\x43\x46\x38\x42\x40\x37\x45\x49\x3e\ \x4c\x4f\x3b\x45\x46\x3f\x4b\x49\x3a\x44\x48\x38\x42\x40\x3f\x49\ \x4d\x41\x4c\x52\x3e\x46\x4a\x45\x52\x58\x3f\x48\x4d\x3a\x42\x47\ \x34\x3e\x3f\x35\x3f\x40\x00\x00\x00\x62\x8b\xaf\x4e\x73\x93\x80\ \xa5\xc0\x74\x9a\xb4\x4f\x74\x8a\x16\x38\x4c\x48\x6c\x81\x61\x86\ \x9e\x4d\x6f\x89\x41\x61\x7b\x52\x76\x91\x5f\x86\x9e\x59\x80\x91\ \x3d\x61\x6b\x3c\x61\x6c\x67\x90\xa0\x84\xb4\xc9\x7f\xae\xc8\x7f\ \xa5\xc6\x81\xa1\xc5\x7b\x99\xba\x51\x6a\x82\x0a\x1e\x31\x3b\x58\ \x6f\x88\xb0\xcc\x8a\xb7\xd5\x97\xbc\xd8\xb1\xd0\xe2\xc9\xe2\xec\ \xc2\xdf\xeb\xc8\xe3\xf1\xcb\xe5\xf1\xca\xe5\xf1\xc2\xde\xec\xc4\ \xe0\xef\xc0\xdd\xeb\xc4\xe0\xef\xc3\xe2\xed\xc9\xe4\xf0\xc8\xe3\ \xef\xc9\xe2\xee\xc2\xdd\xeb\xbe\xd8\xe8\xba\xd8\xe5\xb9\xd4\xe1\ \xb7\xd2\xe2\xb8\xdb\xed\xb1\xd8\xeb\x95\xc8\xe0\x90\xbd\xda\x91\ \xc1\xdb\x5e\x89\xa3\x87\xad\xcf\x7a\xa1\xbb\x43\x68\x7d\x36\x4d\ \x56\x2f\x3a\x3a\x2d\x3b\x3b\x2c\x38\x33\x1a\x23\x1e\x21\x29\x25\ \x23\x26\x23\x1f\x26\x27\x23\x27\x26\x21\x27\x25\x1f\x23\x26\x1e\ \x21\x21\x1b\x21\x1e\x1f\x27\x24\x29\x30\x2e\x1d\x23\x1e\x1e\x26\ \x20\x19\x1d\x21\x1f\x24\x20\x22\x2a\x29\x27\x2a\x2d\x37\x3b\x3e\ \x36\x3b\x39\x37\x3f\x40\x38\x3e\x3f\x41\x49\x4d\x36\x42\x40\x37\ \x3d\x3b\x38\x3f\x43\x38\x39\x3d\x39\x48\x56\x48\x69\x87\x4f\x7d\ \x9e\x3b\x4c\x4e\x40\x52\x61\x4c\x71\x93\x40\x62\x7e\x3d\x63\x81\ \x3e\x6c\x96\x3b\x56\x6b\x38\x42\x4b\x50\x6b\x7f\x39\x4c\x54\x32\ \x3c\x3f\x39\x48\x4a\x40\x4f\x4d\x3e\x4a\x4d\x36\x3f\x3b\x3f\x4a\ \x49\x3e\x43\x46\x36\x3c\x3c\x2f\x34\x35\x38\x43\x48\x3f\x50\x52\ \x44\x4f\x51\x3c\x45\x4a\x3e\x45\x47\x3a\x44\x43\x3d\x49\x4b\x3c\ \x44\x46\x34\x39\x3b\x3f\x4b\x4e\x46\x52\x5b\x3f\x49\x47\x41\x49\ \x4b\x3b\x49\x4e\x35\x3e\x3b\x36\x40\x41\x40\x4d\x4f\x3b\x4a\x4d\ \x35\x39\x38\x37\x42\x44\x41\x4b\x4f\x40\x49\x50\x3b\x44\x45\x4a\ \x55\x5e\x3e\x48\x4d\x3e\x46\x4a\x40\x49\x4c\x37\x3c\x41\x33\x3b\ \x3a\x31\x3e\x3d\x38\x41\x45\x35\x3e\x3d\x34\x3b\x3e\x3e\x45\x49\ \x39\x43\x45\x41\x48\x49\x3d\x4e\x57\x38\x41\x43\x40\x47\x4c\x3e\ \x4b\x53\x3f\x49\x50\x3a\x3d\x3e\x30\x3d\x3f\x37\x43\x45\x39\x43\ \x45\x36\x3d\x3f\x30\x3a\x34\x39\x44\x44\x38\x45\x46\x32\x3c\x3c\ \x39\x42\x43\x33\x3e\x3f\x38\x3d\x3e\x3c\x43\x45\x42\x4a\x4f\x3e\ \x47\x48\x00\x00\x00\x56\x80\xa4\x3a\x5f\x80\x7a\x9f\xbb\x89\xb2\ \xcb\x6a\x90\xa9\x1e\x42\x5a\x58\x7d\x99\x6f\x94\xb4\x47\x66\x84\ \x24\x40\x5b\x62\x84\xa0\x76\x9c\xb6\x5f\x84\x99\x2c\x4a\x59\x16\ \x30\x3e\x4b\x6a\x7c\x80\xa6\xbe\x83\xac\xca\x70\x95\xba\x6b\x8d\ \xb1\x78\x95\xaf\x35\x4b\x5c\x07\x1c\x2b\x66\x86\x9a\x89\xb3\xcd\ \x84\xb0\xcd\x77\x9f\xbc\x6f\x93\xb1\x86\xab\xc6\xa9\xc7\xdb\xb6\ \xce\xdb\xc6\xdf\xeb\xc5\xe0\xee\xc0\xdf\xeb\xbf\xdd\xea\xbd\xdc\ \xe6\xc2\xdf\xed\xc6\xe0\xee\xc5\xdf\xed\xc2\xdf\xec\xc3\xde\xea\ \xc3\xde\xeb\xbe\xda\xe7\xb5\xd5\xe4\xb6\xd5\xe5\xbb\xd5\xe4\xb2\ \xd2\xe1\xb5\xd2\xe4\xb4\xd2\xe2\xb2\xcf\xe2\xa5\xcb\xe2\x93\xc3\ \xde\x88\xb7\xd7\x5d\x92\xbc\x53\x8a\xbb\x4c\x81\xad\x35\x58\x6d\ \x32\x4c\x5e\x3c\x5d\x75\x35\x55\x64\x30\x44\x4b\x29\x3d\x3e\x31\ \x3e\x42\x2e\x3b\x39\x2c\x3d\x3c\x20\x29\x28\x1b\x25\x23\x23\x2d\ \x29\x26\x30\x2b\x2e\x38\x34\x40\x45\x46\x3a\x3f\x3e\x30\x39\x38\ \x23\x2f\x2f\x29\x2e\x2c\x29\x2f\x30\x30\x32\x30\x32\x37\x35\x34\ \x3d\x3b\x3a\x43\x46\x3e\x43\x49\x3b\x45\x49\x45\x4e\x56\x45\x4e\ \x55\x44\x46\x4b\x41\x4b\x4e\x45\x57\x5c\x39\x4f\x5f\x4b\x6d\x83\ \x43\x60\x7a\x45\x61\x79\x3b\x48\x54\x38\x4b\x50\x38\x4a\x52\x3b\ \x50\x58\x40\x5b\x6d\x4a\x7e\xaa\x4c\x76\x9d\x46\x61\x73\x40\x4a\ \x50\x39\x44\x45\x34\x3a\x3c\x36\x3c\x3b\x3e\x4b\x4f\x3a\x46\x44\ \x3f\x48\x47\x42\x4a\x4b\x3f\x4d\x51\x3e\x4b\x52\x3b\x45\x47\x35\ \x43\x4a\x42\x4b\x52\x44\x51\x56\x44\x50\x56\x41\x4a\x4a\x38\x3e\ \x42\x3f\x44\x48\x37\x3d\x43\x33\x3e\x3d\x35\x44\x43\x3b\x45\x4f\ \x3b\x45\x4a\x41\x50\x4e\x3e\x49\x50\x32\x39\x3f\x39\x3f\x40\x4c\ \x56\x5e\x44\x4f\x54\x3b\x4a\x49\x45\x4e\x50\x3b\x48\x49\x35\x3e\ \x3e\x3b\x40\x40\x31\x3b\x3a\x3b\x40\x45\x47\x55\x56\x3c\x46\x4b\ \x3b\x46\x46\x3e\x49\x4a\x42\x4f\x53\x35\x41\x42\x39\x43\x44\x3c\ \x4b\x49\x37\x41\x46\x36\x41\x3f\x3b\x4a\x4f\x3e\x4c\x4f\x3a\x45\ \x48\x3f\x48\x4a\x3d\x4a\x4f\x3d\x46\x51\x3c\x4b\x4d\x43\x4a\x51\ \x46\x4a\x52\x3e\x46\x4a\x40\x4e\x4d\x3e\x4d\x4c\x46\x53\x58\x3f\ \x4c\x54\x49\x52\x57\x3a\x43\x44\x3f\x47\x49\x3d\x44\x47\x00\x00\ \x00\x87\xaf\xd1\x6c\x91\xb4\x5b\x83\xa3\x83\xac\xcc\x83\xaf\xca\ \x5d\x84\xa5\x5c\x82\xa7\x69\x8d\xb6\x3c\x5a\x81\x3a\x56\x77\x2f\ \x51\x6d\x62\x87\xa3\x81\xa6\xc2\x7a\x9b\xb5\x47\x63\x7b\x1b\x39\ \x51\x42\x65\x7f\x80\xa8\xc6\x8e\xb7\xd7\x80\xa6\xc3\x56\x73\x86\ \x10\x24\x31\x1b\x32\x42\x81\xa2\xb9\x8d\xb3\xcf\x93\xb9\xd8\x8c\ \xb2\xd2\x66\x8a\xa8\x40\x65\x7f\x7e\x9e\xb8\x4d\x68\x7e\x41\x53\ \x63\x91\xa5\xae\xb1\xcb\xdb\xbd\xdd\xed\xc5\xe0\xee\xc5\xe0\xee\ \xc2\xdf\xec\xc1\xdf\xeb\xc1\xde\xec\xbd\xdc\xea\xbf\xdb\xe9\xb9\ \xd7\xe7\xb8\xd7\xe6\xbb\xd8\xe7\xb5\xd5\xe3\xae\xcc\xdd\xb0\xca\ \xdd\xbb\xd3\xe2\xb3\xcf\xdf\xa7\xc8\xde\xa3\xc7\xdd\x88\xb8\xd6\ \x67\x9f\xc6\x54\x91\xbd\x48\x81\xac\x49\x7e\xa8\x4c\x81\xa5\x55\ \x89\xaf\x4e\x83\xa9\x3e\x6c\x88\x55\x8c\xac\x52\x7f\x97\x4b\x70\ \x89\x53\x7a\x96\x4f\x7a\x95\x42\x63\x77\x42\x60\x6d\x3d\x51\x5f\ \x45\x5d\x67\x47\x5b\x64\x8f\xa1\xa8\x5b\x6b\x73\x36\x4c\x53\x29\ \x35\x35\x19\x1b\x19\x28\x2a\x2e\x37\x3c\x40\x35\x3f\x3e\x3d\x46\ \x4c\x3a\x46\x45\x39\x41\x3e\x36\x42\x3e\x39\x3f\x40\x36\x3c\x3d\ \x32\x3b\x3c\x39\x41\x46\x3d\x47\x48\x3a\x4f\x53\x3c\x43\x49\x3b\ \x42\x44\x3c\x47\x4b\x39\x50\x58\x44\x67\x85\x43\x75\x99\x3a\x5b\ \x7d\x33\x43\x50\x38\x47\x4f\x41\x65\x85\x51\x7b\x9b\x42\x5c\x66\ \x41\x49\x4d\x3e\x49\x4a\x45\x4d\x52\x3a\x44\x49\x38\x42\x42\x40\ \x48\x4a\x3d\x4b\x4c\x38\x43\x43\x32\x42\x43\x40\x4c\x4e\x3b\x46\ \x4a\x3a\x41\x46\x3d\x44\x47\x37\x3f\x43\x38\x44\x46\x45\x4a\x4f\ \x3e\x49\x4c\x37\x45\x47\x34\x44\x41\x3c\x46\x4d\x3d\x4b\x4a\x48\ \x4f\x52\x40\x47\x49\x3e\x49\x49\x3e\x4c\x4e\x44\x49\x51\x3d\x40\ \x43\x3e\x46\x4a\x3c\x3e\x45\x41\x48\x4a\x38\x44\x46\x3b\x3f\x41\ \x41\x4b\x4e\x40\x48\x49\x34\x3f\x3d\x3a\x48\x4a\x3e\x51\x56\x3f\ \x49\x4c\x34\x3c\x3a\x34\x3c\x3a\x38\x45\x49\x3e\x4b\x50\x46\x56\ \x61\x3d\x4d\x50\x39\x4a\x4a\x39\x44\x48\x39\x45\x48\x3c\x45\x4a\ \x3e\x4c\x50\x3e\x48\x52\x37\x3b\x3a\x32\x3a\x38\x3b\x41\x46\x39\ \x45\x45\x43\x51\x52\x3b\x44\x4a\x38\x3e\x42\x3c\x42\x4a\x3a\x42\ \x42\x3c\x49\x4b\x45\x52\x59\x47\x55\x58\x00\x00\x00\x90\xb8\xd8\ \x89\xb4\xd4\x83\xb0\xd0\x85\xb3\xd3\x86\xb5\xd4\x80\xac\xcf\x79\ \xa1\xc9\x70\x95\xbf\x5f\x82\xa9\x67\x8c\xae\x68\x8d\xac\x59\x7d\ \x9c\x77\x9b\xbb\x8a\xad\xcc\x8f\xb2\xd0\x7d\xa2\xc1\x68\x8e\xad\ \x7d\xa6\xc5\x8c\xb7\xd4\x8e\xb4\xcc\x6c\x88\x9a\x0d\x21\x2e\x2f\ \x49\x5b\x6c\x8d\xa7\x8b\xae\xcb\x99\xba\xdb\x96\xbb\xdb\x80\xa7\ \xc4\x2c\x4e\x69\x57\x74\x8d\x57\x6d\x83\x0d\x1e\x2c\x0a\x1b\x2b\ \x65\x7b\x8e\xa6\xbc\xcb\xaf\xc7\xd8\xbd\xd9\xec\xc0\xdc\xea\xc0\ \xdb\xe9\xbb\xd7\xe6\xbb\xda\xe7\xbd\xdb\xea\xbf\xda\xe9\xbc\xd9\ \xe7\xb6\xd8\xe7\xb4\xd4\xe4\xad\xce\xdf\xad\xce\xde\xb1\xd3\xe1\ \xac\xcb\xde\x99\xc5\xd5\x97\xbc\xd3\x87\xb7\xd1\x51\x89\xae\x42\ \x7c\xa4\x27\x49\x65\x42\x78\xa0\x3a\x68\x8c\x2b\x4d\x69\x4b\x7c\ \xa9\x55\x8d\xb0\x5d\x8f\xb3\x51\x7d\xa0\x54\x7e\xa2\x51\x80\xa4\ \x4f\x7c\xa1\x4b\x76\x9b\x5f\x85\xa7\x4f\x74\x90\x4b\x6c\x83\x35\ \x4f\x63\x42\x56\x5d\x30\x49\x55\x2d\x3d\x47\x28\x3f\x42\x1c\x2b\ \x26\x18\x20\x1b\x36\x38\x3b\x3b\x42\x46\x3b\x42\x45\x31\x3d\x3d\ \x38\x41\x44\x3e\x47\x4b\x3a\x43\x43\x3b\x45\x44\x3c\x46\x4a\x3e\ \x47\x48\x32\x3a\x39\x32\x37\x38\x34\x3b\x37\x34\x40\x42\x4a\x6c\ \x85\x52\x8a\xb1\x40\x6b\x8c\x3c\x51\x61\x3a\x43\x48\x48\x56\x5e\ \x49\x63\x7a\x49\x6a\x87\x48\x6a\x8e\x46\x69\x8c\x4c\x65\x77\x40\ \x54\x5c\x36\x44\x42\x36\x39\x3b\x3d\x48\x48\x41\x4b\x4f\x40\x4c\ \x52\x3b\x47\x49\x3b\x49\x4c\x38\x42\x46\x3b\x44\x4b\x41\x49\x50\ \x34\x3c\x3a\x3d\x47\x4b\x3d\x4a\x4e\x3f\x48\x50\x34\x3f\x43\x3f\ \x46\x47\x42\x4a\x4d\x42\x4b\x4b\x40\x49\x50\x3d\x42\x47\x41\x48\ \x52\x46\x4d\x53\x3c\x44\x44\x3f\x49\x46\x38\x3f\x42\x39\x45\x46\ \x3c\x4a\x4e\x38\x41\x44\x39\x43\x43\x3f\x47\x50\x3e\x4a\x4c\x37\ \x3e\x3d\x3f\x49\x46\x43\x55\x5a\x41\x4a\x50\x3a\x40\x43\x36\x42\ \x41\x3f\x4b\x4e\x40\x4e\x52\x45\x58\x61\x3b\x46\x4d\x39\x3f\x3f\ \x3b\x45\x41\x40\x46\x4e\x38\x42\x44\x34\x3c\x44\x36\x3c\x3f\x34\ \x3d\x3d\x3c\x45\x45\x43\x50\x55\x46\x50\x52\x43\x4d\x51\x3a\x4a\ \x49\x45\x4e\x51\x45\x4e\x54\x3f\x4c\x52\x41\x4e\x57\x3f\x4a\x55\ \x3b\x41\x47\x3a\x42\x43\x00\x00\x00\x92\xbc\xdd\x8c\xbb\xdb\x87\ \xb8\xd8\x8a\xb9\xd8\x86\xb4\xd4\x86\xb5\xd5\x86\xb3\xd5\x87\xb2\ \xd3\x82\xaf\xcd\x80\xaf\xcb\x82\xac\xcb\x86\xab\xcb\x8a\xae\xcf\ \x8d\xb4\xd6\x8b\xb6\xd7\x8a\xb7\xd8\x8b\xb5\xd6\x8b\xb7\xd7\x8a\ \xb9\xd5\x91\xb8\xd0\x7c\x98\xaa\x0e\x22\x31\x49\x66\x7a\x5f\x82\ \x9e\x5f\x82\xa3\x8c\xaf\xd1\x90\xb7\xd8\x86\xb1\xce\x4b\x6f\x8b\ \x32\x52\x6c\x7a\x96\xac\x2c\x3f\x4f\x0b\x1c\x2b\x76\x93\xa9\x8d\ \xaf\xd0\x9b\xbe\xdc\x9c\xb8\xc8\x8e\x9f\xae\xa5\xbe\xd4\xb1\xcd\ \xe1\xb7\xd6\xe5\xba\xd8\xe7\xbb\xd9\xe8\xbc\xd8\xe8\xb6\xd5\xe6\ \xb6\xd5\xe5\xb2\xd1\xe5\xac\xcc\xe1\xa3\xc6\xdb\x9f\xc0\xd8\x99\ \xbf\xd2\x92\xb6\xcd\x93\xb6\xce\x82\xac\xc5\x72\x9e\xba\x67\x8d\ \xa6\x75\xa4\xc0\x63\x94\xb1\x52\x88\xa6\x50\x83\xa8\x46\x7a\x9e\ \x4e\x7e\xa4\x51\x7d\xa4\x52\x79\xa3\x4a\x74\x9a\x3a\x61\x89\x44\ \x69\x8c\x4b\x75\x98\x3c\x5d\x83\x3e\x60\x7c\x3d\x64\x83\x1f\x3c\ \x59\x21\x3e\x56\x16\x25\x2c\x2b\x3e\x47\x32\x42\x47\x2e\x3c\x3e\ \x3a\x44\x4a\x4b\x58\x5f\x43\x53\x55\x3a\x41\x45\x34\x3c\x44\x35\ \x3c\x42\x3b\x46\x47\x3a\x43\x40\x3d\x45\x47\x3e\x43\x44\x3d\x46\ \x45\x40\x4c\x4f\x3a\x41\x44\x3f\x47\x4b\x3e\x4a\x51\x46\x5b\x6d\ \x40\x55\x67\x3d\x45\x48\x3a\x41\x42\x41\x53\x66\x45\x68\x95\x37\ \x4b\x53\x44\x51\x54\x4b\x67\x79\x55\x81\xa2\x56\x85\xab\x4e\x6e\ \x89\x41\x52\x57\x41\x51\x54\x3d\x47\x4a\x34\x3e\x40\x35\x3f\x45\ \x41\x4b\x4a\x37\x42\x45\x3d\x4b\x4e\x3d\x4c\x52\x37\x45\x49\x43\ \x4f\x54\x3f\x49\x4f\x3e\x49\x4a\x3c\x47\x4a\x39\x47\x44\x34\x3d\ \x3a\x3c\x45\x43\x3b\x40\x43\x34\x42\x46\x3d\x4b\x50\x3c\x43\x44\ \x3f\x44\x44\x3d\x48\x49\x45\x4c\x52\x3d\x43\x4c\x3a\x45\x48\x38\ \x41\x44\x3b\x43\x47\x3b\x44\x44\x3b\x47\x41\x3c\x47\x48\x3f\x48\ \x49\x35\x41\x40\x37\x44\x41\x43\x48\x4c\x3e\x51\x58\x3e\x53\x5a\ \x3b\x4c\x51\x35\x3d\x42\x35\x3e\x3e\x40\x4a\x4d\x40\x4b\x4e\x3e\ \x4e\x51\x42\x4e\x52\x3d\x3f\x44\x43\x4c\x4e\x43\x4f\x4f\x40\x4a\ \x4a\x3f\x48\x4c\x3c\x46\x49\x44\x4e\x4f\x40\x4b\x51\x42\x4c\x50\ \x3e\x46\x4a\x3a\x40\x43\x38\x41\x44\x3e\x44\x48\x43\x4c\x4c\x4e\ \x58\x5d\x00\x00\x00\x8e\xb9\xd9\x8c\xbc\xdc\x89\xb8\xda\x87\xb4\ \xd7\x83\xb3\xd5\x7f\xb4\xd2\x84\xb7\xd4\x87\xb7\xd5\x83\xb6\xcf\ \x86\xb8\xd0\x8d\xb8\xd3\x91\xb6\xd5\x91\xb6\xd7\x8e\xb8\xd9\x89\ \xb8\xd7\x86\xb5\xd5\x89\xb5\xd5\x89\xb5\xd4\x86\xb6\xd3\x8a\xb5\ \xcf\x82\x9f\xb4\x14\x2b\x3b\x45\x66\x79\x81\xa6\xc1\x69\x8d\xae\ \x51\x75\x96\x7e\xa8\xc6\x88\xb3\xce\x7a\x9e\xbb\x2e\x4e\x68\x77\ \x95\xab\x3b\x51\x61\x08\x1a\x29\x75\x94\xa7\x92\xb9\xd6\x93\xbd\ \xe0\x92\xbe\xe0\x99\xc0\xda\x84\x9e\xa8\x76\x8a\x95\xa5\xbc\xd5\ \xb1\xd0\xe3\xb1\xd2\xe3\xb1\xd3\xe4\xb7\xd5\xe6\xb3\xd2\xe0\xa7\ \xcb\xdd\x9f\xc2\xd9\xa2\xc4\xd7\x9c\xc1\xd6\x95\xb9\xd0\x8f\xb4\ \xcc\x8e\xb3\xcd\x8e\xb5\xcc\x85\xab\xc7\x87\xac\xc8\x7e\xa5\xc3\ \x74\x9c\xbc\x61\x91\xaf\x55\x85\xa7\x4b\x7f\xa4\x4d\x7d\xa3\x4c\ \x7d\xa2\x3e\x6a\x96\x35\x5e\x8b\x27\x4e\x75\x2d\x53\x7d\x41\x68\ \x90\x3d\x5d\x80\x3b\x5a\x7a\x3b\x5e\x80\x15\x2f\x3e\x1c\x25\x2d\ \x20\x2d\x38\x2b\x34\x37\x38\x44\x44\x3d\x46\x48\x40\x4c\x4c\x33\ \x3e\x45\x39\x45\x48\x3e\x47\x46\x41\x47\x4d\x3c\x4a\x4b\x37\x3e\ \x3f\x34\x3c\x39\x32\x3a\x34\x33\x3b\x3b\x38\x41\x43\x3b\x40\x46\ \x36\x40\x3f\x3a\x44\x46\x3c\x47\x47\x38\x40\x43\x30\x37\x38\x38\ \x3c\x3b\x37\x42\x43\x39\x4d\x54\x41\x58\x64\x47\x64\x73\x4f\x73\ \x93\x51\x74\x95\x3c\x53\x67\x39\x4a\x53\x36\x47\x52\x52\x75\x91\ \x48\x66\x72\x39\x4b\x4c\x3b\x43\x45\x3c\x44\x47\x37\x46\x3f\x34\ \x40\x3e\x37\x41\x45\x34\x3d\x40\x33\x3e\x42\x36\x39\x3b\x2e\x3a\ \x36\x31\x3a\x38\x36\x3d\x40\x3b\x44\x45\x44\x4b\x4d\x43\x4b\x4e\ \x3e\x4a\x4d\x3f\x48\x4d\x3d\x46\x4a\x3a\x41\x47\x3a\x44\x46\x3e\ \x44\x4d\x36\x3e\x3c\x3b\x41\x40\x38\x3e\x3e\x3f\x4a\x4b\x41\x4e\ \x52\x4a\x51\x56\x3b\x49\x46\x47\x53\x54\x40\x48\x4e\x3d\x49\x47\ \x43\x4f\x53\x3f\x48\x50\x47\x55\x5c\x3d\x46\x52\x37\x42\x43\x3e\ \x4b\x4d\x45\x52\x55\x3f\x4c\x4c\x3d\x4e\x51\x3b\x48\x4a\x3f\x49\ \x4f\x3e\x45\x48\x45\x52\x55\x47\x51\x58\x47\x4e\x57\x44\x48\x4e\ \x47\x54\x5e\x41\x54\x54\x41\x4f\x53\x3b\x49\x4a\x44\x51\x54\x4e\ \x55\x5a\x4c\x54\x5a\x43\x4a\x4c\x3e\x4a\x49\x47\x50\x54\x00\x00\ \x00\x90\xb9\xd8\x8b\xb8\xd7\x84\xb3\xd3\x81\xaf\xd3\x82\xb1\xd6\ \x7c\xaf\xd3\x7f\xb3\xd3\x87\xb9\xd6\x87\xbb\xd4\x87\xbb\xd2\x91\ \xbc\xd7\x95\xbc\xdc\x90\xba\xda\x8a\xb6\xd7\x87\xb5\xd6\x89\xb6\ \xd7\x8e\xb6\xd6\x8a\xb2\xd0\x86\xb3\xd2\x87\xb2\xcf\x8d\xac\xc4\ \x2b\x44\x56\x37\x59\x6b\x87\xae\xc9\x85\xac\xce\x46\x6b\x8d\x52\ \x79\x97\x8a\xb2\xce\x81\xa2\xbe\x31\x4f\x67\x5c\x76\x89\x54\x6a\ \x78\x04\x17\x24\x67\x87\x9a\x95\xbb\xd8\x93\xbd\xdd\x96\xc2\xe2\ \x91\xbf\xe0\x8a\xbb\xde\x95\xbf\xd5\x78\x91\x99\x6e\x80\x95\x9b\ \xbc\xd5\xa8\xc8\xdc\xae\xce\xdf\xa4\xc8\xdb\xa1\xc1\xda\x9c\xc2\ \xd8\x97\xbd\xd5\x96\xbb\xd4\x90\xb7\xcf\x87\xb3\xc9\x8e\xb0\xcb\ \x8b\xac\xc7\x80\xa7\xc1\x72\x9c\xb5\x63\x8f\xac\x5b\x85\xa6\x5f\ \x84\xa4\x5a\x7e\x9d\x56\x80\xa2\x5e\x8b\xab\x64\x91\xaf\x4e\x7d\ \xa5\x27\x53\x7e\x2a\x4d\x7b\x2d\x55\x78\x33\x54\x79\x31\x51\x71\ \x3a\x53\x6b\x31\x47\x5d\x2a\x3d\x43\x16\x1f\x23\x1a\x21\x24\x23\ \x2f\x33\x4c\x5b\x64\x3c\x4d\x4d\x48\x57\x5a\x42\x4d\x4d\x47\x54\ \x57\x38\x3c\x3d\x34\x3e\x3e\x35\x3a\x3b\x39\x3e\x3e\x3c\x41\x47\ \x39\x42\x46\x3c\x42\x4a\x38\x40\x43\x2f\x38\x38\x33\x3b\x38\x3b\ \x40\x42\x39\x44\x48\x35\x3c\x3a\x3a\x44\x45\x40\x45\x4a\x3f\x49\ \x4e\x49\x64\x78\x58\x85\xa6\x51\x7c\x9b\x35\x48\x53\x3e\x53\x68\ \x4c\x75\x92\x46\x5d\x73\x4b\x68\x7f\x4b\x6e\x89\x4d\x75\x97\x4a\ \x6c\x85\x38\x48\x4f\x3d\x4a\x4c\x3d\x4b\x4e\x39\x48\x44\x36\x41\ \x42\x3f\x48\x4d\x40\x47\x4d\x3d\x45\x46\x41\x4d\x50\x47\x53\x54\ \x43\x4c\x52\x3a\x40\x44\x38\x44\x41\x38\x43\x44\x35\x41\x3e\x38\ \x3c\x3c\x32\x40\x40\x37\x40\x45\x3f\x4e\x57\x3b\x45\x4d\x37\x41\ \x41\x3e\x4a\x51\x43\x53\x56\x39\x43\x48\x36\x43\x4a\x3a\x40\x45\ \x39\x3e\x43\x35\x40\x3a\x3a\x42\x41\x3b\x48\x4f\x40\x44\x44\x3c\ \x45\x4e\x3a\x47\x4b\x30\x3c\x3c\x41\x49\x4e\x3e\x47\x4b\x37\x46\ \x4b\x3f\x4a\x4d\x48\x54\x5a\x51\x56\x63\x46\x51\x5c\x43\x4d\x57\ \x4a\x54\x57\x3c\x44\x47\x3c\x48\x4b\x41\x4b\x4e\x3a\x46\x47\x3b\ \x45\x46\x3c\x46\x46\x40\x52\x55\x40\x4d\x4e\x4a\x4f\x54\x40\x45\ \x4c\x3f\x47\x45\x43\x4c\x49\x4d\x54\x57\x00\x00\x00\x95\xc0\xda\ \x8c\xbb\xd7\x7e\xb4\xd1\x7d\xb0\xd0\x82\xb0\xd5\x80\xaf\xd5\x84\ \xb3\xd3\x89\xb9\xd5\x88\xbc\xd5\x8a\xbf\xd6\x8e\xbb\xd7\x93\xbe\ \xdc\x8f\xbb\xdc\x89\xb7\xdb\x88\xb5\xd9\x8b\xb9\xd9\x8e\xb8\xd4\ \x8c\xb4\xcf\x85\xb1\xcf\x8c\xb5\xd3\x8f\xb1\xcc\x5b\x79\x90\x1f\ \x41\x56\x7a\xa2\xbb\x87\xb0\xd2\x6a\x90\xb3\x2f\x56\x76\x7c\xa2\ \xc0\x86\xa8\xc5\x50\x6a\x82\x30\x47\x59\x5d\x71\x80\x03\x13\x21\ \x5a\x7a\x8c\x90\xba\xd3\x8e\xbc\xd9\x91\xbe\xdc\x8e\xbd\xdd\x8a\ \xba\xdd\x88\xb8\xdc\x85\xb9\xda\x93\xb8\xcb\x75\x8b\x91\x64\x78\ \x8d\x95\xb4\xcb\x9b\xc0\xd4\x9b\xbc\xd1\x98\xbb\xd1\x93\xb9\xd0\ \x8e\xb4\xcf\x8c\xb5\xcd\x85\xae\xc9\x84\xac\xc7\x7b\xa3\xbb\x69\ \x91\xae\x66\x93\xaf\x5c\x8b\xa6\x61\x85\xa4\x54\x80\x9d\x51\x7a\ \x9b\x50\x76\x99\x54\x7c\x9f\x58\x85\xa8\x42\x76\x9e\x37\x64\x90\ \x37\x5b\x83\x46\x65\x86\x43\x5f\x7c\x2c\x3c\x4d\x20\x2a\x30\x2b\ \x3d\x3c\x2e\x3e\x3d\x36\x46\x46\x38\x49\x4a\x46\x4d\x50\x4b\x55\ \x58\x49\x55\x5a\x46\x4e\x57\x49\x50\x56\x53\x5d\x68\x58\x5f\x62\ \x45\x4f\x51\x41\x4d\x4c\x3a\x42\x41\x37\x42\x42\x3e\x44\x45\x37\ \x44\x42\x34\x3c\x3d\x3b\x3e\x3e\x3e\x45\x46\x36\x40\x3f\x33\x39\ \x39\x30\x3a\x3e\x37\x3f\x43\x34\x3d\x3e\x31\x3b\x3e\x33\x3e\x42\ \x32\x41\x45\x44\x66\x81\x4f\x7e\x93\x46\x66\x7b\x40\x52\x63\x40\ \x57\x65\x4e\x77\x9b\x3b\x51\x5c\x3e\x4b\x4b\x37\x3c\x3c\x36\x41\ \x40\x3f\x48\x46\x37\x40\x42\x32\x39\x39\x36\x3d\x3e\x38\x3d\x3f\ \x37\x3c\x3f\x3a\x46\x46\x40\x49\x4c\x3f\x46\x4b\x33\x38\x3b\x30\ \x37\x35\x38\x43\x3f\x3f\x4c\x55\x41\x4a\x4d\x41\x4b\x52\x3e\x45\ \x4a\x3a\x47\x4a\x38\x41\x42\x2f\x3c\x3b\x3c\x4c\x51\x46\x50\x53\ \x41\x4e\x50\x3c\x4b\x4d\x40\x48\x4b\x40\x4c\x4f\x49\x51\x59\x45\ \x4d\x55\x40\x4a\x4f\x39\x45\x4e\x3d\x45\x4c\x3c\x45\x46\x43\x4b\ \x54\x40\x4c\x50\x40\x4a\x4d\x43\x4b\x4d\x45\x51\x50\x43\x4b\x52\ \x41\x4b\x4d\x3f\x4c\x4b\x41\x47\x48\x40\x43\x44\x3b\x44\x44\x40\ \x47\x50\x4c\x5c\x61\x4d\x52\x5c\x43\x4d\x54\x44\x4f\x4f\x40\x4d\ \x50\x39\x4b\x4e\x43\x4e\x4e\x3e\x4b\x4c\x46\x53\x53\x50\x5a\x61\ \x4a\x54\x59\x43\x4d\x51\x00\x00\x00\x93\xc0\xdd\x89\xbb\xd8\x7e\ \xb6\xd1\x7e\xb4\xd2\x80\xb1\xd5\x81\xae\xd4\x86\xb4\xd4\x8a\xbb\ \xd6\x8a\xbb\xd6\x89\xbb\xd6\x8e\xbd\xd9\x90\xbd\xdd\x8b\xba\xdb\ \x8a\xb7\xdc\x88\xb4\xdb\x87\xb8\xd9\x89\xb8\xd5\x8a\xb7\xd2\x89\ \xba\xd4\x8a\xbb\xd5\x8e\xb7\xd3\x89\xac\xc8\x4c\x6f\x8a\x4b\x70\ \x8c\x7f\xa6\xc7\x75\x9c\xbc\x31\x57\x77\x69\x8e\xb0\x8a\xad\xce\ \x6f\x8b\xa6\x1e\x32\x46\x52\x65\x73\x03\x13\x21\x54\x74\x85\x8d\ \xba\xd0\x8c\xbb\xd6\x8e\xbb\xd9\x8f\xb9\xd9\x90\xb8\xda\x8f\xb6\ \xdc\x8b\xb7\xdc\x87\xb5\xda\x8d\xb5\xd9\x94\xb0\xbc\x68\x77\x7f\ \x61\x74\x87\x82\xa2\xbd\x93\xb4\xce\x96\xbc\xd2\x8f\xb5\xce\x8c\ \xb1\xcd\x7b\xa1\xc0\x72\x9b\xba\x6b\x97\xb5\x64\x8c\xac\x62\x8e\ \xad\x5e\x89\xa8\x61\x87\xa7\x52\x7e\x9d\x4b\x78\x98\x4a\x74\x94\ \x3d\x64\x84\x48\x6a\x92\x52\x7d\x9e\x4e\x70\x8b\x37\x50\x65\x23\ \x33\x41\x1e\x2b\x32\x30\x3d\x45\x3e\x52\x57\x40\x50\x54\x44\x4d\ \x53\x3e\x4c\x4f\x48\x55\x55\x42\x48\x4b\x36\x3e\x3e\x38\x39\x38\ \x38\x42\x3f\x40\x47\x49\x40\x40\x45\x3f\x45\x45\x33\x39\x39\x3a\ \x45\x46\x44\x46\x49\x3e\x49\x45\x3a\x41\x3e\x39\x43\x43\x3b\x44\ \x43\x3b\x45\x46\x39\x42\x44\x37\x42\x45\x3d\x40\x44\x3a\x41\x43\ \x3c\x4a\x4e\x3d\x45\x44\x3d\x46\x44\x3c\x44\x47\x3e\x49\x49\x3d\ \x48\x4a\x3d\x4e\x58\x34\x48\x54\x36\x3e\x45\x3b\x45\x4b\x3c\x47\ \x4e\x3b\x46\x50\x3b\x46\x46\x38\x3d\x3f\x39\x47\x4b\x3d\x4a\x49\ \x36\x3d\x40\x3a\x42\x3f\x3e\x4c\x50\x38\x40\x3f\x3f\x47\x48\x48\ \x54\x57\x41\x4f\x53\x3b\x46\x42\x3a\x3f\x41\x40\x4b\x4f\x41\x4c\ \x4d\x41\x4a\x4d\x3a\x3f\x41\x39\x3f\x3c\x39\x45\x46\x40\x4b\x51\ \x3e\x4b\x4f\x46\x53\x59\x45\x4f\x56\x3a\x48\x4a\x31\x3c\x38\x32\ \x3e\x39\x3d\x4a\x4b\x42\x4e\x4d\x3f\x48\x4d\x32\x41\x41\x3a\x45\ \x45\x3e\x46\x49\x44\x50\x55\x43\x4d\x56\x3f\x47\x4b\x3b\x46\x4a\ \x36\x41\x3f\x3b\x42\x43\x40\x48\x48\x41\x49\x4d\x4a\x54\x59\x47\ \x52\x55\x36\x43\x43\x3d\x40\x41\x3b\x46\x46\x3f\x51\x53\x41\x4c\ \x4f\x3b\x44\x42\x35\x3c\x3e\x39\x45\x44\x44\x4d\x53\x44\x56\x58\ \x48\x53\x59\x49\x56\x5b\x43\x51\x51\x41\x4d\x53\x49\x4c\x52\x47\ \x4f\x53\x00\x00\x00\x86\xbc\xdb\x82\xb9\xd9\x7e\xb8\xd7\x81\xb8\ \xd8\x81\xb1\xd5\x83\xb0\xd5\x89\xb8\xd9\x8c\xbc\xdb\x8f\xbd\xdd\ \x8d\xbb\xdb\x8f\xbc\xdc\x8e\xbd\xdd\x8b\xba\xdb\x8a\xb7\xda\x8a\ \xb6\xdb\x88\xb8\xda\x89\xba\xd9\x86\xbb\xd8\x83\xbb\xd6\x88\xc0\ \xd9\x8d\xbd\xd8\x90\xba\xd8\x8b\xb4\xd1\x66\x90\xad\x55\x7e\x9e\ \x53\x7d\x9a\x52\x7c\x9a\x80\xaa\xca\x8a\xb2\xd2\x83\xa4\xbe\x23\ \x3a\x4b\x38\x49\x56\x05\x17\x23\x58\x77\x87\x8f\xbb\xd1\x90\xbe\ \xda\x90\xb9\xd8\x8e\xb5\xd6\x91\xb5\xd8\x95\xb9\xdf\x92\xbc\xe1\ \x8e\xbc\xdd\x8c\xbb\xd9\x8f\xbb\xd9\x90\xb9\xda\x93\xb6\xbf\x68\ \x80\x82\x6b\x7d\x93\x8d\xb0\xcd\x91\xb4\xcb\x84\xa9\xc4\x71\x97\ \xb1\x67\x92\xac\x5f\x89\xa9\x63\x8c\xac\x5f\x88\xa8\x5f\x89\xaa\ \x5a\x86\xa4\x53\x7d\x9c\x55\x7a\x99\x4b\x6d\x87\x39\x54\x6b\x2e\ \x44\x55\x1a\x2a\x34\x1e\x28\x30\x49\x57\x5c\x4d\x5a\x5e\x4b\x56\ \x56\x47\x4d\x53\x44\x4d\x50\x3f\x47\x4c\x3e\x47\x48\x3c\x3f\x41\ \x37\x3d\x3a\x32\x38\x38\x39\x40\x3d\x3f\x47\x45\x3b\x43\x44\x35\ \x3c\x3c\x36\x3c\x3b\x40\x47\x4c\x40\x4b\x4f\x43\x4d\x4d\x3a\x3d\ \x3c\x3a\x3a\x3e\x36\x3c\x3c\x31\x3f\x3f\x3a\x43\x44\x36\x42\x45\ \x39\x3c\x3f\x34\x3d\x3d\x3f\x44\x48\x3f\x43\x46\x39\x40\x43\x35\ \x40\x43\x38\x3c\x3d\x3d\x45\x4a\x43\x4b\x49\x35\x3d\x3d\x35\x3e\ \x42\x3a\x47\x4a\x3c\x4a\x4e\x3f\x46\x44\x40\x42\x48\x3b\x45\x44\ \x3c\x3f\x41\x37\x45\x43\x36\x44\x45\x33\x3d\x43\x3b\x45\x45\x43\ \x4f\x53\x3d\x4b\x4c\x46\x50\x52\x3c\x42\x43\x32\x3b\x38\x37\x3f\ \x3e\x38\x40\x40\x3b\x46\x46\x3e\x4c\x4d\x3d\x47\x48\x3a\x40\x43\ \x3f\x42\x47\x42\x4f\x52\x46\x54\x59\x44\x51\x58\x35\x3e\x40\x38\ \x40\x40\x3a\x43\x44\x3e\x45\x47\x3c\x46\x45\x40\x51\x56\x45\x4d\ \x53\x43\x4e\x50\x3b\x45\x43\x49\x50\x54\x41\x4f\x56\x3a\x47\x47\ \x3b\x42\x41\x39\x46\x46\x3f\x47\x4b\x3b\x46\x48\x3f\x4b\x51\x3f\ \x49\x4b\x39\x45\x44\x39\x45\x42\x3b\x43\x46\x39\x42\x41\x3f\x4a\ \x49\x46\x4c\x51\x47\x52\x58\x44\x4b\x53\x3e\x47\x45\x40\x48\x49\ \x46\x51\x59\x41\x4d\x4e\x41\x4d\x4c\x41\x4c\x4c\x38\x40\x44\x3e\ \x46\x4b\x44\x4f\x50\x45\x52\x53\x46\x50\x55\x45\x51\x55\x00\x00\ \x00\x83\xb8\xda\x81\xb6\xd9\x80\xb7\xd8\x82\xb7\xd7\x87\xb6\xd8\ \x89\xb4\xd9\x8e\xbc\xdf\x8e\xbf\xe1\x92\xbf\xe1\x92\xbc\xdf\x90\ \xbb\xdd\x8e\xbc\xdd\x8e\xbd\xdd\x8c\xb8\xdc\x90\xb7\xdc\x8e\xb8\ \xdb\x8e\xbb\xdb\x8d\xbf\xdd\x8a\xc0\xdd\x8a\xc0\xda\x90\xc2\xdc\ \x92\xc0\xdb\x93\xbe\xdb\x8f\xbc\xd9\x84\xb0\xcd\x7a\xa8\xc3\x8e\ \xbb\xd9\x91\xbe\xdc\x92\xbd\xda\x92\xb6\xce\x54\x6d\x7f\x1a\x2b\ \x3a\x0a\x1e\x2c\x61\x80\x91\x97\xbe\xd6\x99\xc1\xe1\x99\xbe\xdf\ \x97\xbc\xdb\x94\xba\xda\x99\xbd\xe0\x96\xbf\xe2\x92\xc0\xdf\x91\ \xc1\xdd\x92\xbe\xdc\x96\xbd\xdf\x91\xbb\xdd\x95\xbe\xdf\xa1\xc2\ \xd4\x83\xa0\xa9\x61\x7a\x8a\x72\x8e\xb1\x75\x99\xb7\x63\x8b\xa9\ \x61\x8a\xa9\x67\x8c\xaa\x66\x8b\xac\x57\x7c\x9a\x44\x5e\x79\x37\ \x46\x58\x1f\x2e\x37\x1b\x28\x2c\x1d\x22\x24\x21\x2b\x2a\x2d\x3d\ \x43\x38\x48\x4b\x5c\x64\x6d\x5e\x66\x6f\x46\x4c\x4e\x40\x43\x4b\ \x3f\x44\x46\x3c\x3e\x3f\x34\x3b\x38\x36\x3b\x3a\x35\x3b\x33\x3d\ \x43\x44\x3b\x44\x46\x31\x3c\x36\x31\x3d\x3a\x3f\x3e\x43\x3b\x43\ \x42\x3b\x48\x48\x35\x42\x3f\x3d\x43\x42\x40\x45\x47\x42\x4d\x4d\ \x3d\x4c\x51\x3a\x42\x4a\x33\x3d\x3b\x38\x3e\x3e\x3e\x49\x49\x3d\ \x41\x44\x39\x42\x3f\x3a\x3f\x3f\x38\x3d\x3f\x31\x38\x38\x36\x3d\ \x3d\x3b\x43\x45\x3b\x45\x44\x3c\x43\x45\x43\x49\x4f\x3f\x4b\x4d\ \x43\x4c\x4f\x42\x4e\x4d\x3b\x41\x46\x3a\x42\x45\x34\x41\x3f\x3c\ \x49\x4c\x44\x4a\x49\x3e\x47\x4c\x41\x47\x4c\x3d\x42\x44\x36\x3b\ \x3c\x35\x3f\x3d\x3f\x46\x4b\x4a\x4f\x53\x45\x51\x56\x3e\x45\x47\ \x45\x4c\x50\x3c\x4a\x4c\x3f\x44\x48\x3f\x48\x4a\x3f\x4c\x4a\x3d\ \x46\x4a\x39\x3e\x40\x30\x3e\x3e\x34\x3f\x40\x40\x4a\x4e\x3d\x46\ \x49\x39\x45\x44\x3b\x44\x44\x3d\x46\x47\x38\x45\x45\x38\x42\x42\ \x39\x44\x42\x3e\x47\x47\x3b\x45\x44\x40\x4a\x47\x40\x47\x48\x3e\ \x46\x49\x35\x3f\x43\x3f\x44\x48\x3e\x44\x48\x44\x4d\x50\x42\x4f\ \x52\x44\x4d\x53\x44\x4d\x56\x3e\x48\x4a\x40\x4b\x4f\x4a\x51\x56\ \x3f\x48\x49\x3b\x44\x43\x43\x4b\x4f\x43\x48\x49\x41\x4b\x51\x4c\ \x52\x58\x49\x52\x5b\x45\x49\x4f\x43\x4e\x54\x45\x51\x59\x47\x52\ \x55\x41\x4c\x4c\x3f\x49\x4c\x3e\x47\x48\x00\x00\x00\x85\xb4\xd7\ \x82\xb1\xd5\x80\xb3\xd4\x7e\xb5\xd2\x87\xb8\xd7\x8e\xbb\xdd\x90\ \xbe\xe0\x8e\xbf\xe0\x8f\xbe\xdf\x92\xbe\xdf\x94\xbd\xde\x90\xbc\ \xdd\x8f\xbc\xde\x8e\xb8\xdd\x90\xb6\xdb\x8f\xb5\xd9\x94\xbc\xde\ \x96\xc1\xe0\x93\xbd\xdc\x8e\xb9\xd5\x90\xc0\xd9\x93\xc3\xde\x93\ \xc3\xe0\x94\xc1\xdf\x93\xc0\xde\x93\xc1\xdf\x95\xc4\xe2\x96\xc5\ \xe0\x98\xc3\xdd\x9a\xc0\xda\x8a\xa9\xc0\x35\x50\x64\x2e\x4b\x61\ \x7e\xa2\xb7\x98\xbf\xd8\x9e\xc4\xe3\xa1\xc4\xe4\x9e\xc2\xe2\x9a\ \xc1\xe1\x9b\xc1\xe2\x9b\xc2\xe3\x97\xc2\xe1\x98\xc6\xe3\x98\xc3\ \xe5\x9c\xc1\xe6\x9a\xbe\xe2\x99\xbd\xdf\x95\xbb\xdd\x8f\xbb\xdd\ \x92\xbd\xd2\x7f\x98\x9e\x5e\x73\x88\x67\x8e\xaf\x65\x8b\xae\x5d\ \x7e\xa1\x37\x53\x66\x27\x3c\x41\x24\x2f\x33\x21\x2d\x2f\x17\x23\ \x24\x17\x1f\x1c\x1f\x2c\x30\x36\x43\x48\x3b\x4a\x4f\x3a\x4a\x49\ \x4b\x56\x5b\x49\x50\x51\x40\x43\x46\x39\x41\x44\x34\x39\x39\x31\ \x36\x32\x39\x3d\x3d\x37\x42\x46\x3c\x45\x44\x3b\x44\x45\x39\x3a\ \x3d\x36\x3d\x3c\x34\x3c\x39\x31\x39\x37\x33\x3b\x3b\x33\x3f\x3f\ \x34\x47\x49\x36\x42\x40\x38\x46\x44\x36\x3d\x3c\x38\x3e\x3f\x3a\ \x40\x40\x3e\x46\x45\x40\x4b\x4a\x37\x46\x45\x34\x3c\x37\x36\x3b\ \x3a\x38\x42\x41\x3c\x43\x43\x42\x4b\x50\x43\x4f\x4f\x3c\x44\x46\ \x3a\x44\x41\x39\x43\x40\x38\x45\x42\x34\x40\x3d\x31\x3c\x38\x34\ \x3d\x3c\x31\x3b\x3b\x49\x56\x5d\x49\x53\x57\x3f\x47\x4a\x3b\x44\ \x47\x35\x3d\x3a\x3d\x44\x48\x39\x40\x40\x3e\x49\x4d\x48\x54\x56\ \x46\x52\x53\x4a\x56\x5a\x3e\x4b\x48\x36\x40\x3c\x36\x3b\x3b\x39\ \x40\x3f\x3c\x42\x45\x3c\x48\x4a\x35\x43\x46\x3a\x3e\x3e\x3f\x46\ \x4a\x3a\x4c\x4f\x41\x4a\x53\x3c\x41\x46\x32\x3a\x3a\x36\x3d\x3f\ \x31\x3b\x3b\x38\x40\x40\x3f\x49\x4b\x3b\x47\x4c\x42\x4c\x50\x3d\ \x49\x4b\x38\x47\x47\x37\x41\x46\x3a\x41\x3f\x3f\x4b\x4c\x40\x4d\ \x4e\x43\x4a\x4f\x48\x4f\x55\x41\x4c\x53\x39\x48\x49\x38\x45\x44\ \x3a\x42\x45\x3b\x3e\x44\x3a\x46\x48\x3c\x47\x46\x39\x42\x40\x41\ \x4c\x4f\x40\x47\x48\x3c\x48\x49\x3e\x49\x4d\x3f\x45\x46\x37\x3e\ \x3d\x36\x3e\x3f\x3d\x47\x4b\x3e\x46\x4a\x3b\x43\x42\x35\x3f\x3c\ \x3a\x48\x4b\x41\x4d\x4b\x00\x00\x00\x7f\xaf\xd0\x81\xaf\xd3\x82\ \xb1\xd1\x83\xb7\xd4\x87\xbc\xd7\x8b\xbe\xdb\x8b\xbf\xdc\x8c\xc0\ \xde\x90\xc1\xe0\x91\xbe\xde\x92\xbc\xdd\x90\xba\xdb\x8a\xb9\xdb\ \x89\xb8\xdb\x88\xb7\xda\x8a\xb8\xd9\x90\xbc\xdc\x99\xc0\xdf\x8f\ \xb4\xcf\x6d\x92\xab\x8d\xb6\xce\x96\xc4\xe0\x93\xc2\xe1\x95\xc3\ \xe2\x98\xc5\xe4\x97\xc6\xe4\x98\xc7\xe6\x97\xc4\xe0\x96\xc2\xde\ \x96\xc1\xdd\x91\xbb\xd7\x87\xb2\xcc\x83\xad\xc9\x94\xbe\xdb\x98\ \xc2\xdc\x9c\xc4\xe3\x9e\xc3\xe6\x9c\xc2\xe5\x99\xc1\xe4\x9b\xc1\ \xe2\x9e\xc2\xe4\x9a\xc3\xe3\x95\xc3\xe3\x97\xc5\xe8\x99\xc3\xe8\ \x97\xc0\xe3\x94\xbc\xde\x91\xbb\xdc\x98\xc1\xde\xaf\xcf\xe4\xb0\ \xcc\xdf\x7d\x9c\xb3\x4d\x6c\x89\x2c\x3e\x4f\x28\x38\x3d\x29\x32\ \x39\x28\x36\x36\x2c\x36\x37\x1c\x28\x2a\x1c\x29\x2c\x35\x42\x43\ \x39\x43\x44\x3f\x45\x49\x44\x4b\x4f\x45\x52\x58\x3d\x46\x46\x38\ \x3f\x3f\x41\x4a\x4d\x3d\x42\x45\x3b\x47\x46\x3f\x48\x4d\x3f\x49\ \x4a\x38\x46\x46\x37\x41\x3c\x36\x34\x31\x37\x3b\x39\x42\x49\x4a\ \x36\x3f\x3b\x3c\x45\x46\x40\x47\x50\x3e\x4a\x4f\x3f\x47\x46\x38\ \x41\x43\x36\x45\x49\x3e\x4c\x4d\x41\x4a\x49\x3e\x48\x48\x38\x3f\ \x42\x3e\x42\x49\x35\x41\x3e\x39\x45\x42\x41\x4c\x4f\x40\x4b\x4d\ \x3c\x44\x46\x3b\x43\x43\x36\x43\x40\x34\x3f\x3d\x3b\x42\x42\x37\ \x3f\x3f\x39\x43\x45\x39\x45\x4c\x41\x4d\x51\x3f\x47\x4b\x40\x4d\ \x54\x36\x44\x49\x35\x3e\x41\x39\x45\x46\x3a\x44\x47\x3b\x44\x49\ \x40\x48\x4d\x3c\x46\x4a\x3c\x41\x4b\x3b\x45\x43\x3b\x42\x43\x39\ \x45\x44\x39\x41\x41\x3e\x46\x4a\x44\x4f\x52\x47\x4e\x55\x3c\x43\ \x41\x34\x3b\x38\x3b\x3e\x44\x3c\x42\x45\x3f\x47\x47\x3c\x47\x48\ \x3d\x40\x47\x3f\x43\x48\x43\x4e\x55\x43\x4c\x50\x40\x47\x4a\x45\ \x4c\x4f\x3a\x44\x48\x36\x40\x41\x3b\x47\x45\x38\x46\x49\x36\x41\ \x3e\x3c\x43\x46\x44\x4f\x51\x41\x49\x4b\x34\x3b\x3e\x37\x42\x43\ \x3a\x44\x46\x36\x43\x47\x39\x41\x43\x40\x4c\x4d\x45\x4c\x50\x42\ \x4e\x53\x3c\x45\x47\x39\x47\x46\x3e\x4a\x48\x41\x4d\x4c\x40\x47\ \x4b\x48\x4f\x56\x4b\x4e\x56\x3c\x46\x43\x41\x48\x47\x47\x54\x59\ \x44\x4d\x4e\x40\x45\x46\x3d\x46\x45\x3c\x46\x48\x3c\x48\x4a\x3b\ \x45\x48\x00\x00\x00\x7a\xae\xcd\x7d\xad\xcf\x85\xb4\xd5\x8a\xb9\ \xd6\x86\xbc\xd4\x85\xbf\xd6\x86\xc0\xd7\x8b\xc2\xdb\x8f\xc0\xdd\ \x90\xbe\xdd\x91\xbc\xdb\x91\xbb\xdd\x89\xb9\xda\x84\xbc\xd9\x85\ \xbf\xd9\x88\xbf\xd9\x8d\xc0\xdb\x95\xc3\xe0\x96\xbb\xd6\x5a\x79\ \x93\x59\x78\x93\x9a\xc0\xdb\x95\xc0\xdc\x96\xc2\xde\x99\xc4\xe1\ \x9c\xc7\xe5\x9e\xc8\xe7\x9b\xc5\xe1\x99\xc3\xe0\x95\xc1\xe0\x92\ \xc1\xdf\x8e\xc1\xde\x90\xc1\xe1\x95\xc1\xe1\x97\xc2\xe1\x9a\xc3\ \xe3\x9a\xc3\xe5\x95\xbd\xe1\x96\xbc\xe1\x98\xbd\xde\x9b\xc0\xdf\ \x97\xc3\xe1\x97\xc6\xe6\x95\xc3\xe5\x92\xc2\xe4\x96\xc5\xe3\xa5\ \xc7\xe2\x9c\xb9\xd2\x8e\xa5\xb9\x56\x67\x7c\x33\x4b\x5a\x30\x44\ \x4f\x40\x4c\x55\x51\x65\x6b\x3d\x4c\x51\x2d\x39\x3f\x23\x2d\x33\ \x25\x36\x38\x2c\x40\x43\x36\x46\x4b\x46\x50\x55\x3c\x3f\x42\x36\ \x3d\x3b\x3d\x46\x49\x3a\x4a\x49\x3d\x47\x47\x37\x3f\x42\x38\x45\ \x40\x36\x41\x41\x3a\x43\x48\x3a\x42\x42\x32\x3c\x38\x38\x3b\x3b\ \x30\x38\x37\x3b\x40\x3f\x38\x42\x43\x35\x3d\x41\x37\x41\x3e\x39\ \x41\x44\x39\x40\x43\x33\x3d\x3d\x38\x40\x40\x3f\x45\x4b\x3a\x40\ \x44\x33\x3d\x42\x32\x3b\x3f\x3b\x3e\x40\x3a\x47\x49\x3b\x47\x4d\ \x34\x42\x43\x38\x4a\x4b\x3e\x46\x4b\x35\x3d\x3c\x35\x3c\x44\x38\ \x3e\x3a\x39\x45\x42\x43\x4a\x4d\x3a\x47\x47\x3e\x49\x4b\x3e\x4c\ \x4e\x3d\x49\x4c\x39\x41\x46\x38\x43\x46\x30\x3a\x39\x37\x3f\x40\ \x3c\x48\x4a\x38\x3c\x3c\x36\x41\x43\x3d\x4b\x4f\x40\x49\x4a\x36\ \x47\x48\x3d\x46\x46\x3c\x47\x46\x3e\x46\x47\x3b\x42\x47\x39\x45\ \x44\x3f\x4d\x4d\x44\x48\x4a\x3f\x45\x4e\x39\x41\x3d\x43\x4c\x52\ \x47\x53\x58\x3d\x4d\x4e\x3e\x49\x4b\x39\x44\x44\x37\x45\x45\x39\ \x45\x47\x39\x43\x44\x3a\x41\x41\x38\x3e\x45\x3f\x42\x46\x3c\x43\ \x42\x3b\x43\x47\x36\x42\x43\x34\x3f\x3c\x3d\x40\x45\x3d\x41\x4a\ \x3a\x43\x44\x39\x40\x3e\x3c\x45\x4c\x42\x4e\x53\x40\x4a\x4f\x41\ \x4f\x58\x40\x4e\x50\x41\x4d\x4c\x40\x46\x48\x38\x40\x3f\x37\x40\ \x3f\x3f\x4c\x52\x43\x4d\x4d\x3d\x48\x47\x3b\x44\x46\x39\x45\x48\ \x35\x40\x41\x33\x3c\x3a\x38\x44\x47\x39\x44\x47\x3b\x44\x40\x3a\ \x40\x3e\x36\x3c\x3c\x3b\x41\x44\x3c\x43\x4c\x40\x4b\x49\x00\x00\ \x00\x83\xb2\xcf\x7e\xb0\xd2\x84\xb1\xd2\x8c\xb6\xd3\x8b\xbb\xd4\ \x88\xbf\xd5\x8d\xc4\xda\x90\xc2\xdb\x90\xbf\xd8\x8b\xb8\xd3\x8c\ \xb8\xd2\x90\xbc\xd9\x8c\xbd\xdb\x86\xbf\xd8\x87\xbf\xd7\x85\xba\ \xd1\x8d\xc1\xdb\x91\xc3\xde\x99\xc0\xdd\x87\xa4\xbf\x27\x43\x5b\ \x8a\xaa\xc2\x9c\xc2\xdb\x9b\xc4\xdd\x9a\xc5\xe1\x99\xc4\xe1\x9c\ \xc6\xe3\xa1\xc8\xe4\x9b\xc4\xde\x99\xc2\xdc\x94\xc2\xdb\x91\xc1\ \xdd\x95\xc2\xe3\x9a\xc0\xe5\x9b\xc2\xe5\x95\xc0\xe3\x93\xc0\xe1\ \x93\xc1\xe1\x95\xbe\xdf\x97\xbe\xdc\x97\xc0\xdc\x92\xc1\xdd\x97\ \xc3\xe2\x9d\xc5\xe5\xa6\xc3\xdb\x8b\xa5\xb4\x5b\x74\x87\x37\x51\ \x5e\x42\x57\x63\x56\x6b\x7b\x5b\x6d\x74\x6a\x78\x7e\x5d\x68\x72\ \x51\x5f\x63\x44\x58\x5b\x4b\x5f\x6b\x4b\x5b\x60\x42\x4b\x50\x46\ \x4c\x51\x4a\x4e\x53\x46\x4f\x55\x3d\x4c\x4e\x3b\x45\x44\x3d\x48\ \x4f\x3e\x46\x49\x3e\x49\x4c\x3d\x44\x4a\x47\x53\x5a\x3e\x46\x47\ \x3b\x44\x43\x39\x46\x46\x3e\x46\x4d\x38\x43\x45\x3a\x46\x44\x41\ \x45\x48\x40\x41\x43\x3a\x41\x41\x3b\x41\x42\x35\x40\x40\x39\x42\ \x47\x3a\x49\x4d\x3e\x49\x4c\x3c\x40\x40\x36\x3b\x3b\x35\x42\x45\ \x35\x40\x3d\x37\x44\x43\x38\x42\x43\x34\x3c\x39\x38\x3f\x42\x35\ \x3e\x3d\x39\x3e\x42\x3a\x48\x48\x44\x51\x52\x3f\x4a\x4b\x3b\x44\ \x49\x39\x40\x3e\x33\x3d\x3e\x38\x46\x49\x44\x48\x4d\x43\x49\x4b\ \x44\x47\x4c\x3d\x46\x47\x37\x4b\x4e\x36\x43\x46\x34\x43\x44\x3f\ \x43\x44\x43\x49\x50\x39\x48\x45\x38\x41\x3f\x35\x40\x41\x3b\x40\ \x42\x39\x3f\x3d\x3c\x43\x45\x3f\x45\x49\x3c\x48\x4b\x48\x4f\x54\ \x41\x4c\x4f\x3d\x47\x44\x3c\x46\x4b\x3e\x48\x50\x38\x40\x40\x32\ \x3f\x3d\x39\x3c\x43\x37\x43\x42\x3a\x44\x4b\x42\x4a\x50\x41\x4c\ \x4e\x3f\x49\x4d\x3c\x48\x4b\x44\x4a\x4f\x3a\x42\x41\x38\x43\x40\ \x39\x45\x49\x3d\x49\x49\x42\x4a\x4b\x42\x4d\x4e\x3f\x49\x4b\x3d\ \x48\x48\x45\x48\x4d\x3d\x45\x46\x3b\x45\x45\x37\x46\x47\x35\x3d\ \x41\x37\x3d\x3c\x38\x42\x41\x37\x42\x42\x3d\x4a\x4f\x43\x50\x5a\ \x40\x4b\x50\x37\x41\x44\x3b\x42\x49\x3e\x4c\x4f\x42\x4c\x51\x3f\ \x46\x4d\x3f\x46\x4c\x3a\x47\x4a\x38\x3c\x3d\x37\x41\x42\x3e\x48\ \x4a\x41\x4a\x4d\x3b\x42\x46\x39\x45\x41\x00\x00\x00\x3c\x63\x7a\ \x5f\x89\xa7\x79\xa1\xc0\x7c\x9e\xb6\x6a\x8f\xa3\x74\x9c\xb1\x82\ \xac\xc3\x8a\xb0\xc6\x80\xa4\xb7\x7d\xa4\xb6\x89\xb4\xc7\x8d\xbc\ \xd4\x8b\xbd\xd5\x85\xb5\xcd\x74\xa0\xb7\x82\xaf\xc8\x91\xc4\xdb\ \x8f\xc3\xdd\x95\xc0\xde\x9b\xbc\xd8\x36\x52\x68\x46\x64\x76\x9d\ \xc0\xd5\x9a\xc4\xdc\x97\xc5\xe1\x98\xc5\xe1\x9a\xc6\xe0\xa0\xc6\ \xe2\x9b\xc3\xdd\x9a\xc2\xdb\x97\xc1\xda\x92\xbc\xdb\x95\xbc\xe0\ \x9a\xbd\xe4\x9a\xc0\xe6\x92\xbf\xe2\x91\xc1\xe0\x8e\xbf\xde\x8f\ \xbd\xda\x92\xbb\xd7\x96\xc0\xd9\x97\xc0\xdb\x98\xb2\xc4\x66\x75\ \x7f\x3c\x4d\x5a\x35\x45\x55\x49\x5b\x67\x48\x58\x67\x6b\x83\x90\ \x68\x86\x96\x85\x9a\xa3\x6e\x85\x8d\x5b\x6e\x7a\x4e\x5f\x67\x3e\ \x4c\x50\x41\x50\x5b\x3f\x46\x4f\x39\x3f\x40\x3b\x40\x3f\x3b\x3f\ \x3e\x3e\x45\x4c\x42\x4b\x50\x33\x3b\x3e\x35\x40\x42\x34\x3f\x3f\ \x3c\x47\x52\x3c\x44\x48\x3e\x41\x45\x37\x43\x43\x3f\x4e\x4c\x3c\ \x48\x4c\x3d\x42\x43\x3a\x45\x42\x3b\x44\x41\x38\x3f\x3b\x32\x3c\ \x3c\x3c\x3f\x3b\x34\x3c\x3d\x39\x3f\x41\x3c\x49\x49\x3f\x47\x48\ \x39\x42\x3f\x35\x39\x38\x39\x46\x4d\x3e\x4a\x53\x3c\x45\x44\x3c\ \x46\x48\x38\x40\x3f\x3f\x49\x47\x3e\x4c\x4e\x3f\x48\x4d\x35\x43\ \x46\x39\x46\x47\x42\x4e\x4f\x3f\x4a\x4f\x3b\x46\x46\x3d\x43\x48\ \x3f\x45\x49\x3e\x46\x4b\x42\x43\x45\x3c\x42\x44\x3c\x46\x44\x3c\ \x46\x48\x36\x42\x46\x39\x45\x45\x3f\x4a\x4f\x40\x4c\x4f\x3a\x40\ \x42\x3f\x47\x4c\x43\x4f\x52\x3e\x44\x49\x3e\x48\x4a\x40\x4b\x4f\ \x40\x46\x4a\x3e\x4b\x4d\x3e\x49\x49\x3a\x46\x46\x3b\x45\x48\x46\ \x4e\x55\x45\x54\x55\x40\x48\x44\x3d\x47\x49\x44\x4e\x52\x40\x4b\ \x4a\x40\x4d\x4f\x41\x4c\x50\x40\x47\x48\x39\x46\x46\x3a\x40\x40\ \x3f\x48\x47\x3b\x44\x48\x36\x3e\x41\x41\x4a\x50\x40\x48\x4c\x3a\ \x40\x40\x3b\x41\x42\x39\x40\x42\x41\x45\x4b\x3b\x44\x43\x36\x3e\ \x3c\x3d\x44\x43\x48\x56\x5a\x42\x50\x54\x3a\x43\x45\x39\x46\x4b\ \x41\x4b\x50\x3a\x47\x49\x38\x42\x42\x3c\x43\x47\x37\x41\x41\x3e\ \x4a\x52\x40\x4a\x4e\x3c\x4b\x4c\x3d\x45\x40\x34\x3d\x3e\x35\x41\ \x3f\x3d\x4b\x4c\x3e\x47\x47\x3d\x46\x47\x3d\x47\x44\x38\x3d\x41\ \x3e\x48\x48\x3d\x48\x49\x00\x00\x00\x68\x87\x99\x77\x9d\xb6\x53\ \x75\x90\x1f\x3c\x51\x16\x2e\x42\x42\x5e\x72\x4e\x6c\x84\x2d\x47\ \x5c\x12\x28\x38\x13\x2c\x3b\x2f\x51\x63\x5b\x84\x9a\x65\x8a\xa1\ \x2b\x4b\x61\x35\x52\x6b\x87\xaa\xc5\x95\xc1\xda\x92\xc1\xde\x93\ \xc0\xde\x98\xbe\xd9\x6e\x8d\xa0\x13\x2e\x3e\x8a\xab\xbc\x97\xc0\ \xd4\x95\xc3\xdd\x97\xc4\xde\x9d\xc6\xdf\x9d\xc3\xdf\x96\xbd\xda\ \x95\xba\xd6\x98\xba\xd4\x99\xba\xd6\x9b\xbc\xde\x9a\xbb\xe2\x96\ \xbb\xe0\x8f\xbb\xda\x8c\xbc\xd8\x8b\xb8\xd5\x8d\xb5\xd2\x91\xb5\ \xcf\x94\xb9\xd2\x91\xa8\xb1\x2c\x3b\x40\x25\x2a\x2e\x1e\x22\x29\ \x1e\x25\x26\x3e\x43\x51\xa5\xb7\xc0\xb1\xcc\xdd\xb0\xcc\xdb\xa9\ \xc9\xe0\xae\xcd\xe1\xa8\xc3\xd0\x80\x9e\xa0\x4b\x63\x6e\x43\x53\ \x58\x46\x50\x59\x46\x55\x5d\x43\x4d\x53\x3d\x44\x44\x3d\x44\x49\ \x38\x3e\x3c\x3a\x40\x42\x38\x41\x41\x34\x3f\x3f\x39\x46\x4b\x39\ \x41\x45\x37\x3b\x40\x39\x48\x4c\x45\x4c\x55\x3d\x48\x4e\x37\x3e\ \x3b\x38\x43\x45\x3b\x46\x49\x3d\x42\x42\x38\x3d\x3b\x39\x3f\x3e\ \x3a\x43\x46\x39\x46\x47\x33\x3d\x39\x37\x40\x42\x39\x46\x4a\x3a\ \x49\x49\x3b\x47\x48\x39\x40\x41\x3b\x45\x46\x38\x44\x46\x38\x40\ \x42\x3e\x47\x48\x39\x44\x43\x36\x42\x45\x34\x44\x42\x37\x44\x42\ \x3e\x4a\x4c\x37\x3f\x40\x3b\x46\x46\x41\x4a\x4b\x3c\x45\x47\x42\ \x45\x46\x3d\x42\x48\x35\x3f\x3b\x3c\x45\x4a\x3d\x49\x49\x39\x40\ \x41\x35\x3e\x3d\x39\x42\x44\x3b\x41\x42\x3d\x44\x45\x41\x4a\x4d\ \x39\x3f\x44\x34\x3d\x40\x3f\x4b\x4f\x3e\x4a\x4e\x3e\x45\x45\x3f\ \x47\x4b\x3a\x43\x46\x33\x3a\x3d\x33\x3d\x3e\x37\x3f\x41\x3b\x41\ \x45\x37\x3d\x3f\x42\x47\x4a\x43\x4a\x50\x3e\x4a\x4a\x3b\x46\x4c\ \x40\x46\x4a\x3f\x44\x49\x3d\x46\x4c\x3d\x48\x49\x42\x43\x44\x39\ \x42\x40\x36\x44\x43\x3b\x40\x42\x40\x43\x46\x3d\x46\x4a\x3a\x48\ \x48\x3c\x49\x4b\x3d\x42\x43\x3f\x45\x45\x3c\x45\x46\x3b\x40\x40\ \x3a\x41\x3f\x37\x3f\x3d\x38\x3f\x3c\x3e\x46\x4b\x3b\x45\x43\x38\ \x43\x44\x3a\x47\x4a\x41\x4a\x50\x3d\x4b\x4f\x3e\x44\x4b\x3e\x45\ \x41\x3b\x42\x45\x39\x3b\x41\x3e\x49\x4d\x3c\x49\x4a\x3d\x42\x44\ \x37\x3e\x3c\x42\x49\x53\x40\x4c\x51\x41\x4d\x50\x4c\x58\x5a\x4c\ \x57\x5f\x00\x00\x00\x30\x51\x66\x79\xa2\xba\x82\xab\xc6\x51\x73\ \x8d\x25\x41\x59\x3a\x56\x6f\x7c\x9a\xb5\x6e\x88\x9f\x1d\x30\x40\ \x14\x26\x36\x4d\x6b\x7f\x81\xa3\xbb\x49\x67\x7e\x12\x29\x40\x59\ \x72\x8e\x99\xb7\xd7\x93\xbc\xda\x94\xc1\xdf\x94\xc1\xdf\x98\xc1\ \xda\x91\xb1\xc4\x1c\x36\x43\x4c\x69\x76\x95\xbd\xce\x93\xc2\xd9\ \x95\xc4\xde\x98\xc4\xde\x94\xbe\xd9\x8d\xb4\xce\x65\x86\x9d\x3f\ \x5c\x70\x4d\x6a\x82\x6f\x8a\xa9\x87\xa3\xc4\x7e\x9c\xb9\x7a\x9d\ \xb6\x7f\xa6\xbc\x7f\xa2\xbc\x6d\x8c\xa5\x60\x7a\x91\x6e\x8b\xa3\ \x8b\xa7\xbc\x36\x48\x4e\x2a\x36\x3c\x1d\x21\x21\x20\x2a\x2c\x33\ \x36\x48\x9b\xbc\xd3\x89\xac\xc8\x60\x7c\x98\x74\x92\xae\x96\xb6\ \xd5\x9a\xb8\xd9\x9c\xba\xd4\xa4\xbf\xc8\x7c\x98\x9b\x50\x66\x6e\ \x4c\x5d\x67\x3e\x4f\x55\x41\x50\x5a\x3e\x49\x4c\x37\x40\x44\x3c\ \x3e\x43\x42\x47\x49\x3c\x42\x3e\x36\x3e\x3f\x2c\x36\x36\x2d\x2a\ \x2d\x3e\x46\x50\x3b\x46\x48\x3d\x48\x4e\x3e\x47\x47\x3b\x49\x4f\ \x3a\x4a\x51\x3b\x47\x49\x40\x49\x4c\x41\x4c\x51\x3e\x4c\x55\x36\ \x43\x44\x39\x42\x40\x37\x43\x45\x37\x42\x44\x35\x41\x41\x31\x38\ \x39\x32\x3b\x3a\x37\x43\x45\x3d\x49\x47\x3b\x43\x40\x37\x43\x44\ \x3c\x46\x4a\x3a\x46\x4b\x3c\x44\x46\x39\x47\x47\x37\x41\x45\x39\ \x41\x44\x39\x3e\x3f\x3a\x3d\x3d\x33\x39\x37\x3b\x3e\x3a\x39\x3b\ \x3f\x38\x40\x42\x3a\x41\x48\x42\x4e\x52\x35\x42\x42\x3d\x40\x44\ \x3e\x49\x50\x3c\x45\x45\x40\x4a\x4f\x3b\x43\x47\x41\x47\x4b\x41\ \x4b\x4e\x40\x48\x4c\x37\x3e\x41\x38\x3c\x38\x38\x44\x45\x3e\x4a\ \x4e\x41\x4b\x50\x48\x53\x5c\x3d\x47\x4a\x3d\x43\x47\x3e\x4a\x4e\ \x42\x4d\x4f\x3b\x45\x45\x3c\x3f\x3f\x3a\x3f\x46\x3c\x41\x45\x3a\ \x3e\x40\x3d\x41\x41\x3b\x41\x41\x3f\x47\x4a\x42\x4a\x47\x42\x4d\ \x4d\x41\x47\x4d\x3c\x41\x40\x43\x49\x4e\x3e\x45\x48\x3d\x46\x46\ \x3d\x43\x46\x40\x46\x47\x39\x3d\x3c\x40\x44\x4a\x3e\x49\x4e\x42\ \x48\x4c\x3d\x48\x4a\x3f\x46\x4b\x36\x3d\x44\x40\x45\x48\x42\x4b\ \x54\x3b\x40\x44\x2e\x40\x3a\x34\x3e\x3d\x37\x3f\x3f\x36\x44\x3d\ \x3c\x46\x48\x3b\x40\x40\x31\x38\x3c\x34\x40\x3e\x40\x4b\x4e\x47\ \x52\x59\x41\x4b\x4d\x4a\x50\x55\x4c\x52\x55\x46\x51\x53\x00\x00\ \x00\x7a\xa8\xc3\x8c\xbc\xd8\x8f\xc1\xdf\x89\xb6\xd4\x83\xab\xc9\ \x86\xab\xca\x88\xae\xce\x89\xae\xcb\x62\x82\x99\x28\x47\x5c\x58\ \x7c\x96\x8a\xb0\xcd\x87\xa9\xc5\x59\x79\x96\x76\x96\xb6\x95\xbb\ \xdd\x93\xc0\xe0\x94\xc1\xe1\x97\xc2\xe2\x99\xc1\xde\x94\xb6\xcc\ \x43\x5d\x6f\x20\x3b\x4c\x84\xab\xc0\x8f\xc1\xd8\x8e\xc2\xdc\x8e\ \xc2\xdc\x8b\xbd\xd7\x81\xad\xc4\x3d\x5d\x70\x2e\x48\x58\x6d\x86\ \x9c\x5e\x77\x91\x36\x4c\x66\x24\x39\x4e\x27\x42\x56\x47\x65\x7d\ \x45\x5f\x79\x27\x3c\x53\x10\x26\x39\x3e\x5a\x71\x5f\x7c\x9b\x74\ \x8c\x94\x28\x40\x40\x20\x27\x2d\x25\x34\x39\x3c\x45\x4c\x96\xb5\ \xcf\x75\x91\xad\x1e\x30\x4b\x2a\x3e\x59\x85\x9b\xba\x89\xa0\xb9\ \x4e\x68\x7c\x3e\x60\x74\x66\x8d\xa2\x8c\xa9\xac\x61\x76\x73\x6d\ \x7e\x79\x28\x36\x37\x3e\x47\x47\x2c\x37\x3b\x36\x41\x44\x2b\x36\ \x39\x25\x23\x1f\x27\x28\x25\x28\x2d\x2c\x2c\x33\x30\x36\x3a\x3f\ \x30\x3d\x3b\x3b\x3d\x3d\x38\x3e\x40\x3b\x47\x4d\x38\x46\x49\x3b\ \x4b\x4c\x3d\x48\x51\x37\x42\x43\x3a\x43\x46\x3a\x3f\x41\x37\x3c\ \x3c\x35\x3d\x3e\x39\x3f\x3e\x31\x39\x37\x34\x38\x3e\x3c\x45\x49\ \x38\x48\x49\x3f\x4b\x4b\x3b\x46\x4a\x3c\x46\x4a\x3a\x43\x46\x36\ \x40\x42\x3d\x44\x44\x3c\x45\x47\x3e\x41\x44\x3a\x44\x45\x3c\x41\ \x46\x3f\x4c\x51\x3d\x4b\x4b\x3e\x48\x49\x3f\x45\x46\x3b\x45\x43\ \x3d\x42\x3d\x35\x40\x3f\x33\x3b\x39\x32\x3d\x39\x34\x3d\x3e\x34\ \x3e\x3b\x39\x44\x41\x36\x3d\x3d\x38\x43\x41\x39\x41\x41\x3a\x41\ \x40\x3e\x44\x47\x3f\x45\x47\x42\x4d\x55\x3c\x47\x46\x36\x42\x3f\ \x38\x3f\x41\x38\x3f\x40\x3f\x46\x4c\x3a\x47\x48\x38\x43\x42\x36\ \x3e\x41\x3b\x47\x4a\x3c\x47\x4b\x3b\x42\x42\x42\x48\x4d\x47\x4e\ \x50\x41\x4a\x4c\x41\x47\x4c\x3b\x3f\x3f\x3a\x41\x41\x37\x3f\x41\ \x37\x43\x41\x40\x43\x46\x3c\x40\x41\x36\x3b\x38\x33\x3b\x3b\x35\ \x3d\x3e\x36\x3d\x3c\x3e\x46\x49\x45\x4f\x54\x3d\x45\x49\x3a\x42\ \x43\x3d\x43\x44\x3d\x4a\x51\x3a\x43\x46\x38\x3f\x3f\x36\x39\x3b\ \x38\x42\x45\x3a\x46\x4c\x3b\x43\x46\x40\x44\x4c\x3b\x42\x44\x3c\ \x45\x45\x3d\x46\x4b\x40\x4f\x58\x41\x4d\x53\x43\x4e\x4f\x47\x52\ \x53\x48\x53\x57\x3f\x4a\x4c\x3a\x43\x43\x00\x00\x00\x85\xb7\xd6\ \x89\xbd\xdb\x89\xbd\xdb\x8e\xbf\xde\x8e\xbc\xdc\x92\xbe\xdf\x93\ \xc0\xe1\x89\xb6\xd8\x84\xb0\xd0\x78\xa3\xc1\x81\xae\xcf\x84\xb1\ \xd3\x85\xb3\xd3\x89\xb4\xd6\x8f\xbc\xde\x8c\xbb\xdd\x8c\xbe\xdf\ \x8d\xc0\xe1\x95\xc2\xe3\x96\xbf\xdf\x90\xb5\xd3\x76\x95\xb1\x31\ \x52\x6b\x67\x91\xa9\x8f\xc3\xdc\x8a\xc0\xdd\x89\xc0\xdd\x86\xbb\ \xd6\x7e\xac\xc5\x6d\x90\xa5\x2f\x4a\x5a\x61\x79\x8c\x6e\x89\x9e\ \x35\x4f\x63\x13\x29\x3c\x3a\x56\x69\x77\x97\xb0\x78\x93\xae\x32\ \x48\x5d\x0d\x26\x38\x4c\x6f\x86\x7d\x9e\xbb\x63\x77\x95\x47\x56\ \x62\x5b\x6a\x65\x5d\x6c\x6e\x76\x96\xa3\x66\x8c\xa5\x54\x71\x90\ \x20\x34\x54\x31\x44\x63\x62\x77\x96\x4a\x60\x76\x15\x30\x40\x59\ \x7c\x8f\x7c\xa7\xc1\x8d\xbb\xd9\x9e\xc8\xe0\xa0\xca\xdd\x9c\xbe\ \xc2\xac\xc9\xd1\x7a\x96\x92\x2d\x36\x38\xae\xc0\xbf\x3e\x4b\x40\ \x19\x1d\x16\x1c\x1f\x18\x2b\x35\x37\x3b\x48\x50\x31\x40\x41\x33\ \x3a\x3a\x39\x43\x47\x3a\x48\x4c\x37\x41\x48\x3a\x47\x4b\x38\x41\ \x3e\x3c\x41\x41\x37\x44\x46\x3a\x40\x40\x3c\x44\x46\x3b\x48\x4a\ \x3c\x47\x44\x3d\x46\x4f\x38\x44\x4c\x3b\x46\x43\x33\x42\x42\x37\ \x3a\x38\x36\x41\x40\x35\x3e\x40\x38\x3e\x40\x37\x3c\x41\x37\x3f\ \x40\x3c\x41\x41\x3b\x44\x42\x39\x3d\x3c\x3e\x43\x45\x3e\x45\x48\ \x39\x44\x45\x3e\x45\x4a\x41\x4a\x48\x39\x3f\x3c\x3a\x41\x41\x3b\ \x46\x45\x3c\x46\x47\x43\x4c\x4f\x40\x4a\x4b\x3d\x48\x46\x49\x4f\ \x54\x48\x4c\x53\x3e\x4a\x4d\x35\x44\x45\x3b\x43\x44\x42\x48\x4d\ \x38\x40\x43\x39\x3e\x44\x40\x4a\x49\x42\x49\x4c\x3c\x43\x48\x3b\ \x48\x4b\x40\x4c\x4e\x3a\x41\x40\x3b\x42\x44\x3e\x46\x4a\x43\x47\ \x4e\x3e\x43\x48\x3b\x43\x46\x3d\x45\x4a\x40\x45\x48\x3a\x42\x43\ \x3a\x41\x44\x3e\x47\x4c\x3a\x45\x43\x40\x4b\x4d\x3d\x46\x49\x45\ \x48\x4e\x3f\x49\x4b\x3e\x45\x45\x3f\x49\x4b\x45\x4b\x51\x3e\x42\ \x47\x35\x3b\x37\x37\x3c\x3c\x38\x38\x3b\x33\x37\x38\x38\x3d\x42\ \x38\x45\x49\x3d\x41\x40\x3a\x43\x47\x3a\x47\x4a\x3d\x49\x4f\x41\ \x48\x4a\x37\x41\x41\x39\x3f\x3f\x3b\x47\x47\x3f\x49\x4f\x42\x4f\ \x53\x43\x50\x51\x4a\x53\x57\x4c\x52\x5b\x44\x49\x4e\x3a\x43\x40\ \x3e\x46\x43\x3b\x46\x45\x00\x00\x00\x8a\xb5\xd6\x8e\xbd\xdb\x8d\ \xbe\xdd\x91\xc0\xdf\x8f\xbd\xdd\x91\xbf\xdf\x92\xc0\xdf\x8c\xba\ \xdc\x89\xb6\xdb\x8a\xb6\xda\x8c\xbb\xe0\x87\xb9\xdb\x86\xb9\xd9\ \x8f\xbf\xdf\x94\xc2\xe4\x8c\xbd\xdd\x86\xbb\xdc\x87\xbd\xde\x8f\ \xbf\xe0\x92\xbb\xde\x8c\xb5\xd8\x83\xae\xcf\x76\xa3\xc1\x7d\xae\ \xc8\x8f\xc0\xda\x8e\xc2\xe0\x88\xbe\xdd\x86\xb9\xd7\x81\xaf\xcf\ \x7d\xa3\xbf\x60\x81\x96\x2b\x49\x5c\x4e\x70\x83\x6e\x92\xa8\x53\ \x76\x8e\x30\x53\x6c\x51\x77\x91\x82\xa5\xbc\x4e\x6a\x7e\x1e\x3c\ \x4f\x76\x9c\xb4\x78\x98\xb3\x35\x4a\x61\x0e\x20\x35\x79\x92\xa9\ \x75\x98\xaf\x44\x6b\x7f\x75\x9b\xb3\x88\xab\xcb\x68\x87\xaa\x7d\ \x9b\xbb\x89\xab\xc8\x76\x99\xb2\x43\x66\x7b\x60\x87\x9e\x8e\xb6\ \xd2\x97\xbf\xdf\x97\xbf\xdf\x96\xc1\xde\x90\xbf\xd9\x88\xb1\xcd\ \x7f\x9c\xb4\x48\x55\x4e\x6d\x6f\x7e\x49\x54\x52\x36\x3e\x37\x25\ \x2d\x20\x2a\x39\x3b\x32\x3e\x3c\x33\x38\x32\x3b\x41\x43\x3c\x45\ \x48\x40\x4b\x50\x3c\x43\x42\x3a\x44\x47\x3c\x44\x44\x33\x40\x3f\ \x40\x47\x4f\x3e\x4a\x4f\x38\x46\x49\x2f\x3c\x3c\x32\x3c\x3c\x34\ \x41\x3d\x3a\x43\x46\x37\x3e\x3e\x39\x44\x42\x3c\x42\x40\x3a\x45\ \x48\x3b\x48\x4a\x39\x43\x47\x39\x40\x41\x3c\x45\x47\x3f\x43\x43\ \x3b\x3e\x3f\x37\x39\x3c\x39\x42\x3f\x3e\x44\x46\x3b\x42\x42\x34\ \x39\x3e\x34\x36\x36\x36\x3a\x3b\x38\x42\x48\x3a\x42\x44\x38\x3d\ \x3d\x3b\x3e\x45\x3b\x3d\x3f\x3c\x3e\x3f\x35\x3a\x41\x35\x3b\x38\ \x32\x3a\x39\x31\x3d\x3c\x39\x3e\x43\x3c\x3f\x41\x3d\x46\x44\x47\ \x4e\x51\x42\x4b\x4b\x38\x3d\x3c\x35\x44\x40\x3a\x43\x45\x3a\x43\ \x43\x3d\x47\x47\x3e\x48\x4b\x3b\x44\x4b\x3d\x41\x48\x39\x3f\x46\ \x3c\x4a\x4c\x3b\x44\x46\x3c\x4c\x4c\x3b\x45\x44\x3b\x42\x45\x44\ \x45\x4b\x3c\x41\x47\x3f\x44\x4a\x38\x42\x41\x38\x3d\x3c\x3b\x3e\ \x43\x3d\x41\x46\x3a\x41\x42\x35\x3b\x38\x39\x3c\x39\x42\x47\x49\ \x3f\x4b\x4a\x4a\x51\x55\x3e\x45\x4b\x39\x40\x44\x37\x43\x44\x3b\ \x45\x44\x39\x41\x3f\x39\x3f\x44\x35\x39\x3d\x33\x39\x3c\x3b\x3d\ \x41\x44\x4a\x4e\x42\x4d\x50\x3e\x4c\x4c\x42\x51\x56\x45\x52\x55\ \x42\x48\x49\x37\x3c\x3f\x38\x3e\x41\x3d\x49\x4f\x3e\x47\x46\x43\ \x50\x50\x00\x00\x00\x91\xb5\xd6\x93\xba\xdb\x92\xbf\xde\x90\xbf\ \xde\x8f\xbe\xdd\x8f\xbe\xdd\x90\xbe\xde\x8b\xb9\xdd\x88\xb5\xdb\ \x8b\xb7\xdb\x8f\xba\xdc\x91\xbf\xdf\x91\xc0\xe0\x94\xc2\xe3\x92\ \xc1\xe1\x8a\xbb\xd9\x82\xb9\xd8\x83\xbc\xdb\x8b\xbb\xdc\x8d\xb8\ \xd8\x86\xb4\xd4\x80\xb4\xd2\x7d\xb4\xd3\x85\xb9\xd7\x8e\xc2\xdd\ \x8e\xc1\xdd\x87\xbd\xd9\x82\xb7\xd5\x80\xb1\xd3\x7c\xaa\xcb\x7f\ \xa9\xc7\x7c\xa7\xc0\x82\xad\xc5\x7e\xa9\xc6\x7a\xa6\xc6\x7b\xa8\ \xc8\x6f\x9c\xb9\x78\xa2\xbc\x7b\x9f\xb6\x2a\x4a\x61\x83\xa4\xc0\ \x7e\x9b\xb5\x42\x57\x6c\x13\x27\x38\x81\xa0\xb4\x85\xab\xc0\x58\ \x7e\x8f\x4d\x70\x87\x8b\xb0\xce\x97\xbe\xdf\x91\xbc\xdb\x8c\xb8\ \xd4\x87\xb6\xce\x82\xb0\xc9\x88\xb5\xd0\x94\xbb\xda\x98\xbe\xe0\ \x9a\xc0\xe3\x97\xc0\xe1\x8f\xbe\xdd\x85\xb2\xd1\x59\x7a\x95\x5c\ \x72\x76\x5f\x74\x6d\x63\x71\x6d\xa8\xc3\xd3\xac\xc6\xd7\x93\xac\ \xb1\x43\x58\x5f\x32\x3e\x3b\x39\x3d\x3c\x3d\x47\x48\x34\x40\x3f\ \x36\x3c\x3b\x38\x3f\x40\x39\x3c\x3b\x34\x38\x3d\x39\x40\x45\x35\ \x3e\x44\x3d\x48\x4d\x38\x44\x48\x3a\x4b\x4e\x49\x57\x58\x3d\x48\ \x4b\x3b\x45\x4b\x39\x41\x48\x37\x3a\x39\x35\x3b\x38\x33\x37\x37\ \x35\x3d\x3c\x36\x38\x37\x33\x39\x3a\x38\x39\x3e\x37\x3b\x3d\x37\ \x42\x42\x36\x3f\x3c\x36\x3d\x38\x35\x3f\x3d\x34\x3e\x42\x32\x3e\ \x3f\x3e\x4a\x4f\x39\x43\x49\x37\x42\x43\x39\x42\x41\x37\x42\x44\ \x34\x39\x35\x34\x3b\x3b\x3a\x42\x41\x39\x45\x46\x40\x48\x4d\x40\ \x4c\x4d\x3f\x45\x49\x38\x3e\x3e\x33\x3c\x3e\x3d\x3e\x43\x35\x3d\ \x3c\x3c\x45\x42\x40\x49\x4e\x40\x4c\x4c\x49\x50\x55\x3d\x47\x46\ \x32\x3b\x3c\x36\x3b\x40\x3a\x43\x44\x3d\x4a\x4b\x3f\x4c\x4e\x3b\ \x42\x4a\x40\x43\x49\x35\x3d\x3a\x31\x39\x3b\x30\x3d\x3e\x36\x41\ \x43\x34\x3f\x3f\x38\x40\x40\x3c\x41\x41\x38\x3a\x3a\x2f\x35\x33\ \x34\x3a\x3c\x39\x3e\x3e\x36\x3f\x40\x3d\x41\x4a\x38\x3f\x41\x41\ \x45\x4c\x3c\x46\x48\x41\x4a\x52\x3e\x4a\x4a\x38\x3e\x3d\x32\x3d\ \x39\x37\x3e\x3d\x3a\x45\x45\x43\x4d\x54\x42\x4d\x55\x43\x4d\x4f\ \x45\x4c\x51\x45\x4e\x50\x3e\x45\x49\x41\x40\x44\x39\x3c\x3b\x41\ \x47\x4a\x46\x4e\x54\x43\x50\x4f\x44\x4c\x4e\x47\x55\x5d\x00\x00\ \x00\x92\xb5\xd9\x90\xb7\xd8\x8e\xbd\xd9\x8c\xbb\xd7\x87\xb6\xd5\ \x8b\xba\xd9\x8c\xbb\xda\x89\xb7\xd9\x85\xb2\xd7\x89\xb4\xd7\x8d\ \xb6\xd7\x8f\xbb\xdc\x92\xbe\xdd\x95\xc1\xe0\x91\xbd\xdd\x8a\xba\ \xd6\x7f\xb7\xd1\x85\xba\xd7\x8c\xba\xd9\x8b\xb7\xd6\x85\xb6\xd4\ \x83\xb8\xd6\x81\xba\xd9\x80\xb8\xd6\x86\xbc\xda\x8a\xbd\xda\x89\ \xbd\xd8\x82\xb9\xd6\x83\xb8\xd8\x82\xb2\xd4\x7f\xb4\xd2\x82\xb8\ \xd4\x8a\xb9\xd5\x85\xb4\xd3\x80\xaf\xcf\x81\xaf\xd1\x85\xb3\xd5\ \x8a\xb7\xd8\x8f\xb6\xd4\x5f\x7f\x9d\x59\x75\x96\x85\x9d\xba\x52\ \x66\x7a\x11\x29\x39\x69\x88\x9c\x79\x9c\xb0\x38\x5a\x6b\x3f\x62\ \x78\x92\xb9\xd5\x98\xc3\xe0\x90\xbc\xd9\x8c\xb8\xd4\x8a\xb8\xd3\ \x8a\xb8\xd5\x8c\xbb\xd9\x90\xbc\xda\x94\xbb\xdd\x97\xbd\xe0\x90\ \xbc\xdf\x86\xba\xd8\x7f\xb4\xd3\x83\xb0\xcf\x80\xa6\xbf\x68\x8c\ \xa1\x76\x99\xae\x9c\xba\xcf\x93\xa3\xa9\x79\x92\xa0\x6b\x8a\x9e\ \x43\x5e\x65\x2f\x39\x38\x33\x36\x38\x3a\x41\x41\x3a\x3d\x3f\x35\ \x3a\x38\x30\x37\x37\x35\x3c\x3f\x35\x46\x4a\x37\x42\x46\x39\x47\ \x45\x3c\x48\x46\x3b\x46\x49\x3a\x46\x4b\x3a\x3f\x3e\x38\x43\x3d\ \x38\x43\x48\x3f\x46\x48\x40\x47\x48\x3c\x45\x42\x34\x37\x38\x30\ \x37\x3a\x36\x41\x43\x38\x41\x44\x3e\x46\x4a\x42\x49\x4d\x3b\x42\ \x43\x41\x46\x4b\x42\x4b\x4d\x41\x48\x4d\x3d\x43\x47\x3e\x4b\x4e\ \x3f\x44\x47\x3d\x46\x45\x40\x44\x4a\x3b\x4a\x4b\x3e\x49\x48\x47\ \x4f\x5a\x3b\x47\x48\x3a\x42\x44\x39\x46\x46\x41\x48\x49\x39\x40\ \x44\x3c\x42\x47\x3b\x47\x4d\x3b\x45\x41\x3d\x3e\x43\x38\x43\x3e\ \x3e\x44\x45\x35\x3f\x40\x35\x3a\x3a\x33\x37\x37\x32\x3e\x3e\x3d\ \x45\x49\x40\x48\x4c\x38\x3e\x3a\x33\x3c\x3a\x3b\x43\x43\x3a\x45\ \x45\x3f\x46\x45\x41\x47\x4b\x40\x49\x4e\x3a\x41\x46\x3a\x40\x44\ \x3a\x42\x43\x3e\x44\x42\x3e\x42\x44\x3a\x45\x46\x42\x4a\x4e\x3e\ \x44\x47\x44\x46\x4c\x3a\x45\x47\x3c\x47\x4d\x3a\x42\x44\x3c\x3e\ \x45\x3a\x3f\x41\x35\x3b\x3f\x35\x3f\x41\x3a\x47\x47\x3d\x49\x4b\ \x46\x4c\x54\x44\x4c\x53\x43\x47\x4c\x3f\x46\x47\x3f\x45\x49\x3d\ \x43\x40\x3c\x46\x47\x43\x4f\x56\x3d\x49\x4a\x43\x4b\x4a\x48\x4f\ \x53\x4b\x56\x5c\x4f\x58\x61\x52\x5c\x63\x00\x00\x00\x8f\xb8\xdc\ \x8c\xb7\xd7\x8d\xbb\xd7\x8a\xba\xd5\x84\xb4\xd3\x86\xb6\xd4\x89\ \xb8\xd5\x8a\xb5\xd5\x8a\xb2\xd6\x8d\xb5\xd5\x89\xb4\xd5\x8b\xb9\ \xd7\x91\xbd\xd9\x93\xc0\xdc\x8f\xbd\xdb\x8a\xb8\xd7\x83\xb8\xd2\ \x87\xb9\xd5\x8b\xb9\xd8\x85\xb6\xd4\x80\xb6\xd2\x80\xb9\xd6\x7f\ \xb8\xd7\x7d\xb4\xd3\x81\xb6\xd6\x86\xb9\xd9\x87\xba\xda\x85\xb7\ \xd8\x82\xb6\xd5\x83\xb6\xd5\x83\xba\xd8\x85\xbb\xda\x8b\xbd\xdc\ \x8c\xba\xda\x87\xb5\xd6\x87\xb5\xd7\x88\xb6\xd9\x8a\xb8\xdb\x8c\ \xb6\xd9\x8b\xaf\xd2\x63\x83\xa6\x46\x61\x82\x37\x4f\x68\x19\x34\ \x49\x3b\x5b\x72\x49\x6a\x84\x39\x5c\x75\x7a\x9e\xb9\x8e\xb5\xd4\ \x90\xbc\xda\x8f\xbc\xda\x91\xba\xd8\x90\xbb\xd9\x8c\xba\xda\x8b\ \xbb\xda\x8c\xbb\xd9\x90\xbb\xda\x92\xba\xdc\x8d\xba\xda\x84\xb9\ \xd9\x7d\xb6\xd7\x80\xb6\xd6\x86\xb6\xd5\x8a\xb8\xd3\x92\xb8\xcf\ \x94\xb0\xc8\xa8\xbd\xc5\x88\xb0\xc3\x79\xa4\xb7\x5c\x7c\x8b\x45\ \x5f\x6e\x2c\x3a\x3a\x2f\x37\x36\x35\x39\x37\x3b\x44\x47\x34\x45\ \x47\x36\x3f\x46\x36\x42\x43\x35\x3d\x44\x38\x41\x42\x36\x3c\x3d\ \x37\x46\x48\x38\x42\x41\x3b\x49\x51\x43\x4d\x57\x45\x50\x5a\x3e\ \x47\x4b\x3c\x41\x44\x39\x40\x41\x38\x40\x43\x3e\x44\x48\x3f\x47\ \x4d\x3d\x42\x41\x39\x41\x3d\x36\x40\x3d\x39\x3d\x39\x3a\x41\x43\ \x3b\x43\x48\x3a\x40\x3e\x39\x40\x3f\x3e\x45\x4a\x40\x4d\x51\x3f\ \x4b\x4c\x3b\x42\x47\x40\x48\x4b\x3b\x42\x46\x3b\x41\x46\x39\x42\ \x45\x3a\x48\x4b\x3f\x4a\x4c\x39\x47\x45\x3f\x48\x47\x40\x4c\x52\ \x40\x4b\x4e\x3f\x49\x4a\x3e\x49\x4b\x3e\x4d\x50\x40\x47\x4b\x36\ \x3f\x41\x38\x41\x42\x3b\x4a\x4d\x3d\x48\x4c\x44\x48\x4d\x3a\x40\ \x44\x3c\x42\x44\x45\x4b\x51\x43\x45\x4b\x39\x40\x41\x3b\x46\x4a\ \x37\x42\x43\x3d\x42\x44\x36\x3e\x3d\x35\x41\x41\x3d\x46\x48\x43\ \x47\x48\x3c\x44\x41\x3f\x48\x4a\x3b\x3f\x42\x39\x3f\x3a\x39\x3f\ \x3b\x3c\x47\x4b\x3e\x45\x4a\x36\x42\x41\x3c\x40\x41\x34\x3e\x3e\ \x3f\x45\x48\x41\x4a\x4f\x47\x4e\x55\x43\x4d\x54\x42\x4e\x51\x41\ \x48\x4e\x3a\x3f\x41\x35\x3b\x3a\x3b\x3d\x3f\x3e\x49\x4a\x42\x48\ \x4b\x45\x51\x54\x48\x53\x56\x4c\x59\x5c\x4f\x58\x64\x4c\x56\x5c\ \x4f\x58\x62\x53\x59\x5d\x00\x00\x00\x8d\xba\xde\x8b\xb6\xd8\x91\ \xba\xda\x8a\xb7\xd7\x88\xb5\xd5\x8b\xb6\xd8\x8c\xb7\xd8\x8e\xb3\ \xd5\x91\xb4\xd9\x95\xb9\xdd\x8e\xba\xdd\x89\xba\xd8\x8e\xbe\xd9\ \x90\xbf\xdb\x8f\xbd\xdd\x8b\xb9\xda\x89\xb9\xd7\x8b\xb9\xd5\x8a\ \xba\xd5\x83\xb7\xd3\x7b\xb3\xd2\x7e\xb6\xd6\x80\xb6\xd5\x82\xb3\ \xd3\x84\xb4\xd4\x85\xb5\xd7\x83\xb5\xd8\x82\xb1\xd5\x85\xb4\xd6\ \x88\xb7\xd7\x87\xb9\xd9\x88\xba\xdb\x8b\xb8\xda\x8d\xb7\xd8\x8b\ \xb6\xd8\x88\xb6\xd7\x89\xb8\xd8\x8a\xb7\xda\x8a\xb6\xdb\x87\xb1\ \xd6\x84\xad\xcf\x7c\xa0\xc0\x6b\x8d\xaa\x6d\x8f\xaa\x79\x9e\xba\ \x76\x9e\xbd\x7e\xa5\xc8\x87\xad\xd0\x8e\xb5\xd7\x8a\xb6\xd5\x88\ \xb8\xd6\x8a\xb8\xd7\x8a\xb9\xda\x89\xb7\xd8\x88\xb6\xd7\x89\xb7\ \xd8\x8b\xb8\xd8\x8e\xb8\xd7\x8c\xb7\xd7\x84\xb6\xd5\x80\xb8\xd6\ \x82\xbb\xd8\x8b\xbf\xdd\x94\xc1\xdf\x99\xbf\xd6\x7b\x94\xab\x98\ \xaa\xb1\x8f\xaa\xbe\x88\xab\xbf\x6b\x8b\x9b\x7e\xa2\xb4\x50\x6d\ \x75\x30\x42\x42\x28\x31\x2d\x32\x34\x35\x3c\x44\x49\x36\x41\x43\ \x33\x43\x42\x35\x43\x48\x33\x3e\x3f\x37\x41\x45\x3c\x49\x51\x38\ \x43\x48\x3c\x47\x49\x34\x40\x47\x36\x3f\x41\x34\x3b\x3c\x3a\x44\ \x45\x3c\x4b\x4c\x35\x40\x43\x38\x43\x3e\x3a\x3a\x3e\x38\x3b\x3a\ \x33\x3d\x3b\x3b\x41\x48\x3b\x43\x48\x3a\x43\x46\x34\x3d\x3c\x36\ \x3e\x3d\x37\x42\x42\x3f\x44\x43\x39\x40\x47\x35\x3c\x3f\x36\x40\ \x3e\x39\x43\x44\x38\x3c\x3e\x3c\x44\x46\x3e\x46\x4b\x43\x54\x52\ \x41\x49\x4a\x39\x43\x45\x41\x46\x4c\x3f\x45\x48\x3e\x41\x42\x34\ \x3a\x37\x36\x3c\x3e\x34\x3f\x3e\x35\x3c\x3d\x3a\x44\x49\x40\x47\ \x4c\x3d\x44\x4a\x3c\x42\x46\x34\x3f\x3f\x37\x42\x3e\x39\x43\x45\ \x41\x44\x4a\x3b\x40\x49\x3f\x49\x4a\x41\x4b\x49\x41\x46\x4a\x3e\ \x48\x49\x3f\x4c\x4e\x43\x4d\x4f\x42\x4b\x4b\x3d\x43\x46\x3b\x3e\ \x41\x38\x3e\x41\x36\x42\x42\x37\x42\x41\x38\x3e\x3f\x37\x3b\x3a\ \x39\x3d\x43\x40\x47\x4d\x43\x4c\x51\x3c\x4b\x52\x46\x4b\x4e\x41\ \x4a\x4f\x41\x49\x4e\x40\x47\x49\x38\x40\x3e\x35\x3b\x3d\x34\x40\ \x3f\x3b\x49\x4f\x45\x50\x54\x47\x4f\x54\x46\x54\x5b\x4c\x58\x5f\ \x4d\x5a\x61\x4d\x58\x5a\x4c\x57\x5f\x50\x59\x5f\x4e\x56\x5d\x4d\ \x57\x5f\x00\x00\x00\x8b\xb8\xdc\x86\xb1\xd6\x86\xb2\xd4\x8a\xb7\ \xd7\x8e\xb9\xd9\x8e\xb6\xd9\x8c\xb3\xd7\x94\xb7\xdd\x96\xb8\xdf\ \x99\xc0\xe3\x92\xbe\xdf\x88\xbb\xd8\x8a\xbe\xda\x8e\xbd\xdc\x8c\ \xba\xdb\x8a\xb7\xd9\x8d\xba\xdb\x8f\xbb\xd9\x8d\xba\xd6\x8a\xb9\ \xd6\x88\xb9\xd9\x85\xb7\xd9\x86\xb7\xd7\x87\xb6\xd5\x87\xb7\xd5\ \x87\xb7\xd5\x82\xb5\xd7\x84\xb5\xd8\x8a\xb9\xd9\x8a\xba\xd9\x8c\ \xba\xda\x8c\xb8\xd9\x8f\xb8\xd9\x94\xbb\xda\x8d\xb8\xd7\x8a\xb9\ \xd8\x8d\xbb\xd9\x8f\xb8\xd9\x8d\xb5\xdb\x87\xb2\xd7\x84\xb1\xd4\ \x88\xb2\xd2\x8a\xb1\xd0\x86\xaf\xcd\x83\xb0\xd0\x7d\xac\xce\x7b\ \xa8\xcd\x83\xae\xd2\x89\xb2\xd4\x88\xb2\xd2\x84\xb0\xcf\x83\xb0\ \xd0\x84\xb2\xd5\x83\xb2\xd2\x84\xb2\xd2\x88\xb5\xd6\x8b\xba\xd9\ \x8a\xb8\xd6\x88\xb3\xd3\x81\xb1\xd0\x82\xb7\xd2\x87\xbf\xd8\x91\ \xc1\xdd\x97\xc2\xdc\x98\xc1\xd6\x84\xa1\xba\x37\x4f\x66\x9a\xb1\ \xba\xab\xc3\xcb\x82\xa3\xaf\x8c\xae\xc8\x8e\xb8\xcc\x56\x78\x80\ \x3f\x5f\x66\x2f\x3f\x43\x32\x3e\x41\x3b\x46\x46\x3a\x4d\x56\x37\ \x45\x45\x3f\x44\x49\x3b\x46\x4d\x3b\x47\x49\x36\x41\x45\x3a\x44\ \x4a\x34\x46\x4a\x36\x49\x4c\x39\x46\x4a\x3d\x4a\x4d\x3d\x4b\x49\ \x3c\x45\x49\x39\x43\x3f\x3b\x42\x41\x3f\x4a\x49\x39\x43\x41\x3d\ \x49\x4c\x38\x41\x42\x36\x3d\x38\x33\x39\x36\x3b\x42\x43\x3b\x46\ \x48\x3a\x42\x43\x38\x3a\x3e\x3a\x45\x49\x41\x4c\x4b\x37\x42\x40\ \x38\x43\x44\x3e\x43\x47\x39\x42\x44\x3b\x44\x49\x41\x48\x4b\x38\ \x41\x42\x3b\x43\x42\x39\x3b\x3b\x39\x3e\x40\x3e\x44\x49\x3e\x45\ \x4b\x41\x4b\x4e\x3c\x45\x4c\x40\x4e\x52\x3a\x43\x43\x3b\x44\x42\ \x3d\x4a\x4c\x39\x45\x45\x3d\x47\x47\x36\x41\x3f\x3d\x42\x44\x3b\ \x40\x43\x3e\x40\x49\x3f\x46\x46\x39\x3a\x38\x37\x3e\x40\x3b\x3f\ \x40\x34\x3b\x3d\x30\x38\x36\x31\x38\x37\x36\x39\x37\x38\x40\x44\ \x3c\x43\x4a\x3a\x43\x42\x38\x42\x45\x3d\x4d\x52\x3f\x49\x4d\x44\ \x50\x51\x41\x4a\x4c\x46\x50\x54\x41\x4d\x4d\x44\x49\x4e\x3b\x44\ \x46\x39\x42\x42\x39\x3f\x43\x3b\x44\x46\x3d\x49\x49\x43\x4a\x4d\ \x44\x4d\x50\x41\x4d\x50\x4b\x56\x5c\x4e\x55\x5e\x4d\x56\x5a\x4e\ \x5d\x64\x4c\x5d\x62\x4b\x56\x5d\x4d\x56\x5b\x4c\x56\x60\x00\x00\ \x00\x8b\xb7\xdc\x81\xb1\xd5\x7f\xb2\xd1\x84\xb5\xd3\x8b\xb9\xd7\ \x8c\xb7\xd7\x94\xb8\xdd\x95\xb6\xe0\x92\xb9\xdf\x98\xc0\xe2\x92\ \xbf\xdf\x8d\xbf\xdc\x90\xbf\xe0\x92\xc0\xe0\x8e\xb9\xda\x8d\xb8\ \xd9\x8b\xb8\xd9\x8c\xba\xd9\x90\xbb\xd8\x94\xbe\xdb\x92\xbf\xde\ \x8a\xbb\xdc\x8c\xbd\xdf\x8e\xbd\xde\x8e\xbd\xda\x8f\xbe\xd9\x88\ \xba\xd6\x88\xb8\xd9\x88\xbb\xdb\x89\xbd\xdb\x8e\xbc\xda\x94\xbb\ \xdb\x99\xc0\xdd\x96\xc2\xda\x90\xbf\xd9\x8e\xbf\xda\x8f\xbd\xda\ \x8d\xb5\xd8\x84\xac\xd6\x89\xb0\xdd\x8a\xb5\xde\x8c\xb5\xdc\x86\ \xae\xd2\x81\xad\xd1\x7e\xad\xd2\x7d\xae\xd2\x7c\xac\xd0\x82\xaf\ \xd4\x82\xaf\xd3\x82\xaa\xce\x87\xac\xd0\x84\xab\xd2\x86\xaf\xd7\ \x86\xb0\xd3\x88\xb2\xd4\x8d\xb4\xd8\x8c\xb7\xd8\x86\xb4\xd3\x83\ \xad\xcf\x83\xae\xcd\x83\xb3\xd0\x88\xb9\xd6\x8d\xbb\xd8\x92\xbe\ \xd8\x93\xbd\xd5\x8d\xb1\xcc\x64\x80\x9c\x4f\x6a\x82\x96\xa7\xb8\ \x9f\xb7\xc3\x93\xb0\xb9\x9b\xbf\xd3\x96\xc1\xd8\x8e\xb1\xc9\x78\ \x9b\xaa\x5d\x7e\x8b\x4b\x67\x73\x34\x43\x45\x37\x40\x40\x40\x4a\ \x59\x44\x53\x5c\x3c\x4a\x4e\x3f\x4d\x57\x3c\x4a\x50\x43\x4d\x55\ \x38\x44\x48\x37\x3e\x3f\x37\x3f\x3c\x35\x3d\x40\x38\x42\x46\x33\ \x3c\x38\x3d\x41\x45\x3f\x49\x4a\x38\x40\x40\x35\x3e\x3f\x39\x3e\ \x3a\x39\x42\x43\x3e\x47\x4b\x3e\x46\x45\x3e\x41\x43\x38\x40\x40\ \x3d\x46\x4d\x42\x4b\x51\x43\x4e\x4b\x3b\x40\x42\x3e\x42\x46\x3b\ \x3f\x40\x38\x42\x45\x3f\x49\x49\x40\x46\x4e\x3b\x43\x48\x3a\x40\ \x41\x37\x41\x44\x37\x45\x44\x38\x40\x43\x33\x37\x37\x37\x3a\x3b\ \x3c\x41\x45\x3c\x42\x43\x3d\x44\x43\x3f\x48\x4e\x38\x41\x43\x38\ \x3c\x3b\x30\x38\x38\x2f\x36\x38\x2f\x35\x38\x31\x39\x35\x33\x3a\ \x39\x31\x39\x36\x36\x38\x38\x31\x39\x39\x31\x37\x35\x30\x3a\x3a\ \x33\x3c\x3f\x33\x42\x41\x37\x3c\x3b\x31\x36\x35\x2c\x34\x32\x30\ \x3a\x39\x39\x40\x44\x38\x43\x4a\x3a\x47\x4a\x3e\x47\x4a\x3d\x47\ \x4b\x41\x49\x4d\x39\x3f\x43\x37\x3c\x3c\x3c\x44\x46\x3f\x47\x50\ \x3e\x4b\x4d\x41\x48\x4a\x44\x51\x56\x44\x4a\x50\x47\x50\x57\x49\ \x57\x60\x4e\x5c\x64\x49\x5b\x5f\x50\x5d\x67\x4f\x5c\x62\x51\x5a\ \x62\x4a\x54\x5c\x48\x5a\x5f\x4a\x5a\x5f\x00\x00\x00\x8c\xb6\xd9\ \x80\xb4\xd5\x7e\xb6\xd5\x80\xb4\xd3\x87\xb6\xd5\x8c\xb9\xd8\x95\ \xbc\xe0\x99\xbc\xe6\x94\xbc\xe2\x93\xc0\xe1\x90\xc0\xdf\x8b\xbf\ \xdd\x91\xc0\xe3\x92\xbd\xe2\x8e\xba\xdf\x8e\xbd\xdd\x8c\xba\xdc\ \x8d\xbc\xdd\x91\xc0\xde\x92\xc1\xe0\x8f\xbf\xdd\x8a\xbf\xdd\x8e\ \xc0\xe0\x92\xc1\xe0\x97\xc3\xe0\x93\xc3\xdb\x8f\xbe\xd9\x88\xb9\ \xd8\x81\xb8\xd7\x86\xbd\xdb\x8e\xbf\xdd\x94\xbf\xde\x98\xc3\xdd\ \x95\xc3\xde\x91\xc4\xde\x91\xc3\xde\x93\xbe\xdd\x82\xaa\xd3\x53\ \x7b\xb0\x47\x6f\xaa\x4a\x72\xad\x4e\x74\xac\x57\x7d\xb2\x5c\x83\ \xba\x5d\x84\xba\x63\x8b\xbd\x67\x91\xbf\x62\x8f\xbf\x61\x8c\xc0\ \x66\x8e\xc1\x6b\x91\xbf\x66\x8a\xba\x65\x88\xb8\x6b\x8e\xba\x73\ \x95\xbd\x75\x96\xc2\x76\x9e\xc6\x7b\xa3\xca\x7e\xa1\xcb\x80\xa4\ \xcc\x7e\xa6\xd0\x7d\xa8\xd1\x85\xb1\xd8\x8b\xb7\xde\x8d\xb6\xde\ \x8e\xb1\xdb\x88\xa6\xd1\x8f\xaa\xcc\x74\x8d\x90\x53\x64\x72\xa3\ \xbc\xd4\xb0\xcc\xdc\xa2\xc2\xce\x89\xa2\xbb\x94\xb8\xcc\x8e\xb3\ \xcc\x7a\x9c\xb4\x57\x77\x82\x3d\x4f\x59\x36\x3b\x3e\x3b\x43\x46\ \x41\x4d\x52\x40\x54\x58\x3a\x44\x48\x32\x3d\x3c\x37\x43\x44\x3e\ \x43\x45\x37\x42\x49\x3d\x43\x49\x39\x4b\x51\x39\x47\x48\x39\x40\ \x43\x33\x3a\x39\x33\x3c\x3c\x3a\x43\x47\x3d\x43\x48\x3c\x43\x4d\ \x3c\x41\x49\x36\x3f\x40\x3d\x40\x42\x40\x45\x47\x42\x4a\x4e\x41\ \x46\x4c\x39\x3d\x41\x37\x40\x3f\x3c\x42\x45\x3b\x40\x49\x36\x3d\ \x3e\x3c\x3e\x43\x3a\x3c\x3d\x30\x38\x35\x33\x3d\x3e\x38\x46\x48\ \x42\x4d\x51\x3c\x44\x4a\x3e\x48\x4c\x40\x4c\x51\x42\x49\x4f\x3b\ \x41\x46\x37\x42\x46\x3a\x41\x46\x3f\x4b\x4e\x3e\x47\x43\x38\x45\ \x45\x41\x47\x4b\x3e\x4a\x4e\x3f\x49\x50\x3b\x43\x44\x3c\x41\x40\ \x3b\x44\x46\x40\x4b\x4b\x41\x49\x4c\x3e\x48\x4d\x43\x48\x52\x41\ \x4c\x54\x3b\x46\x46\x3b\x45\x48\x40\x48\x4d\x40\x4e\x5a\x3c\x4a\ \x53\x3b\x43\x47\x39\x45\x4b\x37\x3f\x41\x32\x3e\x3c\x3a\x40\x43\ \x3a\x44\x45\x40\x47\x48\x3f\x45\x46\x44\x47\x4c\x41\x4d\x52\x43\ \x50\x55\x42\x4e\x51\x44\x4e\x4e\x48\x55\x5b\x4c\x56\x60\x47\x50\ \x57\x4a\x53\x5b\x4f\x57\x5e\x4f\x56\x57\x49\x57\x5d\x4b\x5a\x64\ \x52\x5d\x6a\x54\x5e\x67\x00\x00\x00\x8c\xb2\xd4\x84\xb1\xd3\x81\ \xb4\xd5\x82\xb3\xd3\x89\xba\xd7\x8d\xbb\xd7\x96\xbf\xdf\x9b\xc0\ \xe4\x96\xbf\xe0\x90\xbd\xdb\x8c\xbe\xdb\x89\xbd\xdd\x8e\xbe\xe2\ \x8e\xbb\xe0\x8a\xbc\xde\x88\xbd\xdd\x89\xbc\xdc\x8d\xbf\xdf\x8d\ \xbe\xde\x90\xc0\xe0\x8f\xbe\xdd\x90\xc0\xdb\x95\xc1\xdd\x9c\xc3\ \xe0\x9c\xc5\xe1\x96\xc3\xdd\x91\xc2\xda\x7f\xb1\xcd\x7a\xb2\xd1\ \x82\xba\xda\x8e\xbe\xde\x94\xc2\xe0\x98\xc3\xdf\x96\xc4\xe0\x93\ \xc4\xde\x93\xc3\xe0\x91\xbe\xdd\x81\xad\xd4\x61\x8e\xc1\x47\x74\ \xae\x43\x6f\xab\x4a\x70\xad\x45\x67\xa6\x3d\x60\xa0\x37\x59\x9b\ \x32\x53\x91\x2d\x51\x8b\x2e\x54\x91\x30\x58\x99\x2f\x58\x94\x2c\ \x53\x8a\x2d\x4f\x84\x2c\x48\x7b\x2d\x45\x73\x2e\x46\x73\x2f\x4a\ \x78\x35\x54\x82\x3c\x5b\x8b\x3f\x5d\x90\x41\x64\x97\x4e\x75\xac\ \x52\x79\xb3\x55\x7d\xb6\x58\x7f\xba\x54\x77\xb6\x55\x72\xb5\x53\ \x6d\xae\x4e\x6c\xaa\x6e\x8e\xb9\x69\x87\x92\x5e\x72\x83\x9c\xb1\ \xce\x89\xa9\xd4\x95\xa9\xb3\x8b\xaa\xc4\x91\xb7\xd0\x91\xb9\xd1\ \x91\xb6\xcb\x70\x94\xa5\x48\x64\x68\x33\x3e\x44\x39\x3f\x40\x3f\ \x4a\x54\x34\x41\x46\x39\x47\x4c\x37\x46\x4b\x35\x3a\x3c\x38\x40\ \x42\x39\x40\x46\x31\x3c\x3b\x37\x3f\x3f\x3e\x41\x46\x36\x40\x40\ \x36\x3c\x3c\x34\x39\x39\x34\x39\x38\x39\x43\x47\x38\x3f\x3f\x3c\ \x46\x43\x3f\x49\x4d\x3f\x4b\x4e\x3b\x3f\x45\x3b\x3d\x40\x3e\x43\ \x46\x47\x50\x54\x3a\x41\x3d\x39\x3d\x3e\x37\x45\x46\x43\x4a\x4b\ \x3e\x47\x49\x3f\x4a\x4d\x3d\x47\x45\x35\x3f\x3f\x36\x3a\x3b\x3b\ \x3f\x3f\x40\x43\x47\x39\x41\x43\x33\x3f\x3f\x35\x41\x3e\x3c\x45\ \x42\x39\x42\x47\x38\x42\x46\x3b\x3f\x41\x36\x40\x41\x3c\x3e\x44\ \x37\x41\x3d\x33\x3e\x3d\x35\x3e\x3d\x38\x3d\x3f\x39\x3c\x3e\x37\ \x3d\x41\x34\x3f\x40\x37\x41\x40\x3c\x42\x47\x3d\x42\x47\x40\x46\ \x48\x41\x4d\x52\x46\x50\x55\x4d\x55\x5e\x48\x53\x5a\x47\x4e\x51\ \x3b\x46\x4b\x38\x44\x47\x3b\x45\x46\x3d\x48\x50\x3e\x48\x4e\x3e\ \x42\x44\x40\x48\x4a\x45\x4f\x51\x47\x52\x5a\x48\x53\x5b\x46\x55\ \x57\x4d\x59\x5d\x4c\x58\x61\x4e\x52\x5b\x49\x53\x58\x4d\x5a\x5e\ \x51\x5b\x62\x4c\x54\x5c\x50\x5c\x68\x56\x62\x6d\x5f\x69\x75\x6a\ \x7d\x83\x00\x00\x00\x72\x96\xb7\x87\xae\xd0\x88\xb4\xd5\x86\xb6\ \xd5\x8a\xbd\xda\x8f\xc1\xdb\x91\xbf\xdb\x92\xba\xd8\x90\xb9\xd6\ \x8e\xbd\xd8\x89\xbe\xd9\x8c\xbf\xdd\x8f\xbd\xdf\x8b\xba\xdd\x85\ \xbb\xdb\x86\xbe\xdc\x88\xbe\xdb\x8b\xc0\xdc\x8d\xbf\xdd\x8e\xbe\ \xdc\x8b\xb8\xd4\x8e\xb5\xcd\x99\xb9\xd1\x9e\xbc\xd6\x9c\xc0\xdb\ \x93\xbf\xd8\x90\xc2\xd9\x87\xbb\xd7\x77\xaf\xd0\x7c\xb3\xd8\x8a\ \xbe\xe0\x91\xc2\xe1\x92\xc2\xdf\x92\xc1\xdf\x92\xc0\xdf\x91\xc0\ \xe0\x8a\xba\xda\x84\xb7\xda\x7c\xb0\xd7\x7b\xb0\xdb\x7e\xae\xdb\ \x7e\xa5\xd6\x7a\x9f\xd4\x77\x9d\xd4\x77\x9c\xd6\x6d\x96\xcd\x64\ \x90\xc4\x5e\x8c\xc0\x5f\x8d\xc5\x5f\x8c\xc1\x57\x80\xb2\x3f\x61\ \x90\x1e\x35\x5f\x12\x26\x4b\x11\x27\x4c\x11\x2a\x50\x1c\x36\x5e\ \x3a\x54\x7f\x49\x6a\x95\x45\x6d\x9b\x42\x6d\xa3\x3e\x68\xa2\x39\ \x61\x9d\x36\x5e\xa0\x38\x5c\xa5\x3e\x5d\xa8\x41\x5d\xa6\x3c\x5c\ \xa2\x39\x5f\xa1\x3f\x65\xa4\x79\x98\xb5\x86\x9f\xa2\x8b\x99\xb2\ \x8c\xa1\xab\x47\x59\x68\x6b\x83\x9d\x94\xba\xd2\x9c\xc4\xdb\x97\ \xbd\xd5\x7a\xa4\xb9\x3b\x55\x66\x3b\x4e\x55\x55\x6f\x75\x6c\x87\ \x90\x5b\x76\x7b\x34\x46\x48\x31\x3a\x37\x30\x39\x38\x33\x3a\x3f\ \x36\x44\x4b\x3c\x48\x4f\x2f\x38\x3e\x31\x34\x32\x2d\x33\x32\x33\ \x3a\x3b\x3f\x4b\x4e\x3c\x4c\x50\x3b\x42\x42\x3b\x42\x40\x3c\x3d\ \x41\x35\x38\x3b\x34\x3a\x3f\x35\x38\x3e\x36\x3a\x3d\x36\x3b\x3c\ \x34\x3b\x40\x36\x40\x3e\x38\x40\x43\x3d\x44\x4b\x38\x42\x42\x38\ \x41\x41\x3d\x47\x46\x38\x40\x43\x3e\x48\x48\x41\x4c\x4e\x3f\x46\ \x46\x3d\x48\x46\x41\x4d\x55\x44\x4f\x54\x47\x4f\x52\x40\x48\x4b\ \x41\x49\x4a\x3f\x44\x46\x40\x4a\x4d\x41\x4f\x50\x3e\x46\x47\x40\ \x48\x4a\x43\x4f\x54\x3f\x4d\x4d\x3f\x48\x4d\x3f\x46\x4a\x3c\x4b\ \x4e\x3d\x4b\x4e\x42\x4c\x4f\x41\x4c\x4e\x41\x4f\x53\x46\x53\x59\ \x4a\x4f\x55\x48\x4a\x51\x3a\x44\x48\x3d\x45\x46\x3d\x4c\x4a\x41\ \x4c\x54\x44\x4d\x52\x40\x49\x54\x3f\x49\x4e\x39\x45\x47\x41\x4b\ \x4d\x41\x4d\x52\x3e\x47\x4a\x41\x4e\x4c\x44\x53\x57\x48\x55\x58\ \x51\x59\x67\x56\x5e\x68\x55\x5c\x65\x55\x5f\x66\x53\x5b\x64\x59\ \x64\x6d\x57\x69\x75\x68\x7c\x83\x9e\xb8\xb7\xb2\xcc\xd7\x00\x00\ \x00\x36\x5b\x75\x7a\x9f\xba\x8e\xb7\xd6\x8f\xbe\xdc\x8b\xbf\xdd\ \x8b\xba\xd4\x85\xaf\xc5\x7a\xa1\xb7\x7f\xaa\xc1\x86\xb5\xcd\x89\ \xba\xd2\x8e\xba\xd5\x8f\xba\xd6\x8b\xba\xd8\x88\xbb\xda\x89\xbe\ \xd7\x8d\xbf\xd7\x8e\xbf\xd9\x8f\xc0\xde\x8b\xba\xd9\x69\x94\xaf\ \x2e\x50\x67\x32\x4f\x67\x50\x6b\x84\x77\x97\xb0\x8d\xb7\xd0\x8d\ \xbe\xd8\x89\xbe\xdd\x82\xb9\xde\x82\xb8\xe0\x85\xba\xde\x88\xbd\ \xdf\x88\xbc\xdc\x8c\xbd\xde\x8e\xbc\xdd\x8c\xba\xde\x84\xb6\xdb\ \x81\xb9\xdb\x85\xbd\xdd\x86\xbc\xdb\x89\xb9\xd9\x86\xb1\xd4\x81\ \xad\xd3\x82\xaf\xd9\x84\xb1\xdc\x83\xb6\xdc\x80\xb7\xdb\x7f\xb7\ \xdc\x81\xb8\xde\x84\xb7\xdd\x7f\xab\xd1\x6a\x8d\xaf\x1b\x36\x53\ \x3a\x55\x70\x60\x7b\x9b\x58\x74\x96\x35\x51\x72\x18\x33\x50\x3a\ \x59\x73\x6b\x92\xb2\x76\xa2\xca\x7d\xa9\xd5\x7e\xa7\xd7\x78\xa2\ \xd8\x6f\x9c\xd6\x74\x9d\xd5\x71\x96\xd0\x64\x8c\xc5\x5b\x85\xbd\ \x5c\x84\xb9\x5c\x83\xb8\x77\x9b\xc7\xba\xd3\xdb\xa6\xc5\xce\x4c\ \x6c\x71\x68\x85\x98\x8b\xad\xca\x98\xbe\xd8\x95\xb8\xd0\x98\xbe\ \xd6\x8d\xb4\xc8\x8f\xb7\xca\x97\xbe\xd9\xa9\xcd\xe5\xaa\xcc\xe2\ \x86\xae\xba\x73\x95\x9f\x3b\x50\x53\x32\x41\x42\x2f\x3f\x42\x2f\ \x35\x34\x29\x30\x32\x30\x3c\x3b\x32\x43\x46\x32\x3b\x3c\x39\x3e\ \x43\x3d\x3e\x41\x34\x39\x3c\x35\x3b\x40\x3b\x43\x43\x37\x3f\x39\ \x3d\x48\x4a\x43\x4a\x4d\x3a\x41\x44\x35\x3e\x40\x3c\x42\x48\x36\ \x42\x40\x35\x46\x47\x3b\x49\x4b\x3a\x44\x47\x3c\x45\x46\x40\x49\ \x52\x3e\x49\x52\x41\x4a\x4d\x3d\x46\x49\x42\x4c\x52\x4c\x57\x5f\ \x42\x48\x4d\x3c\x42\x45\x39\x44\x42\x3f\x48\x4b\x3c\x45\x44\x42\ \x46\x46\x43\x4b\x4f\x42\x4c\x50\x3c\x40\x41\x33\x3a\x3e\x3e\x41\ \x46\x37\x40\x40\x3f\x42\x49\x44\x4d\x51\x42\x4e\x51\x3f\x4a\x50\ \x49\x54\x56\x55\x5c\x63\x4a\x51\x55\x45\x4b\x4d\x3c\x43\x43\x3f\ \x41\x43\x43\x49\x4b\x48\x53\x5c\x3f\x4d\x4f\x3f\x46\x4b\x3d\x4b\ \x4a\x46\x52\x5a\x4c\x55\x5a\x47\x59\x5e\x4c\x59\x63\x4a\x54\x60\ \x47\x54\x5a\x51\x5d\x65\x4b\x56\x57\x47\x51\x58\x4a\x53\x58\x4a\ \x54\x5a\x51\x5f\x62\x5c\x66\x72\x60\x6c\x75\x75\x8c\x90\xa2\xba\ \xb8\xb6\xca\xd3\x9e\xb7\xd0\x85\xa4\xc5\x00\x00\x00\x48\x6c\x83\ \x50\x72\x89\x8c\xb1\xcd\x8e\xba\xda\x8f\xbd\xdd\x7a\xa2\xbd\x28\ \x48\x5f\x1d\x3c\x51\x35\x58\x70\x40\x66\x80\x59\x7f\x96\x4d\x6d\ \x83\x44\x67\x7d\x4c\x77\x90\x65\x93\xae\x81\xac\xc6\x90\xb9\xd3\ \x92\xba\xd8\x8f\xba\xda\x82\xaf\xd0\x5c\x89\xa5\x26\x4c\x64\x6e\ \x8c\xa6\x6b\x83\x9e\x2d\x49\x60\x63\x8b\xa2\x8d\xbe\xdb\x8c\xc0\ \xe3\x88\xc0\xe4\x83\xb8\xde\x83\xb7\xda\x85\xb7\xd8\x85\xb5\xd6\ \x86\xb4\xd6\x8d\xb8\xda\x8c\xb7\xdd\x86\xb7\xdc\x83\xbb\xdd\x83\ \xba\xd9\x85\xb9\xd4\x88\xb8\xd3\x8a\xb8\xd5\x87\xb7\xd7\x83\xb6\ \xd7\x84\xb6\xd9\x85\xba\xd9\x88\xbd\xdc\x8a\xbe\xde\x8f\xc2\xe3\ \x90\xc1\xe3\x92\xbd\xde\x8c\xaf\xcb\x35\x55\x6c\x57\x78\x8e\x8a\ \xac\xc8\x91\xb4\xd4\x88\xa6\xc3\x57\x6f\x87\x13\x2b\x3d\x5b\x7b\ \x91\x8d\xb3\xd2\x94\xbe\xe0\x92\xbd\xe1\x8e\xba\xe1\x8a\xbb\xdf\ \x8a\xbb\xdd\x8c\xb9\xdf\x8b\xb8\xdf\x89\xb6\xdd\x88\xb5\xd8\x89\ \xb2\xd8\x87\xb2\xd9\x8b\xb3\xdb\xc0\xd5\xe1\xb2\xcd\xde\xb1\xd2\ \xe0\x9f\xc1\xcf\x88\xac\xba\x76\x98\xa3\x93\xb4\xc9\x9f\xbe\xd5\ \x99\xbe\xd5\x93\xbc\xda\x94\xc0\xda\x99\xc2\xd7\x92\xb7\xd1\x84\ \xa5\xbd\x56\x75\x86\x47\x63\x75\x43\x61\x76\x4b\x64\x6e\x3f\x52\ \x5b\x3d\x4b\x56\x3e\x48\x50\x36\x41\x46\x3b\x44\x42\x39\x3c\x3d\ \x36\x3e\x3d\x3d\x4a\x4b\x3e\x46\x48\x3d\x41\x43\x3d\x44\x48\x39\ \x40\x42\x3a\x41\x3f\x3b\x4a\x4b\x45\x4c\x54\x43\x4a\x4d\x3e\x4c\ \x50\x43\x48\x47\x3e\x45\x49\x3c\x49\x4a\x41\x47\x50\x47\x4e\x5b\ \x45\x4c\x51\x46\x4b\x50\x44\x4e\x4f\x3d\x44\x42\x3b\x42\x44\x43\ \x50\x4f\x43\x4c\x4f\x45\x4e\x54\x3c\x43\x47\x3d\x43\x48\x36\x3c\ \x3b\x3c\x44\x46\x3c\x41\x40\x37\x3c\x40\x3f\x47\x47\x3d\x49\x48\ \x3c\x46\x46\x41\x49\x4a\x48\x4d\x53\x46\x55\x5e\x4a\x52\x5a\x4a\ \x4f\x51\x41\x4a\x4d\x3f\x47\x48\x3e\x48\x4c\x40\x47\x4c\x40\x47\ \x4b\x40\x46\x4a\x3f\x4c\x49\x45\x50\x5a\x47\x50\x56\x43\x51\x4e\ \x42\x52\x51\x46\x56\x5e\x4e\x5c\x64\x51\x59\x63\x49\x56\x5a\x4b\ \x58\x59\x4b\x57\x5c\x54\x5f\x68\x4f\x5c\x66\x59\x65\x6e\x5b\x72\ \x7c\x6c\x85\x89\xa1\xbb\xb9\xb2\xcb\xda\xa0\xb7\xd3\x99\xad\xce\ \x90\xa5\xc7\x85\x9f\xc2\x00\x00\x00\x7d\xa5\xbc\x37\x5b\x72\x67\ \x8c\xa9\x8b\xb6\xd6\x8b\xb5\xd7\x77\x9c\xbb\x2a\x48\x67\x24\x3d\ \x59\x5e\x7b\x96\x64\x84\x9f\x2f\x4c\x64\x0e\x26\x3b\x14\x31\x44\ \x4c\x72\x89\x63\x89\xa6\x4e\x72\x90\x47\x69\x86\x63\x82\x9f\x80\ \xa0\xbd\x7d\xa2\xc1\x73\x9d\xb8\x4b\x72\x8b\x38\x58\x72\x62\x79\ \x95\x1e\x39\x52\x62\x89\xa2\x8c\xbb\xdb\x91\xc1\xe5\x85\xbc\xe0\ \x7e\xb7\xda\x7c\xb0\xd1\x7a\xa5\xc3\x6b\x91\xb0\x71\x95\xb3\x85\ \xa8\xc7\x8d\xb0\xd2\x87\xae\xd0\x81\xad\xcc\x7e\xa9\xc4\x7e\xa9\ \xc2\x86\xae\xc8\x8a\xb3\xcd\x88\xb5\xd2\x8a\xb9\xd6\x89\xb7\xd7\ \x8e\xbc\xdc\x90\xbc\xdb\x96\xbd\xdc\x96\xbd\xdc\x96\xbf\xdf\x99\ \xbf\xdc\x99\xba\xd2\x78\x97\xa8\x28\x4b\x5c\x78\x9e\xb4\x97\xbd\ \xd6\x90\xb0\xc6\x52\x67\x7b\x0c\x1e\x30\x5c\x76\x8e\x9e\xbe\xdc\ \x9c\xc2\xe2\x99\xc2\xe3\x93\xc0\xe0\x8f\xbe\xdc\x8c\xbc\xd8\x8e\ \xbd\xdd\x8d\xbb\xdd\x90\xbf\xde\x91\xc0\xde\x91\xbf\xdd\x8f\xbd\ \xdb\x8b\xb7\xd7\x95\xbb\xd7\x8d\xa7\xaa\x9e\xb7\xcb\xc5\xdf\xf1\ \xc2\xdf\xee\xbc\xda\xea\xb1\xd4\xe4\xa3\xc5\xd7\xa0\xc7\xd8\x9a\ \xc3\xd7\x9d\xc5\xde\x99\xc1\xd6\x80\xa8\xbd\x6b\x95\xa9\x6a\x92\ \xb0\x56\x7e\x99\x3c\x56\x6e\x3e\x56\x62\x4d\x63\x77\x42\x52\x5c\ \x3c\x3e\x45\x36\x3a\x3d\x31\x3f\x3e\x38\x3f\x3d\x35\x41\x40\x35\ \x3f\x40\x36\x3f\x3f\x37\x3c\x3b\x31\x3b\x35\x37\x40\x3e\x3c\x42\ \x3f\x37\x44\x44\x39\x41\x3e\x36\x40\x3f\x36\x42\x3f\x3d\x44\x46\ \x44\x4c\x4c\x3f\x4a\x49\x3c\x42\x42\x36\x3d\x40\x3c\x44\x45\x40\ \x47\x46\x42\x47\x4c\x3e\x46\x45\x42\x49\x4c\x46\x4b\x53\x3d\x4a\ \x53\x36\x3f\x43\x34\x3c\x37\x33\x3b\x3b\x38\x41\x45\x3f\x43\x4a\ \x3c\x44\x46\x3b\x41\x48\x3b\x49\x4e\x3e\x48\x49\x44\x4c\x50\x46\ \x4f\x50\x4b\x53\x57\x40\x48\x4a\x3b\x42\x3b\x36\x44\x40\x42\x4a\ \x4a\x40\x49\x4b\x49\x4f\x51\x45\x4f\x52\x41\x4c\x4c\x43\x50\x55\ \x47\x53\x5c\x46\x54\x58\x4e\x55\x5c\x4f\x5d\x64\x53\x5d\x65\x51\ \x5a\x5f\x53\x5e\x61\x51\x5b\x62\x49\x59\x60\x54\x5f\x68\x57\x60\ \x6d\x58\x69\x70\x58\x67\x6b\x6a\x7e\x86\xa2\xbb\xbc\xbe\xd5\xde\ \x98\xb4\xd1\x91\xb0\xcf\x93\xae\xcf\x95\xaa\xcd\x92\xa4\xc9\x8f\ \xa4\xc9\x00\x00\x00\x84\xb3\xd0\x81\xab\xc7\x7e\xa9\xc8\x89\xb8\ \xd8\x8c\xb8\xda\x8a\xb1\xd5\x76\x99\xbd\x43\x62\x82\x20\x41\x5c\ \x3d\x5f\x79\x59\x78\x93\x42\x5d\x77\x2f\x50\x65\x31\x58\x6f\x64\ \x8b\xa6\x80\xa6\xc3\x76\x99\xb7\x4a\x65\x80\x21\x39\x51\x2e\x49\ \x61\x3c\x5a\x74\x42\x61\x7e\x20\x3f\x5a\x19\x32\x4d\x3d\x58\x75\ \x86\xab\xc8\x91\xbc\xdb\x91\xbe\xe0\x85\xba\xde\x7c\xb6\xd9\x7a\ \xad\xce\x53\x79\x93\x13\x30\x48\x1b\x34\x50\x29\x44\x61\x36\x51\ \x70\x47\x62\x7f\x32\x4b\x61\x1d\x33\x49\x26\x3d\x55\x3a\x56\x71\ \x56\x74\x8c\x74\x96\xab\x8f\xb5\xce\x8f\xb8\xd6\x90\xb6\xd6\x8c\ \xae\xca\x7c\x9b\xb3\x87\xa8\xbe\x93\xb7\xcd\x97\xb6\xcc\x99\xb4\ \xc7\x97\xb2\xc4\x85\xa2\xba\x57\x7d\x93\x90\xb7\xcb\x85\xa4\xb5\ \x2a\x40\x4e\x09\x1d\x30\x76\x90\xaa\x9b\xbb\xd9\x95\xbb\xd8\x96\ \xbf\xd8\x96\xbe\xda\x98\xc1\xde\x96\xc1\xdf\x94\xc2\xe1\x97\xc5\ \xe3\x97\xc2\xdf\x96\xc1\xde\x93\xc1\xde\x90\xbe\xdd\x8e\xbb\xd9\ \x8d\xb7\xd9\x8b\xb6\xd7\x95\xb6\xbe\x7d\x97\xa3\xb5\xcb\xe3\xca\ \xe3\xf2\xc7\xe1\xf0\xbd\xdc\xe9\xb7\xd6\xe6\xb3\xd2\xe2\xa6\xc8\ \xdc\x92\xb5\xcb\x8f\xb4\xcf\x8c\xad\xca\x6f\x90\xb0\x55\x72\x8d\ \x33\x48\x4e\x39\x49\x50\x36\x48\x52\x37\x48\x4e\x36\x3f\x44\x39\ \x45\x48\x38\x42\x42\x39\x40\x44\x37\x3e\x40\x30\x3b\x38\x3b\x41\ \x46\x3d\x40\x41\x36\x48\x48\x3d\x48\x47\x39\x43\x45\x3d\x48\x4b\ \x3d\x44\x4a\x38\x44\x47\x3b\x49\x4d\x3a\x43\x48\x3e\x43\x45\x34\ \x3e\x3d\x3d\x41\x43\x40\x48\x4b\x41\x4c\x4e\x3c\x45\x42\x3c\x41\ \x3f\x36\x39\x37\x35\x3a\x38\x2f\x36\x34\x32\x37\x3a\x36\x3a\x39\ \x33\x3c\x3d\x39\x42\x3f\x41\x44\x48\x3f\x45\x44\x3a\x44\x43\x3e\ \x4b\x4e\x4b\x4f\x55\x45\x53\x57\x4d\x50\x58\x40\x43\x47\x3c\x43\ \x3e\x39\x44\x40\x3e\x47\x44\x3f\x48\x49\x42\x4e\x50\x44\x4c\x4b\ \x3f\x4a\x4e\x44\x4d\x50\x4b\x51\x56\x4d\x56\x61\x47\x52\x5a\x49\ \x50\x57\x4e\x56\x5f\x51\x5b\x61\x52\x5c\x64\x4e\x58\x5d\x4f\x53\ \x5b\x4e\x5e\x62\x52\x60\x69\x56\x65\x6b\x61\x74\x7c\x73\x8b\x93\ \xa1\xb7\xb8\xb9\xd1\xda\x93\xb6\xcf\x8a\xaf\xcb\x8c\xaf\xc9\x8b\ \xac\xc9\x8e\xab\xc9\x8f\xa6\xc8\x91\xa2\xc9\x94\xa6\xca\x00\x00\ \x00\x87\xb7\xd8\x8b\xb7\xd9\x8a\xb8\xd8\x8e\xbd\xdd\x8c\xba\xdb\ \x8a\xb6\xd8\x89\xb2\xd6\x81\xac\xcc\x72\x9e\xbb\x6e\x97\xb4\x86\ \xaa\xcb\x90\xb0\xd2\x86\xac\xc8\x76\xa3\xbd\x5c\x89\xa4\x7b\xa7\ \xc4\x7f\xa4\xc3\x3c\x58\x72\x36\x4c\x61\x52\x69\x82\x2e\x49\x66\ \x68\x86\xa5\x76\x97\xb4\x48\x66\x82\x4e\x69\x86\x8b\xac\xca\x91\ \xba\xda\x8f\xbd\xdc\x86\xbb\xdb\x83\xbb\xdd\x7e\xae\xd1\x5c\x80\ \x9c\x11\x2d\x45\x3e\x55\x6f\x4a\x63\x81\x6b\x86\xa3\x6c\x83\x9e\ \x21\x33\x46\x15\x25\x37\x5e\x73\x8b\x7f\x9a\xb5\x48\x61\x76\x18\ \x31\x41\x54\x72\x85\x8a\xab\xc6\x89\xa7\xc4\x40\x5a\x70\x18\x2f\ \x42\x49\x65\x76\x48\x63\x73\x3b\x50\x5f\x29\x3c\x4c\x34\x4a\x5f\ \x52\x6f\x87\x7a\x9d\xb4\x89\xac\xbe\x5c\x73\x81\x08\x17\x21\x1a\ \x2c\x3d\x89\xa3\xbd\x93\xb1\xcc\x6e\x8c\xa2\x68\x87\x99\x8c\xac\ \xc3\x97\xb9\xd5\x93\xb7\xd6\x8f\xb8\xd5\x91\xbc\xd8\x95\xbc\xd8\ \x96\xba\xd6\x95\xba\xd5\x8f\xbb\xd6\x94\xbe\xdc\x8f\xb5\xd7\x82\ \xa9\xca\x80\xaa\xc9\x8e\xb4\xc9\x82\x9c\xa1\x94\xaf\xc9\xc3\xda\ \xef\xc8\xe2\xf0\xc3\xe0\xee\xbc\xdd\xed\xba\xda\xeb\xa5\xcd\xde\ \x9a\xc3\xd7\x8e\xb6\xcd\x52\x71\x81\x46\x5c\x71\x3a\x48\x4c\x3c\ \x3e\x43\x3a\x3d\x3f\x33\x3f\x42\x3a\x49\x4f\x39\x44\x4a\x36\x3e\ \x3b\x35\x3c\x3c\x33\x3e\x41\x36\x43\x46\x38\x3f\x43\x3d\x43\x44\ \x40\x46\x4c\x41\x48\x4c\x42\x48\x4c\x46\x4f\x56\x41\x42\x46\x3a\ \x3e\x41\x37\x3c\x3d\x36\x3d\x40\x35\x3c\x3c\x35\x3e\x3d\x3a\x42\ \x44\x3b\x44\x44\x36\x3e\x3b\x39\x39\x3a\x37\x3d\x3c\x39\x3e\x41\ \x39\x3e\x3d\x39\x42\x3e\x3b\x46\x4b\x41\x46\x4d\x41\x4c\x4d\x41\ \x49\x4e\x40\x4b\x4d\x44\x4e\x52\x4c\x58\x5e\x4f\x58\x5b\x4c\x4e\ \x55\x41\x46\x4b\x37\x41\x3c\x36\x42\x3e\x3f\x44\x41\x3f\x48\x48\ \x40\x47\x49\x43\x4e\x54\x46\x50\x56\x45\x4e\x51\x46\x50\x54\x43\ \x4a\x50\x47\x50\x54\x4b\x54\x5c\x47\x4f\x53\x48\x55\x57\x4e\x58\ \x5d\x54\x53\x5d\x50\x57\x5f\x4f\x5c\x60\x54\x60\x5e\x5b\x68\x77\ \x5d\x73\x7b\x72\x8c\x91\x9d\xbb\xbd\xb3\xcc\xd7\x90\xb1\xce\x8b\ \xaa\xcb\x8e\xae\xcb\x8c\xaf\xca\x8a\xab\xc7\x89\xa8\xc5\x8e\xa8\ \xc4\x90\xa2\xc4\x8e\xa0\xc5\x92\xa7\xcd\x00\x00\x00\x89\xb7\xd9\ \x8d\xb7\xdc\x8f\xba\xdd\x8f\xbc\xdd\x8b\xba\xda\x8a\xb9\xd9\x88\ \xb7\xd4\x86\xb5\xd4\x87\xb6\xd6\x8e\xb7\xdb\x92\xb9\xde\x90\xb5\ \xd8\x85\xb0\xd0\x81\xb0\xce\x81\xb0\xcd\x8a\xb2\xd3\x87\xac\xcd\ \x4f\x6c\x89\x34\x4c\x66\x89\xa4\xc0\x6b\x88\xaa\x49\x6b\x90\x79\ \xa1\xc1\x83\xa8\xc7\x65\x88\xa4\x62\x85\xa2\x8a\xb6\xd3\x89\xba\ \xd8\x87\xbb\xdb\x85\xb8\xdc\x7f\xae\xd4\x7e\xa5\xc9\x6b\x8a\xaa\ \x32\x4f\x6c\x2f\x4f\x6c\x54\x76\x96\x6f\x8d\xac\x49\x62\x7b\x1d\ \x34\x4a\x2d\x4a\x62\x65\x87\xa2\x26\x46\x5b\x09\x26\x37\x36\x55\ \x69\x8f\xae\xc9\x80\x9c\xb6\x23\x37\x4d\x24\x38\x48\x78\x8c\x9d\ \x5c\x71\x82\x11\x24\x36\x18\x2d\x40\x6f\x89\x9f\x83\xa1\xbd\x76\ \x97\xb2\x52\x6d\x81\x1c\x2c\x39\x01\x0c\x15\x1f\x31\x40\x69\x7f\ \x9a\x90\xa7\xc3\x53\x69\x7d\x14\x2b\x39\x2c\x47\x58\x66\x83\x9b\ \x59\x76\x90\x53\x74\x8d\x79\x9e\xb7\x84\xa6\xbf\x76\x91\xa9\x59\ \x75\x89\x77\x9b\xb1\x86\xb1\xca\x80\xa5\xc2\x61\x7e\x99\x35\x51\ \x67\x64\x86\x9d\x85\xac\xc5\xa1\xbc\xc2\x83\x9f\xb2\xae\xc7\xe1\ \xc4\xde\xf0\xbf\xdf\xf0\xc2\xdf\xed\xb9\xda\xea\xb5\xd5\xe7\x9c\ \xc2\xd4\x4c\x65\x6f\x37\x47\x52\x3a\x4a\x4e\x3a\x43\x43\x3a\x3f\ \x3b\x36\x3b\x3c\x3a\x45\x44\x3c\x43\x42\x37\x3e\x3d\x39\x40\x46\ \x39\x45\x4a\x38\x45\x4c\x3f\x43\x49\x3b\x43\x47\x3c\x46\x49\x3c\ \x45\x47\x3b\x43\x45\x39\x42\x43\x37\x3c\x38\x38\x41\x40\x3b\x48\ \x4e\x3a\x48\x4e\x3c\x45\x46\x3e\x49\x4e\x3e\x48\x4b\x38\x3e\x3d\ \x31\x3c\x3a\x38\x43\x44\x3b\x44\x44\x3f\x47\x4a\x3a\x46\x4a\x3d\ \x48\x48\x3f\x4b\x4e\x3f\x4a\x4c\x41\x49\x4f\x43\x4e\x50\x44\x4e\ \x53\x49\x53\x59\x46\x4c\x52\x44\x42\x47\x3d\x46\x45\x3d\x48\x4a\ \x41\x49\x49\x55\x5a\x62\x48\x52\x57\x45\x4b\x4d\x48\x51\x57\x4b\ \x4f\x56\x43\x4f\x4f\x45\x4e\x50\x46\x53\x58\x49\x57\x5b\x58\x62\ \x6b\x51\x58\x61\x4c\x53\x59\x50\x5a\x64\x4d\x55\x61\x50\x59\x5e\ \x56\x64\x67\x58\x67\x70\x60\x71\x79\x6d\x87\x89\x8f\xab\xad\xbf\ \xd5\xd8\x8a\xa8\xc3\x7f\xa4\xc4\x87\xaa\xcb\x8e\xab\xcd\x92\xac\ \xcd\x8d\xab\xcb\x86\xa7\xc6\x86\xa5\xc6\x8c\xa4\xc5\x8d\xa1\xc5\ \x8c\xa2\xc6\x91\xac\xd0\x00\x00\x00\x82\xb0\xd2\x89\xb2\xd8\x91\ \xb7\xda\x8f\xb8\xd8\x89\xb7\xd6\x85\xb4\xd4\x82\xb0\xcd\x85\xb3\ \xd2\x87\xb4\xd8\x8b\xb7\xdc\x89\xb3\xda\x89\xb2\xd8\x81\xaf\xd2\ \x7d\xad\xcc\x86\xb0\xd1\x92\xb5\xda\x8d\xad\xd6\x7b\x9d\xc0\x49\ \x68\x8a\x3d\x5e\x80\x5e\x83\xa8\x48\x6f\x94\x7d\xa8\xc7\x82\xac\ \xc9\x7c\xa4\xbe\x31\x5a\x73\x79\xaa\xc2\x7f\xb5\xd2\x83\xb9\xda\ \x81\xb6\xda\x7e\xb2\xd7\x83\xae\xd7\x80\xa5\xcb\x7c\xa1\xc3\x7a\ \xa1\xc1\x7e\xa8\xcb\x80\xaa\xcd\x7f\xa6\xc6\x75\x9b\xb7\x69\x91\ \xac\x7a\xa6\xc1\x6d\x9a\xb6\x6c\x96\xb0\x86\xac\xc8\x90\xb2\xce\ \x94\xb1\xcb\x78\x90\xa7\x2d\x44\x58\x23\x3b\x4d\x2c\x47\x5a\x44\ \x62\x79\x4a\x69\x83\x40\x60\x79\x74\x97\xb3\x86\xaa\xc4\x6c\x87\ \x9c\x14\x24\x31\x05\x13\x1d\x28\x40\x50\x60\x7b\x92\x6a\x85\x9e\ \x46\x61\x74\x1d\x36\x45\x29\x44\x56\x37\x55\x6b\x2b\x48\x60\x16\ \x36\x4c\x27\x4a\x5f\x51\x6f\x84\x3d\x54\x66\x16\x2d\x3d\x22\x40\ \x53\x43\x6a\x7f\x6e\x91\xa9\x49\x61\x76\x15\x28\x39\x2c\x47\x58\ \x76\x97\xad\x81\xa0\xb9\x70\x86\x96\x7e\x99\xa1\x94\xaf\xca\xbf\ \xd9\xee\xc4\xde\xf0\xc3\xdf\xef\xbd\xdb\xec\xb3\xd7\xe7\x7e\x9d\ \xab\x47\x5d\x6c\x3f\x56\x5c\x3a\x47\x48\x38\x46\x48\x3e\x44\x44\ \x35\x3a\x3a\x37\x3d\x3c\x38\x42\x44\x3a\x42\x47\x3d\x42\x46\x37\ \x3e\x3f\x3b\x42\x40\x3b\x42\x3d\x38\x3e\x3e\x39\x40\x41\x3d\x44\ \x4b\x38\x3f\x41\x3e\x41\x42\x3e\x42\x45\x3d\x45\x47\x38\x44\x46\ \x3e\x48\x4c\x3d\x46\x4f\x3c\x44\x42\x3d\x49\x4b\x3d\x4c\x53\x43\ \x51\x5a\x41\x4e\x54\x40\x4c\x55\x41\x50\x52\x40\x4f\x52\x41\x4a\ \x4c\x42\x4f\x50\x4a\x53\x56\x49\x52\x58\x42\x4c\x4e\x3a\x41\x4a\ \x3a\x3a\x3e\x3b\x3f\x40\x43\x4b\x51\x4e\x59\x60\x4c\x52\x56\x4e\ \x54\x5a\x47\x53\x57\x4c\x4f\x57\x44\x4b\x4c\x40\x4a\x45\x47\x4f\ \x53\x4a\x51\x5a\x4a\x57\x5e\x48\x53\x5c\x49\x51\x58\x4f\x56\x5f\ \x4e\x58\x62\x52\x5c\x65\x58\x63\x70\x5e\x6a\x74\x66\x72\x79\x76\ \x89\x8f\xa7\xc2\xc2\x94\xad\xbd\x76\x93\xae\x76\x96\xb2\x7c\x9f\ \xbb\x82\xa8\xc3\x88\xab\xc8\x90\xab\xca\x8e\xa8\xc9\x88\xa6\xc7\ \x81\xa2\xc4\x87\xa5\xc6\x8a\xa2\xc5\x89\xa0\xc4\x8a\xa4\xc7\x8d\ \xac\xcd\x00\x00\x00\x85\xad\xd1\x8a\xb0\xd4\x92\xb7\xd6\x94\xba\ \xd7\x8d\xb6\xd5\x83\xaf\xd0\x86\xaf\xd0\x85\xb2\xd1\x81\xb1\xd2\ \x7f\xaf\xd4\x7f\xad\xd3\x80\xad\xd3\x7c\xac\xd0\x7d\xae\xcf\x87\ \xb0\xd1\x8f\xb1\xd6\x8d\xb0\xda\x86\xae\xd5\x7e\xa9\xce\x6d\x9a\ \xbe\x64\x91\xb5\x73\xa0\xc0\x81\xa8\xc6\x7e\xa1\xba\x5d\x7e\x95\ \x2e\x55\x6b\x5b\x8a\xa2\x7d\xb0\xce\x80\xb6\xd7\x7d\xb7\xd8\x7a\ \xb2\xd5\x7e\xad\xd6\x80\xa9\xd2\x81\xaa\xcf\x80\xae\xd2\x7e\xaf\ \xd3\x7a\xac\xcf\x7d\xac\xcd\x7c\xab\xcb\x7a\xaa\xca\x7f\xb1\xd0\ \x7d\xb2\xd2\x82\xb5\xd5\x88\xb6\xd6\x92\xb8\xd5\x91\xb2\xcb\x8c\ \xab\xc6\x88\xa8\xc2\x77\x99\xb1\x7e\xa2\xba\x8c\xb1\xcc\x8a\xae\ \xcb\x80\xa4\xc2\x71\x93\xb4\x85\xa9\xc7\x74\x90\xa8\x1c\x31\x3f\ \x24\x38\x45\x6c\x88\x98\x42\x5f\x75\x5c\x79\x92\x76\x94\xac\x74\ \x91\xa8\x87\xa5\xbe\x94\xb5\xd0\x95\xb5\xd1\x8b\xac\xc9\x7c\xa2\ \xbc\x5d\x80\x98\x38\x56\x6b\x17\x34\x47\x35\x57\x6d\x6e\x92\xab\ \x4a\x6b\x85\x2d\x47\x60\x15\x2d\x44\x35\x53\x69\x54\x76\x8d\x50\ \x6e\x86\x27\x3e\x55\x24\x3e\x53\x84\xa1\xa2\x5b\x70\x83\xa8\xc1\ \xe1\xbe\xdd\xef\xc1\xde\xef\xbe\xdf\xef\xba\xdb\xe9\x73\x97\xa2\ \x4e\x6c\x7b\x3f\x4c\x54\x3c\x44\x49\x3a\x46\x46\x34\x42\x45\x37\ \x3f\x3f\x3d\x3c\x40\x3a\x3e\x41\x37\x3b\x3e\x34\x3b\x3f\x3a\x47\ \x4b\x3b\x45\x40\x3a\x45\x42\x3f\x42\x48\x3a\x41\x44\x3c\x43\x47\ \x3f\x44\x44\x38\x3d\x3c\x36\x3b\x3b\x3c\x43\x44\x41\x44\x4c\x3b\ \x44\x46\x40\x4e\x52\x3e\x4c\x55\x40\x4c\x57\x40\x4c\x53\x3d\x4b\ \x4f\x42\x50\x56\x43\x4f\x52\x40\x4e\x4f\x3f\x47\x4c\x48\x4e\x4f\ \x4d\x4f\x55\x43\x45\x48\x35\x3c\x38\x33\x3c\x3c\x3d\x43\x44\x41\ \x48\x4a\x43\x4a\x4c\x43\x43\x4a\x46\x4b\x4e\x4a\x54\x5a\x4a\x54\ \x5b\x4a\x56\x5d\x50\x57\x5d\x51\x5a\x64\x50\x59\x60\x4c\x5a\x62\ \x4d\x59\x60\x4b\x57\x60\x4d\x5b\x64\x50\x59\x63\x56\x60\x6a\x61\ \x69\x6f\x68\x75\x7f\x73\x87\x8b\xa8\xbf\xbd\xb0\xca\xd6\x95\xb3\ \xd1\x77\x9f\xc3\x7b\xa0\xbf\x84\xa4\xc0\x87\xa6\xc0\x85\xa6\xc1\ \x89\xa9\xc3\x8c\xac\xc8\x88\xa8\xc7\x85\xa4\xc6\x83\xa1\xc4\x88\ \xa3\xc5\x8a\xa3\xc3\x8a\xa3\xc3\x8f\xa8\xca\x92\xac\xce\x00\x00\ \x00\x8f\xb5\xd6\x90\xb7\xd7\x92\xba\xd7\x92\xba\xd7\x8d\xb8\xd7\ \x87\xb2\xd6\x87\xb1\xd5\x87\xb5\xd5\x82\xb5\xd3\x7c\xb1\xd2\x7c\ \xb0\xd3\x7d\xaf\xd2\x80\xae\xd1\x82\xb0\xd1\x84\xaf\xd0\x87\xb2\ \xd5\x86\xb2\xd9\x84\xb3\xdb\x7d\xae\xd2\x79\xac\xcf\x7e\xae\xcf\ \x83\xb1\xcf\x7a\x9f\xbb\x44\x5d\x76\x2c\x42\x57\x24\x41\x55\x5a\ \x7f\x98\x81\xab\xcc\x83\xb2\xd4\x7e\xb5\xd5\x77\xad\xcf\x79\xa8\ \xd0\x7e\xaa\xd3\x83\xb1\xd6\x82\xb5\xd9\x80\xb5\xd7\x7d\xb2\xd2\ \x82\xb2\xd2\x83\xb1\xd3\x82\xaf\xd1\x83\xb2\xd5\x85\xb6\xd8\x85\ \xb6\xd8\x86\xb4\xd6\x8a\xb4\xcf\x8d\xb1\xcb\x88\xab\xc8\x81\xa9\ \xc8\x81\xab\xc8\x8f\xb5\xd0\x91\xb7\xd3\x8c\xb2\xcf\x87\xaa\xca\ \x87\xa7\xca\x88\xab\xcc\x88\xa5\xc2\x2d\x42\x56\x21\x36\x44\x4f\ \x65\x77\x32\x4a\x62\x32\x4e\x68\x31\x4f\x6b\x5a\x77\x94\x8d\xaa\ \xc9\x99\xba\xd9\x97\xb9\xdb\x95\xb8\xdd\x8f\xb4\xd8\x86\xae\xce\ \x83\xaa\xc7\x7b\xa5\xc1\x6e\x9b\xba\x7f\xa7\xc8\x8b\xb1\xd0\x89\ \xac\xca\x7b\xa1\xbf\x80\xaa\xc8\x82\xac\xc8\x77\x9d\xb9\x4e\x6e\ \x87\x35\x57\x6d\x53\x80\x94\x7b\x93\x91\x4a\x62\x66\x7c\x8e\xae\ \xb7\xd0\xec\xc0\xde\xf0\xbe\xde\xef\xb3\xd5\xe5\x67\x8d\x98\x49\ \x61\x6c\x43\x52\x5b\x3c\x4f\x5a\x36\x45\x4c\x36\x41\x47\x34\x41\ \x3e\x3d\x3e\x3f\x38\x3c\x3f\x3e\x40\x46\x3d\x44\x43\x3b\x3f\x3d\ \x3f\x42\x42\x38\x3b\x3b\x36\x3d\x3b\x3b\x3f\x41\x40\x41\x41\x3a\ \x41\x41\x41\x47\x4d\x45\x4e\x51\x3d\x44\x46\x3c\x46\x44\x40\x4b\ \x4e\x3e\x4a\x4f\x3f\x4a\x4f\x42\x4b\x4d\x3d\x4a\x48\x3f\x4e\x50\ \x43\x50\x52\x48\x4d\x56\x44\x4e\x53\x40\x46\x46\x3b\x40\x40\x3e\ \x45\x45\x3b\x44\x45\x40\x4a\x4f\x41\x4e\x4e\x46\x54\x54\x46\x50\ \x54\x42\x49\x4c\x48\x4f\x55\x48\x50\x57\x49\x50\x58\x45\x52\x51\ \x48\x50\x52\x4e\x56\x5c\x4f\x5d\x66\x59\x6d\x78\x5a\x67\x74\x50\ \x5b\x61\x51\x60\x68\x5c\x67\x75\x67\x76\x7e\x7a\x8e\x8b\xac\xc3\ \xc0\xac\xc7\xd4\x92\xb4\xce\x8a\xaf\xcb\x8c\xb1\xcf\x89\xb2\xcd\ \x8b\xb0\xca\x8e\xac\xc7\x8c\xa8\xc4\x86\xa5\xc3\x86\xa8\xc5\x87\ \xac\xc8\x84\xa8\xc5\x84\xa4\xc2\x85\xa1\xc0\x86\xa2\xbf\x87\xa4\ \xbe\x88\xa4\xc0\x92\xab\xcc\x9b\xaf\xd2\x00\x00\x00\x96\xbe\xde\ \x8f\xbc\xd9\x8d\xbb\xd8\x8e\xbc\xd9\x8e\xbc\xdc\x8a\xb7\xda\x8a\ \xb6\xdc\x8b\xb8\xd9\x88\xb8\xd7\x81\xb1\xd5\x80\xb3\xd5\x7f\xb6\ \xd4\x84\xb5\xd3\x88\xb7\xd7\x88\xb7\xd7\x85\xb6\xd7\x86\xb7\xdc\ \x83\xb6\xdb\x7f\xb4\xd5\x7e\xb2\xd1\x84\xb4\xd4\x84\xb4\xd3\x70\ \x98\xb5\x25\x40\x5b\x26\x3b\x56\x23\x41\x56\x6e\x94\xac\x80\xa9\ \xc9\x80\xaa\xcd\x70\xa0\xc2\x73\xa5\xc8\x76\xa3\xc8\x7e\xab\xd2\ \x81\xb4\xd9\x7d\xb6\xd6\x7d\xb6\xd6\x7f\xb6\xd5\x83\xb4\xd4\x86\ \xb2\xd5\x89\xb0\xd6\x8a\xb3\xd8\x86\xb2\xd7\x83\xb0\xd4\x81\xb0\ \xd0\x85\xb2\xcd\x8a\xb3\xcc\x87\xaf\xcd\x80\xac\xcd\x80\xad\xcf\ \x8d\xb5\xd5\x8d\xb4\xd4\x8a\xb1\xd1\x81\xa9\xc9\x80\xa7\xc7\x86\ \xaa\xce\x82\xa2\xc3\x5c\x75\x8e\x0a\x1d\x2f\x14\x25\x38\x46\x5b\ \x75\x68\x84\xa2\x45\x64\x84\x62\x80\xa1\x55\x6f\x91\x78\x96\xb4\ \x8f\xb2\xd2\x92\xb7\xdc\x8e\xb5\xdc\x8d\xb6\xd8\x8a\xb7\xd6\x87\ \xb6\xd7\x88\xb7\xdb\x8a\xb7\xdb\x8c\xb5\xd7\x87\xb4\xd3\x83\xb1\ \xd3\x82\xb0\xd2\x84\xb3\xd2\x81\xb0\xce\x86\xb1\xce\x86\xb3\xcd\ \x7f\xb2\xcb\x8c\xbc\xd4\x9c\xc5\xd6\x7b\x9c\x99\x55\x6b\x75\xa2\ \xb7\xd2\xbc\xdc\xec\xbe\xde\xee\xbc\xda\xeb\x97\xbc\xc4\x71\x99\ \x9f\x69\x89\x97\x33\x48\x4f\x30\x3d\x3b\x37\x3d\x43\x42\x44\x44\ \x39\x3c\x3b\x3c\x42\x42\x3c\x41\x41\x3b\x43\x3f\x3b\x3f\x41\x3d\ \x42\x43\x37\x42\x42\x3f\x44\x46\x3d\x41\x43\x34\x3f\x3f\x3e\x43\ \x49\x3d\x44\x46\x3c\x43\x48\x3f\x47\x4a\x48\x48\x4d\x3f\x4a\x4c\ \x3e\x49\x4c\x43\x4d\x4f\x46\x4e\x4e\x3c\x4c\x4a\x43\x4f\x4f\x44\ \x4c\x4c\x38\x3f\x40\x3a\x43\x3f\x3e\x4c\x50\x44\x4d\x54\x44\x4c\ \x51\x41\x4d\x52\x43\x4e\x4f\x4a\x50\x5a\x45\x4e\x55\x49\x4d\x52\ \x47\x4d\x57\x45\x4e\x51\x46\x4f\x51\x48\x52\x56\x4b\x50\x57\x46\ \x53\x56\x46\x57\x62\x4a\x61\x6e\x50\x60\x6c\x57\x61\x68\x5e\x72\ \x79\x7a\x8f\x96\xaa\xc1\xbf\xa7\xc0\xc7\x7e\x9f\xb4\x79\x9f\xb6\ \x83\xa9\xbc\x88\xac\xbf\x88\xac\xc3\x88\xae\xc6\x8e\xb0\xc9\x8f\ \xad\xc6\x8c\xaa\xc6\x82\xa7\xc4\x7f\xa8\xc6\x84\xab\xc5\x83\xa5\ \xbe\x7e\x9b\xb3\x68\x81\x9c\x78\x95\xaf\x80\x9f\xba\x89\xa4\xc0\ \x95\xae\xcd\x9c\xb1\xd3\x00\x00\x00\x91\xbd\xdd\x8f\xbe\xdc\x8e\ \xbe\xda\x91\xc0\xdb\x91\xbf\xde\x8d\xb9\xde\x90\xbb\xe2\x92\xbd\ \xe1\x8b\xb9\xdb\x86\xb3\xd8\x85\xb6\xd7\x86\xb9\xd4\x8a\xbc\xd6\ \x88\xba\xd8\x87\xba\xd8\x8a\xbc\xdc\x8a\xbc\xde\x86\xbb\xdc\x83\ \xba\xd8\x83\xb7\xd5\x85\xb8\xd6\x87\xb8\xd8\x85\xb2\xd2\x69\x8f\ \xaf\x4c\x6f\x8e\x61\x89\xa6\x79\xa7\xc2\x7c\xa9\xc9\x7e\xaa\xcc\ \x5f\x8c\xae\x46\x72\x93\x75\x9e\xbf\x7e\xaa\xcc\x7f\xb1\xd3\x7e\ \xb6\xd6\x81\xb8\xd8\x85\xba\xdb\x87\xb7\xd8\x8b\xb6\xd9\x90\xb7\ \xdb\x90\xb9\xdd\x8f\xb9\xdb\x8c\xb6\xd8\x8b\xb7\xd7\x89\xb5\xd1\ \x8b\xb7\xd2\x89\xb5\xd2\x85\xb3\xd4\x87\xb6\xd6\x8b\xb9\xd8\x8d\ \xb7\xd6\x8a\xb3\xd3\x83\xac\xcc\x83\xad\xcb\x85\xaf\xd0\x7d\xa5\ \xc7\x77\x98\xb5\x2b\x44\x59\x09\x1d\x30\x5c\x76\x8e\x66\x85\xa2\ \x4a\x6c\x8c\x78\x9a\xb8\x7c\x99\xb6\x3c\x57\x72\x68\x86\x9f\x8f\ \xb3\xd2\x8d\xb5\xd8\x89\xb5\xd5\x89\xb9\xd7\x8a\xbd\xdc\x86\xb8\ \xda\x87\xb5\xd7\x8d\xb6\xd6\x8f\xb6\xd6\x8b\xb7\xd7\x86\xb2\xd4\ \x84\xb0\xd1\x84\xb1\xd2\x84\xb4\xd3\x83\xb2\xd1\x80\xb2\xd1\x82\ \xb4\xd3\x81\xb3\xd3\x79\xb0\xcd\x95\xbf\xce\xb8\xcf\xd2\xc7\xdc\ \xe9\xc3\xdf\xed\xc4\xde\xef\xbd\xdd\xee\xb8\xda\xea\xa6\xc6\xd6\ \x58\x75\x7a\x3f\x51\x4f\x3b\x48\x48\x3f\x45\x43\x3d\x44\x41\x3c\ \x41\x3f\x3d\x41\x41\x3b\x44\x3f\x40\x44\x48\x3f\x47\x44\x37\x44\ \x45\x3f\x47\x46\x3b\x41\x40\x3b\x44\x4a\x3e\x47\x47\x3a\x42\x3f\ \x3c\x41\x42\x3c\x41\x44\x3d\x45\x46\x42\x47\x43\x40\x45\x46\x44\ \x4b\x4e\x48\x4d\x52\x42\x49\x4e\x3e\x41\x3f\x3b\x3f\x3c\x3b\x43\ \x45\x41\x48\x4c\x44\x4a\x4f\x3e\x4a\x48\x46\x4f\x53\x44\x4e\x54\ \x48\x51\x57\x47\x52\x56\x46\x51\x58\x42\x4c\x4c\x42\x4c\x4e\x45\ \x4c\x52\x48\x55\x5b\x49\x51\x57\x4b\x4f\x55\x4b\x55\x59\x4e\x59\ \x5c\x5a\x5f\x6b\x63\x6f\x7c\x73\x85\x8b\xa5\xbd\xb9\x8f\xa4\xad\ \x69\x80\x8f\x2f\x48\x57\x37\x51\x5f\x50\x6d\x79\x50\x6d\x76\x5f\ \x7b\x87\x70\x8d\x9c\x7c\x9b\xac\x79\x94\xa6\x6b\x86\x98\x72\x91\ \xa5\x86\xae\xc4\x86\xaf\xc7\x88\xab\xc4\x83\x9d\xb4\x5d\x71\x82\ \x2c\x41\x52\x52\x70\x85\x74\x97\xaf\x88\xa7\xc1\x93\xaf\xcb\x99\ \xb2\xd3\x00\x00\x00\x90\xbc\xde\x90\xbe\xdf\x92\xc0\xdf\x8f\xbf\ \xda\x8d\xbd\xd8\x8c\xb9\xda\x8f\xba\xdf\x91\xbc\xde\x8d\xb8\xda\ \x82\xaf\xd2\x7a\xac\xc8\x80\xb6\xce\x86\xbb\xd5\x86\xbc\xd9\x88\ \xbf\xdc\x88\xbb\xdb\x8e\xbd\xde\x8a\xbd\xdc\x85\xbd\xd9\x85\xbd\ \xd8\x88\xbd\xdb\x86\xba\xd8\x85\xb6\xd5\x80\xaf\xcf\x7d\xac\xcd\ \x7b\xae\xcf\x76\xab\xcd\x79\xae\xcf\x7e\xaf\xd1\x7f\xad\xce\x55\ \x7f\x9f\x30\x56\x73\x70\x97\xb3\x83\xb1\xcd\x86\xb6\xd5\x88\xb9\ \xda\x88\xbc\xdd\x88\xbd\xdc\x8a\xbb\xdb\x90\xbc\xdf\x8e\xbc\xdf\ \x8e\xbd\xdd\x90\xbc\xdc\x92\xb9\xd9\x94\xbd\xd8\x92\xbe\xd7\x90\ \xbc\xd9\x90\xba\xda\x8f\xbc\xdc\x8c\xbb\xda\x8d\xb9\xd9\x90\xb8\ \xd9\x8d\xb5\xd4\x8a\xb3\xd0\x87\xb3\xd4\x7e\xad\xce\x7b\xa7\xc7\ \x6a\x8c\xa7\x1a\x38\x4f\x34\x52\x6c\x42\x65\x82\x56\x7b\x9c\x85\ \xaa\xca\x85\xa5\xc2\x5f\x7a\x90\x20\x3a\x4c\x85\xa6\xbd\x8d\xb3\ \xd0\x8a\xb6\xd4\x8b\xba\xda\x82\xb7\xd6\x7e\xb3\xd2\x80\xb2\xd0\ \x87\xb4\xd2\x8d\xb5\xd4\x8d\xb5\xd6\x89\xb2\xd4\x83\xac\xcc\x87\ \xae\xd0\x85\xb0\xd1\x81\xaf\xd0\x7f\xaf\xcf\x82\xb0\xd2\x80\xae\ \xcf\x7a\xb0\xcd\x79\xb1\xcf\x80\xaf\xd1\x88\xad\xd3\xa1\xbe\xda\ \xc2\xda\xe8\xc6\xe0\xee\xbe\xdc\xee\xb8\xdb\xeb\xb0\xd0\xe2\x68\ \x86\x92\x58\x77\x84\x42\x4d\x52\x37\x41\x3f\x37\x3b\x3b\x3c\x3e\ \x42\x3b\x42\x42\x3d\x40\x41\x3f\x42\x42\x41\x47\x46\x3c\x45\x44\ \x3f\x47\x47\x46\x47\x4c\x43\x44\x46\x3d\x43\x40\x3f\x44\x43\x44\ \x49\x48\x45\x4c\x4b\x42\x4a\x48\x41\x46\x4b\x42\x43\x48\x3d\x43\ \x42\x3e\x3f\x41\x3b\x44\x45\x41\x4e\x51\x47\x50\x5a\x45\x4a\x4c\ \x43\x4b\x4f\x45\x4d\x53\x42\x4c\x53\x43\x4f\x52\x47\x52\x55\x46\ \x54\x58\x46\x55\x5a\x47\x51\x55\x4a\x52\x55\x4e\x59\x61\x4f\x56\ \x5f\x48\x56\x5b\x52\x60\x65\x5e\x69\x74\x61\x6d\x71\x72\x87\x89\ \xa8\xc0\xbd\x93\xa2\xa7\x2e\x38\x45\x0c\x1c\x2c\x17\x29\x38\x08\ \x18\x25\x04\x12\x1d\x05\x13\x1c\x03\x13\x1a\x08\x1b\x22\x0f\x23\ \x2d\x16\x2a\x36\x24\x36\x40\x18\x2b\x35\x2a\x46\x52\x6b\x90\x9d\ \x86\xad\xbe\x85\xa6\xbb\x7a\x92\xa5\x3c\x4d\x59\x10\x25\x2e\x36\ \x55\x65\x6b\x91\xa7\x8b\xad\xc9\x93\xb0\xcf\x99\xb5\xd4\x00\x00\ \x00\x8b\xb9\xdb\x8c\xb9\xdc\x91\xbd\xdf\x8e\xbc\xd8\x89\xb6\xd3\ \x89\xb6\xd5\x8f\xbd\xdd\x8f\xbd\xdb\x8b\xb6\xd5\x7b\xa4\xc2\x49\ \x75\x8b\x7b\xac\xc0\x82\xba\xd1\x86\xbf\xdb\x89\xc0\xde\x87\xbf\ \xdd\x8b\xbc\xdb\x8a\xbb\xd9\x88\xbd\xda\x87\xbc\xda\x8e\xbf\xde\ \x8d\xbd\xdc\x88\xb9\xd7\x8a\xb9\xd9\x8c\xb9\xdc\x83\xb4\xd7\x7c\ \xb4\xd5\x7b\xb3\xd4\x7c\xb2\xd3\x83\xb3\xd4\x82\xad\xcd\x4c\x72\ \x90\x2b\x51\x6a\x79\xa3\xbb\x90\xbb\xd8\x8f\xbd\xdc\x8a\xbe\xdd\ \x87\xc1\xde\x87\xbd\xdb\x8b\xbe\xde\x8b\xbe\xe0\x90\xc0\xe1\x96\ \xc3\xe3\x96\xbf\xde\x99\xbf\xdd\x9a\xc0\xdd\x95\xbd\xda\x93\xb8\ \xd9\x93\xbb\xdc\x92\xbe\xdd\x94\xbf\xde\x99\xbf\xe0\x97\xbd\xdc\ \x98\xbe\xda\x92\xbd\xdb\x8a\xb8\xd7\x82\xaf\xcf\x7c\xa5\xc4\x5e\ \x83\x9f\x17\x3b\x55\x60\x84\xa1\x85\xad\xcd\x89\xb5\xd4\x89\xb2\ \xce\x7f\xa1\xb7\x23\x3d\x4e\x4e\x6c\x7c\x95\xb8\xd0\x91\xb9\xd9\ \x8c\xba\xdb\x85\xb8\xd8\x80\xb7\xd5\x7f\xb5\xd2\x84\xb4\xd3\x84\ \xb3\xd2\x83\xb1\xd4\x82\xae\xd3\x84\xac\xd0\x8b\xae\xd1\x8c\xb1\ \xd2\x87\xb1\xd0\x81\xb1\xd0\x80\xaf\xcf\x80\xad\xcd\x7b\xae\xcc\ \x7c\xaf\xce\x80\xab\xcc\x85\xa9\xcc\x84\xa8\xc8\x88\xb1\xcf\x9d\ \xc1\xdb\xc9\xe0\xed\xbd\xdc\xec\xb3\xd4\xe8\x9d\xc5\xd8\xa3\xc8\ \xdb\x72\x99\xa2\x50\x6b\x72\x37\x49\x47\x38\x3f\x44\x36\x43\x3f\ \x3c\x49\x46\x3e\x45\x47\x40\x42\x47\x39\x41\x42\x40\x41\x42\x43\ \x46\x47\x3c\x3f\x42\x3a\x41\x41\x3d\x41\x43\x3d\x42\x41\x3e\x40\ \x42\x38\x41\x3c\x36\x3e\x3f\x3c\x45\x41\x3f\x49\x49\x43\x4d\x4c\ \x43\x4b\x4c\x42\x48\x4d\x47\x53\x5a\x46\x4f\x4f\x45\x54\x57\x44\ \x4f\x53\x43\x4d\x56\x46\x50\x57\x47\x51\x52\x48\x58\x5c\x49\x56\ \x5d\x50\x58\x5d\x4f\x59\x61\x57\x5c\x66\x52\x5c\x62\x5b\x62\x69\ \x64\x6e\x75\x6b\x7c\x81\x90\xa3\xa2\xb5\xce\xd5\x6e\x87\xa0\x2d\ \x3d\x57\x0a\x17\x2b\x17\x28\x3b\x39\x50\x66\x2f\x45\x5b\x1c\x2f\ \x43\x0c\x1c\x2a\x08\x19\x23\x11\x24\x2f\x1f\x34\x40\x07\x19\x25\ \x04\x10\x1c\x02\x0f\x19\x05\x1b\x25\x1e\x3f\x49\x59\x7c\x89\x70\ \x90\xa0\x67\x81\x8f\x22\x37\x40\x06\x1b\x25\x30\x4c\x5c\x79\x9b\ \xb3\x90\xb2\xd1\x94\xb3\xd5\x99\xb8\xda\x00\x00\x00\x84\xb4\xd2\ \x83\xb0\xcf\x8c\xb6\xd6\x8a\xb4\xd3\x87\xb2\xd2\x8c\xb6\xd4\x92\ \xbf\xdd\x92\xbe\xdd\x91\xb8\xd8\x8b\xae\xca\x34\x57\x6a\x4d\x76\ \x86\x83\xb4\xcb\x89\xbd\xda\x89\xbd\xdd\x87\xbd\xdd\x88\xbc\xdd\ \x87\xba\xd8\x8a\xbb\xd9\x8d\xbc\xdd\x8f\xbb\xe0\x8f\xbd\xdf\x8e\ \xbc\xdd\x8c\xb7\xdb\x8e\xb5\xdc\x87\xb3\xd7\x80\xb3\xd4\x7f\xb4\ \xd5\x81\xb5\xd6\x88\xb9\xda\x8e\xbb\xdd\x89\xb1\xd3\x40\x65\x82\ \x43\x69\x82\x89\xb0\xcc\x94\xc1\xde\x8a\xbf\xdc\x86\xbf\xdb\x84\ \xbc\xd7\x86\xbd\xdb\x8a\xc0\xe0\x90\xc1\xe3\x96\xc4\xe4\x96\xc0\ \xdf\x9d\xc3\xe2\x9b\xbf\xdd\x91\xb6\xd4\x8b\xb0\xd2\x95\xbd\xde\ \x96\xc4\xe1\x94\xc3\xde\x98\xc4\xdf\x99\xc0\xdd\x9b\xc0\xdf\x96\ \xbd\xdd\x91\xbc\xdb\x86\xb4\xd2\x7c\xab\xc9\x7c\xa8\xc5\x44\x6c\ \x86\x42\x69\x85\x87\xb4\xce\x8b\xba\xd6\x8b\xba\xd6\x80\xab\xc3\ \x45\x64\x74\x1f\x3a\x46\x8a\xa9\xbd\x91\xbb\xd6\x8a\xbb\xda\x8b\ \xbc\xdc\x8a\xbc\xdb\x87\xbb\xd9\x84\xba\xd5\x82\xb5\xd1\x82\xb5\ \xd5\x82\xb3\xd6\x84\xb2\xd3\x8e\xb3\xd4\x92\xb5\xd6\x90\xb5\xd3\ \x87\xb5\xd0\x84\xb3\xd1\x84\xb3\xd1\x83\xb2\xd1\x80\xaf\xce\x83\ \xae\xcf\x83\xa9\xcb\x81\xa9\xc9\x80\xad\xca\x85\xb0\xcf\x85\xac\ \xce\xaf\xca\xde\xc3\xdd\xea\xb4\xd6\xea\xb6\xd8\xe8\xb3\xd4\xe7\ \x93\xb9\xca\x56\x74\x80\x3a\x43\x48\x36\x3c\x3f\x39\x43\x49\x3d\ \x43\x46\x3b\x40\x3e\x39\x40\x3e\x3d\x41\x41\x35\x40\x42\x35\x44\ \x49\x3a\x42\x3e\x3e\x42\x3c\x3d\x45\x41\x3f\x48\x46\x41\x4b\x4d\ \x42\x4a\x4f\x42\x4d\x54\x4a\x54\x57\x46\x54\x59\x45\x4a\x4d\x45\ \x4f\x52\x4d\x54\x56\x45\x4d\x52\x44\x4d\x4d\x46\x4f\x52\x4a\x53\ \x56\x4b\x53\x54\x4f\x55\x59\x48\x57\x58\x4e\x59\x5d\x56\x5e\x65\ \x51\x5a\x60\x54\x5e\x66\x5c\x67\x6e\x6c\x7e\x84\x99\xb0\xb1\xc0\ \xd3\xd8\xa9\xc5\xd7\x90\xaf\xcd\x72\x8f\xb2\x4f\x62\x82\x0e\x1f\ \x36\x24\x3c\x51\x77\x96\xb1\x84\xa4\xc0\x7d\x99\xb2\x6e\x87\x9b\ \x42\x5b\x6c\x3b\x57\x69\x5b\x79\x8b\x51\x6b\x7f\x2d\x42\x57\x1e\ \x34\x48\x27\x42\x56\x2b\x49\x5b\x25\x44\x56\x1e\x3a\x4c\x1f\x36\ \x46\x0d\x22\x2b\x09\x1e\x28\x40\x58\x69\x87\xa4\xbc\x94\xb1\xd2\ \x96\xb5\xd7\x95\xb7\xd7\x00\x00\x00\x7e\xa8\xbe\x86\xac\xc3\x91\ \xb6\xd2\x8c\xb4\xd3\x87\xb1\xcf\x88\xaf\xcb\x8d\xb2\xd0\x89\xb1\ \xd1\x90\xb8\xd9\x8e\xb6\xd0\x6b\x90\xa3\x18\x3a\x4c\x76\x9b\xb1\ \x8b\xb7\xd4\x8b\xbb\xdc\x8a\xbd\xde\x87\xbc\xdd\x8a\xba\xdc\x8e\ \xba\xdd\x92\xba\xdd\x90\xb7\xd9\x8a\xb3\xd4\x86\xb5\xd5\x89\xb4\ \xda\x8f\xb5\xdc\x87\xae\xd0\x83\xaf\xce\x81\xb0\xce\x87\xb7\xd8\ \x90\xbd\xde\x94\xbe\xdf\x92\xba\xda\x87\xac\xc9\x31\x56\x70\x63\ \x88\xa2\x8d\xb8\xd1\x8d\xbf\xda\x87\xbe\xdb\x82\xba\xd6\x88\xbe\ \xdb\x8b\xc1\xe0\x90\xc0\xe1\x95\xc0\xe0\x9c\xc3\xe2\x9f\xc4\xe1\ \x9b\xc0\xdd\x96\xbd\xda\x95\xbd\xde\x95\xc0\xdf\x93\xc2\xde\x92\ \xc7\xde\x91\xc5\xdc\x93\xc1\xda\x93\xbd\xda\x91\xba\xda\x8e\xb8\ \xd7\x86\xb7\xd2\x7c\xb1\xca\x76\xab\xc4\x75\xa6\xc0\x46\x75\x8e\ \x5c\x8e\xa5\x88\xb9\xd2\x8b\xba\xd7\x86\xb1\xca\x57\x75\x86\x0d\ \x25\x31\x72\x93\xa4\x88\xb7\xcf\x8c\xbf\xdb\x91\xc0\xde\x90\xbf\ \xdd\x8b\xbc\xda\x87\xbd\xd8\x8a\xbb\xd8\x83\xb5\xd4\x81\xb4\xd5\ \x88\xb7\xd7\x92\xba\xda\x97\xbb\xdb\x91\xb9\xd8\x8a\xb9\xd5\x88\ \xb8\xd5\x88\xb7\xd6\x88\xb7\xd6\x86\xb5\xd4\x87\xb4\xd6\x87\xb1\ \xd4\x87\xaf\xd2\x86\xb1\xd2\x82\xad\xce\x87\xad\xcf\x80\xa6\xc7\ \x8a\xae\xce\xba\xd3\xe4\xbf\xdb\xea\xbb\xda\xec\xb4\xd5\xe6\xa8\ \xca\xda\x95\xb6\xc4\x58\x71\x77\x3e\x4b\x51\x37\x47\x47\x37\x40\ \x41\x3f\x44\x45\x39\x45\x42\x36\x3e\x3e\x3d\x46\x4b\x3a\x41\x44\ \x40\x44\x43\x41\x4c\x4b\x43\x4d\x4d\x46\x51\x55\x45\x50\x52\x42\ \x49\x4e\x42\x4b\x4b\x43\x4c\x4d\x49\x4f\x4f\x4d\x51\x59\x4a\x4f\ \x54\x4b\x52\x57\x48\x54\x51\x49\x54\x56\x4e\x58\x5d\x4c\x57\x5a\ \x53\x59\x5c\x52\x5b\x5c\x55\x5b\x65\x56\x5f\x6a\x5e\x68\x70\x67\ \x75\x7a\x93\xa9\xa7\xad\xc8\xd1\x6d\x8e\xa6\x34\x59\x74\x7e\xa3\ \xc0\x88\xaa\xcb\x82\xa0\xc0\x67\x7c\x98\x16\x27\x3a\x1a\x34\x44\ \x7c\x9e\xb6\x86\xaa\xc5\x88\xaa\xc4\x8b\xa9\xc2\x86\xa8\xbd\x88\ \xac\xc2\x89\xaf\xc5\x87\xac\xc4\x84\xa6\xc1\x83\xa1\xbf\x82\xa4\ \xbf\x82\xa8\xbf\x81\xa3\xb8\x6b\x89\xa0\x48\x63\x77\x20\x37\x43\ \x16\x2a\x35\x64\x7c\x8f\x8c\xa9\xc3\x93\xb2\xd0\x93\xb5\xd2\x94\ \xb7\xd3\x00\x00\x00\x2c\x49\x5b\x25\x40\x54\x4f\x6e\x86\x68\x8d\ \xa9\x7c\xa0\xbb\x4c\x6c\x84\x3e\x5d\x76\x73\x99\xb5\x8d\xba\xd7\ \x8b\xb8\xd3\x8d\xb5\xcc\x28\x49\x5d\x47\x68\x7d\x90\xb7\xd3\x92\ \xbd\xde\x90\xbf\xe1\x89\xb9\xdb\x8a\xb5\xd6\x89\xac\xcd\x7c\x9b\ \xba\x5c\x79\x93\x54\x75\x8d\x7e\xa7\xc1\x83\xaf\xce\x8b\xb0\xd2\ \x8b\xaa\xc8\x85\xa6\xbf\x86\xab\xc3\x8b\xb3\xcf\x90\xb5\xd2\x96\ \xb8\xd6\x91\xb3\xd0\x8a\xae\xca\x77\x9c\xb7\x27\x4c\x64\x66\x8c\ \xa3\x87\xb1\xc9\x8d\xbc\xd5\x88\xbc\xd5\x8c\xbf\xdb\x8f\xc1\xe1\ \x94\xc4\xe3\x96\xbf\xde\x9b\xbd\xd9\x9b\xbd\xd7\x9b\xbf\xd9\x98\ \xbf\xda\x91\xbd\xd8\x8f\xbf\xdb\x8e\xc0\xdb\x8d\xc1\xda\x8f\xc3\ \xd8\x8d\xbf\xd4\x8a\xb9\xd2\x83\xb1\xcc\x81\xac\xc7\x82\xb2\xca\ \x78\xae\xc4\x75\xad\xc3\x76\xaf\xc7\x7e\xb4\xcb\x5a\x8d\xa3\x5c\ \x8e\xa5\x84\xb1\xcb\x87\xaf\xc8\x63\x7f\x91\x06\x1c\x2a\x61\x84\ \x95\x86\xb6\xcc\x90\xc0\xda\x95\xbf\xdd\x93\xc1\xdf\x8d\xbe\xdd\ \x89\xbc\xdb\x8b\xba\xd9\x89\xb7\xd9\x89\xb7\xd9\x92\xbc\xdd\x96\ \xbb\xdd\x96\xbb\xdd\x91\xbc\xdc\x8c\xbc\xda\x89\xbb\xd9\x8c\xbb\ \xdb\x89\xb8\xd7\x89\xb8\xd9\x8a\xb8\xda\x8c\xb8\xda\x90\xb7\xda\ \x8f\xb6\xd9\x8b\xb1\xd7\x87\xad\xd0\x83\xaa\xcc\x7e\xa8\xcd\x7d\ \xa9\xcf\x98\xbe\xd8\xc5\xdc\xe8\xbd\xd7\xe7\xb7\xd3\xe7\xb1\xd4\ \xe8\xaa\xcc\xdd\x6f\x90\x97\x46\x61\x6c\x43\x58\x5e\x43\x4b\x51\ \x40\x47\x45\x3d\x43\x41\x45\x46\x4b\x3c\x41\x43\x42\x48\x4d\x44\ \x4c\x4c\x45\x4e\x55\x44\x4f\x59\x41\x4f\x54\x44\x4e\x55\x45\x4e\ \x56\x46\x52\x57\x49\x4f\x53\x46\x52\x55\x47\x56\x57\x4e\x5e\x63\ \x50\x5b\x60\x4f\x58\x60\x4e\x5a\x5f\x4f\x5c\x5e\x54\x5c\x60\x58\ \x61\x65\x5e\x68\x71\x66\x77\x7b\x83\x98\x99\xba\xd1\xd0\x93\xb2\ \xc7\x78\x9c\xbc\x67\x85\xa7\x29\x47\x64\x67\x8a\xa4\x8c\xb0\xca\ \x87\xa8\xc2\x75\x91\xa6\x27\x3a\x4a\x17\x2f\x3e\x75\x96\xa9\x83\ \xa8\xc2\x87\xab\xc5\x8d\xad\xc8\x8c\xae\xc7\x8f\xb0\xc8\x8f\xb3\ \xc9\x8c\xb4\xca\x87\xac\xc6\x84\xa5\xc1\x83\xa5\xc2\x85\xa9\xc4\ \x85\xa9\xc3\x81\xa5\xbf\x73\x95\xab\x4b\x66\x75\x25\x3e\x4a\x75\ \x92\xa5\x8c\xae\xc8\x8e\xb1\xcb\x90\xb4\xce\x93\xb8\xd2\x00\x00\ \x00\x2d\x47\x5c\x17\x32\x46\x51\x70\x86\x70\x95\xaf\x56\x77\x8f\ \x0e\x29\x3c\x22\x3f\x54\x7c\xa2\xbb\x90\xbe\xd9\x91\xc0\xdb\x8e\ \xb8\xd3\x59\x7d\x93\x1c\x3e\x4f\x7f\xa7\xbd\x92\xbd\xda\x95\xbf\ \xe2\x8f\xba\xdd\x65\x8a\xab\x34\x50\x70\x22\x3b\x54\x0a\x1f\x33\ \x0c\x24\x36\x39\x5b\x6f\x81\xa6\xc1\x89\xa9\xc5\x5f\x78\x8f\x1a\ \x30\x43\x2f\x4c\x60\x56\x78\x8f\x6e\x8c\xa2\x64\x7b\x90\x48\x61\ \x76\x52\x74\x8e\x71\x99\xb5\x6d\x97\xad\x21\x46\x56\x56\x76\x88\ \x68\x8b\x9e\x73\x9c\xb2\x84\xb1\xcb\x8b\xba\xd6\x8f\xbe\xd9\x8d\ \xb6\xce\x7b\x9b\xb0\x8c\xaa\xbd\x93\xb1\xc6\x94\xb4\xc9\x90\xb7\ \xca\x8d\xbd\xd2\x90\xc3\xda\x8f\xbf\xd6\x8f\xbd\xd1\x8d\xb9\xce\ \x8b\xb5\xcc\x81\xa6\xbe\x7a\x9d\xb3\x77\x9f\xb5\x78\xa5\xbc\x79\ \xab\xc2\x80\xb3\xcd\x85\xb8\xd2\x8b\xbb\xd2\x6c\x98\xb1\x6c\x96\ \xaf\x7e\xa0\xbe\x64\x7c\x93\x08\x1a\x2c\x5b\x7b\x8c\x8b\xb4\xcb\ \x97\xbf\xdb\x9a\xc0\xe0\x95\xc2\xdf\x8f\xbf\xdb\x88\xb9\xd5\x8c\ \xb9\xd9\x90\xb8\xdb\x93\xbb\xde\x99\xbf\xe0\x99\xbd\xdf\x93\xbb\ \xdd\x8d\xba\xdc\x8a\xbc\xdc\x8a\xba\xdc\x92\xbf\xe1\x90\xbe\xe0\ \x8c\xba\xdc\x8d\xba\xda\x90\xb9\xda\x95\xb9\xdb\x92\xb6\xd9\x8f\ \xb4\xda\x8b\xb0\xd4\x87\xae\xd1\x82\xaf\xd2\x7e\xaf\xd2\x84\xb4\ \xd5\x90\xb7\xd5\xaa\xc8\xde\xc1\xdb\xe6\xbb\xdb\xea\xb1\xd5\xe9\ \xaf\xd5\xe6\xa3\xca\xd7\x67\x8d\x98\x4c\x61\x6d\x3f\x4f\x53\x3e\ \x46\x46\x3e\x44\x48\x39\x3e\x3e\x3f\x42\x45\x41\x45\x46\x41\x4c\ \x4f\x42\x49\x54\x3f\x49\x4a\x47\x5c\x60\x48\x5c\x66\x58\x71\x77\ \x70\x8d\x95\x66\x84\x86\x65\x7d\x81\x68\x84\x91\x65\x80\x8b\x66\ \x76\x7d\x5b\x6e\x6f\x70\x84\x84\x7d\x8c\x8d\x8e\x9f\x9d\xb4\xc2\ \xc0\xa5\xb9\xbb\x9a\xb0\xb8\x55\x76\x90\x7c\x9d\xbd\x7d\x9c\xc0\ \x74\x91\xb7\x42\x5e\x7f\x3f\x5d\x77\x81\xa4\xba\x7f\xa3\xba\x77\ \x96\xac\x3e\x52\x66\x15\x2a\x3c\x63\x7e\x91\x84\xa3\xbf\x84\xa4\ \xc4\x84\xa7\xc4\x89\xab\xc5\x8f\xae\xc9\x8e\xad\xc6\x8e\xae\xc6\ \x90\xad\xc8\x8f\xaa\xc8\x8f\xac\xc7\x8e\xab\xc7\x89\xa8\xc4\x7f\ \xa1\xbd\x7a\x9c\xb1\x61\x7f\x8e\x24\x41\x4e\x73\x95\xa7\x8c\xb1\ \xca\x8e\xb3\xcd\x92\xb5\xcf\x94\xb5\xd2\x00\x00\x00\x8d\xb1\xcb\ \x76\x99\xb6\x69\x8e\xa8\x88\xae\xc8\x8c\xb2\xca\x6b\x8d\xa2\x3e\ \x62\x79\x70\x9c\xb5\x8b\xbd\xd8\x8f\xc1\xde\x91\xbe\xdc\x80\xa9\ \xc2\x4e\x77\x8c\x61\x8f\xa4\x90\xbf\xda\x91\xbf\xe0\x8f\xbd\xdf\ \x87\xb4\xd5\x7c\xa5\xc3\x5e\x83\x9d\x40\x60\x76\x3b\x5d\x73\x5d\ \x83\x9d\x6a\x91\xb0\x6e\x90\xae\x31\x4b\x62\x0b\x23\x34\x5e\x83\ \x96\x8c\xb4\xca\x72\x93\xa9\x25\x3c\x4f\x16\x2d\x40\x59\x7b\x93\ \x7d\xa8\xc3\x85\xb2\xcb\x63\x87\x99\x12\x2d\x3d\x10\x2a\x3b\x2f\ \x51\x62\x52\x7c\x92\x61\x8e\xa8\x7c\xaa\xc7\x81\xa8\xc1\x40\x5d\ \x6d\x19\x34\x3f\x54\x6f\x7b\x5a\x75\x83\x40\x61\x6f\x7d\xa3\xb4\ \x8b\xb3\xc8\x77\x9a\xae\x56\x76\x88\x61\x83\x95\x74\x95\xaa\x59\ \x74\x89\x28\x41\x55\x2e\x4a\x61\x4f\x73\x8b\x6a\x93\xac\x83\xb0\ \xc9\x84\xb0\xc8\x88\xb0\xc7\x8e\xb4\xca\x81\xa7\xc0\x72\x91\xaf\ \x56\x6a\x85\x0b\x1d\x30\x53\x72\x85\x8e\xb4\xcd\x99\xbd\xdc\x96\ \xbb\xd9\x8e\xbb\xd6\x87\xb9\xcf\x8a\xbc\xd2\x8d\xb9\xd5\x93\xba\ \xda\x93\xbd\xdd\x96\xc0\xdf\x95\xbd\xdb\x8e\xba\xd9\x8a\xb9\xd9\ \x8a\xba\xdc\x8f\xbb\xdf\x95\xbe\xe1\x91\xbd\xdd\x8d\xbc\xdc\x8f\ \xba\xda\x92\xbb\xdb\x92\xb8\xd8\x89\xac\xce\x78\x9f\xc1\x86\xad\ \xd0\x87\xb0\xd2\x87\xb4\xd5\x85\xb4\xd4\x87\xb6\xd4\x8f\xb9\xd7\ \x90\xb9\xd8\x87\xb6\xd5\x97\xc3\xdc\xb2\xd3\xe3\xc3\xdd\xe9\xb8\ \xd9\xe9\xb0\xd3\xe5\x8b\xac\xb8\x64\x86\x94\x53\x68\x78\x41\x54\ \x57\x3c\x4b\x4b\x3d\x49\x4a\x38\x43\x41\x4f\x5e\x63\x61\x7b\x7f\ \x6b\x87\x8b\xa3\xc2\xcb\xb1\xca\xcd\xa7\xc2\xc7\xb9\xd2\xd8\xc0\ \xd4\xde\xb7\xcf\xd4\xb7\xd2\xd4\xbd\xd7\xda\xb3\xcc\xd9\xa2\xc1\ \xce\xbc\xd5\xde\xb5\xd1\xde\x8c\xb1\xcc\x70\x94\xb1\x6f\x90\xab\ \x71\x92\xb0\x82\xa3\xc4\x81\xa3\xc5\x7d\xa0\xc3\x77\x99\xc0\x65\ \x85\xa9\x28\x48\x63\x55\x79\x8e\x77\x9d\xb3\x74\x94\xae\x55\x6c\ \x84\x13\x26\x3b\x42\x5b\x70\x7e\x9e\xba\x7f\xa3\xc3\x7d\xa5\xc5\ \x83\xab\xca\x87\xaa\xc8\x8b\xaa\xc6\x90\xac\xc8\x95\xae\xcb\x91\ \xac\xca\x90\xb0\xcc\x90\xad\xcb\x8d\xa9\xc6\x84\xa4\xc1\x7d\x9e\ \xb6\x69\x88\x9b\x20\x3f\x4e\x69\x8c\xa0\x8c\xb2\xca\x8f\xb4\xce\ \x93\xb4\xd2\x94\xb4\xd4\x00\x00\x00\x8b\xb4\xd6\x88\xb2\xd5\x88\ \xb4\xd5\x8a\xb7\xd5\x89\xb6\xd2\x81\xad\xc7\x7e\xac\xc7\x7a\xae\ \xca\x80\xb7\xd4\x85\xba\xda\x87\xb9\xda\x85\xb6\xd1\x7f\xb2\xcb\ \x81\xb4\xcc\x8f\xbf\xda\x8b\xbd\xdc\x86\xba\xda\x85\xb8\xd8\x83\ \xb5\xd2\x84\xb6\xd1\x88\xb7\xd3\x81\xb2\xd0\x80\xb5\xd5\x85\xb7\ \xd9\x8c\xb8\xd8\x7e\xa9\xc4\x63\x8d\xa4\x6a\x99\xb3\x83\xb5\xd2\ \x88\xb0\xcd\x85\xa5\xc0\x55\x73\x8d\x45\x67\x82\x72\x9b\xb8\x89\ \xb4\xd1\x8c\xb1\xcb\x4d\x6b\x81\x11\x2b\x3e\x30\x4f\x60\x36\x5d\ \x71\x79\xa3\xbe\x7c\xa9\xc9\x6c\x95\xb2\x40\x5f\x71\x16\x34\x3f\ \x1c\x3d\x49\x25\x43\x53\x08\x26\x36\x3a\x5a\x6b\x7f\x9c\xb0\x58\ \x70\x83\x08\x1c\x2d\x41\x5c\x6f\x4f\x6f\x82\x2b\x43\x57\x17\x2b\ \x3f\x48\x5f\x76\x6a\x88\xa3\x6b\x8e\xa9\x56\x7b\x96\x3d\x63\x79\ \x2f\x4f\x62\x19\x37\x4b\x24\x48\x60\x40\x5d\x79\x34\x47\x5d\x08\ \x1c\x2b\x4f\x6c\x7f\x87\xa8\xc2\x91\xb0\xcd\x7f\xa0\xb9\x6d\x92\ \xa7\x7a\xa7\xba\x82\xb1\xc4\x8b\xb5\xcb\x8f\xb5\xce\x8e\xb6\xd0\ \x91\xba\xd3\x92\xb7\xd1\x8d\xb4\xcf\x8c\xb7\xd3\x8d\xb8\xd5\x91\ \xb8\xd7\x8d\xb2\xcf\x8b\xb3\xcd\x8c\xb7\xd2\x91\xbb\xd9\x92\xbc\ \xdb\x90\xb5\xd5\x7c\x9e\xbd\x3a\x5a\x79\x72\x94\xb3\x88\xb0\xd0\ \x88\xb5\xd5\x8b\xb8\xd7\x8e\xb8\xd6\x95\xbb\xd9\x94\xb9\xdc\x8a\ \xb6\xda\x86\xb8\xd7\x88\xb9\xd3\x8c\xbc\xd2\xa9\xce\xde\xc2\xdc\ \xe8\xc5\xdd\xe7\xaf\xcb\xdb\x80\xa0\xac\x67\x86\x8e\x5a\x7c\x83\ \x6a\x88\x95\x72\x90\xa1\x8d\xb3\xcc\x9d\xbf\xd3\xa7\xc6\xd4\xbf\ \xd8\xe4\x8e\xb4\xce\xa3\xc1\xd8\xa1\xbe\xd6\x83\xaa\xc7\x81\xad\ \xca\x86\xad\xcd\x86\xab\xc9\x82\xa8\xc7\x7a\xa3\xc2\x78\xa6\xc4\ \x7c\xab\xcb\x7c\xaa\xca\x7d\xa4\xc5\x7f\xa3\xc4\x84\xa8\xcb\x85\ \xab\xce\x82\xa8\xcc\x80\xa6\xc9\x7e\xa2\xc8\x7a\x9b\xbe\x56\x77\ \x92\x22\x45\x5a\x61\x86\x9c\x74\x94\xae\x69\x81\x9a\x1a\x31\x44\ \x26\x45\x57\x73\x9b\xb3\x7b\xa7\xc4\x7a\xa9\xc9\x7d\xa9\xc9\x80\ \xa6\xc7\x86\xa8\xc5\x90\xae\xca\x92\xaf\xcb\x8e\xaf\xcb\x88\xac\ \xcd\x8b\xad\xcb\x8c\xab\xc6\x83\xa6\xc0\x79\x9d\xb6\x69\x89\x9d\ \x23\x3f\x52\x49\x68\x7d\x8d\xac\xc8\x94\xb4\xd2\x92\xb4\xd5\x90\ \xb4\xd4\x00\x00\x00\x86\xb2\xd6\x85\xb3\xd6\x84\xb5\xd3\x84\xb7\ \xd5\x86\xb7\xd8\x89\xb8\xd8\x7f\xb1\xcf\x7c\xb2\xd1\x80\xb9\xd5\ \x83\xbc\xda\x85\xb9\xda\x85\xb8\xd7\x86\xbb\xd9\x8a\xbe\xdc\x90\ \xc0\xdd\x8a\xbb\xd9\x88\xbc\xd9\x8c\xbe\xdb\x8d\xbe\xdc\x8b\xbd\ \xdd\x87\xbb\xdb\x7d\xb6\xd8\x7b\xb3\xd7\x83\xb7\xda\x83\xba\xda\ \x7c\xb7\xd6\x7c\xb7\xd5\x80\xb8\xd7\x85\xbb\xdb\x8b\xb8\xdb\x8f\ \xb5\xd7\x91\xb6\xd6\x90\xb7\xd6\x8f\xb6\xd7\x96\xbc\xde\x95\xba\ \xdb\x86\xa9\xc6\x25\x44\x5b\x4f\x71\x82\x62\x84\x9a\x2b\x50\x6b\ \x71\x97\xb7\x87\xae\xca\x72\x97\xaf\x48\x6c\x80\x64\x8d\xa4\x7a\ \xa4\xbf\x72\x9b\xb3\x7a\xa0\xb9\x6b\x8c\xa7\x4b\x67\x80\x13\x2f\ \x41\x43\x65\x78\x77\xa0\xb4\x67\x8a\x9e\x25\x3e\x51\x3d\x56\x6c\ \x81\x9f\xba\x88\xad\xcc\x8a\xb2\xce\x66\x8c\xa5\x23\x44\x59\x1b\ \x3d\x53\x57\x7d\x98\x5d\x7e\x9a\x20\x36\x4a\x0b\x23\x33\x32\x51\ \x64\x71\x8f\xab\x86\x9f\xbc\x50\x67\x7d\x19\x36\x46\x3e\x63\x74\ \x6c\x92\xa5\x52\x74\x87\x2d\x4d\x5f\x3e\x5f\x73\x52\x73\x89\x60\ \x7b\x92\x59\x75\x89\x63\x83\x97\x78\x99\xaf\x7a\x99\xb0\x58\x72\ \x88\x46\x62\x79\x56\x7e\x96\x78\xa7\xc4\x8b\xb9\xd8\x8d\xb5\xd3\ \x8a\xa9\xc4\x4c\x64\x7d\x36\x53\x6c\x88\xad\xca\x89\xb2\xd2\x8e\ \xb6\xd5\x93\xba\xd6\x95\xb9\xda\x95\xba\xdf\x93\xba\xe0\x8b\xb8\ \xd8\x82\xb5\xcf\x80\xb6\xcd\x7f\xb2\xcb\x85\xb0\xce\x88\xaf\xcc\ \xac\xca\xd8\xac\xc9\xd8\xb6\xd1\xd8\xbb\xd4\xde\xb7\xcf\xdb\xb4\ \xcd\xd4\xc1\xd8\xdc\xbe\xd9\xe1\xb0\xcc\xdb\x8d\xb4\xce\x8d\xb2\ \xcc\x90\xb4\xcf\x8e\xb3\xcd\x82\xae\xc7\x80\xac\xc9\x84\xab\xcb\ \x88\xaa\xcc\x82\xa5\xc6\x7f\xa6\xc4\x7d\xa6\xc4\x7f\xaa\xc9\x7f\ \xaa\xc9\x87\xae\xce\x8c\xb0\xd2\x8d\xb4\xd5\x86\xb2\xd3\x84\xaf\ \xd1\x82\xab\xce\x84\xab\xcd\x83\xa8\xc6\x7a\x9c\xb6\x4b\x6e\x85\ \x2b\x50\x66\x6c\x8c\xa5\x70\x88\xa0\x2f\x45\x58\x1b\x3c\x4c\x6a\ \x98\xae\x78\xa9\xc4\x79\xaa\xc7\x7c\xa8\xc8\x83\xa9\xc8\x8b\xae\ \xcb\x91\xb1\xcc\x91\xb2\xcc\x8c\xaf\xcb\x85\xab\xc9\x86\xab\xc8\ \x88\xa8\xc4\x82\xa5\xbf\x77\x9c\xb5\x69\x8c\xa0\x38\x54\x67\x29\ \x46\x59\x7f\x9d\xb7\x95\xb2\xd3\x96\xb6\xd7\x94\xb5\xd6\x00\x00\ \x00\x86\xb4\xd6\x86\xb5\xd4\x84\xb7\xd1\x87\xb8\xd7\x87\xb7\xda\ \x8b\xb8\xdc\x87\xb8\xd9\x81\xb6\xd7\x84\xba\xd9\x88\xbd\xdc\x8a\ \xba\xda\x8c\xba\xda\x90\xbc\xdd\x92\xbf\xdf\x8d\xbc\xdb\x88\xb9\ \xd8\x8a\xba\xd9\x8a\xbb\xd7\x8b\xbb\xd9\x83\xb5\xd5\x7f\xb4\xd5\ \x7e\xb3\xd6\x80\xb4\xd9\x82\xb5\xd9\x81\xb8\xda\x78\xb8\xd8\x77\ \xb8\xd9\x7a\xb7\xd7\x86\xba\xdb\x89\xb6\xdb\x8d\xb8\xdd\x90\xbb\ \xdf\x93\xbf\xe2\x97\xbd\xe1\x98\xbf\xe0\x8e\xba\xda\x85\xb3\xd2\ \x62\x8a\xa5\x23\x45\x5c\x7f\xa0\xb9\x5a\x78\x98\x2a\x46\x64\x86\ \xa6\xc2\x8e\xb4\xcf\x90\xba\xd5\x8b\xb8\xd7\x89\xb8\xd9\x89\xb8\ \xd6\x8e\xba\xd9\x92\xba\xda\x91\xb7\xd4\x89\xb0\xc6\x78\xa5\xba\ \x7d\xaf\xc4\x8c\xb6\xcc\x78\x9a\xae\x4f\x6f\x86\x57\x7c\x98\x88\ \xb4\xd3\x8b\xb8\xd7\x86\xb1\xcd\x6a\x90\xae\x35\x5b\x7c\x57\x7f\ \xa1\x7a\xa1\xc1\x65\x84\x9f\x41\x61\x78\x62\x86\x9e\x79\x9b\xb8\ \x6f\x8a\xa7\x47\x61\x7a\x25\x42\x59\x22\x43\x59\x25\x49\x5d\x16\ \x37\x49\x19\x3a\x4b\x5b\x7b\x90\x6d\x8b\xa2\x33\x4b\x61\x19\x2e\ \x41\x41\x58\x68\x56\x71\x83\x40\x59\x6c\x1f\x30\x45\x29\x3f\x56\ \x67\x8e\xa7\x7c\xae\xcb\x8b\xbb\xd9\x8e\xb9\xd5\x94\xb5\xd1\x6e\ \x84\x9f\x1c\x35\x4d\x6c\x8e\xa9\x87\xb1\xce\x8a\xb4\xd1\x8e\xb6\ \xd3\x92\xba\xdb\x92\xba\xde\x92\xba\xdd\x8b\xb6\xd6\x80\xb3\xcd\ \x7c\xb1\xc8\x7c\xab\xc1\x7b\x9e\xb8\x7f\x9e\xb8\x83\xa5\xbe\x89\ \xae\xc8\x8d\xb0\xce\x84\xa8\xc7\x7d\xa3\xc1\x7f\xaa\xc5\x83\xb2\ \xcb\x80\xb0\xc7\x7f\xaa\xc3\x81\xa8\xc0\x85\xab\xc2\x8a\xb0\xc8\ \x8c\xb3\xca\x85\xad\xc3\x7f\xa5\xc0\x82\xa6\xc4\x86\xa5\xc7\x85\ \xa6\xc8\x81\xa6\xc4\x7f\xa5\xc1\x81\xa8\xc3\x82\xaa\xc6\x8d\xb2\ \xd0\x91\xb4\xd4\x8f\xb7\xd6\x89\xb7\xd6\x85\xb4\xd4\x82\xaf\xd0\ \x84\xb1\xd1\x82\xae\xc9\x7f\xa8\xc1\x7b\xa2\xbd\x56\x7b\x97\x32\ \x53\x6f\x55\x6e\x8a\x3b\x52\x66\x18\x37\x4a\x60\x8c\xa5\x74\xa5\ \xc1\x79\xa9\xc3\x7d\xa9\xc5\x86\xab\xc9\x8e\xae\xce\x90\xad\xcd\ \x90\xb0\xce\x8d\xb0\xcc\x88\xad\xcb\x88\xad\xca\x85\xa9\xc3\x82\ \xa6\xc0\x7a\x9f\xb9\x70\x93\xa9\x5e\x7c\x90\x24\x41\x56\x5f\x81\ \x9a\x8f\xb0\xce\x97\xb5\xd6\x97\xb4\xd3\x00\x00\x00\x88\xba\xd8\ \x87\xb7\xd5\x85\xb4\xcf\x8b\xb8\xd6\x8a\xb8\xd9\x88\xb8\xdd\x86\ \xb7\xdc\x87\xb8\xdd\x8a\xbc\xdd\x8b\xbe\xdc\x8c\xbc\xda\x8d\xba\ \xd9\x93\xba\xdb\x92\xbc\xdd\x89\xb7\xd9\x84\xb1\xd5\x84\xb2\xd4\ \x86\xb5\xd4\x82\xb2\xd1\x7b\xaf\xd0\x75\xac\xcf\x7d\xb0\xd5\x85\ \xb4\xdb\x85\xb5\xdc\x7f\xb4\xd8\x7c\xb4\xd7\x7b\xb4\xd6\x7d\xb4\ \xd3\x85\xb6\xd6\x87\xb4\xd9\x87\xb4\xda\x85\xb3\xd8\x84\xaf\xd4\ \x85\xa9\xce\x83\xa8\xc8\x83\xb0\xcd\x78\xab\xc8\x7e\xaa\xc8\x23\ \x47\x63\x64\x82\x9f\x87\xa2\xc4\x26\x3c\x5c\x58\x72\x8d\x94\xb7\ \xd5\x92\xbb\xd8\x92\xbe\xdc\x90\xbd\xdd\x8d\xbb\xdd\x8e\xb9\xdb\ \x93\xbc\xdb\x95\xbb\xda\x94\xbb\xd6\x8e\xbd\xd8\x8b\xc0\xd9\x8c\ \xbc\xd5\x8f\xb8\xd1\x8b\xb1\xcd\x83\xaf\xce\x85\xb4\xd4\x87\xb7\ \xd7\x89\xb7\xd9\x87\xb1\xd6\x83\xaa\xd2\x7e\xa8\xce\x7a\xa8\xca\ \x7d\xa8\xc8\x83\xad\xcb\x86\xae\xcd\x8e\xb3\xd3\x8e\xb1\xd1\x89\ \xae\xcb\x84\xac\xca\x86\xb0\xcd\x82\xae\xca\x6f\x98\xb2\x4f\x75\ \x90\x45\x6a\x85\x78\x9b\xb7\x76\x97\xb2\x37\x56\x6c\x24\x42\x53\ \x60\x7e\x92\x7d\x98\xb0\x4a\x5f\x7b\x26\x41\x5c\x69\x91\xab\x8a\ \xba\xd6\x92\xc1\xdf\x91\xbd\xdd\x93\xb7\xd5\x7e\x9b\xb7\x25\x3e\ \x58\x4a\x68\x84\x87\xaf\xcb\x89\xb4\xcf\x8d\xb7\xd5\x8f\xbd\xdd\ \x90\xbc\xdf\x91\xbb\xdd\x86\xb5\xd3\x78\xaa\xc1\x77\xa7\xbb\x73\ \x9a\xb0\x5b\x78\x8b\x37\x4d\x61\x57\x71\x85\x83\xa2\xb9\x82\xa2\ \xb9\x6b\x89\xa1\x62\x7f\x98\x74\x95\xad\x81\xa3\xbb\x7a\x9d\xb4\ \x71\x91\xa6\x67\x85\x99\x6f\x90\xa5\x7e\xa3\xbc\x7f\xa1\xb6\x7e\ \x9b\xae\x7a\x99\xad\x81\x9f\xba\x86\xa3\xc4\x85\xa6\xca\x83\xa7\ \xc7\x7f\xa2\xbe\x81\xa3\xbc\x83\xa7\xc0\x8b\xac\xc8\x8d\xaf\xcb\ \x90\xb4\xd0\x8d\xb6\xd2\x8a\xb5\xd4\x89\xb6\xd4\x85\xb5\xd2\x82\ \xb3\xcc\x7f\xb1\xc8\x7d\xac\xc6\x7f\xaa\xc7\x73\x98\xb6\x42\x5f\ \x7a\x23\x3c\x53\x27\x46\x5d\x5e\x86\xa3\x75\xa4\xc1\x79\xa6\xc3\ \x80\xaa\xc5\x85\xac\xc9\x8b\xad\xcf\x90\xae\xcf\x92\xb2\xd0\x91\ \xb3\xd1\x90\xb3\xd3\x8c\xb0\xcf\x89\xae\xc8\x83\xa8\xc2\x7c\xa0\ \xba\x76\x97\xb2\x71\x93\xac\x41\x64\x7b\x37\x5d\x73\x85\xaa\xc4\ \x92\xb2\xd1\x96\xb2\xd4\x00\x00\x00\x8b\xb7\xd5\x89\xb4\xd5\x8b\ \xb2\xd3\x8b\xb3\xd3\x87\xb5\xd6\x83\xb5\xd8\x89\xb8\xde\x8d\xba\ \xdf\x93\xbf\xe4\x8e\xbe\xde\x8e\xbd\xdc\x8e\xbb\xda\x8f\xb9\xd8\ \x8d\xb6\xd9\x86\xb2\xd7\x82\xb1\xd6\x83\xb1\xd3\x83\xb3\xd2\x7a\ \xae\xcc\x76\xab\xce\x76\xab\xd2\x7e\xb1\xd9\x85\xb2\xdb\x81\xb1\ \xda\x7f\xb1\xd7\x81\xb1\xd5\x82\xb1\xd3\x85\xb1\xd3\x88\xb2\xd3\ \x84\xb1\xd3\x81\xaf\xd3\x7d\xaa\xce\x72\x99\xbc\x54\x70\x92\x30\ \x4c\x67\x36\x5c\x75\x5d\x8d\xa9\x7d\xac\xca\x4e\x72\x8f\x32\x50\ \x6d\x87\xa5\xc5\x53\x6a\x89\x23\x39\x55\x87\xa8\xc2\x88\xb3\xcf\ \x8a\xb9\xd5\x88\xb7\xd6\x87\xb5\xd7\x8c\xb6\xd9\x93\xb9\xdc\x93\ \xb8\xda\x92\xb9\xda\x8c\xb9\xda\x88\xba\xdc\x88\xb8\xd7\x89\xb6\ \xd1\x8b\xb4\xd1\x82\xaf\xcd\x7f\xb1\xd0\x81\xb4\xd5\x86\xb7\xda\ \x89\xb5\xdc\x8a\xb3\xdb\x84\xb0\xd5\x7d\xb0\xd2\x7d\xb2\xd1\x82\ \xb3\xd2\x89\xb5\xd5\x8f\xb6\xd6\x90\xb7\xd7\x8c\xb6\xd6\x8d\xb9\ \xd8\x8d\xbb\xdc\x8a\xb9\xd9\x8b\xb8\xda\x8b\xb7\xd7\x90\xbc\xdb\ \x8d\xb5\xd5\x87\xb1\xd0\x84\xad\xc8\x6d\x98\xae\x7c\xa7\xbe\x8a\ \xb2\xcd\x88\xaf\xcb\x6f\x96\xb3\x73\xa1\xbd\x8d\xba\xd7\x92\xbe\ \xdd\x8c\xba\xd9\x89\xb5\xd4\x83\xa9\xc7\x4a\x68\x85\x41\x63\x80\ \x86\xb0\xcb\x8a\xb6\xd2\x8d\xba\xd8\x8d\xbc\xdc\x8d\xbb\xdd\x8b\ \xb8\xdc\x7d\xad\xcb\x5b\x8a\xa2\x4b\x74\x8a\x51\x74\x87\x4d\x67\ \x77\x1a\x31\x3e\x29\x42\x53\x3f\x5b\x70\x51\x6e\x83\x36\x4d\x63\ \x15\x2b\x43\x2a\x45\x5d\x3b\x56\x6e\x2a\x42\x58\x15\x2a\x3e\x14\ \x2d\x40\x32\x50\x67\x43\x65\x7e\x43\x62\x76\x2b\x42\x52\x1e\x35\ \x46\x3a\x53\x6b\x51\x6c\x8e\x69\x88\xab\x6e\x8b\xaa\x51\x6b\x81\ \x3d\x56\x68\x49\x64\x79\x60\x7d\x95\x7e\x9e\xb7\x8a\xae\xc7\x8d\ \xb2\xcd\x8d\xb5\xd0\x8d\xb7\xd4\x87\xb5\xd4\x83\xb4\xcf\x84\xb4\ \xce\x82\xb2\xca\x83\xae\xc7\x83\xab\xc6\x81\xa5\xbf\x75\x96\xb0\ \x6e\x92\xac\x74\xa0\xbe\x75\xa3\xc2\x79\xa4\xc0\x83\xa9\xc3\x88\ \xad\xc8\x8b\xad\xcd\x8e\xb0\xcf\x8e\xb3\xce\x90\xb4\xd0\x94\xb3\ \xd5\x91\xb2\xd1\x87\xad\xc7\x82\xa7\xc1\x81\xa5\xc2\x82\xa2\xc3\ \x7d\xa0\xbc\x62\x86\x9e\x2f\x55\x69\x72\x99\xaf\x8e\xb1\xcd\x93\ \xb1\xd0\x00\x00\x00\x84\xa9\xcf\x86\xad\xd4\x83\xac\xd2\x81\xaa\ \xcf\x80\xaf\xd3\x7f\xb2\xd6\x82\xb2\xd7\x89\xb5\xda\x8b\xb7\xdd\ \x8c\xba\xdd\x8c\xbc\xdc\x8b\xb9\xda\x8e\xb9\xd9\x8c\xb6\xd9\x87\ \xb4\xd8\x83\xb4\xd7\x86\xb5\xd6\x86\xb7\xd6\x7f\xb3\xd4\x7a\xad\ \xd3\x7b\xac\xd6\x7e\xb1\xd8\x7e\xb0\xd7\x7d\xaf\xd6\x7f\xae\xd4\ \x7f\xad\xd2\x84\xae\xd3\x87\xaf\xd1\x85\xad\xce\x81\xae\xce\x81\ \xaf\xd0\x82\xaf\xd0\x6e\x94\xb5\x2c\x4a\x69\x32\x4f\x6a\x6a\x8f\ \xab\x79\xaa\xc7\x7e\xb0\xce\x73\x9c\xb8\x1a\x39\x54\x6c\x8b\xa7\ \x6f\x8a\xa8\x18\x2f\x4a\x66\x84\x9f\x81\xab\xc6\x81\xb1\xce\x80\ \xae\xd2\x7f\xaf\xd2\x85\xb0\xd5\x8d\xb6\xda\x90\xb9\xdb\x8c\xb6\ \xd9\x87\xb2\xd7\x85\xb3\xd9\x83\xb1\xd4\x82\xac\xcc\x72\x9a\xb3\ \x64\x8e\xa4\x71\xa0\xba\x77\xaa\xc9\x7c\xb0\xd2\x83\xb3\xd6\x84\ \xb1\xd5\x81\xb0\xd2\x78\xaf\xcd\x7b\xb2\xd0\x80\xb4\xd0\x87\xb3\ \xd2\x8c\xb2\xd1\x91\xb5\xd4\x90\xb8\xd6\x8d\xb9\xd8\x87\xb7\xd7\ \x85\xb8\xd6\x8a\xb8\xd8\x8c\xba\xd9\x89\xb7\xd6\x8b\xb7\xd7\x89\ \xb6\xd5\x82\xb3\xd1\x7f\xb2\xcf\x85\xb6\xd2\x87\xb7\xd5\x86\xb5\ \xd4\x84\xb5\xd3\x88\xb7\xd6\x88\xb7\xd5\x8d\xba\xd8\x8a\xb6\xd6\ \x7d\xac\xcb\x7a\xa7\xc6\x79\xa1\xc0\x6d\x97\xb6\x84\xb2\xd0\x89\ \xb9\xd6\x8d\xbb\xdb\x89\xb7\xd9\x88\xb7\xd8\x84\xb2\xd4\x82\xaf\ \xce\x7f\xa9\xc6\x7e\xa4\xbe\x64\x84\x9b\x41\x5f\x71\x27\x45\x53\ \x3f\x5f\x72\x7a\x9b\xb4\x7a\x98\xb2\x43\x5e\x77\x1d\x39\x51\x42\ \x60\x78\x79\x94\xb0\x7c\x93\xb0\x53\x69\x82\x2b\x47\x5d\x56\x78\ \x92\x7c\xa3\xbb\x6a\x8f\xa2\x2e\x4c\x5a\x1d\x39\x49\x65\x80\x97\ \x7f\x9c\xbb\x7c\x99\xba\x4c\x64\x7e\x1e\x32\x42\x18\x2c\x39\x4f\ \x6a\x7c\x61\x81\x98\x57\x78\x92\x56\x7b\x94\x7b\xa3\xb9\x89\xb2\ \xc9\x8c\xb6\xcf\x89\xb6\xd3\x87\xb5\xd3\x88\xb5\xcf\x88\xb2\xcb\ \x88\xae\xc8\x86\xad\xc6\x84\xaa\xc4\x7f\xa6\xbf\x7a\xa6\xbe\x75\ \xa4\xbf\x75\xa3\xc0\x79\xa2\xbd\x80\xa5\xbe\x86\xa9\xc2\x89\xac\ \xc9\x8b\xb1\xcd\x8a\xb4\xcd\x8d\xb4\xce\x95\xb3\xd1\x92\xb3\xd1\ \x87\xad\xc8\x83\xaa\xc5\x85\xa8\xc8\x8a\xa8\xc8\x84\xa3\xc0\x6e\ \x8d\xa5\x31\x4f\x61\x51\x72\x84\x90\xb1\xc9\x9a\xb7\xd3\x00\x00\ \x00\x52\x71\xa2\x58\x79\xa8\x61\x87\xb3\x66\x91\xb9\x6a\x97\xc0\ \x6e\x9e\xc7\x73\x9f\xc9\x74\x9d\xc8\x79\xa5\xd0\x81\xb1\xdb\x84\ \xb6\xde\x8a\xb9\xe0\x8d\xb9\xde\x89\xb2\xd9\x88\xb4\xd9\x83\xb1\ \xd4\x84\xb3\xd4\x86\xb6\xd7\x80\xb6\xd7\x7c\xb2\xd8\x7d\xaf\xd8\ \x7f\xb0\xd4\x7e\xb2\xd4\x7c\xb2\xd4\x7e\xaf\xd4\x82\xb0\xd6\x85\ \xb0\xd5\x86\xb0\xd1\x82\xaf\xcc\x82\xb1\xcd\x84\xb3\xd1\x84\xb1\ \xd2\x7f\xab\xce\x84\xad\xcf\x82\xab\xcc\x7d\xaa\xc9\x7b\xaf\xcf\ \x7f\xb4\xd4\x82\xae\xcb\x37\x5a\x74\x42\x62\x79\x7f\x9c\xb6\x2e\ \x45\x5e\x3b\x57\x6e\x81\xa7\xc4\x83\xae\xcf\x80\xae\xd1\x7a\xab\ \xcf\x7d\xad\xd0\x82\xb0\xd3\x89\xb6\xd8\x84\xb2\xd4\x85\xb0\xd4\ \x83\xac\xd2\x84\xac\xd2\x7d\xa6\xc7\x4f\x77\x91\x0a\x2a\x3f\x37\ \x63\x79\x6a\x9c\xba\x76\xac\xcc\x7c\xad\xcf\x7d\xaa\xcd\x7c\xaa\ \xcb\x7c\xad\xcd\x7b\xad\xcb\x7f\xae\xcd\x83\xb0\xd0\x88\xb0\xce\ \x8d\xb3\xcf\x89\xb3\xcd\x84\xb4\xce\x81\xb3\xd2\x7f\xb2\xd1\x86\ \xb5\xd2\x89\xb7\xd2\x8b\xb8\xd7\x88\xb4\xd5\x85\xb3\xd4\x80\xb4\ \xd4\x7d\xb3\xd2\x84\xb3\xd1\x88\xb2\xd1\x87\xb5\xd4\x86\xb7\xd6\ \x85\xb5\xd4\x84\xb3\xd3\x88\xb4\xd4\x87\xb2\xd3\x78\xa6\xca\x76\ \xa6\xc7\x83\xb2\xd1\x83\xb2\xd0\x84\xb4\xd2\x87\xb5\xd4\x89\xb3\ \xd5\x85\xb2\xd4\x81\xb0\xd0\x82\xb0\xd0\x86\xaf\xcf\x89\xaf\xcf\ \x88\xac\xca\x89\xab\xc6\x83\xa6\xbe\x7a\xa0\xb5\x73\x99\xb3\x82\ \xa7\xc7\x86\xa9\xcb\x83\xaa\xc6\x7a\xa4\xbc\x62\x8a\xa2\x6b\x8e\ \xa9\x84\xa3\xbe\x89\xa5\xc1\x82\xa4\xbd\x6e\x95\xaf\x7b\xa6\xbb\ \x7e\xac\xbd\x78\xa3\xb5\x5e\x82\x96\x4c\x6c\x86\x68\x8a\xa5\x86\ \xa8\xc3\x82\x9f\xb7\x51\x69\x7c\x17\x31\x3f\x2c\x4d\x5e\x70\x95\ \xad\x84\xa9\xc4\x75\x9d\xb3\x49\x72\x83\x6f\x96\xa9\x8d\xb4\xcb\ \x8d\xb6\xd2\x8a\xb5\xd4\x8a\xb5\xd0\x8a\xb1\xcb\x87\xa9\xc3\x81\ \xa4\xbd\x73\x98\xb2\x5f\x86\x9f\x4a\x75\x8e\x43\x6b\x88\x46\x6f\ \x8e\x4f\x76\x91\x5d\x81\x97\x70\x90\xa7\x86\xa6\xc2\x89\xad\xc8\ \x89\xaf\xc7\x8f\xb2\xca\x92\xb1\xca\x8e\xb0\xca\x87\xad\xc9\x86\ \xab\xc9\x8c\xab\xcc\x90\xac\xca\x8a\xa8\xc1\x7c\x99\xb1\x50\x6c\ \x81\x38\x56\x68\x84\xa5\xb9\x99\xb7\xcf\x00\x00\x00\x6a\x86\xbf\ \x7d\x98\xce\x8a\xab\xd9\x8a\xaf\xdb\x82\xaa\xd8\x76\xa1\xcf\x6b\ \x92\xc0\x64\x89\xb8\x60\x88\xb8\x56\x84\xb4\x54\x84\xb4\x5c\x8b\ \xb9\x62\x8e\xbb\x62\x8c\xb9\x65\x91\xbb\x69\x94\xbe\x76\xa0\xca\ \x82\xad\xd7\x7c\xac\xd6\x75\xa7\xd3\x76\xa7\xd4\x7d\xac\xd4\x7e\ \xaf\xd6\x7f\xb1\xda\x82\xaf\xdb\x84\xad\xd9\x84\xac\xd5\x7f\xa9\ \xcd\x7d\xaa\xcb\x7c\xa9\xc9\x81\xad\xcf\x83\xb0\xd4\x87\xb5\xdd\ \x86\xb5\xdc\x83\xb5\xd7\x82\xb1\xd2\x82\xb3\xd5\x84\xb5\xd9\x85\ \xb2\xd3\x6c\x94\xb1\x20\x44\x5e\x71\x8f\xa8\x40\x56\x6c\x1d\x36\ \x49\x76\x96\xaf\x87\xab\xca\x88\xb0\xd2\x7f\xac\xd0\x7d\xae\xd0\ \x84\xb5\xd5\x8a\xb8\xd8\x85\xb3\xd5\x81\xad\xcf\x85\xab\xce\x89\ \xac\xd1\x84\xaa\xce\x72\x99\xbb\x51\x78\x96\x49\x75\x92\x69\x98\ \xb8\x78\xaa\xc8\x7d\xad\xcd\x7c\xa9\xca\x79\xa8\xc5\x7a\xa9\xc9\ \x7e\xab\xcc\x81\xac\xce\x7e\xac\xcd\x7d\xae\xcb\x83\xb1\xcb\x7f\ \xb0\xc8\x7f\xb0\xca\x80\xb0\xce\x81\xb1\xcf\x87\xb3\xcd\x8d\xb6\ \xd1\x89\xb1\xd1\x84\xae\xd0\x85\xaf\xd4\x7f\xb0\xd2\x7d\xb0\xcf\ \x7f\xad\xca\x83\xaa\xc9\x84\xaf\xcf\x81\xb0\xce\x81\xaf\xcf\x84\ \xaf\xd1\x84\xb0\xd0\x85\xb1\xd2\x7e\xac\xcf\x7b\xad\xcd\x81\xb1\ \xd0\x80\xaf\xce\x7f\xae\xcd\x81\xad\xce\x85\xa9\xce\x84\xa9\xd0\ \x82\xab\xd0\x84\xae\xd1\x88\xaf\xd0\x8b\xb1\xd1\x8c\xb1\xd0\x88\ \xae\xcd\x85\xab\xc9\x81\xa9\xc6\x85\xab\xcb\x88\xae\xce\x8a\xb1\ \xd2\x87\xb4\xd2\x7e\xad\xc9\x7c\xa7\xc0\x7f\xa6\xbf\x88\xac\xc6\ \x8d\xac\xc7\x8e\xb0\xcb\x8b\xb0\xc9\x88\xb2\xc8\x82\xb3\xc5\x81\ \xb3\xc7\x83\xaf\xc7\x8a\xb0\xca\x89\xb0\xca\x8d\xb2\xcd\x8c\xad\ \xca\x89\xa8\xc2\x78\x9a\xae\x5d\x83\x97\x78\xa1\xb9\x89\xaf\xca\ \x84\xa8\xbe\x72\x93\xa4\x3d\x5f\x70\x7f\xa2\xb8\x8c\xb1\xcd\x89\ \xb0\xd0\x89\xb1\xce\x89\xae\xca\x7f\xa0\xbb\x59\x7b\x96\x52\x78\ \x92\x61\x8a\xa3\x70\x97\xb2\x7d\x9f\xbf\x7a\x9e\xbf\x72\x9b\xb6\ \x6a\x91\xa9\x5d\x7f\x99\x53\x71\x8f\x60\x7f\x9c\x82\xa3\xbb\x8c\ \xab\xbf\x8f\xae\xc3\x90\xb0\xc8\x8d\xae\xc9\x8f\xb0\xcc\x90\xb0\ \xcd\x94\xb3\xce\x92\xaf\xca\x8a\xa5\xc0\x7c\x97\xb4\x5e\x7b\x95\ \x7e\x9b\xb5\x96\xb4\xce\x00\x00\x00\x3f\x5a\x8d\x45\x5e\x8d\x51\ \x6d\x98\x56\x77\xa1\x5f\x84\xaf\x62\x89\xb6\x67\x89\xb6\x70\x90\ \xbf\x7f\xa3\xd4\x78\xa3\xd4\x74\xa3\xd4\x7a\xa9\xdb\x79\xa7\xda\ \x73\x9f\xd1\x6e\x9a\xca\x6b\x95\xc6\x67\x8f\xc2\x61\x86\xba\x59\ \x7f\xb5\x4d\x78\xad\x4a\x79\xad\x4f\x7f\xb0\x50\x81\xb3\x51\x7d\ \xb1\x50\x77\xad\x5b\x7f\xb4\x5f\x85\xb6\x66\x8d\xba\x69\x8f\xb9\ \x6b\x91\xbb\x73\x99\xc3\x7b\xa2\xcf\x7f\xa9\xd8\x7f\xab\xd6\x80\ \xad\xd2\x84\xb0\xd5\x83\xae\xd8\x84\xae\xdc\x86\xb2\xdb\x83\xaf\ \xd3\x4e\x77\x95\x33\x52\x6a\x30\x44\x57\x0f\x22\x32\x51\x6b\x7e\ \x7f\x9d\xb5\x8e\xaf\xcb\x85\xad\xcd\x83\xb1\xd0\x8a\xb8\xd5\x8e\ \xba\xd8\x8b\xb8\xd6\x88\xb6\xd2\x8c\xb5\xd4\x90\xb5\xd7\x90\xb3\ \xd9\x82\xac\xd1\x78\xa6\xca\x76\xa5\xc8\x7d\xab\xcd\x82\xb0\xd2\ \x83\xb2\xd3\x7e\xad\xcc\x7a\xaa\xc5\x7c\xab\xc9\x7c\xaa\xcc\x7f\ \xad\xd1\x7b\xac\xce\x79\xb0\xcb\x7e\xb1\xcb\x7c\xad\xcb\x81\xb0\ \xcf\x82\xb1\xd0\x86\xb3\xcf\x8f\xb7\xd1\x8e\xb3\xd0\x88\xaf\xcf\ \x86\xab\xcf\x89\xac\xd4\x85\xad\xd4\x80\xad\xce\x80\xac\xcb\x7f\ \xa9\xc7\x81\xaa\xc9\x7e\xab\xc9\x7f\xaa\xcb\x86\xac\xcf\x86\xaf\ \xcf\x81\xad\xcb\x7b\xaa\xca\x7b\xaa\xca\x7d\xaa\xca\x7d\xaa\xcb\ \x7d\xa8\xcc\x7a\xa1\xc5\x82\xa3\xca\x85\xa6\xcd\x84\xa5\xcd\x7d\ \xa3\xc9\x80\xa8\xcb\x7f\xaa\xca\x82\xad\xcc\x7e\xac\xcb\x7c\xa8\ \xc7\x78\x9f\xbf\x7c\xa1\xc0\x85\xa7\xc2\x87\xaa\xc6\x84\xaa\xca\ \x80\xa8\xc4\x83\xaa\xc3\x84\xa9\xc2\x86\xaa\xc4\x8e\xad\xc8\x90\ \xaf\xc9\x8b\xb0\xc9\x88\xb4\xc9\x87\xb7\xcc\x87\xb7\xcd\x8a\xb6\ \xce\x8e\xb6\xd0\x8f\xb3\xd1\x90\xb4\xd3\x8c\xb0\xd2\x8b\xb1\xcf\ \x8c\xb3\xcc\x8b\xb4\xcb\x8a\xb4\xcd\x89\xad\xc6\x84\xa3\xb9\x6d\ \x88\x99\x3e\x5b\x6c\x4f\x73\x87\x89\xaf\xc9\x8b\xb2\xd1\x8d\xb2\ \xd1\x8d\xb1\xcf\x88\xaa\xca\x82\xa8\xc4\x7c\xaa\xc3\x7a\xaa\xc1\ \x84\xac\xc7\x8c\xab\xcc\x87\xa9\xca\x80\xab\xc8\x81\xaa\xc5\x7e\ \xa3\xc1\x7f\x9f\xc0\x77\x92\xb3\x59\x76\x90\x6a\x86\x9c\x8a\xa6\ \xb9\x93\xae\xc5\x93\xb0\xca\x93\xb1\xcc\x8d\xb0\xca\x8f\xb1\xcb\ \x93\xb2\xd0\x97\xb0\xd1\x93\xac\xce\x8f\xa7\xca\x92\xab\xce\x99\ \xb8\xd8\x00\x00\x00\x88\xa2\xc5\x71\x88\xa7\x6e\x8a\xa7\x7c\x9f\ \xbe\x80\xa7\xcb\x78\xa0\xc7\x79\x9b\xc6\x70\x8f\xbd\x65\x89\xb9\ \x59\x84\xb5\x4e\x7b\xac\x49\x76\xa7\x45\x71\xa3\x4d\x79\xaa\x51\ \x7d\xaf\x54\x7f\xb2\x62\x89\xbc\x6b\x8f\xc5\x6c\x92\xc6\x69\x91\ \xc4\x67\x95\xc7\x6e\xa0\xcf\x6d\x9f\xd1\x6e\x98\xce\x72\x95\xce\ \x6a\x8c\xc8\x5e\x85\xbd\x54\x7b\xaf\x4d\x6f\xa2\x40\x60\x96\x39\ \x5c\x92\x41\x67\x9d\x47\x6d\xa2\x4a\x6f\xa2\x48\x72\x9e\x4c\x79\ \xa3\x4f\x7a\xaa\x51\x79\xae\x6f\x98\xca\x85\xb2\xda\x7e\xa6\xc7\ \x3e\x59\x73\x0e\x21\x34\x0c\x1f\x30\x38\x4f\x63\x49\x62\x7a\x48\ \x65\x7c\x82\xa5\xbd\x8e\xb7\xd1\x92\xbe\xd8\x96\xbe\xdc\x94\xbc\ \xd9\x94\xbd\xd8\x94\xc0\xd9\x94\xbc\xdb\x91\xb8\xdb\x89\xb4\xd9\ \x84\xb6\xda\x82\xb5\xd9\x89\xb6\xdb\x89\xb5\xd8\x86\xb5\xd6\x83\ \xb1\xd2\x7e\xb0\xd1\x7f\xb1\xd2\x7e\xaf\xd1\x7b\xab\xd0\x7a\xae\ \xd0\x7c\xb1\xce\x81\xb3\xcf\x7e\xad\xcd\x80\xad\xd1\x86\xb3\xd4\ \x8e\xb8\xd2\x94\xb9\xd4\x8f\xb6\xd3\x89\xb0\xd0\x89\xae\xd2\x8f\ \xb1\xd7\x89\xae\xd5\x83\xad\xd1\x80\xac\xcc\x84\xad\xcd\x86\xac\ \xcd\x84\xaa\xca\x83\xac\xcc\x86\xad\xd0\x85\xae\xce\x83\xb0\xcd\ \x80\xad\xcc\x7f\xab\xc9\x81\xad\xcd\x82\xa9\xcd\x83\xa9\xcf\x82\ \xa7\xcd\x84\xa6\xcd\x86\xaa\xcd\x81\xa9\xcb\x7d\xa8\xc9\x7a\xa6\ \xc5\x77\xa7\xc5\x79\xa8\xc8\x75\xa6\xc5\x71\xa2\xc0\x72\x9d\xba\ \x71\x94\xad\x5f\x7d\x92\x4f\x6d\x84\x4a\x68\x85\x4e\x6f\x89\x60\ \x82\x99\x7a\x9d\xb3\x83\xa4\xbd\x87\xa4\xbf\x86\xa4\xc0\x85\xac\ \xc5\x80\xb0\xc5\x82\xb3\xc9\x89\xb7\xcf\x8d\xb9\xd1\x8e\xb5\xd0\ \x91\xb5\xd4\x8f\xb2\xd4\x8d\xb3\xd5\x8e\xb3\xd1\x8d\xb5\xcf\x8c\ \xb5\xce\x8a\xb3\xcc\x83\xa3\xbd\x5f\x78\x8e\x2a\x41\x54\x25\x42\ \x55\x31\x55\x6b\x82\xab\xc5\x89\xb3\xd0\x8e\xb6\xd1\x91\xb6\xd1\ \x8c\xb2\xd1\x89\xb3\xd3\x7e\xb1\xcb\x7d\xb1\xc8\x87\xb1\xcc\x8f\ \xaf\xcf\x8e\xb0\xd0\x89\xb0\xd0\x8a\xaf\xcf\x87\xa9\xcb\x8a\xa5\ \xcc\x8f\xa8\xcf\x8b\xa6\xc7\x65\x80\x9b\x52\x6c\x81\x88\xa0\xb6\ \x8d\xa9\xc1\x8f\xac\xc7\x8d\xaf\xcb\x8d\xb2\xce\x93\xb3\xd2\x9a\ \xb4\xd3\x9b\xb3\xd6\x9b\xb2\xd8\x9d\xb6\xdb\x9a\xba\xdd\x00\x00\ \x00\x51\x68\x7e\x14\x28\x39\x39\x55\x64\x49\x6b\x7d\x4c\x6f\x85\ \x81\xa4\xbe\x90\xb1\xd3\x93\xb4\xda\x93\xb8\xe0\x8c\xb7\xde\x86\ \xaf\xd4\x83\xad\xd0\x87\xb1\xd7\x8b\xb5\xdd\x8b\xb3\xda\x81\xa9\ \xcf\x76\xa0\xca\x6c\x98\xc4\x5e\x8b\xb7\x4e\x78\xa5\x4a\x75\x9f\ \x51\x7e\xa7\x4a\x78\xa2\x4a\x72\xa2\x4f\x73\xa8\x48\x6f\xa6\x44\ \x6c\x9f\x41\x65\x98\x3f\x5d\x91\x3b\x5c\x92\x40\x69\x9d\x63\x90\ \xbe\x7a\xa5\xd1\x84\xac\xd7\x82\xad\xd6\x7f\xaf\xd5\x80\xad\xd8\ \x82\xab\xda\x88\xb0\xdf\x8a\xb5\xde\x8b\xb3\xd5\x70\x8d\xaa\x17\ \x2f\x43\x3a\x54\x69\x83\xa0\xba\x89\xa5\xc0\x4d\x66\x7e\x36\x53\ \x66\x89\xae\xc3\x96\xc1\xd9\x9a\xc3\xdf\x98\xbf\xdd\x99\xc2\xdc\ \x95\xc0\xda\x99\xbd\xdc\x93\xb8\xda\x91\xba\xde\x8e\xbb\xe0\x89\ \xb9\xde\x85\xb8\xda\x84\xb6\xd8\x87\xb6\xd7\x8a\xb8\xdb\x89\xb6\ \xdc\x83\xb5\xd8\x83\xb4\xd8\x85\xb3\xd7\x84\xb1\xd5\x82\xb2\xd2\ \x80\xaf\xcf\x80\xaf\xcf\x82\xaf\xd3\x86\xb5\xd6\x8f\xba\xd6\x93\ \xbc\xd7\x8d\xb7\xd5\x8a\xb4\xd5\x8d\xb6\xd7\x92\xb8\xdc\x8f\xb5\ \xdb\x87\xb3\xd4\x8a\xb6\xd5\x8f\xb6\xd6\x90\xb3\xd4\x8c\xb3\xd1\ \x88\xb1\xcf\x8b\xb1\xd0\x8a\xb3\xd2\x88\xb3\xd3\x87\xb0\xd0\x86\ \xae\xce\x80\xab\xcb\x82\xae\xcc\x88\xaf\xd0\x8b\xb1\xd4\x89\xb2\ \xd2\x8a\xb4\xd1\x84\xb2\xcd\x7f\xae\xc9\x7d\xaa\xc5\x7b\xa8\xc3\ \x7d\xab\xc9\x7b\xa7\xc8\x76\xa1\xc1\x6f\x98\xb7\x54\x73\x8c\x22\ \x3e\x50\x26\x45\x5b\x57\x76\x92\x61\x82\x9d\x55\x77\x91\x3f\x5f\ \x76\x5c\x77\x90\x7c\x93\xaf\x71\x8d\xaa\x75\x9d\xb6\x7b\xae\xc2\ \x7d\xb0\xc5\x84\xb2\xcb\x8a\xb4\xcf\x8b\xb1\xcf\x8f\xb0\xd2\x90\ \xb1\xd3\x8b\xae\xcd\x8a\xae\xcb\x8a\xb0\xcc\x86\xb0\xc9\x88\xae\ \xc9\x74\x91\xab\x36\x4b\x62\x2e\x42\x57\x38\x52\x69\x2a\x4c\x64\ \x79\xa1\xbc\x8b\xb5\xcf\x90\xb9\xd2\x8f\xb8\xd0\x8a\xb5\xd1\x86\ \xb4\xd3\x84\xb4\xd2\x87\xb4\xd1\x8b\xb3\xd2\x8b\xb0\xcd\x8d\xb1\ \xcf\x8f\xb0\xd1\x8e\xad\xd0\x8a\xa9\xcd\x90\xa8\xd1\x93\xab\xd2\ \x8e\xa9\xc9\x87\xa5\xbe\x61\x7b\x8f\x44\x5d\x6e\x86\xa0\xb3\x8c\ \xa6\xc1\x91\xab\xca\x93\xb3\xd0\x99\xb8\xd6\x9c\xba\xd9\x9e\xb8\ \xdc\x9c\xb5\xdc\x99\xb7\xda\x94\xb6\xd6\x00\x00\x00\x23\x38\x48\ \x0e\x20\x2c\x5e\x77\x83\x78\x94\xa3\x39\x55\x64\x1a\x33\x45\x50\ \x6b\x83\x7b\x9b\xb9\x8b\xb4\xd1\x8e\xb8\xd4\x7b\xa0\xbb\x42\x61\ \x7a\x78\x99\xb3\x8b\xb0\xcc\x87\xaa\xc4\x64\x84\x9c\x7d\xa3\xbc\ \x88\xb6\xd5\x86\xb4\xd4\x7e\xa6\xc3\x56\x75\x90\x38\x58\x73\x51\ \x71\x8f\x76\x9a\xba\x86\xac\xd2\x83\xac\xd7\x80\xa8\xd1\x7d\x9f\ \xc7\x79\x99\xc1\x7f\xa3\xcb\x83\xad\xd3\x8a\xb4\xd6\x8d\xb3\xd1\ \x8d\xb1\xcd\x88\xb0\xcc\x88\xb5\xd1\x88\xb6\xd6\x8d\xb6\xda\x8f\ \xb6\xdd\x8c\xb4\xd9\x8b\xb2\xd3\x80\xa1\xbe\x45\x62\x7a\x45\x62\ \x7a\x86\xa5\xc3\x93\xaf\xce\x72\x8a\xa2\x1c\x33\x44\x69\x8a\x9a\ \x95\xbe\xd4\x9a\xc5\xe1\x96\xc1\xdd\x95\xc0\xdb\x95\xbf\xda\x98\ \xbe\xdc\x97\xbc\xde\x98\xbe\xe1\x92\xbb\xde\x8c\xb9\xdb\x84\xb7\ \xd7\x83\xb6\xd6\x89\xb7\xd8\x8b\xb8\xd9\x8a\xb8\xdc\x88\xb6\xdb\ \x86\xb4\xd7\x87\xb2\xd3\x88\xb1\xd2\x83\xb1\xd1\x7f\xae\xcd\x83\ \xb1\xd0\x84\xb3\xd4\x89\xb8\xda\x8f\xbd\xdc\x91\xbe\xdb\x8e\xba\ \xda\x8c\xb8\xd7\x8f\xbb\xd8\x92\xbc\xdb\x94\xbd\xde\x92\xbd\xdb\ \x94\xbd\xda\x99\xbd\xdc\x97\xbc\xd9\x92\xb9\xd6\x93\xb9\xd5\x93\ \xb8\xd3\x8e\xb6\xd4\x8d\xb6\xd6\x8b\xb1\xd3\x8a\xb1\xd0\x84\xb1\ \xcb\x85\xb2\xca\x8f\xb6\xd2\x93\xb7\xd8\x92\xb9\xd7\x91\xbd\xd6\ \x8a\xba\xd2\x88\xb9\xd2\x86\xb1\xd0\x87\xaf\xcf\x86\xaf\xcf\x86\ \xac\xcd\x82\xa9\xc9\x77\xa0\xbe\x5b\x7f\x96\x37\x55\x6d\x54\x76\ \x91\x6f\x94\xb3\x73\x99\xb7\x77\x9b\xb8\x6e\x8b\xa5\x44\x5b\x72\ \x4e\x65\x7a\x70\x8e\xa5\x77\x9f\xb6\x7c\xad\xc2\x7f\xaf\xc5\x82\ \xae\xc9\x86\xaf\xcb\x8e\xaf\xce\x92\xb1\xd2\x8e\xae\xcf\x88\xaa\ \xcb\x85\xa8\xc8\x86\xa9\xca\x87\xab\xc9\x83\xa7\xc4\x66\x83\x9e\ \x28\x41\x58\x27\x40\x53\x25\x41\x57\x3e\x61\x79\x7f\xa7\xc1\x8a\ \xb3\xcc\x90\xb9\xd1\x8e\xb7\xcf\x89\xb4\xcf\x84\xb1\xce\x85\xaf\ \xce\x8d\xb2\xd2\x90\xb1\xd3\x87\xac\xca\x88\xb0\xca\x89\xae\xca\ \x8a\xaa\xcc\x8a\xaa\xcf\x8f\xa9\xd2\x94\xad\xd2\x92\xad\xca\x8d\ \xaa\xc0\x81\x99\xb0\x46\x5e\x70\x47\x60\x71\x87\xa2\xb8\x94\xaf\ \xca\x97\xb5\xd0\x98\xba\xd4\x9a\xbb\xd8\x9d\xba\xdc\x9a\xb6\xd9\ \x95\xb6\xd5\x8f\xb4\xd1\x00\x00\x00\x2b\x41\x53\x08\x19\x29\x27\ \x3c\x4b\x2d\x46\x57\x0b\x21\x30\x05\x18\x28\x0f\x24\x39\x25\x43\ \x5b\x65\x8c\xa2\x8f\xb8\xcf\x8f\xb4\xcb\x47\x63\x78\x2a\x44\x58\ \x6c\x8a\x9f\x83\xa1\xb4\x2c\x47\x55\x3a\x5a\x6a\x87\xad\xc4\x84\ \xab\xc4\x59\x77\x8c\x1d\x32\x44\x4f\x64\x76\x73\x89\xa0\x33\x4d\ \x63\x60\x80\x97\x76\x99\xb3\x5d\x7c\x96\x38\x57\x6e\x40\x61\x7b\ \x55\x7a\x95\x74\x98\xb3\x7f\x9d\xb4\x53\x6e\x80\x2e\x4d\x5e\x46\ \x6c\x7e\x67\x91\xa9\x8a\xb2\xcf\x90\xb8\xd9\x8d\xb6\xd7\x8d\xb3\ \xd4\x83\xa6\xc4\x82\xa1\xbc\x8a\xa8\xc2\x68\x88\xa4\x55\x77\x97\ \x8d\xad\xce\x80\x99\xb2\x0c\x26\x34\x3a\x5c\x69\x8b\xb4\xc9\x94\ \xbe\xda\x95\xbb\xd7\x92\xb8\xd1\x93\xba\xd1\x94\xbd\xd9\x98\xbf\ \xdf\x97\xba\xda\x93\xb4\xd3\x89\xaf\xce\x81\xaf\xcd\x85\xb4\xd4\ \x89\xb7\xd7\x8d\xb8\xd8\x8d\xb7\xd9\x8a\xb4\xd7\x86\xaf\xcf\x82\ \xa8\xc6\x7d\xa2\xbf\x7e\xa8\xc5\x7f\xae\xcc\x83\xb2\xcf\x8b\xb5\ \xd5\x8f\xbc\xdc\x91\xc0\xde\x90\xbf\xdd\x8f\xbe\xdd\x8f\xbe\xdb\ \x90\xbe\xd8\x95\xc0\xda\x97\xc0\xdd\x97\xbf\xde\x99\xc0\xdf\x9d\ \xc2\xe1\x95\xbe\xdd\x99\xbe\xde\x97\xbb\xd9\x91\xb9\xd4\x8c\xb8\ \xd3\x8b\xb4\xd4\x8c\xb4\xd4\x89\xb2\xcf\x87\xb2\xc9\x8c\xb5\xcb\ \x93\xb8\xd3\x96\xb8\xd8\x97\xb9\xd8\x94\xbb\xd5\x8e\xb9\xd5\x8b\ \xb8\xd8\x8b\xb6\xd9\x88\xb4\xd6\x85\xb3\xd2\x83\xb1\xcf\x85\xb1\ \xce\x81\xb0\xc9\x76\xa6\xbb\x72\x9d\xb7\x68\x92\xaf\x70\x9b\xbb\ \x77\xa2\xc2\x7d\xa3\xc2\x78\x97\xb3\x62\x78\x91\x2b\x43\x57\x5e\ \x7f\x91\x84\xac\xbf\x86\xb2\xc7\x8a\xb3\xcb\x89\xaf\xcb\x84\xac\ \xc8\x8f\xb0\xcf\x92\xb2\xd3\x8d\xaf\xcf\x83\xa8\xc7\x84\xa9\xca\ \x85\xaa\xcc\x86\xab\xca\x85\xa9\xc6\x6e\x8f\xad\x4c\x69\x86\x2a\ \x4a\x62\x39\x5c\x74\x6d\x92\xac\x7f\xa8\xc1\x86\xae\xc7\x8b\xb1\ \xcb\x8c\xb1\xce\x87\xaf\xcd\x84\xad\xcc\x86\xad\xcc\x8e\xaf\xce\ \x91\xaf\xd1\x8c\xae\xce\x84\xac\xc6\x85\xad\xc9\x86\xa9\xc8\x84\ \xa6\xcb\x88\xa8\xcf\x8f\xad\xcf\x92\xaf\xca\x91\xad\xc6\x8c\xa3\ \xbe\x6a\x7f\x98\x2b\x42\x55\x66\x84\x96\x94\xb5\xcc\x98\xb9\xd3\ \x9b\xbc\xd5\x9d\xbb\xd7\xa0\xbb\xda\x9d\xb9\xd9\x91\xb5\xd3\x8c\ \xb5\xd1\x00\x00\x00\x73\x8d\xa7\x13\x27\x3c\x34\x4d\x5e\x6b\x8c\ \x9d\x33\x50\x62\x18\x30\x42\x56\x6e\x83\x77\x98\xae\x3d\x62\x7a\ \x6e\x94\xae\x97\xbc\xd7\x7d\x9b\xb1\x1b\x35\x46\x58\x74\x84\x6a\ \x89\x9a\x40\x5e\x6f\x2f\x4d\x61\x53\x72\x8b\x52\x71\x8b\x32\x4e\ \x64\x17\x30\x42\x4c\x64\x76\x5a\x6f\x81\x1f\x34\x45\x20\x3a\x49\ \x30\x4c\x5d\x19\x31\x42\x25\x3f\x4e\x6d\x8e\xa1\x83\xad\xc3\x7d\ \xa2\xb8\x58\x70\x83\x17\x2c\x3a\x27\x44\x51\x75\x9b\xad\x76\x9f\ \xb6\x63\x8c\xa8\x76\xa3\xc2\x8a\xb8\xd6\x87\xaf\xcd\x5b\x7b\x96\ \x35\x53\x6a\x5b\x7c\x92\x82\xa5\xc0\x81\xa7\xc8\x85\xa7\xc8\x74\ \x8e\xa7\x12\x2c\x3c\x32\x54\x65\x84\xac\xc4\x8e\xb4\xd0\x87\xa6\ \xbe\x5b\x7a\x8c\x64\x87\x98\x82\xa9\xbf\x8b\xaf\xc9\x84\xa1\xba\ \x66\x80\x98\x64\x83\x9e\x79\xa1\xbd\x83\xaf\xcc\x8a\xb5\xd3\x90\ \xb7\xd7\x8e\xb3\xd6\x8a\xb1\xd3\x84\xae\xcb\x71\x97\xb2\x3a\x5f\ \x76\x61\x8c\xa4\x7a\xaa\xc4\x84\xb2\xd1\x8b\xb8\xd5\x90\xbe\xdc\ \x92\xc0\xdf\x93\xc1\xdf\x92\xbe\xdc\x91\xc0\xda\x93\xc3\xd9\x99\ \xc6\xdd\x9a\xc4\xde\x93\xbd\xdb\x91\xbd\xdc\x94\xbe\xdd\x93\xbe\ \xde\x95\xbd\xdc\x92\xbb\xd5\x88\xb6\xce\x87\xb8\xcf\x8b\xb9\xd3\ \x8c\xb7\xd1\x88\xb3\xcc\x8a\xb4\xcb\x92\xb8\xd2\x95\xb9\xd7\x96\ \xb9\xd9\x9c\xbb\xdb\x99\xbb\xd9\x94\xb9\xda\x91\xb9\xdc\x8c\xb7\ \xdb\x87\xb6\xd7\x86\xb5\xd3\x82\xb6\xcf\x83\xb9\xd0\x85\xba\xcf\ \x83\xb9\xce\x81\xb6\xce\x81\xb3\xce\x7f\xaf\xca\x7b\xaa\xc8\x79\ \xa1\xbf\x70\x90\xab\x5d\x78\x8f\x2c\x49\x5c\x56\x7b\x8f\x8c\xb4\ \xcb\x8f\xb8\xd0\x90\xb6\xcf\x8e\xb3\xcd\x8b\xb0\xcc\x92\xb5\xd2\ \x92\xb5\xd2\x90\xb5\xd0\x88\xb0\xcc\x83\xac\xcd\x83\xae\xce\x85\ \xad\xcc\x88\xad\xcb\x82\xa5\xc5\x7b\x9c\xbe\x6d\x91\xb0\x74\x9b\ \xb7\x7f\xa4\xc0\x81\xa7\xc1\x86\xac\xc6\x87\xac\xc6\x88\xab\xc8\ \x89\xad\xcb\x88\xae\xcd\x87\xae\xcb\x8c\xae\xcb\x8d\xae\xcf\x85\ \xaa\xcc\x7f\xa9\xc6\x7e\xa7\xc6\x7f\xa5\xc7\x7d\xa2\xc7\x7e\xa4\ \xc7\x84\xab\xca\x89\xb0\xca\x8c\xae\xc8\x8f\xa8\xc7\x7a\x8c\xad\ \x36\x4b\x63\x3c\x5c\x6d\x8d\xb2\xc8\x97\xbd\xd5\x9b\xbc\xd7\x9f\ \xbc\xd8\xa2\xbc\xd9\x9d\xb9\xd8\x93\xb7\xd5\x8c\xb5\xd2\x00\x00\ \x00\x8c\xac\xca\x3b\x56\x6b\x2b\x4b\x5b\x83\xab\xbc\x87\xac\xc1\ \x3b\x58\x6e\x44\x5f\x74\x8a\xad\xc5\x8a\xaf\xcb\x4a\x6e\x8c\x6e\ \x93\xae\x91\xb2\xc8\x39\x56\x67\x4c\x6c\x7d\x93\xb6\xc9\x91\xb5\ \xcd\x8b\xae\xca\x7d\x9f\xbc\x7d\x9e\xbd\x78\x9c\xb8\x6b\x8f\xa8\ \x5b\x7b\x93\x48\x66\x7b\x3a\x5a\x6c\x51\x75\x86\x4e\x6d\x7e\x16\ \x30\x3f\x25\x3f\x4b\x4a\x6e\x7e\x67\x95\xaa\x7f\xa5\xb8\x56\x6e\ \x7e\x0c\x22\x30\x28\x47\x56\x45\x6c\x7f\x81\xac\xc2\x7d\xad\xc5\ \x80\xb4\xcf\x84\xb5\xd0\x83\xaf\xcb\x6e\x92\xae\x37\x58\x71\x29\ \x4c\x62\x5a\x7f\x97\x85\xab\xc9\x85\xa3\xc3\x51\x67\x80\x10\x2a\ \x3d\x3a\x5e\x73\x6e\x99\xb4\x62\x8a\xa6\x48\x69\x7f\x1a\x39\x48\ \x32\x53\x64\x55\x7b\x90\x5a\x7d\x95\x34\x50\x65\x1d\x38\x4a\x46\ \x67\x7f\x56\x7e\x99\x63\x92\xae\x84\xb1\xce\x8a\xb2\xd3\x8a\xb2\ \xd4\x83\xb0\xd1\x7d\xaf\xcd\x6f\x9b\xb8\x3a\x5d\x75\x2c\x53\x6b\ \x71\x9d\xb9\x84\xb3\xd2\x8b\xba\xd9\x8e\xbc\xdc\x91\xbb\xdb\x93\ \xbc\xdb\x92\xba\xd6\x95\xbe\xd5\x93\xbd\xd3\x96\xc1\xd6\x95\xbe\ \xd7\x8b\xb6\xce\x83\xae\xc6\x89\xb2\xcb\x91\xb8\xd5\x92\xba\xd6\ \x8a\xb6\xce\x81\xaf\xc5\x82\xb2\xc7\x87\xb5\xcc\x8a\xb3\xc9\x89\ \xb0\xc6\x8b\xb2\xc5\x90\xb7\xce\x96\xbb\xd6\x9d\xbe\xdc\x9f\xbe\ \xdc\x9b\xb9\xd8\x98\xba\xdb\x94\xba\xdd\x8d\xb9\xdc\x8b\xb9\xd9\ \x8b\xba\xd7\x89\xbb\xd3\x83\xb8\xcf\x87\xbc\xd3\x86\xbc\xd3\x82\ \xbb\xd1\x82\xb9\xd1\x85\xb4\xd1\x7d\xab\xc9\x6c\x95\xb1\x65\x87\ \xa0\x57\x77\x8d\x2f\x53\x68\x67\x94\xad\x88\xb4\xcf\x91\xb8\xd2\ \x93\xb7\xd2\x91\xb6\xd1\x90\xb5\xd1\x92\xb7\xd3\x93\xb8\xd4\x92\ \xb8\xd3\x8e\xb6\xd2\x8b\xb5\xd2\x86\xb2\xcf\x86\xb0\xcf\x87\xae\ \xce\x88\xab\xcc\x87\xa8\xca\x86\xaa\xca\x84\xab\xc7\x83\xa8\xc4\ \x83\xa7\xc4\x83\xa8\xc5\x85\xab\xc7\x86\xac\xca\x89\xae\xcd\x89\ \xb0\xcc\x89\xb1\xca\x86\xad\xc8\x83\xaa\xc8\x7c\xa5\xc4\x7b\xa8\ \xc5\x7a\xa5\xc4\x7a\xa2\xc5\x7b\xa1\xc4\x7e\xa3\xc5\x7f\xa8\xc5\ \x84\xaf\xc8\x89\xb0\xc9\x8d\xaa\xc8\x7c\x91\xb0\x37\x4b\x60\x2c\ \x4a\x59\x86\xac\xbf\x99\xbb\xd5\x9c\xbb\xd8\x9d\xbc\xd9\x9d\xbb\ \xd7\x99\xb6\xd4\x94\xb3\xd4\x8e\xb2\xd2\x00\x00\x00\x8b\xb1\xd1\ \x76\x98\xaf\x20\x43\x52\x6c\x93\xa3\x84\xaa\xc0\x6e\x8d\xa2\x25\ \x41\x55\x6b\x8e\xa7\x8c\xb2\xd2\x83\xa9\xc9\x3e\x63\x7f\x74\x99\ \xb0\x5c\x7d\x8e\x24\x42\x54\x8a\xac\xc3\x95\xbb\xd7\x8f\xb9\xd8\ \x8a\xb4\xd4\x87\xb0\xd0\x88\xb5\xd4\x86\xb6\xd4\x87\xb4\xd2\x87\ \xb1\xce\x80\xb1\xc9\x7c\xb2\xc9\x78\xa7\xbe\x51\x74\x87\x15\x36\ \x43\x6f\x98\xa7\x75\xa4\xb7\x54\x7a\x8a\x25\x3c\x49\x0b\x22\x2f\ \x61\x7f\x90\x3f\x62\x74\x57\x7f\x94\x7f\xb0\xc7\x84\xba\xd4\x84\ \xb5\xd2\x84\xb0\xcd\x80\xa9\xc8\x80\xa9\xc7\x6f\x96\xb1\x54\x7a\ \x93\x65\x89\xa7\x6b\x8b\xa9\x2f\x4a\x64\x37\x55\x6c\x75\x9c\xb5\ \x7d\xad\xc9\x80\xb0\xcc\x6b\x95\xae\x3d\x63\x78\x28\x50\x64\x6b\ \x98\xaf\x89\xb4\xce\x69\x90\xa8\x2c\x53\x67\x3b\x65\x7f\x75\xa4\ \xc3\x7e\xb0\xd0\x81\xb2\xd2\x87\xb3\xd4\x86\xb1\xd2\x85\xb5\xd5\ \x80\xb2\xd1\x7a\xa5\xc2\x64\x87\x9f\x5c\x82\x99\x7a\xa7\xc2\x85\ \xb4\xd3\x8c\xbb\xda\x8b\xb8\xd7\x81\xab\xca\x83\xa9\xc9\x8b\xaf\ \xca\x68\x88\x9f\x47\x67\x7a\x6f\x91\xa6\x85\xaa\xbf\x6b\x8f\xa3\ \x30\x55\x66\x4d\x70\x82\x86\xa9\xc2\x8d\xb2\xcf\x77\x9d\xb5\x5a\ \x7e\x92\x6c\x93\xa6\x84\xac\xc2\x7e\xa1\xb8\x6f\x8e\x9f\x71\x90\ \x9f\x82\xa6\xb8\x97\xbc\xd1\x9a\xbb\xd4\x9f\xbc\xd5\x9d\xb8\xd5\ \x9b\xba\xd9\x96\xba\xda\x92\xba\xda\x93\xbb\xdb\x92\xba\xda\x8e\ \xbb\xd7\x8c\xbc\xd8\x8b\xbc\xd7\x8a\xbd\xd4\x85\xbc\xd3\x87\xbc\ \xd6\x88\xb8\xd6\x86\xb1\xd0\x80\xa8\xc7\x6a\x8f\xab\x51\x77\x92\ \x62\x8e\xa8\x80\xb3\xd0\x86\xb8\xd7\x8d\xba\xd7\x94\xba\xd6\x94\ \xb9\xd5\x93\xb8\xd4\x95\xba\xd6\x94\xba\xd3\x97\xbd\xd6\x90\xba\ \xd3\x8b\xb7\xcf\x8a\xb7\xd0\x85\xb4\xce\x84\xb0\xcc\x89\xae\xcd\ \x8d\xb1\xce\x8f\xb4\xd0\x8f\xb5\xce\x8b\xb0\xcb\x8c\xb0\xcf\x8b\ \xb0\xd0\x88\xb2\xd0\x85\xb1\xcf\x85\xaf\xcf\x87\xaf\xcc\x85\xaf\ \xc8\x84\xb0\xc8\x80\xab\xc6\x7d\xa7\xc4\x7d\xa4\xc4\x7a\xa3\xc4\ \x7d\xa6\xc6\x7d\xa6\xc6\x82\xa8\xc7\x85\xac\xc8\x89\xb2\xcb\x8d\ \xb3\xcc\x8a\xaa\xc4\x76\x8c\xa4\x2f\x42\x54\x26\x43\x52\x83\xa6\ \xb9\x99\xb7\xd2\x9e\xb9\xd8\x9c\xbb\xd8\x98\xbb\xd7\x98\xb6\xd5\ \x94\xb2\xd1\x8f\xb2\xce\x00\x00\x00\x8a\xb3\xd5\x8c\xb2\xcf\x64\ \x89\xa1\x30\x54\x69\x6a\x89\x9f\x47\x63\x76\x26\x43\x56\x79\x9d\ \xb5\x8d\xb6\xd1\x8b\xb4\xd0\x65\x8e\xa6\x31\x56\x6c\x69\x88\x9b\ \x1c\x36\x4a\x75\x93\xab\x97\xbc\xd8\x92\xb9\xd7\x8f\xb7\xd1\x89\ \xb5\xd2\x88\xb8\xd8\x80\xb6\xd4\x81\xb2\xd3\x82\xb0\xd2\x7d\xb0\ \xd1\x76\xb2\xd0\x76\xaf\xca\x78\xa5\xbb\x42\x68\x7c\x32\x5b\x6e\ \x6b\x96\xab\x51\x70\x84\x10\x25\x35\x18\x2e\x3e\x59\x72\x84\x3c\ \x58\x6c\x34\x58\x6c\x7d\xad\xc4\x83\xb6\xd2\x81\xb1\xd0\x83\xb0\ \xd1\x83\xb0\xd1\x81\xaf\xcf\x82\xae\xcc\x87\xb1\xce\x80\xa7\xc8\ \x6b\x91\xb2\x52\x79\x95\x47\x6d\x88\x77\xa1\xbb\x85\xb4\xd0\x8a\ \xbb\xd9\x88\xb6\xd4\x87\xb3\xcd\x80\xae\xc6\x79\xac\xc4\x83\xb8\ \xd3\x81\xb6\xd1\x7e\xb3\xcd\x7e\xae\xce\x81\xb1\xd5\x83\xb6\xd8\ \x83\xb7\xd8\x82\xb3\xd5\x88\xb3\xd8\x87\xb3\xd6\x88\xb1\xd1\x74\ \x97\xb1\x15\x33\x49\x2c\x50\x64\x87\xb2\xcc\x89\xb8\xd6\x90\xbe\ \xdd\x8e\xb8\xd6\x7e\xa8\xc5\x5e\x88\xa3\x66\x8b\xa5\x5a\x77\x8d\ \x1d\x35\x4a\x23\x3f\x54\x46\x64\x7b\x3b\x58\x6a\x12\x30\x3c\x32\ \x51\x60\x63\x86\x9d\x6e\x90\xad\x56\x73\x8c\x0f\x28\x3b\x28\x44\ \x57\x60\x80\x97\x6c\x8c\xa0\x35\x51\x60\x21\x3e\x4a\x52\x73\x84\ \x66\x86\x9b\x7a\x98\xaf\x75\x8e\xa1\x63\x7d\x93\x6f\x8e\xa7\x83\ \xa7\xc2\x90\xb4\xd0\x91\xb6\xd2\x95\xb8\xd4\x93\xba\xda\x92\xbc\ \xdc\x93\xbd\xdb\x8c\xbb\xd3\x88\xbb\xd1\x8a\xbc\xd3\x8d\xb9\xd2\ \x8e\xb7\xd3\x8d\xb3\xcf\x87\xab\xca\x87\xae\xcd\x8b\xb5\xd4\x8b\ \xba\xd8\x8c\xbc\xda\x8f\xbb\xd9\x90\xb9\xd5\x93\xb8\xd2\x97\xb7\ \xd4\x96\xb8\xd2\x99\xbe\xd6\x94\xbc\xd2\x8f\xb9\xce\x8d\xb8\xcc\ \x89\xb8\xcd\x84\xb5\xca\x85\xb5\xcc\x88\xb3\xcc\x8c\xb2\xcc\x91\ \xb7\xcf\x95\xbb\xd2\x93\xb8\xd4\x94\xb7\xd6\x95\xb7\xd8\x90\xb6\ \xd6\x89\xb2\xd2\x86\xae\xce\x85\xac\xcb\x81\xaa\xc8\x7f\xad\xc8\ \x7c\xa9\xc4\x7c\xa3\xc2\x7b\x9e\xc0\x79\x9e\xbd\x7f\xa6\xc3\x81\ \xac\xc5\x88\xb1\xc9\x8c\xb1\xcd\x91\xb4\xcf\x8f\xaf\xc9\x8a\xa5\ \xbd\x6b\x80\x91\x29\x3c\x4c\x33\x50\x61\x83\xa5\xb9\x99\xb5\xd1\ \x9b\xb4\xd5\x98\xb7\xd5\x94\xb7\xd4\x95\xb4\xd1\x94\xb3\xd0\x8f\ \xb2\xcf\x00\x00\x00\x88\xb2\xd5\x87\xb2\xd3\x81\xad\xcd\x6b\x92\ \xae\x31\x53\x6a\x20\x3f\x54\x5e\x80\x96\x85\xae\xc9\x85\xb4\xcf\ \x85\xb4\xce\x7d\xa9\xc0\x2f\x53\x68\x42\x5a\x6e\x1a\x30\x42\x65\ \x81\x96\x92\xb8\xd2\x90\xba\xd3\x8f\xb8\xd1\x8d\xb8\xd2\x88\xb7\ \xd7\x81\xb3\xd5\x82\xb0\xd4\x80\xac\xd2\x7d\xaf\xd1\x7c\xb4\xd4\ \x77\xb0\xce\x76\xa9\xc6\x77\xa5\xc2\x43\x6d\x87\x34\x59\x71\x35\ \x51\x67\x2c\x41\x5a\x41\x56\x6f\x35\x4d\x63\x2e\x4a\x5e\x4d\x73\ \x8a\x7f\xac\xc7\x7f\xaf\xcf\x7c\xad\xcd\x80\xaf\xcf\x7f\xb2\xd2\ \x81\xb2\xd3\x83\xb2\xd3\x84\xb0\xd2\x88\xb2\xd5\x83\xaf\xd1\x77\ \xa6\xc7\x76\xa5\xc4\x80\xac\xc9\x87\xb4\xd3\x8d\xba\xdc\x8e\xb9\ \xda\x8c\xb4\xd4\x88\xb1\xd0\x81\xb1\xcf\x7d\xb2\xd1\x7e\xb7\xd4\ \x7e\xb4\xd2\x86\xb2\xd1\x8a\xb0\xd2\x86\xb0\xd4\x81\xb2\xd5\x82\ \xb3\xd8\x88\xb3\xd8\x8d\xb5\xd8\x90\xb4\xd2\x86\xa8\xc2\x6a\x89\ \xa2\x71\x93\xab\x8d\xb6\xd1\x8e\xba\xd8\x93\xbe\xdc\x91\xbb\xd7\ \x8c\xb7\xd3\x8d\xb9\xd4\x8b\xb4\xcd\x74\x97\xb1\x53\x75\x8d\x5e\ \x81\x9a\x79\x9e\xb7\x75\x98\xaf\x4a\x6a\x7d\x56\x75\x86\x8c\xad\ \xc4\x89\xaa\xc7\x67\x84\x9f\x34\x4e\x65\x5c\x76\x8e\x8b\xa8\xc3\ \x7b\x9a\xb4\x3d\x5c\x71\x33\x54\x65\x7d\x9f\xb2\x8d\xac\xc2\x61\ \x7e\x94\x25\x40\x51\x27\x45\x55\x58\x7c\x92\x6e\x94\xad\x70\x96\ \xaf\x77\x9c\xb6\x8e\xb3\xcd\x92\xb6\xd4\x97\xbc\xda\x99\xbf\xd9\ \x93\xbd\xd4\x8c\xba\xcf\x8d\xb7\xcd\x8e\xb4\xc7\x92\xb7\xca\x90\ \xb4\xc8\x8f\xae\xc8\x91\xb2\xcb\x8c\xb0\xc9\x8f\xb4\xce\x90\xb9\ \xd3\x8e\xb7\xd2\x91\xb7\xd1\x93\xb7\xd3\x96\xb7\xd4\x97\xb9\xd2\ \x90\xb2\xc6\x8a\xaf\xbf\x8a\xb2\xc1\x88\xb3\xc4\x84\xb0\xc5\x7e\ \xa9\xbc\x7c\xa5\xb7\x81\xa8\xbb\x82\xa4\xba\x8c\xb0\xc6\x90\xb9\ \xcf\x92\xba\xd3\x91\xb3\xcc\x93\xaf\xc9\x94\xaf\xc9\x8b\xa9\xc6\ \x8a\xaa\xc8\x89\xac\xca\x81\xaa\xc4\x7d\xaa\xc3\x7b\xa3\xbc\x7b\ \x9d\xb7\x7c\x9a\xb5\x7c\x9b\xb6\x7c\xa0\xb6\x80\xa8\xba\x87\xad\ \xc0\x8e\xb0\xc6\x93\xb1\xca\x95\xae\xc8\x88\x9e\xb4\x61\x74\x84\ \x23\x3a\x47\x48\x68\x79\x8e\xaf\xc7\x9b\xb5\xd3\x99\xb4\xd5\x94\ \xb4\xd2\x93\xb7\xd3\x92\xb1\xcf\x91\xae\xcc\x8f\xaf\xcc\x00\x00\ \x00\x82\xae\xd1\x83\xb2\xd4\x81\xb4\xd8\x7e\xb1\xd1\x7c\xaa\xc7\ \x74\x9c\xb7\x87\xb0\xcd\x84\xb2\xd1\x85\xb5\xd4\x88\xb5\xd4\x83\ \xaf\xcb\x66\x87\x9f\x15\x2b\x3f\x0d\x22\x34\x52\x71\x82\x8e\xb9\ \xd0\x8b\xbc\xd3\x8a\xb9\xd1\x89\xb5\xcf\x89\xb5\xd3\x84\xb3\xd6\ \x82\xaf\xd5\x80\xad\xd2\x7c\xad\xce\x7c\xb1\xd0\x7a\xb0\xcf\x78\ \xae\xce\x7a\xaa\xcd\x7f\xa8\xcc\x7e\xa0\xc0\x73\x91\xae\x7e\x97\ \xb8\x85\x9d\xbf\x6a\x84\xa3\x51\x72\x8a\x7a\xa1\xbb\x7d\xa9\xc8\ \x7d\xa9\xcc\x7c\xac\xcd\x7b\xac\xcb\x7b\xaf\xcf\x82\xb3\xd2\x84\ \xb3\xd4\x84\xb0\xd4\x88\xb1\xd8\x83\xb0\xd5\x7a\xae\xcf\x7d\xaf\ \xcf\x84\xb3\xd2\x87\xb4\xd4\x8c\xb6\xd7\x90\xb7\xd8\x90\xb5\xd6\ \x8a\xb1\xd2\x83\xae\xd0\x7e\xae\xcd\x7b\xaf\xcd\x78\xa7\xc5\x59\ \x7d\x97\x60\x7d\x97\x7f\x9f\xbb\x86\xab\xcc\x84\xac\xd0\x87\xaf\ \xd4\x8c\xb2\xd4\x8f\xb2\xd3\x8e\xb2\xce\x90\xb2\xcd\x91\xb4\xcf\ \x8f\xb7\xd6\x8e\xb9\xda\x91\xbc\xdc\x8f\xba\xd8\x90\xbc\xd9\x8c\ \xb9\xd6\x8a\xb8\xd3\x86\xb2\xcc\x80\xad\xc7\x82\xaf\xcb\x82\xaf\ \xcb\x82\xad\xca\x87\xac\xc8\x8c\xab\xc5\x97\xb6\xd2\x8f\xae\xd0\ \x87\xa5\xc6\x86\xa2\xbf\x92\xac\xcb\x91\xae\xcd\x8e\xae\xce\x8c\ \xac\xc8\x81\xa7\xbe\x7d\xa4\xba\x8e\xb0\xc7\x8d\xaa\xc1\x71\x91\ \xa4\x3d\x61\x75\x4d\x77\x8e\x86\xb0\xca\x8f\xb8\xd1\x79\xa1\xba\ \x65\x8c\xa8\x8a\xb0\xcd\x93\xb8\xd3\x9a\xbf\xd7\x95\xbc\xd3\x8f\ \xb4\xca\x7f\xa0\xb3\x51\x70\x7d\x44\x67\x72\x54\x74\x84\x71\x8a\ \x9c\x77\x90\x9e\x5e\x79\x86\x4c\x6b\x79\x4b\x6f\x82\x57\x7d\x94\ \x7b\xa1\xb8\x8b\xb0\xc7\x8d\xb1\xc7\x8b\xac\xc2\x6a\x89\x9a\x36\ \x56\x65\x3b\x5e\x6d\x64\x8c\x9c\x7f\xa4\xb9\x6c\x8e\xa2\x46\x62\ \x72\x5a\x75\x85\x4a\x65\x79\x5e\x7c\x94\x88\xaf\xc8\x8c\xb3\xcd\ \x81\xa1\xb9\x53\x6c\x7e\x46\x5c\x69\x47\x5e\x70\x4e\x6a\x81\x5a\ \x7b\x95\x60\x87\xa0\x6a\x91\xa9\x63\x82\x98\x54\x6e\x81\x56\x6d\ \x80\x5e\x75\x89\x55\x6e\x7d\x3f\x5a\x66\x3a\x54\x61\x46\x5e\x70\ \x5f\x75\x8b\x7e\x92\xa8\x7c\x8f\xa3\x4d\x60\x70\x22\x3b\x49\x5e\ \x7f\x92\x94\xb4\xce\x9c\xb7\xd7\x99\xb6\xd5\x94\xb6\xd1\x93\xb8\ \xd2\x95\xb3\xd0\x97\xb0\xd1\x95\xaf\xd0\x00\x00\x00\x85\xb2\xd5\ \x88\xb8\xda\x86\xbb\xdd\x82\xb9\xdc\x83\xb8\xd8\x89\xb8\xd9\x8e\ \xb5\xd9\x8e\xb6\xdb\x8d\xb7\xdb\x93\xba\xe0\x91\xb6\xda\x81\xa0\ \xbf\x31\x4c\x62\x0e\x28\x3a\x4d\x71\x84\x87\xb6\xcd\x87\xbc\xd5\ \x86\xba\xd3\x88\xb6\xd3\x8b\xb8\xd5\x86\xb4\xd3\x82\xb0\xd4\x81\ \xad\xd2\x7f\xad\xcf\x81\xb2\xd2\x7b\xaf\xcf\x7a\xae\xcf\x80\xaf\ \xd2\x85\xb2\xd6\x88\xb0\xd2\x88\xaf\xcf\x87\xaa\xce\x89\xab\xcf\ \x84\xa9\xcb\x83\xaa\xc9\x83\xad\xcb\x7e\xa9\xca\x7d\xa9\xcb\x7f\ \xac\xcd\x80\xaf\xcd\x83\xb2\xd2\x85\xb1\xd3\x83\xb1\xd3\x81\xad\ \xd2\x82\xac\xd4\x80\xae\xd4\x7c\xb0\xd0\x80\xb4\xd0\x83\xb3\xd1\ \x7f\xae\xcd\x83\xb2\xd0\x87\xb4\xd0\x89\xb4\xd1\x8a\xb4\xd3\x85\ \xae\xcf\x81\xad\xcd\x7c\xab\xcb\x6f\x9e\xbc\x3c\x65\x7e\x2a\x4d\ \x64\x39\x59\x6e\x52\x70\x89\x88\xa9\xc5\x86\xad\xcd\x88\xaf\xd1\ \x8d\xb3\xd5\x91\xb7\xd7\x91\xb7\xd4\x90\xb5\xd4\x8e\xb5\xd7\x88\ \xb4\xd9\x87\xb5\xd7\x87\xb6\xd3\x8b\xb8\xd4\x8c\xb7\xd4\x85\xb5\ \xd1\x84\xb5\xcf\x83\xb4\xd2\x81\xb0\xcd\x7d\xab\xc9\x7e\xab\xce\ \x88\xaf\xd3\x90\xaf\xd1\x96\xb2\xd4\x91\xb0\xd2\x8c\xac\xcc\x8e\ \xaa\xc6\x8e\xaa\xc3\x8c\xaa\xc5\x95\xb2\xce\x93\xb3\xce\x91\xb6\ \xce\x90\xb6\xcf\x90\xb3\xce\x8d\xad\xc6\x8a\xac\xc4\x87\xac\xc6\ \x7c\xa5\xc2\x88\xb2\xd0\x8a\xb5\xcf\x83\xaf\xc8\x63\x8f\xad\x62\ \x8c\xad\x88\xae\xcb\x92\xb8\xd2\x95\xbc\xd5\x8a\xaf\xc5\x5d\x7c\ \x8c\x1e\x3c\x46\x4c\x6e\x78\x6f\x8e\x9e\x59\x71\x80\x29\x3d\x47\ \x11\x28\x30\x23\x41\x4a\x62\x87\x95\x7e\xa4\xb7\x6b\x90\xa4\x53\ \x72\x85\x6d\x8c\x9f\x6b\x89\x9c\x37\x50\x63\x2c\x46\x59\x59\x79\ \x8a\x4f\x72\x83\x4a\x6b\x7d\x5c\x77\x8c\x2d\x44\x56\x24\x3b\x4b\ \x29\x42\x55\x44\x5e\x76\x80\xa1\xbb\x88\xa9\xc4\x7d\x99\xb1\x3d\ \x53\x63\x13\x26\x2d\x20\x35\x40\x4d\x67\x7b\x76\x93\xac\x74\x97\ \xad\x4f\x70\x85\x25\x3d\x50\x18\x2b\x39\x32\x45\x55\x3a\x4d\x5d\ \x15\x29\x35\x06\x19\x21\x07\x19\x27\x15\x27\x3b\x2b\x3b\x52\x38\ \x4a\x5f\x54\x68\x7d\x3d\x52\x65\x20\x3c\x4c\x70\x91\xa4\x96\xb8\ \xd1\x9c\xb8\xd5\x94\xb3\xcf\x94\xb5\xd0\x95\xb7\xd2\x9a\xb5\xd5\ \x99\xb1\xd5\x98\xb0\xd4\x00\x00\x00\x8d\xb8\xdf\x8b\xb6\xdb\x87\ \xb5\xdc\x7f\xb2\xda\x84\xb2\xda\x89\xb2\xdb\x8f\xb3\xdd\x91\xb6\ \xe0\x90\xb8\xe1\x96\xba\xe6\x98\xb8\xe4\x8c\xad\xd4\x6f\x90\xb0\ \x39\x5c\x77\x65\x8c\xa7\x85\xb3\xcf\x8a\xbe\xda\x88\xbd\xd9\x86\ \xb6\xd3\x87\xb3\xcf\x8a\xb4\xd2\x86\xb2\xd4\x88\xb1\xd6\x86\xaf\ \xd3\x85\xb3\xd5\x7f\xb0\xd4\x7d\xad\xd2\x83\xb1\xd4\x85\xb5\xd5\ \x86\xb5\xd7\x83\xb2\xd3\x7e\xae\xce\x7f\xb0\xcf\x82\xb2\xd1\x84\ \xb1\xd0\x84\xb0\xcf\x82\xb0\xd0\x81\xb1\xd1\x82\xaf\xcf\x84\xae\ \xd0\x83\xae\xd2\x84\xaf\xd4\x82\xb0\xd4\x7d\xb0\xd3\x7e\xb0\xd4\ \x7f\xb0\xd5\x7d\xb0\xd0\x83\xb3\xd2\x7e\xaf\xce\x79\xab\xcc\x7d\ \xb0\xcf\x80\xb1\xce\x84\xb3\xd0\x87\xb4\xd3\x89\xb3\xd2\x85\xb0\ \xd0\x80\xac\xcf\x77\xa5\xc7\x6c\x9e\xbd\x64\x93\xad\x48\x6d\x84\ \x29\x45\x58\x55\x71\x85\x8a\xab\xc6\x87\xad\xce\x8a\xb2\xd3\x8c\ \xb5\xd5\x8b\xb5\xd3\x89\xb3\xd3\x87\xb2\xd5\x83\xae\xd5\x82\xb0\ \xd4\x82\xb0\xcf\x83\xb1\xcf\x84\xb1\xd2\x81\xb1\xd1\x84\xb4\xd2\ \x89\xb6\xd7\x87\xb1\xd3\x7d\xa9\xca\x7c\xaa\xcd\x83\xaa\xd2\x8b\ \xab\xd3\x92\xb0\xd3\x8e\xae\xcc\x7d\x9b\xb6\x4e\x6a\x82\x34\x53\ \x67\x38\x58\x6e\x56\x75\x8d\x77\x97\xaf\x8c\xb1\xc9\x8c\xb3\xcc\ \x8c\xb3\xcd\x8a\xaf\xc8\x86\xaa\xc4\x80\xa8\xc2\x7f\xa7\xc5\x80\ \xa6\xc4\x7c\xa3\xba\x6a\x95\xac\x68\x96\xb2\x58\x85\xa3\x71\x9d\ \xb7\x87\xb3\xcb\x8d\xb8\xd2\x85\xae\xc6\x72\x94\xa7\x37\x58\x67\ \x41\x63\x71\x59\x78\x8a\x71\x8c\x9f\x6b\x83\x94\x28\x44\x53\x17\ \x39\x45\x47\x6f\x7d\x7a\xa2\xb3\x61\x81\x95\x32\x4c\x60\x28\x43\ \x57\x3f\x5c\x73\x2c\x47\x61\x33\x4c\x66\x71\x8e\xa5\x8e\xac\xc2\ \x80\x9f\xb4\x50\x6c\x82\x2c\x46\x5c\x47\x62\x76\x58\x74\x8b\x42\ \x5b\x75\x5d\x79\x91\x6a\x89\xa3\x6b\x88\xa3\x4d\x62\x77\x10\x20\ \x2c\x27\x39\x46\x4d\x65\x79\x48\x64\x7b\x72\x8f\xa7\x71\x8c\xa4\ \x43\x59\x6b\x0d\x20\x2c\x26\x3a\x47\x63\x7b\x89\x4f\x69\x73\x19\ \x31\x3c\x2c\x43\x55\x4d\x62\x7a\x57\x69\x83\x5c\x70\x88\x4d\x64\ \x7c\x3f\x57\x6b\x20\x3c\x50\x71\x92\xa5\x8f\xb3\xca\x9a\xba\xd5\ \x9a\xb8\xd2\x99\xb7\xd3\x9a\xb6\xd5\x9c\xb4\xd8\x9c\xb2\xd6\x98\ \xb0\xd4\x00\x00\x00\x5d\x84\xb3\x5d\x83\xb2\x67\x8f\xbf\x6b\x95\ \xc7\x6a\x94\xc4\x69\x91\xc2\x6a\x92\xc5\x6e\x98\xc9\x72\x9c\xcc\ \x7b\xa3\xd1\x85\xa6\xd8\x86\xa5\xd7\x7b\x9f\xcc\x71\x98\xc0\x76\ \x9f\xc6\x7d\xa9\xcf\x82\xb2\xd8\x83\xb4\xda\x83\xaf\xd6\x83\xab\ \xd1\x84\xab\xd0\x85\xab\xd4\x8a\xad\xd8\x8c\xb0\xda\x8c\xb5\xdc\ \x87\xb1\xdb\x85\xae\xd8\x80\xab\xd2\x7e\xae\xd3\x7b\xb0\xd5\x7c\ \xb1\xd6\x79\xb0\xd1\x79\xb0\xd1\x7d\xb1\xd2\x82\xb0\xd1\x85\xb3\ \xd4\x84\xb4\xd5\x85\xb5\xd5\x88\xb5\xd7\x88\xb1\xd9\x86\xae\xd8\ \x83\xad\xd5\x7d\xaf\xd4\x78\xae\xd3\x78\xae\xd3\x7d\xb0\xd4\x7d\ \xb0\xd2\x81\xb0\xd2\x7f\xae\xd2\x79\xac\xd1\x7a\xaf\xd2\x7c\xb0\ \xd1\x81\xb4\xd3\x84\xb3\xd2\x83\xb1\xd1\x84\xb1\xd2\x84\xae\xd2\ \x80\xac\xd1\x79\xaa\xcc\x78\xac\xcb\x73\x9e\xbb\x49\x69\x7f\x26\ \x41\x52\x78\x95\xad\x8b\xae\xcd\x87\xae\xce\x8a\xb5\xd5\x89\xb5\ \xd5\x85\xb0\xd3\x81\xad\xd3\x80\xab\xd2\x85\xb0\xd6\x84\xb0\xd2\ \x80\xaf\xd1\x7e\xb0\xd3\x7c\xb0\xd3\x85\xb5\xd8\x87\xb4\xd9\x85\ \xb1\xd6\x7c\xa9\xcc\x7a\xa8\xcb\x7c\xa7\xce\x82\xaa\xd0\x87\xac\ \xcd\x85\xa8\xc1\x59\x77\x91\x24\x44\x5d\x47\x6c\x86\x77\x9c\xb9\ \x7d\xa0\xbd\x5f\x81\x9e\x46\x6a\x85\x7e\xa5\xbe\x84\xb0\xc8\x81\ \xac\xc4\x80\xaa\xc2\x7e\xaa\xc2\x77\xa2\xba\x6e\x90\xa8\x3d\x5d\ \x6e\x37\x5e\x6e\x67\x92\xa7\x47\x6f\x88\x63\x8d\xa6\x89\xb6\xce\ \x89\xb5\xd0\x84\xaf\xc7\x82\xa6\xc0\x7a\x9f\xb5\x5f\x84\x99\x4b\ \x6c\x82\x62\x82\x97\x86\xa6\xbc\x84\xa7\xbd\x70\x97\xac\x70\x98\ \xab\x85\xab\xc2\x74\x96\xae\x5b\x77\x8f\x64\x81\x9a\x76\x95\xb2\ \x71\x90\xb0\x6b\x88\xa6\x5a\x77\x94\x7e\x9c\xb5\x96\xb4\xcc\x91\ \xb0\xca\x7d\x97\xb7\x6b\x87\xa6\x83\x9f\xbd\x81\x9b\xb8\x69\x87\ \xa0\x66\x8a\xa6\x6e\x91\xb0\x5a\x74\x8d\x1d\x2c\x3e\x14\x25\x32\ \x51\x67\x78\x6e\x87\x9c\x3d\x58\x6e\x5f\x77\x8c\x53\x68\x76\x0d\ \x22\x2b\x1b\x32\x3e\x2f\x4b\x58\x70\x8d\x98\x4e\x68\x76\x37\x54\ \x66\x74\x8e\xa7\x91\xa5\xc1\x8a\x9c\xb8\x74\x8a\xa5\x5a\x72\x89\ \x1e\x3b\x50\x56\x74\x89\x85\xa7\xbd\x95\xb7\xcd\x9c\xba\xd1\x9e\ \xb9\xd4\x9d\xb6\xd5\x9c\xb5\xd6\x99\xb3\xd3\x98\xb1\xd2\x00\x00\ \x00\x6c\x92\xc3\x6a\x8d\xbd\x6b\x90\xc2\x68\x92\xc1\x60\x8b\xb9\ \x5a\x88\xb7\x5a\x89\xbb\x5b\x8a\xbd\x58\x86\xb9\x59\x83\xb5\x57\ \x7b\xaf\x53\x73\xab\x4d\x70\xa7\x46\x6b\x9f\x43\x6b\x9b\x3e\x6a\ \x99\x3d\x6a\x9b\x40\x6d\x9f\x49\x72\xa6\x50\x79\xaa\x54\x7e\xac\ \x56\x7f\xaf\x5a\x81\xb4\x61\x86\xb8\x64\x89\xba\x6a\x8c\xc1\x6c\ \x8c\xc2\x68\x8f\xc2\x62\x90\xc2\x63\x96\xc6\x64\x9a\xc5\x67\x9a\ \xc4\x69\x9a\xc4\x6c\x9b\xc7\x75\x9e\xcd\x7b\xa6\xd1\x81\xae\xd6\ \x84\xb2\xd7\x84\xaf\xd9\x82\xa9\xda\x80\xa6\xd8\x7b\xa5\xd3\x78\ \xa7\xd1\x72\xa4\xcf\x75\xa7\xd0\x79\xa8\xd1\x75\xa6\xcd\x7a\xa7\ \xce\x7a\xa7\xd0\x77\xa7\xd1\x7a\xa9\xcf\x7c\xac\xcf\x80\xb0\xd2\ \x83\xb2\xd3\x84\xb2\xd6\x84\xb1\xd5\x87\xb0\xd7\x87\xaf\xd6\x81\ \xad\xd3\x7f\xae\xd2\x7e\xab\xce\x76\x99\xb8\x42\x5f\x78\x56\x76\ \x8d\x89\xae\xc8\x87\xb0\xcd\x89\xb2\xd3\x86\xb1\xd6\x81\xb0\xd5\ \x83\xb0\xd5\x85\xb1\xd6\x8a\xb3\xd9\x8a\xb3\xd6\x80\xad\xd1\x7b\ \xab\xcf\x80\xb0\xd3\x85\xb5\xd7\x86\xb4\xd6\x83\xb1\xd6\x7b\xab\ \xcf\x7a\xaa\xce\x74\xa8\xcc\x78\xaa\xcd\x7f\xad\xcb\x7d\xa5\xc0\ \x6c\x92\xae\x4a\x72\x93\x59\x86\xa7\x7b\xa5\xc7\x85\xad\xce\x7f\ \xa4\xc3\x4e\x72\x8c\x43\x65\x7c\x82\xa8\xbf\x88\xaf\xc9\x86\xad\ \xc8\x82\xa9\xc5\x7a\x9f\xbb\x5b\x79\x8e\x1d\x3a\x46\x4a\x6c\x7a\ \x61\x85\x97\x35\x58\x6d\x6d\x93\xac\x84\xad\xc8\x84\xaf\xca\x85\ \xad\xc7\x84\xab\xc7\x7d\xa6\xc0\x7c\xa6\xbf\x84\xa9\xc3\x88\xad\ \xc6\x89\xaf\xc9\x8e\xb3\xce\x8d\xb2\xcc\x8f\xb1\xce\x8f\xb3\xd1\ \x8c\xb0\xcc\x8c\xad\xc8\x8e\xac\xc9\x8f\xae\xcf\x8c\xac\xcd\x8b\ \xad\xcb\x8e\xb1\xcf\x91\xb3\xcf\x98\xb5\xd1\x96\xb2\xcf\x95\xb0\ \xd1\x96\xb2\xd4\x94\xb1\xcf\x91\xae\xca\x8c\xaa\xc9\x85\xab\xcb\ \x7d\xa2\xc4\x72\x8e\xab\x3a\x49\x5d\x0e\x1b\x2a\x1a\x2b\x3c\x54\ \x67\x79\x65\x78\x8b\x2d\x3f\x50\x44\x54\x61\x17\x2b\x36\x2f\x48\ \x56\x49\x64\x74\x42\x5d\x6c\x85\xa0\xb0\x7c\x99\xac\x8d\xa8\xc0\ \x99\xb0\xca\x91\xa3\xc0\x85\x97\xb4\x77\x8f\xa9\x2e\x49\x5f\x30\ \x4e\x63\x53\x74\x89\x8e\xad\xc4\x9b\xb8\xcd\x9e\xb9\xd2\x9f\xb8\ \xd5\x9d\xb5\xd3\x9a\xb4\xd4\x98\xb3\xd5\x00\x00\x00\x96\xbd\xe5\ \x95\xbc\xe3\x91\xba\xe0\x8c\xb7\xdb\x8a\xb9\xdb\x85\xb6\xd9\x84\ \xb6\xdc\x85\xb5\xe0\x86\xb5\xe0\x89\xb5\xdf\x84\xad\xd7\x81\xa5\ \xd4\x7e\xa3\xd3\x7b\xa2\xd2\x79\xa4\xcf\x77\xa5\xcf\x70\xa2\xcd\ \x6b\x9c\xc7\x6c\x9b\xc8\x72\xa0\xcd\x72\xa2\xcd\x6a\x9a\xc5\x69\ \x97\xc3\x69\x95\xc2\x6b\x94\xc4\x6e\x94\xc7\x6c\x8e\xc3\x63\x87\ \xbe\x5a\x82\xba\x56\x84\xb9\x57\x86\xb7\x50\x7f\xaf\x48\x74\xa5\ \x41\x6b\x9e\x41\x69\xa0\x46\x72\xa6\x48\x78\xa7\x4c\x7c\xab\x4c\ \x77\xab\x4c\x75\xad\x50\x77\xaf\x4d\x78\xa9\x49\x75\xa5\x4e\x78\ \xa9\x53\x7c\xaf\x57\x81\xb2\x55\x80\xb1\x61\x8a\xbb\x68\x91\xc0\ \x69\x93\xc2\x6f\x97\xc5\x73\x9d\xc7\x77\x9f\xc9\x7a\xa3\xcc\x80\ \xab\xd5\x81\xac\xd8\x83\xaa\xd8\x85\xa8\xd7\x82\xab\xd7\x83\xb1\ \xda\x81\xad\xd8\x86\xa9\xd2\x83\xa2\xc8\x83\xa6\xc7\x8e\xb3\xd3\ \x8f\xb5\xd9\x8f\xb6\xdd\x87\xb2\xdc\x83\xb2\xda\x86\xb2\xd9\x8b\ \xb3\xda\x8e\xb3\xda\x8a\xb2\xd6\x84\xae\xcf\x84\xae\xcf\x87\xb1\ \xd2\x88\xb5\xd3\x84\xb2\xd2\x81\xb3\xd2\x7d\xb1\xd2\x7f\xaf\xd2\ \x7a\xad\xd1\x79\xac\xd0\x7a\xab\xcb\x7f\xad\xca\x7b\xa9\xc6\x77\ \xa7\xc6\x79\xa7\xc9\x80\xae\xd1\x82\xb0\xd1\x7f\xa9\xc8\x6d\x8f\ \xaa\x2d\x4a\x5e\x55\x74\x88\x82\xa5\xbc\x8c\xae\xcb\x8d\xae\xd1\ \x86\xa6\xc6\x6c\x8b\xa2\x2d\x4b\x5c\x44\x64\x76\x46\x67\x7e\x3e\ \x60\x79\x83\xa8\xc4\x86\xac\xca\x88\xae\xcc\x88\xad\xcb\x83\xac\ \xc8\x7f\xac\xc8\x7e\xa9\xc9\x86\xac\xcf\x8b\xb0\xcf\x8b\xb2\xcf\ \x8f\xb3\xd3\x94\xb5\xd6\x99\xb6\xd7\x92\xb2\xd5\x8d\xb2\xd0\x8d\ \xb2\xcc\x8b\xac\xc8\x8e\xac\xcc\x8b\xae\xca\x86\xad\xc8\x89\xb1\ \xcb\x8e\xb1\xcd\x96\xb2\xd2\x96\xb3\xd3\x97\xb4\xd5\x95\xb5\xd5\ \x9a\xb7\xd7\x99\xb6\xd4\x96\xb5\xd6\x8f\xb2\xd5\x89\xad\xd0\x7f\ \x9b\xbb\x53\x63\x7c\x1a\x28\x3b\x45\x56\x6a\x2d\x3e\x53\x42\x52\ \x65\x40\x4f\x5d\x19\x27\x30\x16\x28\x30\x31\x49\x58\x73\x8c\xa2\ \x42\x59\x6e\x6f\x88\x9b\x94\xb0\xc3\x9e\xb9\xcf\x9a\xb3\xcd\x91\ \xa7\xc5\x8d\xa4\xbf\x89\xa3\xbb\x4d\x68\x7e\x36\x53\x68\x4c\x68\ \x81\x62\x7d\x97\x98\xb4\xcb\x9c\xb8\xd1\xa3\xbb\xd8\x9f\xb6\xd6\ \x9a\xb3\xd6\x96\xb3\xd6\x00\x00\x00\x9b\xc4\xe7\x98\xc5\xe5\x95\ \xc2\xe1\x94\xc4\xdf\x93\xc3\xdc\x92\xc2\xde\x94\xc1\xe2\x93\xbf\ \xe2\x94\xc1\xe6\x94\xc2\xe5\x90\xbd\xde\x8c\xb6\xd8\x8c\xb4\xd8\ \x88\xb4\xd8\x85\xb5\xd6\x7e\xb1\xd3\x7a\xaf\xd0\x7a\xaf\xd0\x7f\ \xb4\xd6\x87\xbb\xdb\x8a\xbc\xdb\x88\xb8\xd8\x86\xb9\xd9\x88\xba\ \xda\x89\xba\xdf\x8b\xba\xe3\x90\xba\xe5\x8e\xb8\xe4\x8c\xb4\xe1\ \x87\xb1\xde\x82\xaf\xda\x7c\xae\xd5\x74\xa6\xcc\x72\x9f\xc9\x71\ \x9d\xce\x6f\xa1\xd0\x71\xa5\xd2\x75\xa7\xd5\x75\xa5\xd5\x70\x9f\ \xcf\x74\xa2\xd2\x6d\x9d\xc8\x65\x92\xbc\x60\x8a\xb9\x5d\x82\xb6\ \x59\x7d\xb1\x4f\x76\xaa\x50\x79\xac\x50\x79\xab\x4b\x71\xa2\x4c\ \x6e\x9c\x54\x75\xa4\x5a\x7c\xab\x58\x7d\xaa\x52\x7c\xab\x52\x7f\ \xb0\x57\x80\xb4\x5e\x83\xb6\x5c\x84\xb7\x53\x7f\xb2\x53\x7c\xb1\ \x5a\x81\xb5\x61\x84\xb5\x68\x8a\xba\x6d\x91\xbe\x6b\x91\xc0\x6f\ \x98\xc9\x70\x99\xcd\x72\x9b\xce\x75\x9a\xcc\x7b\x9c\xcd\x7c\xa0\ \xcf\x79\xa0\xca\x79\xa2\xca\x7c\xa7\xcc\x83\xab\xcf\x84\xab\xd0\ \x80\xaa\xcc\x7d\xac\xcc\x81\xb0\xd2\x82\xaf\xd2\x80\xad\xd2\x7d\ \xa9\xd0\x7e\xac\xd1\x81\xae\xcf\x82\xb0\xcf\x80\xaf\xcf\x83\xb0\ \xd3\x85\xb3\xd6\x85\xb4\xd5\x84\xad\xcd\x7d\x9c\xbb\x44\x60\x79\ \x34\x54\x67\x70\x95\xaa\x90\xb3\xd0\x91\xb2\xd7\x8e\xb1\xd5\x87\ \xab\xc9\x6c\x90\xab\x47\x69\x87\x4b\x6e\x8d\x77\x9e\xbe\x84\xad\ \xcd\x86\xad\xce\x89\xaf\xd1\x89\xb0\xcf\x84\xb1\xcc\x80\xb0\xcc\ \x81\xaf\xd1\x8a\xb3\xd6\x8e\xb4\xd7\x8c\xb2\xd1\x8e\xb2\xd1\x95\ \xb5\xd5\x99\xb7\xd8\x92\xb3\xd5\x88\xb2\xd0\x83\xb2\xca\x86\xae\ \xca\x89\xad\xcc\x85\xaa\xc5\x7f\xa5\xbe\x7b\xa0\xb8\x7e\x9e\xb8\ \x85\xa3\xc1\x89\xa9\xcb\x90\xb2\xd4\x92\xb5\xd6\x96\xb6\xd7\x98\ \xb7\xda\x95\xb6\xdc\x93\xb4\xd7\x91\xb2\xd3\x87\xa1\xc3\x65\x78\ \x93\x1d\x2e\x43\x56\x6c\x81\x5e\x75\x89\x22\x35\x45\x34\x42\x4e\ \x13\x1f\x28\x0c\x1d\x25\x29\x42\x50\x76\x93\xa8\x60\x7a\x90\x51\ \x69\x7e\x90\xa9\xbd\x9c\xb5\xcb\x95\xaf\xc9\x89\xa6\xc2\x8f\xb0\ \xca\x8d\xae\xc5\x6a\x88\xa0\x33\x52\x6a\x62\x7e\x99\x4e\x69\x87\ \x82\x9f\xba\x97\xb4\xd0\x9e\xb9\xda\x9d\xb7\xda\x9b\xb6\xda\x94\ \xb2\xd5\x00\x00\x00\x9a\xc4\xe4\x96\xc5\xe3\x98\xc5\xe0\x99\xc6\ \xdf\x96\xc4\xdd\x98\xc5\xe2\x9a\xc3\xe3\x9b\xc4\xe4\x96\xc4\xe5\ \x91\xc4\xe4\x8e\xbf\xdd\x8e\xbb\xd8\x92\xb9\xd9\x94\xbf\xde\x92\ \xbf\xde\x8c\xba\xda\x87\xb9\xd8\x87\xbd\xda\x89\xbf\xdb\x91\xc4\ \xde\x94\xc4\xdf\x90\xc1\xdb\x8f\xc1\xd8\x8d\xc2\xdb\x8a\xc1\xde\ \x8b\xc2\xe2\x8c\xbf\xdf\x8e\xbd\xde\x91\xbc\xdf\x90\xbc\xdf\x87\ \xb9\xdb\x82\xba\xd7\x80\xb7\xd4\x80\xb0\xd1\x84\xb2\xd8\x7e\xb3\ \xd9\x81\xb3\xd9\x87\xb4\xdd\x8a\xb8\xdf\x85\xba\xdb\x8a\xbb\xdc\ \x83\xb6\xd6\x80\xb1\xd0\x78\xa7\xcc\x7a\xa5\xd0\x7b\xa5\xd0\x7b\ \xa7\xd0\x79\xa9\xd2\x73\xa3\xcb\x63\x88\xaf\x33\x52\x76\x5b\x78\ \x9e\x85\xa4\xcb\x88\xae\xd3\x81\xad\xd6\x7b\xa7\xd4\x79\xa5\xd3\ \x77\xa0\xce\x71\x9b\xca\x6d\x95\xc8\x69\x90\xc4\x71\x97\xcb\x77\ \x9b\xcc\x75\x97\xc8\x6c\x8f\xc0\x60\x86\xb7\x5b\x85\xb7\x56\x7f\ \xb5\x53\x77\xaf\x50\x72\xa7\x4c\x71\xa2\x4a\x73\xa2\x4e\x77\xa6\ \x54\x7d\xaa\x58\x83\xae\x5c\x83\xb1\x5d\x81\xb1\x58\x7e\xad\x58\ \x83\xad\x5a\x86\xae\x5e\x8a\xb1\x5d\x87\xb2\x64\x8d\xbc\x6e\x96\ \xc5\x6f\x9a\xc5\x6d\x97\xc0\x71\x99\xc4\x7d\xa2\xd0\x81\xa9\xd6\ \x84\xaf\xda\x8a\xb1\xd9\x8a\xaa\xd2\x81\x9f\xc4\x7b\x9f\xc0\x8a\ \xb1\xd1\x8e\xb2\xd8\x8f\xb3\xdc\x8a\xb3\xd9\x89\xb4\xd8\x85\xaf\ \xd3\x83\xac\xd0\x81\xab\xd1\x80\xae\xd2\x80\xb1\xd2\x82\xaf\xd1\ \x81\xaf\xcf\x7f\xae\xcc\x7e\xae\xcc\x7e\xae\xcd\x83\xb1\xd3\x8a\ \xb4\xd4\x8f\xb3\xd5\x8f\xb2\xd2\x8e\xb3\xd0\x90\xb4\xd0\x93\xb7\ \xd4\x8f\xb6\xd5\x87\xb5\xd1\x83\xb5\xcf\x81\xb0\xcf\x83\xae\xcf\ \x80\xaa\xc6\x75\x9b\xb4\x55\x75\x8e\x3f\x5c\x73\x60\x7d\x97\x78\ \x9a\xb7\x8b\xb0\xce\x8e\xb3\xd3\x90\xb3\xd4\x93\xb7\xda\x97\xba\ \xde\x99\xba\xda\x92\xb5\xd2\x88\xa7\xc4\x69\x80\x9a\x1a\x30\x44\ \x51\x6e\x80\x6f\x8d\x9f\x32\x48\x58\x19\x28\x35\x17\x26\x31\x0b\ \x1f\x2a\x1a\x34\x44\x56\x73\x86\x62\x7c\x92\x49\x62\x77\x85\x9d\ \xb0\x7d\x95\xa9\x76\x92\xa8\x83\xa5\xbf\x90\xb5\xcf\x8c\xb2\xcb\ \x79\x9d\xb7\x3c\x5e\x79\x52\x71\x8e\x56\x75\x93\x60\x85\xa2\x8b\ \xad\xcb\x98\xb6\xd7\x9a\xb5\xd8\x98\xb6\xd8\x95\xb4\xd4\x00\x00\ \x00\x98\xbb\xd7\x99\xc0\xdd\x9b\xc0\xda\x97\xbd\xd4\x91\xba\xd1\ \x92\xbe\xd7\x9a\xc1\xdb\x9a\xbe\xd8\x91\xb8\xd3\x8b\xb9\xd7\x8e\ \xbd\xdc\x93\xbf\xde\x9a\xc1\xe1\x9e\xc1\xe1\x99\xbd\xd9\x94\xb9\ \xd7\x8f\xbb\xd8\x8c\xbf\xd9\x8d\xc2\xdc\x92\xc3\xde\x92\xc1\xdc\ \x93\xbf\xdc\x8d\xbb\xd8\x8c\xbc\xd7\x8c\xbf\xdd\x8a\xc1\xe0\x89\ \xbf\xdd\x90\xc0\xdf\x8f\xbd\xda\x90\xbc\xdd\x8d\xbd\xdd\x87\xbd\ \xd8\x87\xbd\xd7\x86\xb9\xd9\x89\xb9\xdd\x89\xbb\xdf\x8d\xbb\xde\ \x90\xbb\xdf\x8e\xbc\xdd\x8c\xbe\xdb\x90\xc0\xdc\x8e\xc1\xda\x85\ \xbc\xd5\x82\xb7\xd4\x88\xb8\xd9\x8a\xb9\xd8\x87\xb8\xd6\x81\xb7\ \xd6\x83\xb4\xd4\x7b\xa0\xbc\x2b\x47\x60\x44\x62\x7a\x90\xb2\xce\ \x94\xba\xd7\x92\xbd\xdf\x8e\xbb\xe0\x8b\xb8\xdb\x8a\xb4\xd7\x88\ \xb2\xd7\x8f\xb7\xde\x92\xb8\xe1\x95\xb9\xdf\x97\xba\xe0\x95\xb9\ \xdf\x94\xbb\xe0\x8e\xba\xde\x89\xb4\xd9\x88\xad\xd7\x87\xaa\xd7\ \x84\xaa\xd6\x7f\xaa\xd2\x7c\xa9\xcf\x7f\xa8\xcf\x81\xab\xd3\x80\ \xab\xd3\x7a\xa2\xce\x76\x9a\xc9\x6d\x92\xc3\x67\x91\xbc\x61\x8d\ \xb5\x5a\x87\xaf\x55\x81\xad\x57\x81\xb1\x58\x81\xb2\x54\x7e\xae\ \x51\x79\xa9\x51\x76\xaa\x54\x79\xaf\x55\x7d\xb4\x50\x7d\xb1\x4e\ \x79\xaa\x51\x77\xa6\x55\x77\xa7\x56\x7c\xab\x5a\x80\xb1\x5f\x86\ \xb8\x66\x8b\xbe\x66\x8f\xbe\x65\x91\xc1\x6c\x98\xc8\x72\x9e\xc9\ \x75\xa1\xcd\x70\xa1\xcd\x6f\xa3\xca\x72\xa4\xca\x72\xa4\xc7\x6f\ \xa3\xc5\x6f\xa3\xc4\x75\xa7\xca\x80\xae\xd1\x88\xb0\xd3\x8e\xb0\ \xd5\x8c\xac\xd1\x89\xad\xcd\x8a\xb0\xd0\x8c\xb3\xd3\x8e\xb5\xd7\ \x8e\xb8\xd9\x8b\xb9\xd8\x88\xb8\xd7\x87\xb6\xd6\x83\xb0\xce\x7d\ \xa5\xc2\x5e\x7e\x9c\x42\x5e\x7b\x57\x76\x92\x81\xa2\xc0\x8a\xaf\ \xcd\x8b\xaf\xd1\x90\xb3\xd5\x93\xb7\xd9\x99\xbb\xdd\x9d\xbb\xdb\ \x95\xb9\xd5\x88\xaa\xc6\x69\x83\x9e\x1b\x35\x46\x49\x6a\x79\x7a\ \x9b\xab\x3f\x57\x6a\x27\x39\x4d\x5b\x6c\x81\x53\x68\x7d\x35\x50\ \x63\x30\x4e\x62\x43\x5f\x77\x61\x7c\x95\x78\x8e\xa5\x40\x54\x68\ \x3c\x56\x6a\x70\x90\xa8\x8c\xb1\xca\x90\xb7\xd1\x82\xab\xc4\x5e\ \x85\xa1\x37\x59\x78\x47\x6a\x87\x5b\x83\x9c\x8a\xaf\xcc\x98\xb4\ \xd5\x9b\xb2\xd7\x9a\xb5\xd8\x95\xb3\xd6\x00\x00\x00\x7d\x95\xad\ \x9b\xb6\xd3\x8d\xa7\xc1\x3d\x58\x6c\x3f\x5f\x74\x69\x8f\xa8\x84\ \xa9\xc1\x7a\x98\xac\x47\x64\x78\x44\x67\x80\x67\x8f\xab\x8a\xb3\ \xd2\x96\xba\xd9\x9a\xb6\xd4\x87\xa2\xbc\x71\x90\xaa\x77\x9c\xb8\ \x83\xb1\xcc\x89\xbb\xd5\x8d\xbd\xd7\x8d\xbb\xd6\x92\xbb\xd9\x91\ \xb6\xd7\x7d\xa4\xc4\x80\xac\xca\x87\xba\xd7\x89\xbc\xd9\x90\xbe\ \xdd\x95\xbc\xdc\x8e\xb7\xd8\x8a\xb3\xd4\x8a\xb6\xd3\x89\xb8\xd4\ \x86\xb5\xd4\x8a\xb8\xdc\x8d\xbb\xe0\x8f\xbc\xdf\x92\xbc\xe0\x8f\ \xbe\xde\x8f\xbf\xde\x93\xc2\xdf\x94\xc4\xdc\x8d\xc2\xd9\x88\xbe\ \xd5\x91\xc3\xdc\x90\xc1\xdb\x8e\xbf\xda\x8a\xbf\xdb\x8c\xbc\xd8\ \x86\xac\xc4\x25\x43\x58\x29\x46\x5b\x89\xab\xc3\x99\xbf\xdc\x97\ \xbf\xe3\x94\xbf\xe4\x95\xbf\xe0\x94\xba\xda\x95\xb9\xdb\x95\xbb\ \xdb\x99\xbc\xdd\x9c\xbd\xdd\x9c\xbf\xdd\x98\xc0\xdc\x96\xc2\xde\ \x93\xbe\xd9\x86\xab\xc6\x4b\x69\x89\x42\x64\x84\x58\x7f\xa3\x70\ \x9a\xc0\x78\x9f\xbf\x8d\xaf\xce\x95\xba\xda\x93\xbd\xdf\x96\xbf\ \xe2\x95\xba\xdf\x96\xbb\xe0\x8e\xb8\xdb\x89\xb6\xd6\x84\xb1\xd3\ \x83\xaf\xd4\x83\xae\xd5\x85\xaf\xd5\x82\xad\xd5\x82\xaa\xd5\x7e\ \xa7\xd1\x79\xa4\xd0\x73\xa1\xd0\x6f\xa0\xce\x6a\x9b\xc7\x63\x8e\ \xbb\x5d\x84\xb2\x5e\x83\xb5\x5c\x82\xb7\x57\x7e\xb5\x51\x79\xae\ \x4e\x76\xaa\x4b\x73\xa8\x4b\x74\xa9\x4e\x75\xa9\x4e\x75\xaa\x46\ \x72\xa8\x3e\x6d\x9f\x3d\x6c\x9b\x3d\x6d\x99\x3c\x6e\x97\x42\x74\ \x9d\x47\x78\xa1\x53\x81\xa9\x60\x87\xae\x66\x88\xb4\x62\x86\xb0\ \x60\x89\xae\x6b\x96\xbb\x77\xa0\xca\x84\xa8\xd4\x89\xac\xd7\x8b\ \xb2\xd9\x88\xb5\xd9\x89\xb6\xd8\x8a\xb5\xd5\x88\xad\xd2\x86\xa6\ \xcf\x88\xa5\xce\x8e\xac\xd1\x8f\xb1\xd4\x92\xb5\xd8\x91\xb3\xd7\ \x94\xb4\xd8\x97\xb7\xda\x9b\xb9\xdc\x9f\xbb\xdd\x97\xb6\xd4\x83\ \xa2\xc2\x66\x7d\x9a\x1b\x32\x45\x3e\x5b\x6c\x82\xa1\xb2\x43\x5e\ \x72\x38\x4f\x65\x84\x98\xb3\x92\xa8\xc4\x88\xa5\xbe\x7a\x99\xb2\ \x7a\x96\xb3\x89\xa1\xc1\x6f\x83\xa1\x2f\x43\x5b\x21\x3a\x4f\x52\ \x70\x89\x8d\xae\xc8\x97\xbb\xd5\x8e\xb6\xcf\x81\xa8\xc4\x67\x8a\ \xaa\x5d\x7f\x9d\x7a\xa1\xbc\x8d\xb1\xd1\x9a\xb5\xd7\x9f\xb4\xd9\ \x9d\xb5\xd9\x99\xb5\xd8\x00\x00\x00\x5d\x75\x8d\x7f\x99\xb6\x79\ \x8f\xac\x25\x39\x53\x46\x63\x7b\x87\xac\xc5\x75\x9a\xb2\x41\x60\ \x73\x1c\x35\x49\x4e\x6b\x80\x78\x9b\xb5\x74\x9a\xb8\x79\x9c\xb7\ \x69\x83\x9a\x28\x42\x57\x46\x66\x7e\x64\x8a\xa5\x69\x93\xaf\x66\ \x95\xae\x87\xb8\xd0\x89\xb8\xd0\x90\xb7\xd3\x8c\xb0\xd0\x66\x88\ \xa7\x50\x75\x91\x89\xb2\xce\x8c\xb7\xd6\x92\xbb\xdb\x95\xba\xdc\ \x8e\xb5\xd5\x86\xaa\xc6\x7d\x9f\xb7\x7e\xa0\xb8\x87\xaa\xc7\x91\ \xb4\xd4\x90\xb5\xd7\x8f\xb7\xd9\x8c\xb8\xd9\x8f\xbb\xdb\x8d\xbb\ \xd8\x8d\xb7\xd3\x8c\xb2\xcc\x8e\xb6\xcf\x8d\xba\xd2\x8e\xbd\xd2\ \x90\xbc\xd2\x8e\xb9\xd0\x8c\xba\xd4\x8b\xba\xd6\x88\xaf\xca\x2e\ \x4a\x63\x1c\x34\x4a\x70\x90\xa6\x9b\xc0\xdc\x9d\xc2\xe4\x97\xbe\ \xe1\x96\xbb\xdb\x94\xb7\xd8\x93\xb6\xd8\x96\xba\xdb\x97\xb9\xd8\ \x97\xbb\xd7\x97\xc0\xd9\x96\xc2\xda\x9a\xc4\xdd\x9a\xc1\xda\x82\ \xa4\xbb\x2e\x4d\x63\x6a\x8c\xa5\x88\xad\xcd\x8b\xac\xd0\x7d\x98\ \xb8\x53\x6e\x89\x76\x96\xb0\x8b\xb3\xd0\x97\xbf\xde\x9b\xc0\xde\ \x99\xbc\xdd\x97\xbc\xdc\x95\xbf\xd9\x96\xbe\xda\x97\xbd\xde\x94\ \xbc\xdc\x94\xbb\xdb\x96\xba\xdb\x94\xb9\xdc\x8f\xb9\xd9\x8c\xba\ \xd7\x8a\xb9\xd7\x8a\xb9\xd9\x83\xb3\xd3\x83\xaf\xcf\x86\xab\xcf\ \x8a\xad\xd5\x8a\xac\xd8\x89\xaf\xdb\x80\xab\xd6\x7f\xa8\xd3\x80\ \xa7\xd2\x81\xa5\xce\x85\xa6\xd1\x80\xa0\xce\x74\x99\xc9\x69\x91\ \xbf\x63\x8e\xb9\x5f\x8c\xb3\x59\x88\xaf\x5b\x89\xb3\x57\x85\xb1\ \x53\x82\xab\x50\x7b\xa3\x4b\x73\x9a\x42\x6a\x94\x3d\x69\x92\x3b\ \x68\x94\x3e\x69\x9a\x43\x69\x9b\x42\x63\x94\x47\x66\x97\x45\x6a\ \x98\x4c\x74\x9e\x54\x7b\xa3\x5a\x7e\xab\x60\x7f\xb2\x63\x81\xb3\ \x6b\x89\xb7\x70\x92\xbc\x71\x95\xbd\x7a\x9a\xc4\x85\x9f\xcb\x8b\ \xa4\xd0\x8d\xa9\xd3\x8e\xad\xd4\x88\xaa\xcd\x7b\x9b\xbf\x62\x7c\ \x99\x20\x35\x46\x34\x4b\x59\x75\x90\x9f\x44\x5f\x6f\x51\x6c\x7f\ \x98\xb2\xca\x9c\xb7\xd2\x92\xb0\xcb\x97\xb5\xd2\x9b\xb7\xd6\x94\ \xad\xcf\x82\x98\xb8\x55\x68\x86\x37\x4f\x6a\x65\x80\x9a\x93\xb1\ \xcc\x9c\xbb\xd5\x97\xba\xd3\x92\xb5\xd0\x8a\xac\xcc\x8c\xac\xcd\ \x90\xb1\xd0\x91\xb2\xd3\x99\xb4\xd7\x9f\xb5\xd8\x9c\xb4\xd6\x9b\ \xb4\xd5\x00\x00\x00\x8e\xae\xca\x9b\xb9\xda\x92\xad\xd0\x71\x8c\ \xaa\x58\x78\x95\x7c\xa3\xbe\x9a\xc2\xda\x91\xb4\xca\x4f\x6d\x82\ \x2e\x4c\x60\x5d\x7e\x95\x85\xab\xc4\x8f\xb5\xcb\x51\x70\x82\x1e\ \x3d\x4d\x6c\x92\xa7\x90\xb9\xd3\x92\xbe\xd9\x75\xa2\xbc\x50\x7d\ \x97\x7f\xa9\xc4\x91\xb6\xd7\x93\xb5\xd8\x82\xa7\xc3\x3a\x5e\x77\ \x71\x93\xac\x92\xb6\xd3\x95\xbd\xdb\x97\xbd\xdd\x8e\xb3\xd0\x77\ \x95\xab\x38\x52\x62\x27\x42\x52\x46\x63\x7b\x6f\x8d\xaa\x8a\xaa\ \xc9\x8c\xb1\xd1\x8a\xb3\xd3\x8b\xb2\xd0\x87\xac\xc7\x5c\x7e\x96\ \x42\x5f\x78\x57\x75\x93\x6f\x93\xae\x74\x99\xaf\x6f\x90\xa2\x66\ \x89\x9c\x72\x9d\xb5\x80\xb1\xcc\x84\xb0\xce\x43\x63\x7d\x14\x33\ \x46\x53\x79\x8b\x94\xbc\xd4\x8f\xb7\xd2\x87\xad\xc8\x84\xa7\xc3\ \x88\xab\xc8\x91\xb1\xd0\x93\xb6\xd5\x91\xb7\xd4\x8c\xb6\xd3\x8a\ \xbb\xd4\x8d\xbe\xd8\x94\xbf\xdb\x94\xbe\xd7\x85\xac\xc1\x49\x6d\ \x7f\x5f\x86\x98\x8f\xb4\xce\x94\xb2\xd1\x82\x98\xb5\x37\x4f\x65\ \x3d\x5e\x73\x84\xac\xc5\x95\xba\xd7\x98\xbd\xd9\x97\xbb\xd9\x97\ \xbc\xdb\x9b\xc0\xdc\x9d\xc2\xde\x9b\xc2\xe1\x9a\xc2\xe2\x99\xbf\ \xde\x9a\xbd\xde\x9b\xbe\xdf\x99\xbf\xdc\x97\xc1\xd9\x96\xc0\xd8\ \x96\xc0\xd9\x96\xc0\xd9\x91\xbc\xd5\x96\xbb\xd7\x99\xb9\xda\x97\ \xb8\xdc\x93\xb7\xdb\x8c\xb6\xd9\x89\xb5\xd4\x8d\xb4\xd3\x94\xb7\ \xd6\x97\xb7\xda\x96\xb5\xda\x8c\xb0\xd5\x81\xa8\xcb\x7d\xa9\xca\ \x81\xab\xcb\x82\xab\xcb\x89\xaf\xd2\x89\xb0\xd5\x87\xaf\xd4\x85\ \xac\xcf\x80\xa9\xca\x7a\xa7\xc7\x7e\xab\xce\x81\xab\xd4\x7f\xa9\ \xd4\x7d\xa5\xd0\x7a\x9e\xc8\x75\x94\xc2\x6b\x8e\xbc\x64\x8d\xb8\ \x61\x8c\xb4\x5e\x85\xb1\x5c\x7e\xae\x58\x76\xa7\x4f\x6e\x9e\x45\ \x69\x96\x3e\x63\x91\x3a\x59\x8a\x40\x5a\x8f\x40\x5c\x91\x3e\x5f\ \x8f\x3e\x64\x90\x44\x6b\x95\x41\x67\x8f\x38\x56\x75\x15\x2b\x3d\ \x19\x2c\x39\x4c\x62\x6f\x38\x55\x60\x73\x93\xa3\x9a\xba\xd0\x9d\ \xbc\xd6\x9c\xbb\xd6\x9c\xbb\xd7\xa0\xba\xda\x9a\xb3\xd2\x90\xa7\ \xc6\x81\x99\xb7\x76\x92\xad\x88\xa5\xc0\x9a\xb8\xd1\x9a\xba\xd1\ \x9a\xbb\xd3\x97\xba\xd6\x97\xb8\xd9\x99\xb6\xd7\x97\xb4\xd4\x95\ \xb4\xd4\x99\xb6\xd7\x9b\xb3\xd6\x98\xb1\xd2\x98\xb2\xd0\x00\x00\ \x00\x96\xc0\xdd\x9d\xc2\xe3\x9c\xbf\xe0\x99\xbc\xdd\x97\xbc\xdc\ \x9c\xbf\xdd\xa6\xca\xe5\xa1\xc6\xde\x9e\xc1\xda\x95\xb7\xd0\x7d\ \xa3\xbb\x85\xad\xc5\x94\xbd\xd2\x78\x9c\xb1\x30\x56\x6a\x5e\x89\ \xa1\x92\xc0\xdb\x96\xc3\xdf\x8f\xbf\xd7\x7d\xa8\xc3\x40\x65\x84\ \x80\xa5\xc7\x95\xb9\xd9\x92\xb7\xd3\x6d\x92\xa8\x3f\x63\x77\x8c\ \xb0\xc9\x9b\xc2\xde\x9a\xc1\xdc\x8d\xb0\xc9\x4c\x67\x7a\x13\x2c\ \x3b\x26\x41\x52\x76\x95\xae\x80\xa0\xc0\x68\x8d\xab\x66\x8c\xab\ \x80\xa7\xc7\x86\xaa\xc8\x6a\x89\xa4\x1f\x3c\x52\x44\x61\x78\x79\ \x97\xb3\x69\x86\xa2\x3b\x56\x6d\x1a\x35\x46\x2d\x4d\x5f\x63\x8e\ \xa5\x7a\xad\xc8\x7f\xad\xca\x4e\x72\x8a\x1b\x3d\x51\x54\x7b\x90\ \x8b\xb3\xc9\x77\x9c\xaf\x4a\x6b\x7c\x3c\x5d\x72\x50\x72\x8c\x66\ \x88\xa4\x7d\xa3\xbd\x90\xb8\xd1\x89\xb6\xd1\x83\xb8\xd2\x83\xb8\ \xd2\x8b\xb8\xd2\x89\xb1\xc9\x80\xa5\xbc\x72\x97\xaa\x4a\x74\x86\ \x7c\xa2\xb9\x8e\xab\xc7\x72\x88\xa0\x17\x31\x45\x38\x5e\x71\x86\ \xb0\xc6\x8e\xb1\xca\x8c\xae\xc7\x8e\xb3\xcd\x8f\xb5\xd0\x8e\xb4\ \xce\x92\xba\xd4\x94\xbf\xdc\x96\xbf\xdf\x96\xbd\xde\x98\xbc\xdf\ \x99\xbe\xe0\x9e\xc2\xe1\x9c\xbf\xde\x9c\xc0\xdd\x9e\xc1\xdc\x9d\ \xc1\xdc\x9a\xc2\xdb\x99\xbf\xd9\x9d\xbd\xdd\x97\xb9\xdc\x8f\xb7\ \xd9\x8a\xb8\xd7\x8b\xbb\xd7\x91\xbc\xd8\x99\xbf\xdb\x9c\xbf\xdf\ \x98\xba\xdb\x8f\xb4\xd3\x86\xaf\xca\x83\xb0\xcb\x87\xb3\xce\x8b\ \xb4\xcd\x8c\xb1\xcd\x90\xb3\xd3\x90\xb4\xd5\x90\xb5\xd2\x8c\xb3\ \xcc\x84\xb0\xc7\x88\xb5\xcd\x8f\xb6\xd2\x8f\xb4\xd3\x8e\xb3\xd3\ \x8c\xb0\xd0\x8c\xad\xd2\x88\xab\xd2\x88\xaf\xd5\x8b\xb6\xd9\x8e\ \xb6\xdc\x91\xb5\xda\x91\xb2\xd8\x90\xb2\xd9\x89\xab\xd4\x84\xa5\ \xd0\x7f\x9c\xc9\x79\x95\xc5\x74\x93\xc3\x6a\x90\xbd\x62\x8a\xb4\ \x5d\x85\xae\x58\x80\xa7\x4e\x70\x90\x2d\x49\x5d\x17\x2f\x3f\x2d\ \x48\x56\x45\x65\x74\x93\xb5\xc8\x99\xbc\xd4\x9f\xbd\xda\xa1\xbd\ \xdb\xa1\xbb\xda\xa0\xba\xd9\x9b\xb4\xd1\x96\xad\xc9\x8a\xa2\xbe\ \x86\xa3\xbe\x92\xb2\xcc\x98\xb9\xd0\x9a\xbb\xd1\x9a\xb9\xd2\x9a\ \xba\xd6\x9b\xba\xdb\x9b\xb8\xd9\x9c\xb5\xd5\x9b\xb6\xd5\x9c\xb6\ \xd8\x9c\xb4\xd8\x9b\xb4\xd6\x97\xb2\xd0\x00\x00\x00\x95\xc3\xdf\ \x9d\xc4\xe5\x9f\xc4\xe3\xa1\xc4\xe5\xa3\xc8\xe7\xa8\xc9\xe7\xa9\ \xc8\xe5\xa8\xc8\xe5\xa0\xc2\xe0\x9b\xc0\xdd\x9b\xbf\xde\x9b\xc0\ \xe0\x9a\xc2\xdd\x95\xbc\xd7\x8a\xb2\xce\x8d\xb9\xd5\x97\xc0\xdd\ \x97\xc3\xdf\x93\xc5\xdb\x8d\xbb\xd5\x77\x9e\xbb\x40\x67\x85\x91\ \xb5\xd3\x99\xbe\xda\x95\xbc\xd3\x78\xa0\xb5\x8a\xb0\xc8\x9f\xc4\ \xe0\xa1\xc5\xdf\x91\xb4\xcc\x6f\x91\xa6\x3d\x5f\x72\x22\x46\x5c\ \x75\x9b\xb8\x92\xb5\xd7\x93\xb7\xd8\x7d\xa2\xc3\x64\x89\xab\x7d\ \xa3\xc2\x76\x94\xb3\x3b\x58\x73\x41\x62\x7d\x5a\x7b\x96\x66\x81\ \x9c\x3d\x54\x6e\x2f\x48\x5f\x3b\x5d\x73\x72\x9e\xb6\x7d\xae\xca\ \x80\xaa\xc9\x59\x7b\x97\x21\x44\x5c\x71\x97\xae\x8d\xb1\xc7\x44\ \x63\x77\x0b\x28\x39\x29\x48\x5d\x79\x9a\xb6\x82\xa7\xc3\x5b\x81\ \x99\x6a\x90\xa8\x8e\xb8\xd2\x85\xb5\xd0\x81\xb3\xcb\x81\xac\xc1\ \x5c\x7d\x92\x45\x64\x78\x65\x89\x9b\x77\xa1\xb3\x79\xa2\xb9\x82\ \xa1\xb9\x46\x5a\x6e\x0f\x2c\x3d\x59\x80\x94\x8b\xb1\xc7\x70\x8e\ \xa3\x54\x6e\x82\x6d\x89\x9c\x6d\x8a\x9e\x5f\x7f\x92\x7e\xa4\xb7\ \x8a\xb3\xca\x8b\xb2\xcc\x8c\xb1\xce\x91\xb8\xd6\x9a\xbf\xdf\x9f\ \xc0\xe0\xa0\xbe\xdf\x9f\xbd\xde\x9e\xbc\xdc\x97\xb8\xd4\x96\xb9\ \xd3\x99\xbc\xd6\x9c\xbc\xd9\x95\xb9\xd7\x8e\xb7\xd5\x8a\xb7\xd5\ \x8e\xbc\xd8\x95\xbf\xdb\x9a\xc1\xdd\x97\xbe\xdb\x92\xb7\xd4\x8d\ \xb0\xce\x87\xad\xc8\x8a\xb3\xce\x8b\xb3\xd0\x8e\xb3\xcf\x8d\xb1\ \xce\x91\xb4\xd2\x94\xb8\xd6\x93\xb8\xd3\x8e\xb5\xca\x8a\xb4\xc4\ \x90\xb8\xcd\x98\xb8\xd3\x9c\xb9\xd5\x9b\xba\xd7\x9a\xba\xd9\x9a\ \xb9\xdb\x99\xb8\xdc\x99\xba\xda\x9c\xbf\xdf\x96\xba\xdb\x96\xba\ \xd8\x94\xb9\xd6\x95\xb9\xda\x92\xb4\xd8\x92\xb4\xd7\x90\xb0\xd2\ \x8d\xaf\xd1\x8c\xaf\xd3\x8d\xb0\xd6\x8d\xb1\xd4\x8d\xb1\xd1\x8a\ \xad\xcc\x7f\xa6\xc0\x6e\x95\xab\x51\x75\x87\x53\x74\x85\x81\xa2\ \xb6\x98\xba\xd2\x9b\xbb\xd8\xa0\xbe\xdf\xa0\xbd\xdf\x9e\xbc\xdb\ \x9a\xb9\xd6\x9b\xb7\xd4\x96\xae\xca\x8b\xa5\xc0\x90\xac\xc7\x95\ \xb6\xcd\x95\xb9\xcf\x99\xb9\xd0\x9e\xba\xd4\x9f\xba\xd8\x9e\xbb\ \xdc\x9e\xba\xd9\xa0\xbb\xd7\xa0\xb8\xd7\xa2\xba\xdb\xa0\xb8\xdc\ \x9b\xb5\xd8\x96\xb4\xd6\x00\x00\x00\x96\xc0\xde\x9f\xc3\xe5\xa1\ \xc4\xe5\xa2\xc5\xe5\xa1\xc7\xe5\xa4\xc9\xe5\xa8\xc8\xe5\xa5\xc4\ \xe3\xa1\xc3\xe2\x9d\xc1\xe1\x99\xc0\xe2\x97\xbe\xe3\x94\xbe\xde\ \x93\xbd\xdd\x94\xbe\xe1\x91\xbf\xdf\x94\xc0\xdd\x94\xc3\xdd\x93\ \xc6\xdd\x92\xc2\xdd\x8d\xb8\xd4\x53\x7b\x96\x71\x93\xae\x9c\xbf\ \xdb\x9d\xc3\xde\x97\xbf\xdb\x97\xbf\xdb\x9f\xc3\xe2\xa2\xc4\xdf\ \x99\xbf\xd9\x89\xb5\xce\x81\xaf\xc7\x79\xa6\xc1\x80\xaa\xc9\x98\ \xbc\xde\x97\xba\xdb\x90\xb3\xd2\x77\x9c\xbb\x5e\x82\xa0\x8d\xae\ \xce\x7e\xa3\xc1\x62\x89\xa7\x58\x7f\x9b\x73\x92\xaf\x8f\xab\xca\ \x8a\xa8\xc7\x80\xa3\xc2\x6b\x94\xb1\x7b\xa8\xc5\x88\xb1\xd0\x68\ \x8d\xaa\x2d\x52\x6b\x88\xac\xc4\x93\xb7\xd2\x84\xa6\xc2\x5f\x84\ \x9c\x63\x8b\xa6\x83\xab\xcc\x8c\xb2\xd4\x86\xa9\xc8\x44\x66\x81\ \x6f\x95\xae\x88\xb2\xcc\x81\xab\xc4\x74\x9a\xb3\x3b\x5e\x73\x2c\ \x4f\x61\x78\x9f\xb2\x7f\xa9\xbf\x7c\xa4\xbc\x76\x92\xa7\x24\x38\ \x48\x15\x34\x43\x62\x8b\xa0\x81\xa5\xbf\x7a\x94\xac\x31\x47\x5a\ \x22\x34\x48\x27\x3d\x4f\x25\x3f\x50\x48\x66\x77\x7a\x9a\xaf\x6d\ \x8d\xa3\x5c\x7d\x95\x8b\xaf\xc8\x96\xbb\xd7\x99\xbc\xd9\x9a\xbb\ \xda\x94\xb5\xd6\x94\xaf\xd0\x83\xa1\xba\x88\xa7\xbd\x90\xb2\xcb\ \x93\xb3\xd0\x92\xb3\xce\x88\xaf\xc7\x89\xb2\xcb\x91\xba\xd5\x96\ \xbc\xd7\x92\xb7\xd2\x8c\xb2\xcd\x88\xac\xc9\x86\xa7\xc4\x81\xa1\ \xbb\x80\xa1\xbc\x86\xa8\xc4\x8d\xae\xcc\x8e\xaf\xcb\x8c\xb2\xc9\ \x8d\xb4\xcc\x8f\xb5\xcd\x91\xb6\xca\x93\xb5\xc8\x96\xb5\xcd\x9a\ \xb5\xd3\x9e\xb8\xd9\xa1\xbd\xde\x9b\xbc\xdb\x98\xb9\xd8\x9c\xba\ \xda\xa3\xbf\xe1\xa4\xc1\xe2\x9c\xbd\xde\x96\xba\xd9\x94\xba\xd8\ \x91\xba\xda\x90\xb7\xd8\x90\xb6\xd3\x8f\xb5\xd0\x90\xb7\xd2\x97\ \xba\xda\x9a\xbc\xdf\x9b\xba\xdc\x99\xb9\xd5\x96\xb7\xd0\x8e\xb5\ \xcd\x8a\xb3\xc9\x84\xac\xc3\x89\xae\xc5\x95\xb8\xd0\x97\xbb\xd7\ \x97\xba\xd9\x98\xba\xdc\x96\xba\xd9\x92\xb8\xd6\x8f\xb6\xd4\x92\ \xb3\xd2\x8f\xac\xc9\x89\xa5\xc0\x94\xb0\xcb\x97\xb6\xce\x99\xbb\ \xd4\x96\xb7\xd2\x9b\xb7\xd7\x9d\xb9\xda\x9b\xba\xdb\x9e\xbc\xda\ \x9e\xb9\xd6\x9e\xb7\xd8\x9e\xb7\xd9\x9e\xb8\xdc\x97\xb5\xd8\x8e\ \xb0\xd5\x00\x00\x00\x9a\xc0\xe2\x9e\xc1\xe5\xa0\xc3\xe6\x9c\xc1\ \xe2\x98\xc2\xdf\x9d\xc7\xe1\xa2\xc7\xe5\xa2\xc4\xe5\x9e\xc3\xe3\ \x9a\xc3\xe3\x95\xc1\xe4\x91\xbd\xe2\x8f\xbd\xdf\x8d\xba\xdc\x8f\ \xbb\xe0\x8e\xbb\xe0\x8f\xbd\xdd\x91\xc2\xda\x8f\xc1\xd9\x91\xc0\ \xdc\x8e\xbb\xd7\x71\x9d\xb6\x4a\x6f\x87\x95\xb6\xd1\x97\xbc\xda\ \x96\xbf\xdf\x96\xc1\xe2\x9b\xc2\xe4\x9e\xc2\xe3\x97\xc0\xe0\x8d\ \xbc\xda\x87\xb9\xd6\x88\xb8\xd7\x8b\xb8\xd9\x95\xb9\xd7\x93\xb5\ \xcf\x8c\xaf\xc6\x77\x9c\xb5\x51\x76\x8f\x6f\x95\xb0\x89\xb4\xd4\ \x89\xb5\xd6\x8a\xb6\xd6\x90\xb8\xd8\x95\xb7\xda\x90\xb4\xd8\x8c\ \xb4\xd7\x8b\xb5\xd5\x88\xb3\xd0\x8b\xb5\xd6\x7b\xa2\xbf\x27\x4d\ \x65\x7f\xa7\xbe\x93\xbc\xd9\x88\xb3\xd4\x80\xb0\xd0\x83\xb6\xd7\ \x83\xb4\xd7\x8b\xb5\xd8\x91\xb7\xd8\x68\x8b\xaa\x3e\x61\x7d\x81\ \xa8\xc3\x8a\xb1\xcd\x7e\xa7\xc5\x5c\x87\xa2\x40\x6c\x82\x6d\x98\ \xaf\x86\xb3\xcc\x87\xb1\xca\x6f\x8e\xa2\x15\x2c\x3a\x15\x36\x46\ \x5c\x8a\xa1\x71\x9a\xb8\x63\x82\xa1\x3e\x58\x73\x46\x5e\x77\x6c\ \x87\xa0\x71\x90\xa5\x6c\x8c\xa0\x5f\x7d\x95\x4b\x67\x81\x27\x46\ \x5f\x68\x8f\xa6\x8f\xb8\xd0\x93\xbc\xd4\x8d\xb3\xd1\x82\xa6\xc7\ \x78\x96\xb4\x46\x63\x78\x38\x5b\x6d\x6c\x93\xaa\x7a\x9f\xb9\x5a\ \x7b\x92\x4c\x71\x83\x63\x8c\xa1\x79\xa3\xbc\x7f\xa3\xbd\x63\x85\ \x9b\x59\x7e\x95\x75\x9a\xb4\x6f\x94\xaf\x5f\x80\x96\x44\x60\x74\ \x61\x7f\x96\x85\xa3\xbd\x8c\xaa\xc3\x82\xa4\xb5\x76\x9c\xac\x83\ \xa8\xba\x90\xb1\xc5\x94\xb0\xc5\x94\xb1\xc8\x97\xb5\xd1\x9c\xba\ \xd9\x97\xb8\xd7\x8d\xb4\xce\x8b\xb4\xcd\x95\xb7\xd5\x9d\xb9\xd8\ \x9b\xb8\xd6\x94\xb6\xd3\x8d\xb4\xd1\x8d\xb7\xd5\x8c\xb5\xd5\x90\ \xb6\xd5\x8e\xb3\xce\x8c\xb4\xcc\x90\xb7\xd1\x95\xb8\xd8\x9a\xbc\ \xe0\x97\xba\xdc\x98\xbb\xd7\x9a\xbb\xd4\x99\xba\xd6\x93\xb9\xd3\ \x90\xb7\xd1\x93\xb9\xd3\x98\xbb\xd7\x94\xb9\xd6\x92\xb9\xd7\x90\ \xb9\xd5\x8d\xb8\xd5\x8b\xb8\xd5\x8c\xb5\xd5\x8d\xb1\xd2\x87\xa8\ \xc7\x86\xa9\xc2\x92\xb5\xcb\x97\xb8\xd3\x9a\xbb\xd7\x94\xb8\xd6\ \x95\xb9\xda\x93\xb8\xd9\x92\xb7\xd7\x98\xba\xd8\x9a\xb8\xd7\x9c\ \xb8\xd9\x9c\xb9\xda\x9d\xb9\xda\x97\xb7\xd9\x8c\xb1\xd3\x00\x00\ \x00\x9d\xc1\xe2\x9d\xc0\xe3\x99\xc0\xe3\x94\xbe\xdd\x92\xbe\xdb\ \x96\xc0\xdd\x9e\xc4\xe5\x9a\xc2\xe6\x95\xc0\xe4\x91\xbf\xe1\x8e\ \xc0\xe0\x8b\xc0\xe0\x89\xbd\xde\x8d\xbb\xde\x8f\xba\xe1\x8d\xb9\ \xdf\x8c\xba\xda\x8e\xc0\xd8\x90\xc1\xd9\x8f\xbb\xd8\x8b\xb9\xd3\ \x7a\xab\xc0\x35\x5d\x73\x78\xa0\xb6\x8d\xb8\xd4\x8b\xba\xdc\x8e\ \xbe\xe2\x93\xc0\xe4\x91\xbc\xe1\x92\xbc\xdf\x91\xbd\xde\x8b\xbb\ \xdb\x89\xba\xda\x88\xb6\xd4\x88\xab\xc5\x66\x83\x97\x3e\x5c\x6e\ \x36\x58\x6a\x2a\x51\x63\x63\x90\xa7\x88\xb9\xd8\x91\xc0\xe2\x91\ \xbe\xdf\x8e\xbc\xd9\x8f\xb8\xd9\x8a\xb4\xd9\x8a\xb5\xdc\x8c\xb9\ \xdd\x8c\xba\xdb\x8d\xb8\xd9\x85\xac\xcb\x2f\x56\x6c\x6c\x98\xae\ \x89\xba\xd5\x83\xb5\xd8\x7e\xb2\xd6\x80\xb4\xd8\x84\xb5\xd8\x87\ \xb0\xd0\x88\xb0\xcd\x7e\xa2\xc1\x35\x59\x7a\x67\x90\xad\x88\xb5\ \xd3\x87\xb6\xd6\x86\xb5\xd4\x83\xb3\xcf\x84\xb2\xce\x87\xb7\xd4\ \x84\xb4\xce\x72\x99\xad\x1b\x39\x48\x15\x3b\x4d\x53\x83\x9c\x65\ \x96\xb5\x81\xa8\xc9\x80\xa3\xc4\x8a\xad\xcd\x90\xb6\xd4\x8f\xb9\ \xd3\x8d\xb8\xd1\x8e\xb6\xd2\x88\xac\xca\x6b\x91\xaf\x65\x91\xac\ \x85\xb5\xce\x8f\xbb\xd6\x87\xb2\xcf\x78\x9f\xc0\x60\x82\xa2\x30\ \x53\x6b\x28\x51\x67\x57\x83\x9c\x65\x8e\xa8\x39\x5d\x72\x15\x3b\ \x4c\x53\x7d\x90\x6f\x98\xb2\x72\x95\xb0\x3b\x5a\x71\x1b\x3d\x53\ \x2a\x50\x69\x47\x6e\x86\x46\x67\x7b\x17\x35\x45\x32\x4f\x62\x76\ \x96\xad\x86\xa3\xbb\x61\x7e\x90\x28\x49\x55\x31\x53\x5e\x43\x60\ \x70\x4a\x64\x75\x4a\x68\x79\x5f\x7e\x93\x74\x95\xac\x73\x95\xab\ \x68\x8f\xa4\x73\x9d\xb5\x86\xa9\xc3\x8d\xa9\xc2\x87\xa2\xbb\x82\ \xa5\xba\x81\xa8\xbf\x85\xaf\xc8\x8a\xaf\xcd\x91\xaf\xce\x89\xa7\ \xc1\x74\x98\xab\x7e\xa3\xb8\x91\xb4\xcf\x93\xb6\xd7\x93\xba\xdb\ \x94\xbc\xd7\x99\xbb\xd5\x9a\xb8\xd3\x95\xb7\xd2\x93\xb6\xd1\x96\ \xbb\xd7\x96\xb8\xd7\x95\xb8\xd7\x91\xb9\xd6\x8e\xb9\xd4\x8e\xbb\ \xd8\x8f\xb7\xd8\x92\xb5\xd7\x90\xb1\xd0\x89\xab\xc6\x8a\xb0\xc8\ \x91\xb7\xcf\x95\xb9\xd3\x96\xba\xd5\x94\xba\xd5\x92\xbc\xd7\x92\ \xba\xd8\x93\xb9\xd7\x96\xba\xda\x9a\xba\xdb\x98\xb8\xdb\x99\xb8\ \xdb\x9c\xb8\xd8\x97\xb5\xd5\x8f\xb1\xd2\x00\x00\x00\x99\xbf\xe0\ \x98\xbf\xe0\x96\xc1\xe1\x93\xc3\xe0\x92\xc4\xdf\x93\xc2\xe1\x98\ \xc4\xe6\x94\xc1\xe6\x8e\xbe\xe3\x8b\xbd\xe1\x89\xbe\xdf\x8a\xc0\ \xe0\x8d\xbf\xe2\x8f\xbb\xe0\x92\xba\xde\x90\xb9\xdd\x8d\xba\xdb\ \x8a\xbb\xd7\x91\xc0\xdd\x91\xbf\xdd\x8c\xbc\xd6\x83\xb1\xc8\x3e\ \x66\x7b\x61\x8b\xa0\x87\xb7\xd0\x86\xbd\xda\x88\xc1\xe0\x8c\xc1\ \xe2\x8b\xbd\xdf\x8d\xbb\xdc\x8e\xbd\xdd\x8b\xbd\xd9\x89\xbb\xd8\ \x89\xb5\xd2\x75\x96\xae\x29\x42\x56\x39\x52\x66\x6d\x8c\x9e\x30\ \x58\x67\x6c\x9d\xb1\x89\xbd\xda\x93\xc3\xe4\x92\xbf\xe0\x90\xc0\ \xdd\x8d\xbc\xdc\x8a\xb9\xdc\x86\xb7\xde\x84\xb8\xdf\x87\xb8\xda\ \x8c\xb9\xd8\x8c\xb5\xd0\x43\x6a\x83\x4e\x7b\x93\x84\xb7\xd1\x81\ \xb7\xd7\x81\xb6\xd8\x81\xb3\xd6\x81\xad\xcc\x60\x82\x9b\x53\x78\ \x8e\x66\x8d\xa8\x3f\x67\x86\x4e\x7b\x98\x81\xb4\xd1\x88\xbb\xd9\ \x88\xb7\xd6\x8b\xb7\xd4\x88\xb7\xd4\x82\xb5\xd2\x84\xb9\xd4\x7e\ \xad\xc6\x34\x5a\x6e\x1c\x45\x5a\x61\x91\xab\x5b\x8c\xab\x5f\x89\ \xa8\x83\xab\xc9\x89\xb2\xd2\x8f\xbb\xda\x8c\xbb\xd9\x89\xb9\xd6\ \x89\xb9\xd7\x89\xb7\xd3\x86\xb5\xd1\x87\xb7\xd1\x8a\xba\xd5\x8d\ \xba\xd8\x89\xb6\xd5\x88\xb3\xd2\x82\xab\xca\x7d\xa4\xc2\x7a\xa5\ \xc2\x82\xb1\xce\x86\xb0\xce\x75\x9c\xb6\x4d\x75\x8a\x63\x8b\xa2\ \x85\xad\xc9\x7f\xa6\xc3\x64\x87\xa2\x4f\x76\x90\x5f\x87\xa4\x53\ \x7a\x94\x34\x57\x6b\x26\x48\x59\x4c\x71\x87\x7a\xa0\xb8\x77\x97\ \xb3\x44\x61\x78\x1b\x3b\x4a\x4c\x6d\x7a\x60\x82\x92\x31\x53\x64\ \x29\x4a\x5c\x53\x77\x89\x47\x67\x7d\x2b\x4a\x5d\x24\x47\x5a\x47\ \x6e\x85\x5b\x7d\x94\x4e\x68\x7a\x31\x4a\x5a\x35\x54\x64\x59\x7f\ \x93\x6e\x93\xad\x7f\xa3\xbf\x8f\xac\xc9\x7d\x98\xb0\x43\x61\x71\ \x4c\x6d\x7d\x85\xa8\xbf\x8e\xb0\xce\x8c\xaf\xcd\x89\xad\xc5\x8c\ \xac\xc2\x91\xae\xc8\x92\xb2\xcc\x92\xb6\xd0\x96\xba\xd5\x97\xbc\ \xd8\x93\xb9\xd6\x8f\xb9\xd5\x8f\xbb\xd9\x92\xbb\xda\x92\xb8\xd9\ \x91\xb3\xd1\x91\xaf\xcb\x87\xa9\xc1\x8c\xb3\xcb\x91\xbb\xd1\x90\ \xba\xd2\x91\xb8\xd4\x8f\xb7\xd1\x8d\xb9\xd0\x90\xba\xd4\x95\xba\ \xd7\x94\xb8\xd7\x94\xb8\xd8\x95\xb9\xda\x98\xb9\xda\x9c\xb9\xd9\ \x99\xb7\xd6\x94\xb3\xd5\x00\x00\x00\x90\xbf\xdc\x8b\xbc\xd8\x91\ \xc1\xdc\x97\xc8\xe1\x97\xca\xe5\x95\xc6\xe4\x95\xc2\xe6\x96\xc4\ \xe8\x91\xc0\xe4\x8b\xbd\xdf\x89\xbc\xdd\x8b\xbe\xe0\x8c\xbd\xe1\ \x91\xbd\xe1\x97\xbd\xde\x94\xbc\xdd\x8d\xba\xdb\x8c\xbb\xdc\x90\ \xbe\xe0\x92\xc1\xe1\x90\xbf\xde\x84\xb1\xca\x3f\x66\x7d\x63\x8d\ \xa5\x83\xb3\xce\x85\xbc\xd8\x86\xbf\xd9\x8d\xc2\xdd\x8d\xc0\xdd\ \x8d\xbe\xde\x8c\xbc\xda\x8b\xbe\xd7\x8d\xbf\xd7\x90\xb9\xd5\x76\ \x97\xb0\x28\x42\x57\x44\x5d\x71\x46\x65\x76\x37\x61\x70\x84\xb4\ \xca\x8f\xbf\xdc\x95\xc2\xe1\x97\xc1\xe1\x91\xc1\xde\x8a\xbe\xdc\ \x88\xbb\xdc\x8a\xb9\xdf\x89\xba\xe0\x89\xba\xdb\x8c\xbc\xd8\x89\ \xb6\xd0\x68\x91\xaa\x2e\x5a\x72\x7f\xb2\xc9\x87\xbb\xd7\x88\xba\ \xd9\x8c\xbb\xd8\x80\xa5\xbd\x2c\x47\x5a\x25\x45\x56\x63\x8a\xa1\ \x67\x94\xae\x6d\xa0\xba\x7f\xb9\xd3\x82\xb9\xd6\x85\xb4\xd0\x79\ \xa0\xba\x63\x8d\xa6\x72\xa3\xbe\x81\xb7\xd5\x81\xb2\xd2\x5c\x83\ \xa0\x17\x3c\x56\x64\x8f\xa7\x80\xae\xca\x60\x8b\xaa\x5f\x89\xa9\ \x86\xaf\xcf\x8e\xb6\xd5\x8a\xb5\xd5\x80\xae\xce\x84\xb6\xd3\x8a\ \xbb\xd6\x89\xba\xd5\x8b\xbd\xd4\x8e\xbd\xd7\x8d\xbb\xda\x89\xb8\ \xd9\x8a\xb9\xd7\x8b\xb8\xd6\x8e\xb6\xd7\x92\xb9\xdb\x98\xbf\xe1\ \x97\xbf\xe0\x8d\xb6\xd4\x86\xb1\xc9\x89\xb2\xcb\x8d\xb6\xd4\x8b\ \xb4\xd2\x89\xb0\xcb\x86\xac\xca\x83\xaa\xcb\x7c\xa3\xc1\x76\x9b\ \xb7\x71\x96\xb1\x7a\xa2\xbd\x85\xad\xc7\x88\xaf\xc8\x80\xa4\xbe\ \x64\x87\x9e\x58\x7e\x92\x79\xa0\xb6\x77\x9c\xb6\x5f\x84\x9d\x6b\ \x92\xa7\x80\xa3\xb8\x70\x8f\xa5\x46\x69\x82\x5c\x82\x9e\x7f\xa6\ \xbe\x68\x87\x9a\x2f\x49\x5b\x3a\x58\x6c\x74\x98\xae\x7f\xa5\xbd\ \x6f\x94\xae\x74\x95\xb1\x6a\x87\x9f\x38\x54\x64\x25\x43\x51\x65\ \x86\x9b\x88\xa6\xc2\x7b\x97\xb1\x49\x65\x78\x3b\x57\x6a\x56\x73\ \x8d\x7f\xa0\xba\x8f\xb1\xcb\x97\xb6\xd1\x96\xb9\xd5\x92\xb9\xd5\ \x93\xbc\xd5\x96\xbe\xd9\x96\xbb\xd9\x96\xb8\xd6\x95\xb5\xd2\x8b\ \xab\xc5\x89\xaa\xc3\x8d\xb1\xcd\x8f\xb8\xd2\x8d\xb9\xd1\x92\xb8\ \xd7\x90\xb5\xd2\x91\xb7\xd3\x91\xb6\xd3\x94\xb7\xd5\x93\xb6\xd5\ \x91\xb5\xd7\x8d\xb5\xd7\x8f\xb5\xd5\x91\xb4\xd1\x91\xb4\xd0\x90\ \xb2\xd1\x00\x00\x00\x94\xc7\xdf\x8f\xc3\xdb\x92\xc3\xdd\x9b\xc6\ \xe5\x9b\xc8\xe8\x98\xc7\xe7\x96\xc4\xe7\x97\xc4\xe7\x96\xc3\xe5\ \x93\xc1\xe3\x8f\xbd\xdf\x91\xbd\xe1\x8e\xbd\xe0\x8f\xbc\xde\x92\ \xbc\xdd\x90\xbc\xdc\x8d\xba\xdb\x8c\xba\xdb\x8e\xbd\xdf\x8f\xbe\ \xdf\x89\xb7\xd6\x71\x99\xb7\x35\x5b\x78\x74\x9f\xbf\x88\xb7\xd8\ \x8c\xbc\xd9\x8f\xbf\xd7\x8d\xbf\xd6\x8a\xbe\xd7\x8f\xc0\xdd\x90\ \xbe\xdd\x8f\xc0\xd9\x8f\xc0\xd9\x8f\xbc\xd8\x8f\xb4\xd0\x77\x98\ \xb1\x41\x63\x78\x4b\x72\x84\x7c\xaa\xbb\x89\xbb\xd2\x8f\xc0\xda\ \x94\xc1\xdf\x94\xc0\xde\x8f\xbf\xdc\x8a\xbe\xdb\x8b\xbc\xdb\x90\ \xbb\xdf\x8e\xbb\xde\x8f\xbe\xdd\x8d\xbd\xda\x88\xb4\xd2\x81\xa7\ \xc5\x2e\x55\x6e\x6e\x98\xb0\x8d\xbc\xd7\x8d\xbe\xd9\x93\xbf\xd8\ \x89\xa9\xbf\x32\x46\x59\x21\x3c\x4e\x81\xa6\xbc\x8c\xb9\xd6\x83\ \xb9\xd6\x7a\xb9\xd7\x81\xbc\xdb\x83\xb2\xce\x3f\x66\x7f\x10\x3b\ \x53\x61\x92\xae\x85\xb9\xd7\x81\xb1\xd3\x79\x9f\xc1\x2b\x4c\x67\ \x46\x6a\x80\x8b\xb4\xcc\x8a\xb3\xd2\x60\x88\xa9\x70\x96\xb7\x8c\ \xb2\xd1\x88\xb1\xd4\x81\xae\xd1\x85\xb5\xd4\x89\xb9\xd4\x8c\xbc\ \xd8\x8d\xbb\xd6\x90\xbb\xd6\x8d\xbc\xda\x86\xb9\xda\x89\xb9\xd9\ \x8d\xbb\xd9\x92\xba\xda\x95\xba\xdc\x97\xbb\xdd\x94\xb9\xdb\x8e\ \xb7\xd6\x87\xb6\xd0\x87\xb7\xd3\x8b\xba\xd9\x8c\xba\xd8\x8f\xb8\ \xd2\x93\xb5\xd5\x8f\xb2\xd7\x89\xad\xd0\x81\xa8\xca\x7f\xa7\xc7\ \x83\xa9\xc9\x88\xaf\xcb\x88\xb0\xca\x85\xaf\xc9\x87\xae\xcc\x89\ \xaf\xcc\x8b\xb2\xce\x8b\xb0\xcf\x89\xad\xca\x89\xb3\xc8\x90\xb5\ \xcb\x8c\xac\xc9\x87\xa9\xc9\x83\xa8\xc8\x87\xaf\xcb\x80\xa4\xbd\ \x6c\x8d\xa4\x4f\x73\x89\x6c\x92\xa9\x8f\xb4\xce\x91\xb3\xcf\x82\ \xa4\xc4\x5f\x80\x9a\x35\x56\x69\x2b\x4b\x5c\x43\x66\x7a\x6f\x8d\ \xa7\x66\x80\x99\x2b\x44\x57\x3a\x58\x6c\x5c\x7f\x99\x4d\x72\x8d\ \x6e\x92\xae\x8c\xad\xcb\x92\xb5\xd1\x94\xb8\xd4\x96\xbc\xd6\x9c\ \xbe\xd9\x9c\xb9\xd6\x97\xb4\xd0\x96\xb2\xcc\x8c\xa9\xc3\x8f\xab\ \xc8\x90\xb0\xce\x91\xb6\xd4\x90\xb7\xd3\x94\xb7\xd6\x93\xb6\xd7\ \x93\xb6\xd4\x93\xb7\xd4\x92\xb6\xd3\x93\xb4\xd5\x8f\xb1\xd4\x8d\ \xb2\xd3\x8d\xb3\xd1\x8e\xb4\xcf\x8d\xb2\xcc\x8e\xae\xca\x00\x00\ \x00\x9b\xca\xe2\x96\xc8\xdf\x97\xc4\xe0\x9e\xc4\xe7\x9c\xc5\xe7\ \x98\xc5\xe6\x98\xc6\xe6\x96\xc6\xe4\x96\xc4\xe3\x95\xc3\xe5\x96\ \xc1\xe4\x95\xbe\xe0\x8c\xba\xda\x83\xb7\xd6\x84\xb6\xd5\x85\xb5\ \xd2\x88\xb7\xd4\x8c\xb8\xd7\x88\xb5\xd4\x84\xb2\xd1\x73\xa0\xbd\ \x40\x68\x88\x57\x82\xa3\x8a\xb7\xdb\x8b\xb9\xdd\x8e\xb9\xda\x95\ \xbd\xd9\x91\xbe\xd7\x8b\xbd\xd6\x90\xbe\xdb\x95\xbe\xe0\x95\xc1\ \xe0\x94\xc1\xdf\x90\xbd\xde\x8e\xba\xda\x8b\xb7\xd6\x87\xb5\xcf\ \x8c\xbc\xd3\x89\xbc\xd2\x89\xbc\xd4\x8e\xbf\xd8\x92\xbf\xdb\x90\ \xbb\xd9\x90\xbb\xdb\x8e\xbb\xdc\x90\xbc\xdc\x93\xbf\xdf\x91\xc1\ \xe0\x90\xc2\xdf\x8d\xbe\xdd\x8b\xb8\xd8\x8b\xb2\xd3\x5a\x7c\x9a\ \x47\x69\x87\x86\xb1\xd0\x90\xc0\xdc\x9a\xc4\xdc\x99\xb7\xcd\x47\ \x5b\x6f\x18\x33\x44\x7a\xa3\xb5\x8f\xbf\xda\x89\xbf\xde\x82\xbc\ \xde\x83\xbc\xdc\x89\xb9\xd5\x6d\x9c\xb4\x53\x84\x9e\x77\xab\xc7\ \x87\xba\xd7\x85\xb7\xd6\x84\xae\xcf\x5f\x82\x9e\x22\x43\x5a\x79\ \x9e\xb4\x92\xb8\xd4\x81\xa8\xc9\x53\x7c\x9c\x73\xa0\xbf\x84\xb2\ \xd5\x82\xb3\xd6\x82\xb4\xd3\x8b\xba\xd8\x8d\xb9\xd7\x8f\xb8\xd4\ \x90\xb8\xd4\x8d\xba\xd8\x87\xba\xd9\x83\xb7\xd7\x89\xb8\xda\x8e\ \xba\xdc\x91\xbb\xdc\x91\xb7\xd8\x94\xb7\xd8\x8f\xb5\xd6\x86\xb4\ \xd3\x82\xb3\xd4\x82\xb6\xd7\x85\xb7\xd8\x8d\xba\xd7\x95\xba\xdb\ \x91\xb6\xdb\x8c\xb4\xd7\x85\xb0\xd2\x84\xb1\xce\x85\xae\xcc\x86\ \xad\xca\x80\xaa\xc8\x7d\xaa\xc7\x83\xad\xcd\x88\xaf\xcf\x88\xb0\ \xcc\x8a\xb3\xce\x8b\xb4\xce\x8d\xb5\xcd\x90\xb6\xcf\x8f\xb3\xd0\ \x91\xb2\xd4\x93\xb4\xd4\x91\xb6\xd3\x8f\xb4\xd0\x87\xac\xc6\x84\ \xaa\xc3\x8b\xb1\xca\x96\xb9\xd6\x9b\xb9\xd9\x94\xb4\xd6\x90\xb3\ \xd1\x8b\xb0\xca\x89\xaf\xc5\x83\xaa\xc1\x7d\xa0\xba\x68\x86\xa0\ \x46\x64\x78\x53\x76\x8c\x76\x9c\xb6\x7c\xa2\xbf\x61\x88\xa5\x65\ \x8a\xa8\x83\xa7\xc5\x8d\xb1\xce\x95\xb8\xd3\x9c\xbb\xd7\x9b\xb8\ \xd6\x96\xb1\xce\x92\xac\xc7\x8f\xa9\xc1\x8f\xaa\xc4\x93\xb1\xcd\ \x93\xb4\xd1\x95\xb7\xd4\x9a\xb8\xd9\x99\xb8\xd9\x93\xb7\xd3\x8d\ \xb5\xce\x91\xb6\xd0\x95\xb4\xd5\x92\xb0\xd3\x8f\xb2\xd3\x8d\xb3\ \xd0\x8b\xb1\xcd\x8d\xb1\xce\x8e\xae\xcd\x00\x00\x00\xa2\xca\xe5\ \x99\xc8\xe1\x99\xc5\xe3\x9f\xc5\xe8\x9c\xc1\xe3\x99\xc1\xe2\x98\ \xc4\xe2\x97\xc6\xe0\x95\xc4\xe0\x96\xc1\xe2\x99\xc0\xe3\x97\xbe\ \xe1\x8d\xbb\xdb\x79\xad\xcc\x6e\xa2\xbf\x6d\xa0\xbb\x76\xa3\xc3\ \x80\xa8\xc9\x76\x9e\xbc\x5a\x84\xa0\x34\x60\x7b\x59\x86\xa5\x8a\ \xb8\xda\x8e\xbb\xe0\x8e\xbb\xdf\x8f\xbb\xdc\x93\xbc\xdc\x93\xbd\ \xdc\x8f\xbf\xd7\x95\xbf\xdb\x99\xbe\xe2\x97\xbf\xe4\x96\xc1\xe2\ \x92\xbf\xe0\x8f\xbe\xde\x8b\xbb\xdc\x90\xc0\xde\x92\xc3\xdc\x8d\ \xc1\xd8\x8a\xbe\xd8\x8a\xbd\xd7\x90\xbd\xda\x95\xbd\xdc\x94\xba\ \xdd\x93\xbc\xe0\x97\xc0\xe2\x95\xc3\xe3\x90\xc3\xe1\x8d\xc3\xe1\ \x8c\xbe\xdd\x8a\xb9\xd9\x8b\xb6\xd7\x87\xab\xcc\x4c\x6c\x8e\x66\ \x8d\xad\x8e\xbb\xd7\x9b\xc2\xdc\x9f\xbb\xd5\x5a\x6e\x83\x0f\x2a\ \x38\x6a\x93\xa1\x8e\xc0\xd5\x8f\xbf\xdc\x8b\xbc\xdd\x8c\xbf\xde\ \x8c\xbc\xda\x86\xb8\xd3\x82\xb7\xd3\x87\xbb\xd8\x8d\xbf\xd9\x8c\ \xbd\xd8\x88\xb8\xd5\x7c\xa5\xc2\x39\x5f\x78\x45\x68\x80\x90\xb3\ \xd0\x8c\xb1\xd2\x65\x92\xb1\x51\x80\x9f\x7e\xad\xcd\x80\xb2\xd3\ \x81\xb4\xd3\x86\xb5\xd4\x8b\xb7\xd4\x90\xb7\xd3\x93\xb8\xd6\x8e\ \xb7\xd8\x89\xb8\xd7\x85\xb6\xd6\x85\xb3\xd7\x89\xb7\xd9\x8e\xba\ \xda\x92\xb8\xd7\x93\xb4\xd7\x8e\xb3\xd7\x87\xb0\xd4\x84\xb0\xd7\ \x84\xb3\xd8\x87\xb6\xda\x8c\xb8\xd9\x92\xb9\xdb\x8f\xb7\xda\x8d\ \xb8\xd8\x89\xb6\xd3\x87\xb4\xcf\x88\xb0\xce\x88\xad\xce\x81\xab\ \xcb\x80\xab\xca\x84\xad\xce\x84\xad\xce\x85\xaf\xcc\x87\xb2\xcb\ \x8b\xb4\xcd\x8f\xb5\xcd\x90\xb5\xd0\x91\xb5\xd3\x92\xb3\xd5\x95\ \xb6\xd5\x93\xb7\xd5\x94\xb8\xd6\x91\xb6\xd2\x92\xb8\xd1\x90\xbb\ \xd1\x95\xbc\xd7\x96\xb9\xd9\x94\xb6\xd7\x94\xb7\xd7\x92\xb8\xd4\ \x8f\xb8\xd0\x8e\xb8\xd0\x8e\xb5\xd0\x8c\xae\xcb\x87\xa9\xc1\x84\ \xa9\xc2\x89\xaf\xc9\x8b\xb2\xce\x87\xae\xcd\x77\x9c\xbd\x67\x8b\ \xaa\x7e\xa3\xc0\x92\xb6\xd0\x97\xbb\xd6\x99\xb9\xd7\x95\xb3\xce\ \x91\xae\xc5\x8d\xa8\xbf\x8d\xac\xc4\x90\xb1\xcc\x94\xb4\xd1\x97\ \xb4\xd5\xa0\xb9\xdd\x9c\xb8\xdb\x93\xb6\xd5\x8c\xb5\xce\x8f\xb3\ \xce\x96\xb3\xd3\x95\xb0\xd4\x91\xb2\xd4\x8b\xb2\xd1\x86\xae\xce\ \x87\xae\xce\x88\xaa\xce\x00\x00\x00\xa5\xcb\xe8\x9d\xc8\xe5\x9c\ \xc3\xe4\x9d\xc2\xe4\x99\xbd\xdf\x97\xbb\xdb\x9a\xbf\xdb\x9d\xc8\ \xe0\x9a\xc5\xe0\x99\xc1\xe2\x9a\xc0\xe4\x99\xc1\xe5\x94\xbf\xe2\ \x8c\xbd\xdc\x88\xb8\xd4\x80\xb3\xcd\x77\xa6\xc6\x71\x9d\xbf\x69\ \x91\xb0\x67\x92\xab\x7e\xad\xc5\x91\xc1\xdc\x94\xc3\xe3\x94\xc2\ \xe2\x94\xc1\xe1\x91\xbf\xdd\x93\xc0\xdf\x91\xbf\xde\x93\xc2\xdc\ \x95\xc0\xdd\x9a\xc1\xe3\x99\xc4\xe7\x98\xc4\xe3\x94\xc3\xdf\x8f\ \xbf\xde\x8c\xbe\xdc\x90\xbf\xde\x91\xc1\xdc\x8f\xc1\xd8\x8b\xbd\ \xd6\x8a\xba\xd4\x92\xbd\xd9\x96\xbc\xdc\x97\xbc\xe0\x96\xc1\xe3\ \x95\xc2\xe4\x90\xc0\xe1\x8e\xc0\xdf\x8b\xc0\xdf\x89\xbe\xdd\x8d\ \xbd\xdd\x8e\xbb\xdc\x93\xba\xda\x89\xac\xcd\x48\x6e\x8c\x6a\x95\ \xaf\x97\xbb\xd5\x9b\xb5\xcf\x61\x74\x87\x0d\x24\x30\x5a\x7f\x8c\ \x96\xc1\xd5\x99\xc2\xdb\x94\xbf\xdc\x91\xc0\xdf\x8e\xbd\xdd\x8a\ \xbb\xda\x8b\xbc\xda\x8c\xbc\xda\x8e\xbe\xdd\x8b\xbf\xdc\x84\xbb\ \xd4\x7e\xae\xcc\x67\x8f\xae\x2e\x52\x6e\x72\x92\xb1\x8c\xae\xcf\ \x7a\xa2\xc2\x4d\x77\x97\x6f\x9b\xba\x80\xaf\xce\x84\xb3\xd5\x83\ \xb2\xd2\x84\xb1\xcf\x8c\xb3\xd2\x8f\xb4\xd3\x8c\xb2\xd5\x89\xb1\ \xd6\x86\xaf\xd5\x86\xaf\xd5\x86\xb3\xd4\x8b\xb7\xd5\x8f\xb7\xd2\ \x91\xb6\xd6\x8e\xb4\xd7\x87\xb1\xd6\x83\xb0\xd5\x85\xb3\xd8\x8c\ \xb7\xda\x91\xb7\xd7\x93\xb7\xd8\x92\xb9\xd9\x91\xb9\xd6\x90\xbb\ \xd3\x8f\xb9\xd3\x91\xb6\xd4\x8e\xb1\xd4\x88\xae\xcf\x86\xad\xca\ \x86\xae\xc9\x88\xb1\xce\x8a\xb0\xcd\x8c\xb1\xcc\x8c\xb1\xcb\x8e\ \xb4\xcc\x90\xb5\xcf\x92\xb7\xd4\x91\xb4\xd2\x91\xb4\xd1\x8e\xb3\ \xcd\x8e\xb4\xcc\x8c\xb2\xca\x90\xb6\xcd\x90\xba\xd0\x8d\xbb\xd3\ \x8f\xb8\xd4\x90\xb4\xd1\x91\xb5\xd3\x90\xb6\xd2\x8f\xb9\xd2\x91\ \xbb\xd5\x93\xba\xd5\x95\xb7\xd4\x97\xb8\xd6\x93\xb8\xd6\x91\xb8\ \xd6\x93\xb9\xd5\x94\xba\xd6\x90\xb4\xd2\x87\xab\xc9\x84\xa9\xc6\ \x90\xb5\xd0\x94\xb9\xd4\x91\xb6\xd0\x8f\xb2\xcc\x8c\xac\xc3\x88\ \xa8\xc1\x8b\xad\xc9\x91\xb4\xcf\x98\xb6\xd5\x9d\xb7\xda\x9d\xb7\ \xdb\x9a\xb7\xda\x94\xb5\xd6\x8f\xb2\xd1\x90\xb3\xd2\x94\xb2\xd4\ \x94\xaf\xd4\x91\xb1\xd3\x8a\xaf\xcf\x82\xac\xca\x80\xab\xca\x82\ \xa8\xcb\x00\x00\x00\xa6\xcb\xeb\xa5\xca\xeb\xa3\xc6\xe7\x98\xbf\ \xe1\x93\xbc\xdd\x95\xc0\xde\x9c\xc6\xe0\xa0\xcc\xe4\x9e\xca\xe3\ \x99\xc3\xe3\x96\xc1\xe5\x99\xc2\xe7\x96\xc2\xe6\x92\xbf\xe0\x8f\ \xbe\xd9\x8b\xbf\xd6\x8b\xc0\xdb\x92\xbf\xdf\x94\xbd\xdc\x93\xbf\ \xd9\x98\xc8\xe1\x96\xc6\xe0\x9b\xc7\xe5\x9a\xc7\xe4\x96\xc5\xe2\ \x91\xc2\xdf\x8f\xbf\xdc\x90\xbe\xdc\x93\xc2\xdf\x93\xc2\xde\x95\ \xc2\xe3\x95\xc2\xe3\x98\xc5\xe4\x95\xc4\xdf\x92\xc2\xdf\x8d\xbe\ \xdd\x8e\xbf\xdb\x91\xc3\xdb\x91\xc3\xda\x8e\xbf\xd9\x8f\xbd\xd9\ \x92\xbc\xd9\x96\xbc\xdd\x97\xc0\xe3\x97\xc4\xe6\x92\xc3\xe5\x8f\ \xc2\xe6\x8d\xbf\xe1\x8d\xbe\xe0\x88\xbe\xdd\x8b\xbf\xdf\x90\xbf\ \xe0\x94\xbd\xde\x92\xbb\xd9\x83\xaf\xcb\x50\x7e\x98\x69\x90\xa8\ \x92\xad\xc7\x64\x76\x8a\x0f\x25\x32\x59\x7b\x89\x95\xbc\xd2\x99\ \xbf\xdb\x92\xbb\xda\x92\xc1\xe1\x90\xbf\xdf\x8e\xbd\xdc\x8f\xbd\ \xdc\x8f\xbc\xdc\x8d\xbd\xdc\x86\xbe\xdc\x7d\xbb\xd6\x78\xaf\xcc\ \x78\xa5\xc5\x61\x86\xa7\x41\x63\x82\x76\x97\xb7\x7b\x9f\xbd\x4c\ \x6f\x8f\x66\x8e\xae\x80\xad\xcd\x84\xb1\xd3\x84\xae\xd1\x83\xaf\ \xd0\x85\xaf\xd0\x87\xae\xd0\x86\xac\xd0\x88\xac\xd4\x85\xab\xd3\ \x80\xab\xd0\x7e\xac\xcd\x82\xb3\xce\x87\xb5\xce\x8a\xb4\xd0\x89\ \xb3\xd4\x82\xaf\xd4\x82\xb1\xd4\x83\xb5\xd4\x8d\xb9\xd8\x94\xb8\ \xd5\x97\xba\xd7\x93\xba\xd6\x92\xbc\xd5\x92\xba\xd5\x95\xba\xd7\ \x93\xb6\xd5\x90\xb2\xd3\x8f\xb3\xd2\x8c\xb0\xcd\x8a\xb0\xcd\x86\ \xb0\xcd\x87\xb0\xcc\x89\xb1\xca\x84\xaf\xc8\x87\xb2\xca\x8b\xb2\ \xcc\x8b\xb1\xcd\x8a\xb0\xcd\x84\xaa\xc5\x7d\xa2\xb6\x7b\x9e\xaf\ \x84\xa7\xb9\x8b\xaf\xc3\x90\xb7\xcd\x8e\xb9\xd0\x8d\xb4\xd0\x8f\ \xb3\xd0\x8f\xb3\xd1\x91\xb6\xd3\x90\xb8\xd4\x94\xba\xd6\x99\xbc\ \xd8\x99\xbc\xd7\x9c\xbb\xda\x97\xba\xdc\x95\xba\xdb\x96\xbb\xd8\ \x96\xba\xd6\x96\xbb\xd7\x91\xb7\xd5\x92\xb6\xd3\x93\xb8\xd4\x93\ \xb8\xd4\x8e\xb4\xcf\x8c\xb0\xca\x86\xa7\xc0\x86\xaa\xc6\x8b\xb1\ \xcf\x94\xb5\xd4\x9a\xb9\xd7\x98\xb7\xd7\x9a\xb7\xd8\x99\xb7\xda\ \x96\xb4\xd8\x93\xb1\xd7\x90\xb0\xd6\x92\xb0\xd4\x8f\xb0\xd6\x8a\ \xaf\xd5\x87\xb0\xd1\x80\xad\xc9\x7c\xa8\xc6\x7f\xa6\xc8\x00\x00\ \x00\x9c\xc7\xe4\x9e\xc7\xe6\x9d\xc4\xe5\x95\xc2\xe3\x8f\xc0\xdf\ \x98\xc6\xe4\x9d\xca\xe5\x9e\xcb\xe4\xa2\xcd\xe7\x9d\xc9\xe6\x94\ \xc3\xe3\x94\xc4\xe3\x98\xc6\xe6\x95\xc4\xe2\x93\xc4\xdd\x91\xc5\ \xdc\x92\xc6\xe0\x9c\xc8\xe8\x9f\xc7\xe8\x9d\xca\xe8\x99\xc6\xe5\ \x97\xc5\xe2\x99\xc7\xe4\x9a\xc7\xe3\x97\xc8\xe2\x90\xc4\xdf\x93\ \xc2\xe0\x97\xc1\xe1\x96\xc4\xe1\x94\xc5\xe0\x95\xc5\xe0\x94\xc4\ \xdf\x96\xc5\xe0\x97\xc3\xe0\x94\xc3\xe2\x93\xc1\xdf\x95\xc3\xde\ \x95\xc7\xde\x93\xc5\xdc\x95\xc6\xe0\x94\xc2\xde\x94\xc0\xde\x97\ \xc0\xdf\x96\xc3\xe2\x94\xc6\xe5\x8f\xc4\xe3\x8e\xc3\xe4\x92\xc1\ \xe4\x8d\xbe\xdf\x88\xbe\xdc\x8a\xc2\xdf\x8b\xbf\xde\x92\xc0\xdf\ \x94\xbf\xde\x8e\xbc\xda\x8a\xb8\xd5\x75\x9f\xba\x5f\x82\x9d\x49\ \x65\x7d\x1e\x3b\x4e\x67\x8d\xa0\x8d\xb9\xd1\x90\xbd\xda\x90\xbe\ \xdd\x93\xc1\xe1\x93\xc2\xe2\x94\xc1\xe1\x94\xbe\xde\x96\xbf\xdf\ \x8e\xbe\xde\x83\xbc\xdc\x7d\xbb\xda\x7b\xb2\xd2\x7c\xa9\xcc\x7b\ \xa4\xc5\x62\x89\xa8\x44\x69\x87\x64\x86\xa4\x3f\x65\x82\x66\x91\ \xb0\x7f\xae\xd0\x7e\xab\xcf\x7c\xa8\xcc\x7e\xac\xcf\x80\xae\xd0\ \x81\xae\xcf\x83\xae\xd0\x87\xae\xd4\x86\xad\xd4\x7f\xac\xd1\x7b\ \xa8\xcd\x78\xa9\xc8\x7f\xb0\xc9\x83\xb1\xcc\x84\xb1\xcf\x81\xae\ \xd0\x82\xb1\xd1\x86\xb7\xd5\x8d\xb9\xd6\x91\xb6\xd1\x92\xb7\xd0\ \x90\xb9\xd2\x8e\xbb\xd3\x95\xbd\xd7\x9a\xbc\xda\x97\xb9\xd9\x92\ \xb6\xd6\x91\xb6\xd5\x8f\xb3\xd2\x8a\xb0\xd1\x8b\xb2\xd3\x8b\xb2\ \xd1\x89\xb2\xce\x83\xb0\xcc\x85\xb2\xca\x87\xae\xc8\x87\xae\xc9\ \x85\xac\xc8\x81\xa4\xbc\x67\x86\x98\x40\x5c\x6a\x64\x83\x94\x84\ \xa6\xbb\x8f\xb4\xcc\x90\xb6\xd0\x8e\xb3\xcf\x8a\xae\xcb\x8c\xb1\ \xcf\x8f\xb3\xd2\x91\xb6\xd4\x93\xb8\xd3\x96\xbb\xd3\x9b\xbd\xd7\ \x9b\xbb\xd9\x98\xba\xdc\x96\xba\xdb\x95\xb9\xd6\x92\xb7\xd1\x90\ \xb9\xd1\x92\xb9\xd2\x95\xba\xd3\x95\xb9\xd2\x94\xb8\xd2\x8d\xb2\ \xcc\x8d\xae\xca\x87\xa8\xc8\x87\xac\xcd\x8c\xb2\xd3\x94\xb6\xd7\ \x99\xba\xd7\x97\xba\xd6\x96\xb8\xd6\x94\xb6\xd7\x94\xb5\xda\x91\ \xb1\xd8\x91\xb2\xd9\x91\xb1\xd8\x89\xae\xd4\x86\xaf\xd4\x83\xaf\ \xd1\x80\xad\xcd\x80\xab\xcc\x85\xac\xcf\x00\x00\x00\x90\xc6\xde\ \x94\xc4\xe0\x95\xc3\xe3\x92\xc1\xe3\x92\xc5\xe3\x96\xc7\xe4\x99\ \xc9\xe6\x9b\xc9\xe6\x9b\xc7\xe4\x98\xc6\xe4\x90\xc3\xe1\x93\xc5\ \xe1\x95\xc5\xe0\x94\xc5\xdd\x91\xc4\xda\x94\xc3\xdb\x99\xc4\xe2\ \x9f\xc6\xe8\xa1\xc9\xe9\x9b\xc8\xe8\x97\xc4\xe6\x95\xc2\xe5\x99\ \xc7\xe5\x9e\xc7\xe5\x98\xc6\xe4\x91\xc3\xe2\x93\xc1\xe1\x9c\xc3\ \xe4\x99\xc4\xe2\x96\xc7\xdf\x93\xc6\xdb\x92\xc4\xd9\x93\xc3\xdc\ \x97\xc3\xe1\x97\xc2\xe1\x9a\xc3\xe3\x9b\xc4\xe4\x9b\xc6\xe3\x9b\ \xc7\xe2\x9c\xc7\xe3\x99\xc7\xe4\x96\xc4\xe2\x98\xc5\xe1\x98\xc7\ \xe2\x94\xc4\xe1\x92\xc3\xe3\x90\xc0\xe0\x91\xc0\xe0\x8e\xbe\xdc\ \x8d\xc0\xdb\x8c\xc3\xdc\x8a\xc2\xdd\x90\xc2\xe0\x95\xc1\xe0\x95\ \xc2\xe0\x92\xc2\xde\x93\xc1\xdc\x8f\xb8\xd2\x72\x97\xb0\x65\x8d\ \xa5\x84\xb2\xc9\x8c\xbd\xd7\x8e\xbe\xdb\x90\xc0\xdf\x95\xc2\xe2\ \x95\xc0\xde\x92\xbe\xde\x97\xbf\xdf\x99\xbf\xde\x94\xc1\xe0\x8b\ \xbf\xe0\x87\xbc\xdc\x87\xb7\xd8\x87\xb1\xd2\x85\xb1\xcd\x82\xaf\ \xca\x68\x92\xad\x40\x69\x87\x45\x71\x8d\x75\xa5\xc2\x7e\xb0\xd2\ \x7a\xac\xcf\x79\xab\xcd\x78\xac\xcc\x7d\xb0\xcf\x82\xb2\xd0\x84\ \xb3\xd0\x88\xb4\xd4\x8b\xb1\xd6\x86\xae\xd3\x7c\xa8\xcc\x77\xa9\ \xc9\x7d\xaf\xca\x80\xb1\xc9\x7e\xaf\xc9\x7c\xab\xcb\x81\xb0\xcf\ \x85\xb4\xcf\x8d\xb8\xd0\x8e\xb7\xcf\x8a\xb4\xcd\x8b\xb7\xcf\x8d\ \xb9\xd1\x92\xbc\xd5\x95\xba\xd7\x94\xb8\xd8\x90\xb9\xd6\x8f\xba\ \xd4\x8c\xb6\xd2\x8b\xb1\xd2\x8b\xb1\xd4\x8d\xb3\xd5\x8d\xb3\xd4\ \x89\xb1\xd0\x87\xb0\xc9\x87\xad\xc5\x87\xad\xc6\x89\xad\xca\x7f\ \xa1\xbd\x61\x80\x97\x36\x52\x65\x4e\x6e\x82\x78\x9b\xb3\x8c\xb2\ \xcb\x90\xb5\xcf\x8a\xaf\xca\x83\xab\xc7\x85\xb0\xcb\x87\xb1\xcb\ \x8b\xb2\xcd\x8f\xb4\xcf\x94\xba\xd3\x95\xba\xd4\x97\xb9\xd6\x93\ \xb7\xd4\x92\xb6\xd5\x91\xb4\xd5\x90\xb3\xd0\x8d\xb4\xcb\x91\xb7\ \xcd\x95\xb7\xcd\x94\xb7\xcd\x91\xb6\xce\x8f\xb2\xcd\x8d\xad\xcc\ \x87\xa8\xc9\x89\xae\xcf\x8d\xb3\xd1\x96\xb8\xd4\x9c\xba\xd5\x9a\ \xbb\xd5\x97\xb9\xd6\x94\xb7\xd8\x95\xb7\xdb\x8f\xb2\xd6\x8d\xb0\ \xd4\x8e\xb0\xd5\x8a\xaf\xd4\x85\xad\xd3\x86\xae\xd3\x86\xae\xd1\ \x89\xaf\xd2\x8c\xb0\xd3\x00\x00\x00\x89\xc1\xdc\x8e\xc1\xde\x92\ \xc1\xe0\x93\xc2\xe2\x95\xc4\xe2\x95\xc4\xe2\x93\xc2\xe2\x94\xc4\ \xe3\x94\xc1\xe1\x92\xc1\xe1\x8d\xc1\xdf\x92\xc6\xe0\x95\xc7\xdf\ \x94\xc4\xde\x94\xc3\xde\x94\xc1\xde\x96\xc1\xe1\x98\xc4\xe3\x99\ \xc6\xe4\x98\xc6\xe6\x96\xc3\xe6\x92\xc0\xe4\x9c\xc4\xe7\x9f\xc3\ \xe5\x9a\xc3\xe5\x94\xc3\xe4\x95\xc3\xe3\x9b\xc1\xe3\x99\xc1\xe1\ \x95\xc2\xde\x91\xc3\xd9\x91\xc3\xd9\x91\xc2\xdb\x93\xc3\xdf\x94\ \xc2\xe1\x96\xc1\xe2\x9a\xc3\xe4\x9a\xc2\xe3\x9c\xc4\xe4\x9d\xc4\ \xe4\x9b\xc3\xe5\x96\xc5\xe5\x96\xc5\xe3\x96\xc5\xe3\x96\xc3\xe4\ \x95\xc4\xe5\x90\xc0\xe0\x93\xc1\xe2\x91\xc0\xdf\x93\xc2\xde\x93\ \xc6\xdf\x8d\xc5\xde\x92\xc5\xe0\x96\xc2\xe0\x95\xbf\xdd\x94\xc3\ \xde\x96\xc3\xde\x98\xc1\xdc\x93\xbd\xd6\x8f\xbe\xd6\x92\xc2\xdd\ \x95\xc3\xe2\x95\xc3\xe1\x94\xc2\xdd\x97\xc3\xe0\x95\xc0\xdf\x91\ \xbd\xdd\x96\xbd\xde\x99\xc0\xdf\x9a\xc5\xe5\x96\xc5\xe4\x90\xc1\ \xde\x8f\xbd\xdb\x8e\xba\xd6\x8c\xbc\xd4\x87\xbb\xd1\x83\xb2\xcd\ \x79\xa6\xc6\x76\xa6\xc5\x81\xb3\xd0\x83\xb5\xd4\x7f\xb3\xd2\x7a\ \xb2\xd0\x7d\xb3\xd1\x86\xb7\xd4\x8a\xb9\xd5\x8a\xbb\xd4\x8d\xb7\ \xd6\x90\xb4\xd7\x8d\xb0\xd6\x85\xb0\xd3\x7d\xb1\xd1\x81\xb5\xd0\ \x85\xb6\xcd\x82\xb3\xcd\x82\xb1\xd0\x87\xb5\xd3\x8d\xb8\xd3\x93\ \xb9\xd3\x90\xb8\xd1\x89\xb8\xd1\x8d\xb9\xd2\x91\xb9\xd5\x95\xbb\ \xd7\x94\xb9\xd6\x91\xb8\xd7\x91\xb9\xd6\x8f\xb8\xd2\x8d\xb7\xd1\ \x8e\xb5\xd4\x8f\xb5\xd8\x8f\xb7\xd8\x8f\xb7\xd9\x8e\xb5\xd6\x8b\ \xb2\xcf\x8b\xb1\xca\x8a\xb0\xc9\x89\xaf\xca\x84\xaa\xc8\x76\x9a\ \xb8\x6c\x8d\xaa\x72\x95\xb0\x82\xa8\xc4\x8a\xb0\xcd\x8e\xb2\xcf\ \x87\xac\xc9\x82\xae\xc9\x82\xb3\xc9\x81\xb1\xc8\x83\xaf\xc8\x8c\ \xb3\xcd\x91\xb6\xd3\x8f\xb4\xd2\x8f\xb3\xd1\x90\xb4\xd2\x8e\xb1\ \xd4\x8d\xaf\xd3\x8a\xab\xcd\x8b\xaf\xcb\x8d\xb1\xcb\x92\xb2\xcc\ \x93\xb3\xcd\x8f\xb0\xcc\x93\xb1\xd1\x8d\xac\xcd\x8a\xac\xcc\x8d\ \xb2\xcf\x90\xb5\xd2\x96\xb8\xd2\x9b\xb9\xd4\x9c\xbb\xd6\x9a\xb8\ \xd8\x96\xb7\xd9\x90\xb4\xd6\x8c\xb4\xd4\x88\xb1\xd1\x8a\xb1\xd1\ \x8b\xaf\xd1\x89\xae\xd3\x89\xae\xd3\x89\xae\xd0\x8b\xb0\xd2\x8f\ \xb1\xd5\x00\x00\x00\x8d\xbe\xde\x90\xbf\xde\x92\xc1\xe0\x97\xc3\ \xe4\x94\xbf\xdf\x92\xbd\xde\x90\xbf\xdf\x94\xc2\xe2\x92\xc1\xe0\ \x8e\xc0\xde\x8d\xc1\xde\x8f\xc5\xde\x92\xc4\xdd\x93\xc2\xdf\x95\ \xc3\xe1\x94\xc4\xe2\x8e\xc0\xdd\x8f\xc1\xde\x90\xc2\xe0\x92\xc3\ \xe1\x92\xc1\xe3\x90\xbe\xe2\x9a\xc1\xe4\x9f\xc3\xe5\x9a\xc3\xe5\ \x94\xc2\xe4\x94\xc1\xe3\x94\xbf\xe0\x95\xbf\xe1\x93\xbf\xde\x90\ \xc2\xda\x8b\xc1\xd8\x89\xbe\xd7\x8c\xc1\xdb\x8d\xc1\xdd\x8f\xbf\ \xde\x92\xbf\xe0\x94\xbe\xdf\x94\xbf\xe0\x94\xbf\xe1\x91\xbe\xe1\ \x90\xc1\xe3\x8f\xc0\xe1\x91\xc0\xe0\x94\xc3\xe5\x93\xc5\xe6\x8e\ \xc3\xe3\x92\xc0\xe0\x93\xc1\xe0\x93\xc1\xe0\x93\xc3\xe0\x8f\xc5\ \xde\x92\xc4\xde\x95\xc1\xdd\x95\xbe\xdb\x95\xbf\xdc\x95\xbf\xdd\ \x96\xc0\xde\x93\xc1\xdc\x91\xc3\xdb\x92\xc1\xe0\x98\xc4\xe4\x9e\ \xc7\xe5\x9f\xc7\xe3\x9b\xc3\xe1\x99\xc1\xe0\x98\xc0\xe0\x9a\xc0\ \xdf\x9c\xc2\xe0\x9a\xc6\xe2\x96\xc6\xe1\x91\xc2\xdc\x8c\xbf\xd9\ \x8f\xbf\xda\x8f\xbf\xd7\x89\xbf\xd5\x88\xbb\xd5\x8a\xb9\xd8\x88\ \xb8\xd6\x89\xb8\xd7\x8c\xbb\xda\x85\xb8\xd6\x7e\xb6\xd3\x82\xb6\ \xd4\x8d\xba\xd8\x8f\xbb\xd6\x8c\xba\xd2\x90\xb9\xd4\x93\xb6\xd6\ \x94\xb8\xd9\x8d\xb9\xd9\x84\xb9\xd6\x83\xb8\xd3\x88\xb9\xd0\x8a\ \xb8\xd2\x8c\xb8\xd7\x91\xba\xd9\x95\xba\xd7\x99\xbc\xd6\x95\xbe\ \xd6\x8f\xbd\xd6\x92\xbe\xd6\x9a\xbf\xdd\x9a\xbe\xdc\x98\xbe\xdb\ \x94\xbb\xd9\x95\xba\xda\x94\xb9\xd7\x94\xba\xd6\x94\xb9\xd7\x92\ \xb7\xd9\x8d\xb9\xd9\x8c\xb9\xda\x8d\xb9\xda\x8e\xb7\xd7\x8d\xb5\ \xd1\x8c\xb8\xd0\x88\xb5\xd0\x86\xaf\xcf\x87\xad\xcf\x83\xa9\xc9\ \x82\xa9\xc9\x86\xad\xcd\x89\xb1\xd1\x8b\xb1\xd1\x87\xb0\xcd\x83\ \xb1\xca\x81\xb4\xc7\x7f\xb2\xc6\x83\xb1\xc9\x8c\xb1\xcc\x8f\xb2\ \xcf\x8b\xb1\xd0\x8c\xb1\xcf\x8e\xb2\xd0\x8c\xae\xd3\x89\xaa\xd1\ \x84\xa6\xcb\x86\xa8\xc8\x8a\xad\xcc\x8a\xaf\xcc\x8b\xad\xcb\x8e\ \xac\xcb\x91\xae\xcd\x8e\xac\xcb\x8c\xae\xcd\x8f\xb4\xd0\x91\xb6\ \xd1\x91\xb8\xd1\x93\xb8\xd2\x96\xb7\xd3\x98\xb7\xd7\x93\xb4\xd7\ \x8e\xb3\xd5\x87\xb0\xd0\x86\xaf\xce\x89\xaf\xcf\x8b\xaf\xcd\x86\ \xad\xcd\x86\xaf\xd0\x88\xb0\xd1\x8d\xb0\xd3\x8f\xae\xd2\x00\x00\ \x00\x92\xbe\xdf\x95\xc0\xe0\x94\xbf\xe0\x98\xc1\xe3\x95\xbc\xe1\ \x91\xbb\xde\x8f\xbc\xde\x92\xc0\xe0\x90\xbf\xde\x8e\xc1\xdc\x8c\ \xc1\xdc\x8c\xc3\xda\x91\xc5\xdb\x95\xc6\xde\x95\xc3\xdf\x97\xc6\ \xe3\x93\xc2\xe1\x8f\xc0\xde\x8f\xc1\xde\x8f\xc2\xde\x91\xc2\xe1\ \x92\xbf\xe0\x97\xc0\xe0\x9a\xc3\xe2\x95\xc3\xe2\x8e\xbe\xe0\x8d\ \xbe\xe0\x91\xbe\xe2\x93\xbf\xe4\x91\xbf\xe0\x8f\xc1\xd9\x8e\xc2\ \xd9\x8e\xc1\xd8\x8b\xc1\xd8\x8d\xc2\xda\x8f\xc0\xdd\x90\xbe\xde\ \x94\xbf\xe0\x92\xbd\xde\x8d\xbb\xdc\x8a\xbb\xdc\x8a\xbd\xde\x8b\ \xbd\xde\x91\xbf\xe1\x93\xc0\xe3\x8e\xc0\xe1\x89\xbe\xde\x8b\xbf\ \xdd\x8d\xbf\xdc\x8f\xbf\xde\x91\xc0\xdf\x92\xc1\xde\x91\xc0\xdb\ \x8e\xbd\xd8\x8e\xba\xd6\x90\xbc\xd8\x8f\xbc\xdc\x90\xbd\xdd\x90\ \xc0\xde\x8e\xbf\xd9\x8f\xbe\xde\x98\xc2\xe3\x9e\xc4\xe3\x9d\xc5\ \xe0\x9d\xc3\xe0\x9d\xc1\xe0\x9e\xc1\xde\xa0\xc0\xde\x9b\xc0\xde\ \x94\xbf\xdb\x91\xbf\xda\x8f\xbd\xd9\x89\xba\xd8\x8b\xbb\xd9\x90\ \xbe\xda\x8f\xbf\xda\x8f\xbf\xda\x8f\xbc\xda\x8b\xb9\xd8\x8d\xb9\ \xd8\x8e\xbb\xda\x89\xba\xd9\x7e\xb6\xd3\x85\xb8\xd7\x8f\xba\xd8\ \x8f\xb8\xd4\x8f\xb9\xd2\x91\xba\xd2\x96\xbc\xd7\x97\xbd\xdc\x92\ \xbb\xdb\x8a\xba\xd9\x88\xb8\xd3\x8f\xba\xd5\x94\xba\xd7\x92\xb9\ \xd8\x95\xba\xda\x97\xbc\xd7\x9a\xbf\xd9\x96\xbc\xd9\x96\xc1\xdd\ \x9a\xc1\xdd\x9d\xc1\xdf\x9c\xc0\xde\x9a\xc0\xdd\x94\xbd\xd9\x96\ \xbb\xd9\x97\xba\xdb\x90\xb6\xd6\x92\xb7\xd8\x92\xb8\xd8\x91\xba\ \xd9\x8e\xba\xd9\x90\xbc\xda\x91\xbc\xdb\x95\xbe\xdd\x90\xbd\xd8\ \x8c\xb9\xd4\x8c\xb5\xd4\x90\xb4\xd4\x90\xb4\xd5\x91\xb4\xd4\x8f\ \xb5\xd4\x8b\xb5\xd3\x8a\xb5\xd3\x88\xb4\xce\x89\xb5\xcb\x84\xb2\ \xc6\x85\xb4\xc9\x87\xb0\xcb\x8d\xb1\xcd\x94\xb5\xd2\x93\xb6\xd4\ \x8c\xb1\xcf\x8a\xb1\xcd\x88\xaf\xce\x86\xae\xcf\x83\xa7\xc9\x87\ \xab\xc8\x8a\xaf\xca\x8a\xaf\xcb\x87\xa9\xca\x8b\xaa\xca\x8f\xab\ \xc9\x90\xaa\xc8\x94\xb2\xd0\x91\xb5\xd1\x8e\xb7\xd1\x8a\xb7\xd0\ \x8c\xb9\xd1\x8f\xb7\xd3\x92\xb6\xd6\x90\xb2\xd5\x8f\xb2\xd5\x89\ \xb0\xcf\x8a\xae\xce\x89\xac\xcc\x88\xad\xce\x87\xb1\xd1\x83\xb1\ \xd1\x87\xb0\xd0\x8b\xaf\xd1\x90\xaf\xd3\x00\x00\x00\x92\xbf\xdf\ \x93\xc0\xe1\x93\xbf\xe2\x95\xbe\xe1\x97\xbe\xe2\x91\xbc\xdf\x8d\ \xbb\xdd\x8f\xbd\xdf\x8f\xbe\xde\x8f\xc1\xdd\x8d\xc4\xdd\x8d\xc5\ \xdb\x92\xc5\xdc\x94\xc6\xdf\x94\xc4\xe0\x98\xc6\xe3\x95\xc4\xe3\ \x92\xc2\xe2\x8f\xc0\xe0\x90\xc2\xe1\x92\xc2\xe0\x94\xc2\xe1\x95\ \xc1\xde\x93\xc2\xdf\x8f\xbf\xdf\x8d\xbf\xe1\x8e\xbf\xe1\x90\xbf\ \xe1\x93\xc1\xe4\x94\xc2\xe4\x92\xc1\xdf\x95\xc2\xde\x95\xc1\xde\ \x92\xc1\xdc\x94\xc2\xdd\x97\xc2\xe1\x9b\xc2\xe3\x9b\xc1\xe2\x95\ \xbe\xdf\x8f\xbc\xdd\x8b\xbb\xdd\x8b\xbc\xdd\x8e\xbe\xdf\x92\xbf\ \xdf\x93\xc0\xe0\x8d\xbe\xdd\x88\xbd\xda\x89\xbe\xd9\x89\xbd\xd9\ \x8c\xbb\xdb\x93\xbf\xdf\x96\xc1\xe0\x93\xbf\xdd\x8c\xb8\xd8\x88\ \xb7\xd4\x87\xb8\xd5\x89\xb9\xd7\x8a\xb9\xd9\x8a\xb9\xd8\x8a\xb9\ \xd7\x8c\xba\xda\x90\xba\xdb\x93\xbc\xda\x94\xbe\xdb\x97\xbe\xde\ \x9a\xbe\xdd\x9e\xc0\xdd\x9e\xbe\xdc\x96\xba\xd8\x92\xbb\xd6\x91\ \xba\xd3\x91\xba\xd4\x8b\xb7\xd3\x8a\xb8\xd7\x8e\xb7\xd7\x8f\xb7\ \xd7\x8f\xba\xd7\x8d\xb7\xd5\x8c\xb7\xd5\x89\xb5\xd3\x8b\xb7\xd5\ \x88\xb6\xd5\x84\xb6\xd4\x86\xb6\xd6\x8c\xb7\xd6\x90\xb6\xd4\x91\ \xb6\xd1\x93\xb7\xd1\x98\xbb\xd5\x98\xbd\xd9\x93\xb8\xd7\x8c\xb7\ \xd9\x88\xb6\xd6\x8c\xb5\xd3\x94\xba\xda\x95\xba\xdb\x95\xbb\xdc\ \x98\xbd\xd9\x99\xbd\xda\x98\xbf\xdd\x9d\xc2\xe1\x9e\xc2\xe1\x9f\ \xc1\xe1\x9c\xc0\xdf\x9a\xc1\xdc\x96\xc1\xda\x98\xbf\xd9\x96\xba\ \xd7\x91\xb9\xd6\x8d\xb9\xd6\x8f\xb9\xd6\x97\xbd\xd9\x99\xbe\xda\ \x98\xc0\xdb\x98\xc0\xdc\x9a\xc0\xde\x94\xbe\xda\x90\xbb\xd6\x92\ \xb8\xd7\x94\xb6\xd7\x97\xb6\xd7\x97\xb7\xd8\x96\xbb\xd7\x90\xbb\ \xd3\x8c\xba\xd1\x8f\xb9\xd0\x8d\xb6\xcd\x8c\xb4\xcd\x89\xb1\xca\ \x8a\xb0\xc9\x8c\xaf\xc8\x92\xb5\xce\x8f\xb4\xce\x8c\xb3\xcf\x88\ \xb1\xcb\x86\xb1\xca\x83\xaf\xc8\x85\xb0\xc8\x87\xaf\xc7\x8d\xb2\ \xcb\x91\xb3\xd0\x94\xb3\xd4\x94\xb0\xd1\x90\xaa\xcc\x90\xa9\xca\ \x93\xaf\xcf\x92\xb4\xd2\x90\xb6\xd5\x8e\xb7\xd4\x8a\xb7\xd3\x8c\ \xb6\xd3\x90\xb6\xd7\x8e\xb1\xd4\x8c\xae\xd3\x8d\xaf\xd1\x8c\xae\ \xd1\x8b\xad\xd3\x8a\xad\xd2\x87\xaf\xd1\x83\xb0\xd0\x88\xb1\xd1\ \x8b\xb0\xd1\x90\xaf\xd1\x00\x00\x00\x91\xbe\xdc\x90\xbf\xe0\x8f\ \xbc\xde\x94\xbd\xde\x97\xbe\xde\x91\xbc\xdc\x8c\xba\xda\x8c\xba\ \xdb\x90\xbe\xde\x92\xc3\xe0\x91\xc5\xdf\x90\xc2\xdb\x94\xc2\xdd\ \x93\xc2\xe1\x93\xc3\xe4\x94\xc2\xe5\x92\xc1\xe3\x90\xc1\xe3\x8f\ \xbe\xe0\x92\xc0\xe2\x92\xc0\xe0\x93\xc2\xe0\x92\xc1\xdc\x90\xc0\ \xdd\x8d\xbf\xdd\x91\xc0\xe1\x93\xc2\xe1\x91\xc1\xe0\x95\xc4\xe3\ \x94\xc2\xe4\x94\xc1\xe3\x99\xc2\xe5\x9a\xc1\xe5\x98\xc1\xe2\x9c\ \xc3\xe2\x9e\xc3\xe3\x9e\xc2\xe4\x9e\xc1\xe4\x9e\xc2\xe4\x99\xc0\ \xe2\x97\xbf\xe0\x94\xc0\xdf\x93\xc0\xe0\x95\xc1\xe1\x95\xc2\xe1\ \x90\xc0\xdd\x8e\xc3\xdb\x8e\xc1\xd9\x90\xbf\xdd\x91\xba\xde\x96\ \xbd\xe2\x97\xc0\xe1\x93\xbf\xdf\x8e\xbc\xde\x87\xb7\xd6\x82\xb8\ \xd2\x86\xb8\xd3\x8a\xb9\xd9\x8b\xba\xd9\x8d\xbc\xdd\x8a\xba\xdb\ \x89\xba\xda\x85\xb9\xd4\x88\xb9\xd6\x90\xbc\xdb\x97\xbc\xdb\x9a\ \xbf\xdb\x98\xbd\xd9\x95\xba\xd7\x95\xb9\xd7\x95\xb7\xd5\x94\xb7\ \xd7\x91\xb8\xd4\x8d\xb6\xd4\x8e\xb4\xd4\x8f\xb3\xd3\x8e\xb5\xd4\ \x8b\xb3\xd4\x8b\xb5\xd6\x88\xb5\xd5\x88\xb4\xd5\x88\xb2\xd4\x86\ \xb2\xd3\x86\xb4\xd4\x89\xb6\xd2\x8e\xb4\xd1\x8d\xb2\xcf\x90\xb5\ \xcf\x92\xb6\xd0\x91\xb6\xd1\x8f\xb6\xd5\x89\xb4\xd8\x84\xb2\xd6\ \x88\xb2\xd5\x8f\xb7\xda\x91\xb7\xda\x92\xb9\xdc\x94\xb8\xd8\x95\ \xb9\xda\x97\xbd\xdf\x9c\xc0\xe2\xa0\xc0\xe3\x9f\xc2\xe3\x9c\xc1\ \xdf\x96\xc1\xd8\x94\xc1\xd7\x93\xbd\xd5\x94\xbb\xd4\x95\xbd\xd6\ \x90\xbd\xd7\x93\xbd\xd7\x9a\xbf\xd8\xa1\xc2\xda\xa1\xc7\xde\x9e\ \xc4\xdd\x9d\xc2\xde\x97\xbf\xdc\x94\xbc\xd9\x96\xb9\xd9\x99\xb6\ \xd9\x97\xb5\xd7\x97\xb7\xd6\x97\xba\xd5\x92\xbb\xd0\x8f\xbb\xce\ \x92\xba\xd0\x92\xb7\xd2\x8f\xb4\xce\x8d\xb2\xcc\x8c\xb1\xc9\x8e\ \xb3\xc8\x8f\xb4\xcb\x8c\xb2\xcc\x88\xb1\xcd\x85\xb0\xcc\x82\xae\ \xc8\x83\xb1\xc9\x84\xb3\xc8\x8c\xb6\xcc\x90\xb5\xd0\x92\xb4\xd4\ \x96\xb3\xd4\x99\xb1\xd3\x97\xab\xce\x91\xa9\xcc\x91\xaf\xcd\x8f\ \xb1\xd1\x92\xb5\xd8\x92\xb6\xd8\x8d\xb4\xd5\x87\xb2\xd2\x8c\xb5\ \xd5\x8b\xb1\xd2\x89\xad\xd1\x90\xb0\xd6\x90\xb1\xd8\x90\xb1\xd8\ \x8f\xb1\xd7\x8d\xb1\xd2\x8b\xb1\xd1\x8e\xb2\xd3\x8c\xae\xd1\x8c\ \xaa\xce\x00\x00\x00\x8d\xb8\xd9\x8d\xba\xdb\x90\xbb\xdb\x96\xbc\ \xdd\x98\xbd\xdc\x90\xb9\xd8\x89\xb6\xd4\x8f\xb9\xd8\x92\xbc\xdd\ \x91\xbf\xdf\x90\xc0\xde\x90\xbe\xdd\x94\xbe\xe0\x92\xbc\xe0\x8d\ \xba\xe0\x8a\xbb\xdf\x89\xbc\xdd\x8d\xbd\xde\x8f\xbd\xde\x8f\xbc\ \xde\x91\xbb\xdf\x8e\xbb\xdc\x8d\xbb\xdb\x8c\xbb\xdb\x8f\xbc\xde\ \x93\xbf\xdf\x94\xc2\xdf\x8f\xc1\xde\x8f\xbf\xdf\x92\xc1\xe3\x93\ \xc1\xe3\x93\xc0\xe4\x95\xc0\xe5\x97\xbf\xe2\x9a\xc1\xe1\x9c\xc2\ \xe2\x9b\xc2\xe3\x9b\xc4\xe5\x9e\xc6\xe8\xa0\xc4\xe5\x9c\xc1\xdf\ \x9a\xc2\xe0\x94\xc2\xdf\x90\xc2\xdf\x91\xc2\xe1\x92\xc1\xe0\x92\ \xc3\xde\x91\xc1\xda\x92\xbe\xdd\x94\xba\xdf\x94\xbb\xe0\x91\xbe\ \xdd\x8f\xbf\xdd\x91\xbf\xdf\x8d\xbc\xdb\x87\xbb\xd7\x85\xb9\xd2\ \x8a\xba\xd6\x86\xb5\xd4\x8c\xbb\xda\x8b\xbe\xdc\x84\xbc\xdb\x7f\ \xbc\xd8\x84\xbc\xd9\x90\xbe\xdd\x94\xbc\xdd\x9d\xc1\xe1\x9c\xc1\ \xe2\x97\xbc\xdc\x9a\xbe\xdd\x95\xb9\xdb\x96\xbb\xdc\x92\xba\xd7\ \x93\xba\xd8\x94\xb9\xda\x93\xb7\xda\x8f\xb7\xd7\x8c\xb7\xd7\x88\ \xb5\xd7\x83\xb4\xd6\x82\xb2\xd5\x86\xb3\xd4\x89\xb2\xd2\x88\xb4\ \xd4\x8a\xb4\xd3\x8b\xb3\xd0\x8b\xb3\xce\x8d\xb4\xcc\x8b\xb3\xcc\ \x8b\xb1\xcf\x8b\xb1\xd3\x85\xaf\xd2\x84\xaf\xd3\x89\xb1\xd6\x8a\ \xb1\xd3\x8e\xb4\xd6\x8d\xb5\xd5\x8f\xb4\xd6\x92\xb7\xd9\x94\xb9\ \xdc\x9a\xbd\xdf\x9e\xc0\xe2\x9d\xc1\xe2\x9c\xc1\xde\x98\xbf\xd7\ \x95\xbf\xd6\x93\xbc\xd5\x93\xba\xd5\x95\xbc\xd6\x96\xbf\xd8\x9a\ \xc0\xd9\xa0\xc0\xd9\xa2\xc2\xda\x9f\xc5\xdc\x9d\xc6\xdd\x9e\xc4\ \xe0\x9c\xc1\xe0\x98\xbe\xdf\x96\xba\xdc\x96\xb7\xd9\x94\xb6\xd8\ \x98\xb7\xd7\x9c\xbb\xd5\x95\xbb\xd0\x8f\xb8\xce\x90\xb6\xd0\x91\ \xb6\xd3\x91\xb5\xd1\x8f\xb5\xce\x92\xb6\xcc\x8e\xb5\xc9\x8d\xb1\ \xc8\x8d\xb0\xcb\x8b\xb0\xcf\x85\xae\xcd\x86\xaf\xcd\x89\xb2\xcc\ \x8b\xb5\xcc\x90\xb6\xd1\x92\xb6\xd3\x93\xb4\xd5\x99\xb4\xd6\x98\ \xaf\xd2\x90\xa8\xc9\x8e\xab\xca\x8d\xb1\xcd\x8b\xb3\xd0\x90\xb5\ \xd8\x91\xb4\xd9\x8c\xb1\xd7\x84\xaf\xd3\x85\xaf\xd0\x84\xaf\xcf\ \x87\xaf\xd2\x8e\xb0\xd6\x92\xb1\xda\x92\xb2\xd9\x8f\xb1\xd6\x92\ \xb3\xd4\x96\xb5\xd6\x95\xb3\xd6\x90\xaf\xd5\x8c\xad\xd5\x00\x00\ \x00\x8c\xb6\xd9\x8d\xb5\xd9\x92\xb8\xdc\x97\xbd\xdd\x9a\xbc\xde\ \x91\xb5\xd8\x8b\xb2\xd5\x8f\xb4\xd8\x8e\xb6\xd9\x8c\xba\xdc\x89\ \xbb\xdc\x89\xb9\xda\x8e\xb9\xde\x90\xb9\xdf\x88\xb6\xdc\x84\xb6\ \xda\x87\xb6\xd9\x8d\xba\xdb\x8c\xb9\xd8\x8a\xb7\xd8\x88\xb7\xd9\ \x8a\xb9\xda\x89\xb7\xd8\x89\xb5\xd7\x90\xb7\xdd\x92\xbb\xdd\x8e\ \xbc\xdc\x8c\xbe\xdb\x8b\xbb\xdc\x90\xbc\xde\x8e\xbc\xdc\x8d\xbf\ \xe0\x90\xbe\xe2\x92\xbf\xe2\x93\xbf\xdf\x93\xbf\xde\x8f\xbe\xdd\ \x8c\xc0\xdd\x91\xc3\xe1\x95\xc3\xe1\x97\xc0\xdd\x98\xc1\xdd\x93\ \xc1\xdd\x8b\xbe\xdd\x88\xbc\xde\x8e\xbd\xe0\x90\xbe\xdf\x90\xbe\ \xdc\x8e\xbb\xda\x8e\xb8\xdb\x8e\xba\xdd\x90\xbe\xdc\x91\xbf\xde\ \x91\xbe\xdf\x90\xbf\xdf\x8d\xbc\xdb\x89\xb9\xd6\x88\xb7\xd7\x82\ \xb2\xd3\x89\xb9\xd9\x8a\xbd\xdb\x86\xbc\xdd\x81\xbb\xdc\x88\xbc\ \xdd\x90\xbe\xe0\x94\xbf\xe3\x99\xc2\xe6\x9b\xc4\xe7\x97\xc0\xe1\ \x96\xbf\xe1\x93\xbf\xe2\x90\xbe\xde\x8f\xbc\xd9\x95\xc0\xdd\x96\ \xbf\xdf\x94\xbd\xde\x8d\xba\xd7\x8a\xb9\xd5\x8c\xba\xd9\x88\xba\ \xdb\x84\xb7\xd8\x87\xba\xd7\x8a\xbb\xd6\x89\xb9\xd5\x8d\xb7\xd6\ \x91\xb6\xd7\x8f\xb5\xd3\x8d\xb6\xd1\x89\xb6\xd0\x87\xb4\xd3\x88\ \xb2\xd5\x86\xaf\xd2\x89\xb0\xd2\x89\xaf\xd1\x8b\xb1\xd2\x8d\xb3\ \xd2\x8a\xb4\xd1\x8b\xb5\xd3\x8d\xb7\xd6\x92\xb7\xd8\x97\xba\xdb\ \x98\xbd\xdf\x9b\xc1\xe2\x9a\xbf\xdd\x9b\xc0\xdb\x99\xc0\xda\x97\ \xbf\xd8\x95\xbc\xd8\x98\xbd\xda\x9a\xbf\xdb\x9d\xbe\xd8\xa1\xbe\ \xd9\xa0\xbe\xda\x9f\xc3\xdf\x9c\xc6\xe0\x9b\xc5\xe2\x9c\xc4\xe3\ \x9c\xc2\xe2\x97\xbd\xdc\x94\xb9\xd9\x94\xb8\xda\x99\xbb\xdb\x9b\ \xbd\xd8\x97\xbb\xd4\x92\xb6\xd2\x8f\xb3\xd3\x92\xb6\xd8\x94\xb9\ \xd5\x96\xba\xd4\x96\xb9\xd1\x8f\xb6\xcc\x8f\xb3\xcc\x90\xb0\xd0\ \x8d\xb1\xd3\x87\xb0\xd0\x8a\xb2\xd1\x8c\xb2\xcf\x8f\xb4\xd0\x90\ \xb3\xd0\x91\xb4\xd4\x99\xb7\xd8\x99\xb2\xd5\x92\xab\xce\x8b\xa7\ \xc7\x8a\xad\xcb\x86\xb1\xc9\x85\xb3\xce\x8a\xb3\xd5\x8b\xb1\xd6\ \x87\xae\xd5\x86\xad\xd3\x88\xae\xd3\x86\xb0\xd3\x88\xb1\xd4\x8b\ \xb1\xd6\x8f\xb0\xd8\x91\xb1\xd9\x91\xb5\xd7\x94\xb6\xd9\x99\xb6\ \xd9\x9b\xb4\xda\x93\xb0\xd8\x8e\xaf\xd7\x00\x00\x00\x8c\xb8\xda\ \x8a\xb5\xd8\x90\xb9\xde\x95\xbc\xdf\x9a\xbd\xe1\x95\xb9\xdd\x8e\ \xb5\xdc\x8e\xb4\xdb\x8c\xb5\xda\x89\xb8\xd9\x87\xb6\xd7\x84\xb5\ \xd5\x8b\xb8\xdb\x8b\xb9\xdd\x87\xb7\xda\x84\xb6\xda\x87\xb4\xd9\ \x8c\xb8\xd9\x89\xb6\xd6\x83\xb3\xd3\x82\xb5\xd3\x86\xb8\xd7\x87\ \xb4\xd8\x85\xaf\xd5\x8b\xb2\xdb\x8f\xb7\xdc\x8c\xba\xda\x8c\xbb\ \xda\x8d\xb8\xd8\x91\xb9\xda\x8d\xb9\xd7\x8f\xbe\xdd\x8f\xbc\xdf\ \x8f\xbc\xe1\x8d\xbb\xde\x87\xb8\xd7\x82\xb6\xd5\x80\xb7\xd6\x87\ \xbb\xd9\x8b\xbd\xd9\x8c\xba\xd6\x90\xba\xd8\x91\xbc\xdc\x8b\xb9\ \xdc\x87\xb7\xdc\x8c\xb8\xdd\x8f\xb7\xdb\x8b\xb6\xd7\x86\xb5\xd5\ \x89\xb7\xda\x8a\xb7\xda\x91\xbd\xdb\x90\xbd\xdc\x8c\xbb\xdb\x8c\ \xbd\xdc\x8c\xbb\xdc\x87\xb5\xd6\x87\xb4\xd9\x89\xb7\xdd\x88\xb6\ \xda\x8b\xb9\xdb\x89\xb8\xdb\x88\xb9\xdc\x8e\xbc\xde\x93\xbd\xe0\ \x95\xbe\xe2\x95\xc1\xe5\x95\xc0\xe3\x92\xbe\xdf\x90\xbd\xdf\x92\ \xbf\xe1\x91\xc0\xe0\x8d\xbd\xdb\x92\xc1\xdf\x96\xc0\xe0\x94\xc0\ \xdf\x8e\xba\xd7\x8c\xba\xd5\x92\xbe\xda\x8c\xbd\xdc\x87\xbd\xdb\ \x85\xbd\xd6\x8a\xc0\xd6\x8f\xbf\xd8\x91\xbc\xd9\x95\xb9\xd9\x94\ \xb5\xd7\x91\xb7\xd8\x89\xb7\xd5\x87\xb6\xd6\x8a\xb7\xd7\x8a\xb5\ \xd6\x8d\xb6\xd6\x8d\xb6\xd4\x8b\xb5\xd3\x8b\xb5\xd4\x8f\xb6\xd3\ \x92\xba\xd4\x92\xbb\xd5\x97\xba\xda\x98\xb9\xd9\x97\xbc\xdb\x98\ \xbd\xdf\x9e\xbf\xe1\x9d\xbf\xdf\x9b\xc0\xdd\x98\xbe\xdb\x99\xbd\ \xdd\x98\xbc\xdc\x9e\xbe\xdf\xa0\xbf\xdd\xa1\xbe\xd9\xa2\xbf\xdd\ \xa3\xc2\xe2\x9f\xc3\xe3\x9c\xc4\xe1\x9c\xc3\xe0\x9e\xc2\xdf\x9c\ \xc1\xdd\x96\xbc\xdb\x95\xbc\xd9\x9b\xbf\xdc\x99\xbf\xd9\x97\xbb\ \xd6\x97\xb8\xd7\x98\xb8\xdb\x97\xbb\xda\x99\xbb\xd7\x9d\xbb\xd6\ \x9a\xb9\xd3\x91\xb5\xd0\x90\xb4\xd1\x91\xb1\xd4\x8f\xb2\xd2\x8c\ \xb4\xd1\x8e\xb6\xd0\x8f\xb5\xd1\x91\xb5\xd3\x92\xb4\xd3\x95\xb5\ \xd6\x99\xb5\xd5\x96\xb0\xcf\x90\xab\xca\x8a\xa9\xc8\x89\xad\xcd\ \x86\xb0\xcc\x84\xb1\xce\x86\xb1\xd0\x86\xad\xd1\x84\xac\xd1\x88\ \xad\xd2\x88\xab\xd1\x88\xae\xd1\x87\xb1\xd2\x86\xb1\xd3\x8c\xb0\ \xd5\x91\xb0\xd7\x8d\xb3\xd6\x91\xb4\xd8\x98\xb5\xd9\x99\xb1\xd7\ \x97\xb1\xd8\x92\xb2\xd7\x00\x00\x00\x8e\xba\xdb\x90\xbe\xde\x96\ \xc2\xe2\x98\xc1\xe3\x96\xbd\xe0\x95\xbc\xdf\x8f\xb9\xdc\x8a\xb7\ \xda\x89\xb7\xd8\x8d\xba\xd9\x8f\xba\xd6\x90\xbd\xda\x91\xbe\xde\ \x8f\xbe\xde\x8d\xbc\xdc\x89\xbb\xda\x88\xba\xdb\x89\xb8\xd9\x87\ \xb4\xd5\x88\xb7\xd8\x87\xba\xd7\x87\xba\xd8\x87\xb5\xd7\x87\xb2\ \xd7\x8b\xb3\xda\x8a\xb8\xda\x8a\xb9\xd9\x86\xb4\xd4\x8a\xb3\xd4\ \x8d\xb3\xd4\x91\xb8\xd5\x91\xba\xda\x8d\xb9\xdc\x8c\xb8\xdd\x8a\ \xb8\xdc\x89\xb9\xd9\x82\xb5\xd6\x82\xb5\xd5\x87\xb6\xd4\x88\xb8\ \xd3\x84\xb4\xd0\x88\xb5\xd5\x8b\xb4\xd7\x87\xb0\xd4\x86\xb0\xd5\ \x8b\xb1\xd7\x88\xaf\xd5\x81\xae\xcf\x7f\xb0\xd1\x81\xb0\xd3\x82\ \xaf\xd3\x86\xb2\xd3\x86\xb5\xd4\x84\xb8\xd6\x85\xba\xd9\x84\xb5\ \xd6\x83\xb0\xd5\x82\xaf\xd4\x84\xb1\xd6\x86\xb0\xd7\x8b\xb2\xd8\ \x87\xb3\xd7\x85\xb4\xd5\x87\xb4\xd5\x8d\xb6\xd7\x92\xbb\xdb\x93\ \xbf\xde\x94\xbf\xdf\x92\xbb\xdd\x90\xb9\xdb\x91\xba\xdb\x8f\xbd\ \xdd\x8c\xbb\xda\x8f\xbc\xdb\x94\xbc\xdc\x94\xbe\xdd\x8e\xbc\xd8\ \x8d\xbb\xda\x90\xbc\xd8\x8b\xbb\xda\x86\xbc\xd9\x8c\xc0\xd9\x8f\ \xbe\xd4\x92\xbd\xd6\x95\xbe\xd8\x96\xbb\xda\x97\xb9\xdb\x91\xb8\ \xd9\x8b\xba\xd6\x88\xb9\xd3\x88\xb8\xd5\x8e\xba\xda\x8f\xb9\xd8\ \x91\xbd\xd8\x91\xbb\xd7\x8e\xb7\xd4\x92\xb9\xd6\x98\xbc\xd7\x98\ \xbd\xd7\x97\xba\xd8\x9c\xbb\xdb\x9a\xbc\xd8\x9a\xbe\xdc\x9c\xc0\ \xde\x9d\xbd\xdd\x9c\xbd\xde\x9a\xba\xdb\x99\xb9\xdc\x9a\xbb\xe0\ \xa1\xbf\xe1\xa1\xbd\xdc\xa2\xbe\xdb\xa3\xbc\xde\xa4\xbf\xe1\xa0\ \xc1\xe0\x9c\xc1\xde\x9d\xc1\xde\xa1\xc2\xdf\x9f\xc2\xdf\x9b\xc0\ \xde\x99\xbd\xdb\x9a\xbf\xdb\x98\xbf\xdb\x98\xbd\xd9\x9c\xbc\xdc\ \x9e\xbc\xdf\x9f\xbe\xdf\x9d\xbb\xd8\xa0\xb8\xd8\x9b\xb6\xd7\x98\ \xb7\xd7\x94\xb4\xd6\x95\xb3\xd6\x91\xb3\xd0\x8e\xb3\xcc\x8b\xb4\ \xcc\x8a\xb4\xcd\x8b\xb3\xcd\x90\xb3\xcf\x91\xb3\xd1\x97\xb5\xd3\ \x92\xb1\xcd\x8c\xac\xc7\x8b\xad\xca\x8c\xb0\xd0\x8a\xb1\xd1\x88\ \xb0\xd0\x88\xaf\xd1\x85\xac\xce\x83\xae\xce\x84\xaf\xd1\x80\xab\ \xce\x85\xae\xcf\x85\xaf\xcd\x83\xb0\xcd\x88\xb1\xd4\x91\xb3\xda\ \x8d\xaf\xd3\x92\xb0\xd5\x96\xb0\xd4\x97\xaf\xd3\x9a\xb4\xd7\x94\ \xb3\xd6\x00\x00\x00\x91\xbe\xde\x93\xc2\xe2\x97\xc5\xe4\x94\xc1\ \xe0\x90\xbe\xdf\x8d\xbd\xdc\x8e\xbe\xdc\x8c\xbc\xdb\x8c\xbb\xd9\ \x94\xbe\xdb\x9a\xc0\xde\x98\xc1\xe1\x96\xc3\xe2\x94\xc1\xe2\x95\ \xc3\xe2\x90\xc2\xe0\x8a\xc0\xde\x8b\xbd\xdc\x90\xbb\xde\x92\xbd\ \xe0\x93\xc0\xe0\x8a\xbc\xdb\x87\xb5\xd9\x85\xb0\xd6\x8a\xb3\xd9\ \x8c\xb8\xdd\x88\xb5\xdb\x85\xb2\xd7\x82\xb2\xd5\x87\xb5\xd5\x8c\ \xb6\xd5\x89\xb7\xd5\x84\xb6\xd3\x85\xb8\xd6\x8c\xbb\xdc\x8d\xbc\ \xdc\x8d\xbc\xdb\x8d\xbc\xdb\x90\xbc\xdc\x8b\xba\xd9\x86\xb8\xd6\ \x82\xb3\xd3\x83\xb2\xd3\x83\xb0\xd2\x88\xb0\xd4\x8c\xb1\xd7\x85\ \xaf\xd3\x7e\xaf\xcd\x7e\xb0\xce\x7c\xad\xd1\x7a\xa8\xce\x7d\xab\ \xcc\x82\xb1\xd0\x7d\xb2\xcf\x7d\xb4\xd2\x7d\xb1\xd3\x7f\xb0\xd3\ \x7f\xae\xd0\x7f\xac\xd1\x81\xab\xd2\x85\xaf\xd4\x85\xb2\xd5\x7e\ \xaf\xd0\x78\xaa\xca\x7e\xae\xce\x89\xb6\xd3\x8e\xba\xd7\x8b\xb8\ \xd5\x89\xb4\xd2\x8c\xb4\xd5\x8e\xb5\xd5\x88\xb6\xd4\x86\xb6\xd2\ \x86\xb3\xd3\x8c\xb6\xd7\x8a\xb9\xd7\x89\xba\xd4\x8c\xbb\xd6\x8f\ \xbc\xda\x8b\xbc\xda\x89\xbd\xdb\x8e\xba\xd7\x92\xb8\xd2\x91\xb6\ \xd2\x92\xb8\xd9\x93\xb6\xd8\x8d\xb3\xd5\x85\xb1\xcf\x81\xb2\xcc\ \x82\xb4\xcd\x85\xb4\xd1\x89\xb7\xd4\x8a\xb7\xd4\x8c\xba\xd3\x8e\ \xba\xd3\x8f\xb7\xd2\x92\xb7\xd2\x96\xb9\xd5\x97\xb9\xd7\x96\xb8\ \xda\x9a\xba\xdd\x9a\xb9\xda\x9b\xbc\xdb\x9a\xbc\xda\x9c\xbc\xdc\ \x9c\xbb\xdc\x99\xbb\xdc\x96\xb7\xd9\x94\xb6\xd9\x9d\xbb\xde\xa3\ \xbe\xde\xa5\xbe\xdf\xa4\xbd\xdf\xa1\xbf\xdd\x9d\xbf\xdb\x9e\xc2\ \xdf\x9d\xc0\xde\x9c\xc0\xde\x9b\xc0\xdd\x9b\xc0\xdc\x9b\xbf\xdd\ \x97\xbb\xd9\x98\xbd\xd9\x99\xbd\xd9\x9d\xbd\xde\x9f\xbd\xe0\xa1\ \xbe\xdf\xa3\xbd\xdc\xa3\xbb\xde\xa1\xba\xde\x9a\xb8\xdb\x9a\xb7\ \xd9\x98\xb4\xd5\x8d\xae\xca\x89\xb0\xc6\x89\xb2\xc7\x86\xb2\xc8\ \x85\xb4\xca\x85\xb1\xc9\x89\xb2\xcb\x8c\xb0\xca\x8b\xae\xc9\x87\ \xad\xc8\x89\xaf\xcb\x8d\xb3\xd3\x89\xaf\xd1\x8b\xae\xd0\x88\xac\ \xcf\x85\xad\xce\x81\xae\xcf\x7c\xaf\xcd\x7b\xaf\xcd\x7f\xae\xce\ \x81\xb0\xcf\x84\xb2\xd1\x88\xb2\xd4\x8c\xb0\xd3\x90\xb0\xd4\x93\ \xaf\xd2\x97\xb0\xd3\x99\xb1\xd4\x9a\xb5\xd8\x92\xb3\xd5\x00\x00\ \x00\x8e\xbe\xde\x8c\xbf\xde\x8c\xc1\xdf\x87\xbd\xdc\x87\xbb\xdb\ \x8a\xbe\xdb\x8b\xbf\xda\x8d\xbf\xda\x8f\xbf\xd9\x95\xc1\xde\x98\ \xc2\xe2\x99\xc6\xe7\x95\xc6\xe6\x98\xc6\xe7\x97\xc4\xe6\x95\xc4\ \xe4\x8f\xc3\xe1\x93\xc5\xe4\x95\xc2\xe3\x9c\xc4\xe6\x98\xc2\xe2\ \x8e\xbe\xdf\x8b\xba\xdd\x87\xb6\xdc\x8c\xb8\xde\x8e\xba\xdf\x88\ \xb6\xdc\x84\xb4\xd9\x7f\xb6\xd8\x88\xb9\xd8\x8d\xb8\xd8\x88\xb8\ \xd5\x83\xb9\xd2\x84\xbb\xd2\x8e\xbe\xdb\x8f\xc0\xde\x90\xc2\xdf\ \x95\xc2\xe2\x96\xc1\xe2\x90\xbe\xde\x89\xba\xd8\x88\xb9\xd7\x8a\ \xb9\xd7\x8b\xb9\xd8\x8d\xb6\xd7\x90\xb6\xd9\x8b\xb5\xd6\x8a\xb8\ \xd4\x8a\xb8\xd6\x82\xb3\xd4\x7d\xb0\xd2\x82\xb1\xd3\x84\xb3\xd3\ \x84\xb6\xd4\x7b\xb2\xcf\x7a\xb2\xd1\x80\xb3\xd5\x81\xb0\xd2\x7f\ \xad\xd0\x82\xb0\xd2\x83\xb2\xd4\x81\xb3\xd4\x7d\xb1\xd1\x77\xac\ \xcb\x7c\xae\xce\x89\xb9\xd6\x8e\xbb\xd7\x8c\xb9\xd3\x8a\xb3\xd0\ \x8a\xb1\xd1\x8b\xb3\xd4\x88\xb4\xd0\x85\xb5\xce\x87\xb5\xd2\x88\ \xb4\xd6\x85\xb4\xd5\x83\xb3\xcf\x89\xb9\xd4\x8f\xbd\xdb\x90\xbe\ \xde\x8c\xbb\xd9\x8e\xb7\xd3\x90\xb5\xcf\x8e\xb2\xcf\x8d\xb3\xd4\ \x8d\xb2\xd5\x86\xae\xd0\x7c\xab\xc7\x7b\xad\xc5\x7c\xae\xc5\x82\ \xaf\xc9\x87\xb0\xcc\x85\xb1\xcc\x87\xb7\xce\x8b\xb7\xcf\x8b\xb5\ \xcd\x8c\xb4\xce\x8e\xb5\xd0\x8c\xb2\xd2\x8f\xb4\xd6\x93\xb7\xd8\ \x94\xb7\xd3\x95\xb7\xd3\x97\xb9\xd8\x9a\xba\xdb\x9c\xbb\xdd\x9a\ \xba\xdb\x96\xb7\xd8\x93\xb7\xd7\x97\xba\xda\x9d\xbb\xde\xa1\xbc\ \xde\xa0\xbe\xdc\x9b\xbf\xd9\x97\xbf\xd8\x9a\xc1\xdc\x9c\xc0\xdf\ \x9a\xbf\xdd\x9c\xc1\xdc\x9a\xbf\xd9\x98\xbd\xd9\x98\xba\xd8\x99\ \xbc\xda\x98\xbc\xdb\x9d\xbd\xe0\x9f\xbd\xe0\x9f\xbd\xdd\xa0\xbc\ \xdb\xa1\xbb\xde\xa1\xbb\xe1\x9d\xb9\xdf\x98\xb3\xd8\x93\xb1\xd2\ \x8a\xac\xc8\x88\xaf\xc7\x8c\xb2\xce\x8c\xb4\xcd\x82\xb1\xc7\x7f\ \xae\xc6\x80\xae\xc6\x83\xac\xc5\x85\xaa\xc5\x83\xa9\xc4\x86\xaf\ \xca\x8c\xb3\xd3\x8b\xb2\xd3\x8b\xb1\xd2\x8a\xae\xd2\x86\xae\xcf\ \x7e\xae\xcb\x7e\xb0\xcb\x7d\xb1\xcc\x82\xb4\xd2\x84\xb2\xd2\x87\ \xb2\xd3\x8a\xb1\xd4\x8d\xb1\xd4\x90\xaf\xd1\x94\xaf\xd3\x95\xb0\ \xd3\x95\xb1\xd4\x94\xb3\xd6\x8d\xb2\xd3\x00\x00\x00\x92\xc1\xe0\ \x8e\xbf\xe0\x8a\xbf\xe0\x85\xba\xdb\x8a\xbb\xdc\x8b\xbb\xdb\x8c\ \xbe\xdb\x8b\xbf\xda\x8f\xc2\xdd\x91\xc2\xe0\x8e\xbf\xdd\x91\xc2\ \xe2\x93\xc4\xe5\x96\xc2\xe8\x94\xbf\xe7\x93\xc0\xe3\x95\xc5\xe3\ \x9a\xc8\xe6\x9d\xc9\xe7\xa0\xc8\xe5\x9a\xc4\xe0\x91\xc0\xdc\x8d\ \xbe\xdf\x8e\xbe\xe2\x90\xbf\xe2\x8f\xbc\xdf\x8a\xbb\xdd\x85\xb9\ \xda\x80\xb8\xd6\x88\xbb\xd7\x8d\xb9\xd8\x8d\xb9\xd7\x8d\xbf\xd7\ \x8e\xc1\xd8\x8d\xbf\xd8\x8e\xc2\xdf\x90\xc1\xe2\x98\xc2\xe5\x9d\ \xc3\xe6\x98\xc0\xe1\x92\xbe\xdc\x91\xbf\xda\x92\xc0\xdb\x97\xc1\ \xdf\x99\xbf\xdf\x98\xbf\xde\x9a\xc0\xdd\x97\xbe\xd9\x92\xbd\xdb\ \x89\xb9\xda\x86\xb9\xda\x8b\xb9\xdd\x8c\xb9\xdb\x8b\xbc\xda\x85\ \xba\xd8\x81\xb9\xd7\x84\xb8\xd9\x84\xb3\xd5\x85\xb2\xd4\x89\xb8\ \xd7\x89\xbc\xda\x86\xba\xd7\x86\xb9\xd5\x84\xb5\xd3\x89\xb8\xd8\ \x8e\xbc\xdc\x94\xbf\xdc\x92\xba\xd6\x90\xb5\xd3\x8e\xb3\xd4\x8d\ \xb4\xd5\x8e\xb7\xd3\x8b\xb8\xd2\x8a\xb6\xd3\x8c\xb5\xd6\x89\xb2\ \xd4\x8b\xb6\xd5\x8f\xbb\xd9\x94\xbe\xdc\x94\xbe\xdd\x92\xbe\xd8\ \x91\xb9\xd2\x90\xb5\xd0\x92\xb7\xd3\x8e\xb4\xd4\x89\xb2\xd2\x83\ \xaf\xce\x7d\xab\xc6\x7e\xae\xc6\x82\xb2\xc9\x86\xb1\xc9\x89\xb0\ \xcb\x89\xb1\xcc\x86\xb3\xcb\x87\xb3\xcb\x86\xb1\xca\x87\xb2\xca\ \x84\xae\xc9\x83\xae\xce\x84\xae\xcf\x8c\xb4\xd0\x91\xb6\xd0\x91\ \xb4\xd0\x93\xb4\xd5\x98\xb7\xda\x99\xb8\xdb\x98\xb7\xd9\x99\xb7\ \xd8\x94\xb7\xd5\x92\xb9\xd7\x96\xb9\xdb\x9b\xba\xdc\x9a\xbb\xd9\ \x96\xbe\xd8\x90\xbd\xd4\x92\xbe\xd5\x97\xbe\xd9\x96\xbb\xd7\x95\ \xbb\xd3\x94\xbb\xd1\x96\xbb\xd7\x96\xb8\xd7\x97\xba\xd8\x95\xba\ \xd7\x9c\xbc\xdc\x9e\xb9\xdc\x9f\xba\xdb\x9d\xba\xda\xa0\xbb\xe0\ \x9e\xba\xe0\x9a\xb9\xdc\x95\xb4\xd6\x8d\xae\xcb\x87\xad\xc7\x86\ \xb0\xca\x87\xaf\xce\x86\xae\xcc\x81\xaf\xc7\x7e\xaf\xc6\x7e\xae\ \xc7\x7e\xaa\xc3\x80\xa7\xbf\x81\xa5\xbe\x87\xac\xc9\x8a\xb0\xd0\ \x88\xb1\xd0\x85\xb0\xd0\x87\xaf\xd2\x84\xad\xcd\x81\xac\xc8\x83\ \xae\xcb\x85\xb3\xd2\x87\xb3\xd5\x8a\xb1\xd6\x8c\xb1\xd4\x8e\xb2\ \xd2\x8e\xb1\xd2\x92\xb0\xd4\x93\xb0\xd4\x92\xb0\xd4\x8e\xb1\xd1\ \x88\xb0\xcd\x89\xb2\xcf\x00\x00\x00\x99\xc2\xdf\x96\xbf\xe0\x91\ \xbe\xdf\x8f\xbd\xdd\x91\xbd\xdd\x90\xbf\xdf\x8e\xbf\xdf\x8d\xc2\ \xe2\x8d\xc1\xe0\x8e\xc2\xe0\x8c\xc0\xdd\x8e\xc0\xdf\x8f\xbe\xe0\ \x8f\xbd\xe3\x8b\xba\xe1\x8d\xbb\xdf\x96\xc0\xe2\x9e\xc5\xe6\x9f\ \xc8\xe7\x9b\xc5\xe0\x95\xc3\xdd\x90\xc1\xda\x8b\xc1\xde\x8a\xc0\ \xe0\x8d\xbf\xe0\x8e\xbd\xdf\x89\xba\xdd\x84\xb8\xda\x82\xb7\xd7\ \x89\xb8\xd7\x90\xb9\xd9\x95\xbd\xdc\x95\xc0\xde\x94\xc3\xde\x8f\ \xc1\xda\x8a\xbf\xdc\x8d\xbe\xe1\x95\xbe\xe4\x9b\xbf\xe6\x99\xbf\ \xe1\x96\xc0\xdf\x94\xc0\xdf\x95\xc2\xe0\x98\xc4\xe0\x9c\xc6\xe2\ \x9d\xc4\xe1\x9d\xc2\xe1\x98\xc0\xde\x93\xbf\xe1\x8f\xbd\xe1\x8f\ \xbc\xe1\x92\xbe\xe3\x92\xbf\xe2\x92\xc2\xe1\x91\xc4\xe1\x8c\xbf\ \xdc\x8d\xbc\xdd\x8f\xbb\xdd\x90\xba\xdc\x92\xbe\xdb\x8f\xc0\xdb\ \x8a\xc0\xd8\x87\xbe\xd6\x8b\xbd\xd7\x91\xbe\xdb\x92\xbd\xdd\x97\ \xbe\xdc\x98\xbc\xd9\x9a\xb9\xd9\x97\xb8\xda\x95\xb7\xdb\x94\xb7\ \xda\x92\xb9\xd9\x8f\xb6\xd7\x95\xba\xd9\x97\xba\xdb\x9a\xbc\xde\ \x9b\xbe\xdf\x9c\xc1\xdf\x9c\xc2\xde\x9a\xc1\xdb\x99\xbf\xd9\x9a\ \xbf\xda\x99\xbe\xd9\x93\xbd\xd7\x8c\xb9\xd5\x89\xb5\xd0\x89\xb3\ \xcc\x85\xaf\xc9\x87\xb0\xcb\x86\xb1\xcc\x89\xb0\xcc\x8d\xb2\xce\ \x8b\xb3\xce\x89\xb2\xcb\x86\xb2\xca\x84\xb1\xcb\x86\xb1\xcd\x86\ \xb1\xd1\x86\xb2\xd2\x8b\xb6\xd1\x8d\xb4\xcf\x8d\xb1\xd0\x90\xb3\ \xd5\x91\xb4\xd6\x91\xb5\xd4\x8f\xb2\xd1\x91\xb4\xd4\x94\xb7\xd5\ \x90\xb8\xd6\x90\xb7\xd9\x94\xb7\xd9\x93\xb7\xd6\x90\xb7\xd2\x8c\ \xb8\xd0\x90\xbb\xd2\x96\xbb\xd5\x95\xb8\xd3\x8f\xb4\xcd\x8f\xb7\ \xcf\x91\xb7\xd2\x91\xb5\xd1\x93\xb7\xd2\x93\xb7\xd2\x99\xb7\xd5\ \x9e\xb7\xd8\x9a\xb5\xd9\x97\xb4\xd8\x9c\xb7\xde\x9e\xb9\xdf\x97\ \xb8\xda\x8f\xb2\xd1\x8c\xae\xcc\x89\xae\xcc\x87\xaf\xce\x85\xad\ \xce\x83\xad\xcb\x81\xaf\xc7\x82\xaf\xc8\x82\xad\xc8\x7e\xa5\xc2\ \x7c\x9e\xba\x87\xa5\xc1\x8c\xac\xcb\x88\xae\xcf\x80\xac\xcc\x81\ \xb0\xd0\x82\xaf\xd1\x87\xae\xd1\x88\xaf\xcd\x8c\xb2\xd0\x8d\xb5\ \xd7\x90\xb4\xdc\x93\xb4\xdb\x95\xb2\xd7\x98\xb4\xd8\x93\xb1\xd5\ \x95\xb2\xd8\x95\xb2\xd8\x92\xb1\xd6\x92\xb3\xd4\x8f\xb3\xd1\x8e\ \xb2\xd0\x00\x00\x00\x96\xc2\xde\x95\xbc\xdd\x93\xba\xdc\x92\xba\ \xd8\x94\xbd\xdb\x93\xbf\xde\x91\xc0\xe2\x8e\xc1\xe3\x8c\xc0\xe2\ \x8f\xc0\xe1\x8d\xbe\xde\x8c\xbe\xdf\x8d\xba\xdf\x87\xb9\xdd\x84\ \xb7\xdc\x89\xb6\xdb\x92\xba\xdd\x9b\xc0\xe3\x9b\xc3\xe3\x95\xc1\ \xdd\x90\xbe\xdb\x8d\xbf\xdc\x88\xbe\xdd\x89\xbe\xde\x8d\xbd\xe0\ \x8d\xb9\xde\x8a\xb8\xde\x84\xb6\xdc\x80\xb3\xd7\x86\xb4\xd7\x8b\ \xb5\xd6\x94\xbb\xda\x93\xbd\xdc\x91\xbf\xde\x8f\xbe\xdc\x8c\xbe\ \xdd\x8b\xbb\xdf\x90\xbb\xe2\x97\xbe\xe4\x96\xc0\xe3\x91\xbf\xe0\ \x92\xbf\xe0\x92\xbf\xe0\x92\xc2\xe0\x96\xc5\xe1\x96\xc3\xe2\x96\ \xc0\xe1\x93\xc1\xe1\x91\xbe\xe2\x92\xbf\xe4\x94\xc0\xe5\x93\xc0\ \xe5\x91\xbf\xe2\x91\xc1\xe1\x92\xc2\xe1\x91\xc0\xdf\x92\xc0\xe1\ \x95\xc0\xe0\x94\xbe\xdc\x93\xbf\xdb\x8f\xbf\xdc\x89\xbf\xd8\x84\ \xbf\xd4\x85\xbc\xd2\x8b\xba\xd4\x91\xba\xd9\x99\xbd\xdb\xa0\xbf\ \xdc\x9e\xba\xda\x99\xb8\xdb\x93\xb4\xdb\x91\xb2\xd9\x91\xb3\xd8\ \x96\xb8\xdc\x9e\xbd\xde\xa1\xc0\xe1\xa4\xc3\xe4\xa1\xc2\xe3\xa2\ \xc6\xe4\xa0\xc5\xe0\x9f\xc3\xdf\xa0\xc3\xdf\xa4\xc4\xe1\xa0\xc4\ \xe0\x9b\xc3\xdd\x96\xc0\xd9\x94\xbd\xd6\x8f\xb6\xcf\x8d\xb3\xcf\ \x8c\xb3\xd2\x8b\xb2\xd4\x8d\xb2\xd3\x8d\xb0\xcf\x8f\xb4\xd1\x8d\ \xb4\xcf\x8b\xb2\xce\x89\xb3\xd0\x8c\xb4\xd2\x8f\xb4\xd3\x8b\xb3\ \xd2\x8a\xb4\xd0\x8b\xb5\xd2\x8e\xb4\xd4\x8f\xb4\xd4\x92\xb5\xd2\ \x91\xb5\xd0\x90\xb5\xd0\x91\xb6\xd2\x95\xb9\xd6\x93\xb9\xd6\x92\ \xb8\xd7\x94\xb6\xd6\x93\xb4\xd2\x91\xb6\xd0\x8f\xb6\xcf\x91\xb8\ \xd1\x96\xb7\xd3\x98\xb5\xd1\x8f\xb3\xcd\x8b\xb4\xcd\x8d\xb5\xce\ \x90\xb4\xcf\x92\xb2\xd0\x94\xb4\xd1\x98\xb7\xd4\x98\xb5\xd5\x90\ \xb0\xd3\x8f\xb0\xd2\x97\xb3\xd5\x9a\xb7\xda\x95\xb6\xd7\x92\xb2\ \xd1\x8c\xab\xcc\x87\xa9\xca\x86\xab\xcb\x87\xab\xcb\x84\xac\xc7\ \x83\xae\xc6\x84\xad\xc8\x83\xa9\xc8\x7f\xa0\xc2\x7f\x9d\xbc\x89\ \xa5\xc5\x8e\xae\xd0\x89\xaf\xd1\x84\xaf\xce\x83\xb0\xce\x85\xb0\ \xd2\x8c\xb2\xd4\x8f\xb2\xd1\x93\xb4\xd4\x93\xb6\xd8\x93\xb5\xdb\ \x94\xb4\xda\x99\xb3\xdb\x9a\xb2\xdb\x96\xb0\xd9\x98\xb3\xda\x96\ \xb4\xd8\x98\xb5\xda\x99\xb5\xd9\x9b\xb5\xd8\x9a\xb4\xd6\x00\x00\ \x00\x8c\xc0\xd9\x8e\xbd\xdb\x92\xbb\xdb\x94\xbb\xdb\x93\xbc\xdc\ \x91\xbc\xdb\x8f\xbe\xdb\x8b\xbd\xde\x8a\xbc\xe0\x8c\xbd\xdd\x84\ \xba\xd9\x88\xbb\xda\x8a\xb8\xdb\x85\xb9\xda\x82\xb7\xd8\x87\xb7\ \xd8\x8d\xb8\xd9\x92\xbc\xdd\x96\xc1\xdf\x94\xc0\xda\x8f\xbe\xd8\ \x8b\xbf\xda\x88\xbe\xdc\x8c\xbd\xe0\x90\xbb\xe2\x8d\xb9\xe0\x8b\ \xbb\xe1\x84\xb9\xde\x82\xb4\xdb\x82\xb0\xd7\x87\xb3\xd6\x8e\xb7\ \xd8\x8f\xbb\xda\x8e\xbd\xdb\x8f\xbd\xdd\x8d\xbb\xdd\x89\xba\xde\ \x8d\xba\xe2\x90\xbb\xe1\x95\xc1\xe6\x94\xc0\xe3\x94\xbe\xe1\x94\ \xbd\xdf\x91\xc0\xde\x91\xc1\xdf\x91\xbf\xe0\x90\xbd\xe1\x90\xbe\ \xe0\x94\xc2\xe4\x97\xc4\xe5\x9a\xc4\xe5\x94\xc2\xe3\x8f\xbf\xe0\ \x8d\xbf\xdf\x92\xc1\xe0\x92\xbf\xe1\x92\xc0\xe1\x91\xc0\xde\x8f\ \xbe\xd9\x90\xbd\xd9\x90\xbc\xdb\x8b\xbb\xd8\x7f\xb4\xcd\x79\xad\ \xc5\x7c\xac\xc4\x85\xaf\xc9\x91\xb5\xd0\x9a\xb8\xd4\x9a\xb7\xd7\ \x98\xb7\xdb\x91\xb3\xd9\x8d\xae\xd5\x8c\xae\xd1\x93\xb6\xd6\x9b\ \xbd\xdd\x9f\xc1\xe2\xa0\xc4\xe2\x9e\xc5\xe2\x9f\xc5\xe3\xa1\xc4\ \xe1\xa0\xc1\xe0\xa3\xc3\xe2\xa1\xc3\xdf\x9f\xc1\xde\x9c\xc1\xdb\ \x9c\xbe\xda\x9c\xbe\xd9\x96\xbb\xd5\x8f\xb6\xd2\x8b\xb5\xd3\x8d\ \xb2\xd3\x91\xb1\xd4\x8f\xb0\xd4\x92\xb6\xd6\x92\xb6\xd4\x90\xb5\ \xd3\x8f\xb5\xd5\x93\xb8\xd8\x90\xb6\xd3\x8c\xb6\xd2\x8a\xb5\xcf\ \x90\xb8\xd5\x92\xb7\xd7\x8f\xb4\xd4\x96\xb8\xd6\x94\xb7\xd2\x92\ \xb7\xd1\x95\xba\xd6\x97\xba\xd4\x97\xbc\xd6\x97\xba\xd7\x99\xb8\ \xd5\x94\xb7\xcf\x91\xb8\xce\x93\xba\xd1\x96\xbb\xd6\x9b\xb9\xd6\ \x9a\xb6\xd3\x93\xb6\xd0\x8c\xb4\xcd\x8f\xb4\xce\x93\xb3\xd2\x96\ \xb4\xd5\x95\xb4\xd4\x94\xb4\xd2\x91\xb4\xd0\x8a\xb0\xd0\x8a\xad\ \xcd\x8e\xac\xcb\x96\xb4\xd2\x94\xb6\xd3\x8f\xb2\xcd\x88\xab\xc9\ \x80\xa7\xc4\x7e\xa8\xc3\x86\xac\xc9\x89\xad\xca\x87\xac\xc6\x86\ \xac\xca\x84\xa8\xc7\x80\xa1\xc3\x83\xa0\xc1\x89\xa9\xca\x8c\xb0\ \xd0\x8b\xb1\xd3\x88\xb1\xd1\x88\xb1\xd1\x89\xb1\xd1\x8d\xb1\xd2\ \x94\xb4\xd5\x94\xb6\xd4\x91\xb5\xd3\x92\xb7\xd7\x91\xb5\xd5\x93\ \xb3\xd8\x91\xb1\xd8\x93\xb0\xd7\x97\xb3\xd6\x98\xb7\xd8\x9a\xb7\ \xd9\x9d\xb7\xdc\x99\xb2\xd8\x98\xb2\xd6\x00\x00\x00\x86\xbd\xd5\ \x87\xbb\xd7\x8e\xbc\xdb\x8e\xb9\xda\x8e\xbc\xdb\x8d\xbb\xd9\x8c\ \xbc\xd9\x89\xbc\xdb\x88\xbb\xdc\x87\xb8\xd8\x81\xb6\xd5\x86\xb9\ \xd8\x89\xba\xdc\x87\xba\xda\x8b\xbc\xd9\x8c\xbb\xd7\x8e\xbc\xda\ \x94\xbf\xe0\x97\xc0\xde\x92\xc0\xd9\x90\xc1\xd8\x89\xbe\xd6\x86\ \xbc\xda\x8b\xbd\xe0\x8c\xbb\xe1\x8a\xb9\xdf\x87\xbb\xe1\x86\xbb\ \xe0\x83\xb4\xdb\x84\xaf\xd7\x82\xaf\xd3\x83\xb2\xd3\x84\xb5\xd4\ \x83\xb6\xd5\x87\xb9\xd8\x89\xbb\xdb\x85\xba\xdb\x85\xb8\xdb\x8a\ \xbc\xe0\x8d\xbf\xe1\x8f\xbe\xdf\x93\xbb\xdd\x91\xb8\xd9\x8e\xbb\ \xdb\x8d\xbb\xdb\x8e\xbb\xe0\x91\xbe\xe3\x91\xc0\xe1\x93\xc2\xe1\ \x97\xc3\xe4\x98\xc3\xe4\x93\xc0\xe2\x91\xc0\xe0\x91\xc0\xdf\x94\ \xc1\xdf\x96\xc1\xe3\x91\xbe\xe0\x8f\xbe\xdc\x8e\xbd\xd8\x8c\xbb\ \xd6\x8a\xb6\xd5\x81\xa9\xc8\x6b\x97\xb2\x56\x86\xa0\x4c\x7c\x94\ \x5e\x89\xa0\x77\x9c\xb4\x8d\xac\xc7\x8f\xb0\xcf\x92\xb5\xd8\x8f\ \xb5\xd9\x8d\xb2\xd6\x8b\xb1\xd3\x8f\xb8\xd6\x93\xbc\xda\x98\xbf\ \xdf\x96\xc1\xdc\x99\xc5\xe0\x9a\xc4\xdf\x9b\xc2\xde\x9a\xc0\xde\ \x9a\xbf\xdc\x9a\xc0\xda\x99\xc0\xd9\x97\xbf\xd8\x98\xbe\xd9\x9a\ \xbd\xd8\x97\xbd\xd8\x93\xbc\xd7\x8f\xbb\xda\x8e\xb7\xd3\x91\xb3\ \xd5\x93\xb2\xd4\x91\xb5\xd6\x92\xb7\xd4\x92\xb8\xd6\x95\xbb\xd8\ \x95\xbc\xd8\x91\xbc\xd4\x8c\xba\xd3\x90\xbb\xd6\x95\xbc\xd9\x94\ \xb6\xda\x94\xb4\xd7\x93\xb6\xd6\x95\xb9\xd8\x94\xb9\xd5\x94\xbb\ \xd5\x94\xbb\xd4\x99\xbe\xd9\x9b\xbd\xd9\x9a\xbc\xd8\x96\xbc\xd5\ \x94\xbd\xd4\x95\xbd\xd6\x99\xbd\xdb\x96\xb9\xd7\x9a\xb8\xd7\x95\ \xb8\xd2\x90\xb6\xce\x91\xb6\xd1\x97\xb7\xd9\x9b\xb7\xda\x9b\xb8\ \xd8\x95\xb8\xd5\x8f\xb4\xcf\x8b\xb1\xd0\x88\xae\xcd\x8c\xb0\xcd\ \x8e\xb2\xcc\x8e\xb3\xcd\x8b\xb1\xcd\x82\xab\xcb\x7a\xa8\xc4\x7c\ \xab\xc5\x83\xac\xcb\x88\xab\xcb\x86\xab\xc7\x84\xab\xc6\x82\xa9\ \xc5\x7e\xa3\xc2\x82\xa3\xc2\x88\xab\xc9\x88\xaf\xcf\x88\xb4\xd3\ \x86\xb4\xd3\x86\xb3\xd1\x89\xb2\xd0\x8f\xb3\xd2\x91\xb4\xd2\x8d\ \xb4\xd0\x8c\xb4\xd1\x8d\xb4\xd4\x8d\xb3\xd3\x8b\xb3\xd3\x8c\xb5\ \xd6\x8f\xb4\xd7\x96\xb6\xd9\x99\xb8\xd9\x9d\xb9\xdb\x9d\xb9\xdb\ \x94\xb3\xd7\x8f\xb0\xd5\x00\x00\x00\x8c\xc0\xd9\x8c\xbd\xda\x8d\ \xbc\xdb\x8a\xb9\xd8\x89\xb9\xd6\x8c\xbc\xd7\x8d\xbe\xd9\x88\xba\ \xda\x86\xb8\xdb\x81\xb3\xd4\x83\xb5\xd4\x86\xb8\xd7\x88\xb7\xd9\ \x8a\xb8\xd8\x8a\xb9\xd5\x8c\xbd\xd5\x90\xbf\xdd\x95\xc0\xe0\x9a\ \xc3\xe2\x97\xc1\xdf\x94\xc1\xdd\x8c\xbf\xda\x87\xbd\xdc\x87\xbc\ \xdf\x86\xba\xdf\x86\xba\xdf\x83\xba\xdf\x82\xb7\xdc\x80\xb0\xd6\ \x82\xac\xd2\x83\xaf\xd2\x7e\xaf\xd1\x7c\xb2\xd1\x7e\xb2\xd4\x85\ \xb8\xd9\x85\xb9\xd9\x84\xba\xd7\x86\xb7\xd8\x87\xba\xdc\x88\xbc\ \xdf\x86\xb8\xd6\x86\xae\xcc\x83\xa7\xc5\x7d\xa8\xc9\x7e\xaf\xd2\ \x82\xb4\xd7\x8a\xb9\xdc\x8f\xbe\xdd\x92\xc1\xe0\x94\xc2\xe2\x93\ \xc2\xe2\x90\xbe\xe0\x92\xbe\xdf\x94\xc0\xdf\x94\xc1\xe0\x94\xc0\ \xe0\x95\xbf\xe2\x91\xbd\xde\x8f\xbd\xda\x8a\xba\xd6\x80\xad\xcc\ \x64\x8c\xad\x4a\x74\x90\x64\x91\xac\x72\xa1\xbc\x6d\x9c\xb4\x62\ \x86\xa1\x5f\x7d\x97\x7e\xa0\xbb\x8c\xb3\xd1\x8b\xb3\xd5\x8c\xb2\ \xd3\x8b\xb6\xd5\x8a\xb9\xd7\x8e\xbe\xda\x8f\xbf\xda\x91\xbf\xd9\ \x98\xc4\xdd\x95\xc3\xdb\x93\xc0\xda\x95\xc0\xdb\x96\xbf\xd9\x95\ \xbd\xd8\x97\xbf\xdb\x93\xbe\xda\x93\xbc\xd7\x95\xb9\xd6\x96\xba\ \xd8\x95\xba\xda\x92\xba\xda\x91\xb9\xd8\x92\xb6\xd5\x93\xb7\xd5\ \x92\xb8\xd7\x91\xb9\xd8\x91\xbc\xd7\x95\xc0\xd8\x95\xc1\xd9\x95\ \xc0\xd9\x95\xc0\xd9\x94\xbe\xd8\x96\xbc\xd9\x98\xb7\xdc\x94\xb6\ \xda\x8f\xba\xd8\x8f\xbb\xd7\x93\xbb\xd8\x91\xbb\xd5\x92\xbd\xd5\ \x99\xbf\xda\x9f\xc0\xdd\x9e\xc0\xdc\x99\xbe\xd9\x98\xbd\xda\x98\ \xbe\xd8\x98\xbb\xd7\x98\xba\xd8\x98\xba\xd8\x99\xbe\xd9\x96\xbd\ \xd7\x98\xbc\xda\x97\xba\xdc\x9d\xbb\xdf\x9d\xbb\xde\x97\xb9\xda\ \x92\xb6\xd4\x8d\xb5\xd3\x89\xb3\xcf\x8c\xb2\xce\x8b\xaf\xca\x88\ \xae\xc8\x83\xaf\xc8\x7d\xab\xc7\x7a\xab\xc5\x7d\xb0\xc6\x81\xaf\ \xc9\x85\xad\xc8\x83\xac\xc5\x7e\xa8\xbf\x81\xab\xc4\x7f\xa7\xc2\ \x84\xaa\xc4\x87\xb0\xca\x88\xb1\xd0\x88\xb3\xd2\x85\xb4\xd1\x80\ \xb2\xcd\x81\xaf\xca\x8a\xb1\xca\x8d\xb3\xcf\x88\xb1\xcd\x8b\xb5\ \xd2\x8f\xb6\xd6\x8c\xb3\xd0\x88\xb3\xce\x8a\xb6\xd1\x8d\xb6\xd4\ \x91\xb8\xd6\x95\xb7\xd6\x9a\xb8\xd6\x9b\xb6\xd7\x95\xb4\xd8\x8b\ \xaf\xd5\x00\x00\x00\x92\xc2\xdd\x8f\xbe\xdd\x8e\xbc\xda\x91\xbb\ \xdb\x93\xbd\xdc\x90\xbf\xda\x8d\xbf\xd9\x8e\xbe\xdd\x8c\xbc\xdc\ \x85\xb9\xd6\x87\xbb\xd6\x88\xb9\xd7\x85\xb4\xd4\x85\xb3\xd2\x87\ \xb4\xd1\x88\xb6\xd2\x8c\xb9\xd2\x92\xbb\xd7\x93\xbc\xda\x93\xbc\ \xdc\x90\xbc\xdc\x8c\xbb\xdc\x88\xbc\xdc\x86\xbc\xdd\x86\xbb\xdf\ \x85\xb9\xe0\x82\xb7\xdc\x7b\xb2\xd7\x7f\xac\xd3\x84\xad\xd4\x81\ \xae\xd0\x7a\xae\xcd\x7b\xb0\xcd\x83\xb4\xd3\x8b\xb8\xda\x8c\xbb\ \xdb\x88\xb8\xd6\x88\xb8\xd7\x89\xb8\xda\x89\xb8\xda\x82\xb1\xcd\ \x70\x98\xb2\x4c\x71\x8d\x41\x6e\x8e\x48\x7c\x9f\x5c\x91\xb4\x78\ \xaa\xc8\x83\xb2\xcf\x8b\xbb\xda\x8f\xc0\xde\x93\xc1\xe2\x92\xbe\ \xdf\x96\xbd\xdc\x96\xbe\xde\x95\xc2\xe2\x92\xc0\xe0\x95\xc0\xe2\ \x94\xbe\xe0\x90\xbb\xda\x8c\xbc\xd8\x83\xaf\xcf\x68\x8f\xb2\x57\ \x7f\x9c\x81\xad\xc5\x85\xb4\xcc\x83\xb2\xcb\x80\xa7\xc3\x69\x8a\ \xa4\x44\x68\x7c\x7a\xa2\xb9\x8f\xb5\xd2\x8e\xb4\xd1\x8b\xb8\xd5\ \x88\xb8\xd6\x88\xb9\xd4\x8d\xbd\xd6\x93\xbe\xd7\x97\xc0\xd8\x95\ \xc2\xd9\x92\xc0\xd9\x96\xbf\xdc\x97\xbe\xda\x96\xbd\xda\x97\xbe\ \xdd\x91\xbd\xdb\x91\xbd\xdb\x92\xb9\xd6\x9a\xb8\xd7\x9b\xba\xdb\ \x96\xba\xdc\x95\xba\xdc\x93\xba\xda\x90\xba\xd7\x90\xbc\xd8\x91\ \xbd\xdb\x92\xc0\xda\x94\xc0\xd9\x95\xc0\xda\x98\xc0\xde\x99\xc0\ \xde\x99\xc1\xdc\x98\xbe\xdb\x99\xbb\xde\x96\xbb\xdd\x8e\xbe\xd9\ \x8f\xbe\xd8\x94\xbb\xd7\x96\xbc\xd7\x95\xbe\xd7\x9a\xc1\xdc\xa1\ \xc2\xe1\xa2\xc2\xe2\x9c\xc0\xdd\x99\xbd\xda\x99\xbe\xd8\x99\xbd\ \xd9\x9a\xbd\xdc\x9b\xbd\xdb\x9a\xbf\xda\x99\xc0\xdc\x9b\xbf\xdc\ \x99\xbb\xdd\x99\xba\xde\x9a\xbb\xe0\x99\xba\xdd\x95\xb7\xd7\x92\ \xb8\xd3\x8b\xb7\xcf\x87\xb2\xcb\x8a\xaf\xcb\x88\xaf\xc9\x84\xb0\ \xc8\x80\xad\xc5\x81\xb0\xc9\x81\xb3\xcb\x81\xb2\xca\x82\xaf\xc7\ \x84\xaf\xc7\x85\xaf\xc6\x82\xaa\xc3\x80\xaa\xc2\x84\xaf\xc7\x87\ \xb3\xcb\x88\xb2\xcf\x88\xb1\xd1\x84\xb2\xd0\x80\xb0\xcd\x7f\xad\ \xc8\x88\xb0\xc9\x8d\xb2\xcd\x8b\xb2\xcf\x8c\xb4\xd3\x8c\xb3\xd1\ \x89\xb3\xcd\x89\xb4\xcc\x90\xb6\xd0\x92\xb6\xd2\x8e\xb6\xd1\x92\ \xb5\xd1\x96\xb4\xd0\x9b\xb3\xd4\x94\xb0\xd6\x89\xad\xd3\x00\x00\ \x00\x91\xbe\xdd\x8b\xb9\xd9\x8c\xb8\xd6\x97\xbc\xdd\x99\xbe\xdf\ \x96\xc0\xdd\x92\xc1\xdd\x94\xc2\xe0\x8f\xbe\xdd\x87\xbc\xd4\x8a\ \xbc\xd4\x8b\xb8\xd6\x85\xb4\xd2\x80\xaf\xce\x7e\xab\xcb\x76\x9f\ \xbd\x68\x8e\xa6\x71\x95\xa9\x85\xa9\xc1\x88\xb1\xcd\x8a\xb7\xd7\ \x85\xb4\xd7\x85\xb5\xd8\x86\xb6\xda\x87\xb8\xde\x82\xb4\xdc\x7c\ \xb2\xd6\x75\xae\xcf\x75\xa8\xcd\x7b\xab\xd0\x7c\xae\xd1\x7a\xb1\ \xcf\x79\xaf\xcc\x84\xb2\xd1\x8e\xb6\xd6\x8e\xb7\xd7\x8a\xb7\xd8\ \x86\xb7\xd8\x88\xb9\xd9\x85\xb5\xd3\x7e\xae\xc6\x4e\x78\x91\x60\ \x8a\xa6\x71\xa2\xc2\x6d\xa2\xc4\x5b\x8d\xb0\x48\x78\x95\x65\x95\ \xae\x7f\xb0\xcd\x8a\xbb\xdb\x91\xbf\xe1\x95\xbf\xe0\x98\xbf\xdf\ \x97\xbf\xdf\x93\xc0\xe0\x92\xbf\xe0\x92\xbe\xdf\x91\xbb\xdf\x90\ \xbd\xdd\x8d\xbc\xd9\x8b\xb7\xd6\x80\xa5\xc7\x61\x86\xa3\x85\xaf\ \xc5\x8f\xba\xcf\x8d\xb9\xd0\x8b\xb3\xcc\x7e\xa3\xb8\x43\x67\x77\ \x4b\x6e\x80\x90\xb4\xcc\x92\xba\xd6\x87\xb6\xd1\x7b\xad\xc6\x7b\ \xad\xc4\x89\xb8\xcf\x97\xbf\xd8\x99\xbe\xda\x95\xbf\xd7\x92\xbd\ \xd7\x96\xbc\xd9\x94\xbb\xd7\x94\xbb\xd8\x96\xbe\xdc\x96\xbe\xdd\ \x93\xbe\xda\x93\xba\xd5\x9b\xb9\xd6\x9d\xb8\xd9\x9c\xbb\xde\x93\ \xbb\xdc\x92\xbd\xdc\x90\xbc\xda\x91\xbd\xdc\x93\xbe\xdc\x99\xc1\ \xde\x9d\xc0\xde\x99\xbe\xdd\x97\xbf\xdf\x94\xbe\xdf\x92\xbd\xdd\ \x93\xbd\xd9\x9a\xc0\xdd\x97\xbe\xda\x91\xbe\xd8\x93\xbe\xd7\x97\ \xba\xd4\x98\xba\xd6\x99\xbe\xd8\x9d\xc1\xdd\xa2\xc1\xe1\xa2\xc0\ \xe1\x9e\xbf\xdb\x97\xbe\xd6\x98\xbd\xd7\x9a\xbe\xdb\x9c\xbe\xdf\ \x9f\xbd\xdf\x9b\xbc\xdc\x9b\xbf\xdb\x9e\xbe\xdd\x9d\xbc\xde\x97\ \xba\xdb\x98\xba\xdc\x98\xb9\xdc\x96\xb8\xd8\x91\xb7\xd2\x8b\xb6\ \xce\x86\xb5\xcd\x88\xb1\xcc\x8b\xb0\xca\x8c\xb3\xcd\x8d\xb3\xce\ \x8a\xb2\xcf\x89\xb4\xd2\x86\xb2\xce\x86\xb2\xca\x88\xb2\xca\x87\ \xb0\xc8\x82\xaa\xc3\x7e\xa7\xc1\x87\xb2\xca\x89\xb6\xcd\x89\xb4\ \xcf\x8d\xb4\xd4\x87\xb0\xd0\x84\xaf\xce\x86\xaf\xcc\x8b\xb1\xcd\ \x8e\xb1\xcf\x8e\xb2\xd2\x8e\xb3\xd3\x90\xb3\xd2\x8d\xb4\xd2\x8e\ \xb5\xd3\x92\xb5\xd3\x94\xb5\xd5\x91\xb4\xd4\x93\xb4\xd4\x98\xb6\ \xd5\x98\xb5\xd5\x91\xb1\xd3\x8b\xb0\xd2\x00\x00\x00\x90\xb9\xd6\ \x8b\xb7\xd4\x91\xb8\xd8\x9b\xbb\xda\x9c\xbd\xdb\x98\xc0\xd9\x98\ \xc3\xdc\x99\xc2\xdd\x94\xbd\xd7\x8e\xb9\xcf\x8d\xb7\xce\x8d\xb4\ \xce\x87\xb1\xce\x82\xae\xcc\x7c\xa3\xc2\x41\x63\x7f\x2d\x4b\x61\ \x40\x5b\x6c\x3d\x59\x69\x6c\x91\xa5\x81\xad\xcc\x83\xb0\xd5\x84\ \xaf\xd4\x82\xaa\xd0\x7e\xa7\xcd\x7b\xa9\xce\x73\xa8\xc7\x6d\xa5\ \xc1\x6f\xa6\xc5\x73\xa7\xc9\x7c\xae\xcf\x7a\xad\xcb\x7c\xae\xcb\ \x84\xb0\xcc\x8f\xb3\xd0\x8f\xb2\xce\x86\xb0\xce\x82\xb4\xd3\x84\ \xb8\xd6\x86\xb8\xd3\x77\xa7\xc2\x4c\x77\x95\x5e\x8a\xaa\x76\xa6\ \xc8\x78\xaa\xcc\x73\xa0\xc2\x50\x79\x93\x39\x60\x76\x70\x9a\xb4\ \x8c\xb7\xd7\x92\xbe\xdf\x96\xbe\xdf\x98\xbc\xde\x97\xbc\xde\x95\ \xbd\xdf\x96\xbd\xe0\x94\xbb\xdf\x91\xbb\xe0\x91\xbe\xdf\x92\xc0\ \xdf\x92\xbb\xda\x91\xb5\xd5\x85\xaa\xc7\x7e\xa8\xbe\x90\xb9\xcc\ \x96\xbd\xd2\x97\xbb\xd3\x8a\xac\xc2\x59\x78\x8a\x28\x49\x59\x7a\ \x9e\xb4\x92\xbd\xd7\x8b\xbc\xd5\x71\xa5\xbb\x58\x89\xa1\x84\xb1\ \xc9\x93\xbb\xd4\x94\xba\xd6\x91\xbb\xd6\x91\xbb\xd7\x93\xb9\xd5\ \x93\xb8\xd4\x95\xbb\xd9\x97\xbc\xdb\x94\xba\xd8\x92\xba\xd4\x94\ \xb9\xd4\x98\xb7\xd6\x9c\xba\xda\x9b\xbc\xdb\x96\xbb\xd9\x96\xbc\ \xdb\x96\xbd\xdb\x96\xbd\xde\x9a\xbc\xde\x9e\xbf\xe1\xa0\xbe\xe0\ \x9e\xbe\xdc\x97\xbd\xda\x94\xbe\xdd\x91\xbd\xdd\x8f\xbc\xd8\x94\ \xbf\xd6\x97\xbf\xd7\x95\xbf\xd6\x95\xbb\xd5\x98\xba\xd4\x96\xb9\ \xd2\x99\xbc\xd5\x9f\xbf\xdc\xa0\xbe\xde\xa0\xbf\xdd\x9d\xbe\xd9\ \x9c\xbe\xda\x9a\xbe\xd9\xa0\xc0\xdf\xa0\xbd\xdf\x9e\xba\xdc\x9b\ \xbb\xdc\x99\xbb\xd9\x9f\xbb\xdb\x9f\xba\xdd\x9b\xbb\xdd\x97\xba\ \xdb\x93\xb6\xd6\x94\xb6\xd4\x8e\xb5\xce\x8a\xb6\xcc\x86\xb3\xcb\ \x8a\xb1\xcb\x8c\xb0\xca\x8f\xb3\xce\x8f\xb4\xd0\x90\xb5\xd3\x90\ \xb3\xd4\x90\xb3\xd2\x8d\xb2\xcb\x88\xb1\xc7\x86\xb0\xc7\x7e\xa5\ \xc0\x83\xa7\xc5\x8b\xb1\xcd\x8d\xb5\xd0\x8c\xb3\xd1\x90\xb6\xd3\ \x8f\xb4\xd1\x91\xb3\xd3\x93\xb5\xd4\x93\xb6\xd2\x92\xb5\xd0\x92\ \xb4\xd1\x91\xb3\xd4\x94\xb4\xd5\x92\xb4\xd4\x92\xb6\xd6\x94\xb6\ \xd7\x94\xb4\xd7\x93\xb4\xd5\x93\xb6\xd4\x94\xb8\xd4\x92\xb6\xd4\ \x8f\xb4\xd3\x8c\xb1\xd0\x00\x00\x00\x80\xa6\xc0\x8c\xb2\xcb\x8c\ \xb0\xca\x8b\xaa\xc4\x7c\x9b\xb1\x6c\x90\xa2\x6b\x92\xa7\x7f\xa3\ \xbc\x81\xa0\xb8\x72\x91\xa4\x70\x93\xa6\x7b\xa1\xb8\x8b\xaf\xcc\ \x8b\xad\xca\x80\x9e\xba\x4f\x69\x84\x28\x3f\x54\x49\x5d\x6e\x1e\ \x34\x40\x3f\x61\x72\x7a\xa5\xc2\x88\xb4\xd6\x89\xae\xd0\x74\x95\ \xb6\x68\x8b\xaa\x6f\x95\xb1\x67\x91\xa9\x5d\x8b\x9e\x6a\x9b\xb2\ \x75\xa6\xc0\x74\x9f\xbb\x71\x9a\xb4\x77\xa2\xbc\x81\xa8\xc4\x88\ \xab\xc3\x82\xa2\xb8\x7a\x9f\xb7\x7b\xa7\xc3\x80\xaf\xcc\x7f\xad\ \xc7\x6e\x9a\xb4\x62\x8a\xa9\x5a\x82\xa3\x5f\x8b\xab\x74\x9e\xc1\ \x74\x99\xb9\x46\x65\x7b\x2b\x48\x5a\x6f\x91\xa8\x8f\xb3\xd2\x92\ \xb9\xd8\x93\xb8\xd8\x97\xba\xdc\x95\xb6\xd8\x92\xb4\xd7\x93\xb3\ \xdb\x92\xb5\xdc\x92\xb8\xde\x8f\xba\xd9\x90\xbb\xd7\x94\xbb\xd5\ \x9b\xbd\xd8\x94\xb9\xd4\x7b\xa6\xbd\x7e\xa8\xbe\x92\xb8\xcf\x97\ \xbb\xd5\x91\xb0\xca\x61\x7d\x90\x19\x37\x48\x55\x79\x8d\x90\xbb\ \xd4\x8f\xbd\xd8\x80\xb0\xc8\x59\x86\x9e\x6e\x98\xb1\x90\xb7\xd1\ \x94\xb8\xd4\x92\xb9\xd7\x90\xb7\xd6\x93\xb8\xd3\x96\xb7\xd2\x96\ \xb7\xd4\x95\xb6\xd3\x91\xb6\xd2\x91\xb7\xd2\x8f\xb4\xd2\x92\xb6\ \xd4\x95\xb9\xd7\x98\xba\xd6\x9a\xbd\xd7\x9a\xbe\xd9\x99\xbc\xd8\ \x9b\xbc\xdc\x9f\xbe\xe1\x9e\xbe\xe0\xa0\xbd\xdf\x9f\xbd\xdb\x9c\ \xbe\xd9\x98\xbe\xdb\x92\xba\xda\x8e\xb9\xd5\x92\xbc\xd4\x92\xbb\ \xd1\x92\xbc\xd1\x93\xb8\xd0\x93\xb6\xcf\x97\xbc\xd1\x9a\xbc\xd6\ \x9e\xbc\xd9\x9f\xbe\xda\x99\xbd\xd6\x98\xbc\xd5\x9a\xbc\xd8\x9a\ \xbd\xd9\xa0\xbd\xde\x9e\xbc\xdc\x96\xba\xd7\x93\xba\xd5\x93\xba\ \xd5\x96\xb7\xd5\x9b\xb8\xd7\x9b\xba\xd9\x97\xba\xd7\x94\xb6\xd3\ \x93\xb4\xd0\x90\xb3\xcb\x8b\xb4\xc8\x88\xb2\xc8\x8e\xb3\xcd\x93\ \xb4\xcf\x94\xb5\xd2\x8f\xb6\xd1\x8e\xb3\xd0\x91\xb1\xd3\x96\xb3\ \xd2\x94\xb2\xcd\x8f\xb1\xcc\x86\xad\xc8\x80\xa6\xc4\x86\xaa\xc8\ \x8c\xb0\xce\x8f\xb2\xd1\x8d\xb2\xcf\x90\xb4\xce\x93\xb3\xd2\x98\ \xb5\xd7\x98\xb6\xd5\x92\xb6\xcf\x8e\xb7\xce\x91\xb5\xcf\x90\xb2\ \xd0\x91\xb1\xcf\x94\xb5\xd2\x91\xb4\xd1\x92\xb5\xd5\x96\xb7\xd6\ \x95\xb7\xd3\x94\xb9\xd4\x91\xb9\xd3\x8d\xb8\xd4\x8c\xb3\xd2\x92\ \xb4\xd5\x00\x00\x00\x68\x90\xa9\x75\x9b\xb2\x72\x98\xab\x4b\x6f\ \x83\x27\x48\x59\x38\x5a\x6a\x66\x8d\xa1\x66\x88\xa1\x41\x5e\x75\ \x1f\x3c\x4c\x3a\x5b\x6d\x63\x88\x9f\x61\x84\x9f\x61\x7d\x97\x65\ \x7d\x93\x4f\x65\x7e\x2e\x44\x5c\x12\x26\x39\x1f\x3a\x48\x54\x7b\ \x8f\x7e\xa7\xc7\x89\xb0\xd2\x7e\x9f\xbd\x4e\x6a\x82\x29\x46\x5b\ \x43\x61\x75\x41\x60\x74\x25\x47\x58\x56\x81\x93\x73\x9e\xb1\x4b\ \x73\x82\x20\x48\x58\x4f\x7a\x90\x75\x9e\xb6\x76\x9c\xb3\x57\x78\ \x8a\x3c\x5f\x74\x53\x7d\x95\x67\x92\xab\x60\x88\x9f\x42\x69\x7e\ \x4a\x70\x8a\x65\x8b\xa8\x6d\x95\xb5\x73\x97\xb8\x65\x82\x9f\x25\ \x3e\x52\x2a\x46\x59\x6b\x8c\xa3\x7d\xa0\xbe\x7e\xa2\xc0\x88\xac\ \xca\x91\xb4\xd2\x8b\xa9\xca\x82\x9c\xc2\x85\x9f\xc7\x8e\xac\xd1\ \x90\xb1\xd2\x88\xac\xc7\x7e\xa4\xbd\x86\xaa\xc3\x95\xb6\xcf\x94\ \xb8\xd2\x8b\xb2\xcb\x7a\xa1\xba\x86\xab\xc5\x8d\xb3\xcc\x8b\xaf\ \xc5\x68\x85\x96\x13\x33\x40\x40\x64\x77\x8d\xb6\xd0\x92\xbb\xda\ \x8b\xb2\xd1\x67\x8f\xaa\x4f\x78\x92\x8a\xb3\xcc\x8f\xb5\xd3\x90\ \xb6\xd6\x90\xb4\xd7\x8f\xb4\xd3\x94\xb6\xd2\x94\xb6\xd2\x8e\xb3\ \xcf\x8d\xb2\xcc\x8c\xb1\xcb\x8d\xb3\xcf\x8a\xb4\xcf\x8c\xb6\xd2\ \x8f\xba\xd4\x91\xba\xd6\x93\xb9\xd6\x94\xb9\xd4\x99\xbb\xd7\x9b\ \xbe\xdc\x99\xbe\xdb\x9a\xbd\xda\x9b\xbd\xd9\x9e\xbc\xd9\x9a\xbc\ \xdb\x94\xb8\xd8\x8e\xb5\xd3\x8c\xb6\xcf\x8c\xb9\xce\x90\xbc\xd0\ \x92\xba\xd2\x92\xb7\xd0\x97\xbb\xd1\x95\xb9\xd4\x9a\xbb\xd8\x99\ \xbd\xd7\x96\xbf\xd3\x94\xbd\xd3\x93\xb9\xd5\x94\xb9\xd5\x96\xba\ \xd6\x94\xba\xd6\x90\xbb\xd4\x8c\xba\xd2\x90\xbb\xd3\x94\xb9\xd6\ \x97\xb8\xd7\x98\xb8\xd7\x96\xb9\xd7\x97\xb9\xd6\x94\xb4\xcf\x92\ \xb3\xcb\x8d\xb3\xc9\x8f\xb4\xcd\x93\xb8\xd1\x94\xb5\xd1\x92\xb6\ \xd2\x8c\xb5\xd1\x8d\xb3\xd3\x8d\xb0\xd3\x8f\xb0\xd0\x92\xae\xcc\ \x91\xaf\xce\x89\xaa\xcd\x80\xa3\xc6\x84\xa9\xc8\x8a\xaf\xcb\x8c\ \xac\xcd\x8b\xb0\xcd\x8f\xb2\xcf\x93\xb2\xd3\x96\xb2\xd5\x96\xb4\ \xd2\x8e\xb6\xce\x89\xb7\xce\x8c\xb6\xd1\x91\xb3\xd0\x91\xb3\xcf\ \x90\xb6\xd0\x8f\xb7\xd3\x93\xb7\xd3\x96\xb6\xd4\x96\xb8\xd5\x96\ \xbb\xd6\x8e\xb6\xd3\x8a\xb5\xd4\x90\xb5\xd7\x91\xb4\xd6\x00\x00\ \x00\x76\x9c\xb5\x5a\x7d\x93\x50\x73\x84\x74\x99\xad\x56\x7c\x91\ \x31\x54\x68\x42\x68\x7d\x42\x69\x83\x2d\x53\x6e\x27\x4b\x63\x44\ \x66\x7e\x78\x9d\xb6\x84\xa8\xc2\x55\x74\x8b\x25\x3f\x55\x3e\x58\ \x70\x62\x7d\x98\x40\x5c\x75\x21\x42\x56\x64\x8c\xa3\x80\xab\xc9\ \x7b\xa5\xc6\x62\x86\xa3\x37\x59\x70\x1f\x42\x55\x36\x5a\x6d\x40\ \x61\x77\x38\x5c\x72\x58\x83\x98\x6a\x99\xab\x3e\x6a\x77\x12\x3d\ \x4d\x5c\x8b\xa2\x79\xa3\xc1\x66\x8f\xaa\x2e\x52\x6b\x29\x4e\x67\ \x56\x7f\x99\x61\x8a\xa3\x4a\x70\x88\x26\x4e\x61\x53\x7b\x90\x70\ \x99\xb2\x71\x9a\xb5\x70\x91\xae\x4b\x65\x81\x17\x31\x47\x50\x6f\ \x85\x7f\xa2\xbc\x76\x9b\xb9\x5c\x84\x9f\x5f\x85\x9f\x89\xac\xc5\ \x80\x9a\xb7\x58\x6b\x8a\x53\x69\x88\x7f\x9a\xb7\x85\xa1\xba\x61\ \x7e\x94\x46\x68\x7d\x54\x7a\x92\x73\x96\xaf\x86\xa6\xc1\x88\xa8\ \xc0\x80\xa1\xb8\x82\xa4\xb9\x85\xab\xbe\x7f\xa4\xb5\x5d\x7d\x8c\ \x11\x30\x41\x46\x68\x7d\x8e\xb2\xcc\x91\xb6\xd2\x87\xa7\xc8\x6a\ \x88\xa8\x39\x5b\x78\x78\xa0\xb9\x89\xb1\xcb\x88\xab\xcb\x8a\xaa\ \xca\x8c\xaf\xcd\x8d\xb3\xcd\x8b\xb1\xc9\x87\xaa\xc4\x86\xa8\xc2\ \x87\xab\xc5\x89\xb0\xca\x89\xb3\xca\x87\xb3\xcc\x88\xb6\xd1\x86\ \xb7\xd4\x88\xb7\xd2\x8d\xb7\xd0\x93\xb9\xd2\x94\xbc\xd6\x91\xbc\ \xd5\x90\xbb\xd6\x93\xb9\xd5\x97\xb7\xd5\x94\xb6\xd8\x8e\xb4\xd5\ \x88\xb2\xcf\x85\xb3\xcd\x8b\xb9\xcf\x93\xbd\xd3\x94\xbc\xd5\x95\ \xbb\xd5\x95\xba\xd4\x93\xb8\xd3\x96\xba\xd8\x93\xba\xd6\x8f\xbb\ \xd1\x90\xba\xd0\x92\xba\xd3\x91\xb9\xd2\x93\xbb\xd4\x90\xbc\xd5\ \x8c\xba\xd5\x8c\xb8\xd2\x8e\xb8\xd2\x90\xb9\xd7\x93\xb9\xda\x93\ \xb8\xd9\x95\xb9\xd8\x98\xbb\xd9\x97\xb9\xd6\x97\xb7\xd4\x94\xb8\ \xd4\x93\xb7\xd3\x95\xb9\xd3\x95\xb9\xd3\x93\xb8\xd4\x8e\xb6\xd5\ \x8c\xb5\xd5\x8d\xb3\xd6\x8b\xb1\xd2\x8a\xad\xcf\x8a\xab\xcd\x85\ \xa5\xc9\x80\xa3\xc7\x82\xa9\xc9\x88\xae\xca\x88\xad\xc9\x86\xad\ \xca\x8c\xb1\xd2\x92\xb3\xd5\x96\xb4\xd5\x94\xb5\xd4\x8c\xb4\xd1\ \x88\xb6\xd2\x8a\xb5\xd1\x90\xb6\xd2\x91\xb5\xd1\x91\xb9\xd3\x91\ \xba\xd3\x93\xb8\xd2\x99\xba\xd6\x99\xbb\xd8\x96\xb9\xd8\x90\xb6\ \xd7\x8d\xb5\xd6\x8e\xb3\xd5\x8e\xb3\xd3\x00\x00\x00\x53\x72\x8a\ \x39\x55\x6e\x3d\x5e\x73\x56\x7b\x90\x84\xab\xc3\x81\xa7\xc2\x60\ \x8a\xa5\x63\x91\xb0\x74\xa2\xc2\x7a\xa2\xc0\x7a\x9e\xbd\x77\x9c\ \xb8\x89\xae\xc9\x86\xab\xc3\x65\x88\x9f\x4a\x6c\x86\x6f\x93\xaf\ \x86\xab\xc8\x56\x7b\x95\x3b\x61\x78\x7b\xa4\xbd\x86\xb2\xcd\x7e\ \xaa\xc6\x6a\x95\xb0\x62\x91\xa8\x73\x9f\xb7\x7b\xa4\xc0\x7d\xa6\ \xc4\x7e\xac\xc7\x75\xa8\xbf\x62\x97\xaa\x40\x74\x89\x66\x97\xb1\ \x7f\xac\xcc\x7b\xa6\xc9\x68\x92\xb3\x4c\x75\x97\x5f\x8b\xa9\x7c\ \xa7\xc2\x7f\xa5\xc3\x60\x87\xa1\x53\x7e\x94\x6f\x9c\xb3\x7e\xa7\ \xc0\x73\x94\xb0\x31\x4b\x67\x23\x40\x5a\x67\x88\xa2\x83\xa8\xc4\ \x82\xaa\xc8\x6f\x9b\xb7\x52\x7b\x95\x69\x8d\xa4\x7a\x94\xaa\x3d\ \x4d\x62\x2e\x3f\x55\x68\x83\x97\x73\x92\xa5\x3b\x58\x6c\x42\x65\ \x7b\x68\x92\xaa\x75\x9d\xb6\x72\x92\xac\x55\x73\x89\x38\x56\x67\ \x35\x55\x63\x53\x73\x83\x56\x76\x87\x3d\x5b\x6d\x14\x34\x47\x54\ \x76\x8e\x89\xaa\xc4\x78\x9b\xb5\x74\x93\xb0\x5f\x7c\x99\x2a\x49\ \x62\x5f\x84\x9b\x84\xa9\xc2\x78\x98\xb2\x6f\x8b\xa4\x79\x98\xb1\ \x85\xa8\xbe\x86\xa7\xbf\x79\x96\xb0\x65\x7e\x98\x74\x91\xab\x7f\ \xa1\xba\x82\xa6\xbc\x7c\xa3\xba\x7d\xa8\xc3\x81\xb0\xcf\x83\xb4\ \xd0\x88\xb4\xce\x8c\xb6\xcf\x8d\xb8\xd0\x8a\xb8\xd0\x8b\xb4\xce\ \x8c\xaf\xcb\x8a\xab\xc7\x85\xaa\xc7\x85\xac\xcb\x86\xad\xca\x88\ \xb0\xcb\x8e\xb5\xcf\x91\xb8\xd1\x8e\xb7\xd0\x8f\xb7\xd1\x91\xb5\ \xd2\x8c\xb2\xd1\x8c\xb4\xd4\x89\xb5\xd2\x87\xb5\xcd\x8d\xb7\xcd\ \x8f\xb8\xcf\x8c\xb7\xcf\x8f\xb9\xd2\x8f\xb9\xd1\x8c\xb4\xd1\x86\ \xae\xc9\x80\xa9\xc3\x81\xae\xc8\x88\xb5\xd3\x8e\xb6\xd5\x94\xb9\ \xd9\x9a\xbb\xdc\x99\xb9\xdb\x96\xb7\xd7\x95\xb5\xd6\x97\xb5\xd5\ \x96\xb7\xd5\x92\xb7\xd3\x91\xb6\xd3\x8f\xb3\xd2\x8d\xb2\xd3\x8b\ \xb1\xd2\x85\xaf\xcf\x81\xad\xcd\x7d\xa5\xc6\x7e\xa0\xc2\x81\xa5\ \xc8\x85\xac\xcb\x89\xaf\xcb\x88\xae\xc9\x84\xaf\xc8\x87\xb0\xce\ \x8c\xb2\xcf\x92\xb7\xd4\x91\xb6\xd6\x8d\xb8\xd7\x8a\xb8\xd6\x8c\ \xb7\xd3\x8e\xb6\xd2\x90\xb6\xd2\x92\xbb\xd4\x92\xb9\xd3\x92\xb8\ \xd1\x96\xbc\xd5\x97\xbb\xd7\x97\xba\xd9\x93\xb7\xd7\x91\xb5\xd7\ \x8f\xb3\xd5\x8d\xb3\xd3\x00\x00\x00\x2f\x4c\x63\x59\x76\x91\x76\ \x99\xb5\x4f\x77\x8e\x6d\x97\xaf\x84\xb0\xcd\x89\xb8\xd8\x82\xb6\ \xd7\x89\xb9\xda\x91\xbc\xdc\x92\xba\xd8\x93\xbd\xd9\x95\xbf\xda\ \x8f\xbd\xd6\x86\xb5\xce\x82\xad\xc7\x81\xaa\xc7\x8d\xb7\xd5\x8d\ \xb5\xd2\x5b\x81\x9b\x48\x6f\x85\x82\xac\xc2\x82\xb2\xcd\x7e\xb1\ \xd0\x80\xb4\xd1\x83\xb4\xcf\x85\xb4\xd1\x87\xb6\xd5\x86\xb7\xd5\ \x7f\xb3\xd1\x7a\xb3\xce\x77\xb1\xcc\x79\xb0\xce\x7f\xb0\xd1\x7e\ \xac\xd0\x7a\xa7\xcd\x76\xa3\xc8\x75\xa3\xc5\x81\xaf\xce\x8a\xb4\ \xd4\x8d\xb3\xd4\x83\xaa\xc6\x73\x9f\xb9\x7a\xa4\xbd\x74\x98\xb4\ \x31\x4e\x6b\x38\x57\x74\x6f\x94\xb1\x76\x9e\xbd\x80\xab\xcd\x7c\ \xa9\xcb\x70\x9b\xba\x5b\x7f\x9a\x72\x8c\xa2\x4a\x5c\x6e\x27\x3c\ \x4d\x70\x8e\xa2\x7c\x9f\xb5\x54\x79\x91\x38\x5f\x7a\x52\x80\x9b\ \x7a\xa7\xc0\x8e\xb3\xcc\x75\x98\xaf\x39\x5f\x72\x41\x66\x77\x74\ \x97\xaa\x79\x9a\xb0\x52\x72\x89\x31\x55\x6c\x66\x8c\xa8\x87\xac\ \xc7\x72\x99\xb2\x5a\x82\x9d\x4e\x73\x8c\x2d\x50\x64\x45\x6a\x7b\ \x80\xa5\xb7\x67\x87\x9a\x3c\x57\x69\x38\x54\x66\x6b\x8a\x9f\x7f\ \x9c\xb5\x67\x80\x98\x25\x3c\x51\x41\x5a\x74\x65\x82\x9d\x63\x82\ \x9a\x41\x61\x78\x60\x86\xa0\x7d\xa7\xc6\x86\xb2\xd0\x88\xb3\xce\ \x88\xb6\xce\x86\xb4\xcc\x87\xb1\xc9\x83\xa2\xbb\x76\x93\xaa\x6b\ \x8e\xa3\x71\x97\xb0\x79\x9e\xb8\x7f\xa3\xb9\x84\xa8\xbf\x88\xae\ \xc6\x8b\xb0\xca\x86\xad\xc7\x82\xa8\xc3\x84\xa9\xc3\x7f\xa5\xc3\ \x7a\xa5\xc2\x76\xa6\xbd\x79\xa9\xbd\x80\xac\xbf\x86\xaf\xc5\x88\ \xb1\xc9\x8a\xb1\xca\x88\xaf\xc8\x83\xa9\xc3\x78\x9f\xb7\x60\x89\ \x9f\x64\x90\xa5\x7c\xaa\xc2\x84\xaf\xcb\x90\xb4\xd4\x97\xb5\xd7\ \x97\xb4\xd8\x93\xb2\xd5\x93\xb3\xd2\x97\xb5\xd2\x94\xb5\xd3\x8f\ \xb3\xd1\x8d\xb2\xd0\x8d\xb2\xd1\x8b\xb0\xcf\x8a\xae\xcd\x85\xad\ \xcc\x7d\xaa\xc9\x79\xa3\xc4\x79\x9c\xbe\x83\xa5\xc8\x88\xac\xcc\ \x8d\xb1\xce\x8a\xb1\xcb\x83\xb0\xc8\x83\xb2\xca\x87\xb2\xcb\x8a\ \xb5\xd0\x8f\xb7\xd7\x8d\xb8\xd7\x8c\xb7\xd5\x8d\xb5\xd2\x90\xb8\ \xd2\x8e\xb9\xd3\x90\xbc\xd5\x93\xb9\xd4\x93\xb8\xd2\x94\xb9\xd3\ \x93\xb8\xd2\x95\xb8\xd4\x93\xb7\xd4\x95\xb7\xd9\x93\xb5\xd8\x8f\ \xb5\xd6\x00\x00\x00\x2d\x4d\x64\x6c\x8d\xaa\x8a\xaf\xce\x64\x8f\ \xa8\x49\x78\x8f\x80\xaf\xca\x8e\xbd\xdc\x8b\xbe\xdc\x8c\xbd\xda\ \x93\xc1\xdd\x90\xbf\xda\x8e\xbd\xd9\x90\xbf\xda\x90\xc0\xdc\x8c\ \xbb\xd9\x8b\xba\xd8\x8a\xb8\xd6\x8a\xb8\xd8\x8c\xbb\xdd\x81\xaa\ \xcc\x47\x6b\x86\x5c\x82\x98\x82\xaf\xca\x80\xb2\xd3\x83\xb8\xd7\ \x85\xba\xd5\x87\xba\xd4\x8b\xbb\xd7\x8c\xbc\xdb\x8a\xbc\xda\x85\ \xb8\xd7\x84\xb9\xd9\x82\xb9\xd9\x7e\xb4\xd3\x7f\xb1\xd1\x82\xae\ \xd0\x80\xac\xce\x82\xb1\xd0\x89\xb8\xd6\x8e\xb8\xd7\x92\xb9\xd9\ \x92\xb8\xd7\x8a\xb3\xd2\x86\xaf\xcd\x7e\xa3\xbf\x3f\x62\x79\x3c\ \x60\x78\x77\x9e\xbb\x70\x97\xbb\x5f\x87\xad\x7b\xa3\xc8\x85\xac\ \xcd\x6f\x93\xaf\x56\x74\x8a\x57\x6e\x80\x27\x41\x52\x77\x99\xad\ \x90\xb7\xd1\x8a\xb2\xd1\x7e\xa6\xc6\x60\x8e\xac\x5c\x8c\xa6\x80\ \xac\xc4\x89\xb3\xcc\x77\xa3\xbb\x58\x84\x9b\x5d\x89\x9e\x7f\xa6\ \xbd\x7c\xa3\xbe\x6a\x95\xb0\x80\xac\xc7\x8a\xb3\xce\x84\xae\xca\ \x7a\xa8\xc6\x6a\x96\xb2\x51\x7c\x90\x3a\x63\x72\x75\x9f\xae\x6e\ \x95\xa6\x44\x64\x76\x1a\x35\x47\x4a\x69\x7d\x6f\x91\xa8\x5d\x7f\ \x95\x2d\x4c\x60\x3b\x59\x71\x5f\x7d\x99\x54\x71\x8e\x20\x40\x5a\ \x54\x78\x94\x7d\xa4\xc4\x83\xae\xcc\x86\xb2\xcd\x89\xb6\xcf\x8a\ \xb3\xcc\x83\xa4\xbd\x61\x7c\x90\x2f\x49\x58\x2c\x4f\x5e\x39\x61\ \x74\x42\x66\x79\x42\x64\x72\x4c\x6e\x7e\x60\x88\x9a\x6c\x92\xaa\ \x6c\x90\xa9\x63\x82\x9b\x63\x81\x95\x66\x87\x9c\x62\x88\x9d\x60\ \x89\x97\x62\x8a\x97\x6a\x95\xa4\x77\xa2\xb6\x7d\xa4\xbc\x84\xa4\ \xbe\x7b\x9b\xb4\x76\x98\xae\x6f\x93\xa6\x56\x78\x89\x3a\x61\x71\ \x6d\x98\xab\x78\xa4\xbe\x84\xaa\xcb\x8d\xab\xce\x8e\xaa\xcd\x8e\ \xac\xcc\x90\xae\xcc\x93\xb1\xcd\x91\xb0\xd0\x8b\xac\xcf\x87\xac\ \xcc\x88\xae\xcd\x87\xad\xcd\x88\xad\xcc\x83\xaa\xca\x7d\xa5\xc6\ \x79\x9e\xc0\x78\x9c\xbe\x80\xa4\xc5\x87\xad\xcb\x8b\xad\xce\x8d\ \xb2\xcf\x8a\xb3\xcf\x88\xb4\xcd\x88\xb3\xcd\x8b\xb4\xd2\x92\xb6\ \xd9\x92\xb7\xd6\x91\xb6\xd1\x8f\xb5\xd0\x92\xb7\xd0\x90\xb9\xd2\ \x91\xba\xd4\x95\xb9\xd4\x98\xba\xd4\x94\xb8\xd2\x91\xb6\xd0\x92\ \xb7\xd1\x92\xb7\xd2\x94\xb5\xd6\x93\xb4\xd6\x8f\xb2\xd4\x00\x00\ \x00\x40\x5e\x76\x56\x76\x8f\x76\x99\xb6\x49\x75\x8d\x60\x8f\xa7\ \x8b\xbb\xd4\x93\xc1\xdd\x92\xc2\xdc\x90\xc1\xd9\x8c\xbf\xd6\x88\ \xbd\xd5\x88\xb9\xd6\x88\xb7\xd6\x8c\xba\xd9\x8b\xb9\xd8\x8a\xb8\ \xd7\x85\xb5\xd5\x82\xb6\xd5\x83\xb8\xda\x7f\xac\xd0\x5f\x83\xa3\ \x40\x63\x7d\x77\xa0\xbc\x82\xb2\xd2\x87\xb8\xd7\x89\xba\xd8\x8e\ \xbc\xd9\x8f\xbc\xd9\x8e\xbd\xdc\x91\xbf\xdd\x92\xbb\xdc\x8a\xb6\ \xd8\x82\xb6\xd7\x80\xb8\xd5\x7c\xb2\xd0\x7f\xac\xca\x7b\xa2\xbf\ \x7b\xa6\xc0\x84\xb1\xcc\x89\xb6\xd1\x90\xbb\xd8\x8f\xb8\xd7\x92\ \xb8\xd8\x8c\xb2\xd2\x82\xa8\xc4\x58\x7c\x93\x2f\x55\x69\x70\x97\ \xb3\x71\x99\xbe\x52\x7a\x9f\x71\x98\xbe\x8a\xb2\xd3\x7b\x9f\xba\ \x49\x69\x7c\x55\x6e\x7e\x24\x3d\x4d\x71\x91\xa5\x99\xbe\xda\x96\ \xbc\xdc\x93\xb9\xdb\x88\xb6\xd5\x84\xb4\xd2\x86\xb4\xce\x8a\xb7\ \xd1\x86\xb4\xcf\x7f\xac\xc7\x7d\xa9\xc4\x8a\xb4\xcf\x8b\xb8\xd3\ \x86\xb5\xd2\x87\xb6\xd4\x8b\xb5\xd2\x8a\xb3\xd0\x88\xb3\xd2\x82\ \xad\xcb\x75\x9f\xb6\x4b\x78\x8a\x5b\x8c\x9b\x75\xa5\xb8\x63\x8a\ \xa0\x2b\x4a\x5d\x3b\x5f\x6f\x73\x9d\xb2\x79\xa3\xbb\x72\x9b\xb2\ \x76\x9e\xb6\x7c\xa1\xbd\x75\x99\xb9\x5b\x7f\x9e\x66\x8b\xab\x7f\ \xa9\xcb\x82\xb0\xd0\x83\xb3\xd0\x89\xb6\xd1\x8b\xb3\xcc\x81\xa0\ \xb9\x55\x71\x86\x1f\x3c\x4d\x29\x4c\x5c\x41\x69\x7b\x39\x60\x6e\ \x22\x47\x52\x37\x5c\x69\x5b\x82\x94\x65\x8a\xa2\x50\x70\x89\x29\ \x46\x5a\x2b\x45\x56\x3b\x57\x68\x2a\x48\x57\x20\x3f\x48\x31\x53\ \x5b\x52\x78\x87\x64\x8e\xa1\x74\x98\xae\x7a\x96\xae\x64\x7e\x93\ \x5c\x79\x8b\x6c\x8d\xa1\x5e\x7b\x8e\x31\x4e\x5f\x5d\x81\x93\x71\ \x9b\xb4\x7f\xa4\xc5\x86\xa5\xc9\x87\xa5\xc7\x84\xa3\xc5\x87\xa7\ \xc5\x8b\xaa\xc5\x8d\xab\xca\x86\xa8\xc7\x83\xa7\xc4\x83\xa7\xc3\ \x85\xaa\xc5\x84\xac\xc7\x81\xa9\xc8\x7f\xa2\xc4\x77\x99\xbc\x73\ \x9a\xba\x7b\xa6\xc5\x82\xac\xcc\x8a\xad\xd2\x8f\xb1\xd2\x90\xb3\ \xd3\x91\xb6\xd3\x90\xb7\xd4\x94\xb6\xd9\x9a\xb6\xdc\x9b\xb5\xd6\ \x9a\xb7\xd2\x98\xb6\xcd\x95\xb7\xce\x94\xb8\xd1\x95\xb8\xd4\x97\ \xb8\xd3\x98\xb7\xd2\x96\xb5\xd0\x91\xb3\xcd\x92\xb5\xcf\x94\xb5\ \xd1\x96\xb4\xd4\x94\xb3\xd4\x92\xb2\xd4\x00\x00\x00\x49\x65\x80\ \x50\x6d\x85\x6f\x93\xad\x71\x9b\xb7\x89\xb6\xd3\x92\xc1\xdd\x93\ \xc2\xde\x95\xc1\xde\x94\xc0\xdb\x90\xc0\xda\x8a\xb9\xd8\x7f\xaf\ \xce\x79\xa8\xc5\x88\xb4\xd0\x8e\xb8\xd6\x8c\xba\xd6\x84\xb8\xd4\ \x84\xbc\xda\x83\xba\xdb\x7d\xae\xcf\x66\x8f\xae\x3b\x62\x7e\x71\ \x99\xb6\x88\xb4\xd3\x8e\xb9\xd8\x91\xba\xdd\x90\xbb\xdb\x8d\xbb\ \xda\x8f\xbe\xdd\x91\xbf\xdd\x92\xbb\xdc\x8c\xb7\xda\x83\xb7\xd9\ \x7f\xb8\xd8\x7a\xb6\xd3\x6a\xa1\xbc\x3a\x67\x7f\x4a\x72\x8b\x7a\ \xa4\xbd\x89\xb5\xcf\x8f\xbb\xd8\x90\xb9\xd7\x92\xb7\xd6\x8f\xb4\ \xd3\x86\xb0\xcc\x6f\x9e\xb7\x44\x73\x8a\x4e\x7c\x97\x64\x92\xb2\ \x4b\x7b\x9b\x75\xa5\xc6\x87\xb4\xd5\x84\xaa\xc5\x4a\x68\x7b\x34\ \x4c\x5b\x1e\x36\x44\x6d\x8b\x9e\x9d\xc0\xda\x9b\xbf\xde\x8a\xb2\ \xd2\x7a\xa9\xc8\x7f\xad\xcc\x8b\xb6\xd2\x8d\xba\xd7\x8d\xbb\xd9\ \x8c\xba\xda\x8f\xb9\xd9\x92\xbb\xdb\x91\xbe\xdc\x8c\xbb\xda\x8a\ \xb9\xd9\x8e\xb8\xd7\x8a\xb3\xd3\x8a\xb3\xd3\x8b\xb3\xd2\x82\xaa\ \xc5\x65\x91\xaa\x42\x75\x89\x71\xa5\xba\x6e\x99\xb2\x46\x67\x7b\ \x2d\x4f\x5f\x76\x9d\xb2\x87\xb0\xcc\x86\xb2\xca\x88\xb3\xcb\x85\ \xb2\xcb\x83\xaf\xce\x83\xaa\xcb\x83\xa8\xce\x83\xaf\xd3\x84\xb4\ \xd3\x84\xb3\xd0\x88\xb5\xd0\x87\xb1\xce\x82\xab\xc6\x7b\xa1\xba\ \x5f\x83\x9a\x39\x5a\x72\x2a\x51\x67\x35\x5e\x70\x36\x5f\x6e\x3b\ \x64\x76\x5a\x83\x9a\x71\x99\xb6\x78\x9e\xba\x5b\x7d\x96\x37\x58\ \x6e\x35\x57\x6c\x2b\x4a\x5d\x1d\x3c\x4b\x31\x52\x60\x5c\x84\x94\ \x75\xa0\xb4\x7b\xa0\xb7\x76\x93\xab\x55\x6f\x85\x3f\x5d\x6f\x68\ \x8a\xa1\x66\x85\x9f\x38\x54\x6c\x51\x71\x88\x7b\x9f\xb9\x85\xa8\ \xc6\x88\xa8\xc9\x83\xa6\xc6\x80\xa4\xc6\x82\xa7\xc6\x86\xa8\xc5\ \x85\xa8\xc3\x82\xa8\xc1\x80\xa5\xbf\x83\xa5\xc2\x85\xaa\xc4\x80\ \xab\xc4\x7d\xa9\xc6\x7f\xa3\xc5\x7b\x9c\xbf\x7a\xa0\xc2\x7b\xaa\ \xca\x7f\xae\xd0\x88\xb1\xd1\x90\xb4\xd2\x94\xb4\xd1\x94\xb6\xd2\ \x93\xb4\xd5\x98\xb5\xd9\x9d\xb5\xda\x9c\xb5\xd6\x9c\xb7\xd2\x9b\ \xb7\xcf\x99\xb6\xd1\x97\xb5\xd3\x99\xb7\xd5\x9a\xb8\xd3\x9c\xb8\ \xd3\x96\xb3\xce\x91\xb1\xce\x93\xb3\xd0\x96\xb6\xd2\x94\xb4\xd2\ \x95\xb4\xd5\x93\xb2\xd5\x00\x00\x00\x72\x8e\xae\x31\x4d\x66\x50\ \x73\x89\x89\xb3\xcc\x94\xc0\xde\x97\xc6\xe4\x94\xc4\xe2\x95\xc2\ \xe3\x9a\xc1\xe2\x93\xc0\xde\x87\xbb\xd7\x72\xa7\xc2\x59\x89\xa3\ \x86\xaf\xc8\x92\xba\xd5\x8d\xbb\xd6\x86\xbc\xd8\x85\xbe\xda\x7f\ \xb6\xd5\x75\xa3\xc3\x50\x77\x96\x48\x70\x8c\x82\xab\xc8\x8f\xbb\ \xda\x92\xbc\xdf\x93\xbd\xe2\x8c\xbb\xdc\x86\xbb\xda\x89\xbd\xdc\ \x8d\xbe\xde\x8e\xbc\xdd\x89\xb9\xdc\x80\xb5\xd9\x7f\xb9\xdc\x77\ \xb8\xd6\x6d\xad\xc9\x60\x97\xb0\x73\xa1\xb9\x8e\xb6\xd0\x93\xba\ \xd6\x8f\xba\xd8\x8e\xb9\xd9\x8f\xb5\xd7\x89\xb3\xd4\x83\xb4\xd2\ \x79\xb0\xcd\x70\xa7\xc4\x5f\x94\xb2\x58\x8d\xab\x66\x9b\xb9\x7f\ \xb5\xd3\x88\xb8\xd7\x89\xb0\xcb\x56\x72\x85\x26\x40\x4d\x1c\x3a\ \x47\x6b\x8f\xa2\x9f\xc3\xdc\x9d\xc2\xde\x7d\xa7\xc4\x4b\x7a\x96\ \x5c\x8b\xa5\x85\xaf\xcb\x8e\xbb\xd8\x8e\xbe\xdc\x8e\xbc\xdc\x92\ \xbd\xdd\x92\xbe\xdb\x8d\xbe\xd9\x8b\xbd\xdb\x8b\xbb\xda\x90\xbb\ \xdb\x8c\xb6\xd5\x89\xb5\xd3\x8c\xb5\xd5\x87\xb0\xd1\x77\xa3\xc2\ \x4b\x7c\x95\x61\x91\xa8\x75\x9e\xb6\x56\x76\x8b\x25\x44\x54\x68\ \x8a\x9f\x8a\xb0\xcb\x8d\xb6\xd1\x8e\xb9\xd4\x8b\xb9\xd5\x8c\xb8\ \xd8\x8a\xb4\xd6\x8b\xb2\xd7\x8c\xb6\xd7\x86\xb5\xd1\x86\xb2\xcb\ \x86\xb1\xcd\x86\xb4\xd0\x85\xb4\xd3\x84\xb2\xcf\x82\xaa\xc9\x7b\ \x9e\xc0\x6b\x8f\xb0\x65\x90\xaa\x6a\x94\xad\x67\x90\xac\x6d\x95\ \xb4\x74\x9c\xbf\x7f\xa6\xca\x7c\xa7\xc6\x71\x9e\xb9\x6e\x9a\xb3\ \x6a\x94\xad\x63\x89\xa2\x5e\x83\x9b\x6f\x98\xb0\x7c\xa9\xc1\x86\ \xaf\xc7\x82\xa4\xc0\x69\x89\xa5\x47\x6d\x84\x61\x8b\xa5\x72\x99\ \xb8\x57\x7a\x9a\x5d\x80\x9d\x7f\xa4\xbf\x87\xad\xc6\x88\xac\xc8\ \x84\xaa\xc7\x81\xa9\xc8\x81\xab\xc8\x84\xad\xc6\x83\xac\xc5\x81\ \xa9\xc3\x85\xab\xc9\x87\xac\xca\x86\xab\xc6\x81\xaa\xc3\x80\xaa\ \xc3\x81\xa6\xc2\x7f\xa3\xc0\x80\xaa\xc7\x7f\xaf\xce\x84\xb3\xd1\ \x8c\xb7\xd3\x93\xb7\xd3\x94\xb6\xd3\x94\xb9\xd6\x95\xb8\xda\x9b\ \xb7\xdb\x9c\xb4\xd7\x9b\xb6\xd6\x97\xb7\xd2\x97\xb6\xd2\x97\xb6\ \xd3\x99\xb7\xd8\x98\xb7\xd6\x9b\xb9\xd4\x99\xb7\xd3\x94\xb3\xd1\ \x91\xb2\xcf\x95\xb7\xd3\x95\xb7\xd5\x94\xb5\xd6\x94\xb7\xd8\x94\ \xb7\xd9\x00\x00\x00\x90\xae\xd0\x4c\x66\x80\x21\x41\x53\x7b\xa1\ \xb5\x98\xbf\xd9\x95\xc3\xdf\x91\xc1\xe0\x94\xc0\xe3\x9a\xc0\xe5\ \x92\xbf\xe0\x85\xbd\xd7\x79\xb3\xcb\x59\x8c\xa4\x69\x92\xaa\x89\ \xb1\xca\x89\xb7\xd2\x87\xb9\xd4\x84\xb6\xd0\x73\xa1\xbb\x55\x7c\ \x99\x42\x69\x85\x74\xa1\xbc\x8a\xba\xd4\x8c\xbc\xdb\x90\xbd\xe2\ \x8d\xbc\xe2\x86\xbc\xdf\x7f\xb9\xdb\x82\xbb\xdc\x89\xbd\xe0\x8a\ \xbb\xdd\x84\xb9\xdb\x7f\xb5\xd8\x7e\xb5\xd8\x7c\xb9\xdb\x76\xb6\ \xd7\x7d\xb6\xd5\x89\xb8\xd4\x96\xbc\xd9\x95\xbb\xdb\x8c\xb6\xda\ \x86\xb3\xd6\x86\xb0\xd4\x87\xb3\xd6\x84\xb6\xd5\x7d\xb6\xd3\x7b\ \xb6\xd3\x7a\xb3\xd1\x78\xaf\xcc\x83\xb7\xd1\x8a\xbc\xd8\x89\xb7\ \xd5\x8c\xb1\xcd\x67\x82\x96\x22\x3d\x4a\x19\x3e\x48\x6c\x95\xa7\ \x9d\xc4\xdc\x9c\xc2\xdd\x7f\xaa\xc4\x47\x76\x91\x58\x87\xa1\x80\ \xad\xca\x8a\xb9\xd8\x8d\xbc\xdb\x8d\xbb\xdc\x8c\xba\xda\x8c\xbd\ \xd7\x87\xbe\xd4\x86\xbc\xd7\x88\xbb\xd9\x8c\xbb\xda\x8e\xb8\xd8\ \x8b\xb7\xd6\x88\xb4\xd6\x88\xb1\xd6\x7d\xa8\xca\x69\x97\xb4\x50\ \x7a\x96\x68\x8c\xa8\x57\x75\x8d\x1b\x36\x48\x46\x65\x78\x67\x8c\ \xa4\x77\x9f\xb8\x85\xb0\xc9\x8f\xb6\xd3\x93\xb5\xd6\x91\xb5\xd7\ \x90\xb4\xd5\x8f\xb6\xd6\x8a\xb3\xce\x8a\xb0\xca\x89\xaf\xcd\x8a\ \xb4\xd4\x87\xb6\xd6\x8b\xb7\xd7\x8c\xb4\xd6\x8a\xad\xd2\x82\xa8\ \xca\x7e\xa8\xc8\x80\xa7\xc8\x80\xa3\xc5\x83\xa6\xc9\x89\xad\xd1\ \x8a\xb1\xd4\x85\xb2\xd2\x81\xb0\xcf\x7f\xae\xca\x7e\xad\xc8\x7f\ \xa9\xc7\x85\xaa\xca\x88\xac\xcc\x89\xae\xcc\x8a\xaf\xcc\x89\xae\ \xcd\x80\xa5\xc6\x70\x99\xb6\x6f\x9d\xb9\x7c\xa6\xc6\x78\xa0\xc2\ \x7c\xa0\xc0\x83\xa8\xc4\x89\xae\xc9\x8b\xb0\xca\x89\xaf\xca\x82\ \xab\xc8\x7f\xaa\xc8\x80\xac\xc5\x82\xae\xc8\x87\xaf\xce\x89\xad\ \xcf\x87\xaa\xcc\x87\xa9\xc9\x86\xaa\xc9\x87\xab\xc7\x85\xa9\xc2\ \x7f\xa5\xbf\x83\xac\xc6\x84\xb1\xce\x8b\xb5\xd3\x8e\xb8\xd3\x92\ \xb8\xd4\x91\xb7\xd5\x92\xb9\xda\x93\xb9\xdb\x98\xb7\xd9\x9b\xb5\ \xd5\x96\xb5\xd1\x90\xb6\xcf\x8e\xb6\xd0\x93\xb8\xd6\x92\xb8\xd8\ \x92\xb8\xd6\x98\xb9\xd4\x9a\xb8\xd7\x94\xb5\xd6\x92\xb5\xd3\x96\ \xb8\xd6\x96\xb8\xda\x93\xb6\xd9\x91\xb5\xd8\x93\xb6\xd8\x00\x00\ \x00\x93\xb5\xd5\x67\x82\x99\x19\x34\x44\x4d\x6d\x7d\x93\xb9\xd1\ \x8e\xbb\xd6\x8b\xb9\xd9\x8e\xbc\xdf\x92\xbb\xe1\x8f\xbb\xdd\x84\ \xba\xd6\x7d\xb8\xd0\x78\xae\xc6\x59\x83\x9e\x65\x8b\xa9\x76\xa1\ \xbc\x6f\x9b\xb3\x5b\x87\x9e\x3f\x68\x81\x42\x69\x86\x74\x9f\xbe\ \x83\xb7\xd3\x83\xb9\xd6\x86\xbb\xda\x8c\xbe\xdf\x8c\xbf\xe1\x85\ \xbc\xde\x7e\xba\xdd\x80\xb9\xde\x87\xbb\xdf\x89\xb9\xde\x84\xb7\ \xdc\x81\xb5\xd8\x80\xb3\xd7\x7e\xb6\xd9\x7c\xb9\xdc\x7f\xb8\xda\ \x8b\xbb\xdb\x93\xbc\xdc\x8e\xb8\xd9\x83\xb0\xd5\x81\xae\xd4\x81\ \xad\xd3\x85\xb2\xd6\x85\xb4\xd4\x82\xb4\xd3\x7d\xb6\xd3\x80\xb6\ \xd4\x87\xb8\xd7\x8c\xba\xd7\x8c\xb9\xd8\x8d\xb7\xd7\x8d\xb1\xcf\ \x73\x90\xa8\x29\x46\x55\x26\x4d\x5a\x71\x9e\xb1\x99\xc2\xdc\x95\ \xc0\xd8\x88\xb6\xd0\x7c\xac\xc7\x7e\xaf\xc9\x86\xb4\xd1\x8b\xba\ \xd8\x89\xb8\xd7\x8a\xb8\xd8\x88\xb8\xd5\x88\xbb\xd4\x86\xbc\xd4\ \x8b\xbd\xdb\x8d\xbe\xdb\x8c\xbc\xda\x8f\xbb\xda\x8d\xb9\xd8\x89\ \xb6\xd8\x87\xb1\xd4\x84\xaf\xcf\x7a\xa5\xc6\x69\x90\xb2\x4c\x6f\ \x8e\x47\x66\x7f\x15\x33\x48\x30\x54\x69\x4d\x76\x8f\x5b\x88\xa2\ \x60\x8b\xa4\x70\x93\xaf\x8e\xad\xcb\x91\xb3\xd2\x91\xb7\xd3\x91\ \xb8\xd4\x90\xb6\xd1\x8f\xb4\xcf\x8e\xb4\xd3\x8a\xb6\xd5\x8b\xb6\ \xd5\x8e\xb6\xd7\x91\xb5\xd7\x90\xb4\xd6\x8b\xb3\xd2\x8d\xb4\xd4\ \x8d\xb1\xd1\x8f\xb2\xd3\x8e\xb3\xd3\x92\xb5\xd6\x92\xb7\xd9\x8f\ \xb8\xd9\x8d\xb7\xd9\x8a\xb7\xd6\x87\xb6\xd1\x89\xb5\xd3\x90\xb6\ \xd7\x93\xb6\xd8\x94\xb3\xd5\x90\xb3\xd1\x8c\xb4\xd0\x87\xb1\xcf\ \x83\xb0\xcf\x83\xad\xcc\x89\xaf\xcf\x89\xad\xd1\x88\xac\xcf\x87\ \xac\xca\x8a\xaf\xcb\x90\xb2\xce\x8b\xaf\xcd\x86\xab\xca\x7e\xa7\ \xc7\x7e\xa9\xc7\x84\xac\xcb\x89\xae\xcf\x8a\xae\xcf\x87\xab\xcb\ \x89\xab\xcb\x8a\xad\xcc\x89\xad\xc9\x86\xab\xc4\x87\xa9\xc4\x8b\ \xaf\xcb\x8e\xb1\xd1\x91\xb5\xd5\x91\xb8\xd4\x90\xb9\xd5\x90\xb8\ \xd6\x8f\xb9\xd9\x90\xb9\xd9\x94\xb8\xd7\x97\xb6\xd4\x94\xb8\xd2\ \x8b\xb6\xce\x89\xb6\xcf\x8d\xb8\xd6\x8d\xb8\xd8\x8e\xb7\xd5\x95\ \xba\xd4\x9a\xb8\xd8\x96\xb6\xd8\x96\xb7\xd5\x9a\xb8\xd7\x98\xb6\ \xd9\x91\xb3\xd6\x90\xb4\xd6\x93\xb4\xd8\x00\x00\x00\x8f\xb1\xcd\ \x73\x8c\xa2\x1b\x32\x40\x30\x4d\x5b\x81\xa7\xbe\x8b\xb6\xd4\x87\ \xb4\xd4\x8c\xb8\xd9\x8f\xb5\xd8\x8c\xb2\xd4\x88\xb8\xd6\x82\xba\ \xd6\x7e\xb6\xd1\x78\xa8\xc6\x68\x90\xb1\x5c\x84\xa3\x4c\x78\x92\ \x4a\x7a\x92\x65\x95\xae\x77\xa5\xc4\x7f\xae\xd1\x83\xb9\xdb\x84\ \xbb\xd9\x85\xba\xd9\x8c\xbc\xde\x8c\xbc\xdd\x84\xb9\xd9\x83\xbb\ \xdd\x86\xbb\xdd\x8a\xba\xdd\x8a\xb6\xdc\x86\xb6\xde\x7f\xb3\xd8\ \x7a\xaf\xd3\x78\xaf\xd2\x77\xae\xd3\x7b\xb3\xd5\x85\xb8\xd7\x89\ \xb8\xd9\x80\xb2\xd4\x7c\xae\xd1\x7d\xaf\xd2\x7f\xb1\xd3\x82\xb2\ \xd4\x82\xb1\xd0\x80\xaf\xce\x71\xa6\xc3\x78\xaa\xc9\x86\xb4\xd3\ \x8a\xb5\xd5\x89\xb4\xd8\x8d\xb5\xda\x91\xb4\xd5\x82\x9f\xbe\x4e\ \x6f\x88\x4a\x75\x8a\x80\xaf\xc7\x8f\xba\xd8\x8e\xbb\xd8\x8a\xb9\ \xd7\x8a\xba\xd8\x8b\xba\xd6\x90\xbb\xd7\x8e\xba\xd6\x88\xb6\xd5\ \x86\xb5\xd5\x87\xb6\xd5\x89\xb8\xd5\x8b\xbb\xd8\x8f\xbc\xdc\x92\ \xbe\xdd\x90\xbd\xdc\x92\xbf\xdd\x8f\xbc\xdb\x8a\xb9\xda\x88\xb6\ \xd8\x89\xb6\xd6\x84\xaf\xd0\x7c\xa7\xca\x69\x90\xb1\x42\x65\x7f\ \x1f\x41\x58\x4f\x77\x91\x75\xa2\xc0\x81\xae\xcb\x7b\xa4\xbf\x59\ \x7f\x97\x56\x7a\x8f\x86\xab\xc1\x8e\xb5\xce\x91\xb9\xd2\x92\xba\ \xd5\x91\xba\xd4\x8d\xb7\xd2\x8b\xb8\xd3\x8d\xb8\xd4\x91\xb8\xd7\ \x97\xba\xda\x94\xb8\xd7\x93\xb9\xd5\x95\xb9\xd7\x95\xb9\xd7\x95\ \xba\xda\x94\xbc\xdd\x94\xbc\xdb\x96\xbb\xda\x96\xbd\xdc\x92\xbd\ \xdc\x8f\xbb\xda\x8c\xba\xd6\x8b\xba\xd5\x90\xb9\xd8\x94\xb6\xd9\ \x96\xb5\xd6\x93\xb5\xd4\x8c\xb7\xd0\x86\xb3\xcf\x86\xb1\xcf\x8b\ \xb2\xd1\x90\xb3\xd3\x91\xb3\xd5\x8c\xb0\xd3\x8d\xb2\xd1\x8f\xb3\ \xd0\x90\xb1\xcf\x8b\xad\xcd\x84\xaa\xca\x7e\xa6\xc6\x80\xa6\xc6\ \x88\xab\xcc\x8b\xae\xcd\x8b\xaf\xcc\x89\xae\xcc\x8b\xb0\xcd\x8c\ \xb1\xcd\x8a\xae\xc8\x87\xab\xc5\x8b\xac\xc8\x93\xb0\xd1\x95\xb3\ \xd5\x91\xb5\xd3\x8f\xb9\xd2\x8f\xbb\xd4\x91\xb9\xd7\x93\xb9\xd9\ \x92\xb8\xd8\x94\xb8\xd6\x92\xb6\xd3\x90\xb8\xd1\x8a\xb7\xd1\x87\ \xb6\xd3\x87\xb4\xd4\x8c\xb4\xd4\x8d\xb2\xd1\x92\xb5\xd1\x99\xb8\ \xd8\x99\xb7\xda\x96\xb6\xd7\x9b\xb7\xd7\x9c\xb7\xda\x96\xb5\xd7\ \x93\xb3\xd4\x96\xb3\xd5\x00\x00\x00\x87\xa4\xbe\x6b\x81\x95\x1b\ \x2e\x3c\x23\x41\x4f\x75\x9e\xb4\x88\xb5\xd1\x89\xb3\xce\x89\xb1\ \xcb\x88\xab\xc5\x8d\xb2\xcd\x8b\xb7\xd4\x86\xb9\xd7\x7b\xb1\xcf\ \x7a\xac\xca\x7c\xa8\xc7\x85\xad\xce\x7e\xab\xc8\x77\xa6\xc0\x7a\ \xa9\xc5\x7c\xaa\xca\x81\xae\xd2\x88\xb6\xda\x82\xb3\xd3\x83\xb3\ \xd3\x86\xb5\xd6\x89\xb7\xd9\x87\xb5\xd5\x86\xb6\xd6\x86\xb6\xd5\ \x89\xb8\xd7\x8a\xb6\xd8\x89\xb5\xda\x83\xb4\xd6\x7d\xb1\xd2\x72\ \xa6\xca\x70\xa5\xc7\x77\xab\xcc\x7f\xb0\xd0\x7f\xb0\xd1\x77\xad\ \xce\x79\xae\xd1\x7c\xb1\xd2\x7b\xb0\xd1\x7c\xaf\xd0\x7f\xaf\xcd\ \x77\xab\xc8\x62\x9a\xb7\x5c\x8e\xad\x7b\xa7\xc7\x84\xb0\xd2\x85\ \xb3\xd5\x8f\xb9\xda\x94\xb8\xd8\x8f\xaf\xd0\x7c\xa2\xbf\x76\xa5\ \xbd\x80\xae\xc9\x87\xb1\xd0\x8e\xb9\xd8\x8b\xb9\xd7\x8c\xb9\xd6\ \x8f\xbb\xd5\x91\xba\xd3\x90\xb6\xd1\x88\xb1\xce\x81\xb1\xce\x87\ \xb6\xd3\x8c\xb7\xd6\x8e\xb8\xd7\x90\xb8\xd8\x95\xbb\xdc\x93\xba\ \xdb\x92\xbc\xdb\x8f\xbc\xdc\x8c\xba\xdb\x8c\xb8\xd9\x8b\xb6\xd5\ \x87\xb3\xd4\x81\xaf\xd1\x7b\xa6\xc7\x6b\x91\xad\x40\x63\x7c\x60\ \x82\xa1\x86\xaa\xcc\x8d\xb3\xd4\x88\xb0\xcc\x76\x9d\xb2\x4a\x6d\ \x7e\x53\x75\x87\x89\xae\xc3\x92\xb7\xd1\x94\xba\xd6\x90\xbc\xd3\ \x90\xbc\xd4\x91\xba\xd4\x91\xbb\xd9\x92\xbb\xdb\x95\xbb\xdc\x97\ \xbc\xda\x97\xbc\xd7\x96\xbb\xd7\x98\xbd\xda\x99\xbe\xdd\x98\xbe\ \xe0\x97\xbd\xdd\x9a\xbf\xda\x99\xc1\xdb\x93\xbf\xdb\x8f\xbb\xd8\ \x90\xbc\xd9\x8d\xbb\xd7\x90\xb8\xd9\x95\xb8\xda\x96\xb5\xd8\x93\ \xb4\xd6\x8d\xb3\xd3\x89\xb2\xd1\x8a\xaf\xce\x90\xb1\xd3\x92\xb4\ \xd6\x91\xb6\xd8\x90\xb6\xd6\x92\xb7\xd4\x91\xb6\xd0\x8d\xb2\xcd\ \x8b\xb0\xcc\x84\xab\xc6\x80\xa8\xc4\x86\xab\xc9\x8e\xae\xcf\x8d\ \xae\xcd\x8b\xb0\xcb\x89\xb0\xcb\x87\xb0\xcb\x8b\xb1\xcd\x8a\xab\ \xc6\x88\xa8\xc5\x8c\xac\xc9\x97\xb5\xd4\x9b\xb6\xd7\x93\xb6\xd3\ \x8e\xb6\xd1\x8e\xb7\xd2\x93\xb7\xd7\x94\xb6\xd7\x94\xb8\xd7\x92\ \xb8\xd3\x8e\xb7\xcf\x8c\xb7\xd0\x89\xb6\xd3\x86\xb3\xd5\x8a\xb1\ \xd6\x8f\xb1\xd5\x93\xb2\xd2\x95\xb6\xd2\x97\xb6\xd6\x99\xb7\xda\ \x98\xb7\xda\x97\xb5\xd7\x9c\xb6\xdc\x99\xb6\xdb\x96\xb5\xd4\x98\ \xb6\xd3\x00\x00\x00\x54\x6f\x85\x47\x5a\x6c\x12\x26\x33\x29\x47\ \x56\x74\x9d\xb2\x89\xb4\xcd\x7f\xa5\xbb\x58\x7b\x8a\x5f\x81\x90\ \x8b\xae\xc4\x8c\xb6\xd2\x84\xb2\xcf\x68\x94\xad\x5b\x84\x9c\x6e\ \x95\xae\x80\xa6\xc2\x7b\xa3\xbd\x69\x92\xa9\x6a\x93\xad\x73\x9d\ \xbd\x7e\xa9\xcd\x7f\xa8\xca\x72\x9e\xbb\x76\xa5\xc3\x7e\xac\xcd\ \x86\xae\xd1\x85\xac\xcc\x79\xa3\xbf\x75\xa5\xbd\x7e\xae\xc7\x83\ \xb3\xd0\x86\xb4\xd0\x85\xaf\xcb\x7d\xa8\xc6\x70\xa2\xc1\x72\xa6\ \xc3\x7e\xad\xc9\x84\xaf\xce\x80\xac\xce\x79\xa9\xc9\x7b\xad\xcc\ \x79\xad\xcb\x78\xad\xca\x79\xac\xc7\x78\xac\xc6\x74\xaa\xc6\x68\ \x9d\xbc\x4e\x7c\x9c\x66\x8e\xae\x7e\xa8\xc6\x83\xb1\xcf\x91\xb9\ \xd9\x97\xb8\xd9\x91\xb0\xd2\x83\xa8\xc6\x70\x9c\xb2\x76\x9f\xb6\ \x82\xa9\xc4\x88\xb2\xcd\x83\xaf\xc8\x85\xaf\xc8\x8b\xb2\xcb\x8f\ \xb2\xcd\x8c\xad\xca\x85\xaa\xc6\x81\xad\xc7\x87\xb4\xce\x90\xb7\ \xd3\x92\xb8\xd4\x90\xb6\xd5\x92\xb5\xd6\x92\xb7\xd5\x8f\xb6\xd5\ \x8f\xb8\xd8\x8f\xb7\xd8\x8d\xb6\xd7\x8a\xb5\xd4\x83\xb1\xd1\x80\ \xb0\xd0\x81\xaf\xce\x82\xa9\xc4\x72\x94\xb2\x5a\x78\x9b\x7b\x9a\ \xbf\x8d\xb0\xd1\x91\xb5\xd2\x87\xab\xc4\x68\x89\x9d\x37\x55\x66\ \x69\x88\x9d\x95\xb6\xd0\x96\xba\xd6\x94\xbd\xd6\x96\xbd\xd6\x95\ \xbb\xd6\x92\xba\xd9\x92\xba\xdb\x93\xbc\xdc\x95\xbb\xd8\x95\xbe\ \xd7\x97\xbf\xd8\x9c\xc1\xdd\x9b\xbf\xdd\x9b\xbf\xe0\x9a\xbd\xde\ \x9b\xc0\xdc\x98\xc1\xda\x93\xbe\xd9\x8f\xbd\xd6\x8f\xbb\xd6\x8e\ \xbb\xd9\x92\xba\xdb\x95\xb7\xd9\x97\xb5\xd6\x95\xb3\xd4\x91\xb2\ \xd4\x8f\xb3\xd4\x94\xb4\xd6\x97\xb4\xd9\x94\xb7\xd9\x90\xb8\xd8\ \x93\xba\xd9\x97\xba\xd8\x95\xb9\xd4\x91\xb5\xd2\x8d\xb2\xcc\x88\ \xb0\xc9\x84\xaf\xca\x85\xae\xce\x8b\xaf\xd2\x8c\xb0\xcf\x89\xb0\ \xca\x88\xb2\xcb\x8a\xb1\xcd\x89\xad\xcb\x8a\xa9\xc7\x89\xa8\xc3\ \x8e\xaf\xca\x98\xb7\xd3\x9a\xb7\xd4\x96\xb7\xd4\x91\xb6\xd2\x95\ \xb7\xd8\x99\xb9\xda\x94\xb8\xd7\x94\xb8\xd6\x90\xb6\xd2\x8c\xb6\ \xcf\x8b\xb5\xce\x8e\xb6\xd3\x8f\xb5\xd7\x93\xb5\xdb\x93\xb3\xd7\ \x94\xb4\xd5\x96\xb7\xd4\x96\xb7\xd7\x99\xb8\xd9\x98\xb6\xd9\x99\ \xb6\xda\x97\xb5\xdc\x98\xb6\xdb\x93\xb6\xd4\x93\xb6\xd3\x00\x00\ \x00\x56\x7a\x91\x26\x45\x58\x16\x33\x45\x24\x46\x5a\x49\x70\x87\ \x6c\x90\xa8\x61\x81\x95\x27\x47\x55\x21\x44\x50\x70\x94\xaa\x84\ \xab\xca\x7e\xa5\xc3\x59\x7a\x92\x2b\x4b\x5c\x4f\x71\x82\x65\x8a\ \xa0\x5f\x83\x9b\x36\x5a\x6e\x33\x5a\x70\x4e\x7a\x98\x6d\x9a\xb9\ \x59\x81\x9f\x31\x5a\x71\x50\x7e\x99\x71\x9e\xbf\x80\xa7\xc9\x7a\ \x9f\xbb\x52\x78\x8c\x34\x5d\x6b\x64\x92\xa2\x7b\xaa\xbd\x80\xaa\ \xbd\x65\x8b\x9d\x59\x7f\x96\x66\x94\xae\x70\x9f\xb7\x79\xa0\xb8\ \x79\x9c\xb5\x77\x9d\xb8\x74\x9e\xba\x7c\xa7\xc2\x79\xa7\xc0\x72\ \xa1\xb7\x72\xa0\xb7\x7b\xa9\xc3\x7d\xab\xca\x75\xa1\xc1\x59\x80\ \x9f\x45\x68\x85\x7e\xa1\xbc\x8b\xb1\xcd\x92\xb6\xd4\x94\xb1\xd3\ \x8d\xa7\xcb\x78\x94\xb4\x49\x69\x7f\x40\x63\x77\x65\x89\xa2\x75\ \x9c\xb5\x69\x8f\xa5\x58\x7c\x8f\x62\x86\x9b\x6e\x91\xa9\x6e\x8c\ \xa7\x66\x85\xa2\x70\x94\xad\x85\xa8\xc2\x8e\xaf\xc8\x8b\xac\xc4\ \x89\xaa\xc3\x88\xa9\xc7\x86\xa9\xc5\x85\xaa\xc5\x85\xab\xc8\x86\ \xad\xcb\x89\xaf\xce\x87\xb1\xd0\x82\xb2\xce\x82\xb1\xcd\x85\xb2\ \xcd\x8d\xb3\xce\x86\xa7\xc7\x74\x93\xba\x67\x87\xae\x78\x9b\xbd\ \x8a\xae\xcc\x8c\xaf\xcb\x7e\x9c\xb3\x43\x61\x72\x3b\x5b\x6d\x87\ \xaa\xc1\x94\xba\xd5\x94\xbc\xd7\x98\xbd\xda\x9c\xbc\xdb\x98\xba\ \xdb\x98\xbb\xdc\x96\xbc\xda\x95\xbc\xd8\x92\xbd\xd5\x97\xbf\xd9\ \x9d\xc0\xdd\x9c\xbe\xdd\x9c\xbb\xdc\x99\xbb\xdb\x95\xb8\xd7\x94\ \xb8\xd6\x96\xbb\xd6\x95\xbc\xd5\x93\xb9\xd5\x90\xb8\xd9\x94\xb8\ \xda\x98\xb8\xd8\x98\xb5\xd3\x98\xb4\xd2\x98\xb4\xd3\x99\xb7\xd8\ \x96\xb6\xda\x97\xb7\xdb\x94\xb6\xd9\x94\xb9\xd8\x97\xbb\xd8\x9b\ \xb9\xd8\x99\xb8\xd6\x95\xb7\xd5\x8e\xb5\xd1\x88\xb2\xcf\x85\xb3\ \xd2\x83\xb2\xd2\x87\xb1\xd3\x89\xb1\xd2\x88\xb0\xcd\x88\xae\xc9\ \x89\xae\xca\x89\xa8\xc9\x8b\xa8\xc4\x8d\xaa\xc5\x93\xb1\xcc\x9a\ \xb8\xd2\x9d\xb7\xd5\x9a\xb7\xd3\x97\xb8\xd6\x9a\xb9\xd7\x9a\xb8\ \xd6\x98\xba\xd6\x95\xb9\xd7\x92\xb6\xd4\x91\xb6\xd0\x91\xb7\xd0\ \x94\xb8\xd3\x93\xb7\xd7\x96\xb8\xdb\x93\xb5\xd9\x93\xb5\xd6\x94\ \xb4\xd4\x95\xb4\xd5\x96\xb6\xd7\x9a\xb8\xdb\x99\xb7\xdc\x99\xb6\ \xdb\x96\xb5\xd8\x94\xb7\xd5\x8e\xb6\xd2\x00\x00\x00\x7e\xad\xc6\ \x75\xa4\xbb\x53\x80\x99\x50\x7e\x99\x5f\x8b\xa8\x5c\x84\x9f\x51\ \x76\x8c\x3d\x62\x75\x4b\x72\x87\x74\x99\xb6\x7f\xa3\xc4\x73\x97\ \xb7\x61\x81\x9c\x2c\x4c\x60\x40\x63\x77\x68\x90\xa7\x60\x87\xa1\ \x49\x6f\x8a\x42\x6d\x87\x5b\x8c\xaa\x64\x97\xb4\x4e\x7f\x99\x23\ \x52\x6b\x45\x74\x91\x6c\x98\xbc\x76\x9b\xbf\x6a\x8c\xa9\x35\x58\ \x6a\x0f\x37\x41\x43\x70\x7c\x71\xa0\xae\x69\x93\xa1\x2b\x51\x5f\ \x3e\x65\x78\x6d\x99\xb0\x64\x8e\xa5\x3e\x62\x75\x2e\x4f\x61\x37\ \x5e\x71\x4b\x76\x8e\x5a\x84\x9c\x50\x77\x8e\x36\x5f\x72\x53\x7c\ \x92\x80\xa8\xc2\x8a\xb0\xd1\x83\xa9\xcc\x6f\x93\xb3\x41\x62\x7e\ \x6a\x8d\xa3\x89\xae\xc6\x92\xb6\xd1\x94\xb2\xd2\x86\x9f\xc2\x6c\ \x83\xa5\x4b\x65\x80\x46\x62\x7d\x6b\x8a\xaa\x67\x88\xa7\x47\x6b\ \x83\x32\x5a\x6b\x52\x7b\x8e\x5f\x85\x9d\x44\x64\x7e\x2a\x49\x63\ \x3e\x5d\x77\x55\x73\x8d\x4a\x6b\x81\x39\x5a\x6e\x47\x68\x7c\x5f\ \x80\x96\x67\x8a\x9e\x66\x8d\xa1\x6a\x8f\xa6\x73\x97\xb1\x7a\xa1\ \xb9\x7e\xa8\xc0\x7e\xae\xc4\x7f\xb1\xc8\x84\xb4\xcb\x8c\xb4\xd0\ \x89\xac\xcd\x7e\x9f\xc4\x71\x93\xb7\x6b\x8e\xae\x6f\x94\xb3\x7d\ \xa2\xc0\x7d\x9b\xb5\x50\x6d\x80\x24\x42\x53\x67\x8b\x9d\x8e\xb3\ \xcc\x94\xb8\xd6\x95\xb6\xd7\x98\xb5\xd5\x97\xb5\xd4\x96\xb7\xd2\ \x91\xb5\xd0\x8e\xb4\xce\x8c\xb6\xce\x8d\xb5\xce\x96\xb8\xd4\x97\ \xb5\xd6\x8e\xb1\xd0\x89\xad\xcc\x86\xab\xc7\x89\xab\xc6\x8c\xac\ \xc6\x8e\xae\xc5\x8e\xaf\xc9\x8f\xb1\xd0\x94\xb3\xd6\x95\xb3\xd3\ \x96\xb4\xcf\x98\xb5\xd0\x9a\xb7\xd3\x99\xb6\xd7\x95\xb5\xd8\x95\ \xb6\xd6\x96\xb5\xd5\x96\xb7\xd4\x9a\xba\xd7\x9a\xb8\xd6\x9b\xb8\ \xd9\x94\xb6\xd7\x8b\xb3\xd4\x86\xb2\xd3\x81\xb1\xd2\x7f\xb2\xd0\ \x80\xaf\xcd\x82\xae\xcb\x84\xac\xc9\x87\xac\xc7\x88\xaa\xc6\x85\ \xa6\xc3\x83\xa3\xbf\x89\xa8\xc4\x95\xb3\xcf\x98\xb5\xd2\x9b\xb7\ \xd3\x9b\xb7\xd2\x99\xb8\xd4\x9a\xb8\xd3\x9d\xba\xd5\x98\xb7\xd4\ \x94\xb6\xd6\x94\xb7\xd5\x95\xb5\xd1\x96\xb7\xd2\x94\xb8\xd4\x93\ \xb8\xd8\x91\xb8\xd9\x90\xb8\xd9\x90\xb5\xd6\x93\xb5\xd5\x96\xb5\ \xd5\x99\xb7\xd9\x99\xb6\xd9\x99\xb7\xda\x97\xb6\xd8\x95\xb7\xd7\ \x91\xb6\xd1\x91\xb7\xd3\x00\x00\x00\x8d\xbe\xdd\x8a\xbc\xdb\x85\ \xb8\xda\x80\xb7\xda\x86\xbb\xdb\x8b\xba\xd8\x89\xb5\xd2\x86\xb3\ \xce\x85\xb2\xcf\x8c\xb3\xd4\x8a\xaf\xd1\x7f\xa5\xc5\x6d\x96\xb4\ \x52\x7a\x98\x44\x6f\x8b\x68\x96\xb4\x76\xa3\xc5\x76\xa2\xc5\x6f\ \xa1\xc2\x70\xa8\xc8\x73\xad\xcc\x6b\xa5\xc2\x61\x9c\xb6\x61\x9a\ \xb9\x76\xa5\xcb\x80\xa9\xcd\x74\x9a\xb8\x57\x7f\x94\x4a\x77\x89\ \x6c\x9c\xaf\x70\xa3\xb8\x63\x92\xa5\x3d\x6a\x7c\x42\x6d\x84\x70\ \x9d\xb9\x78\xa6\xc0\x4f\x7c\x91\x19\x46\x55\x20\x52\x61\x51\x85\ \x98\x69\x99\xb0\x52\x7c\x95\x24\x4e\x66\x54\x80\x9a\x83\xab\xca\ \x90\xb6\xd7\x88\xb2\xd4\x7b\xa5\xc7\x5b\x85\xa1\x4e\x78\x91\x7d\ \xa5\xbf\x8e\xb4\xce\x93\xb8\xd2\x95\xb4\xd3\x8e\xac\xcd\x7f\xa0\ \xbf\x77\x9b\xbb\x83\xaa\xcc\x85\xab\xcd\x73\x9c\xb7\x5e\x8d\xa1\ \x6f\xa1\xb5\x80\xac\xc5\x7c\xa2\xbd\x69\x8f\xa8\x68\x8e\xa7\x76\ \x9c\xb6\x67\x91\xa8\x4b\x75\x8c\x4d\x76\x8a\x59\x81\x93\x3e\x66\ \x75\x24\x4c\x5d\x27\x4f\x63\x45\x6c\x81\x5d\x86\x98\x6d\x99\xa9\ \x78\xa7\xb9\x7d\xae\xc4\x84\xb2\xca\x87\xb2\xce\x88\xb0\xce\x82\ \xa7\xc5\x73\x98\xb4\x62\x87\xa1\x5c\x82\xa0\x66\x8c\xab\x6a\x89\ \xa5\x4d\x69\x7d\x1e\x3b\x4c\x50\x72\x82\x82\xa6\xbd\x8d\xb1\xcc\ \x87\xa7\xc2\x80\x9e\xb7\x7f\xa0\xb7\x84\xa9\xbe\x7e\xa5\xbb\x7b\ \x9f\xb8\x76\x9c\xb4\x7c\xa2\xbb\x83\xa6\xc3\x83\xa6\xc6\x7d\xa1\ \xbf\x6d\x91\xad\x61\x83\x9c\x6d\x8b\xa0\x6b\x8a\x9c\x63\x80\x91\ \x72\x90\xa5\x82\xa0\xba\x8a\xa9\xc7\x88\xac\xc9\x8d\xaf\xcd\x93\ \xb4\xd2\x96\xb6\xd6\x95\xb3\xd5\x96\xb6\xd7\x95\xb4\xd3\x98\xb5\ \xd5\x93\xb3\xd3\x93\xb7\xd4\x93\xb5\xd5\x94\xb4\xd6\x8f\xb4\xd5\ \x88\xb4\xd4\x84\xb2\xd3\x81\xb0\xd0\x7b\xad\xcb\x7c\xac\xc8\x80\ \xac\xc4\x84\xac\xc4\x87\xac\xc3\x86\xab\xc2\x81\xa6\xc0\x80\xa4\ \xbe\x87\xab\xc5\x8f\xb2\xce\x92\xb5\xd1\x96\xb5\xd3\x96\xb6\xd4\ \x94\xb7\xd4\x95\xb8\xd4\x9b\xbb\xd6\x98\xb7\xd4\x95\xb4\xd4\x97\ \xb5\xd5\x93\xb3\xd1\x8f\xb4\xd1\x8f\xb7\xd5\x8e\xb8\xd7\x8c\xb9\ \xd7\x8a\xb9\xd6\x8c\xb7\xd6\x90\xb7\xd5\x97\xb9\xd7\x99\xb7\xda\ \x97\xb7\xda\x96\xb6\xd8\x94\xb5\xd7\x91\xb4\xd3\x90\xb5\xd0\x8f\ \xb3\xcf\x00\x00\x00\x90\xbc\xe0\x92\xbd\xe1\x8e\xbf\xe2\x89\xbe\ \xe0\x8b\xbf\xe0\x8d\xbe\xdc\x8d\xbc\xdb\x8d\xbc\xdb\x8b\xb9\xda\ \x8f\xb8\xd9\x8b\xb7\xd5\x87\xb4\xd1\x7e\xad\xcb\x74\xa2\xc2\x70\ \xa0\xc0\x7d\xaa\xcd\x80\xb0\xd4\x7e\xaf\xd2\x7c\xb0\xd2\x7a\xb2\ \xd2\x7a\xb4\xd4\x76\xb4\xd4\x73\xb4\xd2\x78\xb4\xd3\x80\xb1\xd6\ \x83\xae\xd3\x81\xac\xcd\x7e\xab\xc8\x7b\xab\xc7\x7c\xaf\xcb\x78\ \xae\xcb\x77\xab\xc6\x71\xa2\xbc\x6f\x9d\xbb\x76\xa3\xc5\x78\xa9\ \xc9\x68\xa1\xbb\x54\x8f\xa5\x46\x7d\x93\x56\x8b\xa4\x71\xa4\xc0\ \x72\xa0\xc0\x66\x95\xb4\x67\x98\xb7\x80\xad\xcc\x8f\xb8\xd8\x89\ \xb5\xd9\x81\xb1\xd5\x73\xa5\xc4\x67\x97\xb4\x75\xa1\xbf\x8a\xb1\ \xcf\x90\xb6\xd2\x91\xb8\xd4\x92\xb9\xd5\x8f\xb7\xd2\x8e\xb8\xd6\ \x8e\xbb\xdc\x8f\xbb\xdc\x88\xb7\xd3\x82\xb8\xcf\x83\xba\xd0\x8a\ \xb9\xd3\x88\xb3\xcd\x87\xb3\xcc\x8c\xb7\xd0\x8f\xbd\xd6\x88\xb9\ \xd3\x80\xb2\xcd\x7f\xad\xc7\x82\xad\xc2\x7b\xa4\xb7\x5e\x87\x9d\ \x4f\x7a\x90\x64\x8f\xa3\x72\x9d\xae\x6c\x98\xab\x64\x93\xa6\x76\ \xa5\xbc\x85\xb1\xc9\x87\xb4\xce\x87\xb3\xcd\x85\xac\xc6\x75\x9a\ \xb6\x4d\x73\x8d\x5d\x83\x9f\x67\x8a\xa7\x5d\x7b\x94\x2f\x4b\x5d\ \x20\x3c\x4c\x53\x73\x88\x7c\x9f\xb8\x81\xa4\xba\x6d\x8c\x9f\x50\ \x72\x82\x4c\x75\x85\x58\x83\x94\x56\x7d\x92\x44\x6a\x7f\x40\x69\ \x7c\x52\x7c\x92\x67\x8e\xab\x70\x95\xb2\x6e\x92\xab\x5c\x7b\x91\ \x3b\x57\x69\x36\x51\x5f\x40\x5b\x6b\x2b\x45\x54\x3a\x55\x64\x5c\ \x78\x8b\x6d\x8c\xa3\x74\x9a\xb3\x7e\xa4\xbf\x8a\xad\xcb\x91\xb1\ \xd1\x91\xb3\xd3\x92\xb5\xd3\x92\xb4\xd1\x91\xb3\xd2\x90\xb4\xd3\ \x8f\xb2\xd2\x92\xb2\xd3\x90\xb2\xd3\x8b\xb1\xd3\x8a\xb3\xd3\x86\ \xb1\xce\x81\xad\xc8\x7e\xab\xc5\x82\xab\xc6\x85\xad\xc5\x87\xad\ \xc3\x88\xad\xc4\x86\xab\xc2\x7f\xa3\xbc\x82\xa6\xbf\x8c\xae\xc9\ \x92\xb3\xcd\x92\xb4\xd0\x92\xb6\xd2\x93\xb7\xd4\x91\xb7\xd4\x90\ \xb9\xd6\x94\xb8\xd4\x93\xb7\xd3\x93\xb3\xd3\x94\xb3\xd5\x90\xb5\ \xd5\x8d\xb7\xd2\x8a\xb9\xd2\x8c\xb8\xd3\x8c\xb9\xd4\x8c\xb9\xd5\ \x8c\xb8\xd5\x93\xb9\xd8\x97\xb9\xd9\x97\xb6\xd9\x95\xb5\xd8\x92\ \xb4\xd5\x90\xb3\xd3\x90\xb1\xd3\x8f\xb1\xd2\x91\xb0\xd3\x00\x00\ \x00\x9a\xc0\xe3\x99\xc0\xe1\x96\xc2\xe1\x8e\xbf\xdd\x90\xbf\xdf\ \x92\xbf\xdf\x94\xc1\xe1\x92\xbf\xe1\x8f\xbc\xde\x8d\xba\xda\x8a\ \xba\xd5\x86\xb9\xd0\x85\xb7\xd2\x85\xb5\xd2\x83\xb3\xd1\x86\xb4\ \xd4\x86\xb8\xd9\x81\xb7\xd7\x7f\xb5\xd6\x81\xb7\xd8\x7e\xb4\xd5\ \x7e\xb9\xd8\x7f\xba\xd9\x85\xb9\xda\x89\xb4\xd8\x89\xb0\xd7\x88\ \xb2\xd7\x87\xb4\xd6\x88\xb5\xd7\x80\xaf\xd1\x7d\xaf\xcf\x7e\xb1\ \xce\x80\xb1\xce\x80\xad\xce\x84\xad\xd2\x7f\xae\xd2\x78\xaf\xce\ \x72\xad\xc8\x6f\xa4\xc3\x76\xa5\xc8\x7f\xad\xd0\x82\xaf\xd3\x80\ \xae\xd2\x7b\xae\xcd\x80\xb0\xcf\x89\xb3\xd5\x89\xb4\xd9\x86\xb4\ \xd9\x7b\xac\xce\x77\xa8\xc8\x7f\xad\xcd\x88\xb1\xd1\x8b\xb7\xd3\ \x8d\xb9\xd5\x91\xbb\xd4\x97\xbe\xd8\x9b\xc0\xde\x96\xc0\xe0\x90\ \xbc\xdd\x8e\xbd\xdc\x8b\xc0\xdc\x89\xbd\xd8\x89\xb8\xd1\x89\xb6\ \xce\x8b\xb7\xcf\x8d\xba\xd2\x91\xbd\xd7\x8e\xbb\xd8\x8e\xbd\xdc\ \x91\xbd\xde\x98\xbe\xdb\x9c\xbe\xda\x97\xba\xd8\x95\xbb\xd8\x94\ \xba\xd2\x89\xaf\xc5\x7b\xa2\xba\x5f\x87\x9f\x5b\x83\x9c\x7e\xa8\ \xc1\x8a\xb6\xce\x8b\xb7\xd0\x88\xaf\xcd\x7d\xa2\xc0\x62\x88\xa5\ \x5e\x84\xa1\x69\x8b\xa6\x51\x70\x87\x26\x46\x58\x3d\x5c\x72\x6c\ \x8e\xa7\x71\x96\xaf\x67\x8d\xa1\x56\x78\x88\x3f\x61\x71\x43\x6d\ \x7e\x58\x84\x9a\x51\x78\x8f\x3a\x62\x76\x47\x70\x82\x61\x8d\xa2\ \x69\x93\xac\x62\x89\xa2\x5d\x81\x97\x51\x71\x82\x31\x4e\x5f\x28\ \x46\x56\x34\x54\x68\x26\x46\x57\x17\x35\x44\x25\x3f\x51\x32\x4f\ \x62\x44\x68\x7c\x5d\x82\x9c\x72\x93\xaf\x89\xa9\xc5\x8a\xae\xcb\ \x8f\xb3\xd1\x8d\xb1\xcf\x8b\xaf\xcd\x8d\xb1\xcf\x90\xb0\xcf\x92\ \xb0\xd1\x8c\xae\xd0\x8a\xb0\xd1\x8c\xb2\xcf\x88\xaf\xcb\x83\xaa\ \xc6\x84\xaa\xc7\x88\xab\xca\x88\xac\xc9\x88\xae\xc8\x86\xaa\xc4\ \x85\xa6\xc0\x83\xa2\xbc\x8b\xa9\xc3\x93\xaf\xcd\x98\xb3\xd1\x96\ \xb3\xd2\x94\xb3\xd3\x91\xb5\xd2\x90\xb8\xd3\x8c\xb6\xd5\x8f\xb6\ \xd6\x8c\xb1\xd2\x8e\xaf\xd2\x95\xb4\xd6\x94\xb6\xd8\x91\xb8\xd5\ \x8f\xb8\xd1\x94\xb9\xd5\x92\xb7\xd3\x94\xb9\xd6\x96\xba\xd7\x98\ \xb8\xd8\x97\xb7\xda\x99\xb6\xda\x99\xb6\xd9\x98\xb7\xd8\x92\xb4\ \xd1\x94\xb1\xd3\x93\xaf\xd4\x93\xb1\xd7\x00\x00\x00\x9b\xc5\xe3\ \x9a\xc4\xdf\x93\xc4\xdd\x8e\xc3\xdd\x90\xc2\xe0\x92\xc1\xe2\x94\ \xc3\xe4\x91\xbf\xe1\x8d\xbb\xdd\x8b\xb9\xd9\x88\xb9\xd2\x87\xbb\ \xd2\x84\xbb\xd6\x87\xb9\xd7\x87\xb5\xd6\x85\xb5\xd5\x84\xb8\xd8\ \x83\xba\xd9\x82\xb8\xda\x83\xb7\xd7\x82\xb8\xd7\x83\xba\xd9\x83\ \xba\xd9\x8d\xbb\xdd\x8e\xb7\xdc\x8c\xb4\xda\x8b\xb6\xdb\x8d\xb7\ \xdc\x88\xb2\xd8\x82\xac\xd3\x7f\xad\xcf\x84\xb1\xd3\x85\xb2\xd3\ \x87\xb0\xd2\x88\xb0\xd4\x88\xb4\xd8\x85\xb5\xd4\x81\xb3\xd2\x81\ \xb2\xd5\x81\xb0\xd7\x84\xb1\xd9\x8b\xb4\xda\x8b\xb7\xd9\x84\xb6\ \xd4\x7c\xb2\xcf\x81\xb2\xd0\x83\xb2\xd2\x85\xb3\xd4\x7e\xac\xce\ \x7d\xab\xcc\x82\xb0\xcd\x88\xb4\xd0\x88\xb8\xd2\x8b\xb8\xd6\x92\ \xb9\xd7\x9a\xbb\xda\x9d\xbd\xdf\x99\xbe\xe0\x91\xbb\xdc\x8f\xbb\ \xdc\x8f\xbd\xdd\x90\xbd\xdd\x8b\xb7\xd2\x87\xb4\xce\x8b\xb5\xd1\ \x8a\xb4\xce\x8b\xb3\xce\x8f\xb2\xd2\x8d\xb2\xd4\x92\xb8\xdb\x97\ \xba\xdc\x9d\xbd\xde\xa0\xbf\xe0\x9b\xbc\xda\x8a\xaa\xc5\x78\x98\ \xaf\x64\x85\x9e\x55\x78\x92\x44\x69\x84\x74\x9a\xb6\x8c\xb3\xcf\ \x8e\xb6\xd5\x87\xb1\xd1\x84\xab\xcc\x7c\xa2\xc2\x74\x9a\xb9\x6a\ \x90\xae\x5d\x84\x9e\x4b\x74\x8b\x6b\x90\xac\x80\xa5\xc3\x7f\xa7\ \xc5\x7a\xa6\xbe\x77\x9e\xb4\x6c\x90\xa8\x6b\x95\xab\x79\xa3\xbb\ \x7b\xa2\xba\x6f\x95\xac\x61\x89\x9f\x6e\x97\xad\x80\xa6\xc0\x86\ \xab\xc5\x79\x9d\xb4\x62\x86\x99\x51\x76\x8b\x58\x7f\x98\x67\x92\ \xac\x61\x8a\xa2\x4c\x70\x86\x35\x55\x6c\x3f\x62\x78\x60\x85\x9c\ \x71\x94\xaf\x65\x86\xa0\x62\x85\x9d\x82\xa8\xc1\x86\xaf\xc8\x8b\ \xb2\xcd\x8c\xb1\xcd\x8f\xb3\xcd\x90\xb1\xcd\x90\xaf\xd0\x8c\xaf\ \xd1\x8b\xb2\xd1\x88\xb0\xcc\x88\xae\xcb\x83\xa9\xc9\x83\xa8\xc9\ \x88\xaa\xcc\x87\xad\xcb\x82\xaa\xc6\x85\xa8\xc4\x83\xa3\xc0\x87\ \xa4\xc0\x8e\xac\xc5\x95\xb2\xce\x96\xb4\xd4\x93\xb5\xd6\x92\xb6\ \xd4\x92\xb6\xd4\x92\xb8\xd5\x8d\xb8\xd7\x89\xb4\xd4\x89\xae\xd2\ \x8b\xab\xd2\x94\xb1\xd7\x97\xb6\xda\x96\xb7\xd8\x98\xb8\xd6\x98\ \xb5\xd5\x97\xb4\xd2\x9a\xba\xd9\x99\xb9\xd9\x9a\xb6\xd8\x9b\xb5\ \xd8\x99\xb3\xd7\x9a\xb4\xd7\x99\xb7\xd6\x96\xb7\xd3\x94\xb3\xd3\ \x91\xaf\xd2\x8f\xb1\xd4\x00\x00\x00\x97\xc6\xe1\x95\xc4\xdf\x90\ \xc4\xdc\x8d\xc4\xe0\x8d\xc2\xe2\x8f\xc0\xe2\x93\xc2\xe3\x92\xc2\ \xe1\x8d\xbd\xdc\x8b\xba\xda\x88\xb7\xd3\x88\xb9\xd5\x85\xb9\xd9\ \x88\xba\xdc\x8a\xb8\xdc\x86\xb6\xd9\x84\xb8\xd9\x83\xb6\xd8\x85\ \xb5\xda\x88\xb7\xdb\x84\xb7\xd7\x82\xb8\xd9\x80\xb7\xd8\x89\xb8\ \xda\x8c\xb9\xdd\x8a\xb6\xdb\x89\xb5\xda\x89\xb5\xda\x84\xae\xd5\ \x86\xad\xd4\x88\xaf\xd5\x89\xaf\xd7\x88\xaf\xd5\x85\xad\xd2\x88\ \xb5\xd7\x8a\xb7\xd9\x8b\xb8\xd9\x8b\xb9\xda\x85\xb4\xda\x82\xb3\ \xdb\x89\xb5\xdd\x8d\xb6\xdc\x8e\xb9\xdb\x89\xbb\xd8\x82\xb9\xd3\ \x80\xb3\xce\x84\xb3\xd1\x88\xb4\xd4\x87\xb3\xd6\x85\xb3\xd4\x88\ \xb4\xd2\x8a\xb7\xd3\x8b\xbb\xd5\x8c\xb8\xd7\x92\xb8\xd8\x98\xbc\ \xdb\x9b\xbc\xde\x98\xbb\xdd\x90\xb7\xd9\x8f\xb9\xd8\x92\xbc\xdb\ \x8f\xba\xda\x88\xb8\xd5\x86\xb4\xd0\x88\xb0\xcf\x81\xa7\xc5\x7a\ \x9b\xb7\x78\x93\xb1\x7c\x9a\xba\x82\xa5\xc7\x8c\xaf\xd0\x94\xb7\ \xd7\x99\xbb\xdc\x92\xb6\xd4\x76\x9a\xb3\x4c\x6c\x81\x4e\x70\x85\ \x56\x79\x93\x43\x68\x83\x75\x99\xb7\x8e\xb3\xd1\x8c\xb3\xd4\x86\ \xb2\xd2\x84\xb0\xd1\x83\xac\xcd\x80\xa8\xcc\x7d\xa6\xc9\x79\xa4\ \xc4\x78\xa1\xc0\x83\xa9\xc7\x8a\xb0\xcf\x88\xb2\xd1\x8a\xb4\xd2\ \x8b\xb1\xcc\x85\xaa\xc5\x7b\xa3\xbd\x6f\x96\xad\x5e\x82\x98\x61\ \x81\x98\x71\x94\xa9\x82\xa6\xbc\x8f\xaf\xcb\x92\xb5\xd1\x8d\xb3\ \xcd\x82\xab\xc5\x7d\xa4\xc2\x79\xa4\xc4\x7a\xa9\xc6\x7a\xa7\xc3\ \x78\xa1\xbf\x6e\x96\xb6\x70\x9c\xb9\x78\xa3\xbe\x7e\xa4\xc0\x71\ \x96\xb0\x53\x77\x90\x5d\x82\x9a\x86\xac\xc5\x8c\xb1\xcb\x8d\xb4\ \xcd\x90\xb4\xcc\x91\xb2\xcd\x8e\xb1\xcf\x8d\xb3\xd4\x8a\xb3\xd4\ \x85\xb1\xcf\x84\xaf\xce\x82\xaa\xcb\x82\xa7\xcc\x82\xa8\xcd\x81\ \xac\xcc\x7f\xab\xc6\x83\xa8\xc5\x87\xa7\xc8\x86\xa7\xc6\x90\xaf\ \xcb\x95\xb2\xce\x94\xb4\xd3\x93\xb6\xd6\x93\xb8\xd6\x94\xb8\xd6\ \x8f\xb7\xd5\x8c\xba\xd7\x8c\xb6\xd6\x8d\xb3\xd5\x93\xb4\xd7\x96\ \xb3\xd9\x94\xb3\xd7\x97\xb5\xd7\x9a\xb6\xd8\x99\xb3\xd7\x97\xb3\ \xd5\x99\xb8\xd9\x97\xb7\xd6\x99\xb6\xd4\x9a\xb4\xd2\x99\xb3\xd2\ \x99\xb3\xd7\x98\xb4\xd6\x96\xb5\xd6\x93\xb2\xd4\x8d\xaf\xd1\x8a\ \xaf\xd1\x00\x00\x00\x94\xc3\xe0\x93\xc1\xe0\x91\xc1\xdf\x90\xc2\ \xe2\x8f\xc1\xe4\x8f\xc1\xe3\x8c\xc0\xdf\x8b\xc0\xdb\x88\xbc\xd8\ \x88\xb8\xd7\x85\xb5\xd4\x86\xb5\xd8\x85\xb7\xd9\x89\xb8\xda\x8c\ \xb9\xdb\x88\xb8\xd8\x83\xb6\xd7\x84\xb3\xd7\x89\xb5\xdc\x8a\xb7\ \xdd\x83\xb6\xd7\x7e\xb4\xd4\x7d\xb5\xd5\x85\xb7\xd9\x8a\xb7\xda\ \x89\xb4\xda\x8a\xb5\xda\x88\xb5\xda\x85\xb2\xd7\x84\xb0\xd5\x86\ \xb2\xd7\x86\xb1\xd8\x82\xad\xd3\x80\xad\xcf\x85\xb4\xd6\x88\xb8\ \xd9\x89\xba\xda\x88\xb5\xd9\x85\xb5\xdb\x82\xb5\xdd\x88\xb6\xdb\ \x8f\xb9\xdd\x8d\xba\xdb\x8a\xbc\xd6\x85\xba\xd2\x85\xb7\xd0\x88\ \xb7\xd3\x8c\xb7\xd7\x8e\xb8\xdc\x91\xb9\xdd\x92\xba\xd9\x91\xbe\ \xd9\x90\xbd\xd7\x93\xbb\xd7\x94\xbc\xd9\x95\xbe\xdd\x95\xbc\xde\ \x92\xba\xdb\x8d\xb6\xd6\x84\xb3\xcf\x8a\xb8\xd4\x8a\xb9\xd5\x87\ \xb7\xd4\x85\xb3\xd2\x84\xab\xcb\x6d\x92\xae\x4a\x6b\x83\x3e\x5c\ \x74\x4d\x6d\x8a\x61\x85\xa4\x6f\x94\xb2\x84\xa9\xc7\x90\xb4\xd3\ \x8c\xb1\xcf\x71\x97\xb2\x49\x6d\x84\x58\x7f\x93\x5c\x81\x9a\x52\ \x77\x92\x82\xa9\xc6\x8b\xb2\xd1\x8c\xb2\xd5\x89\xb2\xd5\x85\xb1\ \xd1\x82\xae\xce\x86\xaf\xd3\x88\xb1\xd6\x89\xb0\xd3\x8b\xb1\xcf\ \x8e\xb5\xcf\x8d\xb8\xd1\x8e\xb7\xd4\x93\xb7\xd7\x90\xb3\xd1\x87\ \xad\xca\x79\xa1\xbc\x5f\x85\x9d\x40\x63\x7a\x4f\x6d\x85\x53\x70\ \x85\x60\x7e\x92\x83\xa2\xbb\x8f\xb1\xcd\x8c\xb4\xd1\x87\xb1\xd0\ \x88\xb0\xd1\x8a\xaf\xd1\x88\xb1\xd0\x86\xaf\xce\x81\xab\xcc\x7b\ \xa9\xcb\x7a\xa8\xc8\x7e\xa9\xc7\x7e\xa5\xc3\x74\x99\xb4\x5d\x82\ \x99\x42\x66\x7b\x77\x9b\xb1\x88\xae\xc6\x8c\xb2\xca\x91\xb5\xcc\ \x93\xb4\xce\x8e\xb1\xcf\x8a\xb2\xd2\x86\xb4\xd3\x84\xb4\xd1\x82\ \xb1\xd0\x82\xab\xcc\x84\xa8\xcc\x87\xab\xcf\x82\xad\xcc\x84\xad\ \xcb\x87\xab\xca\x88\xa8\xc8\x88\xa9\xc8\x8f\xb0\xcd\x91\xb2\xcd\ \x92\xb3\xcf\x93\xb4\xd1\x93\xb5\xd2\x94\xb7\xd4\x91\xb9\xd4\x8f\ \xb9\xd7\x92\xb7\xd8\x96\xb7\xda\x97\xb6\xda\x99\xb5\xdc\x98\xb4\ \xd9\x98\xb4\xd6\x98\xb5\xd6\x98\xb5\xd7\x95\xb5\xd7\x96\xb7\xd6\ \x98\xb9\xd4\x96\xb5\xd0\x97\xb5\xcf\x96\xb2\xce\x99\xb4\xd6\x99\ \xb2\xd5\x98\xb1\xd5\x95\xb1\xd5\x8d\xb0\xd2\x89\xb2\xd2\x00\x00\ \x00\x8b\xb8\xd8\x87\xb7\xd8\x88\xb9\xda\x8a\xb8\xdb\x8a\xb8\xdc\ \x8b\xbb\xdc\x86\xbe\xd8\x85\xbd\xd5\x82\xb8\xd5\x7b\xb0\xcc\x7c\ \xb0\xcf\x7f\xb2\xd5\x80\xb3\xd4\x87\xb5\xd4\x8a\xb9\xd5\x84\xb7\ \xd0\x7e\xb5\xd2\x7c\xb0\xd3\x82\xb3\xd8\x86\xb6\xda\x81\xb5\xd4\ \x7f\xb5\xd3\x7e\xb4\xd3\x84\xb4\xd5\x89\xb3\xd7\x8a\xaf\xd5\x89\ \xaf\xd4\x87\xb1\xd4\x87\xb4\xd5\x85\xb5\xd4\x81\xb3\xd1\x7e\xb1\ \xd0\x7b\xae\xce\x7a\xac\xcc\x7f\xb2\xd3\x85\xb6\xd7\x87\xb6\xd9\ \x88\xb4\xda\x86\xb4\xda\x84\xb2\xd8\x86\xb4\xd9\x8b\xb7\xd9\x8d\ \xbb\xdb\x88\xbb\xd7\x81\xb8\xd1\x81\xb7\xd0\x87\xb8\xd4\x8c\xb9\ \xd9\x93\xbe\xe0\x96\xbf\xe3\x93\xbd\xde\x90\xbf\xdd\x94\xbf\xdd\ \x96\xbd\xd9\x94\xbf\xdb\x8e\xbb\xda\x8e\xb9\xdb\x8d\xb8\xd9\x88\ \xb6\xd5\x78\xad\xc9\x78\xac\xc5\x81\xb1\xcc\x86\xb6\xd2\x87\xb6\ \xd5\x86\xb0\xd0\x79\x9d\xbb\x55\x77\x90\x53\x7a\x91\x70\x97\xb3\ \x74\x99\xb9\x5f\x81\xa0\x6d\x8f\xad\x88\xac\xca\x8b\xb0\xd2\x83\ \xa8\xc8\x71\x97\xb2\x66\x8e\xa7\x62\x88\xa5\x75\x9c\xba\x85\xb1\ \xce\x86\xb4\xd3\x87\xb1\xd3\x86\xae\xd0\x86\xb2\xd1\x85\xb2\xd1\ \x89\xb3\xd4\x8c\xb4\xd7\x90\xb6\xd6\x93\xb8\xd2\x91\xb8\xd2\x8f\ \xbb\xd3\x92\xba\xd6\x97\xb7\xd9\x93\xb3\xd5\x88\xae\xcd\x7e\xa9\ \xc5\x76\x9f\xba\x6d\x91\xad\x6d\x8a\xa7\x67\x80\x99\x4d\x67\x7b\ \x57\x75\x89\x86\xa8\xc1\x8b\xb1\xd0\x8a\xb3\xd3\x8e\xb5\xd6\x92\ \xb3\xd5\x92\xb4\xd5\x8f\xb3\xd4\x86\xae\xcf\x7e\xaa\xcd\x80\xa8\ \xcc\x82\xa7\xca\x82\xa7\xc5\x7a\x9f\xbb\x68\x8a\xa3\x46\x65\x7b\ \x62\x80\x9a\x86\xa9\xc4\x8e\xb4\xcd\x8c\xb5\xca\x8d\xb6\xce\x8d\ \xb5\xd2\x8a\xb4\xd4\x87\xb5\xd5\x85\xb3\xd3\x87\xb1\xd0\x87\xac\ \xcc\x89\xac\xce\x8b\xaf\xd1\x89\xaf\xce\x8a\xaf\xcb\x8a\xad\xca\ \x8b\xab\xc8\x8c\xae\xca\x8c\xb0\xcb\x8c\xb2\xce\x8b\xaf\xce\x90\ \xb1\xd1\x98\xb5\xd3\x96\xb6\xd2\x93\xb8\xd2\x93\xb8\xd4\x95\xb5\ \xd6\x99\xb6\xd6\x97\xb3\xd5\x98\xb3\xd7\x99\xb2\xd8\x9a\xb4\xda\ \x96\xb4\xd7\x93\xb4\xd5\x93\xb4\xd4\x92\xb6\xd3\x94\xb8\xd2\x94\ \xb6\xd0\x95\xb6\xd0\x98\xb6\xd3\x9a\xb4\xd8\x9b\xb2\xd9\x98\xb0\ \xd8\x92\xaf\xd6\x8e\xb0\xd6\x8a\xb2\xd4\x00\x00\x00\x77\xa1\xbd\ \x7b\xa9\xc7\x7e\xac\xcb\x7b\xa3\xc3\x78\x9f\xbd\x7f\xa9\xc6\x85\ \xb4\xce\x85\xb5\xd1\x7c\xad\xc6\x6a\x9d\xb3\x6b\x9d\xb8\x76\xaa\ \xca\x7c\xaf\xcc\x83\xb2\xca\x82\xaf\xc5\x7c\xad\xc3\x7d\xb1\xcc\ \x7c\xb0\xd1\x7f\xb1\xd4\x83\xb2\xd4\x84\xb1\xce\x81\xad\xca\x81\ \xaf\xca\x84\xae\xcc\x82\xa7\xc7\x7a\x9e\xbd\x7a\x9f\xbe\x80\xa6\ \xc5\x84\xab\xc8\x7d\xa8\xc4\x77\xa8\xc0\x76\xab\xc4\x75\xaa\xc6\ \x7c\xac\xc9\x81\xae\xcd\x83\xac\xcc\x85\xaa\xce\x86\xa9\xce\x84\ \xac\xd1\x7f\xac\xd1\x82\xaf\xd4\x86\xb4\xd5\x8a\xb7\xd7\x88\xb5\ \xd5\x7e\xb2\xcf\x7b\xb4\xcf\x83\xb7\xd0\x8b\xba\xd4\x90\xbc\xd9\ \x90\xbd\xde\x8e\xbd\xdc\x8f\xbd\xdb\x95\xbc\xdd\x95\xba\xda\x91\ \xbb\xd8\x8c\xb8\xd9\x8b\xb5\xd8\x8d\xb7\xda\x8a\xb8\xd8\x7a\xaf\ \xcd\x66\x9b\xb5\x66\x94\xae\x81\xae\xc9\x8d\xb8\xd8\x8f\xb7\xd9\ \x8a\xb1\xd2\x82\xa8\xc7\x7d\xa5\xc4\x83\xad\xcb\x86\xaa\xcb\x76\ \x94\xb6\x5d\x7c\x9a\x84\xa8\xc5\x8e\xb4\xd3\x8e\xb5\xd5\x8a\xb1\ \xd1\x84\xad\xcb\x84\xad\xcd\x88\xaf\xd1\x86\xb1\xd3\x86\xb5\xd5\ \x87\xb4\xd3\x86\xb3\xd1\x84\xb2\xd1\x86\xb5\xd3\x8c\xb6\xd7\x8d\ \xb5\xd7\x90\xb6\xd4\x94\xba\xd2\x92\xb8\xd1\x90\xbb\xd3\x93\xbc\ \xd4\x97\xb8\xd7\x95\xb4\xd5\x93\xb4\xd5\x8a\xb0\xcf\x83\xaa\xc9\ \x7d\xa0\xc1\x79\x97\xb6\x6b\x85\x9f\x54\x72\x85\x43\x61\x73\x73\ \x92\xab\x89\xaf\xcd\x8d\xb7\xd8\x91\xb8\xd9\x96\xb8\xd9\x98\xb6\ \xd9\x91\xb2\xd4\x89\xae\xd0\x84\xab\xce\x83\xa8\xcc\x89\xa9\xcd\ \x88\xa8\xca\x80\xa1\xc0\x71\x90\xaa\x4c\x69\x81\x55\x72\x8d\x89\ \xab\xc7\x90\xb7\xd2\x8c\xb9\xcf\x8a\xb9\xd2\x8c\xb7\xd5\x8d\xb6\ \xd8\x89\xb7\xd8\x8a\xb4\xd4\x8c\xb1\xd1\x8b\xae\xcf\x8d\xb0\xd0\ \x90\xb3\xd2\x90\xb4\xd1\x8d\xb2\xcd\x89\xae\xc8\x8d\xad\xca\x8f\ \xb0\xcd\x8c\xb1\xce\x87\xaf\xcf\x88\xae\xcf\x91\xb2\xd5\x99\xb5\ \xd8\x99\xb7\xd5\x94\xb6\xd0\x95\xb7\xd1\x96\xb6\xd3\x95\xb4\xd2\ \x91\xb1\xce\x8f\xaf\xce\x91\xae\xcf\x94\xb2\xd6\x92\xb3\xd6\x93\ \xb4\xd5\x93\xb4\xd4\x93\xb7\xd3\x94\xba\xd1\x97\xb9\xd2\x97\xb8\ \xd2\x99\xb7\xd6\x9c\xb4\xdb\x99\xb1\xda\x93\xb0\xd7\x8e\xb0\xd6\ \x8f\xb1\xd6\x8d\xb3\xd4\x00\x00\x00\x48\x70\x84\x63\x8e\xa6\x6f\ \x99\xb5\x5b\x7e\x9b\x3b\x5c\x75\x62\x86\x9e\x77\x9e\xb9\x7a\xa0\ \xbf\x6b\x90\xaa\x3f\x63\x76\x49\x70\x87\x71\x9e\xbc\x7b\xab\xc7\ \x7e\xa6\xbe\x66\x8a\xa0\x66\x8f\xa5\x7b\xa6\xc1\x86\xb3\xd3\x86\ \xb2\xd3\x8a\xb2\xd1\x88\xab\xc7\x74\x94\xad\x6b\x91\xa6\x79\xa0\ \xb7\x73\x96\xad\x4e\x72\x87\x4d\x74\x8b\x63\x88\xa2\x6c\x91\xab\ \x67\x8c\xa5\x61\x8a\xa2\x6a\x99\xb1\x72\xa2\xbf\x7a\xa7\xc3\x7b\ \xa0\xba\x70\x8d\xa6\x6e\x87\xa2\x71\x8f\xac\x6f\x95\xb5\x75\xa1\ \xc3\x7a\xa7\xcc\x83\xae\xd1\x7f\xa6\xc6\x72\x98\xb5\x73\xa0\xbc\ \x78\xad\xc5\x7b\xaf\xc5\x85\xb1\xc7\x8a\xb4\xcc\x8a\xb7\xd3\x8c\ \xba\xd4\x8c\xb7\xd0\x90\xb5\xd1\x90\xb3\xd1\x8e\xb4\xd1\x8b\xb2\ \xd4\x8d\xb5\xd8\x91\xb9\xdc\x8e\xb8\xd9\x82\xb2\xd1\x6b\x9a\xb6\ \x47\x72\x8a\x71\x99\xb2\x8f\xb6\xd3\x95\xba\xd9\x98\xbc\xdb\x9d\ \xc0\xe1\x95\xbc\xdd\x90\xbb\xda\x93\xb9\xd9\x8b\xad\xcd\x75\x9b\ \xb8\x84\xae\xc8\x8e\xb9\xd3\x91\xba\xd9\x91\xb9\xd9\x8e\xb7\xd7\ \x8d\xb6\xd7\x8b\xb2\xd6\x89\xb0\xd5\x89\xb3\xd5\x88\xb2\xd2\x87\ \xb3\xd0\x89\xb3\xd3\x8b\xb5\xd4\x8b\xb5\xd5\x8d\xb5\xd5\x92\xb8\ \xd4\x93\xb9\xd2\x96\xba\xd2\x91\xb9\xd2\x93\xbc\xd4\x93\xba\xd3\ \x94\xb8\xd3\x93\xb6\xd4\x8d\xb1\xd1\x82\xa8\xc8\x73\x97\xb6\x5d\ \x7d\x99\x57\x75\x8d\x4f\x6d\x7f\x44\x62\x73\x6d\x8d\xa5\x8b\xaf\ \xcc\x90\xba\xda\x93\xbd\xd9\x96\xb9\xd7\x98\xb7\xd9\x92\xb2\xd5\ \x8b\xae\xd1\x85\xa9\xcb\x83\xa8\xc8\x8a\xaa\xcc\x8d\xaa\xcc\x83\ \x9f\xbf\x75\x90\xab\x50\x6c\x84\x61\x80\x99\x8e\xb2\xcd\x91\xb7\ \xd3\x8e\xb9\xd1\x8a\xb8\xd2\x8f\xb7\xd6\x90\xb5\xd8\x8c\xb6\xd5\ \x8a\xb3\xd1\x8e\xb2\xd2\x8d\xb0\xd1\x8d\xb1\xd2\x91\xb3\xd4\x91\ \xb3\xd2\x8f\xb4\xd0\x8c\xb0\xcd\x89\xae\xc9\x90\xb2\xce\x8f\xb4\ \xd0\x8d\xb2\xd1\x90\xb1\xd1\x96\xb4\xd5\x97\xb5\xd8\x95\xb6\xd6\ \x92\xb6\xd2\x8f\xb4\xce\x8f\xb5\xce\x8e\xb3\xcc\x8f\xaf\xca\x8c\ \xac\xc8\x8f\xaf\xcd\x90\xb3\xd4\x91\xb4\xd5\x93\xb3\xd6\x93\xb4\ \xd6\x95\xb7\xd4\x95\xb9\xd2\x95\xb7\xd1\x97\xb6\xd1\x97\xb2\xd3\ \x9b\xb1\xd9\x99\xb1\xd9\x93\xb1\xd6\x90\xb3\xd6\x8f\xb2\xd5\x8e\ \xb3\xd7\x00\x00\x00\x48\x74\x88\x64\x93\xa9\x6d\x9a\xb2\x4e\x73\ \x90\x2e\x51\x6b\x61\x85\xa0\x77\x9e\xbd\x6f\x94\xb5\x47\x66\x83\ \x1e\x38\x4c\x2b\x47\x5b\x71\x98\xb2\x7a\xa7\xc5\x6d\x92\xaf\x33\ \x52\x6c\x4a\x6d\x86\x6c\x93\xb0\x78\xa0\xbf\x85\xa9\xc8\x86\xa5\ \xc2\x77\x94\xae\x4c\x6b\x80\x37\x5d\x6f\x61\x88\x9d\x5e\x83\x97\ \x1b\x40\x50\x3c\x66\x79\x5e\x88\xa0\x59\x80\x98\x41\x64\x7a\x45\ \x69\x81\x63\x8b\xa6\x6a\x98\xb5\x72\x9d\xb8\x69\x89\x9f\x38\x50\ \x60\x21\x3a\x49\x26\x48\x5a\x3e\x65\x7e\x66\x90\xb0\x75\x9f\xc3\ \x7d\xa4\xc7\x66\x8b\xa9\x2b\x52\x69\x4d\x78\x90\x6e\x9e\xb5\x6a\ \x97\xad\x5d\x84\x97\x67\x8b\xa0\x73\x9b\xb3\x79\x9f\xb3\x78\x9a\ \xad\x79\x9a\xaf\x80\xa1\xbb\x84\xa5\xc4\x83\xa6\xc8\x83\xa9\xc9\ \x87\xaf\xcf\x88\xb4\xd4\x86\xb3\xd4\x7b\xa4\xc3\x54\x7b\x95\x4b\ \x73\x8c\x86\xac\xc8\x94\xb8\xd6\x9c\xbe\xdc\x9c\xbf\xde\x98\xbf\ \xdf\x92\xbc\xdc\x95\xbb\xda\x90\xb7\xd3\x88\xb4\xce\x87\xb4\xd0\ \x8d\xb7\xd3\x8e\xb7\xd4\x8b\xb3\xd3\x8c\xb5\xd5\x89\xb4\xd3\x8a\ \xb0\xd5\x88\xad\xd2\x88\xae\xd2\x89\xb0\xd3\x8a\xb0\xd1\x8a\xb2\ \xd2\x8a\xb2\xd2\x88\xb2\xd1\x8a\xb4\xd0\x8d\xb6\xcf\x91\xb8\xd1\ \x95\xb9\xd3\x92\xba\xd3\x92\xbc\xd4\x91\xbd\xd3\x8f\xba\xd0\x90\ \xb9\xd3\x8b\xb2\xd0\x7a\xa0\xbe\x57\x7c\x99\x58\x7b\x96\x64\x84\ \x9e\x5b\x7a\x8e\x3c\x5a\x6c\x62\x81\x9a\x8d\xaf\xcc\x98\xbd\xdc\ \x96\xbe\xd7\x94\xba\xd5\x93\xb4\xd4\x8e\xaf\xd0\x84\xab\xcb\x80\ \xaa\xc9\x82\xa8\xc6\x88\xa7\xc9\x89\xa2\xc6\x7e\x98\xba\x66\x83\ \xa1\x4d\x6f\x89\x79\x9f\xb8\x8f\xb5\xd2\x90\xb5\xd1\x89\xb2\xcb\ \x86\xb0\xca\x8b\xb0\xcd\x8b\xb0\xcf\x88\xb0\xce\x88\xb1\xcd\x8b\ \xb2\xd1\x89\xb2\xd1\x8b\xb4\xd4\x8c\xb3\xd3\x8f\xb4\xd4\x8b\xb2\ \xce\x89\xb0\xcb\x88\xaf\xc9\x8d\xb2\xcc\x90\xb6\xd0\x91\xb7\xd2\ \x94\xb5\xd3\x93\xb5\xd4\x8f\xb3\xd3\x90\xb6\xd5\x8d\xb4\xd0\x8b\ \xb5\xcd\x89\xb2\xcb\x8f\xb4\xd0\x92\xb3\xcd\x94\xb2\xcc\x96\xb5\ \xd2\x96\xb7\xd7\x94\xb8\xd8\x93\xb7\xd7\x93\xb5\xd7\x98\xb7\xd7\ \x98\xb9\xd7\x94\xb5\xd4\x96\xb4\xd4\x96\xb0\xd2\x98\xb0\xd3\x97\ \xb3\xd6\x94\xb3\xd7\x90\xb0\xd5\x8d\xb0\xd6\x90\xb0\xd9\x00\x00\ \x00\x71\xa3\xbc\x6d\xa1\xb9\x7a\xab\xc6\x7a\xa7\xc6\x69\x92\xb0\ \x5b\x85\xa2\x6e\x9b\xbc\x7b\xa5\xc9\x6a\x8c\xae\x34\x50\x68\x19\ \x35\x48\x61\x88\x9f\x81\xb0\xce\x80\xa8\xcc\x5b\x7f\xa1\x52\x77\ \x97\x6d\x91\xb2\x76\x97\xb4\x67\x85\x9e\x58\x73\x8a\x3f\x5e\x70\ \x27\x4d\x60\x40\x6c\x81\x79\xa6\xbe\x74\x9d\xb4\x52\x7b\x90\x4d\ \x78\x90\x6c\x99\xb4\x7d\xa5\xc2\x65\x88\xa7\x44\x66\x84\x51\x79\ \x97\x6e\x9c\xba\x74\x9d\xb7\x5d\x7c\x90\x23\x3d\x49\x27\x45\x51\ \x43\x68\x79\x44\x6d\x84\x5c\x85\xa1\x76\x9e\xbf\x7a\xa2\xc4\x66\ \x8f\xab\x45\x70\x88\x5b\x88\xa0\x71\x9f\xb9\x62\x8d\xa6\x31\x58\ \x6e\x43\x68\x7e\x5a\x7b\x92\x4c\x6a\x7d\x38\x53\x64\x43\x61\x74\ \x60\x7e\x98\x6a\x84\xa2\x59\x75\x93\x53\x75\x8f\x67\x90\xa8\x7c\ \xa8\xc5\x88\xb3\xd5\x82\xac\xcd\x6a\x92\xae\x3c\x64\x7d\x66\x8d\ \xa7\x8d\xb2\xd1\x97\xb9\xd8\x9a\xbe\xdb\x95\xbc\xdb\x8d\xb5\xd5\ \x85\xaa\xc6\x7c\xa0\xb9\x80\xa7\xc0\x83\xaa\xc6\x85\xa8\xc4\x7f\ \xa2\xbf\x7e\xa4\xbf\x82\xa8\xc4\x82\xa9\xc5\x83\xa6\xc5\x83\xa5\ \xc7\x86\xa7\xcd\x89\xa8\xce\x8a\xa9\xca\x88\xae\xc8\x85\xad\xc9\ \x85\xaf\xc9\x85\xb0\xc6\x85\xaf\xc4\x8a\xb2\xca\x8b\xb1\xcd\x8c\ \xb5\xcf\x8f\xba\xd1\x92\xbd\xd2\x8e\xbc\xd1\x8a\xb8\xd0\x8c\xb4\ \xd3\x85\xa9\xc8\x69\x8d\xab\x5d\x81\xa0\x67\x8b\xa7\x5f\x7e\x95\ \x36\x53\x68\x56\x75\x8d\x90\xb0\xce\x9b\xbc\xda\x97\xbb\xd4\x90\ \xb5\xcf\x8b\xad\xcb\x7f\xa6\xc4\x78\xa3\xc1\x74\xa0\xbd\x79\x9f\ \xba\x7d\x9a\xb9\x79\x94\xb7\x64\x81\xa6\x50\x73\x95\x72\x9b\xb8\ \x84\xb2\xcc\x8a\xb4\xcd\x8c\xb0\xca\x87\xac\xc8\x7f\xa6\xc3\x79\ \x9e\xb9\x72\x95\xad\x7f\xa4\xbf\x89\xae\xcc\x8a\xb1\xd3\x8c\xb4\ \xd5\x8c\xb5\xd6\x90\xb6\xd6\x91\xb5\xd5\x8e\xb4\xcf\x87\xb0\xc9\ \x87\xaf\xc8\x8b\xb3\xcc\x8c\xb5\xce\x8d\xb6\xcf\x8f\xb6\xd2\x8f\ \xb6\xd3\x8c\xb3\xd3\x8e\xb3\xd3\x8e\xb2\xd1\x8d\xb3\xd1\x8e\xb3\ \xd3\x91\xb4\xd3\x99\xb7\xd6\x99\xb6\xd5\x9b\xb8\xd6\x9a\xb9\xda\ \x93\xb7\xd6\x93\xb5\xd4\x94\xb3\xd5\x97\xb3\xd6\x94\xb3\xd7\x92\ \xb2\xd9\x96\xb3\xd7\x92\xaf\xcf\x92\xb0\xce\x93\xb3\xd4\x93\xb1\ \xd5\x90\xae\xd3\x8b\xae\xd3\x8b\xb2\xd6\x00\x00\x00\x81\xb1\xd3\ \x7d\xb1\xcf\x83\xb4\xd3\x83\xb1\xd3\x84\xb1\xd2\x7f\xac\xcc\x80\ \xae\xd0\x85\xaf\xd5\x86\xa9\xce\x68\x88\xa4\x22\x44\x54\x43\x6b\ \x7d\x88\xb2\xcf\x89\xb3\xd9\x87\xb1\xd6\x7d\xa5\xc8\x7a\x9c\xbc\ \x74\x8e\xab\x4f\x67\x7e\x23\x3e\x51\x26\x48\x5a\x56\x80\x95\x81\ \xac\xc8\x8e\xbb\xda\x92\xbe\xda\x90\xb8\xd4\x8b\xb4\xd2\x8c\xb5\ \xd5\x8c\xb5\xd6\x8e\xb5\xd9\x86\xaa\xcd\x74\x9b\xbb\x7d\xa6\xc3\ \x7f\xa6\xc2\x60\x83\x97\x20\x3f\x4b\x24\x43\x50\x5a\x80\x93\x66\ \x8d\xa3\x57\x7a\x91\x5d\x7e\x97\x7e\xa3\xbe\x87\xaf\xcc\x88\xb3\ \xcd\x8c\xb8\xd1\x8d\xb7\xd5\x80\xad\xc9\x68\x94\xae\x60\x8b\xa4\ \x6e\x95\xab\x70\x91\xa5\x55\x71\x87\x48\x66\x7e\x68\x82\xa1\x76\ \x90\xb0\x57\x75\x90\x3c\x5e\x74\x65\x8d\xa4\x83\xab\xc6\x8b\xb3\ \xd3\x89\xb2\xd2\x7c\xa3\xc0\x56\x7f\x99\x49\x75\x8f\x7d\xa6\xc5\ \x91\xb5\xd6\x99\xbe\xdb\x93\xbb\xd7\x87\xaf\xcb\x71\x95\xae\x44\ \x66\x7a\x57\x7a\x92\x6c\x8c\xaa\x65\x81\x9e\x4e\x6b\x85\x53\x76\ \x8e\x68\x8d\xa7\x6d\x8f\xa9\x65\x84\x9c\x69\x86\x9f\x72\x90\xae\ \x78\x92\xb3\x75\x8e\xaa\x74\x95\xac\x7a\x9e\xb6\x79\x9b\xb4\x75\ \x97\xaa\x74\x97\xa9\x7a\x9d\xb4\x7e\xa3\xbb\x85\xab\xc2\x8d\xb3\ \xc9\x8f\xb7\xcd\x8f\xb9\xd0\x8f\xb6\xd2\x91\xb4\xd6\x8e\xaf\xd2\ \x7f\xa1\xc3\x6b\x8e\xaf\x61\x82\x9f\x49\x66\x7c\x2b\x47\x59\x66\ \x86\x9a\x93\xb4\xcd\x96\xb6\xd1\x8c\xae\xc8\x80\xa4\xbc\x73\x95\ \xb0\x6d\x92\xad\x64\x8d\xa9\x60\x88\xa0\x5f\x7f\x94\x55\x72\x8a\ \x57\x75\x95\x5a\x7c\x9f\x75\x9b\xb9\x7e\xaa\xc4\x7f\xab\xc5\x85\ \xac\xc7\x8a\xaa\xc7\x8a\xa8\xc6\x7c\x9d\xba\x65\x85\x9d\x46\x64\ \x77\x70\x92\xa7\x87\xac\xc8\x8c\xb2\xd2\x8f\xb5\xd6\x92\xb7\xd6\ \x94\xb6\xd7\x93\xb6\xd3\x8f\xb4\xce\x8a\xaf\xc9\x89\xae\xcc\x8c\ \xaf\xcd\x8e\xb3\xcd\x90\xb7\xd0\x92\xb6\xd2\x94\xb6\xd4\x95\xb3\ \xd5\x94\xb1\xd2\x95\xb3\xd5\x93\xb5\xd6\x93\xb4\xd5\x98\xb7\xd6\ \x9c\xb8\xd6\x98\xb6\xd4\x97\xb4\xd1\x95\xb4\xd1\x94\xb5\xd2\x92\ \xb4\xcf\x95\xb3\xd1\x93\xb1\xd1\x90\xb1\xd3\x91\xb3\xd8\x94\xb4\ \xd7\x92\xb2\xd3\x91\xb3\xd1\x8e\xb1\xd2\x91\xb1\xd4\x8f\xaf\xd2\ \x88\xae\xd0\x84\xaf\xd0\x00\x00\x00\x86\xb6\xd9\x85\xb7\xd8\x87\ \xb6\xd8\x86\xb4\xd6\x84\xb3\xd4\x81\xb2\xd2\x84\xb4\xd4\x89\xb4\ \xd8\x8d\xb2\xd8\x7b\xa1\xc0\x39\x60\x74\x29\x50\x60\x7b\xa5\xbc\ \x8c\xb9\xd9\x8a\xb7\xda\x8b\xb6\xd6\x85\xa8\xc5\x63\x7e\x96\x28\ \x41\x54\x32\x51\x62\x54\x7b\x8f\x6f\x99\xb0\x91\xb8\xd5\x99\xc0\ \xe0\x98\xc1\xe1\x95\xbd\xdc\x96\xbb\xda\x91\xb6\xd8\x8d\xb8\xda\ \x8e\xbb\xdb\x97\xbf\xdf\x9b\xbf\xdd\x92\xb7\xd4\x81\xa7\xc2\x5a\ \x81\x95\x1d\x3f\x49\x1c\x3d\x4b\x37\x5d\x73\x42\x66\x7e\x55\x72\ \x88\x43\x60\x74\x51\x70\x87\x76\x99\xb3\x89\xb0\xca\x96\xbc\xd7\ \x9a\xc1\xdf\x90\xbd\xd9\x83\xb4\xcd\x82\xb1\xc9\x89\xb2\xca\x8c\ \xb1\xca\x86\xa7\xc3\x85\xa3\xc3\x8d\xa7\xc9\x93\xad\xce\x86\xa6\ \xc2\x76\x9c\xb4\x7f\xa4\xbf\x8f\xb3\xd1\x94\xb8\xd9\x92\xb7\xd6\ \x8d\xb1\xce\x7b\xa3\xbe\x64\x93\xb0\x74\xa2\xc2\x8d\xb7\xd6\x92\ \xbb\xd6\x8d\xba\xd2\x84\xb1\xc9\x73\x9c\xb3\x48\x6f\x83\x61\x8a\ \xa1\x69\x8f\xad\x58\x78\x95\x3d\x5d\x77\x4d\x74\x8b\x62\x8b\xa4\ \x5a\x81\x99\x41\x64\x78\x48\x68\x7d\x55\x74\x8e\x4c\x69\x83\x39\ \x55\x69\x3b\x5a\x6d\x53\x75\x8b\x4c\x6d\x84\x37\x55\x68\x40\x5f\ \x71\x59\x7a\x8e\x6b\x8e\xa2\x6b\x92\xa5\x7d\xa4\xb7\x88\xae\xc5\ \x8c\xb1\xcd\x8d\xb1\xd0\x8d\xb0\xd2\x8f\xb0\xd3\x85\xa8\xc9\x74\ \x96\xb7\x55\x74\x8f\x25\x43\x56\x38\x57\x68\x7d\xa0\xb2\x90\xb4\ \xc9\x89\xaa\xc3\x71\x93\xaa\x55\x76\x8a\x4d\x6c\x83\x5b\x7d\x94\ \x5f\x84\x9c\x58\x7a\x8e\x3d\x59\x67\x2b\x48\x59\x4d\x70\x8a\x6e\ \x91\xb0\x79\x9d\xb5\x6c\x92\xa4\x71\x99\xae\x7e\xa1\xbd\x82\x9f\ \xbc\x78\x94\xae\x67\x83\x99\x55\x71\x82\x32\x4e\x5c\x5d\x7d\x8f\ \x84\xa9\xc3\x8a\xb2\xcc\x90\xb5\xd1\x94\xb6\xd3\x97\xb6\xd5\x93\ \xb5\xd3\x8f\xb4\xcf\x8e\xb3\xcd\x91\xb2\xd0\x95\xb3\xd2\x97\xb6\ \xd1\x98\xb9\xd3\x99\xb6\xd3\x9a\xb4\xd4\x9a\xb2\xd6\x9b\xb3\xd8\ \x9b\xb6\xd8\x99\xb7\xd7\x97\xb5\xd4\x9a\xb7\xd3\x96\xb7\xd0\x94\ \xb6\xd0\x91\xb2\xcd\x93\xb1\xcd\x95\xb3\xcf\x97\xb5\xd0\x95\xb2\ \xcd\x8e\xae\xcb\x8e\xb2\xd0\x90\xb4\xd4\x95\xb5\xd8\x91\xb2\xd4\ \x8e\xb1\xd1\x8d\xb1\xd2\x8f\xb0\xd2\x8f\xb0\xd1\x8a\xad\xcd\x89\ \xae\xd0\x00\x00\x00\x86\xb4\xd8\x87\xb6\xd9\x87\xb5\xd8\x86\xb4\ \xd7\x82\xb3\xd4\x80\xb4\xd4\x84\xb4\xd3\x88\xb5\xd5\x8b\xb3\xd7\ \x80\xa9\xcb\x51\x77\x90\x1c\x40\x51\x64\x8e\xa1\x89\xb8\xd3\x8c\ \xba\xd9\x8c\xb9\xd5\x86\xad\xc6\x52\x72\x87\x22\x42\x53\x5b\x7f\ \x91\x75\x9d\xb4\x69\x90\xa6\x8d\xb1\xca\x9c\xc0\xdc\x9a\xc0\xdf\ \x96\xbc\xdd\x95\xb9\xdb\x92\xb6\xd9\x8f\xb9\xda\x8f\xbc\xda\x93\ \xbd\xd7\x99\xbe\xd8\x91\xb5\xcf\x7b\x9d\xb8\x47\x6a\x7e\x1b\x3a\ \x48\x25\x43\x52\x57\x7a\x91\x44\x6a\x86\x4b\x6e\x88\x57\x76\x92\ \x41\x60\x7a\x3e\x5d\x78\x5c\x81\x9a\x80\xa5\xbd\x92\xb8\xd1\x8f\ \xba\xd2\x89\xba\xd1\x89\xb9\xd1\x94\xbe\xd7\x96\xbd\xd7\x98\xb9\ \xd9\x9a\xb7\xda\x9c\xb9\xdb\x9c\xbb\xda\x99\xbb\xd7\x94\xb8\xd5\ \x93\xb7\xd7\x96\xb9\xdb\x99\xbc\xdd\x98\xbc\xda\x98\xba\xd9\x8f\ \xb4\xd3\x86\xb2\xd2\x84\xb3\xd3\x8d\xb8\xd7\x8f\xba\xd4\x87\xb7\ \xcf\x84\xb4\xcc\x84\xb1\xc7\x7d\xa8\xbe\x83\xb0\xc9\x82\xad\xca\ \x76\x9e\xba\x6a\x91\xac\x6a\x93\xaf\x71\x9f\xbb\x66\x96\xb0\x58\ \x88\x9f\x5a\x85\x9b\x69\x8f\xa9\x69\x8c\xa6\x59\x7c\x93\x5a\x7d\ \x92\x69\x8e\xa7\x66\x8a\xa4\x48\x6b\x80\x48\x6e\x80\x66\x8c\x9f\ \x70\x97\xab\x67\x90\xa1\x62\x89\x9c\x76\x9b\xb2\x83\xaa\xc4\x87\ \xae\xcc\x89\xae\xcb\x8c\xb0\xcd\x82\xa7\xc4\x6d\x8d\xaa\x3f\x5a\ \x71\x23\x3e\x50\x59\x79\x8b\x88\xaa\xbe\x8a\xac\xc3\x77\x99\xb0\ \x4e\x71\x84\x38\x5b\x6a\x53\x76\x88\x62\x85\x9b\x5e\x81\x98\x51\ \x71\x84\x32\x50\x5d\x2a\x4a\x5b\x50\x75\x8f\x6c\x8e\xac\x64\x85\ \x9b\x3d\x5f\x6d\x4e\x74\x85\x72\x97\xb0\x76\x97\xb0\x5b\x77\x8a\ \x43\x5d\x6b\x52\x6b\x78\x34\x4e\x5c\x4f\x6f\x80\x7f\xa4\xbb\x89\ \xb0\xc9\x8f\xb5\xcd\x91\xb4\xce\x93\xb4\xd0\x92\xb6\xd2\x8e\xb3\ \xcf\x8e\xb2\xcc\x96\xb4\xd0\x9b\xb7\xd2\x9a\xb7\xd2\x9b\xb8\xd3\ \x99\xb4\xd1\x9a\xb3\xd4\x9a\xb3\xd7\x9a\xb3\xd8\x9a\xb3\xd5\x9b\ \xb5\xd6\x99\xb5\xd2\x97\xb6\xcf\x96\xb6\xcf\x92\xb5\xcf\x94\xb3\ \xce\x96\xb3\xcd\x93\xb2\xcc\x94\xb4\xce\x93\xb2\xcd\x8f\xb0\xc9\ \x8f\xb3\xce\x91\xb5\xd2\x95\xb3\xd7\x94\xb1\xd4\x91\xb1\xd3\x93\ \xb2\xd5\x8e\xaf\xd1\x8e\xb0\xd0\x8d\xab\xce\x8a\xa9\xcd\x00\x00\ \x00\x82\xad\xd1\x84\xaf\xd5\x84\xae\xd4\x84\xaf\xd5\x81\xad\xd2\ \x80\xb0\xd3\x84\xb2\xd3\x84\xb1\xd3\x88\xb1\xd6\x84\xaa\xcf\x65\ \x85\xa4\x21\x3f\x54\x57\x7c\x91\x83\xb0\xcc\x8c\xb9\xd8\x8d\xb7\ \xd2\x84\xa7\xc3\x54\x73\x89\x21\x43\x55\x70\x96\xab\x83\xa8\xc2\ \x60\x86\x9e\x6f\x94\xae\x8d\xb4\xd2\x90\xb9\xd8\x8f\xb8\xd7\x8f\ \xb8\xd8\x8e\xb6\xd9\x8e\xba\xdb\x8c\xba\xda\x8e\xba\xd6\x90\xb9\ \xd5\x87\xaa\xc6\x62\x80\x9b\x46\x61\x7b\x3a\x53\x68\x31\x4e\x5f\ \x77\x9b\xb1\x61\x8b\xa9\x4e\x7a\x99\x61\x8c\xae\x59\x7e\x9f\x44\ \x68\x83\x48\x6f\x87\x54\x7b\x91\x69\x8e\xa4\x83\xac\xc1\x8a\xb8\ \xcd\x8d\xbb\xd5\x99\xc2\xdc\x9d\xc1\xde\xa0\xbf\xe0\x9e\xbe\xe1\ \x9e\xc1\xdf\x9c\xc2\xdd\x9c\xc2\xdb\x9a\xc0\xdd\x97\xbe\xdf\x98\ \xbf\xe0\x9a\xc0\xe0\x9c\xc0\xdf\x9b\xbe\xdd\x98\xbb\xdb\x91\xbb\ \xda\x8f\xbc\xda\x92\xbb\xda\x90\xbb\xd8\x8e\xb9\xd6\x8d\xb8\xd3\ \x92\xbb\xd6\x94\xbb\xd7\x96\xbd\xd9\x91\xb9\xd5\x89\xb5\xd0\x84\ \xb0\xcb\x83\xac\xcc\x81\xae\xcd\x77\xab\xc8\x70\xa6\xc3\x72\xa3\ \xbf\x79\xa3\xc1\x7b\xa3\xc2\x76\xa1\xbc\x76\x9e\xb9\x7a\xa4\xbf\ \x79\xa4\xc1\x6e\x9a\xb4\x67\x94\xab\x6e\x99\xaf\x74\x9f\xb5\x6d\ \x99\xac\x59\x83\x97\x53\x7b\x90\x74\x9e\xb6\x81\xaa\xc8\x88\xb0\ \xcf\x89\xb1\xcd\x84\xa9\xc7\x6b\x8a\xa8\x3c\x56\x6d\x34\x50\x64\ \x6c\x8d\xa3\x83\xa7\xbe\x82\xa8\xbe\x78\x9c\xb1\x62\x85\x9a\x50\ \x75\x88\x56\x7e\x91\x6b\x92\xa9\x72\x97\xb0\x66\x8a\xa0\x51\x74\ \x86\x4f\x73\x8a\x67\x8b\xa9\x6a\x8e\xac\x5a\x7d\x97\x39\x63\x75\ \x49\x74\x88\x6e\x97\xaf\x73\x97\xb1\x58\x77\x8b\x44\x60\x6f\x5d\ \x76\x87\x4e\x6a\x7c\x59\x7c\x92\x79\x9f\xb8\x85\xab\xc3\x89\xb0\ \xc6\x8a\xb0\xc9\x8d\xb2\xcc\x8e\xb5\xce\x8b\xb0\xcc\x8f\xb2\xcc\ \x98\xb6\xd1\x9b\xb9\xd4\x98\xb7\xd3\x96\xb3\xd0\x97\xb2\xd1\x99\ \xb2\xd3\x97\xb2\xd6\x98\xb4\xd6\x99\xb4\xd4\x9c\xb5\xd6\x9a\xb5\ \xd2\x97\xb5\xd0\x96\xb4\xcf\x95\xb3\xd0\x98\xb2\xd2\x97\xb2\xd0\ \x90\xb2\xcd\x8f\xb4\xd1\x90\xb2\xd1\x93\xb3\xce\x93\xb4\xce\x93\ \xb5\xd1\x95\xb4\xd5\x93\xb2\xd3\x92\xb0\xd1\x91\xb0\xd3\x90\xb0\ \xd3\x8d\xaf\xd0\x8d\xae\xd0\x88\xa9\xcb\x00\x00\x00\x6e\x94\xbb\ \x76\x9b\xc6\x79\x9d\xca\x76\x9e\xca\x71\x9d\xc6\x73\xa2\xca\x78\ \xa8\xcd\x7c\xac\xd1\x7d\xa9\xd0\x7e\xa3\xcb\x6c\x89\xac\x26\x41\ \x58\x46\x68\x7d\x7b\xa3\xc1\x83\xae\xd1\x85\xaf\xd0\x82\xa5\xc4\ \x59\x77\x91\x28\x49\x5d\x71\x97\xad\x7f\xa4\xc0\x56\x7b\x97\x57\ \x7f\x9e\x7c\xaa\xc8\x82\xb1\xcf\x84\xb3\xce\x85\xb4\xd2\x86\xb3\ \xd4\x88\xb6\xd9\x8b\xb9\xdb\x8a\xb8\xd8\x85\xb3\xd3\x7b\xa1\xc0\ \x64\x84\xa0\x72\x8d\xab\x4c\x6a\x84\x31\x52\x64\x79\xa2\xb4\x6b\ \x99\xb2\x48\x77\x93\x72\xa1\xc1\x73\x9d\xc0\x65\x8e\xad\x63\x8d\ \xa9\x6a\x95\xad\x58\x82\x99\x4f\x7b\x91\x78\xa6\xbc\x8c\xb8\xd1\ \x97\xbe\xdc\x9e\xc0\xe1\x9e\xbf\xe2\x9f\xc2\xe2\x9b\xc4\xe0\x96\ \xc4\xdc\x96\xc3\xdb\x95\xc1\xda\x93\xbe\xdc\x97\xc1\xe1\x98\xc0\ \xe0\x99\xc0\xe0\x99\xbf\xdf\x9a\xc2\xde\x93\xbf\xdc\x92\xbf\xdc\ \x93\xbe\xdd\x91\xba\xdb\x91\xb7\xd9\x94\xb8\xda\x96\xbb\xdd\x99\ \xbf\xdd\x93\xb9\xd9\x8d\xb7\xd3\x87\xb6\xce\x87\xb8\xd0\x89\xb7\ \xd3\x87\xb5\xd4\x81\xb5\xd3\x7d\xb2\xd1\x7c\xaf\xcd\x7f\xae\xce\ \x7f\xad\xcd\x7d\xad\xcc\x7c\xae\xc9\x7e\xb0\xca\x7f\xb2\xcc\x80\ \xb0\xcb\x7b\xaa\xc5\x77\xa5\xbc\x6d\x97\xac\x5c\x84\x98\x4d\x76\ \x8b\x41\x69\x7e\x5e\x8a\xa1\x7d\xab\xc9\x89\xb4\xd5\x8a\xb5\xd3\ \x87\xaf\xce\x7a\x9c\xbc\x60\x7d\x9a\x3b\x5a\x72\x69\x8d\xa6\x79\ \xa0\xbb\x7d\xa4\xbf\x80\xa6\xbe\x7a\x9d\xb5\x6f\x95\xae\x69\x95\ \xaa\x75\x9e\xb7\x84\xa8\xc6\x84\xa7\xc1\x7a\xa3\xb9\x78\xa0\xba\ \x7b\xa2\xc2\x79\xa0\xbf\x6c\x98\xb3\x5e\x90\xa9\x5e\x8f\xa8\x71\ \x9c\xb8\x79\x9f\xbd\x6f\x94\xae\x6c\x8f\xa5\x71\x91\xa8\x71\x94\ \xae\x73\x98\xb5\x7c\xa3\xbf\x81\xa9\xc3\x86\xab\xc5\x89\xae\xca\ \x89\xb0\xcb\x88\xb1\xc8\x88\xb0\xc9\x8d\xb3\xcd\x94\xb7\xd1\x96\ \xb9\xd3\x96\xb7\xd5\x95\xb2\xd1\x94\xb3\xd2\x95\xb3\xd4\x96\xb2\ \xd4\x96\xb3\xd1\x94\xb3\xce\x96\xb6\xd1\x97\xb6\xd1\x95\xb6\xd0\ \x92\xb5\xcf\x94\xb4\xd2\x99\xb2\xd6\x99\xb2\xd6\x8f\xb2\xd1\x8c\ \xb3\xd3\x8f\xb4\xd2\x95\xb6\xd2\x94\xb5\xd0\x94\xb5\xce\x95\xb5\ \xd1\x92\xb2\xd1\x8f\xb0\xd1\x92\xb0\xd3\x93\xb1\xd4\x8f\xaf\xd2\ \x8a\xad\xcd\x86\xa9\xc9\x00\x00\x00\x3b\x63\x90\x48\x6e\x9c\x51\ \x77\xa7\x4f\x7a\xab\x4c\x7d\xa9\x52\x86\xaf\x65\x9a\xc1\x6f\xa3\ \xca\x72\xa3\xca\x75\x9f\xc5\x63\x84\xa7\x25\x44\x5c\x32\x53\x68\ \x58\x7e\x9e\x66\x8f\xb8\x6c\x96\xbe\x69\x8e\xb3\x55\x75\x92\x2c\ \x4e\x61\x52\x79\x8b\x63\x89\xa1\x44\x69\x84\x4a\x73\x94\x6d\x9a\ \xbc\x79\xa6\xc9\x7f\xad\xcd\x7e\xac\xcd\x7e\xaa\xcf\x81\xae\xd2\ \x87\xb3\xd6\x85\xb2\xd5\x82\xaf\xd3\x7f\xa7\xcc\x81\xa5\xc6\x79\ \x9a\xba\x56\x75\x91\x29\x4c\x60\x6f\x96\xa8\x6e\x96\xa9\x46\x71\ \x88\x71\x99\xb7\x86\xac\xd0\x84\xaf\xd2\x7f\xae\xcf\x7e\xad\xcd\ \x75\xa1\xbf\x47\x73\x8d\x40\x69\x82\x7c\xa2\xbc\x95\xb6\xd5\x98\ \xba\xdc\x98\xbd\xdf\x98\xc1\xe1\x95\xc4\xe3\x92\xc3\xe0\x90\xc2\ \xdb\x90\xc1\xda\x90\xbe\xdb\x91\xbd\xda\x94\xbf\xda\x96\xc1\xdd\ \x99\xc1\xe1\x99\xc2\xdf\x94\xc1\xdc\x92\xbf\xda\x91\xbd\xd9\x93\ \xbb\xdb\x92\xb5\xd9\x91\xb4\xd6\x8e\xb1\xd1\x8b\xac\xcb\x83\xa9\ \xc6\x82\xab\xc6\x82\xb0\xc9\x86\xb8\xcf\x87\xb9\xd0\x85\xb5\xd2\ \x83\xb9\xd5\x7c\xb4\xce\x7c\xb1\xcb\x79\xae\xcb\x7c\xac\xcb\x7f\ \xaf\xce\x7e\xb3\xd1\x7c\xb2\xd0\x7e\xb5\xcc\x83\xb6\xce\x81\xb0\ \xc6\x6d\x99\xac\x4b\x71\x81\x37\x5b\x6e\x42\x66\x7f\x41\x64\x7d\ \x4c\x75\x8a\x7b\xa9\xc3\x8a\xb7\xd7\x88\xb7\xd6\x89\xb5\xd5\x88\ \xac\xd0\x7e\x9e\xbf\x5f\x7d\x9b\x60\x83\xa0\x7e\xa3\xc1\x7e\xa3\ \xc1\x7f\xa4\xbe\x7e\xa3\xbe\x79\xa0\xbb\x74\xa2\xba\x7b\xa7\xc2\ \x88\xae\xcb\x8c\xb1\xcc\x86\xaf\xc8\x84\xb0\xc8\x86\xb0\xcd\x85\ \xb0\xcf\x7e\xad\xcc\x78\xa6\xc5\x77\xa4\xc2\x7d\xa4\xc3\x80\xa7\ \xc5\x7a\xa4\xc0\x7b\xa0\xbd\x7e\xa3\xbe\x82\xa8\xc5\x83\xa8\xc6\ \x81\xa8\xc8\x86\xab\xc9\x88\xad\xc7\x8a\xae\xcb\x89\xaf\xcb\x88\ \xb1\xc9\x86\xae\xc7\x8c\xb1\xcb\x8f\xb6\xcf\x93\xb7\xd1\x96\xb8\ \xd2\x94\xb7\xd1\x93\xb6\xd2\x92\xb3\xd4\x94\xb3\xd4\x95\xb3\xd0\ \x96\xb5\xcf\x93\xb4\xce\x91\xb4\xd0\x90\xb6\xd0\x8f\xb7\xd0\x92\ \xb6\xd2\x98\xb5\xd7\x9a\xb4\xd7\x97\xb6\xd4\x90\xb3\xcf\x90\xb4\ \xd2\x93\xb5\xd3\x96\xb5\xd0\x97\xb6\xd1\x95\xb3\xd0\x8f\xb0\xcf\ \x8d\xb0\xd1\x94\xb2\xd4\x99\xb1\xd7\x97\xb0\xd4\x8d\xae\xcf\x89\ \xac\xcc\x00\x00\x00\x6e\x9d\xc5\x78\xa3\xcc\x7c\xa6\xd1\x7a\xa7\ \xd4\x74\xa7\xcf\x72\xa9\xcd\x75\xaa\xcd\x77\xac\xce\x78\xab\xcd\ \x7b\xa7\xca\x72\x98\xb8\x48\x6d\x84\x3e\x66\x7b\x58\x81\xa0\x67\ \x93\xbb\x6c\x98\xc0\x6a\x94\xb8\x61\x86\xa3\x49\x6f\x86\x3c\x66\ \x7a\x3a\x63\x78\x3f\x63\x7f\x4a\x73\x95\x58\x84\xa9\x66\x91\xb8\ \x70\x99\xc1\x73\x9c\xc4\x71\x9c\xc6\x7a\xa2\xcb\x80\xa5\xcf\x7f\ \xa7\xd0\x7c\xa8\xce\x7e\xa8\xcf\x7e\xa5\xca\x6f\x94\xb6\x55\x74\ \x90\x28\x46\x5a\x52\x72\x82\x57\x79\x8d\x47\x6e\x84\x72\x9a\xb6\ \x84\xa9\xcd\x81\xab\xd1\x7f\xae\xd2\x80\xad\xd1\x7d\xa9\xc9\x69\ \x93\xb0\x36\x5a\x73\x4a\x6b\x82\x83\xa4\xbf\x8f\xb3\xd2\x8f\xb7\ \xd8\x8f\xbb\xd9\x8c\xbb\xda\x89\xbb\xd8\x89\xbb\xd7\x8e\xbc\xda\ \x8f\xbb\xd9\x8c\xba\xd7\x8d\xba\xd4\x8f\xbd\xd6\x92\xbe\xdc\x93\ \xbc\xdb\x91\xbc\xd7\x8e\xbb\xd5\x8f\xbb\xd3\x92\xb9\xd6\x93\xb5\ \xd6\x89\xac\xc9\x76\x97\xb1\x60\x7e\x98\x5a\x81\x98\x68\x8e\xa7\ \x78\xa1\xba\x7e\xad\xc5\x83\xb5\xcc\x89\xb9\xd1\x88\xb9\xd1\x80\ \xb6\xcd\x7a\xb2\xc8\x79\xaf\xca\x7e\xae\xcd\x81\xae\xce\x82\xb2\ \xd1\x7f\xb3\xd0\x84\xb6\xd0\x88\xb7\xce\x80\xad\xc0\x60\x89\x98\ \x36\x5a\x69\x46\x67\x7b\x61\x82\x9e\x4d\x72\x8b\x4f\x77\x8b\x83\ \xb0\xc7\x8a\xb8\xd2\x8e\xb9\xd5\x90\xb9\xd8\x91\xb5\xd6\x90\xaf\ \xd0\x7a\x98\xb5\x57\x78\x93\x75\x97\xb4\x7d\x9f\xc0\x79\x9e\xbd\ \x73\x98\xb5\x73\x99\xb5\x73\x9e\xb5\x73\x9c\xb3\x7c\xa0\xb9\x83\ \xa9\xc3\x87\xb0\xc9\x87\xb0\xc9\x8b\xb3\xd0\x89\xb1\xd0\x89\xb2\ \xd0\x84\xaf\xcd\x81\xaa\xca\x86\xab\xc9\x85\xaa\xc7\x80\xa8\xc4\ \x82\xa8\xc3\x87\xac\xc8\x8a\xae\xcb\x88\xad\xca\x86\xaa\xc9\x8b\ \xad\xca\x8f\xae\xca\x90\xb0\xcd\x8c\xb1\xcd\x8b\xae\xc9\x8e\xae\ \xca\x92\xb1\xce\x94\xb5\xcf\x97\xb8\xd1\x94\xb7\xce\x93\xb9\xd1\ \x93\xb7\xd2\x93\xb4\xd4\x95\xb3\xd2\x98\xb5\xd1\x97\xb5\xcf\x97\ \xb4\xd1\x93\xb4\xd3\x91\xb5\xd3\x8e\xb6\xd1\x91\xb6\xd2\x94\xb6\ \xd6\x99\xb5\xd5\x99\xb4\xd0\x96\xb5\xd0\x94\xb5\xd3\x95\xb6\xd6\ \x96\xb4\xd2\x95\xb2\xce\x91\xaf\xcd\x8f\xaf\xd1\x8c\xae\xd1\x90\ \xaf\xd3\x96\xb1\xd4\x97\xb0\xd4\x92\xaf\xd3\x8b\xae\xcf\x00\x00\ \x00\x83\xb1\xd2\x83\xaf\xd0\x81\xab\xcd\x82\xae\xd2\x83\xb3\xd5\ \x81\xb3\xd2\x80\xb0\xce\x80\xaf\xcd\x7e\xae\xcc\x83\xb1\xcf\x83\ \xae\xc8\x7b\xa4\xbc\x6e\x97\xb0\x79\xa3\xc3\x83\xae\xd2\x8a\xb6\ \xd9\x8f\xb9\xdc\x8f\xb7\xd7\x8d\xb3\xd0\x84\xae\xc7\x81\xa7\xc2\ \x85\xa8\xc7\x88\xad\xd0\x85\xaf\xd2\x80\xac\xd0\x81\xa9\xd1\x7f\ \xa6\xce\x7c\xa6\xcb\x80\xa7\xcd\x80\xa5\xcd\x7d\xa6\xcd\x7b\xa8\ \xcb\x7c\xa9\xcf\x76\x9f\xc6\x61\x88\xac\x48\x6b\x89\x28\x48\x60\ \x26\x45\x58\x2a\x4f\x65\x49\x75\x8e\x6b\x97\xb7\x76\x9e\xc3\x73\ \x9d\xc5\x72\x9e\xc6\x78\xa3\xc7\x7d\xa5\xc5\x74\x99\xbb\x4a\x69\ \x87\x26\x42\x5a\x5d\x7d\x97\x7a\xa2\xc0\x7e\xaa\xcc\x7f\xad\xce\ \x7d\xac\xcc\x7d\xad\xcd\x7e\xae\xce\x85\xb2\xd3\x87\xb4\xd5\x87\ \xb5\xd7\x82\xb2\xd1\x82\xb6\xd2\x87\xb7\xd6\x89\xb6\xd6\x87\xb5\ \xd1\x87\xb7\xd0\x88\xb9\xd0\x87\xb5\xcf\x8c\xb4\xd2\x83\xa9\xc3\ \x65\x8a\xa2\x3c\x65\x7b\x42\x6b\x82\x57\x7d\x98\x63\x89\xa3\x68\ \x94\xac\x7c\xa8\xc0\x8b\xb4\xcc\x8d\xb6\xcf\x86\xb8\xcf\x7b\xb3\ \xcb\x7b\xb0\xcd\x80\xaf\xd0\x83\xb1\xd2\x83\xb2\xd0\x85\xb4\xd0\ \x89\xb6\xd0\x8b\xb7\xcf\x82\xad\xc2\x68\x92\xa5\x46\x6b\x81\x57\ \x76\x93\x64\x83\xa4\x51\x75\x91\x68\x91\xa8\x8d\xb8\xd0\x90\xb9\ \xd3\x92\xb9\xd6\x95\xbb\xdb\x99\xbc\xdd\x97\xb6\xd8\x89\xa8\xc7\ \x68\x8a\xaa\x5f\x82\xa3\x75\x9a\xba\x75\x9a\xb9\x73\x98\xb5\x6d\ \x92\xad\x69\x91\xa7\x52\x77\x87\x60\x82\x97\x7f\xa5\xbd\x85\xae\ \xc7\x87\xb1\xca\x8d\xb4\xcf\x8f\xb4\xd0\x90\xb4\xd2\x8b\xb1\xd2\ \x87\xad\xce\x87\xad\xcc\x89\xae\xc9\x89\xae\xca\x89\xad\xc9\x8f\ \xb0\xcc\x92\xb1\xcc\x8e\xb1\xcc\x8a\xaf\xca\x8c\xaf\xc9\x94\xb2\ \xca\x95\xb3\xce\x90\xb1\xcd\x92\xae\xce\x96\xaf\xd1\x98\xb3\xd1\ \x99\xb6\xd2\x99\xba\xd4\x98\xbb\xd3\x94\xb9\xd2\x96\xb7\xd1\x98\ \xb5\xd3\x96\xb5\xd3\x96\xb5\xd1\x98\xb5\xd1\x98\xb5\xd5\x94\xb4\ \xd6\x94\xb7\xd8\x92\xb6\xd5\x91\xb4\xd4\x92\xb4\xd5\x95\xb3\xd4\ \x98\xb1\xd1\x98\xb2\xd0\x97\xb5\xd2\x94\xb4\xd3\x94\xb2\xd3\x90\ \xaf\xce\x8d\xaf\xce\x8b\xae\xcf\x89\xab\xce\x8a\xad\xce\x90\xad\ \xce\x95\xae\xd2\x94\xb0\xd5\x8d\xaf\xd1\x00\x00\x00\x7f\xa8\xc5\ \x6c\x95\xae\x59\x82\x97\x71\x9b\xb2\x7d\xaa\xc4\x7c\xac\xc3\x79\ \xa4\xba\x78\x9d\xb4\x77\x9f\xb8\x7f\xa9\xc4\x85\xae\xc8\x83\xa8\ \xc4\x80\xa5\xc2\x7d\xa4\xc2\x85\xac\xca\x8b\xb1\xcd\x8a\xaf\xcd\ \x8c\xb0\xd0\x91\xb1\xd1\x91\xb1\xce\x94\xb3\xcf\x94\xb3\xd1\x96\ \xb9\xd7\x96\xbc\xdb\x91\xba\xdb\x8b\xb2\xd6\x85\xaf\xd0\x83\xb0\ \xce\x88\xb1\xd0\x8a\xb0\xd1\x8a\xb1\xd1\x8a\xb4\xd2\x8d\xb8\xd8\ \x8d\xb6\xd9\x86\xb0\xd3\x78\xa0\xc1\x61\x86\xa4\x4c\x70\x8a\x53\ \x7d\x97\x68\x98\xb6\x74\xa3\xc3\x78\xa3\xc6\x75\xa0\xc6\x77\xa2\ \xc7\x7d\xa4\xc6\x81\xa5\xc6\x7d\x9c\xbe\x5f\x79\x9a\x25\x3f\x58\ \x37\x57\x6e\x62\x8a\xa7\x78\xa5\xc7\x77\xa5\xc8\x7a\xa6\xc9\x7a\ \xa3\xc8\x79\xa4\xc9\x7b\xa8\xcc\x80\xab\xd0\x82\xae\xd2\x7e\xb1\ \xd2\x7b\xb2\xd1\x81\xb6\xd5\x87\xb7\xd6\x88\xb8\xd3\x86\xba\xd3\ \x85\xba\xd3\x85\xb6\xd3\x88\xb4\xd5\x88\xb0\xd1\x79\xa1\xc1\x68\ \x97\xb4\x6b\x99\xb6\x74\x9f\xbc\x6f\x99\xb5\x62\x8c\xa4\x61\x87\ \x9d\x83\xa4\xbc\x8b\xb2\xcb\x86\xb6\xce\x7d\xb4\xcd\x7a\xb0\xce\ \x7e\xb0\xd1\x82\xb1\xd1\x86\xb6\xd0\x88\xb7\xd1\x8d\xb8\xd3\x89\ \xb4\xd0\x82\xae\xc8\x7a\xa3\xbc\x69\x90\xac\x63\x87\xa9\x65\x89\ \xac\x68\x8f\xb0\x80\xab\xc9\x8c\xb7\xd5\x92\xb9\xd9\x92\xbb\xdc\ \x93\xbc\xde\x96\xbd\xde\x95\xb9\xdb\x89\xae\xd2\x75\x9e\xc4\x5e\ \x88\xac\x64\x8e\xb0\x6e\x97\xb7\x71\x99\xb9\x6f\x98\xb2\x69\x90\ \xa7\x50\x72\x88\x69\x88\xa2\x80\xa5\xc0\x86\xaf\xc8\x87\xb3\xcb\ \x8c\xb7\xcf\x92\xb7\xd1\x95\xb5\xd5\x90\xb1\xd4\x86\xb0\xd1\x83\ \xae\xce\x86\xaf\xcb\x8b\xb0\xcd\x8f\xb2\xcf\x94\xb3\xce\x97\xb3\ \xcd\x95\xb3\xce\x93\xb4\xce\x93\xb2\xcd\x91\xb0\xcb\x93\xb2\xcf\ \x8e\xad\xcc\x91\xac\xcd\x98\xb1\xd3\x9b\xb4\xd6\x9a\xb7\xd8\x98\ \xb8\xd7\x9a\xba\xd7\x98\xb7\xd4\x97\xb6\xd4\x96\xb7\xd4\x93\xb9\ \xd2\x93\xb7\xd1\x95\xb5\xd0\x95\xb5\xd5\x8f\xb4\xd5\x8d\xb2\xd4\ \x91\xb4\xd6\x94\xb5\xd9\x92\xb3\xd7\x94\xb3\xd5\x97\xb2\xd2\x98\ \xb4\xd0\x94\xb2\xcf\x92\xb2\xcf\x8e\xae\xd0\x8a\xac\xcf\x8c\xad\ \xcf\x8b\xad\xcf\x8b\xae\xce\x88\xac\xc9\x8c\xac\xc9\x91\xac\xcd\ \x94\xaf\xd5\x8c\xae\xd0\x00\x00\x00\x7f\xa8\xc2\x57\x80\x96\x28\ \x51\x61\x3b\x63\x71\x68\x94\xa4\x70\x9e\xae\x5b\x84\x94\x48\x6a\ \x7c\x51\x73\x8b\x6e\x95\xb1\x7b\xa3\xbf\x76\x9b\xb5\x5e\x81\x9a\ \x56\x79\x91\x68\x8c\xa3\x72\x97\xae\x6e\x8f\xa9\x70\x90\xab\x7e\ \x9b\xba\x87\xa2\xbf\x84\xa1\xba\x76\x96\xab\x7d\x9f\xb5\x87\xad\ \xc5\x8d\xb3\xce\x8c\xb2\xd1\x81\xab\xc8\x79\xa8\xc1\x7f\xac\xc3\ \x89\xaf\xca\x8b\xaf\xc9\x8a\xb0\xc9\x89\xb2\xcd\x89\xb2\xd0\x88\ \xb3\xd0\x85\xaf\xcc\x85\xaa\xc8\x7f\xa4\xc2\x7d\xa6\xc4\x7f\xac\ \xcc\x81\xaf\xcd\x84\xb0\xce\x80\xac\xca\x80\xab\xca\x8a\xb2\xcf\ \x90\xb2\xcf\x89\xa6\xc5\x70\x88\xa6\x35\x4c\x63\x2e\x4c\x60\x69\ \x8d\xa9\x88\xb0\xd3\x89\xb2\xd7\x8a\xb0\xd6\x88\xac\xd1\x87\xac\ \xd2\x85\xae\xd3\x88\xae\xd3\x88\xaf\xd2\x83\xb1\xd3\x81\xb5\xd5\ \x83\xb8\xd7\x89\xb9\xd8\x8b\xb9\xd5\x8c\xbb\xd8\x8c\xb9\xd7\x87\ \xb6\xd4\x87\xb6\xd5\x8a\xb3\xd7\x86\xae\xd2\x80\xad\xce\x85\xb1\ \xd0\x86\xaf\xce\x82\xa8\xc6\x71\x98\xb0\x51\x75\x89\x63\x88\x9e\ \x84\xaa\xc4\x8a\xb6\xcf\x86\xb8\xd3\x81\xb5\xd3\x81\xb4\xd2\x83\ \xb4\xd2\x86\xb7\xd0\x87\xb8\xd0\x8b\xb8\xd3\x87\xb4\xd1\x84\xb0\ \xcd\x80\xaa\xc7\x78\xa1\xc0\x79\xa2\xc2\x7a\xa4\xc5\x7e\xaa\xcb\ \x84\xb2\xd2\x89\xb6\xd4\x8b\xb7\xd6\x8e\xba\xd9\x8f\xba\xd9\x8f\ \xb9\xd7\x8c\xb5\xd4\x86\xb1\xd3\x76\xa6\xc9\x66\x99\xbc\x61\x94\ \xb5\x69\x9b\xb9\x6e\x9f\xbd\x71\xa3\xbf\x73\xa1\xbb\x77\x9d\xb9\ \x82\xa4\xc4\x89\xab\xcb\x8b\xb2\xce\x86\xb2\xcd\x89\xb5\xd0\x90\ \xb6\xd3\x97\xb5\xd8\x8f\xaf\xd3\x82\xae\xcf\x79\xab\xc9\x80\xae\ \xcc\x85\xae\xcf\x8b\xb1\xd2\x91\xb3\xd0\x96\xb5\xce\x96\xb7\xcf\ \x92\xb5\xce\x90\xb2\xcc\x8f\xb1\xcd\x8b\xae\xcc\x88\xaa\xcb\x8c\ \xad\xcc\x93\xb1\xd2\x9c\xb4\xd8\x9b\xb8\xdb\x9a\xb8\xda\x9b\xb9\ \xd9\x9a\xb7\xd7\x95\xb5\xd5\x91\xb6\xd3\x91\xba\xd3\x93\xba\xd4\ \x96\xb8\xd4\x94\xb6\xd4\x8d\xb4\xd1\x8d\xb3\xd1\x8f\xb3\xd5\x94\ \xb5\xdb\x97\xb6\xda\x97\xb5\xd6\x97\xb5\xd0\x96\xb5\xcf\x91\xb3\ \xcf\x8d\xb0\xce\x8c\xad\xcf\x8a\xaa\xce\x8c\xaa\xcf\x8e\xae\xd0\ \x8b\xaf\xcf\x88\xac\xcb\x87\xa9\xc9\x8c\xa9\xcb\x92\xac\xd1\x8d\ \xab\xd1\x00\x00\x00\x88\xb2\xcd\x7a\xa7\xbf\x4e\x78\x8b\x1f\x46\ \x54\x4c\x75\x84\x6e\x9b\xab\x5d\x86\x98\x55\x78\x8e\x60\x85\x9d\ \x70\x99\xb3\x71\x9c\xb7\x60\x8c\xa1\x3c\x66\x77\x29\x50\x5f\x44\ \x69\x7c\x4f\x74\x8a\x37\x5b\x71\x33\x52\x6c\x51\x6e\x8f\x63\x82\ \xa1\x4a\x6e\x84\x31\x57\x67\x41\x67\x78\x59\x81\x94\x73\x9c\xb0\ \x7e\xa3\xbc\x70\x95\xaf\x5a\x84\x9a\x5d\x88\x9d\x73\x9a\xb3\x72\ \x94\xac\x62\x85\x9a\x61\x88\x9f\x6a\x94\xab\x6b\x95\xaa\x6d\x94\ \xa9\x75\x97\xb1\x77\x98\xb4\x71\x95\xb0\x72\x9a\xb4\x76\xa1\xbc\ \x77\xa3\xbc\x72\x9a\xb6\x6f\x97\xb1\x74\x9d\xb4\x81\xa7\xbe\x81\ \x9f\xb7\x6c\x84\x9a\x33\x4b\x5e\x32\x4f\x63\x74\x96\xb4\x92\xb5\ \xd7\x92\xb5\xd8\x8e\xb1\xd3\x85\xaa\xcb\x7f\xa7\xc6\x83\xa9\xc8\ \x86\xa7\xca\x86\xa8\xc7\x82\xa9\xc7\x81\xad\xcb\x84\xb4\xd0\x89\ \xb4\xd0\x8c\xb3\xcf\x8d\xb0\xce\x8c\xad\xcc\x89\xae\xcc\x87\xb0\ \xcc\x8a\xae\xce\x8b\xaf\xd0\x8d\xb3\xd1\x90\xb5\xd2\x90\xb4\xce\ \x8d\xae\xc9\x7f\xa3\xba\x5f\x86\x98\x54\x7e\x91\x80\xaa\xc1\x8d\ \xb7\xd3\x8b\xb8\xd4\x88\xb5\xd2\x86\xb2\xd2\x84\xb1\xd2\x85\xb2\ \xd0\x86\xb4\xcc\x88\xb4\xcd\x8a\xb5\xd1\x87\xb2\xce\x83\xaf\xcc\ \x7f\xac\xcb\x7f\xa9\xc9\x83\xad\xcb\x7f\xaf\xcb\x80\xb0\xcc\x82\ \xb3\xcb\x88\xb5\xcf\x8c\xb4\xd1\x90\xb6\xd2\x8e\xb4\xd0\x87\xb0\ \xcb\x84\xb1\xcd\x7b\xad\xcb\x74\xa9\xc8\x6f\xa5\xc4\x70\xa6\xc4\ \x77\xa9\xc7\x7a\xab\xc9\x7e\xad\xcc\x81\xac\xcc\x88\xab\xce\x8f\ \xaf\xd2\x8e\xb0\xd0\x8a\xb1\xd0\x8b\xb1\xd2\x90\xb3\xd5\x93\xb2\ \xd5\x8c\xae\xcf\x81\xac\xcb\x7e\xad\xcc\x7f\xad\xcc\x81\xae\xcd\ \x86\xad\xcd\x8e\xb1\xcf\x97\xb6\xd0\x95\xb8\xce\x8f\xb5\xcd\x8c\ \xb0\xce\x8d\xaf\xcd\x8b\xad\xca\x86\xa9\xc5\x88\xae\xc9\x8f\xb5\ \xd1\x97\xb5\xd5\x9e\xb7\xdb\x9d\xb9\xda\x9d\xb9\xda\x99\xb5\xd7\ \x94\xb3\xd5\x8f\xb4\xd3\x91\xb7\xd5\x92\xb7\xd5\x97\xba\xd8\x95\ \xb8\xd5\x90\xb4\xd2\x90\xb5\xd3\x92\xb3\xd5\x95\xb4\xd7\x99\xb5\ \xd8\x98\xb4\xd4\x95\xb6\xd0\x93\xb7\xd0\x91\xb6\xd1\x90\xb3\xd1\ \x8d\xaf\xd0\x8b\xae\xcf\x8b\xad\xce\x8d\xaf\xcf\x8a\xae\xcd\x8b\ \xae\xcf\x8a\xac\xce\x8f\xad\xce\x93\xac\xd2\x8e\xa8\xd0\x00\x00\ \x00\x8a\xb0\xcb\x8e\xb9\xd2\x7e\xa7\xbf\x40\x68\x7a\x33\x59\x68\ \x77\xa1\xb2\x87\xb0\xc8\x89\xb0\xcb\x84\xac\xc7\x83\xb0\xcc\x83\ \xb3\xcd\x79\xa8\xbe\x67\x94\xa6\x5b\x87\x98\x6b\x97\xab\x71\x9b\ \xb4\x65\x8e\xa8\x5e\x81\xa0\x6f\x91\xb2\x75\x99\xba\x66\x8f\xa9\ \x52\x7e\x93\x5e\x89\x9d\x71\x9b\xae\x79\xa1\xb6\x79\x9b\xb3\x61\ \x81\x9a\x41\x66\x7c\x45\x6d\x83\x5a\x83\x9e\x4f\x76\x8e\x33\x59\ \x6d\x3d\x65\x7b\x4d\x73\x89\x42\x63\x75\x35\x56\x66\x43\x63\x76\ \x4a\x6c\x83\x40\x66\x7a\x4c\x74\x8a\x61\x8c\xa5\x64\x8c\xa5\x4e\ \x73\x8a\x37\x5e\x70\x51\x7b\x8b\x6e\x95\xa9\x73\x93\xa7\x59\x73\ \x82\x26\x43\x4e\x42\x61\x76\x85\xa6\xc6\x92\xb4\xd8\x8f\xb4\xd5\ \x82\xaa\xc8\x71\x9c\xb7\x67\x8f\xa8\x6a\x8d\xa9\x73\x91\xaf\x71\ \x90\xaa\x68\x88\xa0\x6b\x90\xa7\x75\x9e\xb6\x7d\xa3\xbb\x7d\x9b\ \xb4\x6f\x87\xa2\x69\x81\x9d\x75\x91\xae\x7a\x99\xb4\x7d\x9b\xb6\ \x82\x9e\xba\x88\xa6\xc1\x8a\xab\xc4\x88\xa9\xbe\x80\xa1\xb4\x75\ \x99\xac\x69\x91\xa3\x68\x94\xa8\x82\xae\xc4\x8c\xb8\xcf\x8b\xb6\ \xcf\x87\xaf\xc9\x7e\xa5\xc1\x7e\xa3\xc0\x7f\xa4\xbf\x7d\xa8\xbe\ \x7f\xaa\xc1\x88\xb0\xca\x8c\xb3\xd0\x87\xb1\xcf\x82\xae\xcd\x81\ \xab\xc8\x86\xaf\xc9\x83\xb2\xcb\x7e\xb3\xca\x7f\xb1\xc9\x88\xb2\ \xcb\x8e\xaf\xca\x8f\xae\xc6\x8c\xae\xc5\x87\xae\xc6\x84\xaf\xc8\ \x80\xae\xc9\x80\xae\xcd\x80\xae\xcd\x81\xaf\xcc\x82\xb0\xca\x80\ \xae\xcb\x84\xae\xcc\x86\xac\xcc\x88\xaa\xc9\x8d\xab\xcc\x8b\xab\ \xcc\x88\xab\xcb\x8d\xae\xd0\x8d\xad\xd1\x8e\xad\xd0\x8b\xab\xc9\ \x87\xaa\xc8\x82\xa8\xc7\x7e\xa5\xc1\x7b\xa3\xbd\x81\xa3\xbe\x8d\ \xab\xc7\x96\xb2\xcc\x94\xb5\xcb\x8d\xb2\xc9\x86\xab\xc6\x85\xa9\ \xc5\x87\xa7\xc3\x85\xa6\xbf\x88\xad\xc6\x8e\xb5\xcf\x98\xb9\xd5\ \x9c\xb9\xd6\x99\xb8\xd6\x96\xb9\xd7\x94\xb5\xd5\x92\xb2\xd4\x90\ \xb3\xd5\x92\xb7\xd5\x94\xb9\xd4\x93\xb7\xd2\x92\xb6\xd4\x93\xb4\ \xd5\x93\xb4\xd5\x95\xb3\xd5\x99\xb2\xd6\x9a\xb2\xd5\x9b\xb4\xd7\ \x97\xb6\xd4\x95\xb8\xd4\x93\xb6\xd3\x8f\xb3\xd1\x8e\xb1\xcf\x91\ \xb2\xd2\x8d\xb2\xd1\x8b\xb2\xce\x8b\xaf\xcd\x8d\xb0\xd2\x8d\xb0\ \xd3\x8f\xad\xd0\x93\xab\xd2\x91\xab\xd3\x00\x00\x00\x71\x96\xb2\ \x91\xb9\xd9\x8e\xb7\xd4\x6b\x93\xaa\x2e\x50\x62\x5d\x7e\x92\x8c\ \xb3\xcb\x93\xbd\xd6\x90\xbb\xd6\x8c\xb8\xd5\x8e\xb7\xd5\x8e\xb6\ \xd2\x8a\xb5\xcc\x81\xaf\xc5\x80\xb2\xc8\x83\xb2\xcd\x83\xad\xcc\ \x89\xae\xcf\x8e\xb1\xd1\x91\xb6\xd5\x8c\xb5\xd1\x80\xad\xc7\x82\ \xad\xc6\x87\xb3\xca\x8d\xb6\xcc\x8e\xb3\xc9\x85\xaa\xbf\x77\xa0\ \xb5\x74\xa0\xb8\x75\xa3\xbe\x6a\x99\xb1\x5a\x87\x9d\x61\x8a\xa2\ \x70\x94\xae\x73\x92\xab\x67\x87\x9c\x64\x88\x9f\x67\x8f\xa5\x61\ \x8b\xa0\x62\x8c\xa2\x74\x9d\xb7\x77\x9b\xb7\x59\x7c\x93\x3a\x62\ \x73\x51\x7b\x8b\x73\x99\xac\x80\x9f\xb3\x54\x73\x82\x33\x56\x64\ \x63\x88\x9f\x8a\xb0\xd1\x8e\xb5\xd8\x8a\xb4\xd4\x7f\xac\xc8\x68\ \x93\xaf\x4a\x70\x8a\x58\x79\x93\x61\x7d\x9a\x48\x67\x7b\x33\x56\ \x65\x4c\x72\x82\x6d\x95\xaa\x6e\x91\xa7\x5b\x75\x8d\x3c\x51\x68\ \x4c\x63\x7c\x6a\x83\x9d\x63\x7c\x93\x57\x6e\x84\x53\x6a\x84\x64\ \x7d\x9a\x77\x94\xaf\x72\x94\xa9\x58\x7b\x8c\x46\x68\x78\x60\x86\ \x97\x77\xa2\xb5\x7c\xa8\xbd\x7a\xa6\xb8\x7b\xa4\xb7\x78\x9d\xb7\ \x6b\x8b\xa6\x5b\x78\x8c\x5d\x7a\x8d\x59\x7d\x8e\x59\x80\x92\x72\ \x97\xae\x82\xa6\xc2\x7f\xa5\xc2\x7b\xa3\xc0\x78\xa2\xbb\x82\xaa\ \xc0\x84\xaf\xc5\x7f\xaf\xc6\x7e\xad\xc5\x82\xa8\xc2\x83\xa1\xb8\ \x7c\x96\xaa\x78\x97\xa9\x7c\xa0\xb5\x80\xa7\xbf\x82\xa9\xc2\x83\ \xa8\xc7\x83\xa7\xc7\x83\xa6\xc2\x80\xa7\xbf\x7f\xa7\xbf\x80\xa5\ \xc1\x7c\x9e\xb8\x79\x99\xb1\x7d\x9a\xb5\x80\x9a\xb9\x7e\x97\xb6\ \x82\x9c\xbd\x84\xa0\xc2\x83\xa1\xc1\x7d\x9d\xba\x82\x9d\xbb\x7f\ \x9a\xb8\x71\x8f\xa8\x5e\x7a\x8f\x6a\x83\x98\x81\x9a\xb3\x8d\xa7\ \xc2\x8d\xab\xc5\x82\xa4\xbb\x76\x99\xb1\x73\x95\xac\x79\x98\xaf\ \x78\x97\xac\x85\xa7\xbd\x90\xb2\xcc\x96\xb7\xd2\x9b\xba\xd5\x98\ \xbb\xd7\x94\xb9\xd4\x90\xb5\xcf\x90\xb3\xd1\x93\xb4\xd6\x94\xb5\ \xd5\x97\xb6\xd1\x97\xb7\xd2\x94\xb6\xd3\x96\xb6\xd5\x95\xb4\xd2\ \x97\xb3\xd4\x95\xaf\xd2\x96\xae\xd2\x96\xaf\xd1\x91\xb0\xce\x90\ \xb1\xce\x93\xb2\xcf\x8f\xb0\xcb\x8e\xb1\xce\x8f\xb0\xd0\x8d\xb2\ \xd0\x8b\xb3\xcf\x8b\xb2\xd0\x8b\xb0\xd1\x8b\xae\xd0\x8e\xac\xcf\ \x93\xab\xd1\x8f\xaa\xd1\x00\x00\x00\x50\x76\x94\x80\xaa\xcb\x86\ \xb5\xd6\x7c\xab\xc8\x4c\x71\x88\x35\x54\x68\x7d\xa1\xb6\x90\xba\ \xd1\x89\xb2\xcc\x7b\xa2\xc0\x76\x9a\xb9\x80\xa6\xc5\x87\xb1\xce\ \x84\xb3\xcf\x82\xb3\xd0\x83\xb2\xd1\x82\xab\xca\x85\xa6\xc6\x8a\ \xa8\xc5\x91\xb3\xce\x95\xb9\xd6\x91\xb8\xd3\x8e\xb6\xd3\x8a\xb6\ \xd2\x8d\xb8\xd1\x92\xba\xd2\x90\xb7\xd0\x8e\xb9\xd1\x8a\xb9\xd1\ \x8e\xbb\xd9\x8a\xb9\xd5\x87\xb5\xcf\x84\xad\xc9\x8e\xb2\xd0\x95\ \xb6\xd4\x8f\xb3\xcf\x8c\xb2\xd0\x85\xad\xca\x80\xaa\xc6\x81\xaa\ \xc6\x89\xae\xcb\x8a\xad\xcd\x7f\xa1\xbe\x6b\x93\xaa\x6a\x96\xaa\ \x7e\xa7\xbd\x88\xab\xc2\x6b\x91\xa6\x62\x8c\xa3\x80\xad\xc9\x89\ \xb6\xd3\x88\xb6\xd4\x8c\xb8\xd7\x8b\xb3\xd2\x76\x9e\xb9\x5a\x82\ \x9b\x61\x87\xa0\x6b\x8e\xa9\x51\x75\x8c\x30\x58\x6a\x4d\x78\x8a\ \x70\x9b\xb2\x72\x94\xae\x56\x72\x89\x2e\x48\x5d\x55\x71\x88\x66\ \x83\x9c\x50\x68\x7d\x34\x48\x5d\x4a\x60\x7a\x60\x7c\x9b\x66\x85\ \xa2\x5e\x85\x9e\x42\x6b\x80\x3a\x62\x76\x58\x81\x94\x64\x8e\xa4\ \x5e\x86\x9d\x4e\x75\x86\x56\x7b\x8e\x5d\x81\x9d\x50\x71\x8e\x37\ \x53\x67\x32\x4d\x5e\x35\x55\x65\x34\x56\x67\x4d\x70\x86\x6a\x8b\ \xa6\x69\x8a\xa7\x59\x7e\x98\x58\x7f\x94\x6f\x96\xa9\x7d\xa6\xbb\ \x7e\xaa\xc1\x7d\xa8\xc1\x7b\xa2\xbb\x74\x93\xaa\x54\x70\x80\x4e\ \x6d\x7c\x61\x83\x96\x6e\x92\xa8\x74\x96\xae\x78\x99\xb4\x78\x96\ \xb4\x72\x8f\xa9\x62\x84\x98\x66\x8d\xa2\x71\x96\xad\x62\x82\x97\ \x52\x6f\x83\x5c\x75\x8c\x5d\x72\x8c\x59\x6c\x86\x67\x7b\x98\x6f\ \x85\xa4\x69\x80\x9e\x63\x7a\x96\x6a\x81\x9c\x6f\x85\x9f\x60\x77\ \x8c\x38\x4e\x5f\x3e\x55\x65\x67\x81\x95\x7c\x99\xb3\x82\x9f\xbc\ \x75\x93\xae\x5b\x7b\x90\x57\x75\x89\x62\x81\x94\x61\x83\x95\x77\ \x97\xac\x8e\xaa\xc6\x99\xb4\xd2\x9d\xb9\xd8\x9a\xba\xd8\x92\xb7\ \xd2\x91\xb6\xd2\x91\xb6\xd4\x92\xb4\xd6\x94\xb6\xd6\x97\xb7\xd2\ \x99\xb8\xd2\x98\xb8\xd3\x95\xb8\xd2\x91\xb6\xd0\x92\xb4\xd2\x93\ \xb2\xd3\x97\xb0\xd4\x94\xae\xd0\x8e\xac\xc9\x8b\xac\xc8\x8e\xae\ \xca\x8e\xaf\xca\x8c\xae\xcd\x8b\xad\xcf\x8c\xb0\xce\x8c\xb3\xcf\ \x87\xaf\xce\x88\xac\xce\x89\xac\xce\x8c\xac\xcf\x8e\xaa\xd0\x8a\ \xa9\xd0\x00\x00\x00\x4b\x72\x93\x5f\x8d\xae\x7a\xad\xce\x7b\xaf\ \xcf\x64\x8e\xa9\x2a\x4a\x5f\x5a\x7c\x8f\x88\xb1\xc8\x80\xa9\xc4\ \x57\x80\x9e\x40\x6a\x88\x68\x94\xb4\x7f\xad\xcd\x82\xb0\xd0\x83\ \xb2\xd1\x87\xb2\xd1\x7e\xa2\xc2\x6a\x86\xa5\x5d\x78\x94\x62\x81\ \x9d\x6e\x8f\xab\x75\x97\xb2\x7c\xa1\xbf\x80\xa9\xc8\x86\xb2\xd0\ \x88\xb2\xce\x89\xb3\xcb\x89\xb4\xcc\x90\xbb\xd4\x98\xbe\xdc\x99\ \xbe\xdc\x96\xbd\xd8\x94\xbb\xd7\x99\xbd\xdb\xa0\xc3\xe0\x9c\xc1\ \xde\x96\xbd\xdb\x91\xb8\xd6\x91\xb7\xd6\x92\xb7\xd7\x95\xb8\xd9\ \x91\xb4\xd6\x8f\xb2\xd4\x8d\xb2\xd1\x8c\xb4\xd0\x91\xb8\xd3\x92\ \xb7\xd2\x88\xb1\xcb\x83\xb0\xd0\x89\xb8\xd7\x8d\xb9\xd5\x8e\xb9\ \xd4\x94\xbc\xd8\x95\xba\xd7\x8a\xb0\xcb\x76\xa2\xba\x6b\x98\xb2\ \x69\x94\xb1\x67\x93\xb0\x5e\x8c\xa6\x5e\x8c\xa6\x6f\x98\xb6\x74\ \x97\xb5\x5b\x7b\x93\x2f\x4e\x61\x5e\x7e\x96\x75\x93\xad\x4a\x63\ \x79\x30\x46\x5a\x60\x7a\x94\x68\x87\xa4\x5c\x7e\x99\x5d\x85\xa1\ \x5a\x88\xa5\x5d\x8a\xa7\x6c\x97\xaf\x70\x97\xb1\x66\x8c\xa6\x55\ \x7a\x90\x5d\x81\x98\x64\x87\xa7\x5b\x7f\xa0\x47\x6b\x85\x4a\x6b\ \x81\x5a\x7b\x92\x5a\x7d\x94\x5b\x81\x99\x5b\x80\x9c\x50\x74\x92\ \x3a\x5b\x76\x3b\x5b\x72\x60\x84\x9a\x7b\xa1\xbb\x80\xa7\xc3\x7e\ \xa4\xc0\x7f\xa2\xbf\x71\x91\xab\x4b\x6b\x7c\x35\x55\x63\x58\x78\ \x88\x5e\x7e\x90\x53\x73\x86\x58\x78\x8a\x5c\x7c\x90\x4c\x6c\x7f\ \x3b\x5f\x71\x56\x7c\x93\x66\x8b\xa4\x56\x77\x8d\x42\x5f\x74\x57\ \x6f\x87\x5c\x6f\x88\x51\x63\x7a\x5e\x70\x8b\x6b\x7b\x9b\x5b\x6b\ \x89\x3c\x51\x6a\x56\x6d\x84\x67\x7f\x95\x5a\x71\x84\x2e\x41\x50\ \x20\x37\x44\x45\x61\x72\x65\x85\x9d\x6f\x91\xaf\x6a\x8a\xa9\x5b\ \x79\x92\x50\x6d\x85\x59\x79\x91\x5f\x84\x9a\x70\x91\xa9\x8c\xa7\ \xc4\x96\xb1\xce\x99\xb6\xd4\x98\xb7\xd4\x95\xb8\xd4\x92\xb6\xd4\ \x91\xb5\xd5\x92\xb5\xd7\x91\xb6\xd5\x95\xb7\xd2\x98\xba\xd3\x98\ \xba\xd4\x93\xb7\xd1\x93\xb9\xd3\x92\xb6\xd3\x95\xb4\xd4\x96\xaf\ \xd3\x95\xac\xcf\x90\xab\xc9\x8c\xad\xc8\x8b\xae\xc9\x8d\xae\xcb\ \x8e\xad\xcd\x8d\xac\xcc\x90\xaf\xcd\x8d\xaf\xcc\x88\xad\xcd\x89\ \xab\xd0\x8a\xaa\xd0\x89\xaa\xce\x87\xa9\xcd\x85\xa7\xce\x00\x00\ \x00\x66\x8f\xb1\x49\x75\x96\x6c\x9a\xbe\x78\xa9\xcb\x6d\x96\xb5\ \x3b\x5c\x72\x42\x61\x75\x80\xa6\xbe\x7f\xaa\xc7\x70\x9d\xbc\x65\ \x97\xb5\x71\xa4\xc3\x7d\xac\xcc\x83\xaf\xd0\x85\xb1\xd3\x87\xb0\ \xd3\x87\xac\xcc\x83\xa1\xc1\x7d\x9c\xbb\x79\x9b\xba\x78\x9d\xb8\ \x78\x9d\xb7\x7d\xa3\xc0\x82\xa9\xca\x88\xae\xd0\x84\xab\xcb\x7c\ \xa8\xc2\x7d\xad\xc5\x8a\xb4\xce\x95\xb8\xd6\x90\xaf\xcb\x86\xa6\ \xbe\x7e\x9f\xb6\x86\xa8\xc0\x96\xb7\xd2\x99\xbf\xd9\x94\xbf\xd8\ \x91\xbd\xd6\x91\xbd\xd6\x96\xbf\xdc\x97\xbd\xdd\x92\xb8\xdb\x94\ \xb8\xdb\x92\xb8\xd8\x92\xbb\xdb\x96\xbc\xdb\x94\xbc\xd8\x91\xba\ \xd7\x8e\xba\xda\x8e\xb9\xd9\x93\xba\xd7\x96\xba\xd8\x9a\xbb\xdc\ \x97\xbb\xda\x8f\xb6\xd5\x88\xb5\xd2\x84\xb2\xcf\x81\xb0\xcd\x82\ \xb0\xd0\x83\xb2\xd0\x82\xac\xcb\x86\xac\xcc\x81\xa5\xc2\x6f\x91\ \xa8\x41\x63\x74\x59\x79\x8d\x7d\x99\xb5\x59\x71\x8c\x2f\x46\x5b\ \x61\x7c\x90\x69\x88\x9f\x54\x76\x8c\x64\x89\xa5\x78\xa4\xc2\x83\ \xad\xcc\x8a\xb0\xcd\x8b\xb0\xcc\x85\xad\xc7\x80\xa6\xc0\x81\xa7\ \xc3\x82\xa7\xc8\x7c\xa4\xc5\x75\x9e\xbc\x79\xa0\xbe\x82\xa6\xc4\ \x84\xa9\xc4\x7c\xa5\xbf\x73\x9c\xba\x63\x8a\xaa\x53\x77\x97\x59\ \x79\x98\x74\x94\xb1\x83\xa6\xc4\x89\xab\xcb\x88\xa9\xc7\x89\xaa\ \xc4\x80\x9f\xb8\x63\x83\x97\x42\x64\x74\x4b\x6c\x7b\x52\x70\x80\ \x34\x55\x5e\x29\x4b\x54\x2f\x52\x5e\x38\x5c\x6e\x54\x79\x92\x6e\ \x93\xaf\x72\x97\xb2\x68\x8a\xa6\x5d\x7c\x95\x63\x7e\x99\x6f\x88\ \xa4\x6e\x87\xa0\x70\x87\xa1\x76\x8a\xa9\x70\x87\xa2\x55\x72\x88\ \x58\x77\x8d\x66\x83\x9c\x68\x80\x98\x3b\x4d\x5f\x18\x2c\x3b\x30\ \x4a\x5b\x49\x69\x7f\x62\x83\xa1\x6c\x8c\xac\x66\x88\xa4\x5f\x83\ \x9f\x63\x85\xa5\x6c\x8f\xb0\x7a\x9a\xb9\x89\xa5\xc4\x91\xae\xce\ \x95\xb3\xd0\x95\xb7\xd3\x94\xb8\xd4\x94\xb7\xd4\x93\xb7\xd3\x94\ \xb6\xd3\x94\xb5\xd0\x96\xb7\xd1\x97\xb9\xd3\x99\xba\xd4\x9b\xba\ \xd5\x95\xb8\xd4\x91\xb5\xd2\x94\xb1\xd1\x95\xad\xd1\x95\xac\xcf\ \x95\xae\xd0\x8f\xad\xce\x8d\xb0\xce\x90\xb0\xcd\x8e\xae\xcb\x89\ \xaa\xc7\x8a\xac\xc8\x8c\xab\xca\x8d\xac\xce\x8b\xa9\xd0\x8b\xa8\ \xcf\x8b\xaa\xce\x88\xaa\xcd\x88\xa9\xcf\x00\x00\x00\x7e\xa7\xc9\ \x5f\x88\xac\x56\x7d\xa3\x72\x99\xbf\x71\x94\xb4\x46\x68\x7d\x35\ \x56\x67\x78\x9f\xb6\x89\xb3\xd0\x88\xb5\xd4\x85\xb5\xd5\x82\xb3\ \xd3\x82\xb1\xd0\x83\xb0\xcf\x82\xb0\xd1\x85\xb2\xd4\x87\xb2\xd2\ \x8a\xb2\xd2\x89\xb2\xd2\x89\xb2\xd2\x8a\xb3\xcf\x8c\xb4\xd0\x8e\ \xb7\xd4\x94\xba\xda\x94\xb8\xd7\x8a\xaf\xcc\x81\xaa\xc3\x82\xae\ \xc6\x8b\xb5\xd0\x92\xb5\xd3\x7f\x9e\xb8\x53\x73\x88\x37\x5b\x6c\ \x4e\x73\x85\x77\x9a\xaf\x8a\xaf\xc9\x90\xba\xd3\x8f\xbd\xd6\x91\ \xc0\xdb\x92\xbf\xdb\x93\xbc\xdc\x94\xba\xdd\x96\xba\xdd\x92\xba\ \xda\x8f\xbd\xdb\x92\xbc\xd9\x94\xba\xd9\x98\xbe\xde\x93\xbc\xdc\ \x96\xbc\xdb\x9b\xbc\xd9\x9d\xbc\xdb\x99\xb9\xdc\x94\xba\xda\x91\ \xb9\xdb\x8e\xb9\xda\x90\xbc\xd9\x8f\xba\xda\x90\xbc\xdd\x90\xbc\ \xdb\x92\xba\xd7\x96\xb9\xd8\x8e\xb0\xd1\x7e\xa2\xbb\x5d\x80\x91\ \x4c\x69\x7d\x73\x8e\xac\x5c\x74\x92\x2b\x46\x5c\x4d\x6a\x7d\x61\ \x83\x98\x56\x7b\x90\x78\x9f\xb9\x8e\xb5\xd2\x97\xbb\xd8\x99\xb9\ \xd8\x96\xb9\xd6\x90\xba\xd2\x8d\xb7\xd0\x8a\xb4\xd0\x8a\xb4\xd2\ \x89\xb4\xd2\x86\xb2\xd2\x89\xb3\xd4\x8b\xb5\xd3\x89\xb3\xcf\x89\ \xb0\xcf\x84\xac\xcd\x7b\xa4\xc4\x74\x9e\xbf\x7a\xa0\xc1\x83\xa7\ \xc6\x8c\xb0\xcc\x8f\xb2\xce\x94\xb4\xd1\x94\xb4\xcc\x8d\xaf\xc5\ \x80\xa2\xba\x67\x8a\x9f\x50\x71\x82\x3d\x5a\x67\x23\x43\x49\x25\ \x49\x50\x37\x5e\x6b\x60\x89\x9f\x79\x9f\xbd\x7f\xa2\xc1\x81\xa3\ \xc1\x7c\x9e\xbd\x7c\x9b\xbb\x7a\x99\xb6\x7c\x9c\xb8\x7e\xa0\xba\ \x82\xa3\xbc\x85\xa3\xc0\x80\xa2\xbc\x72\x99\xb0\x6e\x95\xad\x73\ \x95\xaf\x71\x8c\xa7\x4b\x60\x78\x1a\x2f\x45\x2d\x46\x5d\x41\x61\ \x7b\x53\x75\x93\x65\x8a\xa8\x67\x8e\xaa\x68\x90\xaf\x68\x8e\xb1\ \x71\x91\xb9\x77\x99\xbd\x85\xa3\xc6\x8e\xac\xce\x95\xb4\xd1\x94\ \xb7\xd3\x92\xb9\xd6\x8f\xb5\xd2\x92\xb5\xcf\x97\xb5\xcf\x97\xb4\ \xcf\x96\xb5\xd0\x94\xb7\xd2\x99\xb8\xd4\x9a\xb8\xd6\x98\xb7\xd4\ \x96\xb4\xd3\x97\xb3\xd4\x97\xb0\xd3\x95\xaf\xd2\x94\xb2\xd0\x90\ \xb0\xce\x8c\xb1\xcc\x8e\xaf\xcc\x89\xac\xc7\x86\xab\xc5\x86\xab\ \xc8\x88\xa9\xc9\x8c\xaa\xcd\x89\xa8\xce\x89\xa9\xd0\x89\xaa\xcf\ \x8a\xaa\xcd\x89\xa9\xcd\x00\x00\x00\x8a\xb5\xd5\x81\xa7\xcb\x73\ \x97\xbd\x66\x8a\xab\x66\x89\xa4\x48\x6f\x81\x39\x60\x6e\x7b\xa2\ \xb9\x96\xbc\xd7\x94\xbd\xdc\x8c\xb8\xd9\x8a\xb6\xd6\x8b\xb4\xd2\ \x86\xb2\xd2\x82\xb1\xd0\x83\xb5\xd3\x86\xb8\xd5\x85\xb7\xd5\x88\ \xb7\xd6\x8a\xb7\xd6\x8d\xbb\xd7\x91\xbd\xda\x92\xbe\xdb\x96\xbe\ \xd9\x92\xb6\xd2\x80\xa1\xba\x67\x8a\xa2\x7b\x9e\xba\x8a\xb0\xcf\ \x8e\xb2\xd1\x7a\x9a\xb7\x47\x6c\x84\x3d\x67\x7b\x60\x8a\x9f\x64\ \x87\x9e\x6c\x8e\xa7\x88\xaf\xc8\x8b\xbb\xd3\x8f\xbf\xd9\x91\xbd\ \xdc\x90\xbb\xdc\x93\xb9\xdc\x95\xb8\xdb\x93\xb9\xd9\x92\xba\xda\ \x95\xbc\xdc\x97\xbb\xdb\x99\xbc\xdd\x99\xbf\xdf\x98\xbf\xde\x9a\ \xbd\xda\x99\xbc\xda\x98\xba\xda\x94\xb9\xd9\x92\xb9\xd9\x91\xbc\ \xdc\x93\xbc\xdb\x94\xbc\xdb\x97\xbd\xde\x98\xbc\xde\x95\xba\xd8\ \x96\xba\xd8\x92\xb9\xd9\x8b\xb2\xce\x7a\x9d\xb3\x5f\x7c\x92\x64\ \x7f\x9b\x54\x70\x8e\x31\x54\x6c\x47\x6f\x84\x5e\x88\x9f\x6e\x9a\ \xb4\x8b\xb6\xd1\x95\xbb\xd8\x9c\xbd\xd7\x9f\xbc\xdb\x9a\xba\xdb\ \x93\xb9\xd7\x8c\xb7\xd3\x8a\xb8\xd7\x89\xb6\xd4\x88\xb4\xd1\x85\ \xb5\xd2\x88\xb7\xd7\x87\xb8\xd7\x8a\xb7\xd6\x8d\xb4\xd7\x8b\xae\ \xd2\x87\xae\xce\x81\xad\xcc\x85\xb0\xcf\x87\xb1\xcf\x8b\xb5\xcf\ \x8e\xb6\xd1\x91\xb6\xd0\x93\xb7\xce\x91\xb4\xca\x8d\xaf\xca\x7d\ \xa0\xbb\x5e\x7e\x92\x35\x53\x5e\x39\x59\x61\x51\x72\x7f\x46\x6a\ \x7b\x68\x8e\xa8\x7a\xa0\xbf\x82\xa7\xc6\x7f\xa3\xc3\x82\xa2\xc5\ \x7f\xa2\xc1\x7e\xa2\xc0\x80\xa4\xc1\x85\xaa\xc5\x88\xad\xc7\x8a\ \xaf\xc9\x88\xb0\xc9\x82\xab\xc5\x7e\xa9\xc2\x7f\xa6\xc1\x7a\x99\ \xb6\x5a\x70\x8d\x26\x3b\x57\x3f\x5a\x77\x4a\x69\x8a\x50\x72\x94\ \x55\x7c\x9c\x61\x8a\xa7\x6a\x93\xb1\x75\x97\xbc\x78\x99\xc0\x7a\ \x9b\xc1\x80\xa1\xc3\x8a\xad\xcd\x92\xb3\xcf\x93\xb6\xd0\x94\xb7\ \xd4\x91\xb5\xd4\x95\xb5\xd3\x96\xb3\xd1\x95\xb3\xd0\x93\xb2\xd0\ \x95\xb5\xd4\x9a\xb7\xd6\x9a\xb7\xd7\x99\xb6\xd5\x98\xb5\xd4\x97\ \xb4\xd5\x97\xb4\xd4\x94\xb4\xd2\x93\xb3\xd0\x8f\xb1\xcb\x8c\xb1\ \xcb\x8a\xaf\xc9\x89\xac\xc6\x89\xad\xc8\x87\xab\xca\x89\xad\xcd\ \x8c\xac\xcf\x88\xab\xcd\x89\xac\xce\x8b\xac\xcf\x89\xaa\xcb\x89\ \xaa\xcb\x00\x00\x00\x97\xbc\xdc\x92\xb7\xd7\x8d\xb0\xd2\x88\xab\ \xca\x79\xa0\xba\x62\x8e\xa2\x68\x95\xa6\x92\xb9\xd0\x9d\xc2\xdd\ \x96\xbe\xd9\x91\xb7\xd5\x90\xb5\xd4\x90\xb5\xd4\x8e\xb7\xd7\x89\ \xb8\xd7\x87\xba\xd7\x88\xbe\xd9\x8b\xbd\xd9\x8f\xbc\xdb\x91\xbd\ \xdb\x8f\xbd\xdc\x95\xc0\xdf\x99\xc2\xe0\x9a\xc1\xdb\x92\xb5\xcd\ \x7b\x9a\xaf\x4d\x6b\x80\x60\x7f\x99\x89\xac\xca\x92\xb6\xd6\x89\ \xb1\xcd\x73\x9f\xb9\x70\x9c\xb7\x7d\xa5\xc1\x65\x86\xa2\x50\x6e\ \x86\x77\x9a\xb2\x8b\xb6\xcf\x92\xbd\xd8\x93\xba\xd8\x92\xb9\xd9\ \x92\xb8\xdb\x92\xb7\xda\x8f\xb4\xd6\x91\xb7\xd8\x95\xb8\xda\x98\ \xb8\xdb\x93\xb7\xd9\x8f\xba\xda\x8e\xbd\xdb\x91\xbe\xd9\x8f\xbb\ \xd4\x91\xba\xd9\x91\xb8\xd7\x91\xb9\xd5\x91\xb9\xd7\x92\xb7\xd8\ \x95\xb8\xd8\x9b\xbb\xde\x99\xb9\xdd\x94\xb8\xda\x8f\xb7\xd7\x8d\ \xb9\xda\x8b\xb7\xd5\x8b\xb0\xcb\x7f\x9e\xb9\x6e\x8e\xab\x5a\x80\ \x9b\x58\x85\x9d\x6a\x97\xb2\x7a\xa9\xc4\x85\xb5\xd2\x8a\xba\xd4\ \x91\xba\xd4\x95\xba\xd4\x98\xb9\xd7\x95\xb5\xd9\x93\xb6\xd7\x89\ \xb6\xd4\x86\xb5\xd5\x87\xb6\xd5\x89\xb9\xd4\x86\xb5\xd0\x89\xb8\ \xd7\x84\xb6\xd5\x87\xb7\xd7\x8f\xb8\xdd\x93\xb6\xdb\x8e\xb2\xd2\ \x89\xb3\xd1\x89\xb4\xd0\x8c\xb7\xd2\x8e\xb8\xd3\x90\xba\xd2\x8e\ \xb7\xd0\x90\xb5\xcf\x91\xb3\xd0\x8c\xb0\xcd\x81\xa5\xc2\x63\x87\ \x9b\x33\x56\x60\x4d\x6d\x78\x69\x89\x99\x48\x6a\x7d\x60\x85\x9d\ \x7a\xa1\xc0\x80\xa6\xc6\x80\xa3\xc5\x82\xa3\xc4\x7e\xa4\xc4\x7c\ \xa3\xc2\x80\xa5\xc4\x87\xab\xc8\x8c\xac\xc9\x8e\xb1\xcb\x8c\xb2\ \xcd\x89\xb0\xcc\x85\xae\xca\x81\xa8\xc7\x7d\x9c\xbd\x64\x7b\x99\ \x2b\x42\x5f\x4f\x6c\x8a\x55\x76\x94\x50\x71\x8e\x5c\x80\x9e\x5b\ \x80\x9e\x68\x8d\xaa\x78\x9d\xbb\x82\xa6\xc5\x84\xa4\xc7\x88\xa9\ \xca\x88\xac\xc9\x8e\xb3\xcc\x92\xb8\xd0\x92\xb5\xd3\x92\xb2\xd4\ \x94\xb4\xd6\x96\xb4\xd5\x98\xb5\xd5\x94\xb3\xd4\x93\xb2\xd5\x9a\ \xb5\xd7\x9d\xb5\xd7\x98\xb4\xd3\x97\xb4\xd4\x97\xb3\xd5\x99\xb3\ \xd5\x98\xb3\xd3\x95\xb3\xce\x91\xb2\xcf\x8e\xb3\xce\x8b\xb0\xca\ \x8d\xaf\xcb\x8c\xac\xcd\x8b\xac\xcf\x8a\xac\xce\x8d\xad\xd0\x8d\ \xad\xd0\x8d\xad\xcf\x8d\xaa\xc9\x89\xa9\xc7\x86\xa9\xc6\x00\x00\ \x00\x97\xb5\xd1\x8b\xab\xc8\x8f\xb0\xcf\x98\xba\xda\x99\xbf\xdd\ \x92\xbb\xd6\x93\xbf\xd8\x9c\xc5\xdd\x9a\xc2\xd9\x96\xbd\xd4\x91\ \xb7\xd1\x92\xb6\xd2\x96\xb9\xd7\x94\xbb\xdc\x8f\xbd\xdb\x8e\xbf\ \xda\x8f\xc0\xda\x92\xbf\xdd\x96\xbe\xde\x96\xbd\xdd\x93\xbf\xdb\ \x99\xc1\xdf\x9e\xc3\xe0\xa0\xc3\xde\x9b\xbb\xd4\x87\xa5\xbc\x55\ \x74\x89\x41\x61\x78\x82\xa2\xbd\x95\xba\xd6\x92\xbd\xd6\x8e\xba\ \xd7\x8f\xb9\xd8\x89\xae\xce\x70\x8d\xac\x4f\x6b\x84\x6f\x90\xa7\ \x8f\xb6\xcf\x97\xbf\xd8\x94\xbb\xd5\x94\xba\xd9\x94\xbc\xde\x92\ \xba\xdb\x8e\xb5\xd5\x8e\xb4\xd4\x95\xb7\xd9\x95\xb7\xda\x90\xb7\ \xd8\x8a\xb9\xd7\x8b\xbd\xda\x8f\xc0\xd9\x8f\xbf\xd7\x8d\xbb\xd8\ \x8c\xb7\xd5\x90\xba\xd6\x90\xb9\xd9\x91\xb6\xda\x94\xb7\xda\x99\ \xb8\xdc\x9a\xb8\xdc\x92\xb7\xd9\x88\xb6\xd6\x89\xb8\xd8\x8a\xb9\ \xd7\x8e\xb5\xd3\x8a\xaf\xcc\x83\xa9\xc5\x78\xa4\xbf\x77\xa6\xc3\ \x82\xae\xcd\x87\xb3\xd2\x87\xb7\xd3\x86\xb8\xd0\x8c\xb9\xd1\x8d\ \xb8\xd0\x8d\xb4\xd0\x8f\xb1\xd4\x90\xb0\xd4\x8b\xb2\xd2\x88\xb4\ \xd4\x87\xb5\xd6\x85\xb4\xd3\x89\xb6\xd5\x89\xb6\xd5\x84\xb2\xd2\ \x85\xb5\xd5\x8c\xb7\xdb\x91\xb6\xdb\x90\xb2\xd5\x8c\xb3\xd1\x89\ \xb4\xcf\x8b\xb5\xd2\x90\xb6\xd5\x92\xb7\xd4\x90\xb8\xd1\x8d\xb6\ \xcf\x8f\xb4\xd0\x8d\xb1\xcf\x86\xac\xca\x6e\x95\xac\x44\x67\x76\ \x44\x64\x72\x68\x85\x97\x47\x67\x7b\x59\x7c\x95\x7b\xa0\xc0\x84\ \xa7\xc9\x82\xa5\xc6\x7f\xa3\xc2\x79\xa1\xc1\x75\xa1\xc1\x7c\xa3\ \xc5\x86\xab\xc9\x89\xac\xc7\x8c\xaf\xca\x8b\xb0\xcd\x88\xb0\xcc\ \x88\xaf\xcd\x85\xa8\xc9\x7d\x9a\xbf\x65\x7e\x9f\x2e\x49\x64\x4f\ \x6f\x89\x5f\x81\x9a\x45\x66\x7d\x64\x86\xa0\x62\x86\xa4\x68\x8d\ \xa9\x79\xa3\xbc\x87\xae\xc8\x8f\xae\xcb\x90\xad\xcd\x8f\xb1\xcd\ \x8d\xb3\xca\x8f\xb5\xca\x8e\xb3\xcc\x8d\xb1\xcd\x8e\xb4\xd0\x91\ \xb6\xd1\x94\xb7\xd2\x91\xb3\xd1\x92\xb4\xd7\x9a\xb4\xd8\x9d\xb5\ \xd7\x99\xb4\xd6\x96\xb3\xd4\x95\xb3\xd4\x99\xb3\xd5\x97\xb1\xd2\ \x95\xb2\xcf\x92\xb2\xd0\x90\xb1\xd1\x8f\xb1\xd1\x90\xb1\xd0\x8f\ \xae\xd0\x8d\xac\xcf\x8b\xac\xcf\x8b\xab\xce\x8b\xac\xcd\x8c\xac\ \xcb\x8c\xaa\xc5\x89\xaa\xc4\x86\xa8\xc6\x00\x00\x00\x62\x80\x96\ \x58\x77\x90\x81\xa3\xc0\x9a\xbd\xde\xa3\xc7\xe9\xa4\xc8\xea\xa1\ \xc5\xe5\x98\xbb\xd6\x92\xb4\xcd\x8e\xb0\xcb\x8e\xb2\xd0\x8f\xb7\ \xd6\x95\xbc\xdb\x91\xb8\xda\x90\xba\xd9\x8d\xb9\xd5\x91\xbc\xd8\ \x95\xbc\xd9\x96\xbb\xd6\x93\xb9\xd2\x93\xbc\xd4\x9a\xc0\xd9\x9b\ \xc0\xd8\x9b\xbc\xd5\x9c\xbb\xd6\x93\xb3\xcd\x73\x93\xad\x40\x5f\ \x78\x62\x82\x9a\x90\xb2\xcb\x96\xbc\xd6\x96\xbd\xd8\x99\xbc\xd9\ \x95\xb6\xd3\x84\xa3\xbe\x73\x91\xa9\x85\xa5\xbc\x9a\xbe\xd7\x9c\ \xc1\xdb\x98\xbf\xd8\x95\xbc\xd9\x95\xbd\xde\x96\xbd\xdc\x93\xb9\ \xd5\x92\xb7\xd4\x97\xb9\xd9\x9d\xbc\xdd\x96\xba\xd8\x91\xbc\xd8\ \x92\xbf\xda\x95\xc1\xda\x94\xc0\xd8\x8f\xbe\xd7\x91\xbd\xd9\x91\ \xbb\xd7\x91\xb9\xda\x93\xb9\xdb\x95\xb9\xd9\x96\xb8\xd8\x96\xb7\ \xd7\x91\xb9\xd6\x8b\xb9\xd6\x8a\xb8\xd6\x8c\xb9\xd7\x8a\xb5\xd2\ \x8a\xb2\xd1\x88\xb2\xce\x85\xb3\xce\x85\xb2\xd0\x8a\xb3\xd3\x89\ \xb4\xd4\x85\xb4\xd3\x84\xb3\xcf\x84\xb1\xcc\x85\xb3\xcd\x87\xb2\ \xcf\x8b\xaf\xd1\x8d\xae\xd2\x8c\xb0\xd2\x8c\xb3\xd4\x88\xb2\xd3\ \x87\xb3\xd2\x87\xb0\xcf\x88\xaf\xcf\x85\xb0\xcf\x86\xb2\xd1\x8b\ \xb4\xd6\x8e\xb3\xd6\x8c\xb0\xd2\x8a\xb1\xcf\x87\xb0\xd0\x89\xb2\ \xd2\x8d\xb2\xd4\x91\xb6\xd4\x90\xb8\xd2\x8c\xb9\xce\x8b\xb6\xcd\ \x8a\xb4\xcd\x84\xad\xc8\x7b\xa1\xb9\x61\x82\x96\x3f\x5c\x6d\x50\ \x6a\x7d\x43\x5e\x74\x63\x80\x9e\x82\xa2\xc6\x86\xa8\xcb\x82\xa6\ \xc6\x7b\xa4\xc0\x74\x9f\xbd\x76\x9f\xc0\x80\xa6\xc7\x86\xab\xc9\ \x8c\xaf\xcd\x8e\xae\xcc\x8d\xae\xca\x8a\xaf\xc9\x86\xac\xc8\x85\ \xa5\xc7\x7f\x9a\xbd\x67\x80\x9f\x37\x50\x68\x49\x66\x7c\x65\x85\ \x9d\x42\x63\x7a\x6d\x90\xa8\x75\x99\xb6\x78\x9f\xbb\x83\xad\xc5\ \x8d\xb3\xcd\x93\xb0\xcf\x96\xaf\xd0\x95\xb1\xcf\x95\xb3\xce\x92\ \xb1\xcb\x8e\xb2\xc9\x8d\xb4\xcc\x8a\xb4\xcc\x8e\xb5\xce\x94\xb5\ \xd0\x95\xb4\xd2\x93\xb4\xd4\x98\xb5\xd7\x98\xb3\xd4\x97\xb3\xd1\ \x93\xb3\xcf\x91\xb5\xd1\x91\xb3\xd3\x91\xb2\xd2\x94\xb3\xd0\x95\ \xb2\xd0\x94\xb0\xd1\x91\xaf\xce\x8e\xb0\xcf\x8d\xad\xd0\x8f\xac\ \xcf\x8d\xab\xcf\x8b\xab\xce\x8a\xab\xcc\x8b\xab\xcb\x8a\xaa\xc5\ \x8b\xad\xc7\x84\xa8\xc5\x00\x00\x00\x3e\x63\x76\x44\x6a\x7e\x81\ \xa9\xc2\x96\xc0\xdc\x9e\xc8\xe6\x9f\xc4\xe6\x95\xb5\xd5\x7c\x99\ \xb4\x6d\x8a\xa5\x77\x94\xb5\x82\xa5\xc8\x88\xad\xcf\x8b\xb0\xd1\ \x88\xad\xcf\x80\xa5\xc5\x7d\xa3\xbf\x87\xac\xc7\x8e\xb0\xcb\x84\ \xa6\xbc\x75\x98\xaa\x7b\xa0\xb4\x86\xad\xc2\x84\xa7\xbc\x78\x98\ \xae\x80\xa1\xba\x8c\xaf\xca\x84\xa7\xc3\x59\x79\x93\x41\x60\x78\ \x77\x97\xaf\x8e\xb0\xcb\x8d\xad\xc8\x84\xa0\xb8\x82\x9f\xb6\x8f\ \xb0\xc7\x90\xb2\xcb\x96\xb7\xd1\x99\xbc\xd6\x98\xbc\xd5\x98\xbd\ \xd7\x9b\xbc\xd8\x97\xb8\xd5\x94\xb6\xd1\x95\xb8\xd1\x96\xb9\xd4\ \x99\xb8\xd6\x9d\xb9\xd8\x9c\xb9\xd7\x9b\xbd\xd9\x9b\xc0\xda\x9a\ \xbf\xd9\x98\xbe\xd7\x92\xbd\xd6\x93\xbe\xd6\x94\xbc\xd6\x94\xb9\ \xd5\x94\xb8\xd5\x97\xb8\xd4\x99\xb9\xd5\x98\xba\xd6\x95\xbb\xd7\ \x93\xba\xd7\x93\xb9\xd6\x8f\xb9\xd5\x8c\xb8\xd4\x8b\xb4\xd3\x8c\ \xb5\xd2\x8a\xb5\xd1\x8a\xb4\xd3\x8a\xb2\xd3\x89\xb2\xd3\x87\xb1\ \xd1\x83\xad\xca\x84\xb0\xcc\x81\xaf\xcb\x85\xb0\xd0\x88\xae\xd0\ \x8a\xae\xcf\x8c\xb0\xd2\x8a\xae\xd0\x89\xb0\xd1\x8b\xb3\xd4\x8b\ \xb0\xd0\x88\xae\xcf\x88\xb0\xd0\x8a\xb2\xd3\x8b\xb0\xd2\x89\xaf\ \xd1\x86\xad\xcf\x85\xaf\xcf\x88\xb2\xd2\x86\xae\xd0\x89\xaf\xd4\ \x8c\xb3\xd3\x8d\xb6\xce\x8a\xb7\xcc\x87\xb4\xcd\x83\xb0\xcc\x84\ \xad\xc9\x7f\xa4\xc0\x73\x93\xae\x57\x77\x8f\x46\x64\x7b\x4a\x68\ \x81\x77\x95\xb5\x87\xa7\xcc\x84\xa6\xc8\x82\xa8\xc5\x7b\xa7\xc1\ \x77\xa3\xc0\x7c\xa1\xc3\x83\xa6\xc8\x8c\xac\xce\x8f\xad\xcc\x8f\ \xac\xc9\x90\xac\xc7\x8b\xac\xc6\x89\xab\xc6\x87\xa5\xc4\x7f\x9a\ \xb9\x6a\x85\x9c\x3f\x56\x68\x3f\x57\x6b\x61\x7e\x94\x44\x65\x7a\ \x6f\x94\xaa\x7e\xa3\xbe\x87\xac\xc8\x8d\xb3\xcc\x94\xb6\xd1\x98\ \xb3\xd3\x99\xb2\xd4\x99\xb3\xd1\x96\xb4\xd2\x91\xb2\xce\x8f\xb2\ \xcd\x8d\xb0\xca\x8a\xb0\xc9\x8f\xb3\xcd\x97\xb5\xd0\x97\xb4\xcf\ \x93\xb4\xd2\x93\xb4\xd3\x97\xb5\xd2\x93\xb3\xcf\x8f\xb3\xcd\x8d\ \xb3\xcd\x8c\xb3\xcf\x8a\xb4\xce\x8d\xb3\xcc\x90\xb1\xcc\x90\xaf\ \xcc\x8c\xad\xca\x8b\xb0\xcc\x8c\xac\xcc\x8e\xaa\xcc\x90\xaa\xcd\ \x8d\xa9\xcc\x8a\xa9\xca\x87\xa9\xca\x86\xab\xc7\x85\xab\xc4\x84\ \xa9\xc5\x00\x00\x00\x6b\x9a\xb0\x6c\x97\xac\x89\xb5\xcb\x97\xc5\ \xdb\x99\xc9\xe2\x96\xc1\xde\x81\xa5\xc4\x51\x70\x8b\x3b\x5e\x76\ \x5c\x7f\x9e\x75\x97\xba\x72\x94\xb6\x6e\x91\xb1\x68\x8f\xac\x57\ \x7d\x9a\x4d\x71\x8d\x64\x87\xa3\x73\x94\xaf\x65\x85\x9b\x45\x63\ \x74\x48\x69\x79\x63\x88\x9b\x5c\x7f\x93\x3a\x5b\x71\x5a\x7e\x97\ \x7d\xa2\xbf\x80\xa5\xc3\x68\x88\xa6\x39\x59\x74\x5d\x7d\x9a\x7c\ \xa1\xbe\x79\x9a\xb6\x4f\x6c\x83\x51\x6f\x80\x73\x98\xad\x84\xab\ \xc4\x87\xad\xc8\x78\x9c\xb5\x6b\x8e\xa5\x78\x99\xb2\x83\x9f\xb9\ \x76\x92\xa8\x76\x95\xa6\x81\xa2\xb4\x88\xab\xc2\x87\xa7\xc1\x88\ \xa5\xc0\x90\xac\xc7\x97\xb6\xcf\x94\xb6\xcd\x8e\xb1\xc7\x8d\xb1\ \xc9\x8e\xb5\xd1\x91\xb9\xd4\x91\xb6\xd1\x8c\xb1\xc9\x8d\xae\xc6\ \x92\xb0\xcb\x97\xb5\xd0\x99\xbc\xd6\x99\xbd\xda\x93\xb9\xd6\x91\ \xb6\xd0\x8f\xb4\xce\x8b\xb3\xce\x8b\xb1\xcf\x8e\xb4\xd3\x8c\xb2\ \xd0\x88\xaf\xce\x85\xaa\xca\x84\xaa\xc8\x84\xaa\xc9\x86\xad\xc9\ \x84\xaf\xca\x82\xad\xcc\x84\xad\xcc\x88\xad\xce\x88\xad\xcf\x89\ \xaf\xcf\x89\xad\xcf\x8c\xb0\xd2\x8b\xaf\xd2\x8b\xaf\xd2\x89\xaf\ \xd1\x89\xb0\xd2\x8a\xb1\xd1\x8c\xb1\xd1\x87\xaf\xcf\x83\xad\xcf\ \x85\xaf\xd2\x89\xb1\xd2\x89\xaf\xd0\x89\xaf\xd0\x89\xaf\xcd\x8c\ \xb3\xcc\x8b\xb3\xcb\x88\xb1\xce\x82\xae\xcd\x7f\xab\xc9\x7f\xa6\ \xc5\x7c\x9f\xbd\x6d\x92\xad\x5f\x85\xa0\x65\x8c\xa7\x82\xa8\xc7\ \x86\xaa\xcd\x84\xa7\xc8\x83\xaa\xc5\x7b\xaa\xc2\x7a\xaa\xc2\x7e\ \xa7\xc5\x83\xa8\xc8\x87\xa9\xc9\x8b\xac\xc8\x8c\xaa\xc6\x8d\xa9\ \xc3\x8c\xaa\xc4\x86\xa6\xc2\x83\xa3\xc2\x7c\x9d\xba\x6e\x8d\xa0\ \x48\x61\x71\x35\x4c\x5e\x50\x6a\x7c\x48\x65\x77\x6f\x91\xa6\x80\ \xa6\xbf\x8c\xb2\xca\x91\xb6\xcf\x96\xb7\xd1\x99\xb6\xd4\x99\xb6\ \xd5\x97\xb5\xd2\x93\xb7\xd2\x8f\xb4\xd1\x8d\xb1\xce\x8d\xaf\xcb\ \x8d\xb0\xcb\x90\xb1\xcb\x95\xb2\xcd\x96\xb3\xce\x92\xb5\xd1\x90\ \xb5\xd0\x90\xb4\xcf\x90\xb3\xcf\x8c\xb1\xcc\x8a\xb0\xca\x88\xaf\ \xcb\x86\xb1\xcc\x89\xb2\xcb\x8c\xb2\xca\x8e\xaf\xcb\x8e\xb0\xcc\ \x8a\xad\xc9\x88\xaa\xc7\x8c\xac\xcc\x8f\xab\xcd\x8d\xa8\xca\x89\ \xaa\xcb\x86\xac\xcc\x82\xac\xc8\x83\xae\xc6\x84\xab\xc7\x00\x00\ \x00\x8c\xbc\xd4\x90\xbd\xd1\x97\xc2\xd7\x9b\xc7\xdc\x98\xc9\xdd\ \x93\xc3\xdb\x85\xb1\xcc\x69\x92\xab\x4a\x75\x8a\x61\x8a\xa2\x7a\ \x9d\xb9\x6b\x8b\xa8\x4f\x71\x8c\x4f\x74\x90\x50\x77\x92\x4f\x77\ \x90\x69\x90\xa9\x72\x98\xb4\x65\x88\xa1\x4e\x6f\x82\x53\x75\x85\ \x70\x93\xa7\x6e\x90\xa8\x55\x79\x91\x6b\x90\xab\x82\xa8\xc5\x7d\ \x9f\xc0\x67\x89\xa8\x40\x65\x83\x5e\x85\xa5\x78\xa2\xc2\x71\x98\ \xb5\x4e\x73\x89\x4c\x70\x82\x74\x9d\xb3\x7b\xa5\xc0\x72\x9c\xb6\ \x57\x7f\x96\x3f\x64\x7a\x55\x77\x90\x62\x7f\x99\x44\x60\x74\x40\ \x60\x6e\x54\x78\x86\x62\x87\x99\x57\x7c\x8e\x4f\x71\x83\x61\x82\ \x98\x79\x98\xaf\x74\x94\xa7\x63\x85\x98\x65\x8a\xa1\x7b\xa0\xbc\ \x85\xab\xc8\x83\xa8\xc2\x76\x97\xaa\x6d\x8f\xa2\x75\x98\xb0\x88\ \xaa\xc7\x95\xb9\xd4\x96\xbb\xd6\x92\xb5\xd1\x86\xa4\xbe\x7b\x99\ \xae\x7f\x9e\xb5\x86\xa5\xc0\x89\xab\xc7\x82\xa7\xc3\x78\x9d\xb9\ \x72\x93\xaf\x6e\x91\xab\x72\x98\xb2\x78\x9f\xb9\x7c\xa5\xbd\x82\ \xa9\xc5\x86\xac\xcb\x89\xab\xcc\x86\xa9\xc9\x84\xa5\xc3\x87\xa8\ \xc8\x89\xaa\xce\x89\xac\xcf\x88\xab\xce\x83\xa8\xca\x85\xa9\xc9\ \x8c\xae\xcc\x8d\xaf\xcc\x88\xac\xca\x80\xa7\xc8\x81\xa9\xca\x87\ \xab\xcc\x87\xa9\xca\x85\xa8\xc8\x86\xab\xc7\x88\xae\xc6\x8b\xae\ \xc8\x88\xab\xcb\x82\xa9\xcb\x7c\xa8\xc9\x7e\xa6\xc7\x7d\x9f\xc0\ \x7a\x9d\xbe\x75\x9b\xbb\x76\xa0\xbc\x7c\xa9\xc4\x7e\xa6\xc5\x7e\ \xa4\xc1\x7d\xa4\xbd\x7a\xa7\xbd\x77\xa9\xbf\x7b\xa9\xc4\x84\xa8\ \xc8\x83\xa6\xc6\x83\xa8\xc3\x81\xa6\xbe\x80\xa4\xb7\x81\xa2\xb8\ \x7f\x9e\xb9\x7c\x9d\xbc\x7b\x9c\xb8\x76\x97\xab\x5b\x7b\x8b\x3f\ \x5c\x6e\x48\x64\x79\x57\x76\x8a\x7d\x9e\xb5\x85\xaa\xc4\x8a\xb2\ \xcb\x8f\xb5\xcf\x96\xb8\xd2\x98\xb5\xd4\x96\xb5\xd4\x92\xb5\xd0\ \x8f\xb4\xce\x8e\xb3\xcd\x8f\xb1\xce\x90\xb1\xce\x8d\xae\xca\x90\ \xae\xc9\x93\xae\xc9\x94\xb0\xca\x92\xb2\xcc\x8d\xb3\xcc\x8c\xb1\ \xcc\x8a\xaf\xcb\x89\xae\xc8\x88\xad\xc7\x89\xae\xc9\x8b\xaf\xce\ \x8d\xb1\xcc\x8f\xaf\xca\x93\xb0\xcb\x91\xaf\xcb\x8f\xac\xcb\x8b\ \xaa\xc9\x8b\xaa\xc9\x8e\xab\xca\x8f\xa9\xc9\x8b\xab\xca\x86\xab\ \xcb\x81\xa9\xc8\x80\xa9\xc2\x82\xa9\xc5\x00\x00\x00\x9e\xc5\xdf\ \x9b\xc2\xda\x9a\xc3\xdb\x99\xc4\xdc\x94\xc5\xda\x8f\xc3\xda\x8c\ \xbc\xd5\x83\xb0\xc8\x6d\x98\xad\x5f\x83\x97\x60\x7f\x95\x55\x74\ \x8d\x47\x6c\x84\x48\x70\x89\x66\x90\xa9\x7a\xa7\xbd\x87\xb3\xca\ \x90\xba\xd4\x8b\xb2\xcd\x87\xad\xc4\x8c\xaf\xc5\x98\xbb\xd3\x94\ \xb6\xd2\x88\xac\xc7\x8c\xb1\xcb\x8c\xb0\xce\x84\xa7\xc8\x6e\x94\ \xb6\x61\x8c\xac\x72\x9f\xbf\x82\xaf\xd0\x80\xab\xc9\x70\x9c\xb3\ \x64\x8e\xa3\x78\xa1\xba\x85\xaf\xc8\x7c\xa8\xc0\x68\x93\xaa\x5f\ \x86\x9f\x6f\x94\xb0\x70\x92\xad\x5c\x7d\x94\x55\x79\x8b\x63\x8a\ \x9e\x6f\x96\xac\x5d\x82\x95\x49\x6f\x82\x5c\x81\x97\x70\x92\xa9\ \x62\x84\x97\x4b\x6f\x81\x52\x78\x8e\x73\x97\xb4\x81\xa5\xc3\x73\ \x97\xb1\x4c\x6f\x81\x43\x68\x7a\x69\x8e\xa8\x86\xab\xc7\x96\xb8\ \xd5\x95\xb9\xd5\x8d\xae\xc8\x70\x8a\xa0\x51\x69\x7d\x72\x8e\xa5\ \x83\xa0\xb9\x83\xa3\xbe\x73\x96\xb0\x5b\x7c\x95\x43\x61\x77\x47\ \x68\x7b\x5a\x81\x98\x67\x8d\xa3\x69\x8d\xa4\x73\x95\xad\x81\xa1\ \xbd\x86\xa3\xc2\x7d\x9a\xb8\x6f\x8d\xa6\x6f\x8f\xaa\x77\x98\xb7\ \x7c\xa1\xc0\x7a\x9e\xbe\x75\x97\xb6\x75\x92\xb0\x7f\x98\xb6\x84\ \xa0\xbc\x7e\x9f\xba\x71\x96\xb1\x6e\x94\xaf\x78\x99\xb6\x7e\x9d\ \xba\x7d\x9d\xba\x77\x99\xb5\x77\x9b\xb5\x80\xa0\xbe\x82\xa2\xc3\ \x7c\xa0\xbf\x7c\xa0\xbf\x7b\x9c\xba\x79\x9a\xb9\x77\x99\xba\x77\ \x9b\xbb\x7b\xa1\xbf\x7d\xa3\xc0\x7a\x9e\xb9\x75\x96\xb0\x6b\x8d\ \xa2\x73\x9a\xad\x79\xa5\xbb\x7a\xa6\xbf\x7c\xa0\xbe\x7a\x9a\xbc\ \x79\x9c\xba\x79\x9e\xb5\x70\x94\xa6\x67\x86\x98\x6e\x8a\xa1\x71\ \x8b\xa7\x72\x8f\xa7\x7a\x9c\xb0\x72\x98\xaa\x64\x88\xa0\x63\x87\ \xa1\x78\x9b\xb1\x88\xa9\xc0\x8c\xae\xc8\x8f\xb5\xcf\x90\xb6\xcf\ \x94\xb6\xcf\x97\xb7\xd4\x95\xb5\xd4\x91\xb3\xd1\x92\xb3\xcf\x92\ \xb2\xcd\x94\xb2\xcd\x93\xb0\xcd\x92\xb0\xcc\x93\xae\xca\x92\xad\ \xc8\x93\xae\xc8\x92\xb0\xc9\x8f\xb1\xcc\x8e\xb1\xcd\x8d\xb0\xcd\ \x8c\xb1\xcb\x87\xac\xc6\x8c\xae\xca\x91\xb1\xd1\x92\xaf\xce\x96\ \xb0\xcd\x94\xaf\xcc\x94\xaf\xcd\x92\xad\xd0\x92\xae\xd1\x90\xac\ \xcd\x90\xa9\xcb\x8d\xa8\xc5\x8d\xaa\xc6\x8b\xaa\xca\x86\xa9\xc8\ \x85\xa9\xc3\x87\xaa\xc5\x00\x00\x00\x9b\xbc\xd8\x97\xbb\xd5\x98\ \xc0\xda\x97\xc3\xdb\x90\xc3\xda\x8b\xc4\xda\x8d\xc1\xdb\x90\xba\ \xd4\x84\xaa\xc0\x68\x89\x9c\x40\x5f\x72\x4a\x6e\x84\x51\x7c\x93\ \x45\x73\x8c\x70\xa0\xb7\x90\xc0\xd5\x9a\xc5\xdd\x9a\xc2\xdd\x97\ \xbe\xdb\x95\xbe\xd6\x96\xbd\xd6\x99\xc0\xd9\x99\xbc\xd9\x93\xb7\ \xd4\x94\xba\xd5\x93\xb9\xd6\x91\xb7\xd8\x88\xb3\xd4\x7f\xaf\xd0\ \x83\xb5\xd5\x86\xb7\xd8\x8b\xba\xd7\x88\xb6\xd0\x85\xb1\xca\x8c\ \xb3\xd0\x93\xb8\xd3\x91\xb7\xd2\x8c\xb3\xce\x8b\xb2\xd0\x8d\xb4\ \xd3\x8f\xb4\xd2\x86\xab\xc4\x82\xa8\xc0\x85\xad\xc5\x8d\xb2\xcc\ \x85\xab\xc3\x78\xa1\xb9\x76\xa2\xba\x7f\xab\xc2\x7d\xa8\xc0\x70\ \x99\xb1\x6f\x96\xb0\x7c\xa0\xc0\x89\xad\xcb\x79\x9e\xba\x5c\x82\ \x9a\x5a\x83\x9a\x7c\xa2\xbd\x93\xb5\xd5\x9a\xba\xda\x98\xb8\xd6\ \x8a\xa9\xc2\x68\x83\x97\x46\x61\x75\x79\x97\xaf\x8c\xae\xc4\x8a\ \xb1\xc8\x7c\xa2\xbb\x5f\x81\x99\x3c\x5d\x70\x3d\x61\x73\x5c\x83\ \x99\x63\x88\xa0\x5b\x7d\x93\x57\x79\x8d\x74\x95\xac\x7c\x9a\xb8\ \x6d\x8e\xab\x4f\x70\x87\x45\x6b\x7f\x5e\x86\x9e\x6d\x96\xb0\x6c\ \x92\xae\x61\x82\xa0\x52\x6e\x8c\x61\x7a\x99\x6e\x89\xa5\x68\x88\ \xa2\x55\x7a\x91\x41\x68\x7f\x4e\x75\x8c\x5d\x82\x9b\x55\x78\x91\ \x4b\x70\x87\x53\x79\x92\x68\x8c\xa9\x72\x93\xb1\x6f\x8c\xa8\x66\ \x81\x9b\x63\x81\x9b\x66\x8b\xa5\x68\x8e\xab\x6a\x8d\xad\x73\x91\ \xb3\x78\x95\xb7\x73\x90\xae\x60\x7d\x93\x4b\x68\x79\x5e\x81\x92\ \x6f\x98\xad\x71\x9a\xb1\x69\x8b\xa7\x65\x81\xa2\x69\x86\xa7\x6b\ \x8a\xa6\x5c\x7b\x90\x40\x5b\x6b\x43\x59\x6c\x47\x5b\x72\x43\x5b\ \x70\x64\x82\x95\x7c\xa1\xb6\x81\xa7\xc1\x85\xab\xc7\x88\xaf\xc6\ \x8c\xaf\xc6\x91\xb0\xc9\x93\xb5\xce\x94\xb7\xce\x95\xb6\xcf\x94\ \xb4\xd1\x96\xb3\xd4\x95\xb2\xd4\x95\xb2\xd1\x93\xb1\xcf\x94\xb1\ \xd0\x96\xb3\xd3\x95\xb4\xd1\x92\xb2\xce\x92\xb0\xcb\x93\xb0\xca\ \x94\xaf\xca\x8f\xae\xcc\x8f\xb1\xd1\x8f\xb0\xd0\x8d\xb1\xce\x8a\ \xaf\xca\x8e\xb0\xce\x94\xb1\xd2\x93\xb1\xcc\x96\xb1\xcd\x95\xb2\ \xcd\x93\xb1\xce\x91\xb0\xd0\x90\xae\xd2\x90\xad\xd1\x8f\xa9\xcd\ \x8e\xa9\xcb\x8e\xaa\xc9\x8d\xaa\xca\x8d\xa9\xcb\x8b\xaa\xc7\x89\ \xaa\xc4\x00\x00\x00\x89\xaf\xc9\x8a\xaf\xcc\x95\xbd\xd9\x98\xc3\ \xda\x94\xc3\xdb\x90\xc4\xde\x91\xc0\xe0\x96\xbe\xdc\x8c\xb3\xca\ \x6e\x93\xa6\x45\x69\x7f\x53\x7b\x93\x50\x7f\x97\x52\x83\x9b\x83\ \xb3\xcb\x9b\xc8\xdf\xa3\xca\xe3\xa0\xc5\xe1\x9d\xc3\xdf\x98\xc3\ \xdc\x96\xc1\xda\x94\xbe\xd6\x8f\xb3\xcc\x89\xad\xc7\x8a\xb1\xca\ \x91\xba\xd6\x93\xbd\xdc\x93\xbe\xdd\x90\xbd\xdd\x8c\xbc\xdc\x8b\ \xbd\xdc\x92\xc1\xdc\x93\xc0\xda\x96\xbf\xd8\x9a\xbe\xdb\x9b\xbf\ \xdb\x9b\xc0\xdc\x9b\xbf\xdb\x9b\xbe\xdd\x95\xba\xdc\x95\xbb\xdd\ \x95\xba\xd7\x96\xbb\xd6\x96\xbb\xd7\x97\xbc\xd8\x94\xba\xd5\x8c\ \xb8\xd2\x86\xb7\xcf\x88\xbb\xd2\x8a\xba\xd5\x8b\xb6\xd3\x8d\xb3\ \xd2\x91\xb3\xd5\x93\xb6\xd6\x8b\xb2\xd0\x7f\xaa\xc6\x7a\xa8\xc1\ \x8a\xb3\xcd\x99\xbb\xd8\x9d\xbd\xd9\x98\xba\xd5\x8c\xad\xc6\x71\ \x8f\xa5\x49\x68\x7e\x6d\x8e\xa4\x8b\xb3\xc7\x8e\xb9\xcd\x87\xb2\ \xca\x78\xa2\xb9\x5c\x86\x9c\x54\x7f\x94\x62\x8b\xa4\x6a\x8f\xab\ \x58\x7d\x97\x56\x7d\x95\x75\x9b\xb4\x79\x9e\xba\x6f\x93\xae\x58\ \x7c\x96\x54\x7c\x93\x6c\x94\xad\x78\xa0\xba\x73\x9a\xb6\x65\x89\ \xa7\x59\x7d\x99\x6d\x8e\xa9\x7a\x98\xb6\x71\x92\xb0\x58\x80\x97\ \x48\x73\x88\x57\x84\x9b\x5e\x8a\xa5\x52\x7a\x93\x43\x6b\x82\x4e\ \x77\x8f\x6b\x91\xac\x71\x93\xb0\x67\x84\x9d\x47\x61\x75\x4c\x67\ \x7b\x5c\x7f\x95\x62\x87\xa2\x60\x80\xa0\x5d\x78\x98\x68\x81\xa2\ \x6a\x84\xa3\x52\x70\x89\x35\x56\x69\x4f\x75\x86\x67\x92\xa5\x6b\ \x92\xa8\x5d\x7e\x96\x4a\x64\x81\x58\x72\x90\x5c\x76\x94\x4f\x69\ \x81\x2e\x49\x59\x25\x3e\x51\x2a\x43\x59\x26\x3d\x53\x43\x5e\x71\ \x6d\x8d\xa3\x7e\xa2\xba\x85\xab\xc3\x89\xad\xc5\x8a\xac\xc3\x92\ \xb2\xc8\x97\xb8\xcc\x99\xb8\xcf\x96\xb4\xce\x94\xb2\xcf\x93\xb0\ \xd0\x96\xb0\xd2\x96\xaf\xd2\x95\xb0\xd2\x99\xb3\xd6\x98\xb4\xd6\ \x95\xb5\xd3\x91\xb7\xd0\x8f\xb3\xcd\x90\xb1\xca\x91\xaf\xcc\x8d\ \xae\xcd\x8c\xaf\xce\x8f\xb1\xd0\x8e\xb3\xcd\x8d\xb1\xcb\x92\xb3\ \xd1\x92\xb0\xcf\x8f\xb0\xcb\x92\xb2\xcc\x93\xb2\xce\x94\xb4\xcf\ \x92\xb0\xce\x8f\xae\xd0\x8b\xad\xd1\x8b\xab\xcf\x8a\xa9\xcc\x87\ \xa7\xca\x8b\xa8\xcc\x90\xab\xcd\x8e\xaa\xc9\x8b\xa7\xc6\x00\x00\ \x00\x8f\xb9\xd2\x90\xba\xd4\x9b\xbf\xdd\xa0\xc5\xe0\x9e\xc5\xe1\ \x9b\xc3\xe4\x9b\xc2\xe7\x96\xbf\xdf\x8d\xb7\xd1\x7c\xa6\xbd\x6a\ \x94\xae\x60\x8d\xa7\x5e\x8f\xa7\x78\xa8\xc0\x96\xc0\xdc\xa0\xc6\ \xe3\xa3\xc9\xe3\xa2\xc7\xe2\x9e\xc6\xe1\x98\xc4\xde\x97\xc3\xde\ \x94\xbd\xd7\x86\xab\xc5\x79\x9d\xb7\x86\xa9\xc4\x92\xb6\xd2\x98\ \xbd\xd8\x9c\xc0\xde\x9e\xc1\xe1\x9b\xc0\xe0\x98\xc1\xdf\x9b\xc3\ \xde\x9d\xc3\xde\x9f\xc5\xde\xa4\xc3\xe0\xa0\xc4\xe1\x9d\xc1\xde\ \x9f\xc0\xde\xa2\xc1\xe1\x9c\xbf\xe0\x99\xbe\xe0\x98\xbc\xda\x9a\ \xbe\xd9\x9a\xbe\xda\x97\xbe\xd6\x96\xbe\xd7\x92\xbd\xd7\x90\xc0\ \xd8\x90\xc1\xd9\x94\xc1\xdb\x9b\xc1\xdf\x9c\xbe\xde\x9d\xc0\xdd\ \x9e\xc1\xe0\x99\xc0\xe0\x90\xbc\xd8\x91\xbd\xd6\x96\xbd\xd7\x9c\ \xbe\xd8\x9c\xbd\xd8\x98\xbc\xd4\x93\xb5\xcc\x82\xa2\xba\x62\x84\ \x9d\x5d\x83\x97\x83\xab\xbd\x8d\xb7\xcd\x83\xb0\xc9\x78\xa5\xc0\ \x75\xa2\xbd\x77\xa5\xbf\x7c\xa9\xc3\x7e\xa7\xc1\x75\x9f\xba\x76\ \xa0\xbd\x7c\xa5\xc2\x81\xa7\xc5\x81\xa5\xc3\x77\x9d\xbb\x78\xa0\ \xbc\x81\xa8\xc4\x88\xad\xca\x85\xaa\xc8\x7e\xa4\xc1\x77\xa0\xb9\ \x7f\xa6\xbf\x89\xab\xc9\x83\xa8\xc7\x77\xa2\xbb\x71\xa1\xb8\x78\ \xa8\xc2\x7a\xa9\xc6\x74\xa0\xba\x6a\x91\xab\x69\x92\xab\x73\x9c\ \xb8\x7b\x9f\xbe\x72\x91\xad\x59\x74\x8c\x4b\x65\x7b\x57\x76\x8e\ \x65\x87\xa3\x66\x86\xa6\x5b\x78\x94\x5d\x7a\x96\x67\x86\xa1\x5c\ \x80\x99\x57\x7d\x93\x64\x8e\xa2\x71\x9c\xb0\x6f\x96\xaf\x62\x85\ \x9f\x51\x70\x8d\x5c\x7b\x99\x61\x81\x9f\x53\x73\x8d\x3c\x5e\x71\ \x3d\x5f\x75\x4a\x6a\x84\x41\x5e\x77\x37\x55\x6b\x56\x75\x8c\x6f\ \x91\xa7\x7f\xa2\xb7\x89\xa9\xbf\x8c\xac\xc2\x90\xb1\xc4\x94\xb6\ \xc8\x96\xb5\xcb\x96\xb3\xce\x93\xb1\xcf\x94\xb2\xd0\x95\xb4\xd1\ \x95\xb3\xd1\x96\xb4\xd3\x98\xb2\xd5\x99\xb3\xd6\x94\xb5\xd2\x90\ \xb6\xd0\x90\xb4\xcf\x91\xb5\xcf\x92\xb2\xce\x8f\xb0\xca\x8f\xb1\ \xcb\x94\xb5\xd1\x94\xb6\xd0\x90\xb1\xcb\x93\xb2\xcf\x92\xb0\xce\ \x90\xb0\xcc\x8e\xaf\xc9\x93\xb2\xcf\x94\xb1\xce\x94\xb1\xce\x8e\ \xae\xcf\x8a\xad\xcf\x87\xaa\xcb\x86\xa9\xcb\x88\xa8\xcb\x8b\xa9\ \xcd\x8d\xab\xcb\x8b\xab\xcb\x89\xa9\xca\x00\x00\x00\x95\xc1\xdc\ \x98\xc2\xdd\xa1\xc5\xe1\xa6\xc6\xe3\xa2\xc4\xe5\x9e\xc1\xe7\x9d\ \xc3\xe7\x96\xc2\xe1\x90\xba\xd8\x8d\xb7\xd2\x88\xb3\xd1\x82\xb1\ \xcf\x81\xb4\xcf\x8d\xbb\xd8\x9b\xc1\xe0\xa3\xc4\xe3\xa2\xc4\xe1\ \xa0\xc5\xe3\x9a\xc3\xe0\x99\xc3\xe0\x99\xc2\xdf\x96\xbc\xd8\x8c\ \xb0\xca\x8a\xaa\xc5\x91\xaf\xcd\x9b\xb8\xd5\x9f\xbd\xd8\xa1\xc0\ \xde\xa2\xc1\xe2\xa1\xc1\xe0\xa2\xc3\xe0\xa2\xc4\xe0\xa3\xc5\xdf\ \xa4\xc4\xe0\xa6\xc4\xe1\xa1\xc4\xe2\x9f\xc1\xe0\xa2\xc0\xe0\xa2\ \xbf\xe1\x9c\xbe\xe0\x99\xbc\xde\x99\xbd\xdb\x9a\xbe\xd8\x97\xbb\ \xd5\x95\xbc\xd3\x95\xbe\xd6\x96\xbe\xda\x96\xbf\xdd\x97\xc1\xe0\ \x9c\xc2\xdf\xa1\xc0\xdf\xa2\xbf\xde\xa0\xc3\xdd\xa0\xc5\xe0\x9c\ \xc2\xe1\x97\xbf\xdf\x98\xc0\xdc\x9b\xc1\xdb\x9f\xbf\xdb\x9f\xbf\ \xd9\x9d\xbe\xd8\x9b\xbc\xd7\x91\xb2\xcc\x82\xa6\xc0\x74\x9a\xb1\ \x7f\xa5\xbd\x88\xaf\xc8\x7d\xab\xc3\x72\x9f\xbb\x73\x9f\xbc\x80\ \xac\xc9\x89\xb5\xcf\x88\xb5\xcd\x81\xb2\xca\x7f\xaf\xcb\x83\xaf\ \xce\x86\xae\xce\x86\xad\xcd\x88\xad\xce\x8a\xb0\xcf\x8c\xb3\xd2\ \x91\xb6\xd4\x8e\xb2\xd0\x8c\xb1\xcd\x89\xb0\xc9\x8b\xb0\xca\x8f\ \xb4\xcf\x8b\xb4\xce\x86\xb2\xc8\x85\xb3\xca\x85\xb4\xce\x85\xb4\ \xd0\x87\xb1\xcd\x86\xac\xc9\x82\xab\xc6\x81\xa9\xc8\x83\xa9\xca\ \x7c\x9e\xc0\x70\x8f\xae\x5f\x7d\x99\x5c\x7b\x98\x65\x89\xa7\x6b\ \x90\xb0\x63\x88\xa5\x5b\x80\x9b\x67\x8d\xa6\x72\x98\xb1\x79\xa3\ \xb8\x7c\xa7\xbc\x7f\xa9\xc0\x7f\xa7\xc4\x73\x9b\xb9\x66\x90\xae\ \x62\x8f\xad\x64\x92\xae\x61\x8d\xa6\x5b\x85\x9d\x5b\x83\xa0\x62\ \x87\xa7\x60\x80\x9f\x54\x73\x90\x54\x76\x91\x65\x87\xa0\x7d\x9b\ \xb4\x89\xa7\xbf\x8d\xab\xc3\x8d\xb1\xc4\x8f\xb4\xc7\x91\xb3\xc9\ \x93\xb3\xcd\x90\xb2\xcf\x90\xb2\xcf\x92\xb5\xd2\x94\xb6\xd3\x92\ \xb3\xd4\x96\xb3\xd5\x95\xb3\xd6\x90\xb5\xd3\x8d\xb6\xcf\x8f\xb4\ \xcf\x8f\xb3\xce\x94\xb3\xcf\x96\xb2\xcc\x95\xb4\xcf\x94\xb5\xd2\ \x94\xb5\xcf\x90\xb1\xcc\x90\xb1\xcd\x92\xaf\xcd\x90\xaf\xc9\x8e\ \xaf\xc9\x90\xb1\xcd\x93\xb1\xcf\x91\xb1\xce\x8d\xb0\xd0\x88\xab\ \xcd\x89\xac\xcc\x88\xaa\xcb\x89\xa7\xcc\x86\xa6\xcc\x85\xa7\xc9\ \x85\xa9\xca\x82\xa8\xc9\x00\x00\x00\x91\xc0\xd8\x99\xc4\xdd\xa0\ \xc5\xdf\xa2\xc4\xe0\xa0\xc3\xe3\x9e\xc2\xe4\x9c\xc2\xe1\x97\xbe\ \xdd\x96\xbb\xda\x9a\xbd\xde\x97\xbd\xdf\x95\xbe\xde\x92\xbe\xdd\ \x94\xbe\xde\x9b\xc1\xde\xa2\xc3\xe0\x9f\xc1\xdd\x9a\xc0\xdd\x95\ \xc0\xd9\x95\xc2\xdb\x97\xbf\xdb\x91\xb6\xd0\x80\xa4\xbb\x7e\xa0\ \xb6\x91\xb0\xca\x9e\xbb\xd6\xa1\xbd\xd9\xa0\xbe\xdf\x9c\xbf\xde\ \x9c\xc1\xdd\x9f\xc3\xdf\xa3\xc2\xe2\xa3\xc2\xe3\xa3\xc2\xe0\xa0\ \xc3\xdd\x9e\xc3\xde\x9e\xbf\xde\x9f\xbe\xdf\x9e\xbe\xdf\x99\xbe\ \xdf\x94\xbc\xdc\x95\xbe\xda\x99\xbf\xd9\x99\xbe\xd8\x97\xbd\xd7\ \x95\xbe\xd7\x98\xbe\xdd\x98\xbf\xe1\x9a\xc1\xe2\x9c\xc0\xdf\xa1\ \xbe\xdf\xa5\xbe\xde\xa3\xc1\xde\xa2\xc3\xdd\x9f\xc2\xe0\x99\xbe\ \xde\x9a\xc0\xdd\x9b\xc0\xda\x9d\xc0\xda\x9e\xbe\xd9\x9e\xbd\xd9\ \x99\xba\xd7\x94\xb7\xd3\x93\xb6\xd1\x8d\xb1\xcb\x8b\xaf\xc9\x87\ \xae\xc8\x7c\xa9\xc2\x76\xa1\xbb\x75\x9f\xba\x7e\xaa\xc5\x8a\xb7\ \xd0\x8b\xb9\xd1\x86\xb7\xce\x84\xb4\xcd\x88\xb2\xcf\x8a\xb1\xcf\ \x8c\xb2\xd2\x8d\xb3\xd3\x8e\xb4\xd4\x90\xb6\xd6\x91\xb6\xd6\x93\ \xb7\xd5\x94\xb6\xd3\x90\xb5\xcf\x8f\xb4\xce\x8f\xb4\xce\x8d\xb6\ \xcf\x8b\xb3\xcd\x8b\xb4\xcd\x87\xb2\xce\x83\xb0\xcc\x87\xb1\xca\ \x88\xb1\xca\x86\xb1\xcb\x87\xaf\xce\x86\xad\xcf\x80\xa8\xca\x78\ \x9e\xbe\x6a\x8c\xab\x60\x81\x9f\x64\x88\xa8\x6b\x94\xb4\x65\x91\ \xaf\x57\x82\x9f\x66\x8f\xa8\x7a\xa4\xba\x7b\xa7\xb9\x7d\xa9\xbc\ \x83\xae\xc4\x87\xaf\xca\x80\xaa\xc9\x75\xa3\xc2\x72\xa0\xbf\x70\ \xa0\xba\x6f\x9b\xb6\x6a\x92\xb2\x66\x8e\xb0\x65\x8d\xb1\x67\x8d\ \xaf\x67\x8b\xab\x6c\x8f\xae\x72\x97\xb1\x7d\x9d\xb7\x87\xa4\xbc\ \x8c\xab\xc3\x8b\xae\xc4\x8b\xb0\xc7\x8e\xb2\xc9\x90\xb2\xcd\x8f\ \xb2\xcf\x91\xb3\xd0\x92\xb4\xd2\x90\xb4\xd2\x93\xb6\xd5\x95\xb3\ \xd6\x94\xb3\xd6\x91\xb5\xd5\x8e\xb5\xd2\x8d\xb2\xcf\x8f\xb3\xcf\ \x95\xb3\xd0\x97\xb3\xd0\x95\xb6\xd0\x91\xb6\xd2\x92\xb5\xd3\x92\ \xb1\xd0\x90\xb1\xce\x93\xb2\xcf\x92\xb0\xcc\x8c\xaf\xc9\x89\xaf\ \xcb\x8b\xaf\xcb\x8b\xb0\xcc\x88\xb0\xce\x87\xac\xce\x89\xab\xcc\ \x89\xaa\xcb\x88\xa9\xcf\x86\xa7\xce\x83\xa6\xcb\x7f\xa7\xca\x7c\ \xa7\xc8\x00\x00\x00\x91\xbc\xd1\x98\xc1\xd7\x99\xc0\xd7\x98\xbe\ \xd7\x9b\xbe\xdb\x9b\xbc\xdb\x97\xb9\xd5\x94\xb7\xd0\x91\xb5\xd0\ \x95\xba\xd6\x99\xbd\xdb\x99\xbd\xdc\x93\xba\xd7\x96\xbc\xd7\x9f\ \xc1\xdc\xa2\xc3\xe0\x9c\xc1\xdd\x97\xbc\xd7\x91\xbb\xd4\x8e\xbc\ \xd4\x93\xbc\xd7\x8b\xb1\xca\x6b\x90\xa4\x57\x79\x8a\x88\xa7\xbb\ \x99\xb9\xd4\x9a\xbb\xd9\x98\xbb\xd9\x93\xbb\xd5\x95\xbd\xd6\x96\ \xbd\xd9\x9e\xc0\xe1\xa0\xc0\xe2\xa0\xc1\xe0\x9a\xc0\xd9\x99\xc1\ \xd9\x9a\xbe\xdb\x9c\xbc\xdb\x98\xbb\xda\x91\xba\xda\x8d\xbb\xda\ \x8f\xbc\xd9\x98\xbf\xdc\x9a\xbf\xd9\x9b\xc0\xda\x98\xc0\xd9\x97\ \xbf\xda\x99\xc0\xde\x98\xbd\xdd\x9a\xbd\xdd\xa2\xbe\xe0\xa2\xbc\ \xdc\xa2\xbf\xda\xa3\xc0\xdb\xa3\xc1\xdd\x9c\xbe\xda\x9b\xc0\xdc\ \x9b\xc0\xda\x99\xbf\xd5\x97\xbe\xd4\x9a\xbc\xd8\x9b\xba\xd7\x98\ \xb7\xd5\x9b\xb9\xd4\x99\xb8\xd2\x96\xb6\xd0\x8d\xb2\xcb\x88\xb0\ \xc9\x81\xa8\xc4\x80\xa7\xc3\x87\xaf\xc8\x8d\xb5\xce\x91\xb6\xcf\ \x8d\xb5\xcc\x8b\xb3\xcb\x8f\xb3\xce\x91\xb3\xd1\x92\xb6\xd4\x8f\ \xb5\xd2\x8f\xb6\xd3\x8d\xb6\xd3\x91\xb6\xd4\x93\xb7\xd4\x95\xb5\ \xd2\x93\xb5\xd0\x8f\xb4\xce\x8f\xb4\xcd\x8e\xb3\xce\x8e\xb0\xce\ \x8a\xab\xc7\x80\xa8\xc2\x7b\xa7\xbe\x7c\xa6\xbd\x7f\xa8\xbe\x83\ \xad\xc6\x86\xaf\xcd\x88\xb0\xd0\x82\xae\xcb\x78\xa4\xbe\x68\x8f\ \xa8\x51\x73\x8e\x5a\x80\x9e\x65\x93\xb1\x5a\x89\xa6\x5a\x85\xa3\ \x75\x9e\xba\x78\xa2\xb8\x6d\x9a\xad\x6c\x9a\xac\x7b\xa7\xbb\x86\ \xae\xc6\x88\xb0\xcb\x82\xab\xc8\x83\xab\xc7\x82\xa9\xc5\x81\xa7\ \xc4\x7a\x9f\xc0\x71\x98\xbb\x69\x95\xb8\x65\x91\xb3\x66\x8d\xb0\ \x68\x8f\xaf\x6f\x98\xb2\x79\x9f\xb9\x7e\xa2\xbb\x85\xaa\xc0\x8d\ \xaf\xc6\x8f\xb0\xcb\x90\xb2\xcd\x8f\xb4\xce\x8e\xb3\xcd\x91\xb4\ \xce\x91\xb4\xd0\x93\xb7\xd5\x94\xb8\xd5\x97\xb7\xd6\x96\xb4\xd4\ \x93\xb2\xd2\x8e\xb2\xd0\x8d\xb1\xcf\x90\xb3\xd0\x96\xb4\xd5\x96\ \xb3\xd3\x93\xb5\xd0\x91\xb5\xcf\x93\xb3\xd4\x92\xb1\xd4\x8e\xb0\ \xd1\x91\xb0\xd1\x94\xae\xd1\x91\xb0\xce\x8c\xb2\xce\x8b\xb1\xce\ \x8a\xb0\xce\x86\xae\xce\x85\xaa\xcb\x88\xa9\xc9\x88\xa7\xc7\x8b\ \xa9\xcd\x88\xa7\xce\x81\xa7\xcc\x7b\xa6\xc8\x7a\xa7\xc7\x00\x00\ \x00\x87\xaa\xbf\x8f\xb3\xc9\x84\xaa\xc0\x82\xa8\xbf\x8c\xaf\xca\ \x91\xb0\xcd\x89\xa7\xc0\x7d\x9c\xb0\x7a\x9d\xb0\x80\xa5\xbb\x8a\ \xaf\xc8\x8d\xb2\xcd\x8d\xb2\xca\x93\xb5\xcc\x9d\xbe\xd6\xa0\xc1\ \xde\x99\xbd\xd8\x91\xb4\xce\x88\xad\xc7\x8c\xb2\xce\x91\xb7\xd3\ \x8d\xb2\xce\x6f\x94\xa9\x43\x66\x75\x71\x93\xa3\x94\xb9\xd1\x98\ \xbd\xda\x95\xbb\xd6\x93\xb9\xd3\x91\xb6\xcf\x93\xb8\xd3\x99\xbb\ \xda\x9b\xbe\xdc\x9a\xbe\xdb\x94\xbb\xd6\x92\xbd\xd7\x93\xbd\xd8\ \x95\xba\xd7\x93\xb8\xd6\x8d\xb7\xd7\x86\xb5\xd2\x89\xb7\xd3\x95\ \xbc\xd9\x9a\xbe\xda\x9a\xbf\xd9\x99\xc0\xd6\x97\xbd\xd5\x96\xbb\ \xd6\x93\xb5\xd2\x93\xb4\xd2\x98\xb6\xd7\x99\xb9\xd8\x99\xba\xd7\ \x9b\xbe\xd8\x9f\xbf\xda\x9b\xbf\xd9\x96\xbd\xd7\x98\xbe\xd7\x98\ \xbe\xd4\x95\xbc\xd2\x95\xba\xd6\x97\xb9\xd6\x9a\xb9\xd7\x9c\xba\ \xd8\x9c\xba\xd7\x9c\xb9\xd4\x98\xb8\xd3\x94\xb6\xd4\x8f\xb2\xd1\ \x8c\xaf\xcc\x8a\xac\xc8\x8b\xab\xc5\x87\xa6\xbd\x85\xa5\xba\x89\ \xab\xc0\x8c\xad\xc5\x93\xb1\xcd\x93\xb6\xd1\x93\xb7\xd3\x91\xb8\ \xd3\x8c\xb8\xd1\x8f\xb8\xd1\x92\xb8\xd2\x93\xb7\xd3\x8f\xb4\xce\ \x8d\xb5\xcd\x8c\xb4\xcd\x8d\xb3\xce\x8b\xac\xcb\x81\xa1\xbc\x6b\ \x8f\xa6\x60\x86\x9b\x5e\x86\x98\x66\x8f\xa0\x73\x9e\xb2\x7e\xa9\ \xc2\x88\xaf\xcb\x8a\xb2\xcd\x83\xac\xc4\x6f\x97\xad\x56\x7e\x95\ \x5b\x86\xa2\x5f\x8e\xac\x5e\x8e\xa9\x75\x9f\xbc\x82\xa8\xc7\x7c\ \xa4\xbe\x6d\x99\xb0\x61\x8d\xa5\x68\x93\xaa\x81\xa8\xc0\x88\xaf\ \xc8\x89\xb1\xcc\x8b\xaf\xcc\x8a\xaf\xcc\x8b\xad\xcc\x83\xa8\xc9\ \x7e\xa5\xc8\x77\xa0\xc2\x6f\x9a\xbc\x6a\x92\xb4\x6a\x94\xb3\x70\ \x9b\xb5\x79\xa1\xba\x7d\xa4\xbd\x84\xa9\xc1\x8e\xaf\xcb\x94\xb2\ \xd0\x97\xb5\xd5\x94\xb7\xd4\x93\xb7\xd3\x95\xb6\xd2\x93\xb7\xd3\ \x92\xb6\xd2\x94\xb7\xd3\x98\xb8\xd4\x9a\xb7\xd7\x96\xb5\xd6\x8f\ \xb4\xd1\x8c\xb4\xce\x92\xb6\xd1\x94\xb4\xd3\x93\xb3\xd2\x93\xb4\ \xd0\x91\xb3\xce\x96\xb3\xd2\x94\xb2\xd4\x8e\xb1\xd5\x8f\xb0\xd2\ \x92\xb0\xd3\x91\xb1\xd1\x8d\xb2\xd0\x8a\xb1\xcf\x89\xaf\xd1\x85\ \xae\xd0\x82\xaa\xca\x83\xa9\xc8\x8a\xa9\xcc\x8d\xaa\xd1\x88\xa7\ \xd0\x80\xa7\xcd\x79\xa5\xc9\x77\xa5\xc8\x00\x00\x00\x7d\x9c\xb4\ \x83\xa5\xbe\x68\x8e\xa6\x58\x7d\x92\x72\x93\xad\x78\x96\xb2\x62\ \x7f\x98\x44\x63\x76\x44\x68\x7a\x4f\x76\x89\x67\x8e\xa3\x72\x95\ \xac\x70\x91\xa6\x80\xa1\xb6\x97\xb9\xd1\x9f\xbf\xdd\x97\xb6\xd2\ \x85\xa2\xbb\x6e\x8c\xa6\x72\x94\xae\x85\xaa\xc8\x8e\xb2\xd0\x78\ \x9c\xb6\x4b\x6f\x81\x53\x78\x88\x8e\xb5\xcc\x9c\xc1\xdc\x9a\xbd\ \xd6\x91\xb1\xc9\x7f\xa0\xb6\x80\xa0\xb5\x8f\xb0\xc7\x97\xba\xd1\ \x98\xbd\xd7\x95\xba\xd8\x90\xb9\xd7\x8f\xba\xd4\x8d\xb5\xcf\x8f\ \xb2\xd1\x8c\xb1\xd1\x83\xad\xc9\x85\xae\xc6\x90\xb3\xce\x98\xba\ \xd7\x97\xbb\xd6\x96\xbc\xd4\x93\xb8\xd1\x8d\xad\xc8\x87\xa4\xbf\ \x85\xa2\xbe\x86\xa5\xc2\x8d\xaf\xca\x91\xb7\xd2\x94\xbc\xd5\x96\ \xbc\xd5\x93\xbc\xd5\x91\xbc\xd4\x92\xbb\xd3\x96\xbb\xd4\x94\xb8\ \xd3\x92\xb6\xd3\x95\xb7\xd6\x97\xb8\xd7\x95\xb8\xd6\x96\xb9\xd6\ \x97\xb6\xd3\x9b\xb7\xd8\x9a\xb6\xd8\x92\xb3\xd4\x8d\xaf\xcd\x82\ \xa3\xbd\x77\x92\xaa\x6c\x86\x9a\x6b\x87\x99\x74\x94\xa5\x7e\x9d\ \xb2\x8c\xa9\xc1\x91\xb1\xcb\x93\xb7\xd2\x93\xb8\xd2\x93\xba\xd3\ \x92\xb8\xd2\x92\xb8\xd2\x92\xb7\xd2\x8c\xb4\xcd\x89\xb5\xca\x86\ \xb5\xca\x8a\xb5\xcd\x88\xae\xc8\x7b\x98\xb4\x5c\x78\x90\x3f\x5f\ \x73\x4c\x71\x84\x5c\x85\x97\x5c\x84\x98\x73\x98\xaf\x87\xaa\xc6\ \x8e\xb0\xcd\x8d\xaf\xcb\x80\xa9\xbf\x6e\x9b\xb0\x69\x96\xb1\x6e\ \x9c\xb9\x79\xa6\xc0\x86\xac\xc8\x88\xad\xca\x83\xab\xc8\x7b\xa3\ \xc3\x6f\x97\xb6\x5e\x86\xa2\x6a\x92\xab\x83\xab\xc4\x8a\xaf\xcb\ \x8e\xb2\xd0\x8e\xb2\xd0\x8e\xaf\xcf\x8d\xae\xce\x8a\xad\xcd\x85\ \xaa\xc8\x7e\xa4\xc2\x74\x9f\xbc\x75\xa0\xbb\x7a\xa2\xbb\x7f\xa3\ \xbd\x83\xa4\xbf\x8b\xab\xc5\x91\xae\xcc\x98\xb2\xd3\x9b\xb6\xd6\ \x98\xb7\xd3\x95\xb6\xd3\x94\xb5\xd2\x92\xb3\xd0\x92\xb4\xcf\x93\ \xb6\xd1\x98\xb9\xd6\x97\xb7\xd6\x91\xb4\xd4\x8e\xb6\xd2\x8b\xb4\ \xcd\x90\xb5\xcf\x92\xb3\xd0\x95\xb4\xd3\x94\xb2\xce\x93\xb2\xcd\ \x95\xb3\xd2\x97\xb3\xd7\x93\xb0\xd5\x8e\xb0\xd1\x8c\xb0\xd2\x8b\ \xb0\xd1\x89\xaf\xd1\x89\xaf\xd1\x89\xae\xd2\x87\xaf\xd1\x85\xac\ \xcc\x88\xa9\xca\x8f\xaa\xcf\x90\xa9\xd4\x8a\xa5\xd2\x81\xa2\xcb\ \x7b\xa2\xc8\x7c\xa3\xca\x00\x00\x00\x85\xa9\xc4\x84\xab\xc4\x72\ \x9c\xb4\x66\x8f\xa6\x76\x9c\xb6\x7c\x9e\xbb\x68\x8a\xa5\x4c\x71\ \x88\x54\x7a\x93\x5f\x88\xa0\x67\x91\xa7\x63\x89\x9d\x5b\x80\x93\ \x71\x98\xae\x94\xb8\xd3\xa0\xbe\xdd\x97\xb4\xcf\x79\x95\xad\x45\ \x64\x7c\x58\x7d\x96\x7e\xa2\xc0\x8a\xae\xcc\x7f\xa1\xc0\x62\x83\ \x9c\x4c\x6f\x86\x83\xaa\xc0\x9e\xc0\xd9\xa0\xbd\xd4\x84\xa1\xb6\ \x54\x73\x84\x51\x6f\x7f\x78\x94\xa7\x94\xb3\xca\x9c\xbd\xd8\x99\ \xbe\xdc\x95\xba\xd7\x8d\xb1\xcb\x83\xa6\xc0\x83\xa2\xbf\x89\xa5\ \xc2\x7e\x9e\xb6\x78\x99\xaf\x80\x9e\xb7\x8b\xa8\xc3\x90\xb0\xcc\ \x8f\xb1\xcb\x8c\xad\xc7\x7f\x9c\xb4\x6c\x87\xa1\x65\x80\x9a\x67\ \x85\x9d\x74\x94\xab\x8a\xaf\xc8\x93\xb8\xd5\x92\xb8\xd3\x8d\xb8\ \xcf\x89\xb4\xc9\x8c\xb2\xca\x90\xb0\xcb\x92\xb2\xce\x8e\xb0\xcf\ \x8d\xaf\xd1\x8e\xb2\xd2\x8f\xb3\xd0\x8e\xb2\xcd\x91\xaf\xcd\x94\ \xae\xd0\x94\xaf\xd1\x8c\xad\xcd\x86\xaa\xc4\x77\x98\xb0\x5c\x76\ \x8e\x52\x69\x7d\x65\x7e\x92\x6d\x88\x9e\x68\x84\x99\x6d\x8a\xa1\ \x83\xa2\xbc\x8c\xae\xc8\x92\xb4\xce\x94\xb7\xd1\x92\xb7\xd1\x90\ \xb5\xcf\x90\xb5\xcf\x8b\xb2\xcb\x88\xb4\xca\x86\xb6\xcb\x89\xb4\ \xcb\x89\xaf\xc9\x7d\x9d\xba\x60\x7e\x99\x57\x76\x8f\x70\x8e\xaa\ \x72\x92\xae\x62\x85\x9c\x5f\x80\x97\x7d\x9d\xb6\x8c\xab\xc8\x90\ \xaf\xcc\x8e\xb2\xcb\x87\xaf\xc6\x85\xac\xc6\x85\xae\xca\x89\xb1\ \xcb\x8d\xb1\xcc\x8d\xb1\xcc\x87\xaf\xcb\x88\xac\xcc\x7f\xa4\xc4\ \x6e\x95\xb4\x5a\x84\x9f\x6f\x98\xb1\x84\xaa\xc4\x8c\xb1\xcc\x8d\ \xb1\xce\x92\xb0\xd1\x95\xb1\xd2\x93\xb1\xd0\x8f\xaf\xca\x87\xac\ \xc3\x80\xab\xc0\x81\xab\xc1\x83\xa9\xbf\x86\xa5\xbe\x8c\xa8\xc3\ \x92\xad\xcc\x96\xb0\xd0\x9b\xb2\xd0\x9d\xb4\xd2\x9b\xb7\xd1\x96\ \xb5\xcf\x94\xb3\xcf\x94\xb3\xcf\x91\xb4\xd0\x93\xb5\xd1\x98\xb8\ \xd5\x95\xb6\xd3\x8f\xb4\xd0\x8f\xb4\xd0\x90\xb5\xcf\x90\xb5\xcf\ \x8f\xb4\xcf\x93\xb5\xd4\x94\xb2\xd1\x93\xb3\xd1\x95\xb2\xd4\x97\ \xaf\xd5\x95\xae\xd3\x8f\xae\xcf\x8a\xaf\xd0\x86\xae\xcf\x86\xaf\ \xd0\x84\xad\xd0\x83\xad\xd0\x84\xae\xcf\x86\xad\xcd\x8a\xaa\xcc\ \x8d\xa8\xcd\x8e\xa8\xd0\x89\xa4\xce\x86\xa3\xc9\x82\xa2\xc7\x7e\ \xa1\xc6\x00\x00\x00\x97\xbb\xd9\x93\xbb\xd5\x8a\xb6\xce\x85\xb2\ \xcc\x8d\xb6\xd3\x97\xbb\xda\x93\xb9\xd4\x8b\xb5\xce\x8f\xb7\xd5\ \x92\xb7\xd7\x90\xb5\xd1\x88\xae\xc5\x80\xa6\xbf\x88\xaf\xca\x98\ \xbd\xd9\xa0\xc2\xde\x9b\xb9\xd4\x80\xa0\xb9\x63\x86\xa2\x6a\x90\ \xae\x82\xa8\xc7\x8d\xb1\xd1\x84\xa8\xc8\x6f\x91\xb0\x55\x77\x92\ \x70\x95\xad\x9b\xbc\xd6\xa2\xbd\xd7\x88\xa3\xb9\x59\x76\x89\x3a\ \x56\x69\x50\x68\x7f\x89\xa4\xbc\x9a\xb9\xd4\x9a\xbc\xd8\x97\xb7\ \xd3\x88\xa6\xc1\x6a\x8a\xa3\x5f\x7e\x97\x6a\x86\xa0\x5f\x7c\x94\ \x55\x74\x8b\x66\x84\x9e\x77\x94\xaf\x79\x98\xb3\x7a\x9a\xb4\x77\ \x96\xb0\x6d\x88\xa2\x57\x71\x8c\x4c\x6a\x81\x4a\x6b\x7d\x57\x77\ \x8d\x81\xa4\xc0\x91\xb4\xd3\x8e\xb3\xd0\x86\xac\xc6\x7c\xa1\xb8\ \x75\x98\xae\x7c\x9b\xb3\x84\xa1\xbb\x82\xa2\xc0\x7d\xa0\xc0\x7f\ \xa3\xc0\x81\xa6\xbe\x82\xa2\xbb\x7f\x9c\xb6\x80\x9a\xb6\x81\x9d\ \xba\x80\xa1\xbe\x7c\x9e\xb8\x6e\x8d\xa6\x54\x70\x88\x56\x6d\x84\ \x6d\x82\x9a\x6f\x83\x9b\x5e\x74\x88\x4a\x65\x77\x66\x85\x9e\x83\ \xa1\xbc\x8c\xaa\xc6\x8a\xac\xc6\x86\xab\xc5\x89\xab\xc6\x8c\xae\ \xc8\x89\xae\xc8\x8c\xb3\xca\x8a\xb6\xca\x8b\xb4\xcb\x8b\xb1\xcc\ \x86\xa9\xc5\x76\x9a\xb7\x73\x97\xb1\x82\x9e\xbe\x84\x9d\xbe\x75\ \x92\xad\x62\x81\x9b\x6b\x8f\xa6\x81\xa4\xbe\x8c\xaf\xca\x8e\xb2\ \xce\x90\xb2\xce\x8e\xaf\xcd\x8e\xb2\xce\x8b\xb1\xcd\x8c\xb2\xcd\ \x8b\xb2\xcc\x8b\xb2\xcd\x8b\xae\xcd\x88\xaa\xc8\x7b\xa1\xbf\x67\ \x91\xae\x64\x8b\xa6\x77\x9a\xb5\x85\xa6\xc3\x8c\xac\xcb\x91\xaf\ \xce\x94\xaf\xd0\x95\xb0\xd1\x91\xb1\xcb\x8d\xb0\xc6\x89\xb0\xc3\ \x88\xac\xc0\x89\xaa\xc0\x87\xa6\xc1\x8d\xab\xc7\x96\xb0\xd1\x9a\ \xb3\xd5\x9d\xb2\xd2\x9f\xb4\xd3\x9c\xb5\xd3\x99\xb5\xd0\x93\xb2\ \xcc\x8f\xb2\xcc\x90\xb4\xd1\x93\xb5\xd3\x98\xb6\xd3\x98\xb7\xd3\ \x93\xb6\xd0\x91\xb6\xcf\x94\xb7\xd1\x95\xb6\xd2\x92\xb3\xd0\x94\ \xb3\xd3\x92\xb1\xd4\x94\xb2\xd6\x96\xb0\xd5\x9b\xae\xd6\x98\xae\ \xd4\x8f\xac\xd0\x88\xac\xcf\x86\xac\xce\x84\xad\xcd\x83\xac\xce\ \x81\xab\xcd\x80\xaa\xca\x84\xa9\xca\x86\xa8\xcb\x88\xa8\xcc\x86\ \xa6\xcc\x86\xa6\xcd\x87\xa3\xc8\x84\xa3\xc5\x7e\xa2\xc1\x00\x00\ \x00\x9f\xc2\xe0\x9c\xc0\xde\x98\xbf\xda\x96\xbc\xda\x9a\xbe\xde\ \xa0\xc2\xe1\x9c\xc5\xde\x96\xc3\xda\x98\xc1\xdc\x9e\xc1\xde\x9f\ \xc0\xdd\x9f\xbf\xdb\x9a\xbe\xdc\x9c\xc0\xdd\x9e\xc3\xde\xa1\xc5\ \xdd\x9f\xc1\xd8\x95\xba\xd2\x8c\xb1\xcd\x85\xac\xc9\x8a\xb1\xcd\ \x90\xb6\xd4\x91\xb4\xd4\x83\xa7\xc6\x6c\x8f\xad\x5e\x80\x9d\x90\ \xb0\xcd\xa1\xbd\xdb\x9c\xba\xd3\x87\xa4\xbe\x67\x82\x9d\x46\x5f\ \x7b\x6b\x86\xa1\x99\xb7\xd2\x99\xba\xd4\x95\xb4\xd1\x83\xa0\xbd\ \x67\x89\xa1\x51\x74\x8b\x5a\x7a\x94\x5b\x7a\x94\x59\x79\x94\x69\ \x8c\xa7\x7a\x9e\xb9\x72\x91\xac\x58\x75\x90\x4e\x6c\x86\x51\x6e\ \x8a\x4c\x69\x87\x3b\x5d\x75\x3a\x5c\x70\x5b\x7a\x92\x86\xa7\xc3\ \x96\xb5\xd6\x8f\xb0\xd0\x7e\xa1\xbf\x6c\x8c\xa8\x51\x73\x8a\x54\ \x74\x8b\x68\x86\xa0\x66\x86\xa4\x5a\x7e\x9b\x59\x7e\x98\x62\x87\ \x9d\x64\x85\x9c\x5c\x7a\x8e\x5b\x77\x8b\x66\x84\x9c\x6c\x8c\xa8\ \x67\x88\xa2\x5f\x7f\x97\x5c\x78\x92\x5e\x76\x90\x60\x75\x8b\x5b\ \x6d\x7f\x43\x56\x67\x31\x49\x5b\x54\x71\x8a\x74\x8e\xad\x7e\x97\ \xb9\x7f\x9a\xb8\x76\x95\xb1\x71\x90\xa9\x78\x99\xb3\x84\xa5\xbf\ \x8d\xad\xc6\x8e\xb0\xc7\x8c\xb2\xc8\x89\xaf\xc8\x89\xae\xc9\x84\ \xa9\xc4\x84\xa8\xc2\x8c\xa8\xc7\x8b\xa3\xc6\x84\x9d\xbf\x76\x95\ \xb4\x74\x99\xb4\x7f\xa5\xbf\x89\xaf\xca\x8c\xb0\xce\x91\xb0\xd0\ \x90\xae\xcf\x8b\xad\xcb\x8a\xaf\xcb\x87\xae\xcb\x86\xad\xcb\x89\ \xae\xcb\x8b\xad\xcb\x8a\xab\xc8\x84\xa9\xc6\x77\x9c\xbd\x6a\x8e\ \xad\x67\x88\xa4\x77\x94\xb1\x81\x9d\xbc\x88\xa5\xc4\x8b\xa8\xca\ \x8f\xab\xcc\x90\xad\xca\x8f\xb0\xc8\x8e\xb1\xc5\x90\xae\xc2\x8a\ \xa7\xc0\x8b\xa7\xc5\x92\xad\xcf\x99\xb1\xd5\x9b\xb3\xd7\x9a\xb2\ \xd4\x9b\xb3\xd3\x9a\xb4\xd2\x98\xb4\xd1\x93\xb1\xcd\x91\xb3\xd0\ \x90\xb2\xd1\x93\xb4\xd3\x97\xb5\xd2\x96\xb5\xd1\x94\xb6\xd0\x94\ \xb7\xd1\x95\xb5\xd2\x98\xb6\xd5\x98\xb3\xd2\x94\xb0\xce\x92\xb0\ \xd2\x8f\xaf\xd2\x93\xaf\xd3\x98\xad\xd1\x97\xae\xd2\x91\xac\xd3\ \x8a\xaa\xd0\x87\xab\xcb\x87\xad\xc9\x86\xac\xcb\x84\xaa\xcb\x82\ \xa7\xc8\x84\xa6\xc8\x86\xa5\xc8\x86\xa5\xc7\x86\xa6\xc8\x89\xa7\ \xcb\x89\xa7\xca\x84\xa6\xc8\x7e\xa3\xc5\x00\x00\x00\xa3\xc3\xe3\ \x9e\xc2\xe1\x9c\xc0\xe0\x9e\xbf\xe1\xa0\xbe\xe1\xa0\xc1\xe3\x99\ \xc3\xdf\x95\xc2\xdb\x9b\xc3\xdc\x9d\xc2\xdc\x9d\xc2\xdc\xa2\xc4\ \xe0\xa3\xc4\xe1\xa4\xc5\xe1\xa2\xc5\xdf\xa4\xc6\xe0\xa1\xc4\xdc\ \x9b\xc2\xd7\x94\xb9\xd2\x85\xab\xc4\x7c\xa1\xbc\x85\xaa\xc6\x92\ \xb4\xd2\x90\xb2\xd2\x81\xa3\xc4\x65\x86\xa7\x7c\x9a\xb8\x99\xb6\ \xd1\x9c\xbc\xd7\x92\xb3\xd0\x7c\x9a\xb6\x52\x6e\x88\x4f\x6c\x83\ \x8f\xad\xc6\x9c\xbb\xd7\x99\xb8\xd7\x90\xb0\xcf\x82\xa7\xc3\x7c\ \xa5\xbd\x84\xa9\xc5\x81\xa2\xc0\x7b\x9e\xbd\x7c\xa3\xbf\x82\xae\ \xc7\x82\xaa\xc4\x68\x8e\xa8\x4d\x72\x8e\x53\x76\x93\x5e\x7e\x9f\ \x57\x76\x93\x42\x62\x7a\x6a\x89\xa0\x8f\xaf\xc8\x99\xb7\xd3\x96\ \xb4\xd3\x86\xa7\xc8\x6f\x93\xb1\x58\x7e\x97\x5a\x80\x97\x6a\x8c\ \xa7\x5e\x81\xa0\x4a\x6e\x8b\x48\x6d\x88\x55\x7a\x93\x52\x79\x90\ \x46\x6c\x7e\x4b\x6f\x82\x64\x86\x9d\x6d\x91\xab\x5a\x7f\x95\x4c\ \x6f\x82\x5a\x7b\x91\x62\x7f\x98\x5e\x74\x89\x44\x56\x65\x25\x38\ \x47\x38\x4f\x64\x5f\x79\x96\x6b\x84\xa7\x6c\x83\xa5\x6b\x84\xa1\ \x5d\x77\x90\x44\x62\x76\x5a\x7a\x91\x7b\x9a\xb4\x8e\xab\xc7\x92\ \xb0\xcb\x8d\xaf\xc8\x89\xac\xc3\x86\xa8\xc0\x83\xa3\xba\x85\xa1\ \xb9\x87\xa1\xbd\x85\x9d\xbf\x7e\x98\xb9\x78\x99\xb6\x7b\xa0\xbb\ \x7f\xa4\xbf\x83\xa9\xc4\x85\xa8\xc5\x8d\xa9\xca\x8d\xa6\xc8\x88\ \xa5\xc5\x87\xa8\xc5\x86\xa8\xc5\x82\xa5\xc3\x84\xa4\xc3\x87\xa3\ \xc2\x89\xa5\xc4\x89\xa9\xc8\x82\xa3\xc5\x76\x98\xb7\x67\x85\xa2\ \x63\x80\x9b\x72\x8e\xac\x77\x96\xb4\x7a\x98\xb7\x82\x9d\xbc\x83\ \x9e\xbc\x85\xa4\xbf\x88\xa9\xc5\x8e\xab\xc5\x8b\xa6\xc3\x8c\xa7\ \xc6\x94\xae\xd0\x99\xb1\xd5\x99\xb1\xd5\x9b\xb4\xd6\x9a\xb4\xd4\ \x97\xb2\xcf\x95\xb3\xcf\x95\xb5\xd3\x94\xb3\xd3\x94\xb4\xd7\x8f\ \xb2\xd3\x90\xb3\xd0\x91\xb5\xd0\x91\xb4\xce\x96\xb4\xd1\x9a\xb4\ \xd4\x99\xb4\xd1\x97\xb1\xcf\x93\xae\xcb\x92\xb0\xce\x8d\xb0\xcf\ \x8e\xae\xd0\x93\xac\xcf\x97\xac\xd4\x96\xad\xd6\x90\xac\xd0\x8c\ \xac\xca\x89\xad\xc7\x89\xae\xca\x86\xaa\xcb\x84\xa6\xc7\x85\xa3\ \xc4\x8a\xa4\xc6\x89\xa2\xc5\x89\xa4\xc6\x88\xa5\xc7\x86\xa5\xc8\ \x82\xa3\xca\x7c\xa0\xc7\x00\x00\x00\xa2\xc0\xe4\x9d\xc0\xe6\x9a\ \xbd\xe3\x9c\xbc\xe4\xa0\xbe\xe4\x9f\xc3\xe7\x9a\xc5\xe4\x9a\xc4\ \xe0\x9e\xc3\xdf\x9f\xc2\xdf\x9f\xc4\xe1\xa0\xc5\xe2\xa5\xc6\xe4\ \xa7\xc5\xe2\xa8\xc6\xe3\xa6\xc5\xe2\x9f\xc4\xe0\x9b\xc3\xdc\x92\ \xb7\xd1\x7e\xa2\xbe\x60\x84\xa1\x67\x8f\xa9\x84\xa9\xc4\x94\xb7\ \xd4\x92\xb1\xd1\x7c\x9a\xba\x6d\x8a\xa7\x88\xa6\xc1\x97\xb5\xd1\ \x96\xb6\xd3\x88\xa8\xc5\x66\x87\xa0\x43\x63\x7a\x7a\x98\xb0\x9e\ \xbb\xd9\x9e\xbd\xde\x9b\xbb\xde\x97\xbb\xdb\x99\xbd\xdb\x97\xbc\ \xdc\x98\xb9\xda\x95\xb6\xd7\x93\xb8\xd6\x92\xba\xd6\x91\xb7\xd5\ \x85\xad\xcc\x75\xa1\xc1\x6f\x98\xb8\x75\x99\xba\x72\x90\xb0\x55\ \x73\x8d\x65\x88\x9d\x8b\xaf\xc5\x9b\xba\xd5\x99\xb9\xd6\x90\xb2\ \xd3\x87\xab\xcb\x82\xa5\xc5\x84\xaa\xc5\x89\xac\xcc\x84\xa6\xc9\ \x7c\x9f\xc0\x77\x9b\xb9\x7a\xa0\xbc\x75\x9e\xb5\x60\x8a\xa1\x59\ \x7f\x9a\x6c\x91\xae\x7b\xa3\xbe\x77\xa1\xb7\x67\x90\xa1\x61\x88\ \x9c\x66\x86\xa0\x5d\x74\x8d\x3c\x4d\x61\x27\x3a\x4c\x4d\x62\x7c\ \x69\x81\xa3\x70\x8b\xae\x68\x83\xa3\x5d\x77\x90\x57\x71\x84\x3a\ \x56\x67\x3d\x5c\x70\x71\x90\xaa\x8c\xa8\xc8\x92\xae\xce\x87\xa9\ \xc4\x7c\xa2\xb9\x79\x99\xb0\x72\x8b\xa3\x71\x86\x9e\x73\x8a\xa6\ \x71\x8a\xac\x64\x7e\x9c\x5e\x80\x98\x6c\x90\xa9\x70\x95\xac\x6f\ \x92\xa9\x74\x94\xac\x7c\x96\xb5\x7d\x96\xb7\x77\x92\xaf\x7d\x99\ \xb4\x7e\x99\xb5\x79\x96\xb1\x72\x8f\xa8\x75\x8e\xa9\x7e\x98\xb5\ \x85\xa0\xc1\x80\xa0\xc0\x76\x95\xb1\x66\x82\x9d\x54\x70\x8a\x58\ \x73\x8e\x64\x82\x9b\x69\x83\x9d\x68\x7f\x98\x6c\x82\x9e\x74\x8e\ \xa9\x7f\x9c\xb8\x86\xa3\xc0\x87\xa5\xc2\x8d\xab\xc9\x92\xaf\xce\ \x96\xb2\xd2\x98\xb3\xd4\x96\xb3\xd1\x99\xb5\xd4\x96\xb5\xd3\x92\ \xb5\xd2\x92\xb5\xd3\x93\xb3\xd4\x92\xb4\xd5\x8e\xb1\xd1\x90\xb5\ \xd1\x91\xb6\xd0\x91\xb5\xd1\x97\xb5\xd6\x99\xb3\xd3\x98\xb2\xd0\ \x95\xaf\xcd\x94\xaf\xcc\x90\xb1\xce\x8e\xb2\xd0\x8f\xaf\xd2\x92\ \xab\xcf\x96\xad\xd2\x94\xab\xd3\x93\xab\xd2\x90\xab\xcc\x8c\xaf\ \xc9\x89\xad\xca\x86\xaa\xcd\x87\xa8\xcd\x8b\xa6\xcc\x8c\xa4\xcb\ \x8a\xa1\xc9\x89\xa0\xc8\x89\xa2\xc8\x86\xa1\xc8\x83\xa3\xcb\x80\ \xa0\xc9\x00\x00\x00\x99\xbb\xe0\x97\xbc\xe3\x93\xbb\xe2\x96\xba\ \xe2\x9a\xbc\xe5\x9a\xc1\xe5\x99\xc4\xe4\x9d\xc3\xe3\xa1\xc1\xe4\ \xa4\xc3\xe6\xa2\xc3\xe5\xa0\xc4\xe4\xa2\xc2\xe3\xa6\xc3\xe3\xa6\ \xc0\xe3\xa3\xc0\xe2\x9d\xc0\xe1\x99\xbe\xdd\x93\xb8\xd5\x84\xaa\ \xc7\x6b\x94\xb1\x6a\x96\xb2\x85\xaa\xc8\x94\xb6\xd5\x96\xb7\xd6\ \x8c\xae\xca\x7a\x9c\xb7\x79\x9c\xb8\x87\xa8\xc8\x91\xb0\xd1\x8b\ \xac\xca\x6f\x95\xae\x4c\x6f\x85\x64\x84\x9c\x9b\xb4\xd5\xa4\xc0\ \xe2\xa1\xc0\xe2\xa2\xc1\xe3\xa0\xc1\xe3\x9e\xbf\xdf\xa0\xbf\xde\ \xa1\xbe\xde\x9f\xbf\xde\x9a\xbf\xdb\x95\xbd\xda\x8f\xba\xd8\x8d\ \xb6\xd7\x89\xb0\xcf\x8a\xaa\xc9\x81\x9b\xbb\x65\x82\x9c\x5d\x7f\ \x93\x88\xac\xc3\x98\xb9\xd4\x9c\xbd\xda\x9a\xba\xda\x99\xb9\xda\ \x94\xb7\xd8\x93\xb5\xd5\x9b\xbb\xda\x98\xb8\xd9\x92\xb6\xd6\x90\ \xb4\xd5\x90\xb4\xd1\x8a\xaf\xca\x7f\xa5\xbf\x79\x9c\xbc\x7c\xa2\ \xc3\x84\xae\xcc\x88\xb2\xca\x84\xac\xc1\x7c\xa2\xbb\x73\x97\xb2\ \x63\x80\x9a\x3b\x51\x69\x37\x4d\x65\x53\x6a\x86\x60\x79\x97\x67\ \x84\x9f\x65\x82\x9a\x58\x76\x86\x60\x79\x89\x54\x6d\x7f\x38\x54\ \x65\x61\x81\x98\x88\xa5\xc5\x8f\xaa\xcd\x83\xa5\xc3\x75\x9b\xb6\ \x6c\x8e\xa9\x5d\x79\x94\x58\x73\x8c\x62\x7c\x9a\x63\x7c\x9e\x57\ \x73\x91\x4d\x70\x87\x56\x7b\x92\x55\x78\x8f\x4a\x69\x7f\x4c\x6a\ \x82\x5e\x79\x97\x5e\x78\x98\x5c\x77\x93\x6a\x82\x9e\x70\x87\xa1\ \x66\x81\x96\x54\x72\x83\x53\x71\x83\x6d\x8a\xa3\x7e\x97\xb8\x80\ \x9c\xbc\x73\x8d\xa7\x5a\x70\x88\x3d\x55\x6e\x3f\x59\x73\x40\x5a\ \x71\x45\x5a\x6e\x3f\x52\x65\x55\x6a\x80\x69\x80\x96\x70\x89\xa1\ \x7d\x9a\xb2\x7f\xa1\xba\x86\xaa\xc3\x8f\xb0\xcb\x95\xb1\xd0\x94\ \xb1\xcd\x95\xb2\xcd\x94\xb3\xcf\x94\xb6\xd4\x92\xb6\xd3\x93\xb7\ \xd4\x92\xb5\xd2\x90\xb3\xd3\x90\xb3\xd2\x92\xb5\xd0\x96\xb7\xd1\ \x97\xb4\xd2\x96\xb2\xd3\x99\xb3\xd1\x99\xb2\xd0\x97\xb0\xd0\x97\ \xb1\xd3\x92\xb4\xd4\x92\xb4\xd4\x92\xaf\xd1\x94\xae\xd0\x98\xaf\ \xd0\x98\xad\xd2\x99\xad\xd5\x94\xaa\xce\x8d\xac\xca\x8a\xac\xca\ \x89\xa9\xcd\x8c\xa7\xcf\x8c\xa4\xce\x8b\xa3\xce\x8a\xa0\xcd\x89\ \x9f\xcb\x8c\xa2\xca\x89\xa1\xc9\x83\xa0\xc8\x82\xa0\xc8\x00\x00\ \x00\x94\xb6\xda\x94\xb8\xdf\x91\xb9\xe0\x90\xb8\xdf\x90\xb8\xe0\ \x93\xbf\xe3\x99\xc2\xe3\xa1\xc2\xe4\xa5\xc1\xe7\xa4\xc3\xe8\xa0\ \xc1\xe5\x9c\xbd\xe0\x9d\xbc\xdf\x9f\xbc\xde\x9e\xbb\xde\x9e\xbb\ \xe0\x9a\xbc\xe0\x98\xba\xdc\x93\xb9\xd8\x89\xb1\xd1\x7f\xaa\xc9\ \x7d\xa9\xc6\x88\xad\xcf\x90\xb2\xd4\x96\xb7\xd9\x93\xb7\xd5\x8c\ \xb0\xcd\x87\xab\xc9\x84\xa8\xc9\x84\xa9\xc7\x85\xa8\xc3\x74\x9a\ \xb3\x56\x79\x90\x59\x77\x90\x94\xae\xcc\xa2\xbe\xe0\xa1\xc1\xe2\ \xa2\xc1\xe1\x9f\xc1\xdf\x9f\xc1\xdd\xa0\xbe\xd8\xa2\xbd\xd9\xa1\ \xbd\xdb\x9e\xbe\xdb\x99\xbf\xda\x95\xbe\xd9\x93\xb9\xd6\x8f\xb2\ \xcf\x8a\xa7\xc3\x7d\x96\xb2\x69\x82\x9b\x54\x73\x88\x86\xa7\xc0\ \x99\xb9\xd7\x9f\xbe\xdf\xa0\xbd\xdd\xa1\xbd\xdc\x9b\xb9\xd8\x9b\ \xbb\xd7\xa1\xbe\xd9\xa1\xbe\xda\x9c\xbe\xdb\x96\xba\xda\x94\xba\ \xd7\x91\xb5\xcd\x89\xac\xc4\x85\xa5\xc1\x85\xa8\xc6\x8b\xb2\xcd\ \x90\xb6\xce\x8f\xb3\xcd\x8b\xb0\xcb\x80\xa5\xc4\x6b\x8d\xab\x4b\ \x69\x83\x40\x5d\x75\x51\x6e\x87\x5a\x76\x8f\x5b\x75\x8d\x5f\x7c\ \x8f\x58\x77\x83\x5b\x76\x82\x66\x7c\x8c\x3e\x58\x69\x53\x73\x88\ \x81\xa1\xbd\x88\xa7\xc9\x7f\xa3\xc4\x77\x9e\xbf\x72\x95\xb8\x69\ \x8a\xac\x64\x87\xa6\x6f\x93\xb0\x77\x95\xb7\x71\x8f\xaf\x6d\x90\ \xac\x73\x96\xb1\x6b\x8c\xa7\x62\x81\x9a\x61\x7f\x9b\x6c\x8a\xaa\ \x6c\x8a\xaa\x65\x82\x9e\x70\x8a\xa5\x7a\x92\xab\x6f\x8b\xa1\x5b\ \x7c\x90\x59\x7d\x91\x6f\x90\xac\x82\x9d\xbf\x80\x99\xbc\x6d\x85\ \xa1\x46\x5b\x74\x39\x4f\x6c\x45\x5e\x7b\x3b\x50\x6b\x3d\x50\x67\ \x48\x5d\x73\x5b\x73\x8b\x62\x7a\x92\x61\x78\x8f\x71\x8b\xa3\x7e\ \x9f\xb6\x88\xac\xc3\x91\xaf\xc9\x97\xb0\xce\x99\xb1\xcc\x99\xb1\ \xcd\x96\xb0\xce\x94\xb4\xd0\x93\xb7\xd1\x94\xb7\xd5\x95\xb4\xd5\ \x8f\xb1\xd2\x91\xb2\xd0\x96\xb5\xcf\x9a\xb7\xd1\x9c\xb4\xd2\x9a\ \xb3\xd3\x9a\xb3\xd4\x9a\xb1\xd3\x97\xae\xd0\x97\xaf\xd3\x96\xb4\ \xd5\x90\xb2\xd2\x8f\xb1\xce\x91\xb0\xcd\x94\xb0\xcc\x95\xaf\xd0\ \x96\xae\xd3\x95\xaa\xcf\x91\xab\xcd\x8e\xab\xcb\x8b\xa8\xcb\x8c\ \xa7\xcd\x8b\xa6\xcb\x89\xa3\xca\x86\x9d\xc8\x89\x9e\xc8\x8b\x9f\ \xc7\x87\xa0\xc7\x83\x9f\xc5\x82\x9f\xc4\x00\x00\x00\x92\xb4\xd7\ \x91\xb4\xda\x8e\xb5\xd9\x8c\xb6\xda\x8d\xb9\xdd\x91\xbc\xdf\x9a\ \xc0\xe1\xa3\xc0\xe3\xa5\xc0\xe6\x9e\xbf\xe5\x9a\xbd\xe0\x97\xb9\ \xdb\x97\xb5\xd9\x97\xb5\xd8\x98\xb6\xd9\x98\xb6\xdb\x97\xb9\xdc\ \x96\xba\xdc\x91\xb7\xda\x8b\xb1\xd3\x85\xab\xce\x84\xac\xcd\x85\ \xad\xcf\x8e\xb3\xd7\x95\xb8\xdb\x96\xba\xd9\x93\xb7\xd5\x91\xb4\ \xd2\x8e\xaf\xcf\x88\xab\xc9\x82\xa8\xc2\x76\x9b\xb6\x64\x85\xa0\ \x63\x80\x9b\x8f\xa9\xc7\xa0\xbd\xdb\x9f\xbf\xdd\x9e\xbf\xdc\x9d\ \xc0\xdb\x9b\xbd\xd9\x9e\xbd\xd8\xa1\xbb\xd8\xa3\xbb\xda\xa2\xbc\ \xd7\x9f\xbf\xd6\x97\xbc\xd4\x91\xb5\xd1\x87\xa6\xc3\x75\x91\xab\ \x64\x80\x97\x60\x7e\x93\x53\x76\x8a\x83\xa7\xbf\x9a\xb9\xd9\x9e\ \xbc\xdd\xa1\xbc\xdc\xa1\xbc\xda\x9f\xbd\xd9\x9e\xbc\xd6\xa0\xc0\ \xd8\xa1\xc0\xda\x9d\xbd\xdb\x9c\xbc\xdd\x98\xbd\xd9\x91\xb6\xcd\ \x84\xa6\xbb\x78\x97\xaf\x7c\x9b\xb6\x8b\xae\xc7\x92\xb5\xcc\x96\ \xb5\xd0\x90\xb1\xd0\x8a\xae\xce\x7b\x9e\xbe\x69\x88\xa6\x56\x75\ \x91\x55\x75\x90\x5c\x7a\x95\x59\x74\x90\x62\x7f\x95\x5d\x7b\x89\ \x55\x71\x7d\x62\x78\x88\x42\x5c\x6d\x46\x69\x7c\x77\x9e\xb8\x80\ \xa7\xc3\x82\xa9\xc8\x83\xa6\xc9\x81\xa1\xc8\x7c\x9f\xc5\x7a\xa2\ \xc4\x7e\xa5\xc5\x85\xa6\xc9\x8a\xa9\xcc\x8b\xaa\xcb\x8d\xaa\xc9\ \x85\xa4\xc4\x82\xa0\xc1\x7f\x9f\xc0\x81\xa4\xc4\x80\xa3\xc2\x7c\ \x9d\xba\x82\xa0\xbb\x89\xa5\xbf\x83\xa2\xbb\x76\x9a\xb3\x70\x96\ \xb4\x78\x9d\xbf\x83\xa3\xc7\x7d\x9c\xbc\x68\x84\xa0\x46\x60\x7b\ \x48\x63\x80\x5b\x75\x95\x53\x6a\x87\x4e\x64\x7f\x5e\x78\x94\x64\ \x82\xa1\x65\x83\x9f\x5c\x77\x91\x6b\x89\xa1\x81\xa2\xba\x8b\xaf\ \xc6\x93\xb0\xcc\x99\xb2\xd0\x9a\xb2\xcf\x9c\xb2\xd3\x98\xb0\xd3\ \x97\xb4\xd4\x96\xb6\xd4\x99\xb6\xd7\x98\xb3\xd6\x94\xb0\xd2\x95\ \xb2\xd0\x96\xb5\xcf\x98\xb5\xd0\x9c\xb4\xd3\x9a\xb2\xd3\x9a\xb2\ \xd6\x9a\xb2\xd6\x99\xae\xd2\x99\xae\xd3\x96\xb1\xd3\x91\xb1\xcf\ \x8c\xb1\xcd\x8d\xb1\xcc\x90\xaf\xcd\x91\xaf\xd1\x90\xac\xd0\x90\ \xa9\xcf\x91\xa9\xcd\x8f\xaa\xcd\x8d\xa7\xcb\x8d\xa8\xcb\x87\xa5\ \xc9\x84\xa3\xc8\x84\x9f\xc6\x85\x9d\xc5\x85\x9b\xc2\x82\x9d\xc2\ \x7e\x9d\xc2\x80\x9e\xc3\x00\x00\x00\x91\xaf\xcf\x8c\xaf\xd1\x89\ \xb1\xd3\x88\xb1\xd2\x8a\xb1\xd2\x90\xb5\xd3\x98\xb8\xd6\x9d\xb7\ \xda\x9c\xba\xdc\x96\xba\xdb\x91\xb7\xd8\x91\xb4\xd6\x90\xb1\xd5\ \x95\xb3\xd5\x92\xb1\xd2\x95\xb4\xd4\x94\xb5\xd6\x92\xb8\xd8\x8d\ \xb2\xd6\x8a\xab\xd0\x85\xa7\xcd\x82\xa8\xcb\x7f\xaa\xcc\x85\xb0\ \xd1\x90\xb7\xd8\x95\xb9\xd8\x96\xb8\xd4\x95\xb2\xcf\x92\xaf\xce\ \x92\xb2\xd2\x8a\xaf\xcb\x80\xa4\xc1\x77\x98\xb4\x7b\x99\xb2\x97\ \xb2\xcd\xa2\xc0\xdc\x9e\xbe\xdb\x9a\xba\xd7\x94\xb7\xd4\x96\xb8\ \xd7\x9a\xb7\xd7\xa0\xb8\xda\xa3\xb9\xd8\xa4\xb9\xd5\xa1\xbb\xd3\ \x9a\xb8\xd1\x90\xaf\xcc\x80\x9b\xb8\x62\x7e\x95\x53\x72\x86\x57\ \x7b\x8f\x5e\x85\x9b\x88\xad\xc7\x9a\xb9\xda\x9c\xb8\xd9\x9c\xb9\ \xd7\x9c\xb9\xd5\x9e\xbb\xd6\xa2\xbd\xd8\x9f\xbc\xd8\x9d\xbd\xd9\ \xa0\xbf\xdc\xa0\xbd\xdd\x9b\xbc\xda\x95\xb6\xcf\x85\xa3\xba\x6e\ \x8c\xa4\x75\x94\xaf\x88\xab\xc5\x94\xb4\xce\x97\xb5\xd2\x96\xb5\ \xd3\x93\xb3\xd3\x92\xad\xd1\x86\xa0\xc5\x7a\x95\xb8\x68\x89\xaa\ \x65\x86\xa6\x66\x84\xa4\x6e\x8a\xa5\x62\x7d\x90\x4f\x67\x77\x5a\ \x6e\x80\x45\x5d\x6e\x45\x68\x7b\x77\xa0\xb9\x80\xad\xc5\x85\xad\ \xc7\x8c\xae\xcb\x8e\xab\xcc\x8b\xac\xcd\x8a\xb0\xd0\x8b\xae\xcf\ \x91\xaf\xd4\x92\xae\xd3\x94\xb0\xd2\x92\xb0\xcf\x8e\xad\xce\x89\ \xa9\xcb\x85\xa7\xc9\x83\xa7\xc4\x83\xa8\xc2\x81\xa7\xc1\x85\xa8\ \xc2\x8a\xac\xc7\x8d\xae\xca\x84\xa9\xc6\x7f\xa7\xcb\x81\xa8\xcd\ \x83\xa8\xc9\x7d\xa1\xbf\x6e\x8f\xab\x55\x76\x90\x4d\x6f\x8b\x67\ \x85\xa2\x67\x82\x9d\x5b\x74\x8f\x64\x85\xa1\x70\x96\xb2\x6d\x90\ \xae\x67\x86\xa3\x74\x92\xae\x86\xa7\xc0\x90\xb1\xca\x97\xb4\xd1\ \x99\xb4\xd1\x99\xb3\xd0\x9c\xb3\xd3\x9c\xb2\xd4\x99\xb3\xd5\x99\ \xb3\xd5\x9a\xb3\xd6\x9b\xb3\xd7\x99\xb2\xd5\x95\xb3\xd1\x94\xb5\ \xd0\x95\xb5\xd0\x98\xb4\xd0\x98\xb1\xd3\x96\xb1\xd3\x96\xaf\xd2\ \x97\xae\xcf\x98\xac\xcd\x94\xad\xce\x91\xad\xcc\x8c\xb0\xce\x88\ \xac\xca\x89\xac\xcc\x88\xab\xcc\x87\xa9\xca\x88\xa9\xca\x88\xa6\ \xcb\x8c\xa8\xcd\x8d\xa7\xcc\x89\xa4\xc9\x84\xa4\xc9\x80\xa2\xc6\ \x82\xa1\xc5\x81\x9e\xc1\x7f\x9c\xbf\x7a\x9c\xbf\x7b\x9d\xc1\x7c\ \x9c\xc1\x00\x00\x00\x7e\x99\xb8\x7e\x9e\xc1\x80\xa3\xc5\x7c\x9f\ \xc0\x7a\x9c\xb7\x7c\x9c\xb4\x86\xa4\xba\x8b\xa6\xc1\x8c\xa9\xc7\ \x8b\xad\xce\x8a\xac\xcf\x86\xa7\xca\x88\xa7\xc9\x8e\xab\xcb\x91\ \xae\xca\x8f\xae\xc9\x8b\xad\xcb\x88\xad\xcf\x87\xaa\xce\x89\xa7\ \xcc\x83\xa4\xc9\x7f\xa5\xc8\x7b\xa5\xc4\x80\xa9\xc7\x8b\xae\xd0\ \x92\xb2\xd3\x92\xb1\xcc\x93\xad\xc9\x93\xac\xcc\x92\xad\xcd\x8f\ \xab\xca\x8c\xa9\xc7\x8a\xa7\xc6\x91\xad\xcb\x9b\xb7\xd6\x9c\xb9\ \xd8\x96\xb6\xd4\x91\xb5\xd1\x8c\xb3\xd0\x8a\xaf\xd0\x93\xb2\xd3\ \x99\xb0\xd4\x9c\xb2\xd4\x9d\xb5\xd1\x9d\xb8\xd0\x97\xb4\xcf\x91\ \xae\xca\x86\xa0\xbd\x6f\x8d\xa4\x63\x85\x9a\x65\x89\xa2\x78\x9d\ \xb7\x8a\xb0\xca\x94\xb3\xd4\x93\xaf\xd3\x94\xb3\xd3\x97\xb6\xd3\ \x9d\xb9\xd4\x9e\xb8\xd6\x9e\xbb\xd9\x9b\xbd\xda\x9b\xbd\xd8\x9e\ \xbc\xda\x9c\xbb\xd9\x98\xb7\xd2\x8f\xad\xc6\x86\xa5\xbb\x86\xa7\ \xc2\x92\xb1\xce\x97\xb5\xd1\x98\xb6\xd3\x9b\xb8\xd5\x96\xb4\xd2\ \x96\xb0\xd2\x94\xac\xd1\x8b\xa4\xc9\x7c\x9d\xbd\x76\x98\xb6\x77\ \x97\xb2\x78\x93\xae\x67\x82\x98\x46\x5d\x71\x47\x5a\x6d\x46\x59\ \x6e\x52\x6e\x85\x7f\xa3\xbe\x88\xb0\xcb\x8b\xaf\xcb\x8f\xb1\xcb\ \x91\xb0\xcd\x8c\xb1\xcc\x90\xb5\xcf\x93\xb3\xd1\x96\xb0\xd4\x93\ \xad\xd3\x91\xae\xd1\x8e\xaf\xcf\x8c\xac\xca\x89\xa8\xc9\x7e\x9d\ \xbf\x75\x95\xb4\x75\x97\xb4\x77\x9b\xb5\x7e\xa2\xba\x85\xa6\xc2\ \x88\xaa\xc6\x86\xab\xc9\x83\xab\xce\x84\xab\xcf\x82\xa9\xc9\x7f\ \xa5\xc5\x77\x9b\xba\x6b\x8f\xad\x60\x85\xa2\x68\x8b\xa8\x6d\x8d\ \xa9\x66\x84\x9e\x5c\x7e\x95\x73\x98\xb0\x7e\xa1\xbd\x7c\x9d\xba\ \x84\xa1\xbf\x8d\xac\xc7\x92\xb3\xcc\x96\xb3\xce\x98\xb1\xcf\x99\ \xb2\xd0\x99\xb4\xd0\x9c\xb3\xcf\x9e\xb5\xd2\x9b\xb5\xd3\x9a\xb4\ \xd2\x98\xb4\xd1\x98\xb5\xd2\x96\xb6\xd3\x97\xb8\xd4\x98\xb6\xd3\ \x99\xb3\xd1\x98\xb0\xd0\x96\xb0\xce\x97\xae\xce\x98\xac\xcc\x95\ \xab\xcb\x92\xac\xcb\x8d\xab\xc8\x8b\xad\xcb\x88\xaa\xca\x87\xaa\ \xc9\x83\xa6\xc5\x82\xa6\xc5\x80\xa6\xc4\x7f\xa5\xc7\x81\xa5\xc9\ \x85\xa4\xca\x83\xa4\xca\x7f\xa1\xc7\x7f\xa3\xc5\x80\xa0\xc2\x7f\ \x9e\xc0\x7a\x9b\xbc\x77\x9b\xbc\x76\x99\xbb\x7a\x99\xbc\x00\x00\ \x00\x49\x65\x83\x58\x77\x99\x64\x86\xaa\x5c\x80\x9e\x4e\x71\x86\ \x4c\x6f\x81\x5b\x7a\x8c\x68\x85\x9a\x6d\x89\xa3\x76\x93\xb0\x7a\ \x97\xb7\x74\x92\xb0\x70\x8d\xa9\x78\x93\xaf\x83\x9e\xb9\x80\x9e\ \xb8\x75\x95\xb2\x6e\x91\xb2\x76\x97\xbb\x7e\x9a\xbf\x7b\x9a\xbf\ \x71\x94\xb6\x6b\x92\xae\x74\x97\xb3\x80\xa0\xc0\x82\xa1\xc1\x7e\ \x9b\xb8\x7b\x96\xb3\x86\x9e\xbd\x88\xa3\xc2\x8c\xa3\xc2\x88\x9f\ \xbe\x88\xa1\xc2\x8e\xa7\xc9\x93\xac\xd0\x90\xaa\xcd\x8c\xa9\xca\ \x86\xa9\xc7\x83\xaa\xc9\x84\xa9\xc8\x87\xa9\xc9\x8d\xaa\xcc\x8e\ \xa8\xcb\x90\xab\xc9\x91\xaf\xca\x91\xb1\xce\x90\xaf\xcf\x8c\xa9\ \xc7\x85\xa3\xbf\x7f\xa3\xbc\x80\xa5\xbe\x83\xa9\xc1\x88\xad\xc7\ \x8c\xab\xcc\x8c\xaa\xce\x8d\xae\xd0\x8f\xaf\xcf\x98\xb4\xd1\x9b\ \xb5\xd3\x99\xb7\xd6\x94\xba\xd5\x94\xba\xd4\x96\xba\xd5\x9a\xb7\ \xd6\x9d\xb7\xd5\x9a\xb5\xcf\x97\xb4\xcc\x97\xb5\xce\x95\xb5\xd1\ \x97\xb4\xd2\x98\xb6\xd4\x98\xb6\xd4\x95\xb2\xd1\x97\xb0\xd3\x97\ \xae\xd4\x92\xaa\xcf\x84\xa4\xc6\x7e\x9f\xbf\x7b\x9f\xb9\x7b\x9a\ \xb6\x6c\x8b\xa3\x4f\x6b\x81\x3c\x54\x68\x43\x58\x6e\x62\x7c\x97\ \x8b\xac\xc9\x8d\xb2\xd1\x8b\xaf\xcd\x8c\xaf\xcb\x91\xb0\xcd\x8f\ \xb3\xcc\x8f\xb5\xce\x93\xb3\xcf\x97\xb1\xd4\x93\xad\xd2\x8c\xa9\ \xcd\x88\xab\xc9\x85\xa6\xc2\x7d\x9d\xbb\x6b\x88\xa5\x56\x72\x8d\ \x54\x73\x8e\x64\x85\x9e\x6d\x8e\xa6\x77\x97\xb2\x80\xa3\xc0\x84\ \xa8\xc7\x84\xab\xcb\x86\xac\xcf\x83\xac\xcd\x7f\xa7\xc7\x7d\xa2\ \xc1\x76\x9e\xbd\x70\x96\xb8\x6e\x91\xb3\x70\x91\xb2\x6f\x8e\xac\ \x5b\x7c\x91\x67\x8c\x9e\x80\xa1\xb9\x83\xa2\xbf\x88\xa6\xc3\x91\ \xaf\xc8\x94\xb2\xc8\x97\xb2\xcc\x97\xb3\xcf\x95\xb3\xce\x94\xb3\ \xce\x95\xb1\xcc\x99\xb2\xce\x9a\xb2\xd0\x99\xb5\xd1\x93\xb4\xce\ \x92\xb5\xce\x94\xb5\xd1\x97\xb4\xd4\x98\xb1\xd3\x9c\xb2\xd2\x9b\ \xb1\xd1\x97\xb1\xcf\x93\xad\xcc\x92\xac\xcc\x90\xab\xc9\x8d\xac\ \xca\x87\xa9\xc7\x88\xab\xca\x83\xa6\xc8\x7e\xa3\xc3\x7e\xa3\xc1\ \x7c\xa4\xc0\x73\xa1\xbd\x74\xa2\xc1\x78\xa2\xc5\x7e\xa3\xc8\x7b\ \xa0\xc6\x78\xa1\xc4\x78\xa0\xc0\x7a\x9e\xbe\x7c\x9b\xbd\x7d\x9c\ \xbe\x78\x9a\xbb\x77\x99\xba\x78\x99\xba\x00\x00\x00\x4e\x6e\x8d\ \x5f\x81\xa4\x6c\x8f\xb1\x63\x87\xa4\x46\x6e\x81\x3b\x63\x74\x48\ \x6a\x7f\x4a\x68\x80\x4c\x69\x81\x5a\x75\x91\x64\x7f\x9d\x58\x79\ \x90\x4e\x70\x82\x58\x76\x8b\x67\x83\x9c\x63\x80\x9a\x4f\x6c\x88\ \x46\x66\x84\x59\x7a\x9c\x6c\x89\xad\x6a\x87\xaa\x58\x76\x96\x47\ \x66\x7f\x51\x6f\x88\x62\x82\x9d\x69\x89\xa5\x5d\x7b\x96\x5a\x73\ \x8f\x6a\x83\x9f\x7a\x94\xb1\x7a\x8f\xae\x71\x84\xa3\x72\x89\xa7\ \x7b\x93\xb4\x7e\x93\xb7\x79\x8e\xb1\x73\x8d\xab\x75\x94\xaf\x76\ \x97\xb4\x78\x96\xb3\x76\x93\xb1\x77\x98\xb6\x7d\x9c\xbc\x83\xa0\ \xbf\x86\xa4\xc2\x8b\xaa\xca\x8c\xac\xce\x8f\xad\xce\x8b\xab\xc9\ \x84\xa9\xc3\x80\xa7\xc1\x7d\xa4\xbc\x80\xa3\xbe\x83\xa1\xc2\x83\ \x9f\xc1\x84\xa1\xc2\x87\xa3\xc3\x8f\xa8\xc6\x95\xae\xcd\x97\xb2\ \xd1\x91\xb5\xd0\x8e\xb5\xcd\x8f\xb2\xcd\x96\xaf\xce\x9e\xb3\xd2\ \x9b\xb1\xce\x9c\xb5\xcf\x9c\xb6\xd0\x95\xb3\xce\x90\xb1\xcf\x90\ \xb1\xce\x96\xb4\xd1\x95\xb2\xd0\x98\xb1\xd5\x98\xaf\xd5\x96\xae\ \xd3\x8c\xa9\xc9\x83\xa4\xc4\x7f\xa3\xbe\x7c\x9e\xbd\x73\x95\xb4\ \x5f\x80\x9c\x4e\x6c\x84\x4f\x6a\x85\x77\x92\xb0\x93\xaf\xce\x92\ \xb3\xd2\x8c\xb1\xd0\x8e\xb0\xd1\x94\xb0\xce\x94\xb1\xce\x94\xb5\ \xd0\x91\xb3\xd0\x93\xb1\xd3\x93\xae\xd2\x8e\xab\xcd\x8a\xa9\xc9\ \x83\xa3\xc1\x77\x97\xb4\x5b\x79\x95\x4a\x67\x81\x5c\x7a\x96\x67\ \x8b\xa5\x63\x88\xa0\x5f\x85\x9b\x6b\x92\xac\x7f\xa3\xc0\x87\xac\ \xca\x89\xaf\xd0\x84\xad\xcd\x82\xab\xc8\x83\xaa\xc7\x7f\xa7\xc7\ \x7d\xa1\xc7\x7c\x9d\xc2\x7b\x9c\xbf\x75\x95\xb5\x69\x88\xa0\x5b\ \x7a\x8e\x76\x95\xab\x84\x9f\xba\x8c\xa7\xc3\x91\xad\xc7\x97\xb3\ \xca\x98\xb4\xcd\x96\xb3\xcd\x95\xb2\xcd\x92\xb2\xcd\x93\xb1\xcb\ \x95\xb0\xcd\x97\xb1\xd1\x95\xb2\xd3\x91\xb3\xcf\x91\xb4\xcf\x95\ \xb3\xd1\x9a\xb3\xd5\x9d\xb2\xd3\x9d\xb0\xd0\x9d\xb1\xd1\x94\xae\ \xcc\x93\xaf\xcf\x92\xaf\xd0\x92\xb0\xcf\x8c\xab\xcd\x88\xab\xcc\ \x86\xa9\xc9\x82\xa6\xc5\x78\x9e\xbe\x77\x9d\xbf\x74\x9e\xbe\x6e\ \x9e\xbd\x6d\x9f\xbe\x71\x9d\xbf\x76\x9e\xc0\x78\x9e\xbf\x76\x9f\ \xc0\x77\x9e\xbf\x7b\x9e\xbf\x7f\x9c\xc0\x7f\x9b\xc0\x7a\x99\xbf\ \x77\x97\xbc\x75\x97\xb8\x00\x00\x00\x7b\x9e\xbd\x7e\xa3\xc1\x86\ \xad\xcb\x88\xac\xc9\x7a\x9f\xb9\x63\x8d\xa3\x52\x7c\x93\x4f\x75\ \x8e\x4d\x72\x8b\x5e\x81\x9a\x67\x89\xa3\x5f\x86\x9c\x55\x7e\x92\ \x5e\x83\x99\x6b\x8a\xa7\x66\x82\x9e\x54\x71\x8d\x50\x70\x8e\x5e\ \x81\xa1\x6f\x8f\xb0\x70\x89\xad\x57\x71\x94\x42\x5f\x7b\x46\x67\ \x7f\x55\x7a\x92\x58\x7a\x94\x4c\x6b\x86\x40\x5e\x76\x50\x6f\x88\ \x63\x80\x9b\x5f\x78\x94\x52\x68\x83\x50\x68\x81\x5d\x75\x91\x5a\ \x71\x90\x48\x5f\x7a\x44\x60\x77\x52\x72\x88\x5c\x7a\x93\x62\x79\ \x92\x54\x70\x85\x5d\x7c\x94\x6e\x8e\xab\x78\x94\xb2\x78\x93\xb2\ \x7f\x9b\xb9\x88\xa4\xc6\x8d\xa7\xc9\x87\xa3\xc2\x7b\x9c\xb5\x6a\ \x90\xa6\x6c\x8e\xa5\x71\x90\xac\x6f\x8c\xa7\x6b\x84\x9d\x6f\x86\ \x9f\x75\x8c\xa7\x7d\x93\xb1\x85\x9b\xb7\x88\xa5\xc0\x86\xa9\xc3\ \x83\xa8\xc1\x83\xa2\xbc\x89\xa0\xbc\x91\xa5\xc2\x95\xa9\xc8\x97\ \xac\xc9\x94\xab\xc7\x8a\xa7\xc2\x83\xa5\xc2\x80\xa4\xbf\x8b\xa9\ \xc4\x92\xaf\xcb\x95\xb0\xd0\x98\xb2\xd3\x94\xae\xcf\x90\xab\xc7\ \x8a\xa7\xc7\x80\xa1\xc1\x7a\x9d\xbf\x77\x9b\xbc\x6e\x94\xb3\x69\ \x8e\xaa\x71\x93\xb0\x88\xa6\xc4\x92\xae\xcb\x91\xaf\xcb\x8d\xaf\ \xcd\x8f\xb1\xd0\x97\xb0\xce\x99\xb1\xcf\x97\xb5\xd0\x91\xb4\xd1\ \x8d\xb0\xd1\x8f\xad\xd0\x8d\xab\xcc\x8a\xa7\xc9\x81\xa3\xc3\x77\ \x9c\xb9\x6b\x8c\xa8\x67\x86\xa1\x72\x93\xaf\x73\x98\xb2\x6e\x94\ \xab\x5f\x87\x99\x5a\x82\x97\x75\x9a\xb3\x89\xaa\xc7\x8c\xaf\xcd\ \x85\xae\xca\x83\xae\xc6\x85\xad\xc6\x84\xa9\xc7\x86\xa6\xc8\x87\ \xa6\xc9\x83\xa4\xc5\x7c\x9d\xbb\x71\x8f\xaa\x59\x75\x8c\x69\x87\ \x9b\x80\x9b\xb5\x8b\xa3\xc3\x92\xac\xca\x96\xb1\xca\x96\xb3\xca\ \x93\xb2\xc8\x91\xae\xc9\x90\xae\xc9\x92\xae\xca\x94\xae\xcc\x93\ \xaf\xcf\x91\xaf\xd2\x8e\xae\xcf\x91\xb0\xcf\x96\xb0\xd0\x9a\xb1\ \xcf\x9b\xb1\xcd\x99\xb1\xcd\x95\xae\xcd\x8f\xab\xc9\x90\xad\xcc\ \x94\xaf\xd1\x94\xad\xd0\x91\xab\xcd\x8c\xaa\xcc\x86\xa8\xc8\x80\ \xa3\xc2\x7c\x9f\xbf\x7a\x9d\xc0\x78\x9d\xbf\x6e\x9c\xbc\x6d\x9c\ \xba\x6f\x9c\xbc\x74\x9c\xbc\x7a\x9f\xbe\x7b\x9f\xbe\x7b\x9e\xbe\ \x80\xa0\xc0\x82\x9e\xc1\x7e\x9c\xc2\x78\x99\xbf\x75\x99\xbe\x76\ \x99\xbc\x00\x00\x00\x90\xb5\xd0\x91\xb6\xd0\x94\xb9\xd5\x96\xb9\ \xd9\x90\xb4\xd4\x85\xad\xcb\x75\xa1\xbd\x6c\x99\xb4\x6e\x9a\xb4\ \x7b\xa4\xbe\x81\xa9\xc2\x79\xa2\xbb\x74\xa0\xb7\x78\xa1\xba\x7e\ \xa2\xc0\x82\x9f\xc0\x75\x94\xb4\x70\x93\xb3\x78\x9c\xbd\x84\xa3\ \xc5\x89\xa2\xc8\x7e\x97\xbe\x74\x90\xb4\x75\x95\xb6\x7a\x9d\xbe\ \x7e\x9e\xbf\x76\x93\xb2\x6a\x8b\xa7\x6e\x92\xac\x77\x96\xb1\x73\ \x8f\xab\x6a\x89\xa1\x69\x87\x9f\x6f\x8b\xa5\x69\x84\xa2\x53\x73\ \x8d\x4a\x6c\x82\x54\x79\x8e\x5d\x7d\x97\x5c\x76\x8b\x4c\x64\x77\ \x62\x7f\x93\x7e\x9c\xb5\x82\x9d\xb9\x75\x8f\xad\x6e\x88\xa6\x77\ \x8e\xaf\x86\x9d\xbd\x82\x9b\xba\x6c\x87\xa2\x50\x6c\x84\x51\x6e\ \x86\x5d\x7a\x92\x55\x71\x88\x48\x60\x70\x4a\x5d\x6d\x58\x6c\x81\ \x61\x77\x91\x65\x7d\x95\x6b\x89\xa0\x72\x93\xac\x78\x95\xb0\x78\ \x8f\xa8\x6f\x82\x9a\x76\x89\xa4\x81\x95\xb3\x89\x9c\xbc\x84\x98\ \xb8\x74\x8d\xaa\x66\x84\xa1\x6c\x8c\xa8\x7a\x97\xb1\x87\xa2\xbd\ \x8d\xa9\xc5\x8d\xae\xc9\x8c\xab\xc6\x8d\xa8\xc4\x88\xa4\xc0\x7f\ \x9e\xbe\x7a\x9b\xbb\x79\x9b\xba\x7b\xa0\xbe\x7f\xa3\xc0\x87\xa7\ \xc4\x91\xae\xca\x96\xb0\xcb\x93\xae\xca\x89\xa9\xc7\x88\xa9\xc7\ \x90\xae\xce\x95\xb1\xce\x97\xb5\xd0\x95\xb3\xd3\x8f\xb1\xd2\x8c\ \xac\xcf\x8c\xaa\xcc\x89\xa7\xc6\x80\xa3\xc3\x7d\xa2\xc2\x7c\x9f\ \xbc\x7d\xa0\xbd\x7d\xa0\xbe\x80\xa3\xbf\x7c\x9e\xb7\x6c\x90\xa5\ \x5b\x83\x97\x6d\x92\xab\x8a\xa9\xc6\x8f\xb0\xcb\x88\xae\xc6\x84\ \xad\xc4\x84\xab\xc5\x86\xa7\xc6\x86\xa2\xc4\x82\x9f\xbe\x80\x9f\ \xbd\x7f\x9c\xba\x75\x8f\xac\x5d\x75\x90\x5c\x79\x8f\x7d\x97\xb3\ \x8a\xa2\xc4\x91\xaa\xca\x93\xae\xc8\x93\xb0\xc7\x8c\xae\xc5\x8b\ \xac\xc8\x90\xac\xca\x90\xa9\xca\x8f\xa9\xca\x8b\xa8\xca\x89\xa5\ \xcb\x89\xa4\xc9\x8b\xa8\xc8\x93\xad\xcc\x94\xaf\xcb\x94\xaf\xca\ \x92\xb0\xca\x92\xaf\xcf\x8d\xac\xce\x8f\xac\xce\x94\xac\xd1\x93\ \xab\xd0\x91\xaa\xce\x89\xa9\xcd\x85\xa6\xc7\x80\xa2\xc2\x7d\x9e\ \xc2\x7a\x9b\xc2\x79\x9c\xbe\x72\x9a\xb9\x6e\x9a\xb6\x71\x9b\xba\ \x75\x9d\xbd\x79\x9d\xbe\x81\x9e\xc0\x83\x9d\xc0\x84\x9e\xc2\x84\ \xa0\xc3\x7d\x9d\xc1\x79\x9c\xc0\x77\x9b\xc0\x74\x96\xbd\x00\x00\ \x00\x96\xb9\xd5\x9e\xbe\xd8\x9e\xbf\xd9\x9b\xbe\xdf\x95\xb8\xda\ \x91\xb5\xd7\x8a\xb1\xd2\x84\xaf\xce\x8a\xb2\xd0\x91\xb6\xd4\x8b\ \xb1\xcd\x86\xad\xca\x84\xab\xc7\x81\xa8\xc3\x86\xab\xc9\x8b\xa6\ \xca\x83\xa2\xc5\x7f\xa3\xc6\x83\xa7\xc9\x8d\xac\xcf\x92\xac\xd3\ \x94\xaa\xd4\x90\xa7\xd1\x93\xac\xd4\x96\xb2\xd8\x97\xb3\xd9\x98\ \xb3\xd8\x93\xb1\xd4\x8f\xb1\xd1\x94\xb3\xd2\x96\xb3\xd2\x8e\xb2\ \xcc\x8f\xb2\xc9\x94\xb2\xcd\x8c\xaa\xc9\x7d\x9f\xbd\x75\x99\xb7\ \x78\x9c\xbb\x7c\x9d\xbb\x79\x93\xae\x5d\x76\x8d\x76\x93\xa9\x8f\ \xaa\xc4\x90\xa8\xc6\x8b\xa3\xc1\x75\x8f\xad\x68\x81\xa1\x6b\x83\ \xa3\x7b\x97\xb5\x68\x83\xa0\x48\x60\x7a\x4c\x65\x7f\x5f\x7a\x96\ \x54\x70\x89\x38\x50\x60\x3e\x52\x60\x53\x68\x7c\x5b\x70\x8b\x48\ \x61\x75\x46\x63\x75\x63\x7f\x97\x6e\x84\xa0\x60\x70\x87\x48\x5a\ \x6e\x5d\x71\x8a\x6c\x82\x9f\x79\x8c\xac\x72\x84\xa8\x55\x6b\x8b\ \x44\x5f\x7d\x56\x70\x8e\x68\x80\x9c\x78\x90\xac\x83\x9f\xba\x83\ \xa5\xbf\x81\xa2\xbd\x83\x9f\xbd\x86\x9d\xb9\x7d\x97\xb4\x79\x92\ \xb0\x79\x97\xb0\x7f\xa0\xb9\x86\xa5\xbf\x8f\xaa\xc8\x98\xaf\xcd\ \x98\xaf\xcd\x8e\xa8\xc8\x85\xa2\xc2\x7f\x9f\xc0\x82\xa6\xc7\x8d\ \xb1\xce\x95\xb5\xd3\x98\xb5\xd4\x93\xb0\xd3\x8e\xac\xcf\x8b\xa7\ \xc8\x88\xa6\xc5\x80\xa5\xc3\x7f\xa4\xc5\x80\xa2\xc2\x83\xa5\xc4\ \x80\xa5\xc3\x86\xa4\xc6\x86\xa1\xc0\x7b\x98\xb3\x68\x8b\xa4\x74\ \x99\xb3\x8d\xac\xc6\x92\xb0\xc9\x8b\xac\xc3\x85\xac\xc1\x88\xaa\ \xc3\x86\xa1\xc0\x83\x99\xbb\x79\x93\xb1\x79\x94\xb0\x7c\x93\xb2\ \x7d\x91\xb1\x66\x7c\x9a\x5a\x75\x8f\x7c\x96\xb4\x87\xa2\xc5\x8b\ \xa8\xc9\x8e\xaa\xc4\x8c\xad\xc1\x88\xad\xc4\x8a\xac\xc9\x91\xab\ \xcb\x8f\xa7\xcb\x8c\xa4\xc8\x88\xa0\xc5\x86\x9b\xc1\x83\x98\xbf\ \x88\x9e\xc2\x8c\xa5\xc7\x92\xac\xca\x92\xac\xc9\x91\xaf\xcb\x8f\ \xb0\xd0\x8f\xaf\xd3\x93\xad\xd2\x96\xad\xd3\x95\xac\xd2\x92\xac\ \xd2\x8b\xaa\xd1\x89\xaa\xcc\x83\xa4\xc8\x80\xa1\xc9\x7e\x9e\xc6\ \x7a\x9d\xbe\x77\x9c\xb8\x75\x9c\xb8\x76\x9b\xbd\x79\x9d\xc1\x7d\ \x9d\xc1\x85\x9c\xc2\x8b\x9d\xc6\x8b\x9d\xc6\x87\xa0\xc6\x7f\x9c\ \xc1\x79\x9a\xbf\x77\x98\xbf\x79\x95\xbe\x00\x00\x00\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x32\x5f\x91\x31\x58\x88\x36\x5a\x89\x2a\x4d\ \x7a\x2a\x4b\x78\x20\x41\x6e\x20\x3f\x6e\x1a\x35\x60\x1f\x38\x60\ \x1b\x30\x55\x0b\x16\x2e\x00\x01\x0c\x00\x01\x05\x02\x04\x09\x03\ \x03\x0c\x05\x04\x0d\x07\x06\x0e\x09\x07\x11\x08\x05\x12\x08\x07\ \x14\x09\x08\x13\x09\x09\x14\x0a\x0a\x14\x0a\x0b\x15\x0a\x0b\x14\ \x0a\x0b\x13\x0b\x0c\x14\x09\x0b\x13\x0a\x0d\x16\x0a\x0b\x15\x0a\ \x0b\x16\x0b\x0c\x18\x0b\x0c\x17\x09\x0b\x15\x0c\x0f\x18\x0a\x0d\ \x17\x0b\x0d\x16\x0b\x0e\x15\x0b\x0e\x14\x0c\x0e\x12\x0c\x10\x13\ \x0b\x0f\x14\x10\x13\x18\x11\x14\x1a\x11\x14\x1b\x13\x16\x1c\x18\ \x1c\x20\x18\x1c\x21\x1b\x1e\x22\x1c\x1f\x22\x20\x26\x28\x24\x29\ \x2c\x23\x28\x29\x23\x28\x29\x27\x2c\x2c\x2e\x33\x32\x2c\x31\x32\ \x2e\x33\x35\x33\x38\x38\x36\x3b\x3a\x35\x39\x39\x38\x3b\x3c\x39\ \x3d\x3d\x2e\x34\x2f\x20\x23\x21\x04\x05\x08\x02\x02\x0a\x05\x05\ \x10\x08\x08\x12\x09\x09\x14\x07\x0a\x15\x05\x0c\x18\x06\x10\x1c\ \x0b\x15\x21\x0d\x16\x23\x0d\x16\x23\x0b\x14\x21\x0c\x15\x23\x09\ \x12\x1f\x0d\x16\x22\x0b\x14\x21\x0b\x14\x20\x0c\x14\x22\x0b\x13\ \x22\x0e\x17\x24\x0a\x14\x1e\x0a\x13\x1d\x0d\x16\x23\x10\x19\x25\ \x0e\x16\x23\x12\x1b\x29\x15\x1f\x2d\x15\x21\x2f\x14\x1e\x2d\x1c\ \x25\x32\x1e\x27\x33\x1c\x27\x34\x1d\x29\x36\x1e\x29\x35\x21\x2c\ \x39\x20\x2d\x3b\x26\x34\x42\x33\x40\x51\x2c\x37\x49\x32\x3d\x4a\ \x21\x2b\x35\x19\x21\x2c\x0f\x16\x23\x10\x16\x23\x0a\x0d\x1b\x09\ \x09\x18\x09\x07\x17\x05\x05\x12\x07\x05\x10\x07\x0c\x1d\x42\x52\ \x70\x49\x5c\x7e\x6c\x73\x8b\xfe\xf7\xfd\x2d\x2a\x2b\x1b\x20\x23\ \x23\x27\x2a\x27\x2a\x31\x2f\x32\x3c\x2e\x32\x3c\x24\x2a\x36\x21\ \x27\x35\x1c\x24\x32\x18\x21\x2f\x16\x1f\x2f\x15\x1e\x31\x14\x20\ \x31\x12\x1e\x2f\x15\x21\x32\x19\x25\x35\x18\x25\x35\x1e\x31\x40\ \x2b\x3b\x4b\x3b\x4a\x58\x50\x5c\x6a\x64\x6f\x7b\x78\x81\x89\x78\ \x81\x88\x8a\x93\x98\x8b\x94\x9b\x75\x82\x8c\x5f\x74\x83\x6f\x8a\ \x9b\x6f\x87\x9c\x6d\x88\x9c\x6a\x87\x9a\x6b\x86\x98\x6b\x85\x95\ \x69\x83\x93\x68\x83\x94\x68\x83\x97\x65\x80\x94\x64\x7f\x91\x64\ \x7f\x90\x64\x7e\x8f\x62\x7f\x90\x61\x7e\x8d\x61\x7d\x8d\x00\x00\ \x00\x32\x5e\x92\x2c\x54\x82\x30\x55\x82\x2a\x4f\x7b\x28\x4a\x77\ \x20\x3f\x6d\x1a\x39\x68\x1c\x38\x63\x20\x3a\x63\x1b\x33\x58\x08\ \x15\x2e\x01\x00\x0c\x00\x01\x04\x03\x05\x06\x03\x04\x08\x05\x05\ \x0b\x06\x05\x0e\x09\x06\x10\x08\x07\x11\x09\x07\x13\x0a\x09\x16\ \x09\x08\x16\x07\x09\x12\x09\x0a\x13\x08\x0a\x12\x09\x0c\x14\x08\ \x09\x13\x09\x09\x15\x08\x0a\x15\x0b\x0d\x18\x0a\x0c\x17\x0b\x0d\ \x18\x0a\x0c\x17\x0b\x0d\x17\x0c\x0d\x17\x0c\x0e\x18\x0a\x0d\x15\ \x0b\x0e\x16\x0d\x11\x18\x0b\x0f\x15\x0c\x10\x16\x11\x16\x19\x10\ \x14\x19\x10\x14\x1b\x13\x17\x1b\x1a\x1f\x24\x18\x1d\x22\x18\x1b\ \x20\x1a\x1d\x21\x1a\x1e\x20\x1e\x23\x24\x23\x28\x29\x23\x28\x29\ \x20\x25\x26\x26\x2b\x2c\x29\x2e\x30\x2b\x2f\x32\x31\x34\x38\x37\ \x3c\x3c\x3d\x43\x42\x3e\x43\x42\x38\x3d\x3c\x35\x3a\x39\x2f\x34\ \x33\x21\x25\x25\x04\x05\x09\x02\x02\x08\x03\x05\x0d\x04\x06\x0f\ \x08\x09\x13\x0b\x0d\x17\x0a\x12\x1d\x05\x0d\x1a\x0b\x12\x21\x09\ \x10\x1f\x0f\x16\x25\x07\x0e\x1d\x0b\x12\x21\x0a\x13\x20\x09\x12\ \x1f\x08\x12\x1c\x09\x14\x1d\x08\x12\x1c\x0c\x16\x23\x0d\x17\x25\ \x0b\x14\x22\x11\x19\x27\x0c\x15\x23\x0e\x18\x23\x0f\x19\x24\x12\ \x1b\x29\x13\x1e\x2c\x13\x1d\x2e\x18\x23\x31\x17\x21\x2f\x1b\x24\ \x32\x1e\x27\x34\x1f\x28\x35\x1f\x29\x33\x26\x32\x3e\x26\x32\x40\ \x24\x31\x41\x2f\x3d\x4f\x29\x35\x45\x32\x3d\x4a\x25\x2f\x3c\x1c\ \x22\x30\x10\x16\x21\x0f\x13\x1f\x0a\x0a\x1a\x0c\x0c\x1b\x08\x08\ \x16\x05\x09\x14\x04\x05\x11\x06\x0c\x1d\x44\x54\x6e\x4a\x5c\x7d\ \x6e\x75\x8c\xfd\xf4\xfb\x2d\x2a\x2b\x1d\x23\x25\x25\x29\x2b\x23\ \x29\x2e\x2d\x2f\x39\x2d\x32\x3e\x23\x29\x36\x1f\x26\x35\x1f\x26\ \x36\x17\x1f\x2f\x14\x1c\x2d\x0f\x15\x28\x15\x1e\x30\x18\x22\x34\ \x12\x1e\x30\x14\x21\x32\x17\x23\x35\x1e\x2e\x3e\x24\x34\x45\x41\ \x50\x61\x40\x4b\x5c\x68\x73\x81\x7f\x8a\x93\x71\x7a\x81\x88\x8e\ \x93\x87\x92\x96\x74\x83\x8d\x64\x7b\x8d\x70\x8a\x9e\x6e\x88\x98\ \x6e\x88\x9b\x6d\x87\x9b\x6d\x87\x98\x6b\x85\x96\x6a\x84\x95\x6a\ \x84\x94\x66\x81\x95\x65\x80\x94\x63\x7e\x93\x62\x7d\x91\x63\x7e\ \x91\x62\x7e\x8f\x61\x7c\x91\x5f\x7a\x8f\x00\x00\x00\x35\x64\x97\ \x2d\x56\x84\x2f\x56\x82\x2b\x50\x7d\x2a\x4b\x78\x22\x42\x6f\x1d\ \x3c\x6a\x23\x40\x69\x22\x3c\x64\x18\x30\x54\x09\x17\x2e\x00\x00\ \x0a\x02\x03\x04\x02\x03\x06\x03\x03\x08\x05\x04\x0c\x06\x05\x0e\ \x06\x05\x0f\x09\x08\x12\x09\x08\x13\x0a\x08\x14\x07\x08\x14\x08\ \x09\x12\x07\x08\x12\x08\x0a\x13\x0a\x0d\x15\x08\x0a\x13\x09\x0a\ \x14\x0a\x0c\x16\x0b\x0c\x17\x0a\x0c\x16\x09\x0c\x15\x0b\x0d\x17\ \x09\x0b\x15\x0c\x0e\x18\x0c\x0e\x18\x0a\x0d\x15\x0b\x0e\x16\x0b\ \x0e\x16\x0d\x10\x18\x0e\x12\x19\x0f\x12\x18\x0e\x12\x19\x0f\x13\ \x1a\x10\x14\x18\x17\x1e\x22\x18\x1d\x22\x18\x1b\x20\x1c\x1f\x23\ \x1e\x22\x23\x1e\x23\x24\x1f\x24\x25\x23\x28\x29\x21\x26\x27\x29\ \x2e\x2f\x2a\x2f\x30\x2e\x31\x35\x2f\x32\x36\x34\x39\x39\x39\x3e\ \x3e\x3c\x41\x41\x37\x3c\x3b\x3a\x3f\x3e\x2e\x33\x31\x22\x26\x26\ \x06\x07\x0b\x01\x02\x08\x03\x05\x0d\x05\x06\x10\x07\x08\x12\x0a\ \x0d\x18\x08\x0f\x1a\x07\x0f\x1c\x08\x10\x1d\x09\x11\x1e\x0b\x12\ \x20\x08\x10\x1d\x09\x11\x1f\x0b\x13\x22\x0a\x13\x21\x0c\x15\x22\ \x0c\x16\x1f\x09\x13\x1e\x08\x12\x1f\x0b\x14\x22\x0e\x16\x24\x0c\ \x15\x23\x0a\x16\x24\x0e\x19\x26\x0d\x18\x25\x0d\x18\x24\x13\x1d\ \x2b\x11\x1a\x28\x14\x1d\x2b\x13\x1d\x2b\x1a\x24\x32\x1c\x28\x34\ \x1d\x28\x34\x1d\x26\x32\x24\x2f\x3d\x24\x2f\x3f\x24\x31\x42\x29\ \x35\x47\x2d\x39\x48\x2d\x39\x45\x22\x2b\x38\x17\x1d\x2c\x11\x17\ \x22\x0a\x0c\x19\x0b\x0c\x1a\x0a\x0b\x19\x0c\x0d\x1b\x04\x09\x16\ \x0a\x0c\x1a\x05\x0d\x1e\x44\x55\x70\x49\x5c\x7f\x6c\x73\x88\xfc\ \xf6\xfb\x30\x2c\x2e\x18\x1c\x21\x25\x28\x2c\x26\x2b\x32\x31\x33\ \x3d\x2c\x30\x3c\x24\x2a\x35\x1e\x25\x34\x1d\x24\x34\x14\x1c\x2d\ \x1a\x22\x33\x13\x1a\x2c\x12\x1c\x2d\x19\x23\x34\x15\x22\x32\x17\ \x24\x34\x16\x23\x33\x17\x26\x37\x2a\x3a\x4b\x38\x48\x58\x4a\x59\ \x69\x5f\x6e\x7b\x7e\x8b\x94\x7e\x87\x8f\x8a\x92\x98\x90\x99\x9f\ \x75\x83\x8d\x5f\x75\x87\x6e\x89\x9c\x6e\x88\x98\x6d\x88\x9a\x6c\ \x86\x98\x6c\x86\x97\x6b\x85\x96\x6a\x84\x94\x68\x82\x92\x66\x81\ \x95\x65\x80\x94\x64\x7f\x93\x63\x7e\x92\x62\x7d\x91\x5f\x7c\x8d\ \x60\x7b\x8f\x60\x7b\x90\x00\x00\x00\x38\x6a\xa0\x2d\x57\x86\x2f\ \x55\x82\x2a\x4d\x7e\x20\x42\x72\x25\x46\x74\x22\x41\x6e\x2b\x48\ \x71\x16\x32\x59\x18\x30\x52\x0a\x16\x2d\x00\x01\x08\x01\x02\x05\ \x03\x04\x09\x03\x03\x09\x05\x04\x0c\x05\x04\x0d\x07\x05\x0e\x07\ \x06\x10\x09\x07\x12\x09\x07\x13\x09\x08\x13\x09\x09\x14\x09\x0a\ \x14\x08\x0a\x13\x09\x0c\x14\x09\x0b\x13\x0a\x0c\x14\x09\x0c\x14\ \x09\x0c\x14\x0b\x0e\x16\x0a\x0d\x15\x0b\x0e\x16\x0c\x0e\x18\x0b\ \x0d\x18\x0a\x0c\x18\x0c\x0f\x17\x0b\x0e\x16\x0e\x11\x19\x0e\x11\ \x19\x0e\x11\x19\x0e\x11\x1a\x0e\x11\x19\x11\x13\x1b\x11\x16\x19\ \x13\x18\x1c\x16\x19\x1f\x18\x1c\x20\x19\x1c\x20\x1c\x21\x24\x1e\ \x23\x24\x1b\x20\x21\x23\x28\x29\x23\x28\x29\x23\x28\x29\x28\x2d\ \x2f\x30\x34\x35\x2f\x33\x34\x32\x37\x38\x37\x3c\x3c\x3f\x43\x43\ \x32\x37\x36\x31\x36\x35\x29\x2e\x2d\x22\x25\x25\x08\x08\x0d\x01\ \x02\x08\x02\x04\x0c\x04\x06\x0f\x08\x08\x14\x0b\x0d\x18\x09\x0f\ \x1a\x09\x11\x1d\x09\x11\x1e\x0a\x12\x1f\x09\x11\x1e\x08\x10\x1d\ \x06\x0e\x1b\x0b\x12\x21\x09\x12\x20\x0a\x13\x20\x0a\x13\x21\x0b\ \x14\x21\x0d\x15\x23\x0d\x14\x23\x0f\x16\x25\x0f\x19\x27\x0d\x1a\ \x28\x11\x1d\x2b\x13\x1d\x2c\x0f\x19\x27\x19\x21\x2e\x15\x1e\x2b\ \x17\x20\x2e\x1a\x24\x32\x1a\x25\x33\x1c\x27\x35\x1e\x29\x37\x1f\ \x2a\x38\x2a\x35\x43\x28\x32\x42\x27\x34\x44\x28\x35\x44\x2f\x3c\ \x4a\x32\x3b\x49\x22\x2b\x38\x16\x1d\x2a\x10\x15\x21\x0b\x0e\x19\ \x0c\x0d\x1a\x07\x08\x16\x09\x0b\x19\x09\x0e\x1d\x0c\x0e\x1c\x00\ \x07\x18\x41\x53\x6f\x4a\x5d\x81\x68\x70\x85\xff\xfa\xfe\x31\x2d\ \x2f\x1b\x1e\x27\x25\x27\x2e\x26\x28\x32\x30\x32\x3c\x31\x34\x3f\ \x25\x2b\x35\x1c\x23\x32\x21\x27\x39\x18\x20\x31\x12\x1a\x2b\x13\ \x1b\x2c\x12\x1d\x2b\x14\x1f\x2d\x11\x1e\x2c\x16\x23\x30\x1a\x27\ \x35\x1c\x2c\x3c\x28\x39\x4a\x35\x48\x58\x4c\x5e\x6c\x5a\x6b\x77\ \x7b\x89\x95\x7d\x87\x90\x83\x8b\x93\x90\x98\x9f\x83\x8f\x9a\x59\ \x6f\x81\x6d\x88\x9c\x6f\x89\x99\x6d\x87\x99\x6c\x87\x98\x6b\x85\ \x96\x6b\x85\x96\x6a\x84\x94\x69\x84\x94\x66\x82\x93\x64\x80\x91\ \x63\x7f\x90\x62\x7e\x8f\x61\x7d\x8e\x60\x7c\x8e\x60\x7b\x8e\x60\ \x7b\x8f\x00\x00\x00\x39\x6c\xa3\x2f\x59\x88\x2d\x52\x7f\x29\x4c\ \x7d\x1f\x43\x71\x29\x4b\x79\x1c\x3c\x6a\x28\x45\x70\x08\x23\x4c\ \x20\x36\x58\x09\x15\x2b\x00\x01\x0a\x01\x01\x07\x03\x03\x09\x03\ \x03\x09\x06\x05\x0d\x06\x06\x0f\x05\x07\x0e\x08\x07\x10\x08\x07\ \x11\x0a\x08\x13\x08\x06\x12\x09\x09\x15\x0a\x0a\x15\x09\x0a\x14\ \x0a\x0c\x16\x09\x0a\x14\x0a\x0b\x15\x0a\x0c\x16\x0a\x0c\x16\x09\ \x0b\x16\x0a\x0e\x16\x09\x0c\x15\x0a\x0c\x16\x0c\x0e\x19\x09\x0b\ \x16\x0a\x0b\x14\x0c\x0e\x16\x0c\x0e\x16\x0b\x0d\x15\x0d\x0f\x17\ \x0c\x0f\x17\x0d\x10\x18\x10\x13\x1a\x11\x15\x19\x18\x1c\x21\x15\ \x18\x20\x1a\x1c\x23\x19\x1e\x21\x19\x1e\x21\x1d\x23\x24\x1e\x23\ \x24\x27\x2c\x2d\x23\x28\x29\x29\x2e\x2f\x28\x2d\x30\x2f\x34\x35\ \x2f\x33\x34\x35\x39\x3a\x39\x3d\x3f\x38\x3c\x3c\x30\x35\x34\x35\ \x3a\x39\x28\x2d\x2c\x21\x26\x25\x07\x07\x0c\x01\x01\x07\x02\x04\ \x0b\x04\x05\x0f\x0a\x09\x15\x09\x0b\x16\x07\x0e\x18\x06\x10\x1a\ \x07\x10\x1a\x08\x11\x1b\x0a\x13\x1d\x09\x11\x1e\x0b\x13\x21\x0d\ \x14\x23\x0a\x13\x21\x0b\x13\x24\x0f\x17\x27\x0c\x15\x23\x0a\x14\ \x21\x0c\x15\x22\x11\x18\x28\x08\x11\x1f\x0c\x18\x26\x0f\x1b\x28\ \x0c\x17\x23\x12\x1d\x2a\x14\x1d\x2b\x11\x1b\x29\x16\x1f\x2d\x15\ \x1f\x2d\x1b\x26\x34\x19\x26\x35\x1c\x29\x39\x20\x2b\x39\x21\x2c\ \x3a\x25\x30\x3e\x2c\x37\x45\x2a\x36\x42\x40\x4c\x58\x35\x3f\x4d\ \x24\x2c\x3a\x1a\x23\x2f\x0c\x13\x1f\x0b\x10\x1c\x0c\x0d\x19\x0a\ \x0a\x17\x07\x07\x16\x07\x08\x17\x04\x05\x13\x00\x05\x15\x42\x53\ \x6e\x4b\x5d\x83\x67\x6c\x86\xff\xfb\xff\x32\x2e\x2f\x1b\x20\x26\ \x22\x23\x2d\x24\x27\x2f\x2f\x32\x3a\x2d\x2f\x39\x24\x2a\x36\x1d\ \x24\x33\x1e\x25\x36\x13\x1b\x2c\x16\x1e\x2f\x11\x19\x2a\x18\x21\ \x32\x14\x1e\x2f\x0d\x1a\x2a\x15\x22\x32\x1b\x28\x38\x1a\x2a\x3a\ \x2a\x3a\x4c\x38\x49\x58\x47\x57\x63\x63\x71\x7d\x69\x76\x80\x74\ \x81\x88\x7d\x87\x8e\x96\x9f\xa5\x81\x8d\x98\x58\x6d\x7f\x71\x8a\ \x9e\x6f\x89\x99\x6d\x87\x99\x6d\x88\x99\x6b\x85\x96\x6c\x86\x96\ \x6c\x86\x96\x69\x83\x93\x68\x83\x94\x65\x81\x92\x65\x81\x92\x63\ \x7f\x90\x62\x7f\x8f\x60\x7d\x8d\x61\x7d\x8f\x5f\x7a\x8e\x00\x00\ \x00\x38\x6b\xa3\x2b\x54\x84\x2d\x51\x7e\x2c\x50\x7e\x24\x49\x77\ \x27\x4a\x79\x1e\x3e\x6e\x23\x41\x6f\x10\x2c\x57\x21\x36\x5b\x0e\ \x1a\x31\x00\x01\x0c\x01\x01\x07\x04\x04\x09\x04\x04\x0c\x06\x05\ \x0e\x06\x05\x0e\x05\x07\x10\x07\x08\x11\x09\x08\x12\x09\x07\x12\ \x09\x08\x14\x08\x08\x14\x0a\x0b\x16\x09\x0a\x14\x07\x09\x13\x09\ \x09\x14\x0a\x0a\x15\x0a\x0c\x17\x09\x0a\x15\x0b\x0d\x17\x0b\x0d\ \x18\x0c\x0e\x18\x0b\x0d\x17\x0a\x0c\x16\x0a\x0c\x16\x0d\x0f\x17\ \x0b\x0d\x14\x0d\x0f\x17\x0b\x0d\x15\x10\x13\x1a\x10\x13\x1a\x13\ \x16\x1e\x12\x15\x1e\x11\x14\x1c\x14\x17\x1f\x15\x17\x1f\x18\x1b\ \x21\x1b\x1e\x23\x1b\x22\x25\x1c\x22\x24\x1e\x23\x24\x23\x28\x29\ \x22\x27\x28\x2d\x32\x33\x2a\x2f\x32\x27\x2c\x2d\x2e\x33\x32\x2e\ \x32\x33\x34\x38\x3a\x47\x4b\x4b\x3e\x43\x41\x35\x3a\x39\x2d\x32\ \x30\x1d\x21\x21\x07\x07\x0c\x02\x02\x08\x02\x05\x0c\x05\x06\x0f\ \x09\x09\x15\x0b\x0d\x19\x07\x0c\x17\x09\x12\x1c\x08\x11\x1b\x08\ \x11\x1b\x05\x0e\x18\x0d\x16\x22\x0c\x13\x20\x0a\x12\x20\x0a\x15\ \x25\x0b\x15\x26\x08\x12\x23\x0c\x17\x26\x0b\x17\x24\x0d\x16\x24\ \x0c\x14\x23\x12\x1a\x29\x11\x1b\x29\x10\x1a\x27\x12\x1c\x28\x16\ \x1f\x2d\x11\x1c\x2a\x14\x1e\x2f\x1d\x25\x34\x17\x21\x2f\x20\x2c\ \x3b\x21\x2e\x3e\x22\x2f\x3e\x1f\x2a\x37\x1d\x28\x35\x22\x2e\x39\ \x2d\x39\x43\x29\x35\x40\x32\x3e\x4a\x33\x3c\x4a\x2b\x34\x42\x16\ \x1f\x2a\x12\x1b\x26\x0b\x13\x1e\x0b\x0c\x18\x09\x09\x16\x08\x06\ \x16\x06\x06\x15\x07\x06\x12\x00\x04\x12\x44\x53\x6d\x4c\x5d\x82\ \x68\x6e\x89\xfe\xf8\xff\x34\x30\x31\x19\x1c\x23\x21\x23\x29\x25\ \x28\x30\x2c\x2e\x35\x2e\x31\x3c\x24\x27\x36\x1e\x23\x36\x1d\x24\ \x36\x14\x1c\x2d\x12\x1b\x2b\x13\x1c\x2b\x17\x21\x32\x14\x1e\x2f\ \x13\x1f\x31\x14\x20\x32\x18\x24\x36\x1c\x2c\x3d\x24\x34\x45\x32\ \x42\x52\x4e\x5c\x69\x62\x6e\x78\x68\x73\x7c\x6f\x7b\x81\x7e\x8a\ \x8e\x86\x91\x95\x8c\x99\xa3\x62\x76\x88\x71\x8a\x9e\x6f\x87\x98\ \x6d\x86\x98\x6e\x88\x99\x6b\x85\x95\x6b\x85\x95\x6b\x85\x95\x69\ \x83\x93\x67\x83\x94\x66\x82\x93\x64\x80\x91\x63\x7f\x90\x62\x7e\ \x8f\x61\x7e\x8d\x62\x7d\x90\x5f\x7a\x8e\x00\x00\x00\x38\x6a\xa4\ \x26\x50\x81\x2b\x53\x80\x2b\x52\x7f\x28\x4e\x7c\x26\x49\x78\x26\ \x48\x76\x20\x3f\x6e\x10\x2d\x5b\x1f\x37\x5c\x0c\x18\x30\x01\x01\ \x0c\x03\x02\x08\x05\x04\x0c\x05\x03\x0c\x05\x04\x0e\x06\x05\x0e\ \x08\x06\x12\x08\x06\x12\x07\x08\x12\x08\x09\x13\x08\x08\x13\x07\ \x09\x15\x09\x0c\x16\x09\x0b\x15\x09\x0a\x15\x09\x0b\x16\x0a\x0c\ \x17\x0a\x0d\x15\x0b\x0e\x16\x0a\x0c\x16\x0a\x0d\x19\x0c\x0e\x19\ \x0a\x0c\x16\x0b\x0d\x17\x0b\x0c\x17\x0b\x0d\x17\x0c\x0e\x18\x0d\ \x0f\x19\x0a\x0c\x17\x0d\x0f\x1a\x0e\x10\x1a\x0d\x0f\x18\x12\x15\ \x1d\x10\x13\x1b\x12\x15\x1d\x19\x1b\x22\x19\x1c\x21\x1b\x1f\x21\ \x1b\x22\x22\x1c\x22\x23\x20\x25\x26\x23\x27\x28\x23\x27\x28\x2d\ \x31\x32\x2b\x2f\x31\x29\x2d\x30\x2f\x34\x36\x2f\x34\x36\x36\x3b\ \x3d\x36\x3a\x3b\x3a\x3e\x3f\x39\x3c\x3e\x2f\x33\x34\x27\x2a\x2c\ \x08\x0a\x0c\x02\x03\x08\x04\x03\x0d\x04\x06\x11\x09\x0a\x15\x0b\ \x0d\x18\x09\x0e\x19\x06\x0e\x1b\x09\x12\x20\x06\x0e\x1c\x0a\x11\ \x1f\x0c\x15\x23\x0b\x14\x22\x0a\x12\x21\x0a\x12\x23\x12\x1b\x2b\ \x0b\x16\x24\x0e\x1a\x28\x0f\x1a\x26\x10\x19\x24\x08\x11\x1e\x0a\ \x13\x20\x0c\x14\x22\x0d\x15\x23\x0a\x14\x23\x11\x1d\x2c\x0a\x14\ \x26\x17\x21\x33\x16\x21\x2f\x16\x21\x2f\x16\x21\x2f\x1f\x2b\x37\ \x1f\x2b\x36\x20\x2b\x39\x25\x33\x3f\x28\x37\x41\x28\x35\x3e\x33\ \x3e\x48\x34\x3e\x48\x33\x3c\x49\x24\x2d\x3a\x16\x20\x2a\x0d\x16\ \x1f\x0a\x11\x1a\x0b\x0f\x1a\x0a\x0b\x19\x08\x09\x15\x05\x05\x10\ \x04\x05\x0f\x01\x03\x13\x46\x52\x6b\x4d\x5d\x7f\x69\x70\x86\xfd\ \xf9\xfd\x38\x32\x33\x19\x1b\x20\x21\x23\x28\x25\x29\x2f\x2c\x2f\ \x37\x30\x32\x3e\x28\x2d\x3b\x1d\x25\x35\x22\x2a\x3a\x17\x1f\x30\ \x15\x1d\x2e\x12\x1c\x2d\x17\x1f\x31\x16\x1e\x31\x14\x1e\x2f\x13\ \x1f\x2f\x15\x22\x32\x1a\x29\x3b\x1f\x2e\x3f\x36\x44\x54\x48\x55\ \x63\x5c\x6a\x77\x67\x77\x80\x77\x87\x8d\x79\x85\x89\x88\x92\x94\ \x87\x91\x9c\x5d\x6f\x83\x73\x8c\xa2\x6f\x89\x9b\x6e\x88\x9b\x6c\ \x88\x9a\x6b\x87\x98\x6d\x87\x98\x6a\x85\x96\x6b\x84\x95\x67\x81\ \x92\x68\x84\x95\x65\x81\x92\x66\x81\x92\x64\x7e\x8f\x62\x7e\x8f\ \x60\x7b\x8f\x60\x7b\x90\x00\x00\x00\x3c\x6f\xab\x2c\x58\x8a\x2b\ \x52\x7f\x27\x4e\x7c\x26\x4a\x7a\x28\x49\x7a\x24\x45\x74\x1d\x3d\ \x6b\x12\x2f\x5d\x1e\x36\x5a\x06\x12\x2a\x00\x01\x0b\x03\x03\x08\ \x03\x03\x0b\x03\x02\x0c\x05\x04\x0d\x06\x05\x0e\x07\x06\x11\x08\ \x07\x11\x06\x07\x11\x08\x09\x13\x07\x09\x13\x09\x0b\x15\x09\x0b\ \x14\x08\x0b\x12\x09\x0c\x14\x0a\x0c\x16\x07\x09\x13\x0a\x0d\x15\ \x0a\x0d\x15\x0b\x0d\x16\x08\x0b\x16\x0e\x10\x1a\x09\x0b\x15\x0b\ \x0d\x16\x0b\x0d\x16\x0a\x0d\x15\x0c\x0f\x17\x0e\x11\x19\x0c\x0f\ \x17\x0c\x0f\x17\x0f\x11\x1a\x0e\x11\x19\x0f\x12\x1a\x11\x14\x1c\ \x12\x16\x1d\x19\x1d\x22\x19\x1c\x21\x19\x1d\x1f\x1e\x24\x25\x1f\ \x25\x25\x1e\x23\x24\x23\x27\x28\x23\x27\x28\x26\x2a\x2b\x2d\x32\ \x33\x2c\x31\x32\x2e\x33\x34\x32\x37\x38\x38\x3e\x3e\x3a\x3e\x3f\ \x3c\x40\x41\x3f\x43\x44\x29\x2d\x2e\x25\x28\x28\x08\x0a\x0b\x02\ \x02\x06\x03\x05\x0b\x05\x07\x10\x08\x09\x14\x09\x0b\x16\x08\x0c\ \x17\x0a\x12\x1e\x0b\x13\x20\x0c\x14\x21\x07\x10\x1d\x09\x12\x1f\ \x06\x0f\x1d\x0b\x14\x21\x0f\x16\x25\x0e\x17\x25\x09\x11\x1f\x0e\ \x17\x23\x0f\x18\x26\x0a\x13\x21\x08\x11\x20\x0f\x18\x26\x0f\x17\ \x28\x0f\x18\x27\x13\x1d\x2b\x18\x24\x32\x0f\x1b\x28\x12\x1d\x2b\ \x15\x21\x2c\x17\x23\x30\x21\x2c\x3a\x1d\x28\x37\x1b\x27\x33\x17\ \x23\x31\x21\x2f\x3b\x2b\x39\x45\x2a\x37\x41\x2b\x37\x41\x2e\x39\ \x44\x25\x2e\x3b\x1a\x23\x30\x17\x21\x2b\x0f\x17\x20\x0a\x11\x1b\ \x0a\x0d\x1b\x09\x08\x18\x08\x08\x17\x06\x07\x12\x04\x04\x0f\x00\ \x02\x13\x48\x53\x6d\x4c\x5d\x7e\x6a\x70\x87\xfd\xf9\xfd\x39\x34\ \x35\x18\x19\x1f\x21\x23\x28\x27\x2b\x32\x29\x2b\x34\x2f\x32\x3d\ \x27\x2c\x3b\x1d\x25\x33\x1f\x28\x36\x15\x1e\x2c\x14\x1d\x2c\x16\ \x20\x31\x13\x1c\x2d\x16\x21\x31\x18\x23\x31\x16\x23\x31\x17\x24\ \x32\x12\x20\x32\x1b\x2a\x3a\x2e\x3d\x4d\x3b\x4b\x59\x54\x64\x72\ \x72\x81\x8b\x79\x87\x8e\x7f\x8b\x90\x8f\x98\x9b\x90\x99\xa1\x65\ \x76\x88\x71\x89\x9f\x70\x88\x9b\x6f\x88\x9a\x6d\x88\x9a\x6d\x87\ \x98\x6c\x86\x97\x6b\x85\x96\x6a\x84\x95\x6a\x84\x94\x66\x81\x92\ \x63\x7f\x90\x66\x81\x92\x64\x7e\x90\x62\x7e\x92\x62\x7d\x91\x60\ \x7b\x90\x00\x00\x00\x3c\x6f\xb0\x30\x5c\x91\x2d\x54\x81\x2d\x54\ \x81\x25\x49\x7a\x26\x47\x79\x1c\x3d\x6c\x19\x39\x66\x16\x34\x60\ \x1c\x34\x58\x05\x12\x28\x01\x02\x0a\x02\x02\x07\x04\x03\x0b\x03\ \x02\x0c\x05\x04\x0c\x06\x05\x0e\x07\x06\x10\x08\x07\x11\x08\x09\ \x13\x08\x09\x13\x07\x09\x12\x08\x0a\x13\x07\x0a\x12\x07\x0b\x11\ \x08\x0b\x14\x0a\x0d\x16\x09\x0b\x16\x09\x0b\x14\x0a\x0d\x15\x0b\ \x0d\x17\x0b\x0e\x18\x0c\x0e\x18\x0c\x0f\x17\x0b\x0d\x16\x0c\x0e\ \x18\x0b\x0d\x16\x0b\x0e\x16\x0c\x0f\x17\x0b\x0e\x16\x0c\x0f\x17\ \x0c\x0f\x17\x11\x14\x1c\x10\x14\x1b\x13\x17\x1c\x12\x16\x1b\x18\ \x1c\x21\x1c\x1f\x23\x17\x1a\x1e\x1f\x24\x25\x1c\x21\x22\x22\x27\ \x28\x21\x26\x27\x21\x25\x26\x2a\x2e\x2f\x28\x2c\x2d\x2e\x33\x34\ \x31\x36\x36\x2e\x33\x32\x30\x35\x34\x36\x3a\x3b\x32\x36\x37\x39\ \x3e\x3d\x2d\x32\x31\x24\x28\x28\x08\x0b\x0a\x02\x02\x06\x04\x04\ \x0b\x05\x06\x10\x09\x0a\x17\x09\x0b\x16\x07\x0c\x17\x08\x10\x1b\ \x05\x0f\x19\x08\x10\x1c\x08\x11\x1e\x0b\x14\x21\x0a\x13\x20\x0c\ \x14\x23\x0d\x15\x23\x0b\x14\x22\x0d\x16\x24\x0d\x16\x23\x0c\x16\ \x25\x09\x13\x24\x0b\x15\x26\x10\x1a\x2b\x09\x13\x24\x10\x19\x28\ \x0d\x17\x25\x14\x20\x2d\x0f\x1c\x28\x15\x21\x2b\x16\x22\x2b\x16\ \x22\x2d\x17\x22\x30\x1b\x26\x34\x21\x2c\x3a\x1c\x29\x37\x1e\x2c\ \x38\x2a\x37\x43\x27\x33\x3f\x29\x35\x3f\x2e\x3a\x46\x2a\x33\x40\ \x1a\x23\x2e\x14\x1d\x27\x0d\x15\x1e\x09\x0f\x1b\x0b\x0d\x1c\x0a\ \x09\x1a\x08\x08\x18\x06\x06\x12\x05\x05\x11\x01\x04\x14\x48\x53\ \x6e\x4c\x5e\x7f\x66\x6d\x84\xfd\xfa\xfe\x39\x34\x35\x1c\x1e\x23\ \x23\x26\x2b\x26\x29\x31\x2b\x2d\x37\x29\x2e\x3a\x27\x2e\x3d\x1d\ \x25\x33\x1b\x24\x32\x16\x1f\x2d\x13\x1c\x2a\x14\x1e\x2e\x16\x20\ \x31\x16\x22\x2f\x10\x1c\x2a\x19\x26\x34\x14\x21\x2e\x15\x22\x31\ \x1b\x29\x38\x2f\x3e\x4e\x39\x48\x58\x51\x61\x6e\x74\x83\x8b\x7a\ \x86\x8e\x77\x80\x87\x8c\x92\x97\x8e\x97\xa0\x68\x79\x89\x74\x8d\ \xa1\x71\x89\x9b\x70\x89\x9c\x6e\x88\x9a\x6d\x87\x98\x6e\x88\x99\ \x6c\x86\x97\x6b\x85\x96\x67\x83\x93\x69\x84\x93\x67\x81\x91\x64\ \x7f\x90\x64\x80\x91\x63\x7e\x92\x61\x7c\x91\x5f\x7a\x8e\x00\x00\ \x00\x38\x6e\xb2\x30\x5e\x94\x2b\x54\x81\x32\x58\x84\x27\x4a\x7b\ \x28\x49\x7a\x1c\x3e\x6b\x1b\x3a\x67\x1e\x3b\x69\x1a\x31\x56\x03\ \x0f\x27\x00\x01\x0b\x03\x03\x08\x03\x03\x0b\x04\x03\x0c\x05\x04\ \x0e\x06\x05\x0e\x07\x06\x0f\x08\x07\x11\x08\x08\x12\x07\x08\x13\ \x08\x08\x13\x08\x0a\x15\x0a\x0c\x16\x09\x0b\x14\x09\x0b\x14\x09\ \x0b\x16\x08\x0a\x15\x09\x0c\x14\x09\x0c\x14\x0b\x0d\x17\x0a\x0d\ \x18\x0b\x0e\x17\x0b\x0e\x16\x0a\x0d\x15\x0c\x0e\x17\x0a\x0d\x15\ \x0d\x10\x18\x0d\x10\x18\x0c\x0f\x17\x0d\x10\x18\x13\x16\x1e\x10\ \x13\x1b\x11\x15\x1a\x15\x19\x1e\x12\x17\x1c\x19\x1d\x22\x18\x1c\ \x20\x1b\x1e\x22\x1f\x24\x27\x1d\x23\x24\x1f\x25\x25\x20\x25\x26\ \x25\x2a\x2b\x29\x2d\x2e\x2a\x30\x34\x2b\x30\x32\x30\x34\x35\x2c\ \x31\x31\x34\x38\x38\x31\x35\x36\x2e\x32\x32\x34\x39\x38\x28\x2d\ \x2b\x1d\x22\x21\x06\x0a\x0a\x01\x02\x07\x05\x05\x0d\x06\x06\x11\ \x09\x09\x16\x07\x08\x17\x0a\x0e\x19\x08\x10\x1b\x05\x0e\x18\x09\ \x12\x1c\x09\x12\x1e\x05\x0e\x1b\x07\x10\x1d\x0a\x13\x20\x08\x12\ \x20\x0c\x16\x25\x0a\x15\x24\x0e\x19\x29\x0e\x19\x2b\x0d\x17\x28\ \x0d\x17\x28\x0a\x15\x24\x0d\x18\x26\x10\x1a\x28\x11\x1a\x28\x12\ \x1e\x2b\x10\x1d\x2a\x11\x1d\x29\x14\x22\x2d\x17\x24\x32\x15\x22\ \x30\x23\x30\x3e\x1d\x2b\x37\x1e\x2f\x3b\x26\x33\x40\x28\x34\x41\ \x25\x31\x3e\x2a\x36\x43\x2f\x3d\x48\x29\x33\x40\x1a\x23\x2f\x14\ \x1d\x25\x0d\x14\x1d\x0b\x12\x1b\x08\x0b\x19\x0a\x0a\x19\x0a\x0a\ \x18\x06\x06\x12\x05\x05\x12\x01\x03\x14\x47\x52\x6c\x4d\x5d\x80\ \x68\x71\x87\xfd\xfa\xfd\x3b\x37\x38\x16\x19\x1f\x24\x28\x2d\x25\ \x29\x33\x2e\x30\x3b\x31\x35\x42\x24\x2b\x39\x1f\x28\x36\x1e\x27\ \x35\x18\x21\x30\x14\x1c\x2d\x10\x1a\x2b\x15\x21\x32\x0f\x1c\x2c\ \x12\x1f\x2e\x17\x24\x33\x19\x26\x34\x16\x22\x34\x18\x25\x36\x2b\ \x3a\x4a\x39\x48\x56\x49\x5a\x65\x72\x82\x89\x76\x81\x8b\x7e\x86\ \x8f\x89\x8f\x96\x92\x9b\xa3\x64\x75\x84\x77\x90\xa2\x6f\x89\x9a\ \x6f\x8a\x9c\x6e\x88\x9a\x6e\x88\x99\x6d\x87\x98\x6d\x87\x98\x69\ \x85\x96\x68\x85\x93\x68\x82\x91\x67\x81\x91\x66\x81\x92\x65\x80\ \x92\x62\x7d\x91\x62\x7e\x8f\x61\x7d\x8d\x00\x00\x00\x37\x6d\xb2\ \x34\x61\x99\x29\x52\x7f\x30\x55\x82\x2a\x4c\x7d\x28\x48\x7a\x19\ \x3a\x66\x21\x3f\x6d\x1d\x3a\x68\x17\x2e\x55\x06\x11\x29\x00\x00\ \x0b\x03\x02\x09\x04\x03\x0b\x04\x03\x0c\x05\x04\x0d\x06\x05\x0e\ \x06\x04\x0f\x08\x07\x11\x09\x09\x13\x09\x09\x15\x07\x08\x14\x08\ \x0a\x16\x08\x0b\x16\x09\x0b\x15\x0a\x0d\x17\x0b\x0d\x19\x0b\x0d\ \x17\x0a\x0c\x16\x0c\x0f\x18\x0a\x0c\x16\x09\x0b\x16\x0a\x0b\x15\ \x0b\x0d\x16\x0a\x0d\x15\x0d\x10\x18\x0c\x0f\x17\x09\x0c\x14\x0b\ \x0e\x16\x0c\x0f\x17\x0c\x0f\x17\x0e\x11\x19\x0f\x13\x18\x11\x15\ \x1a\x12\x16\x1b\x14\x18\x1d\x1a\x1f\x23\x18\x1c\x20\x1a\x1d\x21\ \x1e\x22\x26\x1d\x22\x24\x21\x26\x27\x1e\x23\x24\x22\x27\x28\x25\ \x2a\x2b\x31\x37\x3c\x2c\x31\x35\x2c\x2f\x33\x2f\x33\x35\x3a\x3d\ \x3e\x2f\x33\x34\x2d\x31\x31\x2d\x32\x31\x2a\x2f\x2d\x21\x25\x25\ \x08\x0b\x0e\x03\x02\x09\x06\x05\x0e\x05\x04\x10\x08\x08\x15\x09\ \x0a\x17\x0b\x0e\x1c\x08\x11\x1b\x06\x0f\x19\x06\x0f\x19\x07\x10\ \x1b\x0b\x14\x21\x0a\x13\x20\x0d\x17\x24\x09\x13\x25\x0a\x14\x25\ \x0e\x1a\x2c\x0b\x17\x29\x0b\x17\x28\x10\x19\x2a\x10\x19\x28\x0b\ \x14\x22\x10\x19\x27\x0f\x18\x26\x0b\x15\x23\x0f\x1a\x28\x11\x1c\ \x2a\x0d\x18\x26\x15\x21\x2f\x1a\x26\x34\x19\x26\x34\x1a\x28\x34\ \x21\x30\x3b\x1d\x2d\x3a\x20\x2d\x3a\x2d\x37\x45\x23\x2e\x3c\x2a\ \x37\x43\x31\x3e\x4a\x37\x42\x4e\x1c\x25\x30\x12\x1a\x23\x0d\x15\ \x1d\x0b\x12\x1b\x0a\x0e\x19\x08\x09\x17\x08\x08\x15\x07\x07\x13\ \x06\x05\x12\x01\x04\x15\x46\x51\x6d\x4e\x5f\x81\x70\x79\x8e\xfb\ \xf8\xfc\x3b\x37\x38\x17\x1b\x20\x21\x25\x2b\x22\x26\x30\x2f\x32\ \x3d\x2e\x32\x40\x2a\x31\x40\x23\x2b\x3c\x1d\x25\x36\x15\x1d\x2e\ \x14\x1d\x2f\x11\x1b\x2d\x11\x1d\x2f\x14\x20\x32\x14\x21\x31\x16\ \x23\x33\x16\x23\x33\x16\x24\x37\x14\x22\x34\x27\x36\x46\x2a\x3a\ \x47\x4d\x5c\x67\x68\x75\x7e\x69\x74\x7e\x83\x8b\x94\x8c\x93\x9a\ \x93\x9d\xa4\x57\x6b\x78\x75\x91\xa1\x6f\x8c\x9b\x6c\x8a\x9b\x6f\ \x89\x9b\x6e\x88\x99\x6d\x87\x98\x6d\x89\x9a\x6a\x86\x97\x6a\x87\ \x95\x6a\x85\x94\x68\x82\x93\x66\x81\x92\x65\x81\x92\x63\x7f\x91\ \x63\x7f\x8f\x61\x7e\x8d\x00\x00\x00\x3b\x6e\xb4\x3e\x6a\xa2\x31\ \x5a\x8a\x2a\x50\x82\x2d\x51\x82\x23\x45\x73\x1d\x3c\x68\x1c\x3a\ \x67\x29\x45\x74\x1b\x31\x5a\x08\x14\x2b\x00\x01\x0c\x03\x03\x09\ \x03\x03\x09\x04\x05\x0a\x05\x04\x0d\x05\x05\x0e\x07\x05\x11\x09\ \x07\x13\x08\x08\x14\x09\x09\x15\x09\x09\x15\x09\x0c\x15\x09\x0b\ \x15\x0b\x0d\x17\x07\x0a\x15\x09\x0b\x16\x0a\x0c\x17\x0a\x0c\x16\ \x09\x0b\x17\x0a\x0c\x16\x0a\x0c\x16\x0a\x0b\x16\x0b\x0d\x17\x0a\ \x0c\x15\x09\x0c\x14\x0c\x0d\x17\x0a\x0b\x15\x0b\x0d\x16\x0b\x0e\ \x16\x0b\x0e\x15\x0d\x11\x15\x0c\x10\x15\x12\x16\x1b\x13\x17\x1c\ \x16\x1a\x1e\x17\x1a\x1e\x19\x1c\x20\x1c\x1f\x23\x1e\x22\x23\x1b\ \x1f\x20\x27\x2c\x2d\x29\x2e\x2f\x1d\x23\x23\x24\x2a\x29\x2c\x31\ \x34\x2f\x34\x37\x2a\x2f\x32\x2b\x2e\x33\x35\x38\x3b\x3b\x3f\x40\ \x2a\x2e\x2f\x2c\x31\x30\x27\x2c\x2a\x1b\x1f\x20\x09\x0c\x11\x02\ \x01\x09\x05\x04\x0e\x05\x05\x11\x08\x0a\x14\x09\x0b\x16\x09\x0d\ \x1b\x08\x10\x1b\x0b\x15\x1e\x0a\x14\x1f\x08\x11\x1b\x07\x0f\x1b\ \x0a\x13\x22\x04\x0f\x21\x0b\x14\x25\x0b\x14\x26\x0e\x1b\x2b\x09\ \x17\x27\x0b\x19\x2a\x11\x1d\x2e\x0a\x16\x24\x0d\x19\x25\x0f\x1a\ \x28\x0c\x18\x25\x0d\x18\x25\x13\x20\x2c\x13\x1e\x2b\x12\x1b\x28\ \x16\x1f\x2b\x1a\x24\x32\x11\x1b\x2b\x20\x2d\x3d\x24\x32\x41\x26\ \x34\x43\x23\x2e\x3c\x27\x30\x3d\x25\x31\x3c\x2f\x3b\x47\x30\x3b\ \x49\x30\x3a\x47\x1d\x26\x33\x14\x1d\x28\x0c\x14\x1e\x0a\x11\x1a\ \x0c\x0f\x1b\x06\x07\x15\x0a\x09\x19\x05\x06\x14\x07\x07\x15\x01\ \x04\x15\x48\x53\x6d\x4e\x5f\x81\x6e\x75\x8a\xfd\xf9\xfd\x40\x3b\ \x3d\x19\x1a\x23\x21\x23\x2c\x24\x27\x32\x2c\x30\x3b\x2b\x31\x3f\ \x28\x2f\x41\x23\x29\x3c\x1e\x25\x38\x12\x1a\x2b\x0f\x19\x2b\x11\ \x1d\x2d\x16\x22\x35\x17\x23\x36\x11\x1e\x30\x15\x22\x32\x15\x22\ \x31\x16\x22\x33\x15\x21\x33\x22\x2e\x3f\x2d\x3c\x48\x43\x53\x5d\ \x68\x74\x7f\x60\x6b\x74\x84\x8e\x95\x8d\x96\x9a\x9a\xa5\xab\x59\ \x6d\x7b\x7b\x97\xa6\x70\x8c\x9a\x6e\x8b\x9a\x6f\x89\x9a\x6e\x88\ \x99\x6d\x88\x99\x6a\x86\x97\x68\x85\x94\x69\x86\x95\x6b\x85\x95\ \x69\x83\x93\x67\x82\x91\x65\x81\x92\x65\x7f\x94\x63\x7e\x91\x61\ \x7e\x8e\x00\x00\x00\x3a\x6f\xb1\x3a\x69\x9f\x2d\x57\x87\x2c\x54\ \x82\x26\x4a\x7a\x27\x48\x77\x1e\x3e\x6b\x1a\x39\x65\x27\x45\x73\ \x10\x27\x4e\x08\x13\x29\x00\x00\x0a\x02\x01\x08\x03\x03\x09\x04\ \x04\x0a\x05\x04\x0c\x06\x05\x0e\x07\x05\x11\x09\x07\x13\x07\x06\ \x12\x08\x08\x14\x09\x09\x15\x09\x0b\x15\x06\x08\x12\x0a\x0c\x15\ \x09\x0b\x16\x09\x0b\x16\x0a\x0c\x17\x0a\x0c\x17\x0b\x0d\x16\x0a\ \x0c\x16\x0b\x0d\x17\x0a\x0c\x16\x0c\x0e\x18\x0a\x0c\x15\x0c\x0f\ \x17\x0b\x0c\x16\x0e\x10\x1a\x0b\x0e\x17\x0e\x11\x19\x0f\x12\x1a\ \x0e\x11\x1a\x11\x14\x1c\x0f\x12\x1a\x13\x15\x1e\x11\x14\x1a\x15\ \x19\x1d\x17\x1b\x1e\x1a\x1e\x21\x1b\x20\x22\x1a\x1e\x20\x1d\x22\ \x24\x1d\x22\x23\x1f\x24\x25\x26\x2c\x2b\x27\x2c\x2d\x2d\x32\x33\ \x2b\x30\x31\x2c\x30\x31\x30\x34\x35\x32\x37\x37\x2f\x34\x33\x2c\ \x31\x30\x24\x29\x27\x1d\x22\x21\x08\x0a\x0f\x02\x02\x0a\x05\x04\ \x0d\x06\x06\x11\x06\x06\x11\x09\x0b\x17\x0a\x0d\x1b\x09\x10\x1c\ \x09\x13\x1c\x07\x0f\x1c\x07\x10\x1c\x0b\x13\x20\x0a\x13\x22\x0b\ \x15\x25\x0b\x16\x24\x0b\x17\x25\x0c\x18\x26\x06\x13\x21\x08\x15\ \x24\x0d\x1a\x2a\x0a\x15\x24\x0f\x1a\x28\x0b\x16\x23\x12\x1e\x29\ \x0f\x1b\x26\x0f\x1d\x28\x0f\x1b\x26\x13\x1d\x28\x11\x1b\x27\x1d\ \x27\x35\x1b\x27\x35\x1a\x27\x36\x1d\x2b\x38\x29\x37\x44\x21\x2c\ \x39\x28\x33\x40\x30\x3c\x49\x32\x3d\x4a\x32\x3c\x4a\x28\x31\x3f\ \x1b\x24\x31\x14\x1d\x28\x0e\x16\x1f\x09\x0f\x19\x0a\x0d\x19\x09\ \x0a\x18\x07\x06\x15\x05\x06\x12\x05\x05\x11\x01\x03\x14\x45\x52\ \x6b\x4f\x5f\x81\x6b\x71\x88\xfb\xf8\xfc\x42\x3d\x3f\x17\x19\x22\ \x25\x27\x30\x24\x26\x30\x2b\x2f\x38\x2c\x31\x3d\x28\x2e\x3d\x22\ \x28\x3b\x1b\x22\x35\x19\x22\x33\x12\x1c\x2c\x0e\x19\x29\x15\x20\ \x31\x12\x1c\x2e\x19\x22\x33\x1a\x25\x34\x17\x24\x32\x14\x21\x30\ \x18\x26\x36\x1c\x2b\x3c\x2e\x3e\x4c\x3e\x4e\x5b\x61\x70\x7a\x6d\ \x79\x81\x6f\x7a\x80\x8d\x96\x9a\x91\x9d\xa4\x5e\x72\x80\x72\x8e\ \x9d\x6f\x8b\x9a\x6f\x8b\x9c\x6e\x8a\x9c\x6c\x88\x99\x6a\x87\x98\ \x69\x87\x97\x67\x86\x95\x69\x87\x96\x6a\x84\x94\x69\x83\x93\x67\ \x83\x91\x65\x82\x92\x64\x80\x93\x63\x7f\x90\x60\x7c\x8d\x00\x00\ \x00\x33\x68\xaa\x37\x66\x9c\x2d\x58\x87\x2e\x57\x83\x24\x49\x76\ \x20\x42\x70\x1f\x3e\x6c\x17\x38\x64\x23\x42\x6f\x17\x2f\x55\x0d\ \x1a\x2d\x00\x01\x0a\x02\x01\x07\x03\x03\x09\x04\x04\x0a\x06\x05\ \x0d\x07\x06\x0f\x07\x05\x11\x08\x06\x12\x09\x08\x14\x08\x08\x14\ \x08\x09\x14\x08\x0a\x14\x08\x0a\x14\x0b\x0d\x17\x0c\x0e\x18\x0a\ \x0c\x17\x0b\x0d\x18\x0b\x0d\x18\x0b\x0d\x17\x0a\x0c\x16\x0c\x0e\ \x18\x09\x0b\x15\x0b\x0d\x17\x0a\x0c\x16\x0a\x0c\x15\x0b\x0d\x16\ \x0c\x0f\x17\x0b\x0e\x16\x0d\x10\x18\x0c\x0f\x15\x0e\x11\x19\x12\ \x15\x1d\x14\x17\x1f\x16\x19\x21\x19\x1d\x23\x15\x19\x1e\x1a\x1f\ \x22\x1a\x1f\x22\x1a\x1f\x22\x20\x25\x28\x20\x24\x28\x22\x27\x28\ \x20\x25\x26\x22\x28\x27\x24\x2a\x2a\x28\x2d\x2e\x28\x2d\x2e\x30\ \x34\x35\x31\x35\x36\x2d\x31\x32\x32\x37\x36\x2a\x2f\x2e\x29\x2e\ \x2c\x1f\x23\x23\x09\x0b\x10\x02\x02\x08\x06\x05\x0d\x06\x07\x11\ \x09\x0a\x15\x08\x0a\x16\x0b\x0f\x1c\x0a\x11\x1e\x07\x10\x1a\x04\ \x0d\x18\x08\x11\x1f\x08\x11\x1e\x09\x12\x20\x08\x12\x20\x0d\x19\ \x27\x0a\x16\x24\x0d\x1a\x28\x06\x13\x20\x08\x15\x24\x0f\x1c\x2c\ \x08\x13\x23\x0b\x16\x24\x0e\x19\x26\x0e\x1a\x24\x0d\x19\x23\x10\ \x1d\x28\x13\x1e\x29\x12\x1c\x26\x1a\x26\x32\x19\x24\x32\x16\x21\ \x2f\x1f\x2a\x38\x1e\x2c\x36\x28\x37\x41\x20\x2e\x3a\x25\x31\x3e\ \x29\x34\x42\x29\x34\x43\x2e\x37\x45\x2b\x34\x41\x1f\x28\x35\x13\ \x1d\x27\x0e\x16\x20\x09\x0f\x1a\x08\x0c\x18\x09\x09\x17\x09\x09\ \x17\x06\x07\x12\x04\x05\x0f\x01\x03\x14\x48\x54\x6d\x4e\x5f\x81\ \x6a\x70\x87\xfd\xf8\xfb\x43\x3d\x40\x1a\x1b\x25\x24\x26\x2f\x25\ \x26\x31\x2d\x31\x3a\x2d\x33\x3c\x27\x2e\x3a\x1f\x25\x35\x1c\x23\ \x36\x13\x1b\x2c\x17\x21\x31\x13\x1f\x2d\x11\x1c\x2c\x0e\x18\x29\ \x11\x1e\x2d\x13\x21\x30\x19\x26\x34\x16\x25\x36\x19\x28\x38\x20\ \x2e\x40\x2e\x3e\x4e\x3a\x4b\x58\x60\x6f\x7b\x65\x71\x79\x74\x7e\ \x84\x80\x8b\x90\xa3\xad\xb6\x5b\x6f\x7e\x79\x95\xa6\x70\x8a\x9a\ \x6e\x89\x9b\x6c\x89\x9b\x6b\x88\x99\x68\x86\x97\x6a\x87\x97\x6a\ \x86\x95\x6b\x85\x95\x68\x84\x93\x66\x83\x92\x66\x82\x91\x67\x80\ \x91\x67\x81\x91\x65\x7f\x90\x62\x7c\x8c\x00\x00\x00\x31\x64\xa8\ \x3e\x6d\xa6\x35\x62\x91\x2f\x58\x85\x26\x4c\x79\x20\x41\x6f\x1d\ \x3f\x6a\x19\x3b\x66\x21\x41\x6e\x1b\x34\x57\x0a\x19\x2b\x00\x01\ \x0a\x03\x02\x09\x04\x04\x0a\x04\x04\x0a\x06\x05\x0d\x06\x05\x0e\ \x08\x06\x12\x09\x07\x13\x08\x08\x14\x08\x08\x14\x09\x09\x15\x08\ \x0b\x15\x07\x0a\x14\x09\x0b\x15\x09\x0b\x15\x08\x0a\x15\x0a\x0c\ \x17\x0b\x0d\x18\x09\x0b\x16\x0b\x0d\x17\x0b\x0d\x17\x08\x0a\x14\ \x0c\x0e\x18\x0b\x0d\x17\x0c\x0e\x17\x0c\x0e\x17\x0b\x0e\x16\x09\ \x0c\x13\x0c\x0f\x15\x0d\x10\x15\x10\x13\x18\x10\x13\x19\x11\x15\ \x1a\x13\x16\x1b\x14\x18\x1d\x15\x19\x1e\x1b\x1f\x24\x18\x1c\x20\ \x19\x1e\x21\x21\x25\x29\x1e\x23\x27\x1d\x22\x24\x21\x26\x27\x22\ \x28\x27\x23\x29\x29\x2a\x2f\x30\x2e\x33\x34\x31\x35\x36\x33\x37\ \x39\x2c\x2f\x33\x2a\x2e\x30\x27\x2b\x2b\x24\x29\x28\x18\x1d\x1e\ \x0a\x0c\x10\x01\x01\x07\x06\x05\x0d\x06\x07\x11\x09\x09\x15\x08\ \x0a\x17\x09\x0c\x1a\x08\x10\x1d\x09\x13\x1d\x09\x11\x1c\x06\x10\ \x1d\x07\x11\x1f\x07\x10\x1f\x0a\x12\x20\x08\x16\x25\x0e\x1b\x2a\ \x0e\x1b\x2b\x09\x16\x26\x0a\x17\x27\x0b\x18\x28\x0d\x17\x28\x07\ \x11\x21\x08\x14\x1f\x0e\x1a\x25\x13\x1f\x2b\x0d\x1a\x26\x11\x1d\ \x29\x12\x1b\x28\x15\x1f\x2d\x18\x23\x31\x16\x22\x2f\x1e\x2a\x36\ \x1f\x2b\x34\x24\x30\x3c\x27\x35\x41\x2d\x3a\x47\x32\x3c\x4a\x2b\ \x34\x42\x2c\x35\x43\x28\x31\x3f\x29\x32\x3f\x14\x1e\x28\x0d\x15\ \x1f\x09\x0f\x1a\x0a\x0e\x19\x0c\x0c\x1a\x0b\x0b\x19\x06\x06\x12\ \x07\x07\x13\x02\x06\x16\x48\x53\x6f\x50\x61\x84\x6c\x72\x89\xfb\ \xf6\xfb\x44\x3e\x42\x19\x1b\x25\x21\x22\x2c\x25\x27\x31\x2e\x33\ \x3c\x2b\x33\x3c\x28\x2f\x3c\x1e\x25\x35\x1a\x23\x32\x15\x1d\x2d\ \x12\x1c\x2d\x0d\x18\x29\x15\x21\x33\x14\x20\x31\x16\x24\x35\x15\ \x23\x35\x18\x28\x39\x19\x28\x3a\x1b\x2a\x3c\x23\x33\x44\x27\x37\ \x46\x34\x46\x53\x63\x72\x81\x6c\x77\x80\x74\x7d\x86\x82\x8b\x94\ \x92\x9d\xa9\x62\x76\x85\x79\x94\xa5\x70\x8a\x9b\x6d\x89\x9a\x6c\ \x89\x9a\x6c\x88\x99\x6b\x87\x98\x6b\x86\x97\x6b\x85\x95\x6c\x85\ \x96\x68\x84\x95\x67\x83\x93\x67\x83\x93\x67\x81\x92\x66\x80\x91\ \x64\x7e\x90\x61\x7b\x8c\x00\x00\x00\x36\x69\xaa\x46\x76\xad\x3a\ \x68\x99\x2b\x53\x81\x2b\x51\x7e\x20\x44\x72\x20\x41\x6c\x19\x39\ \x63\x1a\x3c\x67\x1c\x37\x5a\x0c\x1a\x2b\x00\x01\x09\x02\x02\x07\ \x04\x04\x0b\x05\x05\x0c\x05\x04\x0d\x07\x06\x0f\x08\x08\x12\x07\ \x07\x12\x07\x06\x12\x08\x07\x13\x08\x08\x14\x09\x0a\x14\x09\x0a\ \x14\x0a\x0c\x16\x0a\x0b\x16\x0a\x0c\x17\x09\x0b\x16\x0b\x0d\x18\ \x0b\x0d\x18\x0b\x0d\x17\x0a\x0c\x17\x09\x0c\x16\x09\x0c\x16\x0a\ \x0d\x17\x0c\x0f\x1a\x0c\x0e\x18\x0c\x0e\x17\x09\x0c\x15\x0d\x10\ \x17\x0f\x11\x18\x0f\x0f\x18\x11\x12\x19\x14\x15\x1b\x13\x15\x1a\ \x14\x18\x1c\x1a\x1e\x23\x18\x1c\x21\x19\x1e\x21\x1b\x20\x23\x1c\ \x21\x25\x1e\x23\x27\x1f\x26\x28\x20\x28\x28\x22\x2a\x29\x29\x2e\ \x2f\x2c\x32\x32\x2b\x30\x30\x2b\x2f\x2f\x32\x36\x39\x2f\x32\x37\ \x2b\x2e\x30\x22\x27\x27\x22\x26\x26\x1b\x1f\x21\x08\x0a\x0e\x01\ \x02\x08\x04\x03\x0c\x06\x06\x10\x0a\x0a\x16\x0d\x0e\x1c\x0b\x0f\ \x1f\x09\x11\x1f\x08\x11\x1e\x09\x12\x1f\x0b\x14\x22\x06\x0f\x1f\ \x0b\x13\x23\x0a\x13\x22\x0b\x18\x28\x0e\x1a\x2b\x0c\x18\x29\x0b\ \x17\x27\x0c\x17\x27\x11\x1d\x2d\x0d\x1a\x29\x0f\x1b\x2a\x15\x20\ \x2d\x0e\x1a\x28\x13\x1f\x2e\x12\x1f\x2e\x13\x1e\x2c\x12\x1d\x2b\ \x18\x24\x32\x15\x22\x30\x1d\x2b\x38\x22\x2f\x3a\x1f\x2d\x38\x24\ \x31\x40\x25\x32\x41\x27\x33\x42\x2b\x36\x45\x2c\x37\x44\x30\x3a\ \x47\x2c\x35\x42\x22\x2a\x37\x13\x1d\x27\x0b\x13\x1d\x0b\x11\x1c\ \x09\x0d\x19\x08\x0a\x18\x07\x07\x15\x06\x06\x13\x07\x07\x14\x02\ \x04\x17\x48\x52\x6f\x51\x61\x85\x71\x76\x8d\xfb\xf6\xfb\x47\x41\ \x45\x1a\x1b\x24\x25\x27\x2f\x26\x2a\x35\x27\x2c\x36\x2a\x30\x3b\ \x24\x2d\x39\x1d\x25\x33\x1a\x21\x31\x16\x1f\x2f\x16\x1f\x31\x15\ \x20\x32\x17\x23\x35\x12\x1f\x30\x13\x21\x32\x19\x28\x3a\x1d\x2c\ \x3f\x1a\x28\x3b\x1e\x2c\x3f\x1d\x2b\x3d\x28\x38\x48\x34\x46\x53\ \x5f\x6f\x7d\x64\x70\x7c\x71\x7a\x83\x7f\x87\x90\x87\x92\x9c\x69\ \x7b\x8a\x6e\x87\x99\x6e\x8b\x9b\x6d\x88\x9b\x6d\x88\x9a\x6c\x87\ \x98\x6c\x86\x96\x6c\x86\x96\x6b\x85\x95\x69\x84\x94\x67\x82\x93\ \x67\x82\x93\x67\x82\x93\x66\x80\x91\x65\x7f\x90\x64\x7e\x8f\x61\ \x7b\x8b\x00\x00\x00\x36\x67\xa5\x4c\x7b\xaf\x43\x70\xa0\x26\x4f\ \x7e\x2a\x4e\x7a\x1c\x41\x6e\x1f\x42\x6c\x1d\x3b\x63\x1a\x39\x64\ \x1f\x3a\x5e\x0f\x1a\x2f\x00\x01\x07\x02\x02\x07\x04\x03\x0b\x04\ \x03\x0d\x06\x05\x0d\x07\x06\x0f\x07\x08\x10\x07\x07\x11\x07\x07\ \x12\x07\x06\x12\x08\x07\x12\x0a\x0c\x15\x08\x09\x13\x09\x0b\x15\ \x09\x0b\x15\x09\x0c\x17\x09\x0b\x16\x0c\x0e\x19\x0b\x0d\x18\x0b\ \x0d\x17\x0d\x0d\x19\x0c\x0e\x17\x0d\x0f\x19\x0b\x0d\x19\x0f\x11\ \x1f\x0f\x11\x1b\x0d\x0f\x19\x0e\x11\x1a\x0d\x10\x18\x11\x13\x1b\ \x15\x17\x20\x19\x1b\x23\x15\x19\x1f\x16\x1a\x1e\x18\x1c\x20\x16\ \x1a\x1f\x1a\x1f\x23\x1a\x1f\x22\x1e\x23\x26\x22\x27\x2b\x1d\x22\ \x26\x1e\x24\x26\x1d\x25\x25\x21\x29\x29\x29\x2e\x2f\x2e\x34\x33\ \x2c\x31\x30\x2e\x32\x32\x2d\x31\x32\x31\x34\x38\x2c\x31\x31\x24\ \x29\x28\x25\x2a\x29\x19\x1d\x1d\x09\x0c\x0f\x02\x03\x09\x04\x03\ \x0c\x05\x05\x10\x07\x08\x14\x09\x0b\x19\x0a\x0f\x1e\x0b\x13\x22\ \x07\x10\x1e\x0b\x14\x22\x0a\x12\x21\x0a\x12\x23\x0a\x13\x24\x08\ \x12\x24\x0d\x1a\x2a\x0a\x16\x28\x0d\x19\x2c\x0d\x19\x29\x07\x12\ \x23\x0f\x19\x2a\x0c\x1a\x2a\x0b\x1a\x29\x0e\x1a\x28\x0e\x1a\x29\ \x0a\x17\x27\x10\x1d\x2d\x0e\x1b\x2a\x0a\x17\x25\x15\x1f\x2d\x1b\ \x27\x35\x13\x22\x2f\x23\x32\x40\x1e\x2c\x3a\x21\x2f\x3f\x34\x41\ \x51\x2f\x3c\x4a\x2a\x37\x45\x27\x34\x41\x30\x3b\x47\x2d\x36\x43\ \x21\x29\x37\x13\x1c\x26\x11\x18\x22\x0f\x15\x21\x0a\x0d\x1b\x0b\ \x0c\x1b\x09\x09\x17\x06\x06\x14\x05\x05\x14\x03\x04\x17\x48\x52\ \x6f\x4f\x5f\x83\x77\x7a\x91\xf9\xf2\xf9\x48\x42\x46\x18\x1b\x23\ \x1f\x21\x29\x27\x2a\x33\x2b\x30\x3a\x31\x37\x42\x25\x2d\x3b\x21\ \x26\x38\x1c\x23\x34\x1a\x21\x32\x15\x1e\x30\x12\x1d\x2f\x14\x20\ \x32\x12\x1e\x2f\x17\x24\x34\x19\x27\x39\x16\x24\x37\x14\x22\x35\ \x19\x24\x38\x1e\x2a\x3d\x28\x37\x48\x31\x41\x50\x62\x72\x81\x64\ \x70\x7d\x81\x8b\x95\x78\x7f\x87\x84\x8e\x96\x6d\x7d\x8c\x72\x8a\ \x9e\x6c\x89\x9a\x6c\x88\x99\x6e\x88\x99\x6c\x86\x97\x6b\x85\x96\ \x6a\x84\x94\x6b\x85\x95\x68\x83\x94\x67\x82\x93\x68\x81\x92\x66\ \x80\x91\x64\x7e\x8f\x64\x7e\x8f\x63\x7d\x8e\x5f\x79\x89\x00\x00\ \x00\x2e\x5d\x9a\x39\x68\x9d\x37\x63\x94\x2d\x55\x83\x2d\x50\x7b\ \x26\x49\x75\x28\x4b\x75\x1d\x3a\x63\x1f\x3b\x68\x25\x3e\x64\x09\ \x14\x28\x00\x02\x0a\x01\x02\x07\x05\x05\x0b\x05\x04\x0c\x06\x05\ \x0e\x07\x05\x0e\x07\x06\x0f\x0a\x09\x12\x08\x08\x12\x06\x07\x12\ \x08\x08\x14\x09\x09\x15\x0a\x0b\x16\x0d\x0f\x1a\x08\x0a\x15\x0a\ \x0d\x18\x0a\x0c\x17\x0b\x0d\x17\x0c\x0e\x18\x0a\x0b\x15\x0c\x0d\ \x17\x0a\x0c\x16\x0d\x0f\x19\x0b\x0d\x18\x0d\x10\x1b\x0c\x0e\x18\ \x0c\x0e\x18\x0d\x10\x17\x0c\x0f\x17\x10\x13\x1b\x0e\x10\x18\x0f\ \x13\x18\x14\x18\x1d\x14\x18\x1d\x16\x1a\x1e\x19\x1d\x22\x1a\x1e\ \x22\x1c\x21\x24\x1c\x21\x24\x1e\x23\x26\x21\x26\x29\x20\x25\x26\ \x22\x27\x28\x23\x28\x29\x2b\x30\x31\x2a\x2f\x2e\x2a\x2f\x2e\x2f\ \x34\x34\x2d\x30\x32\x27\x2a\x2e\x2c\x30\x30\x23\x28\x27\x1f\x24\ \x23\x1a\x1e\x1f\x0a\x0c\x0f\x01\x01\x07\x04\x03\x0c\x05\x05\x10\ \x06\x07\x14\x09\x0b\x19\x0b\x10\x1e\x0a\x13\x21\x08\x11\x1f\x0a\ \x13\x21\x08\x11\x20\x0e\x16\x28\x0a\x13\x24\x05\x10\x20\x04\x11\ \x21\x0a\x17\x28\x0d\x19\x2b\x0c\x19\x29\x0e\x1a\x2b\x10\x1c\x2e\ \x0e\x1b\x2d\x0d\x1c\x2d\x0f\x1c\x2c\x13\x1f\x2f\x14\x1f\x30\x15\ \x23\x33\x11\x1e\x2e\x1c\x29\x38\x1d\x25\x32\x1c\x25\x32\x23\x2f\ \x3d\x27\x34\x43\x22\x2e\x3f\x24\x31\x41\x29\x37\x45\x2c\x3a\x46\ \x2d\x3b\x44\x28\x34\x3f\x2f\x3b\x48\x2c\x35\x43\x21\x2a\x38\x14\ \x1c\x27\x0f\x16\x21\x0e\x14\x1f\x09\x0c\x1a\x0d\x0d\x1c\x09\x09\ \x17\x06\x06\x14\x05\x05\x13\x01\x03\x15\x45\x50\x6c\x50\x60\x84\ \x76\x7a\x90\xfe\xf6\xfb\x4b\x45\x48\x16\x18\x20\x22\x25\x2a\x29\ \x2c\x34\x2c\x32\x3a\x2e\x34\x3f\x28\x2f\x3e\x20\x27\x38\x1f\x26\ \x37\x14\x1d\x2e\x15\x1f\x30\x15\x20\x31\x16\x22\x34\x14\x21\x31\ \x12\x1f\x2f\x19\x28\x38\x17\x25\x37\x15\x24\x35\x1e\x2c\x3f\x1d\ \x2b\x3e\x1f\x2e\x3f\x2d\x3f\x4f\x5d\x6c\x7c\x5b\x67\x75\x7d\x87\ \x91\x80\x87\x8e\x81\x8b\x91\x61\x70\x7e\x69\x80\x92\x6d\x89\x99\ \x6b\x86\x98\x6d\x87\x99\x6a\x84\x95\x6a\x84\x95\x69\x83\x93\x68\ \x82\x92\x67\x81\x92\x67\x81\x92\x66\x80\x91\x66\x80\x91\x64\x7e\ \x8f\x63\x7d\x8e\x62\x7c\x8d\x5e\x77\x87\x00\x00\x00\x33\x60\x9c\ \x32\x61\x98\x30\x5f\x92\x2f\x59\x88\x30\x53\x7f\x2a\x4d\x7a\x21\ \x44\x70\x26\x43\x6e\x1e\x39\x67\x28\x40\x68\x03\x0f\x24\x01\x01\ \x0a\x02\x02\x07\x04\x03\x09\x03\x02\x0b\x05\x04\x0d\x06\x06\x0c\ \x07\x06\x0f\x09\x08\x12\x09\x09\x13\x08\x09\x13\x08\x08\x13\x0a\ \x0a\x16\x07\x08\x14\x0c\x0e\x19\x08\x0a\x15\x09\x0c\x17\x09\x0b\ \x17\x0b\x0d\x18\x0b\x0d\x16\x0a\x0c\x15\x0b\x0d\x17\x0a\x0c\x16\ \x0d\x0f\x19\x0b\x0d\x17\x0a\x0e\x16\x0e\x11\x19\x0b\x0e\x16\x0c\ \x0f\x17\x0d\x11\x18\x10\x14\x19\x10\x14\x19\x13\x17\x1c\x13\x17\ \x1c\x15\x19\x1e\x17\x1b\x20\x1a\x1e\x23\x1a\x1e\x22\x1f\x24\x27\ \x1f\x24\x28\x1f\x24\x26\x20\x25\x26\x21\x26\x27\x22\x27\x28\x25\ \x29\x2a\x29\x2d\x2e\x2e\x33\x32\x2a\x2f\x2e\x33\x37\x37\x32\x37\ \x38\x30\x34\x36\x2a\x2f\x30\x21\x26\x25\x20\x25\x25\x1a\x1f\x1f\ \x07\x0a\x0c\x01\x02\x07\x04\x03\x0c\x06\x06\x12\x09\x09\x17\x09\ \x0c\x1a\x09\x12\x1d\x06\x0e\x1b\x0c\x14\x22\x0a\x13\x21\x08\x11\ \x1f\x0d\x15\x26\x0b\x14\x25\x0c\x16\x28\x10\x1c\x2e\x09\x16\x26\ \x09\x16\x26\x12\x1e\x2f\x08\x14\x26\x0b\x16\x29\x0d\x18\x2a\x0d\ \x18\x29\x0a\x17\x27\x0a\x15\x24\x12\x1d\x2c\x11\x1c\x2c\x10\x1c\ \x2c\x13\x20\x30\x16\x20\x2e\x17\x21\x2f\x20\x2d\x3c\x20\x2c\x3d\ \x24\x2f\x40\x21\x2e\x3c\x2a\x3a\x46\x2a\x3a\x46\x2e\x3b\x46\x2e\ \x39\x45\x39\x44\x51\x2c\x35\x43\x21\x29\x37\x12\x1a\x27\x0f\x16\ \x21\x0d\x13\x1f\x0b\x0d\x1c\x0a\x0b\x1a\x0b\x0b\x19\x07\x06\x15\ \x08\x07\x16\x02\x03\x16\x48\x53\x6e\x52\x62\x85\x74\x78\x90\xff\ \xf9\xfe\x4b\x45\x47\x1c\x1d\x25\x22\x24\x2d\x24\x27\x30\x2d\x32\ \x3a\x2c\x32\x3e\x28\x2f\x3e\x1e\x25\x37\x1f\x26\x38\x15\x1e\x2f\ \x13\x1d\x2e\x12\x1c\x2d\x1a\x26\x36\x0e\x1b\x2c\x15\x21\x33\x16\ \x24\x35\x1b\x2b\x3a\x17\x27\x37\x20\x2f\x41\x1a\x28\x3c\x21\x31\ \x43\x2d\x3f\x51\x4f\x5f\x72\x57\x66\x75\x81\x8b\x95\x8a\x92\x98\ \x8d\x96\x9b\x6f\x7d\x89\x69\x7f\x90\x6a\x85\x95\x6c\x86\x98\x69\ \x83\x95\x68\x82\x93\x68\x82\x93\x67\x81\x91\x66\x80\x90\x65\x7d\ \x8f\x65\x7e\x90\x65\x7e\x8f\x62\x7c\x8d\x62\x7c\x8c\x61\x7b\x8c\ \x5f\x78\x88\x5b\x74\x84\x00\x00\x00\x3e\x6b\xa9\x39\x6b\xa5\x36\ \x69\xa0\x30\x5b\x8d\x35\x5a\x85\x2f\x53\x80\x1e\x43\x70\x1a\x3b\ \x67\x0f\x2f\x5c\x22\x3c\x63\x06\x11\x27\x00\x00\x09\x02\x03\x07\ \x04\x04\x09\x03\x04\x0a\x05\x05\x0b\x07\x06\x0d\x09\x06\x10\x08\ \x07\x10\x07\x08\x10\x06\x08\x10\x06\x08\x12\x08\x08\x14\x08\x09\ \x14\x0a\x0c\x17\x08\x0a\x15\x0b\x0e\x19\x0a\x0c\x16\x0c\x0d\x18\ \x0b\x0d\x16\x09\x0c\x14\x0b\x0d\x16\x0a\x0c\x16\x0e\x10\x1b\x0c\ \x0e\x18\x09\x0d\x13\x0a\x0d\x15\x0f\x12\x1a\x0e\x11\x19\x0d\x11\ \x16\x0e\x13\x17\x11\x16\x19\x12\x16\x1b\x13\x16\x1b\x18\x1b\x20\ \x15\x19\x1e\x17\x1b\x20\x19\x1e\x21\x19\x1e\x21\x1e\x23\x26\x1e\ \x23\x24\x1b\x20\x21\x20\x25\x26\x21\x25\x26\x27\x2b\x2c\x2c\x30\ \x31\x29\x2e\x2d\x2d\x33\x32\x32\x38\x38\x2e\x33\x34\x34\x39\x3a\ \x29\x2f\x2e\x27\x2c\x2c\x1e\x23\x24\x16\x1b\x1b\x07\x0a\x0c\x02\ \x02\x07\x05\x04\x0e\x06\x06\x13\x08\x0a\x18\x09\x0d\x1a\x06\x0f\ \x19\x09\x12\x1d\x0c\x13\x21\x0a\x13\x21\x09\x12\x21\x0c\x14\x25\ \x08\x11\x22\x0b\x15\x26\x0e\x1a\x2c\x09\x16\x26\x0e\x1b\x2b\x0d\ \x1a\x2b\x0b\x18\x29\x0f\x19\x2a\x11\x1a\x2a\x0e\x17\x26\x10\x1c\ \x29\x12\x1d\x2b\x10\x1a\x28\x14\x1f\x2f\x16\x22\x32\x15\x22\x32\ \x1b\x29\x39\x1b\x29\x39\x21\x2f\x3f\x22\x2d\x3e\x26\x30\x40\x22\ \x2f\x3b\x2d\x3e\x4a\x32\x42\x4f\x2a\x36\x44\x2e\x39\x46\x31\x3c\ \x4a\x2b\x34\x42\x22\x2a\x3a\x15\x1d\x29\x11\x18\x22\x0c\x12\x1e\ \x0a\x0d\x1c\x0b\x0c\x1b\x0a\x0a\x18\x09\x07\x17\x06\x05\x16\x02\ \x03\x17\x48\x53\x6e\x52\x63\x84\x75\x78\x92\xff\xf9\xfd\x4d\x48\ \x49\x1c\x1e\x26\x23\x25\x2e\x22\x24\x2f\x2a\x2f\x38\x2e\x34\x3e\ \x26\x2e\x3a\x1f\x27\x38\x24\x2e\x40\x16\x20\x31\x13\x1d\x2e\x0e\ \x18\x29\x13\x20\x30\x12\x1f\x30\x15\x21\x33\x16\x25\x34\x18\x28\ \x35\x1c\x2d\x3b\x24\x32\x44\x1f\x2d\x40\x1f\x2f\x42\x2c\x3e\x51\ \x58\x6d\x7f\x4c\x5d\x6c\x7c\x88\x92\x88\x93\x98\x94\x9d\xa1\x6a\ \x76\x82\x62\x77\x88\x67\x81\x90\x64\x7f\x90\x64\x7e\x90\x65\x7f\ \x90\x63\x7d\x8e\x62\x7c\x8c\x61\x7b\x8b\x63\x7b\x8d\x61\x79\x8b\ \x60\x78\x89\x60\x7a\x8b\x5e\x78\x89\x5e\x77\x87\x5b\x74\x84\x56\ \x6f\x7f\x00\x00\x00\x3e\x72\xb1\x36\x6c\xaa\x37\x6d\xa7\x30\x5d\ \x91\x33\x59\x86\x32\x56\x83\x23\x47\x74\x1e\x40\x6d\x12\x30\x5e\ \x1d\x35\x5b\x05\x0f\x28\x00\x01\x09\x04\x03\x08\x04\x04\x0a\x03\ \x03\x09\x05\x04\x0d\x06\x05\x0e\x08\x07\x0e\x07\x06\x0f\x06\x07\ \x10\x08\x09\x13\x09\x0a\x14\x09\x0b\x15\x0b\x0c\x16\x0c\x0f\x18\ \x09\x0b\x15\x0c\x0d\x1a\x0a\x0b\x18\x09\x0b\x16\x0b\x0e\x15\x09\ \x0d\x11\x0a\x0d\x14\x0b\x0e\x17\x0c\x0f\x18\x0a\x0c\x16\x0d\x0e\ \x18\x0b\x0d\x17\x0d\x10\x1a\x09\x0e\x17\x0c\x0f\x16\x0f\x12\x17\ \x0d\x11\x16\x0d\x11\x16\x11\x15\x1a\x13\x17\x1c\x16\x1a\x1f\x1b\ \x1f\x24\x16\x1b\x1e\x1b\x20\x22\x19\x1f\x1f\x1d\x23\x24\x22\x27\ \x29\x2a\x2f\x31\x25\x2a\x2b\x23\x27\x27\x27\x2c\x2b\x28\x2d\x2c\ \x2a\x2f\x2e\x30\x35\x34\x2d\x32\x31\x2d\x32\x31\x2b\x30\x2f\x1e\ \x24\x23\x1d\x23\x22\x19\x1d\x1f\x0a\x0b\x0f\x02\x01\x07\x03\x03\ \x0c\x07\x08\x13\x08\x0b\x17\x0a\x0e\x19\x08\x0f\x1b\x06\x0e\x1b\ \x0a\x13\x20\x07\x10\x1d\x0b\x14\x23\x0a\x13\x24\x0a\x15\x24\x0c\ \x17\x27\x0f\x1d\x2f\x07\x15\x26\x0f\x1c\x2b\x0c\x19\x29\x0d\x17\ \x27\x0b\x13\x24\x0e\x16\x27\x08\x11\x22\x0d\x17\x28\x12\x1d\x2d\ \x0f\x1b\x2b\x0f\x1c\x2b\x0e\x1b\x29\x1b\x28\x36\x13\x20\x2f\x14\ \x23\x33\x1f\x2d\x3f\x1e\x2c\x3c\x1f\x2b\x3c\x25\x2f\x3f\x29\x36\ \x46\x31\x3e\x4d\x30\x3c\x49\x3b\x46\x52\x34\x3c\x4a\x2b\x35\x40\ \x1a\x23\x2d\x15\x1e\x27\x0c\x15\x1e\x0d\x12\x1d\x0d\x0f\x1c\x0b\ \x0c\x1a\x06\x09\x17\x06\x08\x17\x09\x09\x17\x02\x07\x19\x46\x53\ \x6c\x53\x62\x82\x77\x7a\x8f\xff\xf8\xfb\x51\x4c\x4e\x1c\x1f\x24\ \x25\x2a\x2f\x27\x2b\x33\x2c\x2e\x38\x31\x35\x40\x25\x2b\x39\x23\ \x2c\x3b\x29\x32\x45\x17\x21\x35\x14\x21\x32\x10\x1d\x32\x11\x1f\ \x31\x11\x1f\x31\x16\x25\x38\x13\x23\x34\x1b\x2e\x3e\x25\x36\x49\ \x25\x35\x4b\x25\x35\x4b\x21\x34\x48\x2e\x42\x53\x54\x66\x79\x51\ \x60\x6f\x7c\x88\x92\x88\x93\x9b\x8a\x94\x9e\x7b\x88\x93\x5d\x6f\ \x7d\x64\x7e\x8d\x5f\x79\x8a\x61\x7a\x8b\x5d\x76\x86\x5d\x76\x88\ \x5c\x76\x87\x5b\x75\x85\x5b\x75\x85\x59\x72\x83\x5b\x74\x84\x59\ \x72\x82\x5a\x73\x83\x57\x70\x80\x55\x6c\x7e\x52\x69\x79\x00\x00\ \x00\x37\x6e\xb0\x3a\x72\xb3\x3d\x73\xb1\x37\x64\x99\x30\x56\x83\ \x2e\x52\x7f\x25\x4a\x77\x1c\x3d\x6b\x13\x2f\x5e\x1b\x32\x5a\x08\ \x14\x2c\x00\x00\x0a\x02\x02\x08\x03\x03\x09\x04\x04\x0a\x05\x04\ \x0d\x07\x06\x0f\x06\x06\x0e\x08\x07\x10\x08\x08\x12\x07\x08\x12\ \x09\x0a\x15\x07\x09\x14\x08\x0a\x13\x08\x0b\x13\x09\x0b\x15\x09\ \x0b\x16\x09\x0a\x15\x0a\x0d\x16\x0e\x11\x19\x0e\x11\x1a\x0d\x11\ \x19\x0c\x0f\x18\x10\x11\x1b\x0e\x10\x1a\x0d\x0f\x19\x0d\x0f\x1a\ \x0f\x11\x1c\x0c\x10\x1a\x11\x15\x1d\x10\x13\x18\x10\x14\x19\x12\ \x16\x1b\x19\x1d\x22\x15\x19\x1e\x19\x1c\x21\x1b\x20\x23\x1c\x21\ \x24\x1c\x21\x24\x21\x27\x29\x1d\x23\x26\x21\x26\x27\x21\x26\x27\ \x22\x26\x27\x24\x28\x29\x28\x2d\x2c\x2b\x30\x2f\x2f\x34\x33\x35\ \x3a\x39\x2f\x34\x33\x31\x36\x35\x2a\x2f\x2e\x21\x27\x26\x19\x1f\ \x1e\x17\x1c\x1d\x08\x09\x0d\x02\x01\x07\x02\x02\x0c\x05\x05\x10\ \x07\x0a\x15\x0a\x0e\x19\x08\x0f\x1b\x08\x11\x1e\x0b\x14\x21\x0b\ \x14\x21\x0b\x14\x23\x0a\x13\x24\x0a\x15\x24\x0b\x16\x24\x0a\x18\ \x28\x08\x15\x25\x11\x1e\x2e\x0a\x17\x27\x0c\x17\x28\x14\x1d\x2f\ \x0e\x19\x2a\x10\x1b\x2d\x10\x1b\x2d\x10\x1d\x2e\x10\x1d\x2d\x10\ \x1d\x2d\x10\x1d\x2c\x13\x20\x2e\x15\x22\x30\x19\x27\x37\x16\x24\ \x36\x27\x35\x45\x27\x34\x43\x2c\x36\x47\x32\x3f\x4f\x31\x3e\x4d\ \x2b\x37\x44\x34\x3e\x4a\x39\x41\x4e\x26\x2f\x3b\x1b\x25\x2f\x16\ \x1f\x29\x0d\x15\x20\x0e\x13\x1e\x0b\x0e\x1b\x0a\x0b\x19\x08\x0a\ \x19\x05\x08\x17\x09\x08\x17\x01\x05\x18\x45\x53\x6c\x55\x63\x84\ \x7d\x81\x94\xfe\xf6\xf9\x5c\x57\x59\x1e\x20\x28\x23\x28\x2e\x24\ \x28\x31\x2a\x2c\x37\x30\x34\x41\x27\x2d\x3c\x1e\x27\x36\x21\x2a\ \x3d\x13\x1e\x32\x16\x24\x35\x12\x20\x34\x13\x21\x33\x15\x23\x35\ \x16\x25\x38\x1a\x2a\x3c\x1b\x2d\x3e\x1d\x2f\x41\x22\x33\x48\x1e\ \x2f\x45\x1e\x32\x43\x2a\x3e\x4f\x3e\x50\x63\x54\x64\x72\x69\x75\ \x80\x8a\x94\x9d\x84\x8f\x9a\x86\x94\xa0\x5a\x6e\x7c\x5c\x74\x84\ \x5b\x75\x86\x58\x71\x82\x58\x71\x81\x57\x70\x80\x54\x6e\x7f\x56\ \x70\x81\x54\x6f\x7f\x54\x6d\x7d\x54\x6d\x7d\x54\x6d\x7d\x53\x6c\ \x7c\x51\x6a\x7a\x4f\x67\x77\x4b\x62\x72\x00\x00\x00\x38\x71\xb5\ \x3a\x71\xb4\x43\x7a\xb8\x3a\x6a\xa0\x36\x5e\x8b\x2d\x52\x7f\x28\ \x4d\x79\x1e\x3f\x6c\x1c\x37\x65\x1a\x2f\x58\x0b\x16\x2f\x00\x00\ \x0b\x02\x02\x08\x04\x04\x0a\x04\x04\x0a\x05\x04\x0c\x07\x06\x0f\ \x07\x06\x0f\x08\x07\x10\x07\x07\x11\x06\x06\x12\x08\x08\x14\x08\ \x0a\x14\x08\x0b\x14\x0a\x0d\x15\x0b\x0d\x17\x0a\x0f\x18\x0a\x10\ \x18\x0b\x11\x18\x09\x0f\x18\x0a\x0f\x19\x0b\x10\x19\x08\x0d\x17\ \x0c\x0f\x19\x0a\x0c\x17\x0a\x0c\x17\x0c\x0d\x18\x0c\x0e\x19\x0d\ \x11\x1c\x0f\x11\x1b\x11\x14\x1b\x0d\x12\x16\x11\x15\x1a\x11\x15\ \x1a\x15\x19\x1f\x15\x18\x1d\x19\x1e\x21\x18\x1d\x20\x1c\x21\x24\ \x1b\x21\x24\x1e\x23\x25\x20\x25\x26\x23\x28\x29\x22\x27\x27\x25\ \x2b\x29\x2a\x2f\x2e\x2a\x2f\x2e\x2b\x30\x2f\x2c\x31\x30\x2b\x30\ \x2f\x28\x2f\x2e\x27\x2d\x2c\x27\x2d\x2c\x19\x1f\x1e\x16\x1b\x1c\ \x09\x0a\x0e\x01\x01\x07\x04\x04\x0c\x06\x06\x12\x07\x0b\x16\x09\ \x0d\x18\x07\x0d\x1a\x07\x10\x1d\x0a\x13\x20\x0b\x14\x21\x09\x12\ \x21\x08\x11\x22\x0a\x14\x25\x09\x14\x22\x0b\x17\x27\x0d\x19\x29\ \x0c\x19\x29\x09\x16\x26\x0d\x19\x2a\x0f\x1c\x2e\x12\x1e\x30\x0c\ \x18\x2a\x0e\x1a\x2c\x13\x20\x30\x07\x14\x24\x10\x1d\x2d\x12\x1f\ \x2f\x13\x20\x2f\x1a\x27\x37\x17\x25\x36\x14\x22\x34\x19\x27\x37\ \x26\x32\x41\x29\x35\x45\x26\x34\x44\x2c\x3a\x4a\x34\x41\x4f\x3b\ \x46\x53\x36\x43\x4f\x2b\x34\x42\x1f\x28\x34\x15\x1e\x28\x0b\x13\ \x1d\x09\x0f\x1a\x09\x0d\x1a\x09\x0b\x19\x08\x08\x18\x08\x08\x18\ \x06\x05\x15\x01\x06\x18\x45\x51\x6c\x55\x63\x84\x83\x85\x97\xfc\ \xf2\xf6\x61\x5c\x5e\x1a\x1d\x25\x23\x28\x2f\x27\x2b\x36\x2d\x30\ \x3e\x2f\x33\x42\x29\x2f\x40\x24\x2c\x3c\x1d\x26\x38\x14\x1e\x32\ \x16\x24\x34\x12\x20\x33\x16\x24\x36\x13\x21\x33\x16\x26\x38\x19\ \x29\x3c\x1d\x2e\x41\x1f\x31\x43\x21\x33\x48\x26\x39\x4d\x25\x3a\ \x4c\x34\x48\x5a\x3e\x52\x65\x52\x61\x71\x7b\x87\x92\x89\x94\x9c\ \x86\x91\x9b\x7f\x8c\x9b\x5f\x72\x81\x55\x6c\x7d\x55\x6e\x80\x54\ \x6d\x7d\x54\x6d\x7d\x53\x6c\x7c\x51\x6a\x7a\x51\x6a\x7a\x52\x6b\ \x7b\x4e\x67\x78\x4e\x67\x77\x4f\x67\x77\x4e\x66\x76\x4c\x63\x73\ \x4b\x62\x72\x47\x5e\x6e\x00\x00\x00\x3c\x79\xbd\x3d\x78\xbb\x40\ \x78\xb8\x3f\x70\xa9\x33\x5b\x8a\x34\x5b\x88\x29\x4e\x7a\x25\x44\ \x70\x25\x3f\x6d\x13\x27\x4e\x0f\x19\x32\x00\x00\x09\x02\x02\x07\ \x04\x04\x0a\x04\x04\x0a\x05\x04\x0d\x06\x05\x0e\x07\x06\x0f\x08\ \x07\x11\x07\x08\x12\x06\x06\x12\x09\x08\x15\x09\x0a\x15\x0a\x0c\ \x15\x09\x0c\x15\x09\x0e\x17\x08\x0d\x17\x08\x0d\x15\x08\x0e\x15\ \x0c\x11\x1a\x09\x0e\x18\x08\x0d\x16\x0c\x11\x1a\x0c\x10\x1a\x07\ \x0a\x15\x0e\x10\x1b\x0d\x0e\x19\x0d\x0f\x1a\x0c\x10\x1b\x0d\x10\ \x1a\x0e\x12\x17\x0e\x13\x16\x0b\x0f\x13\x11\x14\x1b\x15\x18\x20\ \x1a\x1e\x23\x1b\x20\x23\x1f\x24\x27\x1b\x20\x23\x1f\x24\x28\x1a\ \x20\x22\x1e\x23\x24\x20\x26\x26\x22\x28\x27\x26\x2b\x2a\x26\x2b\ \x2c\x2e\x33\x34\x31\x36\x37\x30\x35\x36\x2a\x2f\x30\x28\x2d\x2e\ \x23\x28\x29\x1f\x24\x25\x1b\x1f\x20\x18\x1b\x1e\x06\x08\x0c\x01\ \x02\x07\x03\x03\x0d\x06\x07\x13\x07\x0a\x15\x09\x0d\x18\x08\x0e\ \x1b\x05\x0e\x1b\x07\x10\x1d\x0a\x13\x20\x0b\x14\x22\x0e\x17\x28\ \x0b\x15\x25\x06\x11\x1f\x0b\x15\x26\x0a\x14\x25\x10\x1b\x2c\x0b\ \x18\x28\x0d\x1a\x2b\x0a\x18\x2a\x0c\x18\x2a\x15\x21\x33\x10\x1c\ \x2e\x10\x1d\x2c\x0a\x17\x25\x19\x26\x35\x12\x1f\x2f\x13\x20\x30\ \x17\x24\x34\x1d\x2a\x3c\x1a\x29\x3a\x1f\x2d\x3d\x21\x2e\x3b\x28\ \x35\x45\x22\x30\x41\x29\x37\x49\x2e\x3c\x4c\x2a\x36\x44\x2e\x3b\ \x47\x34\x40\x4c\x26\x2f\x3c\x17\x20\x2d\x0d\x14\x20\x0b\x11\x1c\ \x09\x0f\x1c\x07\x09\x18\x06\x07\x17\x07\x07\x15\x09\x08\x16\x01\ \x02\x15\x47\x53\x6e\x58\x63\x85\x82\x84\x96\xfa\xf0\xf4\x62\x5b\ \x5f\x1a\x1d\x27\x23\x28\x30\x2a\x2f\x39\x31\x34\x41\x31\x34\x45\ \x25\x2b\x3c\x1d\x26\x37\x1e\x27\x3a\x14\x1f\x32\x1a\x28\x38\x10\ \x1e\x30\x14\x22\x34\x18\x26\x38\x18\x28\x39\x15\x25\x38\x1d\x2e\ \x44\x17\x2a\x3f\x23\x36\x4a\x1e\x30\x47\x2c\x3e\x55\x30\x46\x5c\ \x30\x45\x59\x4e\x5f\x6e\x67\x75\x7e\x86\x91\x99\x9c\xa8\xb1\x7f\ \x8e\x9d\x5d\x6f\x81\x56\x6c\x7e\x52\x6b\x7b\x51\x6a\x7a\x4f\x68\ \x78\x4f\x68\x78\x4f\x67\x76\x4e\x65\x74\x4c\x65\x73\x4f\x65\x75\ \x4c\x63\x72\x4c\x63\x72\x4a\x61\x70\x4a\x61\x71\x45\x5c\x6b\x44\ \x5a\x67\x00\x00\x00\x3a\x79\xbd\x42\x7e\xc0\x44\x80\xbf\x3f\x73\ \xab\x2f\x5a\x88\x30\x58\x85\x26\x4b\x77\x24\x43\x6d\x23\x3e\x67\ \x17\x2d\x51\x0d\x19\x30\x00\x01\x08\x03\x03\x08\x04\x04\x0a\x05\ \x05\x0b\x06\x05\x0e\x07\x06\x0f\x07\x06\x0f\x08\x06\x10\x07\x07\ \x13\x07\x07\x13\x0a\x0a\x16\x09\x0a\x15\x09\x0b\x14\x09\x0d\x15\ \x07\x0c\x15\x08\x0c\x17\x0b\x10\x1a\x09\x0f\x16\x0b\x11\x18\x0a\ \x0f\x18\x0a\x0f\x18\x0a\x0f\x18\x0d\x11\x1c\x0c\x0f\x1a\x0e\x10\ \x1b\x0e\x0f\x19\x0f\x12\x1b\x0e\x14\x1c\x0f\x12\x19\x11\x15\x19\ \x0e\x12\x16\x10\x15\x19\x15\x18\x1f\x12\x15\x1d\x15\x18\x1f\x18\ \x1c\x21\x1b\x1f\x22\x1a\x1e\x20\x1c\x22\x22\x18\x1e\x1e\x1f\x24\ \x25\x1f\x25\x24\x21\x26\x25\x23\x28\x27\x2a\x2f\x30\x2b\x30\x31\ \x2b\x30\x31\x29\x2e\x2f\x2b\x30\x31\x25\x2a\x2b\x27\x2c\x2d\x22\ \x27\x28\x19\x1d\x1e\x13\x17\x19\x06\x07\x0b\x02\x03\x08\x03\x03\ \x0c\x06\x07\x13\x08\x0c\x16\x08\x0c\x17\x07\x0d\x1a\x07\x0f\x1c\ \x06\x0f\x1c\x09\x12\x1f\x07\x10\x1e\x09\x12\x23\x07\x11\x22\x0b\ \x16\x24\x0f\x18\x26\x10\x1a\x2b\x11\x1b\x2b\x0f\x1a\x2c\x11\x1d\ \x2f\x0c\x19\x28\x0a\x17\x27\x10\x1a\x2b\x10\x19\x2b\x0f\x1c\x2b\ \x0b\x18\x26\x12\x1f\x2e\x0b\x18\x28\x17\x24\x34\x17\x23\x34\x12\ \x20\x32\x1f\x2d\x3e\x1c\x2a\x39\x26\x34\x40\x25\x32\x41\x22\x31\ \x42\x30\x3e\x50\x36\x43\x54\x2a\x37\x45\x30\x3e\x4a\x27\x33\x3f\ \x1b\x24\x31\x14\x1c\x29\x0d\x14\x1f\x0d\x13\x1d\x0c\x13\x1f\x08\ \x0b\x1a\x09\x09\x19\x06\x07\x13\x08\x06\x13\x01\x04\x14\x4a\x55\ \x6f\x57\x62\x84\x8c\x8d\x9f\xfa\xee\xf2\x67\x61\x65\x1a\x1c\x26\ \x25\x2a\x34\x27\x2c\x35\x26\x2a\x35\x2e\x33\x40\x24\x2b\x3b\x1f\ \x28\x39\x21\x2a\x3f\x19\x24\x37\x16\x24\x34\x0c\x1a\x2c\x16\x24\ \x36\x13\x21\x33\x13\x23\x33\x14\x23\x37\x1a\x2a\x41\x18\x2b\x42\ \x20\x32\x49\x1e\x30\x48\x21\x35\x4e\x32\x46\x5f\x21\x37\x4b\x54\ \x65\x73\x70\x7e\x88\x76\x82\x88\x7a\x86\x90\x7e\x8d\x9d\x64\x76\ \x88\x51\x67\x79\x4e\x68\x77\x4d\x67\x76\x4d\x66\x76\x4d\x65\x75\ \x4d\x63\x73\x4c\x63\x72\x4c\x63\x72\x4a\x61\x70\x4b\x60\x70\x4b\ \x5f\x6e\x4a\x5f\x6f\x46\x5e\x6e\x43\x5a\x67\x43\x59\x64\x00\x00\ \x00\x3c\x7d\xc2\x42\x80\xc3\x44\x82\xc0\x3b\x72\xab\x2f\x5a\x8b\ \x3b\x61\x8e\x25\x4c\x79\x26\x48\x77\x21\x3e\x68\x1c\x2f\x4e\x0b\ \x15\x28\x00\x01\x09\x03\x04\x08\x05\x06\x0b\x04\x04\x0b\x06\x05\ \x0f\x06\x05\x10\x08\x07\x11\x06\x05\x11\x07\x07\x14\x07\x07\x13\ \x0a\x0a\x15\x09\x0b\x15\x08\x0a\x14\x0a\x0c\x16\x0b\x0d\x17\x07\ \x0e\x16\x09\x10\x19\x0b\x12\x1b\x0c\x11\x1b\x0a\x0e\x19\x09\x0e\ \x19\x0b\x0f\x1a\x0c\x10\x1b\x0b\x0f\x1a\x0e\x0f\x1a\x0c\x0e\x19\ \x0e\x10\x1a\x13\x15\x1e\x0f\x12\x1a\x10\x13\x1b\x12\x14\x1d\x12\ \x14\x20\x13\x14\x20\x13\x16\x1e\x19\x1d\x22\x15\x1b\x1f\x1d\x23\ \x26\x1e\x24\x27\x1d\x24\x26\x1c\x22\x25\x23\x28\x2b\x22\x27\x29\ \x22\x26\x27\x2a\x2e\x30\x2e\x32\x34\x28\x2d\x2e\x2b\x30\x31\x2e\ \x33\x34\x31\x36\x37\x26\x2b\x2c\x2b\x2f\x30\x1e\x22\x23\x1c\x21\ \x20\x17\x1a\x1c\x09\x07\x0c\x03\x01\x08\x06\x05\x0f\x09\x09\x15\ \x08\x0b\x18\x08\x0e\x1b\x09\x10\x1d\x08\x10\x1d\x06\x0e\x1b\x0a\ \x15\x23\x0a\x13\x25\x0b\x14\x25\x10\x18\x29\x0b\x15\x23\x0d\x15\ \x25\x0a\x14\x25\x08\x14\x25\x0e\x1a\x2c\x11\x1f\x30\x0a\x16\x28\ \x0e\x1a\x2c\x18\x24\x36\x0c\x1a\x2c\x11\x1f\x31\x14\x23\x34\x11\ \x1f\x2f\x11\x1d\x2f\x19\x23\x37\x19\x28\x38\x1a\x29\x39\x1d\x2c\ \x3c\x21\x31\x3f\x27\x37\x44\x28\x39\x47\x2c\x3a\x4b\x2f\x3f\x4f\ \x30\x3e\x4c\x2e\x39\x46\x32\x3c\x4c\x35\x3f\x4c\x21\x29\x36\x15\ \x1c\x2b\x0f\x16\x22\x0c\x0f\x1c\x09\x0b\x19\x0a\x0b\x1a\x06\x06\ \x16\x09\x08\x18\x05\x05\x13\x04\x06\x18\x49\x51\x6c\x55\x63\x83\ \x82\x85\x94\xf3\xe9\xec\x6a\x63\x69\x1b\x1e\x28\x24\x28\x33\x28\ \x29\x37\x2d\x2e\x39\x2f\x34\x40\x2a\x31\x42\x1d\x25\x38\x1d\x27\ \x39\x19\x27\x3e\x14\x24\x41\x0e\x1c\x2e\x1a\x2c\x44\x18\x2b\x44\ \x18\x2c\x45\x30\x48\x61\x2a\x43\x5e\x18\x30\x49\x2c\x44\x5c\x37\ \x4f\x67\x11\x2d\x47\x40\x5c\x77\x27\x3d\x53\x42\x52\x63\x70\x7c\ \x86\x81\x8d\x92\x7d\x87\x8f\x73\x82\x90\x69\x7d\x8f\x4b\x61\x71\ \x49\x63\x73\x4b\x63\x72\x4a\x61\x6f\x49\x60\x6f\x48\x60\x6d\x49\ \x61\x6d\x45\x5f\x6d\x44\x5d\x6a\x46\x5e\x6a\x46\x5d\x6c\x44\x5b\ \x6b\x46\x5a\x69\x42\x57\x66\x40\x55\x64\x00\x00\x00\x43\x84\xc8\ \x3d\x7b\xbe\x3d\x79\xb8\x3a\x6f\xa9\x2b\x54\x86\x39\x5d\x8b\x2b\ \x4f\x7c\x2a\x4c\x7a\x24\x42\x6d\x17\x2c\x4d\x08\x12\x26\x00\x01\ \x08\x03\x04\x08\x05\x04\x0a\x04\x05\x0b\x05\x04\x0e\x07\x06\x10\ \x09\x06\x12\x06\x05\x11\x07\x07\x13\x08\x08\x14\x0a\x0a\x17\x09\ \x0c\x15\x0c\x0e\x18\x09\x0b\x15\x0a\x0c\x16\x0a\x10\x19\x08\x0f\ \x18\x07\x0e\x17\x0b\x0f\x19\x0c\x10\x1b\x0c\x10\x1b\x09\x0d\x18\ \x0b\x0f\x1a\x0c\x0f\x1a\x0f\x11\x1c\x0e\x10\x1b\x10\x12\x1c\x0e\ \x10\x1a\x0e\x11\x19\x0f\x12\x1a\x12\x16\x1c\x13\x15\x1f\x16\x18\ \x21\x1a\x1f\x24\x12\x16\x1a\x17\x1b\x20\x16\x1a\x1f\x18\x1c\x21\ \x18\x1d\x20\x1c\x20\x25\x21\x26\x27\x1f\x24\x25\x25\x2a\x2b\x2b\ \x2e\x31\x29\x2e\x2f\x2f\x34\x35\x31\x36\x37\x2b\x30\x31\x28\x2d\ \x2e\x26\x2b\x2c\x22\x26\x27\x20\x24\x25\x1b\x1f\x1f\x16\x19\x1b\ \x07\x07\x0b\x03\x02\x08\x03\x03\x0d\x07\x07\x13\x06\x0b\x17\x09\ \x0f\x1c\x0d\x13\x20\x09\x11\x1e\x07\x10\x1d\x05\x0e\x1b\x08\x11\ \x20\x0b\x14\x25\x09\x13\x25\x08\x13\x23\x0a\x15\x24\x0e\x1a\x2a\ \x0f\x1b\x2d\x10\x1e\x30\x0d\x1a\x2c\x0c\x18\x2a\x11\x1d\x2f\x10\ \x1d\x2f\x0f\x1e\x30\x0f\x1d\x2f\x13\x21\x32\x0f\x1d\x2d\x17\x23\ \x35\x1d\x28\x3c\x1a\x28\x3a\x23\x31\x42\x27\x36\x46\x26\x35\x45\ \x20\x2f\x3f\x1f\x2e\x3e\x32\x41\x51\x2a\x39\x49\x26\x34\x43\x34\ \x3f\x4f\x38\x42\x54\x32\x3c\x4a\x19\x22\x30\x12\x1a\x27\x0d\x13\ \x1f\x11\x16\x21\x0c\x0e\x1c\x0a\x0b\x1a\x07\x06\x16\x06\x06\x14\ \x07\x08\x16\x03\x04\x15\x48\x53\x6a\x53\x62\x80\x91\x96\xa4\xee\ \xe5\xe7\x6b\x65\x69\x1d\x1f\x29\x26\x29\x33\x28\x2c\x37\x1f\x26\ \x31\x2d\x37\x44\x22\x2d\x40\x22\x2f\x45\x13\x24\x3c\x18\x2a\x47\ \x38\x48\x66\x0c\x1b\x30\x14\x27\x41\x23\x38\x53\x11\x27\x42\x26\ \x40\x5b\x29\x43\x61\x17\x2f\x47\x0f\x27\x3e\x44\x61\x77\x1b\x3b\ \x52\x36\x54\x6d\x1d\x33\x47\x4e\x5e\x6f\x68\x74\x7e\x79\x85\x8c\ \x71\x7d\x84\x80\x92\x9f\x6c\x82\x93\x43\x5a\x69\x41\x5b\x6a\x45\ \x5c\x6c\x42\x59\x69\x41\x58\x67\x41\x58\x67\x40\x58\x65\x40\x57\ \x65\x3e\x56\x62\x3d\x54\x60\x3e\x53\x61\x3e\x52\x62\x3d\x52\x61\ \x3c\x51\x60\x39\x4e\x5d\x00\x00\x00\x47\x86\xca\x40\x7d\xbe\x37\ \x74\xb3\x39\x6e\xa9\x2c\x55\x86\x32\x57\x84\x28\x4b\x77\x21\x42\ \x71\x20\x3f\x6b\x1b\x31\x54\x07\x10\x26\x00\x00\x0a\x03\x03\x07\ \x03\x04\x0a\x04\x03\x0b\x05\x04\x0e\x07\x06\x10\x08\x07\x12\x06\ \x06\x10\x09\x0a\x14\x09\x09\x14\x0a\x0a\x17\x0b\x0c\x16\x0a\x0c\ \x16\x0b\x0d\x17\x0b\x0d\x17\x0b\x11\x1a\x08\x0e\x17\x0c\x11\x1a\ \x09\x0d\x17\x07\x0b\x16\x0b\x0e\x19\x09\x0b\x16\x0b\x0e\x19\x0d\ \x0f\x1a\x0f\x11\x1c\x10\x12\x1d\x11\x13\x1d\x0c\x0e\x18\x0e\x11\ \x19\x11\x14\x1b\x10\x15\x19\x10\x13\x1a\x10\x14\x1a\x17\x1c\x20\ \x12\x16\x1b\x18\x1a\x22\x1b\x1d\x23\x19\x1c\x21\x1b\x1e\x23\x1c\ \x21\x24\x1c\x22\x23\x1f\x25\x24\x22\x28\x27\x26\x2a\x2b\x28\x2d\ \x2e\x30\x35\x36\x2e\x33\x34\x2d\x32\x33\x30\x35\x36\x29\x2e\x31\ \x25\x2a\x2c\x1f\x24\x25\x1a\x1e\x1f\x17\x1a\x1b\x05\x06\x0b\x01\ \x01\x07\x03\x03\x0c\x08\x0a\x14\x06\x0a\x17\x09\x10\x1d\x08\x10\ \x1d\x07\x0f\x1c\x08\x11\x1e\x0b\x13\x20\x09\x12\x20\x0a\x13\x25\ \x0d\x18\x2a\x0a\x17\x27\x0a\x17\x26\x0a\x18\x28\x0b\x19\x2b\x12\ \x20\x32\x0d\x1a\x2c\x10\x1c\x2e\x0f\x1b\x2d\x0e\x1b\x2d\x10\x1f\ \x30\x0e\x1c\x2e\x0e\x1c\x2e\x0f\x1e\x2f\x13\x21\x33\x16\x24\x37\ \x15\x23\x35\x1c\x2a\x3c\x22\x30\x42\x20\x2f\x40\x23\x32\x42\x25\ \x33\x43\x32\x41\x51\x2f\x3e\x4c\x32\x41\x4e\x35\x42\x51\x32\x3c\ \x4d\x2e\x39\x48\x1e\x27\x34\x13\x1c\x28\x0d\x15\x1f\x0b\x10\x1c\ \x0c\x0e\x1c\x0b\x0b\x1a\x08\x08\x18\x0a\x0a\x19\x06\x06\x13\x01\ \x03\x13\x48\x53\x6a\x55\x65\x81\x92\x98\xa3\xef\xe8\xe8\x6d\x68\ \x6a\x1a\x1d\x26\x23\x28\x30\x2c\x33\x3e\x43\x50\x5d\x22\x32\x43\ \x57\x66\x79\x20\x2f\x46\x18\x2d\x4a\x21\x39\x59\x21\x31\x4e\x13\ \x23\x39\x17\x2b\x46\x1d\x32\x4e\x17\x2d\x49\x20\x38\x56\x2f\x4a\ \x69\x24\x3a\x56\x1a\x33\x4f\x3c\x58\x74\x1d\x3b\x56\x45\x61\x7a\ \x16\x2a\x3c\x47\x58\x67\x6b\x77\x81\x7b\x85\x8d\x74\x7e\x87\x7d\ \x8f\x9c\x71\x8b\x9b\x3b\x53\x61\x3a\x53\x60\x3f\x53\x64\x3e\x52\ \x62\x3d\x51\x5f\x3d\x51\x5e\x3c\x50\x5d\x39\x50\x5b\x3a\x50\x5b\ \x3a\x4f\x59\x37\x4c\x58\x39\x4d\x5a\x39\x4b\x58\x3a\x4b\x59\x37\ \x49\x56\x00\x00\x00\x47\x87\xc8\x42\x7f\xc0\x36\x73\xb2\x3e\x73\ \xaf\x2f\x59\x8c\x34\x5c\x88\x2f\x52\x7f\x1b\x3d\x6a\x1e\x3d\x6a\ \x1c\x33\x58\x09\x12\x2a\x00\x00\x09\x03\x03\x07\x04\x04\x09\x04\ \x03\x0b\x06\x05\x0f\x07\x06\x10\x08\x06\x11\x07\x08\x11\x08\x0a\ \x12\x08\x09\x14\x09\x09\x16\x09\x0a\x16\x0b\x0d\x18\x0a\x0c\x17\ \x09\x0b\x16\x08\x0c\x16\x09\x0e\x17\x0a\x0f\x18\x0b\x0f\x19\x0b\ \x0d\x18\x0c\x0d\x19\x0b\x0d\x18\x0b\x0d\x18\x0e\x10\x1b\x0c\x0e\ \x19\x0d\x0f\x1a\x0f\x11\x1b\x0d\x0f\x19\x10\x13\x1b\x11\x14\x1c\ \x10\x13\x1b\x11\x14\x1b\x12\x16\x1b\x17\x1b\x20\x14\x18\x1d\x14\ \x19\x1d\x19\x1e\x22\x1a\x1e\x22\x1a\x1e\x21\x1a\x1f\x21\x21\x26\ \x28\x1e\x24\x23\x24\x29\x28\x2a\x2e\x2f\x24\x29\x2a\x2d\x32\x33\ \x2c\x31\x32\x2e\x33\x34\x2c\x31\x33\x28\x2d\x30\x29\x2e\x31\x21\ \x26\x27\x1f\x24\x25\x17\x1b\x1d\x07\x08\x0d\x02\x02\x08\x04\x04\ \x0d\x06\x08\x13\x07\x0d\x19\x09\x11\x1e\x07\x0f\x1c\x08\x11\x1e\ \x09\x12\x1f\x0e\x17\x24\x0e\x17\x26\x08\x11\x22\x0b\x15\x26\x0c\ \x17\x26\x09\x16\x25\x08\x15\x25\x0e\x1a\x2c\x08\x13\x25\x0a\x16\ \x28\x0c\x19\x2a\x0e\x1a\x2c\x0e\x1b\x2d\x0d\x1b\x2f\x12\x20\x34\ \x12\x20\x32\x12\x20\x32\x18\x26\x38\x1c\x29\x3e\x18\x26\x3a\x1e\ \x2c\x3f\x25\x33\x46\x28\x36\x48\x23\x31\x43\x2b\x37\x48\x2a\x38\ \x48\x2f\x40\x4c\x33\x42\x50\x2d\x3c\x4b\x31\x3e\x4c\x35\x41\x4f\ \x1b\x25\x34\x17\x20\x2e\x0d\x16\x21\x0c\x13\x1f\x0a\x0f\x1d\x08\ \x0b\x1a\x09\x0a\x1a\x07\x07\x18\x09\x0a\x19\x02\x05\x16\x49\x54\ \x6c\x53\x64\x80\x9c\x9f\xae\xf0\xe8\xea\x6f\x6b\x6e\x19\x1e\x27\ \x1f\x27\x30\x23\x2d\x3b\x71\x83\x94\x56\x69\x7d\x27\x35\x48\x17\ \x23\x39\x20\x36\x54\x24\x3c\x5d\x11\x1f\x3b\x15\x24\x3c\x19\x2d\ \x48\x17\x2c\x47\x1f\x35\x4f\x1d\x34\x53\x41\x59\x79\x20\x36\x54\ \x21\x3a\x57\x3d\x58\x75\x20\x3b\x57\x4d\x66\x7f\x1a\x2d\x3f\x41\ \x51\x60\x6d\x79\x84\x7f\x88\x92\x7c\x86\x8e\x7f\x90\x9f\x6a\x82\ \x93\x3f\x55\x62\x3a\x4d\x5a\x39\x4c\x5b\x37\x49\x57\x36\x49\x55\ \x35\x49\x53\x36\x4a\x53\x35\x4a\x52\x33\x48\x50\x33\x48\x50\x34\ \x47\x51\x34\x46\x51\x32\x44\x4e\x32\x44\x4e\x30\x41\x4c\x00\x00\ \x00\x44\x81\xc3\x49\x86\xc7\x3c\x7a\xb9\x45\x7c\xb7\x36\x64\x97\ \x2c\x55\x81\x2f\x53\x7f\x22\x44\x72\x14\x34\x62\x1e\x35\x5b\x07\ \x11\x28\x00\x00\x0a\x03\x03\x08\x05\x05\x0b\x04\x04\x0c\x07\x06\ \x0f\x07\x06\x10\x09\x07\x12\x06\x08\x10\x08\x0a\x11\x09\x0a\x14\ \x0a\x0a\x17\x0b\x0c\x17\x0a\x0c\x17\x09\x0b\x15\x09\x0b\x16\x07\ \x0c\x16\x09\x0e\x17\x0a\x0f\x18\x0a\x0d\x18\x0a\x0c\x17\x0b\x0c\ \x17\x0d\x0e\x1a\x0b\x0c\x18\x0e\x10\x1b\x0d\x10\x1b\x0e\x10\x1b\ \x0f\x11\x1b\x0f\x11\x1b\x0f\x12\x1b\x13\x15\x1e\x12\x15\x1e\x12\ \x15\x1d\x11\x14\x1b\x12\x15\x1c\x16\x1a\x21\x16\x1d\x20\x13\x1b\ \x1d\x13\x1a\x1d\x15\x1b\x1e\x1c\x21\x23\x1b\x20\x21\x21\x27\x26\ \x27\x2c\x2b\x27\x2b\x2c\x2a\x2f\x30\x29\x2e\x2f\x2a\x2f\x2f\x2e\ \x33\x34\x2e\x33\x35\x28\x2f\x32\x2b\x30\x33\x21\x26\x29\x1e\x23\ \x24\x19\x1d\x20\x07\x08\x0d\x01\x01\x07\x02\x03\x0c\x09\x0b\x16\ \x08\x0e\x1a\x0a\x12\x1f\x08\x10\x1d\x09\x12\x1f\x0a\x14\x21\x0b\ \x15\x24\x07\x11\x22\x09\x12\x22\x0e\x16\x26\x0c\x16\x24\x07\x14\ \x22\x0a\x14\x25\x10\x1a\x2b\x0a\x14\x26\x0d\x18\x2a\x13\x20\x2f\ \x0e\x1a\x2b\x0b\x17\x2b\x13\x20\x35\x15\x23\x35\x11\x1f\x31\x16\ \x24\x36\x12\x21\x34\x14\x23\x37\x18\x26\x3a\x23\x31\x44\x22\x30\ \x43\x25\x33\x45\x23\x31\x43\x30\x3c\x4d\x35\x43\x53\x2a\x3b\x47\ \x32\x42\x50\x3b\x49\x58\x39\x47\x53\x30\x3c\x4b\x1a\x23\x34\x14\ \x1d\x2b\x0e\x17\x23\x08\x11\x1c\x0a\x12\x1f\x06\x0c\x1a\x07\x0c\ \x1b\x07\x08\x19\x07\x07\x16\x00\x03\x14\x47\x53\x6b\x56\x66\x82\ \x9d\x9f\xaf\xef\xe5\xe8\x76\x71\x77\x39\x41\x4c\x21\x2b\x35\x1d\ \x28\x37\x67\x79\x8d\x2b\x3f\x54\x50\x5c\x6f\x19\x24\x37\x2e\x43\ \x5d\x26\x3a\x5a\x1a\x26\x40\x16\x26\x3d\x1f\x32\x4c\x11\x24\x3d\ \x16\x2a\x45\x21\x37\x53\x21\x38\x56\x17\x30\x48\x1e\x38\x51\x1f\ \x3a\x52\x1f\x39\x4f\x20\x36\x4b\x22\x34\x46\x3f\x4f\x5e\x64\x71\ \x7c\x74\x7d\x87\x7e\x87\x90\x7a\x8b\x98\x71\x89\x99\x4d\x60\x6e\ \x30\x42\x4e\x34\x45\x52\x32\x43\x50\x33\x45\x4f\x33\x46\x4e\x33\ \x46\x4d\x30\x43\x4b\x30\x43\x4a\x30\x43\x4a\x2f\x41\x49\x2e\x3f\ \x49\x2f\x40\x48\x2e\x3e\x47\x2c\x3d\x46\x00\x00\x00\x42\x82\xc3\ \x47\x88\xc9\x3e\x7d\xbd\x45\x7f\xbb\x3a\x67\x9d\x2d\x52\x7d\x2e\ \x51\x7d\x2a\x4b\x79\x18\x38\x67\x19\x32\x59\x0a\x14\x2a\x00\x00\ \x0b\x03\x02\x0a\x05\x04\x0d\x04\x03\x0d\x06\x05\x0f\x08\x06\x11\ \x09\x07\x13\x09\x08\x12\x08\x08\x12\x07\x08\x13\x08\x08\x14\x09\ \x0a\x15\x08\x0a\x15\x09\x0b\x16\x0b\x0d\x17\x0b\x0c\x17\x0b\x0d\ \x18\x0d\x10\x1b\x0b\x0d\x18\x0d\x0e\x19\x0b\x0d\x18\x0c\x0e\x19\ \x0c\x0e\x18\x0b\x0d\x17\x0d\x0f\x19\x09\x0c\x18\x0e\x12\x1b\x0e\ \x14\x1b\x0d\x12\x1a\x10\x15\x1e\x11\x17\x1e\x10\x15\x1c\x11\x14\ \x1c\x14\x17\x1f\x18\x1c\x23\x18\x1e\x22\x19\x1e\x21\x18\x1c\x20\ \x1e\x21\x25\x1e\x21\x25\x19\x1c\x1f\x22\x26\x27\x21\x25\x27\x29\ \x2c\x30\x26\x29\x2d\x2b\x2f\x31\x28\x2d\x2c\x30\x35\x35\x31\x35\ \x37\x2b\x30\x33\x24\x2a\x2a\x1c\x22\x21\x1d\x21\x22\x18\x1c\x1d\ \x06\x09\x0c\x01\x01\x07\x05\x04\x0e\x08\x0a\x15\x09\x0d\x19\x07\ \x0e\x1b\x06\x0e\x1b\x08\x11\x1e\x0a\x13\x20\x0c\x15\x23\x0a\x13\ \x21\x0a\x14\x22\x0d\x18\x27\x0c\x17\x26\x0c\x17\x25\x07\x11\x21\ \x08\x13\x25\x09\x15\x28\x11\x1e\x30\x0c\x19\x2c\x11\x1c\x2f\x0f\ \x1b\x2d\x0f\x1d\x2e\x12\x20\x32\x0f\x1d\x2f\x1a\x28\x3a\x13\x21\ \x33\x17\x25\x38\x19\x27\x39\x1f\x2e\x40\x21\x32\x44\x27\x37\x47\ \x29\x38\x48\x32\x3f\x4f\x2c\x38\x47\x2d\x3a\x48\x2e\x3b\x4b\x3e\ \x4a\x5b\x36\x43\x52\x30\x3b\x49\x1a\x25\x32\x19\x21\x30\x0c\x15\ \x22\x0a\x12\x1f\x09\x11\x1e\x08\x0e\x1c\x0a\x0d\x1b\x08\x0a\x16\ \x0a\x08\x16\x04\x05\x17\x48\x55\x6c\x59\x68\x84\x9b\x9f\xab\xf2\ \xe6\xe6\x75\x70\x76\x2a\x32\x40\x29\x32\x42\x39\x47\x59\x68\x79\ \x8d\x52\x62\x78\x2c\x3a\x4d\x1a\x28\x3b\x1b\x29\x3e\x18\x25\x3c\ \x18\x24\x3c\x14\x21\x34\x1b\x29\x3f\x18\x27\x3e\x13\x24\x3c\x15\ \x26\x3f\x0f\x21\x39\x17\x2b\x44\x17\x2e\x49\x28\x3f\x52\x25\x37\ \x48\x27\x37\x4d\x26\x39\x4c\x40\x54\x61\x6e\x7d\x8a\x71\x7d\x85\ \x7a\x87\x8c\x81\x91\x9e\x67\x7e\x8f\x57\x6c\x77\x31\x45\x4c\x34\ \x46\x51\x31\x42\x4e\x32\x44\x4d\x32\x43\x4c\x32\x43\x4c\x30\x41\ \x4b\x30\x41\x49\x31\x41\x48\x32\x43\x49\x2f\x3f\x45\x31\x3f\x49\ \x2f\x3e\x48\x2e\x3e\x48\x00\x00\x00\x47\x86\xc8\x4e\x8c\xcd\x41\ \x7e\xc0\x47\x83\xc1\x3d\x6b\xa4\x33\x5b\x87\x30\x53\x7e\x23\x43\ \x70\x1a\x38\x66\x1c\x33\x5a\x06\x0f\x22\x00\x01\x08\x04\x03\x0b\ \x04\x03\x0c\x05\x04\x0d\x07\x06\x0f\x07\x05\x10\x07\x05\x11\x08\ \x07\x12\x08\x09\x13\x0a\x0a\x16\x09\x0a\x15\x0a\x0c\x17\x0c\x0e\ \x19\x0a\x0d\x17\x09\x0e\x17\x0a\x0d\x17\x0b\x0d\x18\x08\x0c\x17\ \x0a\x0d\x18\x0c\x0e\x19\x0b\x0c\x17\x0b\x0d\x17\x0b\x0d\x17\x0c\ \x0e\x18\x0d\x0f\x19\x0b\x10\x19\x0c\x12\x1a\x0c\x12\x19\x0d\x13\ \x1a\x10\x15\x1d\x13\x1a\x20\x12\x16\x1e\x14\x17\x1f\x14\x17\x1f\ \x13\x16\x1d\x1a\x1c\x22\x1b\x1e\x22\x1a\x1d\x21\x1a\x1e\x22\x18\ \x1b\x1f\x20\x23\x26\x21\x25\x26\x25\x29\x2a\x26\x29\x2d\x2b\x2f\ \x32\x2d\x31\x32\x2c\x31\x30\x2a\x2f\x2f\x31\x35\x37\x2e\x33\x35\ \x28\x2d\x2d\x21\x27\x25\x22\x26\x25\x1c\x20\x21\x05\x07\x0b\x01\ \x02\x07\x04\x04\x0e\x08\x0a\x15\x09\x0d\x17\x07\x0f\x19\x09\x13\ \x1d\x08\x12\x1c\x0a\x14\x1e\x09\x12\x20\x09\x13\x21\x09\x14\x22\ \x09\x14\x24\x0a\x15\x25\x0a\x15\x25\x12\x1e\x31\x0c\x17\x2c\x13\ \x1e\x32\x11\x1f\x32\x0d\x1b\x2e\x10\x1c\x2f\x10\x1c\x2e\x09\x18\ \x28\x12\x21\x32\x10\x1e\x31\x17\x25\x38\x19\x27\x3b\x1a\x29\x3d\ \x1a\x29\x39\x24\x34\x45\x20\x31\x42\x26\x36\x48\x24\x34\x46\x35\ \x41\x54\x2d\x3b\x4b\x38\x46\x56\x37\x44\x56\x34\x42\x53\x33\x40\ \x4f\x2b\x37\x45\x19\x23\x32\x19\x22\x30\x0f\x17\x24\x0a\x12\x1f\ \x08\x10\x1d\x08\x0f\x1c\x0a\x0e\x1c\x07\x0a\x16\x09\x07\x16\x01\ \x04\x16\x49\x55\x6d\x57\x66\x82\x9c\x9e\xab\xf4\xe6\xe7\x77\x73\ \x78\x2c\x35\x42\x2f\x37\x46\x3a\x43\x55\x3a\x46\x58\x32\x3e\x51\ \x27\x2f\x41\x25\x2e\x40\x21\x2d\x41\x17\x24\x3d\x18\x27\x40\x14\ \x26\x3c\x10\x1f\x36\x14\x23\x3a\x13\x22\x39\x16\x24\x3a\x10\x1f\ \x33\x16\x2b\x45\x1f\x34\x4f\x22\x3a\x50\x20\x36\x4b\x39\x4d\x64\ \x22\x39\x4d\x38\x4f\x5e\x60\x73\x82\x6c\x7b\x85\x78\x85\x8b\x85\ \x96\xa2\x61\x77\x88\x56\x68\x73\x33\x44\x4b\x35\x45\x50\x35\x45\ \x4e\x34\x44\x4c\x35\x44\x4c\x35\x43\x4c\x32\x44\x4a\x32\x43\x49\ \x33\x43\x49\x31\x41\x47\x32\x42\x48\x33\x42\x49\x30\x41\x47\x31\ \x41\x48\x00\x00\x00\x41\x7e\xc1\x46\x83\xc5\x46\x84\xc6\x44\x7e\ \xc0\x39\x6a\xa4\x33\x5a\x8a\x2f\x54\x7e\x27\x48\x74\x1b\x39\x68\ \x1a\x2f\x56\x03\x0b\x20\x00\x02\x09\x03\x03\x09\x05\x04\x0d\x04\ \x03\x0c\x05\x07\x0f\x05\x07\x10\x06\x07\x11\x09\x09\x15\x0a\x0a\ \x16\x06\x06\x12\x0a\x0b\x16\x09\x0b\x16\x09\x0c\x15\x07\x0b\x14\ \x08\x0d\x16\x0a\x0e\x18\x09\x0b\x17\x0a\x0e\x19\x08\x0c\x17\x09\ \x0b\x16\x0d\x0f\x19\x0c\x0e\x18\x0d\x0f\x19\x0e\x11\x19\x0f\x12\ \x1a\x0e\x13\x1c\x0c\x11\x1a\x0f\x14\x1c\x14\x1a\x21\x12\x18\x1f\ \x17\x1d\x25\x13\x19\x20\x15\x18\x20\x13\x16\x1e\x12\x15\x1c\x16\ \x16\x1b\x17\x18\x1e\x17\x1c\x20\x19\x1e\x21\x18\x1b\x1f\x18\x1d\ \x1e\x23\x27\x28\x28\x2c\x2e\x27\x2b\x2e\x25\x2a\x2b\x25\x2b\x2a\ \x2f\x35\x35\x2c\x32\x32\x2d\x32\x35\x2a\x2f\x30\x27\x2d\x2c\x24\ \x2a\x28\x1f\x24\x23\x1a\x1e\x1e\x05\x07\x0b\x02\x01\x07\x03\x03\ \x0c\x0a\x0c\x17\x09\x0c\x17\x05\x0d\x17\x07\x10\x1a\x05\x0f\x19\ \x0c\x15\x1f\x09\x12\x20\x0c\x16\x24\x0a\x15\x24\x07\x14\x25\x08\ \x14\x26\x0a\x16\x27\x0f\x1a\x2e\x0f\x1b\x31\x0d\x1b\x2f\x13\x21\ \x34\x0c\x1a\x2d\x0d\x1c\x2e\x0d\x1b\x2d\x11\x20\x30\x11\x1f\x30\ \x14\x22\x34\x15\x24\x37\x17\x26\x3b\x19\x27\x3d\x1a\x28\x3b\x21\ \x30\x42\x1f\x30\x41\x28\x38\x4b\x28\x37\x4a\x2f\x3d\x50\x2b\x3a\ \x4b\x38\x47\x56\x32\x41\x52\x2f\x3d\x4e\x35\x42\x52\x2e\x3b\x4b\ \x21\x2c\x3b\x18\x22\x2f\x0f\x18\x25\x0a\x12\x1f\x0a\x12\x1f\x09\ \x0f\x1c\x09\x0c\x1a\x0a\x0c\x1a\x0a\x09\x18\x02\x06\x18\x46\x54\ \x6d\x58\x67\x85\xa2\xa4\xb0\xf6\xe8\xea\x7a\x76\x7a\x2d\x35\x42\ \x25\x2d\x3b\x2e\x35\x46\x2e\x35\x47\x30\x37\x4a\x24\x2f\x41\x1f\ \x2b\x3d\x1c\x2b\x40\x14\x26\x41\x1b\x2f\x4a\x23\x37\x51\x11\x25\ \x41\x12\x26\x43\x1b\x2f\x4c\x11\x24\x3f\x16\x2c\x45\x16\x2a\x45\ \x16\x27\x41\x44\x5c\x76\x0e\x28\x42\x56\x6d\x86\x1d\x36\x4e\x3f\ \x58\x6b\x8d\xa6\xb9\x86\x9a\xa6\x7c\x89\x90\x79\x8a\x95\x61\x77\ \x87\x59\x6a\x75\x34\x43\x4a\x34\x43\x4b\x36\x45\x4b\x38\x46\x4b\ \x36\x44\x4a\x35\x43\x4a\x36\x46\x4b\x34\x44\x4a\x33\x43\x49\x32\ \x42\x48\x32\x42\x48\x34\x41\x49\x34\x41\x49\x31\x41\x48\x00\x00\ \x00\x40\x7e\xc2\x32\x6e\xb0\x43\x80\xc0\x44\x7f\xc0\x41\x72\xaf\ \x32\x5c\x8d\x37\x5e\x89\x25\x48\x76\x1f\x40\x70\x1a\x31\x58\x01\ \x08\x1d\x00\x00\x09\x05\x04\x0a\x04\x05\x0b\x05\x04\x0d\x04\x06\ \x0e\x05\x08\x10\x07\x08\x12\x08\x08\x13\x07\x07\x13\x06\x08\x12\ \x09\x0b\x15\x08\x0b\x15\x09\x0e\x17\x07\x0c\x15\x09\x0e\x16\x0e\ \x12\x1c\x0b\x0e\x19\x0b\x0f\x1a\x0f\x12\x1d\x0d\x10\x1b\x0c\x0d\ \x17\x0a\x0c\x16\x0b\x0e\x17\x0b\x0e\x16\x0c\x0f\x17\x0a\x10\x17\ \x0d\x12\x1a\x0b\x10\x19\x0d\x13\x19\x11\x17\x1c\x0e\x14\x1b\x14\ \x19\x20\x14\x17\x1f\x16\x19\x21\x17\x1a\x22\x1d\x20\x27\x20\x24\ \x28\x1c\x20\x25\x1c\x20\x25\x22\x27\x2a\x1f\x24\x26\x23\x28\x29\ \x21\x26\x27\x1a\x1f\x22\x2a\x2f\x30\x28\x2e\x2d\x36\x3c\x3b\x36\ \x3b\x3d\x2c\x31\x34\x2c\x31\x34\x27\x2c\x2c\x24\x29\x28\x1e\x23\ \x23\x17\x1b\x1c\x06\x08\x0c\x02\x01\x07\x03\x03\x0d\x08\x0a\x15\ \x08\x0c\x18\x0a\x11\x1d\x0b\x14\x21\x07\x10\x1d\x0a\x12\x1f\x0b\ \x14\x21\x0a\x14\x22\x09\x15\x25\x0c\x19\x2b\x0b\x19\x2b\x05\x14\ \x25\x0a\x18\x2b\x0b\x19\x2c\x0d\x1c\x2e\x0f\x1c\x2f\x0c\x1a\x2d\ \x0c\x1c\x2e\x0f\x1e\x30\x10\x1e\x2e\x10\x1f\x2f\x13\x23\x33\x11\ \x20\x32\x14\x22\x36\x1c\x29\x40\x19\x27\x3b\x23\x31\x43\x1e\x2f\ \x40\x29\x3a\x4c\x29\x38\x4b\x2d\x3b\x4e\x2b\x3a\x4a\x37\x47\x55\ \x2f\x3f\x4c\x3a\x49\x59\x33\x41\x52\x24\x30\x41\x1f\x2a\x39\x12\ \x1e\x2a\x10\x18\x25\x0d\x14\x23\x09\x10\x1f\x0a\x0f\x1e\x09\x0c\ \x1b\x09\x0b\x19\x07\x07\x15\x06\x09\x1d\x45\x53\x6c\x55\x66\x83\ \xa2\xa7\xb5\xf7\xeb\xed\x7a\x76\x7a\x1f\x26\x32\x23\x2b\x38\x2c\ \x35\x43\x27\x30\x3f\x2b\x38\x4a\x45\x57\x6c\x12\x28\x40\x1e\x34\ \x50\x1a\x32\x51\x1b\x32\x50\x29\x3f\x5a\x14\x2a\x46\x15\x2a\x48\ \x14\x2a\x4a\x0e\x23\x41\x3c\x56\x73\x06\x1c\x36\x19\x29\x3f\x32\ \x4b\x66\x21\x3f\x5a\x4a\x65\x7d\x16\x30\x49\x64\x7d\x95\x6e\x8c\ \xa2\x84\x9b\xa9\x75\x7f\x86\x7e\x8d\x98\x6a\x7e\x8e\xab\xbd\xc8\ \x34\x44\x4a\x35\x45\x4a\x36\x46\x4a\x37\x46\x48\x38\x47\x4a\x38\ \x47\x4b\x38\x47\x4a\x38\x47\x4a\x35\x45\x49\x32\x42\x48\x35\x44\ \x4a\x35\x41\x47\x34\x41\x47\x31\x3f\x45\x00\x00\x00\x4a\x8c\xd0\ \x40\x7c\xbf\x40\x7b\xbb\x43\x7e\xbe\x3f\x73\xae\x30\x5b\x8c\x34\ \x59\x86\x22\x48\x76\x23\x46\x77\x1c\x33\x5d\x01\x09\x1f\x00\x00\ \x09\x04\x04\x09\x04\x04\x0b\x04\x04\x0d\x04\x06\x0f\x05\x06\x10\ \x07\x07\x12\x08\x08\x14\x09\x09\x16\x09\x0b\x16\x0a\x0c\x17\x0b\ \x0e\x18\x09\x0e\x18\x0b\x10\x19\x09\x0d\x16\x0b\x0f\x19\x07\x0c\ \x16\x09\x0e\x19\x06\x0a\x15\x08\x0b\x17\x0a\x0c\x17\x0b\x0d\x17\ \x0a\x0d\x16\x0a\x0c\x16\x0a\x0d\x16\x0a\x0f\x16\x0b\x10\x18\x0b\ \x11\x19\x0c\x12\x19\x0d\x13\x19\x11\x15\x1d\x0e\x12\x1a\x12\x15\ \x1d\x13\x17\x1e\x12\x17\x1d\x15\x1a\x1f\x19\x1e\x23\x15\x1a\x1e\ \x17\x1c\x20\x21\x25\x29\x1d\x22\x25\x22\x27\x29\x27\x2c\x2f\x2a\ \x2e\x32\x2c\x31\x33\x2b\x30\x31\x28\x2e\x2f\x2a\x30\x31\x2b\x30\ \x32\x28\x2d\x30\x27\x2d\x2d\x23\x28\x28\x1f\x23\x23\x19\x1e\x1f\ \x04\x07\x0b\x00\x02\x07\x03\x04\x0d\x08\x0a\x15\x09\x0d\x1b\x0a\ \x11\x1f\x08\x10\x1e\x09\x12\x1f\x09\x12\x1f\x0f\x18\x27\x0b\x14\ \x23\x08\x12\x22\x0c\x19\x2a\x0b\x17\x2a\x0b\x18\x29\x0c\x19\x2c\ \x0e\x1c\x2e\x0e\x1e\x30\x0f\x1d\x30\x12\x1f\x32\x0b\x1b\x2d\x10\ \x1d\x33\x0d\x1b\x2d\x0f\x1d\x2f\x14\x23\x33\x15\x25\x34\x13\x22\ \x35\x17\x28\x3e\x1d\x2b\x43\x19\x29\x3d\x23\x34\x45\x29\x3a\x4b\ \x29\x38\x4c\x29\x37\x49\x32\x41\x50\x30\x3f\x4c\x36\x44\x52\x35\ \x43\x51\x34\x42\x52\x28\x34\x46\x1d\x29\x38\x13\x1d\x29\x0f\x19\ \x24\x0f\x16\x25\x0a\x11\x20\x09\x0e\x1d\x0b\x0e\x1c\x09\x0d\x1a\ \x08\x0a\x17\x06\x0b\x1d\x45\x51\x6a\x57\x66\x84\x95\x99\xa8\xf4\ \xe8\xeb\x7c\x77\x7a\x1d\x22\x2d\x2e\x37\x44\x38\x46\x53\x43\x51\ \x62\x2d\x3e\x51\x26\x3a\x52\x24\x3c\x57\x2f\x4a\x69\x20\x3c\x5d\ \x10\x2c\x4a\x21\x38\x55\x1a\x30\x4c\x09\x1e\x39\x1c\x32\x4f\x09\ \x1f\x3c\x34\x4a\x65\x10\x26\x40\x10\x23\x3b\x31\x4a\x65\x14\x30\ \x4c\x37\x51\x6b\x2d\x4a\x63\x3d\x53\x69\x4a\x67\x7c\x82\x99\xa8\ \x78\x83\x8b\x8d\x99\xa5\x75\x88\x98\x48\x5b\x67\x38\x48\x4f\x38\ \x4a\x4d\x37\x4a\x4d\x37\x49\x4d\x39\x4a\x4e\x38\x48\x4c\x3a\x4a\ \x4c\x39\x48\x4c\x37\x46\x4b\x37\x45\x4c\x36\x44\x4b\x36\x43\x49\ \x34\x3f\x45\x31\x3d\x43\x00\x00\x00\x48\x8c\xd2\x43\x84\xc6\x39\ \x76\xb7\x44\x7e\xbd\x41\x79\xb0\x3e\x6a\x9b\x33\x57\x85\x2a\x4e\ \x7a\x21\x43\x73\x1a\x32\x5b\x06\x0e\x24\x01\x01\x09\x04\x04\x09\ \x04\x04\x0b\x05\x04\x0d\x04\x06\x10\x06\x06\x12\x05\x05\x11\x0a\ \x0a\x16\x09\x09\x15\x09\x0b\x16\x07\x09\x14\x08\x0d\x18\x09\x0d\ \x18\x07\x0b\x16\x09\x0d\x18\x09\x0e\x17\x0a\x0f\x18\x0a\x0f\x18\ \x0d\x11\x1c\x0d\x10\x1e\x0b\x0e\x19\x0c\x0e\x19\x10\x12\x1d\x0f\ \x11\x1c\x0d\x0f\x1a\x0f\x11\x19\x0c\x12\x19\x0c\x13\x1a\x0e\x14\ \x1b\x11\x16\x1e\x13\x16\x1e\x17\x1a\x22\x16\x1a\x21\x17\x1d\x22\ \x17\x1e\x22\x15\x1c\x1f\x15\x1c\x1f\x1a\x21\x24\x1a\x21\x24\x1e\ \x24\x28\x20\x25\x28\x26\x2b\x2d\x22\x27\x2a\x26\x2a\x2e\x27\x2b\ \x2f\x31\x37\x39\x2c\x33\x33\x32\x37\x38\x33\x37\x38\x28\x2e\x2f\ \x23\x29\x29\x1f\x25\x24\x22\x27\x25\x1c\x20\x20\x07\x0a\x0e\x00\ \x01\x08\x02\x03\x0e\x08\x09\x15\x08\x0e\x1d\x0b\x12\x20\x07\x0e\ \x1d\x0b\x14\x21\x0c\x15\x22\x0c\x16\x27\x08\x11\x20\x09\x12\x1f\ \x0a\x16\x25\x0f\x1b\x2e\x09\x17\x29\x12\x20\x32\x10\x1e\x30\x0f\ \x1d\x2f\x10\x1c\x2f\x0c\x1a\x2c\x0c\x1c\x2c\x10\x1a\x31\x12\x20\ \x32\x0e\x1d\x30\x10\x20\x2e\x10\x1f\x2e\x16\x25\x39\x19\x2b\x40\ \x1a\x2a\x41\x1a\x2b\x3e\x2b\x3b\x4b\x24\x34\x44\x21\x31\x43\x2e\ \x3c\x4e\x34\x44\x52\x33\x41\x4f\x35\x41\x4f\x3b\x47\x55\x3c\x48\ \x58\x27\x32\x44\x1c\x26\x38\x15\x1e\x2b\x11\x1a\x27\x0b\x12\x20\ \x0b\x12\x21\x07\x0c\x1b\x09\x0c\x1a\x07\x0b\x17\x08\x0c\x17\x00\ \x06\x15\x47\x52\x6b\x5b\x68\x87\x75\x78\x87\xfa\xed\xf0\x7e\x7b\ \x7c\x18\x21\x2b\x3e\x48\x58\x20\x2a\x3b\x2c\x3c\x4d\x41\x58\x6d\ \x2c\x44\x5e\x35\x4c\x67\x10\x24\x44\x31\x48\x6c\x0c\x24\x45\x27\ \x3c\x5e\x1e\x33\x4f\x05\x18\x2e\x2f\x43\x5b\x18\x2d\x47\x0f\x20\ \x37\x21\x36\x4f\x36\x4b\x66\x25\x3b\x56\x1c\x31\x4b\x39\x52\x6d\ \x29\x42\x59\x3a\x4c\x5d\x6d\x80\x95\x7e\x91\xa0\x6d\x7a\x81\x84\ \x92\x9d\x68\x78\x89\x41\x53\x62\x3e\x4f\x56\x3b\x4e\x52\x39\x4c\ \x52\x38\x4a\x51\x3b\x4d\x54\x39\x4c\x50\x3a\x4b\x51\x3b\x4b\x52\ \x39\x49\x50\x39\x46\x4d\x38\x46\x4d\x35\x43\x4a\x33\x40\x46\x31\ \x3d\x43\x00\x00\x00\x45\x87\xcf\x3d\x7c\xc0\x35\x70\xb3\x44\x7f\ \xbd\x42\x7c\xb4\x3c\x69\x9a\x31\x56\x83\x2e\x51\x7d\x22\x46\x73\ \x1a\x33\x59\x06\x0e\x22\x02\x01\x07\x04\x04\x09\x04\x03\x0b\x04\ \x03\x0d\x04\x05\x10\x05\x05\x11\x06\x06\x12\x07\x07\x13\x06\x06\ \x12\x08\x0a\x15\x0a\x0d\x18\x07\x0c\x17\x0b\x0f\x1a\x0c\x10\x1b\ \x08\x0c\x17\x09\x0e\x18\x06\x0b\x14\x08\x0d\x17\x0a\x0e\x19\x0a\ \x0d\x19\x08\x0d\x17\x09\x0e\x17\x0a\x0f\x18\x0a\x0f\x18\x0e\x13\ \x1c\x0e\x10\x19\x0d\x12\x1a\x0e\x14\x1b\x10\x16\x1d\x0e\x12\x1a\ \x11\x14\x1c\x12\x15\x1d\x12\x16\x1e\x10\x16\x1d\x20\x26\x2b\x14\ \x1a\x1f\x17\x1d\x22\x1e\x24\x29\x1b\x21\x26\x1d\x22\x25\x22\x27\ \x28\x25\x2b\x2a\x25\x29\x2a\x25\x2a\x2d\x29\x2d\x2e\x2a\x2e\x2f\ \x2c\x31\x31\x2c\x31\x30\x2d\x32\x31\x3c\x41\x42\x2e\x34\x34\x27\ \x2d\x2c\x22\x27\x25\x1a\x1f\x1e\x05\x08\x0b\x01\x02\x08\x03\x03\ \x0c\x07\x08\x13\x07\x0c\x18\x05\x0d\x1a\x05\x0e\x1b\x09\x12\x20\ \x0d\x16\x24\x0b\x16\x25\x09\x13\x20\x09\x12\x20\x0a\x16\x24\x0c\ \x18\x2a\x0a\x19\x2b\x08\x16\x28\x0d\x19\x2b\x09\x15\x26\x0b\x18\ \x2a\x09\x18\x2a\x09\x19\x28\x12\x1c\x2f\x13\x22\x37\x11\x1e\x30\ \x0f\x1c\x2c\x10\x21\x33\x10\x20\x35\x10\x20\x30\x19\x27\x3a\x1e\ \x2e\x3f\x23\x34\x45\x24\x34\x45\x27\x37\x48\x24\x33\x44\x2c\x3d\ \x4b\x2f\x3d\x4a\x3a\x47\x56\x35\x42\x51\x3b\x48\x56\x26\x31\x42\ \x20\x2a\x3c\x12\x1c\x2b\x10\x18\x26\x0b\x12\x20\x0b\x12\x21\x0a\ \x0f\x1f\x0a\x0d\x1b\x0b\x0c\x1a\x08\x0b\x19\x03\x09\x18\x46\x50\ \x6a\x5c\x69\x87\x8c\x8e\x9d\xf8\xec\xef\x7e\x7d\x80\x20\x2c\x3b\ \x2b\x36\x4a\x28\x2f\x43\x2b\x39\x4c\x36\x4b\x62\x3b\x56\x71\x31\ \x45\x5d\x10\x1f\x39\x14\x25\x42\x19\x2a\x47\x17\x26\x45\x16\x25\ \x3f\x0e\x1c\x31\x11\x22\x37\x18\x2b\x42\x1c\x2c\x40\x1c\x2c\x42\ \x1d\x30\x47\x27\x39\x53\x1e\x30\x47\x1a\x2d\x42\x27\x3a\x4c\x41\ \x52\x63\x59\x69\x7a\x7a\x89\x97\x70\x7b\x84\x74\x82\x8d\x69\x7a\ \x8a\x36\x46\x54\x47\x59\x62\x41\x53\x5b\x42\x53\x5c\x42\x53\x5c\ \x42\x53\x5c\x3f\x51\x59\x3f\x52\x59\x3d\x4f\x57\x3c\x4d\x55\x3a\ \x4c\x53\x36\x49\x4f\x35\x46\x4d\x32\x40\x47\x30\x3d\x43\x00\x00\ \x00\x3c\x7b\xc5\x37\x73\xb9\x35\x6f\xb3\x3f\x79\xb8\x41\x7b\xb5\ \x39\x68\x9c\x2f\x57\x84\x3a\x5f\x8b\x27\x4b\x78\x1b\x35\x5c\x04\ \x0c\x21\x01\x00\x07\x04\x03\x09\x05\x04\x0c\x03\x03\x0d\x05\x06\ \x10\x06\x05\x12\x05\x05\x11\x08\x08\x14\x08\x09\x14\x08\x0a\x15\ \x09\x0b\x16\x07\x0b\x16\x09\x0d\x18\x09\x0d\x18\x09\x0d\x18\x0a\ \x0e\x19\x0d\x11\x1b\x0b\x0f\x1a\x0c\x10\x1b\x0c\x10\x1b\x0b\x11\ \x1a\x09\x10\x19\x0a\x10\x19\x0c\x12\x1b\x0c\x12\x1b\x0d\x11\x1b\ \x0e\x13\x1b\x0e\x14\x1b\x10\x14\x1b\x15\x18\x1e\x12\x16\x1c\x15\ \x18\x20\x17\x1b\x22\x16\x1c\x23\x1b\x21\x27\x16\x1c\x21\x16\x1c\ \x21\x1d\x23\x28\x1d\x23\x28\x1a\x1f\x22\x1f\x24\x24\x27\x2d\x2c\ \x23\x29\x29\x2b\x30\x31\x2a\x2f\x30\x2e\x32\x33\x34\x38\x39\x37\ \x3c\x3c\x2d\x33\x32\x2c\x32\x31\x2e\x34\x33\x24\x29\x28\x21\x26\ \x25\x1d\x22\x22\x09\x0b\x0d\x01\x01\x07\x03\x03\x0e\x07\x08\x14\ \x0a\x0e\x1b\x06\x0d\x1a\x07\x10\x1d\x0a\x13\x21\x08\x13\x21\x0c\ \x17\x25\x09\x13\x21\x0c\x15\x23\x0c\x18\x26\x09\x16\x26\x0f\x1b\ \x2d\x0c\x19\x2a\x0f\x1c\x2d\x12\x1f\x30\x13\x23\x36\x10\x23\x3b\ \x12\x22\x36\x17\x23\x36\x1b\x2d\x45\x06\x17\x2f\x06\x18\x2c\x1e\ \x30\x46\x1a\x2b\x43\x12\x24\x37\x19\x29\x3b\x1d\x2f\x43\x2d\x41\ \x57\x21\x35\x49\x24\x36\x49\x31\x41\x52\x2a\x3a\x4a\x31\x40\x4f\ \x35\x42\x52\x2d\x3a\x4b\x34\x41\x50\x27\x32\x42\x1d\x27\x38\x16\ \x1f\x2f\x12\x1a\x28\x0a\x12\x20\x0b\x13\x20\x09\x0f\x1c\x0a\x0d\ \x1c\x0b\x0b\x1b\x0a\x0b\x19\x04\x08\x19\x45\x4e\x68\x5d\x69\x88\ \x88\x8b\x9b\xf7\xec\xf0\x7c\x7a\x7c\x1b\x26\x33\x39\x48\x5b\x27\ \x34\x46\x44\x52\x65\x35\x42\x58\x33\x40\x5a\x1c\x29\x3f\x27\x33\ \x48\x1e\x2c\x44\x21\x31\x46\x1a\x29\x41\x18\x28\x40\x12\x1f\x34\ \x12\x21\x36\x14\x25\x3b\x1a\x28\x3c\x14\x25\x3d\x1d\x2f\x47\x20\ \x33\x4c\x1e\x31\x49\x22\x35\x49\x26\x39\x4b\x33\x48\x5b\x49\x5a\ \x69\x6b\x77\x84\x71\x7c\x86\x77\x84\x8e\x81\x91\xa1\x1d\x2f\x3f\ \x51\x64\x70\x4b\x5d\x68\x48\x5b\x64\x49\x5b\x65\x49\x5c\x65\x46\ \x59\x63\x45\x59\x62\x45\x58\x63\x41\x54\x5e\x3f\x51\x5a\x3b\x4e\ \x54\x37\x49\x50\x34\x45\x4c\x31\x3f\x47\x00\x00\x00\x30\x6b\xb7\ \x24\x5a\xa3\x35\x6b\xb1\x38\x72\xb4\x41\x7c\xb8\x3e\x6e\xa4\x32\ \x59\x89\x3e\x65\x91\x2b\x50\x7f\x1d\x37\x60\x00\x0a\x1f\x00\x01\ \x09\x03\x03\x08\x05\x04\x0c\x05\x04\x0d\x04\x05\x0f\x07\x07\x13\ \x08\x08\x14\x07\x07\x13\x08\x08\x14\x07\x08\x14\x08\x0b\x16\x09\ \x0e\x19\x0a\x0e\x19\x08\x0c\x17\x09\x0d\x18\x07\x0b\x16\x09\x0d\ \x18\x0a\x0e\x19\x0a\x0e\x19\x07\x0b\x16\x0d\x11\x1b\x0a\x0f\x18\ \x0c\x11\x1a\x0b\x10\x19\x0b\x10\x19\x08\x0d\x16\x0b\x12\x1a\x0b\ \x12\x19\x08\x0d\x13\x0e\x11\x16\x13\x18\x1c\x10\x14\x1a\x13\x16\ \x1e\x18\x1e\x25\x13\x19\x1f\x13\x19\x1e\x15\x1c\x21\x18\x1e\x23\ \x1e\x24\x29\x21\x26\x29\x23\x28\x2a\x27\x2c\x2d\x21\x26\x28\x29\ \x2e\x32\x27\x2d\x31\x2f\x33\x36\x2d\x31\x32\x3c\x41\x42\x36\x3d\ \x3d\x35\x3b\x3a\x2b\x31\x30\x26\x2b\x2a\x1e\x23\x22\x1c\x20\x20\ \x0a\x0c\x0e\x01\x02\x08\x05\x04\x0d\x06\x06\x11\x07\x0c\x17\x08\ \x0d\x1a\x09\x10\x1e\x0b\x15\x23\x07\x11\x22\x0a\x16\x22\x0b\x14\ \x22\x0c\x15\x23\x0d\x19\x27\x0a\x16\x24\x0b\x16\x24\x0d\x19\x28\ \x0f\x1c\x2d\x07\x15\x27\x13\x26\x3f\x34\x4c\x6c\x0f\x21\x3c\x08\ \x18\x2b\x15\x2c\x48\x2c\x45\x65\x03\x18\x31\x2f\x41\x58\x06\x19\ \x35\x3d\x55\x71\x11\x25\x39\x34\x4a\x60\x1b\x34\x4d\x60\x77\x91\ \x1a\x2f\x46\x2b\x3b\x4c\x2a\x39\x49\x32\x41\x51\x38\x46\x57\x36\ \x42\x54\x32\x3f\x4f\x33\x3f\x4f\x1e\x29\x37\x16\x20\x2e\x0f\x16\ \x25\x0b\x12\x20\x0a\x13\x1f\x08\x0f\x1c\x07\x0a\x19\x0a\x0a\x1a\ \x08\x08\x18\x04\x08\x19\x46\x4f\x69\x5e\x6a\x89\x80\x82\x97\xf4\ \xe9\xee\x7d\x7b\x7c\x26\x30\x39\x35\x40\x51\x37\x42\x54\x1e\x26\ \x38\x38\x3e\x50\x22\x2a\x3b\x1c\x26\x3c\x18\x23\x40\x1a\x27\x42\ \x11\x21\x3a\x11\x23\x3e\x13\x26\x41\x1f\x30\x46\x18\x29\x41\x15\ \x25\x3f\x17\x26\x3c\x18\x2b\x47\x20\x36\x51\x17\x2f\x49\x36\x4e\ \x66\x1f\x35\x4b\x38\x50\x67\x47\x62\x7d\x3f\x51\x64\x6b\x78\x85\ \x78\x83\x8e\x7b\x87\x92\x77\x88\x97\x1c\x2c\x3b\x52\x67\x75\x4f\ \x63\x71\x4f\x63\x6e\x4e\x62\x6d\x4d\x61\x6c\x4c\x5f\x6d\x48\x5f\ \x67\x48\x5e\x69\x47\x5a\x67\x43\x57\x63\x3c\x51\x5b\x37\x4d\x53\ \x34\x47\x4e\x33\x43\x4a\x00\x00\x00\x27\x5f\xb8\x27\x62\xb3\x2f\ \x67\xb1\x3d\x79\xbd\x3d\x7c\xbb\x41\x77\xb2\x2f\x58\x88\x42\x64\ \x91\x2e\x51\x7f\x1c\x37\x5f\x01\x0b\x21\x01\x01\x0a\x06\x03\x0c\ \x07\x04\x0d\x04\x03\x0d\x07\x06\x0f\x06\x05\x0f\x06\x07\x12\x08\ \x09\x13\x07\x08\x14\x07\x09\x14\x07\x0a\x15\x06\x0b\x16\x08\x0c\ \x17\x06\x0b\x15\x0a\x10\x19\x07\x0d\x16\x0a\x0f\x19\x0a\x0e\x19\ \x0b\x0f\x1a\x09\x0e\x18\x0b\x0f\x19\x0c\x11\x1a\x10\x16\x1d\x0b\ \x12\x19\x0c\x14\x18\x0c\x12\x18\x0f\x15\x1a\x10\x16\x1b\x10\x16\ \x1b\x11\x16\x1b\x14\x17\x1e\x13\x16\x1f\x13\x15\x1f\x14\x19\x22\ \x1a\x1e\x26\x17\x1b\x21\x1a\x1e\x22\x19\x1e\x21\x1a\x1f\x21\x1e\ \x24\x23\x1f\x25\x24\x1e\x24\x24\x24\x28\x29\x2e\x33\x34\x2c\x31\ \x32\x2e\x33\x34\x30\x35\x36\x2f\x34\x35\x30\x36\x37\x35\x3b\x3a\ \x2d\x33\x32\x29\x2f\x2e\x27\x2b\x2c\x29\x2e\x2e\x07\x0b\x0c\x01\ \x01\x07\x04\x04\x0d\x07\x08\x15\x09\x0c\x17\x07\x0d\x19\x09\x11\ \x1f\x0c\x15\x23\x0c\x15\x23\x07\x12\x20\x0b\x16\x26\x0a\x15\x23\ \x0e\x19\x27\x08\x13\x21\x0f\x1a\x29\x10\x1a\x2c\x0f\x1b\x2c\x11\ \x1f\x32\x09\x1d\x34\x2a\x42\x62\x03\x15\x2d\x22\x36\x4d\x16\x32\ \x4f\x26\x42\x67\x0a\x1e\x3c\x2c\x41\x5c\x10\x2b\x4a\x2b\x40\x5e\ \x0e\x21\x38\x36\x4d\x63\x10\x2b\x42\x44\x62\x79\x2f\x4a\x60\x25\ \x37\x48\x31\x41\x52\x35\x44\x54\x3b\x47\x57\x3b\x45\x56\x36\x42\ \x54\x2e\x3a\x4b\x1c\x26\x34\x14\x1d\x28\x0e\x16\x23\x0f\x16\x25\ \x0b\x11\x1f\x08\x0e\x1b\x08\x0b\x19\x0a\x0b\x19\x0a\x0b\x18\x05\ \x07\x18\x46\x4f\x67\x5c\x68\x87\x87\x88\x9b\xf3\xe9\xec\x7f\x7b\ \x7d\x1c\x23\x2b\x1f\x28\x33\x2b\x33\x3f\x28\x2b\x38\x36\x3c\x4b\ \x1c\x27\x39\x27\x35\x4d\x21\x31\x4d\x27\x3a\x58\x0f\x22\x40\x1e\ \x32\x51\x19\x2c\x4a\x1b\x2c\x47\x10\x1e\x38\x18\x28\x3f\x14\x26\ \x3b\x3c\x56\x74\x1a\x36\x57\x0d\x21\x3e\x21\x36\x4f\x51\x6e\x89\ \x25\x3f\x5a\x59\x76\x90\x2e\x47\x5c\x5b\x6b\x7b\x76\x82\x8b\x79\ \x87\x91\x6e\x7e\x8c\x13\x1b\x28\x5f\x73\x83\x52\x69\x79\x52\x69\ \x78\x51\x68\x75\x4e\x68\x76\x4d\x66\x72\x4d\x65\x72\x4c\x63\x71\ \x48\x5f\x6d\x46\x5a\x69\x41\x53\x61\x3c\x50\x5a\x37\x49\x50\x36\ \x47\x4c\x00\x00\x00\x23\x61\xbe\x2b\x6d\xbf\x21\x59\xa4\x39\x74\ \xb8\x3f\x7d\xbd\x3e\x75\xb2\x31\x5b\x8d\x3d\x60\x8c\x24\x47\x75\ \x21\x3c\x64\x03\x0d\x20\x01\x01\x0a\x06\x03\x0c\x06\x04\x0d\x05\ \x04\x0d\x06\x05\x0e\x07\x06\x10\x07\x08\x12\x07\x08\x12\x08\x08\ \x14\x07\x09\x14\x08\x0a\x15\x08\x0c\x17\x09\x0d\x18\x0a\x0e\x18\ \x08\x0e\x17\x09\x10\x18\x0d\x12\x1b\x0b\x10\x19\x0b\x10\x1a\x0b\ \x0f\x1a\x0d\x11\x1c\x0a\x0e\x18\x0b\x11\x19\x10\x15\x1d\x0c\x14\ \x1b\x0a\x10\x17\x0d\x13\x1a\x0e\x14\x1b\x11\x17\x1e\x11\x17\x1e\ \x16\x18\x20\x13\x16\x1e\x1a\x1d\x26\x17\x18\x23\x18\x1c\x24\x1b\ \x21\x26\x1a\x1f\x24\x19\x1e\x20\x1b\x20\x21\x22\x28\x28\x28\x2d\ \x2d\x22\x27\x28\x24\x28\x29\x20\x24\x24\x29\x2e\x30\x2c\x31\x33\ \x2f\x34\x37\x2f\x34\x36\x34\x39\x3b\x32\x37\x38\x2c\x31\x31\x29\ \x2e\x2d\x26\x2b\x2a\x1c\x21\x21\x09\x0c\x0e\x01\x01\x07\x04\x04\ \x0d\x05\x06\x13\x08\x0c\x18\x08\x0d\x19\x08\x10\x1e\x0c\x15\x23\ \x0c\x14\x22\x0a\x15\x23\x0e\x19\x27\x0b\x15\x25\x0f\x18\x29\x0c\ \x16\x27\x0f\x19\x2a\x0d\x17\x29\x0f\x1b\x2d\x08\x17\x2a\x0f\x22\ \x3a\x1f\x39\x5d\x01\x14\x30\x2c\x43\x5f\x0d\x23\x45\x1e\x37\x5a\ \x05\x17\x31\x21\x36\x4e\x13\x2d\x4b\x0f\x23\x41\x1a\x2c\x47\x31\ \x44\x5f\x0c\x22\x3c\x47\x60\x7a\x2f\x47\x60\x27\x37\x47\x33\x43\ \x53\x31\x40\x50\x2f\x3e\x4c\x33\x42\x50\x3b\x48\x57\x32\x3f\x4f\ \x1f\x2b\x3b\x1a\x23\x30\x12\x19\x27\x0a\x11\x20\x0b\x11\x20\x0a\ \x0f\x1c\x09\x0c\x1a\x07\x09\x18\x09\x0b\x17\x04\x08\x16\x43\x4d\ \x64\x5c\x68\x87\x89\x89\x9b\xf7\xec\xed\x7c\x78\x7a\x1c\x20\x2a\ \x20\x28\x32\x2d\x36\x43\x37\x3f\x4d\x2c\x36\x49\x33\x42\x59\x29\ \x3a\x53\x16\x27\x42\x1b\x2f\x4e\x1d\x34\x54\x1c\x34\x55\x17\x2b\ \x4b\x11\x23\x40\x17\x26\x40\x13\x22\x3b\x16\x26\x3f\x42\x5b\x77\ \x1b\x36\x56\x0f\x23\x3f\x20\x36\x50\x3b\x58\x74\x24\x3f\x59\x48\ \x65\x7f\x4f\x69\x7e\x64\x76\x86\x79\x84\x8d\x6b\x7a\x83\x76\x86\ \x94\x1d\x23\x31\x5f\x74\x84\x56\x6f\x7f\x55\x6e\x7e\x54\x6e\x7d\ \x51\x6c\x7a\x51\x6c\x7a\x51\x69\x79\x4f\x68\x77\x4a\x62\x71\x48\ \x5d\x6c\x41\x55\x63\x3e\x50\x5d\x39\x4a\x53\x33\x45\x4d\x00\x00\ \x00\x1d\x64\xc1\x31\x77\xcb\x28\x60\xac\x3d\x77\xb9\x46\x82\xc1\ \x3c\x72\xaf\x36\x62\x95\x34\x59\x86\x22\x45\x72\x28\x41\x68\x04\ \x0e\x22\x00\x00\x0a\x03\x02\x09\x05\x04\x0c\x06\x05\x0e\x06\x05\ \x0f\x05\x05\x10\x05\x05\x11\x08\x08\x14\x08\x09\x15\x08\x09\x15\ \x09\x0c\x17\x08\x0c\x17\x08\x0d\x17\x0a\x0f\x17\x0b\x11\x1a\x0b\ \x12\x1a\x08\x0e\x15\x0d\x12\x1a\x0a\x0f\x18\x0b\x10\x19\x0a\x0d\ \x1a\x08\x0c\x17\x0d\x12\x1c\x0b\x10\x19\x09\x0e\x16\x0d\x0f\x19\ \x0a\x0f\x18\x0e\x13\x1c\x10\x14\x1e\x12\x17\x20\x0e\x14\x1b\x14\ \x18\x20\x14\x17\x1f\x14\x17\x1f\x13\x18\x1e\x1d\x23\x28\x1b\x21\ \x25\x1f\x25\x28\x27\x2c\x2d\x20\x26\x26\x1e\x23\x24\x1d\x22\x23\ \x2a\x2f\x30\x29\x2e\x30\x2b\x30\x33\x29\x2e\x31\x2b\x30\x33\x29\ \x2e\x31\x30\x35\x38\x2e\x33\x36\x25\x2a\x2b\x21\x27\x26\x28\x2d\ \x2b\x1d\x22\x21\x07\x0a\x0c\x03\x03\x09\x02\x02\x0c\x06\x07\x12\ \x06\x0a\x15\x0a\x10\x1c\x0a\x12\x1f\x08\x11\x1f\x0b\x16\x24\x08\ \x15\x23\x0b\x18\x27\x09\x16\x26\x08\x15\x27\x0a\x16\x29\x0d\x1b\ \x2a\x10\x1b\x2d\x0e\x1a\x2c\x0f\x1e\x30\x18\x28\x40\x2e\x45\x67\ \x06\x17\x33\x10\x23\x3e\x24\x3a\x5a\x20\x34\x4f\x0a\x1a\x2f\x20\ \x32\x45\x28\x40\x58\x24\x3a\x54\x15\x25\x3c\x1f\x31\x47\x3b\x50\ \x67\x40\x56\x6d\x15\x2c\x42\x22\x30\x43\x2c\x3a\x4b\x2f\x3f\x4d\ \x36\x47\x52\x37\x46\x53\x3e\x4b\x59\x2c\x3a\x4a\x22\x2d\x3e\x12\ \x1b\x2b\x15\x1e\x2c\x0c\x14\x22\x0c\x13\x21\x0b\x12\x1e\x0c\x11\ \x1e\x09\x0c\x1a\x08\x0a\x16\x06\x0b\x18\x42\x4b\x61\x5c\x68\x87\ \x8c\x8d\x9e\xf9\xee\xef\x7d\x79\x7b\x1b\x21\x2b\x31\x39\x44\x2e\ \x37\x45\x32\x3f\x52\x38\x48\x60\x49\x5e\x7b\x19\x2c\x47\x1b\x2d\ \x46\x1d\x32\x50\x17\x30\x51\x1a\x34\x58\x1b\x32\x50\x13\x29\x44\ \x0f\x21\x3c\x19\x2a\x45\x1d\x2f\x49\x1b\x30\x4b\x29\x41\x5c\x17\ \x2b\x47\x2a\x40\x5c\x2a\x45\x5f\x2b\x44\x5c\x3f\x59\x72\x28\x41\ \x56\x65\x78\x88\x72\x7f\x88\x7a\x88\x92\x7a\x8b\x97\x1e\x27\x34\ \x66\x7b\x8b\x56\x6f\x80\x56\x6f\x7f\x56\x70\x80\x54\x6e\x7f\x52\ \x6d\x7d\x52\x6b\x7d\x50\x68\x7a\x4c\x65\x75\x45\x5d\x6c\x40\x56\ \x65\x39\x4f\x5d\x37\x4a\x56\x33\x44\x4e\x00\x00\x00\x21\x67\xc5\ \x2d\x76\xca\x3b\x76\xc1\x40\x7c\xbe\x47\x85\xc4\x43\x7a\xb7\x39\ \x68\x9b\x2e\x57\x80\x21\x45\x70\x23\x3c\x61\x05\x0f\x23\x00\x01\ \x0b\x04\x03\x0a\x05\x04\x0b\x04\x04\x0c\x06\x07\x11\x06\x06\x11\ \x06\x06\x14\x08\x08\x15\x0a\x0a\x16\x09\x0b\x16\x09\x0c\x16\x0a\ \x0f\x18\x09\x0e\x17\x0c\x11\x1a\x07\x0d\x16\x0c\x13\x1a\x09\x0e\ \x16\x09\x0e\x17\x0b\x10\x19\x0a\x0e\x18\x08\x0d\x18\x09\x0d\x18\ \x0a\x0f\x19\x0b\x10\x19\x0a\x10\x17\x0a\x0d\x15\x0c\x0f\x17\x0e\ \x14\x1b\x0b\x11\x19\x0e\x16\x1d\x0e\x14\x1b\x12\x18\x1f\x16\x19\ \x21\x11\x15\x1a\x17\x1b\x21\x19\x1d\x22\x17\x1c\x1f\x1e\x23\x26\ \x1e\x23\x26\x22\x27\x28\x23\x28\x29\x20\x25\x27\x2e\x35\x38\x2b\ \x31\x34\x2b\x30\x32\x31\x36\x37\x34\x38\x3a\x2f\x33\x35\x32\x37\ \x38\x30\x35\x36\x2e\x33\x34\x23\x2a\x29\x2a\x2f\x2e\x1e\x23\x23\ \x09\x0b\x0f\x01\x01\x08\x03\x03\x0d\x05\x07\x11\x07\x0d\x19\x0b\ \x14\x1e\x08\x10\x1c\x08\x11\x1e\x08\x14\x23\x0f\x1c\x2c\x08\x15\ \x25\x0c\x18\x2a\x06\x12\x24\x0c\x17\x2a\x0d\x1a\x2a\x0a\x16\x28\ \x0d\x19\x2b\x0d\x19\x2d\x0e\x1b\x2f\x0b\x1a\x35\x11\x21\x35\x0b\ \x1b\x2d\x06\x17\x2d\x19\x27\x39\x13\x23\x35\x13\x23\x34\x18\x29\ \x3c\x15\x28\x3f\x16\x27\x38\x1e\x30\x41\x16\x29\x3b\x23\x36\x47\ \x2f\x42\x52\x38\x47\x5a\x2f\x3f\x50\x34\x44\x54\x33\x43\x50\x36\ \x46\x52\x3c\x49\x58\x2d\x3c\x4d\x17\x24\x35\x12\x1d\x2d\x0f\x17\ \x27\x09\x12\x20\x09\x11\x1f\x0a\x11\x1e\x08\x0e\x1b\x07\x0c\x1a\ \x09\x0c\x18\x08\x0c\x19\x3f\x48\x5e\x5d\x69\x85\x8e\x91\xa2\xfa\ \xef\xf1\x7a\x76\x7a\x27\x2e\x3b\x37\x42\x4d\x1e\x28\x37\x29\x37\ \x4d\x44\x58\x74\x4f\x64\x80\x11\x24\x3e\x12\x23\x3e\x26\x3b\x57\ \x11\x26\x45\x1f\x34\x52\x17\x2c\x48\x19\x2d\x48\x14\x25\x40\x1a\ \x2c\x47\x15\x2a\x44\x17\x2a\x45\x17\x2d\x45\x26\x3b\x56\x29\x3e\ \x59\x1f\x35\x4c\x26\x3c\x52\x25\x3c\x55\x3e\x55\x6a\x65\x77\x8a\ \x85\x93\x9e\x7c\x8d\x98\x79\x8a\x97\x32\x3f\x4a\x67\x7b\x89\x58\ \x72\x83\x56\x72\x83\x58\x73\x84\x55\x70\x84\x53\x6f\x83\x53\x6e\ \x82\x50\x69\x7d\x4a\x62\x75\x44\x5c\x6e\x3d\x56\x66\x37\x4d\x5d\ \x34\x48\x57\x31\x42\x4e\x00\x00\x00\x27\x67\xc6\x28\x6f\xc3\x41\ \x7f\xca\x41\x82\xc4\x40\x81\xc0\x40\x79\xb6\x3c\x6b\x9d\x2c\x56\ \x7f\x29\x4e\x78\x24\x3d\x62\x0a\x13\x27\x00\x01\x0a\x02\x03\x08\ \x05\x05\x0b\x04\x05\x0e\x06\x07\x11\x06\x06\x12\x07\x07\x15\x08\ \x08\x16\x09\x09\x16\x09\x0b\x16\x08\x0b\x16\x08\x0d\x16\x08\x0d\ \x16\x06\x0b\x13\x05\x0d\x14\x08\x0e\x16\x08\x0d\x16\x0a\x0e\x19\ \x0f\x12\x1e\x0c\x10\x1b\x08\x0f\x18\x08\x0f\x18\x09\x0e\x16\x0a\ \x10\x16\x0b\x10\x16\x0d\x11\x17\x0c\x10\x16\x0d\x13\x19\x10\x17\ \x1d\x0e\x16\x1c\x14\x1b\x22\x12\x18\x1f\x12\x16\x1c\x19\x1c\x21\ \x15\x18\x1d\x19\x1c\x21\x1a\x1d\x21\x1a\x1d\x21\x1f\x20\x24\x1c\ \x21\x23\x20\x25\x26\x20\x26\x29\x26\x2e\x31\x2a\x31\x34\x2b\x31\ \x31\x2b\x32\x30\x3f\x45\x44\x31\x37\x36\x36\x3c\x3b\x30\x36\x35\ \x27\x2d\x2c\x29\x2e\x2e\x22\x26\x26\x20\x23\x25\x0c\x0e\x12\x02\ \x02\x09\x03\x03\x0c\x05\x07\x12\x08\x0e\x1a\x08\x11\x1c\x09\x11\ \x1b\x09\x11\x1e\x0b\x17\x26\x0b\x16\x29\x09\x15\x28\x0c\x18\x2a\ \x07\x13\x25\x0b\x17\x29\x0c\x1a\x2a\x0a\x16\x28\x11\x1c\x2f\x12\ \x1f\x32\x0e\x17\x2b\x13\x20\x37\x12\x21\x33\x0c\x1d\x2e\x0a\x1c\ \x2e\x1a\x26\x37\x15\x23\x37\x14\x21\x35\x19\x26\x37\x1b\x2b\x3f\ \x16\x24\x38\x25\x33\x48\x15\x25\x37\x22\x32\x43\x2b\x3a\x4d\x29\ \x3c\x4e\x2d\x3e\x50\x2f\x3f\x50\x35\x42\x55\x3b\x48\x59\x34\x42\ \x52\x24\x32\x44\x1e\x2c\x3d\x12\x1e\x2d\x10\x19\x27\x0b\x14\x22\ \x0b\x12\x20\x07\x0e\x1b\x08\x0f\x1c\x09\x0e\x1c\x08\x0c\x18\x09\ \x0e\x1a\x3e\x48\x5c\x60\x6c\x87\x81\x84\x96\xf8\xef\xf1\x7b\x78\ \x7b\x1f\x29\x36\x1f\x2d\x38\x1e\x29\x37\x2f\x3f\x55\x37\x4a\x64\ \x22\x34\x4e\x32\x43\x5e\x29\x39\x55\x15\x26\x42\x1c\x2d\x48\x14\ \x22\x3b\x16\x27\x3e\x1a\x29\x43\x19\x28\x44\x12\x25\x40\x19\x2f\ \x48\x19\x2b\x47\x1f\x34\x49\x23\x38\x52\x24\x37\x51\x26\x36\x4a\ \x22\x33\x49\x26\x3a\x50\x31\x45\x5b\x4e\x60\x71\x6c\x7a\x89\x6c\ \x7d\x8c\x7e\x90\x9d\x40\x4d\x56\x68\x7a\x87\x58\x73\x83\x59\x75\ \x86\x57\x74\x87\x55\x73\x86\x53\x70\x85\x50\x6f\x82\x50\x6b\x7f\ \x4a\x63\x77\x44\x5d\x71\x3c\x55\x67\x36\x4d\x5c\x33\x46\x56\x31\ \x44\x4f\x00\x00\x00\x2a\x71\xcc\x26\x69\xc0\x3d\x7f\xca\x3b\x7b\ \xbf\x3d\x7a\xbc\x40\x7b\xb9\x42\x73\xa5\x2d\x54\x7f\x30\x53\x7b\ \x23\x3c\x60\x0a\x12\x2a\x00\x02\x09\x03\x03\x0b\x04\x05\x0e\x03\ \x05\x0d\x05\x07\x10\x06\x07\x11\x07\x08\x12\x07\x08\x12\x08\x09\ \x13\x07\x08\x12\x0a\x0b\x15\x0a\x0c\x16\x09\x0b\x15\x0a\x0d\x17\ \x09\x0f\x17\x0b\x11\x19\x06\x0b\x14\x08\x0d\x16\x0b\x10\x19\x0d\ \x12\x1b\x0b\x0f\x19\x0f\x13\x1e\x0e\x13\x1c\x0d\x12\x1a\x0c\x12\ \x19\x10\x16\x1d\x10\x16\x1d\x0e\x14\x1b\x1b\x1e\x26\x16\x1b\x23\ \x11\x17\x1e\x16\x1a\x22\x16\x19\x21\x15\x18\x21\x17\x1b\x21\x19\ \x1e\x23\x1a\x1e\x23\x1c\x1d\x22\x22\x25\x29\x1d\x22\x23\x23\x28\ \x29\x22\x28\x28\x26\x2e\x2d\x24\x2b\x2b\x26\x2a\x2d\x26\x2a\x2b\ \x37\x3d\x3b\x35\x3b\x39\x31\x36\x37\x30\x37\x3a\x28\x2e\x30\x2e\ \x32\x33\x28\x2d\x2d\x20\x22\x25\x0b\x0c\x10\x04\x01\x09\x04\x02\ \x0d\x06\x06\x11\x09\x0d\x1a\x09\x10\x1d\x0a\x12\x20\x09\x13\x21\ \x09\x13\x24\x0a\x18\x29\x0d\x1b\x2d\x09\x15\x28\x08\x13\x27\x10\ \x1a\x2f\x17\x22\x35\x0c\x1c\x2b\x0e\x1b\x32\x09\x15\x2e\x11\x1c\ \x30\x12\x20\x35\x13\x23\x36\x10\x1e\x32\x15\x23\x36\x18\x28\x3a\ \x15\x25\x38\x13\x22\x37\x1b\x2d\x42\x16\x28\x3f\x22\x32\x4a\x2c\ \x3b\x4f\x22\x33\x43\x21\x32\x40\x34\x46\x56\x29\x3d\x4f\x2b\x3d\ \x50\x3a\x49\x5c\x37\x45\x57\x41\x4e\x5f\x36\x42\x53\x28\x34\x47\ \x17\x22\x34\x17\x21\x32\x10\x1a\x28\x0b\x14\x23\x0c\x12\x21\x09\ \x0f\x1c\x0b\x0e\x1c\x07\x0a\x19\x08\x09\x17\x05\x07\x17\x3c\x43\ \x59\x5e\x69\x85\x7d\x7e\x92\xf9\xf0\xf2\x78\x75\x79\x17\x20\x2f\ \x39\x47\x57\x2e\x3f\x53\x4d\x5a\x70\x28\x31\x41\x29\x33\x45\x1c\ \x27\x3c\x1b\x28\x3c\x1a\x2a\x41\x16\x29\x40\x16\x27\x3c\x13\x25\ \x3c\x1a\x2c\x43\x19\x2e\x44\x1b\x2f\x4a\x1a\x2f\x4b\x0d\x23\x3f\ \x1a\x2f\x4a\x21\x34\x4f\x25\x37\x4d\x27\x38\x4c\x23\x35\x4d\x29\ \x3e\x54\x34\x48\x5c\x54\x67\x78\x6a\x7a\x8c\x6d\x7c\x89\x7e\x90\ \xa1\x1a\x23\x2e\x63\x73\x82\x5a\x73\x88\x58\x74\x88\x56\x74\x87\ \x55\x73\x86\x55\x70\x84\x51\x6f\x82\x4e\x6b\x7e\x4a\x65\x79\x43\ \x5d\x6f\x3d\x57\x68\x39\x4f\x5e\x36\x48\x56\x34\x45\x4f\x00\x00\ \x00\x31\x78\xd2\x24\x67\xbd\x3f\x7f\xca\x3f\x7c\xc0\x3f\x7c\xbd\ \x44\x7d\xbb\x44\x77\xab\x27\x4e\x7a\x2b\x4f\x79\x20\x39\x5d\x09\ \x11\x28\x00\x01\x09\x04\x03\x0b\x04\x05\x0d\x04\x06\x0e\x07\x08\ \x11\x06\x07\x11\x06\x08\x11\x07\x08\x12\x09\x0a\x14\x08\x09\x14\ \x09\x0a\x15\x08\x0a\x14\x0c\x0d\x18\x08\x0c\x16\x09\x0f\x16\x0a\ \x0f\x18\x08\x0d\x16\x0a\x0f\x18\x09\x0e\x17\x08\x0d\x16\x09\x0d\ \x18\x07\x0b\x15\x0b\x10\x19\x0a\x10\x17\x0b\x11\x18\x0a\x10\x17\ \x0c\x12\x19\x0a\x10\x17\x10\x14\x1b\x14\x17\x1f\x0d\x13\x1a\x12\ \x16\x1e\x14\x17\x1f\x11\x14\x1c\x14\x18\x20\x16\x1a\x1f\x1c\x1f\ \x24\x1d\x20\x24\x1d\x21\x25\x20\x25\x27\x24\x29\x2a\x20\x25\x26\ \x25\x2c\x2d\x25\x2d\x2d\x30\x35\x37\x29\x2e\x2e\x31\x37\x36\x30\ \x36\x35\x33\x39\x39\x31\x38\x3b\x29\x2e\x30\x2a\x2f\x30\x28\x2c\ \x2c\x1d\x20\x21\x0a\x0b\x0f\x04\x02\x0a\x04\x03\x0d\x07\x07\x12\ \x07\x0b\x18\x07\x0e\x1b\x0a\x13\x20\x09\x13\x21\x09\x13\x25\x10\ \x1b\x2d\x08\x14\x26\x06\x13\x26\x0b\x19\x2c\x09\x17\x2b\x0a\x1a\ \x2c\x0a\x19\x27\x13\x20\x35\x11\x1f\x3a\x0d\x1e\x39\x0c\x1c\x37\ \x09\x1b\x32\x0d\x1a\x32\x16\x25\x3c\x14\x26\x3b\x0e\x22\x38\x2a\ \x3e\x58\x15\x2a\x44\x11\x28\x43\x2f\x44\x5f\x1b\x31\x47\x27\x3d\ \x50\x1b\x30\x44\x24\x3c\x51\x16\x29\x3b\x22\x36\x47\x32\x42\x54\ \x35\x43\x55\x3e\x4c\x5d\x37\x45\x55\x3d\x49\x5a\x1a\x24\x35\x13\ \x1f\x2d\x0f\x18\x27\x0b\x12\x21\x0b\x13\x21\x07\x0e\x1b\x08\x0e\ \x1b\x08\x0c\x1a\x08\x0a\x18\x06\x08\x18\x38\x3f\x56\x61\x6c\x87\ \x83\x83\x97\xf9\xef\xf2\x7a\x75\x78\x1a\x21\x2c\x16\x1f\x2d\x26\ \x32\x43\x26\x31\x44\x2a\x32\x43\x21\x2e\x43\x17\x27\x3f\x17\x26\ \x3f\x13\x27\x40\x24\x3b\x56\x11\x25\x3e\x1e\x34\x4e\x1a\x32\x4d\ \x29\x40\x5b\x11\x26\x43\x19\x2e\x4d\x10\x25\x40\x1e\x33\x4e\x22\ \x36\x4d\x24\x37\x4b\x29\x3a\x4e\x22\x33\x49\x2a\x3c\x53\x36\x4a\ \x5d\x50\x63\x74\x73\x82\x93\x60\x6e\x7b\x83\x95\xa6\x33\x3c\x48\ \x66\x75\x83\x58\x73\x87\x57\x75\x88\x56\x74\x87\x55\x73\x86\x54\ \x71\x84\x4f\x6d\x7f\x4b\x68\x79\x47\x63\x74\x40\x5a\x6b\x3b\x53\ \x63\x37\x4e\x5d\x35\x49\x57\x38\x49\x54\x00\x00\x00\x33\x7a\xd2\ \x26\x6a\xc0\x39\x7a\xc8\x44\x81\xc6\x3f\x7a\xbc\x3d\x78\xb6\x45\ \x7c\xb1\x2b\x54\x81\x38\x5b\x85\x22\x3b\x60\x08\x11\x29\x00\x02\ \x0a\x04\x04\x0b\x04\x05\x0d\x05\x07\x0f\x05\x07\x10\x06\x07\x11\ \x08\x09\x12\x07\x08\x12\x0a\x0b\x15\x09\x0a\x16\x0a\x0c\x17\x0b\ \x0d\x16\x09\x0e\x17\x08\x0d\x16\x07\x0c\x14\x0a\x0f\x17\x08\x0d\ \x16\x0a\x0f\x18\x0c\x11\x1a\x0b\x10\x19\x0a\x0f\x18\x0b\x10\x19\ \x0b\x10\x19\x0c\x11\x1a\x0b\x12\x19\x0d\x12\x1b\x0d\x13\x1b\x0e\ \x14\x1c\x12\x15\x1e\x15\x18\x21\x11\x18\x1e\x16\x1a\x22\x1a\x1d\ \x24\x18\x1c\x21\x1e\x22\x27\x18\x1c\x21\x1d\x21\x24\x1b\x20\x23\ \x1d\x22\x25\x1d\x22\x25\x1f\x24\x27\x22\x27\x28\x23\x28\x29\x24\ \x29\x2a\x29\x31\x31\x28\x30\x30\x38\x41\x40\x2f\x37\x36\x30\x38\ \x37\x33\x38\x39\x27\x2c\x2d\x2b\x2f\x2f\x26\x2b\x2a\x20\x24\x25\ \x0b\x0c\x11\x02\x01\x09\x04\x04\x0e\x07\x08\x13\x08\x0c\x19\x0a\ \x11\x1e\x07\x0f\x1c\x09\x13\x22\x09\x13\x24\x0e\x18\x2a\x0b\x17\ \x29\x0a\x17\x2a\x0d\x1c\x2f\x08\x18\x2d\x1f\x34\x51\x25\x3b\x54\ \x0d\x22\x3c\x22\x3a\x5c\x30\x48\x6d\x0f\x22\x43\x2a\x3e\x5a\x08\ \x18\x32\x1a\x2e\x49\x27\x3e\x57\x0b\x21\x3b\x2b\x42\x5e\x19\x31\ \x4e\x2b\x43\x63\x12\x2b\x49\x32\x4b\x66\x1c\x35\x4e\x5e\x78\x92\ \x34\x4f\x6c\x5c\x76\x8e\x41\x59\x70\x57\x6d\x83\x50\x63\x7a\x24\ \x37\x4a\x33\x43\x52\x28\x35\x44\x1a\x24\x32\x1a\x24\x31\x0e\x17\ \x24\x0c\x14\x21\x09\x10\x1e\x07\x0e\x1d\x07\x0e\x1c\x09\x0e\x1d\ \x09\x0b\x19\x03\x06\x15\x37\x3e\x54\x5f\x6a\x85\x98\x95\xa7\xfb\ \xee\xf0\x75\x6f\x71\x16\x1a\x23\x1c\x22\x2b\x25\x2b\x3a\x29\x2f\ \x41\x29\x31\x44\x23\x35\x4d\x48\x5f\x7c\x1a\x2d\x49\x18\x2e\x4c\ \x33\x4e\x73\x09\x1f\x3c\x17\x32\x4f\x1a\x35\x54\x2a\x43\x62\x13\ \x2b\x4b\x2e\x44\x65\x0f\x24\x3f\x1a\x2f\x47\x24\x39\x4e\x29\x3c\ \x50\x2c\x3f\x52\x25\x35\x4a\x24\x36\x4b\x36\x4a\x5d\x56\x69\x7a\ \x71\x7f\x8f\x69\x74\x7f\x7b\x8b\x9b\x37\x40\x4b\x43\x52\x61\x5d\ \x77\x8d\x56\x72\x87\x52\x71\x86\x53\x71\x87\x54\x71\x86\x50\x6c\ \x7d\x4c\x68\x79\x47\x62\x73\x40\x5a\x6a\x39\x52\x62\x3a\x4f\x60\ \x3a\x4d\x5c\x3b\x4c\x59\x00\x00\x00\x34\x7b\xd1\x31\x75\xcc\x30\ \x73\xc2\x40\x81\xc9\x36\x72\xb6\x3b\x77\xb8\x3c\x73\xae\x30\x5a\ \x8a\x3c\x60\x89\x2c\x47\x6c\x05\x0f\x27\x00\x01\x0b\x04\x03\x0b\ \x03\x05\x0d\x04\x06\x0e\x04\x06\x0f\x06\x07\x11\x07\x08\x12\x06\ \x07\x11\x09\x0b\x15\x07\x0a\x14\x0c\x10\x18\x06\x0c\x15\x07\x0c\ \x15\x0a\x0f\x18\x08\x0e\x15\x07\x0e\x16\x09\x0e\x17\x0b\x10\x19\ \x0b\x10\x19\x09\x0e\x17\x0a\x0f\x18\x09\x0e\x17\x0d\x12\x1b\x0a\ \x0f\x18\x0c\x11\x1a\x0b\x10\x19\x0a\x0f\x18\x0e\x13\x1c\x0d\x0f\ \x19\x13\x16\x1f\x0f\x14\x1d\x0f\x14\x1b\x11\x14\x1b\x15\x1a\x1e\ \x18\x1b\x20\x1c\x21\x24\x1e\x25\x28\x1e\x25\x29\x21\x27\x28\x20\ \x25\x2a\x21\x27\x2b\x23\x28\x2c\x22\x27\x29\x26\x2b\x2c\x27\x2c\ \x2d\x29\x2d\x2f\x30\x35\x38\x2d\x32\x34\x35\x3a\x3a\x30\x34\x34\ \x33\x38\x38\x2d\x32\x31\x2c\x31\x30\x1f\x23\x25\x0b\x0d\x12\x02\ \x01\x0a\x03\x03\x0d\x07\x08\x13\x07\x0c\x18\x0a\x11\x1e\x06\x0f\ \x1c\x0c\x17\x25\x0e\x18\x29\x0a\x15\x27\x0a\x16\x28\x06\x13\x25\ \x06\x13\x27\x07\x16\x2c\x1c\x36\x5b\x01\x12\x39\x21\x39\x5b\x00\ \x16\x38\x25\x3b\x62\x0c\x20\x41\x05\x1a\x34\x0d\x1f\x3a\x27\x40\ \x5d\x11\x2a\x45\x0c\x23\x3d\x1b\x32\x4e\x18\x30\x4b\x16\x2e\x4b\ \x21\x3e\x5c\x30\x49\x65\x16\x2e\x48\x55\x72\x8d\x1c\x3a\x57\x23\ \x3c\x57\x34\x4f\x69\x4b\x66\x80\x4b\x65\x7f\x37\x4f\x66\x2c\x3e\ \x4f\x2b\x38\x48\x18\x22\x30\x15\x1f\x2d\x0f\x18\x25\x0e\x16\x23\ \x0d\x14\x22\x09\x10\x1f\x09\x11\x1f\x08\x0f\x1e\x06\x0b\x18\x06\ \x0a\x1a\x32\x39\x4f\x61\x6b\x86\x9d\x9a\xa9\xfb\xf0\xef\x73\x6d\ \x6e\x16\x19\x21\x1d\x21\x29\x28\x2e\x3b\x2c\x32\x45\x2f\x36\x49\ \x18\x2a\x43\x53\x6b\x8c\x17\x2a\x46\x18\x2d\x4c\x31\x4f\x78\x18\ \x2d\x4a\x19\x33\x50\x19\x35\x53\x32\x4b\x69\x0d\x24\x43\x16\x2d\ \x4d\x15\x27\x44\x18\x2c\x45\x20\x35\x4b\x20\x34\x49\x28\x3a\x4f\ \x24\x36\x4b\x2d\x40\x55\x34\x47\x59\x47\x57\x67\x69\x77\x86\x7b\ \x87\x92\x70\x82\x91\x68\x73\x7e\x62\x73\x83\x59\x74\x8a\x54\x71\ \x86\x51\x70\x85\x52\x71\x86\x52\x6f\x84\x4f\x6a\x7d\x4b\x66\x78\ \x47\x60\x72\x3f\x57\x69\x3a\x51\x61\x3a\x4e\x5d\x3d\x4f\x5c\x41\ \x51\x5d\x00\x00\x00\x34\x7a\xcf\x30\x77\xcc\x32\x79\xc9\x39\x7c\ \xc8\x32\x71\xb7\x35\x72\xb7\x3f\x76\xb4\x37\x61\x93\x2f\x53\x7e\ \x28\x43\x69\x08\x12\x2b\x00\x02\x0c\x04\x04\x0c\x03\x05\x0d\x03\ \x05\x0d\x06\x07\x10\x07\x08\x13\x07\x07\x14\x05\x06\x12\x09\x0b\ \x15\x07\x0b\x14\x08\x0e\x16\x08\x0d\x16\x08\x0d\x16\x08\x0e\x17\ \x05\x0d\x15\x08\x0f\x17\x09\x0e\x17\x09\x0e\x17\x0c\x11\x1a\x0c\ \x11\x1a\x0c\x11\x1a\x0d\x12\x1b\x0c\x11\x1a\x0d\x12\x1b\x0c\x11\ \x1a\x0c\x11\x1a\x0c\x11\x1a\x0a\x0f\x18\x0f\x11\x1b\x11\x14\x1d\ \x10\x15\x1e\x12\x18\x1f\x16\x19\x21\x1a\x1e\x23\x19\x1e\x21\x1b\ \x20\x23\x1d\x24\x27\x1b\x23\x24\x1f\x26\x26\x1f\x25\x28\x21\x27\ \x2c\x23\x29\x2c\x2b\x30\x32\x28\x2d\x2d\x2f\x34\x34\x2d\x31\x34\ \x29\x2c\x30\x2d\x31\x33\x33\x37\x38\x2d\x31\x31\x31\x36\x35\x25\ \x2a\x29\x27\x2c\x2b\x24\x29\x29\x0d\x10\x14\x01\x00\x08\x02\x02\ \x0c\x08\x0a\x14\x06\x0c\x18\x0a\x11\x1e\x07\x10\x1d\x09\x13\x21\ \x0a\x14\x25\x0d\x1b\x2d\x0b\x19\x2b\x06\x11\x25\x0a\x15\x29\x08\ \x15\x2b\x18\x2e\x52\x1d\x31\x5d\x17\x30\x52\x01\x14\x30\x26\x39\ \x5b\x16\x2c\x4b\x04\x18\x32\x13\x26\x3f\x1d\x3a\x57\x07\x1f\x3d\ \x23\x3a\x54\x17\x2b\x46\x1a\x31\x4b\x30\x48\x61\x20\x39\x5a\x16\ \x2e\x4b\x25\x3c\x56\x50\x6d\x86\x37\x56\x70\x20\x36\x4c\x30\x47\ \x5d\x45\x5d\x73\x30\x4a\x5e\x68\x80\x94\x24\x38\x4c\x22\x2f\x40\ \x1c\x26\x34\x19\x21\x33\x19\x23\x31\x11\x19\x26\x07\x0f\x1c\x05\ \x0e\x1c\x07\x11\x1f\x0c\x12\x21\x09\x0d\x1b\x08\x0c\x1b\x2f\x36\ \x4c\x60\x6b\x85\xab\xa8\xb5\xfd\xf2\xf0\x74\x6e\x6f\x11\x15\x1d\ \x21\x27\x2f\x21\x28\x33\x25\x2a\x3c\x31\x36\x4a\x19\x29\x43\x4d\ \x66\x87\x0c\x1e\x3a\x19\x2c\x4b\x26\x41\x6a\x10\x24\x3f\x1a\x2f\ \x4c\x1b\x31\x50\x16\x2d\x49\x15\x2c\x49\x1f\x34\x53\x1c\x2e\x4c\ \x19\x2c\x47\x23\x38\x4f\x1f\x34\x4a\x28\x3c\x52\x22\x35\x4a\x33\ \x46\x5b\x31\x41\x54\x4e\x5d\x6d\x63\x70\x7f\x70\x7e\x87\x7c\x8f\ \x9d\x5b\x66\x73\x36\x48\x56\x62\x7d\x92\x55\x72\x87\x51\x70\x85\ \x51\x70\x85\x51\x6e\x83\x4f\x6a\x7f\x49\x63\x77\x42\x5b\x6f\x3e\ \x56\x69\x3a\x51\x61\x40\x52\x5f\x42\x52\x5f\x46\x55\x5f\x00\x00\ \x00\x37\x7b\xcc\x32\x76\xc8\x2e\x76\xcb\x32\x7a\xcb\x30\x73\xbf\ \x29\x61\xaa\x3d\x72\xb0\x3d\x6a\x9a\x29\x4c\x78\x2d\x46\x6d\x0c\ \x16\x2f\x01\x01\x0b\x04\x03\x0b\x06\x05\x0e\x06\x06\x0f\x05\x06\ \x10\x07\x08\x12\x08\x08\x14\x07\x08\x13\x0a\x0c\x17\x09\x0b\x16\ \x09\x0b\x15\x0a\x0c\x15\x09\x0e\x17\x09\x0f\x18\x09\x0e\x17\x0a\ \x0f\x17\x08\x0f\x15\x0b\x11\x19\x0a\x11\x1a\x0d\x13\x1e\x09\x0e\ \x17\x0a\x0f\x18\x0d\x11\x1c\x0e\x13\x1c\x0d\x12\x1a\x0d\x13\x1a\ \x0f\x14\x1d\x0c\x11\x1a\x12\x17\x20\x16\x1a\x23\x13\x15\x1d\x13\ \x16\x1e\x15\x18\x20\x17\x1a\x1e\x18\x1d\x22\x1e\x24\x29\x1d\x23\ \x27\x1e\x24\x27\x25\x2a\x2b\x1e\x24\x27\x1d\x24\x29\x1c\x24\x28\ \x27\x2d\x30\x27\x2c\x2d\x2a\x2f\x30\x26\x2b\x2c\x2a\x2f\x31\x26\ \x2a\x2d\x35\x37\x3b\x28\x2b\x2f\x2e\x32\x33\x2a\x2e\x2e\x25\x2a\ \x29\x20\x25\x25\x12\x15\x16\x01\x01\x07\x03\x03\x0c\x06\x0a\x15\ \x0a\x11\x1d\x0a\x12\x21\x08\x10\x20\x08\x13\x21\x08\x14\x22\x0e\ \x1b\x2b\x0d\x1a\x2c\x07\x15\x27\x0b\x18\x2d\x09\x18\x30\x17\x2e\ \x53\x02\x0f\x3b\x26\x40\x67\x04\x17\x3a\x28\x3c\x60\x06\x18\x36\ \x17\x2c\x45\x23\x39\x5c\x15\x2a\x49\x0e\x22\x3a\x30\x47\x61\x21\ \x39\x55\x20\x37\x56\x1c\x33\x4f\x2c\x42\x61\x31\x47\x64\x23\x3c\ \x55\x4f\x6d\x84\x15\x33\x49\x44\x5b\x71\x1a\x33\x48\x40\x5a\x70\ \x1f\x3a\x51\x62\x7c\x93\x2d\x40\x53\x23\x31\x42\x1c\x26\x35\x17\ \x1f\x31\x14\x1d\x2c\x0e\x16\x23\x0c\x14\x21\x08\x11\x1d\x0a\x11\ \x1e\x08\x0f\x1d\x07\x0a\x1b\x05\x09\x18\x2d\x33\x46\x62\x6b\x88\ \xa1\xa0\xb0\xff\xf3\xf5\x74\x6d\x6f\x17\x1b\x22\x1d\x23\x2a\x28\ \x2c\x39\x2c\x30\x44\x39\x43\x5d\x1b\x2e\x4a\x51\x69\x89\x24\x38\ \x59\x1e\x32\x51\x21\x34\x51\x14\x28\x44\x15\x2a\x46\x12\x27\x43\ \x12\x27\x43\x12\x27\x43\x1c\x31\x4d\x1c\x2d\x48\x1b\x2e\x49\x20\ \x34\x4d\x23\x38\x4e\x24\x39\x4e\x27\x39\x50\x2d\x40\x55\x32\x42\ \x55\x4e\x5c\x6e\x73\x81\x90\x74\x7f\x8d\x76\x8c\x97\x5a\x66\x74\ \x2e\x3d\x4a\x62\x7e\x92\x53\x70\x85\x53\x70\x85\x53\x70\x85\x4e\ \x6d\x82\x4d\x67\x7e\x49\x64\x79\x41\x5b\x6f\x40\x55\x6a\x3f\x51\ \x63\x43\x54\x61\x45\x55\x62\x48\x58\x62\x00\x00\x00\x36\x78\xca\ \x32\x75\xc7\x25\x6d\xc4\x32\x7a\xcd\x28\x6a\xb8\x23\x5b\xa5\x40\ \x74\xb2\x37\x64\x94\x31\x55\x80\x2b\x44\x6a\x0c\x19\x30\x00\x00\ \x09\x04\x03\x0b\x06\x05\x0e\x05\x05\x0f\x06\x07\x11\x07\x08\x12\ \x09\x09\x15\x08\x09\x15\x0a\x0c\x17\x0a\x0c\x17\x0b\x0d\x18\x0a\ \x0d\x18\x09\x0d\x18\x0a\x0d\x19\x07\x0b\x16\x0d\x11\x1a\x0b\x11\ \x18\x0b\x11\x1a\x0b\x12\x1b\x07\x0d\x18\x0d\x13\x1b\x0b\x10\x19\ \x0b\x0f\x19\x08\x0d\x16\x0f\x15\x1d\x0c\x12\x19\x0c\x11\x19\x12\ \x17\x20\x12\x17\x20\x0f\x14\x1c\x11\x17\x1e\x13\x16\x1e\x13\x17\ \x1e\x14\x18\x1d\x15\x1a\x1f\x17\x1d\x22\x13\x19\x1d\x16\x1c\x1f\ \x21\x26\x27\x23\x27\x2a\x20\x24\x29\x1f\x25\x2a\x2c\x33\x36\x27\ \x2e\x2e\x29\x2e\x31\x28\x2d\x30\x36\x3b\x3e\x31\x37\x3b\x31\x36\ \x3b\x2b\x2f\x32\x33\x38\x39\x2b\x2f\x2f\x28\x2d\x2c\x22\x27\x27\ \x0f\x11\x15\x02\x02\x08\x04\x04\x0d\x07\x0b\x16\x08\x10\x1c\x0a\ \x11\x1f\x0b\x14\x24\x0b\x15\x26\x05\x12\x20\x07\x13\x23\x0b\x18\ \x29\x08\x16\x29\x0b\x18\x2c\x0c\x1a\x32\x1a\x31\x54\x17\x2a\x51\ \x10\x23\x46\x19\x2e\x4b\x19\x2d\x4b\x16\x29\x43\x15\x27\x3d\x0e\ \x21\x3e\x0d\x1f\x37\x14\x25\x39\x0f\x21\x38\x0d\x20\x3a\x15\x29\ \x44\x1b\x2e\x4a\x19\x2d\x48\x1c\x2f\x48\x20\x35\x4c\x25\x3d\x53\ \x3a\x53\x6b\x3b\x53\x6a\x46\x5e\x76\x5e\x76\x8e\x4f\x68\x80\x35\ \x4c\x63\x3c\x4c\x5f\x31\x3e\x4e\x1c\x26\x36\x14\x1f\x30\x16\x1f\ \x30\x08\x0f\x1e\x0a\x11\x20\x0a\x11\x20\x0c\x12\x21\x08\x0f\x1d\ \x0b\x0f\x1f\x0a\x0c\x1b\x27\x2c\x3f\x64\x6c\x88\x92\x91\xa3\xff\ \xf5\xf6\x72\x6b\x6e\x12\x15\x1e\x1c\x22\x2a\x23\x2b\x39\x2b\x32\ \x46\x39\x45\x5e\x4e\x61\x7d\x19\x2c\x47\x18\x29\x44\x1a\x29\x43\ \x17\x27\x42\x17\x2b\x45\x16\x28\x42\x1a\x2c\x47\x15\x28\x42\x18\ \x2a\x44\x13\x26\x40\x18\x2b\x44\x18\x2c\x44\x24\x38\x50\x21\x36\ \x4c\x27\x3b\x51\x29\x3b\x51\x22\x35\x4a\x34\x44\x57\x48\x57\x69\ \x5e\x6d\x7c\x6c\x76\x84\x76\x8a\x97\x6f\x7e\x8e\x35\x44\x54\x64\ \x7f\x92\x56\x72\x87\x54\x71\x86\x53\x70\x85\x51\x6e\x83\x4e\x69\ \x7e\x48\x63\x77\x43\x5c\x6f\x3f\x53\x67\x40\x52\x64\x45\x56\x63\ \x49\x59\x65\x4c\x5d\x67\x00\x00\x00\x33\x77\xc7\x3e\x81\xd2\x27\ \x6d\xc1\x2e\x76\xc9\x22\x64\xb3\x2a\x62\xae\x36\x68\xa7\x38\x65\ \x94\x2e\x53\x7f\x2e\x49\x6e\x0b\x17\x2e\x01\x02\x0a\x05\x03\x0a\ \x06\x05\x0e\x05\x05\x0e\x07\x08\x12\x06\x07\x12\x0a\x0a\x16\x08\ \x09\x15\x0a\x0c\x17\x0a\x0c\x17\x07\x09\x14\x08\x0b\x16\x0c\x10\ \x1b\x0a\x0e\x19\x0c\x0e\x1a\x0b\x0f\x18\x08\x0d\x16\x0b\x11\x1a\ \x12\x1a\x23\x0c\x13\x1c\x0e\x15\x1c\x10\x15\x1e\x1a\x1f\x29\x10\ \x14\x1f\x14\x19\x22\x12\x17\x20\x11\x17\x1e\x10\x16\x1d\x15\x1b\ \x22\x16\x1c\x23\x14\x1a\x21\x14\x1b\x21\x18\x1c\x23\x13\x17\x1c\ \x1c\x21\x26\x1a\x20\x25\x1b\x22\x25\x29\x2f\x32\x24\x29\x2a\x1f\ \x23\x24\x24\x28\x2c\x1b\x22\x25\x22\x29\x2b\x1c\x24\x24\x23\x28\ \x2b\x28\x2d\x30\x46\x4c\x4f\x35\x3c\x3f\x2b\x33\x37\x2c\x31\x34\ \x32\x37\x38\x28\x2d\x2d\x29\x2e\x2d\x20\x25\x26\x0f\x11\x16\x02\ \x01\x08\x03\x03\x0d\x09\x0d\x17\x07\x0e\x1b\x09\x11\x21\x09\x12\ \x22\x0d\x18\x29\x08\x15\x24\x09\x15\x27\x0d\x19\x2b\x06\x14\x26\ \x08\x16\x29\x0d\x1c\x2f\x0d\x1e\x37\x08\x16\x31\x0a\x18\x2e\x10\ \x1e\x31\x0d\x1c\x34\x11\x22\x3a\x17\x25\x3a\x17\x28\x3d\x1c\x2a\ \x3e\x22\x30\x41\x12\x21\x33\x15\x24\x39\x2d\x3d\x56\x22\x33\x4e\ \x2b\x3d\x55\x2e\x40\x56\x23\x34\x49\x30\x43\x59\x2d\x40\x56\x2b\ \x3f\x53\x2e\x42\x54\x33\x46\x58\x38\x4a\x5c\x38\x49\x5b\x30\x3f\ \x50\x22\x30\x3f\x1b\x28\x38\x0e\x1b\x2b\x18\x22\x33\x11\x18\x29\ \x0f\x16\x27\x08\x0f\x20\x0d\x12\x24\x08\x0e\x1c\x0a\x0c\x1d\x07\ \x07\x18\x26\x2b\x3e\x66\x6c\x89\x92\x92\xa0\xff\xf6\xf6\x73\x6c\ \x6d\x17\x18\x21\x1f\x22\x2a\x29\x2c\x36\x30\x34\x43\x37\x3e\x51\ \x23\x2f\x46\x24\x32\x46\x1e\x2b\x41\x19\x26\x3c\x1e\x2d\x45\x18\ \x29\x43\x1a\x2b\x45\x1b\x2c\x46\x1b\x2c\x46\x1c\x2d\x47\x1c\x2e\ \x47\x1b\x30\x46\x17\x2c\x42\x1f\x34\x4a\x25\x3a\x50\x21\x34\x4a\ \x28\x39\x50\x2a\x3d\x52\x33\x45\x58\x47\x57\x68\x58\x68\x77\x69\ \x72\x7f\x77\x86\x94\x4b\x5b\x6c\x0f\x19\x29\x70\x8a\x9e\x58\x73\ \x88\x58\x74\x89\x53\x70\x85\x51\x6e\x83\x4f\x68\x7c\x48\x61\x75\ \x42\x5b\x6d\x3f\x54\x66\x42\x54\x64\x47\x58\x64\x4a\x5a\x66\x4f\ \x5f\x6a\x00\x00\x00\x31\x73\xc3\x47\x8b\xd9\x31\x77\xc6\x2d\x71\ \xc2\x27\x69\xb8\x2b\x64\xb1\x2e\x61\xa2\x44\x71\xa1\x38\x61\x89\ \x2c\x48\x6c\x08\x15\x2c\x01\x01\x09\x04\x04\x09\x06\x05\x0d\x06\ \x06\x0f\x07\x08\x12\x07\x07\x13\x09\x09\x15\x08\x08\x14\x09\x0b\ \x16\x0a\x0c\x17\x08\x0b\x15\x07\x0c\x16\x0a\x0f\x19\x08\x0d\x17\ \x09\x0b\x15\x0b\x0d\x18\x09\x0e\x17\x09\x0f\x18\x0d\x14\x1d\x09\ \x11\x1a\x0b\x11\x18\x0b\x11\x19\x0c\x10\x1a\x0e\x13\x1e\x0d\x11\ \x1b\x0b\x10\x19\x0d\x13\x1a\x0e\x14\x1b\x10\x16\x1d\x15\x1b\x22\ \x11\x17\x1e\x14\x1a\x21\x16\x1c\x22\x16\x1b\x20\x19\x1e\x23\x17\ \x1d\x22\x15\x1c\x1f\x1f\x25\x28\x1b\x20\x21\x20\x25\x26\x21\x26\ \x28\x21\x28\x2b\x26\x2c\x2f\x23\x27\x28\x29\x2e\x2e\x25\x2a\x2a\ \x24\x29\x2a\x27\x2c\x2e\x27\x2c\x2e\x2f\x36\x39\x2f\x35\x36\x2d\ \x32\x33\x2b\x30\x2f\x1d\x22\x23\x0d\x10\x15\x03\x03\x09\x04\x04\ \x0e\x09\x0d\x16\x07\x0e\x1b\x08\x10\x20\x0b\x14\x25\x0f\x1c\x2c\ \x06\x14\x24\x0b\x17\x29\x0b\x18\x2a\x0c\x1a\x2d\x0a\x18\x2b\x0a\ \x18\x2b\x0c\x18\x2c\x0c\x17\x2c\x12\x1f\x30\x16\x23\x35\x15\x25\ \x39\x12\x1f\x35\x0e\x1b\x30\x14\x25\x38\x11\x20\x33\x11\x20\x34\ \x0f\x1f\x32\x14\x22\x36\x17\x28\x3d\x16\x28\x40\x19\x2d\x47\x23\ \x37\x4e\x1a\x2d\x42\x24\x37\x4b\x32\x45\x5a\x2f\x40\x54\x2d\x3d\ \x4f\x35\x44\x55\x34\x42\x52\x3e\x4d\x5d\x36\x45\x55\x30\x3d\x4e\ \x1e\x2b\x3a\x19\x21\x33\x14\x1d\x2c\x0d\x14\x23\x0c\x13\x22\x0a\ \x11\x20\x0a\x10\x1f\x0a\x11\x1f\x0c\x0f\x20\x08\x08\x18\x21\x25\ \x38\x68\x6d\x89\x93\x93\xa2\xff\xf6\xf6\x75\x6d\x6f\x15\x16\x1f\ \x1e\x20\x29\x28\x2c\x35\x31\x36\x43\x34\x3b\x4d\x2c\x35\x47\x21\ \x2f\x43\x1d\x2a\x41\x1c\x29\x40\x18\x27\x3f\x15\x28\x41\x18\x2b\ \x45\x17\x29\x44\x12\x25\x3f\x14\x27\x41\x1a\x2c\x47\x1e\x32\x4a\ \x15\x2a\x40\x1f\x34\x49\x1f\x34\x47\x29\x3c\x4f\x27\x37\x4e\x2c\ \x3f\x54\x2f\x43\x54\x3d\x4d\x5f\x5c\x6e\x7c\x6e\x74\x80\x80\x8c\ \x98\x4f\x61\x6d\x0b\x19\x28\x6e\x87\x9b\x57\x72\x87\x57\x72\x87\ \x56\x72\x87\x52\x6f\x84\x4e\x67\x7b\x48\x61\x73\x40\x59\x6b\x3f\ \x54\x65\x44\x55\x65\x49\x59\x65\x4e\x5e\x6a\x52\x63\x6e\x00\x00\ \x00\x33\x76\xc4\x46\x8c\xd8\x3a\x82\xd0\x30\x74\xc5\x30\x6e\xbf\ \x28\x60\xae\x2d\x60\xa4\x3c\x6d\xa0\x36\x5c\x87\x2d\x49\x6d\x03\ \x10\x27\x01\x02\x0a\x03\x03\x09\x05\x05\x0d\x04\x04\x0e\x07\x07\ \x12\x07\x07\x13\x09\x09\x15\x07\x08\x13\x07\x0a\x14\x08\x0b\x16\ \x09\x0c\x16\x08\x0e\x17\x08\x0e\x17\x0a\x0f\x18\x0a\x0d\x17\x0c\ \x11\x1a\x0b\x10\x19\x0c\x12\x1b\x0b\x12\x1b\x08\x0f\x18\x0a\x11\ \x18\x0b\x12\x18\x0d\x14\x1c\x0e\x13\x1d\x0e\x13\x1d\x10\x15\x1e\ \x0d\x13\x19\x11\x17\x1d\x0f\x15\x1b\x12\x18\x1e\x14\x1a\x21\x11\ \x17\x1e\x18\x1f\x25\x12\x17\x1c\x15\x1a\x1f\x16\x1c\x21\x1a\x21\ \x24\x1e\x24\x27\x25\x2b\x2c\x23\x29\x29\x20\x27\x27\x22\x28\x2a\ \x24\x28\x2b\x28\x2c\x2e\x27\x2c\x2e\x26\x2d\x2d\x2f\x36\x35\x28\ \x2c\x2d\x2f\x33\x34\x29\x30\x33\x29\x30\x30\x21\x26\x27\x25\x2a\ \x29\x25\x2a\x2a\x11\x12\x17\x03\x03\x0a\x05\x05\x0e\x09\x0d\x17\ \x08\x10\x1d\x0c\x15\x24\x09\x13\x23\x07\x12\x22\x07\x13\x24\x0b\ \x18\x2a\x09\x16\x26\x0d\x19\x2a\x0b\x19\x2b\x0d\x1a\x2e\x13\x20\ \x34\x0e\x1c\x30\x0b\x19\x2c\x0f\x1f\x33\x10\x20\x37\x12\x1e\x35\ \x11\x1d\x32\x15\x29\x3f\x14\x26\x3d\x15\x26\x3d\x1b\x2c\x42\x18\ \x2b\x41\x18\x2c\x43\x14\x2a\x45\x25\x3b\x57\x24\x3a\x52\x21\x37\ \x4c\x25\x3c\x50\x36\x4c\x5f\x2a\x3d\x55\x2e\x41\x57\x34\x45\x58\ \x36\x45\x57\x36\x45\x56\x35\x45\x55\x34\x43\x54\x24\x32\x42\x14\ \x1e\x2e\x14\x1d\x2b\x0d\x15\x24\x0e\x14\x23\x0b\x11\x20\x0a\x0f\ \x1e\x08\x0e\x1c\x0a\x0d\x1c\x08\x08\x18\x1d\x21\x35\x67\x6e\x87\ \x9e\x9d\xab\xff\xf3\xf4\x76\x6e\x70\x14\x14\x1d\x1d\x1f\x29\x2d\ \x33\x3e\x2f\x35\x45\x30\x39\x4a\x2b\x34\x48\x23\x30\x45\x1c\x29\ \x40\x20\x2f\x47\x19\x29\x43\x1a\x2c\x45\x19\x2b\x46\x14\x27\x42\ \x16\x29\x45\x19\x2d\x47\x18\x2c\x46\x18\x2d\x46\x1b\x30\x47\x1f\ \x34\x49\x1f\x33\x46\x27\x3a\x4d\x28\x39\x4f\x25\x37\x4c\x2b\x3d\ \x4f\x3c\x4c\x5e\x5e\x6f\x7b\x6c\x75\x7e\x8c\x96\xa0\x5c\x6c\x79\ \x6e\x7f\x8d\x60\x78\x8b\x5a\x74\x89\x5a\x74\x89\x56\x73\x87\x50\ \x6d\x80\x4d\x68\x7a\x47\x61\x72\x40\x58\x69\x3f\x55\x65\x46\x58\ \x67\x4c\x5d\x68\x4e\x5f\x6b\x56\x66\x72\x00\x00\x00\x33\x78\xc5\ \x3a\x7d\xcc\x37\x7e\xce\x2d\x71\xc4\x33\x70\xc1\x2f\x67\xb3\x2b\ \x5f\xa7\x3b\x6e\xa8\x30\x57\x84\x2d\x4b\x6e\x0c\x15\x2f\x00\x02\ \x0a\x03\x04\x0b\x05\x04\x0d\x06\x05\x0f\x05\x06\x10\x07\x07\x13\ \x09\x08\x14\x09\x0a\x15\x0b\x0f\x18\x08\x0d\x17\x0b\x0e\x18\x08\ \x0d\x16\x0a\x0f\x18\x0a\x0f\x18\x0c\x11\x1a\x0d\x12\x1b\x0a\x11\ \x1a\x0b\x12\x1b\x0d\x14\x1d\x09\x10\x19\x0b\x13\x1b\x0c\x15\x1a\ \x0d\x16\x1a\x10\x18\x1f\x0c\x13\x1c\x10\x16\x1d\x14\x1a\x20\x11\ \x17\x1c\x13\x19\x1f\x18\x1f\x26\x13\x19\x20\x17\x1d\x24\x16\x1c\ \x22\x16\x1c\x21\x14\x1a\x1f\x16\x1c\x21\x1c\x23\x27\x1a\x22\x24\ \x1f\x27\x27\x22\x28\x29\x25\x2a\x2b\x26\x2b\x2c\x20\x25\x27\x25\ \x29\x2d\x25\x2b\x30\x2a\x30\x33\x2b\x2f\x30\x29\x2e\x2f\x28\x2e\ \x2f\x2e\x35\x38\x2d\x33\x34\x2b\x30\x31\x23\x28\x26\x22\x25\x25\ \x0c\x0e\x10\x00\x00\x06\x01\x02\x0d\x0a\x0c\x18\x0d\x14\x21\x0c\ \x13\x23\x0a\x12\x20\x0b\x16\x21\x0d\x17\x29\x0c\x1a\x2d\x0a\x19\ \x2b\x0e\x1c\x30\x0a\x1a\x30\x04\x13\x2d\x06\x14\x2d\x17\x29\x42\ \x06\x18\x30\x11\x23\x3d\x0c\x20\x3d\x19\x2a\x45\x13\x24\x39\x2b\ \x44\x62\x1c\x31\x4f\x0a\x1b\x36\x21\x35\x50\x2e\x46\x62\x1e\x36\ \x54\x2c\x44\x65\x23\x3a\x57\x20\x36\x4d\x50\x69\x81\x30\x4e\x67\ \x3b\x56\x6f\x44\x5f\x77\x28\x41\x59\x40\x56\x6b\x2d\x40\x53\x2d\ \x3f\x50\x33\x46\x58\x31\x43\x54\x1e\x2e\x3f\x17\x24\x33\x0f\x19\ \x27\x0e\x17\x25\x0d\x14\x23\x0c\x11\x20\x0c\x0f\x1e\x09\x0f\x1c\ \x0b\x0e\x1b\x09\x0b\x19\x19\x1e\x30\x67\x6f\x86\xa1\xa0\xab\xff\ \xf4\xf5\x75\x6f\x6f\x19\x1a\x22\x21\x23\x2e\x2d\x30\x3c\x38\x3d\ \x4b\x35\x3d\x4e\x2b\x35\x46\x23\x2f\x42\x18\x26\x3c\x1b\x2a\x44\ \x16\x27\x41\x17\x28\x42\x1c\x2a\x47\x19\x2b\x48\x15\x28\x43\x19\ \x2d\x46\x15\x28\x41\x16\x29\x43\x11\x25\x3d\x21\x36\x4c\x27\x3c\ \x51\x1f\x34\x4a\x23\x35\x4d\x28\x3b\x50\x34\x45\x59\x41\x51\x64\ \x55\x65\x75\x88\x99\xa5\xaf\xbd\xcb\x7f\x8e\x9b\x68\x7a\x8a\x6d\ \x83\x97\x63\x7c\x91\x5b\x75\x8b\x57\x72\x85\x51\x6d\x7e\x4c\x68\ \x79\x46\x60\x72\x41\x58\x6a\x41\x57\x67\x46\x59\x68\x4e\x5f\x6b\ \x53\x65\x70\x59\x69\x74\x00\x00\x00\x35\x79\xc7\x36\x78\xc7\x3b\ \x7e\xcd\x2d\x6f\xc0\x2b\x69\xb9\x34\x6e\xb9\x27\x5f\xa7\x35\x6b\ \xa7\x2e\x53\x84\x2d\x4b\x70\x11\x1a\x33\x00\x01\x0c\x03\x03\x0b\ \x05\x04\x0d\x07\x06\x10\x07\x08\x12\x08\x08\x14\x0a\x08\x14\x08\ \x09\x14\x07\x0b\x14\x08\x0d\x17\x0a\x0e\x19\x09\x10\x19\x09\x0f\ \x18\x0c\x11\x1a\x0c\x0e\x18\x0d\x10\x1b\x09\x0d\x18\x09\x0e\x19\ \x0c\x12\x1d\x0b\x10\x1c\x08\x10\x18\x08\x10\x17\x08\x11\x18\x0a\ \x12\x1a\x0a\x11\x1a\x0a\x10\x18\x0c\x12\x18\x0f\x15\x1c\x0b\x12\ \x19\x12\x19\x20\x10\x13\x1b\x11\x15\x1d\x13\x17\x1e\x13\x18\x1d\ \x14\x19\x1e\x1a\x1e\x23\x1d\x22\x26\x1a\x1f\x22\x23\x29\x2a\x24\ \x2a\x2d\x24\x2a\x2d\x28\x2f\x30\x23\x2a\x2b\x25\x2c\x2f\x26\x2b\ \x30\x2a\x2f\x33\x2c\x31\x32\x2c\x31\x32\x28\x2e\x30\x27\x2f\x2f\ \x26\x2b\x2c\x2a\x2f\x2f\x23\x29\x28\x23\x28\x28\x0d\x10\x11\x01\ \x02\x06\x05\x05\x0e\x0a\x0a\x18\x09\x0f\x1c\x0b\x13\x22\x08\x14\ \x21\x07\x14\x20\x11\x1d\x2d\x04\x12\x26\x0a\x1b\x35\x21\x36\x56\ \x1a\x30\x52\x1f\x33\x56\x23\x3b\x5f\x12\x28\x47\x17\x2d\x4b\x15\ \x2b\x4a\x0b\x23\x48\x14\x2b\x4c\x04\x19\x33\x2f\x47\x69\x08\x1b\ \x3b\x0e\x20\x3b\x37\x4d\x6b\x0b\x25\x46\x1b\x36\x59\x1f\x39\x5d\ \x14\x27\x45\x0f\x23\x3c\x2d\x47\x63\x3b\x5a\x78\x25\x44\x5f\x49\ \x68\x81\x56\x71\x8d\x32\x4c\x67\x53\x6e\x82\x33\x4e\x5e\x56\x70\ \x83\x3e\x56\x6a\x26\x3a\x4d\x19\x27\x39\x0f\x1b\x2b\x0c\x16\x24\ \x0b\x14\x22\x09\x11\x1e\x08\x10\x1d\x0a\x11\x1f\x08\x0b\x19\x09\ \x0b\x1a\x13\x18\x2a\x6a\x72\x88\x9f\x9e\xaa\xff\xf4\xf5\x76\x72\ \x72\x14\x16\x1e\x20\x23\x2f\x2e\x34\x41\x37\x3c\x4b\x36\x3d\x4f\ \x28\x32\x44\x1f\x2b\x3f\x1c\x29\x3f\x1a\x29\x43\x15\x27\x41\x1e\ \x2d\x48\x1c\x2b\x47\x15\x27\x41\x15\x29\x42\x18\x2c\x44\x1c\x2e\ \x45\x1c\x2c\x46\x19\x2a\x44\x22\x34\x4e\x29\x3d\x56\x2c\x3f\x5a\ \x24\x37\x51\x23\x37\x4e\x28\x3c\x50\x38\x4b\x5d\x42\x53\x65\x55\ \x68\x7a\x73\x8a\x9a\xb4\xc8\xd9\x17\x22\x32\x82\x9a\xaf\x55\x6f\ \x86\x52\x6d\x82\x61\x7b\x8e\x53\x6d\x7d\x4d\x67\x78\x46\x5e\x72\ \x41\x56\x69\x44\x58\x68\x4b\x5e\x6d\x52\x63\x70\x56\x68\x73\x5a\ \x6d\x75\x00\x00\x00\x35\x77\xc3\x3a\x79\xc9\x35\x77\xc6\x34\x75\ \xc5\x31\x70\xbf\x33\x6f\xba\x2b\x66\xad\x31\x66\xa5\x34\x5a\x8d\ \x2a\x49\x6e\x14\x1f\x39\x01\x01\x0b\x03\x03\x0b\x05\x04\x0d\x06\ \x06\x10\x06\x07\x12\x09\x09\x15\x0a\x09\x15\x07\x08\x13\x09\x0d\ \x17\x06\x0b\x15\x09\x0d\x17\x07\x0e\x17\x09\x0e\x17\x0b\x10\x19\ \x0b\x0f\x18\x0d\x11\x1b\x0a\x0f\x19\x0b\x0f\x19\x0c\x11\x1c\x0b\ \x11\x1c\x0d\x13\x1c\x09\x0e\x17\x0c\x11\x1a\x0c\x11\x1a\x09\x0f\ \x16\x0b\x11\x18\x0e\x14\x1c\x0b\x11\x18\x0b\x12\x19\x11\x17\x1f\ \x15\x18\x20\x14\x17\x1f\x16\x1a\x21\x14\x18\x1d\x16\x1a\x1f\x17\ \x1b\x20\x18\x1d\x20\x1c\x21\x24\x1e\x23\x24\x23\x29\x2d\x1c\x22\ \x26\x21\x29\x29\x27\x2e\x30\x29\x2f\x33\x2b\x2f\x34\x28\x2c\x30\ \x29\x2e\x2f\x30\x36\x38\x2a\x31\x34\x2d\x32\x33\x28\x2d\x2e\x24\ \x29\x2a\x25\x2a\x2a\x1c\x21\x23\x0e\x11\x13\x01\x01\x06\x05\x04\ \x0f\x09\x0b\x1b\x05\x0d\x1e\x02\x0c\x21\x0e\x1d\x33\x07\x19\x2d\ \x13\x22\x3a\x16\x26\x43\x19\x2a\x49\x22\x34\x55\x07\x1b\x3f\x1d\ \x34\x5a\x26\x3f\x63\x0c\x1f\x3d\x05\x1a\x35\x17\x2b\x4c\x23\x3d\ \x62\x17\x2d\x4c\x0e\x21\x3a\x24\x3a\x59\x12\x23\x3f\x12\x22\x3c\ \x1c\x33\x50\x24\x41\x64\x1b\x37\x5b\x1b\x33\x55\x1e\x31\x4d\x1b\ \x30\x49\x35\x51\x6d\x2b\x4a\x6a\x28\x45\x61\x4c\x69\x84\x50\x68\ \x86\x22\x3a\x55\x4b\x65\x7b\x24\x41\x55\x48\x67\x7c\x30\x4c\x62\ \x1b\x31\x48\x22\x32\x49\x1d\x2b\x3e\x13\x21\x32\x0d\x19\x28\x06\ \x10\x1f\x0b\x14\x22\x05\x0d\x1b\x0b\x10\x1e\x08\x0b\x19\x10\x15\ \x27\x6b\x74\x89\x9c\x9c\xa8\xff\xf4\xf5\x77\x75\x76\x14\x17\x1f\ \x22\x25\x32\x2f\x36\x46\x33\x3a\x4a\x33\x3a\x4c\x2b\x34\x47\x23\ \x30\x46\x1a\x28\x41\x1c\x2c\x43\x13\x21\x3d\x18\x26\x43\x16\x25\ \x3f\x17\x28\x42\x13\x26\x3f\x1c\x2f\x48\x17\x28\x42\x19\x28\x42\ \x1b\x2a\x44\x22\x33\x4d\x24\x36\x50\x22\x35\x4f\x22\x37\x4f\x26\ \x3a\x51\x2d\x41\x54\x34\x47\x59\x34\x45\x58\x31\x44\x59\x28\x40\ \x55\x92\xa7\xb9\x15\x1f\x2e\x67\x7e\x93\x5c\x76\x8e\x5e\x79\x8f\ \x69\x83\x96\x59\x72\x83\x4d\x64\x77\x47\x5e\x70\x42\x58\x69\x48\ \x5c\x6a\x4c\x5f\x6b\x52\x64\x6e\x55\x67\x71\x5c\x6f\x77\x00\x00\ \x00\x36\x75\xc0\x3c\x7c\xc7\x33\x75\xc2\x35\x77\xc6\x2f\x70\xbf\ \x30\x6c\xb7\x34\x6d\xb4\x31\x66\xa5\x2b\x52\x84\x25\x45\x68\x13\ \x1f\x36\x01\x02\x0a\x03\x04\x0c\x06\x05\x0e\x06\x06\x10\x0a\x0a\ \x15\x0b\x0b\x17\x0a\x09\x15\x07\x08\x13\x06\x0a\x13\x0c\x11\x1b\ \x08\x0b\x15\x0b\x0d\x17\x09\x0e\x17\x09\x0f\x18\x08\x0f\x18\x0b\ \x11\x1a\x0b\x10\x19\x0a\x0f\x18\x09\x0e\x16\x0c\x12\x1b\x0a\x10\ \x19\x0e\x13\x1d\x10\x14\x20\x0c\x11\x1a\x0d\x13\x1a\x0d\x13\x1a\ \x11\x16\x1f\x10\x15\x1e\x0c\x13\x1b\x14\x1a\x22\x13\x16\x1e\x12\ \x15\x1d\x16\x19\x20\x15\x19\x1e\x12\x16\x1b\x16\x1a\x1f\x16\x1b\ \x1f\x18\x1d\x20\x1b\x20\x21\x24\x2b\x2d\x16\x1d\x20\x24\x2c\x2d\ \x2c\x32\x36\x26\x2c\x32\x28\x2c\x32\x2e\x33\x37\x27\x2d\x30\x36\ \x3c\x40\x2c\x31\x35\x2d\x32\x33\x2c\x31\x32\x21\x26\x27\x23\x28\ \x29\x1c\x21\x24\x0d\x10\x15\x02\x02\x09\x03\x05\x10\x08\x0e\x21\ \x12\x1e\x35\x3c\x4c\x6a\x1b\x2e\x50\x10\x21\x43\x19\x2b\x50\x26\ \x3d\x60\x07\x14\x31\x05\x13\x2c\x08\x1c\x39\x21\x38\x5f\x2b\x44\ \x69\x2f\x44\x62\x07\x1b\x37\x20\x3a\x5c\x06\x1d\x47\x14\x29\x49\ \x13\x29\x43\x1b\x35\x55\x13\x2a\x49\x0d\x1d\x34\x12\x26\x42\x25\ \x40\x63\x18\x33\x55\x12\x28\x45\x15\x2c\x44\x19\x30\x46\x38\x53\ \x6d\x1b\x36\x52\x2f\x48\x60\x37\x54\x70\x3b\x55\x6d\x1d\x36\x4d\ \x44\x5f\x78\x33\x50\x6a\x4f\x6d\x84\x26\x41\x5b\x2e\x45\x60\x14\ \x26\x40\x10\x1f\x34\x0c\x1b\x2f\x0a\x18\x2a\x16\x21\x33\x11\x1b\ \x2c\x06\x10\x1f\x0b\x11\x1f\x05\x08\x16\x08\x0d\x1f\x6c\x74\x87\ \x93\x94\xa0\xff\xf6\xf7\x7a\x77\x77\x15\x18\x20\x20\x25\x32\x31\ \x39\x4a\x30\x37\x49\x34\x3b\x4e\x27\x30\x43\x28\x33\x4d\x20\x2e\ \x48\x18\x27\x41\x1c\x2b\x45\x1f\x2c\x48\x1d\x29\x45\x10\x20\x3b\ \x0f\x20\x3b\x17\x28\x43\x14\x25\x40\x17\x28\x43\x1c\x2b\x45\x24\ \x34\x4b\x28\x38\x4e\x25\x37\x4c\x21\x35\x4a\x22\x35\x49\x29\x3b\ \x4d\x29\x3a\x4b\x39\x49\x59\x24\x35\x46\x2e\x41\x55\x8d\x9e\xaf\ \x18\x20\x2b\x6d\x84\x96\x5e\x78\x8e\x5c\x77\x8d\x58\x73\x88\x6a\ \x83\x96\x55\x6c\x7c\x45\x5b\x6b\x45\x5a\x69\x49\x5d\x68\x4d\x62\ \x69\x52\x65\x6d\x56\x69\x71\x5a\x6d\x75\x00\x00\x00\x3b\x7a\xc5\ \x3c\x7f\xca\x3a\x79\xc8\x2f\x72\xc4\x2a\x6b\xbe\x31\x6e\xbd\x2f\ \x67\xaf\x2f\x65\xa3\x27\x53\x88\x26\x44\x6b\x11\x1d\x34\x01\x00\ \x0c\x04\x04\x0a\x06\x06\x0c\x06\x06\x10\x08\x09\x13\x08\x08\x14\ \x07\x07\x12\x09\x09\x15\x08\x0a\x15\x0b\x0e\x1a\x07\x0a\x15\x0c\ \x0e\x18\x0a\x0e\x13\x0c\x10\x16\x09\x10\x16\x0a\x10\x19\x08\x10\ \x1a\x0b\x10\x19\x0f\x12\x17\x0b\x11\x19\x09\x0f\x1c\x09\x0d\x18\ \x0a\x0c\x17\x0b\x10\x19\x0c\x12\x1c\x0b\x12\x18\x0c\x11\x19\x0d\ \x14\x22\x10\x17\x21\x10\x17\x1c\x0f\x17\x1f\x16\x1b\x1f\x12\x17\ \x1d\x14\x18\x21\x13\x17\x20\x1b\x1f\x23\x17\x1d\x20\x17\x20\x24\ \x20\x25\x27\x1a\x22\x25\x1d\x24\x26\x1d\x23\x23\x23\x28\x29\x25\ \x2a\x2c\x2a\x2d\x32\x2b\x30\x33\x2e\x33\x34\x2f\x33\x34\x2d\x2f\ \x32\x2c\x30\x32\x2b\x30\x30\x20\x26\x26\x26\x2b\x2c\x1d\x22\x25\ \x0f\x12\x16\x02\x01\x09\x04\x05\x12\x0f\x19\x31\x09\x16\x38\x33\ \x46\x64\x0d\x1a\x3c\x1a\x31\x59\x1a\x2e\x53\x2d\x44\x6a\x04\x13\ \x32\x0b\x18\x34\x07\x1b\x3b\x13\x2a\x51\x2a\x42\x6b\x0a\x1e\x42\ \x21\x36\x58\x32\x4a\x6e\x0d\x23\x46\x20\x36\x53\x1a\x31\x4e\x16\ \x2e\x4c\x1b\x30\x4e\x0a\x1d\x35\x14\x28\x40\x13\x28\x45\x14\x2a\ \x45\x1b\x30\x49\x1a\x2f\x48\x18\x2f\x47\x28\x42\x58\x19\x31\x49\ \x2d\x43\x5a\x4e\x6a\x82\x36\x51\x66\x56\x6f\x85\x5a\x74\x8c\x29\ \x45\x5e\x4a\x68\x82\x1c\x38\x54\x20\x37\x55\x1a\x2e\x4a\x23\x32\ \x4a\x0f\x1c\x32\x12\x20\x35\x04\x10\x23\x10\x19\x2a\x09\x11\x21\ \x0f\x14\x25\x06\x07\x17\x08\x0a\x1d\x6b\x73\x8b\x8e\x8d\x9b\xff\ \xf6\xf6\x7b\x78\x78\x14\x15\x1e\x21\x24\x33\x2f\x35\x48\x38\x3e\ \x51\x34\x3c\x4f\x2f\x38\x4d\x27\x33\x4a\x1f\x2b\x45\x1a\x29\x42\ \x18\x27\x41\x1b\x2a\x44\x17\x27\x3f\x16\x26\x3d\x14\x24\x3e\x1c\ \x2b\x46\x16\x27\x44\x12\x24\x42\x1c\x2d\x47\x1f\x31\x46\x23\x34\ \x49\x24\x35\x4a\x1f\x33\x46\x1f\x31\x42\x24\x35\x45\x21\x31\x42\ \x2d\x3b\x4c\x22\x33\x44\x47\x5d\x73\x75\x89\x9d\x59\x66\x75\x74\ \x87\x98\x5f\x77\x8a\x5b\x76\x8b\x58\x72\x89\x56\x6f\x86\x71\x89\ \x9a\x51\x66\x75\x48\x5c\x67\x4b\x5f\x67\x4b\x5e\x67\x4e\x61\x68\ \x53\x66\x6e\x58\x6b\x75\x00\x00\x00\x38\x78\xc2\x34\x78\xc3\x37\ \x77\xc8\x28\x6a\xbd\x2c\x6c\xc2\x2c\x6a\xbc\x2a\x65\xad\x2a\x5f\ \xa0\x2c\x58\x91\x2c\x4a\x72\x11\x1d\x34\x02\x02\x0c\x05\x04\x0a\ \x06\x05\x0d\x06\x06\x10\x08\x09\x13\x08\x08\x14\x07\x0a\x14\x08\ \x0a\x14\x08\x0c\x16\x0b\x10\x1a\x07\x0b\x15\x09\x0d\x16\x08\x0e\ \x16\x09\x10\x18\x0a\x11\x18\x0f\x13\x1a\x0c\x12\x18\x0c\x11\x18\ \x0d\x10\x17\x09\x0f\x1b\x0c\x11\x1b\x0f\x12\x1b\x0e\x11\x1b\x0f\ \x12\x1b\x13\x17\x1e\x0f\x14\x18\x0d\x14\x20\x13\x16\x1e\x17\x19\ \x1d\x10\x18\x21\x12\x15\x1d\x18\x1b\x21\x19\x1c\x23\x18\x1a\x24\ \x14\x16\x1f\x18\x1e\x22\x16\x1c\x1f\x17\x1e\x23\x1a\x20\x22\x1d\ \x23\x26\x1e\x25\x2a\x22\x2a\x2f\x20\x27\x2a\x27\x2b\x2d\x2a\x2f\ \x32\x2c\x33\x34\x29\x31\x30\x31\x38\x38\x27\x2d\x2e\x31\x36\x38\ \x26\x2c\x2c\x22\x28\x28\x25\x2a\x2b\x19\x1d\x1e\x0c\x0e\x11\x02\ \x01\x09\x03\x03\x10\x00\x08\x1f\x36\x4c\x74\x12\x23\x47\x19\x2c\ \x4f\x16\x2e\x55\x15\x2a\x4d\x1c\x2e\x50\x1c\x2d\x4c\x24\x36\x54\ \x1e\x32\x50\x19\x2e\x4f\x1a\x2c\x4b\x13\x23\x3f\x0d\x1e\x39\x08\ \x19\x34\x0e\x21\x3b\x0e\x1f\x3a\x13\x25\x42\x0c\x1e\x3a\x13\x24\ \x3f\x1a\x2b\x41\x1a\x2c\x41\x16\x26\x3f\x16\x28\x40\x16\x2a\x40\ \x20\x34\x4a\x1b\x30\x46\x25\x3b\x51\x1d\x32\x48\x2c\x41\x56\x1f\ \x36\x4a\x26\x3c\x50\x2d\x42\x56\x38\x4d\x61\x3d\x53\x68\x56\x6f\ \x87\x54\x6c\x85\x22\x37\x51\x2b\x3d\x57\x15\x23\x39\x0a\x19\x2b\ \x0c\x1a\x2e\x10\x1d\x2f\x0e\x17\x29\x0f\x17\x29\x08\x0e\x21\x0a\ \x0c\x1a\x05\x08\x1a\x6a\x73\x8b\x94\x93\xa0\xfe\xf5\xf6\x7e\x7b\ \x7b\x16\x18\x21\x24\x28\x37\x2d\x33\x47\x3c\x42\x55\x37\x3e\x51\ \x2f\x37\x4d\x25\x30\x47\x1e\x2b\x43\x20\x2e\x48\x19\x28\x42\x1b\ \x2a\x44\x16\x25\x3f\x17\x26\x3f\x17\x26\x40\x1a\x29\x45\x14\x25\ \x42\x20\x33\x4e\x23\x35\x4d\x23\x34\x49\x2b\x3c\x4f\x29\x39\x4e\ \x25\x35\x48\x1e\x2e\x3f\x1b\x2b\x3a\x1b\x29\x39\x22\x30\x3f\x28\ \x38\x48\x44\x57\x6a\x2a\x3d\x4f\x5b\x69\x79\x76\x89\x98\x65\x7d\ \x8e\x60\x7b\x8e\x58\x73\x88\x56\x6f\x84\x5f\x77\x88\x57\x6b\x7a\ \x4a\x5d\x69\x49\x5b\x66\x4b\x5e\x68\x4c\x5e\x65\x51\x64\x6c\x57\ \x69\x72\x00\x00\x00\x3a\x7a\xc4\x37\x7a\xc4\x38\x7a\xca\x26\x67\ \xba\x24\x64\xbc\x27\x66\xb9\x2b\x66\xb2\x26\x5e\xa3\x2b\x5a\x96\ \x27\x48\x72\x0b\x1a\x30\x00\x03\x0a\x05\x05\x0a\x07\x06\x0e\x08\ \x08\x10\x07\x08\x13\x08\x08\x14\x09\x09\x14\x08\x0a\x13\x09\x0c\ \x14\x0b\x0e\x17\x09\x0a\x15\x0a\x0e\x16\x0a\x0f\x18\x09\x10\x19\ \x08\x0f\x16\x0e\x13\x1b\x06\x0e\x19\x05\x0d\x18\x0b\x10\x17\x06\ \x0e\x18\x09\x10\x1e\x07\x10\x1f\x06\x12\x23\x07\x11\x21\x07\x11\ \x1e\x05\x11\x1f\x09\x12\x1f\x0d\x13\x1c\x11\x18\x23\x0b\x14\x1f\ \x18\x1c\x24\x10\x1a\x27\x0e\x16\x21\x14\x18\x1f\x18\x1d\x24\x13\ \x1d\x25\x14\x1d\x25\x18\x1c\x20\x1f\x24\x29\x24\x27\x2c\x1d\x22\ \x28\x1f\x26\x2f\x1e\x23\x29\x27\x2a\x2b\x25\x28\x2b\x2b\x30\x32\ \x2d\x32\x33\x31\x35\x37\x2f\x33\x37\x34\x39\x3b\x1f\x25\x25\x28\ \x2d\x2d\x24\x28\x29\x1a\x1c\x1f\x0b\x0e\x12\x02\x02\x0b\x05\x04\ \x0f\x02\x0b\x1e\x28\x3f\x63\x02\x0f\x32\x24\x3b\x59\x06\x16\x36\ \x2f\x43\x5d\x03\x13\x2c\x05\x15\x30\x02\x15\x30\x07\x18\x31\x0a\ \x18\x30\x0c\x1a\x31\x15\x22\x38\x16\x23\x39\x12\x20\x36\x13\x21\ \x37\x16\x23\x3a\x1b\x29\x41\x15\x24\x3b\x17\x25\x3c\x1b\x29\x3d\ \x1d\x2c\x40\x19\x2a\x3f\x21\x34\x49\x20\x34\x49\x23\x35\x4b\x1c\ \x2e\x45\x2d\x40\x55\x27\x3a\x4f\x2b\x3c\x51\x2d\x3f\x52\x38\x49\ \x5b\x33\x45\x56\x3b\x4b\x5c\x3a\x4a\x5b\x35\x47\x58\x35\x48\x5a\ \x24\x36\x4a\x18\x27\x3a\x13\x23\x33\x12\x22\x33\x10\x1e\x30\x11\ \x1c\x2e\x0d\x17\x29\x09\x13\x25\x0b\x13\x25\x0c\x0f\x1e\x02\x06\ \x15\x6d\x74\x89\x9c\x9b\xa9\xfc\xf4\xf5\x7f\x7b\x7c\x17\x18\x23\ \x27\x2b\x3a\x34\x38\x4b\x34\x3a\x4b\x2f\x35\x49\x33\x3c\x50\x2b\ \x37\x4e\x1c\x27\x40\x16\x25\x3f\x19\x28\x42\x17\x26\x40\x1b\x29\ \x45\x1a\x28\x45\x16\x25\x3f\x21\x30\x4a\x1f\x31\x4c\x2e\x3f\x59\ \x22\x37\x4d\x23\x37\x4b\x31\x44\x56\x2b\x3c\x50\x26\x33\x49\x20\ \x2e\x40\x1e\x2b\x3a\x27\x34\x40\x45\x54\x60\x52\x61\x6f\x67\x74\ \x85\x19\x28\x39\x45\x55\x65\x73\x88\x96\x71\x89\x9a\x5c\x77\x89\ \x57\x72\x84\x50\x6a\x7b\x4d\x63\x74\x4c\x61\x71\x77\x8b\x98\x47\ \x59\x65\x49\x5a\x65\x4d\x5f\x66\x4f\x62\x69\x54\x67\x6e\x00\x00\ \x00\x2b\x66\xb0\x39\x77\xbf\x3b\x7e\xcc\x26\x68\xb9\x27\x67\xbe\ \x23\x62\xb7\x26\x62\xaf\x2d\x65\xab\x32\x61\x9f\x27\x47\x73\x0b\ \x19\x30\x01\x01\x0a\x05\x03\x0b\x06\x05\x0e\x08\x08\x12\x07\x07\ \x13\x07\x07\x14\x08\x07\x13\x09\x09\x14\x07\x0a\x15\x06\x0a\x18\ \x02\x08\x18\x01\x06\x13\x07\x0d\x14\x0a\x10\x18\x02\x0b\x18\x18\ \x25\x34\x30\x40\x53\x18\x27\x3b\x02\x0a\x19\x05\x10\x20\x2f\x40\ \x56\x13\x21\x38\x12\x21\x39\x2a\x3b\x53\x12\x23\x3c\x2b\x44\x63\ \x02\x0d\x1e\x1c\x2d\x45\x34\x49\x62\x10\x19\x21\x1f\x2c\x35\x4c\ \x64\x79\x2e\x3f\x4d\x11\x1b\x22\x4a\x57\x5f\x45\x56\x65\x3d\x4b\ \x59\x1b\x21\x26\x1d\x23\x2a\x0c\x17\x20\x0a\x15\x1e\x1e\x26\x2f\ \x18\x21\x26\x1b\x24\x27\x27\x2c\x34\x2f\x33\x38\x2b\x2f\x33\x2e\ \x31\x35\x2a\x30\x33\x23\x28\x2a\x1f\x24\x24\x23\x27\x27\x20\x24\ \x25\x18\x1a\x1d\x08\x0b\x10\x02\x01\x0b\x06\x05\x0e\x04\x0b\x1b\ \x18\x27\x3d\x04\x0d\x24\x06\x14\x27\x07\x12\x24\x0b\x18\x2a\x07\ \x15\x27\x09\x17\x2c\x09\x19\x2e\x0b\x19\x2f\x0f\x1d\x31\x0d\x1e\ \x33\x13\x22\x38\x11\x20\x38\x0d\x1d\x37\x14\x26\x3d\x15\x25\x3d\ \x15\x24\x3e\x13\x21\x3b\x15\x25\x3c\x18\x2a\x41\x14\x25\x3c\x19\ \x2c\x42\x21\x35\x4d\x1e\x32\x4b\x1e\x30\x4a\x20\x35\x4c\x23\x3a\ \x50\x26\x3b\x50\x23\x36\x4c\x31\x44\x58\x32\x43\x56\x38\x49\x5b\ \x32\x43\x54\x3b\x4b\x5c\x3b\x4a\x5c\x3f\x50\x63\x2a\x3b\x4e\x1d\ \x2d\x3e\x17\x26\x37\x0c\x1b\x2b\x0e\x18\x29\x0a\x13\x24\x0a\x11\ \x24\x0a\x12\x23\x0e\x16\x27\x0b\x0f\x1b\x00\x03\x11\x6b\x72\x86\ \x9b\x9a\xa8\xfd\xf4\xf5\x82\x7e\x7f\x17\x18\x22\x28\x2b\x3b\x39\ \x3d\x4f\x43\x48\x5a\x36\x3d\x4f\x2a\x32\x46\x23\x2d\x45\x1f\x2c\ \x45\x1d\x2b\x46\x1e\x2d\x47\x1a\x29\x43\x1e\x2c\x49\x17\x25\x42\ \x13\x23\x3b\x24\x34\x4c\x12\x24\x3d\x39\x4a\x61\x2c\x42\x57\x2c\ \x43\x58\x2b\x3f\x52\x2c\x3d\x50\x27\x37\x4c\x30\x3f\x51\x1a\x28\ \x39\x32\x42\x4f\x89\x99\xa5\x51\x61\x6d\x4c\x59\x69\x35\x45\x57\ \x89\x9f\xae\x72\x89\x99\x74\x8e\x9f\x5a\x76\x87\x54\x6f\x80\x50\ \x69\x79\x4a\x61\x71\x45\x5c\x6c\x53\x68\x78\x6b\x7e\x8c\x47\x58\ \x64\x4a\x5c\x64\x4c\x5e\x64\x50\x63\x69\x00\x00\x00\x25\x59\xa4\ \x36\x6e\xb8\x35\x78\xc5\x2c\x6e\xbe\x2b\x6d\xc1\x29\x69\xbd\x27\ \x66\xb3\x30\x68\xae\x30\x5e\x9b\x22\x40\x6d\x0b\x17\x30\x02\x00\ \x0b\x05\x03\x0c\x07\x05\x0f\x07\x07\x12\x05\x05\x11\x05\x05\x13\ \x02\x06\x15\x06\x0e\x1a\x0f\x1a\x27\x06\x14\x27\x28\x35\x4f\x1d\ \x2c\x45\x03\x0b\x19\x03\x0e\x19\x22\x37\x4f\x11\x1f\x35\x00\x0b\ \x1f\x2b\x3c\x57\x10\x25\x41\x27\x41\x61\x10\x22\x3b\x06\x11\x21\ \x09\x0f\x1b\x14\x21\x30\x09\x1b\x33\x15\x2e\x4f\x0e\x21\x3d\x2d\ \x42\x5e\x03\x11\x29\x11\x18\x20\x12\x23\x2e\x4c\x68\x84\x08\x1a\ \x2c\x14\x1b\x22\x0e\x1c\x28\x60\x7c\x92\x0a\x1d\x32\x18\x20\x26\ \x21\x28\x2f\x64\x7d\x92\x51\x69\x7b\x17\x28\x33\x58\x6a\x72\x41\ \x59\x63\x38\x47\x53\x23\x2f\x38\x1e\x28\x2d\x18\x22\x25\x1e\x27\ \x2a\x21\x29\x2a\x23\x29\x29\x23\x28\x27\x20\x24\x25\x1c\x1d\x20\ \x0d\x0f\x14\x01\x01\x09\x07\x05\x0e\x07\x0d\x1b\x07\x0f\x1e\x05\ \x12\x21\x0e\x14\x23\x0e\x1b\x27\x0a\x18\x29\x09\x17\x27\x0b\x17\ \x27\x09\x15\x25\x09\x17\x2b\x0b\x1b\x31\x06\x17\x29\x0e\x1d\x32\ \x13\x21\x3a\x0e\x1e\x35\x14\x27\x3f\x0e\x23\x3d\x14\x26\x42\x12\ \x24\x40\x20\x34\x4e\x14\x2b\x46\x14\x2b\x46\x11\x28\x42\x1c\x31\ \x4c\x27\x3a\x58\x23\x38\x53\x1e\x35\x4e\x25\x3e\x56\x28\x40\x58\ \x24\x3b\x52\x29\x3f\x56\x3b\x51\x67\x36\x4a\x60\x30\x45\x58\x43\ \x58\x6b\x3d\x52\x67\x37\x4c\x62\x2c\x40\x54\x21\x33\x46\x14\x23\ \x35\x12\x1e\x2f\x11\x19\x28\x0b\x12\x21\x0c\x13\x22\x0b\x0f\x1e\ \x08\x0e\x1c\x0a\x0d\x19\x00\x01\x11\x68\x6e\x85\x90\x8f\x9d\xfe\ \xf5\xf6\x82\x7f\x7f\x1a\x1b\x24\x34\x38\x46\x3b\x3f\x51\x3d\x41\ \x53\x3a\x41\x52\x2e\x36\x4a\x21\x2c\x43\x21\x2d\x46\x1b\x2a\x44\ \x17\x26\x40\x1a\x29\x43\x1b\x29\x44\x13\x22\x3b\x0e\x1e\x34\x2d\ \x3e\x55\x2e\x41\x57\x38\x48\x60\x41\x55\x6d\x49\x5e\x77\x34\x48\ \x5d\x2a\x3d\x50\x2b\x40\x52\x3a\x4c\x61\x35\x45\x59\x47\x59\x6a\ \x69\x79\x86\x50\x61\x6d\x3f\x53\x61\x77\x8d\x9f\x71\x88\x9b\x63\ \x7a\x8d\x6a\x84\x97\x5f\x7a\x8e\x55\x70\x81\x4f\x68\x78\x4b\x62\ \x72\x44\x5b\x6c\x40\x56\x67\x81\x94\xa4\x66\x77\x84\x44\x55\x5f\ \x47\x5a\x60\x4d\x60\x65\x00\x00\x00\x2e\x67\xb4\x35\x6e\xb9\x2c\ \x6b\xba\x2b\x6c\xbe\x25\x65\xb9\x28\x67\xbb\x27\x67\xb7\x22\x59\ \xa3\x31\x5f\xa0\x28\x49\x78\x0c\x18\x2e\x03\x01\x0c\x05\x05\x0b\ \x04\x06\x0f\x06\x06\x12\x02\x04\x11\x10\x1c\x30\x1c\x27\x3a\x01\ \x08\x16\x2e\x46\x60\x01\x06\x1f\x2f\x43\x5d\x01\x0b\x2a\x04\x11\ \x26\x08\x13\x2a\x2c\x4e\x76\x02\x0c\x1d\x08\x11\x18\x0c\x22\x39\ \x26\x41\x6d\x31\x4d\x6f\x01\x0d\x22\x0f\x15\x1d\x0d\x10\x1c\x03\ \x0e\x1b\x0a\x1c\x35\x28\x41\x64\x2b\x43\x61\x13\x2b\x44\x08\x11\ \x23\x0f\x13\x18\x12\x1f\x2c\x3f\x5d\x7c\x11\x23\x35\x0f\x17\x1f\ \x15\x1e\x2c\x56\x74\x8b\x10\x21\x3b\x16\x27\x31\x18\x20\x28\x3d\ \x57\x69\x2c\x4b\x60\x1d\x28\x32\x33\x49\x59\x4c\x6b\x83\x25\x3c\ \x49\x8a\xa1\xae\x2a\x2f\x3b\x61\x7d\x85\x30\x40\x4e\x1a\x23\x27\ \x22\x2a\x29\x21\x26\x25\x1c\x21\x21\x16\x1c\x1d\x0b\x0d\x0f\x01\ \x01\x07\x05\x05\x0f\x09\x0e\x19\x0a\x10\x1f\x0a\x13\x21\x0c\x15\ \x23\x0a\x16\x24\x0d\x1b\x2a\x07\x1a\x29\x0b\x16\x25\x07\x16\x33\ \x0a\x18\x30\x09\x1c\x37\x15\x2e\x50\x24\x3b\x5b\x0b\x1d\x35\x0f\ \x20\x38\x20\x36\x54\x25\x43\x69\x0e\x26\x4b\x16\x24\x3d\x16\x2d\ \x4a\x2a\x47\x6a\x0c\x26\x47\x24\x40\x5c\x14\x2f\x4e\x10\x27\x44\ \x24\x3d\x5c\x11\x25\x40\x13\x26\x42\x33\x49\x66\x21\x36\x50\x36\ \x4d\x67\x44\x65\x82\x2e\x48\x60\x38\x4c\x61\x37\x52\x6c\x3d\x59\ \x75\x30\x49\x64\x23\x38\x50\x26\x37\x4b\x19\x26\x38\x11\x1c\x2c\ \x0e\x19\x25\x0b\x13\x20\x0b\x12\x21\x0a\x0f\x1b\x07\x0c\x1a\x0b\ \x0c\x1a\x01\x02\x12\x66\x6b\x82\x8e\x8c\x9d\xfe\xf4\xf9\x84\x80\ \x82\x1e\x1f\x28\x30\x33\x40\x41\x43\x52\x41\x43\x55\x43\x45\x5b\ \x28\x2c\x45\x22\x2d\x45\x25\x34\x4c\x17\x26\x40\x1b\x29\x44\x1a\ \x28\x40\x23\x32\x4c\x35\x43\x5b\x2c\x3a\x4d\x59\x68\x7c\x47\x5a\ \x6f\x4d\x5e\x73\x55\x67\x7b\x43\x57\x6a\x40\x54\x6a\x29\x3d\x53\ \x2b\x39\x4d\x20\x2f\x40\x16\x26\x33\x27\x37\x46\x37\x49\x5a\x48\ \x5c\x6d\x61\x76\x8a\x7a\x8e\xa3\x1b\x2a\x3c\x7e\x94\xa6\x66\x7e\ \x91\x5c\x77\x8b\x56\x70\x81\x51\x68\x79\x48\x61\x71\x45\x59\x6c\ \x43\x55\x67\x4f\x5f\x70\x5d\x6d\x7b\x4e\x5f\x6a\x46\x56\x5c\x49\ \x5a\x5e\x00\x00\x00\x2d\x6a\xb5\x36\x73\xbe\x33\x73\xc3\x28\x6a\ \xbd\x1c\x5c\xb1\x1a\x57\xab\x22\x5b\xac\x26\x5b\xa8\x22\x52\x97\ \x26\x48\x79\x09\x17\x2c\x01\x02\x0a\x04\x04\x0a\x05\x07\x10\x06\ \x06\x10\x04\x06\x12\x0e\x15\x27\x04\x0a\x20\x06\x10\x29\x22\x30\ \x4a\x05\x08\x1b\x28\x42\x5f\x0f\x22\x43\x37\x4e\x6d\x0c\x19\x3c\ \x2f\x4a\x6f\x07\x0d\x21\x07\x12\x1c\x14\x29\x44\x1b\x2f\x52\x37\ \x51\x73\x04\x11\x2d\x06\x13\x22\x00\x07\x1b\x18\x24\x35\x0a\x1c\ \x36\x15\x2d\x4d\x00\x03\x21\x38\x55\x6d\x04\x12\x23\x08\x10\x1e\ \x38\x50\x6c\x0a\x22\x3d\x3a\x4d\x61\x02\x0b\x14\x13\x1c\x25\x51\ \x74\x8e\x05\x16\x30\x63\x7f\x8f\x18\x2c\x3e\x33\x49\x5f\x5a\x7e\ \x95\x67\x7e\x89\x4b\x68\x79\x41\x59\x72\x20\x29\x34\x48\x5b\x65\ \x10\x20\x2e\x56\x7c\x8a\x44\x5b\x6a\x2b\x32\x36\x24\x2b\x2b\x1d\ \x23\x22\x1f\x24\x24\x14\x19\x1a\x0c\x0f\x10\x02\x02\x07\x03\x03\ \x0d\x05\x0a\x15\x0b\x13\x20\x0d\x16\x23\x0c\x15\x24\x0a\x15\x26\ \x0b\x18\x29\x08\x14\x27\x15\x2a\x42\x32\x55\x80\x0a\x21\x43\x08\ \x17\x36\x20\x3b\x60\x11\x27\x48\x0a\x1b\x31\x18\x28\x3e\x14\x2a\ \x49\x1f\x3d\x63\x05\x1d\x40\x1b\x29\x42\x11\x23\x3e\x21\x3a\x5b\ \x08\x23\x45\x1b\x38\x5a\x1e\x37\x59\x0f\x26\x43\x1f\x38\x56\x16\ \x29\x43\x17\x2a\x46\x23\x39\x55\x1f\x36\x4f\x38\x54\x71\x52\x74\ \x92\x2e\x48\x60\x32\x45\x5c\x42\x5b\x74\x56\x70\x8a\x30\x49\x63\ \x39\x50\x69\x28\x3d\x53\x1a\x28\x3b\x0f\x1c\x2c\x0f\x1a\x28\x0b\ \x14\x22\x09\x11\x1f\x0c\x11\x1e\x07\x0d\x1a\x09\x0b\x18\x00\x00\ \x10\x64\x6a\x7f\x8e\x8d\x9b\xfc\xf4\xf6\x85\x82\x82\x1d\x1f\x27\ \x3b\x3f\x4a\x45\x4a\x57\x40\x46\x56\x37\x3d\x50\x31\x3a\x50\x2e\ \x38\x50\x28\x34\x4f\x21\x2f\x4a\x1b\x2a\x46\x2d\x3b\x57\x67\x7b\ \x8f\x51\x66\x76\x70\x84\x95\x80\x97\xa9\x77\x8f\xa7\x9f\xb6\xd2\ \x7e\x97\xaf\x90\xa9\xbd\x3c\x56\x67\x89\xa1\xb4\x8b\x9f\xb5\x74\ \x88\x99\x7d\x8f\xa0\x58\x6a\x7c\x44\x59\x6f\x50\x68\x7f\x50\x68\ \x7f\x56\x6a\x7d\x30\x39\x43\x8e\xa5\xb5\x63\x7d\x90\x5d\x78\x8c\ \x57\x71\x83\x4f\x68\x79\x47\x5f\x6f\x45\x5a\x6a\x3f\x50\x61\x3d\ \x4e\x5c\x3f\x50\x5b\x45\x54\x5c\x43\x53\x57\x44\x53\x58\x00\x00\ \x00\x30\x70\xb7\x31\x70\xb9\x34\x76\xc4\x2d\x6d\xc0\x1c\x5a\xb2\ \x16\x50\xa6\x17\x4c\x9d\x21\x52\xa0\x1f\x4e\x96\x26\x49\x7c\x0b\ \x1a\x30\x00\x01\x08\x04\x05\x0a\x04\x05\x0f\x06\x06\x10\x06\x08\ \x11\x03\x0a\x1b\x22\x36\x53\x25\x38\x60\x03\x0d\x25\x07\x09\x1c\ \x2d\x4a\x6c\x00\x00\x21\x1b\x2f\x54\x0e\x20\x43\x28\x3e\x5c\x13\ \x22\x37\x16\x27\x3a\x27\x40\x5c\x03\x0e\x22\x0a\x1a\x2f\x26\x38\ \x53\x17\x27\x39\x25\x32\x4a\x15\x24\x36\x20\x31\x48\x1f\x2e\x49\ \x21\x2e\x44\x1a\x2e\x41\x09\x13\x25\x31\x42\x52\x3c\x56\x6e\x12\ \x20\x2f\x39\x4b\x61\x3a\x4a\x5c\x28\x34\x3c\x58\x78\x92\x0d\x1e\ \x34\x39\x57\x6b\x2c\x43\x5d\x25\x3f\x55\x16\x36\x4c\x0e\x1d\x2c\ \x3f\x59\x6c\x3c\x5a\x71\x1f\x26\x2d\x41\x54\x5b\x41\x5c\x6c\x76\ \x9a\xae\x1d\x2d\x3c\x27\x2d\x30\x22\x28\x28\x20\x25\x25\x21\x26\ \x27\x15\x1a\x1b\x0c\x0e\x0f\x01\x01\x06\x05\x06\x10\x07\x0b\x17\ \x09\x11\x1c\x0a\x14\x1f\x0d\x16\x26\x09\x13\x25\x0e\x18\x29\x0c\ \x18\x2b\x03\x14\x30\x2d\x4d\x7f\x00\x14\x38\x03\x15\x33\x15\x30\ \x58\x0a\x1e\x40\x10\x1f\x36\x11\x21\x39\x0d\x25\x45\x21\x3d\x61\ \x16\x2f\x4f\x13\x24\x3c\x1d\x2b\x43\x20\x37\x55\x14\x32\x56\x12\ \x2e\x53\x17\x30\x50\x0f\x25\x44\x18\x31\x50\x1c\x30\x49\x1f\x31\ \x4a\x1f\x36\x52\x29\x43\x5d\x43\x63\x81\x25\x46\x60\x35\x4e\x68\ \x46\x59\x70\x3e\x54\x6a\x3d\x55\x6d\x33\x4d\x68\x2e\x48\x63\x2f\ \x47\x5f\x18\x29\x3d\x12\x20\x30\x0e\x18\x29\x0c\x15\x24\x0a\x11\ \x20\x0c\x11\x1d\x08\x0e\x1c\x0c\x0d\x1a\x00\x01\x0f\x60\x65\x79\ \x96\x96\xa4\xfc\xf3\xf5\x88\x84\x85\x29\x29\x31\x41\x44\x4e\x55\ \x58\x65\x46\x49\x5a\x3e\x44\x58\x27\x32\x48\x48\x55\x6b\x4d\x5c\ \x72\x6c\x7e\x97\x6c\x82\x9b\x7f\x95\xad\x79\x8e\xa4\x91\xa5\xbb\ \x92\xa8\xbf\xa0\xb6\xd3\x82\x99\xbc\x74\x8b\xb2\x5d\x75\x97\x6b\ \x83\x9e\x81\x99\xaf\x77\x90\xa4\x6e\x8b\x9e\x83\x9d\xaf\x82\x99\ \xaa\x4e\x61\x73\x23\x34\x46\x24\x37\x4c\x3d\x54\x6e\x72\x8a\xa1\ \x59\x70\x80\x80\x97\xa8\x67\x81\x93\x5d\x77\x8b\x56\x6f\x81\x4e\ \x67\x77\x49\x60\x6f\x44\x59\x67\x40\x51\x5e\x3b\x4c\x57\x37\x48\ \x50\x3a\x4a\x4e\x3a\x49\x4c\x3d\x4a\x50\x00\x00\x00\x31\x6f\xb4\ \x32\x6c\xb2\x27\x63\xaf\x2d\x6a\xb9\x21\x5e\xb3\x1c\x54\xa9\x16\ \x49\x98\x26\x58\xa4\x19\x48\x92\x2a\x4b\x82\x11\x1e\x38\x00\x01\ \x08\x05\x05\x0b\x05\x07\x10\x04\x06\x0e\x09\x09\x11\x03\x06\x14\ \x28\x3a\x56\x1c\x32\x59\x00\x03\x16\x09\x0e\x24\x30\x47\x66\x14\ \x27\x40\x2f\x41\x5e\x02\x0f\x25\x02\x0b\x1d\x14\x20\x35\x15\x20\ \x33\x00\x0b\x20\x0a\x0f\x19\x0a\x0f\x19\x02\x0d\x1f\x02\x0d\x18\ \x02\x09\x1b\x04\x0f\x1b\x06\x0e\x1e\x0b\x12\x22\x04\x11\x1c\x07\ \x14\x20\x12\x12\x20\x0a\x1a\x23\x08\x14\x21\x0f\x18\x1f\x08\x13\ \x22\x0e\x1c\x2d\x16\x25\x2d\x1c\x2d\x3b\x40\x49\x56\x2b\x3e\x4e\ \x1f\x2d\x3e\x61\x79\x86\x5a\x76\x88\x1d\x26\x2f\x50\x64\x73\x3f\ \x5c\x73\x11\x1d\x23\x2e\x3d\x44\x3a\x54\x67\x4d\x69\x7c\x28\x2e\ \x38\x2a\x2f\x2f\x1c\x21\x22\x1f\x24\x25\x18\x1c\x1d\x16\x1a\x1b\ \x0b\x0c\x0f\x01\x01\x07\x06\x06\x10\x09\x0d\x19\x08\x11\x1c\x0a\ \x13\x20\x0f\x17\x29\x08\x12\x24\x09\x14\x22\x0c\x1a\x29\x07\x16\ \x30\x30\x4a\x79\x16\x29\x4d\x21\x3a\x56\x1b\x37\x60\x0b\x21\x43\ \x16\x24\x3d\x0d\x20\x3b\x20\x3a\x5d\x10\x27\x49\x23\x3a\x59\x0e\ \x24\x40\x24\x35\x4f\x18\x30\x4e\x21\x3f\x63\x13\x2b\x4c\x23\x36\ \x51\x26\x3f\x62\x12\x2b\x4d\x1f\x32\x4d\x26\x3a\x53\x2d\x49\x64\ \x3d\x5b\x77\x27\x43\x61\x2f\x4a\x61\x36\x4d\x66\x42\x56\x70\x3c\ \x51\x66\x3a\x54\x6d\x52\x6f\x8a\x41\x5b\x78\x23\x3a\x53\x1c\x2d\ \x3f\x19\x27\x39\x12\x1e\x2f\x0c\x14\x25\x0a\x11\x1f\x0b\x10\x1e\ \x07\x0c\x1c\x0a\x0b\x19\x00\x00\x0e\x5f\x64\x79\x94\x94\xa3\xfb\ \xf3\xf6\x8a\x86\x88\x3d\x3d\x45\x64\x66\x72\x4c\x4e\x5d\x5d\x62\ \x74\x4c\x52\x67\x68\x74\x8b\x82\x92\xab\x8c\xa2\xbb\x7a\x92\xad\ \x6f\x89\xa6\xad\xc8\xe5\xb9\xcf\xed\xc5\xdc\xfa\xc1\xd8\xf8\xc0\ \xd8\xfb\xb1\xc8\xf1\xb7\xce\xf9\xae\xc5\xef\xb5\xcb\xef\xba\xd2\ \xf1\x96\xae\xca\xa4\xc0\xd9\xa8\xc3\xda\x99\xb2\xc7\x52\x69\x7d\ \x14\x24\x33\x22\x32\x45\x40\x56\x74\x76\x8f\xae\x52\x6c\x84\x78\ \x91\xa4\x68\x80\x94\x5d\x76\x8a\x55\x6f\x81\x4c\x66\x76\x49\x5f\ \x6e\x46\x59\x65\x3e\x50\x59\x39\x4b\x52\x37\x47\x4f\x34\x43\x46\ \x36\x42\x46\x3a\x46\x4a\x00\x00\x00\x30\x6a\xae\x1c\x50\x95\x2b\ \x62\xac\x29\x64\xb2\x2b\x67\xba\x18\x52\xa5\x2a\x5d\xaa\x27\x59\ \xa3\x16\x43\x8c\x22\x42\x79\x10\x1b\x36\x01\x01\x0b\x05\x04\x0a\ \x04\x05\x0f\x05\x06\x0d\x0a\x09\x10\x06\x09\x15\x0c\x18\x2e\x19\ \x29\x40\x05\x0c\x18\x08\x0e\x22\x03\x0c\x20\x05\x0d\x20\x06\x0c\ \x1e\x08\x12\x15\x0c\x11\x19\x02\x10\x1b\x0c\x10\x17\x09\x0f\x1a\ \x08\x0f\x18\x09\x0c\x16\x0c\x0f\x19\x0f\x14\x17\x0b\x0e\x18\x0e\ \x12\x18\x0c\x11\x17\x0c\x12\x1b\x10\x12\x17\x0e\x17\x1c\x11\x14\ \x1c\x13\x1b\x1f\x10\x1a\x21\x14\x1d\x25\x19\x1f\x24\x12\x16\x1a\ \x0f\x19\x1e\x1e\x20\x25\x1a\x1b\x21\x17\x20\x29\x1c\x1f\x24\x1b\ \x25\x2d\x10\x26\x2f\x17\x25\x28\x27\x3e\x48\x46\x57\x6c\x21\x2a\ \x31\x21\x2a\x31\x83\x9c\xad\x28\x3e\x50\x24\x2c\x2f\x29\x2c\x2d\ \x25\x2a\x2b\x25\x2a\x2b\x1e\x23\x23\x19\x1d\x1e\x0c\x0d\x0f\x01\ \x02\x08\x04\x05\x0f\x07\x0c\x17\x08\x11\x1f\x0d\x15\x23\x0f\x18\ \x2a\x08\x12\x23\x0b\x16\x23\x0d\x17\x28\x04\x16\x2d\x22\x46\x71\ \x05\x17\x3a\x09\x1e\x3f\x17\x33\x5f\x06\x15\x39\x0e\x1e\x3b\x0c\ \x25\x43\x19\x34\x58\x0c\x21\x41\x0f\x25\x44\x20\x39\x59\x15\x2b\ \x46\x14\x2e\x4f\x1a\x35\x5a\x16\x29\x44\x1b\x2b\x3f\x26\x41\x64\ \x1d\x37\x5b\x17\x2b\x47\x26\x3b\x55\x39\x55\x72\x21\x3e\x5b\x2a\ \x42\x5b\x30\x48\x5b\x32\x4a\x61\x33\x49\x62\x33\x4a\x5f\x55\x72\ \x8b\x2f\x4c\x6a\x2d\x49\x65\x31\x46\x5d\x2d\x3e\x50\x19\x29\x3a\ \x13\x1f\x31\x10\x18\x29\x07\x0f\x1d\x0c\x10\x21\x08\x0b\x1e\x08\ \x08\x1a\x00\x00\x0f\x59\x5e\x75\x8b\x8c\x9b\xfb\xf3\xf7\x92\x8e\ \x91\x58\x56\x62\x57\x5b\x69\x6d\x76\x86\x81\x8b\x9f\x8a\x99\xb0\ \x8a\x9f\xb8\x9e\xb6\xd4\xa9\xc3\xe5\xb0\xcc\xf0\xa9\xc6\xec\xad\ \xc9\xef\xb7\xd4\xf7\xb5\xd5\xf5\xb6\xd5\xf4\xaa\xcb\xee\xad\xcc\ \xf4\xab\xc7\xf3\xb0\xca\xf7\xae\xc8\xf4\xac\xc9\xf1\xaf\xc9\xef\ \xaf\xc5\xea\xb1\xc9\xeb\xa1\xb8\xd8\x64\x79\x96\x26\x38\x4e\x2f\ \x43\x5b\x34\x4a\x6c\x34\x4b\x6b\x7f\x94\xac\x7a\x92\xa5\x63\x7c\ \x8f\x5e\x76\x8a\x55\x6f\x81\x4d\x66\x77\x4c\x61\x6f\x45\x57\x62\ \x3d\x4f\x55\x36\x46\x4c\x32\x42\x48\x33\x40\x46\x34\x41\x46\x39\ \x44\x49\x00\x00\x00\x3b\x78\xbf\x2b\x61\xa7\x37\x6e\xb8\x2a\x64\ \xb1\x2e\x68\xb7\x23\x5b\xac\x24\x5b\xa5\x1a\x4d\x93\x17\x40\x84\ \x1b\x36\x6a\x0a\x15\x2f\x01\x01\x0b\x05\x04\x0a\x06\x05\x0d\x08\ \x07\x10\x08\x07\x12\x07\x08\x14\x05\x0a\x18\x05\x08\x16\x08\x0a\ \x17\x0c\x0f\x1a\x0a\x0e\x18\x09\x0e\x18\x07\x0c\x15\x0a\x10\x17\ \x0b\x11\x18\x0a\x10\x18\x09\x0e\x16\x0a\x0f\x19\x09\x0d\x18\x0a\ \x0e\x18\x0b\x14\x19\x09\x0e\x17\x08\x0e\x16\x0b\x11\x17\x0c\x0d\ \x16\x10\x14\x19\x0c\x12\x18\x0f\x14\x18\x0f\x16\x1a\x0e\x17\x1f\ \x0c\x14\x1b\x10\x17\x1e\x13\x19\x1e\x13\x1a\x1f\x18\x1e\x23\x18\ \x1c\x21\x1a\x1f\x24\x1a\x20\x24\x22\x28\x2b\x1e\x25\x28\x1d\x24\ \x28\x22\x29\x2c\x23\x2b\x2f\x25\x2e\x32\x24\x2d\x30\x26\x2e\x35\ \x34\x3c\x44\x2b\x34\x39\x28\x30\x31\x27\x2c\x2d\x24\x29\x2a\x20\ \x25\x26\x1c\x1f\x23\x18\x1b\x1e\x0b\x0f\x12\x00\x01\x07\x05\x06\ \x11\x05\x0a\x1a\x0b\x14\x25\x08\x16\x26\x0c\x18\x2a\x0c\x18\x2a\ \x07\x15\x25\x11\x1e\x2c\x00\x12\x31\x30\x4b\x79\x0f\x24\x49\x0b\ \x20\x3c\x2c\x46\x70\x1b\x32\x56\x16\x2b\x4b\x15\x2d\x4c\x11\x28\ \x46\x14\x29\x46\x12\x27\x44\x16\x2b\x49\x19\x2f\x4d\x14\x29\x49\ \x13\x28\x45\x1a\x2f\x46\x1a\x2c\x41\x15\x27\x3e\x1a\x2e\x4b\x17\ \x2c\x46\x1c\x33\x4a\x26\x3d\x54\x1c\x32\x4b\x27\x3d\x53\x3a\x54\ \x6d\x47\x61\x7b\x2a\x41\x58\x3a\x4d\x62\x5a\x73\x89\x40\x5a\x75\ \x32\x4c\x69\x2c\x43\x5d\x26\x3c\x51\x20\x32\x45\x17\x24\x36\x0f\ \x17\x28\x0d\x13\x22\x0b\x0f\x1e\x05\x0a\x19\x09\x0b\x18\x00\x01\ \x10\x56\x5c\x72\x89\x8b\x9b\xff\xf2\xf7\xa8\xa6\xaa\x68\x6f\x7a\ \x7a\x85\x95\x88\x9a\xac\xa9\xbd\xd9\xa8\xc0\xe3\xad\xc7\xed\xa8\ \xc4\xeb\xa9\xc5\xed\x9d\xb9\xe3\xa5\xc1\xea\xae\xc9\xf3\xb1\xd1\ \xf6\xae\xd0\xf3\xb1\xd4\xf6\xa4\xc8\xef\xa2\xc5\xf0\xa0\xc0\xee\ \xa1\xbf\xed\xa2\xbd\xec\xa7\xc1\xee\xa6\xbf\xeb\xa7\xc0\xea\xa8\ \xc2\xe9\x9b\xb3\xdd\x58\x6d\x94\x42\x59\x7a\x6a\x7b\x98\x47\x54\ \x6d\x78\x8a\xa3\x89\xa1\xb5\x74\x8d\x9e\x65\x7f\x90\x5b\x75\x88\ \x54\x6e\x7e\x4e\x68\x76\x48\x5e\x6a\x43\x57\x62\x3a\x4d\x56\x35\ \x46\x4d\x33\x41\x49\x34\x3e\x47\x36\x41\x45\x3e\x49\x4b\x00\x00\ \x00\x38\x78\xc7\x2c\x62\xab\x27\x5d\xa7\x32\x6b\xb7\x33\x6a\xb8\ \x24\x55\xa8\x28\x58\xa5\x1a\x48\x8d\x1c\x42\x82\x0e\x26\x55\x08\ \x12\x28\x00\x00\x0b\x05\x04\x0b\x06\x05\x0d\x07\x06\x0f\x09\x08\ \x13\x08\x08\x14\x09\x0c\x17\x09\x0b\x15\x0b\x0d\x17\x08\x0e\x16\ \x09\x0f\x18\x0a\x0f\x18\x0a\x0f\x18\x0b\x10\x18\x0a\x10\x17\x0c\ \x12\x18\x0d\x13\x1a\x0a\x0f\x18\x0d\x12\x1b\x0a\x0f\x17\x0c\x11\ \x18\x10\x15\x1e\x0f\x11\x1a\x12\x17\x1c\x10\x16\x1e\x0d\x12\x1b\ \x0b\x10\x19\x12\x17\x21\x0d\x14\x1b\x0d\x17\x1c\x14\x1d\x24\x10\ \x18\x1c\x15\x1b\x20\x14\x1a\x1f\x16\x1c\x21\x18\x1c\x21\x16\x1b\ \x20\x18\x1e\x22\x1f\x26\x29\x19\x20\x23\x1d\x24\x27\x1e\x25\x28\ \x26\x2d\x30\x25\x2c\x31\x2b\x32\x37\x2b\x31\x38\x2c\x32\x39\x30\ \x37\x3a\x2a\x31\x32\x2b\x30\x31\x27\x2c\x2d\x20\x24\x25\x22\x26\ \x27\x1b\x1f\x21\x0b\x0e\x12\x01\x02\x07\x04\x05\x0f\x0b\x10\x1f\ \x0d\x17\x27\x0c\x19\x29\x0a\x16\x28\x08\x14\x26\x0c\x1a\x2a\x0b\ \x19\x2e\x15\x2a\x47\x23\x3f\x63\x15\x2b\x4c\x04\x16\x32\x07\x1b\ \x3b\x10\x24\x40\x0a\x1b\x35\x13\x27\x41\x10\x24\x3e\x17\x2a\x43\ \x12\x26\x3f\x15\x2a\x44\x17\x2b\x46\x14\x27\x45\x23\x37\x53\x1a\ \x2e\x46\x1a\x2f\x45\x2a\x3f\x57\x26\x3d\x55\x24\x3b\x51\x26\x3d\ \x53\x2f\x46\x5d\x22\x38\x51\x23\x3b\x52\x38\x4e\x66\x2d\x42\x5a\ \x35\x49\x5c\x40\x55\x67\x3d\x54\x68\x49\x60\x78\x3f\x56\x6f\x32\ \x48\x60\x28\x3a\x4f\x24\x34\x47\x1a\x28\x3b\x13\x1e\x2e\x0f\x16\ \x24\x0b\x11\x1d\x0b\x11\x1f\x08\x0b\x17\x00\x02\x0f\x55\x5b\x6f\ \x8c\x8d\x9d\xfb\xf3\xf7\xc0\xbf\xc5\x86\x91\xa2\x90\xa1\xb8\xa7\ \xbd\xdc\xae\xc5\xeb\xb4\xcc\xf7\xa8\xc3\xef\xac\xc8\xf4\xaa\xc8\ \xf2\x9b\xb9\xe2\xad\xcb\xf4\x9f\xbd\xe6\xaf\xce\xf5\xab\xcc\xf0\ \xa9\xcc\xf1\xa5\xc8\xf1\x98\xba\xe8\x9a\xba\xec\x9b\xbb\xec\x9b\ \xb9\xe9\xa2\xbe\xec\xa7\xc3\xf0\xab\xc7\xf1\xad\xc8\xf0\x9f\xb8\ \xe2\x6e\x86\xab\x58\x6c\x8a\x6f\x7f\x96\x64\x76\x8b\x47\x5f\x76\ \x7b\x93\xa8\x6e\x87\x9b\x63\x7c\x91\x5c\x77\x88\x53\x6d\x7c\x4d\ \x65\x72\x49\x5e\x6c\x43\x55\x62\x3d\x4e\x59\x39\x48\x52\x38\x46\ \x4e\x3a\x46\x4b\x42\x4d\x50\x46\x52\x54\x00\x00\x00\x2d\x71\xc0\ \x2b\x66\xaf\x22\x5b\xa3\x35\x72\xbb\x2e\x67\xb3\x23\x55\xa6\x1f\ \x4f\x99\x1a\x44\x84\x12\x31\x6b\x0e\x22\x49\x06\x0e\x1f\x02\x01\ \x0a\x07\x06\x0d\x07\x06\x0e\x08\x07\x11\x09\x08\x13\x08\x08\x14\ \x09\x0b\x14\x09\x0b\x13\x0b\x0d\x15\x08\x0e\x16\x0a\x11\x1a\x0c\ \x11\x1a\x0a\x0f\x18\x0b\x11\x19\x09\x0f\x16\x08\x0e\x14\x0b\x11\ \x18\x0a\x0f\x17\x09\x0e\x17\x07\x0d\x14\x09\x0e\x15\x0b\x10\x1a\ \x0d\x0f\x18\x0c\x0f\x18\x04\x0f\x1c\x28\x3b\x4f\x30\x41\x52\x04\ \x16\x2a\x3f\x52\x66\x18\x27\x30\x10\x18\x1f\x11\x19\x1d\x15\x1b\ \x20\x11\x18\x1d\x1a\x21\x25\x1e\x22\x27\x19\x1f\x24\x1f\x26\x2a\ \x24\x2b\x2e\x18\x1d\x20\x20\x25\x28\x20\x27\x2a\x24\x2b\x2e\x23\ \x2a\x2d\x2b\x2f\x35\x2f\x33\x3a\x30\x34\x39\x2c\x31\x33\x2f\x34\ \x35\x29\x31\x31\x29\x2e\x2f\x27\x2c\x2d\x20\x25\x26\x1e\x23\x24\ \x0c\x0f\x13\x00\x01\x07\x06\x08\x11\x06\x0c\x19\x08\x12\x21\x08\ \x15\x26\x08\x14\x26\x0b\x17\x29\x0d\x1a\x2b\x0b\x16\x2a\x0a\x18\ \x2e\x09\x1a\x33\x07\x16\x2d\x0c\x1a\x31\x16\x25\x3e\x13\x21\x37\ \x14\x22\x38\x15\x25\x3a\x1c\x2c\x47\x1a\x2b\x47\x1d\x2d\x4a\x1a\ \x2b\x48\x18\x2a\x47\x14\x26\x44\x21\x33\x4f\x18\x2c\x46\x17\x2d\ \x46\x22\x38\x51\x1b\x30\x46\x17\x2f\x42\x19\x31\x45\x29\x41\x58\ \x20\x38\x50\x29\x41\x57\x36\x4b\x61\x35\x48\x5d\x38\x4d\x5e\x3f\ \x55\x66\x36\x4a\x5e\x30\x45\x5b\x30\x45\x5b\x30\x43\x59\x25\x37\ \x4a\x28\x39\x4d\x1e\x2e\x41\x0f\x1e\x2e\x0d\x17\x25\x0a\x12\x1d\ \x07\x0f\x1c\x0c\x0f\x19\x00\x02\x0d\x52\x58\x6b\x90\x91\xa0\xf7\ \xee\xf5\xcc\xce\xd7\x97\xa8\xbe\xac\xc4\xe1\xb2\xcd\xef\xb1\xcc\ \xf3\xa7\xc2\xee\xa5\xc2\xee\xa6\xc3\xef\xa6\xc3\xef\xa8\xc5\xf1\ \xb1\xce\xf9\xa3\xc1\xea\xa9\xcb\xf1\xa7\xc8\xf0\xa8\xc9\xf3\xa2\ \xc3\xf1\x9f\xc0\xf1\x96\xb7\xe8\x9a\xbb\xec\x9a\xba\xeb\x9b\xbb\ \xe9\xa1\xbf\xec\xad\xcb\xf5\x9a\xb7\xdf\x77\x91\xbd\xaf\xc8\xf2\ \x6a\x80\xa1\x77\x88\x9e\x5e\x75\x86\x8d\xa9\xbe\x6f\x87\x9d\x69\ \x81\x97\x60\x7a\x8f\x59\x74\x84\x53\x6c\x7a\x4c\x64\x70\x4b\x5e\ \x6d\x45\x58\x65\x40\x51\x5d\x3e\x4d\x58\x41\x4e\x56\x43\x4f\x53\ \x4a\x56\x5a\x51\x5d\x60\x00\x00\x00\x38\x75\xc0\x3b\x74\xbb\x2f\ \x69\xb0\x29\x63\xab\x27\x5d\xa5\x1e\x4c\x98\x1b\x44\x8a\x0a\x2e\ \x68\x10\x29\x5c\x0f\x1e\x3f\x04\x0a\x17\x04\x02\x0b\x07\x06\x0d\ \x07\x06\x0e\x08\x07\x11\x08\x07\x12\x08\x09\x14\x08\x0a\x12\x0b\ \x0d\x15\x0a\x0c\x15\x0b\x0e\x18\x0a\x10\x18\x0a\x0f\x18\x08\x0d\ \x16\x0a\x10\x17\x0b\x11\x18\x0b\x11\x18\x0c\x12\x19\x0c\x10\x1b\ \x0b\x10\x1a\x0a\x0f\x18\x0a\x0f\x16\x08\x0f\x18\x0b\x0e\x17\x0c\ \x0e\x18\x2d\x40\x50\x16\x2d\x47\x00\x0f\x27\x31\x4a\x68\x07\x1b\ \x34\x04\x11\x1c\x0f\x17\x1f\x11\x17\x20\x15\x1b\x22\x13\x19\x1f\ \x13\x19\x1f\x19\x1c\x21\x1a\x1f\x24\x19\x20\x24\x1d\x24\x27\x25\ \x2a\x2e\x22\x26\x2b\x1e\x23\x26\x25\x2c\x2f\x2a\x31\x34\x2a\x31\ \x34\x2a\x31\x35\x2d\x34\x37\x31\x38\x3b\x2d\x34\x37\x24\x2b\x2e\ \x21\x29\x29\x1f\x24\x25\x22\x27\x28\x1c\x21\x23\x0c\x10\x13\x01\ \x02\x07\x03\x05\x0e\x09\x0f\x1b\x0b\x15\x22\x07\x14\x23\x0a\x16\ \x28\x11\x1d\x2f\x08\x15\x27\x0c\x1a\x2c\x0c\x19\x2d\x10\x1d\x32\ \x0e\x1b\x2f\x0c\x19\x2d\x17\x25\x3a\x10\x1e\x35\x13\x23\x3a\x1d\ \x2d\x46\x1b\x2c\x46\x1b\x2b\x47\x21\x32\x4e\x16\x28\x44\x16\x28\ \x45\x26\x37\x54\x29\x3b\x59\x1c\x31\x4c\x1f\x33\x4e\x28\x3b\x55\ \x1c\x31\x48\x1e\x33\x49\x20\x37\x4d\x20\x38\x4f\x26\x3d\x55\x27\ \x3e\x54\x2e\x45\x5b\x32\x49\x5e\x3f\x57\x6a\x35\x4c\x5f\x3a\x4e\ \x64\x36\x4b\x5f\x30\x45\x5a\x2f\x43\x58\x2e\x42\x58\x2e\x43\x58\ \x1d\x32\x48\x1e\x2d\x41\x12\x1e\x2e\x0d\x16\x23\x09\x12\x20\x09\ \x0d\x18\x02\x05\x11\x48\x4f\x61\x92\x90\x9f\xfa\xf0\xf7\xcd\xd0\ \xdc\x8e\xa3\xbd\xa8\xc3\xe3\xb4\xd0\xef\xb3\xcc\xf3\xa8\xc2\xec\ \xa5\xc2\xec\xa6\xc4\xf0\xa0\xbf\xec\x9c\xbc\xe8\x9d\xbd\xe8\xa3\ \xc3\xed\xaa\xcc\xf0\xa2\xc3\xea\x99\xbb\xe4\x99\xba\xe7\xa1\xc2\ \xf1\x98\xb8\xe8\x9b\xbb\xea\x9c\xbd\xec\x9e\xbf\xec\xa4\xc4\xef\ \xa6\xc4\xee\x5f\x7b\xa6\xa1\xbc\xec\x90\xaf\xdf\x4e\x69\x91\x46\ \x59\x77\x53\x67\x7d\x50\x69\x7e\x6e\x87\x9c\x68\x83\x97\x5e\x7a\ \x8c\x58\x74\x83\x52\x6b\x7a\x4c\x62\x72\x4b\x5e\x6c\x49\x5b\x67\ \x45\x55\x60\x46\x54\x5d\x49\x57\x5d\x4c\x59\x5d\x56\x62\x67\x59\ \x66\x6c\x00\x00\x00\x2d\x62\xa7\x24\x53\x97\x2c\x5b\xa1\x31\x61\ \xa7\x1b\x48\x8f\x17\x3f\x85\x11\x34\x76\x07\x24\x5c\x0c\x22\x50\ \x0b\x16\x32\x00\x02\x0e\x03\x02\x0c\x05\x05\x0d\x07\x06\x0f\x09\ \x09\x12\x08\x08\x13\x08\x08\x14\x0b\x0d\x17\x08\x0a\x13\x0a\x0b\ \x15\x08\x0a\x14\x0b\x0f\x19\x0b\x10\x19\x0b\x10\x19\x0c\x12\x1a\ \x0d\x13\x1a\x0b\x11\x19\x0e\x13\x1c\x11\x16\x20\x0b\x10\x1b\x0f\ \x15\x1d\x0e\x13\x1a\x0b\x13\x1c\x0f\x13\x1b\x0e\x11\x1c\x10\x21\ \x31\x16\x29\x43\x1d\x2e\x48\x1b\x2e\x4c\x25\x37\x50\x07\x12\x1e\ \x13\x1b\x24\x15\x1b\x23\x15\x1a\x22\x16\x1d\x25\x15\x1b\x21\x18\ \x1c\x21\x17\x1d\x22\x1a\x20\x24\x1e\x25\x28\x1f\x24\x29\x24\x29\ \x2e\x1f\x24\x27\x25\x2a\x2d\x28\x2e\x30\x29\x2f\x32\x27\x2e\x30\ \x27\x2e\x30\x2c\x33\x36\x28\x2d\x32\x22\x29\x2c\x25\x2d\x2f\x24\ \x2a\x2c\x1f\x24\x25\x1d\x22\x24\x0e\x10\x15\x00\x02\x06\x02\x03\ \x0d\x0a\x10\x1c\x0b\x15\x22\x0d\x1a\x29\x0a\x17\x28\x0c\x18\x2a\ \x09\x16\x28\x08\x18\x2a\x09\x18\x2c\x11\x1d\x38\x0b\x19\x30\x10\ \x20\x34\x1f\x2d\x41\x10\x22\x37\x10\x22\x3a\x09\x1c\x35\x07\x17\ \x31\x0b\x1e\x35\x12\x27\x3e\x15\x2a\x41\x14\x28\x41\x17\x2b\x46\ \x11\x25\x40\x18\x2d\x47\x16\x29\x44\x1b\x2e\x49\x20\x34\x4d\x23\ \x38\x4f\x16\x2c\x43\x1c\x33\x4a\x28\x3e\x56\x23\x38\x4e\x29\x41\ \x57\x36\x51\x66\x2c\x45\x5b\x3d\x53\x69\x37\x4c\x61\x3b\x4e\x65\ \x32\x46\x5c\x2a\x40\x55\x26\x3c\x51\x22\x38\x4f\x2a\x3f\x58\x29\ \x39\x50\x17\x22\x34\x0e\x18\x25\x09\x11\x1f\x08\x0c\x1a\x03\x07\ \x14\x47\x4b\x5e\x9a\x95\xa4\xfb\xf0\xf7\xd5\xd7\xe4\x3c\x50\x6e\ \xa7\xc1\xe2\xb8\xd1\xf2\xb3\xca\xf2\xa9\xc2\xef\xa2\xbe\xeb\xa8\ \xc6\xf2\xa0\xbe\xec\x9d\xbc\xe9\x9e\xbe\xe9\x9f\xbf\xe9\xac\xce\ \xf2\xa3\xc4\xea\x97\xb9\xe4\x9b\xbc\xea\x9c\xbc\xea\xa2\xc3\xf1\ \x9b\xbd\xeb\x99\xbb\xe8\xa1\xc2\xee\xa6\xc6\xef\xa5\xc2\xea\x93\ \xac\xd9\x99\xb3\xe7\x5c\x7b\xb0\x54\x72\xa0\x32\x47\x6a\x56\x68\ \x82\x80\x95\xad\x6f\x88\x9d\x66\x81\x93\x5e\x7a\x8a\x57\x72\x81\ \x53\x6b\x7b\x50\x64\x75\x4f\x62\x6d\x4e\x60\x6a\x4c\x5c\x65\x4e\ \x5d\x64\x51\x5f\x65\x56\x63\x68\x5e\x6b\x72\x62\x6f\x77\x00\x00\ \x00\x2c\x5f\xa3\x30\x5a\x9a\x0a\x2e\x6d\x17\x3e\x7e\x18\x3f\x80\ \x1b\x40\x80\x11\x31\x6d\x0c\x21\x57\x0b\x1a\x42\x09\x10\x27\x01\ \x01\x0e\x03\x03\x0d\x05\x04\x0e\x08\x08\x12\x07\x07\x11\x09\x09\ \x14\x0a\x0c\x17\x0b\x0c\x19\x0a\x0c\x17\x09\x0b\x15\x0e\x0f\x19\ \x09\x0e\x18\x0b\x11\x19\x0b\x12\x1b\x09\x11\x18\x0a\x12\x19\x0b\ \x12\x1a\x0d\x13\x1c\x0c\x14\x1d\x0a\x12\x1a\x0a\x11\x18\x0d\x13\ \x1a\x0c\x11\x18\x0f\x11\x1a\x0a\x0f\x18\x05\x0f\x19\x1c\x2f\x47\ \x1b\x32\x4f\x05\x12\x2c\x24\x32\x44\x14\x20\x2e\x0d\x14\x1d\x0f\ \x17\x1e\x11\x17\x1d\x15\x1c\x23\x16\x1c\x22\x19\x1d\x22\x15\x1b\ \x1e\x1e\x25\x28\x20\x27\x2c\x1c\x22\x28\x21\x27\x2c\x20\x25\x28\ \x25\x29\x2d\x27\x2a\x2e\x31\x35\x37\x27\x2c\x2d\x28\x2d\x2e\x2f\ \x34\x35\x2f\x34\x36\x23\x2a\x2e\x26\x2d\x30\x22\x28\x2b\x21\x26\ \x29\x1a\x1e\x21\x0c\x0d\x12\x00\x00\x08\x01\x03\x0d\x06\x0c\x19\ \x0b\x15\x22\x07\x13\x21\x08\x15\x24\x0f\x1d\x2e\x0c\x18\x2a\x0b\ \x19\x2b\x09\x17\x2a\x0f\x1d\x33\x09\x18\x2d\x0e\x1d\x30\x10\x1f\ \x32\x0a\x1c\x31\x0c\x1f\x34\x04\x16\x2b\x0b\x1b\x32\x1b\x2c\x46\ \x15\x2a\x43\x16\x2b\x44\x1b\x31\x4a\x18\x2e\x47\x17\x2b\x43\x1a\ \x30\x46\x1c\x30\x4b\x16\x2b\x47\x1d\x33\x4d\x25\x3b\x54\x19\x2e\ \x47\x24\x38\x51\x2c\x42\x58\x26\x3d\x53\x33\x4a\x60\x33\x4a\x60\ \x2d\x45\x5b\x38\x4f\x64\x39\x4e\x63\x37\x4c\x61\x30\x45\x5a\x29\ \x3f\x54\x28\x3b\x50\x1e\x31\x49\x2b\x3d\x58\x28\x37\x51\x1f\x2b\ \x40\x11\x1d\x2a\x0d\x13\x20\x0e\x11\x1f\x05\x09\x18\x46\x46\x58\ \x9b\x96\xa5\xfc\xf0\xf5\xcb\xd0\xdd\x7c\x8c\xab\xb7\xd0\xf1\xb9\ \xd2\xf4\xad\xc7\xed\xa9\xc5\xef\xa0\xbd\xe9\xaa\xc7\xf3\xa1\xbf\ \xec\x9e\xbf\xed\x96\xb7\xe4\x9b\xbc\xe4\xab\xcb\xf1\xa5\xc4\xed\ \x9e\xbf\xec\x9f\xc0\xee\x97\xb8\xe6\x9e\xc0\xee\x9a\xbe\xec\x94\ \xb9\xe6\xa0\xc3\xef\xa8\xc9\xf2\xa9\xc6\xeb\x90\xa8\xd2\x98\xb3\ \xe4\x58\x72\xaa\x4f\x66\x97\x22\x33\x56\x4b\x5d\x76\x67\x7f\x96\ \x6f\x88\x9e\x66\x80\x91\x5f\x79\x8a\x5a\x72\x82\x53\x69\x78\x52\ \x67\x76\x52\x65\x6e\x51\x63\x6c\x52\x61\x6a\x54\x62\x6a\x57\x64\ \x6c\x60\x6e\x74\x64\x72\x78\x6c\x7a\x80\x00\x00\x00\x31\x62\xa4\ \x13\x3c\x7d\x21\x44\x83\x1d\x3e\x7b\x11\x33\x72\x1a\x3a\x77\x0d\ \x26\x5e\x09\x1c\x4a\x07\x12\x31\x01\x04\x18\x02\x01\x0c\x05\x04\ \x0b\x07\x06\x10\x0a\x0a\x14\x0b\x0c\x16\x0b\x0d\x17\x0a\x0c\x17\ \x0a\x0e\x19\x0b\x0f\x1a\x09\x0e\x17\x09\x10\x19\x08\x0e\x17\x0a\ \x11\x1a\x09\x10\x19\x0a\x12\x1a\x0a\x12\x19\x10\x16\x1e\x0d\x14\ \x1d\x09\x12\x1b\x0a\x12\x1b\x0f\x15\x1f\x0f\x15\x1c\x0d\x11\x19\ \x10\x11\x1b\x0f\x14\x1d\x06\x0f\x18\x31\x41\x53\x23\x33\x4a\x24\ \x32\x45\x08\x10\x1a\x0d\x16\x1f\x0f\x16\x1e\x11\x17\x1e\x15\x1b\ \x21\x18\x1e\x24\x18\x1d\x23\x17\x1a\x1f\x17\x1e\x21\x20\x27\x2a\ \x1a\x20\x24\x1e\x24\x29\x24\x2a\x2e\x22\x27\x2a\x24\x28\x2b\x2a\ \x2d\x30\x26\x2b\x2e\x2c\x31\x34\x2b\x30\x33\x2d\x32\x35\x2b\x31\ \x33\x23\x2b\x2b\x26\x2e\x2d\x25\x2c\x2c\x22\x26\x27\x21\x25\x28\ \x0e\x0f\x13\x02\x01\x09\x02\x04\x0e\x09\x0f\x1b\x0c\x15\x23\x10\ \x1b\x2b\x09\x17\x28\x0d\x1b\x2d\x09\x17\x2a\x0a\x18\x2b\x0c\x1a\ \x2e\x0b\x19\x2f\x0d\x1b\x31\x0f\x1d\x33\x14\x21\x37\x11\x22\x37\ \x18\x2a\x3f\x14\x24\x3b\x1d\x2d\x46\x1a\x2c\x47\x17\x2c\x46\x16\ \x2c\x46\x18\x2d\x47\x1a\x2d\x47\x1c\x2d\x47\x21\x32\x4a\x19\x2c\ \x46\x1a\x2e\x4a\x21\x36\x50\x1a\x30\x49\x22\x38\x51\x23\x38\x51\ \x2b\x40\x58\x22\x39\x4f\x2f\x46\x5c\x2e\x45\x5b\x31\x48\x5e\x37\ \x4f\x64\x31\x47\x5c\x36\x4b\x60\x31\x43\x5a\x31\x43\x5a\x28\x38\ \x50\x22\x33\x4c\x24\x37\x51\x25\x37\x4f\x26\x37\x4c\x19\x26\x37\ \x0c\x12\x20\x0c\x10\x1c\x08\x0a\x16\x47\x42\x50\xd3\xca\xd4\xfd\ \xf4\xf6\xcf\xd5\xe4\x8d\xa4\xc2\xb8\xd2\xf4\xb7\xd0\xf4\xb0\xcc\ \xf2\xa6\xc4\xed\xa3\xc1\xeb\xa6\xc4\xed\xa9\xc8\xf4\x9c\xbd\xea\ \x99\xba\xe7\x9b\xbb\xe6\xa6\xc4\xec\xa3\xc3\xec\x9b\xbc\xe9\x9d\ \xbe\xec\x97\xb8\xe6\x9c\xbe\xec\x95\xb8\xe6\x97\xba\xe7\x9c\xc0\ \xea\xab\xcc\xf3\xac\xca\xee\x88\xa2\xc9\x90\xab\xdf\x51\x69\x9f\ \x25\x39\x63\x23\x2f\x4c\x45\x56\x6c\x71\x8a\x9f\x67\x82\x97\x65\ \x7f\x90\x5e\x77\x88\x56\x6f\x7f\x52\x68\x78\x53\x68\x76\x55\x68\ \x71\x53\x66\x6e\x56\x67\x6e\x59\x68\x6f\x5f\x6c\x73\x65\x73\x79\ \x6e\x7c\x82\x72\x81\x87\x00\x00\x00\x2a\x56\x95\x1a\x3e\x7c\x1c\ \x39\x72\x1b\x36\x6e\x12\x2f\x69\x12\x2a\x61\x0f\x23\x53\x0b\x19\ \x3b\x02\x09\x20\x03\x04\x12\x03\x02\x0a\x05\x05\x0c\x06\x08\x0f\ \x0a\x0d\x15\x0b\x0d\x16\x0d\x10\x1a\x09\x0f\x18\x0a\x0e\x19\x0a\ \x0e\x19\x09\x0e\x19\x09\x10\x19\x0a\x11\x1a\x09\x10\x19\x0d\x14\ \x1d\x0c\x14\x1b\x09\x11\x18\x0c\x12\x1a\x08\x0f\x18\x0a\x12\x1b\ \x09\x11\x1b\x0c\x12\x1c\x0c\x12\x1a\x0c\x11\x1a\x0c\x11\x1a\x0f\ \x14\x1d\x09\x0f\x1a\x03\x0e\x1a\x0b\x16\x26\x0a\x12\x1d\x0d\x12\ \x18\x0f\x16\x1c\x14\x1a\x21\x0f\x15\x1c\x11\x17\x1d\x16\x1b\x20\ \x14\x18\x1c\x14\x18\x1d\x16\x1d\x21\x1c\x23\x26\x19\x20\x22\x1f\ \x25\x27\x24\x29\x2c\x1f\x24\x27\x22\x27\x28\x2c\x31\x32\x2f\x34\ \x37\x2c\x31\x35\x2c\x31\x34\x25\x2a\x2d\x2e\x34\x36\x2e\x36\x36\ \x28\x30\x30\x25\x2d\x2d\x21\x26\x27\x1c\x20\x22\x10\x11\x15\x01\ \x01\x09\x02\x04\x0e\x07\x0d\x19\x06\x11\x20\x0d\x1b\x2d\x0e\x1d\ \x30\x06\x15\x29\x0b\x1b\x2d\x12\x20\x34\x10\x1e\x31\x0b\x19\x2d\ \x0c\x1a\x30\x12\x21\x36\x0b\x1c\x31\x13\x23\x39\x14\x24\x3b\x10\ \x22\x38\x1a\x2b\x44\x18\x2a\x46\x0e\x23\x3e\x1e\x34\x4f\x19\x2d\ \x48\x15\x28\x43\x16\x27\x41\x1a\x2a\x45\x1b\x2e\x47\x1b\x2f\x4a\ \x22\x39\x53\x21\x37\x51\x25\x3b\x54\x1e\x34\x4d\x24\x3a\x53\x27\ \x3e\x53\x2b\x42\x58\x26\x3d\x53\x37\x4d\x63\x42\x58\x6d\x30\x45\ \x5a\x30\x45\x5b\x34\x48\x5f\x33\x46\x5e\x26\x37\x51\x2d\x3e\x58\ \x22\x36\x4f\x1e\x33\x4b\x29\x3e\x55\x1d\x2d\x40\x12\x1a\x2a\x08\ \x0d\x19\x0b\x0c\x16\x64\x5b\x66\xcb\xb4\xb9\xee\xe2\xe2\xbd\xc0\ \xcf\x9c\xb4\xd4\xb3\xcf\xf1\xb1\xcd\xf1\xb2\xd0\xf7\xa5\xc3\xec\ \xa5\xc3\xec\xa8\xc7\xf0\xa0\xc0\xeb\x9c\xbd\xea\x9c\xbd\xe8\xa3\ \xc3\xeb\xac\xca\xf0\xa8\xc7\xef\xa0\xc1\xee\x9d\xbe\xec\x94\xb5\ \xe3\x99\xbb\xe9\x93\xb5\xe3\x9a\xbc\xe9\x9e\xc0\xed\xac\xcc\xf5\ \xa7\xc6\xeb\x7b\x9a\xc1\x98\xb4\xec\x51\x67\x9d\x06\x14\x3b\x28\ \x33\x4e\x38\x48\x5c\x63\x7b\x90\x67\x82\x95\x63\x7d\x8e\x5c\x74\ \x86\x56\x6e\x7d\x55\x6b\x78\x53\x69\x74\x56\x6a\x71\x57\x6a\x71\ \x5a\x6b\x72\x60\x6e\x76\x63\x70\x78\x6d\x7a\x83\x74\x83\x8a\x79\ \x89\x8f\x00\x00\x00\x17\x3b\x77\x1d\x3b\x70\x0c\x23\x54\x11\x27\ \x59\x12\x2a\x5e\x0f\x24\x55\x12\x22\x49\x08\x13\x2d\x01\x05\x17\ \x04\x04\x11\x05\x04\x0d\x04\x06\x0e\x06\x09\x11\x09\x0c\x14\x0c\ \x10\x18\x0c\x11\x1a\x0a\x10\x19\x10\x12\x1c\x0d\x11\x1c\x0c\x10\ \x1b\x08\x0d\x17\x0d\x14\x1c\x0a\x11\x1a\x06\x0d\x16\x08\x10\x17\ \x0f\x15\x1c\x0b\x10\x19\x0c\x12\x1b\x0f\x18\x22\x08\x10\x1a\x0b\ \x11\x1c\x0e\x13\x1d\x0a\x0f\x18\x0b\x10\x19\x0c\x11\x1b\x0c\x10\ \x1a\x0a\x11\x17\x08\x0f\x1a\x0d\x11\x1a\x0f\x12\x17\x12\x18\x1e\ \x15\x1a\x1f\x14\x1b\x22\x15\x1b\x22\x16\x1b\x1f\x16\x1a\x1d\x18\ \x1d\x20\x1b\x21\x26\x1a\x22\x22\x13\x1b\x1b\x18\x1d\x1f\x1e\x23\ \x26\x1d\x22\x24\x1c\x21\x22\x2a\x2f\x30\x2a\x2f\x30\x30\x35\x36\ \x30\x35\x36\x2b\x30\x31\x2a\x30\x30\x24\x2c\x2c\x1d\x25\x25\x25\ \x2d\x2d\x28\x2d\x2e\x23\x27\x2a\x0e\x10\x14\x01\x00\x08\x02\x03\ \x0e\x09\x0f\x1c\x08\x12\x22\x12\x1f\x32\x0e\x1c\x33\x0b\x1a\x31\ \x0e\x1c\x31\x0e\x1b\x31\x0a\x18\x2c\x0b\x1a\x2d\x15\x23\x39\x0a\ \x19\x2f\x0d\x1e\x33\x13\x22\x38\x1a\x28\x3f\x14\x26\x3d\x16\x29\ \x41\x19\x2d\x48\x17\x2c\x47\x1a\x2e\x49\x1c\x2f\x4a\x13\x27\x42\ \x11\x25\x3f\x1c\x30\x49\x1a\x2f\x48\x24\x3a\x54\x1e\x35\x4f\x1d\ \x34\x4e\x1e\x34\x4e\x1f\x35\x4e\x27\x3d\x56\x38\x4e\x67\x36\x4c\ \x65\x32\x47\x60\x46\x5a\x73\x36\x4b\x62\x33\x48\x5d\x2f\x45\x5b\ \x2c\x43\x5a\x2c\x45\x5d\x23\x3a\x51\x22\x37\x4d\x1f\x33\x4c\x26\ \x3a\x53\x2d\x40\x5b\x23\x34\x4d\x1a\x25\x38\x08\x10\x1d\x09\x09\ \x12\x82\x78\x7e\x80\x52\x51\xd8\xba\xb8\xc7\xc7\xd5\xb9\xd5\xf1\ \xb6\xd3\xf4\xaf\xcc\xf0\xae\xcd\xf3\xa0\xc0\xe9\xae\xcc\xf5\xa0\ \xbf\xe9\x9e\xbe\xea\x9e\xc0\xec\xa4\xc5\xee\xac\xcc\xf0\xb1\xcd\ \xf4\xa7\xc5\xee\x9e\xbe\xea\x99\xba\xe9\x99\xbb\xe9\x9c\xbd\xeb\ \x91\xb3\xe1\x98\xbb\xe7\x9c\xbd\xe9\xac\xcc\xf7\x96\xb5\xdf\x90\ \xae\xda\x9e\xb9\xf5\x41\x55\x8c\x07\x12\x35\x34\x40\x58\x46\x57\ \x6c\x64\x7e\x94\x67\x82\x95\x63\x7b\x8d\x59\x71\x82\x56\x6d\x7c\ \x57\x6c\x78\x57\x6b\x75\x58\x6c\x73\x5c\x6e\x75\x5e\x6f\x76\x63\ \x72\x79\x6c\x7a\x81\x72\x80\x8c\x77\x86\x8f\x7f\x8e\x97\x00\x00\ \x00\x1c\x3f\x77\x1a\x36\x69\x09\x1f\x4e\x17\x2b\x5b\x12\x27\x58\ \x09\x1b\x44\x09\x17\x35\x02\x0b\x1f\x03\x06\x17\x02\x03\x0f\x04\ \x04\x0e\x04\x05\x0e\x05\x07\x10\x09\x0b\x15\x0b\x0f\x17\x0d\x13\ \x1d\x08\x0e\x1a\x0d\x0f\x19\x0a\x0e\x19\x0a\x0f\x1c\x0a\x10\x1a\ \x08\x11\x17\x08\x10\x19\x0d\x0e\x1c\x09\x12\x19\x0c\x14\x1c\x0d\ \x11\x1c\x08\x0f\x1a\x0b\x11\x1c\x0e\x13\x1c\x0d\x14\x22\x09\x12\ \x1d\x0c\x11\x1c\x0d\x11\x1b\x0e\x11\x1b\x0f\x10\x1a\x0b\x11\x18\ \x0b\x15\x1b\x0d\x12\x1a\x11\x14\x1c\x10\x17\x1a\x16\x19\x21\x13\ \x19\x20\x14\x1c\x21\x16\x1a\x1f\x17\x18\x1d\x17\x1a\x21\x15\x1a\ \x20\x1c\x21\x24\x17\x1d\x20\x19\x20\x21\x28\x2c\x2e\x24\x27\x2a\ \x23\x27\x2a\x24\x29\x29\x29\x2f\x2f\x2b\x31\x31\x2d\x33\x31\x2b\ \x2f\x2f\x2c\x30\x33\x2e\x34\x36\x2b\x30\x32\x27\x2d\x2d\x24\x2a\ \x2b\x1b\x20\x23\x0e\x0f\x14\x03\x02\x0b\x06\x07\x12\x08\x0c\x1a\ \x08\x11\x21\x08\x14\x27\x09\x15\x2a\x0b\x17\x2e\x0c\x17\x2c\x0c\ \x19\x2d\x0c\x1a\x2e\x0d\x1a\x2f\x0c\x1a\x30\x0d\x1c\x33\x11\x22\ \x37\x16\x26\x3f\x17\x27\x42\x12\x25\x3d\x13\x26\x3e\x17\x28\x43\ \x13\x26\x41\x19\x2c\x47\x18\x2b\x46\x1a\x2e\x49\x19\x2f\x49\x19\ \x2f\x49\x1b\x32\x4b\x1e\x36\x4e\x21\x39\x52\x1d\x35\x4d\x22\x39\ \x52\x25\x3c\x55\x24\x3b\x55\x2b\x42\x5b\x37\x4f\x67\x2c\x43\x5b\ \x41\x56\x6f\x35\x4a\x62\x35\x4a\x5f\x33\x49\x5e\x36\x4e\x64\x2a\ \x41\x58\x27\x3d\x55\x1e\x33\x49\x25\x38\x4f\x23\x36\x4f\x24\x37\ \x51\x2e\x40\x5a\x21\x2e\x43\x0f\x18\x29\x0b\x0b\x18\x83\x7a\x7e\ \x80\x4c\x4a\xe6\xbc\xb6\xd3\xd2\xe1\xbb\xd7\xf2\xb5\xd3\xf5\xac\ \xca\xee\xad\xcc\xf3\xa6\xc4\xed\xa5\xc4\xec\xa1\xbf\xe8\x9c\xbd\ \xe8\x99\xbc\xe8\xa9\xca\xf3\xad\xcc\xef\xb5\xd1\xf6\xa9\xc7\xf0\ \x98\xb9\xe6\x99\xbb\xe9\x9f\xc1\xef\xa0\xc1\xee\x9b\xbd\xea\xa2\ \xc3\xef\xa1\xc4\xed\xab\xcd\xf6\x8d\xaa\xd5\xa9\xc3\xf3\x89\xa3\ \xe4\x24\x35\x6b\x17\x23\x44\x34\x42\x5c\x51\x64\x7a\x69\x81\x96\ \x67\x80\x95\x60\x79\x8c\x59\x72\x83\x56\x6d\x7b\x57\x6d\x78\x59\ \x6d\x78\x5c\x70\x78\x5e\x71\x78\x63\x74\x7b\x68\x77\x7e\x6c\x7b\ \x84\x76\x84\x90\x7b\x8a\x94\x82\x91\x9a\x00\x00\x00\x1e\x40\x77\ \x1b\x36\x67\x0d\x23\x4e\x13\x25\x4d\x0e\x20\x46\x06\x16\x35\x04\ \x10\x25\x04\x0a\x1c\x06\x07\x19\x04\x05\x12\x05\x05\x10\x05\x07\ \x11\x07\x07\x13\x0a\x0a\x15\x09\x0c\x16\x0b\x10\x19\x0c\x10\x1b\ \x0b\x10\x1d\x0c\x0f\x1d\x0c\x10\x1c\x0a\x11\x1b\x0c\x13\x1c\x0a\ \x11\x1b\x0b\x10\x18\x0b\x10\x1d\x0a\x11\x1c\x0b\x13\x18\x0b\x12\ \x19\x0b\x11\x19\x0d\x11\x19\x0d\x13\x1a\x0d\x10\x18\x0c\x10\x1a\ \x0d\x10\x1a\x0e\x11\x19\x0d\x12\x1a\x10\x13\x1c\x0e\x14\x1b\x11\ \x14\x1d\x10\x12\x1b\x0d\x14\x19\x0e\x14\x1a\x12\x14\x1d\x14\x19\ \x1a\x12\x16\x18\x15\x1b\x1f\x15\x1f\x22\x10\x1a\x1e\x1b\x24\x24\ \x18\x20\x21\x1b\x21\x23\x21\x26\x29\x24\x28\x2d\x24\x29\x2d\x29\ \x2e\x30\x29\x2e\x31\x2a\x2f\x30\x29\x2f\x2e\x24\x29\x2b\x32\x37\ \x3a\x2e\x32\x36\x28\x2d\x2f\x26\x2b\x2c\x24\x29\x2a\x22\x27\x2a\ \x13\x16\x1b\x00\x00\x08\x04\x06\x10\x07\x0b\x19\x07\x0e\x1e\x09\ \x13\x25\x0b\x17\x2a\x0c\x18\x2b\x0b\x17\x2a\x0f\x1d\x30\x0d\x1a\ \x30\x0c\x19\x31\x12\x20\x37\x0e\x1c\x33\x0b\x1c\x33\x12\x23\x3c\ \x13\x24\x3e\x16\x29\x42\x14\x27\x40\x11\x23\x3e\x1d\x30\x4b\x18\ \x2b\x46\x19\x2c\x47\x22\x37\x52\x1a\x31\x4a\x14\x2c\x45\x1e\x35\ \x4d\x20\x37\x50\x1d\x33\x4a\x23\x39\x51\x1b\x31\x4a\x1f\x35\x4e\ \x24\x3a\x53\x2e\x45\x5e\x2e\x46\x5e\x26\x3e\x56\x31\x48\x61\x30\ \x47\x5c\x30\x46\x5a\x33\x4a\x5f\x34\x4b\x61\x23\x38\x51\x30\x46\ \x5c\x23\x36\x4d\x21\x33\x4b\x29\x3c\x55\x23\x38\x51\x22\x36\x50\ \x1e\x2c\x42\x16\x1e\x31\x0a\x0b\x1a\x7d\x76\x7a\x80\x52\x4e\xf3\ \xca\xc2\xda\xdc\xec\xb3\xd0\xea\xb0\xcd\xf0\xac\xca\xee\xaa\xc8\ \xf0\xa7\xc5\xee\xa2\xc1\xe9\xa3\xc1\xeb\xa3\xc3\xef\x9d\xbf\xea\ \xa1\xc3\xea\xac\xcc\xee\xb8\xd4\xf8\xa3\xc1\xeb\x98\xba\xe7\x94\ \xb6\xe4\xa2\xc3\xf0\x9e\xbf\xec\x9c\xbd\xea\xa1\xc4\xef\xa3\xc7\ \xee\xad\xd0\xf8\x7f\x9c\xc9\xa9\xc4\xf5\x7f\x99\xd9\x20\x2f\x61\ \x1e\x28\x46\x35\x45\x5e\x64\x79\x8f\x6d\x85\x99\x66\x7e\x94\x5f\ \x77\x8b\x57\x70\x80\x56\x6d\x79\x58\x6d\x78\x5a\x6e\x78\x5d\x70\ \x78\x63\x74\x7b\x67\x76\x7d\x6d\x7b\x83\x74\x83\x8c\x7b\x89\x94\ \x80\x8f\x98\x83\x94\x9d\x00\x00\x00\x17\x36\x6b\x20\x38\x65\x0d\ \x1e\x44\x09\x1a\x39\x0b\x19\x38\x05\x12\x2b\x06\x0f\x20\x07\x0c\ \x1b\x06\x07\x17\x05\x06\x14\x05\x05\x11\x07\x08\x12\x07\x09\x16\ \x09\x09\x15\x0a\x0c\x16\x0c\x0e\x19\x0b\x0f\x1a\x0b\x11\x1f\x0a\ \x0e\x19\x0e\x10\x19\x0c\x10\x19\x0a\x0f\x19\x0a\x11\x1b\x02\x10\ \x1a\x0b\x0f\x1e\x05\x0e\x1b\x03\x12\x1c\x06\x12\x1f\x05\x12\x20\ \x03\x12\x21\x0a\x15\x1c\x09\x11\x1b\x04\x0e\x20\x09\x13\x24\x12\ \x15\x1e\x11\x15\x1f\x0e\x14\x1c\x11\x17\x1e\x0f\x15\x1c\x0b\x13\ \x1d\x04\x11\x20\x05\x10\x1c\x0e\x14\x22\x13\x16\x1f\x13\x1d\x20\ \x0e\x16\x21\x14\x17\x21\x15\x19\x1f\x18\x1e\x25\x16\x19\x1e\x16\ \x19\x1c\x21\x26\x29\x18\x1f\x22\x1c\x23\x25\x2c\x31\x32\x2a\x2e\ \x2f\x37\x3b\x3c\x32\x37\x36\x2e\x34\x33\x2e\x34\x33\x2a\x31\x34\ \x26\x2d\x2d\x26\x2b\x2b\x29\x2e\x2f\x1c\x21\x23\x0e\x11\x15\x02\ \x01\x0a\x04\x05\x10\x07\x0a\x18\x09\x0f\x1d\x0c\x16\x25\x0f\x1b\ \x2d\x0b\x19\x2b\x0b\x19\x2b\x0d\x1b\x30\x0e\x1b\x31\x10\x1e\x34\ \x0c\x1a\x32\x15\x23\x3d\x0f\x20\x36\x1b\x2b\x44\x1f\x30\x4a\x16\ \x29\x42\x17\x2a\x45\x19\x2b\x48\x20\x31\x4f\x22\x34\x51\x19\x2d\ \x4a\x1b\x31\x4b\x1a\x30\x49\x16\x2c\x45\x22\x38\x51\x1b\x31\x4a\ \x17\x2e\x44\x39\x50\x66\x1f\x35\x4e\x25\x3b\x54\x3b\x51\x6a\x31\ \x48\x64\x30\x47\x61\x32\x4a\x62\x2c\x44\x5b\x37\x4f\x64\x38\x51\ \x64\x34\x4b\x60\x33\x47\x5f\x25\x39\x52\x2c\x41\x58\x24\x38\x4f\ \x26\x38\x51\x27\x3c\x55\x25\x3c\x55\x20\x36\x50\x33\x43\x5a\x1c\ \x27\x3a\x0d\x0f\x1f\x63\x5d\x62\x88\x61\x5b\xf7\xd6\xce\xd7\xdc\ \xee\xaf\xcf\xec\xad\xc9\xed\xae\xcb\xf0\xa9\xc7\xee\xa7\xc5\xee\ \xa5\xc5\xee\xa3\xc3\xed\x9d\xbe\xe9\x9b\xbd\xe7\xa1\xc2\xe8\xab\ \xca\xec\xb4\xd0\xf7\x9f\xbe\xe9\x9a\xbc\xea\x96\xb8\xe6\xa1\xc2\ \xf0\xa0\xc1\xef\x9c\xbd\xeb\xa1\xc3\xee\xab\xce\xf6\xb1\xd3\xfc\ \x78\x95\xc1\x9e\xba\xee\x71\x89\xc4\x10\x1c\x48\x2b\x36\x51\x32\ \x41\x5a\x6b\x82\x98\x6b\x85\x99\x62\x7d\x91\x5d\x75\x87\x57\x6f\ \x7e\x57\x6d\x78\x5a\x6e\x79\x5e\x70\x7a\x60\x71\x7a\x65\x75\x7c\ \x6a\x77\x7f\x72\x7e\x87\x77\x86\x8f\x7b\x8b\x94\x80\x91\x9a\x83\ \x94\x9d\x00\x00\x00\x0e\x2a\x5a\x0a\x1e\x45\x16\x24\x44\x0c\x17\ \x36\x0c\x17\x34\x07\x11\x29\x09\x10\x25\x08\x0e\x1e\x07\x0a\x18\ \x05\x05\x15\x05\x05\x12\x08\x09\x13\x06\x09\x14\x0b\x0d\x19\x0a\ \x0c\x17\x0a\x0e\x1a\x06\x0d\x1b\x06\x0d\x19\x07\x0e\x1d\x05\x0d\ \x1e\x08\x0f\x1d\x07\x0e\x19\x09\x15\x28\x22\x31\x49\x05\x0f\x21\ \x0d\x1c\x2e\x32\x47\x68\x1d\x32\x50\x1a\x2d\x46\x41\x56\x6f\x08\ \x17\x28\x0d\x1e\x2e\x33\x4e\x6c\x11\x20\x3c\x0b\x0d\x1b\x12\x15\ \x21\x08\x11\x19\x0c\x13\x1d\x0d\x17\x1c\x24\x35\x42\x37\x4e\x69\ \x15\x25\x39\x36\x47\x5e\x12\x1d\x33\x2d\x3e\x49\x33\x48\x5f\x12\ \x21\x30\x40\x52\x5e\x36\x4e\x5f\x3e\x51\x5f\x1a\x25\x2c\x1f\x2b\ \x32\x0e\x1b\x23\x12\x1f\x24\x17\x21\x26\x1f\x27\x2b\x27\x2f\x32\ \x26\x2d\x2e\x2b\x33\x32\x2b\x34\x32\x27\x2e\x31\x2a\x32\x31\x2a\ \x30\x2f\x26\x2b\x2b\x1b\x20\x22\x0f\x12\x16\x03\x02\x0a\x03\x05\ \x0f\x06\x0b\x17\x0b\x12\x1f\x0a\x13\x23\x0b\x18\x29\x0c\x1a\x2c\ \x0a\x18\x2a\x0e\x1c\x32\x12\x20\x36\x0f\x1d\x34\x10\x1e\x37\x15\ \x24\x3e\x10\x20\x37\x13\x24\x3b\x10\x22\x3a\x16\x29\x42\x12\x25\ \x40\x15\x27\x44\x1b\x2d\x4a\x16\x2b\x47\x1b\x30\x4c\x1f\x35\x4e\ \x19\x2f\x48\x20\x35\x4f\x19\x2e\x48\x1e\x33\x4e\x17\x2c\x46\x28\ \x3d\x58\x22\x37\x51\x1f\x34\x4e\x29\x3e\x59\x23\x3b\x57\x24\x3c\ \x57\x30\x47\x61\x23\x3b\x53\x2b\x44\x5a\x39\x51\x66\x31\x48\x5e\ \x31\x46\x5f\x36\x4a\x63\x38\x4d\x66\x27\x3b\x54\x2b\x3f\x58\x26\ \x3a\x53\x26\x3b\x56\x24\x38\x54\x23\x33\x48\x19\x26\x38\x0e\x12\ \x22\x49\x46\x4e\x9e\x7e\x7a\xfd\xe3\xe0\xc5\xce\xe6\xb1\xd0\xf0\ \xb2\xcd\xf1\xb1\xce\xf3\xab\xc8\xed\xab\xca\xf2\xa5\xc4\xef\xa3\ \xc3\xf0\x9c\xbe\xea\x9d\xbe\xe7\xa6\xc7\xec\xad\xcc\xee\xb0\xcd\ \xf4\x9e\xbd\xe9\x9a\xbb\xea\x9d\xbf\xed\xa1\xc2\xef\x95\xb6\xe4\ \x96\xb8\xe4\x9f\xc1\xec\xad\xd0\xfa\xaa\xcc\xf5\x68\x86\xb4\x8f\ \xad\xe2\x5b\x71\xa7\x0b\x16\x3a\x2f\x3a\x52\x4c\x5e\x75\x67\x7f\ \x95\x68\x83\x97\x61\x7b\x8d\x5b\x73\x84\x56\x6d\x7b\x57\x6b\x77\ \x5c\x6e\x79\x5f\x6f\x7b\x62\x72\x7b\x6b\x7a\x81\x72\x7f\x87\x76\ \x85\x8d\x7c\x8d\x96\x80\x90\x9a\x82\x94\x9c\x82\x95\x9d\x00\x00\ \x00\x16\x30\x5c\x03\x14\x35\x0b\x18\x34\x0b\x18\x32\x0c\x18\x32\ \x06\x11\x26\x06\x11\x22\x07\x10\x1f\x07\x08\x17\x05\x05\x15\x06\ \x06\x14\x09\x0a\x15\x09\x0c\x16\x0a\x0c\x16\x09\x0c\x17\x05\x0e\ \x1b\x04\x11\x20\x0e\x1a\x2b\x0f\x1f\x3a\x26\x39\x5b\x06\x15\x31\ \x1f\x30\x46\x1a\x2b\x45\x08\x16\x31\x39\x50\x6d\x00\x09\x28\x22\ \x38\x60\x09\x1a\x3c\x04\x0f\x21\x10\x1e\x30\x0a\x13\x22\x02\x0d\ \x20\x2f\x47\x6b\x04\x16\x32\x0d\x12\x1a\x0c\x12\x1a\x0d\x13\x1a\ \x0f\x12\x1c\x0f\x15\x1a\x08\x1a\x28\x31\x47\x69\x00\x06\x1d\x2c\ \x46\x5f\x1b\x2a\x45\x0d\x23\x31\x32\x47\x63\x04\x15\x23\x1a\x2e\ \x3b\x33\x52\x68\x07\x1d\x2f\x5e\x75\x86\x17\x30\x42\x79\x93\xa6\ \x48\x5e\x70\x63\x76\x85\x39\x4c\x59\x3d\x50\x5d\x3e\x4f\x59\x1d\ \x2c\x33\x1f\x2d\x31\x27\x2f\x31\x25\x2d\x2c\x25\x2c\x2b\x25\x2a\ \x29\x22\x27\x28\x15\x17\x1a\x01\x01\x08\x05\x06\x11\x05\x09\x15\ \x07\x10\x1e\x06\x12\x22\x0e\x1a\x2c\x09\x15\x28\x0f\x19\x2b\x0c\ \x1a\x2f\x0e\x1c\x33\x13\x21\x38\x15\x23\x3d\x19\x27\x42\x11\x21\ \x39\x11\x22\x38\x13\x25\x3c\x1b\x2e\x46\x15\x28\x44\x17\x29\x47\ \x19\x2e\x4a\x1d\x32\x4e\x1b\x30\x4c\x19\x30\x4a\x17\x2e\x48\x1d\ \x34\x4f\x19\x30\x4c\x20\x36\x52\x22\x39\x54\x2b\x42\x5d\x2c\x43\ \x5f\x27\x3e\x5b\x2e\x45\x61\x32\x4b\x65\x34\x4d\x67\x32\x4a\x64\ \x35\x4b\x66\x33\x49\x63\x32\x46\x5d\x37\x4c\x62\x37\x4d\x66\x2e\ \x44\x5e\x2c\x43\x5c\x22\x39\x52\x28\x3d\x55\x2a\x3c\x57\x2c\x3f\ \x5a\x2b\x3d\x58\x23\x32\x47\x1f\x2e\x40\x0c\x15\x25\x52\x52\x5c\ \xbc\xa1\xa2\xfe\xeb\xee\xb3\xc0\xdc\xb2\xd3\xf4\xaf\xc9\xed\xb3\ \xce\xf3\xab\xc8\xed\xa6\xc6\xed\x9d\xbd\xe8\x9c\xbc\xea\x9d\xbe\ \xea\xa1\xc1\xea\xab\xcb\xf0\xab\xcc\xed\xab\xca\xf1\x9f\xc0\xec\ \x99\xbc\xeb\x9d\xbf\xee\xa1\xc3\xf0\x9b\xbb\xeb\x9c\xbd\xea\xa1\ \xc3\xee\xab\xcd\xf8\x8e\xae\xda\x73\x93\xbf\x8e\xac\xe3\x3b\x4d\ \x81\x16\x20\x3f\x30\x3e\x53\x57\x6c\x82\x69\x83\x99\x66\x81\x95\ \x61\x79\x8b\x5b\x71\x81\x55\x6b\x79\x5a\x6d\x78\x5e\x70\x7b\x63\ \x73\x80\x66\x77\x80\x6f\x7f\x87\x73\x83\x8a\x79\x8a\x91\x7e\x90\ \x98\x82\x95\x9c\x82\x95\x9d\x81\x94\x9c\x00\x00\x00\x18\x31\x62\ \x0d\x1f\x44\x06\x12\x2a\x0e\x1b\x35\x0a\x17\x31\x05\x11\x28\x09\ \x13\x25\x07\x0d\x1c\x09\x0b\x19\x04\x05\x12\x06\x08\x13\x08\x0e\ \x19\x08\x0e\x18\x08\x10\x19\x09\x0f\x16\x15\x21\x33\x37\x53\x78\ \x0c\x19\x33\x00\x0a\x2a\x2e\x4c\x7d\x00\x09\x2a\x25\x3b\x5f\x00\ \x0a\x1f\x01\x12\x1c\x2a\x42\x66\x0e\x1e\x44\x2c\x42\x63\x08\x17\ \x37\x07\x0e\x1b\x0f\x11\x17\x0d\x11\x1c\x09\x17\x2f\x2b\x43\x66\ \x0b\x1f\x38\x0b\x16\x1d\x0b\x10\x18\x0b\x14\x18\x0e\x14\x1a\x0f\ \x17\x17\x0c\x20\x2c\x34\x4d\x6e\x27\x3d\x55\x23\x3c\x58\x09\x15\ \x24\x0e\x1f\x33\x2f\x4b\x68\x08\x10\x1c\x1d\x31\x40\x29\x47\x5d\ \x04\x17\x28\x4e\x6d\x80\x11\x25\x37\x5c\x7f\x97\x0b\x1c\x2d\x25\ \x2e\x39\x5f\x74\x7d\x44\x5a\x6b\x8c\xac\xc5\x86\x9f\xaf\x71\x87\ \x99\x0e\x1a\x1f\x2a\x30\x2f\x2a\x2f\x2e\x2e\x33\x34\x1c\x20\x22\ \x0d\x10\x14\x03\x02\x08\x04\x05\x0e\x05\x08\x15\x0b\x14\x22\x0d\ \x18\x27\x0c\x17\x2a\x09\x16\x29\x0b\x19\x2c\x09\x17\x2d\x0f\x1d\ \x34\x0f\x1f\x36\x0f\x1f\x39\x15\x26\x3f\x0f\x20\x35\x13\x23\x3a\ \x14\x23\x3d\x12\x21\x3b\x17\x27\x41\x18\x29\x45\x1a\x2e\x4a\x20\ \x35\x51\x19\x2e\x48\x1d\x32\x4e\x20\x37\x52\x1b\x32\x4c\x1b\x32\ \x4c\x1e\x34\x50\x1f\x34\x50\x1f\x34\x50\x2c\x42\x5e\x21\x37\x53\ \x2d\x44\x5f\x2b\x43\x5f\x27\x41\x5c\x2d\x48\x62\x2d\x47\x5f\x2e\ \x47\x5f\x3c\x53\x6d\x34\x4a\x63\x38\x4e\x68\x33\x49\x63\x30\x48\ \x61\x31\x49\x61\x2a\x3e\x57\x24\x37\x52\x30\x43\x5e\x36\x44\x60\ \x27\x34\x4c\x2a\x35\x48\x22\x2b\x3c\x34\x39\x48\xd1\xc1\xc7\xe1\ \xdc\xe6\xaf\xc7\xe6\xb2\xd1\xf1\xb2\xcd\xf2\xab\xc9\xf1\xae\xcb\ \xf2\xa7\xc5\xee\xa1\xbf\xea\x9c\xbc\xea\xa1\xc0\xed\xa5\xc4\xeb\ \xae\xcc\xf0\xb1\xcf\xf2\xaa\xc8\xf2\x9f\xbe\xeb\x9b\xbc\xe9\x9c\ \xbc\xe8\xa7\xc6\xf1\x98\xb9\xe6\x99\xbb\xea\x9b\xbe\xea\xa5\xc8\ \xf1\x62\x83\xaf\x98\xb9\xe9\x8f\xac\xe5\x1e\x2b\x55\x22\x2e\x47\ \x32\x44\x5a\x55\x6c\x82\x67\x81\x95\x60\x7c\x8d\x5b\x75\x85\x56\ \x6c\x80\x55\x6a\x7a\x5b\x6e\x79\x61\x74\x7d\x66\x78\x83\x6a\x7b\ \x84\x71\x81\x88\x76\x86\x8d\x7b\x8d\x94\x7f\x94\x99\x81\x97\x9d\ \x80\x94\x9b\x7e\x8f\x9a\x00\x00\x00\x1c\x37\x68\x15\x28\x50\x08\ \x15\x30\x0d\x1a\x33\x09\x16\x30\x07\x13\x2b\x08\x11\x24\x06\x0d\ \x1e\x09\x0b\x1b\x06\x06\x14\x0a\x0d\x18\x0e\x15\x22\x0a\x12\x1c\ \x08\x11\x1b\x09\x10\x18\x00\x08\x1c\x2b\x48\x73\x00\x0b\x2e\x12\ \x1c\x3d\x2b\x43\x70\x0b\x19\x3d\x15\x2e\x58\x0b\x11\x1f\x02\x0f\ \x1b\x30\x46\x6b\x07\x17\x3d\x2d\x47\x6a\x08\x19\x39\x06\x0e\x1c\ \x10\x14\x1d\x00\x07\x18\x2e\x45\x63\x04\x14\x31\x2f\x43\x5c\x01\ \x10\x21\x0a\x0e\x18\x0c\x10\x17\x0d\x13\x1a\x0c\x15\x19\x06\x17\ \x27\x31\x4a\x6a\x00\x09\x23\x34\x4a\x68\x12\x21\x31\x11\x24\x38\ \x33\x4d\x69\x0d\x14\x21\x1f\x31\x41\x2f\x4d\x63\x22\x3a\x4b\x3b\ \x56\x69\x12\x23\x32\x62\x80\x96\x0e\x1d\x2b\x25\x2b\x2f\x2a\x31\ \x38\x38\x50\x5e\x55\x74\x8e\x09\x1b\x2e\x53\x6a\x7d\x28\x34\x3d\ \x26\x2b\x2c\x28\x2d\x2e\x21\x26\x27\x17\x1b\x1c\x10\x12\x16\x02\ \x02\x08\x07\x07\x12\x06\x09\x18\x09\x11\x20\x0b\x15\x26\x0d\x18\ \x2b\x0b\x18\x2b\x0a\x18\x2b\x0c\x1b\x31\x0c\x1a\x31\x0e\x1d\x34\ \x14\x24\x3b\x0b\x1b\x34\x11\x21\x38\x15\x24\x3f\x16\x27\x42\x11\ \x23\x3e\x18\x29\x44\x13\x24\x41\x1a\x2e\x4a\x17\x2c\x48\x18\x2b\ \x47\x1b\x2f\x4b\x1a\x30\x4b\x18\x2f\x49\x17\x2e\x49\x1a\x30\x4c\ \x1c\x31\x4d\x1d\x32\x4e\x2c\x42\x5f\x22\x38\x53\x26\x3c\x57\x2c\ \x42\x5d\x29\x41\x5b\x3b\x54\x6e\x35\x4c\x66\x32\x4a\x63\x3e\x55\ \x6f\x33\x4a\x64\x35\x4c\x66\x32\x49\x62\x2b\x43\x5a\x2a\x40\x56\ \x29\x3a\x53\x2e\x3d\x57\x35\x45\x5f\x47\x56\x71\x38\x45\x5d\x39\ \x43\x58\x36\x3e\x51\x42\x47\x5b\xcd\xc5\xd1\xb4\xb8\xc7\xb1\xcc\ \xee\xb3\xd1\xf1\xad\xca\xee\xaf\xcc\xf1\xac\xca\xef\xa9\xc7\xef\ \xa4\xc3\xee\xa3\xc2\xee\xac\xcb\xf4\xac\xca\xef\xb3\xd0\xf3\xb5\ \xd0\xf2\xa8\xc5\xef\xa1\xc1\xed\xa2\xc3\xf0\xa4\xc4\xef\xa9\xc8\ \xf2\x9b\xbc\xe9\x9b\xbc\xec\x9b\xbe\xe9\xa8\xca\xf4\x5c\x7c\xa9\ \x97\xb7\xe9\x8b\xa5\xde\x15\x1f\x47\x23\x32\x4a\x2c\x3f\x56\x5a\ \x71\x87\x65\x7f\x93\x60\x7b\x8c\x5a\x73\x83\x54\x6b\x7c\x56\x6b\ \x7a\x5d\x71\x7a\x62\x75\x7d\x67\x7a\x82\x6b\x7e\x86\x70\x81\x89\ \x76\x88\x8f\x78\x8b\x92\x7c\x92\x98\x7d\x92\x9a\x7e\x92\x9c\x79\ \x8d\x98\x00\x00\x00\x19\x35\x66\x11\x28\x53\x0c\x19\x39\x0a\x17\ \x30\x0b\x16\x30\x0a\x15\x2d\x07\x11\x25\x08\x0e\x21\x08\x0b\x1c\ \x05\x07\x16\x0a\x0f\x1d\x0f\x18\x25\x0d\x15\x21\x0a\x13\x1f\x0a\ \x11\x1a\x00\x09\x1f\x30\x50\x7d\x19\x2a\x4c\x0f\x1c\x40\x29\x45\ \x76\x01\x0f\x30\x27\x40\x64\x00\x05\x1c\x08\x16\x2e\x29\x3e\x60\ \x05\x11\x2f\x30\x49\x69\x1d\x2e\x4d\x06\x0e\x1b\x0b\x12\x1e\x1d\ \x2e\x43\x27\x3f\x5d\x05\x12\x25\x1a\x28\x3d\x25\x37\x51\x09\x0f\ \x1a\x0e\x10\x18\x0e\x13\x1c\x0d\x15\x1e\x29\x37\x49\x2a\x3d\x58\ \x1c\x2a\x41\x27\x3a\x53\x0b\x19\x2a\x26\x37\x4b\x3b\x4f\x69\x0f\ \x19\x29\x27\x39\x4c\x37\x54\x69\x0e\x24\x37\x4c\x65\x7b\x06\x1a\ \x29\x5b\x75\x8d\x08\x18\x27\x28\x30\x37\x27\x2e\x32\x3f\x50\x5c\ \x80\xa6\xbc\x63\x80\x8f\x52\x64\x79\x28\x31\x3d\x28\x2c\x31\x25\ \x2b\x2d\x1e\x24\x26\x1a\x1e\x1e\x0f\x11\x16\x02\x03\x0c\x01\x03\ \x10\x09\x0d\x1e\x0c\x15\x24\x0c\x17\x28\x0a\x16\x2a\x0b\x18\x2e\ \x0b\x1a\x2e\x0e\x1c\x31\x0d\x1b\x32\x0b\x19\x30\x15\x24\x3b\x13\ \x22\x39\x12\x1f\x39\x10\x1f\x3b\x17\x29\x46\x14\x2a\x45\x17\x2b\ \x48\x1a\x2c\x49\x1a\x2c\x48\x1a\x2d\x49\x1a\x2c\x49\x1e\x32\x4e\ \x21\x35\x4f\x1b\x31\x4a\x1d\x32\x4d\x28\x3e\x5a\x26\x3c\x58\x1f\ \x35\x51\x28\x3f\x59\x23\x3a\x54\x21\x38\x51\x26\x3c\x55\x2d\x44\ \x5d\x2c\x42\x5d\x3a\x50\x6c\x33\x49\x64\x35\x4d\x65\x3d\x54\x6e\ \x34\x4c\x66\x2f\x47\x5f\x2c\x41\x58\x2f\x42\x59\x31\x41\x58\x38\ \x45\x5e\x3c\x49\x63\x32\x41\x5b\x40\x4e\x66\x3f\x4a\x61\x34\x3c\ \x54\x37\x3f\x59\xb9\xc0\xd2\x99\xa6\xbd\xb3\xd2\xf3\xb6\xd4\xf3\ \xab\xc9\xef\xb1\xcf\xf2\xad\xcd\xf1\xa6\xc6\xed\xa1\xc1\xec\xa4\ \xc2\xee\xa9\xc6\xee\xb0\xce\xef\xb6\xd2\xf2\xba\xd5\xf6\xa3\xc0\ \xea\x9f\xbf\xea\xa4\xc4\xf1\xa0\xc0\xeb\xad\xcc\xf5\x9c\xbd\xea\ \x99\xbb\xe8\x9f\xc2\xeb\xaa\xcd\xf5\x82\xa3\xcf\x8b\xab\xe0\x6a\ \x82\xb8\x18\x25\x4a\x25\x35\x4d\x57\x6d\x84\x73\x8a\xa0\x65\x7e\ \x92\x5f\x79\x8a\x56\x70\x80\x54\x6c\x7b\x58\x6e\x7b\x5e\x73\x7b\ \x64\x77\x7f\x67\x7b\x83\x69\x7d\x85\x6e\x81\x89\x71\x84\x8c\x76\ \x8a\x92\x78\x8e\x96\x7c\x90\x9b\x7c\x8f\x9b\x74\x88\x95\x00\x00\ \x00\x19\x38\x6a\x12\x2a\x58\x07\x17\x39\x05\x12\x2c\x0e\x1a\x33\ \x08\x13\x2a\x06\x12\x28\x07\x0e\x23\x06\x09\x1b\x04\x07\x16\x0c\ \x12\x21\x0e\x18\x26\x09\x13\x1f\x0e\x17\x24\x0b\x14\x1e\x00\x0a\ \x22\x36\x54\x84\x03\x0e\x29\x0a\x17\x39\x32\x4f\x7f\x06\x12\x29\ \x0f\x21\x37\x2d\x3e\x5b\x21\x33\x4d\x01\x10\x25\x05\x11\x22\x00\ \x0f\x24\x01\x11\x24\x07\x10\x1a\x09\x11\x1a\x04\x10\x20\x02\x0f\ \x23\x0a\x13\x1f\x07\x0f\x1d\x02\x0b\x1f\x0a\x12\x1a\x16\x19\x21\ \x0e\x16\x1e\x0f\x14\x1e\x0c\x12\x20\x06\x11\x21\x08\x13\x21\x13\ \x1f\x2d\x0e\x15\x21\x0f\x19\x26\x0c\x16\x28\x0f\x18\x23\x19\x25\ \x36\x1c\x2f\x3f\x34\x45\x56\x15\x25\x38\x36\x49\x53\x6d\x81\x97\ \x3c\x4f\x5d\x18\x21\x28\x21\x2a\x2c\x2d\x47\x52\x68\x88\x9f\x08\ \x1d\x2a\x46\x5d\x6e\x27\x30\x3a\x33\x37\x3b\x2d\x33\x36\x25\x2b\ \x2c\x19\x1e\x1d\x0d\x10\x14\x17\x1b\x25\x12\x1a\x29\x07\x10\x21\ \x07\x11\x22\x08\x13\x25\x09\x15\x29\x09\x17\x2d\x08\x16\x2c\x0e\ \x1c\x32\x0f\x1d\x33\x0f\x1d\x34\x10\x1e\x35\x0c\x1a\x32\x1b\x2a\ \x44\x19\x28\x44\x16\x27\x44\x16\x27\x44\x15\x29\x45\x0f\x23\x3d\ \x14\x26\x3f\x1b\x2b\x45\x0f\x21\x3b\x1f\x31\x4b\x16\x2a\x43\x13\ \x28\x40\x1d\x32\x4c\x21\x36\x52\x17\x2d\x49\x1b\x32\x4d\x21\x38\ \x52\x18\x2e\x48\x1f\x34\x4f\x24\x37\x52\x23\x39\x54\x2b\x43\x5c\ \x2c\x43\x5d\x28\x3f\x59\x36\x4e\x66\x3b\x55\x70\x35\x4f\x6a\x40\ \x58\x70\x3e\x55\x6b\x32\x48\x5e\x31\x42\x5c\x31\x40\x5a\x37\x46\ \x60\x45\x56\x6e\x3e\x4c\x63\x36\x42\x58\x36\x40\x58\x31\x3c\x55\ \xce\xdc\xef\x99\xae\xcb\xb4\xd5\xf7\xb0\xcd\xed\xae\xcb\xf6\xa8\ \xc6\xed\xa7\xc6\xee\x9e\xbe\xe8\xa3\xc2\xef\xa4\xc2\xee\xa7\xc6\ \xeb\xb7\xd5\xf5\xb8\xd5\xf4\xba\xd4\xf8\xa5\xc2\xec\xa2\xc2\xed\ \x9f\xc1\xec\xa4\xc5\xef\xac\xcb\xf4\x9c\xbe\xea\x99\xbb\xe9\xa4\ \xc7\xf1\xa1\xc2\xea\x91\xaf\xdc\x91\xaf\xe6\x4c\x63\x97\x19\x26\ \x48\x30\x43\x5b\x60\x78\x90\x72\x8a\xa0\x60\x7a\x8e\x5d\x77\x88\ \x54\x6d\x7d\x54\x6c\x79\x58\x6f\x7a\x60\x73\x7e\x63\x76\x7f\x68\ \x7b\x83\x68\x7c\x84\x6b\x7d\x85\x70\x82\x8a\x74\x88\x90\x76\x8c\ \x96\x7a\x8c\x9a\x78\x8c\x9a\x70\x85\x94\x00\x00\x00\x21\x41\x73\ \x18\x33\x60\x11\x23\x46\x06\x13\x2d\x0d\x18\x30\x0a\x13\x2c\x06\ \x10\x28\x08\x0e\x25\x06\x09\x1b\x05\x08\x18\x12\x19\x28\x0e\x1a\ \x29\x0a\x14\x22\x09\x14\x22\x07\x0f\x1b\x13\x20\x39\x35\x53\x83\ \x0e\x20\x3b\x08\x16\x2d\x06\x12\x30\x0d\x14\x1f\x01\x10\x20\x08\ \x0e\x20\x07\x13\x20\x0b\x17\x1a\x0a\x14\x1d\x05\x10\x1d\x0a\x14\ \x1e\x0c\x13\x1c\x0d\x13\x1a\x0d\x11\x1a\x10\x14\x1d\x0a\x12\x18\ \x0e\x12\x19\x10\x10\x1b\x0a\x11\x19\x10\x14\x1c\x08\x12\x16\x0c\ \x11\x19\x15\x14\x1e\x0c\x10\x15\x0f\x15\x1b\x14\x18\x1e\x12\x15\ \x1a\x14\x17\x1d\x13\x14\x1c\x15\x19\x1a\x16\x19\x22\x14\x1b\x1f\ \x16\x1e\x23\x1b\x1e\x27\x1c\x27\x28\x1d\x28\x35\x1c\x2b\x33\x2a\ \x2f\x2f\x1e\x29\x2c\x56\x64\x70\x7d\x95\xaa\x67\x78\x85\x65\x75\ \x82\x21\x2b\x30\x25\x2a\x2c\x22\x2a\x2d\x1d\x22\x24\x20\x25\x25\ \x0c\x11\x15\x1c\x22\x2c\x22\x2c\x3b\x09\x15\x27\x0d\x19\x2a\x0a\ \x17\x28\x0f\x1d\x31\x0c\x19\x2f\x13\x21\x37\x0e\x1c\x32\x0b\x19\ \x2f\x11\x1f\x35\x0e\x1b\x32\x0d\x1b\x32\x0c\x1d\x34\x12\x21\x3b\ \x12\x21\x3d\x15\x23\x3f\x1c\x2f\x49\x21\x35\x4d\x1d\x2f\x46\x1c\ \x2e\x44\x1b\x2d\x47\x27\x39\x52\x1a\x2b\x45\x20\x33\x4d\x21\x35\ \x50\x27\x3c\x58\x22\x38\x53\x22\x3a\x54\x27\x3e\x58\x21\x37\x51\ \x24\x39\x52\x26\x3a\x56\x26\x3d\x59\x2e\x47\x60\x32\x4c\x64\x34\ \x4c\x64\x36\x4f\x67\x2e\x49\x64\x2d\x47\x62\x37\x4f\x67\x3b\x53\ \x6a\x3e\x55\x6e\x33\x47\x61\x30\x43\x5e\x47\x5a\x74\x3e\x50\x67\ \x2f\x3d\x54\x3b\x48\x5e\x34\x40\x57\x26\x33\x4a\x55\x67\x7c\xa9\ \xc1\xdf\xb4\xd4\xf6\xab\xc8\xe7\xa6\xc5\xf1\xa4\xc1\xec\xac\xca\ \xf3\xa1\xc1\xeb\xa0\xc0\xed\x9f\xc0\xeb\xa1\xc1\xe5\xb8\xd7\xf7\ \xb5\xd2\xf3\xb9\xd5\xf9\xa7\xc5\xed\xa3\xc3\xee\xa3\xc5\xf0\xa2\ \xc3\xec\xa4\xc4\xeb\xa2\xc3\xef\x9d\xbd\xeb\xa1\xc4\xec\xa4\xc3\ \xec\x8f\xae\xdb\x83\xa0\xd9\x25\x3d\x6d\x1a\x27\x45\x36\x49\x60\ \x69\x84\x9b\x66\x7e\x94\x63\x7b\x8f\x5a\x72\x84\x54\x6d\x7d\x54\ \x6c\x79\x59\x6f\x7b\x60\x72\x7f\x61\x73\x7f\x65\x77\x81\x68\x7b\ \x82\x6b\x7c\x85\x6f\x80\x89\x74\x86\x91\x76\x8a\x95\x77\x8b\x99\ \x74\x89\x98\x6c\x82\x92\x00\x00\x00\x29\x4a\x78\x19\x33\x61\x12\ \x24\x4a\x09\x16\x30\x08\x13\x26\x07\x14\x2a\x06\x0f\x29\x0a\x10\ \x26\x09\x0b\x1f\x03\x07\x19\x11\x1b\x2c\x0a\x16\x26\x0b\x14\x21\ \x0d\x17\x21\x06\x10\x1b\x0a\x16\x26\x00\x0c\x21\x07\x0f\x1f\x09\ \x11\x20\x09\x12\x1f\x0b\x14\x1e\x0b\x14\x1f\x09\x11\x1e\x06\x0e\ \x1a\x07\x10\x1a\x05\x0e\x17\x06\x0f\x19\x09\x11\x1a\x07\x0e\x17\ \x0b\x11\x1a\x0c\x10\x1a\x0a\x0e\x17\x0c\x10\x19\x0d\x10\x1a\x0d\ \x10\x19\x0d\x10\x1a\x0e\x11\x1a\x12\x16\x1d\x11\x14\x19\x0c\x0f\ \x17\x0e\x10\x19\x0d\x11\x19\x0e\x14\x1b\x11\x17\x1e\x14\x18\x20\ \x12\x15\x1d\x13\x16\x1e\x17\x1b\x21\x14\x19\x1d\x19\x1e\x21\x18\ \x1b\x21\x19\x1d\x22\x1a\x20\x25\x1f\x26\x27\x1e\x23\x24\x28\x2f\ \x31\x22\x2b\x2e\x2e\x39\x3c\x32\x3e\x45\x48\x53\x5b\x36\x3b\x40\ \x2c\x32\x36\x27\x2b\x2d\x29\x2e\x2f\x1b\x20\x20\x05\x09\x0c\x10\ \x16\x20\x23\x32\x42\x0b\x19\x2b\x0a\x15\x28\x0c\x17\x2b\x11\x1c\ \x31\x0e\x1a\x30\x0c\x1a\x2d\x0b\x19\x2f\x0d\x1b\x31\x13\x22\x38\ \x10\x20\x37\x16\x26\x3d\x0e\x1e\x35\x0e\x1c\x33\x14\x23\x39\x12\ \x23\x3a\x18\x2a\x45\x18\x2a\x46\x15\x2a\x41\x17\x2b\x41\x15\x25\ \x3c\x20\x31\x46\x16\x2a\x3f\x19\x30\x47\x20\x37\x52\x1f\x34\x52\ \x20\x34\x50\x23\x39\x54\x1c\x33\x4d\x1b\x2f\x49\x21\x35\x4f\x26\ \x3e\x58\x20\x36\x51\x25\x3b\x55\x31\x48\x61\x30\x47\x60\x3d\x54\ \x6e\x31\x4a\x63\x2b\x46\x5e\x3c\x54\x6c\x3b\x52\x6a\x36\x4e\x68\ \x3f\x56\x71\x42\x56\x6f\x3a\x47\x5d\x4e\x59\x6b\x4b\x56\x68\x48\ \x53\x66\x3b\x4a\x5d\x2d\x3d\x52\x62\x76\x90\xab\xc4\xe3\xb6\xd3\ \xf6\xab\xca\xf0\xa7\xc5\xec\xa9\xc9\xf0\xa5\xc5\xee\xa0\xc2\xed\ \x9e\xbf\xec\x99\xbb\xe7\x9d\xbf\xe7\xb3\xd2\xf3\xb5\xd2\xf2\xbb\ \xd7\xf9\xa1\xbe\xe6\xa4\xc2\xeb\xa6\xc4\xed\xa5\xc4\xee\x9d\xbc\ \xe8\x9b\xbe\xe9\x9f\xc0\xea\xa7\xc7\xef\x89\xa8\xd4\x87\xa5\xdc\ \x7a\x96\xcf\x13\x24\x4d\x24\x33\x4b\x3b\x51\x69\x76\x91\xa8\x64\ \x7f\x93\x5e\x77\x8b\x59\x72\x83\x51\x6a\x7b\x56\x6b\x77\x59\x6d\ \x78\x59\x6d\x78\x5e\x71\x7b\x62\x75\x7d\x66\x79\x81\x66\x79\x80\ \x6a\x7d\x85\x6e\x82\x8b\x72\x87\x92\x73\x88\x97\x70\x85\x96\x68\ \x7f\x8f\x00\x00\x00\x25\x46\x74\x1b\x37\x64\x09\x1d\x43\x0d\x1b\ \x35\x0c\x19\x2c\x06\x14\x29\x08\x12\x2a\x07\x0f\x23\x08\x0c\x1d\ \x02\x07\x18\x16\x23\x32\x0f\x1c\x29\x0b\x16\x22\x0a\x14\x1e\x0b\ \x14\x1d\x0b\x14\x1f\x09\x12\x1f\x0c\x12\x1f\x08\x10\x1d\x07\x0f\ \x1c\x09\x11\x1e\x0d\x16\x22\x0a\x13\x1d\x0b\x14\x1e\x0b\x14\x1e\ \x0a\x13\x1d\x0a\x13\x1e\x0c\x14\x1f\x0e\x15\x1e\x0d\x13\x1c\x0f\ \x14\x1b\x11\x16\x1f\x0f\x14\x1d\x11\x16\x1f\x13\x18\x21\x13\x18\ \x21\x15\x1a\x22\x13\x19\x20\x0f\x15\x1c\x12\x18\x1f\x11\x15\x1e\ \x14\x18\x20\x15\x1b\x22\x17\x1d\x24\x12\x17\x1e\x12\x18\x1e\x15\ \x1b\x22\x1a\x20\x26\x13\x19\x1d\x1c\x24\x26\x18\x1e\x21\x1e\x25\ \x28\x1c\x25\x28\x1c\x24\x27\x21\x27\x2a\x27\x2b\x2d\x2a\x2f\x2e\ \x24\x2a\x29\x27\x2d\x2d\x2b\x33\x35\x3a\x41\x44\x30\x36\x39\x2c\ \x31\x32\x27\x2c\x2d\x1f\x23\x24\x07\x0a\x0f\x0b\x10\x1a\x1f\x2e\ \x3e\x0c\x1a\x2f\x0d\x18\x2d\x0b\x16\x2b\x09\x14\x2a\x0a\x17\x2b\ \x0a\x18\x2b\x11\x1f\x34\x0c\x1a\x30\x17\x25\x3b\x0b\x1a\x31\x23\ \x33\x49\x33\x43\x58\x26\x35\x4a\x13\x21\x37\x13\x22\x3b\x1c\x2c\ \x47\x1d\x2e\x48\x1d\x32\x49\x19\x2d\x46\x2d\x41\x5a\x1c\x2f\x49\ \x2b\x40\x5a\x26\x3e\x58\x29\x41\x5e\x24\x3c\x5b\x25\x3b\x58\x2d\ \x43\x5f\x2b\x41\x5d\x3b\x51\x6c\x2b\x41\x5c\x2c\x43\x5d\x30\x46\ \x60\x3c\x50\x69\x55\x68\x7b\x71\x84\x95\x54\x6a\x7f\x41\x58\x6c\ \x37\x4f\x63\x32\x49\x5e\x55\x69\x7d\x4b\x5f\x75\x3a\x4e\x67\x37\ \x47\x61\x4e\x5c\x72\x5a\x69\x7a\x61\x6f\x80\x4c\x5a\x6d\x42\x50\ \x66\x25\x37\x4e\x37\x4d\x67\xaf\xcb\xe7\xb2\xd2\xf4\xa8\xca\xef\ \xa6\xc6\xed\xaa\xc9\xf0\xa7\xc8\xf0\xa0\xc1\xea\x9c\xbe\xe9\x97\ \xb8\xe4\x9d\xbd\xe4\xb4\xd3\xf4\xb4\xd0\xf1\xb7\xd3\xf7\xa3\xbf\ \xe7\xa5\xc2\xeb\xa6\xc5\xee\xa2\xc3\xee\x94\xb6\xe1\x9a\xbe\xe6\ \xa3\xc4\xef\xa9\xc9\xf1\x5f\x7f\xac\x92\xb0\xe8\x61\x7b\xb5\x09\ \x17\x3e\x25\x35\x4f\x43\x5b\x73\x74\x90\xa5\x62\x7c\x91\x5d\x77\ \x88\x55\x6d\x7f\x50\x69\x7a\x54\x6a\x75\x57\x6b\x76\x58\x6b\x76\ \x5d\x70\x78\x5f\x72\x7a\x61\x74\x7c\x63\x76\x7d\x67\x7a\x81\x6d\ \x81\x8b\x6f\x84\x8f\x6f\x85\x91\x6c\x82\x91\x66\x7d\x8e\x00\x00\ \x00\x26\x46\x77\x1e\x3a\x67\x16\x2a\x51\x0a\x1a\x36\x09\x16\x2d\ \x07\x15\x2b\x08\x15\x2a\x06\x0f\x21\x08\x0e\x20\x02\x08\x19\x14\ \x23\x33\x0b\x1a\x29\x08\x14\x24\x0c\x15\x24\x0c\x14\x21\x0b\x10\ \x1e\x0c\x10\x1f\x0a\x0d\x1c\x0b\x11\x1e\x0b\x12\x1f\x10\x18\x25\ \x0a\x12\x1e\x09\x13\x1d\x09\x12\x1c\x0e\x17\x21\x09\x12\x1c\x0b\ \x13\x1f\x0a\x12\x1d\x0e\x14\x1f\x0c\x12\x1a\x0e\x14\x1b\x0a\x11\ \x1a\x0b\x12\x1b\x0a\x12\x1b\x0d\x14\x1d\x0c\x13\x1c\x0f\x15\x1d\ \x0d\x12\x1b\x0d\x13\x1b\x0d\x12\x1b\x10\x15\x1d\x0e\x14\x1b\x12\ \x19\x1f\x11\x18\x1f\x12\x18\x1f\x1f\x25\x2c\x18\x1e\x25\x13\x19\ \x1f\x19\x1f\x23\x15\x1c\x1f\x17\x1f\x22\x16\x1e\x21\x20\x29\x2c\ \x1e\x26\x2a\x22\x28\x2d\x22\x2b\x2e\x2d\x34\x36\x2a\x32\x32\x2b\ \x33\x32\x2c\x34\x34\x29\x31\x32\x26\x2d\x2d\x24\x29\x2a\x23\x28\ \x29\x1e\x22\x25\x09\x09\x10\x01\x03\x0d\x28\x33\x41\x15\x22\x35\ \x0c\x18\x2a\x0c\x17\x2b\x0e\x19\x2e\x08\x16\x29\x07\x15\x27\x0f\ \x1d\x30\x0f\x1d\x30\x13\x20\x36\x0c\x1a\x31\x12\x20\x37\x2d\x3c\ \x50\x43\x51\x64\x36\x43\x57\x43\x51\x68\x1b\x2a\x40\x1d\x2e\x43\ \x2b\x40\x57\x39\x50\x6a\x2d\x42\x5e\x22\x38\x54\x49\x5f\x7b\x30\ \x47\x62\x35\x4d\x69\x39\x51\x70\x4a\x62\x80\x45\x5d\x79\x5b\x71\ \x8d\x5a\x70\x8d\x30\x47\x61\x3a\x53\x6b\x24\x3c\x55\x39\x4d\x62\ \x34\x43\x50\x20\x2c\x35\x2c\x3a\x45\x40\x4f\x5a\x54\x63\x6e\x47\ \x55\x61\x33\x44\x51\x42\x55\x66\x42\x55\x68\x53\x67\x7c\x56\x6c\ \x80\x48\x5c\x6e\x51\x64\x76\x50\x60\x74\x56\x68\x7e\x2d\x40\x58\ \x45\x5c\x73\xb1\xce\xea\xb1\xd1\xf3\xa4\xc6\xec\xa9\xc9\xef\xac\ \xcc\xf1\xa8\xc9\xf0\x9f\xbf\xe9\x9f\xc1\xec\xa2\xc2\xec\xa6\xc4\ \xeb\xb6\xd3\xf5\xb7\xd3\xf5\xb1\xcd\xf2\xa4\xc0\xe9\xa3\xc0\xe9\ \x9d\xbc\xe7\xa1\xc2\xed\x96\xba\xe4\x9b\xbf\xe6\xa2\xc4\xed\x9c\ \xbc\xe6\x5d\x7e\xad\x92\xb0\xeb\x3e\x53\x89\x1d\x2b\x4f\x25\x36\ \x52\x65\x7c\x94\x68\x80\x95\x62\x7c\x8f\x5d\x76\x87\x56\x6f\x80\ \x51\x69\x79\x52\x66\x73\x55\x68\x73\x56\x69\x71\x57\x6a\x72\x5a\ \x6d\x75\x5f\x71\x7a\x61\x74\x7b\x65\x78\x7f\x69\x7e\x86\x6b\x7f\ \x8a\x6c\x83\x8e\x64\x7a\x88\x62\x78\x89\x00\x00\x00\x28\x48\x7a\ \x1d\x38\x66\x16\x2c\x54\x0a\x1c\x3b\x10\x1d\x37\x09\x16\x2f\x07\ \x14\x2a\x07\x10\x23\x07\x0e\x20\x01\x09\x1b\x1a\x27\x39\x0a\x19\ \x2b\x08\x15\x26\x09\x14\x24\x07\x0e\x1e\x0f\x16\x25\x0b\x13\x21\ \x0d\x15\x22\x09\x11\x1f\x0a\x12\x1f\x0c\x14\x20\x09\x10\x1c\x0c\ \x11\x1e\x0b\x11\x1d\x0b\x11\x1c\x0a\x10\x1a\x08\x10\x1a\x0b\x13\ \x1c\x0d\x14\x1e\x0b\x11\x1a\x0c\x11\x19\x0e\x13\x1c\x0d\x12\x1b\ \x13\x18\x21\x10\x15\x1e\x0c\x11\x1a\x14\x17\x20\x11\x14\x1e\x0e\ \x12\x1c\x0c\x0f\x19\x12\x16\x1e\x0d\x11\x19\x11\x13\x1b\x15\x17\ \x1f\x13\x16\x1e\x13\x17\x1f\x15\x19\x21\x13\x17\x1d\x16\x1b\x1f\ \x18\x1e\x21\x1c\x21\x25\x1a\x20\x24\x1b\x23\x26\x16\x1d\x20\x1c\ \x22\x24\x20\x26\x2b\x27\x2e\x31\x26\x2f\x2f\x29\x31\x31\x2d\x35\ \x35\x2a\x32\x32\x28\x2e\x2f\x2b\x30\x31\x25\x2a\x2b\x1d\x21\x25\ \x07\x08\x11\x23\x24\x2c\x22\x2b\x34\x1f\x2a\x36\x0b\x16\x25\x0b\ \x18\x2a\x11\x1c\x30\x0e\x1a\x2f\x0d\x1b\x2e\x0d\x19\x2b\x0d\x1a\ \x2d\x0e\x1c\x30\x0f\x1b\x32\x16\x22\x39\x10\x1f\x31\x33\x41\x52\ \x68\x75\x85\x43\x51\x60\x5c\x6c\x7d\x3a\x4e\x62\x4e\x63\x7b\x47\ \x5d\x78\x43\x59\x75\x3f\x55\x71\x3f\x55\x70\x53\x6a\x82\x30\x48\ \x60\x28\x40\x5c\x38\x50\x6c\x3d\x54\x6f\x27\x3c\x58\x23\x3a\x54\ \x2d\x44\x5e\x3c\x56\x6d\x3a\x52\x6a\x2f\x42\x57\x39\x47\x53\x0f\ \x17\x20\x25\x2c\x36\x3d\x48\x4f\x40\x4b\x52\x2e\x3a\x40\x3d\x4d\ \x53\x33\x43\x4b\x33\x43\x4f\x3f\x52\x63\x55\x6e\x81\x54\x6d\x80\ \x4a\x62\x75\x33\x48\x5d\x3e\x53\x69\x45\x5c\x72\x5d\x74\x8b\xb0\ \xcb\xe7\xb2\xd1\xf2\xaa\xc8\xed\xaa\xc8\xee\xb0\xd0\xf5\xac\xcb\ \xf2\xa5\xc5\xee\xa0\xc0\xea\xa7\xc5\xef\xab\xc8\xed\xb7\xd3\xf5\ \xb8\xd4\xf6\xa9\xc6\xed\xa1\xbf\xe9\xa4\xc3\xee\x9a\xba\xe5\x97\ \xb8\xe3\x9e\xc0\xeb\x99\xbd\xe2\xa3\xc6\xee\x87\xaa\xd3\x95\xb5\ \xe7\x7a\x98\xd3\x2d\x40\x70\x1c\x28\x47\x33\x47\x63\x6c\x86\x9f\ \x65\x7e\x90\x60\x7a\x8b\x5a\x73\x84\x52\x6a\x7a\x50\x68\x77\x53\ \x66\x71\x52\x65\x6d\x50\x63\x6b\x52\x64\x6c\x55\x67\x6f\x59\x6b\ \x72\x5f\x71\x77\x60\x76\x7b\x65\x7a\x81\x65\x7b\x86\x66\x7c\x87\ \x5e\x74\x81\x5b\x72\x82\x00\x00\x00\x2b\x4b\x7d\x1c\x39\x67\x13\ \x2a\x54\x12\x24\x46\x0b\x18\x36\x07\x14\x30\x0b\x16\x2e\x05\x0f\ \x21\x06\x0d\x20\x02\x0a\x1d\x1a\x28\x3c\x0b\x19\x2c\x09\x17\x24\ \x0a\x16\x20\x0a\x13\x20\x0b\x15\x20\x08\x12\x1d\x08\x12\x20\x08\ \x11\x1f\x0c\x14\x20\x0b\x14\x1e\x0b\x13\x1e\x0e\x14\x21\x0b\x10\ \x1c\x0b\x10\x1b\x0a\x11\x1a\x0b\x12\x1b\x07\x0f\x18\x0b\x12\x1c\ \x0d\x12\x1c\x0c\x10\x1a\x0f\x12\x1b\x0d\x0f\x19\x10\x12\x1c\x11\ \x13\x1d\x0d\x10\x19\x12\x14\x1d\x11\x13\x1d\x0c\x0f\x19\x0f\x12\ \x1c\x0d\x10\x18\x0f\x12\x1a\x13\x14\x1c\x10\x10\x19\x10\x12\x1a\ \x0d\x10\x18\x12\x15\x1c\x15\x18\x1e\x16\x1a\x1e\x1c\x21\x24\x18\ \x1b\x21\x19\x1d\x22\x1d\x22\x27\x1d\x22\x24\x26\x2a\x2c\x22\x26\ \x27\x2a\x2f\x2f\x27\x2d\x2b\x22\x29\x27\x2c\x32\x31\x27\x2e\x2d\ \x26\x2c\x2c\x27\x2c\x2d\x2a\x2f\x30\x1a\x1f\x23\x0e\x0e\x17\x04\ \x05\x0d\x1a\x20\x28\x25\x2f\x37\x1c\x27\x34\x0c\x18\x27\x11\x1c\ \x30\x1a\x26\x3c\x15\x22\x36\x15\x20\x34\x18\x24\x36\x1a\x26\x3a\ \x11\x1f\x34\x20\x2c\x43\x2f\x3f\x52\x49\x58\x68\x36\x44\x51\x29\ \x38\x44\x3b\x4c\x5a\x44\x59\x6d\x51\x68\x80\x49\x5f\x7a\x3f\x55\ \x70\x42\x58\x73\x3d\x53\x6b\x65\x7c\x90\x50\x68\x7c\x42\x5a\x72\ \x46\x5d\x77\x35\x4b\x65\x31\x45\x60\x3b\x50\x69\x4d\x64\x7b\x41\ \x5a\x73\x41\x59\x72\x39\x4e\x62\x43\x52\x5f\x0f\x17\x23\x2b\x34\ \x44\x28\x33\x41\x3b\x47\x51\x3e\x4a\x51\x3e\x4a\x4f\x1c\x24\x2a\ \x20\x28\x31\x29\x35\x45\x55\x6a\x7b\x5e\x78\x8c\x6a\x81\x97\x21\ \x36\x4c\x4e\x62\x77\x53\x69\x7d\x4a\x61\x7a\xb6\xd2\xef\xaf\xce\ \xf0\xa9\xc6\xea\xad\xc9\xee\xb5\xd2\xf7\xa8\xc8\xee\xa1\xc1\xea\ \xa3\xc3\xee\xa4\xc3\xec\xad\xc8\xed\xb4\xd0\xf3\xb5\xd1\xf5\x9f\ \xbc\xe5\x99\xb9\xe4\xa3\xc3\xee\x98\xb7\xe2\x9c\xbc\xe7\xa2\xc3\ \xef\x9c\xc0\xe7\xa7\xc9\xf1\x72\x95\xbf\x97\xb7\xeb\x56\x72\xac\ \x27\x38\x61\x1a\x25\x40\x48\x5c\x78\x78\x91\xaa\x66\x80\x92\x5e\ \x77\x89\x5a\x72\x83\x53\x6b\x7b\x4f\x66\x74\x50\x64\x6f\x4f\x61\ \x6a\x4a\x5d\x65\x4b\x5c\x64\x4d\x5f\x66\x50\x61\x68\x56\x69\x6f\ \x5b\x6f\x75\x5b\x71\x78\x5d\x73\x7d\x5a\x70\x7b\x54\x6a\x79\x53\ \x6a\x79\x00\x00\x00\x2a\x4b\x7c\x1d\x3d\x6c\x14\x2e\x5a\x0f\x22\ \x48\x0d\x1a\x39\x09\x17\x32\x0a\x16\x2d\x07\x11\x23\x05\x0d\x1e\ \x04\x0e\x1e\x1c\x2a\x3f\x0a\x1a\x2a\x0b\x16\x24\x09\x13\x20\x08\ \x11\x1e\x0c\x14\x21\x09\x11\x1e\x0e\x16\x22\x09\x11\x1e\x0a\x13\ \x1d\x09\x12\x1c\x08\x11\x1b\x09\x0f\x1c\x0c\x10\x1b\x0d\x11\x1c\ \x0a\x0f\x1a\x0a\x11\x1a\x0b\x11\x1c\x0f\x15\x20\x0d\x12\x1d\x0d\ \x11\x1a\x12\x17\x1e\x0f\x14\x1c\x0f\x14\x1d\x0f\x14\x1d\x0e\x13\ \x1c\x0d\x12\x1c\x14\x19\x21\x11\x17\x1e\x14\x1a\x21\x13\x17\x1f\ \x15\x18\x20\x14\x17\x1f\x17\x1a\x22\x16\x19\x21\x18\x1b\x21\x17\ \x1a\x1f\x17\x1b\x20\x19\x1d\x22\x1c\x20\x25\x1d\x22\x28\x1a\x20\ \x24\x15\x1c\x1f\x1d\x22\x25\x1f\x24\x27\x1f\x24\x25\x2c\x31\x32\ \x29\x2e\x2f\x25\x2b\x2b\x25\x2a\x2b\x28\x2d\x2e\x24\x2a\x29\x27\ \x2d\x2c\x1c\x21\x22\x1a\x1f\x20\x15\x17\x1d\x08\x05\x10\x07\x09\ \x10\x2d\x35\x3e\x28\x30\x3e\x0f\x19\x2a\x11\x1b\x2d\x15\x23\x35\ \x1d\x2b\x3d\x1c\x2a\x3d\x2e\x3c\x4d\x24\x34\x41\x24\x32\x44\x39\ \x48\x5b\x2f\x40\x53\x42\x50\x63\x47\x54\x65\x3e\x4a\x59\x48\x57\ \x68\x54\x65\x7d\x60\x75\x8f\x7c\x92\xae\x67\x7b\x98\x5c\x70\x8e\ \x4e\x62\x7f\x80\x96\xb0\x65\x7d\x95\x65\x7c\x95\x53\x68\x87\x5c\ \x71\x8d\x3d\x51\x6c\x39\x4b\x65\x3c\x4b\x66\x3c\x4d\x67\x3b\x4d\ \x6a\x30\x40\x5c\x31\x3f\x59\x29\x34\x4f\x4e\x5d\x7a\x19\x27\x41\ \x11\x1a\x31\x17\x1f\x2f\x1f\x26\x35\x12\x19\x22\x04\x0a\x10\x18\ \x22\x2e\x61\x71\x80\x63\x7b\x8c\x71\x89\x9c\x16\x2a\x40\x44\x55\ \x6a\x29\x3a\x4f\x52\x67\x83\xb6\xd2\xf0\xb0\xd0\xf3\xad\xca\xef\ \xae\xca\xee\xb5\xd3\xf8\xa6\xc4\xec\xa1\xc1\xeb\xa4\xc4\xee\xa1\ \xc1\xe8\xad\xcd\xf1\xb3\xcf\xf1\xb2\xd1\xf6\x97\xb9\xe5\x9c\xbc\ \xe8\xa3\xc1\xee\x9e\xbd\xe8\x97\xb8\xe3\x9e\xc0\xeb\x9d\xc0\xe8\ \xad\xd0\xf4\x65\x87\xb3\x8a\xaa\xe0\x4e\x68\x9d\x15\x25\x4e\x25\ \x33\x4d\x60\x74\x89\x82\x9b\xb2\x63\x7d\x92\x5e\x77\x88\x57\x6f\ \x7f\x53\x69\x78\x4f\x65\x71\x4e\x60\x6d\x4a\x5a\x66\x48\x59\x61\ \x49\x59\x60\x48\x58\x5f\x4a\x5c\x63\x4c\x5e\x65\x51\x64\x6b\x55\ \x68\x70\x56\x69\x72\x4e\x63\x6c\x4f\x64\x6f\x4d\x64\x71\x00\x00\ \x00\x2b\x4d\x7b\x1d\x3e\x6b\x15\x30\x5c\x0d\x21\x45\x0d\x1b\x39\ \x0b\x19\x35\x04\x12\x27\x06\x10\x22\x05\x0d\x1d\x04\x0d\x1f\x1e\ \x2d\x42\x09\x18\x2a\x0a\x15\x24\x0a\x14\x21\x0a\x13\x20\x0a\x12\ \x1f\x08\x10\x1d\x0b\x13\x20\x0a\x12\x1e\x08\x11\x1b\x08\x11\x1b\ \x0b\x13\x1e\x0b\x11\x1c\x0c\x12\x1d\x0c\x12\x1d\x0b\x13\x1c\x0d\ \x13\x1d\x0e\x14\x1f\x0d\x13\x1e\x0f\x14\x1f\x0f\x13\x1d\x0e\x13\ \x1a\x0e\x14\x1c\x10\x15\x1e\x0e\x13\x1c\x0d\x12\x1b\x12\x17\x20\ \x0f\x15\x1c\x0f\x15\x1c\x10\x16\x1d\x10\x16\x1c\x15\x18\x20\x0f\ \x12\x1a\x12\x15\x1d\x15\x18\x20\x14\x17\x1e\x16\x1a\x1f\x19\x1c\ \x21\x1c\x20\x25\x1a\x20\x25\x1f\x26\x2a\x1c\x23\x26\x20\x27\x29\ \x20\x25\x26\x23\x28\x29\x26\x2b\x2c\x32\x37\x38\x2d\x32\x33\x2d\ \x32\x33\x28\x2d\x2e\x26\x2e\x2e\x1f\x27\x26\x2b\x31\x30\x27\x2c\ \x2c\x19\x1d\x1f\x11\x13\x19\x0b\x09\x10\x05\x07\x0b\x25\x2c\x33\ \x5b\x64\x75\x36\x41\x53\x0e\x1b\x29\x20\x2c\x3b\x29\x35\x47\x49\ \x5a\x6c\x3c\x4e\x5f\x32\x44\x56\x5a\x6b\x81\x67\x77\x90\x64\x76\ \x91\x95\xa6\xc1\x62\x70\x8e\x65\x72\x90\x6a\x76\x98\x8c\x9a\xbf\ \x8d\xa0\xc8\x8c\xa1\xcb\xa1\xb7\xe0\x9e\xb3\xdf\xa2\xb8\xe4\xa0\ \xb6\xe0\x98\xb0\xd8\x9a\xb2\xdd\x93\xa9\xd1\x9e\xb3\xda\x8e\xa1\ \xc7\x65\x76\x9b\x76\x84\xa7\x65\x6f\x93\x61\x6d\x95\x63\x72\x9c\ \x79\x87\xb1\x8e\x9e\xcc\xac\xbe\xee\xa0\xb1\xde\x80\x8f\xb9\x6c\ \x7b\x9e\x46\x51\x6d\x11\x19\x2a\x23\x2e\x38\x59\x65\x72\xa5\xb7\ \xc1\x78\x8d\x9a\x53\x6a\x7c\x40\x55\x6b\x3c\x4d\x61\x24\x31\x44\ \x7e\x93\xaf\xb5\xd0\xef\xb0\xd0\xf2\xab\xcc\xf0\xaa\xc9\xed\xb0\ \xce\xf1\xa7\xc5\xeb\xa9\xc7\xf0\xa4\xc2\xea\x9e\xbe\xe5\xa7\xc6\ \xea\xae\xcc\xef\xaf\xcd\xf3\x98\xbb\xe6\x9c\xbd\xe9\xa2\xc1\xed\ \xa3\xc2\xef\x97\xb7\xe3\x9a\xbd\xe7\xa2\xc7\xed\x9c\xbe\xe3\x6c\ \x8e\xbb\x8e\xae\xe0\x4d\x65\x95\x0a\x18\x3c\x2c\x39\x52\x69\x7d\ \x93\x65\x7c\x92\x62\x7b\x8e\x5c\x76\x86\x55\x6d\x7d\x52\x68\x77\ \x4e\x64\x70\x4c\x5e\x6a\x47\x57\x62\x44\x55\x5d\x43\x52\x59\x43\ \x52\x58\x43\x53\x5a\x48\x59\x60\x4c\x5d\x63\x4e\x60\x68\x4e\x60\ \x68\x49\x5b\x63\x4b\x5e\x68\x4b\x5f\x6c\x00\x00\x00\x30\x53\x7f\ \x24\x46\x72\x15\x33\x5f\x0f\x25\x49\x10\x1e\x3b\x0a\x16\x32\x07\ \x14\x2b\x05\x0f\x22\x07\x0f\x20\x03\x0d\x1f\x1d\x2b\x41\x08\x17\ \x29\x09\x15\x23\x0a\x14\x21\x07\x10\x1d\x0b\x13\x20\x0a\x12\x1f\ \x0c\x14\x21\x08\x10\x1c\x09\x12\x1c\x0b\x14\x1e\x0b\x13\x1e\x0d\ \x13\x1e\x0a\x12\x1c\x07\x10\x19\x07\x0e\x17\x08\x0d\x18\x0b\x11\ \x1c\x09\x10\x1a\x0d\x13\x1c\x0e\x12\x1c\x0f\x14\x1b\x11\x16\x1e\ \x13\x18\x21\x10\x15\x1e\x13\x18\x21\x13\x18\x21\x0f\x15\x1d\x0d\ \x13\x1a\x10\x16\x1d\x0b\x10\x18\x0e\x12\x19\x14\x17\x1e\x12\x15\ \x1d\x12\x16\x1d\x13\x17\x1d\x15\x19\x1e\x15\x1a\x1f\x12\x18\x1d\ \x1a\x20\x25\x18\x1f\x22\x1f\x26\x29\x21\x29\x2a\x25\x2b\x2c\x25\ \x2a\x2b\x25\x2a\x2b\x2f\x35\x36\x28\x2d\x2f\x30\x35\x38\x34\x3b\ \x3e\x3a\x43\x44\x2c\x34\x33\x23\x29\x29\x1d\x22\x23\x16\x1a\x1e\ \x0d\x0f\x15\x0d\x0c\x13\x0c\x0f\x13\x3a\x43\x4b\x56\x64\x76\x34\ \x44\x56\x51\x64\x71\x57\x68\x79\x40\x50\x64\x7d\x91\xaf\x82\x96\ \xb7\x90\xa4\xc7\x97\xa9\xcf\xaf\xc2\xea\xb1\xc5\xf0\xb0\xc4\xef\ \xad\xc0\xee\xb0\xc2\xf2\xb1\xc0\xf0\xb2\xc0\xf4\xb4\xc3\xfa\xa9\ \xbc\xf5\xa3\xb8\xf0\xa3\xb9\xf0\xa9\xc1\xf6\xac\xc5\xf7\xa8\xc1\ \xf4\xa6\xbf\xf3\xa9\xbe\xf4\xab\xbf\xf5\xa6\xb9\xed\xa9\xbb\xee\ \xac\xbe\xf0\xac\xc4\xf6\xae\xc4\xf5\xa9\xbd\xed\x77\x8b\xba\xab\ \xc0\xf1\xab\xc0\xf7\xae\xc4\xf8\xac\xc2\xf3\xb0\xc5\xf3\xa0\xb1\ \xda\x35\x44\x63\x40\x50\x69\x87\x97\xaf\x91\xa5\xb8\xaf\xbf\xd1\ \x37\x47\x58\x49\x58\x69\x26\x34\x44\x5f\x6e\x7e\x6c\x84\xa1\xb4\ \xd0\xf0\xaf\xce\xf1\xaa\xca\xee\xaa\xcb\xef\xaa\xca\xee\xa8\xc7\ \xee\xaa\xc8\xf1\xa4\xc3\xeb\x9f\xbf\xe5\xa8\xc8\xeb\xb2\xd1\xf4\ \xa1\xc2\xe9\x9e\xc0\xeb\x9b\xbc\xe7\x9a\xba\xe6\x9d\xbe\xeb\x94\ \xb6\xe2\x97\xba\xe4\xa1\xc6\xeb\x7c\x9c\xc5\x8d\xad\xdd\x8b\xa9\ \xdb\x3a\x4f\x7b\x08\x14\x36\x36\x43\x5c\x68\x7e\x94\x6c\x84\x98\ \x62\x7b\x8d\x5a\x74\x84\x55\x6e\x7e\x53\x69\x78\x4e\x64\x70\x47\ \x5a\x66\x45\x57\x60\x41\x52\x59\x40\x4f\x54\x40\x4f\x52\x40\x4f\ \x57\x43\x53\x5a\x49\x59\x5f\x4b\x5b\x61\x4a\x5b\x62\x4b\x5d\x64\ \x4e\x5f\x68\x52\x64\x6e\x00\x00\x00\x39\x5b\x88\x32\x54\x82\x17\ \x36\x64\x11\x29\x4e\x0e\x1d\x3b\x09\x15\x31\x0e\x19\x34\x06\x11\ \x27\x08\x0f\x22\x07\x11\x23\x1c\x2b\x42\x0a\x19\x2b\x0a\x16\x25\ \x0c\x16\x24\x0a\x13\x20\x0d\x15\x22\x08\x10\x1d\x0a\x12\x1f\x06\ \x0f\x1b\x07\x10\x1a\x07\x10\x1a\x08\x10\x1a\x09\x0f\x1a\x09\x12\ \x1b\x07\x10\x19\x0a\x12\x1b\x0d\x12\x1d\x0c\x11\x1d\x0d\x14\x1d\ \x0e\x13\x1d\x0e\x11\x1c\x10\x14\x1d\x11\x17\x1f\x10\x15\x1e\x13\ \x18\x21\x13\x18\x21\x10\x15\x1e\x12\x18\x1f\x0e\x14\x1b\x0d\x13\ \x1a\x0e\x14\x1a\x15\x19\x1e\x11\x15\x1a\x13\x17\x1c\x14\x18\x1d\ \x19\x1c\x21\x12\x17\x1c\x16\x1c\x21\x18\x1e\x23\x1b\x21\x26\x1d\ \x23\x28\x18\x1e\x22\x1c\x23\x26\x20\x26\x29\x23\x29\x2b\x23\x2b\ \x2a\x2b\x33\x33\x26\x2d\x2f\x2a\x31\x35\x2d\x34\x39\x2c\x35\x35\ \x25\x2d\x2d\x22\x2a\x2a\x1c\x21\x22\x1b\x1f\x23\x11\x13\x18\x0d\ \x0f\x15\x6a\x72\x76\x4e\x5c\x66\x4f\x60\x76\x44\x56\x72\x80\x93\ \xb3\x8d\xa0\xc4\x84\x96\xbc\xae\xc1\xee\xa9\xbd\xec\xa4\xb8\xe9\ \xa7\xbb\xeb\xad\xc0\xf2\xb0\xc4\xf7\xa8\xbd\xf0\xa5\xba\xed\xac\ \xc0\xf1\xae\xc2\xf3\xaa\xbd\xf1\xae\xc3\xf8\xa6\xbb\xf2\xa2\xba\ \xef\xa3\xbb\xf0\xa6\xbe\xf4\xa9\xc1\xf5\xa5\xbc\xf1\xa7\xbc\xf3\ \xa5\xba\xf1\xa6\xbb\xf2\xa2\xb7\xee\xa9\xc0\xf6\xa6\xbf\xf4\xa4\ \xbf\xf1\xa7\xbf\xef\xa7\xbe\xee\xaa\xc1\xf1\xa6\xbe\xf0\xaa\xc0\ \xf3\xaa\xc2\xf6\xa9\xc1\xf4\xb0\xc7\xf8\xad\xc2\xf4\xa6\xbc\xe9\ \x9d\xb0\xdd\x97\xab\xd7\xa1\xb5\xdf\x53\x66\x8a\x37\x47\x5f\x4e\ \x5b\x6c\x66\x75\x87\x72\x87\x9e\x7b\x96\xb4\xa9\xc6\xe8\xaf\xcd\ \xf1\xaf\xcc\xf1\xa8\xc8\xed\xa6\xc7\xef\xa6\xc6\xf0\xa3\xc3\xee\ \x9c\xbc\xe6\xa5\xc5\xeb\xa9\xc9\xec\xac\xcd\xf1\x99\xba\xe2\x9b\ \xbe\xe9\x9f\xc1\xe9\x9f\xc0\xec\x95\xb7\xe5\x94\xb6\xe3\x9e\xc0\ \xea\xa2\xc4\xeb\x66\x86\xb1\xa3\xc2\xf6\x7c\x96\xc8\x29\x3c\x66\ \x0f\x1d\x3a\x44\x55\x6c\x8a\xa3\xb9\x69\x84\x98\x62\x7c\x8d\x5a\ \x74\x84\x52\x6b\x7b\x51\x67\x76\x4b\x61\x6d\x48\x5a\x67\x41\x52\ \x5c\x3d\x4e\x52\x3d\x4c\x4e\x3f\x4c\x4e\x42\x4f\x58\x48\x56\x5c\ \x4c\x5b\x61\x50\x60\x66\x50\x60\x67\x50\x63\x6a\x55\x67\x6e\x56\ \x69\x71\x00\x00\x00\x44\x65\x95\x30\x51\x80\x1b\x37\x6a\x13\x29\ \x54\x0a\x19\x3b\x06\x13\x32\x0d\x18\x34\x08\x14\x29\x04\x0e\x20\ \x08\x13\x26\x1c\x2b\x43\x0a\x17\x2b\x0b\x16\x26\x0b\x14\x22\x07\ \x10\x1b\x08\x11\x1c\x08\x10\x1e\x0a\x12\x21\x0b\x14\x21\x09\x12\ \x1e\x0a\x13\x1f\x0b\x13\x1f\x0b\x11\x1c\x09\x13\x1c\x0b\x14\x1d\ \x09\x13\x1b\x0b\x12\x1c\x0a\x11\x1c\x0c\x14\x1e\x0d\x15\x1e\x0f\ \x15\x1f\x0f\x14\x1c\x0f\x13\x1b\x11\x15\x1d\x13\x17\x1f\x10\x13\ \x1c\x11\x14\x1d\x14\x18\x21\x11\x15\x1d\x15\x1b\x22\x10\x16\x1c\ \x1a\x20\x26\x13\x18\x20\x14\x1a\x21\x15\x19\x1f\x13\x16\x1d\x15\ \x19\x20\x16\x1c\x22\x19\x1f\x26\x1f\x25\x2b\x1c\x22\x28\x1f\x25\ \x2a\x22\x29\x2d\x21\x28\x2a\x26\x2d\x2e\x2f\x35\x37\x2c\x32\x34\ \x2e\x35\x37\x29\x30\x33\x2e\x35\x38\x26\x2c\x2c\x28\x2e\x2f\x26\ \x2c\x2d\x20\x26\x27\x10\x14\x17\x11\x14\x19\x1c\x1e\x23\x7a\x7c\ \x81\xa6\xb1\xbe\x33\x44\x5d\x38\x4b\x6f\x8c\x9c\xcc\xa9\xba\xee\ \xa5\xbc\xeb\xa5\xbc\xec\xa8\xbd\xef\xa4\xba\xeb\xa8\xbc\xee\xa6\ \xb9\xed\xad\xc0\xf2\xae\xc3\xf2\xa8\xbd\xeb\xac\xc0\xed\xb0\xc4\ \xf2\xab\xbf\xee\xb1\xc6\xf6\xab\xc2\xf4\xa4\xbb\xee\xa4\xbc\xee\ \xa6\xbf\xf1\xa7\xc0\xf2\xa5\xbb\xef\xa4\xb9\xf0\xa6\xbc\xf2\xa9\ \xbe\xf4\x9f\xb6\xe9\xab\xc3\xf6\xaa\xc2\xf5\xae\xc4\xf3\xac\xc4\ \xf1\xaf\xc6\xf6\xa7\xc0\xf3\xa6\xbe\xf3\xa9\xc1\xf4\xa8\xbf\xf3\ \xab\xc1\xf5\xae\xc1\xf7\xaa\xc0\xf6\xa6\xbd\xf3\xa3\xbb\xef\xa3\ \xba\xf1\xa5\xba\xf6\x5d\x72\xac\x2b\x3b\x60\x2b\x3a\x4d\x43\x58\ \x6c\x60\x76\x92\x75\x91\xb1\xb4\xd0\xf4\xad\xcb\xf1\xa8\xc8\xf0\ \xa9\xca\xf0\xa1\xc3\xeb\x9d\xbf\xeb\x95\xb7\xe3\x98\xba\xe5\xa9\ \xc9\xee\xae\xcf\xf1\xad\xcd\xf1\xa1\xc1\xeb\x9c\xbe\xea\x9e\xbf\ \xe8\x9c\xbe\xea\x93\xb5\xe3\x96\xb8\xe5\x9d\xbf\xe9\xa6\xc7\xf0\ \x72\x92\xc1\x9b\xb7\xef\x4f\x65\x9a\x1b\x2d\x52\x1c\x2c\x46\x3d\ \x52\x6a\x6c\x85\x9a\x64\x7f\x92\x60\x7a\x8b\x59\x72\x82\x54\x6a\ \x7a\x51\x66\x74\x4e\x62\x6d\x45\x58\x62\x41\x53\x5b\x3f\x4f\x54\ \x41\x50\x52\x44\x52\x55\x48\x55\x5d\x50\x5d\x65\x54\x62\x68\x58\ \x67\x6c\x56\x66\x6a\x57\x68\x6e\x58\x6a\x70\x5b\x6d\x73\x00\x00\ \x00\x3e\x62\x92\x35\x57\x88\x1f\x3e\x70\x15\x2d\x59\x11\x23\x46\ \x08\x17\x37\x0b\x18\x32\x07\x13\x29\x04\x0f\x22\x09\x14\x29\x1c\ \x2a\x43\x0b\x17\x2c\x0b\x14\x26\x0b\x13\x23\x09\x12\x1c\x0b\x14\ \x1f\x0d\x14\x22\x0b\x11\x20\x0b\x12\x21\x0e\x15\x24\x0b\x12\x21\ \x0b\x14\x1f\x09\x12\x1c\x09\x12\x1c\x09\x12\x1b\x09\x13\x1a\x09\ \x11\x1a\x0b\x12\x1c\x09\x12\x1c\x0e\x17\x21\x0b\x13\x1c\x0c\x12\ \x1a\x0d\x13\x1a\x0d\x13\x1a\x0f\x15\x1c\x0e\x14\x1b\x10\x14\x1d\ \x12\x13\x1e\x11\x13\x1d\x10\x15\x1d\x0d\x13\x19\x18\x1e\x25\x13\ \x18\x21\x0f\x14\x1d\x11\x15\x1b\x13\x17\x1b\x14\x18\x1d\x18\x1e\ \x22\x1b\x21\x26\x1a\x20\x25\x1b\x21\x26\x15\x1b\x20\x21\x28\x2b\ \x21\x28\x2b\x22\x2a\x2a\x2b\x2f\x34\x2f\x33\x38\x2e\x34\x39\x32\ \x38\x3d\x34\x3a\x3e\x2c\x32\x33\x27\x2d\x2e\x22\x2a\x2a\x1c\x24\ \x25\x15\x1a\x1d\x12\x16\x1b\x20\x22\x26\xdf\xda\xdd\x7f\x84\x8e\ \x8a\x9a\xb1\x76\x8b\xac\x7c\x92\xbe\xa5\xba\xea\xa2\xbc\xeb\xa4\ \xba\xea\xa8\xbe\xed\xa6\xbd\xea\xa9\xbd\xed\xa5\xb8\xeb\xb0\xc6\ \xf6\xaf\xc6\xf3\xa9\xbe\xeb\xa9\xbe\xeb\xb2\xc7\xf4\xa9\xbd\xec\ \xac\xc2\xf2\xa8\xbe\xf1\xa0\xb8\xec\xa5\xbf\xf1\xa7\xc0\xf3\xa7\ \xbf\xf3\xa1\xb8\xed\xa5\xba\xf1\xa8\xbd\xf4\xa9\xbe\xf3\xa2\xb8\ \xec\xaf\xc5\xf9\xab\xc2\xf5\xab\xc2\xf3\xa9\xc0\xf0\xaf\xc6\xf8\ \xa6\xbd\xf2\x9e\xb4\xed\x9c\xb2\xea\xa8\xbd\xf4\xa7\xbb\xef\xa8\ \xba\xf0\x9f\xb3\xe9\xa3\xb7\xef\xa7\xbb\xf3\xa4\xba\xf2\xa2\xb6\ \xf6\x5e\x71\xb4\x42\x51\x7c\x64\x77\x8c\x83\x9b\xb0\x96\xb0\xcc\ \xb9\xd5\xf6\xb3\xcf\xf3\xaa\xc8\xef\x9d\xbf\xe7\xa4\xc6\xee\xa3\ \xc3\xed\x9d\xbf\xec\x95\xb6\xe3\x9a\xba\xe4\xa7\xc8\xec\xaa\xca\ \xed\xa8\xc9\xee\x99\xb9\xe3\x9c\xbd\xea\x9b\xbd\xe8\x9c\xbf\xeb\ \x96\xb8\xe6\x9a\xbc\xe8\xa3\xc5\xee\xa1\xc3\xeb\x84\xa7\xd5\x8c\ \xa8\xe1\x21\x35\x67\x11\x22\x44\x2a\x3b\x55\x51\x67\x7f\x64\x7b\ \x91\x69\x83\x95\x5f\x78\x88\x5a\x72\x82\x54\x69\x79\x51\x64\x71\ \x4c\x5f\x68\x47\x59\x62\x43\x55\x5d\x43\x53\x59\x48\x58\x5a\x4d\ \x5a\x5e\x52\x62\x69\x57\x67\x6d\x59\x6a\x70\x5c\x6d\x73\x5b\x6b\ \x71\x5e\x6d\x75\x5e\x6e\x75\x5f\x70\x77\x00\x00\x00\x37\x5d\x8e\ \x32\x59\x8a\x1c\x3d\x6f\x14\x30\x5c\x17\x2a\x50\x0d\x1e\x41\x0c\ \x1b\x37\x06\x13\x29\x06\x12\x25\x09\x15\x28\x15\x24\x3c\x0a\x16\ \x29\x0c\x17\x27\x0b\x15\x22\x0a\x12\x1e\x0b\x14\x1f\x09\x11\x1e\ \x0b\x12\x21\x09\x10\x1f\x09\x10\x1f\x0a\x12\x1f\x09\x11\x1e\x0a\ \x13\x1d\x08\x11\x1b\x07\x10\x18\x0b\x12\x1b\x0b\x11\x1b\x0c\x12\ \x1d\x09\x12\x1c\x08\x11\x1b\x08\x0e\x19\x0a\x12\x19\x09\x11\x18\ \x0c\x14\x1b\x0a\x12\x19\x09\x11\x18\x11\x14\x1c\x0e\x11\x1b\x0b\ \x10\x19\x0c\x12\x19\x0e\x14\x19\x0f\x15\x1d\x0d\x13\x1a\x0d\x13\ \x1a\x0f\x15\x1c\x0d\x13\x18\x12\x18\x1d\x15\x1b\x20\x15\x1b\x20\ \x18\x1e\x23\x1b\x21\x26\x19\x1f\x24\x19\x20\x24\x20\x27\x2a\x23\ \x2a\x2d\x29\x2f\x34\x2b\x31\x36\x30\x36\x3b\x28\x2e\x33\x2c\x32\ \x37\x30\x36\x3b\x33\x3b\x3e\x2a\x33\x36\x22\x2b\x2e\x1b\x20\x25\ \x15\x1b\x22\x23\x24\x29\xe0\xd8\xdb\x92\x90\x95\x85\x8f\xa1\x7b\ \x8f\xab\x6a\x83\xa7\xa5\xbd\xe9\xa1\xb9\xe7\xa4\xbb\xe9\xab\xc2\ \xef\xa5\xbc\xe9\xa5\xbc\xea\xa0\xb7\xe6\xab\xc1\xf1\xa8\xbf\xec\ \xa5\xbc\xe9\xaa\xbe\xec\xab\xc0\xee\xa7\xbd\xed\xa9\xc0\xf0\xa6\ \xbf\xf1\xa1\xbb\xee\xa4\xbd\xf1\xa2\xba\xee\xa5\xbd\xf1\xa4\xba\ \xf0\xa1\xb6\xed\xa5\xbb\xf0\xab\xc1\xf5\xaa\xc0\xf4\xae\xc4\xf7\ \xaa\xc1\xf3\xaa\xc2\xf5\xa8\xc1\xf3\xae\xc4\xf8\xa6\xbc\xf2\xa4\ \xb8\xf1\xa1\xb4\xf0\xa8\xbb\xf3\xab\xbe\xf3\xac\xbd\xf1\xa5\xb5\ \xec\xa0\xb0\xe9\xa6\xb9\xf0\xa1\xb5\xee\x9e\xb1\xf2\x50\x60\xa4\ \x1a\x29\x56\x7d\x90\xab\x7d\x97\xb2\x8c\xa7\xc6\xb4\xd2\xf3\xaf\ \xcd\xf2\xa5\xc3\xec\x9f\xbf\xe8\xa4\xc5\xee\x9e\xbf\xea\xa1\xc2\ \xef\x99\xbb\xe7\x9d\xbe\xe8\xa8\xc9\xec\xac\xcc\xf0\x9e\xbf\xe7\ \x98\xba\xe6\x98\xb9\xe6\x98\xb9\xe6\x9a\xbc\xe8\x96\xb9\xe5\x9b\ \xbe\xe8\xa9\xcb\xf2\x8d\xb0\xd8\x8e\xb1\xe3\x88\xa5\xdc\x0a\x1f\ \x4c\x18\x28\x48\x38\x49\x63\x53\x68\x80\x64\x7d\x91\x65\x7d\x90\ \x5f\x78\x89\x59\x70\x80\x54\x69\x79\x52\x64\x71\x4b\x5d\x66\x4b\ \x5d\x64\x48\x59\x60\x4a\x59\x5f\x51\x60\x63\x55\x64\x67\x5b\x6b\ \x70\x62\x72\x78\x65\x75\x7c\x64\x74\x7c\x63\x73\x7c\x5f\x70\x7a\ \x62\x73\x7c\x62\x73\x7e\x00\x00\x00\x3a\x60\x93\x3c\x61\x92\x25\ \x47\x78\x16\x31\x5f\x16\x28\x51\x0e\x1f\x44\x0c\x1c\x39\x0c\x18\ \x30\x08\x12\x26\x0d\x18\x2c\x16\x25\x3b\x0c\x19\x2a\x0b\x15\x24\ \x0c\x16\x23\x0a\x13\x1e\x07\x10\x1a\x07\x10\x1a\x09\x10\x1f\x09\ \x11\x1e\x09\x11\x1e\x0c\x14\x21\x0c\x15\x22\x08\x10\x1d\x09\x11\ \x1c\x0b\x12\x1c\x0c\x13\x1c\x0b\x11\x1a\x0d\x13\x1d\x0a\x13\x1c\ \x0f\x16\x21\x0c\x11\x1c\x10\x15\x1e\x12\x18\x21\x0e\x13\x1c\x11\ \x17\x20\x0d\x12\x1b\x10\x15\x1e\x13\x18\x21\x10\x15\x1e\x12\x18\ \x1f\x14\x1a\x21\x15\x18\x21\x12\x18\x1f\x14\x1a\x22\x11\x17\x1f\ \x18\x1e\x24\x14\x1a\x1f\x17\x1d\x22\x18\x1e\x23\x1e\x23\x28\x22\ \x27\x2c\x1e\x24\x29\x1f\x25\x2a\x25\x2b\x30\x23\x2a\x2e\x25\x2d\ \x31\x21\x29\x2e\x2c\x32\x37\x2c\x32\x37\x2b\x31\x37\x2b\x31\x38\ \x31\x3a\x3e\x29\x32\x35\x23\x2b\x31\x1c\x22\x28\x1e\x23\x2c\x26\ \x28\x30\xdd\xd5\xd9\x89\x82\x85\x7a\x7d\x8a\x8a\x9b\xb3\x8b\xa3\ \xc6\xaa\xbe\xeb\xa8\xbd\xec\xaa\xc0\xed\xab\xc2\xed\xae\xc7\xf0\ \xa5\xbc\xea\xa1\xb8\xe7\xaa\xc1\xef\xa7\xbe\xec\xa5\xbc\xe9\xad\ \xc4\xf2\xaa\xc1\xf0\xa5\xbc\xed\xa4\xbb\xeb\xa5\xbe\xf0\xa0\xba\ \xeb\xa4\xbd\xf0\xa4\xbc\xf0\xa4\xbc\xf1\xa3\xb9\xee\xa7\xbc\xf2\ \xa6\xbc\xf0\xa9\xbf\xf3\xa6\xbc\xf0\xab\xc2\xf4\xaa\xc2\xf4\xa7\ \xc0\xf3\xa5\xbe\xf0\xab\xc4\xf7\xa9\xc1\xf5\xa9\xbd\xf6\x9b\xaf\ \xe9\xa2\xb6\xed\xab\xbf\xf2\xac\xbe\xf1\xac\xbb\xf0\xa6\xb5\xed\ \xa8\xba\xef\xa2\xb7\xed\x9c\xb0\xf2\x3f\x4c\x8c\x17\x23\x50\x31\ \x44\x62\x59\x75\x95\xa7\xc6\xe8\xb3\xd1\xf4\xaf\xce\xf3\xa2\xc2\ \xea\x9c\xbc\xe5\xa3\xc5\xee\x99\xba\xe7\x9a\xbb\xe9\xa0\xc1\xee\ \x9d\xbe\xe5\xa7\xc6\xe9\xad\xcd\xf3\x9b\xbd\xe7\x96\xb8\xe4\xa2\ \xc3\xef\x9a\xbc\xe8\x99\xbc\xe7\x98\xbb\xe7\xa0\xc2\xeb\xa9\xca\ \xf1\x7c\x9c\xc7\x8d\xae\xe6\x76\x93\xca\x0f\x24\x4b\x1d\x2a\x49\ \x36\x46\x61\x4b\x62\x79\x69\x83\x96\x66\x7e\x8f\x5f\x76\x87\x58\ \x6e\x7d\x55\x69\x78\x53\x65\x71\x51\x62\x6a\x50\x60\x67\x4e\x5e\ \x65\x53\x61\x67\x58\x67\x6c\x5e\x6d\x70\x63\x73\x78\x68\x78\x7f\ \x6c\x7b\x83\x68\x77\x80\x68\x77\x81\x68\x78\x84\x65\x75\x81\x66\ \x78\x84\x00\x00\x00\x38\x5c\x90\x36\x57\x8a\x2a\x4a\x7b\x17\x32\ \x5f\x12\x23\x4e\x0e\x1e\x45\x0e\x1c\x3c\x07\x14\x2d\x08\x12\x28\ \x0f\x1a\x2f\x12\x22\x36\x0b\x19\x27\x09\x15\x22\x08\x12\x20\x08\ \x10\x1d\x0a\x12\x1d\x0a\x13\x1d\x0d\x13\x21\x0a\x11\x1e\x0b\x13\ \x20\x08\x10\x1d\x0b\x13\x20\x0a\x13\x20\x0c\x14\x20\x0d\x14\x1e\ \x0a\x11\x1a\x0d\x12\x1b\x0c\x13\x1c\x0c\x12\x1d\x0b\x11\x1c\x0c\ \x11\x1c\x0d\x11\x1a\x10\x14\x1d\x10\x14\x1d\x12\x16\x1f\x0f\x14\ \x1d\x11\x17\x1f\x13\x18\x21\x0e\x13\x1c\x0f\x17\x1e\x12\x19\x20\ \x10\x11\x1b\x10\x14\x1b\x14\x1a\x1f\x13\x19\x20\x11\x17\x1e\x16\ \x1c\x23\x12\x17\x1f\x16\x19\x22\x1d\x1f\x28\x1d\x22\x28\x20\x26\ \x2b\x1d\x23\x28\x24\x2a\x2f\x2a\x30\x35\x2a\x33\x38\x2b\x34\x38\ \x2f\x36\x3c\x2e\x34\x3a\x2a\x30\x36\x2b\x30\x36\x24\x2b\x2d\x28\ \x30\x31\x1f\x27\x2c\x1a\x20\x27\x1a\x21\x2a\x25\x29\x33\xd7\xce\ \xd5\x88\x7f\x84\x75\x7b\x84\x86\x9b\xb3\x8f\xa9\xd3\xa3\xbb\xeb\ \xa6\xbf\xec\xad\xc2\xef\xad\xc2\xef\xa8\xbf\xec\xa8\xbf\xec\xa3\ \xb9\xe8\xa7\xbf\xed\xa5\xbd\xea\xa8\xbf\xec\xa8\xbf\xed\xa7\xbe\ \xed\xa5\xbb\xeb\xa7\xbe\xef\xa5\xbb\xed\xa2\xb9\xeb\xa4\xbc\xee\ \xa5\xbe\xf0\xa9\xc2\xf4\xa4\xbb\xed\xa5\xbc\xed\xa7\xbd\xf1\xaa\ \xc0\xf3\xa5\xbc\xee\xac\xc3\xf5\xad\xc4\xf6\xaa\xc3\xf5\xa6\xbf\ \xef\xad\xc6\xf7\xa7\xc0\xf3\xa5\xbe\xf3\x9f\xb6\xed\xa5\xbc\xef\ \xab\xc0\xf2\xad\xc1\xf3\xa4\xb6\xea\xa5\xb8\xec\xaa\xc0\xf1\x9f\ \xb5\xe9\x93\xa6\xe8\x30\x3a\x75\x1f\x29\x51\x3c\x4f\x6e\x5f\x7b\ \x9e\xb1\xd1\xf6\xb0\xd1\xf4\xaa\xc8\xf0\xa5\xc4\xed\xa5\xc5\xee\ \xa3\xc4\xef\x98\xb9\xe7\x93\xb5\xe3\xa4\xc5\xf0\xa5\xc4\xea\xa5\ \xc4\xe7\xa9\xc9\xee\x96\xb9\xe6\x96\xb9\xe6\x9b\xbc\xe8\x9c\xbe\ \xe9\x94\xb7\xe1\x99\xbd\xe5\xa1\xc4\xed\xa9\xc8\xf3\x68\x86\xb4\ \x8e\xab\xe8\x5e\x79\xb2\x1b\x2c\x54\x24\x2d\x4c\x41\x51\x6a\x55\ \x6d\x83\x69\x84\x97\x64\x7c\x8d\x60\x77\x86\x56\x6d\x7c\x55\x69\ \x77\x54\x66\x71\x53\x65\x6d\x54\x64\x6a\x58\x66\x6d\x59\x66\x6e\ \x5e\x6d\x72\x66\x75\x78\x6a\x7b\x82\x70\x81\x88\x72\x82\x89\x6f\ \x7e\x87\x6d\x7e\x88\x6a\x7d\x87\x69\x7b\x86\x6a\x7c\x88\x00\x00\ \x00\x38\x5b\x8b\x40\x61\x8f\x2a\x4c\x7f\x15\x32\x61\x13\x26\x52\ \x10\x1e\x44\x0e\x1d\x3b\x08\x16\x2f\x05\x10\x26\x0e\x1b\x32\x11\ \x1f\x37\x0c\x18\x26\x0d\x15\x21\x0d\x14\x21\x0e\x14\x21\x0b\x14\ \x1e\x0a\x13\x1d\x0b\x13\x21\x0c\x12\x20\x09\x0f\x1c\x07\x0e\x19\ \x09\x12\x1c\x08\x10\x1d\x0b\x12\x1f\x0b\x11\x1e\x08\x0e\x1b\x09\ \x0f\x19\x07\x0e\x17\x0c\x12\x1c\x0a\x10\x1b\x0a\x10\x1b\x0d\x12\ \x1c\x0f\x14\x1e\x0c\x10\x1b\x10\x14\x1f\x0d\x12\x1b\x0d\x12\x1b\ \x10\x15\x1e\x0f\x14\x1d\x0e\x13\x1c\x10\x14\x1e\x0e\x13\x1c\x11\ \x17\x1e\x11\x17\x1e\x12\x17\x20\x12\x17\x20\x14\x1a\x22\x15\x1b\ \x22\x18\x1f\x24\x1a\x20\x25\x1b\x21\x26\x1e\x24\x29\x21\x27\x2c\ \x20\x26\x2b\x21\x27\x2c\x24\x29\x2e\x28\x2d\x32\x24\x29\x2e\x29\ \x2d\x32\x2e\x33\x38\x27\x30\x33\x27\x30\x33\x29\x32\x36\x21\x2b\ \x31\x19\x21\x29\x22\x25\x2f\x2a\x30\x39\xd3\xcd\xd4\x8f\x87\x8a\ \x6e\x76\x82\x94\xa7\xc2\x8d\xa8\xd1\xa1\xb9\xeb\xa8\xbf\xf0\xa9\ \xc1\xef\xab\xc2\xf0\xa4\xbb\xe9\xa8\xbf\xed\xa2\xb9\xe8\xa9\xc0\ \xef\xa2\xba\xe8\xa3\xba\xe7\xa9\xc0\xee\xa3\xba\xe9\xab\xc0\xf0\ \xa8\xbf\xef\xa6\xbd\xed\xa4\xbd\xec\xa4\xbf\xef\xa3\xbc\xef\xa6\ \xbd\xf1\xa6\xbd\xee\xa9\xc0\xee\xa9\xbf\xee\xa3\xb9\xeb\xa4\xbc\ \xef\xa8\xc0\xf3\xab\xc4\xf6\xad\xc4\xf6\xa7\xbf\xef\xaa\xc4\xf3\ \xa8\xc0\xf4\xa6\xbe\xf3\xad\xc5\xf8\xa4\xbe\xed\xa6\xc0\xef\xa7\ \xbf\xf1\xa4\xb8\xef\xa8\xbe\xf2\xa8\xbf\xf0\x9f\xb7\xec\x8b\x9d\ \xdd\x1d\x27\x5c\x25\x31\x54\x3c\x53\x6f\x68\x88\xaa\xad\xcd\xf1\ \xae\xcd\xf5\xa3\xc1\xec\xa5\xc5\xef\xa4\xc6\xef\x9d\xbe\xeb\x96\ \xb6\xe7\x8c\xab\xde\x9a\xbb\xe6\xa3\xc5\xe9\xa8\xc7\xec\xa2\xc0\ \xeb\x96\xb7\xe5\x93\xb5\xe3\x91\xb3\xdf\x9b\xbc\xe9\x96\xb8\xe4\ \x95\xb9\xe2\xa3\xc5\xee\xa8\xc6\xf0\x66\x82\xb3\x8d\xab\xe6\x4a\ \x62\x98\x23\x33\x59\x26\x34\x51\x4f\x62\x7c\x5e\x78\x8e\x65\x80\ \x93\x62\x7b\x8b\x5d\x74\x84\x57\x6d\x7a\x56\x6a\x76\x57\x6a\x75\ \x57\x69\x74\x57\x67\x70\x5a\x6a\x71\x5e\x6e\x74\x62\x74\x7a\x68\ \x79\x81\x6e\x80\x85\x72\x85\x8b\x71\x84\x8c\x72\x84\x8f\x6f\x84\ \x8f\x6c\x7f\x8c\x6c\x7f\x8c\x6a\x7f\x8d\x00\x00\x00\x2e\x52\x83\ \x40\x62\x8f\x2c\x4f\x7f\x23\x3f\x6e\x10\x25\x50\x0f\x1d\x41\x0b\ \x19\x37\x0e\x1c\x34\x07\x13\x2a\x10\x1e\x36\x0f\x1f\x36\x0b\x17\ \x26\x0b\x13\x20\x0c\x14\x21\x0b\x11\x1e\x0a\x12\x1d\x06\x0f\x1a\ \x09\x11\x1e\x09\x0f\x1c\x08\x0e\x1b\x0a\x11\x1e\x0a\x13\x1e\x0b\ \x14\x1e\x0d\x14\x1f\x0e\x14\x1f\x0e\x14\x1f\x0e\x14\x1e\x0c\x13\ \x1c\x0c\x12\x1d\x0f\x15\x20\x0f\x15\x20\x10\x15\x1e\x12\x16\x20\ \x13\x17\x22\x13\x17\x22\x11\x16\x1e\x11\x16\x1f\x14\x19\x22\x13\ \x18\x21\x10\x15\x1e\x11\x16\x1f\x10\x15\x1e\x12\x18\x1f\x15\x1b\ \x22\x14\x19\x22\x17\x1c\x25\x1b\x21\x29\x17\x1e\x25\x1e\x24\x2a\ \x1b\x21\x26\x1f\x26\x2b\x1c\x24\x29\x1b\x23\x27\x1f\x27\x2b\x20\ \x28\x2c\x27\x2c\x31\x25\x2b\x30\x28\x2d\x32\x28\x2d\x32\x2a\x30\ \x35\x27\x30\x34\x2a\x33\x36\x2a\x33\x37\x23\x2d\x34\x1d\x27\x2e\ \x1c\x22\x2c\x27\x2f\x39\x91\x8b\x91\x9a\x93\x97\x68\x6f\x7e\x7a\ \x8d\xa9\x98\xb1\xdc\xa3\xba\xed\xa4\xbb\xec\xa8\xc0\xee\xa8\xbe\ \xec\xa4\xb8\xe8\xa5\xba\xea\xa6\xbc\xec\xa8\xbf\xee\xa6\xbd\xeb\ \xa6\xbd\xea\xa6\xbd\xeb\xa4\xba\xeb\xa6\xbb\xee\xa7\xbd\xf0\xa3\ \xba\xec\xa4\xbc\xef\xa4\xbd\xef\xa2\xbb\xed\xa8\xbf\xf2\xac\xc3\ \xf3\xab\xc2\xf0\xb4\xcb\xf9\x9f\xb6\xe5\xaa\xc1\xf3\xa8\xc1\xf1\ \xac\xc5\xf5\xad\xc4\xf4\xac\xc5\xf4\xa8\xc2\xf3\xa7\xc0\xf3\xa7\ \xbf\xf4\xad\xc6\xf9\xa9\xc3\xf3\xa9\xc3\xf2\xa5\xbf\xef\xa6\xbb\ \xef\xaa\xbf\xf1\xa3\xba\xeb\xa6\xbc\xf3\x82\x93\xd4\x16\x20\x54\ \x2c\x3b\x5b\x67\x80\x9e\x81\xa0\xc4\xab\xcb\xee\xb2\xd1\xf8\xa2\ \xbf\xeb\xa4\xc4\xee\xa4\xc5\xee\xa0\xc1\xee\x93\xb3\xe4\x8e\xaf\ \xe2\x97\xb8\xe3\xa0\xc1\xe5\xab\xc9\xef\x9f\xbe\xe8\x92\xb4\xe2\ \x91\xb4\xe2\x91\xb3\xe0\x97\xb8\xe6\x99\xbc\xe7\x96\xba\xe3\xa6\ \xc7\xef\xa6\xc4\xee\x73\x91\xc0\x89\xa6\xde\x2c\x41\x72\x20\x2f\ \x51\x28\x39\x54\x52\x69\x82\x67\x81\x97\x67\x81\x95\x61\x79\x8a\ \x5b\x71\x81\x57\x6c\x7a\x56\x6a\x75\x57\x6a\x74\x57\x69\x74\x5b\ \x6b\x75\x5f\x6f\x76\x61\x72\x79\x66\x77\x7e\x6c\x7d\x86\x72\x83\ \x8c\x77\x89\x90\x76\x89\x91\x74\x88\x91\x72\x86\x90\x6f\x82\x8f\ \x6f\x82\x8f\x6c\x82\x90\x00\x00\x00\x34\x59\x8d\x3f\x62\x8e\x31\ \x54\x81\x25\x43\x71\x13\x28\x52\x14\x25\x4a\x0d\x1b\x3a\x0d\x1b\ \x36\x09\x16\x2e\x16\x24\x3c\x0e\x1e\x37\x0b\x18\x29\x0b\x15\x21\ \x09\x12\x1f\x09\x11\x1e\x0a\x13\x1d\x07\x11\x1b\x0d\x16\x20\x0b\ \x12\x1d\x0e\x14\x20\x0f\x16\x23\x0e\x17\x23\x0b\x14\x1e\x0c\x14\ \x1e\x0b\x11\x1c\x0b\x11\x1c\x08\x0e\x18\x09\x0e\x19\x0c\x11\x1c\ \x0b\x10\x1b\x0b\x11\x1b\x0b\x10\x19\x0b\x0f\x19\x10\x14\x1f\x0c\ \x11\x1b\x0d\x13\x1b\x0f\x14\x1d\x0f\x14\x1d\x0e\x13\x1c\x0d\x12\ \x1b\x11\x16\x1f\x0d\x12\x19\x0e\x14\x1a\x12\x18\x1e\x0e\x13\x1c\ \x16\x1b\x24\x12\x16\x1f\x14\x1b\x21\x14\x1a\x20\x19\x1f\x24\x1d\ \x24\x29\x20\x29\x2d\x21\x2a\x2e\x26\x2f\x33\x29\x32\x36\x31\x38\ \x3b\x2b\x32\x35\x2f\x36\x39\x29\x30\x33\x27\x2f\x32\x29\x32\x35\ \x23\x2c\x2f\x1f\x29\x2d\x21\x2c\x32\x22\x2c\x35\x1e\x27\x33\x22\ \x2b\x37\x73\x6d\x74\x9e\x97\x9c\x78\x7f\x90\x76\x8a\xa9\x9e\xb8\ \xe5\xa2\xb9\xed\xa4\xbb\xec\xab\xc3\xf1\xa8\xbf\xed\xa9\xbd\xed\ \xa5\xba\xea\xa7\xbd\xed\xa5\xbc\xeb\xa9\xc0\xed\xa7\xbe\xeb\xa7\ \xbe\xed\xa5\xbb\xec\xa8\xbd\xf0\xa6\xbd\xef\xa3\xba\xec\xa6\xbf\ \xf1\xa6\xbf\xf1\xaa\xc2\xf4\xa9\xc0\xf2\xaa\xc1\xf2\xaa\xc0\xf0\ \xb2\xc9\xf8\xa7\xbe\xee\xaf\xc6\xf5\xab\xc3\xf2\xaa\xc4\xf1\xaf\ \xc5\xf6\xa9\xc1\xf2\xa8\xc0\xf3\xa6\xbe\xf2\xaa\xc1\xf5\xac\xc5\ \xf7\xa8\xc2\xf0\xa7\xc1\xf0\xa3\xbd\xec\xa7\xbf\xef\xa5\xbd\xed\ \xa0\xb8\xea\xa3\xb8\xf1\x77\x87\xcb\x14\x1e\x4f\x2c\x3b\x5c\x45\ \x60\x7d\x8f\xae\xd3\xab\xca\xee\xad\xcc\xf3\x9f\xbf\xea\xa0\xc0\ \xe9\x9f\xbf\xe8\x9e\xbe\xec\x93\xb5\xe5\x91\xb2\xe3\x9b\xbd\xe5\ \xa4\xc5\xe9\xae\xcc\xf4\x98\xb9\xe5\x90\xb3\xe1\x94\xb7\xe6\x93\ \xb5\xe1\x93\xb7\xe4\x93\xb7\xe3\x99\xbb\xe5\xa7\xc7\xf1\x9e\xba\ \xe6\x82\x9f\xcf\x7e\x99\xcd\x17\x2b\x56\x15\x24\x43\x39\x4c\x66\ \x57\x73\x8b\x66\x83\x98\x65\x7f\x93\x60\x78\x89\x59\x6f\x7e\x56\ \x6b\x79\x57\x6b\x76\x5b\x6e\x76\x5d\x6e\x77\x5f\x6e\x77\x62\x72\ \x7a\x64\x76\x7d\x6a\x7c\x83\x72\x83\x8c\x75\x87\x92\x77\x89\x94\ \x77\x8a\x93\x73\x88\x91\x71\x86\x8f\x70\x83\x8f\x6e\x82\x90\x6b\ \x81\x90\x00\x00\x00\x3c\x63\x9b\x3b\x5e\x8c\x38\x5d\x89\x2a\x48\ \x78\x11\x2a\x56\x0b\x1f\x45\x0a\x1c\x3d\x0d\x1b\x38\x09\x16\x2f\ \x14\x24\x3b\x0c\x1d\x36\x0a\x19\x2a\x0a\x15\x22\x0a\x14\x20\x0b\ \x13\x20\x0a\x13\x1e\x0a\x13\x1d\x08\x11\x1c\x09\x10\x1b\x0a\x10\ \x1b\x07\x0e\x19\x07\x10\x1a\x08\x11\x1b\x0b\x13\x1d\x06\x0c\x17\ \x0b\x11\x1c\x0e\x13\x1e\x0d\x11\x1c\x10\x14\x1f\x10\x15\x1e\x0d\ \x12\x1b\x0b\x10\x18\x0f\x14\x1d\x0f\x13\x1e\x0f\x14\x1d\x11\x16\ \x1d\x10\x16\x1e\x14\x19\x22\x11\x16\x1e\x13\x18\x21\x1c\x22\x2a\ \x0e\x14\x1a\x11\x17\x1c\x0e\x14\x1a\x11\x17\x1f\x19\x1e\x27\x13\ \x19\x21\x11\x17\x1e\x12\x18\x1e\x17\x1d\x22\x19\x20\x25\x16\x1e\ \x23\x19\x22\x26\x1f\x28\x2c\x22\x2b\x2f\x20\x27\x2a\x24\x2b\x2e\ \x2c\x33\x36\x2e\x35\x38\x2c\x33\x36\x33\x3c\x40\x34\x3d\x40\x28\ \x32\x35\x1b\x26\x2c\x20\x2a\x33\x1f\x26\x33\x23\x2a\x37\x6d\x67\ \x70\xa5\x9e\xa4\x67\x6f\x81\x5a\x6e\x8f\xa0\xb9\xea\xa3\xba\xee\ \xa6\xbe\xed\xac\xc5\xef\xae\xc4\xef\xac\xc0\xee\xa9\xbd\xed\xa9\ \xbe\xee\xa9\xc1\xf0\xaa\xc1\xef\xa5\xbc\xe9\xa8\xbf\xed\xa7\xbc\ \xed\xa4\xb9\xec\xa6\xbc\xef\xa6\xbd\xef\xa6\xbf\xf1\xaa\xc1\xf3\ \xa9\xc0\xf1\xab\xc2\xf2\xaa\xc1\xf1\xa9\xbf\xf2\xa9\xbd\xf1\xa2\ \xb9\xeb\xb3\xca\xfb\xaf\xc6\xf5\xad\xc6\xf3\xac\xc4\xf3\xac\xc4\ \xf6\xa8\xc1\xf5\xa8\xc0\xf4\xad\xc6\xf9\xab\xc4\xf6\xa9\xc3\xf1\ \xa7\xc1\xef\xa3\xbd\xec\xa6\xc0\xef\xa4\xbe\xed\x9f\xb7\xe9\xa5\ \xb7\xf2\x62\x6f\xb2\x12\x1c\x4b\x2f\x3f\x5e\x4c\x67\x87\x92\xb2\ \xd9\xad\xcc\xf0\xa3\xc4\xeb\xa1\xc1\xec\xa0\xc0\xe9\xa2\xc2\xeb\ \x9c\xbd\xea\x96\xb8\xe7\x99\xba\xe9\x9e\xc0\xe7\xa6\xc5\xeb\xad\ \xcb\xf4\x96\xb9\xe3\x90\xb3\xe2\x90\xb4\xe4\x98\xba\xe7\x91\xb5\ \xe2\x8f\xb2\xdf\xa2\xc3\xee\xa5\xc5\xf0\x8f\xaf\xda\x95\xb1\xe3\ \x66\x80\xb1\x11\x25\x4b\x20\x31\x4d\x45\x5a\x75\x65\x82\x97\x69\ \x84\x97\x63\x7d\x8f\x5f\x76\x86\x58\x6e\x7e\x58\x6c\x7a\x59\x6c\ \x77\x5e\x70\x78\x5f\x71\x79\x65\x75\x80\x6a\x7b\x84\x6c\x7e\x85\ \x72\x83\x8c\x75\x87\x91\x78\x8a\x95\x78\x8b\x96\x75\x89\x94\x72\ \x85\x91\x70\x84\x8f\x6d\x81\x8d\x69\x7d\x8b\x65\x7d\x8d\x00\x00\ \x00\x3b\x63\x9e\x3d\x62\x91\x38\x5c\x89\x29\x4a\x7b\x1b\x37\x64\ \x11\x27\x50\x08\x1a\x3e\x0c\x1c\x3c\x09\x16\x30\x14\x25\x3c\x09\ \x1c\x35\x0b\x19\x2c\x0c\x19\x26\x0a\x14\x20\x08\x10\x1d\x0a\x12\ \x1e\x0a\x12\x1d\x0a\x12\x1f\x0c\x12\x1f\x0b\x10\x1b\x09\x11\x1a\ \x08\x12\x1a\x0c\x14\x1d\x0d\x15\x1f\x0b\x12\x1b\x0b\x12\x1c\x0e\ \x13\x1d\x0c\x10\x1b\x11\x15\x1f\x10\x15\x1e\x10\x15\x1e\x12\x18\ \x1f\x11\x16\x1e\x10\x15\x1e\x11\x16\x1f\x0e\x14\x1a\x0a\x10\x17\ \x0f\x16\x1c\x0e\x15\x1c\x12\x18\x1f\x1c\x22\x29\x15\x1b\x20\x13\ \x19\x1e\x0f\x15\x1b\x13\x18\x21\x16\x1b\x25\x13\x18\x21\x0e\x14\ \x1b\x11\x17\x1d\x15\x1b\x20\x18\x1e\x23\x16\x1c\x21\x1a\x20\x25\ \x1b\x21\x26\x1e\x24\x29\x21\x27\x2a\x28\x2d\x30\x2d\x32\x34\x2b\ \x30\x32\x2c\x32\x35\x2d\x36\x3a\x20\x29\x2c\x1f\x29\x2c\x25\x30\ \x36\x24\x2c\x36\x23\x27\x35\x26\x2d\x3a\x7e\x78\x80\x9e\x98\x9e\ \x79\x83\x94\x77\x8d\xae\xa1\xb9\xeb\xa5\xbc\xf0\xa6\xbe\xeb\xb0\ \xc8\xf0\xae\xc5\xee\xb0\xc4\xf0\xaa\xbf\xec\xab\xbf\xee\xa7\xbf\ \xee\xa6\xbd\xea\xa7\xbe\xeb\xa9\xc0\xee\xa9\xbe\xf0\xa9\xbe\xf3\ \xa9\xbf\xf1\xa9\xbf\xf3\xa5\xbd\xf1\xa7\xbd\xf0\xa7\xbd\xef\xaa\ \xc0\xf1\xa8\xbd\xef\xa6\xbd\xef\xaa\xc0\xf4\xa3\xb8\xec\xb0\xc5\ \xf8\xaf\xc5\xf4\xae\xc5\xf2\xae\xc6\xf5\xad\xc5\xf8\xac\xc4\xf8\ \xa8\xc1\xf4\xaa\xc3\xf6\xaa\xc4\xf4\xa5\xbf\xed\xa7\xc1\xef\xa5\ \xbf\xee\xa4\xbe\xee\xa5\xbf\xf0\xa2\xba\xed\xa1\xb5\xee\x3f\x4d\ \x8d\x1e\x27\x55\x25\x38\x56\x49\x66\x86\x9d\xbe\xe6\xad\xcd\xf2\ \xa2\xc3\xe9\xa2\xc2\xed\xa5\xc5\xee\xa5\xc5\xee\xa0\xc0\xed\x94\ \xb6\xe4\x99\xba\xe9\x9e\xc2\xe7\xa7\xc5\xec\xa9\xc8\xf1\x92\xb4\ \xe0\x8d\xb1\xe1\x8f\xb3\xe3\x98\xb9\xe7\x97\xb9\xe8\x92\xb3\xe1\ \xa4\xc5\xf0\xa0\xc1\xec\x7f\xa0\xcd\x98\xb4\xe9\x3e\x59\x89\x1d\ \x31\x56\x29\x3c\x59\x6b\x81\x9b\x76\x8e\xa4\x6a\x82\x96\x62\x7a\ \x8c\x5e\x75\x85\x57\x6c\x7d\x59\x6c\x7b\x5b\x6e\x77\x60\x73\x7a\ \x65\x78\x7e\x6b\x7c\x86\x6f\x80\x89\x72\x84\x8b\x77\x89\x91\x7b\ \x8d\x97\x78\x8d\x97\x78\x8c\x97\x73\x86\x93\x6e\x80\x8f\x6b\x7e\ \x8b\x67\x7a\x87\x62\x76\x85\x5d\x75\x85\x00\x00\x00\x39\x62\x9c\ \x41\x65\x97\x37\x5b\x89\x2d\x51\x7e\x20\x40\x6d\x16\x2f\x5a\x0d\ \x21\x45\x0a\x1a\x3a\x06\x16\x31\x13\x26\x40\x0d\x20\x39\x0e\x19\ \x2c\x0b\x14\x22\x0c\x15\x22\x09\x11\x1e\x0a\x12\x20\x0c\x13\x23\ \x08\x10\x1d\x09\x11\x1c\x08\x10\x19\x08\x10\x1a\x0a\x12\x1c\x0e\ \x14\x1d\x0f\x14\x1f\x0f\x13\x1e\x0d\x11\x1b\x12\x19\x21\x17\x20\ \x27\x13\x1d\x25\x15\x1d\x26\x1d\x23\x2c\x15\x1b\x23\x1e\x24\x2c\ \x1d\x24\x2b\x17\x1e\x22\x1a\x22\x25\x19\x21\x27\x12\x17\x1f\x12\ \x15\x1d\x15\x19\x21\x29\x2f\x36\x26\x2a\x32\x24\x2a\x31\x1f\x27\ \x2e\x1a\x21\x2b\x2a\x30\x38\x22\x27\x2c\x23\x28\x2e\x15\x1a\x1f\ \x15\x1c\x20\x19\x20\x24\x1e\x24\x28\x19\x20\x23\x19\x1f\x24\x1a\ \x20\x26\x1b\x21\x23\x24\x29\x2a\x27\x2d\x2b\x2e\x34\x33\x2a\x30\ \x31\x33\x3b\x3c\x24\x2c\x2d\x20\x29\x2c\x22\x29\x31\x21\x29\x32\ \x20\x27\x2f\x23\x2a\x38\x8b\x87\x8d\x96\x93\x97\x5e\x6c\x81\x77\ \x8d\xb3\xa0\xb9\xea\xa7\xbf\xef\xac\xc2\xf0\xb4\xc8\xf3\xaf\xc2\ \xec\xb2\xc5\xf0\xa8\xbd\xeb\xaa\xc0\xf0\xa9\xbf\xef\xa6\xbd\xeb\ \xa5\xbb\xe9\xab\xbe\xee\xa8\xbc\xec\xaa\xbe\xed\xaa\xbe\xee\xaa\ \xc0\xf0\xa2\xbb\xed\xa7\xbd\xf1\xa5\xbc\xef\xa8\xbf\xf2\xa4\xbb\ \xed\xa7\xbd\xf1\xa8\xbe\xf2\x9e\xb4\xe8\xae\xc5\xf8\xac\xc5\xf5\ \xab\xc5\xf3\xac\xc2\xf2\xaf\xc6\xf7\xac\xc3\xf6\xa8\xbf\xf1\xb1\ \xc7\xf8\xab\xc2\xf2\xa9\xbf\xef\xa8\xbf\xef\xa5\xbe\xed\xa5\xbf\ \xee\xa9\xbf\xf2\xa5\xbd\xef\x95\xa7\xe8\x27\x32\x6e\x29\x31\x5d\ \x28\x3d\x55\x59\x72\x97\xa9\xc8\xee\xab\xcb\xf2\xa1\xc1\xec\xa2\ \xc2\xed\xa4\xc4\xef\xa6\xc6\xf1\x9f\xbf\xea\x93\xb4\xe3\x99\xbb\ \xe9\xa0\xc3\xe9\xa6\xc6\xea\xa6\xc5\xf0\x96\xb7\xe5\x8f\xb1\xdf\ \x95\xb7\xe5\x98\xba\xe8\x97\xb8\xe8\x93\xb4\xe0\xa4\xc3\xec\xa8\ \xc5\xf1\x76\x94\xc4\x8c\xab\xe1\x22\x3d\x6f\x1c\x2e\x51\x33\x45\ \x60\x70\x8a\xa3\x6d\x86\x99\x67\x80\x94\x61\x79\x8b\x5a\x72\x83\ \x58\x6e\x7c\x58\x6d\x7a\x5c\x70\x7a\x64\x77\x7e\x69\x7a\x82\x6e\ \x7f\x88\x72\x82\x8d\x76\x88\x92\x79\x8b\x96\x7a\x8e\x99\x7c\x8e\ \x96\x78\x8d\x95\x6d\x83\x8e\x67\x7c\x89\x60\x72\x81\x5c\x6f\x7d\ \x56\x6c\x7c\x50\x68\x79\x00\x00\x00\x3c\x66\x9f\x3d\x64\x97\x3e\ \x62\x92\x2b\x4c\x7d\x1f\x3c\x6d\x10\x27\x54\x0e\x20\x47\x0a\x18\ \x3a\x09\x16\x33\x14\x24\x41\x0d\x20\x3a\x0a\x19\x2b\x0e\x17\x25\ \x0c\x15\x22\x0c\x16\x20\x0e\x17\x20\x0f\x15\x20\x0d\x12\x1c\x1c\ \x21\x2a\x11\x17\x1d\x0c\x12\x19\x0a\x10\x18\x06\x0f\x18\x08\x0e\ \x19\x07\x0c\x16\x0b\x10\x18\x14\x1a\x1e\x0f\x15\x1b\x1d\x25\x2b\ \x10\x18\x1f\x14\x1b\x21\x15\x1c\x23\x15\x1c\x24\x16\x1d\x26\x12\ \x1a\x20\x16\x1f\x23\x18\x1e\x24\x0a\x10\x17\x1a\x20\x27\x31\x3a\ \x40\x35\x3f\x47\x1c\x25\x2e\x24\x2d\x32\x24\x2b\x2e\x29\x2f\x33\ \x2b\x30\x34\x33\x39\x3d\x25\x2b\x30\x19\x20\x26\x0d\x15\x1c\x16\ \x1d\x22\x18\x1e\x23\x22\x28\x2f\x1f\x24\x2d\x29\x2d\x37\x2c\x33\ \x3a\x22\x2b\x30\x1a\x25\x28\x26\x32\x35\x26\x30\x34\x24\x2d\x32\ \x21\x2a\x2e\x23\x2c\x32\x1f\x26\x30\x1f\x28\x32\x1f\x28\x32\x22\ \x2a\x3a\x8b\x8a\x90\x85\x84\x8a\x75\x82\x9a\x88\x9d\xc4\xa7\xc0\ \xf2\xa9\xbf\xf0\xac\xc4\xf2\xb1\xc7\xf2\xb3\xc7\xf1\xab\xc0\xec\ \xa9\xbe\xed\xab\xc2\xf2\xa8\xbe\xee\xa4\xba\xe9\xa7\xbe\xec\xaa\ \xc0\xef\xa5\xb9\xe9\xaa\xbe\xee\xab\xbf\xef\xa9\xc0\xf0\xa2\xbb\ \xec\xa6\xbd\xef\xab\xc2\xf4\xa8\xbf\xf1\xa5\xbc\xee\x9e\xb5\xe7\ \xa9\xc0\xf3\x9e\xb4\xe8\xab\xc1\xf3\xae\xc5\xf5\xa8\xc1\xef\xab\ \xc3\xf1\xad\xc4\xf5\xad\xc4\xf6\xa8\xbf\xf0\xb1\xc8\xf7\xb1\xc7\ \xf7\xaf\xc6\xf6\xa7\xbe\xee\xa6\xc1\xf0\xa6\xc0\xee\xa4\xbe\xef\ \xa5\xbf\xf3\x88\x9a\xdd\x19\x24\x61\x2d\x36\x5f\x2c\x42\x5c\x6c\ \x87\xac\xa9\xc9\xee\xaa\xc9\xf1\x9d\xc1\xe8\x9d\xbf\xea\xa0\xc2\ \xed\xa0\xc1\xee\x9c\xbe\xea\x97\xb9\xe7\x96\xb8\xe5\x9e\xc1\xe7\ \xa8\xc7\xec\xa1\xc1\xeb\x91\xb2\xe0\x90\xb1\xe2\x97\xb8\xe9\x97\ \xb9\xe7\x92\xb5\xe5\x91\xb3\xe0\xa0\xc0\xe9\xa8\xc7\xf3\x67\x86\ \xb7\x70\x8a\xc2\x21\x36\x66\x17\x27\x48\x38\x49\x63\x66\x7e\x95\ \x66\x7f\x91\x65\x7e\x92\x5f\x78\x89\x58\x70\x7f\x58\x6d\x7c\x5c\ \x6f\x7e\x62\x75\x7f\x66\x78\x81\x6a\x7b\x85\x6d\x7e\x87\x70\x81\ \x8a\x75\x87\x92\x78\x8a\x95\x79\x8c\x97\x7b\x8e\x97\x74\x89\x91\ \x69\x7f\x89\x5f\x74\x81\x57\x6a\x79\x4f\x63\x73\x4c\x62\x72\x47\ \x5e\x71\x00\x00\x00\x36\x62\x9b\x3e\x66\x9a\x39\x5d\x8e\x2c\x4d\ \x7e\x23\x3f\x71\x0d\x23\x52\x0e\x1f\x48\x0e\x1a\x40\x0b\x16\x36\ \x17\x27\x44\x0b\x1d\x37\x0d\x1a\x2c\x0c\x16\x24\x10\x1a\x25\x0c\ \x15\x1d\x17\x1f\x27\x0b\x11\x19\x12\x14\x1e\x10\x13\x1a\x10\x14\ \x19\x0d\x12\x18\x09\x0f\x16\x0c\x13\x17\x10\x16\x1b\x15\x1a\x1d\ \x14\x17\x1a\x19\x1e\x1e\x1b\x1f\x20\x1d\x22\x23\x20\x25\x26\x1b\ \x1f\x21\x1c\x21\x24\x24\x28\x2d\x1d\x22\x28\x19\x1f\x25\x1c\x23\ \x27\x1a\x1e\x22\x26\x2a\x2f\x41\x47\x4d\x30\x39\x3e\x51\x5d\x63\ \x28\x34\x3a\x48\x51\x52\x5f\x64\x64\x8e\x92\x90\x84\x8a\x8a\x59\ \x5f\x62\x37\x3d\x3e\x1f\x24\x25\x11\x16\x17\x1d\x24\x25\x27\x30\ \x31\x20\x29\x2c\x21\x29\x2e\x26\x2e\x33\x29\x2d\x32\x1a\x20\x22\ \x1b\x24\x26\x2f\x3a\x3d\x25\x2f\x35\x1c\x24\x2d\x33\x3c\x44\x1a\ \x24\x2b\x22\x2b\x34\x25\x2f\x3a\x1b\x24\x2e\x23\x2a\x3b\x85\x84\ \x8b\x7c\x7e\x86\x5b\x6a\x84\x8f\xa5\xcc\xa8\xc0\xf1\xaa\xc0\xf1\ \xae\xc4\xf4\xae\xc4\xf2\xae\xc3\xf0\xac\xc1\xee\xa9\xbd\xec\xa8\ \xbf\xef\xa5\xbd\xec\xa3\xbb\xe9\xa4\xbb\xe9\xa6\xbc\xeb\xa7\xbc\ \xee\xa7\xbb\xed\xa9\xbd\xed\xa8\xbe\xee\xa3\xbb\xeb\xa3\xbb\xed\ \xad\xc4\xf6\xa7\xbe\xf0\xa5\xbc\xee\xa3\xba\xec\xa8\xbe\xf1\xa2\ \xb8\xec\xaa\xc0\xf3\xad\xc5\xf5\xac\xc6\xf2\xaf\xc7\xf4\xac\xc3\ \xf3\xad\xc4\xf4\xad\xc5\xf4\xae\xc5\xf4\xb0\xc6\xf6\xab\xc2\xf2\ \xa8\xc1\xf0\xa4\xbf\xee\xa6\xc1\xee\xa3\xbb\xed\xa4\xbe\xf3\x7b\ \x90\xd2\x14\x20\x59\x2e\x39\x5f\x30\x48\x62\x87\xa3\xc9\xa9\xcb\ \xee\xa9\xc8\xf1\x9e\xc1\xeb\x9b\xbd\xe8\x9e\xbf\xeb\x9c\xbd\xea\ \x9b\xbd\xe9\x98\xba\xe7\x9a\xbb\xe7\xa2\xc3\xe8\xa5\xc4\xea\x9c\ \xbc\xe7\x94\xb6\xe3\x90\xb1\xe1\x8f\xb0\xe1\x92\xb4\xe3\x8f\xb2\ \xe1\x93\xb5\xe2\x9d\xbf\xe9\x96\xb7\xe4\x6d\x8c\xbf\x5b\x74\xaa\ \x21\x34\x5d\x20\x2e\x4d\x38\x4b\x63\x61\x7a\x8f\x68\x82\x93\x64\ \x7c\x8e\x5d\x75\x86\x57\x6f\x7e\x59\x6d\x7c\x5d\x6f\x7d\x62\x74\ \x7f\x66\x77\x81\x6a\x7a\x86\x6a\x7b\x84\x6d\x7e\x87\x70\x83\x8b\ \x74\x87\x91\x75\x89\x94\x75\x89\x94\x6e\x82\x8d\x65\x79\x85\x58\ \x6e\x7b\x50\x64\x74\x47\x5d\x6e\x43\x59\x6a\x3f\x56\x69\x00\x00\ \x00\x39\x65\x9f\x3f\x65\x9b\x39\x5c\x8d\x31\x53\x82\x21\x3f\x70\ \x17\x2e\x5c\x0c\x1e\x47\x0b\x1a\x3f\x0a\x18\x37\x18\x29\x45\x0d\ \x1f\x36\x16\x21\x30\x2f\x3a\x45\x12\x1e\x26\x20\x2a\x2e\x19\x21\ \x24\x15\x19\x1f\x12\x15\x1d\x0f\x14\x1a\x11\x18\x1c\x24\x2b\x31\ \x21\x2a\x30\x23\x2b\x2f\x11\x18\x20\x1e\x24\x2c\x12\x18\x1f\x12\ \x19\x1e\x26\x2e\x34\x20\x2b\x31\x31\x3c\x44\x29\x35\x3c\x2f\x3b\ \x43\x32\x3f\x47\x37\x43\x4f\x3d\x49\x54\x32\x40\x4b\x28\x36\x3f\ \x45\x52\x5c\x2a\x38\x43\x37\x47\x53\x24\x35\x41\x39\x4b\x53\x88\ \x95\x9d\x9f\xaa\xb0\xa2\xad\xb4\x75\x82\x8b\x4b\x58\x61\x23\x2f\ \x36\x24\x2b\x31\x25\x2c\x2f\x51\x5a\x5d\x51\x5b\x5f\x52\x5c\x60\ \x32\x3c\x40\x28\x31\x35\x1c\x23\x27\x19\x20\x24\x27\x30\x34\x2d\ \x38\x3c\x28\x32\x39\x4f\x59\x63\x39\x44\x4c\x30\x3a\x41\x2d\x36\ \x3f\x25\x30\x3a\x24\x2c\x36\x28\x2f\x3e\x61\x5e\x64\x77\x78\x81\ \x79\x8a\xa5\x92\xa8\xd0\xad\xc3\xf5\xa8\xbe\xee\xae\xc4\xf4\xad\ \xc4\xf3\xa8\xbd\xec\xac\xc0\xef\xab\xc0\xef\xab\xc1\xf3\xa7\xbe\ \xee\xa1\xb9\xe7\xa3\xba\xe8\xa5\xbc\xeb\xa4\xb9\xeb\xa6\xbb\xee\ \xad\xc1\xf1\xa4\xba\xe9\xa4\xbb\xeb\xa6\xbd\xef\xa7\xbe\xf0\xa5\ \xbc\xee\xa4\xbb\xed\xa5\xbc\xef\xab\xc0\xf3\xa2\xb7\xea\xad\xc3\ \xf6\xad\xc4\xf4\xaa\xc3\xf0\xac\xc3\xf2\xad\xc4\xf5\xae\xc5\xf7\ \xad\xc4\xf5\xae\xc6\xf6\xac\xc5\xf4\xaa\xc1\xf1\xaa\xc1\xf1\xa6\ \xbf\xee\xa9\xc1\xef\xa5\xba\xee\xa1\xb9\xf2\x6d\x7f\xc3\x17\x20\ \x56\x28\x36\x57\x47\x5f\x7c\x8d\xac\xd3\xaa\xcc\xee\xa9\xc6\xf0\ \x9e\xbe\xec\x9a\xb9\xe7\x9d\xbd\xea\xa3\xc4\xf0\x9a\xbb\xe7\x9a\ \xbb\xe8\x9e\xbe\xe8\xa5\xc5\xe9\xa7\xc6\xec\x9c\xbc\xe9\x92\xb3\ \xe2\x8b\xac\xdd\x8d\xae\xdf\x8f\xb0\xe1\x8e\xb1\xe1\x92\xb4\xe0\ \xa1\xc0\xeb\x85\xa3\xd2\x80\x9e\xd3\x3a\x56\x89\x17\x28\x4b\x29\ \x38\x55\x50\x65\x7f\x61\x7b\x8e\x67\x80\x91\x61\x79\x8b\x5b\x71\ \x82\x54\x6b\x7a\x5a\x6e\x7b\x5e\x6f\x7a\x60\x73\x7b\x66\x77\x7f\ \x68\x78\x82\x69\x7a\x83\x6b\x7c\x85\x6d\x80\x87\x71\x84\x8d\x71\ \x86\x8f\x6e\x84\x90\x67\x7b\x87\x5e\x72\x7d\x51\x67\x74\x47\x5d\ \x6d\x3e\x55\x64\x3b\x54\x63\x39\x52\x64\x00\x00\x00\x38\x64\x9f\ \x3c\x63\x98\x3c\x5e\x90\x38\x5b\x89\x1f\x3e\x6d\x19\x33\x61\x0d\ \x21\x4a\x0b\x1c\x3f\x0b\x1a\x38\x17\x27\x43\x10\x1f\x35\x1f\x27\ \x33\x32\x3d\x45\x5a\x65\x6b\x36\x42\x46\x2f\x37\x3d\x26\x2d\x34\ \x3b\x42\x4b\x39\x42\x4a\x3b\x47\x4d\x1f\x2a\x34\x2a\x37\x42\x43\ \x50\x5c\x35\x43\x52\x59\x66\x77\xa5\xb3\xc3\xc5\xd4\xe4\xc5\xd5\ \xe5\x95\xa8\xb8\xbd\xd1\xe1\xb6\xc9\xd9\xbf\xd3\xe3\xc6\xdc\xed\ \xc3\xd9\xed\xc9\xdf\xf4\xcb\xe2\xf6\xbe\xd6\xe8\xc1\xd8\xec\xc6\ \xdd\xf3\xc5\xdd\xf5\xb0\xca\xe0\xb8\xd0\xe2\xc6\xdc\xed\xca\xdd\ \xf1\xc2\xd8\xec\xb9\xcf\xe5\xae\xc4\xd7\x95\xa8\xb9\x43\x53\x62\ \x34\x41\x4e\x30\x3c\x49\x34\x3f\x4c\x22\x2f\x3b\x48\x55\x60\x46\ \x54\x5e\x2b\x38\x42\x32\x3f\x48\x4e\x5b\x64\x52\x5e\x68\x3d\x48\ \x52\x51\x5c\x64\x2e\x3a\x40\x2c\x37\x3d\x36\x40\x44\x27\x30\x37\ \x25\x2d\x35\x20\x24\x2f\xa6\xa2\xa7\x7d\x7d\x87\x60\x72\x8f\x99\ \xb0\xdb\xad\xc5\xf7\xa9\xbe\xee\xae\xc4\xf4\xac\xc2\xf3\xa7\xbd\ \xec\xa9\xbd\xec\xa6\xbc\xec\xb1\xc7\xf9\xa3\xba\xea\x9f\xb6\xe5\ \xa3\xbb\xe9\xa6\xbc\xec\xa4\xba\xec\xa5\xbb\xed\xaf\xc3\xf4\xa8\ \xbe\xee\xa6\xbd\xed\xa3\xbb\xeb\xa5\xbc\xed\xa4\xbc\xed\xa4\xbb\ \xeb\xa6\xbe\xed\xaa\xbf\xf2\xa5\xba\xed\xaf\xc4\xf6\xae\xc6\xf4\ \xab\xc3\xf1\xab\xc2\xf3\xa8\xc0\xf2\xac\xc3\xf6\xac\xc3\xf5\xb0\ \xc6\xf8\xa7\xc1\xf0\xaa\xc2\xf2\xa7\xbf\xee\xa9\xc0\xf0\xad\xc2\ \xf1\xa5\xba\xf0\x9c\xb2\xed\x62\x72\xb4\x1d\x26\x59\x29\x38\x57\ \x50\x69\x87\x8d\xad\xd3\xac\xcd\xf0\xa6\xc3\xee\x9b\xb9\xe9\x9e\ \xbd\xea\xa5\xc4\xf0\xab\xcb\xf6\x97\xb8\xe3\x97\xb8\xe5\x9f\xbe\ \xe6\xa9\xc8\xeb\xaa\xc8\xef\x9f\xbe\xeb\x92\xb3\xe3\x8e\xaf\xe0\ \x90\xb1\xe2\x8f\xb0\xe0\x90\xb1\xe0\x99\xb9\xe6\xa8\xc6\xf2\x7a\ \x96\xc4\x88\xa4\xd9\x28\x45\x74\x18\x28\x49\x31\x42\x5e\x61\x79\ \x94\x67\x80\x94\x65\x7e\x8f\x5f\x77\x89\x58\x6f\x80\x54\x6b\x7a\ \x59\x6c\x78\x5c\x6f\x78\x5f\x71\x78\x67\x77\x7f\x65\x76\x7f\x66\ \x78\x7f\x69\x7a\x82\x6b\x7e\x86\x6e\x82\x89\x6e\x83\x8b\x6c\x81\ \x8d\x61\x75\x81\x58\x6d\x78\x4c\x63\x70\x40\x58\x65\x39\x51\x5e\ \x37\x50\x5f\x38\x50\x61\x00\x00\x00\x37\x65\xa2\x40\x69\x9e\x3c\ \x5f\x95\x39\x59\x8b\x27\x45\x74\x19\x35\x63\x0f\x23\x4a\x0a\x17\ \x36\x14\x21\x3d\x18\x24\x3c\x12\x1c\x2e\x38\x40\x46\x3a\x45\x4a\ \x1c\x28\x2f\x2c\x37\x3f\x91\xa0\xab\xb4\xc5\xd3\xc3\xd5\xe3\xc0\ \xd3\xe2\xc0\xd4\xe7\xba\xd1\xe5\xc4\xdb\xf1\xc4\xdc\xf3\xc2\xda\ \xf3\xbe\xd7\xf0\xc1\xd9\xf1\xc3\xdb\xf2\xc2\xda\xf2\xbf\xd8\xf0\ \xbc\xd6\xee\xb9\xd1\xe9\xc2\xda\xf0\xc4\xdd\xf5\xbe\xd8\xf1\xbe\ \xd7\xf1\xc0\xd8\xf4\xbf\xd7\xf3\xbe\xd8\xf3\xbc\xd8\xf4\xba\xd5\ \xf2\xb9\xd6\xf3\xbc\xd7\xf1\xbb\xd6\xf0\xb8\xd3\xed\xbc\xd7\xf1\ \xb8\xd4\xee\xbc\xd7\xf0\xc5\xdc\xf6\xbe\xd4\xee\x7d\x94\xac\xc3\ \xd9\xf2\xbf\xd5\xee\xb9\xd0\xe8\xb2\xca\xe1\xb8\xd1\xe7\xb0\xc5\ \xd9\x89\x9c\xaf\x93\xa4\xb7\x4a\x59\x69\x23\x31\x3e\x74\x82\x88\ \x9d\xa8\xaf\x4a\x53\x5b\x2e\x36\x3a\x24\x2b\x2d\x16\x1e\x25\x20\ \x22\x28\x7e\x7a\x7c\x7c\x80\x8b\x57\x6b\x88\x8f\xa8\xd3\xa7\xc1\ \xf4\xa6\xbf\xf1\xaf\xc4\xf4\xb0\xc6\xf6\xa8\xbd\xed\xa9\xbd\xed\ \xaa\xbf\xef\xac\xc0\xf1\xa6\xbb\xee\xa5\xbb\xeb\xa3\xb9\xe9\xa7\ \xbd\xee\xa3\xb8\xeb\xa3\xb8\xeb\xaa\xbf\xf2\xa3\xb9\xec\xa5\xbe\ \xf0\xa4\xbc\xef\xa2\xba\xee\xa5\xbd\xf1\xa1\xb7\xea\xa7\xbf\xee\ \xa3\xb8\xec\xa6\xbb\xef\xae\xc3\xf6\xac\xc4\xf4\xa4\xbf\xed\xab\ \xc4\xf5\xa7\xbf\xf2\xa9\xc1\xf5\xb0\xc7\xf8\xb0\xc6\xf8\xaa\xc1\ \xf3\xa8\xc2\xf1\xa6\xc1\xef\xa5\xbe\xef\xaa\xc0\xf3\x9d\xb7\xeb\ \x95\xac\xec\x4b\x55\x99\x26\x30\x5e\x50\x62\x7f\x5b\x76\x98\x91\ \xaf\xd3\xb2\xcf\xf4\xa2\xc2\xeb\x99\xb8\xe5\xa4\xc2\xed\xab\xc9\ \xf2\xa6\xc4\xef\x95\xb5\xe3\x9a\xba\xe7\xa4\xc3\xe9\xa6\xc5\xea\ \xa6\xc5\xee\x98\xb7\xe4\x92\xb2\xe2\x8f\xb0\xe1\x91\xb2\xe3\x8e\ \xb0\xde\x92\xb3\xe2\xa0\xbf\xeb\xad\xcb\xf5\x76\x93\xc1\x7c\x96\ \xcb\x28\x3d\x6d\x1b\x2d\x51\x3c\x50\x6c\x6e\x85\x9f\x67\x7f\x93\ \x64\x7e\x8e\x5e\x75\x87\x58\x6e\x7e\x57\x6a\x79\x57\x6a\x76\x5b\ \x6d\x75\x5f\x6f\x77\x64\x74\x7a\x65\x75\x7c\x67\x77\x7e\x67\x79\ \x80\x6b\x7d\x84\x6d\x80\x87\x6c\x7f\x87\x67\x7c\x86\x5d\x71\x7c\ \x50\x65\x71\x45\x5b\x67\x3c\x52\x5f\x38\x4e\x5a\x37\x4d\x5a\x38\ \x4f\x5f\x00\x00\x00\x35\x61\x9c\x3a\x66\x9c\x36\x5c\x92\x3a\x5b\ \x8c\x2b\x4a\x79\x20\x39\x69\x11\x20\x4a\x0d\x19\x38\x28\x34\x4b\ \x27\x31\x41\x1a\x23\x2d\x30\x3c\x42\x27\x32\x3a\x44\x4f\x59\xbe\ \xcb\xda\xc9\xda\xec\xc6\xdc\xef\xc7\xe0\xf4\xc1\xdb\xf1\xba\xd4\ \xed\xbe\xd9\xf4\xbb\xd6\xf1\xbc\xd9\xf2\xb7\xd5\xef\xba\xd8\xf2\ \xba\xd6\xef\xc2\xdc\xf4\xbf\xd8\xf0\xbb\xd6\xed\xbc\xd7\xef\xbc\ \xd6\xee\xbb\xd4\xec\xbe\xd8\xf0\xbc\xd5\xef\xbc\xd5\xef\xbd\xd7\ \xf2\xc0\xda\xf5\xbe\xd9\xf4\xbc\xd8\xf3\xbc\xd9\xf4\xbb\xd7\xf3\ \xb9\xd5\xf0\xba\xd6\xf1\xb6\xd2\xec\xba\xd6\xf1\xb4\xd2\xec\xb5\ \xd4\xef\xc1\xdc\xf6\xbc\xd8\xf2\xbb\xd7\xf1\xba\xd6\xf0\xbc\xd9\ \xf4\xb9\xd5\xf1\xb9\xd7\xf2\xb8\xd5\xf1\xbf\xdb\xf7\xb4\xce\xeb\ \xc0\xd7\xf4\xc5\xdb\xf5\xb0\xc7\xdc\xab\xc0\xd4\x7d\x91\xa7\x80\ \x90\xa4\x9b\xa6\xb1\x87\x90\x97\x36\x3f\x48\x26\x28\x32\x9d\x9b\ \x9c\x7f\x85\x8d\x6e\x82\x9e\x8d\xa4\xd0\xa3\xbd\xf1\xa7\xc1\xf1\ \xad\xc5\xf2\xb2\xc7\xf7\xaa\xbd\xed\xac\xbc\xee\xb1\xc2\xf3\xad\ \xc0\xf1\xa8\xbd\xf0\xa6\xbb\xec\xa1\xb7\xe7\xa6\xbb\xed\xa8\xbc\ \xef\xa6\xbb\xee\xab\xc0\xf3\xa3\xba\xec\xa5\xbd\xef\xa4\xbd\xef\ \xa7\xbf\xf2\xa6\xbe\xf0\xa4\xbb\xed\xa6\xbe\xed\xa3\xb8\xeb\xa8\ \xbe\xf0\xad\xc3\xf4\xac\xc4\xf2\xa7\xc2\xf0\xac\xc6\xf6\xaa\xc3\ \xf5\xa9\xc0\xf4\xb0\xc7\xf9\xaf\xc6\xf6\xae\xc5\xf7\xab\xc5\xf4\ \xa5\xbf\xee\xa6\xbf\xf0\xac\xc2\xf5\x9f\xb7\xf0\x91\xa5\xe9\x2f\ \x3a\x7d\x2b\x37\x65\x4f\x65\x82\x5c\x79\x9b\x9c\xba\xdd\xb2\xce\ \xf3\xa3\xc1\xeb\x9a\xb7\xe5\xa4\xc2\xed\xab\xc8\xf2\xa2\xc1\xec\ \x97\xb7\xe4\x98\xb8\xe4\xa2\xc3\xea\xa5\xc4\xea\xa3\xc2\xec\x99\ \xb8\xe6\x91\xb1\xe1\x8c\xad\xdf\x91\xb2\xe4\x90\xb1\xe0\x94\xb5\ \xe2\x9f\xbf\xeb\xa0\xbd\xe9\x79\x93\xc3\x5f\x77\xac\x25\x36\x63\ \x23\x34\x56\x4d\x63\x7e\x6a\x85\x9e\x64\x7c\x90\x5f\x78\x89\x5a\ \x72\x84\x56\x6c\x7c\x55\x69\x77\x55\x69\x75\x57\x6a\x72\x5d\x6e\ \x75\x61\x71\x77\x62\x73\x7a\x65\x76\x7c\x68\x78\x7f\x69\x7b\x82\ \x69\x7c\x82\x6a\x7d\x85\x64\x77\x7f\x59\x6c\x74\x4e\x61\x6a\x44\ \x58\x61\x3a\x4c\x58\x37\x4a\x57\x36\x4b\x57\x37\x4e\x5b\x00\x00\ \x00\x39\x62\x9a\x39\x66\x9d\x3b\x63\x99\x39\x5b\x8b\x2e\x4e\x7f\ \x20\x3c\x6e\x16\x28\x54\x0b\x18\x39\x27\x35\x4b\x3c\x45\x53\x37\ \x41\x4a\x58\x66\x6e\x4c\x57\x61\x60\x6a\x78\xcb\xd9\xeb\xc6\xda\ \xf0\xc3\xdb\xf4\xc3\xdb\xf1\xc0\xd9\xf1\xbe\xd8\xf0\xbb\xd6\xef\ \xbb\xd5\xee\xb7\xd2\xec\xb7\xd2\xee\xba\xd3\xf0\xc0\xd6\xf1\xc5\ \xdd\xf7\xbd\xd7\xf1\xb9\xd5\xef\xb9\xd5\xef\xbc\xd7\xf1\xbb\xd5\ \xef\xc1\xda\xf4\xc0\xd9\xf3\xba\xd4\xee\xbe\xd9\xf3\xc0\xda\xf6\ \xbf\xda\xf5\xbc\xd7\xf2\xb9\xd5\xf0\xbc\xd9\xf4\xbb\xd8\xf3\xb5\ \xd2\xed\xb5\xd2\xed\xbb\xd8\xf3\xb5\xd2\xed\xb8\xd4\xef\xbf\xd8\ \xf3\xbf\xd8\xf2\xbc\xd4\xee\xbb\xd5\xef\xbf\xda\xf4\xbe\xdb\xf4\ \xbb\xd8\xf1\xbb\xd8\xf2\xbf\xdb\xf8\xb3\xcd\xeb\xbd\xd6\xf2\xc2\ \xdb\xf4\xbd\xd4\xec\xba\xd5\xef\xa5\xbd\xde\x1e\x33\x50\x1a\x27\ \x38\x3d\x47\x50\x26\x30\x3c\x39\x3e\x48\xf7\xf3\xf6\x89\x8d\x94\ \x56\x69\x83\x88\x9f\xca\xa3\xbc\xef\xa6\xc0\xf0\xae\xc5\xf3\xaf\ \xc4\xf4\xaf\xc1\xf2\xad\xbe\xef\xb0\xc1\xf2\xa9\xbc\xed\xac\xc1\ \xf3\xa3\xb9\xe9\xa9\xbf\xed\xa5\xb9\xe9\xa9\xbc\xee\xab\xbf\xf2\ \xa6\xbc\xee\xa2\xb9\xea\xa6\xbd\xef\xa5\xbd\xef\xa1\xb9\xeb\xa6\ \xbd\xed\xaa\xc1\xf1\xa4\xbb\xeb\x9f\xb4\xe8\xaf\xc4\xf7\xb0\xc6\ \xf6\xab\xc3\xf2\xa4\xc1\xed\xa9\xc2\xf3\xa8\xc1\xf4\xa8\xc0\xf4\ \xae\xc5\xf7\xaf\xc5\xf6\xae\xc5\xf6\xa4\xbe\xed\xa3\xbd\xec\xa8\ \xc0\xf2\xa7\xbe\xf1\x9d\xb5\xf1\x8a\x9d\xe3\x1a\x25\x64\x2f\x3c\ \x67\x48\x62\x7f\x65\x83\xa5\xa4\xc1\xe4\xaf\xcb\xf1\xa3\xc0\xed\ \x9a\xba\xe7\xa2\xc0\xec\xac\xc9\xf5\x9e\xbe\xe9\x96\xb7\xe4\x9c\ \xbd\xea\xa2\xc1\xe8\xa5\xc3\xeb\xa1\xc0\xeb\x95\xb3\xe2\x91\xb1\ \xe2\x8c\xad\xdf\x96\xb7\xe8\x91\xb2\xe1\x97\xb7\xe4\xa3\xc2\xee\ \x93\xb1\xde\x84\x9e\xcf\x3f\x54\x89\x16\x26\x4f\x2b\x3d\x5c\x65\ \x7f\x99\x6a\x86\x9d\x61\x7b\x8e\x5d\x75\x87\x55\x6d\x7f\x51\x67\ \x77\x54\x68\x76\x52\x67\x70\x55\x68\x70\x5a\x6b\x71\x5e\x6e\x74\ \x60\x71\x77\x65\x74\x79\x66\x75\x7b\x68\x78\x7e\x69\x7a\x81\x65\ \x77\x7e\x5d\x70\x77\x54\x66\x6d\x4b\x5c\x64\x3f\x50\x59\x39\x4a\ \x54\x35\x49\x54\x36\x4a\x55\x38\x4e\x59\x00\x00\x00\x34\x5c\x90\ \x37\x64\x9d\x3a\x62\x99\x37\x5b\x8b\x33\x54\x85\x21\x41\x73\x16\ \x2d\x5b\x0d\x1c\x3e\x10\x1d\x38\x17\x25\x39\x30\x3c\x4b\x28\x32\ \x3e\x1f\x28\x35\x2e\x39\x47\x9c\xaa\xbc\xc8\xdb\xf0\xc1\xda\xf1\ \xc2\xdc\xf3\xbf\xd9\xf0\xbe\xd9\xf1\xbc\xd7\xef\xba\xd6\xee\xb9\ \xd4\xee\xbb\xd6\xf1\xba\xd3\xef\xc5\xdb\xf6\xc2\xdb\xf5\xbb\xd7\ \xf1\xb6\xd4\xef\xb8\xd6\xf1\xbb\xd8\xf3\xba\xd3\xee\xc4\xdc\xf7\ \xc0\xdb\xf5\xbb\xd6\xf0\xbf\xda\xf4\xbe\xd8\xf6\xc0\xdb\xf6\xc0\ \xdb\xf6\xbd\xd8\xf3\xbf\xda\xf6\xbd\xd9\xf7\xb6\xd2\xf0\xb4\xd1\ \xee\xb8\xd4\xf2\xb6\xd3\xee\xba\xd6\xf1\xbe\xd7\xf2\xc0\xd8\xf3\ \xba\xd4\xee\xbb\xd6\xf0\xbd\xd8\xf2\xbe\xd9\xf2\xba\xd5\xf0\xba\ \xd6\xf1\xbc\xd8\xf5\xb2\xcc\xea\xbc\xd6\xf2\xc0\xda\xf3\xbe\xd8\ \xee\xc3\xdc\xf4\xbb\xd7\xf9\x36\x4c\x6d\x19\x27\x39\x1b\x26\x2d\ \x15\x1f\x2b\x5a\x5b\x68\xd9\xd3\xd8\x92\x94\x9c\x58\x6a\x81\x89\ \xa0\xc7\xa7\xc0\xf2\xaa\xc3\xf3\xae\xc5\xf5\xae\xc4\xf4\xa8\xbd\ \xed\xae\xc1\xf1\xae\xc2\xf2\xa9\xbd\xed\xa9\xc0\xf0\xa5\xbb\xea\ \xa4\xb8\xe8\xa8\xbb\xeb\xac\xbe\xef\xad\xc2\xf2\xa4\xba\xea\xa1\ \xb8\xe8\xa4\xbb\xeb\xa6\xbd\xee\xa4\xbb\xeb\xa8\xc0\xee\xa6\xbc\ \xec\xaa\xbf\xf2\x9f\xb4\xe7\xb0\xc5\xf8\xb1\xc6\xf8\xac\xc5\xf4\ \xa7\xc2\xf0\xaa\xc3\xf4\xa9\xc1\xf4\xa7\xbf\xf2\xae\xc5\xf7\xae\ \xc4\xf6\xae\xc6\xf7\xa4\xbe\xed\xa5\xbf\xed\xa7\xc0\xf1\xa6\xbd\ \xef\xa0\xb9\xf6\x79\x8a\xd2\x13\x1f\x5a\x2f\x3f\x64\x3d\x57\x76\ \x7f\x9c\xbf\xa5\xc2\xe5\xad\xc9\xef\x9f\xbf\xec\x9b\xbc\xe9\x9f\ \xbe\xeb\xa5\xc5\xf0\x9d\xbe\xe9\x9a\xbc\xe8\x9a\xbb\xe8\xa1\xc1\ \xe9\xa7\xc8\xef\x9d\xbd\xe9\x95\xb3\xe3\x8f\xaf\xe1\x8f\xaf\xe2\ \x93\xb4\xe7\x8e\xae\xdf\x98\xb8\xe4\xa1\xc1\xed\x74\x91\xbf\x7b\ \x93\xc7\x2a\x3d\x73\x13\x23\x46\x31\x46\x61\x61\x7d\x95\x5d\x7a\ \x90\x62\x7a\x8c\x59\x71\x83\x54\x6c\x7e\x52\x69\x78\x52\x66\x73\ \x51\x64\x6e\x52\x64\x6c\x57\x66\x6c\x5b\x69\x6f\x5e\x6c\x72\x63\ \x71\x77\x66\x74\x7a\x66\x75\x7b\x65\x75\x7c\x60\x71\x78\x55\x68\ \x70\x4d\x60\x68\x41\x53\x5b\x39\x4a\x53\x37\x48\x52\x36\x48\x53\ \x38\x4b\x56\x39\x4d\x59\x00\x00\x00\x33\x5a\x8c\x3a\x66\xa2\x3c\ \x64\x9b\x36\x5a\x8b\x31\x53\x85\x25\x45\x79\x17\x2f\x5d\x13\x22\ \x48\x0d\x1a\x39\x0b\x18\x34\x20\x2d\x44\x25\x31\x41\x4a\x58\x68\ \x50\x5e\x6d\x64\x72\x84\xc5\xd8\xef\xc0\xd9\xf0\xbc\xd7\xf1\xbc\ \xd5\xef\xc0\xda\xf4\xba\xd5\xef\xbd\xd9\xf3\xb9\xd6\xf0\xb9\xd5\ \xf1\xbb\xd7\xf2\xbf\xda\xf5\xbd\xd9\xf3\xb5\xd2\xed\xb3\xd1\xec\ \xb5\xd3\xee\xb8\xd6\xf2\xb8\xd3\xee\xbf\xd9\xf4\xc2\xdd\xf7\xbd\ \xd8\xf2\xbe\xd9\xf3\xb9\xd5\xf1\xbc\xd8\xf4\xbd\xd9\xf4\xba\xd6\ \xf1\xbd\xda\xf4\xba\xd7\xf3\xb9\xd5\xf2\xb7\xd3\xef\xb9\xd4\xf0\ \xb6\xd3\xf0\xb6\xd2\xee\xba\xd6\xf1\xbb\xd6\xf0\xb8\xd5\xef\xba\ \xd6\xf1\xbe\xda\xf5\xbf\xdb\xf6\xb9\xd5\xf1\xbb\xd7\xf3\xbd\xd9\ \xf5\xb2\xcd\xeb\xba\xd5\xf3\xbe\xd9\xf4\xbc\xd8\xf0\xc1\xd9\xf2\ \xbe\xd6\xf6\x54\x6f\x8c\x36\x47\x58\x36\x41\x4a\x55\x5f\x6e\x74\ \x76\x84\xfb\xf4\xfa\x91\x90\x9a\x65\x75\x8c\x85\x9d\xc3\xa9\xc2\ \xf2\xaa\xc3\xf2\xae\xc4\xf6\xad\xc4\xf4\xa9\xbe\xee\xac\xc0\xf0\ \xaf\xc3\xf3\xa9\xbe\xee\xa7\xbe\xed\xa4\xba\xe8\xa3\xb8\xe7\xa4\ \xb8\xe9\xaa\xbd\xef\xad\xc1\xf1\xa2\xb8\xe8\xa3\xba\xea\xa6\xbd\ \xed\xa5\xbc\xed\xa7\xbe\xef\xa6\xbe\xed\xa7\xbe\xef\xaa\xc0\xf3\ \x9f\xb3\xea\xaf\xc3\xf8\xaf\xc4\xf6\xae\xc6\xf5\xa7\xc2\xf1\xaa\ \xc3\xf4\xa9\xc2\xf5\xaa\xc2\xf4\xae\xc5\xf5\xad\xc4\xf4\xad\xc4\ \xf5\xa8\xc1\xef\xa7\xc0\xee\xa9\xc0\xf1\xa5\xbc\xed\xa4\xbb\xf9\ \x6b\x7a\xc0\x11\x1e\x55\x31\x43\x65\x44\x5e\x7c\x86\xa2\xc3\xa9\ \xc6\xe9\xa7\xc5\xed\x9d\xbd\xe9\x9c\xbc\xea\x9d\xbd\xe9\xa4\xc3\ \xef\xa1\xc2\xed\x95\xb7\xe4\x98\xb9\xe6\xa1\xc1\xe9\xa9\xc8\xf1\ \x99\xb9\xe6\x92\xb2\xe3\x93\xb4\xe5\x95\xb6\xe8\x93\xb4\xe6\x91\ \xb2\xe3\x99\xb8\xe6\xa4\xc1\xee\x6f\x8b\xbc\x62\x79\xaf\x22\x33\ \x66\x1f\x30\x51\x40\x57\x71\x61\x7c\x93\x5e\x79\x8d\x5c\x75\x86\ \x57\x6f\x81\x51\x68\x7a\x52\x67\x77\x51\x63\x71\x4e\x5f\x69\x52\ \x61\x69\x53\x61\x67\x55\x62\x66\x56\x64\x6a\x5a\x67\x6d\x5d\x6b\ \x70\x60\x6f\x73\x5d\x6d\x73\x58\x6a\x70\x4c\x60\x68\x47\x5a\x62\ \x3f\x51\x5a\x3a\x4c\x56\x37\x4a\x54\x3a\x4b\x57\x3c\x4d\x5a\x3d\ \x4f\x5c\x00\x00\x00\x2b\x51\x80\x3c\x66\xa5\x3b\x68\x9f\x40\x67\ \x99\x38\x5a\x8e\x28\x49\x7e\x16\x30\x5f\x11\x21\x49\x0c\x18\x38\ \x13\x1e\x39\x0d\x19\x34\x48\x58\x6c\x29\x3a\x4c\x2f\x3f\x4c\x6f\ \x7d\x90\xc9\xdb\xf4\xb8\xd3\xeb\xbb\xd6\xef\xba\xd3\xed\xc0\xda\ \xf4\xbe\xd7\xf1\xbe\xd9\xf4\xbd\xd8\xf3\xbd\xd7\xf4\xbc\xd7\xf2\ \xbe\xd9\xf2\xb8\xd4\xef\xb2\xcf\xea\xb2\xcf\xea\xb2\xd0\xeb\xb1\ \xcf\xec\xb8\xd4\xef\xbb\xd6\xf0\xbd\xd8\xf2\xbf\xda\xf4\xbd\xd8\ \xf2\xba\xd7\xf2\xb9\xd6\xf1\xbb\xd8\xf3\xb9\xd6\xf1\xbc\xd9\xf4\ \xba\xd7\xf2\xb9\xd5\xf0\xb6\xd1\xec\xba\xd5\xf0\xbf\xda\xf8\xaf\ \xcb\xe9\xba\xd5\xf0\xbb\xd6\xf0\xb6\xd3\xed\xbb\xd7\xf2\xbf\xda\ \xf5\xbf\xda\xf5\xb9\xd4\xef\xbc\xd7\xf2\xc1\xdc\xf6\xbd\xd8\xf3\ \xba\xd4\xf2\xbe\xd9\xf4\xbc\xd8\xf2\xbe\xd8\xf3\xbf\xd6\xf5\x66\ \x84\xa0\x55\x6a\x7d\x47\x53\x5e\x5f\x6b\x7b\x64\x67\x76\xf5\xee\ \xf4\x90\x91\x98\x67\x76\x8d\x8c\xa4\xca\xac\xc4\xf5\xac\xc1\xf4\ \xad\xc2\xf5\xac\xc3\xf3\xaa\xbe\xee\xab\xbf\xef\xad\xc1\xf1\xa9\ \xbd\xed\xa6\xbc\xec\xa3\xba\xe8\xa2\xb7\xe7\xa7\xb8\xed\xb0\xc1\ \xf5\xa9\xbc\xef\xa1\xb6\xe9\xa0\xb7\xe9\xa1\xb8\xeb\xa6\xbc\xef\ \xa8\xbf\xf1\xa7\xbe\xf0\xa4\xbb\xed\xa8\xbd\xf3\x9f\xb3\xea\xac\ \xc0\xf5\xb0\xc6\xf7\xae\xc6\xf5\xa6\xc0\xef\xaa\xc3\xf2\xab\xc2\ \xf4\xab\xc1\xf3\xaa\xc2\xf0\xae\xc5\xf4\xae\xc6\xf4\xa9\xc1\xef\ \xa8\xc0\xee\xa9\xc0\xf1\xa2\xb9\xea\xa3\xb8\xf4\x5a\x69\xad\x14\ \x20\x53\x2e\x40\x5f\x4f\x6a\x88\x91\xad\xcc\xad\xca\xec\xa9\xc7\ \xee\x9a\xb8\xe4\x9d\xbb\xe9\xa1\xc1\xed\xa5\xc5\xf0\x9f\xbf\xec\ \x94\xb6\xe2\x98\xb8\xe6\xa2\xc1\xeb\xa4\xc3\xec\x96\xb6\xe5\x91\ \xb2\xe3\x91\xb2\xe3\x92\xb3\xe4\x8e\xaf\xe0\x8f\xb0\xe1\x99\xb8\ \xe6\xa1\xbd\xea\x70\x8a\xbe\x45\x5d\x91\x24\x35\x63\x29\x3b\x5c\ \x4c\x63\x7e\x63\x7c\x90\x5b\x75\x86\x58\x71\x82\x54\x6c\x7e\x4f\ \x66\x78\x4e\x63\x73\x4e\x60\x6c\x4b\x5b\x65\x4d\x5c\x63\x4f\x5b\ \x61\x51\x5c\x60\x4e\x5b\x61\x51\x5f\x63\x55\x63\x66\x58\x66\x68\ \x57\x66\x6a\x4c\x5d\x63\x48\x59\x62\x46\x58\x60\x3e\x51\x59\x3d\ \x4f\x5a\x3b\x4c\x58\x3c\x4d\x59\x3c\x4d\x5a\x3f\x50\x5e\x00\x00\ \x00\x24\x47\x73\x40\x6b\xac\x3b\x69\xa2\x40\x68\x9c\x37\x5c\x8e\ \x28\x4a\x7f\x14\x2f\x61\x16\x29\x53\x0a\x19\x38\x0c\x19\x33\x0d\ \x1a\x34\x32\x46\x5c\x38\x49\x58\x54\x62\x6c\x5b\x68\x78\xc3\xd6\ \xef\xb6\xd2\xec\xbc\xd7\xf1\xbd\xd7\xf1\xc2\xdb\xf5\xbd\xd7\xf1\ \xbb\xd7\xf2\xb7\xd4\xef\xbc\xd7\xf4\xb4\xd1\xed\xb8\xd6\xef\xb7\ \xd5\xee\xb4\xd2\xec\xb1\xce\xe9\xb1\xd0\xeb\xaf\xcd\xe8\xb7\xd5\ \xf0\xb7\xd4\xef\xb8\xd5\xf0\xb8\xd5\xf0\xb9\xd6\xf1\xb5\xd2\xed\ \xb8\xd5\xf0\xba\xd7\xf2\xbb\xd8\xf3\xb9\xd6\xf1\xbb\xd8\xf3\xb8\ \xd5\xf0\xb6\xd3\xee\xb9\xd4\xef\xbe\xda\xf8\xaf\xcd\xea\xb7\xd3\ \xed\xbb\xd8\xf1\xb8\xd5\xef\xb7\xd3\xee\xbb\xd8\xf3\xc2\xde\xf9\ \xb8\xd4\xef\xb9\xd6\xf1\xbc\xd9\xf4\xbb\xd7\xf5\xb5\xd1\xef\xbd\ \xd9\xf6\xbb\xd8\xf3\xbe\xd8\xf3\xc0\xd8\xf5\x77\x94\xb4\x46\x5b\ \x71\x22\x2e\x37\x43\x4e\x5a\x5c\x5f\x6b\xf5\xee\xf2\x92\x93\x99\ \x6c\x7a\x92\x96\xac\xd3\xad\xc4\xf5\xad\xc0\xf4\xae\xc3\xf6\xad\ \xc4\xf4\xab\xbf\xef\xaa\xbe\xee\xac\xc0\xf0\xa8\xbd\xee\xa0\xb8\ \xea\xa1\xb7\xe9\xa3\xb7\xea\xac\xbe\xf2\xb3\xc4\xfa\xa6\xb9\xee\ \xa2\xb7\xeb\xa2\xb8\xec\xa6\xbc\xef\xa4\xba\xee\xa5\xbc\xef\xa6\ \xbd\xef\xa3\xba\xec\xac\xc2\xf6\x9f\xb4\xea\xac\xc1\xf5\xb0\xc6\ \xf6\xae\xc6\xf6\xa7\xc1\xef\xaa\xc2\xf0\xaf\xc6\xf6\xad\xc3\xf3\ \xad\xc3\xf2\xb0\xc7\xf6\xaf\xc6\xf5\xa6\xbe\xec\xa4\xbc\xeb\xaa\ \xc1\xf1\xa1\xb8\xeb\x9e\xb3\xef\x48\x55\x96\x1d\x27\x56\x28\x37\ \x54\x59\x74\x90\x9e\xba\xd8\xb1\xcd\xef\xa8\xc6\xed\x99\xb9\xe4\ \xa2\xc1\xee\xa1\xc0\xed\x9e\xbe\xeb\x99\xba\xe6\x96\xb7\xe4\x98\ \xba\xe7\x9d\xbc\xe5\xa5\xc4\xed\x97\xb8\xe7\x91\xb4\xe5\x91\xb5\ \xe5\x8a\xae\xde\x8f\xb3\xe3\x8c\xb0\xe0\x9e\xbe\xeb\x96\xb1\xe0\ \x6e\x87\xbb\x34\x4b\x7e\x21\x33\x5c\x2d\x42\x5f\x5f\x77\x8f\x62\ \x7a\x8e\x59\x73\x84\x56\x6e\x7f\x4f\x68\x78\x4c\x64\x74\x4c\x60\ \x6f\x4b\x5d\x68\x49\x59\x62\x48\x56\x5d\x49\x55\x59\x4b\x55\x59\ \x4a\x53\x57\x4b\x57\x5a\x4b\x57\x59\x52\x5e\x60\x4e\x5d\x60\x48\ \x57\x5d\x44\x53\x5c\x42\x53\x5c\x40\x50\x5c\x3d\x4d\x59\x3c\x4c\ \x57\x3b\x4e\x58\x3d\x4d\x59\x3f\x50\x5f\x00\x00\x00\x19\x39\x60\ \x3d\x69\xa9\x40\x6d\xa6\x3c\x64\x98\x34\x58\x89\x2e\x50\x83\x1d\ \x3a\x6c\x10\x25\x52\x09\x1a\x3b\x0c\x19\x33\x0b\x16\x31\x37\x49\ \x60\x30\x3e\x4d\x3d\x49\x51\x58\x64\x73\xbb\xcd\xe5\xb4\xcf\xea\ \xb8\xd4\xee\xbe\xd8\xf2\xbf\xd8\xf2\xbf\xd9\xf3\xb8\xd4\xee\xb5\ \xd3\xee\xba\xd6\xf3\xb7\xd4\xf0\xb6\xd3\xed\xb5\xd2\xeb\xb3\xcf\ \xe9\xaf\xcd\xe7\xb2\xcf\xea\xac\xc9\xe4\xb5\xd2\xed\xb9\xd6\xf1\ \xb9\xd6\xf1\xb7\xd4\xef\xba\xd7\xf2\xb7\xd4\xef\xb8\xd5\xf0\xba\ \xd7\xf2\xbc\xd9\xf4\xba\xd7\xf2\xb6\xd4\xef\xb9\xd6\xf1\xb8\xd5\ \xf0\xb8\xd5\xf0\xbb\xd8\xf6\xb1\xce\xeb\xb8\xd6\xf0\xb8\xd5\xee\ \xb9\xd5\xf0\xb6\xd3\xee\xbc\xd9\xf4\xbc\xd9\xf4\xba\xd7\xf2\xb5\ \xd2\xed\xb9\xd5\xf1\xba\xd6\xf3\xb7\xd3\xf1\xba\xd6\xf4\xba\xd7\ \xf3\xbe\xd7\xf3\xc2\xdb\xf6\x87\xa3\xc6\x2f\x43\x5e\x1f\x2c\x35\ \x40\x4c\x55\x58\x5c\x67\xf4\xed\xf1\x97\x99\xa0\x6c\x79\x93\x99\ \xae\xd6\xb0\xc8\xf8\xaf\xc4\xf4\xaf\xc4\xf4\xae\xc6\xf4\xaa\xbf\ \xee\xaa\xbe\xee\xaa\xbe\xef\xa8\xbc\xef\xa0\xb8\xea\x9f\xb6\xe7\ \xa1\xb5\xe6\xab\xbd\xf1\xaf\xbf\xf6\xa5\xb7\xef\xa1\xb6\xed\xa4\ \xba\xf1\xa2\xb7\xee\xa3\xb8\xef\xa4\xb9\xee\xa4\xbb\xee\xa4\xba\ \xed\xaa\xc0\xf4\x9f\xb3\xe9\xae\xc3\xf5\xae\xc5\xf4\xae\xc6\xf4\ \xa7\xc1\xf0\xaa\xc1\xf0\xab\xc2\xf2\xab\xc1\xf3\xad\xc3\xf4\xb1\ \xc7\xf7\xac\xc4\xf2\xaa\xc2\xf0\xa6\xbe\xed\xaa\xc1\xf1\xa4\xba\ \xee\x9b\xb0\xed\x3d\x4c\x8a\x2a\x35\x62\x1e\x2e\x4a\x63\x7f\x9a\ \xaa\xc5\xe6\xaf\xcc\xf0\xa5\xc3\xeb\x9d\xbc\xe7\xa2\xc1\xed\x9f\ \xbf\xec\x9c\xbd\xeb\x98\xb9\xe7\x9a\xbb\xe9\x97\xb8\xe4\xa0\xbf\ \xe8\xa4\xc2\xed\x96\xb5\xe6\x93\xb4\xe6\x95\xb6\xe7\x93\xb4\xe5\ \x9a\xbc\xeb\x91\xb3\xe1\xa2\xc1\xee\x83\x9e\xcd\x65\x7e\xb2\x2b\ \x41\x72\x1f\x31\x55\x39\x4f\x6b\x60\x78\x90\x58\x70\x85\x57\x6f\ \x80\x51\x6a\x7b\x4d\x65\x74\x4a\x61\x70\x4b\x5f\x6c\x47\x58\x61\ \x43\x53\x5a\x47\x53\x5a\x47\x52\x57\x48\x51\x55\x46\x50\x54\x47\ \x54\x57\x4b\x58\x5a\x4d\x58\x5b\x4c\x5a\x5f\x47\x56\x5e\x43\x53\ \x5e\x43\x53\x5f\x3f\x4f\x5a\x3f\x50\x5c\x3c\x4d\x59\x3e\x50\x5b\ \x3d\x4f\x5b\x3f\x4f\x5f\x00\x00\x00\x0d\x29\x4e\x3a\x63\xa3\x40\ \x6d\xa4\x3f\x66\x99\x37\x5a\x87\x30\x51\x82\x1f\x3d\x6f\x13\x2a\ \x59\x0d\x20\x43\x0f\x1a\x35\x0d\x16\x2e\x26\x35\x49\x34\x43\x51\ \x3b\x46\x4f\x58\x63\x70\xaf\xc0\xd8\xb9\xd2\xec\xb9\xd5\xef\xbd\ \xd8\xf2\xbe\xd7\xf1\xbf\xda\xf4\xb8\xd5\xef\xb8\xd5\xf0\xb7\xd3\ \xf0\xb1\xce\xe9\xb4\xd2\xec\xb6\xd3\xec\xb7\xd2\xec\xb3\xd0\xe9\ \xb7\xd5\xef\xb6\xd3\xee\xb6\xd3\xee\xb8\xd5\xf0\xba\xd7\xf2\xba\ \xd7\xf2\xb7\xd4\xef\xb9\xd6\xf1\xb8\xd5\xf0\xb8\xd5\xf0\xb9\xd6\ \xf1\xb9\xd5\xf0\xb4\xd2\xed\xb6\xd3\xee\xb8\xd5\xf0\xb8\xd5\xf0\ \xba\xd9\xf6\xb0\xd0\xec\xb9\xd6\xf1\xb9\xd7\xf0\xb9\xd6\xf1\xb8\ \xd5\xf0\xb9\xd6\xf1\xba\xd7\xf2\xb8\xd5\xf0\xbb\xd8\xf2\xb9\xd6\ \xf2\xb9\xd5\xf3\xb8\xd4\xf3\xb7\xd3\xf2\xbb\xd7\xf4\xbe\xd7\xf3\ \xbe\xd9\xf2\x95\xb1\xd6\x20\x35\x53\x21\x2f\x36\x33\x43\x4a\x54\ \x59\x63\xf0\xed\xf0\x9b\xa0\xa8\x66\x77\x90\x8c\xa4\xcc\xaa\xc3\ \xf2\xb0\xc8\xf4\xaf\xc6\xf3\xb2\xc9\xf7\xab\xc1\xef\xa9\xbd\xed\ \xa7\xbb\xec\xa6\xba\xed\xa5\xba\xed\xa4\xba\xea\xa0\xb6\xe5\xab\ \xbf\xf0\xb1\xc4\xf7\xa6\xbb\xee\xa4\xba\xee\xa1\xb9\xed\x9f\xb7\ \xeb\xa4\xb9\xef\xa3\xb9\xee\xa5\xbb\xef\xa6\xbc\xef\xa8\xbe\xf2\ \xa1\xb6\xea\xae\xc4\xf6\xb0\xc6\xf5\xaa\xc2\xf0\xa7\xc1\xef\xa7\ \xc1\xf0\xab\xc3\xf4\xab\xc1\xf6\xaf\xc5\xf8\xaf\xc6\xf7\xac\xc4\ \xf2\xab\xc3\xf1\xa9\xc1\xef\xaa\xc1\xf2\xa3\xb8\xf0\x92\xa7\xe6\ \x30\x41\x7f\x2a\x3a\x65\x26\x3a\x57\x74\x8f\xac\xad\xc7\xea\xb0\ \xcb\xf3\x9f\xbb\xe7\x9e\xbe\xe9\xa1\xc3\xee\x9e\xbf\xec\x9c\xbc\ \xec\x99\xba\xe9\x99\xbb\xe9\x9a\xbb\xe7\xa5\xc4\xeb\xa2\xc0\xeb\ \x94\xb5\xe5\x93\xb3\xe5\x96\xb5\xe8\x9a\xbb\xeb\x9b\xbc\xe9\x92\ \xb3\xe0\xa0\xbf\xec\x72\x8d\xbb\x43\x5b\x8f\x2a\x41\x6f\x23\x35\ \x56\x49\x5f\x7a\x5b\x74\x8b\x51\x6b\x7e\x4e\x66\x78\x4b\x62\x73\ \x47\x5e\x6d\x46\x5c\x6b\x46\x59\x66\x44\x55\x5e\x42\x51\x58\x43\ \x50\x56\x41\x4d\x51\x44\x50\x52\x43\x4f\x53\x45\x54\x57\x4a\x58\ \x5b\x4c\x59\x5e\x4b\x59\x60\x44\x55\x5f\x42\x53\x5f\x44\x55\x60\ \x40\x52\x5d\x3d\x4f\x5b\x3d\x4f\x5c\x3f\x4f\x5d\x3f\x50\x5d\x40\ \x52\x5f\x00\x00\x00\x07\x24\x4c\x39\x5b\x93\x3b\x63\x9f\x3f\x68\ \x9c\x3a\x60\x93\x30\x53\x85\x22\x40\x71\x13\x2c\x5b\x0a\x1d\x42\ \x0c\x1a\x34\x0c\x18\x30\x19\x27\x3c\x32\x3f\x51\x28\x32\x3e\x45\ \x4e\x59\xa2\xb0\xc3\xbb\xd3\xed\xb8\xd5\xee\xba\xd4\xee\xbc\xd5\ \xef\xbd\xd7\xf1\xbb\xd7\xf1\xb9\xd6\xf1\xb5\xd2\xed\xb7\xd4\xef\ \xb8\xd4\xef\xb6\xd1\xeb\xbe\xd9\xf3\xbc\xd8\xf4\xb8\xd4\xf0\xb8\ \xd6\xef\xb7\xd3\xf0\xb8\xd4\xf1\xba\xd6\xf4\xbb\xd7\xf3\xb8\xd5\ \xf0\xbb\xd8\xf3\xb8\xd5\xf0\xb8\xd5\xf0\xb7\xd4\xef\xbb\xd8\xf3\ \xb4\xd1\xec\xb9\xd6\xf1\xb6\xd3\xee\xb7\xd4\xef\xb9\xd6\xf1\xb5\ \xd2\xed\xb9\xd6\xf1\xbb\xd8\xf1\xb8\xd6\xef\xb7\xd4\xf0\xba\xd6\ \xf4\xbb\xd7\xf5\xba\xd6\xf4\xb8\xd4\xf2\xbc\xd7\xf2\xbd\xd8\xf3\ \xb9\xd4\xef\xbd\xd8\xf3\xbc\xd8\xf3\xbd\xd8\xf1\xbf\xda\xf5\xa6\ \xc4\xe8\x19\x2d\x4d\x1e\x29\x39\x2c\x38\x40\x5d\x60\x6b\xf7\xf1\ \xf4\x9e\xa2\xab\x78\x8a\xa5\x80\x99\xc1\xa7\xc1\xef\xaf\xc6\xf4\ \xb2\xca\xf8\xb3\xc8\xf8\xac\xc0\xf0\xae\xc1\xf2\xab\xbc\xef\xab\ \xbe\xf2\xa4\xbb\xed\xa7\xbd\xed\xa3\xb9\xe9\xac\xc2\xf3\xae\xc4\ \xf7\xa4\xba\xee\xa2\xb9\xec\xa5\xbc\xee\xa1\xbb\xea\xa5\xbb\xed\ \xa4\xb9\xed\xa5\xbb\xef\xa4\xba\xef\xaa\xc0\xf6\x9f\xb3\xeb\xad\ \xc3\xf6\xaf\xc7\xf5\xaa\xc4\xf2\xa8\xc2\xf0\xa8\xc1\xf3\xa9\xc1\ \xf3\xad\xc2\xf7\xad\xc4\xf7\xb0\xc6\xf8\xab\xc2\xf0\xa8\xc0\xee\ \xa6\xbe\xec\xab\xc3\xf1\xa5\xbc\xf1\x8e\xa0\xe1\x2a\x38\x74\x33\ \x41\x6b\x2c\x43\x61\x7d\x99\xb7\xaa\xc7\xe8\xae\xcc\xf2\x9b\xba\ \xe3\xa1\xc1\xec\xa4\xc5\xee\x9e\xbe\xea\x99\xba\xe7\x9b\xbc\xe9\ \x98\xba\xe6\x9c\xbe\xe7\xae\xca\xf3\x9f\xbf\xea\x96\xb6\xe6\x91\ \xb2\xe2\x96\xb7\xe5\x99\xb8\xe5\x99\xb8\xe5\x9c\xbb\xe9\x99\xb3\ \xde\x69\x83\xb5\x2d\x45\x76\x26\x39\x60\x2b\x41\x5d\x5f\x7b\x95\ \x5a\x75\x8c\x4a\x64\x74\x48\x5f\x6f\x48\x5c\x6d\x43\x58\x67\x41\ \x56\x65\x42\x53\x62\x40\x4f\x5a\x42\x4f\x56\x3f\x4d\x50\x3d\x4c\ \x4e\x40\x4f\x52\x44\x50\x55\x49\x55\x5b\x4a\x58\x5f\x4b\x5a\x61\ \x48\x5a\x61\x43\x55\x60\x42\x54\x5e\x42\x55\x60\x3f\x52\x60\x3e\ \x51\x61\x3d\x51\x61\x3d\x51\x60\x3e\x51\x60\x40\x53\x62\x00\x00\ \x00\x06\x25\x4f\x2f\x52\x84\x3b\x63\x9f\x3e\x67\x9e\x37\x5c\x93\ \x37\x59\x8c\x26\x46\x78\x18\x31\x61\x0e\x23\x46\x0b\x19\x35\x0d\ \x19\x32\x0d\x1a\x31\x38\x46\x57\x28\x32\x3d\x39\x43\x4c\x8f\x9e\ \xaf\xbd\xd5\xed\xb9\xd5\xef\xba\xd5\xef\xba\xd3\xed\xc2\xdb\xf5\ \xba\xd5\xef\xb4\xd1\xec\xb5\xd3\xee\xb3\xd2\xed\xb6\xd2\xed\xb2\ \xce\xe8\xbb\xd6\xf1\xb4\xd1\xed\xb6\xd3\xef\xb4\xd2\xec\xb6\xd3\ \xef\xba\xd6\xf4\xb9\xd6\xf3\xba\xd7\xf2\xb7\xd4\xef\xb5\xd2\xec\ \xb7\xd4\xef\xb6\xd3\xee\xb7\xd4\xef\xba\xd6\xf1\xb7\xd4\xef\xb2\ \xcf\xea\xb6\xd3\xee\xb5\xd2\xed\xb7\xd4\xef\xb5\xd2\xed\xb7\xd4\ \xef\xb9\xd7\xf1\xb9\xd6\xef\xb6\xd3\xee\xb9\xd6\xf1\xba\xd7\xf2\ \xb8\xd5\xf0\xb8\xd5\xf0\xbc\xd7\xf2\xbd\xd8\xf3\xbb\xd6\xf1\xbc\ \xd7\xf2\xbb\xd6\xf1\xbe\xd8\xf2\xbc\xd7\xf3\xb2\xd1\xf5\x20\x37\ \x54\x1c\x27\x37\x2e\x38\x40\x55\x57\x62\xf4\xef\xf2\x9e\xa2\xac\ \x63\x76\x91\x86\xa0\xc7\xa9\xc2\xf1\xaf\xc6\xf5\xaf\xc6\xf4\xb4\ \xc8\xf8\xad\xc1\xf1\xa8\xbc\xed\xac\xbd\xf0\xac\xbd\xf2\xa8\xbe\ \xf1\xa1\xb7\xe9\xa1\xb6\xe9\xa8\xbd\xf0\xa9\xbe\xf4\xa4\xba\xee\ \xa2\xb9\xec\xa4\xbc\xee\xa1\xba\xeb\xa5\xbc\xef\xa4\xb9\xed\xa6\ \xbc\xf0\xa5\xbb\xef\xa7\xbc\xf2\xa2\xb6\xee\xad\xc2\xf6\xae\xc4\ \xf3\xac\xc3\xf1\xa9\xc1\xf0\xa8\xc2\xf2\xaa\xc2\xf5\xac\xc2\xf6\ \xaf\xc6\xf8\xae\xc6\xf5\xad\xc5\xf3\xa9\xc1\xef\xa7\xbe\xec\xac\ \xc3\xf0\xa5\xbb\xf1\x89\x9a\xda\x1f\x2d\x68\x34\x44\x6c\x57\x6e\ \x8f\x86\xa3\xc1\xac\xc8\xea\xaa\xc8\xee\x9b\xba\xe3\xa3\xc2\xed\ \xa5\xc3\xef\x9e\xbf\xec\x99\xbb\xe9\x9f\xc1\xee\x9a\xbe\xe8\xa1\ \xc2\xea\xb1\xcd\xf7\x9d\xbe\xea\x95\xb7\xe8\x94\xb6\xe6\x97\xb9\ \xe7\x97\xb8\xe5\x98\xb9\xe5\xa1\xc1\xec\x85\xa2\xce\x60\x7d\xae\ \x32\x49\x79\x27\x3a\x5d\x3c\x51\x6c\x6b\x87\xa0\x4e\x69\x7d\x47\ \x5f\x70\x44\x59\x6a\x43\x58\x68\x3d\x52\x60\x3f\x52\x61\x3b\x4e\ \x59\x3c\x4c\x54\x3b\x48\x4f\x3c\x4a\x4e\x3a\x4a\x4d\x3d\x4b\x50\ \x44\x50\x57\x46\x54\x5d\x48\x57\x5f\x49\x5b\x62\x46\x58\x61\x44\ \x57\x62\x43\x56\x61\x41\x54\x61\x41\x55\x64\x40\x54\x65\x3f\x54\ \x64\x40\x54\x64\x41\x54\x65\x40\x54\x65\x00\x00\x00\x0f\x2f\x5e\ \x28\x49\x76\x3b\x65\x9d\x3e\x66\xa0\x40\x65\x9c\x3a\x5a\x8f\x29\ \x48\x7b\x18\x32\x62\x10\x27\x4b\x0b\x1c\x3b\x11\x1e\x3a\x09\x17\ \x2f\x37\x47\x57\x26\x33\x3c\x3c\x46\x4d\x7e\x8d\x9b\xc3\xd8\xf1\ \xb9\xd4\xee\xbc\xd8\xf2\xbb\xd5\xef\xc1\xda\xf4\xbd\xd7\xf1\xb8\ \xd4\xef\xb3\xd0\xeb\xb6\xd4\xef\xb8\xd5\xf0\xb9\xd5\xf0\xb5\xd2\ \xed\xb9\xd6\xf1\xb5\xd3\xee\xb6\xd4\xef\xb6\xd3\xf0\xbc\xd8\xf5\ \xb9\xd6\xf1\xba\xd7\xf2\xb5\xd3\xee\xb1\xcf\xec\xb8\xd6\xf2\xb6\ \xd4\xf1\xb7\xd5\xf1\xb8\xd6\xf3\xb9\xd6\xf1\xb6\xd3\xee\xb7\xd4\ \xef\xb6\xd4\xee\xb8\xd5\xf1\xb9\xd6\xf2\xb9\xd6\xf1\xb8\xd5\xf0\ \xbc\xd8\xf3\xb6\xd4\xed\xba\xd8\xf1\xbb\xd9\xf2\xbb\xd8\xf1\xbc\ \xd8\xf2\xbf\xda\xf5\xbf\xda\xf5\xbf\xda\xf5\xbf\xda\xf5\xbd\xd8\ \xf3\xbe\xd8\xf2\xba\xd5\xf1\xb7\xd6\xfa\x28\x3f\x5d\x25\x30\x40\ \x2e\x37\x3d\x5b\x5d\x67\xf2\xed\xf2\xa5\xa8\xb3\x66\x78\x95\x8d\ \xa5\xcd\xac\xc5\xf4\xb5\xc9\xf9\xad\xc3\xf1\xb2\xc6\xf6\xab\xbe\ \xf0\xaa\xbd\xf1\xa8\xba\xee\xab\xbd\xf3\xa2\xb7\xee\xa1\xb6\xea\ \xa1\xb6\xea\xa6\xb9\xf1\xa3\xb6\xee\xa3\xb7\xec\xa3\xb9\xee\xa6\ \xbd\xf1\xa0\xb9\xec\xa6\xbc\xf1\xa6\xbb\xf0\xa5\xbb\xf0\xa2\xb8\ \xed\xa5\xba\xf1\xa4\xb8\xf0\xaa\xc0\xf3\xaf\xc5\xf4\xaf\xc6\xf4\ \xad\xc3\xf3\xa9\xc2\xf2\xab\xc2\xf4\xae\xc5\xf7\xad\xc4\xf4\xae\ \xc5\xf4\xa9\xc2\xef\xaa\xc2\xee\xac\xc1\xf0\xae\xc1\xf2\xaa\xbd\ \xf5\x7f\x90\xd1\x1c\x2b\x63\x3b\x4d\x73\x56\x70\x91\x87\xa3\xc2\ \xac\xca\xea\xa9\xc7\xee\x9a\xb8\xe4\xa1\xc1\xec\xa6\xc4\xf1\xa1\ \xc2\xf0\x97\xbb\xe9\x9a\xbd\xea\x9c\xbf\xe9\xa9\xc8\xef\xad\xc9\ \xf4\x9a\xbc\xe9\x92\xb6\xe6\x93\xb4\xe3\x99\xbb\xe9\x9a\xbd\xe9\ \x96\xb9\xe4\x9b\xbc\xe5\x6b\x8a\xb7\x4c\x68\x98\x3d\x51\x7c\x29\ \x3b\x5b\x4b\x62\x7d\x70\x89\xa1\x49\x63\x75\x42\x5a\x6b\x40\x56\ \x66\x3f\x53\x63\x3b\x4f\x5d\x3b\x4e\x59\x37\x4a\x52\x37\x48\x4f\ \x39\x47\x4e\x39\x48\x4e\x39\x49\x50\x3b\x4c\x52\x40\x50\x59\x46\ \x56\x61\x4a\x5b\x65\x49\x5c\x65\x46\x59\x66\x43\x56\x65\x45\x59\ \x66\x44\x58\x68\x43\x58\x69\x41\x58\x69\x43\x5a\x6b\x42\x58\x6a\ \x44\x58\x6a\x42\x57\x69\x00\x00\x00\x1a\x3a\x6d\x22\x40\x67\x3b\ \x63\x9c\x3b\x64\x9d\x3e\x62\x98\x33\x53\x85\x2c\x4b\x7f\x1b\x36\ \x69\x12\x2b\x53\x0d\x20\x42\x0f\x1e\x3b\x0c\x1a\x32\x30\x3f\x53\ \x22\x2e\x39\x40\x4b\x50\x6c\x7b\x87\xc5\xd8\xef\xbb\xd6\xf0\xbd\ \xd8\xf2\xb8\xd3\xed\xc0\xda\xf4\xbd\xd6\xf0\xba\xd5\xef\xb5\xd4\ \xed\xb3\xd2\xeb\xb5\xd4\xed\xb7\xd3\xee\xb7\xd4\xef\xb9\xd7\xf0\ \xb5\xd3\xed\xb7\xd5\xf0\xb4\xd1\xec\xb9\xd6\xf1\xba\xd7\xf2\xbb\ \xd8\xf3\xb7\xd5\xee\xb6\xd3\xee\xba\xd7\xf2\xb9\xd6\xf1\xb9\xd6\ \xf1\xb8\xd4\xf0\xbb\xd6\xf1\xb7\xd2\xed\xb9\xd4\xef\xb8\xd3\xee\ \xb7\xd3\xef\xb7\xd3\xf1\xb8\xd4\xf1\xba\xd7\xf1\xba\xd7\xf2\xb8\ \xd5\xf0\xb9\xd6\xf1\xbd\xd9\xf4\xbf\xda\xf5\xbd\xd8\xf3\xbc\xd7\ \xf1\xbb\xd6\xf0\xbe\xd9\xf3\xbe\xd9\xf3\xbc\xd7\xf1\xbe\xd8\xf2\ \xbb\xd6\xf0\xb7\xd7\xfb\x34\x4b\x6c\x29\x34\x47\x2e\x39\x40\x4c\ \x4e\x59\xf0\xeb\xee\xa4\xa8\xb1\x5d\x6e\x8a\x8e\xa6\xce\xb1\xc8\ \xf8\xb4\xc8\xf8\xb3\xc9\xf8\xb2\xc6\xf5\xa9\xbd\xee\xac\xbe\xf2\ \xa7\xbc\xf0\xa9\xbe\xf2\xa4\xb9\xef\x9f\xb4\xe8\xa1\xb6\xea\xa7\ \xbb\xf3\xa5\xb8\xf1\xa7\xbb\xf2\xa6\xbb\xf2\xa6\xbd\xf3\x9e\xb6\ \xec\xa2\xb8\xee\xa7\xbb\xf2\xa0\xb5\xec\x9e\xb4\xea\xa7\xbd\xf1\ \xa5\xba\xf2\xaa\xc1\xf3\xae\xc4\xf3\xb1\xc8\xf6\xad\xc4\xf3\xa9\ \xc0\xf3\xa8\xbf\xf1\xb0\xc6\xf8\xaf\xc5\xf4\xaf\xc6\xf4\xb0\xc9\ \xf5\xab\xc2\xef\xae\xc4\xf2\xaf\xc1\xf4\xa2\xb5\xf0\x6d\x7f\xc1\ \x24\x34\x6a\x3a\x4d\x6f\x6c\x88\xa7\x89\xa5\xc4\xae\xca\xec\xa8\ \xc6\xee\x97\xb6\xe1\xa1\xc1\xee\xa3\xc3\xef\x9d\xbf\xeb\x99\xbc\ \xe8\x99\xbb\xe7\x9f\xc0\xe7\xac\xca\xef\xa8\xc4\xec\x9b\xbc\xe7\ \x95\xb7\xe3\x9a\xb8\xe5\x97\xb7\xe4\x97\xb9\xe5\x93\xb5\xe0\x82\ \xa1\xcc\x55\x71\x9f\x33\x4b\x7a\x2d\x3e\x63\x2d\x3e\x58\x5f\x78\ \x8f\x6a\x83\x98\x41\x59\x6c\x41\x57\x68\x40\x54\x65\x3b\x50\x5f\ \x3a\x4d\x5a\x39\x49\x53\x36\x48\x50\x34\x46\x4d\x37\x47\x50\x37\ \x47\x4e\x39\x49\x51\x3b\x4c\x56\x40\x50\x5d\x46\x58\x66\x47\x5a\ \x67\x47\x5b\x67\x46\x5c\x6a\x47\x5b\x6c\x47\x5b\x6c\x45\x5c\x6c\ \x44\x5c\x6e\x45\x5d\x6f\x46\x5e\x70\x45\x5d\x6f\x46\x5d\x6f\x44\ \x5b\x6d\x00\x00\x00\x24\x45\x78\x16\x34\x5a\x36\x5e\x97\x3b\x65\ \x9c\x41\x66\x99\x38\x58\x89\x30\x50\x82\x1e\x3b\x6e\x11\x2a\x55\ \x11\x25\x49\x12\x22\x40\x0f\x1c\x33\x27\x36\x4c\x23\x30\x3e\x3e\ \x49\x50\x5e\x6d\x79\xc5\xd9\xef\xb9\xd2\xec\xbd\xd8\xf2\xb7\xd3\ \xed\xbe\xd8\xf2\xc0\xd8\xf2\xbf\xda\xf4\xb9\xd7\xf0\xb5\xd4\xed\ \xb7\xd6\xef\xb8\xd4\xf0\xb9\xd6\xf1\xbb\xda\xf3\xb8\xd7\xf0\xb6\ \xd5\xf0\xb2\xcf\xeb\xbc\xd9\xf4\xb9\xd6\xf1\xbb\xd9\xf2\xb9\xd7\ \xf0\xba\xd5\xef\xbd\xd8\xf2\xbd\xd8\xf2\xbb\xd7\xf1\xbd\xd8\xf3\ \xbe\xd9\xf5\xbb\xd6\xf1\xb8\xd3\xee\xbc\xd6\xf2\xbb\xd6\xf3\xb8\ \xd4\xf3\xb6\xd2\xf0\xb7\xd4\xf0\xbb\xd8\xf3\xb5\xd2\xee\xb9\xd6\ \xf3\xba\xd5\xf2\xbd\xd7\xf5\xbd\xd5\xf2\xbd\xd8\xf2\xbe\xd9\xf3\ \xc0\xda\xf4\xbd\xd8\xf2\xbd\xd7\xf2\xc0\xd9\xf2\xbb\xd7\xf0\xb9\ \xd9\xfd\x3d\x56\x79\x35\x42\x57\x2f\x3b\x44\x4b\x4d\x59\xee\xe8\ \xea\xaa\xac\xb2\x60\x70\x8b\x87\x9f\xc7\xb0\xc7\xf6\xb3\xc8\xf7\ \xb3\xc8\xf7\xb2\xc6\xf7\xad\xc0\xf3\xa8\xbc\xef\xa5\xba\xee\xa8\ \xbd\xf2\xa4\xba\xee\xa0\xb5\xe9\xa3\xb8\xec\xa9\xbd\xf5\xa5\xb7\ \xef\xaa\xbe\xf4\xa7\xbb\xf2\xa9\xc1\xf7\xa0\xba\xf0\xa4\xb9\xf1\ \xa9\xbd\xf5\xa4\xb9\xf0\xa3\xb8\xef\xa6\xbb\xf0\xa5\xbb\xf2\xab\ \xc2\xf5\xac\xc3\xf2\xab\xc2\xf0\xad\xc3\xf3\xac\xc3\xf5\xa8\xbe\ \xf0\xae\xc3\xf6\xae\xc4\xf2\xb0\xc6\xf3\xb2\xc7\xf4\xac\xc3\xee\ \xad\xc4\xf2\xaa\xbf\xf2\xa0\xb1\xf1\x51\x62\xa5\x29\x3a\x6e\x42\ \x57\x76\x59\x77\x93\x8c\xa9\xc8\xaf\xcb\xee\xa8\xc6\xed\x96\xb6\ \xe2\x9e\xbf\xec\xa3\xc5\xf0\xa1\xc3\xee\x9d\xbe\xea\xa1\xc1\xe9\ \xa6\xc5\xeb\xac\xc9\xee\xa5\xc0\xe8\x9f\xbf\xe6\xa3\xc2\xe8\xaa\ \xc6\xee\x9f\xbd\xe7\x95\xb7\xe1\x84\xa5\xd0\x52\x6e\x9c\x40\x59\ \x87\x3b\x4f\x7a\x23\x30\x4f\x37\x48\x5d\x77\x93\xa6\x4e\x66\x7a\ \x40\x57\x6b\x3f\x54\x66\x3d\x52\x62\x39\x4d\x5b\x38\x4a\x57\x37\ \x47\x52\x36\x45\x4f\x34\x44\x51\x34\x44\x4f\x38\x48\x51\x38\x47\ \x51\x3d\x4e\x5b\x40\x53\x63\x44\x59\x68\x48\x5d\x6c\x49\x5e\x6d\ \x47\x5e\x6e\x49\x5e\x71\x49\x5f\x71\x4a\x60\x72\x4a\x62\x74\x4a\ \x63\x76\x48\x62\x74\x47\x61\x71\x47\x60\x70\x47\x60\x71\x00\x00\ \x00\x2a\x4e\x80\x08\x28\x50\x35\x58\x8c\x3d\x66\x9c\x3f\x67\x9e\ \x3a\x5d\x8e\x32\x53\x83\x22\x43\x74\x11\x2c\x5a\x0f\x25\x4a\x0f\ \x20\x3d\x09\x18\x32\x23\x31\x49\x30\x3d\x4e\x34\x3d\x47\x51\x5c\ \x67\xbb\xcd\xe3\xb5\xd1\xe9\xbd\xd9\xf2\xb9\xd4\xee\xc2\xdb\xf5\ \xc3\xdc\xf5\xba\xd5\xf0\xbb\xd6\xf1\xb9\xd6\xf0\xb9\xd7\xf0\xb8\ \xd5\xee\xb9\xd5\xf1\xbc\xdb\xf4\xb6\xd4\xee\xb7\xd5\xf0\xb5\xd2\ \xed\xbc\xd8\xf3\xbc\xd7\xf1\xbd\xd8\xf2\xbb\xd6\xf0\xba\xd5\xef\ \xbe\xd9\xf3\xbd\xd8\xf2\xbe\xd7\xf1\xc0\xd9\xf3\xc2\xdb\xf5\xba\ \xd6\xf1\xb4\xd2\xeb\xb8\xd4\xed\xbb\xd6\xef\xb9\xd4\xef\xb4\xd1\ \xed\xb9\xd5\xf0\xbe\xd8\xf2\xba\xd5\xf0\xb8\xd5\xf0\xba\xd7\xf2\ \xbc\xd8\xf3\xbc\xd8\xf3\xbe\xd8\xf1\xbf\xdc\xf6\xbb\xd8\xf5\xb7\ \xd4\xef\xb9\xd7\xf1\xbd\xd8\xf2\xc0\xd7\xf2\xbc\xda\xfb\x45\x5d\ \x85\x38\x4a\x5e\x2f\x3a\x40\x44\x4b\x51\xeb\xe7\xe9\xb0\xb1\xb8\ \x63\x74\x8e\x84\x9c\xc3\xb1\xc7\xf7\xb3\xc6\xf6\xb1\xc4\xf5\xb2\ \xc5\xf5\xaa\xbd\xf0\xa8\xb9\xef\xa6\xb9\xed\xa6\xbb\xef\xa2\xb7\ \xea\xa1\xb6\xea\xa7\xbb\xf0\xa4\xb8\xef\xa2\xb5\xee\xa5\xb9\xf2\ \xa4\xb8\xf1\xaa\xbf\xf7\xa4\xbb\xf2\xa4\xba\xf0\xa8\xbe\xf2\xa3\ \xb8\xed\xa1\xb6\xed\xa4\xb9\xf1\xa6\xbb\xf0\xae\xc3\xf6\xae\xc6\ \xf4\xa5\xbe\xec\xa9\xc3\xf5\xaa\xc1\xf4\xac\xc2\xf4\xb0\xc6\xf7\ \xad\xc3\xf4\xaf\xc8\xf5\xaf\xc7\xf3\xac\xc3\xf1\xae\xc5\xf2\xa5\ \xbb\xf0\x95\xab\xee\x3e\x4d\x8c\x2e\x3d\x6c\x3d\x54\x76\x63\x7f\ \x9e\x89\xa2\xc2\xb0\xcb\xef\xa9\xc8\xf0\x9b\xbb\xe7\xa1\xc1\xed\ \xa0\xbe\xe7\x87\xa5\xca\x73\x90\xb0\x6c\x88\xa6\x6a\x84\xa0\x67\ \x80\x9b\x61\x7b\x95\x62\x7c\x96\x72\x8c\xa6\x8d\xa8\xc6\xaa\xc6\ \xe7\x98\xb7\xda\x5e\x80\xa6\x40\x57\x82\x3a\x50\x7c\x30\x3c\x5d\ \x38\x42\x59\x4c\x60\x79\x69\x84\x9c\x43\x5b\x6c\x40\x58\x68\x3f\ \x55\x63\x3c\x50\x5c\x38\x4b\x58\x38\x49\x56\x35\x46\x50\x35\x47\ \x4e\x34\x47\x4e\x37\x4a\x52\x36\x48\x51\x38\x4a\x55\x3e\x4f\x5c\ \x44\x54\x61\x46\x5b\x67\x49\x60\x6c\x47\x5f\x6e\x4a\x61\x71\x4b\ \x62\x72\x4b\x63\x77\x4b\x64\x77\x4a\x64\x75\x4a\x65\x75\x4a\x63\ \x75\x4b\x63\x75\x49\x61\x73\x49\x61\x73\x00\x00\x00\x32\x55\x89\ \x07\x24\x4d\x2d\x4f\x83\x38\x64\x9c\x3e\x67\x9f\x39\x5e\x8f\x2e\ \x52\x82\x26\x47\x79\x14\x2f\x5d\x10\x27\x4b\x0d\x1e\x3c\x0e\x1c\ \x34\x1a\x27\x3d\x38\x45\x57\x2a\x33\x3d\x48\x51\x5a\xa3\xb4\xc7\ \xba\xd4\xeb\xbc\xd7\xef\xb9\xd3\xee\xbd\xd6\xf0\xbf\xd7\xf2\xbb\ \xd6\xf1\xbb\xd6\xf1\xbb\xd7\xf2\xba\xd7\xf2\xbc\xd9\xf5\xb8\xd6\ \xf0\xba\xd8\xf1\xba\xd8\xf1\xba\xd7\xf2\xb8\xd4\xef\xbd\xd8\xf3\ \xb8\xd3\xee\xbd\xd8\xf2\xc0\xd9\xf3\xbe\xd8\xf2\xbd\xd8\xf2\xbf\ \xda\xf4\xbf\xd8\xf2\xc2\xdb\xf5\xc1\xda\xf4\xbd\xd9\xf4\xb6\xd4\ \xee\xb7\xd4\xed\xbd\xd8\xf2\xb6\xd3\xee\xb5\xd2\xef\xbb\xd7\xf2\ \xc1\xdc\xf6\xc0\xda\xf5\xbe\xd9\xf4\xbf\xda\xf5\xbd\xd8\xf3\xbf\ \xd9\xf4\xc1\xda\xf4\xbe\xd9\xf4\xb8\xd6\xf1\xb7\xd5\xf0\xb9\xd7\ \xf1\xbb\xd7\xf0\xbf\xd6\xf2\xbe\xdc\xfd\x47\x5f\x87\x3e\x4f\x64\ \x2b\x37\x3d\x3e\x45\x4c\xe6\xe3\xe6\xb3\xb3\xbb\x5b\x6e\x88\x89\ \xa2\xc8\xaf\xc7\xf7\xb0\xc5\xf5\xae\xc3\xf5\xb0\xc4\xf4\xaa\xbd\ \xf0\xa7\xb9\xee\xa8\xbb\xf0\xa5\xbc\xef\xa4\xb8\xec\xa6\xbb\xef\ \xa3\xb8\xec\xa5\xba\xee\xa4\xb8\xed\xa8\xb9\xf1\xa8\xbd\xf2\xae\ \xc4\xf8\xa6\xbc\xf0\xa4\xb9\xed\xa8\xbd\xf0\xa5\xba\xef\xa4\xba\ \xf1\x9e\xb4\xee\xa8\xbd\xf5\xae\xc4\xf7\xad\xc4\xf4\xa7\xbf\xf0\ \xa8\xc1\xf3\xab\xc3\xf5\xac\xc2\xf3\xae\xc5\xf4\xae\xc5\xf3\xae\ \xc7\xf4\xae\xc6\xf2\xa9\xc0\xee\xae\xc5\xf2\xa3\xb9\xef\x8e\xa3\ \xe4\x27\x37\x74\x30\x3f\x6b\x38\x50\x6f\x6e\x89\xa4\x6f\x89\xa1\ \x9d\xb6\xd7\xab\xc7\xef\xa7\xc3\xeb\x99\xb6\xda\x61\x7a\x94\x4a\ \x63\x7b\x4d\x66\x79\x4a\x63\x76\x4a\x62\x74\x4d\x65\x78\x4b\x63\ \x76\x4a\x62\x75\x49\x61\x74\x48\x63\x76\x65\x80\x9a\x87\xa4\xc6\ \x76\x94\xbb\x55\x6c\x91\x34\x44\x65\x25\x32\x4b\x3e\x4e\x66\x70\ \x85\xa0\x5b\x72\x88\x3d\x56\x67\x3e\x56\x65\x39\x4f\x5e\x36\x4b\ \x57\x35\x48\x55\x34\x46\x51\x32\x43\x4c\x34\x45\x4e\x35\x48\x50\ \x34\x46\x51\x37\x49\x54\x39\x4b\x57\x3c\x4f\x5c\x43\x56\x65\x47\ \x5b\x6a\x49\x5f\x70\x48\x60\x70\x48\x5f\x71\x4a\x61\x73\x49\x61\ \x75\x4a\x62\x76\x49\x61\x75\x49\x62\x73\x48\x61\x72\x48\x5f\x71\ \x46\x5e\x70\x46\x5e\x70\x00\x00\x00\x38\x5e\x94\x0e\x2e\x56\x29\ \x49\x7a\x39\x62\x9d\x3c\x68\xa2\x3d\x63\x97\x31\x57\x88\x28\x4b\ \x7b\x18\x35\x64\x12\x27\x50\x11\x22\x43\x10\x1e\x39\x10\x1d\x33\ \x3a\x46\x59\x24\x2e\x38\x3f\x48\x4f\x9c\xab\xba\xbd\xd6\xeb\xbc\ \xd8\xf0\xb6\xd3\xed\xbb\xd5\xef\xc0\xd8\xf3\xbe\xd8\xf2\xba\xd5\ \xf0\xbc\xd6\xf1\xbe\xd9\xf4\xb9\xd5\xf1\xb9\xd6\xf0\xba\xd7\xf0\ \xbd\xd7\xf1\xbf\xd8\xf4\xbb\xd5\xf0\xb9\xd4\xed\xba\xd4\xee\xc0\ \xd9\xf3\xc0\xd9\xf4\xbb\xd6\xf0\xbe\xd9\xf3\xc1\xdc\xf6\xc1\xda\ \xf4\xc4\xdd\xf7\xc1\xda\xf4\xbc\xd8\xf3\xba\xd7\xf2\xb9\xd5\xee\ \xb9\xd5\xef\xb8\xd5\xf0\xb4\xd0\xed\xbb\xd7\xf2\xbe\xd7\xf1\xbe\ \xd7\xf1\xc0\xd9\xf3\xbf\xd8\xf2\xc0\xd9\xf3\xc0\xd9\xf3\xc0\xd8\ \xf2\xbe\xd9\xf4\xb9\xd6\xf1\xb4\xd3\xee\xb6\xd5\xee\xbf\xda\xf6\ \xc0\xd9\xf2\xbe\xdd\xfd\x51\x69\x91\x3e\x4f\x65\x2c\x36\x3f\x42\ \x48\x51\xdd\xda\xde\xb6\xb6\xbf\x5b\x6f\x89\x81\x9b\xc2\xab\xc4\ \xf3\xaf\xc4\xf3\xad\xc2\xf5\xac\xbf\xf2\xa5\xb8\xec\xa5\xb7\xed\ \xa7\xba\xee\xa5\xba\xee\xa0\xb5\xe9\xa2\xb8\xeb\xa5\xb9\xee\xa9\ \xbb\xef\xa6\xb8\xef\xa8\xb9\xf0\xaa\xbe\xf2\xae\xc3\xf6\xa7\xbc\ \xf0\xa4\xb9\xed\xa7\xbc\xef\xa6\xbc\xee\xa5\xbc\xf2\x9d\xb3\xef\ \xa8\xbb\xf4\xad\xc3\xf7\xae\xc6\xf7\xaa\xc2\xf4\xa8\xc0\xf3\xab\ \xc4\xf4\xae\xc4\xf5\xae\xc4\xf3\xae\xc5\xf2\xad\xc6\xf1\xac\xc3\ \xf0\xaa\xc1\xef\xab\xc2\xf1\xa5\xba\xf1\x87\x9b\xdb\x1f\x2f\x69\ \x31\x43\x6d\x38\x4f\x6d\x87\x9e\xb8\x68\x81\x93\x51\x68\x82\x82\ \x99\xba\x84\x9d\xbb\x54\x6d\x85\x48\x60\x72\x48\x61\x71\x48\x61\ \x70\x47\x5f\x6e\x45\x5d\x6e\x45\x5f\x6f\x45\x5f\x6f\x44\x5d\x6d\ \x43\x5d\x6d\x43\x5f\x6b\x41\x5b\x6d\x7a\x92\xb0\x8f\xa9\xca\x6d\ \x83\xa1\x29\x37\x4c\x36\x43\x56\x67\x7a\x91\x72\x89\xa2\x40\x54\ \x67\x38\x51\x5f\x37\x4e\x5d\x35\x4a\x58\x35\x48\x55\x30\x43\x4f\ \x2f\x42\x4d\x31\x43\x4b\x32\x44\x4d\x31\x45\x4d\x33\x46\x50\x34\ \x45\x52\x34\x47\x54\x39\x4d\x5c\x3f\x54\x63\x44\x58\x69\x45\x5a\ \x6c\x46\x5d\x6f\x48\x5f\x71\x48\x5e\x70\x45\x5d\x71\x47\x5e\x72\ \x47\x5d\x70\x46\x5c\x6e\x44\x5b\x6d\x46\x5c\x6e\x45\x5b\x6d\x42\ \x58\x6a\x00\x00\x00\x3e\x68\xa0\x18\x39\x60\x1f\x3d\x6d\x3d\x65\ \x9e\x3d\x68\xa3\x3f\x66\x9c\x36\x5b\x8e\x2a\x4d\x81\x19\x37\x69\ \x12\x29\x56\x13\x25\x49\x0f\x21\x3d\x0c\x1b\x32\x3c\x4b\x5e\x29\ \x33\x40\x37\x40\x49\x87\x94\xa2\xc3\xdb\xef\xba\xd7\xec\xb8\xd6\ \xef\xbd\xd7\xf1\xc3\xdb\xf4\xbe\xd8\xf1\xbe\xd8\xf1\xba\xd5\xf0\ \xbd\xd8\xf3\xbd\xd7\xf3\xbd\xd7\xf1\xbc\xd7\xef\xbc\xd9\xf2\xbe\ \xd8\xf3\xba\xd5\xef\xb7\xd2\xec\xbe\xd7\xf1\xc1\xd9\xf5\xc2\xda\ \xf6\xbd\xd7\xf2\xbd\xd8\xf2\xbe\xd9\xf3\xbf\xd8\xf2\xc4\xdd\xf7\ \xc2\xdb\xf5\xbd\xd9\xf4\xbb\xd7\xf3\xb7\xd3\xee\xb7\xd3\xee\xb7\ \xd5\xf0\xb4\xd1\xee\xbd\xd9\xf4\xc1\xda\xf4\xbe\xd6\xf0\xc0\xd9\ \xf3\xbf\xd8\xf2\xc1\xda\xf4\xbf\xd8\xf2\xbd\xd9\xf4\xbb\xd8\xf3\ \xb7\xd4\xef\xb6\xd2\xed\xb9\xd7\xf0\xbe\xd9\xf5\xc0\xd9\xf2\xbe\ \xdd\xfc\x56\x6e\x96\x42\x52\x6a\x2a\x33\x3e\x48\x4e\x58\xd9\xd6\ \xda\xbb\xbc\xc5\x70\x82\x9d\x8d\xa6\xcd\xae\xc6\xf5\xad\xc1\xf0\ \xb0\xc3\xf6\xab\xbe\xf2\xa5\xb6\xec\xa5\xb6\xee\xa9\xbd\xf1\xa8\ \xbd\xf2\x9d\xb2\xe9\x9e\xb2\xea\xa1\xb4\xec\xa7\xb8\xf0\xaa\xbb\ \xf4\xa8\xba\xf2\xab\xc0\xf3\xb0\xc6\xf9\xa8\xbe\xf4\xa5\xba\xee\ \xa7\xbd\xef\xa6\xbd\xef\xa5\xbb\xf0\x9c\xb0\xe8\xa9\xbd\xf5\xad\ \xc2\xf6\xaf\xc6\xf6\xab\xc3\xf3\xaa\xc4\xf5\xaa\xc3\xf2\xb1\xc9\ \xf8\xae\xc5\xf3\xac\xc3\xf0\xab\xc4\xef\xac\xc4\xf1\xa8\xbf\xed\ \xaa\xc1\xf0\xa4\xb9\xf2\x7a\x8c\xcc\x1b\x2a\x63\x34\x46\x71\x43\ \x5b\x79\x99\xae\xc5\x8a\x9f\xb1\x54\x6a\x7d\x4a\x60\x75\x68\x7d\ \x90\x50\x63\x75\x46\x5e\x6e\x44\x5c\x6c\x41\x5b\x6b\x42\x5b\x6d\ \x42\x5a\x6f\x3f\x58\x6c\x41\x58\x6b\x40\x59\x69\x40\x58\x6a\x3d\ \x57\x65\x3e\x55\x65\x42\x57\x6d\x40\x59\x6f\x4c\x5e\x74\x3f\x4e\ \x61\x6c\x7c\x8c\x81\x96\xaa\x53\x6b\x7e\x36\x4b\x5b\x34\x4b\x5a\ \x31\x48\x55\x30\x45\x51\x30\x42\x4f\x2d\x3e\x4a\x2d\x3f\x4a\x2e\ \x3f\x48\x2f\x3f\x48\x2f\x40\x4b\x32\x42\x4f\x33\x43\x50\x35\x46\ \x55\x38\x4a\x5a\x3c\x4f\x60\x41\x55\x67\x41\x57\x68\x43\x5a\x6b\ \x44\x5b\x6c\x44\x5a\x6b\x44\x5a\x6b\x43\x59\x6b\x42\x59\x69\x40\ \x57\x66\x40\x56\x67\x40\x55\x67\x3f\x54\x66\x3e\x54\x66\x00\x00\ \x00\x3a\x68\xa2\x27\x4a\x73\x19\x37\x65\x38\x61\x98\x3d\x67\xa4\ \x40\x67\xa0\x3c\x5f\x94\x2b\x4e\x83\x1d\x3b\x6f\x13\x2b\x5b\x10\ \x23\x4b\x0e\x20\x40\x0c\x1d\x34\x2d\x3d\x53\x2b\x37\x46\x3f\x49\ \x53\x73\x80\x8c\xc2\xda\xec\xb8\xd5\xea\xb5\xd3\xec\xb8\xd3\xed\ \xbf\xd8\xf1\xbf\xda\xef\xbf\xd9\xf1\xbb\xd6\xef\xbb\xd6\xf0\xba\ \xd3\xee\xbc\xd5\xef\xbc\xd6\xee\xbc\xd6\xef\xc0\xdb\xf5\xbd\xd8\ \xf2\xbf\xd9\xf3\xbc\xd5\xf0\xc2\xda\xf6\xc1\xd9\xf5\xbd\xd7\xf2\ \xbd\xd8\xf2\xbb\xd6\xf0\xbe\xd7\xf1\xc3\xdc\xf6\xc0\xd9\xf3\xbd\ \xd9\xf4\xb8\xd4\xf2\xba\xd5\xf1\xb6\xd2\xee\xb8\xd6\xf1\xb3\xcf\ \xec\xbd\xd9\xf3\xc1\xd9\xf3\xc1\xda\xf4\xbd\xd8\xf2\xbe\xd9\xf3\ \xbf\xda\xf4\xbd\xd8\xf2\xba\xd6\xf1\xba\xd8\xf3\xb8\xd6\xf2\xb9\ \xd4\xef\xbc\xd7\xf0\xbc\xd6\xf2\xc0\xd9\xf2\xbe\xdd\xfa\x5f\x77\ \x9f\x49\x58\x71\x2d\x36\x42\x44\x4a\x54\xd5\xd1\xd5\xbd\xbd\xc7\ \x6f\x80\x9b\x8b\xa2\xc9\xaf\xc6\xf5\xb2\xc4\xf4\xb4\xc6\xf8\xac\ \xbe\xf2\xa5\xb6\xed\xa6\xb7\xef\xa8\xbb\xf0\xa8\xbe\xf1\x9f\xb4\ \xeb\x9f\xb3\xea\xa1\xb4\xec\xa6\xb6\xf1\xa5\xb6\xf1\xa2\xb6\xee\ \xa6\xbc\xef\xad\xc3\xf7\xa4\xbc\xf2\xa1\xb8\xed\xa3\xb9\xed\xa2\ \xba\xeb\xa5\xba\xee\x9e\xb2\xe9\xac\xc0\xf6\xad\xc3\xf4\xae\xc6\ \xf4\xaa\xc3\xf0\xa8\xc1\xf2\xab\xc4\xf2\xb1\xc9\xf7\xae\xc5\xf2\ \xac\xc3\xf0\xaa\xc3\xed\xa9\xc1\xee\xa6\xbd\xeb\xa7\xbe\xee\xa2\ \xb7\xf0\x6c\x7e\xbf\x1a\x2a\x63\x38\x4b\x74\x54\x6c\x89\x92\xa4\ \xbc\x99\xac\xc0\x88\x9c\xad\x7c\x92\x9e\x6d\x80\x8d\x4e\x5f\x6c\ \x44\x5a\x66\x44\x5a\x67\x42\x57\x68\x42\x56\x69\x3f\x55\x69\x41\ \x55\x66\x41\x54\x65\x3e\x53\x62\x3e\x53\x61\x3a\x51\x61\x40\x53\ \x64\x3b\x50\x5f\x3a\x51\x60\x50\x63\x74\x6d\x7e\x94\x76\x89\x99\ \x4d\x61\x70\x34\x4c\x5d\x33\x48\x57\x30\x48\x53\x2e\x43\x4f\x2e\ \x40\x4d\x2a\x3b\x48\x2a\x3b\x47\x2b\x3b\x46\x2b\x3a\x43\x2c\x3b\ \x44\x2a\x3a\x45\x2a\x39\x46\x2e\x3c\x4a\x30\x40\x50\x35\x46\x57\ \x39\x4b\x5c\x3b\x4e\x5f\x3d\x54\x64\x3d\x55\x65\x3e\x54\x64\x3e\ \x53\x64\x3b\x52\x62\x3b\x52\x61\x3c\x52\x61\x3a\x4f\x5e\x39\x4e\ \x5d\x3a\x4e\x60\x39\x4d\x5f\x37\x4b\x5c\x00\x00\x00\x40\x75\xaf\ \x34\x59\x8d\x14\x30\x5e\x36\x5e\x95\x3d\x69\xa6\x42\x69\xa1\x3f\ \x61\x96\x2e\x4f\x83\x20\x3e\x71\x14\x2b\x5d\x11\x24\x4e\x0d\x1f\ \x3e\x0e\x1b\x36\x1f\x2c\x42\x27\x34\x41\x39\x45\x4e\x67\x71\x7c\ \xc6\xd7\xeb\xb9\xd5\xeb\xb6\xd4\xed\xb5\xd0\xea\xba\xd5\xef\xbb\ \xd7\xef\xb9\xd5\xee\xbb\xd6\xf0\xba\xd5\xef\xbc\xd6\xef\xba\xd5\ \xed\xb7\xd2\xed\xb9\xd5\xef\xbd\xd8\xf2\xb9\xd6\xef\xbe\xdb\xf4\ \xbc\xd7\xf1\xc4\xdc\xf7\xc4\xda\xf6\xbd\xd5\xf0\xbf\xda\xf4\xbb\ \xd6\xf0\xbc\xd7\xf1\xbf\xda\xf4\xbc\xd7\xf2\xbe\xd9\xf4\xba\xd4\ \xef\xb6\xd3\xee\xb5\xd2\xee\xb8\xd5\xf1\xaf\xce\xeb\xba\xd8\xf1\ \xc1\xd9\xf2\xc2\xdc\xf6\xbe\xd9\xf4\xbc\xd7\xf2\xbd\xd8\xf3\xbe\ \xd9\xf4\xbd\xd8\xf3\xbc\xd9\xf4\xbb\xd8\xf3\xb7\xd5\xf0\xba\xd7\ \xf1\xc1\xda\xf4\xc1\xd8\xf3\xbc\xdb\xf9\x64\x7d\xa5\x40\x51\x6c\ \x2b\x37\x42\x3a\x40\x49\xcd\xc7\xca\xc3\xc1\xcb\x65\x75\x8f\x94\ \xab\xd1\xae\xc6\xf3\xae\xc3\xf1\xb0\xc5\xf6\xab\xbe\xf2\xa6\xb8\ \xed\xa5\xb8\xec\xa6\xbb\xee\xa6\xbb\xef\x9e\xb4\xe8\xa0\xb4\xea\ \xa0\xb4\xeb\xa7\xbb\xf2\xa4\xb8\xf0\xa5\xb8\xef\xab\xbc\xf4\xa7\ \xbc\xf3\xa4\xbb\xf1\xa3\xb9\xed\xa5\xba\xed\xa5\xba\xed\xa7\xbc\ \xf0\xa2\xb5\xed\xab\xc0\xf5\xad\xc4\xf6\xae\xc5\xf5\xa9\xc3\xf2\ \xa8\xc2\xf1\xa9\xc3\xf2\xb1\xc9\xf8\xab\xc3\xf0\xab\xc3\xf1\xa9\ \xc1\xef\xa7\xbe\xee\xa8\xbf\xee\xa7\xbf\xee\xa1\xb6\xf2\x65\x77\ \xb7\x1f\x30\x64\x35\x4b\x6f\x4b\x64\x81\x5a\x6b\x81\x60\x73\x84\ \x6c\x80\x91\x6a\x7d\x8c\x4c\x5f\x6e\x45\x58\x67\x43\x56\x63\x41\ \x53\x62\x40\x53\x62\x40\x53\x63\x3e\x51\x61\x3d\x52\x63\x3e\x52\ \x64\x3d\x51\x62\x3c\x4f\x5e\x3b\x4e\x5d\x38\x4d\x5c\x36\x4b\x5b\ \x37\x4c\x5b\x37\x4c\x5b\x41\x55\x64\x3c\x4f\x5e\x35\x48\x57\x33\ \x47\x56\x33\x46\x55\x32\x46\x52\x2e\x40\x4c\x2e\x3d\x48\x2c\x3c\ \x45\x28\x39\x42\x26\x38\x40\x26\x37\x40\x26\x35\x3e\x26\x35\x3e\ \x29\x37\x42\x2a\x37\x44\x2b\x3b\x48\x32\x43\x51\x34\x46\x57\x37\ \x49\x5b\x38\x4d\x5d\x39\x4c\x5a\x38\x4b\x58\x38\x4b\x5a\x34\x49\ \x58\x34\x48\x58\x33\x47\x56\x33\x46\x56\x32\x45\x54\x32\x45\x52\ \x31\x45\x51\x2e\x42\x4e\x00\x00\x00\x46\x7a\xb6\x39\x60\x93\x11\ \x2d\x5a\x30\x52\x87\x40\x6b\xa7\x40\x68\xa2\x3e\x64\x98\x2f\x52\ \x85\x22\x41\x74\x18\x31\x62\x12\x25\x51\x0f\x1f\x41\x10\x1e\x37\ \x17\x25\x39\x27\x36\x43\x36\x42\x4c\x54\x5e\x69\xc6\xd5\xe8\xbb\ \xd7\xec\xb9\xd7\xf0\xb6\xd1\xeb\xbd\xd8\xf1\xbc\xd8\xf0\xb7\xd2\ \xeb\xb8\xd3\xed\xb9\xd4\xee\xbc\xd7\xf1\xbb\xd6\xf0\xbb\xd6\xf0\ \xbc\xd7\xf2\xbb\xd8\xf4\xb9\xd6\xf0\xbc\xd8\xf2\xbe\xd8\xf2\xc3\ \xdb\xf5\xc6\xdd\xf7\xc2\xda\xf4\xc0\xda\xf4\xbd\xd8\xf2\xb7\xd2\ \xec\xc2\xdb\xf5\xc0\xd8\xf3\xbe\xd9\xf4\xba\xd5\xf0\xba\xd5\xf0\ \xb9\xd4\xef\xbc\xd9\xf4\xb4\xd1\xec\xbc\xd9\xf3\xc0\xd9\xf2\xc1\ \xdb\xf5\xc3\xde\xf8\xc0\xda\xf5\xc1\xdb\xf6\xc0\xda\xf4\xbe\xd7\ \xf3\xbd\xd9\xf4\xbb\xd8\xf3\xba\xd7\xf2\xba\xd7\xf0\xc0\xdb\xf4\ \xc3\xdb\xf5\xbd\xdc\xfa\x67\x81\xa8\x46\x58\x72\x27\x32\x3e\x33\ \x3a\x42\xcd\xc9\xcc\xc6\xc4\xcc\x66\x76\x90\x93\xa9\xd0\xaf\xc7\ \xf5\xae\xc3\xf3\xac\xc3\xf5\xab\xbe\xf2\xa6\xb9\xec\xa7\xba\xed\ \xa8\xbd\xf0\xa7\xbc\xef\xa2\xb7\xeb\xa0\xb5\xe9\xa3\xb8\xec\xa8\ \xbc\xf2\xa5\xb8\xf0\xa5\xb8\xf1\xa6\xba\xf1\xaa\xc0\xf4\xaa\xc2\ \xf5\xa6\xbc\xef\xa5\xba\xed\xa4\xb9\xec\xa7\xbc\xf2\xa1\xb4\xed\ \xa9\xbf\xf4\xac\xc4\xf6\xae\xc6\xf5\xaa\xc4\xf3\xa7\xc1\xf0\xa6\ \xc0\xef\xaf\xc6\xf6\xaa\xc1\xf1\xac\xc4\xf2\xa8\xc1\xee\xa8\xc1\ \xee\xa8\xc0\xee\xa5\xbc\xec\x9c\xb0\xef\x52\x62\xa5\x28\x36\x6b\ \x3f\x54\x7b\x4a\x63\x7f\x3e\x52\x63\x3c\x4f\x5d\x3d\x51\x5f\x3e\ \x51\x60\x3e\x51\x5e\x3e\x51\x5e\x3b\x4e\x5b\x3c\x4f\x5c\x3c\x4f\ \x5c\x38\x4b\x59\x39\x4c\x5b\x39\x4c\x5a\x39\x4b\x5b\x39\x4b\x5a\ \x39\x4b\x58\x38\x4a\x57\x36\x48\x57\x35\x47\x55\x33\x45\x53\x32\ \x44\x53\x30\x43\x50\x30\x43\x50\x2f\x42\x4f\x2f\x42\x4f\x2f\x41\ \x4e\x2f\x41\x4c\x2c\x3d\x47\x2c\x3c\x44\x29\x39\x40\x29\x37\x3f\ \x26\x33\x3d\x25\x33\x3c\x24\x31\x3b\x24\x30\x3a\x25\x32\x3b\x27\ \x35\x3d\x29\x38\x41\x2b\x3c\x48\x31\x41\x50\x31\x42\x52\x31\x43\ \x51\x30\x42\x4f\x32\x44\x50\x31\x42\x4f\x2e\x40\x4d\x2e\x40\x4d\ \x2d\x3f\x4c\x2e\x3e\x4b\x2c\x3d\x49\x2c\x3e\x45\x2b\x3d\x44\x2b\ \x3d\x44\x00\x00\x00\x42\x76\xb2\x3b\x66\x99\x14\x33\x5d\x29\x4b\ \x7c\x3d\x69\xa5\x41\x6c\xa6\x3f\x67\x9c\x2f\x53\x86\x24\x45\x78\ \x19\x34\x66\x10\x26\x51\x11\x21\x43\x0f\x1d\x36\x11\x20\x34\x31\ \x41\x50\x3b\x48\x54\x51\x5a\x64\xb9\xc7\xd7\xbf\xd8\xec\xbb\xd9\ \xf1\xb6\xd1\xeb\xba\xd6\xee\xba\xd6\xee\xb7\xd2\xeb\xb7\xd2\xec\ \xbc\xd7\xf1\xba\xd5\xef\xbd\xd8\xf2\xb9\xd5\xef\xb8\xd5\xf0\xb9\ \xd6\xf1\xba\xd7\xf2\xbb\xd6\xf0\xbe\xd8\xf2\xc2\xdb\xf5\xc8\xdf\ \xf7\xc6\xdd\xf7\xc1\xda\xf4\xbf\xda\xf4\xbf\xd9\xf3\xc2\xdb\xf5\ \xc1\xda\xf4\xc1\xda\xf4\xbb\xd6\xf0\xb9\xd5\xef\xb9\xd4\xee\xbe\ \xd9\xf4\xb9\xd4\xef\xbe\xd9\xf4\xbf\xd9\xf2\xbf\xd9\xf2\xc6\xdf\ \xf9\xc4\xdd\xf7\xc3\xdc\xf6\xc2\xdb\xf5\xbf\xd7\xf3\xbe\xd9\xf4\ \xba\xd7\xf2\xba\xd7\xf1\xbc\xd8\xf1\xc0\xdb\xf5\xc2\xda\xf5\xbb\ \xda\xf8\x6d\x87\xaf\x44\x55\x6f\x25\x32\x3c\x35\x3c\x44\xc5\xbf\ \xc1\xc9\xc7\xce\x6b\x7a\x95\x90\xa6\xcc\xac\xc3\xf2\xae\xc3\xf3\ \xac\xc2\xf5\xaa\xbf\xef\xa7\xbb\xeb\xa9\xbd\xed\xaa\xc0\xf1\xa7\ \xbc\xef\xa2\xb7\xe9\xa1\xb6\xe9\xa4\xb8\xec\xab\xbc\xf3\xa6\xb8\ \xf1\xa4\xb8\xf1\xa6\xba\xf2\xa6\xbd\xf0\xa9\xc0\xf2\xa7\xbd\xef\ \xa4\xb9\xec\xa2\xb7\xea\xa4\xb9\xef\x9e\xb1\xea\xaa\xc0\xf4\xad\ \xc4\xf6\xae\xc5\xf5\xac\xc5\xf4\xa6\xc0\xef\xa4\xbe\xed\xad\xc4\ \xf4\xab\xc2\xf2\xab\xc3\xf1\xa9\xc2\xef\xa9\xc2\xed\xac\xc3\xf1\ \xa6\xbc\xed\x97\xa9\xe9\x3d\x4a\x8b\x2b\x3a\x6c\x42\x58\x7c\x3b\ \x53\x6d\x39\x4b\x59\x3b\x4c\x57\x39\x4b\x56\x39\x4b\x56\x39\x4b\ \x56\x38\x4a\x55\x38\x4a\x55\x38\x4a\x55\x36\x48\x53\x36\x48\x53\ \x35\x47\x51\x36\x47\x51\x36\x46\x53\x34\x44\x50\x34\x44\x4f\x31\ \x40\x4b\x2e\x3e\x4a\x2f\x3f\x4b\x30\x40\x4c\x2f\x3f\x4b\x2e\x3e\ \x4a\x2d\x3d\x48\x2b\x3b\x47\x2c\x3c\x47\x2b\x3b\x47\x2c\x3c\x45\ \x2a\x39\x41\x29\x39\x40\x28\x36\x3c\x27\x33\x39\x26\x31\x39\x24\ \x2f\x37\x23\x2e\x36\x24\x2f\x37\x23\x2e\x36\x25\x32\x38\x28\x36\ \x3c\x29\x38\x41\x2b\x3b\x47\x2c\x3e\x4a\x2c\x3d\x49\x2c\x3c\x48\ \x2a\x3a\x46\x2a\x3a\x47\x29\x39\x45\x29\x39\x44\x29\x39\x45\x2a\ \x38\x44\x2a\x38\x44\x28\x36\x40\x27\x36\x3f\x26\x35\x3e\x00\x00\ \x00\x45\x77\xb4\x44\x70\xa6\x24\x45\x70\x21\x42\x70\x3a\x67\xa1\ \x3f\x69\xa5\x45\x6c\xa2\x32\x57\x89\x29\x4a\x7c\x1b\x38\x6b\x12\ \x28\x55\x10\x20\x45\x12\x1d\x3b\x13\x21\x3a\x39\x49\x5c\x2d\x3a\ \x46\x49\x52\x5b\xa2\xad\xbb\xc3\xdb\xee\xbb\xd7\xf0\xb9\xd4\xed\ \xb6\xd4\xeb\xb8\xd4\xec\xb8\xd4\xed\xb9\xd4\xee\xbc\xd7\xf1\xb7\ \xd2\xec\xba\xd6\xf1\xba\xd7\xf2\xb8\xd5\xf0\xb9\xd6\xf1\xba\xd7\ \xf2\xb9\xd5\xef\xbc\xd7\xf0\xc1\xda\xf2\xc8\xe0\xf7\xc5\xdc\xf6\ \xc2\xda\xf4\xbe\xd9\xf3\xbf\xd8\xf3\xc3\xdc\xf6\xc1\xda\xf4\xc1\ \xda\xf4\xc2\xdb\xf5\xbd\xd8\xf2\xbc\xd6\xef\xc1\xdb\xf5\xbd\xd6\ \xf1\xc0\xd9\xf4\xc2\xdb\xf4\xc1\xda\xf3\xc2\xdb\xf5\xc4\xdd\xf7\ \xc3\xdc\xf6\xc1\xda\xf4\xc1\xda\xf4\xc0\xda\xf4\xbb\xd9\xf2\xbb\ \xd7\xf0\xbd\xd9\xf2\xc0\xdb\xf4\xc1\xda\xf5\xba\xdc\xf9\x73\x8e\ \xb5\x44\x57\x70\x1f\x2b\x35\x33\x3b\x42\xbe\xb9\xba\xc9\xc7\xcf\ \x69\x79\x96\x94\xab\xd3\xae\xc6\xf5\xaf\xc3\xf3\xb0\xc4\xf5\xaf\ \xc3\xf2\xa7\xbb\xea\xa9\xbd\xed\xa9\xbf\xef\xa6\xbc\xec\xa5\xbc\ \xea\xa2\xb7\xe8\xa6\xb8\xec\xab\xbd\xf2\xa7\xba\xf2\xa3\xb8\xef\ \xa5\xbd\xf1\xa5\xbd\xf1\xaa\xc0\xf4\xa7\xbc\xef\xa6\xbb\xee\xa3\ \xb8\xeb\xa2\xb7\xed\x9e\xb1\xeb\xad\xc2\xf7\xad\xc4\xf6\xab\xc2\ \xf2\xaa\xc4\xf3\xa8\xc2\xf1\xa5\xbf\xed\xac\xc4\xf2\xab\xc2\xf0\ \xac\xc5\xf2\xaa\xc3\xef\xab\xc2\xf0\xae\xc5\xf3\xa8\xbf\xef\x8d\ \x9f\xde\x2c\x3d\x78\x30\x41\x6e\x45\x5c\x7c\x37\x4e\x64\x34\x43\ \x4c\x35\x44\x4b\x31\x41\x48\x30\x3f\x48\x31\x41\x4a\x31\x40\x4a\ \x32\x40\x4c\x30\x3e\x4a\x2e\x3d\x47\x2f\x3f\x48\x2d\x3d\x45\x2e\ \x3e\x45\x30\x3e\x47\x2f\x3b\x46\x2d\x3a\x43\x2e\x3b\x43\x2e\x3b\ \x44\x2c\x39\x41\x2c\x39\x41\x29\x37\x3f\x28\x37\x3e\x29\x37\x3e\ \x28\x37\x3d\x28\x36\x3d\x27\x35\x3c\x27\x35\x3c\x25\x35\x3b\x25\ \x33\x39\x25\x30\x35\x25\x30\x34\x24\x2d\x31\x22\x2c\x30\x20\x2b\ \x2f\x1f\x2b\x2f\x20\x2b\x30\x23\x2e\x35\x25\x31\x37\x25\x33\x3c\ \x26\x34\x41\x28\x36\x41\x28\x37\x40\x27\x36\x3e\x26\x32\x3d\x27\ \x33\x3f\x25\x32\x3b\x24\x31\x39\x25\x33\x3b\x23\x2f\x37\x22\x2d\ \x37\x23\x2f\x3a\x22\x2f\x37\x21\x2e\x36\x00\x00\x00\x47\x7c\xb8\ \x4d\x7c\xb2\x33\x57\x83\x1e\x41\x6d\x38\x62\x9b\x3e\x69\xa3\x47\ \x6e\xa5\x3d\x64\x97\x29\x4d\x80\x1f\x3f\x72\x15\x2d\x5b\x13\x26\ \x4b\x10\x1e\x3e\x13\x22\x3e\x35\x44\x5b\x24\x31\x41\x45\x4e\x56\ \x88\x95\xa2\xc7\xdc\xf0\xb3\xcc\xe7\xb6\xd2\xeb\xb8\xd4\xea\xba\ \xd6\xec\xb8\xd3\xeb\xb8\xd3\xec\xbb\xd5\xee\xbb\xd5\xef\xb8\xd3\ \xed\xb7\xd4\xee\xb7\xd4\xef\xb7\xd4\xee\xb7\xd4\xef\xb5\xd2\xec\ \xba\xd4\xee\xc0\xd9\xf2\xc5\xdd\xf5\xc4\xdc\xf5\xc1\xda\xf3\xc0\ \xda\xf3\xc0\xd9\xf2\xc3\xdd\xf6\xc4\xdd\xf8\xc1\xd9\xf4\xc0\xd9\ \xf3\xbd\xd8\xf2\xbe\xd8\xf2\xc3\xdc\xf5\xbd\xd7\xf1\xc4\xdc\xf7\ \xc5\xde\xf7\xc1\xdb\xf4\xc2\xdc\xf6\xc5\xde\xf8\xc4\xdd\xf7\xc2\ \xdb\xf5\xc3\xdb\xf5\xc1\xdb\xf5\xbf\xdb\xf5\xba\xd5\xf0\xba\xd7\ \xf0\xbf\xda\xf5\xc1\xdc\xf5\xba\xdb\xf8\x7b\x95\xbc\x45\x57\x72\ \x20\x2b\x36\x2f\x35\x3d\xbc\xb7\xba\xcb\xc9\xd1\x68\x78\x94\x93\ \xa9\xd4\xad\xc4\xf5\xae\xc2\xf1\xb0\xc3\xf2\xac\xc1\xf0\xa7\xbc\ \xeb\xa8\xbd\xed\xa6\xbc\xec\xa7\xbd\xed\xa5\xba\xe9\xa4\xb8\xe9\ \xa6\xb9\xec\xaa\xbd\xf1\xa7\xbb\xef\xa2\xb7\xeb\xa6\xbe\xf2\xa7\ \xbf\xf3\xa8\xbe\xf3\xa5\xbb\xed\xa5\xbb\xed\xa5\xbb\xee\xa4\xb8\ \xee\xa3\xb7\xef\xae\xc3\xf7\xae\xc5\xf7\xab\xc2\xf3\xab\xc4\xf3\ \xa9\xc2\xf1\xa6\xbf\xec\xac\xc6\xf1\xad\xc4\xf1\xae\xc7\xf3\xac\ \xc3\xf1\xad\xc3\xf2\xaf\xc6\xf3\xa8\xbf\xf1\x7f\x92\xcf\x23\x32\ \x6b\x30\x43\x6d\x49\x61\x7f\x30\x45\x58\x2f\x3c\x44\x2f\x3b\x42\ \x2c\x38\x40\x2b\x37\x3f\x2c\x38\x41\x29\x36\x3e\x29\x34\x3f\x27\ \x33\x3c\x29\x34\x3d\x2a\x36\x3d\x29\x35\x3c\x28\x34\x3b\x28\x33\ \x3b\x26\x32\x3c\x27\x32\x3b\x26\x31\x3a\x26\x32\x39\x24\x30\x36\ \x23\x2f\x35\x24\x30\x38\x23\x2e\x34\x22\x2d\x32\x21\x2d\x32\x22\ \x2e\x33\x22\x2f\x34\x20\x2d\x33\x21\x2e\x33\x1f\x2d\x31\x1e\x2b\ \x2e\x1f\x29\x2c\x1f\x26\x2b\x1f\x27\x2c\x1d\x27\x2b\x1e\x28\x2c\ \x20\x2a\x2f\x20\x2b\x31\x22\x2e\x34\x24\x30\x38\x23\x30\x3b\x23\ \x30\x38\x24\x31\x38\x23\x30\x37\x23\x2f\x38\x22\x2d\x38\x23\x2f\ \x36\x20\x2c\x33\x1f\x2a\x32\x21\x2b\x33\x20\x2a\x32\x1f\x2a\x32\ \x1e\x2a\x30\x1f\x2a\x30\x00\x00\x00\x47\x7f\xba\x50\x82\xb7\x3f\ \x68\x92\x1a\x3d\x66\x33\x5d\x92\x40\x6a\xa3\x45\x70\xa5\x43\x6b\ \xa0\x2d\x53\x87\x24\x47\x7b\x17\x33\x62\x14\x29\x54\x10\x22\x45\ \x15\x22\x3e\x33\x3f\x59\x29\x35\x48\x3c\x47\x4f\x6c\x7b\x87\xc4\ \xd7\xed\xba\xd1\xed\xb5\xce\xe7\xbc\xd6\xed\xbd\xd7\xef\xb9\xd3\ \xeb\xbc\xd5\xee\xbb\xd4\xee\xba\xd3\xed\xba\xd5\xef\xb4\xd2\xeb\ \xb7\xd5\xee\xb8\xd5\xee\xb8\xd5\xef\xb5\xd3\xec\xb9\xd6\xef\xbe\ \xd7\xf1\xc4\xda\xf5\xc4\xdb\xf5\xc1\xd9\xf3\xbf\xda\xf4\xc1\xda\ \xf4\xc2\xdc\xf5\xc5\xde\xf8\xc2\xdb\xf5\xbf\xd9\xf3\xbc\xd7\xf1\ \xbd\xd7\xf1\xc2\xdb\xf5\xbe\xd9\xf4\xc2\xdc\xf6\xc5\xdd\xf5\xc1\ \xdb\xf5\xc1\xdc\xf6\xc3\xdc\xf6\xc3\xdc\xf6\xc1\xda\xf4\xc2\xda\ \xf4\xc4\xdd\xf7\xc0\xda\xf4\xba\xd6\xf1\xba\xd6\xf1\xbd\xd8\xf3\ \xbe\xda\xf4\xbb\xda\xf6\x85\x9c\xc4\x3a\x4d\x69\x1f\x28\x35\x30\ \x33\x3c\xb9\xb3\xb9\xce\xcb\xd3\x62\x71\x8b\x97\xad\xd5\xb1\xc8\ \xf7\xad\xc1\xf1\xad\xc2\xf3\xa8\xbf\xed\xa6\xbd\xec\xa9\xbf\xef\ \xa7\xbd\xed\xa9\xbf\xef\xa7\xbb\xeb\xa7\xbb\xec\xa7\xbb\xee\xa5\ \xba\xed\xa4\xb9\xec\xa5\xba\xee\xa8\xbf\xf3\xa7\xbf\xf3\xa7\xbd\ \xf1\xa5\xbb\xee\xa3\xba\xed\xa4\xba\xef\xa3\xb8\xed\xa7\xbc\xf0\ \xaf\xc4\xf7\xaf\xc6\xf8\xaa\xc1\xf1\xac\xc3\xf3\xaa\xc1\xf1\xa8\ \xbf\xee\xad\xc6\xf2\xae\xc5\xf1\xb0\xc7\xf4\xad\xc3\xf2\xad\xc3\ \xf1\xb1\xc6\xf2\xa7\xbc\xf2\x74\x85\xc3\x1e\x2c\x62\x30\x47\x6f\ \x4f\x67\x84\x28\x38\x4a\x29\x35\x3d\x26\x31\x38\x27\x33\x3a\x25\ \x31\x37\x23\x2f\x35\x23\x2f\x35\x23\x2f\x35\x21\x2d\x33\x22\x2e\ \x34\x23\x2f\x35\x22\x2e\x34\x21\x2d\x32\x21\x2d\x34\x21\x2c\x34\ \x1f\x2a\x32\x20\x2a\x32\x20\x2b\x30\x1e\x29\x2d\x1f\x2a\x2e\x1f\ \x29\x30\x1f\x2b\x2f\x1d\x28\x2c\x1f\x2b\x30\x1e\x2a\x30\x1d\x28\ \x2e\x1d\x29\x2d\x1c\x28\x2c\x1c\x28\x2b\x1a\x26\x28\x1b\x25\x28\ \x1c\x22\x27\x1a\x23\x26\x19\x22\x25\x1d\x26\x29\x1e\x28\x2b\x1f\ \x2a\x2e\x20\x2c\x32\x20\x2c\x34\x20\x2c\x36\x22\x2f\x34\x1e\x2a\ \x2e\x1f\x2b\x2e\x1f\x2a\x30\x20\x2a\x33\x1e\x2a\x30\x1f\x2b\x31\ \x1f\x2a\x30\x1d\x27\x2e\x1f\x29\x30\x1d\x26\x2f\x1c\x25\x2e\x1e\ \x27\x30\x00\x00\x00\x4a\x83\xbe\x4e\x84\xb9\x4e\x78\xa2\x23\x48\ \x6e\x33\x5a\x8a\x42\x6d\xa6\x42\x6f\xa7\x47\x73\xa8\x36\x60\x96\ \x27\x4e\x83\x1a\x39\x6b\x14\x2d\x5a\x12\x24\x4a\x15\x23\x42\x26\ \x33\x4d\x33\x41\x53\x3b\x46\x4e\x56\x63\x6e\xc3\xd3\xe7\xbe\xd2\ \xee\xb8\xcd\xea\xb8\xd1\xeb\xbc\xd6\xee\xb9\xd3\xeb\xbc\xd5\xef\ \xbd\xd6\xf0\xbd\xd6\xf0\xbe\xd7\xf1\xb4\xd1\xea\xb5\xd3\xec\xb9\ \xd4\xee\xba\xd6\xef\xb9\xd7\xf0\xbb\xd8\xf1\xbe\xd9\xf3\xc3\xdb\ \xf5\xc5\xdc\xf6\xc1\xda\xf4\xbe\xd8\xf2\xc1\xda\xf4\xc0\xd9\xf3\ \xc4\xdd\xf7\xc2\xdb\xf5\xc0\xd9\xf3\xbf\xda\xf4\xbd\xd6\xf0\xbe\ \xd9\xf3\xbd\xd8\xf3\xc0\xda\xf4\xc2\xdb\xf4\xc2\xdb\xf5\xc2\xdb\ \xf5\xc1\xda\xf4\xc0\xd9\xf3\xc0\xd9\xf3\xbf\xd8\xf2\xc2\xdb\xf5\ \xbe\xd9\xf4\xbe\xd9\xf4\xbe\xd9\xf3\xbf\xd9\xf4\xc0\xd9\xf3\xbc\ \xd9\xf6\x8a\xa3\xcb\x3b\x4e\x6c\x21\x2a\x37\x2e\x33\x3b\xb5\xb1\ \xb6\xce\xcb\xd4\x63\x72\x88\x99\xb0\xd4\xb0\xc7\xf6\xaf\xc3\xf4\ \xab\xbf\xf3\xa8\xbc\xec\xa6\xbc\xec\xa6\xbc\xec\xa7\xbd\xed\xaa\ \xc0\xf0\xa5\xba\xea\xa6\xba\xea\xa7\xbc\xec\xa3\xba\xeb\xa5\xbc\ \xef\xa3\xb9\xed\xa5\xbd\xf1\xa7\xbf\xf3\xa5\xbd\xef\xa4\xbb\xec\ \xa3\xba\xec\xa4\xba\xed\xa3\xb8\xec\xa8\xbd\xf0\xae\xc5\xf6\xae\ \xc5\xf5\xa8\xbf\xef\xad\xc4\xf4\xa9\xc2\xf2\xaa\xc1\xef\xac\xc4\ \xf1\xad\xc5\xf1\xb0\xc7\xf4\xac\xc3\xf2\xae\xc5\xf3\xae\xc4\xf2\ \xa5\xba\xf2\x65\x77\xb4\x1e\x2e\x63\x2d\x47\x6d\x4c\x66\x7f\x1e\ \x2f\x3c\x24\x30\x35\x24\x2f\x35\x23\x2d\x34\x23\x2d\x34\x22\x2c\ \x33\x22\x2d\x33\x22\x2d\x30\x22\x2d\x31\x21\x2b\x31\x22\x2b\x33\ \x1f\x29\x30\x1f\x2a\x2e\x20\x2b\x2f\x1f\x2a\x2f\x1f\x29\x30\x1f\ \x2a\x2f\x1f\x2a\x2e\x1f\x2a\x2d\x1c\x27\x2b\x1e\x29\x2d\x1e\x28\ \x2e\x1c\x26\x2b\x1d\x28\x2c\x1c\x28\x2b\x1c\x27\x2c\x1e\x28\x2e\ \x1a\x25\x29\x1d\x26\x2a\x1a\x23\x26\x1b\x25\x26\x1b\x24\x27\x1a\ \x23\x26\x1a\x23\x26\x1a\x25\x27\x1e\x27\x2a\x1e\x27\x2b\x1f\x29\ \x30\x20\x2c\x33\x1f\x2b\x33\x1f\x2a\x32\x1f\x2b\x32\x1f\x2b\x2f\ \x1f\x2b\x2f\x1e\x2a\x2f\x1e\x2a\x30\x1f\x2b\x31\x1d\x28\x2e\x1f\ \x29\x30\x1f\x29\x30\x1e\x2a\x30\x1d\x29\x2f\x1e\x29\x2f\x00\x00\ \x00\x49\x81\xbe\x54\x8a\xbf\x58\x85\xb3\x30\x56\x7d\x31\x55\x83\ \x3f\x6a\xa5\x40\x6e\xa9\x45\x72\xa8\x3b\x69\xa0\x2e\x58\x90\x21\ \x46\x7b\x1c\x3b\x6d\x10\x26\x52\x12\x23\x44\x17\x26\x41\x33\x42\ \x55\x2e\x3a\x44\x54\x5e\x67\xbf\xcb\xdd\xc6\xd6\xf0\xbd\xd0\xee\ \xb9\xd0\xec\xbb\xd4\xee\xba\xd3\xed\xbc\xd5\xef\xc0\xd9\xf3\xbe\ \xd7\xf1\xbd\xd7\xf1\xb6\xd1\xeb\xb7\xd2\xec\xb8\xd3\xed\xb7\xd3\ \xed\xb7\xd5\xee\xb8\xd6\xef\xbb\xd7\xf0\xc0\xd9\xf3\xc5\xdc\xf6\ \xbe\xd7\xf1\xbd\xd7\xf1\xbf\xd8\xf2\xc1\xda\xf4\xc2\xdb\xf5\xc2\ \xdb\xf5\xbf\xd9\xf2\xbd\xd8\xf2\xbb\xd7\xf1\xbd\xd8\xf3\xbc\xd8\ \xf3\xbc\xd7\xf2\xc2\xdc\xf5\xc2\xdb\xf4\xc2\xdb\xf5\xc2\xdb\xf5\ \xc1\xdb\xf5\xc0\xda\xf4\xbf\xd9\xf3\xc2\xdc\xf6\xbf\xda\xf4\xbc\ \xd7\xf2\xbb\xd7\xf1\xc0\xda\xf4\xc0\xda\xf3\xbc\xd9\xf6\x8a\xa3\ \xcc\x3d\x52\x70\x25\x2f\x3c\x32\x38\x40\xaa\xa6\xab\xce\xcc\xd5\ \x5c\x6d\x83\x9d\xb5\xd6\xb1\xc9\xf5\xb0\xc4\xf3\xac\xc0\xf2\xac\ \xc1\xf0\xa8\xbc\xec\xa3\xb9\xe9\xa7\xbd\xed\xa6\xbd\xed\xa4\xbb\ \xeb\xa7\xbc\xeb\xa7\xbd\xec\xa5\xbc\xee\xa3\xbb\xef\xa1\xb9\xee\ \xa3\xbc\xf0\xa5\xbf\xf2\xa5\xbc\xee\xa5\xbc\xec\xa5\xba\xec\xa6\ \xbb\xef\xa8\xbd\xf0\xaf\xc2\xf5\xae\xc5\xf5\xb0\xc8\xf7\xa7\xbf\ \xef\xab\xc5\xf4\xa8\xc1\xf0\xa9\xc0\xef\xaa\xc3\xf0\xae\xc6\xf2\ \xac\xc3\xf0\xab\xc2\xf0\xae\xc4\xf2\xad\xc3\xf3\xa0\xb6\xf0\x56\ \x68\xa5\x1e\x2f\x62\x31\x49\x6f\x48\x61\x78\x22\x33\x3f\x26\x31\ \x38\x23\x2f\x35\x23\x2f\x35\x23\x2e\x35\x24\x2f\x37\x22\x2d\x36\ \x21\x2d\x32\x22\x2e\x33\x21\x2b\x32\x22\x2c\x35\x21\x2b\x33\x21\ \x2d\x31\x22\x2d\x32\x20\x2b\x31\x21\x2c\x33\x20\x2b\x32\x20\x2b\ \x32\x20\x2b\x32\x1f\x2a\x31\x1f\x2a\x30\x1f\x2a\x31\x1e\x28\x30\ \x1e\x29\x30\x1e\x29\x2e\x1e\x29\x2e\x1e\x27\x2f\x1c\x26\x2c\x1c\ \x26\x2a\x1c\x24\x27\x1b\x24\x27\x1c\x25\x27\x1c\x25\x28\x1a\x25\ \x27\x1b\x26\x2a\x1e\x28\x2e\x1f\x2a\x30\x1f\x2a\x32\x20\x2b\x34\ \x21\x2c\x37\x21\x2c\x37\x20\x2b\x35\x21\x2e\x34\x21\x2d\x32\x20\ \x2d\x32\x1e\x2d\x34\x21\x2e\x34\x21\x2d\x34\x20\x2c\x33\x20\x2d\ \x34\x20\x2c\x34\x20\x2c\x34\x21\x2c\x35\x00\x00\x00\x46\x80\xbd\ \x56\x8e\xc6\x5f\x8f\xc1\x39\x62\x8e\x2d\x50\x7d\x3f\x6a\xa7\x43\ \x6f\xac\x48\x74\xaa\x41\x6e\xa7\x2f\x5c\x96\x25\x4e\x86\x1d\x43\ \x77\x15\x33\x60\x15\x2b\x4f\x19\x2a\x46\x31\x41\x55\x23\x30\x3a\ \x49\x51\x59\xb6\xbf\xce\xcc\xda\xf0\xc4\xd7\xf1\xb8\xce\xe9\xbc\ \xd4\xf0\xbd\xd6\xf0\xbc\xd5\xef\xbb\xd4\xee\xbc\xd5\xee\xbc\xd5\ \xef\xb8\xd3\xed\xb7\xd2\xec\xbb\xd5\xef\xba\xd5\xef\xb9\xd7\xf0\ \xb7\xd5\xee\xba\xd7\xf0\xbf\xd9\xf3\xc7\xde\xf8\xc2\xda\xf4\xbd\ \xd8\xf2\xbf\xd8\xf2\xc2\xda\xf5\xc3\xdb\xf7\xc0\xd8\xf5\xc0\xd8\ \xf4\xbb\xd6\xf2\xbc\xd7\xf2\xbc\xd7\xf2\xb9\xd5\xf3\xb8\xd4\xee\ \xc1\xda\xf4\xc1\xda\xf4\xc3\xdc\xf6\xc2\xda\xf4\xc0\xda\xf4\xc2\ \xdd\xf7\xc1\xdc\xf6\xc0\xdb\xf5\xbf\xda\xf4\xbd\xd8\xf3\xba\xd6\ \xf0\xbf\xda\xf3\xc1\xda\xf3\xbd\xd9\xf6\x8e\xa7\xd0\x35\x4a\x68\ \x21\x2d\x39\x2c\x32\x3a\x9f\x9b\xa1\xcf\xcd\xd5\x66\x75\x8f\x9e\ \xb5\xda\xb3\xcc\xf6\xb2\xc9\xf3\xb0\xc5\xf5\xb2\xc6\xf5\xab\xc0\ \xef\xa7\xbd\xed\xa7\xbd\xed\xa4\xbb\xec\xa2\xba\xea\xa4\xbb\xe9\ \xa6\xbd\xea\xa1\xb9\xea\xa0\xba\xee\xa0\xb9\xee\xa4\xbf\xf2\xa4\ \xbe\xf0\xa4\xbb\xed\xa7\xbe\xef\xa7\xbd\xee\xa9\xbe\xf1\xa8\xbb\ \xef\xb0\xc3\xf6\xb0\xc7\xf6\xaf\xc8\xf6\xa8\xc2\xf1\xab\xc5\xf3\ \xaa\xc3\xf2\xaa\xc1\xf0\xab\xc4\xf0\xaf\xc7\xf4\xac\xc3\xf0\xab\ \xc2\xf0\xaf\xc4\xf2\xaa\xc0\xf2\x9a\xb0\xec\x45\x56\x94\x25\x34\ \x67\x33\x4b\x70\x47\x5f\x77\x2b\x3c\x4b\x2f\x3b\x47\x28\x35\x3e\ \x26\x32\x3d\x26\x32\x3d\x25\x31\x3c\x26\x32\x3e\x27\x32\x3a\x27\ \x32\x3a\x27\x32\x3a\x26\x31\x39\x26\x31\x39\x25\x30\x39\x28\x33\ \x3b\x26\x30\x3a\x26\x30\x3b\x23\x30\x38\x25\x32\x3b\x23\x2f\x39\ \x23\x2f\x39\x22\x2f\x37\x21\x2e\x38\x20\x2c\x36\x22\x2e\x36\x21\ \x2d\x34\x21\x2d\x33\x1e\x29\x31\x1f\x2a\x31\x1e\x29\x2e\x1d\x28\ \x2b\x1c\x27\x29\x1d\x26\x29\x1e\x28\x2c\x1c\x26\x2d\x1d\x27\x2e\ \x1e\x29\x2f\x21\x2c\x34\x20\x2c\x36\x22\x2e\x3a\x24\x31\x3e\x25\ \x32\x40\x22\x31\x3b\x24\x34\x3b\x24\x34\x3b\x25\x35\x3c\x22\x33\ \x3c\x23\x33\x3c\x23\x33\x3c\x23\x32\x3c\x25\x34\x3d\x26\x36\x3d\ \x26\x35\x3e\x26\x35\x40\x00\x00\x00\x42\x7c\xbb\x52\x8d\xc8\x5b\ \x90\xc3\x45\x6f\x9c\x2b\x4c\x7a\x3c\x67\x9e\x40\x6f\xa8\x47\x75\ \xac\x45\x74\xac\x34\x60\x9c\x25\x51\x8d\x22\x4c\x84\x1a\x3b\x6e\ \x19\x34\x5d\x1a\x30\x54\x34\x46\x60\x2c\x37\x41\x43\x50\x56\xa7\ \xb0\xbc\xcd\xda\xf2\xc6\xd8\xf3\xbd\xd1\xeb\xbe\xd5\xef\xbd\xd6\ \xef\xbe\xd8\xf0\xbd\xd6\xf0\xb9\xd3\xed\xbd\xd6\xf0\xb9\xd4\xee\ \xb6\xd1\xeb\xbb\xd5\xf0\xb9\xd5\xee\xbb\xd8\xf0\xbc\xd8\xf0\xbd\ \xd8\xf0\xc0\xda\xf2\xc8\xdf\xf9\xc1\xd9\xf3\xbe\xd8\xf2\xbd\xd8\ \xf2\xbe\xda\xf3\xbf\xda\xf5\xbf\xd9\xf5\xbd\xd7\xf3\xb6\xd2\xf0\ \xba\xd5\xf2\xbe\xd9\xf4\xbd\xd9\xf4\xba\xd4\xef\xc1\xda\xf4\xc6\ \xdd\xf7\xc5\xdd\xf7\xc4\xdd\xf7\xc0\xdb\xf5\xc1\xdc\xf6\xbf\xda\ \xf4\xc3\xdd\xf7\xc2\xdb\xf5\xbd\xd7\xf1\xbc\xd7\xf1\xc0\xda\xf4\ \xc3\xdb\xf4\xbe\xda\xf7\x93\xad\xd0\x34\x45\x64\x23\x2c\x3a\x30\ \x38\x3e\x9a\x96\x97\xcd\xcf\xd6\x65\x75\x92\xa4\xb9\xe0\xb6\xcb\ \xf7\xb2\xc8\xf2\xb4\xca\xf5\xb2\xc7\xf4\xaa\xbf\xee\xa6\xbd\xed\ \xa7\xbd\xed\xa5\xbc\xec\xa4\xbc\xeb\xa6\xbd\xeb\xa6\xbd\xeb\xa2\ \xb9\xea\xa2\xb8\xec\xa4\xba\xee\xa5\xbd\xf0\xa7\xbe\xf0\xa7\xbe\ \xf0\xa8\xbf\xef\xa7\xbe\xef\xa7\xbc\xef\xa7\xbb\xee\xaf\xc3\xf4\ \xaf\xc6\xf6\xaf\xc6\xf6\xac\xc3\xf3\xaa\xc4\xf3\xaa\xc3\xf3\xad\ \xc4\xf2\xad\xc5\xf2\xaf\xc6\xf3\xab\xc3\xef\xab\xc3\xf0\xad\xc3\ \xf1\xa5\xbd\xee\x92\xa4\xe3\x39\x47\x85\x2b\x3e\x6e\x4a\x64\x88\ \x49\x62\x7a\x33\x42\x53\x32\x42\x4e\x2e\x3e\x47\x2c\x3a\x43\x2b\ \x38\x44\x2a\x37\x45\x2b\x37\x44\x28\x38\x44\x27\x37\x42\x26\x35\ \x41\x28\x38\x43\x26\x36\x40\x27\x38\x41\x25\x36\x3f\x27\x37\x43\ \x29\x39\x45\x28\x36\x42\x27\x35\x41\x26\x34\x3f\x27\x36\x3f\x25\ \x34\x3d\x25\x34\x3d\x24\x33\x3c\x22\x31\x3a\x23\x32\x39\x23\x30\ \x38\x25\x30\x38\x22\x2d\x34\x1f\x2b\x31\x1d\x29\x2d\x1c\x28\x2c\ \x1e\x29\x2d\x1e\x27\x2c\x1d\x27\x2e\x20\x2a\x33\x1f\x2b\x34\x22\ \x30\x3b\x23\x32\x3e\x23\x32\x3f\x26\x36\x46\x27\x38\x45\x28\x39\ \x46\x28\x39\x45\x27\x39\x44\x28\x39\x45\x27\x3a\x47\x28\x38\x45\ \x27\x38\x45\x26\x37\x44\x29\x38\x44\x29\x37\x43\x28\x37\x43\x2a\ \x3a\x47\x00\x00\x00\x3e\x76\xb5\x4e\x88\xc4\x5a\x91\xc4\x51\x7c\ \xa9\x2a\x4c\x79\x36\x62\x94\x41\x72\xaa\x46\x75\xac\x48\x76\xb0\ \x3d\x69\xa6\x2d\x59\x95\x28\x55\x8e\x20\x48\x80\x1e\x40\x6c\x21\ \x3c\x61\x31\x46\x63\x2b\x3a\x46\x44\x51\x57\x93\x9c\xa7\xce\xdb\ \xf1\xc3\xd6\xf1\xbc\xd1\xea\xb9\xd1\xeb\xbb\xd5\xed\xbc\xd6\xee\ \xbd\xd7\xf0\xbe\xd7\xf1\xbc\xd5\xef\xba\xd4\xee\xb7\xd2\xec\xb9\ \xd4\xee\xba\xd5\xef\xbe\xd9\xf3\xbb\xd6\xf1\xbf\xd8\xf2\xc0\xd9\ \xf3\xc6\xdd\xf7\xc0\xd9\xf3\xbe\xd7\xf1\xbe\xd9\xf3\xbd\xd8\xf2\ \xbf\xd8\xf4\xbd\xd8\xf3\xbf\xd9\xf5\xb7\xd3\xef\xbb\xd5\xf0\xbe\ \xd9\xf3\xbf\xda\xf5\xb8\xd3\xee\xc2\xdb\xf5\xc4\xdb\xf5\xc6\xdd\ \xf7\xc3\xdc\xf6\xc1\xda\xf4\xbf\xda\xf4\xbe\xd9\xf2\xc1\xdb\xf4\ \xc2\xdc\xf5\xbf\xd9\xf2\xbe\xd9\xf2\xc1\xda\xf4\xc2\xda\xf3\xbd\ \xda\xf5\x9a\xb5\xd4\x31\x43\x60\x26\x31\x3d\x32\x3a\x40\x9d\x99\ \x9b\xd1\xcf\xd9\x69\x7c\x97\xa6\xbb\xe1\xb8\xcd\xf7\xb3\xc9\xf1\ \xb7\xca\xf5\xb2\xc7\xf1\xac\xc2\xef\xa9\xc0\xee\xa9\xc0\xf0\xa6\ \xbd\xec\xa5\xbd\xeb\xa5\xbc\xe9\xa6\xbd\xec\xa4\xba\xea\xa5\xbc\ \xee\xa4\xbb\xee\xa9\xc0\xf2\xa8\xbf\xf1\xa4\xbb\xec\xa8\xbf\xef\ \xa7\xbe\xef\xa8\xbd\xf0\xa6\xbb\xee\xb1\xc4\xf5\xb0\xc7\xf6\xae\ \xc6\xf5\xae\xc6\xf5\xac\xc6\xf5\xaa\xc3\xf2\xad\xc4\xf3\xaf\xc6\ \xf3\xb1\xc8\xf5\xab\xc3\xf0\xa9\xc1\xef\xab\xc1\xef\xa3\xba\xed\ \x88\x99\xd9\x2b\x3b\x77\x33\x49\x76\x52\x6e\x8f\x49\x62\x78\x37\ \x48\x58\x36\x48\x53\x33\x45\x4f\x2d\x3e\x49\x2d\x3c\x49\x2d\x3c\ \x4a\x2d\x3c\x4a\x2b\x3b\x47\x2d\x3d\x48\x2b\x3b\x47\x2c\x3c\x48\ \x2b\x3c\x47\x2b\x3c\x46\x2c\x3c\x48\x2b\x3b\x48\x2b\x3b\x48\x2c\ \x3c\x48\x2c\x3b\x48\x2a\x39\x46\x29\x38\x44\x28\x37\x42\x26\x36\ \x43\x26\x35\x42\x27\x37\x42\x26\x35\x3f\x25\x33\x3e\x23\x2f\x3a\ \x22\x2e\x38\x20\x2c\x34\x1f\x2a\x31\x1e\x29\x30\x1f\x29\x30\x20\ \x2a\x30\x21\x2a\x32\x21\x2a\x34\x21\x2f\x3a\x24\x33\x3f\x25\x35\ \x42\x28\x39\x46\x2b\x3b\x49\x2b\x3c\x4a\x2a\x3c\x49\x2c\x3e\x4b\ \x2c\x3e\x4c\x2c\x3f\x4d\x2c\x3e\x4d\x2a\x3c\x4b\x2d\x3f\x4d\x2d\ \x3f\x4d\x2d\x3d\x4c\x2e\x3d\x4c\x2d\x3e\x4c\x2d\x3e\x4c\x00\x00\ \x00\x36\x6e\xac\x4f\x89\xc6\x5b\x93\xc8\x5a\x87\xb4\x2e\x53\x7d\ \x34\x5d\x8d\x42\x74\xab\x48\x78\xb2\x4b\x78\xb4\x41\x6d\xac\x32\ \x5f\x9d\x2a\x58\x94\x26\x54\x92\x20\x47\x79\x23\x42\x69\x31\x49\ \x6a\x2b\x3d\x4d\x43\x4f\x57\x7e\x87\x92\xcd\xda\xf0\xc0\xd4\xef\ \xb8\xce\xe7\xb8\xd2\xeb\xb9\xd3\xea\xbf\xd9\xf0\xc0\xd9\xf2\xbe\ \xd7\xf1\xbe\xd6\xf0\xbb\xd6\xf0\xb7\xd2\xec\xb8\xd3\xed\xba\xd5\ \xef\xbc\xd7\xf1\xba\xd5\xef\xbf\xd8\xf2\xc1\xda\xf4\xc4\xdd\xf7\ \xc1\xda\xf4\xbe\xd8\xf2\xbe\xd9\xf3\xbf\xda\xf4\xc1\xd9\xf5\xc1\ \xda\xf6\xc0\xdb\xf6\xbc\xd7\xf2\xbe\xd8\xf1\xbe\xd8\xf3\xbd\xda\ \xf5\xb8\xd4\xef\xbf\xd9\xf3\xc3\xdb\xf5\xc4\xdd\xf7\xc2\xdb\xf5\ \xc2\xdb\xf5\xc1\xdb\xf4\xbe\xda\xf2\xc1\xdc\xf4\xc3\xdd\xf5\xc1\ \xdc\xf4\xc0\xdc\xf4\xc1\xda\xf5\xc2\xda\xf4\xbc\xd9\xf4\x9b\xb6\ \xd6\x2f\x42\x5f\x24\x30\x3c\x31\x38\x3f\x99\x94\x95\xd3\xd1\xdc\ \x6f\x81\x9d\xa7\xbe\xe1\xba\xd1\xf6\xb5\xcc\xf2\xb8\xcc\xf6\xb3\ \xc8\xf1\xaf\xc5\xef\xaa\xc1\xef\xab\xc2\xf0\xa8\xc0\xee\xa6\xbf\ \xeb\xa8\xbf\xeb\xa9\xc0\xed\xa6\xbd\xec\xa6\xbd\xed\xa6\xbd\xef\ \xaa\xc1\xf1\xa7\xbe\xee\xa5\xbc\xec\xa8\xbf\xef\xa8\xbe\xee\xa9\ \xbe\xf1\xa7\xbc\xef\xb1\xc7\xf6\xb1\xc9\xf7\xae\xc6\xf4\xaf\xc7\ \xf5\xae\xc8\xf6\xa9\xc2\xf0\xad\xc5\xf3\xb0\xc7\xf4\xb0\xc7\xf4\ \xab\xc2\xf0\xa7\xbf\xee\xab\xc1\xf0\x9f\xb7\xed\x77\x8a\xcb\x21\ \x34\x6d\x37\x4e\x78\x57\x73\x92\x49\x62\x78\x39\x4c\x5b\x36\x4b\ \x56\x33\x47\x54\x2f\x41\x4e\x2d\x3f\x4d\x2e\x3e\x4e\x2f\x3f\x4f\ \x30\x42\x4f\x2e\x40\x4d\x30\x42\x4f\x2f\x40\x4e\x2d\x3f\x4c\x2f\ \x40\x4d\x2e\x40\x4d\x2e\x40\x4d\x2f\x41\x4e\x2f\x41\x4e\x2d\x3f\ \x4c\x2e\x40\x4d\x2e\x3f\x4d\x2c\x3d\x4b\x2b\x3b\x4b\x2b\x3b\x49\ \x28\x38\x46\x27\x37\x45\x26\x36\x43\x25\x33\x41\x22\x31\x3d\x21\ \x2e\x39\x1f\x2b\x35\x1f\x2a\x33\x1f\x29\x32\x1f\x29\x32\x21\x2b\ \x33\x21\x2c\x37\x23\x30\x3d\x24\x33\x40\x28\x38\x46\x2c\x3d\x4a\ \x2c\x40\x4d\x2f\x42\x4f\x30\x44\x51\x2e\x41\x50\x31\x43\x54\x30\ \x42\x53\x2f\x44\x53\x2e\x43\x52\x2f\x44\x53\x2e\x43\x52\x30\x44\ \x54\x2d\x3f\x51\x30\x43\x53\x2f\x43\x52\x00\x00\x00\x34\x6b\xa9\ \x4d\x87\xc5\x5f\x97\xcf\x61\x92\xc2\x35\x5e\x88\x2d\x54\x85\x42\ \x70\xaa\x46\x78\xb4\x4b\x7b\xb9\x48\x79\xb7\x3b\x6d\xac\x2f\x62\ \xa1\x2d\x60\xa0\x2c\x5b\x92\x2f\x59\x8b\x3e\x5c\x85\x2e\x41\x57\ \x4b\x56\x60\x79\x82\x8c\xca\xd9\xec\xbf\xd5\xf0\xb8\xcf\xe9\xba\ \xd3\xec\xb9\xd5\xea\xbd\xd8\xee\xbd\xd6\xee\xbf\xd7\xf1\xbd\xd6\ \xf0\xbd\xd8\xf2\xbb\xd6\xf0\xb9\xd4\xee\xba\xd5\xef\xbe\xd9\xf3\ \xbb\xd6\xf0\xbd\xd6\xf0\xc0\xd9\xf3\xc2\xdb\xf5\xc1\xda\xf4\xbe\ \xd7\xf1\xbf\xd8\xf2\xc1\xda\xf4\xc1\xd9\xf5\xc1\xd9\xf5\xc0\xda\ \xf4\xbf\xda\xf4\xbe\xd8\xf2\xbe\xd9\xf3\xbc\xd8\xf3\xb8\xd5\xf0\ \xbd\xd8\xf2\xc1\xdb\xf5\xc5\xde\xf8\xc3\xdc\xf6\xc3\xdc\xf6\xc1\ \xdb\xf4\xbf\xdb\xf3\xc3\xdd\xf5\xc2\xdc\xf4\xbf\xda\xf2\xbe\xda\ \xf2\xc0\xda\xf4\xc2\xda\xf4\xbe\xdb\xf7\x9d\xb8\xd8\x30\x42\x60\ \x26\x32\x40\x2b\x32\x3a\x8f\x8b\x8c\xd3\xd2\xdc\x72\x84\x9d\xab\ \xc0\xe2\xb9\xd1\xf5\xb7\xcf\xf3\xb7\xcb\xf6\xb2\xc9\xf0\xaf\xc6\ \xef\xad\xc4\xf0\xae\xc5\xf2\xaa\xc3\xef\xa7\xbf\xe9\xaa\xc1\xeb\ \xad\xc2\xed\xaa\xc1\xee\xa8\xbf\xee\xa9\xc1\xef\xae\xc5\xf4\xab\ \xc2\xf2\xa7\xbe\xee\xaa\xc1\xf0\xa9\xc0\xef\xaa\xbf\xf2\xaa\xc0\ \xf1\xb0\xc6\xf5\xb1\xc9\xf7\xae\xc6\xf4\xaf\xc7\xf5\xae\xc7\xf5\ \xa9\xc3\xf1\xae\xc8\xf5\xaf\xc8\xf4\xad\xc6\xf2\xa9\xc1\xee\xa5\ \xbe\xed\xa7\xbe\xef\x99\xb0\xe7\x61\x73\xb5\x21\x33\x6a\x38\x50\ \x77\x52\x6d\x8c\x38\x4f\x65\x38\x4b\x5b\x33\x4a\x58\x30\x48\x58\ \x2d\x43\x53\x2c\x40\x51\x2e\x42\x53\x2f\x43\x54\x30\x44\x55\x2f\ \x43\x54\x30\x44\x55\x31\x45\x55\x30\x44\x54\x31\x43\x54\x34\x46\ \x56\x31\x43\x54\x32\x44\x54\x31\x44\x53\x30\x43\x52\x31\x42\x53\ \x30\x42\x53\x2e\x40\x50\x2b\x3e\x4e\x2b\x3e\x4d\x2c\x3c\x4c\x29\ \x39\x49\x28\x38\x47\x24\x34\x42\x21\x31\x3e\x1e\x2d\x3a\x1e\x2b\ \x37\x1e\x2a\x34\x1e\x29\x35\x1f\x29\x32\x1f\x29\x33\x22\x2e\x39\ \x23\x31\x3e\x24\x33\x41\x2b\x3b\x4b\x2a\x3d\x4d\x2e\x42\x53\x2e\ \x44\x55\x30\x47\x56\x31\x48\x58\x31\x48\x58\x30\x47\x57\x2f\x45\ \x57\x31\x46\x58\x2f\x45\x57\x2c\x43\x55\x2f\x45\x58\x31\x46\x5a\ \x30\x45\x57\x30\x46\x58\x00\x00\x00\x30\x67\xa4\x4e\x87\xc4\x5c\ \x96\xd0\x5f\x96\xc8\x3a\x68\x91\x2a\x4f\x81\x41\x6b\xa7\x44\x76\ \xb4\x4c\x7e\xbc\x4e\x83\xc1\x49\x7f\xbe\x3b\x72\xb3\x3a\x72\xb0\ \x3d\x7a\xb5\x41\x7a\xb6\x4d\x79\xaa\x26\x3f\x59\x3a\x45\x4e\x5f\ \x69\x72\xc7\xd7\xea\xbc\xd2\xec\xb8\xd0\xea\xb8\xd3\xeb\xba\xd5\ \xeb\xc1\xdc\xf1\xc2\xda\xf2\xc1\xda\xf3\xc2\xdb\xf5\xbe\xd9\xf2\ \xbb\xd7\xf0\xbd\xd8\xf2\xbd\xd8\xf2\xbc\xd7\xf2\xbb\xd6\xf0\xbd\ \xd6\xf1\xbe\xd6\xf1\xc0\xd9\xf3\xc1\xda\xf4\xbf\xd8\xf2\xbf\xd8\ \xf2\xc2\xdb\xf6\xc2\xd9\xf6\xc0\xd9\xf4\xbf\xd8\xf2\xbf\xd9\xf3\ \xbe\xd8\xf2\xbe\xd8\xf3\xba\xd7\xf2\xb7\xd4\xef\xbd\xda\xf3\xc2\ \xdb\xf5\xc5\xde\xf8\xc4\xdd\xf7\xc3\xdc\xf6\xc2\xdb\xf5\xbe\xd9\ \xf3\xc2\xdb\xf5\xc2\xdb\xf5\xbf\xd9\xf3\xbd\xd8\xf2\xc1\xda\xf4\ \xc2\xd9\xf4\xbe\xda\xf5\xa0\xbb\xdb\x31\x43\x62\x28\x34\x45\x2c\ \x34\x3d\x94\x8e\x90\xd5\xd2\xdb\x72\x81\x9c\xad\xc0\xe3\xba\xd1\ \xf5\xb5\xce\xf3\xb4\xcb\xf7\xb3\xca\xef\xb2\xc9\xf0\xae\xc7\xf0\ \xaf\xc8\xf1\xac\xc4\xee\xa9\xc2\xea\xae\xc4\xed\xaf\xc5\xee\xad\ \xc3\xef\xab\xc2\xf0\xad\xc5\xf3\xaf\xc7\xf4\xaa\xc2\xf1\xa6\xbd\ \xed\xab\xc2\xf1\xaa\xc1\xf0\xa9\xbf\xef\xac\xc2\xf2\xb3\xca\xf8\ \xb2\xca\xf8\xad\xc5\xf3\xaf\xc7\xf5\xac\xc6\xf4\xa9\xc3\xf1\xae\ \xc8\xf4\xaf\xc8\xf4\xad\xc6\xf2\xa6\xbf\xed\xa2\xbc\xeb\xa0\xbb\ \xeb\x94\xac\xe6\x4f\x61\xa4\x21\x32\x67\x3a\x51\x77\x55\x6f\x8f\ \x30\x48\x5f\x34\x47\x59\x30\x48\x59\x2f\x47\x58\x2b\x43\x54\x2e\ \x44\x56\x2f\x45\x57\x2f\x44\x57\x30\x46\x57\x30\x45\x57\x30\x45\ \x56\x30\x46\x57\x31\x46\x58\x32\x46\x58\x34\x48\x5a\x33\x47\x59\ \x32\x47\x57\x33\x47\x57\x31\x45\x56\x30\x44\x56\x30\x44\x56\x2f\ \x43\x55\x2f\x43\x53\x2e\x41\x50\x2c\x3f\x4e\x2a\x3d\x4b\x28\x3a\ \x47\x24\x37\x44\x21\x32\x3f\x1e\x2f\x3a\x1c\x2a\x36\x1c\x29\x34\ \x1b\x27\x34\x1e\x29\x35\x20\x2b\x36\x1f\x2c\x39\x21\x30\x3d\x25\ \x36\x42\x29\x3a\x4a\x2d\x41\x52\x30\x45\x59\x30\x47\x5c\x30\x48\ \x5b\x31\x49\x5c\x31\x4a\x5b\x32\x4b\x5b\x34\x4b\x5f\x31\x49\x5d\ \x32\x49\x5e\x30\x49\x5d\x30\x4a\x5d\x30\x49\x5c\x32\x4a\x5c\x31\ \x49\x5c\x00\x00\x00\x2e\x64\xa1\x4b\x82\xbf\x56\x92\xce\x5c\x94\ \xce\x3f\x6e\x9f\x2b\x51\x80\x3c\x6b\xa3\x3f\x74\xb2\x46\x7d\xb9\ \x4e\x84\xc3\x4c\x81\xc2\x45\x7c\xbb\x48\x82\xbe\x4e\x8a\xc8\x54\ \x8d\xca\x58\x8e\xc8\x2b\x46\x68\x27\x35\x3f\x50\x5b\x64\xb5\xc5\ \xd9\xbb\xd2\xeb\xb9\xd3\xeb\xb9\xd3\xeb\xbe\xd9\xee\xc2\xda\xf0\ \xc4\xdc\xf2\xc1\xd8\xf3\xc2\xd8\xf4\xc0\xd8\xf4\xbd\xd6\xf2\xbd\ \xd8\xf3\xba\xd5\xf0\xbb\xd6\xf1\xb9\xd3\xef\xba\xd6\xf0\xbc\xd7\ \xf1\xc2\xdb\xf5\xc1\xda\xf4\xbd\xd7\xf1\xbf\xdb\xf5\xc0\xdb\xf5\ \xc2\xdb\xf5\xc2\xdb\xf5\xc1\xda\xf4\xc2\xd9\xf3\xc0\xd7\xf1\xc3\ \xdc\xf6\xbc\xda\xf3\xb6\xd4\xed\xbf\xd9\xf3\xc2\xdb\xf5\xc4\xdd\ \xf7\xc4\xdd\xf7\xc3\xdc\xf6\xc2\xdb\xf5\xc2\xdd\xf7\xc0\xda\xf4\ \xc1\xda\xf4\xbf\xd9\xf3\xbc\xd7\xf1\xc0\xda\xf3\xc3\xdc\xf3\xbf\ \xdb\xf6\xa5\xbf\xe0\x2c\x41\x60\x2b\x3a\x48\x28\x31\x39\x90\x8d\ \x8f\xd1\xcf\xda\x70\x83\x9e\xaa\xbf\xe3\xb9\xd1\xf7\xb4\xce\xf2\ \xb5\xcd\xf6\xb3\xca\xf0\xb2\xc8\xf1\xae\xc6\xf1\xae\xc6\xf0\xac\ \xc5\xef\xaa\xc2\xec\xaf\xc7\xf0\xad\xc6\xf0\xac\xc3\xef\xaa\xc3\ \xef\xab\xc5\xf3\xab\xc6\xf5\xa8\xc3\xf2\xa6\xbd\xed\xac\xc4\xf1\ \xac\xc3\xf1\xac\xc1\xef\xb0\xc6\xf4\xb4\xcc\xf8\xb3\xcc\xf8\xaf\ \xc8\xf4\xb1\xca\xf6\xac\xc7\xf3\xac\xc7\xf2\xb1\xc9\xf2\xb1\xca\ \xf4\xae\xc7\xf1\xa6\xc2\xed\xa6\xbf\xec\xa1\xba\xed\x8c\xa4\xe4\ \x41\x53\x93\x26\x37\x6a\x3a\x53\x79\x48\x61\x7d\x31\x46\x5b\x33\ \x46\x5b\x31\x45\x5b\x2e\x46\x5a\x2d\x45\x59\x2d\x43\x58\x30\x45\ \x5b\x32\x47\x5c\x31\x46\x5b\x32\x48\x5c\x33\x49\x5b\x33\x49\x5a\ \x32\x49\x59\x32\x49\x5b\x33\x49\x5e\x32\x49\x60\x32\x4b\x5f\x32\ \x4a\x5c\x32\x48\x5a\x32\x48\x59\x31\x48\x58\x31\x48\x58\x31\x46\ \x56\x30\x44\x55\x2c\x40\x50\x2d\x3f\x4f\x2c\x3d\x4d\x28\x39\x48\ \x22\x32\x42\x1f\x2f\x3c\x1d\x2b\x38\x1e\x29\x35\x1c\x27\x34\x1a\ \x29\x35\x1b\x2b\x38\x1f\x2f\x3c\x23\x32\x3f\x25\x38\x46\x2a\x3e\ \x4e\x2d\x44\x57\x30\x48\x5c\x31\x4a\x5e\x34\x4c\x61\x36\x4d\x62\ \x38\x4f\x65\x34\x4b\x61\x36\x4e\x64\x35\x4d\x64\x36\x4e\x66\x36\ \x4e\x65\x35\x4d\x63\x35\x4d\x62\x35\x4d\x62\x35\x4d\x63\x00\x00\ \x00\x30\x64\xa2\x45\x7b\xb9\x51\x8a\xc8\x5c\x93\xcc\x4c\x7a\xac\ \x2a\x52\x81\x39\x64\x9f\x3e\x72\xb1\x44\x77\xb5\x4d\x80\xbd\x46\ \x7b\xb6\x4b\x82\xbb\x58\x91\xc8\x59\x92\xcf\x5b\x96\xd2\x5d\x96\ \xd1\x36\x55\x7b\x26\x34\x3f\x4f\x5a\x63\x9e\xad\xbe\xbe\xd5\xec\ \xbb\xd4\xec\xb6\xd0\xe7\xbc\xd7\xec\xbe\xd6\xec\xc5\xdd\xf4\xc3\ \xd9\xf4\xc1\xd8\xf5\xc1\xd9\xf5\xbc\xd7\xf2\xbd\xd8\xf3\xb9\xd6\ \xf1\xbc\xd8\xf3\xb9\xd4\xef\xba\xd5\xef\xbf\xd8\xf2\xc2\xda\xf6\ \xc1\xd9\xf5\xbf\xd7\xf3\xbe\xd8\xf3\xbf\xda\xf4\xc1\xda\xf4\xc1\ \xda\xf4\xc0\xd9\xf3\xc0\xd9\xf3\xc1\xd8\xf2\xc3\xdc\xf6\xc0\xdc\ \xf6\xb7\xd4\xed\xbf\xd9\xf3\xc2\xdb\xf5\xc3\xdc\xf6\xc3\xdc\xf6\ \xc2\xdb\xf5\xc4\xdd\xf7\xc2\xdd\xf7\xc0\xd9\xf3\xc1\xda\xf4\xc0\ \xda\xf4\xbc\xd7\xf1\xbf\xd9\xf3\xc2\xdb\xf2\xbe\xda\xf4\xa5\xc0\ \xe0\x2a\x40\x60\x2c\x3b\x4a\x2e\x37\x40\x8b\x87\x8b\xd5\xd3\xde\ \x74\x86\xa3\xa7\xbc\xe0\xb8\xd0\xf6\xb5\xd0\xf3\xb5\xce\xf5\xb1\ \xc9\xee\xb0\xc8\xf0\xae\xc7\xf1\xae\xc6\xf1\xad\xc6\xef\xab\xc3\ \xed\xad\xc7\xef\xae\xc8\xf0\xaa\xc3\xed\xaa\xc4\xf0\xa8\xc5\xf2\ \xa9\xc4\xf3\xa5\xc2\xf0\xa7\xc1\xef\xad\xc5\xf3\xad\xc5\xf2\xac\ \xc3\xf0\xb1\xc9\xf3\xb3\xcc\xf7\xb4\xcd\xf7\xb2\xcb\xf5\xb0\xc9\ \xf4\xac\xc7\xf3\xac\xc7\xf3\xaf\xcb\xf4\xb3\xcc\xf6\xae\xc7\xf1\ \xac\xc5\xf1\xac\xc4\xf1\xa3\xbb\xee\x86\x9d\xdb\x30\x41\x7e\x2a\ \x3c\x6c\x42\x5b\x7f\x41\x5b\x75\x2e\x45\x59\x30\x45\x5a\x30\x46\ \x5c\x2e\x46\x5a\x2d\x44\x5a\x2b\x42\x58\x31\x46\x5c\x33\x46\x5f\ \x33\x48\x60\x33\x48\x5f\x34\x49\x5e\x34\x4a\x5c\x34\x4a\x5c\x36\ \x4c\x5f\x35\x4b\x64\x36\x4d\x64\x33\x4c\x60\x36\x4d\x61\x36\x4b\ \x5f\x35\x4a\x5f\x35\x4b\x5e\x33\x49\x5a\x31\x47\x59\x2e\x44\x56\ \x2f\x43\x55\x2e\x41\x51\x2c\x3e\x4f\x26\x39\x48\x26\x37\x46\x21\ \x30\x3e\x1f\x2c\x39\x1d\x2a\x36\x1c\x29\x35\x1a\x2a\x36\x1e\x2e\ \x3a\x21\x31\x3e\x24\x34\x42\x27\x39\x48\x2d\x41\x52\x30\x47\x5a\ \x33\x4b\x60\x35\x4d\x63\x37\x4f\x66\x38\x50\x68\x38\x50\x68\x37\ \x4f\x67\x37\x4f\x67\x38\x4f\x69\x36\x4d\x67\x37\x4f\x68\x38\x4f\ \x68\x38\x4e\x67\x36\x4e\x66\x35\x4d\x65\x00\x00\x00\x31\x62\xa1\ \x39\x6e\xad\x4c\x84\xc2\x5f\x97\xd0\x59\x87\xba\x2e\x55\x84\x33\ \x5d\x96\x45\x77\xb6\x4a\x7d\xbb\x52\x85\xc0\x43\x76\xae\x4b\x7e\ \xb4\x59\x92\xc8\x5c\x97\xd2\x5d\x99\xd4\x59\x97\xd5\x3b\x5e\x8a\ \x23\x33\x40\x42\x4d\x56\x7e\x8e\x9b\xc1\xd8\xed\xbc\xd4\xec\xba\ \xd3\xeb\xbc\xd5\xea\xbd\xd6\xed\xc4\xdc\xf5\xbe\xd6\xf1\xbd\xd5\ \xf1\xbb\xd6\xf1\xbb\xd7\xf2\xbb\xd8\xf3\xba\xd7\xf2\xb9\xd6\xf1\ \xba\xd5\xf0\xbe\xd8\xf2\xc1\xda\xf4\xc2\xda\xf6\xc2\xda\xf6\xc0\ \xd9\xf4\xbd\xd8\xf3\xbd\xd8\xf3\xbd\xd8\xf2\xbf\xd9\xf3\xc0\xd9\ \xf3\xc2\xdb\xf4\xc2\xda\xf4\xc0\xd9\xf3\xc1\xdc\xf6\xba\xd6\xf0\ \xbf\xda\xf4\xc1\xdb\xf5\xc2\xdb\xf5\xc4\xdd\xf7\xc3\xdc\xf6\xc3\ \xdd\xf7\xc0\xdb\xf5\xc0\xd9\xf3\xc1\xda\xf4\xbf\xd9\xf3\xbb\xd6\ \xf0\xbe\xd8\xf2\xc1\xd9\xf3\xbc\xd8\xf4\xa4\xbf\xe1\x2c\x42\x64\ \x2f\x3e\x4f\x30\x39\x42\x88\x84\x88\xd2\xd0\xdb\x70\x82\x9d\xa5\ \xb9\xe0\xb7\xce\xf6\xb6\xd0\xf4\xb5\xcf\xf4\xb1\xcb\xef\xb0\xc9\ \xee\xad\xc6\xf0\xae\xc7\xf1\xac\xc7\xf0\xa9\xc6\xef\xac\xc9\xf0\ \xac\xc8\xf0\xa9\xc4\xef\xa9\xc5\xf0\xa7\xc5\xf2\xa4\xc3\xf1\xa5\ \xc3\xf1\xa6\xc1\xef\xab\xc6\xf3\xae\xc8\xf3\xaf\xc7\xf0\xb3\xcd\ \xf5\xb6\xcf\xf7\xb6\xcf\xf8\xb3\xcd\xf6\xb1\xca\xf5\xad\xc9\xf2\ \xae\xca\xf3\xb0\xcc\xf5\xb1\xcd\xf6\xae\xc7\xf2\xae\xc5\xf2\xae\ \xc5\xf2\xa4\xbc\xef\x7a\x91\xce\x2b\x3a\x75\x34\x46\x72\x4d\x67\ \x87\x3a\x55\x6c\x29\x40\x53\x2f\x44\x58\x2c\x44\x59\x2d\x44\x5a\ \x2d\x44\x5a\x2e\x45\x5b\x2f\x45\x5e\x30\x46\x5f\x31\x46\x62\x33\ \x49\x61\x33\x4a\x60\x34\x4c\x5f\x35\x4d\x5f\x36\x4d\x61\x36\x4d\ \x64\x35\x4c\x65\x35\x4e\x64\x36\x4e\x63\x36\x4d\x63\x34\x4b\x61\ \x35\x4c\x61\x33\x4b\x5f\x32\x49\x5d\x31\x47\x5a\x31\x46\x58\x30\ \x43\x56\x2c\x3f\x51\x29\x3c\x4d\x25\x36\x47\x21\x32\x3f\x1e\x2e\ \x3a\x1d\x2c\x38\x1d\x2b\x37\x1d\x2b\x37\x1e\x2e\x3b\x21\x32\x3f\ \x25\x37\x45\x28\x3b\x4c\x2e\x43\x55\x33\x49\x5e\x34\x4c\x62\x36\ \x4f\x67\x38\x51\x6a\x38\x50\x6a\x3a\x52\x6c\x39\x51\x6b\x39\x51\ \x6b\x38\x50\x6a\x38\x50\x6a\x39\x51\x6b\x3a\x51\x6c\x3a\x52\x69\ \x38\x51\x69\x37\x50\x68\x00\x00\x00\x31\x62\xa2\x31\x66\xa7\x46\ \x81\xc0\x5a\x95\xcf\x5e\x8f\xc4\x32\x59\x89\x2f\x57\x8e\x46\x75\ \xb3\x4e\x81\xbf\x54\x89\xc5\x51\x87\xc0\x4c\x84\xbf\x51\x8d\xc6\ \x55\x93\xd1\x53\x93\xcf\x51\x91\xd3\x42\x6b\x9a\x25\x33\x44\x5b\ \x65\x6e\x83\x91\x9c\xc1\xd6\xeb\xbd\xd6\xed\xbc\xd4\xec\xbd\xd5\ \xeb\xbb\xd5\xed\xc1\xd9\xf4\xbc\xd6\xf1\xba\xd5\xf0\xb8\xd4\xef\ \xb6\xd3\xee\xb3\xd1\xec\xb4\xd2\xed\xb5\xd2\xed\xba\xd5\xf0\xbf\ \xd8\xf2\xc0\xd9\xf3\xc1\xd9\xf5\xc1\xda\xf5\xc0\xd9\xf4\xbf\xda\ \xf4\xbf\xda\xf5\xbc\xd7\xf2\xbd\xd8\xf4\xbf\xd8\xf4\xc2\xd9\xf6\ \xc0\xd9\xf4\xc0\xd9\xf3\xc0\xda\xf4\xbd\xd8\xf2\xc0\xdb\xf5\xc2\ \xdb\xf5\xc2\xdb\xf5\xc4\xdd\xf7\xc2\xdb\xf5\xc3\xdc\xf6\xbe\xd9\ \xf3\xc0\xd9\xf3\xc2\xdb\xf5\xbe\xd8\xf2\xbc\xd7\xf2\xbf\xd9\xf3\ \xc2\xda\xf3\xbb\xd8\xf4\xa3\xc0\xe2\x2b\x41\x64\x30\x3e\x50\x35\ \x3d\x48\x86\x82\x86\xce\xcc\xd7\x71\x84\x9d\x9c\xb1\xd5\xb5\xcb\ \xf4\xb6\xd0\xf6\xb6\xd0\xf6\xb3\xcc\xf1\xaf\xc9\xf0\xac\xc5\xf1\ \xad\xc6\xf3\xac\xc6\xf3\xaa\xc3\xef\xac\xc5\xf0\xad\xc6\xf1\xaa\ \xc2\xf0\xa8\xc2\xf0\xa7\xc3\xf1\xa8\xc3\xf3\xa8\xc4\xf3\xa7\xc0\ \xee\xac\xc5\xf2\xb1\xca\xf4\xb3\xcc\xf1\xb9\xd1\xf6\xb9\xd2\xf9\ \xb7\xd2\xf8\xb6\xd0\xf8\xb2\xcd\xf4\xad\xc9\xf2\xaf\xcb\xf4\xb0\ \xcc\xf5\xb4\xcd\xf7\xb0\xc9\xf3\xad\xc7\xf3\xac\xc4\xf2\xa1\xb9\ \xee\x6e\x84\xc2\x29\x39\x72\x38\x4d\x76\x53\x6c\x8a\x33\x4b\x62\ \x2a\x40\x51\x2e\x42\x56\x2e\x43\x58\x2e\x45\x59\x2d\x44\x59\x2e\ \x45\x5b\x2e\x46\x5b\x2f\x47\x5e\x30\x49\x60\x31\x49\x60\x33\x4b\ \x61\x35\x4e\x63\x36\x4f\x62\x36\x4f\x62\x37\x4f\x67\x39\x51\x69\ \x37\x4f\x65\x38\x50\x65\x36\x4e\x64\x35\x4d\x63\x34\x4d\x62\x33\ \x4c\x60\x31\x4a\x5d\x31\x49\x5b\x2f\x46\x58\x31\x46\x57\x2c\x40\ \x52\x28\x3c\x4e\x23\x37\x47\x22\x34\x43\x1e\x2f\x3b\x1c\x2c\x38\ \x1c\x2b\x37\x1e\x2c\x38\x1e\x2e\x3b\x21\x32\x3f\x26\x39\x48\x2b\ \x3e\x4f\x2d\x43\x56\x33\x4a\x60\x35\x4d\x65\x38\x51\x69\x3a\x54\ \x6c\x3b\x55\x6d\x39\x52\x6c\x3b\x54\x6e\x38\x51\x6c\x39\x52\x6c\ \x39\x53\x6c\x3a\x53\x6d\x3a\x53\x6e\x39\x54\x6b\x39\x53\x6b\x39\ \x53\x6b\x00\x00\x00\x31\x64\xa3\x2c\x63\xa4\x40\x7d\xbe\x50\x8e\ \xcc\x5b\x90\xc5\x32\x5b\x8b\x29\x4f\x83\x42\x70\xac\x4e\x81\xbf\ \x51\x87\xc4\x54\x8d\xcb\x4e\x88\xc9\x4e\x8d\xcb\x51\x91\xd2\x4e\ \x90\xcf\x4c\x8f\xd2\x51\x7d\xb0\x32\x41\x55\x64\x6d\x75\x73\x80\ \x8a\xc2\xd7\xeb\xbe\xd6\xee\xbb\xd3\xeb\xbb\xd3\xea\xb9\xd3\xec\ \xbf\xd7\xf3\xbc\xd6\xf1\xb8\xd3\xee\xb4\xd1\xec\xb0\xce\xe9\xb0\ \xce\xe9\xb2\xd0\xeb\xb5\xd2\xed\xbb\xd6\xf1\xbf\xd8\xf3\xbf\xd7\ \xf1\xc0\xd9\xf3\xc1\xda\xf4\xc1\xda\xf4\xbe\xd9\xf3\xbe\xd9\xf4\ \xbd\xd8\xf3\xbd\xd8\xf3\xbf\xd9\xf5\xc1\xd9\xf5\xc0\xd9\xf4\xbf\ \xd8\xf2\xc1\xda\xf4\xbf\xd9\xf3\xbf\xda\xf4\xc2\xdb\xf5\xc1\xda\ \xf4\xc3\xdc\xf6\xc2\xdb\xf4\xc2\xdc\xf6\xc0\xda\xf4\xc2\xdb\xf5\ \xc1\xda\xf4\xbe\xd8\xf2\xbc\xd7\xf1\xbf\xd9\xf3\xc2\xd9\xf3\xbc\ \xd9\xf5\xa6\xc2\xe4\x2c\x42\x65\x32\x40\x53\x37\x40\x4a\x8a\x86\ \x8a\xd1\xcf\xd9\x7a\x8e\xa4\x8a\xa0\xc1\xaf\xc6\xef\xb5\xcd\xf6\ \xb5\xcd\xf6\xb1\xcb\xf2\xae\xc7\xf0\xaa\xc2\xf0\xaa\xc3\xf2\xa8\ \xc0\xef\xa4\xba\xe8\xa4\xba\xe8\xa5\xbb\xe9\xa3\xb8\xe8\xa4\xbb\ \xed\xa6\xbe\xf0\xaa\xc2\xf3\xa7\xbf\xf0\xa9\xc1\xf0\xac\xc4\xf2\ \xb0\xc9\xf2\xb6\xcd\xf2\xbf\xd4\xf8\xbe\xd2\xf8\xb9\xd4\xf9\xb7\ \xd2\xf8\xb2\xcc\xf4\xae\xca\xf3\xaf\xca\xf3\xb4\xcc\xf6\xb2\xcb\ \xf5\xae\xc7\xf2\xad\xc8\xf4\xaa\xc4\xf2\x9e\xb6\xef\x6e\x84\xc4\ \x32\x43\x7c\x42\x5a\x81\x56\x71\x8e\x2c\x43\x5a\x2a\x3e\x50\x2d\ \x41\x54\x2e\x43\x58\x2e\x45\x59\x2e\x46\x5a\x2f\x46\x5a\x2f\x48\ \x5c\x31\x49\x5f\x2f\x48\x5c\x31\x4a\x5e\x33\x4c\x60\x35\x4d\x63\ \x36\x4f\x64\x36\x4f\x64\x37\x4e\x67\x38\x50\x69\x38\x50\x67\x36\ \x4e\x64\x37\x4f\x65\x36\x4e\x63\x35\x4e\x62\x34\x4d\x61\x32\x4c\ \x5d\x30\x48\x5a\x2f\x47\x57\x2d\x44\x54\x2b\x42\x52\x2c\x40\x52\ \x23\x37\x48\x23\x35\x45\x1e\x2f\x3b\x1d\x2e\x39\x1b\x2b\x37\x1f\ \x2d\x39\x20\x30\x3d\x22\x33\x40\x26\x39\x47\x2a\x3d\x4f\x2f\x44\ \x59\x34\x4c\x62\x39\x51\x69\x39\x54\x6a\x3b\x58\x6d\x3b\x58\x6f\ \x3a\x56\x6e\x3a\x56\x6e\x3d\x57\x71\x3b\x55\x6d\x3b\x55\x6d\x3b\ \x54\x6d\x3a\x53\x6d\x3b\x55\x6d\x3a\x54\x6b\x37\x52\x6a\x00\x00\ \x00\x33\x66\xa8\x2a\x60\xa2\x3a\x75\xb7\x46\x84\xc6\x55\x8b\xc5\ \x37\x60\x95\x24\x4b\x7f\x3b\x69\xa3\x4d\x7e\xbd\x53\x86\xc4\x54\ \x8b\xca\x4e\x8c\xca\x54\x93\xcf\x56\x94\xd2\x4e\x91\xd1\x50\x90\ \xcf\x57\x8b\xc6\x2e\x44\x5f\x41\x49\x50\x67\x75\x81\xc4\xd4\xe6\ \xbf\xd6\xf0\xb8\xd3\xea\xb5\xd1\xe9\xb5\xd1\xe9\xb9\xd4\xec\xba\ \xd4\xed\xb8\xd3\xed\xb9\xd5\xef\xb3\xd0\xea\xb6\xd3\xee\xb6\xd3\ \xf0\xb8\xd5\xf1\xba\xd5\xf1\xbc\xd6\xf0\xbd\xd6\xf0\xc0\xd9\xf2\ \xc1\xda\xf4\xbf\xd9\xf3\xbd\xd8\xf3\xbd\xd8\xf3\xbc\xd7\xf2\xbe\ \xd9\xf4\xbe\xd9\xf4\xc1\xd9\xf5\xc1\xd9\xf4\xc1\xda\xf4\xc3\xdc\ \xf6\xc0\xda\xf4\xbd\xd8\xf2\xc1\xdb\xf5\xc2\xdb\xf5\xc2\xdb\xf6\ \xc0\xda\xf5\xc0\xdb\xf7\xbf\xd9\xf4\xbe\xd9\xf4\xbf\xdb\xf6\xbd\ \xd8\xf4\xbb\xd6\xf1\xc0\xd8\xf3\xc1\xda\xf4\xbe\xd9\xf5\xab\xc6\ \xe9\x2d\x45\x68\x31\x3f\x50\x37\x40\x49\x85\x82\x87\xd0\xcc\xd3\ \x89\x98\xaf\x7d\x92\xb1\xa0\xb7\xde\xb4\xcc\xf8\xb2\xc9\xf6\xa9\ \xc0\xef\x98\xae\xd7\x84\x99\xc3\x76\x87\xb4\x5a\x6c\x93\x43\x56\ \x78\x3d\x50\x72\x3d\x4e\x72\x48\x58\x7e\x52\x60\x8a\x5a\x6a\x94\ \x5a\x6e\x93\x5b\x71\x95\x70\x84\xa9\x7c\x8f\xb5\x88\x9c\xc0\xa3\ \xb7\xdb\xb9\xcd\xf1\xbb\xd3\xf7\xba\xd1\xf5\xba\xd2\xf7\xb5\xcd\ \xf6\xb2\xca\xf6\xb3\xcb\xf8\xb3\xce\xf7\xb2\xcd\xf9\xac\xc7\xf4\ \xaa\xc5\xf2\xa5\xc1\xf0\x99\xaf\xec\x6e\x80\xc4\x36\x4e\x7f\x4d\ \x67\x8b\x63\x7f\x9c\x30\x47\x5d\x2c\x3e\x50\x2d\x41\x52\x30\x43\ \x57\x2f\x46\x58\x2f\x47\x5a\x30\x48\x5d\x30\x47\x5d\x2f\x47\x5e\ \x2f\x47\x5d\x31\x49\x5f\x32\x4a\x60\x35\x4d\x63\x36\x4f\x64\x36\ \x51\x66\x35\x4f\x68\x36\x4f\x6a\x35\x4f\x67\x37\x50\x66\x39\x52\ \x66\x37\x4f\x64\x36\x4e\x64\x35\x4c\x62\x34\x4c\x5f\x32\x4a\x5c\ \x30\x48\x5a\x2e\x46\x57\x2c\x42\x54\x2a\x40\x53\x25\x39\x4b\x22\ \x35\x44\x1f\x30\x3d\x1d\x2d\x3a\x1d\x2d\x3b\x1d\x2d\x3a\x21\x31\ \x3d\x22\x33\x40\x25\x39\x48\x2a\x40\x50\x2e\x45\x57\x34\x4c\x61\ \x37\x51\x69\x3b\x56\x6b\x3c\x57\x6d\x3c\x56\x6f\x3c\x55\x6f\x3d\ \x56\x70\x3d\x56\x70\x3e\x57\x71\x3c\x55\x6f\x3d\x56\x70\x3d\x56\ \x70\x3a\x55\x70\x3b\x56\x70\x3a\x55\x6e\x00\x00\x00\x37\x69\xab\ \x29\x5e\x9f\x34\x6c\xae\x43\x7d\xbf\x52\x88\xc3\x41\x6c\xa1\x24\ \x4b\x7c\x34\x60\x97\x4d\x7c\xba\x54\x87\xc6\x54\x8c\xcb\x55\x92\ \xd0\x59\x98\xd4\x56\x94\xd0\x52\x94\xd0\x52\x94\xd3\x57\x92\xd0\ \x26\x41\x61\x30\x3a\x44\x54\x61\x6d\xbe\xcd\xde\xc0\xd7\xf0\xba\ \xd3\xeb\xb8\xd3\xeb\xb9\xd4\xec\xbc\xd6\xee\xbf\xd9\xf2\xbb\xd6\ \xf0\xbc\xd7\xf1\xb8\xd4\xee\xb7\xd4\xef\xb7\xd4\xf0\xb9\xd5\xf1\ \xb9\xd5\xf0\xbc\xd6\xf0\xbe\xd7\xf1\xc0\xd9\xf3\xc1\xda\xf4\xc0\ \xd9\xf4\xbc\xd7\xf2\xbd\xd8\xf3\xbd\xd8\xf3\xbc\xd7\xf2\xbe\xd8\ \xf3\xc1\xd9\xf5\xc0\xd9\xf4\xc2\xdb\xf5\xc2\xdb\xf5\xc2\xda\xf4\ \xc0\xda\xf4\xc3\xdc\xf6\xc0\xd9\xf3\xc1\xda\xf4\xc2\xdb\xf6\xc1\ \xdb\xf6\xbf\xd9\xf4\xbe\xd9\xf4\xbe\xd9\xf4\xbe\xd9\xf4\xbc\xd7\ \xf3\xc0\xd8\xf3\xc1\xd9\xf3\xbe\xd8\xf5\xac\xc8\xea\x31\x49\x6b\ \x2e\x3c\x4c\x34\x3d\x45\x88\x82\x86\xcb\xc3\xc7\x85\x8f\xa1\x7d\ \x91\xab\x83\x9b\xbf\xa5\xbe\xe6\x93\xac\xd3\x54\x62\x85\x20\x2d\ \x48\x10\x1e\x36\x0b\x17\x2e\x0c\x19\x2b\x0f\x1d\x2f\x12\x1f\x31\ \x15\x23\x35\x15\x22\x37\x16\x20\x37\x15\x20\x36\x14\x22\x34\x0f\ \x1e\x2f\x0f\x1c\x2f\x0e\x1b\x2d\x0f\x1c\x2f\x20\x2d\x3f\x47\x55\ \x6a\x57\x68\x80\x59\x6c\x84\x64\x77\x93\x70\x82\xa5\x86\x99\xc2\ \x99\xad\xda\xa6\xbe\xec\xad\xc4\xf3\xac\xc2\xf2\xa9\xbf\xf2\x9b\ \xb6\xec\x87\xa1\xde\x56\x65\xa4\x31\x43\x71\x66\x80\xa3\x74\x90\ \xaf\x38\x4d\x67\x2b\x3d\x51\x2c\x42\x54\x2d\x43\x58\x2f\x47\x5a\ \x2f\x47\x5b\x2e\x47\x5b\x2f\x47\x5d\x30\x48\x5e\x31\x49\x5f\x32\ \x4a\x60\x31\x4a\x60\x32\x4a\x60\x36\x4e\x64\x36\x4e\x66\x37\x4e\ \x67\x38\x4e\x68\x37\x4f\x69\x37\x50\x66\x37\x4f\x64\x35\x4d\x63\ \x37\x4e\x64\x34\x4b\x61\x33\x4c\x60\x31\x4a\x5e\x30\x48\x5b\x2e\ \x46\x58\x2c\x44\x56\x2a\x3f\x51\x26\x3a\x4b\x24\x36\x45\x20\x31\ \x3e\x1e\x2e\x3b\x1f\x2f\x3d\x1f\x2f\x3b\x21\x31\x3d\x24\x35\x42\ \x26\x39\x48\x2d\x41\x50\x2f\x45\x58\x34\x4b\x60\x38\x50\x68\x39\ \x53\x6b\x3b\x54\x6d\x3c\x55\x6f\x3b\x54\x6e\x3c\x54\x70\x3b\x53\ \x6e\x3b\x54\x6e\x3b\x54\x6e\x3b\x54\x6e\x3a\x54\x6f\x39\x53\x6e\ \x3a\x54\x6f\x39\x53\x6d\x00\x00\x00\x38\x6b\xad\x2e\x60\xa2\x30\ \x64\xa7\x3f\x74\xb6\x4f\x84\xc0\x46\x72\xa8\x24\x4c\x7c\x2e\x5a\ \x90\x47\x76\xb4\x52\x86\xc4\x53\x8b\xca\x54\x92\xcf\x5d\x9c\xd6\ \x61\x9e\xd7\x5e\x9e\xd8\x57\x9a\xd6\x57\x96\xd5\x28\x4b\x72\x27\ \x33\x3f\x4d\x57\x63\xb9\xc7\xd6\xc1\xd8\xf0\xbc\xd4\xec\xbb\xd5\ \xed\xbb\xd5\xed\xc0\xd8\xf0\xc2\xdb\xf5\xbf\xd9\xf3\xbc\xd7\xf1\ \xbb\xd6\xf0\xbb\xd6\xf1\xbb\xd6\xf1\xbb\xd5\xf0\xba\xd5\xf0\xbc\ \xd7\xf1\xbd\xd7\xf2\xbf\xd7\xf3\xc2\xda\xf6\xc1\xd9\xf5\xbd\xd7\ \xf3\xbf\xda\xf5\xbe\xd9\xf4\xbc\xd7\xf2\xbf\xda\xf5\xc2\xda\xf6\ \xc0\xd9\xf4\xbf\xd8\xf2\xc1\xda\xf4\xc1\xda\xf4\xc0\xd9\xf3\xc6\ \xdd\xf7\xc2\xd9\xf3\xc1\xda\xf4\xc4\xdd\xf7\xc3\xdc\xf6\xc1\xda\ \xf6\xbe\xd9\xf4\xbf\xda\xf5\xbd\xd8\xf3\xbc\xd8\xf2\xbf\xd8\xf3\ \xbf\xd8\xf2\xbe\xd9\xf4\xac\xc8\xeb\x35\x4d\x6f\x2e\x3c\x4b\x32\ \x3b\x44\x8b\x85\x87\xc2\xb7\xb8\x7d\x84\x91\x8e\x9e\xb2\x6f\x85\ \xa4\x65\x7d\x9c\x31\x44\x61\x0a\x16\x2b\x0b\x19\x26\x0d\x17\x28\ \x0f\x18\x2b\x12\x1c\x2e\x13\x1e\x31\x14\x20\x32\x15\x22\x34\x17\ \x22\x35\x18\x23\x37\x19\x23\x35\x17\x23\x35\x16\x23\x33\x15\x20\ \x2f\x15\x1d\x29\x12\x19\x24\x0c\x14\x1f\x0d\x15\x23\x0e\x17\x2a\ \x11\x18\x2c\x0f\x16\x2b\x0b\x14\x29\x05\x0f\x25\x13\x1d\x35\x33\ \x40\x5e\x5c\x6b\x8d\x7a\x8d\xb8\x8b\xa2\xd6\x87\xa1\xde\x67\x7a\ \xbd\x2f\x3a\x75\x22\x31\x5b\x59\x73\x91\x6a\x87\xa2\x35\x4a\x63\ \x2b\x3d\x51\x2a\x41\x54\x2c\x42\x57\x2c\x44\x58\x2d\x45\x59\x2e\ \x46\x5a\x2e\x47\x5d\x2e\x46\x5c\x30\x47\x5d\x30\x47\x5d\x33\x4a\ \x60\x31\x47\x5d\x32\x49\x60\x33\x4b\x63\x34\x4c\x64\x33\x4b\x63\ \x35\x4c\x65\x33\x4b\x61\x34\x4c\x62\x35\x4c\x62\x33\x4a\x60\x34\ \x4b\x61\x30\x48\x5c\x31\x49\x5d\x2f\x47\x5a\x2e\x44\x56\x2c\x42\ \x54\x2a\x3e\x4f\x26\x3a\x4a\x23\x35\x44\x21\x32\x3f\x1e\x2f\x3c\ \x1e\x2e\x3c\x21\x2e\x3b\x23\x32\x3e\x26\x36\x43\x27\x38\x48\x2b\ \x3d\x4d\x2f\x43\x56\x33\x49\x5e\x36\x4d\x65\x34\x4e\x66\x38\x51\ \x6a\x38\x51\x6b\x37\x50\x6a\x38\x51\x6b\x39\x52\x6b\x38\x51\x6b\ \x37\x50\x6a\x37\x50\x6a\x38\x51\x6b\x36\x4f\x69\x34\x4c\x68\x36\ \x4f\x68\x00\x00\x00\x37\x6b\xaa\x31\x62\xa1\x32\x62\xa2\x3e\x70\ \xaf\x49\x7e\xb8\x4a\x78\xad\x27\x4f\x80\x2a\x53\x88\x46\x73\xaf\ \x50\x84\xc3\x51\x8b\xc9\x55\x92\xcf\x5e\x9d\xd8\x67\xa2\xdb\x66\ \xa2\xd9\x5c\x9c\xd7\x59\x99\xd9\x37\x5f\x8f\x26\x34\x43\x45\x4e\ \x58\xad\xba\xc7\xc3\xd9\xf1\xbe\xd7\xef\xbb\xd5\xed\xbd\xd7\xef\ \xc0\xd8\xf0\xc1\xda\xf3\xc0\xd9\xf3\xbf\xd8\xf2\xbc\xd7\xf1\xba\ \xd5\xf0\xbc\xd7\xf2\xbb\xd6\xf1\xbb\xd6\xf1\xbb\xd6\xf1\xbd\xd8\ \xf3\xbf\xd7\xf5\xc2\xda\xf7\xc1\xd9\xf5\xbd\xd8\xf3\xbf\xda\xf5\ \xbf\xda\xf5\xbe\xd9\xf4\xc0\xdb\xf6\xc1\xd9\xf5\xc1\xda\xf5\xbf\ \xda\xf4\xc1\xda\xf4\xc1\xda\xf4\xc0\xd9\xf3\xc7\xde\xf8\xc5\xdc\ \xf6\xc3\xdb\xf5\xc4\xde\xf6\xc4\xdd\xf6\xc1\xda\xf6\xbe\xd9\xf4\ \xbf\xda\xf5\xbe\xd9\xf4\xbd\xd8\xf3\xc1\xd9\xf4\xc0\xd9\xf3\xbe\ \xd8\xf4\xad\xc9\xeb\x36\x4d\x70\x33\x42\x54\x37\x41\x4c\x88\x83\ \x87\xc4\xba\xb9\x8d\x92\x9c\x8f\x9c\xae\x8a\x9f\xb9\x76\x8a\xa2\ \x34\x41\x55\x0a\x16\x25\x0b\x18\x23\x10\x1b\x2b\x0f\x1a\x2f\x10\ \x1c\x30\x11\x1d\x32\x11\x1f\x32\x13\x21\x34\x15\x23\x37\x17\x23\ \x38\x16\x22\x35\x14\x22\x35\x15\x22\x35\x16\x21\x31\x14\x1e\x2c\ \x11\x18\x25\x0c\x12\x1e\x0d\x13\x1f\x11\x19\x28\x13\x19\x29\x12\ \x1a\x28\x11\x17\x24\x0d\x11\x1d\x0a\x0e\x1a\x0a\x10\x1f\x0d\x14\ \x25\x12\x1d\x35\x25\x37\x59\x43\x54\x80\x30\x3f\x6d\x0a\x18\x3d\ \x23\x36\x54\x4c\x65\x83\x4c\x67\x82\x2a\x3c\x54\x2e\x3e\x51\x2b\ \x3f\x52\x29\x3f\x52\x2c\x41\x56\x2e\x44\x58\x2d\x43\x57\x2c\x44\ \x57\x2b\x43\x57\x2f\x44\x5a\x2e\x43\x59\x2f\x45\x5b\x2f\x45\x5b\ \x30\x46\x5c\x30\x47\x5c\x31\x48\x5c\x31\x48\x5d\x31\x48\x5f\x31\ \x48\x60\x31\x48\x5e\x31\x47\x5e\x2f\x46\x5b\x31\x47\x5c\x2f\x44\ \x57\x30\x45\x57\x2e\x42\x54\x2c\x41\x52\x2b\x3f\x50\x27\x3c\x4c\ \x23\x38\x47\x21\x33\x41\x1f\x30\x3d\x1d\x2e\x3c\x1d\x2d\x3a\x1f\ \x2d\x3a\x21\x2f\x3c\x22\x32\x40\x25\x35\x45\x29\x3a\x4a\x2d\x40\ \x52\x2f\x44\x59\x32\x48\x61\x33\x4a\x63\x35\x4b\x64\x36\x4c\x65\ \x35\x4c\x63\x35\x4c\x63\x33\x4c\x62\x34\x4d\x63\x34\x4c\x63\x33\ \x4b\x62\x34\x4c\x63\x32\x4a\x60\x32\x49\x63\x33\x4a\x62\x00\x00\ \x00\x3b\x6f\xae\x33\x64\xa3\x31\x60\xa0\x3d\x6f\xac\x49\x7c\xb7\ \x4f\x7f\xb6\x31\x5a\x8d\x2b\x53\x86\x44\x71\xab\x4f\x82\xc0\x53\ \x8c\xca\x53\x90\xcd\x59\x98\xd5\x65\x9f\xd8\x6a\xa3\xda\x61\x9f\ \xd9\x5a\x9b\xda\x42\x6f\xa1\x25\x34\x47\x44\x4d\x56\x97\xa4\xb2\ \xc3\xd8\xef\xbe\xd7\xef\xbc\xd6\xee\xbd\xd7\xef\xc0\xd9\xf2\xc2\ \xda\xf4\xc0\xd9\xf3\xc0\xd9\xf3\xbd\xd7\xf2\xbc\xd6\xf1\xbd\xd7\ \xf3\xbe\xd8\xf3\xbc\xd7\xf2\xbb\xd6\xf1\xbc\xd7\xf2\xbf\xd8\xf5\ \xc2\xdb\xf7\xc0\xda\xf5\xbe\xd8\xf3\xbf\xda\xf5\xbf\xda\xf5\xc0\ \xdb\xf6\xbf\xda\xf5\xbf\xd8\xf4\xbd\xd7\xf2\xbc\xd7\xf1\xbd\xd7\ \xf1\xbe\xd8\xf2\xbe\xd8\xf2\xc4\xdd\xf6\xc1\xd9\xf3\xc3\xdb\xf4\ \xc4\xdd\xf5\xc2\xdc\xf4\xc1\xda\xf5\xc0\xda\xf5\xbf\xd9\xf5\xbd\ \xd7\xf3\xbd\xd7\xf3\xc1\xda\xf5\xc1\xd9\xf4\xbe\xd9\xf4\xad\xc9\ \xeb\x37\x50\x72\x35\x43\x55\x33\x3d\x48\x73\x70\x77\xa2\x9a\x9b\ \x42\x44\x4d\x43\x4d\x5b\x59\x68\x79\x3b\x48\x5b\x11\x1a\x27\x0c\ \x13\x24\x0f\x18\x25\x10\x19\x2a\x0f\x19\x2b\x12\x1c\x2d\x14\x1e\ \x30\x14\x20\x30\x15\x22\x32\x14\x21\x31\x16\x23\x33\x18\x24\x35\ \x17\x23\x34\x15\x22\x31\x15\x20\x2d\x14\x1d\x2a\x0e\x17\x23\x0c\ \x14\x1e\x0c\x15\x1e\x0f\x19\x22\x10\x19\x25\x0f\x18\x25\x0f\x17\ \x23\x0a\x0f\x1c\x08\x0d\x1b\x0a\x13\x1c\x0f\x15\x1f\x13\x19\x26\ \x12\x1e\x30\x21\x2f\x45\x18\x28\x3e\x15\x28\x3e\x49\x5f\x7a\x54\ \x6d\x8b\x3a\x51\x6b\x27\x39\x4e\x2e\x3d\x50\x2b\x3e\x4f\x2b\x3f\ \x51\x29\x3d\x50\x2b\x3e\x52\x2b\x3e\x52\x2a\x3e\x52\x29\x3e\x52\ \x29\x3e\x51\x29\x3e\x52\x29\x3e\x52\x2a\x3f\x52\x2b\x40\x54\x2a\ \x41\x54\x2b\x42\x54\x2c\x44\x57\x2c\x42\x59\x2d\x43\x59\x2a\x41\ \x57\x2c\x42\x58\x2d\x42\x58\x2d\x41\x56\x2f\x41\x53\x2b\x3f\x4f\ \x2c\x3f\x4f\x2a\x3b\x4b\x27\x39\x48\x23\x38\x47\x20\x33\x42\x1e\ \x30\x3d\x1c\x2d\x3a\x1a\x2a\x37\x1c\x2a\x36\x1d\x2b\x38\x1e\x2c\ \x38\x1f\x2f\x3c\x21\x31\x40\x24\x34\x45\x29\x3a\x4c\x2c\x3f\x54\ \x2b\x41\x58\x2e\x45\x5b\x2e\x45\x5b\x2f\x46\x5c\x2f\x46\x5c\x2f\ \x46\x5b\x2e\x46\x5b\x2d\x45\x5b\x2d\x45\x5a\x2d\x44\x5a\x2e\x45\ \x5b\x2e\x44\x5a\x2d\x43\x5b\x2d\x43\x5a\x00\x00\x00\x3c\x71\xb0\ \x36\x66\xa6\x30\x61\xa2\x39\x6e\xaa\x4d\x83\xbb\x58\x8d\xc5\x3c\ \x69\x9c\x2d\x53\x85\x3e\x6a\xa5\x4e\x81\xbf\x53\x88\xc5\x52\x8c\ \xc9\x55\x92\xce\x60\x9c\xd4\x68\xa2\xd6\x61\x9d\xd6\x58\x97\xd6\ \x4d\x7d\xb3\x26\x3a\x51\x42\x4d\x54\x80\x91\x9e\xc2\xd6\xeb\xbc\ \xd5\xee\xbc\xd6\xee\xbc\xd8\xf0\xbf\xd8\xf2\xc1\xd9\xf3\xc0\xd9\ \xf3\xc0\xd9\xf3\xc1\xd8\xf4\xbf\xd7\xf3\xbe\xd6\xf2\xc0\xd8\xf4\ \xbc\xd7\xf2\xb9\xd4\xef\xbc\xd7\xf2\xbc\xd7\xf2\xc0\xdb\xf6\xbf\ \xda\xf5\xbe\xd9\xf4\xbf\xda\xf5\xbf\xd9\xf4\xbd\xd8\xf3\xbf\xda\ \xf5\xbd\xd9\xf4\xbb\xd7\xf2\xbb\xd6\xf0\xbb\xd6\xf0\xbd\xd8\xf2\ \xbd\xd8\xf3\xc2\xdc\xf6\xbf\xd8\xf2\xc1\xda\xf4\xc3\xdc\xf6\xc1\ \xda\xf4\xc1\xda\xf4\xc0\xd9\xf3\xc1\xda\xf4\xbf\xd8\xf3\xc0\xd7\ \xf3\xc2\xdb\xf6\xc2\xdb\xf5\xbe\xd8\xf5\xae\xca\xec\x3c\x55\x77\ \x35\x43\x53\x34\x3f\x49\x5c\x5b\x63\x87\x7d\x82\x09\x0b\x13\x08\ \x0d\x16\x0d\x13\x1d\x07\x0f\x1a\x09\x12\x1f\x0c\x15\x23\x0d\x16\ \x24\x0e\x19\x28\x0f\x19\x2a\x10\x1c\x2e\x13\x1d\x2e\x14\x1f\x2f\ \x14\x22\x32\x16\x23\x33\x17\x22\x33\x17\x21\x32\x17\x21\x33\x17\ \x21\x31\x14\x20\x2c\x14\x1d\x2a\x10\x18\x22\x0c\x12\x1d\x0d\x13\ \x20\x0f\x16\x25\x11\x19\x27\x0f\x18\x24\x10\x16\x21\x0b\x11\x1d\ \x06\x0d\x19\x0a\x13\x1d\x10\x16\x21\x10\x18\x24\x1a\x24\x35\x3b\ \x48\x5a\x3d\x4d\x60\x60\x74\x8e\x7b\x91\xad\x5e\x74\x8e\x25\x37\ \x4b\x27\x36\x49\x27\x3a\x49\x27\x3a\x4a\x29\x3a\x4d\x27\x3a\x4b\ \x26\x38\x49\x28\x3a\x4b\x26\x39\x4a\x24\x38\x49\x23\x37\x48\x26\ \x39\x4a\x23\x37\x48\x24\x38\x49\x26\x39\x4a\x26\x3b\x4c\x26\x3c\ \x4e\x27\x3c\x51\x29\x3c\x51\x29\x3d\x52\x26\x3b\x50\x29\x3c\x51\ \x28\x3b\x50\x29\x3a\x4d\x27\x3a\x4b\x27\x39\x49\x26\x39\x47\x27\ \x38\x47\x26\x37\x47\x21\x31\x41\x1e\x2e\x3d\x1e\x2e\x3b\x1c\x28\ \x35\x1b\x28\x34\x1d\x28\x35\x1b\x27\x33\x1e\x2a\x36\x1e\x2a\x37\ \x1e\x2b\x3a\x21\x30\x3f\x24\x34\x45\x26\x38\x4a\x27\x3b\x4e\x28\ \x3d\x53\x2a\x3f\x55\x29\x3e\x54\x29\x3e\x52\x2a\x3f\x54\x27\x3f\ \x51\x26\x3c\x50\x28\x3d\x52\x27\x3c\x51\x28\x3c\x52\x29\x3e\x52\ \x26\x3b\x50\x27\x3c\x51\x00\x00\x00\x3e\x72\xb1\x36\x66\xa6\x30\ \x63\xa3\x3a\x71\xae\x51\x89\xc1\x5f\x97\xcf\x48\x76\xaa\x2c\x55\ \x88\x3b\x69\xa2\x4d\x7e\xbb\x4f\x83\xbd\x53\x8a\xc7\x56\x93\xd0\ \x64\xa0\xd8\x69\xa3\xd7\x5f\x9c\xd4\x5a\x98\xd6\x56\x8a\xc2\x28\ \x41\x5f\x35\x41\x4b\x74\x82\x8e\xc1\xd4\xe8\xbe\xd6\xee\xbb\xd5\ \xed\xbd\xd6\xef\xc0\xd8\xf3\xc1\xda\xf4\xc0\xd9\xf3\xc1\xd9\xf4\ \xc0\xd8\xf4\xbd\xd5\xf1\xbc\xd4\xf0\xc0\xd8\xf4\xbc\xd7\xf2\xb9\ \xd4\xef\xba\xd5\xf0\xbc\xd7\xf2\xbf\xda\xf5\xbf\xda\xf5\xbd\xd8\ \xf3\xc0\xda\xf5\xc0\xd8\xf4\xbf\xd8\xf4\xbf\xdb\xf6\xbe\xd9\xf4\ \xbd\xd8\xf3\xbb\xd6\xf1\xbd\xd8\xf2\xbe\xd9\xf3\xbd\xd8\xf3\xc1\ \xda\xf4\xbf\xd8\xf2\xc0\xd9\xf3\xc3\xdc\xf6\xc1\xda\xf4\xc2\xdb\ \xf5\xc2\xdb\xf5\xc2\xdb\xf5\xc2\xdb\xf5\xc1\xda\xf4\xc3\xdc\xf6\ \xc2\xdc\xf5\xbe\xd9\xf5\xaf\xcb\xed\x3f\x57\x7a\x34\x42\x54\x30\ \x3a\x45\x52\x52\x59\x7d\x75\x77\x0b\x0c\x14\x09\x0c\x15\x09\x0e\ \x17\x0b\x13\x1d\x0a\x13\x1d\x0c\x15\x21\x0d\x16\x23\x0f\x17\x27\ \x0f\x19\x2a\x11\x1b\x2c\x13\x1d\x2e\x13\x1d\x2f\x13\x20\x30\x14\ \x21\x31\x16\x21\x32\x17\x21\x32\x16\x20\x32\x16\x21\x31\x16\x20\ \x2d\x14\x1c\x2a\x10\x17\x24\x0d\x13\x1f\x0e\x14\x22\x10\x17\x27\ \x10\x18\x28\x11\x18\x26\x10\x17\x22\x0a\x10\x1c\x07\x0e\x1a\x0b\ \x12\x1d\x0f\x15\x20\x10\x18\x25\x13\x1d\x2d\x39\x46\x57\x64\x73\ \x86\x69\x7a\x91\x51\x64\x7b\x34\x46\x5a\x27\x36\x48\x28\x37\x49\ \x28\x38\x48\x26\x37\x48\x26\x36\x47\x23\x36\x45\x22\x34\x42\x21\ \x33\x40\x22\x33\x42\x1f\x32\x42\x20\x30\x41\x22\x32\x43\x21\x31\ \x42\x23\x33\x44\x22\x32\x43\x22\x33\x44\x22\x34\x45\x22\x34\x45\ \x24\x35\x46\x24\x37\x46\x24\x36\x46\x24\x35\x46\x23\x33\x45\x22\ \x32\x41\x22\x35\x44\x22\x35\x43\x21\x33\x3f\x20\x31\x3e\x1f\x30\ \x3e\x1f\x2e\x3e\x1c\x2b\x3a\x1b\x28\x35\x1b\x27\x33\x19\x25\x30\ \x17\x24\x2f\x17\x23\x2f\x19\x25\x31\x19\x25\x31\x1e\x2a\x36\x1e\ \x2b\x39\x21\x30\x3e\x23\x33\x44\x22\x34\x46\x23\x37\x49\x23\x37\ \x4a\x22\x37\x48\x21\x36\x47\x22\x37\x48\x23\x37\x48\x24\x37\x48\ \x24\x36\x47\x23\x34\x47\x23\x34\x48\x22\x34\x46\x23\x35\x46\x23\ \x35\x46\x00\x00\x00\x41\x73\xb3\x39\x68\xa8\x31\x63\xa5\x38\x6d\ \xab\x52\x8a\xc2\x61\x9a\xd2\x50\x83\xb9\x2d\x57\x89\x34\x61\x99\ \x4a\x7b\xb7\x51\x83\xbd\x54\x89\xc6\x59\x94\xd0\x66\xa2\xd9\x68\ \xa4\xd9\x63\x9f\xd7\x5b\x99\xd5\x5b\x92\xce\x2e\x4c\x72\x2f\x3b\ \x49\x5f\x6b\x75\xba\xcc\xe0\xc0\xd7\xf0\xbd\xd6\xee\xbd\xd6\xef\ \xc0\xd9\xf3\xc1\xd9\xf3\xc2\xda\xf6\xc0\xd8\xf4\xc0\xd8\xf4\xbe\ \xd6\xf2\xbd\xd5\xf1\xbf\xd7\xf3\xbd\xd8\xf3\xbb\xd6\xf1\xbc\xd7\ \xf2\xbe\xd9\xf3\xbf\xda\xf5\xc0\xdb\xf6\xbe\xd9\xf4\xbe\xd9\xf4\ \xc1\xd9\xf5\xc2\xda\xf6\xc1\xdb\xf6\xbe\xda\xf5\xbe\xd9\xf4\xbd\ \xd8\xf3\xbd\xd8\xf2\xbe\xd9\xf3\xbb\xd6\xf1\xc1\xda\xf5\xc0\xd9\ \xf3\xc0\xd9\xf3\xc2\xdb\xf5\xc2\xdb\xf5\xc3\xdc\xf7\xc3\xdc\xf6\ \xc4\xdd\xf7\xc1\xdb\xf4\xc1\xdb\xf3\xc2\xdc\xf4\xc1\xdb\xf3\xbd\ \xd8\xf3\xb0\xcb\xee\x40\x58\x7c\x30\x3f\x50\x30\x3b\x45\x49\x49\ \x50\x6e\x67\x69\x09\x0b\x12\x0a\x0d\x15\x0b\x11\x1a\x0a\x11\x1b\ \x0a\x13\x1d\x0b\x13\x20\x0c\x14\x22\x11\x1a\x28\x11\x1a\x2b\x10\ \x1a\x2b\x12\x1c\x2d\x12\x1d\x2d\x12\x1f\x2f\x13\x20\x30\x15\x22\ \x32\x15\x20\x30\x16\x20\x33\x16\x1f\x30\x15\x1f\x2c\x13\x1b\x29\ \x11\x18\x24\x0d\x13\x1f\x0d\x14\x21\x0f\x16\x25\x11\x18\x2a\x11\ \x19\x28\x0f\x16\x22\x0a\x0f\x1a\x08\x0e\x1a\x0b\x11\x1b\x0f\x16\ \x22\x0f\x17\x24\x12\x1c\x2a\x17\x23\x31\x2b\x38\x49\x33\x41\x53\ \x20\x2d\x3f\x23\x31\x42\x27\x35\x44\x29\x37\x47\x26\x35\x45\x27\ \x36\x46\x23\x32\x42\x21\x30\x3f\x1e\x2d\x39\x1f\x2d\x38\x1e\x2c\ \x38\x1d\x2b\x39\x1e\x2d\x39\x1e\x2d\x3a\x1e\x2d\x39\x1b\x2b\x37\ \x1c\x2c\x39\x1e\x2c\x3b\x1f\x2d\x3e\x1e\x2d\x3d\x1e\x2d\x3a\x20\ \x2f\x3b\x1f\x2e\x3b\x1e\x2c\x3b\x20\x2f\x3e\x21\x2f\x3c\x1e\x2e\ \x3c\x1e\x2e\x3a\x1c\x2c\x36\x1b\x2b\x36\x1d\x2c\x39\x1d\x29\x37\ \x1a\x27\x34\x19\x25\x31\x17\x23\x2e\x17\x22\x2b\x17\x21\x2a\x15\ \x1f\x28\x16\x21\x2a\x18\x21\x2d\x1a\x25\x30\x1b\x27\x33\x1b\x29\ \x35\x1c\x2b\x38\x1e\x2e\x3d\x1f\x30\x3e\x1e\x2f\x3d\x1f\x30\x3e\ \x1e\x2f\x3b\x1d\x2e\x3b\x1f\x2f\x3c\x1f\x2e\x3c\x20\x2f\x3d\x1e\ \x2d\x3c\x1f\x2d\x3c\x20\x2d\x3c\x1f\x2c\x3b\x1e\x2c\x3b\x00\x00\ \x00\x46\x78\xb7\x3e\x6c\xac\x35\x63\xa6\x3b\x6c\xab\x4f\x85\xbc\ \x62\x9c\xd4\x56\x8a\xc2\x2e\x5a\x8c\x2d\x59\x8e\x48\x78\xb2\x54\ \x85\xbf\x55\x8b\xc9\x59\x94\xcf\x64\xa0\xd8\x67\xa3\xd9\x64\xa0\ \xd6\x5b\x96\xd1\x59\x92\xd0\x37\x59\x85\x2e\x3d\x4d\x5b\x64\x6e\ \xb0\xc1\xd3\xc2\xd8\xf1\xbe\xd7\xef\xbe\xd7\xf0\xc0\xd9\xf3\xbe\ \xd7\xf3\xc0\xd8\xf4\xc1\xd9\xf5\xc1\xd9\xf5\xbf\xd7\xf5\xbe\xd6\ \xf4\xbe\xd6\xf4\xbd\xd6\xf4\xbd\xd7\xf5\xbd\xd7\xf5\xbe\xd9\xf4\ \xc0\xdb\xf6\xc0\xdb\xf6\xbe\xd9\xf4\xbf\xd9\xf5\xc2\xda\xf6\xc1\ \xd9\xf5\xc3\xdb\xf7\xc0\xdb\xf6\xc0\xdb\xf6\xbf\xda\xf4\xbf\xda\ \xf4\xc0\xdb\xf5\xbc\xd8\xf2\xc1\xdb\xf5\xc1\xd9\xf4\xc1\xda\xf4\ \xc2\xda\xf5\xc2\xda\xf5\xc4\xda\xf6\xc5\xdc\xf7\xc7\xde\xf6\xc6\ \xde\xf6\xc4\xdc\xf3\xc1\xdd\xf2\xc1\xdb\xf1\xbd\xd8\xf3\xaf\xca\ \xec\x42\x5c\x7d\x31\x3f\x4e\x31\x3c\x45\x46\x46\x4e\x67\x61\x64\ \x09\x0b\x15\x08\x0d\x17\x09\x0f\x1a\x09\x11\x1c\x0a\x12\x1f\x0b\ \x13\x20\x0c\x14\x21\x0e\x16\x25\x0f\x19\x28\x11\x1b\x2c\x11\x1b\ \x2c\x11\x1d\x2d\x12\x20\x30\x13\x20\x30\x13\x20\x30\x14\x20\x31\ \x17\x20\x32\x16\x20\x30\x16\x1f\x2c\x13\x1b\x27\x0f\x18\x22\x0d\ \x13\x1e\x0d\x13\x1f\x10\x18\x25\x11\x18\x2a\x10\x17\x26\x10\x16\ \x23\x08\x0e\x19\x08\x0e\x19\x0c\x13\x1d\x0d\x13\x1f\x0e\x16\x24\ \x13\x1c\x29\x15\x1f\x2c\x18\x24\x30\x1e\x28\x38\x20\x2a\x3b\x24\ \x2d\x3e\x26\x32\x40\x28\x35\x44\x27\x34\x44\x24\x31\x41\x21\x30\ \x3d\x1f\x2b\x38\x1f\x28\x33\x1b\x26\x2e\x1a\x24\x2e\x1a\x24\x32\ \x18\x24\x2e\x19\x25\x2f\x17\x23\x2d\x19\x25\x2f\x1a\x28\x31\x18\ \x26\x30\x1a\x24\x33\x1b\x25\x34\x1a\x26\x32\x19\x28\x31\x19\x25\ \x31\x1c\x27\x35\x1a\x25\x33\x1c\x28\x35\x1a\x27\x34\x1a\x28\x33\ \x19\x25\x2f\x19\x25\x2f\x1a\x26\x31\x18\x24\x2f\x16\x21\x2b\x17\ \x21\x29\x15\x20\x28\x13\x1e\x26\x11\x1d\x22\x12\x1e\x24\x12\x1d\ \x25\x14\x1f\x27\x14\x1f\x28\x17\x21\x2b\x18\x23\x2d\x17\x24\x30\ \x18\x26\x32\x19\x26\x32\x1a\x27\x32\x17\x25\x2e\x18\x25\x2e\x18\ \x25\x2e\x18\x28\x2f\x19\x26\x2e\x19\x25\x2f\x17\x23\x2d\x1b\x27\ \x32\x1b\x24\x31\x1a\x23\x30\x1a\x24\x2f\x00\x00\x00\x48\x7b\xbc\ \x3f\x6e\xad\x3a\x68\xa7\x3b\x6a\xa8\x4b\x81\xba\x61\x9e\xd5\x5c\ \x96\xcc\x32\x61\x93\x2b\x57\x88\x43\x70\xa9\x50\x83\xc0\x56\x8a\ \xc7\x5a\x93\xd0\x5f\x9b\xd8\x64\xa0\xd9\x62\x9d\xd3\x57\x92\xce\ \x57\x90\xce\x3f\x67\x98\x2a\x3a\x4d\x4e\x59\x60\xa5\xb5\xc5\xc6\ \xda\xef\xc0\xd8\xf1\xbf\xd8\xef\xc0\xd8\xf2\xbf\xd8\xf3\xc1\xd9\ \xf4\xc2\xda\xf6\xc1\xda\xf7\xbd\xd7\xf5\xbd\xd7\xf3\xbd\xd7\xf3\ \xbd\xd8\xf4\xbf\xd8\xf4\xbe\xd7\xf3\xc1\xd9\xf5\xc3\xdb\xf6\xc3\ \xdc\xf6\xc0\xda\xf4\xc1\xda\xf5\xc1\xd9\xf5\xc2\xda\xf6\xc4\xdb\ \xf8\xc2\xdb\xf7\xc2\xdb\xf6\xc1\xda\xf6\xc0\xda\xf5\xc0\xdb\xf6\ \xbe\xd9\xf4\xbf\xda\xf5\xc1\xda\xf6\xc3\xdb\xf6\xc2\xdb\xf5\xc1\ \xd9\xf4\xc3\xdb\xf5\xc3\xdc\xf6\xc4\xdd\xf6\xc7\xdf\xf6\xc5\xdd\ \xf6\xc2\xdc\xf6\xc1\xda\xf2\xbd\xd9\xf2\xb0\xcc\xec\x45\x5e\x7d\ \x32\x41\x51\x36\x3f\x49\x3f\x44\x4d\x5a\x58\x5f\x0b\x0c\x16\x0a\ \x0e\x18\x0a\x10\x1a\x08\x10\x1d\x08\x10\x1e\x0b\x12\x21\x0d\x14\ \x22\x0e\x17\x24\x0f\x18\x27\x10\x1b\x2b\x10\x1c\x2c\x12\x1d\x30\ \x12\x1e\x30\x12\x1f\x32\x14\x21\x32\x14\x20\x32\x16\x20\x32\x14\ \x1e\x2d\x14\x1d\x2a\x12\x1c\x25\x0f\x18\x20\x0e\x13\x1e\x0f\x14\ \x1f\x10\x19\x23\x11\x19\x27\x11\x18\x28\x12\x18\x27\x0b\x11\x1d\ \x07\x0e\x18\x0a\x12\x1c\x0d\x16\x21\x0f\x17\x25\x11\x19\x28\x15\ \x1d\x2c\x19\x22\x30\x1c\x25\x32\x20\x2b\x38\x22\x2d\x3c\x23\x30\ \x3f\x26\x33\x41\x24\x34\x41\x20\x2e\x3c\x1f\x2a\x38\x1c\x27\x32\ \x16\x20\x29\x14\x1d\x27\x15\x1f\x27\x13\x1e\x26\x11\x1d\x22\x13\ \x1e\x24\x13\x1e\x25\x13\x1e\x25\x14\x1f\x27\x15\x1f\x28\x14\x1c\ \x26\x16\x1f\x2a\x14\x1e\x27\x14\x1f\x27\x16\x1f\x27\x16\x1f\x29\ \x17\x20\x2b\x17\x21\x2b\x16\x1f\x2a\x16\x20\x2a\x15\x1e\x27\x15\ \x1e\x27\x17\x20\x29\x14\x1d\x27\x12\x1c\x24\x12\x1d\x22\x11\x1b\ \x23\x10\x19\x21\x11\x1a\x20\x0f\x18\x1f\x11\x19\x20\x10\x1a\x21\ \x10\x1a\x21\x13\x1c\x24\x13\x1c\x25\x14\x1e\x28\x16\x1f\x2b\x14\ \x1e\x28\x15\x1e\x28\x14\x1f\x25\x16\x1f\x25\x14\x1d\x24\x13\x1f\ \x25\x14\x1f\x26\x13\x1e\x26\x14\x1e\x26\x13\x1d\x25\x12\x1b\x24\ \x13\x1b\x24\x13\x1c\x23\x00\x00\x00\x48\x7c\xbc\x40\x72\xb0\x38\ \x69\xa6\x36\x66\xa2\x47\x7c\xb7\x5d\x9a\xd4\x5e\x9a\xd2\x39\x6a\ \x9f\x29\x53\x85\x3d\x69\xa1\x49\x7e\xbb\x53\x89\xc5\x57\x8f\xcc\ \x59\x95\xd3\x62\x9e\xd8\x66\x9f\xd7\x5a\x98\xd3\x57\x94\xd2\x4b\ \x77\xab\x2a\x3f\x56\x46\x51\x57\x92\xa1\xb0\xc6\xd9\xed\xc0\xd8\ \xf1\xc0\xd8\xf0\xc1\xd9\xf1\xc2\xda\xf5\xc2\xda\xf4\xc0\xd9\xf4\ \xbe\xd7\xf4\xbc\xd6\xf4\xbd\xd8\xf4\xbe\xd9\xf4\xbd\xd8\xf3\xbf\ \xd8\xf3\xc0\xd8\xf4\xc1\xd9\xf5\xc3\xdb\xf7\xc3\xdc\xf6\xc2\xdb\ \xf5\xc1\xda\xf5\xc3\xdb\xf7\xc1\xd9\xf5\xc2\xda\xf6\xc2\xda\xf6\ \xc1\xd9\xf5\xc1\xd9\xf5\xbf\xda\xf5\xc0\xda\xf5\xbe\xd8\xf5\xbf\ \xda\xf6\xbf\xdb\xf6\xbf\xda\xf5\xbf\xd9\xf6\xbd\xd8\xf4\xc0\xda\ \xf5\xc1\xdb\xf5\xc0\xda\xf5\xc3\xdb\xf5\xc3\xda\xf5\xc2\xda\xf5\ \xc2\xdc\xf4\xbe\xda\xf4\xb0\xcc\xec\x47\x61\x7f\x30\x40\x52\x33\ \x3d\x48\x3a\x41\x4b\x34\x36\x3e\x0c\x0c\x15\x09\x0b\x16\x0a\x0f\ \x19\x0a\x10\x1d\x0b\x12\x20\x0b\x12\x20\x0c\x15\x22\x0d\x16\x22\ \x0e\x18\x25\x0e\x19\x29\x10\x1c\x2d\x11\x1d\x2f\x13\x1e\x31\x11\ \x1d\x2f\x13\x20\x32\x14\x1f\x31\x14\x1e\x30\x15\x1e\x2e\x14\x1d\ \x2a\x12\x1c\x25\x11\x18\x21\x0d\x14\x1d\x0d\x13\x1f\x11\x19\x25\ \x10\x19\x26\x12\x19\x28\x10\x16\x25\x0b\x11\x1d\x08\x0f\x18\x0a\ \x12\x1c\x0b\x14\x1e\x0f\x18\x23\x10\x18\x25\x15\x1c\x2c\x18\x20\ \x2f\x1c\x25\x33\x1d\x28\x34\x22\x2d\x3c\x23\x30\x3f\x25\x33\x41\ \x23\x33\x40\x20\x2e\x3c\x1e\x2a\x37\x17\x21\x2b\x12\x1b\x24\x11\ \x18\x20\x10\x18\x1f\x0e\x17\x1c\x11\x18\x1d\x0f\x16\x1d\x0f\x16\ \x1d\x10\x17\x1e\x10\x17\x1f\x0e\x17\x1f\x0e\x17\x1f\x0f\x17\x1f\ \x0f\x17\x20\x0f\x19\x20\x0f\x18\x21\x10\x18\x21\x10\x19\x22\x10\ \x19\x20\x10\x19\x21\x10\x19\x21\x0f\x18\x20\x0f\x18\x20\x0f\x18\ \x20\x0f\x18\x21\x0e\x17\x1e\x0d\x17\x1c\x0d\x16\x1e\x0c\x13\x1c\ \x0f\x16\x1c\x0e\x15\x1c\x0d\x15\x1c\x0e\x16\x1d\x0e\x16\x1d\x0f\ \x15\x1d\x10\x16\x1f\x0e\x15\x20\x0d\x15\x20\x0e\x16\x1f\x0c\x15\ \x1c\x0e\x16\x1c\x10\x17\x1d\x0f\x16\x1d\x0e\x15\x1c\x0e\x15\x1c\ \x0f\x15\x1c\x0f\x16\x1d\x0d\x15\x1c\x0d\x16\x1d\x0d\x15\x1b\x0e\ \x16\x1b\x00\x00\x00\x46\x7c\xbd\x40\x73\xb1\x37\x68\xa4\x35\x66\ \xa0\x45\x7c\xb6\x59\x97\xd2\x5e\x9a\xd6\x3f\x6f\xa8\x29\x54\x87\ \x3a\x65\x9b\x4b\x7d\xbb\x4d\x83\xc0\x54\x8b\xc7\x54\x91\xcf\x5e\ \x9b\xd6\x61\x9d\xd6\x5c\x9a\xd6\x54\x96\xd4\x51\x83\xbd\x2a\x44\ \x61\x36\x42\x4b\x7b\x89\x95\xc6\xd7\xeb\xc2\xdb\xf3\xc1\xda\xf0\ \xc2\xda\xf2\xc1\xda\xf4\xc1\xda\xf4\xc1\xda\xf5\xbe\xd7\xf3\xbd\ \xd7\xf5\xbd\xd8\xf3\xbd\xd8\xf3\xbe\xd9\xf4\xbf\xd8\xf4\xbe\xd6\ \xf2\xbf\xd7\xf3\xc1\xd9\xf5\xc3\xdc\xf7\xc3\xdb\xf6\xc1\xd9\xf4\ \xc1\xd9\xf5\xc0\xd8\xf4\xc2\xda\xf6\xc2\xda\xf6\xc2\xda\xf6\xc2\ \xda\xf6\xc0\xda\xf6\xc0\xda\xf7\xbe\xd8\xf6\xbf\xd9\xf5\xbe\xda\ \xf5\xbc\xd8\xf6\xbc\xd8\xf7\xbb\xd7\xf6\xbd\xd9\xf7\xbf\xda\xf7\ \xc0\xda\xf6\xbe\xda\xf5\xbf\xd9\xf4\xc2\xda\xf5\xc2\xdc\xf4\xbe\ \xd9\xf4\xaf\xcb\xec\x47\x60\x80\x2f\x41\x54\x34\x42\x4e\x37\x42\ \x4c\x12\x18\x20\x0d\x0f\x18\x09\x0a\x14\x0d\x0f\x1a\x0a\x0e\x1b\ \x0c\x13\x1f\x0b\x13\x1f\x0c\x14\x21\x0d\x16\x24\x0f\x18\x26\x10\ \x1a\x2a\x10\x1a\x2b\x12\x1c\x2d\x11\x1e\x2f\x12\x1e\x30\x12\x1f\ \x30\x12\x1e\x30\x15\x1f\x31\x14\x1d\x2f\x14\x1d\x2c\x14\x1d\x29\ \x11\x19\x22\x0d\x13\x1d\x0e\x14\x20\x10\x18\x25\x10\x19\x26\x12\ \x19\x28\x10\x16\x25\x0b\x10\x1d\x07\x0e\x17\x0b\x12\x1b\x0d\x14\ \x1d\x0d\x16\x20\x10\x19\x24\x13\x1b\x2a\x17\x1f\x2e\x1b\x24\x32\ \x1e\x29\x36\x23\x2e\x3d\x24\x32\x41\x26\x35\x44\x23\x31\x41\x1f\ \x2c\x39\x18\x24\x30\x14\x1c\x25\x0d\x12\x1a\x0e\x11\x19\x0d\x11\ \x17\x0c\x11\x16\x0d\x11\x16\x0e\x12\x17\x0f\x11\x19\x0f\x12\x1a\ \x0c\x10\x17\x0c\x12\x19\x0b\x11\x18\x0d\x13\x1a\x0d\x13\x1a\x0d\ \x13\x1b\x0d\x12\x1b\x0d\x13\x1b\x0e\x13\x1a\x0c\x11\x16\x0e\x13\ \x18\x0c\x12\x17\x0d\x13\x18\x0d\x13\x18\x0c\x12\x17\x0c\x12\x19\ \x0d\x12\x19\x0d\x12\x19\x0e\x13\x1a\x0c\x12\x19\x0c\x12\x19\x0b\ \x11\x18\x0d\x14\x1b\x0a\x12\x19\x0b\x10\x17\x0d\x12\x19\x0b\x10\ \x19\x0e\x12\x1b\x0d\x11\x1a\x0d\x12\x19\x0d\x12\x17\x0b\x10\x15\ \x0b\x11\x18\x0d\x11\x1a\x0d\x12\x19\x0b\x11\x18\x0d\x13\x1a\x0e\ \x13\x1a\x0b\x11\x18\x0a\x13\x19\x0a\x11\x15\x0c\x12\x17\x00\x00\ \x00\x49\x7f\xc1\x41\x74\xb3\x37\x6a\xa6\x33\x65\xa0\x42\x77\xb4\ \x54\x92\xcf\x5b\x99\xd6\x42\x77\xb1\x24\x50\x86\x35\x5f\x95\x4a\ \x7a\xb6\x4c\x82\xbd\x52\x89\xc5\x54\x8f\xcf\x56\x93\xd1\x5a\x95\ \xd0\x58\x95\xd2\x55\x97\xd6\x56\x8c\xca\x2c\x4c\x70\x2b\x3a\x46\ \x65\x70\x7d\xbf\xd0\xe3\xc3\xda\xf3\xc2\xda\xf0\xc1\xda\xf2\xc1\ \xdb\xf4\xc2\xdb\xf5\xc1\xda\xf4\xbf\xd9\xf4\xbd\xd8\xf4\xbe\xd9\ \xf5\xbd\xd8\xf3\xbe\xd9\xf4\xc0\xd9\xf5\xbf\xd7\xf3\xc0\xd8\xf5\ \xc1\xd9\xf5\xc2\xda\xf6\xc2\xda\xf5\xc2\xda\xf6\xc3\xdb\xf7\xc1\ \xd9\xf5\xc2\xda\xf6\xc2\xda\xf6\xc3\xdb\xf7\xc1\xd9\xf5\xc0\xd9\ \xf7\xc0\xda\xf8\xbd\xd7\xf5\xc0\xd8\xf5\xc1\xda\xf7\xbe\xd9\xf7\ \xbd\xd8\xf8\xbc\xd8\xf7\xbc\xd9\xf7\xbe\xd9\xf6\xbe\xd9\xf4\xbe\ \xd9\xf4\xbf\xd9\xf5\xc3\xdb\xf5\xc2\xdc\xf4\xbf\xda\xf4\xb0\xcc\ \xef\x48\x5f\x81\x30\x41\x55\x37\x45\x50\x35\x43\x4c\x0d\x14\x1a\ \x0c\x0d\x15\x09\x0b\x15\x0c\x0f\x1a\x0c\x11\x1d\x0c\x11\x1d\x09\ \x12\x1c\x0c\x14\x21\x0c\x15\x22\x0f\x18\x28\x0f\x1a\x28\x11\x1b\ \x2c\x11\x1c\x2c\x12\x1d\x2d\x11\x1e\x2f\x13\x20\x31\x12\x1e\x2f\ \x15\x1f\x31\x13\x1c\x2e\x16\x1f\x2d\x12\x1b\x29\x11\x19\x24\x0d\ \x14\x1d\x0d\x15\x1f\x10\x18\x26\x0f\x18\x26\x12\x19\x28\x10\x16\ \x25\x0b\x10\x1d\x07\x0d\x17\x0b\x12\x1b\x0e\x14\x1f\x0e\x15\x20\ \x0e\x17\x23\x13\x1a\x29\x17\x20\x2e\x1a\x23\x31\x1c\x28\x35\x22\ \x2e\x3c\x22\x31\x3f\x25\x34\x44\x24\x32\x42\x1f\x2a\x39\x19\x23\ \x2c\x10\x18\x1e\x0a\x0e\x14\x09\x0c\x11\x0b\x0e\x13\x0a\x0d\x12\ \x0a\x0e\x13\x09\x0d\x12\x0a\x0e\x13\x0b\x0e\x15\x0b\x0e\x16\x0b\ \x0d\x14\x0b\x0d\x15\x0b\x0d\x15\x0b\x0d\x15\x0c\x0e\x17\x0b\x0d\ \x16\x0c\x10\x16\x0c\x10\x15\x0c\x0f\x16\x0c\x10\x15\x0c\x10\x15\ \x0e\x12\x17\x0d\x11\x16\x0c\x10\x15\x0b\x0f\x14\x0b\x0e\x16\x0b\ \x0e\x16\x0c\x10\x16\x0c\x0f\x16\x0c\x0f\x17\x0c\x10\x18\x0b\x11\ \x18\x0a\x10\x17\x0c\x12\x19\x0b\x10\x17\x0b\x0e\x16\x0d\x10\x18\ \x0d\x0f\x18\x0d\x10\x17\x0d\x11\x16\x0c\x10\x15\x0c\x10\x16\x0b\ \x10\x18\x0d\x11\x17\x0d\x11\x16\x0d\x11\x16\x0e\x11\x17\x0e\x12\ \x17\x0d\x13\x18\x0b\x11\x16\x0d\x12\x16\x00\x00\x00\x4b\x83\xc5\ \x44\x7a\xb8\x38\x6d\xaa\x32\x63\xa2\x3c\x71\xae\x4c\x8b\xc7\x57\ \x96\xd2\x45\x7e\xb9\x25\x54\x89\x30\x59\x8f\x47\x75\xb1\x4d\x82\ \xbd\x52\x87\xc3\x53\x8d\xcd\x54\x91\xd0\x50\x8c\xc9\x51\x8d\xca\ \x53\x90\xd1\x59\x90\xd2\x36\x58\x81\x2d\x3b\x49\x57\x60\x6b\xb6\ \xc7\xd9\xc3\xdb\xf2\xc2\xda\xef\xc1\xda\xf0\xc0\xdb\xf4\xc2\xdd\ \xf5\xc3\xdc\xf6\xc0\xd9\xf5\xbd\xd9\xf4\xbe\xd9\xf4\xbe\xd9\xf4\ \xbe\xd9\xf4\xc0\xd8\xf4\xbf\xd7\xf3\xbf\xd7\xf5\xc1\xd9\xf6\xc3\ \xdb\xf7\xc2\xda\xf6\xc2\xda\xf5\xc3\xdb\xf7\xc1\xd9\xf4\xc2\xd9\ \xf5\xc2\xd9\xf5\xc0\xd8\xf4\xc0\xd7\xf5\xc0\xd9\xf7\xc1\xdc\xf9\ \xbb\xd5\xf3\xbf\xd7\xf6\xc3\xdb\xf9\xc0\xda\xf7\xbf\xda\xf7\xbe\ \xda\xf7\xbf\xdb\xf5\xbe\xda\xf4\xbf\xd9\xf4\xbf\xd9\xf3\xc1\xda\ \xf4\xc3\xdb\xf7\xc4\xde\xf6\xbf\xdb\xf6\xae\xc9\xed\x49\x5f\x81\ \x34\x44\x57\x35\x45\x4e\x30\x3e\x45\x0d\x13\x17\x0b\x0e\x14\x08\ \x0c\x15\x09\x0e\x19\x09\x11\x1c\x09\x13\x1c\x09\x12\x1c\x0b\x13\ \x20\x0e\x16\x26\x0f\x18\x29\x0f\x19\x29\x11\x1b\x2c\x11\x1c\x2b\ \x12\x1d\x2b\x12\x1d\x2f\x11\x1d\x2e\x13\x1e\x30\x15\x1f\x31\x16\ \x1f\x31\x16\x1e\x2f\x14\x1c\x2b\x12\x1a\x26\x10\x17\x20\x0e\x16\ \x20\x10\x19\x26\x11\x1a\x28\x11\x18\x27\x0f\x15\x24\x0a\x10\x1d\ \x07\x0d\x17\x0b\x11\x1c\x0c\x12\x1e\x10\x16\x23\x12\x18\x26\x12\ \x19\x29\x17\x20\x2f\x1b\x24\x31\x1c\x28\x35\x22\x2d\x3c\x22\x30\ \x3f\x26\x35\x45\x24\x32\x44\x21\x2c\x3a\x18\x22\x2c\x11\x19\x1e\ \x09\x0d\x12\x0a\x0e\x13\x0c\x0c\x12\x0a\x0c\x11\x0a\x10\x12\x09\ \x0e\x12\x0a\x0f\x14\x0a\x0e\x13\x0b\x0e\x14\x0c\x0e\x16\x0c\x0e\ \x15\x0b\x0d\x15\x0c\x0d\x16\x0a\x0d\x15\x0b\x0f\x15\x0b\x10\x14\ \x0c\x10\x16\x0d\x0f\x19\x0b\x0f\x15\x0c\x10\x15\x0d\x11\x16\x0d\ \x11\x16\x0c\x10\x15\x0c\x10\x15\x0c\x0f\x17\x0c\x0f\x17\x0c\x0f\ \x16\x0c\x0f\x15\x0c\x0f\x17\x0c\x0f\x17\x0c\x10\x18\x0b\x11\x18\ \x0b\x11\x18\x0a\x10\x17\x0b\x11\x18\x0c\x10\x17\x0c\x10\x16\x0c\ \x0f\x18\x0c\x10\x16\x0b\x11\x16\x0a\x11\x15\x0a\x10\x16\x0b\x11\ \x16\x0b\x11\x16\x0b\x11\x16\x0b\x11\x16\x0c\x12\x17\x0b\x11\x16\ \x0d\x11\x17\x0e\x13\x16\x00\x00\x00\x4d\x85\xc6\x48\x7c\xbb\x3e\ \x70\xae\x35\x66\xa3\x37\x6e\xaa\x49\x86\xc1\x53\x95\xd0\x49\x85\ \xbf\x27\x56\x8c\x2c\x54\x89\x45\x71\xac\x4c\x80\xbc\x52\x85\xc3\ \x52\x8c\xcb\x52\x90\xd0\x50\x8c\xcc\x51\x89\xc7\x4f\x8c\xcd\x56\ \x92\xd3\x3f\x67\x93\x2d\x3f\x53\x4e\x59\x65\xa7\xb4\xc7\xc4\xd9\ \xef\xc0\xda\xf2\xc0\xda\xf1\xc2\xda\xf3\xc2\xdb\xf6\xc3\xdc\xf6\ \xc2\xda\xf6\xc0\xd8\xf4\xbf\xd9\xf5\xbe\xd9\xf4\xbc\xd9\xf4\xbe\ \xda\xf5\xbf\xd8\xf4\xc1\xd9\xf6\xc1\xdb\xf7\xc2\xdc\xf7\xc0\xda\ \xf7\xc0\xd9\xf6\xbe\xdb\xf6\xbc\xd9\xf6\xbe\xda\xf8\xbd\xd9\xf7\ \xbd\xd9\xf5\xbf\xda\xf5\xc1\xda\xf8\xc4\xdb\xfa\xbb\xd1\xf4\xbf\ \xd7\xf6\xc2\xdb\xf9\xc0\xd9\xf8\xc1\xda\xf9\xbf\xda\xf8\xbf\xdb\ \xf6\xc1\xd9\xf5\xc2\xdb\xf6\xc3\xdc\xf6\xc4\xdc\xf6\xc5\xdc\xf9\ \xc5\xde\xf6\xc0\xda\xf5\xab\xc7\xe8\x43\x5a\x7a\x36\x46\x59\x3f\ \x4e\x59\x2f\x3d\x44\x0d\x13\x19\x0b\x0e\x12\x09\x0c\x12\x0b\x0e\ \x17\x0a\x0f\x1b\x0b\x11\x1d\x09\x12\x1c\x0b\x14\x1e\x0c\x14\x22\ \x0e\x16\x27\x0f\x17\x28\x12\x1a\x2b\x12\x1b\x29\x14\x1d\x2a\x16\ \x1d\x2f\x15\x1d\x2f\x15\x1d\x2e\x16\x1d\x2f\x18\x1e\x31\x16\x1d\ \x30\x14\x1c\x2d\x13\x1b\x28\x10\x18\x23\x0d\x16\x22\x12\x1b\x2a\ \x10\x1a\x28\x10\x19\x27\x0e\x17\x24\x0a\x12\x1f\x07\x0d\x18\x09\ \x0f\x1c\x0d\x13\x1f\x0e\x17\x21\x0f\x17\x25\x13\x1b\x2a\x16\x1f\ \x2d\x1d\x26\x34\x1e\x27\x34\x22\x2d\x39\x26\x32\x3e\x29\x36\x44\ \x29\x36\x46\x21\x2c\x3b\x1a\x24\x2d\x12\x1a\x20\x0a\x0f\x14\x0c\ \x0f\x14\x0b\x0e\x13\x0b\x0e\x13\x0b\x0e\x14\x0c\x0f\x14\x0d\x0f\ \x15\x0a\x0c\x15\x0c\x0e\x15\x0b\x0e\x15\x0c\x0e\x18\x0c\x0e\x17\ \x0d\x0f\x16\x0c\x10\x14\x0c\x10\x15\x0c\x0e\x16\x0d\x10\x18\x0d\ \x10\x18\x0b\x11\x16\x0b\x11\x16\x0a\x10\x15\x0c\x10\x15\x0c\x11\ \x16\x0a\x10\x15\x0a\x10\x14\x0d\x11\x15\x0d\x11\x15\x0b\x0f\x15\ \x0e\x11\x19\x0e\x11\x19\x0d\x10\x18\x0d\x10\x18\x0e\x11\x17\x0c\ \x10\x15\x0d\x11\x15\x0c\x10\x15\x0d\x11\x16\x0e\x11\x19\x0c\x0f\ \x17\x0d\x10\x17\x0b\x11\x16\x0d\x14\x17\x0d\x14\x17\x0c\x13\x17\ \x0c\x12\x17\x0c\x12\x17\x0c\x12\x17\x0e\x12\x16\x0d\x12\x16\x0d\ \x11\x17\x00\x00\x00\x4d\x87\xc8\x4b\x81\xbe\x42\x74\xb2\x35\x68\ \xa6\x35\x6c\xa8\x49\x85\xc0\x54\x94\xd0\x50\x8d\xc9\x2f\x5f\x94\ \x28\x51\x84\x3b\x68\xa1\x49\x7c\xb8\x4e\x81\xbf\x50\x88\xc8\x51\ \x8f\xd1\x53\x91\xd3\x4f\x8c\xcd\x4d\x8a\xcb\x53\x8f\xcf\x4a\x76\ \xa4\x2e\x42\x58\x4d\x58\x63\x93\xa0\xb0\xc4\xd9\xec\xc2\xdb\xf3\ \xc1\xd9\xf1\xc1\xdb\xf2\xc2\xdb\xf5\xc3\xdb\xf6\xc1\xda\xf5\xc0\ \xd8\xf4\xc2\xd9\xf5\xc1\xd9\xf4\xbe\xd9\xf4\xbf\xda\xf5\xbf\xd9\ \xf4\xc3\xd9\xf5\xc5\xdc\xf7\xc4\xdd\xf7\xc3\xdb\xf7\xc1\xda\xf7\ \xc3\xdc\xf6\xc1\xda\xf6\xc1\xd9\xf7\xc1\xd9\xf6\xc0\xd8\xf6\xc1\ \xd9\xf7\xc1\xd9\xf7\xc4\xdb\xf8\xbc\xd1\xf0\xc1\xd8\xf7\xc3\xdb\ \xf9\xc3\xdb\xf7\xc5\xdb\xf7\xc3\xdb\xf5\xc0\xda\xf5\xc0\xdb\xf6\ \xc1\xdb\xf7\xc0\xdb\xf5\xc2\xdb\xf5\xc5\xde\xf8\xc4\xde\xf6\xc1\ \xda\xf6\xab\xc5\xe9\x44\x5b\x7c\x37\x49\x5a\x3b\x4a\x54\x2b\x39\ \x41\x0d\x12\x18\x0b\x0d\x13\x07\x0a\x12\x0b\x0f\x17\x0a\x10\x1b\ \x0a\x12\x1c\x0b\x11\x1e\x0b\x12\x1f\x0e\x14\x23\x0e\x15\x24\x10\ \x17\x28\x0e\x18\x2a\x10\x1b\x29\x11\x1d\x29\x12\x1d\x2b\x14\x1d\ \x2f\x13\x1d\x2e\x13\x1d\x2e\x16\x1f\x30\x15\x1f\x31\x15\x1e\x2e\ \x14\x1d\x29\x0e\x17\x21\x10\x18\x23\x13\x1b\x29\x11\x1a\x28\x11\ \x1a\x27\x0d\x16\x23\x08\x0f\x1b\x08\x0e\x19\x0b\x11\x1e\x0d\x13\ \x1e\x0e\x16\x21\x10\x18\x25\x14\x1c\x2b\x17\x20\x2e\x1a\x23\x31\ \x1e\x27\x34\x21\x2c\x39\x26\x33\x40\x27\x36\x44\x28\x35\x45\x22\ \x2d\x3b\x1b\x24\x2f\x13\x1b\x21\x0e\x13\x18\x0c\x0f\x14\x0d\x10\ \x15\x0c\x0f\x14\x0b\x0f\x14\x0b\x0f\x14\x0b\x0f\x15\x0a\x0d\x15\ \x0c\x0f\x17\x0b\x0f\x15\x0d\x0f\x18\x0d\x10\x18\x0d\x11\x16\x0d\ \x10\x15\x0e\x11\x16\x0c\x11\x18\x0c\x11\x18\x0c\x11\x18\x0b\x11\ \x17\x0c\x11\x16\x0d\x11\x16\x0d\x11\x16\x0d\x11\x16\x0a\x10\x15\ \x0c\x12\x17\x0c\x11\x16\x0d\x11\x16\x0d\x11\x17\x0d\x10\x19\x0e\ \x10\x19\x0e\x11\x19\x0d\x0f\x18\x0d\x11\x17\x0e\x12\x17\x0e\x12\ \x17\x0c\x10\x15\x0d\x11\x16\x0d\x11\x18\x0e\x11\x19\x0f\x12\x19\ \x0c\x12\x17\x0d\x13\x17\x0d\x13\x18\x0d\x13\x19\x0d\x13\x1a\x0d\ \x13\x1a\x0e\x14\x1b\x0f\x12\x1a\x0e\x11\x19\x0e\x11\x19\x00\x00\ \x00\x4d\x87\xc8\x4d\x84\xc1\x43\x78\xb6\x36\x69\xa9\x32\x69\xa6\ \x46\x80\xbc\x55\x94\xd0\x54\x91\xce\x37\x6a\xa0\x29\x51\x84\x36\ \x62\x9a\x49\x7b\xb7\x4b\x7f\xbc\x4f\x87\xc5\x51\x8f\xd1\x4f\x90\ \xd4\x4e\x8e\xd1\x4e\x8c\xcd\x54\x91\xd1\x52\x83\xb8\x2a\x45\x61\ \x41\x4d\x58\x78\x86\x92\xbf\xd2\xe4\xc3\xdb\xf1\xc1\xd9\xef\xc1\ \xda\xf1\xc1\xdb\xf4\xc2\xdb\xf5\xc2\xda\xf6\xc0\xd8\xf4\xc3\xd9\ \xf6\xc3\xd9\xf7\xbe\xd8\xf5\xbd\xd8\xf5\xbd\xd8\xf5\xbe\xd7\xf7\ \xc2\xdb\xf9\xc4\xdc\xfa\xc2\xdb\xfb\xbf\xda\xf8\xc2\xdc\xf9\xc2\ \xdb\xfa\xc0\xd9\xf9\xc1\xda\xf9\xc0\xda\xfa\xbf\xd8\xfa\xbe\xd7\ \xf9\xc2\xdb\xfa\xbe\xd6\xf5\xc0\xd8\xf9\xbf\xd8\xfa\xc1\xd9\xf9\ \xc0\xd9\xf8\xbf\xd8\xf6\xbf\xda\xf5\xc0\xdb\xf6\xbf\xda\xf5\xbd\ \xd8\xf3\xbf\xda\xf5\xc3\xdc\xf6\xc3\xdc\xf6\xbf\xd9\xf7\xa7\xc2\ \xe6\x43\x59\x7a\x34\x44\x55\x39\x48\x51\x2a\x36\x3e\x0e\x12\x19\ \x0b\x0c\x13\x0a\x0b\x14\x0b\x0e\x18\x09\x0f\x19\x08\x10\x1b\x0c\ \x12\x1f\x0d\x13\x20\x0c\x14\x22\x0e\x14\x23\x0f\x17\x26\x0f\x19\ \x2b\x12\x1d\x2a\x11\x1d\x29\x13\x1e\x2a\x13\x1f\x2e\x14\x1e\x2f\ \x13\x1d\x2f\x14\x1e\x2f\x16\x20\x31\x14\x1f\x2d\x13\x1d\x28\x10\ \x19\x22\x0f\x18\x22\x11\x1a\x28\x12\x1b\x29\x11\x19\x27\x0f\x17\ \x24\x0b\x11\x1e\x08\x0e\x19\x0b\x11\x1c\x0d\x14\x1e\x0d\x16\x21\ \x10\x19\x25\x13\x1b\x29\x17\x20\x2e\x1c\x25\x33\x1f\x28\x35\x21\ \x2c\x39\x23\x32\x3f\x28\x38\x47\x26\x34\x45\x25\x30\x3f\x1d\x25\ \x31\x15\x1d\x22\x0c\x12\x17\x0c\x10\x15\x0d\x10\x15\x0c\x11\x16\ \x0c\x10\x15\x0c\x10\x15\x0c\x10\x15\x0d\x10\x18\x0d\x10\x17\x0c\ \x10\x15\x0d\x11\x17\x0d\x10\x17\x0d\x11\x16\x0c\x11\x16\x0b\x12\ \x16\x0d\x13\x19\x0e\x14\x1b\x0e\x15\x1c\x0f\x15\x1c\x0f\x15\x1b\ \x0f\x14\x1a\x0f\x13\x18\x0e\x12\x17\x0d\x12\x18\x0c\x12\x17\x0d\ \x13\x18\x0d\x12\x17\x0f\x12\x17\x0f\x13\x17\x0e\x12\x17\x10\x14\ \x18\x0f\x13\x18\x0f\x13\x18\x10\x14\x19\x0f\x13\x18\x0f\x13\x18\ \x0f\x13\x18\x10\x13\x1b\x0e\x12\x1a\x0e\x14\x19\x0e\x14\x19\x0f\ \x15\x1a\x0e\x14\x1a\x0f\x15\x1c\x0e\x14\x1b\x0e\x14\x1b\x0f\x14\ \x1d\x0e\x13\x1c\x0e\x14\x1d\x0e\x14\x1b\x00\x00\x00\x4d\x87\xc9\ \x4f\x85\xc3\x47\x7d\xbc\x3a\x6f\xb0\x33\x68\xa6\x40\x77\xb4\x50\ \x8d\xc9\x53\x91\xce\x42\x75\xac\x2e\x56\x88\x35\x5f\x96\x4a\x7b\ \xb5\x4c\x7f\xbb\x50\x85\xc3\x50\x8c\xcc\x51\x91\xd2\x4e\x8f\xd0\ \x53\x90\xce\x5b\x97\xd5\x5d\x92\xcc\x31\x51\x76\x38\x47\x53\x64\ \x73\x7b\xb3\xc5\xd3\xc4\xda\xee\xc2\xd9\xef\xc2\xdb\xf2\xc3\xdd\ \xf5\xc4\xdd\xf7\xc4\xdc\xf8\xc3\xdb\xf9\xc3\xda\xf9\xc0\xda\xf8\ \xbc\xd8\xf6\xb8\xd5\xf3\xb7\xd2\xf0\xb7\xd1\xee\xbc\xd3\xee\xbf\ \xd2\xed\xc0\xd4\xee\xbd\xd3\xed\xbf\xd5\xef\xbf\xd4\xf0\xbe\xd4\ \xf0\xbf\xd4\xf0\xbc\xd2\xee\xc0\xd6\xf2\xbe\xd3\xf0\xc0\xd5\xf2\ \xbf\xd3\xf1\xbf\xd4\xf2\xbf\xd5\xf4\xc0\xd7\xf5\xc0\xd7\xf7\xbf\ \xd7\xf6\xc0\xd9\xf5\xbe\xd9\xf4\xbf\xd9\xf5\xbd\xd7\xf5\xbe\xd8\ \xf6\xc1\xd9\xf6\xc0\xd8\xf5\xbd\xd7\xf6\xa2\xbd\xe0\x3c\x55\x74\ \x35\x44\x55\x3b\x48\x51\x22\x2e\x36\x0d\x11\x18\x0b\x0c\x14\x09\ \x0b\x15\x0c\x0e\x18\x0a\x10\x1b\x09\x10\x1b\x0a\x13\x1f\x0c\x15\ \x22\x0e\x15\x23\x0f\x18\x26\x0f\x19\x28\x10\x1a\x2b\x10\x1a\x2b\ \x12\x1c\x2c\x13\x1d\x2e\x13\x1d\x2e\x13\x1d\x2f\x14\x1e\x2f\x14\ \x1e\x2f\x16\x20\x31\x14\x20\x2e\x13\x1f\x2a\x11\x1b\x24\x10\x19\ \x24\x13\x1c\x2c\x13\x1c\x2a\x11\x19\x28\x12\x18\x25\x0b\x11\x1d\ \x07\x0d\x18\x0b\x11\x1c\x0d\x14\x1e\x0e\x17\x20\x11\x1a\x25\x14\ \x1c\x29\x16\x1f\x2d\x1b\x24\x32\x1d\x26\x34\x21\x2c\x39\x24\x31\ \x3e\x26\x35\x46\x26\x33\x45\x23\x2e\x3f\x1c\x25\x31\x14\x1e\x23\ \x0c\x12\x17\x0f\x13\x18\x0e\x12\x17\x0e\x12\x17\x0e\x12\x17\x0e\ \x12\x17\x0e\x12\x17\x0f\x12\x1a\x0f\x11\x1a\x0e\x12\x17\x0f\x13\ \x18\x0e\x12\x17\x0e\x11\x17\x0e\x13\x19\x0e\x14\x19\x11\x18\x1f\ \x0f\x17\x1e\x11\x1a\x21\x10\x18\x21\x0f\x18\x1f\x11\x18\x1f\x0f\ \x16\x1b\x0e\x15\x1a\x0d\x16\x1a\x0f\x15\x1a\x0d\x13\x18\x0e\x14\ \x19\x0d\x13\x18\x0d\x13\x18\x0d\x14\x19\x0e\x14\x19\x0e\x14\x19\ \x0e\x14\x19\x0f\x15\x1a\x0e\x14\x19\x0f\x15\x1a\x0e\x14\x19\x10\ \x16\x1b\x10\x16\x1b\x11\x17\x1c\x10\x16\x1b\x0f\x18\x1c\x10\x17\ \x1c\x12\x19\x1e\x11\x17\x1e\x11\x17\x1e\x10\x16\x1e\x11\x16\x1f\ \x11\x16\x1e\x10\x16\x1d\x00\x00\x00\x4b\x84\xca\x4d\x84\xc3\x48\ \x7e\xbe\x3f\x73\xb5\x36\x6a\xa9\x3b\x71\xae\x4b\x86\xc2\x55\x93\ \xd1\x48\x7a\xb4\x2f\x57\x89\x33\x5c\x90\x47\x77\xb0\x4e\x80\xbd\ \x52\x88\xc4\x50\x8b\xca\x52\x90\xcf\x4f\x8f\xcc\x57\x93\xce\x61\ \x9d\xd9\x64\x9b\xd8\x42\x68\x92\x3c\x4c\x5a\x60\x6e\x74\x8c\x9d\ \xab\xbd\xd1\xe6\xc3\xdb\xf1\xc4\xdc\xf2\xc6\xdf\xf7\xc7\xdd\xf8\ \xc3\xda\xf7\xbd\xd3\xf2\xae\xc8\xe8\x9b\xb7\xd9\x82\x9e\xc0\x67\ \x83\xa5\x52\x6a\x8d\x44\x58\x71\x3c\x4c\x60\x3d\x49\x5a\x3a\x46\ \x55\x3b\x48\x57\x3f\x4c\x5d\x44\x50\x63\x42\x4f\x64\x40\x4c\x5f\ \x3b\x49\x5a\x43\x52\x64\x47\x55\x69\x4d\x5b\x70\x51\x5e\x72\x5d\ \x6a\x7f\x6a\x79\x8f\x88\x98\xaf\x96\xa9\xc0\x9c\xaf\xc8\xa4\xb9\ \xd4\xa8\xbf\xdb\xb0\xc6\xe4\xb7\xcf\xeb\xbd\xd6\xf4\xc0\xd9\xf6\ \xbe\xd8\xf6\xbc\xd7\xf7\x9a\xb7\xd8\x35\x4d\x6b\x31\x41\x51\x3c\ \x49\x52\x23\x2e\x38\x0e\x10\x19\x0a\x0a\x14\x0a\x0b\x15\x0b\x0e\ \x19\x0b\x10\x1b\x0b\x13\x1d\x0b\x14\x20\x0b\x14\x20\x0d\x17\x25\ \x0f\x19\x29\x0f\x19\x2a\x10\x1a\x2b\x0f\x19\x2a\x12\x1c\x2e\x12\ \x1c\x2e\x13\x1c\x2f\x13\x1d\x2f\x13\x1d\x2f\x14\x1e\x2f\x14\x1e\ \x2f\x12\x1e\x2c\x10\x1e\x2a\x10\x1a\x24\x11\x19\x27\x14\x1b\x2d\ \x13\x1c\x2a\x13\x1a\x29\x12\x19\x26\x0c\x12\x1e\x08\x0d\x18\x0a\ \x10\x1b\x0c\x13\x1c\x0c\x15\x1e\x11\x19\x25\x13\x1c\x29\x17\x20\ \x2e\x1a\x23\x31\x1e\x27\x34\x22\x2d\x39\x26\x33\x41\x29\x37\x48\ \x27\x35\x47\x21\x2f\x3f\x1b\x27\x32\x14\x1f\x24\x0f\x15\x1a\x10\ \x13\x19\x0f\x13\x18\x0e\x14\x19\x0e\x13\x18\x0e\x13\x18\x0e\x13\ \x19\x0d\x13\x1a\x0d\x13\x1a\x0d\x13\x19\x0d\x14\x17\x0f\x16\x19\ \x0f\x15\x1a\x11\x16\x1c\x14\x1a\x1e\x13\x1b\x22\x13\x1d\x23\x12\ \x1c\x23\x13\x1c\x24\x12\x1b\x24\x12\x1c\x23\x12\x1d\x21\x11\x1a\ \x1e\x10\x19\x1d\x10\x18\x1c\x10\x15\x1a\x10\x16\x1b\x11\x17\x1c\ \x12\x18\x1d\x10\x16\x1b\x11\x16\x1c\x11\x17\x1c\x12\x18\x1d\x11\ \x17\x1c\x11\x17\x1c\x12\x18\x1d\x11\x17\x1c\x14\x19\x1e\x12\x18\ \x1d\x13\x19\x1e\x13\x1b\x20\x10\x19\x1f\x11\x1a\x1d\x13\x1c\x1f\ \x13\x1c\x20\x10\x19\x1d\x13\x1c\x21\x17\x1c\x23\x14\x1a\x20\x14\ \x1b\x1f\x00\x00\x00\x47\x80\xc7\x4c\x81\xc3\x48\x7d\xbe\x40\x76\ \xb7\x36\x6c\xab\x39\x71\xaf\x49\x84\xc2\x58\x90\xce\x4f\x81\xbc\ \x31\x5b\x8c\x30\x56\x83\x42\x6e\xa6\x4f\x82\xbc\x52\x88\xc3\x51\ \x8d\xc9\x51\x8f\xcd\x52\x91\xce\x58\x95\xd1\x60\x9f\xd5\x61\x9d\ \xdb\x57\x82\xb6\x36\x4f\x68\x59\x68\x76\x62\x71\x79\x94\xa3\xb3\ \xbb\xce\xe5\xba\xd1\xec\xac\xc5\xe4\x91\xac\xce\x74\x91\xb3\x5c\ \x79\x9b\x45\x65\x8a\x3c\x5c\x7e\x31\x51\x76\x27\x44\x69\x1c\x31\ \x50\x11\x20\x36\x07\x11\x1e\x06\x09\x15\x08\x0a\x17\x05\x0b\x14\ \x06\x0d\x17\x05\x0c\x16\x07\x0e\x18\x07\x0e\x18\x08\x0f\x19\x08\ \x0f\x18\x09\x0f\x1b\x07\x0d\x19\x09\x10\x1a\x08\x0e\x18\x09\x10\ \x1a\x0e\x16\x20\x11\x19\x23\x16\x20\x28\x1e\x29\x32\x2d\x37\x42\ \x3b\x47\x53\x51\x60\x6f\x81\x92\xa2\xa9\xbd\xd1\xb4\xce\xe8\xb6\ \xd2\xf2\x8c\xa5\xc6\x2b\x3e\x56\x32\x40\x4f\x3b\x4b\x58\x25\x30\ \x3a\x0e\x10\x1a\x0a\x0a\x15\x0a\x0c\x17\x09\x0d\x18\x0a\x12\x1d\ \x0a\x13\x1f\x0b\x14\x21\x0c\x15\x23\x0e\x18\x26\x0f\x19\x2a\x0f\ \x19\x2a\x10\x1a\x2b\x10\x1b\x2b\x10\x1d\x2c\x10\x1d\x2d\x11\x1e\ \x2e\x11\x1e\x2f\x11\x1d\x2f\x14\x1f\x30\x15\x20\x2e\x14\x1f\x2a\ \x15\x1e\x28\x10\x19\x23\x0f\x18\x24\x14\x1c\x2e\x14\x1b\x2e\x12\ \x1a\x2b\x11\x19\x27\x0c\x12\x1d\x09\x0d\x18\x0b\x11\x1c\x0c\x13\ \x1e\x0e\x16\x23\x11\x18\x26\x14\x1b\x2a\x18\x20\x2e\x1a\x23\x31\ \x1e\x29\x37\x23\x2d\x3b\x26\x31\x41\x29\x36\x48\x28\x36\x49\x22\ \x2f\x40\x1e\x2b\x36\x17\x21\x28\x11\x19\x1d\x11\x17\x1a\x11\x17\ \x1a\x11\x16\x1c\x0f\x15\x1c\x11\x17\x1e\x10\x16\x1d\x11\x17\x1e\ \x11\x17\x1e\x11\x16\x1d\x12\x17\x1d\x11\x19\x1d\x11\x1a\x1d\x11\ \x1c\x1f\x14\x1e\x25\x15\x1e\x27\x15\x1f\x27\x16\x21\x29\x18\x20\ \x29\x17\x20\x29\x18\x25\x2a\x17\x22\x27\x16\x20\x25\x13\x1c\x21\ \x15\x1e\x21\x14\x1d\x20\x13\x1c\x1f\x15\x1d\x21\x16\x1d\x20\x13\ \x1c\x20\x13\x1c\x20\x13\x1c\x20\x14\x1d\x21\x14\x1c\x20\x17\x1e\ \x20\x16\x1d\x21\x17\x1d\x23\x16\x1e\x23\x16\x20\x23\x17\x20\x23\ \x15\x21\x24\x14\x1f\x23\x17\x20\x24\x15\x20\x24\x14\x1f\x24\x15\ \x1f\x25\x19\x21\x28\x16\x20\x27\x18\x20\x27\x18\x21\x25\x00\x00\ \x00\x42\x7b\xc6\x49\x7f\xc4\x47\x7d\xbe\x42\x78\xb6\x38\x6d\xac\ \x37\x6d\xac\x47\x7f\xbd\x54\x90\xcc\x52\x8a\xc4\x36\x64\x95\x30\ \x57\x85\x3d\x68\x9e\x50\x81\xba\x55\x89\xc5\x52\x8a\xc8\x54\x90\ \xce\x53\x92\xcf\x5a\x96\xd2\x61\x9d\xd5\x61\x9d\xdd\x69\x99\xd2\ \x46\x64\x86\x46\x57\x67\x53\x64\x6c\x4e\x5c\x68\x71\x81\x92\x64\ \x7d\x94\x44\x61\x80\x36\x58\x7b\x34\x57\x7d\x33\x57\x7c\x31\x53\ \x7c\x34\x55\x7c\x2f\x51\x78\x27\x45\x6a\x1d\x32\x4f\x15\x23\x38\ \x0a\x14\x20\x06\x09\x14\x0a\x0c\x17\x09\x0e\x16\x0c\x11\x19\x0d\ \x12\x1a\x0b\x10\x19\x0c\x11\x19\x0c\x11\x19\x0d\x12\x1b\x0d\x12\ \x1c\x0e\x12\x1c\x10\x15\x1e\x0e\x13\x1c\x0f\x13\x1b\x0f\x16\x1c\ \x0f\x16\x1d\x12\x19\x20\x1a\x21\x24\x1a\x1f\x23\x1f\x23\x28\x1e\ \x23\x28\x19\x21\x26\x29\x35\x3e\x60\x70\x7f\x81\x94\xa8\x4e\x60\ \x75\x24\x33\x46\x33\x43\x52\x48\x5a\x66\x26\x33\x3e\x0d\x11\x1b\ \x09\x0b\x15\x08\x0a\x15\x09\x0e\x19\x09\x11\x1c\x0a\x13\x1f\x0b\ \x14\x22\x0d\x16\x24\x0d\x17\x25\x0f\x1a\x28\x0f\x19\x2a\x10\x1a\ \x2a\x10\x1c\x2a\x10\x1d\x2d\x12\x1e\x2f\x12\x1e\x30\x12\x1e\x30\ \x12\x1e\x30\x13\x20\x2f\x15\x20\x2e\x15\x1f\x2c\x13\x1c\x27\x12\ \x1b\x23\x11\x1a\x25\x15\x1c\x2e\x14\x1b\x2f\x15\x1c\x2e\x13\x1a\ \x2a\x0f\x14\x22\x08\x0c\x18\x0a\x10\x1b\x0f\x14\x20\x0f\x16\x23\ \x11\x18\x26\x14\x1c\x2a\x17\x20\x2e\x1a\x23\x31\x1d\x28\x36\x22\ \x2e\x3c\x24\x32\x40\x26\x35\x46\x28\x36\x47\x24\x32\x40\x1e\x2c\ \x35\x19\x24\x2a\x13\x1e\x21\x14\x1c\x1f\x13\x1b\x1e\x10\x19\x1d\ \x13\x18\x1d\x13\x19\x1e\x14\x1a\x1f\x13\x19\x1e\x14\x1a\x1f\x14\ \x1b\x1f\x13\x1c\x20\x13\x1d\x21\x12\x1d\x22\x14\x1f\x25\x18\x21\ \x29\x18\x22\x2c\x18\x22\x2c\x1a\x25\x2d\x1c\x25\x2e\x1c\x27\x2f\ \x1b\x26\x2e\x1c\x26\x2f\x1c\x25\x2d\x1c\x25\x29\x17\x20\x23\x19\ \x22\x25\x17\x20\x24\x19\x21\x25\x18\x21\x24\x17\x20\x23\x18\x21\ \x25\x19\x22\x26\x1a\x22\x26\x1a\x21\x24\x18\x21\x24\x19\x22\x26\ \x18\x21\x26\x1a\x23\x28\x1c\x25\x28\x1c\x25\x28\x1a\x25\x27\x1a\ \x24\x29\x1b\x24\x29\x1b\x25\x2a\x1a\x25\x2a\x1c\x25\x2c\x1c\x25\ \x2c\x1c\x26\x2d\x1c\x26\x2b\x1d\x26\x2a\x00\x00\x00\x3f\x7c\xc9\ \x48\x7f\xc6\x49\x80\xc1\x44\x7a\xb9\x39\x6e\xad\x32\x68\xa5\x3f\ \x75\xb3\x53\x8e\xca\x55\x92\xcc\x40\x73\xa5\x31\x59\x88\x38\x62\ \x97\x4f\x80\xb7\x57\x8a\xc4\x55\x8b\xc8\x55\x8f\xcd\x54\x91\xd0\ \x5a\x96\xd2\x60\x99\xd4\x5c\x98\xd7\x65\x9a\xd6\x4e\x74\x9f\x40\ \x56\x69\x56\x68\x6f\x49\x54\x5b\x39\x44\x4e\x3f\x54\x67\x3c\x58\ \x79\x36\x55\x7c\x32\x55\x7f\x33\x55\x80\x2f\x53\x7e\x30\x53\x7a\ \x2b\x50\x77\x22\x42\x66\x1d\x33\x4f\x11\x1f\x35\x0c\x14\x21\x07\ \x08\x14\x09\x0a\x15\x0b\x0e\x16\x0a\x10\x17\x0b\x11\x18\x0c\x12\ \x19\x0c\x12\x19\x0c\x12\x19\x0b\x11\x19\x0d\x12\x1b\x0d\x12\x1b\ \x0d\x13\x1b\x0f\x12\x1b\x0f\x12\x19\x11\x15\x1a\x10\x16\x1b\x14\ \x1a\x1f\x19\x1f\x24\x1b\x21\x26\x1b\x21\x24\x20\x24\x25\x23\x27\ \x28\x24\x2a\x2b\x24\x2b\x2f\x27\x2f\x36\x26\x2f\x3b\x2a\x35\x41\ \x40\x50\x5d\x57\x69\x74\x39\x46\x50\x0f\x15\x1e\x09\x0a\x14\x0a\ \x0c\x17\x0a\x0e\x19\x09\x12\x1c\x0a\x13\x1e\x0c\x15\x22\x0f\x18\ \x25\x0e\x18\x26\x0f\x1a\x28\x0e\x19\x27\x11\x1c\x2a\x11\x1d\x2b\ \x0f\x1d\x2d\x10\x1c\x2e\x11\x1d\x31\x12\x1e\x30\x13\x1f\x31\x15\ \x21\x31\x14\x20\x2b\x15\x1f\x2c\x15\x1e\x2a\x12\x1b\x24\x11\x19\ \x25\x15\x1d\x2e\x16\x1d\x31\x15\x1d\x30\x12\x1a\x2a\x0f\x13\x22\ \x09\x0c\x1a\x0b\x10\x1b\x0d\x13\x1f\x0f\x17\x24\x12\x1a\x28\x14\ \x1d\x2b\x18\x20\x2e\x1a\x24\x32\x1b\x27\x35\x20\x2d\x3b\x23\x31\ \x3e\x28\x37\x46\x28\x37\x47\x26\x34\x42\x20\x2d\x36\x1a\x27\x2c\ \x16\x22\x25\x15\x20\x21\x15\x1e\x21\x15\x20\x22\x15\x1e\x21\x14\ \x1d\x20\x16\x1f\x22\x18\x21\x24\x16\x1f\x22\x17\x20\x24\x15\x1f\ \x24\x16\x21\x28\x16\x22\x28\x17\x22\x2a\x19\x23\x2d\x1a\x23\x2f\ \x1b\x26\x32\x1a\x26\x30\x1e\x28\x32\x20\x2c\x36\x1f\x2b\x35\x21\ \x2c\x35\x21\x2b\x33\x1f\x28\x2c\x1e\x27\x2a\x1d\x26\x29\x1f\x28\ \x2b\x1e\x27\x2a\x1e\x28\x28\x1d\x26\x28\x1d\x26\x29\x1f\x28\x2b\ \x1f\x27\x2a\x20\x27\x2a\x1f\x28\x2a\x1e\x27\x2a\x1e\x29\x2d\x1f\ \x29\x2c\x21\x2a\x2d\x20\x29\x2c\x20\x2a\x2e\x1f\x29\x2f\x20\x2a\ \x31\x22\x2c\x33\x24\x2c\x33\x20\x2b\x2f\x20\x2b\x30\x22\x2d\x31\ \x22\x2d\x31\x23\x2e\x32\x00\x00\x00\x3e\x7c\xcb\x48\x82\xc8\x4a\ \x81\xc1\x46\x7a\xb9\x3c\x6f\xae\x34\x67\xa5\x3a\x6f\xad\x4e\x87\ \xc3\x5b\x95\xd0\x48\x7c\xb2\x36\x5f\x90\x36\x5e\x93\x4c\x7c\xb2\ \x55\x86\xbf\x56\x89\xc6\x55\x8e\xcb\x4f\x8c\xc9\x51\x8e\xcb\x5a\ \x91\xce\x59\x96\xd2\x5e\x99\xd5\x4f\x7d\xb1\x3c\x5f\x80\x43\x5e\ \x6f\x4b\x5d\x6a\x3e\x4f\x5e\x3f\x57\x6c\x39\x57\x79\x32\x54\x7d\ \x32\x54\x7f\x33\x54\x7d\x32\x54\x7d\x30\x53\x79\x2a\x4e\x73\x24\ \x42\x67\x1d\x32\x4e\x14\x1f\x34\x0c\x13\x20\x09\x09\x14\x0a\x0a\ \x15\x0a\x0e\x15\x0a\x10\x17\x0b\x11\x18\x0a\x10\x17\x0c\x12\x19\ \x0c\x12\x19\x0c\x11\x19\x0c\x11\x1a\x0c\x11\x1a\x0d\x13\x1a\x0f\ \x13\x1b\x0f\x12\x1a\x11\x14\x1c\x11\x17\x1d\x14\x1a\x20\x17\x1f\ \x26\x18\x20\x27\x1b\x24\x28\x1e\x24\x28\x22\x27\x2a\x22\x28\x2b\ \x27\x2c\x2d\x29\x2e\x31\x35\x3b\x41\x4e\x56\x5f\x59\x65\x6e\x57\ \x65\x6e\x32\x3d\x43\x0d\x11\x18\x0a\x0b\x15\x08\x0a\x15\x0a\x0f\ \x1a\x09\x11\x1c\x0a\x13\x1f\x0c\x15\x22\x0d\x16\x23\x0d\x17\x24\ \x0f\x1a\x28\x0e\x19\x27\x11\x1a\x2c\x10\x1b\x2a\x0f\x1c\x2b\x12\ \x1f\x2f\x12\x1e\x30\x13\x1f\x31\x13\x20\x30\x15\x22\x2f\x15\x21\ \x2b\x16\x1f\x2c\x14\x1e\x2b\x11\x1a\x25\x12\x1a\x26\x15\x1e\x2e\ \x17\x1e\x31\x16\x1d\x2f\x14\x1b\x2b\x0e\x13\x20\x09\x0d\x18\x0c\ \x10\x1b\x0e\x14\x20\x0e\x16\x23\x11\x1a\x27\x13\x1c\x2a\x17\x21\ \x2f\x18\x23\x31\x1b\x27\x35\x1f\x2c\x3a\x23\x32\x3f\x27\x36\x45\ \x28\x37\x47\x26\x34\x43\x23\x2e\x39\x20\x2c\x31\x1b\x27\x29\x1a\ \x24\x24\x1b\x25\x26\x1a\x23\x26\x1a\x23\x26\x18\x21\x24\x1a\x23\ \x26\x1a\x23\x26\x1c\x24\x27\x1c\x25\x29\x1c\x25\x29\x1b\x24\x2b\ \x1a\x23\x2c\x1a\x24\x2e\x1b\x26\x32\x1b\x26\x34\x1d\x28\x35\x1e\ \x2a\x36\x1f\x2c\x38\x21\x2f\x39\x23\x32\x39\x26\x32\x3a\x2a\x34\ \x39\x26\x30\x31\x25\x2e\x31\x26\x2f\x32\x24\x2d\x30\x25\x2f\x2e\ \x26\x30\x30\x25\x2f\x2f\x25\x2f\x30\x27\x30\x31\x27\x2e\x31\x26\ \x2e\x30\x25\x2f\x2f\x27\x32\x34\x27\x32\x36\x28\x32\x35\x27\x30\ \x33\x2a\x33\x36\x28\x33\x37\x27\x31\x38\x28\x33\x37\x2a\x33\x37\ \x2a\x33\x37\x2b\x35\x39\x2a\x35\x38\x2a\x36\x3a\x2b\x36\x3a\x2c\ \x38\x3b\x00\x00\x00\x40\x81\xce\x48\x85\xca\x49\x83\xc3\x48\x7d\ \xbc\x3f\x72\xb0\x35\x68\xa6\x37\x6c\xa9\x4b\x83\xbf\x5b\x95\xd1\ \x51\x84\xbd\x39\x62\x95\x32\x59\x8e\x44\x73\xaa\x50\x7f\xb8\x54\ \x85\xc2\x54\x8c\xc9\x50\x8c\xc8\x50\x8d\xca\x58\x8f\xcc\x5b\x97\ \xd2\x5e\x9a\xd4\x63\x99\xd4\x5f\x91\xc2\x57\x7c\xa0\x4c\x6a\x86\ \x48\x64\x7d\x40\x5e\x7b\x33\x56\x79\x30\x56\x7e\x2f\x55\x7e\x32\ \x55\x7d\x30\x56\x7a\x2e\x51\x75\x2c\x4d\x73\x23\x40\x64\x1a\x2e\ \x4c\x10\x1e\x33\x0b\x12\x1f\x08\x09\x13\x09\x09\x15\x09\x0b\x14\ \x09\x0e\x17\x0a\x0f\x17\x0c\x11\x1a\x0b\x0f\x19\x0c\x11\x1a\x0b\ \x11\x19\x0d\x12\x1b\x0b\x11\x19\x0c\x12\x19\x0e\x12\x1b\x0e\x11\ \x1b\x0e\x14\x1b\x11\x17\x1d\x13\x19\x1f\x18\x1d\x22\x1b\x21\x26\ \x1b\x23\x26\x1f\x25\x28\x21\x28\x2a\x21\x29\x2c\x24\x2a\x2d\x26\ \x2b\x2e\x27\x2c\x31\x35\x3a\x41\x30\x3a\x40\x21\x2b\x30\x0f\x16\ \x1c\x0c\x0f\x13\x0a\x0b\x14\x0a\x0c\x17\x0a\x0f\x1a\x0a\x11\x1d\ \x0a\x13\x1f\x0c\x15\x22\x0d\x16\x23\x0e\x18\x25\x0e\x19\x27\x0f\ \x18\x29\x10\x1a\x2c\x11\x1c\x2c\x10\x1d\x2c\x12\x1e\x2f\x12\x1e\ \x30\x13\x1f\x31\x14\x20\x31\x14\x20\x2f\x15\x21\x2c\x15\x1f\x2c\ \x16\x1e\x2b\x13\x1c\x27\x11\x19\x26\x17\x1f\x30\x17\x20\x32\x16\ \x1f\x30\x14\x1c\x2b\x0f\x15\x21\x0a\x0e\x19\x0b\x11\x1b\x0e\x15\ \x21\x11\x18\x26\x11\x1a\x27\x14\x1d\x2b\x15\x20\x2e\x19\x24\x31\ \x19\x26\x33\x1f\x2b\x3a\x24\x32\x40\x26\x36\x45\x28\x36\x48\x27\ \x35\x45\x29\x33\x40\x25\x30\x35\x1f\x2a\x2c\x1f\x28\x29\x22\x2a\ \x2b\x21\x28\x2c\x20\x29\x2d\x20\x29\x2d\x20\x29\x2d\x20\x29\x2c\ \x22\x2a\x2d\x24\x2b\x2e\x21\x2a\x2e\x21\x29\x30\x1e\x28\x31\x1f\ \x28\x32\x1e\x29\x34\x1d\x28\x36\x1e\x2a\x37\x1e\x2b\x38\x1f\x2e\ \x3a\x23\x32\x3c\x27\x37\x3d\x2b\x39\x3d\x30\x3c\x3e\x2f\x39\x39\ \x2d\x37\x38\x2f\x38\x3b\x2e\x38\x39\x2d\x38\x38\x2c\x38\x37\x2f\ \x39\x3a\x2f\x38\x39\x2f\x36\x37\x32\x3a\x3b\x31\x3a\x39\x30\x3a\ \x3a\x30\x3b\x3c\x31\x3c\x3e\x33\x3c\x40\x32\x3b\x3d\x36\x3f\x41\ \x34\x3e\x42\x32\x3c\x43\x33\x3f\x42\x37\x40\x43\x36\x40\x42\x37\ \x41\x41\x35\x41\x42\x37\x43\x47\x37\x41\x45\x37\x42\x44\x00\x00\ \x00\x41\x82\xd0\x48\x84\xcb\x4a\x85\xc7\x49\x7f\xbf\x40\x74\xb3\ \x36\x68\xa5\x35\x69\xa5\x47\x80\xbb\x57\x92\xce\x56\x8a\xc4\x38\ \x64\x96\x32\x5a\x8c\x42\x6f\xa6\x50\x7f\xb9\x54\x85\xc0\x56\x8c\ \xc8\x53\x8e\xcb\x55\x92\xce\x56\x92\xce\x59\x95\xd1\x5a\x96\xd4\ \x5e\x9c\xd9\x5d\x9b\xd6\x5a\x8b\xc3\x4f\x78\xa7\x45\x6a\x92\x3c\ \x60\x84\x31\x55\x7c\x2e\x54\x7d\x31\x56\x7e\x32\x55\x7c\x31\x55\ \x7a\x2b\x4f\x75\x2c\x4c\x73\x24\x3d\x62\x1a\x2e\x4c\x11\x1d\x32\ \x09\x10\x1d\x08\x09\x14\x09\x09\x16\x0b\x0c\x17\x0c\x0e\x19\x0a\ \x0f\x17\x0a\x10\x17\x0b\x0f\x1a\x0d\x12\x1c\x0b\x10\x19\x0c\x11\ \x1a\x0c\x13\x19\x0d\x13\x1a\x0d\x12\x1c\x0e\x13\x1d\x0f\x14\x1c\ \x10\x16\x1c\x13\x1a\x1e\x17\x1d\x22\x1a\x21\x25\x1a\x21\x24\x20\ \x27\x2a\x20\x27\x29\x23\x29\x2a\x25\x2a\x2b\x26\x2b\x2c\x26\x2b\ \x2c\x25\x2a\x2c\x1f\x25\x2a\x18\x1d\x22\x13\x16\x1b\x0b\x0e\x13\ \x0a\x0c\x15\x07\x0b\x15\x09\x0f\x19\x08\x0f\x1c\x0a\x13\x20\x0c\ \x15\x22\x0c\x15\x22\x0e\x17\x26\x0e\x16\x28\x11\x18\x2b\x10\x1a\ \x2b\x11\x1b\x2c\x10\x1e\x2d\x13\x1e\x30\x13\x1f\x31\x13\x20\x30\ \x15\x22\x32\x15\x22\x31\x16\x20\x31\x16\x1f\x2e\x16\x1e\x2b\x12\ \x1b\x28\x13\x1a\x29\x16\x1e\x30\x18\x20\x32\x15\x1f\x31\x15\x1d\ \x2e\x10\x17\x24\x07\x0e\x19\x0a\x13\x1d\x0c\x14\x21\x10\x18\x25\ \x11\x1a\x29\x14\x1d\x2b\x16\x21\x2e\x17\x23\x2f\x1c\x28\x35\x21\ \x2b\x3b\x25\x30\x40\x25\x33\x42\x28\x37\x47\x2c\x38\x46\x2b\x35\ \x43\x2b\x32\x3b\x28\x31\x35\x27\x30\x33\x26\x2f\x32\x26\x2f\x32\ \x27\x30\x34\x27\x31\x33\x27\x31\x31\x28\x31\x33\x27\x30\x34\x2b\ \x34\x38\x28\x31\x34\x26\x2f\x33\x24\x2c\x33\x23\x2b\x33\x21\x2a\ \x33\x1f\x2b\x35\x1f\x2d\x39\x1f\x2d\x39\x21\x31\x3a\x24\x34\x3c\ \x2d\x3a\x41\x32\x3f\x43\x36\x41\x43\x37\x43\x43\x38\x43\x41\x3b\ \x42\x41\x39\x42\x42\x3a\x44\x46\x39\x43\x43\x38\x42\x42\x3b\x44\ \x44\x3b\x43\x43\x3d\x46\x44\x3d\x45\x44\x3d\x46\x45\x3e\x48\x48\ \x3e\x48\x48\x3f\x48\x4b\x3f\x48\x4a\x3e\x49\x48\x42\x4c\x4b\x42\ \x4c\x4e\x43\x4c\x4f\x43\x4d\x4e\x45\x4d\x4d\x46\x4e\x4e\x46\x4f\ \x4f\x47\x51\x51\x45\x4f\x4f\x45\x4f\x4f\x00\x00\x00\x3e\x80\xce\ \x45\x83\xcb\x48\x83\xc7\x47\x7e\xbf\x40\x73\xb4\x37\x68\xa7\x31\ \x65\xa1\x43\x7c\xb7\x53\x8f\xcc\x55\x8d\xc7\x3d\x6b\x9e\x2d\x59\ \x89\x3c\x69\x9f\x50\x7e\xb6\x55\x86\xc0\x56\x8c\xc8\x57\x93\xcf\ \x56\x93\xcf\x57\x93\xcf\x56\x92\xce\x58\x95\xd2\x5c\x9b\xda\x58\ \x98\xd9\x4d\x88\xc5\x48\x7c\xb3\x43\x6e\x9e\x3a\x60\x8b\x30\x54\ \x7b\x2f\x53\x7b\x2f\x53\x7b\x30\x54\x7c\x30\x53\x7a\x2c\x4f\x77\ \x2c\x4a\x72\x23\x3d\x60\x16\x29\x49\x0e\x1b\x2f\x0a\x11\x1d\x07\ \x08\x13\x09\x0a\x15\x0a\x0c\x16\x0a\x0c\x17\x0a\x0d\x17\x0a\x0f\ \x18\x0a\x0e\x19\x0b\x0f\x19\x0b\x10\x19\x0c\x11\x1a\x0c\x12\x19\ \x0d\x13\x1a\x0e\x12\x1b\x0e\x11\x1b\x11\x15\x1c\x11\x15\x1b\x12\ \x17\x1c\x18\x1e\x23\x1a\x20\x25\x1e\x25\x28\x1f\x26\x29\x21\x28\ \x2b\x23\x29\x2a\x24\x29\x2a\x25\x2a\x2b\x24\x29\x2a\x23\x28\x2a\ \x1e\x25\x28\x17\x1c\x21\x12\x15\x1b\x0b\x0d\x15\x09\x0b\x14\x09\ \x0b\x15\x0b\x0f\x1a\x09\x11\x1c\x0a\x12\x1f\x0b\x14\x21\x0c\x15\ \x22\x0c\x15\x23\x0e\x16\x27\x0f\x17\x29\x0f\x19\x2b\x0f\x1b\x2b\ \x0f\x1c\x2c\x13\x1f\x30\x13\x1f\x30\x14\x21\x31\x13\x20\x30\x15\ \x21\x32\x16\x20\x32\x16\x1f\x2e\x16\x1d\x2a\x13\x1b\x27\x12\x19\ \x28\x18\x20\x31\x19\x1f\x32\x18\x1f\x32\x14\x1c\x2d\x0e\x17\x23\ \x07\x0f\x19\x0c\x12\x1d\x0c\x13\x1f\x0f\x17\x24\x12\x19\x28\x14\ \x1c\x2b\x17\x21\x2e\x19\x24\x30\x1d\x29\x36\x1f\x2a\x39\x22\x2f\ \x3d\x26\x33\x42\x2b\x38\x48\x2f\x3b\x48\x31\x3a\x46\x32\x3d\x45\ \x30\x3b\x40\x2f\x3a\x3b\x30\x3b\x3a\x2f\x39\x38\x31\x39\x3a\x33\ \x3b\x3b\x33\x3b\x3a\x32\x3a\x3a\x35\x3d\x3f\x34\x3f\x41\x32\x3b\ \x3f\x2f\x36\x3a\x2d\x32\x39\x27\x2f\x35\x23\x2d\x35\x22\x2e\x38\ \x21\x2d\x39\x23\x2f\x3b\x26\x34\x3d\x2a\x38\x40\x31\x3e\x44\x37\ \x43\x47\x3d\x49\x4b\x40\x4c\x4e\x44\x4d\x4e\x47\x4f\x4d\x44\x4c\ \x4b\x45\x4e\x4e\x46\x4f\x4f\x48\x51\x50\x48\x50\x4e\x48\x51\x4c\ \x48\x51\x4d\x49\x52\x50\x4b\x53\x52\x4d\x55\x54\x4d\x55\x55\x4d\ \x55\x56\x50\x58\x57\x4f\x57\x55\x50\x59\x56\x51\x5a\x58\x51\x5c\ \x5b\x51\x5b\x5a\x53\x5b\x5c\x53\x5b\x5b\x55\x5d\x5c\x53\x5b\x5a\ \x54\x5c\x5b\x55\x5d\x5c\x00\x00\x00\x3d\x81\xd0\x3f\x7f\xca\x44\ \x81\xc6\x43\x7e\xc0\x40\x74\xb5\x38\x69\xa8\x32\x64\xa3\x40\x75\ \xb3\x4f\x8b\xc9\x56\x90\xcc\x3f\x71\xa3\x32\x5d\x8e\x3b\x67\x9c\ \x4c\x79\xb0\x55\x84\xbd\x56\x8c\xc8\x57\x92\xcf\x53\x8f\xcc\x52\ \x8e\xca\x54\x90\xcc\x58\x95\xd2\x5c\x9a\xda\x5a\x98\xd7\x4b\x85\ \xc2\x49\x7d\xb4\x45\x72\xa4\x39\x60\x8c\x31\x54\x80\x2f\x52\x7b\ \x30\x53\x7b\x2f\x52\x7a\x2f\x52\x7a\x2e\x4f\x7a\x29\x48\x70\x20\ \x39\x5c\x15\x28\x46\x0e\x19\x2c\x09\x0f\x1a\x06\x06\x12\x08\x09\ \x15\x0b\x0d\x17\x0a\x0c\x17\x0b\x0d\x18\x0b\x0d\x19\x0b\x10\x1b\ \x0c\x10\x1a\x0b\x10\x19\x0b\x11\x19\x0b\x11\x18\x0d\x13\x1a\x0e\ \x11\x1a\x0f\x11\x1b\x10\x13\x1b\x11\x14\x1c\x15\x19\x1e\x17\x1d\ \x22\x1c\x22\x27\x1d\x24\x27\x1f\x26\x29\x20\x27\x2a\x23\x28\x2b\ \x25\x2a\x2b\x24\x29\x2a\x24\x29\x2a\x21\x27\x27\x1e\x25\x28\x17\ \x1d\x21\x0f\x12\x19\x0c\x0e\x16\x0a\x0b\x15\x08\x0a\x16\x09\x0e\ \x19\x0a\x11\x1c\x0a\x13\x1d\x0a\x13\x20\x0a\x13\x20\x0d\x16\x24\ \x0e\x17\x25\x10\x18\x28\x10\x1b\x29\x10\x1b\x2c\x10\x1d\x2d\x12\ \x1f\x2f\x12\x1e\x2f\x13\x20\x30\x13\x20\x30\x14\x21\x31\x16\x20\ \x30\x14\x1f\x2f\x16\x1f\x2c\x13\x1c\x26\x12\x1b\x27\x18\x21\x31\ \x18\x1f\x32\x15\x1d\x2f\x14\x1c\x2d\x0d\x16\x22\x06\x0e\x19\x09\ \x0f\x1a\x0e\x14\x1f\x0f\x16\x22\x12\x19\x27\x14\x1c\x2c\x18\x21\ \x30\x1a\x23\x31\x1d\x26\x33\x1f\x2a\x38\x23\x2f\x3d\x28\x35\x43\ \x2c\x39\x47\x33\x3d\x4a\x36\x3f\x49\x38\x42\x49\x3b\x45\x4a\x3b\ \x46\x45\x3b\x44\x43\x3c\x43\x42\x3c\x44\x43\x3b\x44\x42\x3e\x46\ \x43\x3f\x47\x47\x41\x4a\x4a\x3f\x49\x4a\x3a\x43\x43\x39\x41\x43\ \x33\x38\x3e\x2d\x34\x39\x25\x31\x35\x23\x2f\x37\x1f\x2a\x34\x23\ \x2d\x37\x26\x31\x3a\x2b\x38\x3e\x34\x40\x45\x3b\x46\x49\x43\x4f\ \x51\x49\x54\x57\x4e\x58\x57\x54\x5a\x58\x52\x5a\x57\x53\x5b\x58\ \x55\x5b\x59\x55\x5c\x59\x55\x5e\x59\x55\x5f\x58\x56\x5e\x5a\x5a\ \x60\x5d\x58\x5f\x5d\x5a\x61\x60\x5a\x62\x62\x5a\x62\x61\x5c\x64\ \x63\x5d\x66\x62\x5d\x67\x61\x5e\x68\x63\x5f\x69\x65\x5f\x66\x65\ \x60\x68\x67\x5f\x67\x67\x62\x68\x67\x63\x6a\x67\x62\x6b\x68\x62\ \x6b\x68\x00\x00\x00\x3a\x7f\xcf\x42\x84\xce\x44\x82\xc6\x44\x7f\ \xc0\x41\x77\xb9\x39\x6a\xab\x33\x63\xa3\x40\x74\xb0\x50\x88\xc5\ \x55\x90\xcb\x47\x78\xad\x35\x5d\x91\x38\x62\x97\x4b\x77\xad\x55\ \x85\xbd\x58\x8d\xca\x56\x90\xcd\x50\x8c\xc9\x52\x8e\xc9\x54\x91\ \xcc\x5c\x99\xd6\x5b\x9a\xd9\x56\x95\xd1\x4f\x85\xc1\x50\x80\xb7\ \x47\x77\xaa\x39\x63\x92\x30\x54\x80\x2d\x50\x79\x31\x54\x7c\x30\ \x53\x7b\x2f\x51\x7c\x2d\x4d\x79\x27\x45\x6e\x1f\x38\x5b\x14\x27\ \x43\x0e\x19\x2c\x08\x0e\x18\x09\x09\x14\x09\x0a\x16\x0a\x0e\x18\ \x0c\x0c\x18\x0b\x0d\x19\x0d\x0f\x1c\x0e\x0f\x1a\x0d\x10\x19\x0b\ \x10\x19\x0d\x12\x1b\x0c\x12\x19\x0d\x13\x1a\x0f\x12\x1a\x0f\x13\ \x1a\x10\x13\x1b\x12\x15\x1d\x16\x19\x21\x18\x1e\x23\x1a\x20\x25\ \x1c\x23\x25\x1d\x24\x27\x20\x27\x2a\x22\x28\x2b\x23\x28\x2a\x22\ \x27\x28\x21\x27\x26\x21\x27\x27\x1b\x22\x25\x16\x1b\x1f\x10\x13\ \x1a\x0b\x0c\x15\x08\x09\x15\x09\x0a\x16\x0a\x0e\x19\x0a\x10\x1b\ \x08\x12\x1c\x0a\x13\x20\x0c\x15\x22\x0c\x15\x23\x0e\x17\x25\x0f\ \x18\x26\x0f\x1b\x28\x11\x1c\x2d\x11\x1e\x2e\x11\x1e\x2e\x12\x1f\ \x30\x14\x1f\x32\x14\x21\x32\x14\x21\x30\x16\x22\x2f\x15\x1f\x2f\ \x17\x20\x2d\x11\x1c\x24\x10\x1b\x25\x17\x20\x30\x17\x1e\x31\x14\ \x1e\x30\x13\x1c\x2d\x0e\x16\x22\x09\x0f\x19\x0b\x12\x1b\x10\x16\ \x21\x10\x16\x23\x12\x19\x26\x14\x1c\x2a\x17\x1f\x30\x1b\x24\x32\ \x21\x2a\x37\x20\x2a\x37\x23\x2f\x3d\x26\x33\x41\x2e\x3b\x48\x37\ \x42\x4d\x3d\x45\x4d\x42\x4d\x51\x44\x4f\x50\x47\x4f\x4e\x46\x4c\ \x4b\x47\x4d\x4c\x46\x4e\x4d\x47\x4f\x4d\x49\x51\x50\x4a\x52\x51\ \x4c\x54\x54\x49\x51\x51\x46\x4e\x4d\x3e\x46\x47\x38\x3f\x43\x31\ \x38\x3c\x26\x31\x36\x22\x2d\x35\x21\x2b\x34\x21\x2a\x33\x25\x31\ \x37\x2c\x38\x3e\x36\x40\x46\x3f\x4a\x4e\x47\x53\x56\x50\x5c\x5c\ \x56\x61\x5e\x5e\x66\x63\x60\x66\x64\x60\x66\x64\x61\x66\x64\x61\ \x68\x65\x62\x69\x66\x64\x6b\x67\x64\x6a\x66\x64\x6a\x68\x64\x6b\ \x68\x66\x6c\x6b\x66\x6b\x6b\x65\x6d\x6c\x67\x6f\x6d\x67\x70\x6d\ \x67\x70\x6c\x6a\x72\x71\x6c\x74\x73\x6a\x72\x71\x6a\x72\x6f\x6e\ \x75\x72\x6b\x72\x6f\x6d\x74\x71\x6e\x75\x72\x6d\x76\x73\x00\x00\ \x00\x3d\x83\xcf\x42\x84\xcc\x47\x86\xc9\x46\x81\xc4\x42\x78\xbc\ \x3c\x6d\xb0\x34\x64\xa5\x3e\x70\xad\x4e\x86\xc1\x54\x90\xcb\x4a\ \x7e\xb6\x35\x61\x92\x34\x5e\x92\x49\x74\xaa\x56\x86\xbd\x5b\x8f\ \xcb\x59\x90\xcf\x51\x8c\xca\x52\x8f\xca\x56\x94\xce\x5b\x9a\xd6\ \x5a\x98\xd8\x51\x8e\xcc\x4c\x83\xbd\x4d\x7e\xb5\x47\x77\xaa\x38\ \x64\x94\x31\x55\x82\x2e\x4f\x7a\x32\x55\x7d\x31\x53\x7c\x2f\x4e\ \x79\x2d\x4d\x77\x27\x44\x6c\x1e\x35\x59\x15\x26\x40\x0d\x19\x28\ \x08\x0e\x1a\x08\x09\x15\x0a\x0a\x16\x09\x0b\x16\x0a\x0c\x17\x0c\ \x0e\x1a\x0b\x0d\x19\x0a\x0e\x19\x0c\x0f\x1a\x0b\x0f\x1a\x0a\x0f\ \x19\x0b\x11\x19\x0b\x11\x19\x0c\x12\x19\x10\x12\x1b\x11\x13\x1d\ \x12\x14\x1c\x14\x19\x1e\x16\x1c\x21\x18\x1e\x23\x1b\x22\x25\x1f\ \x26\x29\x20\x26\x2a\x20\x26\x2b\x21\x28\x2a\x21\x28\x28\x20\x27\ \x26\x1d\x24\x25\x1c\x21\x25\x15\x19\x1f\x10\x13\x1a\x0a\x0b\x14\ \x09\x09\x14\x09\x0a\x16\x0c\x0f\x1a\x0a\x10\x1b\x0a\x12\x1d\x0a\ \x13\x20\x0b\x14\x22\x0c\x15\x22\x0e\x17\x25\x0d\x19\x26\x0e\x1b\ \x28\x0f\x1c\x2c\x11\x1d\x2f\x11\x1d\x2f\x13\x1f\x30\x14\x1f\x32\ \x14\x20\x32\x14\x20\x31\x16\x21\x2e\x16\x21\x2e\x14\x1f\x2a\x13\ \x1d\x26\x11\x1a\x25\x16\x1e\x30\x17\x20\x33\x15\x1e\x32\x14\x1b\ \x2d\x0f\x15\x22\x09\x0d\x18\x09\x10\x19\x0c\x13\x1c\x10\x18\x22\ \x12\x19\x26\x14\x1c\x2b\x16\x1e\x2f\x1d\x26\x34\x1d\x27\x35\x20\ \x2b\x39\x22\x2e\x3d\x26\x33\x42\x2d\x3a\x46\x39\x42\x4c\x42\x48\ \x51\x4a\x52\x56\x4e\x56\x57\x4f\x55\x54\x4f\x55\x54\x4f\x55\x54\ \x4e\x55\x53\x4f\x57\x54\x51\x58\x56\x53\x59\x58\x57\x5b\x5c\x52\ \x56\x57\x4c\x52\x52\x45\x4b\x4d\x3c\x42\x46\x33\x3b\x3d\x2a\x33\ \x38\x23\x2b\x35\x1e\x27\x30\x1f\x28\x31\x22\x2b\x34\x2c\x35\x3d\ \x36\x41\x46\x43\x4c\x50\x4e\x57\x5b\x56\x61\x62\x5f\x68\x66\x65\ \x6e\x69\x6a\x71\x6d\x6a\x70\x6d\x6a\x70\x6b\x6b\x72\x6d\x6c\x73\ \x6e\x6b\x72\x6d\x6d\x74\x70\x6d\x74\x71\x6f\x76\x73\x6f\x77\x74\ \x6e\x76\x74\x71\x77\x75\x71\x78\x75\x71\x79\x76\x73\x7a\x78\x72\ \x79\x77\x72\x7a\x79\x73\x7b\x7a\x73\x7b\x79\x75\x7d\x7a\x76\x7d\ \x7a\x76\x7c\x7a\x77\x7e\x7b\x76\x7d\x7b\x00\x00\x00\x42\x85\xd0\ \x46\x88\xcf\x49\x88\xcb\x47\x83\xc7\x43\x79\xbd\x3e\x70\xb3\x35\ \x66\xa6\x38\x6a\xa8\x47\x80\xba\x53\x8f\xc7\x4e\x86\xbf\x38\x66\ \x97\x32\x5e\x90\x44\x71\xa6\x57\x86\xbc\x5d\x90\xcb\x5c\x92\xd0\ \x58\x92\xcf\x54\x90\xcb\x56\x94\xcf\x5a\x98\xd5\x57\x95\xd4\x4d\ \x8b\xc9\x49\x82\xbb\x4e\x82\xb7\x4b\x7c\xaf\x3d\x68\x97\x31\x56\ \x81\x2f\x52\x7a\x30\x55\x7c\x31\x54\x7b\x31\x4f\x7a\x2d\x4d\x74\ \x27\x44\x6b\x1f\x35\x58\x14\x25\x3d\x0b\x18\x26\x07\x0c\x1a\x08\ \x08\x15\x09\x09\x15\x0a\x0c\x17\x0c\x0e\x19\x0d\x0f\x1a\x0c\x0f\ \x19\x0a\x0e\x19\x0a\x0f\x19\x0d\x12\x1b\x0c\x11\x1a\x0b\x10\x19\ \x0c\x11\x1a\x0e\x12\x1a\x10\x12\x1b\x11\x12\x1c\x13\x15\x1d\x14\ \x19\x1e\x16\x1c\x21\x18\x1e\x23\x1a\x21\x24\x1d\x24\x27\x1e\x25\ \x29\x20\x26\x2b\x20\x26\x2a\x1f\x26\x29\x1f\x27\x28\x1e\x26\x29\ \x1b\x1f\x24\x17\x1a\x21\x0f\x11\x19\x0b\x0c\x16\x09\x09\x14\x09\ \x0a\x16\x0c\x0e\x19\x0a\x0f\x1a\x0a\x11\x1d\x0a\x13\x20\x0b\x14\ \x22\x0d\x16\x24\x0d\x17\x25\x0e\x1a\x27\x0d\x1a\x27\x0f\x1c\x2d\ \x11\x1d\x2f\x12\x1e\x30\x13\x1f\x31\x14\x20\x32\x16\x21\x33\x16\ \x23\x34\x17\x22\x30\x17\x22\x2f\x15\x20\x2b\x14\x1e\x27\x11\x1a\ \x26\x19\x21\x33\x17\x20\x34\x16\x1e\x32\x14\x1b\x2d\x10\x15\x24\ \x09\x0d\x18\x0b\x12\x1c\x0e\x15\x1e\x0f\x18\x21\x11\x1a\x25\x14\ \x1c\x2c\x17\x1f\x30\x1a\x22\x32\x1e\x29\x37\x20\x2b\x39\x24\x30\ \x40\x25\x32\x41\x2f\x3d\x49\x3c\x46\x4e\x46\x4d\x55\x4d\x55\x59\ \x55\x5b\x5c\x55\x5b\x59\x55\x5c\x5a\x54\x5b\x5a\x57\x5e\x5b\x56\ \x5d\x5a\x59\x60\x5d\x5c\x61\x60\x5b\x61\x60\x58\x5c\x5e\x53\x58\ \x59\x4b\x50\x53\x41\x46\x49\x35\x3e\x40\x2a\x33\x36\x24\x2a\x34\ \x1e\x26\x30\x1b\x25\x2d\x21\x2a\x32\x2b\x35\x3d\x37\x41\x46\x43\ \x4d\x4f\x4f\x58\x5a\x5a\x63\x65\x62\x6b\x69\x69\x72\x6f\x6e\x75\ \x72\x70\x76\x73\x72\x78\x73\x72\x79\x74\x73\x7a\x75\x74\x7b\x76\ \x74\x7b\x77\x74\x7b\x78\x77\x7d\x7a\x76\x7e\x7b\x75\x7e\x7b\x77\ \x7e\x7b\x7a\x81\x7e\x78\x80\x7d\x79\x81\x7e\x79\x82\x7f\x7b\x83\ \x82\x7a\x83\x81\x7b\x84\x81\x7c\x84\x81\x7d\x83\x80\x7d\x84\x81\ \x7c\x83\x80\x7e\x85\x82\x00\x00\x00\x43\x86\xd1\x44\x84\xcf\x49\ \x88\xcd\x46\x84\xc8\x3f\x78\xbd\x3c\x71\xb3\x35\x68\xa8\x35\x67\ \xa5\x3f\x76\xb1\x53\x8d\xc8\x52\x88\xc2\x38\x68\x9a\x2f\x5d\x8d\ \x3f\x6e\x9f\x52\x83\xb8\x58\x8c\xc6\x59\x91\xcc\x57\x90\xcd\x57\ \x91\xcc\x56\x93\xce\x57\x94\xd1\x54\x91\xcf\x4e\x8a\xc6\x4e\x86\ \xbf\x56\x8a\xbf\x4f\x80\xb4\x3d\x6b\x9a\x30\x55\x81\x30\x53\x7b\ \x30\x55\x7b\x31\x54\x7a\x31\x4f\x7a\x2a\x4b\x73\x27\x44\x6c\x1d\ \x33\x57\x15\x25\x3e\x0b\x17\x25\x06\x0b\x18\x08\x08\x14\x08\x09\ \x14\x0a\x0c\x17\x0c\x0e\x18\x0b\x0d\x17\x0c\x0f\x18\x0c\x11\x1a\ \x0a\x0f\x18\x0d\x12\x1b\x0b\x10\x19\x0c\x11\x1a\x0b\x10\x19\x0c\ \x12\x19\x0f\x12\x1b\x0f\x10\x1b\x11\x14\x1c\x11\x17\x1c\x15\x1b\ \x20\x19\x1e\x23\x19\x20\x23\x1b\x22\x25\x1e\x25\x28\x20\x26\x2b\ \x20\x26\x2b\x20\x26\x2b\x1e\x24\x29\x1e\x24\x28\x19\x1e\x22\x14\ \x18\x1d\x0f\x11\x19\x0a\x0c\x14\x0a\x0a\x15\x08\x0a\x16\x0a\x0d\ \x18\x09\x0e\x19\x0a\x11\x1d\x0b\x14\x21\x0a\x13\x21\x0d\x16\x24\ \x0e\x17\x25\x0e\x19\x27\x0e\x1b\x2b\x0e\x1c\x2b\x12\x1e\x2f\x13\ \x1f\x31\x15\x21\x33\x14\x20\x31\x15\x22\x34\x17\x23\x34\x15\x20\ \x30\x16\x22\x2f\x16\x21\x2d\x14\x1e\x28\x12\x1b\x26\x19\x21\x32\ \x18\x1f\x33\x14\x1e\x30\x13\x1a\x2c\x0c\x14\x20\x08\x0d\x18\x09\ \x0f\x1a\x0c\x12\x1c\x0f\x18\x21\x12\x1a\x27\x13\x1c\x2a\x16\x1f\ \x2d\x1b\x24\x32\x1a\x25\x33\x1f\x2a\x38\x23\x2f\x3e\x25\x32\x42\ \x30\x3c\x4a\x3b\x45\x4f\x4a\x51\x57\x50\x57\x59\x5b\x62\x61\x5b\ \x61\x5f\x5a\x61\x5e\x5b\x61\x5f\x5c\x63\x60\x5c\x63\x60\x5d\x64\ \x61\x61\x67\x65\x5f\x64\x64\x59\x5e\x5f\x52\x57\x58\x4d\x53\x54\ \x40\x47\x4a\x37\x3f\x40\x2b\x34\x36\x22\x2a\x31\x1c\x23\x2c\x19\ \x20\x29\x1d\x28\x2d\x29\x34\x38\x36\x3f\x43\x42\x4c\x4c\x51\x5c\ \x5b\x5a\x64\x64\x65\x6d\x6c\x6b\x73\x71\x71\x78\x74\x74\x7b\x76\ \x76\x7c\x77\x76\x7c\x77\x78\x7f\x7a\x76\x7d\x78\x78\x7f\x7b\x78\ \x7f\x7c\x79\x80\x7d\x78\x80\x7d\x78\x81\x7e\x7a\x83\x80\x7a\x83\ \x80\x7c\x85\x82\x7c\x85\x82\x7f\x88\x85\x7e\x87\x84\x7f\x88\x85\ \x80\x88\x85\x80\x87\x84\x81\x88\x85\x81\x88\x85\x82\x89\x86\x81\ \x88\x85\x00\x00\x00\x40\x84\xd0\x42\x84\xd0\x45\x83\xcc\x44\x81\ \xc7\x40\x7a\xc1\x3b\x72\xb7\x34\x68\xa9\x33\x65\xa3\x3e\x75\xaf\ \x50\x88\xc3\x54\x8a\xc5\x3b\x6c\xa0\x2e\x5c\x8b\x39\x68\x99\x4e\ \x7d\xb3\x54\x87\xc0\x55\x8c\xc6\x55\x8d\xc8\x52\x8c\xc7\x55\x8f\ \xcb\x58\x94\xd0\x55\x92\xcf\x52\x8e\xcb\x57\x8f\xc7\x5a\x8e\xc3\ \x52\x83\xb7\x40\x6e\x9f\x33\x5a\x86\x31\x53\x7d\x31\x55\x7c\x31\ \x52\x7a\x2f\x4c\x77\x2c\x4d\x75\x24\x42\x69\x1d\x33\x57\x14\x24\ \x3e\x0c\x16\x25\x06\x0c\x17\x07\x08\x12\x0b\x0c\x17\x09\x0c\x17\ \x0c\x0e\x17\x0b\x0d\x17\x0c\x0f\x18\x0b\x10\x19\x0b\x10\x18\x0b\ \x11\x18\x0c\x12\x19\x0c\x11\x1a\x0d\x12\x1b\x0c\x11\x19\x0e\x11\ \x1b\x0f\x11\x1c\x11\x14\x1c\x12\x18\x1d\x14\x1a\x1f\x17\x1d\x22\ \x19\x20\x23\x1a\x21\x24\x1d\x24\x27\x1f\x25\x2a\x20\x25\x2b\x1f\ \x26\x2a\x1d\x23\x27\x1d\x24\x27\x19\x1f\x22\x15\x18\x1d\x0f\x11\ \x18\x09\x0b\x13\x0a\x0a\x14\x08\x09\x15\x0b\x0d\x18\x0b\x11\x1c\ \x09\x11\x1d\x0b\x14\x21\x0c\x15\x22\x0b\x14\x22\x0f\x19\x27\x0e\ \x19\x28\x0f\x1c\x2d\x10\x1d\x2d\x11\x1e\x2e\x14\x21\x32\x16\x22\ \x33\x17\x24\x34\x14\x22\x35\x17\x24\x36\x17\x22\x33\x18\x23\x31\ \x17\x21\x2f\x14\x1d\x2a\x14\x1d\x2a\x19\x22\x31\x18\x20\x31\x15\ \x1d\x2e\x13\x1b\x2b\x0d\x15\x21\x08\x0e\x17\x09\x0f\x1a\x0d\x13\ \x1e\x0f\x17\x22\x11\x18\x27\x14\x1c\x2a\x17\x1f\x2e\x1a\x23\x31\ \x1c\x27\x35\x21\x2d\x3c\x23\x30\x40\x27\x34\x44\x31\x3d\x4c\x3e\ \x49\x52\x4c\x54\x58\x54\x5a\x5c\x5c\x62\x61\x5d\x62\x60\x5c\x62\ \x5f\x5c\x63\x60\x5e\x63\x61\x5e\x64\x62\x60\x68\x64\x62\x69\x67\ \x61\x67\x66\x5b\x61\x60\x55\x5a\x5b\x4b\x53\x53\x41\x49\x49\x38\ \x3f\x41\x2b\x32\x36\x21\x28\x2d\x19\x20\x28\x16\x1d\x26\x1d\x26\ \x2a\x27\x30\x34\x34\x3d\x42\x3f\x49\x4a\x4d\x58\x54\x58\x62\x62\ \x63\x6b\x6a\x69\x71\x70\x72\x79\x75\x76\x7d\x78\x78\x7e\x79\x77\ \x7e\x79\x79\x80\x7b\x7a\x81\x7c\x7a\x81\x7d\x7a\x81\x7e\x7b\x82\ \x7f\x7b\x83\x80\x7b\x84\x81\x7b\x85\x7f\x7c\x86\x80\x7c\x87\x80\ \x80\x88\x82\x80\x88\x83\x80\x8a\x85\x82\x8a\x86\x84\x8b\x88\x83\ \x8a\x87\x84\x8b\x88\x84\x8b\x88\x82\x89\x86\x85\x8c\x89\x00\x00\ \x00\x43\x87\xd5\x41\x84\xd3\x42\x81\xcf\x43\x80\xcb\x3f\x7a\xc4\ \x3d\x75\xbc\x37\x6c\xaf\x34\x66\xa5\x3a\x70\xaa\x4b\x82\xbd\x50\ \x86\xc2\x3c\x6f\xa3\x2e\x5b\x8b\x39\x63\x97\x49\x75\xae\x54\x84\ \xc0\x55\x8b\xc7\x53\x8b\xc6\x53\x8b\xc6\x52\x8b\xc8\x57\x90\xcd\ \x56\x93\xcf\x58\x94\xd0\x5c\x94\xcb\x5b\x8e\xc3\x53\x85\xb9\x3f\ \x6d\x9f\x35\x5c\x89\x31\x54\x80\x30\x53\x7e\x31\x52\x7d\x31\x4e\ \x7a\x2a\x4a\x72\x26\x43\x6a\x1c\x32\x55\x12\x23\x3c\x0c\x16\x25\ \x06\x0b\x16\x08\x0a\x13\x09\x0b\x15\x09\x0c\x17\x0b\x0d\x18\x0d\ \x0f\x1a\x0d\x10\x1b\x0a\x0e\x1a\x0a\x0f\x17\x0b\x11\x17\x0b\x11\ \x18\x0a\x0f\x18\x0d\x11\x1b\x0b\x11\x19\x0e\x13\x1b\x10\x12\x1c\ \x0f\x14\x1b\x11\x17\x1c\x12\x19\x1e\x17\x1d\x22\x18\x1f\x22\x1b\ \x22\x25\x1c\x23\x27\x1f\x25\x2a\x20\x27\x2b\x20\x27\x29\x1d\x26\ \x25\x1b\x23\x24\x1a\x1f\x22\x13\x17\x1b\x0d\x11\x16\x0b\x0d\x15\ \x08\x0a\x14\x09\x09\x16\x0b\x0e\x18\x0a\x10\x1b\x0a\x11\x1d\x09\ \x12\x20\x0b\x14\x22\x0d\x16\x24\x0e\x18\x26\x0f\x1b\x2a\x0f\x1b\ \x2d\x0f\x1c\x2c\x11\x1e\x2e\x14\x20\x31\x17\x23\x34\x16\x25\x35\ \x17\x25\x37\x16\x23\x35\x17\x23\x34\x19\x22\x33\x1a\x24\x32\x16\ \x1f\x2d\x16\x1f\x2d\x1b\x24\x31\x19\x22\x31\x14\x1d\x2a\x12\x1c\ \x29\x0c\x13\x20\x06\x0d\x17\x08\x0e\x19\x0c\x12\x1d\x0e\x16\x21\ \x10\x17\x25\x13\x1b\x2b\x17\x1e\x2d\x19\x22\x30\x1c\x27\x36\x20\ \x2c\x3d\x22\x2f\x3f\x25\x31\x42\x31\x3e\x4e\x3e\x48\x52\x4d\x55\ \x58\x55\x5c\x5c\x5d\x62\x62\x5c\x61\x5f\x5d\x62\x60\x5e\x64\x61\ \x5e\x63\x61\x5f\x64\x62\x60\x67\x64\x61\x68\x66\x61\x67\x66\x5b\ \x61\x60\x52\x5a\x5a\x4b\x53\x53\x40\x48\x48\x35\x3c\x3f\x2a\x31\ \x34\x1f\x25\x2a\x15\x1d\x24\x12\x19\x22\x19\x22\x27\x25\x2e\x34\ \x31\x38\x40\x3f\x48\x4a\x4a\x52\x51\x55\x5f\x5e\x60\x68\x68\x69\ \x71\x6f\x70\x77\x73\x75\x7c\x76\x78\x7d\x78\x7a\x80\x7b\x79\x80\ \x7b\x79\x80\x7b\x7b\x82\x7d\x7c\x83\x7d\x7c\x83\x7d\x7a\x83\x7d\ \x7b\x85\x7f\x7d\x86\x80\x7d\x85\x80\x7f\x85\x80\x81\x87\x82\x82\ \x88\x83\x82\x89\x84\x83\x8a\x85\x84\x8b\x87\x84\x8a\x88\x85\x8b\ \x89\x86\x8d\x8a\x85\x8c\x89\x84\x8b\x88\x00\x00\x00\x43\x88\xd6\ \x3e\x84\xd3\x3e\x82\xd0\x3e\x80\xcd\x41\x7e\xc9\x3d\x76\xbf\x39\ \x6e\xb5\x32\x67\xa8\x35\x68\xa6\x44\x7a\xb6\x4d\x84\xbc\x45\x75\ \xad\x33\x5e\x8d\x35\x5e\x91\x49\x70\xa8\x54\x82\xbc\x57\x8b\xc5\ \x53\x8b\xc8\x51\x8a\xc7\x4e\x8a\xc6\x54\x8f\xca\x5b\x95\xd0\x5c\ \x97\xd2\x5b\x95\xcd\x54\x8c\xc3\x50\x81\xb9\x42\x71\xa6\x38\x62\ \x91\x34\x57\x81\x33\x55\x7c\x31\x55\x7c\x2f\x52\x79\x2d\x4d\x76\ \x26\x41\x6c\x1d\x34\x55\x12\x24\x3b\x0e\x16\x25\x09\x0d\x17\x07\ \x08\x10\x0b\x0a\x15\x09\x0c\x17\x09\x0e\x17\x0a\x0e\x19\x0c\x10\ \x1a\x0a\x10\x18\x0a\x11\x19\x09\x10\x1a\x0b\x10\x19\x0c\x12\x18\ \x0c\x12\x18\x0d\x13\x19\x0d\x13\x1a\x0f\x14\x1b\x12\x15\x1d\x12\ \x15\x1d\x16\x1a\x1f\x16\x1a\x1f\x19\x1d\x22\x1d\x21\x26\x1e\x24\ \x29\x20\x26\x29\x21\x27\x2a\x22\x26\x28\x20\x25\x26\x1d\x24\x25\ \x19\x20\x24\x16\x19\x20\x0f\x11\x19\x0b\x0d\x15\x09\x0b\x15\x08\ \x0c\x17\x0b\x10\x1b\x0a\x10\x1b\x09\x13\x1d\x0c\x14\x20\x0c\x14\ \x22\x0d\x17\x26\x0e\x19\x2a\x0e\x1a\x2b\x0f\x1b\x2d\x11\x1d\x2f\ \x12\x1e\x30\x15\x21\x33\x13\x21\x32\x16\x24\x36\x16\x24\x36\x16\ \x25\x36\x15\x24\x33\x18\x25\x34\x15\x22\x30\x17\x20\x2d\x15\x1f\ \x2c\x19\x24\x34\x19\x21\x32\x16\x1d\x2f\x13\x1a\x2a\x0b\x12\x21\ \x08\x0e\x1a\x0a\x10\x1b\x0c\x14\x20\x0c\x15\x22\x11\x19\x28\x13\ \x1a\x29\x16\x1e\x2d\x19\x22\x30\x1d\x28\x36\x21\x2c\x3a\x22\x2f\ \x3d\x26\x33\x42\x2f\x3b\x4b\x3d\x48\x52\x49\x54\x55\x56\x5c\x5c\ \x5d\x62\x61\x5e\x63\x5e\x5d\x63\x5f\x5e\x63\x61\x5d\x63\x5e\x61\ \x67\x61\x62\x67\x64\x62\x67\x65\x5e\x64\x62\x5a\x60\x5e\x52\x58\ \x57\x4b\x51\x52\x3e\x45\x48\x34\x3b\x3f\x29\x30\x33\x1f\x25\x29\ \x13\x19\x1f\x11\x15\x1d\x17\x1f\x27\x21\x29\x30\x2e\x36\x3c\x38\ \x44\x46\x42\x4e\x50\x51\x5b\x5b\x5a\x63\x62\x65\x6b\x6a\x6d\x73\ \x70\x71\x76\x75\x75\x7c\x79\x77\x7d\x78\x78\x7e\x79\x7a\x80\x7b\ \x79\x7f\x7c\x7a\x81\x7e\x7b\x82\x7f\x7b\x81\x7f\x7a\x83\x80\x7c\ \x84\x81\x7e\x84\x81\x80\x85\x83\x82\x88\x85\x81\x88\x84\x82\x89\ \x86\x83\x8a\x85\x84\x8b\x86\x83\x8a\x86\x83\x8a\x88\x83\x8a\x86\ \x83\x8a\x85\x84\x8b\x86\x00\x00\x00\x46\x8c\xd8\x3f\x87\xd5\x3e\ \x85\xd2\x3f\x82\xd0\x40\x7e\xcb\x3f\x78\xc2\x37\x6d\xb5\x32\x67\ \xa9\x33\x65\xa4\x3f\x73\xaf\x4c\x84\xba\x49\x7a\xaf\x38\x62\x91\ \x33\x5b\x8c\x44\x6c\xa2\x52\x81\xbc\x55\x8a\xc4\x54\x8c\xc9\x50\ \x8a\xc7\x4e\x8a\xc6\x54\x8f\xcc\x58\x92\xcf\x5c\x97\xd1\x5a\x94\ \xcb\x52\x89\xc0\x4f\x81\xb9\x45\x73\xa9\x3a\x65\x95\x32\x57\x80\ \x31\x53\x7a\x30\x52\x7a\x30\x54\x7b\x2b\x4d\x76\x26\x42\x6b\x1d\ \x32\x52\x14\x24\x3a\x0c\x13\x23\x06\x0a\x16\x07\x07\x11\x0a\x0a\ \x13\x0a\x0c\x16\x09\x0e\x17\x0a\x0e\x19\x0b\x0f\x1a\x0b\x11\x19\ \x0b\x11\x19\x0b\x11\x1a\x0b\x11\x19\x0a\x10\x17\x0a\x11\x17\x0b\ \x11\x18\x0c\x12\x19\x0f\x13\x1b\x11\x14\x1c\x12\x15\x1d\x15\x18\ \x1d\x17\x1b\x20\x18\x1c\x21\x1b\x1f\x24\x1d\x23\x27\x1e\x25\x28\ \x1f\x26\x29\x21\x26\x29\x21\x26\x28\x1f\x25\x26\x1a\x21\x24\x14\ \x17\x1e\x0f\x11\x19\x0b\x0d\x15\x09\x0b\x15\x09\x0c\x17\x09\x0e\ \x19\x09\x10\x1b\x09\x12\x1c\x0b\x13\x1f\x0c\x15\x22\x0b\x15\x25\ \x0d\x18\x2a\x0e\x1b\x2d\x0e\x1a\x2c\x11\x1d\x2f\x12\x1e\x30\x14\ \x20\x32\x14\x21\x33\x15\x23\x35\x15\x24\x36\x17\x25\x38\x14\x23\ \x34\x17\x24\x35\x1a\x25\x36\x17\x20\x2e\x17\x20\x2f\x1a\x24\x35\ \x19\x21\x33\x15\x1d\x2e\x12\x19\x28\x0f\x15\x22\x06\x0c\x19\x09\ \x0f\x1a\x0a\x13\x1e\x0d\x15\x22\x0f\x17\x24\x14\x1c\x2a\x15\x1e\ \x2b\x19\x22\x2f\x1c\x28\x34\x20\x2c\x38\x22\x30\x3c\x26\x33\x42\ \x2f\x3a\x4b\x3a\x44\x4f\x49\x53\x57\x55\x5b\x5c\x5a\x5f\x5e\x5a\ \x5f\x5b\x5b\x60\x5c\x5c\x60\x5e\x5c\x62\x5d\x5c\x62\x5d\x5f\x64\ \x61\x5e\x63\x61\x5c\x61\x5f\x56\x5d\x5a\x4e\x53\x53\x45\x4b\x4d\ \x3b\x42\x45\x30\x37\x3a\x24\x2b\x2e\x1a\x20\x25\x13\x17\x1e\x12\ \x15\x1d\x16\x1c\x24\x1f\x27\x2d\x27\x30\x34\x34\x3e\x40\x3d\x49\ \x49\x49\x53\x53\x53\x5d\x5d\x5e\x66\x65\x67\x6e\x6b\x6d\x73\x70\ \x71\x78\x75\x73\x7a\x75\x76\x7c\x77\x76\x7c\x77\x78\x7d\x7a\x78\ \x7e\x7c\x79\x80\x7d\x79\x80\x7d\x7a\x82\x7f\x7a\x81\x7e\x7e\x83\ \x81\x80\x85\x83\x7f\x84\x82\x7e\x85\x80\x80\x87\x84\x81\x88\x84\ \x81\x88\x83\x83\x8a\x86\x83\x8a\x87\x83\x8a\x86\x82\x89\x84\x81\ \x88\x83\x00\x00\x00\x4a\x8e\xd7\x3f\x86\xd2\x3e\x86\xd3\x3e\x82\ \xd0\x40\x80\xcd\x40\x7a\xc4\x3c\x72\xb9\x35\x69\xad\x35\x66\xa8\ \x40\x72\xaf\x4e\x83\xb9\x4f\x7f\xb3\x3b\x64\x95\x35\x5c\x8d\x3f\ \x69\x9e\x50\x7f\xb9\x53\x89\xc4\x52\x8a\xc7\x50\x89\xc6\x4e\x8a\ \xc7\x50\x8c\xca\x56\x91\xcf\x59\x94\xd0\x5a\x94\xcd\x58\x90\xc7\ \x52\x87\xbf\x4a\x7a\xb0\x3c\x67\x98\x33\x58\x83\x34\x56\x7d\x34\ \x57\x7f\x2f\x52\x7d\x2d\x4e\x79\x28\x45\x6b\x1e\x32\x51\x16\x24\ \x3a\x0d\x15\x26\x07\x0a\x18\x09\x08\x12\x0b\x0b\x14\x0a\x0d\x16\ \x09\x0e\x17\x0b\x0f\x1a\x0c\x11\x1b\x0b\x10\x19\x0a\x10\x18\x0b\ \x10\x19\x0b\x10\x19\x0b\x10\x18\x0d\x10\x18\x0b\x0f\x17\x0d\x11\ \x19\x0f\x12\x1a\x11\x13\x1b\x13\x16\x1e\x16\x19\x1e\x17\x1b\x20\ \x19\x1e\x22\x1c\x21\x25\x1c\x23\x26\x1e\x25\x28\x20\x27\x2a\x20\ \x25\x28\x20\x25\x28\x1d\x23\x27\x1c\x21\x25\x15\x18\x1f\x10\x12\ \x1a\x0b\x0e\x16\x08\x0b\x15\x09\x0c\x17\x09\x0e\x19\x08\x0f\x1a\ \x0b\x14\x1e\x0c\x14\x1f\x0c\x14\x21\x0d\x16\x26\x0e\x19\x2a\x0e\ \x1a\x2c\x10\x1c\x2e\x11\x1d\x2f\x11\x1d\x2f\x15\x21\x33\x17\x23\ \x36\x18\x23\x37\x1a\x25\x3a\x1a\x25\x39\x17\x22\x35\x17\x23\x35\ \x17\x22\x34\x1a\x22\x33\x17\x1f\x30\x1a\x24\x36\x19\x22\x34\x15\ \x1d\x2e\x15\x1c\x2a\x0d\x13\x20\x06\x0c\x17\x09\x0f\x1a\x0b\x13\ \x1d\x0b\x14\x1f\x0d\x15\x22\x11\x19\x26\x14\x1e\x2b\x18\x21\x2e\ \x1b\x27\x33\x1e\x2b\x37\x21\x2f\x3b\x23\x30\x3e\x2d\x37\x47\x39\ \x42\x4e\x47\x4e\x56\x51\x57\x58\x56\x5c\x5b\x59\x5d\x5a\x57\x5c\ \x58\x57\x5c\x5a\x59\x5f\x5a\x59\x5f\x5a\x5b\x60\x5e\x5b\x60\x5e\ \x57\x5d\x5a\x51\x58\x55\x4a\x50\x4f\x40\x46\x47\x37\x3e\x41\x2e\ \x34\x38\x22\x28\x2c\x19\x1e\x23\x14\x18\x1d\x13\x17\x1d\x15\x1b\ \x20\x1c\x24\x28\x25\x2e\x31\x2e\x38\x38\x37\x41\x41\x45\x4e\x4f\ \x4d\x57\x56\x55\x5d\x5c\x5f\x65\x64\x67\x6e\x6b\x6c\x73\x70\x6f\ \x76\x71\x73\x79\x74\x74\x7a\x75\x75\x7b\x77\x76\x7b\x78\x77\x7d\ \x7a\x78\x7f\x7b\x79\x80\x7c\x7a\x81\x7d\x7c\x81\x7f\x7c\x81\x7f\ \x7e\x84\x81\x7c\x83\x7f\x7e\x85\x82\x7f\x86\x82\x80\x87\x82\x82\ \x89\x85\x81\x88\x85\x81\x88\x85\x80\x87\x84\x81\x87\x83\x00\x00\ \x00\x4d\x91\xd6\x41\x87\xd2\x3f\x84\xd3\x3e\x83\xd2\x41\x81\xcf\ \x42\x7c\xc7\x3c\x75\xbc\x37\x6c\xb2\x35\x67\xab\x3f\x70\xaf\x4c\ \x81\xba\x50\x83\xb8\x3f\x6a\x9b\x31\x5a\x8c\x3b\x65\x99\x4d\x7c\ \xb5\x53\x85\xc3\x4f\x86\xc4\x4d\x88\xc6\x4a\x86\xc5\x4b\x88\xc8\ \x4e\x8b\xcb\x56\x91\xd0\x58\x94\xd1\x5a\x95\xce\x56\x8d\xc6\x4c\ \x7e\xb6\x3d\x6a\x9e\x34\x5a\x86\x34\x57\x7f\x33\x56\x7f\x30\x53\ \x7c\x2a\x4a\x73\x25\x41\x66\x1f\x32\x51\x16\x24\x3b\x0d\x16\x24\ \x08\x0b\x18\x0a\x08\x13\x0a\x0b\x13\x0a\x0e\x16\x0a\x0f\x18\x09\ \x0d\x18\x0c\x10\x1a\x0a\x10\x18\x0a\x10\x18\x0a\x0f\x18\x0a\x0f\ \x18\x0e\x10\x19\x0d\x10\x18\x0c\x0f\x17\x0c\x0f\x17\x0e\x11\x19\ \x11\x12\x1a\x13\x15\x1c\x15\x18\x1d\x16\x1a\x1f\x19\x1e\x21\x1a\ \x1f\x22\x1c\x24\x24\x1c\x23\x25\x1f\x25\x28\x21\x26\x29\x21\x26\ \x29\x20\x25\x28\x1c\x20\x24\x16\x18\x20\x10\x12\x1a\x0a\x0d\x15\ \x08\x0b\x14\x0a\x0d\x16\x0a\x0f\x18\x08\x10\x19\x09\x12\x1b\x0b\ \x13\x1e\x0c\x15\x22\x0d\x16\x26\x0e\x18\x2a\x0e\x1a\x2c\x0f\x1a\ \x2d\x10\x1c\x2e\x13\x1f\x31\x13\x1f\x31\x17\x23\x35\x17\x23\x36\ \x18\x23\x36\x1a\x25\x38\x19\x25\x37\x19\x25\x36\x18\x24\x34\x1b\ \x24\x33\x18\x21\x30\x1b\x25\x37\x18\x22\x33\x15\x1f\x2d\x13\x1a\ \x28\x0d\x12\x1f\x07\x0b\x16\x0b\x10\x1b\x0b\x12\x1d\x0c\x15\x1f\ \x10\x18\x22\x13\x1a\x26\x14\x1d\x2a\x18\x21\x2e\x1a\x26\x32\x1c\ \x29\x35\x21\x2d\x3a\x26\x31\x3f\x2c\x37\x45\x38\x41\x4b\x43\x4a\ \x50\x4d\x53\x54\x53\x58\x56\x54\x59\x55\x54\x59\x56\x54\x59\x57\ \x55\x5b\x56\x57\x5d\x58\x57\x5c\x59\x57\x5c\x5a\x53\x58\x56\x4c\ \x53\x50\x45\x4a\x4a\x3b\x41\x43\x32\x39\x3c\x29\x30\x34\x1f\x24\ \x29\x18\x1c\x21\x14\x18\x1d\x15\x18\x1d\x18\x1e\x23\x1a\x21\x26\ \x22\x2a\x2d\x26\x2f\x33\x31\x3a\x3d\x3b\x44\x47\x47\x50\x51\x4d\ \x55\x55\x56\x5e\x5d\x5f\x66\x65\x66\x6d\x6a\x6b\x72\x6d\x70\x75\ \x70\x71\x77\x72\x70\x76\x71\x72\x78\x73\x73\x79\x74\x75\x7b\x76\ \x75\x7c\x77\x78\x7f\x7b\x78\x7e\x7c\x7a\x7f\x7d\x7a\x80\x7d\x7c\ \x83\x7e\x7d\x84\x82\x7d\x84\x81\x7f\x86\x83\x80\x87\x84\x80\x87\ \x86\x80\x87\x84\x7f\x86\x83\x80\x86\x84\x00\x00\x00\x50\x94\xd6\ \x4a\x8e\xd7\x46\x8b\xd7\x42\x87\xd6\x40\x82\xd1\x44\x80\xcc\x41\ \x79\xc1\x3a\x71\xb7\x37\x6a\xaf\x3d\x70\xb0\x4b\x81\xbd\x54\x87\ \xbf\x44\x71\xa2\x34\x5e\x8f\x3b\x64\x98\x4a\x77\xb0\x55\x85\xc3\ \x52\x89\xc7\x4c\x88\xc6\x4a\x87\xc6\x48\x86\xc6\x4b\x88\xcb\x52\ \x8f\xd1\x55\x93\xd1\x58\x95\xd1\x57\x91\xcc\x4f\x82\xbb\x40\x6c\ \xa1\x38\x5e\x8b\x35\x57\x7f\x33\x56\x7f\x32\x51\x79\x2f\x4f\x76\ \x26\x42\x65\x1e\x33\x51\x12\x22\x3b\x0b\x15\x20\x06\x0b\x16\x08\ \x07\x12\x0c\x0b\x15\x09\x0b\x15\x0a\x0f\x18\x0a\x0e\x19\x0b\x10\ \x1a\x0b\x10\x19\x0a\x10\x17\x0a\x10\x17\x0c\x10\x18\x0c\x0e\x18\ \x0d\x0f\x19\x0c\x0f\x17\x0d\x10\x18\x0f\x12\x1a\x11\x13\x1b\x12\ \x14\x1c\x15\x18\x1d\x17\x1b\x1f\x18\x1e\x20\x19\x1e\x1f\x1b\x22\ \x22\x1c\x24\x24\x1f\x25\x27\x20\x25\x28\x21\x26\x29\x1f\x23\x27\ \x1c\x21\x24\x14\x17\x1e\x10\x12\x1a\x0b\x0e\x16\x09\x0b\x14\x0a\ \x0d\x17\x0a\x0f\x18\x08\x10\x19\x09\x12\x1b\x0b\x14\x1f\x0b\x14\ \x21\x0e\x17\x27\x0e\x19\x2b\x0d\x19\x2b\x0f\x1a\x2e\x10\x1a\x2f\ \x12\x1d\x32\x15\x20\x34\x16\x22\x35\x17\x23\x35\x18\x24\x36\x18\ \x25\x36\x1a\x27\x36\x18\x25\x35\x19\x25\x34\x19\x22\x2f\x19\x22\ \x2f\x1c\x26\x36\x18\x22\x33\x14\x1e\x2c\x14\x1b\x29\x0e\x14\x1f\ \x08\x0c\x17\x0a\x0e\x19\x0b\x12\x1c\x0c\x15\x1f\x0f\x17\x21\x12\ \x18\x24\x14\x1d\x2c\x18\x21\x2f\x19\x24\x32\x1c\x27\x35\x22\x2e\ \x3c\x27\x32\x3f\x2b\x36\x40\x35\x40\x46\x3f\x48\x49\x49\x4e\x4f\ \x4c\x52\x51\x50\x54\x51\x4e\x54\x50\x4f\x55\x52\x50\x56\x51\x51\ \x58\x52\x53\x59\x56\x51\x56\x54\x4d\x52\x50\x46\x4c\x4a\x3f\x44\ \x44\x37\x3d\x3e\x2c\x33\x36\x26\x2b\x2f\x1f\x22\x27\x19\x1c\x21\ \x15\x19\x1e\x1a\x1d\x22\x18\x1e\x24\x1d\x23\x28\x21\x28\x2d\x24\ \x2c\x31\x2a\x33\x37\x33\x3c\x3f\x3c\x46\x46\x44\x4e\x4e\x4e\x56\ \x54\x58\x5f\x5d\x61\x68\x65\x65\x6c\x67\x6a\x70\x6b\x6d\x73\x6d\ \x6f\x75\x70\x70\x76\x71\x71\x77\x72\x72\x78\x73\x72\x79\x74\x74\ \x7b\x77\x76\x7c\x79\x76\x7b\x79\x77\x7d\x7a\x79\x80\x7b\x78\x7e\ \x7d\x7a\x80\x7e\x7c\x83\x80\x7e\x84\x82\x7e\x84\x83\x7d\x84\x81\ \x7c\x83\x80\x7c\x83\x80\x00\x00\x00\x57\x9a\xd9\x4e\x93\xd9\x48\ \x8f\xd8\x47\x8c\xd9\x44\x86\xd4\x46\x83\xcf\x44\x7c\xc5\x3f\x74\ \xba\x37\x6c\xb0\x3b\x71\xb0\x48\x81\xb9\x50\x87\xc1\x44\x76\xab\ \x38\x61\x94\x39\x61\x96\x47\x75\xad\x53\x82\xc0\x52\x8b\xc9\x50\ \x89\xc7\x4d\x88\xc6\x48\x87\xc7\x49\x8a\xcb\x4f\x8d\xd1\x53\x90\ \xcf\x58\x93\xce\x59\x92\xca\x52\x87\xc0\x43\x73\xa7\x38\x61\x8d\ \x33\x57\x7e\x34\x55\x7c\x33\x52\x7a\x2e\x4e\x71\x27\x42\x65\x1f\ \x32\x51\x14\x23\x39\x0b\x14\x22\x06\x0a\x16\x07\x09\x13\x09\x0a\ \x14\x0a\x0c\x16\x0c\x0e\x19\x0a\x0f\x1a\x0a\x0e\x19\x0a\x0e\x19\ \x0c\x0e\x19\x0d\x0f\x19\x0c\x0e\x18\x0d\x0f\x19\x0f\x10\x19\x0c\ \x10\x18\x0c\x13\x19\x10\x14\x19\x10\x14\x1a\x13\x16\x1e\x14\x17\ \x20\x15\x18\x1f\x18\x1c\x20\x1a\x1f\x22\x1c\x20\x23\x1e\x24\x23\ \x1c\x23\x23\x1e\x26\x26\x21\x25\x28\x1e\x22\x26\x19\x1e\x21\x15\ \x18\x1d\x10\x12\x1a\x0b\x0c\x16\x0a\x0c\x14\x09\x0c\x15\x0a\x0f\ \x18\x09\x0f\x1a\x08\x12\x1c\x0c\x14\x20\x0b\x13\x21\x0c\x16\x23\ \x0d\x18\x27\x0e\x19\x29\x0b\x1b\x2b\x10\x1c\x2e\x12\x1d\x30\x14\ \x1f\x33\x15\x20\x32\x17\x24\x35\x17\x23\x35\x19\x24\x37\x18\x24\ \x36\x1a\x25\x36\x1b\x25\x35\x19\x23\x31\x17\x23\x30\x18\x26\x34\ \x1a\x24\x36\x17\x1e\x2f\x13\x1a\x28\x0d\x13\x1e\x06\x0b\x15\x0a\ \x10\x1b\x0d\x13\x1e\x0e\x14\x1f\x10\x17\x24\x11\x19\x25\x15\x1d\ \x29\x18\x20\x2e\x1c\x24\x35\x20\x28\x38\x21\x2c\x3a\x25\x30\x3e\ \x2c\x36\x41\x34\x3d\x45\x3d\x47\x4a\x46\x4b\x4b\x4b\x50\x4e\x4c\ \x50\x4c\x4c\x50\x4c\x4b\x50\x4e\x4d\x51\x50\x4f\x54\x52\x4d\x53\ \x51\x4c\x53\x50\x47\x4d\x4b\x40\x46\x46\x38\x3e\x3e\x33\x38\x3a\ \x2b\x30\x33\x21\x28\x2c\x1c\x23\x28\x19\x1e\x23\x19\x1d\x22\x1c\ \x20\x25\x1c\x21\x24\x1c\x22\x25\x1e\x24\x28\x21\x29\x2e\x27\x2f\ \x36\x2c\x35\x38\x36\x3f\x42\x40\x47\x4b\x45\x4c\x4e\x4e\x56\x54\ \x57\x60\x5d\x5f\x65\x63\x65\x6a\x68\x68\x6d\x6b\x6b\x70\x6d\x6c\ \x72\x6d\x6b\x71\x6c\x6d\x73\x6e\x70\x76\x71\x70\x76\x73\x72\x76\ \x75\x73\x78\x76\x73\x7a\x77\x74\x7c\x79\x74\x7b\x78\x77\x7e\x7b\ \x78\x7f\x7c\x79\x80\x7d\x78\x7f\x7b\x78\x80\x7a\x78\x7f\x79\x77\ \x7e\x79\x00\x00\x00\x5c\x9f\xdc\x54\x9a\xdf\x48\x92\xdc\x47\x8f\ \xdc\x45\x8b\xd8\x46\x86\xd2\x44\x81\xc9\x3f\x78\xbe\x37\x6d\xb0\ \x39\x70\xae\x44\x7c\xb7\x4f\x88\xc1\x48\x7c\xb1\x38\x63\x97\x38\ \x60\x95\x44\x71\xa9\x53\x82\xc0\x53\x88\xc7\x52\x8a\xc7\x4e\x88\ \xc7\x4b\x8a\xc9\x4c\x8b\xcd\x4f\x8d\xd0\x54\x92\xd1\x58\x94\xcf\ \x5b\x94\xcd\x56\x8d\xc5\x47\x78\xab\x3c\x65\x91\x35\x59\x80\x32\ \x55\x79\x32\x52\x78\x2b\x4b\x6f\x27\x42\x66\x1d\x31\x52\x15\x23\ \x3b\x0c\x15\x22\x06\x0a\x15\x07\x08\x13\x08\x09\x13\x0a\x0c\x16\ \x0b\x0d\x19\x0c\x0e\x19\x09\x0d\x18\x0b\x0f\x1a\x0b\x11\x1a\x0b\ \x0e\x18\x0c\x0e\x18\x0c\x0e\x18\x0d\x10\x18\x0c\x11\x1a\x0e\x13\ \x1b\x0f\x13\x19\x10\x14\x19\x12\x16\x1c\x14\x17\x20\x16\x19\x1f\ \x17\x1c\x20\x19\x1e\x21\x1c\x21\x23\x1d\x22\x22\x1d\x24\x24\x1e\ \x25\x25\x1e\x23\x26\x1c\x20\x23\x1a\x1e\x23\x14\x17\x1c\x0f\x11\ \x17\x0b\x0d\x15\x09\x0b\x13\x09\x0b\x15\x0a\x0f\x19\x09\x10\x1b\ \x0a\x13\x1d\x0c\x14\x21\x0b\x13\x20\x0e\x17\x25\x0e\x18\x27\x0f\ \x1a\x2a\x0f\x1b\x2d\x0f\x1a\x2d\x13\x1e\x34\x15\x20\x35\x16\x20\ \x35\x16\x22\x35\x19\x25\x37\x18\x25\x36\x18\x25\x35\x19\x25\x34\ \x1b\x26\x34\x19\x25\x33\x18\x24\x32\x1a\x27\x37\x1a\x23\x35\x18\ \x20\x30\x14\x1b\x28\x0e\x14\x1f\x06\x0c\x16\x08\x0e\x19\x0c\x12\ \x1d\x0e\x14\x20\x11\x19\x26\x14\x1c\x28\x16\x1e\x2b\x18\x21\x2f\ \x1e\x26\x37\x21\x2a\x38\x21\x2c\x3a\x25\x30\x3e\x2c\x36\x43\x31\ \x3b\x43\x3a\x43\x46\x41\x48\x49\x47\x4b\x4b\x49\x4d\x49\x49\x4d\ \x49\x49\x4e\x4c\x49\x4e\x4c\x4b\x50\x4e\x4c\x51\x4f\x46\x4d\x4a\ \x41\x47\x46\x3c\x41\x41\x36\x3b\x3c\x30\x35\x37\x29\x2e\x31\x1f\ \x26\x2a\x1a\x20\x25\x19\x1e\x23\x1b\x1f\x24\x1d\x21\x26\x20\x24\ \x28\x1d\x24\x27\x1d\x24\x28\x1d\x25\x2a\x23\x2c\x32\x28\x32\x33\ \x31\x3a\x3d\x38\x40\x43\x3d\x45\x45\x46\x4f\x4d\x50\x58\x55\x58\ \x5e\x5c\x5f\x64\x62\x63\x68\x66\x65\x6a\x67\x67\x6d\x68\x67\x6d\ \x68\x69\x6f\x6a\x6b\x71\x6c\x6b\x71\x6e\x6d\x72\x70\x6f\x74\x72\ \x6f\x75\x72\x6f\x77\x74\x72\x79\x76\x71\x78\x75\x73\x7a\x77\x73\ \x7a\x77\x73\x7a\x77\x72\x79\x76\x71\x78\x73\x72\x79\x74\x00\x00\ \x00\x60\xa0\xdd\x56\x9d\xe1\x49\x94\xdc\x44\x8e\xdb\x45\x8c\xd9\ \x45\x89\xd3\x43\x83\xcb\x40\x7b\xc0\x37\x6e\xb1\x38\x6e\xad\x43\ \x7a\xb6\x4c\x85\xc0\x49\x80\xb7\x3d\x68\x9e\x35\x5e\x93\x3f\x6d\ \xa3\x55\x82\xbd\x53\x88\xc5\x51\x88\xc5\x4b\x86\xc4\x4b\x89\xc9\ \x4c\x8b\xcb\x4f\x8d\xcf\x55\x93\xd1\x5e\x9a\xd4\x5e\x99\xd1\x5b\ \x95\xcb\x4b\x7e\xb1\x3b\x66\x93\x35\x59\x80\x32\x54\x78\x34\x55\ \x78\x2c\x4c\x6f\x26\x40\x65\x1c\x2f\x50\x12\x21\x36\x0b\x12\x20\ \x06\x09\x15\x08\x07\x11\x09\x09\x13\x09\x0b\x15\x0a\x0c\x17\x0b\ \x0d\x18\x0b\x0e\x19\x0a\x0e\x19\x0b\x0f\x19\x0a\x0f\x18\x0b\x0f\ \x19\x0c\x0e\x18\x0c\x0f\x17\x0d\x11\x1b\x0d\x12\x19\x0e\x12\x17\ \x11\x15\x1a\x13\x16\x1c\x16\x19\x21\x18\x1b\x21\x17\x1c\x20\x19\ \x1e\x21\x1c\x21\x24\x1f\x23\x23\x1e\x24\x25\x1d\x25\x25\x1d\x22\ \x23\x1d\x21\x25\x19\x1d\x22\x13\x16\x1b\x0f\x12\x17\x0b\x0e\x13\ \x09\x0a\x13\x0a\x0b\x15\x0a\x0e\x19\x0a\x10\x1b\x09\x11\x1e\x0a\ \x13\x20\x0b\x14\x21\x0d\x16\x24\x0f\x19\x27\x0e\x17\x28\x11\x1b\ \x2d\x13\x1c\x2f\x11\x1b\x31\x14\x1f\x34\x14\x1f\x34\x15\x21\x33\ \x17\x23\x35\x19\x26\x36\x18\x25\x33\x18\x24\x32\x1b\x26\x33\x18\ \x23\x30\x18\x23\x31\x1d\x25\x37\x1a\x24\x36\x18\x20\x30\x13\x1a\ \x27\x0f\x15\x20\x07\x0c\x16\x0a\x10\x1b\x0d\x13\x1f\x0d\x15\x20\ \x11\x19\x26\x12\x1b\x28\x16\x1f\x2c\x1a\x23\x31\x1c\x25\x35\x1f\ \x2a\x38\x20\x2b\x39\x26\x31\x3f\x2b\x35\x41\x32\x3b\x44\x38\x41\ \x46\x3e\x46\x49\x41\x48\x47\x45\x49\x47\x45\x49\x45\x45\x4a\x48\ \x47\x4c\x4a\x46\x4b\x49\x47\x4c\x4a\x42\x48\x47\x3d\x42\x42\x38\ \x3c\x3d\x32\x37\x39\x2e\x33\x36\x26\x2c\x2f\x1f\x25\x29\x1a\x1e\ \x23\x17\x1b\x20\x1b\x1f\x24\x1e\x22\x27\x1e\x23\x26\x1c\x23\x26\ \x1d\x23\x27\x1b\x24\x28\x1d\x25\x2b\x24\x2f\x31\x2a\x33\x36\x30\ \x39\x3d\x36\x3f\x42\x3d\x47\x46\x48\x51\x50\x53\x59\x57\x59\x5e\ \x5c\x5d\x63\x60\x5f\x65\x61\x61\x67\x62\x63\x69\x64\x64\x6a\x65\ \x66\x6b\x66\x67\x6d\x6a\x66\x6b\x69\x68\x6d\x6b\x68\x6f\x6c\x68\ \x70\x6d\x6a\x71\x6e\x6c\x73\x70\x6d\x74\x71\x6e\x75\x72\x6e\x75\ \x73\x6c\x73\x70\x6d\x74\x71\x6d\x74\x6f\x00\x00\x00\x63\xa3\xde\ \x58\x9d\xdf\x4c\x95\xdd\x44\x8e\xd9\x45\x8c\xd9\x47\x8b\xd6\x43\ \x83\xcd\x40\x7b\xc1\x37\x6e\xb1\x36\x6c\xab\x41\x77\xb4\x4d\x86\ \xc3\x4c\x84\xbd\x3f\x6d\xa4\x36\x5f\x94\x3d\x6a\x9f\x52\x7f\xb8\ \x55\x89\xc5\x52\x88\xc6\x4d\x87\xc7\x4b\x88\xc6\x4d\x8a\xca\x50\ \x8d\xd0\x59\x97\xd4\x5e\x9c\xd6\x62\x9f\xd6\x5c\x97\xcd\x4f\x84\ \xb7\x3f\x6a\x9b\x37\x5b\x86\x32\x55\x7b\x34\x53\x7a\x2e\x4e\x72\ \x27\x41\x66\x1d\x30\x51\x12\x22\x35\x0b\x13\x20\x08\x0a\x16\x08\ \x08\x13\x0a\x09\x13\x0b\x0b\x16\x0a\x0b\x16\x0a\x0c\x17\x0b\x0d\ \x18\x0b\x0e\x19\x0b\x0f\x19\x0b\x10\x19\x0b\x11\x19\x0b\x0f\x18\ \x0d\x10\x18\x0c\x11\x1a\x0d\x13\x1b\x10\x14\x19\x10\x14\x19\x11\ \x15\x1a\x15\x18\x20\x16\x1a\x20\x17\x1c\x20\x1b\x20\x23\x1d\x22\ \x24\x20\x25\x25\x1c\x22\x23\x1e\x25\x25\x1f\x24\x24\x1e\x22\x26\ \x19\x1d\x22\x14\x17\x1c\x0f\x12\x17\x0a\x0d\x12\x08\x0a\x12\x0a\ \x0b\x14\x0b\x0f\x1a\x09\x10\x1c\x09\x11\x1e\x0a\x13\x20\x0b\x14\ \x21\x0e\x17\x25\x10\x18\x27\x10\x19\x29\x0f\x1a\x29\x10\x1b\x2c\ \x14\x1d\x30\x13\x1f\x32\x15\x21\x33\x16\x23\x34\x17\x24\x34\x19\ \x26\x36\x17\x24\x34\x1a\x24\x35\x1b\x25\x34\x18\x23\x31\x19\x23\ \x31\x1e\x26\x36\x1d\x26\x37\x1a\x22\x32\x14\x1b\x29\x0e\x15\x20\ \x08\x0d\x17\x09\x10\x1b\x0b\x14\x1e\x0d\x16\x21\x11\x1a\x27\x14\ \x1d\x2a\x16\x1f\x2d\x19\x21\x31\x1c\x25\x36\x1f\x2b\x38\x22\x2d\ \x3a\x24\x2f\x3d\x2b\x34\x41\x30\x39\x43\x34\x3d\x43\x38\x41\x44\ \x3e\x43\x44\x3d\x42\x41\x40\x45\x42\x3f\x44\x42\x41\x46\x44\x41\ \x46\x44\x40\x45\x44\x3d\x43\x42\x38\x3d\x3e\x33\x37\x3b\x2e\x33\ \x36\x2a\x2f\x32\x24\x2a\x2d\x1d\x23\x27\x18\x1c\x21\x15\x19\x1e\ \x19\x1e\x23\x1d\x23\x29\x20\x26\x29\x1d\x23\x26\x1a\x21\x25\x1a\ \x22\x27\x1c\x25\x2b\x1e\x29\x2e\x27\x30\x36\x2d\x35\x3b\x32\x3b\ \x3f\x37\x41\x41\x42\x4c\x4a\x4a\x51\x4f\x52\x58\x56\x57\x5e\x59\ \x59\x60\x5b\x5a\x61\x5c\x5c\x63\x5e\x5c\x63\x5e\x5e\x65\x60\x60\ \x66\x63\x60\x65\x63\x61\x66\x64\x61\x67\x65\x60\x69\x66\x62\x69\ \x66\x65\x6c\x69\x66\x6d\x6a\x65\x6c\x69\x66\x6d\x6a\x64\x6b\x68\ \x65\x6c\x69\x63\x6a\x67\x00\x00\x00\x64\xa2\xde\x59\x9c\xdd\x4f\ \x95\xdd\x44\x8d\xd8\x44\x8b\xd8\x46\x8a\xd6\x44\x84\xce\x3f\x7b\ \xc1\x38\x72\xb4\x38\x6e\xad\x3f\x76\xb3\x4c\x87\xc4\x4e\x88\xc3\ \x41\x71\xa9\x37\x62\x97\x3c\x67\x9c\x4e\x7b\xb1\x56\x87\xc3\x53\ \x8a\xc7\x4d\x88\xc7\x4a\x87\xc5\x4e\x8b\xca\x51\x8f\xd0\x58\x98\ \xd5\x5f\x9e\xd7\x61\xa0\xd6\x5f\x9b\xd2\x52\x88\xbe\x43\x70\xa2\ \x38\x5e\x8a\x35\x57\x7e\x33\x52\x7a\x2f\x4e\x75\x26\x40\x66\x1b\ \x2f\x4c\x10\x21\x32\x0c\x12\x1f\x05\x07\x13\x08\x07\x12\x0a\x0a\ \x13\x0a\x0b\x15\x0b\x0c\x17\x0a\x0c\x17\x0a\x0c\x17\x0b\x0e\x18\ \x0b\x0f\x18\x0a\x10\x18\x0c\x11\x1a\x0a\x10\x18\x0d\x11\x19\x0e\ \x11\x1b\x0f\x13\x1b\x0f\x13\x1a\x11\x15\x1a\x14\x17\x1d\x14\x17\ \x1f\x16\x1a\x20\x19\x1d\x21\x18\x1d\x20\x1d\x21\x24\x1f\x25\x25\ \x1f\x25\x26\x1e\x25\x25\x1e\x23\x24\x1f\x23\x25\x19\x1d\x22\x14\ \x17\x1c\x10\x13\x17\x0b\x0e\x12\x08\x0a\x12\x0a\x0b\x16\x0a\x0f\ \x1a\x09\x0f\x1b\x0b\x13\x20\x0b\x13\x22\x0b\x14\x22\x0c\x15\x23\ \x0f\x17\x27\x11\x19\x29\x11\x1b\x27\x12\x1c\x2c\x14\x1e\x30\x12\ \x1d\x2f\x15\x21\x31\x15\x22\x32\x17\x24\x34\x17\x24\x34\x19\x26\ \x36\x19\x24\x35\x1a\x25\x35\x19\x24\x32\x18\x22\x2f\x21\x28\x37\ \x1d\x25\x37\x1a\x22\x32\x15\x1c\x2a\x10\x16\x22\x09\x0e\x18\x08\ \x11\x1b\x0b\x14\x1e\x0d\x16\x21\x10\x18\x25\x14\x1d\x2a\x16\x1f\ \x2d\x18\x22\x31\x1c\x27\x35\x1e\x2a\x37\x23\x2e\x3b\x26\x31\x3f\ \x2b\x34\x42\x2e\x36\x42\x31\x39\x41\x35\x3e\x43\x36\x3d\x3f\x3a\ \x3f\x3e\x39\x3e\x3c\x39\x3e\x3c\x3c\x41\x3e\x3b\x40\x3e\x3a\x3f\ \x3e\x37\x3c\x3b\x34\x38\x3a\x2d\x32\x35\x29\x2e\x31\x25\x2a\x2d\ \x1e\x23\x26\x1d\x22\x26\x19\x1d\x22\x17\x1c\x21\x14\x1a\x1f\x1c\ \x22\x26\x1f\x24\x27\x1d\x23\x26\x1d\x23\x27\x19\x22\x26\x19\x22\ \x28\x1b\x25\x2c\x20\x29\x32\x26\x2e\x36\x2e\x37\x3c\x32\x3b\x3e\ \x38\x42\x41\x43\x4b\x49\x48\x4f\x4c\x4e\x55\x50\x51\x58\x53\x53\ \x59\x55\x54\x5b\x56\x54\x5a\x56\x55\x5c\x57\x56\x5c\x59\x57\x5c\ \x5a\x58\x5d\x5b\x5a\x60\x5d\x58\x60\x5d\x5a\x61\x5e\x5c\x63\x60\ \x5c\x63\x60\x5b\x62\x60\x5d\x64\x61\x5b\x62\x5d\x5b\x62\x5e\x5b\ \x61\x5f\x00\x00\x00\x65\xa4\xde\x5a\x9d\xdd\x4e\x96\xdd\x44\x8f\ \xda\x41\x8a\xd6\x44\x89\xd5\x42\x82\xcc\x40\x7b\xc4\x3a\x72\xb8\ \x37\x6d\xad\x3c\x73\xb1\x49\x84\xc1\x50\x8a\xc7\x43\x75\xb0\x39\ \x64\x98\x38\x63\x97\x46\x75\xac\x55\x83\xc0\x53\x88\xc6\x4e\x88\ \xc8\x4c\x88\xc9\x4e\x8b\xcb\x4f\x8f\xcf\x58\x97\xd5\x5d\x9c\xd7\ \x60\xa1\xd8\x5e\x9c\xd4\x53\x8d\xc5\x45\x76\xab\x3a\x62\x8f\x34\ \x56\x7f\x33\x52\x79\x30\x4e\x74\x26\x40\x64\x1c\x2e\x4b\x11\x1f\ \x32\x0d\x13\x1e\x07\x08\x13\x08\x08\x12\x0a\x0a\x13\x09\x0c\x14\ \x0b\x0d\x16\x0b\x0c\x17\x0a\x0d\x19\x09\x0e\x18\x09\x0f\x18\x0a\ \x10\x19\x0c\x10\x19\x0b\x11\x18\x0b\x11\x18\x0d\x10\x1a\x0f\x11\ \x1b\x10\x12\x1b\x11\x14\x1c\x14\x17\x1f\x14\x17\x1f\x16\x19\x21\ \x18\x1b\x20\x1a\x1d\x21\x1e\x22\x25\x1e\x23\x23\x20\x25\x26\x21\ \x26\x27\x20\x25\x26\x1d\x22\x23\x1a\x1f\x22\x13\x18\x1b\x0f\x14\ \x17\x08\x0d\x11\x09\x0a\x13\x0a\x0b\x15\x08\x0d\x18\x0a\x11\x1c\ \x08\x11\x1c\x0c\x13\x22\x0e\x15\x24\x0d\x16\x24\x0e\x17\x25\x0f\ \x19\x26\x0e\x1a\x25\x10\x1d\x29\x10\x1d\x2d\x14\x1f\x32\x15\x21\ \x34\x18\x23\x35\x19\x25\x37\x19\x25\x37\x1b\x27\x39\x1a\x25\x37\ \x1a\x24\x35\x1a\x23\x34\x19\x21\x31\x1f\x27\x38\x1d\x24\x34\x1b\ \x22\x31\x17\x1d\x2b\x12\x17\x25\x09\x0d\x1a\x0a\x14\x1e\x0d\x16\ \x20\x0e\x17\x21\x11\x1a\x24\x13\x1c\x26\x16\x1f\x2d\x1b\x24\x32\ \x1d\x28\x35\x21\x2d\x37\x24\x30\x3b\x25\x30\x3e\x29\x32\x3f\x2c\ \x34\x41\x2e\x37\x41\x2f\x39\x42\x30\x39\x3e\x33\x3b\x3b\x31\x36\ \x35\x34\x39\x38\x35\x3a\x38\x34\x39\x37\x32\x38\x36\x31\x37\x36\ \x2d\x33\x32\x29\x2f\x2f\x24\x29\x2a\x23\x28\x2b\x1e\x22\x26\x18\ \x1d\x22\x15\x1b\x21\x15\x1c\x22\x15\x1c\x20\x1a\x22\x22\x1e\x23\ \x24\x1e\x23\x24\x1c\x22\x25\x17\x1e\x21\x18\x21\x24\x17\x22\x26\ \x1a\x25\x2a\x1e\x29\x2d\x23\x2e\x32\x2a\x35\x39\x31\x3b\x3d\x38\ \x42\x40\x3f\x47\x43\x46\x4d\x48\x49\x4f\x4b\x4b\x50\x4e\x4c\x51\ \x4f\x4b\x52\x4f\x4b\x52\x4f\x4c\x51\x4f\x4c\x52\x50\x4c\x53\x50\ \x4c\x54\x51\x4c\x55\x52\x50\x57\x54\x50\x57\x54\x50\x57\x53\x50\ \x57\x55\x50\x57\x56\x4f\x58\x55\x50\x56\x54\x50\x55\x53\x00\x00\ \x00\x66\xa5\xe1\x5d\xa0\xdf\x52\x98\xdd\x45\x90\xda\x40\x8a\xd6\ \x43\x88\xd4\x46\x84\xcf\x42\x7c\xc7\x3b\x73\xba\x38\x6d\xb0\x3a\ \x70\xae\x46\x7f\xba\x4e\x89\xc5\x49\x7d\xb6\x39\x66\x9b\x36\x60\ \x96\x41\x6e\xa6\x50\x81\xbb\x51\x86\xc3\x4e\x88\xc7\x4c\x87\xc8\ \x4d\x8b\xca\x50\x8f\xcd\x57\x95\xd3\x5b\x9a\xd6\x5f\x9e\xd8\x5d\ \x9d\xd5\x57\x92\xca\x47\x7b\xb1\x3d\x65\x95\x33\x56\x7f\x30\x50\ \x75\x2d\x4c\x72\x25\x3f\x63\x1b\x2d\x4a\x14\x21\x33\x0a\x10\x1b\ \x06\x08\x13\x07\x07\x11\x0a\x0a\x13\x09\x0c\x13\x0a\x0c\x15\x0a\ \x0c\x16\x0b\x0e\x19\x09\x0e\x18\x0a\x0f\x18\x0a\x0f\x18\x0b\x10\ \x19\x09\x0f\x16\x0d\x11\x19\x0f\x11\x1a\x0e\x10\x1a\x12\x15\x1d\ \x10\x13\x1b\x11\x14\x1c\x13\x16\x1f\x16\x19\x20\x18\x1b\x20\x1b\ \x1e\x22\x1f\x22\x26\x1f\x24\x25\x20\x25\x26\x21\x26\x27\x20\x25\ \x26\x1f\x24\x26\x19\x1e\x21\x13\x18\x1b\x0e\x11\x16\x0a\x0e\x13\ \x08\x0a\x12\x0a\x0c\x16\x0a\x0e\x19\x09\x0f\x1a\x0a\x13\x1d\x0b\ \x12\x20\x0d\x14\x23\x0c\x16\x24\x0f\x18\x26\x0f\x18\x26\x0f\x1b\ \x28\x11\x1d\x2b\x12\x1e\x2f\x13\x1f\x31\x15\x21\x34\x16\x22\x35\ \x19\x24\x37\x17\x23\x36\x19\x25\x38\x1b\x26\x38\x1c\x26\x37\x1a\ \x25\x33\x19\x23\x31\x22\x2a\x3b\x1f\x26\x35\x1b\x23\x31\x1a\x1f\ \x2c\x11\x16\x21\x09\x0e\x18\x09\x12\x1c\x0d\x16\x20\x0e\x17\x21\ \x10\x19\x23\x12\x1b\x27\x14\x1d\x2a\x1b\x24\x31\x1c\x28\x34\x21\ \x2d\x38\x23\x2e\x3b\x25\x30\x3e\x28\x32\x40\x2a\x33\x41\x2b\x35\ \x40\x2c\x36\x3e\x2b\x35\x3c\x2c\x34\x38\x2b\x32\x32\x2c\x32\x32\ \x2f\x34\x34\x2d\x32\x33\x2d\x32\x31\x2b\x31\x30\x28\x2e\x2c\x24\ \x2b\x28\x20\x26\x26\x1f\x24\x27\x1b\x1f\x24\x17\x1a\x21\x15\x18\ \x20\x18\x1a\x22\x19\x1d\x24\x18\x1d\x21\x1c\x21\x22\x1c\x21\x22\ \x19\x21\x21\x17\x20\x22\x15\x1e\x21\x14\x1d\x21\x15\x1e\x22\x1b\ \x24\x28\x1f\x28\x2c\x23\x2c\x30\x2a\x33\x36\x31\x3a\x3b\x36\x3f\ \x3d\x3b\x43\x41\x3d\x46\x43\x3f\x46\x43\x41\x48\x45\x40\x47\x44\ \x40\x47\x44\x41\x49\x44\x40\x47\x42\x41\x48\x42\x41\x48\x43\x44\ \x4b\x46\x43\x4b\x48\x44\x4b\x48\x45\x4c\x49\x45\x4b\x4a\x43\x49\ \x49\x43\x4b\x4a\x44\x4b\x48\x42\x48\x47\x00\x00\x00\x67\xa7\xe3\ \x61\xa3\xe1\x56\x9c\xde\x49\x92\xda\x43\x8a\xd7\x45\x89\xd5\x48\ \x86\xd0\x45\x80\xc8\x3f\x76\xbe\x39\x6d\xb3\x3a\x6f\xb0\x44\x7d\ \xb9\x4b\x87\xc3\x4a\x82\xb9\x38\x66\x9c\x36\x60\x95\x40\x6b\xa1\ \x4b\x7d\xb6\x50\x85\xc1\x50\x87\xc6\x4b\x86\xc7\x4b\x88\xc7\x4f\ \x8c\xc9\x55\x92\xd0\x5a\x99\xd5\x5e\x9d\xd8\x5e\x9d\xd7\x57\x93\ \xcd\x49\x7e\xb6\x3c\x67\x98\x31\x56\x7f\x31\x51\x76\x2a\x48\x6c\ \x27\x40\x63\x1a\x2d\x48\x0f\x1b\x2f\x0b\x11\x1c\x06\x08\x13\x08\ \x08\x12\x09\x09\x12\x08\x0a\x12\x0c\x0d\x16\x0b\x0c\x16\x0b\x0d\ \x19\x0b\x0d\x18\x0c\x0f\x19\x0a\x0f\x18\x0a\x0f\x18\x0d\x11\x19\ \x0e\x10\x18\x0d\x11\x19\x0f\x12\x1a\x10\x13\x1b\x11\x14\x1c\x12\ \x16\x1b\x14\x18\x1e\x15\x19\x1e\x17\x1c\x20\x1d\x20\x24\x1e\x22\ \x24\x20\x25\x26\x20\x25\x26\x20\x25\x26\x1f\x24\x25\x1e\x24\x26\ \x1b\x20\x23\x14\x17\x1c\x0e\x11\x16\x0a\x0d\x12\x08\x0a\x13\x0a\ \x0a\x14\x0a\x0e\x19\x09\x10\x1b\x08\x11\x1b\x0a\x12\x1f\x0c\x14\ \x21\x0d\x16\x23\x0d\x16\x24\x0e\x18\x26\x0f\x1a\x29\x11\x1c\x2d\ \x0f\x1d\x2d\x13\x1f\x31\x14\x20\x32\x17\x23\x35\x1a\x26\x38\x1b\ \x27\x39\x19\x25\x37\x1a\x25\x37\x1c\x26\x37\x1a\x25\x33\x19\x24\ \x32\x22\x2b\x3b\x21\x29\x38\x1c\x23\x31\x19\x1f\x2c\x10\x15\x1f\ \x0a\x0f\x18\x08\x11\x1b\x0c\x15\x1f\x0e\x17\x21\x0f\x18\x22\x12\ \x1a\x25\x16\x1f\x2c\x19\x22\x2f\x1c\x28\x34\x22\x2e\x3b\x24\x30\ \x3d\x26\x31\x40\x27\x31\x42\x27\x31\x40\x26\x31\x3e\x27\x33\x3c\ \x25\x30\x38\x24\x2e\x34\x27\x2f\x32\x25\x2c\x2c\x27\x2f\x30\x27\ \x2f\x2f\x24\x2c\x2c\x23\x2a\x2b\x24\x29\x2a\x20\x26\x26\x1d\x22\ \x24\x1c\x21\x24\x19\x1d\x22\x17\x1c\x21\x14\x1a\x20\x14\x1a\x21\ \x16\x1c\x23\x17\x1d\x22\x1a\x1f\x21\x18\x1f\x21\x17\x1e\x22\x14\ \x1d\x20\x12\x1b\x1e\x12\x1b\x1f\x14\x1d\x21\x15\x1e\x22\x1a\x23\ \x27\x1d\x26\x2a\x22\x2c\x30\x25\x2f\x33\x2b\x35\x37\x30\x3a\x3a\ \x32\x3b\x3a\x35\x3e\x3d\x36\x3e\x3d\x36\x3c\x3b\x38\x3d\x3d\x36\ \x3d\x3b\x36\x3c\x3a\x35\x3c\x39\x37\x3e\x3b\x38\x3f\x3c\x39\x40\ \x3f\x3a\x41\x3f\x39\x40\x3d\x39\x40\x3f\x38\x40\x40\x36\x3f\x3f\ \x36\x3d\x3c\x37\x3d\x3c\x00\x00\x00\x65\xa7\xe3\x64\xa4\xe1\x5b\ \x9d\xde\x4f\x95\xdc\x44\x8b\xd6\x45\x89\xd7\x47\x88\xd2\x45\x84\ \xcb\x40\x7b\xc3\x3a\x70\xb7\x37\x6c\xb0\x3f\x78\xb7\x49\x85\xc2\ \x4c\x83\xbe\x3b\x6a\xa1\x34\x5f\x93\x3d\x67\x9b\x47\x79\xaf\x50\ \x83\xbe\x50\x87\xc5\x4c\x86\xc7\x49\x87\xc5\x4e\x8d\xc8\x53\x91\ \xce\x57\x95\xd2\x5b\x9a\xd6\x5c\x9b\xd5\x54\x92\xcd\x49\x81\xb9\ \x3d\x6b\x9e\x32\x57\x80\x30\x50\x73\x2c\x48\x6c\x25\x3d\x60\x1d\ \x2e\x49\x11\x1e\x32\x0a\x0f\x1b\x06\x09\x13\x09\x08\x12\x0b\x0b\ \x14\x09\x0b\x13\x0b\x0c\x15\x0a\x0b\x16\x0b\x0d\x18\x0b\x0d\x17\ \x0c\x10\x19\x0a\x0f\x18\x0c\x0e\x18\x0d\x10\x18\x0e\x11\x19\x0d\ \x10\x18\x0f\x12\x1a\x0e\x11\x1a\x10\x14\x1a\x12\x17\x1c\x12\x18\ \x1d\x15\x19\x1e\x16\x1b\x1e\x19\x1e\x20\x1d\x22\x23\x1f\x24\x25\ \x20\x25\x26\x20\x25\x26\x20\x25\x26\x1f\x24\x26\x1a\x1f\x24\x13\ \x17\x1c\x0f\x12\x17\x0a\x0c\x13\x09\x0a\x14\x0a\x0b\x15\x0a\x0e\ \x19\x09\x0f\x1a\x09\x13\x1d\x09\x12\x1c\x0c\x15\x20\x0b\x14\x22\ \x0d\x16\x24\x0f\x17\x28\x10\x1a\x2c\x12\x1c\x2d\x11\x1e\x2e\x14\ \x21\x31\x16\x23\x33\x17\x24\x34\x18\x25\x35\x1a\x26\x37\x19\x26\ \x36\x1a\x27\x38\x1b\x28\x37\x1c\x27\x34\x19\x25\x32\x1f\x2a\x38\ \x23\x2a\x3b\x1f\x25\x36\x1a\x20\x2d\x14\x1a\x25\x09\x0f\x19\x09\ \x12\x1c\x0c\x15\x1f\x0c\x15\x1f\x10\x19\x23\x12\x1a\x27\x16\x1f\ \x2d\x19\x22\x30\x1d\x28\x36\x23\x2d\x3d\x24\x31\x40\x25\x32\x41\ \x26\x33\x43\x23\x30\x40\x20\x2d\x3c\x24\x31\x3b\x20\x2b\x35\x20\ \x29\x32\x21\x2a\x2f\x20\x29\x2a\x1f\x29\x29\x20\x29\x2b\x21\x27\ \x2a\x1f\x26\x2a\x1d\x25\x29\x1b\x24\x27\x18\x21\x25\x15\x1e\x22\ \x15\x1e\x22\x14\x1d\x20\x13\x1c\x1f\x12\x1b\x1f\x15\x1d\x22\x16\ \x1f\x23\x16\x1c\x20\x16\x1c\x21\x14\x1c\x1f\x14\x1c\x22\x12\x1c\ \x22\x10\x1a\x21\x0e\x18\x1f\x11\x1b\x22\x12\x1c\x23\x15\x1f\x25\ \x19\x23\x2a\x1d\x27\x2e\x21\x2b\x31\x24\x30\x32\x28\x33\x34\x2a\ \x34\x34\x2b\x33\x33\x2c\x34\x34\x2d\x32\x33\x2c\x34\x33\x2d\x34\ \x33\x2d\x33\x31\x2e\x34\x33\x2f\x34\x33\x2e\x36\x35\x2e\x36\x35\ \x2f\x38\x36\x2e\x36\x36\x2d\x35\x37\x2d\x36\x3a\x2e\x34\x35\x30\ \x35\x35\x00\x00\x00\x65\xa6\xe2\x65\xa5\xe2\x5c\x9f\xdf\x53\x97\ \xdd\x46\x8c\xd9\x43\x88\xd7\x46\x87\xd4\x46\x85\xcd\x43\x7e\xc5\ \x3b\x75\xbb\x35\x6d\xb1\x3d\x77\xb8\x47\x85\xc4\x4b\x84\xc1\x3c\ \x6e\xa5\x33\x5e\x93\x37\x5f\x92\x45\x74\xab\x4f\x81\xbc\x4e\x85\ \xc3\x4d\x86\xc7\x50\x88\xc7\x52\x8d\xc9\x52\x8f\xca\x55\x93\xcf\ \x56\x95\xd3\x57\x97\xd5\x53\x91\xcc\x4a\x82\xbb\x40\x6d\x9f\x35\ \x59\x84\x2f\x4f\x73\x2d\x4a\x6d\x21\x3c\x5e\x1b\x2f\x49\x14\x1f\ \x31\x0b\x10\x1d\x06\x07\x13\x09\x08\x13\x08\x09\x13\x09\x0b\x15\ \x0a\x0b\x15\x0a\x0b\x16\x0b\x0d\x18\x0b\x0d\x19\x0a\x0d\x18\x0b\ \x0f\x18\x0c\x0f\x18\x0c\x0e\x18\x0d\x0f\x19\x0d\x11\x18\x0d\x11\ \x17\x0f\x13\x19\x11\x15\x1a\x11\x15\x1a\x12\x16\x1b\x15\x1a\x1d\ \x16\x1b\x1d\x19\x1e\x20\x1d\x21\x24\x1e\x23\x26\x20\x25\x27\x20\ \x25\x27\x1e\x23\x24\x1e\x24\x25\x19\x20\x24\x13\x17\x1d\x0e\x11\ \x18\x0a\x0b\x16\x09\x09\x14\x09\x0a\x15\x09\x0e\x1a\x08\x0f\x1b\ \x09\x11\x1d\x0a\x12\x1e\x0c\x15\x22\x0d\x16\x24\x0d\x17\x27\x0f\ \x1a\x2a\x0d\x19\x2b\x10\x1b\x2d\x12\x1e\x30\x12\x1f\x30\x14\x20\ \x31\x15\x22\x32\x17\x23\x35\x19\x25\x37\x1a\x27\x37\x1b\x27\x37\ \x1b\x28\x37\x1a\x26\x34\x1b\x27\x35\x24\x2f\x3f\x25\x2c\x3d\x21\ \x27\x39\x1a\x20\x30\x13\x18\x25\x0b\x0f\x18\x0b\x11\x1c\x0c\x14\ \x1f\x0d\x15\x21\x0f\x17\x23\x12\x1a\x28\x15\x1d\x2d\x1a\x23\x34\ \x1d\x29\x3a\x23\x2f\x40\x24\x31\x3f\x25\x32\x40\x24\x31\x40\x22\ \x30\x3f\x20\x2e\x3c\x1f\x2f\x3a\x1d\x2b\x36\x1e\x29\x32\x1e\x28\ \x2f\x1d\x26\x2a\x1e\x27\x2b\x1d\x26\x2a\x1d\x24\x2b\x1d\x24\x2b\ \x1c\x24\x2a\x1a\x23\x28\x18\x22\x26\x16\x20\x24\x14\x1f\x23\x13\ \x1e\x22\x14\x1f\x23\x14\x1f\x23\x14\x1f\x22\x14\x20\x22\x13\x1d\ \x21\x13\x1c\x21\x12\x1b\x20\x11\x1a\x1f\x10\x19\x1e\x0f\x18\x1d\ \x0e\x17\x1d\x0e\x18\x1e\x10\x1a\x22\x11\x1c\x23\x14\x1e\x25\x17\ \x21\x28\x1a\x26\x2a\x1e\x2a\x2c\x1f\x2b\x2e\x21\x2c\x2e\x24\x2d\ \x2e\x25\x2e\x2d\x28\x2d\x2e\x28\x2e\x2f\x27\x2d\x2e\x29\x30\x30\ \x29\x2e\x30\x2b\x2f\x32\x2a\x32\x31\x2a\x32\x32\x29\x31\x31\x2b\ \x33\x33\x2a\x33\x33\x29\x31\x32\x2a\x32\x32\x2b\x31\x33\x00\x00\ \x00\x65\xa7\xe4\x69\xa8\xe3\x5f\xa2\xe2\x54\x99\xde\x47\x8e\xda\ \x41\x89\xd7\x46\x88\xd6\x47\x87\xd0\x46\x83\xc9\x3d\x77\xbe\x35\ \x6f\xb2\x3c\x76\xb8\x47\x84\xc4\x49\x84\xc2\x3e\x72\xad\x32\x5f\ \x95\x38\x5f\x93\x43\x6f\xa6\x4d\x7f\xb9\x4e\x84\xc3\x51\x89\xc7\ \x53\x8b\xca\x52\x8f\xcb\x54\x90\xcd\x52\x91\xce\x53\x92\xd2\x52\ \x92\xd2\x50\x8e\xcd\x4a\x81\xbb\x3f\x6f\x9f\x39\x5e\x89\x2f\x52\ \x76\x2e\x4a\x6f\x24\x3f\x61\x1b\x31\x49\x14\x1f\x30\x0d\x11\x1f\ \x06\x07\x14\x0a\x08\x14\x09\x0a\x14\x09\x0b\x15\x0b\x0c\x16\x0b\ \x0d\x17\x0b\x0c\x18\x0d\x0e\x1c\x0b\x0d\x18\x0b\x0d\x17\x0d\x0f\ \x19\x0d\x0f\x19\x0d\x0f\x19\x0d\x12\x18\x0e\x12\x17\x0f\x14\x18\ \x0f\x13\x18\x12\x16\x1b\x13\x17\x1d\x16\x1b\x1f\x18\x1d\x20\x1b\ \x20\x23\x1d\x21\x25\x20\x23\x29\x21\x25\x29\x20\x25\x27\x1f\x24\ \x25\x1e\x24\x25\x1a\x20\x23\x13\x17\x1c\x0e\x11\x1a\x0a\x0c\x17\ \x08\x08\x14\x0a\x0d\x17\x07\x0e\x19\x07\x10\x1c\x09\x11\x1e\x0a\ \x13\x20\x0b\x14\x22\x0d\x16\x26\x0b\x15\x26\x0c\x19\x29\x0e\x1a\ \x2c\x0f\x1c\x2d\x11\x1d\x2f\x14\x20\x31\x14\x20\x31\x16\x23\x34\ \x18\x23\x36\x1a\x25\x38\x1b\x28\x38\x1c\x29\x39\x1c\x29\x38\x1b\ \x28\x36\x1b\x27\x36\x24\x2e\x3f\x27\x2e\x3e\x22\x29\x3a\x1b\x22\ \x32\x14\x1a\x27\x0b\x0f\x18\x0d\x11\x1c\x0d\x13\x1f\x0d\x15\x23\ \x0f\x17\x24\x11\x19\x27\x16\x1d\x2e\x1c\x23\x35\x1f\x2a\x3b\x20\ \x2f\x3f\x24\x32\x3f\x26\x33\x41\x25\x32\x40\x22\x30\x3e\x21\x31\ \x3e\x20\x30\x3e\x1e\x2c\x39\x20\x2b\x34\x1e\x27\x2f\x1e\x26\x2d\ \x1d\x26\x2a\x1e\x27\x2b\x1c\x25\x29\x1d\x26\x2a\x1b\x24\x28\x1a\ \x24\x27\x18\x23\x27\x18\x23\x27\x17\x22\x26\x16\x22\x26\x16\x21\ \x25\x17\x22\x26\x17\x22\x26\x17\x22\x25\x15\x20\x24\x15\x20\x24\ \x14\x1f\x23\x12\x1b\x1e\x11\x1a\x1d\x0f\x17\x1b\x10\x19\x1d\x0d\ \x17\x1c\x10\x1a\x21\x10\x1b\x22\x12\x1c\x24\x13\x1d\x24\x17\x22\ \x27\x1a\x25\x28\x1c\x27\x2c\x1e\x29\x2c\x21\x2b\x2c\x25\x2e\x2e\ \x25\x2d\x2d\x29\x2f\x31\x28\x2f\x2f\x28\x30\x2f\x2a\x30\x30\x2b\ \x2f\x31\x2b\x33\x33\x2a\x32\x33\x2b\x33\x34\x2c\x34\x35\x2d\x35\ \x35\x2c\x34\x34\x2c\x34\x35\x2d\x34\x36\x00\x00\x00\x62\xa5\xe3\ \x68\xa7\xe3\x62\xa4\xe2\x57\x9b\xdd\x48\x8f\xd8\x41\x89\xd6\x44\ \x89\xd6\x46\x86\xd1\x45\x84\xcd\x3e\x79\xbe\x34\x6e\xb1\x38\x72\ \xb3\x42\x7f\xc1\x4a\x84\xc5\x40\x75\xb3\x33\x62\x9a\x31\x5c\x91\ \x3d\x6a\xa0\x4d\x7e\xb8\x4f\x84\xc1\x51\x88\xc7\x52\x8c\xca\x51\ \x8c\xcd\x52\x8f\xcd\x51\x8e\xcd\x50\x8e\xcf\x52\x8f\xd2\x4e\x8b\ \xcc\x46\x7f\xba\x41\x72\xa3\x3b\x61\x8b\x33\x55\x7a\x30\x4c\x73\ \x26\x3f\x63\x1a\x2f\x4a\x14\x1e\x31\x0d\x12\x1e\x07\x08\x14\x09\ \x08\x13\x09\x0a\x14\x0a\x0c\x16\x0c\x0d\x17\x0b\x0d\x18\x0b\x0d\ \x18\x0c\x0e\x19\x0b\x0d\x18\x0b\x10\x1a\x0a\x0f\x18\x0b\x10\x18\ \x0c\x12\x19\x0d\x13\x1a\x0e\x11\x19\x10\x13\x1b\x10\x13\x1b\x14\ \x16\x1e\x14\x17\x1f\x17\x1b\x20\x16\x1a\x1f\x1a\x1e\x23\x1c\x20\ \x25\x1e\x22\x27\x1d\x21\x26\x20\x24\x29\x20\x25\x28\x20\x25\x28\ \x1b\x20\x23\x13\x17\x1d\x10\x12\x1a\x0a\x0b\x15\x09\x09\x14\x09\ \x0b\x16\x08\x0e\x19\x07\x10\x1a\x09\x11\x1e\x0a\x13\x20\x0b\x14\ \x22\x0d\x17\x25\x0c\x16\x27\x0d\x19\x29\x0f\x1c\x2c\x0f\x1c\x2c\ \x11\x1e\x2e\x13\x20\x30\x13\x20\x31\x15\x23\x35\x18\x26\x38\x17\ \x25\x37\x19\x27\x39\x1c\x29\x3b\x1e\x2b\x3b\x1c\x29\x37\x1d\x28\ \x38\x27\x2f\x41\x2a\x31\x42\x25\x2c\x3b\x22\x28\x36\x18\x1c\x28\ \x0a\x0e\x18\x0d\x11\x1c\x0d\x13\x1f\x0c\x14\x21\x10\x18\x25\x10\ \x18\x26\x17\x1e\x2d\x1b\x24\x35\x1f\x2a\x3b\x20\x2e\x3d\x24\x32\ \x40\x26\x33\x41\x26\x33\x41\x20\x2e\x3c\x20\x2f\x3e\x20\x2f\x40\ \x1d\x2b\x3b\x1d\x2a\x35\x1d\x29\x30\x1b\x26\x2b\x1c\x26\x2a\x1a\ \x25\x29\x1b\x26\x2a\x1b\x26\x2a\x19\x24\x29\x19\x22\x2a\x18\x22\ \x28\x1a\x24\x2b\x19\x23\x2a\x16\x22\x26\x17\x23\x26\x18\x24\x28\ \x17\x23\x29\x16\x21\x29\x15\x20\x27\x16\x20\x26\x14\x1f\x23\x12\ \x1d\x20\x14\x1c\x22\x11\x1b\x1f\x0f\x18\x1f\x0d\x17\x1e\x0f\x19\ \x20\x0f\x19\x21\x11\x19\x23\x12\x1b\x24\x14\x1e\x27\x17\x21\x28\ \x1a\x24\x2b\x1c\x27\x2b\x22\x2b\x2f\x24\x2d\x30\x2a\x32\x35\x2e\ \x35\x38\x2d\x35\x35\x2d\x34\x33\x30\x35\x35\x33\x38\x3a\x30\x37\ \x3a\x31\x38\x3b\x34\x3b\x3e\x33\x3a\x3d\x33\x3b\x3d\x35\x3e\x3e\ \x35\x3c\x3f\x35\x3c\x3f\x00\x00\x00\x62\xa5\xe4\x69\xa9\xe3\x64\ \xa6\xe2\x5b\x9e\xde\x4a\x92\xda\x41\x89\xd6\x44\x89\xd6\x46\x88\ \xd3\x44\x84\xce\x3f\x7b\xc2\x37\x72\xb4\x37\x70\xb1\x41\x7c\xbc\ \x48\x83\xc4\x42\x79\xb7\x35\x65\x9f\x32\x5e\x93\x3d\x68\x9f\x4b\ \x79\xb3\x4e\x82\xc0\x4f\x86\xc4\x4f\x8a\xc9\x4f\x8c\xcc\x4f\x8c\ \xcb\x4f\x8c\xcb\x4f\x8d\xce\x4e\x8b\xce\x4a\x87\xc9\x45\x80\xbe\ \x41\x73\xa7\x3c\x63\x8e\x33\x57\x7b\x30\x4c\x72\x25\x3d\x61\x1d\ \x32\x4c\x14\x21\x32\x0e\x14\x1e\x08\x0a\x14\x08\x08\x12\x09\x0a\ \x14\x0a\x0c\x16\x0a\x0c\x16\x0a\x0c\x16\x0b\x0e\x18\x09\x0e\x17\ \x0b\x0f\x19\x0a\x0e\x19\x0a\x0e\x17\x0b\x10\x18\x0c\x12\x19\x0d\ \x12\x19\x0e\x11\x19\x0f\x12\x1a\x10\x13\x1b\x13\x15\x1d\x15\x18\ \x20\x15\x19\x1f\x17\x1c\x1f\x19\x1d\x21\x1b\x1f\x24\x1d\x22\x25\ \x1e\x22\x26\x1e\x23\x26\x20\x25\x28\x1d\x22\x25\x19\x1e\x21\x13\ \x17\x1b\x0f\x11\x18\x0a\x0c\x14\x08\x09\x13\x09\x0b\x15\x08\x0f\ \x19\x06\x0f\x19\x09\x12\x1b\x0a\x12\x1f\x0a\x13\x20\x0d\x17\x25\ \x0e\x19\x27\x0d\x1a\x29\x0e\x1b\x2b\x11\x1e\x2e\x12\x20\x2f\x15\ \x22\x31\x15\x23\x34\x16\x24\x36\x17\x25\x36\x1a\x29\x3a\x1c\x2a\ \x3c\x1d\x2a\x3c\x1d\x2b\x3c\x1d\x2c\x3b\x1f\x2a\x3a\x2a\x31\x44\ \x2b\x32\x43\x2a\x2f\x3e\x25\x29\x35\x1a\x1e\x29\x0c\x10\x1b\x0a\ \x0e\x19\x0c\x13\x1e\x0c\x14\x21\x0f\x17\x24\x12\x1a\x27\x17\x20\ \x2d\x1b\x24\x34\x1e\x2a\x3a\x21\x2e\x3e\x24\x31\x40\x23\x31\x3e\ \x24\x31\x3f\x22\x30\x3f\x21\x30\x40\x20\x30\x41\x1c\x2b\x3c\x1a\ \x27\x34\x1e\x28\x30\x1a\x24\x2c\x1a\x25\x28\x1a\x25\x29\x19\x25\ \x28\x18\x23\x27\x1a\x24\x29\x1a\x24\x2b\x19\x23\x2a\x19\x23\x2a\ \x19\x23\x2a\x19\x24\x2a\x18\x24\x29\x19\x24\x2b\x17\x22\x2a\x17\ \x21\x2a\x17\x23\x2a\x15\x21\x25\x15\x20\x24\x14\x1e\x24\x13\x1c\ \x25\x13\x1c\x23\x0f\x18\x1f\x0f\x19\x20\x0e\x18\x1f\x11\x1a\x22\ \x11\x19\x23\x14\x1d\x26\x15\x1e\x27\x18\x21\x2a\x1b\x25\x2c\x20\ \x2a\x31\x23\x2d\x33\x2b\x35\x39\x30\x39\x3c\x36\x3e\x3f\x39\x41\ \x3f\x3c\x42\x41\x3d\x42\x42\x3e\x43\x44\x3c\x44\x43\x3e\x46\x45\ \x3e\x46\x45\x40\x48\x47\x41\x49\x49\x43\x4b\x4b\x43\x4b\x4b\x42\ \x4a\x4a\x00\x00\x00\x61\xa6\xe4\x6b\xab\xe5\x67\xa8\xe1\x5e\xa1\ \xdf\x50\x96\xdc\x43\x8c\xd8\x44\x8a\xd7\x46\x8a\xd5\x45\x86\xd1\ \x41\x7e\xc6\x39\x73\xb7\x36\x6e\xaf\x3c\x74\xb2\x47\x7f\xbd\x43\ \x79\xb7\x35\x66\x9f\x33\x5f\x93\x38\x65\x98\x48\x76\xad\x4e\x80\ \xbe\x4e\x85\xc5\x4b\x86\xc7\x4c\x89\xc9\x4b\x88\xc6\x4d\x8a\xc7\ \x4b\x89\xc8\x4a\x88\xc8\x48\x85\xc7\x44\x81\xbf\x41\x75\xaa\x3e\ \x65\x93\x33\x57\x7b\x31\x4e\x72\x27\x3f\x61\x1b\x30\x49\x14\x20\ \x31\x0c\x12\x1b\x07\x09\x13\x09\x09\x13\x09\x0a\x14\x09\x0b\x15\ \x0b\x0d\x17\x0a\x0c\x16\x0b\x0f\x18\x0a\x0f\x18\x09\x0d\x18\x0b\ \x0f\x1a\x0a\x0f\x19\x0c\x11\x1a\x0b\x11\x16\x0c\x11\x18\x10\x13\ \x1b\x0f\x12\x1a\x11\x13\x1b\x12\x15\x1d\x14\x18\x1e\x16\x1b\x1e\ \x18\x1d\x1f\x1a\x1f\x22\x1c\x21\x24\x1d\x22\x23\x1e\x23\x24\x1f\ \x24\x25\x1e\x23\x24\x1c\x21\x23\x19\x1d\x21\x14\x17\x1b\x0d\x10\ \x15\x09\x0b\x13\x08\x0a\x13\x07\x0b\x14\x08\x0f\x18\x07\x10\x1a\ \x09\x12\x1c\x0c\x15\x1f\x0b\x14\x21\x0c\x16\x24\x0d\x18\x26\x0e\ \x1b\x2a\x10\x1b\x2e\x11\x1d\x30\x14\x20\x32\x15\x21\x33\x17\x24\ \x36\x16\x25\x37\x18\x27\x37\x19\x28\x37\x1b\x2a\x3c\x1c\x2a\x3c\ \x1c\x2b\x3c\x1c\x2b\x3a\x1f\x29\x3b\x2a\x31\x44\x2e\x34\x45\x29\ \x30\x3d\x27\x2a\x35\x1d\x21\x2b\x0a\x0e\x19\x0c\x10\x1b\x0c\x13\ \x1f\x0d\x15\x22\x10\x18\x25\x12\x1b\x27\x16\x20\x2c\x1a\x24\x34\ \x1f\x29\x3a\x22\x2f\x3f\x22\x30\x3d\x25\x32\x3e\x25\x32\x40\x21\ \x30\x3f\x22\x30\x41\x1f\x2f\x40\x1d\x2c\x3c\x1c\x29\x36\x1e\x27\ \x32\x1b\x24\x2e\x1c\x25\x2d\x1b\x24\x2c\x1a\x24\x2c\x1a\x24\x2b\ \x19\x24\x2b\x19\x25\x2b\x19\x23\x2a\x18\x22\x29\x1b\x23\x2a\x1a\ \x24\x2c\x19\x25\x2c\x19\x25\x2c\x19\x24\x2c\x17\x22\x2a\x18\x23\ \x2b\x17\x23\x28\x16\x23\x25\x15\x1f\x26\x13\x1c\x26\x13\x1c\x25\ \x11\x1a\x23\x0f\x19\x20\x0f\x19\x20\x10\x19\x20\x0f\x19\x20\x12\ \x1c\x23\x16\x20\x26\x18\x22\x29\x1d\x28\x2e\x22\x2c\x33\x29\x33\ \x3b\x31\x3c\x41\x36\x42\x44\x3d\x48\x48\x46\x4d\x4d\x48\x4e\x4d\ \x49\x4e\x4e\x49\x50\x50\x4a\x53\x51\x4b\x53\x52\x4b\x54\x52\x4c\ \x54\x53\x4c\x55\x53\x4e\x56\x55\x4e\x56\x55\x4f\x58\x55\x00\x00\ \x00\x5e\xa3\xe4\x69\xaa\xe8\x68\xa8\xe4\x60\xa3\xe0\x53\x99\xdf\ \x47\x8e\xd9\x47\x8c\xd9\x47\x8a\xd6\x45\x86\xd3\x42\x7f\xc6\x3a\ \x75\xb8\x36\x6d\xad\x39\x70\xad\x44\x7a\xb9\x47\x7d\xbb\x36\x67\ \xa1\x32\x5f\x93\x35\x63\x97\x44\x73\xaa\x4c\x80\xbc\x4c\x80\xc0\ \x4b\x83\xc6\x4a\x87\xc7\x49\x87\xc4\x49\x86\xc4\x49\x86\xc5\x47\ \x84\xc6\x48\x85\xc7\x44\x82\xc1\x40\x78\xaf\x3e\x69\x95\x36\x58\ \x7e\x31\x4c\x70\x27\x3f\x60\x1c\x2f\x4a\x12\x20\x30\x0b\x11\x1c\ \x09\x08\x12\x09\x0a\x14\x09\x0b\x15\x0b\x0b\x16\x0a\x0d\x16\x0c\ \x0e\x17\x0b\x0d\x17\x0c\x0f\x18\x0a\x0f\x19\x0a\x0e\x19\x0b\x0f\ \x1a\x0b\x0f\x1a\x0b\x10\x1a\x0d\x12\x1c\x0c\x11\x1b\x10\x14\x1c\ \x11\x14\x1c\x13\x16\x1d\x16\x19\x20\x17\x1c\x20\x16\x1d\x20\x18\ \x1f\x22\x1a\x20\x24\x1e\x23\x24\x1e\x23\x24\x20\x25\x28\x1e\x23\ \x26\x1c\x21\x24\x1a\x1e\x23\x11\x14\x19\x0f\x0f\x18\x0c\x0b\x14\ \x09\x09\x14\x09\x0a\x17\x09\x0d\x18\x08\x10\x1b\x08\x12\x1c\x0b\ \x13\x20\x0c\x15\x22\x0c\x17\x25\x0e\x19\x28\x10\x1b\x2b\x10\x1d\ \x2d\x12\x1f\x2e\x14\x22\x31\x14\x22\x33\x18\x25\x37\x18\x26\x38\ \x17\x25\x37\x1a\x28\x3a\x1c\x2a\x3c\x1c\x2a\x3c\x1d\x2b\x3d\x1c\ \x2b\x3b\x1c\x29\x39\x2b\x34\x45\x2f\x36\x46\x2d\x33\x41\x2a\x2d\ \x37\x1f\x22\x2a\x0c\x0f\x18\x0d\x11\x1c\x0c\x12\x1e\x0c\x14\x21\ \x11\x18\x25\x12\x1a\x27\x16\x1f\x2c\x19\x24\x33\x1d\x28\x39\x21\ \x2e\x3e\x23\x30\x3c\x22\x31\x3a\x23\x32\x3e\x21\x30\x40\x1f\x2d\ \x3f\x20\x30\x42\x1e\x2d\x3f\x1c\x29\x37\x1e\x27\x33\x1c\x25\x2e\ \x1b\x25\x2c\x1a\x24\x2b\x19\x24\x2a\x19\x23\x2a\x19\x23\x2a\x1a\ \x23\x2c\x19\x23\x2a\x1a\x23\x2b\x19\x21\x2b\x1a\x23\x2d\x1a\x23\ \x2d\x1a\x26\x2c\x19\x25\x2b\x19\x24\x2c\x18\x24\x2a\x19\x25\x2b\ \x18\x24\x29\x15\x21\x27\x13\x1f\x25\x15\x21\x26\x11\x1c\x24\x11\ \x1c\x24\x10\x1b\x24\x12\x19\x22\x12\x1b\x24\x12\x1a\x24\x16\x1f\ \x28\x1a\x23\x2c\x20\x29\x31\x24\x2e\x35\x2c\x36\x3d\x34\x3f\x43\ \x3c\x48\x4c\x48\x50\x53\x4e\x55\x56\x55\x5b\x5a\x57\x5d\x5c\x58\ \x5e\x5d\x59\x5f\x5d\x5a\x60\x5e\x59\x60\x5d\x59\x62\x5f\x5a\x64\ \x61\x58\x63\x61\x5a\x63\x62\x5c\x64\x63\x00\x00\x00\x5d\xa4\xe5\ \x66\xaa\xe8\x67\xaa\xe5\x60\xa5\xe1\x55\x9d\xe1\x49\x93\xdc\x48\ \x8f\xd9\x48\x8e\xd8\x45\x88\xd3\x43\x82\xca\x3c\x76\xba\x39\x6f\ \xb2\x38\x6f\xad\x41\x7a\xb8\x45\x7d\xba\x39\x6d\xa6\x30\x5e\x93\ \x33\x60\x93\x42\x70\xa6\x4b\x7d\xb9\x4b\x80\xc0\x4a\x82\xc4\x4a\ \x85\xc6\x4b\x85\xc5\x49\x85\xc3\x47\x82\xc3\x47\x83\xc3\x47\x82\ \xc4\x47\x82\xc1\x43\x7a\xb0\x41\x6c\x97\x35\x57\x7e\x31\x4d\x71\ \x26\x3e\x60\x1a\x2d\x49\x11\x1e\x2e\x0a\x11\x1b\x08\x08\x12\x09\ \x09\x13\x08\x0a\x14\x0a\x0b\x16\x0a\x0c\x16\x0b\x0d\x18\x0c\x0e\ \x19\x0c\x0e\x19\x0b\x10\x19\x0a\x0f\x19\x0b\x10\x19\x0b\x10\x1a\ \x0d\x12\x1c\x0d\x12\x1c\x0e\x13\x1c\x10\x13\x1c\x12\x15\x1d\x12\ \x16\x1c\x16\x19\x20\x16\x1b\x1f\x18\x1f\x22\x1a\x21\x24\x1b\x21\ \x24\x1f\x24\x24\x1f\x24\x25\x20\x25\x27\x20\x25\x28\x1d\x22\x25\ \x17\x1b\x20\x11\x15\x1a\x0e\x0f\x16\x0c\x0a\x13\x08\x09\x13\x09\ \x0a\x16\x09\x0d\x18\x08\x10\x1b\x08\x12\x1c\x0a\x13\x20\x0e\x17\ \x24\x0d\x17\x25\x0e\x18\x29\x0f\x1b\x2c\x0e\x1b\x2c\x11\x1e\x2e\ \x14\x21\x31\x14\x23\x34\x18\x26\x38\x19\x27\x39\x18\x26\x39\x1b\ \x29\x3b\x1b\x2a\x3b\x1c\x2a\x3c\x1d\x2c\x3e\x1a\x29\x3a\x1e\x2b\ \x3b\x2c\x35\x46\x32\x39\x48\x2f\x35\x41\x2b\x2f\x38\x21\x24\x2c\ \x0d\x10\x18\x0c\x11\x1c\x0d\x14\x20\x0c\x14\x21\x10\x17\x24\x11\ \x19\x26\x16\x20\x2e\x1a\x25\x34\x1d\x29\x3a\x21\x2e\x3e\x24\x31\ \x40\x24\x31\x3f\x24\x31\x3e\x20\x2e\x3e\x1f\x2d\x40\x1f\x2f\x41\ \x1c\x2b\x3c\x1c\x28\x37\x1d\x27\x31\x1a\x24\x2b\x18\x22\x29\x18\ \x22\x29\x18\x22\x29\x18\x22\x29\x18\x22\x29\x17\x20\x29\x18\x22\ \x29\x18\x21\x29\x18\x21\x2a\x18\x21\x2b\x19\x22\x2a\x19\x25\x2b\ \x18\x24\x2a\x1a\x26\x2c\x18\x24\x2a\x18\x24\x2a\x18\x24\x2a\x16\ \x22\x28\x15\x21\x27\x15\x21\x26\x14\x1f\x26\x13\x1e\x26\x13\x1d\ \x25\x11\x1a\x22\x13\x1c\x25\x12\x1b\x24\x15\x1e\x27\x19\x22\x2b\ \x1f\x28\x30\x27\x31\x38\x30\x3a\x3f\x39\x44\x48\x40\x4b\x4f\x4c\ \x55\x58\x57\x5d\x5e\x5f\x65\x64\x63\x6a\x68\x62\x68\x67\x65\x6b\ \x68\x66\x6d\x6a\x65\x6d\x6a\x65\x6e\x6b\x66\x6f\x6b\x66\x70\x6b\ \x67\x70\x6c\x69\x71\x6e\x00\x00\x00\x5d\xa3\xe4\x64\xa9\xe6\x66\ \xa9\xe5\x60\xa5\xe2\x58\x9f\xe3\x4c\x94\xdc\x46\x8f\xda\x48\x8d\ \xd9\x47\x8a\xd5\x44\x83\xcb\x3e\x79\xbf\x36\x6d\xb3\x37\x6f\xae\ \x3e\x78\xb7\x42\x7c\xba\x3b\x70\xa9\x31\x60\x96\x30\x5b\x8f\x3e\ \x6b\xa1\x4c\x7d\xb6\x4a\x80\xbe\x4a\x83\xc3\x4a\x84\xc5\x4a\x84\ \xc5\x48\x82\xc3\x46\x80\xc1\x46\x80\xc1\x49\x81\xc1\x49\x81\xbf\ \x44\x7a\xb0\x3f\x6a\x98\x37\x5b\x82\x2e\x4b\x6f\x24\x3c\x5e\x19\ \x2d\x48\x11\x1d\x2d\x0a\x10\x1c\x08\x08\x12\x08\x09\x12\x08\x0a\ \x14\x0b\x0c\x17\x0a\x0c\x16\x0b\x0d\x18\x0c\x0e\x19\x0b\x0d\x17\ \x0b\x10\x19\x0b\x10\x19\x0c\x11\x1a\x0b\x10\x19\x0d\x12\x1b\x0d\ \x11\x1a\x0e\x12\x1b\x11\x14\x1c\x11\x14\x1c\x12\x14\x1c\x15\x18\ \x1f\x16\x1a\x1f\x17\x1e\x20\x19\x20\x22\x1c\x22\x25\x1f\x24\x25\ \x20\x25\x26\x20\x25\x28\x1e\x23\x26\x1e\x23\x26\x18\x1c\x21\x10\ \x13\x19\x0d\x0f\x17\x0a\x09\x12\x08\x08\x12\x0a\x0b\x17\x0a\x0e\ \x1a\x08\x10\x1b\x0a\x13\x1e\x0c\x15\x22\x0e\x17\x25\x0c\x16\x25\ \x0d\x1a\x29\x0d\x1a\x2a\x10\x1c\x2d\x11\x1e\x2e\x14\x21\x32\x14\ \x22\x34\x18\x25\x39\x18\x25\x3b\x19\x27\x3a\x1c\x2b\x3c\x1d\x2e\ \x3d\x1d\x2c\x3d\x1d\x2c\x3e\x1c\x2a\x3b\x1c\x2a\x3a\x2f\x39\x47\ \x35\x3c\x4a\x32\x37\x43\x30\x32\x3c\x23\x26\x2e\x0e\x10\x1a\x0a\ \x10\x1c\x0c\x13\x20\x0d\x15\x23\x0f\x17\x24\x13\x1b\x29\x15\x1f\ \x2e\x1a\x24\x35\x1e\x2a\x3c\x20\x2e\x3e\x21\x2f\x41\x25\x32\x42\ \x24\x31\x41\x22\x2e\x3f\x21\x2e\x3f\x1f\x2d\x3f\x1b\x29\x3b\x1a\ \x26\x34\x1a\x25\x2e\x17\x22\x26\x18\x21\x25\x17\x20\x24\x18\x20\ \x24\x18\x21\x25\x15\x1f\x24\x16\x1f\x27\x15\x1e\x26\x16\x1f\x27\ \x15\x1f\x27\x16\x20\x28\x17\x21\x29\x17\x21\x28\x18\x24\x2a\x17\ \x23\x29\x17\x23\x28\x17\x23\x28\x17\x23\x29\x16\x23\x28\x16\x22\ \x28\x16\x21\x25\x14\x20\x26\x13\x1e\x26\x12\x1d\x24\x10\x1a\x22\ \x12\x1b\x24\x12\x1b\x24\x14\x1d\x26\x1a\x23\x2c\x1f\x28\x30\x27\ \x31\x38\x32\x3d\x42\x3c\x47\x4b\x43\x4f\x51\x51\x5b\x5d\x5b\x64\ \x62\x64\x6a\x68\x6a\x71\x6e\x6c\x73\x71\x6b\x71\x70\x6d\x74\x73\ \x6e\x76\x75\x6e\x76\x76\x6f\x77\x74\x70\x7b\x72\x71\x77\x72\x72\ \x79\x76\x00\x00\x00\x57\xa2\xe2\x5f\xa5\xe4\x63\xa6\xe3\x61\xa4\ \xe1\x58\x9e\xdf\x4d\x95\xdb\x47\x8f\xd9\x47\x8d\xdb\x46\x8a\xd6\ \x44\x84\xce\x3e\x7b\xc1\x38\x72\xb5\x38\x6f\xaf\x3d\x77\xb7\x44\ \x7f\xbe\x3e\x73\xae\x33\x61\x97\x30\x5b\x8e\x3c\x67\x9c\x4b\x79\ \xb2\x4e\x83\xbf\x4a\x85\xc2\x4b\x86\xc6\x4c\x86\xc7\x4a\x84\xc5\ \x47\x81\xc2\x46\x81\xbe\x4a\x82\xc0\x4b\x82\xbe\x45\x7c\xb2\x41\ \x6d\x9d\x35\x5b\x82\x2e\x4c\x70\x21\x3a\x5b\x19\x2b\x47\x11\x1e\ \x2e\x08\x0e\x1b\x08\x07\x12\x07\x09\x11\x07\x0a\x13\x0b\x0c\x16\ \x0a\x0b\x16\x0b\x0c\x19\x0d\x0e\x1b\x0a\x0d\x17\x08\x0d\x15\x09\ \x0f\x16\x0b\x11\x18\x0b\x11\x18\x0c\x12\x19\x0d\x10\x18\x0f\x12\ \x1a\x10\x13\x1b\x14\x15\x1d\x15\x17\x1f\x15\x19\x1f\x17\x1c\x20\ \x16\x1d\x1f\x19\x21\x21\x1c\x24\x24\x1d\x25\x25\x1e\x26\x26\x1d\ \x25\x27\x1d\x24\x27\x1b\x22\x25\x17\x1c\x20\x12\x15\x1b\x0d\x0f\ \x17\x09\x0b\x13\x08\x0a\x13\x0a\x0b\x15\x0a\x0e\x19\x09\x11\x1d\ \x0a\x13\x20\x0f\x18\x26\x0d\x17\x25\x0f\x1a\x29\x0e\x1b\x2b\x0e\ \x1a\x2c\x0f\x1c\x2d\x11\x1e\x2e\x14\x20\x31\x15\x23\x35\x18\x27\ \x3a\x18\x25\x3b\x19\x28\x3b\x1c\x2a\x3d\x1d\x2d\x3e\x1c\x2a\x3d\ \x1e\x2c\x3f\x1b\x2a\x3c\x1c\x2a\x3a\x2e\x38\x47\x36\x3c\x49\x38\ \x3b\x47\x30\x32\x3c\x23\x25\x2f\x0d\x10\x1a\x0a\x10\x1d\x0c\x14\ \x21\x0e\x16\x24\x11\x18\x27\x13\x1b\x2b\x17\x21\x32\x1b\x26\x38\ \x1e\x2b\x3d\x21\x2f\x3f\x22\x31\x42\x22\x31\x41\x24\x31\x3f\x20\ \x2d\x3b\x1f\x2c\x3c\x1e\x2c\x3c\x1c\x28\x38\x19\x25\x31\x18\x24\ \x2b\x14\x1f\x23\x13\x1c\x20\x13\x1c\x20\x14\x1d\x21\x13\x1c\x20\ \x13\x1b\x21\x12\x1a\x22\x13\x1a\x23\x12\x19\x22\x13\x1b\x22\x14\ \x1d\x22\x14\x1e\x25\x13\x1d\x24\x16\x21\x27\x15\x21\x25\x18\x23\ \x27\x16\x21\x25\x16\x21\x26\x18\x21\x29\x16\x20\x27\x15\x20\x24\ \x12\x1e\x24\x15\x21\x28\x13\x1f\x25\x12\x1d\x24\x11\x1c\x24\x10\ \x1c\x23\x12\x1d\x25\x15\x21\x29\x1f\x29\x31\x25\x2f\x36\x32\x3d\ \x41\x3c\x48\x4a\x45\x51\x51\x53\x5d\x5d\x5e\x66\x66\x68\x6f\x6c\ \x6e\x76\x73\x71\x7a\x77\x73\x7b\x7a\x73\x7b\x7a\x75\x7d\x7c\x76\ \x7e\x7d\x76\x7e\x7c\x75\x7f\x79\x77\x81\x7c\x79\x81\x7e\x00\x00\ \x00\x55\xa0\xe1\x5a\xa1\xe1\x63\xa5\xe2\x62\xa2\xe0\x5a\x9c\xdd\ \x51\x96\xdb\x48\x90\xda\x46\x8d\xdb\x47\x8c\xd9\x46\x86\xd0\x43\ \x7f\xc5\x39\x74\xb6\x37\x6f\xaf\x3e\x76\xb7\x46\x7d\xbd\x43\x76\ \xb1\x35\x63\x9a\x33\x5b\x8f\x3b\x63\x99\x4a\x78\xaf\x4e\x85\xbf\ \x4e\x89\xc5\x50\x8a\xc9\x4f\x89\xca\x4d\x87\xc9\x4b\x86\xc5\x49\ \x84\xc1\x4b\x85\xc1\x4f\x86\xc1\x46\x7f\xb3\x43\x71\xa1\x37\x5e\ \x85\x2c\x4c\x70\x22\x3c\x5d\x18\x2c\x48\x10\x1d\x2d\x0a\x10\x1d\ \x0a\x09\x14\x09\x0a\x13\x09\x0c\x14\x0a\x0b\x15\x0a\x0c\x16\x0a\ \x0c\x18\x0b\x0d\x1a\x0b\x0d\x18\x0a\x0f\x17\x0a\x11\x18\x0a\x10\ \x17\x0a\x11\x17\x0b\x11\x18\x0d\x11\x17\x0f\x12\x18\x10\x12\x1a\ \x13\x15\x1d\x14\x16\x1e\x16\x1a\x20\x17\x1c\x1f\x17\x1f\x1f\x18\ \x20\x20\x1c\x24\x23\x1e\x26\x26\x1c\x24\x24\x20\x27\x2a\x1f\x26\ \x29\x1b\x22\x25\x16\x1c\x21\x11\x14\x1a\x0c\x0e\x16\x08\x0a\x12\ \x09\x0a\x13\x09\x0b\x15\x0b\x0f\x1a\x09\x11\x1d\x0b\x14\x21\x0d\ \x17\x24\x0c\x17\x25\x0e\x1a\x2a\x0e\x1a\x2b\x10\x1c\x2e\x10\x1c\ \x2e\x13\x1f\x31\x14\x21\x33\x16\x24\x36\x18\x26\x39\x18\x27\x3a\ \x1b\x2a\x3d\x1c\x2b\x3e\x1c\x2c\x3f\x1d\x2b\x3e\x1d\x2b\x3e\x1b\ \x2a\x3b\x1e\x2b\x3a\x32\x3c\x4a\x3a\x3e\x4c\x3a\x3d\x47\x34\x35\ \x3f\x27\x28\x33\x0e\x13\x1c\x0c\x12\x1f\x0b\x13\x20\x0d\x16\x24\ \x10\x18\x26\x14\x1d\x2c\x17\x22\x33\x1a\x25\x37\x1f\x2b\x3e\x21\ \x30\x40\x24\x34\x42\x22\x33\x3f\x22\x31\x3e\x20\x2d\x3a\x1e\x2b\ \x3b\x1d\x29\x38\x1a\x27\x34\x17\x22\x2e\x16\x21\x29\x11\x1c\x20\ \x15\x1b\x20\x11\x17\x1c\x10\x16\x1b\x12\x18\x1d\x0f\x14\x1a\x13\ \x16\x1e\x11\x14\x1e\x12\x15\x1e\x11\x16\x1b\x0f\x17\x1b\x10\x18\ \x1f\x12\x1a\x23\x14\x1e\x25\x14\x20\x23\x15\x21\x23\x15\x21\x24\ \x16\x21\x25\x15\x1f\x26\x16\x20\x26\x17\x21\x25\x14\x20\x25\x13\ \x20\x26\x12\x1e\x24\x12\x1e\x23\x11\x1d\x23\x10\x1c\x22\x0f\x1b\ \x21\x14\x20\x26\x1b\x26\x2c\x24\x2e\x35\x30\x3b\x3f\x3b\x47\x48\ \x47\x53\x54\x53\x5e\x5e\x60\x69\x68\x68\x71\x6e\x6e\x77\x74\x75\ \x7d\x7a\x77\x7e\x7d\x78\x80\x7e\x78\x80\x7f\x78\x80\x7f\x7b\x83\ \x82\x7a\x85\x83\x78\x82\x80\x7c\x84\x83\x00\x00\x00\x52\x9a\xde\ \x57\xa0\xe2\x5d\xa4\xe3\x5f\xa2\xe0\x59\x9b\xdb\x53\x98\xdc\x4a\ \x91\xd9\x47\x8e\xd8\x49\x8e\xd8\x48\x8a\xd1\x45\x82\xc7\x3d\x77\ \xbc\x37\x6f\xb2\x3f\x75\xb2\x47\x7d\xbb\x45\x79\xb7\x36\x63\x9d\ \x34\x5c\x91\x3a\x63\x97\x48\x74\xac\x54\x84\xbf\x54\x89\xc6\x53\ \x8b\xc8\x52\x8b\xc9\x4f\x89\xc7\x4f\x8a\xc7\x4e\x8b\xc4\x4e\x8c\ \xc6\x4f\x8c\xc8\x4e\x85\xbe\x47\x76\xa9\x36\x61\x8d\x2b\x4e\x73\ \x22\x3c\x5d\x19\x2b\x47\x13\x1d\x30\x0a\x0e\x19\x07\x08\x16\x07\ \x07\x13\x0a\x0c\x15\x0b\x0d\x14\x0a\x0d\x14\x0b\x0c\x19\x0c\x0c\ \x1a\x0c\x0d\x18\x0b\x0d\x16\x0c\x0f\x17\x0d\x0f\x17\x0d\x0f\x17\ \x0c\x0f\x16\x0c\x11\x16\x0f\x13\x18\x11\x15\x1a\x11\x15\x1a\x14\ \x18\x1d\x16\x19\x1e\x16\x1c\x20\x18\x1f\x22\x1a\x21\x24\x1e\x24\ \x28\x1f\x24\x26\x21\x27\x27\x22\x27\x27\x20\x24\x26\x1e\x23\x27\ \x19\x1d\x22\x12\x15\x1a\x0c\x0f\x13\x08\x0b\x13\x08\x0a\x13\x08\ \x0a\x14\x08\x0e\x18\x09\x11\x1b\x0b\x14\x1f\x0d\x15\x25\x0e\x17\ \x28\x0e\x18\x2a\x0f\x1a\x2c\x10\x1c\x2e\x12\x1d\x2e\x13\x1f\x31\ \x14\x21\x33\x16\x25\x37\x18\x27\x3a\x18\x26\x39\x1b\x2a\x3d\x1d\ \x2c\x3f\x1d\x2c\x3f\x1e\x2d\x3f\x1c\x2c\x3d\x1c\x2b\x3c\x1e\x2b\ \x3c\x31\x3b\x48\x3e\x43\x4d\x3b\x3e\x48\x39\x3a\x44\x29\x2b\x34\ \x0f\x13\x1b\x09\x12\x1c\x0b\x15\x1f\x0c\x16\x20\x11\x1a\x28\x14\ \x1f\x2e\x16\x21\x31\x1a\x28\x38\x1f\x2f\x3e\x23\x33\x3f\x23\x32\ \x40\x25\x33\x44\x26\x33\x42\x20\x2d\x3e\x1f\x2d\x3f\x1c\x2b\x3b\ \x1b\x28\x39\x18\x21\x30\x17\x1f\x2a\x14\x1c\x21\x11\x17\x1c\x0f\ \x15\x1a\x10\x14\x19\x10\x14\x19\x0e\x11\x17\x0e\x10\x1a\x0e\x10\ \x1a\x0d\x10\x19\x0f\x12\x1a\x11\x14\x1b\x11\x15\x1d\x10\x17\x1e\ \x12\x1a\x1f\x13\x1c\x21\x14\x20\x22\x14\x20\x22\x14\x20\x22\x14\ \x20\x24\x14\x20\x24\x15\x1f\x24\x14\x1e\x25\x14\x1e\x24\x12\x1e\ \x21\x13\x1e\x22\x11\x1a\x23\x11\x1b\x23\x10\x1a\x21\x13\x1c\x23\ \x19\x23\x2a\x22\x2c\x33\x2e\x39\x3b\x3c\x45\x49\x49\x52\x56\x52\ \x5c\x5e\x5c\x66\x66\x67\x71\x70\x6f\x77\x77\x75\x7d\x7e\x78\x82\ \x83\x77\x80\x80\x7a\x82\x82\x7c\x84\x83\x7c\x84\x83\x7c\x87\x85\ \x7c\x86\x85\x7c\x86\x85\x00\x00\x00\x50\x96\xdb\x54\x9a\xde\x5a\ \xa1\xe2\x5d\xa1\xe0\x59\x9b\xdd\x56\x98\xdd\x4f\x93\xdc\x4a\x90\ \xd9\x4a\x90\xd9\x49\x8b\xd3\x47\x84\xca\x3e\x79\xbe\x38\x71\xb6\ \x3e\x73\xb4\x44\x7b\xb8\x45\x79\xb6\x3a\x68\x9f\x37\x5f\x94\x37\ \x62\x97\x46\x74\xaa\x54\x85\xc0\x55\x89\xc5\x55\x8b\xc6\x52\x88\ \xc4\x51\x89\xc5\x53\x8c\xc7\x55\x90\xc8\x57\x92\xcd\x54\x90\xcc\ \x51\x89\xc2\x45\x77\xab\x36\x61\x8f\x2d\x4e\x77\x22\x3c\x5d\x18\ \x2b\x46\x11\x1b\x2c\x09\x0e\x19\x06\x08\x13\x08\x08\x13\x0a\x0b\ \x15\x0a\x0b\x14\x0b\x0e\x16\x0a\x0d\x17\x0c\x0e\x1a\x0b\x0e\x18\ \x0c\x0e\x18\x0b\x0e\x17\x0d\x0f\x17\x0e\x11\x19\x0b\x0e\x16\x0c\ \x11\x17\x0f\x13\x18\x10\x14\x19\x12\x16\x1b\x12\x16\x1b\x17\x1b\ \x20\x17\x1c\x20\x1a\x21\x24\x1a\x21\x24\x1d\x23\x27\x1e\x25\x28\ \x1f\x27\x27\x20\x28\x28\x1e\x26\x28\x1d\x24\x27\x19\x1e\x22\x12\ \x15\x1a\x0d\x10\x15\x09\x0c\x10\x08\x09\x13\x08\x0c\x15\x08\x0f\ \x18\x08\x11\x1b\x0b\x13\x20\x0f\x18\x25\x0f\x18\x29\x0e\x1a\x2c\ \x0e\x1a\x2c\x10\x1b\x2e\x12\x1e\x30\x13\x20\x32\x16\x24\x36\x17\ \x26\x38\x19\x28\x3b\x1b\x2a\x3d\x1d\x2c\x3f\x1c\x2b\x3e\x1d\x2c\ \x3f\x1e\x2e\x40\x1f\x2f\x40\x1f\x2f\x40\x21\x2d\x3e\x35\x40\x4e\ \x41\x46\x52\x3f\x42\x4c\x38\x39\x43\x2a\x2c\x35\x0f\x13\x1b\x08\ \x11\x1b\x0a\x14\x1e\x0b\x15\x21\x0f\x19\x26\x14\x1e\x2e\x18\x22\ \x33\x1c\x29\x3b\x21\x2f\x41\x22\x31\x41\x25\x34\x43\x27\x35\x45\ \x27\x33\x44\x20\x2d\x3f\x20\x2f\x41\x1e\x2d\x3e\x1b\x29\x3b\x19\ \x24\x36\x19\x22\x2e\x12\x1b\x23\x12\x1a\x21\x0f\x16\x1d\x0f\x14\ \x1b\x0e\x11\x19\x0d\x10\x18\x0b\x0e\x18\x0b\x0d\x17\x0b\x0d\x17\ \x0d\x10\x18\x0f\x13\x1a\x0f\x13\x1b\x0e\x14\x1b\x0e\x16\x1b\x10\ \x19\x1d\x13\x1b\x1f\x13\x1e\x21\x13\x1e\x22\x14\x1f\x23\x15\x20\ \x24\x15\x20\x23\x16\x20\x27\x15\x1f\x26\x14\x1f\x23\x13\x1f\x22\ \x13\x1e\x21\x10\x1b\x1f\x11\x1b\x22\x11\x1b\x22\x17\x20\x29\x1f\ \x27\x30\x2a\x34\x39\x34\x3e\x42\x42\x4b\x4f\x51\x5b\x5f\x5b\x64\ \x68\x64\x6e\x6e\x6c\x76\x76\x72\x7c\x7c\x75\x81\x81\x77\x82\x82\ \x79\x83\x83\x79\x83\x83\x7a\x86\x85\x78\x84\x87\x7a\x86\x89\x7a\ \x86\x89\x00\x00\x00\x4e\x93\xd9\x54\x99\xde\x59\x9e\xe1\x5e\xa0\ \xe1\x5c\x9e\xdf\x59\x9b\xdf\x53\x95\xdc\x4c\x92\xd9\x4a\x92\xd9\ \x49\x8b\xd5\x48\x86\xcf\x41\x7c\xc2\x39\x72\xb8\x3d\x73\xb4\x42\ \x79\xb6\x45\x7c\xb7\x3b\x6b\xa1\x37\x61\x96\x36\x60\x95\x42\x6f\ \xa4\x50\x80\xb9\x53\x87\xc2\x54\x87\xbf\x4f\x85\xbc\x50\x87\xbe\ \x54\x8c\xc4\x5b\x93\xcd\x5b\x94\xd0\x55\x91\xcd\x52\x8a\xc3\x45\ \x78\xad\x39\x64\x94\x2f\x50\x79\x24\x3d\x60\x19\x2c\x47\x13\x1e\ \x2d\x0b\x0f\x1a\x06\x08\x13\x07\x08\x12\x09\x0a\x14\x0a\x0c\x15\ \x0a\x0c\x15\x0a\x0d\x18\x0b\x0f\x1a\x0a\x0f\x18\x0b\x0e\x18\x0c\ \x0e\x18\x0c\x0d\x17\x0d\x0f\x18\x0d\x10\x18\x0e\x12\x1a\x0f\x12\ \x1a\x10\x14\x1a\x13\x17\x1b\x13\x16\x1b\x15\x19\x1e\x17\x1b\x20\ \x1a\x1f\x22\x1b\x22\x25\x1d\x24\x27\x1e\x24\x28\x1e\x26\x28\x21\ \x29\x29\x20\x27\x2a\x1d\x24\x28\x19\x1e\x21\x13\x17\x1a\x0d\x10\ \x15\x09\x0c\x11\x09\x0a\x13\x08\x0c\x15\x08\x0f\x1a\x09\x11\x1e\ \x0b\x13\x20\x0b\x15\x23\x0c\x17\x26\x0d\x18\x2a\x0f\x1c\x2e\x11\ \x1e\x31\x11\x1f\x31\x15\x23\x36\x16\x24\x37\x18\x27\x3a\x19\x28\ \x3b\x1c\x2b\x3e\x1d\x2c\x3f\x1f\x2f\x42\x1d\x2e\x41\x1e\x2e\x40\ \x1f\x2e\x40\x20\x2f\x40\x1f\x2e\x3e\x35\x40\x51\x43\x47\x55\x42\ \x45\x50\x3c\x3d\x46\x2c\x2e\x37\x0f\x12\x1c\x09\x12\x1c\x0c\x15\ \x21\x0d\x16\x24\x10\x1a\x28\x15\x1f\x2e\x18\x24\x36\x1b\x29\x3b\ \x20\x2f\x41\x23\x31\x42\x23\x31\x42\x24\x33\x43\x27\x33\x45\x23\ \x31\x43\x21\x31\x42\x1e\x2f\x41\x1c\x2b\x40\x19\x25\x39\x19\x23\ \x33\x13\x1d\x27\x11\x1a\x21\x10\x19\x1f\x10\x17\x1e\x0f\x15\x1c\ \x0d\x11\x19\x0d\x0e\x19\x0c\x0e\x19\x0b\x0d\x18\x0c\x0f\x17\x0d\ \x10\x18\x0f\x12\x1a\x0d\x13\x1a\x0f\x15\x1b\x11\x17\x1c\x12\x1a\ \x1e\x12\x1b\x1f\x12\x1b\x1f\x14\x1e\x22\x14\x1f\x23\x14\x1f\x23\ \x14\x1f\x24\x15\x1f\x24\x13\x1e\x23\x12\x1d\x21\x11\x1d\x20\x12\ \x1d\x20\x10\x1a\x20\x10\x1a\x22\x12\x1b\x24\x17\x20\x29\x22\x2d\ \x34\x2e\x39\x3d\x3b\x45\x4c\x46\x50\x58\x54\x5f\x64\x5c\x68\x6b\ \x64\x70\x72\x6b\x77\x79\x6f\x7b\x7d\x72\x7f\x80\x73\x80\x82\x74\ \x81\x82\x75\x81\x84\x75\x81\x86\x75\x82\x87\x76\x83\x88\x00\x00\ \x00\x4e\x91\xd7\x54\x98\xdd\x58\x9c\xdf\x60\x9f\xdf\x60\x9f\xdf\ \x5c\x9d\xde\x54\x99\xdc\x4e\x96\xda\x4c\x93\xdb\x4a\x8c\xd7\x4a\ \x87\xd1\x43\x7f\xc6\x3a\x74\xba\x3c\x72\xb2\x42\x79\xb6\x45\x7c\ \xb7\x40\x70\xa6\x35\x60\x95\x33\x5e\x93\x3e\x6c\xa1\x51\x81\xb8\ \x53\x85\xbe\x53\x86\xbf\x50\x84\xbb\x4d\x84\xbb\x53\x8b\xc3\x57\ \x8e\xca\x56\x90\xcd\x54\x90\xcb\x50\x89\xc1\x46\x78\xae\x38\x63\ \x92\x30\x51\x7a\x25\x3e\x60\x19\x2b\x46\x12\x1d\x2d\x0b\x10\x1a\ \x06\x09\x11\x07\x0a\x11\x09\x0a\x14\x0a\x0b\x15\x0b\x0c\x16\x0a\ \x0c\x16\x0c\x0e\x18\x09\x0d\x18\x0a\x0f\x19\x0b\x10\x19\x0a\x10\ \x19\x09\x0e\x17\x0a\x11\x18\x0c\x11\x1a\x0f\x12\x1a\x10\x13\x1b\ \x12\x16\x1b\x14\x18\x1d\x16\x1a\x1f\x18\x1c\x21\x18\x1d\x20\x1b\ \x20\x23\x1f\x25\x28\x1f\x26\x28\x20\x27\x27\x21\x27\x28\x21\x27\ \x29\x1e\x25\x28\x19\x1e\x21\x12\x15\x19\x0d\x10\x14\x09\x0c\x11\ \x08\x0a\x13\x09\x0c\x16\x08\x0f\x1b\x08\x11\x1e\x0b\x14\x21\x0b\ \x17\x24\x0b\x17\x25\x0e\x1b\x2c\x0e\x1c\x2f\x10\x1e\x31\x14\x23\ \x35\x17\x25\x38\x18\x26\x39\x1a\x29\x3c\x1a\x28\x3d\x1c\x2a\x40\ \x1d\x2c\x42\x1d\x2e\x43\x1f\x30\x45\x1f\x2e\x43\x21\x32\x44\x1f\ \x30\x41\x21\x30\x40\x37\x42\x53\x43\x47\x57\x43\x45\x52\x3f\x42\ \x4b\x2f\x31\x39\x10\x13\x1d\x09\x12\x1c\x0c\x15\x22\x0d\x16\x25\ \x11\x1b\x29\x13\x1f\x2d\x18\x25\x35\x1c\x2b\x3c\x20\x2f\x41\x23\ \x33\x44\x27\x35\x47\x27\x35\x47\x27\x35\x47\x24\x34\x45\x22\x32\ \x45\x1d\x31\x45\x1b\x2c\x43\x1a\x29\x3e\x18\x25\x36\x13\x1f\x2b\ \x12\x1b\x24\x0f\x18\x21\x10\x17\x20\x0e\x14\x1d\x0c\x10\x1a\x0d\ \x0f\x19\x0d\x0f\x1a\x0d\x0f\x1a\x0c\x0f\x18\x0d\x10\x18\x0e\x11\ \x19\x0f\x12\x1a\x0f\x13\x19\x0f\x14\x19\x12\x17\x1e\x13\x19\x20\ \x12\x19\x1e\x13\x1c\x20\x14\x1d\x21\x15\x1f\x24\x13\x1e\x22\x13\ \x1e\x22\x13\x1e\x23\x13\x1d\x24\x12\x1d\x23\x10\x1a\x22\x10\x19\ \x22\x10\x19\x22\x10\x19\x23\x13\x1b\x24\x1c\x25\x2d\x27\x32\x39\ \x32\x3d\x46\x3d\x47\x4f\x49\x55\x5b\x53\x5f\x63\x5a\x67\x6c\x61\ \x6e\x73\x66\x73\x78\x69\x76\x7b\x6c\x7a\x7e\x6d\x7b\x81\x6c\x7b\ \x82\x6e\x7d\x83\x6d\x7d\x84\x6d\x7e\x84\x00\x00\x00\x50\x92\xd7\ \x54\x98\xdb\x59\x9c\xde\x62\xa0\xe0\x64\xa3\xe0\x5e\xa0\xde\x58\ \x9e\xde\x51\x99\xdd\x4d\x94\xdc\x4d\x8f\xda\x4a\x88\xd3\x46\x81\ \xc8\x3e\x78\xbd\x3c\x73\xb3\x3e\x77\xb4\x45\x7c\xb8\x41\x72\xa9\ \x38\x62\x97\x34\x5f\x94\x39\x67\x9c\x4e\x7e\xb6\x56\x88\xc2\x55\ \x88\xc1\x50\x86\xbd\x4f\x86\xbe\x52\x89\xc2\x53\x8c\xc7\x53\x8f\ \xcb\x4e\x8a\xc6\x4c\x83\xbe\x44\x74\xac\x3b\x65\x95\x35\x57\x7e\ \x22\x3d\x5e\x1d\x2f\x4b\x13\x1d\x2f\x0b\x0f\x1a\x06\x09\x12\x08\ \x0a\x12\x0a\x0b\x14\x0a\x0b\x16\x0c\x0b\x15\x0c\x0c\x17\x0b\x0d\ \x18\x0c\x0e\x19\x0b\x0e\x19\x09\x0e\x17\x0b\x10\x19\x0c\x11\x1a\ \x0c\x11\x1a\x0c\x11\x1a\x0f\x11\x1b\x10\x13\x1b\x12\x16\x1b\x12\ \x16\x1b\x16\x19\x1e\x17\x1b\x20\x1a\x1f\x22\x1c\x21\x24\x1e\x23\ \x26\x21\x26\x27\x22\x28\x28\x21\x28\x27\x20\x25\x26\x1d\x23\x25\ \x1a\x1f\x22\x11\x15\x19\x0e\x11\x15\x09\x0c\x11\x07\x0a\x13\x09\ \x0c\x17\x07\x10\x1a\x09\x12\x1e\x0b\x14\x22\x0c\x17\x24\x0c\x19\ \x27\x0d\x1a\x2c\x0e\x1b\x2e\x10\x1d\x31\x14\x23\x35\x17\x26\x39\ \x19\x28\x3b\x1a\x28\x3c\x1b\x2a\x3f\x1c\x2b\x41\x1e\x2e\x43\x1c\ \x2d\x42\x1f\x30\x45\x20\x31\x46\x20\x32\x44\x1f\x31\x42\x21\x30\ \x40\x38\x42\x54\x46\x4a\x5a\x46\x48\x53\x3f\x41\x4a\x32\x34\x3d\ \x10\x13\x1e\x0a\x13\x1d\x0d\x16\x23\x10\x17\x28\x11\x1b\x2a\x15\ \x21\x2f\x1a\x27\x35\x1c\x2c\x3c\x22\x32\x43\x24\x34\x45\x27\x36\ \x47\x27\x36\x48\x2b\x39\x4b\x27\x36\x48\x23\x36\x48\x20\x34\x4b\ \x1e\x31\x48\x1b\x2a\x41\x19\x27\x39\x14\x21\x2f\x15\x1f\x28\x12\ \x1b\x25\x11\x18\x22\x10\x17\x20\x10\x15\x1e\x0d\x0f\x1a\x0e\x10\ \x1b\x0d\x0f\x19\x0d\x0f\x19\x0d\x10\x18\x0d\x11\x19\x0f\x12\x1a\ \x0e\x13\x19\x10\x14\x19\x11\x16\x1d\x11\x17\x1e\x14\x1a\x22\x14\ \x1b\x21\x12\x1b\x21\x13\x1d\x22\x13\x1e\x22\x13\x1e\x21\x10\x1b\ \x22\x11\x1a\x24\x12\x1b\x25\x0f\x19\x22\x10\x19\x22\x0f\x18\x21\ \x0f\x18\x21\x0f\x19\x21\x15\x1e\x26\x1e\x28\x32\x28\x31\x3d\x34\ \x3e\x46\x3d\x49\x50\x48\x55\x5b\x51\x5e\x66\x57\x65\x6d\x5f\x6d\ \x74\x61\x6e\x78\x64\x73\x7b\x63\x72\x7b\x63\x72\x7e\x65\x73\x7f\ \x64\x74\x7f\x64\x76\x7f\x00\x00\x00\x4e\x92\xd3\x56\x9a\xda\x5a\ \x9e\xde\x63\xa3\xe3\x66\xa5\xe3\x62\xa2\xe1\x5c\xa1\xe1\x54\x9c\ \xe0\x4e\x96\xdf\x4c\x91\xdb\x4b\x8b\xd5\x47\x84\xcb\x42\x7b\xbf\ \x3a\x74\xb7\x3b\x75\xb6\x46\x7e\xbd\x3f\x74\xb1\x38\x66\x9b\x33\ \x5f\x94\x38\x64\x99\x4b\x78\xb1\x56\x85\xc1\x58\x89\xc5\x54\x88\ \xc4\x50\x8a\xc5\x52\x8a\xc7\x53\x8e\xca\x4e\x8a\xc6\x4c\x88\xc4\ \x4a\x7f\xba\x42\x72\xab\x3b\x66\x96\x35\x58\x81\x26\x41\x65\x1a\ \x2d\x4a\x12\x1d\x31\x0c\x11\x1e\x05\x07\x12\x0a\x0a\x14\x09\x0a\ \x14\x08\x0a\x15\x0b\x0b\x17\x0c\x0c\x18\x0c\x0d\x19\x0b\x0d\x18\ \x0b\x0e\x18\x0a\x0f\x18\x0b\x0e\x1a\x0c\x10\x1a\x0c\x12\x19\x0c\ \x10\x18\x0f\x11\x1a\x10\x13\x1b\x11\x15\x1a\x15\x19\x1d\x16\x19\ \x21\x17\x1b\x21\x19\x1e\x22\x1d\x22\x25\x1c\x23\x24\x20\x25\x26\ \x21\x29\x29\x20\x29\x29\x1f\x27\x27\x1e\x25\x25\x18\x1d\x1f\x12\ \x16\x1a\x0d\x10\x15\x0b\x0d\x15\x09\x0a\x15\x0a\x0d\x18\x09\x0f\ \x1a\x08\x12\x1c\x0a\x13\x22\x0b\x16\x26\x0c\x19\x29\x0e\x1b\x2b\ \x11\x1c\x2f\x12\x1f\x33\x14\x22\x35\x17\x26\x39\x19\x28\x3b\x19\ \x2b\x3d\x1a\x2b\x3f\x1b\x2c\x41\x1d\x2e\x43\x1f\x30\x45\x21\x32\ \x47\x21\x32\x46\x1d\x32\x43\x1f\x33\x44\x21\x30\x40\x39\x43\x51\ \x47\x4b\x59\x48\x4a\x55\x42\x44\x4c\x31\x34\x3d\x14\x17\x22\x0a\ \x14\x1e\x0d\x16\x23\x0e\x18\x26\x11\x1c\x2a\x14\x21\x2f\x1a\x27\ \x37\x1c\x2b\x3c\x20\x2f\x42\x25\x35\x46\x27\x37\x48\x2a\x39\x4d\ \x2b\x39\x4d\x26\x37\x48\x26\x37\x4e\x24\x36\x52\x1e\x32\x4c\x1a\ \x2e\x44\x1a\x2a\x3c\x16\x24\x35\x14\x1f\x2d\x15\x1f\x2d\x14\x1b\ \x29\x12\x19\x24\x0f\x16\x1f\x0e\x13\x1c\x0d\x12\x1b\x0d\x12\x1b\ \x0d\x11\x1b\x0d\x12\x1a\x0d\x13\x1a\x0d\x13\x1a\x0f\x15\x1c\x0f\ \x15\x1c\x10\x15\x1c\x10\x18\x1f\x0e\x19\x20\x10\x19\x22\x13\x1b\ \x23\x15\x1e\x22\x15\x1e\x23\x12\x1b\x22\x12\x1c\x23\x13\x1e\x24\ \x11\x1b\x21\x11\x1b\x23\x11\x1a\x23\x0f\x19\x22\x0f\x18\x20\x0f\ \x19\x20\x0f\x19\x21\x18\x21\x2a\x1f\x29\x33\x2a\x34\x3e\x33\x3d\ \x47\x3d\x49\x53\x44\x52\x5b\x4c\x5c\x64\x51\x61\x6c\x55\x66\x72\ \x5a\x6a\x79\x5a\x6d\x7c\x5b\x6e\x7c\x5d\x6f\x7f\x5d\x72\x7e\x5e\ \x73\x7f\x00\x00\x00\x4e\x91\xd2\x58\x9b\xdc\x5b\x9f\xdf\x63\xa5\ \xe3\x68\xa7\xe4\x66\xa5\xe4\x5e\xa3\xe3\x56\x9e\xe2\x4f\x99\xdf\ \x4c\x94\xdd\x4a\x8e\xd7\x46\x87\xcd\x41\x7b\xc2\x39\x74\xb9\x3d\ \x78\xba\x45\x7e\xbe\x41\x79\xb6\x39\x68\x9e\x34\x60\x94\x39\x64\ \x99\x46\x74\xac\x53\x83\xbe\x55\x86\xc3\x50\x87\xc4\x51\x8a\xc7\ \x50\x8b\xc8\x50\x8a\xc8\x4e\x86\xc3\x49\x80\xbc\x47\x7c\xb4\x43\ \x72\xa7\x3b\x65\x95\x35\x56\x80\x25\x41\x63\x19\x2e\x49\x11\x1e\ \x2f\x0a\x10\x1b\x05\x08\x11\x08\x09\x11\x09\x0a\x13\x09\x0b\x15\ \x0b\x0b\x17\x0b\x0c\x18\x0c\x0e\x19\x0c\x0e\x19\x0a\x0e\x18\x0a\ \x0f\x18\x0b\x11\x19\x0a\x10\x18\x0c\x12\x19\x0c\x11\x18\x0f\x12\ \x1a\x10\x13\x1b\x12\x15\x1d\x12\x15\x1d\x16\x19\x20\x17\x1b\x1f\ \x18\x1c\x21\x1b\x20\x23\x1d\x23\x26\x1f\x26\x27\x21\x29\x29\x20\ \x28\x28\x20\x25\x26\x21\x25\x26\x1a\x1f\x21\x12\x16\x1a\x0e\x11\ \x17\x09\x0b\x13\x09\x09\x15\x09\x0c\x17\x08\x10\x1a\x0a\x13\x1d\ \x0c\x15\x22\x0b\x16\x26\x0b\x18\x28\x0d\x1a\x2a\x10\x1b\x2e\x10\ \x1e\x31\x15\x23\x36\x18\x27\x3a\x1a\x29\x3c\x18\x29\x3c\x1b\x2c\ \x40\x1c\x2d\x42\x1c\x2d\x42\x1f\x30\x45\x1f\x30\x45\x20\x30\x46\ \x1f\x31\x46\x20\x32\x44\x22\x31\x42\x3a\x43\x54\x4a\x4e\x5c\x4a\ \x4c\x57\x45\x46\x4f\x36\x37\x41\x14\x17\x21\x0a\x14\x1c\x0d\x16\ \x23\x0f\x18\x28\x11\x1b\x2c\x14\x21\x31\x19\x26\x37\x1c\x2a\x3d\ \x1f\x2f\x43\x26\x35\x49\x28\x37\x4a\x2b\x38\x4f\x2c\x38\x4f\x2a\ \x39\x4f\x2a\x39\x55\x27\x3b\x58\x22\x38\x55\x1e\x35\x4d\x1b\x30\ \x46\x19\x2a\x3e\x15\x24\x35\x13\x20\x31\x15\x1f\x2e\x13\x1b\x27\ \x0f\x16\x21\x0f\x15\x21\x0c\x11\x1c\x0d\x12\x1c\x0e\x13\x1c\x0d\ \x13\x1c\x0d\x13\x1c\x0c\x12\x1b\x0d\x13\x1c\x0e\x14\x1d\x10\x15\ \x1c\x0f\x17\x1e\x11\x1a\x21\x10\x1b\x21\x11\x1a\x22\x12\x1b\x21\ \x13\x1d\x23\x11\x1c\x22\x10\x1a\x21\x11\x1b\x22\x12\x1c\x23\x13\ \x1c\x25\x13\x1c\x25\x12\x1b\x23\x0f\x18\x1f\x0f\x18\x1f\x0d\x16\ \x1f\x13\x1c\x25\x19\x22\x2b\x1f\x29\x32\x28\x33\x3c\x30\x3d\x47\ \x39\x48\x54\x41\x51\x5e\x47\x59\x66\x4f\x61\x70\x53\x65\x76\x55\ \x69\x79\x57\x6d\x7c\x59\x6e\x7f\x5a\x70\x7f\x59\x72\x7f\x00\x00\ \x00\x4f\x91\xd2\x57\x99\xda\x5e\xa1\xe1\x66\xa7\xe4\x6b\xaa\xe7\ \x68\xa8\xe6\x61\xa6\xe5\x58\xa0\xe4\x4f\x9b\xdf\x4d\x95\xdd\x4b\ \x90\xd8\x45\x87\xce\x42\x7f\xc6\x3c\x77\xbd\x3b\x75\xb9\x44\x7c\ \xbd\x44\x7d\xb9\x3c\x6e\xa3\x37\x64\x98\x39\x63\x97\x44\x71\xa8\ \x50\x80\xba\x52\x86\xc3\x50\x88\xc5\x50\x8a\xc7\x51\x8b\xcb\x50\ \x8a\xc8\x4e\x85\xc2\x49\x7e\xbb\x47\x7b\xb2\x42\x72\xa6\x3a\x65\ \x96\x36\x59\x82\x26\x42\x64\x19\x2e\x48\x11\x1e\x2c\x09\x0e\x19\ \x07\x0a\x13\x08\x08\x10\x08\x0b\x13\x09\x0c\x16\x0a\x0c\x17\x0a\ \x0c\x17\x0a\x0c\x17\x0b\x0e\x19\x09\x0e\x18\x0a\x0f\x18\x0c\x12\ \x18\x0b\x11\x18\x0a\x10\x18\x0d\x11\x19\x0e\x12\x1a\x12\x15\x1d\ \x11\x14\x1d\x14\x17\x20\x16\x19\x1e\x17\x1b\x20\x19\x1d\x22\x1d\ \x21\x25\x1c\x22\x25\x1f\x26\x29\x20\x28\x29\x20\x27\x28\x22\x27\ \x27\x1e\x22\x23\x19\x1e\x21\x12\x16\x1a\x0d\x10\x17\x0a\x0c\x15\ \x0a\x0a\x16\x08\x0b\x16\x08\x0f\x1a\x09\x13\x1d\x0a\x13\x21\x0b\ \x16\x26\x0b\x18\x28\x0d\x1a\x2a\x11\x1c\x2f\x12\x1f\x32\x16\x24\ \x37\x18\x27\x3a\x19\x28\x3b\x17\x28\x3b\x19\x2a\x3e\x1b\x2c\x41\ \x1e\x2f\x44\x1f\x30\x45\x1f\x30\x45\x21\x31\x47\x21\x32\x48\x21\ \x31\x46\x24\x31\x43\x3e\x45\x57\x4c\x4f\x5d\x4c\x4e\x5a\x49\x4a\ \x54\x37\x38\x42\x16\x19\x22\x0a\x14\x1d\x0d\x16\x21\x10\x18\x29\ \x11\x1b\x2c\x13\x20\x31\x18\x25\x37\x1c\x2b\x40\x21\x32\x47\x24\ \x35\x4a\x2a\x38\x4e\x2a\x39\x4f\x2c\x3b\x51\x2a\x3c\x53\x2d\x3f\ \x5e\x28\x41\x60\x24\x3e\x5e\x24\x3d\x5c\x1f\x36\x53\x1c\x32\x4c\ \x19\x2a\x40\x16\x25\x38\x13\x21\x31\x15\x1f\x2c\x12\x1a\x27\x0f\ \x17\x24\x0e\x15\x21\x0e\x14\x1f\x0e\x15\x1e\x10\x16\x21\x10\x16\ \x21\x0f\x15\x20\x0c\x12\x1d\x0e\x14\x20\x0d\x15\x1d\x0d\x15\x1c\ \x0f\x18\x20\x11\x1a\x23\x12\x1d\x25\x11\x1a\x23\x13\x1c\x25\x12\ \x1b\x24\x11\x1b\x22\x12\x1c\x23\x14\x1e\x25\x13\x1c\x25\x12\x1b\ \x24\x10\x1b\x22\x12\x1a\x22\x10\x17\x20\x10\x17\x20\x0f\x18\x21\ \x13\x1c\x25\x18\x21\x2a\x1e\x2a\x34\x26\x34\x40\x2e\x40\x4d\x37\ \x4a\x59\x3d\x51\x61\x46\x5b\x6d\x4a\x60\x72\x50\x67\x78\x50\x69\ \x7a\x52\x6b\x7d\x55\x6f\x7f\x54\x6e\x7e\x00\x00\x00\x4e\x8f\xd0\ \x57\x97\xd8\x5f\x9f\xdf\x65\xa6\xe3\x6b\xaa\xe8\x68\xa8\xe5\x61\ \xa6\xe4\x5a\xa2\xe4\x52\x9b\xdf\x4e\x97\xdc\x4b\x90\xd6\x49\x89\ \xd2\x43\x81\xc8\x3d\x79\xbd\x3c\x75\xb7\x47\x7e\xbb\x48\x82\xbc\ \x40\x73\xa7\x3a\x66\x9a\x3b\x64\x98\x40\x6c\xa1\x4f\x7f\xb7\x50\ \x84\xbf\x51\x87\xc5\x51\x8a\xc7\x4f\x8a\xc9\x4f\x89\xc7\x4c\x84\ \xc1\x49\x7f\xbc\x48\x7b\xb7\x42\x74\xac\x3c\x68\x9c\x35\x59\x84\ \x27\x42\x66\x1b\x2e\x49\x12\x1e\x2c\x09\x0f\x1b\x06\x08\x13\x0a\ \x09\x13\x09\x0a\x14\x09\x0b\x16\x0b\x0d\x18\x0b\x0d\x18\x0b\x0e\ \x19\x0a\x0e\x19\x0b\x0f\x19\x0b\x0f\x1a\x0b\x12\x19\x0a\x10\x18\ \x0d\x12\x1b\x0e\x13\x1c\x0d\x12\x1b\x0f\x14\x1c\x12\x18\x1f\x12\ \x18\x1f\x17\x1a\x20\x16\x1a\x1f\x17\x1b\x20\x1a\x1e\x23\x1c\x22\ \x26\x21\x24\x28\x21\x27\x29\x20\x28\x28\x20\x25\x25\x1e\x24\x25\ \x19\x1d\x21\x13\x16\x1c\x0e\x10\x18\x0a\x0c\x15\x09\x09\x15\x09\ \x0c\x17\x09\x11\x1b\x09\x12\x1d\x0a\x14\x21\x0b\x17\x27\x0d\x1a\ \x2a\x0e\x1b\x2b\x10\x1c\x2f\x13\x20\x34\x16\x24\x37\x15\x24\x37\ \x19\x29\x3c\x19\x2a\x3d\x1c\x2d\x41\x1c\x2d\x42\x1e\x2f\x44\x1e\ \x2f\x44\x20\x31\x46\x21\x31\x46\x23\x34\x49\x23\x33\x46\x25\x32\ \x44\x3e\x45\x56\x51\x52\x60\x50\x51\x5c\x4c\x4b\x57\x3c\x3c\x47\ \x18\x1a\x23\x0a\x14\x1e\x0e\x16\x23\x0f\x19\x27\x10\x1b\x29\x10\ \x1e\x2d\x17\x25\x37\x1c\x2d\x40\x21\x32\x47\x24\x35\x48\x2a\x3b\ \x4e\x2a\x3a\x4f\x2b\x3f\x51\x2b\x41\x58\x30\x45\x66\x2c\x47\x68\ \x2c\x48\x6a\x29\x46\x69\x29\x43\x64\x23\x3d\x5a\x20\x33\x4d\x18\ \x2a\x40\x16\x26\x36\x16\x21\x2f\x13\x1b\x29\x11\x19\x26\x0e\x16\ \x23\x10\x17\x24\x0f\x15\x22\x10\x17\x24\x0e\x16\x23\x0e\x16\x23\ \x0e\x16\x23\x0e\x15\x23\x0d\x15\x1f\x0e\x15\x20\x12\x19\x23\x13\ \x1c\x25\x13\x1f\x2a\x13\x1c\x29\x13\x1c\x29\x14\x1d\x28\x13\x1c\ \x26\x15\x1e\x28\x14\x1d\x25\x15\x1e\x27\x15\x1d\x26\x12\x1c\x22\ \x12\x1b\x22\x13\x1a\x23\x11\x18\x21\x11\x18\x21\x11\x1a\x23\x14\ \x1e\x26\x1a\x26\x2f\x23\x31\x3e\x2a\x3e\x4d\x33\x48\x59\x3a\x50\ \x62\x41\x59\x6c\x45\x5d\x71\x4a\x63\x76\x4e\x68\x7a\x4f\x6a\x7e\ \x51\x6e\x7e\x50\x6e\x80\x00\x00\x00\x4e\x8d\xcf\x58\x97\xd7\x5f\ \x9f\xde\x63\xa5\xe2\x6b\xaa\xe6\x69\xa9\xe6\x62\xa5\xe4\x5c\xa2\ \xe4\x53\x9b\xe0\x4e\x95\xdb\x4c\x91\xd7\x48\x8a\xd0\x46\x83\xc9\ \x40\x7a\xbf\x3d\x74\xb6\x46\x7d\xba\x4b\x84\xbd\x44\x78\xad\x3e\ \x6c\x9f\x40\x69\x9d\x3e\x6a\x9f\x4c\x7d\xb5\x4e\x84\xc0\x50\x88\ \xc4\x4e\x89\xc7\x4a\x86\xc4\x4a\x85\xc2\x4a\x83\xc0\x49\x80\xbe\ \x49\x7f\xbc\x43\x78\xb4\x3f\x6d\xa3\x36\x5b\x89\x27\x41\x68\x1c\ \x2d\x4a\x13\x1c\x2e\x0a\x0f\x1c\x07\x08\x13\x08\x08\x12\x08\x0a\ \x14\x09\x0b\x16\x0a\x0c\x17\x0b\x0e\x19\x0a\x0e\x19\x0a\x0e\x19\ \x0b\x10\x1b\x0c\x10\x1b\x0b\x10\x1a\x0b\x10\x19\x0c\x11\x1b\x0c\ \x10\x1b\x0f\x14\x1d\x11\x17\x1d\x10\x16\x1b\x14\x1a\x1f\x16\x1a\ \x1e\x17\x1c\x20\x18\x1c\x20\x1c\x1f\x23\x1d\x21\x25\x1f\x22\x25\ \x20\x25\x27\x20\x27\x26\x1f\x26\x25\x20\x25\x25\x1a\x1f\x23\x14\ \x17\x1e\x0f\x10\x19\x0a\x0b\x15\x0b\x0a\x16\x0b\x0d\x18\x08\x0e\ \x19\x08\x11\x1b\x0c\x16\x21\x0b\x15\x25\x0c\x18\x2a\x0d\x19\x2b\ \x0f\x1c\x2f\x10\x1f\x32\x13\x22\x35\x18\x28\x3c\x19\x29\x3e\x19\ \x2a\x3e\x1b\x2c\x42\x1c\x2e\x45\x1e\x30\x46\x20\x30\x46\x22\x33\ \x48\x23\x33\x48\x22\x32\x46\x22\x34\x46\x23\x34\x44\x40\x48\x59\ \x52\x54\x61\x53\x53\x5e\x50\x4d\x59\x3d\x3e\x47\x19\x1c\x24\x0c\ \x14\x20\x0f\x18\x26\x0e\x19\x28\x0f\x1b\x2a\x14\x21\x30\x17\x26\ \x36\x1b\x2b\x3d\x20\x31\x45\x23\x34\x49\x25\x38\x4c\x29\x3c\x50\ \x2a\x3c\x52\x2d\x44\x5e\x31\x4a\x6d\x30\x4e\x71\x2f\x4f\x73\x2e\ \x4d\x73\x2d\x4c\x6e\x27\x44\x65\x23\x3b\x56\x1e\x33\x4a\x19\x2b\ \x3d\x13\x22\x31\x13\x1f\x2d\x11\x1b\x26\x12\x1c\x29\x12\x1a\x27\ \x13\x1b\x29\x13\x1c\x2a\x12\x1b\x28\x11\x19\x27\x11\x19\x25\x0f\ \x17\x22\x0f\x17\x20\x0e\x16\x20\x0f\x17\x23\x12\x1b\x29\x14\x1f\ \x2c\x15\x1f\x2d\x14\x1e\x2b\x14\x1c\x29\x15\x1e\x28\x16\x1f\x29\ \x16\x20\x29\x16\x1f\x28\x16\x1f\x28\x12\x1c\x23\x13\x1c\x25\x12\ \x1a\x23\x12\x19\x22\x0f\x17\x20\x11\x1b\x23\x15\x20\x29\x17\x24\ \x2f\x24\x32\x3f\x28\x3a\x4b\x31\x46\x59\x36\x4e\x61\x3f\x57\x6b\ \x44\x5d\x71\x49\x64\x78\x4d\x68\x7c\x4e\x6b\x7e\x51\x6e\x81\x52\ \x71\x84\x00\x00\x00\x4f\x8d\xcd\x57\x95\xd5\x5e\x9e\xde\x60\xa3\ \xe1\x68\xa8\xe5\x69\xa9\xe5\x63\xa6\xe4\x5b\xa1\xe2\x54\x9c\xdf\ \x4e\x96\xdc\x4c\x93\xd9\x49\x8b\xd1\x48\x84\xcb\x41\x7b\xc0\x3d\ \x74\xb6\x46\x7c\xb9\x4d\x85\xbe\x49\x7e\xb3\x43\x72\xa5\x3f\x6b\ \x9e\x3c\x6a\x9e\x4a\x7a\xb2\x50\x85\xc2\x4e\x86\xc5\x4c\x86\xc5\ \x49\x84\xc2\x48\x82\xc0\x49\x82\xc1\x4a\x83\xc2\x4b\x83\xc1\x47\ \x7d\xba\x41\x71\xa8\x37\x61\x8e\x2b\x48\x6e\x1c\x2c\x4a\x12\x1e\ \x2f\x08\x0e\x1c\x07\x07\x13\x08\x09\x13\x08\x0a\x14\x0b\x0c\x16\ \x0b\x0d\x18\x0a\x0e\x19\x0a\x0e\x19\x0a\x0f\x18\x0b\x10\x19\x0b\ \x0f\x1a\x0a\x0f\x19\x0d\x12\x1b\x0d\x12\x1b\x0e\x13\x1d\x10\x15\ \x1d\x11\x17\x1c\x12\x18\x1d\x12\x18\x1d\x17\x1b\x20\x18\x1c\x21\ \x19\x1d\x20\x1b\x1e\x22\x1e\x21\x25\x20\x23\x27\x21\x26\x27\x20\ \x26\x27\x20\x26\x25\x1f\x26\x27\x1a\x1e\x22\x12\x16\x1b\x0e\x10\ \x18\x0b\x0c\x16\x09\x09\x15\x09\x0c\x17\x09\x10\x1a\x08\x12\x1c\ \x0b\x15\x1f\x0c\x16\x25\x0e\x19\x2b\x0f\x1c\x30\x0e\x1d\x30\x13\ \x22\x35\x16\x25\x39\x16\x26\x3c\x1a\x29\x41\x1b\x2c\x42\x1b\x2c\ \x43\x1c\x2c\x46\x1c\x2f\x45\x1f\x32\x48\x24\x35\x4a\x21\x33\x48\ \x24\x35\x48\x24\x37\x49\x23\x35\x45\x3d\x48\x57\x54\x55\x64\x56\ \x55\x61\x51\x4e\x59\x41\x40\x49\x1a\x1d\x26\x0c\x15\x21\x0e\x17\ \x26\x0d\x19\x2a\x10\x1c\x2e\x13\x20\x31\x18\x26\x36\x1c\x2b\x3e\ \x22\x31\x47\x26\x36\x4e\x28\x3a\x50\x29\x3c\x51\x2b\x3f\x56\x30\ \x46\x63\x35\x50\x73\x37\x56\x7c\x35\x55\x7d\x31\x53\x7a\x30\x51\ \x77\x2b\x4b\x6d\x28\x42\x60\x1e\x36\x4f\x1a\x2d\x42\x18\x27\x3a\ \x11\x1e\x2e\x12\x1e\x2b\x14\x20\x2e\x13\x1e\x2c\x15\x1f\x2d\x13\ \x1e\x2c\x13\x1e\x2f\x12\x1c\x2b\x12\x1b\x28\x13\x1c\x25\x11\x1a\ \x23\x0f\x18\x21\x11\x1b\x26\x13\x1d\x2b\x14\x20\x2e\x15\x23\x31\ \x17\x22\x30\x16\x21\x2d\x16\x1f\x2b\x17\x22\x2c\x1a\x24\x2f\x17\ \x22\x2c\x16\x20\x2a\x16\x20\x2a\x14\x1e\x27\x13\x1c\x25\x13\x1a\ \x24\x12\x1a\x23\x12\x1d\x25\x14\x22\x2e\x1c\x2a\x37\x22\x32\x40\ \x2a\x3c\x4e\x30\x44\x59\x37\x4f\x61\x3e\x56\x6a\x45\x5e\x73\x4a\ \x65\x7a\x4f\x6a\x80\x52\x6e\x81\x52\x6d\x81\x53\x71\x85\x00\x00\ \x00\x50\x8e\xce\x55\x93\xd3\x5a\x99\xda\x5e\xa0\xe1\x65\xa6\xe4\ \x66\xa7\xe4\x61\xa6\xe2\x5b\xa2\xe0\x57\x9e\xe0\x4f\x97\xdc\x4c\ \x93\xda\x49\x8a\xd4\x47\x84\xcb\x40\x79\xbf\x3d\x74\xb6\x43\x7a\ \xb6\x4f\x88\xc0\x4e\x83\xb8\x46\x75\xa8\x43\x6e\xa1\x3e\x6c\x9f\ \x4a\x7a\xb2\x4f\x84\xc0\x4e\x86\xc3\x4a\x83\xc4\x45\x82\xc1\x48\ \x82\xc1\x48\x82\xc3\x4d\x87\xc7\x4e\x87\xc4\x4a\x81\xbe\x44\x76\ \xad\x38\x63\x91\x28\x49\x6e\x1b\x2e\x4b\x10\x1d\x2d\x09\x10\x1d\ \x08\x07\x14\x08\x09\x13\x07\x0a\x13\x0a\x0b\x15\x0a\x0c\x17\x0a\ \x0c\x17\x09\x0d\x18\x0a\x0f\x18\x0c\x11\x19\x0b\x10\x19\x0c\x11\ \x1a\x0c\x11\x1a\x0e\x13\x1c\x0e\x13\x1c\x10\x15\x1c\x10\x16\x1b\ \x12\x18\x1d\x13\x18\x1d\x16\x1a\x1f\x1a\x1e\x22\x19\x1e\x21\x1c\ \x21\x24\x1e\x22\x26\x22\x26\x2a\x22\x27\x2a\x22\x26\x29\x1f\x24\ \x25\x20\x25\x26\x19\x1e\x1f\x12\x17\x1b\x0e\x12\x18\x09\x0b\x13\ \x09\x0a\x14\x0a\x0d\x18\x0a\x12\x1c\x09\x12\x1e\x0b\x14\x21\x0b\ \x17\x26\x0e\x1a\x2c\x0e\x1b\x30\x10\x1e\x34\x10\x21\x36\x18\x29\ \x3e\x16\x26\x3d\x1a\x2b\x42\x1a\x2c\x43\x1a\x2c\x43\x1e\x30\x47\ \x1e\x30\x47\x21\x33\x4a\x21\x34\x49\x23\x36\x4b\x26\x37\x4b\x23\ \x35\x47\x25\x37\x48\x3c\x48\x58\x54\x56\x65\x55\x55\x61\x52\x51\ \x5b\x3e\x40\x48\x19\x1d\x25\x0b\x14\x22\x0c\x17\x28\x0d\x1a\x2c\ \x11\x1e\x30\x15\x22\x33\x18\x24\x37\x1d\x2a\x40\x20\x2f\x46\x25\ \x35\x4c\x28\x39\x50\x2a\x3c\x53\x2d\x41\x5a\x35\x4e\x6c\x39\x57\ \x7b\x3c\x5d\x84\x3a\x5d\x85\x38\x5c\x84\x36\x58\x80\x31\x53\x77\ \x2f\x4b\x6c\x22\x3b\x58\x1c\x2f\x49\x1b\x29\x3f\x16\x24\x36\x15\ \x23\x33\x14\x22\x34\x17\x25\x37\x18\x24\x36\x16\x23\x35\x14\x22\ \x34\x14\x21\x33\x14\x20\x30\x13\x1d\x2b\x11\x1d\x28\x0f\x1b\x27\ \x11\x1c\x29\x11\x1d\x2b\x13\x20\x2f\x14\x22\x33\x18\x27\x37\x18\ \x27\x37\x16\x26\x34\x17\x25\x33\x19\x26\x34\x1a\x26\x35\x17\x22\ \x2f\x19\x22\x2e\x17\x21\x2d\x14\x1d\x29\x17\x1f\x2c\x15\x20\x2c\ \x16\x22\x2d\x18\x24\x34\x1f\x2c\x3d\x26\x35\x45\x27\x3b\x4c\x31\ \x48\x5a\x39\x51\x63\x41\x5b\x6c\x48\x62\x76\x4f\x69\x81\x52\x6c\ \x84\x50\x6e\x81\x53\x6e\x82\x55\x71\x86\x00\x00\x00\x51\x90\xce\ \x55\x94\xd1\x59\x99\xd7\x5d\x9f\xe0\x62\xa4\xe2\x64\xa6\xe4\x61\ \xa5\xe4\x5b\xa1\xe0\x58\x9f\xdf\x51\x99\xde\x4e\x95\xdb\x4a\x8d\ \xd7\x48\x86\xcd\x40\x7b\xc1\x3d\x75\xb6\x43\x7a\xb7\x50\x87\xc0\ \x50\x87\xbc\x49\x7a\xad\x44\x6f\xa2\x3c\x6a\x9e\x45\x74\xac\x4f\ \x83\xbe\x4d\x83\xc1\x4a\x84\xc5\x46\x82\xc2\x49\x84\xc5\x4b\x85\ \xc6\x4e\x88\xc8\x4f\x8a\xc6\x4c\x85\xbe\x46\x79\xaf\x3b\x68\x96\ \x2c\x4c\x71\x1c\x31\x4c\x11\x1f\x2e\x09\x0f\x1b\x08\x07\x13\x09\ \x08\x14\x0a\x0b\x16\x09\x0b\x14\x09\x0b\x16\x0b\x0d\x18\x0c\x0e\ \x19\x0b\x0f\x19\x09\x0f\x17\x0c\x11\x1a\x0c\x11\x1a\x0d\x13\x1a\ \x0d\x13\x1a\x0f\x14\x1c\x10\x15\x1d\x11\x17\x1c\x12\x18\x1d\x13\ \x19\x1f\x17\x1b\x20\x1a\x1e\x23\x1a\x1f\x22\x1b\x21\x24\x1d\x23\ \x26\x1f\x25\x29\x20\x27\x2a\x23\x29\x2b\x1f\x24\x25\x1f\x23\x25\ \x1a\x1e\x21\x12\x17\x1a\x0e\x11\x18\x09\x0c\x14\x09\x0a\x14\x09\ \x0c\x16\x07\x0f\x1a\x0a\x13\x20\x0c\x15\x23\x0c\x18\x28\x0d\x1a\ \x2d\x0f\x1d\x33\x11\x20\x37\x12\x22\x3b\x15\x24\x3d\x19\x29\x40\ \x19\x2b\x41\x1b\x2d\x44\x1d\x2f\x46\x20\x32\x49\x1e\x30\x47\x21\ \x33\x4a\x22\x36\x4c\x23\x37\x4c\x25\x37\x4c\x24\x39\x4b\x25\x39\ \x49\x40\x4b\x5c\x54\x57\x66\x56\x57\x63\x52\x51\x5a\x3e\x40\x48\ \x1a\x20\x29\x0d\x17\x25\x0d\x19\x2a\x0c\x1a\x2d\x0e\x1c\x2f\x15\ \x23\x35\x17\x25\x38\x1b\x2a\x40\x1f\x2f\x46\x22\x34\x4b\x27\x3b\ \x52\x27\x3b\x53\x2d\x42\x5c\x35\x4f\x6f\x3f\x5e\x83\x40\x62\x8c\ \x41\x65\x8f\x3d\x61\x8c\x39\x5f\x87\x36\x5a\x81\x32\x52\x75\x27\ \x43\x64\x21\x37\x53\x1c\x2d\x46\x19\x27\x3c\x17\x25\x3a\x17\x27\ \x3b\x18\x28\x3d\x18\x28\x3e\x16\x26\x3b\x17\x27\x3b\x16\x25\x3b\ \x17\x25\x39\x14\x22\x35\x10\x1e\x2d\x11\x1f\x2f\x12\x20\x30\x13\ \x21\x32\x16\x24\x35\x15\x25\x37\x17\x26\x38\x19\x28\x3b\x1a\x2b\ \x3d\x19\x2a\x3c\x1a\x29\x3a\x1c\x2b\x3d\x17\x24\x35\x19\x25\x32\ \x19\x25\x32\x17\x22\x30\x13\x20\x2e\x17\x26\x34\x18\x25\x33\x17\ \x24\x36\x20\x2e\x40\x28\x39\x4a\x2f\x44\x55\x34\x4c\x5f\x3d\x56\ \x69\x43\x5c\x70\x4a\x65\x79\x50\x6b\x83\x51\x6d\x84\x52\x70\x85\ \x54\x71\x84\x57\x72\x87\x00\x00\x00\x52\x91\xce\x54\x93\xcf\x58\ \x98\xd6\x5b\x9e\xdd\x5f\xa2\xe0\x61\xa7\xe5\x60\xa4\xe5\x5d\xa1\ \xe2\x58\x9f\xe1\x52\x9a\xdf\x4e\x95\xdb\x4c\x90\xd6\x4a\x88\xcf\ \x42\x7d\xc2\x3e\x75\xb6\x42\x78\xb4\x4e\x85\xbf\x51\x88\xbd\x49\ \x7b\xad\x45\x72\xa5\x3e\x6b\x9f\x45\x73\xaa\x50\x82\xbd\x4f\x85\ \xc3\x4c\x85\xc6\x47\x84\xc4\x4a\x86\xc5\x4d\x88\xc6\x4e\x8a\xc7\ \x51\x8c\xc6\x50\x89\xc0\x47\x7c\xb1\x3c\x6a\x97\x2e\x4f\x73\x1c\ \x2f\x49\x10\x1f\x2d\x08\x10\x18\x09\x08\x13\x09\x08\x15\x09\x0b\ \x16\x0b\x0c\x17\x0c\x0c\x18\x0a\x0c\x17\x0b\x0d\x18\x0c\x0e\x17\ \x0c\x10\x19\x0a\x0f\x18\x0b\x10\x19\x0b\x11\x18\x0c\x12\x19\x0d\ \x13\x1b\x0e\x15\x1b\x10\x16\x1b\x12\x18\x1e\x13\x19\x20\x17\x1b\ \x20\x18\x1c\x21\x19\x20\x23\x1a\x21\x24\x1d\x24\x27\x1e\x25\x28\ \x1d\x26\x25\x1f\x26\x26\x22\x28\x27\x1f\x24\x23\x1b\x1d\x22\x12\ \x15\x1b\x0d\x0f\x18\x09\x0b\x16\x0a\x0b\x15\x0a\x0e\x18\x08\x11\ \x1c\x0a\x14\x21\x0a\x16\x24\x0c\x18\x29\x0f\x1c\x30\x11\x1e\x35\ \x11\x1f\x39\x15\x24\x3e\x17\x26\x41\x17\x29\x40\x19\x2b\x41\x1c\ \x2e\x45\x20\x32\x49\x1f\x31\x48\x20\x32\x49\x20\x35\x4b\x22\x37\ \x4d\x23\x38\x4e\x25\x37\x4c\x27\x3b\x4e\x25\x39\x4b\x40\x4b\x5d\ \x56\x59\x67\x56\x57\x63\x51\x50\x59\x3f\x41\x4a\x1c\x21\x2b\x10\ \x19\x29\x0e\x1b\x2d\x10\x1f\x32\x13\x21\x35\x17\x25\x38\x1b\x2a\ \x3f\x1e\x2f\x46\x1f\x31\x4b\x25\x3a\x51\x29\x3e\x56\x2c\x41\x5a\ \x30\x47\x62\x3c\x57\x78\x42\x64\x89\x45\x68\x93\x44\x6a\x95\x40\ \x67\x93\x40\x66\x90\x3c\x61\x89\x38\x5b\x81\x2c\x4a\x6e\x24\x3c\ \x5b\x20\x33\x4c\x19\x29\x3f\x19\x29\x40\x19\x29\x41\x1b\x2c\x43\ \x1b\x2c\x46\x19\x2b\x44\x17\x2a\x41\x17\x28\x41\x19\x29\x40\x17\ \x26\x3d\x13\x22\x36\x15\x23\x36\x16\x24\x37\x15\x23\x37\x17\x24\ \x39\x19\x27\x3b\x19\x27\x3d\x1b\x2a\x40\x1e\x2f\x44\x20\x31\x45\ \x1d\x2e\x41\x1d\x2b\x41\x1d\x2a\x3f\x1b\x28\x37\x1a\x26\x36\x1c\ \x2a\x3a\x16\x25\x35\x18\x28\x38\x1a\x28\x38\x1b\x2a\x3b\x22\x32\ \x43\x2a\x3a\x4c\x31\x46\x5a\x37\x50\x65\x40\x58\x6e\x49\x61\x78\ \x4e\x69\x7e\x50\x6d\x82\x54\x72\x87\x53\x71\x86\x57\x73\x88\x58\ \x75\x88\x00\x00\x00\x4f\x90\xce\x52\x94\xce\x56\x98\xd4\x56\x9a\ \xdb\x5b\xa0\xe0\x62\xa6\xe7\x5e\xa5\xe5\x5d\xa3\xe3\x5a\xa1\xe2\ \x53\x9c\xdf\x50\x98\xdc\x4f\x92\xd9\x4b\x8b\xd1\x43\x7f\xc5\x3f\ \x78\xbb\x40\x76\xb5\x4c\x82\xbe\x50\x89\xbf\x4b\x7e\xb1\x45\x74\ \xa6\x40\x6d\xa1\x44\x73\xa9\x4e\x82\xbb\x4e\x85\xc2\x4c\x86\xc4\ \x4a\x87\xc6\x4b\x87\xc7\x4d\x89\xc9\x50\x8b\xc7\x53\x8d\xc6\x50\ \x89\xc0\x49\x80\xb2\x3d\x6b\x9b\x30\x52\x79\x1a\x30\x4b\x12\x1f\ \x2d\x0b\x11\x1a\x07\x08\x13\x09\x09\x15\x09\x0a\x15\x0a\x0b\x15\ \x0a\x0b\x19\x0b\x0c\x19\x0a\x0c\x17\x0c\x0e\x19\x0b\x0f\x18\x0b\ \x10\x19\x0c\x11\x19\x0c\x11\x1a\x0d\x12\x1b\x0d\x13\x1b\x0f\x15\ \x1b\x0f\x15\x1a\x13\x19\x1e\x14\x19\x20\x16\x1a\x1f\x18\x1c\x21\ \x1a\x20\x23\x18\x1f\x22\x1c\x24\x26\x1e\x26\x26\x1f\x27\x27\x21\ \x27\x28\x20\x26\x25\x1e\x23\x24\x19\x1e\x21\x11\x15\x19\x0e\x11\ \x18\x08\x0b\x15\x09\x0a\x16\x09\x0c\x17\x07\x0e\x1b\x09\x14\x20\ \x0c\x17\x24\x0f\x1b\x2c\x0f\x1e\x32\x12\x22\x3b\x12\x25\x3f\x16\ \x29\x43\x18\x29\x45\x1a\x2e\x48\x1d\x32\x4a\x1e\x32\x49\x1f\x32\ \x47\x1e\x33\x49\x21\x35\x4d\x22\x38\x52\x22\x38\x52\x23\x3a\x51\ \x25\x39\x4e\x27\x3b\x4f\x27\x39\x4b\x42\x4b\x5f\x55\x57\x68\x57\ \x56\x62\x54\x53\x5c\x43\x43\x4d\x1d\x23\x30\x12\x1e\x2f\x10\x1e\ \x32\x10\x22\x38\x15\x25\x3b\x16\x27\x3c\x19\x2b\x3f\x1b\x30\x46\ \x20\x38\x4f\x27\x3d\x57\x2b\x41\x5b\x2c\x43\x5d\x31\x4b\x66\x3d\ \x5d\x7d\x46\x6a\x8f\x49\x70\x9a\x46\x6f\x9a\x42\x6b\x98\x43\x6a\ \x96\x43\x68\x93\x3c\x60\x88\x2f\x4f\x74\x26\x3f\x5e\x1f\x35\x4f\ \x19\x2b\x43\x1c\x2b\x42\x1d\x2d\x47\x1c\x30\x4a\x1c\x31\x4c\x1c\ \x32\x4c\x19\x2f\x4a\x18\x2d\x47\x1a\x2d\x45\x1a\x2a\x3e\x17\x26\ \x39\x16\x24\x38\x1a\x27\x3d\x1b\x29\x3f\x15\x24\x3a\x19\x27\x3d\ \x1a\x29\x41\x1b\x2c\x44\x1f\x32\x4a\x22\x37\x4f\x21\x34\x4e\x20\ \x30\x46\x1e\x2f\x42\x1c\x2b\x3e\x1a\x2a\x3c\x1b\x2c\x3d\x1d\x2d\ \x3e\x1b\x2b\x3c\x1d\x2d\x3e\x24\x33\x44\x29\x39\x4b\x2b\x3f\x53\ \x33\x49\x5f\x39\x52\x66\x42\x5d\x72\x48\x64\x79\x4c\x68\x80\x50\ \x6c\x84\x53\x6f\x87\x57\x74\x89\x57\x72\x87\x57\x72\x86\x00\x00\ \x00\x4e\x8e\xcd\x52\x92\xd1\x54\x96\xd4\x55\x99\xda\x5b\x9f\xe0\ \x61\xa5\xe6\x61\xa5\xe6\x5f\xa3\xe4\x5b\xa2\xe2\x55\x9e\xe0\x51\ \x99\xdd\x51\x95\xdb\x4d\x8e\xd3\x44\x82\xc8\x3d\x78\xbc\x3e\x76\ \xb6\x47\x7e\xba\x4f\x87\xbf\x49\x7b\xb0\x43\x72\xa5\x3f\x6e\xa2\ \x42\x72\xa8\x4e\x81\xba\x4f\x86\xc3\x4e\x87\xc5\x4b\x87\xc5\x4b\ \x89\xc8\x4d\x8a\xca\x50\x8c\xc8\x52\x8b\xc4\x50\x88\xc0\x48\x7f\ \xb1\x3e\x6e\x9e\x30\x53\x7b\x1e\x33\x4e\x13\x21\x2f\x0a\x0f\x18\ \x06\x08\x13\x09\x09\x14\x08\x09\x13\x09\x0a\x15\x0c\x0c\x18\x0c\ \x0d\x18\x0c\x0e\x19\x0c\x0e\x19\x0a\x0d\x17\x0b\x10\x19\x0b\x10\ \x19\x0a\x0f\x18\x0d\x12\x1b\x0e\x13\x1b\x0e\x14\x1a\x11\x17\x1c\ \x12\x18\x1d\x14\x1a\x21\x17\x1b\x21\x18\x1e\x22\x19\x20\x23\x18\ \x1f\x22\x1b\x22\x25\x1e\x26\x28\x1e\x26\x27\x20\x28\x27\x20\x25\ \x26\x1e\x24\x25\x17\x1d\x20\x13\x18\x1b\x0c\x0f\x16\x09\x0a\x14\ \x0a\x0b\x17\x0a\x0d\x18\x09\x12\x1d\x09\x14\x20\x0b\x17\x25\x0f\ \x1d\x2e\x13\x22\x37\x14\x25\x3f\x16\x2a\x46\x17\x2b\x47\x1a\x2e\ \x49\x1e\x33\x4f\x20\x37\x51\x21\x37\x50\x21\x36\x4c\x22\x36\x4d\ \x22\x37\x51\x23\x38\x52\x24\x3a\x53\x25\x3c\x52\x26\x3a\x4f\x27\ \x3b\x50\x29\x3b\x4e\x44\x4c\x60\x56\x59\x69\x59\x5a\x66\x55\x54\ \x5d\x43\x45\x4f\x21\x29\x37\x12\x20\x34\x12\x24\x3b\x11\x25\x3d\ \x15\x26\x40\x19\x2a\x41\x18\x2c\x42\x1c\x33\x4a\x22\x39\x52\x2a\ \x41\x5b\x2e\x45\x60\x2f\x48\x63\x35\x50\x6c\x41\x60\x82\x4a\x6d\ \x94\x4d\x74\x9f\x4b\x73\x9f\x49\x72\x9f\x47\x6f\x9c\x45\x6b\x97\ \x3f\x62\x8c\x32\x53\x77\x29\x44\x62\x21\x38\x51\x1c\x2f\x48\x1e\ \x2e\x45\x1f\x31\x4a\x1f\x34\x4e\x21\x37\x53\x1f\x35\x50\x20\x36\ \x52\x1c\x32\x4d\x1c\x30\x49\x1b\x2c\x42\x19\x28\x3c\x18\x28\x3e\ \x1b\x2a\x41\x1c\x2c\x42\x18\x29\x3e\x16\x26\x3a\x18\x29\x40\x1c\ \x2e\x49\x1d\x32\x4d\x24\x3a\x54\x24\x39\x54\x1d\x30\x47\x1e\x2f\ \x44\x1f\x30\x43\x1e\x2f\x42\x1c\x2d\x40\x1d\x2e\x40\x1b\x2c\x3e\ \x21\x31\x42\x25\x35\x46\x2b\x3e\x51\x2f\x46\x5c\x35\x4d\x64\x3b\ \x54\x6c\x43\x5e\x73\x49\x65\x7a\x4c\x68\x7f\x50\x6c\x84\x50\x6c\ \x83\x50\x6d\x82\x51\x6c\x80\x52\x6d\x81\x00\x00\x00\x4c\x8c\xce\ \x4f\x8f\xd0\x53\x94\xd4\x57\x99\xda\x5c\xa0\xe1\x5f\xa5\xe5\x60\ \xa4\xe5\x5f\xa3\xe4\x5c\xa3\xe3\x59\xa0\xe2\x52\x99\xdc\x51\x96\ \xdc\x4c\x8f\xd5\x48\x87\xcd\x3e\x7a\xbf\x3d\x75\xb6\x45\x7b\xb9\ \x50\x85\xbe\x4d\x7d\xb3\x45\x73\xa6\x41\x70\xa2\x41\x72\xa6\x4c\ \x7e\xb8\x51\x87\xc2\x50\x89\xc7\x4e\x88\xc6\x4d\x8a\xc9\x4c\x89\ \xc9\x4d\x89\xc6\x4f\x88\xc2\x4f\x87\xbf\x4a\x7e\xb2\x41\x70\xa1\ \x2f\x53\x7d\x20\x36\x52\x13\x1f\x2f\x0b\x11\x1a\x06\x08\x13\x08\ \x08\x14\x08\x09\x13\x0a\x0c\x15\x0c\x0d\x18\x0b\x0d\x17\x0b\x0d\ \x18\x0c\x0e\x19\x0b\x0f\x19\x0b\x10\x19\x0b\x10\x19\x0b\x10\x19\ \x0d\x12\x1b\x0f\x15\x1c\x0e\x14\x1a\x11\x17\x1c\x12\x18\x1d\x16\ \x1c\x23\x17\x1e\x22\x17\x1e\x21\x18\x1f\x22\x1b\x22\x25\x1d\x24\ \x27\x1f\x26\x2a\x20\x27\x2a\x20\x28\x2a\x21\x29\x29\x1e\x26\x28\ \x17\x1e\x21\x13\x18\x1c\x0d\x10\x17\x09\x0a\x14\x09\x0b\x15\x08\ \x0d\x18\x08\x11\x1c\x0a\x15\x22\x0c\x19\x29\x10\x1f\x31\x12\x24\ \x39\x13\x27\x42\x17\x2c\x4a\x19\x2f\x4d\x1a\x30\x4d\x1d\x35\x52\ \x20\x38\x55\x1f\x37\x52\x21\x38\x52\x23\x39\x53\x22\x37\x52\x24\ \x3a\x54\x25\x3c\x53\x25\x3d\x51\x28\x3c\x51\x29\x3d\x52\x29\x3d\ \x50\x42\x4d\x60\x5a\x5d\x6d\x5b\x5c\x66\x58\x58\x61\x44\x47\x52\ \x20\x29\x38\x13\x23\x3a\x13\x27\x40\x10\x25\x40\x13\x27\x42\x16\ \x29\x43\x19\x2d\x47\x1e\x34\x4d\x22\x39\x53\x29\x41\x5d\x2d\x45\ \x61\x31\x4b\x66\x34\x50\x6e\x44\x64\x86\x4c\x6f\x97\x4e\x74\xa0\ \x4c\x74\xa2\x4b\x73\xa3\x49\x73\xa0\x46\x6e\x9a\x42\x66\x90\x35\ \x56\x7a\x29\x45\x63\x22\x39\x52\x1d\x31\x49\x1d\x30\x47\x1e\x32\ \x4a\x21\x37\x51\x25\x3c\x58\x22\x3a\x57\x1f\x38\x54\x20\x38\x54\ \x1d\x32\x4e\x1b\x2d\x46\x17\x28\x3f\x1a\x2b\x44\x1a\x2c\x46\x1a\ \x2d\x44\x1a\x2b\x40\x15\x26\x38\x17\x2a\x40\x1d\x32\x4d\x1d\x34\ \x4f\x22\x39\x56\x24\x3b\x55\x22\x37\x51\x1e\x31\x48\x1f\x33\x47\ \x1f\x34\x47\x1e\x31\x46\x1d\x30\x44\x1e\x30\x42\x23\x35\x47\x25\ \x39\x4b\x2c\x42\x57\x34\x4d\x65\x39\x53\x6d\x3f\x58\x72\x47\x62\ \x77\x4a\x66\x7b\x4b\x68\x7e\x4d\x69\x81\x4f\x6a\x82\x4e\x6b\x80\ \x4f\x6a\x7f\x4e\x69\x7e\x00\x00\x00\x49\x88\xcb\x50\x90\xd1\x52\ \x92\xd3\x57\x98\xd9\x5b\xa0\xe1\x5d\xa4\xe4\x61\xa6\xe6\x61\xa4\ \xe4\x5e\xa2\xe2\x5a\xa0\xe1\x53\x99\xdd\x50\x97\xdb\x4d\x91\xd7\ \x47\x87\xce\x41\x7d\xc3\x3c\x75\xb9\x40\x77\xb7\x4e\x81\xbe\x4e\ \x7e\xb4\x47\x75\xa8\x43\x71\xa1\x42\x72\xa5\x4a\x7c\xb4\x52\x88\ \xc4\x4f\x89\xc6\x4e\x89\xc7\x4b\x88\xc8\x49\x87\xc8\x4a\x85\xc4\ \x4c\x84\xbf\x4c\x82\xbb\x49\x7c\xb1\x40\x6e\xa2\x30\x56\x81\x1f\ \x37\x54\x13\x20\x31\x0b\x10\x1a\x07\x09\x14\x08\x08\x14\x0a\x0b\ \x16\x0b\x0c\x15\x0a\x0c\x16\x0c\x0e\x18\x0c\x0e\x18\x0b\x0f\x1a\ \x0c\x10\x1b\x0c\x11\x19\x0c\x11\x1a\x0c\x11\x1a\x0d\x12\x1b\x0e\ \x14\x1c\x12\x18\x1d\x12\x18\x1d\x14\x1a\x20\x16\x1c\x22\x15\x1d\ \x21\x17\x20\x23\x19\x20\x23\x1b\x22\x26\x1d\x22\x27\x1e\x24\x29\ \x20\x26\x2b\x1f\x26\x2a\x1f\x28\x2b\x1e\x26\x2a\x1a\x20\x24\x13\ \x19\x1c\x0e\x11\x18\x0a\x0b\x15\x08\x0b\x17\x0a\x0f\x1a\x07\x10\ \x1b\x08\x13\x22\x0b\x19\x2b\x10\x1e\x34\x13\x24\x3e\x13\x28\x44\ \x17\x2c\x4b\x19\x2f\x4d\x19\x31\x4f\x1c\x35\x55\x20\x39\x59\x22\ \x3a\x58\x24\x3b\x58\x23\x3a\x54\x24\x38\x54\x24\x3a\x54\x26\x3c\ \x53\x25\x3d\x4f\x29\x3e\x50\x29\x3e\x53\x2c\x3f\x53\x40\x4d\x5f\ \x5d\x60\x6e\x5d\x5e\x68\x57\x57\x60\x49\x4d\x58\x23\x2e\x3d\x14\ \x24\x3e\x11\x25\x3f\x11\x26\x41\x14\x28\x43\x16\x29\x42\x1b\x2f\ \x48\x1e\x32\x4c\x23\x38\x53\x2a\x43\x5d\x2f\x47\x62\x30\x48\x64\ \x34\x51\x6d\x44\x64\x85\x4c\x70\x97\x4f\x74\xa0\x4b\x74\xa0\x4b\ \x75\xa2\x47\x71\x9d\x42\x6d\x98\x41\x66\x8f\x34\x56\x7a\x28\x44\ \x62\x21\x39\x52\x1e\x32\x49\x1d\x32\x49\x1f\x35\x4e\x22\x39\x55\ \x24\x3d\x5b\x27\x41\x60\x22\x3b\x5b\x25\x3d\x5d\x21\x36\x54\x1b\ \x2f\x4a\x17\x27\x41\x18\x2a\x44\x1a\x2e\x47\x1a\x2d\x44\x18\x29\ \x3d\x17\x28\x3a\x18\x2a\x40\x1d\x32\x4d\x1d\x35\x50\x20\x38\x54\ \x24\x3c\x57\x1e\x34\x4f\x20\x33\x4c\x1e\x33\x48\x1e\x33\x48\x22\ \x36\x4c\x1c\x31\x47\x20\x34\x48\x24\x38\x49\x28\x3e\x50\x2d\x46\ \x5b\x34\x4f\x66\x3c\x58\x70\x41\x5d\x75\x46\x61\x76\x49\x64\x79\ \x4a\x66\x7d\x4b\x67\x7f\x4d\x69\x81\x4e\x69\x81\x4f\x69\x80\x4e\ \x68\x80\x00\x00\x00\x48\x8a\xcb\x4a\x8d\xcd\x50\x91\xd2\x56\x97\ \xd8\x59\x9e\xdf\x5c\xa3\xe3\x62\xa6\xe7\x61\xa5\xe4\x5d\xa2\xe1\ \x59\x9d\xdf\x55\x9b\xde\x50\x97\xdb\x4e\x92\xd8\x48\x88\xd0\x41\ \x7e\xc5\x3d\x76\xba\x3f\x77\xb8\x4c\x81\xbe\x4f\x7f\xb7\x48\x75\ \xa7\x46\x71\xa2\x44\x72\xa4\x49\x7b\xb2\x53\x88\xc2\x51\x89\xc6\ \x4e\x89\xc5\x4a\x88\xc7\x48\x85\xc7\x4a\x85\xc3\x4a\x81\xbe\x4a\ \x80\xb9\x4a\x7b\xb2\x3f\x6e\xa1\x31\x57\x82\x21\x3a\x58\x13\x21\ \x32\x0b\x10\x1a\x08\x0a\x15\x09\x09\x15\x0a\x0b\x15\x0b\x0d\x16\ \x0a\x0d\x16\x0b\x0d\x17\x0b\x10\x19\x0c\x10\x1a\x0b\x0f\x19\x0b\ \x10\x19\x0c\x11\x1a\x0e\x13\x1c\x0e\x13\x1c\x0d\x14\x1c\x0f\x17\ \x1d\x11\x1a\x1e\x11\x1a\x1f\x14\x1c\x23\x13\x1c\x1f\x16\x20\x22\ \x19\x22\x25\x1c\x22\x27\x1e\x23\x29\x20\x26\x2b\x21\x29\x2d\x20\ \x29\x2d\x20\x29\x2d\x1d\x26\x2a\x19\x1f\x24\x14\x19\x1e\x0f\x12\ \x18\x0c\x0d\x15\x08\x0b\x17\x07\x0d\x18\x0a\x11\x1d\x08\x13\x21\ \x0b\x1a\x2c\x10\x1d\x36\x11\x21\x3e\x12\x25\x43\x15\x2a\x49\x19\ \x2e\x4c\x1c\x32\x52\x1d\x35\x56\x20\x39\x5b\x23\x39\x5b\x25\x3b\ \x59\x26\x3c\x58\x23\x3a\x55\x27\x3c\x56\x28\x3e\x55\x27\x40\x51\ \x2c\x41\x52\x29\x3f\x53\x2c\x41\x54\x43\x50\x62\x5f\x63\x70\x63\ \x64\x6e\x5e\x60\x68\x4c\x51\x5d\x24\x2e\x3e\x14\x25\x3c\x12\x26\ \x3f\x10\x26\x41\x15\x28\x41\x17\x29\x43\x1c\x2f\x48\x21\x33\x4c\ \x25\x39\x53\x28\x3f\x58\x2e\x47\x61\x30\x4b\x64\x33\x50\x6b\x40\ \x63\x82\x48\x6e\x93\x4b\x71\x9b\x4a\x72\x9e\x47\x71\x9e\x47\x72\ \x9d\x42\x6c\x97\x3f\x63\x8d\x31\x54\x77\x27\x44\x62\x20\x39\x52\ \x1d\x33\x4a\x1f\x35\x4c\x23\x39\x53\x22\x3b\x58\x25\x3f\x5e\x2a\ \x44\x65\x29\x45\x66\x24\x3e\x5f\x25\x3c\x5a\x1c\x31\x4d\x18\x29\ \x43\x17\x2a\x44\x1a\x2f\x47\x1b\x2d\x42\x19\x28\x3a\x1a\x28\x3c\ \x1b\x2b\x43\x1c\x2f\x49\x1f\x37\x51\x20\x3a\x54\x1f\x37\x53\x20\ \x35\x51\x1e\x33\x4e\x1c\x33\x48\x1d\x34\x49\x1e\x33\x4b\x1f\x34\ \x4a\x20\x35\x49\x23\x39\x4b\x2d\x42\x57\x31\x49\x5e\x35\x50\x65\ \x3b\x56\x6c\x3f\x59\x6e\x45\x60\x75\x47\x63\x78\x49\x65\x7c\x4a\ \x66\x7e\x4b\x67\x7f\x4b\x66\x80\x4d\x65\x80\x4c\x64\x80\x00\x00\ \x00\x49\x8a\xce\x4d\x8c\xcf\x54\x92\xd2\x57\x97\xd8\x5a\x9d\xde\ \x5c\xa3\xe2\x61\xa4\xe3\x5e\xa1\xe1\x59\x9c\xdd\x55\x98\xd9\x53\ \x98\xda\x4e\x95\xda\x4c\x8f\xd5\x49\x89\xcf\x42\x7d\xc5\x3d\x77\ \xba\x40\x78\xb5\x4e\x81\xbe\x50\x81\xb8\x49\x77\xaa\x48\x74\xa4\ \x46\x73\xa2\x49\x7b\xb0\x52\x86\xc4\x50\x89\xc7\x4e\x89\xc7\x4b\ \x87\xc8\x49\x86\xc6\x47\x84\xc4\x46\x81\xbe\x47\x7f\xba\x44\x78\ \xb2\x3f\x6d\x9f\x31\x57\x84\x20\x3a\x5c\x15\x21\x36\x0c\x13\x1c\ \x06\x08\x12\x0b\x0b\x14\x09\x0b\x15\x0a\x0c\x16\x0b\x0d\x18\x0b\ \x0e\x19\x0a\x0e\x19\x0b\x0f\x1a\x09\x0f\x18\x0a\x12\x19\x0b\x11\ \x1c\x0e\x12\x1c\x0e\x14\x1b\x0f\x14\x1d\x10\x16\x1e\x12\x18\x1f\ \x13\x19\x20\x16\x1b\x22\x19\x1f\x24\x19\x1f\x24\x19\x20\x23\x1a\ \x21\x24\x1e\x25\x28\x20\x27\x2a\x22\x29\x2c\x22\x2a\x2d\x21\x2a\ \x2d\x1f\x28\x2b\x1b\x22\x25\x15\x19\x1c\x0f\x13\x18\x0a\x0d\x16\ \x07\x0b\x15\x07\x0f\x19\x09\x13\x20\x09\x17\x28\x0a\x1a\x2c\x0e\ \x1f\x39\x11\x23\x3e\x12\x25\x43\x14\x29\x45\x17\x2d\x49\x19\x2f\ \x4e\x1e\x35\x56\x21\x38\x59\x25\x3d\x5b\x25\x3f\x5a\x26\x3e\x5a\ \x29\x3d\x59\x29\x3e\x59\x27\x3f\x56\x29\x42\x55\x2b\x42\x56\x2a\ \x3f\x56\x2f\x42\x58\x49\x55\x67\x64\x67\x75\x67\x6b\x75\x65\x65\ \x6f\x53\x54\x62\x2a\x34\x44\x18\x28\x3d\x14\x27\x41\x10\x24\x3f\ \x14\x26\x41\x1b\x2b\x42\x1c\x2e\x45\x1f\x35\x4c\x23\x39\x52\x2a\ \x3e\x59\x2c\x43\x5e\x32\x4a\x65\x35\x50\x6b\x42\x62\x82\x48\x6c\ \x91\x48\x6f\x96\x48\x70\x9a\x46\x70\x9b\x46\x6f\x9a\x44\x6c\x95\ \x3a\x5f\x86\x31\x50\x73\x29\x41\x5e\x1f\x37\x4e\x1e\x35\x4c\x20\ \x37\x51\x22\x3a\x55\x25\x3d\x5b\x25\x3e\x5f\x27\x42\x66\x2b\x45\ \x69\x25\x40\x61\x1f\x38\x55\x1a\x32\x4a\x17\x2d\x42\x16\x2a\x40\ \x1c\x2e\x44\x1a\x2a\x3e\x16\x26\x37\x14\x23\x37\x19\x2a\x41\x1b\ \x2e\x48\x1d\x34\x4e\x1f\x37\x51\x1e\x38\x4f\x20\x37\x4f\x1f\x35\ \x4e\x1e\x35\x4e\x1f\x36\x4d\x1e\x35\x49\x1f\x35\x47\x1f\x37\x4a\ \x24\x3c\x52\x2c\x44\x5c\x31\x4b\x61\x38\x53\x68\x3a\x58\x6b\x3e\ \x5b\x6e\x43\x5d\x74\x48\x61\x7b\x47\x61\x7c\x48\x63\x7d\x49\x65\ \x7d\x4b\x64\x7d\x49\x62\x7d\x4a\x62\x7d\x00\x00\x00\x4c\x8d\xd1\ \x4d\x8e\xd0\x53\x90\xd2\x56\x95\xd6\x5a\x9d\xde\x5a\xa0\xdf\x5d\ \xa0\xdf\x5b\x9d\xdc\x59\x99\xd9\x55\x95\xd5\x4e\x90\xd4\x4a\x8d\ \xd4\x49\x8b\xd2\x46\x84\xcd\x44\x7e\xc6\x3e\x76\xba\x40\x77\xb5\ \x4d\x80\xbd\x53\x84\xbb\x4c\x7a\xae\x49\x76\xa6\x47\x74\xa4\x48\ \x77\xae\x50\x83\xc1\x52\x8a\xc6\x4e\x89\xc6\x4c\x8a\xca\x49\x87\ \xc7\x47\x84\xc4\x47\x80\xbe\x48\x7e\xbb\x46\x78\xb3\x42\x6f\xa3\ \x33\x58\x84\x21\x3c\x5c\x15\x21\x34\x0c\x13\x1c\x07\x08\x12\x0b\ \x0b\x15\x0b\x0b\x15\x0a\x0c\x17\x0b\x0d\x18\x0a\x0c\x17\x0a\x0e\ \x19\x0b\x0f\x1a\x0c\x10\x19\x0c\x12\x1a\x0d\x12\x1b\x0c\x13\x1c\ \x0d\x15\x1e\x10\x15\x1e\x12\x18\x20\x14\x1a\x21\x14\x1a\x21\x15\ \x1b\x22\x16\x1c\x22\x18\x1e\x23\x19\x20\x23\x19\x20\x23\x1e\x25\ \x28\x20\x27\x2a\x22\x29\x2c\x20\x29\x2c\x21\x2a\x2d\x20\x29\x2c\ \x1c\x23\x26\x16\x1b\x1e\x0e\x11\x18\x0a\x0c\x16\x08\x0d\x17\x09\ \x10\x1c\x0b\x16\x25\x0a\x19\x2d\x0d\x1e\x33\x0e\x21\x3c\x12\x24\ \x42\x13\x27\x47\x15\x29\x49\x16\x2c\x4b\x1a\x32\x52\x1b\x34\x54\ \x21\x3a\x5a\x24\x3d\x5c\x27\x43\x5f\x29\x42\x5f\x2a\x40\x5d\x2a\ \x40\x5b\x29\x41\x58\x28\x40\x56\x29\x3f\x55\x2a\x40\x58\x30\x43\ \x57\x4d\x58\x6a\x6b\x6d\x7a\x6d\x6f\x79\x6c\x6d\x75\x59\x5a\x65\ \x2d\x38\x45\x16\x25\x3c\x11\x22\x3c\x12\x26\x41\x15\x27\x41\x1a\ \x29\x43\x1a\x2f\x47\x1d\x33\x4c\x21\x38\x52\x29\x3f\x59\x2b\x42\ \x5c\x2d\x47\x60\x33\x4d\x69\x42\x62\x83\x43\x67\x8e\x48\x6e\x96\ \x43\x6a\x94\x42\x6b\x96\x44\x6c\x98\x3f\x67\x90\x37\x5b\x82\x2d\ \x4b\x6d\x22\x3b\x56\x1e\x35\x4c\x1a\x31\x47\x1f\x35\x4f\x23\x3a\ \x55\x23\x3c\x5b\x28\x41\x61\x28\x43\x65\x27\x42\x64\x27\x43\x62\ \x1e\x38\x52\x1c\x33\x4a\x1a\x30\x46\x16\x29\x40\x19\x2b\x40\x1a\ \x29\x3c\x16\x26\x37\x16\x25\x37\x18\x28\x3d\x1c\x2d\x46\x1b\x2f\ \x48\x1e\x34\x4d\x1d\x35\x4e\x1d\x33\x4c\x1e\x34\x4d\x1f\x35\x4e\ \x20\x36\x4e\x1e\x34\x47\x1e\x34\x46\x23\x3a\x4d\x27\x3e\x55\x2d\ \x44\x5e\x31\x4b\x63\x36\x51\x69\x3a\x57\x6d\x3f\x5c\x71\x43\x5d\ \x75\x45\x5f\x78\x45\x60\x7a\x47\x62\x7c\x45\x60\x79\x45\x5e\x78\ \x48\x60\x7b\x49\x62\x7d\x00\x00\x00\x4d\x8f\xd1\x4e\x8f\xd0\x52\ \x91\xd2\x56\x95\xd6\x59\x9c\xdd\x59\x9f\xde\x5a\x9c\xdc\x5a\x9a\ \xd8\x58\x97\xd4\x53\x91\xd1\x50\x8e\xd2\x4c\x8c\xd4\x4a\x89\xd2\ \x47\x84\xcf\x41\x7b\xc5\x3d\x75\xb9\x40\x76\xb6\x49\x7e\xbb\x53\ \x85\xbc\x4c\x7c\xaf\x48\x76\xa6\x46\x74\xa4\x47\x75\xac\x4e\x7f\ \xbd\x51\x89\xc4\x4e\x89\xc5\x4c\x89\xc9\x48\x88\xc8\x47\x85\xc6\ \x48\x84\xc2\x49\x81\xbd\x46\x79\xb5\x45\x71\xa5\x36\x5c\x88\x24\ \x3f\x5c\x16\x25\x32\x0d\x13\x1c\x06\x09\x13\x0a\x0a\x14\x0b\x0c\ \x16\x0a\x0c\x16\x0a\x0c\x17\x0b\x0e\x19\x0b\x0f\x1a\x0a\x0e\x19\ \x0a\x0e\x18\x0d\x12\x1b\x0d\x12\x1b\x0d\x14\x1d\x0d\x14\x1d\x10\ \x16\x1f\x11\x17\x1f\x13\x19\x20\x13\x19\x20\x14\x1a\x21\x16\x1c\ \x21\x16\x1c\x21\x19\x20\x23\x1b\x22\x25\x1e\x25\x28\x20\x27\x2a\ \x20\x27\x2a\x21\x29\x2c\x1f\x28\x2b\x20\x29\x2c\x1b\x22\x26\x15\ \x19\x1d\x0e\x12\x18\x0b\x0d\x16\x07\x0c\x17\x06\x0f\x1c\x0c\x17\ \x28\x0e\x1d\x33\x0f\x22\x3a\x11\x24\x42\x13\x26\x47\x15\x29\x4c\ \x17\x2b\x4e\x18\x2d\x4f\x1b\x35\x55\x1e\x38\x57\x22\x3e\x5c\x26\ \x42\x61\x2a\x45\x63\x2c\x46\x64\x29\x42\x60\x2c\x43\x5e\x2b\x42\ \x5b\x28\x3e\x56\x2a\x3f\x58\x2c\x41\x5a\x30\x46\x59\x51\x5d\x6c\ \x6d\x6f\x7c\x71\x73\x7d\x6f\x6e\x77\x5e\x60\x6b\x2e\x3a\x45\x18\ \x28\x3e\x13\x25\x40\x0f\x23\x3f\x14\x26\x41\x1a\x2a\x44\x1a\x2f\ \x47\x1c\x33\x4c\x21\x39\x52\x27\x3e\x59\x2f\x48\x5f\x2f\x49\x61\ \x32\x4e\x6a\x42\x61\x83\x45\x68\x8f\x41\x66\x8e\x3f\x65\x8e\x3d\ \x64\x90\x3d\x65\x90\x3b\x61\x8a\x35\x58\x7d\x29\x45\x65\x21\x37\ \x51\x1d\x32\x48\x1c\x32\x49\x1f\x35\x4f\x23\x39\x54\x25\x3d\x5a\ \x26\x3e\x5e\x26\x41\x60\x27\x43\x62\x23\x3f\x5c\x1f\x39\x53\x1e\ \x35\x4c\x1b\x31\x48\x18\x2b\x43\x18\x29\x3d\x16\x26\x37\x13\x23\ \x32\x15\x24\x35\x17\x25\x39\x1b\x2a\x40\x1a\x2c\x41\x1c\x30\x46\ \x1a\x2f\x48\x1d\x31\x4a\x1e\x32\x4c\x1e\x32\x4b\x22\x36\x4e\x20\ \x34\x49\x1e\x33\x45\x21\x38\x4b\x28\x3f\x55\x2d\x46\x60\x32\x4b\ \x65\x37\x51\x6b\x3a\x57\x6f\x3b\x5a\x71\x3f\x5b\x74\x43\x5e\x77\ \x44\x60\x78\x42\x5e\x77\x42\x5c\x76\x43\x5f\x78\x44\x5f\x79\x42\ \x5d\x78\x00\x00\x00\x4f\x91\xd1\x4d\x8f\xd2\x53\x91\xd5\x55\x95\ \xd5\x56\x9a\xdb\x58\x9e\xdd\x5a\x9d\xdd\x5a\x9a\xd9\x59\x97\xd5\ \x54\x91\xd1\x52\x90\xd3\x4e\x8e\xd3\x4a\x8a\xd1\x49\x86\xcf\x44\ \x7e\xc6\x40\x77\xbb\x40\x76\xb4\x47\x7c\xb9\x52\x85\xbc\x50\x7f\ \xb2\x49\x77\xa7\x47\x74\xa4\x48\x75\xab\x4d\x7e\xb8\x50\x87\xc1\ \x4f\x87\xc6\x4b\x88\xc9\x49\x89\xc9\x48\x88\xc8\x46\x84\xc4\x47\ \x82\xbf\x49\x7e\xba\x45\x74\xa8\x38\x5f\x8d\x25\x43\x63\x14\x25\ \x33\x0c\x12\x1b\x07\x0a\x13\x0b\x0b\x15\x09\x0a\x14\x09\x0b\x16\ \x0b\x0d\x18\x0b\x0e\x19\x0b\x0f\x1a\x0b\x0f\x1a\x0c\x10\x1b\x0c\ \x11\x1a\x0c\x12\x1a\x0d\x14\x1c\x0e\x14\x1e\x10\x15\x1e\x12\x17\ \x1f\x12\x19\x1f\x13\x19\x20\x13\x19\x20\x15\x1b\x20\x17\x1d\x22\ \x18\x1f\x22\x1b\x22\x25\x1e\x25\x28\x1f\x26\x29\x21\x28\x2b\x20\ \x29\x2c\x21\x2a\x2d\x1c\x25\x29\x1a\x21\x25\x14\x18\x1d\x0e\x12\ \x18\x0a\x0c\x16\x08\x0d\x18\x08\x11\x1d\x0c\x18\x29\x0e\x1f\x34\ \x0e\x22\x3b\x11\x26\x45\x16\x2b\x4b\x14\x28\x4c\x18\x2c\x50\x19\ \x2f\x51\x1c\x36\x55\x21\x3b\x59\x24\x3f\x5d\x28\x43\x63\x2b\x47\ \x66\x2b\x47\x65\x29\x44\x62\x29\x44\x5f\x29\x40\x5a\x28\x3f\x55\ \x2b\x40\x57\x2a\x41\x5a\x30\x45\x59\x53\x5d\x6e\x6f\x6f\x7d\x75\ \x75\x7f\x73\x70\x7a\x64\x65\x70\x31\x3c\x4a\x19\x28\x3e\x13\x24\ \x3f\x10\x24\x41\x15\x26\x42\x1a\x2a\x44\x1a\x2d\x46\x1c\x32\x4a\ \x1f\x36\x4e\x27\x3e\x55\x2c\x44\x5b\x31\x4a\x63\x36\x50\x6e\x40\ \x60\x82\x44\x68\x8d\x40\x64\x8b\x3c\x61\x8b\x3a\x5f\x89\x38\x5e\ \x88\x33\x58\x81\x2b\x4c\x71\x24\x40\x5d\x1e\x34\x4b\x1a\x2d\x43\ \x1f\x31\x4a\x1d\x33\x4c\x21\x38\x52\x24\x3b\x58\x25\x3e\x5d\x27\ \x42\x61\x25\x41\x61\x21\x3c\x5b\x20\x39\x55\x1d\x34\x4d\x1b\x2e\ \x49\x1b\x2d\x45\x15\x26\x38\x11\x20\x2f\x10\x1f\x2c\x13\x22\x31\ \x15\x23\x36\x18\x27\x39\x1a\x29\x3b\x1a\x29\x3e\x1b\x2b\x45\x1b\ \x2e\x46\x1d\x31\x49\x1f\x31\x4a\x20\x31\x4a\x20\x34\x47\x20\x34\ \x46\x25\x3a\x4e\x28\x3f\x56\x2f\x48\x61\x33\x4c\x66\x35\x51\x69\ \x39\x57\x6e\x3b\x5a\x71\x3e\x5c\x76\x3f\x5d\x75\x40\x5c\x74\x41\ \x5d\x75\x40\x5c\x75\x40\x5b\x75\x3f\x5a\x75\x41\x5c\x77\x00\x00\ \x00\x4f\x92\xd1\x4f\x91\xd3\x51\x91\xd3\x55\x95\xd6\x56\x99\xda\ \x58\x9d\xdc\x5b\x9e\xdd\x5d\x9c\xdc\x5b\x99\xd9\x58\x96\xd6\x54\ \x94\xd5\x50\x91\xd5\x4e\x8f\xd4\x4a\x88\xcf\x49\x82\xc9\x42\x79\ \xbb\x3e\x74\xb3\x46\x7b\xb8\x51\x85\xbb\x51\x81\xb4\x4d\x7b\xab\ \x47\x74\xa4\x46\x73\xa6\x4a\x7b\xb3\x4f\x85\xbf\x50\x87\xc7\x4b\ \x87\xc9\x4a\x88\xc8\x49\x88\xc8\x49\x88\xc7\x48\x85\xc3\x49\x81\ \xbc\x46\x78\xad\x38\x62\x91\x29\x48\x69\x16\x27\x38\x0b\x12\x1b\ \x08\x0a\x14\x0b\x0a\x15\x0b\x0c\x16\x09\x0b\x15\x0d\x0f\x1a\x0b\ \x0e\x19\x0a\x0f\x19\x0a\x0e\x19\x0b\x10\x1b\x0b\x13\x1c\x0c\x14\ \x1a\x0e\x14\x1b\x0f\x14\x1d\x11\x15\x1f\x10\x17\x1e\x11\x17\x1e\ \x14\x1a\x21\x12\x19\x1f\x14\x1a\x1f\x17\x1d\x22\x1a\x21\x24\x1c\ \x23\x26\x1d\x25\x28\x1f\x26\x29\x20\x27\x2a\x20\x28\x2b\x1f\x28\ \x2b\x1d\x26\x2a\x19\x1f\x24\x13\x17\x1c\x0d\x10\x18\x0b\x0d\x17\ \x08\x0f\x18\x07\x11\x1d\x0b\x1a\x2a\x0b\x1d\x32\x0d\x23\x3b\x10\ \x26\x44\x14\x29\x49\x13\x27\x4a\x17\x2b\x4e\x1a\x2f\x51\x1c\x34\ \x53\x1c\x36\x54\x23\x3d\x5b\x25\x3e\x5f\x28\x43\x62\x27\x44\x61\ \x26\x43\x61\x2a\x42\x5f\x2a\x40\x5b\x28\x40\x54\x2a\x40\x54\x2a\ \x41\x57\x30\x46\x5b\x4f\x58\x6b\x70\x70\x7e\x74\x75\x7f\x73\x70\ \x7c\x63\x64\x72\x34\x3e\x4e\x1e\x2d\x44\x16\x27\x42\x0f\x22\x3e\ \x15\x27\x42\x1a\x29\x43\x1a\x2c\x43\x1b\x30\x46\x1e\x35\x4b\x25\ \x3c\x52\x2d\x46\x5d\x32\x4a\x65\x36\x50\x6e\x3d\x5c\x7f\x3e\x63\ \x86\x3e\x62\x89\x39\x5e\x86\x34\x5a\x84\x33\x57\x81\x2e\x52\x7a\ \x28\x48\x6b\x1e\x39\x54\x1b\x30\x46\x15\x28\x3e\x1a\x2c\x45\x1c\ \x31\x4a\x1f\x36\x4f\x25\x3c\x58\x25\x3d\x5b\x26\x40\x61\x23\x3e\ \x60\x1e\x39\x5a\x1c\x35\x52\x1c\x32\x4d\x1d\x30\x4c\x1a\x2c\x43\ \x17\x27\x38\x11\x20\x2e\x0e\x1b\x29\x12\x1f\x2e\x15\x22\x32\x13\ \x21\x33\x14\x22\x34\x15\x24\x36\x16\x25\x3c\x17\x27\x3e\x1b\x2d\ \x44\x1d\x2f\x46\x1c\x2e\x45\x1e\x2f\x43\x1f\x33\x44\x26\x3a\x4e\ \x29\x3f\x56\x2e\x47\x5f\x30\x4b\x63\x34\x50\x68\x37\x55\x6c\x39\ \x58\x6f\x3a\x57\x72\x3c\x58\x72\x3c\x58\x70\x3d\x59\x72\x3d\x58\ \x72\x3f\x5a\x74\x3e\x59\x73\x3e\x59\x74\x00\x00\x00\x4f\x92\xd1\ \x50\x93\xd1\x4f\x91\xd1\x53\x93\xd3\x57\x97\xd7\x59\x9c\xdb\x5b\ \x9e\xde\x5e\xa0\xdf\x60\xa0\xdf\x5e\x9b\xdc\x5b\x9b\xdb\x56\x98\ \xd9\x50\x93\xd6\x4c\x8d\xd2\x49\x86\xcc\x44\x7d\xc2\x3f\x76\xb8\ \x44\x7a\xb6\x4f\x84\xba\x4e\x81\xb3\x48\x79\xa9\x42\x73\xa2\x44\ \x72\xa3\x49\x78\xad\x4f\x82\xbd\x4f\x85\xc4\x4c\x88\xc9\x4b\x89\ \xcb\x46\x88\xc9\x47\x88\xc8\x4a\x88\xc6\x4d\x85\xc1\x47\x7b\xb0\ \x3b\x67\x94\x2a\x49\x6d\x17\x28\x3c\x0a\x11\x1c\x09\x09\x14\x09\ \x09\x15\x09\x0b\x15\x0a\x0c\x16\x09\x0d\x18\x09\x0d\x19\x09\x0e\ \x18\x0a\x10\x18\x09\x0f\x19\x0c\x11\x1b\x0e\x13\x1b\x0d\x13\x1a\ \x10\x14\x1d\x10\x15\x1f\x11\x16\x1f\x11\x18\x1f\x11\x18\x1e\x14\ \x1a\x1f\x13\x1f\x21\x16\x20\x23\x16\x1f\x22\x1a\x23\x26\x1c\x25\ \x28\x1d\x25\x28\x21\x28\x2b\x21\x28\x2b\x20\x27\x2a\x20\x26\x2b\ \x1a\x1f\x25\x13\x17\x1c\x0d\x10\x18\x0a\x0f\x18\x06\x0f\x19\x09\ \x13\x20\x0b\x19\x2b\x0b\x1c\x35\x0c\x20\x3c\x0f\x23\x41\x12\x26\ \x45\x13\x27\x46\x14\x29\x48\x18\x2e\x4c\x19\x31\x4f\x20\x39\x57\ \x21\x3a\x5a\x24\x3f\x5d\x28\x44\x61\x29\x45\x63\x2a\x44\x62\x2b\ \x44\x61\x2a\x42\x5c\x2b\x41\x5a\x2d\x44\x5a\x2e\x44\x5d\x30\x45\ \x5e\x4c\x59\x6b\x6e\x71\x7d\x72\x74\x7e\x73\x74\x7c\x61\x61\x6e\ \x35\x3f\x50\x1c\x2c\x43\x15\x27\x40\x14\x27\x41\x15\x26\x40\x18\ \x29\x42\x1a\x2a\x45\x1b\x2e\x47\x21\x36\x4f\x25\x3d\x53\x2c\x45\ \x5c\x32\x4a\x64\x36\x50\x6e\x3d\x5b\x7e\x3e\x5f\x84\x39\x5e\x84\ \x33\x57\x81\x2c\x50\x7c\x2d\x4f\x77\x27\x4a\x6c\x23\x44\x61\x1c\ \x35\x50\x18\x2a\x41\x17\x28\x3e\x1a\x2c\x40\x1b\x30\x46\x1e\x35\ \x4e\x22\x38\x54\x27\x3d\x58\x25\x3d\x5b\x23\x3c\x5b\x1f\x37\x54\ \x20\x35\x51\x1c\x32\x4c\x1f\x32\x4c\x1a\x2b\x40\x16\x25\x36\x0f\ \x1c\x2b\x10\x1b\x29\x0f\x1b\x28\x13\x1f\x2f\x14\x20\x31\x10\x1d\ \x2c\x13\x22\x2f\x14\x22\x35\x14\x22\x37\x18\x26\x3c\x1d\x2d\x43\ \x1d\x2c\x41\x1f\x2c\x42\x20\x31\x47\x24\x38\x4e\x26\x3e\x52\x2d\ \x45\x5b\x31\x4a\x61\x34\x4e\x66\x35\x51\x69\x37\x53\x6b\x3a\x55\ \x6f\x3a\x54\x6e\x3d\x56\x70\x3c\x56\x71\x3c\x57\x73\x3a\x54\x72\ \x3c\x54\x70\x3c\x55\x70\x00\x00\x00\x4f\x92\xd1\x4f\x92\xd1\x51\ \x92\xd1\x56\x94\xd6\x57\x97\xd7\x59\x9b\xda\x5d\xa0\xdd\x61\xa3\ \xe0\x62\xa2\xdf\x62\xa1\xde\x5e\x9e\xdb\x59\x9b\xd9\x54\x97\xda\ \x4f\x90\xd5\x4b\x88\xce\x45\x7e\xc3\x3e\x74\xb7\x43\x77\xb4\x4e\ \x82\xbb\x50\x81\xb4\x45\x75\xa5\x44\x71\xa1\x41\x6f\x9f\x44\x73\ \xa8\x4d\x80\xba\x4e\x84\xc3\x4b\x86\xc6\x49\x87\xc8\x48\x89\xca\ \x48\x89\xc9\x4b\x88\xc6\x4c\x87\xc2\x4a\x80\xb5\x3c\x6a\x9a\x29\ \x4b\x72\x1a\x2b\x43\x0a\x11\x1c\x0a\x09\x14\x09\x09\x15\x09\x0b\ \x15\x0a\x0c\x16\x0a\x0c\x17\x0b\x0d\x18\x0b\x0e\x19\x0b\x10\x19\ \x0b\x11\x19\x0b\x12\x1b\x0d\x13\x1a\x0e\x14\x1b\x10\x16\x1d\x10\ \x14\x1d\x12\x17\x20\x13\x19\x20\x13\x19\x1f\x13\x19\x1e\x14\x1d\ \x1f\x17\x20\x22\x18\x20\x22\x1b\x23\x24\x1d\x25\x27\x1d\x26\x29\ \x20\x29\x2c\x21\x29\x2b\x20\x27\x29\x1e\x26\x27\x18\x20\x22\x14\ \x1a\x1d\x0e\x13\x19\x09\x0e\x19\x09\x11\x1f\x0b\x17\x28\x0b\x1b\ \x31\x0b\x1c\x38\x0d\x22\x40\x10\x24\x43\x0f\x23\x41\x10\x26\x42\ \x14\x2a\x47\x18\x2e\x4c\x1a\x33\x50\x1e\x37\x57\x20\x3b\x5a\x22\ \x3e\x5d\x25\x42\x60\x29\x45\x63\x2b\x46\x64\x2c\x45\x62\x2c\x45\ \x60\x2e\x44\x60\x2f\x44\x5f\x30\x48\x61\x33\x49\x61\x4e\x5d\x6d\ \x6e\x71\x7c\x73\x75\x7e\x74\x73\x7c\x63\x63\x6f\x3a\x43\x54\x20\ \x30\x47\x17\x29\x42\x12\x26\x40\x16\x29\x43\x1a\x2b\x45\x1c\x2e\ \x48\x20\x34\x4d\x26\x3c\x55\x29\x41\x59\x2e\x47\x60\x31\x4b\x66\ \x35\x50\x6d\x3a\x57\x79\x3b\x5b\x81\x34\x56\x7e\x2e\x50\x7a\x28\ \x49\x75\x29\x49\x70\x26\x45\x68\x1f\x3c\x5a\x19\x2f\x49\x13\x22\ \x39\x17\x26\x3c\x18\x29\x3f\x19\x2e\x44\x1c\x33\x4d\x21\x38\x54\ \x25\x3b\x58\x23\x3a\x56\x21\x39\x55\x1f\x35\x51\x1e\x33\x4d\x1e\ \x32\x4b\x1d\x2e\x48\x1a\x2b\x40\x14\x23\x34\x10\x1c\x2b\x10\x1b\ \x29\x10\x1b\x28\x12\x1d\x2d\x12\x1e\x2d\x0f\x1c\x29\x10\x1d\x29\ \x11\x1e\x2d\x12\x20\x31\x14\x22\x34\x18\x28\x39\x1b\x29\x3b\x1d\ \x2b\x3e\x21\x31\x43\x22\x36\x49\x28\x3e\x51\x2b\x44\x59\x30\x4a\ \x61\x33\x4e\x66\x33\x4f\x67\x35\x51\x6a\x37\x53\x6d\x38\x51\x6c\ \x39\x52\x6d\x37\x52\x6d\x38\x54\x6f\x39\x53\x71\x37\x52\x6d\x38\ \x53\x6e\x00\x00\x00\x52\x92\xd2\x53\x94\xd0\x52\x92\xcf\x55\x93\ \xd3\x59\x98\xd7\x58\x9a\xd8\x5c\x9f\xdc\x60\xa3\xe0\x61\xa2\xdf\ \x63\xa2\xdf\x5f\x9e\xdb\x5b\x9d\xd8\x56\x98\xd9\x50\x91\xd5\x4d\ \x8a\xcf\x46\x80\xc5\x3f\x75\xb7\x41\x74\xb3\x4d\x7f\xb8\x52\x81\ \xb4\x49\x77\xa6\x44\x70\x9e\x42\x6e\x9f\x43\x71\xa4\x4c\x7d\xb7\ \x4e\x84\xc3\x4c\x86\xc6\x4a\x87\xc7\x48\x87\xc8\x48\x88\xc6\x4a\ \x89\xc5\x4e\x88\xc3\x48\x80\xb3\x3c\x6b\x9c\x2e\x50\x79\x18\x2a\ \x45\x0b\x12\x1d\x09\x08\x13\x0a\x0a\x16\x08\x0a\x15\x0b\x0c\x16\ \x0b\x0c\x17\x0c\x0e\x19\x0b\x0e\x19\x0c\x10\x1b\x0b\x10\x1b\x0b\ \x12\x1b\x0b\x14\x1a\x0e\x15\x1c\x10\x16\x1d\x10\x15\x1e\x10\x16\ \x1f\x11\x18\x1f\x13\x19\x20\x14\x1b\x20\x14\x1d\x20\x18\x21\x24\ \x1b\x22\x25\x1b\x22\x25\x1e\x26\x29\x1a\x26\x28\x1e\x27\x2a\x1f\ \x29\x2b\x1f\x29\x29\x1d\x27\x27\x18\x20\x21\x13\x1a\x1e\x10\x16\ \x1e\x0a\x12\x1e\x0a\x13\x23\x0c\x1a\x2d\x0d\x1f\x39\x0e\x21\x40\ \x11\x26\x45\x12\x26\x45\x12\x28\x45\x13\x2a\x44\x19\x2e\x4c\x1a\ \x32\x4f\x19\x34\x50\x1f\x39\x59\x24\x40\x61\x24\x41\x60\x28\x45\ \x64\x2c\x4a\x67\x2c\x49\x67\x2d\x49\x67\x30\x4a\x69\x2f\x49\x67\ \x30\x48\x65\x32\x4b\x67\x37\x4e\x67\x52\x61\x72\x6f\x72\x7e\x73\ \x76\x7e\x72\x71\x77\x65\x64\x6f\x38\x40\x4f\x1f\x2e\x43\x17\x28\ \x40\x12\x24\x3e\x16\x29\x43\x1b\x2d\x47\x20\x34\x4d\x23\x38\x51\ \x28\x3e\x57\x2d\x43\x5c\x30\x48\x61\x32\x4c\x66\x31\x4c\x68\x37\ \x54\x74\x34\x53\x76\x31\x51\x78\x29\x49\x72\x24\x43\x6b\x22\x40\ \x64\x22\x3d\x5e\x1e\x37\x53\x16\x28\x3e\x13\x21\x34\x12\x21\x32\ \x17\x27\x3b\x17\x28\x40\x1c\x30\x4a\x1d\x33\x4f\x22\x37\x53\x21\ \x37\x52\x1f\x35\x4e\x1c\x32\x4b\x1c\x30\x49\x1d\x31\x4a\x1a\x2c\ \x43\x1a\x2a\x3d\x15\x23\x34\x10\x1d\x2b\x0e\x17\x25\x11\x1d\x2a\ \x10\x1b\x29\x10\x1b\x29\x10\x1c\x28\x0d\x19\x23\x10\x1c\x26\x11\ \x1e\x2b\x13\x21\x2f\x13\x24\x30\x1a\x28\x37\x1c\x2b\x3b\x21\x31\ \x42\x24\x38\x49\x28\x3d\x4f\x29\x43\x57\x2d\x48\x5e\x2f\x4b\x63\ \x31\x4d\x65\x31\x50\x67\x32\x4e\x68\x34\x4f\x69\x37\x4f\x6b\x34\ \x4f\x6a\x34\x51\x6d\x35\x50\x6e\x37\x52\x6d\x36\x52\x6d\x00\x00\ \x00\x52\x93\xd0\x54\x95\xd2\x53\x93\xd0\x56\x95\xd1\x59\x98\xd5\ \x58\x99\xd7\x5b\x9d\xdc\x5d\xa0\xdf\x60\xa2\xe1\x62\xa1\xdf\x5f\ \x9e\xdb\x5b\x9c\xd9\x56\x98\xd8\x4f\x91\xd3\x4b\x8b\xcf\x46\x81\ \xc6\x41\x75\xb8\x40\x73\xb2\x49\x7a\xb5\x4e\x7d\xb1\x45\x70\xa0\ \x41\x6b\x9a\x41\x6b\x9b\x43\x6f\xa3\x49\x7a\xb4\x4e\x85\xc2\x4c\ \x87\xc6\x4c\x88\xc9\x47\x87\xc7\x49\x87\xc6\x4b\x89\xc5\x4f\x89\ \xc4\x4b\x80\xb5\x3f\x6d\x9e\x2d\x50\x76\x19\x2a\x44\x08\x11\x1c\ \x08\x08\x14\x08\x09\x14\x07\x0c\x15\x0a\x0c\x16\x09\x0d\x16\x0c\ \x0f\x19\x0b\x0f\x1a\x0a\x0f\x19\x0b\x11\x1d\x0b\x11\x1c\x0c\x12\ \x1b\x0d\x14\x1d\x0e\x14\x1e\x0d\x13\x1d\x0f\x16\x1f\x11\x19\x20\ \x13\x1b\x21\x15\x1e\x22\x13\x1d\x21\x17\x20\x24\x1b\x24\x27\x1b\ \x24\x28\x1d\x26\x2a\x1c\x26\x2d\x1e\x29\x2d\x1f\x29\x2d\x1e\x27\ \x2a\x1e\x27\x2a\x1a\x22\x27\x16\x1d\x22\x0d\x15\x1d\x0c\x14\x21\ \x0b\x17\x28\x0f\x1f\x34\x0d\x22\x3d\x0f\x24\x43\x0f\x24\x43\x13\ \x28\x48\x13\x29\x47\x16\x2c\x47\x19\x2f\x4d\x1b\x32\x53\x1b\x38\ \x54\x21\x3d\x5c\x24\x40\x62\x26\x43\x65\x2a\x48\x68\x2c\x49\x68\ \x2d\x4b\x68\x30\x4e\x6b\x2e\x4b\x69\x30\x4c\x6b\x34\x4e\x6b\x33\ \x4d\x6a\x37\x4f\x6b\x53\x63\x77\x73\x76\x83\x75\x77\x80\x75\x73\ \x78\x64\x63\x6b\x36\x3d\x49\x1a\x27\x3a\x17\x27\x3a\x17\x27\x3e\ \x16\x26\x3e\x1d\x30\x46\x22\x38\x4f\x25\x3b\x55\x28\x3e\x57\x2e\ \x44\x5d\x2e\x46\x5e\x30\x48\x5f\x2f\x48\x5f\x31\x4c\x67\x31\x4e\ \x6e\x2f\x4c\x71\x29\x46\x6c\x21\x3f\x62\x1f\x3b\x5b\x1d\x35\x53\ \x1d\x32\x4c\x13\x22\x35\x13\x20\x2d\x13\x21\x30\x13\x22\x33\x19\ \x27\x3e\x19\x2a\x43\x1c\x30\x49\x1e\x32\x4b\x1f\x34\x4a\x1b\x30\ \x47\x1b\x30\x46\x1b\x2e\x47\x1b\x2c\x46\x1b\x2c\x43\x19\x29\x3c\ \x12\x20\x30\x12\x1c\x2b\x0f\x18\x26\x11\x1c\x2a\x0f\x18\x26\x0f\ \x19\x24\x0c\x16\x20\x0e\x18\x22\x0e\x18\x22\x0f\x1a\x25\x12\x1e\ \x2c\x13\x22\x2e\x17\x26\x34\x1a\x2a\x3a\x1e\x30\x41\x23\x38\x4a\ \x25\x3d\x50\x27\x41\x56\x2c\x46\x5d\x2e\x4a\x62\x2e\x4c\x63\x30\ \x4f\x66\x30\x4d\x68\x31\x4d\x68\x32\x4d\x68\x33\x4f\x6a\x32\x4e\ \x6c\x33\x4f\x6d\x35\x50\x6b\x33\x4f\x6a\x00\x00\x00\x55\x95\xd1\ \x56\x96\xd3\x56\x95\xd2\x54\x93\xcf\x58\x97\xd4\x58\x99\xd8\x58\ \x9a\xda\x5b\x9d\xde\x60\xa2\xe1\x62\xa2\xe0\x60\x9f\xdc\x5e\x9d\ \xda\x56\x98\xd7\x4f\x91\xd4\x4a\x8c\xd0\x47\x83\xc7\x3f\x75\xb8\ \x3e\x72\xb2\x45\x76\xb1\x4a\x78\xae\x45\x6e\x9f\x3f\x67\x97\x3f\ \x69\x99\x42\x6e\xa2\x46\x79\xb2\x4e\x85\xc2\x4d\x86\xc5\x4a\x87\ \xc6\x4a\x88\xc8\x4c\x8a\xc7\x4e\x8b\xc7\x52\x8c\xc5\x4d\x82\xb6\ \x3d\x6c\x9c\x2c\x4f\x75\x1b\x2e\x46\x06\x10\x1b\x05\x0a\x14\x08\ \x0c\x15\x0b\x0f\x19\x0b\x10\x1b\x0c\x11\x1c\x0c\x11\x1c\x0c\x12\ \x1e\x0c\x13\x20\x0d\x15\x22\x0e\x17\x24\x0e\x17\x22\x0f\x18\x21\ \x11\x18\x23\x12\x1a\x24\x11\x1b\x24\x12\x1d\x25\x13\x1e\x26\x17\ \x21\x28\x18\x23\x28\x1b\x26\x2b\x1c\x28\x2d\x1f\x29\x2f\x22\x2d\ \x35\x21\x2d\x35\x20\x2b\x32\x23\x2e\x32\x21\x2b\x30\x1e\x28\x2d\ \x18\x21\x28\x14\x1b\x22\x0d\x15\x1f\x0b\x15\x22\x0c\x18\x28\x0c\ \x1c\x32\x0c\x21\x3c\x0d\x24\x41\x12\x26\x44\x13\x28\x47\x13\x28\ \x45\x16\x2c\x47\x19\x2f\x4d\x1b\x32\x52\x1c\x38\x54\x20\x3c\x5a\ \x24\x40\x61\x26\x41\x63\x29\x45\x65\x2a\x47\x66\x2c\x4a\x66\x2e\ \x4c\x69\x30\x4d\x6c\x2f\x4c\x6c\x33\x4e\x6a\x35\x52\x6e\x39\x51\ \x6e\x54\x64\x7a\x75\x77\x87\x77\x78\x82\x73\x71\x77\x61\x5f\x64\ \x32\x37\x3f\x15\x1f\x31\x16\x22\x38\x12\x23\x38\x15\x27\x3d\x1d\ \x31\x48\x20\x37\x4e\x27\x3d\x55\x28\x3e\x57\x2d\x43\x5c\x2d\x43\ \x5b\x2c\x42\x57\x2c\x42\x58\x2d\x46\x5e\x2c\x48\x64\x2d\x49\x6c\ \x27\x43\x66\x20\x3c\x5d\x1c\x35\x54\x18\x2e\x49\x16\x28\x3e\x10\ \x1e\x2e\x0f\x1b\x26\x11\x1e\x2b\x13\x20\x31\x15\x24\x37\x19\x29\ \x3d\x1a\x2b\x40\x1e\x30\x46\x1b\x2f\x45\x19\x2c\x43\x18\x2b\x41\ \x18\x29\x40\x1b\x2b\x43\x1b\x2a\x3e\x16\x25\x36\x13\x20\x31\x11\ \x1b\x2a\x0f\x19\x26\x10\x19\x25\x0f\x18\x23\x0d\x16\x1f\x0b\x14\ \x1d\x0c\x14\x1d\x0c\x14\x1e\x0e\x18\x21\x12\x1c\x28\x14\x20\x2b\ \x16\x25\x34\x1a\x2a\x3b\x1e\x31\x42\x20\x37\x49\x25\x3d\x51\x2a\ \x44\x59\x29\x46\x5c\x2c\x49\x5f\x2c\x4b\x62\x2c\x4a\x62\x2e\x4a\ \x64\x30\x4b\x66\x31\x4d\x67\x31\x4d\x6a\x32\x4e\x6c\x32\x4f\x6a\ \x33\x4f\x69\x32\x4f\x69\x00\x00\x00\x56\x95\xd1\x58\x97\xd3\x58\ \x97\xd3\x54\x93\xcf\x58\x97\xd4\x57\x99\xd8\x55\x99\xda\x58\x9d\ \xde\x5e\xa1\xe1\x5f\xa2\xdf\x5e\x9f\xdc\x5d\x9c\xd9\x57\x99\xd9\ \x4f\x92\xd3\x49\x8a\xce\x46\x83\xc7\x41\x79\xbc\x3c\x71\xb1\x3d\ \x70\xab\x47\x75\xab\x44\x6d\x9e\x40\x68\x95\x3f\x68\x97\x41\x70\ \xa1\x45\x79\xb1\x4d\x85\xc1\x4d\x89\xc7\x4d\x8a\xc8\x4d\x8a\xc8\ \x4d\x8b\xc7\x50\x8c\xc7\x50\x8b\xc2\x4d\x83\xb7\x3c\x6b\x9c\x2d\ \x50\x77\x17\x2d\x44\x09\x12\x1f\x03\x0b\x13\x08\x0f\x19\x0b\x13\ \x1e\x0c\x16\x23\x0b\x14\x22\x0d\x17\x25\x0e\x19\x27\x0e\x17\x27\ \x0e\x1a\x2a\x0e\x1c\x2d\x0e\x1b\x2a\x10\x1b\x28\x12\x1e\x2c\x13\ \x1f\x2c\x14\x21\x2f\x12\x20\x2d\x16\x24\x31\x1a\x25\x32\x1c\x29\ \x34\x22\x30\x39\x22\x31\x3a\x22\x32\x3c\x26\x35\x41\x24\x37\x41\ \x27\x36\x3e\x29\x35\x3c\x23\x2e\x35\x20\x2a\x32\x18\x20\x27\x14\ \x1b\x22\x0e\x16\x1e\x0b\x15\x1f\x09\x17\x26\x0d\x1d\x33\x0c\x1f\ \x3b\x0d\x22\x3d\x0f\x24\x41\x11\x27\x43\x12\x27\x43\x16\x2b\x47\ \x1b\x31\x4d\x19\x30\x50\x1b\x38\x54\x1e\x3a\x58\x22\x3e\x5c\x24\ \x3f\x60\x28\x42\x63\x2a\x46\x64\x2b\x48\x64\x2e\x4c\x67\x2d\x4b\ \x66\x2e\x4b\x66\x2f\x4d\x66\x31\x4e\x6a\x39\x52\x6e\x52\x62\x77\ \x77\x7a\x89\x7a\x79\x83\x76\x72\x78\x65\x63\x69\x33\x35\x3c\x17\ \x1f\x31\x14\x20\x36\x14\x24\x39\x15\x2a\x3d\x1c\x2f\x48\x1f\x35\ \x4e\x24\x3a\x53\x27\x3d\x55\x27\x3e\x54\x28\x3c\x52\x28\x3b\x50\ \x28\x3d\x52\x29\x3f\x58\x2a\x43\x5e\x28\x43\x62\x26\x42\x61\x1e\ \x37\x55\x1d\x33\x4e\x17\x2a\x44\x14\x22\x36\x0c\x18\x26\x0e\x19\ \x24\x0f\x1b\x28\x11\x1e\x2f\x12\x20\x32\x15\x24\x36\x18\x28\x3b\ \x18\x29\x3d\x19\x2a\x3f\x18\x28\x3d\x16\x26\x3b\x18\x25\x3b\x19\ \x27\x3d\x18\x26\x38\x15\x22\x34\x12\x1d\x2f\x0f\x1a\x27\x0f\x19\ \x23\x0d\x17\x1f\x0c\x14\x1d\x0b\x12\x1b\x0a\x10\x19\x08\x10\x1a\ \x0c\x12\x1d\x0f\x16\x1f\x11\x1a\x24\x13\x1f\x29\x15\x24\x31\x1c\ \x2b\x3b\x1e\x31\x42\x21\x38\x4b\x23\x3b\x51\x29\x42\x5a\x2a\x45\ \x5d\x29\x46\x5e\x2c\x4a\x62\x2d\x49\x64\x2f\x4a\x64\x2f\x4d\x66\ \x2f\x4d\x66\x30\x4d\x69\x32\x4e\x6c\x31\x4e\x69\x34\x52\x6b\x32\ \x50\x6a\x00\x00\x00\x55\x95\xd0\x58\x98\xd4\x5a\x99\xd5\x56\x95\ \xd1\x57\x96\xd3\x58\x97\xd6\x56\x99\xd9\x59\x9d\xde\x5c\xa0\xe0\ \x5f\xa2\xdf\x5d\x9f\xdc\x5c\x9c\xda\x58\x99\xd9\x4f\x92\xd3\x4b\ \x8c\xd0\x47\x84\xc8\x42\x7b\xbf\x3c\x72\xb3\x3a\x6d\xaa\x44\x72\ \xa9\x43\x6d\x9f\x3d\x64\x94\x3c\x67\x94\x3f\x6f\x9f\x44\x79\xae\ \x4b\x84\xbf\x4d\x8a\xc7\x4e\x8a\xc8\x4d\x8a\xc8\x50\x8c\xc9\x52\ \x8d\xc8\x50\x88\xc3\x4c\x80\xb6\x3c\x6a\x9c\x2a\x4d\x72\x17\x2c\ \x42\x09\x13\x1f\x05\x0e\x18\x0b\x14\x20\x0c\x1a\x2a\x0c\x1b\x2f\ \x0c\x1b\x2f\x0f\x1f\x33\x10\x20\x34\x10\x20\x35\x11\x21\x37\x0d\ \x1d\x33\x10\x21\x34\x13\x23\x34\x15\x24\x35\x13\x22\x36\x1a\x29\ \x3e\x15\x27\x39\x19\x2a\x3b\x1b\x2d\x3e\x22\x33\x43\x23\x36\x46\ \x29\x3e\x4c\x28\x3d\x4e\x28\x3d\x4e\x29\x41\x50\x2a\x3f\x4a\x28\ \x39\x43\x25\x34\x3d\x22\x2d\x37\x1b\x22\x2a\x13\x19\x1f\x0d\x14\ \x1b\x09\x13\x1b\x09\x15\x21\x0b\x19\x2e\x0d\x1e\x39\x0e\x22\x3e\ \x0f\x21\x3f\x0f\x23\x43\x11\x26\x43\x14\x29\x45\x19\x2e\x4d\x1a\ \x31\x51\x1e\x37\x55\x21\x3a\x5a\x23\x3c\x5c\x28\x41\x61\x28\x42\ \x63\x2a\x46\x65\x28\x46\x62\x2c\x4a\x64\x2d\x4b\x64\x2d\x4b\x64\ \x2e\x4a\x63\x30\x4c\x66\x37\x4f\x69\x53\x63\x76\x78\x7a\x88\x7e\ \x7b\x85\x7a\x75\x7a\x65\x61\x67\x37\x39\x40\x17\x1f\x2d\x15\x1f\ \x34\x13\x22\x36\x16\x27\x3c\x1c\x2c\x46\x1b\x2e\x45\x22\x34\x4b\ \x22\x36\x4b\x24\x37\x4d\x25\x38\x4d\x27\x39\x4f\x29\x3d\x54\x2a\ \x3e\x59\x27\x3d\x59\x26\x40\x5b\x23\x3e\x5a\x21\x3a\x55\x1c\x31\ \x4a\x16\x27\x3d\x10\x1d\x2f\x0b\x16\x24\x0e\x16\x22\x10\x1a\x28\ \x0f\x1c\x2b\x12\x1f\x31\x12\x1f\x31\x17\x25\x38\x16\x24\x37\x18\ \x25\x38\x19\x26\x3a\x16\x24\x37\x17\x26\x37\x15\x25\x36\x15\x22\ \x33\x14\x1f\x2e\x13\x1e\x2b\x10\x1a\x25\x0e\x17\x21\x0d\x15\x1e\ \x0c\x11\x1a\x0c\x0e\x18\x09\x0e\x17\x09\x0e\x18\x0b\x12\x1c\x0c\ \x13\x1c\x11\x1a\x23\x12\x1f\x2a\x16\x25\x31\x1a\x2b\x39\x20\x35\ \x45\x20\x37\x4c\x25\x3d\x55\x29\x42\x5c\x2a\x44\x5e\x29\x46\x5f\ \x2b\x48\x62\x2e\x4b\x66\x2e\x4b\x65\x2f\x4e\x67\x30\x4e\x68\x2f\ \x4d\x69\x31\x4f\x6c\x32\x4e\x6c\x33\x51\x6c\x33\x50\x6b\x00\x00\ \x00\x56\x97\xd2\x59\x98\xd4\x5a\x98\xd4\x57\x96\xd3\x54\x93\xd0\ \x57\x96\xd6\x57\x99\xd8\x58\x9b\xdb\x5c\xa0\xdf\x60\xa2\xdf\x5e\ \x9f\xdc\x5c\x9b\xdb\x58\x98\xd8\x51\x92\xd2\x4b\x8c\xd1\x49\x86\ \xcc\x42\x7b\xc1\x3c\x73\xb5\x3a\x6e\xac\x41\x6f\xa8\x3f\x6b\x9e\ \x38\x60\x90\x3a\x63\x8f\x41\x6f\x9e\x43\x78\xac\x4a\x82\xbc\x51\ \x89\xc6\x4f\x8a\xc7\x4e\x8a\xc8\x4e\x8a\xc7\x4d\x89\xc5\x4e\x85\ \xc2\x49\x7b\xb4\x39\x66\x99\x25\x48\x6d\x15\x2a\x40\x0b\x17\x23\ \x07\x10\x1d\x0c\x18\x25\x0e\x1c\x30\x0e\x20\x39\x10\x23\x3f\x10\ \x23\x3e\x11\x23\x3f\x11\x22\x3e\x0f\x20\x3c\x10\x22\x39\x11\x24\ \x39\x14\x27\x39\x16\x27\x3c\x15\x25\x3c\x18\x29\x3f\x19\x2b\x3d\ \x1c\x2f\x41\x1e\x32\x47\x21\x37\x49\x24\x3a\x4b\x2a\x42\x53\x2c\ \x45\x56\x2d\x46\x59\x30\x4a\x5b\x2c\x45\x53\x27\x3c\x47\x26\x37\ \x41\x23\x2f\x37\x19\x21\x29\x12\x18\x1e\x0c\x12\x19\x09\x12\x1a\ \x09\x14\x21\x0b\x19\x2e\x0d\x1f\x3a\x0c\x21\x3d\x11\x24\x43\x0f\ \x24\x43\x11\x25\x44\x15\x29\x48\x19\x2e\x4d\x1c\x32\x54\x20\x37\ \x57\x21\x39\x59\x27\x40\x60\x25\x40\x5f\x27\x42\x61\x29\x46\x65\ \x2b\x49\x67\x2b\x49\x64\x2d\x4a\x63\x2d\x49\x63\x2e\x48\x62\x2f\ \x4a\x63\x34\x4d\x65\x54\x63\x74\x7a\x7d\x89\x7f\x7d\x86\x7c\x77\ \x7a\x68\x65\x68\x39\x3a\x3f\x19\x20\x2c\x15\x1f\x31\x14\x21\x34\ \x15\x23\x37\x18\x27\x3e\x1a\x29\x40\x1d\x2c\x42\x1e\x2e\x42\x21\ \x31\x43\x23\x34\x46\x26\x38\x4d\x28\x3c\x53\x28\x3c\x56\x28\x3c\ \x57\x26\x3d\x57\x22\x3a\x54\x22\x38\x52\x1c\x2e\x45\x16\x25\x38\ \x10\x1c\x2a\x0c\x15\x21\x0e\x17\x21\x0d\x18\x22\x0d\x19\x26\x10\ \x1c\x2b\x11\x1d\x2c\x12\x1d\x2e\x15\x20\x32\x18\x22\x34\x17\x22\ \x33\x17\x24\x34\x16\x24\x32\x15\x25\x31\x15\x20\x2d\x13\x1c\x28\ \x0f\x19\x22\x0f\x18\x21\x0d\x16\x1f\x0e\x14\x1d\x0d\x11\x1a\x0b\ \x0d\x17\x0a\x0c\x16\x09\x0e\x17\x0c\x11\x1a\x0e\x15\x1e\x10\x19\ \x22\x12\x20\x2c\x16\x26\x34\x1c\x2d\x3d\x1f\x33\x44\x24\x3b\x50\ \x26\x3e\x57\x28\x41\x5b\x2a\x44\x5e\x2a\x47\x5f\x2a\x48\x62\x2c\ \x49\x64\x2e\x4b\x66\x2e\x4c\x66\x2f\x4e\x67\x2f\x4d\x68\x30\x4e\ \x6a\x31\x4e\x6a\x33\x50\x6b\x33\x50\x6c\x00\x00\x00\x56\x96\xd1\ \x58\x96\xd2\x59\x97\xd3\x55\x95\xd2\x51\x90\xcd\x56\x94\xd2\x57\ \x96\xd6\x5a\x99\xd9\x5d\x9d\xdc\x61\xa2\xdf\x5f\x9e\xdc\x5c\x99\ \xd9\x58\x97\xd6\x51\x92\xd3\x4c\x8d\xd1\x4a\x88\xcd\x44\x7d\xc3\ \x3d\x74\xb7\x39\x6d\xac\x41\x71\xaa\x43\x6e\xa2\x39\x61\x93\x3a\ \x60\x90\x3e\x69\x99\x41\x72\xa6\x49\x7d\xb9\x4f\x85\xc3\x4e\x88\ \xc5\x4d\x88\xc6\x4b\x86\xc4\x47\x83\xc0\x48\x80\xbb\x43\x75\xad\ \x32\x5f\x92\x20\x42\x6a\x15\x28\x40\x0c\x18\x24\x08\x12\x1e\x0b\ \x18\x25\x0e\x1d\x30\x0e\x21\x37\x10\x25\x3a\x0f\x21\x39\x12\x23\ \x3c\x14\x25\x3e\x13\x24\x3d\x0f\x21\x37\x11\x22\x36\x14\x25\x38\ \x14\x25\x38\x15\x25\x3b\x1a\x29\x3d\x19\x2a\x3a\x1a\x2d\x3d\x1d\ \x33\x43\x1f\x34\x44\x27\x3f\x4d\x28\x41\x4f\x2a\x44\x54\x2c\x48\ \x58\x2e\x48\x59\x2d\x46\x53\x28\x3d\x45\x26\x36\x3d\x21\x2c\x32\ \x17\x1f\x23\x11\x17\x1c\x0f\x13\x1b\x08\x0e\x19\x0a\x15\x23\x0e\ \x1c\x34\x0e\x1f\x3d\x0e\x23\x42\x12\x27\x48\x14\x29\x49\x15\x28\ \x48\x18\x2b\x4b\x1a\x2e\x4f\x1c\x32\x55\x1f\x37\x59\x21\x3a\x5b\ \x25\x41\x60\x26\x42\x61\x27\x44\x62\x2b\x48\x67\x2c\x49\x69\x2e\ \x4b\x6a\x2e\x49\x67\x31\x4b\x68\x30\x48\x63\x31\x49\x64\x38\x4e\ \x67\x53\x61\x73\x7a\x7d\x88\x7f\x7e\x85\x7e\x79\x7c\x6b\x69\x6a\ \x38\x3a\x3e\x17\x1e\x2c\x14\x1c\x2e\x11\x1c\x2f\x11\x1f\x31\x13\ \x20\x37\x16\x24\x3a\x17\x26\x39\x1b\x2a\x3c\x1d\x2d\x3e\x22\x32\ \x43\x21\x33\x46\x27\x3b\x52\x29\x3d\x56\x29\x3a\x54\x24\x3a\x54\ \x22\x38\x52\x21\x35\x4f\x1b\x2c\x42\x15\x23\x35\x0e\x1a\x26\x0c\ \x15\x1f\x0c\x15\x1f\x0d\x17\x21\x0d\x19\x23\x10\x1c\x26\x11\x1d\ \x29\x10\x1b\x29\x12\x1d\x2a\x12\x1c\x2c\x13\x1e\x2e\x15\x20\x2e\ \x14\x20\x2c\x13\x1f\x29\x13\x1c\x27\x0e\x17\x21\x0e\x18\x1f\x0e\ \x17\x1f\x0f\x16\x1f\x0c\x14\x1b\x0c\x11\x19\x0b\x0f\x16\x09\x0e\ \x15\x0b\x11\x18\x0b\x11\x19\x11\x17\x1f\x12\x1b\x25\x13\x21\x2c\ \x1a\x2a\x39\x1f\x30\x41\x23\x37\x49\x23\x3b\x50\x27\x41\x58\x28\ \x42\x5a\x29\x45\x5c\x29\x46\x5e\x2a\x49\x60\x2a\x47\x61\x2e\x49\ \x64\x2e\x4b\x65\x2f\x4c\x65\x2f\x4d\x66\x2f\x4c\x67\x31\x4f\x69\ \x31\x4f\x68\x32\x4f\x6b\x00\x00\x00\x55\x96\xd3\x53\x95\xd0\x55\ \x96\xd1\x55\x95\xd2\x52\x91\xce\x54\x93\xd2\x54\x96\xd5\x56\x99\ \xda\x5a\x9b\xdc\x60\x9f\xdd\x5f\x9c\xda\x59\x97\xd4\x56\x94\xd4\ \x51\x91\xd3\x4d\x8e\xd3\x4a\x88\xcd\x44\x80\xc4\x3f\x76\xba\x3a\ \x6e\xad\x3f\x6f\xa8\x3f\x6c\xa1\x34\x5e\x91\x33\x5a\x8b\x39\x63\ \x94\x3f\x6e\xa2\x48\x77\xb4\x50\x84\xc2\x4c\x84\xc1\x4a\x83\xc0\ \x49\x81\xbf\x46\x7e\xbb\x41\x79\xb2\x3a\x6b\xa3\x2c\x59\x8b\x1e\ \x3f\x65\x15\x26\x40\x0b\x15\x22\x06\x10\x1b\x0a\x13\x21\x0f\x1c\ \x2b\x10\x1e\x31\x10\x21\x33\x0e\x1f\x33\x10\x1e\x34\x0f\x1d\x31\ \x11\x1e\x31\x11\x1e\x2f\x10\x1d\x2c\x10\x1e\x2b\x13\x22\x31\x14\ \x23\x34\x15\x25\x34\x14\x24\x32\x16\x27\x34\x1c\x2c\x39\x1e\x31\ \x3c\x20\x35\x40\x26\x3c\x47\x27\x3f\x4b\x29\x40\x4e\x2c\x41\x4f\ \x2c\x3f\x4a\x29\x3a\x41\x25\x33\x39\x1d\x28\x2b\x17\x1e\x22\x13\ \x17\x1e\x0c\x12\x1a\x09\x0f\x18\x0c\x17\x25\x0e\x1c\x34\x0e\x21\ \x3e\x10\x24\x45\x13\x28\x48\x13\x26\x4a\x13\x28\x48\x18\x2d\x4d\ \x19\x2e\x4e\x1a\x30\x50\x1d\x36\x59\x22\x3b\x5e\x25\x3f\x60\x2a\ \x45\x64\x29\x42\x62\x2c\x47\x66\x2e\x4a\x69\x2f\x4b\x69\x30\x4a\ \x69\x2f\x48\x66\x2f\x49\x64\x32\x4b\x65\x37\x4d\x66\x54\x61\x74\ \x7d\x7e\x8b\x82\x82\x89\x84\x7d\x7f\x6f\x69\x6b\x3a\x3b\x40\x19\ \x1f\x2c\x14\x1d\x2f\x10\x1b\x2e\x13\x1e\x32\x14\x1f\x33\x15\x23\ \x35\x19\x27\x39\x1c\x2a\x3d\x1e\x2c\x3e\x21\x31\x43\x22\x35\x48\ \x27\x3a\x50\x29\x3b\x52\x2a\x3b\x54\x27\x38\x4f\x23\x37\x50\x21\ \x34\x4c\x1a\x29\x3e\x13\x20\x31\x0e\x18\x23\x09\x13\x1c\x0a\x13\ \x1c\x0e\x18\x21\x0d\x17\x20\x0f\x18\x21\x10\x19\x22\x11\x1b\x25\ \x11\x19\x25\x12\x1a\x28\x13\x1b\x29\x13\x1c\x27\x14\x1d\x27\x13\ \x1c\x25\x12\x19\x22\x10\x16\x1f\x0e\x16\x1e\x10\x17\x20\x0d\x14\ \x1d\x0d\x14\x1b\x0c\x12\x18\x0b\x0e\x17\x09\x0e\x17\x0a\x11\x19\ \x0c\x14\x19\x10\x17\x1e\x15\x1e\x29\x16\x24\x30\x1c\x2c\x3b\x1e\ \x31\x42\x21\x36\x4b\x26\x3e\x54\x25\x42\x57\x26\x42\x57\x27\x44\ \x5a\x28\x44\x5d\x28\x44\x5d\x2a\x45\x60\x2d\x48\x63\x2d\x49\x63\ \x2c\x4a\x63\x2e\x4c\x65\x31\x4d\x67\x33\x4d\x67\x31\x4c\x66\x30\ \x4e\x67\x00\x00\x00\x54\x95\xd3\x51\x92\xce\x52\x93\xcf\x52\x93\ \xd0\x53\x92\xcf\x54\x93\xd2\x56\x97\xd6\x55\x98\xd9\x58\x99\xda\ \x5f\x9d\xdb\x5e\x9b\xd9\x5a\x97\xd4\x55\x94\xd4\x52\x92\xd6\x4d\ \x8f\xd3\x4a\x88\xce\x46\x81\xc7\x41\x77\xbb\x3c\x70\xb0\x3d\x6c\ \xa7\x3d\x6a\x9f\x31\x5b\x8e\x2f\x56\x87\x34\x5d\x8e\x3b\x68\x9b\ \x43\x75\xad\x4b\x81\xbb\x4c\x83\xbf\x47\x7f\xbd\x43\x7c\xba\x3e\ \x75\xb3\x3a\x70\xad\x33\x64\x9e\x26\x4f\x81\x1a\x39\x5c\x14\x22\ \x3a\x0a\x12\x1f\x06\x0d\x18\x0b\x12\x1d\x0c\x16\x21\x0d\x1a\x26\ \x0e\x1c\x28\x0d\x1a\x27\x10\x1b\x2a\x0d\x18\x25\x0e\x19\x26\x0e\ \x18\x26\x0d\x17\x23\x12\x1d\x28\x12\x1e\x2a\x12\x21\x2e\x11\x20\ \x2d\x14\x22\x2e\x13\x20\x2b\x17\x23\x2e\x1a\x26\x2f\x1f\x2d\x35\ \x21\x2f\x39\x26\x35\x40\x25\x35\x40\x25\x36\x40\x26\x35\x3f\x25\ \x33\x3a\x22\x2e\x32\x1a\x24\x29\x18\x1e\x23\x12\x16\x1d\x0d\x10\ \x1a\x0a\x0e\x18\x0c\x15\x23\x0b\x19\x2c\x0d\x1e\x39\x0f\x24\x41\ \x0f\x25\x42\x12\x26\x45\x13\x27\x47\x17\x2b\x4b\x16\x2b\x4a\x1a\ \x30\x4d\x1a\x31\x50\x20\x39\x58\x23\x3b\x5c\x27\x40\x60\x2a\x43\ \x64\x2c\x45\x65\x29\x44\x62\x2c\x47\x64\x2f\x48\x66\x2f\x48\x65\ \x2f\x48\x60\x32\x4c\x64\x37\x4e\x65\x55\x62\x74\x7f\x80\x8d\x86\ \x85\x8d\x86\x7e\x83\x75\x6d\x72\x3f\x40\x45\x1a\x1f\x2c\x15\x1d\ \x2e\x11\x1c\x2f\x12\x1d\x31\x15\x20\x33\x16\x24\x36\x18\x26\x38\ \x1b\x29\x3c\x1f\x2d\x40\x21\x31\x44\x25\x35\x49\x27\x38\x4d\x2f\ \x40\x55\x2b\x3b\x52\x28\x37\x4e\x25\x35\x4d\x21\x33\x4b\x1a\x2a\ \x3d\x13\x20\x30\x0d\x16\x22\x0a\x13\x1d\x0b\x14\x1d\x0b\x13\x1c\ \x0d\x14\x1e\x0e\x14\x1e\x0d\x13\x1e\x0f\x15\x1f\x0e\x14\x1e\x10\ \x16\x21\x10\x17\x23\x12\x1a\x25\x13\x1a\x24\x10\x17\x22\x10\x15\ \x1e\x10\x16\x1f\x0e\x15\x1e\x0e\x15\x1e\x0c\x14\x1c\x0c\x13\x1a\ \x0d\x12\x19\x0c\x10\x19\x0b\x10\x19\x0b\x13\x1a\x0e\x16\x1e\x12\ \x19\x23\x16\x1f\x2c\x1a\x26\x35\x1d\x2d\x3d\x1e\x30\x43\x23\x38\ \x4e\x24\x3c\x53\x24\x3f\x56\x26\x42\x5b\x28\x43\x5c\x27\x43\x5c\ \x27\x43\x5d\x28\x43\x5e\x2a\x45\x5f\x2d\x47\x62\x2d\x48\x63\x2d\ \x4a\x64\x2e\x4a\x64\x32\x4b\x65\x30\x4c\x64\x2f\x4c\x66\x00\x00\ \x00\x54\x97\xd4\x4d\x90\xce\x4f\x91\xcf\x51\x92\xcf\x51\x90\xcf\ \x52\x91\xd1\x56\x97\xd6\x55\x98\xd9\x57\x98\xd9\x5c\x9a\xda\x5d\ \x9a\xd8\x5a\x97\xd5\x56\x93\xd4\x53\x92\xd5\x4c\x8d\xd2\x4a\x88\ \xce\x47\x82\xc8\x41\x7a\xbd\x3e\x71\xb3\x3c\x6b\xa9\x38\x66\x9d\ \x2f\x5a\x8e\x2e\x52\x84\x30\x58\x88\x38\x63\x95\x3f\x70\xa5\x48\ \x7c\xb5\x4a\x7e\xb9\x45\x7b\xba\x3e\x73\xb3\x3a\x6f\xb0\x33\x66\ \xa4\x2b\x56\x91\x22\x45\x75\x16\x2f\x50\x13\x1f\x33\x09\x0f\x1c\ \x0a\x0e\x18\x0c\x11\x1a\x0b\x12\x1b\x0a\x13\x1c\x0b\x15\x1d\x0b\ \x14\x1c\x0c\x14\x1d\x0c\x13\x1c\x0b\x12\x1b\x0b\x14\x1d\x0d\x16\ \x1f\x10\x1a\x23\x13\x1f\x2a\x11\x1e\x2b\x13\x1f\x2c\x13\x1e\x28\ \x12\x1c\x25\x13\x1d\x23\x18\x20\x27\x19\x23\x29\x1d\x27\x2e\x1e\ \x29\x31\x23\x2e\x36\x21\x2f\x36\x23\x2f\x35\x22\x2d\x31\x1e\x29\ \x2d\x1c\x27\x2a\x16\x1e\x23\x11\x16\x1e\x0d\x10\x1a\x0b\x0e\x19\ \x0a\x13\x1f\x0c\x19\x28\x0c\x1d\x32\x0c\x1e\x37\x0f\x22\x3c\x11\ \x23\x40\x14\x26\x42\x14\x27\x44\x14\x29\x45\x18\x2c\x48\x19\x2f\ \x4a\x1d\x34\x50\x23\x3b\x59\x25\x3d\x5d\x27\x3f\x5f\x29\x41\x5f\ \x29\x44\x5f\x2b\x46\x61\x2d\x46\x63\x2c\x46\x61\x2f\x48\x5f\x2e\ \x49\x5e\x36\x4e\x63\x54\x62\x73\x82\x83\x91\x89\x86\x8f\x8b\x81\ \x88\x7b\x72\x78\x42\x41\x48\x1b\x20\x2d\x15\x1f\x2e\x12\x1d\x2f\ \x11\x1c\x30\x14\x1f\x32\x14\x22\x34\x19\x27\x39\x1a\x28\x3b\x1e\ \x2c\x3f\x20\x31\x44\x23\x34\x47\x27\x38\x4b\x31\x42\x56\x2c\x3d\ \x51\x29\x37\x4c\x25\x33\x48\x22\x2f\x45\x16\x25\x36\x10\x1c\x2b\ \x0d\x14\x20\x0a\x13\x1c\x0b\x13\x1c\x0b\x12\x1b\x0b\x12\x1c\x0c\ \x11\x1d\x0d\x13\x1e\x0c\x12\x1b\x0c\x13\x1c\x0f\x16\x1e\x0e\x15\ \x1e\x10\x17\x21\x10\x16\x21\x10\x16\x22\x10\x16\x1f\x0e\x15\x1e\ \x0e\x15\x1e\x10\x17\x20\x0d\x14\x1d\x0c\x14\x1b\x0d\x13\x1a\x0d\ \x11\x1a\x0c\x12\x1b\x0d\x14\x1d\x10\x18\x21\x13\x1b\x26\x18\x21\ \x30\x1b\x29\x3a\x1d\x2e\x40\x1e\x30\x44\x23\x37\x4d\x25\x3c\x53\ \x25\x3f\x57\x26\x3e\x59\x27\x3f\x5b\x27\x40\x5b\x29\x42\x5c\x29\ \x42\x5b\x2a\x44\x5c\x2a\x46\x5d\x2b\x46\x5e\x2c\x48\x60\x2e\x4a\ \x61\x2f\x4a\x61\x2f\x4b\x63\x2e\x4b\x63\x00\x00\x00\x53\x98\xd7\ \x4c\x90\xcf\x4d\x90\xcf\x50\x91\xd1\x50\x8f\xcf\x51\x8f\xcf\x56\ \x95\xd5\x56\x98\xdb\x55\x97\xd8\x5a\x98\xd8\x5a\x97\xd7\x59\x96\ \xd6\x56\x92\xd4\x51\x8f\xd3\x4b\x8b\xd1\x47\x87\xce\x45\x82\xc7\ \x43\x7c\xbe\x3d\x71\xb4\x3d\x6b\xaa\x3c\x69\xa2\x30\x5b\x90\x2c\ \x52\x83\x30\x54\x84\x36\x5c\x8e\x3c\x6a\x9f\x41\x72\xaa\x43\x75\ \xaf\x3f\x73\xb0\x3a\x6c\xaa\x32\x63\xa1\x2b\x59\x95\x24\x48\x7f\ \x1c\x38\x62\x0f\x25\x40\x0c\x16\x27\x09\x0e\x1a\x0b\x0f\x18\x0d\ \x10\x18\x0c\x12\x19\x0a\x10\x19\x0c\x12\x1b\x0d\x12\x1d\x0d\x11\ \x1c\x0e\x13\x1c\x0c\x12\x1b\x0c\x14\x1c\x0e\x15\x1e\x12\x1c\x25\ \x13\x20\x2c\x14\x21\x2f\x14\x20\x2d\x15\x1e\x28\x12\x1b\x22\x13\ \x1c\x20\x14\x1f\x23\x14\x21\x25\x17\x23\x27\x1a\x26\x2a\x1d\x2a\ \x2e\x20\x2b\x2f\x21\x2c\x30\x1f\x2a\x2e\x20\x29\x2d\x1d\x27\x2a\ \x17\x1f\x24\x11\x16\x1d\x0f\x11\x1b\x08\x0b\x17\x07\x10\x1a\x0b\ \x16\x23\x0d\x1a\x2b\x0c\x1b\x2f\x0d\x1d\x33\x10\x21\x3a\x11\x22\ \x3d\x14\x25\x3f\x13\x27\x40\x15\x2a\x43\x19\x2c\x46\x1d\x32\x4d\ \x22\x38\x53\x24\x3b\x57\x26\x3e\x5b\x28\x3f\x5d\x29\x3f\x5a\x2c\ \x43\x5d\x28\x40\x5c\x2a\x42\x5e\x2e\x47\x5e\x32\x4a\x60\x39\x4e\ \x63\x55\x63\x73\x86\x86\x94\x8e\x8b\x93\x92\x88\x8e\x81\x78\x7d\ \x48\x48\x4d\x1c\x21\x2d\x18\x21\x30\x11\x1d\x2e\x12\x1e\x30\x14\ \x1e\x30\x13\x20\x32\x17\x25\x37\x1a\x28\x3b\x1c\x2b\x3e\x20\x31\ \x44\x22\x33\x47\x24\x35\x48\x2a\x3b\x4e\x28\x39\x4c\x26\x35\x48\ \x22\x30\x41\x1f\x2c\x3b\x14\x20\x2d\x0e\x18\x25\x0d\x14\x1f\x0c\ \x13\x1c\x0c\x14\x1a\x0d\x12\x1b\x0b\x10\x19\x0c\x11\x1a\x0d\x12\ \x1b\x0d\x12\x1b\x0d\x12\x1b\x0f\x14\x1d\x0f\x15\x1e\x0e\x14\x1d\ \x10\x14\x1e\x10\x15\x20\x11\x16\x1f\x0e\x15\x1e\x0d\x14\x1d\x0e\ \x15\x1e\x0e\x15\x1e\x0c\x14\x1b\x0d\x14\x1b\x0e\x14\x1c\x0d\x14\ \x1d\x0f\x17\x20\x11\x1a\x24\x16\x20\x2b\x18\x24\x32\x1a\x2a\x39\ \x1e\x2f\x40\x1e\x30\x43\x21\x36\x48\x24\x3a\x50\x24\x3c\x54\x25\ \x3e\x57\x26\x3f\x5a\x26\x3f\x59\x26\x40\x58\x28\x42\x5a\x27\x41\ \x59\x28\x42\x5a\x2a\x44\x5c\x28\x42\x5a\x2b\x46\x5d\x2d\x48\x5d\ \x2d\x48\x5d\x2c\x48\x61\x00\x00\x00\x54\x99\xd8\x4c\x91\xd0\x4b\ \x8f\xcf\x50\x92\xd1\x51\x90\xd0\x52\x8f\xd0\x53\x92\xd3\x55\x97\ \xd8\x55\x96\xd7\x58\x96\xd6\x5a\x97\xd7\x59\x96\xd7\x56\x92\xd5\ \x52\x90\xd4\x4d\x8e\xd4\x48\x87\xce\x44\x81\xc7\x42\x7b\xbd\x3d\ \x71\xb4\x3b\x6a\xab\x3a\x67\xa2\x30\x5d\x92\x29\x51\x82\x2c\x50\ \x81\x33\x58\x8c\x38\x61\x99\x3b\x69\xa2\x3c\x6d\xa5\x36\x67\xa2\ \x32\x5f\x9c\x29\x54\x90\x22\x4a\x81\x1c\x39\x6b\x15\x2a\x51\x0b\ \x1c\x34\x0b\x14\x24\x07\x0d\x18\x0b\x10\x1a\x0c\x11\x1a\x0d\x11\ \x1b\x0c\x12\x1b\x0e\x13\x1b\x0d\x12\x1b\x0c\x12\x1c\x0c\x14\x1b\ \x0c\x12\x1a\x0e\x13\x1d\x0f\x16\x20\x12\x1c\x27\x12\x21\x2f\x13\ \x21\x32\x16\x22\x31\x14\x1f\x29\x11\x1b\x22\x12\x1b\x1e\x12\x1c\ \x20\x16\x20\x24\x1a\x24\x28\x1d\x25\x2a\x1f\x28\x2b\x20\x29\x2d\ \x21\x2b\x31\x21\x2b\x32\x20\x2a\x31\x1c\x27\x2c\x19\x21\x28\x10\ \x16\x1e\x0f\x11\x1c\x0b\x0d\x19\x09\x10\x1c\x0b\x14\x21\x0c\x17\ \x26\x0a\x18\x2b\x0e\x1c\x31\x0f\x1f\x35\x11\x22\x38\x11\x23\x3a\ \x16\x28\x40\x16\x28\x41\x1a\x2c\x47\x1d\x31\x4c\x20\x37\x50\x25\ \x3d\x55\x25\x3e\x59\x26\x3e\x5a\x27\x3d\x57\x28\x3e\x58\x26\x3e\ \x58\x28\x40\x5b\x2c\x44\x5c\x2f\x47\x5f\x36\x4c\x62\x59\x64\x76\ \x89\x89\x95\x92\x90\x97\x94\x8b\x8f\x85\x7c\x7f\x4c\x4c\x51\x1f\ \x24\x30\x17\x20\x30\x12\x1d\x2f\x11\x1d\x2f\x14\x1f\x31\x16\x23\ \x35\x1b\x28\x3a\x1a\x28\x3b\x1e\x2d\x40\x21\x31\x43\x23\x34\x45\ \x26\x37\x48\x2a\x3a\x4b\x29\x3a\x4b\x21\x32\x41\x1d\x2d\x39\x19\ \x25\x2f\x10\x19\x22\x0c\x14\x1d\x0e\x13\x1e\x0d\x13\x1c\x0d\x13\ \x1a\x0c\x11\x19\x0c\x11\x1a\x0d\x11\x19\x0b\x0e\x17\x0c\x0f\x19\ \x0d\x10\x1a\x0d\x11\x1a\x0e\x13\x1c\x0e\x13\x1c\x0f\x14\x1d\x0f\ \x14\x1d\x10\x15\x1e\x0e\x15\x1e\x10\x17\x20\x0e\x15\x1e\x0d\x14\ \x1d\x0c\x15\x1c\x0c\x14\x1b\x0f\x14\x1c\x0f\x16\x1f\x11\x1a\x23\ \x14\x1e\x26\x17\x21\x2b\x19\x26\x32\x19\x2a\x36\x1b\x2e\x3d\x1f\ \x32\x43\x23\x37\x48\x20\x38\x4a\x22\x3a\x50\x24\x3c\x53\x24\x3c\ \x53\x25\x3d\x54\x24\x3c\x54\x25\x3d\x55\x24\x3c\x53\x27\x40\x58\ \x26\x3f\x58\x28\x42\x5a\x29\x43\x5a\x2b\x45\x59\x2a\x45\x59\x2a\ \x45\x5d\x00\x00\x00\x56\x99\xda\x50\x93\xd2\x4f\x90\xcd\x53\x92\ \xcf\x54\x93\xcf\x53\x92\xcf\x54\x93\xcf\x55\x96\xd7\x55\x96\xd8\ \x57\x96\xd7\x59\x97\xd7\x5a\x98\xd8\x57\x95\xd3\x52\x91\xd4\x4a\ \x8d\xd2\x46\x86\xcd\x44\x81\xc6\x41\x7b\xc0\x40\x74\xb7\x3a\x6d\ \xac\x39\x67\xa3\x34\x5d\x94\x27\x4f\x83\x28\x4e\x7f\x2e\x54\x85\ \x36\x5e\x92\x39\x63\x99\x37\x65\x9b\x2f\x5d\x92\x28\x50\x85\x1f\ \x44\x7a\x1c\x38\x6a\x15\x2d\x53\x0e\x1f\x39\x0b\x16\x26\x0a\x10\ \x1e\x0c\x0f\x1c\x0c\x12\x1b\x0a\x12\x19\x0b\x13\x1b\x0a\x11\x1b\ \x0b\x11\x1d\x0c\x12\x1e\x0c\x11\x1b\x0d\x12\x1a\x0c\x13\x1b\x0b\ \x13\x1b\x0c\x14\x1b\x11\x1b\x24\x13\x20\x2b\x15\x21\x2e\x13\x1e\ \x2c\x12\x1c\x27\x0f\x18\x21\x10\x19\x1e\x14\x1b\x20\x16\x1f\x23\ \x18\x21\x25\x1b\x25\x29\x1d\x27\x2b\x1e\x27\x2a\x20\x2a\x2e\x1f\ \x2b\x2e\x1f\x2a\x2e\x1b\x26\x2a\x17\x1e\x25\x12\x17\x20\x0c\x11\ \x1b\x0a\x0f\x17\x07\x0f\x1a\x0a\x12\x1f\x0b\x16\x25\x0e\x1b\x2c\ \x0d\x1c\x2c\x11\x1f\x35\x13\x22\x38\x12\x23\x38\x16\x25\x3c\x18\ \x27\x41\x18\x2a\x45\x1f\x34\x4d\x22\x39\x51\x26\x3d\x58\x27\x3e\ \x5a\x27\x3d\x59\x28\x3e\x5a\x28\x3e\x5a\x28\x3e\x5a\x2a\x40\x5c\ \x2a\x42\x5b\x2d\x47\x5f\x35\x4b\x62\x55\x60\x70\x8c\x8c\x95\x9a\ \x95\x99\x9b\x93\x95\x89\x83\x86\x57\x54\x5b\x24\x2b\x37\x1d\x27\ \x39\x14\x22\x34\x16\x26\x38\x1e\x2d\x42\x21\x2f\x47\x22\x31\x4b\ \x24\x35\x4d\x27\x37\x4b\x29\x38\x4a\x2c\x3a\x4d\x2c\x3a\x4e\x2c\ \x3a\x50\x26\x35\x48\x21\x2f\x3f\x1c\x28\x35\x16\x1e\x26\x0e\x16\ \x1c\x0f\x15\x1a\x0c\x15\x1b\x0d\x13\x1b\x0d\x12\x1c\x0c\x12\x19\ \x0d\x11\x19\x0d\x0f\x17\x0c\x0f\x17\x0b\x0e\x16\x0b\x10\x17\x0b\ \x10\x18\x0c\x12\x1a\x0e\x14\x1b\x0d\x13\x19\x0d\x14\x1b\x0f\x15\ \x1e\x10\x17\x20\x0d\x16\x1f\x0e\x15\x1e\x0f\x15\x1e\x0d\x15\x1c\ \x0c\x14\x1b\x0e\x16\x1d\x11\x19\x20\x14\x1c\x25\x16\x1f\x2d\x18\ \x23\x2f\x19\x27\x34\x1d\x2c\x3b\x1f\x30\x41\x1c\x30\x41\x21\x35\ \x46\x23\x37\x49\x22\x36\x4a\x1f\x37\x4b\x1f\x39\x4b\x20\x39\x4a\ \x21\x38\x4d\x20\x37\x4d\x24\x3a\x54\x22\x3a\x52\x23\x3b\x52\x25\ \x3d\x54\x27\x40\x57\x25\x40\x54\x2a\x42\x58\x28\x42\x57\x00\x00\ \x00\x56\x9a\xda\x51\x93\xd4\x4e\x90\xcf\x50\x91\xce\x53\x93\xd0\ \x52\x91\xce\x52\x91\xce\x55\x94\xd6\x55\x95\xda\x57\x95\xd7\x5a\ \x98\xd7\x5c\x9b\xd7\x59\x97\xd4\x55\x94\xd4\x4e\x8f\xd4\x47\x87\ \xcd\x43\x7f\xc5\x41\x7b\xc1\x3f\x73\xb8\x3a\x6d\xad\x3a\x68\xa5\ \x37\x5f\x9a\x2b\x51\x87\x2a\x4f\x81\x2d\x52\x83\x31\x59\x8a\x33\ \x5c\x90\x34\x5e\x92\x2b\x54\x86\x23\x47\x76\x16\x32\x62\x15\x2c\ \x54\x0d\x1f\x3e\x0b\x18\x2d\x09\x12\x21\x0b\x11\x1e\x0c\x10\x1c\ \x0c\x12\x1d\x0a\x12\x1b\x09\x12\x1d\x0a\x12\x1e\x0c\x14\x1e\x0c\ \x14\x21\x0c\x14\x20\x0e\x17\x20\x0c\x14\x1d\x0f\x18\x21\x0c\x15\ \x1e\x10\x1a\x22\x0f\x1b\x24\x12\x1c\x26\x14\x1e\x29\x12\x1b\x28\ \x12\x1b\x25\x13\x1c\x24\x15\x1e\x26\x17\x21\x28\x17\x22\x29\x1c\ \x28\x2e\x1e\x2a\x30\x21\x2c\x33\x20\x2a\x31\x21\x2b\x32\x1f\x29\ \x30\x1d\x27\x2d\x17\x1f\x26\x11\x18\x20\x0d\x12\x1b\x0a\x0f\x18\ \x08\x10\x1a\x0b\x14\x20\x0d\x19\x26\x0c\x19\x29\x0e\x1d\x2d\x0f\ \x1d\x33\x13\x21\x38\x11\x22\x37\x16\x26\x3d\x18\x27\x41\x1b\x2d\ \x48\x1c\x31\x4a\x21\x37\x51\x25\x3c\x57\x27\x3e\x5a\x2a\x40\x5c\ \x28\x3e\x5a\x27\x3d\x59\x28\x3e\x5a\x2a\x40\x5c\x2a\x42\x5b\x2d\ \x46\x5e\x34\x4a\x61\x58\x64\x74\x91\x90\x98\x9f\x99\x9f\xa3\x9c\ \xa2\x95\x91\x9a\x6d\x6f\x7c\x43\x4d\x62\x3c\x48\x63\x39\x49\x62\ \x3c\x4d\x68\x3f\x4f\x6e\x3e\x4f\x71\x41\x54\x76\x43\x54\x73\x43\ \x55\x6e\x43\x53\x6b\x3e\x4e\x66\x3a\x49\x60\x38\x46\x5b\x2e\x3e\ \x4e\x22\x30\x3e\x1a\x26\x31\x12\x1b\x23\x0b\x12\x19\x0e\x14\x19\ \x0d\x15\x1c\x0d\x12\x1b\x0d\x11\x1b\x0c\x11\x1a\x0b\x11\x18\x0c\ \x0f\x17\x0c\x0f\x17\x0d\x10\x18\x0b\x0e\x16\x0d\x0f\x19\x0d\x0e\ \x18\x0c\x11\x16\x0b\x11\x16\x0c\x12\x19\x0e\x15\x1c\x0f\x17\x1e\ \x0e\x16\x1d\x0f\x17\x1e\x0f\x15\x1d\x0f\x16\x1e\x0d\x14\x1d\x10\ \x17\x20\x12\x1b\x24\x15\x1e\x28\x17\x21\x2e\x18\x24\x30\x18\x27\ \x33\x1c\x2c\x3b\x1e\x30\x3f\x1f\x31\x42\x20\x33\x44\x1f\x34\x46\ \x21\x34\x46\x1b\x33\x46\x1c\x34\x46\x1c\x33\x44\x1e\x33\x48\x1f\ \x34\x4a\x1e\x35\x4a\x1e\x36\x4a\x1f\x37\x4b\x22\x38\x50\x20\x38\ \x50\x22\x3b\x4f\x23\x3c\x51\x26\x3e\x54\x00\x00\x00\x58\x9d\xdd\ \x53\x97\xd8\x4d\x91\xd1\x4f\x90\xcd\x50\x91\xce\x4f\x8f\xce\x50\ \x8e\xcd\x51\x91\xd3\x53\x94\xd7\x57\x96\xd7\x59\x99\xd7\x5d\x9c\ \xd8\x5b\x9a\xd6\x58\x96\xd5\x4f\x8f\xd2\x49\x88\xce\x43\x81\xc7\ \x40\x7b\xc1\x40\x74\xb9\x3b\x6e\xb0\x39\x68\xa8\x38\x61\xa0\x2d\ \x53\x8e\x2b\x4e\x83\x2c\x50\x80\x2f\x54\x84\x2f\x55\x88\x31\x56\ \x89\x28\x4c\x7c\x1e\x3b\x67\x15\x2b\x52\x13\x23\x43\x0f\x1c\x36\ \x0f\x18\x2b\x0b\x14\x21\x0b\x13\x20\x0c\x13\x1f\x0d\x16\x23\x0a\ \x16\x25\x0c\x19\x2a\x0b\x19\x29\x0c\x19\x27\x0e\x1a\x2a\x0f\x1b\ \x2b\x0f\x1a\x2a\x0d\x19\x28\x10\x1b\x27\x0f\x1a\x24\x0f\x19\x22\ \x0f\x19\x23\x11\x1b\x24\x12\x1b\x26\x13\x1d\x2b\x14\x20\x2d\x15\ \x20\x2d\x17\x23\x2f\x19\x28\x33\x1c\x2b\x36\x1e\x2c\x38\x20\x30\ \x3b\x25\x33\x3d\x29\x36\x40\x29\x35\x3d\x21\x2e\x35\x1c\x27\x2e\ \x16\x1f\x26\x13\x19\x20\x0d\x11\x1a\x08\x0f\x18\x08\x10\x19\x0b\ \x15\x20\x0d\x19\x27\x0e\x1b\x2b\x0c\x1a\x2c\x12\x20\x37\x12\x20\ \x37\x13\x24\x39\x16\x26\x3d\x17\x27\x40\x19\x2b\x45\x1d\x31\x4c\ \x21\x37\x52\x24\x3b\x55\x27\x3f\x5a\x2a\x40\x5c\x29\x3f\x5b\x28\ \x3e\x5a\x28\x3e\x5a\x2a\x3f\x5c\x2e\x45\x5e\x2e\x47\x61\x36\x4c\ \x64\x58\x64\x75\x95\x94\x9d\xa7\xa1\xaa\xab\xa7\xb1\xa6\xa5\xb6\ \x89\x90\xa5\x66\x75\x94\x65\x75\x9a\x66\x78\x9b\x65\x78\x9c\x65\ \x77\xa0\x64\x77\xa2\x65\x7a\xa3\x66\x7a\xa0\x65\x76\x99\x5b\x6e\ \x8e\x53\x65\x83\x4b\x5c\x75\x3d\x4d\x60\x32\x42\x51\x26\x33\x40\ \x1e\x28\x32\x10\x19\x20\x0e\x17\x1b\x0e\x16\x1b\x0e\x14\x1c\x0f\ \x13\x1d\x10\x14\x1f\x0f\x11\x1c\x0f\x11\x1a\x0d\x10\x18\x0b\x0e\ \x16\x0c\x0f\x17\x0b\x0e\x16\x0b\x0d\x16\x0c\x0d\x16\x0b\x0f\x15\ \x0d\x11\x16\x0d\x11\x18\x0e\x13\x1b\x0f\x16\x1d\x10\x18\x1f\x0e\ \x16\x1d\x10\x15\x1d\x0d\x14\x1d\x0f\x16\x1f\x11\x1a\x23\x13\x1d\ \x26\x17\x21\x2a\x17\x22\x2e\x18\x25\x31\x1a\x28\x36\x1d\x2d\x3b\ \x1d\x2f\x3d\x1e\x30\x3f\x1f\x31\x41\x1f\x31\x42\x1c\x2e\x40\x1a\ \x2e\x42\x1a\x2e\x40\x1b\x2d\x3f\x19\x2c\x3e\x1c\x2e\x42\x1a\x2f\ \x40\x1c\x31\x42\x1c\x32\x43\x1d\x33\x48\x1f\x35\x4b\x1f\x38\x4c\ \x22\x39\x4d\x24\x3b\x50\x00\x00\x00\x59\x9e\xde\x54\x98\xd8\x4e\ \x92\xd1\x4d\x90\xcd\x4d\x8f\xcd\x4d\x8e\xce\x4d\x8b\xcc\x4f\x8d\ \xd0\x53\x94\xd5\x56\x97\xd6\x5a\x9a\xd7\x5f\x9e\xda\x5e\x9c\xd8\ \x59\x98\xd4\x52\x91\xd1\x4a\x8a\xcd\x40\x81\xc7\x3e\x7b\xc1\x3e\ \x75\xbb\x3a\x6f\xb3\x36\x6b\xad\x36\x62\xa4\x2d\x55\x92\x29\x4e\ \x85\x2d\x51\x83\x2e\x53\x83\x2f\x52\x86\x2f\x51\x86\x2a\x49\x7b\ \x21\x3a\x67\x16\x29\x4f\x14\x22\x3e\x0d\x18\x31\x10\x1a\x2c\x0e\ \x18\x26\x0b\x17\x24\x0c\x17\x25\x0e\x1b\x2c\x11\x20\x35\x0f\x21\ \x39\x0f\x21\x39\x0d\x1f\x36\x0f\x20\x38\x0f\x1f\x38\x12\x21\x37\ \x10\x21\x34\x10\x20\x32\x0f\x1d\x2b\x0f\x1b\x26\x10\x1c\x27\x11\ \x1c\x28\x14\x20\x2e\x17\x24\x34\x19\x28\x39\x18\x29\x39\x1a\x2b\ \x3b\x1d\x2d\x3e\x1f\x30\x41\x23\x37\x46\x24\x37\x47\x2a\x3e\x4d\ \x2c\x3e\x4b\x2b\x3c\x46\x27\x38\x40\x20\x2d\x34\x18\x21\x28\x10\ \x18\x1f\x0d\x14\x1c\x0a\x10\x19\x0b\x12\x1e\x0c\x14\x22\x0e\x19\ \x28\x0e\x1a\x2d\x10\x1e\x31\x0f\x1d\x34\x10\x1e\x35\x11\x22\x37\ \x15\x25\x3c\x19\x28\x42\x1a\x2c\x46\x1b\x2f\x4a\x22\x37\x53\x24\ \x3b\x56\x28\x3f\x5a\x28\x3e\x5a\x29\x3f\x5b\x29\x3f\x5b\x29\x3f\ \x5b\x2b\x41\x5e\x2f\x45\x60\x2f\x48\x62\x38\x4e\x66\x5a\x65\x77\ \x97\x98\xa3\xad\xaa\xb5\xb6\xb4\xc3\xb2\xb5\xcb\x9e\xa8\xc5\x84\ \x97\xbd\x85\x97\xc2\x85\x99\xc3\x88\x9c\xc4\x88\x99\xc6\x84\x99\ \xc7\x85\x9a\xc7\x84\x99\xc4\x7c\x90\xb8\x72\x83\xac\x67\x77\x9b\ \x57\x66\x82\x44\x53\x67\x36\x44\x55\x2a\x35\x41\x1c\x26\x2f\x13\ \x1b\x22\x11\x18\x1d\x11\x19\x1f\x12\x18\x1f\x0f\x14\x1c\x10\x14\ \x1c\x10\x12\x1b\x0e\x12\x19\x0d\x11\x16\x0d\x11\x15\x0c\x10\x14\ \x0a\x0e\x13\x0b\x0e\x15\x0c\x0e\x15\x0c\x0e\x13\x0c\x0f\x14\x0e\ \x11\x18\x0e\x13\x1a\x0f\x15\x1c\x0c\x14\x1b\x0f\x15\x1c\x10\x15\ \x1c\x0d\x13\x1c\x10\x18\x21\x12\x1c\x25\x15\x20\x28\x18\x24\x2c\ \x18\x25\x2f\x1a\x27\x34\x1b\x2b\x38\x1c\x2c\x39\x1e\x2e\x3d\x1f\ \x2f\x3f\x1e\x2f\x3e\x1d\x2f\x3e\x1a\x2d\x3c\x19\x2a\x3b\x19\x2b\ \x3b\x19\x29\x38\x19\x29\x38\x1a\x2a\x3a\x1a\x2c\x3c\x19\x2c\x3d\ \x1a\x2d\x40\x1c\x2e\x43\x1d\x30\x47\x1d\x33\x47\x21\x35\x4a\x23\ \x38\x4e\x00\x00\x00\x5b\x9f\xde\x56\x9b\xda\x4f\x95\xd1\x4e\x91\ \xce\x4c\x8d\xcc\x4c\x8c\xcc\x4c\x89\xcb\x4d\x8c\xcd\x51\x92\xd2\ \x54\x97\xd6\x5a\x9b\xd8\x60\x9d\xdb\x60\x9e\xd9\x5b\x99\xd5\x55\ \x92\xd3\x4c\x8b\xcf\x42\x83\xca\x3e\x7d\xc3\x3c\x76\xbc\x38\x71\ \xb6\x35\x6c\xaf\x35\x65\xa6\x2e\x56\x94\x27\x4e\x84\x2b\x4f\x82\ \x2c\x51\x83\x2c\x4f\x83\x2f\x51\x86\x28\x48\x7c\x21\x3a\x68\x17\ \x2b\x52\x13\x22\x40\x0d\x1a\x33\x0e\x1a\x2e\x0c\x19\x29\x0c\x19\ \x28\x0e\x1c\x2e\x0f\x1e\x33\x12\x23\x3e\x11\x27\x44\x13\x29\x46\ \x12\x27\x45\x15\x28\x48\x13\x27\x45\x10\x23\x3e\x14\x28\x40\x12\ \x24\x39\x12\x20\x32\x12\x1f\x2d\x13\x21\x2e\x16\x22\x31\x17\x23\ \x35\x1a\x29\x3b\x1b\x2e\x40\x1b\x32\x42\x1e\x32\x44\x21\x35\x47\ \x24\x38\x4a\x27\x3d\x4f\x2c\x43\x55\x30\x49\x59\x32\x49\x58\x30\ \x45\x50\x2c\x3f\x48\x22\x30\x37\x18\x21\x29\x12\x1b\x20\x0d\x15\ \x1c\x09\x11\x1a\x09\x10\x1d\x0c\x14\x24\x0f\x19\x2b\x10\x1b\x31\ \x0e\x1b\x33\x10\x1e\x35\x12\x21\x37\x12\x23\x38\x16\x26\x3d\x19\ \x29\x43\x18\x2b\x44\x1c\x30\x4b\x23\x38\x54\x25\x3b\x56\x27\x3e\ \x59\x2a\x40\x5c\x29\x3f\x5b\x29\x3f\x5b\x2c\x42\x5e\x2d\x43\x5f\ \x2d\x44\x5e\x32\x4b\x65\x3a\x50\x68\x5c\x67\x79\x9b\x9c\xaa\xb2\ \xb2\xc0\xbe\xbd\xcf\xbc\xbf\xd9\xb0\xb9\xd9\x9b\xaf\xd5\x9b\xae\ \xdb\x9b\xaf\xda\x9b\xad\xd9\x9e\xaf\xdd\x9b\xaf\xdc\x97\xab\xd9\ \x93\xa9\xd7\x8a\x9f\xcc\x83\x94\xbf\x74\x82\xa7\x5e\x6b\x88\x46\ \x53\x68\x34\x41\x52\x28\x32\x3e\x19\x22\x2b\x12\x1a\x20\x12\x1a\ \x1e\x11\x19\x1f\x13\x19\x1e\x10\x16\x1c\x12\x15\x1d\x11\x14\x1b\ \x0e\x13\x18\x0c\x12\x17\x0b\x0f\x14\x0c\x10\x15\x0b\x0e\x14\x0d\ \x0d\x16\x0c\x0d\x15\x0c\x0f\x13\x0c\x0f\x14\x0d\x10\x15\x0d\x10\ \x18\x0d\x13\x1a\x0b\x13\x1a\x0e\x15\x1c\x10\x14\x1c\x0f\x15\x1e\ \x10\x18\x21\x14\x1e\x27\x15\x21\x29\x17\x25\x2d\x17\x27\x30\x1d\ \x2a\x37\x1c\x2c\x39\x1f\x2f\x3b\x1e\x2e\x3c\x1f\x2f\x3f\x1c\x2c\ \x3c\x19\x29\x39\x18\x28\x38\x18\x28\x38\x16\x26\x34\x16\x26\x32\ \x16\x26\x32\x17\x27\x34\x16\x26\x38\x17\x29\x3a\x19\x2b\x3c\x1b\ \x2c\x3f\x1b\x2d\x42\x1c\x32\x44\x1f\x32\x47\x22\x36\x4b\x00\x00\ \x00\x5a\x9e\xda\x57\x9c\xdb\x52\x97\xd6\x4b\x90\xcf\x4c\x8d\xcd\ \x4f\x8d\xcd\x4b\x89\xc9\x4c\x89\xca\x50\x90\xd1\x57\x97\xd8\x5b\ \x9a\xd9\x60\x9e\xda\x60\x9f\xd9\x5d\x9b\xd7\x56\x92\xd2\x4d\x8c\ \xd0\x44\x85\xcd\x3f\x7e\xc7\x3c\x76\xbf\x3d\x73\xb9\x3a\x6d\xb2\ \x34\x65\xa7\x2f\x5a\x98\x29\x51\x87\x2a\x50\x80\x2b\x50\x80\x2c\ \x50\x83\x2c\x4f\x80\x28\x49\x7a\x22\x3c\x6b\x19\x2e\x54\x13\x24\ \x40\x0d\x1c\x34\x0f\x1b\x30\x0e\x1a\x2c\x0d\x1a\x2c\x12\x21\x36\ \x10\x22\x3c\x12\x27\x45\x14\x2b\x4e\x14\x2b\x50\x12\x2a\x4f\x16\ \x2c\x4f\x13\x28\x48\x12\x26\x43\x14\x27\x43\x16\x28\x3f\x11\x1f\ \x33\x11\x1d\x2f\x13\x1f\x2e\x14\x21\x31\x19\x27\x3a\x18\x2b\x3e\ \x1a\x30\x42\x1c\x33\x44\x1f\x36\x48\x22\x39\x4c\x24\x3b\x4f\x27\ \x40\x52\x2f\x4a\x59\x35\x50\x61\x35\x4e\x5f\x32\x48\x59\x2f\x42\ \x4e\x27\x34\x3c\x19\x23\x2a\x13\x1a\x20\x0f\x15\x1c\x0b\x12\x1b\ \x09\x12\x1c\x0e\x17\x26\x0d\x19\x2d\x0d\x1b\x32\x0f\x1d\x34\x11\ \x1f\x36\x12\x21\x37\x12\x24\x39\x13\x25\x3d\x16\x28\x43\x1a\x2d\ \x46\x1c\x32\x4c\x20\x37\x52\x25\x3b\x57\x28\x3d\x5b\x28\x3e\x5c\ \x27\x3f\x5b\x29\x42\x5d\x2c\x44\x5e\x2f\x46\x5f\x31\x49\x61\x32\ \x4c\x66\x3a\x50\x6a\x5a\x69\x7a\x9e\x9d\xaa\xb7\xb4\xc5\xc3\xc2\ \xd6\xc3\xc7\xe1\xb9\xc2\xe6\xa9\xb9\xe6\xab\xba\xe9\xa9\xb9\xe9\ \xa9\xb9\xe8\xa7\xb7\xe6\xa4\xb7\xe6\xa0\xb4\xe4\x9b\xaf\xdf\x92\ \xa5\xd4\x85\x96\xc4\x73\x83\xa8\x58\x65\x81\x3f\x49\x5f\x32\x3c\ \x4a\x22\x2c\x34\x15\x1e\x24\x13\x1c\x20\x13\x19\x1e\x14\x1a\x1f\ \x14\x1b\x20\x12\x18\x1d\x11\x17\x1c\x10\x17\x1c\x10\x15\x1a\x0f\ \x13\x18\x0e\x12\x17\x0f\x11\x19\x0c\x0e\x17\x0b\x0c\x15\x09\x0b\ \x13\x0b\x0d\x14\x0b\x0f\x13\x0b\x10\x13\x0c\x11\x15\x0d\x12\x17\ \x0c\x12\x19\x0e\x13\x1b\x0f\x15\x1c\x10\x17\x20\x11\x1a\x23\x14\ \x1e\x28\x16\x22\x2c\x18\x25\x2f\x19\x27\x34\x1b\x29\x37\x1b\x2b\ \x38\x1d\x2f\x3a\x1d\x2e\x3a\x1e\x2e\x3b\x19\x29\x37\x18\x28\x37\ \x15\x23\x34\x13\x22\x30\x12\x23\x2f\x13\x23\x2f\x13\x21\x2e\x15\ \x22\x31\x16\x25\x37\x16\x26\x37\x18\x28\x38\x18\x28\x39\x1a\x2b\ \x3d\x1c\x2e\x40\x1c\x30\x42\x1f\x33\x45\x00\x00\x00\x5a\x9e\xdb\ \x57\x9c\xdb\x54\x99\xd8\x4c\x91\xd0\x4b\x8c\xcc\x4d\x8b\xcb\x4b\ \x89\xc9\x4a\x88\xc9\x4c\x8c\xcd\x55\x94\xd5\x59\x9a\xd7\x5f\x9e\ \xda\x60\x9e\xda\x5d\x9b\xd7\x55\x94\xd2\x4d\x8c\xd1\x44\x85\xce\ \x40\x80\xca\x3d\x7a\xc1\x3e\x76\xbb\x3b\x6f\xb4\x38\x6a\xac\x31\ \x5e\x9b\x27\x50\x85\x28\x4e\x7e\x2b\x50\x81\x29\x4e\x82\x2a\x4e\ \x80\x2d\x4e\x7f\x24\x3e\x6f\x1b\x31\x59\x15\x26\x43\x11\x20\x39\ \x10\x1d\x32\x0e\x1a\x2d\x0d\x1a\x2d\x10\x1e\x34\x11\x23\x3c\x10\ \x25\x42\x14\x2b\x4d\x13\x2a\x4d\x10\x27\x45\x13\x29\x45\x11\x25\ \x40\x11\x21\x3b\x13\x24\x3d\x12\x22\x38\x10\x1d\x30\x11\x1e\x2c\ \x10\x1e\x29\x14\x1f\x2b\x14\x22\x31\x19\x29\x3a\x17\x28\x3b\x1b\ \x2e\x3f\x1c\x2e\x3e\x21\x33\x44\x23\x37\x48\x25\x39\x49\x2c\x43\ \x51\x32\x49\x5a\x33\x4a\x5a\x32\x46\x55\x2f\x41\x4d\x25\x33\x3b\ \x19\x23\x29\x15\x1c\x21\x10\x16\x1d\x0c\x13\x1c\x0c\x12\x1d\x0e\ \x16\x24\x0e\x1a\x2c\x11\x1e\x34\x13\x20\x35\x15\x23\x36\x14\x23\ \x36\x17\x25\x3c\x14\x23\x3d\x19\x27\x43\x18\x2b\x45\x1d\x32\x4d\ \x20\x36\x51\x23\x39\x55\x29\x3e\x5b\x28\x3e\x5c\x28\x40\x5c\x27\ \x40\x5b\x2c\x43\x5d\x2e\x44\x5e\x33\x4b\x63\x34\x4d\x67\x3b\x51\ \x6a\x5b\x68\x79\x9e\x9d\xab\xb7\xb3\xc7\xc4\xc2\xd8\xc4\xc8\xe3\ \xbb\xc2\xea\xad\xbc\xea\xab\xbb\xea\xaa\xba\xea\xa9\xb9\xe8\xa7\ \xb7\xe6\xa5\xb7\xe6\x9e\xb2\xe2\x99\xac\xdc\x8f\xa0\xcf\x7d\x8d\ \xbb\x64\x74\x98\x43\x4f\x68\x31\x39\x4b\x26\x2e\x38\x17\x21\x27\ \x12\x1c\x20\x12\x1b\x1f\x13\x1a\x20\x15\x1b\x22\x12\x1a\x1f\x13\ \x19\x1f\x12\x18\x1e\x13\x19\x1e\x11\x16\x1c\x11\x15\x1a\x0f\x12\ \x19\x0f\x11\x19\x0d\x0e\x17\x0c\x0d\x17\x0b\x0c\x16\x0a\x0b\x14\ \x0c\x0e\x16\x0b\x0e\x14\x0c\x10\x14\x0c\x10\x16\x0a\x10\x18\x0c\ \x12\x1a\x0d\x13\x1a\x0f\x16\x1f\x12\x1b\x24\x14\x1e\x27\x18\x24\ \x2e\x19\x25\x30\x1b\x28\x35\x1a\x28\x36\x1c\x2c\x39\x1b\x2c\x37\ \x1d\x2d\x3a\x1b\x2b\x38\x18\x27\x34\x15\x23\x2e\x15\x22\x2d\x11\ \x1e\x2b\x11\x1e\x2a\x12\x21\x2c\x12\x20\x2d\x14\x21\x2f\x13\x21\ \x32\x12\x21\x31\x14\x24\x34\x16\x26\x35\x19\x28\x3a\x19\x28\x3b\ \x1a\x2b\x3d\x1c\x2f\x41\x00\x00\x00\x5c\xa0\xdc\x58\x9c\xdc\x54\ \x99\xd9\x4b\x8f\xd0\x4c\x8c\xcc\x4e\x8c\xcc\x4c\x8a\xca\x48\x87\ \xc6\x4d\x8b\xcb\x53\x94\xd5\x59\x9a\xda\x5d\x9d\xd9\x5e\x9f\xdb\ \x5a\x9c\xd8\x56\x96\xd4\x4c\x8d\xd1\x47\x89\xd0\x43\x83\xcd\x3f\ \x7d\xc4\x3d\x78\xbd\x3b\x71\xb5\x39\x6c\xae\x33\x62\x9e\x29\x54\ \x89\x29\x51\x81\x2a\x4f\x81\x2d\x52\x85\x2a\x4f\x81\x2c\x50\x81\ \x27\x42\x75\x1a\x32\x5c\x14\x26\x47\x11\x21\x3c\x0f\x1d\x33\x0f\ \x1b\x2f\x0d\x19\x2b\x0e\x1c\x2f\x0e\x1e\x33\x0f\x22\x3c\x0e\x21\ \x3f\x11\x24\x41\x0e\x21\x39\x10\x22\x38\x10\x1e\x33\x12\x1f\x32\ \x10\x1c\x30\x0f\x1c\x2f\x10\x1d\x2c\x11\x1e\x29\x0f\x1b\x23\x12\ \x1c\x23\x12\x1d\x27\x14\x21\x2f\x17\x25\x34\x16\x23\x33\x19\x27\ \x32\x1b\x2a\x36\x1f\x2e\x3b\x20\x30\x3c\x25\x35\x41\x2b\x3d\x4a\ \x2e\x40\x4d\x30\x41\x4e\x2b\x3b\x44\x25\x31\x38\x1b\x25\x29\x14\ \x1a\x20\x10\x16\x1e\x0b\x11\x1b\x0b\x12\x1e\x0f\x18\x27\x0f\x1b\ \x2e\x11\x1f\x34\x15\x23\x39\x16\x26\x39\x15\x26\x3b\x17\x26\x40\ \x15\x25\x40\x18\x28\x45\x18\x2c\x47\x1e\x33\x4e\x21\x37\x52\x26\ \x3d\x59\x29\x40\x5c\x2a\x41\x5d\x28\x40\x5c\x2a\x42\x5e\x2c\x44\ \x5f\x30\x48\x62\x39\x51\x69\x3b\x53\x6d\x3e\x53\x6c\x5b\x67\x76\ \x9d\x9d\xa9\xb7\xb3\xc6\xc4\xc1\xda\xc4\xc7\xe6\xbb\xc1\xea\xad\ \xba\xe8\xaa\xb8\xe8\xa6\xb8\xe8\xa7\xb7\xe6\xa6\xb6\xe6\xa2\xb3\ \xe4\x9c\xae\xdf\x92\xa3\xd4\x89\x99\xc8\x72\x81\xac\x52\x5f\x7f\ \x32\x3d\x52\x28\x2f\x3e\x1d\x24\x2c\x14\x1d\x22\x13\x1c\x20\x12\ \x1b\x1f\x13\x1b\x22\x14\x1a\x22\x13\x1b\x22\x11\x19\x20\x14\x1b\ \x22\x12\x18\x1f\x12\x18\x1f\x0f\x15\x1c\x10\x13\x1b\x10\x13\x1b\ \x0f\x11\x1b\x0b\x0c\x16\x0b\x0c\x16\x0a\x0d\x15\x0b\x0d\x15\x0b\ \x0d\x15\x0b\x10\x14\x0b\x0f\x14\x0b\x0e\x17\x0d\x11\x1a\x0d\x13\ \x1a\x0f\x17\x1f\x12\x1b\x24\x16\x21\x2a\x18\x24\x2f\x18\x25\x31\ \x1b\x29\x35\x1b\x2b\x38\x1b\x2b\x38\x1b\x2b\x38\x1b\x2b\x37\x18\ \x27\x34\x17\x24\x30\x14\x22\x2b\x11\x1d\x25\x12\x1f\x29\x13\x1f\ \x29\x13\x20\x2a\x11\x1f\x2a\x13\x20\x2e\x12\x1f\x2e\x11\x20\x2e\ \x11\x20\x2e\x11\x1f\x30\x15\x22\x34\x17\x24\x36\x17\x27\x38\x1a\ \x2c\x3d\x00\x00\x00\x5d\x9f\xdc\x5a\x9d\xdd\x55\x9a\xd9\x4d\x91\ \xd2\x4b\x8c\xcc\x4c\x8b\xcb\x4b\x8a\xc8\x48\x87\xc6\x4c\x8a\xca\ \x50\x91\xd2\x57\x9a\xd9\x5b\x9b\xd8\x5a\x9c\xd9\x5b\x9c\xd9\x58\ \x98\xd7\x4e\x90\xd3\x45\x88\xcf\x41\x82\xcc\x41\x80\xc7\x3d\x7a\ \xbf\x3e\x75\xb9\x3b\x6e\xb1\x34\x65\xa3\x2b\x57\x8d\x28\x50\x80\ \x2a\x51\x80\x2b\x50\x81\x2a\x4f\x81\x2d\x4f\x84\x28\x45\x7a\x1d\ \x36\x62\x17\x2a\x4e\x11\x20\x40\x12\x1f\x38\x0d\x1b\x2e\x0c\x19\ \x28\x0e\x1b\x2b\x0d\x1a\x2b\x0e\x1d\x2f\x10\x1c\x31\x10\x1b\x2e\ \x0e\x1a\x2b\x0e\x19\x29\x0f\x19\x28\x0e\x17\x26\x0f\x18\x26\x0f\ \x19\x27\x0e\x18\x24\x0e\x18\x20\x0d\x17\x1e\x0f\x18\x1f\x10\x19\ \x21\x11\x1c\x26\x12\x1b\x26\x14\x1e\x27\x17\x22\x27\x16\x21\x28\ \x1c\x28\x2f\x1d\x2a\x30\x22\x2e\x35\x28\x35\x3d\x2b\x39\x42\x2b\ \x3a\x41\x27\x35\x3a\x21\x2c\x31\x1b\x26\x2a\x16\x1d\x22\x11\x17\ \x1f\x0d\x13\x1e\x0c\x14\x23\x0f\x1a\x2b\x0f\x1e\x32\x13\x22\x38\ \x1a\x2a\x41\x15\x2b\x42\x14\x29\x43\x17\x2b\x47\x19\x2d\x49\x1c\ \x31\x4d\x1d\x34\x50\x24\x3a\x56\x2c\x42\x5e\x2f\x49\x64\x2e\x4a\ \x64\x2d\x48\x63\x28\x45\x60\x2b\x47\x62\x30\x4b\x66\x38\x52\x6c\ \x45\x5d\x75\x47\x5f\x78\x4c\x61\x78\x62\x6c\x7a\x9d\x9d\xa7\xb5\ \xb1\xc5\xc2\xbf\xd8\xc4\xc6\xe5\xbc\xc3\xea\xac\xb9\xe7\xaa\xb9\ \xe8\xa6\xb7\xe7\xa4\xb6\xe5\xa4\xb5\xe5\x9f\xb0\xe1\x97\xa8\xd9\ \x8d\x9e\xce\x7c\x8c\xba\x64\x70\x9a\x40\x4b\x67\x2b\x33\x45\x21\ \x28\x36\x17\x1e\x27\x14\x1c\x23\x13\x1c\x20\x12\x1b\x1f\x13\x1c\ \x20\x13\x1b\x22\x12\x1a\x21\x13\x1b\x22\x13\x1b\x22\x11\x19\x20\ \x13\x18\x20\x10\x15\x1d\x10\x15\x1e\x11\x14\x1d\x0e\x11\x1a\x0c\ \x10\x17\x0b\x0e\x14\x0b\x0e\x14\x0b\x0d\x15\x0a\x0b\x14\x0b\x0e\ \x13\x0b\x0f\x14\x0b\x0f\x17\x0c\x0e\x18\x0d\x11\x19\x10\x18\x1f\ \x13\x1c\x24\x16\x20\x2a\x18\x24\x30\x1b\x28\x34\x19\x2a\x36\x1d\ \x2d\x3a\x1c\x2c\x39\x1a\x2a\x37\x1a\x2a\x36\x18\x27\x33\x16\x23\ \x2e\x14\x1f\x29\x13\x1d\x27\x14\x1e\x27\x13\x1f\x27\x11\x1e\x26\ \x11\x1e\x28\x10\x1d\x2a\x10\x1c\x2a\x10\x1e\x2b\x10\x1e\x2b\x0e\ \x1e\x2d\x10\x1f\x30\x14\x22\x33\x14\x22\x33\x17\x27\x37\x00\x00\ \x00\x5c\x9f\xdc\x57\x9d\xdd\x54\x9a\xda\x4e\x93\xd4\x48\x8b\xcb\ \x49\x88\xc8\x4a\x89\xc6\x49\x87\xc5\x4b\x89\xca\x4f\x92\xd1\x54\ \x98\xd7\x57\x9a\xd7\x59\x9c\xd8\x5a\x9c\xd9\x56\x98\xd6\x4f\x91\ \xd3\x49\x8b\xd1\x45\x87\xcf\x41\x81\xc8\x41\x7d\xc2\x3f\x77\xbb\ \x3b\x6f\xb2\x38\x69\xa8\x2f\x5d\x93\x2a\x53\x83\x28\x50\x80\x2d\ \x53\x85\x2b\x50\x82\x2d\x50\x84\x2a\x49\x7e\x20\x39\x67\x17\x2a\ \x50\x14\x23\x44\x10\x1e\x37\x0f\x1c\x2f\x0c\x19\x29\x0e\x18\x27\ \x0c\x17\x25\x0d\x16\x23\x0d\x15\x23\x0c\x14\x21\x0c\x14\x21\x0d\ \x13\x22\x0d\x13\x21\x0d\x14\x22\x0e\x14\x22\x0e\x14\x20\x0d\x14\ \x1e\x0d\x14\x1d\x0f\x16\x1e\x0f\x15\x1e\x0f\x16\x1f\x0f\x16\x1f\ \x0f\x17\x1f\x11\x17\x1f\x14\x1d\x1f\x14\x1e\x22\x16\x20\x24\x19\ \x23\x27\x1c\x26\x2a\x20\x2a\x30\x23\x2e\x33\x24\x30\x35\x22\x2e\ \x31\x1f\x2a\x2f\x1c\x26\x2b\x17\x1f\x24\x13\x1b\x23\x14\x1d\x29\ \x18\x24\x34\x20\x2e\x42\x25\x36\x4e\x2d\x41\x5a\x33\x47\x61\x33\ \x4c\x69\x37\x50\x6e\x3a\x52\x73\x3a\x53\x73\x3f\x57\x77\x40\x5a\ \x79\x48\x61\x7f\x4e\x68\x86\x4f\x6c\x89\x4f\x6c\x8a\x4c\x69\x87\ \x48\x65\x82\x43\x60\x7e\x44\x61\x7d\x50\x6a\x85\x56\x6e\x87\x56\ \x6f\x88\x59\x6d\x86\x67\x70\x80\x9d\x9d\xa7\xb6\xb2\xc2\xc0\xbe\ \xd4\xc1\xc3\xe1\xb8\xbf\xe4\xa6\xb3\xe2\xa3\xb2\xe4\xa2\xb2\xe3\ \xa3\xb4\xe3\xa1\xb2\xe3\x9b\xab\xde\x91\xa1\xd5\x83\x93\xc4\x6f\ \x7c\xaa\x52\x5b\x80\x33\x3a\x53\x24\x2c\x3b\x1c\x22\x2e\x13\x1b\ \x23\x13\x1a\x24\x13\x1a\x22\x11\x19\x1f\x13\x1b\x20\x13\x1c\x22\ \x13\x1c\x23\x12\x1a\x21\x12\x1a\x21\x13\x1a\x21\x13\x19\x20\x10\ \x16\x1e\x0f\x15\x1d\x11\x14\x1e\x0f\x11\x1a\x0d\x10\x17\x0c\x10\ \x15\x0c\x0f\x14\x0c\x0f\x14\x0c\x0e\x14\x0b\x0e\x12\x0b\x0e\x13\ \x0b\x0d\x16\x0c\x0e\x17\x0e\x13\x1a\x0f\x18\x1f\x13\x1c\x25\x18\ \x22\x2c\x19\x25\x32\x1a\x28\x34\x1b\x2a\x37\x1b\x2b\x39\x1f\x2e\ \x3c\x1d\x2d\x39\x1b\x2a\x36\x18\x25\x30\x17\x23\x2e\x13\x1e\x29\ \x14\x1d\x27\x13\x1d\x26\x13\x1e\x26\x13\x1e\x27\x12\x1d\x27\x0f\ \x1c\x28\x0e\x1d\x27\x10\x1e\x29\x0f\x1c\x29\x12\x1f\x2c\x0f\x1d\ \x2c\x11\x20\x2e\x12\x20\x2f\x15\x23\x32\x00\x00\x00\x59\x9d\xdb\ \x54\x9b\xdb\x52\x99\xd8\x4d\x93\xd4\x46\x8a\xcc\x46\x88\xc9\x49\ \x88\xc8\x47\x85\xc5\x47\x86\xc7\x4c\x8e\xcf\x52\x96\xd6\x54\x97\ \xd6\x59\x9b\xd7\x5b\x9d\xda\x58\x9a\xd8\x51\x92\xd6\x4d\x8e\xd4\ \x4a\x8a\xd1\x45\x84\xcb\x41\x7e\xc3\x3f\x77\xbb\x3c\x71\xb2\x38\ \x6c\xab\x30\x5e\x96\x2b\x54\x88\x2c\x52\x86\x2e\x53\x85\x2c\x51\ \x83\x2c\x51\x85\x27\x4c\x7d\x22\x3c\x6b\x19\x2e\x53\x12\x25\x44\ \x11\x1f\x38\x0d\x1b\x2f\x0d\x1b\x2d\x0d\x16\x24\x0d\x15\x23\x0b\ \x13\x21\x0c\x14\x21\x0c\x14\x21\x0a\x12\x1f\x0c\x13\x20\x0f\x15\ \x22\x0d\x13\x20\x0d\x13\x21\x0e\x14\x20\x0f\x16\x1f\x11\x16\x1f\ \x11\x16\x1f\x10\x14\x1f\x11\x16\x1f\x11\x15\x1f\x10\x16\x1d\x11\ \x17\x1e\x11\x19\x1f\x16\x1f\x22\x18\x21\x25\x1a\x23\x27\x1e\x27\ \x2b\x21\x2a\x2e\x22\x2b\x2f\x23\x2e\x32\x20\x2b\x2f\x21\x2c\x31\ \x1d\x27\x2e\x1c\x26\x2f\x22\x2f\x3b\x33\x43\x54\x3e\x50\x66\x4d\ \x63\x7d\x51\x6d\x88\x58\x73\x91\x5f\x79\x97\x64\x7e\xa0\x63\x7f\ \xa1\x66\x82\xa5\x66\x82\xa7\x6a\x84\xa9\x6c\x87\xab\x71\x8d\xb0\ \x77\x93\xb5\x79\x95\xb8\x79\x96\xb8\x73\x92\xb3\x71\x8d\xb1\x6e\ \x8a\xab\x6c\x8a\xa9\x6e\x8c\xa9\x6b\x87\xa2\x65\x7c\x98\x5d\x72\ \x8a\x68\x73\x82\x9e\x9e\xa8\xb5\xb2\xbe\xbf\xbb\xce\xbe\xbf\xda\ \xb1\xb7\xda\x99\xa7\xd3\x97\xa8\xda\x9a\xa9\xda\x9c\xac\xda\x98\ \xa9\xd8\x95\xa3\xd7\x8a\x9b\xcd\x7b\x89\xb9\x60\x6c\x94\x3f\x49\ \x65\x29\x31\x45\x1d\x23\x32\x14\x1a\x24\x14\x1b\x23\x11\x17\x22\ \x11\x18\x21\x10\x18\x1f\x13\x1a\x22\x11\x18\x21\x11\x19\x21\x11\ \x19\x20\x12\x1a\x21\x12\x19\x20\x11\x18\x1f\x10\x18\x1f\x11\x17\ \x1e\x11\x14\x1e\x0f\x10\x1b\x0e\x10\x18\x0e\x11\x16\x0d\x10\x14\ \x0c\x0e\x13\x0e\x0e\x15\x0b\x0f\x14\x0b\x0d\x13\x0a\x0b\x13\x0a\ \x0e\x15\x0c\x14\x1b\x0f\x19\x1f\x14\x1d\x27\x19\x22\x2f\x1c\x28\ \x34\x1b\x29\x36\x1d\x2a\x38\x1e\x2d\x3d\x1f\x2e\x3e\x1e\x2c\x39\ \x1a\x28\x34\x18\x25\x2f\x16\x21\x2a\x12\x1d\x25\x11\x1d\x26\x11\ \x1c\x25\x12\x1d\x25\x12\x1b\x25\x11\x1b\x25\x0f\x1b\x25\x0f\x1c\ \x25\x0f\x1b\x25\x0f\x1b\x26\x0f\x1b\x27\x11\x1b\x28\x11\x1d\x29\ \x12\x1d\x2b\x16\x21\x2f\x00\x00\x00\x59\x9e\xdc\x54\x9b\xda\x51\ \x98\xd7\x4e\x95\xd5\x48\x8c\xcf\x46\x88\xcb\x48\x88\xc8\x47\x85\ \xc6\x47\x85\xc6\x4b\x8c\xcd\x51\x93\xd4\x53\x96\xd6\x58\x99\xd7\ \x5c\x9d\xd9\x59\x9b\xd9\x54\x96\xd8\x4f\x90\xd5\x4b\x8b\xd2\x45\ \x85\xcc\x42\x7f\xc5\x3e\x78\xbd\x3b\x72\xb5\x39\x6c\xae\x33\x62\ \x9e\x29\x53\x89\x2a\x51\x86\x2d\x54\x86\x2d\x52\x84\x2c\x50\x84\ \x29\x4d\x7f\x23\x3e\x6d\x1a\x2f\x54\x13\x25\x44\x11\x20\x38\x0e\ \x1c\x30\x0e\x1a\x2b\x0f\x18\x26\x0a\x13\x21\x0b\x13\x21\x0a\x12\ \x1f\x0d\x15\x22\x0b\x14\x1e\x0b\x13\x1d\x0d\x13\x1e\x0c\x12\x1d\ \x0d\x14\x1f\x0e\x15\x20\x0d\x14\x1d\x0f\x15\x1e\x10\x15\x1e\x0f\ \x13\x1e\x11\x15\x1f\x10\x15\x1e\x11\x16\x1e\x13\x19\x20\x14\x1a\ \x20\x16\x1c\x21\x19\x1f\x24\x1b\x21\x26\x20\x27\x2b\x20\x2a\x2e\ \x23\x2d\x31\x23\x2e\x32\x23\x2e\x32\x22\x2d\x32\x22\x2d\x34\x29\ \x37\x44\x3f\x51\x64\x54\x6a\x82\x66\x7f\x9c\x72\x8e\xac\x78\x97\ \xb6\x7d\x9d\xbb\x83\xa2\xc1\x87\xa3\xc6\x88\xa4\xc8\x86\xa4\xc9\ \x89\xa5\xca\x8b\xa7\xcd\x8c\xa9\xce\x90\xad\xd1\x93\xb1\xd4\x93\ \xb1\xd5\x95\xb2\xd6\x94\xb1\xd5\x90\xae\xd1\x8c\xaa\xcd\x87\xa6\ \xc6\x88\xa5\xc5\x7f\x9b\xb8\x70\x8b\xa8\x66\x7a\x94\x6b\x76\x86\ \x9c\x9c\xa6\xb2\xaf\xba\xbc\xb6\xc8\xb8\xb7\xd1\xa7\xab\xcd\x8a\ \x96\xc2\x85\x95\xc6\x8b\x9a\xca\x8e\x9e\xcc\x8a\x9a\xca\x87\x96\ \xc6\x7e\x8e\xbe\x6c\x7b\xa5\x4f\x5b\x7e\x2c\x36\x4e\x21\x28\x3a\ \x16\x1c\x2a\x11\x17\x22\x11\x18\x21\x11\x17\x22\x0f\x16\x20\x10\ \x17\x1e\x11\x19\x21\x10\x17\x21\x0f\x18\x21\x0e\x16\x1e\x12\x1a\ \x21\x10\x18\x1f\x0f\x17\x1e\x0f\x16\x1d\x10\x16\x1d\x0f\x13\x1c\ \x0f\x11\x1b\x0e\x11\x19\x0e\x11\x16\x0c\x0f\x13\x0c\x0f\x14\x0d\ \x0f\x16\x0b\x0f\x14\x0a\x0d\x13\x0a\x0d\x15\x0b\x0e\x17\x0b\x12\ \x1b\x0e\x17\x20\x15\x1e\x29\x18\x22\x2f\x1a\x26\x31\x1c\x29\x36\ \x1d\x2a\x39\x1e\x2d\x3d\x1c\x2b\x3a\x1c\x2a\x36\x18\x26\x32\x15\ \x21\x2b\x14\x1f\x27\x12\x1d\x25\x12\x1d\x25\x12\x1d\x26\x13\x1d\ \x25\x12\x1b\x25\x11\x1c\x26\x0f\x1b\x25\x0f\x1c\x26\x0f\x1a\x25\ \x10\x1a\x25\x10\x1a\x24\x11\x1b\x25\x11\x1b\x25\x11\x1c\x27\x14\ \x1d\x2a\x00\x00\x00\x59\x9d\xdc\x55\x9c\xdb\x51\x98\xd8\x4e\x94\ \xd7\x48\x8d\xd0\x46\x88\xcb\x46\x88\xc8\x48\x86\xc7\x47\x84\xc6\ \x49\x88\xc9\x51\x92\xd3\x51\x93\xd5\x58\x99\xd9\x5c\x9c\xdc\x5b\ \x9b\xdc\x56\x98\xda\x52\x93\xd6\x4e\x8f\xd5\x46\x86\xcd\x40\x7f\ \xc6\x40\x7a\xc0\x3b\x73\xb8\x38\x6e\xb1\x33\x63\xa1\x2c\x58\x90\ \x2c\x54\x89\x2b\x54\x86\x2d\x53\x85\x2d\x51\x85\x2b\x4f\x82\x26\ \x42\x73\x1a\x30\x58\x13\x26\x48\x11\x20\x3a\x0f\x1d\x30\x0c\x1a\ \x2b\x0f\x18\x26\x0c\x14\x22\x0b\x13\x21\x0d\x15\x22\x0b\x13\x20\ \x0b\x14\x1f\x0c\x14\x1e\x0e\x14\x1e\x0f\x16\x1e\x0d\x15\x1e\x0f\ \x16\x20\x0f\x16\x1e\x0f\x16\x1e\x0f\x16\x1e\x10\x14\x1f\x0f\x14\ \x1e\x11\x16\x1f\x12\x18\x1f\x13\x19\x20\x13\x19\x20\x18\x1e\x23\ \x1a\x20\x25\x1e\x24\x29\x20\x27\x2a\x22\x2b\x2f\x24\x2e\x32\x23\ \x2e\x32\x23\x2e\x32\x22\x2d\x32\x27\x33\x3d\x3a\x4c\x5c\x56\x6d\ \x86\x6e\x88\xa7\x84\x9e\xc1\x90\xab\xcd\x97\xb3\xd4\x9b\xb7\xd6\ \x9e\xba\xda\x9d\xb9\xdd\x9e\xbb\xdf\x9c\xbc\xe0\x9c\xbb\xdf\xa0\ \xbd\xe2\xa2\xbf\xe3\xa4\xc3\xe5\xa7\xc7\xe8\xa8\xc6\xe8\xaa\xc7\ \xeb\xa7\xc4\xe9\xa6\xc4\xe7\xa2\xc0\xe3\x9d\xbb\xde\x95\xb3\xd6\ \x8d\xa9\xc9\x78\x94\xb3\x64\x79\x97\x6d\x76\x89\x9d\x9c\xa5\xb1\ \xab\xb5\xb8\xb1\xbe\xb5\xb1\xc5\x9c\x9e\xb8\x6b\x77\x9f\x66\x77\ \xa3\x6f\x7f\xab\x74\x84\xb0\x74\x84\xb4\x75\x83\xb1\x6c\x79\xa7\ \x5c\x68\x8f\x3b\x44\x63\x23\x2a\x3d\x19\x1e\x2d\x0f\x13\x1f\x0c\ \x11\x1c\x0e\x14\x1f\x0d\x14\x1f\x0b\x13\x1c\x0d\x15\x1e\x0e\x16\ \x20\x10\x17\x22\x0d\x16\x1f\x0d\x16\x1f\x0f\x17\x20\x0f\x17\x1e\ \x0f\x17\x1e\x0e\x16\x1d\x10\x15\x1d\x0f\x13\x1c\x11\x13\x1d\x0e\ \x11\x1a\x0e\x12\x17\x0d\x11\x14\x0c\x0f\x14\x0d\x0f\x16\x0b\x0f\ \x15\x0c\x0e\x15\x0b\x0d\x15\x0b\x0e\x18\x0c\x12\x1c\x0f\x19\x21\ \x15\x1e\x29\x19\x22\x2f\x1a\x26\x32\x1b\x29\x33\x1c\x2a\x37\x1c\ \x2c\x3a\x1b\x2b\x39\x19\x28\x34\x17\x25\x30\x14\x21\x2b\x13\x1f\ \x27\x13\x1e\x26\x11\x1c\x25\x11\x1c\x25\x11\x1a\x23\x12\x1b\x25\ \x12\x1b\x25\x10\x1b\x25\x10\x1a\x24\x10\x1b\x23\x10\x1a\x23\x0f\ \x18\x21\x0f\x19\x22\x10\x1b\x23\x11\x1b\x24\x12\x1c\x25\x00\x00\ \x00\x58\x9c\xdb\x52\x99\xd9\x51\x97\xd8\x4d\x93\xd6\x49\x8e\xd1\ \x45\x89\xcc\x45\x88\xc9\x47\x87\xc8\x47\x84\xc6\x4b\x88\xc9\x50\ \x8e\xd0\x50\x91\xd6\x57\x97\xd9\x5b\x9b\xdb\x5b\x9d\xdc\x58\x9a\ \xda\x52\x94\xd6\x4f\x8f\xd5\x47\x88\xcf\x42\x80\xc7\x3f\x7b\xc2\ \x3b\x74\xbb\x38\x70\xb1\x35\x67\xa5\x2d\x5a\x93\x2b\x57\x8a\x2d\ \x57\x87\x2d\x54\x86\x2d\x51\x86\x2b\x4f\x82\x25\x43\x73\x1a\x31\ \x5b\x15\x28\x4c\x12\x20\x3d\x0f\x1b\x32\x0e\x19\x2d\x0c\x15\x23\ \x0c\x14\x23\x0c\x13\x21\x0d\x15\x22\x0c\x14\x21\x0b\x13\x20\x0c\ \x14\x20\x0d\x13\x1e\x0d\x13\x1d\x0d\x15\x1e\x0c\x15\x1e\x0d\x15\ \x1d\x0f\x17\x1f\x0d\x15\x1e\x0e\x14\x1f\x10\x17\x21\x0f\x17\x20\ \x10\x17\x1f\x11\x19\x20\x13\x1c\x21\x16\x1f\x23\x19\x22\x26\x1b\ \x24\x28\x1f\x28\x2b\x22\x2b\x2f\x22\x2c\x30\x23\x2e\x32\x21\x2c\ \x30\x22\x2d\x33\x28\x35\x40\x47\x5b\x6e\x69\x81\x9d\x86\xa2\xc1\ \x99\xb5\xd8\xa3\xc0\xe1\xa8\xc5\xe4\xab\xc7\xe8\xab\xc7\xe9\xac\ \xc7\xeb\xac\xc8\xeb\xab\xc9\xec\xab\xc9\xec\xad\xc9\xec\xaf\xcb\ \xee\xb2\xce\xef\xb2\xcf\xee\xb5\xd2\xf2\xb5\xd1\xf4\xb4\xd0\xf3\ \xb4\xd0\xf2\xb1\xce\xef\xa9\xc7\xea\x9f\xbc\xe1\x8d\xac\xce\x75\ \x92\xb4\x5e\x73\x92\x67\x70\x84\xa2\x9e\xa8\xb4\xac\xb4\xb8\xae\ \xb7\xaf\xaa\xb5\x87\x86\x98\x44\x4c\x66\x40\x4c\x6a\x4d\x58\x76\ \x56\x61\x84\x5b\x68\x8d\x5c\x69\x8e\x54\x62\x85\x41\x4b\x68\x27\ \x30\x42\x1a\x20\x2c\x12\x16\x21\x0b\x0f\x1a\x0a\x0f\x1a\x0a\x11\ \x1e\x08\x11\x1b\x0a\x13\x1c\x0a\x13\x1c\x0c\x15\x1f\x0b\x14\x1f\ \x0b\x14\x1d\x0c\x15\x1e\x0d\x16\x1f\x0f\x16\x1f\x10\x17\x1f\x10\ \x18\x1f\x0f\x15\x1c\x0e\x12\x1b\x11\x13\x1d\x0f\x12\x1a\x0e\x12\ \x17\x0d\x12\x15\x0d\x10\x15\x0c\x0f\x15\x0c\x10\x15\x0c\x0d\x15\ \x0b\x0d\x15\x0d\x0f\x1a\x0d\x13\x1e\x10\x1b\x20\x14\x1e\x27\x18\ \x22\x2e\x1a\x25\x32\x19\x27\x33\x1c\x2a\x37\x1b\x2b\x38\x1b\x2b\ \x37\x18\x27\x32\x15\x24\x2e\x13\x1f\x2a\x13\x1e\x26\x13\x1e\x26\ \x12\x1d\x26\x12\x1c\x25\x12\x1b\x24\x12\x1b\x25\x11\x1b\x25\x11\ \x1b\x25\x13\x1e\x26\x13\x1d\x25\x15\x1e\x27\x14\x1e\x25\x14\x1e\ \x24\x15\x1f\x25\x16\x20\x28\x15\x1e\x27\x00\x00\x00\x5b\x9d\xdb\ \x54\x99\xd9\x53\x98\xd9\x4f\x94\xd7\x4c\x90\xd3\x46\x8a\xcd\x44\ \x86\xc9\x46\x85\xc9\x44\x82\xc6\x48\x85\xc9\x4d\x8c\xd0\x51\x92\ \xd7\x53\x96\xd9\x59\x9b\xdb\x5b\x9d\xdc\x5a\x9b\xdc\x55\x96\xdb\ \x51\x93\xd9\x4a\x88\xd3\x42\x7f\xc9\x3f\x7a\xc2\x3d\x76\xbb\x39\ \x71\xb3\x36\x69\xa9\x2f\x5c\x98\x30\x5b\x90\x31\x5a\x8d\x30\x56\ \x8a\x2d\x53\x86\x29\x50\x82\x26\x45\x78\x1e\x34\x61\x15\x27\x4d\ \x13\x22\x41\x10\x1d\x35\x0e\x1b\x2d\x0d\x16\x27\x0c\x13\x22\x0c\ \x13\x21\x0c\x14\x20\x0b\x13\x20\x0d\x14\x23\x0d\x14\x22\x10\x16\ \x23\x0d\x13\x1f\x0f\x15\x20\x0d\x14\x1e\x0e\x16\x1f\x0e\x15\x1f\ \x0e\x15\x1f\x10\x16\x22\x11\x17\x23\x0f\x17\x20\x0f\x19\x1f\x10\ \x1a\x1f\x13\x1e\x22\x15\x1f\x25\x18\x22\x28\x1a\x25\x29\x1e\x2a\ \x2c\x22\x2b\x30\x22\x2b\x32\x22\x2c\x34\x22\x2c\x32\x22\x2d\x31\ \x2b\x3b\x44\x50\x66\x79\x77\x91\xab\x93\xaf\xcd\xa4\xc0\xe1\xae\ \xc9\xeb\xaf\xcb\xec\xb0\xcc\xed\xb0\xcc\xec\xb0\xcb\xed\xaf\xca\ \xed\xae\xcb\xed\xae\xca\xed\xb0\xcc\xef\xb1\xcd\xf0\xb3\xcf\xef\ \xb7\xd3\xf2\xb8\xd4\xf3\xb8\xd4\xf4\xb8\xd4\xf3\xb7\xd3\xf4\xb6\ \xd2\xf4\xb1\xcd\xef\xa4\xc1\xe4\x90\xad\xd2\x70\x8d\xb1\x56\x6b\ \x88\x68\x6f\x84\xa8\xa1\xad\xba\xb1\xbb\xbe\xb1\xb9\xac\xa3\xaa\ \x73\x72\x79\x1e\x22\x2d\x13\x19\x29\x1f\x25\x35\x30\x36\x4a\x39\ \x43\x5d\x3b\x47\x60\x31\x3c\x52\x25\x30\x40\x1b\x24\x2f\x15\x1a\ \x24\x0d\x11\x1b\x0c\x10\x1a\x0a\x10\x1c\x08\x0e\x1d\x0a\x11\x1d\ \x0c\x13\x1d\x0b\x14\x1e\x0c\x15\x1f\x0b\x14\x1f\x0a\x13\x1d\x0a\ \x13\x1c\x0b\x14\x1d\x0d\x14\x1d\x0e\x15\x1e\x0f\x15\x1d\x10\x15\ \x1e\x0f\x14\x1c\x10\x12\x1c\x11\x13\x1c\x0f\x13\x18\x0e\x12\x18\ \x0c\x0f\x17\x0d\x10\x16\x0c\x0f\x14\x0b\x0f\x14\x0b\x0d\x15\x0d\ \x12\x1a\x10\x17\x1f\x11\x1b\x23\x13\x1e\x27\x1a\x24\x2e\x1b\x25\ \x32\x1c\x28\x35\x1b\x2a\x38\x1c\x2b\x3b\x1d\x2b\x39\x1a\x27\x35\ \x17\x25\x31\x14\x21\x2d\x16\x21\x2c\x19\x23\x2c\x17\x20\x2a\x17\ \x22\x2a\x16\x21\x28\x15\x20\x26\x16\x21\x29\x16\x20\x29\x17\x21\ \x2c\x17\x20\x2a\x17\x20\x28\x17\x21\x28\x19\x22\x2a\x18\x22\x28\ \x17\x22\x27\x18\x22\x27\x00\x00\x00\x5c\x9e\xdc\x56\x9a\xda\x54\ \x98\xda\x51\x96\xd8\x4e\x92\xd5\x48\x8c\xcf\x46\x89\xcc\x45\x86\ \xcb\x45\x85\xc9\x46\x84\xca\x49\x89\xcf\x4e\x90\xd5\x50\x95\xd8\ \x59\x9c\xdc\x5b\x9e\xdd\x59\x9b\xdc\x57\x98\xdd\x51\x94\xdb\x4a\ \x8c\xd6\x42\x81\xcd\x40\x7c\xc4\x3c\x77\xbd\x3a\x73\xb6\x38\x6e\ \xae\x31\x61\x9d\x31\x5e\x93\x33\x5e\x91\x32\x5a\x8e\x2d\x55\x88\ \x26\x4f\x80\x27\x47\x79\x20\x37\x64\x16\x2a\x51\x14\x22\x42\x10\ \x1e\x35\x0c\x1a\x2c\x0d\x17\x26\x0b\x13\x20\x0b\x14\x1f\x0b\x15\ \x1e\x0d\x16\x22\x0d\x14\x23\x0e\x16\x23\x0e\x15\x20\x0f\x15\x1f\ \x0e\x15\x1f\x0f\x15\x1f\x0e\x15\x1f\x0f\x16\x20\x0f\x16\x20\x0f\ \x15\x1f\x10\x17\x1f\x0f\x17\x1f\x0f\x18\x1e\x11\x1b\x1e\x13\x1c\ \x20\x15\x1d\x23\x1a\x21\x28\x1b\x24\x28\x1e\x27\x2a\x20\x2a\x2e\ \x22\x2d\x32\x23\x2d\x34\x21\x2c\x31\x21\x2e\x32\x27\x38\x40\x51\ \x67\x7a\x7a\x94\xb0\x95\xb1\xd0\xa5\xc0\xe2\xae\xca\xeb\xb1\xcd\ \xec\xb0\xcd\xeb\xb1\xcd\xeb\xb0\xcb\xed\xaf\xca\xed\xae\xca\xec\ \xad\xc9\xec\xb0\xcc\xee\xb2\xce\xf0\xb4\xcf\xf1\xb7\xd3\xf2\xb8\ \xd4\xf3\xb9\xd5\xf4\xb8\xd4\xf3\xb7\xd3\xf4\xb6\xd2\xf4\xb0\xcc\ \xef\xa3\xc1\xe4\x8d\xaa\xcf\x6c\x89\xae\x57\x6b\x89\x70\x75\x8a\ \xb8\xad\xba\xc7\xbc\xc5\xc8\xb9\xbf\xb4\xa7\xac\x77\x74\x78\x17\ \x1c\x24\x0a\x12\x1f\x0b\x11\x1e\x14\x19\x29\x19\x22\x35\x1c\x25\ \x37\x1a\x24\x34\x17\x1e\x2c\x13\x1b\x26\x0e\x12\x1f\x0b\x0e\x1a\ \x0b\x10\x1b\x0a\x10\x1b\x0b\x11\x1e\x0c\x12\x1d\x0d\x14\x1f\x0a\ \x13\x1d\x0b\x14\x1e\x0b\x14\x1e\x0b\x14\x1e\x0a\x13\x1d\x0a\x13\ \x1c\x0c\x13\x1c\x0d\x13\x1c\x0f\x14\x1e\x0e\x13\x1c\x0f\x13\x1d\ \x0f\x12\x1b\x0e\x12\x19\x0f\x14\x1a\x0f\x12\x1a\x0e\x11\x18\x0d\ \x10\x16\x0c\x0f\x14\x0d\x10\x16\x0b\x0f\x17\x0d\x14\x1b\x12\x18\ \x1f\x11\x1c\x24\x17\x22\x2a\x1b\x25\x2f\x1e\x28\x33\x21\x2d\x3a\ \x1f\x30\x3d\x24\x32\x42\x25\x32\x40\x1f\x2d\x39\x1c\x2a\x35\x1a\ \x26\x31\x1c\x27\x31\x1d\x27\x31\x1b\x25\x2f\x1a\x24\x2e\x1a\x25\ \x2e\x1b\x26\x2d\x1c\x27\x2f\x1b\x25\x2f\x1b\x25\x2e\x1c\x26\x2d\ \x1a\x25\x2a\x1c\x26\x2c\x1e\x27\x2e\x1d\x25\x2d\x1b\x25\x29\x1b\ \x25\x29\x00\x00\x00\x5d\xa0\xdc\x5a\x9d\xdc\x55\x9a\xda\x52\x96\ \xd7\x50\x94\xd5\x4a\x8e\xd1\x45\x89\xcc\x44\x87\xcb\x43\x86\xca\ \x43\x84\xc9\x47\x89\xce\x4a\x8f\xd4\x50\x94\xd9\x55\x99\xdb\x5b\ \x9e\xdd\x5b\x9d\xde\x55\x98\xdc\x51\x96\xdb\x48\x8d\xd6\x43\x84\ \xd0\x3e\x7c\xc7\x3c\x78\xbf\x3b\x74\xba\x3d\x72\xb4\x37\x68\xa4\ \x36\x64\x99\x36\x63\x96\x37\x60\x94\x2f\x57\x88\x29\x51\x82\x29\ \x4b\x7c\x21\x3b\x66\x18\x2e\x54\x14\x25\x44\x11\x1e\x36\x0b\x19\ \x2b\x0b\x16\x23\x0c\x14\x1f\x0b\x14\x1e\x0d\x16\x1f\x0c\x15\x1f\ \x0b\x14\x1e\x0d\x16\x20\x0d\x16\x1f\x0c\x15\x1e\x0d\x15\x1d\x0f\ \x14\x1d\x10\x15\x1e\x10\x15\x1e\x11\x16\x1f\x11\x17\x1d\x10\x16\ \x1a\x11\x17\x1d\x10\x19\x20\x12\x19\x21\x13\x1b\x22\x15\x1d\x24\ \x17\x1f\x27\x1b\x23\x29\x1e\x28\x2a\x1f\x2b\x2e\x22\x2c\x31\x21\ \x2c\x32\x1e\x2b\x2e\x1f\x2d\x30\x27\x38\x40\x50\x66\x79\x7c\x95\ \xb2\x96\xb0\xd2\xa8\xc4\xe3\xb1\xcd\xec\xb2\xce\xec\xb1\xcd\xeb\ \xb0\xcd\xea\xb1\xcd\xeb\xae\xcb\xeb\xaf\xcb\xed\xae\xca\xec\xaf\ \xcb\xed\xb2\xcd\xef\xb3\xcf\xef\xb6\xd2\xf1\xb8\xd4\xf3\xb8\xd4\ \xf3\xb8\xd4\xf3\xb7\xd3\xf4\xb5\xd1\xf3\xb0\xcb\xed\xa2\xc0\xe1\ \x8c\xa7\xcb\x6a\x85\xa9\x5f\x70\x8d\x8b\x8b\x9e\xc9\xb7\xc1\xd3\ \xc3\xc9\xd3\xbf\xc2\xba\xa9\xac\x7c\x77\x79\x17\x1f\x26\x09\x13\ \x1f\x0b\x11\x1c\x10\x13\x22\x11\x17\x26\x15\x1d\x29\x12\x1a\x26\ \x0f\x15\x22\x0e\x13\x1e\x0b\x0e\x1b\x0d\x10\x1e\x0b\x10\x1c\x0b\ \x11\x1c\x0d\x13\x1d\x0c\x12\x1d\x0d\x13\x1e\x0c\x15\x1f\x0d\x16\ \x20\x0c\x15\x1f\x0b\x14\x1e\x0b\x14\x1e\x0a\x12\x1c\x0c\x12\x1b\ \x0c\x13\x1c\x0e\x13\x1e\x0e\x13\x1d\x0e\x14\x1c\x0f\x15\x1b\x10\ \x15\x1a\x0e\x14\x1b\x0e\x11\x1a\x0e\x11\x1a\x0b\x0f\x16\x0d\x0f\ \x17\x0c\x0e\x17\x0d\x12\x19\x0e\x15\x1c\x12\x1a\x21\x14\x1e\x25\ \x18\x23\x2b\x1d\x28\x31\x21\x2d\x37\x25\x32\x3c\x23\x32\x40\x28\ \x35\x43\x27\x35\x42\x23\x32\x3c\x23\x30\x3a\x22\x2e\x38\x21\x2d\ \x37\x24\x2e\x38\x21\x2b\x35\x21\x2b\x36\x20\x2a\x34\x21\x2c\x34\ \x1f\x2a\x32\x1e\x27\x31\x1f\x2a\x2e\x20\x2c\x2e\x1f\x2a\x2d\x23\ \x2b\x31\x23\x2b\x33\x24\x2c\x32\x22\x2b\x2f\x22\x2b\x2f\x00\x00\ \x00\x5e\xa0\xdd\x5b\x9e\xdb\x57\x9b\xd9\x54\x98\xd8\x51\x95\xd6\ \x4c\x90\xd2\x46\x89\xcd\x44\x87\xcb\x42\x86\xc9\x42\x83\xc8\x45\ \x87\xcc\x49\x8e\xd3\x50\x95\xda\x54\x99\xdc\x59\x9c\xdc\x5c\x9e\ \xe0\x54\x98\xdd\x50\x95\xdb\x4c\x8f\xd8\x42\x84\xd1\x3d\x7d\xc9\ \x3b\x78\xc2\x3c\x76\xbd\x3f\x76\xba\x3b\x6e\xab\x36\x68\x9e\x36\ \x67\x9a\x39\x65\x97\x31\x5a\x8b\x29\x51\x82\x2a\x4d\x7e\x23\x3e\ \x6a\x18\x31\x56\x13\x26\x45\x10\x1f\x36\x0e\x1b\x2c\x0e\x19\x25\ \x0a\x13\x1d\x0c\x15\x1f\x0b\x14\x1e\x0d\x15\x21\x0d\x16\x1f\x0e\ \x17\x21\x0e\x18\x20\x0d\x18\x20\x0f\x19\x20\x10\x18\x1f\x10\x18\ \x1f\x0f\x17\x1e\x11\x19\x20\x12\x1a\x20\x0f\x17\x1e\x10\x17\x1e\ \x0e\x17\x1e\x0d\x16\x1d\x10\x1a\x21\x14\x1d\x25\x17\x20\x28\x1a\ \x25\x2a\x1f\x29\x2d\x23\x2e\x32\x24\x2f\x36\x22\x2e\x34\x20\x2c\ \x31\x20\x2d\x31\x29\x39\x42\x56\x6c\x80\x80\x99\xb6\x98\xb4\xd4\ \xa8\xc4\xe4\xb1\xcd\xeb\xb2\xce\xec\xb1\xcd\xeb\xb1\xcd\xeb\xb1\ \xcd\xeb\xaf\xcb\xea\xae\xca\xec\xae\xca\xec\xaf\xcb\xed\xb2\xce\ \xf0\xb4\xcf\xf0\xb6\xd2\xf1\xb8\xd4\xf3\xb7\xd4\xf3\xb8\xd3\xf5\ \xb7\xd2\xf4\xb5\xd1\xf3\xaf\xcb\xed\xa2\xbf\xe1\x8d\xa8\xcc\x6b\ \x85\xa8\x72\x7d\x96\xa8\x9c\xa9\xd8\xc1\xc7\xdb\xc7\xc9\xd9\xc2\ \xc3\xc0\xad\xae\x7d\x75\x76\x1e\x24\x2c\x0f\x19\x23\x0b\x14\x1c\ \x0f\x14\x1d\x0e\x14\x20\x0e\x14\x1f\x0f\x15\x20\x0e\x13\x1e\x0d\ \x11\x1c\x0e\x13\x1e\x0c\x12\x1e\x0c\x12\x1f\x0c\x12\x1e\x0c\x14\ \x1d\x0d\x13\x1e\x0e\x15\x1f\x0d\x15\x1f\x0d\x16\x20\x0c\x15\x1f\ \x0b\x14\x1e\x0c\x15\x1f\x0b\x13\x1d\x0d\x14\x1e\x0c\x12\x1c\x0c\ \x12\x1d\x0d\x14\x1d\x0d\x13\x1b\x0e\x14\x1a\x0f\x15\x1c\x0f\x15\ \x1d\x0e\x13\x1d\x0d\x10\x1a\x0c\x0e\x17\x0b\x0e\x16\x0c\x0f\x17\ \x0d\x13\x1a\x10\x17\x1e\x15\x1e\x22\x17\x21\x28\x1c\x26\x2d\x21\ \x2c\x34\x25\x31\x3b\x27\x36\x40\x29\x36\x43\x2a\x37\x45\x29\x36\ \x42\x29\x36\x3e\x25\x33\x3a\x26\x33\x3b\x24\x31\x39\x29\x32\x3c\ \x24\x2d\x37\x24\x30\x3a\x24\x2f\x38\x22\x2e\x35\x25\x2f\x36\x22\ \x2c\x34\x22\x2d\x31\x22\x2d\x2f\x24\x2d\x31\x26\x2e\x34\x28\x30\ \x38\x27\x2f\x35\x25\x2e\x32\x27\x2f\x33\x00\x00\x00\x5e\xa1\xdd\ \x5c\x9f\xdc\x5a\x9d\xda\x57\x9a\xd9\x52\x97\xd7\x4d\x91\xd3\x44\ \x89\xce\x45\x88\xcc\x45\x86\xca\x43\x84\xc9\x46\x87\xcc\x49\x8c\ \xd1\x4d\x92\xd8\x53\x96\xda\x58\x9b\xdc\x5a\x9d\xdf\x57\x9a\xde\ \x51\x95\xda\x4b\x8f\xd8\x45\x87\xd4\x40\x7f\xcd\x3c\x79\xc4\x3c\ \x76\xbe\x41\x79\xbe\x40\x75\xb3\x3b\x6e\xa4\x3a\x6d\x9f\x3b\x69\ \x9b\x39\x62\x93\x2c\x56\x85\x2b\x50\x80\x26\x45\x70\x1d\x37\x5c\ \x14\x28\x47\x12\x20\x37\x10\x1d\x2e\x0f\x18\x27\x0e\x16\x23\x0e\ \x17\x23\x10\x17\x25\x0e\x15\x23\x0e\x16\x23\x11\x1a\x25\x11\x1b\ \x26\x10\x1b\x24\x10\x1a\x22\x13\x1d\x24\x12\x1c\x23\x13\x1d\x24\ \x13\x1d\x23\x13\x1c\x24\x11\x1a\x23\x10\x1a\x22\x11\x1b\x22\x11\ \x1c\x23\x15\x20\x27\x18\x22\x2a\x1a\x24\x2d\x21\x2c\x32\x29\x35\ \x39\x2f\x38\x40\x2c\x36\x3f\x26\x31\x3a\x24\x2f\x36\x24\x31\x38\ \x2d\x3c\x49\x58\x6e\x82\x81\x9b\xb5\x9a\xb6\xd4\xaa\xc6\xe5\xb2\ \xce\xed\xb3\xcf\xee\xb3\xcf\xed\xb2\xce\xec\xb2\xce\xed\xaf\xcc\ \xeb\xb0\xcd\xeb\xae\xcb\xec\xb0\xcc\xee\xb2\xce\xf0\xb5\xd0\xf1\ \xb6\xd2\xf1\xb8\xd4\xf2\xb8\xd4\xf3\xb7\xd2\xf4\xb7\xd1\xf4\xb5\ \xd1\xf3\xae\xca\xec\xa0\xbd\xdf\x8c\xa6\xcb\x6f\x85\xa7\x85\x8a\ \x9f\xc1\xad\xb4\xda\xc2\xc5\xde\xc8\xc8\xd9\xc2\xc1\xbc\xa8\xa7\ \x6e\x66\x66\x1d\x22\x29\x10\x19\x22\x0d\x18\x1e\x0d\x16\x1c\x0f\ \x16\x21\x0f\x15\x21\x0e\x14\x20\x0e\x13\x1e\x0e\x12\x1d\x0e\x14\ \x1e\x0b\x12\x1d\x0d\x14\x20\x0e\x14\x21\x0d\x13\x1e\x0d\x13\x1e\ \x0e\x15\x20\x0c\x15\x1f\x0e\x17\x21\x0e\x16\x21\x0d\x15\x22\x0c\ \x15\x1f\x0b\x14\x1e\x0c\x12\x1d\x0c\x12\x1c\x0c\x13\x1c\x0b\x12\ \x1b\x0b\x11\x1a\x0e\x13\x1c\x0f\x14\x1c\x10\x16\x1e\x0f\x14\x1d\ \x0e\x13\x1c\x0d\x10\x18\x0d\x10\x18\x0d\x12\x19\x10\x16\x1d\x12\ \x1b\x1f\x17\x20\x24\x1c\x24\x2c\x1e\x28\x2f\x21\x2d\x35\x22\x30\ \x39\x26\x35\x3f\x2a\x38\x44\x2a\x38\x44\x2b\x38\x42\x29\x36\x3e\ \x26\x33\x3a\x28\x33\x3b\x29\x34\x3c\x24\x32\x3a\x24\x31\x3b\x24\ \x31\x3b\x25\x31\x38\x26\x32\x37\x25\x30\x34\x25\x30\x35\x24\x2e\ \x36\x26\x2f\x34\x28\x31\x35\x29\x31\x37\x2a\x33\x39\x28\x33\x37\ \x27\x32\x36\x26\x31\x35\x00\x00\x00\x5c\x9f\xdc\x5c\x9f\xdb\x5b\ \x9e\xdb\x58\x9b\xdb\x55\x97\xd8\x52\x94\xd5\x4a\x8c\xcd\x45\x87\ \xc7\x45\x85\xc9\x45\x83\xc8\x46\x84\xca\x4b\x8c\xd1\x4e\x91\xd4\ \x53\x97\xda\x56\x99\xdc\x57\x9c\xdf\x53\x98\xdc\x50\x93\xda\x4c\ \x90\xd9\x47\x88\xd5\x42\x80\xce\x3d\x78\xc6\x3e\x77\xc1\x41\x79\ \xc0\x41\x77\xb7\x3d\x72\xac\x3c\x6f\xa5\x3d\x6d\xa0\x3a\x65\x98\ \x2f\x57\x88\x2d\x52\x86\x26\x49\x77\x20\x3d\x64\x19\x2f\x4d\x15\ \x25\x3d\x13\x20\x33\x12\x1f\x2e\x15\x22\x30\x14\x21\x2e\x16\x26\ \x32\x19\x29\x36\x1a\x29\x38\x1e\x2e\x3d\x20\x30\x3e\x26\x36\x45\ \x25\x36\x42\x29\x39\x45\x2b\x3b\x47\x2d\x3f\x4b\x2f\x42\x4d\x2f\ \x41\x51\x2c\x3d\x4e\x27\x3a\x49\x27\x39\x48\x2c\x3f\x4b\x32\x44\ \x54\x36\x48\x58\x36\x49\x57\x3c\x4f\x5c\x40\x51\x5e\x41\x53\x5e\ \x3e\x50\x5b\x34\x45\x50\x2b\x3a\x43\x29\x37\x44\x32\x45\x53\x5a\ \x73\x86\x81\x9c\xba\x9b\xb7\xd5\xaa\xc7\xe6\xb2\xcf\xee\xb4\xd1\ \xf0\xb4\xd0\xef\xb4\xd0\xef\xb2\xcf\xee\xaf\xcd\xec\xaf\xcb\xee\ \xaf\xcb\xed\xae\xcd\xee\xb2\xcf\xf1\xb4\xd0\xf2\xb7\xd1\xf4\xb7\ \xd2\xf5\xb7\xd2\xf5\xb5\xd2\xf3\xb5\xd2\xf1\xb4\xd0\xf1\xac\xc8\ \xeb\x9d\xbb\xde\x85\xa4\xcb\x74\x87\xa7\x98\x94\xa4\xc4\xae\xb5\ \xd6\xbc\xbf\xdc\xc6\xc4\xd6\xbd\xbb\xab\x97\x98\x52\x4e\x50\x17\ \x20\x29\x11\x1a\x23\x0f\x1a\x21\x0e\x17\x1e\x11\x18\x20\x11\x17\ \x21\x10\x16\x21\x0f\x14\x21\x10\x14\x1f\x0d\x14\x1e\x0b\x15\x1e\ \x0c\x14\x21\x0d\x15\x22\x0d\x16\x21\x0d\x16\x20\x0d\x16\x20\x0f\ \x18\x22\x0d\x16\x20\x0e\x17\x21\x0e\x19\x22\x0e\x16\x23\x0b\x14\ \x20\x0c\x15\x1f\x0c\x14\x1d\x0c\x11\x1a\x0e\x13\x1c\x0e\x13\x1c\ \x0e\x13\x1c\x0f\x14\x1d\x10\x15\x1e\x0e\x14\x1b\x0d\x13\x1a\x0c\ \x13\x19\x0c\x11\x1a\x0f\x14\x1d\x0f\x16\x1f\x14\x1d\x24\x17\x21\ \x28\x1c\x27\x2b\x1e\x29\x30\x23\x2e\x36\x25\x31\x39\x28\x37\x3e\ \x28\x37\x43\x29\x38\x41\x2b\x37\x41\x2a\x34\x3e\x2a\x34\x3e\x2a\ \x34\x3e\x2a\x34\x3e\x28\x33\x3c\x28\x33\x3a\x27\x31\x3a\x26\x31\ \x39\x25\x31\x38\x25\x31\x37\x27\x32\x3a\x27\x30\x39\x27\x31\x38\ \x26\x30\x37\x27\x31\x39\x2a\x33\x3b\x28\x32\x39\x27\x32\x36\x27\ \x32\x35\x00\x00\x00\x5b\x9e\xdc\x5c\x9f\xdd\x5b\x9e\xdd\x59\x9c\ \xdb\x56\x98\xd9\x53\x95\xd6\x4d\x8f\xd0\x47\x89\xca\x47\x87\xcb\ \x44\x83\xc8\x44\x82\xc8\x47\x88\xcd\x4b\x8e\xd2\x51\x93\xd7\x55\ \x96\xda\x55\x99\xdd\x52\x98\xdb\x4f\x94\xd9\x4c\x8f\xd8\x45\x88\ \xd4\x41\x81\xcf\x3c\x77\xc5\x3c\x76\xbf\x43\x7b\xc0\x45\x7b\xb9\ \x3e\x73\xad\x3f\x71\xa8\x41\x70\xa4\x3d\x69\x9c\x37\x5e\x92\x2f\ \x56\x8b\x2d\x51\x81\x27\x46\x71\x21\x3a\x5c\x20\x32\x4b\x24\x33\ \x46\x2d\x3d\x4d\x3e\x50\x5f\x4c\x5f\x6f\x50\x66\x77\x51\x6a\x7b\ \x54\x6e\x7f\x59\x73\x85\x5b\x75\x89\x60\x7a\x8f\x65\x7d\x93\x68\ \x7f\x94\x6a\x83\x98\x69\x83\x98\x69\x83\x99\x6a\x84\x9c\x67\x82\ \x99\x66\x81\x97\x66\x81\x96\x67\x82\x96\x6a\x85\x99\x6e\x87\x9b\ \x70\x89\x9c\x74\x8d\x9f\x74\x8c\x9e\x73\x89\x9a\x6c\x83\x93\x5f\ \x74\x85\x46\x59\x68\x34\x46\x56\x36\x4b\x5b\x5e\x78\x8c\x84\x9f\ \xbc\x9b\xb8\xd5\xac\xc9\xe7\xb3\xd0\xef\xb6\xd2\xf1\xb4\xd0\xef\ \xb3\xd0\xee\xb2\xce\xed\xb0\xcc\xed\xb0\xcb\xee\xb0\xcc\xee\xaf\ \xcc\xed\xb1\xce\xf0\xb3\xcf\xf1\xb6\xd1\xf3\xb6\xd2\xf4\xb7\xd3\ \xf5\xb7\xd2\xf4\xb4\xd1\xf1\xb2\xce\xf0\xab\xc6\xe9\x9b\xb8\xdd\ \x83\xa0\xc7\x76\x87\xa5\x9d\x97\xa6\xbe\xa7\xae\xce\xb5\xb6\xd3\ \xb9\xb9\xc6\xad\xad\x83\x75\x78\x29\x2e\x33\x16\x1f\x28\x12\x1b\ \x24\x11\x1a\x21\x12\x1a\x21\x11\x1a\x21\x0f\x18\x21\x0f\x18\x22\ \x10\x16\x21\x0f\x15\x20\x0d\x16\x1f\x0b\x15\x1e\x0d\x16\x22\x0d\ \x16\x22\x0f\x18\x23\x0d\x16\x20\x0e\x17\x21\x0f\x18\x22\x0e\x17\ \x21\x0d\x16\x20\x0e\x18\x22\x0d\x16\x21\x0c\x14\x1f\x0b\x14\x1e\ \x0c\x13\x1b\x0e\x13\x1c\x0d\x12\x1b\x0d\x12\x1b\x0e\x13\x1c\x0e\ \x14\x1c\x0e\x14\x1c\x0d\x13\x1b\x0d\x12\x1b\x0c\x11\x1a\x0c\x11\ \x1a\x10\x15\x1e\x13\x1a\x22\x16\x1f\x26\x18\x22\x29\x1b\x26\x2d\ \x1e\x29\x31\x22\x2e\x38\x24\x31\x39\x27\x37\x3f\x29\x38\x42\x27\ \x35\x3f\x28\x34\x3e\x2b\x36\x3f\x2a\x34\x3e\x2a\x34\x3e\x29\x33\ \x3d\x2b\x36\x3e\x28\x33\x3b\x28\x33\x3c\x26\x31\x37\x27\x32\x38\ \x26\x32\x37\x26\x31\x38\x28\x31\x3a\x27\x30\x39\x28\x32\x39\x29\ \x32\x3b\x29\x32\x3c\x29\x32\x3b\x27\x31\x38\x26\x31\x35\x00\x00\ \x00\x57\x9c\xdb\x58\x9d\xde\x59\x9c\xdd\x59\x9c\xdb\x57\x99\xda\ \x54\x96\xd7\x4e\x90\xd1\x47\x8a\xcb\x46\x87\xcb\x46\x84\xca\x43\ \x81\xc7\x46\x85\xca\x49\x8c\xcf\x51\x92\xd6\x55\x96\xda\x56\x99\ \xdc\x51\x96\xd9\x4d\x92\xd6\x48\x8d\xd6\x43\x85\xd1\x3f\x81\xcd\ \x3b\x79\xc4\x3c\x76\xbf\x40\x7b\xbf\x47\x7e\xbc\x41\x77\xb0\x3d\ \x73\xa8\x40\x71\xa5\x3f\x6d\xa0\x37\x62\x95\x35\x5e\x93\x34\x5b\ \x8e\x30\x52\x82\x2d\x4a\x71\x2d\x44\x61\x39\x4d\x62\x54\x69\x7a\ \x6b\x81\x93\x7d\x96\xaa\x85\xa1\xb6\x84\xa1\xb7\x87\xa4\xba\x88\ \xa5\xbc\x8c\xa7\xc0\x8d\xa8\xc3\x91\xad\xc7\x93\xaf\xc7\x93\xb0\ \xc8\x93\xb0\xc8\x92\xb1\xc8\x90\xaf\xc7\x8f\xae\xc6\x8f\xae\xc6\ \x90\xaf\xc6\x90\xb0\xc7\x92\xb1\xc9\x94\xb0\xc9\x97\xb2\xca\x9a\ \xb4\xcb\x9a\xb3\xc9\x96\xb0\xc6\x8d\xa8\xbd\x7c\x97\xac\x64\x7d\ \x93\x4e\x65\x79\x40\x58\x69\x65\x7d\x92\x87\xa1\xbe\x9b\xb8\xd7\ \xaa\xc6\xe5\xb3\xcf\xed\xb5\xd1\xf0\xb5\xd0\xef\xb6\xce\xf0\xb2\ \xcd\xee\xb1\xcc\xee\xaf\xcb\xed\xb0\xcc\xee\xaf\xcc\xef\xb0\xce\ \xef\xb3\xcf\xf1\xb5\xd0\xf2\xb7\xd2\xf4\xb7\xd2\xf4\xb7\xd2\xf4\ \xb5\xd0\xf2\xb1\xce\xf0\xa7\xc4\xe8\x98\xb5\xdb\x82\x9b\xc5\x77\ \x83\xa2\x9c\x94\xa2\xb5\x9f\xa6\xc0\xaa\xac\xc4\xaa\xab\xa4\x8f\ \x91\x44\x42\x48\x1a\x25\x2e\x18\x20\x29\x14\x1b\x25\x12\x1b\x22\ \x13\x1b\x22\x11\x1a\x21\x10\x19\x21\x0e\x17\x20\x0d\x17\x20\x0e\ \x16\x1e\x0f\x16\x1f\x0f\x16\x1f\x11\x16\x23\x11\x17\x23\x11\x16\ \x22\x10\x18\x22\x0e\x17\x21\x0e\x17\x21\x0e\x17\x21\x0d\x16\x20\ \x0e\x17\x21\x0b\x14\x1e\x0b\x14\x1e\x0e\x14\x1e\x0c\x13\x1b\x0d\ \x13\x1b\x0d\x12\x1a\x0d\x12\x1a\x0d\x13\x1b\x0f\x14\x1b\x0e\x13\ \x1b\x0d\x12\x1c\x0d\x12\x1b\x0d\x12\x1c\x0f\x14\x1d\x10\x16\x20\ \x15\x1d\x25\x15\x1f\x26\x18\x22\x29\x1a\x26\x2e\x1d\x29\x33\x22\ \x2e\x39\x25\x32\x3c\x27\x36\x3f\x27\x34\x3d\x28\x34\x3e\x26\x33\ \x3c\x2a\x35\x3d\x2a\x34\x3d\x2b\x35\x3f\x29\x34\x3c\x29\x34\x3c\ \x27\x32\x3a\x27\x32\x3a\x25\x32\x39\x24\x30\x35\x24\x31\x36\x25\ \x31\x38\x27\x30\x3a\x25\x2e\x37\x26\x2f\x37\x27\x30\x3a\x28\x31\ \x3b\x2a\x32\x3c\x28\x32\x39\x27\x31\x37\x00\x00\x00\x56\x9a\xdb\ \x57\x9b\xdc\x58\x9b\xdc\x59\x9c\xdb\x59\x9b\xdc\x56\x98\xd9\x51\ \x93\xd4\x49\x8c\xcd\x46\x89\xcc\x46\x84\xca\x43\x81\xc7\x45\x83\ \xc8\x47\x88\xcc\x4d\x8e\xd2\x51\x92\xd6\x54\x95\xd9\x51\x96\xd9\ \x4e\x91\xd6\x48\x8b\xd2\x42\x85\xd0\x3d\x7e\xc9\x3a\x78\xc4\x3b\ \x75\xc0\x3d\x77\xbd\x44\x7c\xbc\x41\x78\xb2\x40\x74\xad\x40\x73\ \xa8\x43\x72\xa6\x3e\x6b\x9e\x38\x66\x99\x3c\x68\x9b\x39\x63\x95\ \x38\x5d\x88\x3e\x5b\x7d\x57\x70\x89\x76\x8d\xa3\x8d\xa5\xbb\x9b\ \xb5\xcb\xa4\xbf\xd8\xa4\xc2\xd9\xa8\xc3\xd9\xab\xc5\xdd\xab\xc5\ \xde\xae\xc7\xe0\xaf\xca\xe1\xaf\xcb\xe3\xb0\xcc\xe4\xaf\xcb\xe3\ \xb0\xcc\xe4\xae\xcb\xe2\xae\xcb\xe2\xad\xcb\xe0\xaf\xcc\xe1\xaf\ \xcc\xe2\xb0\xcb\xe5\xb0\xcb\xe5\xb2\xcc\xe6\xb2\xcb\xe5\xb0\xca\ \xe4\xac\xc9\xe1\xa2\xc1\xd9\x92\xb1\xc8\x7e\x99\xb3\x61\x7c\x95\ \x4e\x67\x7c\x68\x81\x97\x87\xa1\xbf\x9a\xb8\xd6\xa9\xc6\xe4\xb3\ \xcf\xed\xb5\xd0\xee\xb5\xce\xf0\xb4\xcd\xef\xb2\xcc\xee\xb0\xcb\ \xed\xb0\xca\xee\xaf\xc9\xed\xaf\xcb\xee\xb0\xce\xef\xb2\xce\xf0\ \xb5\xd0\xf2\xb7\xd2\xf4\xb6\xd2\xf4\xb7\xd1\xf3\xb5\xd0\xf2\xb0\ \xcd\xf0\xa5\xc2\xe8\x92\xb0\xd8\x7b\x95\xbd\x78\x83\xa0\x99\x90\ \x9d\xad\x9b\x9e\xb4\xa0\xa3\xad\x97\x9b\x7c\x72\x76\x28\x2e\x36\ \x1b\x25\x30\x16\x1f\x28\x14\x1b\x24\x13\x1a\x21\x14\x1b\x22\x10\ \x18\x1f\x0f\x18\x1f\x10\x18\x21\x11\x18\x20\x0f\x17\x1d\x10\x18\ \x1f\x0f\x16\x1f\x11\x17\x22\x10\x16\x20\x10\x16\x21\x10\x18\x22\ \x0f\x18\x22\x0e\x17\x21\x0d\x16\x20\x0b\x14\x1e\x0c\x15\x1e\x0c\ \x14\x1e\x0d\x13\x1e\x0c\x13\x1c\x0c\x13\x1a\x0c\x12\x19\x0c\x12\ \x19\x0d\x13\x1a\x0c\x12\x19\x0c\x12\x19\x0c\x13\x1a\x0e\x13\x1c\ \x0d\x11\x1c\x0e\x12\x1d\x0e\x15\x1e\x11\x18\x21\x15\x1d\x25\x16\ \x20\x27\x18\x23\x2a\x1c\x28\x30\x1c\x29\x32\x24\x2f\x3a\x24\x30\ \x3a\x27\x33\x3d\x28\x34\x3e\x27\x34\x3d\x26\x33\x3b\x27\x32\x3a\ \x27\x32\x3a\x29\x34\x3c\x28\x33\x3b\x28\x33\x3b\x25\x31\x38\x25\ \x30\x37\x22\x2c\x33\x22\x2e\x32\x22\x2e\x32\x22\x2e\x34\x23\x2c\ \x34\x22\x2c\x33\x22\x2c\x33\x23\x2c\x34\x24\x2d\x35\x26\x31\x36\ \x25\x30\x33\x24\x2f\x34\x00\x00\x00\x55\x99\xda\x55\x99\xda\x56\ \x9a\xd9\x58\x9b\xda\x59\x9b\xdc\x57\x99\xda\x55\x96\xd7\x4b\x8e\ \xcf\x46\x89\xcc\x47\x85\xcb\x43\x81\xc7\x44\x83\xc8\x47\x88\xcb\ \x4b\x8c\xd0\x50\x8f\xd4\x50\x92\xd6\x50\x94\xd7\x52\x90\xd6\x4a\ \x89\xd1\x44\x85\xd0\x40\x7f\xca\x3c\x78\xc4\x3a\x74\xc1\x3c\x75\ \xbd\x43\x7b\xbc\x42\x78\xb5\x40\x75\xae\x40\x73\xab\x44\x74\xa9\ \x41\x71\xa3\x3f\x6f\xa0\x43\x74\xa6\x46\x74\xa7\x44\x6d\x9b\x4d\ \x6e\x94\x6d\x89\xa6\x8e\xa6\xbe\xa3\xbb\xd3\xb3\xcc\xe4\xba\xd5\ \xea\xbc\xd7\xec\xbb\xd8\xed\xbc\xd9\xee\xbd\xdb\xee\xbe\xdc\xef\ \xbe\xdb\xf2\xbf\xdc\xf5\xbf\xdb\xf5\xbe\xdb\xf4\xbf\xdb\xf5\xbd\ \xdb\xf4\xbc\xdb\xf4\xbc\xda\xf3\xbc\xda\xf3\xbc\xdb\xf4\xbf\xdd\ \xf4\xbe\xdc\xf3\xbe\xdd\xf4\xbc\xdb\xf2\xbc\xdb\xf2\xbd\xd9\xef\ \xb4\xd2\xe9\xa4\xc3\xda\x8f\xab\xc4\x73\x8d\xa7\x53\x6d\x83\x66\ \x81\x98\x89\xa2\xc0\x99\xb7\xd5\xa8\xc5\xe3\xb2\xce\xec\xb5\xcf\ \xee\xb4\xcd\xef\xb3\xcc\xee\xb1\xcb\xec\xb0\xcb\xed\xb0\xca\xee\ \xb0\xc9\xee\xaf\xcb\xee\xaf\xcd\xee\xb2\xce\xf0\xb5\xd0\xf2\xb7\ \xd2\xf4\xb6\xd2\xf3\xb8\xd1\xf3\xb5\xd0\xf2\xae\xca\xee\xa1\xbe\ \xe5\x8e\xad\xd5\x72\x8d\xb4\x76\x82\x9e\x98\x91\x9c\xa6\x96\x9a\ \xa7\x95\x9a\x9c\x8b\x8f\x65\x63\x68\x21\x2c\x34\x1c\x23\x30\x16\ \x1f\x28\x15\x1b\x24\x14\x1a\x22\x13\x1a\x21\x11\x19\x20\x10\x18\ \x20\x12\x19\x22\x0f\x17\x1e\x0f\x16\x1b\x11\x18\x1f\x0f\x16\x1f\ \x11\x17\x22\x10\x16\x21\x0f\x15\x1f\x0e\x17\x21\x0f\x18\x22\x0f\ \x18\x22\x0d\x16\x20\x0d\x16\x20\x0c\x16\x1e\x0e\x14\x1f\x0c\x12\ \x1d\x0b\x14\x1b\x0c\x14\x1a\x0c\x12\x19\x0b\x11\x18\x0d\x13\x1a\ \x0b\x11\x18\x0d\x14\x1a\x0d\x14\x1b\x0c\x11\x1a\x0e\x12\x1d\x0f\ \x13\x1f\x11\x17\x20\x13\x1a\x23\x15\x1f\x27\x17\x22\x28\x19\x25\ \x2b\x1a\x27\x2d\x1e\x29\x31\x21\x2b\x35\x24\x2e\x37\x24\x2f\x38\ \x25\x2f\x38\x23\x2f\x36\x24\x30\x37\x24\x30\x38\x24\x30\x38\x24\ \x2e\x36\x24\x2e\x36\x23\x2f\x35\x23\x2f\x35\x24\x2d\x36\x1f\x2a\ \x30\x1f\x2a\x2e\x1d\x28\x2c\x1f\x29\x2f\x1c\x26\x2d\x1e\x29\x2d\ \x1e\x29\x2d\x1f\x2a\x2f\x1d\x28\x2d\x1e\x2a\x2b\x1d\x29\x2b\x1d\ \x27\x2c\x00\x00\x00\x52\x96\xd9\x53\x97\xd8\x55\x99\xd9\x58\x99\ \xdb\x58\x9a\xdb\x57\x99\xda\x54\x96\xd7\x4f\x90\xd3\x49\x89\xcd\ \x47\x87\xcb\x45\x83\xc7\x46\x82\xc6\x45\x85\xc9\x49\x8b\xcd\x4d\ \x8f\xd0\x50\x92\xd3\x51\x92\xd6\x4e\x90\xd6\x4b\x8a\xd4\x46\x83\ \xcf\x42\x80\xcc\x3d\x7b\xc6\x3b\x75\xc0\x3c\x75\xbc\x44\x7b\xbc\ \x43\x79\xb6\x3f\x75\xb1\x3f\x74\xae\x45\x78\xac\x48\x79\xac\x45\ \x75\xad\x4b\x7a\xb6\x4e\x7d\xb7\x4a\x79\xac\x52\x7a\xa1\x77\x96\ \xb4\x96\xb3\xcb\xae\xc9\xdf\xbd\xd8\xed\xc4\xdf\xf4\xc5\xe0\xf5\ \xc5\xe0\xf5\xc4\xe0\xf4\xc5\xe0\xf5\xc7\xe2\xf7\xc6\xe1\xf6\xc6\ \xe1\xf6\xc6\xe1\xf7\xc6\xe0\xf8\xc5\xe0\xf8\xc5\xe0\xf8\xc5\xdf\ \xf7\xc4\xdf\xf7\xc5\xdf\xf7\xc6\xe0\xf8\xc7\xe0\xf8\xc5\xe0\xf8\ \xc5\xe0\xf8\xc5\xdf\xf7\xc4\xdf\xf6\xc1\xde\xf3\xbc\xda\xf0\xae\ \xce\xe4\x9a\xb9\xd1\x7d\x9a\xb3\x5d\x76\x8f\x6b\x84\x9f\x89\xa2\ \xc1\x99\xb5\xd4\xa6\xc2\xe3\xb0\xcb\xec\xb0\xcc\xeb\xb0\xcc\xec\ \xb0\xcb\xed\xaf\xcb\xee\xae\xca\xed\xad\xca\xec\xad\xc9\xec\xae\ \xca\xed\xb0\xcc\xef\xb2\xcd\xf0\xb4\xce\xf2\xb6\xd0\xf4\xb6\xd0\ \xf4\xb5\xd0\xf4\xb4\xcf\xf1\xae\xc9\xed\xa1\xbc\xe1\x89\xa8\xcf\ \x73\x89\xb0\x7c\x83\x9f\x96\x91\x9e\xa2\x93\x9a\xa1\x93\x9b\x93\ \x85\x88\x63\x5f\x65\x21\x28\x34\x1a\x22\x2e\x15\x1f\x27\x14\x1c\ \x23\x13\x19\x20\x15\x1b\x22\x15\x1b\x22\x11\x17\x1d\x12\x17\x20\ \x11\x16\x1f\x11\x16\x1f\x11\x17\x1e\x12\x17\x20\x0f\x15\x20\x11\ \x17\x22\x0f\x15\x20\x0f\x16\x23\x10\x19\x23\x0f\x18\x22\x0d\x16\ \x1f\x0d\x16\x1f\x0e\x14\x20\x0d\x13\x1e\x0d\x14\x1d\x0b\x12\x1b\ \x0e\x14\x1d\x0d\x12\x1b\x0b\x10\x19\x0c\x0f\x19\x0f\x10\x1a\x0d\ \x10\x1a\x0d\x12\x1a\x0d\x12\x1b\x0d\x12\x1b\x10\x14\x1e\x0f\x18\ \x1f\x13\x1d\x24\x14\x1f\x27\x16\x21\x29\x18\x22\x2b\x1c\x25\x2e\ \x1e\x28\x32\x20\x2a\x33\x21\x2c\x33\x22\x2d\x33\x20\x2a\x30\x1f\ \x2a\x2d\x1f\x29\x2c\x1e\x28\x2c\x20\x29\x2f\x20\x28\x2f\x1f\x28\ \x2c\x1e\x28\x2c\x1b\x26\x2a\x1d\x26\x2b\x1c\x25\x28\x1b\x24\x27\ \x1b\x24\x27\x1a\x23\x26\x1a\x23\x26\x1a\x23\x26\x1a\x23\x26\x19\ \x22\x26\x1a\x23\x26\x1a\x23\x26\x1c\x24\x28\x1a\x23\x27\x00\x00\ \x00\x50\x95\xd8\x53\x98\xd9\x54\x97\xd8\x57\x99\xdb\x56\x98\xda\ \x56\x99\xda\x54\x97\xd8\x50\x92\xd4\x4a\x8b\xcf\x47\x86\xca\x43\ \x82\xc6\x45\x82\xc6\x46\x84\xc8\x4d\x8c\xce\x51\x91\xd2\x54\x93\ \xd5\x54\x93\xd7\x50\x91\xd6\x4d\x8d\xd4\x49\x87\xd2\x43\x81\xcd\ \x3e\x7c\xc7\x3d\x77\xc1\x3b\x76\xbc\x43\x7b\xbd\x43\x7b\xb8\x40\ \x75\xb2\x40\x73\xae\x45\x79\xae\x49\x7b\xaf\x47\x7a\xb2\x4e\x81\ \xbc\x52\x86\xc0\x4f\x81\xb7\x56\x81\xaa\x77\x9a\xb9\x9b\xb6\xcf\ \xb1\xcb\xe1\xc1\xd9\xee\xc7\xde\xf4\xc7\xe1\xf6\xc9\xe0\xf7\xc9\ \xe1\xf7\xc9\xe0\xf6\xc9\xe1\xf7\xc8\xe1\xf7\xc7\xe2\xf7\xc7\xe2\ \xf7\xc6\xe2\xf7\xc6\xe1\xf8\xc7\xe1\xf8\xc7\xe1\xf9\xc6\xe0\xf8\ \xc6\xe0\xf8\xc7\xe1\xf9\xc8\xe0\xf7\xc7\xe1\xf6\xc7\xe2\xf7\xc7\ \xe2\xf6\xc6\xe1\xf6\xc4\xe1\xf6\xbf\xda\xf1\xb2\xd0\xe8\x9e\xbd\ \xd6\x84\xa1\xb9\x66\x7f\x99\x6e\x85\xa1\x88\xa0\xbf\x99\xb4\xd5\ \xa6\xc1\xe3\xae\xca\xea\xb0\xcc\xeb\xaf\xcb\xeb\xaf\xca\xec\xae\ \xca\xed\xad\xc9\xec\xad\xca\xec\xae\xca\xed\xaf\xcb\xee\xb1\xcb\ \xef\xb2\xcc\xf0\xb5\xcf\xf3\xb6\xcf\xf3\xb6\xd0\xf3\xb6\xd0\xf3\ \xb4\xcf\xf1\xac\xc8\xec\x9f\xb9\xdf\x87\xa4\xcd\x70\x85\xab\x82\ \x86\xa3\x99\x91\x9f\xa2\x93\x9e\xa0\x91\x9c\x8e\x82\x87\x5a\x56\ \x5d\x20\x27\x30\x1a\x23\x2c\x15\x1e\x26\x12\x19\x1f\x14\x19\x1e\ \x12\x18\x1f\x12\x18\x1f\x12\x18\x1f\x11\x16\x1e\x10\x15\x1e\x11\ \x16\x1f\x11\x16\x1d\x11\x16\x20\x0f\x15\x20\x0f\x15\x20\x10\x16\ \x21\x0f\x17\x23\x0f\x18\x24\x10\x19\x24\x0f\x18\x22\x0e\x16\x20\ \x0e\x14\x1f\x0d\x13\x1e\x0d\x13\x1e\x0d\x12\x1c\x0d\x12\x1c\x0d\ \x12\x1b\x0c\x11\x1a\x0d\x11\x1a\x0d\x0f\x19\x0d\x11\x19\x0c\x12\ \x19\x0c\x12\x19\x0e\x14\x1c\x11\x16\x1e\x13\x1b\x24\x17\x20\x29\ \x17\x22\x2a\x18\x23\x2b\x1b\x25\x2d\x1f\x28\x32\x1d\x27\x31\x20\ \x2b\x34\x20\x2a\x32\x20\x29\x2f\x1f\x27\x2c\x1c\x25\x28\x1a\x23\ \x26\x1c\x23\x26\x1b\x23\x27\x1c\x25\x29\x1b\x24\x28\x1d\x26\x2a\ \x1a\x25\x29\x1a\x24\x28\x1c\x25\x28\x1a\x24\x25\x1b\x25\x26\x1a\ \x23\x26\x19\x22\x25\x19\x23\x26\x19\x22\x25\x1a\x23\x27\x1a\x23\ \x26\x1a\x23\x25\x1a\x23\x26\x1b\x25\x27\x00\x00\x00\x50\x96\xd9\ \x51\x98\xd9\x52\x99\xda\x53\x99\xdc\x52\x97\xda\x52\x97\xda\x52\ \x98\xdb\x4e\x92\xd6\x48\x8c\xd0\x47\x88\xcc\x45\x84\xc8\x44\x81\ \xc4\x45\x84\xc7\x4a\x8a\xcb\x51\x91\xd1\x55\x95\xd5\x56\x96\xd9\ \x54\x95\xd8\x50\x90\xd5\x49\x89\xd2\x47\x85\xd1\x42\x80\xcb\x3e\ \x7a\xc3\x3c\x78\xbe\x41\x7b\xbe\x42\x7c\xba\x3e\x75\xb2\x40\x74\ \xb0\x44\x79\xb0\x4a\x7d\xb5\x49\x7e\xb6\x4f\x85\xbf\x52\x89\xc4\ \x51\x87\xbd\x54\x82\xae\x73\x99\xba\x9a\xb6\xce\xaf\xc8\xdf\xbf\ \xd7\xec\xc8\xdf\xf5\xc9\xe1\xf7\xc8\xe1\xf7\xc8\xe0\xf6\xc9\xe1\ \xf7\xc9\xe1\xf7\xc8\xe1\xf7\xc8\xe1\xf7\xc9\xe1\xf7\xc9\xe1\xf7\ \xc9\xe1\xf7\xc7\xe2\xf7\xc6\xe1\xf7\xc7\xe1\xf7\xc7\xe1\xf7\xc7\ \xe1\xf7\xc8\xe1\xf6\xca\xe2\xf8\xc9\xe2\xf7\xc7\xe1\xf6\xc6\xe2\ \xf7\xc6\xe1\xf6\xc1\xdd\xf3\xb4\xd2\xe9\xa0\xbf\xd7\x84\xa2\xbb\ \x67\x82\x9c\x70\x88\xa6\x88\xa2\xc1\x99\xb3\xd5\xa5\xc0\xe3\xae\ \xc9\xeb\xaf\xcb\xea\xaf\xcb\xeb\xaf\xca\xed\xae\xc8\xec\xae\xc9\ \xec\xae\xc9\xed\xaf\xc9\xed\xb1\xcb\xef\xb3\xcd\xf1\xb4\xce\xf2\ \xb5\xcf\xf3\xb8\xd0\xf4\xb8\xd1\xf5\xb5\xd0\xf2\xb4\xcf\xf1\xab\ \xc6\xea\x9e\xb7\xdf\x87\xa2\xcb\x73\x87\xac\x89\x8c\xa7\x97\x90\ \x9f\xa0\x94\x9f\x9b\x90\x9b\x87\x7d\x84\x49\x49\x51\x1d\x24\x2e\ \x1b\x24\x2b\x16\x1f\x26\x15\x1b\x20\x15\x19\x1e\x15\x19\x1f\x13\ \x19\x20\x14\x1a\x1f\x11\x17\x20\x11\x16\x1f\x0f\x15\x1d\x10\x16\ \x1d\x0f\x15\x1e\x0e\x14\x1f\x0e\x14\x1f\x0f\x14\x1f\x0d\x15\x21\ \x0f\x17\x24\x10\x18\x26\x0f\x18\x23\x0f\x18\x22\x0e\x14\x20\x0e\ \x13\x1e\x0f\x13\x1e\x0e\x12\x1d\x0c\x10\x1b\x0b\x12\x18\x0c\x11\ \x19\x0c\x12\x19\x0d\x10\x18\x0d\x11\x17\x0c\x12\x17\x0c\x12\x19\ \x0f\x15\x1c\x12\x1a\x21\x16\x1e\x27\x17\x20\x29\x17\x22\x2a\x19\ \x24\x2c\x1d\x28\x30\x1e\x29\x32\x1f\x29\x33\x1e\x2a\x33\x1f\x2a\ \x31\x1e\x27\x2c\x1c\x24\x28\x1c\x22\x27\x1b\x22\x26\x1b\x22\x24\ \x1c\x23\x26\x1b\x22\x25\x1c\x25\x28\x1e\x27\x2b\x1c\x25\x29\x1a\ \x23\x28\x1c\x25\x28\x1a\x24\x24\x1a\x24\x24\x1c\x25\x28\x1b\x24\ \x24\x1a\x21\x22\x1a\x21\x24\x1c\x23\x26\x1a\x22\x23\x1d\x25\x25\ \x1b\x23\x23\x1b\x23\x23\x00\x00\x00\x50\x96\xd9\x50\x97\xda\x50\ \x97\xda\x50\x97\xdb\x51\x97\xdc\x51\x97\xdc\x50\x96\xdb\x4c\x92\ \xd7\x48\x8c\xd1\x45\x87\xcb\x45\x85\xc8\x45\x82\xc4\x46\x85\xc7\ \x4b\x8b\xcb\x4f\x8f\xcf\x55\x95\xd6\x56\x96\xd8\x52\x97\xd7\x50\ \x94\xd8\x4a\x8b\xd5\x47\x88\xd2\x43\x83\xcd\x41\x7d\xc7\x3c\x78\ \xbf\x3f\x7c\xbd\x43\x7e\xbd\x3d\x76\xb4\x3e\x75\xb1\x43\x78\xb1\ \x48\x7c\xb5\x49\x7e\xb7\x4d\x84\xbd\x54\x8c\xc8\x52\x88\xc1\x53\ \x82\xb2\x6d\x95\xb7\x93\xb2\xca\xac\xc8\xde\xbd\xd6\xeb\xc6\xde\ \xf4\xc8\xe1\xf7\xc7\xe1\xf7\xc7\xe1\xf7\xc7\xe1\xf7\xc7\xe1\xf7\ \xc9\xe2\xf8\xca\xe2\xf8\xca\xe1\xf8\xc9\xe2\xf7\xca\xe3\xf7\xc8\ \xe1\xf6\xc8\xe1\xf6\xc8\xe1\xf6\xc8\xe1\xf7\xc8\xe1\xf7\xc9\xe1\ \xf7\xc9\xe1\xf7\xc9\xe1\xf7\xc9\xe1\xf7\xc7\xe2\xf7\xc9\xe1\xf7\ \xc3\xde\xf5\xb7\xd4\xec\xa2\xc1\xd9\x86\xa5\xbe\x6b\x87\xa1\x6f\ \x89\xa7\x89\xa2\xc2\x9b\xb6\xd8\xa7\xc2\xe5\xaf\xca\xec\xaf\xca\ \xeb\xaf\xca\xec\xaf\xc9\xec\xae\xc8\xec\xae\xc8\xec\xaf\xc9\xed\ \xb0\xca\xee\xb0\xca\xee\xb2\xcc\xf0\xb5\xce\xf2\xb6\xcf\xf3\xb8\ \xd0\xf4\xb8\xd1\xf4\xb7\xd2\xf4\xb4\xcf\xf1\xab\xc7\xeb\x9d\xb7\ \xdf\x88\xa1\xc8\x7b\x8a\xae\x8c\x8e\xa7\x94\x8e\x9b\x97\x90\x9c\ \x93\x8b\x95\x7b\x75\x7c\x36\x38\x41\x1d\x27\x31\x1b\x23\x2c\x17\ \x1f\x26\x17\x1c\x22\x14\x18\x1d\x15\x18\x1f\x13\x18\x1e\x13\x19\ \x1e\x11\x17\x1e\x10\x16\x1e\x10\x16\x1d\x0e\x14\x1b\x0d\x13\x1d\ \x0c\x12\x1d\x0d\x13\x1e\x0e\x14\x1f\x0d\x16\x20\x0d\x16\x20\x10\ \x19\x23\x10\x19\x23\x0f\x17\x21\x0f\x16\x1e\x0f\x15\x1c\x0e\x13\ \x1c\x0e\x12\x1c\x0d\x12\x1a\x0d\x13\x1a\x0c\x12\x19\x0c\x11\x18\ \x0e\x11\x19\x0b\x0e\x16\x0b\x10\x17\x0e\x13\x1b\x0f\x16\x1f\x13\ \x1a\x23\x17\x1f\x29\x19\x22\x2c\x1a\x24\x2e\x1c\x27\x2f\x1d\x28\ \x30\x1d\x28\x31\x1f\x2a\x34\x1e\x2a\x33\x1e\x27\x2f\x1d\x26\x2a\ \x19\x22\x26\x18\x20\x24\x19\x20\x25\x19\x1f\x23\x1a\x20\x23\x1a\ \x20\x24\x1a\x21\x24\x19\x22\x26\x1a\x23\x27\x1b\x22\x27\x19\x22\ \x23\x19\x21\x21\x18\x21\x21\x19\x22\x23\x19\x21\x21\x19\x21\x21\ \x18\x20\x22\x17\x1e\x21\x18\x1f\x22\x19\x20\x23\x19\x20\x23\x18\ \x1f\x22\x00\x00\x00\x50\x97\xda\x50\x97\xdb\x50\x97\xdb\x50\x97\ \xdb\x51\x98\xdc\x50\x97\xdb\x4f\x96\xda\x4d\x93\xd7\x47\x8b\xd1\ \x46\x88\xcd\x46\x87\xca\x46\x84\xc6\x45\x83\xc5\x4b\x8a\xcb\x51\ \x90\xd1\x56\x96\xd6\x57\x97\xd8\x56\x99\xda\x53\x97\xd9\x4e\x91\ \xd7\x49\x8a\xd4\x44\x85\xcf\x42\x80\xca\x3e\x7a\xc2\x40\x7c\xc0\ \x43\x7e\xbe\x3e\x77\xb4\x3c\x74\xaf\x42\x77\xb0\x47\x7b\xb4\x4b\ \x7d\xb7\x4c\x83\xbc\x54\x8a\xc6\x53\x8a\xc5\x55\x85\xb6\x69\x91\ \xb7\x90\xb0\xc8\xa8\xc5\xdb\xba\xd5\xe9\xc5\xdd\xf3\xc9\xe1\xf8\ \xc7\xe2\xf7\xc7\xe1\xf6\xc7\xe1\xf6\xc8\xe2\xf8\xc9\xe3\xf8\xca\ \xe2\xf7\xca\xe2\xf7\xca\xe3\xf7\xc9\xe2\xf6\xc9\xe2\xf8\xc9\xe2\ \xf8\xc9\xe1\xf7\xc9\xe0\xf6\xc9\xe1\xf7\xcb\xe2\xf8\xcb\xe3\xf9\ \xcb\xe3\xf9\xca\xe2\xf8\xc9\xe2\xf8\xc9\xe2\xf7\xc4\xdf\xf6\xb8\ \xd5\xed\xa3\xc2\xda\x89\xa7\xc0\x6e\x8a\xa4\x6f\x89\xa6\x89\xa2\ \xc2\x99\xb4\xd5\xa6\xc0\xe3\xad\xc8\xea\xac\xc7\xe9\xaa\xc5\xe8\ \xa9\xc3\xe7\xa8\xc2\xe6\xa7\xc1\xe5\xa7\xc1\xe5\xa9\xc3\xe7\xab\ \xc4\xe8\xad\xc5\xe9\xaf\xc8\xec\xb2\xc9\xed\xb3\xcb\xed\xb3\xcc\ \xef\xb1\xcc\xef\xb0\xca\xed\xa8\xc3\xe7\x98\xb2\xdc\x86\x9d\xc4\ \x85\x92\xb2\x8c\x8e\xa2\x8f\x8b\x97\x8e\x8b\x94\x89\x85\x8d\x66\ \x66\x6c\x24\x2b\x34\x1b\x26\x31\x19\x22\x2a\x16\x1e\x24\x12\x18\ \x1c\x12\x16\x1b\x13\x16\x1d\x13\x17\x1d\x0f\x15\x1b\x0f\x14\x1b\ \x0d\x13\x1a\x0e\x14\x1a\x0b\x11\x19\x0b\x12\x1c\x0b\x12\x1d\x0e\ \x14\x20\x0e\x14\x1f\x0d\x15\x1f\x0c\x15\x1e\x0e\x17\x20\x11\x19\ \x23\x0e\x16\x20\x0f\x16\x1d\x0e\x14\x1b\x0e\x14\x1c\x0d\x13\x1b\ \x0c\x10\x19\x0b\x11\x18\x0c\x11\x18\x0c\x11\x18\x0d\x10\x19\x0d\ \x0f\x19\x0c\x0e\x19\x0e\x11\x1b\x10\x16\x1f\x14\x1a\x25\x17\x1f\ \x2a\x18\x21\x2c\x1c\x26\x30\x1d\x28\x31\x1e\x2a\x32\x1e\x2a\x34\ \x1e\x2a\x35\x1f\x29\x32\x1c\x25\x2d\x1a\x23\x27\x17\x22\x25\x15\ \x1e\x22\x14\x1d\x21\x16\x1f\x22\x17\x20\x20\x19\x21\x22\x1a\x21\ \x23\x18\x20\x23\x18\x21\x25\x1a\x22\x26\x1b\x22\x24\x1b\x23\x23\ \x1a\x22\x22\x19\x21\x21\x1b\x23\x23\x1a\x22\x22\x19\x20\x21\x19\ \x20\x23\x18\x1f\x23\x19\x1f\x24\x18\x1e\x23\x18\x1f\x23\x00\x00\ \x00\x50\x97\xdb\x50\x97\xdb\x51\x98\xdc\x51\x98\xda\x4f\x96\xda\ \x4e\x95\xd9\x4f\x96\xda\x4d\x93\xd8\x48\x8d\xd2\x46\x8b\xce\x45\ \x87\xcb\x43\x83\xc7\x47\x84\xc7\x4c\x89\xcb\x53\x91\xd2\x58\x96\ \xd6\x5a\x99\xd9\x58\x98\xd9\x57\x9a\xdb\x52\x94\xd9\x4e\x90\xd7\ \x47\x89\xd2\x40\x81\xcb\x3e\x7c\xc5\x41\x7c\xc3\x44\x7e\xc0\x41\ \x79\xb6\x3e\x73\xaf\x41\x76\xaf\x45\x7a\xb3\x47\x7c\xb7\x48\x80\ \xbc\x4f\x88\xc1\x52\x8b\xc3\x50\x83\xb6\x65\x8c\xb4\x8c\xac\xc7\ \xa7\xc3\xda\xba\xd4\xe8\xc5\xde\xf3\xc8\xe1\xf7\xc8\xe0\xf6\xc9\ \xe1\xf7\xc8\xe0\xf6\xc9\xe1\xf7\xca\xe2\xf8\xc9\xe3\xf6\xc9\xe2\ \xf6\xcb\xe4\xf8\xcb\xe4\xf7\xc8\xe2\xf8\xc9\xe2\xf8\xc9\xe1\xf7\ \xc8\xe0\xf6\xca\xe2\xf8\xca\xe1\xf7\xcb\xe3\xf9\xca\xe2\xf8\xca\ \xe2\xf8\xca\xe1\xf8\xc8\xe2\xf8\xc2\xdf\xf7\xb7\xd6\xed\xa6\xc4\ \xdb\x8b\xa8\xc1\x6e\x88\xa3\x71\x87\xa5\x85\x9b\xbb\x94\xad\xcf\ \x9d\xb8\xda\xa3\xbf\xe1\xa2\xbd\xdf\xa0\xbb\xde\x9f\xb9\xdd\x9b\ \xb5\xd9\x9a\xb6\xd9\x99\xb5\xd8\x9b\xb4\xd8\x9f\xb7\xdb\xa0\xb7\ \xdd\xa2\xba\xde\xa5\xbe\xe1\xa7\xc0\xe2\xa9\xc2\xe2\xaa\xc2\xe5\ \xa7\xc0\xe2\x9c\xb6\xda\x8e\xa8\xcf\x7b\x93\xb7\x85\x91\xac\x8b\ \x8b\x9d\x88\x86\x95\x8b\x87\x91\x7f\x7d\x82\x4f\x54\x5b\x1f\x28\ \x32\x1b\x25\x2f\x18\x22\x28\x15\x1e\x21\x12\x17\x1c\x12\x15\x1b\ \x12\x15\x1d\x12\x15\x1d\x10\x12\x1c\x0f\x14\x1a\x0e\x14\x1a\x0d\ \x12\x1a\x0d\x14\x1d\x0c\x12\x1d\x0c\x12\x1f\x0c\x12\x1f\x0f\x15\ \x21\x0d\x16\x20\x0d\x16\x20\x0c\x16\x20\x11\x17\x22\x0f\x15\x20\ \x0e\x15\x1e\x0d\x14\x1d\x0d\x13\x1c\x0b\x10\x19\x0c\x11\x1a\x0c\ \x12\x1a\x0d\x10\x18\x0d\x10\x18\x0c\x0e\x1a\x0e\x10\x1b\x0e\x10\ \x1c\x0e\x12\x1c\x11\x17\x20\x15\x1c\x25\x1b\x23\x2c\x1b\x24\x2e\ \x1b\x24\x31\x1e\x29\x35\x20\x2c\x36\x1e\x2a\x34\x20\x2b\x35\x1e\ \x28\x32\x1b\x24\x2d\x1a\x23\x27\x17\x20\x23\x18\x1f\x22\x19\x20\ \x23\x17\x1f\x22\x18\x20\x22\x1a\x22\x22\x1b\x24\x23\x1a\x23\x26\ \x1a\x23\x27\x19\x22\x27\x1b\x23\x25\x1b\x23\x24\x1a\x22\x23\x1a\ \x22\x26\x1b\x22\x25\x1b\x22\x25\x1b\x22\x25\x1b\x22\x24\x1b\x21\ \x25\x1a\x21\x24\x1a\x21\x24\x1c\x23\x26\x00\x00\x00\x51\x98\xdc\ \x50\x97\xdb\x50\x97\xdb\x51\x98\xdc\x4f\x96\xda\x50\x97\xdb\x4f\ \x96\xda\x4d\x94\xd8\x4a\x90\xd4\x46\x8b\xce\x46\x88\xcc\x44\x86\ \xca\x48\x86\xc8\x4d\x8a\xcc\x53\x91\xd2\x58\x96\xd6\x5b\x9a\xd8\ \x5a\x9a\xda\x59\x9c\xdc\x54\x98\xdb\x50\x92\xd8\x4a\x8c\xd3\x44\ \x85\xcd\x41\x80\xc7\x42\x7d\xc4\x44\x7f\xc0\x41\x7a\xb9\x3c\x73\ \xaf\x40\x75\xaf\x43\x78\xb1\x45\x7a\xb3\x46\x7c\xb8\x4e\x87\xbf\ \x52\x8c\xc4\x50\x84\xb8\x63\x8b\xb4\x8a\xaa\xc7\xa4\xc1\xd9\xb8\ \xd2\xe6\xc5\xde\xf2\xc8\xe1\xf6\xc9\xe0\xf7\xc8\xe0\xf6\xca\xe2\ \xf8\xc9\xe1\xf7\xca\xe2\xf8\xca\xe2\xf7\xc9\xe2\xf7\xca\xe2\xf7\ \xc9\xe2\xf7\xc8\xe3\xf8\xc8\xe1\xf7\xc9\xe0\xf6\xc9\xe1\xf7\xc9\ \xe0\xf6\xc9\xe1\xf7\xca\xe2\xf8\xc9\xe1\xf7\xca\xe2\xf8\xc9\xe1\ \xf7\xc8\xe2\xf8\xc3\xde\xf6\xb7\xd4\xec\xa5\xc4\xdb\x8a\xa7\xbf\ \x6e\x87\xa1\x6b\x82\x9d\x7c\x92\xb0\x88\xa2\xc2\x93\xac\xce\x96\ \xb0\xd2\x92\xad\xcf\x8f\xaa\xcc\x8a\xa5\xc6\x87\xa2\xc4\x86\xa2\ \xc3\x85\xa1\xc3\x86\xa0\xc2\x89\xa1\xc4\x8f\xa5\xca\x93\xa8\xcc\ \x94\xab\xcd\x97\xae\xcf\x98\xae\xd0\x99\xaf\xd2\x96\xad\xd0\x8c\ \xa7\xc8\x7c\x96\xb9\x70\x83\xa6\x85\x8b\xa4\x89\x87\x97\x86\x81\ \x8e\x89\x83\x8d\x78\x76\x7c\x40\x43\x4c\x20\x29\x33\x1c\x25\x2f\ \x18\x22\x29\x14\x1d\x21\x12\x18\x1d\x14\x16\x1e\x11\x15\x1d\x11\ \x16\x1e\x11\x15\x1e\x0f\x14\x1d\x0e\x14\x1c\x0d\x11\x1c\x0e\x12\ \x1c\x0f\x13\x1e\x0e\x14\x20\x0d\x14\x21\x0d\x15\x21\x0d\x16\x20\ \x0d\x16\x20\x0d\x13\x1e\x11\x16\x21\x10\x16\x21\x10\x17\x20\x0d\ \x14\x1d\x0e\x14\x1d\x0e\x13\x1c\x0d\x12\x1b\x0c\x11\x19\x0d\x13\ \x1a\x0d\x11\x19\x0c\x0e\x18\x0d\x0f\x19\x0d\x10\x19\x0f\x14\x1d\ \x13\x1a\x23\x16\x1f\x28\x19\x22\x2b\x1c\x26\x30\x20\x29\x35\x21\ \x2b\x37\x21\x2d\x37\x22\x2e\x37\x21\x2d\x35\x21\x2b\x32\x1d\x27\ \x2b\x1b\x24\x27\x19\x21\x24\x1a\x21\x24\x1b\x22\x25\x1a\x22\x25\ \x1b\x23\x26\x1c\x23\x25\x1c\x24\x24\x1d\x26\x28\x1c\x25\x29\x1c\ \x25\x28\x1d\x26\x26\x1f\x27\x27\x1f\x27\x29\x1d\x26\x29\x1f\x26\ \x29\x1e\x25\x28\x1f\x25\x2a\x1e\x24\x29\x1d\x23\x28\x1e\x25\x28\ \x1d\x24\x27\x1d\x24\x27\x00\x00\x00\x51\x98\xdb\x50\x97\xdb\x50\ \x98\xdc\x4f\x96\xda\x50\x97\xdb\x4f\x97\xdb\x4e\x96\xd9\x4e\x95\ \xd9\x4b\x91\xd6\x46\x8b\xcf\x45\x89\xcc\x45\x87\xcb\x48\x86\xc8\ \x4c\x89\xcb\x52\x90\xd0\x58\x97\xd4\x5c\x9b\xd8\x5c\x9c\xda\x5b\ \x9d\xdd\x55\x99\xdb\x51\x94\xd9\x4e\x90\xd7\x48\x89\xd0\x42\x81\ \xc7\x42\x7f\xc3\x43\x80\xc1\x41\x7c\xba\x3d\x75\xb1\x3d\x73\xad\ \x43\x7a\xb0\x43\x79\xb1\x46\x7c\xb5\x4c\x84\xbd\x50\x8a\xc5\x50\ \x86\xbc\x5e\x89\xb3\x86\xa6\xc6\xa0\xbd\xd7\xb7\xd1\xe5\xc3\xdc\ \xf0\xc8\xe1\xf6\xc9\xe0\xf6\xca\xe2\xf8\xca\xe2\xf8\xc9\xe0\xf6\ \xca\xe1\xf7\xca\xe2\xf8\xc9\xe1\xf7\xc8\xe0\xf6\xc8\xe0\xf6\xc9\ \xe1\xf7\xc7\xe2\xf6\xc6\xe2\xf6\xc6\xe2\xf6\xc6\xe2\xf6\xc8\xe1\ \xf6\xc9\xe1\xf7\xca\xe2\xf8\xc9\xe1\xf7\xc8\xe1\xf7\xc7\xe2\xf7\ \xc3\xde\xf6\xb8\xd5\xec\xa4\xc3\xda\x8b\xa9\xc0\x6a\x84\x9c\x60\ \x75\x8f\x6a\x7e\x99\x76\x8f\xa9\x7d\x97\xb4\x7f\x99\xb8\x78\x90\ \xae\x75\x8d\xab\x6d\x85\xa1\x6b\x81\x9b\x67\x7e\x97\x63\x7a\x94\ \x67\x7d\x97\x6c\x7e\x99\x6e\x81\x9c\x73\x86\xa1\x77\x8a\xa5\x7a\ \x8d\xa7\x7d\x90\xab\x7e\x92\xb0\x7b\x92\xb1\x70\x89\xaa\x64\x7b\ \x9d\x61\x70\x8c\x7d\x7f\x92\x86\x80\x8c\x85\x7f\x89\x84\x7f\x86\ \x6f\x6f\x77\x32\x37\x41\x20\x2a\x35\x1d\x26\x30\x1c\x24\x2b\x18\ \x21\x25\x15\x1b\x20\x13\x19\x1f\x11\x17\x1e\x10\x18\x1e\x11\x17\ \x1f\x10\x15\x1e\x10\x14\x1e\x0f\x14\x1e\x0f\x12\x1d\x10\x14\x1e\ \x0d\x12\x1f\x0c\x13\x20\x0f\x16\x22\x0d\x15\x1f\x0e\x14\x1f\x0e\ \x14\x1f\x0e\x14\x1f\x10\x16\x20\x0e\x15\x1e\x0e\x15\x1e\x0d\x13\ \x1c\x0c\x11\x1a\x0d\x12\x1b\x0c\x12\x1a\x0c\x12\x18\x0c\x12\x19\ \x0c\x10\x19\x0e\x11\x1a\x0e\x12\x1b\x10\x16\x1f\x11\x19\x22\x17\ \x21\x29\x1b\x26\x2e\x1e\x29\x32\x21\x2a\x37\x23\x2c\x38\x24\x2f\ \x39\x24\x31\x39\x23\x2f\x34\x21\x2c\x2f\x1f\x28\x2b\x1e\x27\x2a\ \x1c\x25\x28\x1e\x25\x28\x1f\x26\x29\x1d\x25\x28\x1f\x27\x2a\x1f\ \x26\x29\x1f\x28\x28\x1e\x28\x29\x20\x29\x2c\x20\x2b\x2d\x20\x2a\ \x2a\x22\x2b\x2a\x21\x29\x2c\x21\x2a\x2e\x23\x2b\x2d\x23\x2a\x2d\ \x23\x2a\x2e\x22\x29\x2d\x23\x29\x2d\x21\x28\x2b\x23\x2a\x2d\x22\ \x29\x2c\x00\x00\x00\x50\x97\xdb\x50\x96\xdb\x4f\x97\xdb\x4c\x95\ \xd9\x4c\x95\xda\x4c\x96\xda\x4c\x97\xd8\x4e\x95\xd9\x4c\x93\xd7\ \x47\x8d\xd0\x46\x8a\xcd\x45\x88\xcb\x48\x86\xc8\x4b\x88\xca\x4f\ \x8e\xcc\x56\x95\xd2\x5e\x9d\xd9\x5d\x9d\xda\x5b\x9f\xdd\x57\x9c\ \xdc\x56\x9a\xdd\x50\x93\xd8\x4b\x8d\xd2\x46\x85\xcb\x43\x81\xc4\ \x43\x81\xc1\x41\x7d\xbc\x3b\x74\xb1\x3d\x74\xad\x42\x78\xaf\x43\ \x79\xb0\x45\x7d\xb4\x4b\x82\xba\x4f\x88\xc5\x51\x86\xbe\x5c\x88\ \xb3\x82\xa3\xc3\x9f\xbc\xd7\xb4\xcd\xe2\xc2\xda\xee\xc8\xe0\xf5\ \xcb\xe2\xf8\xcb\xe2\xf8\xca\xe1\xf7\xcb\xe2\xf8\xcb\xe1\xf8\xc9\ \xe1\xf7\xc8\xe0\xf6\xc9\xe1\xf6\xc9\xe1\xf6\xc9\xe1\xf8\xc7\xe0\ \xf9\xc7\xe1\xf9\xc5\xdf\xf7\xc6\xe1\xf8\xc8\xe0\xf7\xc8\xe0\xf6\ \xc8\xe0\xf6\xc9\xe1\xf7\xc8\xe0\xf7\xc5\xe1\xf7\xc4\xde\xf6\xb9\ \xd3\xeb\xa5\xc3\xda\x89\xa7\xbe\x67\x7f\x96\x4f\x63\x79\x55\x67\ \x7c\x5b\x6e\x82\x5e\x74\x88\x5c\x72\x85\x51\x65\x76\x4b\x59\x6a\ \x44\x51\x60\x3d\x4a\x58\x37\x45\x53\x37\x45\x52\x37\x44\x52\x3e\ \x48\x56\x3d\x4a\x58\x47\x54\x63\x4a\x57\x66\x4a\x57\x66\x4e\x5b\ \x6a\x4d\x5b\x6c\x4e\x5e\x73\x4f\x5f\x78\x46\x54\x6e\x4f\x59\x6e\ \x72\x71\x7d\x82\x7a\x80\x83\x7c\x82\x80\x7b\x7f\x69\x69\x72\x2c\ \x31\x3b\x20\x2c\x37\x1e\x28\x31\x1d\x25\x2c\x17\x20\x23\x18\x20\ \x23\x17\x1e\x21\x13\x1b\x1e\x13\x1c\x1f\x11\x1a\x1e\x11\x18\x21\ \x11\x17\x20\x11\x16\x1f\x0f\x14\x1d\x0f\x14\x1e\x10\x12\x20\x10\ \x13\x21\x10\x15\x22\x0f\x15\x20\x0e\x14\x1f\x0d\x13\x1e\x0e\x13\ \x1e\x10\x14\x1f\x10\x17\x20\x0f\x16\x1f\x0e\x13\x1c\x0e\x13\x1c\ \x0d\x12\x1b\x0b\x12\x1b\x0b\x11\x18\x0b\x11\x16\x0b\x11\x17\x0e\ \x12\x1a\x10\x15\x1c\x11\x19\x20\x14\x1c\x25\x17\x22\x2a\x1d\x28\ \x30\x21\x2b\x35\x24\x2d\x3a\x29\x33\x3f\x2c\x35\x3f\x2a\x35\x3e\ \x28\x33\x39\x26\x31\x34\x22\x2b\x2e\x23\x2a\x2f\x21\x2b\x2b\x23\ \x2b\x2b\x23\x2b\x2b\x22\x2c\x2b\x24\x2c\x2f\x25\x2c\x2f\x27\x2f\ \x30\x26\x30\x32\x25\x2e\x31\x25\x30\x34\x29\x33\x35\x28\x31\x32\ \x28\x32\x33\x29\x35\x36\x2b\x33\x33\x2b\x33\x33\x2a\x32\x32\x2a\ \x32\x33\x2a\x31\x34\x2a\x31\x34\x2a\x31\x34\x28\x2f\x32\x00\x00\ \x00\x50\x97\xda\x51\x98\xdb\x50\x97\xdb\x50\x98\xdc\x4f\x96\xdb\ \x4f\x96\xda\x4f\x97\xda\x4f\x96\xd9\x4e\x94\xd9\x4a\x8e\xd4\x48\ \x8b\xd0\x47\x89\xcd\x46\x87\xc9\x49\x89\xca\x4f\x8d\xcc\x56\x93\ \xd0\x5c\x9a\xd6\x5c\x9e\xdb\x5d\xa0\xdd\x5d\xa0\xdf\x59\x9b\xdd\ \x55\x97\xda\x4f\x90\xd5\x46\x87\xcc\x42\x81\xc5\x45\x81\xc3\x44\ \x7e\xbe\x3f\x77\xb3\x3e\x74\xae\x41\x77\xae\x44\x7a\xb1\x44\x7b\ \xb2\x4a\x81\xb9\x4f\x88\xc4\x52\x86\xbf\x5a\x86\xb2\x7c\xa0\xc3\ \x9c\xb9\xd4\xb1\xcc\xe1\xbf\xd8\xed\xc8\xe0\xf4\xca\xe1\xf7\xcb\ \xe2\xf8\xca\xe1\xf7\xcb\xe1\xf8\xcb\xe2\xf8\xca\xe2\xf8\xc8\xe0\ \xf6\xc8\xe1\xf7\xc7\xe1\xf8\xc8\xe0\xf8\xc6\xe0\xf8\xc5\xdf\xf7\ \xc6\xe0\xf8\xc4\xe0\xf8\xc8\xe1\xf8\xc9\xe1\xf8\xc9\xe1\xf7\xc9\ \xe1\xf6\xc8\xe0\xf6\xc7\xe1\xf6\xc3\xdd\xf4\xb9\xd3\xeb\xa4\xc1\ \xda\x88\xa4\xbd\x66\x7d\x96\x40\x52\x66\x3c\x4a\x5a\x3a\x49\x55\ \x35\x44\x4e\x2a\x36\x3f\x1b\x23\x2c\x16\x1d\x25\x13\x19\x1e\x14\ \x1b\x22\x12\x1b\x20\x15\x1e\x22\x18\x20\x28\x1a\x21\x2a\x1b\x25\ \x2c\x1d\x27\x2e\x1e\x28\x2e\x1d\x27\x2c\x1b\x25\x2b\x19\x22\x2b\ \x19\x23\x2f\x1e\x28\x37\x1f\x29\x37\x3e\x41\x4e\x6d\x67\x6f\x7e\ \x76\x79\x7e\x79\x7c\x7d\x76\x7b\x6b\x68\x72\x2b\x31\x3b\x25\x2e\ \x3a\x21\x2a\x34\x1f\x29\x30\x1d\x27\x2b\x1d\x24\x27\x1c\x22\x23\ \x19\x1f\x21\x17\x1e\x23\x16\x1d\x22\x13\x1b\x20\x11\x19\x1e\x11\ \x18\x1f\x0f\x16\x20\x0e\x14\x20\x0f\x15\x22\x10\x15\x22\x0f\x15\ \x20\x10\x16\x21\x0f\x15\x20\x0d\x13\x1d\x0e\x14\x1e\x0f\x15\x1f\ \x10\x16\x21\x0e\x15\x1e\x0f\x15\x1d\x0e\x14\x1c\x0d\x13\x1b\x0d\ \x12\x1b\x0e\x14\x1c\x0e\x13\x1b\x0d\x10\x19\x0f\x12\x1b\x11\x16\ \x1e\x14\x1b\x23\x17\x20\x27\x1b\x27\x2d\x1f\x2b\x33\x25\x31\x3a\ \x2a\x34\x40\x2d\x36\x44\x31\x39\x46\x30\x3b\x43\x2d\x37\x3f\x2d\ \x36\x3e\x2c\x34\x3b\x2a\x33\x37\x2b\x34\x36\x2a\x34\x35\x2c\x35\ \x37\x2c\x35\x38\x2e\x36\x39\x2d\x34\x37\x2e\x37\x3a\x30\x39\x3c\ \x33\x3c\x3e\x32\x3c\x3e\x31\x3a\x3d\x33\x3c\x3e\x34\x3e\x3f\x32\ \x3d\x3d\x34\x3e\x3d\x35\x3e\x3c\x34\x3c\x3c\x35\x3d\x3d\x33\x3d\ \x3d\x34\x3a\x3f\x32\x38\x3c\x33\x39\x3e\x00\x00\x00\x50\x97\xda\ \x52\x99\xdc\x51\x97\xda\x51\x97\xda\x50\x96\xd9\x50\x96\xd9\x50\ \x96\xd9\x51\x97\xdb\x50\x95\xda\x4c\x90\xd5\x49\x8c\xd1\x48\x89\ \xcd\x47\x88\xc9\x49\x88\xc8\x4e\x8c\xcb\x53\x91\xcf\x59\x99\xd5\ \x5d\xa0\xdc\x5f\xa2\xde\x5e\xa2\xdf\x5d\x9f\xdf\x59\x9a\xdd\x53\ \x94\xd9\x4b\x8c\xd1\x46\x84\xc9\x44\x80\xc2\x46\x7f\xc0\x40\x77\ \xb5\x3f\x75\xaf\x41\x76\xae\x43\x79\xb0\x45\x7b\xb3\x48\x7e\xb7\ \x4e\x86\xc2\x52\x88\xc1\x58\x86\xb4\x76\x9d\xc1\x98\xb6\xd0\xae\ \xc9\xde\xbc\xd7\xeb\xc7\xdf\xf4\xcb\xe1\xf8\xc9\xe0\xf6\xcb\xe2\ \xf8\xcb\xe2\xf8\xca\xe1\xf7\xc9\xe1\xf7\xca\xe2\xf8\xc9\xe1\xf7\ \xc7\xe0\xf8\xc8\xe1\xf9\xc6\xe0\xf8\xc5\xdf\xf7\xc5\xdf\xf7\xc6\ \xe0\xf8\xc8\xe1\xf9\xc9\xe1\xf9\xc9\xe1\xf7\xc9\xe1\xf6\xc9\xe1\ \xf7\xc7\xdf\xf5\xc2\xdd\xf3\xb9\xd3\xeb\xa5\xc0\xda\x89\xa4\xbf\ \x61\x78\x90\x3c\x4d\x5f\x2f\x3b\x47\x26\x30\x39\x1c\x24\x2c\x10\ \x16\x1d\x0b\x10\x17\x0e\x11\x17\x0f\x14\x19\x12\x18\x1e\x12\x18\ \x1d\x15\x1d\x20\x17\x1f\x26\x1a\x20\x2a\x1b\x22\x2a\x1b\x23\x2b\ \x1b\x24\x29\x1a\x23\x26\x16\x1f\x23\x14\x1b\x22\x0f\x16\x20\x12\ \x19\x24\x11\x1a\x24\x38\x3a\x43\x6a\x64\x6b\x76\x70\x74\x77\x73\ \x77\x76\x70\x77\x67\x64\x6d\x2c\x32\x3c\x26\x30\x3a\x25\x2f\x37\ \x24\x30\x35\x25\x2e\x34\x23\x2a\x2c\x21\x26\x27\x1e\x24\x26\x1c\ \x22\x27\x18\x1e\x24\x15\x1e\x22\x15\x1e\x22\x11\x1a\x20\x0f\x16\ \x1f\x0e\x13\x1e\x0f\x15\x21\x10\x15\x20\x0e\x14\x1e\x0e\x15\x1f\ \x0e\x14\x1f\x0f\x16\x1f\x0e\x15\x1e\x0e\x14\x1e\x0f\x16\x20\x0f\ \x16\x1f\x11\x18\x1f\x0f\x15\x1c\x0f\x15\x1b\x0f\x14\x1c\x0e\x13\ \x1c\x0e\x13\x1b\x0e\x10\x19\x10\x15\x1d\x13\x19\x22\x14\x1b\x24\ \x18\x23\x29\x1d\x29\x2f\x23\x30\x37\x2a\x37\x3e\x31\x3b\x44\x34\ \x3e\x47\x38\x40\x4c\x38\x44\x49\x37\x41\x47\x35\x3e\x44\x34\x3c\ \x41\x32\x3b\x3f\x33\x3c\x3e\x33\x3c\x3c\x34\x3e\x3e\x36\x3f\x42\ \x36\x3f\x41\x38\x3f\x42\x38\x41\x44\x39\x42\x45\x3d\x46\x48\x3d\ \x46\x49\x3e\x47\x4a\x3e\x47\x49\x3f\x49\x49\x3e\x48\x48\x3e\x49\ \x47\x40\x48\x47\x3e\x46\x46\x3e\x47\x47\x3c\x45\x46\x3d\x45\x46\ \x3e\x45\x47\x3f\x46\x48\x00\x00\x00\x51\x98\xdb\x50\x97\xda\x51\ \x98\xdb\x52\x97\xda\x52\x98\xdb\x51\x97\xda\x51\x97\xda\x51\x98\ \xda\x51\x97\xdb\x4e\x92\xd7\x4a\x8d\xd2\x46\x8b\xce\x49\x87\xc9\ \x4a\x87\xc8\x4e\x8b\xca\x52\x91\xce\x59\x99\xd5\x5f\xa0\xdb\x62\ \xa5\xde\x62\xa5\xe0\x60\xa3\xe1\x5b\x9d\xde\x57\x99\xdc\x4f\x90\ \xd4\x48\x87\xcb\x45\x82\xc4\x44\x80\xc0\x40\x78\xb7\x3e\x74\xb0\ \x40\x75\xae\x44\x79\xb2\x47\x7a\xb3\x4c\x80\xb8\x50\x86\xc2\x54\ \x89\xc3\x56\x86\xb7\x73\x9b\xc0\x95\xb3\xcf\xac\xc7\xdd\xbb\xd4\ \xeb\xc6\xde\xf3\xca\xe1\xf7\xca\xe1\xf7\xcb\xe2\xf8\xca\xe1\xf7\ \xcc\xe3\xf9\xcb\xe2\xf8\xc9\xe2\xf8\xca\xe2\xf8\xc9\xe1\xf7\xc9\ \xe0\xf8\xc8\xe1\xf9\xc6\xe0\xf8\xc5\xdf\xf7\xc7\xe1\xf9\xc8\xe0\ \xf8\xc9\xe1\xf9\xc9\xe1\xf7\xc9\xe1\xf6\xc8\xe0\xf6\xc8\xe0\xf7\ \xc3\xdd\xf5\xb8\xd2\xeb\xa5\xc0\xda\x88\xa3\xbd\x5b\x73\x8a\x38\ \x46\x58\x2e\x36\x42\x25\x2b\x32\x16\x19\x20\x0c\x0e\x16\x0d\x0f\ \x16\x0c\x10\x15\x0d\x15\x19\x10\x16\x1d\x14\x1a\x20\x14\x1b\x20\ \x16\x1e\x26\x19\x20\x29\x1c\x23\x2c\x1b\x22\x2b\x1b\x23\x2b\x18\ \x20\x27\x17\x1f\x23\x16\x1c\x21\x12\x17\x1f\x10\x16\x1f\x10\x18\ \x21\x35\x38\x40\x5d\x59\x61\x68\x64\x6b\x69\x69\x6f\x6a\x66\x6f\ \x5d\x5d\x67\x2a\x34\x3d\x29\x34\x3e\x2b\x35\x3d\x2a\x35\x39\x2a\ \x34\x38\x28\x30\x32\x26\x2b\x2c\x23\x28\x2a\x1f\x25\x2a\x1b\x22\ \x26\x17\x20\x24\x14\x1d\x21\x12\x1a\x20\x11\x18\x20\x0f\x14\x1d\ \x11\x15\x20\x10\x14\x1f\x10\x14\x1d\x0d\x14\x1d\x0e\x15\x1e\x0e\ \x14\x1d\x0f\x16\x1f\x0e\x15\x1e\x0e\x16\x1e\x0d\x14\x1d\x11\x18\ \x1f\x11\x17\x1e\x11\x17\x1e\x0f\x15\x1b\x0f\x15\x1c\x0e\x14\x1a\ \x11\x13\x1d\x11\x14\x1e\x14\x1b\x24\x18\x1f\x28\x1c\x26\x2d\x20\ \x2c\x32\x28\x36\x3a\x2f\x3b\x41\x35\x42\x47\x3b\x45\x4c\x3d\x47\ \x4e\x3e\x4a\x4c\x3d\x49\x4b\x3e\x48\x4a\x3e\x47\x47\x3f\x47\x46\ \x3d\x45\x44\x3e\x46\x45\x3d\x45\x43\x3f\x47\x47\x40\x48\x48\x41\ \x49\x4a\x41\x4a\x4d\x41\x4a\x4d\x45\x4f\x4f\x46\x50\x50\x47\x51\ \x51\x49\x53\x53\x49\x53\x53\x49\x54\x53\x49\x54\x52\x4b\x53\x52\ \x4b\x53\x52\x47\x50\x50\x47\x51\x51\x45\x4d\x4d\x47\x4f\x4f\x47\ \x4f\x4f\x00\x00\x00\x52\x98\xdb\x51\x97\xda\x51\x97\xda\x52\x98\ \xdb\x52\x98\xdb\x51\x97\xda\x51\x97\xda\x51\x98\xd9\x51\x98\xd9\ \x4f\x94\xd9\x49\x8d\xd2\x47\x8b\xce\x4a\x89\xcb\x4b\x88\xc9\x4e\ \x8b\xca\x53\x90\xce\x58\x98\xd4\x61\xa1\xd9\x65\xa6\xdd\x66\xa8\ \xe1\x62\xa5\xe2\x5f\xa1\xe0\x59\x9b\xdb\x52\x94\xd6\x4a\x8b\xcc\ \x46\x85\xc5\x45\x83\xc3\x41\x7b\xb9\x40\x76\xb2\x41\x76\xaf\x44\ \x79\xb2\x47\x7c\xb5\x4a\x7c\xb5\x50\x85\xc1\x52\x88\xc2\x53\x84\ \xb6\x6b\x93\xbb\x90\xaf\xcd\xa9\xc3\xdc\xb9\xd2\xe9\xc4\xdc\xf1\ \xca\xe1\xf7\xca\xe1\xf7\xca\xe1\xf7\xcb\xe2\xf8\xcb\xe2\xf9\xcb\ \xe2\xf8\xcb\xe2\xf8\xca\xe2\xf8\xca\xe2\xf8\xc8\xe0\xf8\xc9\xe1\ \xf9\xc8\xe0\xf8\xc7\xe0\xf8\xc7\xe1\xf9\xc8\xe1\xf9\xc9\xe1\xf9\ \xc9\xe1\xf7\xc8\xe0\xf6\xc9\xe1\xf7\xc8\xe0\xf8\xc3\xdd\xf5\xb7\ \xd1\xeb\xa3\xbf\xd9\x87\xa1\xbb\x58\x6d\x84\x2f\x3d\x4c\x23\x2b\ \x34\x1b\x20\x25\x0f\x13\x17\x0c\x0e\x13\x0d\x10\x15\x0d\x12\x17\ \x0c\x14\x19\x10\x16\x1d\x12\x18\x1e\x14\x1b\x22\x16\x1e\x25\x18\ \x20\x27\x1a\x21\x2a\x1d\x23\x2c\x1c\x24\x2b\x19\x22\x26\x16\x1d\ \x22\x11\x17\x1d\x11\x17\x20\x10\x15\x1e\x0e\x15\x1e\x26\x2c\x33\ \x4b\x4a\x53\x56\x55\x5f\x5b\x5d\x66\x5d\x5c\x66\x4f\x51\x5d\x2c\ \x36\x43\x2a\x37\x43\x2c\x36\x3f\x2d\x38\x3e\x2d\x36\x3c\x2a\x31\ \x34\x28\x2e\x2e\x26\x2b\x2d\x21\x27\x2b\x1c\x23\x26\x17\x20\x24\ \x15\x1e\x22\x13\x1c\x20\x11\x18\x1e\x10\x15\x1e\x0f\x14\x1d\x10\ \x14\x1d\x0f\x15\x1c\x0e\x14\x1c\x0f\x14\x1c\x11\x16\x1f\x10\x15\ \x1e\x0f\x15\x1d\x0e\x16\x1d\x0e\x17\x1e\x12\x19\x20\x12\x18\x1f\ \x11\x17\x1d\x0f\x15\x1a\x0f\x15\x1c\x0e\x13\x1a\x11\x12\x1c\x13\ \x19\x21\x16\x1e\x25\x1a\x24\x2b\x1f\x28\x31\x26\x30\x39\x2f\x3b\ \x41\x34\x40\x44\x3b\x47\x4b\x41\x4c\x50\x41\x4d\x4f\x42\x4e\x4e\ \x42\x4e\x4e\x43\x4e\x4d\x45\x4d\x4c\x43\x4b\x49\x44\x4c\x4b\x43\ \x4b\x4a\x43\x4b\x4a\x44\x4c\x4a\x45\x4d\x4d\x47\x50\x50\x48\x51\ \x53\x49\x52\x54\x49\x53\x53\x4d\x57\x57\x4e\x58\x57\x4f\x5a\x58\ \x50\x5b\x59\x4f\x5a\x58\x4f\x5a\x57\x50\x59\x57\x50\x58\x57\x4d\ \x56\x55\x4c\x57\x55\x4d\x55\x54\x4d\x55\x54\x4a\x52\x51\x00\x00\ \x00\x51\x97\xda\x52\x98\xdb\x51\x98\xda\x51\x99\xdb\x51\x98\xda\ \x52\x99\xdb\x50\x98\xda\x50\x98\xd8\x51\x99\xda\x50\x96\xda\x4c\ \x91\xd6\x49\x8e\xd1\x4a\x8a\xcc\x4c\x89\xca\x4e\x8a\xc9\x54\x90\ \xcd\x59\x96\xd2\x61\xa0\xd8\x66\xa6\xdd\x67\xa8\xe0\x65\xa7\xe3\ \x61\xa3\xe1\x5b\x9e\xdd\x55\x97\xd7\x4c\x8e\xcf\x47\x88\xc9\x49\ \x86\xc5\x43\x7e\xbb\x42\x7b\xb3\x44\x7a\xb1\x46\x7b\xb3\x47\x7c\ \xb7\x4a\x7f\xb7\x4e\x83\xbd\x54\x89\xc4\x54\x84\xb8\x66\x90\xb9\ \x8c\xac\xca\xa6\xc0\xd9\xb6\xcf\xe6\xc2\xda\xef\xc7\xde\xf4\xc8\ \xdf\xf5\xc8\xdf\xf5\xc8\xdf\xf5\xc8\xde\xf6\xc7\xdd\xf6\xc8\xdf\ \xf5\xc8\xdf\xf5\xc6\xdf\xf4\xc7\xde\xf5\xc6\xde\xf6\xc6\xde\xf6\ \xc6\xde\xf6\xc5\xde\xf6\xc6\xde\xf6\xc7\xde\xf7\xc7\xdf\xf5\xc8\ \xe0\xf6\xc8\xe0\xf6\xc7\xdf\xf7\xc1\xdb\xf3\xb6\xd0\xe9\xa1\xbc\ \xd6\x84\x9e\xb8\x54\x6a\x7f\x2d\x3a\x4a\x21\x2a\x31\x17\x1f\x21\ \x10\x15\x17\x0b\x0e\x12\x0c\x0f\x15\x0b\x11\x16\x0b\x14\x19\x10\ \x16\x1d\x12\x18\x1f\x14\x1b\x22\x18\x20\x27\x19\x21\x27\x19\x22\ \x29\x1a\x23\x29\x1c\x25\x29\x19\x22\x26\x15\x1d\x21\x13\x19\x20\ \x0e\x16\x1e\x10\x16\x21\x0e\x15\x1e\x1a\x22\x2a\x3a\x3c\x45\x49\ \x49\x53\x4b\x4e\x58\x4f\x50\x5c\x3f\x42\x50\x29\x35\x44\x2b\x38\ \x46\x2e\x37\x41\x2d\x37\x3e\x29\x33\x38\x28\x30\x32\x27\x2d\x2d\ \x26\x2b\x2d\x20\x26\x2a\x1d\x25\x27\x1a\x23\x27\x17\x20\x23\x12\ \x1b\x1f\x12\x19\x1f\x10\x16\x1d\x0f\x14\x1d\x10\x15\x1d\x0f\x15\ \x1c\x0f\x15\x1c\x0f\x15\x1c\x0f\x15\x1c\x11\x16\x1f\x0d\x12\x1b\ \x0c\x14\x1a\x0d\x15\x1c\x11\x17\x1e\x13\x19\x20\x12\x18\x1e\x10\ \x17\x1b\x0e\x14\x19\x0f\x14\x1b\x13\x14\x1e\x14\x1a\x22\x16\x21\ \x28\x1c\x26\x2d\x24\x2d\x36\x2c\x35\x3e\x34\x3d\x45\x3c\x46\x4d\ \x41\x4c\x51\x45\x51\x54\x46\x52\x54\x47\x53\x53\x49\x53\x53\x48\ \x53\x51\x4b\x53\x52\x49\x51\x50\x4a\x52\x51\x49\x52\x52\x4b\x53\ \x52\x4a\x53\x50\x4e\x57\x55\x4e\x57\x57\x4d\x57\x59\x50\x59\x5b\ \x52\x5c\x5c\x55\x61\x5e\x55\x60\x5e\x57\x62\x60\x56\x61\x5e\x56\ \x61\x5e\x55\x60\x5e\x57\x60\x5d\x56\x5e\x5d\x57\x61\x5f\x55\x5f\ \x5d\x54\x5c\x5c\x54\x5c\x5c\x53\x5b\x5b\x00\x00\x00\x51\x98\xdb\ \x50\x97\xda\x51\x98\xdb\x52\x99\xdc\x51\x98\xdb\x53\x98\xdc\x52\ \x99\xd9\x53\x99\xdb\x52\x98\xdb\x51\x97\xda\x4e\x94\xd7\x49\x8f\ \xd2\x4c\x8c\xcd\x4e\x8c\xcc\x4f\x8c\xc9\x55\x91\xcc\x58\x97\xd1\ \x62\x9f\xd7\x67\xa7\xdd\x67\xa9\xdf\x67\xaa\xe4\x62\xa5\xe0\x5f\ \xa0\xdd\x57\x9a\xd6\x4f\x91\xd0\x4b\x8a\xcb\x4b\x86\xc7\x47\x80\ \xbe\x41\x7b\xb4\x42\x79\xae\x47\x7b\xb0\x4a\x7f\xb6\x48\x80\xb8\ \x4d\x83\xbe\x53\x89\xc2\x51\x83\xbb\x61\x89\xb8\x87\xa6\xca\xa0\ \xba\xd3\xad\xc7\xdc\xba\xd0\xe6\xc1\xd7\xed\xc1\xd8\xee\xbf\xd6\ \xec\xbf\xd5\xee\xbf\xd5\xec\xc0\xd5\xea\xbd\xd5\xeb\xbe\xd6\xec\ \xbd\xd5\xea\xbe\xd5\xea\xbf\xd6\xec\xbe\xd5\xeb\xbe\xd5\xeb\xbe\ \xd6\xed\xbd\xd7\xef\xbd\xd7\xef\xbe\xd8\xf0\xbe\xd9\xee\xbe\xd8\ \xed\xc0\xd9\xf0\xb7\xd2\xea\xab\xc4\xe0\x9a\xb2\xce\x7c\x94\xad\ \x4d\x62\x76\x2c\x38\x46\x22\x29\x31\x18\x1c\x21\x0e\x12\x17\x0b\ \x0c\x14\x0b\x0e\x17\x0d\x10\x18\x0e\x13\x19\x10\x15\x1e\x12\x16\ \x1f\x16\x1d\x24\x17\x1f\x26\x18\x21\x25\x1a\x23\x27\x1b\x23\x2a\ \x1b\x23\x2a\x17\x20\x25\x17\x1e\x23\x12\x18\x1f\x11\x15\x20\x0e\ \x15\x22\x0c\x15\x22\x11\x1a\x26\x22\x29\x35\x34\x38\x46\x36\x3d\ \x4d\x38\x3e\x52\x2b\x36\x48\x2a\x35\x47\x2d\x36\x46\x2e\x37\x42\ \x2d\x35\x3e\x28\x31\x35\x26\x2e\x31\x24\x2b\x2e\x1f\x29\x2b\x1f\ \x28\x2a\x1c\x23\x27\x18\x21\x26\x16\x1f\x26\x14\x1a\x22\x0f\x15\ \x1a\x10\x16\x1b\x0f\x15\x1d\x11\x14\x1d\x11\x13\x1c\x0f\x14\x1a\ \x0e\x14\x19\x0f\x15\x1a\x0f\x14\x19\x0f\x13\x18\x10\x14\x19\x0e\ \x14\x19\x10\x16\x1b\x10\x16\x1b\x11\x17\x1c\x13\x18\x1e\x0f\x15\ \x1a\x0f\x15\x1b\x14\x1a\x21\x16\x1d\x23\x19\x22\x2a\x1f\x28\x31\ \x2b\x34\x3e\x30\x39\x42\x3b\x42\x4b\x42\x4a\x50\x47\x51\x54\x49\ \x56\x57\x4b\x57\x57\x4c\x58\x56\x50\x5a\x58\x52\x5b\x58\x50\x59\ \x56\x4f\x59\x57\x50\x59\x58\x52\x59\x58\x54\x5b\x5a\x54\x5d\x5c\ \x53\x5c\x5b\x57\x5f\x5e\x59\x61\x60\x5a\x62\x60\x5b\x66\x64\x5e\ \x69\x67\x5d\x68\x66\x60\x69\x68\x60\x68\x67\x61\x69\x68\x60\x68\ \x68\x5f\x67\x66\x5f\x68\x66\x5f\x68\x65\x5e\x66\x65\x5e\x66\x64\ \x5b\x63\x62\x5b\x63\x61\x00\x00\x00\x51\x98\xdb\x53\x9a\xdd\x52\ \x99\xdc\x53\x9a\xdd\x50\x97\xda\x52\x98\xdb\x51\x98\xda\x52\x98\ \xdb\x50\x96\xd9\x53\x97\xda\x51\x95\xd8\x4b\x8f\xd2\x4c\x8d\xcd\ \x4e\x8d\xcb\x4f\x8c\xc9\x55\x92\xcc\x58\x98\xcf\x5f\x9f\xd6\x67\ \xa7\xde\x68\xa9\xe0\x68\xa9\xe3\x67\xa7\xe2\x5f\xa1\xdd\x57\x9a\ \xd7\x50\x93\xd2\x4e\x8c\xcc\x4b\x88\xc8\x4a\x84\xc1\x43\x7b\xb5\ \x43\x7a\xb0\x49\x7c\xb1\x49\x7e\xb5\x48\x7f\xb7\x4c\x82\xbe\x53\ \x89\xc4\x51\x85\xbe\x5c\x88\xb5\x7a\x9c\xc2\x92\xaf\xcb\xa2\xbc\ \xd3\xae\xc4\xdb\xb3\xca\xe0\xb5\xcc\xe2\xb0\xc7\xdd\xae\xc7\xdd\ \xaf\xc6\xdc\xac\xc4\xda\xaa\xc4\xda\xab\xc6\xdb\xab\xc5\xda\xac\ \xc4\xda\xac\xc4\xda\xac\xc6\xdc\xac\xc5\xde\xae\xc7\xdf\xb1\xc9\ \xdd\xb2\xca\xde\xb3\xcb\xdf\xb5\xcd\xe0\xb4\xcd\xdf\xb0\xcd\xe2\ \xa7\xc5\xdc\x9c\xb8\xd0\x8a\xa5\xbc\x6c\x85\x99\x46\x58\x69\x2a\ \x36\x41\x22\x28\x2f\x16\x1b\x1f\x0f\x13\x17\x0b\x0d\x15\x0b\x0e\ \x16\x0d\x10\x18\x0f\x13\x18\x0f\x15\x1c\x13\x19\x20\x14\x1b\x22\ \x18\x20\x27\x19\x21\x28\x1a\x23\x27\x1b\x23\x2a\x1a\x22\x29\x18\ \x21\x26\x14\x1d\x21\x13\x1a\x21\x0f\x15\x20\x0e\x16\x23\x0d\x17\ \x24\x0d\x18\x27\x12\x1c\x2c\x1f\x28\x39\x23\x2e\x3f\x26\x32\x45\ \x26\x34\x47\x28\x36\x49\x2b\x35\x47\x2d\x35\x43\x2d\x37\x3f\x2a\ \x34\x37\x28\x30\x34\x26\x2d\x31\x23\x2c\x30\x20\x28\x2b\x1e\x25\ \x29\x1a\x23\x28\x18\x20\x27\x15\x1b\x22\x13\x19\x1f\x12\x18\x1d\ \x10\x15\x1d\x11\x15\x1d\x11\x14\x1c\x0e\x14\x19\x0f\x15\x1a\x0e\ \x14\x19\x10\x14\x19\x0f\x13\x18\x10\x14\x19\x0f\x14\x19\x0f\x15\ \x1a\x12\x18\x1d\x12\x18\x1d\x13\x19\x1e\x11\x17\x1c\x11\x18\x1f\ \x14\x1c\x23\x16\x21\x25\x1c\x27\x2d\x25\x2f\x37\x2d\x36\x3f\x35\ \x3e\x46\x3f\x49\x4f\x48\x54\x57\x4b\x57\x59\x50\x5d\x5c\x51\x5e\ \x5c\x54\x60\x5e\x59\x62\x5f\x5a\x63\x60\x5a\x63\x60\x58\x61\x5f\ \x59\x60\x60\x5c\x63\x62\x5c\x62\x61\x5d\x65\x64\x5d\x65\x64\x5f\ \x67\x66\x62\x69\x68\x64\x6c\x6b\x63\x6d\x6c\x66\x71\x6f\x67\x72\ \x70\x68\x71\x70\x68\x70\x6f\x69\x71\x70\x69\x71\x72\x68\x70\x6e\ \x69\x72\x6f\x67\x70\x6d\x66\x6e\x6c\x65\x6d\x6c\x63\x6b\x6a\x62\ \x6a\x69\x00\x00\x00\x52\x99\xdc\x53\x99\xdd\x52\x99\xdc\x51\x98\ \xdb\x51\x98\xdb\x52\x98\xdb\x52\x98\xdb\x53\x98\xdb\x54\x98\xdb\ \x53\x97\xda\x54\x96\xd9\x4f\x8f\xd4\x4d\x8e\xcf\x4f\x8e\xcd\x50\ \x8d\xcb\x55\x92\xcc\x59\x99\xd0\x5f\x9f\xd6\x65\xa5\xdc\x68\xa8\ \xdf\x6a\xa9\xe2\x69\xa8\xe3\x62\xa4\xdf\x5c\x9d\xda\x55\x95\xd3\ \x4f\x8e\xcd\x4f\x8a\xca\x4e\x86\xc4\x46\x7e\xb7\x47\x7b\xb2\x49\ \x7c\xb2\x4b\x7d\xb5\x4c\x81\xb9\x4b\x81\xbd\x52\x89\xc4\x4f\x86\ \xc0\x54\x86\xb6\x6e\x95\xbe\x82\xa2\xc3\x90\xab\xc6\x9b\xb2\xcc\ \x9e\xb7\xcd\x9d\xb5\xcb\x99\xb1\xc6\x96\xad\xc3\x92\xa9\xbf\x90\ \xa7\xbc\x8f\xa6\xba\x90\xa8\xbb\x91\xa9\xbd\x94\xaa\xbd\x93\xab\ \xbd\x94\xac\xc0\x95\xae\xc1\x95\xaf\xc2\x97\xb0\xc4\x9b\xb3\xc8\ \x9c\xb4\xc8\x9c\xb4\xc7\x9e\xb8\xca\x9c\xb8\xcd\x95\xaf\xc8\x89\ \xa2\xbc\x77\x8f\xa5\x5d\x70\x82\x3c\x4b\x58\x27\x32\x3a\x21\x27\ \x2c\x17\x1b\x1f\x0f\x12\x16\x0c\x0e\x15\x0b\x0e\x16\x0e\x11\x18\ \x0e\x12\x17\x10\x15\x1a\x13\x19\x1e\x15\x1c\x23\x17\x1f\x26\x19\ \x21\x28\x1a\x23\x27\x1b\x23\x2a\x1c\x24\x2b\x18\x21\x26\x17\x20\ \x23\x12\x1a\x20\x0f\x15\x1f\x0d\x15\x22\x0b\x17\x23\x0c\x19\x29\ \x10\x1f\x31\x15\x24\x36\x17\x27\x3a\x1f\x2f\x42\x25\x34\x47\x27\ \x36\x49\x2b\x39\x4a\x2f\x3b\x47\x2f\x3a\x42\x2f\x38\x40\x2d\x34\ \x3b\x2b\x31\x36\x25\x2c\x31\x23\x2b\x2e\x1e\x26\x29\x1a\x22\x27\ \x16\x1f\x25\x18\x1e\x25\x14\x1a\x1f\x12\x18\x1e\x12\x17\x1f\x13\ \x16\x1e\x11\x14\x1c\x0e\x13\x19\x0e\x14\x19\x0f\x15\x1a\x0f\x14\ \x19\x0e\x12\x17\x10\x14\x19\x11\x15\x1a\x12\x17\x1c\x12\x19\x1d\ \x12\x18\x1d\x13\x19\x1e\x12\x18\x1f\x14\x1c\x23\x17\x1f\x26\x1a\ \x24\x2b\x21\x2b\x32\x2a\x33\x3b\x32\x3b\x42\x3a\x45\x49\x44\x51\ \x52\x4c\x5a\x59\x53\x60\x5e\x56\x63\x61\x59\x65\x63\x5d\x68\x66\ \x5f\x68\x66\x61\x69\x66\x61\x6a\x67\x60\x69\x66\x60\x69\x66\x62\ \x69\x66\x61\x68\x65\x63\x6c\x69\x64\x6d\x6b\x66\x6e\x6e\x67\x6e\ \x6d\x6c\x74\x73\x6a\x75\x73\x6c\x77\x76\x6c\x77\x75\x6d\x77\x75\ \x6e\x76\x75\x6e\x76\x76\x6e\x76\x76\x6e\x76\x74\x6d\x76\x73\x6d\ \x76\x73\x6b\x73\x72\x68\x71\x70\x66\x70\x6e\x68\x72\x70\x00\x00\ \x00\x53\x9b\xda\x52\x9a\xda\x52\x9a\xda\x51\x98\xdb\x51\x98\xdb\ \x52\x98\xdb\x50\x96\xd9\x50\x96\xda\x51\x97\xda\x53\x97\xda\x53\ \x97\xda\x4e\x92\xd5\x4b\x8f\xd1\x4e\x8f\xd0\x4f\x8d\xcc\x53\x91\ \xce\x59\x97\xd2\x60\x9c\xd7\x64\xa3\xdb\x68\xa8\xdf\x68\xa8\xe1\ \x68\xa7\xe2\x64\xa5\xe0\x5e\xa0\xdb\x58\x98\xd5\x50\x8f\xcd\x51\ \x8b\xca\x4f\x89\xc5\x49\x7f\xb8\x47\x7c\xb3\x49\x7a\xb2\x4b\x7d\ \xb5\x4b\x80\xb9\x4b\x81\xbe\x51\x88\xc5\x51\x88\xc4\x51\x86\xba\ \x5e\x89\xb9\x6d\x92\xb9\x79\x9a\xba\x81\x9c\xb9\x7e\x98\xb3\x77\ \x90\xa7\x6e\x83\x97\x68\x7c\x8e\x65\x76\x87\x60\x71\x7f\x5c\x6b\ \x77\x5e\x6d\x78\x61\x70\x7d\x65\x74\x7f\x65\x74\x7f\x69\x7a\x86\ \x6c\x7e\x8b\x6e\x81\x8e\x6f\x83\x91\x72\x86\x95\x73\x88\x96\x77\ \x8c\x99\x7b\x8f\x9d\x7c\x90\xa1\x78\x8e\xa1\x6e\x81\x97\x5f\x70\ \x82\x43\x52\x5e\x31\x3c\x44\x26\x2f\x34\x1f\x25\x28\x14\x17\x1b\ \x0d\x10\x15\x0a\x0d\x12\x0c\x0f\x16\x0c\x11\x16\x10\x15\x19\x11\ \x17\x1b\x11\x17\x1c\x13\x1a\x20\x17\x1f\x26\x19\x21\x27\x1b\x24\ \x28\x1b\x23\x2a\x1a\x22\x29\x19\x21\x27\x14\x1c\x20\x13\x1a\x21\ \x11\x16\x21\x0f\x18\x25\x0d\x17\x23\x0e\x1a\x28\x0f\x1d\x2e\x14\ \x24\x37\x18\x29\x3e\x1f\x2f\x45\x26\x36\x49\x2a\x38\x4a\x2d\x3b\ \x4a\x32\x3d\x48\x34\x40\x46\x32\x3d\x41\x31\x39\x3d\x2e\x34\x39\ \x2b\x32\x36\x24\x2d\x2e\x22\x2a\x2c\x1b\x24\x27\x17\x20\x26\x16\ \x1c\x22\x14\x1a\x1f\x14\x1a\x1f\x13\x19\x21\x12\x16\x1f\x13\x16\ \x1e\x0f\x14\x1a\x0d\x13\x18\x0e\x14\x19\x0f\x14\x19\x0e\x12\x17\ \x11\x13\x1c\x11\x14\x1c\x12\x15\x1e\x13\x18\x1f\x13\x17\x1f\x14\ \x19\x20\x14\x1b\x22\x16\x1f\x26\x18\x21\x29\x1f\x29\x31\x26\x30\ \x37\x2c\x36\x3d\x36\x42\x46\x3d\x49\x4a\x48\x55\x54\x50\x5c\x5c\ \x58\x64\x62\x5a\x65\x63\x5e\x69\x67\x60\x6b\x69\x63\x6b\x6a\x66\ \x6d\x6a\x64\x6c\x69\x63\x6d\x6a\x65\x6d\x6a\x66\x6c\x69\x67\x6c\ \x6a\x6a\x71\x6e\x68\x71\x6e\x68\x71\x6e\x6c\x74\x71\x6d\x76\x73\ \x6f\x79\x76\x6e\x79\x76\x6f\x7a\x77\x6f\x7a\x77\x70\x79\x76\x70\ \x79\x76\x70\x78\x77\x70\x7a\x77\x70\x79\x76\x6f\x78\x76\x6d\x76\ \x75\x68\x73\x71\x6a\x75\x73\x6a\x75\x73\x00\x00\x00\x52\x9a\xda\ \x52\x9a\xda\x51\x99\xd9\x52\x99\xda\x51\x98\xdb\x52\x97\xda\x51\ \x97\xdb\x50\x96\xda\x50\x97\xda\x52\x98\xdb\x51\x97\xda\x50\x95\ \xd8\x4d\x8f\xd3\x50\x8f\xd3\x4f\x8c\xce\x53\x90\xcf\x57\x94\xd1\ \x60\x99\xd5\x64\xa1\xd9\x68\xa6\xde\x67\xa8\xe0\x69\xaa\xe3\x67\ \xa6\xe1\x5f\xa1\xdd\x5a\x9a\xd7\x54\x92\xd0\x50\x8b\xca\x51\x89\ \xc6\x49\x80\xb9\x46\x79\xb1\x47\x78\xb0\x4c\x7d\xb4\x4b\x7e\xb7\ \x4a\x80\xbd\x4e\x86\xc3\x50\x89\xc6\x4f\x87\xbe\x56\x84\xb8\x59\ \x83\xaf\x5d\x84\xa8\x5e\x7d\x9f\x53\x6e\x8c\x3f\x58\x70\x31\x46\ \x58\x29\x37\x46\x20\x2a\x37\x14\x1e\x27\x12\x1b\x1e\x16\x1e\x21\ \x1a\x22\x27\x1c\x22\x27\x20\x27\x2b\x22\x2b\x2f\x22\x2d\x32\x28\ \x34\x38\x2c\x37\x3c\x30\x3b\x3f\x33\x3e\x42\x37\x43\x46\x3d\x4a\ \x4b\x43\x52\x54\x49\x5a\x61\x45\x53\x5e\x3c\x4b\x54\x30\x3d\x43\ \x2a\x33\x39\x24\x2d\x30\x1e\x24\x27\x14\x17\x1b\x0d\x10\x15\x0a\ \x0d\x13\x0c\x0f\x17\x0d\x10\x16\x10\x14\x18\x11\x17\x1e\x11\x17\ \x1e\x13\x1b\x1f\x16\x1f\x23\x19\x21\x25\x1d\x23\x28\x1d\x23\x2a\ \x1e\x24\x2b\x1a\x20\x26\x16\x1c\x21\x15\x1b\x22\x12\x16\x21\x0f\ \x15\x23\x0e\x17\x24\x0f\x1a\x25\x11\x1f\x2e\x16\x25\x38\x1a\x2a\ \x3f\x21\x2f\x45\x27\x35\x48\x2e\x3c\x4d\x32\x3e\x4b\x36\x42\x4a\ \x36\x42\x46\x33\x3f\x42\x33\x3b\x3e\x2f\x36\x39\x2a\x31\x34\x26\ \x2e\x2e\x21\x2a\x2a\x1b\x24\x27\x16\x20\x24\x15\x1c\x20\x14\x1a\ \x1f\x12\x18\x1e\x14\x1a\x21\x12\x15\x1e\x12\x15\x1d\x0f\x15\x1b\ \x0d\x14\x19\x0e\x15\x1a\x10\x14\x19\x0f\x12\x18\x12\x14\x1d\x12\ \x14\x1c\x13\x16\x1e\x13\x15\x1d\x12\x15\x1d\x13\x18\x20\x18\x1e\ \x25\x17\x20\x28\x1a\x24\x2d\x21\x2b\x33\x28\x32\x39\x2f\x3a\x40\ \x38\x44\x47\x41\x4e\x4d\x4c\x58\x57\x54\x5e\x5e\x59\x63\x63\x5f\ \x66\x65\x62\x68\x67\x63\x6c\x6b\x63\x6b\x69\x65\x6c\x69\x63\x6b\ \x68\x64\x6d\x6a\x65\x6c\x69\x68\x6e\x6c\x68\x6d\x6a\x68\x70\x6d\ \x69\x72\x6f\x69\x72\x6f\x6d\x75\x72\x6e\x77\x74\x6f\x7a\x77\x6e\ \x7a\x76\x6f\x7a\x77\x6e\x78\x75\x6e\x77\x74\x6f\x78\x75\x6a\x75\ \x73\x6d\x79\x75\x6c\x77\x73\x6c\x77\x74\x6a\x75\x73\x6a\x75\x73\ \x6b\x76\x74\x6a\x75\x73\x00\x00\x00\x54\x9b\xdb\x53\x9a\xda\x52\ \x9a\xda\x50\x98\xd9\x51\x98\xdc\x51\x98\xdc\x51\x98\xdc\x50\x97\ \xda\x51\x97\xda\x51\x97\xda\x53\x96\xd9\x53\x94\xd8\x4e\x90\xd5\ \x4d\x8e\xd3\x50\x8e\xd1\x50\x8e\xce\x55\x92\xd1\x5a\x99\xd4\x61\ \xa0\xda\x66\xa5\xdd\x67\xa7\xde\x69\xa9\xe0\x67\xa9\xe2\x62\xa3\ \xdd\x5b\x9c\xd8\x53\x93\xd2\x4e\x8b\xca\x4d\x88\xc5\x49\x80\xba\ \x46\x7a\xb2\x43\x79\xb0\x46\x7a\xb3\x49\x7e\xb8\x4b\x82\xbd\x4d\ \x87\xc3\x53\x8c\xca\x53\x8a\xc8\x53\x86\xc0\x50\x80\xb3\x4c\x77\ \xa4\x43\x6b\x95\x38\x5a\x80\x2b\x47\x64\x20\x34\x49\x17\x25\x36\ \x11\x19\x25\x0a\x10\x17\x07\x0a\x12\x0a\x0c\x14\x0a\x0d\x15\x0b\ \x0e\x13\x0b\x0f\x14\x0c\x10\x15\x0d\x11\x16\x0e\x13\x18\x11\x15\ \x1a\x13\x18\x1c\x15\x1b\x1d\x17\x1c\x1f\x1b\x21\x21\x1d\x24\x24\ \x22\x2c\x2d\x29\x34\x37\x2a\x35\x39\x29\x32\x36\x27\x30\x33\x24\ \x2c\x2d\x1c\x21\x24\x12\x15\x1a\x0d\x10\x14\x0a\x0d\x12\x0b\x0f\ \x14\x0d\x11\x16\x0f\x12\x19\x10\x12\x1c\x15\x19\x21\x13\x19\x20\ \x18\x1e\x24\x19\x21\x25\x1b\x22\x25\x1e\x24\x28\x1e\x24\x29\x1b\ \x21\x27\x15\x1c\x24\x12\x18\x22\x10\x16\x1f\x0f\x16\x20\x0e\x18\ \x22\x0e\x1b\x27\x12\x20\x30\x17\x26\x38\x1a\x2b\x40\x1f\x30\x45\ \x26\x35\x49\x2c\x3b\x4c\x30\x3e\x4b\x34\x40\x48\x37\x42\x48\x36\ \x3e\x43\x30\x39\x3d\x2e\x36\x39\x2a\x30\x33\x27\x2c\x30\x20\x27\ \x2a\x1d\x24\x27\x18\x1e\x23\x15\x1b\x20\x14\x1a\x1f\x13\x19\x1e\ \x14\x1a\x1f\x12\x17\x1c\x13\x17\x1c\x12\x16\x1b\x11\x14\x19\x10\ \x13\x18\x0f\x13\x18\x10\x15\x18\x10\x15\x19\x0f\x13\x19\x13\x16\ \x1e\x11\x13\x1d\x12\x14\x1e\x16\x19\x21\x16\x1d\x22\x19\x21\x26\ \x20\x29\x32\x22\x2a\x34\x2a\x33\x3c\x31\x3b\x42\x39\x45\x47\x41\ \x4d\x4f\x4a\x56\x56\x4f\x5b\x5b\x57\x61\x60\x5a\x65\x63\x5d\x65\ \x63\x5f\x66\x62\x61\x68\x65\x63\x6a\x67\x62\x69\x67\x62\x68\x66\ \x62\x69\x66\x62\x69\x66\x63\x6a\x67\x65\x6c\x68\x65\x6c\x6a\x65\ \x6d\x6d\x66\x6e\x6d\x68\x70\x6f\x69\x71\x6f\x6c\x73\x73\x6a\x73\ \x72\x68\x73\x71\x68\x73\x70\x68\x70\x6f\x68\x71\x6e\x69\x72\x70\ \x6a\x71\x70\x69\x71\x70\x67\x6e\x6d\x66\x6e\x6d\x67\x71\x6f\x66\ \x71\x6f\x00\x00\x00\x54\x9b\xdb\x53\x9a\xda\x52\x99\xd9\x52\x98\ \xd9\x52\x98\xdb\x52\x97\xdb\x50\x96\xd9\x52\x98\xdb\x50\x96\xd9\ \x51\x96\xd9\x53\x97\xda\x54\x95\xd9\x50\x90\xd5\x4f\x8f\xd3\x4e\ \x8e\xd1\x4e\x8c\xcc\x52\x90\xd0\x59\x97\xd3\x5f\x9e\xd8\x64\xa3\ \xdd\x65\xa5\xdc\x67\xa7\xde\x67\xa7\xe0\x63\xa3\xde\x5d\x9c\xd8\ \x55\x94\xd1\x4e\x8c\xca\x4e\x88\xc7\x4a\x82\xbd\x42\x79\xb1\x41\ \x77\xae\x45\x7a\xb3\x47\x7d\xb8\x4a\x82\xbd\x4c\x84\xc3\x52\x8d\ \xcc\x53\x8e\xcb\x55\x8d\xc8\x53\x87\xbc\x4f\x7e\xb0\x46\x71\x9f\ \x3d\x60\x89\x2d\x49\x69\x20\x33\x49\x18\x26\x34\x0f\x19\x22\x0a\ \x10\x17\x08\x0a\x12\x0b\x0d\x15\x0b\x0c\x14\x0a\x0d\x15\x0c\x0f\ \x17\x0c\x0f\x17\x0e\x11\x1a\x0f\x14\x1b\x12\x16\x1b\x15\x19\x1e\ \x16\x1b\x1e\x19\x1e\x20\x1c\x20\x21\x1e\x25\x26\x1e\x27\x29\x23\ \x2e\x31\x2a\x33\x37\x28\x31\x35\x26\x2e\x31\x1e\x25\x28\x17\x1b\ \x1f\x10\x13\x18\x0d\x10\x15\x0a\x0d\x13\x0c\x0f\x14\x0c\x10\x15\ \x0f\x12\x1a\x11\x13\x1d\x13\x16\x1e\x15\x1b\x22\x18\x1f\x23\x18\ \x20\x24\x1d\x23\x28\x1d\x23\x28\x1c\x22\x27\x1b\x21\x26\x16\x1d\ \x23\x13\x19\x22\x12\x18\x21\x0e\x16\x1f\x0d\x17\x23\x10\x1d\x2c\ \x12\x20\x32\x18\x27\x3c\x1a\x2b\x41\x23\x33\x4a\x29\x37\x4f\x2e\ \x3c\x4f\x30\x3d\x4c\x33\x3f\x48\x31\x3d\x43\x31\x3b\x40\x2f\x38\ \x3c\x2c\x34\x37\x28\x2e\x32\x22\x29\x2d\x1e\x25\x28\x1d\x22\x27\ \x17\x1d\x22\x15\x1b\x20\x14\x1a\x20\x14\x1a\x1f\x12\x18\x1d\x13\ \x19\x1e\x13\x17\x1c\x12\x16\x1d\x11\x15\x1b\x0f\x13\x18\x0f\x14\ \x19\x0e\x13\x18\x10\x14\x19\x11\x15\x1b\x0f\x13\x1b\x10\x13\x1b\ \x10\x13\x1c\x14\x18\x1f\x19\x1f\x25\x1b\x23\x2a\x1f\x29\x31\x24\ \x2d\x36\x2a\x33\x3b\x30\x3b\x41\x38\x43\x47\x42\x4d\x50\x48\x54\ \x56\x4d\x59\x59\x51\x5b\x5a\x55\x5f\x5d\x58\x61\x5e\x5b\x62\x5d\ \x5a\x62\x5d\x5c\x63\x5e\x5a\x62\x5d\x5c\x63\x5f\x5b\x62\x5f\x5c\ \x63\x60\x5d\x64\x61\x5f\x66\x63\x60\x67\x65\x5f\x67\x65\x5f\x67\ \x66\x61\x69\x68\x63\x6b\x6a\x65\x6d\x6c\x64\x6e\x6c\x60\x6b\x68\ \x61\x6b\x68\x61\x6a\x68\x5e\x69\x66\x60\x6b\x68\x5f\x6b\x68\x5f\ \x6b\x69\x5f\x69\x67\x60\x68\x67\x61\x69\x68\x61\x6b\x69\x00\x00\ \x00\x53\x9a\xda\x52\x99\xd9\x53\x9a\xda\x52\x99\xd9\x52\x98\xd9\ \x51\x98\xd9\x51\x97\xda\x50\x96\xd9\x4f\x95\xd8\x50\x96\xd9\x53\ \x97\xda\x53\x95\xd9\x52\x91\xd5\x50\x8e\xd2\x4f\x8f\xd0\x4d\x8b\ \xcc\x4f\x8d\xcd\x55\x92\xd0\x5b\x98\xd5\x61\x9f\xda\x64\xa4\xdb\ \x66\xa6\xdf\x66\xa7\xe0\x63\xa3\xdd\x60\x9f\xdb\x58\x97\xd3\x51\ \x8d\xcc\x4d\x89\xc6\x49\x83\xbe\x42\x7a\xb3\x42\x76\xaf\x45\x79\ \xb2\x47\x7d\xb8\x48\x80\xbc\x4a\x83\xc1\x51\x8c\xca\x57\x93\xce\ \x56\x91\xcc\x53\x8b\xc4\x4f\x82\xb6\x45\x74\xa5\x3d\x63\x8d\x2c\ \x4a\x6d\x23\x36\x4e\x18\x26\x34\x10\x1a\x23\x0a\x10\x17\x08\x0b\ \x13\x0b\x0d\x15\x0a\x0c\x14\x0c\x0d\x17\x0a\x0c\x16\x0d\x0f\x19\ \x0e\x10\x1a\x0f\x13\x1c\x10\x14\x19\x14\x18\x1d\x16\x1b\x1e\x19\ \x1e\x20\x1a\x1f\x21\x1b\x22\x25\x1f\x27\x2a\x22\x2b\x2e\x24\x2c\ \x2f\x24\x2b\x2e\x20\x27\x2a\x1a\x1f\x22\x16\x1a\x1f\x10\x13\x18\ \x0d\x10\x15\x0a\x0d\x13\x0b\x0f\x14\x0d\x12\x16\x0f\x12\x1a\x11\ \x14\x1c\x13\x17\x1e\x14\x1a\x21\x18\x1f\x25\x19\x22\x26\x1d\x23\ \x28\x1e\x24\x29\x1d\x23\x28\x1b\x21\x26\x14\x1b\x21\x13\x1a\x21\ \x11\x17\x20\x0f\x16\x22\x0f\x18\x25\x0f\x1c\x2a\x12\x20\x33\x18\ \x27\x3d\x1c\x2d\x44\x24\x33\x4c\x2b\x3a\x52\x2d\x3c\x52\x30\x3e\ \x4e\x31\x3d\x47\x30\x3b\x42\x2c\x36\x3d\x2b\x35\x39\x26\x2f\x32\ \x25\x2a\x2f\x1f\x26\x2b\x1c\x25\x29\x18\x21\x25\x14\x1d\x21\x13\ \x1c\x20\x13\x1b\x21\x12\x1a\x21\x14\x1a\x21\x13\x19\x20\x12\x18\ \x1f\x10\x16\x1d\x0f\x15\x1c\x0d\x13\x19\x0e\x14\x18\x0e\x14\x19\ \x0f\x14\x18\x0f\x13\x1a\x10\x12\x1b\x10\x13\x1b\x11\x14\x1b\x14\ \x19\x1f\x18\x1f\x26\x1d\x25\x2d\x1f\x28\x31\x24\x2f\x36\x29\x33\ \x3a\x2d\x38\x3e\x39\x44\x48\x3f\x4a\x4d\x44\x50\x52\x4b\x57\x58\ \x4f\x59\x58\x4d\x58\x55\x52\x5b\x57\x53\x5d\x57\x54\x5e\x58\x53\ \x5d\x57\x52\x5c\x56\x54\x5c\x57\x54\x5b\x56\x55\x5c\x59\x55\x5c\ \x59\x57\x5e\x5c\x56\x5f\x5c\x55\x5e\x5b\x56\x5e\x5d\x58\x60\x5f\ \x5b\x63\x62\x5b\x63\x62\x58\x63\x61\x56\x64\x60\x56\x62\x60\x56\ \x5f\x5f\x56\x60\x5d\x57\x62\x60\x57\x62\x60\x57\x62\x60\x56\x60\ \x5e\x58\x61\x60\x57\x61\x61\x59\x64\x65\x00\x00\x00\x53\x9a\xda\ \x53\x9a\xda\x53\x9a\xda\x54\x9b\xdb\x53\x9a\xd9\x52\x99\xd8\x50\ \x97\xd9\x51\x97\xda\x4f\x95\xd8\x50\x96\xd9\x53\x97\xda\x55\x96\ \xda\x51\x93\xd6\x4e\x8f\xd3\x4f\x8e\xcf\x4c\x89\xcb\x4d\x8a\xcc\ \x51\x8e\xcd\x57\x94\xd2\x5d\x9c\xd7\x63\xa3\xda\x65\xa5\xdd\x66\ \xa6\xe0\x63\xa3\xdd\x5f\x9f\xd9\x57\x97\xd1\x51\x8f\xcc\x4e\x88\ \xc7\x4a\x85\xc0\x43\x7b\xb4\x41\x76\xaf\x44\x76\xb0\x47\x7b\xb5\ \x49\x7f\xb9\x4a\x83\xbd\x52\x8e\xc7\x59\x94\xce\x59\x94\xcf\x55\ \x8e\xc7\x52\x86\xbb\x4b\x7a\xaa\x3c\x65\x8f\x30\x4f\x74\x24\x38\ \x53\x16\x23\x33\x11\x1a\x23\x0a\x10\x17\x07\x0a\x12\x0b\x0d\x15\ \x0b\x0d\x15\x0b\x0d\x15\x0c\x0f\x17\x0d\x10\x18\x0f\x12\x1a\x10\ \x15\x1c\x10\x14\x1a\x13\x17\x1c\x14\x19\x1c\x19\x1e\x20\x1d\x22\ \x24\x1e\x23\x28\x1d\x25\x29\x20\x29\x2b\x23\x2b\x2b\x21\x27\x28\ \x1f\x24\x26\x1a\x1e\x22\x17\x1a\x1f\x11\x14\x18\x0d\x10\x14\x0a\ \x0d\x12\x0c\x10\x15\x0d\x11\x16\x0f\x12\x19\x11\x14\x1c\x13\x17\ \x1f\x13\x19\x20\x16\x1d\x24\x18\x20\x27\x1d\x23\x29\x1e\x24\x29\ \x1c\x22\x28\x1b\x21\x25\x15\x1d\x21\x13\x1a\x21\x11\x17\x20\x10\ \x17\x22\x0e\x17\x25\x0f\x1b\x2b\x12\x21\x33\x17\x28\x3d\x1b\x2e\ \x44\x23\x34\x4b\x29\x3c\x50\x2c\x3c\x4f\x2d\x3b\x4a\x30\x3b\x46\ \x2e\x38\x41\x29\x33\x3a\x26\x31\x35\x23\x2c\x30\x21\x29\x2d\x20\ \x27\x2d\x1c\x24\x2b\x19\x21\x27\x16\x1f\x23\x13\x1c\x20\x13\x1a\ \x21\x13\x1b\x22\x13\x1b\x22\x14\x1a\x21\x11\x17\x1e\x12\x18\x1f\ \x11\x17\x1e\x0f\x15\x1c\x0d\x13\x19\x0e\x13\x19\x10\x13\x1b\x0f\ \x12\x1a\x0f\x12\x1a\x0e\x11\x19\x0e\x13\x19\x12\x18\x1c\x18\x1f\ \x27\x1b\x24\x2d\x20\x2a\x32\x23\x2d\x35\x27\x31\x38\x2e\x38\x3e\ \x36\x41\x45\x3b\x46\x4a\x41\x4c\x4f\x43\x4f\x50\x46\x50\x4f\x49\ \x53\x50\x4b\x54\x4f\x4d\x56\x53\x4b\x55\x51\x4b\x55\x50\x4a\x54\ \x4e\x4a\x54\x4e\x4a\x54\x4e\x4b\x56\x50\x4d\x56\x53\x4d\x56\x54\ \x4e\x57\x55\x4e\x57\x53\x4d\x56\x53\x4e\x56\x55\x4f\x57\x56\x4f\ \x58\x59\x4e\x58\x58\x4c\x58\x57\x4c\x57\x57\x49\x53\x56\x48\x55\ \x54\x49\x55\x54\x4a\x56\x57\x4b\x57\x58\x4a\x55\x57\x4c\x56\x59\ \x4d\x58\x5b\x4f\x5c\x60\x00\x00\x00\x54\x9b\xda\x53\x9a\xda\x54\ \x9b\xdb\x55\x9b\xdb\x54\x9a\xda\x51\x98\xd7\x51\x97\xd9\x51\x96\ \xd9\x51\x97\xda\x52\x97\xda\x53\x97\xda\x56\x97\xdb\x53\x95\xd8\ \x4f\x90\xd3\x4e\x8d\xcf\x4f\x8b\xcd\x4f\x8a\xcc\x50\x8d\xcd\x56\ \x93\xd1\x5b\x9a\xd4\x61\xa1\xd9\x64\xa3\xda\x66\xa5\xdf\x65\xa5\ \xde\x61\xa0\xda\x5a\x99\xd3\x54\x90\xcc\x4e\x89\xc7\x4a\x84\xc0\ \x42\x7a\xb5\x42\x76\xb0\x44\x75\xb0\x47\x79\xb3\x4a\x7f\xb9\x4c\ \x83\xbb\x54\x8c\xc4\x5b\x93\xcc\x5d\x96\xd1\x5a\x92\xca\x57\x8b\ \xbe\x4f\x7f\xae\x40\x69\x94\x2f\x50\x73\x23\x38\x52\x17\x25\x35\ \x10\x19\x23\x0a\x0f\x16\x08\x0b\x13\x0a\x0c\x13\x09\x0c\x14\x0b\ \x0e\x16\x0c\x0f\x16\x0c\x0f\x17\x0e\x11\x18\x0f\x14\x1b\x11\x15\ \x1a\x14\x18\x1d\x15\x1b\x1e\x19\x1e\x22\x1b\x21\x22\x1d\x23\x28\ \x1f\x26\x29\x1f\x27\x2a\x23\x2a\x2b\x21\x26\x27\x1d\x22\x23\x1a\ \x1e\x22\x14\x17\x1c\x10\x13\x17\x0c\x0f\x14\x0a\x0d\x13\x0b\x0f\ \x14\x0c\x10\x15\x0d\x12\x17\x10\x13\x1a\x12\x16\x1d\x14\x1a\x20\ \x17\x1d\x24\x18\x1f\x26\x1d\x23\x2a\x1d\x23\x29\x1d\x23\x28\x1a\ \x20\x25\x18\x20\x24\x11\x18\x1f\x10\x17\x1f\x0e\x15\x21\x0e\x18\ \x26\x10\x1d\x2b\x13\x23\x34\x19\x2a\x3e\x1b\x2e\x44\x23\x35\x4b\ \x28\x3b\x4c\x2b\x3f\x4e\x2d\x3d\x4b\x2e\x39\x46\x2c\x35\x41\x29\ \x33\x3b\x26\x30\x36\x23\x2d\x31\x21\x2a\x2f\x20\x28\x2e\x1c\x24\ \x2b\x18\x20\x27\x16\x1e\x23\x13\x1b\x1f\x12\x1a\x20\x11\x19\x20\ \x12\x1a\x21\x12\x19\x20\x13\x18\x20\x12\x19\x20\x10\x16\x1d\x0e\ \x15\x1c\x0e\x14\x1a\x0d\x13\x18\x0e\x11\x19\x0d\x10\x18\x0d\x10\ \x18\x0e\x12\x19\x0e\x13\x18\x13\x1a\x1d\x17\x20\x26\x1a\x23\x2c\ \x1e\x29\x31\x22\x2c\x34\x27\x31\x38\x2d\x38\x3d\x34\x3f\x43\x38\ \x44\x48\x3f\x49\x4d\x3e\x4a\x4c\x3f\x49\x48\x40\x4b\x48\x41\x4b\ \x47\x44\x4c\x4b\x44\x4d\x4b\x45\x4d\x4a\x43\x4c\x49\x42\x4c\x48\ \x41\x4b\x45\x43\x4c\x48\x44\x4d\x4a\x44\x4c\x4b\x43\x4d\x49\x42\ \x4b\x48\x45\x4d\x4b\x43\x4b\x4c\x44\x4c\x4d\x43\x4c\x4f\x40\x4b\ \x4d\x3f\x4b\x4d\x40\x4c\x4f\x3f\x48\x4c\x3e\x4a\x4d\x3f\x4b\x4d\ \x40\x4c\x4e\x41\x4c\x4f\x42\x4d\x52\x43\x4d\x54\x44\x50\x56\x48\ \x56\x5d\x00\x00\x00\x54\x9b\xda\x54\x9c\xdb\x57\x9d\xdc\x58\x9b\ \xda\x58\x9b\xdb\x55\x99\xdb\x54\x98\xd9\x53\x97\xd9\x53\x98\xd9\ \x55\x97\xd9\x55\x97\xd9\x55\x97\xd8\x56\x96\xd7\x51\x91\xd2\x4e\ \x8d\xcf\x4e\x8b\xcd\x4f\x8b\xcc\x51\x8e\xcc\x54\x91\xcf\x5b\x99\ \xd4\x62\xa0\xd9\x65\xa3\xda\x65\xa5\xdc\x64\xa5\xdc\x61\xa1\xda\ \x5c\x9c\xd6\x56\x93\xce\x50\x8b\xc7\x4d\x85\xc2\x46\x7b\xb8\x44\ \x77\xb2\x43\x76\xaf\x46\x79\xb1\x4b\x7e\xb6\x4d\x82\xbb\x54\x8c\ \xc5\x5c\x95\xcc\x5f\x98\xcf\x5d\x93\xc9\x5a\x8e\xc0\x51\x81\xb1\ \x47\x6f\x9a\x33\x55\x79\x24\x3d\x55\x18\x27\x35\x12\x1b\x25\x0a\ \x10\x19\x09\x0a\x12\x0a\x0c\x11\x0a\x0d\x12\x0a\x0e\x15\x0c\x0f\ \x16\x0c\x10\x15\x0f\x13\x18\x0f\x13\x18\x11\x16\x19\x13\x18\x1d\ \x14\x1a\x1f\x18\x1f\x23\x1a\x21\x24\x1e\x25\x28\x1f\x26\x29\x21\ \x28\x2b\x24\x29\x2a\x22\x27\x28\x1d\x22\x22\x1a\x1e\x21\x15\x18\ \x1d\x0f\x11\x18\x0d\x0f\x17\x0a\x0c\x15\x0c\x10\x15\x0d\x11\x15\ \x0e\x12\x17\x10\x14\x19\x13\x17\x1c\x15\x19\x1e\x18\x1d\x22\x1a\ \x20\x25\x1d\x23\x2a\x1d\x23\x2a\x1d\x23\x2a\x19\x1f\x26\x17\x1e\ \x26\x12\x19\x22\x10\x17\x21\x0d\x16\x21\x0d\x17\x25\x0e\x1c\x2b\ \x13\x22\x35\x18\x29\x3f\x1d\x2f\x44\x21\x35\x47\x29\x3c\x4b\x2c\ \x3e\x4c\x2d\x3d\x4a\x30\x3e\x4a\x2d\x39\x44\x2a\x35\x3a\x27\x30\ \x34\x23\x2c\x2f\x21\x2a\x2f\x1d\x26\x2d\x1a\x22\x29\x17\x1f\x26\ \x18\x1e\x25\x16\x1b\x20\x13\x1a\x20\x11\x19\x20\x12\x1a\x21\x13\ \x19\x22\x14\x18\x22\x11\x19\x20\x10\x18\x1f\x0d\x14\x1b\x0f\x15\ \x1a\x0d\x12\x18\x0d\x10\x18\x0d\x10\x18\x0e\x10\x18\x0d\x12\x17\ \x10\x13\x19\x13\x18\x20\x16\x1f\x26\x1a\x24\x2b\x1e\x27\x2f\x24\ \x2c\x35\x27\x31\x39\x2c\x37\x3f\x2f\x3a\x42\x35\x40\x48\x39\x44\ \x49\x3a\x46\x48\x3a\x48\x47\x3a\x46\x45\x3b\x45\x45\x3c\x47\x45\ \x3d\x45\x44\x3d\x45\x44\x3e\x46\x45\x3a\x44\x43\x3c\x45\x41\x3c\ \x45\x42\x3e\x47\x44\x3f\x48\x45\x3e\x46\x44\x3d\x45\x44\x3b\x44\ \x44\x3d\x46\x49\x39\x42\x46\x3a\x43\x4a\x37\x41\x48\x37\x41\x45\ \x38\x43\x47\x36\x43\x45\x33\x41\x44\x39\x45\x49\x3b\x46\x4a\x39\ \x45\x49\x3a\x48\x4d\x3f\x4a\x53\x42\x4f\x58\x4b\x59\x62\x00\x00\ \x00\x56\x9b\xdb\x58\x9d\xdc\x58\x9c\xdb\x59\x9c\xda\x59\x9c\xdb\ \x56\x9a\xda\x54\x99\xd8\x53\x98\xd9\x54\x96\xd8\x56\x98\xd9\x57\ \x99\xda\x57\x98\xd9\x57\x98\xd9\x53\x93\xd4\x51\x8f\xd1\x50\x8c\ \xce\x4f\x8b\xcd\x50\x8d\xcc\x52\x90\xcd\x57\x96\xd1\x61\x9e\xd9\ \x65\xa2\xdb\x65\xa5\xdc\x64\xa5\xdd\x61\xa1\xdb\x5c\x9b\xd5\x55\ \x93\xcd\x51\x8c\xc8\x4f\x86\xc3\x49\x7e\xba\x42\x75\xb1\x42\x77\ \xae\x42\x78\xac\x49\x7f\xb4\x4d\x84\xb9\x54\x8d\xc2\x5c\x95\xc9\ \x61\x9a\xce\x5f\x97\xc9\x5d\x90\xc0\x54\x84\xb0\x47\x71\x9a\x33\ \x56\x79\x23\x3c\x54\x17\x27\x34\x11\x1b\x24\x0a\x10\x19\x09\x0a\ \x12\x0c\x0c\x14\x0a\x0d\x12\x0b\x0f\x16\x0d\x11\x19\x0d\x10\x18\ \x0f\x13\x18\x10\x14\x19\x11\x15\x19\x14\x19\x1d\x14\x1a\x1f\x17\ \x1e\x22\x1a\x21\x24\x1c\x23\x27\x1f\x26\x29\x22\x29\x29\x24\x2a\ \x28\x1f\x25\x25\x1c\x21\x23\x18\x1c\x20\x14\x17\x1b\x0f\x12\x18\ \x0c\x0e\x15\x0a\x0d\x13\x0c\x0f\x15\x0c\x10\x15\x0e\x12\x17\x10\ \x13\x1a\x12\x15\x1c\x15\x19\x20\x17\x1d\x23\x1a\x20\x26\x1c\x22\ \x29\x1d\x23\x2a\x1d\x23\x2a\x1a\x20\x27\x16\x1d\x25\x12\x19\x22\ \x0f\x17\x1f\x0d\x16\x22\x0c\x16\x24\x0f\x1d\x2c\x15\x23\x36\x19\ \x2a\x3f\x1e\x30\x46\x24\x37\x4b\x28\x3a\x4c\x2b\x3d\x4d\x2e\x3f\ \x4c\x2f\x3d\x47\x2f\x3a\x42\x2c\x36\x3a\x28\x31\x34\x24\x2b\x2e\ \x20\x28\x2c\x1a\x23\x27\x16\x1f\x23\x15\x1e\x23\x14\x1a\x1f\x14\ \x1b\x1e\x12\x1a\x1f\x11\x19\x20\x12\x1a\x21\x13\x1b\x22\x12\x19\ \x1f\x10\x18\x1f\x0f\x17\x1e\x10\x17\x1e\x0f\x15\x1a\x0e\x14\x19\ \x0e\x11\x1a\x0e\x11\x1a\x0f\x12\x19\x0e\x12\x17\x11\x16\x1c\x15\ \x1d\x24\x17\x20\x27\x1a\x24\x2b\x1d\x26\x2f\x24\x2d\x37\x27\x33\ \x3c\x2d\x39\x42\x32\x3e\x48\x36\x43\x4c\x3a\x48\x4e\x39\x49\x4b\ \x3a\x49\x4a\x3a\x49\x49\x39\x47\x48\x3b\x47\x48\x3c\x46\x45\x3b\ \x44\x42\x3a\x43\x42\x38\x41\x40\x3a\x42\x41\x3a\x42\x41\x3c\x44\ \x43\x3b\x43\x42\x3a\x42\x41\x38\x40\x3f\x36\x3e\x40\x32\x3b\x3f\ \x33\x3c\x40\x30\x3a\x40\x30\x38\x3f\x34\x3c\x43\x32\x3c\x44\x33\ \x3f\x46\x33\x41\x48\x36\x43\x4b\x37\x44\x4b\x38\x45\x4d\x3a\x49\ \x51\x3d\x4e\x56\x43\x53\x5c\x4d\x5d\x68\x00\x00\x00\x59\x9b\xd8\ \x5b\x9d\xda\x5a\x9d\xda\x5b\x9e\xdb\x59\x9c\xd9\x59\x9c\xda\x56\ \x9a\xd9\x55\x99\xd8\x56\x99\xd8\x57\x9a\xd9\x58\x99\xd8\x58\x98\ \xd8\x59\x99\xda\x55\x95\xd6\x52\x90\xd2\x53\x90\xd2\x50\x8c\xce\ \x50\x8d\xcd\x52\x8f\xcd\x56\x93\xd0\x5f\x9c\xd7\x63\xa0\xda\x64\ \xa4\xdb\x62\xa2\xdd\x61\xa1\xdb\x5b\x9b\xd5\x56\x93\xce\x50\x8b\ \xc8\x4f\x87\xc4\x49\x7e\xbb\x44\x77\xb2\x42\x77\xad\x45\x7b\xb0\ \x4a\x7f\xb4\x4d\x84\xb9\x54\x8c\xc0\x5d\x96\xc9\x61\x99\xcc\x62\ \x97\xca\x5e\x90\xbf\x55\x85\xb0\x47\x71\x9a\x35\x59\x7b\x26\x40\ \x58\x18\x27\x37\x12\x1b\x25\x09\x0f\x18\x09\x0b\x13\x0a\x0b\x13\ \x0b\x0d\x15\x0a\x0f\x17\x0c\x12\x19\x0c\x11\x18\x0d\x10\x18\x0f\ \x12\x18\x11\x15\x1b\x14\x18\x1d\x10\x18\x1b\x18\x1f\x22\x1a\x21\ \x24\x1d\x24\x28\x1f\x26\x29\x21\x28\x28\x23\x2a\x28\x22\x27\x27\ \x1d\x23\x25\x19\x1c\x20\x13\x16\x1a\x0f\x12\x17\x0c\x0f\x14\x09\ \x0c\x11\x0b\x0f\x14\x0d\x10\x16\x0f\x11\x19\x10\x13\x1b\x11\x14\ \x1c\x15\x19\x21\x18\x1d\x24\x19\x1f\x26\x1b\x21\x28\x1d\x23\x2a\ \x1d\x23\x2a\x19\x1f\x26\x18\x1e\x26\x11\x18\x21\x11\x18\x21\x0e\ \x17\x22\x0e\x19\x26\x10\x1d\x2c\x16\x25\x36\x19\x29\x3c\x1e\x2f\ \x45\x22\x34\x4a\x2a\x3b\x4f\x2a\x3a\x4c\x2c\x3c\x4a\x2f\x3c\x45\ \x30\x3b\x41\x2d\x36\x39\x29\x30\x32\x24\x2b\x2c\x20\x26\x29\x19\ \x20\x24\x16\x1c\x1f\x12\x18\x1d\x11\x1a\x1e\x10\x19\x1d\x10\x19\ \x1e\x11\x19\x20\x11\x19\x20\x11\x19\x20\x13\x19\x1f\x13\x19\x20\ \x11\x17\x1e\x12\x18\x1f\x0e\x14\x19\x0d\x11\x16\x0e\x12\x17\x0c\ \x10\x15\x0e\x12\x17\x10\x14\x19\x10\x15\x1a\x15\x1d\x24\x18\x1f\ \x28\x1b\x24\x2d\x20\x2a\x32\x26\x32\x3b\x2a\x37\x41\x30\x3d\x46\ \x34\x43\x4c\x39\x49\x52\x39\x4b\x51\x39\x4a\x4d\x39\x4b\x4d\x38\ \x48\x4a\x39\x48\x4c\x39\x46\x49\x3a\x45\x46\x39\x43\x43\x37\x41\ \x41\x38\x41\x41\x3a\x41\x41\x3c\x44\x44\x3b\x43\x43\x3a\x42\x42\ \x38\x40\x41\x35\x3e\x41\x31\x3a\x3d\x31\x3a\x3e\x2d\x38\x3b\x2d\ \x37\x3d\x2e\x38\x3f\x2e\x38\x42\x32\x3d\x48\x33\x41\x4c\x35\x45\ \x50\x37\x46\x50\x39\x45\x51\x3a\x4a\x54\x3b\x4a\x56\x3d\x4e\x5a\ \x48\x5a\x65\x51\x63\x6e\x00\x00\x00\x5b\x9f\xda\x5a\x9e\xda\x5c\ \xa0\xdb\x5d\x9f\xda\x5a\x9d\xdb\x5a\x9d\xda\x58\x9b\xd8\x57\x9a\ \xd9\x56\x99\xd9\x57\x99\xd9\x5a\x9a\xda\x5a\x99\xda\x5a\x9a\xda\ \x57\x97\xd7\x54\x93\xd4\x54\x92\xd2\x51\x8e\xce\x51\x8e\xce\x52\ \x8f\xce\x55\x93\xd0\x5c\x99\xd4\x62\x9f\xda\x62\xa1\xdb\x62\xa2\ \xdc\x60\xa0\xda\x5d\x9c\xd7\x56\x93\xcf\x50\x8b\xc7\x4d\x85\xc2\ \x49\x7e\xba\x44\x77\xb2\x43\x77\xaf\x46\x79\xb1\x4c\x7e\xb3\x4e\ \x82\xb7\x54\x88\xbd\x5b\x92\xc6\x61\x98\xcb\x5f\x94\xc7\x5d\x8e\ \xbd\x55\x84\xaf\x49\x73\x9c\x35\x59\x7c\x25\x3f\x5a\x18\x27\x39\ \x10\x19\x24\x0a\x11\x18\x09\x09\x13\x0b\x0b\x15\x0b\x0d\x17\x0b\ \x0d\x17\x0b\x10\x18\x0c\x12\x19\x0d\x13\x1a\x0d\x12\x1a\x13\x15\ \x1e\x13\x17\x1d\x15\x1c\x1f\x18\x1f\x22\x1b\x22\x25\x1e\x25\x28\ \x1f\x26\x29\x24\x2a\x2c\x25\x2a\x2b\x23\x28\x29\x1d\x22\x25\x18\ \x1c\x1f\x13\x16\x1a\x0e\x11\x16\x0d\x10\x15\x0a\x0d\x12\x0c\x0f\ \x14\x0d\x0f\x17\x0e\x11\x19\x10\x13\x1b\x13\x16\x1e\x15\x18\x20\ \x17\x1d\x24\x18\x1e\x25\x1c\x22\x29\x1c\x22\x29\x1b\x21\x28\x19\ \x1f\x26\x17\x1e\x26\x11\x18\x21\x11\x18\x21\x0d\x16\x21\x0d\x18\ \x26\x11\x1e\x2d\x16\x25\x36\x1a\x2b\x3e\x1e\x2f\x44\x23\x32\x4b\ \x26\x37\x4b\x2b\x3b\x4d\x2e\x3d\x4a\x31\x3c\x46\x2f\x38\x3f\x2d\ \x35\x38\x27\x2f\x2f\x24\x29\x2a\x1d\x22\x24\x18\x1f\x22\x15\x1b\ \x20\x12\x18\x1f\x12\x19\x20\x10\x18\x1f\x10\x18\x1f\x11\x19\x21\ \x11\x19\x1e\x12\x1a\x1f\x12\x18\x1d\x14\x1a\x21\x11\x17\x1e\x10\ \x16\x1d\x11\x15\x1a\x0f\x14\x18\x0e\x13\x16\x0e\x12\x17\x0d\x11\ \x16\x10\x13\x19\x12\x18\x1f\x14\x1d\x26\x1b\x22\x2b\x1c\x25\x2e\ \x23\x2e\x36\x27\x35\x3d\x2e\x3e\x45\x31\x42\x49\x35\x47\x4e\x39\ \x4b\x52\x3a\x4d\x53\x3a\x4a\x50\x3a\x49\x4c\x3c\x4b\x50\x39\x48\ \x4f\x39\x47\x4c\x3c\x48\x4b\x3a\x44\x45\x3b\x45\x45\x3a\x44\x45\ \x39\x43\x43\x3a\x44\x44\x3b\x45\x45\x3b\x45\x45\x37\x41\x43\x37\ \x40\x44\x33\x3c\x40\x31\x3b\x3f\x2f\x3a\x3f\x30\x3d\x43\x2f\x3d\ \x44\x32\x3e\x49\x34\x41\x4f\x39\x49\x59\x3a\x4a\x5a\x3d\x4c\x5c\ \x3d\x4c\x5c\x40\x50\x60\x41\x51\x5f\x47\x54\x62\x4f\x5f\x6c\x59\ \x6a\x77\x00\x00\x00\x5e\xa1\xdb\x5d\xa1\xda\x5f\xa2\xdb\x5f\xa2\ \xdb\x5d\x9f\xdb\x5c\x9e\xda\x59\x9b\xd8\x57\x9a\xd8\x58\x9b\xd9\ \x58\x9a\xd9\x59\x9b\xda\x5a\x9c\xdb\x5b\x9b\xdb\x59\x99\xd9\x56\ \x95\xd5\x55\x93\xd3\x55\x91\xd2\x53\x90\xd0\x52\x90\xce\x57\x93\ \xd0\x5c\x98\xd4\x61\x9e\xd8\x62\xa1\xdb\x61\xa1\xdb\x61\x9f\xdb\ \x5c\x9a\xd6\x55\x93\xcf\x50\x8d\xc9\x4d\x87\xc5\x49\x80\xbd\x45\ \x79\xb5\x44\x77\xb0\x45\x78\xaf\x4c\x7e\xb6\x4f\x81\xb8\x53\x87\ \xbd\x58\x8d\xc2\x5f\x94\xc8\x60\x94\xc6\x5c\x8d\xbc\x51\x80\xae\ \x46\x70\x9b\x35\x59\x7d\x29\x42\x5f\x18\x27\x3a\x11\x1c\x25\x0a\ \x12\x19\x0a\x0b\x14\x0b\x0c\x16\x0b\x0c\x16\x0d\x10\x19\x0d\x10\ \x19\x0d\x13\x1a\x0d\x13\x1a\x0d\x14\x1b\x12\x16\x1c\x12\x18\x1b\ \x15\x1d\x20\x18\x20\x24\x1b\x23\x26\x1e\x25\x29\x21\x27\x2b\x23\ \x29\x2d\x24\x2a\x2d\x23\x29\x2b\x1b\x21\x22\x18\x1c\x1f\x14\x17\ \x1c\x0e\x11\x16\x0c\x0d\x14\x0a\x0c\x13\x0d\x0f\x17\x0d\x10\x18\ \x0e\x11\x19\x11\x14\x1c\x12\x15\x1d\x15\x18\x20\x17\x1b\x21\x1a\ \x20\x26\x1b\x21\x28\x1b\x22\x29\x19\x20\x27\x18\x1f\x27\x15\x1b\ \x25\x13\x1a\x24\x11\x18\x21\x0d\x17\x22\x0e\x1a\x27\x10\x1d\x2e\ \x15\x23\x36\x1a\x2b\x3e\x1f\x32\x47\x22\x35\x4c\x29\x3b\x4e\x2c\ \x3d\x4c\x2f\x3f\x4a\x31\x3d\x47\x30\x39\x42\x2d\x35\x37\x28\x2e\ \x2f\x24\x29\x2a\x1e\x24\x26\x19\x21\x25\x16\x1c\x21\x13\x19\x1f\ \x11\x19\x20\x10\x18\x1f\x10\x18\x20\x10\x18\x20\x11\x18\x20\x14\ \x1a\x21\x13\x19\x20\x11\x18\x1f\x12\x18\x1f\x14\x18\x1f\x14\x18\ \x1d\x10\x14\x19\x10\x13\x19\x10\x14\x19\x10\x14\x19\x11\x17\x1b\ \x15\x1c\x22\x18\x21\x29\x1d\x26\x2f\x24\x2d\x36\x27\x34\x3c\x2d\ \x3b\x43\x31\x41\x48\x35\x47\x4f\x3a\x4d\x54\x3e\x4f\x56\x3e\x50\ \x56\x3d\x4f\x54\x3d\x4f\x54\x3c\x4d\x53\x3d\x4f\x55\x3e\x4e\x54\ \x3d\x4a\x51\x3f\x4b\x4e\x3f\x4b\x4e\x41\x4b\x4e\x41\x4a\x4d\x40\ \x4a\x4c\x41\x4c\x4d\x40\x4b\x4d\x3e\x48\x4c\x3a\x45\x49\x39\x43\ \x47\x37\x41\x48\x3a\x43\x4b\x39\x45\x4d\x3a\x47\x51\x3a\x49\x55\ \x3e\x4d\x5d\x41\x54\x63\x45\x54\x65\x47\x56\x67\x47\x56\x67\x48\ \x58\x68\x48\x59\x69\x51\x5f\x6c\x57\x67\x74\x5d\x6e\x7b\x00\x00\ \x00\x62\xa2\xdc\x63\xa4\xde\x62\xa3\xdd\x62\xa2\xdc\x5f\xa2\xdc\ \x5c\x9e\xda\x5b\x9c\xd9\x5b\x9c\xd9\x58\x9b\xd8\x59\x9b\xd8\x59\ \x9c\xd8\x5a\x9d\xd9\x5c\x9c\xd9\x5c\x9d\xda\x57\x97\xd4\x57\x96\ \xd3\x58\x94\xd1\x55\x92\xd0\x55\x91\xcf\x58\x94\xd0\x5b\x97\xd3\ \x5e\x9b\xd6\x62\xa1\xdb\x61\x9f\xda\x60\x9e\xda\x5b\x9a\xd7\x55\ \x93\xd0\x4d\x8b\xc8\x4c\x87\xc5\x49\x81\xbe\x45\x7a\xb7\x43\x76\ \xb0\x45\x78\xb0\x4a\x7d\xb5\x4c\x7f\xb7\x51\x84\xba\x56\x8a\xbf\ \x5c\x91\xc5\x5d\x91\xc3\x59\x8a\xb9\x4f\x7f\xac\x43\x6c\x97\x33\ \x57\x7a\x29\x42\x5f\x1b\x2a\x3d\x0f\x1a\x24\x0a\x11\x19\x09\x0c\ \x14\x0c\x0d\x16\x0b\x0d\x17\x0c\x0e\x17\x0c\x11\x19\x0d\x13\x1a\ \x0e\x14\x1b\x0f\x15\x1c\x12\x16\x1c\x14\x1a\x20\x15\x1c\x21\x18\ \x21\x25\x19\x23\x27\x1d\x24\x29\x20\x27\x2a\x24\x2b\x2e\x23\x2a\ \x2d\x1f\x26\x28\x1c\x22\x23\x17\x1b\x1e\x13\x16\x1b\x0e\x11\x16\ \x0c\x0c\x14\x0a\x0b\x14\x0c\x0e\x16\x0c\x0f\x17\x0f\x12\x1a\x12\ \x15\x1d\x12\x15\x1d\x14\x17\x1f\x16\x1a\x1f\x18\x1d\x22\x18\x1f\ \x26\x19\x21\x28\x19\x21\x28\x17\x1e\x26\x15\x1b\x25\x13\x17\x22\ \x0e\x17\x21\x0e\x19\x25\x0e\x1a\x29\x10\x1c\x2e\x17\x25\x39\x19\ \x2b\x40\x1e\x32\x47\x22\x37\x4d\x2a\x3d\x4f\x2e\x3f\x4e\x30\x3f\ \x4b\x31\x3c\x47\x2e\x37\x41\x2b\x33\x36\x27\x2e\x2f\x23\x29\x2a\ \x1e\x25\x28\x19\x21\x24\x17\x1d\x22\x14\x1b\x20\x10\x19\x1d\x11\ \x18\x1f\x11\x18\x20\x13\x1a\x23\x12\x19\x21\x14\x19\x22\x13\x18\ \x21\x0f\x17\x1e\x12\x18\x1f\x12\x15\x1d\x13\x17\x1c\x11\x15\x1a\ \x11\x15\x1d\x11\x13\x1b\x11\x15\x1b\x13\x19\x1e\x17\x1e\x25\x1b\ \x23\x2c\x22\x2c\x34\x26\x32\x3a\x2c\x3a\x43\x33\x41\x4a\x37\x47\ \x50\x3b\x4d\x56\x3e\x51\x5a\x42\x53\x5c\x43\x54\x5b\x44\x56\x5c\ \x41\x54\x59\x42\x54\x5a\x43\x54\x5c\x43\x52\x5a\x46\x55\x5c\x45\ \x53\x59\x48\x54\x59\x46\x52\x57\x46\x50\x57\x45\x51\x54\x46\x52\ \x54\x47\x53\x56\x43\x4f\x53\x3f\x4b\x4f\x3d\x4a\x4e\x3e\x4a\x50\ \x40\x4b\x55\x3f\x4d\x57\x40\x4e\x5a\x42\x53\x5f\x46\x57\x66\x48\ \x5a\x6a\x48\x59\x6a\x4e\x5e\x6f\x4d\x5e\x6f\x50\x63\x72\x52\x65\ \x73\x55\x66\x73\x5c\x6c\x7b\x62\x73\x81\x00\x00\x00\x65\xa4\xde\ \x63\xa3\xdd\x64\xa4\xde\x62\xa3\xdb\x61\xa1\xdb\x5f\x9e\xda\x5c\ \x9d\xd9\x5a\x9b\xd8\x5b\x9c\xd9\x5b\x9c\xd9\x5c\x9d\xda\x5b\x9c\ \xd9\x5f\x9e\xdb\x5d\x9d\xda\x58\x99\xd6\x58\x97\xd4\x59\x95\xd3\ \x5a\x93\xd2\x57\x93\xcf\x58\x94\xd0\x59\x97\xd2\x5d\x9b\xd5\x63\ \xa0\xdb\x5f\x9f\xda\x5f\x9e\xda\x5a\x99\xd6\x54\x93\xcf\x4f\x8c\ \xc9\x4a\x86\xc4\x4b\x83\xc0\x46\x7b\xb7\x44\x77\xb0\x45\x78\xb0\ \x4b\x7e\xb6\x4d\x81\xb6\x4f\x83\xb8\x53\x87\xbc\x59\x8d\xc2\x5b\ \x8e\xc1\x57\x88\xb8\x4c\x7b\xaa\x40\x6b\x95\x34\x58\x7b\x28\x41\ \x5e\x1b\x2b\x3e\x10\x1c\x25\x08\x0f\x18\x08\x0b\x14\x0c\x0e\x16\ \x0c\x0f\x17\x0c\x0f\x17\x0b\x11\x18\x0c\x12\x19\x0c\x12\x19\x0f\ \x15\x1c\x11\x15\x1d\x12\x17\x1f\x15\x1d\x22\x16\x1f\x23\x1b\x25\ \x28\x1e\x26\x2a\x1f\x27\x29\x23\x2b\x2b\x22\x2a\x2a\x1e\x25\x27\ \x1c\x21\x24\x17\x1c\x1f\x13\x16\x1b\x0e\x11\x16\x0c\x0c\x14\x0a\ \x0a\x13\x0c\x0e\x16\x0d\x0f\x17\x0f\x12\x1a\x10\x12\x1a\x11\x15\ \x1d\x14\x17\x1f\x18\x1c\x21\x17\x1d\x22\x19\x1f\x26\x19\x21\x28\ \x19\x21\x28\x15\x1d\x25\x14\x1b\x25\x13\x17\x22\x10\x18\x23\x10\ \x1a\x27\x10\x1b\x2c\x14\x20\x35\x15\x24\x3a\x18\x2b\x41\x1f\x34\ \x4a\x23\x37\x4f\x2d\x41\x54\x30\x42\x54\x31\x41\x4f\x2f\x3c\x49\ \x2b\x36\x41\x28\x31\x35\x27\x2e\x31\x23\x2a\x2d\x1e\x25\x28\x18\ \x21\x25\x16\x1f\x23\x15\x1e\x22\x12\x18\x1e\x12\x17\x1f\x12\x19\ \x20\x10\x18\x1f\x14\x1b\x22\x13\x19\x20\x11\x17\x1e\x12\x19\x20\ \x12\x16\x1e\x12\x15\x1e\x13\x17\x1c\x10\x14\x1a\x11\x13\x1e\x11\ \x14\x1c\x15\x19\x20\x17\x1e\x25\x1a\x22\x2a\x20\x29\x32\x24\x2f\ \x39\x2b\x37\x41\x2e\x3f\x48\x35\x46\x4f\x3c\x4d\x58\x3e\x52\x5d\ \x41\x55\x60\x46\x58\x62\x46\x59\x61\x47\x5a\x60\x49\x5c\x61\x47\ \x5a\x61\x49\x5b\x63\x4b\x5c\x65\x49\x5b\x62\x4a\x5b\x62\x4a\x59\ \x5f\x4c\x5a\x61\x4b\x58\x5f\x49\x57\x5c\x4a\x59\x5c\x4a\x59\x5d\ \x45\x54\x58\x43\x52\x55\x44\x52\x58\x43\x53\x5b\x44\x51\x60\x43\ \x53\x60\x46\x57\x63\x48\x5a\x68\x49\x5c\x6b\x4a\x5d\x6d\x49\x5d\ \x6f\x4e\x62\x73\x52\x66\x77\x51\x65\x76\x54\x69\x77\x57\x6a\x77\ \x5b\x6e\x7d\x61\x74\x83\x00\x00\x00\x66\xa6\xdd\x66\xa6\xdd\x67\ \xa7\xde\x65\xa5\xdc\x64\xa4\xdc\x61\xa1\xdc\x5f\x9e\xd9\x5d\x9c\ \xd8\x5c\x9b\xd8\x5d\x9c\xd9\x5c\x9c\xd9\x5d\x9d\xda\x60\x9f\xdc\ \x60\x9f\xdc\x5a\x9b\xd8\x58\x97\xd4\x59\x96\xd4\x5c\x95\xd2\x5a\ \x94\xd1\x58\x94\xd0\x5a\x97\xd3\x5d\x9b\xd5\x63\x9f\xda\x61\x9e\ \xd9\x5d\x9c\xd8\x5a\x99\xd5\x54\x92\xd0\x4f\x8c\xca\x4a\x86\xc4\ \x4c\x84\xc1\x47\x7c\xb8\x47\x78\xb1\x47\x78\xaf\x4a\x7c\xb1\x4e\ \x80\xb5\x50\x82\xb7\x50\x84\xb9\x56\x8a\xbf\x5a\x8c\xc0\x57\x88\ \xb9\x4c\x7c\xab\x41\x6b\x98\x33\x59\x7c\x29\x44\x62\x1b\x2d\x41\ \x10\x1b\x26\x0a\x11\x1a\x09\x0b\x14\x0b\x0d\x15\x0b\x0e\x16\x0c\ \x0f\x17\x0e\x12\x1a\x0d\x13\x1a\x0d\x13\x1a\x0f\x15\x1c\x12\x15\ \x1e\x15\x1b\x22\x15\x1d\x21\x18\x21\x25\x1a\x25\x27\x1e\x27\x2a\ \x1f\x29\x2b\x22\x2b\x2d\x22\x2b\x2a\x20\x27\x29\x1b\x20\x25\x18\ \x1c\x21\x11\x14\x19\x0d\x10\x15\x0c\x0c\x13\x0a\x0c\x14\x0b\x0d\ \x15\x0d\x10\x18\x0e\x11\x19\x10\x13\x1b\x12\x15\x1d\x15\x18\x20\ \x17\x1b\x20\x18\x1e\x23\x19\x1f\x26\x19\x21\x28\x19\x21\x28\x16\ \x1e\x26\x14\x1b\x25\x13\x19\x24\x10\x18\x25\x10\x1b\x29\x0e\x1b\ \x2d\x13\x21\x36\x15\x27\x3d\x1a\x2f\x46\x1f\x34\x4d\x27\x3b\x54\ \x2f\x43\x56\x31\x42\x55\x32\x42\x54\x2f\x3d\x4c\x2a\x36\x42\x28\ \x31\x39\x27\x2f\x34\x24\x2a\x2d\x20\x27\x2b\x18\x21\x25\x18\x21\ \x25\x16\x1f\x22\x12\x18\x1e\x11\x17\x1e\x10\x17\x1e\x12\x1a\x21\ \x12\x1a\x21\x13\x19\x20\x12\x18\x1f\x11\x17\x1e\x12\x15\x1d\x13\ \x16\x1e\x12\x16\x1c\x10\x16\x1b\x11\x17\x1e\x12\x17\x1f\x16\x1c\ \x23\x17\x20\x28\x1c\x26\x2f\x23\x2d\x37\x29\x36\x40\x2d\x3d\x48\ \x34\x45\x51\x3b\x4d\x58\x3f\x52\x5e\x45\x58\x66\x49\x5c\x6a\x4b\ \x60\x6b\x4d\x62\x6b\x4e\x63\x6b\x4e\x64\x6a\x4e\x63\x6b\x4e\x63\ \x6b\x50\x64\x6c\x50\x64\x6c\x54\x66\x6e\x54\x65\x6d\x52\x62\x6b\ \x51\x63\x6a\x51\x63\x68\x52\x64\x69\x53\x64\x6a\x4f\x60\x66\x49\ \x5b\x60\x4a\x5b\x62\x4a\x5c\x66\x4b\x5b\x69\x4b\x5d\x6b\x4b\x5e\ \x6c\x4e\x62\x71\x4f\x63\x74\x50\x65\x76\x4b\x62\x74\x50\x67\x79\ \x56\x6d\x7d\x57\x6d\x7d\x59\x6e\x7d\x5c\x71\x7e\x5f\x74\x83\x62\ \x78\x86\x00\x00\x00\x69\xa7\xdd\x67\xa7\xdd\x67\xa7\xdd\x66\xa6\ \xdc\x63\xa3\xda\x62\xa2\xda\x60\x9f\xd9\x5e\x9d\xd9\x5d\x9c\xd9\ \x5e\x9d\xda\x5f\x9e\xdb\x5f\x9e\xda\x61\x9f\xdc\x60\x9f\xdc\x5d\ \x9f\xdb\x5b\x9b\xd7\x5a\x98\xd5\x5d\x98\xd3\x5a\x96\xd1\x5a\x96\ \xd1\x5b\x97\xd3\x60\x9b\xd6\x63\x9f\xda\x62\x9f\xda\x5d\x9c\xd8\ \x59\x9a\xd6\x55\x94\xd1\x4d\x8a\xc8\x4b\x86\xc4\x4c\x84\xc1\x45\ \x7b\xb6\x46\x79\xb0\x46\x78\xad\x4a\x7c\xb1\x4e\x80\xb4\x50\x82\ \xb7\x4d\x80\xb8\x54\x87\xbe\x58\x8a\xbf\x57\x88\xba\x4d\x7d\xad\ \x3f\x6a\x98\x38\x5d\x83\x2a\x44\x65\x1c\x2d\x44\x10\x1a\x28\x09\ \x10\x19\x09\x0b\x15\x0c\x0e\x16\x0c\x0f\x15\x0c\x0f\x16\x0d\x11\ \x19\x0d\x13\x1a\x0d\x13\x1a\x10\x16\x1d\x13\x18\x1c\x15\x1c\x20\ \x16\x1e\x22\x17\x20\x24\x1a\x25\x29\x1e\x27\x2b\x20\x29\x2c\x22\ \x2b\x2e\x21\x29\x2d\x1f\x26\x2a\x1a\x1f\x24\x17\x1b\x20\x12\x15\ \x1a\x0d\x10\x15\x0c\x0c\x14\x0b\x0b\x14\x0c\x0e\x16\x0e\x10\x18\ \x0d\x10\x19\x10\x13\x1b\x12\x15\x1d\x15\x18\x20\x18\x1c\x21\x18\ \x1d\x23\x19\x1f\x26\x18\x20\x27\x18\x20\x27\x13\x1b\x23\x13\x1b\ \x24\x11\x1a\x25\x0f\x1a\x27\x0c\x1a\x2a\x0e\x1c\x2f\x10\x20\x36\ \x14\x28\x3f\x1a\x30\x47\x1f\x35\x4e\x27\x3b\x56\x2f\x41\x57\x30\ \x43\x58\x34\x44\x57\x30\x3f\x4f\x28\x37\x43\x27\x31\x39\x25\x2d\ \x34\x24\x2b\x2f\x1e\x24\x29\x19\x21\x26\x16\x20\x24\x14\x1d\x21\ \x13\x19\x1f\x11\x15\x1d\x13\x19\x20\x11\x19\x20\x12\x19\x20\x14\ \x1a\x21\x12\x18\x20\x12\x18\x1f\x13\x16\x1e\x13\x15\x1e\x14\x18\ \x1d\x0f\x15\x1a\x10\x16\x1a\x14\x1a\x1f\x16\x1e\x24\x19\x24\x2b\ \x1f\x2b\x33\x25\x31\x3c\x2e\x3b\x47\x31\x42\x4d\x3a\x4c\x58\x3d\ \x51\x5d\x44\x57\x64\x4a\x5d\x6c\x4b\x60\x6f\x4f\x65\x72\x51\x67\ \x72\x52\x69\x71\x53\x6a\x71\x53\x6a\x72\x53\x69\x74\x55\x6b\x73\ \x56\x6b\x73\x57\x6b\x73\x59\x6c\x74\x57\x6a\x72\x58\x6b\x73\x59\ \x6c\x71\x59\x6c\x71\x58\x6b\x70\x57\x68\x70\x4f\x61\x68\x4e\x61\ \x6a\x50\x63\x6d\x50\x63\x71\x4e\x63\x72\x50\x65\x74\x53\x67\x77\ \x55\x69\x7a\x54\x69\x7a\x4d\x67\x78\x54\x6c\x7e\x57\x6f\x80\x58\ \x71\x81\x5b\x72\x82\x5e\x72\x81\x5d\x73\x82\x60\x77\x86\x00\x00\ \x00\x69\xa9\xdf\x6a\xa7\xdd\x69\xa7\xdd\x68\xa6\xdc\x64\xa3\xdb\ \x63\xa2\xdb\x60\xa0\xda\x5e\x9e\xd8\x5f\x9f\xd8\x5e\x9e\xd8\x5f\ \x9e\xda\x5f\x9e\xda\x61\xa1\xdc\x60\x9f\xdb\x61\xa0\xdc\x5d\x9c\ \xd9\x5d\x9b\xd8\x60\x9a\xd7\x5e\x97\xd4\x5c\x97\xd4\x5c\x98\xd4\ \x60\x9c\xd7\x62\xa1\xd9\x62\xa2\xdc\x5e\x9d\xd9\x5b\x9a\xd7\x58\ \x96\xd4\x50\x8d\xcd\x4c\x87\xc7\x4c\x83\xc3\x47\x7e\xba\x44\x77\ \xb3\x43\x75\xaf\x49\x7a\xb2\x4e\x7f\xb7\x4e\x81\xb8\x4e\x81\xb6\ \x53\x87\xbd\x57\x8b\xc0\x57\x8a\xbd\x4e\x80\xaf\x43\x6e\x9d\x39\ \x5c\x87\x2a\x48\x69\x1e\x32\x46\x10\x1a\x25\x08\x0f\x18\x0a\x0c\ \x15\x0c\x0e\x16\x0d\x0f\x17\x0c\x0f\x17\x0f\x14\x1b\x10\x16\x1c\ \x10\x16\x1b\x12\x16\x1a\x14\x19\x1c\x15\x1c\x1e\x15\x1d\x1f\x19\ \x23\x26\x1a\x25\x2a\x1d\x26\x29\x20\x2a\x2c\x24\x2d\x2d\x23\x2b\ \x2b\x1f\x26\x28\x1a\x21\x24\x19\x1c\x21\x12\x15\x1a\x0d\x10\x15\ \x0a\x0e\x12\x0a\x0d\x12\x0b\x0f\x14\x0d\x11\x16\x0f\x13\x18\x0f\ \x14\x1b\x10\x16\x1c\x15\x1b\x20\x15\x1d\x23\x16\x1e\x25\x17\x1e\ \x27\x18\x20\x28\x18\x20\x27\x16\x1d\x26\x14\x1b\x26\x12\x1a\x28\ \x0f\x1b\x29\x0e\x1c\x2d\x0c\x1e\x2f\x13\x25\x39\x19\x2d\x42\x1b\ \x32\x48\x20\x36\x50\x27\x3c\x58\x2d\x42\x58\x30\x45\x5b\x31\x42\ \x56\x33\x40\x51\x2c\x37\x47\x27\x31\x3b\x24\x2e\x33\x20\x28\x2e\ \x1c\x24\x2b\x19\x23\x27\x16\x1f\x23\x11\x19\x20\x11\x19\x1f\x11\ \x17\x1f\x12\x17\x20\x10\x16\x1f\x14\x1a\x21\x13\x19\x1f\x11\x17\ \x1c\x12\x18\x1d\x11\x17\x1c\x0f\x16\x1a\x13\x16\x1e\x11\x15\x1d\ \x10\x18\x20\x13\x1b\x22\x18\x22\x29\x1a\x26\x2f\x20\x2e\x38\x27\ \x36\x40\x2e\x40\x49\x32\x45\x50\x3a\x4d\x5e\x41\x54\x64\x48\x5c\ \x69\x49\x61\x6f\x4b\x65\x73\x50\x6a\x78\x52\x6c\x77\x54\x6f\x79\ \x51\x6c\x76\x54\x6f\x79\x55\x6f\x79\x57\x6e\x79\x5a\x70\x7b\x59\ \x6f\x79\x5a\x71\x79\x58\x6f\x77\x5b\x6f\x79\x5b\x6f\x7b\x5c\x70\ \x7c\x5d\x71\x7a\x59\x6e\x77\x52\x68\x73\x51\x67\x73\x50\x67\x73\ \x4e\x66\x72\x4e\x66\x74\x52\x69\x79\x53\x6a\x7b\x54\x6d\x7f\x53\ \x6c\x7e\x53\x6d\x7e\x57\x70\x83\x5b\x70\x85\x5b\x72\x84\x59\x72\ \x82\x5b\x72\x84\x59\x73\x82\x5e\x76\x82\x00\x00\x00\x69\xa7\xde\ \x69\xa7\xde\x69\xa6\xdd\x67\xa5\xdb\x66\xa3\xda\x62\xa2\xd9\x60\ \xa0\xd9\x5f\x9f\xd7\x5f\x9e\xd8\x60\x9f\xd9\x60\xa0\xdb\x60\xa0\ \xdb\x62\xa2\xdc\x63\xa3\xdd\x63\xa2\xde\x5f\x9e\xda\x5d\x9c\xd8\ \x61\x9c\xd5\x61\x9b\xd4\x60\x9b\xd4\x60\x9c\xd5\x61\x9e\xd6\x63\ \xa1\xd9\x62\xa1\xdb\x5f\x9e\xda\x5c\x9b\xd8\x58\x96\xd4\x50\x8d\ \xcd\x4b\x85\xc6\x4b\x82\xc1\x46\x7c\xba\x44\x78\xb3\x43\x75\xad\ \x48\x7a\xaf\x4d\x7f\xb4\x4f\x82\xb8\x4f\x82\xb7\x53\x88\xbc\x59\ \x8d\xc2\x59\x8c\xbf\x53\x84\xb5\x46\x73\xa0\x39\x5e\x8a\x2c\x4b\ \x6c\x1c\x31\x45\x12\x1d\x28\x09\x10\x18\x09\x0b\x14\x0c\x0d\x16\ \x0c\x0e\x18\x0c\x0f\x17\x0e\x13\x1a\x0e\x13\x19\x0e\x14\x19\x12\ \x16\x1b\x14\x1b\x1e\x13\x1b\x1d\x16\x1e\x21\x19\x22\x25\x1a\x24\ \x28\x1e\x27\x2a\x1f\x28\x2b\x23\x2b\x2b\x20\x28\x28\x1f\x26\x28\ \x19\x1f\x22\x19\x1c\x20\x12\x15\x1a\x0d\x10\x15\x0a\x0d\x12\x09\ \x0c\x11\x0d\x11\x16\x0c\x10\x15\x0f\x13\x18\x10\x13\x1b\x12\x17\ \x1c\x12\x18\x1d\x14\x1a\x20\x17\x1d\x25\x18\x20\x28\x1a\x22\x29\ \x18\x20\x27\x15\x1c\x25\x12\x1a\x24\x10\x19\x26\x0e\x1b\x2a\x0d\ \x1c\x2f\x0f\x20\x34\x13\x26\x3c\x16\x2c\x45\x1d\x34\x4d\x21\x3a\ \x54\x28\x3e\x5a\x2c\x42\x5a\x32\x47\x5c\x31\x42\x57\x30\x3e\x4f\ \x2d\x37\x47\x27\x30\x3b\x24\x2f\x33\x20\x27\x2f\x1b\x23\x2b\x15\ \x1f\x25\x15\x1d\x24\x10\x18\x1f\x0f\x15\x1c\x10\x15\x1e\x11\x16\ \x1f\x12\x17\x1f\x11\x17\x1e\x10\x16\x1c\x13\x19\x1e\x13\x19\x1e\ \x11\x17\x1c\x11\x17\x1c\x11\x15\x1d\x12\x16\x1e\x11\x19\x20\x15\ \x1d\x24\x19\x22\x2a\x1e\x2b\x34\x24\x33\x3d\x2a\x3b\x43\x30\x44\ \x4d\x35\x4b\x56\x3c\x50\x60\x45\x58\x68\x47\x5e\x6d\x4b\x63\x72\ \x4e\x67\x75\x52\x6a\x7a\x55\x6d\x79\x57\x6f\x7b\x58\x70\x7b\x58\ \x70\x7c\x58\x70\x7b\x5b\x71\x7d\x5b\x71\x7c\x5c\x72\x7d\x5b\x71\ \x7c\x5a\x70\x7b\x5b\x71\x7d\x5c\x71\x7d\x5e\x74\x80\x5e\x73\x7f\ \x5c\x71\x7c\x58\x6e\x79\x53\x6a\x76\x52\x69\x75\x51\x69\x76\x50\ \x69\x76\x50\x69\x78\x51\x6b\x7b\x52\x6c\x7e\x52\x6d\x80\x53\x6e\ \x81\x58\x71\x85\x59\x71\x85\x57\x70\x81\x57\x70\x81\x55\x6f\x80\ \x55\x6f\x7e\x55\x6e\x7b\x00\x00\x00\x6a\xa7\xdf\x69\xa6\xde\x69\ \xa5\xdd\x68\xa4\xda\x65\xa2\xd9\x64\xa1\xd9\x61\xa0\xd7\x61\x9e\ \xd6\x61\x9e\xd6\x61\xa0\xd8\x62\xa1\xda\x62\xa1\xdb\x64\xa3\xdc\ \x66\xa5\xde\x65\xa4\xde\x61\x9f\xda\x5f\x9d\xd8\x62\x9e\xd6\x61\ \x9c\xd4\x61\x9c\xd4\x63\x9d\xd5\x63\x9f\xd7\x65\xa2\xd9\x65\xa3\ \xdc\x60\x9e\xd9\x5b\x9a\xd7\x59\x97\xd4\x50\x8d\xcb\x49\x85\xc3\ \x4a\x82\xc0\x48\x7e\xbb\x43\x78\xb1\x41\x74\xac\x45\x77\xac\x4a\ \x7c\xb1\x4e\x81\xb6\x4f\x83\xb9\x54\x89\xbe\x5b\x92\xc5\x5b\x8f\ \xc2\x55\x87\xb9\x4a\x78\xa4\x3d\x62\x8d\x2d\x4e\x6f\x1f\x35\x4a\ \x11\x1f\x29\x0a\x12\x1a\x09\x0c\x15\x0c\x0c\x16\x0c\x0e\x18\x0c\ \x11\x19\x0c\x13\x19\x0d\x16\x1a\x0e\x15\x1a\x11\x17\x1c\x13\x19\ \x1d\x16\x1d\x20\x15\x1e\x21\x18\x21\x24\x1c\x25\x29\x1e\x26\x2b\ \x21\x29\x2c\x22\x2a\x2c\x21\x2a\x2a\x1e\x25\x27\x19\x1f\x22\x15\ \x19\x1d\x11\x14\x19\x0c\x0f\x14\x09\x0c\x11\x0a\x0d\x12\x0a\x0e\ \x13\x0c\x10\x15\x0d\x11\x16\x10\x13\x1b\x13\x16\x1c\x14\x18\x1d\ \x17\x1d\x23\x18\x1f\x26\x1a\x20\x29\x19\x22\x28\x17\x20\x25\x15\ \x1c\x24\x12\x1a\x24\x11\x1b\x28\x10\x1c\x2c\x0f\x1d\x31\x0f\x1f\ \x38\x13\x27\x41\x19\x30\x49\x1d\x36\x50\x22\x3b\x56\x26\x3e\x5a\ \x2e\x44\x5d\x2e\x45\x5c\x30\x45\x58\x2f\x3f\x50\x2a\x37\x47\x26\ \x30\x3a\x20\x2b\x30\x1d\x23\x2d\x19\x20\x2b\x16\x1d\x25\x12\x19\ \x20\x11\x17\x1f\x0f\x14\x1c\x0f\x14\x1c\x11\x16\x1d\x0f\x15\x1c\ \x0f\x15\x1c\x0f\x15\x1c\x10\x16\x1b\x12\x18\x1d\x12\x18\x1d\x10\ \x16\x1d\x10\x16\x1d\x10\x16\x1d\x13\x1b\x22\x16\x1f\x26\x1c\x26\ \x2f\x20\x2f\x39\x24\x34\x3f\x2a\x3d\x45\x2e\x45\x50\x36\x4c\x5a\ \x3d\x53\x63\x43\x59\x69\x46\x5f\x6e\x4a\x64\x73\x4f\x67\x77\x54\ \x67\x79\x54\x6c\x79\x54\x6d\x79\x55\x6e\x7b\x56\x6f\x7c\x56\x6f\ \x7c\x59\x70\x7f\x57\x6e\x7c\x5a\x72\x7f\x58\x70\x7d\x5a\x72\x7f\ \x5a\x73\x80\x58\x6f\x7f\x5a\x71\x81\x59\x72\x7f\x58\x71\x7e\x55\ \x6e\x7a\x52\x6b\x77\x4e\x69\x75\x4f\x69\x78\x4f\x6b\x78\x4e\x69\ \x78\x4d\x69\x79\x4d\x6a\x7c\x4e\x6c\x80\x4f\x6e\x81\x51\x6c\x80\ \x52\x6c\x80\x50\x6b\x7f\x4c\x68\x7d\x4b\x66\x78\x49\x64\x73\x46\ \x62\x70\x00\x00\x00\x69\xa7\xde\x6b\xa6\xde\x6a\xa5\xdc\x67\xa3\ \xd9\x66\xa2\xd8\x66\xa2\xd8\x64\xa0\xd6\x64\xa0\xd6\x65\xa1\xd7\ \x64\xa0\xd8\x63\xa0\xd8\x64\xa1\xd9\x64\xa3\xdb\x65\xa5\xdc\x66\ \xa5\xdd\x64\xa3\xdd\x60\x9e\xd8\x61\x9f\xd7\x62\x9e\xd6\x61\x9c\ \xd4\x62\x9d\xd5\x63\x9f\xd6\x64\xa1\xd8\x65\xa2\xdb\x61\x9f\xda\ \x5c\x9a\xd6\x58\x97\xd3\x50\x8e\xcb\x4a\x86\xc4\x4b\x81\xc0\x47\ \x7e\xbc\x43\x77\xb2\x43\x76\xae\x45\x77\xac\x49\x7b\xb0\x4e\x81\ \xb6\x50\x84\xba\x53\x8a\xbe\x5b\x92\xc5\x5d\x90\xc4\x58\x8a\xbd\ \x4b\x7a\xa8\x41\x67\x93\x2f\x51\x75\x23\x3b\x53\x13\x20\x2e\x09\ \x10\x1a\x0b\x0d\x17\x0b\x0e\x18\x0b\x0e\x18\x0d\x12\x1a\x0c\x14\ \x1b\x0c\x15\x1a\x0e\x16\x1a\x12\x18\x1d\x14\x1a\x1f\x15\x1c\x20\ \x18\x20\x23\x18\x21\x24\x1c\x25\x29\x1f\x25\x2b\x21\x28\x2c\x22\ \x2a\x2d\x1f\x29\x29\x1b\x23\x25\x19\x20\x23\x17\x1a\x1f\x11\x14\ \x19\x0c\x0f\x14\x0a\x0d\x12\x0a\x0d\x12\x0a\x0e\x13\x0d\x11\x16\ \x0e\x12\x17\x0e\x14\x1c\x11\x17\x1e\x13\x19\x1e\x15\x1c\x22\x17\ \x1f\x28\x18\x21\x2b\x17\x20\x29\x17\x21\x28\x13\x1c\x24\x13\x1c\ \x26\x13\x1c\x29\x10\x1c\x2d\x0f\x1d\x32\x0f\x20\x39\x13\x27\x42\ \x19\x30\x4c\x1d\x37\x52\x23\x3e\x59\x27\x41\x5c\x2d\x44\x5e\x2e\ \x45\x5c\x2d\x43\x57\x2e\x3f\x50\x27\x35\x45\x24\x2f\x39\x1e\x27\ \x2e\x19\x20\x2a\x16\x1c\x29\x13\x19\x23\x10\x15\x1e\x0c\x11\x1a\ \x0c\x11\x1a\x0f\x12\x1a\x10\x16\x1d\x0f\x15\x1c\x0f\x15\x1c\x0e\ \x14\x1b\x0f\x15\x1d\x13\x16\x1e\x10\x15\x1c\x10\x16\x1d\x0f\x16\ \x1c\x10\x15\x1d\x15\x1d\x24\x17\x20\x28\x1c\x28\x30\x20\x30\x3b\ \x26\x38\x45\x2a\x3e\x4a\x2f\x46\x54\x35\x4e\x5f\x3d\x55\x67\x42\ \x5b\x6c\x45\x5f\x70\x48\x63\x73\x4a\x64\x74\x4d\x65\x75\x4e\x67\ \x77\x4e\x67\x77\x4f\x68\x78\x51\x6a\x7a\x50\x6a\x7a\x52\x6c\x7c\ \x53\x6d\x7d\x54\x6e\x7e\x54\x6e\x7d\x56\x71\x80\x55\x6f\x7f\x56\ \x71\x81\x57\x71\x81\x56\x70\x80\x55\x6f\x80\x51\x6e\x7c\x4d\x6a\ \x79\x4a\x68\x77\x47\x65\x77\x49\x67\x79\x47\x65\x77\x45\x65\x78\ \x45\x65\x79\x46\x67\x7b\x46\x66\x7a\x46\x64\x79\x45\x62\x77\x41\ \x5d\x74\x41\x5e\x75\x3e\x5b\x70\x3d\x5b\x6e\x3f\x5b\x6e\x00\x00\ \x00\x69\xa7\xdd\x6a\xa6\xdc\x68\xa4\xda\x68\xa4\xda\x66\xa2\xd9\ \x65\xa2\xd8\x64\xa0\xd6\x65\xa0\xd7\x65\xa1\xd7\x66\xa2\xd8\x66\ \xa1\xd9\x67\xa2\xda\x67\xa3\xdb\x68\xa5\xdd\x68\xa5\xdd\x66\xa2\ \xdc\x62\x9e\xd9\x61\x9e\xd8\x62\x9e\xd9\x61\x9c\xd7\x63\x9d\xd7\ \x64\x9f\xd7\x65\xa2\xd8\x64\xa1\xd9\x61\x9f\xd9\x5d\x9b\xd6\x58\ \x96\xd1\x50\x8f\xca\x4b\x86\xc3\x49\x81\xbf\x48\x7e\xbb\x43\x77\ \xb3\x42\x74\xae\x43\x74\xac\x47\x78\xb0\x4c\x7e\xb7\x50\x83\xbc\ \x53\x89\xbe\x5a\x91\xc4\x5e\x93\xc5\x58\x8b\xbd\x4f\x7e\xae\x41\ \x68\x96\x2f\x52\x77\x23\x3c\x56\x13\x20\x31\x0a\x11\x1e\x09\x0d\ \x18\x0c\x0f\x17\x0d\x12\x18\x0c\x12\x19\x0d\x14\x1b\x0d\x16\x1a\ \x0e\x16\x1a\x12\x18\x1d\x13\x1a\x21\x13\x1c\x1f\x16\x1f\x20\x1a\ \x21\x24\x1d\x24\x28\x1f\x25\x2c\x20\x26\x2b\x21\x29\x2c\x1e\x28\ \x28\x1c\x25\x26\x1a\x20\x23\x16\x19\x1e\x10\x13\x18\x0c\x0f\x14\ \x0a\x0d\x12\x0a\x0d\x12\x0a\x0e\x13\x0f\x13\x17\x0f\x13\x18\x0f\ \x16\x1e\x12\x19\x20\x14\x1c\x23\x14\x1d\x25\x16\x1f\x28\x18\x20\ \x2d\x17\x20\x2b\x17\x20\x2a\x14\x1d\x26\x12\x1b\x25\x11\x1b\x2b\ \x10\x1c\x2f\x0f\x1e\x35\x13\x23\x3d\x14\x27\x45\x1a\x2e\x4e\x20\ \x37\x56\x24\x3c\x58\x2a\x41\x5e\x2d\x44\x5e\x2d\x44\x5d\x2b\x42\ \x56\x2b\x3d\x4d\x25\x33\x42\x1e\x29\x34\x18\x20\x29\x16\x1c\x28\ \x13\x16\x25\x0f\x14\x1f\x0e\x12\x1c\x0b\x11\x1a\x0f\x13\x1c\x10\ \x13\x1b\x0f\x14\x1c\x0e\x15\x1c\x0e\x14\x1b\x0e\x14\x1b\x0f\x15\ \x1c\x12\x16\x1d\x11\x14\x1c\x0f\x15\x1c\x0f\x15\x1d\x12\x17\x20\ \x13\x1c\x23\x17\x22\x29\x1d\x29\x34\x20\x32\x3e\x26\x3a\x47\x2d\ \x42\x4f\x31\x48\x59\x36\x4f\x63\x3e\x58\x6c\x42\x5c\x6f\x43\x5e\ \x71\x44\x61\x73\x46\x64\x74\x48\x64\x74\x49\x66\x75\x4a\x66\x75\ \x4b\x67\x77\x4b\x67\x77\x4e\x6b\x7b\x4e\x6a\x7b\x4e\x6a\x7b\x50\ \x6c\x7d\x50\x6d\x7c\x51\x6e\x7d\x4f\x6d\x7e\x51\x6e\x80\x51\x6e\ \x80\x4f\x6d\x7d\x4e\x6d\x7f\x4c\x6c\x7f\x49\x6a\x7a\x45\x66\x77\ \x43\x64\x77\x42\x61\x78\x42\x61\x78\x41\x61\x76\x3e\x5f\x73\x3c\ \x5f\x73\x3e\x5e\x75\x3d\x5c\x72\x3b\x59\x6f\x39\x57\x6f\x38\x56\ \x70\x37\x55\x6e\x36\x55\x6b\x39\x55\x6b\x00\x00\x00\x6a\xa6\xda\ \x69\xa8\xda\x68\xa5\xd9\x67\xa3\xd7\x67\xa2\xd6\x68\xa2\xd5\x67\ \xa1\xd4\x66\x9f\xd5\x69\xa1\xd8\x69\xa2\xd9\x69\xa3\xda\x68\xa5\ \xda\x68\xa4\xdc\x69\xa6\xde\x69\xa5\xdd\x68\xa5\xdc\x65\xa2\xd9\ \x65\xa0\xd8\x66\xa0\xd7\x61\x9c\xd4\x61\x9e\xd5\x62\x9f\xd8\x61\ \x9e\xd7\x64\xa1\xd9\x63\xa0\xd8\x5d\x9b\xd5\x59\x96\xd2\x54\x8e\ \xcc\x4d\x85\xc3\x4a\x81\xbf\x49\x7f\xbc\x43\x77\xb3\x40\x74\xac\ \x43\x75\xaa\x45\x77\xac\x4b\x7d\xb2\x52\x83\xb9\x55\x89\xbe\x5a\ \x91\xc5\x5d\x94\xc6\x56\x8e\xbe\x4d\x7f\xaf\x41\x6b\x9a\x30\x55\ \x7c\x20\x3b\x56\x13\x22\x34\x08\x10\x1c\x09\x0e\x18\x0b\x0e\x17\ \x0d\x13\x1a\x0b\x13\x1a\x0c\x14\x1b\x0d\x15\x1c\x0e\x16\x1d\x10\ \x18\x1f\x12\x1b\x1f\x15\x1e\x22\x15\x1e\x21\x1a\x23\x23\x1d\x24\ \x25\x1d\x26\x2a\x1e\x27\x2b\x21\x29\x2c\x20\x27\x28\x1c\x24\x23\ \x17\x1e\x1f\x14\x16\x1c\x10\x12\x19\x0c\x10\x13\x0c\x0c\x11\x0b\ \x0c\x13\x0c\x0f\x17\x0c\x12\x19\x10\x16\x1b\x11\x19\x1f\x14\x1d\ \x24\x16\x20\x28\x18\x21\x2a\x19\x22\x2b\x1a\x23\x2d\x1a\x23\x2d\ \x18\x21\x2a\x15\x1e\x27\x14\x1d\x28\x12\x1d\x2b\x10\x1e\x30\x11\ \x20\x36\x10\x21\x3c\x14\x27\x45\x19\x2f\x4f\x1e\x36\x55\x22\x3d\ \x59\x2a\x44\x5d\x29\x43\x5c\x29\x40\x5b\x29\x3e\x59\x28\x38\x4d\ \x21\x2e\x3f\x1a\x26\x31\x13\x1c\x26\x10\x15\x1f\x0f\x13\x1e\x0c\ \x0f\x1c\x0b\x0f\x1a\x0c\x0d\x18\x0c\x0e\x18\x0c\x11\x18\x0c\x12\ \x17\x0e\x14\x1a\x0e\x13\x1b\x0d\x13\x1b\x0c\x15\x1c\x0d\x14\x19\ \x0d\x14\x19\x0f\x15\x1c\x0c\x14\x1b\x0d\x17\x1e\x12\x1d\x24\x17\ \x24\x2c\x1b\x2a\x36\x22\x34\x41\x28\x3c\x4b\x2d\x44\x54\x30\x49\ \x5b\x37\x50\x64\x3f\x58\x6e\x43\x5d\x72\x42\x60\x75\x42\x61\x78\ \x41\x60\x75\x43\x62\x75\x45\x63\x75\x45\x63\x75\x48\x66\x79\x48\ \x66\x79\x4a\x68\x7b\x4a\x69\x7d\x49\x6a\x7d\x49\x6a\x7c\x48\x69\ \x7a\x49\x69\x7b\x4a\x6b\x80\x4a\x6a\x81\x4b\x6b\x82\x48\x6a\x80\ \x48\x6a\x81\x4a\x6b\x83\x44\x65\x7c\x42\x63\x79\x41\x62\x79\x3d\ \x60\x77\x3a\x5e\x74\x3a\x5c\x74\x39\x5b\x72\x3a\x5a\x72\x36\x59\ \x71\x38\x59\x71\x39\x58\x71\x37\x56\x6f\x35\x55\x6e\x36\x53\x6e\ \x38\x55\x6f\x36\x55\x6c\x00\x00\x00\x6b\xa7\xdd\x69\xa6\xdc\x67\ \xa4\xdb\x67\xa3\xda\x68\xa2\xd9\x68\xa1\xd8\x67\xa0\xd7\x67\xa0\ \xd7\x69\xa1\xd8\x6a\xa2\xd9\x69\xa2\xd9\x6b\xa3\xda\x69\xa4\xdc\ \x6b\xa6\xdd\x6b\xa6\xdd\x6b\xa6\xde\x68\xa3\xdb\x66\xa1\xd9\x66\ \x9f\xd7\x64\x9d\xd5\x61\x9c\xd4\x61\x9d\xd6\x63\x9f\xd7\x62\x9f\ \xd7\x63\xa0\xd8\x5d\x9b\xd5\x59\x95\xd2\x55\x8f\xcd\x4f\x88\xc5\ \x4b\x82\xbf\x49\x7f\xbc\x44\x79\xb5\x41\x74\xae\x42\x73\xaa\x45\ \x77\xac\x4b\x7d\xb2\x51\x83\xb8\x53\x87\xbc\x59\x90\xc3\x5d\x94\ \xc7\x56\x8c\xbe\x4d\x80\xb1\x41\x6c\x9b\x30\x56\x7d\x20\x3b\x57\ \x14\x23\x35\x09\x13\x1f\x09\x11\x19\x0d\x13\x1a\x0b\x13\x1a\x0b\ \x14\x1c\x0b\x16\x1d\x0d\x17\x1e\x10\x1a\x21\x11\x1b\x22\x13\x1c\ \x24\x17\x1f\x27\x17\x20\x24\x1a\x23\x26\x1d\x26\x29\x1d\x28\x2c\ \x1e\x28\x2c\x21\x2a\x2d\x1f\x29\x2a\x1a\x23\x23\x17\x1d\x20\x14\ \x17\x1e\x11\x13\x1b\x0c\x0f\x13\x0b\x0d\x12\x0b\x0e\x16\x0c\x12\ \x19\x0e\x14\x1b\x10\x16\x1c\x11\x19\x20\x15\x1c\x25\x17\x20\x29\ \x1a\x23\x2d\x1b\x23\x2e\x1c\x25\x2f\x1b\x24\x2e\x1a\x23\x2d\x14\ \x1d\x27\x13\x1d\x26\x11\x1d\x2a\x11\x1e\x2f\x12\x21\x38\x12\x24\ \x3e\x14\x28\x45\x1c\x32\x51\x21\x3a\x58\x25\x3f\x5c\x2c\x45\x60\ \x29\x41\x5c\x28\x3f\x59\x26\x3a\x54\x25\x35\x4b\x1e\x2c\x3e\x17\ \x23\x31\x0e\x17\x24\x0e\x14\x1f\x0c\x10\x1b\x0b\x0f\x1a\x09\x0d\ \x18\x0b\x0c\x17\x0d\x0f\x18\x0c\x11\x18\x0b\x11\x16\x0b\x11\x17\ \x0e\x13\x1b\x0e\x13\x1b\x0e\x14\x1c\x0e\x14\x1a\x0d\x13\x19\x0e\ \x14\x1b\x0d\x16\x1d\x10\x1a\x21\x13\x1d\x26\x19\x26\x2f\x1e\x2e\ \x3a\x23\x35\x43\x29\x3f\x4e\x2e\x45\x57\x34\x4e\x62\x38\x55\x6a\ \x3e\x5b\x6e\x42\x5e\x72\x42\x60\x76\x41\x60\x77\x41\x61\x77\x42\ \x61\x75\x43\x63\x77\x44\x64\x79\x44\x63\x79\x46\x65\x7b\x47\x66\ \x7d\x47\x68\x7c\x47\x68\x7c\x48\x69\x7d\x47\x67\x7e\x49\x69\x80\ \x48\x68\x7f\x46\x68\x80\x46\x68\x80\x46\x68\x80\x45\x66\x7f\x43\ \x64\x7e\x42\x63\x7c\x40\x62\x7a\x3e\x60\x78\x3d\x5f\x77\x3b\x5d\ \x75\x3a\x5c\x74\x3a\x5c\x74\x3a\x5c\x74\x3a\x5c\x74\x3b\x59\x72\ \x3d\x5b\x74\x3b\x59\x72\x39\x58\x71\x3c\x5a\x73\x3a\x59\x70\x3a\ \x59\x6f\x00\x00\x00\x6b\xa7\xdd\x69\xa5\xdb\x67\xa3\xd9\x67\xa3\ \xd9\x66\xa1\xd7\x67\xa0\xd7\x67\xa0\xd7\x67\xa0\xd7\x69\xa0\xd7\ \x69\xa2\xd9\x6a\xa3\xda\x6b\xa3\xda\x6b\xa4\xdb\x6c\xa5\xdc\x6d\ \xa6\xdd\x6c\xa5\xdc\x6b\xa4\xdb\x66\xa1\xd9\x66\xa0\xd8\x64\x9d\ \xd5\x61\x9c\xd4\x61\x9c\xd4\x63\x9d\xd6\x63\x9f\xd7\x61\x9e\xd6\ \x5d\x9b\xd5\x59\x94\xd2\x56\x90\xce\x50\x89\xc6\x4c\x83\xc0\x4c\ \x82\xbf\x45\x79\xb7\x41\x72\xad\x41\x71\xa8\x43\x73\xa8\x48\x7a\ \xae\x4d\x7f\xb4\x52\x86\xbb\x56\x8d\xc0\x5c\x93\xc6\x55\x8c\xbf\ \x49\x7c\xaf\x3c\x67\x96\x2d\x53\x79\x21\x3b\x58\x14\x25\x37\x0a\ \x15\x20\x0a\x13\x1b\x0b\x14\x1b\x0d\x17\x20\x0c\x18\x21\x0d\x1a\ \x22\x0e\x1b\x23\x11\x1c\x25\x12\x1d\x26\x16\x20\x29\x18\x21\x2b\ \x1a\x25\x2d\x1e\x28\x2e\x1f\x29\x30\x22\x2d\x35\x22\x2c\x34\x20\ \x2b\x30\x1f\x28\x2c\x1c\x24\x27\x18\x1c\x23\x14\x17\x1f\x10\x12\ \x1a\x0d\x10\x15\x0a\x0d\x13\x0b\x0f\x16\x0c\x13\x1a\x0c\x14\x1d\ \x10\x18\x20\x12\x1b\x24\x14\x1d\x26\x18\x21\x2c\x1a\x23\x30\x1a\ \x22\x2f\x1c\x25\x32\x1c\x25\x31\x1b\x24\x2e\x16\x1f\x29\x14\x1d\ \x28\x10\x1d\x29\x10\x1d\x2e\x12\x21\x35\x11\x24\x3b\x14\x29\x44\ \x1c\x33\x50\x20\x39\x57\x24\x3e\x5b\x2d\x45\x61\x2d\x45\x61\x29\ \x41\x5b\x26\x3b\x53\x21\x33\x49\x1b\x29\x3e\x14\x20\x30\x0e\x16\ \x24\x0b\x13\x1e\x0a\x10\x1b\x08\x0d\x18\x09\x0c\x17\x0a\x0c\x17\ \x0b\x0d\x17\x0a\x0f\x16\x0b\x10\x15\x0e\x12\x18\x0d\x13\x1b\x0d\ \x13\x1b\x0d\x13\x1a\x0d\x13\x19\x0d\x13\x19\x0d\x13\x1a\x0e\x15\ \x1d\x11\x1a\x23\x18\x22\x2c\x1c\x28\x34\x20\x30\x3d\x27\x3b\x49\ \x29\x40\x51\x2f\x48\x5c\x35\x52\x66\x38\x57\x6c\x3d\x5d\x70\x40\ \x5f\x74\x3f\x5f\x76\x41\x60\x79\x42\x62\x79\x3f\x5f\x73\x41\x61\ \x77\x41\x61\x78\x43\x63\x7a\x44\x64\x7c\x45\x64\x7c\x42\x64\x7a\ \x42\x64\x7b\x43\x65\x7d\x43\x65\x7e\x41\x63\x7b\x41\x63\x7b\x41\ \x63\x7b\x40\x63\x7c\x3f\x62\x7c\x40\x61\x7d\x3f\x60\x7b\x40\x61\ \x7b\x3f\x62\x7a\x3f\x62\x79\x3f\x5f\x77\x40\x5f\x78\x3e\x5f\x77\ \x3c\x5e\x76\x3e\x60\x78\x3e\x5e\x77\x3e\x5d\x76\x40\x5d\x76\x40\ \x5e\x77\x40\x5e\x77\x3e\x5e\x75\x3c\x5c\x73\x3c\x5c\x72\x00\x00\ \x00\x6c\xa7\xde\x6b\xa6\xdc\x69\xa5\xdb\x67\xa3\xd9\x66\xa0\xd7\ \x66\x9f\xd6\x65\x9e\xd5\x66\x9f\xd6\x66\xa0\xd7\x68\xa2\xd8\x67\ \xa3\xd9\x67\xa3\xd9\x68\xa5\xda\x6a\xa6\xdc\x6a\xa6\xdc\x69\xa5\ \xdb\x68\xa4\xda\x64\x9f\xd7\x65\x9e\xd6\x64\x9d\xd5\x62\x9b\xd3\ \x61\x9b\xd4\x63\x9b\xd4\x62\x9d\xd5\x61\x9d\xd5\x5d\x9b\xd5\x59\ \x96\xd2\x57\x92\xce\x51\x8a\xc7\x4e\x85\xc2\x4b\x81\xbe\x46\x79\ \xb6\x40\x71\xac\x40\x6f\xa6\x43\x73\xa7\x46\x76\xaa\x4c\x7e\xb2\ \x4e\x83\xb6\x51\x88\xbb\x57\x8e\xc1\x52\x89\xbc\x47\x7a\xad\x3a\ \x66\x94\x29\x51\x75\x1b\x37\x54\x15\x26\x3c\x0d\x19\x26\x0b\x17\ \x1f\x0e\x1a\x22\x10\x1d\x2a\x0f\x1b\x28\x12\x1e\x2b\x12\x1e\x2b\ \x14\x20\x2d\x15\x22\x2e\x16\x23\x30\x1b\x28\x34\x1d\x2a\x34\x1f\ \x2d\x35\x22\x2f\x39\x24\x30\x3c\x23\x30\x38\x23\x2f\x33\x20\x2b\ \x2f\x1d\x25\x2a\x18\x1d\x24\x13\x16\x1d\x10\x13\x19\x0c\x0f\x14\ \x09\x0c\x14\x0b\x10\x18\x0c\x15\x1c\x0e\x18\x20\x11\x1a\x24\x15\ \x1f\x29\x16\x21\x2c\x1a\x23\x31\x1a\x27\x34\x1d\x29\x37\x1f\x2a\ \x37\x1f\x28\x35\x1c\x24\x31\x17\x1f\x2c\x15\x1d\x29\x12\x1d\x2a\ \x0f\x1d\x2d\x0f\x1f\x33\x11\x24\x3a\x16\x2b\x44\x1a\x31\x4c\x20\ \x38\x56\x24\x3d\x5b\x2b\x43\x61\x2b\x43\x60\x2b\x42\x5c\x24\x3b\ \x52\x21\x33\x4a\x1b\x2a\x41\x13\x1f\x32\x0b\x15\x25\x0b\x13\x20\ \x08\x10\x1b\x09\x0f\x1a\x09\x0c\x17\x0a\x0c\x17\x0a\x0c\x16\x09\ \x0f\x15\x0a\x0f\x14\x0c\x10\x16\x0e\x11\x19\x0d\x12\x1a\x0d\x13\ \x1a\x0c\x12\x16\x0b\x12\x16\x0e\x14\x1a\x0f\x17\x20\x12\x1b\x24\ \x19\x24\x2e\x1f\x2b\x37\x23\x33\x42\x28\x3b\x4b\x2e\x44\x55\x31\ \x4b\x5f\x36\x51\x67\x3b\x5a\x71\x3d\x5c\x72\x41\x5f\x76\x42\x60\ \x79\x3e\x60\x79\x3f\x61\x78\x41\x62\x78\x41\x61\x78\x43\x63\x7a\ \x42\x62\x79\x43\x63\x7b\x44\x63\x7c\x43\x62\x7b\x42\x61\x7a\x42\ \x61\x7a\x3f\x5e\x77\x3e\x5d\x76\x3f\x5e\x77\x3d\x5e\x76\x3c\x5e\ \x76\x3b\x5c\x75\x3e\x5e\x79\x3d\x5d\x77\x3e\x5f\x78\x3e\x60\x76\ \x3e\x60\x75\x41\x60\x78\x44\x63\x7b\x43\x62\x7a\x42\x63\x7b\x40\ \x62\x7a\x41\x64\x7c\x44\x65\x7d\x44\x63\x7c\x44\x63\x7c\x42\x62\ \x7b\x42\x63\x79\x41\x61\x78\x41\x60\x78\x00\x00\x00\x6c\xa6\xdd\ \x6a\xa5\xdb\x69\xa5\xdb\x67\xa3\xd9\x66\xa0\xd7\x66\xa0\xd7\x65\ \x9e\xd5\x64\x9e\xd5\x63\x9f\xd5\x64\xa1\xd7\x63\xa1\xd7\x64\xa2\ \xd8\x65\xa3\xd9\x65\xa3\xda\x66\xa4\xda\x67\xa4\xdb\x64\xa2\xd8\ \x63\x9f\xd6\x65\x9e\xd6\x64\x9c\xd5\x61\x99\xd1\x60\x99\xd2\x60\ \x99\xd2\x60\x9a\xd2\x60\x9d\xd5\x5e\x9c\xd6\x5a\x96\xd2\x57\x92\ \xce\x54\x8c\xc9\x4e\x86\xc2\x4d\x83\xbf\x47\x7b\xb8\x40\x71\xac\ \x3e\x6d\xa5\x41\x71\xa6\x43\x73\xa7\x47\x79\xad\x49\x7e\xb1\x4e\ \x85\xb8\x54\x8a\xbe\x4c\x82\xb7\x41\x73\xa7\x36\x62\x90\x26\x4d\ \x72\x1b\x37\x54\x14\x25\x3b\x0c\x1b\x29\x0c\x19\x23\x0f\x1b\x25\ \x0e\x1c\x2b\x0f\x1d\x2c\x13\x20\x2e\x12\x1f\x2d\x15\x22\x30\x19\ \x26\x34\x18\x28\x35\x1b\x2b\x38\x1d\x2d\x39\x1f\x30\x3a\x23\x32\ \x3d\x24\x33\x3f\x23\x31\x39\x25\x32\x38\x22\x2d\x32\x1c\x25\x2c\ \x18\x1e\x24\x12\x16\x1b\x10\x13\x18\x0c\x0f\x13\x09\x0d\x14\x0d\ \x13\x1a\x0d\x17\x1e\x11\x1c\x24\x12\x1d\x29\x16\x22\x2f\x17\x25\ \x32\x1b\x29\x36\x1c\x29\x38\x1f\x2c\x3b\x1e\x2a\x38\x21\x2b\x39\ \x1c\x25\x32\x17\x1f\x2c\x15\x1d\x2a\x12\x1d\x2b\x10\x1e\x2e\x10\ \x1e\x32\x10\x22\x38\x15\x2a\x43\x19\x30\x4b\x1f\x38\x54\x22\x3b\ \x5a\x2a\x43\x60\x2c\x44\x61\x2a\x42\x5c\x25\x3c\x54\x20\x34\x4c\ \x1c\x2b\x43\x11\x1e\x32\x0e\x18\x28\x0e\x17\x23\x09\x12\x1c\x08\ \x11\x1b\x0b\x0f\x1a\x0b\x0e\x18\x0a\x0d\x17\x0a\x0f\x16\x0a\x0e\ \x14\x0b\x0f\x15\x0e\x11\x19\x0d\x12\x1a\x0c\x11\x19\x0b\x12\x15\ \x0b\x10\x15\x0d\x13\x19\x11\x18\x21\x15\x1e\x27\x1b\x26\x31\x1f\ \x2d\x39\x26\x36\x46\x29\x3c\x4d\x2f\x46\x57\x35\x4e\x61\x39\x55\ \x6b\x3f\x5b\x74\x43\x5e\x78\x43\x60\x79\x41\x60\x79\x41\x62\x7b\ \x40\x62\x7a\x42\x63\x7a\x45\x65\x7c\x44\x64\x7b\x45\x66\x7d\x45\ \x65\x7c\x44\x64\x7b\x43\x61\x7c\x40\x5f\x78\x3f\x5f\x77\x3d\x5d\ \x74\x3b\x5a\x72\x3a\x59\x71\x39\x59\x70\x3a\x59\x71\x3a\x59\x72\ \x3b\x58\x73\x3c\x59\x73\x3c\x5a\x73\x3d\x5c\x72\x3f\x5e\x73\x41\ \x60\x75\x45\x65\x7a\x44\x65\x79\x46\x67\x7b\x44\x67\x7c\x42\x66\ \x7e\x45\x67\x7f\x48\x68\x81\x49\x6a\x82\x47\x68\x81\x48\x66\x80\ \x48\x67\x81\x48\x67\x81\x00\x00\x00\x69\xa6\xdd\x6a\xa5\xdb\x68\ \xa3\xda\x66\xa1\xd9\x64\x9f\xd7\x63\x9e\xd6\x61\x9d\xd5\x63\x9e\ \xd6\x63\x9e\xd6\x63\x9e\xd6\x62\x9f\xd7\x63\x9f\xd7\x62\xa1\xda\ \x63\xa2\xd9\x68\xa3\xdb\x69\xa3\xdb\x65\xa1\xd8\x64\x9f\xd7\x61\ \x9c\xd4\x63\x9c\xd4\x62\x9b\xd3\x5f\x98\xd0\x61\x9a\xd2\x60\x9a\ \xd1\x60\x9b\xd4\x5f\x9b\xd7\x5d\x98\xd4\x5a\x93\xd0\x56\x8d\xca\ \x51\x88\xc5\x4d\x83\xc0\x48\x7c\xb8\x40\x71\xab\x3d\x6c\xa3\x3e\ \x6d\xa3\x41\x71\xa5\x45\x76\xa9\x45\x78\xab\x48\x7e\xb1\x4c\x82\ \xb4\x48\x79\xad\x40\x6d\xa0\x31\x59\x88\x27\x47\x6d\x1b\x33\x4e\ \x12\x23\x37\x0c\x1b\x2a\x0c\x1a\x26\x0f\x1b\x26\x11\x1e\x2c\x12\ \x1f\x2d\x13\x20\x30\x15\x23\x33\x15\x24\x34\x1a\x29\x37\x18\x29\ \x36\x1c\x2d\x3a\x1e\x2f\x3b\x21\x33\x3e\x22\x33\x3e\x26\x34\x40\ \x25\x33\x3c\x27\x31\x3a\x25\x2e\x37\x1d\x25\x2e\x1b\x21\x28\x13\ \x17\x1c\x10\x13\x18\x0e\x10\x17\x0c\x0f\x17\x0c\x12\x1a\x0c\x16\ \x1f\x12\x1e\x28\x11\x1f\x2c\x19\x26\x35\x1a\x28\x39\x1b\x2b\x3c\ \x1f\x2e\x41\x20\x2f\x41\x22\x32\x3f\x20\x2c\x3a\x1f\x29\x37\x1a\ \x22\x2f\x15\x1f\x2a\x12\x1e\x2a\x13\x1e\x2f\x12\x1f\x34\x13\x23\ \x39\x16\x29\x44\x1a\x31\x4c\x1d\x37\x51\x23\x3e\x58\x2b\x44\x60\ \x2e\x47\x61\x2b\x44\x5e\x27\x3e\x57\x22\x36\x4e\x1d\x2e\x44\x15\ \x24\x35\x0e\x1a\x2b\x0c\x15\x23\x09\x13\x1e\x0a\x12\x1d\x0a\x0f\ \x1b\x0a\x0e\x18\x09\x0e\x17\x0a\x0c\x16\x0a\x0d\x16\x0d\x0f\x18\ \x0d\x10\x18\x0e\x11\x19\x0e\x10\x19\x0d\x12\x17\x0d\x11\x16\x10\ \x15\x1a\x12\x1b\x22\x18\x21\x2b\x1c\x28\x32\x22\x31\x3d\x26\x38\ \x46\x2d\x43\x52\x31\x49\x5a\x36\x53\x65\x3a\x57\x6c\x40\x5f\x75\ \x41\x60\x75\x43\x61\x77\x42\x61\x7a\x43\x61\x7a\x42\x61\x7a\x44\ \x63\x7c\x46\x65\x7e\x45\x64\x7d\x43\x63\x7c\x42\x61\x7a\x40\x60\ \x79\x3d\x5e\x78\x3d\x5c\x76\x3a\x59\x72\x37\x56\x6f\x36\x55\x6e\ \x32\x50\x69\x32\x50\x69\x32\x50\x69\x32\x50\x69\x36\x50\x6a\x38\ \x52\x6d\x37\x52\x6b\x38\x55\x6b\x3c\x5a\x6e\x3e\x5d\x73\x41\x60\ \x77\x45\x65\x7c\x49\x69\x80\x47\x6a\x82\x49\x6c\x85\x48\x6b\x85\ \x48\x6c\x86\x4b\x6e\x88\x4a\x6c\x88\x4b\x6c\x86\x4b\x6c\x86\x4b\ \x6c\x87\x00\x00\x00\x67\xa4\xdc\x67\xa5\xdb\x66\xa3\xd9\x65\xa1\ \xd9\x62\x9e\xd6\x61\x9d\xd5\x60\x9b\xd5\x5f\x9a\xd3\x60\x9b\xd4\ \x5e\x9a\xd4\x60\x9d\xd6\x60\x9c\xd6\x60\x9f\xd8\x63\xa0\xd8\x65\ \xa0\xd8\x65\xa0\xd8\x64\xa0\xd7\x63\x9d\xd5\x61\x9a\xd2\x61\x9a\ \xd2\x60\x99\xd1\x5e\x97\xcf\x5d\x96\xce\x5c\x96\xce\x5d\x99\xd1\ \x5f\x9b\xd6\x5f\x99\xd6\x5b\x94\xd1\x57\x8f\xcd\x53\x8a\xc7\x4e\ \x85\xc2\x48\x7c\xb8\x3e\x70\xab\x3b\x6a\xa2\x3c\x6b\xa1\x3f\x6e\ \xa2\x40\x70\xa4\x43\x73\xa7\x45\x76\xaa\x47\x78\xac\x42\x71\xa5\ \x38\x63\x98\x2c\x51\x80\x21\x3e\x64\x17\x2f\x48\x0f\x22\x34\x0b\ \x1a\x29\x0c\x1b\x27\x10\x1d\x2a\x0f\x1e\x2d\x11\x1f\x30\x12\x21\ \x32\x17\x26\x38\x18\x27\x37\x18\x28\x39\x1b\x2b\x3b\x1e\x2e\x3d\ \x20\x31\x3e\x22\x33\x40\x23\x34\x41\x24\x35\x40\x25\x35\x3d\x27\ \x34\x3b\x25\x2f\x37\x1d\x26\x2d\x19\x1f\x25\x12\x16\x1b\x0f\x12\ \x18\x0d\x0f\x17\x09\x0f\x17\x0b\x12\x1b\x0e\x18\x21\x10\x1b\x26\ \x13\x20\x2c\x19\x27\x35\x1a\x2a\x39\x1d\x2d\x3e\x1f\x2e\x3f\x1f\ \x2e\x40\x20\x31\x3e\x1d\x2c\x3a\x1d\x2a\x36\x18\x22\x2f\x13\x1d\ \x28\x10\x1d\x26\x11\x1d\x2b\x10\x1e\x31\x11\x22\x38\x13\x27\x43\ \x19\x2f\x49\x1e\x37\x50\x24\x3e\x59\x2c\x43\x5f\x2d\x46\x60\x2b\ \x44\x5e\x27\x40\x59\x21\x37\x50\x1b\x2d\x45\x15\x25\x38\x10\x1c\ \x2e\x0d\x18\x28\x0a\x14\x22\x0a\x13\x20\x0c\x12\x1e\x0a\x0f\x1a\ \x0b\x0d\x17\x0b\x0d\x17\x0a\x0d\x15\x0b\x0e\x16\x0d\x10\x18\x0d\ \x10\x18\x0d\x10\x18\x0c\x11\x19\x0d\x12\x1a\x0f\x15\x1c\x14\x1c\ \x25\x19\x24\x2f\x1f\x2e\x3a\x25\x35\x43\x2a\x3d\x4e\x2d\x44\x56\ \x35\x4e\x61\x38\x53\x68\x3e\x5b\x72\x40\x5f\x75\x42\x62\x76\x43\ \x63\x77\x46\x65\x7b\x44\x63\x7b\x45\x64\x7d\x44\x62\x7d\x46\x64\ \x7e\x45\x64\x7d\x46\x65\x7d\x42\x61\x79\x3d\x5c\x75\x3c\x59\x74\ \x39\x56\x71\x36\x54\x6e\x32\x50\x69\x30\x4e\x66\x2e\x4b\x64\x2c\ \x49\x61\x2e\x49\x62\x30\x4a\x64\x32\x4c\x65\x32\x4d\x64\x33\x4f\ \x65\x36\x53\x68\x3a\x57\x6c\x3e\x5c\x73\x42\x61\x78\x48\x68\x7f\ \x4c\x6c\x84\x4f\x72\x8a\x4f\x73\x8c\x52\x75\x8f\x53\x76\x90\x56\ \x78\x93\x57\x79\x94\x57\x79\x92\x58\x79\x92\x58\x7a\x93\x00\x00\ \x00\x66\xa3\xdb\x64\xa1\xd9\x64\xa1\xd9\x63\xa0\xd8\x60\x9d\xd5\ \x5e\x9b\xd5\x5e\x9a\xd5\x5e\x9a\xd5\x5c\x98\xd3\x5d\x99\xd4\x5f\ \x9b\xd6\x5f\x9b\xd6\x5f\x9b\xd6\x62\x9f\xd7\x61\x9d\xd5\x65\x9f\ \xd7\x65\x9e\xd6\x63\x9c\xd4\x5f\x98\xd0\x5f\x98\xd0\x5d\x97\xcf\ \x5b\x94\xcd\x5a\x95\xce\x5b\x96\xce\x5d\x98\xd0\x61\x9b\xd5\x5f\ \x99\xd4\x5b\x95\xd0\x5a\x94\xcf\x54\x8e\xc9\x4e\x87\xc2\x48\x7e\ \xba\x40\x73\xaf\x3b\x6b\xa4\x39\x67\x9d\x3b\x6a\x9f\x3d\x6b\x9f\ \x3e\x6c\xa0\x3e\x6c\xa0\x3c\x6a\x9e\x3a\x65\x9a\x30\x56\x8a\x26\ \x46\x72\x1e\x38\x58\x15\x2b\x41\x0e\x1f\x30\x0c\x1a\x28\x0d\x1b\ \x27\x11\x1e\x2a\x10\x1f\x30\x11\x20\x30\x13\x23\x33\x19\x29\x3a\ \x18\x28\x38\x1b\x2b\x3a\x1e\x2e\x3e\x1f\x2e\x3e\x22\x32\x40\x23\ \x34\x41\x26\x37\x44\x24\x35\x40\x25\x35\x3e\x28\x35\x3d\x23\x2f\ \x35\x1e\x28\x2d\x1c\x21\x28\x14\x18\x1d\x0e\x11\x18\x0e\x11\x1a\ \x0a\x11\x1a\x0a\x13\x1c\x0e\x18\x23\x10\x1c\x28\x12\x20\x2e\x16\ \x25\x35\x18\x29\x39\x1b\x2e\x3e\x1f\x30\x42\x21\x30\x42\x20\x31\ \x42\x1d\x2d\x3b\x1c\x29\x37\x1a\x27\x33\x14\x21\x2c\x11\x1e\x29\ \x0f\x1c\x2a\x11\x1e\x30\x12\x21\x36\x15\x29\x41\x19\x2f\x4a\x20\ \x39\x54\x25\x3d\x59\x2b\x43\x5f\x2e\x45\x62\x2b\x44\x5f\x27\x40\ \x5b\x23\x3a\x55\x1e\x31\x4c\x15\x26\x3c\x0e\x1b\x31\x0d\x19\x2b\ \x0a\x15\x26\x0a\x13\x22\x09\x11\x1e\x09\x0f\x1b\x08\x0d\x18\x0a\ \x0d\x17\x0a\x0d\x17\x0b\x0d\x17\x0c\x0f\x19\x0d\x0f\x19\x0c\x0f\ \x19\x0c\x11\x18\x0c\x12\x19\x10\x18\x1f\x15\x1f\x28\x1a\x28\x32\ \x21\x32\x3f\x26\x3a\x49\x2b\x41\x52\x31\x49\x5c\x37\x50\x65\x3d\ \x57\x6d\x3f\x5b\x73\x43\x62\x79\x46\x64\x79\x46\x64\x79\x46\x65\ \x7b\x45\x64\x7b\x46\x66\x7d\x48\x67\x80\x45\x64\x7d\x44\x64\x7c\ \x42\x61\x78\x3e\x5c\x73\x3c\x5b\x70\x38\x56\x6f\x34\x51\x6c\x32\ \x4e\x68\x30\x4c\x65\x2e\x49\x61\x2b\x45\x5c\x2b\x46\x5b\x29\x44\ \x59\x2c\x45\x5a\x2f\x47\x5d\x30\x47\x5d\x31\x4b\x60\x37\x51\x65\ \x3e\x58\x6c\x45\x61\x75\x4d\x6a\x7f\x53\x72\x88\x58\x77\x8e\x5d\ \x7d\x94\x61\x82\x99\x63\x85\x9c\x67\x89\xa1\x69\x8a\xa2\x6a\x8b\ \xa3\x6d\x8d\xa3\x6b\x8b\xa1\x6f\x8e\xa5\x00\x00\x00\x64\xa2\xda\ \x65\xa2\xda\x62\xa0\xd7\x60\x9f\xd6\x5d\x9c\xd5\x5d\x9b\xd5\x5b\ \x99\xd4\x5a\x99\xd4\x5a\x98\xd2\x5e\x9a\xd5\x5e\x9a\xd5\x5e\x9a\ \xd5\x5e\x9a\xd5\x5e\x9b\xd3\x60\x9d\xd5\x62\x9d\xd5\x63\x9c\xd3\ \x61\x9a\xd2\x5c\x95\xcd\x5d\x96\xce\x5a\x95\xcd\x58\x92\xcc\x59\ \x93\xce\x59\x94\xcc\x5e\x99\xd1\x60\x9a\xd4\x60\x9a\xd5\x5c\x96\ \xd1\x5a\x94\xcf\x55\x8f\xca\x4e\x88\xc3\x49\x80\xbc\x42\x74\xb0\ \x3b\x6b\xa4\x38\x65\x9e\x38\x66\x9c\x3b\x66\x99\x3a\x67\x9a\x37\ \x64\x97\x36\x61\x94\x32\x5a\x8d\x2b\x4e\x7c\x21\x3d\x64\x1b\x30\ \x4d\x12\x23\x37\x0d\x1c\x2c\x0f\x1a\x29\x0f\x1b\x25\x10\x1d\x26\ \x0f\x1e\x2a\x0f\x1f\x2c\x14\x24\x31\x17\x26\x36\x18\x28\x36\x17\ \x28\x34\x1d\x2d\x3a\x1f\x2f\x3c\x20\x30\x3d\x23\x33\x3f\x24\x34\ \x40\x26\x36\x3f\x28\x36\x40\x28\x33\x3b\x22\x2c\x32\x1e\x27\x2b\ \x19\x1e\x25\x14\x19\x1e\x10\x13\x1b\x0c\x11\x1b\x0b\x11\x1c\x0e\ \x15\x20\x10\x19\x26\x0e\x1d\x2b\x13\x23\x32\x19\x29\x39\x19\x2b\ \x3c\x1b\x2d\x3f\x1f\x30\x44\x22\x33\x47\x21\x33\x46\x21\x32\x43\ \x20\x2f\x3f\x1a\x28\x36\x16\x23\x31\x10\x1e\x2c\x11\x1e\x2d\x13\ \x1f\x31\x12\x20\x36\x16\x29\x40\x1a\x30\x4a\x21\x37\x53\x27\x3f\ \x5b\x2d\x44\x60\x2e\x46\x62\x2c\x47\x62\x28\x41\x5d\x22\x3a\x55\ \x1d\x32\x4e\x17\x28\x42\x11\x1f\x37\x0c\x19\x2e\x0c\x17\x2b\x0a\ \x17\x26\x07\x14\x20\x08\x13\x1f\x09\x10\x1b\x09\x0e\x19\x0b\x0f\ \x18\x0a\x0f\x18\x0c\x11\x1a\x0c\x11\x1a\x0c\x11\x1a\x0e\x14\x1a\ \x0f\x15\x1a\x12\x1c\x20\x16\x23\x29\x1c\x2c\x35\x27\x38\x45\x2a\ \x3d\x4d\x32\x46\x58\x37\x4e\x61\x3c\x54\x68\x41\x5c\x71\x45\x61\ \x78\x44\x63\x7a\x44\x63\x7a\x46\x64\x7b\x44\x63\x7a\x46\x65\x7b\ \x46\x65\x7a\x43\x63\x79\x45\x66\x7d\x43\x62\x79\x43\x62\x78\x3e\ \x5c\x70\x3d\x59\x6d\x36\x52\x68\x32\x4e\x67\x31\x4b\x65\x2f\x4a\ \x60\x2b\x46\x5a\x2a\x42\x58\x29\x42\x56\x29\x41\x55\x2c\x44\x56\ \x2e\x45\x58\x33\x4a\x5c\x36\x4d\x5f\x3d\x55\x67\x45\x5d\x71\x50\ \x6a\x7c\x59\x75\x86\x60\x7c\x8f\x67\x86\x99\x6e\x8c\x9f\x71\x91\ \xa4\x77\x97\xaa\x7a\x99\xad\x7c\x9b\xb0\x7d\x9c\xb1\x80\x9d\xb2\ \x80\x9d\xb2\x81\x9f\xb4\x00\x00\x00\x62\xa1\xd9\x63\x9f\xd9\x5f\ \x9d\xd6\x5c\x9c\xd5\x5b\x9b\xd3\x5c\x9a\xd2\x5b\x99\xd2\x59\x97\ \xd1\x5a\x98\xd1\x5b\x98\xd1\x5d\x99\xd4\x5d\x99\xd4\x5d\x99\xd3\ \x5d\x9a\xd2\x5c\x98\xd1\x5e\x98\xd2\x5f\x98\xd2\x5e\x98\xd0\x5b\ \x95\xcd\x59\x94\xcb\x57\x92\xca\x57\x92\xca\x57\x90\xcc\x59\x93\ \xcd\x5c\x96\xcf\x5e\x99\xd1\x5f\x9a\xd3\x5e\x98\xd2\x5b\x95\xd0\ \x58\x91\xcd\x53\x8c\xc8\x4b\x83\xc0\x43\x76\xb3\x3d\x6e\xa7\x38\ \x66\x9e\x36\x63\x99\x37\x61\x93\x34\x5e\x8d\x33\x5a\x8b\x2f\x55\ \x86\x2d\x52\x7f\x22\x43\x6d\x1d\x34\x57\x15\x25\x3f\x0e\x1c\x2e\ \x0c\x17\x27\x0d\x17\x24\x0f\x19\x23\x11\x1c\x23\x10\x1d\x24\x11\ \x1d\x28\x12\x22\x2c\x13\x23\x2d\x13\x23\x2d\x17\x25\x30\x1a\x28\ \x33\x1e\x2b\x37\x1f\x2b\x37\x1f\x2b\x36\x23\x30\x39\x24\x32\x3a\ \x25\x32\x3a\x23\x2f\x36\x21\x2a\x2e\x1e\x26\x2a\x17\x1e\x23\x15\ \x19\x1e\x0f\x14\x1b\x0d\x12\x1c\x0c\x13\x1e\x0e\x16\x22\x11\x1b\ \x28\x11\x1f\x2d\x13\x23\x33\x18\x27\x39\x1a\x2b\x3e\x1e\x31\x45\ \x1f\x32\x48\x20\x35\x4a\x21\x35\x4a\x21\x34\x47\x20\x30\x41\x1a\ \x29\x38\x15\x23\x33\x14\x20\x32\x11\x1f\x30\x13\x21\x34\x16\x25\ \x3c\x18\x2c\x44\x1b\x31\x4b\x22\x38\x55\x26\x3f\x5c\x2d\x47\x64\ \x30\x4c\x67\x2e\x4a\x65\x28\x44\x5f\x25\x3c\x58\x1e\x33\x4f\x17\ \x29\x44\x12\x22\x3c\x0d\x1b\x32\x0c\x19\x2c\x09\x17\x27\x09\x15\ \x24\x08\x14\x21\x07\x11\x1c\x06\x0e\x1a\x09\x0f\x19\x0a\x10\x1a\ \x0c\x12\x1c\x10\x15\x1e\x10\x14\x1e\x0f\x16\x1e\x12\x1a\x20\x16\ \x21\x26\x19\x27\x2e\x1c\x2d\x37\x27\x37\x46\x2c\x3e\x4e\x32\x46\ \x57\x38\x4e\x61\x3f\x58\x6b\x40\x5b\x70\x41\x5e\x74\x44\x62\x7a\ \x45\x62\x7b\x45\x61\x7a\x45\x62\x7b\x46\x64\x7a\x47\x65\x7a\x47\ \x66\x79\x47\x67\x7d\x46\x64\x7b\x44\x60\x75\x42\x5e\x73\x3c\x59\ \x6d\x39\x56\x6a\x35\x4e\x65\x32\x4b\x61\x2f\x47\x5c\x2c\x45\x57\ \x2c\x44\x57\x29\x41\x54\x2e\x44\x57\x32\x46\x58\x36\x4a\x5b\x39\ \x4c\x5d\x3d\x51\x62\x45\x5b\x6c\x4e\x65\x75\x57\x70\x80\x61\x7a\ \x8c\x6d\x86\x97\x73\x8e\x9e\x77\x93\xa4\x7e\x9b\xab\x83\x9f\xaf\ \x86\xa2\xb4\x88\xa5\xb6\x89\xa6\xb8\x8a\xa6\xb9\x8d\xa7\xba\x8d\ \xa8\xba\x00\x00\x00\x5f\x9e\xd8\x61\x9d\xd8\x5f\x9b\xd6\x5b\x9a\ \xd4\x59\x99\xd1\x5a\x98\xd0\x5b\x99\xd0\x5a\x98\xd0\x5b\x98\xd0\ \x5c\x99\xd1\x5d\x98\xd3\x5d\x99\xd4\x5d\x9a\xd2\x5b\x98\xd1\x5a\ \x96\xd1\x5d\x97\xd2\x5d\x97\xd2\x5c\x96\xd2\x59\x93\xcf\x57\x91\ \xcc\x57\x90\xcc\x56\x8f\xcb\x56\x90\xcb\x58\x92\xcd\x5b\x96\xce\ \x5e\x99\xd1\x60\x9c\xd3\x60\x9b\xd3\x5d\x98\xd2\x5b\x95\xd0\x55\ \x8d\xca\x4d\x85\xc2\x44\x7a\xb7\x3f\x6e\xa8\x39\x66\x9f\x35\x62\ \x98\x34\x5d\x90\x30\x58\x87\x2d\x51\x82\x2a\x4b\x7a\x25\x46\x6e\ \x1e\x39\x5f\x15\x2a\x47\x12\x21\x35\x0c\x19\x28\x0c\x17\x24\x0e\ \x18\x24\x0e\x19\x23\x11\x1c\x24\x0f\x1b\x23\x11\x1c\x26\x13\x20\ \x2a\x11\x20\x2a\x14\x22\x2c\x17\x23\x2d\x17\x26\x2f\x1b\x29\x35\ \x1c\x29\x35\x1f\x2b\x35\x21\x2e\x36\x24\x33\x39\x23\x32\x39\x25\ \x31\x37\x21\x2b\x2f\x1c\x25\x29\x18\x1e\x23\x15\x19\x1e\x10\x15\ \x1b\x10\x15\x1e\x0a\x13\x1d\x0f\x18\x23\x10\x1a\x27\x11\x1e\x2c\ \x13\x22\x32\x18\x27\x3a\x19\x29\x3c\x1d\x30\x44\x1e\x33\x48\x20\ \x36\x4c\x21\x36\x4b\x1f\x34\x48\x1f\x31\x42\x1a\x2a\x3a\x17\x26\ \x37\x17\x25\x37\x18\x29\x3b\x1c\x2f\x45\x1f\x32\x4c\x24\x39\x54\ \x29\x40\x5c\x2f\x47\x66\x32\x4b\x6c\x36\x52\x71\x37\x53\x70\x32\ \x4e\x6a\x30\x4c\x68\x2b\x42\x5f\x24\x3a\x56\x1e\x31\x4d\x14\x27\ \x42\x11\x21\x39\x0e\x1d\x32\x0d\x1b\x2d\x0c\x17\x29\x0a\x15\x24\ \x0a\x12\x1f\x0a\x12\x1e\x08\x11\x1c\x0a\x13\x1d\x0e\x14\x1f\x0f\ \x15\x1f\x12\x18\x21\x10\x19\x22\x16\x20\x29\x1a\x24\x2d\x1e\x2b\ \x34\x21\x30\x3d\x29\x39\x49\x2f\x41\x52\x35\x4b\x5c\x3a\x52\x64\ \x3e\x58\x6b\x40\x5c\x70\x42\x5f\x74\x43\x61\x77\x46\x61\x7a\x46\ \x62\x79\x47\x64\x7b\x48\x65\x7b\x48\x65\x7a\x4a\x67\x7c\x4a\x67\ \x7c\x4b\x67\x7b\x47\x62\x76\x43\x5e\x72\x3f\x5a\x6d\x3b\x55\x69\ \x38\x51\x65\x35\x4e\x61\x34\x4c\x5e\x32\x49\x5b\x32\x4a\x5b\x30\ \x46\x58\x34\x48\x58\x38\x4b\x5b\x3b\x4d\x5e\x41\x53\x63\x47\x5a\ \x67\x4f\x64\x70\x55\x6d\x7b\x60\x78\x86\x6a\x83\x93\x72\x8b\x9b\ \x79\x93\xa3\x81\x9b\xab\x88\xa1\xb2\x8c\xa5\xb5\x8c\xa7\xb8\x8f\ \xab\xbc\x90\xac\xbd\x91\xad\xbe\x92\xac\xbd\x92\xac\xbd\x00\x00\ \x00\x5c\x9b\xd5\x5e\x9c\xd6\x5b\x98\xd4\x5a\x98\xd3\x59\x98\xd2\ \x5b\x97\xd2\x5a\x97\xd0\x5b\x98\xd0\x5c\x99\xd1\x5a\x97\xd1\x5c\ \x98\xd3\x5d\x99\xd4\x5c\x99\xd2\x5a\x96\xd1\x5a\x96\xd1\x5a\x96\ \xd0\x5a\x96\xd2\x5b\x96\xd2\x58\x94\xcf\x54\x90\xcb\x55\x91\xcb\ \x53\x8e\xc9\x54\x8e\xc9\x56\x91\xca\x5a\x96\xcd\x5d\x99\xcf\x60\ \x9c\xd2\x62\x9d\xd5\x5f\x9a\xd2\x5b\x96\xcf\x58\x92\xcd\x50\x8a\ \xc6\x49\x7f\xbc\x3d\x6f\xab\x3a\x68\xa1\x36\x63\x9b\x33\x5d\x91\ \x2e\x56\x86\x2a\x4b\x7a\x26\x43\x6e\x23\x3e\x63\x1b\x31\x52\x14\ \x25\x41\x10\x1e\x30\x0c\x19\x28\x0e\x1a\x28\x10\x1a\x28\x11\x1d\ \x2a\x10\x1c\x28\x11\x1d\x29\x10\x1d\x28\x12\x20\x2c\x11\x21\x2d\ \x13\x21\x2e\x18\x25\x31\x1a\x27\x33\x1b\x29\x35\x1d\x2b\x36\x20\ \x2f\x38\x20\x31\x39\x23\x33\x3a\x25\x33\x3b\x26\x32\x3a\x22\x2d\ \x31\x1d\x26\x2a\x18\x20\x24\x14\x1a\x1f\x10\x16\x1c\x0d\x13\x1d\ \x0a\x13\x1d\x0b\x14\x21\x0e\x1b\x27\x12\x20\x2e\x14\x23\x33\x16\ \x26\x37\x18\x29\x3c\x1c\x2e\x42\x1b\x30\x45\x1f\x36\x4a\x20\x35\ \x4a\x20\x34\x49\x1e\x30\x45\x1c\x2d\x40\x1c\x2d\x40\x21\x35\x48\ \x28\x3d\x54\x2d\x42\x5e\x33\x49\x6a\x38\x50\x72\x3b\x56\x79\x41\ \x5b\x7f\x43\x5e\x81\x47\x63\x82\x47\x60\x80\x3e\x59\x78\x36\x52\ \x71\x2d\x47\x65\x25\x3d\x5b\x1d\x32\x52\x15\x28\x47\x0f\x21\x3d\ \x0e\x1e\x37\x0e\x1d\x32\x0c\x18\x2b\x0b\x17\x26\x0a\x14\x21\x0a\ \x13\x1d\x0b\x12\x20\x0d\x14\x22\x0f\x17\x24\x0e\x16\x22\x10\x18\ \x25\x14\x1d\x2a\x19\x24\x30\x1e\x2a\x36\x24\x31\x3d\x26\x35\x42\ \x2a\x3b\x4a\x30\x42\x52\x37\x4b\x5c\x3d\x54\x66\x3e\x56\x69\x41\ \x5a\x6e\x42\x5f\x73\x44\x61\x76\x45\x60\x76\x49\x63\x7a\x49\x65\ \x7a\x4a\x66\x7b\x4b\x67\x7c\x4c\x68\x7d\x4b\x66\x7b\x4c\x65\x78\ \x4a\x63\x75\x45\x5d\x6e\x41\x5b\x6b\x3f\x59\x69\x3d\x56\x66\x3b\ \x53\x64\x38\x4f\x5f\x38\x4e\x5f\x37\x4c\x5d\x38\x4c\x5c\x3b\x4e\ \x5d\x3e\x4f\x5d\x41\x52\x60\x45\x56\x63\x50\x62\x6d\x56\x69\x74\ \x5d\x72\x7e\x66\x7d\x88\x6d\x86\x93\x76\x90\x9e\x7c\x96\xa5\x82\ \x9c\xac\x87\xa1\xb1\x8b\xa6\xb6\x8d\xaa\xba\x8f\xab\xbc\x91\xad\ \xbe\x91\xac\xbd\x92\xad\xbe\x92\xac\xbd\x00\x00\x00\x5a\x97\xd3\ \x58\x97\xd1\x58\x95\xd0\x5a\x95\xd2\x5a\x96\xd1\x57\x95\xd1\x57\ \x96\xd1\x5a\x97\xd1\x5b\x96\xd1\x5b\x96\xd1\x5c\x97\xd2\x5d\x98\ \xd3\x5c\x97\xd3\x5a\x96\xd1\x59\x95\xd0\x58\x95\xd1\x58\x95\xd1\ \x59\x95\xd1\x58\x94\xd0\x54\x90\xcc\x54\x90\xcc\x53\x8f\xcb\x52\ \x8d\xc8\x54\x8f\xca\x57\x93\xcc\x5b\x97\xce\x5e\x99\xd1\x62\x9d\ \xd4\x5e\x9a\xd2\x5a\x97\xd0\x57\x94\xce\x52\x8c\xc8\x4a\x82\xbe\ \x3e\x74\xae\x3a\x69\xa3\x36\x63\x9d\x34\x5d\x93\x2e\x55\x86\x2b\ \x4c\x7a\x24\x40\x6b\x20\x39\x5c\x1c\x30\x51\x16\x25\x3e\x11\x1e\ \x32\x10\x1e\x2f\x0d\x1b\x2e\x0f\x1d\x2e\x0e\x1c\x2d\x0f\x1e\x2c\ \x10\x1f\x2c\x11\x1e\x2c\x12\x20\x2d\x15\x25\x31\x16\x25\x32\x1a\ \x26\x34\x1b\x28\x36\x1c\x29\x36\x1d\x2c\x38\x20\x31\x3b\x23\x34\ \x3e\x24\x36\x3e\x28\x35\x3f\x28\x33\x3c\x24\x30\x36\x1f\x29\x2f\ \x18\x21\x25\x13\x19\x1e\x0f\x16\x1c\x0d\x14\x1d\x0c\x15\x1f\x0f\ \x18\x24\x10\x1c\x29\x11\x20\x2e\x14\x24\x34\x18\x28\x39\x19\x2a\ \x3c\x1c\x2e\x41\x1e\x33\x48\x20\x36\x4b\x23\x38\x4d\x21\x36\x4b\ \x20\x34\x4a\x1f\x32\x4a\x29\x3c\x54\x2f\x46\x5f\x38\x4f\x6d\x3e\ \x57\x79\x48\x62\x86\x4e\x68\x8f\x54\x6e\x96\x58\x72\x9a\x57\x72\ \x97\x55\x71\x93\x51\x6b\x8e\x46\x60\x84\x3a\x55\x77\x2f\x49\x6a\ \x27\x3e\x5e\x1f\x33\x55\x14\x27\x49\x0f\x21\x40\x0d\x1e\x38\x0e\ \x1d\x35\x0b\x18\x2c\x0b\x18\x28\x0c\x18\x26\x0d\x17\x25\x0d\x16\ \x26\x0e\x18\x28\x0e\x17\x27\x10\x19\x28\x14\x1e\x2b\x17\x22\x31\ \x1d\x2a\x39\x21\x2f\x3e\x27\x37\x45\x2a\x3a\x47\x2b\x3d\x49\x31\ \x43\x51\x37\x4a\x5b\x3c\x51\x63\x3e\x55\x68\x41\x5a\x6e\x42\x5c\ \x70\x45\x60\x74\x46\x60\x75\x48\x63\x78\x48\x63\x78\x4b\x66\x7a\ \x4c\x67\x7c\x4c\x67\x7c\x4f\x69\x7b\x4c\x65\x76\x4b\x63\x74\x48\ \x61\x71\x45\x5f\x6d\x43\x5c\x6a\x3f\x58\x67\x3f\x56\x66\x3d\x52\ \x63\x3c\x50\x61\x3a\x4e\x60\x3b\x4e\x5d\x3d\x50\x5e\x42\x54\x61\ \x45\x57\x64\x4a\x5c\x68\x54\x67\x6f\x5b\x6d\x76\x60\x73\x7f\x67\ \x7e\x8a\x70\x88\x94\x76\x8f\x9c\x7d\x97\xa5\x82\x9c\xac\x86\xa3\ \xb2\x8a\xa7\xb6\x8d\xaa\xba\x8e\xab\xbc\x8f\xad\xbe\x91\xad\xbe\ \x93\xad\xbe\x93\xad\xbe\x00\x00\x00\x57\x94\xd1\x56\x94\xcf\x57\ \x95\xd0\x57\x93\xcf\x57\x93\xcf\x56\x93\xcf\x56\x94\xd0\x57\x93\ \xcf\x5a\x94\xcf\x5c\x96\xd1\x5d\x96\xd2\x5d\x95\xd2\x5b\x96\xd2\ \x59\x95\xd0\x56\x94\xcf\x56\x94\xd0\x58\x96\xd2\x56\x94\xd1\x56\ \x94\xd0\x54\x92\xce\x50\x8e\xcb\x51\x8e\xcb\x51\x8d\xc9\x51\x8d\ \xc9\x55\x91\xcc\x59\x95\xd0\x5d\x98\xd3\x60\x9a\xd6\x5f\x9b\xd6\ \x5c\x98\xd3\x58\x95\xcf\x54\x8e\xca\x4b\x84\xc0\x41\x77\xb3\x3d\ \x6e\xa8\x38\x65\xa0\x35\x5d\x94\x31\x57\x8a\x2b\x4b\x7c\x26\x42\ \x6e\x1f\x3a\x5e\x1d\x30\x54\x18\x28\x43\x14\x21\x36\x10\x1c\x32\ \x0f\x1b\x33\x0f\x1c\x33\x0e\x1c\x30\x11\x1f\x30\x10\x20\x2d\x11\ \x1f\x2c\x12\x21\x2e\x14\x24\x31\x14\x24\x31\x17\x24\x32\x1b\x28\ \x37\x1a\x29\x35\x1d\x2e\x38\x20\x33\x3d\x23\x36\x41\x24\x38\x40\ \x29\x38\x41\x28\x34\x3d\x24\x31\x37\x20\x2c\x32\x19\x22\x28\x13\ \x1a\x1e\x10\x17\x1d\x0d\x15\x1d\x0d\x16\x20\x10\x1b\x25\x11\x1e\ \x2a\x11\x21\x2e\x15\x25\x35\x17\x27\x38\x1b\x2c\x3d\x1e\x31\x44\ \x20\x35\x48\x22\x39\x4d\x22\x37\x4b\x22\x37\x4c\x22\x36\x4e\x28\ \x3b\x56\x34\x49\x64\x40\x56\x75\x49\x5f\x82\x54\x6c\x92\x5e\x78\ \xa0\x66\x7f\xa7\x6a\x83\xab\x6a\x83\xad\x67\x81\xa9\x60\x7d\xa1\ \x58\x73\x98\x4d\x69\x8d\x41\x5c\x7f\x32\x4b\x6e\x25\x3a\x5e\x1c\ \x30\x53\x13\x26\x48\x0f\x20\x3f\x0e\x1d\x39\x0b\x1a\x33\x0a\x18\ \x2c\x0a\x17\x2a\x0a\x15\x28\x0d\x16\x2a\x0f\x19\x2b\x10\x19\x2c\ \x10\x1b\x2c\x10\x1d\x2d\x16\x23\x33\x1d\x2a\x3a\x21\x2f\x40\x27\ \x37\x49\x2c\x3c\x4c\x2d\x3d\x4a\x2e\x40\x4b\x32\x44\x51\x36\x4a\ \x5b\x3c\x50\x62\x3f\x56\x69\x3f\x57\x6b\x41\x5b\x6f\x42\x5d\x71\ \x46\x60\x74\x48\x61\x75\x4b\x64\x77\x4b\x64\x78\x4e\x67\x7c\x4f\ \x66\x7d\x50\x69\x7e\x4f\x68\x7b\x4c\x64\x76\x49\x62\x72\x49\x62\ \x72\x46\x60\x6e\x46\x5e\x6e\x45\x5b\x6b\x43\x57\x68\x40\x54\x66\ \x41\x55\x67\x3e\x52\x64\x42\x55\x65\x48\x5b\x69\x4b\x61\x6c\x4d\ \x61\x6c\x55\x68\x72\x5c\x6f\x7a\x62\x76\x83\x69\x7e\x8e\x6f\x86\ \x96\x76\x8f\x9d\x7d\x97\xa5\x83\x9d\xab\x85\xa2\xb1\x8a\xa7\xb6\ \x8c\xa9\xba\x8c\xaa\xbb\x8e\xac\xbd\x91\xad\xbe\x92\xac\xbd\x92\ \xac\xbd\x00\x00\x00\x54\x93\xd0\x54\x92\xcf\x53\x91\xce\x53\x8f\ \xcd\x54\x92\xce\x53\x91\xcd\x54\x93\xcf\x57\x94\xd0\x58\x94\xd0\ \x59\x95\xd1\x5b\x97\xd3\x5a\x96\xd2\x58\x95\xd1\x5a\x97\xd3\x59\ \x94\xd1\x56\x93\xd1\x56\x95\xd2\x56\x95\xd2\x56\x95\xd2\x55\x92\ \xd0\x52\x8e\xcc\x51\x8f\xcc\x50\x8e\xca\x51\x8d\xca\x53\x8f\xcb\ \x5a\x94\xcf\x5d\x98\xd1\x61\x9c\xd4\x61\x9c\xd5\x5d\x99\xd4\x59\ \x95\xd1\x54\x90\xcc\x4c\x86\xc3\x42\x7a\xb6\x3b\x6e\xaa\x39\x69\ \xa3\x38\x61\x99\x31\x59\x8e\x2e\x50\x81\x29\x46\x71\x1f\x39\x5e\ \x1f\x34\x56\x1a\x2c\x47\x13\x23\x39\x0f\x1d\x33\x10\x1e\x34\x0e\ \x1c\x32\x0f\x1c\x32\x10\x1e\x31\x12\x20\x31\x10\x1f\x2f\x10\x20\ \x2d\x14\x23\x2f\x17\x25\x31\x17\x25\x31\x1a\x28\x34\x1c\x2a\x36\ \x1d\x2e\x38\x22\x35\x3d\x24\x37\x40\x26\x39\x41\x26\x38\x40\x27\ \x35\x3e\x27\x30\x3a\x21\x2a\x32\x18\x20\x25\x13\x18\x1f\x10\x15\ \x1b\x0e\x13\x1b\x0b\x13\x1d\x0d\x16\x23\x0f\x1b\x29\x13\x20\x30\ \x14\x24\x34\x17\x26\x37\x1a\x2a\x3c\x1c\x2d\x40\x1f\x32\x45\x22\ \x36\x49\x25\x39\x4c\x23\x37\x49\x26\x3b\x4f\x31\x47\x61\x40\x55\ \x75\x4c\x62\x86\x59\x71\x97\x64\x7d\xa7\x70\x89\xb4\x78\x91\xbc\ \x7d\x96\xc2\x7a\x92\xbd\x72\x8b\xb5\x6a\x85\xad\x5c\x7b\xa2\x4e\ \x6b\x92\x42\x5e\x82\x34\x4c\x6e\x25\x3a\x5a\x19\x2d\x4d\x0f\x22\ \x43\x0d\x1f\x3e\x0d\x1c\x35\x0d\x1a\x32\x08\x15\x2b\x0b\x16\x2b\ \x0b\x16\x2a\x0f\x18\x2d\x0e\x1a\x2e\x0e\x1c\x2f\x0e\x1c\x2e\x13\ \x21\x33\x17\x24\x39\x1d\x2c\x3f\x24\x33\x46\x29\x3a\x4c\x2e\x40\ \x51\x2f\x41\x51\x2e\x41\x4e\x30\x42\x52\x37\x4a\x5c\x3b\x50\x63\ \x3e\x54\x69\x3e\x55\x6b\x41\x59\x6f\x42\x5a\x70\x46\x5e\x73\x48\ \x61\x75\x4b\x64\x79\x4f\x66\x7c\x51\x6a\x7d\x52\x69\x7c\x50\x68\ \x7c\x50\x68\x7a\x4f\x68\x79\x4d\x66\x76\x4b\x64\x74\x4a\x62\x74\ \x49\x61\x73\x47\x60\x70\x49\x61\x71\x48\x5d\x6f\x47\x5a\x6f\x46\ \x5a\x6d\x48\x5d\x6d\x4e\x63\x72\x51\x67\x74\x50\x65\x73\x56\x6c\ \x78\x59\x6f\x7b\x65\x78\x85\x68\x7f\x8e\x6e\x87\x95\x74\x8e\x9c\ \x7b\x95\xa5\x80\x9c\xab\x84\xa0\xb1\x89\xa5\xb6\x8c\xa8\xb9\x8c\ \xa9\xba\x8d\xaa\xbb\x90\xab\xbc\x91\xab\xbc\x92\xac\xbd\x00\x00\ \x00\x54\x93\xcf\x52\x91\xce\x52\x91\xce\x51\x90\xcd\x53\x91\xcf\ \x54\x92\xcf\x54\x93\xcf\x55\x94\xd0\x56\x94\xd0\x56\x94\xd0\x57\ \x95\xd1\x57\x95\xd1\x57\x95\xd2\x58\x95\xd2\x58\x94\xd2\x57\x95\ \xd2\x56\x96\xd2\x56\x96\xd3\x55\x95\xd2\x56\x95\xd2\x52\x91\xce\ \x51\x8f\xcc\x50\x8e\xcb\x50\x8c\xca\x53\x8e\xcb\x59\x93\xce\x5e\ \x98\xd2\x5f\x9a\xd4\x5f\x9c\xd4\x5d\x99\xd5\x5a\x95\xd2\x55\x90\ \xcd\x4d\x88\xc5\x44\x7d\xb9\x3e\x72\xae\x3c\x6b\xa7\x39\x64\x9d\ \x33\x5c\x91\x2f\x55\x84\x2d\x4d\x77\x22\x3d\x63\x1d\x34\x57\x19\ \x2d\x4a\x14\x24\x3b\x14\x22\x39\x11\x1f\x35\x10\x1e\x34\x0e\x1c\ \x32\x13\x21\x34\x14\x22\x34\x11\x1f\x2f\x12\x1f\x2f\x15\x22\x30\ \x16\x23\x30\x18\x25\x31\x1a\x28\x34\x1c\x2b\x37\x1d\x2d\x39\x25\ \x38\x40\x25\x38\x41\x26\x39\x43\x26\x38\x41\x28\x37\x40\x24\x2f\ \x38\x20\x29\x2f\x17\x20\x24\x13\x17\x1e\x10\x14\x1c\x0c\x11\x1a\ \x0a\x12\x1b\x0b\x14\x1f\x0f\x1a\x25\x0f\x1c\x29\x14\x23\x31\x13\ \x23\x33\x19\x28\x3a\x1b\x2b\x3e\x1d\x2e\x41\x1f\x32\x44\x1f\x33\ \x46\x20\x34\x45\x25\x3b\x4f\x37\x4d\x68\x49\x5f\x82\x57\x70\x95\ \x65\x7e\xa8\x75\x8f\xbb\x80\x99\xc5\x84\x9f\xca\x88\xa2\xce\x86\ \x9e\xcb\x7e\x97\xc1\x71\x8e\xb6\x63\x7f\xaa\x53\x70\x98\x42\x5e\ \x82\x34\x4c\x6e\x20\x34\x56\x16\x29\x4a\x0e\x22\x42\x0d\x1f\x3c\ \x0d\x1c\x36\x0c\x19\x30\x08\x15\x2c\x08\x15\x2a\x09\x16\x2a\x0c\ \x19\x2d\x0e\x1a\x30\x11\x1e\x33\x13\x20\x35\x16\x24\x3a\x1c\x29\ \x40\x24\x32\x48\x28\x39\x4d\x2c\x40\x52\x31\x44\x56\x32\x44\x56\ \x32\x45\x54\x32\x44\x55\x3a\x4c\x5d\x3d\x52\x64\x3f\x56\x6a\x40\ \x57\x6d\x40\x59\x6d\x43\x5c\x70\x46\x5e\x72\x4a\x62\x75\x4c\x65\ \x79\x4f\x68\x7d\x50\x69\x7d\x53\x6a\x7b\x54\x6c\x7e\x52\x6a\x7c\ \x4f\x67\x79\x4d\x66\x76\x4e\x68\x77\x4e\x67\x78\x4c\x65\x75\x4c\ \x65\x75\x4a\x63\x73\x4c\x63\x74\x4d\x62\x75\x4e\x63\x75\x4e\x64\ \x74\x53\x69\x79\x55\x6c\x7c\x56\x6d\x7d\x58\x6e\x7e\x5e\x74\x82\ \x66\x7b\x89\x69\x81\x8e\x71\x88\x97\x75\x8f\x9d\x7b\x96\xa4\x80\ \x9b\xaa\x86\x9f\xaf\x89\xa3\xb3\x8a\xa5\xb5\x8c\xa7\xb7\x8d\xa8\ \xb7\x8d\xa8\xb7\x8d\xa8\xb7\x8e\xa8\xb7\x00\x00\x00\x52\x92\xd2\ \x50\x90\xd0\x51\x91\xd1\x51\x8f\xd0\x52\x91\xcf\x52\x91\xce\x52\ \x92\xcf\x52\x91\xcf\x54\x93\xd1\x55\x94\xd1\x56\x95\xd2\x57\x96\ \xd3\x56\x95\xd4\x57\x96\xd5\x57\x96\xd3\x56\x96\xd2\x54\x97\xd2\ \x54\x95\xd5\x53\x94\xd4\x53\x93\xd4\x51\x90\xd1\x4f\x8d\xcc\x4f\ \x8c\xca\x4d\x8a\xc8\x51\x8d\xca\x57\x92\xce\x5b\x96\xd1\x5c\x98\ \xd3\x5f\x9b\xd6\x5d\x99\xd4\x59\x94\xd2\x56\x91\xcf\x4f\x8a\xc7\ \x49\x82\xbf\x40\x75\xb1\x3d\x6e\xaa\x3b\x68\xa0\x37\x61\x96\x31\ \x59\x89\x2d\x4f\x7c\x22\x40\x69\x1f\x39\x5b\x19\x2f\x4c\x16\x27\ \x41\x13\x21\x38\x11\x1f\x34\x0f\x1d\x32\x10\x1e\x31\x14\x22\x33\ \x14\x22\x33\x10\x1d\x2e\x12\x1e\x2d\x14\x1f\x2d\x16\x21\x2d\x18\ \x24\x30\x1a\x27\x33\x1c\x29\x35\x1f\x2f\x38\x22\x33\x3c\x23\x36\ \x3f\x27\x37\x44\x27\x37\x42\x27\x36\x3e\x24\x30\x36\x1f\x29\x2e\ \x18\x1e\x23\x14\x18\x1f\x10\x13\x1b\x0d\x11\x1a\x0a\x10\x19\x0d\ \x15\x1e\x0e\x18\x23\x11\x1d\x29\x13\x20\x2e\x14\x23\x33\x1a\x2a\ \x3b\x1a\x2a\x3d\x1e\x2f\x42\x1f\x31\x43\x20\x32\x45\x1d\x31\x42\ \x26\x3b\x50\x3c\x52\x6e\x4d\x63\x87\x5d\x78\xa0\x6e\x88\xb3\x7e\ \x98\xc4\x8a\xa3\xcd\x91\xac\xd7\x91\xac\xd8\x8c\xa6\xd2\x84\x9e\ \xca\x78\x93\xbf\x69\x83\xb1\x56\x71\x9d\x43\x5d\x83\x2c\x44\x68\ \x1b\x30\x53\x14\x27\x48\x0d\x21\x40\x0c\x1f\x3b\x0c\x1b\x35\x0b\ \x19\x32\x09\x17\x2d\x06\x13\x28\x06\x14\x27\x0c\x1a\x2e\x11\x1e\ \x35\x13\x21\x39\x15\x23\x3b\x17\x27\x40\x1d\x2d\x47\x25\x36\x4d\ \x29\x3c\x52\x2e\x42\x56\x2e\x43\x55\x34\x47\x59\x35\x47\x58\x37\ \x49\x5a\x3d\x50\x61\x40\x56\x66\x42\x59\x6a\x41\x58\x6c\x42\x5a\ \x6d\x44\x5c\x6e\x49\x60\x72\x4e\x64\x76\x4f\x67\x79\x52\x6a\x7d\ \x56\x6e\x81\x57\x6d\x7e\x58\x6f\x80\x56\x6d\x7e\x56\x6d\x7d\x54\ \x6b\x7b\x53\x6a\x7a\x55\x6c\x7b\x52\x69\x79\x52\x6b\x7b\x50\x69\ \x79\x50\x69\x79\x4f\x69\x78\x51\x6b\x7a\x51\x6a\x7c\x56\x6e\x81\ \x57\x70\x82\x59\x71\x81\x5b\x72\x82\x60\x77\x86\x63\x7a\x89\x68\ \x80\x8d\x6d\x85\x91\x75\x8e\x9a\x7a\x93\xa1\x7f\x98\xa6\x84\x9b\ \xaa\x87\x9f\xad\x87\xa0\xaf\x89\xa2\xb0\x88\xa2\xaf\x87\xa2\xad\ \x88\xa2\xae\x88\xa2\xae\x00\x00\x00\x51\x91\xd1\x52\x92\xd2\x50\ \x91\xd1\x4e\x91\xd0\x4e\x90\xcf\x4e\x91\xd0\x4e\x91\xd0\x50\x92\ \xcf\x53\x94\xd1\x52\x93\xd0\x54\x95\xd2\x54\x95\xd2\x54\x94\xd4\ \x54\x94\xd4\x54\x95\xd2\x55\x97\xd4\x53\x97\xd4\x53\x97\xd6\x53\ \x95\xd4\x52\x95\xd4\x4f\x92\xd1\x4d\x8d\xcc\x4e\x8c\xcc\x4c\x8b\ \xc7\x50\x8d\xc9\x54\x90\xcc\x57\x94\xcf\x58\x98\xd2\x5c\x99\xd3\ \x5b\x97\xd2\x58\x93\xd1\x53\x8f\xcd\x4e\x8a\xc8\x4a\x83\xc0\x44\ \x78\xb5\x3e\x6f\xab\x3e\x6c\xa3\x37\x65\x99\x35\x5e\x90\x31\x56\ \x83\x2a\x4b\x76\x21\x3d\x62\x20\x37\x57\x1a\x2b\x45\x13\x21\x37\ \x10\x1e\x30\x0f\x1b\x2d\x0f\x1c\x2c\x10\x1c\x2a\x13\x1e\x2c\x10\ \x1b\x29\x12\x1b\x29\x12\x1b\x28\x14\x1e\x28\x16\x1f\x29\x18\x22\ \x2b\x1b\x27\x2e\x1f\x2b\x33\x1c\x2a\x32\x21\x30\x38\x25\x32\x3c\ \x27\x33\x3c\x25\x32\x38\x21\x2d\x30\x1e\x25\x29\x18\x1c\x21\x12\ \x15\x1c\x10\x13\x1b\x0c\x12\x1b\x0b\x11\x1a\x0e\x16\x1f\x0f\x18\ \x22\x12\x1d\x29\x13\x20\x2d\x16\x25\x32\x1b\x2a\x3a\x1d\x2c\x3e\ \x1f\x2f\x42\x21\x32\x45\x21\x32\x44\x20\x32\x43\x27\x3a\x50\x3e\ \x52\x71\x51\x67\x8b\x63\x7c\xa2\x72\x8c\xb5\x81\x9b\xc7\x8d\xa6\ \xd1\x94\xad\xd8\x90\xab\xd7\x8c\xa7\xd3\x82\x9d\xca\x79\x92\xc0\ \x66\x7e\xaf\x53\x6d\x99\x3c\x57\x7b\x24\x3b\x5e\x18\x2c\x4f\x10\ \x24\x44\x0c\x21\x3c\x0b\x1f\x39\x0d\x1b\x35\x0d\x19\x32\x07\x14\ \x2b\x07\x15\x28\x08\x16\x29\x0a\x17\x2b\x11\x1e\x35\x13\x21\x3b\ \x17\x26\x41\x1a\x2b\x46\x1e\x32\x4b\x28\x3c\x55\x29\x3f\x57\x2b\ \x42\x58\x2f\x44\x59\x36\x49\x5c\x3c\x4f\x5f\x3e\x50\x61\x41\x53\ \x64\x44\x59\x6a\x44\x5a\x6c\x47\x5c\x6e\x46\x5f\x6f\x48\x60\x70\ \x4a\x60\x71\x51\x65\x75\x53\x69\x79\x56\x6e\x80\x58\x70\x82\x5a\ \x71\x81\x5b\x72\x82\x5d\x74\x84\x5e\x75\x85\x5b\x72\x82\x5b\x72\ \x82\x59\x70\x80\x58\x6f\x7f\x59\x71\x81\x56\x6f\x7f\x57\x70\x81\ \x59\x72\x82\x57\x70\x80\x59\x71\x83\x5b\x73\x85\x5e\x74\x86\x5e\ \x75\x86\x5f\x76\x86\x63\x79\x87\x66\x7c\x88\x68\x80\x8b\x6c\x85\ \x8f\x72\x8a\x96\x76\x8e\x9a\x79\x91\x9d\x7e\x94\xa0\x81\x98\xa4\ \x81\x99\xa5\x80\x98\xa4\x80\x99\xa5\x7e\x99\xa3\x7d\x98\xa2\x7d\ \x96\xa0\x00\x00\x00\x4f\x92\xd3\x4f\x91\xd2\x4e\x90\xd1\x4f\x91\ \xd2\x4f\x91\xd2\x50\x93\xd2\x4f\x92\xd1\x4f\x92\xd0\x51\x93\xd0\ \x52\x94\xd1\x53\x96\xd2\x54\x96\xd3\x53\x96\xd3\x55\x97\xd3\x55\ \x96\xd4\x53\x95\xd5\x51\x95\xd5\x52\x96\xd7\x51\x95\xd6\x51\x94\ \xd5\x4f\x91\xd2\x4c\x8d\xce\x4d\x8b\xcb\x4d\x8b\xc7\x4d\x8a\xc6\ \x52\x8d\xc9\x54\x90\xcd\x55\x95\xcf\x59\x98\xd2\x5b\x98\xd4\x59\ \x92\xd2\x53\x8f\xce\x4e\x8a\xc8\x4c\x85\xc3\x45\x7a\xb7\x41\x73\ \xaf\x3d\x6c\xa4\x38\x67\x9b\x37\x62\x93\x37\x5c\x8b\x2f\x51\x7f\ \x24\x42\x6a\x22\x3a\x5e\x1c\x2e\x4a\x14\x24\x38\x0d\x1b\x2c\x0e\ \x18\x27\x0d\x17\x23\x0d\x17\x21\x0f\x18\x25\x0f\x19\x24\x11\x1a\ \x25\x12\x1b\x25\x12\x1b\x24\x14\x1d\x25\x17\x1f\x27\x19\x21\x29\ \x1a\x24\x2a\x1b\x26\x2b\x1e\x2b\x2f\x23\x2e\x35\x23\x2f\x33\x23\ \x2e\x31\x21\x2a\x2d\x1c\x22\x25\x18\x1b\x20\x13\x16\x1d\x10\x13\ \x1b\x0c\x11\x1a\x0c\x12\x1b\x0d\x12\x1d\x0e\x17\x23\x12\x1b\x29\ \x14\x1e\x2c\x13\x23\x2f\x18\x28\x37\x1b\x2a\x3c\x1e\x2d\x40\x1e\ \x2f\x42\x21\x33\x45\x22\x34\x45\x28\x3a\x51\x3a\x4d\x6c\x4e\x62\ \x86\x5f\x75\x99\x6e\x87\xae\x7c\x95\xbf\x86\x9f\xcb\x8c\xa5\xd1\ \x87\xa2\xce\x82\x9f\xcb\x78\x94\xc2\x70\x89\xb7\x5d\x77\xa5\x4d\ \x66\x90\x33\x4f\x72\x20\x37\x58\x19\x2c\x4f\x14\x27\x46\x0f\x24\ \x40\x0f\x22\x3c\x0f\x1e\x38\x0e\x1a\x33\x0c\x15\x2d\x08\x13\x27\ \x08\x13\x27\x09\x17\x2a\x0f\x1d\x34\x15\x25\x3e\x17\x28\x43\x1b\ \x2e\x49\x21\x37\x50\x27\x3c\x56\x2b\x40\x5b\x2f\x46\x5e\x31\x47\ \x5d\x40\x54\x67\x44\x57\x65\x45\x58\x68\x48\x5a\x6c\x47\x5c\x6f\ \x47\x5c\x6e\x49\x5d\x6e\x48\x5f\x6f\x4a\x61\x71\x4f\x65\x73\x52\ \x66\x74\x56\x6c\x7b\x5b\x71\x82\x5d\x73\x85\x5f\x77\x87\x60\x75\ \x85\x63\x78\x87\x63\x76\x87\x61\x75\x86\x60\x74\x85\x5f\x75\x85\ \x5e\x75\x85\x5b\x73\x84\x5b\x74\x86\x5a\x73\x86\x5a\x72\x84\x5b\ \x73\x85\x5c\x75\x85\x5d\x76\x86\x60\x77\x87\x62\x77\x87\x62\x77\ \x86\x61\x77\x83\x64\x78\x83\x63\x79\x84\x66\x7c\x87\x68\x7e\x89\ \x6d\x83\x8f\x70\x86\x92\x6e\x87\x91\x6f\x87\x92\x6e\x87\x92\x6e\ \x88\x92\x6c\x86\x91\x6d\x86\x92\x6d\x85\x91\x6b\x83\x8e\x00\x00\ \x00\x50\x92\xd3\x50\x92\xd3\x50\x92\xd3\x4f\x91\xd2\x51\x92\xd4\ \x51\x93\xd4\x51\x94\xd1\x51\x94\xd2\x51\x94\xd3\x51\x94\xd3\x52\ \x95\xd4\x52\x95\xd5\x53\x96\xd5\x53\x96\xd5\x53\x95\xd6\x53\x94\ \xd7\x53\x94\xd7\x51\x95\xd6\x50\x94\xd5\x4f\x93\xd4\x51\x93\xd4\ \x4d\x8e\xce\x4d\x8a\xcb\x4b\x89\xc9\x4b\x88\xc7\x4e\x8b\xc9\x4f\ \x8d\xca\x51\x90\xcc\x56\x93\xd0\x57\x94\xd1\x55\x92\xcf\x52\x8f\ \xd0\x4e\x8b\xca\x4c\x87\xc2\x47\x7d\xb9\x44\x74\xb0\x40\x70\xa6\ \x3b\x6b\xa0\x3b\x66\x9a\x3a\x62\x92\x35\x57\x85\x2a\x49\x72\x24\ \x40\x64\x1f\x34\x57\x16\x26\x3f\x0e\x1b\x2e\x0d\x15\x25\x0d\x14\ \x21\x0c\x14\x1f\x0e\x14\x20\x0f\x17\x21\x10\x18\x21\x10\x19\x23\ \x11\x19\x21\x12\x1c\x21\x16\x1f\x24\x16\x1f\x23\x19\x21\x24\x1c\ \x24\x27\x1d\x26\x28\x20\x29\x2c\x1f\x29\x2f\x21\x2b\x30\x1e\x27\ \x2a\x1b\x23\x27\x16\x1c\x21\x12\x16\x1d\x0f\x12\x1a\x0b\x0e\x18\ \x09\x0e\x18\x0b\x11\x1c\x0f\x16\x20\x10\x19\x24\x14\x1c\x28\x14\ \x1f\x2d\x17\x24\x32\x1a\x28\x38\x1c\x2c\x3c\x1e\x2e\x3e\x20\x2f\ \x3f\x20\x2e\x42\x27\x39\x4d\x36\x49\x62\x44\x58\x7a\x55\x6c\x90\ \x66\x7d\xa7\x73\x89\xb7\x7d\x95\xbf\x81\x9a\xc4\x7e\x98\xc2\x76\ \x93\xbf\x6f\x8c\xb8\x60\x7d\xa9\x55\x6e\x99\x46\x5e\x86\x31\x48\ \x6b\x20\x35\x55\x1a\x2f\x4f\x18\x2b\x4b\x16\x27\x45\x16\x26\x3f\ \x13\x21\x37\x11\x1d\x33\x0c\x17\x2b\x08\x15\x26\x06\x15\x27\x07\ \x14\x2a\x0c\x19\x33\x14\x22\x3d\x17\x2b\x46\x1d\x32\x4e\x23\x38\ \x53\x29\x3d\x59\x2b\x41\x5a\x2e\x45\x5a\x3d\x54\x69\x45\x59\x6e\ \x4a\x5b\x6e\x4a\x5c\x6d\x4a\x5d\x6e\x4a\x5f\x6e\x4a\x5f\x6e\x4d\ \x62\x71\x4d\x62\x71\x4f\x64\x74\x51\x66\x76\x55\x69\x7b\x59\x6c\ \x7f\x5e\x72\x84\x61\x75\x86\x62\x76\x87\x64\x78\x88\x62\x78\x87\ \x61\x78\x88\x62\x78\x88\x60\x74\x85\x5e\x74\x83\x5e\x75\x84\x5c\ \x73\x82\x5b\x75\x83\x5c\x76\x84\x5b\x74\x84\x5c\x74\x86\x5b\x73\ \x85\x5c\x76\x86\x5d\x74\x84\x5e\x73\x83\x5c\x71\x7f\x5b\x71\x7d\ \x59\x6f\x7c\x59\x6f\x7b\x5b\x71\x7d\x5b\x71\x7e\x5e\x73\x80\x5e\ \x73\x82\x5c\x73\x7f\x5b\x74\x7e\x5a\x73\x7d\x58\x71\x7d\x57\x70\ \x7d\x57\x6f\x7b\x55\x6e\x7a\x51\x6b\x79\x00\x00\x00\x4e\x90\xd1\ \x50\x92\xd3\x50\x92\xd3\x4f\x91\xd4\x51\x92\xd6\x50\x92\xd5\x52\ \x94\xd3\x51\x95\xd3\x52\x95\xd4\x52\x95\xd4\x52\x95\xd4\x53\x96\ \xd5\x51\x95\xd4\x50\x95\xd5\x50\x95\xd5\x50\x95\xd6\x51\x95\xd7\ \x50\x94\xd5\x4f\x94\xd5\x51\x94\xd5\x51\x93\xd4\x4d\x8e\xd0\x4e\ \x8a\xce\x4b\x88\xcb\x49\x86\xc8\x4b\x88\xc8\x4e\x8c\xca\x50\x8f\ \xcc\x53\x91\xce\x57\x94\xd3\x56\x93\xd3\x53\x90\xd0\x4e\x8b\xca\ \x4e\x88\xc5\x48\x7f\xbb\x42\x75\xb1\x41\x72\xaa\x3e\x6e\xa7\x3e\ \x6c\xa2\x3f\x68\x9b\x35\x5c\x8b\x2b\x4d\x79\x27\x46\x6d\x21\x37\ \x5e\x1b\x2b\x48\x13\x1f\x32\x0d\x15\x23\x0c\x13\x1e\x0e\x15\x1f\ \x0f\x16\x20\x10\x17\x20\x11\x18\x22\x12\x19\x22\x12\x1a\x20\x15\ \x1e\x21\x14\x1e\x26\x16\x21\x28\x15\x1f\x26\x17\x22\x26\x1b\x26\ \x2a\x1f\x28\x2b\x20\x29\x2d\x22\x2b\x2e\x1f\x27\x28\x1a\x23\x24\ \x16\x1e\x22\x10\x14\x1b\x10\x13\x1b\x0a\x0f\x18\x0a\x0f\x18\x0e\ \x13\x1b\x0f\x16\x1f\x10\x19\x23\x14\x1d\x27\x15\x20\x2d\x19\x24\ \x32\x19\x26\x36\x1e\x2c\x3c\x1e\x2e\x3d\x20\x31\x40\x22\x31\x44\ \x25\x36\x49\x30\x43\x5b\x3c\x50\x6f\x4e\x63\x83\x5a\x70\x98\x65\ \x7d\xa7\x6e\x87\xb1\x72\x8a\xb4\x6f\x8a\xb5\x68\x85\xb1\x5f\x7b\ \xa9\x56\x71\x9d\x4b\x64\x8d\x3c\x54\x79\x2b\x42\x63\x22\x36\x55\ \x1e\x32\x4e\x1c\x2c\x47\x1b\x2a\x42\x1b\x29\x3f\x15\x22\x35\x12\ \x1d\x30\x0f\x1b\x2d\x0a\x17\x28\x08\x15\x26\x06\x13\x29\x0c\x19\ \x31\x10\x1e\x39\x17\x2a\x45\x1d\x33\x4f\x23\x38\x53\x27\x3c\x58\ \x2a\x3f\x5b\x36\x4d\x64\x3f\x56\x6c\x46\x58\x6f\x4c\x5d\x6f\x4b\ \x5d\x6e\x4a\x5d\x6c\x4e\x61\x70\x4d\x61\x70\x4f\x64\x73\x50\x64\ \x73\x51\x65\x76\x55\x69\x7a\x55\x69\x7b\x57\x6b\x7d\x5a\x6e\x80\ \x5e\x72\x83\x5e\x72\x83\x5f\x74\x82\x5d\x73\x82\x5e\x75\x84\x5b\ \x72\x81\x5b\x70\x7f\x59\x6e\x7d\x59\x6f\x7e\x58\x6f\x7e\x56\x6d\ \x7c\x58\x6f\x7e\x57\x6e\x7d\x57\x6e\x7e\x59\x70\x80\x55\x6c\x7b\ \x53\x69\x78\x56\x6c\x7a\x55\x6b\x77\x51\x67\x73\x52\x67\x76\x51\ \x68\x75\x51\x69\x77\x51\x68\x77\x50\x67\x76\x4f\x66\x75\x4d\x65\ \x73\x4c\x64\x70\x4d\x65\x71\x49\x63\x70\x4c\x64\x73\x4d\x63\x72\ \x4b\x62\x71\x49\x60\x6f\x00\x00\x00\x4f\x91\xd2\x4f\x91\xd2\x4f\ \x91\xd3\x50\x92\xd5\x52\x94\xd7\x50\x93\xd4\x50\x93\xd3\x51\x94\ \xd2\x53\x96\xd5\x53\x96\xd5\x52\x95\xd4\x53\x96\xd5\x51\x95\xd5\ \x50\x94\xd4\x50\x94\xd5\x51\x95\xd6\x50\x94\xd5\x50\x94\xd6\x52\ \x94\xd5\x51\x93\xd4\x52\x94\xd5\x4e\x90\xd1\x4e\x8c\xd0\x4b\x88\ \xcb\x4a\x87\xc9\x4a\x87\xc8\x4c\x8a\xca\x4e\x8c\xcb\x52\x8f\xd0\ \x55\x92\xd2\x54\x91\xd2\x51\x8e\xcf\x4e\x8b\xcb\x4d\x88\xc5\x4c\ \x83\xc0\x46\x7a\xb6\x41\x74\xae\x3e\x70\xaa\x40\x70\xa7\x40\x6d\ \xa2\x37\x61\x94\x2d\x53\x82\x25\x47\x72\x23\x3c\x65\x1c\x2f\x4f\ \x12\x20\x34\x0c\x16\x24\x0b\x15\x20\x0d\x16\x1f\x0d\x16\x21\x0e\ \x18\x21\x0f\x18\x22\x0f\x1a\x22\x11\x1c\x23\x12\x1e\x22\x16\x21\ \x26\x18\x22\x26\x1a\x24\x27\x1b\x24\x27\x1f\x28\x2b\x20\x2b\x2e\ \x21\x2e\x30\x22\x2d\x2d\x1f\x27\x27\x1b\x23\x25\x16\x1e\x23\x12\ \x17\x1e\x0f\x13\x1a\x0b\x10\x19\x0a\x0f\x18\x0d\x13\x1c\x0f\x17\ \x20\x10\x1a\x24\x14\x1d\x27\x18\x21\x2e\x1b\x25\x34\x1c\x27\x38\ \x1f\x2c\x3c\x21\x2f\x3f\x20\x30\x41\x23\x32\x45\x26\x36\x47\x2c\ \x3e\x53\x37\x48\x64\x43\x56\x72\x4c\x61\x82\x56\x6e\x92\x5f\x76\ \x9c\x60\x7a\x9f\x5f\x7a\xa0\x5b\x75\x9f\x54\x6d\x98\x4b\x63\x8e\ \x40\x59\x7d\x35\x4d\x6e\x27\x3c\x59\x21\x36\x50\x1c\x2f\x48\x1e\ \x2d\x41\x1c\x2a\x3e\x1a\x27\x39\x16\x21\x33\x13\x1d\x2e\x11\x1c\ \x2d\x0b\x18\x28\x07\x14\x26\x08\x13\x27\x09\x16\x2d\x10\x1f\x38\ \x13\x26\x41\x1b\x30\x4c\x1e\x33\x50\x23\x38\x54\x2a\x40\x5b\x3b\ \x52\x69\x40\x55\x6b\x45\x57\x6e\x48\x5b\x6d\x49\x5a\x6c\x48\x5a\ \x6a\x47\x59\x67\x48\x5a\x68\x4b\x5f\x6e\x4c\x60\x6f\x4f\x62\x71\ \x50\x63\x74\x51\x64\x75\x50\x64\x76\x52\x66\x77\x54\x69\x79\x55\ \x6a\x7a\x58\x6c\x79\x57\x6d\x79\x55\x6b\x77\x55\x6b\x76\x56\x6b\ \x76\x53\x69\x75\x53\x69\x75\x52\x68\x74\x51\x67\x73\x52\x68\x74\ \x50\x67\x73\x4f\x66\x72\x4f\x66\x73\x4d\x63\x70\x4c\x63\x6f\x4a\ \x61\x6c\x49\x5f\x6a\x49\x60\x6b\x49\x5f\x6c\x48\x5f\x6c\x48\x5f\ \x6d\x47\x5e\x6d\x45\x5c\x6b\x45\x5c\x6b\x45\x5c\x6c\x44\x5a\x69\ \x45\x5c\x68\x45\x5b\x6a\x45\x5a\x69\x45\x59\x68\x44\x59\x68\x44\ \x59\x69\x00\x00\x00\x50\x92\xd3\x50\x92\xd3\x50\x92\xd2\x50\x91\ \xd2\x51\x93\xd3\x50\x92\xd2\x50\x92\xcf\x51\x94\xd2\x50\x93\xd3\ \x50\x93\xd2\x50\x93\xd2\x50\x93\xd2\x50\x93\xd4\x50\x93\xd4\x51\ \x95\xd6\x50\x93\xd4\x51\x94\xd5\x52\x94\xd5\x53\x95\xd6\x53\x95\ \xd6\x51\x92\xd3\x50\x90\xd1\x4c\x8c\xce\x4b\x8b\xcc\x4b\x89\xc9\ \x49\x87\xc6\x49\x89\xc6\x4d\x8b\xca\x50\x8d\xcd\x53\x90\xd0\x54\ \x91\xd1\x52\x8f\xcf\x4f\x8c\xcc\x4d\x87\xc7\x4e\x85\xc3\x47\x7c\ \xb8\x45\x76\xb0\x42\x73\xad\x43\x74\xac\x42\x72\xa7\x3b\x66\x99\ \x30\x59\x88\x26\x4a\x75\x25\x42\x6b\x20\x37\x57\x18\x2b\x40\x14\ \x23\x33\x16\x24\x33\x19\x26\x34\x1a\x27\x36\x1a\x29\x37\x19\x28\ \x36\x1b\x2a\x37\x1c\x2c\x36\x1e\x2e\x36\x20\x2f\x35\x23\x31\x37\ \x26\x32\x39\x27\x34\x3a\x2c\x38\x3f\x2f\x3d\x45\x30\x3f\x45\x2f\ \x3c\x3f\x28\x33\x36\x1f\x29\x2e\x19\x22\x26\x16\x1c\x22\x10\x16\ \x1d\x0d\x12\x1b\x0a\x11\x1a\x0f\x15\x20\x10\x1a\x25\x14\x1f\x2a\ \x15\x22\x2e\x1a\x26\x33\x1d\x29\x37\x1e\x2b\x3b\x21\x2f\x3f\x21\ \x31\x40\x23\x33\x44\x25\x33\x46\x26\x36\x47\x28\x39\x4c\x2e\x3f\ \x57\x35\x47\x5f\x3f\x53\x6c\x47\x5c\x78\x4d\x62\x7f\x50\x65\x83\ \x4f\x65\x86\x4b\x64\x87\x46\x60\x84\x40\x5a\x7d\x3a\x51\x72\x2f\ \x46\x62\x27\x3d\x55\x23\x38\x4d\x20\x32\x45\x20\x2e\x3f\x1e\x2d\ \x3d\x1c\x2a\x39\x19\x25\x35\x16\x21\x30\x13\x1d\x2d\x0f\x19\x2b\ \x0a\x16\x28\x09\x16\x28\x0a\x17\x2c\x0c\x1b\x33\x11\x24\x3f\x18\ \x2d\x49\x1e\x32\x4f\x1f\x35\x51\x2e\x46\x5d\x36\x4e\x63\x40\x55\ \x6a\x46\x58\x6d\x45\x58\x6a\x46\x59\x69\x49\x5b\x6a\x48\x5a\x65\ \x48\x5a\x65\x4a\x5d\x69\x4c\x5e\x6b\x4d\x5f\x6c\x4f\x61\x70\x4f\ \x61\x70\x4e\x61\x6f\x50\x62\x70\x54\x66\x74\x55\x68\x74\x56\x68\ \x73\x54\x67\x72\x56\x69\x73\x54\x67\x71\x55\x67\x71\x50\x65\x70\ \x4f\x65\x70\x51\x65\x70\x50\x64\x6f\x4f\x62\x6d\x4d\x60\x6b\x4c\ \x60\x6a\x4a\x5e\x68\x4a\x5e\x68\x49\x5b\x69\x47\x5a\x67\x47\x5c\ \x66\x48\x5c\x66\x47\x5b\x67\x45\x5a\x66\x45\x5a\x66\x45\x5a\x66\ \x44\x58\x66\x44\x58\x67\x44\x58\x68\x45\x5b\x67\x46\x59\x65\x46\ \x58\x64\x46\x58\x66\x45\x57\x63\x46\x59\x66\x43\x56\x64\x00\x00\ \x00\x4f\x91\xd2\x51\x93\xd3\x50\x92\xd2\x51\x90\xd0\x50\x90\xd0\ \x51\x92\xd0\x52\x93\xcf\x50\x93\xd0\x4f\x92\xd1\x50\x93\xd2\x50\ \x93\xd2\x51\x94\xd3\x51\x92\xd2\x51\x92\xd3\x52\x93\xd4\x50\x92\ \xd3\x53\x95\xd6\x51\x93\xd4\x52\x94\xd5\x52\x93\xd4\x54\x94\xd5\ \x52\x92\xd3\x4e\x8e\xcf\x4c\x8c\xcc\x4b\x8a\xc9\x49\x87\xc5\x49\ \x88\xc5\x4b\x8a\xc7\x4e\x8c\xca\x53\x90\xcf\x52\x8f\xcf\x52\x8f\ \xcf\x4e\x8b\xcb\x4c\x88\xc8\x4d\x86\xc4\x48\x7f\xbb\x47\x78\xb0\ \x44\x75\xad\x44\x75\xac\x43\x72\xa7\x3e\x6b\x9e\x37\x5f\x8f\x2e\ \x53\x7f\x32\x52\x7a\x34\x4e\x6e\x33\x4a\x60\x36\x4b\x5d\x3b\x4e\ \x5f\x40\x51\x62\x42\x55\x67\x42\x55\x66\x43\x56\x67\x44\x57\x67\ \x44\x58\x67\x47\x5c\x68\x49\x5c\x6a\x4a\x5d\x6b\x4a\x5c\x6a\x4e\ \x60\x6f\x52\x62\x71\x53\x63\x6e\x4c\x5c\x66\x46\x57\x5d\x43\x4e\ \x55\x30\x3b\x41\x25\x2e\x33\x1d\x24\x2a\x17\x1d\x24\x12\x18\x22\ \x11\x19\x25\x15\x1e\x2b\x19\x23\x30\x1c\x29\x37\x1e\x2d\x3d\x24\ \x31\x40\x26\x35\x44\x27\x35\x47\x26\x36\x47\x25\x35\x45\x29\x39\ \x4a\x2b\x39\x4c\x2d\x3d\x4e\x27\x39\x4a\x29\x3a\x4f\x2c\x3c\x4f\ \x2d\x3f\x52\x36\x46\x5c\x38\x4a\x5f\x39\x4a\x63\x3d\x51\x6b\x3d\ \x54\x70\x3a\x51\x70\x35\x4d\x6c\x35\x4c\x6b\x30\x45\x60\x2c\x42\ \x56\x29\x3d\x50\x27\x38\x4a\x26\x35\x45\x23\x33\x42\x23\x30\x40\ \x1e\x2b\x3b\x1a\x26\x35\x18\x22\x31\x12\x1c\x2d\x0d\x19\x2b\x0a\ \x16\x28\x09\x17\x2a\x0a\x1a\x32\x10\x23\x3f\x14\x29\x46\x1b\x2f\ \x4d\x1f\x35\x4f\x2b\x43\x5a\x35\x4d\x60\x3e\x54\x65\x44\x56\x69\ \x44\x58\x69\x45\x58\x68\x48\x58\x66\x49\x5a\x65\x49\x59\x64\x4b\ \x5e\x66\x4f\x61\x6c\x50\x62\x6d\x4f\x60\x6b\x4d\x5e\x6a\x4d\x5f\ \x6b\x4f\x61\x6c\x52\x64\x6f\x53\x65\x70\x53\x64\x70\x54\x64\x70\ \x55\x67\x70\x53\x64\x6d\x52\x64\x6c\x4f\x64\x6c\x4f\x63\x6b\x4f\ \x63\x6b\x4f\x63\x6b\x4e\x61\x69\x4d\x5f\x69\x4b\x5e\x66\x4c\x5f\ \x65\x49\x5c\x66\x49\x5b\x67\x47\x59\x65\x47\x5b\x64\x49\x5d\x65\ \x48\x5c\x63\x47\x5b\x64\x47\x5a\x64\x46\x59\x64\x47\x59\x64\x46\ \x58\x65\x44\x57\x64\x46\x58\x64\x45\x57\x62\x46\x57\x62\x46\x56\ \x62\x45\x58\x62\x46\x58\x63\x44\x57\x63\x00\x00\x00\x52\x93\xd1\ \x50\x93\xd2\x50\x91\xd1\x52\x90\xd1\x50\x91\xd0\x50\x90\xd0\x50\ \x91\xd0\x51\x91\xd0\x52\x92\xd1\x51\x93\xd0\x50\x93\xd0\x50\x93\ \xd0\x52\x91\xd2\x54\x92\xd4\x53\x92\xd2\x54\x94\xd4\x55\x95\xd5\ \x54\x94\xd4\x55\x95\xd5\x56\x96\xd6\x54\x94\xd4\x54\x94\xd5\x51\ \x90\xd0\x4f\x8d\xcd\x4e\x8c\xcc\x4c\x88\xc7\x4a\x88\xc8\x4b\x88\ \xc8\x52\x8c\xce\x54\x8e\xcf\x53\x8e\xcf\x55\x90\xd1\x51\x8c\xcd\ \x4f\x8b\xc9\x4d\x86\xc4\x48\x7f\xbb\x44\x79\xb2\x42\x75\xac\x45\ \x76\xaa\x45\x75\xa9\x42\x6f\xa3\x3e\x66\x96\x3a\x5e\x8b\x40\x65\ \x8a\x49\x68\x84\x4e\x67\x80\x56\x6c\x82\x5f\x76\x8a\x63\x7b\x8f\ \x64\x7e\x92\x67\x80\x92\x67\x80\x91\x6a\x83\x94\x6b\x83\x95\x6b\ \x83\x94\x6d\x83\x95\x6f\x85\x96\x71\x86\x97\x73\x89\x99\x74\x88\ \x99\x72\x84\x95\x6a\x7d\x8d\x63\x73\x81\x59\x68\x71\x48\x53\x5c\ \x37\x3f\x4a\x2e\x34\x3d\x2b\x34\x3f\x25\x31\x41\x27\x34\x48\x2e\ \x39\x51\x32\x3e\x56\x36\x42\x5c\x3a\x46\x61\x3c\x49\x62\x3c\x4c\ \x65\x3c\x4d\x66\x3b\x4c\x64\x3b\x4c\x65\x3a\x4c\x64\x36\x48\x61\ \x33\x44\x5b\x31\x40\x54\x2c\x3c\x4d\x2a\x39\x48\x24\x33\x40\x27\ \x35\x43\x27\x36\x47\x2c\x3c\x4e\x2f\x40\x55\x34\x47\x5e\x35\x4b\ \x63\x36\x4c\x67\x36\x4c\x68\x35\x4a\x64\x34\x48\x5b\x32\x43\x54\ \x31\x41\x51\x2e\x3e\x4b\x2b\x3b\x47\x2a\x38\x44\x27\x34\x42\x22\ \x2d\x3b\x1c\x28\x35\x19\x23\x32\x13\x1c\x2d\x0e\x19\x2b\x0c\x19\ \x2b\x0c\x19\x32\x10\x1e\x3b\x16\x26\x45\x1a\x2d\x47\x1e\x33\x4c\ \x2b\x41\x5b\x35\x4b\x62\x3d\x52\x64\x43\x56\x67\x45\x56\x67\x46\ \x56\x66\x48\x59\x64\x47\x58\x61\x49\x59\x61\x4d\x5f\x68\x51\x64\ \x6d\x4f\x60\x6c\x4e\x5c\x68\x4d\x5c\x68\x4c\x5c\x67\x4c\x5d\x66\ \x50\x60\x69\x53\x64\x6d\x50\x61\x69\x52\x63\x6b\x53\x63\x6c\x53\ \x63\x6c\x52\x61\x6a\x51\x63\x6a\x4e\x60\x67\x4f\x61\x68\x4c\x5e\ \x65\x4b\x5d\x64\x4b\x5e\x65\x4a\x5c\x64\x49\x5c\x63\x48\x59\x62\ \x47\x59\x61\x48\x5a\x61\x48\x5a\x61\x49\x5a\x61\x47\x59\x60\x47\ \x5a\x5f\x47\x5a\x5f\x48\x5a\x60\x47\x59\x60\x46\x57\x61\x45\x57\ \x62\x47\x59\x62\x47\x59\x61\x47\x58\x61\x46\x57\x60\x46\x58\x61\ \x45\x57\x60\x47\x58\x63\x00\x00\x00\x54\x94\xd1\x53\x94\xd2\x51\ \x92\xd0\x53\x91\xd0\x52\x91\xd0\x51\x91\xd1\x50\x90\xd0\x52\x90\ \xd1\x52\x91\xd1\x52\x93\xd0\x50\x92\xce\x51\x93\xce\x53\x92\xd1\ \x56\x94\xd4\x55\x92\xd2\x55\x94\xd3\x56\x96\xd4\x56\x95\xd4\x57\ \x96\xd5\x58\x98\xd6\x56\x96\xd4\x56\x95\xd5\x53\x93\xd3\x50\x90\ \xcf\x4e\x8d\xcb\x4c\x8a\xc7\x4c\x89\xc8\x4d\x89\xc9\x52\x8c\xcc\ \x55\x8f\xcf\x54\x90\xcf\x55\x8f\xd0\x51\x8d\xcd\x4f\x8b\xc8\x4d\ \x89\xc5\x49\x81\xbd\x45\x7a\xb4\x41\x75\xad\x43\x76\xab\x46\x76\ \xaa\x42\x71\xa4\x41\x6a\x9a\x47\x6a\x96\x51\x75\x99\x5c\x7c\x98\ \x69\x82\x9b\x71\x8a\xa2\x7d\x95\xab\x84\x9c\xb1\x84\x9f\xb5\x85\ \xa0\xb5\x87\xa1\xb6\x8a\xa4\xb8\x8a\xa3\xb8\x8c\xa5\xba\x8c\xa4\ \xb9\x8b\xa4\xb8\x8e\xa6\xb9\x91\xa8\xbb\x90\xa6\xb9\x8c\xa0\xb2\ \x85\x99\xaa\x7c\x8e\x9e\x6e\x7e\x8c\x5e\x6b\x7a\x4b\x55\x65\x3f\ \x47\x58\x40\x4a\x5d\x43\x4e\x67\x41\x4e\x6c\x46\x53\x74\x4c\x58\ \x7c\x4f\x5c\x81\x50\x5d\x83\x51\x5f\x84\x53\x64\x87\x50\x62\x83\ \x50\x61\x82\x50\x61\x80\x4c\x5e\x7d\x44\x55\x75\x40\x52\x6e\x3a\ \x4a\x61\x33\x42\x57\x2d\x3b\x4e\x28\x37\x46\x27\x37\x45\x29\x38\ \x49\x2b\x3b\x4d\x30\x41\x54\x33\x46\x5b\x36\x4a\x61\x39\x4e\x67\ \x3b\x50\x68\x3b\x51\x65\x39\x4d\x5b\x37\x49\x55\x37\x47\x53\x34\ \x43\x50\x34\x42\x4d\x31\x3e\x49\x2d\x39\x46\x29\x34\x42\x21\x2c\ \x3a\x1d\x27\x37\x16\x21\x33\x12\x1d\x30\x0e\x1b\x2e\x0d\x1b\x32\ \x0f\x1d\x39\x14\x25\x42\x1b\x2d\x48\x1e\x33\x49\x2b\x41\x58\x34\ \x49\x5f\x3b\x4e\x62\x42\x54\x66\x46\x57\x66\x45\x56\x64\x48\x58\ \x64\x48\x59\x62\x4c\x5d\x64\x4d\x60\x66\x53\x65\x6c\x4d\x5f\x67\ \x48\x58\x60\x4a\x5a\x63\x4b\x5b\x64\x4b\x5c\x64\x4f\x60\x68\x50\ \x62\x69\x50\x61\x68\x52\x62\x69\x52\x62\x69\x52\x61\x6a\x53\x61\ \x6a\x51\x63\x68\x4f\x60\x66\x4f\x61\x66\x4d\x5f\x64\x4e\x5f\x63\ \x4e\x5d\x62\x4c\x5c\x61\x4d\x5c\x61\x4a\x59\x5f\x4a\x5a\x60\x4a\ \x5c\x61\x48\x5a\x60\x48\x59\x60\x48\x59\x60\x49\x59\x5e\x48\x57\ \x5d\x48\x58\x5e\x49\x58\x5e\x4a\x59\x60\x47\x57\x60\x47\x57\x5f\ \x47\x58\x5f\x48\x58\x5f\x49\x58\x61\x4a\x58\x61\x48\x56\x5f\x4c\ \x5a\x63\x00\x00\x00\x58\x96\xd2\x57\x96\xd2\x56\x95\xd1\x54\x93\ \xcf\x53\x92\xcf\x53\x92\xd0\x50\x90\xd0\x52\x90\xd0\x53\x91\xd1\ \x53\x93\xd0\x55\x94\xcf\x52\x94\xce\x55\x94\xd2\x55\x94\xd2\x56\ \x95\xd2\x57\x96\xd3\x57\x96\xd3\x59\x97\xd4\x59\x98\xd5\x5a\x99\ \xd6\x5a\x99\xd6\x57\x97\xd4\x56\x96\xd3\x54\x93\xd0\x50\x8f\xcc\ \x4d\x8c\xc9\x4e\x8c\xc9\x4e\x89\xc7\x52\x8c\xca\x54\x8f\xcc\x54\ \x90\xce\x54\x91\xcf\x51\x8e\xcc\x4f\x8c\xc9\x4e\x8a\xc6\x4a\x83\ \xc0\x44\x7a\xb4\x41\x75\xae\x43\x74\xab\x44\x74\xa9\x41\x71\xa3\ \x46\x6f\x9e\x52\x75\x9f\x5e\x82\xa3\x6f\x8d\xa8\x7c\x97\xb1\x87\ \xa1\xbb\x94\xad\xc3\x9b\xb4\xca\x9b\xb5\xcc\x9d\xb8\xce\x9e\xb9\ \xce\x9f\xba\xcf\xa0\xba\xd0\xa2\xba\xd0\xa1\xb9\xcf\xa3\xbb\xd1\ \xa3\xbb\xd0\xa4\xbd\xd1\xa3\xbb\xcf\x9e\xb4\xc9\x99\xad\xc1\x90\ \xa4\xb5\x80\x91\xa4\x6e\x7e\x91\x5f\x6c\x81\x53\x5c\x75\x51\x5b\ \x77\x57\x64\x85\x58\x67\x8c\x5c\x6b\x92\x60\x71\x98\x63\x74\x9e\ \x66\x76\xa0\x67\x77\xa4\x64\x74\xa1\x67\x79\xa3\x64\x76\x9f\x63\ \x73\x9c\x5b\x6c\x94\x52\x64\x8b\x4b\x5d\x80\x42\x53\x71\x39\x48\ \x64\x32\x40\x58\x29\x38\x4a\x28\x37\x48\x2d\x3c\x4d\x2f\x3f\x50\ \x33\x43\x54\x37\x48\x5c\x3c\x4f\x65\x3d\x52\x68\x40\x55\x6d\x44\ \x57\x6a\x40\x52\x62\x41\x51\x5e\x3f\x4e\x5a\x3f\x4e\x57\x3e\x4d\ \x55\x3b\x47\x51\x35\x41\x4c\x31\x3d\x4a\x2c\x37\x44\x23\x30\x3f\ \x1b\x29\x39\x15\x20\x33\x13\x20\x33\x0e\x1c\x32\x10\x1f\x39\x14\ \x26\x41\x1b\x2e\x49\x21\x35\x4d\x2a\x3f\x55\x32\x47\x5d\x38\x4b\ \x5f\x3f\x51\x63\x46\x58\x67\x49\x5a\x67\x4b\x5c\x67\x4d\x5e\x66\ \x4f\x60\x67\x53\x65\x6b\x54\x67\x6c\x4b\x5b\x61\x4a\x5a\x60\x4c\ \x5c\x63\x4e\x5e\x65\x4f\x5f\x66\x51\x61\x66\x51\x61\x67\x53\x63\ \x69\x52\x62\x67\x52\x61\x67\x55\x62\x69\x54\x62\x69\x56\x64\x6a\ \x54\x62\x68\x51\x5f\x65\x53\x61\x66\x51\x60\x64\x51\x60\x63\x4f\ \x5e\x61\x50\x5f\x62\x4f\x5e\x61\x4e\x5d\x60\x4e\x5d\x60\x4d\x5c\ \x61\x4d\x5b\x62\x4e\x5b\x63\x4f\x5b\x61\x51\x5c\x60\x4d\x59\x5e\ \x4f\x5b\x61\x4f\x5b\x61\x4c\x59\x61\x4b\x59\x5f\x4d\x5b\x61\x4d\ \x5a\x61\x4d\x5a\x62\x4d\x5a\x62\x4d\x5a\x62\x4c\x59\x60\x00\x00\ \x00\x5b\x9a\xd4\x58\x97\xd2\x57\x96\xd1\x55\x94\xcf\x53\x92\xce\ \x52\x91\xce\x53\x92\xd0\x53\x91\xd0\x54\x91\xcf\x55\x92\xd0\x54\ \x93\xcf\x55\x94\xd0\x55\x94\xd1\x57\x96\xd3\x56\x95\xd2\x59\x97\ \xd3\x59\x96\xd2\x5b\x99\xd5\x5c\x9a\xd6\x5c\x9a\xd6\x5c\x9a\xd6\ \x5b\x99\xd5\x5a\x97\xd5\x57\x95\xd1\x52\x91\xcd\x50\x8e\xca\x4f\ \x8c\xc8\x51\x8a\xc7\x53\x8c\xc9\x54\x8f\xcb\x54\x91\xcd\x52\x90\ \xcd\x52\x8f\xcc\x4f\x8d\xc9\x4e\x8a\xc6\x4b\x84\xc1\x43\x79\xb6\ \x40\x74\xaf\x42\x74\xad\x43\x74\xa8\x44\x75\xa6\x4c\x76\xa4\x5d\ \x81\xa8\x6d\x90\xaf\x7f\x9f\xba\x8d\xa9\xc2\x9a\xb4\xcb\xa4\xbc\ \xd3\xad\xc5\xdb\xaf\xc7\xde\xaf\xc9\xde\xb0\xcb\xdf\xb0\xca\xde\ \xb1\xca\xde\xb2\xcb\xdf\xb3\xcb\xe1\xb3\xcb\xe1\xb4\xcd\xe1\xb4\ \xcd\xe1\xb3\xcb\xdf\xac\xc5\xd9\xa6\xbd\xcf\x9c\xb2\xc4\x90\xa4\ \xb9\x7e\x93\xa8\x71\x82\x9a\x64\x70\x8d\x63\x6f\x92\x68\x78\x9e\ \x6a\x7a\xa5\x70\x80\xac\x75\x87\xb3\x79\x89\xb7\x79\x89\xb7\x7a\ \x8a\xb9\x79\x8a\xb9\x77\x89\xb8\x75\x85\xb3\x74\x83\xb1\x6a\x7a\ \xa7\x5f\x70\x9b\x55\x67\x8e\x48\x5a\x7d\x3e\x4f\x6e\x36\x45\x5f\ \x2e\x3c\x51\x2d\x3c\x4c\x2e\x3d\x4d\x33\x42\x53\x37\x48\x59\x3e\ \x50\x62\x43\x55\x68\x45\x59\x6b\x4a\x5c\x70\x4c\x5f\x6f\x4c\x5d\ \x6a\x4b\x5b\x65\x4a\x59\x63\x4b\x5b\x61\x49\x59\x5f\x43\x53\x5a\ \x3f\x4e\x56\x39\x48\x52\x32\x40\x4b\x2a\x38\x45\x22\x2f\x3e\x1c\ \x2a\x3a\x18\x27\x38\x17\x25\x39\x12\x22\x39\x14\x26\x40\x19\x2c\ \x48\x21\x33\x4d\x27\x3b\x54\x31\x44\x5c\x39\x4c\x5e\x40\x51\x62\ \x47\x59\x67\x4a\x5b\x68\x4d\x5e\x67\x4e\x60\x67\x53\x65\x6c\x55\ \x67\x6e\x4f\x5f\x66\x4f\x5e\x65\x4e\x5f\x64\x51\x60\x66\x54\x62\ \x68\x56\x64\x6a\x56\x65\x68\x58\x67\x6a\x58\x67\x6a\x57\x66\x69\ \x58\x67\x6a\x5a\x67\x6c\x5c\x68\x6e\x5b\x67\x6b\x59\x65\x69\x59\ \x66\x6a\x58\x65\x69\x59\x66\x6a\x55\x64\x67\x53\x62\x65\x54\x62\ \x65\x53\x61\x63\x53\x61\x63\x54\x61\x64\x53\x60\x63\x55\x62\x67\ \x52\x5e\x65\x53\x5f\x63\x54\x60\x64\x54\x60\x64\x52\x5e\x62\x52\ \x5e\x62\x52\x5d\x62\x51\x5d\x61\x52\x5e\x62\x52\x5e\x64\x52\x5d\ \x65\x50\x5e\x62\x51\x5f\x65\x51\x5f\x65\x00\x00\x00\x60\x9b\xd5\ \x5c\x99\xd2\x59\x98\xd1\x58\x97\xd2\x56\x95\xd1\x55\x94\xd1\x53\ \x93\xd0\x55\x93\xd0\x55\x93\xcf\x57\x95\xd1\x56\x94\xd1\x57\x97\ \xd2\x57\x96\xd2\x59\x98\xd4\x59\x97\xd3\x5a\x98\xd4\x5c\x9a\xd6\ \x5e\x9c\xd6\x5f\x9c\xd7\x5f\x9e\xd8\x5e\x9d\xd7\x5e\x9c\xd6\x5e\ \x9a\xd6\x5b\x96\xd2\x56\x92\xcd\x54\x90\xcb\x50\x8d\xc8\x52\x8c\ \xc9\x53\x8c\xc9\x54\x8e\xcb\x52\x8f\xcc\x51\x8e\xcc\x50\x8e\xcb\ \x4e\x8b\xc8\x4e\x89\xc6\x4c\x85\xc2\x44\x7b\xb7\x40\x75\xaf\x41\ \x73\xab\x44\x74\xa9\x46\x75\xa6\x50\x79\xa6\x64\x88\xb0\x77\x9a\ \xb9\x8b\xaa\xc5\x9b\xb7\xd0\xa9\xc2\xd8\xb3\xcc\xe0\xbb\xd3\xe7\ \xbd\xd5\xea\xbc\xd5\xea\xbe\xd6\xea\xbd\xd6\xea\xbf\xd7\xeb\xbf\ \xd7\xec\xbf\xd8\xed\xbf\xd8\xec\xc0\xd8\xec\xbf\xd7\xeb\xbd\xd6\ \xe9\xb9\xd1\xe6\xb2\xc9\xdd\xa6\xbd\xd1\x99\xb0\xc3\x8a\xa1\xb5\ \x7d\x91\xaa\x71\x81\xa2\x71\x7f\xa6\x76\x86\xb1\x7c\x8d\xbb\x81\ \x92\xc1\x85\x95\xc5\x89\x99\xc9\x8a\x9a\xca\x8b\x9c\xcb\x8a\x9c\ \xcb\x88\x99\xc9\x86\x95\xc6\x80\x8f\xc1\x75\x86\xb5\x69\x7a\xa8\ \x5f\x70\x9b\x52\x62\x88\x45\x55\x77\x3b\x49\x66\x2f\x3f\x54\x2e\ \x3e\x4e\x30\x3f\x50\x36\x46\x57\x3d\x4e\x60\x44\x56\x68\x4c\x5f\ \x70\x51\x63\x74\x54\x68\x74\x56\x68\x73\x56\x69\x6f\x56\x67\x6d\ \x58\x67\x6d\x57\x67\x6d\x53\x65\x6b\x4e\x61\x67\x48\x5a\x62\x45\ \x55\x5f\x3c\x4b\x55\x35\x43\x4e\x2c\x3a\x47\x26\x33\x44\x1f\x2d\ \x3f\x1a\x27\x3e\x17\x26\x40\x16\x28\x44\x1c\x2d\x4b\x23\x35\x50\ \x2b\x3e\x57\x36\x49\x5f\x3d\x51\x62\x44\x55\x64\x47\x58\x67\x4a\ \x5b\x68\x50\x60\x6a\x54\x64\x6c\x56\x66\x6e\x52\x63\x6a\x54\x63\ \x6a\x56\x64\x6b\x53\x63\x69\x55\x65\x6a\x58\x67\x6b\x59\x68\x6b\ \x5a\x68\x6b\x5c\x6a\x6d\x5c\x6b\x6d\x5c\x6b\x6d\x5e\x6d\x6f\x5f\ \x6c\x6f\x5f\x6c\x6f\x60\x6c\x70\x5e\x6a\x6e\x5d\x69\x6d\x5c\x69\ \x6d\x59\x67\x6b\x59\x66\x6b\x55\x64\x67\x56\x65\x68\x55\x65\x67\ \x55\x64\x67\x57\x65\x68\x56\x62\x67\x57\x63\x68\x55\x62\x67\x55\ \x61\x66\x55\x61\x66\x56\x62\x66\x55\x61\x65\x55\x61\x65\x56\x62\ \x65\x54\x60\x63\x54\x5f\x63\x54\x60\x64\x54\x60\x65\x52\x61\x64\ \x51\x61\x64\x52\x61\x65\x00\x00\x00\x62\x9e\xd4\x60\x9b\xd3\x5b\ \x9a\xd2\x5b\x9a\xd6\x57\x96\xd2\x56\x95\xd2\x54\x95\xd2\x57\x96\ \xd3\x57\x95\xd1\x58\x96\xd1\x58\x98\xd2\x56\x96\xd0\x58\x97\xd3\ \x5b\x99\xd5\x5c\x9a\xd6\x5b\x99\xd4\x5e\x9b\xd7\x5f\x9b\xd5\x61\ \x9d\xd8\x60\x9c\xd7\x60\x9f\xd8\x5f\x9d\xd7\x5f\x9b\xd6\x5d\x99\ \xd4\x59\x95\xd0\x57\x92\xcd\x53\x8e\xc9\x52\x8c\xc9\x54\x8d\xcb\ \x54\x8d\xca\x52\x8e\xcc\x50\x8d\xcb\x50\x8d\xcb\x4f\x8a\xc8\x4d\ \x88\xc5\x4c\x85\xc2\x45\x7b\xb8\x3f\x74\xae\x42\x74\xaa\x44\x74\ \xa8\x49\x77\xa9\x50\x7a\xa6\x67\x8d\xb4\x7d\x9f\xbe\x95\xb3\xce\ \xa6\xc1\xd8\xb1\xcc\xe1\xbb\xd4\xe8\xc1\xd9\xed\xc4\xdc\xf1\xc4\ \xdc\xf1\xc5\xde\xf2\xc5\xdd\xf1\xc5\xde\xf2\xc6\xdd\xf3\xc5\xdd\ \xf3\xc5\xde\xf2\xc5\xde\xf2\xc4\xdd\xf1\xc3\xdc\xef\xc0\xd8\xec\ \xb8\xcf\xe4\xad\xc4\xd9\xa0\xb7\xca\x94\xaa\xbe\x88\x9b\xb6\x7c\ \x8d\xb0\x7d\x8d\xb8\x81\x94\xc1\x8a\x9b\xcb\x8e\xa0\xcf\x92\xa4\ \xd3\x96\xa7\xd8\x96\xa7\xd8\x96\xa8\xd7\x97\xa8\xd8\x95\xa6\xd8\ \x94\xa2\xd7\x8c\x9a\xcf\x7e\x90\xc3\x74\x85\xb7\x64\x77\xa4\x56\ \x67\x8f\x49\x58\x7c\x3a\x4a\x67\x30\x42\x57\x2f\x41\x52\x34\x44\ \x55\x39\x4a\x5c\x41\x53\x64\x49\x5b\x6c\x52\x64\x73\x57\x6a\x77\ \x5b\x6e\x79\x5b\x6e\x76\x5b\x6e\x74\x5b\x6c\x72\x5d\x6c\x72\x5c\ \x6c\x72\x5b\x6b\x72\x58\x69\x70\x54\x66\x6d\x4d\x5e\x66\x42\x53\ \x5e\x3b\x4c\x55\x2f\x40\x4b\x2d\x39\x4b\x25\x33\x47\x1e\x2e\x47\ \x1b\x2a\x47\x1b\x2a\x4a\x1f\x30\x4d\x28\x3a\x55\x2f\x40\x58\x36\ \x48\x5c\x3e\x50\x60\x41\x54\x62\x47\x58\x64\x48\x59\x64\x4d\x5d\ \x67\x53\x63\x6b\x51\x61\x68\x52\x62\x69\x54\x64\x6b\x56\x67\x6e\ \x59\x67\x6f\x5a\x68\x6f\x5c\x6a\x70\x5c\x6b\x6f\x5e\x6b\x6e\x5f\ \x6d\x6f\x61\x6f\x71\x5e\x6d\x6f\x60\x6f\x71\x61\x6f\x71\x62\x6f\ \x71\x60\x6c\x70\x60\x6b\x6f\x60\x6b\x6f\x5c\x6a\x6d\x5c\x6b\x6e\ \x5b\x6a\x6d\x5a\x69\x6c\x59\x68\x6b\x58\x66\x69\x57\x66\x69\x59\ \x66\x6a\x58\x64\x69\x59\x65\x6b\x56\x64\x6a\x56\x63\x69\x56\x63\ \x67\x56\x63\x67\x58\x64\x68\x55\x62\x65\x55\x63\x65\x56\x62\x65\ \x55\x61\x65\x57\x63\x67\x56\x63\x67\x55\x64\x67\x54\x63\x66\x52\ \x62\x67\x00\x00\x00\x64\x9f\xd6\x61\x9d\xd3\x5f\x9d\xd4\x5c\x9b\ \xd5\x59\x98\xd2\x57\x96\xd2\x58\x97\xd3\x58\x97\xd2\x58\x97\xd2\ \x58\x97\xd1\x5a\x99\xd3\x59\x98\xd2\x5a\x99\xd3\x5b\x9a\xd4\x5c\ \x99\xd4\x5e\x9a\xd5\x5f\x9b\xd6\x62\x9d\xd5\x63\x9e\xd6\x62\x9e\ \xd6\x62\x9e\xd7\x62\x9f\xd7\x60\x9d\xd5\x5e\x9a\xd5\x5c\x96\xd1\ \x5c\x96\xd1\x55\x8f\xca\x53\x8d\xc8\x55\x8d\xca\x54\x8d\xca\x53\ \x8e\xcb\x51\x8d\xcb\x51\x8d\xcb\x50\x8b\xc9\x4d\x87\xc4\x4c\x85\ \xc2\x45\x7b\xb7\x40\x74\xaf\x41\x71\xaa\x43\x73\xa8\x46\x76\xa8\ \x4d\x79\xa6\x64\x8c\xb2\x7f\xa1\xc1\x99\xb5\xcf\xa8\xc2\xda\xb0\ \xcb\xe2\xb9\xd2\xe7\xbf\xd8\xec\xc3\xdb\xef\xc3\xdc\xed\xc2\xdc\ \xed\xc4\xdc\xf0\xc5\xdd\xf1\xc5\xdd\xf1\xc6\xde\xf2\xc6\xde\xf2\ \xc5\xdd\xf1\xc5\xdd\xf1\xc3\xdb\xef\xbf\xd9\xea\xb7\xd0\xe2\xab\ \xc3\xd8\xa1\xb8\xcd\x98\xad\xc5\x8f\xa1\xbd\x85\x95\xb9\x82\x92\ \xbd\x87\x99\xc7\x90\xa2\xd1\x93\xa5\xd4\x96\xa8\xd8\x97\xa8\xd9\ \x9a\xab\xdc\x99\xad\xdc\x99\xaa\xdb\x9a\xab\xdd\x99\xa9\xdc\x8f\ \x9f\xd5\x83\x95\xcc\x77\x8a\xbe\x69\x7b\xab\x59\x6b\x95\x4a\x5b\ \x80\x39\x4b\x67\x2f\x43\x59\x30\x44\x55\x34\x47\x59\x3e\x51\x63\ \x46\x58\x6a\x4d\x60\x70\x54\x67\x76\x59\x6c\x79\x5f\x70\x7c\x5e\ \x6f\x79\x5f\x70\x77\x5f\x6e\x74\x5f\x6d\x74\x5f\x6f\x75\x5f\x6f\ \x76\x5e\x6e\x75\x57\x69\x70\x4f\x60\x69\x48\x58\x64\x3f\x4f\x5b\ \x39\x49\x57\x33\x42\x54\x2c\x3c\x54\x26\x38\x54\x23\x34\x55\x22\ \x32\x52\x26\x35\x52\x2d\x3f\x5a\x31\x45\x5e\x37\x4b\x60\x3b\x4e\ \x5f\x41\x53\x63\x49\x59\x65\x4a\x5a\x66\x4b\x5b\x65\x51\x60\x67\ \x54\x64\x6b\x56\x65\x6c\x57\x68\x6f\x59\x6a\x72\x5c\x6f\x77\x5e\ \x6e\x77\x61\x71\x78\x5f\x6f\x75\x62\x70\x76\x65\x73\x78\x66\x75\ \x78\x67\x74\x78\x67\x73\x77\x67\x73\x77\x69\x75\x79\x67\x73\x77\ \x65\x71\x75\x64\x70\x75\x63\x70\x76\x61\x71\x75\x5f\x70\x73\x5d\ \x6d\x70\x5e\x6d\x70\x5e\x6b\x6f\x5c\x6c\x6f\x5b\x6b\x71\x5a\x69\ \x6f\x59\x69\x6f\x59\x69\x6f\x5b\x6a\x71\x59\x67\x6c\x58\x67\x6a\ \x5a\x69\x6c\x59\x67\x6c\x56\x67\x6a\x56\x67\x6a\x56\x67\x6b\x56\ \x66\x6c\x55\x65\x6a\x58\x69\x6c\x56\x66\x6c\x57\x67\x6d\x00\x00\ \x00\x64\x9f\xd3\x63\x9f\xd4\x60\x9e\xd3\x5d\x9c\xd2\x5b\x9b\xd2\ \x59\x98\xd2\x59\x98\xd3\x59\x98\xd2\x58\x97\xd0\x57\x96\xd0\x59\ \x97\xd1\x5a\x97\xd2\x5c\x98\xd3\x5d\x98\xd4\x5d\x9a\xd2\x5f\x9b\ \xd3\x61\x9d\xd4\x63\x9d\xd3\x62\x9e\xd4\x63\x9f\xd5\x62\x9f\xd4\ \x61\x9f\xd4\x60\x9e\xd5\x5f\x9b\xd2\x5d\x98\xd0\x59\x93\xce\x56\ \x90\xca\x55\x8e\xc8\x56\x8e\xc8\x54\x8d\xc8\x53\x8f\xca\x51\x8d\ \xcb\x4f\x8a\xc8\x51\x8b\xc9\x4e\x87\xc4\x4c\x85\xc2\x44\x7a\xb7\ \x3f\x73\xaf\x3e\x70\xa8\x40\x70\xa5\x46\x74\xa7\x4a\x76\xa4\x62\ \x8a\xb3\x7c\x9f\xc0\x93\xaf\xca\xa3\xbc\xd6\xab\xc5\xdd\xb2\xcd\ \xe1\xb8\xd1\xe5\xbd\xd5\xea\xbd\xd7\xe9\xbc\xd6\xe7\xbd\xd5\xe7\ \xbe\xd6\xea\xbe\xd6\xea\xc0\xd8\xea\xbe\xd6\xe8\xbf\xd7\xea\xbf\ \xd7\xeb\xbe\xd7\xea\xb8\xd2\xe3\xaf\xc9\xda\xa4\xbc\xd1\x9b\xb1\ \xc8\x92\xa8\xc1\x88\x9c\xb9\x7f\x91\xb6\x7f\x8f\xba\x85\x99\xc6\ \x8b\x9e\xce\x90\xa3\xd2\x91\xa4\xd3\x93\xa6\xd6\x93\xa6\xd6\x94\ \xa7\xd8\x94\xa8\xd8\x93\xa7\xd8\x8f\xa3\xd6\x88\x9c\xd0\x7e\x91\ \xc6\x72\x85\xb8\x66\x78\xa7\x55\x67\x90\x47\x59\x7b\x35\x48\x63\ \x2e\x44\x59\x34\x4a\x5b\x36\x4d\x5e\x3e\x54\x65\x4a\x5f\x6f\x50\ \x66\x73\x58\x6c\x79\x5b\x6e\x7b\x61\x72\x7f\x63\x74\x7e\x63\x74\ \x7b\x63\x74\x7b\x64\x75\x7c\x64\x75\x7b\x65\x77\x7e\x61\x74\x7b\ \x5e\x70\x77\x55\x67\x6f\x4d\x60\x6a\x45\x57\x63\x41\x53\x63\x37\ \x49\x5d\x2e\x42\x5a\x29\x3e\x5c\x29\x3c\x5c\x26\x39\x58\x2b\x3e\ \x5a\x2f\x44\x61\x36\x4b\x65\x37\x4c\x62\x3f\x53\x65\x44\x58\x68\ \x4d\x5d\x69\x50\x61\x6d\x50\x61\x6d\x51\x64\x6b\x56\x69\x6f\x58\ \x6b\x72\x5c\x6e\x76\x5e\x71\x79\x62\x75\x7e\x64\x75\x7f\x66\x75\ \x7f\x67\x77\x7e\x67\x77\x7d\x6a\x79\x7f\x6a\x79\x7e\x6b\x7a\x7e\ \x6b\x7a\x7f\x6b\x7a\x7f\x68\x78\x7c\x69\x79\x7c\x69\x77\x7d\x69\ \x76\x7c\x65\x76\x7d\x62\x73\x7a\x60\x73\x76\x61\x74\x77\x62\x72\ \x76\x60\x70\x74\x5f\x6f\x74\x5d\x6f\x74\x5e\x6f\x74\x5d\x6e\x74\ \x5d\x6d\x75\x5b\x6c\x73\x5b\x6c\x72\x5a\x6c\x6f\x5a\x6c\x70\x5b\ \x6d\x72\x59\x6a\x70\x5b\x6c\x72\x58\x6a\x6f\x5b\x6c\x73\x59\x6a\ \x70\x5a\x6b\x71\x58\x69\x6f\x57\x6a\x70\x00\x00\x00\x65\xa1\xd5\ \x64\xa0\xd4\x60\x9f\xd2\x5e\x9d\xd1\x5d\x9a\xd1\x5a\x98\xd0\x59\ \x97\xd2\x58\x97\xcf\x57\x98\xce\x59\x97\xd0\x5b\x96\xd2\x5a\x96\ \xd1\x5a\x96\xd1\x5c\x99\xd1\x5f\x9a\xd2\x5f\x9b\xd1\x60\x9b\xd1\ \x62\x9b\xd2\x63\x9c\xd3\x64\x9f\xd5\x61\x9d\xd3\x62\x9e\xd3\x61\ \x9d\xd2\x60\x9c\xd2\x5c\x98\xcf\x5b\x94\xcd\x59\x92\xcb\x56\x8f\ \xc7\x55\x8e\xc6\x54\x8f\xc6\x54\x8f\xc9\x53\x8e\xca\x51\x8c\xca\ \x52\x8c\xca\x4f\x87\xc5\x4d\x84\xc1\x45\x7b\xb8\x3f\x73\xaf\x3e\ \x70\xa8\x3e\x6d\xa3\x44\x72\xa6\x48\x75\xa4\x5e\x85\xb1\x77\x98\ \xbd\x8c\xa8\xc7\x9a\xb5\xcf\xa4\xbd\xd7\xaa\xc5\xda\xaf\xc8\xdc\ \xb3\xcc\xe0\xb4\xcd\xdf\xb3\xcd\xde\xb4\xcc\xde\xb4\xcc\xdf\xb5\ \xce\xe1\xb4\xce\xdf\xb5\xcf\xe0\xb5\xcf\xe1\xb6\xcf\xe2\xb4\xcd\ \xe1\xae\xc7\xdc\xa6\xc0\xd1\x99\xb3\xc4\x91\xa8\xbe\x89\x9e\xb8\ \x7e\x93\xb1\x76\x88\xad\x77\x87\xb2\x7e\x91\xbf\x83\x97\xc6\x85\ \x99\xc8\x85\x99\xc9\x88\x9c\xcc\x89\x9d\xcd\x8a\x9e\xce\x8d\xa1\ \xd1\x8b\x9f\xd2\x85\x9a\xce\x7f\x94\xc6\x7b\x8c\xbd\x6e\x7f\xaf\ \x60\x72\x9d\x51\x63\x89\x42\x53\x73\x34\x47\x62\x34\x48\x5e\x36\ \x4c\x5e\x3a\x52\x62\x43\x5a\x6a\x4b\x62\x71\x53\x69\x75\x5a\x6f\ \x7b\x60\x73\x80\x67\x78\x85\x67\x79\x84\x67\x7a\x81\x68\x7a\x81\ \x69\x7b\x82\x67\x7b\x80\x68\x7c\x83\x67\x7b\x81\x61\x77\x7d\x58\ \x6e\x74\x53\x65\x70\x4b\x5e\x6c\x45\x58\x6a\x3d\x50\x65\x35\x4b\ \x63\x32\x47\x62\x2f\x43\x62\x2d\x41\x60\x30\x45\x60\x35\x4a\x66\ \x3a\x4f\x6a\x3c\x52\x6a\x43\x59\x6c\x4b\x60\x71\x51\x64\x72\x54\ \x67\x76\x57\x6a\x79\x56\x6b\x75\x59\x6f\x75\x5c\x72\x79\x5f\x74\ \x7d\x65\x78\x83\x67\x79\x85\x6b\x7c\x87\x6a\x7c\x84\x6c\x7e\x84\ \x6f\x7f\x84\x6f\x7f\x85\x6f\x7f\x85\x6e\x7e\x84\x6d\x80\x85\x6f\ \x82\x87\x6d\x80\x85\x6b\x7f\x83\x6d\x7d\x83\x6d\x7e\x85\x69\x7b\ \x83\x67\x7b\x82\x69\x7a\x82\x67\x79\x80\x65\x78\x7f\x62\x75\x7c\ \x62\x75\x7b\x63\x76\x7b\x61\x75\x7a\x61\x74\x7b\x61\x73\x7a\x61\ \x73\x7a\x5f\x72\x78\x5f\x72\x76\x5f\x72\x77\x5f\x72\x77\x5c\x70\ \x75\x5e\x72\x77\x5e\x71\x78\x5c\x6f\x76\x5e\x71\x78\x5e\x70\x76\ \x5d\x6f\x76\x5c\x6e\x75\x00\x00\x00\x67\xa1\xd4\x65\x9f\xd3\x63\ \xa0\xd3\x60\x9e\xd3\x5e\x9c\xd2\x5c\x99\xd1\x5c\x99\xd1\x58\x98\ \xd1\x59\x97\xd1\x5a\x96\xd1\x5a\x96\xd1\x58\x96\xd1\x5a\x97\xd2\ \x5b\x97\xd1\x5d\x99\xd0\x5f\x9b\xd1\x60\x9c\xd1\x61\x9c\xd2\x61\ \x9c\xd3\x62\x9d\xd3\x63\x9d\xd4\x63\x9d\xd4\x5f\x9d\xd3\x5f\x9b\ \xd2\x5e\x98\xd0\x5a\x93\xcb\x5a\x94\xcc\x57\x90\xc8\x55\x8e\xc9\ \x54\x8f\xc9\x55\x8f\xca\x53\x8e\xc9\x53\x8f\xcb\x51\x8a\xc7\x4f\ \x87\xc4\x4c\x83\xc0\x45\x7c\xb6\x3e\x74\xad\x3b\x6f\xa7\x3c\x6d\ \xa4\x41\x72\xa5\x45\x74\xa3\x54\x7e\xac\x6d\x92\xb7\x80\xa0\xbf\ \x8d\xaa\xc5\x96\xb3\xcc\x9e\xb9\xcf\xa4\xbd\xd1\xa3\xbe\xd2\xa5\ \xbf\xd2\xa4\xbe\xcf\xa5\xbe\xd1\xa5\xbe\xd2\xa6\xbe\xd4\xa8\xc0\ \xd6\xa6\xbe\xd5\xa6\xbf\xd4\xa9\xc1\xd7\xa6\xbf\xd4\xa2\xbb\xcf\ \x9a\xb4\xc6\x8f\xa7\xb9\x85\x9c\xb2\x7b\x92\xa9\x70\x85\xa3\x69\ \x7b\xa1\x6c\x7d\xa8\x73\x86\xb2\x77\x8b\xb9\x79\x8d\xbc\x78\x8e\ \xbc\x77\x8d\xbc\x7c\x93\xc1\x7d\x93\xc3\x80\x96\xc6\x7d\x93\xc4\ \x78\x90\xbf\x75\x8b\xba\x73\x83\xb3\x67\x79\xa4\x5b\x6b\x92\x51\ \x5f\x82\x41\x51\x6e\x3a\x49\x62\x36\x49\x5f\x37\x4b\x5f\x3d\x54\ \x64\x45\x5c\x6c\x4d\x64\x74\x56\x6c\x79\x60\x75\x81\x64\x7a\x85\ \x68\x7e\x8a\x6c\x82\x8d\x6c\x80\x8b\x6f\x82\x8b\x70\x82\x8b\x70\ \x83\x8a\x71\x84\x8c\x6f\x82\x8b\x69\x7c\x87\x61\x75\x80\x5a\x6d\ \x7a\x52\x65\x75\x4c\x60\x72\x43\x58\x6c\x3d\x52\x6a\x38\x4e\x69\ \x35\x4a\x6a\x32\x48\x69\x36\x4e\x6c\x3b\x53\x71\x42\x59\x74\x45\ \x5c\x73\x4d\x62\x77\x51\x68\x7a\x58\x6d\x7e\x5c\x70\x81\x5f\x72\ \x80\x5e\x74\x7f\x5f\x77\x7f\x65\x78\x83\x66\x7a\x86\x6a\x7d\x8a\ \x70\x84\x8f\x72\x83\x8e\x71\x84\x8d\x73\x85\x8d\x73\x85\x8c\x76\ \x89\x8d\x77\x8a\x8f\x77\x8a\x8f\x77\x8a\x8f\x76\x88\x8f\x76\x88\ \x8f\x73\x87\x8c\x72\x86\x8c\x71\x84\x8b\x71\x84\x8b\x6e\x81\x89\ \x6e\x81\x88\x6b\x7e\x85\x6a\x7d\x85\x68\x7b\x83\x68\x7b\x82\x68\ \x7b\x81\x66\x79\x81\x64\x78\x80\x63\x77\x81\x64\x77\x7f\x63\x76\ \x7d\x64\x77\x7e\x62\x76\x7c\x62\x76\x7b\x62\x74\x7b\x62\x74\x7b\ \x61\x73\x7a\x60\x72\x79\x5f\x71\x79\x5f\x72\x79\x5f\x71\x79\x5f\ \x72\x7a\x00\x00\x00\x65\x9e\xd1\x65\x9f\xd3\x64\x9f\xd3\x61\x9d\ \xd2\x61\x9e\xd4\x5d\x9a\xd1\x5d\x9a\xd2\x5a\x98\xd1\x5b\x97\xd2\ \x59\x94\xcf\x58\x93\xce\x56\x93\xce\x56\x94\xce\x58\x95\xcd\x5a\ \x96\xcd\x5d\x99\xcf\x5d\x99\xce\x5f\x9b\xd1\x5e\x9a\xd0\x60\x9b\ \xd1\x62\x9b\xd2\x61\x9c\xd2\x5f\x9c\xd2\x5f\x9c\xd2\x5e\x98\xd0\ \x5b\x94\xcc\x59\x92\xca\x58\x90\xc9\x56\x8e\xc7\x56\x8f\xc8\x56\ \x8f\xca\x53\x8e\xc9\x51\x8b\xc6\x50\x8a\xc6\x4f\x86\xc3\x4a\x81\ \xbe\x46\x7d\xb8\x3f\x75\xb0\x3b\x6f\xa7\x3b\x6d\xa2\x40\x70\xa3\ \x44\x74\xa6\x4e\x78\xa6\x62\x88\xb0\x72\x95\xb6\x80\xa1\xbc\x88\ \xa6\xc0\x90\xac\xc1\x95\xaf\xc2\x95\xaf\xc1\x92\xac\xbf\x92\xac\ \xbd\x92\xab\xbd\x90\xa9\xbe\x93\xab\xc1\x94\xad\xc2\x93\xac\xc1\ \x94\xae\xc4\x95\xaf\xc4\x94\xad\xc3\x92\xac\xbe\x8a\xa4\xb5\x7e\ \x97\xa9\x74\x8c\xa0\x68\x7f\x96\x61\x74\x92\x5c\x6e\x92\x5e\x70\ \x9a\x61\x78\xa2\x66\x7c\xa8\x67\x7e\xac\x67\x7e\xac\x68\x7f\xad\ \x6d\x83\xb1\x6f\x86\xb5\x72\x8b\xb8\x70\x88\xb6\x71\x86\xb4\x6e\ \x81\xae\x6a\x7b\xa5\x60\x71\x97\x57\x67\x88\x4c\x5a\x78\x41\x4e\ \x69\x3b\x4b\x62\x36\x48\x5d\x37\x4c\x5e\x3e\x56\x66\x47\x5f\x6f\ \x53\x6a\x79\x5b\x71\x80\x65\x7b\x88\x69\x7f\x8b\x6e\x85\x91\x70\ \x86\x91\x72\x86\x92\x75\x88\x94\x76\x89\x93\x76\x89\x93\x73\x88\ \x93\x72\x87\x93\x6f\x83\x91\x67\x7b\x89\x61\x75\x84\x5a\x6f\x80\ \x51\x66\x7a\x48\x5e\x73\x45\x5b\x73\x43\x58\x74\x40\x56\x75\x3d\ \x54\x74\x3b\x53\x73\x42\x5a\x78\x49\x60\x7a\x4d\x65\x7a\x55\x6c\ \x80\x59\x6f\x82\x5e\x74\x84\x62\x77\x86\x64\x78\x85\x65\x7b\x86\ \x65\x7d\x88\x68\x7e\x89\x6c\x80\x8e\x70\x83\x91\x75\x88\x94\x77\ \x8b\x95\x79\x8c\x95\x7a\x8c\x94\x7a\x8d\x94\x7a\x8d\x94\x7b\x8e\ \x93\x7c\x8f\x94\x7b\x8e\x94\x7b\x8d\x95\x7b\x8e\x95\x79\x8c\x93\ \x78\x8a\x92\x76\x89\x90\x73\x86\x8d\x72\x85\x8c\x6f\x85\x8b\x6d\ \x83\x8a\x6c\x81\x89\x6a\x7f\x87\x6b\x7f\x86\x69\x7c\x83\x69\x7d\ \x85\x67\x7b\x85\x67\x7b\x86\x66\x7a\x84\x65\x78\x81\x63\x78\x7f\ \x63\x77\x7f\x63\x77\x7e\x61\x76\x7d\x62\x76\x7e\x61\x74\x7d\x61\ \x75\x7e\x61\x74\x7d\x62\x75\x7c\x5f\x73\x7a\x5e\x72\x7c\x00\x00\ \x00\x64\x9d\xd0\x65\x9e\xd0\x63\x9e\xd1\x63\x9f\xd2\x61\x9d\xd2\ \x5f\x9b\xd2\x5d\x99\xd1\x59\x97\xce\x59\x96\xce\x59\x95\xcc\x57\ \x93\xcb\x55\x93\xca\x56\x93\xcb\x57\x93\xcb\x59\x94\xcc\x5b\x97\ \xcd\x5c\x97\xcd\x5d\x99\xcf\x5d\x99\xcf\x5e\x9a\xd0\x60\x9a\xd0\ \x5f\x99\xce\x60\x9b\xd1\x61\x9a\xd0\x5e\x97\xce\x5c\x94\xcc\x5a\ \x92\xc9\x58\x8f\xc7\x56\x8d\xc6\x56\x8c\xc6\x58\x8f\xc8\x54\x8d\ \xc7\x53\x8c\xc7\x53\x8b\xc6\x50\x87\xc3\x4c\x82\xbe\x48\x7e\xba\ \x40\x74\xaf\x3b\x6d\xa6\x3a\x6b\xa0\x3d\x6e\xa1\x41\x70\xa4\x49\ \x74\xa5\x57\x7e\xaa\x63\x87\xac\x6e\x90\xb0\x74\x94\xaf\x7a\x98\ \xae\x7c\x96\xa9\x7d\x95\xa7\x77\x90\xa1\x72\x8b\x9c\x73\x8c\x9d\ \x73\x8c\x9d\x76\x8d\xa2\x76\x8f\xa1\x78\x92\xa2\x79\x93\xa4\x7d\ \x95\xa9\x7e\x98\xaa\x7b\x95\xa6\x73\x8d\x9d\x68\x80\x91\x5e\x76\ \x87\x57\x6b\x81\x50\x60\x7c\x4b\x5b\x7d\x4d\x61\x86\x4e\x66\x8d\ \x51\x6b\x92\x50\x69\x90\x51\x6b\x92\x56\x6e\x96\x5c\x73\x9b\x5e\ \x78\xa0\x61\x7c\xa4\x64\x7d\xa6\x64\x7a\xa1\x67\x77\x9e\x61\x72\ \x94\x57\x68\x87\x51\x60\x7a\x4a\x58\x6e\x41\x4f\x63\x3e\x4d\x60\ \x3a\x4b\x5d\x39\x4c\x5e\x3e\x56\x66\x47\x5f\x6f\x53\x6a\x79\x5d\ \x74\x83\x63\x7b\x89\x6a\x82\x8e\x72\x89\x97\x74\x8b\x9a\x74\x8a\ \x96\x76\x8c\x98\x76\x8c\x98\x77\x8d\x9a\x76\x8d\x9a\x74\x8c\x9b\ \x70\x88\x97\x6a\x80\x90\x65\x79\x8a\x5f\x75\x89\x55\x6c\x81\x4f\ \x66\x7e\x4c\x63\x7d\x49\x60\x7b\x47\x5f\x7b\x43\x5b\x78\x44\x5c\ \x7a\x49\x62\x7d\x4e\x68\x80\x56\x6e\x83\x59\x70\x85\x5e\x74\x88\ \x62\x79\x88\x66\x7c\x89\x67\x7d\x89\x68\x7e\x8d\x68\x80\x8e\x6a\ \x82\x8f\x6f\x84\x93\x73\x88\x96\x76\x8c\x98\x78\x8d\x98\x7a\x8f\ \x98\x7a\x8f\x97\x7c\x90\x98\x7e\x91\x99\x7e\x91\x97\x80\x93\x99\ \x7f\x92\x99\x7f\x92\x99\x7e\x91\x98\x7b\x8d\x99\x78\x8c\x94\x77\ \x8b\x93\x73\x87\x8e\x72\x86\x8e\x71\x86\x8e\x70\x85\x8d\x6d\x82\ \x8a\x6b\x7f\x8a\x69\x7e\x87\x6a\x7e\x87\x68\x7c\x85\x67\x7b\x86\ \x64\x7a\x85\x65\x78\x85\x63\x77\x83\x62\x76\x82\x61\x76\x7f\x61\ \x77\x7f\x61\x75\x80\x5f\x73\x7f\x5e\x73\x7e\x5f\x73\x7f\x5e\x72\ \x7e\x5d\x72\x7d\x5c\x70\x7b\x5c\x70\x7b\x00\x00\x00\x62\x9b\xce\ \x64\x9d\xd0\x63\x9d\xd0\x63\x9d\xd1\x61\x9c\xd0\x60\x9c\xd2\x5d\ \x99\xcf\x5a\x97\xcf\x59\x95\xcd\x58\x93\xcb\x57\x92\xca\x55\x92\ \xca\x54\x90\xc8\x57\x92\xca\x58\x93\xcb\x5a\x93\xcb\x5b\x94\xcc\ \x5c\x97\xcf\x5c\x97\xce\x5c\x98\xce\x61\x9b\xcf\x60\x9a\xcf\x62\ \x9b\xcf\x62\x9b\xcf\x60\x99\xce\x5c\x94\xcb\x5b\x92\xca\x58\x90\ \xc7\x56\x8e\xc5\x57\x8e\xc6\x57\x8f\xc6\x58\x8f\xc8\x55\x8b\xc6\ \x53\x89\xc5\x51\x87\xc3\x4d\x83\xbf\x49\x7f\xb8\x41\x76\xaf\x3b\ \x6c\xa5\x3b\x6a\xa2\x3d\x6d\xa1\x3f\x6f\xa3\x44\x71\xa3\x4b\x74\ \xa2\x51\x77\xa0\x56\x7a\x9e\x5b\x7b\x9b\x5a\x79\x92\x59\x73\x87\ \x53\x69\x7b\x4e\x61\x71\x49\x5c\x6c\x49\x5c\x6a\x4c\x5e\x6e\x4d\ \x60\x70\x4f\x62\x72\x51\x66\x75\x55\x6a\x78\x5a\x71\x7d\x5d\x74\ \x80\x5d\x74\x81\x58\x6d\x79\x50\x64\x70\x49\x5b\x69\x42\x52\x63\ \x3c\x4b\x60\x3b\x4b\x63\x3b\x4f\x6a\x39\x52\x70\x38\x52\x71\x36\ \x4f\x70\x36\x52\x71\x3e\x5a\x7a\x42\x5e\x7d\x48\x64\x83\x4d\x6a\ \x8a\x4e\x69\x8b\x58\x6d\x8d\x5c\x6c\x8a\x57\x68\x82\x54\x64\x7a\ \x4d\x5b\x6f\x47\x53\x64\x43\x4e\x5f\x41\x4e\x5e\x3d\x4b\x5c\x39\ \x4a\x5b\x41\x55\x66\x49\x5f\x6f\x54\x6b\x7a\x5d\x74\x83\x67\x7e\ \x8d\x6c\x85\x93\x73\x8b\x9a\x75\x8c\x9c\x76\x8c\x9c\x75\x8c\x9b\ \x76\x8d\x9c\x76\x8d\x9c\x76\x8d\x9c\x74\x8e\x9c\x71\x8b\x99\x6a\ \x82\x91\x64\x7b\x8d\x5f\x77\x8a\x57\x6f\x86\x52\x6a\x82\x4e\x67\ \x81\x4d\x66\x80\x4a\x63\x7d\x48\x60\x7c\x49\x61\x7e\x4b\x64\x7f\ \x52\x6c\x85\x56\x6e\x83\x57\x70\x84\x5e\x74\x88\x63\x7a\x89\x65\ \x7c\x88\x67\x7d\x89\x67\x7e\x8c\x67\x7e\x8e\x67\x80\x90\x6c\x84\ \x94\x71\x88\x98\x73\x8b\x98\x77\x8e\x97\x79\x8f\x97\x79\x8e\x96\ \x7a\x8f\x97\x7c\x91\x98\x7d\x90\x97\x7e\x91\x98\x7e\x91\x98\x7e\ \x91\x98\x7c\x8f\x97\x79\x8d\x98\x77\x8b\x96\x74\x88\x93\x72\x87\ \x8e\x71\x87\x8e\x6d\x81\x8c\x6c\x80\x8b\x6a\x7e\x89\x68\x7c\x87\ \x69\x7d\x88\x65\x7a\x85\x63\x79\x84\x63\x79\x84\x61\x77\x82\x5f\ \x76\x83\x5f\x77\x83\x5d\x75\x80\x5b\x75\x7c\x59\x73\x7a\x5d\x73\ \x7e\x5d\x73\x7f\x5d\x73\x7f\x58\x6e\x7a\x5a\x6f\x7b\x5a\x6f\x7b\ \x5a\x70\x7c\x57\x6d\x79\x00\x00\x00\x5e\x97\xcb\x61\x9a\xcd\x61\ \x9b\xcd\x61\x9b\xcf\x61\x9b\xcf\x60\x98\xcf\x5d\x97\xcd\x5a\x96\ \xcd\x57\x93\xcc\x58\x93\xcb\x55\x90\xc8\x53\x90\xc8\x55\x90\xc7\ \x55\x91\xc8\x56\x90\xc8\x59\x92\xca\x5a\x93\xcb\x5a\x95\xcd\x5b\ \x97\xce\x5b\x97\xcc\x5e\x99\xcc\x60\x99\xcd\x60\x99\xcc\x60\x99\ \xcd\x60\x99\xcd\x5e\x97\xcb\x5a\x93\xc8\x58\x92\xc5\x56\x90\xc5\ \x57\x8f\xc6\x57\x8f\xc6\x57\x8f\xc7\x55\x8c\xc5\x53\x89\xc5\x50\ \x86\xc2\x4c\x82\xbe\x49\x80\xb7\x42\x77\xaf\x3d\x6e\xa8\x3c\x6b\ \xa2\x3a\x68\x9e\x3e\x6e\xa1\x43\x70\xa2\x46\x70\x9e\x45\x6d\x97\ \x43\x67\x8e\x3e\x60\x84\x39\x59\x75\x32\x4c\x63\x27\x3a\x4e\x1d\ \x2c\x3b\x17\x26\x32\x16\x26\x30\x1c\x2b\x36\x1d\x2c\x39\x24\x32\ \x40\x29\x38\x45\x2a\x3c\x44\x2e\x42\x49\x30\x44\x4b\x36\x4a\x52\ \x35\x48\x4f\x35\x44\x4d\x32\x3f\x4a\x2f\x3c\x49\x2c\x3c\x4a\x2e\ \x3e\x4f\x29\x3b\x4f\x22\x38\x4f\x20\x38\x52\x1f\x38\x52\x24\x40\ \x5a\x28\x47\x60\x2d\x4e\x67\x35\x53\x6b\x37\x56\x6f\x39\x55\x71\ \x46\x5e\x77\x4d\x5f\x76\x4e\x5e\x71\x4c\x5b\x6d\x4a\x56\x68\x4a\ \x53\x65\x47\x50\x5f\x46\x4e\x5d\x3f\x4b\x5a\x38\x46\x57\x40\x51\ \x62\x48\x5e\x6d\x50\x67\x76\x5c\x73\x83\x63\x7d\x8c\x6a\x83\x93\ \x6f\x87\x99\x71\x8a\x9a\x72\x8c\x9c\x72\x8b\x9b\x74\x8d\x9d\x75\ \x8c\x9b\x75\x8c\x9b\x73\x8c\x9a\x6f\x89\x97\x69\x84\x92\x65\x7e\ \x8e\x5f\x78\x8b\x58\x72\x86\x52\x6c\x84\x4e\x67\x82\x4c\x66\x81\ \x4c\x65\x7e\x4b\x64\x7e\x4b\x63\x7f\x4c\x67\x81\x52\x6e\x83\x57\ \x71\x85\x59\x71\x85\x5c\x74\x87\x60\x78\x88\x63\x7a\x87\x65\x7b\ \x86\x64\x7b\x89\x64\x7c\x8c\x66\x7f\x90\x69\x81\x93\x6d\x87\x97\ \x70\x8a\x97\x72\x8a\x94\x74\x8b\x92\x76\x8c\x95\x77\x8c\x96\x79\ \x8d\x99\x7b\x8e\x96\x7b\x8d\x94\x7b\x8e\x95\x7b\x8e\x96\x7a\x8d\ \x95\x74\x8b\x94\x71\x87\x92\x6f\x85\x91\x6d\x83\x8f\x6b\x81\x8d\ \x6a\x7f\x8a\x66\x7b\x86\x66\x7b\x87\x64\x78\x85\x63\x79\x85\x61\ \x77\x83\x61\x77\x83\x5e\x75\x81\x5b\x73\x7f\x5a\x71\x7f\x5a\x72\ \x7e\x5a\x74\x7d\x59\x73\x7a\x57\x71\x78\x5a\x6f\x7a\x5a\x6e\x79\ \x58\x6d\x78\x57\x6b\x77\x58\x6c\x79\x56\x6b\x7a\x55\x6a\x77\x52\ \x6a\x76\x00\x00\x00\x5f\x97\xca\x60\x97\xca\x61\x98\xcd\x5e\x98\ \xcd\x5e\x98\xcc\x5e\x98\xcc\x5d\x97\xcb\x5a\x95\xca\x58\x94\xca\ \x57\x92\xca\x56\x91\xc9\x53\x90\xc8\x53\x8e\xc6\x54\x8e\xc7\x54\ \x8f\xc7\x55\x90\xc8\x57\x92\xca\x58\x93\xcb\x59\x94\xcc\x5b\x95\ \xcd\x5d\x96\xcd\x5e\x98\xcd\x61\x9a\xce\x61\x9a\xcf\x61\x99\xcf\ \x60\x97\xcb\x5c\x94\xc9\x5a\x92\xc9\x58\x8f\xc7\x57\x8d\xc4\x59\ \x8f\xc6\x59\x90\xc7\x57\x8f\xc6\x54\x8b\xc4\x51\x88\xc0\x4e\x84\ \xbd\x4b\x80\xba\x42\x77\xaf\x3f\x70\xa8\x39\x68\x9e\x3b\x69\x9e\ \x3b\x6a\x9e\x41\x6e\xa1\x42\x6d\x9e\x3c\x66\x95\x37\x5e\x89\x31\ \x55\x7c\x28\x49\x6a\x21\x3b\x54\x1a\x2e\x40\x13\x21\x32\x0e\x1b\ \x2b\x0f\x1a\x28\x12\x1e\x2d\x12\x20\x31\x1c\x26\x39\x1a\x26\x35\ \x1e\x2c\x36\x1d\x2d\x35\x1f\x2f\x38\x1f\x2f\x3b\x27\x35\x3e\x20\ \x2b\x36\x26\x2f\x3b\x24\x2f\x3b\x23\x31\x3c\x23\x30\x3e\x1d\x2d\ \x3f\x1a\x2e\x43\x1a\x2f\x4a\x1c\x33\x4f\x24\x3d\x58\x25\x42\x5d\ \x2a\x48\x63\x30\x4f\x69\x33\x50\x6b\x35\x51\x6c\x44\x5a\x74\x4e\ \x5e\x77\x4e\x5c\x70\x50\x5c\x6c\x51\x5a\x67\x4e\x55\x65\x4c\x52\ \x63\x4b\x52\x5f\x3d\x45\x54\x36\x43\x54\x3d\x4f\x61\x47\x5b\x6c\ \x51\x65\x76\x59\x70\x80\x60\x78\x8a\x65\x7f\x90\x6c\x85\x95\x6f\ \x88\x98\x6e\x87\x97\x70\x8a\x98\x70\x8a\x97\x71\x8b\x99\x70\x8b\ \x99\x70\x89\x99\x6e\x87\x97\x6a\x83\x92\x64\x7e\x8e\x5c\x77\x88\ \x56\x71\x85\x53\x6d\x83\x50\x6a\x82\x4c\x66\x7e\x49\x64\x7c\x4a\ \x65\x7f\x4e\x66\x82\x50\x6b\x84\x51\x6e\x85\x56\x72\x87\x59\x75\ \x89\x5b\x76\x8a\x5c\x74\x86\x5e\x75\x86\x61\x78\x87\x63\x78\x87\ \x63\x79\x88\x63\x7c\x8d\x68\x81\x91\x6a\x83\x91\x6d\x85\x92\x6d\ \x85\x91\x70\x86\x92\x71\x87\x90\x75\x8a\x92\x76\x8b\x92\x75\x8a\ \x92\x76\x8b\x93\x74\x8a\x92\x74\x89\x91\x72\x87\x8f\x72\x86\x8f\ \x6e\x83\x8e\x6c\x82\x8d\x68\x7e\x8a\x66\x7c\x89\x63\x79\x86\x60\ \x79\x85\x5f\x77\x83\x5d\x75\x81\x5d\x73\x80\x5c\x72\x80\x57\x72\ \x7c\x57\x71\x7b\x59\x70\x7c\x55\x6e\x7b\x57\x6f\x7a\x56\x6b\x77\ \x55\x6d\x78\x53\x6d\x77\x56\x6b\x79\x54\x6a\x76\x53\x69\x74\x53\ \x6a\x76\x51\x66\x75\x51\x66\x75\x51\x66\x75\x50\x66\x72\x00\x00\ \x00\x60\x96\xcb\x5f\x95\xc9\x5f\x96\xcd\x5e\x97\xce\x5e\x98\xcc\ \x5e\x98\xcc\x5d\x97\xca\x5b\x94\xcb\x5b\x95\xcc\x59\x94\xcb\x55\ \x90\xc8\x54\x8f\xc7\x54\x8f\xc7\x54\x8f\xc7\x54\x8f\xc7\x55\x90\ \xc8\x56\x91\xc9\x57\x92\xca\x58\x93\xcb\x59\x94\xcc\x5c\x96\xcd\ \x5e\x97\xce\x60\x9a\xcd\x60\x99\xce\x61\x99\xd0\x5f\x99\xcc\x5d\ \x95\xcb\x59\x91\xc8\x57\x8f\xc6\x58\x90\xc7\x5a\x90\xc7\x58\x8f\ \xc6\x58\x90\xc7\x55\x8c\xc5\x51\x88\xc1\x4e\x85\xbe\x4e\x80\xba\ \x45\x78\xb1\x3e\x70\xa7\x3d\x6a\xa0\x39\x65\x9a\x3a\x66\x9a\x3c\ \x67\x99\x3e\x66\x97\x3a\x61\x90\x35\x5b\x87\x2c\x50\x78\x25\x45\ \x65\x1d\x37\x4d\x18\x2c\x3d\x11\x21\x2f\x0b\x1a\x27\x10\x1d\x2b\ \x12\x20\x2f\x14\x22\x33\x15\x24\x35\x19\x28\x37\x1d\x2d\x39\x1e\ \x30\x3c\x21\x32\x3e\x20\x30\x3d\x22\x30\x3b\x1f\x2d\x35\x20\x2b\ \x33\x1e\x29\x34\x1c\x29\x35\x1a\x28\x36\x18\x28\x3a\x16\x29\x3e\ \x18\x2c\x47\x1d\x34\x50\x21\x3a\x55\x25\x42\x5d\x2a\x48\x63\x2e\ \x4c\x67\x32\x4f\x6a\x35\x51\x6c\x45\x5a\x74\x50\x5f\x78\x54\x62\ \x74\x56\x60\x6f\x56\x5e\x6b\x55\x5d\x6b\x51\x57\x66\x4d\x53\x62\ \x3f\x47\x58\x39\x46\x58\x3c\x4e\x5f\x43\x57\x68\x4f\x64\x73\x56\ \x6d\x7c\x5b\x75\x85\x62\x7c\x8c\x68\x81\x91\x69\x82\x92\x6b\x84\ \x94\x6a\x84\x92\x6b\x85\x93\x6c\x86\x94\x6c\x85\x94\x6b\x84\x94\ \x6a\x83\x93\x65\x7e\x90\x61\x7a\x8e\x5c\x75\x89\x56\x71\x85\x52\ \x6d\x81\x4f\x6a\x7f\x4d\x67\x7f\x4b\x68\x80\x4b\x67\x81\x4e\x69\ \x83\x52\x6e\x87\x56\x71\x88\x58\x73\x88\x5c\x77\x8b\x5b\x76\x8a\ \x5b\x74\x85\x5a\x73\x83\x5b\x74\x83\x5f\x75\x84\x5f\x77\x87\x61\ \x79\x8b\x65\x7d\x8e\x66\x7e\x8e\x67\x7e\x8d\x67\x7f\x8c\x69\x80\ \x8c\x6a\x83\x8a\x6d\x84\x8c\x70\x86\x8e\x6f\x83\x8d\x71\x85\x90\ \x71\x85\x90\x6e\x82\x8d\x6d\x81\x8c\x6b\x7f\x8a\x6a\x7f\x8a\x67\ \x7d\x88\x64\x7a\x85\x62\x78\x83\x5f\x76\x82\x5c\x74\x80\x59\x71\ \x7d\x59\x72\x7d\x59\x6f\x7d\x59\x6f\x7d\x56\x70\x7a\x54\x6d\x77\ \x54\x6c\x77\x51\x6b\x78\x52\x6a\x75\x53\x68\x74\x50\x69\x72\x4f\ \x69\x74\x51\x67\x73\x4f\x65\x71\x50\x66\x71\x50\x66\x72\x50\x66\ \x73\x4f\x64\x73\x4e\x64\x70\x4e\x64\x70\x00\x00\x00\x5c\x92\xca\ \x5e\x93\xca\x5e\x94\xcc\x5d\x95\xcc\x5d\x96\xc9\x5c\x96\xca\x5b\ \x95\xc9\x5b\x94\xca\x5a\x93\xca\x58\x92\xca\x56\x91\xc9\x55\x90\ \xc8\x55\x90\xc8\x55\x90\xc8\x53\x8e\xc6\x54\x8f\xc7\x56\x91\xc9\ \x57\x92\xca\x58\x93\xcb\x59\x94\xcc\x5c\x95\xcc\x5c\x96\xcc\x5d\ \x98\xcc\x5f\x98\xcf\x5f\x98\xcf\x5f\x98\xcd\x5c\x94\xc9\x5a\x92\ \xc7\x58\x91\xc6\x56\x8f\xc4\x55\x8d\xc2\x57\x90\xc6\x57\x8f\xc6\ \x54\x8b\xc4\x51\x88\xc1\x50\x87\xc0\x4c\x81\xba\x46\x79\xb2\x3f\ \x70\xa8\x3d\x6a\xa1\x39\x62\x98\x38\x64\x96\x37\x61\x91\x38\x5f\ \x8d\x33\x57\x84\x2d\x51\x7a\x2a\x4b\x71\x20\x3d\x5d\x1b\x32\x49\ \x16\x2a\x3a\x0f\x1f\x2c\x0d\x1d\x29\x0f\x20\x2e\x12\x21\x31\x13\ \x21\x33\x17\x26\x37\x18\x29\x39\x1a\x2c\x3c\x1c\x2d\x3e\x1e\x30\ \x41\x22\x32\x40\x1f\x30\x3a\x20\x2e\x36\x1b\x28\x30\x1a\x26\x30\ \x18\x24\x30\x17\x24\x31\x15\x24\x36\x16\x27\x3c\x17\x2b\x46\x1f\ \x35\x50\x23\x3c\x57\x28\x44\x5e\x2a\x48\x61\x2f\x4d\x67\x33\x50\ \x6b\x33\x4f\x69\x43\x5a\x74\x4f\x5f\x76\x58\x63\x76\x5b\x64\x76\ \x5e\x65\x76\x5e\x65\x75\x5f\x64\x76\x5d\x61\x76\x51\x59\x6f\x47\ \x53\x69\x46\x56\x6a\x48\x5b\x6d\x4c\x62\x72\x55\x6c\x7b\x5b\x73\ \x82\x5e\x77\x87\x63\x7c\x8c\x65\x7e\x8e\x66\x7f\x8f\x67\x80\x8f\ \x68\x82\x90\x67\x81\x8f\x68\x82\x90\x68\x81\x91\x68\x81\x91\x64\ \x7d\x8e\x61\x7a\x8e\x5d\x76\x8a\x5b\x74\x88\x56\x71\x83\x52\x6d\ \x80\x50\x6b\x80\x4e\x6c\x84\x4e\x6b\x85\x53\x6e\x87\x58\x72\x89\ \x59\x73\x89\x5c\x75\x8a\x5e\x77\x8b\x5f\x78\x8a\x5e\x78\x88\x5d\ \x78\x87\x5d\x78\x86\x5e\x78\x86\x5f\x79\x88\x62\x79\x8c\x63\x7c\ \x8d\x62\x7a\x8a\x66\x7d\x8c\x65\x7d\x8b\x65\x7f\x8a\x67\x81\x89\ \x69\x82\x89\x6c\x83\x8b\x6e\x82\x8d\x70\x84\x8f\x6e\x82\x8d\x6f\ \x83\x8e\x6d\x81\x8c\x6b\x7e\x8b\x69\x7d\x8a\x65\x7b\x86\x63\x7a\ \x82\x61\x78\x80\x5f\x75\x81\x5b\x73\x7f\x58\x70\x7c\x58\x70\x7c\ \x57\x6e\x7c\x58\x6f\x7d\x55\x6d\x78\x54\x6d\x78\x55\x6d\x79\x51\ \x6a\x76\x53\x6b\x76\x53\x69\x74\x51\x69\x74\x51\x6a\x76\x53\x6a\ \x76\x51\x67\x73\x51\x67\x72\x51\x67\x73\x50\x66\x72\x50\x66\x72\ \x4f\x65\x71\x4f\x65\x71\x00\x00\x00\x5b\x90\xc8\x5d\x90\xc8\x5e\ \x91\xca\x5d\x93\xc9\x5b\x94\xc8\x5a\x93\xc7\x59\x93\xc7\x59\x92\ \xc8\x58\x91\xc8\x59\x92\xca\x57\x91\xc9\x55\x90\xc8\x54\x8f\xc7\ \x54\x8f\xc7\x53\x8e\xc6\x54\x8f\xc7\x55\x90\xc8\x57\x92\xca\x58\ \x93\xcb\x58\x93\xcb\x5b\x94\xcb\x5c\x96\xcc\x5b\x97\xcd\x5c\x98\ \xce\x5e\x98\xcf\x5f\x97\xce\x5c\x96\xca\x59\x92\xc6\x58\x91\xc5\ \x55\x8f\xc3\x55\x8f\xc3\x57\x90\xc6\x56\x8f\xc6\x56\x8d\xc6\x53\ \x8a\xc3\x53\x88\xc1\x4f\x84\xbd\x46\x7c\xb4\x42\x74\xac\x3b\x6b\ \xa1\x35\x61\x96\x35\x5f\x91\x34\x5c\x8c\x33\x57\x85\x2f\x51\x7c\ \x25\x47\x6d\x21\x3f\x62\x1e\x36\x54\x1a\x2d\x45\x16\x26\x39\x0f\ \x1e\x2d\x0d\x1d\x2c\x13\x23\x34\x16\x25\x36\x15\x24\x35\x18\x29\ \x37\x1a\x2d\x3c\x1c\x2e\x3f\x1e\x30\x41\x24\x36\x46\x25\x36\x42\ \x23\x33\x3e\x20\x31\x38\x1e\x2c\x34\x1b\x27\x32\x17\x23\x2f\x13\ \x20\x2e\x12\x21\x32\x16\x27\x3d\x18\x2c\x45\x1d\x33\x4d\x24\x3c\ \x56\x27\x42\x5b\x2a\x49\x61\x2e\x4d\x66\x31\x4f\x69\x34\x50\x69\ \x44\x5b\x73\x51\x61\x79\x5a\x66\x7d\x62\x6a\x80\x66\x6d\x83\x68\ \x6e\x85\x6a\x6f\x87\x68\x6f\x89\x5b\x65\x82\x4f\x5e\x79\x4f\x60\ \x78\x4f\x64\x79\x53\x69\x7b\x58\x6f\x7e\x5c\x75\x84\x5f\x77\x8a\ \x64\x7d\x8e\x65\x7e\x8e\x66\x7f\x8f\x67\x81\x8f\x67\x81\x8f\x6a\ \x84\x92\x6a\x83\x92\x69\x82\x92\x69\x82\x92\x68\x80\x91\x65\x7d\ \x8f\x61\x7a\x8b\x5e\x78\x89\x5d\x77\x88\x5b\x74\x86\x59\x73\x88\ \x58\x73\x8b\x59\x74\x8d\x5b\x75\x8b\x5d\x76\x8a\x5f\x78\x8b\x5f\ \x79\x8b\x63\x7c\x8d\x64\x7d\x8d\x64\x7f\x8c\x62\x7d\x8b\x65\x80\ \x8e\x63\x7d\x8b\x63\x7d\x8c\x65\x7e\x8e\x65\x7e\x8d\x66\x7f\x8c\ \x68\x80\x8c\x6a\x82\x8e\x69\x81\x8d\x6b\x84\x8c\x6f\x86\x8e\x6f\ \x85\x8d\x71\x86\x8f\x71\x86\x90\x72\x86\x90\x71\x86\x90\x70\x84\ \x8e\x6e\x82\x8d\x6c\x81\x8b\x68\x7e\x89\x66\x7c\x87\x65\x7b\x86\ \x62\x79\x83\x5f\x78\x82\x5d\x75\x80\x5b\x73\x80\x5a\x71\x80\x5b\ \x72\x7f\x5a\x70\x7c\x59\x71\x7b\x55\x70\x7b\x54\x6f\x7a\x56\x6f\ \x79\x58\x6e\x79\x57\x6f\x79\x54\x6d\x7a\x55\x6b\x77\x54\x6a\x75\ \x52\x69\x73\x54\x6a\x75\x52\x68\x74\x53\x69\x74\x52\x68\x74\x52\ \x68\x74\x00\x00\x00\x59\x8d\xc5\x5a\x8d\xc5\x5b\x8f\xc7\x5b\x91\ \xc7\x59\x92\xc5\x59\x93\xc7\x58\x92\xc6\x58\x90\xc8\x57\x90\xc7\ \x58\x90\xc9\x57\x90\xc8\x55\x90\xc8\x55\x90\xc8\x54\x90\xc8\x54\ \x8f\xc7\x53\x8e\xc6\x54\x8f\xc7\x55\x90\xc8\x56\x91\xc9\x58\x93\ \xcb\x5a\x93\xca\x5a\x95\xcb\x5b\x97\xcc\x5b\x96\xcd\x5d\x98\xcf\ \x5f\x99\xcf\x5d\x97\xcb\x5b\x94\xc8\x58\x92\xc6\x55\x8f\xc3\x55\ \x8f\xc4\x56\x8f\xc6\x58\x90\xc8\x57\x8e\xc7\x55\x8a\xc3\x52\x87\ \xc0\x4c\x83\xbc\x47\x7e\xb6\x42\x76\xad\x3c\x6d\xa2\x34\x61\x96\ \x33\x5c\x8d\x30\x57\x86\x2e\x52\x7e\x29\x4a\x73\x25\x45\x69\x21\ \x3c\x5b\x1c\x30\x4d\x16\x26\x3d\x13\x20\x35\x10\x1e\x30\x11\x23\ \x34\x11\x22\x35\x14\x25\x36\x17\x27\x37\x1a\x2a\x39\x1a\x2c\x3b\ \x1d\x2e\x3f\x22\x33\x43\x26\x38\x45\x26\x38\x43\x25\x37\x40\x20\ \x30\x39\x1e\x2d\x37\x1a\x26\x32\x16\x22\x2e\x15\x20\x2e\x13\x22\ \x33\x16\x27\x3d\x16\x2c\x45\x1e\x35\x4d\x23\x3c\x55\x26\x41\x59\ \x29\x46\x5e\x2e\x4d\x66\x30\x4f\x68\x33\x50\x69\x43\x5a\x71\x56\ \x66\x7d\x5f\x6c\x83\x69\x73\x8c\x71\x77\x94\x72\x79\x98\x74\x7b\ \x99\x73\x7b\x9a\x66\x71\x92\x5a\x69\x88\x59\x6d\x87\x59\x6e\x84\ \x5d\x73\x86\x61\x79\x89\x63\x7a\x8a\x66\x7e\x91\x68\x81\x91\x66\ \x7f\x8f\x67\x81\x90\x6a\x84\x93\x6a\x84\x92\x6c\x86\x94\x6d\x87\ \x96\x6d\x86\x96\x6e\x87\x97\x6d\x86\x96\x6a\x84\x92\x67\x82\x90\ \x64\x7e\x8e\x63\x7d\x8d\x63\x7c\x8c\x63\x7c\x8f\x61\x7a\x92\x60\ \x7a\x91\x63\x7c\x91\x63\x7d\x8f\x66\x80\x90\x66\x7f\x8f\x6a\x83\ \x92\x69\x83\x91\x69\x83\x91\x68\x82\x90\x69\x83\x91\x68\x82\x90\ \x6a\x84\x92\x68\x82\x90\x68\x82\x8f\x69\x82\x8e\x6c\x84\x8e\x6c\ \x84\x8f\x6d\x83\x8f\x71\x87\x90\x72\x87\x8f\x76\x8a\x92\x74\x89\ \x91\x73\x88\x90\x74\x89\x91\x75\x8a\x92\x72\x87\x8f\x71\x86\x8e\ \x6f\x83\x8e\x6b\x81\x8c\x69\x7f\x8b\x68\x7f\x89\x65\x7c\x85\x61\ \x7a\x84\x60\x78\x84\x5e\x76\x82\x5c\x73\x82\x5c\x73\x81\x5e\x74\ \x7f\x5c\x74\x7e\x5a\x72\x7e\x5a\x74\x7e\x56\x6f\x79\x59\x6f\x7a\ \x58\x70\x7b\x55\x6e\x7b\x55\x6b\x77\x56\x6c\x77\x53\x6a\x72\x54\ \x6b\x75\x53\x69\x76\x53\x69\x74\x51\x67\x73\x52\x68\x74\x00\x00\ \x00\x57\x89\xc2\x57\x8a\xc2\x57\x8b\xc3\x55\x8d\xc3\x56\x8f\xc3\ \x57\x90\xc5\x56\x8e\xc6\x57\x8f\xc7\x56\x8f\xc8\x55\x90\xc8\x54\ \x8f\xc7\x55\x8f\xc7\x57\x90\xc8\x57\x90\xc8\x55\x90\xc8\x54\x8f\ \xc7\x54\x8f\xc7\x55\x90\xc9\x57\x92\xca\x59\x94\xcc\x56\x94\xcb\ \x57\x93\xcb\x5b\x96\xce\x5c\x98\xcf\x5e\x9a\xd0\x5d\x9a\xce\x5f\ \x98\xcf\x5b\x94\xcb\x59\x92\xc9\x57\x8e\xc6\x57\x8e\xc7\x56\x8f\ \xc6\x58\x91\xc8\x58\x8f\xc8\x55\x8c\xc5\x52\x89\xc2\x4e\x85\xbe\ \x48\x81\xb9\x42\x7a\xb2\x3c\x6f\xa6\x36\x63\x99\x2f\x58\x8b\x2d\ \x54\x81\x2b\x4c\x79\x27\x44\x6a\x21\x3c\x5d\x1c\x33\x51\x17\x2b\ \x42\x12\x22\x34\x11\x20\x31\x0e\x1c\x2d\x10\x1e\x30\x12\x21\x32\ \x14\x23\x33\x15\x25\x33\x17\x27\x34\x1a\x29\x39\x1c\x2b\x3b\x21\ \x31\x3e\x24\x34\x40\x26\x34\x40\x23\x32\x3c\x21\x2d\x37\x1d\x29\ \x32\x1b\x27\x32\x17\x24\x30\x16\x22\x2e\x13\x21\x32\x13\x27\x3c\ \x16\x2b\x46\x1f\x34\x52\x24\x3c\x5a\x27\x42\x5e\x2a\x46\x60\x30\ \x4d\x67\x31\x4f\x69\x35\x50\x6a\x48\x5d\x75\x5b\x6a\x81\x68\x73\ \x8d\x72\x7d\x99\x77\x7f\x9e\x7c\x82\xa4\x7d\x83\xa7\x7a\x83\xa7\ \x71\x7d\x9f\x68\x77\x97\x65\x75\x91\x63\x77\x8f\x64\x79\x8c\x65\ \x7a\x8c\x68\x7f\x8f\x69\x81\x91\x69\x82\x92\x6c\x83\x93\x6e\x85\ \x95\x6c\x83\x93\x6d\x85\x94\x6c\x86\x96\x6d\x87\x97\x6e\x87\x97\ \x6e\x87\x97\x70\x88\x98\x6c\x85\x95\x6a\x84\x94\x68\x82\x92\x67\ \x81\x91\x65\x7f\x90\x67\x80\x93\x65\x7e\x92\x67\x80\x94\x67\x7f\ \x94\x67\x81\x93\x69\x82\x93\x6a\x82\x94\x6a\x84\x94\x6a\x84\x94\ \x6c\x84\x95\x69\x82\x92\x6a\x84\x92\x69\x83\x90\x68\x82\x8e\x68\ \x82\x8f\x68\x82\x90\x68\x82\x90\x6b\x83\x8f\x6d\x85\x8f\x70\x86\ \x91\x71\x87\x92\x72\x88\x93\x74\x89\x91\x75\x8b\x91\x75\x8b\x91\ \x75\x8a\x92\x75\x8a\x92\x73\x88\x90\x72\x87\x8f\x70\x85\x8c\x6e\ \x82\x8c\x6b\x7f\x8a\x6a\x7f\x89\x66\x7c\x87\x65\x7a\x86\x61\x79\ \x85\x5f\x77\x83\x5e\x76\x83\x5e\x76\x82\x5d\x75\x81\x5e\x74\x80\ \x5d\x74\x80\x5d\x73\x7e\x5b\x71\x7c\x59\x71\x7b\x57\x70\x7a\x57\ \x70\x7a\x57\x6d\x78\x57\x6d\x78\x56\x6c\x77\x56\x6c\x77\x54\x6b\ \x75\x54\x6b\x73\x55\x6b\x75\x52\x6b\x76\x00\x00\x00\ \x00\x00\x9a\x53\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x0e\x00\x00\x01\x90\x08\x06\x00\x00\x00\x5f\xdd\x8e\x96\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x09\x04\x14\x15\x2b\xe6\xb4\x36\x21\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\xda\xec\xbd\x67\x74\x24\xd9\x75\x26\xf8\xbd\x48\x0b\ \xef\xbd\xb7\x05\x14\x50\x55\x40\xd9\x2e\xdb\x68\x53\xed\x48\xb6\ \x9a\x94\x44\x33\x34\x12\xa5\xa3\x3d\xb3\xb3\x2b\x4a\xa4\xb4\x3b\ \x73\x76\xce\x2e\xb5\x3b\x33\xd2\xce\xce\x99\xb3\x9a\xd1\xca\x3b\ \x4a\x22\x29\x8a\x6c\xba\x26\xd9\x6c\xcb\xae\xee\xae\xaa\xee\xaa\ \xea\xf2\x06\x55\xf0\xde\x25\x32\x91\xde\x47\xbc\xfd\x91\x09\x20\ \x33\xe2\x45\x64\xa4\x03\x12\x40\xdc\x3e\xd9\x95\x99\x88\x7c\x19\ \x11\x19\xf1\xbd\x7b\xbf\x7b\xdf\x77\x01\xcd\x34\xd3\x4c\x33\xcd\ \x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\ \xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\ \x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\ \x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\ \xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\ \x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\ \xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\ \x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\ \x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\xcd\x34\xd3\x4c\x33\ \xcd\x34\xd3\x4c\x33\xcd\x76\x9e\x11\x6d\x7f\x55\x19\xd5\x2e\x15\ \xcd\x34\xcb\x3d\xe0\x20\x2a\xdf\x27\x29\xee\x3f\x49\x12\x00\x68\ \x92\xaf\x35\x80\xd1\x4c\x03\x8e\x2d\xfa\x2e\xc2\x78\xae\xf4\x6f\ \xa2\x6d\xe4\x8e\x87\xa8\xb8\xb9\x29\xe3\x39\xeb\x5f\xaa\x62\x9b\ \x64\xc1\x46\x33\xcd\x34\xe0\x50\x00\x08\x31\x08\xb0\x5e\xaf\x3f\ \x38\x99\xf7\x59\x7f\x4b\x16\x4c\x92\x01\x09\x0a\x40\x10\xbd\x56\ \xf3\x37\xc8\xbc\xd6\x00\x45\x33\x0d\x38\x54\x78\x0d\x72\x37\x3c\ \x17\xf3\x2f\xeb\x41\x54\xbe\x26\x49\x82\x88\x5a\xb0\x88\x05\x05\ \x21\xe6\x91\xe8\x35\xeb\x6f\x4a\x20\xa3\xd6\x5b\xd1\x4c\xb3\x1d\ \x0d\x1c\x62\xa0\x50\xf2\x0a\x58\x0f\x1d\xe3\x5f\xf1\xf3\xc8\x6b\ \x9d\xd9\x40\xf4\x85\x66\xa2\xcf\x33\x81\x33\x9b\x89\xce\x64\x04\ \x67\x30\x82\x33\x1a\x09\x67\x30\x82\xe8\x8d\xe0\x0c\x06\x10\xc2\ \x01\x1c\x07\x42\x08\x01\xe1\x40\x08\x01\x38\x12\x79\x9f\x10\x80\ \x44\x9f\x03\xa0\x54\x00\x28\x05\x28\x8d\x3c\x17\x28\x28\xa5\x14\ \x54\x00\xa5\x14\x10\x04\x50\x2a\x80\x86\x42\x10\xc2\x41\x2a\x84\ \x42\x10\x82\x01\x08\xa1\x20\xe5\x03\x41\x08\x7e\x3f\x0d\xfb\x02\ \x34\xec\xf6\x83\xf7\x87\xa2\x60\xc0\xc7\x3c\x04\xc6\xf3\xd8\x7f\ \xe5\x00\x86\x2a\x78\x2e\x1a\x90\x68\xb6\xe3\x80\x23\x11\x50\xc8\ \x81\x82\xf8\xa1\x17\xfd\xab\x23\xfa\x02\x33\x31\x95\x17\x12\x7d\ \x61\x21\xf4\xf9\xf9\x44\x97\x97\x0f\xce\x94\x47\x74\x26\x33\x38\ \xa3\x09\x84\xe3\x32\x75\x90\x7a\x9d\x0e\x00\x10\xe6\xf9\xcc\x9d\ \x39\x2a\x08\x10\x82\x01\xca\x07\xfc\x10\x02\x3e\xca\xfb\xbc\x08\ \x7b\xbd\x34\xec\x76\xd3\x80\xcd\x4d\xc3\x1e\x7f\x0c\x88\x84\x45\ \xff\xf2\x32\x80\x93\x08\x50\x34\x20\xd1\x2c\x27\x81\x43\x2d\x50\ \xc8\x81\x42\xfc\x83\x70\x06\x62\xaa\x2a\xe6\x4c\xe5\xa5\x30\x14\ \x17\x13\x7d\x7e\xe1\x06\x38\x90\xe8\xdd\xcc\x30\x1d\xc7\xa1\xb4\ \xa4\x08\x65\x71\x8f\xc2\x8d\xe7\xeb\x7f\x2b\x2f\x2d\x42\x7e\x9e\ \x09\x06\xbd\x1e\x06\x83\x01\x26\xa3\x1e\x06\xbd\x1e\x46\xa3\x1e\ \x46\xa3\x01\x46\xbd\x1e\x06\x83\x3e\xe2\x84\x44\xef\xb7\x50\x28\ \x8c\x60\x38\x8c\x60\x30\x14\x79\x1e\x7d\x84\x42\x21\x04\x43\x61\ \x78\x7d\x01\xac\x39\x5c\xf1\x0f\xbb\x0b\x6b\x0e\xb7\xe4\x3d\x5e\ \x10\x14\x80\x85\xe7\x37\x40\x25\xec\x75\x23\xe4\x74\x0a\x01\x9b\ \x9d\x06\x2c\x4e\x50\x21\x14\x05\x11\xf1\x83\x05\x2e\x1a\x90\x68\ \x96\x93\xc0\xc1\xe2\x04\x38\x19\x8f\x22\x16\x18\x0c\xb1\x0f\x62\ \x28\x2a\x20\xe6\xea\x32\x62\x28\x29\x21\x86\xc2\x62\xe8\xf2\x0a\ \x88\x2e\x2f\x5f\xce\x73\xa8\x2c\x2f\x45\x73\x7d\x0d\x9a\xea\xab\ \xa3\x8f\x1a\x34\xd5\x55\xa3\xb9\xa1\x06\x75\x35\x15\x1b\x5e\xc2\ \xc6\x8e\x32\x7c\x23\x22\xe3\x2f\xad\xbf\x1f\xe6\x05\x84\xc3\x3c\ \x82\xe1\x88\xa7\x61\xd0\xeb\xa0\xd7\x71\x30\xe8\x75\xb2\x9f\x55\ \x6b\x61\x9e\xc7\xc2\xb2\x15\xb3\xf3\xcb\x98\x59\x58\xc1\xcc\xfc\ \x32\x66\x17\x56\x22\xcf\xe7\x96\x61\xb1\xd9\x65\x3d\x15\xca\xfb\ \xbc\xe0\x7d\x1e\x1a\x72\x3b\x69\xc8\xe1\xa0\xfe\x95\x35\x1a\x72\ \x79\x00\x84\x44\x0f\x31\xa8\xc8\x71\x28\x72\x5c\x89\x66\x9a\x65\ \x0d\x38\x74\x32\xbc\x44\xac\x47\x61\x88\xf9\xd7\x08\xc0\x48\x4c\ \xe5\xc5\x5c\x5e\x43\x35\x31\x95\x55\x12\x43\x71\x19\x38\xa3\x51\ \x3c\x38\xc7\x11\xb4\x34\xd6\xa1\xa7\xa3\x05\xbd\x9d\x2d\xe8\xe9\ \x6c\x41\x6b\x63\x3d\x9a\xea\xab\x91\x67\x36\x2a\x02\x81\x2f\x10\ \x82\xdd\xe5\x87\xc3\xe3\x87\xc3\xed\x87\xdd\xed\x87\xdd\xe5\x87\ \xdd\xe5\x83\xc3\xed\x87\xd3\xe3\x47\x30\xcc\x47\x80\x21\xc4\x23\ \xb4\xfe\x6f\x28\x8c\x60\x38\xf2\x5a\x10\x62\x26\x66\x4a\xa3\x77\ \x15\x05\x28\xa0\xe3\x08\xf4\xfa\x08\x88\xe8\x37\x9e\x73\x30\x1b\ \xf5\x28\x2e\x34\xa3\xb8\x20\x0f\x25\x85\x26\x14\x17\x98\x51\x5c\ \x68\x46\x49\x81\x19\x25\x45\x79\x28\x29\x8c\xbc\x2e\x2b\xca\x07\ \xc7\xc9\xa3\x8f\x3f\x10\xc4\xcc\xfc\x0a\x26\x67\x17\x30\x3c\x3a\ \x8d\x07\xa3\xd3\x18\x1e\x9d\xc6\xd4\xdc\x62\x74\xbf\x44\x26\x04\ \x83\x34\xe4\x5c\xa3\x81\xb5\x55\xc1\x37\xbf\x42\x03\x36\x27\x80\ \x60\xf4\xb1\x0e\x22\x21\x91\x47\x22\xc7\x97\x68\x40\xa2\x59\xd6\ \x81\x23\x8f\x11\x7a\x88\x3d\x0a\x23\x31\x14\x17\x72\x05\x8d\x35\ \xc4\x58\x5e\x49\x0c\x25\x65\xd0\x99\xcc\xb1\x03\x95\x16\x17\xa2\ \xa7\xa3\x05\x3d\x9d\xad\xe8\xe9\x6c\x41\x4f\x47\x0b\xba\xda\x9a\ \x90\x9f\x67\x62\x7e\xb1\xd3\xe3\xc7\xc2\xaa\x1b\x8b\x56\x17\x16\ \x56\x5d\x58\x5c\x75\xc1\xe6\xf4\xc1\xe1\xf2\x63\xcd\xed\x47\x28\ \x1c\x8e\x5e\xf2\xd1\x1b\x9e\xc6\xdf\x07\x71\xaf\xe9\x06\x24\x6c\ \x00\x04\x40\xa3\x4f\xd9\xc0\x21\x37\x2e\x28\x5d\xff\x8b\xec\xb8\ \xa0\x80\x4e\xcf\xa1\xbe\xb2\x18\x8d\x35\xa5\x68\xaa\x29\x43\x63\ \x6d\x29\x1a\x6b\xca\xd0\x54\x5b\x86\xe2\x02\xb3\xec\x09\xf7\xf9\ \x03\x78\x34\x31\x8b\xe1\x28\x90\x3c\x18\x9d\xc2\xf0\xe8\x34\xec\ \x4e\x77\xfc\x86\x7c\xc0\x4f\x43\x8e\x35\x1a\xb4\xad\x0a\x9e\xb9\ \x65\x1a\x72\xba\x63\x40\x44\xec\x91\xa8\x09\x6d\x34\x10\xd1\x2c\ \xa3\xc0\x51\x25\x02\x0a\x23\x00\x03\xd1\x17\x14\x90\xfc\xa6\x6a\ \xce\x54\x5e\x05\x63\x49\x19\xd1\xe5\xe5\xc7\x7e\xb0\xac\xa4\x18\ \x27\x0f\xf7\xe3\xe4\x91\x7e\x3c\x76\xf8\x00\x3a\x5a\xea\xa5\x37\ \x49\x20\x8c\xe5\x35\x37\x16\x57\xdd\x11\x70\xb0\xba\xb1\x60\x75\ \x61\x71\xd5\x0d\x9f\x3f\xc8\xbc\x91\x59\x37\x2e\x0b\x28\x28\x64\ \x5e\xa7\x03\x1c\x8c\x71\xe5\x80\x83\x2a\x8c\x5b\x5c\x60\x8e\x00\ \x4a\x6d\x39\x1a\x6b\x4b\xd1\x54\x53\x8e\xa6\xda\x32\xd4\x57\x95\ \x40\xaf\x67\x53\x3b\xe3\xd3\x0b\xb8\xfc\xd1\x5d\x5c\xbc\x76\x0f\ \x97\x3f\xba\x07\x9b\xdd\x29\xa2\x4c\x7c\x5e\x04\x1d\x6b\x42\xc0\ \x66\xa1\xde\xd9\x15\x1a\xf6\xac\x87\x36\x41\x19\x20\x09\x33\x3c\ \x12\x30\xf8\x11\xcd\x34\x4b\x09\x38\x7a\x00\x18\xa1\x33\xe5\x71\ \xf9\xcd\xd5\xc4\x5c\x59\x45\x0c\xc5\x65\x44\x9f\x5f\x18\xcb\x95\ \x16\x15\xe4\xe3\xf8\x60\x5f\x14\x2c\x0e\x60\x5f\x7b\x73\x0c\xe9\ \x18\xe1\x13\xa6\x96\x1c\x18\x9f\x5f\xc3\xc4\x82\x1d\xe3\xf3\x36\ \x2c\x5a\xdd\x9b\x37\xa6\xdc\x8d\xab\x02\x38\x54\xdf\xb8\x09\x80\ \x23\x29\x40\x8a\x1d\x27\x03\x80\x04\x50\x10\x8e\xa0\xae\xb2\x18\ \x4d\x35\xe5\x68\xac\x2d\x43\x53\x6d\x04\x50\x5a\xea\x2b\x50\x5a\ \xb4\x89\xcb\x94\x52\x3c\x1c\x9b\xc1\xc5\x6b\x77\x71\xf9\xa3\x7b\ \xf8\xe0\xc6\x7d\xb8\xdc\xde\x38\x2e\x94\x86\xbd\x6e\x1a\x72\xae\ \x51\xff\xaa\x45\xf0\xce\xac\x80\x0f\xf8\x62\x42\x1b\x39\x30\x51\ \x0a\x69\x34\xd3\x4c\x3d\x70\xe8\x2a\x4f\xfc\x1a\x31\x96\x94\x13\ \x7d\x41\x51\x2c\xcb\x90\x67\x36\xe1\xe8\xc1\x5e\x3c\x76\xb8\x1f\ \x27\x0f\x1f\x40\xdf\xbe\x76\xe8\x38\x0e\x84\x00\x02\xa5\x98\xb3\ \xb8\x30\xb1\x60\x8f\x3c\xe6\xed\x98\x5d\x71\x20\x2c\x08\xa2\x9b\ \x47\x7c\xe3\xd2\x98\x4b\x35\xf6\x06\x8b\xb9\x76\xe3\x6e\x70\x1a\ \xb3\x79\xec\x8d\x1b\xbf\x7d\xd6\x81\x83\xc6\x53\x06\xa9\x02\x87\ \x12\x20\xb6\xd4\x97\x63\xb0\xa7\x05\x83\xbd\xcd\x18\xe8\x69\x46\ \x51\x4c\xb8\xc3\x0b\x02\xee\x3e\x9c\xc0\xa5\x28\x90\x5c\xbd\x35\ \x0c\xaf\x2f\x10\x0b\x24\x94\x86\x3d\x2e\x1a\x74\xd8\xa8\xdf\xb2\ \x22\x78\x67\x57\x20\x84\x7c\x00\x02\xd1\x47\x50\x04\x22\x82\x06\ \x22\x9a\xa5\x05\x1c\x86\xe6\x4f\x7d\x1d\x00\x8c\x06\x03\x06\xfa\ \xba\x71\xf2\xf0\x01\x3c\x76\xb8\x1f\x83\x7d\xdd\x1b\x6e\x35\x2f\ \x50\x8c\xcd\xaf\xe1\xde\xe4\x2a\x86\xa7\xad\x98\x5a\xb4\x23\x10\ \xe2\x15\x6f\x8a\xf8\x9b\x47\x0c\x1c\x34\x6e\x76\x95\xde\xdc\x62\ \xe0\xa0\x31\x97\x34\x65\xdc\x94\xeb\xdb\x88\x79\x10\xc6\x38\x4a\ \xc0\x25\x01\x8e\x04\x00\x28\x01\x0e\xf1\x71\x25\x00\x40\x19\x4f\ \x8a\x10\x82\xce\xa6\x6a\x1c\xde\x1f\x01\x92\x83\xdd\x4d\x71\x64\ \x72\x38\xcc\xe3\xc6\xbd\x11\x5c\xba\x76\x0f\x97\xae\xdd\xc5\xf5\ \x7b\x23\x08\x06\x43\xb1\x71\x0d\x4f\x83\x6b\x16\xc1\x33\x37\x2b\ \xb8\x27\x17\x01\xea\x07\xe0\x67\x90\xad\xb1\xbc\x88\xc6\x87\x68\ \xa6\x1e\x38\xbe\xf2\xef\xbf\xf5\xf5\xc7\x0e\x1f\xc0\xe1\xfe\x7d\ \x30\x9b\x36\x2f\xce\x45\x9b\x1b\xf7\x27\xad\x11\xb0\x98\x59\x85\ \x3f\xc0\x27\x17\x4e\xa4\x32\x9b\xcb\x79\x05\x6a\x67\xf3\x24\xc3\ \x09\x45\xe0\x8a\xbe\x4f\x45\x40\x27\x0b\x80\x22\xe0\xa2\x34\x1e\ \x00\xa9\x08\xe8\x24\x00\x28\x03\x5c\x14\x91\xba\x96\xde\xf6\x3a\ \x0c\xf6\xb6\xe0\xf0\xfe\x56\xf4\x75\x36\xc0\x68\xd0\x6f\x7c\xb7\ \x3f\x10\xc4\x47\xb7\x1f\xe1\xd2\x47\x77\x71\xf1\xda\x5d\xdc\xba\ \x3f\xba\x99\xb9\x11\x82\x01\xc1\xbf\xba\x24\x78\xa6\x66\xa8\x6f\ \xc9\x1a\x05\x90\x75\x4f\x24\xc4\x00\x11\xb9\x34\xaf\x66\x9a\x6d\ \x02\xc7\xd4\x14\xfd\x3a\x00\x38\xbd\x41\x3c\x98\xb2\xe2\xde\x94\ \x15\xf7\xa7\x56\xb1\xe6\xf4\xa7\xc5\x43\x88\xdd\xfb\xb4\x80\x23\ \xc7\x32\x2a\x34\x21\x20\xa5\x19\x26\x29\x00\x17\xa5\x14\x46\x83\ \x0e\xfd\x5d\x8d\x38\xdc\xdb\x8a\xc3\x7d\xad\xe8\x69\xab\x87\x4e\ \xb7\x59\x2e\xb3\xb8\x62\xc5\xf7\x5f\x7d\x0f\xdf\x7f\xf5\x02\x46\ \x26\xe6\x36\x3f\x1b\xf6\xb8\xa9\x7f\x65\x41\x70\x8d\xcd\xd0\x90\ \xcb\x19\x03\x22\xeb\x9e\x88\xc6\x87\x68\xa6\x0e\x38\xfe\xfb\xb7\ \xc7\xbf\x7e\x7d\x64\x19\xb3\x2b\x2e\xd0\xad\xb8\x71\x95\x6e\xb8\ \x5d\x90\x51\x51\x0b\x48\x99\x24\x66\xcd\x66\x03\x0e\xed\x6b\xc1\ \x91\xfd\xad\x38\x71\xa8\x13\xad\x0d\x55\x1b\x3f\xf0\x9d\xe1\x71\ \xbc\xfc\xb3\x77\xf1\xa3\xd7\xdf\x87\x75\xcd\xb9\x09\x3f\x41\xc7\ \x1a\xf5\x2d\xce\xf1\xae\xb1\x39\x08\x21\xaf\x08\x44\xd6\x3d\x11\ \x56\x8a\x57\x03\x10\xcd\x40\x9e\xf8\x37\xaf\x7f\x5d\x89\x98\x64\ \xc5\xeb\xf1\x3c\xc4\xfa\x05\x2e\x76\xc3\x55\xdc\xb8\x7b\x28\xa3\ \x92\xca\x71\xa9\x21\x66\x59\xc7\xd5\xd5\x52\x8b\xe7\xce\x1e\xc2\ \xd3\xa7\x0e\xa0\xac\xb8\x20\xc2\x8b\xf0\x3c\x2e\x5c\xbe\x89\xef\ \xfd\xec\x5d\xbc\xf9\xde\x35\x04\xd6\x39\x11\xca\xf3\x34\x60\x5d\ \x11\xbc\x73\xb3\x82\x7b\x6a\x09\x00\x8b\x54\x0d\x31\x42\x19\x0d\ \x40\x34\xe0\x48\xc2\x0d\x97\x8b\xd7\x25\x37\x8f\x0c\xa1\x98\xad\ \x8c\x0a\x8d\x5f\xba\x21\x25\x46\x53\x04\x8e\x4c\x66\x54\x54\x10\ \xa3\xaa\xcf\xbd\x0a\x40\xd4\xe9\x08\x8e\x1f\xe8\xc4\x73\x67\x0f\ \xe1\xcc\x91\x9e\x0d\x5e\xc4\xe9\xf2\xe0\x27\x6f\x5d\xc6\xcb\x3f\ \x7b\x17\xd7\x6e\x3f\xdc\xdc\x5f\x3e\xe0\x17\x02\x96\x25\xc1\x3d\ \x39\x4d\xfd\x16\x5b\x14\x44\xc4\x9e\x88\x38\x2b\xa3\x01\x88\x06\ \x1c\xa9\x85\x13\x19\x27\x46\xd3\xbd\x29\x45\xc4\x64\xfc\x38\x32\ \xc0\x25\x43\x4c\x22\x03\x19\x15\x2a\xda\x5e\x02\x80\xe9\x9e\x7b\ \x15\x80\x58\x98\x6f\xc6\x13\xc7\xf7\xe3\xb9\x73\x83\x38\xb8\x6f\ \xb3\x06\x67\x7a\x7e\x19\x3f\x78\xf5\x3d\xbc\xfc\xea\x05\x4c\xcd\ \x2e\xc5\xf0\x21\x6e\x27\xf5\xad\xcc\xf3\xce\xe1\x09\xf0\x01\xb7\ \xc8\x13\x09\x89\xb8\x10\xd6\xc2\x3b\xcd\x76\xb1\xe9\xda\x8e\x7d\ \x71\x48\xe2\x40\xa4\x69\x34\xdd\x81\x32\xb2\x23\xca\xb2\xa0\x94\ \xca\x09\x71\xa9\x7c\x5f\x1c\x26\xa9\x1e\x87\xb1\x3f\x54\xdd\xfe\ \x53\xb9\x71\x68\xe2\xe3\x0d\x86\xc2\x18\x99\x5c\xc0\xab\xef\xde\ \xc0\x6b\xef\xdf\x84\xd3\xed\x43\x75\x45\x09\x9a\xeb\xab\x70\xf2\ \x48\x1f\x7e\xf3\xb3\x1f\xc3\xe3\x8f\x0d\xc0\xa0\xd7\x63\x7a\x7e\ \x19\x81\x10\x4c\xc4\x54\x56\xa5\x2b\x6c\x6f\x27\x86\xe2\x42\x04\ \xed\x41\xd0\x50\xac\x7c\x82\x58\x40\x09\xd8\x79\xe2\xd7\x9a\xa5\ \x0d\x1c\x2a\x6f\x5c\x9a\xa1\xfb\x97\x66\x08\x44\xb2\x8a\x31\x59\ \xf9\x3c\x95\x79\x97\xca\xa0\x6e\x72\x80\x26\x21\x66\x19\xdb\xbb\ \x3d\x7e\xdc\x7c\x30\x89\x97\x5f\xfb\x00\x57\xef\x8c\x82\x0f\xf3\ \x68\xa8\xad\x40\x5b\x53\x2d\x9e\x3e\x7b\x04\xbf\xf5\xb9\x8f\xa3\ \x6f\x5f\x1b\xac\x6b\x4e\xcc\x2e\xae\x72\xc4\x58\x52\xc6\x15\xb5\ \xb5\x11\x63\x69\x11\x42\xce\x20\x84\x20\xc1\xa6\x9c\x02\xa7\x01\ \x88\x06\x1c\x59\xba\x33\x53\x1b\x8b\x66\x73\x5f\xe4\x86\x4e\xf3\ \x3b\xe8\x36\x9e\xaf\x54\x40\x7b\xc5\xea\xc0\xe5\x1b\x8f\xf0\x9d\ \x57\x2f\x61\x74\x6a\x11\x46\xbd\x1e\xcd\x0d\x55\xe8\xe9\x68\xc6\ \xa7\x3f\xfe\x04\x86\x1e\x1b\xc0\x8a\xd5\x8e\xc9\xd9\x25\x8e\x18\ \x8a\x4b\xb9\xc2\xb6\x36\x62\x2a\x2b\x41\xd8\x1d\x02\xef\x5f\x07\ \x90\xd8\x55\xd5\xd0\x00\x64\xcf\x00\x07\x95\x71\x8a\xa9\xca\xbb\ \x82\xe6\xcc\x4d\x91\xd1\xaf\xa2\xdb\xec\x6d\x25\xf8\x10\xcd\xd0\ \xf9\xa2\x00\x04\x41\xc0\xd4\xfc\x0a\xde\xba\x74\x1b\x3f\x7c\xe3\ \x0a\xd6\x9c\x6e\xb4\x37\xd7\xa1\xb3\xb5\x1e\x9f\x7c\xee\x2c\x9e\ \x1b\x3a\x0e\x9b\xdd\x85\xf1\xe9\x05\x02\x7d\x61\x09\x57\xd0\xd2\ \xca\x99\x2b\xcb\x68\xd8\x13\x06\xef\x03\xe2\x65\x20\xe5\x74\x60\ \x35\xdb\x9d\x1e\x87\x5a\x60\xa0\x32\x71\xb5\x8c\xfb\x9c\xc8\xdd\ \xa6\x69\x8e\x23\x07\x68\x99\x9c\xfe\xb7\x98\xb7\xa1\xd9\x04\xcd\ \x04\x9f\xf7\x07\x43\xb8\x33\x32\x8d\x97\x5f\xbb\x8c\x55\x9b\x13\ \xed\xcd\xb5\x68\x6f\xae\xc3\x27\xce\x9f\xc2\x8b\xe7\x4f\xc3\xed\ \xf6\x62\x64\x72\x9e\x50\x5d\x7e\x11\x57\xd8\xd2\xc2\x99\xab\x2b\ \x28\xef\x0b\x23\xec\x41\x0c\x78\x68\x00\xb2\xeb\x81\x83\xa6\x79\ \x3f\xd0\x64\xaf\x70\x05\xe2\x8f\xa6\x33\x8e\x38\x7d\x9a\x1a\xd0\ \xc5\x65\x2b\xd2\x00\x3a\xd9\x71\x52\x00\x34\x9a\x21\x40\x4a\xe6\ \xf3\x02\x2f\x60\x78\x7c\x16\x2f\xbf\x76\x19\xf3\x4b\x56\xb4\x36\ \xd6\xa0\xbd\xa9\x16\xcf\x3f\x71\x02\xbf\xfc\xb1\xc7\x11\x08\x04\ \x31\x3c\x36\x43\x04\x62\x2e\xe4\x0a\x9a\x5a\x38\x73\x6d\x25\x84\ \xa0\x40\xc3\x2e\x21\x86\x03\x61\x91\xa8\x1a\x88\xec\x16\x8f\x63\ \x57\xc6\xf8\xb2\xfb\x98\x6c\xc8\xa5\x40\x68\xa6\x09\x74\x92\x52\ \xf3\x04\x40\xa4\xf4\x7e\xa6\x32\x45\xac\xf3\x35\x32\xb5\x80\x1f\ \xbc\x76\x19\x13\xb3\x4b\x68\xaa\xab\x42\x7b\x73\x2d\xce\x9f\x3d\ \x8a\xcf\xbe\xf8\x14\x28\xa5\x18\x1e\x9d\x41\x18\xc6\x02\xae\xa0\ \xb1\x99\xcb\xab\xab\x06\x0d\x53\x1a\x72\xf2\x22\x00\xd1\x00\x63\ \x77\x86\x2a\xbb\x38\xc6\x57\x18\x37\x77\xd2\xd0\x99\x01\x34\x25\ \xcf\x8d\xaa\x18\x87\xca\x78\x68\x14\x14\x93\x73\xcb\xf8\xe1\x1b\ \x97\x31\x3c\x3e\x8b\xfa\xea\x72\x74\xb4\xd4\x61\xe8\xe4\x20\x3e\ \xff\xc9\xf3\xd0\xeb\x75\x18\x1e\x9d\x42\x50\xd0\xe7\x73\xf9\x0d\ \x8d\x5c\x7e\x43\x2d\x00\xd0\xe0\x5a\x88\x11\xbe\x68\x20\xb2\xbb\ \x80\x23\x4b\x7c\x41\x2e\xc5\xf8\x29\x6c\x4c\xb3\x7c\xbc\x59\xf5\ \xb6\xb2\x00\x68\x33\x8b\xab\x78\xe5\xed\x2b\xb8\x79\x7f\x1c\x35\ \x95\xa5\xe8\x6c\xa9\xc7\x99\xe3\x07\xf1\xa5\x5f\x79\x16\xf9\x79\ \x26\x0c\x8f\x4e\xc3\x1f\x22\x79\x5c\x5e\x6d\x03\x97\xdf\x50\x47\ \x79\x4f\x00\x61\x0f\x0f\x76\xfa\x56\x0b\x5f\x76\x1e\x70\x7c\x61\ \x28\x99\xb9\x49\xbd\xfb\xac\x30\x8e\x8a\x82\x25\xd5\xfb\x43\xb3\ \x15\xcf\x64\x67\xac\x6d\xf7\xb6\x32\xec\x45\x2e\xae\xd8\xf0\xea\ \x85\x6b\xf8\xf0\xe6\x43\x54\x94\x16\xa1\xab\xad\x01\x8f\x1d\xee\ \xc3\xaf\x7f\xfa\x79\x94\x16\x17\x60\x78\x74\x1a\xde\x20\x35\x73\ \x05\x4d\xcd\xc4\x50\x52\x48\xfd\x16\x2f\x28\xaf\x79\x1e\xbb\x07\ \x38\x68\x92\x57\xad\x3a\xb7\x57\x8d\x27\x93\x91\x71\xe2\x4a\xcd\ \x21\x29\x81\x4f\x6b\x7c\x9a\xa1\x71\x72\xcd\xdb\xa2\x69\x8e\x13\ \xf3\x87\x15\xab\x03\xaf\xbf\x77\x1d\x17\xae\xdc\x45\x49\x51\x3e\ \xba\xda\x1a\x70\xec\x50\x0f\xbe\xf0\xcb\xcf\x20\x10\x08\xe2\xf6\ \xfd\x71\x02\x7d\x51\xa9\xae\xb0\xa5\x19\xe0\x40\x03\xd6\x00\xb4\ \x02\xb2\x1d\x0c\x1c\x47\xbf\x30\x94\xd6\xe4\x9a\x81\x8c\x4a\xa2\ \xb8\x7c\xab\x6f\x7c\x9a\x52\xc8\xa6\x72\x9c\x14\x00\x8d\x66\xe8\ \xb8\xb2\x19\x8a\xae\x7f\xdc\x66\x77\xe1\xed\xcb\xb7\xf0\xe6\xfb\ \x37\x50\x5c\x98\x8f\xfd\x5d\x2d\x18\x3a\x39\x88\x67\x1f\x3f\x8e\ \xe1\xd1\x69\x2c\xac\xd8\xf5\x9c\xb9\xba\x96\xcb\xab\xab\xa6\x21\ \xa7\x1f\xbc\x4f\xc0\x66\xe1\x98\x96\x7d\xd9\x91\xa1\x4a\x9a\x31\ \xbe\x96\x51\x49\x1e\xd0\x68\x86\x6e\xfc\x8c\x1e\x57\x06\x80\xda\ \xee\x72\xe3\x9d\x0f\x6f\xe3\xa3\xbb\x23\xd8\xdf\xd9\x82\x7d\x1d\ \x4d\xf8\xec\x8b\x4f\xa2\xbe\xb6\x12\xd7\x6e\x3f\x84\x3f\xcc\xe5\ \x73\x05\xcd\xcd\xc4\x50\x98\x4f\xfd\x2b\x1e\x40\x50\xe2\x3e\x34\ \xdb\x29\x1c\xc7\x56\x94\x3b\x6f\x4b\x8c\xaf\xc6\xc9\x49\x63\xc6\ \xcd\xfc\x00\x5b\x9b\x51\x51\xe3\xc9\x24\x13\x5a\x2e\xad\xd8\xf0\ \xc3\x37\x2e\xc1\xe3\x0b\xe0\x60\x6f\x3b\x0e\xf7\x77\xe1\x73\x2f\ \x3d\x05\xbb\xd3\x8d\x7b\x23\x53\x84\x18\x4a\xca\x74\x85\x2d\x4d\ \x80\x20\xd0\xe0\x5a\x10\xf2\xe4\xa9\x06\x28\xb9\x0b\x1c\x34\x43\ \x17\x75\x7a\x77\xf9\x6e\xcd\xa8\x6c\xcb\xc2\xbe\x74\x8f\x2b\x03\ \x80\x46\x29\xc5\x9d\x87\x13\xf8\xd9\x3b\x57\x51\x5b\x59\x86\xfd\ \x5d\x2d\x78\xe6\xdc\x31\x0c\x9d\x1c\xc0\x9d\xe1\x09\x58\xd6\xdc\ \x06\x2e\xaf\xb6\x9e\x33\x57\x57\xd0\x90\xc3\x07\xde\x4f\x65\x00\ \x44\x5b\xb6\x9f\x5b\xc0\x91\x44\x89\x78\x12\xee\xf9\xb6\x65\x54\ \xb6\x38\x75\x9c\x55\xd0\xa4\x19\xfc\xda\x6d\x4e\x11\x7b\xbc\x7e\ \xbc\x75\xe9\x06\xee\x3c\x9c\x44\xff\xbe\x56\xf4\x74\x36\xe3\x5f\ \x7d\xf2\x69\x94\x16\x17\xe1\xfa\x9d\x87\x08\x0a\x86\x02\xae\xa0\ \xb9\x85\xe8\xf3\x4d\xd4\xbf\xe2\x05\x28\x2b\xfb\x42\x35\xef\x23\ \x97\x43\x95\x04\x57\x10\x55\xbc\xca\xd5\x57\x2a\xd2\x64\xb6\x57\ \x2a\xed\xa6\xe9\x03\x1d\x13\xa2\x52\x24\x20\xe9\x2e\x01\xb4\x4c\ \x95\xba\xc7\x6e\x3e\xb7\xb4\x8a\x1f\xbe\x76\x11\xc1\x30\x8f\x81\ \xde\x76\x1c\x1b\xe8\xc1\xa7\x3f\xf1\x04\x96\x2d\x36\x3c\x1c\x9f\ \xe3\x88\xb1\xac\x82\x2b\x68\x6e\x84\x10\x0c\xd1\x90\x23\xac\x79\ \x1e\x39\x08\x1c\xad\x29\x01\x47\x36\x62\xfc\x6c\x1e\xe6\x76\x8b\ \xf7\xa4\x0e\x68\x3b\x29\xa3\x92\x8c\xf1\xbc\x80\x1b\xf7\x46\xf1\ \xda\xbb\xd7\xd0\x54\x57\x8d\xde\xae\x16\x7c\xec\xa9\x93\x38\x31\ \xb0\x1f\x37\xef\x8d\x60\xcd\xe5\x37\x72\xf9\xf5\x8d\x9c\xa9\xb2\ \x8c\x06\x6d\x1e\x08\x41\xcd\xd3\xc8\x49\xe0\xd0\xc4\x7b\xb6\x1c\ \xe8\xb6\x52\xbc\x47\xd5\x38\xdb\x90\x29\x72\x79\xbc\x78\xed\xc2\ \x55\x8c\x4c\xcc\xe1\x60\x4f\x3b\xfa\xba\x5b\xf1\x85\x4f\x3d\x03\ \x93\xc9\x88\xeb\x77\x1e\x81\x27\xe6\x22\xae\xa0\xa5\x05\xa0\x3c\ \x0d\x58\xfd\x22\xef\x43\xf3\x3c\x72\xca\xe3\xd0\xc4\x7b\xb6\xd6\ \xdb\xda\x02\x40\xa3\xa9\x0c\x42\x93\x5c\x35\xac\xba\x66\x45\x3a\ \xce\xd4\xdc\x12\xbe\xff\xda\x7b\x20\x84\xe0\xd0\xfe\x0e\x9c\x3a\ \xd2\x8f\x4f\x3d\x7f\x0e\x93\xb3\x4b\x98\x9c\x5d\xd6\x71\xe6\xea\ \x3a\x62\x2c\x2d\xa4\xbe\x45\x67\x96\x18\x1c\xcd\x52\x03\x8e\x44\ \xe2\x3d\x34\xfd\xdf\x49\x13\xef\x49\x7b\xac\xdd\xbc\xf6\x26\xcc\ \xf3\xb8\x7a\xeb\x21\xde\xba\x78\x1d\xed\xcd\x75\xe8\xed\x6a\xc1\ \x27\x9f\x3b\x8b\x8a\xd2\x62\x5c\xbc\x76\x17\x02\x97\x5f\xc2\x15\ \x34\xd6\xd3\xe0\x9a\x1b\xbc\x8f\xd7\x42\x97\x6d\x05\x8e\xcf\x0f\ \x25\x77\xd5\xe6\x9a\x78\x4f\xfa\x5a\x17\xb9\x12\xce\x6c\xa7\x78\ \x4f\x52\x1f\xc9\xb2\x17\x69\x77\xba\xf1\xd3\xb7\x3f\xc0\xec\xe2\ \x0a\x4e\x0c\xf4\xe2\xf8\x40\x2f\x9e\x3e\x73\x04\x17\xaf\xdd\x81\ \xc3\x1d\x34\x71\x05\x8d\x4d\x00\x84\x98\xd0\x45\xf3\x3a\x72\x22\ \x54\x51\x73\x21\xe4\x8c\x78\x0f\x76\x98\x78\x0f\xdd\xf2\x1b\x37\ \x9b\x4e\x7d\xa6\x48\x71\xd6\x30\x23\x93\x73\x78\xf3\xe2\x75\x0c\ \xf6\x75\x61\x7f\x57\x2b\x3e\xf3\xe2\x93\x98\x9d\x5f\xc1\xa3\x89\ \x39\x8e\x33\x57\xd7\x72\xc6\xb2\x22\xc1\xb7\xe0\x00\x28\xd1\x42\ \x97\xed\x00\x0e\x4d\xbc\x47\xf5\xfb\xd9\x23\x10\xb7\x57\xbc\x87\ \x66\x86\xed\xcd\xf8\xe7\x23\xcd\xa3\x2e\xa1\xa4\xa8\x00\x83\x7d\ \x5d\xf8\xd8\x53\x27\x51\x53\x59\x8e\xf7\xaf\xdc\x06\xcf\xe5\x17\ \x73\x05\x4d\x0d\x34\x68\xd7\x42\x97\x6d\xf7\x38\x34\xf1\x9e\x2d\ \x9e\x71\x73\xbd\xd4\x3c\x85\xcc\x4c\x92\x1e\x1a\x73\x9c\x18\x0f\ \x8d\x17\x04\x5c\xbc\x7a\x17\xe3\x33\xf3\x38\x7d\xa4\x1f\x47\x0f\ \xee\xc3\x33\xe7\x8e\xe1\xd2\x47\x77\xb1\xe6\x0a\x18\xb9\x82\xa6\ \x26\x10\x22\xd0\xc0\xaa\x4f\x0b\x5d\xb6\x14\x38\x34\xf1\x9e\x8c\ \x80\x5d\x96\xd3\xd0\x5b\x3b\xfb\x27\xb9\x6a\x38\x09\x40\x4b\x7a\ \x9c\x28\xa0\x8d\xcf\x2c\xe0\xcd\xf7\xae\x61\xb0\xbf\x0b\xbd\x5d\ \x2d\xf8\xf4\x27\x9e\xc4\xc2\xf2\x2a\x86\xc7\x66\x39\xce\x5c\x55\ \xcb\x19\xcb\x8a\x05\xdf\xa2\x63\xb3\x33\xa5\x16\xba\x6c\x89\xc7\ \x41\x55\xff\xf8\x39\x2a\xde\xb3\x83\x4b\xcd\xb3\xea\x6d\x65\xc9\ \x8b\xdc\x8e\xf3\xe2\x74\x79\xf0\x93\x37\x2f\xa1\xa4\x38\x12\xba\ \x3c\xff\xc4\x63\x68\xa8\xad\xc2\x7b\x1f\xde\x06\x4f\xf2\x8a\x23\ \x59\x17\x87\x07\xbc\x97\xd7\x6e\xef\xad\x0c\x55\x12\xcc\x06\x39\ \x2d\xde\x93\x8e\x9b\x9f\x01\xa0\x4b\xc7\x73\xdb\x89\xe2\x3d\xdb\ \xe5\x45\xf2\x82\x80\xf7\xaf\xde\xc6\xf8\xf4\x02\x4e\x1f\xed\xc7\ \xe1\xfe\x6e\x3c\xf7\xc4\x09\x7c\x70\xfd\x1e\x6c\x0e\xbf\x91\x2b\ \x68\x6c\x22\x84\xa3\xa2\xd0\x85\x66\x06\xba\x34\x53\x00\x8e\x4c\ \x5f\x55\x7b\x5c\xbc\x27\x85\xe3\xdd\xad\xa5\xe6\xb2\x7b\x97\xc2\ \x58\xe3\xd3\x0b\x78\xe3\xbd\xab\x18\xec\xef\x46\x4f\x47\x33\x3e\ \xf3\x89\x27\xb1\x64\xb1\xe1\xfe\xc8\x34\x47\xcc\x55\x35\x9c\xa9\ \xbc\x44\xf0\x2d\x39\x40\x85\x58\xd0\xd0\x00\x24\x23\xc0\x71\x54\ \x1e\x38\x34\xf1\x1e\x86\xbf\x45\x33\x34\x4e\x26\xf6\x67\xaf\x89\ \x12\x31\xde\x77\xba\x3d\x78\xe5\xcd\x8b\x28\x2e\xcc\xc7\x60\x5f\ \x37\x9e\x1b\x3a\x8e\x96\x86\x1a\xbc\x77\xe5\x36\xc2\x30\x17\x71\ \xf9\x4d\x0d\x34\xe4\x70\x21\xec\x0d\xc7\x00\x07\xd5\xb8\x8f\x4c\ \x02\x87\x26\xde\xb3\xb5\x33\x6e\x2e\x65\x54\x62\xdf\x97\x2d\x35\ \x4f\xd7\x93\x49\x61\x7f\x54\x00\x5a\x24\xeb\x72\x1b\x63\x53\x73\ \x38\x7d\xec\x20\x06\xfa\xba\xf0\xc2\x93\x8f\xe1\xc3\xeb\xf7\x61\ \x75\x78\x8d\x5c\x5e\x7d\x23\xc2\x1e\x0f\x0d\xb9\x02\x22\xf0\xd0\ \x40\x23\x75\xe0\x90\xa9\x1c\xd5\xc4\x7b\xb6\x16\x34\x69\x8e\x1e\ \x57\x8e\x86\xa2\xac\xa2\xbf\xf1\x99\x79\xbc\xf1\xde\x55\x1c\xee\ \xeb\xc6\xbe\x8e\x66\x7c\xe6\xc5\x27\x31\x32\x31\x8b\xb1\xe9\x25\ \x1d\x97\x57\x57\x0f\x21\x14\xa0\xc1\x35\x3f\x03\x38\x34\x00\x49\ \x16\x38\x5e\xfc\xcc\xef\x0e\x2d\xaf\x79\x55\x88\xf7\xa8\x5b\xab\ \xa2\x65\x54\xb0\xe3\xc5\x7b\x68\x8e\x9c\x97\x54\x3c\x37\xa7\xcb\ \x83\x57\xde\x78\x0f\xa5\xc5\x45\x38\xb4\xbf\x0b\x1f\x7f\xfa\x14\ \x96\x2d\x6b\xb8\xfb\x68\x8a\xe3\xcc\xd5\x75\x20\x84\xa7\x81\x55\ \x0f\xc3\xf3\xd0\xc0\x23\x19\xe0\xf8\x97\xbf\xfe\xcb\xa1\x30\x4f\ \x31\x32\x67\x53\xf7\xbb\x6b\xe2\x3d\xc9\xb9\xe1\xbb\x3c\x45\x9c\ \x8b\x5e\x24\x2f\x08\x78\xef\xca\x2d\x78\xfd\x01\x9c\x3a\x72\x00\ \xcf\x3c\x7e\x0c\xe1\x30\x8f\x2b\xb7\x1e\x12\xce\x5c\x59\x43\x38\ \x93\x8e\xfa\x97\x5d\x1a\x78\xa4\x01\x1c\x5f\xfd\xea\x1f\x0c\xf5\ \xb5\x56\xa0\xb1\xaa\x08\xb7\xc7\x56\xc0\x0b\xc2\x16\xc6\xf8\xd9\ \x3c\xb4\xdc\x14\xef\xa1\x2a\x3c\x37\x2d\xa3\x92\x99\x4b\xe9\xd6\ \xfd\x11\xcc\x2f\x59\x30\x74\x72\x10\x67\x4f\x1c\x42\x49\x51\x21\ \xde\xfd\xf0\x36\x88\xb1\xac\x92\x18\x8a\xf2\xa8\x77\xde\xa1\x81\ \x46\x1a\xc0\x01\x00\x0d\x95\x85\x38\xdc\x5d\x83\xbb\x93\x16\x78\ \xfc\x21\x4d\xbc\x27\xeb\xb3\x7f\xae\x89\xf7\xd0\xd4\x81\x68\x9b\ \x32\x2a\x6a\xec\xd1\xc4\x0c\xee\x8f\x4e\xe2\xa9\x33\xc7\x70\x7c\ \xa0\x17\xed\x2d\xf5\x78\xe3\xbd\x6b\xa0\xba\xa2\x52\xce\x54\x51\ \x2c\x78\xe7\xd6\xa2\x83\x6b\x00\x92\x0a\x70\x00\x40\x71\x81\x09\ \x67\x0e\x36\x62\x7a\xd9\x89\xe5\x35\xcf\xee\x88\xf1\xe5\xb6\xd1\ \xc4\x7b\x54\x03\x5a\xb6\xc4\x7b\xd4\x78\x68\xf2\x21\xaa\x7a\x80\ \x9a\x99\x5f\xc2\x95\x9b\xf7\xf1\xf4\xd9\x63\x18\xd8\xdf\x89\xc1\ \xbe\x2e\xbc\x76\xe1\x4a\x24\x5d\x9b\x57\x53\x21\x78\xe7\x6d\xd1\ \x5a\x0f\x0d\x40\x52\x01\x0e\x00\x30\x1a\x74\x38\xd5\x5f\x8f\x50\ \x58\x60\xf0\x1e\x29\x90\xd0\x39\x1d\xce\xc8\x5c\xfb\xdb\x7a\xe3\ \xa6\x1f\xe3\x67\xec\x54\xee\x80\x50\x54\xce\x73\x13\x7b\x40\xcb\ \x16\x2b\xde\xb9\x7c\x03\x4f\x9c\x3e\x82\xfe\x7d\xed\x38\x77\xe2\ \x20\x5e\xbb\x70\x15\xfe\x10\x97\xcf\xe5\xd5\xd7\x50\xdf\xd2\x1a\ \x68\x88\xd7\xc0\x23\x45\xe0\x20\x04\x20\x84\xa0\xbf\xbd\x0a\xf5\ \x95\x45\xb8\x35\x1a\xe1\x3d\xd4\xe4\xdf\xb7\x5f\xbc\x27\x37\x97\ \x86\xa7\xbc\xf9\x1e\x12\xef\xc9\xc8\xd7\x26\xd8\x78\xcd\xe1\xc2\ \xeb\xef\x7e\x88\x33\xc7\x0e\x61\x7f\x57\x1b\x9e\x7d\xfc\x38\xde\ \x78\xef\x1a\x5c\x3e\xde\x4c\x0a\xea\xeb\x68\x60\xd5\x0e\xde\xcf\ \x23\xb2\x4a\x4e\x2b\x12\x53\x30\x4e\xe9\x8f\x8f\xed\xaf\xc7\x1f\ \x7c\xf9\x0c\xaa\x4a\xf3\x53\xbc\xaa\xb6\x5a\xbc\x07\x9a\x78\xcf\ \x16\xcc\xfe\xd9\x14\xef\xc9\xb6\x17\xb9\x6c\xb1\xe1\x4b\x5f\xf9\ \x3f\x71\xfb\xc1\x08\x3a\x5a\xea\xf1\xca\xdf\xfd\x11\xf6\xb5\x37\ \x81\xe8\xf2\x0b\xf4\xd5\xa7\xcf\x10\x73\x55\x03\x80\x12\x00\x05\ \x00\x4c\x00\xf4\xd8\x6c\x8e\xad\x99\x92\xc7\x11\x6b\x25\x85\x26\ \x9c\x3d\xd4\x88\xc9\x25\x07\x56\x62\x78\x0f\xad\xd4\x3c\xc9\x71\ \x76\x94\x78\xcf\xce\x0a\x45\x93\x5d\xd8\x17\x08\x04\xf1\xea\xdb\ \x97\xb1\xaf\xb3\x15\xfd\xfb\xda\xf1\xd2\xb3\x67\x70\xe5\xe6\x70\ \xa4\x21\x76\x5e\x43\x3d\xc2\x1e\x2f\x0d\x39\x63\xab\x4c\x05\x2d\ \x74\x49\x12\x38\x00\xc0\x64\xd0\xe1\xf4\x81\x46\x04\x43\x3c\x46\ \x66\x6d\xb9\x1d\xe3\x2b\x8c\xab\x95\x9a\xa7\x9b\xe2\xdd\x3a\xf1\ \x9e\x6c\x87\xa2\x61\x3e\x8c\xd7\x2e\x7c\x88\xfa\x9a\x4a\x1c\xea\ \xeb\xc6\x27\x9f\x3b\x8b\xfb\x23\x53\x11\x45\xf5\xbc\xda\x7a\xd0\ \x70\x80\x06\xd7\x7c\x22\xf0\xd0\xc2\x16\x16\x70\x10\x19\xe1\xb5\ \x75\xde\xe3\x40\x47\x35\xea\x2a\x0b\x71\x7b\x6c\x19\x61\x3e\x33\ \x68\xa1\x95\x9a\xe7\x90\xe7\x96\x83\xe2\x3d\xea\x42\xd4\x14\x8a\ \x07\x01\x50\x41\xc0\xdb\x17\xaf\xc1\x6c\x36\xe1\xf8\xc0\x7e\x7c\ \xe2\xfc\x29\xcc\x2d\x5a\xf0\x60\x74\x86\xe3\xf2\x6a\xea\x00\xc2\ \xd3\xc0\xaa\x3b\x0a\x1a\x9a\xd7\x91\x0a\x70\xac\x5b\x53\x75\x31\ \x06\xbb\x6a\x71\x7b\x6c\x05\x5e\x7f\x48\x79\x8e\xd3\x4a\xcd\xb7\ \xcf\xdb\xda\x45\xe2\x3d\xc9\x7a\x6e\xc9\x86\x60\x1f\x5c\xbf\x03\ \x8f\xd7\x87\x33\xc7\x07\xf0\xdc\xd0\x71\x78\xfd\x01\x7c\x74\xe7\ \x11\xe1\xcc\x95\x35\x10\x42\x7e\x1a\x5c\xf3\x46\x3f\xcc\x6b\xe0\ \x91\x22\x70\x00\x40\x69\xa1\x19\x67\x0f\x35\x61\x62\xc1\x0e\x8b\ \xdd\xab\x72\x0a\xde\x02\xf1\x9e\x0c\xf0\x10\x9a\x78\xcf\xde\xf4\ \x22\x6f\xdf\x1f\xc1\xf4\xc2\x12\x9e\x3c\x75\x0c\x4f\x9c\x1a\x84\ \xd7\xb7\x0e\x1e\x55\x35\x08\x7b\xdc\x34\xe4\xf4\x89\xbc\x0e\xaa\ \x01\x47\x92\xc0\x01\x00\x26\xa3\x0e\x67\x0f\x36\xc1\x17\x0c\x61\ \x94\xc5\x7b\x6c\x87\x78\x4f\xac\x53\x4c\xd3\x28\xed\x4e\x92\x87\ \xd0\xc4\x7b\x52\x74\x42\xb2\x45\x8c\xa6\x98\x86\x1e\x99\x98\xc6\ \x83\x91\x09\x3c\x37\x74\x0a\x43\x27\x07\x30\xb3\xb0\x12\x09\x5b\ \xcc\x35\xb5\x34\x68\x73\x20\xec\x0d\xc4\x84\x2d\x82\x06\x1c\x0a\ \x00\x91\x88\xf7\x38\xd4\x59\x83\x9a\xf2\x02\xdc\x1a\x5b\x06\x2f\ \x6c\x43\x77\xb7\x8c\x7d\xe1\x16\x89\xf7\x50\x9a\xde\x38\x9a\x78\ \x4f\x56\xaf\xaf\xe9\xb9\x45\xcc\x2e\x2c\xe1\xfc\xb9\x13\x38\x7f\ \xee\x28\xee\x3e\x9c\x58\x27\x4c\x6b\xa9\xdf\x62\x03\xef\x0f\x69\ \x9c\x47\x9a\xc0\xb1\x6e\x2d\xb5\x25\x18\xec\xae\xc5\xad\xd1\xe5\ \x0d\xde\x43\xcb\xa8\x64\x17\xd0\x72\x5d\xbc\x87\x10\x12\x7d\x00\ \xc0\xe6\x73\x12\xfd\x1b\x08\x40\x10\xbb\x0d\x62\xb6\x21\x31\xdb\ \x80\x3d\x0e\x21\x88\xbe\x15\x7d\xbe\xf9\x7e\xec\xc4\x46\xa2\x83\ \xac\x6f\xbf\xb1\xcd\xc6\x6b\xf1\xf7\x13\x8c\x4e\xcc\xc0\xe3\xf5\ \xe1\xec\x89\x41\x3c\xff\xc4\x09\x5c\xfe\xe8\x1e\x16\x56\xec\x7a\ \x92\x57\x53\x43\xbd\x0b\xab\xa0\xa1\xf0\x5e\x07\x8f\x0d\xe0\x48\ \x26\x4c\x61\xbd\x5f\x56\x64\xc6\xb9\x81\x66\x8c\xcf\xaf\x61\xd5\ \xe1\x8d\xf9\xd1\xb1\x71\xc1\x20\xe6\x39\x89\xf6\x1c\x57\xb5\x8d\ \x68\x3b\x24\xf8\x8c\xea\x6d\x12\x7c\x26\xa9\x6d\x92\x3c\x2e\xc9\ \x58\xaa\x8f\x8b\x88\x6e\x30\x48\x6f\x02\xc9\x4d\x11\x7f\xb3\xc5\ \xdf\xb8\xb1\x37\x21\x63\x5c\xd1\x76\xe2\x1b\x1c\xa2\x71\xd7\xbf\ \x2f\xdb\xa1\x68\x3a\x9e\x1b\x55\x11\x8a\xde\x7e\x30\x02\xb3\xc9\ \x88\xe3\x03\x7d\x78\xe1\x89\x13\x78\xeb\xfd\xeb\xb0\x3a\x7c\x46\ \x92\x57\x53\x25\x78\x67\x2d\xa0\x02\xbf\x97\x39\x8f\x8c\x01\x07\ \x00\x98\x8d\x7a\x9c\x1d\x68\x81\xc7\x1f\xc2\xd8\xac\x0d\x5a\x46\ \x25\x89\xcd\xb3\x28\xde\x43\x18\x8f\x44\xa0\x95\x15\xd0\x4e\x05\ \x90\x93\x06\x6d\x2a\x03\xda\x54\x66\x5c\xca\xdc\x47\x10\x8a\x0f\ \xae\xdf\x41\x43\x6d\x15\x06\xfa\xf6\xe1\xd9\xc7\x8f\xe3\x67\x6f\ \x7f\x00\x97\x8f\x37\x73\xe6\xea\x72\xc1\x33\x63\x01\xa8\xb0\x57\ \x3d\x8f\x94\x80\x43\x69\x5b\x8e\x10\x0c\x76\xd7\xa2\xba\xac\x10\ \xb7\x46\x97\x41\x05\x0a\x42\xa3\xb3\x5e\xf4\xff\x64\xe3\x95\xf2\ \xeb\xcd\x77\x62\x5e\x53\x99\x71\xe2\xde\x27\x31\x37\x0c\x61\x8c\ \x8d\xb8\xbf\x10\x90\xe8\x3e\x6e\xbe\x1b\xbf\x4f\x49\x8c\x13\xbd\ \x71\xd9\xe3\xa8\x3c\x56\xca\x3e\xf6\xf8\xfd\x89\x01\x00\xa5\xf7\ \xf6\x88\x78\x4f\xc6\xe6\x06\xd1\x07\xde\xfd\xe0\x3a\xf6\x77\xb7\ \xa3\xbf\xa7\x03\x4f\x9e\x3e\x82\x1f\xbf\x71\x29\xb2\x30\xce\x54\ \x5e\x24\x78\x66\xac\x88\xa4\x68\x63\xc1\x03\x7b\x01\x40\x32\x0e\ \x1c\xeb\xd6\x5a\x57\x8a\x81\xae\x1a\xdc\x1c\x5d\x86\x2f\xa6\xde\ \x63\x2b\x4e\x69\x4e\x8b\xf7\xac\xcf\x8a\xcc\xd9\x94\xca\xcc\xb8\ \x54\x26\x54\x59\x0f\x27\xe4\xe3\xf5\xf8\x10\x64\xf3\xfd\x8d\x50\ \x25\x13\xa0\x9d\xec\x38\x51\xa0\xce\xc8\x38\xe2\xcf\xd1\x14\xc6\ \x21\xf2\xa1\x1c\xa5\x14\xbf\xb8\x78\x0d\xc7\x07\xfb\xb1\xbf\xab\ \x0d\xa7\x8e\xf4\xe1\x47\xaf\xbf\x8f\x30\xcc\x45\xc4\x50\x64\xa6\ \xde\xf9\x35\x86\xd7\xb1\xb7\x81\x23\xdd\xf0\xa5\xbc\x38\x0f\xe7\ \x06\x5a\x30\x36\x67\x83\x25\xca\x7b\xc4\x4d\x87\x4a\xd3\x27\xa2\ \x3d\xc8\x95\x3e\x93\xec\xf3\xed\xfe\x7c\xba\xa2\x3b\xb2\x62\x22\ \x99\x16\xef\x51\xc1\x1f\xec\xc2\x8c\x8a\x9c\x85\x79\x1e\x6f\xbd\ \x77\x05\x8f\x9f\x3a\x8a\xfd\xdd\x6d\x38\xd8\xdb\x81\x57\xde\xbc\ \x04\xaa\x2b\x2a\x25\x9c\x91\xa3\xfe\x65\x07\xa4\x69\x5a\xba\xeb\ \x81\x23\x13\xfc\x86\x2c\xef\x61\xd2\xe3\xdc\x60\x2b\xdc\xbe\x20\ \xc6\x62\xf4\x3d\x72\x41\xbc\x27\x96\xf9\x67\x11\x7d\x50\x22\x06\ \x65\x08\xc5\xa4\x08\xc4\x0d\x97\x43\xf4\x1a\x4a\xef\x2b\x03\x1a\ \x4d\x15\xd0\x08\x0b\xb4\xa9\xcc\x76\x54\xc4\x37\xd0\x0d\xbe\x40\ \xcc\x1f\xb0\x3d\x29\x1a\xe7\x49\x41\xc4\x37\xc8\x8f\x23\xf6\xa4\ \x92\xcf\xa8\xc8\x7a\x68\x09\x42\xd4\x40\x20\x88\x77\x2e\x5d\xc3\ \x33\x43\x27\x71\xa0\xa7\x1d\x6d\x4d\x75\xf8\xf9\x3b\x57\x40\x8c\ \xa5\x95\x00\x09\x47\x4b\xd3\xf9\xbd\xc2\x77\x64\x0c\x38\x12\xf1\ \x1e\x87\xf7\xd5\xa1\xaa\xb4\x00\xb7\x47\x17\x21\x50\x9a\x62\x46\ \x85\x48\x32\x04\x99\x62\xfe\x35\xf1\x9e\x0c\xcd\x93\x5b\x22\xbc\ \xa4\x4e\xbc\x27\x15\x95\x32\xa5\x71\x3c\x5e\x2f\x2e\x5d\xbd\x89\ \x17\x9e\x3a\x8b\x81\xbe\x4e\x14\x17\x15\xe0\xc2\x07\xb7\xc0\x99\ \x2a\xaa\x21\x04\x7d\xd1\xd2\xf4\x3d\x41\x96\x6e\x09\x70\xac\x5b\ \x5b\x7d\x19\x0e\x76\xd6\xe2\xd6\xa3\x45\xf8\x82\x21\xe9\xb6\x60\ \x10\x9c\x54\x4c\x46\xae\x4f\x7a\x51\x36\x1c\x54\x86\x1c\xa4\x49\ \x13\x88\x24\x01\xf1\x28\xbb\x0d\x95\xcf\x56\x64\x36\x0d\x4d\x54\ \x01\xe2\xe6\xcc\x0c\xa8\x49\xc5\x8a\x81\x96\x95\xd2\x95\x03\xe4\ \x58\x97\x81\x2a\x79\x4e\x09\x3d\xa9\xcd\xf7\x29\xe3\xfd\xcd\xfd\ \x55\xc8\xba\xa4\x5b\x02\xa0\x22\x53\x64\x77\xb8\x70\xed\xf6\x7d\ \xbc\xf0\xd4\x59\x9c\x18\xec\x8d\x51\x4f\xaf\xaa\x41\xd8\xed\xa2\ \x21\x97\x2f\xea\x79\xec\xea\x75\x2d\x49\x03\x47\xba\x20\x53\x51\ \x92\x8f\x33\x03\xad\x18\x9d\xb5\xc2\x6a\xf7\xc5\xb9\x86\x89\xa6\ \xae\xe4\xc4\x7b\xe4\xf9\x80\xac\x8a\xf7\x24\x24\xd6\xa9\xfa\x49\ \x5a\x13\xef\x49\xee\xd0\xb2\xb4\xb0\x4f\xec\xe9\xae\x58\xac\x18\ \x1e\x9b\xc0\xf3\x4f\x9c\xc6\xd9\x13\x87\xb0\xb4\x62\x8b\xf6\x6d\ \xa9\xa9\xa5\xc1\x35\x9b\xa8\x34\x7d\x57\x12\xa6\xb2\xc0\x91\x4d\ \xde\x23\xcf\xa4\xc7\xe3\x83\xad\x70\x7a\x02\x98\x58\xb0\xa5\x9f\ \xc7\x8f\xdb\x86\xca\xcc\xf8\x54\x61\xd6\x49\xcc\x6f\xb0\x66\x6f\ \xd9\x30\x29\x26\xad\x2a\x8d\x9f\xc5\xac\xbe\x38\x9e\x86\xe8\xff\ \xb1\xd9\x82\xd8\x07\x95\x78\x56\xf1\x1e\x18\x55\xf6\xd0\x88\xda\ \x8c\x4e\x2a\x85\x6f\x44\xb9\xa8\x4c\x85\x27\xa3\xc8\x09\xa9\xf4\ \x5c\x58\x1c\x12\x49\xa1\x38\x8e\x65\x33\xf3\x4b\x98\x5b\x5c\xc1\ \x53\x67\x8e\xe3\xa9\xb3\x47\x30\x3c\x3a\x8d\xb1\xe9\x25\x1d\x31\ \x55\x55\x0b\x9e\xe9\x25\x50\x21\xbc\x9b\x39\x8f\xac\x02\x87\x22\ \xef\xc1\x11\x1c\xe9\xa9\x47\x79\x71\x7e\x84\xf7\x10\x68\xe6\x27\ \x4b\x4d\xbc\x07\xe9\x37\x96\x4a\x56\xbc\x07\x09\x32\x33\xe9\x89\ \xf7\xc4\x16\x68\xa5\x14\xca\xa5\x02\x3c\x32\xa4\xf8\xe8\xc4\x14\ \xbc\x5e\x1f\xce\x1c\x1f\x8c\xe8\x97\xbe\x7b\x2d\xd2\xab\xd6\x58\ \x56\x10\x29\x10\xdb\x08\x59\x84\x5d\x07\x1c\x5f\xfb\x5a\xbc\x02\ \xd8\x56\x01\xc7\xba\xb5\x37\x94\xe3\x40\x67\x2d\x6e\x8e\x2c\xc0\ \x1f\xe0\x37\x36\x20\x2a\x66\x87\x94\x89\x51\x66\xdd\x43\xee\x94\ \x9a\xb3\xbf\x3f\xf9\x52\x73\x45\x4f\x0a\xb1\x85\x6f\x2a\xea\x23\ \xa0\xa2\x3e\x82\x12\x79\xae\x89\xb0\x6b\x53\xa4\xc7\x4e\x65\xce\ \x3d\x95\xb9\x9e\x92\x0c\x2d\x33\x50\xe3\x13\x1b\xa2\xde\xba\x3f\ \x82\xf2\xd2\x62\x0c\xf4\xf7\xe0\xf4\xb1\x03\xf8\xee\x4f\x7e\x81\ \x30\xcc\xc5\x04\x08\xd1\xc0\xaa\x0b\x80\x78\x5d\xcb\xee\xf1\x38\ \xb6\x02\x20\xd4\xf0\x1e\x8f\x66\x56\x61\x75\x78\x13\xcf\xd2\xbb\ \xbc\xd4\x7c\xa7\x88\xf7\xa8\x06\x76\x92\xc1\x42\x2f\x2a\xfa\x1c\ \x81\x68\x41\x5c\xfa\xa5\xe6\x2c\xa0\x97\xf3\x4a\x08\x01\xae\x5c\ \xbf\x83\xd3\xc7\x0f\xa3\xa7\xb3\x05\xf5\x35\x15\x78\xed\xc2\x55\ \x10\x53\x79\x25\x0d\x58\x6d\xe0\xbd\x7e\x46\xc8\x42\xf7\x14\x70\ \x64\x93\xf7\xc8\x37\x1b\xf0\xf8\xe1\x36\xd8\xdd\x7e\x4c\xce\x4b\ \xfb\xb9\x6c\xb5\x78\x0f\x11\x67\x66\x08\x6b\x85\xa7\x42\xc5\xa6\ \x5a\xee\x44\x8e\x07\x60\x7a\x52\xdb\xb3\x46\x44\x2e\x0c\x50\x8d\ \x39\x74\xeb\x31\x7d\x2b\xd3\xd0\xbc\x20\xe0\xc3\xeb\xb7\xf1\xd2\ \x73\x4f\x62\xa0\xaf\x0b\x73\x8b\x16\xdc\x1f\x99\xe6\x88\xb9\xb2\ \x52\x70\x4f\x2f\x01\xbb\x8f\xef\xc8\x19\xe0\x58\xe7\x3d\x8e\xf6\ \x36\xa0\xb4\xc8\x84\xdb\xa3\x4b\x12\xde\x63\xfb\xc4\x7b\x90\xdc\ \x38\x5b\x2c\xde\x93\x52\xa9\x79\x12\xa9\x58\xc4\xa6\x42\xd3\x4d\ \x31\xcb\x86\x69\x44\x5d\x8a\x59\x0c\xb4\xc8\x4e\xa9\x39\x9b\x14\ \x97\x3f\x2e\x97\xdb\x8d\xd9\x85\x25\x3c\x33\x74\x0a\x8f\x3f\x76\ \x08\xaf\x5d\xb8\x02\x9b\xc3\x6f\xe4\x8c\x25\x05\x82\x77\x76\xd7\ \xf1\x1d\x4c\xe0\xc8\x36\x40\x24\xda\xb6\xa3\xb1\x02\xfd\x1d\x11\ \xde\x23\x10\x0c\xab\x98\x19\x89\xf2\x4d\xa0\xc4\xea\xcb\x78\x05\ \x52\x56\x3e\x79\xa2\x91\x45\x20\xc6\x7b\x32\x34\xe6\x3d\x51\x26\ \x44\x72\x73\xb1\xd6\xa8\xa8\x4f\x65\x6f\xec\x8f\x26\xde\x93\x35\ \x52\x7c\x7c\x7a\x16\x65\x25\x45\x18\xec\xef\xc5\xc9\x23\xfd\xf8\ \x97\x57\x7e\x01\x9e\xe4\x15\x03\x34\x48\x03\xab\x4e\xb0\x17\xc4\ \x69\xc0\x91\xc9\x31\x2a\x4b\x0b\x70\x66\xa0\x15\x0f\xa7\x2c\xb0\ \x39\xbd\xdb\x7a\xfd\x24\x73\xf1\x64\xb4\xd4\x1c\xb1\xff\xc6\x7b\ \x32\xec\xd4\x2c\x64\x52\xb3\xe2\xe2\x34\xba\x51\x2a\x2e\x8d\xf1\ \x95\x08\x67\x71\xa9\xb7\xd8\x93\x41\x1a\xe2\x3d\x6c\x1e\x42\x0c\ \xa2\x4a\x3c\x44\x6c\x4a\x39\xbe\xb4\x5c\x21\xb4\x4c\x72\x35\xf4\ \xc6\x38\x32\x93\xd1\xd5\x1b\x77\x71\xee\xe4\x11\xf4\x74\xb4\xa2\ \xa6\xaa\x1c\x6f\xbc\x7b\x0d\x9c\xa9\xbc\x8a\x06\x56\xad\xe0\x7d\ \x81\xdd\xc2\x77\xa4\x0d\x1c\xd9\xe6\x3d\x86\x8e\xb4\xc3\xe6\xf4\ \x61\x6a\x61\x2d\x41\x46\x05\xea\x78\x80\x8c\xea\x40\x10\xc9\xc5\ \x93\x2e\xb2\xe5\x76\xa9\xf9\xf6\xea\xc8\xaa\x17\xef\x91\x8b\xfc\ \xd2\xdf\x9f\x44\x9d\x08\x79\x41\xc0\xb5\x1b\x77\xf1\xe2\x73\x4f\ \xe2\x70\x7f\x37\xa6\xe7\x96\x30\x3c\x36\xcb\x11\x73\x55\xa5\xe0\ \x9e\x5a\x02\xe8\xae\xe0\x3b\x72\x1a\x38\xd6\x79\x8f\x63\xfb\x9b\ \x50\x52\x60\xc6\x9d\xd1\x45\x08\x82\x7a\x8d\x58\xa9\x80\x0d\x91\ \x2c\x0d\x8f\x8b\x7b\x49\x2a\x25\xd9\x5b\x51\xee\x4c\x14\x4b\xbd\ \x91\x86\x27\x23\xe5\x01\xe2\x4b\xe8\x15\x4b\xef\x13\xaa\x97\x91\ \xb4\x4b\xdd\x55\x15\x68\x31\x09\xe7\x74\x32\x2a\x44\x9e\x5f\x51\ \xb1\x94\xdf\xee\x74\x61\x7e\x69\x05\xe7\xcf\x9d\xc4\xb9\x13\x03\ \x78\xf5\x17\x1f\x62\xcd\x15\x30\x72\xc6\xd2\x7c\xc1\x3b\xbb\xba\ \x1b\xf8\xf7\xe7\xfe\xdb\x00\x00\x20\x00\x49\x44\x41\x54\x0e\xd5\ \xc0\xb1\xdd\xbc\x47\x67\x53\x05\xfa\x3a\x6b\x71\x63\x78\x0e\xc1\ \x60\x38\xe2\x86\x53\xd6\x9a\x94\x78\xfe\x40\x71\xfe\x48\x51\x3d\ \x9c\x66\x28\x2e\xa7\x59\x8a\xcb\xb7\x3a\xc6\xdf\xcb\x19\x15\xb9\ \xb1\xc6\x26\x67\x50\x59\x5e\x8a\x81\xfe\x1e\x3c\x76\xb8\x0f\xff\ \xf2\x93\x5f\x80\xe7\xf2\x8b\x41\x85\x00\x0d\x58\x5d\x3b\x9d\xef\ \xd8\x52\xe0\x48\x77\x8c\xaa\xd2\x02\x9c\x19\x68\xc3\xf0\xd4\x0a\ \xd6\x5c\xbe\xa4\x97\xbc\x43\xb4\x04\x3c\x7e\x86\x97\x5b\x34\x27\ \x2d\xed\x16\x03\x94\x44\x09\x4c\x5c\x6a\x4e\xc0\x98\x4d\xa5\x4b\ \xc0\xa5\x9e\x0c\x61\xa4\x62\xa9\x8c\x57\x42\x65\x3c\x17\xaa\x10\ \xa6\x91\x94\x4a\xb7\x13\xd5\x66\xc4\xcf\xcc\xc9\x7a\x29\xac\x30\ \x91\xa8\x2f\xfa\xcb\x98\x27\xa3\x6e\x1f\x21\x5a\xbd\x1d\xcb\x6d\ \x5d\xbd\x7e\x1b\xe7\x4e\x1e\x45\x4f\x67\x2b\x2a\xca\x4a\xf0\xd6\ \xfb\x1f\x81\x33\x95\x57\xd2\x80\xc5\x0a\xde\xe7\x17\x81\x07\x76\ \x12\x80\x70\x6a\x6f\xe2\x64\x2c\x13\x63\xc8\x59\x65\x69\x3e\xfe\ \xe3\xbf\x79\x16\x8f\x1f\xe9\x50\x44\x7d\xba\xa5\x53\x56\x8a\xbc\ \x00\xf3\xb5\xca\x92\xec\x2d\x13\xef\xa1\x69\x7b\x68\xb9\x9e\x51\ \xd9\xcc\x58\xc5\x3f\x36\x43\x44\xb5\x8f\x78\x60\x0c\x86\x42\xf8\ \xb7\xff\xe1\xbf\xc2\xeb\xf3\xe1\x0b\x9f\x3a\x8f\x5f\x7a\xe6\x0c\ \x40\xf4\x7a\x5d\xc5\xd1\xa3\x20\xba\x12\x00\xf9\x00\x8c\x00\xf4\ \xd1\x7b\x91\xec\x14\xe0\x50\xd5\x74\x3a\xd7\x78\x0f\x1d\xc7\xe1\ \x44\x7f\x33\x0a\xf3\x8d\xb8\x3b\xb6\x08\x41\x9c\x6a\x90\x79\x4e\ \x98\x1c\x03\xc9\xa0\x78\x8f\xcc\xcc\x04\x59\xbd\x1c\x15\x4b\xf9\ \x45\x9a\xa6\x69\xa4\x98\xd9\x3c\x80\x7c\xa5\x25\x4b\x64\x87\x7d\ \x30\xec\x8a\x4a\xa5\x52\xf7\x38\x2f\x85\x2a\x54\x8c\xca\xf2\x10\ \x54\x21\xa3\x02\x46\x4a\x5e\xbe\x58\x4f\x15\xf2\x50\x9a\xd2\x7c\ \xe2\x70\xba\xb0\xb0\xb8\x82\xa7\xcf\x9d\xc4\xe3\x27\x07\xf0\xd3\ \xb7\x2e\xc3\xe1\x0e\x9a\x88\xb1\x24\x8f\x7a\xe7\x76\x2c\xdf\x91\ \x16\x70\x6c\x37\xef\xd1\xd5\x5c\x85\xde\xf6\x1a\xdc\x1c\x9e\x87\ \x3f\x18\x4e\x7a\x36\xd2\xc4\x7b\x32\xe4\x61\x65\xf0\x72\x97\xf4\ \x63\x81\x4c\xa9\xb9\x5c\x98\x14\x07\xac\x60\x87\xa8\x4c\x40\x54\ \x41\x8c\xb2\x26\x0c\x71\xca\x17\x62\x52\x18\x18\x9b\x9a\x41\x55\ \x79\x19\x06\xfa\x7a\x70\x62\x70\x3f\xbe\xfb\xd3\x77\x20\x70\xf9\ \x25\xa0\xbc\x9f\x06\xac\x4e\x44\xd6\xb3\xec\xa8\x4c\xcb\xb6\x03\ \x47\xba\x63\x54\x97\x15\xe2\xf4\x40\x1b\x1e\x4c\x2c\xc3\xbe\xce\ \x7b\x28\xc4\xdd\x1b\x73\x3a\x45\xbc\x67\x98\x84\xae\x68\xa2\x14\ \xaf\x1a\x4f\x26\xe5\x52\x73\x96\x97\xa2\xca\x93\x21\x49\xf3\x00\ \x6a\x16\x0d\xca\x65\x8a\x12\x7a\x7f\x32\x2b\x59\x77\x1a\xd0\xa9\ \x4d\xf1\x5e\xb9\x7e\x1b\xe7\x4e\x1e\x43\x6f\x57\x1b\x4a\x8b\x0a\ \xf0\x8b\x4b\x37\xc0\x19\xcb\xab\xa8\x6f\x7e\x09\x42\x30\x20\xf2\ \x3c\x76\x1e\xc7\xb1\xd5\x9c\x45\x66\x78\x8f\x02\xfc\xa7\xff\xe9\ \x05\x9c\x3b\xdc\x2e\x1b\xaf\x27\x27\xba\x93\x9a\x2a\x7a\x4a\xf5\ \x00\xb9\x7c\x53\xc4\x91\x99\x24\xf9\xc7\x46\x47\x36\x06\x7f\xc0\ \x6a\xf6\x22\x7a\x88\x39\x03\xb0\xf6\x03\x0c\x5e\x22\xd1\x7f\x0a\ \x9f\x27\x8c\xef\x65\x3f\x48\xc2\x7d\x89\x7d\x04\x43\x21\xfc\xaf\ \xff\xd7\x7f\x81\xcf\xe7\xc7\xaf\x7f\xfa\x79\x3c\x75\xe6\x08\xc0\ \xe9\xf5\xba\xb2\xc1\x83\x00\x0a\x01\x98\xa3\x7c\x87\x6e\x27\x70\ \x1d\xaa\x3c\x8e\x5c\xe7\x3d\x00\x40\xa7\xe3\x70\xe2\x40\x0b\xf2\ \xcd\x06\xdc\x1b\x5b\x04\x05\x55\x9f\xc7\x47\x4c\xa5\xa5\xa8\x27\ \x0a\x94\xbc\x16\xb0\xb3\x0e\x94\xc8\x79\x29\x54\x86\xad\xa7\x0a\ \x4b\xce\xe5\x4b\xcd\xe5\xda\x27\x82\x55\xb1\x49\x94\xe5\x15\xe3\ \x1d\x02\x2a\xbd\x72\x77\x84\x16\x69\x9a\x9b\x65\xb9\x87\x8c\xc3\ \xe5\xc6\x8a\xd5\x8a\x27\x4e\x9f\xc0\xd1\x83\xfb\xf0\xcd\x1f\xbc\ \x09\x9e\x98\x8b\x10\xf6\x38\x69\xc8\xe1\x61\x84\x2c\x3b\x03\x38\ \x76\x02\x31\x9a\xc8\xba\x5b\xaa\xd1\xd3\x56\x83\xeb\x0f\x67\x11\ \x0c\x85\xd3\xbb\x0e\x73\x48\xbc\x87\xad\x01\x22\x27\xfa\x4c\x19\ \x3d\x58\x89\x4c\x8a\x97\xc8\x97\x68\x43\x0c\xa2\x34\x4e\x4d\x8c\ \x99\x9a\x96\xec\x63\x82\x52\xf3\xd8\x14\xa6\x24\x4c\x4a\xac\xf0\ \x9e\x58\xff\x84\xb0\x53\xb1\x50\xa1\x37\xa2\x2a\xbd\x9f\x28\x5d\ \x1b\xaf\xc2\x3e\x36\x31\x85\xa3\x03\xfd\xe8\xe9\x6c\x03\x21\x04\ \x97\xae\xdd\x05\x31\x96\x96\x09\xee\x89\x79\x80\x86\x62\xc0\x23\ \xa7\x81\x83\xcb\xc5\x9d\x4a\x37\x34\xea\xef\xac\xc3\x7f\xfe\xca\ \x8b\x68\xab\x2b\x97\x4f\xb5\x25\x91\x56\x23\x8c\x55\x9d\x12\x7e\ \x03\xec\x4a\xd5\x8d\xdb\x8e\x26\xe1\x93\xc7\xae\x87\x20\x8c\xf3\ \x91\xc3\x6a\x64\x34\xd9\x71\x64\x52\xbc\x34\x49\x1d\x59\xc5\x90\ \x30\xc3\xe2\x3d\xe9\xb8\x2a\x02\x05\xfe\xf0\xbf\xfd\x15\x78\x9e\ \xc7\xff\xf8\xc5\x5f\x42\x47\x4b\x3d\x88\x3e\xbf\x40\x57\x76\xa8\ \x07\x40\x41\x34\x64\x31\x20\xc7\xd3\xb3\x29\x7b\x1c\xdb\x9d\x51\ \x49\x64\x05\x79\x46\x0c\x1d\xed\xc2\xb2\xd5\x85\xd9\xa5\xb5\x8c\ \xe1\x37\x49\x5a\x75\x0b\xea\x4a\xcd\x65\x08\xcd\x44\xa1\x51\x22\ \x5d\xd4\xd4\x54\xd5\x49\x52\x5a\xa0\xca\x25\xd9\x0c\xee\x59\x56\ \x27\x84\x24\x2e\xd0\x52\x5a\xc5\xcc\x24\x7c\xd5\x94\x9a\xcb\x1c\ \x17\x12\x2d\x4d\x48\x9c\x51\x01\x23\x44\xb5\x3b\x1c\xc8\xcb\x33\ \xe3\xf0\xc1\x3e\x74\xb5\x35\xe1\xe5\x9f\x5d\x00\x31\x14\x97\x52\ \xff\xf2\x0a\x78\xbf\x5f\x14\xb2\x68\x1e\xc7\x56\x93\xae\x46\x83\ \x0e\xbf\xfb\xf9\xc7\xf1\xc5\x8f\x1f\x83\x8e\xe3\xe2\x6f\x4c\x42\ \x65\x26\x7a\x2a\x43\x84\xc9\xb0\xfe\x5b\x58\xb0\x44\x33\x34\xd6\ \x76\xc5\xf8\x19\xf9\xda\x5c\x2a\xcd\x4f\xc3\x73\xfb\xeb\x6f\x7e\ \x0f\x2b\xab\xab\x38\x73\xfc\x00\x5e\x7a\xf6\x0c\x40\x74\x3a\x5d\ \xd9\xa1\x03\x22\xaf\x43\x27\x9a\x3d\x76\x0e\x70\x90\x1d\x53\xcb\ \x26\x6f\x2f\x3e\x7e\x00\xff\xfe\xb7\xce\xa3\xa8\xc0\x14\x23\x00\ \x43\xe2\xea\x03\xa4\xff\xb1\xd4\xc9\xe3\x67\x0f\x09\xe0\x40\x1d\ \x03\x1f\x27\x20\x23\x61\xe5\x21\x13\x32\xc5\x97\x94\xc7\x12\xba\ \x8c\x5f\x2d\x26\xdd\xac\xcc\xf6\xcb\x85\x6a\x00\xd2\xcb\x30\xc4\ \x1e\x2b\x2b\x93\x21\x7b\xce\xd9\x61\x21\x58\xdf\x07\xe9\x77\x49\ \xc3\x3d\x35\x21\x2a\x14\x7e\x3b\xd1\xf7\x32\xae\x0e\x92\xc2\x39\ \xf6\xfb\xfd\xf8\xaf\x7f\xf6\xf7\x00\x80\xaf\x7f\xf5\xd7\x51\x54\ \x90\x07\x62\xaa\xa8\xe6\x8a\x3a\x5a\xa2\xe0\x61\xc2\x66\x45\x69\ \xee\x7a\x1c\xd9\x04\x88\x5c\x28\x63\x3f\xd8\xd5\x80\xff\xfb\x77\ \x7e\x09\x2d\x75\xe5\x32\x73\x41\x66\x96\x86\xd3\x14\xfa\xb3\xb0\ \x27\xb3\x0c\x2f\x49\x4f\xe7\x7d\x45\xf1\x9e\xe4\xa6\xf3\xdd\x26\ \xde\xa3\xbc\x2f\xca\x80\xf2\x8b\x8b\x1f\xe0\xf2\xb5\x1b\xa8\xae\ \x2c\xc3\xef\xff\xeb\xcf\x45\xb8\x83\xe2\x7d\xfb\x41\xf4\x45\x88\ \x94\xa3\xc7\x82\x07\xc9\x49\xe0\xd8\x09\xa1\x47\xba\x56\x5d\x5e\ \x84\xff\xf8\xdb\x9f\xc0\xc9\x81\xb6\xc4\x75\x04\x48\x3c\xeb\xa8\ \xfb\x4f\xed\x6c\x46\x65\x66\x71\xc8\x5c\x7c\x90\x9f\x3d\x45\x33\ \x75\xdc\xd5\x4c\xd9\x1e\x4a\x5c\x3f\x14\x42\x24\x21\x1a\x91\x94\ \x6d\x8b\xbf\x8f\xca\xf0\xbc\x29\x1c\x97\x4a\x0f\x50\x36\xb4\x14\ \x65\x54\xa4\x84\xb3\xdc\x79\x63\xd5\x66\x40\x5d\x8d\x07\x63\xaf\ \xd5\xd8\x7f\xf9\xd3\xbf\x41\x30\x18\xc2\x97\x3f\xf3\x3c\xfa\xba\ \xdb\x00\x9d\x39\x4f\x57\x3e\xb0\x3f\x26\x64\xc9\x49\xe0\x50\xec\ \x56\xbf\x1d\x84\x69\x26\x88\x51\x25\xd3\xeb\x38\x9c\x3c\xd8\x06\ \xa3\x5e\x87\xfb\x13\x8b\x0a\x33\x7b\xe2\xd9\x6c\x6f\x97\x9a\x6f\ \xaf\x78\x0f\x85\x4a\x7d\x59\x1a\xaf\x22\xb6\xc9\xd4\x6e\xae\x6f\ \x62\x13\xbe\x09\x6a\x67\xc4\xab\x98\x41\xe4\x53\xe5\x1b\x99\x35\ \x11\xc0\x10\xc0\xe9\xf6\x80\x70\x04\xc7\x07\x0e\xa0\xaf\xbb\x15\ \xdf\x79\xe5\x17\x20\xfa\xa2\x12\x1a\xb0\xac\x82\xf7\xf9\x10\x9f\ \x9e\xcd\x99\x14\x6d\x4a\x1e\xc7\x6e\xe0\x3d\x5e\x7a\xf2\x10\xfe\ \xdd\x97\x9f\x45\x51\xbe\x49\x36\x36\x67\xe7\x5f\x91\x28\x8b\x2a\ \x93\xae\x65\xfc\x47\x95\x62\x64\xa5\x18\x9f\x95\x22\x56\x17\x5b\ \x83\xe9\xb9\xa8\xf8\xcd\x01\x86\xb7\xa1\xae\x6a\x32\x6b\x95\x99\ \x72\x9e\x09\xeb\xfc\x25\xbd\x64\x3a\x39\x40\xa3\x09\x5b\x7f\xca\ \x8f\xff\x4f\xdf\xfd\x21\x66\x17\x16\x71\xf8\x40\x37\x3e\xf7\x4b\ \x4f\x01\x84\xe3\x62\x88\xd2\x3c\xc4\x57\x94\x92\x9c\x07\x8e\x5c\ \xe7\x3d\xd2\xb5\xc1\x9e\x46\xfc\xe1\x57\x5e\x42\x53\x4d\x59\xc2\ \x8b\x25\x2b\xe2\x3d\x99\xb4\x1d\x22\xde\xa3\xbe\x9e\x26\x01\xb0\ \x40\x61\x9c\x24\x4a\xcd\x13\x97\xd5\xa8\x2f\xad\x57\x3e\x0e\xca\ \x08\x6d\x22\x8f\x50\x28\x8c\xff\xe7\x4f\xfe\x0a\x00\xf0\xbf\xfd\ \xf6\x17\x50\x56\x52\x04\x62\x2c\xad\xe0\x8a\xf7\xb5\xe5\x2a\x51\ \xaa\x18\xaa\xe4\x52\xad\x46\xb6\x80\xa6\x30\xdf\x84\xa1\xa3\xdd\ \x58\x5c\x75\x60\x7e\x79\x8d\x2d\xde\xb3\x71\x41\x51\x49\xde\x9e\ \xd9\x65\x3d\xc6\x33\x21\x62\x89\x41\xc4\x8b\x05\xc7\x7b\x25\x54\ \x66\x39\xbd\xf8\x35\x61\xca\xf3\xa9\x13\xef\x51\x12\x0f\x52\xae\ \xa1\x88\xfd\x11\x64\x68\x21\xc5\x8a\x4d\x92\xe2\x8f\xb8\x17\xd2\ \xd0\xf3\x8b\x4b\x68\x6b\x6a\x44\x5f\x4f\x27\xca\x4a\x8b\xf0\xc6\ \x7b\xd7\xc0\x19\x4b\xca\x04\xf7\xf4\x02\x28\x1f\xc4\x66\x47\xb8\ \x9c\x08\x57\xb8\xbd\x90\x51\x49\x64\x26\xa3\x1e\x5f\xfb\xe2\xd3\ \xf8\xec\x73\xc7\xc0\x71\x19\xf8\xb2\x34\x33\x22\x9b\x1f\xcf\x96\ \x78\x8f\x08\xc0\x24\xb3\x22\x8d\x9b\x71\x21\x93\x52\x96\x2f\xa7\ \x65\x83\x0b\x20\x53\x23\x83\x54\x16\xd1\xa5\x10\xf2\xa8\xf0\x44\ \xa4\x2e\x47\xf2\x29\x68\xd9\x34\xb4\x52\x2a\x18\xc0\x1f\xff\xd5\ \x37\xe0\xf5\xf9\xf1\xd9\x17\x9f\xc4\xd1\x83\xfb\x00\xce\x64\xd2\ \x95\x0f\xf6\xe5\x22\x51\xca\xe5\x12\x40\x6c\xb7\x7d\xea\xe9\x41\ \xfc\xdb\x2f\x3f\x87\x82\x3c\x53\x82\x0b\x8e\x31\xe3\x2a\x50\x22\ \x89\xae\x6e\xc5\x9b\x02\x6a\x4a\xdd\xd5\xba\xe7\xf1\xf1\x7f\x2c\ \xd5\x98\x1c\x20\x66\x60\xf5\xb1\x5c\xe3\xec\x0c\xa9\x94\x65\xa4\ \x01\x37\xdd\xda\xc9\xdd\x62\xb5\xe2\xcf\xbf\xf1\x2d\x10\x42\xf0\ \x47\xff\xee\x7f\x80\x8e\xe3\xc0\xe5\xd7\x37\x93\xbc\x9a\x9a\x28\ \xd7\xb1\x1e\xb2\x6c\x3b\xd7\xc1\xe5\x12\x40\xe4\x04\xef\xd1\xdb\ \x84\x3f\xfa\xca\x27\xd1\xb8\xce\x7b\x64\x39\xa3\xc2\x9e\x9e\x65\ \xc0\x05\x0a\x05\x5b\x8a\x69\x42\x06\xc0\x50\x35\xc5\x4b\x09\xd2\ \x8f\x09\x66\x5f\xc9\x31\x24\x0b\xc0\x32\x9e\x08\xd4\xa6\x54\xa1\ \x5c\x0d\x0c\x49\x7a\x5d\x2c\x0a\xc4\xd6\x64\xdd\xfc\xae\xf5\x50\ \x93\x32\xab\x8c\xe3\x17\x15\xaa\x4b\x05\x7f\xff\x27\xaf\x61\x74\ \x62\x0a\xfb\xbb\x5b\xf1\x1b\x9f\x7d\x01\x00\x21\xba\xd2\x03\x07\ \x45\x5e\x87\x6e\xc7\x01\xc7\x5e\xb0\xda\xaa\x12\xfc\xe1\x57\x5e\ \xc2\xf1\xfe\xb6\x04\xb3\xbf\xb2\x1b\x0c\xa5\x5a\x8e\x18\xee\x24\ \xa5\x4b\x80\x6e\xc9\x47\xd4\x8d\x43\x33\x34\x4e\x8a\x1b\xd3\xad\ \x3c\xf8\x94\x3c\x11\x75\xfa\x2d\x14\x14\x3c\xcf\xe3\x8f\xfe\xdb\ \x9f\x03\x00\x7e\xff\x5f\x7f\x16\x55\xe5\xa5\x20\x86\xe2\x52\xae\ \xb0\xad\x11\x39\x94\x61\xd1\x7d\xf5\xab\x7f\x30\xb4\x57\x89\x51\ \x25\xd3\xeb\x75\x38\x35\xd0\x01\x8e\x00\x0f\x26\x96\x22\xb3\x0a\ \x58\x25\xd9\x54\x66\xe1\x18\x65\xaa\x8a\x8b\x0b\x99\x10\x57\xf6\ \x8e\xf8\x7a\x00\xb1\xa2\x56\xcc\xf3\xb8\xd9\x18\x50\xd5\x07\x35\ \x2e\x6a\x02\x7b\x75\x2f\x44\x7a\x24\x72\x8b\xcb\x64\xf5\x4b\xc1\ \x5a\x34\xc7\x56\x55\x27\xaa\x16\x97\x25\xe8\x37\xab\x56\xcd\x4c\ \x6e\xf1\x61\x22\x55\x75\xc8\x10\xbc\xac\xe3\x50\x50\x3f\x4f\xa6\ \x3f\x8c\xc5\x6a\x45\x75\x55\x05\x0e\xf4\xee\x03\x00\xbc\x77\xe5\ \x36\x88\xbe\xa0\x20\xb2\xf4\x1e\xa1\xe8\x63\x5b\x65\x06\x75\x15\ \xbd\x9f\x1a\x6a\xaf\x2f\x85\xc9\xa8\xd7\x80\x83\x61\xfb\x3b\xea\ \xd1\xd6\x58\x89\x9b\x0f\x67\x10\x0a\xcb\xc8\x24\x64\xa4\x9f\x6a\ \xa2\xc2\x26\x9a\xd4\x6c\x96\xb1\xfe\xae\xe9\x5c\x97\x9a\x78\x4f\ \x72\x9b\xc6\xbc\x39\x3e\x3d\x83\x5f\x7d\xf1\x05\xf4\xed\x6b\xc7\ \x37\x7f\xf0\x06\xfc\x21\x62\x46\xd8\xed\xa0\x21\xa7\x33\x0a\x1c\ \xdb\xba\x7a\x56\x57\xdc\xfd\xd2\xd0\xa5\x7b\x73\xe0\x08\x41\x4b\ \x6d\x29\xb8\x98\x99\x69\xab\x81\x20\x55\xf1\x9e\x6c\x5b\x7d\x55\ \x29\x8e\x1f\x68\xc3\xbd\x91\x39\xb8\xbd\x7e\xd1\xd2\x6c\x85\x2e\ \xeb\x4c\x65\x6d\xf1\xcc\x4c\x19\x5e\x49\x62\xf5\x6f\x69\x1e\x94\ \x2a\xe8\xa2\x26\x29\xde\xc3\x5a\xee\x4f\x45\xa9\x62\xa2\x42\x75\ \x4c\x85\x87\x26\x56\x4b\x67\x7b\x32\x72\xfd\x5d\x15\x3c\x07\xb5\ \xcb\xf4\x65\x15\xed\x59\x6a\xf5\x44\xf2\x5b\x10\xd5\x1d\xef\xe5\ \x96\xf2\xb3\xbf\xdf\xed\xf2\xa0\xa9\xa1\x0e\xbd\xdd\x1d\x08\x86\ \x42\xb8\xfc\xd1\x3d\x10\x7d\x41\x9e\xe0\x9e\x5c\x00\xb0\x9e\x9e\ \xdd\xb6\x8a\x52\x5d\xef\xe9\x2f\x0e\x85\x05\x01\x8f\x66\xac\xb8\ \x39\xba\x84\x9a\xb2\x7c\x54\x96\xe4\x6b\xc0\x21\xb2\xa2\x02\x33\ \xce\x1d\xdb\x87\xb9\x25\x1b\x16\x2c\xf6\x8c\xcc\x86\x5b\xba\x9c\ \x3c\x63\x8b\xe6\xe4\xb6\x4c\x5f\xbc\x27\x33\x7d\x5b\xa8\xcc\x30\ \x99\x17\xef\xd9\x04\xd7\xf8\x98\x8f\x0d\x08\x72\x8d\xa5\xe4\x6b\ \x6c\x66\xe6\x17\xf1\xa9\x8f\x3d\x8b\xbe\xee\x56\xfc\xe3\xcb\xaf\ \x21\x28\xe8\xf3\x11\x74\xd8\x68\xd8\xe5\x8e\x7a\x1d\xe1\xed\xf2\ \x3a\x74\xbd\xa7\xbe\x38\xb4\xfe\xc2\xe3\x0b\xe2\xea\xf0\x02\x16\ \x56\x5d\x68\xaf\x2f\x43\x9e\x29\x77\xc3\x97\xed\x30\x83\x5e\x87\ \x53\x03\x5d\xa0\x00\x1e\x4e\x2e\x25\xee\xaf\x2a\xaa\x74\x44\x0a\ \xfd\x59\x64\x8b\xb8\x14\x74\x51\x09\x44\x71\xb8\x62\xe3\xec\x54\ \xc4\x7b\x62\x8e\x95\x32\x92\x42\x1b\x5e\x49\xb2\xdd\xd5\x24\x64\ \x4b\xc2\xfe\xb3\x2c\x1e\x02\xe2\x8c\x8a\x5a\x0f\x31\x61\x3b\x04\ \x48\xd4\x0c\x69\xb2\x48\x9f\xc4\xda\x9b\x35\x87\x03\x9d\xed\x2d\ \xd8\xd7\xd9\x0e\xb7\xd7\x87\xab\xb7\x86\x41\xf4\xf9\x79\x82\x67\ \x6a\x71\xbb\xbd\x0e\x5d\xef\xe9\x2f\x0e\x89\xc9\xa7\x25\x9b\x1b\ \x97\xee\xce\x82\x52\x8a\xb6\xba\xd2\x8d\xa2\xa8\xbd\x0e\x1c\xeb\ \xfb\xd3\xd7\xd9\x80\x96\xfa\x0a\xdc\x1c\x9e\x41\x98\xe7\xb3\x1a\ \xfb\xd3\x0c\x8e\x95\xf3\x31\x7e\x1a\x19\x95\xd8\x70\x86\x15\x4e\ \x24\x26\x46\x89\x0a\xe0\x90\x6b\x37\x19\x53\x55\x0c\x48\x56\xd4\ \x26\xdf\x38\x7b\x33\x9c\x99\x5f\x5c\xc6\x2f\x3d\x7f\x1e\xbd\x5d\ \xad\xf8\xc6\xf7\x5e\x43\x18\x86\x02\x1a\xb0\x59\x10\xf6\x78\xb6\ \x93\xeb\xd0\xed\x5f\x07\x8e\xb8\x99\x92\x40\x10\x28\x46\xe7\xac\ \xf8\xe8\xe1\x22\x2a\x4b\x0b\x50\x5d\x56\xb0\xe7\x88\x51\x25\x6b\ \xa8\x2e\xc3\xb1\x03\x6d\xb8\x1b\xe5\x3d\xd8\xa5\xe6\xe2\xb8\x5c\ \x46\x55\x9c\x50\x99\xce\xf4\x50\xe8\x42\x96\xa8\x4f\xac\xf4\xfb\ \x21\xf2\x44\x14\xc7\x65\x76\x45\x4b\xa2\x3f\x0c\xe4\xda\xab\x10\ \x66\xa6\x46\x6e\xc6\x57\x14\x27\x8e\x39\x5f\xdb\x42\x8c\x6e\x81\ \x1a\xd9\xaa\x6d\x0d\xfb\xf7\x75\xa1\xbb\xa3\x15\x36\xbb\x13\x37\ \xee\x8e\x82\xe8\xf3\xcd\x82\x67\x3a\xd6\xeb\xd8\xf2\x0c\x8b\xae\ \xf7\xf4\x66\xa8\xc2\x3a\x18\x6f\x20\x84\x8f\x1e\xce\x63\x7a\xd9\ \x81\xf6\xfa\x52\xe4\x9b\x0d\xdb\xce\x7b\xe4\x8a\x15\x17\xe4\xe1\ \xdc\xd1\x7d\x98\x5e\x58\xc5\xd2\xaa\x23\x6d\x51\x5c\x9a\xf4\x15\ \xae\x50\x1f\x99\xee\x92\xf7\x34\x32\x45\x4a\xed\x16\xe3\xb1\x80\ \x32\xd2\xac\x89\x1b\x4c\x4b\x53\xa1\x2a\xf4\x4b\xa1\xac\x62\x2e\ \x0f\x9a\x24\xe9\x56\x9b\xe2\x8b\x56\xbc\x94\x3e\xa1\x27\x23\xda\ \x6e\x69\x65\x15\x1f\x7f\xe6\x49\xf4\x74\xb4\xe0\xef\xbf\xfb\x73\ \x08\xc4\x54\x40\xfd\x96\x15\xf0\x3e\xef\x76\x79\x1d\xba\xde\x33\ \x5f\x1a\x12\xff\x18\x92\x9b\x17\x80\x65\xcd\x83\x4b\x77\x66\x10\ \xe2\x79\xb4\xd7\x97\x43\xb7\x8d\xe1\x4b\x2e\x99\x41\xaf\xc3\xe9\ \xc1\x6e\xf0\x82\x80\x91\xa9\x85\xf8\xfd\x96\x50\xff\x88\x63\xc1\ \x08\xb3\x9f\x2a\x6b\x71\x9d\xb8\x36\x84\xa8\xec\xae\x46\xa5\x1d\ \xee\xc9\xe6\x22\xbe\x38\x2f\x24\x51\x57\x7a\xc2\xee\x4f\x23\xce\ \xd4\x44\x6e\x02\xf5\xaa\xe8\x1b\x84\x66\x06\x80\x2e\x63\x5a\x20\ \x39\xa0\x46\x16\xbb\x5c\x69\xd9\xb2\x8a\xc3\x07\xfb\xd1\xd5\xde\ \x82\xc5\x15\x2b\xee\x0c\x4f\x10\xa2\xcf\x37\x0a\x9e\x99\x25\x11\ \x49\xba\x65\x5e\x87\xae\xf7\xf4\x17\x86\xd4\x6e\x2c\x08\x02\xc6\ \xe7\x6c\xb8\xf2\x60\x1e\xe5\x45\x79\xa8\xad\x28\xdc\xf3\xc0\xb1\ \xbe\x9f\xfd\x5d\x8d\x68\xae\xad\xc0\xcd\x87\x0c\xde\x23\x8b\x3c\ \x84\x62\x15\xbb\xc2\xec\x2d\xcb\xea\x83\xa1\xb2\xae\x4a\x55\x5d\ \xa9\xf8\x49\x81\x18\x95\xf0\x12\x6a\xfa\xb3\xb0\xc2\x99\x98\x92\ \x70\xc8\x15\x8c\x89\x43\xae\xd8\x95\xc6\x72\xe2\x3d\x72\xa0\x49\ \x64\x8a\xca\xa4\x29\x65\x22\xa7\x68\x2f\x5b\xc4\x26\x0d\x51\x2d\ \xab\x56\x3c\xf7\xd4\x10\xf6\x75\x34\xe3\x1f\xbe\xfb\x1a\x28\x67\ \x2e\xa0\xfe\xa5\x25\xf0\x7e\xdf\x76\x78\x1d\xba\xfd\x67\xd6\xc9\ \x51\xba\x21\x78\x22\x6e\xee\x23\x4e\x13\xf8\x02\x21\xdc\x18\x59\ \xc0\xe4\xc2\x1a\x5a\xeb\x4a\x51\x98\x67\xdc\x13\xc4\x68\x42\xde\ \xa3\xa6\x1c\x47\xfb\xdb\x70\x67\x64\x16\x1e\x5f\x20\x61\x65\x65\ \xc2\x7e\xaa\x60\xf4\xbf\xa5\x44\x45\xab\x81\x78\xe9\xba\x4c\xc5\ \xf8\xd9\x98\x59\xb3\xfb\x1d\x54\xc6\x39\xc9\x8c\x1a\x19\x4d\xb9\ \x55\x68\xf2\xfb\xb3\xb0\xb4\x8c\xc7\x8e\x1e\x46\x67\x5b\x33\xa6\ \x66\x17\xf1\x60\x6c\x86\x40\x67\x36\x50\xef\xdc\xb2\xc8\xeb\x10\ \xb6\x06\x38\x64\x39\x8e\xc4\x07\xb3\xea\xf0\xe2\xd2\xed\x29\xf8\ \x02\x61\xb4\x37\x94\x43\xaf\xe3\xf6\x04\x31\xaa\xc8\x7b\x14\xe6\ \xe1\xec\x91\x7d\x98\x9e\x5f\xc5\xb2\xd5\xb1\x71\xc6\x12\x69\x60\ \x10\x46\xb7\x32\xa2\x86\xf9\x97\x8d\xdf\xe5\x66\x5c\x85\xee\x66\ \x84\x15\xbf\xb3\x16\x45\x6c\x4e\xbf\x84\xd9\xc1\x5d\x94\xc2\x84\ \x32\xe1\xca\xcc\x3c\x48\x80\x13\x8c\xe3\x22\xcc\xef\x4f\xbe\xd4\ \x5c\x54\xd8\xa5\x8a\x87\x80\x24\xc5\x2b\xa7\x6d\xa2\x1c\xa2\x8a\ \x8f\x4b\xde\x43\xb4\xae\xd9\x71\x7e\xe8\x2c\xba\xda\x1a\xf1\x8f\ \x2f\xbf\x06\xe8\xf2\x8b\xa8\x6f\x7e\x11\x42\xd0\x17\x03\x1e\x5b\ \x13\xaa\xf4\xc5\x64\x55\x24\xeb\x14\x62\x7f\x3c\x99\x0b\x91\x52\ \x8a\x89\x85\x35\x7c\x78\x7f\x06\x25\x05\x66\x34\x54\x15\xef\x69\ \xe0\x00\x00\xa3\x41\x8f\x33\x87\xf7\x21\x1c\xe6\x31\x3a\xbd\x98\ \x00\x90\xa3\x79\x7c\x4a\x93\x06\xee\x8c\xc6\xe5\x19\x9a\xe5\x69\ \xa6\x63\xfc\x34\xf7\x31\xd7\x4a\xcd\xd3\xb1\xb9\x85\x45\x9c\x3b\ \x79\x02\x9d\x6d\x4d\x78\x38\x36\x83\xd1\xc9\x79\x02\x9d\x59\x4f\ \xbd\xf3\x2b\x90\xd6\x75\x6c\x93\xc7\x91\xe4\x72\xf2\x40\x30\x8c\ \x5b\x23\x8b\x18\x99\x5d\x45\x6b\x5d\x29\x8a\xf2\x4d\x7b\x16\x38\ \xd6\xf7\xfd\x40\x77\x13\x1a\x6a\xca\x70\xfb\xe1\x34\x78\x5e\x90\ \x8a\xda\xc4\x85\x1c\x84\xd9\xab\x34\x3e\x7e\x67\x75\x25\x93\xe9\ \x13\x0b\x88\x4a\xc4\xe4\x0a\x99\xa8\x4c\x46\x43\x2a\xb2\xc3\xec\ \x08\x27\xce\xa8\x00\x8c\xfe\x2c\x0c\x32\x37\x01\x0f\x21\x3b\xe3\ \x4b\x6a\x33\xa4\x3c\x44\xec\x1f\x08\x92\x5c\xfc\x47\x44\xa5\xe5\ \xe9\x74\xec\x93\x59\xdc\xa6\x78\x5c\x0a\x9e\x0c\x00\x38\x9c\x2e\ \x3c\x79\xf6\x14\xda\x5b\xea\xf0\x4f\xdf\x7f\x03\x44\x5f\x50\x44\ \x3d\xb3\xf3\xa0\x21\xff\x56\x72\x1d\xba\xbe\x33\x5f\x1a\x52\x45\ \x74\x41\xae\x55\x61\xfc\x49\xb6\x39\xbd\x78\xff\xce\x34\xdc\xde\ \x00\x3a\x1b\x2b\x12\x86\x2f\x3b\x9d\x18\x4d\x64\x8d\xb5\x15\x38\ \xd2\xd7\x86\xdb\x0f\xa7\xe1\xf1\x05\xb6\x9e\x3b\xa0\x32\xea\xdf\ \x69\xf7\x89\x4d\xb6\x9f\xaa\x9c\x1a\x59\x06\xc4\x7b\x14\x99\x82\ \x64\x3d\xb7\x0c\xca\x0f\xa4\x30\x90\x24\x44\x13\xad\xbd\x99\x9d\ \x9b\xc7\x53\xe7\x4e\xa3\xb3\xad\x19\xb7\x1f\x8c\x63\x72\x76\x89\ \x83\xce\xc4\x51\xdf\x42\xac\xd7\x91\x75\x89\x41\x5d\xdf\x99\x2f\ \x0e\x25\xb5\x32\x52\x85\x2f\x4a\x29\x30\xb5\xb8\x86\x0f\xee\xcc\ \xa0\x30\xcf\x80\xa6\x9a\xd2\x5d\x4f\x8c\x2a\x59\x49\x61\x3e\xce\ \x1d\xe9\xc5\xd4\xbc\x05\x2b\x36\xa7\xc2\x6c\x9a\x58\xc3\x13\x31\ \x9e\x08\x65\x74\x73\x27\xb2\x7d\x62\x13\x94\xa8\x13\x15\x5d\xdf\ \x13\xf6\xa9\x95\xb8\x21\xf1\x22\x42\x44\xad\xc6\x29\x9b\x4c\x26\ \x09\xf8\x1d\x40\x2a\xde\x13\xcf\x1b\xa9\x2d\x3c\x8b\xad\x04\xa5\ \x31\xbf\x85\xf8\x7c\x11\x46\x46\x45\x9c\x29\xa1\x12\x6e\x49\x4c\ \x6c\xc4\xef\x8b\xb2\xab\x4f\x01\xb8\xdc\x1e\x3c\x7e\xea\x04\x9a\ \xeb\xab\xf1\xcf\x3f\x7e\x1b\x44\x5f\x50\x24\x78\xa6\x66\x41\xf9\ \x40\x8c\xd7\x91\xd5\xd4\x6c\x14\x38\xd6\x0f\x84\x2a\x90\x73\x72\ \x2b\x2c\xe3\xeb\x03\x62\xdd\xf0\x60\x88\xc7\x9d\xb1\x45\xdc\x9f\ \x58\x41\x53\x4d\x09\x4a\x8b\xcc\x7b\x12\x38\x36\x79\x8f\x1e\x04\ \x43\x21\x8c\x4e\x2f\xa5\xe6\x74\x64\x52\xbc\x67\x9b\xaa\x26\x77\ \x92\x78\x8f\x52\x81\x18\x18\xed\x18\xd4\x01\x22\x95\x10\xc3\xb2\ \x95\xb8\x32\xa5\xed\xd3\xb3\xf3\x78\xe6\x89\x73\xe8\xee\x68\xc1\ \x87\x37\x1e\x60\x76\x71\x95\x23\x44\xcf\x53\xff\x92\x45\xe4\x75\ \x60\x4b\x80\x43\x1a\x82\x40\xc4\xa7\x53\x99\x6e\x67\x94\x11\x0b\ \x6f\x1e\xb4\xdd\xe5\xc3\xa5\xbb\xd3\xb0\xbb\x7c\xe8\x6c\xac\x84\ \x41\xaf\xdb\x73\xc0\xb1\xc9\x7b\x34\xa3\xb6\xaa\x0c\x77\x1e\x4d\ \x83\x17\x78\xd9\x0c\x01\x44\x19\x86\xc4\x5d\xdf\x09\xb3\x83\x3b\ \x81\x4a\x91\x19\x56\x66\x46\x92\x29\x51\x51\x59\xa9\x98\xe1\x10\ \x7b\x51\xc9\xae\x11\x51\xa9\xd6\xae\xb0\x46\x85\xa8\xc8\xe8\x20\ \x76\xd1\x5d\x36\x42\xc9\x34\x41\x9b\x0a\x02\xfc\x81\x00\x4e\x1f\ \x3f\x8a\x82\xfc\x3c\xfc\xe4\xcd\xcb\x80\xce\x60\x12\x5c\xe3\xb3\ \x00\x02\xd8\x82\x6e\xf7\x9c\x48\x98\x3a\x6b\xac\x3c\x15\x28\x2e\ \xde\x9e\xc2\xff\xf1\x97\x6f\xe0\xdd\x9b\x93\x5b\xad\x03\x9b\x53\ \x76\x7a\xb0\x1b\x7f\xf0\x3f\xff\x0a\xaa\xca\x8b\x65\x62\xe1\x64\ \xeb\x03\x94\xa3\xfc\x64\x57\x9f\xa5\x35\x0e\xcd\x16\xe8\xca\xf5\ \x31\x91\x97\x73\x04\x43\x53\x95\x45\xdc\x25\x52\x2f\x57\x14\x94\ \x86\xb8\xa4\x5c\x6d\x33\x2c\xb6\x66\x8a\xac\x1c\xa5\x68\x9c\x0b\ \x97\x3e\x40\x28\x14\xc2\xf9\x33\x47\x50\x52\x5c\x08\xa2\x2f\x2c\ \x26\xe6\xaa\x72\x48\xfb\xcd\x66\x65\x0a\xd6\xf5\x9f\xfd\xd2\x50\ \x72\x71\xa6\x94\x18\x15\x7b\x26\xb2\x0b\xa5\x08\x10\x0a\xf3\xb8\ \x37\xbe\x84\xbb\xe3\x4b\x68\xac\x2a\x46\x59\x71\xfe\x9e\xf0\x36\ \xc4\x56\x5a\x54\x80\xb3\x47\x7a\x31\x31\x67\x81\xc5\xe6\x90\x74\ \xbc\x07\xb3\xa8\x0b\x0a\x05\x62\xb1\xb3\x39\x15\xc9\xf5\x41\x54\ \x47\x20\xee\xf5\x42\x15\xc5\x6b\xe2\x6b\x43\x58\xe2\x3d\x94\x21\ \x4a\x24\x5e\xda\x1f\xe3\x59\xc8\xed\x77\xdc\xb1\x4b\x35\x2d\x90\ \x22\xe7\xb6\x15\x40\x47\x33\x34\x88\xda\x71\x82\xa1\x20\x5a\x9a\ \x9b\xd0\xd5\xde\x86\xd9\x05\x0b\xee\x0c\x8f\x03\x44\x07\xea\x9d\ \x5f\xda\x0a\x92\x54\xd7\x7f\xf6\x4b\x43\x5b\xc7\xf0\x6f\x3e\x75\ \xb8\xfd\xb8\x74\x67\x0a\xab\x6b\x1e\x74\x34\x55\xc0\x64\xd0\xef\ \x29\xe0\xd8\xe0\x3d\x8e\xf4\xc0\xe7\x0f\x62\x6c\x66\x69\x0b\x5d\ \xe2\xf4\xd6\x74\x48\x94\xb0\x54\x16\x7e\x11\x11\x80\x49\x35\x3b\ \x49\x82\x55\xc3\xf2\xea\x65\xec\x52\x73\x1a\x1f\x9a\xc8\x00\xa0\ \xb4\xa8\x8b\xca\x14\xcb\x29\x95\x9a\xb3\xf4\x48\x92\x5d\xb4\x27\ \x13\x4a\x89\x43\xd6\xe8\xfb\xfe\x40\x00\xe7\x87\xce\xa1\xb4\xa4\ \x10\xdf\xf9\xf1\xdb\x20\x9c\xc9\x2c\xb8\x46\xa7\xa3\xe1\x4a\x6c\ \x41\x58\xc6\xc1\x43\x77\xe0\x6c\xa4\x00\x4c\x8a\xfa\x54\x99\x18\ \x95\xe9\x1e\x26\x76\x8c\x68\xec\xc8\x71\x71\x70\x64\x76\x9a\xb7\ \x38\x70\xf1\xf6\x24\x74\x1c\x87\xb6\xfa\xf2\x78\x51\x97\x3d\x60\ \x84\x10\x1c\xea\x69\x41\x6d\x45\x29\xee\x8c\x4c\x43\x10\x68\x62\ \xd9\x41\x46\xdd\x05\xbb\x86\x83\x3d\x9b\x2b\xb1\xfa\xac\x9b\x42\ \x52\xd4\x9a\xad\x30\x93\xd2\x24\xe7\xae\xe4\x16\xd3\xd1\xa4\x17\ \xcd\xc9\x6d\x9d\x6e\x71\x9e\xfa\xc6\xd9\xf1\x9f\x8f\xff\xfb\xb2\ \x65\x15\x9f\x78\xf6\x3c\x3a\x5a\x1a\xf0\x83\x9f\xbf\x07\xbb\xcb\ \xaf\x07\xef\x73\xd2\xa0\xdd\x11\xf5\x3a\xb2\xc6\x73\xe8\xfa\xcf\ \xae\x93\xa3\xc9\x8b\xe2\x2a\x37\xe1\x51\xff\x23\x87\x42\x02\x1e\ \x4c\x2e\xe3\xe6\xa3\x79\xd4\x55\x16\xa3\xb2\xb4\x60\xcf\xf1\x1e\ \xcd\xf5\x95\x38\xd4\xd3\x86\xdb\x0f\xa7\xe0\xf5\x07\x54\x7b\x12\ \xca\x4a\x61\x22\xe6\x3e\xd6\x5f\x10\x35\x66\x8a\x27\xbc\x49\x72\ \xaa\xe6\x50\xa7\xfa\x25\xa7\x2a\x2e\x76\x51\x98\xab\x86\xd5\x12\ \xa3\xaa\x4a\xcd\xc5\xa5\x71\x9b\x21\x1d\x61\xa9\x7e\x6d\x78\x2e\ \x24\x29\x35\x33\xb1\xa8\x8f\xb2\x78\x8f\x1c\x91\x2d\x1f\xa2\x52\ \x81\xa2\xac\xac\x04\xfd\x3d\xfb\xe0\x74\x79\x71\xf9\xfa\x3d\x10\ \xa2\xe3\x04\xcf\xcc\xba\x56\x47\x6c\x6a\x36\xb3\xe4\xa8\xc4\x45\ \x22\x2a\x9a\xe6\x40\x4d\xe3\x1c\xb0\xbb\x92\x49\x8e\x61\xf3\x7b\ \x16\x2d\x4e\xfc\xbf\xdf\x7a\x17\x7f\xf3\xa3\x0f\x61\x77\xf9\xf6\ \x1c\x78\xb4\x35\x54\xe1\x3f\x7d\xf5\x73\xd8\xdf\xde\xc8\x68\x78\ \xc4\x3e\xc7\xe9\xb2\xcc\x34\x97\x62\xfc\xec\xf2\xf3\x19\xc9\x68\ \x64\x34\x0d\x4d\xd3\x3f\xca\xb7\xdf\xbd\x08\x00\xf8\xd4\x0b\xe7\ \x22\xd7\x84\xa9\xa2\x1a\x9c\x21\x1f\x91\xfe\x2b\x59\x6b\x19\xa9\ \x3b\xf3\xfc\x6f\x0d\xf9\x83\xe1\xc4\xde\xd2\x16\x5e\x41\x0b\x16\ \x27\xde\xbf\x35\x01\x80\xa0\xa3\xa1\x22\xe5\x66\xc5\x3b\xd1\x4c\ \x46\x03\xce\x1c\xed\x85\xc7\xe7\xc7\xf8\xcc\x32\x20\x56\xf5\x8e\ \x5b\x72\x4e\x64\x55\xc5\xd9\x05\x48\x90\x84\x33\x52\x99\x3d\x25\ \xcd\x53\x39\xb1\x5d\x22\x51\xfd\x02\xa5\x92\xe2\x2f\xc9\x38\x32\ \xd5\xca\x4c\xb1\xdf\x18\xe5\x77\x40\xbe\xb2\x52\xbd\x5c\x1f\x98\ \xa1\x37\x49\x58\x6a\x0e\xb6\x2a\x5a\x82\x45\x83\x6a\xf4\x5d\x09\ \x61\x79\x32\xca\x45\x78\x36\xbb\x1d\x8f\x9f\x7a\x0c\xad\x4d\xf5\ \x78\xff\xea\x1d\xcc\x2f\x5b\x39\x42\x05\x1f\x0d\xac\xda\x90\xc5\ \x9a\x0e\xdd\xcb\x7f\xf7\xb7\x43\xc5\xf9\x26\x2c\xad\x79\xb0\x01\ \x20\xac\x25\xdf\x92\x3c\xbe\xf4\xa2\x4b\x94\x51\x51\x92\xc2\x13\ \x27\x8e\xc2\xbc\x80\x87\x93\x2b\xf8\x68\x78\x16\x35\xe5\x45\xa8\ \x2a\x2b\xdc\x53\xbc\xc7\x40\x4f\x1b\xaa\xca\x8b\x71\xf7\xd1\x14\ \x78\x41\x48\x7e\x6e\xa3\xc9\x96\x64\xab\xeb\x36\x96\x7c\x69\xb7\ \x02\x53\x90\x91\x6a\xb0\x1c\xe9\x13\xbb\x05\x32\x82\x72\x66\x30\ \x18\x70\x6c\x70\x00\x3c\xcf\xe3\xcd\xf7\x3f\x02\x38\x83\x41\x70\ \x4f\xce\xc5\x90\xa4\x19\x5f\x6e\x4f\x66\x67\xe9\xd7\x23\xe7\x8d\ \xe2\xea\xf0\x02\xde\xb9\x31\x01\xab\xd3\x27\xed\x74\x2e\xbe\x90\ \x68\xcc\x9a\x87\xb8\x46\xbf\x34\x8e\xa0\xa2\xa2\xcf\x53\xc6\x85\ \x49\x45\xdf\x43\x19\x04\xd7\x40\x77\x3d\x3e\xf3\xec\x20\xca\x19\ \xe9\xdb\xdd\x6c\x13\x73\x2b\xf8\xe3\x6f\xfc\x04\x56\xbb\x53\x44\ \xfc\x89\xcf\xab\x02\x07\x25\xfe\x7d\x62\x3e\x1f\xb7\x2a\x97\xb2\ \x34\x26\xc4\x6b\x4c\x44\x37\x7c\xec\xf7\x33\xc7\xa5\x32\x8d\xa0\ \xa5\xbf\x7b\xdc\x56\x92\xcf\xab\x38\x2e\xc8\x1f\xd7\xe6\x3e\xb2\ \x8e\x83\xc6\x8c\x0b\x48\x9f\x50\xd1\x75\x1f\xbb\x8f\xd2\x76\x0c\ \x94\x52\xf1\x1b\x31\xfb\x48\x45\xdb\x31\x80\x2b\x6e\x1f\xa9\x3c\ \xd8\x46\x5f\x54\x56\x96\xe3\x3b\x7f\xfd\x67\x70\xb9\xbd\x18\x78\ \xf6\x37\x11\x08\x06\x69\x78\xf1\xad\xb7\x69\xc8\x35\x0f\xc0\x0e\ \xc0\x17\x03\x20\x99\xf1\x38\xbe\xf6\xb5\x3f\x18\x02\x00\x8e\x23\ \x68\xac\x2e\xc6\x99\x83\xcd\x28\x2b\x32\x63\x65\xcd\x0b\x5f\x20\ \x14\xe7\x56\x31\xd7\x45\xb0\xf2\xf8\x10\xd7\x19\x30\x44\x7b\x59\ \x64\x57\xac\xdb\x2b\x72\x2b\x97\xac\x4e\x5c\xbc\x35\x01\x5e\x10\ \xd0\xde\x58\xb9\xa1\xbc\xbe\xdb\xad\xac\xb8\x00\xa7\x0f\xf7\x62\ \x6c\x7a\x11\x56\xbb\x6b\xcb\x63\xfc\x6d\x21\x33\xb2\xb0\x8f\xa9\ \x77\xb6\x53\x2b\xde\x03\xd5\x9e\x5b\xbc\xe6\x69\x7c\x5d\x8c\x74\ \x75\xaf\x4c\xed\x4c\xcc\xa6\x5e\x9f\x0f\x7d\x3d\xdd\x68\x6b\x69\ \xc2\x83\xd1\x69\x8c\x4c\xcc\x11\x10\x2e\x4c\x7d\x71\x25\xe8\x7c\ \x26\x7f\xa2\x0d\xe0\x88\x4d\xf1\x35\x54\x15\xe3\xf4\x81\x66\x54\ \x14\xe7\x61\x65\xcd\x0d\x8f\x3f\x28\x7f\x92\x68\x22\xb7\x3b\xb6\ \xb0\x29\x46\x33\x53\xa2\x68\x15\xbb\xe4\x9b\x32\xf2\xf8\x88\xe8\ \x7a\xce\x58\x70\xed\xde\x14\x2a\x4b\x0b\x51\x53\x51\xb4\x67\x78\ \x8f\xb3\x47\x7b\xe1\xf6\xf8\x31\x39\xbb\xc4\xec\xe2\x23\x11\x87\ \x21\xa9\x88\xf7\x80\x21\xde\x43\x14\x32\x0f\x2c\x59\x3d\x15\xfd\ \x59\xa0\x5c\x32\x2f\x5b\xe7\x90\x46\xa9\x39\x92\x28\x35\x17\x87\ \xe4\xec\xc5\x6d\xac\x8c\x8a\xba\x54\x79\x5a\x21\x95\x4c\x28\x2a\ \x08\x02\xce\x9d\x3c\x81\x3c\x93\x11\x3f\x7a\xfd\x22\xc0\x19\x4d\ \x82\x6b\x7c\x26\x26\x5c\xc9\xe8\xc2\x37\xdd\xd7\xbe\x26\xdf\x74\ \x3a\x02\x20\x2d\xa8\x2a\xcd\xc7\xca\x9a\x07\x1e\x5f\x50\x5a\xc3\ \xca\x6c\x45\xb5\x79\x21\x65\x64\x02\x12\x9d\x24\xaf\x3f\x88\xab\ \x0f\x66\x30\xb5\x60\x45\x7b\x43\x25\x0a\x18\xd2\x85\xbb\x92\xf7\ \xe8\x6d\x43\x45\x69\x11\xee\x8e\x4c\x47\x78\x0f\x4d\xbc\x27\x2d\ \x6f\x2b\x51\x81\x16\x4b\x88\x95\xb0\x38\x3a\x59\x40\x4e\xd0\xee\ \x51\xa2\x3a\xc6\xc8\x52\x02\x2a\x08\x5f\x60\x79\xd5\x82\x5f\xfe\ \xf8\xc7\xd0\xde\x52\x8f\x7f\xfa\xfe\xeb\xf0\x05\xa9\x91\x06\xd7\ \x2c\x08\xbb\xdd\xd9\x20\x49\x65\x81\x23\x96\xe8\xac\xab\x2c\xc2\ \xe9\x83\xcd\xa8\x29\x2b\x84\xc5\x1e\x01\x10\x59\x09\x34\xd1\x8c\ \x22\xa6\xe6\x99\x85\x45\x8c\x59\x4e\x1e\xe5\x37\x4f\xb0\x65\xcd\ \x85\x8b\x37\xc7\x11\x08\x85\xd1\xd9\x54\x05\x1d\xc7\xed\x7a\x00\ \x69\x6d\xa8\xc6\xc1\x7d\x2d\xb8\xf3\x70\x12\xfe\x40\x50\x52\xaa\ \x1e\x37\xe3\x43\x4e\xa2\x2e\x59\xf1\x1e\x2a\x21\xc5\x63\x27\x0d\ \xc2\x58\x1a\x4e\x58\xa4\x38\x2b\xa3\x02\xb9\xce\xf4\x09\x32\x0f\ \x89\x32\x2a\x48\x5c\xd5\x9a\x31\xbc\xa5\xdb\x8a\xdb\x91\x64\x42\ \x28\x8c\x86\xba\x1a\x74\x77\xb4\x63\x71\xc5\x86\x9b\xf7\x46\xa3\ \x25\xe8\x73\x4b\xd8\x5c\xf8\x96\xb1\x12\xf4\x84\xc0\x11\x6b\xb5\ \x15\x11\x00\xa9\xad\x28\x82\x65\xcd\x03\x97\x37\x90\xf1\xd0\x37\ \x59\xa2\x5d\x10\x28\xc6\x67\x2d\xf8\xe0\xee\x24\xca\x8a\xf3\x51\ \x5f\x55\xb2\xfb\x79\x8f\x92\x42\x9c\x3a\xdc\x8b\xd1\xe9\x45\xd8\ \x58\xbc\x47\xd6\xc4\x7b\x90\xa0\xe8\x8f\xaa\x0c\x65\xa5\xe2\x3d\ \x92\xf0\x02\x2c\x35\x2c\x30\x4a\x59\x53\x29\x35\x17\x03\x12\x55\ \xa5\x1f\x1a\x57\xd7\x44\xd8\xaa\xe6\x71\xe3\xca\xa4\xae\x99\xa1\ \x1c\x58\x8d\xac\x93\x4b\x31\xfb\x7c\x7e\x9c\x7f\xe2\x71\x54\x94\ \x15\xe3\x5b\x3f\x7c\x13\x44\x67\xca\x13\x9c\x71\x25\xe8\x19\x0b\ \x57\x92\x02\x8e\xf5\xf7\x6a\xcb\x0b\x71\xea\x40\x33\xea\x2b\x8b\ \xb0\x6a\x8f\x02\x08\x4b\x3a\x7e\xfd\x64\x50\x56\x78\x03\xa9\x52\ \x2b\x64\xe2\x67\x30\x2a\x14\x45\xb3\x95\x3f\x10\xc6\x8d\xe1\x19\ \x8c\xcd\x5a\xd0\xda\x50\x81\x42\x86\x74\xe1\x6e\x32\xb3\xc9\x80\ \x73\x47\xf7\xc3\xe9\xf2\x61\x72\x7e\x19\x71\x8b\x25\xe4\x78\x00\ \xa2\x56\xbc\x87\x24\x10\xb9\x51\xe6\x41\x92\xae\x47\x90\x85\xad\ \xf4\x81\x8e\x3d\x0e\x55\x62\x51\x93\x00\x46\xc8\x03\xa6\x0c\x80\ \x27\x75\x3c\x49\xde\xde\x16\xab\x15\xcf\x9f\x7f\x12\x6d\x4d\xf5\ \xf8\xe9\x5b\x97\x61\xb5\x7b\xf4\xe0\x03\x4e\x1a\x5c\xb3\x67\x3a\ \x5c\x51\xe4\x38\x12\x81\x49\x4d\x79\x21\x4e\x1e\x68\x46\x53\x75\ \x29\x56\x1d\x1e\x38\xdc\x7e\x15\xec\x73\xb2\x75\x03\xc9\x91\x48\ \xab\x76\x0f\x2e\xde\x18\x83\xc7\x1f\x44\x67\x73\x55\x9c\x74\xe1\ \x6e\xe4\x3d\x06\xf7\xb7\xa3\xb4\xb8\x10\xf7\x46\xa6\x21\x24\xaa\ \xf7\xa0\x6a\xc7\x55\x51\xf8\xc5\x6c\x00\xc5\x20\x14\xd5\xb4\x9b\ \x44\x82\x92\x6c\xc8\x6b\x71\x2a\xaa\x9a\xb3\x00\x11\xec\xe3\x90\ \xef\x1e\xaf\xa0\x19\x2a\x3a\x5f\xaa\x0b\xcf\xc4\xa1\xa5\x78\x7f\ \x24\xe1\x18\x8d\x0f\x25\x65\x42\x4b\x4a\x29\x8a\x0a\x0b\x71\x60\ \x7f\x84\x48\xbf\x78\xf5\x0e\x08\xa7\xd7\x09\x9e\xe9\x79\xc4\xeb\ \x74\xd0\x6d\x05\x8e\x75\xab\x2a\x2b\xc0\xc9\x03\xcd\x68\xad\x2d\ \x83\xd5\xe1\x81\xc3\xe3\x97\x72\x17\x8a\x19\x15\xb1\xd8\x2c\xe2\ \xd4\xc8\x14\xd7\x49\x6c\x6c\xb3\x99\x0a\xa6\x02\x30\x31\xbf\x8a\ \x0f\x6f\x4f\xa0\xa8\xc0\x8c\xc6\x9a\xb2\x5d\xed\x7d\xb4\x35\xd6\ \xa0\xbf\xab\x05\xb7\x1f\x4d\x21\x10\x0c\xc5\x93\xd4\x8c\xf3\x95\ \x48\xbc\x27\x99\x49\x32\xab\x21\x6a\xba\x8a\x67\xdb\x58\x94\x95\ \x55\xa3\xf2\x93\xe8\x9a\xdd\x81\x17\x9f\x7b\x06\x4d\xf5\xd5\xf8\ \x9b\x7f\xfe\x29\xc0\x99\xf2\x04\xf7\xc4\x14\xa8\x20\x6e\xa1\x90\ \xd6\x11\xe9\x7e\xef\xf7\x22\xe9\xd8\x74\x80\x63\xfd\xfd\xca\xd2\ \x02\x3c\xd6\xdf\x8c\xb6\xfa\x72\x58\x1d\xde\xcc\xac\x37\x49\xa3\ \x20\xc1\x1f\x0c\xe3\xd6\xa3\x59\x3c\x9c\x5c\x42\x73\x7d\x39\x8a\ \x0b\xf2\x76\x2d\x78\x94\x97\x16\xe1\xf4\xe1\x5e\x8c\x4c\xcd\x63\ \xcd\xe1\x92\x55\xc9\x66\x36\x6f\x66\xcc\x66\xac\xc5\x65\x52\xd0\ \x26\xea\xfa\xc3\x20\x71\x07\x77\xf6\x02\x38\x85\x06\x55\x92\x89\ \x06\x32\x5d\xd4\x18\x9d\xe0\x55\xf4\x51\x91\x5b\x4a\x2f\xce\x1e\ \x4a\x54\xda\x54\x2e\xa5\x17\xf3\x18\x60\x2c\x46\x64\xb7\xe4\x54\ \x68\x00\x4e\x00\xbb\xc3\x89\xc7\x8e\x1d\x45\x4b\x63\x3d\xde\xb9\ \x7c\x13\x8b\x2b\x6b\x1c\xc2\x3e\x7b\x34\x5c\xc9\x18\x49\xba\x51\ \xc7\x91\x0e\x70\x88\xdf\xab\x28\xc9\xc7\x89\xbe\x66\x74\x34\x56\ \xc0\xe6\xf4\xc2\xee\xf2\xab\xc8\xa8\x10\x66\xf7\x32\xe9\x97\xa9\ \x21\xb1\xe2\x2f\xc4\x35\xa7\x17\x97\x6e\x8e\xc1\xe9\xf2\xa1\xb3\ \xb9\x3a\x4e\xba\x70\x77\xf1\x1e\x46\x9c\x3d\xd2\x87\x35\x87\x1b\ \xd3\x0b\x2b\x09\x98\x02\x9a\xf4\x6c\xa6\x66\x1c\x9a\xa1\x90\x33\ \xf3\xef\xab\x38\xc4\xed\xf0\x44\xb2\xa0\xaa\x5e\x56\x5a\x8c\x81\ \xfe\x3e\xcc\x2e\xac\xe0\xca\xcd\x61\x80\xf2\xa1\xa8\xc0\x4f\x6c\ \x09\x3a\xb6\x0c\x38\x92\xf5\x42\x2a\xa3\x00\xd2\xd5\x5c\x85\x35\ \x87\x17\x36\xa7\x37\xa3\x19\x95\x64\xfe\x24\x50\x60\x7a\xd1\x86\ \xcb\xb7\xc6\x90\x6f\x36\xa2\xb9\xae\x7c\x57\x82\x07\xc7\x11\x1c\ \xee\xeb\x44\x71\x61\x1e\x1e\x8c\xce\x80\x46\x79\x0f\xb6\x57\xc0\ \x9a\xcd\xc4\x82\xbc\x90\xe5\x05\xd4\xf6\x89\x95\x64\x4a\x20\xa7\ \xeb\x42\x64\xf4\x5f\x18\xeb\x9c\x62\x02\x2b\x71\x05\xa6\xf8\xb9\ \xb8\x02\x53\x32\x6e\x9c\xf7\xc1\x2e\xea\x92\x92\xc7\x72\xb5\x19\ \x72\x6a\x66\x89\x8a\xe3\xa4\x8a\xf6\x84\x28\xa7\xa2\xe5\x32\x3a\ \x94\x52\x3c\xfb\xe4\x10\x40\x81\x97\x7f\x76\x01\x20\x1c\x17\x2d\ \x06\xf3\x23\x43\x4b\xed\xc9\xdc\x5c\x64\xad\x4a\x36\x80\x43\xfc\ \xfe\xe4\x82\x0d\x3f\xbf\xfc\x10\xa3\xb3\x16\xd1\x5a\x97\xd8\x24\ \xdf\xd6\xac\xa5\x68\xae\xab\xc0\xe7\x9f\x3f\x81\xe6\xfa\xdd\x09\ \x20\x00\x30\x32\x39\x8f\x3f\xf9\xa7\x1f\xc3\xee\xf4\x48\x60\x95\ \xb5\x96\x44\x3c\x1d\x53\xf1\x79\x65\x64\x0c\xa8\x68\xca\x4c\x3c\ \xae\xc8\x73\x91\x59\xa3\x22\x5d\x2b\xa5\x6e\x6d\x94\x78\x2a\x67\ \xad\x7d\xa1\x72\xe3\xc6\x5f\x85\x1b\x6b\x51\x58\xd7\x21\xfb\x7c\ \x51\xf6\x38\xb2\xe7\x8b\xca\xae\xcd\x92\x5c\xe7\xcc\xf5\x5c\x9b\ \xef\x47\xba\x2a\x46\x9e\x1b\x0d\x46\xfc\xe0\x9f\xfe\x0e\xe1\x30\ \x8f\xde\x27\xbe\x84\x60\x30\x48\x43\xf3\xaf\xbe\x0e\x3e\xb0\x08\ \xc0\x81\xc8\xda\x95\xb4\x32\x2c\x4c\x8f\x23\x5b\x1d\xe8\xcb\x8a\ \xf2\x70\xbc\xaf\x09\xbd\x6d\x35\xb0\xbb\x7c\xb0\xda\xdd\x29\xf9\ \x6d\x8a\x25\xd1\x50\xb7\x34\xdc\xe1\xf2\xe2\xf2\xad\x31\xd8\x1c\ \x6e\x74\x36\x57\xc3\x18\x23\x5d\xb8\x5b\xac\xa2\xac\x18\xa7\x06\ \x7b\xf1\x68\x62\x0e\x76\xa7\x5b\xa1\x3e\x42\x4d\xa6\x04\x9b\x61\ \x24\x15\xf3\x20\x44\x56\x64\x87\xc9\x0b\xa8\xa9\x87\x50\x52\x39\ \x17\xf3\x2b\xa2\x0c\x4e\x3c\x29\x4c\x54\xf6\x51\x61\x69\xac\xca\ \xf7\x8d\x4d\x58\x67\x21\x51\x87\x27\x0a\xa2\x48\xac\xd4\x35\x91\ \x54\x96\x2a\x2a\xef\xc5\x18\x2f\xf0\x38\xb8\xbf\x17\x8d\xf5\x75\ \xb8\x78\xe5\x0e\xe6\x16\x2d\x24\x92\x96\xb5\xd9\x44\xd9\x15\xe4\ \x1c\x70\x28\x6d\x5b\x5a\x98\x87\xa3\xfb\x9b\xd0\xd7\x5e\x0b\xbb\ \xc7\x87\x55\xbb\x87\xd9\x7c\x57\x4a\x22\x51\x19\xed\x3a\xe5\x14\ \xaf\x5c\x1e\x9f\x02\x98\x5d\xb6\xe1\xd2\xcd\x51\x18\x0d\x06\xb4\ \xd4\x57\xee\x3a\xd9\x42\xb3\xc9\x88\x73\xc7\x0e\xc0\x6a\x77\x62\ \x66\xc1\x92\xfd\x4c\x48\xae\x64\x54\xd2\x18\x2b\x5d\xf1\x1e\x49\ \xc3\x28\xa2\xac\x01\xa2\x86\x98\x55\x5e\x8b\x23\x6d\xb7\x59\x56\ \x5a\x8a\xc3\x07\x0f\x60\x7e\x69\x15\x97\xaf\xdf\x03\x20\x84\xa9\ \x77\x6e\x11\xd2\x62\xb0\x9d\x03\x1c\xeb\x56\x52\x68\xc6\xd1\xde\ \x26\xf4\x77\xd6\xc2\xe9\x09\xc0\x62\xf7\x88\x7b\x42\x89\x62\x46\ \x22\x83\xce\x72\xfd\x4c\x59\xa2\xba\xb1\x3f\x20\x8d\x51\x5e\x9f\ \xc7\xed\x91\x19\x34\xd6\x94\xa3\xac\x78\x77\x49\x17\x72\x1c\xc1\ \x91\xfe\x2e\x14\xe6\xe7\x61\x78\x6c\x1a\x82\x00\x11\x77\x41\x25\ \xae\x08\x51\x14\xef\xa1\xcc\x99\x11\x12\xbe\x01\xb2\xe2\x3d\xb1\ \x9e\x08\x4b\x44\x48\xb6\xcf\x4c\xa2\xa2\x32\xb0\x44\x71\x64\xc6\ \x55\x9a\xf1\x89\x92\x38\xb1\xb4\x83\x5e\xac\xc7\xb4\x95\xc4\xaa\ \x9c\x09\x82\x80\xe7\x9e\x7a\x02\x3a\x1d\x87\x7f\x79\xe5\x17\x00\ \xe1\x74\x82\x6b\x7c\x3a\xca\x73\x04\x91\xa6\x46\x07\x93\xe3\xc8\ \x34\x40\xa8\x7d\x7f\xc1\xe2\xc0\xab\x97\x86\x71\x6f\x7c\x11\x54\ \xa0\x12\x86\x9e\xa9\xe5\x21\x7a\x1d\x1f\xd7\xb2\x3d\x12\xaa\xa4\ \x2d\x02\xe0\x78\x7f\x1b\x7e\xe5\xfc\x31\x14\x15\x98\x77\x5d\xf8\ \x32\x3c\x3e\x8b\x3f\xfd\xe6\x8f\xe1\x74\x79\x21\x11\xcd\x15\x9f\ \x2f\x05\xcd\x14\x71\xd8\x1d\x19\x45\xca\x37\x88\x63\x7a\xca\xfc\ \x0e\xca\xe0\x60\xc4\xbf\x0f\x43\x03\x83\xc9\x31\xb0\xee\x2a\xb6\ \xd6\x45\xfc\x61\x8b\xb8\x13\xaa\x96\xab\x90\xe3\x74\x64\x38\x3b\ \x89\x5e\x8d\xba\x6b\x9a\xb9\xbc\x9f\xca\x5f\xd3\x06\xbd\x1e\xdf\ \xfd\xbb\xbf\x81\x4e\xa7\x43\xef\x13\x5f\x84\xd7\xe7\x47\x78\xe1\ \x8d\x37\x68\xd8\xb3\x80\x4d\x8d\x8e\x94\x79\x0e\xd5\x1e\x47\xb6\ \x78\x8f\xd8\xf7\x8a\x0a\xcc\x38\xdc\xd3\x88\x43\xdd\x0d\x70\xf9\ \x02\x58\xb1\xb9\x63\x42\x63\x12\x0b\xee\xec\x25\xcc\x0a\xfd\x61\ \xe2\xfd\x10\xa2\xb8\x32\x71\x61\x65\x0d\x17\x6f\x8e\x82\x09\xc3\ \x24\x3d\x00\x00\x20\x00\x49\x44\x41\x54\xe3\x08\xda\x1b\xab\x76\ \x95\x74\x61\x55\x79\x09\x4e\x46\x79\x0f\x87\xcb\xc3\xec\xcf\x42\ \x20\x76\xf7\x12\xf1\x20\x54\x45\x5b\x44\xa9\xa7\x27\xce\xf4\x28\ \xd7\x8f\x28\x8b\x03\xb3\xc5\x99\x49\xc2\x29\x9a\x2a\x72\x6b\xc9\ \xaa\xa2\x67\xa0\x21\x96\x08\x0c\x53\xf5\x44\x04\x41\xc0\xfe\x7d\ \x5d\x68\x6a\xa8\xc7\x95\x9b\x0f\x30\x35\xb7\x0c\xca\x07\x5d\x34\ \xb0\x6a\x45\x06\xca\xcf\xb7\x14\x38\xd4\x6e\x5b\x94\x6f\xc2\xe0\ \xbe\x46\x0c\xf6\x34\xc2\xed\x0b\x62\xc5\xe6\x52\x77\x2e\x33\xe8\ \xfa\x85\x78\x1e\xc3\x13\x8b\xb8\x31\x3c\x8d\xda\xca\x52\x54\x96\ \xee\x1e\xe9\xc2\x3c\xb3\x09\x67\x8f\xf5\xc3\x62\x73\x60\x6e\xd1\ \x92\xf1\x18\x5f\x36\xee\x4f\x04\xec\x84\x30\xd7\xd4\xb0\x96\x9c\ \xcb\xab\x9a\xb3\x96\xb3\xb3\x16\x90\x11\xe5\x25\xef\x84\x95\x66\ \xa5\xf1\xe9\x52\x24\x4a\x97\x32\x80\x96\xc8\x11\xb3\x84\xc1\x55\ \x88\x04\x7e\x62\x6e\x14\xb6\xbe\x6c\xfc\xb1\x14\x97\x94\xe0\xe8\ \xc0\x21\x2c\x59\x6c\x78\xff\xea\x1d\x10\xca\xf3\x82\x77\x76\x1e\ \x9b\x69\xd9\x94\x0b\xc1\x24\xc0\xb1\x15\x9e\x85\xda\xf7\x0b\xf3\ \x4c\x18\xd8\xd7\x80\x23\xfb\x9b\xe0\xf1\x05\xb1\xbc\xe6\x8a\x8a\ \xe0\x8a\xbb\x95\x27\xe8\x07\xc3\xc8\xe3\x8b\x9b\x84\x48\xe3\xf0\ \xc8\x78\x6e\xaf\x1f\x57\xee\x8c\x61\x61\x65\x0d\x9d\xcd\x35\x30\ \x1b\x0d\xbb\x84\xf7\xe0\x70\xf4\x40\x37\x0a\xf2\x4c\x78\x30\x36\ \x0d\x0a\x2a\xad\x48\x64\x70\x43\x8a\x72\xff\x60\xd5\x47\xa4\xd0\ \x27\x87\xa6\x89\x5b\x39\x56\xe0\x95\xcc\xc6\x8a\x45\x76\x54\xfd\ \xaa\x64\x0a\x40\xe0\x05\x3c\xff\xf4\x93\x30\x1a\x0d\xf8\xf6\x0f\ \xdf\x02\x38\x9d\x5e\x70\x8d\x4d\x45\x09\xd2\xb4\xfa\xae\x48\x38\ \x8e\xed\x00\x08\xb5\x17\x96\xd5\xe1\xc1\xcf\x2f\x3d\xc0\x8d\xe1\ \x19\xf0\xbc\x20\x13\x8b\x52\x11\x7d\x21\x57\xe7\xa1\xfc\x63\x50\ \x06\x6f\x62\x32\x1a\xf0\xcc\xa9\x03\x78\xee\xf4\xc1\x5d\x25\x5d\ \xf8\x60\x6c\x1a\x7f\xfe\xad\x9f\xc0\xe5\xf6\x30\x78\x09\x30\x7a\ \xe8\xb0\xcf\x1d\xa5\xca\x7a\xb3\x12\xc6\x80\xb2\x75\x50\xe3\xeb\ \x1c\xd8\xb5\x3b\x54\xc2\x6f\xb0\x38\x18\xaa\xbc\xda\x55\x4e\xbf\ \x54\xee\xfb\xe5\x6a\x51\x18\x35\x2b\xcc\xda\x0c\x2a\x73\x1c\x0a\ \xdf\x4f\x95\x74\x7f\x21\xbf\x1d\x05\xa0\xe3\x38\x7c\xe7\x6f\xff\ \x12\x26\x93\x19\x7d\x4f\xfe\x1a\x5c\x6e\x2f\xc2\x8b\x6f\xbd\x45\ \x43\xce\xb9\x74\x79\x8e\xac\x78\x1c\xd9\x02\x8e\x7c\xb3\x11\x07\ \xbb\x1a\x70\xac\xbf\x05\xfe\x40\x08\xcb\x36\x17\x28\x15\xd8\x4b\ \xf9\xa5\x1e\xb0\x22\xab\x2e\xe5\x41\xa4\xd2\xfe\xbc\x20\x60\x64\ \x6a\x11\xd7\xee\x4f\xa0\xba\xa2\x18\xd5\xd1\xa6\xd1\x3b\x9f\xf7\ \x28\xc5\x89\x81\x1e\x3c\x1c\x9f\x81\xc3\xe5\x49\x30\x65\xca\xcc\ \x89\x34\x4b\xea\xe1\x39\x68\x39\x97\xce\x96\x3d\xf5\x02\xba\x3a\ \xda\xd1\xd2\xd8\x88\xeb\x77\x46\x30\x3e\xbd\x00\xd0\xa0\x87\xfa\ \x2d\x56\xc4\xaf\x5b\xd9\xda\x50\x25\x9b\x20\xa3\x18\xa3\x9b\x8c\ \x38\xd0\xd5\x80\x13\xfd\xad\xf0\x07\xc3\x58\xb2\x3a\x21\x08\x74\ \xcb\x16\x30\x7a\x7d\x01\x5c\xbb\x3b\x8e\x99\x05\x2b\x3a\x9a\xab\ \x91\x67\xde\xf9\xd2\x85\xf9\x66\x13\xce\x1c\x3b\x88\x15\xeb\x1a\ \xe6\x97\x56\x15\x3a\xa7\xb1\x05\x67\xe2\xc3\x14\xa5\xee\x66\x54\ \x94\x5e\x67\x97\x64\xc7\x8a\xb8\x10\x15\xa5\xe6\x00\x12\x94\x9a\ \x13\xd1\xb4\x80\x98\xee\xf1\xf2\xfa\xa1\xac\x96\x1e\x20\x72\x9d\ \xf0\x58\xba\x32\xf2\x35\x1c\xcc\x5a\x0c\x51\x0d\x07\xa0\xbc\xac\ \x9f\x28\x1d\x07\x01\x4a\x8a\x8a\x70\x6c\x70\x10\x16\xab\x1d\x17\ \x3e\xb8\x05\x50\x41\x10\x3c\x33\xeb\xcb\xec\x53\xe6\x39\x54\x01\ \xc7\x76\xf0\x1e\x6a\xcc\x6c\x32\xe0\x40\x67\x3d\x4e\x1e\x6c\x43\ \x30\xc4\x47\x00\x64\xdd\x03\x81\xa8\x22\x11\x6c\x02\x8d\xd5\x1d\ \x1d\xac\x66\xc0\x88\xaf\x2c\x24\x00\x96\x6d\x4e\x5c\xbc\xfe\x08\ \xa1\x30\x8f\x8e\xe6\x9a\x1d\x1f\xbe\xe8\x38\x0e\xc7\x0e\xee\x83\ \xd1\x64\xc4\xc3\xb1\x99\x88\x17\xb1\xc5\x0e\x43\xf6\xc5\x7b\xe4\ \x3e\x2f\x5f\x24\xa8\x8e\x57\x80\x72\xe8\x9b\x74\x9f\xd8\xcc\xb8\ \x34\x3c\xcf\xe3\xf9\xa7\x9f\x42\xbe\xd9\x84\x7f\xfc\xfe\xeb\x20\ \x44\x6f\x10\x5c\xa3\x53\x88\x5f\xb7\x92\xb4\xd7\x11\xc7\x71\xe4\ \x12\x31\x9a\x8a\xb9\x3c\x7e\xbc\x76\xf9\x01\xae\xdc\x9b\x44\x28\ \xaa\x4b\x21\x89\x85\x21\xd3\xef\x83\x6e\xca\xce\x89\x3f\x23\x17\ \xe7\xc6\x5e\x70\x15\x25\x85\xf8\xe5\x67\x1e\xc3\xa1\x9e\xe6\x5d\ \xe1\x8e\xdf\x1f\x9d\xc2\x5f\x7c\xeb\x15\xb8\x3d\x5e\x99\x7a\x04\ \x48\xeb\x18\x98\xbc\x80\x72\xbc\x4e\x13\xd4\x27\xc8\xd6\x5d\xc8\ \x72\x5b\xea\xfb\xf7\x24\xe4\xb6\xc0\x5e\xa3\x42\x99\x7c\x07\x9b\ \x9f\x89\xdb\x3f\x35\x6b\x64\xa8\x4c\x9d\xc7\xc6\x77\xb2\x78\xa3\ \xf8\x3a\x95\x70\x98\x87\xd3\xed\x81\xd3\xe9\x86\xdb\xe3\xc1\x8d\ \x0b\xaf\xa3\xa4\xb8\x18\x07\xcf\xff\x06\x6c\x76\x27\xc2\xcb\x17\ \xde\xa1\x01\xdb\x4c\x94\xe7\xf0\xa6\x12\xb2\xc4\x79\x1c\x3b\x1d\ \x38\x4c\x46\x3d\xfa\x3a\xea\x70\xea\x50\x07\xc2\xbc\x80\x25\xab\ \x03\xbc\x20\xc4\x29\x29\x01\xa2\xaa\xc9\x98\xaa\x45\xf5\xa8\x2f\ \xfd\xbb\x37\x10\xc4\xf5\x07\xe3\x98\x98\x5d\x41\x7b\x63\x35\x0a\ \xf2\x76\xb6\x74\x61\x75\x45\x29\x8e\x1f\xea\xc1\xf0\xd8\x34\x9c\ \x6e\xaf\xf4\xe8\xb3\x25\xd0\x9b\xc9\x52\xf3\x5c\x21\x21\x54\x8e\ \xa5\xb4\x09\xb3\xe6\x25\xfa\x9a\x82\xc0\xe3\xf5\xc1\x6a\xb5\x63\ \x61\x71\x05\xb3\x0b\xcb\xb0\x3b\x9c\xf0\xf9\xfc\xe0\x79\x1e\x87\ \x0f\x1d\x44\x57\x47\x1b\x6e\x3f\x18\xc7\xc8\xc4\x2c\x20\x84\xbc\ \xd4\xbf\x62\x49\x87\xe7\xc8\x38\x70\x64\x8b\x18\x4d\xc6\x8c\x06\ \x3d\xf6\xb7\xd7\xe1\xe4\xa1\x0e\x08\x02\xc5\xe2\xaa\x03\xbc\x40\ \xa5\x82\x2e\x00\xa3\xeb\x3a\x4b\x7a\x8e\x32\x17\x58\xc5\x06\xf6\ \xeb\x9f\x5f\xb5\xbb\x70\xf1\xc6\x23\xf8\x03\x41\x74\x36\xd7\xee\ \x68\xe5\xf5\xfc\x3c\x33\xce\x1c\x3d\x88\x65\x8b\x0d\x0b\x2b\x56\ \x46\x0d\x45\x3c\xe9\x1c\xcf\x1d\xc8\xe9\xaf\xc8\xac\xd1\x40\x82\ \xc5\x77\x49\x96\x9a\x4b\x96\x22\x28\xf2\x05\x31\x23\x10\xe5\x8e\ \xf7\xb2\xfd\x69\x20\x15\x0b\x92\xad\x0d\x89\xab\x4d\x11\x29\xd1\ \x10\x76\x9b\x05\x31\xc2\x04\x43\x21\xac\x39\x5c\x58\x5a\xb1\x62\ \x7a\x76\x09\x96\x55\x1b\xdc\x1e\x2f\x42\xa1\x90\xe4\x77\xac\x28\ \x2f\xc3\x93\xe7\xce\xc0\xee\x70\xe1\xad\x8b\xd7\x23\xb4\xa9\x67\ \x7a\x2e\x1d\x9e\x63\x57\x02\x47\x2c\x80\xf4\xb6\xd5\xe1\xf4\x60\ \x27\xa8\x20\x60\x71\xd5\x81\x30\x9f\x86\x86\x09\x55\x17\x7f\x0b\ \x54\xc0\xc4\xdc\x32\x3e\xb8\x3d\x8a\xd2\xc2\x7c\xd4\x57\xef\xdc\ \xa5\xfb\x3a\x1d\x87\x63\x87\x7a\xa0\xd7\xe9\x30\x32\x39\x23\x6d\ \x6f\x18\x77\x5a\x32\xa5\x23\x2b\xb7\xe9\xf6\x8b\xf7\x50\x24\x00\ \x24\x35\x6b\x64\x98\x8d\xad\xa4\x1a\x1c\xb1\xe3\x82\x52\xb8\xdc\ \x5e\x58\x56\xd7\x30\xbb\xb0\x8c\x85\xc5\x15\x38\x9c\x6e\xf8\x7c\ \x01\xf9\x8c\xd6\xba\x37\xec\xf5\xe1\xd7\xff\xd5\xa7\x51\x58\x90\ \x8f\xbf\xff\xee\xcf\x41\x38\xbd\x41\x70\x8e\x4c\x60\x73\xdd\x4a\ \xd2\x3c\x47\x42\x8e\x23\x57\x89\xd1\x54\xcc\x17\x08\xe1\xad\x0f\ \x1f\xe0\xd2\xad\x51\xf8\xe2\xba\xd3\xc9\xad\x53\x80\x7c\x1d\x81\ \xe8\x42\xa6\x0a\x71\x79\x57\x6b\x2d\x3e\xf3\xfc\x69\xd4\x55\xed\ \x6c\xed\xd3\x7b\x8f\x26\xf0\x97\xdf\x7e\x05\x6e\x9f\x2f\x41\x9f\ \x58\x24\x3c\x5f\xf1\x9a\x12\x72\x9a\x16\x62\xae\x82\xc5\x4f\x88\ \x7b\xc0\xc6\xc6\xfd\xf2\x1a\x2d\x52\x5e\x82\x01\x72\x8a\x7d\x62\ \x19\x6b\x6a\x24\x5c\x0f\x65\x83\xab\xdc\xb1\x8b\x3e\xef\xf3\x05\ \xe0\x74\xb9\xe1\x70\xba\xe1\x76\x7b\xa2\x99\x43\xb5\x3d\x7a\xe3\ \x5f\xdf\xbd\xf8\x36\x2a\xca\xcb\xd0\xf7\xe4\xaf\xc1\xee\x74\x23\ \xbc\xf8\xe6\x9b\x34\xe4\x9a\x43\x8a\xfa\x1c\x09\x3d\x8e\xdd\x04\ \x1c\x06\xbd\x0e\xfb\x5a\x6b\x71\x66\xb0\x0b\x84\x70\x58\x5a\xb5\ \x23\x14\xe6\xb3\xbe\xec\xda\x66\x77\xe1\xd2\xcd\x47\x70\x79\x7d\ \xe8\x6c\xae\x85\x5e\xb7\x33\xa5\x0b\xab\x2b\xcb\x70\xf4\xe0\x3e\ \x0c\x8f\x4d\xc1\xe5\xf6\x66\xdc\x73\x4b\x25\xa3\xa2\x58\x6a\x4e\ \x92\xeb\xae\xc6\xee\xe9\x42\x18\xaa\x5b\x2c\x35\x2f\x12\x17\xf2\ \xc4\x10\x13\x8c\xd6\x21\xa2\x30\x2d\xfa\x3c\x14\x0e\xc1\xe9\xf4\ \x60\xc5\x62\xc3\xcc\xfc\x12\x16\x97\xad\x70\xba\xdc\x08\x04\x43\ \xa0\x94\x26\x77\x7e\x44\x80\xf6\xf4\xe3\x67\xd1\xd4\x10\xd1\x21\ \x9d\x5b\xb4\x80\x86\xdd\x6b\x34\xb8\x66\x43\x8a\x3a\xa4\x92\xde\ \xb1\x3b\x95\x18\x4d\xc6\xf4\x7a\x1d\xba\x5b\x6a\x70\xf6\x70\x37\ \x74\x1c\x87\xc5\x55\x3b\x42\x3c\xcf\xec\x36\x26\xd7\x4f\x55\x7e\ \xcd\x01\x98\x71\x2e\xa5\x14\x53\xf3\x2b\xf8\xe0\xf6\x08\x0a\xf3\ \xcd\x68\xac\xad\xd8\x91\xe0\x51\x90\x9f\x87\x33\xc7\x0e\x61\x71\ \xd9\x8a\x25\x8b\x55\x56\x0a\x4f\xdc\x48\x87\x28\xb6\x55\x50\x28\ \x61\x87\xb4\xbb\x9b\x64\xf9\x40\xa6\xc8\x4c\xba\x85\xba\xa7\x00\ \xfc\xbe\x00\xec\x76\x17\x56\x2c\x36\xcc\x2e\x2c\x63\x7e\xd1\x82\ \x35\xbb\x13\x5e\x9f\x0f\x7c\x58\x48\xe9\x7b\xa9\xcc\x71\x1d\x1d\ \x38\x88\x83\x7d\xfb\x71\xef\xd1\x64\xa4\xcb\x1b\xef\xf7\x50\xdf\ \x62\xca\x3a\xa4\x7b\x12\x38\x36\x00\x44\xc7\xa1\xab\xa5\x06\x67\ \x8f\x74\x43\xaf\xd3\x61\xc9\x62\x47\x30\x14\x96\x71\xbb\x13\x79\ \x20\xea\x56\x4c\x06\x82\x21\xdc\x79\x34\x85\xe1\xf1\x59\xb4\xd4\ \x55\xa3\xb8\x70\xe7\x29\xaf\xeb\x74\x1c\x8e\x0f\xf4\x82\x10\x82\ \x91\xc9\xd9\x0d\x77\x59\x4e\xbb\x42\xac\xae\xc5\x52\x15\x67\x16\ \x48\x81\xe1\x39\x88\x0b\xae\x94\x56\xed\xaa\xee\xa3\x42\xd8\xfd\ \x59\x18\xc0\xa5\xdc\x27\x96\xc8\xf6\x47\x11\x04\x0a\xb7\xc7\x07\ \xdb\x9a\x03\x4b\xcb\x56\xcc\xcc\x2d\x61\xd9\x62\x8b\xf0\x14\x7e\ \xbf\x32\xf7\x96\x01\x40\x6b\x6f\x6d\xc1\xd0\x99\x93\x58\xb2\xd8\ \xf0\xc6\x7b\xd7\x00\x1a\x0e\x0b\x9e\xe9\x59\xa4\xa8\x43\x9a\x51\ \xbd\xbc\x9d\xba\xfa\xdc\x68\xd0\xe3\xb9\xd3\x07\xf0\xd4\x89\xfd\ \xb8\x70\x6d\x18\xef\x7e\xf4\x08\x6e\xaf\x37\x86\x0c\x8b\x0a\x3a\ \x12\x22\x13\x67\xc7\x1c\x38\x89\x7c\x82\x32\x56\x6a\x91\x8d\xcf\ \x13\x4c\xcd\xad\xe0\x3f\xff\xed\x0f\x70\xe2\x50\x37\x7e\xf9\xfc\ \x63\x30\x9b\x76\x5e\xf5\xe9\x8b\x4f\x9f\x41\x4b\x43\x2d\xfe\xfa\ \x3b\xaf\xc0\xeb\xf3\x67\x96\x8d\xcc\x8d\x7e\xda\x29\x8f\x13\x0c\ \x86\xe0\xf6\x78\xe1\xf6\x78\xe1\x72\x7b\xe1\xf3\xf9\x37\x0a\xea\ \xa8\x4a\x8f\x24\x93\x07\x33\x3e\x39\x05\x00\xe8\xed\x6a\x89\xa2\ \x7f\x5e\x41\xf4\xfe\xd7\x01\xe0\x90\x64\x8f\xf8\x0d\x72\x74\xbb\ \xc4\x7b\x72\xd1\xc2\x61\x1e\x17\x3e\x7a\x88\x77\xaf\x0d\xc3\xe9\ \xf1\x49\x08\x4f\x45\x62\x54\xa1\xe0\x47\x8e\xc4\x2a\xcc\xcf\xc3\ \x27\x9e\x38\x8a\x33\x47\xf6\xef\x48\xe0\x5d\x5e\x5d\xc3\x9f\x7c\ \xe3\xbb\x58\x5c\xb1\x8a\x8e\x5d\xec\xb9\x31\xc4\x76\x21\x26\xfa\ \x58\xe2\x3d\x62\x37\x5c\x86\x8c\x8d\x5b\xdc\xa6\x2c\xf0\xa3\x66\ \x71\x9b\xfc\x6f\x2a\x22\x66\x29\x85\xd7\xe7\x87\xcb\xed\x85\x2b\ \x0a\x16\xc1\x40\x08\x4a\x0b\x26\x25\xd7\x94\xd2\x35\x26\xb3\x68\ \x4f\x2a\x48\x45\x65\x05\xbf\x5b\x9b\x9b\x70\xf9\xf5\x57\xe0\xf3\ \x07\xd0\x7d\xee\xf3\x10\x78\x5e\x08\xcd\xbd\xf2\x2a\xa8\xb0\x22\ \x22\x48\x69\xda\xc0\xb1\x9b\x88\xd1\x54\x8c\x17\x04\xbc\xf7\xd1\ \x43\xbc\x73\x6d\x18\xce\x98\xc5\x5f\x54\x6e\x25\x64\xc2\x9b\x42\ \xfe\x62\x07\x28\x1a\xeb\x2a\xf1\xb9\x8f\x9d\x43\x4b\x7d\xd5\x8e\ \x03\x8f\x60\x30\x84\xbf\xf8\xf6\x8f\x70\xfb\xc1\x88\xf2\x4d\x28\ \xae\xec\x94\x05\x5a\xa9\x92\x37\x7b\x85\x2e\x12\xdf\x94\x94\xc5\ \x03\x88\x94\xc9\xc4\xa1\xa5\x04\x38\x36\xb7\x09\x85\xc3\xf0\x7a\ \x23\x40\xe1\xf6\x78\xe1\xf1\xf8\xc0\x0b\x82\xe8\xc6\x65\x01\x97\ \x5c\x46\x85\x4a\xc0\x2d\x69\xe0\x50\xc8\xa8\x80\x52\xe8\x74\x1c\ \x26\x6e\x7e\x08\x83\xc1\x80\xb3\x9f\xfa\x6d\x4c\xcc\x2c\x20\xbc\ \x72\xe9\x3d\xea\x5f\x9e\x44\x0a\x15\xa4\x8a\x1c\xc7\x5e\x07\x0e\ \x8e\x10\xb4\x35\x54\xe1\xdc\xd1\x1e\x14\x98\x4d\x58\x5a\xb5\xc3\ \x17\x0c\x25\xe5\x5f\x2a\x2d\x44\x12\xf7\xd2\x70\xba\x7c\xf8\xe0\ \xd6\x43\x58\xd7\x1c\xe8\x6c\xa9\xdf\x51\xca\xeb\x3a\x9d\x0e\x27\ \x06\xfa\x00\x00\x63\xd3\x73\x11\xdd\x94\x98\x3a\x07\xb1\xda\x79\ \x7c\xd1\x9d\x1c\xe1\x4c\x94\x55\xcd\x19\x5a\x21\x50\x54\x35\x67\ \xeb\xd6\x4a\xb4\x44\x62\x48\x71\x7f\x20\x00\xa7\xcb\x03\xeb\x9a\ \x13\x4b\x2b\x36\xcc\xce\xaf\x60\x61\x71\x15\xd6\x35\x07\x5c\x6e\ \x2f\x02\xc1\x60\x34\x04\x61\xd7\xac\x24\xee\xa1\xcc\xb8\x88\x54\ \xad\xbd\x51\x18\x87\x25\x35\x48\x29\x3e\xf9\xb1\xe7\x51\x51\x5e\ \x86\x0f\x6f\x3c\xc0\xe8\xe4\x1c\x10\xf6\x38\x68\x60\x75\x15\x29\ \x08\xfb\x24\xdd\xad\x7e\xb7\x10\xa3\xc9\x02\x48\x6b\x43\x15\xce\ \x1d\xed\x45\x61\xbe\x19\x4b\xab\x76\x04\x82\x41\x66\x3b\x80\xb8\ \x94\x5d\x8a\xcc\xfe\xfc\xb2\x0d\x97\x6f\x3c\x80\x5e\xaf\x47\x6b\ \x43\xf5\x8e\x92\x2e\xec\xe9\x68\x41\x73\x5d\x0d\xee\x3e\x1a\x47\ \x38\x9c\xba\x02\xff\x56\x8b\xf7\xf0\xbc\x00\x8f\xd7\x07\xbb\xc3\ \x8d\xd5\x55\x07\xe6\x97\x2c\x98\x99\x5f\xc6\xb2\xc5\x86\x35\xbb\ \x0b\x6e\x8f\x17\xfe\x40\x08\x82\x9a\x02\xc2\x6d\x14\xef\x51\x2a\ \xc2\x3b\x77\xea\x31\x74\xb6\xb7\x61\x7c\x7a\x1e\x97\x3f\xba\x07\ \x2a\x04\x7d\xd4\x3b\xbf\x10\x05\x8e\xe4\xeb\x38\x76\x5b\xc5\x68\ \xb6\x8c\x10\x82\x96\xfa\x4a\x9c\x3b\xda\x8b\xe2\x82\x3c\x2c\xad\ \x3a\xe0\x0f\x04\xe3\xda\x37\x10\x46\xa3\xec\x58\xcf\x23\xb6\x1e\ \x40\x9c\xc7\xdd\x94\xa6\x8b\x2c\x54\x7a\x30\x3e\x8b\xdb\x0f\x27\ \x51\x5f\x55\x8e\xf2\xd2\xa2\x1d\x73\x9e\x6a\xab\x2b\x70\xb8\xbf\ \x07\xc3\xa3\x93\xf0\xf8\x7c\xf1\xb3\x39\x08\x53\x6e\x0f\x72\xaa\ \xe2\x09\x4a\xcd\x37\xfc\x3a\x02\x76\xa6\x84\x21\x57\xe8\x0f\x84\ \xe0\x76\x7b\x60\x5b\x73\x61\xd9\x62\xc3\xec\x82\x05\x73\x0b\x2b\ \x58\xb5\x39\xe0\x70\xba\xe1\xf5\xfa\x11\x0c\x85\x41\x93\x6c\xcd\ \x9c\x6b\x6d\x1e\xc4\xd6\xdf\xd3\x83\xe3\x47\x06\xe1\x70\x79\xf0\ \xe3\x37\x2e\x01\x94\x0f\x0b\xee\xa9\xf5\x0e\x6f\xeb\x15\xa4\xaa\ \xbe\x65\xf7\x75\x21\xda\x22\x0f\xe4\xf4\xe1\x7d\x38\x35\xb8\x0f\ \x1f\xdc\x19\xc1\xdb\x1f\xdc\x85\xd5\xee\x4a\xe3\x92\x90\xff\xad\ \x16\x56\x6c\xf8\xe3\x7f\xf8\x11\x0e\xf7\x75\xe1\x57\x9f\x3f\x8d\ \xc2\xfc\x9d\x91\xbe\xad\xad\x2a\xc7\xff\xfe\x3b\xbf\x81\xbf\xf8\ \xe6\x0f\x71\xe7\xe1\x58\xea\x03\xa5\x71\xb3\xf0\x82\x00\xaf\xd7\ \x0f\xaf\x2f\x00\xaf\xcf\x07\xaf\x2f\x00\x9f\xd7\x8f\xb0\x20\x30\ \x78\x01\x15\xbb\x91\x83\x7d\x62\x93\xb1\xb1\x68\x66\xa5\xad\xa9\ \x3e\x7a\x21\x9b\xf2\x10\x9f\x55\x51\x3d\x9d\x27\x0d\x1c\xbb\xad\ \x61\x51\x7a\x1e\x08\x70\xea\x50\x37\x4e\x1e\xec\xc6\xd5\xbb\x63\ \x78\xeb\x83\x3b\x58\x5d\x73\x32\xae\x30\xc2\xbe\x02\xe9\xe6\xdf\ \x29\xc0\x50\x21\xdb\xdc\xee\xc6\xfd\x51\x3c\x18\x9b\xc6\xf9\xd3\ \x87\xf1\xf4\xe9\x01\x70\x3b\xe0\x87\x30\x19\x8d\xf8\x9d\xdf\xf8\ \x0c\x7e\xf8\xfa\x05\xbc\xfa\xce\xe5\x8d\xac\x49\xfc\xad\x1a\xf5\ \xc8\x62\xcf\x0b\x11\xff\x3d\xaa\x88\xba\x91\x12\x8f\xbf\x8b\x03\ \x81\x20\xfc\x81\x10\xfc\xfe\x20\x7c\x81\x00\x02\xfe\x20\x7c\x81\ \x20\x02\x81\x80\x7c\xa9\xf7\x36\xdc\xb8\x99\xf4\x1e\xd4\x8c\x25\ \x7e\x7b\x3d\x25\xdb\xdc\x50\x1d\x39\xb3\x3a\x93\x39\x0a\x1c\x49\ \xa7\x64\xc9\xdc\x1c\xfd\xba\x46\x8c\x66\xce\xae\xdd\x1b\xc7\x9b\ \x97\x6f\x63\xc5\xea\x40\xfc\x7a\x06\x40\x69\x4d\x0c\xbb\x0f\x2a\ \xbb\x8f\x49\x4d\x65\x09\x3e\xfd\xc2\x39\xec\x6b\x6b\xdc\x31\xe7\ \xe5\xfa\xbd\x87\xf8\x87\xef\xfe\x04\x5e\x7f\x80\xdd\xc7\x85\xd9\ \xa7\x76\xfd\x7e\x17\x10\x08\x86\xe1\xf7\x07\x22\x00\x11\x08\xc0\ \xef\x0f\xc2\x1f\x08\x46\xcb\xb1\x05\x95\x7d\x62\xa9\x82\xb6\x88\ \x5c\x9f\x58\xca\xfe\xbd\x18\x6b\x67\xa4\xbd\x90\xd5\xf4\x89\xcd\ \x70\x46\x45\x21\xc5\x5b\x56\x52\x82\xfb\x1f\xbe\x0b\x00\x18\x78\ \xe6\x37\x61\xb1\xd9\x11\x5e\x78\xfd\x0d\x1a\xf6\xcc\x63\x53\x83\ \x54\xd5\x82\xb7\xac\x86\x2a\x7b\xd1\x3b\x39\xd6\xdf\x81\x63\xfd\ \x1d\xb8\xfe\x60\x02\x6f\x5d\xba\x8d\x25\xab\x1d\x52\xa6\x5d\xdc\ \xf1\x43\xec\xc3\x12\x19\xec\x8f\x6c\xb4\x62\xb5\xe3\xff\xfb\xe6\ \x4f\x70\xb0\xbb\x15\x9f\x7e\xe1\x1c\x4a\x8a\x72\xbf\xf3\xdc\x91\ \xfe\x1e\xd4\x57\x57\xe2\x4f\xbf\xf1\x3d\x2c\x59\xad\xd1\x3a\x38\ \x1a\xe3\x5b\xd1\x28\x38\x04\x23\x8f\x60\x30\x02\x14\xfe\x10\x02\ \xc1\x20\x04\x71\xe6\x82\x29\x16\x94\x69\xf7\x21\x33\x6a\x64\xea\ \xc7\x51\x68\xbe\x24\xb7\xbd\xd2\xfb\xa2\xe3\xb2\xd9\xed\x58\xb3\ \xdb\x51\x56\x5a\x8a\xe6\xc6\x1a\x58\x6c\x76\x10\x53\x79\x21\x0d\ \x7b\x92\xf6\x38\x74\xbf\xf7\x7b\xd2\xbe\x2a\xd9\xf6\x2c\xf6\x02\ \xa0\xd4\x57\x95\xe1\xcc\x91\x5e\xd4\x56\x94\x62\xd9\xea\x84\xdb\ \xeb\xcb\xb8\xef\xba\xb4\x6a\xc7\xa5\xeb\x0f\xc0\x0b\x02\x3a\x9a\ \xeb\x72\x3e\xfb\x52\x54\x90\x8f\x53\x47\x0f\x61\x62\x7a\x1e\x0f\ \x46\xa6\x60\x5d\x73\x61\xd9\x62\xc7\xdc\xa2\x15\x33\xf3\x16\x2c\ \xad\xd8\x60\x5d\x73\xc2\xee\x74\xc3\xed\xf1\xc3\x1f\x08\x46\x33\ \x33\x74\xcb\x08\xc4\x5c\x12\xef\x49\x06\xd0\xa8\x4a\x40\x7b\xf6\ \xa9\x27\xd0\x50\x57\x8b\x4b\xd7\xee\xe2\xe1\xd8\x0c\x10\x72\xae\ \xd1\xc0\xaa\x05\x49\xa6\x64\x33\x02\x1c\x7b\x21\xa3\x92\x3a\x49\ \x58\x86\x33\x87\x7b\x50\x5f\x5d\x8e\x15\xab\x23\x02\x20\xd1\xcc\ \x49\x7c\x86\x40\x24\x1e\x24\x3e\x61\x32\xe2\x30\xbc\xc0\x63\x6c\ \x7a\x1e\x1f\xdd\x1d\x43\x55\x79\x09\xaa\x2b\x4a\x73\xfa\x7c\xe8\ \xf5\x3a\x9c\x3a\x7a\x10\xfe\x40\x08\xbf\xb8\x7c\x03\x3e\x7f\x30\ \x3e\x6d\x9b\xc9\x52\xf3\xb4\x6f\xdc\x0c\x62\x04\x4d\x73\x9c\x0c\ \x9d\x97\xe3\x47\x06\xd1\xdf\xdb\x83\xbb\x0f\x27\x70\xe5\xe6\x30\ \x28\xef\x75\x51\xdf\xe2\xa2\x08\x38\x12\x1a\x07\xcd\xb6\xc4\x0e\ \xee\x6b\xc1\xff\xf2\x9b\x2f\xe1\x37\x7f\xe5\x3c\x1a\x6b\x2a\x55\ \x5c\x13\xc9\xb5\x19\x5c\xb5\xd9\xf1\xe7\xdf\xfe\x29\xfe\xfc\xdb\ \x3f\x85\xd5\xee\xcc\xf9\xf3\xf1\xe5\xcf\x7c\x0c\x7f\xf6\x87\xbf\ \x8f\xe2\xc2\x82\x94\x8e\x37\x63\xed\x16\xd5\xde\xcc\x99\x94\x4a\ \x4c\x77\x19\x4f\x1a\x9f\x1f\x9f\x9c\x06\x00\x34\x37\xd4\x44\xe6\ \x24\x5d\x5e\x3e\x52\x20\x47\x75\x47\x9f\xfa\xb5\xa1\x92\x02\x33\ \xf2\x4c\x86\x2d\xf1\x2c\xf6\x7a\x56\xa6\xba\xa2\x04\xa7\x06\x7b\ \xd0\x52\x57\x0d\x8b\xcd\x01\xa7\xc7\xcb\x96\xc2\x8b\x6b\x47\xb0\ \x49\x7d\x30\x25\xf8\x63\x96\xf6\x5b\x6c\x0e\x5c\xba\x7e\x1f\xc1\ \x60\x08\x9d\x2d\x0d\x39\xad\xbc\xde\x54\x5f\x83\x67\x1e\x3f\x8e\ \xab\xb7\x1e\xc0\x66\x77\x28\xbb\xe1\xe9\xf2\x10\x94\x26\x76\xe7\ \xd5\x86\x05\x39\x02\x68\x4a\xc3\xca\x7d\x5b\x79\x79\x19\x5e\x7a\ \xe1\x39\x38\x5d\x1e\x7c\xef\x67\x17\x00\x21\x1c\x16\xdc\x93\xd3\ \x88\x10\xa3\x41\xd5\xa1\x0a\xd7\xf8\xec\xd0\xe5\xbb\x33\x78\x30\ \x69\x81\xdb\x17\x44\x69\x51\x1e\xf2\xcd\x86\x8c\x84\x1e\x1a\x70\ \xc8\x5b\x55\x79\x31\x4e\x0e\xf6\xa0\xb5\xa1\x1a\x16\x9b\x93\xd1\ \x08\x49\xd9\x08\x80\x30\x2f\x20\x14\xe6\x11\x0c\x84\xe1\x0b\x86\ \xe0\xf5\x07\xe1\xf1\xfa\xe1\x70\x7a\x71\xe3\xfe\x18\x7e\xf1\xe1\ \x6d\xd4\x57\x57\xa0\xbe\x26\x77\xb5\x3f\x8a\x8b\x0a\xf0\xe2\x33\ \x67\x31\x3d\xbf\x84\xf1\xe9\x79\x75\x37\x60\x16\x4a\xb2\x53\x1a\ \x47\x01\xd0\x68\x12\x80\xa6\xec\x77\x66\xf6\xb8\x08\x21\xf8\xf2\ \xe7\x3f\x0b\x10\x82\xbf\xfd\xe7\x9f\x45\x96\xfc\xbb\x46\x27\x62\ \x80\x43\xd5\x42\x37\x72\xfa\xcb\xdf\xfb\x7a\x6c\x0a\x88\x10\xa0\ \xbb\xa9\x02\x27\x0f\x34\xe1\x64\x7f\x23\x2a\x4a\xf2\xb7\x84\xf7\ \xd8\xeb\x36\x32\x35\x8f\x9f\xbe\xf3\x11\xae\xdf\x1b\x47\x98\x17\ \x10\xe6\x79\xf0\xbc\x00\x3e\xcc\x23\x2c\x44\x5f\x87\x05\xf0\x7c\ \x18\x61\x5e\x00\xbf\x51\xfa\x2c\x9f\x8e\x8b\xbc\xa4\x78\xea\xd4\ \x00\x7e\xf7\xcb\x2f\xa1\xa6\x32\xb7\xf9\x8f\xbf\xf9\xe7\x57\xf0\ \xdf\xff\xf6\x5f\x22\x19\x14\xa5\xe3\xa2\xac\x76\x08\x29\xa6\x62\ \xa9\x72\x7b\x82\x94\x57\xae\x26\x6c\x0b\x99\xe0\xb8\x36\x3e\xc3\ \x68\x87\x20\x4a\x05\xb3\xe4\x15\xa5\x29\xde\xc8\x6b\x83\x41\x8f\ \xc9\x5b\xd7\x40\x41\xd1\x7e\xf2\xb3\xe0\xf9\xb0\x10\x9a\xfd\xd1\ \x4f\x01\xac\x00\x70\x62\xb3\xfc\x5c\x11\x3c\x74\xcd\x83\x9f\x1e\ \x12\xbf\x69\xb5\x7b\x71\x73\x64\x09\x3f\xbd\xf4\x08\xb7\x46\x96\ \xe0\x0b\x84\x50\x51\x92\x9f\x94\x27\xa2\x01\x47\x72\x56\x51\x1a\ \xf1\x40\xfa\xbb\x5b\x30\x35\x6f\xc1\x83\xb1\x39\x78\x3c\x7e\xf8\ \xfc\x41\x04\x02\x21\x04\x43\x61\x84\xc3\x3c\x78\x41\x50\x1d\xe3\ \xae\x6f\x37\x39\xbb\x84\x1f\xbd\x79\x09\x04\x04\x7d\xdd\xad\x39\ \xab\xbc\x7e\xf8\xc0\x3e\xf4\xf7\x74\xe0\xbd\x2b\x37\x11\x54\x58\ \x4c\x98\x29\x02\x91\xa6\xf9\x79\xc5\x8f\xe5\x68\x8a\x58\x10\x78\ \x7c\xf1\xb3\xbf\x8a\xe2\xa2\x42\x7c\xe3\x7b\xaf\xc1\xeb\x0f\x12\ \xc1\x3d\x39\x01\x1a\xf6\x20\x89\x76\x09\xba\xe6\xc1\x4f\x0f\x29\ \x1d\xa3\xd5\xee\xc5\xff\xdf\xde\x79\x87\xc7\x51\x5d\xfd\xff\xbb\ \xea\xbd\xaf\xba\xac\x2e\xb9\x77\x5c\xb0\x71\xc5\x06\x53\x82\xa9\ \x2f\x84\xde\x62\x6a\xa8\x01\x53\x12\x20\x81\x04\x78\x09\x90\xfc\ \xf2\x12\x12\x42\x68\x01\x13\xba\x71\x97\x5c\x25\xb9\xa8\xf7\xde\ \xbb\xb4\xbd\x68\xfb\xcc\xdc\xdf\x1f\xb3\x92\x56\xd2\xae\xb4\x55\ \x5a\xc9\x73\x9e\x47\xcf\xae\x46\xa3\xbb\x3b\x77\xee\xfd\xcc\x39\ \xe7\x9e\x7b\x4e\x45\x53\x3f\x0e\x9e\x6d\x44\x79\x63\x3f\xd4\xe3\ \x20\xc2\xad\xa8\x38\x57\xa2\xc2\x83\x71\xf9\xa5\x4b\xb1\xf9\x92\ \x85\x90\x2a\x54\xe8\xec\x13\x9a\xc9\x03\x61\xfb\x20\xa2\x0c\x34\ \x8a\xaa\x1a\x91\x53\x50\x86\xa4\x38\x3e\x92\xe2\xdc\x73\xeb\x7e\ \x72\x42\x2c\x76\x6e\x5a\x8b\xc2\xf2\x1a\x48\x1c\x70\xf2\x3a\x2b\ \xb2\xd3\x29\x9e\x09\x2b\x43\xcd\x5d\xbd\xa2\x32\xdc\xd6\xff\xdc\ \x70\x1d\xf8\x91\x91\xf8\xef\xcf\x27\x21\x91\x29\x40\x34\xfd\x3d\ \xa0\xd5\x0a\x13\x70\x4c\xb9\x4b\xc7\xac\xc6\x61\xe9\xbb\x8f\x40\ \xa4\xa0\x9e\x85\x88\xd6\x80\xa8\xb0\x40\xb3\x9a\x08\x07\x0e\xc7\ \x24\x22\x2c\x18\xdb\x2f\x5d\x8a\xad\xeb\x96\x40\x31\xa4\x46\x47\ \x8f\xc0\xac\xda\x3a\xd6\x82\x9d\x3a\x40\x48\xa1\x54\xe3\xe8\xe9\ \x62\x34\xb6\xf5\x60\x49\x76\x0a\x82\x83\x02\xdc\xee\xda\x43\x43\ \x82\xf0\x8b\x9d\x9b\xd0\xde\xdd\x87\xd6\xae\x5e\xc7\x9f\xba\x6e\ \x94\x8d\x6c\x26\x57\x54\x86\xe5\x17\x57\x5d\x81\xa4\x84\x04\xec\ \xcf\x39\x8b\xde\x01\x11\x88\x4e\xd0\x4f\x0c\x0a\x29\x6c\x88\xe5\ \x60\xc1\x61\xc7\x97\x61\xcd\x99\x3e\x1c\xc8\xaf\x47\x59\x43\x2f\ \xd4\x5a\x56\x13\x09\xf4\xf7\xb1\xd9\x7c\xe1\xc4\xb2\x84\x87\x06\ \x61\xdb\xba\x25\xd8\x7e\xe9\x52\x28\x87\x34\x68\xef\x11\x98\x29\ \x4b\x68\xbb\x74\xf6\x0a\xf0\xc3\xb1\x02\xd0\x34\x83\xc5\xd9\x29\ \x6e\x97\x79\xdd\xdb\xdb\x0b\x57\x6c\x59\x07\x4f\x2f\x4f\x94\x94\ \xd7\x4e\x0a\x46\x62\x05\x30\xc9\xa4\x8f\xfe\x19\x5a\x51\x71\x11\ \xd0\xa6\x6a\x75\xc7\xd6\xcd\xc8\xca\x48\x47\xce\x99\x62\xb4\x76\ \xf6\x82\xe8\x24\x42\xa2\x97\x08\x31\x76\x7b\xbd\xb5\x1a\x87\x6d\ \xfb\xff\x4d\xc3\x60\xc5\x32\x35\xca\x1b\xfb\xf1\x73\x7e\x1d\x4a\ \xeb\x7b\xa0\xd6\x51\x88\x32\x81\x08\x07\x0e\xc7\x25\x2c\x24\x10\ \x5b\xd7\x2d\xc1\x8e\x8d\xcb\xa0\x52\x6b\xd1\xda\x3d\x38\xb1\x10\ \x8f\x8d\xe3\x90\xa2\x69\x94\x56\x37\xe3\xe8\xe9\x62\xc4\x45\x47\ \x20\x25\x31\xd6\xad\xae\x99\xc7\xe3\x61\xf5\xd2\x05\x58\x94\x9d\ \x86\xbc\x0b\xe5\xd0\x1b\x0c\xce\xb3\x1d\xcc\x8c\x75\x9b\x43\xbb\ \xed\x4e\xde\x43\xac\xb2\x65\x5c\xb5\x52\x74\xd9\xba\xb5\x58\xb6\ \x78\x11\xf2\x0a\x2b\x51\xd3\xd8\x0e\x18\xe4\x62\xa2\x15\x08\x4c\ \xc0\x41\x5b\x01\x8e\x9b\xb7\xc0\x02\xc7\x6d\xa5\xf3\xb0\x39\x53\ \xde\xd8\x87\xfd\x67\x6a\x51\x5a\xdf\x0b\xb5\x56\x3f\xa2\x89\x70\ \xe0\x70\x82\x1a\x1f\x1c\x88\xcd\x6b\x17\xe3\xca\xcb\x56\x42\xad\ \xd1\xa1\xb5\x6b\xc0\x6c\x25\x2f\x5b\x1e\x66\x4a\x95\x1a\x39\xf9\ \xa5\xa8\x69\x6c\xc7\xc2\xcc\x14\x84\x85\xb8\xd7\xde\x97\x94\xc4\ \x38\x5c\xbe\x69\x2d\x2e\x94\x55\x43\x6a\x9a\xbe\xc0\x8d\x4c\x08\ \x87\x1d\xb3\x76\x3c\xbc\xad\x49\xde\x63\xae\x9d\x55\x2b\x96\x61\ \xdd\xea\x55\x28\xae\x6c\x40\x49\x65\x23\x88\x41\x21\x23\x9a\x81\ \x01\xb0\x4b\xb2\x56\x45\x8f\x9a\x05\x87\xb3\x3a\x56\x24\x53\xa3\ \xbc\xb1\x17\xfb\xcf\xd4\xa1\xa4\xae\x67\x82\x39\xc3\x89\xfd\x12\ \x12\x14\x80\x4d\x6b\x16\x63\xd7\xe6\x55\xd0\xea\x0d\x68\xe9\xec\ \x07\xc3\x30\x0e\xdd\xbb\xee\x3e\x21\x7e\x38\x5a\x00\x8d\x4e\x87\ \xa5\xf3\x53\xe1\xed\xe5\x3e\xe9\x5a\xc2\x42\x82\x71\xdd\xce\xcd\ \x68\xe9\xe8\x45\x7b\x77\xaf\x8b\x26\xae\xed\x6d\xb9\x7b\xf2\x1e\ \x73\xff\xbf\x70\x7e\x36\xb6\x5e\xb6\x01\xd5\x0d\x6d\xc8\x2f\xaa\ \x02\xa1\xd4\x43\x44\xdd\xdb\x0b\x1b\x4a\x25\x78\x26\x59\x0b\x0e\ \x6b\x34\xa5\x49\x7d\x22\x2a\x94\x37\xf4\xe2\xa7\xd3\x35\x28\xa9\ \xed\x81\x4a\xa3\x47\x64\x58\x00\x82\x66\x79\x55\xf7\x99\x96\xe0\ \x40\x7f\x5c\xb6\x7a\x11\xae\xde\xba\x1a\x7a\x3d\x85\x96\xce\x5e\ \x30\x0c\xb1\xac\x3e\x4f\xf1\x34\xa3\x19\x06\x15\x75\x2d\x38\x74\ \xf2\x02\xa2\x23\xc3\x91\x9e\x1c\xef\x36\xd7\xea\xe3\xed\x8d\x5d\ \xdb\x2e\x05\x8f\xc7\x43\x49\x65\x9d\xe5\xe0\x2b\x27\xd6\x89\x9d\ \xed\xc9\x7b\xcc\xdd\xea\xb4\x94\x64\xec\xda\xb1\x1d\x2d\x1d\xbd\ \xc8\xcd\x2b\x01\x68\xad\x9a\x51\x75\x75\x63\x34\x08\xcc\x39\xe0\ \x70\x36\x9d\xc5\x32\x35\xca\x1b\x7a\xb0\xff\x74\x2d\x8a\x6a\xbb\ \x58\x88\x84\x06\x20\x28\x80\x83\x88\xbd\x12\x14\xe0\x8f\x8d\xab\ \x17\xe2\x9a\x6d\x6b\x40\xd1\x0c\x9a\x3b\xfa\xd8\xcc\xdb\x36\x44\ \x60\x9a\xaa\xbd\x2a\xb5\x06\xc7\xcf\x96\xa1\xac\xa6\x09\x0b\x33\ \x92\xdd\x26\x75\x21\x8f\xc7\xc3\x9a\xe5\x8b\xb0\x30\x33\x05\x79\ \x17\xca\xc6\x16\xd0\xb2\xa0\xb6\x5f\xcc\xc9\x7b\xcc\x49\x5c\x6c\ \x0c\x6e\xb8\xf6\x6a\xf4\xf4\x0b\xf1\x73\xee\x59\x80\xd1\xe9\x98\ \xa1\x8e\x4e\xdb\xc0\xb1\xfc\xe6\x2d\xb6\x7a\x83\x89\x13\xbd\xc4\ \xa3\x9a\x48\x35\x8a\x6b\x58\x88\x44\x84\x06\x72\x10\xb1\x53\x02\ \x03\xfc\x70\xe9\xca\x05\xb8\x76\xfb\x5a\x30\x0c\x41\x73\x47\xaf\ \x49\x94\xa9\xed\x03\xb1\x77\x50\x84\x1f\x8e\xe6\x43\x39\xa4\xc6\ \xb2\x05\xe9\x6e\x93\x79\x3d\x75\x5e\x02\xb6\x5f\xb6\x16\xe7\x4a\ \x2b\x21\x93\x2b\xad\xb8\x20\x62\x41\x85\xb0\x7e\x65\xc6\x1a\x3f\ \x04\x71\xd0\xb1\x3a\x1d\x40\x0a\x0b\x0d\xc5\xed\x37\xdf\x08\xb1\ \x54\x81\x6f\x0e\x9c\x02\x18\xca\xc0\x0c\xb5\xb5\x1b\xc1\xa1\x83\ \x35\xab\x2a\x2c\x38\xa6\xa2\xb3\x1d\x35\x2c\x89\x2d\x9d\x44\x46\ \x34\x91\xb2\x86\x1e\xfc\x74\xaa\x1a\x45\x35\x9d\x18\xd2\xe8\x10\ \x19\xc6\x41\xc4\x2e\x80\xf8\xfb\x61\xfd\xca\x05\xd8\xbd\x63\x3d\ \x08\x21\x68\xea\xe8\x05\x45\xd3\x76\x69\x91\x84\x21\xa8\x6e\x68\ \xc3\xcf\xc7\xcf\x22\x32\x2c\x18\x99\x29\x89\x6e\x91\xfb\x23\x3c\ \x34\x04\xd7\x5d\xb1\x15\xcd\xed\x5d\xe8\xe8\xee\x73\x92\xfa\xe0\ \xfa\xe4\x3d\xc4\x0a\x9b\xc8\x59\xc9\x7b\xcc\xb5\x13\x12\x12\x8c\ \x7b\x7f\x79\x2b\x24\x32\x05\xbe\xfc\x31\x17\x20\x06\x03\xa3\x6c\ \x6d\x03\x5b\x5b\xc5\x16\x8d\xc3\xf1\xce\xb0\xcd\x19\x32\xf5\xf9\ \xac\x26\xd2\x83\x1f\x4f\x55\xa3\xa8\xba\x13\x43\x6a\x1d\x22\x39\ \x4d\xc4\x66\xf1\xf7\xf3\xc5\xba\x15\xf3\x71\xfd\x15\x97\x82\x07\ \x1e\x9a\xdb\x7b\x61\xb0\xb2\x6c\xc1\xf8\x5b\xa5\xd1\xea\x70\xf2\ \x5c\x39\x0a\x2b\xea\xb1\x20\x23\x19\x51\xe1\xa1\x33\xef\xf7\xf0\ \xf1\xc6\xd5\xdb\x37\x82\x21\x04\xa5\x55\xf5\x70\xae\x67\x72\x06\ \xcc\x11\x17\x24\xef\x19\x7f\x3c\x38\x38\x08\x0f\xdc\x79\x3b\xa4\ \x72\x25\x3e\xff\xee\x18\xbb\x43\x56\xd9\x32\x0c\x0e\x9d\x03\xe0\ \x70\x61\xc7\x8e\xe9\x23\xeb\x3a\x69\x18\x22\x3f\x9d\xaa\x44\x61\ \x55\x07\x94\x6a\x56\x13\x09\xe6\x20\x62\x3d\x40\x7c\x7d\xb0\x76\ \x79\x36\x6e\xb8\x72\x03\x3c\x3d\x3d\xd0\xd8\xde\x0b\x83\xc1\x60\ \x9b\x89\x6a\xbc\x5f\x03\x42\x09\x7e\x38\x9a\x07\xa9\x4c\x81\xa5\ \x0b\x32\xe0\xeb\xe3\x3d\xe3\x7e\x8f\xb5\x2b\x97\x20\x3b\x3d\x05\ \x67\xce\x97\xc2\x30\xe2\xf7\xb0\x63\x38\xcf\xc1\xe4\x3d\xe3\xdb\ \xf2\x0f\xf0\xc7\x9e\x7b\xee\x82\x5c\xa9\xc6\x27\xdf\x1c\x61\x0b\ \x50\xbb\x04\x1c\xd6\x28\x11\x4e\xb8\x30\x6b\xda\x91\xc8\xd5\x28\ \x6b\xe8\xc6\x4f\x27\x2b\x71\xa1\xaa\x9d\xd5\x44\xc2\x02\x11\x1c\ \xe0\xc7\xd1\xc1\x0a\xf1\xf3\xf5\xc1\x25\x4b\xb3\x71\xe3\x95\x1b\ \xe1\xed\xe5\x85\xa6\xf6\x5e\xe8\x0d\x06\x9b\x4d\x54\xc2\x10\xd4\ \x36\x75\xe0\xc7\x63\x79\x08\x09\x0e\xc4\xfc\xf4\x79\x33\x6e\xbe\ \xa4\x25\x27\x62\xfb\x65\x6b\x70\xb6\xb8\x02\x72\x85\xd2\x21\x6f\ \xe6\x5c\x4a\xde\x33\xfe\xfb\xf8\xfa\xf8\xe0\x91\x07\xee\x85\x4a\ \xad\xc1\xbf\xf6\x1d\x02\x8f\xd0\x34\xa3\x6c\x6e\x31\x31\x55\x28\ \x87\xc1\x31\x6d\x74\xb6\xf2\x64\xd3\x3f\x49\x64\x2a\x94\xd7\x77\ \xe3\xc7\x93\x15\xb8\x50\xd9\x0e\xa5\x5a\x8b\x88\xd0\x40\x04\x07\ \x72\x10\x99\x4a\x7c\x7d\xbc\xb1\x7a\x69\x16\x6e\xdc\x75\x19\xfc\ \x7c\x7d\xd0\xd4\xde\x03\x9d\x5e\x6f\xb3\x29\xaa\xd5\xe9\x71\xe6\ \x42\x05\x0a\x8a\xab\x31\x3f\x7d\x1e\xa2\x23\xc3\x67\xf4\xba\x22\ \xc2\x42\x71\xdd\x95\x5b\xd0\xd4\xd6\x89\xce\xee\x3e\xf7\x4c\xde\ \x33\x43\xa1\xe6\xc3\xe2\xe5\xe9\x89\xc7\xf7\x3c\x00\xad\x56\x87\ \x7f\x7c\x79\x00\x00\x4d\x33\x8a\xe6\x56\x00\xa6\x3b\x64\xa7\x02\ \xc7\x4d\x5b\x6c\x52\x57\x6d\xed\x8c\x69\xda\x60\x24\x91\xab\x50\ \x5e\xdf\x85\x9f\x4e\x56\xe0\x7c\x45\x1b\x86\xd4\x5a\x44\x84\x71\ \x10\xb1\x06\x20\xab\x16\x67\xe2\xe6\xab\x36\xc1\xdf\xdf\x97\x05\ \x88\x4e\x6f\x73\x3b\x42\xb1\x0c\x3f\x1e\xcd\xc3\xa0\x48\x82\xe5\ \x0b\x32\xe0\xe7\xe7\x3b\x83\xd7\xe4\x83\xab\xb7\x6f\x02\x45\xd3\ \x6c\xbc\xc7\x14\x2a\xc4\xb4\x27\xef\x99\x42\xcd\x76\x7d\x52\x22\ \xe0\xa9\x47\xf6\x40\x6f\x30\xe0\xef\x9f\xef\x07\x08\x61\x18\x45\ \x53\x8b\x89\xa9\x32\x35\x38\x1e\x7f\xe2\xb7\x5b\x18\x42\x20\x53\ \x6a\x47\x13\xa8\x98\xfd\xb2\x36\x84\xc1\x5a\x5a\xf6\x72\x81\xf7\ \xd9\x5c\x3b\x62\xb9\x0a\x65\xf5\xdd\xf8\xf1\x44\x39\xce\x55\xb4\ \x42\xa1\x62\x35\x91\x10\x0e\x22\x16\xc5\xc7\xdb\x8b\xad\x16\x77\ \xf5\x66\x04\x05\xf8\xa3\xb9\xbd\x17\x1a\x9d\xce\x46\xa6\x13\xd4\ \x37\x77\xe2\x87\x23\x67\x10\xe0\xef\x87\x85\x99\x29\x33\x66\xbe\ \xf0\x78\x3c\xac\x5f\xb5\x14\x59\x69\xc9\x38\x73\xbe\x64\xac\xdf\ \xc3\x9d\x56\x54\xec\xfc\x5c\x62\xd3\x43\x7a\xec\x71\x86\xa6\xf1\ \xec\xe3\x8f\x80\x66\x18\xfc\xed\x93\x1f\x00\x10\xc2\x28\x1a\x5b\ \x6c\xd1\x38\x78\xbd\xbd\xe4\x15\x00\xd0\x53\x34\x1a\x3b\x45\xa8\ \x69\x1b\x44\x5d\x9b\x10\xcd\xdd\x22\x50\x34\x63\x5f\x21\x18\x5b\ \x0b\xca\x18\xcf\xb3\x29\x43\x92\x1d\x99\x9f\x32\x92\xa2\xb1\xf9\ \x92\x2c\x6c\x5e\x9d\x8d\x84\xe8\x30\x8e\x16\x93\x88\x46\xab\xc3\ \xb7\x87\xcf\xe0\x8b\xef\x73\x21\x36\xe6\x03\x25\x53\xdc\x8b\xf1\ \x7d\x9f\x9d\x96\x84\x17\x1e\xbb\x0b\x2b\x16\x65\xce\xe8\xb5\x34\ \xb7\x75\xe2\x91\xbd\x6f\xa0\xab\xb7\x7f\x8a\xac\x5b\xd6\x8f\x69\ \x6b\xb2\x89\x59\x33\xa6\x2d\xce\x15\x47\x3f\x7f\x8a\xeb\xea\xae\ \x2d\x07\x21\x40\xea\xa5\xb7\x02\x84\xa6\x0d\xdd\xfb\x0f\x81\xcd\ \x02\x26\x07\x1b\x7a\x3e\xa9\x83\x74\x04\x1c\xe3\x1f\x0c\x7a\x03\ \x8d\xa6\x2e\x16\x24\xb5\x6d\x02\x34\x75\x89\x60\xa0\x68\x9b\x07\ \x8f\xcd\x95\xa8\xec\x01\xc7\xf8\x2a\x60\x56\x74\x72\x7a\x12\x1f\ \x9b\x57\x67\x63\xf3\x25\xd9\x48\x8c\x09\xe7\x48\x61\x41\x74\x7a\ \x03\xbe\x3f\x72\x06\x9f\x7c\x7b\x14\x22\x89\x7c\xe2\xbd\x98\xaa\ \x0a\x19\x8f\x87\x6b\xb6\xaf\xc7\x53\x0f\xdc\x8a\xa8\x88\x99\x5b\ \xbe\x55\x28\x87\xf0\xd4\x2b\xff\x8b\xfc\xc2\xb2\xe9\x49\x43\x68\ \x27\x90\x1c\x19\xd3\x56\xcd\x4d\xe3\xef\x2d\xe5\x85\x08\x0c\x08\ \x40\xe2\x25\x37\x01\x84\x61\x0c\xdd\x3f\x0d\x83\x43\x66\x8d\xd6\ \x61\x11\x1c\xa3\x2a\x1f\xfb\x6a\xa0\x18\x34\x75\x89\x50\xdb\x36\ \x88\x9a\xd6\x41\x34\x74\x0a\xa0\xd7\xd3\xce\xef\xe4\x49\x4a\xd8\ \x59\x03\x0e\x6b\xa8\x3f\xfe\xbc\xf4\xc4\x68\x6c\x59\x93\x8d\xcd\ \x97\xcc\xe7\x20\x62\x41\xf4\x7a\x03\x7e\x38\x9a\x8f\x4f\xbe\x3d\ \x02\x81\x48\x3a\xc9\x24\x18\xdf\xf7\xec\xfb\x20\x7f\x7f\x3c\x7c\ \xd7\xf5\xf8\xe5\xee\x1d\xf0\x9c\xa1\xdc\x1f\x0c\x43\xf0\xee\x3f\ \x3e\xc7\x3f\xbf\xf8\xd6\x25\x0f\x23\x7b\xc6\xb4\xb3\xb4\x73\x6b\ \x3e\xdf\xb4\xdd\xba\xc2\x7c\x44\x84\x87\x23\x79\xed\x2d\xa0\x68\ \x0a\x86\xae\x1f\x0f\x8c\xd3\x38\xec\x07\xc7\x64\x30\xa1\x68\x06\ \xcd\x46\x8d\xa4\xba\x65\x00\x0d\xed\x02\x68\xf5\x94\x73\x3b\x79\ \x8a\x9b\xe7\x0a\x4d\x26\x3d\x91\x8f\x2d\x6b\xe6\x63\xcb\x25\xf3\ \x91\x18\x1b\xc1\x11\x63\x3c\x40\x0c\x14\xf6\xe7\x14\xe0\xdf\xff\ \x3d\x84\x7e\xa1\xc4\x66\xb5\x3b\x3d\x25\x01\x2f\x3c\x7a\x17\xd6\ \x2c\x5f\x38\x63\xd7\x70\xf8\x44\x3e\x5e\xf8\xe3\xfb\xd0\x68\xb4\ \x66\xc6\x1e\x31\x19\x4e\xa6\x63\x6a\x7c\x12\xe1\xe1\xb1\x33\x3e\ \x89\xf0\xe8\x71\x32\xc1\xf7\xe0\xe4\x3a\xb1\x0e\x68\xe7\x4e\x01\ \x87\x33\xf2\x86\xd2\x0c\x41\x6b\x8f\x08\xd5\x2d\x03\xa8\x69\x19\ \x40\x6d\xdb\x20\x34\x5a\xfd\xb8\xc1\xe3\x00\x38\xc6\xd7\xc5\x70\ \x62\x31\x5e\x4b\x9d\xcc\x6a\x22\xf3\xb1\x65\xcd\x02\x24\x71\x10\ \x19\x23\x06\x8a\xc2\xcf\xb9\x67\xf1\xf1\xd7\x87\xd0\x37\x28\x82\ \xad\xd9\xbf\xaf\xd8\xbc\x16\xbf\x79\xe8\x76\xc4\xf0\x67\xa6\x5f\ \x1b\x5b\xda\xf1\xf0\xde\x3f\xa0\xbb\x77\xc0\x7e\x73\x62\x32\x2d\ \xc5\x66\x73\x06\xe3\xb2\x9a\x5b\x00\xd7\x84\xef\x38\xbe\x70\xb6\ \x19\x40\x8d\xf9\x8e\xec\xfb\xd6\x8a\x22\x04\xf8\xfb\x3b\x66\xaa\ \xb8\xa2\x5e\x0a\xc3\x10\xb4\xf6\x88\x51\xd3\xda\x8f\xaa\x96\x01\ \xd4\xb6\x0c\x40\xa5\xd1\x8d\xa3\xb3\xe5\x14\xef\x13\x8a\xf0\x58\ \x4a\x15\x0f\x62\x59\x5d\x9e\xb2\x3a\x38\x31\xb9\x87\x93\x0f\x84\ \xb4\x44\x3e\xb6\xac\x59\x80\x2d\x6b\x16\x60\x5e\x5c\x24\x47\x0e\ \xa3\x50\x14\x8d\x83\x27\xce\xe1\x5f\x5f\x1f\x40\x77\x9f\xd0\x26\ \xb0\xfb\xfb\xf9\xe2\x57\xb7\xef\xc6\xdd\x37\x5f\x35\x23\xb9\x3f\ \xe4\x0a\x25\x9e\xf8\xed\x9b\x38\x5b\x54\x8e\x19\x2f\x87\x30\xcd\ \x65\x1e\x7a\xea\x2b\xc1\xd0\x8c\x63\xce\xd1\xe9\x28\x30\x4d\x08\ \x0b\x92\xea\x96\x01\x54\x37\xf7\xa1\xba\x65\x00\x43\x6a\xad\xe3\ \x9d\xec\x4c\x5b\x74\x12\x70\x99\x82\x8e\x85\xc8\x42\x6c\x5d\xb3\ \x00\xf3\xe2\xa3\x38\x7a\x00\xa0\x69\x06\x87\x4e\x9e\xc7\x47\xfb\ \x7e\x46\x57\xef\xa0\x4d\x7d\x9f\x92\x18\x87\xbd\x8f\xdd\x85\x8d\ \x97\x2c\x9b\xfe\xef\xcd\x30\x78\xe7\x83\x4f\xf0\xaf\xff\x7c\x67\ \xb5\x1f\xc2\xe5\x2b\x2a\x4e\x1d\xd3\x13\x3f\xdf\xd3\xd3\x03\xbd\ \xf5\x55\x18\x52\x6b\x90\xbd\xe9\x0e\x80\x50\x94\xa1\xfb\xe7\xc3\ \x2e\x05\x87\xb3\xca\x21\x10\x02\xb4\xf7\x89\x51\xdd\xdc\x8f\xaa\ \xe6\x3e\x54\xb7\xf4\x43\x31\xa4\x71\x08\x1c\xce\x72\x22\xd9\x72\ \x93\xd3\x12\xa3\xb1\x75\xed\x42\x6c\x5d\xb3\x90\x83\x08\x00\x86\ \x61\x70\xe4\x74\x21\x3e\xfa\x72\x3f\xda\xba\xfb\x6d\xea\xfb\xed\ \x1b\x57\xe3\xb9\x47\xee\x42\x42\xec\xf4\x97\x6e\x38\x98\x73\x1a\ \x2f\xfe\xf1\x7d\xa8\xb5\x5a\x97\x4f\xdc\x19\x73\x8c\x1a\x7f\x0f\ \xf0\xf7\x47\x5b\x65\x31\x24\x32\x05\x96\x5c\x7e\x2f\xc0\x18\xf4\ \x86\x9e\x03\x47\x00\x08\xdd\x1e\x1c\xe6\x40\xd2\xd9\x2f\x41\x75\ \x73\x1f\xaa\x8c\x3f\x32\x85\x7a\x46\x9c\x48\xf6\x3a\x66\x53\x13\ \xf8\xd8\xba\x76\x11\xb6\xae\x5b\x84\xe4\x8b\x1c\x22\x0c\x21\xc8\ \x39\x53\x88\x7f\x7c\xb9\x1f\xad\x1d\x3d\x56\x9b\xa8\xbe\xbe\x3e\ \xb8\xff\xd6\x5f\xe0\xfe\xdb\xae\x9b\xf6\xcd\x73\xf5\x4d\x6d\x78\ \xf8\xf9\xd7\xd0\xd3\x37\x38\xa3\x0f\x23\x57\x3b\x46\xc3\xc3\xc2\ \x50\x5f\x54\x80\x41\xa1\x04\x2b\x77\x3d\x08\x30\x3a\x9d\xa1\xe7\ \xd0\x51\x8c\xad\xe6\x66\x1f\x38\xdc\xa1\x4e\x6c\xf7\x80\x14\x55\ \x4d\x7d\xa8\x6a\xee\x45\x65\x53\x2f\x24\x72\xd5\xb4\x38\x46\xad\ \x71\xcc\x4e\x35\x78\x58\x4d\x64\x11\xb6\xac\x5d\x84\x94\x04\xfe\ \x45\x0b\x10\x42\x08\x8e\xe7\x17\xe3\x1f\x5f\xfe\x84\xc6\xb6\x2e\ \xab\xfd\x00\x89\x71\xd1\xd8\xfb\xd8\xdd\xd8\x7a\xe9\xea\x69\xfd\ \xbe\x32\xb9\x02\x8f\xbf\xf8\x06\xce\x97\x54\x98\x05\x9d\xa9\x57\ \x63\xe2\x38\xb4\xcd\xb7\xe6\x10\x38\x1c\x08\x5b\x88\x8b\x89\x46\ \x79\xfe\x49\x74\xf7\x09\xb0\xee\x17\x0f\x03\xb4\x56\x6b\xe8\x3d\ \x7c\xd4\xa8\x71\x58\x07\x8e\xbe\x3e\x76\x39\xd6\x1d\xc1\x31\x5e\ \x7a\x05\x32\x54\x36\xf5\xa2\xca\xf8\x23\x94\x2a\x27\x5d\x0e\x9b\ \xd2\xdb\x6c\xad\xef\xc4\xd2\x00\xb7\xf2\xa9\x93\x9a\xc0\xc7\xb6\ \x75\x8b\xb1\x75\xdd\xe2\x8b\x16\x22\x84\x10\x9c\x3c\x57\x8a\x7f\ \x7c\xf1\x13\xea\x5b\xda\xad\x9e\x14\x97\xad\x59\x81\x17\x1e\xbf\ \x07\xc9\x89\x71\xd3\xea\xf7\x78\xf3\xaf\x1f\xe1\x93\x7d\xdf\xbb\ \x5d\x9d\xd8\xb1\x63\x7a\xf2\x3a\xb1\xa6\xe0\x32\x5d\x44\x48\x99\ \x97\x88\x0b\xc7\x8f\xa2\xb5\xb3\x0f\x9b\x6e\x7c\x1c\x84\xd6\xa8\ \xa9\xde\x23\x39\x26\xa6\x8a\x6e\x5a\xc0\x31\x53\x55\xdb\xfa\x45\ \x72\x54\x36\xf6\x18\x41\xd2\x83\x01\x91\xc2\x36\xea\x13\x98\xf1\ \x64\x4f\xb1\x8e\x6f\x61\x39\xcc\x1c\xb8\xcc\xad\xe3\xa7\x24\xf0\ \xb1\x6d\xdd\x12\x6c\x5b\xb7\x18\x29\x89\xd1\x17\x25\x44\x4e\x9f\ \x2f\xc3\x87\x5f\xfc\x88\x9a\xc6\x56\xab\xfc\x00\xde\xde\x9e\xb8\ \xf7\x96\x6b\xb1\xe7\xce\x1b\xe1\x3f\x8d\x9b\xe7\xf6\x1f\x39\x81\ \x17\xff\xf8\x3e\xb4\x3a\xad\xc3\x7e\x88\x69\x5b\x51\xb1\xc2\xbf\ \x92\x95\x91\x86\xbc\xc3\x3f\xa3\xa1\xa5\x13\xdb\x6f\x7d\x1a\x84\ \x52\xab\xa8\xbe\xa3\x39\x26\x1a\xc7\xdc\x06\xc7\x78\x19\x14\x2b\ \x50\xd5\xd4\x83\xca\xc6\x1e\x54\x36\x76\xa3\x4f\x28\x77\x82\x2d\ \x6a\x1f\xf5\xad\x01\x57\x4a\x42\x34\xb6\xff\x61\x32\x52\x00\x00\ \x20\x00\x49\x44\x41\x54\xad\x5f\x82\x6d\xeb\x96\x20\xf5\x22\x84\ \x48\x5e\x61\x05\x3e\xfc\xe2\x07\x54\xd5\x37\x5b\xe5\x40\x8c\xe5\ \x47\xe2\xf9\x47\xef\xc6\x15\x5b\xd6\x4f\xdb\x77\xac\x6d\x68\xc1\ \x43\xcf\xbd\x82\xbe\x01\x81\xd5\x13\xd7\x1a\x3f\xc4\x4c\x85\x9a\ \x03\xc0\x92\x45\x0b\x90\xfb\xe3\xb7\xa8\xaa\x6f\xc5\xae\x3b\x9f\ \x03\xa1\x86\x94\x54\x5f\x4e\xae\x11\x1c\x4a\xa7\x83\x63\xb6\x15\ \x98\x16\x4a\x95\xa8\x6a\xec\x41\x45\x63\x37\x2a\x1b\xbb\xd1\x3b\ \x28\x75\x5b\x27\x56\x6a\x02\x1f\xdb\xd6\xb3\xb5\x62\xd3\x92\x62\ \x2e\x2a\x80\x9c\x2b\xa9\xc2\x07\x9f\x7d\x87\x8a\xda\x26\xab\x02\ \x99\xd6\xae\x5c\x8c\x97\x9f\xb8\x1f\xe9\x29\x49\xd3\xf2\xfd\x24\ \x52\x39\x1e\x7b\xf1\x0f\x28\x2c\xa9\x98\xf5\xa1\xe6\x00\x70\xc9\ \xca\x65\x38\xf0\xf5\x97\xb8\x50\x56\x87\x1b\x7f\xf5\x5b\x10\x83\ \x52\x4e\xf5\xe7\x1e\x07\x20\x32\x6a\x1c\x53\xe6\x1d\xf5\x7c\xe6\ \x99\x57\xb7\xcc\x55\x70\x04\xfa\xfb\x22\x2d\x91\x8f\x4b\x97\xa7\ \xe3\xfa\xed\x2b\x71\xcd\x96\x65\xc8\x4e\x89\x45\x68\x70\x00\xb4\ \x3a\x03\xe4\x4a\x8d\x05\x83\x7c\x0a\x7b\xdd\x26\xe3\xde\xba\x3f\ \xc9\x14\x2a\x94\xd7\xb5\xe1\xfb\x9c\xf3\x38\x79\xae\x1a\x52\xc5\ \x10\xc2\x42\x82\x10\x1e\x1a\x34\xe7\xc1\x91\x14\x1f\x83\x1b\xae\ \xda\x8a\x95\x4b\xe6\xa3\xaf\x5f\x60\x8c\x44\xb5\xdc\x5b\x3d\xfd\ \x83\xf8\xef\xcf\x39\x50\xaa\xd4\x58\xb1\x38\x1b\x3e\xde\xae\x5d\ \x7d\xf1\xf7\xf7\xc3\xee\x5d\xdb\xa1\x18\x52\xa1\xa2\xa6\x61\x8a\ \x1b\xeb\x9e\xc9\x7b\x4c\x25\x2d\x39\x19\xb7\x5c\x7f\x1d\x9b\x80\ \x3a\xf7\x2c\x40\xab\x86\x98\xa1\x8e\x0e\xd8\x92\x01\xcc\x1c\x38\ \xdc\xd1\x31\xea\x0c\x09\xf0\xf3\x41\x6a\x62\x14\xd6\x2f\x4b\xc7\ \xee\xed\x2b\xf1\x8b\x6d\xcb\x31\x3f\x2d\x0e\xe1\x21\x81\x2c\x48\ \x86\xd4\x16\x72\x80\x38\xe9\x3e\x5b\xd9\x16\x0b\x91\x56\xfc\x70\ \xec\x3c\x8e\x9f\xab\x80\x54\xae\x42\x58\x48\x20\x22\xe6\x38\x44\ \x12\xe3\xa2\x71\xfd\xae\x2d\x58\xb3\x62\x11\xfa\x06\x85\xe8\xed\ \x17\x9a\xe9\x42\xe3\x53\x94\x61\x50\x51\xdb\x88\x1f\x8f\x9c\x44\ \x64\x44\x18\xb2\xd3\x53\x5c\xfa\xdd\x3c\x3c\x3c\xb0\xf9\xd2\x35\ \x48\x8c\x8f\x45\xde\xf9\x62\xd0\xc6\x8c\xf1\xb3\x27\x79\xcf\xe8\ \xf1\x85\xd9\x59\xd8\x7d\xcd\x55\x28\xae\x6c\x60\x0b\x32\x19\x94\ \x32\x46\xd5\xd5\x09\x5b\x72\x8e\x5e\x4c\xe0\x98\xf0\x24\xf1\xf5\ \x41\x4a\x42\x14\xd6\x2d\x65\x41\xb2\x7b\xfb\x2a\x2c\xcc\x88\x47\ \x44\x48\x20\xf4\x14\x05\x99\x42\x35\xb6\xfb\x66\x20\x1b\xf6\xb0\ \x26\xf2\xc3\xb1\x73\x38\x7e\xb6\x12\x52\x39\xab\x89\xcc\x65\x88\ \x24\xc4\xf2\xb1\xfb\x8a\x2d\x58\xbf\x6a\x09\x06\x84\x62\x74\xf7\ \x0d\x5a\xec\x2f\xb5\x46\x83\xdc\x33\x17\x70\xbe\xb4\x12\x8b\xb2\ \x33\x10\x15\xe1\xda\x3c\x2b\x0b\xb3\xd2\xb1\x79\xfd\x25\x38\x7d\ \xb6\x08\x43\x2a\xb5\x55\xa0\xb0\xaf\x4e\xac\x95\xed\xd8\x91\x94\ \x68\xfd\x9a\x4b\xb0\x73\xdb\x16\xe4\x15\x56\xb2\x25\x20\xf5\x32\ \x09\x51\xf7\xf6\xc0\x96\xf2\x08\x8e\x82\xc3\x5d\xcd\x14\x7b\xc4\ \xcf\xd7\x1b\xc9\xf1\x51\x58\xbb\x34\x1d\xd7\x6d\x5b\x89\x1b\x76\ \xac\xc6\xa2\xcc\x44\x44\x85\x05\xc1\x40\xd1\x90\xca\x55\x66\x37\ \x21\xd9\xf4\xb4\x71\x40\x8d\x1d\xd6\x44\xbe\x3f\x76\x0e\xc7\x0b\ \xca\x59\x88\x84\x06\x22\x22\x34\x78\x4e\x02\x24\x2e\x26\x0a\xbf\ \xd8\xb9\x19\x1b\x2e\x59\x8e\x41\xa1\x04\x5d\xc3\x1b\xd2\xcc\x74\ \x57\xff\xa0\x10\xdf\x1e\xc8\x81\x44\x26\xc7\x8a\x25\xf3\xe1\xeb\ \xe3\xba\xfa\xc4\x31\xfc\x28\xec\xde\xb5\x03\x15\x35\x75\xe8\xed\ \x1f\x74\xd1\x33\xc3\x75\xd9\xc8\x76\x6c\xdd\x8c\x0d\x6b\xd7\x20\ \x27\xaf\x98\x2d\x3a\xad\x13\x0b\x88\x66\xa0\xcf\x04\x1c\x0c\x07\ \x0e\x07\xc4\xd7\xc7\x1b\xf3\xe2\x22\xb1\x66\x49\x3a\x7e\xb1\x75\ \x25\x6e\xbe\x62\x2d\x16\x67\x25\x21\x2a\x3c\x08\x14\xcd\x40\x22\ \x1f\x02\x21\x66\x9c\x58\x13\x6e\x9a\x75\xc7\xc9\x14\xd5\xc6\x26\ \x42\xa4\x05\xdf\x1f\x3d\x8b\xdc\xfc\x72\x48\x86\x35\x91\xb0\xb9\ \x07\x91\xd8\xe8\x48\x5c\xbb\x73\x13\x36\xaf\x5f\x09\xa1\x44\x36\ \xa6\xf8\xd2\x58\xdf\x29\x41\x75\x5d\x13\xbe\x3b\x78\x1c\x61\x21\ \x41\x58\x90\x99\xe6\xb2\xd4\x85\x01\xfe\x7e\xb8\xfe\xaa\x1d\x90\ \x2b\x94\xa8\xac\x6d\x98\x7c\xee\x3a\x59\x0b\x75\xb4\xad\xdd\x57\ \xef\xc2\xf2\x25\x8b\xb1\xff\x58\x01\x6a\x1a\xdb\x41\xb4\xc2\x7e\ \xa2\x15\x98\x56\xab\x9f\x52\xe3\x30\xbb\xaa\x32\x17\x1c\xa3\xd3\ \x21\x6a\xad\x1e\x55\x8d\x5d\xa8\xa8\xef\x40\x45\x7d\x07\x1a\xda\ \x7b\x41\x53\x0c\x9c\x96\xcd\xcc\x8e\x88\xd5\xe4\xf8\x68\x6c\xdf\ \xb0\x1c\x97\x6f\x58\x81\x0c\x37\x2a\x18\xed\x4c\xa9\x6b\x6a\xc3\ \x07\x9f\x7e\x83\x93\x67\x8b\xc1\x30\x8c\x49\x9f\x9a\xaa\xf3\x04\ \x4b\x17\x64\xe1\x95\x67\xf6\x60\xf1\x7c\xd7\xa6\x2e\xfc\x66\xff\ \x11\xfc\xf6\xcd\x77\xa1\xd7\x19\xdc\x7e\x45\x05\x20\xf8\xe4\xff\ \xfe\x8a\x5d\x3b\xb6\xe3\xbe\x67\xde\xc2\xb1\x33\x45\xa0\xa5\xd5\ \x65\x8c\xb2\xb9\x16\x80\xd4\xa8\x75\x18\x8c\x5a\x87\xf5\xe0\x70\ \x16\x20\x2e\x06\x70\x8c\x17\xad\x4e\x8f\xaa\xc6\x6e\x54\xd4\xb7\ \xa3\xbc\xbe\x03\xf5\x2d\x3d\xc6\xb2\x8b\x76\xae\xe3\x3b\x18\xb1\ \x9a\x1c\xcf\xc7\xe5\x1b\x56\x60\xfb\x86\x15\xc8\x4c\x49\x98\x73\ \xfd\xdd\xd0\xd2\x81\x0f\x3e\xfd\x06\xb9\x79\xe7\xd9\x3e\x30\xd3\ \x5f\x1e\x1e\x3c\xdc\x78\xcd\x4e\x3c\xb3\xe7\x2e\x84\x87\x85\xb8\ \xec\xbb\x54\xd6\xd6\xe3\xa1\x67\x5e\x46\xbf\x40\x34\x11\x1c\x6e\ \x92\xbc\x67\xf8\xf8\xa1\x6f\xbf\xc2\xaa\xe5\xcb\x70\xfd\x03\x2f\ \xa3\xa8\xa2\x1e\xb4\xb8\xf8\x1c\xa3\xea\x6e\x31\x01\x07\x35\x23\ \xe0\xb8\x18\xa1\x61\x1e\x24\x06\xd4\x36\x77\xa3\xbc\xbe\x1d\x65\ \xb5\xed\xa8\x6b\xed\x36\x66\xdb\x26\x4e\xdb\xa7\x60\xed\x53\x67\ \x5e\x7c\x34\x76\x6c\x5c\x81\xcb\x37\xac\x9c\x73\x10\x69\x6e\xeb\ \xc2\x07\x9f\xfd\x17\xc7\x4e\x9d\x05\xcd\x10\xb3\x60\x0d\x0d\x0e\ \xc2\x93\x7b\xee\xc4\x6d\xbb\xaf\x82\x87\x87\x6b\x06\xa8\x50\x2c\ \xc1\xc3\xbf\xf9\x1d\x4a\x2a\xaa\xec\x4c\xde\x63\x29\xe8\x70\xfc\ \xbd\xb7\x2f\x79\xcf\xf0\xf1\xe2\xd3\x39\x48\x4a\x48\xc0\x96\x9b\ \x9f\x40\x73\x7b\x0f\xa8\xc1\xbc\x53\x44\x27\xea\x04\x9b\xc4\x47\ \xc3\x81\xc3\xcd\x44\x6f\xa0\x50\xdb\xdc\x8d\xb2\xda\x36\x94\xd7\ \xb5\xa3\xa6\xb9\x13\x7a\x03\xe5\xd8\x06\xa7\x71\x6a\xa8\x35\x4f\ \x9d\x79\xf1\x7c\x5c\xbe\x61\x25\x2e\xdf\xb8\x12\x59\xa9\x89\x73\ \xa6\x7f\x5b\x3b\x7a\xf0\xf7\xcf\xfe\x8b\x43\x27\xf2\xc0\xd0\xc4\ \x6c\x3f\x2e\xcc\x4c\xc7\xef\x9e\x7d\x18\x2b\x97\x2c\x70\xc9\x77\ \xa0\x28\x0a\xaf\xbc\xfd\x17\x7c\xf9\xed\x7e\xb8\x5b\xf2\x9e\xe1\ \x76\xbb\x6a\xca\xe0\xeb\xeb\x8b\x65\x3b\xef\x83\x48\x22\x87\xa1\ \xf7\xf0\x11\xd0\xda\x7e\xb0\xfb\x54\x86\xc1\x41\x5c\x06\x0e\xce\ \x4c\x71\x4c\x0c\x06\x0a\xb5\x2d\xdd\x28\xaf\x6b\x43\x59\x5d\x1b\ \x6a\x9a\x3a\xa1\xd5\x1a\x60\xdd\x1e\x99\x29\xd4\x5e\x2b\x4d\xa0\ \xe4\xf8\x18\x5c\xbe\x71\x05\x2e\xdf\xb8\x6a\xce\x40\xa4\xa3\xbb\ \x17\x1f\x7c\xfa\x0d\x0e\xe6\x9c\x06\xc5\x30\x13\x26\x2e\x78\xc0\ \xee\x2b\xb7\xe1\xb9\xc7\xee\x43\x54\x84\x6b\x92\x53\xef\xfb\xe1\ \x00\x7e\xf7\xe6\x7b\xd0\x1b\x0c\x6e\x91\xbc\x67\xf8\x78\x70\x50\ \x30\x9a\xcb\x2e\x80\xa2\x69\xa4\xad\xbf\x15\x34\x4d\x31\x86\xee\ \x9f\x0e\x62\xec\x96\x7a\xe7\x80\x83\xf3\x6f\x4c\x13\x48\x28\x1a\ \xf5\x46\x90\x94\xd7\xb5\xa1\xb2\xbe\x7d\xb4\x28\x92\x99\xdc\x15\ \x63\x07\x0f\xac\x4e\xaf\x38\xea\xfd\x1f\xbb\x35\x7c\x5e\x5c\x34\ \x76\x5c\xb6\x0a\x97\x6f\x5c\x85\xec\xb4\xa4\x59\xdf\x9f\x9d\x3d\ \xfd\xf8\xf0\xf3\x6f\xf0\xd3\x91\x93\xc6\x80\xad\xb1\x13\x2c\x28\ \xc0\x1f\x4f\x3c\x78\x27\xee\xbc\xf9\x5a\x97\x64\x5e\x2f\xab\xaa\ \xc1\x9e\x67\x5e\x86\x40\x28\x9a\x39\xc7\xe8\x38\x70\xa4\xa7\xa4\ \xe2\x6c\xce\x41\x74\xf5\x09\xb0\x9e\xdd\x52\xaf\x31\xf4\x1e\x3e\ \x06\x1b\xb6\xd4\x73\xe0\x70\x73\xa1\x69\x06\xf5\xad\x2c\x48\x4a\ \x6b\x5a\x50\xd9\xd0\x0e\xb5\x46\x3b\x2d\xd9\xe2\x93\xe2\xf8\xd8\ \x71\xd9\x6a\xec\xb8\x6c\xf5\xac\x87\x48\x4f\xdf\x20\xfe\xfe\xf9\ \x7f\xf1\xe3\xe1\x13\xa0\x0c\xd4\x84\x3e\xca\x48\x9b\x87\x57\x9f\ \x7d\x14\x6b\x57\x2e\x75\xfa\x67\x0b\x44\x62\xec\x79\xfa\x25\x94\ \x55\xd5\xcc\xbc\x63\x14\x04\xeb\x2f\xb9\x04\x3f\x7e\xf9\x29\xce\ \x16\x57\xe3\x96\x87\x5f\x05\xd1\xcb\xa5\xd4\xc0\x89\x93\xb0\x61\ \x9f\x0a\x30\x2e\x8e\x83\x5b\x51\x71\x2f\xf1\xf0\xe0\x21\x3a\x32\ \x0c\xcb\xe6\xa7\xe2\xca\x4d\xab\x70\xd7\xee\xad\xd8\xb8\x7a\x21\ \x92\xe3\xf9\xf0\xf2\xf2\x84\x54\xae\x64\x7d\x24\xb6\x88\x95\xb1\ \x02\x72\xa5\x0a\xe5\xb5\xcd\xf8\xee\xf0\x69\x1c\x3e\x79\x01\x22\ \xa9\x0c\x61\x21\x41\x88\x0a\x0f\x9d\x75\xfd\x18\x12\x1c\x84\xed\ \x1b\xd7\x62\xf7\xae\xed\xd0\xe9\xf5\x68\x6c\x6d\x1f\xb3\x8c\x2b\ \x96\xca\xf1\xc3\xc1\x1c\xb4\x76\x76\x63\xe5\x92\x05\x08\x0a\x0c\ \x70\xda\x67\x07\x06\x04\xe0\xc6\x6b\xae\x80\x50\x2c\x41\x4d\x7d\ \xa3\x99\xdb\xe1\xaa\xca\xed\xe6\xff\x7f\xe5\xf2\x65\xb8\xf6\xca\ \x9d\x38\x5b\x52\x83\x9c\xbc\x62\xc0\xa0\x90\xda\x1a\x6e\xee\x12\ \x70\x70\xd0\x70\x9d\xf0\x78\x3c\xf0\x23\x42\xb1\x74\x7e\x2a\xae\ \xd8\xb4\x0a\x77\x5e\xbf\x1d\x9b\xd6\x2c\x41\x72\x42\x34\x7c\x7c\ \xbc\x20\x91\x0f\x41\xa7\x37\x58\x3f\xd6\xac\x1c\x88\x0a\xa5\x0a\ \x65\xb5\xcd\xf8\xee\xf0\x19\x1c\x3a\x79\x1e\x62\x89\x1c\xa1\x21\ \x81\x2e\x0f\xef\x76\x3a\x40\x82\x02\xb1\x75\xc3\x1a\xdc\x78\xf5\ \x0e\x18\x28\x03\x1a\x9a\xdb\x41\x33\xf4\xc8\xdf\x9b\xdb\x3a\xb1\ \xef\xc7\x43\xf0\xf4\xf0\xc0\xb2\x85\xf3\xe1\xe9\xe9\xe1\x94\xcf\ \xf5\xf4\xf4\xc4\xe5\x9b\x37\x82\x1f\x19\x89\x33\xe7\x0a\x4d\xa0\ \x35\xd9\xcd\x98\x22\x78\x90\x10\x0b\x00\x9a\xbc\x9d\x6d\x9b\x2f\ \xc3\x96\x8d\x97\xe2\xf0\xc9\x0b\x28\x2c\xaf\x07\xd1\x89\x06\x89\ \xa6\xdf\x34\xdc\x9c\xb1\x66\x64\x8c\x31\x55\x38\xc7\xe8\xec\x16\ \x86\x10\xb4\x74\xf4\xa1\xac\xa6\x19\xa5\x35\x2d\x28\xaf\x6d\x81\ \x4c\x39\x64\x7b\x76\x2a\x2b\x4d\xa0\xa4\xb8\x68\x5c\x7e\xd9\x6a\ \x5c\xb1\x69\x0d\xe6\x67\x24\xcf\xba\xfe\x12\x88\xc4\xf8\xe7\x17\ \xdf\xe2\xeb\x9f\x0e\x43\xab\xd5\x8d\x31\xe5\x52\xe7\x25\xe0\x77\ \xcf\x3e\x8a\x4d\xeb\x9c\x9b\xba\xb0\xa4\xa2\x0a\x7b\x9e\x79\x09\ \x42\xa3\xdf\x63\xba\xcb\x4d\xbe\xfb\xc6\x6b\xb8\xfd\x96\x9b\xf0\ \xd8\xcb\xef\xe3\xc7\xa3\xf9\x60\xe4\xf5\x55\xb4\xbc\xbe\x1a\x80\ \x04\x6c\xd1\xe9\x29\x83\xbf\x38\x70\xcc\x71\x21\x84\xa0\xb5\xab\ \xdf\x08\x92\x66\x94\xd5\x34\x43\x2a\x53\x9a\x71\x8c\xc2\xba\xf4\ \x8a\x93\x04\x32\x25\xc5\xf1\xb1\x63\xd3\x1a\xec\xdc\x74\x09\x16\ \x64\xa4\xcc\xaa\x7e\x12\x8a\xa5\xf8\xe8\x3f\xdf\x62\xdf\x0f\x07\ \xa1\xd1\x6a\xc7\x5c\xd7\xce\xcd\x1b\xf0\xd2\xd3\x0f\x21\x31\x2e\ \xd6\x69\x9f\x37\x20\x10\x62\xcf\x53\x2f\xa0\xbc\xba\x76\xda\xcb\ \x4d\xfe\xbc\xef\x0b\xac\x5d\xbd\x12\xbf\xb8\xef\x45\x94\x56\x35\ \xda\x15\xfc\x65\x15\x38\x38\xff\xc6\xdc\x92\xb6\xee\x7e\x94\x55\ \x37\xa3\xa4\xba\x09\x65\x35\x4d\x10\x4b\x15\x13\x92\xed\x4e\x95\ \xb3\x72\xaa\x3a\xb1\x49\x71\xd1\xd8\xb9\x69\x0d\x76\x6e\x5a\x83\ \x05\x99\xb3\x07\x22\x62\xa9\x0c\x1f\x7f\xf9\x1d\xbe\xf8\xf6\x67\ \xa8\x35\x9a\x91\xeb\xf2\xf5\xf5\xc5\x43\xf7\xdc\x8a\x3d\x77\xfd\ \x8f\xd3\x36\xcf\xe9\xf5\x06\xbc\xf4\xc6\xdb\xf8\xfa\xc7\x03\xd3\ \x16\x6a\x4e\x08\x50\x57\x98\x8f\xc8\x88\x08\x2c\xdf\x79\x3f\x84\ \x12\x19\xa8\xbe\x63\x39\x84\x52\xf5\x62\x34\xf8\x8b\xe6\xc0\xc1\ \xc9\x94\xd2\xd9\x33\x88\xd2\x9a\x26\x94\x54\x35\xa2\xb4\xba\x09\ \x42\x89\xcc\xf6\xc0\x33\x8b\xcb\x7f\xec\x16\xf9\x9d\x9b\xd7\xe0\ \x8a\x4d\x6b\xb1\x30\x2b\x75\x56\xf4\x89\x54\x26\xc7\xc7\x5f\x7d\ \x8f\xcf\xbf\xd9\x0f\x95\x4a\x35\x32\x71\xe7\xc5\xc7\xe2\xb7\xcf\ \x3c\x86\xed\x9b\x9c\x97\xba\xf0\xb3\xaf\xbf\xc3\xab\x6f\xbd\x0f\ \x8a\x32\x98\x05\x82\x33\x43\xcd\x43\x43\x43\xd0\x58\x72\x1e\x5a\ \x9d\x1e\xe9\x1b\x6e\x33\xad\xe0\x66\x5a\x4f\x65\xca\x18\x8e\x31\ \xe0\xe0\x1c\xa3\x9c\x00\x40\x77\x9f\x00\x25\xd5\x2c\x44\x4a\xab\ \x1b\x31\x20\x90\xc0\x59\x81\x67\x89\xb1\x7c\xec\xdc\xbc\x16\x57\ \x6c\x5e\x37\x2b\x20\x22\x53\x28\xf1\xc9\xbe\xef\xf1\xe9\xd7\x3f\ \x42\x39\x34\x34\x72\x5d\x5b\x36\xac\xc1\x2b\xcf\x3e\x8e\xe4\x24\ \xe7\x84\xee\x17\x95\x55\x60\xcf\x53\x7b\x21\x92\x48\x5d\x1a\x6a\ \xbe\x6a\xc5\x72\x1c\xfa\xe6\x4b\x34\xb5\xf5\x60\xeb\x2d\x4f\xd8\ \x95\xa4\x98\x03\x07\x27\x56\x49\xcf\x80\x10\xa5\x55\x8d\x2c\x4c\ \xaa\x1a\xed\x2a\x30\x6d\x4e\xbd\x4e\x8c\x8d\x1e\x81\xc8\xa2\xec\ \x34\xb7\xee\x03\x85\x72\x08\x9f\xec\xfb\x01\x9f\xec\xfb\x0e\x0a\ \xe5\x10\x08\x08\x7c\xbc\xbd\xf1\xe0\x1d\xb7\xe0\xd1\xfb\xef\x80\ \xbf\x9f\x9f\xc3\x9f\xd1\x3f\x28\xc0\x03\x4f\xfc\x06\x95\x35\xf5\ \x98\xac\x60\xd5\xd8\x7e\xb4\xcd\xb4\xbc\xf5\x86\xdd\xf8\xcb\x5b\ \x6f\xe0\xd8\x99\x22\xdc\xf7\xcc\x5b\x20\x7a\xa9\x88\x1a\x38\x75\ \x1a\x6c\x0c\xc7\x70\x92\x62\xab\x56\x55\x46\x96\x63\x39\xc7\x28\ \x27\xe6\x24\x24\x28\x10\xf3\xd3\xe7\x61\xdb\xa5\x2b\x71\xfb\xf5\ \x3b\x70\xdd\xce\x8d\x98\x9f\x3e\x0f\x21\xc1\x81\x18\x52\xab\xa1\ \x18\x52\x9b\x5a\xe4\x63\x85\x4c\x36\x19\x55\x28\xaf\x69\xc4\xb7\ \x87\x4e\xe0\xe7\x63\x67\x20\x14\x49\x11\x12\x1c\x88\xe8\xa8\x08\ \xb7\xeb\x03\x5f\x5f\x1f\xac\x5b\xb5\x0c\x77\xdc\x7c\x1d\x02\x02\ \xfc\x50\xd7\xd0\x02\x95\x5a\x83\xe2\xf2\x2a\xfc\x70\x28\x07\xf1\ \x31\x7c\x64\xa6\x39\xe6\xcb\x09\x0e\x0a\xc4\x4d\xd7\x5e\x8d\xfe\ \xc1\x41\xd4\x35\x36\x59\xd9\x91\xc4\xa6\x8e\xdf\x7d\xcd\x2e\xac\ \x5d\xb5\x12\x07\x8f\x9f\xc3\xb9\x92\x1a\x10\x9d\x44\x40\xd4\xbd\ \x5d\x60\x57\x53\xac\x0a\xfc\x72\x48\xe3\xe0\xc0\xc1\xc9\xb0\x0c\ \x8a\x24\x28\xa9\x6a\x44\x71\x65\x3d\x4a\xaa\x1a\xd0\xd5\x33\x00\ \x47\x96\x0c\x13\x8c\x9a\xc8\x95\x5b\xd6\x63\xf1\xfc\x0c\xb7\xbc\ \x66\x95\x5a\x8d\xcf\xbf\xf9\x09\x1f\x7d\xf1\x5f\x48\xa5\x72\x10\ \x10\x6c\x58\xb3\x0a\xaf\x3d\xff\x04\x32\x52\x1d\x5f\x96\xfe\xf7\ \x97\x5f\xe3\xf7\x6f\xbf\x0f\x8a\xa2\x9c\xba\xa2\xf2\xe9\x07\x6c\ \x1e\x8e\x5f\x3d\xff\x0e\x0e\x9d\x38\x6f\xf7\x52\xec\x94\xe0\xe0\ \x1c\xa3\x9c\xd8\x2a\x42\x89\x0c\xa5\x95\x0d\x28\xae\xaa\x47\x71\ \x45\x3d\xda\xbb\x7b\x4d\xc6\xb8\x99\xc2\x57\x93\xd8\xeb\x09\x31\ \x7c\x5c\xb1\x75\x3d\xae\xd8\xb2\x1e\x4b\xdc\x10\x22\x6a\x8d\x16\ \x5f\x7e\xbb\x1f\x1f\x7e\xbe\x0f\x62\x89\x14\x5e\x9e\x9e\xb8\xf7\ \xb6\x1b\xf1\xe4\x9e\x7b\x11\xe8\x60\xf4\xe9\xf9\xe2\x52\x3c\xf4\ \x34\xeb\xf7\x70\xd6\x8a\x4a\xc1\xd1\x03\xc8\x4c\x4f\xc3\x65\x37\ \x3c\x8e\xb6\xae\x3e\x50\x82\xb3\x79\x44\x3b\xd8\x0e\x76\x45\xc5\ \xea\xa5\x58\x0e\x1c\x9c\xb8\x5c\xc4\x52\x39\x4a\xaa\xea\x51\x52\ \x59\x8f\xe2\xca\x7a\xb4\x76\xf6\x80\x30\x04\xb6\x06\x9e\x25\xc4\ \xf0\x71\xc5\x96\xf5\xb8\x72\xdb\x06\xb7\x83\x88\x46\xab\xc5\x57\ \xdf\xff\x8c\x0f\x3f\xf9\x0a\x42\xb1\x04\xd1\x51\x11\x78\xf1\xa9\ \x47\xb0\xfb\xaa\x9d\x0e\xb5\xdb\xdb\x3f\x80\xfb\x7f\xfd\x2c\xaa\ \xeb\xea\x1d\x5e\x51\xf1\xf4\xf4\x44\x47\x4d\x19\x28\x8a\x46\xd6\ \xa6\xdb\xc1\xd0\x34\x63\xe8\xf9\xf9\x30\x08\x23\x80\x0d\xdb\xe9\ \xc7\x80\x83\x73\x8c\x72\x32\x5d\x22\x95\x29\x50\x52\xd5\x80\x92\ \xca\x3a\x14\x55\xd6\xa1\xb9\xad\x6b\x74\x25\xc1\x8c\x39\x63\x4e\ \x0d\x8f\x8f\x89\xc6\x15\x5b\xd7\xe3\xca\xad\x1b\xb0\x74\x41\xa6\ \xdb\x5c\x9b\x4e\xaf\xc7\xbe\x1f\x0e\xe0\xc3\x4f\xbe\x44\xff\xa0\ \x00\x6b\x56\x2e\xc3\xef\xf7\x3e\x85\x05\x59\xf6\x83\x4e\xab\xd5\ \xe1\xb9\x57\x5e\xc7\xf7\x07\x0e\x8d\xe2\xd5\x8e\x15\x95\xd4\x94\ \x64\x9c\xcf\x3d\x8c\x8a\xba\x16\x5c\x7d\xd7\xf3\x20\x94\x6a\x88\ \xea\x3b\x96\x8b\xd1\xcd\x6d\x56\xed\x8a\xe5\xc0\xc1\x89\x5b\x88\ \x5c\x39\x84\x92\xca\x7a\x16\x24\xe5\xb5\x68\x6c\xeb\x00\xc3\x10\ \xab\x93\xdc\xc4\xc7\xf0\x71\xe5\xd6\x0d\xb8\x72\xeb\xa5\x58\xba\ \x30\xcb\x2d\xae\x49\xaf\x37\xe0\xeb\x9f\x0e\xe2\xef\xff\xfe\x02\ \x83\x02\x21\xee\xbc\xe5\x06\x3c\xf3\xe8\x83\x08\x09\xb6\xbf\xa4\ \xc5\x47\x9f\x7d\x89\x3f\xbc\xf3\x1e\x28\x8a\x9e\x54\x43\xb3\xe4\ \xdf\xf8\xc5\xae\x9d\xf8\xe8\xaf\xef\x61\xdf\xfe\x13\x78\xf6\x0f\ \x1f\x80\xe8\x44\x83\xd4\x60\x5e\x1e\x00\x31\x6c\x5c\x51\x01\x00\ \x5e\x6b\xbb\xfe\x95\x00\x3f\x6f\x87\x01\xc1\x81\x83\x13\x67\x88\ \x72\x48\x85\x92\xaa\x7a\x14\x97\xd7\xa2\xb8\xb2\x16\xf5\xcd\xed\ \xa0\x69\x06\xd6\x84\x64\xc7\xc7\x44\xe3\xca\xad\x97\xe2\xca\x6d\ \x1b\xb0\x6c\x61\xf6\x8c\x5f\x8b\xc1\x60\xc0\xb7\x3f\x1f\xc6\xff\ \xfb\xe8\x73\x68\xb5\x1a\xec\x7d\xf2\x11\xdc\x72\xdd\xd5\x76\x67\ \x5e\x3f\x5b\x58\x8c\x3d\x4f\x3d\x07\x89\x54\x06\x5b\xf7\xa8\xbc\ \xba\xf7\x59\x3c\x7c\xff\xbd\xf8\xdd\x3b\xff\xc6\xc7\x5f\x1f\x02\ \x33\xd4\xd1\x4c\x4b\xca\x4a\xc0\x3a\x46\x87\x30\xea\x18\xb5\x0e\ \x1c\xeb\xef\xfa\xea\x15\x3f\x1f\x2f\x44\x84\xfa\x23\x2a\xd4\x1f\ \x11\x21\x01\x88\x0c\xf5\x47\x64\x68\xc0\x98\x9f\xd0\x20\x3f\xf0\ \x78\x1c\x38\x38\x99\x5e\x19\x52\x69\x50\x56\x5d\x8f\xa2\xf2\x1a\ \x14\x57\xd4\xa2\xa6\xb1\x75\x34\x29\xcf\x38\x70\x98\x4e\x9c\xf8\ \xe8\x28\x5c\xb9\x6d\x23\x76\x6d\xdb\x88\xa5\x0b\xb3\x5c\x56\x26\ \xc1\x1a\xa1\x28\x0a\xdf\x1d\x38\x82\xbf\xfd\xeb\x33\x44\x86\x85\ \xe1\x0f\x2f\x3e\x83\xa5\x8b\xec\x4b\x5d\xd8\xdd\xdb\x87\xfb\x1e\ \x7b\x1a\xb5\x0d\x0d\x36\xa5\x21\x3c\xf0\xf5\x17\x58\xb3\x6a\x25\ \x6e\xda\xf3\x3b\x9c\x2f\xad\x05\x2d\xad\x2c\x61\x94\xad\xf5\xb0\ \x21\xb3\xf9\x98\xf9\xbe\xee\xae\xaf\x5e\xb1\xc6\xd9\xe2\xe9\xe9\ \x81\xc8\x60\x7f\x44\x86\x0d\x83\x25\x10\x51\x61\xa3\x60\x89\x0a\ \x0f\x44\x64\x68\x00\xbc\x9c\xb4\x15\x99\x13\x4e\xcc\x89\x5a\xa3\ \x45\x69\x55\x3d\x8a\x2b\x6a\x50\x54\x5e\x83\xea\x86\x66\x50\x14\ \x65\xa2\xbd\x4f\x8c\xb4\x8c\x8f\xe6\xe3\x8a\x6d\x1b\xb0\x6b\xdb\ \x65\x58\xb6\x28\x7b\xc6\x20\x42\xd1\x34\x7e\x3c\x78\x14\x1f\x7c\ \xfc\x39\xd6\xae\x5e\x81\xe7\x7f\xfd\x30\xc2\xc3\x6c\xcf\x6f\xa2\ \xd1\x6a\xf1\xcc\xcb\xaf\xe1\xa7\x83\x47\xac\x5a\x51\xf1\xf2\xf4\ \x42\x4b\x79\x21\xfc\xfc\xfc\xb0\x68\xdb\xdd\x90\x29\x86\x40\xf5\ \xe7\xe6\x12\x83\xb2\x07\x63\x1d\xa3\xf6\x83\xc3\x2a\x67\x8b\xa9\ \xba\x68\xb2\xc3\x92\xc7\x23\x08\x0d\xf4\x47\x64\xa8\x3f\xa2\xc2\ \x02\x4d\x80\x12\x88\xc8\xb0\x00\x44\x85\x05\x22\x2a\x2c\x10\x01\ \x7e\x3e\xdc\x0c\xe0\xc4\x29\xa2\xd1\x6a\x51\x56\xdd\x80\xe2\xf2\ \x1a\x14\x95\x57\xa3\xaa\xbe\xc9\x24\x01\xf4\xc4\x48\xcb\x61\x9f\ \xc8\xae\xed\x9b\x66\x0c\x22\x34\xc3\x60\xff\xe1\x1c\x7c\xf1\xdf\ \xef\x71\xc3\x35\x57\xe2\xf6\x9b\xaf\x87\x87\x87\xed\x0f\xdc\xbf\ \xff\xfb\x33\xbc\xf1\xe7\xf7\x59\x53\x6e\x92\x15\x95\xa5\x8b\x17\ \x21\xe7\xc7\x6f\xd0\xda\xd9\x87\x4d\x37\x3e\x0e\x30\x7a\x9d\xa1\ \xe7\xe0\x11\xb0\x8e\x51\xb9\xd1\xbf\x61\xf5\x8a\x8a\x11\x1c\x5f\ \xbe\xe2\xd0\xce\xc8\x09\x5f\x78\xbc\xe3\x86\x98\x34\xc7\xbe\xf7\ \xf7\xf5\x42\x54\x58\x00\xa2\xc2\x82\x8c\x9a\x4b\x20\x0b\x98\xb0\ \x40\xf0\xc3\x82\x10\x19\x16\x88\xb0\xe0\x00\xce\xfc\xe1\xc4\x66\ \xd1\xea\xf4\xa8\xa8\x61\x4d\x9b\xc2\xb2\x2a\x54\xd6\x36\x42\xa7\ \xd7\x9b\xf5\x03\xc4\x45\x47\xe1\xca\x6d\x97\xe1\xaa\xed\x97\x61\ \xf9\xe2\x05\xd3\x0e\x11\x86\x61\x70\xe0\xe8\x71\x9c\xcc\x3f\x87\ \xbb\x6e\xbd\x11\xab\x96\x2d\xb1\xb9\x8d\x33\xe7\xce\xe3\xa1\xa7\ \x9e\x83\x4c\x26\x37\x3b\x57\x41\x80\x7b\x6e\xbf\x0d\x6f\xbe\xfa\ \x32\xbe\xf8\xfe\x18\xf6\xfe\xe9\x9f\xe6\x1c\xa3\x36\x45\x8d\x8e\ \x03\x87\x9d\x29\xf9\x1d\x48\xb8\x3a\xb6\x5d\x8c\xd9\x9a\xed\xe5\ \xc1\x43\x64\x58\x20\x22\xc3\x82\x10\x15\x1e\x88\xa8\xd0\x40\x44\ \x85\x07\x21\x2a\x2c\x88\x7d\x0d\x0f\x42\x54\x68\x20\xbc\xbc\x3c\ \xb9\xd9\xc2\x89\x45\xd1\xe9\xf5\xa8\xac\x6d\x44\x51\x79\x35\x0a\ \xcb\xaa\x50\x51\x5d\x0f\xad\x4e\x37\x61\x4c\xc7\x46\xf3\xb1\x6b\ \xfb\x65\xb8\x6a\xfb\xa6\x69\x87\x08\x21\x04\x87\x73\x4f\xa2\xb7\ \x7f\x00\xd7\x5f\xb3\x0b\xfc\x48\xdb\xc2\xee\xbb\x7a\x7a\x71\xef\ \x23\x4f\xa0\xae\xb1\xd1\xec\x5c\xfd\xdb\xff\xfe\x09\x37\xef\xfe\ \x05\xf6\xec\xfd\x33\x0e\x1e\x3f\x07\x46\xd1\x5c\x4b\xcb\xaa\x2b\ \x31\x31\x62\xd4\x06\x70\xdc\xf9\xe5\x2b\x13\xb5\x04\x27\x83\xc3\ \xc9\x09\x57\x87\x3f\x9f\xc7\x03\x6b\x1a\x85\x07\x81\x6f\x02\x95\ \x91\xf7\x11\xc1\xe0\x87\x05\x23\xc0\x9f\x33\x8d\x38\x61\xc5\x60\ \xa0\x50\x59\xd7\x88\xc2\xb2\x2a\x14\x95\x55\xa2\xac\xaa\x6e\x42\ \xf2\x9e\x58\x7e\x14\x76\x6d\xdf\x84\xab\x76\x6c\xc6\x8a\x69\x84\ \x08\x21\x04\xe7\x8a\x4a\xe0\xe9\xe1\x89\xd5\x2b\x97\xc1\xcb\x86\ \xcc\xeb\x1a\x8d\x16\x4f\xbe\xf0\x32\xf6\x1f\x39\x36\x61\xae\x9e\ \xcb\x39\x84\xb4\x94\x64\x2c\xdd\x71\x1f\x24\x32\x05\xa8\xc1\xd3\ \xa7\x88\x4e\xd2\x05\x3b\x22\x46\xcd\x83\xc3\xca\x00\x1c\x7b\xc0\ \x61\x4d\x3c\xbd\x35\xe0\xb0\x27\xd1\x89\xbf\x8f\x0f\xa2\x22\x86\ \xa1\x12\x6c\xf2\x1a\x0c\xbe\xf1\x27\x2c\x24\x90\x33\x8d\x2e\x42\ \xa1\x28\x0a\x55\x75\x4d\x23\x20\x29\xa9\xaa\x85\x5a\xa5\x1e\x19\ \x53\xb1\x7c\x3e\xae\xba\xfc\x32\x5c\x75\xf9\x16\xac\x58\xb2\x70\ \xda\x20\xd2\xd5\xd3\x87\xc8\x88\x30\x04\x06\xd8\x16\xba\xfe\xb7\ \x7f\xfe\x1b\x7f\x7c\xf7\x7d\x63\x5e\x53\x82\xd0\x90\x50\x34\x96\ \x9c\x43\x7d\x73\x27\x2e\xbf\xed\x69\x80\xd6\x69\x0d\xbd\x87\xc6\ \x97\x43\xb0\xc9\xbf\x31\x39\x38\x9c\x59\x65\xca\x86\x8d\x38\xd3\ \xa5\xc9\x8c\xff\x3c\x2f\x0f\x1e\x22\xc2\x83\xc1\x0f\x0f\x02\x3f\ \x22\x04\xfc\xb0\x20\x44\x85\x87\x80\x1f\xc1\x02\x26\x3a\x22\x04\ \x91\xe1\xc1\xf0\xe6\x4c\xa3\x39\x2d\x34\x4d\xa3\xba\x9e\x05\x49\ \x61\x59\x25\x4a\xca\xab\x30\xa4\x62\x77\x00\xc7\x44\x47\x61\xd7\ \xb6\x4d\xb8\x7a\xc7\x16\xac\x5c\xba\x68\x46\x97\x78\x27\x93\x53\ \xf9\x67\xf1\xd0\xd3\xbf\x81\x5c\x26\xc7\xd6\x4d\x1b\xb1\xef\xe3\ \x7f\xe0\xa3\xaf\x0e\xe2\xd5\x77\x3f\x01\xd1\x0a\xfa\x29\x41\x41\ \x81\x23\xfe\x0d\x00\xf0\x1a\xa3\x2a\x59\xfa\x5f\x62\xe3\x71\xab\ \x75\x33\x67\xea\x79\x8e\x9d\x4e\xd1\x0c\x06\x45\x72\x0c\x8a\x64\ \x16\x81\xc4\xe3\x01\xa1\x41\x01\x88\x8a\x08\x41\x74\x44\x30\xf8\ \xe1\x21\xac\x39\x14\x11\x82\xe8\xf0\x10\xe3\xf1\x10\x04\xf8\xfb\ \x72\x33\x70\x96\x8a\xa7\xa7\x27\x96\x2f\x5e\x80\xe5\x8b\x17\x60\ \xcf\x5d\xff\x03\x9a\x61\x50\xd7\xd0\x8c\x0b\x65\x95\xb8\x50\x52\ \x81\xef\x0f\x1e\xc3\x27\xfb\xbe\x43\x2c\x3f\x12\xbb\x2e\xdf\x82\ \xab\x2e\xdf\x82\x55\xcb\x16\xbb\x15\x44\xb6\x5e\xb6\x01\xc7\xbe\ \xff\x2f\xee\x79\xf8\x71\xac\x5a\xbe\x0c\x00\x70\xae\xa4\x86\x1d\ \xcd\x7a\x89\xc8\xe8\xd3\xa0\x6c\xf5\x6b\x98\xd1\x38\x9c\xeb\xdf\ \x18\x6d\xcb\x72\x42\x92\xd1\xd3\x27\xe6\xac\x9c\xd8\xf6\xf8\x76\ \x87\xbf\xe3\xd4\x3b\x2c\xed\x32\x81\xec\xa8\x0c\x6f\xfa\xf9\xfe\ \x7e\xbe\x2c\x58\x22\x42\x8c\x3f\xa1\x23\xef\xa3\x23\x42\x11\x1d\ \x19\x8a\xd0\xe0\x00\xb7\x7d\x62\x71\x62\x59\x18\x86\x41\x7d\x73\ \x2b\x0a\x4b\x2b\x70\xbe\xa4\x02\xc5\xe5\x95\xf0\xf3\xf1\xc5\x55\ \x97\x6f\xc6\x55\x3b\xb6\xba\x15\x44\x54\x6a\x35\x44\x62\x09\x12\ \x13\xe2\xb1\x68\xdb\xdd\x50\x0e\xa9\x41\xf5\x1f\x3f\x4e\x0c\x8a\ \x1e\xd8\x50\x60\x7a\xda\xc0\x61\xfb\x8a\xca\x34\x99\x49\x13\xc0\ \x65\x19\x74\xa3\x5c\x23\x66\x80\x68\x03\xb8\xc6\x7c\xc7\xd1\xe3\ \x5e\x5e\x1e\xe0\x87\x87\x82\x1f\x11\x8c\xe8\xc8\x30\xa3\xb6\x12\ \x0a\x7e\x64\x08\xa2\x23\xc2\xc0\x8f\x0c\x01\x3f\x3c\xd4\x69\xb5\ \x3d\x38\x71\x9d\x43\xb3\xb1\xa5\x0d\xe7\x4b\xca\x71\xa1\xb4\x02\ \x9d\x5d\x3d\x58\xb7\x7a\x05\xae\xde\xb1\x15\xab\x97\x2f\x71\x0b\ \x88\x8c\x6c\x6c\xa3\x35\x6a\xaa\xf7\x48\x0e\x1c\x88\xdf\x30\x6b\ \xaa\xb8\xc4\x92\x20\x0e\xb6\xe3\x54\x73\x86\xd8\xf8\x21\x64\xc2\ \x20\x31\x7f\xbe\x6d\xc7\x09\x08\x0c\x06\x1a\x7d\x02\x31\xfa\x04\ \x62\x8b\xe0\xe2\xf1\x78\x08\x0f\x09\x44\x74\x64\x28\xf8\x91\xa1\ \x46\xb0\x84\x21\xda\xf8\x3e\x3a\x2a\x0c\xfc\x88\x30\xf8\x73\x01\ \x75\x33\x26\x3c\x1e\x0f\xf3\x33\xd3\x31\x3f\x33\x1d\xf7\xde\x76\ \x13\x08\x21\x68\x6a\x6d\x47\x61\x69\x39\x0e\x1f\x3f\x8d\x88\xb0\ \x10\xac\x5b\xbd\x02\xab\x97\x2f\x9d\x31\x88\x9c\x2d\xae\x66\xdf\ \xe8\xe5\x52\xa3\x4f\xc3\xe6\xe5\x57\xcb\xe0\x20\xd3\x30\xaf\x89\ \x8b\xe6\xfd\x4c\x00\x89\x38\xb1\x59\x33\x17\x46\x00\x10\xc2\x40\ \x2c\x53\x42\x2c\x53\xa0\xbe\xb5\xdb\xa2\x26\x15\x1c\xe0\x07\x7e\ \x64\x18\x62\x22\x43\x11\x15\x19\x86\x98\xc8\x30\xf0\x23\x43\x8d\ \xaf\x61\x88\x89\x0a\x47\x68\x70\x20\x37\xcb\xa7\x09\x24\xd9\x19\ \x69\xc8\xce\x18\xcd\xa3\xda\xd2\xd6\x81\xe3\x67\x0a\x10\x11\x16\ \x86\xa8\xc8\x08\x24\x25\xc4\xd9\x15\x29\x6a\xaf\x0c\xfb\x37\x18\ \x9d\x44\x68\x84\x06\xed\x3c\x70\xb8\xea\x29\x6f\xe5\xc4\x23\x33\ \x3a\x71\x5d\x07\x44\x67\x5d\xd7\x64\xa2\x54\x69\xa0\x54\x69\xd0\ \xd6\xd5\x67\xb1\xc0\xb4\x8f\x8f\x37\xa2\x23\x42\x11\x13\x19\x0e\ \x7e\x54\x28\xa2\x23\xc3\x11\x1d\x19\x86\x98\xa8\x30\xf0\x23\xc3\ \x11\x13\x15\x8e\xa8\xf0\x90\x69\x1d\xd0\x17\x8b\x64\xa4\xa5\x20\ \xc3\x24\x27\xa9\x4a\xad\x41\x60\x80\xff\xb4\x7c\x36\x45\xd1\x28\ \xaa\x60\x13\x20\x13\x75\xb7\x00\x13\x1d\xa3\xc4\x21\x70\x58\xac\ \x3d\x49\x6c\x3c\x6e\xa3\xfa\xef\xca\xa7\xbf\x5d\xa7\x3b\x5a\x03\ \x98\x38\xf1\xeb\x3b\x7a\x5d\x26\x07\xf4\x7a\x03\x7a\xfa\x85\xe8\ \xe9\x17\x5a\xf4\x49\x79\x78\xf0\x10\x15\x16\x0a\x7e\x54\x28\x62\ \xa2\xc2\x11\x6d\x04\x4a\x74\x64\x18\xa2\xa3\x22\x10\x1d\x15\x86\ \x98\xc8\x70\xf8\xfa\x72\xa6\x91\x23\x32\x5d\xd0\x00\x80\xb2\x9a\ \x26\xa8\x35\x3a\x10\x4a\x3d\x44\x28\x95\xda\x44\xe3\x20\x70\x4c\ \xe3\xb0\x7e\x82\x13\x32\xd9\xc4\xb7\xa1\x9d\xc9\xfc\x01\xc4\x7a\ \xff\x01\x71\x12\xd0\x88\x9b\x00\xcd\xa5\x66\x1a\x99\xfa\x2b\x31\ \x0c\x03\x81\x58\x8a\x41\xb1\x04\x35\x8d\xed\x16\x9d\xd2\xa1\x41\ \x01\x88\xe6\x47\x18\x35\x96\x08\x44\x47\x85\x8f\xbc\xc6\xf2\x23\ \x10\x1d\x19\x8e\x10\xce\x34\x72\x0b\x39\x5b\x6c\x5c\x86\x35\x28\ \x86\xfd\x1b\xc3\xda\x06\xe3\x48\xbb\x5e\x4e\xb7\x40\x88\x13\x34\ \x10\x8c\xdf\x34\x67\xbf\x26\x43\x1c\xd6\x88\x88\x85\xeb\xb2\xd1\ \x51\x3a\x7e\xa5\x68\x16\x69\x68\xe3\x45\xae\x54\x41\xa6\x54\xa1\ \xa9\xad\xcb\xe2\x6a\x96\x9f\x8f\x0f\x0b\x14\xbe\x11\x28\x51\x91\ \x88\xe6\xb3\x80\x89\xe5\x47\x22\x3a\x2a\x1c\x91\x11\x61\xf0\xe0\ \x96\xa4\x5d\x0c\x0e\xd6\x31\x4a\xb4\x22\xe1\x38\x70\x38\x34\x0a\ \xbc\x5e\xbc\x67\x0b\x0c\x14\x3d\xfa\x43\xd3\xa0\x28\x06\x7a\x03\ \x05\x03\xc5\x8c\xf9\x9b\xde\x60\x72\x9e\x81\x82\x81\x36\x9e\x67\ \xa0\x61\xa0\xd8\xf3\xf5\x06\x0a\xfa\xe1\xbf\x1b\x68\xe8\x28\xca\ \x98\x9c\x76\xa6\x9f\xb8\xce\x01\xda\x64\xb5\x2c\x88\x4d\x13\xdf\ \x72\xfb\xd6\xb4\x43\xec\xd0\xd0\xcc\xb6\xe3\x22\x53\x54\xab\xd3\ \xa3\xb3\x77\x00\x9d\xbd\x03\x16\xa3\x85\x3d\x3d\x3d\x10\x15\x11\ \xc6\x6a\x29\x46\xa0\xc4\x44\x45\x20\x86\x1f\x81\x18\x7e\xa4\x11\ \x3a\x11\xf0\xf1\xf6\xe6\x08\x60\x87\x68\x75\x7a\x94\xd6\x34\x01\ \x20\x84\x51\x77\x09\x30\xd6\x31\xea\xd0\x23\xc4\xeb\x92\x85\xa3\ \x65\xec\x5c\x95\xd5\x9c\x61\x88\x79\xf8\x50\xb4\x11\x50\xa3\xc7\ \x47\xff\x4e\xb1\xef\x4d\xfe\xae\xa7\x8c\x90\x32\x1e\xd3\x19\x28\ \x16\x58\x06\x7a\x1c\xb0\x28\xf6\xf7\x91\xff\xa1\x8c\x80\xa3\x40\ \xd1\xf4\x94\xdd\x35\x9d\x2b\x45\xae\x04\x1a\xb1\x4b\x93\xb1\xc1\ \x44\xb5\x51\x73\x1b\x1f\x3b\x43\xd3\x34\x06\x04\x22\x0c\x08\x44\ \xb0\x94\xc6\x81\xc7\x03\xc2\x42\x82\x47\x40\x12\x13\x15\x81\x98\ \xe8\x28\x56\x73\x89\x8e\x42\x0c\x3f\x12\xb1\xfc\x48\x04\x39\x58\ \x8e\x60\x2e\x4a\x49\x65\x23\xf4\x7a\x03\x08\xa5\x52\x82\xd6\x69\ \xe0\xa4\x15\x15\x97\x98\x2a\xe6\xc4\xc3\x83\x07\x5f\x1f\x2f\xf8\ \xfa\x78\xcd\x78\x67\x12\x02\x23\xac\x8c\xc0\x19\x86\xd7\x08\xa0\ \xa8\x91\xbf\xeb\x0d\xa3\x7f\xd3\x8d\x9c\x43\x41\xaf\xa7\x46\x40\ \xa5\xd7\x1b\x4c\x40\x45\x99\xfc\xbf\x01\x3a\x3d\x05\xbd\xc1\x60\ \x04\x9b\x81\xfd\x3f\xca\x00\xbd\x8e\x7d\x65\x73\x69\xba\xc6\x27\ \xe2\xb2\x95\x31\x42\x6c\xd2\x93\x6c\xd5\xdc\x88\x19\x8d\x48\x22\ \x53\x40\x22\x93\xa3\xbe\xb9\xcd\x62\xd0\x9f\xbf\xbf\x1f\xab\xb1\ \xf0\x23\x11\x1b\x1d\x89\x98\xa8\xc8\x51\xb0\x18\x5f\x23\xc3\xc3\ \x2e\xaa\x68\xdd\xb3\x25\x46\x33\x45\x2f\x97\x98\x98\x29\xb4\x33\ \x46\x87\xdd\x33\x79\xb6\xf6\x3f\x8f\x07\xb7\x81\x18\x43\x08\xf4\ \xfa\x61\x48\x51\xd0\xeb\x0d\xd0\x9b\x80\x89\x05\x92\x61\x1c\x94\ \x58\x50\xe9\xf4\x86\x91\xff\x19\x06\x9b\x5e\x6f\x60\xff\x4e\x51\ \xd0\xe9\x86\xff\x4f\x6f\x6c\xcf\x60\x6c\x9f\x05\x98\x4e\xaf\x1f\ \x6d\x47\x6f\x00\x43\x88\x53\xb5\x2d\x32\xcd\xa0\x53\xab\x35\x68\ \xeb\xec\x41\x5b\x67\xf7\x44\x13\xcc\x08\x18\x2f\x6f\x2f\xc4\x44\ \xb2\x1a\x0b\x0b\x97\x28\x16\x2a\xd1\x51\x88\x8b\x8e\x42\x0c\x9f\ \x05\x8c\x97\x97\xd7\x9c\x00\x47\xc1\x88\x7f\x43\x28\x30\xe3\xdf\ \x70\x7f\x8d\x83\x13\x0b\x9a\x18\x8f\x07\x3f\x5f\x6f\xf8\xf9\xce\ \xbc\x0d\x4f\xd3\x0c\x74\x7a\x03\x0c\x46\x50\xe9\x46\x34\x29\x83\ \x11\x52\x46\xf0\x98\x1c\x1b\x3d\xd7\x14\x4e\x7a\xf6\x98\x4e\x6f\ \x84\x9e\x01\x3a\x1d\x7b\xae\xce\x60\x18\x3d\xae\xd7\x1b\x35\x32\ \x3d\xdb\x96\xf1\xb8\xce\x60\xb0\xd9\x27\x46\xac\x84\x90\xc1\x40\ \xa1\xa7\x7f\x10\x3d\xfd\x83\xb0\xb4\x7d\x02\x3c\x20\x32\x2c\x0c\ \xb1\x31\x51\x88\xe5\x0f\x83\x85\xcf\x82\xc5\xe4\x75\x3a\x97\x54\ \xed\x91\x7e\x81\x18\x15\xb5\xcd\x00\xa1\x69\x86\x8d\xdf\xd0\x8f\ \xf3\x6f\xb8\x56\xe3\xe0\x9c\xde\x17\x87\x78\x7a\x7a\xb0\xbb\x7a\ \xdd\x60\x67\xef\x04\x60\x8d\x83\xd0\xe8\x7b\x23\x6c\xf4\x7a\x16\ \x6a\xfa\xd1\xf7\xba\x61\x88\x19\xcf\xd1\x0e\x1f\xd7\xe9\x46\xc0\ \xa5\xd5\x19\x8c\x1a\x19\x7b\x5c\xa7\x37\x40\xa7\xd7\x41\xa3\xd5\ \xa1\xb1\xa5\x0d\x35\xf5\x4d\x16\xf7\x6f\x05\x07\x05\x20\x96\xcf\ \x47\x6c\x0c\x1f\xb1\xd1\x51\x88\x8d\xe6\x23\x36\x9a\x8f\xb8\x18\ \x3e\x0b\x98\x18\x3e\x22\xc2\xc2\x66\xac\x0f\xbf\x3f\x9c\x07\x86\ \x21\x20\x7a\xa9\x10\x8c\xc1\xd4\xbf\xe1\xb0\xb6\xc1\x69\x1c\x9c\ \xb8\xa5\x78\x7b\x7b\xc1\xdb\xdb\x6b\xc6\x9f\xea\x84\x90\x11\x4d\ \x8b\x05\x92\xde\x08\x17\xe3\x7b\x53\xed\x49\xc7\xfe\x4d\x2c\x95\ \xa1\x6f\x40\x80\x42\x63\x9e\xd3\xf0\xb0\x50\x44\x84\x87\x21\x22\ \x2c\x14\xe1\x61\x61\x88\x08\x0f\x45\x80\xbf\xff\x34\x80\xe3\x34\ \x6b\x0e\xab\x7a\xba\xc1\x6e\x66\x33\x38\xcb\xbf\x31\x06\x1c\x9c\ \x66\xc1\x09\x27\xe3\xb5\x6d\x1e\x7c\x7d\x7c\xe0\xeb\xe3\x83\x60\ \xcc\x9e\x80\xb6\xaa\xfa\x56\x34\xb5\xf5\x00\x8c\x5e\xc7\x0c\xb5\ \xf7\x63\x74\x17\xac\x53\xfc\x1b\x00\xc0\x6d\x4c\xe0\x84\x93\x39\ \x26\xdf\x1d\x3a\xc3\x6a\x1b\x5a\xd1\x00\x40\xb4\x70\x62\xe0\x97\ \x43\xe0\xe0\xb4\x13\x4e\x38\x71\x4f\xa1\x68\x1a\x3f\x1d\xcb\x37\ \x9a\x29\x1d\x5d\xe3\xcc\x14\xc6\x59\x9f\xc3\x69\x1c\x9c\x70\x32\ \x87\xe4\xf4\xb9\x72\x88\xa5\x0a\x10\x4a\x35\x44\x34\x03\xe2\x71\ \x66\x0a\xa6\x45\xe3\xe0\x34\x0b\x4e\x38\x99\x5d\xf2\xad\xd1\x4c\ \x21\x5a\x41\x1f\xd8\x0c\xe6\xa6\xcb\xb0\x4e\x0b\x0b\xe4\x34\x0e\ \x4e\x38\x99\x23\xa2\x50\xaa\x90\x9b\x57\x0c\x80\x10\x46\xd9\x32\ \xde\x4c\x71\x8a\x53\x74\x0c\x38\x38\xcd\x82\x13\x4e\x66\xbf\x1c\ \x38\x7e\x0e\x3a\xbd\x01\x44\x2f\x97\x12\x83\x52\x81\x89\xab\x29\ \x4e\x13\x4e\xe3\xe0\x84\x93\x39\x22\xc3\xab\x29\x44\xd3\xdf\x63\ \x34\x53\x9c\xee\x14\xb5\x1b\x1c\x9c\x76\xc2\x09\x27\xce\x15\xe5\ \x90\x0a\x5a\xad\xce\xa1\x36\x3a\x7b\x07\x51\x5c\xd9\x00\x10\x9a\ \xa6\x95\x2d\x3d\xae\x34\x53\x00\x2e\x72\x94\x13\x4e\x5c\x26\x0c\ \xc3\x40\x24\x96\xa0\x7f\x50\x80\x01\x81\x10\x03\x83\x42\x48\xe5\ \x32\x84\x06\x87\x20\x3c\x7c\x38\xa2\x34\x0c\xc9\x49\x89\xf0\xf3\ \x73\x2c\xd4\xff\x87\xc3\x79\x20\x84\x80\xe8\xc4\x02\x30\x06\x35\ \x5c\x10\xbb\x61\x15\x38\x38\xcd\x82\x13\x4e\x2c\x8b\x56\xa7\xc3\ \xa0\x50\x84\xfe\x41\x21\x06\x05\x42\x0c\x08\x84\xe8\x1b\x10\x60\ \x50\xc0\x42\xa2\x7f\x40\x00\x00\xc8\xca\x48\xc5\xc2\xac\x4c\x2c\ \xcc\xce\xc4\x86\xb5\xab\x91\x9a\x32\x0f\x9e\x2e\x48\x08\xfd\xdd\ \x70\x88\xb9\xba\xa7\x1b\x63\x57\x53\x5c\x92\x60\x81\xd3\x38\x38\ \xe1\x64\x9c\xc8\x14\x4a\x0c\x0a\x84\x2c\x14\x84\x22\x0c\x0c\x0a\ \xd1\x6f\x84\xc3\xc0\x20\xfb\x2a\x93\xcb\x47\x12\x13\x79\x79\x7a\ \x22\x2d\x25\x09\x0b\xb3\x33\xb1\x7c\xc9\x22\x2c\xcc\xce\xc4\xa2\ \xec\x4c\x44\x46\x84\x4f\xcb\xf7\x2d\xa9\x6a\x44\x47\xf7\x00\x40\ \xeb\xb4\xcc\x50\x87\x69\x88\xb9\x4b\xcc\x14\x00\xf0\xe2\x34\x0b\ \x4e\x2e\x16\xa1\x69\x1a\x42\xb1\xd4\x98\x75\x4c\x88\x41\x81\x08\ \x03\x42\x11\xfa\x87\xdf\x1b\x5f\x35\x3a\xad\xc9\x54\x23\x63\x92\ \x07\x85\x04\x05\x61\x41\x56\x06\x16\x66\xa5\xb3\xaf\xd9\x99\xc8\ \x4a\x4f\x85\x8f\xcf\xcc\xa5\x46\x18\x09\x31\xd7\x09\x07\x4c\xb4\ \x0d\xca\x55\xd0\xe0\x34\x0e\x4e\xe6\x8c\x68\x34\x5a\x0c\x08\xc5\ \x18\x14\x8a\x59\x00\x08\xc5\xac\x29\x21\x10\x19\x4d\x09\x31\x44\ \x12\x31\x68\xda\x5c\xa9\xcf\x89\xb5\x8f\x79\x3c\x1e\x92\xe2\x63\ \xb1\x30\x3b\x03\x0b\x32\xd3\xb1\x20\x2b\x1d\x0b\xb3\x33\x90\x10\ \x17\x3b\xe3\xd7\xda\xde\xd9\x85\xbc\x73\x17\x70\xf7\x6d\xb7\x40\ \xaf\x37\xe0\xe7\xdc\xb3\x2c\x38\x86\xda\x3b\xe1\xa2\x10\x73\x87\ \xc0\xc1\x69\x27\x9c\x4c\xb7\x10\x42\x20\x95\x2b\x30\x28\x94\x18\ \xa1\x20\xc2\xa0\xc8\x08\x88\xc1\x51\x40\x28\x94\xaa\xb1\xb5\x81\ \x2c\xd5\x28\x36\x23\x7e\xbe\xbe\xc8\x4a\x4b\xc1\xc2\xec\x74\x16\ \x12\xd9\x19\x58\x90\x99\x86\xc0\x00\xf7\xc9\x63\xda\xd6\xd1\x89\ \x03\xc7\x72\x71\xe0\x48\x0e\x6a\xeb\xeb\xf1\xe8\x83\xf7\x01\x00\ \x72\x0b\x4a\x21\x57\x0c\x81\x50\x43\x0a\xa2\x15\x4a\xe0\x82\x9d\ \xb0\x9c\xc6\xc1\x89\x5b\x09\x45\xd1\x10\x88\x25\x23\x50\x30\xfd\ \x19\xd6\x1e\x04\x22\x09\xf4\x7a\xfd\xd4\x45\xcb\xc7\xd0\xc6\x32\ \x26\xa2\xa3\x22\xb0\x20\x2b\x1d\x0b\x32\xd3\xd8\x9f\xac\x0c\xa4\ \xcc\x4b\x70\x89\xc3\xd2\x51\x69\x69\x6b\xc7\x81\xa3\xb9\x38\x78\ \x2c\x17\x75\x8d\x4d\x23\xd7\xeb\xed\xed\x8d\x07\xef\xbe\x03\x00\ \xf0\xe9\x37\x47\xd8\x6b\xd5\x08\x7a\xc1\x56\x9f\x37\x5d\x4d\x71\ \x99\x78\x71\x9a\x05\x27\xae\x10\x95\x5a\xc3\x02\x41\x24\x81\x40\ \x24\xc1\x80\x11\x02\x2c\x10\x58\x50\x48\xa4\x72\x76\x09\xd1\x24\ \xab\xf9\xb0\x96\x61\xea\x5f\xb0\x47\x3c\x3d\x3d\x91\x96\x92\x38\ \x02\x88\xf9\x99\x69\x58\x98\x99\x8e\x88\xf0\x50\xb7\xee\xb7\xc6\ \x96\x56\x1c\x3c\x76\x1c\x07\x8f\xe6\xa2\xb1\xa5\xc5\x6c\x6d\xa0\ \x9b\xae\xbb\x16\x31\x7c\x3e\x4a\xab\x1a\xd9\xba\xb0\x0c\x45\xd1\ \x8a\xfa\x36\xb8\x38\x76\x83\xd3\x38\x38\x71\xc8\x74\x90\xc8\x14\ \x18\x14\x49\x30\x28\x94\x8e\x68\x0c\x02\x23\x24\x06\x44\x62\x08\ \x84\x52\xa8\xd4\xea\x09\xe5\x10\xd8\x3c\x9f\xe3\xcd\x89\x09\x9f\ \x60\xe1\x88\xe5\xf3\x43\x83\x83\x30\x3f\x23\x15\xd9\x99\xa9\x58\ \x90\x91\x86\x05\x59\x69\xc8\x48\x9d\x37\x6b\xea\xb1\x34\x34\xb5\ \xe0\xc0\xb1\x5c\x1c\x3a\x76\x1c\x4d\x6d\xed\x93\xc2\x92\xc7\xe3\ \xe1\x91\xfb\xef\x01\x00\xfc\xe5\xdf\xdf\xb3\xbe\x0d\x4d\x7f\x17\ \x68\xdd\x10\x46\xa3\x45\x19\xb8\xb8\x02\x34\x07\x0e\x4e\x46\x44\ \x6f\xa0\x20\x14\x4b\x31\x28\x92\x42\x20\x92\xb2\xe5\x20\x85\x12\ \x08\x44\x52\x23\x28\x24\x10\x4a\xa4\xa0\x28\x7a\xa2\x43\x71\x42\ \xd9\x02\x33\xd3\xdf\x8a\x72\x08\x93\x01\x84\x75\x58\xc6\x60\x41\ \x66\x2a\xb2\x33\x52\x31\x3f\x23\x15\x0b\xb2\xd2\x10\x1f\xc3\x9f\ \x75\x7d\x5d\xdb\xd0\x84\x43\x39\xc7\x71\xe0\xd8\x71\xb4\xb5\x77\ \x62\xd2\x8a\x86\x26\xb2\x73\xeb\x66\x64\xa4\xa5\xa2\xb6\xa9\x1d\ \x27\x0a\x4a\xd9\x64\xc4\xb2\xda\x66\x13\x33\xc5\xa5\x4e\x51\x0e\ \x1c\x17\x99\x28\x55\x6a\x23\x10\x64\x10\x88\x8d\x60\x10\x49\x31\ \x28\x66\x8f\x0d\x0a\xc5\x90\x29\x86\x60\x29\xfb\xf7\x44\x50\x4c\ \x35\xcd\xa7\x52\x5d\x26\xff\xb3\x9f\x9f\x2f\xb2\x52\xe7\x61\x7e\ \x46\x2a\xe6\x67\xa6\x60\x41\x46\x1a\xb2\xd2\x93\xdd\x3e\xbb\xf8\ \x64\x52\x5d\xd7\x80\x83\x39\x27\x70\x28\xe7\x04\x3a\x3a\xbb\x6c\ \xac\x7d\xcc\xfe\xfe\xc8\x03\xf7\xb2\xda\xc6\xc7\xc3\xda\xc6\x40\ \x0f\xa1\xd5\x0a\x8c\xdd\x9b\xe2\x52\x33\xc5\x26\x70\x70\x7e\x0f\ \xf7\x14\x86\x61\x20\x96\x29\x8d\x1a\x82\x8c\xfd\x31\x79\x3f\x28\ \x94\x40\x20\x96\x41\xab\xd3\x99\xf1\x1f\x4c\x56\x4a\xd2\x06\x28\ \x10\xc7\x58\x11\x1d\x19\x81\xf9\x19\xc9\x2c\x24\x8c\xaf\xc9\x89\ \xf1\xf0\xf0\x98\xfd\x83\xae\xb2\xa6\x0e\x87\x72\x4f\xe2\x50\xce\ \x09\x74\x76\xf7\xda\x36\x9f\xc7\x9d\xba\x7a\xc5\x32\xac\x59\xb5\ \x02\x2d\x1d\xbd\x38\x72\xea\x02\x40\x18\x86\x91\xd7\x35\x01\x30\ \x0d\x31\x27\xd3\x71\x5d\x5e\x1c\x20\xdc\x57\x74\x7a\x03\x04\x62\ \x39\x04\x62\x29\x84\x62\xf9\x28\x18\x4c\x00\x21\x92\x2a\xc0\x30\ \xcc\x38\x53\xc1\xe4\x59\x66\xd6\xe9\x08\x0b\x4f\x39\x67\x38\x41\ \x26\x19\x6c\x5e\x9e\x48\x9b\x17\x8f\xf9\x19\x29\xc8\x4e\x4f\xc6\ \xfc\x8c\x14\xcc\xcf\x48\x41\x78\x68\xc8\x9c\xf2\x01\x55\xd4\xd4\ \xe1\x60\xce\x09\x1c\xce\x39\x89\x9e\xbe\xfe\xc9\xfb\xde\x86\x7e\ \x7d\xd4\xa8\x6d\xfc\xbf\x7f\x7f\x0f\x86\x21\x60\xb4\x83\xbd\xc4\ \xa0\x94\x8d\xf3\x6d\x30\xd3\x01\x0f\xce\x54\x99\x21\x91\x2b\xd5\ \x10\x4a\x86\x61\x20\x1f\x68\x2c\x61\x11\x00\x00\x19\xb0\x49\x44\ \x41\x54\x79\x2f\x1c\xd6\x14\xc4\x72\x28\x87\x54\x16\xb4\x82\x71\ \xe6\x04\x88\x85\x3a\xb1\x93\xa8\xbd\xc4\xfc\x71\x42\x6c\x6c\xc7\ \xc2\xf1\x90\xe0\x20\x64\xa5\x25\x61\x81\x09\x24\xd2\x93\x13\xe1\ \xed\x3d\xf7\x86\x1c\x21\x04\x65\x95\x35\x38\x74\xfc\x14\x0e\xe7\ \x9c\x44\xdf\xc0\xa0\x89\x69\x67\x3d\x5c\x27\x9b\xed\x69\x29\xc9\ \xd8\xb9\x6d\x0b\xba\xfa\x04\xf8\xe9\x58\x81\x51\xdb\xa8\x6f\x32\ \xfa\x36\xc6\xa7\x07\x04\x07\x8e\x59\x26\x34\xcd\x40\x24\x53\x42\ \x24\x91\x63\xd0\x08\x04\xa1\x58\x0e\xc1\x98\x57\x19\xf4\x7a\x6a\ \xec\x84\x37\x99\xb0\x84\x10\x77\x99\x11\x16\x06\xf8\xf8\x08\xcb\ \x68\x64\xa7\xa7\x20\x3b\x7d\x1e\x0b\x89\xf4\x64\xc4\x46\x47\xce\ \x79\x13\xb1\xb4\xb2\x06\x87\x72\x4f\xe2\x70\xee\x69\x0c\x08\x04\ \xf6\x69\x6f\x56\x9e\xfe\xc8\xfd\xf7\xc0\xc3\xc3\x03\xff\xf7\xe9\ \x0f\xa0\x68\x1a\x44\x27\x1a\x20\x7a\x99\x74\xba\x7d\x1b\x1c\x38\ \xec\x10\x8d\x56\x0f\xa1\x44\x01\xa1\x54\x01\x81\x58\x0e\x91\x44\ \x01\xa1\x44\x01\x81\x44\xce\x6a\x0d\x52\x39\xa4\xb2\x21\xd6\x74\ \xc0\x44\x87\x22\x99\x22\x60\xc9\xee\xb1\x66\xe7\x50\xb1\xb5\x4e\ \xac\x9f\xaf\x0f\x32\x53\x93\x90\x9d\x31\x0f\xd9\x69\xf3\x30\x3f\ \x3d\x19\x99\xa9\x49\x08\xf0\xf7\xbb\x68\xfc\x49\xc5\xe5\x55\x38\ \x94\x7b\x0a\x47\x8e\x9f\x86\x40\x24\x32\x1b\x67\x41\xec\xd0\xd0\ \xcc\x41\x67\xb8\x1d\x7e\x64\x24\x6e\xde\x7d\x2d\x06\x04\x12\xfc\ \xf7\xc0\x29\x00\x84\xd0\xe6\xb5\x8d\x69\x7b\xe2\x58\x05\x8e\xb9\ \xee\xf7\x20\x04\x90\x29\x55\x10\x49\x94\x2c\x14\x24\x0a\x16\x0a\ \x52\x85\x51\x4b\x50\x40\x24\x55\x62\x48\xa5\x31\xaf\xd2\x13\x4b\ \xa6\x82\xd3\x1e\xf2\x36\xd3\xc0\xd1\x66\xa2\xa3\xc2\x91\x9d\x96\ \x84\xac\xb4\x79\xc8\x4e\x4b\xc2\xfc\xf4\x64\x24\x25\xc4\xc0\xe3\ \x22\x73\x82\xd1\x0c\x83\xa2\xd2\x4a\x1c\xca\x3d\x85\xa3\x27\xcf\ \x40\x28\x96\x58\xbe\x49\xc4\x7a\xdb\x64\xf2\xf1\x32\xd6\xcc\xb9\ \xff\xae\x5f\xc2\xc7\xc7\x07\x1f\xfe\x67\x3f\x0c\x06\x0a\x44\x27\ \x16\x10\x9d\x58\x8c\xb1\x4b\xb0\xc4\xed\xc0\x31\x9b\xc5\x40\xd1\ \x10\xcb\x86\x20\x92\x2a\x21\x34\x82\x41\x68\x04\x01\xab\x2d\x28\ \x21\x96\x2a\x60\xa0\x28\x33\x66\x02\x99\x04\x0a\x96\xb4\x07\x32\ \x41\x9d\xb7\xee\x39\x4f\x2c\x8c\x1f\x5b\xdb\xb1\xed\x14\x2f\x2f\ \x4f\xa4\x25\xc6\x21\x3b\x3d\x09\x59\x69\x49\xc8\x4a\x4d\x42\x76\ \xfa\x3c\x84\x85\x04\x5d\xbc\xe6\x26\xc3\xe0\x42\x71\x39\x0e\x1f\ \x3f\x8d\xa3\xa7\xf2\x21\x96\x48\x2c\xf8\x84\x26\xe9\x62\x27\x4d\ \xe1\x90\x90\x60\xdc\x73\xdb\x2d\x10\x4b\x15\xf8\xcf\x0f\xb9\x00\ \x08\x68\x79\x43\x23\xd8\x95\x94\x19\xd1\x36\x26\x80\x63\xb6\x3d\ \x4c\xd4\x1a\x3d\x84\x32\xa5\x51\x53\x50\x42\x24\x1d\x1a\x85\x82\ \x94\x85\x84\x4c\xa1\x1a\xd1\x0e\x26\x8f\x4f\x98\x9c\xfa\xe6\x2d\ \xfc\xa9\x27\xfe\x64\xa0\x20\xb6\x8c\x38\xab\x9f\x66\xe6\x81\x46\ \x08\x41\x68\x70\x20\xb2\x52\x13\x59\x48\xa4\x26\x21\x3b\x2d\x09\ \xa9\xf3\xe2\xe0\xed\xc5\x59\xac\x34\x4d\xe3\x5c\x71\x39\x0e\xe5\ \x9e\x46\xce\xe9\x7c\x48\xa5\xf2\x49\xa0\x3d\x7d\x5a\xe4\x93\x0f\ \x3d\x88\xd0\x90\x10\xbc\xf9\x7f\x5f\x42\xa3\xd5\x81\xe8\xa4\x42\ \xa2\x15\x88\x66\xca\xb7\xe1\xd6\x1a\x07\x21\x04\x52\x85\x1a\x22\ \xd9\x10\x0b\x03\xe9\x90\xd1\xe1\xa8\x64\xa1\x20\x1b\x82\x50\xac\ \x84\x46\xa7\x87\xe5\x78\x04\x32\xe5\x0d\xb3\xd5\xc6\x77\xcd\xe8\ \xb1\xe3\x38\x99\x5c\xed\xf5\xe0\xf1\x90\x10\xc7\x47\x76\x6a\x12\ \xb2\xd2\x12\x91\x95\x9a\x88\xac\xb4\x24\xc4\x44\x85\x83\x93\x51\ \xa1\x28\x0a\x05\x45\x65\x38\x72\xfc\x0c\x72\x4f\x17\x40\x2a\x57\ \x38\xc5\x07\x65\xcf\x38\x32\x77\x38\x29\x21\x1e\xf7\xdf\x71\x1b\ \x14\x4a\xd5\xc8\x66\x36\x46\xd1\xd4\x64\xa2\x6d\x4c\x4b\x78\xb9\ \x5b\x80\xc3\x40\xd1\x10\xc9\x54\x10\x4b\x87\x20\x34\x82\x61\x18\ \x10\x2c\x24\x94\x10\xcb\x54\xa0\x19\xda\xe2\x4e\x48\x62\x05\xc6\ \x5d\xea\x40\x74\x71\xd4\xa4\x2d\xe2\xef\xeb\x83\xf4\xe4\x04\x64\ \xa7\x25\x22\x33\x35\x01\xd9\xa9\x49\xc8\x48\x89\x87\xbf\x83\x39\ \x2c\xe7\xac\xe9\x6a\xa0\x50\x50\x58\x8a\xc3\x27\xce\xe0\x78\xde\ \x39\xc8\x8d\xb0\x20\x36\x9a\xa2\xd6\x86\x88\xdb\xab\x91\x12\x10\ \xbc\xf8\xf4\x13\xf0\xf1\xf1\xc1\x07\x9f\xef\x87\x52\xa5\x01\xd1\ \xcb\xc4\x8c\xa6\x6f\x70\x26\x7d\x1b\x2e\x01\xc7\x90\x5a\xc7\x42\ \x41\xa6\x82\x50\x36\x04\xb1\x54\xc5\x42\x41\xa6\x32\x02\x42\x09\ \xf9\x90\xd6\x8c\xa9\x60\x29\x48\xc9\x45\x01\x4b\xd3\xf0\x04\x71\ \x85\x2d\x1c\x1d\x19\x86\xac\xb4\x04\x64\xa6\x24\x20\x2b\x35\x01\ \x59\xa9\x89\x48\x8c\xe3\x5f\x74\x0e\x4b\x5b\x45\xaf\x37\x20\xbf\ \xb0\x14\x47\x4e\x9c\xc1\xf1\x33\xe7\xa0\x1c\x52\x4d\x6e\xa2\x5a\ \x8b\x04\x62\x9f\xc6\x48\xac\x18\xd3\x2b\x96\x2e\xc6\x75\x57\x5d\ \x01\xb5\x46\x87\x7f\xed\x3b\xc4\x6a\x1b\xca\xe6\xe6\x99\xf6\x6d\ \x58\x0d\x0e\x1e\x0f\x60\x18\x02\xa9\x42\x03\x91\x9c\x85\x82\xc8\ \xf8\x23\x1e\x79\x1d\x82\x50\xa6\x82\x4e\x6f\xb0\x9c\x2f\xc1\x8c\ \x39\x61\x99\xf2\x96\xd5\x70\x6b\xfd\x10\x56\xb7\x63\xe7\xcd\x77\ \x05\xd0\x86\xff\xdd\xdb\xcb\x13\x29\x89\x31\xc8\x4a\x4d\x40\x66\ \x4a\x3c\x32\x53\x58\x8d\x22\x24\x28\x80\xa3\x80\x95\xa2\xd3\xeb\ \x91\x77\xbe\x04\x47\x4f\xe6\xe1\x78\xde\x05\x0c\xa9\x54\x23\x9d\ \x6c\x13\x2f\x66\xc8\x14\x7d\xf5\xf9\x67\xc1\xe3\xf1\xf0\xf9\x77\ \x47\x21\x95\x2b\x41\x0c\x0a\x19\xa3\xea\xee\xc7\xc4\x44\xc4\x33\ \x03\x0e\xbd\x81\x86\x58\xae\x86\x48\xa6\x82\x44\xa1\x86\x58\xa6\ \x86\x48\x3e\xc4\xbe\x1a\xe1\x20\x51\xaa\xc1\x98\xa4\x5c\x9b\xb8\ \x35\xda\x01\x37\x12\x71\xbc\xb3\x2d\xef\xb7\xb0\x6d\x3d\x9d\x90\ \xa9\xce\xb7\xe1\xfb\x58\x79\x5d\xa1\xc1\x81\xc8\x4c\x89\x63\x21\ \x91\x1c\x8f\xac\xd4\x04\xa4\x24\xc5\xc0\xcb\xd3\x93\x9b\xfd\x36\ \x8a\x56\xa7\xc7\x99\xf3\xc5\x38\x72\x22\x0f\x27\xf3\x0b\xa1\xd6\ \x68\xac\xf2\x75\xcd\xa4\x16\x69\x4e\x76\xed\xd8\x86\x35\xab\x56\ \x60\x48\xad\xc1\x87\x5f\xfc\x6c\xd4\x36\x5a\x87\x7d\x1b\x5a\x8c\ \x4d\x44\x3c\x23\xe2\x75\xd3\xde\x2f\x2d\x87\x32\x4f\xb9\xb4\x38\ \xae\x9f\x1c\xb5\x20\x66\xc0\x84\xb0\x15\x68\x36\xad\x84\x98\xf4\ \xa3\x07\x8f\x87\xc4\xb8\x28\x56\x83\x48\x8e\x47\x66\x4a\x3c\xb2\ \x52\xe3\xc1\x8f\x08\xe5\x66\xbc\x03\xa2\xd1\x68\x71\xfa\x7c\x31\ \x8e\x9e\x28\xc0\xa9\x73\x45\x2c\x2c\x88\xe3\x03\x60\xa6\xc6\xb4\ \xb7\x97\x17\x5e\x7e\xf6\x49\x00\xc0\x3b\x1f\x7e\x0d\xa1\x44\xc6\ \x6a\x1b\x43\xed\x3d\xee\xe0\xdb\xb0\xda\x54\x71\x96\x26\xe1\x2c\ \x07\x22\x71\x12\x04\x9c\xb5\xa2\x62\xee\x4f\xfe\x7e\x3e\x48\x4f\ \x8a\x43\x56\x4a\x1c\x32\x53\xe2\x90\x99\x12\x8f\xb4\x79\xb1\xf0\ \xf7\xf5\xe1\x66\xba\x13\x44\xad\xd1\xe0\xf4\xd9\x62\x1c\x39\x59\ \x80\x33\xe7\x8b\xa1\xd1\xea\x8c\x33\x94\x58\x98\xb8\xee\x61\x8a\ \x5a\x33\xa6\xef\xbc\xf5\x66\xa4\x26\xcf\x43\x5d\x53\x07\xfe\xfd\ \xf5\x61\x00\x84\xd0\xb2\x9a\x6a\x00\x2a\x77\xd1\x36\x58\x70\xcc\ \xf0\x8e\x49\x57\xfc\x3f\x71\x52\x5b\xd6\x58\x1b\x31\x91\xa1\xc8\ \x4c\x89\x43\x46\x72\x1c\x32\x93\x63\x91\x99\x12\x8f\x84\x98\x08\ \xf0\x38\x87\xa5\x53\x45\xa5\xd6\xe0\x64\x41\x21\x8e\x9e\x3a\x8b\ \xbc\xf3\x25\xd0\xe9\xf5\x56\x98\x96\xd6\xad\x88\x10\x27\x2c\x89\ \xdb\xdc\x8e\x19\xa0\x85\x04\x07\xe1\x99\x47\x1f\x02\x21\x04\x2f\ \xbc\xf9\x4f\xd0\x0c\x03\x46\xdd\xdf\x45\x34\x03\xc3\x2b\x29\xc3\ \x4e\x51\x32\xf3\xe0\x30\xbd\x6c\x4b\x3b\x23\x6d\xdc\x31\x39\x69\ \xa4\x25\xb1\xde\x7f\x40\x9c\x04\x34\x67\xd8\xa2\xde\x5e\x9e\x48\ \x49\xe0\x23\x23\x39\x0e\x19\xc9\xb1\xc8\x4c\x8e\x45\x46\x72\x1c\ \x42\x82\xfc\xb9\x59\xed\x22\x51\x0e\xa9\x71\xea\x6c\x11\x8e\x9c\ \x2c\x40\x41\x61\x19\x74\x7a\xfd\xa4\x13\xd7\x19\xa6\xa8\x4d\x63\ \xd1\x0e\xdf\xda\x64\xc9\x7b\x7e\xbd\xe7\x01\x84\x87\x85\x62\xdf\ \xfe\x13\x28\xa9\x6a\x04\x18\xbd\x8e\x96\x96\xd7\x8e\xd3\x36\x98\ \x99\x86\x86\x55\xa6\xca\xc4\x79\xeb\x1c\xb5\x6f\xa2\x03\xd1\x8e\ \x8d\x41\xc4\x86\xf5\xf7\x29\x8e\x9b\x5e\x57\x68\x70\x00\x32\xe6\ \xc5\xb0\x5a\xc4\xbc\x18\x64\xa4\xc4\x21\x39\x3e\x8a\x73\x58\x4e\ \x83\x28\x86\x54\x38\x99\x5f\x88\xa3\xa7\xce\xa1\xa0\xb8\x0c\x86\ \x31\xbb\x88\xa7\x47\x8b\x9c\xae\x87\x91\xa9\x24\xc6\xc7\xe1\x81\ \x3b\x6f\x83\x54\xae\xc4\x1b\x7f\xfd\x02\x00\x40\x2b\x9a\x1b\x40\ \xeb\x14\x18\x9b\xa8\x67\x76\x82\xc3\x0a\x8d\x6d\x66\xc4\x0e\xa0\ \x79\xf0\x78\x48\x8c\x8d\x40\x46\x72\x2c\xd2\xe7\xc5\x20\x63\x1e\ \xab\x49\x44\x85\x07\x73\x33\x78\x1a\x45\xae\x18\xc2\x09\xa3\x19\ \x72\xae\xa4\x12\x94\x81\xb2\x6b\xd3\xa0\x13\x7c\xa2\x4e\x1d\xd3\ \xb6\x28\xc7\x2f\x3e\xfd\x6b\xf8\xf8\xf8\xe0\xa5\xb7\x3f\x66\x97\ \x5f\xf5\x32\x09\xa3\x68\x6c\x33\x6a\x1b\xd3\x9e\x6f\xc3\x21\x70\ \xb8\xd2\x81\xe8\x4a\x97\x8a\xb9\x0f\x0c\xf0\xf3\x41\x5a\x52\x34\ \xab\x49\x18\x7f\x52\x93\xa2\xe1\xe7\xe3\xcd\xcd\xdc\x19\x10\x99\ \x42\x89\xe3\x79\x85\x38\x76\xfa\x1c\xce\x95\x54\x81\xa6\x8d\xfe\ \x3e\x42\x66\x64\xe2\x3a\x53\x7b\xb0\xa5\x2d\x02\x60\xe3\xba\x35\ \xd8\x7d\xf5\x95\x28\xab\x6e\xc2\xbe\xfd\x27\x00\xc2\x30\xb4\xb4\ \xaa\xca\x08\x0d\xb7\x59\x49\x71\x9e\xc6\xe1\xaa\x0e\x77\x70\x45\ \x25\x26\x32\x04\x19\xf3\xa2\x59\x2d\x22\x29\x1a\x19\xc9\x31\x88\ \xe3\x87\x73\x69\x11\x67\x58\x24\x32\x05\x8e\x1b\xcd\x90\xa2\xf2\ \x9a\x11\x58\xd8\xe3\x5b\x23\x0e\xe6\xba\x98\xba\x1d\x17\x3e\xd9\ \x4c\x9a\x0a\xf0\xf7\xc7\x3b\x7f\xf8\x1d\x68\x86\xc1\xde\x3f\xfd\ \x13\x84\x10\x30\xea\xde\x0e\xa2\x13\x09\xdd\xd1\x44\x19\x07\x0e\ \xdb\xe2\xf1\xe1\xa4\x78\x7c\x47\xb7\x86\x7b\x7b\x79\x22\x39\x21\ \x12\x19\x49\xd1\x48\x4f\x8a\x46\xfa\x3c\xf6\x35\x38\xd0\x8f\x9b\ \xa5\x6e\x22\x62\xa9\x1c\xb9\x79\x85\x38\x76\xe6\x3c\x4a\xca\x6b\ \x41\x31\xb4\x7d\x13\xd1\x85\x9b\x04\x27\x05\x8e\x95\x40\xb3\x37\ \x79\xcf\xde\x27\x1e\xc5\xbc\xc4\x04\xfc\x6b\xdf\x21\xd4\x36\xb5\ \x03\xb4\x56\x43\x4b\x2b\xea\x31\xea\x10\x35\xb8\x1b\x34\xc6\x68\ \x1c\x16\xd7\xbb\x6d\x9c\xf8\xc4\x2e\x6a\x4f\xed\x7d\x0e\x0b\x0e\ \x40\x5a\x62\x94\x11\x0e\x7c\x64\xcc\x8b\xc1\xbc\xb8\x08\xb7\x2c\ \xdd\x77\xb1\x8b\x50\x2c\xc5\xf1\xfc\x22\x1c\x3d\x75\x1e\xa5\xd5\ \x75\x60\x18\xe2\x5e\xcb\xfb\xce\x7b\x76\x39\x94\xbc\x67\xd5\xf2\ \xa5\xb8\xef\x8e\x5b\x21\x10\x49\xf1\xce\x87\xfb\x00\x00\xb4\xa2\ \xb1\x0e\x8c\x41\x81\x19\xcc\xee\xe5\x74\x53\xc5\x75\x2b\x2a\xa3\ \x7f\xf1\xf0\xe0\x21\x81\x1f\x8e\xf4\x79\x7c\xa4\x27\xf1\x91\x9e\ \xc8\x47\xfa\xbc\x68\x44\x86\x06\x72\x33\xd2\x8d\x45\x20\x92\x20\ \x27\xaf\x08\x39\x67\xce\xa3\xbc\xba\x11\x0c\x61\xa6\x78\x18\x39\ \x69\x6e\x93\xe9\xe7\x8d\x33\x56\x54\x7c\x7c\x7c\xf0\xe7\xd7\x5f\ \x81\x87\x87\x07\x5e\x7b\xef\x53\x76\xf7\xab\x4e\x22\x64\x94\xad\ \x5d\x98\xb8\xfc\xea\x76\xe2\xe5\x48\xef\x39\x7a\x23\x02\xfc\x7c\ \x90\x9a\x18\x85\xf4\xc4\x28\xa4\x27\xf1\x91\x96\x18\x85\xd4\xc4\ \x28\xf8\x7a\x73\x89\x65\x66\x83\x0c\x08\xc5\xc8\xcd\x2b\xc2\xb1\ \xd3\xe7\x51\x59\xd7\x0c\x86\x90\x09\x25\x1f\xed\xb6\x40\xec\x99\ \xcc\xb3\x68\x45\xe5\xa9\x87\x1f\x44\x66\x5a\x2a\x0a\x8a\xaa\x8d\ \x59\xcb\x69\x9a\x96\x56\x56\x03\x30\x2d\xe5\xe8\x56\x0e\x51\xab\ \xc0\xe1\xec\x15\x95\x98\x88\x60\xa4\x27\x46\x21\x2d\x29\x8a\x35\ \x39\x12\xa3\x10\x1b\x15\xca\x39\x2c\x67\x99\xf4\x0d\x8a\x90\x9b\ \x57\x88\x9c\xbc\x42\x54\xd5\xb7\x82\x30\x0c\xa6\xce\x91\x62\x7d\ \x64\xe7\x94\xbb\xa1\xad\x35\x0b\x5c\xe8\x5b\x73\x54\x45\x59\x98\ \x9d\x85\x47\x1e\xb8\x07\x06\x03\x85\x17\xdf\xfa\x27\x00\x80\x51\ \x75\xb7\x13\xbd\x54\x84\xb1\xdb\xe6\xdd\x12\x1a\xe6\xc1\xe1\xe0\ \x23\xc0\xdb\xd3\x13\xc9\xf1\xe1\x2c\x24\x12\x23\x91\x96\xc0\xbe\ \x06\x05\x70\x89\x65\x66\xab\xf4\x0e\x08\x8d\x66\xc8\x05\xd4\x34\ \xb6\x59\x37\xc1\x5d\x10\x92\x6d\x57\x3b\x93\x8c\xe9\x99\x48\xde\ \xe3\xe5\xe1\x89\x77\xdf\x78\x05\x5e\x9e\x9e\xf8\xeb\x67\xdf\xa3\ \xb5\xb3\x0f\x84\xd6\xa8\x67\x83\x43\x74\x1c\x38\x2c\x6d\x3b\x9e\ \xda\xfb\x1c\x16\xec\x8f\xb4\x84\x48\x23\x20\x22\x91\x9e\x14\x89\ \xc4\x98\x30\xce\x61\x39\x07\xa4\xbb\x4f\x80\xdc\xfc\x22\xe4\x9c\ \x29\x42\x6d\x73\xdb\xd8\x32\x0f\x4e\x73\x0a\x38\xaa\xf7\xbb\x6a\ \x45\x65\x12\x24\x38\x98\xbc\xe7\xa1\xfb\xee\xc4\x92\x85\xf3\xd1\ \xdd\x27\xc0\x5f\x3e\xfe\x8e\xd5\x36\xe4\xf5\x35\x20\x8c\x12\x13\ \x0b\x47\xbb\x33\x38\xa6\xbe\x68\x0f\x0f\x1e\xe2\xf9\x21\x48\x4f\ \x8c\x44\x5a\x42\x04\x52\x13\x22\x91\x9e\x18\x89\xf0\x10\x2e\xb1\ \xcc\x5c\x92\xce\x9e\x01\xe4\xe6\x17\x23\x27\xbf\x08\x0d\xcd\x26\ \x15\xd4\x67\x30\x24\x7b\x3a\x53\x40\xba\x1a\x68\x69\x29\xf3\xf0\ \xf4\x23\x7b\x00\x00\x2f\xbd\xfd\x2f\x68\x75\x7a\x10\x9d\x68\x80\ \x19\xea\xe8\xc6\xc4\xcc\x5e\x6e\x2d\x13\x4c\x95\x00\x3f\x6f\xa4\ \xc6\x47\x20\x35\x31\x02\x69\xf1\x11\x48\x4d\x88\x40\x4a\x7c\x38\ \x7c\x38\x87\xe5\x9c\x94\xf6\xee\x7e\xe4\xe6\x17\x23\x37\xaf\x18\ \x4d\x6d\x5d\x53\xeb\x14\xce\x5c\x55\x75\x93\x1a\x32\xb6\x34\x62\ \x2f\x10\x79\x3c\x1e\xfe\xfc\x87\xdf\xc1\xd7\xd7\x07\x9f\x7e\x73\ \x04\x27\x0a\x4a\x01\x42\x51\xb4\xa4\xc2\x34\x42\xd4\xad\x1d\xa2\ \x63\xc0\xb1\x76\xf1\x3c\x56\x8b\x88\x0f\x47\x5a\x42\x04\xa2\x23\ \x82\xc1\x59\x1a\x73\x5b\xda\xba\xfa\x90\x93\x57\x8c\xdc\xfc\x62\ \xb4\x74\x8c\xaf\xa0\x6e\xbb\x1f\xc2\xae\xe4\x46\xce\xa6\x08\x71\ \x22\x3b\x5c\x90\xbc\xe7\x9e\xdb\x6e\xc6\x9a\x95\xcb\x51\xd3\xd8\ \x8e\xd7\xde\xff\x0c\x00\x40\x2b\x9a\x6a\x88\x41\x21\xc1\x2c\x71\ \x88\x8e\x01\xe1\xe0\x20\x79\x65\x22\x1d\xb9\xc9\x35\xd7\xa4\xb9\ \xa3\x07\xc7\xf3\x4b\x91\x93\x5f\x84\xf6\xae\x7e\x4c\x99\xed\x6d\ \x42\xdd\x19\x33\x55\xeb\x2c\xe5\x97\xc5\xc4\xf4\x92\x93\x97\xaf\ \x20\x66\xda\x1d\xdf\x36\x31\x69\xce\xb4\x2d\x62\xf2\xf5\x4c\x3f\ \x9b\x8c\x99\xc9\xc4\xe4\x73\x46\x0f\x13\x33\x9f\x3f\xfe\x3b\x8e\ \x85\xea\xe4\xb5\x79\xcc\x5f\xfb\xc2\xec\x4c\xfc\xfc\xd5\x27\xa0\ \x18\x06\x57\xdc\xfe\x2c\x3a\xba\x07\x40\x34\x03\x3d\x94\xf0\x5c\ \x21\x00\x29\x46\x97\x60\xdd\x32\xd8\xcb\x2a\x53\x85\x93\xb9\x23\ \x4d\x6d\xdd\xc8\x2d\x28\xc1\xf1\xfc\x52\x74\xf4\xf4\x5b\x55\x56\ \xc2\x39\xb6\xbf\x33\x4e\x9e\xbc\x9e\xaa\xf3\x92\xf7\xd8\x90\x5f\ \xd6\x8e\x95\xa2\xe0\xa0\x40\xfc\xe3\xbd\x37\xe1\xe7\xe7\x8b\x47\ \x5e\x7c\x8f\x85\x06\xa5\x1a\xa2\x44\x45\x15\x00\x66\x95\x43\x94\ \x03\xc7\x1c\x96\x86\xd6\x2e\x1c\x2f\x28\x45\x4e\x7e\x09\xba\xfb\ \x04\x26\x4f\x7c\xe7\x40\x60\x26\x6b\xc8\x4c\x37\xd0\x9c\x91\xbc\ \xe7\xcf\xaf\xff\x0e\xa9\xc9\xf3\xf0\x9f\x1f\x72\xb1\x3f\xc7\x18\ \xe8\x25\x2e\x2d\x05\xa1\xe4\x70\x93\x52\x07\x4e\x01\x07\x67\xa6\ \xcc\x3e\xa9\x6b\xee\x44\x6e\x41\x29\x8e\x17\x94\xa2\x77\x40\x38\ \x4e\x5d\x76\xe2\xbc\x9a\xe6\xec\xdf\xb3\x3d\x79\xcf\xfd\x77\xdc\ \x8a\xab\x76\x6c\x43\x7d\x73\x27\x7e\xf7\xce\xc7\x46\xbf\x46\x63\ \x2d\xd1\x89\x06\x60\x3e\x42\x14\xb3\x16\x1c\x9c\xcc\x0e\xa9\x69\ \x6c\xc7\xf1\xb3\x65\x38\x71\xb6\x0c\xbd\x83\xa2\x71\x26\xbd\xfb\ \xe7\x91\x9d\xeb\xa1\xe6\x2b\x97\x2d\xc1\x6f\x9f\x7d\x02\x2a\xb5\ \x16\x7b\xf6\xbe\x03\x9d\xde\x00\xa2\x19\xe8\x65\xe4\x0d\x2d\x46\ \x68\xb8\x65\x9e\x0d\x0e\x1c\x73\x4c\x08\x21\xa8\x6e\x6c\xc7\xf1\ \x82\x32\x9c\x38\x57\x8e\x01\xa1\xc4\x8a\xfc\xad\x96\x73\x5a\x10\ \x1b\xf3\xc8\x5a\x3a\x4e\x6c\x50\xdb\x27\x5b\x51\x99\x4b\xc9\x7b\ \xc2\xc3\x42\xf1\xe1\x9f\xff\x04\x2f\x2f\x2f\x3c\xfd\xfb\xff\x63\ \xa3\x43\x59\xbf\x46\xb9\xd1\xaf\xa1\x9e\x8d\x7e\x0d\x0e\x1c\xb3\ \x08\x16\x95\xf5\x6d\x38\x71\xb6\x1c\x27\xce\x97\x43\x20\x94\xda\ \x1b\xbb\x69\xd7\x6c\x73\x5d\xf6\x6f\xdb\x72\x5d\x4c\x5f\xf2\x1e\ \xe2\x30\x85\x78\x3c\x1e\xfe\xdf\x9b\xbf\x47\x7c\x6c\x0c\xbe\xfe\ \xf9\x24\xbe\x3f\x9c\x37\xde\xaf\xa1\x9a\xad\x7e\x0d\x0e\x1c\x6e\ \x2c\x0c\x21\xa8\xac\x6b\xc5\xf1\xb3\xe5\x38\x79\xbe\x02\x42\xb1\ \x1c\x8e\x6e\x4d\x9f\xce\x14\x90\x4e\x7d\x7a\xcf\x60\xa8\xb9\x35\ \x40\x33\xb7\x32\xf3\xeb\x5f\xdd\x8b\x2d\x1b\xd7\xa3\xb1\xad\x1b\ \x2f\xbd\xf5\x91\xd1\xaf\xd1\x34\x27\xfc\x1a\x1c\x38\xdc\x0d\x16\ \x0c\x83\xf2\xda\x56\x1c\x3f\x57\x81\x53\x17\x2a\x21\x96\xc8\xa7\ \x78\xe2\x3b\xd9\xc6\x87\xfb\x66\xff\x76\xa6\x09\x61\x4b\x5b\xf6\ \x24\xef\xd9\xb0\x76\x15\x9e\x79\xf4\x57\xd0\x68\x75\x78\x68\xef\ \x3b\x6c\x48\xb9\x76\xb0\x97\x91\xd7\xcf\x09\xbf\x86\x45\x70\x70\ \x2b\x2a\xd3\x0b\x8b\xd2\x9a\x16\x9c\x38\x57\x81\x53\xe7\xab\x20\ \x91\x2b\x9c\xf4\x74\x75\x95\xdd\xe4\x46\x1f\xe7\x4c\x6d\xcb\x49\ \x2b\x45\xd1\xfc\x28\xfc\xed\xad\xd7\xe1\xe1\xe1\x81\x17\xdf\xfa\ \x08\x4d\x6d\x3d\x20\x94\x5a\x65\x12\xaf\x31\xeb\xfd\x1a\x9c\xc6\ \x31\x43\x42\xd3\x0c\x4a\xaa\x9b\x71\xf2\x7c\x25\x4e\x5d\xa8\x84\ \x4c\xa1\x9a\xf8\x04\x23\x76\x16\x05\x32\xf1\x8b\x4c\x6e\xaf\xcf\ \x54\x1e\x59\xe2\x88\xeb\x60\x7a\xb4\x2d\x3b\xdb\xf2\xf2\xf4\xc4\ \x07\xff\xfb\x3a\xa2\x22\x23\xf0\xdd\xa1\xd3\xf8\xe6\xc0\x29\xd6\ \xaf\x21\x29\x2d\x01\x63\x90\xcd\x15\xbf\x06\x07\x8e\x69\x14\x8a\ \xa6\x51\x5c\xd5\x8c\x13\xe7\x2a\x91\x57\x54\x03\xb9\x72\x68\xf2\ \x09\xee\x34\xbb\xdc\xf2\xcc\x72\x56\x3d\x55\xdb\x92\xf7\xc0\x22\ \xd0\x66\x36\x79\x8f\xe3\x73\xf8\xd5\xe7\x9f\xc6\xda\x55\x2b\xd0\ \xd2\xd1\x8b\x17\xde\x34\x26\xe6\x51\x34\xd7\x11\xad\x70\x70\x2e\ \xf9\x35\x38\x70\xb8\x58\x0c\x14\x8d\xa2\xca\x26\x9c\x3c\x5f\x85\ \xbc\xe2\x6a\x28\x86\x34\x70\x38\x58\xc0\x55\xc3\x6d\xda\x57\x54\ \xec\xd3\x64\x5c\x97\xbc\x07\x76\x69\x68\xc3\xed\x3c\x7c\xdf\x9d\ \xb8\xfb\xb6\x9b\xa0\xd5\xe9\xb1\xe7\xf9\x77\xa0\xd6\xe8\x40\xb4\ \x82\x3e\x5a\x5e\xd7\x8c\x89\x21\xe5\x84\x03\x07\x27\x63\x61\x61\ \xa0\x50\x38\x02\x8b\x5a\x0c\xa9\x35\xe3\x36\x87\xb9\xa9\x8d\x6f\ \xe5\xc9\x5c\xf2\x9e\x89\xe7\x5f\xb7\x6b\x27\x5e\x78\xf2\x11\xd0\ \x0c\x83\x47\x5f\x7a\x0f\x0d\xad\x5d\x46\xbf\x46\x61\xd9\x5c\xf4\ \x6b\x70\xe0\x70\x92\xe8\x0d\x14\x2e\x54\xb0\xb0\x28\x28\xa9\x83\ \x4a\xa3\xb5\x2a\xd4\xdb\x6d\x6d\x7c\x07\x27\xfe\xc5\x94\xbc\x67\ \xfd\x25\x2b\xf1\xde\xeb\xbf\x05\x8f\xc7\xc3\xde\x37\x3e\xc4\xd1\ \xd3\x45\x00\x63\x30\xd0\x92\xd2\xa2\xb9\xea\xd7\x30\x0b\x0e\x6e\ \x45\xc5\x3a\xd1\xe9\x0d\x38\x5f\xde\x88\x53\x17\xaa\x91\x5f\x5a\ \x07\x8d\x46\x6f\x66\x44\xda\xa6\x9e\x13\x27\xd9\xe5\x2e\x0b\x35\ \x9f\xc3\xc9\x7b\x88\x1d\x97\x9f\x9d\x91\x86\x8f\xff\xf2\x36\xbc\ \xbd\xbd\xf1\xd6\x07\x5f\xe1\xab\x9f\x8e\x1b\x9d\xa1\x65\xc5\x44\ \x2b\x1c\x8e\xd7\xd0\xcc\x35\xbf\x06\xa7\x71\xd8\x28\x5a\x1d\x0b\ \x8b\x93\x17\xaa\x71\xae\xac\x01\x1a\xad\x6e\x9c\x52\x6b\x39\x52\ \xd1\xbc\xe3\xcf\xd6\x95\x0f\x1b\xdb\x99\x44\x3d\x27\x4e\x72\xb8\ \xce\x95\xe4\x3d\xb6\xb6\x15\x1b\xcd\xc7\x67\x1f\xbc\x8b\xe0\xa0\ \x20\xfc\x6b\xdf\x21\xfc\xf5\xdf\xdf\x03\x84\x21\xb4\xb4\xba\x9c\ \x51\xf7\x76\x9b\xf8\x35\x66\x4d\x36\x2f\x0e\x1c\x4e\x14\x8d\x56\ \x8f\x73\xe5\x8d\x38\x75\xa1\x06\xe7\x2b\x1a\xa0\xd1\x1a\x30\xad\ \xd5\x7f\x5c\x9a\x0f\xcf\xd9\x21\xd9\xf6\xd7\x65\x25\x76\xfa\x21\ \xcc\x33\xc8\x49\x7e\x11\x0b\x40\x0b\x0a\x0c\xc4\x67\x1f\xbc\x8b\ \xf8\xd8\x18\xfc\x74\xac\x00\xaf\xbe\xfb\x09\x00\x02\x5a\xd1\x58\ \xcd\x0c\xb5\xb5\x03\x50\xc0\x8d\xeb\xbd\x72\xe0\x70\x91\xa8\x35\ \x3a\x9c\x2b\x6f\xc4\xc9\x0b\x35\xb8\x50\xd1\x0c\x9d\x5e\x6f\xd3\ \x2c\x76\x37\x1b\x7f\x5a\x41\x35\x27\x92\xf7\x58\xd6\xdc\xbc\xbc\ \xbc\xf0\xd1\x7b\x7f\xc2\x82\xac\x0c\x9c\x3e\x5f\x81\x27\x5e\xf9\ \x2b\x5b\x20\x5a\xd9\xd6\xc8\xc8\xeb\x9b\x4c\xa0\xa1\x9b\xeb\xd0\ \xe0\xc0\x01\x40\xa5\xd1\xa1\xa0\xb4\x01\xa7\x0b\x6b\x51\x58\xd9\ \x0c\xbd\x81\x9a\xa8\xd2\xcf\x52\x1b\x9f\x4b\xde\x03\x27\xad\x66\ \x11\xbc\xf3\xda\x8b\xd8\xb0\x76\x35\x2a\x6a\x9b\xf1\xe0\x73\x6f\ \x83\xa2\x68\x30\xea\x9e\x0e\x5a\x5a\x59\x6b\x84\x86\xa9\x33\x94\ \x9e\xcb\xd0\xb8\x68\xc1\x31\xa4\xd6\xa2\xa0\xb4\x11\xa7\x0a\x6b\ \x50\x5c\xdd\x3a\x02\x8b\xb1\xb7\xda\x79\x3b\x26\xdd\xd9\x9c\xe1\ \x92\xf7\x4c\xdd\xce\x73\x8f\xef\xc1\x0d\xd7\x5c\x89\xd6\xce\x3e\ \xdc\xf9\xc4\x1f\x47\x63\x35\xd8\x70\xf2\xe1\x1d\xaf\xb3\xa2\x90\ \x92\x53\xc1\x71\x31\xac\xa8\x28\x55\x5a\xe4\x1b\x35\x8b\x92\x9a\ \x36\x18\x28\xca\x72\xae\x0a\x2b\x86\x22\x99\x62\x0b\xb8\xb5\xc7\ \x89\x8d\xa9\xe8\x2c\xb6\x43\xdc\x1f\x74\xb3\x31\x79\xcf\x1d\x37\ \xef\xc6\x63\x0f\xdc\x8d\x01\x81\x04\xb7\x3d\xfa\x1a\x24\x32\x05\ \x88\x5e\x2a\xa2\x84\xe7\x4a\xc6\x41\x83\xba\x58\xa0\x31\xe7\x35\ \x0e\xc5\x90\x06\xf9\xa5\x0d\x38\x55\x58\x87\xb2\xda\x36\x50\x34\ \x33\xc9\x92\xa5\xf3\x6d\x10\xbb\x43\xa9\x89\x83\xed\xb8\x65\xf2\ \x1e\x4b\xa1\xe6\xee\x63\xfe\x8d\x97\x5b\x6f\xb8\x16\x6f\xbc\xf4\ \x2c\xe4\x8a\x21\xfc\xf2\xb1\xdf\xa3\x77\x40\x04\x62\x50\xca\x29\ \x41\x41\x21\x08\x23\xc3\x2c\x29\x10\xcd\x81\xc3\x0a\x91\x29\xd5\ \xc8\x2f\x69\xc0\xe9\xa2\x7a\x94\xd5\x77\x80\xa6\x69\xdb\x1f\x51\ \x73\xc9\xc6\xb7\x71\xb6\x4d\x7f\xa8\xb9\x7b\x26\xef\xb9\xe3\xe6\ \xdd\x78\xfd\xc5\x67\xa0\xd3\x1b\x70\xd7\x93\x7f\x44\x63\x5b\x37\ \x08\xad\x56\xd1\x82\xb3\x17\xc0\x18\x86\x4b\x1a\xcc\xc9\x70\xf2\ \x8b\x06\x1c\x52\xb9\x0a\xf9\xa5\x8d\x38\x55\x54\x8f\x8a\x86\x0e\ \x30\x34\x81\x75\xd9\x2c\x2e\x32\x1b\xdf\x8e\x93\x2f\xc6\x50\xf3\ \xbb\x6f\xbd\x11\xaf\x3d\xff\x24\x68\x86\xc1\xaf\x9e\x7f\x07\x25\ \x55\x8d\x00\xa3\xd3\xd1\xc2\x0b\x17\x08\xad\x16\xe1\x22\x89\xd5\ \x98\x93\xe0\x90\xc8\x55\x38\x53\xdc\x80\x33\xc5\x0d\xa8\x6a\xec\ \x02\xcd\x30\x70\xc5\x16\x70\x67\xea\xc4\x5c\xa8\xb9\xfb\x6b\x6e\ \xf7\xdd\x7e\x33\x5e\xf9\xcd\x13\x20\x84\xe0\x99\xdf\x7f\xc0\x96\ \x6a\x64\x28\x03\x25\x2a\x2a\x24\x7a\xd9\x20\xe6\xf0\xc6\x35\x9b\ \xc0\x31\x9b\x1c\xa3\x62\xd9\x10\xce\x94\x34\xe2\x4c\x51\x3d\xaa\ \x9b\x7b\xc0\x30\x8c\x4d\xa3\x84\x38\xe9\x69\x46\x9c\x94\xd3\xc2\ \xe5\xa1\xe6\x6e\x64\x26\x39\x5c\x07\x6a\x1a\x92\xf7\x3c\x78\xe7\ \xad\x78\xf9\xe9\x47\x01\x00\xaf\xff\xf5\x0b\x7c\x77\xe8\xf4\x70\ \x28\x79\x09\xd1\x0a\xfb\x30\x8b\x0b\x28\x5d\x74\x1a\x87\x50\xaa\ \xc4\x99\xe2\x46\x9c\x29\x69\x44\x6d\x73\xf7\x88\x83\x8f\xb8\x48\ \x8d\x25\x36\x4c\x7c\x9b\x76\x58\xda\xa5\xc9\xd8\x11\xda\x4d\xcc\ \xb5\x3b\xf3\xc9\x7b\x9c\xca\x32\x17\x24\xef\x79\xf8\xde\xdb\xf1\ \xfc\xaf\x1f\x02\x21\x04\xaf\xff\xf5\x0b\x7c\xf8\xc5\x7e\x00\x84\ \xd0\xb2\x9a\x72\x46\xdd\xd3\x85\xd1\xdd\xae\x17\x45\x80\xd7\xac\ \x04\x87\x40\xac\xc0\x99\x92\x26\x9c\x29\x69\x40\x7d\x6b\x1f\x18\ \x62\x26\xea\x89\xb8\x91\x8d\xef\x36\x49\x75\x2d\x1f\xe7\x92\xf7\ \x58\x3e\xfe\xd8\x03\x77\xe1\xd9\x47\x1f\x00\x45\xd3\x78\xe6\xf7\ \x1f\xb0\x9a\x06\x08\xa1\xe5\x0d\x55\x8c\xb2\xb5\x0d\xa3\x01\x5e\ \x7a\x0e\x1a\x6e\x06\x8e\x01\x91\xdc\x08\x8b\x26\x34\xb4\xf5\x4d\ \x3a\x91\xdc\x7b\xdb\xb5\x7b\x9a\x0a\xd6\x80\xee\x62\x4c\xde\xf3\ \xe4\x9e\x7b\xf1\xe4\x43\xf7\x42\xab\xd3\xe3\x57\xcf\xbf\xc3\xfa\ \x34\x08\x4d\xd3\xb2\x9a\x72\x13\x68\x70\x9a\x86\x3b\x81\xa3\x4f\ \x28\x43\x5e\x49\x33\xce\x14\x37\xa2\xa9\x73\x10\x13\xab\x83\xcf\ \x8e\x89\xcb\xad\xa8\x38\x0b\xba\xd3\xab\xb9\x3d\xf3\xc8\x03\x78\ \xfc\x81\xbb\x20\x57\x0c\xe1\xae\x27\xff\x68\x5c\x3d\xa1\x0c\xb4\ \xa4\xac\xc4\x68\x9e\x0c\x43\x63\x38\xc0\x8b\xe6\xa0\x31\x43\xe0\ \xe8\x15\xc8\x90\x67\xd4\x2c\x9a\xbb\x04\x98\x74\x1d\xdf\x4a\x95\ \x80\x4c\x87\x5d\xce\xad\xa8\x4c\x2f\x34\x5d\xac\x45\x3e\xff\xeb\ \x3d\x78\xf8\x9e\x5f\x62\x40\x20\xc1\x2f\x1f\xfb\x3d\x1a\xdb\xba\ \x01\x46\xa7\xa3\x44\x45\x85\x46\x47\x28\xa7\x69\xcc\x34\x38\xba\ \x07\xa4\xc8\x2b\x6d\x46\x5e\x69\x33\x5a\xbb\x05\x36\xcd\x24\x97\ \x87\x64\xdb\x13\x22\xee\x84\x9c\x16\x5c\xf2\x1e\xdb\xbf\x8b\x33\ \xbe\x92\x8f\xb7\x37\xde\x7e\xe5\x79\x5c\xb7\xeb\x72\xb4\x76\xf6\ \xe1\xb6\x47\x5f\x63\x23\x42\x69\xb5\x8a\x16\x5e\xb8\x40\xf4\x32\ \x01\x26\x6e\x8f\xe7\x34\x8d\xe9\x02\x47\x67\xbf\x04\xf9\xa5\x2d\ \x38\x53\xda\x84\x8e\x5e\xb1\x73\x97\x0c\x5d\xe4\x87\x20\x76\x8d\ \x66\x77\x4b\xde\x63\x29\xd4\xdc\x31\xd0\x39\x33\x79\x0f\x99\xa1\ \x7b\x1f\x11\x1e\x86\x7f\xbc\xf3\x3a\x56\x2f\x5f\x8c\x8a\xda\x66\ \xdc\xf9\xc4\x1f\xd9\xbd\x27\x06\xa5\x9c\x16\x9c\x1d\x1f\xdc\xc5\ \x69\x1a\xd3\x05\x8e\x8e\x3e\x31\xf2\x4a\x5b\x90\x5f\xda\x82\x8e\ \x7e\xb1\x65\xbd\xda\x99\xdb\x45\x88\x83\xed\xb8\x95\x8d\xef\xca\ \x5b\x3d\xd3\xc9\x7b\xec\x37\x45\x2d\x9a\xa8\x36\x98\xa2\x19\xa9\ \xc9\xf8\xf8\x2f\x7f\xc4\xbc\x84\x78\x9c\x3e\x5f\x81\x07\x9f\x7b\ \x9b\xdd\xe5\xaa\x97\x8a\x28\x41\x41\xa1\x31\x8c\xdc\x34\x4e\x83\ \x83\x86\x2b\xc1\xd1\xd6\x23\x42\x5e\x59\x2b\xf2\x4a\x5b\xd0\x33\ \x28\xb5\x5d\x2f\x9d\x03\xdb\xae\xdd\xde\xc6\x77\x6b\xd0\xb9\x3e\ \x79\xcf\x86\xb5\xab\xf0\xf7\xb7\x5f\x43\x70\x50\x20\x7e\x3a\x56\ \x80\x27\x5e\xf9\x2b\x28\x8a\x06\xd1\x0a\xfa\x28\xe1\xb9\x12\x93\ \x0d\x6b\x5c\x70\x97\x2b\xc1\xd1\xd2\x2d\x42\x7e\x59\x0b\xf2\xcb\ \x5a\xd1\x3b\x28\xb3\xcb\x0f\x41\x6c\x7a\x9a\xb9\x7e\xe2\x5e\x2c\ \x36\xbe\xb5\xd7\x3b\x57\x92\xf7\xdc\x76\xc3\x35\xf8\xc3\xf3\x4f\ \xc2\xd3\xd3\x13\xff\xda\x77\x08\xaf\xbe\xfb\x09\x9b\xb9\x4b\xdd\ \xd3\x61\x92\x4f\x63\x7c\x72\x61\x0e\x1a\xce\x02\x47\x53\xa7\x10\ \x05\xe5\xad\xc8\x2b\x6f\x45\xbf\x40\x3e\xe9\x1d\x76\x9d\x03\xd1\ \x3e\x07\x27\x71\xc2\x16\xf0\xc9\xac\xfc\xd9\x66\xce\x5c\x0c\x1b\ \xfb\x3c\x3c\x78\xd8\xfb\xeb\x3d\x78\xe0\x8e\x5b\x00\x00\x6f\x7d\ \xf0\x15\x9b\x58\x18\x6c\xba\x3f\x63\xe6\x2e\xd3\x7c\x1a\x17\xf5\ \xde\x13\xa7\x82\xa3\xb1\x43\x80\xfc\xf2\x36\xe4\x97\xb7\x62\x50\ \xa4\xb4\x7b\xea\x90\x59\xb0\xbe\xef\x58\xa8\x39\x97\xbc\xc7\x65\ \xf7\x7e\xb2\x6e\xb7\x20\x01\xfe\x7e\x78\xff\x8d\x97\x70\xf9\xa6\ \x4b\x41\x33\x0c\xf6\xfe\xf1\x1f\xc6\x12\x06\x0c\xa1\x15\x8d\xd5\ \x26\x39\x42\x4d\x33\x77\x71\xd0\xb0\x17\x1c\x84\x00\x0d\x1d\x83\ \x28\x28\x6f\x47\x41\x79\x1b\x06\x25\xca\x29\xef\xbe\xb3\x54\x5a\ \x32\x4d\x03\xd9\xb9\x4f\x7f\x2e\x79\x8f\xad\x9a\x1b\x71\xd2\x4d\ \xb4\x34\x24\x63\xf9\x51\xf8\xe8\xbd\x37\xb0\x28\x3b\x03\x5a\x9d\ \x1e\x8f\xbe\xf4\x1e\x5b\x2c\x89\xd0\x34\x2d\xad\x2e\x37\xc9\x46\ \x6e\x9a\xb9\x8b\x83\x86\xad\xe0\x20\x04\xa8\x6f\x1f\x44\xbe\x11\ \x16\x22\x99\x0a\x93\xe6\x55\x73\xf3\x44\xb4\x5c\x82\x5e\xdb\x67\ \x9b\xfb\x84\x9a\x3b\x96\xbc\x67\xf1\xfc\x4c\xfc\xf3\xdd\x3f\x20\ \x96\x1f\x85\x96\x8e\x5e\xec\x79\xfe\x1d\x34\xb4\x76\x19\x2b\xac\ \x95\x15\x1b\xeb\x9e\x98\x06\x76\x99\xe6\x08\xe5\xa0\x61\x0b\x38\ \xee\xfa\xed\x3e\x88\xe5\x2a\x13\xd5\x77\x86\x76\x4c\x5a\x53\x3a\ \xd1\x05\xb6\xf0\x5c\xb5\xf1\x1d\x39\x79\x36\x86\x9a\xdf\x7e\xd3\ \xb5\x78\xe9\xa9\x87\xe1\xeb\xe3\x83\xef\x0e\x9d\xc6\x0b\x6f\xfe\ \x93\x5d\x6e\xa5\xd4\x2a\x5a\x52\x5a\x64\xac\xb0\x66\x6e\x87\x2b\ \xc3\x61\xc0\x0e\x70\x0c\x43\xc3\x9a\x9b\x43\xec\x9a\xf8\x76\xa8\ \xf3\x5c\xa8\xb9\x43\x36\xbe\xcd\x73\x7c\x16\x27\xef\x09\x09\x0e\ \xc2\x9b\x2f\x3f\x83\x2b\xb6\x6e\x84\x46\xab\xc3\x53\xaf\xfd\x0d\ \xdf\x1c\x38\xc5\x36\xa5\x15\xf4\x51\xa2\xc2\x32\x63\x2d\xd7\xe1\ \x95\x13\x9d\xd1\x34\xe1\xa2\x41\x9d\xe1\xe3\x70\x6a\x92\x1b\xe2\ \xa4\x76\x9c\xf1\x7d\xdc\xe9\xba\xb8\x50\x73\xa7\x6a\x5b\x2b\x96\ \x2c\xc4\x5f\x5e\x7f\x11\x09\x71\x31\x68\x6c\xeb\xc6\x43\x7b\xdf\ \x41\x53\x5b\x0f\x40\x68\x9a\x51\x34\xd7\xd1\xf2\xba\x66\xa3\x96\ \xa1\xc2\xe8\x72\x2b\x17\xd8\xe5\x4c\x70\x58\xf5\xd0\x9f\x89\x27\ \xae\x3b\xad\xa8\x98\xb1\xab\xed\x6e\xc7\x55\xc9\x7b\x1c\xe9\x1f\ \x37\xd5\xdc\xc6\x7f\x0d\x1e\x8f\x87\x87\xee\xfe\x1f\x3c\xb5\xe7\ \x6e\x78\x7a\x7a\xe2\xeb\x9f\x4f\xe2\xa5\xb7\x3e\x82\x56\xa7\x1f\ \x36\x4d\x4a\xcd\x98\x26\x5c\x8c\x86\xcb\xc1\x31\xcd\xb6\xb0\xb3\ \x56\x54\x66\xcc\xc6\x77\x11\xd0\x1c\x6d\xdf\xad\x92\xf7\xc0\x39\ \x75\x62\xa3\x22\xc2\xf1\xe7\xd7\x9e\xc3\x86\x35\x2b\xa1\x52\x6b\ \xf1\xc2\x9b\x7f\xc3\xf7\x87\xf3\x8c\xa6\xc9\x60\x2f\x25\x2a\xaa\ \x30\x9a\x26\x2a\x98\xdf\xa8\xc6\x41\x63\x5a\xc0\xe1\x22\x35\xd6\ \xdd\xb7\x5d\xdb\xd4\x0e\xb7\xa2\xe2\x3c\x13\x6c\x92\xf3\x37\xae\ \x5d\x85\x77\x5e\xfd\x0d\xa2\x22\xc2\x51\xdf\xdc\x89\x3d\x7b\xdf\ \x41\x6b\x67\x1f\xbb\xd4\xaa\x68\xaa\x65\xe4\xf5\x2d\x26\xa6\x89\ \x69\x50\x17\xb7\x72\xe2\x5a\x70\xd8\xa0\x3e\xdb\xf9\x34\x23\x6e\ \x6e\x97\xbb\x47\xad\x52\xdb\xdb\x9a\xcb\x2b\x2a\x9e\x9e\x9e\x78\ \x7a\xcf\xdd\xf8\xd5\x9d\x37\x83\xc7\xe3\xe1\x3f\x3f\xe4\xe2\x77\ \xef\x7c\x0c\x9d\xde\x00\x42\xa9\x87\x8c\xa6\xc9\x20\x67\x9a\x4c\ \x33\x38\x5c\x17\x92\x6d\x5f\x75\x70\xcb\xed\x98\x51\x7b\xdd\xd4\ \x2e\x77\x8a\x7f\xc7\x9a\x4b\x9a\x69\x6d\xcb\xc5\x5a\x64\x42\x5c\ \x0c\xde\xff\xc3\x0b\x58\xbe\x78\x3e\x86\xd4\x1a\x3c\xf7\xfa\x87\ \xd8\x9f\x53\x60\xce\x34\x31\xdd\xa4\xc6\x99\x26\xd3\x6e\xaa\xb8\ \x55\xce\x4d\x77\x4b\xde\x43\xec\x07\x11\xb7\xa2\x62\xf3\x77\xb9\ \xe9\xda\x9d\x78\xe1\xd7\x0f\x22\x24\x38\x08\x35\x8d\xed\xd8\xb3\ \xf7\x1d\x74\x74\x0f\x18\x4d\x93\xc6\x5a\x46\xde\xc0\x99\x26\xee\ \xe4\xe3\x20\x4e\x1a\x48\x64\x16\x98\x10\xc4\x29\x17\xc6\x25\xef\ \x99\x4a\x73\xb3\xa5\x9f\x53\xe7\x25\xe2\xf5\xbd\x8f\x63\xcd\x8a\ \x25\x00\x80\x4f\xbf\x39\x82\xd7\xde\xff\x0c\x7a\xbd\x01\x84\x52\ \x0d\xd1\xe2\xd2\x52\xa2\x13\x0d\x18\xb5\x0c\xce\x34\x71\x17\x70\ \x58\x33\x26\xc8\x8c\x4e\xdc\xb9\x64\xe3\xbb\xf2\xf6\xba\x6b\xf2\ \x1e\xf3\xe7\x7b\x7b\x7b\xe1\x57\x77\xde\x8c\x87\xef\xf9\x1f\xf8\ \x78\x7b\xa3\xbb\x4f\x80\x97\xde\xfe\x17\x9b\x79\x1c\x00\xd1\x0c\ \xf4\x50\xa2\xa2\x0a\x10\x4a\xce\x99\x26\x33\x2b\xff\x1f\x97\x61\ \x57\x02\x28\x3c\xf0\xf7\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\xe9\x24\x00\x00\xe9\x24\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x17\x2e\x27\x1b\x30\x2e\x19\x27\x27\x17\x2e\ \x2a\x1d\x39\x37\x1d\x32\x32\x14\x23\x1f\x17\x2d\x27\x11\x1d\x1d\ \x11\x1b\x1b\x0d\x17\x15\x0d\x15\x13\x0e\x18\x0e\x0c\x14\x11\x0c\ \x18\x11\x11\x1d\x18\x11\x1f\x1a\x14\x25\x20\x1f\x36\x3a\x33\x55\ \x53\x36\x60\x6e\x44\x74\x81\x46\x71\x80\x41\x6b\x7f\x41\x69\x7d\ \x41\x6c\x79\x40\x67\x75\x43\x6e\x7d\x42\x6d\x80\x45\x70\x83\x3c\ \x64\x75\x28\x48\x45\x26\x44\x3e\x31\x57\x67\x3c\x65\x76\x24\x46\ \x47\x24\x42\x3e\x24\x40\x3e\x27\x43\x4b\x23\x40\x41\x54\x7c\xaa\ \x25\x61\xaf\x12\x46\x9e\x23\x53\xb2\x61\x80\xd6\x45\x4e\xbc\x38\ \x46\xda\x2f\x35\x93\x42\x41\x79\x3d\x38\x6c\x3e\x3f\x64\x3d\x44\ \x5b\x38\x3e\x6e\x34\x3d\x75\x34\x3b\x4c\x3a\x3f\x4b\x3a\x42\x5d\ \x2e\x3c\x60\x1d\x37\x7e\x11\x35\x9b\x0d\x36\xa7\x06\x31\x9e\x08\ \x32\x9e\x09\x32\x9c\x08\x31\x9a\x0b\x34\x9b\x0d\x35\x98\x0b\x32\ \x92\x0c\x34\x96\x10\x3c\x98\x14\x3c\x84\x11\x43\x9b\x09\x43\xa9\ \x06\x44\xa4\x0c\x45\xa7\x09\x47\xac\x05\x4a\xa8\x06\x71\xc4\x03\ \x79\xc7\x13\x9c\xd9\x12\x57\xa9\x17\x55\xac\x0a\x49\x9d\x18\x6f\ \xce\x16\x72\xd7\x17\x73\xda\x37\xaf\xe2\x52\xa5\xca\x11\x5f\x95\ \x2a\x55\x88\x60\x89\xb8\x5d\x91\xb4\x0a\x6e\xb3\x03\x2b\x5c\x03\ \x10\x26\x03\x05\x06\x07\x0a\x09\x55\x3e\x2a\x6a\x4f\x3f\x34\x34\ \x50\x22\x4d\x87\x75\x7b\x88\x9e\x6f\x46\x2c\x77\xcb\x0a\x6d\xcf\ \x0e\x60\xbd\x0b\x6c\xca\x0b\x49\x9f\x22\x8a\xde\x13\x6b\xc5\x10\ \x6e\xcc\x15\x7d\xde\x0f\x76\xd3\x15\x6a\xbc\x20\x7d\xcb\x29\x74\ \xb3\x21\x69\xa3\x2d\x7e\xbb\x20\x77\xb8\x27\x8d\xce\x2b\x9d\xdd\ \x1a\x7e\xbf\x0f\x50\x80\x64\x56\x3a\x4d\x50\x37\x6f\x79\x4e\x76\ \x7e\x52\x6e\x75\x4f\x70\x77\x5f\x77\x7e\x60\x7d\x86\x68\x6f\x74\ \x63\xb2\xb0\x9f\xc8\xc2\xb3\x69\x9d\xc0\x5a\x6e\x7d\x93\x82\x72\ \x48\x51\x65\x84\x6d\x60\xaa\xb8\xcc\x82\x92\xc8\xbb\xbc\xbf\xbe\ \xaa\x89\xac\x98\x7f\x6f\x50\x40\x68\x4c\x44\x65\x46\x35\x70\x40\ \x26\x77\x41\x25\x67\x3a\x2a\x50\x2f\x29\x78\x4a\x2b\xcb\x93\x42\ \xd1\xa2\x57\xcd\x9e\x5e\x6b\x83\x8a\x26\x59\x82\x27\x5c\x8a\x2a\ \x5d\x7f\x29\x64\x84\x27\x69\x87\x2a\x6e\x8a\x30\x60\x65\x00\x00\ \x00\x13\x25\x20\x14\x1f\x1c\x1a\x23\x23\x1c\x2e\x2c\x1d\x31\x2e\ \x20\x3a\x37\x19\x30\x2c\x12\x23\x1b\x18\x2c\x29\x19\x2a\x2b\x15\ \x26\x22\x11\x1c\x19\x11\x19\x16\x0e\x18\x16\x10\x18\x16\x0f\x1b\ \x15\x11\x1d\x18\x18\x27\x26\x1c\x2e\x2a\x2a\x48\x4f\x35\x58\x55\ \x3a\x5f\x6e\x47\x6f\x8a\x49\x75\x90\x4c\x77\x95\x46\x73\x8d\x41\ \x6f\x8a\x40\x6e\x85\x43\x6f\x83\x43\x73\x85\x3e\x6e\x7b\x29\x4e\ \x55\x24\x47\x52\x39\x64\x71\x48\x74\x88\x2c\x4f\x57\x2d\x4e\x51\ \x24\x45\x45\x2d\x50\x4b\x29\x43\x3f\x4f\x84\xc3\x18\x50\xa2\x2d\ \x4f\xba\x61\x67\xdf\x42\x47\xc7\x30\x3e\xca\x33\x3d\xc4\x3a\x3d\ \x93\x40\x39\x5e\x3f\x3c\x5c\x3d\x3f\x46\x40\x41\x46\x3d\x3f\x54\ \x31\x3a\x73\x2f\x37\x48\x31\x38\x36\x31\x3b\x39\x2e\x3f\x4e\x2d\ \x3d\x5c\x25\x37\x6a\x16\x34\x86\x08\x33\xa1\x05\x30\xa2\x08\x33\ \xa1\x0d\x35\xa1\x0c\x36\x9f\x0c\x35\x9d\x09\x34\x9b\x10\x38\xa0\ \x0e\x3d\xa1\x0d\x42\xa2\x09\x47\xa8\x04\x4a\xae\x04\x4d\xa9\x03\ \x46\xa2\x03\x57\xb8\x04\x62\xb7\x16\x91\xd3\x23\xb1\xe8\x16\x7b\ \xaf\x04\x13\x40\x05\x28\x68\x13\x67\xc5\x14\x6e\xd2\x14\x61\xcb\ \x32\x80\xe0\x24\x88\xce\x74\xc9\xe9\x65\x9a\xbf\x62\x94\xba\xbb\ \xd4\xe0\xb6\xd2\xe1\x47\x8f\xb9\x00\x2b\x52\x03\x13\x2b\x05\x09\ \x12\x05\x0a\x11\x0a\x1b\x3f\x18\x50\xa0\x1b\x5e\xb2\x1e\x5b\xaf\ \x30\x5c\xa2\x98\x7a\x69\x57\x77\xa1\x11\x72\xcd\x0c\x6e\xca\x1b\ \x64\xbc\x1c\x79\xd7\x2a\x8d\xdb\x09\x41\x8a\x10\x5d\xae\x17\x7a\ \xd7\x11\x63\xbc\x13\x56\xa8\x1f\x82\xc9\x34\x90\xd4\x22\x6a\xa9\ \x2e\x8f\xcc\x20\x7a\xc0\x1a\x84\xca\x1e\x8a\xca\x0b\x5e\xa0\x0f\ \x73\xbc\x45\x51\x4e\x77\x74\x4a\x61\x6a\x4f\x7d\x8b\x71\x7b\x88\ \x70\x6a\x76\x59\x7f\x8a\x68\x8f\x9c\x7e\x67\x6c\x5e\xa4\x9e\x85\ \xbe\xbb\xaf\x10\x73\xb7\x14\x28\x3e\xad\x75\x40\x68\x5a\x62\x6b\ \x41\x26\x96\x78\x53\xc8\xb7\xa0\xb8\xaa\x9a\x65\x4a\x44\x70\x66\ \x5c\x7b\x67\x52\x51\x31\x1b\x67\x43\x2b\x77\x44\x27\x7e\x48\x28\ \x6f\x3f\x27\x66\x36\x23\x5f\x34\x1f\x8a\x4c\x1b\xd5\xa7\x5b\xd0\ \xa3\x63\x6f\x81\x87\x3e\x78\xa1\x37\x65\x86\x27\x5e\x8a\x29\x6a\ \x8b\x2a\x70\x8d\x2f\x71\x8a\x36\x4e\x42\x00\x00\x00\x17\x28\x26\ \x1a\x2a\x29\x15\x22\x22\x16\x22\x21\x18\x22\x1f\x18\x28\x24\x17\ \x2b\x28\x15\x26\x22\x1a\x2c\x28\x15\x28\x22\x10\x1e\x17\x10\x19\ \x13\x13\x21\x1f\x15\x27\x22\x12\x1d\x18\x10\x19\x16\x12\x1d\x1b\ \x17\x25\x23\x19\x2c\x28\x1e\x34\x2b\x1c\x32\x31\x3b\x5e\x68\x48\ \x70\x85\x4a\x73\x88\x49\x71\x80\x49\x73\x83\x4a\x75\x89\x45\x70\ \x81\x49\x71\x81\x47\x72\x81\x33\x55\x61\x2d\x51\x64\x35\x60\x73\ \x31\x5c\x62\x38\x62\x68\x32\x56\x5e\x2d\x4f\x53\x2c\x51\x57\x22\ \x3f\x3f\x38\x54\x68\x31\x70\xb6\x18\x48\xa5\x52\x5f\xcf\x45\x46\ \xb9\x3d\x44\xac\x39\x46\xca\x36\x3a\x9b\x44\x41\x90\x41\x3c\x73\ \x3b\x3d\x6b\x39\x40\x6d\x3e\x41\x50\x42\x3e\x54\x32\x39\x9d\x22\ \x3c\x7b\x26\x3d\x47\x29\x3d\x42\x28\x3f\x4c\x2e\x40\x4d\x32\x3b\ \x5c\x24\x38\x5e\x19\x37\x7a\x06\x2f\x9e\x05\x30\xa3\x05\x32\xa6\ \x06\x33\xa1\x08\x34\xa2\x08\x36\xa4\x0b\x3a\xa9\x0a\x39\xa8\x09\ \x3f\xa8\x08\x47\xa9\x03\x4c\xac\x01\x50\xab\x02\x4c\xa5\x06\x5f\ \xb6\x09\x6a\xa7\x44\xa2\xd0\x56\xc7\xef\x12\x43\x65\x04\x1c\x46\ \x13\x59\xb5\x10\x66\xc4\x14\x69\xc3\x12\x78\xcf\x24\x78\xd9\x32\ \x7e\xe3\x59\xa6\xd8\x23\x64\x8e\x51\x9f\xc9\x6c\xa2\xbe\x9b\xba\ \xca\x27\x4b\x68\x09\x2b\x50\x13\x38\x63\x0e\x3d\x68\x08\x1a\x33\ \x0b\x1d\x3a\x16\x36\x69\x18\x50\x9f\x1d\x5c\xb1\x1a\x55\xab\x56\ \x6c\x9a\x87\x69\x53\x72\x79\x7d\x44\x6c\x95\x68\x75\x8c\x51\x6f\ \xa0\x09\x5e\xb7\x0d\x4a\x92\x10\x63\xb3\x17\x84\xd8\x10\x5c\xaf\ \x13\x65\xb3\x2c\x94\xd9\x23\x87\xd4\x22\x85\xd0\x21\x8a\xcf\x14\ \x58\x98\x14\x6d\xb5\x17\x76\xbd\x0d\x54\x95\x47\xa6\xd9\x24\x3f\ \x51\x5c\x53\x2e\x76\x7b\x58\x71\x7f\x69\x8a\x98\x79\x86\x95\x7f\ \x93\xa1\x88\xa0\xae\x7a\x94\x9c\x91\x89\x85\x74\x8e\x82\x6d\x4c\ \x73\x92\x5b\x54\x54\xb9\x7f\x42\x8d\x5d\x3e\x54\x30\x21\x97\x63\ \x35\x94\x6b\x3c\xa5\x87\x66\x6f\x46\x29\x7e\x55\x2f\x73\x42\x1f\ \x5e\x33\x19\x7e\x57\x3b\x71\x42\x24\x79\x47\x28\x73\x40\x22\x7e\ \x40\x1d\x80\x44\x21\xa5\x60\x23\xcd\x91\x3a\xbd\x83\x35\xb8\x86\ \x41\x8c\x80\x60\xa9\x8a\x59\x47\x6d\x85\x21\x60\x80\x2c\x6d\x86\ \x30\x5b\x5c\x31\x5c\x66\x00\x00\x00\x17\x28\x26\x18\x27\x22\x15\ \x2a\x25\x16\x26\x24\x16\x24\x22\x11\x16\x15\x14\x1c\x1a\x17\x26\ \x24\x1d\x2e\x2b\x18\x2c\x2a\x14\x27\x23\x15\x28\x23\x15\x25\x21\ \x14\x26\x20\x11\x1f\x19\x10\x1c\x15\x12\x21\x1c\x2b\x46\x4e\x29\ \x43\x48\x18\x2b\x2c\x17\x2b\x2a\x1e\x39\x3a\x32\x57\x62\x40\x67\ \x76\x3c\x64\x75\x3c\x65\x73\x3a\x64\x6d\x39\x63\x6e\x3a\x65\x71\ \x38\x5e\x69\x31\x56\x6d\x40\x6e\x81\x41\x71\x83\x34\x5a\x61\x34\ \x5c\x67\x34\x5e\x76\x38\x64\x77\x3d\x68\x7d\x2c\x50\x56\x47\x6a\ \x8f\x27\x64\xae\x21\x51\xaa\x52\x5b\xcc\x46\x42\xac\x32\x36\x8c\ \x34\x3d\xb4\x3b\x37\x77\x4c\x42\x6b\x41\x3b\x61\x3b\x3d\x61\x38\ \x40\x6d\x42\x40\x42\x36\x42\x9f\x2e\x3d\xca\x1c\x43\xa8\x19\x47\ \x68\x23\x42\x53\x25\x42\x55\x25\x3c\x56\x21\x39\x55\x20\x39\x46\ \x25\x3f\x46\x1b\x3a\x62\x11\x34\x76\x0d\x37\x8b\x08\x34\xa6\x08\ \x33\xa6\x08\x32\xa5\x0d\x38\xa4\x05\x38\xa7\x0a\x3a\xa3\x08\x43\ \xa8\x05\x45\xab\x02\x4d\xac\x02\x58\xb4\x09\x57\x98\x22\x69\x90\ \x2a\x79\xa7\x29\x7b\xab\x08\x4b\x81\x0a\x30\x69\x14\x71\xcf\x0e\ \x67\xc3\x0e\x6f\xc9\x2d\x94\xdf\x31\x98\xeb\x36\x88\xe9\x5f\xa5\ \xe6\x28\x5b\x89\x1f\x84\xbc\x34\x94\xc5\x40\x9a\xcc\x02\x38\x67\ \x0f\x1e\x34\x17\x6f\xab\x39\x78\xa7\x0d\x33\x5e\x04\x0c\x16\x0b\ \x0a\x0f\x19\x33\x5e\x1d\x5a\xad\x1a\x58\xae\x6e\x65\x6b\xbf\x69\ \x0b\xbb\x69\x11\xb6\x72\x22\xa9\x68\x25\x3c\x3e\x51\x12\x6a\xbe\ \x0c\x51\x9e\x14\x61\xb4\x14\x6e\xc0\x0d\x70\xc5\x14\x7c\xcf\x21\ \x8d\xd9\x15\x70\xbc\x14\x71\xbc\x18\x70\xbd\x12\x60\xab\x25\x7b\ \xbf\x1a\x62\xa0\x25\x43\x63\x58\x6e\x68\x3c\x4e\x4c\x5d\x5c\x42\ \x82\x85\x60\x82\x92\x7c\x87\x97\x7f\x90\xa0\x8b\xb3\xc6\xba\xc0\ \xce\xab\xa9\xba\xac\x69\x6c\x4f\x5d\x4b\x2a\xb3\x98\x6b\xbe\x90\ \x58\xaa\x65\x20\x77\x41\x23\x59\x32\x20\x80\x58\x35\x86\x58\x2a\ \x8b\x53\x25\x9c\x62\x31\x7c\x4b\x28\x69\x3a\x1c\x68\x3d\x1e\x73\ \x46\x27\x72\x3f\x1e\x7f\x4e\x27\x7c\x4e\x34\x98\x56\x23\xac\x68\ \x21\xb8\x71\x1a\xc3\x7e\x25\xa9\x6c\x23\x8f\x5a\x22\xb1\x7a\x33\ \xc5\x8e\x3c\x8c\x7e\x54\x2a\x65\x84\x2e\x57\x5e\x2f\x37\x1c\x30\ \x34\x16\x00\x00\x00\x15\x24\x24\x16\x27\x2a\x17\x25\x22\x12\x1e\ \x18\x15\x28\x23\x12\x1c\x1c\x0d\x13\x11\x1e\x28\x2d\x15\x1f\x1e\ \x18\x29\x26\x1b\x34\x2b\x13\x26\x1e\x10\x1b\x13\x0e\x1d\x1a\x0d\ \x1b\x17\x12\x21\x1c\x12\x23\x1f\x2a\x42\x3d\x24\x3d\x35\x30\x4b\ \x4e\x16\x2c\x25\x25\x42\x49\x37\x60\x6d\x3d\x69\x77\x3e\x6b\x79\ \x3b\x63\x75\x37\x61\x6d\x37\x63\x71\x36\x62\x6d\x2f\x58\x6a\x38\ \x63\x70\x3c\x69\x73\x39\x67\x69\x29\x4e\x4c\x3a\x65\x70\x45\x71\ \x83\x41\x6b\x76\x36\x5c\x5b\x25\x3f\x3b\x51\x7e\xaa\x1e\x57\xa2\ \x20\x4d\xac\x45\x4b\xdd\x33\x31\xa1\x30\x39\xb6\x3a\x41\xb9\x3f\ \x38\x80\x50\x43\x5a\x3c\x3f\x66\x3c\x43\x70\x3c\x40\x50\x44\x43\ \x2f\x27\x48\xab\x1b\x4b\xb7\x0b\x48\x91\x09\x4f\x7e\x15\x48\x6c\ \x19\x44\x70\x14\x39\x81\x1a\x36\x55\x1f\x39\x3b\x28\x3d\x37\x2b\ \x40\x39\x27\x41\x41\x2c\x46\x4b\x1d\x3d\x6f\x1b\x43\xa4\x0d\x36\ \xa9\x0f\x3a\x9d\x08\x43\xaf\x07\x37\xa9\x09\x39\xa4\x07\x45\xa9\ \x04\x4a\x9b\x0e\x59\x8e\x27\x4d\x5d\x34\x5e\x70\x18\x4d\x79\x09\ \x3e\x77\x0b\x72\xb8\x11\x6c\xb7\x0f\x72\xcb\x12\x71\xcc\x13\x7a\ \xcf\x1c\x6f\xbb\x1c\x71\xce\x16\x63\xc3\x28\x7c\xd3\x13\x3c\x84\ \x09\x6d\xad\x5a\xb8\xe6\x49\x9e\xd1\x00\x55\x94\x06\x42\x7e\x19\ \x8f\xd3\x45\x7d\xa2\x05\x1c\x37\x03\x08\x13\x08\x05\x04\x18\x11\ \x10\x34\x41\x5a\x27\x57\x9c\x9c\x6c\x3e\xc2\x71\x11\xb8\x62\x06\ \xbd\x6a\x10\x91\x59\x30\x23\x1f\x29\x37\x79\xb7\x13\x6f\xbf\x1b\ \x6c\xb6\x0d\x39\x7b\x08\x64\xb6\x1f\x95\xe4\x1d\x87\xd4\x0f\x60\ \xa7\x13\x68\xb2\x0c\x70\xc0\x10\x7b\xcd\x08\x51\x9d\x15\x59\xa1\ \x25\x5b\x9c\x33\x52\x76\x4f\x56\x47\x6c\x71\x54\x80\x86\x61\x93\ \xa3\x88\x94\xa7\x92\xa5\xb9\xa7\x8b\x9a\x8f\x8c\x95\x6c\xb9\xc3\ \xa9\x49\x40\x2f\x24\x10\x03\xa7\x75\x2b\x97\x52\x14\x90\x4b\x16\ \x6f\x43\x27\x57\x33\x21\x7c\x50\x28\x91\x65\x3f\xaf\x71\x36\x93\ \x58\x1e\x6b\x4c\x2e\x6b\x3c\x1d\x6b\x3b\x1e\x79\x40\x1b\x88\x54\ \x24\x79\x47\x21\x7b\x49\x2b\x9d\x60\x23\xb7\x7a\x23\xbf\x7f\x20\ \xb3\x7b\x2e\xa8\x71\x2b\x91\x5b\x24\x83\x53\x24\x91\x5d\x24\xa2\ \x7d\x40\x4a\x72\x72\x2f\x3b\x27\x2e\x31\x13\x3e\x45\x1c\x00\x00\ \x00\x14\x24\x20\x27\x40\x39\x18\x2b\x25\x12\x25\x1e\x16\x2a\x26\ \x13\x26\x23\x0b\x14\x14\x1b\x25\x22\x11\x17\x12\x0e\x12\x11\x15\ \x25\x1f\x19\x2c\x28\x14\x23\x1e\x14\x27\x23\x14\x27\x21\x12\x20\ \x1c\x11\x1d\x18\x19\x2a\x2d\x1f\x37\x41\x24\x3c\x46\x20\x3e\x4d\ \x19\x30\x2c\x2e\x53\x5a\x3f\x6c\x77\x3e\x6d\x78\x3c\x6a\x71\x38\ \x65\x6c\x37\x63\x6e\x39\x65\x77\x3a\x68\x7a\x3a\x6b\x78\x3b\x69\ \x76\x33\x5b\x5c\x25\x4a\x53\x2f\x5c\x6c\x3f\x6f\x82\x33\x5c\x69\ \x26\x4a\x4c\x33\x56\x6b\x38\x6e\xa7\x1c\x4f\x9d\x21\x4a\xa6\x3c\ \x42\xcd\x2f\x2f\x9f\x31\x3d\xc3\x3d\x45\xd3\x53\x4e\xdd\x41\x3d\ \xa0\x3c\x41\x7a\x3d\x43\x64\x46\x47\x68\x46\x41\x70\x20\x41\xaf\ \x10\x52\xa7\x09\x4f\x85\x0c\x50\x7b\x11\x4f\x7a\x13\x45\x8e\x11\ \x41\x80\x1d\x3d\x49\x22\x38\x33\x25\x3d\x34\x27\x3f\x37\x29\x40\ \x3a\x30\x46\x3f\x30\x4a\x4a\x25\x45\x5a\x16\x39\x7f\x1f\x3e\x57\ \x21\x43\x6a\x1e\x44\x75\x10\x35\x8c\x0b\x3f\xa8\x13\x47\x79\x2f\ \x57\x61\x3d\x54\x56\x4a\x42\x31\x2e\x56\x72\x09\x6c\xb5\x13\x86\ \xce\x0d\x6f\xbd\x0b\x7a\xce\x11\x7a\xd2\x22\x86\xd5\x18\x6c\xc3\ \x22\x80\xd6\x0d\x3e\x8a\x0b\x38\x8c\x29\x77\xea\x19\x8c\xd8\x7b\ \xbe\xe4\x4d\x86\xbe\x04\x45\x89\x03\x6e\xb6\x00\x5c\x9b\x02\x25\ \x44\x01\x11\x2d\x02\x07\x13\x09\x06\x05\x0c\x07\x06\x31\x22\x16\ \x67\x45\x27\xbf\x77\x1f\xc3\x7a\x20\xb3\x64\x10\xaa\x5e\x18\x57\ \x4b\x4d\x28\x2e\x43\x22\x3e\x79\x16\x4d\x8d\x10\x35\x59\x10\x3a\ \x74\x0e\x66\xb2\x0f\x73\xbd\x14\x75\xbb\x0b\x53\x97\x13\x72\xbf\ \x0e\x78\xcb\x0b\x56\x9e\x23\x6b\xbb\x13\x4d\x9d\x23\x5d\xab\x23\ \x5d\xa1\x47\x6e\x8c\x70\x78\x63\x7a\x84\x6a\x87\x96\x7b\x91\x9f\ \x84\x81\x8a\x67\x7e\x70\x4b\xa6\x9a\x83\xc4\xb2\x8e\x8d\x67\x40\ \x66\x2f\x0d\x89\x4a\x0c\x9d\x54\x14\x7d\x3b\x12\xa3\x69\x2c\x9a\ \x68\x3b\x9b\x67\x36\x98\x6d\x39\x9b\x5e\x1f\x5c\x35\x1c\x5c\x39\ \x22\x7c\x4d\x27\x7d\x49\x22\x91\x58\x23\x93\x63\x38\x78\x42\x1e\ \x6c\x35\x16\x9e\x6b\x40\x81\x4c\x1d\xac\x72\x25\x94\x68\x2f\x86\ \x54\x20\x85\x50\x1b\x85\x54\x2a\x80\x55\x26\xa5\x80\x3e\x6c\x7b\ \x5c\x33\x3b\x20\x42\x44\x19\x47\x4c\x18\x00\x00\x00\x14\x29\x28\ \x24\x3a\x3d\x1a\x27\x23\x10\x18\x16\x13\x22\x1b\x15\x27\x20\x17\ \x2b\x27\x13\x21\x1d\x0c\x15\x12\x0c\x11\x10\x10\x19\x14\x18\x2f\ \x27\x1c\x35\x33\x1b\x33\x32\x15\x27\x24\x13\x1f\x1b\x11\x20\x1c\ \x21\x34\x2e\x27\x3f\x3d\x35\x52\x55\x43\x6b\x77\x31\x59\x74\x26\ \x45\x4f\x38\x61\x6c\x3d\x69\x7c\x38\x66\x76\x3b\x67\x75\x3a\x67\ \x76\x38\x65\x6e\x36\x66\x6a\x39\x68\x70\x33\x60\x66\x26\x4f\x5b\ \x3b\x67\x7f\x45\x76\x88\x49\x7a\x8e\x3a\x65\x71\x38\x66\x85\x52\ \x7a\x98\x33\x6c\xad\x13\x48\x99\x1e\x4b\x9d\x2a\x39\xa7\x3c\x3c\ \xb4\x38\x42\xcc\x33\x3a\xd1\x4e\x46\xe3\x3c\x38\xd3\x3f\x3d\xd0\ \x36\x35\xd7\x37\x36\xd4\x2f\x32\xc9\x2a\x46\xb9\x0f\x4e\xa2\x0f\ \x4c\x79\x10\x50\x7a\x12\x4f\x82\x0e\x48\x90\x16\x48\x70\x21\x43\ \x3e\x24\x3e\x3b\x25\x3b\x37\x24\x3d\x38\x25\x42\x41\x29\x41\x3e\ \x27\x41\x43\x2a\x48\x4b\x27\x48\x4f\x28\x44\x4c\x2a\x44\x48\x2d\ \x48\x51\x26\x43\x5a\x19\x42\x7c\x22\x44\x62\x36\x59\x64\x3c\x67\ \x72\x42\x4e\x53\x3e\x4d\x5a\x1f\x7e\xb7\x11\x6c\xab\x15\x74\xb4\ \x0b\x65\xa5\x0b\x6e\xb4\x12\x6d\xb1\x09\x63\xb3\x07\x5c\xb9\x1a\ \x78\xdc\x36\x82\xe3\x1a\x6f\xd5\x1e\x76\xc2\x4c\x96\xcc\x4d\xa9\ \xd6\x0b\x5b\x91\x00\x20\x43\x11\x48\x77\x24\x64\x99\x1c\x4c\x85\ \x03\x05\x0c\x07\x05\x03\x18\x10\x0b\x46\x2d\x14\x57\x3a\x19\x82\ \x54\x23\xba\x78\x27\xaa\x6d\x2e\x5f\x3d\x2a\x2e\x2a\x33\x34\x3d\ \x58\x4b\x6d\x9e\x1c\x41\x85\x18\x2b\x50\x15\x31\x67\x13\x4b\x91\ \x1d\x6e\xb9\x1f\x86\xc5\x17\x6b\xab\x27\x79\xba\x1d\x64\xa7\x1d\ \x5b\xa5\x24\x61\xab\x23\x5e\xae\x21\x5d\xaf\x33\x72\xb4\x54\x7e\ \x92\x81\x92\x84\x7d\x8b\x81\x7d\x8a\x81\x82\x8b\x6c\x8f\x76\x42\ \x7e\x66\x48\xc8\xc9\xbe\xaf\x7a\x3a\xac\x6b\x22\xbf\x72\x10\xc1\ \x74\x14\xba\x6e\x12\xb3\x68\x1d\x8e\x4b\x1a\x92\x58\x27\x7b\x45\ \x16\x87\x4a\x1d\x81\x4e\x23\x68\x47\x2c\x69\x42\x25\x7a\x48\x20\ \x93\x5a\x23\x9e\x65\x25\x88\x57\x23\x7c\x48\x1f\x75\x4c\x2d\x81\ \x64\x4d\x7a\x54\x2e\x78\x4d\x28\x6f\x45\x26\x88\x60\x32\x8f\x66\ \x36\x80\x58\x28\x8e\x6c\x36\x90\x69\x37\x60\x64\x5b\x31\x39\x24\ \x3c\x3c\x14\x48\x4a\x1b\x00\x00\x00\x18\x2a\x27\x18\x26\x1e\x11\ \x18\x13\x13\x1b\x18\x10\x1c\x1b\x11\x1b\x15\x0e\x19\x14\x0e\x1e\ \x18\x0d\x16\x15\x0e\x1a\x17\x1a\x2a\x2b\x17\x27\x22\x15\x29\x21\ \x16\x2b\x25\x14\x22\x20\x0f\x1b\x16\x10\x1c\x18\x15\x26\x24\x1e\ \x35\x36\x30\x4e\x60\x32\x53\x61\x41\x6b\x7b\x40\x6c\x83\x39\x64\ \x78\x3e\x6a\x7c\x3e\x6b\x7e\x3e\x6a\x7b\x3b\x67\x75\x38\x67\x72\ \x37\x68\x72\x38\x67\x76\x34\x5f\x70\x36\x64\x73\x37\x64\x6c\x39\ \x66\x6d\x3f\x66\x73\x40\x6e\x88\x46\x77\x8c\x51\x7b\x9d\x2c\x66\ \xaa\x13\x46\x96\x19\x4a\x9a\x29\x46\xa8\x37\x44\xbb\x39\x40\xd1\ \x32\x39\xcf\x50\x47\xe3\x32\x2d\xc0\x35\x31\xd5\x24\x26\xcf\x2e\ \x2d\xd0\x38\x38\xd2\x1e\x3e\xac\x11\x4e\xa6\x0f\x51\x95\x0f\x50\ \x7f\x15\x4c\x77\x14\x4b\x74\x1e\x44\x58\x23\x46\x43\x26\x44\x3c\ \x27\x3c\x35\x25\x3f\x3d\x2a\x41\x3b\x2d\x44\x42\x28\x43\x44\x27\ \x42\x43\x24\x44\x4d\x25\x47\x51\x26\x46\x53\x25\x4a\x63\x22\x4a\ \x68\x21\x45\x66\x21\x48\x71\x27\x4f\x7e\x27\x56\x94\x22\x50\x93\ \x27\x43\x72\x20\x56\x8b\x12\x64\xa8\x12\x70\xb1\x09\x67\xaa\x10\ \x6d\xaa\x11\x6e\xa6\x0c\x69\xb7\x09\x68\xbd\x07\x79\xcf\x14\x84\ \xdc\x12\x7f\xc1\x0c\x63\x9c\x23\x68\x9f\x18\x51\x74\x04\x1c\x2b\ \x04\x27\x4b\x1c\x88\xc2\x12\x64\x9d\x11\x2c\x4e\x04\x05\x03\x09\ \x07\x05\x0b\x07\x04\x46\x2c\x17\x55\x35\x15\x82\x5a\x2e\xa8\x72\ \x34\x5e\x4b\x3d\x27\x1e\x22\x2a\x20\x25\x4a\x5b\x75\x41\x69\xa2\ \x34\x4c\x78\x19\x33\x61\x13\x3b\x7e\x11\x3e\x8a\x19\x47\x92\x14\ \x3f\x73\x10\x38\x7e\x14\x4a\x95\x19\x49\x8b\x16\x4b\x92\x1a\x53\ \x9e\x2c\x65\xae\x25\x61\xaf\x3d\x78\xbc\x76\x91\x8c\x74\x89\x73\ \x72\x81\x77\x84\x73\x53\x86\x62\x39\x9f\x9c\x8b\x7d\x6e\x5c\xba\ \xa6\x82\xba\x92\x5b\xc0\x8f\x46\xc0\x87\x34\xbf\x82\x29\xc6\x87\ \x29\xbf\x81\x2b\x90\x60\x2a\x6f\x3f\x14\x7f\x4d\x24\x8c\x60\x33\ \x8e\x69\x3a\x86\x5f\x39\x7c\x4f\x27\x83\x5b\x29\x97\x62\x29\xa1\ \x63\x22\x8b\x59\x24\x77\x4b\x28\x6d\x50\x38\x6a\x48\x25\x71\x4d\ \x2b\x6a\x4f\x2e\x7b\x59\x32\x87\x5d\x2e\x90\x6a\x39\x8b\x64\x34\ \x98\x68\x2c\x92\x66\x2d\x48\x40\x28\x39\x3b\x19\x3d\x3e\x15\x4d\ \x4d\x16\x00\x00\x00\x17\x28\x23\x11\x1e\x18\x0d\x11\x0f\x0e\x16\ \x13\x15\x1e\x1e\x13\x1d\x19\x12\x1a\x16\x12\x1f\x1b\x12\x21\x1c\ \x14\x20\x1d\x21\x31\x30\x1c\x2a\x27\x12\x1e\x1a\x17\x28\x20\x25\ \x3d\x41\x25\x3b\x41\x15\x24\x28\x16\x28\x25\x18\x2c\x26\x2d\x4c\ \x55\x45\x71\x89\x48\x7b\x93\x44\x75\x8e\x41\x6f\x84\x3d\x6b\x7c\ \x42\x6e\x80\x3e\x6d\x80\x3e\x6d\x80\x3b\x6a\x7a\x3b\x6a\x76\x3c\ \x6a\x7a\x3b\x69\x7a\x3b\x6b\x79\x39\x6a\x71\x38\x68\x6f\x37\x68\ \x6c\x3e\x6e\x73\x3f\x6f\x76\x46\x73\x98\x28\x61\xa9\x12\x49\x9c\ \x18\x48\x99\x23\x49\xa0\x32\x45\xb6\x3c\x43\xd7\x2f\x35\xcb\x4e\ \x45\xdf\x36\x30\xc2\x38\x34\xd4\x28\x2f\xce\x2c\x2e\xd1\x47\x3f\ \xdc\x22\x3a\xb1\x14\x50\xad\x0e\x52\xab\x0e\x51\x8f\x16\x4a\x6f\ \x17\x48\x5f\x1c\x41\x47\x21\x43\x40\x27\x41\x3a\x24\x3a\x32\x24\ \x3c\x39\x28\x3c\x36\x2e\x44\x40\x35\x4d\x4b\x29\x47\x4d\x20\x46\ \x68\x21\x4a\x77\x27\x50\x6d\x1e\x47\x6d\x22\x49\x7a\x1b\x46\x86\ \x1a\x47\x9e\x14\x46\xb2\x12\x3d\xb0\x16\x3e\xa0\x1a\x41\x93\x2a\ \x53\x97\x18\x5a\x9f\x18\x59\x9a\x17\x69\xa4\x16\x4c\x6a\x17\x34\ \x37\x12\x37\x46\x11\x40\x5b\x0c\x56\x77\x09\x59\x80\x0f\x3c\x55\ \x15\x27\x30\x2e\x3f\x3a\x26\x1e\x11\x18\x2f\x3f\x0a\x8a\xd5\x05\ \x6f\xad\x09\x3a\x6f\x03\x0c\x19\x06\x06\x05\x0b\x08\x06\x0c\x08\ \x05\x3b\x29\x14\x61\x48\x36\xad\x80\x4e\xa5\x6c\x33\x46\x2c\x1f\ \x28\x22\x29\x33\x2d\x34\x58\x6b\x7b\x56\x7f\xa9\x0e\x26\x51\x0c\ \x24\x59\x14\x3d\x83\x13\x3f\x8a\x13\x3b\x81\x0e\x2b\x60\x0e\x36\ \x7c\x11\x43\x95\x14\x38\x7d\x13\x39\x75\x1a\x54\x9e\x1c\x58\xa8\ \x25\x61\xae\x4b\x82\xbf\x62\x9a\xce\x38\x49\x48\x3d\x47\x49\x8c\ \x51\x1c\x83\x49\x2c\xa5\xa5\xaf\xb9\xbb\xad\xb8\xa4\x7c\xb9\x9e\ \x64\xc5\xaf\x82\xa6\x96\x73\x98\x7c\x50\x95\x7f\x4c\x90\x70\x3a\ \x70\x52\x2e\x6d\x4a\x26\x9f\x7b\x4a\xb4\x8e\x55\xa0\x79\x46\x8a\ \x68\x45\x70\x51\x2b\x88\x65\x32\x9a\x6a\x35\xa3\x6e\x31\x95\x69\ \x3c\x71\x54\x3b\x53\x3f\x2c\x7b\x66\x4e\x7a\x66\x47\x7e\x65\x3e\ \x90\x6c\x3c\x9d\x7b\x4b\x8f\x6f\x3b\x81\x63\x36\xa0\x72\x35\xa3\ \x71\x29\x5c\x4a\x1e\x3e\x3f\x19\x48\x4b\x1b\x4d\x4f\x16\x00\x00\ \x00\x16\x28\x24\x10\x1e\x1b\x0d\x14\x11\x0d\x16\x11\x15\x1d\x1d\ \x13\x1b\x18\x10\x17\x16\x11\x1f\x1a\x17\x28\x26\x12\x1e\x1a\x10\ \x18\x14\x14\x1f\x19\x10\x1c\x17\x15\x27\x22\x1f\x35\x34\x27\x3f\ \x3f\x20\x35\x32\x1c\x36\x43\x23\x44\x66\x22\x3b\x45\x38\x5b\x6e\ \x48\x76\x8a\x54\x7b\x8d\x65\x80\x8e\x4b\x6b\x7f\x37\x60\x71\x43\ \x74\x8b\x44\x75\x8a\x41\x71\x82\x41\x70\x7e\x3f\x6f\x83\x40\x71\ \x80\x3e\x6e\x7f\x3c\x6d\x7e\x3b\x6d\x7c\x36\x6b\x70\x37\x6c\x6b\ \x35\x65\x65\x3f\x71\x9d\x1d\x56\xa6\x15\x4c\x9f\x12\x44\x9b\x1e\ \x4a\x9e\x31\x45\xb3\x3d\x42\xd6\x29\x31\xc7\x4e\x47\xe2\x32\x2d\ \xb9\x3b\x38\xd9\x2c\x37\xce\x26\x2b\xd1\x48\x3f\xe3\x27\x37\xb0\ \x16\x4d\xb1\x12\x53\x9d\x16\x4e\x72\x1a\x4a\x5b\x1a\x42\x48\x24\ \x46\x47\x24\x43\x3c\x2c\x42\x39\x25\x34\x2d\x2e\x4b\x5c\x57\x77\ \x86\x48\x63\x69\x53\x78\x85\x36\x68\x97\x15\x50\xa2\x14\x4a\xa5\ \x2f\x64\xa7\x47\x7a\xb5\x24\x54\xae\x1d\x50\xae\x16\x49\xb6\x0f\ \x3a\xa8\x13\x38\xa1\x14\x3a\x99\x19\x45\x9f\x1f\x4f\x9b\x26\x4c\ \x8f\x28\x49\x8c\x23\x43\x69\x1b\x27\x1f\x1c\x20\x14\x18\x1c\x0f\ \x18\x1b\x0f\x1c\x24\x1b\x18\x21\x1a\x1d\x22\x1d\x36\x2e\x1a\x40\ \x34\x1b\x3d\x36\x21\x2b\x62\x7e\x0a\x83\xc8\x08\x4c\x88\x05\x20\ \x42\x04\x0f\x1b\x08\x05\x05\x0c\x08\x07\x15\x0c\x06\x40\x42\x52\ \xa0\x77\x4e\xc3\x87\x34\xb5\x75\x35\x70\x39\x11\x36\x29\x26\x33\ \x27\x28\x39\x41\x4b\x21\x40\x70\x0f\x2a\x63\x12\x33\x6f\x15\x3d\ \x82\x13\x39\x7d\x14\x37\x76\x13\x34\x6f\x0e\x35\x79\x15\x3a\x78\ \x23\x55\x9b\x10\x4c\x91\x1b\x4b\x7b\x11\x3b\x64\x1b\x45\x64\x28\ \x51\x6e\x2b\x56\x77\x1a\x38\x58\x23\x43\x6f\x67\x60\x63\x95\x61\ \x39\xb6\xaf\xa8\xc0\xc4\xb9\xaf\x99\x69\xbf\x9b\x5c\xc8\xaf\x7d\ \x8d\x7f\x61\x68\x6b\x55\x63\x66\x53\x64\x55\x36\x67\x51\x34\x88\ \x68\x3b\xa9\x90\x59\xa1\x8d\x5e\x97\x7b\x49\x88\x65\x35\x87\x6a\ \x3b\x8e\x6b\x3a\x93\x6a\x31\x8a\x66\x34\x83\x68\x42\x7f\x61\x3d\ \x5e\x44\x29\x4c\x3e\x34\x66\x5a\x48\x9d\x8b\x6a\x92\x76\x43\x8f\ \x74\x45\x86\x6a\x3c\x88\x70\x48\xbd\x89\x3f\xc2\x86\x2e\x6f\x56\ \x1a\x42\x3f\x18\x44\x44\x1a\x55\x58\x19\x00\x00\x00\x14\x22\x1e\ \x15\x25\x1e\x17\x24\x21\x15\x22\x21\x16\x1d\x19\x15\x1a\x19\x14\ \x1b\x1c\x11\x1e\x1c\x1b\x30\x2e\x14\x24\x20\x0e\x17\x13\x0f\x1b\ \x17\x12\x24\x1f\x18\x2d\x2c\x24\x3d\x40\x1c\x33\x2e\x17\x29\x28\ \x34\x5b\x7b\x4c\x76\x87\x2e\x53\x71\x42\x72\x93\x44\x72\x8e\x42\ \x70\x88\x4d\x6f\x7f\x74\x84\x85\x3b\x65\x7d\x3e\x6d\x81\x40\x6f\ \x83\x3c\x66\x79\x38\x5f\x76\x3a\x5f\x73\x37\x5d\x6e\x3b\x68\x77\ \x40\x73\x87\x42\x74\x8b\x44\x76\x8d\x3d\x70\x86\x39\x65\x74\x38\ \x6a\x95\x19\x52\xa8\x0f\x44\x9d\x11\x45\x9b\x18\x45\x9e\x2a\x43\ \xb5\x38\x3c\xcd\x2d\x30\xc5\x47\x40\xda\x29\x27\xa8\x3c\x3b\xd9\ \x34\x3e\xc6\x27\x2d\xca\x37\x39\xdb\x1d\x2a\xa4\x12\x53\xba\x0d\ \x51\x8f\x18\x45\x48\x29\x4a\x39\x22\x48\x3e\x23\x44\x3e\x24\x39\ \x35\x2a\x3a\x39\x53\x6e\x7c\x8c\xb9\xd1\x87\xb7\xd3\x83\xaa\xc4\ \x4f\x79\xac\x15\x50\xa8\x18\x55\xb0\x17\x54\xae\x30\x68\xbc\x6e\ \x96\xc4\x3b\x6e\xba\x27\x61\xc1\x11\x49\xb4\x10\x4b\xbb\x18\x49\ \xa5\x1e\x4b\x9a\x1a\x4b\x93\x1e\x4e\x96\x25\x48\x7b\x2b\x49\x88\ \x26\x39\x5f\x19\x1f\x1c\x1f\x21\x19\x1d\x23\x16\x1e\x21\x19\x2c\ \x27\x15\x2d\x2d\x1c\x2e\x2f\x1e\x3c\x33\x1e\x42\x37\x1e\x42\x37\ \x1e\x30\x4e\x58\x12\x5e\x9b\x0a\x24\x46\x04\x15\x2c\x09\x0b\x0e\ \x0c\x08\x06\x10\x0a\x09\x1f\x2a\x47\x53\x73\xa9\xc8\xb4\x9c\x8b\ \x6c\x42\xa5\x62\x1d\x6a\x3e\x18\x41\x29\x21\x3a\x27\x1f\x2d\x36\ \x4d\x0f\x30\x6c\x14\x3e\x8a\x0f\x34\x77\x14\x3d\x80\x13\x3a\x81\ \x0d\x3c\x7c\x17\x47\x7c\x17\x3c\x68\x18\x3d\x69\x10\x29\x45\x13\ \x38\x5a\x1c\x3a\x3e\x19\x39\x41\x1b\x3b\x42\x1b\x37\x38\x1d\x39\ \x38\x17\x3d\x59\x2f\x61\x91\x50\x61\x7a\x9b\x67\x35\xb7\x95\x71\ \xb9\xb3\xaa\xbb\x96\x5a\xc1\x9f\x66\xc5\xa8\x6f\x8f\x7b\x57\x6e\ \x68\x50\x47\x38\x24\x75\x66\x4c\x79\x5f\x38\x85\x6d\x44\x92\x84\ \x5d\x9b\x88\x5d\x87\x6d\x3d\x85\x6a\x3e\x7b\x61\x3a\x7c\x60\x37\ \x7a\x60\x37\x6f\x5e\x3e\x70\x60\x3e\x76\x60\x3a\x74\x62\x44\x7b\ \x66\x42\xa0\x86\x5a\x92\x7d\x54\x85\x72\x4b\x83\x69\x3e\x9d\x7b\ \x4b\xbf\x8e\x4c\xc3\x8e\x48\xbf\x8a\x3e\x95\x7b\x53\x52\x4e\x3e\ \x2c\x30\x1e\x3d\x40\x1d\x00\x00\x00\x15\x22\x1e\x13\x22\x1c\x15\ \x2a\x23\x1a\x29\x26\x0b\x14\x0e\x11\x1d\x16\x15\x20\x1b\x11\x1a\ \x18\x1c\x30\x2b\x16\x26\x20\x10\x1a\x16\x11\x1c\x19\x16\x28\x23\ \x19\x30\x2b\x1f\x38\x30\x14\x28\x22\x19\x2d\x2e\x3d\x5f\x5f\x3e\ \x67\x84\x4c\x7b\x93\x46\x77\x97\x4b\x7c\x9f\x48\x78\x99\x43\x73\ \x93\x3c\x6e\x8a\x3f\x6f\x85\x3f\x6b\x7f\x3e\x6a\x7d\x3d\x6a\x81\ \x3f\x6e\x87\x44\x6d\x84\x4b\x74\x88\x43\x6c\x87\x43\x74\x82\x38\ \x63\x67\x3e\x6b\x72\x45\x78\x89\x41\x6c\x7d\x2e\x5e\x95\x14\x4f\ \xa7\x11\x46\x9e\x0c\x3c\x91\x15\x47\x9e\x23\x45\xad\x38\x43\xcc\ \x38\x3b\xc5\x47\x42\xd3\x36\x33\xbe\x43\x40\xd9\x36\x3d\xca\x2f\ \x37\xce\x2a\x32\xcf\x1c\x29\xa5\x12\x4e\xac\x09\x43\x99\x0c\x41\ \x6a\x12\x47\x64\x38\x5e\x68\x50\x74\x8e\x48\x67\x93\x6b\x90\xb6\ \x72\x9f\xca\x6b\x96\xc8\x53\x7b\xbf\x3e\x71\xba\x13\x4c\xa2\x15\ \x4a\xa7\x18\x50\xaf\x15\x4d\xb5\x15\x50\xb9\x2f\x63\xb8\x20\x56\ \xaf\x14\x4f\xb5\x0f\x49\xb5\x0e\x4b\xb7\x15\x4d\xa7\x2a\x64\xa2\ \x36\x6a\x93\x1a\x40\x6f\x24\x47\x71\x28\x49\x78\x2b\x48\x82\x2b\ \x43\x70\x28\x3e\x5e\x36\x4a\x6c\x26\x2c\x21\x45\x34\x1c\x40\x35\ \x1c\x40\x39\x22\x40\x39\x20\x41\x35\x1a\x42\x36\x1c\x42\x36\x1c\ \x30\x31\x2e\x26\x2a\x2a\x3a\x34\x27\x29\x23\x16\x1d\x16\x10\x31\ \x1e\x11\x3f\x33\x30\x53\x71\xa2\x66\x56\x4f\x24\x32\x50\x6e\x40\ \x1f\x44\x2f\x20\x35\x2d\x29\x2e\x25\x28\x1c\x2f\x54\x18\x4a\x96\ \x13\x41\x8d\x0c\x30\x71\x12\x37\x7a\x10\x36\x7c\x13\x38\x6b\x1a\ \x3f\x66\x1b\x39\x50\x1b\x3c\x4e\x1b\x3a\x40\x1c\x3b\x48\x1a\x37\ \x36\x1a\x34\x2c\x19\x36\x37\x1b\x3b\x3b\x1b\x33\x2d\x1c\x37\x38\ \x14\x3a\x58\x4e\x57\x66\x93\x65\x47\xa6\x8b\x71\xba\xc0\xc3\xae\ \x92\x67\xbb\x9e\x6d\xc4\xa9\x74\x94\x7e\x54\x68\x5f\x46\x56\x44\ \x30\x68\x58\x3b\x79\x67\x4a\x7b\x70\x50\x83\x70\x48\x80\x65\x3a\ \x85\x6d\x3f\x81\x65\x39\x6a\x57\x38\x69\x59\x43\x61\x55\x3e\x79\ \x70\x59\x77\x73\x5e\x88\x7b\x5b\x92\x7b\x5b\x8a\x76\x54\x81\x6e\ \x4d\x80\x6f\x48\x76\x70\x58\xa4\x8c\x5e\xc7\x92\x47\xc4\x8c\x44\ \xbe\x87\x46\xbb\x7e\x37\x9d\x7b\x52\x5c\x7e\x86\x37\x51\x56\x25\ \x2a\x1d\x00\x00\x00\x18\x28\x26\x17\x29\x28\x16\x28\x23\x17\x29\ \x23\x11\x22\x1f\x12\x22\x1c\x0f\x1a\x12\x11\x1f\x18\x15\x25\x21\ \x19\x2d\x29\x16\x26\x21\x1a\x2c\x2a\x15\x27\x1e\x1b\x32\x2f\x1b\ \x34\x2e\x1c\x34\x31\x1b\x34\x34\x24\x42\x47\x3e\x64\x69\x42\x75\ \x9f\x55\x84\x9e\x55\x89\xa8\x57\x8a\xad\x52\x84\xa6\x50\x81\xa5\ \x4a\x79\x99\x46\x79\x99\x45\x75\x92\x41\x72\x8e\x42\x72\x88\x44\ \x74\x8c\x45\x76\x8e\x47\x78\x8c\x41\x6f\x86\x2b\x52\x60\x2b\x4b\ \x46\x36\x5a\x59\x39\x5d\x62\x28\x59\x93\x11\x49\xa2\x11\x45\x96\ \x1d\x47\x8e\x2e\x4a\x7b\x3d\x4a\x84\x42\x4a\x94\x3d\x44\x9d\x39\ \x44\x9c\x3b\x43\xb7\x36\x3f\xc7\x33\x39\xcc\x3a\x41\xd2\x37\x3d\ \xd5\x24\x2d\xba\x14\x47\xa3\x06\x49\xb0\x05\x46\xa1\x0d\x46\x74\ \x5f\x87\x9b\x55\x78\xc3\x4d\x72\xc1\x4b\x73\xbf\x48\x6e\xc4\x47\ \x6c\xc5\x43\x6c\xbe\x25\x56\xa6\x0f\x43\x9e\x11\x47\xa4\x15\x44\ \xa9\x27\x60\xbf\x1d\x5a\xbd\x1a\x4d\xab\x0e\x4b\xb7\x10\x4c\xb7\ \x0d\x48\xb3\x19\x53\xb6\x23\x63\xb9\x3e\x83\xc3\x36\x62\x7d\x12\ \x23\x34\x20\x47\x71\x26\x45\x68\x27\x46\x73\x2c\x47\x67\x37\x4c\ \x51\x2b\x3b\x37\x2d\x3b\x2a\x37\x45\x3d\x35\x36\x2b\x35\x32\x1e\ \x42\x3d\x28\x40\x3a\x24\x41\x36\x1c\x41\x39\x20\x46\x3a\x20\x52\ \x3d\x22\x46\x3c\x23\x45\x3c\x22\x49\x38\x1f\x4c\x37\x22\x40\x3d\ \x4a\x26\x41\x7d\x19\x40\x81\x2a\x5a\x9e\x28\x4b\x7e\x1c\x21\x33\ \x25\x32\x42\x23\x39\x58\x14\x39\x7a\x17\x3c\x80\x15\x38\x7d\x0e\ \x30\x71\x12\x39\x7e\x13\x35\x6b\x17\x34\x4e\x15\x33\x44\x23\x40\ \x4a\x28\x43\x49\x16\x36\x41\x1a\x37\x3a\x19\x37\x39\x1b\x35\x2e\ \x19\x32\x2f\x1d\x3b\x36\x19\x33\x31\x1a\x35\x2b\x1b\x38\x42\x29\ \x41\x5e\x7f\x5c\x45\xc1\x86\x3c\xba\xb2\xa2\xa9\x9b\x84\xb5\x9a\ \x71\xb8\xac\x8f\x8e\x83\x6d\x57\x5e\x65\x53\x4f\x4b\x6a\x5c\x42\ \x6c\x5c\x3f\x68\x5b\x46\x72\x5e\x49\x81\x67\x45\x65\x55\x53\x58\ \x4c\x54\x63\x58\x56\x4d\x49\x75\x46\x4d\x8b\x83\x82\x90\x66\x6c\ \xa1\x66\x61\x6e\x75\x71\x99\x5e\x5b\x9b\x42\x41\x70\x8e\x8c\x7b\ \x9a\x94\x76\xa0\x8c\x68\xbf\x8e\x4e\xc5\x92\x4d\xb7\x87\x47\xcd\ \x97\x4c\xc1\x89\x3f\xb7\x93\x5c\x51\x6c\x79\x21\x3b\x52\x00\x00\ \x00\x14\x1f\x1d\x15\x20\x1b\x11\x1e\x1a\x1b\x2c\x29\x17\x29\x25\ \x17\x2a\x24\x11\x1f\x19\x0e\x1c\x14\x10\x20\x1d\x19\x30\x29\x19\ \x2b\x27\x1a\x2c\x29\x1c\x32\x31\x23\x40\x3e\x21\x39\x37\x1d\x35\ \x31\x19\x32\x2b\x22\x41\x41\x2d\x52\x5c\x4d\x80\x8e\x3d\x66\x79\ \x51\x89\xad\x53\x86\xa5\x4d\x81\xa1\x4d\x83\xa1\x49\x80\x9d\x4b\ \x7d\x9b\x49\x7c\x99\x49\x7d\x9d\x45\x7b\x9a\x45\x79\x99\x48\x7d\ \x99\x45\x78\x90\x41\x6a\x7c\x3b\x64\x80\x21\x3e\x45\x20\x3b\x3e\ \x24\x40\x43\x27\x59\x91\x0e\x45\xa0\x1c\x4a\x8f\x3c\x51\x5a\x54\ \x57\x31\x4b\x55\x34\x3a\x52\x57\x31\x54\x74\x29\x53\x86\x23\x4d\ \x95\x2a\x48\xaa\x2d\x44\xb9\x38\x48\xcc\x31\x36\xc9\x23\x2f\xb0\ \x13\x47\xa9\x04\x4c\xb5\x06\x49\xad\x15\x46\x65\x32\x5a\x65\x4d\ \x75\xc0\x3a\x60\xba\x37\x5d\xbb\x46\x6d\xc9\x4b\x6f\xc6\x1c\x45\ \x9a\x10\x48\xa6\x12\x4c\xa8\x0c\x43\xab\x11\x3a\xa8\x1b\x4d\xab\ \x15\x50\xb2\x11\x4a\xab\x11\x4d\xb5\x11\x4c\xb6\x12\x49\xae\x1f\ \x5e\xba\x30\x77\xcc\x46\x80\xb0\x18\x29\x30\x09\x10\x15\x23\x37\ \x42\x26\x47\x68\x2b\x49\x6e\x30\x43\x49\x23\x2e\x1d\x1c\x2c\x18\ \x1c\x29\x18\x22\x30\x1e\x2d\x40\x3e\x2c\x38\x35\x47\x48\x3b\x3e\ \x3b\x2c\x44\x3d\x2a\x4f\x40\x2c\x47\x3f\x2e\x45\x3b\x28\x49\x3a\ \x25\x46\x38\x24\x4a\x42\x35\x3d\x4a\x5d\x21\x4d\x89\x16\x4b\x8d\ \x11\x48\x92\x1a\x4f\x91\x16\x4c\x89\x0c\x32\x6a\x12\x36\x6d\x15\ \x3f\x7d\x11\x36\x79\x0e\x30\x74\x14\x39\x7c\x14\x39\x78\x12\x37\ \x7a\x13\x33\x62\x1e\x3a\x49\x18\x35\x3c\x17\x39\x45\x16\x35\x3a\ \x18\x35\x3f\x1c\x38\x44\x1b\x36\x3b\x1b\x37\x38\x1b\x34\x2e\x18\ \x32\x32\x1a\x37\x35\x18\x30\x2e\x1e\x38\x38\x18\x39\x4d\x40\x4b\ \x56\x84\x67\x4b\x83\x71\x60\x92\x8d\x8e\xa7\x98\x7e\xb1\xa6\x91\ \x85\x88\x85\x6c\x74\x72\x80\x6e\x5a\x74\x59\x3d\x52\x43\x5c\x4a\ \x46\x88\x42\x3c\x98\x4a\x40\x8d\x20\x25\xa3\x2b\x32\xa0\x39\x4f\ \xb8\x16\x28\xc9\x17\x2c\xcd\x35\x5d\xdf\x0d\x26\xbd\x1c\x3b\xb1\ \x22\x41\xc7\x17\x2b\xba\x13\x1d\x82\x55\x55\x95\x5a\x5a\x92\x7a\ \x6a\x7c\xb5\x7f\x47\xc4\x8b\x47\xc9\x9a\x59\xcf\x9a\x4e\xda\xaa\ \x5b\xdd\xa1\x4d\x75\x74\x7b\x1f\x5e\xaa\x00\x00\x00\x17\x24\x22\ \x12\x1b\x1a\x1b\x2b\x28\x17\x24\x22\x1d\x2e\x30\x21\x36\x38\x18\ \x2b\x28\x12\x23\x1f\x13\x24\x1d\x14\x27\x21\x16\x29\x25\x1d\x34\ \x32\x20\x3c\x38\x22\x41\x40\x27\x44\x4b\x1b\x30\x2e\x17\x2d\x28\ \x1a\x32\x2c\x20\x3c\x36\x25\x3e\x38\x36\x5d\x6d\x54\x8d\xac\x4e\ \x87\xab\x4f\x86\xac\x4a\x82\xa3\x4d\x83\xa3\x4c\x7e\x9f\x4a\x7d\ \x9e\x4d\x81\x9f\x4c\x82\xa1\x4c\x82\x9f\x4e\x87\xa3\x45\x77\x8a\ \x2f\x54\x58\x45\x70\x7a\x2b\x4c\x52\x28\x49\x4f\x27\x49\x5a\x29\ \x5d\x9b\x13\x4a\xa2\x17\x46\x97\x23\x4c\x87\x36\x53\x6d\x44\x54\ \x43\x35\x52\x5c\x39\x5d\x89\x3b\x61\xad\x26\x58\x99\x31\x55\x92\ \x2e\x4e\x99\x2d\x4f\xb4\x2f\x46\xc4\x24\x41\xa8\x15\x50\xb5\x04\ \x4d\xb5\x07\x49\x9b\x0f\x4c\x7c\x19\x4b\x5f\x4e\x76\xaa\x45\x70\ \xc4\x39\x5c\xc1\x44\x67\xc9\x27\x53\xac\x11\x45\xa2\x0d\x43\x9f\ \x15\x4b\xae\x0c\x3d\xa8\x14\x41\xa5\x22\x54\xab\x1b\x52\xa6\x16\ \x4f\xa7\x19\x54\xaf\x18\x51\xaf\x1b\x55\xb3\x28\x6c\xc1\x48\x91\ \xda\x4b\x6a\x75\x04\x08\x0e\x17\x21\x2b\x24\x36\x4c\x28\x40\x55\ \x2f\x40\x4c\x2d\x36\x24\x20\x2b\x17\x1d\x27\x15\x1d\x29\x16\x22\ \x31\x20\x22\x39\x33\x1a\x30\x30\x22\x2e\x23\x35\x30\x1f\x3f\x35\ \x2f\x67\x52\x48\x56\x44\x3d\x46\x3b\x38\x3f\x39\x38\x3f\x48\x51\ \x2e\x64\x89\x18\x48\x84\x10\x4b\x8a\x14\x4f\x8c\x13\x4e\x90\x14\ \x55\x94\x14\x52\x8e\x08\x39\x77\x0e\x2c\x64\x14\x37\x74\x14\x3d\ \x7e\x10\x2e\x6f\x10\x33\x75\x0e\x34\x73\x0c\x31\x6d\x0f\x2c\x49\ \x16\x33\x3e\x19\x38\x41\x16\x3a\x46\x15\x35\x3e\x16\x36\x3f\x18\ \x35\x3d\x1a\x33\x39\x1a\x37\x3d\x1d\x36\x32\x19\x31\x2f\x1a\x35\ \x38\x1d\x36\x35\x1b\x33\x31\x1e\x3d\x4b\x16\x3d\x5a\x25\x50\x7e\ \x3a\x45\x59\x50\x4a\x50\x95\xa1\xa2\xb6\xb1\x9f\xab\xaa\x91\x70\ \x65\x52\x81\x5e\x38\x65\x51\x79\x68\x6d\xd6\x51\x57\xe4\x0b\x13\ \xc1\x08\x10\xb5\x0a\x13\xb9\x1f\x33\xc9\x29\x58\xd8\x13\x39\xca\ \x20\x3f\xd6\x1b\x38\xd6\x12\x26\xba\x16\x32\xc8\x14\x32\xd3\x12\ \x29\xaa\x0c\x19\xb2\x05\x0e\xad\x12\x19\xa3\x24\x21\x73\x6f\x51\ \x63\x6a\x50\x95\xc2\x97\x6e\xce\x99\x50\xd6\xa4\x57\xbc\x90\x5e\ \x43\x63\x99\x13\x5b\xaf\x00\x00\x00\x1b\x2b\x2f\x17\x25\x27\x1a\ \x2b\x27\x15\x23\x1f\x19\x27\x25\x1e\x28\x26\x15\x20\x1d\x15\x27\ \x21\x15\x29\x23\x15\x27\x25\x13\x24\x23\x14\x25\x1d\x1d\x36\x30\ \x2a\x47\x4c\x47\x74\xa2\x39\x5e\x87\x1c\x31\x3a\x18\x2f\x29\x13\ \x27\x23\x12\x25\x22\x1e\x38\x36\x42\x6e\x77\x4d\x83\x98\x52\x87\ \xa4\x50\x85\xa3\x52\x83\xa7\x4e\x80\xa3\x4d\x7e\xa0\x4f\x7e\x9d\ \x4b\x7d\x9e\x4c\x7e\x9a\x47\x7a\x95\x3e\x71\x8f\x2c\x57\x74\x24\ \x46\x4b\x1e\x42\x4c\x2d\x61\x80\x3c\x6f\x8e\x25\x58\x93\x13\x4a\ \xa4\x13\x43\x9b\x10\x44\x9c\x1f\x4d\x9d\x37\x51\x88\x49\x5a\x90\ \x4a\x5d\x97\x42\x4d\xbd\x4a\x5c\xb6\x3d\x54\xa6\x43\x58\xac\x49\ \x60\xae\x46\x5c\xb5\x3d\x5a\xb7\x1d\x52\xb4\x02\x4c\xb3\x07\x47\ \x95\x0a\x4e\x8e\x14\x52\x73\x40\x67\x73\x5f\x88\xc5\x4f\x78\xce\ \x3c\x64\xbb\x16\x4d\xaf\x0f\x49\xa8\x11\x4a\xad\x12\x41\xa9\x12\ \x41\xa9\x16\x47\xa8\x16\x4d\xa9\x21\x52\xad\x16\x4e\xa6\x17\x4e\ \xa7\x1c\x53\xaa\x28\x65\xb1\x4c\x8e\xd3\x84\xb9\xd9\x1c\x25\x20\ \x12\x19\x24\x21\x2b\x34\x2a\x3f\x40\x2c\x3c\x36\x30\x3c\x32\x27\ \x2e\x1b\x1f\x26\x14\x1c\x26\x12\x24\x31\x1a\x1d\x2b\x18\x19\x27\ \x18\x15\x25\x1e\x29\x38\x42\x14\x23\x27\x34\x2a\x2c\x4c\x3b\x3d\ \x42\x35\x33\x55\x4b\x4e\x30\x30\x35\x29\x54\x7f\x05\x56\x9f\x0c\ \x4e\x92\x14\x53\x92\x14\x4f\x8b\x14\x4f\x91\x14\x4e\x89\x11\x47\ \x86\x0b\x33\x72\x0b\x28\x63\x14\x2e\x61\x11\x32\x6f\x15\x3c\x7f\ \x10\x31\x72\x0d\x2f\x6e\x0c\x2c\x5a\x13\x2b\x42\x17\x36\x45\x1b\ \x3f\x51\x18\x37\x39\x16\x35\x3a\x17\x37\x41\x17\x34\x3b\x1b\x37\ \x3d\x18\x34\x3a\x1d\x37\x31\x1d\x33\x2f\x1b\x38\x39\x1b\x31\x35\ \x1b\x32\x2f\x1d\x3e\x4a\x1e\x48\x6a\x1f\x4b\x7c\x44\x44\x55\x63\ \x5a\x62\x8a\x9c\xb0\x91\x9c\x9b\x9f\xa0\x7f\x7b\x6f\x53\x5c\x4a\ \x65\x35\x3d\xdf\x85\x96\xf3\x37\x3a\xa9\x0b\x0f\xa0\x0b\x13\xb5\ \x0b\x16\xa7\x1d\x38\xc6\x1c\x52\xd7\x21\x46\xde\x0a\x13\x9e\x08\ \x10\x85\x1f\x35\xc9\x20\x43\xcf\x1e\x46\xd0\x1a\x3d\xd4\x0c\x2c\ \xbe\x15\x37\xcf\x18\x3f\xd2\x12\x3c\xb3\x17\x26\x92\x1c\x1e\xb3\ \x70\x55\x59\xcf\xa3\x6f\xd9\xa9\x69\x80\x79\x7c\x22\x5b\xac\x19\ \x5d\xb4\x00\x00\x00\x1d\x2d\x31\x1a\x27\x22\x13\x22\x1c\x11\x1f\ \x1a\x13\x20\x1d\x13\x20\x20\x15\x25\x23\x17\x25\x22\x22\x39\x39\ \x18\x2f\x2d\x12\x27\x1f\x11\x20\x1c\x11\x23\x22\x2a\x51\x77\x3d\ \x6b\x73\x3a\x62\x71\x23\x42\x46\x11\x23\x21\x15\x28\x2a\x1d\x34\ \x34\x14\x2a\x2b\x1e\x41\x57\x37\x6b\x8a\x43\x7a\x96\x45\x7a\x95\ \x44\x7c\x96\x45\x7f\x97\x48\x80\x99\x4c\x7f\x9c\x4b\x7e\x9e\x4e\ \x82\xa0\x4b\x81\xa2\x4a\x7e\x91\x3a\x63\x67\x29\x4c\x65\x3f\x77\ \x99\x49\x86\x92\x45\x7b\x87\x2c\x62\xa0\x12\x45\x9e\x13\x48\x9f\ \x28\x4b\xa0\x50\x52\xbe\x4f\x49\xc3\x4a\x4b\xc3\x44\x49\xc0\x4c\ \x55\xaf\x53\x61\xa5\x55\x64\x9f\x52\x61\x98\x57\x66\x97\x53\x65\ \x9d\x43\x59\xa2\x29\x51\xa6\x0d\x4c\x8f\x0b\x4a\x88\x0b\x4d\x94\ \x11\x4c\x76\x39\x5c\x5f\x6b\x9e\xb8\x62\xa0\xc9\x3d\x6e\xb0\x2f\ \x6a\xbc\x17\x55\xb4\x14\x51\xb3\x10\x43\xa9\x15\x4c\xb0\x15\x4d\ \xaf\x19\x52\xb8\x10\x49\xac\x0f\x4a\xab\x1c\x50\xa5\x2c\x69\xb7\ \x31\x76\xc5\x74\xb6\xd8\x56\x65\x4d\x02\x07\x0b\x23\x2d\x33\x25\ \x30\x26\x24\x2f\x18\x22\x2e\x1b\x2a\x32\x1f\x1c\x24\x14\x20\x2d\ \x17\x20\x2d\x17\x29\x30\x1c\x18\x20\x0c\x19\x22\x0f\x19\x23\x0c\ \x17\x26\x25\x14\x41\x71\x0c\x29\x4d\x2c\x26\x2b\x3f\x35\x35\x37\ \x37\x35\x1f\x1f\x22\x14\x41\x72\x13\x5f\xa9\x14\x58\x9e\x11\x4f\ \x91\x11\x51\x93\x10\x50\x8c\x13\x4f\x8a\x0d\x44\x8b\x11\x36\x77\ \x0d\x2c\x6b\x0c\x27\x5a\x19\x37\x6c\x0f\x35\x75\x15\x41\x84\x0d\ \x31\x6e\x0b\x2d\x66\x0d\x29\x58\x1a\x3f\x4f\x13\x39\x4c\x19\x38\ \x39\x18\x36\x37\x14\x35\x40\x17\x38\x42\x19\x37\x42\x1d\x36\x39\ \x1e\x37\x37\x1b\x32\x2c\x1a\x30\x2b\x17\x2e\x34\x1a\x33\x3b\x1b\ \x3f\x55\x0f\x4a\x88\x14\x39\x75\x1f\x2c\x5c\x24\x32\x64\x39\x47\ \x68\x8b\x98\x99\xa9\xa4\x7e\x6a\x61\x52\x30\x30\xa7\x1e\x2c\xdf\ \x19\x21\xae\x12\x1a\x82\x15\x2b\x84\x12\x27\x9a\x15\x33\xbf\x1e\ \x3e\xd4\x2f\x6d\xe6\x23\x63\xd7\x11\x2b\x8e\x24\x48\xcb\x14\x26\ \xac\x1b\x38\xb6\x19\x35\xc5\x30\x69\xda\x21\x4d\xc5\x13\x39\xb1\ \x2e\x65\xde\x1e\x36\xa0\x19\x24\x9a\x21\x27\xac\x44\x34\x3d\xba\ \x9e\x81\x7f\x82\xa6\x1d\x60\xbb\x28\x78\xc5\x2c\x7b\xc7\x00\x00\ \x00\x2a\x3e\x41\x14\x24\x1e\x13\x21\x1c\x1a\x2b\x2e\x2a\x46\x57\ \x20\x33\x39\x16\x25\x22\x16\x28\x2b\x3b\x60\x78\x33\x52\x59\x1b\ \x2d\x29\x17\x2a\x27\x1c\x35\x38\x39\x65\x5d\x4c\x91\xb2\x4a\x93\ \xbb\x3c\x7e\xa9\x27\x57\x83\x2b\x59\x7f\x1b\x35\x36\x1d\x3c\x3f\ \x35\x66\x70\x41\x80\x98\x44\x84\x9d\x43\x82\xa0\x43\x83\x9b\x42\ \x81\x97\x42\x82\x98\x45\x80\x97\x48\x80\x9b\x47\x82\x9e\x48\x7d\ \x93\x2a\x4f\x57\x26\x4f\x6a\x4b\x80\x9f\x4e\x82\x97\x31\x57\x66\ \x2a\x4a\x51\x26\x54\x88\x1d\x49\xaa\x2c\x4e\x9e\x45\x55\x97\x4d\ \x4c\xa4\x4f\x4d\xba\x48\x47\xb0\x4a\x52\xbe\x47\x55\xab\x32\x4b\ \xa7\x3c\x4f\xab\x46\x53\xb3\x4d\x54\xb8\x4b\x50\xb9\x34\x45\xba\ \x19\x4e\x9a\x17\x4c\x7b\x18\x4a\x6f\x16\x4b\x6f\x25\x57\x86\x4c\ \x75\x88\x56\x96\xb1\x3f\x8c\xb5\x2a\x7b\xbf\x2b\x6c\xb8\x2a\x6b\ \xbe\x16\x4e\xb5\x27\x56\xb5\x26\x5a\xb2\x10\x48\xa8\x15\x50\xb3\ \x11\x4d\xab\x19\x52\xae\x29\x5e\xaa\x33\x77\xc4\x75\xb6\xe5\x99\ \xbf\xb5\x04\x08\x00\x11\x17\x19\x21\x2b\x22\x25\x2e\x1c\x2e\x33\ \x22\x22\x29\x14\x15\x1d\x0f\x1f\x29\x16\x28\x33\x1b\x1e\x28\x0f\ \x1a\x26\x0f\x18\x20\x0b\x1a\x1f\x0c\x18\x1f\x0f\x27\x31\x29\x59\ \x6a\x6c\x0c\x10\x05\x1b\x1f\x1f\x24\x2d\x36\x1c\x20\x26\x1e\x20\ \x21\x2a\x5e\x7d\x0b\x39\x77\x09\x4f\x98\x14\x5a\x9f\x15\x53\x91\ \x0e\x50\x95\x0d\x5b\xa5\x16\x52\x9b\x17\x44\x84\x10\x37\x79\x0d\ \x2d\x6b\x10\x2c\x62\x17\x3c\x7b\x12\x40\x7f\x0b\x34\x6d\x0a\x25\ \x5d\x12\x3b\x73\x16\x31\x40\x18\x3d\x46\x19\x3a\x3c\x18\x37\x38\ \x16\x34\x3e\x1b\x3b\x47\x18\x39\x46\x1c\x36\x34\x18\x33\x36\x1b\ \x34\x37\x1e\x3a\x42\x19\x3b\x5e\x19\x37\x54\x16\x39\x56\x0d\x40\ \x86\x21\x31\x64\x29\x31\x5a\x28\x30\x66\x29\x30\x4f\x4a\x4b\x50\ \x6d\x70\x62\x84\x7d\x85\x21\x28\xba\x2e\x31\xb7\x1f\x23\xaa\x10\ \x11\x6a\x11\x11\x6a\x23\x29\x8d\x32\x46\x8d\x29\x3d\xa6\x41\x59\ \xc4\x2f\x55\xc2\x3a\x75\xc5\x20\x58\xc4\x1a\x4b\xc6\x12\x39\xbe\ \x1d\x50\xd5\x2b\x6e\xdc\x30\x78\xe2\x1c\x5a\xcb\x1b\x44\xb9\x14\ \x1b\x75\x24\x37\xae\x3b\x53\xce\x60\x79\xd0\x6e\x7f\xc5\x1f\x5f\ \xed\x29\x77\xe0\x3a\xae\xea\x36\xad\xeb\x00\x00\x00\x15\x21\x1a\ \x11\x1d\x1c\x16\x25\x22\x25\x3a\x41\x3d\x60\x6f\x28\x3e\x42\x13\ \x1e\x1c\x1c\x31\x30\x30\x48\x3a\x1b\x2c\x29\x21\x35\x36\x1b\x33\ \x37\x19\x32\x33\x2f\x5c\x7d\x3f\x7a\xa2\x4b\x8f\xac\x4c\x92\xb0\ \x4f\x91\xb1\x4d\x8e\xb0\x2c\x57\x70\x16\x2e\x36\x20\x42\x53\x3b\ \x70\x84\x43\x80\x98\x4a\x84\xa0\x46\x80\x9a\x44\x7e\x98\x42\x7e\ \x96\x41\x7d\x91\x42\x7f\x94\x44\x80\x95\x3f\x76\x85\x2a\x5a\x71\ \x42\x7c\x99\x34\x60\x67\x37\x60\x63\x37\x64\x6d\x2d\x54\x64\x27\ \x55\x88\x28\x54\xa1\x5b\x60\x65\x5c\x57\x58\x47\x4c\x69\x61\x69\ \x99\x4b\x53\x88\x3d\x45\x89\x4f\x57\xbf\x45\x51\xc3\x2e\x48\xb4\ \x25\x4c\xa7\x32\x4e\xb8\x3a\x46\xc9\x2e\x42\xbb\x29\x5b\xb6\x30\ \x62\xb8\x2d\x55\xa4\x29\x51\x91\x2a\x51\x87\x32\x55\x86\x64\x8d\ \xa5\x65\x9d\xbd\x3d\x81\xb3\x35\x77\xb9\x3f\x7e\xc8\x1a\x56\xb4\ \x29\x5d\xb8\x17\x50\xaf\x14\x51\xaf\x17\x54\xb4\x10\x4a\xa4\x16\ \x4a\xa1\x2b\x68\xb5\x52\x92\xcc\x7c\xa3\xaa\x3b\x4f\x30\x09\x0c\ \x0a\x1c\x22\x19\x1f\x24\x15\x46\x4d\x3d\x13\x19\x0f\x1c\x25\x12\ \x22\x2b\x19\x25\x2d\x1a\x24\x2b\x14\x1a\x23\x11\x17\x1f\x0e\x19\ \x1f\x0c\x1b\x23\x0e\x1c\x22\x0f\x1c\x23\x10\x2e\x34\x1d\x15\x19\ \x0f\x09\x12\x16\x09\x25\x3a\x15\x2c\x41\x22\x45\x4c\x1e\x71\x99\ \x04\x43\x8a\x08\x55\xa7\x0c\x52\x9e\x0d\x52\x9d\x0d\x57\xa3\x15\ \x54\x9e\x1b\x47\x8e\x1a\x48\x85\x19\x4a\x90\x17\x37\x7a\x12\x2e\ \x67\x0d\x31\x71\x0b\x31\x6e\x10\x32\x68\x16\x36\x5e\x17\x31\x3e\ \x1c\x3a\x4f\x1a\x3d\x45\x24\x42\x40\x1f\x3e\x3e\x17\x39\x3b\x1a\ \x3a\x43\x17\x39\x49\x20\x41\x59\x1a\x39\x48\x1a\x3f\x57\x1f\x4f\ \x71\x18\x42\x5e\x1a\x3a\x5d\x16\x38\x60\x17\x32\x67\x26\x34\x68\ \x29\x32\x5e\x20\x28\x50\x23\x28\x3f\x22\x29\x4b\x35\x42\x58\x6f\ \x7b\x88\x85\x7e\x7d\x9a\x87\x71\x7e\x77\x92\x7c\x76\x82\x63\x56\ \x52\x6c\x60\x58\x93\x83\x86\x99\x93\xaa\x7b\x95\xc4\x4c\xab\xe7\ \x1b\x68\xc4\x20\x5e\xce\x21\x69\xd2\x29\x93\xe7\x25\x72\xd3\x2b\ \x73\xdc\x18\x4f\xd7\x21\x44\xc1\x2e\x39\xb3\x0f\x1c\x9f\x2d\x59\ \xd1\x36\x76\xe2\x1d\x61\xe1\x2b\x78\xe6\x22\x64\xec\x1e\x60\xdd\ \x2e\x98\xec\x30\xa1\xe4\x00\x00\x00\x15\x20\x1c\x14\x23\x1e\x14\ \x22\x1f\x21\x36\x3b\x36\x52\x60\x22\x32\x3b\x27\x41\x4c\x1e\x33\ \x3f\x14\x23\x1f\x19\x2d\x2f\x1d\x34\x39\x28\x47\x51\x29\x55\x77\ \x3c\x79\xa8\x57\x98\xbd\x50\x90\xb3\x4e\x8e\xae\x4e\x8c\xa8\x4b\ \x8c\xa8\x48\x86\xa5\x2d\x5f\x7d\x28\x56\x72\x37\x71\x90\x46\x83\ \xa0\x47\x82\xa0\x44\x81\x9e\x45\x81\x9f\x45\x81\x9f\x42\x80\x9c\ \x42\x82\x9b\x42\x7e\x98\x34\x68\x7f\x3d\x79\x96\x49\x88\x9b\x37\ \x6d\x79\x30\x68\x87\x31\x68\x81\x32\x65\x78\x29\x58\x90\x18\x50\ \xa2\x3a\x56\x77\x46\x4f\x49\x5c\x5b\x6a\x63\x64\x79\x6d\x6f\x7f\ \x41\x4e\x7a\x43\x52\xa9\x45\x50\xb8\x3a\x4a\xb1\x2d\x52\x9d\x2b\ \x55\xa7\x22\x4b\xa5\x1e\x4c\xa6\x48\x78\xcb\x4a\x72\xcc\x31\x55\ \xbc\x35\x56\xbb\x37\x5d\xb7\x34\x55\xae\x44\x65\xac\x5b\x82\xc5\ \x50\x82\xc0\x4d\x8c\xb8\x49\x89\xbb\x3d\x75\xb6\x24\x5d\xb4\x28\ \x64\xb7\x2e\x65\xb4\x15\x4f\xa9\x0f\x46\xa3\x11\x41\x96\x2c\x65\ \xb1\x4e\x7b\x95\x20\x2e\x20\x29\x32\x2a\x14\x19\x0e\x16\x1b\x0e\ \x29\x2e\x21\x2e\x37\x24\x16\x1c\x0f\x20\x2a\x1a\x26\x2f\x1b\x26\ \x2d\x17\x16\x1c\x0a\x13\x19\x0c\x18\x20\x0b\x19\x20\x0e\x1b\x21\ \x0e\x1d\x26\x12\x13\x1c\x11\x1a\x23\x16\x1e\x24\x18\x0f\x1b\x1b\ \x0e\x17\x12\x17\x17\x15\x28\x43\x47\x2a\x82\x98\x12\x71\xb0\x0e\ \x5a\xad\x06\x4b\xa2\x08\x4c\xa1\x11\x57\xa5\x15\x4f\xa0\x17\x49\ \x93\x14\x40\x7a\x17\x45\x85\x14\x3e\x81\x1d\x3e\x7a\x0d\x29\x58\ \x0c\x31\x65\x10\x33\x62\x16\x33\x3b\x19\x38\x48\x14\x3a\x52\x19\ \x39\x38\x19\x39\x39\x1a\x3a\x3b\x1b\x3e\x46\x1e\x3f\x50\x18\x36\ \x42\x1f\x42\x5c\x17\x41\x5d\x14\x44\x66\x1f\x53\x7e\x1f\x52\x7a\ \x22\x54\x7b\x19\x45\x7a\x18\x33\x77\x19\x25\x4c\x29\x30\x3e\x21\ \x26\x40\x2c\x30\x43\x25\x2c\x40\x1d\x24\x34\x64\x7a\x8a\xa0\xb7\ \xc1\xa4\xb1\xbc\x68\x72\xad\x74\x76\x93\x7b\x75\x7a\x7f\x74\x7d\ \x78\x6b\x7b\x93\x85\x8c\x99\x96\x9c\x50\xa4\xd1\x25\x80\xda\x13\ \x35\xb5\x1f\x63\xd5\x1f\x6d\xd3\x17\x3d\xbb\x55\x84\xd6\x39\x72\ \xd4\x48\x72\xca\x53\x73\xdb\x23\x3b\xc3\x3e\x77\xdc\x57\x9b\xed\ \x26\x69\xe7\x25\x6d\xef\x20\x5a\xe6\x2f\x6d\xdf\x3d\x9c\xe6\x25\ \x7a\xde\x00\x00\x00\x1f\x31\x33\x19\x2a\x2b\x15\x1f\x1d\x1c\x2e\ \x31\x2e\x4a\x61\x3a\x5d\x74\x35\x57\x67\x45\x6b\x7c\x13\x22\x1e\ \x1a\x2e\x29\x23\x3e\x3a\x28\x47\x4c\x48\x84\xa0\x52\x93\xbb\x58\ \x97\xb9\x54\x94\xb6\x51\x8e\xb2\x4e\x89\xad\x4c\x89\xa9\x4b\x88\ \xa8\x48\x87\xa5\x3f\x7c\x9c\x44\x82\x9f\x46\x82\xa0\x43\x81\x9f\ \x42\x82\xa1\x42\x81\xa2\x45\x83\xa1\x46\x84\xa3\x45\x84\xa2\x48\ \x85\xa1\x41\x7d\x9a\x47\x83\x92\x31\x5d\x5d\x30\x61\x7b\x3f\x79\ \x87\x44\x7e\x8c\x3a\x6e\x6f\x2d\x5d\x89\x14\x4b\xa2\x11\x49\x9f\ \x24\x49\x94\x5a\x5c\xab\x55\x5b\x8f\x48\x58\x8c\x47\x5e\xa2\x3d\ \x50\x9f\x46\x58\xae\x4c\x5d\xb8\x4b\x5f\xb2\x46\x5b\xba\x31\x4c\ \xb4\x18\x4f\xa5\x31\x69\xb7\x48\x78\xc0\x4f\x79\xc8\x4c\x75\xc8\ \x57\x7f\xcc\x53\x7a\xc7\x4e\x74\xcf\x56\x7e\xcf\x5c\x82\xca\x5f\ \x8f\xc5\x41\x7b\xae\x1e\x57\xa7\x21\x57\xa4\x2c\x60\x87\x33\x5f\ \x73\x17\x4d\x89\x15\x48\x93\x16\x4b\x89\x1d\x50\x7b\x1f\x3b\x43\ \x16\x1d\x13\x26\x2e\x1e\x1b\x21\x13\x23\x28\x1b\x43\x48\x3f\x20\ \x29\x19\x1b\x22\x11\x21\x29\x1b\x21\x28\x1a\x19\x1f\x10\x1d\x23\ \x14\x14\x1b\x0e\x18\x1e\x0e\x18\x1f\x0c\x19\x1f\x0b\x1d\x23\x0f\ \x17\x21\x0d\x13\x26\x22\x24\x2a\x1d\x1e\x2a\x27\x1b\x26\x20\x0a\ \x0b\x0b\x2d\x35\x4b\x37\x86\x94\x22\x8c\xb7\x14\x5b\xa2\x07\x3f\ \x90\x0b\x39\x82\x19\x42\x79\x1f\x53\x95\x1b\x4b\x91\x0e\x33\x68\ \x1a\x43\x7e\x10\x33\x6f\x15\x36\x71\x13\x2e\x60\x18\x35\x65\x17\ \x36\x57\x18\x36\x3f\x13\x2d\x38\x1a\x3a\x4b\x1d\x3f\x43\x1d\x3d\ \x41\x1e\x46\x56\x29\x49\x56\x1c\x3c\x4c\x17\x3a\x4d\x17\x3c\x4f\ \x16\x44\x5b\x14\x49\x68\x18\x48\x69\x1b\x4a\x6f\x22\x55\x7f\x2c\ \x5f\x8b\x22\x4f\x86\x1e\x2c\x4e\x25\x2a\x35\x21\x28\x37\x22\x27\ \x33\x1d\x24\x30\x15\x1d\x2a\x60\x6e\x72\xa8\xb5\xb8\xae\xc5\xd2\ \x85\x99\xb0\x81\x86\x94\x81\x7a\x7e\x65\x62\x6b\x70\x6d\x7e\x5a\ \x5e\x85\x5b\x7c\xd2\x42\x72\xde\x25\x90\xec\x15\x56\xd8\x18\x47\ \xda\x16\x39\xd0\x25\x49\xdf\x55\x7e\xdb\x36\x55\xdf\x3e\x61\xe4\ \x5e\x8d\xe8\x37\x76\xee\x27\x67\xe1\x46\x83\xec\x2f\x77\xed\x1e\ \x5e\xdf\x1b\x53\xd0\x2b\x70\xde\x2a\x70\xe1\x1c\x5f\xe7\x00\x00\ \x00\x25\x40\x3e\x25\x3f\x46\x17\x2a\x2c\x1f\x31\x31\x38\x5a\x63\ \x3c\x5d\x61\x1f\x30\x2e\x2d\x45\x3e\x13\x24\x24\x21\x3e\x5c\x1c\ \x3e\x6c\x13\x2a\x3f\x33\x5c\x69\x58\x96\xb8\x57\x96\xc3\x55\x93\ \xbc\x56\x93\xbb\x57\x93\xba\x53\x90\xb8\x54\x91\xb9\x50\x8c\xb0\ \x4d\x8d\xb5\x4c\x8c\xb3\x48\x87\xae\x49\x88\xab\x48\x87\xaa\x49\ \x88\xa9\x4a\x89\xad\x4a\x88\xaa\x48\x86\xa8\x48\x86\xa3\x3f\x75\ \x82\x2d\x55\x58\x2b\x5d\x78\x3f\x7e\x9d\x31\x5d\x6c\x22\x45\x4d\ \x20\x43\x44\x2b\x53\x76\x10\x47\x9d\x11\x48\xa4\x29\x4c\xa5\x47\ \x4b\xa2\x3a\x4a\xa3\x49\x5b\xb6\x52\x5e\xb4\x57\x66\xbe\x5b\x65\ \xbe\x4f\x5a\xb6\x54\x5e\xc7\x53\x5c\xd2\x4b\x52\xd7\x36\x48\xcf\ \x1b\x47\xb1\x09\x3c\xa2\x22\x39\xb1\x29\x3b\xad\x5f\x7a\xc6\x3c\ \x58\xa6\x43\x65\x9b\x48\x6e\x95\x69\x8f\xac\x6a\x9c\xb8\x6f\xa2\ \xbe\x2f\x5b\x75\x26\x50\x5f\x29\x52\x4f\x27\x50\x46\x21\x4b\x55\ \x22\x4e\x5e\x1c\x49\x51\x2b\x52\x41\x24\x4b\x56\x1b\x2a\x28\x1e\ \x22\x16\x1d\x23\x15\x31\x36\x27\x27\x2a\x22\x1b\x1f\x0f\x22\x2a\ \x16\x3c\x3e\x2f\x15\x1c\x0a\x1e\x25\x14\x1f\x26\x17\x1b\x22\x0f\ \x14\x1c\x0c\x19\x1f\x0c\x1e\x25\x12\x22\x2c\x1e\x2a\x39\x2c\x4d\ \x56\x4d\x26\x30\x2a\x27\x2e\x24\x14\x19\x0f\x09\x0c\x14\x1a\x21\ \x2d\x2d\x51\x63\x26\x7e\xa0\x0c\x47\x8e\x09\x2f\x67\x0d\x23\x46\ \x15\x33\x63\x13\x3b\x68\x17\x3d\x6b\x14\x2f\x56\x11\x33\x64\x1b\ \x3c\x6c\x0d\x28\x63\x10\x27\x50\x11\x27\x43\x13\x2a\x37\x14\x30\ \x37\x1a\x3a\x3b\x0d\x1d\x25\x1b\x3c\x47\x1c\x47\x61\x22\x4f\x61\ \x12\x27\x2d\x19\x36\x3c\x2a\x49\x4f\x22\x42\x46\x1c\x3e\x44\x1a\ \x47\x5d\x1e\x43\x60\x19\x49\x6f\x29\x5d\x8a\x20\x4c\x79\x34\x56\ \x7a\x17\x29\x49\x26\x30\x46\x1c\x23\x2d\x1b\x21\x2a\x23\x2a\x32\ \x1e\x24\x2f\x22\x27\x2f\x5d\x62\x64\xa4\xa6\xac\xa6\xbc\xc4\x91\ \xa2\xa6\x53\x52\x56\x30\x36\x45\x51\x55\x6a\x2d\x41\x89\x23\x4a\ \xc4\x2e\x43\xdd\x46\xa0\xf2\x11\x3b\xa5\x23\x43\xdf\x33\x53\xd2\ \x1f\x3e\xb7\x26\x37\xca\x44\x5a\xd8\x3e\x49\xb7\x28\x4f\xe7\x27\ \x50\xe2\x22\x50\xd9\x21\x61\xeb\x22\x70\xde\x15\x57\xd1\x13\x47\ \xc7\x11\x46\xca\x1c\x62\xe5\x36\x79\xf1\x00\x00\x00\x27\x42\x40\ \x46\x63\x6b\x3a\x5b\x63\x27\x43\x47\x1e\x2e\x2a\x20\x32\x2f\x14\ \x23\x1e\x1d\x2c\x26\x20\x38\x40\x3e\x65\x74\x61\x97\xaa\x56\x89\ \xa9\x36\x5d\x88\x43\x78\xa0\x60\x9e\xc9\x5d\x99\xc3\x5b\x98\xc1\ \x59\x96\xbf\x5e\x99\xc9\x5a\x95\xc0\x57\x93\xbc\x55\x91\xb7\x58\ \x93\xb7\x56\x92\xb7\x55\x94\xbd\x51\x90\xb9\x4f\x8f\xb6\x4e\x8b\ \xb1\x4a\x8a\xad\x4c\x8b\xa9\x4c\x89\xaa\x41\x7c\xa4\x38\x72\xa0\ \x47\x86\xa3\x4f\x90\xa6\x3a\x71\x82\x2e\x5d\x6c\x29\x60\x87\x35\ \x64\x99\x20\x51\x97\x33\x4b\x68\x41\x4a\x60\x3f\x47\x6d\x3f\x4a\ \x98\x3c\x49\xb1\x4c\x5a\xcf\x50\x59\xb6\x50\x5e\xb8\x61\x6d\xce\ \x5e\x6b\xcb\x41\x4f\xcd\x39\x46\xcd\x31\x41\xcd\x1f\x36\xb6\x0c\ \x23\xb1\x04\x10\xa8\x18\x22\xa3\x09\x15\x9b\x12\x20\xa3\x12\x26\ \x9b\x13\x2d\x8c\x1b\x40\x82\x17\x42\x69\x22\x53\x6e\x1a\x42\x4f\ \x1c\x46\x43\x1f\x47\x44\x20\x48\x3f\x27\x4c\x41\x28\x4b\x40\x2a\ \x4b\x43\x3d\x5d\x3c\x3c\x54\x35\x23\x3e\x4d\x1d\x27\x21\x30\x39\ \x32\x23\x29\x1f\x12\x17\x0c\x14\x19\x0c\x31\x38\x2a\x21\x2a\x17\ \x19\x1d\x0d\x18\x1f\x0d\x19\x21\x0f\x1b\x25\x10\x1c\x24\x11\x23\ \x2b\x1b\x18\x22\x0f\x1c\x27\x14\x2e\x3a\x2f\x25\x2f\x15\x14\x18\ \x0b\x0c\x10\x0e\x09\x0a\x0c\x1f\x28\x38\x45\x5a\x70\x19\x3d\x71\ \x0e\x2b\x64\x0c\x32\x78\x0b\x27\x67\x0b\x28\x53\x12\x2c\x58\x17\ \x35\x5f\x15\x39\x64\x19\x38\x5f\x16\x31\x59\x15\x38\x6e\x0f\x28\ \x58\x1b\x35\x66\x13\x26\x38\x19\x32\x41\x0e\x27\x43\x11\x31\x3e\ \x16\x32\x3c\x14\x29\x37\x16\x3b\x58\x1e\x4c\x64\x0a\x1c\x24\x1d\ \x35\x36\x20\x3e\x40\x24\x43\x53\x1f\x49\x6c\x1a\x48\x6d\x1b\x46\ \x61\x16\x3b\x55\x18\x39\x53\x21\x42\x5f\x1f\x40\x5b\x2b\x3d\x4c\ \x6c\x71\x6e\x3a\x42\x5b\x1e\x24\x56\x19\x21\x58\x19\x1f\x44\x17\ \x1c\x33\x1b\x22\x35\x3d\x48\x54\x83\x95\x9e\x7b\x8a\x9a\x25\x2d\ \x41\x1e\x28\x37\x4e\x60\x79\x27\x2e\x88\x1a\x2b\xca\x48\x55\xaa\ \x6a\x80\xa1\x1c\x2b\x82\x4d\x67\xc7\x2a\x49\xc3\x1e\x3a\xb9\x28\ \x39\xc9\x33\x4a\xd4\x2e\x3e\xc6\x34\x49\xce\x2b\x3d\xd7\x1c\x3e\ \xd9\x18\x48\xd6\x19\x48\xd8\x32\x66\xde\x06\x21\x98\x12\x35\xb5\ \x4e\x83\xe7\x5a\x8e\xe6\x00\x00\x00\x2e\x53\x55\x20\x35\x2e\x1b\ \x31\x2e\x24\x3b\x2d\x1a\x2b\x24\x19\x28\x23\x17\x25\x1e\x0f\x18\ \x14\x26\x40\x3e\x2a\x41\x3c\x2d\x41\x37\x35\x55\x5b\x4f\x7f\x8d\ \x53\x83\x8e\x52\x83\x90\x55\x8a\x9c\x57\x8f\xa6\x5a\x94\xb0\x5c\ \x96\xb3\x5d\x97\xb8\x5b\x96\xbc\x59\x95\xbe\x55\x93\xba\x55\x92\ \xb8\x54\x92\xb8\x57\x94\xb5\x55\x92\xb4\x51\x90\xb3\x52\x91\xb6\ \x50\x90\xb6\x4e\x8e\xb3\x50\x8e\xb2\x51\x8e\xb0\x37\x68\x76\x24\ \x47\x45\x28\x50\x62\x3d\x77\xb2\x5c\x9d\xc8\x50\x84\xb3\x2d\x54\ \x7b\x4b\x52\x30\x4c\x55\x3b\x3f\x51\x70\x42\x54\x93\x42\x4e\xb6\ \x52\x5a\xd7\x3b\x43\xaf\x4d\x56\xba\x4d\x5a\xbc\x45\x54\xb5\x33\ \x42\xb2\x40\x49\xb8\x3c\x48\xb7\x1b\x29\xb5\x0a\x16\xb6\x06\x12\ \xa1\x05\x12\x9f\x07\x12\xa9\x08\x15\xaa\x09\x16\xa6\x07\x13\xaa\ \x0a\x15\x9b\x10\x1e\xa0\x0e\x23\x96\x13\x3c\x84\x15\x46\x62\x18\ \x47\x4a\x20\x4a\x46\x22\x47\x3f\x24\x4a\x40\x2c\x4f\x46\x3b\x5c\ \x4f\x33\x59\x77\x21\x55\x93\x2b\x4b\x86\x41\x4b\x4e\x2a\x35\x36\ \x1d\x25\x17\x1d\x23\x12\x1c\x22\x0d\x1d\x22\x14\x21\x28\x19\x16\ \x1b\x0f\x16\x1b\x0c\x19\x1f\x0d\x29\x2d\x21\x2c\x36\x2c\x2b\x35\ \x28\x35\x3d\x2f\x2c\x33\x25\x14\x18\x11\x06\x08\x07\x15\x19\x1f\ \x35\x45\x51\x46\x5e\x6e\x40\x55\x66\x19\x44\x7c\x0b\x37\x7a\x0c\ \x22\x5f\x0f\x27\x5c\x0d\x28\x52\x0f\x2c\x58\x11\x31\x57\x1d\x3b\ \x62\x19\x3c\x65\x1a\x3b\x65\x11\x2b\x53\x25\x41\x76\x30\x4a\x6a\ \x13\x23\x2c\x15\x26\x2e\x17\x31\x46\x18\x35\x42\x18\x3b\x4d\x15\ \x32\x46\x0e\x1d\x25\x20\x47\x58\x1f\x3e\x4f\x10\x21\x28\x22\x44\ \x54\x27\x4e\x60\x1f\x41\x51\x20\x3a\x44\x1b\x39\x47\x1d\x39\x45\ \x1c\x3c\x42\x25\x49\x57\x1c\x3c\x54\x23\x35\x5b\x45\x3a\x34\x54\ \x47\x39\x5b\x50\x54\x42\x3f\x6f\x34\x2e\x6f\x1a\x22\x67\x18\x21\ \x5e\x20\x27\x51\x1f\x29\x4e\x2d\x38\x60\x28\x37\x81\x1f\x28\x52\ \x27\x37\x76\x0d\x10\x87\x1e\x2b\xbf\x17\x29\x76\x44\x54\x8d\x1e\ \x2a\x6d\x18\x2c\x8d\x1d\x36\xd1\x11\x23\xaa\x25\x3e\xc2\x30\x3c\ \xc9\x26\x32\xe0\x2f\x42\xe3\x22\x4d\xcc\x1b\x57\xbb\x31\x65\xe0\ \x2d\x69\xe6\x23\x4e\xc9\x0d\x29\x9b\x20\x4a\xad\x34\x68\xce\x36\ \x6e\xe0\x00\x00\x00\x3d\x70\x72\x2a\x46\x4e\x38\x69\x70\x1f\x34\ \x30\x1a\x2a\x28\x17\x26\x24\x15\x23\x21\x15\x25\x24\x22\x37\x32\ \x1b\x2f\x2e\x20\x35\x37\x23\x3a\x34\x32\x59\x5b\x36\x4c\x4c\x36\ \x49\x4c\x39\x55\x55\x3d\x68\x6f\x41\x69\x71\x41\x69\x73\x41\x6a\ \x76\x46\x71\x80\x4c\x7a\x8b\x51\x85\x96\x5a\x94\xb0\x55\x94\xb4\ \x50\x8e\xad\x4f\x8f\xae\x50\x91\xb3\x54\x92\xb7\x56\x91\xb6\x52\ \x91\xb8\x52\x92\xb7\x4f\x8d\xaf\x31\x64\x80\x2e\x62\x8f\x4b\x89\ \xbc\x61\x9d\xbd\x5f\x9b\xbc\x56\x8a\xaf\x27\x5b\xa0\x51\x5d\xa6\ \x4b\x54\x47\x40\x4f\x77\x41\x4f\xa4\x3d\x49\xa6\x4a\x56\xaf\x38\ \x47\x9b\x43\x54\x94\x40\x50\x96\x2b\x3d\x9b\x1d\x31\x98\x36\x44\ \xb1\x1e\x30\xb3\x0b\x18\xb5\x0a\x13\x9d\x08\x13\x92\x08\x13\x9e\ \x08\x15\x9d\x0a\x18\xa1\x0d\x18\xa6\x08\x14\xaa\x0a\x14\xa0\x09\ \x16\xa3\x0f\x18\xa1\x0f\x1c\xa2\x0e\x2b\x97\x0b\x3d\x85\x18\x4d\ \x63\x1b\x49\x52\x23\x52\x59\x21\x4f\x6f\x21\x59\xa6\x20\x5c\xb1\ \x2c\x5f\xc0\x43\x55\xd5\x41\x49\xa6\x33\x36\x50\x25\x28\x16\x2e\ \x32\x21\x1e\x24\x15\x1b\x20\x0d\x20\x26\x15\x1a\x21\x0f\x19\x1e\ \x0d\x1b\x21\x0b\x34\x3b\x2f\x3f\x4c\x3a\x1b\x24\x14\x20\x29\x18\ \x1d\x22\x11\x11\x14\x0b\x05\x06\x07\x1d\x24\x2a\x45\x59\x64\x3e\ \x53\x61\x33\x44\x55\x19\x42\x80\x0c\x39\x7c\x0b\x26\x60\x0c\x27\ \x66\x0c\x2c\x67\x0d\x2e\x60\x10\x2f\x5c\x14\x34\x60\x28\x49\x6e\ \x1d\x41\x6e\x16\x36\x5a\x13\x29\x4a\x19\x31\x49\x12\x25\x29\x1a\ \x2f\x2b\x17\x2f\x34\x18\x36\x40\x16\x34\x3d\x18\x43\x58\x0f\x24\ \x2e\x16\x28\x32\x25\x4c\x5e\x10\x1d\x23\x1a\x2f\x30\x21\x40\x49\ \x1a\x3b\x45\x1a\x3e\x52\x1b\x41\x62\x23\x41\x4c\x25\x38\x2f\x20\ \x31\x2c\x1e\x35\x40\x16\x35\x5a\x2e\x48\x5f\x18\x23\x41\x27\x2a\ \x43\x29\x2a\x34\x26\x2c\x32\x21\x2a\x35\x25\x2d\x44\x28\x32\x55\ \x2a\x3b\x6c\x30\x3f\x72\x29\x3a\x87\x24\x33\x95\x23\x31\x80\x1d\ \x24\x9a\x19\x26\xb0\x15\x22\x6b\x42\x58\xa2\x0d\x1e\x7c\x18\x25\ \xaa\x17\x28\xbd\x1a\x2b\xb1\x24\x3a\xc1\x13\x2f\xbe\x26\x36\xdb\ \x2b\x3f\xe0\x24\x57\xc9\x28\x99\xd2\x24\x77\xd7\x23\x64\xbe\x13\ \x39\x87\x0f\x1c\x50\x06\x11\x58\x2d\x5b\xcb\x41\x7e\xea\x00\x00\ \x00\x32\x4f\x4b\x2e\x4d\x53\x30\x54\x43\x1c\x2e\x27\x18\x27\x20\ \x18\x27\x25\x17\x24\x21\x18\x2a\x26\x18\x2c\x24\x1a\x31\x29\x20\ \x35\x30\x21\x2e\x2d\x21\x32\x2d\x2e\x43\x52\x2b\x32\x3a\x26\x32\ \x38\x28\x43\x49\x27\x44\x46\x2e\x4c\x53\x37\x61\x6a\x39\x66\x75\ \x38\x63\x77\x3b\x63\x78\x41\x6f\x88\x45\x7c\x98\x4b\x87\xa4\x4d\ \x8a\xab\x52\x8e\xb0\x54\x93\xb6\x55\x93\xb7\x59\x95\xbd\x55\x93\ \xb5\x4f\x8e\xb1\x46\x83\xab\x56\x95\xbe\x59\x97\xbb\x59\x95\xba\ \x51\x8d\xa8\x44\x70\x79\x2d\x60\xa3\x48\x4f\x87\x51\x53\x66\x44\ \x4e\x97\x3c\x49\x97\x3d\x4b\x93\x49\x58\x98\x3f\x4e\x94\x3d\x4d\ \x8d\x1f\x33\x95\x16\x2c\x97\x1d\x37\x97\x1c\x2d\xa7\x0f\x1b\xb4\ \x0b\x15\xa7\x09\x12\x90\x09\x15\x9f\x0a\x15\xa2\x07\x13\xa4\x0a\ \x17\xa4\x08\x15\xa5\x08\x15\xa3\x09\x13\xa6\x08\x14\xa8\x0b\x18\ \xa4\x0a\x18\xa7\x14\x1f\x9f\x12\x20\x9c\x16\x43\x8e\x0f\x4e\x89\ \x12\x52\xa0\x15\x57\xb6\x28\x66\xbb\x2e\x59\x9b\x4f\x5a\xb1\x4c\ \x4c\xbb\x4a\x42\x6e\x4e\x44\x3c\x3e\x3e\x26\x31\x36\x1e\x12\x17\ \x0d\x18\x1c\x0e\x34\x3a\x2d\x2a\x31\x21\x21\x29\x16\x1f\x24\x12\ \x32\x38\x26\x1c\x23\x16\x19\x1f\x14\x1f\x23\x13\x1a\x1f\x0a\x15\ \x1b\x08\x07\x0a\x08\x07\x09\x0b\x24\x29\x2d\x2f\x35\x3b\x23\x25\ \x2a\x22\x2f\x3e\x20\x2e\x40\x14\x35\x68\x10\x2b\x6f\x0c\x27\x63\ \x0c\x30\x6c\x11\x35\x6e\x10\x31\x65\x0f\x2f\x58\x15\x35\x57\x16\ \x34\x55\x15\x2f\x4a\x15\x2d\x42\x13\x27\x33\x18\x2f\x35\x16\x2f\ \x42\x19\x35\x3c\x1c\x34\x32\x1d\x3e\x44\x17\x31\x36\x0c\x1b\x20\ \x29\x53\x6d\x17\x2a\x2f\x1a\x2d\x2d\x21\x3e\x46\x1b\x38\x45\x1f\ \x40\x4d\x23\x46\x59\x1c\x3a\x42\x1c\x32\x29\x1f\x35\x32\x20\x34\ \x38\x1f\x38\x4d\x2a\x45\x6d\x11\x2c\x67\x15\x28\x5b\x1d\x27\x3a\ \x22\x2b\x4a\x22\x2f\x6a\x20\x2b\x69\x23\x33\x7e\x1a\x2c\x95\x1f\ \x30\xa5\x2c\x3f\xab\x30\x41\x9e\x24\x39\x9d\x2d\x3f\xb3\x2b\x3f\ \xa8\x19\x29\x68\x2b\x3d\x95\x17\x2d\x7a\x0d\x18\x70\x1b\x29\xa7\ \x16\x22\xa1\x12\x21\x9e\x17\x33\xcb\x1a\x4b\xd1\x32\x6f\xdb\x2b\ \x6e\xd8\x1c\x54\xac\x12\x3c\x98\x1a\x4b\xac\x0d\x25\x61\x0b\x16\ \x42\x16\x2a\x93\x27\x47\xdb\x30\x57\xe2\x00\x00\x00\x1d\x34\x30\ \x20\x39\x35\x17\x24\x21\x19\x25\x23\x15\x22\x1d\x16\x23\x20\x16\ \x24\x20\x15\x1e\x1b\x14\x1f\x1c\x17\x28\x21\x1d\x33\x31\x1a\x2b\ \x27\x16\x1e\x1a\x2c\x40\x5b\x1b\x1d\x1e\x1b\x22\x22\x1d\x27\x23\ \x1c\x2b\x22\x1e\x33\x2b\x26\x3b\x37\x29\x41\x3e\x2c\x47\x3f\x2d\ \x4a\x42\x34\x59\x55\x3e\x72\x71\x45\x7b\x86\x4a\x82\x98\x47\x7c\ \x94\x44\x77\x8d\x4c\x84\x9a\x55\x90\xae\x56\x92\xbb\x52\x90\xbe\ \x53\x91\xbd\x54\x93\xbf\x58\x94\xc2\x51\x92\xbc\x49\x88\xb0\x27\ \x58\x76\x30\x5c\x98\x49\x47\x92\x66\x60\xbb\x49\x4b\xa1\x49\x54\ \x85\x41\x56\x7c\x40\x50\x76\x44\x53\x9e\x34\x49\xa8\x25\x3d\x9b\ \x1b\x2f\x92\x25\x39\x98\x28\x3a\xaa\x0c\x17\xa8\x07\x0f\x8f\x0b\ \x17\xa9\x07\x13\xa1\x11\x1c\xa8\x0e\x18\xa6\x08\x16\xaa\x08\x15\ \xa6\x07\x15\xa9\x06\x12\xaa\x06\x12\xac\x09\x15\xaa\x0a\x16\xaa\ \x0c\x18\xaf\x0f\x1c\xa6\x13\x1e\x85\x0d\x3e\xad\x0f\x57\xc3\x2b\ \x51\x88\x45\x51\x65\x53\x4d\x52\x62\x54\x49\x65\x58\x57\x4c\x3f\ \x2a\x4a\x3b\x24\x43\x35\x22\x45\x3a\x21\x15\x18\x0d\x15\x16\x12\ \x4c\x52\x42\x3e\x40\x30\x46\x48\x3a\x33\x3d\x2f\x1a\x1e\x0c\x24\ \x28\x19\x27\x2e\x20\x13\x16\x09\x22\x23\x1b\x37\x3a\x2b\x09\x0c\ \x07\x04\x06\x06\x08\x0a\x09\x1b\x1b\x1f\x1f\x1f\x22\x1e\x20\x27\ \x29\x2c\x34\x20\x32\x4a\x11\x2f\x68\x0c\x29\x69\x0d\x2a\x65\x0e\ \x30\x6b\x12\x33\x6c\x0e\x30\x68\x11\x2d\x5b\x12\x2d\x54\x14\x30\ \x54\x17\x33\x48\x12\x30\x4e\x11\x2a\x44\x14\x2f\x56\x19\x37\x42\ \x1b\x38\x3c\x1d\x3d\x59\x19\x36\x52\x0b\x15\x19\x1b\x3b\x49\x1e\ \x36\x47\x19\x33\x39\x1b\x40\x4e\x1d\x44\x53\x1b\x42\x54\x20\x44\ \x54\x2c\x4c\x54\x28\x45\x4e\x2f\x4b\x62\x1b\x39\x63\x14\x33\x6d\ \x13\x31\x6d\x12\x33\x74\x15\x32\x74\x1b\x2a\x68\x19\x27\x82\x1c\ \x2f\x91\x15\x25\x98\x0e\x21\xa7\x0a\x21\xbd\x1f\x33\xc4\x2b\x3e\ \xb2\x27\x3a\xa4\x22\x37\xb2\x2d\x41\xc3\x3b\x53\xca\x23\x37\xa9\ \x2b\x3e\x97\x16\x29\x73\x14\x1e\x60\x0a\x14\x7d\x0f\x1d\xa8\x10\ \x23\xbf\x42\x67\xdd\x76\xad\xd5\x25\x7c\xc6\x1e\x64\xb0\x16\x44\ \x8f\x19\x3c\x8d\x1a\x3a\x91\x15\x2c\x81\x0e\x1b\x7b\x1c\x33\xc7\ \x24\x41\xda\x18\x2f\xd9\x00\x00\x00\x1d\x37\x35\x16\x27\x27\x11\ \x1c\x14\x12\x1e\x1b\x13\x20\x1b\x15\x26\x22\x17\x2c\x26\x18\x2c\ \x29\x18\x26\x28\x15\x1d\x21\x1f\x2a\x2e\x17\x1d\x1e\x0e\x12\x13\ \x40\x4e\x5c\x11\x15\x15\x1a\x1e\x21\x14\x19\x19\x15\x1b\x17\x14\ \x1e\x16\x19\x1d\x1a\x17\x23\x1d\x18\x26\x21\x1b\x2b\x29\x1e\x30\ \x2d\x1f\x31\x2b\x23\x38\x2d\x26\x40\x33\x31\x4e\x43\x39\x5e\x57\ \x38\x64\x61\x3e\x6b\x6b\x42\x73\x6f\x4f\x7f\x81\x4f\x87\x98\x51\ \x8c\xa2\x55\x91\xac\x55\x95\xb0\x52\x94\xb7\x51\x94\xbd\x4a\x7a\ \xb6\x59\x5b\xc9\x4f\x57\xaf\x3b\x45\x87\x4e\x56\x87\x47\x52\x8c\ \x40\x4e\x8f\x43\x52\xad\x3d\x53\x94\x33\x45\x8a\x2e\x3f\x9e\x24\ \x38\x98\x15\x28\xa3\x08\x12\xa7\x0a\x16\x96\x09\x16\xab\x08\x14\ \xa4\x08\x13\x9f\x07\x14\xa6\x05\x14\xaa\x05\x14\xa7\x06\x14\xaa\ \x04\x12\xab\x05\x12\xb0\x08\x16\xa6\x0a\x19\xb0\x0d\x1a\xab\x0e\ \x18\x9e\x0e\x17\x91\x16\x38\xb5\x19\x51\xba\x45\x59\x86\x5a\x55\ \x6a\x66\x5e\x5c\x55\x4d\x38\x5c\x4f\x35\x51\x42\x29\x4a\x3a\x23\ \x59\x49\x37\x59\x48\x2f\x33\x36\x22\x18\x1e\x14\x57\x60\x53\x4d\ \x54\x49\x39\x3b\x2f\x1b\x1e\x12\x1e\x22\x10\x1b\x21\x0f\x1a\x21\ \x11\x0f\x14\x0a\x41\x40\x33\x32\x2f\x26\x07\x09\x08\x05\x06\x08\ \x06\x07\x05\x15\x15\x17\x21\x23\x27\x1e\x20\x26\x20\x24\x30\x1d\ \x25\x37\x16\x2b\x59\x0e\x29\x67\x0f\x2c\x64\x0f\x2c\x69\x0d\x2c\ \x67\x0f\x33\x6b\x0d\x2f\x6d\x0d\x29\x60\x12\x2e\x4f\x16\x32\x4f\ \x11\x30\x4e\x11\x31\x5c\x14\x2f\x52\x19\x39\x4a\x17\x38\x59\x17\ \x35\x60\x14\x36\x78\x08\x13\x28\x1c\x2f\x3f\x24\x3e\x50\x13\x24\ \x2e\x18\x34\x4c\x1d\x3c\x54\x21\x3f\x53\x20\x42\x5c\x2e\x54\x6b\ \x23\x43\x67\x16\x36\x6c\x11\x39\x80\x11\x36\x7c\x14\x36\x78\x13\ \x38\x7b\x13\x32\x7d\x14\x25\x98\x20\x31\xbb\x1d\x2b\xa7\x15\x25\ \xbd\x22\x34\xcf\x1f\x34\xbe\x15\x2a\xab\x22\x39\xbc\x38\x4c\xc7\ \x33\x48\xbb\x38\x4e\xc3\x29\x42\xcf\x1e\x33\xa8\x21\x3b\x94\x05\ \x0f\x46\x0b\x15\x77\x16\x26\xca\x11\x29\xd0\x21\x46\xc4\x27\x41\ \x8f\x2e\x4c\x88\x32\x70\xbd\x24\x63\xb1\x19\x59\xb3\x21\x4f\x9f\ \x18\x38\x9b\x1c\x3d\xc8\x1d\x44\xc9\x24\x49\xd1\x21\x3a\xcf\x19\ \x33\xb9\x00\x00\x00\x1b\x2e\x27\x15\x24\x1c\x11\x1d\x1a\x16\x27\ \x28\x1f\x38\x3a\x1c\x36\x31\x17\x2c\x25\x1e\x35\x34\x20\x37\x37\ \x23\x40\x4d\x27\x47\x52\x1b\x2c\x32\x12\x1c\x23\x2a\x34\x3d\x11\ \x17\x1a\x15\x1a\x1d\x12\x14\x15\x0f\x11\x12\x14\x17\x17\x12\x17\ \x17\x14\x1a\x18\x16\x1d\x1c\x18\x21\x21\x1b\x23\x21\x1a\x27\x26\ \x1b\x29\x29\x1e\x2e\x2c\x20\x2e\x2d\x21\x30\x30\x22\x32\x2c\x23\ \x34\x2d\x22\x37\x31\x26\x3b\x33\x2d\x43\x3c\x30\x4f\x44\x35\x57\ \x4d\x3a\x69\x65\x42\x73\x72\x44\x71\x6d\x37\x65\x8d\x1a\x53\xa6\ \x11\x45\x99\x1d\x4b\x99\x3b\x50\x7e\x4b\x59\x7e\x40\x51\x9c\x3b\ \x49\x89\x3d\x52\x82\x36\x49\x8b\x20\x35\x92\x16\x2b\x91\x12\x24\ \xb4\x09\x12\x9f\x0c\x16\x94\x09\x14\x97\x0a\x16\x98\x09\x14\xa4\ \x07\x14\xad\x05\x12\xa7\x06\x13\xa8\x06\x14\xac\x06\x13\xac\x05\ \x13\xac\x06\x15\xb2\x0d\x1a\xaa\x0d\x18\xa0\x13\x21\xa4\x13\x20\ \x9f\x19\x28\xa1\x20\x43\xb7\x4b\x6d\xc5\x69\x63\x99\x5b\x4d\x39\ \x62\x57\x43\x5e\x4f\x34\x54\x43\x23\x50\x3e\x28\x51\x3f\x29\x4b\ \x3d\x2e\x4b\x3f\x2a\x46\x4b\x3e\x49\x53\x3f\x20\x27\x18\x1b\x1e\ \x19\x0f\x11\x0c\x1b\x1e\x12\x1e\x25\x1e\x19\x1f\x17\x19\x1e\x12\ \x19\x1f\x15\x15\x16\x13\x0c\x0b\x0b\x0c\x0b\x0b\x0e\x0c\x0f\x16\ \x13\x15\x1c\x1d\x1f\x21\x21\x25\x22\x26\x31\x20\x28\x3d\x1d\x2d\ \x5a\x0e\x28\x69\x0f\x2a\x65\x0f\x31\x69\x0f\x2e\x68\x0d\x2c\x68\ \x0f\x32\x6c\x0f\x30\x6b\x14\x38\x77\x13\x34\x59\x14\x32\x4f\x16\ \x38\x60\x18\x35\x50\x15\x2c\x34\x18\x33\x41\x0f\x2d\x5c\x1b\x3b\ \x7c\x22\x38\x61\x0b\x16\x24\x39\x65\x8b\x1f\x37\x49\x1a\x35\x4f\ \x2f\x52\x75\x32\x5a\x82\x41\x6a\x94\x1a\x3c\x6c\x11\x31\x74\x15\ \x37\x7b\x13\x3a\x7f\x10\x35\x80\x14\x38\x7c\x11\x34\x79\x17\x33\ \x81\x1d\x2f\xa8\x14\x26\xc6\x1d\x31\xc7\x1f\x33\xbf\x27\x3a\xbc\ \x1f\x31\xbf\x29\x3b\xc9\x27\x3a\xc0\x2c\x41\xbe\x24\x38\xb4\x3a\ \x54\xbd\x85\x94\xd1\x75\x88\xb7\x44\x60\xa2\x24\x3b\x78\x15\x23\ \x7d\x1c\x2e\xaa\x25\x42\xa3\x23\x45\x9d\x25\x40\x9b\x24\x41\xa3\ \x33\x59\xaf\x27\x52\x99\x1f\x46\x8a\x1b\x41\x7a\x1c\x45\x80\x1c\ \x44\x8a\x1b\x3c\x8a\x20\x43\x9b\x1c\x45\x9a\x19\x40\x9c\x00\x00\ \x00\x1e\x32\x38\x14\x2a\x27\x1c\x33\x31\x24\x43\x42\x28\x4b\x4b\ \x25\x41\x3e\x1d\x36\x31\x23\x3f\x3b\x1f\x3d\x3e\x33\x63\x62\x33\ \x62\x60\x2e\x5b\x5d\x1a\x2c\x2c\x1e\x2e\x2f\x15\x22\x24\x16\x24\ \x26\x12\x1b\x1d\x10\x19\x19\x12\x17\x18\x15\x1b\x1d\x13\x17\x17\ \x12\x16\x15\x13\x19\x17\x18\x1a\x1a\x19\x1f\x1f\x19\x24\x23\x1a\ \x22\x24\x1a\x23\x25\x17\x22\x21\x1a\x1f\x23\x1a\x23\x24\x19\x25\ \x26\x1d\x2a\x29\x1f\x2e\x2b\x21\x32\x2d\x23\x35\x33\x23\x37\x35\ \x1f\x3b\x36\x22\x43\x3f\x33\x58\x6d\x22\x60\xad\x10\x44\x9b\x17\ \x4c\x9d\x1c\x4a\x96\x29\x50\x9e\x36\x51\x79\x43\x53\x7b\x3f\x4e\ \x8f\x27\x3a\x9b\x17\x26\x84\x16\x2a\x8a\x0e\x22\xa9\x05\x10\x95\ \x08\x14\x95\x0b\x12\x8e\x08\x12\xa2\x08\x12\xac\x07\x13\xa4\x08\ \x14\xae\x07\x13\xac\x0a\x16\xad\x08\x14\xad\x06\x14\xaa\x05\x14\ \xb0\x0b\x18\xa1\x0c\x1c\xa9\x10\x20\xaa\x16\x25\xa5\x19\x2e\xa8\ \x3a\x61\xc6\x63\x7a\xce\x57\x51\x71\x59\x4e\x33\x5e\x50\x32\x4d\ \x3e\x21\x47\x37\x20\x55\x43\x2c\x5b\x48\x30\x4b\x3c\x27\x53\x46\ \x33\x31\x32\x1f\x2d\x38\x2f\x16\x1c\x14\x33\x36\x26\x22\x29\x18\ \x0a\x0d\x07\x0f\x12\x0f\x07\x09\x07\x05\x07\x06\x26\x26\x26\x35\ \x31\x2c\x2c\x27\x26\x25\x21\x23\x26\x1f\x22\x21\x1b\x1d\x25\x25\ \x2b\x28\x2f\x3e\x20\x2b\x4e\x1e\x2c\x52\x1a\x27\x4a\x15\x29\x57\ \x10\x2f\x71\x0e\x2c\x68\x12\x31\x67\x0f\x32\x6c\x0d\x2e\x6b\x10\ \x30\x69\x12\x35\x6d\x10\x32\x6f\x14\x2d\x54\x17\x28\x35\x18\x30\ \x45\x14\x2f\x60\x10\x2b\x5c\x0e\x2f\x76\x13\x33\x81\x1d\x39\x78\ \x0c\x17\x28\x22\x3c\x52\x39\x5f\x89\x22\x45\x66\x29\x54\x76\x27\ \x56\x81\x41\x6c\x92\x1d\x41\x7e\x12\x37\x81\x12\x38\x7d\x11\x39\ \x81\x11\x38\x82\x15\x3b\x81\x16\x38\x7d\x16\x38\x84\x29\x39\xb4\ \x23\x36\xd2\x2f\x43\xcc\x26\x3a\xb8\x2e\x3e\xbd\x28\x37\xc8\x27\ \x39\xc6\x21\x35\xc8\x1d\x32\xbc\x22\x37\xb4\x6b\x7e\xce\xf0\xf3\ \xf8\xe1\xe7\xf0\xc4\xd1\xe3\xaa\xbc\xd9\x83\x95\xba\x5f\x6e\x99\ \x3a\x49\x7a\x29\x3b\x70\x24\x3b\x71\x1f\x31\x69\x22\x38\x7b\x25\ \x3f\x7e\x25\x45\x85\x22\x42\x7e\x1a\x39\x7b\x1b\x33\x70\x19\x32\ \x7d\x19\x38\x85\x1f\x4e\x94\x1a\x4e\x8e\x00\x00\x00\x23\x39\x3d\ \x20\x3b\x3b\x22\x3c\x39\x27\x44\x42\x22\x40\x3d\x1c\x32\x30\x25\ \x42\x44\x27\x46\x4b\x22\x44\x3e\x25\x41\x37\x28\x44\x44\x30\x5b\ \x53\x1d\x34\x36\x1f\x2e\x33\x1c\x2c\x2b\x26\x4b\x4f\x19\x2c\x2b\ \x16\x27\x28\x15\x25\x25\x1e\x2d\x33\x1b\x26\x28\x1c\x27\x2f\x1a\ \x25\x2e\x18\x1e\x20\x18\x20\x24\x18\x20\x21\x19\x23\x27\x1a\x22\ \x27\x18\x20\x24\x18\x1e\x25\x16\x1c\x20\x15\x1b\x22\x19\x1f\x23\ \x1c\x22\x26\x1b\x23\x26\x1f\x29\x28\x22\x38\x3c\x21\x3b\x3e\x23\ \x37\x38\x27\x38\x43\x2d\x6a\xb6\x15\x49\xa0\x14\x48\x9b\x19\x4a\ \x9c\x20\x52\x9f\x29\x5a\xa2\x43\x57\x8d\x2e\x39\x86\x20\x31\x8d\ \x13\x28\x9b\x0d\x1a\x7a\x09\x18\x98\x0c\x16\x84\x0c\x17\x96\x0b\ \x14\x94\x09\x12\xa0\x07\x12\xaa\x06\x13\xa9\x07\x13\xb0\x07\x12\ \xa7\x07\x14\xaa\x08\x15\xae\x0a\x18\xb1\x08\x15\xa9\x0a\x18\xa7\ \x0b\x19\xaf\x12\x1f\xa8\x14\x26\xa8\x27\x3c\xbf\x58\x64\xc8\x6a\ \x61\x7b\x5d\x51\x43\x5b\x4d\x31\x5f\x4e\x2d\x52\x42\x25\x4b\x3c\ \x26\x46\x36\x24\x49\x3a\x28\x4e\x40\x28\x4e\x3d\x25\x44\x3a\x28\ \x20\x24\x1a\x1f\x23\x14\x14\x18\x0d\x20\x25\x13\x19\x20\x11\x03\ \x03\x05\x04\x05\x06\x06\x07\x08\x22\x20\x1d\x31\x2a\x26\x28\x23\ \x24\x27\x20\x22\x21\x1f\x28\x21\x27\x44\x21\x32\x63\x1e\x40\x8b\ \x1e\x31\x75\x1e\x2a\x5a\x21\x2c\x54\x1d\x2f\x57\x11\x30\x6b\x0c\ \x2d\x6f\x0e\x2d\x6c\x12\x34\x6e\x11\x34\x6d\x10\x2d\x67\x10\x2d\ \x67\x10\x35\x70\x10\x31\x6c\x12\x27\x47\x13\x29\x48\x0b\x29\x6e\ \x0c\x2c\x72\x0f\x2f\x76\x0f\x2f\x77\x12\x2f\x70\x16\x30\x5a\x19\ \x42\x78\x22\x54\x96\x20\x52\x94\x15\x43\x83\x14\x3f\x79\x17\x41\ \x7f\x13\x3a\x82\x15\x37\x7e\x12\x35\x7b\x12\x37\x81\x10\x36\x80\ \x17\x3d\x82\x19\x46\x8f\x19\x35\x85\x23\x33\xbc\x25\x36\xd0\x16\ \x27\xd3\x35\x47\xd1\x1e\x31\xcf\x1f\x34\xd3\x37\x4c\xcf\x2c\x3f\ \xc4\x1f\x31\xaa\x2e\x43\xad\xc6\xd1\xe8\xf3\xf4\xfb\xe4\xea\xf3\ \xd7\xdf\xe9\xd3\xdc\xe6\xcf\xd9\xe5\xc9\xd4\xe2\xb9\xc7\xdd\xa0\ \xae\xcc\x81\x90\xb2\x67\x75\x98\x47\x51\x76\x18\x1f\x3c\x10\x1d\ \x38\x50\x69\x8b\x40\x53\x88\x13\x22\x54\x12\x21\x57\x16\x28\x61\ \x18\x2b\x63\x1d\x43\x93\x00\x00\x00\x22\x3a\x3a\x20\x41\x41\x31\ \x48\x55\x1e\x30\x25\x1e\x35\x2f\x21\x3c\x37\x2c\x49\x4a\x42\x5a\ \x56\x25\x37\x36\x21\x39\x3a\x2b\x4f\x50\x2a\x52\x52\x32\x56\x6c\ \x2b\x39\x43\x1d\x2d\x34\x2a\x55\x54\x26\x4a\x50\x24\x42\x46\x22\ \x3f\x45\x24\x41\x72\x23\x3f\x64\x29\x46\x69\x25\x3f\x67\x1d\x2e\ \x4b\x1a\x2a\x43\x1e\x2e\x3d\x20\x30\x3a\x1e\x29\x34\x1d\x24\x2c\ \x18\x1f\x26\x17\x1b\x20\x17\x1c\x1d\x1b\x1f\x1f\x1b\x1e\x1f\x18\ \x1c\x1f\x1b\x22\x27\x23\x37\x3f\x23\x32\x39\x26\x36\x3e\x24\x36\ \x38\x2c\x64\xac\x16\x4d\xa3\x13\x48\x9c\x17\x47\x9c\x21\x50\x9e\ \x29\x5c\xab\x38\x5a\xa1\x30\x42\x8d\x32\x40\x87\x28\x3a\x8c\x0e\ \x1f\x86\x09\x11\x9d\x0a\x0f\x65\x0d\x17\x99\x08\x10\x99\x09\x13\ \xa9\x06\x11\xa6\x08\x16\xb2\x06\x13\xaa\x0b\x16\xa6\x07\x13\xab\ \x0a\x15\xab\x06\x15\xa7\x09\x18\xad\x08\x18\xac\x0c\x19\xa8\x11\ \x23\xaa\x13\x25\xa8\x36\x46\xce\x56\x5d\xc5\x65\x5f\x69\x61\x53\ \x39\x54\x44\x27\x5e\x51\x40\x64\x5e\x56\x4e\x48\x41\x40\x38\x31\ \x43\x3a\x30\x48\x3e\x30\x4a\x3c\x2e\x43\x40\x36\x2a\x31\x1c\x18\ \x1e\x0e\x0f\x13\x0c\x21\x27\x17\x22\x2a\x17\x04\x06\x08\x0d\x10\ \x10\x0b\x0c\x0d\x0e\x0d\x0d\x31\x2d\x30\x2e\x2d\x37\x2c\x2e\x41\ \x44\x4e\x6f\x32\x57\x96\x15\x50\xaf\x19\x43\xa1\x1f\x45\x99\x22\ \x3d\x7c\x23\x3a\x66\x22\x3c\x62\x14\x35\x70\x10\x31\x70\x0e\x2f\ \x72\x0b\x2a\x6d\x12\x31\x6c\x14\x35\x71\x10\x30\x6b\x0e\x2c\x69\ \x14\x35\x75\x14\x32\x70\x0e\x2d\x6c\x0b\x29\x71\x0c\x2b\x70\x11\ \x33\x7e\x0f\x2f\x76\x0f\x2e\x6e\x19\x40\x7f\x17\x4b\x92\x12\x44\ \x8c\x11\x45\x94\x11\x44\x90\x13\x3c\x7f\x1a\x41\x85\x15\x3b\x82\ \x13\x35\x7a\x10\x38\x80\x0d\x35\x82\x11\x39\x82\x1e\x48\x91\x13\ \x3b\x80\x1a\x2b\x80\x1d\x2f\xa5\x1e\x30\xc0\x1b\x2b\xe2\x1a\x28\ \xe6\x1e\x30\xe8\x1d\x31\xdc\x28\x3c\xcd\x21\x36\xba\x26\x3d\xaf\ \x53\x69\xb5\xf6\xfa\xfc\xef\xf2\xf9\xe7\xeb\xf4\xde\xe6\xef\xdd\ \xe4\xed\xda\xe3\xea\xd8\xdf\xe9\xd4\xdc\xe7\xd0\xd9\xe3\xca\xd3\ \xe0\xc0\xcb\xdb\xa7\xb0\xc6\x42\x45\x5c\x10\x1e\x3c\x58\x71\x8e\ \x84\x92\xa4\x12\x20\x37\x2a\x3a\x5f\x07\x0e\x27\x02\x07\x1b\x07\ \x12\x3b\x00\x00\x00\x20\x38\x33\x20\x3b\x36\x2d\x41\x45\x18\x22\ \x29\x16\x25\x24\x1b\x30\x2e\x1b\x32\x2a\x21\x32\x31\x26\x45\x54\ \x36\x66\x6d\x36\x6f\x73\x30\x66\x67\x3a\x5d\x58\x30\x41\x48\x5a\ \x70\x7d\x2f\x55\x61\x32\x61\x6a\x2e\x48\x51\x2f\x5c\x67\x9d\xa8\ \x9d\x7f\x90\x83\x78\x8b\x89\x9a\xad\xaf\x87\xa0\xb9\x71\xa1\xdc\ \x54\x83\xcc\x40\x6e\xbc\x34\x63\xb4\x29\x53\xa7\x1f\x44\x9f\x1b\ \x3d\x93\x19\x30\x71\x16\x20\x38\x17\x21\x3c\x19\x2b\x55\x1e\x36\ \x55\x21\x39\x50\x26\x3b\x51\x26\x39\x48\x25\x32\x39\x39\x60\x95\ \x12\x4c\xa1\x15\x4e\xa4\x17\x4a\xa1\x1c\x4c\xa0\x22\x52\x9d\x29\ \x59\xa3\x25\x54\xa6\x2e\x51\x8b\x33\x45\x6c\x22\x33\xa2\x09\x14\ \x9f\x0a\x0f\x6a\x0c\x11\x93\x08\x10\x92\x06\x13\xad\x09\x13\xa1\ \x0a\x16\xb3\x0c\x16\xa9\x08\x11\xa0\x08\x14\xac\x07\x15\xa3\x0b\ \x17\xa5\x07\x17\xb2\x09\x15\xa9\x12\x23\xa2\x1f\x3a\x9d\x2d\x5a\ \xb8\x68\x6f\xe1\x55\x51\x80\x5b\x4f\x4d\x5b\x4b\x2d\x7a\x6e\x66\ \xac\xb9\xc3\x74\x8d\x9f\x5e\x71\x7f\x4b\x55\x5d\x23\x24\x2a\x11\ \x11\x15\x1b\x23\x35\x29\x31\x3f\x2d\x3a\x37\x24\x34\x2c\x1b\x24\ \x1e\x46\x4a\x47\x27\x2d\x20\x0c\x10\x11\x0c\x0f\x0f\x0d\x0c\x0d\ \x09\x08\x0a\x41\x3b\x41\x54\x53\x66\x5b\x6b\x96\x4e\x5e\x7b\x2d\ \x5b\x9f\x1a\x52\xb8\x1c\x46\xa2\x1e\x4b\x9e\x26\x4b\x82\x1f\x52\ \x98\x21\x4b\x7d\x1a\x41\x7d\x11\x33\x75\x10\x34\x78\x10\x36\x79\ \x10\x30\x73\x0f\x35\x77\x0e\x33\x78\x0e\x2f\x75\x10\x30\x72\x15\ \x35\x7a\x18\x3d\x86\x11\x2f\x78\x10\x2e\x73\x13\x35\x7e\x1d\x41\ \x80\x19\x4d\x92\x25\x65\xab\x13\x4a\x98\x10\x41\x8e\x13\x46\x94\ \x16\x45\x8d\x15\x40\x82\x14\x3e\x81\x14\x3b\x7f\x16\x39\x7f\x12\ \x3b\x85\x11\x3a\x88\x16\x41\x8a\x1b\x48\x92\x18\x30\x62\x2d\x39\ \x6d\x22\x33\x89\x22\x34\xb8\x17\x26\xdf\x20\x2c\xef\x1d\x2f\xea\ \x1b\x2d\xde\x21\x33\xcc\x31\x47\xbb\x37\x52\xbe\x96\xa6\xd2\xf6\ \xf8\xfd\xf2\xf3\xf9\xe8\xec\xf5\xe3\xe9\xf1\xe3\xe8\xf1\xe1\xe7\ \xf0\xdf\xe7\xef\xde\xe5\xee\xde\xe3\xec\xd9\xe0\xe8\xd4\xdb\xe4\ \xc2\xc8\xd4\x57\x60\x83\x27\x3c\x6e\x5d\x70\x95\x8b\x95\xa1\x1a\ \x25\x2b\x58\x68\x74\x4f\x5c\x69\x3d\x4d\x68\x0c\x18\x36\x00\x00\ \x00\x1d\x31\x33\x1c\x35\x33\x1c\x31\x36\x1f\x31\x3b\x18\x2a\x27\ \x1b\x31\x2c\x1a\x2e\x2a\x2a\x4d\x4c\x52\x71\x69\x39\x59\x54\x37\ \x6b\x67\x33\x60\x5c\x22\x39\x38\x30\x5a\x5b\x48\x64\x6a\x3d\x65\ \x70\x3a\x5f\x65\x30\x45\x4b\x3c\x58\x63\x4b\x5b\x60\x35\x41\x44\ \x2a\x32\x2e\x40\x3f\x30\x48\x3e\x26\x81\x77\x51\xeb\xeb\xd9\xf7\ \xfe\xff\xf4\xfd\xfd\xeb\xfa\xfd\xe7\xf8\xfd\xdb\xf1\xfd\xba\xd0\ \xe0\x76\x8b\xa9\x67\x85\xb2\x91\xbc\xef\x85\xb2\xf1\x82\xa9\xe7\ \x6b\x98\xdc\x68\x90\xd0\x6b\x89\xc3\x53\x75\xb0\x10\x4d\xa3\x14\ \x4a\xa1\x16\x4b\xa2\x17\x4d\xa0\x25\x58\xa5\x23\x51\x9c\x21\x53\ \xa3\x22\x50\xa1\x27\x47\xa4\x15\x20\x72\x1b\x2a\xaa\x04\x09\x6a\ \x09\x12\x9e\x06\x0f\x91\x07\x12\xa9\x07\x14\xa5\x06\x16\xb0\x09\ \x16\xa7\x08\x14\xb0\x06\x10\xa5\x08\x14\x9f\x09\x17\xb3\x09\x17\ \xa1\x12\x20\x9c\x3a\x4f\x62\x58\x76\x51\x5f\x80\x57\x3f\x5e\xbe\ \x4c\x55\xb8\x58\x4b\x4f\x84\x78\x70\xe8\xe7\xed\xc1\xd3\xde\x70\ \x8b\x9d\x68\x7e\x8b\x60\x73\x7d\x46\x52\x5d\x14\x19\x1f\x09\x0c\ \x15\x09\x0d\x12\x11\x1a\x1f\x2a\x33\x32\x22\x2c\x27\x1e\x24\x1e\ \x19\x20\x1c\x10\x15\x15\x11\x0f\x0f\x10\x0e\x10\x22\x22\x24\x44\ \x3f\x45\x5c\x56\x5d\x88\x98\xbe\x7d\x8a\xb0\x37\x5a\x99\x1a\x4c\ \xa5\x28\x57\x98\x28\x44\x6e\x24\x57\x9a\x25\x56\x8c\x20\x41\x68\ \x24\x43\x6b\x18\x3b\x7d\x11\x35\x77\x14\x36\x76\x10\x39\x7d\x0f\ \x35\x83\x12\x33\x7a\x0f\x32\x72\x11\x33\x7b\x16\x36\x82\x1d\x3b\ \x7c\x2e\x57\x95\x31\x5f\x9f\x3b\x6c\xa8\x54\x96\xca\x28\x6b\xb2\ \x1b\x62\xaf\x15\x4f\x9a\x16\x47\x91\x11\x46\x93\x17\x45\x8c\x15\ \x3f\x7e\x18\x41\x80\x18\x3e\x81\x16\x3c\x82\x16\x3f\x8c\x17\x45\ \x8f\x17\x44\x8d\x15\x49\x92\x1f\x38\x68\x3d\x4a\x5f\x44\x4a\x50\ \x3e\x45\x6e\x48\x75\xd1\x28\x58\xeb\x29\x64\xf6\x30\x70\xf5\x26\ \x44\xce\x27\x3e\xb7\x2a\x48\xbc\xc5\xd2\xe6\xef\xf0\xf7\xec\xef\ \xf7\xe8\xec\xf4\xe6\xeb\xf2\xe5\xeb\xf3\xe5\xe9\xf1\xe3\xea\xf0\ \xe3\xe9\xf0\xe4\xe8\xf0\xe0\xe6\xed\xde\xe4\xe9\xc8\xce\xda\x5e\ \x6f\x9f\x43\x5f\x8a\x7f\x94\xb1\x88\x93\x9e\x17\x21\x26\x56\x66\ \x70\x44\x52\x52\x71\x82\x83\x25\x2b\x2a\x00\x00\x00\x26\x47\x45\ \x1e\x37\x33\x22\x39\x45\x21\x38\x39\x20\x3a\x3d\x1a\x30\x2d\x16\ \x28\x23\x1f\x38\x2f\x22\x41\x39\x25\x44\x3d\x27\x4e\x47\x1f\x3d\ \x3a\x28\x4a\x45\x1f\x30\x2f\x2a\x41\x43\x33\x4d\x52\x2c\x45\x47\ \x1e\x2d\x28\x20\x33\x38\x51\x81\xa2\x3b\x56\x6a\x2b\x42\x58\x26\ \x3b\x4f\x2a\x3f\x56\x2e\x48\x62\x57\x58\x43\xb1\xa2\x7a\xc7\xbc\ \xa6\xd2\xcd\xbb\xd0\xc6\xaa\xcc\xbd\x9c\xa8\x94\x78\x86\x7e\x6c\ \x9a\x9a\x91\xe5\xdc\xd2\xf6\xf0\xe2\xfd\xf6\xea\xff\xfe\xf5\xfa\ \xfb\xf6\xf2\xf9\xf8\xad\xba\xcf\x1c\x5b\xad\x0d\x41\x9b\x12\x48\ \x9f\x16\x4c\xa0\x1f\x54\xa6\x23\x54\xa2\x29\x56\x97\x32\x4d\x63\ \x23\x36\x77\x22\x31\x7b\x24\x32\x97\x0f\x16\x73\x27\x2f\x9a\x03\ \x0b\x85\x07\x12\xa2\x09\x15\xa9\x0a\x17\xa7\x09\x15\xac\x09\x17\ \xb1\x09\x13\xa6\x0b\x16\xa4\x0b\x14\x9e\x0d\x17\xa5\x36\x49\x67\ \x6d\x8a\x46\x68\x82\x36\x60\x7a\x41\x39\x69\xb1\x45\x64\xc7\x87\ \x8c\xc7\xeb\xed\xf1\xfa\xfc\xff\xea\xf0\xf6\x76\x91\xa1\x61\x7c\ \x8a\x5a\x71\x7c\x5b\x6d\x76\x42\x4f\x56\x10\x12\x10\x0d\x0c\x0a\ \x0b\x0b\x0b\x10\x0f\x0d\x20\x1c\x18\x31\x30\x26\x39\x41\x2f\x44\ \x47\x3c\x45\x42\x45\x3b\x3a\x4e\x54\x4b\x53\x47\x40\x3e\x99\xa3\ \xaa\xa3\xb0\xb7\x76\x7b\x99\x3c\x60\xa5\x1b\x56\xb8\x1c\x50\xab\ \x24\x4f\x99\x29\x50\x89\x2f\x50\x73\x25\x42\x62\x13\x38\x71\x0f\ \x32\x73\x12\x36\x79\x10\x35\x77\x11\x34\x75\x15\x3f\x88\x0f\x32\ \x80\x0e\x33\x79\x11\x35\x80\x10\x30\x77\x10\x2a\x62\x1a\x47\x8b\ \x4f\x93\xc8\x68\xad\xda\x43\x91\xce\x23\x68\xb6\x1b\x5b\xa9\x19\ \x47\x90\x14\x48\x94\x14\x42\x95\x14\x3d\x85\x15\x3c\x7d\x17\x43\ \x84\x1b\x48\x92\x1a\x44\x8f\x1f\x4d\x96\x18\x49\x8f\x15\x43\x8c\ \x18\x4a\x96\x28\x3c\x61\x49\x50\x4b\x52\x56\x4a\x59\x6e\x79\x48\ \x86\xd0\x2f\x82\xf1\x2f\x84\xf5\x31\x7f\xf1\x2d\x54\xc9\x72\x86\ \xcc\x50\x74\xc6\xe3\xed\xf5\xe7\xea\xf3\xea\xed\xf6\xe9\xec\xf4\ \xe8\xec\xf3\xe6\xec\xf4\xe7\xec\xf2\xe7\xeb\xf1\xe7\xeb\xf1\xe6\ \xeb\xef\xe5\xe9\xee\xe4\xe8\xec\xc1\xc6\xce\x53\x61\x79\x66\x81\ \x9d\xb5\xc9\xd8\x7a\x7e\x86\x15\x1f\x21\x34\x3d\x46\x47\x51\x51\ \x52\x5b\x59\x1e\x25\x1d\x00\x00\x00\x25\x46\x51\x2c\x49\x58\x2b\ \x4c\x5e\x27\x41\x46\x2c\x4a\x5a\x24\x3c\x3a\x1f\x37\x31\x1e\x35\ \x2e\x22\x42\x40\x2a\x4f\x4c\x2a\x52\x4c\x28\x4a\x44\x24\x3b\x39\ \x1a\x26\x2a\x1f\x2f\x32\x2d\x4b\x4d\x29\x4a\x4b\x18\x25\x23\x20\ \x36\x36\x40\x62\x64\x3e\x57\x67\x3e\x5a\x6d\x3b\x57\x68\x38\x52\ \x63\x3e\x64\x80\x35\x58\x74\x2b\x43\x4c\x3d\x57\x5b\x45\x61\x5c\ \x38\x4a\x3e\x33\x3e\x3c\x38\x57\x70\x33\x45\x50\x39\x45\x4b\x54\ \x48\x37\x6f\x62\x42\x84\x76\x58\x9d\x9b\x84\xa5\xb2\xa8\xa0\xaf\ \xb4\x83\x95\x9d\x21\x5e\xb2\x0a\x3f\x9a\x12\x45\x9e\x19\x4a\x9c\ \x1e\x53\xa7\x20\x53\xa8\x24\x53\x97\x2d\x37\x60\x22\x2d\x7b\x22\ \x32\x96\x20\x2e\xa2\x14\x20\x83\x09\x10\x7f\x0b\x10\x81\x0a\x14\ \x99\x0a\x18\xad\x0d\x19\xa9\x07\x15\xb2\x08\x15\xab\x07\x12\x9d\ \x0a\x13\x96\x1a\x25\x74\x25\x32\x6f\x5e\x72\x5a\x71\x8a\x44\x6a\ \x82\x38\x5f\x7e\x57\x44\x7d\xc0\x8d\xae\xe1\xf2\xf4\xfe\xfb\xfd\ \xff\xf7\xf9\xfe\xf6\xf8\xfc\xc4\xd3\xde\x74\x93\xa9\x59\x72\x83\ \x55\x6a\x77\x5f\x71\x7f\x2f\x39\x3e\x0b\x0a\x0a\x0d\x0d\x0c\x0c\ \x0e\x0d\x0c\x0c\x0c\x11\x11\x10\x2d\x26\x1d\x43\x3e\x3f\x42\x46\ \x5d\x3b\x3c\x6c\x59\x5a\x80\x5d\x60\x75\x7c\x89\xa4\x7e\x70\x68\ \x5e\x3c\x27\x5b\x4d\x4e\x46\x53\x74\x4b\x43\x50\x41\x3c\x50\x34\ \x3c\x6b\x1f\x41\x95\x25\x48\x7f\x1c\x40\x7d\x12\x36\x7d\x0f\x2f\ \x71\x10\x35\x7c\x0c\x33\x74\x23\x57\x98\x13\x46\x99\x13\x3f\x8d\ \x13\x3e\x8b\x14\x35\x73\x14\x3b\x7e\x19\x43\x89\x2b\x6f\xb8\x55\ \x9f\xd3\x49\x91\xc7\x21\x60\xab\x17\x4a\x98\x15\x3f\x8e\x1a\x47\ \x92\x14\x3f\x95\x11\x35\x85\x17\x3d\x80\x1a\x51\x9a\x33\x6a\xaa\ \x17\x44\x8c\x15\x4b\x94\x17\x4a\x92\x17\x46\x8d\x1d\x4d\x98\x28\ \x48\x77\x43\x54\x5f\x4c\x53\x4a\x4f\x51\x3d\x51\x5f\x5e\x4d\x93\ \xe8\x36\x8d\xf5\x47\x96\xeb\x93\xad\xe2\xd3\xda\xec\xa8\xb9\xd6\ \xe2\xea\xf2\xe6\xea\xf2\xe8\xeb\xf2\xe8\xeb\xf2\xe8\xeb\xf3\xe8\ \xec\xf4\xe9\xed\xf3\xe9\xec\xf3\xe9\xed\xf2\xe7\xec\xf0\xe6\xeb\ \xef\xe5\xe9\xed\xaf\xb0\xb7\x4c\x5c\x6c\x8c\xa8\xbc\xc2\xd2\xdf\ \x4c\x4f\x4f\x20\x2b\x2a\x41\x4b\x55\x21\x29\x2d\x18\x20\x1d\x1d\ \x2a\x20\x00\x00\x00\x25\x44\x4b\x30\x4b\x4f\x31\x53\x5b\x28\x45\ \x42\x2a\x45\x44\x21\x35\x33\x19\x2d\x27\x1a\x2f\x2b\x20\x3d\x36\ \x25\x43\x3c\x25\x46\x40\x24\x46\x3a\x19\x2e\x29\x17\x24\x20\x17\ \x22\x1c\x19\x2d\x26\x22\x3b\x3b\x22\x31\x34\x20\x31\x34\x28\x3f\ \x3b\x32\x4c\x56\x36\x54\x5a\x30\x45\x45\x31\x49\x51\x46\x71\x83\ \x4c\x7a\x8f\x33\x47\x49\x2e\x44\x47\x25\x37\x36\x27\x3e\x40\x2c\ \x45\x46\x30\x46\x45\x33\x4a\x4d\x30\x48\x4b\x23\x35\x36\x1c\x2e\ \x2d\x1a\x2a\x2a\x23\x35\x2e\x35\x52\x4e\x44\x70\x76\x4d\x86\x9d\ \x2a\x5f\xa7\x09\x41\x9c\x14\x47\x9e\x18\x49\x9b\x1b\x4e\xa1\x1b\ \x4f\xa5\x20\x51\x9a\x3f\x4c\x44\x41\x44\x3e\x31\x3e\x75\x26\x36\ \x8a\x1d\x23\x5c\x34\x3a\x67\x1d\x29\x76\x15\x1d\x6c\x0b\x15\xa5\ \x09\x15\xae\x0a\x16\xb2\x16\x22\xaa\x15\x1d\x95\x11\x18\x52\x3b\ \x45\x35\x44\x51\x33\x47\x57\x2c\x5b\x6f\x31\x53\x6b\x3b\x80\x99\ \x9b\xc1\xd2\xe9\xfb\xfc\xfe\xfa\xfb\xfe\xf7\xfa\xfd\xf6\xf9\xfe\ \xf3\xf7\xfb\xed\xf0\xf5\xb2\xc4\xd0\x5f\x7d\x8e\x51\x6b\x7c\x63\ \x78\x87\x5a\x6c\x79\x0b\x0e\x0d\x0c\x0d\x0c\x09\x0a\x0b\x08\x0a\ \x0d\x0a\x0a\x0b\x15\x10\x0e\x20\x1e\x27\x24\x28\x3d\x44\x49\x8a\ \x46\x47\x5d\x54\x4d\x57\x59\x5c\x81\x47\x46\x53\x59\x37\x26\x65\ \x39\x1e\x60\x37\x21\x4d\x33\x27\x44\x2c\x20\x4e\x30\x24\x48\x3a\ \x45\x34\x48\x87\x1a\x53\xb9\x0d\x48\xab\x10\x33\x7a\x16\x3a\x88\ \x16\x44\x87\x24\x62\xa2\x13\x4a\x9c\x18\x4b\x98\x1f\x4f\x95\x24\ \x4a\x84\x1a\x45\x8b\x13\x42\x8f\x24\x71\xc0\x6e\xb2\xd9\x68\x9a\ \xc1\x2c\x5f\xb3\x15\x44\x99\x16\x40\x92\x15\x32\x7b\x13\x37\x90\ \x10\x31\x89\x17\x3d\x84\x1a\x5b\xab\x38\x6e\xaa\x17\x45\x8e\x16\ \x4c\x98\x17\x4b\x95\x19\x48\x90\x1d\x4c\x96\x28\x55\x8c\x3c\x59\ \x74\x55\x5e\x4f\x5c\x64\x4c\x58\x68\x48\x54\x83\xad\x36\x8f\xf5\ \x85\xb6\xed\xed\xf1\xfa\xf0\xf2\xf9\xe2\xe8\xf0\xd3\xde\xe8\xda\ \xe1\xea\xde\xe4\xec\xe4\xe9\xef\xe5\xeb\xf1\xe7\xec\xf0\xe8\xec\ \xf2\xe8\xec\xf1\xe9\xec\xf2\xe7\xec\xf0\xe7\xea\xef\xe1\xe4\xe7\ \x86\x88\x91\x6b\x81\x8d\xae\xc4\xd3\xb2\xbc\xc5\x24\x2a\x22\x5a\ \x6a\x6f\x3b\x44\x4d\x3f\x4e\x56\x29\x32\x32\x2b\x3f\x37\x00\x00\ \x00\x20\x37\x36\x22\x3f\x40\x1e\x34\x33\x1c\x31\x2b\x1c\x2c\x28\ \x19\x29\x26\x18\x2a\x25\x16\x26\x22\x19\x2f\x2c\x28\x48\x44\x28\ \x42\x3d\x28\x45\x45\x20\x3a\x37\x18\x2d\x28\x1b\x2d\x2d\x1d\x30\ \x33\x2a\x42\x4f\x2c\x43\x4f\x21\x33\x35\x23\x32\x34\x29\x3f\x46\ \x2a\x42\x4b\x20\x30\x35\x2f\x44\x4e\x36\x56\x5d\x3a\x57\x59\x25\ \x34\x36\x22\x30\x2e\x1f\x2c\x28\x20\x2b\x29\x20\x2e\x2e\x1f\x2e\ \x2d\x1f\x2a\x27\x19\x21\x1d\x19\x25\x22\x1b\x2a\x26\x1c\x2b\x27\ \x1e\x30\x32\x27\x42\x57\x29\x43\x52\x3c\x66\x79\x34\x64\xa3\x11\ \x50\xa8\x12\x44\x9c\x17\x4b\x9f\x1a\x4d\x9f\x19\x4e\xa1\x1c\x4d\ \xa1\x28\x52\x7e\x3b\x4a\x35\x57\x52\x28\x38\x4e\x35\x44\x58\x4c\ \x4a\x4e\x33\x4d\x5b\x39\x44\x55\x32\x32\x43\x4e\x27\x34\x73\x09\ \x12\xae\x27\x2f\xb7\x12\x1a\x66\x1a\x1e\x1f\x3c\x4a\x2a\x3b\x4a\ \x28\x3b\x4f\x2b\x3b\x50\x2d\x7b\x8c\x87\xdf\xe5\xee\xfb\xfb\xfe\ \xfb\xfb\xfe\xf9\xfa\xfd\xf8\xf9\xfe\xf5\xf8\xfd\xf1\xf5\xf9\xeb\ \xf0\xf4\xe2\xe8\xeb\xb0\xc0\xca\x6d\x87\x9a\x64\x7c\x8d\x64\x79\ \x86\x08\x0d\x0c\x0d\x0e\x0f\x2e\x35\x41\x41\x4d\x5a\x32\x3a\x44\ \x17\x19\x1d\x0f\x0d\x10\x19\x17\x1e\x1d\x1c\x37\x1d\x18\x33\x4c\ \x42\x44\x60\x51\x4b\x41\x4b\x58\x3d\x44\x4c\x4d\x39\x2f\x43\x30\ \x29\x30\x2c\x31\x2b\x26\x28\x44\x2d\x23\x47\x34\x2a\x50\x43\x44\ \x4b\x38\x47\x20\x52\xa0\x14\x47\x9c\x18\x34\x7c\x14\x34\x6d\x28\ \x65\xb1\x23\x64\xb8\x20\x5c\xaa\x23\x5d\xab\x18\x44\x91\x18\x42\ \x89\x12\x41\x90\x1c\x5d\xbc\x4e\x99\xd6\x5b\x8e\xc1\x22\x45\x9d\ \x16\x3b\x87\x14\x3b\x81\x16\x37\x7a\x14\x3d\x8f\x14\x40\x9b\x1f\ \x52\x99\x34\x81\xc6\x36\x6e\xb1\x1c\x46\x89\x1b\x4f\x9a\x1c\x4c\ \x95\x1c\x46\x8d\x21\x4e\x95\x21\x55\x92\x3d\x5f\x74\x63\x6e\x57\ \x57\x71\x7b\x5e\x7e\xa1\x5f\x6e\x6e\x6a\xa4\xd1\xd6\xe6\xf9\xf2\ \xf3\xfb\xf0\xf4\xfa\xe4\xea\xf3\xd8\xe2\xeb\xd4\xdf\xe9\xd1\xdc\ \xe6\xcf\xda\xe5\xda\xe2\xe9\xe1\xe9\xed\xe3\xe9\xef\xe5\xea\xee\ \xe6\xeb\xee\xe5\xea\xed\xe5\xe9\xec\xd3\xd4\xd8\x4a\x54\x61\x89\ \xa3\xb2\xbd\xcf\xda\x7a\x80\x80\x24\x31\x26\x80\x91\x95\x4c\x56\ \x5d\x41\x56\x62\x1e\x27\x23\x56\x6f\x6c\x00\x00\x00\x27\x46\x3e\ \x2b\x4b\x4c\x26\x40\x40\x2d\x4b\x51\x1b\x2e\x33\x1c\x2b\x27\x20\ \x32\x33\x16\x2b\x28\x22\x37\x34\x2e\x4e\x52\x21\x32\x2f\x26\x44\ \x43\x2b\x4a\x44\x1e\x3a\x2f\x24\x39\x35\x29\x40\x48\x3f\x67\x78\ \x43\x68\x79\x29\x42\x47\x22\x30\x33\x32\x47\x58\x35\x4d\x62\x26\ \x35\x43\x36\x4f\x61\x39\x53\x61\x33\x47\x4f\x2b\x3f\x43\x23\x35\ \x34\x18\x22\x1d\x1b\x26\x25\x1f\x29\x23\x23\x31\x2b\x1c\x28\x23\ \x17\x21\x1e\x17\x20\x1c\x19\x25\x1e\x17\x24\x1f\x19\x25\x22\x2d\ \x44\x3f\x41\x6e\x82\x47\x7e\x9e\x42\x71\x9c\x19\x5c\xb5\x11\x4a\ \xa2\x14\x47\x9e\x1e\x4e\xa4\x18\x50\xa3\x18\x4c\xa0\x1b\x4d\xa1\ \x27\x53\x92\x49\x53\x53\x41\x4e\x2a\x3e\x4a\x27\x59\x64\x2e\x4b\ \x55\x34\x45\x50\x31\x43\x51\x2d\x42\x55\x32\x39\x49\x57\x29\x3a\ \x8d\x1d\x26\x57\x16\x1b\x1c\x38\x50\x3a\x35\x47\x24\x4b\x68\x65\ \x45\x56\x55\xae\xb7\xb9\xfa\xfc\xff\xfc\xfb\xfe\xfa\xfb\xfd\xf9\ \xfa\xfe\xf6\xf8\xfd\xf2\xf6\xfc\xed\xf1\xf5\xe9\xed\xf1\xdf\xe5\ \xe9\xcb\xd4\xd8\x9b\xa8\xb0\x72\x85\x95\x31\x3b\x42\x07\x0f\x16\ \x2d\x37\x44\x5c\x70\x7f\x57\x66\x70\x51\x5e\x66\x4e\x56\x5f\x29\ \x30\x3f\x0b\x0d\x24\x0b\x0e\x2e\x15\x17\x30\x21\x23\x2e\x46\x31\ \x1f\x5b\x3b\x24\x56\x3a\x27\x4d\x35\x27\x47\x30\x22\x45\x2f\x23\ \x47\x2f\x23\x48\x2f\x25\x56\x34\x22\x66\x35\x13\x6c\x37\x18\x64\ \x38\x29\x45\x41\x68\x20\x39\x74\x18\x2b\x4a\x3d\x5c\x89\x2d\x65\ \xae\x31\x5e\x91\x23\x55\x95\x12\x37\x82\x15\x40\x84\x13\x51\xa4\ \x10\x59\xc2\x23\x66\xcd\x2f\x6c\xa6\x1e\x47\x89\x15\x3f\x7f\x18\ \x41\x79\x19\x42\x87\x17\x43\x90\x1a\x45\x96\x1b\x4c\x94\x5d\x9f\ \xcf\x2c\x67\xae\x18\x3e\x82\x1f\x4e\x99\x21\x4e\x96\x1c\x4b\x92\ \x22\x58\x99\x2b\x5e\x89\x57\x74\x62\x64\x74\x5b\x52\x6e\x6c\x2f\ \x5d\xb0\x44\x65\x7c\x87\x9a\xdd\xf5\xf7\xfc\xf0\xf3\xfb\xef\xf2\ \xfa\xe5\xeb\xf4\xdf\xe7\xf0\xde\xe6\xef\xda\xe4\xec\xd3\xde\xe8\ \xc7\xd4\xdf\xca\xd4\xdd\xd5\xdd\xe3\xe1\xe5\xea\xe1\xe5\xe9\xe2\ \xe6\xe9\xe2\xe5\xe8\xaa\xaf\xb7\x6d\x7f\x8e\x98\xaf\xbe\xb6\xc2\ \xca\x35\x3d\x32\x6d\x7f\x7b\xae\xb8\xbf\x3d\x44\x47\x4c\x5a\x60\ \x1e\x24\x1e\x53\x6a\x6b\x00\x00\x00\x16\x23\x1c\x1d\x2f\x32\x28\ \x45\x4f\x2a\x4c\x48\x27\x41\x40\x26\x38\x39\x24\x34\x36\x25\x38\ \x37\x20\x33\x34\x28\x41\x34\x1b\x30\x2a\x22\x38\x34\x19\x2d\x27\ \x1d\x31\x30\x29\x3e\x42\x3b\x53\x65\x47\x63\x75\x44\x65\x75\x31\ \x48\x53\x2c\x41\x51\x3b\x53\x6b\x41\x5a\x71\x3a\x50\x5f\x36\x4f\ \x51\x36\x41\x3e\x30\x3f\x40\x2e\x3d\x40\x2e\x3f\x45\x1d\x28\x29\ \x14\x1b\x17\x16\x1d\x1a\x16\x1d\x18\x17\x22\x1f\x18\x2a\x25\x17\ \x21\x1b\x12\x1a\x13\x16\x1d\x1b\x18\x21\x19\x19\x25\x21\x29\x3c\ \x30\x35\x49\x3b\x31\x47\x45\x22\x60\xba\x16\x50\xa6\x14\x4b\xa4\ \x13\x48\x9f\x19\x4f\xa6\x12\x43\x9b\x15\x47\xa0\x1d\x4c\xa0\x28\ \x53\x9f\x30\x50\x7a\x36\x52\x6a\x40\x5f\x72\x4b\x5c\x59\x50\x5b\ \x31\x47\x54\x27\x43\x52\x2d\x42\x52\x27\x50\x61\x30\x5d\x6c\x39\ \x4a\x56\x49\x33\x4d\x3b\x50\x61\x44\x6b\x79\x8a\x4c\x5d\x62\xad\ \xb4\xb8\xf7\xf8\xfc\xf9\xfb\xfd\xf8\xfa\xfe\xf6\xf8\xfd\xf3\xf6\ \xfb\xef\xf2\xf7\xe8\xee\xf3\xe0\xe6\xea\xcd\xd7\xdb\xa7\xb5\xbc\ \x81\x93\x9e\x40\x49\x4f\x07\x0e\x19\x23\x30\x40\x97\xa6\xb7\xa5\ \xb3\xbe\x58\x6b\x75\x4d\x5e\x66\x4e\x5c\x64\x52\x5c\x67\x2d\x34\ \x4d\x0a\x0c\x31\x0a\x0b\x30\x17\x13\x1d\x25\x18\x0f\x74\x56\x46\ \xa2\x8e\x85\x93\x89\x87\x85\x72\x6f\x6b\x47\x36\x66\x37\x1b\x69\ \x39\x1b\x6b\x3a\x1c\x69\x38\x1d\x67\x37\x1c\x69\x3b\x20\x35\x37\ \x72\x13\x22\x53\x24\x17\x13\x61\x30\x1a\x61\x42\x40\x24\x55\x7d\ \x1b\x46\x83\x13\x35\x73\x15\x45\x8b\x14\x57\xa9\x59\x97\xca\x3a\ \x6f\xb9\x17\x34\x7a\x1d\x43\x83\x1d\x4d\x90\x1d\x46\x89\x1f\x47\ \x7e\x1a\x41\x81\x1c\x43\x87\x27\x56\x98\x42\x8b\xcb\x28\x62\x9f\ \x24\x53\x9a\x1b\x4a\x93\x1c\x4e\x98\x1c\x53\x9d\x2b\x66\x9f\x52\ \x77\x7f\x61\x81\x8e\x54\x71\x72\x54\x6b\x4b\x52\x69\x51\x44\x62\ \x97\xbe\xcd\xea\xeb\xee\xf6\xf3\xf5\xfb\xee\xf1\xf8\xe4\xeb\xf4\ \xe3\xea\xf3\xe3\xea\xf3\xe1\xe8\xf1\xdd\xe6\xef\xdb\xe2\xec\xd4\ \xdc\xe5\xc5\xd0\xd9\xc1\xcb\xd2\xc6\xcd\xd2\xd1\xd5\xd9\xb6\xb8\ \xc0\x70\x82\x8d\xb9\xcb\xd7\xb4\xc4\xcf\x72\x78\x75\x22\x2f\x21\ \xa4\xb0\xaf\xa6\xad\xa9\x23\x2b\x1e\x15\x1d\x12\x0c\x14\x0a\x73\ \x8d\x90\x00\x00\x00\x14\x26\x20\x21\x34\x33\x26\x40\x42\x16\x27\ \x1e\x14\x24\x1e\x24\x3b\x36\x26\x3b\x38\x24\x35\x31\x25\x38\x38\ \x1b\x2c\x2f\x1d\x33\x31\x1b\x2f\x27\x18\x2a\x25\x18\x2d\x26\x25\ \x37\x33\x31\x49\x46\x34\x4f\x4e\x3c\x5b\x5d\x35\x4f\x53\x36\x50\ \x52\x45\x60\x6c\x43\x5d\x6f\x3b\x54\x61\x2a\x3e\x3d\x20\x2a\x29\ \x1e\x29\x24\x1f\x2a\x23\x2a\x36\x33\x29\x3a\x3d\x19\x25\x23\x1a\ \x25\x22\x1b\x27\x1d\x18\x21\x1b\x19\x24\x20\x17\x21\x1f\x18\x22\ \x1c\x18\x23\x1e\x13\x18\x13\x17\x24\x1f\x1a\x2a\x24\x18\x23\x20\ \x17\x1e\x23\x24\x56\xa0\x1a\x55\xab\x1d\x55\xa7\x17\x51\xa7\x17\ \x4d\xa5\x12\x46\x9b\x16\x48\x9f\x20\x47\x8d\x28\x3f\x74\x21\x4e\ \x9a\x22\x4c\x95\x2d\x52\x90\x41\x5e\x76\x5f\x66\x2e\x63\x6e\x1e\ \x5a\x67\x20\x58\x68\x26\x55\x65\x2a\x5b\x6a\x2e\x68\x79\x43\x5a\ \x6b\x6b\x79\x82\x8d\x73\x82\xa0\x4d\x5e\x91\x99\xa4\xc0\xee\xf1\ \xf8\xf8\xf9\xfe\xf5\xf8\xfd\xf2\xf6\xfb\xef\xf3\xf7\xe9\xee\xf3\ \xe1\xe7\xec\xcd\xd6\xdc\xa9\xb7\xbf\x80\x92\x9d\x3f\x4a\x51\x08\ \x0c\x19\x1e\x25\x36\x90\xa0\xb2\xed\xf0\xf5\xe6\xec\xef\x7c\x90\ \x9b\x52\x65\x74\x4d\x5c\x69\x54\x5f\x69\x54\x5d\x6b\x21\x26\x42\ \x0a\x0d\x29\x11\x0e\x11\x21\x1c\x1a\x4a\x3e\x3a\x6f\x60\x55\x75\ \x66\x5d\x83\x75\x72\x7c\x6e\x6d\x60\x36\x1b\x66\x39\x1a\x68\x3e\ \x23\x66\x38\x1e\x8b\x6f\x63\x74\x6f\x77\x1e\x2c\x6a\x25\x21\x2c\ \x49\x2d\x1e\x67\x39\x1a\x5f\x43\x49\x29\x49\x74\x1d\x40\x6f\x22\ \x44\x6c\x17\x4a\x90\x2a\x6a\xb4\x24\x59\xa7\x19\x3a\x89\x1e\x41\ \x8a\x1a\x3b\x80\x23\x4e\x90\x23\x51\x93\x1f\x49\x88\x1f\x47\x83\ \x22\x4a\x84\x2e\x5c\x9a\x42\x8b\xcf\x30\x60\x9a\x24\x50\x91\x1d\ \x51\x9b\x1e\x50\x97\x31\x61\x90\x4e\x7a\x9b\x52\x79\x8d\x4c\x73\ \x84\x4f\x6e\x6b\x53\x68\x4d\x4f\x64\x5a\x49\x6f\xa0\xe4\xee\xf5\ \xde\xe5\xef\xe9\xed\xf6\xe7\xec\xf4\xe5\xec\xf5\xe5\xec\xf4\xe3\ \xeb\xf3\xe2\xe9\xf2\xe2\xe9\xf1\xe2\xe9\xf0\xdf\xe6\xed\xd9\xe0\ \xe7\xd5\xdd\xe4\x66\x69\x78\x47\x50\x68\x4d\x5b\x7d\x92\xa3\xad\ \xa9\xb9\xc1\xa6\xae\xb4\x32\x3a\x2f\x57\x6a\x60\xac\xb4\xb4\x3c\ \x42\x34\x1e\x2a\x17\x1f\x2a\x19\x19\x28\x18\xa5\xba\xbc\x00\x00\ \x00\x1c\x35\x34\x1c\x2e\x2d\x1f\x35\x33\x1a\x2c\x29\x1a\x2d\x2a\ \x24\x38\x35\x25\x3d\x37\x1a\x2f\x28\x29\x40\x40\x29\x41\x45\x28\ \x40\x44\x20\x35\x37\x18\x2c\x28\x19\x2c\x27\x1c\x2e\x2c\x23\x3b\ \x3a\x22\x38\x37\x2a\x3f\x3d\x23\x36\x31\x1e\x2a\x29\x29\x3a\x3d\ \x3c\x51\x59\x32\x44\x47\x21\x30\x2d\x1a\x28\x26\x1b\x29\x26\x1c\ \x29\x27\x1f\x2c\x2b\x2a\x3b\x37\x19\x26\x21\x1c\x28\x23\x1b\x26\ \x24\x18\x25\x20\x19\x26\x23\x1a\x27\x24\x17\x1e\x1a\x18\x21\x1e\ \x16\x1f\x1b\x1c\x2e\x2a\x1c\x2a\x23\x1b\x23\x20\x2b\x43\x4b\x29\ \x4f\x87\x19\x5b\xb3\x21\x58\xa7\x1b\x58\xae\x19\x53\xaa\x15\x48\ \x9c\x15\x45\x98\x20\x30\x59\x2e\x1e\x23\x2a\x47\x83\x28\x47\x7e\ \x3b\x31\x2d\x5f\x62\x2e\x6e\x6d\x18\x68\x6d\x1c\x5c\x69\x1d\x60\ \x6f\x21\x60\x72\x2f\x5c\x6b\x26\x6d\x7c\x4d\x73\x79\x76\x34\x32\ \x32\x72\x7e\x90\x63\x7a\x9c\xa9\xbc\xd0\xe4\xeb\xf3\xf5\xf9\xfd\ \xf2\xf6\xfb\xee\xf3\xf7\xea\xef\xf3\xe2\xe8\xed\xcd\xd6\xdb\xa4\ \xb3\xbb\x80\x94\x9f\x45\x50\x56\x08\x0a\x16\x1e\x27\x39\x8a\x9a\ \xad\xec\xf0\xf4\xf9\xf9\xfb\xf5\xf8\xf8\xd2\xdb\xe3\x87\x9e\xb0\ \x50\x63\x73\x50\x5e\x6a\x60\x6d\x78\x3e\x49\x5a\x16\x1a\x29\x16\ \x13\x13\x13\x14\x17\x14\x12\x13\x15\x0e\x0e\x35\x26\x1d\x58\x45\ \x39\x82\x6e\x62\x73\x54\x42\x71\x4d\x2f\x74\x4e\x2b\x67\x3b\x1b\ \x98\x82\x73\x8a\x8c\x93\x43\x39\x43\x4c\x30\x1f\x60\x39\x22\x60\ \x3a\x21\x5b\x39\x2a\x57\x49\x49\x2f\x3e\x4f\x2c\x46\x6f\x30\x4e\ \x7f\x5c\x7b\xa0\x61\x94\xc0\x47\x59\x87\x45\x52\x7b\x21\x48\x8f\ \x25\x49\x8d\x2a\x5f\xa1\x22\x56\x97\x1e\x4c\x8e\x25\x4f\x8a\x2a\ \x5b\x9a\x42\x7f\xba\x2b\x62\xa1\x1f\x50\x91\x2f\x5d\x8e\x3b\x69\ \x86\x4a\x71\x8a\x4f\x76\x91\x50\x75\x82\x53\x6e\x65\x58\x6d\x52\ \x52\x67\x43\x4d\x64\x6c\x36\x54\x99\xed\xf5\xf8\xe2\xe7\xf0\xe8\ \xec\xf5\xe5\xec\xf3\xe5\xec\xf4\xe4\xec\xf4\xe3\xeb\xf3\xe3\xeb\ \xf2\xe4\xeb\xf2\xe6\xeb\xf1\xe3\xe9\xef\xe1\xe7\xec\xdc\xe1\xe7\ \x7a\x83\x97\x43\x57\x74\x68\x7a\x92\x8f\xa8\xb8\x93\x9f\xa7\x58\ \x62\x61\x22\x2e\x20\x41\x4c\x3f\x59\x5e\x53\x1a\x25\x13\x1f\x2b\ \x18\x19\x23\x13\x52\x67\x5c\xd7\xe2\xe5\x00\x00\x00\x26\x48\x49\ \x20\x35\x38\x19\x2c\x2d\x18\x2c\x27\x18\x2b\x26\x2f\x4e\x50\x2d\ \x44\x3f\x1d\x35\x2e\x1d\x35\x2f\x27\x42\x3e\x2d\x47\x49\x32\x53\ \x5c\x1d\x33\x32\x1a\x2f\x2a\x20\x34\x32\x22\x39\x36\x26\x3d\x3e\ \x26\x3d\x3b\x1a\x2b\x26\x20\x2e\x36\x28\x37\x3f\x2a\x3a\x3c\x1c\ \x2a\x26\x19\x26\x22\x1b\x2a\x28\x1c\x2d\x29\x1e\x31\x2c\x22\x33\ \x30\x1e\x2d\x28\x19\x25\x22\x19\x26\x21\x19\x24\x1f\x1a\x26\x1f\ \x18\x24\x20\x1b\x29\x26\x1a\x29\x25\x18\x24\x22\x19\x25\x20\x21\ \x33\x30\x19\x26\x21\x1f\x29\x2b\x2c\x3d\x3e\x2c\x4c\x6a\x17\x59\ \xb3\x20\x56\xa0\x20\x58\xa9\x1b\x54\xab\x1c\x4c\x9a\x18\x44\x91\ \x25\x27\x40\x2b\x12\x0c\x34\x32\x50\x2a\x4c\x87\x38\x25\x20\x41\ \x39\x29\x59\x5b\x20\x59\x62\x23\x58\x65\x1e\x5d\x6a\x29\x55\x67\ \x28\x65\x72\x47\x86\x8d\x84\x5c\x5f\x67\x12\x0e\x0c\x44\x46\x4a\ \x7e\x96\xa8\x98\xac\xc0\xd2\xde\xe7\xe2\xe8\xec\xf3\xf7\xfb\xeb\ \xef\xf5\xe2\xe8\xec\xcf\xd6\xdc\xa3\xb1\xb7\x7a\x8e\x98\x5b\x65\ \x6b\x0a\x0d\x18\x21\x2b\x3f\x85\x96\xa7\xe8\xec\xf2\xfa\xfa\xfe\ \xf7\xf7\xfc\xf2\xf5\xf7\xed\xf1\xf3\xd0\xd9\xe0\x84\x96\xa7\x54\ \x6a\x79\x63\x75\x83\x51\x5e\x6b\x19\x1b\x1e\x1f\x22\x2b\x3a\x43\ \x51\x3e\x46\x50\x34\x38\x3f\x1f\x1c\x1d\x1c\x14\x0f\x3c\x2f\x24\ \xa4\x93\x78\x99\x7e\x5b\xa5\x87\x63\x70\x53\x35\x5c\x3c\x26\x67\ \x42\x28\x69\x44\x2e\x77\x5b\x4c\x75\x5c\x51\x65\x43\x32\x55\x3c\ \x33\x42\x37\x37\x3e\x37\x3d\x3a\x3e\x60\x62\x4f\x56\x89\x64\x4c\ \x8b\x76\x6f\x63\x58\x67\x39\x48\x74\x1e\x45\x8a\x25\x51\x99\x24\ \x57\x9f\x2e\x69\xaf\x1f\x52\x97\x22\x53\x97\x26\x5a\x9f\x32\x6b\ \xad\x3a\x57\x82\x3b\x5e\x7d\x4d\x7b\x7c\x6b\x63\x51\x65\x5e\x55\ \x4f\x65\x64\x4e\x66\x5a\x4c\x5e\x43\x5e\x73\x5c\xa7\xb8\xb0\xc6\ \xcf\xd1\x78\x93\xc1\x84\xa9\xd7\xd6\xe4\xf2\xed\xf1\xf7\xe6\xeb\ \xf3\xe4\xeb\xf2\xe4\xeb\xf3\xe3\xea\xf1\xe4\xeb\xf1\xe7\xec\xf3\ \xe8\xed\xf0\xe4\xeb\xef\xe6\xec\xef\xf0\xf3\xf7\xab\xb4\xc3\x7d\ \x94\xa5\xa2\xb5\xc6\x34\x6e\xa5\x3b\x66\x8f\x40\x59\x6f\x20\x3c\ \x4d\x1d\x30\x34\x23\x30\x26\x21\x2e\x21\x1e\x29\x19\x24\x35\x27\ \xa9\xbb\xba\xdc\xe4\xe8\x00\x00\x00\x2c\x47\x4b\x28\x45\x40\x1d\ \x35\x30\x19\x27\x24\x15\x26\x22\x24\x3c\x37\x21\x35\x30\x1b\x2f\ \x29\x1c\x33\x2e\x20\x39\x35\x2b\x48\x52\x3e\x68\x77\x2e\x47\x55\ \x21\x35\x35\x1b\x2d\x2c\x23\x3c\x3c\x29\x42\x48\x2a\x40\x44\x22\ \x2f\x36\x30\x47\x4f\x27\x3b\x41\x24\x38\x3a\x18\x2a\x29\x18\x23\ \x21\x1c\x2f\x2b\x21\x31\x34\x1e\x31\x2d\x1e\x30\x2d\x1d\x2c\x27\ \x1a\x29\x27\x1b\x2c\x29\x17\x1d\x19\x17\x1f\x1a\x18\x23\x1f\x19\ \x27\x20\x19\x24\x1e\x1c\x2c\x29\x1c\x2d\x27\x1e\x2f\x2b\x1d\x2e\ \x29\x1d\x25\x21\x16\x1b\x17\x20\x30\x3b\x1d\x55\xa9\x2f\x56\x93\ \x26\x5a\xa4\x19\x55\xaa\x1f\x49\x8f\x20\x40\x7f\x2d\x1d\x1f\x31\ \x17\x15\x34\x24\x2e\x2b\x4d\x8d\x37\x22\x22\x39\x25\x24\x44\x40\ \x26\x48\x51\x20\x4c\x5a\x22\x54\x61\x2a\x62\x75\x49\x83\x8f\x8b\ \x36\x3c\x46\xb1\xb5\xb8\x2f\x2b\x29\x1e\x1a\x19\x60\x6a\x73\x7a\ \x90\xa3\xad\xbb\xc7\xc5\xd3\xdb\xc2\xca\xd0\xe5\xea\xed\xcf\xd9\ \xdd\xa8\xb5\xbd\x78\x8c\x97\x64\x70\x77\x0c\x0e\x15\x1e\x27\x39\ \x86\x96\xaa\xe3\xe8\xef\xf8\xfa\xfd\xf8\xf9\xfd\xf6\xf6\xfb\xef\ \xf3\xf6\xe9\xed\xef\xe0\xe4\xe6\xc5\xcd\xd4\x8f\x9e\xaa\x6e\x81\ \x8e\x39\x43\x49\x12\x16\x1e\x4d\x5c\x6c\x5a\x6b\x78\x56\x67\x6f\ \x57\x62\x69\x56\x5d\x64\x3c\x40\x46\x19\x16\x16\x43\x34\x28\x83\ \x6a\x58\x90\x74\x60\x89\x7c\x76\xa6\xb1\xb5\x7b\x88\x8f\x89\x92\ \x96\x85\x81\x7e\x91\x8e\x8c\x87\x82\x81\x64\x5c\x62\x63\x5d\x65\ \x65\x5d\x61\x65\x58\x60\x70\x45\x33\xb0\x7b\x44\x83\x5c\x48\x8c\ \x63\x4a\x4a\x52\x6d\x1b\x45\x8c\x1f\x4b\x93\x25\x59\xa8\x23\x59\ \xa5\x25\x4f\x93\x33\x4f\x80\x43\x54\x77\x5e\x47\x4e\x85\x49\x2b\ \x68\x73\x5d\x68\x7b\x69\x8b\x53\x32\x7e\x49\x2c\x69\x52\x31\x5e\ \x5a\x3b\x5d\x77\x71\xbf\xcd\xd0\xf0\xf5\xfa\xf2\xf6\xfc\xcd\xdc\ \xea\x91\xb8\xdf\x66\x90\xc5\x9b\xa8\xbd\xe5\xeb\xf1\xe2\xeb\xf2\ \xe2\xea\xf2\xe3\xea\xf1\xe5\xeb\xf1\xe8\xed\xf1\xe7\xec\xf1\xe8\ \xed\xf1\xe9\xed\xf1\xb2\xb8\xbc\x76\x8b\x99\xa3\xb7\xc3\xa2\xbe\ \xd3\x03\x56\xa2\x50\x81\xac\x45\x70\x9c\x2a\x53\x7e\x19\x3e\x64\ \x18\x37\x4b\x40\x4a\x49\x33\x41\x3a\x7f\x93\x93\xd0\xdd\xe1\xd7\ \xe0\xe5\x00\x00\x00\x25\x3f\x3a\x2a\x3b\x44\x23\x39\x38\x1c\x34\ \x2f\x18\x2f\x2b\x18\x2f\x29\x17\x27\x24\x1b\x30\x2e\x1a\x31\x28\ \x20\x37\x31\x26\x3f\x40\x43\x6a\x76\x32\x47\x4f\x23\x3c\x40\x21\ \x38\x3a\x26\x39\x3b\x27\x36\x3a\x26\x38\x3e\x2c\x40\x48\x29\x3b\ \x4d\x36\x51\x68\x2e\x44\x51\x26\x3e\x43\x1c\x2c\x31\x1f\x2f\x33\ \x22\x2c\x2b\x22\x32\x33\x24\x3b\x39\x1e\x36\x33\x24\x3a\x33\x1b\ \x27\x20\x1c\x2b\x26\x17\x23\x1a\x19\x24\x1b\x16\x21\x1a\x17\x22\ \x19\x1b\x27\x23\x1a\x28\x23\x20\x32\x30\x18\x24\x1f\x10\x12\x0e\ \x10\x11\x0d\x12\x18\x1d\x19\x46\x87\x27\x5b\xa8\x1e\x52\xa1\x1c\ \x55\xa6\x16\x48\x9b\x24\x42\x7e\x31\x1e\x1d\x35\x1b\x16\x37\x22\ \x21\x31\x4d\x88\x35\x2c\x38\x38\x1f\x19\x3b\x30\x23\x4a\x50\x24\ \x53\x5b\x24\x4e\x5e\x2f\xa7\xb1\xa8\xa0\xa8\xaf\x18\x1e\x1f\x41\ \x40\x41\x14\x12\x11\x17\x11\x11\x30\x2b\x2c\x67\x72\x7a\x65\x74\ \x7c\x91\x9e\xa5\x98\xab\xb2\x90\x9b\xa2\xb0\xbd\xc4\x86\x97\xa2\ \x6a\x77\x80\x14\x1a\x20\x1f\x20\x29\x9a\xa1\xad\xe5\xeb\xf2\xfa\ \xfb\xfe\xfa\xfa\xff\xf7\xf7\xfd\xf2\xf5\xf9\xed\xf0\xf4\xe4\xe8\ \xec\xd6\xdc\xe0\xb8\xc0\xc8\x8e\x9d\xa8\x5e\x6a\x73\x0e\x11\x18\ \x50\x5f\x70\xa0\xb0\xc1\x50\x67\x76\x50\x61\x6d\x50\x5f\x68\x53\ \x5f\x65\x7f\x87\x8c\x9d\xa3\xab\x1a\x18\x1a\x28\x1f\x1a\x51\x41\ \x35\x71\x63\x58\x86\x7c\x7b\x7e\x75\x6f\x87\x87\x87\x77\x7a\x7a\ \x93\x98\x91\x80\x8c\x90\x55\x5d\x66\x8d\x98\xa0\x8f\x8c\x89\x90\ \x55\x29\x78\x46\x26\x90\x47\x17\x92\x62\x4e\x8f\x7b\x77\x74\x74\ \x8c\x33\x51\x8e\x1f\x4d\x93\x1b\x4c\x98\x20\x43\x87\x60\x3d\x3b\ \x8c\x4b\x29\x9c\x4c\x16\x91\x45\x1b\x8a\x48\x20\x97\x5f\x3a\x8b\ \x55\x3a\x83\x43\x24\x90\x4a\x26\x86\x48\x1e\x7d\x5d\x3e\xc1\xc3\ \xc8\xf3\xf8\xfd\xf2\xf6\xfb\xf1\xf5\xfb\xd2\xdf\xe8\xb2\xca\xdb\ \xa7\xc7\xdf\x6a\x8c\xba\x56\x6b\x92\xc5\xcf\xda\xdf\xe6\xee\xe2\ \xe8\xef\xe6\xeb\xef\xe7\xec\xf0\xe6\xea\xef\xe8\xed\xf0\xd5\xd9\ \xdd\x6d\x78\x84\x9c\xb2\xc1\xcb\xd8\xdf\x4f\x92\xc7\x0a\x61\xab\ \x86\xae\xcb\x4d\x81\xb0\x67\x95\xb9\x31\x5d\x8e\x28\x4f\x70\x44\ \x47\x49\x25\x28\x26\x5c\x62\x5c\x9e\xa2\x9f\xc5\xcf\xd0\x00\x00\ \x00\x27\x51\x4f\x2d\x5f\x58\x32\x51\x50\x20\x37\x35\x1e\x38\x31\ \x1a\x31\x29\x16\x2c\x28\x20\x39\x35\x1a\x2d\x29\x19\x2e\x2a\x25\ \x3b\x3a\x2f\x46\x41\x25\x3d\x43\x21\x39\x35\x2a\x44\x4c\x33\x4d\ \x57\x24\x39\x3f\x24\x3d\x3c\x1d\x33\x2f\x30\x48\x5c\x46\x62\x72\ \x3d\x57\x68\x35\x4c\x5e\x34\x4f\x60\x30\x41\x4c\x28\x37\x40\x2d\ \x41\x47\x27\x3e\x3a\x29\x42\x3a\x22\x36\x31\x1c\x25\x22\x1f\x2d\ \x26\x18\x23\x1d\x18\x23\x20\x16\x1e\x18\x19\x26\x22\x1c\x2c\x29\ \x1d\x2d\x27\x20\x34\x2e\x15\x1d\x15\x12\x13\x0f\x10\x11\x0f\x11\ \x14\x10\x17\x35\x5d\x23\x59\xaa\x1f\x52\xa4\x1a\x50\xa4\x1d\x51\ \xa7\x21\x3f\x7d\x30\x1f\x23\x36\x1d\x1a\x39\x20\x1b\x33\x3e\x69\ \x30\x39\x58\x39\x20\x17\x38\x29\x21\x4e\x56\x26\x58\x5e\x21\xb0\ \xb7\xb4\xa9\xac\xb0\xd5\xd9\xdc\x31\x36\x3a\x0a\x0b\x0a\x11\x10\ \x0f\x1c\x16\x13\x12\x0c\x0a\x2e\x29\x2b\x5a\x63\x66\x4b\x54\x58\ \x59\x62\x65\x99\xa6\xb3\xb7\xc7\xcf\x52\x5f\x62\x23\x2d\x35\x0f\ \x13\x1b\x27\x2a\x33\xcb\xca\xcd\xfd\xfe\xff\xfa\xfa\xfe\xf7\xf8\ \xfe\xf3\xf7\xfb\xee\xf3\xf7\xe8\xec\xef\xdc\xe2\xe6\xc4\xcd\xd3\ \x98\xa8\xb4\x76\x85\x8f\x1c\x20\x24\x2d\x38\x48\xb8\xc4\xcf\xf4\ \xf7\xfa\x94\xa9\xb8\x61\x79\x8d\x5e\x74\x83\x53\x64\x6d\x5c\x6c\ \x75\xb2\xba\xbc\x6f\x77\x7d\x11\x0e\x0f\x1e\x17\x13\x2d\x21\x18\ \x64\x4d\x40\x85\x6e\x5a\x85\x72\x69\x84\x74\x66\xa2\x92\x68\xc8\ \xb2\x78\xbf\xd3\xce\x5d\x7e\x93\x50\x56\x66\x9c\x74\x51\xb3\x67\ \x22\xa4\x5b\x22\xa3\x4b\x0c\xa9\x62\x2e\x72\x77\x8f\x37\x62\xa4\ \x31\x63\xaa\x33\x52\x8a\x83\x58\x42\xa7\x4e\x09\xa3\x4d\x0e\x9c\ \x4d\x1c\x79\x49\x36\x78\x47\x33\x94\x5e\x43\x9f\x95\x99\xd1\xca\ \xcc\xbb\xa7\xa8\x7f\x49\x34\x99\x76\x65\xf1\xf9\xff\xeb\xf0\xf6\ \xf0\xf4\xfa\xea\xee\xf6\xce\xdc\xe5\xc0\xd1\xdd\xb6\xcd\xdb\xaf\ \xcb\xdc\x87\xa9\xcf\x37\x51\x86\x6d\x7c\x9a\xc8\xd2\xdc\xdf\xe6\ \xeb\xe4\xeb\xf0\xe4\xea\xee\xe1\xe6\xea\x9b\xa0\xa9\x81\x95\xa4\ \xca\xd6\xde\xb4\xcf\xe2\x05\x6c\xbd\x58\x99\xc7\x76\xa2\xc8\x0a\ \x62\xad\x00\x59\xa5\x02\x54\x9b\x6f\x8e\xa0\x78\x82\x86\x3e\x43\ \x49\x42\x4b\x51\x13\x10\x14\x17\x13\x11\x00\x00\x00\x1d\x35\x2d\ \x1c\x31\x2d\x1b\x2f\x2a\x2c\x4b\x49\x24\x43\x46\x20\x3c\x3f\x1c\ \x33\x31\x21\x3a\x3b\x1d\x34\x31\x1a\x30\x2b\x1c\x31\x2e\x1d\x31\ \x2e\x23\x3b\x40\x20\x35\x38\x35\x56\x62\x38\x51\x59\x23\x37\x39\ \x1f\x36\x37\x20\x36\x36\x22\x37\x38\x31\x45\x53\x44\x5e\x72\x47\ \x69\x83\x47\x67\x79\x32\x47\x4f\x33\x4b\x54\x2f\x4a\x4e\x2c\x45\ \x48\x2c\x45\x41\x22\x36\x2e\x1b\x2a\x25\x1a\x27\x24\x19\x28\x25\ \x1a\x24\x21\x12\x17\x13\x16\x1d\x1a\x1b\x29\x26\x1d\x2d\x29\x21\ \x34\x30\x14\x1b\x17\x10\x13\x10\x15\x17\x15\x17\x1a\x16\x15\x26\ \x3a\x24\x48\x8a\x22\x4e\x9c\x17\x4a\x9e\x1c\x51\xa4\x22\x46\x8a\ \x31\x23\x2a\x30\x19\x14\x38\x1e\x1a\x36\x33\x4b\x2c\x44\x77\x35\ \x23\x1d\x3b\x32\x24\x52\x51\x16\x86\x55\x14\xd0\xbb\xb2\x90\x98\ \x9c\xeb\xed\xef\x77\x80\x84\x16\x18\x18\x1b\x16\x13\x17\x10\x0e\ \x0e\x0c\x0b\x04\x05\x04\x19\x16\x16\x47\x4c\x4f\x4b\x52\x5c\x94\ \x9e\xa9\xbe\xca\xcf\x73\x82\x85\x35\x42\x44\x14\x1b\x27\x24\x2b\ \x34\x9b\x9e\xa5\xfc\xfd\xff\xf7\xf9\xfe\xf5\xf7\xfc\xf0\xf3\xf8\ \xea\xef\xf2\xe0\xe6\xea\xce\xd5\xdc\xa5\xb4\xbe\x89\x9a\xa6\x36\ \x3b\x3d\x14\x1a\x24\x8a\x98\xa8\xf1\xf5\xfa\xf9\xfa\xfe\xf0\xf5\ \xfb\xb3\xc5\xd4\x78\x93\xa3\x53\x69\x76\x53\x67\x73\x72\x83\x8d\ \x9a\xa5\xaa\x0f\x0c\x0c\x1c\x17\x14\x1c\x17\x16\x20\x16\x15\x33\ \x27\x1e\x69\x67\x62\x96\x90\x7c\xb8\x9d\x64\xd5\xbf\x85\xd3\xd8\ \xc5\x92\x9b\x95\x65\x5d\x51\x93\x7c\x65\x81\x51\x29\x90\x59\x2a\ \xb2\x61\x1a\xa2\x52\x14\x8e\x67\x50\x64\x76\x95\x58\x83\xb8\x68\ \x51\x52\x9a\x48\x13\x90\x48\x1b\x89\x46\x1f\x7a\x46\x33\x40\x43\ \x54\x7b\x7d\x89\xd5\xd6\xd9\xf1\xf4\xf5\xed\xef\xf0\xf3\xf8\xfb\ \xa4\xaa\xb9\xc0\xcc\xd2\xdd\xe8\xf1\xec\xf1\xf7\xf6\xf7\xfc\xe1\ \xe8\xf1\xd1\xdc\xe6\xc9\xd8\xe1\xc2\xd5\xe0\xbc\xd0\xdc\xad\xc4\ \xd5\x98\xb3\xcb\x65\x80\xaa\x46\x5e\x84\x8b\x97\xa4\xd1\xd9\xe0\ \xcd\xd1\xd5\xab\xb4\xbb\x96\xa9\xb8\xb5\xc8\xd4\xc7\xd6\xe1\x42\ \x92\xcd\x00\x6e\xc4\x4d\x98\xcb\x3e\x89\xc3\x00\x67\xbb\x00\x63\ \xb5\x19\x69\xa5\xad\xb8\xbe\x55\x5a\x5e\x64\x6e\x72\x96\xa4\xab\ \x64\x65\x6c\x1b\x0a\x08\x00\x00\x00\x25\x43\x40\x20\x35\x2d\x1f\ \x35\x3e\x2c\x53\x4f\x2b\x53\x5b\x36\x61\x6a\x32\x55\x62\x28\x45\ \x47\x27\x42\x43\x1c\x30\x2c\x1e\x32\x30\x19\x2d\x2a\x1f\x39\x3a\ \x23\x36\x40\x3f\x5c\x68\x47\x6b\x76\x30\x4c\x59\x2a\x43\x4e\x20\ \x33\x33\x21\x36\x3d\x34\x4e\x5c\x44\x61\x71\x3e\x5a\x60\x34\x4a\ \x49\x36\x4a\x50\x39\x54\x61\x34\x5b\x5b\x31\x57\x51\x2e\x4e\x49\ \x25\x3e\x38\x1f\x32\x2d\x19\x27\x20\x1a\x28\x23\x14\x19\x14\x15\ \x1e\x1a\x15\x1e\x1b\x19\x27\x22\x20\x36\x32\x1c\x2a\x26\x13\x18\ \x14\x12\x13\x10\x13\x16\x12\x17\x1c\x17\x18\x1e\x1f\x1c\x42\x81\ \x18\x4c\xa3\x1a\x4e\xa4\x1b\x4b\x9e\x23\x4e\x96\x30\x2b\x3d\x2f\ \x19\x18\x32\x1b\x1a\x36\x26\x2c\x29\x4b\x86\x37\x34\x33\x41\x3e\ \x25\x7c\x46\x15\x98\x46\x15\xc7\xb2\xa8\xcd\xd2\xd6\xff\xff\xff\ \xe9\xee\xf1\x4a\x4f\x53\x15\x0e\x0b\x0f\x0c\x0c\x09\x09\x09\x07\ \x08\x08\x04\x05\x04\x0b\x0c\x0e\x35\x38\x3f\x41\x45\x50\x5f\x64\ \x7a\x3b\x40\x48\x27\x2c\x36\x32\x3d\x49\x4d\x59\x65\xac\xb6\xc2\ \xf2\xf4\xf8\xf5\xf8\xfc\xf1\xf4\xf8\xec\xf0\xf3\xe4\xe9\xed\xd1\ \xda\xdf\xae\xbb\xc3\x92\xa6\xb2\x57\x5f\x61\x0c\x0f\x11\x5c\x6c\ \x7a\xdb\xe3\xec\xfb\xfc\xff\xf8\xf9\xfe\xf3\xf6\xfb\xec\xf0\xf3\ \xc9\xd4\xdc\x97\xa8\xb4\x74\x88\x97\x76\x89\x98\x60\x69\x6e\x1b\ \x1c\x20\x45\x4b\x53\x51\x56\x5e\x68\x6d\x74\x6b\x6f\x73\x3d\x3f\ \x3f\x34\x29\x19\x58\x37\x16\x9d\x8e\x73\x9c\x9e\xa9\x88\x6d\x5e\ \x5e\x42\x2e\x7c\x49\x25\x70\x34\x0c\x62\x2c\x0a\x8a\x47\x16\xac\ \x51\x0c\xa3\x4d\x0c\x9c\x56\x27\x76\x55\x4b\x6b\x4d\x46\x7d\x56\ \x47\x67\x41\x38\x6a\x3b\x2b\x5d\x3d\x33\x7c\x7b\x81\xd2\xd8\xdc\ \xdd\xe0\xe0\xe3\xe3\xe3\xeb\xea\xea\xeb\xec\xef\xd7\xe4\xed\xe0\ \xeb\xf4\xd2\xe0\xe9\xe2\xea\xf1\xea\xee\xf5\xdd\xe5\xee\xd5\xe1\ \xe9\xd1\xdd\xe6\xcc\xda\xe3\xc7\xd6\xe0\xc0\xd0\xdb\xb6\xc6\xd2\ \xa8\xbc\xcb\x8a\x9e\xb6\x38\x46\x6d\x5e\x6e\x8e\x9c\xa6\xaf\x7b\ \x90\x9e\xbb\xcc\xd6\xd3\xdd\xe5\x6f\xa6\xd2\x05\x73\xc7\x01\x70\ \xc8\x00\x6f\xc7\x04\x73\xc5\x00\x6f\xc3\x00\x66\xb9\x88\xb6\xd3\ \x90\x95\x9a\x81\x8d\x94\x9d\xac\xb3\xb4\xbf\xc5\xa0\xaa\xb1\x46\ \x24\x1e\x00\x00\x00\x28\x44\x36\x1a\x2f\x2c\x26\x47\x48\x20\x36\ \x2c\x27\x44\x49\x40\x69\x6f\x41\x6d\x7b\x30\x57\x64\x31\x52\x5a\ \x1f\x37\x38\x1f\x39\x39\x25\x41\x42\x21\x3c\x39\x21\x34\x38\x2f\ \x43\x4a\x37\x52\x59\x39\x57\x63\x42\x5f\x72\x26\x41\x3d\x24\x3d\ \x42\x31\x4b\x53\x35\x4c\x51\x2c\x3e\x40\x26\x36\x3a\x25\x39\x3a\ \x30\x45\x47\x32\x4d\x4f\x2f\x53\x50\x32\x58\x52\x24\x3b\x33\x1f\ \x31\x2d\x19\x26\x22\x17\x21\x1c\x12\x16\x12\x16\x20\x17\x1b\x29\ \x27\x1b\x28\x25\x1f\x31\x2c\x1a\x26\x23\x10\x14\x10\x12\x15\x11\ \x10\x13\x0d\x15\x17\x12\x13\x15\x0c\x1b\x35\x5f\x18\x4d\xa4\x1a\ \x4e\xa4\x1c\x4c\xa1\x20\x4f\x9d\x2f\x33\x52\x37\x25\x24\x32\x1d\ \x1c\x35\x24\x28\x2a\x47\x80\x32\x40\x51\x74\x43\x20\xb6\x49\x07\ \x5d\x9e\x9c\xe8\xf9\xfd\xfe\xfd\xfe\xf9\xfb\xfd\xfc\xfd\xff\xd8\ \xdc\xe0\x2b\x2f\x34\x04\x04\x05\x09\x09\x09\x06\x08\x07\x05\x03\ \x03\x2a\x28\x2c\x31\x33\x3b\x28\x2d\x53\x13\x15\x31\x09\x07\x15\ \x18\x22\x89\x8f\x9f\xa9\x70\x80\x89\xbc\xca\xd5\xdc\xe0\xe6\xeb\ \xec\xef\xef\xf3\xf6\xe6\xea\xf0\xd7\xdd\xe2\xb9\xc5\xcc\x91\xa3\ \xae\x81\x8e\x92\x0f\x11\x13\x40\x4e\x5d\xb5\xc4\xd0\xfb\xfb\xff\ \xf8\xfa\xfe\xf4\xf8\xfd\xf0\xf3\xf9\xe8\xec\xf0\xdc\xe2\xe7\xc5\ \xcf\xd6\x99\xa9\xb6\x95\xa4\xaf\x2b\x2d\x2f\x7d\x8a\x99\x7f\x90\ \x9b\x81\x91\x9a\xa6\xb2\xba\xe3\xe6\xe9\xc8\xcb\xd1\x64\x62\x63\ \x2e\x1b\x0f\x2d\x24\x25\x31\x34\x69\x70\x5e\x6b\x84\x7f\x83\x9a\ \x90\x90\xae\x90\x80\xa0\x6a\x42\x7c\x36\x07\x78\x33\x07\x8e\x3e\ \x09\x9a\x67\x4a\xc5\xb6\xb1\xd3\xd1\xd5\xd9\xd8\xde\xd1\xcf\xd4\ \x9e\x84\x82\x72\x49\x3a\xba\xb9\xbc\xc4\xc8\xcc\xcb\xcd\xcd\xde\ \xe0\xe3\xe7\xea\xee\xe4\xea\xee\xd0\xdd\xe5\xe5\xec\xf4\xdd\xe7\ \xef\xe4\xea\xf3\xe1\xe8\xf1\xdc\xe5\xee\xd9\xe3\xec\xd6\xe1\xea\ \xd3\xde\xe8\xcf\xdb\xe4\xcb\xd8\xe1\xc6\xd3\xdd\xc5\xd3\xdc\xbc\ \xc8\xd4\x59\x67\x9b\x29\x3d\x84\xba\xc5\xd0\xad\xc2\xcf\xd6\xe2\ \xe7\x9a\xbf\xde\x0e\x74\xc4\x00\x70\xc8\x01\x74\xca\x00\x75\xca\ \x01\x78\xca\x00\x73\xc7\x34\x8e\xc8\xcc\xdd\xe7\xa1\xab\xb1\xc1\ \xcc\xd2\xca\xd4\xda\xc5\xce\xd5\xb8\xc7\xce\x71\x56\x56\x00\x00\ \x00\x1b\x33\x2b\x22\x3c\x37\x1b\x2d\x24\x1c\x2a\x2b\x30\x59\x61\ \x33\x5b\x5b\x34\x5f\x6a\x43\x6f\x8a\x46\x70\x7d\x33\x5e\x64\x2b\ \x4b\x54\x27\x41\x46\x21\x39\x34\x20\x37\x3f\x27\x40\x48\x2f\x4b\ \x64\x37\x54\x66\x47\x61\x72\x26\x3c\x3e\x26\x3e\x3f\x33\x49\x50\ \x30\x46\x50\x26\x38\x3e\x2c\x40\x47\x2c\x41\x4d\x2c\x47\x4f\x2c\ \x45\x44\x2b\x4e\x42\x2d\x4d\x42\x26\x3e\x38\x23\x39\x37\x1d\x29\ \x25\x17\x1d\x1a\x19\x22\x20\x17\x24\x23\x1c\x28\x22\x1a\x26\x22\ \x1e\x32\x2b\x1b\x2a\x22\x16\x1b\x16\x13\x17\x11\x1a\x23\x1f\x18\ \x1a\x19\x19\x1c\x18\x20\x29\x32\x1f\x53\xa3\x1b\x4f\xa6\x1c\x4e\ \xa4\x20\x53\xa6\x2a\x37\x5d\x34\x23\x21\x30\x1d\x1d\x34\x1d\x1e\ \x32\x40\x6b\x58\x44\x4b\xa5\x4b\x16\x92\x75\x58\xb5\xee\xf6\xfd\ \xfc\xfe\xfa\xfb\xfe\xf8\xfa\xfe\xf5\xf8\xfc\xf1\xf5\xf9\xd4\xdc\ \xdf\x39\x42\x48\x00\x01\x02\x07\x07\x06\x06\x05\x05\x0a\x0d\x10\ \x20\x29\x46\x18\x1b\x36\x08\x07\x13\x15\x1d\x72\x07\x26\xdb\x7a\ \x8b\xe8\x94\xa4\xa4\x85\x97\xa5\xb8\xca\xd6\x9d\xaa\xb5\xbf\xc3\ \xc8\xde\xe3\xe6\xc3\xcc\xd3\x9d\xab\xb6\x92\xa4\xad\x2e\x30\x2e\ \x40\x4c\x5d\x93\xaa\xba\xf7\xfa\xfd\xfb\xfb\xfe\xf6\xf9\xfe\xf2\ \xf6\xfb\xec\xf1\xf5\xe4\xe9\xee\xd5\xdc\xe2\xb3\xc1\xca\xa8\xbc\ \xc8\x63\x66\x66\x69\x6b\x6e\xbf\xcd\xd7\x7c\x90\x9c\x7f\x91\x9a\ \x86\x98\xa0\xb2\xbd\xc2\xf4\xf6\xf8\xdb\xdf\xe6\x51\x4c\x4d\x2c\ \x2c\x30\xac\xba\xc8\xc2\xcb\xd2\xd8\xde\xe1\xe8\xed\xef\xf1\xf2\ \xf5\xee\xee\xf3\x9e\x8c\x87\x3d\x1d\x10\x7e\x74\x70\xd4\xda\xde\ \xe2\xe6\xea\xee\xf1\xf5\xf6\xf7\xfc\xf9\xfa\xff\xf0\xf1\xf6\xa1\ \x98\x9b\xae\xb7\xc1\xb3\xb9\xbe\xba\xbe\xbf\xe7\xe9\xec\xee\xf1\ \xf8\xdd\xe4\xec\xce\xdb\xe4\xd2\xde\xe5\xe4\xea\xf1\xe3\xea\xf1\ \xdf\xe7\xf0\xdd\xe6\xef\xda\xe3\xec\xd8\xe3\xeb\xd6\xe1\xea\xd5\ \xe0\xe8\xd2\xdd\xe5\xcf\xd9\xe2\xcf\xda\xe2\xc1\xcd\xd7\x72\x89\ \xa9\x61\x78\xa6\xc9\xd5\xdb\x63\x78\x71\x7d\x9e\xb2\x43\x86\xbc\ \x0d\x6f\xbc\x00\x6e\xc3\x00\x74\xc9\x01\x78\xcd\x00\x79\xcd\x0b\ \x7d\xca\xa0\xc9\xe0\xdf\xe6\xec\xdb\xe2\xe7\xdb\xe3\xe9\xd9\xe1\ \xe7\xd4\xdb\xe1\xcb\xd7\xdc\x99\x8c\x90\x00\x00\x00\x1c\x34\x30\ \x1c\x31\x2d\x22\x39\x3e\x22\x42\x40\x26\x49\x44\x2b\x56\x54\x30\ \x63\x6f\x4a\x7d\x8c\x3c\x67\x6a\x30\x55\x56\x37\x5e\x6e\x43\x6b\ \x80\x26\x43\x4c\x27\x46\x41\x2c\x47\x50\x3e\x5b\x6b\x52\x72\x8a\ \x4f\x6c\x85\x33\x4b\x5a\x2a\x4b\x4e\x2d\x45\x56\x35\x4e\x5e\x35\ \x4d\x60\x39\x51\x65\x39\x51\x63\x35\x56\x60\x2a\x49\x44\x28\x42\ \x3f\x2c\x4a\x45\x25\x3d\x37\x29\x3f\x38\x1b\x2a\x27\x17\x20\x1e\ \x1b\x26\x21\x1d\x2f\x26\x1b\x23\x22\x22\x37\x35\x23\x38\x34\x1b\ \x27\x20\x14\x15\x11\x14\x15\x11\x16\x1b\x15\x18\x1c\x19\x15\x19\ \x12\x13\x17\x0e\x2e\x57\x8f\x1b\x53\xaa\x1d\x4c\xa4\x1c\x4c\xa3\ \x28\x37\x61\x32\x1c\x1c\x2f\x1c\x1d\x33\x1d\x1c\x4f\x38\x39\x9d\ \x59\x34\x49\xb1\xbd\x64\xed\xff\xf9\xfb\xfe\xf9\xfa\xfd\xf9\xfa\ \xfe\xf6\xf8\xfd\xf1\xf4\xfa\xeb\xf0\xf3\xe4\xea\xee\xd5\xdd\xe1\ \x69\x74\x79\x10\x14\x18\x0a\x0c\x11\x3a\x3e\x49\x25\x27\x2e\x08\ \x09\x17\x22\x25\x59\x0f\x29\xc8\x00\x20\xd8\x20\x43\xe9\x7d\x91\ \xe0\x7d\x90\xa3\x81\x94\xa1\x95\xa9\xb4\x82\x93\x9e\x9e\xa7\xb0\ \xb4\xbf\xc6\x82\x92\x99\x44\x4c\x51\x0c\x0e\x13\xd1\xd5\xd9\xec\ \xf1\xf6\xfd\xfd\xfd\xf9\xfa\xfd\xf5\xf8\xfd\xf0\xf4\xf9\xe7\xec\ \xf1\xdb\xe2\xe7\xc6\xd1\xd8\xaa\xbd\xc9\xa5\xb1\xb4\x20\x1f\x1d\ \xdb\xe0\xe3\xd1\xdc\xe3\x7e\x98\xa3\x90\xa6\xb8\xda\xe3\xea\x88\ \x9a\xa3\xa1\xb0\xb6\xe7\xef\xf4\x7c\x7e\x84\xba\xc2\xc9\xb4\xc4\ \xcf\xa8\xb7\xbe\xba\xc4\xc8\xe1\xe5\xe5\xf6\xf7\xf9\xf9\xfa\xfe\ \xed\xf0\xf7\x78\x78\x7f\xc4\xd0\xd8\xc1\xcd\xd5\xd2\xda\xde\xea\ \xee\xf0\xf5\xf7\xfb\xfa\xfb\xff\xf9\xf9\xfe\xc9\xd9\xe5\xb3\xc3\ \xd1\xb5\xbd\xc4\xb4\xba\xc1\xde\xe2\xe6\xe5\xea\xf0\xd7\xe1\xea\ \xd3\xdd\xe6\xcb\xd9\xe2\xc6\xd5\xdf\xd9\xe2\xeb\xe0\xe8\xf0\xdf\ \xe7\xf0\xdc\xe5\xee\xda\xe4\xec\xda\xe3\xec\xd8\xe2\xeb\xd5\xde\ \xe7\xd1\xdb\xe3\xcc\xd6\xdf\xaa\xb9\xc5\x85\xa0\xb2\xb7\xca\xd9\ \xb6\xc4\xc0\x13\x38\x19\x19\x30\x31\x34\x4a\x52\x2c\x60\x85\x0a\ \x5f\x9a\x04\x6f\xb7\x04\x75\xc5\x07\x7a\xc7\x71\xb2\xd9\xe1\xe9\ \xed\xe2\xe8\xec\xe1\xe8\xeb\xde\xe6\xea\xdd\xe6\xea\xdb\xe3\xe8\ \xdc\xe5\xea\xba\xa4\x9f\x00\x00\x00\x1d\x34\x2e\x20\x3a\x36\x24\ \x42\x3e\x20\x39\x35\x24\x40\x47\x2a\x4d\x4d\x28\x52\x51\x3a\x6b\ \x6e\x3c\x6a\x7f\x2e\x54\x58\x30\x54\x5b\x40\x67\x76\x35\x55\x58\ \x21\x40\x45\x28\x44\x46\x30\x48\x4a\x42\x5c\x6d\x54\x75\x8c\x41\ \x5b\x71\x3b\x5a\x6b\x40\x62\x75\x40\x59\x6d\x36\x51\x5e\x42\x5a\ \x64\x43\x59\x6d\x36\x50\x56\x24\x3b\x36\x23\x3b\x34\x29\x45\x40\ \x25\x3b\x35\x23\x38\x35\x24\x3b\x35\x16\x23\x1e\x1a\x24\x21\x17\ \x25\x1b\x1e\x32\x2e\x20\x35\x30\x29\x41\x3a\x1b\x25\x20\x14\x17\ \x14\x12\x13\x0f\x10\x11\x0d\x13\x14\x10\x14\x19\x15\x18\x22\x1e\ \x30\x41\x4c\x2c\x65\xb5\x1e\x50\xa8\x1e\x53\xab\x23\x36\x66\x30\ \x19\x19\x30\x1a\x19\x47\x2b\x2d\x9a\x5f\x43\xad\x64\x2c\x91\xb3\ \xa5\xe4\xf4\xf5\xfa\xfb\xfd\xf9\xfa\xfe\xf6\xf8\xfd\xf1\xf5\xf9\ \xea\xef\xf2\xe1\xe8\xeb\xd9\xe1\xe5\xc9\xd4\xd6\xa8\xb4\xb6\x6a\ \x76\x7c\x42\x49\x56\x17\x17\x1b\x0e\x0e\x0f\x26\x2b\x52\x7a\x87\ \xc1\x51\x6d\xe0\x04\x25\xda\x00\x21\xd9\x16\x35\xe3\x5b\x6c\xd5\ \x66\x76\x90\x61\x6c\x75\x80\x8f\x9c\xb3\xc5\xd0\xa4\xb5\xbc\x44\ \x53\x59\x1b\x26\x32\x14\x1a\x22\xb6\xb6\xb8\xff\xff\xff\xfa\xfb\ \xfd\xf6\xf9\xfe\xf3\xf6\xfb\xed\xf0\xf6\xe1\xe7\xec\xcd\xd9\xdf\ \xb3\xc3\xcb\xba\xcb\xd3\x42\x46\x43\x65\x67\x68\xff\xff\xff\xf4\ \xf7\xfc\xc6\xd6\xe2\x9e\xba\xcc\x96\xb1\xc2\x8f\xa4\xae\x7b\x90\ \x99\xc2\xcf\xd9\x96\x98\x9c\xd2\xd9\xdf\xa6\xb8\xc2\x9e\xad\xb5\ \xaa\xb8\xbf\xbb\xc5\xcb\xd5\xda\xdc\xe9\xed\xef\xee\xf1\xf6\xb3\ \xc0\xcc\xbe\xcd\xdb\xb9\xc6\xce\xbc\xc9\xce\xe3\xe9\xed\xec\xf0\ \xf4\xf2\xf5\xf8\xeb\xef\xf3\xc0\xd3\xdf\xac\xc4\xd3\xd6\xe0\xe7\ \xe0\xe7\xeb\xe5\xeb\xf0\xde\xe5\xec\xda\xe2\xea\xd7\xe0\xe9\xd2\ \xdc\xe5\xc4\xd0\xdc\xb4\xc7\xd2\xcc\xd9\xe0\xde\xe7\xee\xdf\xe7\ \xef\xdd\xe6\xef\xdc\xe5\xee\xdb\xe3\xec\xd7\xe1\xe9\xd2\xdd\xe4\ \xc6\xd0\xd9\x82\x98\xa5\xa9\xbf\xcb\xe8\xef\xf7\x6f\x8e\x6c\x2d\ \x5a\x2c\x39\x56\x57\x1c\x32\x32\x17\x26\x23\x10\x2e\x43\x0d\x4c\ \x79\x4c\x88\xaa\x80\xb2\xcd\xd6\xe3\xe8\xe1\xe7\xeb\xe1\xe8\xea\ \xe1\xe8\xeb\xe1\xe7\xed\xe0\xe7\xeb\xdf\xe6\xec\xdf\xe7\xec\xcf\ \xca\xca\x00\x00\x00\x1b\x32\x30\x1d\x37\x34\x1f\x38\x34\x20\x3a\ \x35\x1d\x33\x33\x1f\x3c\x3a\x2d\x5c\x5e\x38\x64\x78\x45\x70\x82\ \x2f\x58\x5b\x33\x59\x65\x35\x5d\x67\x35\x53\x5b\x2d\x48\x5c\x30\ \x50\x58\x26\x45\x4a\x3a\x5d\x73\x4b\x6e\x7f\x43\x5c\x67\x46\x63\ \x72\x46\x64\x72\x4c\x66\x7b\x3f\x5a\x72\x3d\x56\x67\x3d\x57\x68\ \x36\x55\x60\x2b\x45\x45\x29\x45\x42\x2d\x4d\x4e\x2c\x4a\x44\x27\ \x3e\x3c\x26\x3e\x38\x19\x26\x22\x1b\x29\x25\x1c\x2c\x2b\x20\x31\ \x2b\x20\x33\x2d\x20\x35\x2c\x16\x1d\x17\x14\x17\x14\x13\x14\x10\ \x12\x14\x0f\x12\x14\x10\x14\x1a\x11\x16\x1d\x17\x1b\x22\x1b\x34\ \x5d\x99\x1d\x50\xa9\x1d\x52\xad\x23\x42\x7d\x2f\x1c\x20\x3c\x24\ \x22\x92\x5f\x50\xba\x59\x21\xcb\x4c\x00\xd5\x55\x03\xe7\xb8\x99\ \xf8\xfa\xfd\xf6\xf8\xfd\xf1\xf5\xf9\xe9\xed\xf0\xe0\xe7\xea\xd7\ \xdf\xe4\xd1\xdb\xe0\xb0\xbc\xbd\x62\x6b\x6d\x3c\x3e\x44\x26\x25\ \x26\x18\x14\x14\x25\x24\x27\x8c\x95\xba\x60\x7e\xee\x89\x9f\xe5\ \x34\x52\xe0\x01\x22\xda\x00\x1f\xd9\x00\x19\xdd\x2b\x3b\xca\x41\ \x50\x97\x74\x7f\xa2\xbc\xc6\xce\xaf\xbd\xc3\x55\x64\x6f\x32\x3b\ \x48\x2d\x39\x41\x8e\x99\xa4\xf6\xf9\xfe\xf9\xfb\xfe\xf2\xf7\xfc\ \xee\xf3\xf9\xe6\xeb\xf1\xd7\xdf\xe6\xbf\xcd\xd4\xb3\xc5\xcf\x95\ \x9f\xa0\x1c\x1d\x1d\xcb\xce\xd0\xff\xfe\xff\xfa\xfa\xff\xf5\xf7\ \xfc\xd9\xe3\xeb\xb7\xca\xd7\xa7\xba\xc6\x8e\xa3\xaf\xb1\xc4\xd1\ \x73\x7a\x81\xdd\xe0\xe6\xcd\xd7\xe0\xaa\xb9\xc2\xc8\xd6\xdf\xd3\ \xdd\xe5\xaf\xbb\xc2\xbc\xc8\xce\xcf\xd9\xe1\xaa\xb8\xc0\xd4\xdf\ \xe8\xb9\xc8\xd1\xbd\xcb\xd1\xfa\xfa\xfd\xe6\xed\xf4\xde\xe6\xec\ \xc5\xd1\xdb\xa3\xbe\xd0\x9f\xb9\xca\xb6\xc4\xcc\xe7\xed\xf0\xe1\ \xe8\xee\xde\xe6\xed\xdd\xe5\xed\xdb\xe2\xeb\xd5\xdf\xe8\xcc\xd7\ \xe0\xb8\xc9\xd4\xa5\xb9\xc4\xbc\xca\xd1\xe4\xeb\xf0\xe5\xeb\xf3\ \xe0\xe8\xf0\xdf\xe7\xee\xdb\xe3\xeb\xd6\xde\xe4\xa1\xb2\xbf\xa4\ \xb8\xc4\xe9\xf0\xf7\xd1\xdb\xcd\x41\x74\x2c\x54\x7d\x5f\x69\x82\ \x81\x31\x53\x47\x26\x3e\x36\x17\x1f\x1b\x0e\x12\x12\x51\x52\x4c\ \x84\x88\x83\xc0\xc8\xc9\xdc\xe4\xe9\xdf\xe5\xe8\xdf\xe5\xea\xe1\ \xe7\xeb\xe1\xe8\xeb\xe1\xe7\xeb\xe0\xe6\xea\xe0\xe7\xec\x00\x00\ \x00\x1f\x39\x38\x23\x40\x39\x1c\x31\x33\x21\x41\x39\x21\x3e\x37\ \x23\x48\x47\x23\x45\x41\x3b\x67\x79\x46\x70\x81\x30\x55\x5a\x3a\ \x58\x64\x34\x59\x61\x3e\x64\x70\x43\x64\x82\x3e\x60\x71\x2d\x4f\ \x59\x33\x4e\x59\x3b\x54\x5d\x32\x49\x56\x39\x56\x66\x3e\x5d\x6a\ \x45\x61\x77\x4a\x6d\x82\x3c\x51\x5d\x37\x4f\x56\x3f\x5f\x64\x2c\ \x41\x3d\x2d\x49\x44\x35\x62\x61\x33\x5d\x56\x2b\x45\x40\x23\x3a\ \x34\x1e\x30\x2f\x1d\x2d\x2a\x21\x32\x2f\x1d\x2e\x2a\x23\x37\x34\ \x1e\x2a\x25\x17\x1b\x18\x16\x17\x16\x13\x14\x11\x14\x17\x13\x13\ \x17\x13\x13\x17\x12\x1a\x24\x21\x1e\x2a\x26\x29\x3e\x52\x2c\x64\ \xb6\x1b\x4f\xa8\x1e\x49\x94\x3c\x34\x4a\x7d\x47\x3b\xb2\x54\x1e\ \xcb\x4c\x00\xd2\x50\x00\xc4\x59\x0a\xc6\xbe\xac\xf6\xf8\xfd\xf1\ \xf5\xf9\xec\xf0\xf3\xe3\xe9\xeb\xdb\xe3\xe7\xd0\xdb\xdf\xbc\xc6\ \xca\x75\x7f\x83\x56\x55\x5a\x27\x22\x22\x16\x0f\x0e\x35\x2d\x2d\ \x62\x63\x66\xd5\xd7\xd5\xa5\xbd\xf8\x5f\x7b\xeb\x31\x52\xeb\x08\ \x29\xe6\x01\x1e\xde\x00\x13\xd7\x00\x08\xc1\x06\x0e\xa5\x1a\x22\ \x78\x39\x41\x68\x44\x4d\x6b\x17\x1a\x24\x42\x49\x5a\x69\x79\x82\ \xa0\xb1\xbc\xdb\xe7\xef\xf0\xf5\xfa\xf2\xf6\xfb\xea\xef\xf4\xdc\ \xe4\xea\xc9\xd4\xdb\xaf\xbf\xc9\xb3\xc4\xca\x4d\x52\x51\x4f\x51\ \x53\xfc\xfb\xfd\xfc\xfb\xfe\xf8\xf9\xfe\xf3\xf6\xfb\xed\xf0\xf5\ \xdf\xe5\xe9\xc1\xce\xd5\xa3\xb6\xc2\x9e\xb0\xba\x6d\x72\x7a\xe1\ \xe4\xea\xf3\xf6\xfc\xe1\xe8\xf0\xda\xe3\xec\xd6\xdf\xe8\xc8\xd3\ \xdb\xad\xbe\xcb\xa8\xbe\xcd\x96\xa2\xa9\xd2\xd5\xd9\xe3\xea\xf1\ \xdb\xe4\xeb\xe9\xed\xf4\xe1\xe8\xee\xca\xd7\xe0\xa2\xb8\xc8\x8f\ \xab\xbf\x9e\xb9\xcb\x68\x78\x84\xd0\xdb\xe1\xe6\xeb\xf0\xe1\xe8\ \xef\xdf\xe6\xee\xde\xe5\xec\xd9\xe2\xea\xd2\xdc\xe3\xc7\xd3\xdd\ \xb6\xc6\xcf\xa7\xb9\xc3\x8a\x90\x9c\xde\xe5\xeb\xe5\xec\xf3\xe3\ \xea\xf1\xdb\xe2\xea\xa4\xb6\xc3\xc2\xd1\xda\xf1\xf4\xfa\xef\xf1\ \xf0\x80\xaa\x68\x55\x8e\x45\x6c\x8a\x7b\x59\x80\x53\x3e\x6b\x3a\ \x35\x57\x3c\x39\x48\x48\x17\x18\x1c\x15\x18\x18\x0d\x0e\x0f\x3a\ \x3c\x39\x7c\x84\x81\xc9\xd4\xd6\xdf\xe7\xeb\xdd\xe5\xe9\xe0\xe7\ \xea\xe0\xe7\xeb\xe0\xe7\xea\xe1\xe7\xec\x00\x00\x00\x21\x3e\x39\ \x1a\x32\x27\x14\x28\x27\x1e\x39\x33\x17\x2b\x2a\x26\x4f\x4c\x2a\ \x54\x59\x3b\x6c\x7a\x3d\x6e\x76\x37\x59\x6c\x2f\x4c\x4e\x2b\x4f\ \x56\x34\x56\x64\x4b\x69\x73\x42\x65\x6f\x30\x55\x5c\x32\x4f\x5e\ \x32\x46\x58\x41\x52\x58\x3c\x57\x65\x40\x5b\x6c\x45\x61\x72\x4a\ \x65\x72\x3f\x52\x60\x30\x49\x53\x37\x4e\x50\x1f\x2e\x2a\x21\x39\ \x30\x34\x5e\x5b\x31\x57\x50\x28\x40\x3b\x24\x39\x38\x1f\x31\x2f\ \x1f\x33\x31\x1e\x31\x2d\x25\x3e\x3b\x24\x39\x36\x1f\x28\x23\x1b\ \x1e\x19\x1b\x1c\x1a\x1f\x23\x1f\x2b\x32\x32\x25\x2d\x2c\x25\x2f\ \x2b\x24\x31\x2c\x20\x2d\x29\x22\x30\x32\x3d\x66\xa3\x16\x4f\xa7\ \x2a\x4e\x9c\x79\x62\x78\xa6\x5d\x3a\xc4\x51\x02\xc4\x5b\x0c\xca\ \x5f\x11\x49\xad\xaa\xaa\xed\xf9\xf2\xf6\xf9\xec\xf1\xf5\xe5\xeb\ \xee\xdc\xe3\xe6\xce\xd7\xda\xb2\xbc\xbc\x76\x80\x82\x52\x51\x55\ \x29\x20\x1e\x08\x04\x04\x12\x06\x03\xa0\x99\x9c\x9c\xa4\xa8\xa4\ \xa6\xa7\xdd\xde\xde\x7b\x94\xe1\x11\x37\xeb\x03\x23\xe8\x00\x18\ \xde\x00\x0f\xcc\x00\x09\xad\x00\x08\x82\x11\x1b\x5b\x27\x32\x5d\ \x0c\x0e\x1d\x0f\x12\x22\x33\x42\x70\xa2\xb0\xc2\x8c\x9c\xa7\xb9\ \xca\xd4\xd2\xe0\xe7\xd8\xe1\xe7\xe2\xe9\xee\xd5\xde\xe4\xbb\xc9\ \xcf\xa8\xbc\xc5\x8a\x95\x98\x17\x19\x19\xba\xbd\xbf\xfe\xfc\xfe\ \xfa\xfb\xfe\xf6\xf9\xfd\xf1\xf4\xf9\xe8\xec\xf2\xd4\xdd\xe2\xbc\ \xca\xd2\xa0\xb5\xc1\x8e\x9b\xa3\x72\x73\x79\xe8\xe8\xee\xf5\xf7\ \xfc\xf0\xf4\xf9\xe8\xec\xf3\xdc\xe3\xe9\xc8\xd3\xdb\x9e\xb2\xc2\ \xa4\xb9\xc7\x86\x90\x98\xa9\xa9\xaa\xf7\xfc\xff\xed\xf1\xf8\xe3\ \xe9\xf1\xd9\xe2\xe9\xc8\xd4\xdf\xa9\xbe\xcc\x8c\xa7\xb9\x94\xad\ \xbc\x7c\x90\x9d\x5f\x65\x69\xe9\xf0\xf1\xe6\xeb\xee\xe2\xe9\xee\ \xdf\xe6\xec\xdc\xe5\xe9\xd9\xe1\xe8\xd2\xdb\xe3\xc9\xd5\xdd\xb5\ \xc2\xca\x50\x68\x85\x73\x8c\xa8\xd3\xdd\xe0\xcc\xd2\xd7\xba\xc9\ \xd3\xbb\xcb\xd5\xd1\xda\xde\xf7\xf8\xf9\xab\xc4\x9a\x4d\x8f\x29\ \x66\xa4\x49\x7e\x98\x80\x3e\x78\x26\x36\x6f\x1d\x4c\x74\x4c\x38\ \x43\x45\x38\x43\x48\x38\x3c\x3f\x1b\x1c\x1e\x06\x04\x06\x0b\x0d\ \x0c\x23\x28\x27\x7b\x83\x7f\xd4\xdc\xdd\xe1\xe8\xeb\xdf\xe7\xeb\ \xe0\xe6\xeb\xe3\xe9\xec\x00\x00\x00\x26\x46\x44\x18\x2c\x2d\x1f\ \x38\x3b\x20\x3b\x38\x21\x39\x47\x27\x44\x3f\x20\x39\x33\x34\x6b\ \x72\x3f\x76\x83\x3d\x6c\x7c\x29\x4b\x51\x35\x60\x72\x41\x6e\x86\ \x3e\x61\x74\x29\x41\x49\x2c\x47\x50\x37\x52\x5c\x3d\x57\x62\x34\ \x47\x53\x31\x4b\x58\x39\x4f\x5e\x3a\x51\x58\x3c\x54\x60\x3a\x50\ \x5a\x44\x5e\x6d\x35\x4f\x55\x28\x41\x43\x27\x47\x41\x2a\x4d\x46\ \x30\x59\x55\x2a\x48\x45\x24\x39\x38\x1d\x2e\x2d\x1e\x2d\x2c\x29\ \x47\x46\x2c\x4b\x47\x23\x37\x33\x1e\x2d\x27\x14\x14\x11\x13\x15\ \x13\x15\x16\x13\x15\x19\x14\x19\x20\x18\x14\x15\x0f\x17\x19\x15\ \x22\x2c\x27\x2d\x42\x3f\x3c\x59\x6e\x35\x6e\xba\x69\x5f\x7e\xac\ \x5a\x33\xc7\x4e\x03\xc8\x58\x0a\x66\xa3\x98\x3d\xbd\xc7\x87\xe8\ \xf5\xeb\xf5\xfa\xee\xf2\xf6\xe7\xec\xef\xdd\xe4\xe7\xce\xd7\xd9\ \xb0\xbc\xbc\x72\x77\x70\x4a\x32\x28\x1f\x0d\x07\x05\x03\x04\x0b\ \x03\x03\x4a\x12\x01\xa1\x3c\x14\xc4\xba\xb4\x8e\x93\x96\xba\xbd\ \xc3\xfd\xff\xff\x86\xa0\xe2\x01\x21\xda\x00\x13\xd4\x00\x10\xb9\ \x00\x0b\x8e\x10\x1e\x66\x2d\x3c\x68\x07\x09\x1e\x0f\x0f\x18\x5a\ \x5d\x71\xb1\xbb\xc6\x49\x58\x81\xa0\xb0\xc0\x74\x8b\xa0\x9b\xab\ \xb7\x9e\xb3\xbe\x95\xa6\xb2\xa6\xb2\xbb\x9c\xad\xb6\x6e\x7d\x7f\ \x29\x2d\x2d\x44\x46\x49\xeb\xeb\xee\xfe\xfd\xff\xfa\xfb\xfd\xf5\ \xf8\xfd\xed\xf3\xf7\xe3\xe9\xee\xd3\xdc\xe3\xb3\xc1\xcc\x9d\xb4\ \xc2\x78\x83\x88\x68\x6c\x72\xeb\xed\xf3\xf5\xf8\xfd\xf0\xf4\xf9\ \xe8\xec\xf3\xdb\xe2\xe9\xc4\xd0\xd9\xa1\xb6\xc4\xa6\xbd\xc8\x85\ \x8f\x94\x79\x76\x76\xfa\xfe\xff\xee\xf2\xf8\xe6\xed\xf4\xdb\xe3\ \xea\xcc\xd7\xe0\xb4\xc6\xd2\x97\xb0\xbf\x8d\xa7\xb5\x8b\x9f\xa9\ \x3e\x46\x4d\x99\x9f\x9e\xeb\xef\xf2\xe5\xeb\xed\xe3\xe9\xed\xde\ \xe6\xea\xdd\xe4\xe8\xd8\xe0\xe7\xd5\xde\xe5\x9a\xa9\xb4\x76\x8d\ \x9b\x8a\x9f\xaa\xbd\xc6\xca\xa4\xb4\xbc\xb9\xc7\xcf\xb6\xc6\xcd\ \xdf\xe7\xe8\xc0\xd8\xaf\x59\x9e\x32\x48\x8c\x21\x5b\xa4\x32\x52\ \x96\x29\x48\x85\x2b\x43\x79\x2e\x72\x90\x7a\x93\xa3\xa9\x7b\x87\ \x8e\x54\x5c\x60\x37\x38\x3e\x1a\x17\x17\x09\x03\x04\x04\x04\x04\ \x07\x06\x06\x1e\x21\x1e\x80\x7f\x7a\xc2\xbb\xb3\xd5\xdf\xe1\xdc\ \xe5\xe9\x00\x00\x00\x1a\x2f\x2c\x27\x4b\x43\x20\x3a\x37\x1f\x3e\ \x39\x23\x40\x3f\x26\x40\x55\x1a\x2d\x38\x23\x38\x4a\x39\x63\x63\ \x3b\x79\x87\x39\x63\x71\x3d\x62\x75\x49\x77\x88\x47\x69\x79\x37\ \x50\x5b\x38\x53\x62\x30\x41\x49\x2e\x43\x50\x3b\x50\x5f\x3f\x58\ \x6c\x3e\x58\x65\x34\x4f\x5a\x39\x55\x65\x37\x4f\x57\x3a\x54\x53\ \x37\x54\x52\x28\x3b\x35\x26\x3c\x34\x2d\x4d\x46\x34\x5b\x5b\x2c\ \x4c\x46\x29\x4a\x47\x26\x40\x3e\x1e\x2f\x2d\x2b\x49\x43\x2a\x43\ \x3f\x1c\x31\x2b\x1d\x2c\x24\x16\x1a\x16\x18\x1d\x17\x18\x1c\x19\ \x19\x1f\x1c\x12\x17\x12\x11\x12\x0f\x17\x20\x1f\x1f\x2e\x2a\x21\ \x32\x2c\x2c\x42\x42\x78\x7e\x8d\xa0\x61\x3f\xbf\x4c\x05\xd0\x52\ \x00\x87\x8f\x75\x24\xea\xff\x61\xe6\xfc\xe8\xf5\xfa\xf0\xf3\xf6\ \xe8\xee\xef\xdd\xe5\xe6\xbc\xb3\xa9\x7b\x54\x3d\x54\x3c\x33\x3d\ \x1d\x12\x1e\x06\x02\x03\x03\x03\x0e\x06\x04\x40\x0f\x04\xa9\x2c\ \x01\x81\x34\x0d\x91\x6e\x59\xbe\xc9\xd0\xfa\xfd\xff\xf3\xf7\xfc\ \xf2\xf7\xf6\xb6\xc7\xdf\x30\x46\xbd\x07\x15\x99\x12\x20\x70\x36\ \x47\x70\x0e\x11\x27\x10\x12\x13\x3c\x3f\x4e\x83\x8e\xa4\x87\x92\ \xaa\x0f\x22\x52\x12\x25\x56\x58\x78\xa1\x57\x76\x93\x58\x69\x74\ \x93\xa5\xb2\xc0\xd1\xdc\xc2\xd0\xd9\x8f\x9e\xa4\x3c\x47\x4c\x78\ \x7a\x7d\xf5\xf3\xf5\xfc\xfb\xfc\xf9\xfa\xfd\xf4\xf7\xfc\xed\xf1\ \xf7\xe1\xe7\xec\xc6\xd1\xd9\xa4\xb6\xc1\xa1\xb4\xbf\x60\x67\x69\ \x71\x77\x7b\xf1\xf2\xf9\xf4\xf8\xfd\xf0\xf4\xf9\xe7\xec\xf2\xdb\ \xe1\xe9\xc3\xcf\xd7\xa2\xb7\xc5\xa7\xbd\xc8\x93\x9d\xa4\x55\x50\ \x50\xe6\xe9\xec\xf0\xf4\xf9\xe9\xee\xf4\xde\xe8\xee\xd2\xdd\xe6\ \xbf\xce\xd8\x9d\xb3\xc1\x88\x9f\xab\x8e\xa0\xa9\x69\x77\x80\x3a\ \x3c\x3d\xcc\xd1\xd1\xe8\xec\xee\xe5\xeb\xee\xe2\xe7\xeb\xde\xe4\ \xe9\xd5\xde\xe5\xac\xba\xc7\x94\xac\xbb\xc1\xd3\xde\xb9\xc4\xd0\ \x78\x78\x8c\xa7\xb4\xb8\xd1\xde\xde\xe3\xec\xe5\xaa\xcc\x92\x5d\ \xa9\x30\x5c\xa8\x2f\x4d\x97\x25\x5f\xab\x37\x5b\xa7\x30\x4b\x91\ \x27\x5f\x92\x51\xa1\xb3\xb6\xa0\xac\xb2\x98\xa5\xab\x81\x8e\x95\ \x54\x59\x5f\x32\x2d\x2d\x17\x0c\x0d\x0f\x0b\x0e\x05\x03\x04\x03\ \x03\x03\x00\x00\x00\x10\x00\x00\x49\x41\x36\x83\xac\xb5\x00\x00\ \x00\x18\x30\x2e\x1c\x33\x2e\x19\x32\x2b\x22\x45\x42\x25\x45\x48\ \x2d\x4d\x5d\x2b\x4c\x5b\x25\x38\x4b\x1b\x33\x2d\x33\x6c\x77\x41\ \x72\x85\x3b\x60\x6b\x3d\x66\x6f\x43\x67\x7b\x3c\x60\x71\x3e\x59\ \x6c\x38\x4f\x5f\x3b\x5b\x73\x40\x5e\x72\x3d\x4f\x57\x3e\x58\x69\ \x3e\x5c\x6f\x39\x5b\x6b\x37\x56\x5a\x30\x4b\x47\x24\x3c\x32\x17\ \x22\x1d\x21\x35\x30\x29\x4a\x42\x30\x57\x50\x2e\x50\x4f\x30\x59\ \x57\x2a\x47\x44\x22\x3a\x3a\x26\x40\x3e\x2b\x48\x47\x28\x40\x40\ \x1d\x27\x23\x16\x1a\x14\x1c\x21\x1c\x22\x2e\x2a\x22\x2d\x2b\x1d\ \x26\x24\x1b\x20\x1e\x1d\x29\x25\x20\x2e\x27\x26\x39\x37\x64\x59\ \x4b\x91\x57\x38\xb5\x46\x07\xce\x4e\x00\xcd\x58\x04\xb6\xab\x90\ \xec\xfd\xff\xfb\xf7\xfa\xf1\xf3\xf7\xe9\xee\xf1\xde\xe6\xe9\xc5\ \xc5\xbf\x77\x4e\x37\x44\x17\x09\x31\x1a\x12\x15\x0a\x06\x04\x03\ \x04\x0d\x04\x03\x38\x0e\x03\x99\x26\x00\xb9\x2f\x00\xa0\x4c\x28\ \x8e\xe3\xf5\xff\xff\xff\xf4\xf7\xfb\xee\xf3\xf5\xe0\xe9\xec\xd1\ \xdb\xde\xae\xbd\xb9\x62\x72\x86\x4d\x5c\x6f\x20\x23\x28\x0a\x0a\ \x08\x3c\x3d\x41\x7f\x89\x9a\xad\xb7\xc8\x6f\x7e\xa3\x25\x35\x61\ \x04\x17\x4a\x03\x16\x49\x2c\x41\x6f\x52\x64\x82\x8d\x99\xa7\xb3\ \xba\xc0\xb7\xbe\xc4\x91\x9c\xa1\x39\x43\x49\x50\x52\x56\xec\xeb\ \xed\xfb\xfc\xfd\xf7\xf9\xfd\xf2\xf6\xfb\xe8\xee\xf4\xd9\xe0\xe7\ \xbf\xcc\xd3\x99\xac\xb6\x98\xa8\xb0\x43\x47\x48\x8b\x90\x95\xf7\ \xf8\xfd\xf5\xf9\xfe\xf1\xf5\xfb\xe8\xed\xf3\xdb\xe3\xea\xc6\xd1\ \xd9\xa1\xb4\xc2\xa6\xba\xc5\xa0\xab\xb1\x3e\x3b\x3a\xcc\xcd\xd0\ \xf4\xf8\xfc\xec\xf0\xf7\xe2\xe9\xf1\xd6\xe0\xe7\xc4\xd1\xda\xa8\ \xba\xc5\x8e\xa1\xac\x90\xa3\xab\x87\x93\x9c\x15\x19\x1d\x6f\x72\ \x73\xda\xde\xdd\xea\xef\xf2\xe6\xea\xed\xd8\xe1\xe6\xc1\xce\xd9\ \xaa\xbf\xcd\xbe\xcf\xd7\xdd\xe6\xed\x7e\x7d\xac\x00\x03\x3a\x45\ \x4a\x56\x86\x98\x81\x8f\xb7\x82\x72\xab\x5f\x5d\xa3\x30\x5c\xa8\ \x2d\x59\xa5\x2a\x5d\xaa\x2b\x5a\xa5\x2b\x64\xa4\x4c\xac\xc4\xba\ \xbe\xc9\xcf\x9f\xac\xb2\x94\xa0\xa5\xab\xb8\xbd\x85\x90\x97\x4d\ \x4d\x52\x39\x1e\x12\x3e\x1d\x0f\x17\x0d\x0b\x06\x04\x06\x03\x03\ \x03\x01\x04\x05\x00\x00\x00\x14\x0a\x04\x00\x00\x00\x24\x42\x3f\ \x28\x4a\x4b\x26\x44\x45\x25\x4a\x47\x24\x48\x42\x24\x49\x44\x28\ \x4a\x50\x23\x3d\x3d\x1b\x33\x2c\x2c\x51\x5c\x45\x72\x82\x3d\x61\ \x70\x3d\x6a\x7d\x43\x63\x71\x48\x6f\x86\x46\x69\x7f\x46\x63\x78\ \x4d\x6e\x85\x45\x62\x6c\x2f\x44\x53\x3e\x57\x64\x49\x63\x79\x48\ \x69\x7c\x31\x4a\x50\x28\x38\x36\x22\x36\x31\x1a\x26\x21\x22\x38\ \x30\x26\x40\x3a\x2c\x4e\x48\x30\x53\x55\x37\x63\x63\x2e\x51\x53\ \x30\x53\x55\x26\x3e\x3e\x2b\x48\x44\x27\x42\x3e\x1d\x2c\x27\x12\ \x15\x11\x15\x19\x13\x1e\x22\x1d\x17\x1c\x14\x19\x20\x18\x1c\x23\ \x1d\x1f\x2b\x26\x1f\x30\x2e\x60\x64\x61\xa2\x63\x40\xac\x46\x0f\ \xc7\x4a\x01\xd7\x51\x00\x77\x98\x7c\xa6\xee\xfb\xfc\xf8\xfc\xf2\ \xf6\xfb\xec\xf5\xf8\xe3\xee\xf1\xd6\xe0\xe2\x7c\x6c\x5c\x43\x1f\ \x11\x39\x1e\x17\x18\x0c\x08\x03\x03\x03\x0b\x07\x05\x2d\x0d\x05\ \x91\x27\x02\xb8\x3c\x0f\xa9\x4d\x26\x89\xa5\xa3\x90\xee\xff\xf7\ \xf8\xfc\xef\xf4\xf6\xe6\xed\xee\xd4\xdf\xe0\xad\xb9\xbb\x75\x83\ \x84\x6c\x76\x77\x32\x33\x30\x0a\x09\x09\x14\x17\x18\x8d\x8f\x94\ \xca\xd1\xda\x6f\x80\xa4\x53\x62\x98\x8a\x94\xac\x0d\x27\x69\x07\ \x19\x4c\x03\x16\x4a\x03\x11\x40\x16\x1d\x3c\x2d\x31\x3c\x42\x48\ \x4f\x2b\x31\x34\x31\x3f\x48\x4d\x59\x62\xc3\xca\xcf\xf8\xf9\xfd\ \xf5\xf8\xfd\xef\xf3\xf9\xe6\xec\xf1\xd4\xde\xe3\xb0\xbe\xc5\x8c\ \x9e\xa8\x90\x9d\xa4\x23\x23\x22\x9c\xa0\xa4\xfa\xfc\xff\xf7\xfa\ \xfe\xf2\xf6\xfb\xe8\xee\xf4\xdd\xe5\xea\xc9\xd3\xdb\xa0\xb1\xbc\ \x9b\xaf\xbb\xa5\xb0\xb7\x1f\x1e\x1e\xae\xaf\xb1\xf5\xfa\xfe\xef\ \xf3\xf9\xe7\xed\xf4\xdc\xe4\xeb\xcc\xd6\xde\xaf\xbe\xc7\x91\xa2\ \xac\x84\x97\xa0\x65\x71\x7a\x38\x44\x4d\x29\x2f\x36\x5d\x60\x60\ \xac\xb1\xb3\xc3\xcd\xcf\xd8\xe3\xe9\xe2\xeb\xf1\xe2\xeb\xee\xd8\ \xdd\xe2\x86\x83\xc2\x08\x0a\x71\x04\x0a\x52\x00\x04\x35\x11\x18\ \x30\x57\x67\x61\x90\xb1\x8a\x7b\xad\x62\x57\x9c\x26\x56\x9d\x24\ \x50\x9c\x21\x6b\xac\x55\xbc\xd3\xc3\xdd\xe3\xeb\xca\xd4\xd9\xa9\ \xb5\xbc\x8b\x97\x99\xbd\xcb\xcf\xb0\xb9\xc0\x6e\x75\x7c\x50\x32\ \x26\x6f\x2c\x09\x58\x27\x0e\x1c\x10\x0e\x05\x06\x09\x04\x04\x03\ \x03\x03\x04\x01\x04\x06\x00\x00\x00\x2a\x51\x51\x37\x6f\x72\x30\ \x5d\x5a\x30\x5b\x55\x20\x3e\x35\x20\x41\x3e\x25\x48\x49\x20\x39\ \x34\x16\x27\x21\x2e\x4d\x5d\x47\x6e\x80\x46\x6a\x7c\x3d\x61\x68\ \x38\x5a\x6a\x4b\x6d\x7e\x49\x71\x83\x46\x67\x7b\x43\x62\x76\x40\ \x5c\x6b\x34\x4f\x64\x3a\x55\x68\x42\x61\x75\x4b\x67\x77\x38\x55\ \x5c\x26\x41\x3c\x1f\x30\x29\x18\x21\x20\x1a\x26\x22\x1f\x34\x2c\ \x2e\x56\x51\x30\x57\x57\x36\x65\x65\x33\x5c\x5a\x33\x58\x54\x2d\ \x4e\x4f\x26\x40\x3c\x26\x3e\x39\x18\x1f\x1c\x16\x1a\x14\x18\x1d\ \x17\x19\x1b\x19\x13\x16\x15\x15\x19\x16\x18\x1f\x1b\x1a\x29\x28\ \x51\x50\x4d\x95\x5f\x42\xa9\x50\x1e\xa9\x5c\x23\x56\xaa\xa4\x4d\ \xaa\xa5\x59\xe0\xf1\xe2\xf6\xfc\xf2\xf6\xf9\xdf\xd9\xcf\xc7\xad\ \x99\xab\x85\x6e\x79\x4d\x39\x40\x30\x29\x36\x20\x15\x14\x0a\x06\ \x05\x03\x02\x0a\x06\x04\x1f\x07\x02\x8d\x24\x00\xbb\x37\x08\x8b\ \x91\x8a\x23\xc1\xdc\x51\xda\xf2\xf6\xf9\xfc\xf0\xf5\xf9\xe8\xee\ \xf1\xda\xe2\xe5\xb5\xc3\xc2\x6f\x7c\x7e\x64\x70\x74\x3a\x3b\x38\ \x07\x07\x07\x13\x0c\x09\x52\x51\x55\xb0\xb5\xb7\xf5\xf7\xf9\x98\ \xa7\xc1\x20\x3e\x8e\x39\x57\xa4\x12\x36\x8f\x0a\x25\x6b\x0e\x1f\ \x53\x07\x15\x3c\x0c\x17\x2f\x1d\x24\x2d\x23\x27\x2f\x16\x16\x12\ \x59\x5d\x55\x7f\x8f\x95\xab\xb8\xc0\xeb\xf1\xf9\xef\xf3\xf8\xee\ \xf2\xf7\xe3\xea\xf0\xcb\xd5\xdc\x9f\xaf\xb8\x85\x95\x9e\x55\x5c\ \x5f\x0e\x11\x11\x76\x75\x74\xf6\xf5\xf7\xf8\xfa\xfe\xf1\xf5\xfa\ \xe8\xec\xf2\xdb\xe3\xe8\xc5\xcf\xd7\x9d\xae\xb7\x90\xa3\xae\x7e\ \x83\x84\x0d\x0b\x0e\x89\x8b\x8c\xf2\xf6\xfa\xf1\xf5\xfa\xeb\xf0\ \xf5\xde\xe6\xed\xcc\xd8\xde\xb8\xc6\xcd\xa4\xb1\xba\x8d\x9e\xa9\ \x7c\x8f\x9a\x75\x88\x94\x37\x40\x48\x26\x31\x36\x75\x81\x88\xa7\ \xb7\xbb\xda\xe3\xe7\xff\xff\xff\xdb\xd8\xe9\x55\x52\xb7\x0a\x0c\ \x99\x01\x06\x80\x03\x07\x66\x05\x09\x52\x03\x07\x35\x18\x1f\x31\ \x36\x44\x34\x5b\x87\x3b\x60\xa9\x31\x7a\xb4\x68\xb9\xd7\xb7\xca\ \xdc\xd3\xda\xe2\xe7\xdc\xe5\xe7\xd8\xe0\xe4\xc6\xd0\xd6\x94\xa3\ \xa8\xc0\xcd\xd0\xc2\xcb\xcf\x85\x8f\x96\x49\x33\x2f\x68\x28\x07\ \x75\x30\x0b\x5d\x27\x0c\x21\x15\x12\x06\x07\x0a\x04\x03\x04\x03\ \x03\x05\x00\x00\x00\x27\x48\x49\x36\x6d\x61\x23\x44\x3a\x29\x52\ \x49\x2b\x59\x56\x27\x4e\x4a\x24\x47\x46\x26\x4e\x4e\x1c\x36\x39\ \x3c\x67\x75\x42\x64\x75\x3d\x64\x74\x32\x56\x6a\x3f\x61\x73\x3c\ \x57\x62\x41\x61\x70\x4a\x69\x81\x50\x6c\x7c\x4a\x65\x77\x48\x66\ \x7e\x44\x61\x72\x40\x5b\x69\x3e\x57\x5e\x2a\x42\x3f\x26\x3d\x38\ \x22\x3a\x37\x26\x3e\x3d\x21\x32\x30\x20\x34\x30\x30\x5b\x5c\x38\ \x65\x65\x37\x6c\x6b\x35\x5b\x5d\x25\x3e\x39\x2c\x4b\x46\x22\x3a\ \x39\x26\x3e\x3b\x17\x1f\x1a\x11\x11\x0c\x16\x1b\x18\x17\x1a\x16\ \x1e\x25\x22\x19\x24\x1c\x13\x1d\x19\x4b\x29\x12\xa1\x3c\x07\xa1\ \x4d\x24\x8e\x6a\x4c\x94\x92\x76\x4a\xe8\xff\x46\xe2\xf9\xdf\xf5\ \xfb\xee\xf3\xf5\xd4\xbf\xab\x9c\x3f\x06\x91\x37\x08\x6c\x23\x05\ \x40\x2b\x24\x3d\x22\x18\x14\x0a\x06\x02\x03\x03\x0a\x04\x06\x17\ \x05\x02\x82\x37\x21\xb0\x5a\x3b\xb3\x2e\x00\x88\x61\x45\x76\xb7\ \xba\xd2\xf9\xff\xf4\xf7\xfa\xeb\xf1\xf3\xde\xe6\xe7\xbf\xcb\xcc\ \x7d\x88\x89\x66\x6d\x70\x3a\x3f\x3d\x06\x06\x04\x08\x06\x06\x1b\ \x0a\x04\xaa\x86\x67\xbd\xc2\xc9\xff\xff\xff\xf8\xfa\xfd\xa9\xbb\ \xd5\x22\x4a\x9b\x14\x35\x86\x0b\x24\x62\x0d\x1e\x4f\x0b\x19\x3b\ \x22\x2f\x44\x1f\x24\x31\x0c\x0e\x14\x43\x44\x43\x82\x7a\x67\x84\ \x87\x83\x8c\x99\xa0\xb3\xbb\xc3\xdd\xe8\xf0\xcd\xd9\xe0\xc8\xd2\ \xd9\xac\xba\xc0\xbf\xce\xd9\x53\x61\x62\x2a\x2e\x31\x46\x52\x56\ \x54\x5a\x5a\xb8\xbb\xbb\xf8\xfa\xfe\xef\xf3\xf9\xe7\xec\xf2\xdb\ \xe2\xe8\xcb\xd3\xdb\x99\xa6\xaf\x81\x93\x9c\x36\x3a\x3c\x2c\x30\ \x35\x3f\x46\x49\xc7\xc9\xc9\xf6\xf9\xfe\xee\xf2\xf8\xe4\xea\xf1\ \xdb\xe3\xe9\xc1\xca\xd1\x76\x84\x90\x8f\xa2\xac\xbe\xcd\xd6\x99\ \xa8\xb2\x2a\x31\x3d\x32\x34\x39\xbb\xbf\xce\xd7\xdb\xe2\xc7\xc5\ \xe1\x7b\x79\xcc\x22\x26\xb3\x02\x07\xa8\x00\x05\xa1\x01\x04\x91\ \x00\x05\x77\x01\x06\x69\x04\x09\x4d\x3d\x46\x4d\x2b\x2d\x2e\x1d\ \x27\x1e\x64\x74\x62\xd8\xe1\xdb\xa4\xa7\xa6\xe3\xe9\xec\xd7\xdf\ \xe2\xda\xe2\xe4\xe1\xe8\xea\xdb\xe2\xe7\xc1\xcc\xd2\xc3\xcf\xd5\ \xc5\xcf\xd4\xa4\xb0\xb7\x77\x79\x7e\x50\x31\x26\x40\x13\x03\x6b\ \x2c\x0b\x63\x2a\x0c\x25\x19\x15\x09\x0a\x0c\x05\x04\x05\x00\x00\ \x00\x27\x49\x57\x23\x41\x38\x1a\x34\x2c\x27\x4c\x49\x2f\x5a\x53\ \x28\x51\x47\x24\x47\x47\x2a\x55\x58\x27\x45\x44\x36\x5a\x63\x41\ \x6b\x7d\x40\x69\x7e\x43\x68\x74\x3c\x59\x63\x30\x4a\x53\x40\x5f\ \x71\x53\x73\x89\x3f\x57\x63\x35\x4b\x58\x4b\x70\x88\x45\x67\x7a\ \x42\x5a\x6c\x36\x50\x5c\x29\x47\x43\x1b\x2c\x2a\x25\x3a\x35\x27\ \x3f\x39\x22\x32\x2f\x1b\x29\x24\x2c\x4f\x48\x2d\x52\x4a\x32\x63\ \x63\x32\x59\x58\x2b\x4b\x4e\x29\x3f\x41\x26\x41\x3b\x24\x37\x31\ \x16\x1c\x15\x12\x16\x11\x17\x1f\x18\x22\x32\x2c\x23\x2e\x29\x17\ \x21\x1c\x2d\x27\x20\x8e\x39\x0c\xa6\x38\x00\xa7\x41\x02\x29\xcb\ \xe5\x71\xef\xff\xff\xfb\xfd\xf7\xf8\xfd\xf1\xf4\xfa\xe1\xdb\xd2\ \x9a\x44\x0b\x8c\x2e\x00\x6a\x21\x01\x44\x23\x18\x3c\x22\x18\x12\ \x08\x06\x02\x03\x05\x07\x05\x04\x14\x08\x05\x73\x31\x20\xb1\x65\ \x46\xaf\x33\x01\xb5\x34\x00\xb6\x3a\x00\xaa\x2f\x00\xa7\x52\x29\ \xdb\xd5\xce\xe3\xea\xee\xc6\xd1\xd3\x8a\x96\x96\x68\x67\x62\x3b\ \x37\x33\x03\x05\x04\x08\x06\x07\x13\x06\x03\x76\x47\x1b\xcc\xd9\ \xd6\xff\xff\xff\xfa\xfc\xfd\xf7\xf9\xfe\xf8\xfb\xff\xdb\xe5\xed\ \x52\x70\x9b\x17\x37\x66\x10\x28\x50\x1d\x38\x56\x3c\x53\x66\x18\ \x1f\x28\x0d\x0d\x10\x67\x66\x62\xb5\xb4\xae\x6e\x60\x44\x72\x6e\ \x61\x63\x68\x65\x7e\x85\x88\x9e\xaa\xb1\x8f\x9c\xa3\xa9\xb8\xc0\ \xdc\xe6\xed\x8f\xa0\xa8\x45\x4f\x55\x7d\x81\x83\x8f\x98\x98\x8f\ \x9c\x9f\xc9\xcf\xd0\xfb\xfa\xfc\xe5\xe8\xec\xbf\xc4\xc7\x97\x9e\ \xa1\xbb\xca\xd1\xc6\xd4\xdd\x88\x9a\xa6\x5d\x6c\x72\x81\x8f\x97\ \x87\x96\x9b\xc5\xcf\xd3\xf0\xf4\xf7\xf3\xf5\xfa\xd0\xd9\xe1\x9f\ \xb0\xba\x81\x8c\x93\x84\x8f\x92\xb5\xc1\xc7\x67\x6b\x7e\x12\x1a\ \x2f\x04\x06\x07\x14\x15\x3b\x45\x4d\xb4\x52\x5f\xc3\x37\x44\xc2\ \x08\x0f\xbb\x02\x07\xb0\x01\x05\xa9\x01\x05\xa0\x00\x04\x89\x00\ \x04\x76\x43\x4f\x79\x55\x58\x5a\x1a\x21\x20\x2d\x31\x32\x1c\x1c\ \x1e\x1b\x18\x19\x70\x72\x73\x71\x72\x74\xd1\xdc\xd9\xd8\xe2\xe6\ \xe4\xe9\xed\xe3\xe9\xec\xd9\xe1\xe3\xcd\xd6\xdc\xc7\xd1\xd6\xc4\ \xce\xd4\xab\xb8\xbf\x8c\x95\x9b\x4f\x47\x47\x31\x15\x0d\x67\x2a\ \x0a\x68\x2b\x0b\x25\x18\x17\x0c\x09\x0b\x00\x00\x00\x30\x4d\x55\ \x26\x42\x3d\x22\x47\x49\x2d\x58\x52\x27\x4b\x45\x24\x45\x3f\x1d\ \x3a\x37\x2c\x55\x5b\x21\x41\x3f\x26\x45\x47\x40\x69\x7b\x3a\x65\ \x73\x3f\x69\x7b\x35\x52\x61\x31\x50\x5f\x45\x68\x7f\x4d\x68\x76\ \x3c\x54\x60\x3c\x57\x69\x46\x60\x6c\x40\x60\x6a\x44\x5e\x68\x42\ \x5e\x6a\x2d\x4b\x4b\x28\x41\x3e\x24\x38\x36\x21\x34\x32\x21\x31\ \x2c\x1c\x29\x27\x27\x4a\x45\x2f\x59\x58\x35\x63\x64\x2e\x57\x56\ \x2d\x51\x4f\x30\x52\x58\x1f\x34\x2e\x16\x1e\x18\x15\x1b\x16\x15\ \x19\x14\x15\x1a\x16\x18\x1e\x16\x16\x19\x12\x1c\x2b\x2c\x23\x97\ \xba\x64\x72\x62\xa8\x3c\x00\xa7\x6e\x3f\xb3\xed\xfb\xe1\xf7\xfe\ \xf9\xf8\xfd\xf2\xf5\xf8\xf0\xf7\xfb\x80\x65\x46\x78\x37\x12\x6a\ \x21\x01\x46\x28\x1e\x31\x1e\x19\x0f\x09\x06\x03\x03\x05\x06\x04\ \x04\x0f\x04\x02\x5c\x1e\x0e\xa8\x60\x43\xb1\x2e\x00\xb4\x33\x00\ \xb6\x37\x00\xb0\x35\x00\xa3\x2b\x00\x83\x4a\x33\xd1\xe3\xea\xcc\ \xd6\xd7\x96\xa1\xa1\x64\x63\x60\x34\x2e\x26\x04\x03\x03\x08\x06\ \x06\x09\x05\x04\x58\x24\x00\xaa\x90\x5e\xa1\xed\xf9\xff\xfc\xfd\ \xf8\xfa\xfd\xf4\xf8\xfd\xf3\xf7\xfb\xec\xf0\xf4\xd7\xe2\xe4\xa4\ \xb9\xc1\x6a\x8e\x9f\x54\x76\x88\x46\x51\x54\x0a\x0c\x0d\x15\x16\ \x17\x88\x84\x7b\xa5\x9c\x8e\xc0\xc0\xbd\x60\x4f\x2d\x63\x50\x34\ \x58\x52\x46\x51\x53\x4e\x5b\x62\x62\x9f\xa9\xad\xbd\xc3\xc5\x84\ \x8e\x90\x2b\x2b\x29\x3e\x3d\x41\x9a\xa2\xaa\x9d\xaa\xae\x9a\xa5\ \xa9\xbd\xc0\xbf\xd1\xd6\xd8\xaf\xba\xc2\x81\x8e\x94\xc2\xce\xd6\ \xe1\xe9\xf1\xc8\xd1\xd9\x53\x5a\x60\x81\x87\x8e\xac\xba\xc1\xc7\ \xd1\xd9\xd8\xe0\xe2\xe0\xe5\xe5\xc1\xc7\xc8\x9e\xa5\xa4\x86\x90\ \x93\xa4\xad\xb0\x60\x60\x66\x15\x1b\x2d\x20\x27\x44\x08\x0a\x12\ \x03\x03\x02\x39\x39\x51\x7a\x7d\xbb\x65\x69\xcf\x12\x19\xc9\x0e\ \x14\xbf\x04\x0b\xb1\x0d\x14\xa9\x05\x0c\x95\x52\x60\x9c\x9b\xa9\ \xaf\x7d\x87\x8a\x54\x57\x57\x38\x3a\x3a\x2c\x2a\x2b\x0e\x0b\x0b\ \x0a\x0e\x0e\x5e\x47\x37\x7d\x6c\x5d\x92\xc2\xc8\xd6\xea\xef\xeb\ \xee\xf0\xe1\xe8\xea\xdd\xe6\xec\xd5\xdf\xe3\xd2\xda\xde\xc0\xcc\ \xd1\xa8\xb2\xb9\x7a\x81\x88\x3c\x35\x37\x3c\x15\x05\x6d\x2b\x09\ \x6a\x2d\x0c\x2b\x21\x1f\x00\x00\x00\x26\x44\x3e\x23\x42\x42\x2c\ \x52\x4e\x2e\x5a\x5d\x30\x5d\x5d\x2d\x54\x51\x20\x39\x39\x20\x3a\ \x36\x2f\x5c\x6a\x26\x46\x46\x38\x5d\x67\x3a\x6a\x7c\x48\x78\x8d\ \x38\x5a\x6c\x38\x57\x6b\x4c\x6e\x85\x41\x5b\x69\x37\x51\x61\x48\ \x67\x7b\x38\x4f\x5d\x39\x56\x64\x30\x4d\x54\x38\x58\x5f\x26\x40\ \x3a\x26\x3e\x3b\x26\x3c\x35\x26\x3d\x39\x1c\x2a\x26\x22\x37\x31\ \x28\x46\x40\x35\x63\x61\x36\x69\x6e\x33\x5b\x5d\x31\x56\x5a\x2f\ \x52\x4f\x24\x38\x32\x1c\x29\x22\x18\x1d\x17\x17\x1b\x19\x19\x21\ \x1c\x14\x18\x11\x25\x2a\x2a\x2a\x2e\x34\x58\xb9\xd7\x35\xa1\xad\ \x76\x7b\x61\x73\xe5\xf5\xff\xfd\xff\xfa\xf9\xfd\xf3\xf8\xfd\xea\ \xf0\xf1\xcc\xbf\xb2\x54\x93\x99\x49\x2e\x19\x49\x1f\x11\x30\x1b\ \x14\x0c\x07\x07\x03\x04\x08\x06\x04\x07\x0f\x06\x05\x4a\x1c\x0e\ \x9f\x48\x28\xb0\x41\x14\xb4\x31\x00\xb3\x37\x02\xab\x3c\x09\xa5\ \x27\x00\x89\x4e\x3b\x53\xbd\xdf\xb5\xd6\xde\x9e\xa7\xa6\x68\x65\ \x60\x31\x22\x1b\x05\x04\x03\x06\x05\x04\x07\x06\x04\x2c\x14\x07\ \x89\x74\x47\x86\xc6\xbe\xf2\xf9\xfc\xfa\xfb\xfd\xf6\xf9\xfe\xf3\ \xf8\xfc\xf0\xf4\xf7\xdf\xe6\xea\xb9\xc5\xca\x8e\x9a\x9f\x69\x71\ \x72\x5c\x5e\x5c\x18\x1b\x19\x05\x09\x09\x35\x37\x39\xa2\x9e\x92\ \x6c\x59\x3a\xac\xa1\x91\x63\x53\x33\x56\x42\x20\x51\x3f\x26\x3b\ \x30\x1a\x40\x38\x2a\x44\x3c\x36\x2f\x2c\x29\x26\x27\x29\x0d\x0f\ \x14\x29\x2d\x35\x6e\x6e\x77\x97\x9e\xa4\xaf\xb9\xbd\x9a\xa1\xa2\ \x98\x9e\x9e\x87\x8f\x90\x85\x8e\x8f\xb1\xba\xbe\xb8\xbd\xc2\x6c\ \x6d\x73\x13\x15\x1c\x37\x3c\x43\x89\x92\x9f\xa9\xb3\xbe\xbd\xc6\ \xce\xc0\xc6\xcc\xa5\xab\xb0\x8f\x97\x9f\x84\x88\x92\x51\x56\x5e\ \x20\x26\x31\x22\x2a\x35\x27\x30\x49\x0e\x12\x1e\x05\x04\x04\x03\ \x03\x05\x0f\x13\x5c\x00\x08\xba\x00\x08\xcb\x00\x02\xc4\x14\x22\ \xbd\x31\x3d\xb8\x74\x82\xc0\xb9\xc6\xcf\xb6\xc1\xc7\x9a\xa6\xad\ \x76\x7d\x81\x3f\x3f\x3f\x32\x2f\x2e\x1d\x15\x16\x0c\x06\x06\x00\ \x00\x01\x16\x0a\x04\x44\x40\x2c\x82\x96\x8d\xa3\xd7\xe2\xe1\xed\ \xf1\xc9\xb1\xa4\xc0\xc7\xc3\xbb\xdf\xe9\xd4\xdc\xe1\xc4\xce\xd3\ \xa1\xab\xb1\x55\x57\x5e\x30\x19\x11\x5a\x21\x04\x71\x2c\x09\x67\ \x2c\x0c\x00\x00\x00\x1b\x2f\x2e\x23\x3e\x3a\x31\x56\x54\x2b\x57\ \x50\x2e\x58\x50\x23\x3e\x35\x1e\x2c\x33\x1c\x33\x33\x2e\x59\x5e\ \x1d\x33\x2e\x27\x3f\x3e\x34\x58\x62\x48\x77\x8f\x40\x6b\x7e\x3c\ \x5e\x74\x4b\x71\x8a\x4d\x69\x7e\x43\x60\x74\x47\x6a\x7b\x44\x60\ \x72\x3b\x55\x63\x33\x56\x5e\x2d\x48\x49\x26\x41\x3e\x2c\x4c\x46\ \x22\x34\x30\x27\x3f\x3a\x1e\x2c\x28\x22\x34\x2c\x27\x44\x39\x2f\ \x54\x4e\x3b\x70\x7a\x38\x61\x69\x2c\x47\x45\x30\x54\x52\x22\x33\ \x2b\x16\x1e\x17\x17\x1c\x18\x1b\x20\x1c\x1b\x25\x1f\x20\x27\x26\ \xa1\xa7\xab\x4e\x4f\x57\xcb\xe2\xec\x2f\xcf\xea\x5e\xdf\xf2\xd7\ \xf7\xfe\xfb\xf9\xfd\xf6\xf8\xfd\xed\xf2\xf0\xbc\x97\x79\x8d\x42\ \x19\x54\x21\x06\x46\x22\x18\x2d\x1a\x14\x0c\x08\x0b\x04\x04\x0e\ \x03\x04\x0b\x10\x08\x09\x30\x13\x08\x92\x49\x2e\xb5\x56\x31\xb6\ \x45\x16\xb3\x35\x00\xb0\x36\x00\x8a\x5a\x3f\x49\x8a\x97\x5f\xb8\ \xcf\xa8\xd8\xe4\xa6\xae\xad\x69\x67\x63\x40\x30\x25\x0c\x07\x05\ \x06\x05\x04\x07\x05\x05\x13\x09\x03\x70\x4c\x27\x66\xcb\xd3\x8f\ \xf4\xff\xf9\xfc\xff\xf7\xfa\xfe\xf5\xf8\xfe\xf2\xf6\xfa\xe8\xee\ \xf1\xcb\xd6\xda\x9e\xaa\xaf\x69\x72\x73\x66\x64\x63\x37\x33\x31\ \x06\x09\x0b\x05\x09\x0a\x65\x69\x69\xda\xdb\xda\x85\x7c\x67\x64\ \x4f\x28\x67\x54\x2e\x5d\x49\x26\x45\x34\x1a\x33\x27\x0e\x20\x17\ \x09\x15\x0d\x07\x1b\x1b\x1a\x31\x33\x38\x05\x09\x0b\x32\x35\x3c\ \x31\x30\x38\x32\x2d\x33\x56\x55\x5a\x66\x67\x6b\x7f\x7c\x7f\x7a\ \x78\x7b\x6b\x6b\x6d\x50\x50\x51\x32\x31\x33\x24\x28\x33\x17\x1b\ \x22\x21\x21\x21\x38\x41\x56\x34\x44\x5f\x45\x53\x6d\x44\x51\x6a\ \x34\x41\x58\x17\x24\x3b\x0d\x18\x2e\x54\x59\x65\x15\x18\x1e\x1a\ \x21\x29\x2d\x36\x4a\x1a\x1f\x30\x04\x04\x04\x04\x03\x03\x02\x03\ \x09\x2f\x33\x68\x6f\x7c\xcc\x86\x94\xdb\xab\xb5\xe1\xc2\xcc\xe0\ \xdc\xe4\xe6\xd1\xd8\xde\xc3\xcc\xd3\xb1\xbe\xc2\x9b\xa3\xaa\x60\ \x62\x63\x38\x35\x35\x22\x14\x12\x1c\x0a\x04\x0c\x06\x06\x02\x05\ \x08\x10\x07\x06\x33\x1d\x0f\x3e\x7a\x7e\x97\xb7\xbb\x97\x3c\x0b\ \x92\x57\x32\x54\xa5\xab\xa0\xe0\xef\xd9\xde\xe2\xc7\xd0\xd6\x8f\ \x96\x9f\x40\x36\x37\x48\x15\x02\x6b\x2b\x08\x6f\x2c\x07\x00\x00\ \x00\x19\x2d\x2a\x25\x41\x48\x28\x47\x42\x23\x44\x39\x23\x41\x3a\ \x1f\x3b\x37\x1d\x35\x32\x21\x3c\x38\x28\x4f\x4a\x23\x3d\x3d\x1d\ \x32\x2b\x20\x39\x3c\x4d\x7a\x93\x4c\x72\x7e\x45\x6a\x7f\x52\x79\ \x8d\x4c\x67\x7b\x48\x63\x76\x47\x6b\x82\x43\x64\x77\x45\x5f\x71\ \x3b\x53\x5f\x24\x37\x36\x1f\x2e\x27\x20\x34\x2d\x25\x3c\x35\x2c\ \x44\x3d\x22\x33\x32\x20\x2d\x27\x1e\x2e\x28\x2d\x4e\x48\x3e\x75\ \x7e\x37\x66\x71\x2b\x4f\x51\x2a\x47\x44\x1e\x26\x21\x18\x1d\x19\ \x1c\x26\x1b\x15\x1b\x12\x32\x3a\x36\x9b\xa2\xa8\xb7\xbb\xbd\x66\ \x69\x70\xf6\xf9\xfe\xc7\xf2\xfc\xe3\xf8\xfe\xfa\xf9\xfe\xf5\xf7\ \xfd\xf1\xf5\xf6\xbe\x95\x75\x8e\x32\x03\x66\x1a\x00\x46\x29\x25\ \x2f\x1a\x18\x0d\x09\x0f\x05\x06\x0e\x05\x05\x10\x0a\x07\x08\x1a\ \x0c\x08\x76\x31\x19\xab\x52\x2e\xb1\x31\x01\xb3\x31\x00\xb4\x39\ \x00\xa2\x3e\x13\x4e\x9a\xa9\x48\xd4\xf7\xb1\xde\xea\xaa\xb4\xb3\ \x66\x6b\x69\x4f\x3d\x32\x0f\x0a\x07\x06\x05\x04\x06\x05\x04\x0a\ \x06\x05\x43\x21\x07\xcc\x72\x0d\xc4\x88\x30\xd9\xc1\x9d\xf6\xf6\ \xf5\xf6\xfa\xfe\xf2\xf6\xfb\xee\xf2\xf6\xdb\xe4\xe8\xb1\xbd\xc3\ \x77\x81\x83\x60\x61\x60\x55\x4d\x48\x0f\x0f\x0e\x06\x07\x07\x05\ \x07\x08\xb4\xba\xbf\xbb\xbf\xc0\xca\xcd\xcb\x84\x7d\x67\x6a\x59\ \x33\x5a\x46\x24\x48\x35\x18\x31\x25\x10\x21\x18\x0d\x15\x11\x0b\ \x2a\x2b\x2b\x17\x17\x14\x02\x07\x0a\x33\x36\x3b\x85\x85\x8f\x2c\ \x29\x31\x0e\x0a\x12\x15\x10\x16\x20\x1c\x1f\x1b\x18\x18\x14\x11\ \x11\x09\x06\x06\x0c\x0c\x0c\x31\x38\x44\x20\x27\x30\x06\x08\x07\ \x17\x20\x2c\x1a\x2c\x48\x19\x29\x49\x0e\x20\x3f\x09\x1c\x3a\x0a\ \x1a\x35\x09\x15\x2c\x11\x16\x26\x07\x0b\x12\x16\x1a\x22\x39\x43\ \x58\x2d\x32\x45\x06\x06\x08\x03\x03\x03\x03\x04\x05\x0a\x0c\x0d\ \x7c\x81\x84\xe0\xe7\xea\xe9\xee\xef\xe3\xe9\xed\xdd\xe3\xe8\xd6\ \xdd\xe2\xcc\xd5\xdb\xc1\xcb\xd1\xb3\xbd\xc3\x8c\x94\x98\x50\x4f\ \x50\x24\x15\x0f\x1e\x09\x01\x19\x08\x03\x09\x05\x06\x01\x02\x03\ \x05\x03\x01\x13\x10\x0d\x53\x31\x1d\x9d\x3c\x04\x9a\x39\x00\x85\ \x3d\x10\x49\x86\x83\x83\xd2\xe5\xd4\xdf\xe4\xc4\xcd\xd3\x7c\x7e\ \x88\x3f\x1e\x15\x5b\x1d\x00\x6d\x2a\x06\x00\x00\x00\x37\x59\x68\ \x28\x3e\x39\x18\x27\x27\x1a\x32\x2d\x1d\x38\x33\x22\x40\x38\x20\ \x3b\x31\x19\x2d\x2d\x2e\x51\x58\x20\x38\x32\x19\x2c\x27\x1a\x30\ \x30\x47\x70\x83\x48\x6d\x7d\x43\x69\x80\x4e\x73\x8d\x4e\x6e\x86\ \x4a\x69\x7f\x57\x7c\x96\x44\x66\x7b\x45\x5e\x6a\x3a\x54\x5e\x22\ \x39\x37\x19\x29\x26\x1e\x2e\x25\x22\x32\x31\x23\x38\x30\x2c\x47\ \x40\x20\x2f\x2a\x1c\x2b\x24\x23\x3f\x3c\x3b\x71\x7a\x3b\x70\x7d\ \x31\x59\x53\x1f\x30\x2b\x20\x2e\x2b\x1a\x21\x1d\x17\x1c\x15\x18\ \x21\x1d\xa1\xab\xad\xd3\xd7\xdc\x9f\xa5\xa6\x8f\x92\x9a\xfa\xfd\ \xff\xf8\xf9\xfe\xfa\xfa\xfe\xf7\xf8\xfd\xf2\xf6\xf9\xd4\xca\xc2\ \x8b\x64\x4c\x5d\x30\x1e\x49\x3f\x40\x29\x2c\x2d\x12\x14\x15\x06\ \x07\x08\x05\x05\x08\x0a\x07\x0a\x16\x0b\x08\x5c\x20\x0d\xae\x5d\ \x40\xb2\x3a\x0a\xb3\x33\x00\xb6\x3d\x01\xac\x39\x00\xa4\x3c\x13\ \xb8\xb0\xab\xd5\xea\xf0\xaf\xbc\xbb\x66\x70\x70\x4f\x3c\x30\x0b\ \x06\x05\x04\x04\x05\x06\x06\x04\x06\x05\x03\x19\x0b\x03\xb1\x63\ \x18\xde\x89\x24\xd8\x7e\x12\xd8\x6c\x00\xe6\xcd\xb2\xf5\xf9\xff\ \xf0\xf4\xf8\xe6\xeb\xef\xc9\xd3\xd8\x93\xa0\xa4\x5d\x62\x62\x5a\ \x49\x41\x16\x0d\x0a\x03\x07\x07\x04\x08\x09\x18\x0b\x06\xcb\x9f\ \x89\xa9\xae\xb0\xe2\xe4\xe5\xf6\xf9\xfc\x98\x98\x8c\x53\x43\x29\ \x49\x35\x18\x30\x24\x0f\x20\x17\x0c\x19\x14\x0e\x38\x36\x35\x0b\ \x0f\x10\x02\x08\x0a\x2e\x31\x35\x8a\x8e\x95\x47\x46\x4d\x91\x92\ \x99\x43\x3f\x45\x0f\x0a\x0b\x13\x10\x13\x0d\x0a\x0d\x12\x10\x13\ \x0e\x0c\x0d\x20\x22\x28\x20\x27\x2e\x09\x0d\x12\x0b\x11\x19\x24\ \x34\x4b\x1b\x2c\x46\x16\x26\x43\x10\x20\x3f\x0b\x19\x36\x0a\x17\ \x2f\x08\x11\x22\x07\x0a\x13\x1a\x21\x29\x3a\x42\x4f\x35\x3a\x49\ \x11\x11\x14\x03\x03\x03\x05\x03\x04\x04\x04\x05\x04\x04\x07\x92\ \x96\x96\xe3\xe9\xec\xe6\xea\xee\xe1\xe7\xea\xdb\xe2\xe6\xd3\xdb\ \xdf\xcb\xd4\xd9\xc2\xcc\xd0\xae\xb7\xbf\x7b\x7f\x83\x2e\x1f\x1d\ \x1e\x09\x01\x1e\x09\x02\x1a\x09\x02\x07\x03\x01\x02\x02\x02\x03\ \x02\x01\x04\x03\x03\x2a\x0d\x02\x7f\x2e\x03\x9e\x35\x00\x58\x68\ \x56\x0e\xb6\xda\xd2\xe8\xec\xda\xe1\xe6\xc4\xce\xd4\x94\x9d\xa1\ \x6e\x51\x46\x5b\x26\x0e\x00\x00\x00\x48\x75\x8c\x30\x57\x63\x24\ \x3c\x40\x23\x3f\x3a\x1c\x33\x2e\x22\x3d\x41\x1d\x37\x35\x19\x2d\ \x2c\x29\x4d\x4b\x27\x4b\x49\x1f\x38\x39\x24\x46\x4a\x3d\x66\x7c\ \x46\x69\x76\x3d\x63\x79\x4e\x72\x8b\x51\x71\x83\x46\x68\x7d\x54\ \x77\x8e\x53\x77\x8e\x3b\x50\x55\x33\x53\x52\x2d\x50\x4e\x22\x38\ \x35\x25\x3d\x3d\x2d\x4a\x45\x26\x37\x31\x26\x39\x33\x1f\x2e\x26\ \x1a\x21\x1b\x29\x45\x42\x39\x6a\x66\x3e\x6f\x75\x2f\x51\x50\x26\ \x3b\x39\x1f\x30\x2a\x1f\x28\x21\x15\x19\x12\x3c\x40\x40\xc5\xcb\ \xcd\xdc\xe0\xe3\x73\x78\x79\xbd\xbb\xc5\xfd\xfe\xff\xf9\xfa\xff\ \xf7\xf9\xfe\xf2\xf6\xf9\xeb\xf0\xf1\xb4\xdb\xe5\x21\x89\xac\x37\ \x50\x5c\x3e\x54\x5b\x20\x33\x34\x1e\x2f\x2d\x09\x08\x08\x08\x06\ \x05\x0d\x09\x06\x3d\x15\x09\xab\x5b\x3e\xb1\x47\x1e\xb3\x2f\x00\ \xb6\x3a\x03\xb2\x38\x01\xa7\x33\x05\x8b\x7f\x77\x94\xe1\xf8\xbd\ \xc4\xc2\x67\x6c\x6a\x46\x2d\x1d\x0d\x06\x00\x05\x06\x06\x07\x07\ \x05\x07\x07\x05\x09\x05\x03\x6f\x3b\x17\xdf\x72\x00\xda\x74\x00\ \xdc\x6e\x00\xbb\x83\x3b\xa5\xe5\xf3\xf5\xf7\xfb\xe9\xef\xf3\xd9\ \xe2\xe8\xaf\xbb\xbe\x6e\x76\x76\x57\x43\x3b\x24\x10\x06\x04\x06\ \x08\x05\x08\x08\x01\x07\x09\x4a\x1d\x05\x9c\x40\x07\xc3\xbb\xb5\ \xfc\xff\xff\xfa\xfa\xfe\xfa\xfe\xff\xc9\xd0\xd2\x8f\x93\x93\x5c\ \x61\x5e\x38\x3a\x38\x42\x3f\x3c\x36\x36\x36\x02\x07\x07\x02\x07\ \x08\x35\x3a\x3b\x9f\xa3\xa6\x80\x81\x89\x2e\x20\x25\x3e\x33\x3a\ \x14\x0f\x11\x0f\x0b\x0d\x0c\x09\x0b\x07\x06\x09\x0b\x0c\x0d\x1f\ \x23\x27\x30\x3a\x43\x10\x14\x1e\x01\x03\x09\x94\x9f\xa5\x4d\x5d\ \x73\x24\x32\x4c\x1a\x28\x45\x17\x26\x3e\x1b\x2a\x3e\x24\x30\x41\ \x48\x54\x5e\x40\x48\x51\x2d\x32\x3a\x47\x50\x5e\x1f\x1b\x1e\x05\ \x02\x02\x05\x04\x04\x05\x05\x05\x05\x06\x05\x01\x02\x01\x98\x9a\ \x9c\xe3\xea\xec\xe5\xeb\xed\xe1\xe6\xea\xd6\xde\xe3\xcc\xd5\xd9\ \xc5\xce\xd3\xc3\xcd\xd4\xa7\xad\xb4\x48\x35\x33\x1e\x09\x03\x1e\ \x09\x01\x1e\x0a\x02\x17\x07\x02\x04\x02\x02\x01\x01\x01\x02\x01\ \x01\x01\x01\x02\x09\x02\x01\x51\x24\x0d\x86\x37\x08\x5c\x62\x4b\ \x5d\x84\x80\xd1\xcb\xc4\xb5\xd9\xe5\xc6\xd4\xdc\xbd\xcc\xd2\x88\ \x7b\x79\x00\x00\x00\x55\x7c\x8a\x58\x8d\x9c\x46\x76\x87\x2d\x51\ \x50\x23\x3f\x3b\x2a\x4d\x4c\x26\x40\x42\x1e\x30\x36\x1d\x34\x2d\ \x27\x46\x48\x28\x44\x46\x23\x40\x40\x41\x69\x72\x3d\x60\x76\x4a\ \x75\x91\x51\x77\x8c\x4f\x73\x8b\x45\x6b\x7b\x43\x62\x6b\x4a\x65\ \x71\x39\x52\x5d\x22\x32\x2d\x2b\x49\x41\x26\x40\x38\x2c\x4b\x45\ \x2c\x46\x3d\x24\x36\x30\x24\x36\x30\x21\x30\x29\x1a\x22\x20\x27\ \x41\x3b\x30\x5c\x58\x41\x72\x7e\x32\x4e\x50\x21\x32\x2c\x23\x39\ \x33\x1e\x2b\x24\x1a\x24\x1f\x51\x54\x54\xc0\xc7\xca\xed\xf0\xf6\ \x4b\x51\x50\xb5\xad\xb3\xff\xff\xff\xf8\xf9\xfe\xf4\xf6\xfa\xed\ \xf1\xf6\xd3\xd2\xce\x91\x96\x95\x4a\x53\x55\x4a\x52\x50\x25\x3b\ \x38\x27\x3b\x37\x31\x4d\x52\x18\x20\x23\x07\x02\x02\x30\x0f\x07\ \x9a\x4e\x33\xa6\x3e\x12\xb3\x2c\x00\xb5\x33\x00\xa0\x6a\x4b\x74\ \x69\x59\x7b\x6b\x61\x82\xe1\xf7\xb2\xc9\xcd\x70\x71\x6c\x3c\x26\ \x1b\x15\x09\x05\x05\x06\x05\x06\x05\x03\x07\x06\x04\x05\x05\x02\ \x31\x1c\x15\xc8\x6c\x11\xdb\x71\x02\xd2\x78\x13\xcf\x7a\x1e\x55\ \xc3\xcd\xae\xea\xf6\xf2\xf4\xf8\xe4\xea\xee\xc6\xcf\xd2\x7f\x7e\ \x7b\x51\x3c\x31\x38\x25\x1d\x09\x09\x07\x05\x07\x06\x05\x07\x07\ \x00\x05\x07\x84\x34\x05\xb9\x58\x0f\xb0\xda\xe1\xfd\xfe\xff\xf6\ \xf9\xfe\xf1\xf6\xf9\xeb\xf0\xf4\xdf\xe6\xe9\xb7\xc1\xc5\x66\x6b\ \x6d\x5e\x59\x54\x1d\x1d\x1c\x04\x08\x09\x02\x06\x06\x40\x46\x49\ \x93\x99\x9f\xb8\xbe\xc2\x6a\x6e\x76\x4c\x4b\x50\x36\x36\x3c\x29\ \x29\x2d\x26\x28\x2e\x26\x28\x2d\x2a\x31\x35\x64\x72\x77\x3f\x4b\ \x50\x17\x1b\x24\x05\x08\x0e\x57\x5c\x5c\xfe\xff\xff\xb9\xc3\xcc\ \x9a\xa6\xb3\xa1\xad\xb8\xbc\xc8\xcf\xd0\xdd\xe2\x9a\xa4\xab\x4d\ \x55\x5a\x39\x41\x49\x4f\x59\x63\x24\x19\x18\x04\x03\x03\x04\x04\ \x04\x04\x03\x03\x04\x05\x05\x05\x06\x07\x07\x0b\x0e\x96\x9a\x9c\ \xe5\xeb\xef\xe7\xec\xef\xdb\xe1\xe4\xbd\xc6\xcd\xc8\xd1\xd4\xd8\ \xe0\xe6\xc6\xce\xd5\x85\x89\x8d\x44\x32\x2e\x1e\x08\x00\x1e\x09\ \x02\x1e\x09\x01\x0f\x04\x01\x02\x01\x01\x03\x01\x01\x01\x01\x01\ \x01\x01\x02\x00\x00\x02\x26\x0e\x05\x6e\x22\x00\x96\x2c\x00\x84\ \x39\x0e\x41\x85\x86\x7a\xc5\xd4\xb9\xd5\xde\xc5\xd3\xdb\x00\x00\ \x00\x53\x7c\x8c\x5f\x91\x9c\x5b\x84\x86\x41\x6a\x6b\x2c\x56\x55\ \x29\x4c\x4a\x26\x3d\x40\x20\x34\x34\x20\x39\x38\x26\x45\x44\x24\ \x3f\x3e\x28\x4e\x51\x31\x5c\x5a\x37\x5d\x6b\x4c\x79\x8f\x52\x76\ \x8c\x54\x75\x8a\x4d\x71\x82\x3d\x5a\x6b\x34\x53\x60\x3c\x5b\x65\ \x20\x2a\x27\x25\x3e\x36\x24\x3e\x36\x24\x3b\x33\x23\x37\x32\x25\ \x38\x2d\x21\x34\x2c\x1b\x28\x22\x1d\x2a\x27\x1f\x32\x2b\x31\x59\ \x55\x3d\x6c\x6f\x2d\x48\x43\x24\x38\x32\x29\x3d\x39\x20\x2e\x2a\ \x1e\x2c\x27\x65\x69\x68\xcb\xd0\xd4\xd8\xdf\xdd\x14\x17\x15\x6e\ \x66\x68\xff\xff\xff\xf5\xf7\xfc\xee\xf3\xf7\xdc\xdf\xdb\x76\x4b\ \x32\x40\x20\x11\x26\x23\x1d\x22\x34\x2f\x2a\x43\x3f\x2d\x44\x43\ \x31\x4d\x4d\x15\x1a\x1d\x24\x07\x01\x81\x1c\x00\xac\x40\x17\xaf\ \x3b\x0e\xab\x46\x1e\xb7\x3d\x0a\x64\xb8\xc3\x39\xdc\xff\x7e\xdc\ \xf4\xbd\xd1\xd5\x80\x82\x7e\x3f\x2c\x22\x19\x0d\x09\x07\x08\x07\ \x07\x06\x05\x07\x05\x03\x07\x05\x03\x10\x0a\x0b\x9a\x63\x36\xd7\ \x7a\x17\xd9\x73\x05\x9c\x96\x66\x3e\xb9\xc5\x80\xe0\xf1\xf1\xf6\ \xf9\xe9\xef\xf2\xd7\xe0\xe4\x9d\xa4\xa2\x49\x30\x23\x3e\x20\x11\ \x11\x0d\x09\x08\x07\x05\x06\x07\x06\x04\x08\x07\x11\x09\x06\xaa\ \x43\x03\xb9\x59\x15\x8e\xdb\xe7\xfd\xfd\xff\xf6\xf9\xfd\xf0\xf4\ \xf8\xe5\xeb\xed\xd2\xda\xdd\x9c\xa6\xa9\x5f\x5d\x59\x4d\x43\x3b\ \x08\x0b\x0c\x05\x08\x0b\x01\x06\x08\x42\x3c\x37\xb4\xa8\x9a\xa7\ \xaa\xa8\xba\xbe\xc1\xea\xf0\xf5\xc2\xca\xd1\xad\xb4\xbb\x9b\xa7\ \xb0\x82\x90\x98\x5b\x66\x6a\x7c\x89\x8e\x5f\x6a\x6f\x16\x18\x1d\ \x09\x0c\x10\x11\x15\x1a\xd7\xdd\xe0\xf8\xfc\xff\xf6\xf8\xfd\xef\ \xf3\xf6\xe3\xe9\xed\xd0\xd9\xdd\xaa\xb3\xba\x5e\x66\x6c\x47\x4d\ \x53\x51\x55\x5f\x22\x0f\x09\x08\x05\x03\x03\x04\x03\x05\x04\x04\ \x06\x06\x05\x06\x06\x07\x05\x07\x06\x14\x17\x17\x8c\x8b\x8b\xe1\ \xe1\xe2\xe4\xe8\xec\xbd\xc7\xce\xe2\xe9\xec\xde\xe4\xe7\xd2\xd8\ \xdc\xb5\xbe\xc4\x89\x8e\x92\x49\x3d\x3b\x1b\x05\x00\x1e\x0a\x01\ \x1b\x08\x02\x07\x03\x01\x02\x01\x01\x02\x02\x00\x01\x02\x01\x02\ \x01\x01\x00\x00\x02\x06\x02\x02\x38\x16\x04\x74\x26\x00\x95\x34\ \x00\x38\x83\x87\x49\xca\xe8\xcd\xdc\xe2\x00\x00\x00\x58\x80\x85\ \x3d\x5b\x50\x47\x6f\x76\x48\x76\x82\x39\x6f\x6d\x2c\x55\x51\x23\ \x3d\x3c\x24\x42\x42\x27\x4b\x4f\x24\x41\x3c\x26\x44\x42\x2b\x54\ \x50\x2b\x57\x52\x37\x5e\x6c\x43\x6d\x7e\x50\x75\x8d\x53\x73\x89\ \x52\x73\x86\x4a\x6e\x81\x36\x57\x61\x2c\x4b\x4a\x21\x30\x31\x26\ \x40\x3b\x2b\x47\x41\x2e\x4e\x48\x2e\x4c\x47\x24\x36\x2e\x24\x36\ \x30\x25\x38\x34\x1d\x2c\x25\x1d\x2b\x26\x2c\x4d\x46\x3a\x69\x6d\ \x2a\x49\x47\x23\x36\x32\x2a\x3e\x39\x27\x3a\x35\x21\x31\x2d\x7b\ \x80\x81\xdc\xe2\xe7\x9b\xa5\xa2\x08\x0a\x0c\x28\x26\x28\xbb\xb3\ \xb8\xf7\xfc\xfd\xe7\xee\xee\x8c\x78\x64\x4f\x31\x26\x3e\x42\x3d\ \x28\x41\x3f\x22\x36\x33\x1f\x31\x2f\x29\x3e\x3d\x11\x1c\x1c\x14\ \x08\x06\x69\x14\x00\xa4\x2a\x01\xb1\x34\x01\xaa\x3f\x12\x67\x8a\ \x88\x37\xb4\xc5\x85\xdf\xf0\xc6\xe8\xf0\xc4\xd6\xdb\x8b\x94\x92\ \x4a\x45\x43\x19\x10\x11\x09\x09\x0c\x09\x0b\x0e\x08\x07\x07\x08\ \x06\x03\x02\x00\x00\x60\x49\x3b\xcc\x6e\x12\xdb\x6f\x00\xd4\x78\ \x0c\x8a\xb2\x99\x78\xea\xff\xda\xf3\xfa\xec\xf0\xf4\xe0\xe7\xeb\ \xc1\xcb\xce\x69\x66\x62\x46\x2e\x24\x20\x15\x10\x08\x08\x06\x07\ \x08\x06\x07\x07\x05\x02\x05\x06\x38\x1a\x09\xb5\x4d\x09\x60\x52\ \x4c\x9d\xe1\xf0\xff\xfe\xff\xf5\xf8\xfc\xed\xf2\xf6\xe2\xe8\xeb\ \xca\xd2\xd5\x85\x8d\x8f\x5c\x55\x4e\x27\x23\x1f\x05\x09\x0c\x04\ \x09\x0b\x02\x08\x0a\x2c\x1c\x0c\xb6\x71\x1e\xa0\x85\x65\xd5\xd5\ \xd8\xf2\xf6\xfc\xec\xf0\xf5\xde\xe6\xeb\xc4\xcf\xd6\x91\x9d\xa2\ \x5c\x66\x6b\x75\x81\x86\x58\x5e\x60\x0f\x0f\x0e\x08\x09\x07\x0a\ \x0b\x0c\x7a\x7f\x7e\xfa\xfe\xff\xf0\xf3\xf8\xeb\xef\xf4\xe4\xea\ \xed\xd6\xdd\xe3\xb9\xc3\xca\x70\x79\x7f\x44\x4b\x50\x46\x43\x48\ \x25\x0e\x06\x0c\x05\x02\x03\x04\x03\x04\x04\x04\x05\x05\x05\x05\ \x05\x05\x04\x06\x05\x05\x07\x05\x14\x10\x0f\x75\x67\x62\xcc\xdb\ \xe2\xda\xe0\xe5\xe4\xea\xed\xda\xe0\xe4\xd8\xdf\xe3\xc4\xce\xd3\ \xae\xb7\xbd\x8e\x92\x97\x20\x04\x00\x1d\x09\x01\x1f\x0a\x02\x17\ \x07\x02\x02\x01\x01\x02\x01\x00\x01\x01\x01\x01\x02\x01\x01\x02\ \x01\x02\x01\x02\x00\x00\x02\x13\x07\x02\x4b\x18\x00\x4a\x69\x62\ \x3b\xc7\xe5\xda\xe7\xeb\x00\x00\x00\x3d\x4e\x49\x24\x38\x36\x3f\ \x72\x7c\x4f\x80\x83\x3c\x74\x74\x2e\x5e\x59\x20\x3e\x38\x28\x52\ \x54\x2e\x5d\x5b\x27\x46\x40\x28\x4a\x43\x24\x44\x49\x2d\x5d\x5f\ \x34\x57\x5c\x3f\x6c\x7f\x52\x7b\x92\x55\x76\x87\x4f\x73\x87\x48\ \x71\x88\x3e\x5a\x60\x23\x36\x34\x2b\x41\x3d\x22\x39\x33\x2a\x4b\ \x44\x2b\x4d\x45\x2c\x4e\x42\x26\x3c\x38\x21\x35\x30\x26\x35\x32\ \x1a\x27\x1e\x1e\x2d\x26\x2c\x4d\x49\x38\x66\x67\x31\x56\x55\x26\ \x40\x38\x28\x3f\x3f\x2c\x42\x3c\x1f\x2a\x26\x89\x8a\x8c\xe6\xeb\ \xef\xa8\xb1\xb1\x0b\x11\x12\x1d\x1a\x17\x33\x2a\x2b\xb0\xa9\xaf\ \xa0\x9f\x92\x4e\x54\x5b\x49\x5a\x5a\x32\x51\x50\x2e\x4b\x4c\x28\ \x42\x42\x21\x36\x35\x11\x16\x15\x04\x0c\x13\x1f\x59\x75\x7d\x4d\ \x3b\xad\x2f\x00\xb3\x33\x00\xb1\x35\x00\x92\x7c\x68\x5a\xe7\xff\ \xc4\xea\xf3\xd5\xdd\xdd\x8e\x98\x97\x51\x5a\x64\x18\x12\x15\x0a\ \x0c\x14\x09\x0a\x12\x08\x0b\x0f\x09\x0a\x08\x09\x06\x02\x27\x1b\ \x19\xa3\x5c\x1d\xd6\x6d\x03\xdb\x6f\x00\xd9\x75\x0a\xda\xbb\x95\ \xee\xfb\xff\xef\xf4\xf7\xe7\xed\xf1\xd8\xe1\xe5\x98\xa2\xa3\x4b\ \x41\x39\x2b\x1c\x14\x0c\x0b\x07\x07\x07\x04\x06\x07\x06\x06\x05\ \x05\x00\x03\x05\x65\x29\x04\xa9\x3f\x02\x30\x4a\x56\xc8\xef\xfa\ \xff\xfe\xff\xf4\xf6\xfb\xec\xf0\xf3\xdf\xe5\xe7\xbe\xc7\xcb\x73\ \x77\x76\x48\x3f\x37\x12\x13\x11\x04\x08\x09\x04\x09\x0a\x02\x08\ \x09\x28\x1b\x0e\xb3\x62\x01\xb0\x79\x2b\x9f\xdd\xee\xf5\xf5\xfa\ \xe9\xed\xf2\xdc\xe3\xe8\xc5\xcf\xd7\x93\xa0\xa6\x5f\x69\x6d\x72\ \x7d\x82\x4b\x48\x45\x0a\x07\x03\x0a\x09\x07\x0a\x0b\x08\x2b\x2d\ \x2a\xee\xf3\xf6\xf2\xf5\xfa\xee\xf1\xf6\xe7\xec\xef\xdb\xe2\xe7\ \xc5\xcf\xd4\x8a\x93\x98\x49\x50\x55\x38\x30\x30\x1e\x09\x02\x13\ \x06\x03\x03\x03\x04\x05\x04\x04\x05\x05\x05\x05\x06\x05\x08\x07\ \x06\x09\x09\x07\x09\x0a\x08\x11\x09\x08\x42\x6a\x7e\xbc\xde\xed\ \xe3\xe8\xeb\xde\xe4\xe8\xdc\xe2\xe6\xc8\xd0\xd4\xb9\xc4\xc9\xb5\ \xba\xc0\x35\x09\x00\x23\x09\x01\x1d\x09\x01\x1f\x0a\x02\x13\x05\ \x02\x01\x01\x01\x01\x01\x01\x01\x02\x01\x01\x02\x02\x02\x02\x01\ \x01\x01\x01\x01\x02\x01\x05\x03\x02\x1e\x10\x09\x5d\x3c\x23\x5b\ \xab\xb6\x00\x00\x00\x21\x32\x2d\x1e\x36\x31\x3f\x65\x6b\x4c\x75\ \x82\x40\x78\x85\x36\x6a\x6a\x23\x42\x3d\x25\x48\x46\x2a\x4f\x4c\ \x27\x49\x44\x24\x3e\x39\x2b\x4e\x49\x2b\x50\x47\x2d\x4f\x57\x3f\ \x6b\x7e\x59\x85\x9e\x54\x78\x90\x55\x7c\x97\x4d\x76\x87\x30\x51\ \x55\x20\x37\x34\x20\x31\x2a\x22\x39\x34\x26\x3f\x34\x27\x44\x3f\ \x2c\x4a\x46\x2a\x41\x39\x25\x3b\x36\x1e\x28\x24\x1b\x26\x23\x1d\ \x30\x29\x23\x3d\x34\x32\x57\x55\x30\x4f\x4f\x27\x3f\x39\x3a\x52\ \x50\x2d\x41\x3c\x1a\x25\x1e\x98\x9c\x9e\xec\xef\xf4\xf8\xfc\xff\ \x44\x4c\x4d\x17\x14\x14\x0c\x0d\x0d\x07\x06\x07\x40\x47\x4d\x35\ \x45\x45\x2c\x45\x42\x2f\x4e\x4b\x2c\x41\x3e\x2a\x43\x40\x24\x2d\ \x31\x25\x25\x28\x25\x2f\x37\x47\xbe\xe1\x38\xb8\xcf\x94\x46\x23\ \xb1\x34\x02\xa1\x64\x45\x92\xe3\xf6\xef\xf4\xf8\xdb\xe2\xe3\x98\ \xa1\xa0\x63\x67\x6c\x1b\x1a\x21\x0a\x0c\x16\x09\x0b\x15\x07\x09\ \x10\x07\x09\x0f\x0a\x09\x08\x0c\x06\x02\x66\x40\x29\xce\x6e\x14\ \xd9\x6c\x01\xda\x70\x01\xbb\x81\x30\x87\xde\xf3\xea\xf5\xfb\xee\ \xf2\xf5\xe2\xe6\xe7\xb3\xaf\xa9\x4e\x39\x2f\x31\x23\x1d\x13\x10\ \x0d\x09\x08\x06\x09\x0a\x07\x07\x07\x06\x07\x06\x03\x0a\x06\x06\ \x8b\x5f\x46\x8e\x3b\x0e\x55\x25\x0a\xc8\x76\x40\xe8\xd8\xcf\xf3\ \xf8\xfd\xea\xee\xf3\xd9\xe0\xe3\xad\xb6\xb8\x61\x5f\x5b\x2d\x25\ \x21\x05\x0a\x0b\x04\x0a\x0a\x05\x08\x08\x04\x07\x08\x26\x1b\x0f\ \xad\x65\x08\xd1\x78\x04\x78\xc7\xd8\xf7\xf7\xfb\xea\xee\xf2\xdb\ \xe2\xe8\xc6\xd2\xd8\x98\xa5\xac\x5f\x68\x6c\x6e\x74\x77\x39\x2f\ \x2a\x0a\x0a\x06\x09\x0a\x06\x0b\x0a\x08\x18\x19\x17\xa6\xa9\xa9\ \xf6\xfa\xfd\xf0\xf3\xf8\xe9\xee\xf1\xe0\xe6\xea\xcd\xd7\xde\xa0\ \xaa\xb2\x56\x5b\x60\x23\x14\x10\x1a\x08\x02\x16\x07\x02\x06\x05\ \x05\x05\x06\x06\x06\x06\x05\x05\x06\x04\x08\x09\x07\x0a\x0a\x08\ \x0a\x0a\x09\x08\x0c\x11\x0c\x09\x11\x50\x84\x9c\xcf\xe7\xf3\xe5\ \xe9\xeb\xdb\xe2\xe5\xc9\xd2\xd6\xc5\xce\xd4\xc6\xc8\xcb\x4f\x0f\ \x00\x36\x0f\x03\x1f\x0a\x03\x1e\x09\x01\x1e\x0a\x01\x09\x02\x02\ \x01\x01\x01\x01\x01\x01\x01\x02\x01\x02\x01\x01\x03\x02\x01\x02\ \x01\x02\x02\x02\x03\x02\x02\x03\x0b\x00\x00\x20\x4b\x54\x00\x00\ \x00\x25\x3d\x45\x25\x3f\x3f\x30\x51\x58\x4a\x6e\x77\x4c\x7e\x8c\ \x39\x68\x69\x28\x49\x4a\x28\x50\x52\x2e\x5a\x5d\x2a\x50\x50\x24\ \x3a\x36\x23\x42\x42\x29\x55\x57\x2c\x5c\x5e\x3c\x66\x7b\x55\x7e\ \x94\x58\x81\x94\x55\x80\x96\x4f\x7d\x92\x30\x52\x4e\x23\x3d\x34\ \x1d\x29\x24\x27\x3d\x39\x2a\x46\x41\x32\x52\x4e\x32\x58\x50\x27\ \x3f\x38\x28\x40\x39\x1e\x2c\x27\x1a\x27\x1e\x23\x37\x2d\x26\x3d\ \x38\x32\x58\x56\x36\x53\x51\x29\x41\x40\x35\x50\x4f\x29\x3f\x38\ \x2c\x3c\x39\xa3\xa8\xaa\xf2\xf5\xfa\xf9\xfa\xfd\xe0\xe4\xe7\x39\ \x3e\x40\x0b\x0e\x10\x22\x28\x2c\x2c\x3a\x39\x23\x35\x35\x25\x37\ \x33\x33\x56\x58\x2f\x51\x54\x5e\x6b\x6b\x2a\x2c\x2f\x1d\x1f\x1e\ \x4d\x4b\x52\xe1\xf6\xfc\x48\xe5\xff\x2d\xc5\xdd\x76\x73\x67\x51\ \xdd\xfa\x7b\xe1\xf6\xe2\xe6\xe8\xa3\xac\xac\x53\x58\x56\x22\x1e\ \x1f\x0c\x0d\x14\x0c\x0d\x12\x09\x0c\x12\x08\x0a\x12\x08\x08\x0e\ \x09\x0a\x09\x2b\x1b\x10\xa7\x5c\x20\xd9\x6c\x00\xc9\x83\x2d\xaa\ \x82\x3d\x84\xb5\xa5\x94\xed\xff\xf7\xf9\xfd\xd8\xcb\xbd\x9d\x60\ \x31\x54\x1c\x00\x38\x24\x1b\x24\x19\x11\x0a\x0a\x07\x09\x0b\x08\ \x09\x09\x07\x08\x08\x06\x06\x06\x03\x1f\x14\x0d\x9a\x5b\x39\x83\ \x32\x08\x85\x32\x02\xc6\x59\x11\xcc\xbc\xac\xec\xf7\xfe\xe8\xed\ \xf0\xd2\xd9\xde\x96\x9e\x9f\x46\x41\x3c\x18\x15\x14\x06\x09\x0c\ \x06\x0a\x0c\x06\x07\x06\x05\x06\x05\x20\x15\x0a\xa8\x61\x07\xc0\ \x86\x2f\x4c\xb8\xd1\xee\xf7\xfe\xe9\xee\xf3\xd3\xdb\xe2\xce\xd7\ \xde\xa3\xab\xb4\x5b\x63\x66\x62\x5e\x5d\x2a\x1b\x13\x0e\x0f\x0a\ \x0b\x0b\x07\x0a\x0a\x06\x09\x0b\x08\x4d\x46\x40\xe7\xe4\xe3\xf1\ \xf5\xfa\xec\xef\xf4\xe4\xea\xed\xd4\xdc\xe2\xb3\xbe\xc6\x5c\x56\ \x56\x1e\x0a\x04\x1b\x09\x03\x1a\x07\x00\x0c\x06\x03\x06\x06\x05\ \x06\x06\x05\x07\x06\x04\x0a\x07\x05\x08\x09\x07\x0c\x0b\x08\x0a\ \x0a\x09\x07\x0b\x14\x02\x0c\x24\x41\x8b\xae\xe5\xec\xf0\xe4\xe8\ \xec\xd5\xdc\xe1\xcc\xd6\xda\xd5\xda\xdf\x74\x43\x33\x49\x11\x00\ \x2a\x0b\x04\x1d\x09\x02\x1f\x0a\x01\x18\x08\x01\x04\x01\x02\x01\ \x01\x01\x02\x02\x00\x00\x01\x01\x01\x02\x02\x01\x02\x01\x01\x02\ \x01\x02\x02\x02\x01\x03\x03\x03\x00\x00\x00\x00\x00\x39\x58\x5d\ \x24\x39\x3c\x2f\x51\x5a\x32\x51\x57\x4a\x7b\x8b\x3c\x71\x78\x32\ \x5e\x64\x2a\x53\x54\x38\x5d\x62\x31\x5c\x56\x27\x46\x40\x22\x3f\ \x3e\x2c\x5c\x5e\x2a\x56\x57\x37\x67\x73\x4d\x78\x91\x57\x84\x9a\ \x4f\x7f\x92\x49\x74\x7c\x2c\x4a\x44\x21\x37\x31\x20\x30\x2c\x23\ \x39\x33\x2a\x45\x3f\x30\x51\x4d\x2d\x50\x4a\x2a\x43\x3d\x29\x43\ \x3d\x1f\x33\x2e\x1b\x28\x20\x1e\x2c\x27\x27\x3f\x3a\x30\x55\x51\ \x2e\x4d\x45\x35\x55\x55\x3a\x58\x59\x26\x3b\x37\x3e\x4d\x4b\xb0\ \xb5\xb8\xf6\xf8\xfd\xf5\xf8\xfc\xef\xf2\xf6\xb9\xc3\xc2\x34\x3f\ \x40\x20\x2c\x2d\x23\x33\x32\x29\x3e\x3b\x26\x32\x2f\x33\x51\x50\ \x59\x7b\x81\xad\xb4\xb6\x30\x32\x36\x23\x24\x26\x68\x6e\x73\xef\ \xeb\xef\xea\xfa\xfd\x74\xe8\xfe\x37\xe6\xff\x88\xe6\xf9\xec\xed\ \xec\xaf\xba\xb9\x60\x68\x67\x1b\x21\x22\x0c\x0f\x11\x0e\x0f\x0d\ \x0b\x0d\x0e\x09\x0c\x0d\x08\x0a\x11\x08\x09\x0f\x0e\x0c\x0a\x65\ \x3d\x20\xd4\x75\x1b\xe2\x63\x00\x8b\xbc\xa9\x37\xe2\xff\x5c\xe1\ \xf9\xed\xf6\xfb\xeb\xef\xef\xa6\x64\x2a\x74\x2a\x00\x3c\x23\x17\ \x2c\x20\x1c\x0b\x0c\x09\x0a\x0b\x08\x08\x0a\x07\x0a\x0a\x07\x09\ \x09\x06\x05\x06\x03\x3b\x26\x1a\xa3\x4c\x1c\x3a\x16\x08\xaa\x3e\ \x00\xb2\x63\x28\x7f\xd7\xe6\xd4\xee\xf6\xe4\xe8\xec\xc9\xd0\xd3\ \x7f\x83\x83\x38\x31\x2a\x0a\x0c\x0e\x08\x0d\x17\x09\x0c\x14\x07\ \x0a\x0c\x06\x0a\x0c\x1a\x17\x17\xa1\x62\x14\xb8\x8b\x40\x3c\xa3\ \xaf\xd6\xd5\xc8\xe3\xdb\xd5\xdd\xe3\xea\xd7\xe0\xe6\xa5\xae\xb5\ \x58\x5f\x60\x4a\x38\x30\x30\x1d\x15\x14\x11\x0b\x0b\x0c\x05\x0b\ \x0b\x06\x0a\x0b\x08\x1d\x19\x13\x9c\xa0\x9f\xed\xf7\xfd\xee\xf1\ \xf6\xe7\xec\xef\xdb\xe1\xe5\xc2\xcc\xd3\x65\x59\x55\x21\x0b\x02\ \x1b\x08\x02\x19\x07\x01\x0e\x07\x04\x05\x05\x05\x06\x05\x05\x06\ \x07\x05\x07\x06\x06\x09\x09\x07\x0a\x09\x07\x07\x0b\x13\x05\x0d\ \x21\x08\x13\x26\x12\x1f\x32\x88\x96\x9f\xe0\xe9\xee\xe2\xe6\xeb\ \xd9\xe0\xe4\xd6\xdd\xe1\xc0\xbe\xc2\x68\x3c\x2e\x3a\x20\x16\x1e\ \x12\x0e\x1d\x09\x01\x1e\x0a\x02\x0f\x05\x02\x02\x01\x02\x01\x01\ \x01\x01\x01\x01\x02\x01\x01\x01\x01\x01\x01\x02\x01\x01\x01\x01\ \x01\x02\x02\x03\x02\x02\x00\x00\x00\x2e\x46\x45\x24\x3a\x43\x43\ \x63\x6e\x31\x52\x5c\x50\x79\x82\x43\x7a\x84\x36\x67\x72\x2f\x59\ \x62\x3c\x5d\x68\x35\x59\x5a\x27\x47\x43\x1f\x37\x37\x2e\x5b\x5d\ \x35\x66\x71\x2f\x5c\x62\x4b\x73\x86\x59\x83\x95\x51\x81\x8e\x39\ \x57\x53\x2b\x48\x46\x28\x41\x3a\x22\x34\x2c\x1f\x33\x2e\x23\x38\ \x31\x27\x3e\x39\x34\x5d\x57\x2c\x4a\x44\x27\x3a\x34\x23\x33\x2f\ \x1f\x31\x2a\x1b\x2a\x27\x25\x39\x36\x31\x56\x59\x31\x55\x56\x3e\ \x61\x64\x34\x53\x53\x2b\x43\x3f\x45\x54\x53\xbd\xc1\xc5\xf5\xf8\ \xfc\xed\xf2\xf5\xd0\xd6\xd5\x73\x7a\x75\x3a\x49\x46\x2f\x44\x43\ \x2a\x3f\x3a\x28\x3e\x3c\x2a\x36\x32\x28\x3e\x3e\x5b\x73\x77\xa7\ \xb3\xb3\x36\x39\x3d\x57\x5c\x5e\x71\x74\x78\xf6\xf5\xfa\xfe\xfe\ \xfe\xfd\xfc\xfe\xd2\xf2\xfb\xeb\xef\xf1\xbc\xc5\xc5\x74\x7d\x7c\ \x36\x39\x35\x12\x13\x12\x11\x11\x0c\x0e\x0f\x0c\x0c\x0c\x0e\x09\ \x0b\x0c\x08\x0a\x10\x09\x09\x12\x21\x11\x0b\xb2\x55\x0c\xbb\x87\ \x45\x8d\x9d\x7a\x8e\xde\xe6\xc9\xf2\xfc\xd4\xf3\xfb\xf3\xf5\xf9\ \xbe\x9e\x81\x85\x41\x0f\x4d\x26\x11\x35\x2f\x30\x0e\x0c\x07\x0a\ \x0c\x0b\x0a\x0b\x08\x09\x0a\x07\x09\x0a\x06\x07\x08\x05\x03\x04\ \x01\x57\x35\x25\x8d\x4c\x2a\x65\x28\x07\xa3\x5b\x1e\x85\x9c\x8f\ \x89\xe9\xfb\xe9\xf0\xf5\xe0\xe5\xe8\xba\xc2\xc6\x60\x60\x5f\x2f\ \x26\x1f\x06\x09\x07\x0a\x0e\x15\x09\x0d\x19\x09\x0b\x11\x07\x0c\ \x11\x1b\x19\x19\x9b\x6d\x37\xca\x7e\x19\xc6\x7a\x1a\xd2\x7a\x24\ \xbd\x91\x5e\xc3\xdb\xe7\xcf\xd9\xe0\xa0\xa9\xaf\x56\x60\x62\x45\ \x33\x2a\x2e\x1c\x15\x10\x0f\x09\x0b\x0d\x06\x0d\x0e\x08\x0c\x10\ \x12\x0a\x0e\x12\x47\x62\x6c\xd7\xe7\xee\xf0\xf3\xf8\xea\xee\xf0\ \xe1\xe5\xea\xc7\xd0\xd7\x8b\x90\x93\x2a\x19\x13\x1b\x07\x01\x19\ \x08\x01\x0f\x08\x05\x04\x04\x04\x04\x05\x05\x06\x06\x06\x07\x08\ \x06\x07\x07\x05\x07\x0a\x0a\x05\x0c\x19\x05\x0e\x24\x08\x13\x26\ \x08\x13\x26\x15\x1b\x24\x78\x92\x9f\xdc\xea\xf0\xe4\xe8\xeb\xdb\ \xe2\xe6\xd3\xda\xe0\xae\xaa\xab\x82\x84\x87\x36\x2b\x29\x1c\x08\ \x03\x1d\x09\x01\x1b\x09\x02\x08\x05\x05\x01\x02\x02\x00\x01\x00\ \x01\x00\x00\x01\x00\x00\x01\x01\x01\x01\x01\x01\x01\x02\x02\x03\ \x02\x02\x00\x00\x00\x39\x53\x50\x2a\x43\x49\x48\x65\x6c\x39\x54\ \x60\x3a\x53\x52\x3c\x66\x75\x39\x6e\x80\x4b\x77\x8d\x4b\x6f\x81\ \x43\x67\x6a\x27\x4e\x48\x1e\x36\x32\x26\x49\x45\x2f\x5b\x61\x32\ \x59\x5c\x33\x55\x5e\x54\x7d\x92\x4b\x71\x7e\x26\x3b\x38\x27\x42\ \x3f\x28\x42\x3a\x22\x34\x30\x21\x33\x30\x1e\x2f\x29\x22\x38\x37\ \x2d\x50\x4b\x2e\x4c\x47\x25\x36\x33\x1b\x29\x24\x25\x38\x32\x1d\ \x2d\x29\x22\x37\x34\x2c\x4a\x4a\x35\x5a\x57\x3d\x62\x65\x3b\x5b\ \x59\x30\x4a\x4d\x50\x5e\x5e\xcc\xcf\xd5\xe5\xe8\xec\xd9\xe2\xe3\ \x6a\x73\x6e\x2f\x3d\x3a\x35\x4c\x4f\x2e\x49\x48\x26\x39\x33\x28\ \x3a\x38\x26\x33\x32\x2a\x42\x45\x4b\x66\x6f\x9a\xa6\xa4\x5b\x59\ \x5b\x7c\x81\x83\x4a\x4b\x4d\xe5\xe3\xe4\xfd\xff\xff\xf7\xf8\xfd\ \xf0\xf2\xf4\xc7\xd1\xd1\x79\x82\x84\x3e\x4b\x57\x13\x19\x1b\x12\ \x13\x10\x11\x12\x0c\x10\x0f\x0b\x0e\x0d\x0c\x0a\x0c\x0b\x07\x0b\ \x11\x0a\x09\x13\x65\x2a\x02\xd2\x60\x00\xcb\x77\x21\x43\xc2\xca\ \xb8\xf2\xfd\xfa\xfa\xfe\xf3\xf6\xfa\xea\xef\xf3\x91\xb4\xc0\x3b\ \x38\x2d\x51\x4b\x4d\x18\x19\x18\x0b\x0c\x09\x0b\x0d\x09\x0a\x0c\ \x08\x0a\x0b\x09\x06\x06\x05\x06\x06\x04\x0c\x0d\x0c\x6c\x45\x30\ \x84\x3e\x1b\x6b\x27\x03\xb3\x8e\x6c\x29\xd6\xf7\x99\xe6\xf6\xf0\ \xf0\xf2\xda\xe0\xe4\xa4\xac\xad\x4d\x47\x41\x22\x1b\x12\x08\x0b\ \x06\x08\x0c\x0e\x08\x0c\x15\x08\x0b\x0e\x08\x07\x07\x1a\x14\x11\ \x97\x6f\x46\xcc\x81\x1b\xd2\x72\x01\xcf\x67\x00\x8d\x74\x45\x67\ \xba\xdd\xc4\xd2\xdb\x9f\xa9\xaf\x56\x5f\x62\x49\x3d\x38\x26\x18\ \x13\x0b\x0e\x0d\x0b\x0e\x08\x0d\x12\x19\x0c\x18\x28\x0b\x16\x27\ \x14\x39\x53\xaa\xcd\xdb\xf0\xf4\xf8\xec\xf0\xf3\xe4\xe9\xed\xcf\ \xd8\xde\xa5\xb1\xb8\x48\x45\x44\x1b\x08\x03\x1a\x07\x00\x15\x07\ \x03\x06\x06\x05\x04\x05\x04\x06\x07\x05\x08\x08\x07\x08\x0b\x0d\ \x04\x0b\x17\x03\x0b\x1e\x03\x0b\x20\x05\x0f\x27\x09\x13\x26\x05\ \x08\x0e\x0d\x16\x1c\x73\x9a\xad\xe1\xea\xee\xe0\xe7\xeb\xd9\xe0\ \xe6\xce\xd5\xdb\xbf\xcb\xd2\x59\x3f\x3a\x2c\x0c\x04\x19\x07\x02\ \x1d\x09\x03\x0f\x06\x04\x03\x05\x0b\x02\x01\x02\x00\x00\x01\x01\ \x01\x01\x02\x01\x01\x02\x02\x02\x02\x02\x02\x02\x01\x02\x00\x00\ \x00\x34\x4f\x54\x26\x46\x4f\x2f\x48\x4c\x2d\x45\x56\x3a\x52\x58\ \x36\x5d\x6a\x47\x78\x8a\x58\x7b\x88\x54\x7a\x8f\x46\x70\x7a\x2e\ \x54\x4f\x23\x40\x3c\x25\x48\x48\x2c\x57\x5c\x2e\x5a\x63\x2f\x4f\ \x5b\x4e\x7a\x92\x46\x76\x82\x28\x3f\x40\x3d\x5f\x69\x29\x4a\x4c\ \x23\x39\x39\x23\x38\x35\x1c\x2d\x28\x31\x4f\x4d\x2c\x4d\x4b\x31\ \x51\x4a\x29\x41\x3f\x22\x36\x33\x1f\x34\x33\x25\x3a\x39\x2a\x43\ \x42\x34\x4e\x50\x39\x5c\x6b\x42\x64\x6e\x3a\x52\x54\x39\x53\x55\ \x5b\x68\x68\xb9\xc2\xc2\x7f\x84\x87\x6b\x6c\x69\x34\x44\x42\x2f\ \x46\x49\x33\x47\x48\x2f\x4b\x4b\x27\x38\x33\x21\x2e\x2b\x21\x2f\ \x2a\x26\x38\x37\x47\x60\x66\x96\xa4\xa2\x66\x65\x68\x7f\x85\x86\ \x27\x2a\x2d\x91\x8c\x90\xfb\xfb\xff\xf1\xf5\xf8\xd4\xdc\xdb\x7c\ \x85\x87\x4c\x58\x5f\x11\x28\x40\x0f\x1f\x31\x10\x18\x17\x13\x14\ \x0d\x11\x10\x0c\x0e\x0e\x0c\x0b\x0c\x0b\x0a\x0a\x0f\x09\x18\x2b\ \x9b\x69\x3a\xd6\x61\x00\xcc\x8d\x44\xe3\xe9\xe4\xf5\xfa\xfe\xf3\ \xf6\xfc\xed\xf2\xf7\xd0\xce\xc8\x63\x5d\x4d\x38\x29\x1d\x2b\x23\ \x1f\x0b\x0d\x0a\x0b\x0c\x0a\x0b\x0b\x08\x0a\x0b\x07\x0a\x0b\x07\ \x09\x09\x05\x08\x09\x06\x18\x17\x14\x7f\x57\x42\x6d\x33\x14\x95\ \x3a\x01\xa9\x6a\x39\xa8\xf4\xff\xef\xf4\xf8\xe7\xeb\xee\xd3\xdb\ \xdd\x7e\x83\x83\x4b\x3d\x36\x0d\x0a\x06\x0a\x0b\x08\x0a\x0a\x07\ \x09\x07\x06\x0a\x07\x06\x09\x04\x03\x15\x0f\x0c\x92\x6d\x46\xcc\ \x80\x1e\xd1\x74\x02\xd0\x67\x00\x91\x71\x3c\x69\xb9\xdb\xc7\xd6\ \xde\x9d\xa8\xaf\x55\x5d\x60\x4d\x44\x3f\x26\x18\x12\x09\x0d\x0e\ \x0b\x11\x17\x0b\x17\x2b\x0b\x1a\x33\x0b\x19\x31\x03\x13\x26\x6d\ \x9f\xb4\xea\xf1\xf8\xed\xf1\xf5\xe7\xec\xf0\xd9\xe1\xe6\xb8\xc4\ \xcc\x5b\x52\x51\x1b\x09\x02\x1b\x07\x00\x17\x07\x02\x09\x06\x05\ \x04\x07\x05\x05\x08\x05\x09\x09\x09\x06\x0c\x19\x02\x0b\x1f\x02\ \x0a\x1e\x03\x0c\x1f\x05\x10\x23\x08\x12\x26\x05\x08\x10\x03\x02\ \x01\x02\x0d\x13\xa0\xb8\xc2\xe6\xea\xec\xe1\xe7\xea\xd9\xdf\xe4\ \xca\xd4\xda\xab\xae\xb1\x43\x1a\x10\x21\x09\x03\x12\x0f\x10\x15\ \x0e\x10\x08\x0c\x15\x02\x03\x05\x01\x01\x00\x01\x02\x02\x02\x01\ \x01\x02\x01\x02\x02\x02\x02\x02\x02\x02\x00\x00\x00\x29\x45\x44\ \x43\x59\x4b\x28\x3a\x42\x36\x53\x65\x4e\x65\x72\x3c\x54\x61\x4f\ \x6f\x84\x5f\x72\x7a\x5a\x7b\x84\x54\x7d\x87\x36\x5e\x60\x25\x42\ \x40\x23\x3d\x38\x2d\x56\x61\x42\x6a\x78\x32\x53\x58\x43\x6d\x82\ \x3e\x61\x62\x28\x3a\x3b\x36\x53\x56\x42\x69\x6d\x28\x42\x3a\x23\ \x38\x31\x1c\x27\x20\x26\x3c\x3b\x33\x5a\x58\x2b\x49\x4b\x2d\x4b\ \x49\x26\x42\x3e\x2b\x49\x48\x22\x38\x35\x2a\x3f\x39\x38\x50\x50\ \x71\x8a\x92\x94\xa1\xa4\x40\x58\x5a\x35\x4c\x4a\x61\x6f\x6e\xa6\ \xac\xac\x51\x64\x64\x3e\x5c\x63\x2c\x41\x40\x30\x48\x45\x2e\x45\ \x42\x2d\x42\x43\x28\x3d\x3c\x20\x31\x2d\x20\x31\x2f\x28\x3a\x3a\ \x44\x5a\x62\xa3\xb3\xb5\x96\x9a\x9e\x88\x91\x92\x22\x2a\x2c\x30\ \x2e\x31\xab\xa5\xa9\xd5\xdb\xdb\x7e\x87\x84\x41\x4a\x49\x2e\x49\ \x4a\x21\x3d\x4c\x0f\x22\x38\x13\x17\x15\x12\x15\x0d\x13\x10\x0c\ \x10\x0f\x0b\x0d\x0d\x0a\x08\x07\x05\x30\x6a\x87\x3e\xbb\xd1\xbc\ \x76\x2b\x79\xbb\xad\xc4\xf7\xff\xf7\xf9\xfe\xf0\xf4\xf9\xe0\xe3\ \xe2\x9e\x79\x5a\x50\x23\x07\x34\x27\x1e\x11\x11\x0b\x0c\x0d\x0a\ \x0b\x0d\x0b\x0d\x0e\x0c\x0a\x0c\x09\x0a\x0b\x07\x0c\x0c\x08\x09\ \x09\x06\x25\x1f\x1a\x89\x52\x37\x57\x25\x0d\xb8\x48\x01\xbe\x6e\ \x3b\xe7\xfe\xff\xee\xf0\xf4\xe5\xea\xee\xc6\xcf\xd1\x5d\x5f\x5e\ \x37\x24\x1d\x09\x08\x05\x0a\x0a\x06\x08\x08\x07\x09\x08\x06\x08\ \x05\x04\x08\x07\x06\x0a\x09\x0b\x88\x4e\x09\xce\x8d\x37\xd2\x73\ \x03\xab\x7c\x39\x39\xa1\xc0\x56\xba\xe1\xc5\xd4\xdc\x9a\xa5\xab\ \x53\x56\x59\x40\x2d\x24\x26\x19\x14\x07\x0b\x10\x09\x12\x25\x09\ \x16\x2f\x08\x12\x29\x0a\x13\x24\x06\x0b\x13\x53\x58\x59\xe4\xe8\ \xed\xef\xf3\xf6\xe9\xee\xf1\xe0\xe7\xec\xc7\xcd\xd3\x54\x32\x27\ \x20\x09\x02\x1a\x07\x00\x18\x08\x02\x0d\x07\x05\x08\x08\x06\x08\ \x08\x05\x07\x0a\x10\x04\x0d\x1f\x06\x0e\x21\x06\x0f\x23\x07\x0f\ \x22\x07\x0f\x24\x07\x13\x27\x05\x09\x15\x02\x01\x01\x01\x02\x00\ \x15\x1d\x21\xc2\xcb\xd0\xe5\xeb\xee\xe0\xe6\xe9\xd8\xde\xe2\xc8\ \xd2\xd9\x90\x8a\x8b\x33\x12\x0b\x1b\x2d\x39\x15\x1a\x25\x0a\x0a\ \x11\x05\x07\x0d\x01\x02\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\ \x01\x01\x02\x02\x02\x01\x00\x00\x00\x25\x46\x45\x1e\x2e\x28\x1e\ \x31\x31\x35\x4e\x4a\x4d\x67\x71\x4c\x65\x75\x4d\x64\x70\x55\x61\ \x60\x4f\x61\x69\x53\x70\x77\x3b\x61\x63\x26\x44\x42\x20\x35\x34\ \x2b\x51\x61\x42\x6c\x83\x3b\x61\x66\x36\x5c\x66\x2b\x43\x46\x2b\ \x41\x48\x35\x50\x5f\x39\x57\x59\x29\x43\x3f\x26\x3d\x3b\x1c\x27\ \x23\x22\x37\x36\x39\x5d\x5c\x34\x5d\x5c\x30\x52\x50\x29\x4a\x47\ \x34\x50\x53\x2a\x48\x49\x28\x42\x3d\x31\x4c\x49\x48\x61\x5a\x57\ \x6a\x6a\x47\x64\x6c\x32\x4d\x4c\x44\x56\x57\x47\x59\x59\x3b\x59\ \x5d\x57\x74\x80\x34\x4c\x4c\x35\x4d\x4d\x31\x4c\x49\x2c\x45\x47\ \x2c\x47\x47\x1f\x31\x2a\x21\x30\x2d\x2e\x42\x43\x47\x5b\x65\xb0\ \xbe\xc4\xbf\xc4\xc8\xb4\xbd\xbd\x16\x1e\x1e\x17\x16\x15\x19\x16\ \x16\x43\x41\x41\x2d\x34\x33\x2b\x44\x3f\x29\x44\x40\x30\x50\x54\ \x1e\x3d\x64\x11\x29\x40\x14\x1a\x1b\x13\x13\x0e\x12\x12\x0a\x0e\ \x0e\x0b\x01\x00\x00\xd3\xda\xdf\x5b\xdb\xf6\x33\xd4\xf0\x93\xe9\ \xf6\xf2\xfa\xfe\xf4\xf7\xfb\xea\xef\xf3\xbd\xaa\x96\x60\x24\x00\ \x56\x49\x44\x27\x29\x23\x10\x13\x0d\x0e\x0f\x0b\x0f\x10\x0d\x0c\ \x0e\x09\x0a\x0c\x09\x09\x0b\x07\x09\x0a\x06\x0b\x0b\x07\x32\x22\ \x18\x88\x47\x26\x7a\x35\x0a\xc3\x4a\x02\x9a\x96\x80\x82\xe7\xfd\ \xf5\xf3\xf5\xe4\xea\xec\xa4\xab\xac\x52\x4f\x49\x16\x09\x01\x0a\ \x0b\x07\x0a\x0a\x06\x08\x08\x06\x07\x08\x07\x08\x06\x05\x07\x07\ \x06\x14\x11\x11\x8e\x5a\x25\xcc\x94\x4f\xd1\x72\x01\xc4\x6a\x0f\ \x69\xaa\xb1\xad\xdd\xed\xd3\xdc\xe2\x94\x9d\xa4\x39\x2d\x25\x41\ \x30\x2a\x26\x19\x16\x06\x09\x0b\x07\x11\x20\x08\x13\x26\x05\x0a\ \x11\x08\x0b\x10\x0a\x0c\x15\x0a\x0d\x13\xb4\xc6\xce\xf1\xf4\xf8\ \xed\xf0\xf4\xea\xf1\xf7\xb3\xa0\x99\x5c\x25\x0d\x26\x0b\x01\x1a\ \x07\x01\x18\x07\x02\x0d\x08\x06\x07\x07\x07\x06\x07\x07\x03\x06\ \x07\x05\x0e\x1d\x05\x0f\x23\x06\x0f\x23\x05\x10\x22\x05\x11\x23\ \x07\x13\x29\x05\x0e\x1c\x02\x01\x01\x03\x03\x03\x01\x01\x00\x23\ \x28\x2d\xc3\xcb\xcd\xea\xef\xf2\xe0\xe6\xea\xd6\xdc\xe2\xc3\xcf\ \xd6\x82\x81\x83\x59\x62\x69\x21\x22\x2a\x0e\x09\x0f\x08\x0a\x14\ \x03\x03\x05\x00\x02\x01\x01\x01\x02\x02\x02\x02\x00\x01\x00\x06\ \x0b\x0f\x00\x00\x00\x48\x66\x64\x1f\x3e\x40\x22\x3d\x40\x32\x51\ \x5a\x50\x63\x6c\x58\x72\x7c\x51\x6c\x7a\x4d\x5c\x67\x46\x5c\x69\ \x51\x69\x72\x3f\x65\x6d\x2d\x54\x57\x29\x47\x4d\x30\x56\x6a\x54\ \x7d\x96\x43\x68\x75\x2a\x40\x3d\x27\x3a\x3b\x2d\x45\x4b\x4d\x74\ \x87\x3a\x5d\x5f\x29\x42\x3e\x28\x41\x44\x1b\x2e\x2c\x26\x3d\x3f\ \x3c\x5b\x60\x37\x5b\x5f\x34\x56\x5c\x30\x55\x5b\x3f\x60\x6c\x30\ \x55\x59\x26\x40\x3d\x3a\x55\x56\x49\x68\x70\x4d\x63\x6c\x49\x5f\ \x68\x3b\x5d\x63\x34\x4f\x51\x31\x4a\x4a\x3e\x5f\x67\x55\x72\x7d\ \x42\x5f\x64\x37\x51\x4f\x30\x4a\x48\x2d\x47\x47\x2f\x4c\x4d\x20\ \x33\x2f\x26\x39\x39\x30\x46\x4d\x4d\x5c\x63\xb2\xbd\xc1\xd4\xda\ \xde\xf7\xfa\xfb\x66\x6f\x70\x13\x17\x17\x0b\x0d\x0e\x10\x1d\x1d\ \x2c\x4a\x48\x2f\x4f\x4e\x2b\x47\x45\x31\x55\x52\x32\x53\x65\x25\ \x4b\x79\x2c\x39\x39\x22\x2a\x28\x18\x1b\x11\x13\x14\x10\x0d\x0f\ \x11\xe0\xe4\xeb\xee\xf9\xfd\xa2\xf0\xfd\xdd\xf8\xfd\xf9\xf9\xfd\ \xef\xf4\xf8\xdf\xe6\xe9\x83\x76\x64\x47\x42\x42\x40\x42\x43\x12\ \x15\x13\x0f\x12\x0d\x0f\x12\x0c\x0e\x10\x0b\x0d\x0f\x0b\x0b\x0c\ \x09\x0b\x0c\x08\x0a\x0b\x06\x0a\x0a\x07\x41\x36\x2d\x77\x48\x2e\ \x88\x41\x18\x7a\x98\x8b\x52\xc4\xd3\xb3\xeb\xf9\xf2\xf2\xf5\xd8\ \xe0\xe1\x77\x7d\x7c\x42\x3a\x36\x09\x05\x02\x07\x08\x06\x08\x08\ \x05\x06\x06\x03\x05\x06\x04\x06\x07\x05\x07\x07\x07\x0f\x0e\x11\ \x7c\x4f\x20\xc4\x8b\x3f\xd0\x71\x01\xce\x64\x00\xb5\x86\x4a\xbd\ \xdd\xea\xd3\xde\xe5\x82\x7d\x79\x32\x16\x02\x48\x37\x2e\x26\x18\ \x15\x05\x0a\x0e\x08\x12\x21\x0a\x16\x2b\x08\x0f\x19\x09\x0c\x12\ \x0b\x0d\x15\x06\x09\x11\x42\x62\x6f\xf0\xf7\xfb\xef\xf2\xf7\xee\ \xf4\xfa\xb2\x98\x8a\x6a\x28\x09\x31\x0d\x00\x1a\x08\x03\x1b\x08\ \x01\x11\x08\x05\x06\x07\x07\x04\x06\x06\x07\x0a\x0e\x05\x0e\x20\ \x06\x0f\x22\x06\x10\x23\x07\x11\x25\x06\x12\x24\x08\x14\x28\x06\ \x12\x25\x02\x05\x0a\x02\x03\x02\x03\x03\x03\x04\x03\x04\x34\x37\ \x37\xbf\xc4\xc7\xec\xf0\xf5\xdf\xe6\xe9\xd0\xd9\xdf\xbf\xc9\xd0\ \x8c\x95\x9c\x43\x41\x45\x11\x0a\x11\x0a\x0b\x18\x03\x05\x09\x03\ \x05\x05\x01\x01\x02\x01\x01\x01\x02\x03\x04\x0a\x15\x22\x00\x00\ \x00\x3f\x57\x5a\x3d\x64\x66\x32\x57\x5e\x32\x4a\x4e\x38\x4b\x54\ \x4c\x63\x71\x50\x6e\x7d\x4b\x6b\x7e\x4e\x69\x7d\x48\x5c\x6a\x44\ \x5f\x6c\x33\x5a\x61\x32\x57\x60\x44\x6e\x87\x58\x81\x99\x50\x79\ \x89\x2a\x42\x42\x25\x32\x33\x25\x39\x3f\x54\x78\x85\x45\x68\x6b\ \x27\x3f\x3c\x28\x40\x41\x2a\x42\x43\x2d\x43\x4a\x44\x69\x7f\x47\ \x6d\x7d\x3a\x60\x6d\x3c\x65\x7a\x41\x65\x72\x38\x5d\x68\x29\x47\ \x46\x3a\x54\x57\x50\x68\x70\x4f\x6a\x74\x6e\x86\x90\x51\x6f\x74\ \x39\x59\x5c\x36\x53\x55\x46\x62\x6c\x59\x72\x7b\x47\x60\x5f\x33\ \x57\x59\x2b\x46\x44\x2a\x40\x40\x30\x4c\x4d\x25\x38\x36\x2d\x40\ \x41\x3b\x51\x59\x55\x65\x6c\xaa\xba\xc1\xe5\xe9\xef\xfa\xfb\xfe\ \xde\xe4\xe7\x6d\x78\x77\x24\x32\x33\x2c\x4a\x4e\x35\x56\x55\x34\ \x59\x5d\x2b\x48\x47\x2c\x4f\x4d\x38\x58\x56\x35\x4d\x64\x33\x4e\ \x6c\x41\x4b\x3e\x3f\x46\x2b\x2b\x2d\x22\x35\x3d\x42\xdd\xdf\xe6\ \xfb\xfd\xfe\xff\xfd\xfd\xfa\xfb\xfd\xf3\xf6\xfb\xe9\xee\xf2\xca\ \xd6\xda\x50\x74\x7f\x3f\x53\x5f\x1f\x2a\x3a\x0d\x13\x17\x10\x0e\ \x0a\x0f\x12\x0c\x0d\x11\x0c\x0d\x0f\x0a\x0e\x0f\x0a\x0b\x0c\x09\ \x09\x0a\x06\x0e\x0a\x06\x4e\x31\x22\x79\x3d\x21\x9a\x4a\x1b\x49\ \xdb\xf5\x55\xe0\xf8\xea\xf4\xf9\xe9\xec\xf0\xc0\xc9\xcb\x5f\x63\ \x63\x24\x1f\x1a\x03\x04\x04\x04\x05\x04\x04\x06\x05\x04\x04\x03\ \x05\x03\x03\x04\x05\x03\x06\x09\x0a\x07\x0c\x15\x77\x53\x2d\xc5\ \x8f\x49\xd0\x74\x04\xcf\x62\x00\xab\x77\x31\x80\xc6\xd9\xca\xde\ \xe7\x82\x76\x6d\x34\x17\x01\x44\x2e\x22\x26\x19\x15\x0a\x0b\x0c\ \x0c\x0d\x11\x0b\x0b\x0e\x0b\x0c\x0e\x0b\x0e\x18\x0b\x0f\x17\x0c\ \x11\x1b\x0a\x19\x23\xbc\xdc\xe8\xf5\xf6\xfa\xec\xf2\xf6\xd7\xd7\ \xd7\x79\x3a\x1b\x37\x17\x08\x1a\x07\x00\x1a\x08\x02\x11\x0a\x08\ \x05\x06\x06\x04\x07\x07\x06\x0d\x1a\x04\x0d\x21\x06\x0e\x21\x07\ \x0f\x22\x08\x12\x26\x09\x11\x26\x07\x13\x27\x07\x15\x2b\x04\x0c\ \x18\x02\x02\x01\x03\x03\x02\x04\x04\x05\x07\x07\x06\x39\x3c\x3b\ \xc4\xc9\xcb\xe8\xee\xf1\xdd\xe4\xe9\xd1\xd8\xde\xb0\xbb\xc2\x75\ \x7c\x84\x2b\x28\x2a\x13\x13\x24\x03\x07\x14\x08\x0b\x0f\x02\x02\ \x04\x00\x00\x00\x06\x13\x1c\x07\x14\x25\x00\x00\x00\x2a\x41\x4a\ \x48\x6e\x72\x51\x6d\x67\x1d\x32\x31\x26\x41\x49\x4d\x64\x6a\x58\ \x77\x7e\x55\x78\x87\x5a\x7b\x91\x5b\x77\x8e\x58\x6e\x80\x44\x62\ \x6f\x37\x5c\x69\x4b\x6f\x77\x53\x72\x7d\x59\x75\x7b\x32\x50\x51\ \x1f\x33\x36\x34\x50\x5e\x51\x78\x85\x46\x6e\x78\x2e\x4e\x50\x2e\ \x50\x54\x2f\x4b\x4a\x29\x44\x47\x52\x78\x8d\x59\x84\x9e\x4c\x7b\ \x92\x4f\x7d\x96\x42\x69\x80\x44\x69\x7b\x32\x56\x61\x41\x5f\x6d\ \x5c\x71\x79\x5d\x71\x75\x60\x6f\x69\x49\x65\x6d\x3c\x5b\x60\x3a\ \x56\x5a\x43\x5e\x66\x4e\x66\x6d\x40\x5d\x64\x3b\x60\x64\x2a\x48\ \x49\x2b\x46\x47\x2b\x4b\x4b\x29\x3f\x3d\x2d\x43\x40\x34\x47\x4a\ \x4b\x5d\x61\xac\xbb\xc2\xee\xf0\xf5\xf3\xf5\xf9\xcb\xd2\xd1\x5a\ \x6a\x6b\x2f\x51\x54\x34\x5d\x63\x31\x4e\x4d\x34\x5e\x60\x2f\x52\ \x53\x2e\x53\x51\x33\x5a\x5e\x46\x65\x6c\x2b\x43\x66\x36\x52\x6e\ \x42\x51\x4c\x42\x48\x42\x54\x5c\x63\xc9\xc8\xcd\xfd\xfe\xff\xfa\ \xfb\xfe\xf5\xf9\xfd\xee\xf3\xf6\xda\xe3\xe7\x9f\xa9\xab\x36\x35\ \x33\x1f\x25\x38\x0c\x21\x40\x0f\x1f\x34\x0e\x15\x19\x0f\x10\x08\ \x10\x12\x0c\x0d\x0f\x0a\x0d\x0d\x0a\x0c\x0c\x08\x0b\x0b\x07\x12\ \x0d\x08\x5c\x1f\x02\x6b\x40\x2b\x69\xa7\xaf\x96\xe5\xf3\xec\xf6\ \xfd\xef\xf2\xf6\xde\xe4\xe6\x9f\xa8\xab\x67\x6c\x6b\x13\x0f\x0d\ \x03\x03\x04\x03\x04\x04\x03\x05\x05\x04\x04\x04\x04\x03\x02\x03\ \x02\x03\x06\x06\x05\x08\x0f\x17\x78\x4f\x23\xc8\x9c\x64\xce\x72\ \x02\xc4\x66\x0b\x7e\x8f\x7c\x69\xbe\xd7\xc7\xdb\xe6\x89\x84\x7e\ \x2a\x1f\x14\x36\x24\x18\x29\x1a\x15\x0c\x0a\x06\x0d\x0a\x08\x0b\ \x07\x05\x0e\x0b\x08\x10\x0f\x0f\x0e\x13\x20\x0d\x16\x23\x0a\x10\ \x1a\x85\x94\x98\xf6\xf9\xfe\xee\xf2\xf6\xe8\xef\xf5\x97\x7c\x6d\ \x37\x57\x62\x1a\x06\x00\x1b\x07\x01\x14\x0b\x0a\x05\x07\x07\x04\ \x09\x14\x04\x0e\x1f\x04\x0e\x21\x05\x0e\x23\x07\x11\x25\x06\x12\ \x26\x09\x12\x28\x07\x13\x26\x08\x14\x2b\x06\x14\x2b\x02\x05\x0b\ \x02\x02\x02\x02\x04\x04\x05\x05\x05\x05\x06\x05\x3a\x3c\x3b\xcf\ \xd4\xd5\xe6\xeb\xee\xdd\xe4\xe7\xcb\xd4\xda\xa6\xb0\xb8\x62\x67\ \x6e\x23\x23\x2a\x0c\x10\x25\x07\x0b\x10\x0d\x16\x1a\x26\x43\x5b\ \x10\x23\x3b\x07\x11\x24\x00\x00\x00\x3b\x54\x65\x51\x70\x75\x4b\ \x6b\x69\x2e\x55\x5c\x30\x51\x53\x47\x60\x63\x58\x75\x75\x5e\x7b\ \x7d\x56\x75\x7e\x58\x78\x80\x58\x79\x86\x50\x74\x88\x45\x6c\x82\ \x47\x68\x7a\x52\x70\x80\x64\x73\x76\x4e\x62\x61\x2f\x4c\x52\x44\ \x6a\x75\x4f\x7a\x80\x4e\x74\x7f\x30\x4f\x4d\x3c\x5e\x63\x36\x59\ \x5b\x27\x40\x43\x44\x6d\x73\x51\x7a\x7f\x53\x7a\x83\x55\x79\x81\ \x4d\x74\x83\x55\x73\x80\x48\x6b\x76\x5c\x72\x77\x5e\x6e\x74\x54\ \x6e\x76\x48\x5f\x6b\x44\x62\x71\x3a\x59\x60\x3e\x5f\x66\x3a\x54\ \x5d\x39\x51\x5a\x3b\x51\x55\x41\x62\x6b\x30\x51\x54\x2a\x46\x47\ \x31\x53\x5b\x2d\x49\x4e\x32\x4a\x50\x3a\x55\x5f\x52\x67\x76\xb7\ \xc0\xc5\xee\xf0\xf4\xdd\xe3\xe3\x75\x80\x7e\x42\x5e\x64\x3e\x64\ \x68\x34\x5d\x5d\x32\x54\x55\x34\x5c\x5d\x32\x5b\x5c\x2e\x52\x4d\ \x30\x59\x55\x40\x60\x67\x49\x65\x6f\x2e\x46\x68\x39\x4a\x52\x50\ \x5a\x5f\x6a\x75\x79\x7e\x78\x7a\xff\xff\xff\xf7\xfb\xfe\xf1\xf6\ \xfb\xe6\xec\xef\xc0\xca\xcc\x3e\x2e\x22\x25\x1d\x25\x0d\x21\x40\ \x0c\x23\x43\x0e\x21\x3f\x0c\x24\x3f\x0e\x1f\x31\x10\x10\x09\x0f\ \x0e\x09\x0d\x0e\x0a\x0c\x0f\x0b\x0c\x0b\x08\x16\x17\x15\x6b\x4a\ \x3a\x71\x29\x05\x39\xa5\xb1\xb9\xef\xfb\xf6\xf8\xfc\xea\xef\xf1\ \xd1\xd9\xda\x7e\x85\x87\x5b\x5b\x5a\x05\x05\x05\x04\x04\x04\x05\ \x04\x04\x04\x05\x05\x04\x05\x04\x05\x05\x03\x06\x08\x05\x09\x08\ \x05\x03\x04\x05\x6e\x4f\x30\xc9\x9e\x6c\xd2\x76\x03\xbe\x6f\x17\ \x33\xa9\xc9\x5e\xca\xea\xce\xde\xe6\x94\x99\x9a\x31\x43\x4a\x3a\ \x28\x1f\x29\x18\x13\x0c\x0a\x05\x0c\x0a\x04\x0c\x0b\x07\x0d\x0a\ \x09\x10\x0c\x08\x12\x16\x1e\x0d\x17\x28\x0c\x17\x23\x2b\x31\x35\ \xf4\xf9\xfd\xf0\xf4\xf8\xe7\xec\xf0\xd3\xdd\xe2\x6a\x65\x62\x22\ \x08\x00\x1a\x0a\x05\x13\x0c\x0e\x07\x0c\x16\x04\x0c\x1e\x02\x0d\ \x1d\x03\x0b\x1b\x04\x0c\x1e\x04\x0e\x20\x07\x12\x26\x09\x13\x27\ \x08\x13\x27\x08\x14\x28\x07\x18\x31\x07\x17\x28\x03\x04\x07\x03\ \x03\x04\x04\x04\x04\x06\x06\x06\x02\x02\x02\x3a\x3c\x3a\xd7\xdd\ \xe0\xe6\xea\xed\xdd\xe2\xe8\xc6\xce\xd7\x96\xa2\xa9\x46\x48\x4d\ \x0b\x0c\x22\x1f\x34\x4b\x81\xbc\xd3\x91\xd0\xf7\x1e\x40\x78\x06\ \x13\x35\x00\x00\x00\x6d\x88\x8b\x61\x7a\x82\x58\x69\x6f\x4a\x64\ \x6d\x41\x5f\x6a\x31\x48\x4c\x4b\x69\x78\x5f\x7b\x86\x5a\x77\x80\ \x4f\x6e\x74\x55\x73\x79\x53\x75\x7b\x4e\x71\x7b\x51\x74\x7f\x52\ \x71\x78\x4e\x6c\x68\x3f\x63\x60\x30\x53\x56\x4b\x74\x7f\x50\x75\ \x7b\x4e\x72\x7b\x3c\x5e\x6a\x3b\x57\x63\x3b\x58\x5f\x37\x52\x63\ \x52\x6d\x7c\x62\x7a\x84\x5d\x72\x7d\x70\x7d\x83\x88\x92\x96\x7f\ \x89\x8c\x5e\x74\x7d\x4f\x66\x6f\x57\x68\x6f\x4d\x64\x68\x47\x5f\ \x67\x41\x58\x57\x3f\x5e\x66\x3e\x61\x6b\x38\x53\x5b\x49\x60\x6b\ \x4d\x5b\x67\x58\x72\x84\x39\x59\x60\x2f\x52\x5a\x37\x59\x61\x38\ \x5f\x6a\x36\x57\x5f\x31\x4d\x57\x56\x6d\x7a\xc1\xcb\xce\xa7\xac\ \xae\x82\x89\x8a\x3d\x57\x58\x3d\x5d\x60\x3c\x5e\x5f\x35\x5c\x5a\ \x30\x56\x58\x2c\x41\x3d\x32\x54\x4e\x2f\x50\x4f\x2d\x51\x4f\x36\ \x5b\x5f\x48\x66\x73\x48\x63\x7b\x2f\x47\x66\x60\x6e\x78\x72\x7a\ \x7c\x12\x11\x11\xb8\xb2\xb7\xfa\xfc\xff\xee\xf3\xf8\xd3\xde\xe1\ \x77\x7d\x7b\x26\x1b\x1a\x12\x1f\x39\x0c\x1d\x3d\x0d\x21\x41\x0e\ \x23\x44\x0c\x21\x3a\x0c\x1e\x2e\x0e\x13\x0e\x0e\x0f\x09\x0d\x0d\ \x08\x0c\x0b\x06\x0c\x0c\x08\x0d\x1b\x1d\x32\x90\xae\x64\x6c\x69\ \xc1\xca\xc9\xf7\xf9\xfe\xf2\xf6\xfa\xe5\xeb\xed\xbe\xc6\xc9\x63\ \x67\x68\x37\x33\x2f\x04\x07\x06\x04\x07\x07\x03\x04\x04\x03\x03\ \x03\x04\x06\x03\x06\x06\x03\x06\x06\x04\x07\x06\x03\x04\x03\x02\ \x67\x4e\x32\xc0\x83\x38\xce\x74\x08\xb0\x7b\x33\x81\xb2\xb5\xe2\ \xf4\xfb\xdb\xe1\xe8\xa8\xb3\xbb\x3b\x30\x27\x3a\x27\x1b\x21\x16\ \x11\x0b\x09\x06\x0c\x08\x05\x0d\x0a\x07\x0d\x0b\x08\x0e\x0b\x08\ \x12\x0c\x09\x16\x12\x11\x10\x1f\x3a\x13\x23\x39\xa5\xae\xb4\xf7\ \xfa\xfe\xea\xef\xf3\xdb\xe5\xec\x7a\x58\x4b\x2f\x0a\x00\x1a\x0f\ \x0c\x19\x19\x1a\x08\x0c\x19\x02\x08\x15\x02\x08\x15\x02\x0a\x18\ \x02\x0a\x19\x01\x0b\x1a\x04\x0d\x1e\x06\x11\x24\x08\x13\x26\x09\ \x14\x29\x07\x12\x2b\x09\x1b\x32\x09\x1a\x31\x04\x0b\x13\x02\x05\ \x08\x03\x03\x04\x04\x04\x03\x00\x00\x00\x3b\x3b\x3b\xd3\xd6\xdb\ \xe7\xec\xee\xdd\xe4\xe9\xbb\xbf\xc6\x37\x32\x36\x05\x07\x09\x18\ \x28\x40\x73\xb1\xdb\x4a\x89\xd2\x1c\x59\xb2\x10\x41\x93\x00\x00\ \x00\x61\x76\x80\x61\x7e\x85\x5f\x78\x7b\x58\x75\x84\x51\x72\x81\ \x2b\x43\x47\x40\x62\x6f\x67\x7e\x83\x5d\x76\x7b\x5f\x78\x7c\x5e\ \x7a\x7b\x4e\x70\x73\x4f\x70\x74\x4b\x6c\x76\x4d\x66\x72\x4c\x60\ \x64\x45\x6e\x6f\x3d\x63\x6e\x50\x69\x73\x56\x6f\x77\x51\x6a\x72\ \x47\x64\x6e\x48\x67\x6c\x54\x71\x7c\x55\x6f\x7f\x7b\x88\x90\x7f\ \x8c\x93\x8b\x95\x99\x81\x8a\x8c\x7b\x82\x85\x6e\x78\x79\x65\x71\ \x78\x5e\x67\x6c\x5a\x5d\x5e\x44\x53\x59\x3d\x5a\x62\x37\x50\x56\ \x39\x53\x54\x3e\x5b\x61\x39\x4b\x50\x3f\x54\x5b\x3f\x52\x5a\x51\ \x73\x7f\x3c\x63\x6c\x35\x55\x5a\x3f\x5f\x67\x42\x65\x6f\x40\x64\ \x71\x37\x57\x5f\x5d\x6d\x78\xaa\xb4\xb9\x61\x72\x74\x38\x50\x55\ \x48\x65\x64\x3f\x5e\x61\x3b\x59\x59\x34\x53\x53\x2f\x51\x4e\x21\ \x34\x2f\x2f\x49\x44\x30\x4e\x4c\x32\x52\x54\x2e\x57\x5c\x4a\x6b\ \x72\x4e\x67\x6f\x33\x50\x72\x73\x91\xbc\x5d\x6a\x6e\x0b\x0d\x0d\ \x1d\x18\x1a\xa8\xa3\xa7\xd1\xd3\xd6\xa6\xae\xae\x34\x3b\x3d\x20\ \x38\x4e\x11\x25\x41\x0c\x1d\x3b\x0b\x1d\x3c\x0e\x21\x42\x0e\x1e\ \x39\x0d\x1a\x24\x0e\x16\x10\x10\x14\x0a\x11\x11\x0a\x0e\x0d\x06\ \x0c\x0b\x09\x12\x15\x14\x3f\x73\x85\x61\xae\xc3\x6a\xd2\xe5\xf1\ \xf8\xfe\xf0\xf5\xf8\xe1\xe7\xea\xa3\xab\xad\x54\x56\x54\x12\x10\ \x0e\x09\x0b\x0a\x05\x05\x05\x04\x05\x04\x04\x04\x04\x03\x03\x02\ \x04\x04\x03\x04\x04\x02\x05\x04\x04\x01\x01\x03\x78\x43\x06\xc8\ \x7a\x16\xcd\x78\x0f\x96\x8e\x61\x5e\xc0\xd7\xd2\xec\xf5\xdf\xe5\ \xea\xab\xb6\xbb\x2f\x18\x0c\x32\x1e\x14\x1b\x18\x16\x0c\x09\x05\ \x0b\x09\x06\x0c\x08\x05\x0d\x0a\x06\x0f\x0b\x07\x0f\x0c\x09\x17\ \x0d\x09\x17\x16\x18\x12\x24\x3e\x50\x61\x78\xf2\xf6\xf9\xef\xf2\ \xf6\xe1\xe8\xee\x9d\x90\x8d\x35\x0a\x00\x17\x13\x12\x19\x19\x18\ \x08\x0e\x18\x02\x08\x16\x02\x09\x17\x03\x0a\x1a\x02\x0a\x17\x02\ \x0a\x1a\x01\x0b\x1b\x01\x0b\x1c\x04\x0e\x1f\x09\x13\x29\x08\x13\ \x2a\x07\x12\x27\x08\x19\x30\x0a\x1f\x38\x0c\x1c\x32\x09\x15\x23\ \x08\x11\x1a\x08\x15\x1e\x1d\x31\x3d\x62\x78\x83\xc3\xd0\xd8\xa4\ \xa1\xa7\x50\x49\x4c\x08\x09\x0b\x03\x03\x03\x08\x0e\x1b\x1d\x48\ \x87\x18\x51\xaa\x11\x46\xa3\x0f\x41\xa1\x00\x00\x00\x5a\x6e\x75\ \x60\x76\x79\x64\x7e\x8c\x66\x7d\x85\x69\x7b\x7b\x50\x69\x6d\x31\ \x48\x49\x63\x7c\x85\x6c\x84\x8c\x6f\x85\x8d\x6e\x83\x88\x63\x80\ \x8a\x60\x7d\x83\x5f\x7c\x87\x4f\x6c\x75\x50\x69\x71\x47\x63\x6b\ \x47\x5d\x6a\x4e\x5a\x69\x4e\x61\x72\x56\x6a\x7b\x59\x6b\x75\x59\ \x70\x75\x61\x78\x7c\x71\x83\x8a\x7c\x84\x86\x80\x89\x8c\x88\x8d\ \x8b\x83\x86\x83\x6a\x76\x79\x60\x6c\x6e\x79\x7e\x82\x67\x6a\x6c\ \x63\x62\x66\x4b\x61\x71\x44\x5f\x6b\x41\x5c\x66\x40\x5a\x62\x3f\ \x56\x56\x3d\x50\x4f\x40\x52\x54\x45\x61\x6c\x57\x7b\x8c\x40\x69\ \x79\x36\x5a\x68\x40\x5f\x6c\x3c\x5c\x6d\x3f\x5f\x6c\x39\x5a\x64\ \x51\x68\x71\x67\x73\x7c\x4a\x5e\x63\x47\x60\x6b\x47\x63\x73\x43\ \x64\x74\x3c\x5c\x67\x35\x56\x5c\x30\x4f\x4d\x20\x2f\x2c\x26\x3c\ \x39\x2d\x49\x4b\x36\x5c\x66\x3b\x5f\x65\x46\x5d\x65\x51\x6d\x76\ \x4c\x62\x6f\x89\x9a\xaa\xa1\xaa\xae\x09\x0d\x0f\x0b\x0c\x0c\x14\ \x11\x11\x3e\x3d\x3d\x33\x35\x37\x2c\x3d\x45\x34\x53\x61\x26\x4a\ \x71\x1d\x3e\x65\x11\x2c\x51\x0a\x1d\x41\x0c\x1e\x3e\x0d\x21\x3f\ \x0e\x1e\x29\x0f\x16\x0b\x12\x14\x0a\x11\x10\x09\x10\x0f\x0d\x38\ \x3c\x3d\x78\x7b\x82\x7c\xd6\xeb\x9e\xe8\xf7\xf3\xf8\xfe\xee\xf1\ \xf5\xd8\xdf\xe2\x85\x8c\x8e\x39\x3a\x39\x0e\x0f\x0e\x08\x0a\x09\ \x06\x07\x07\x05\x07\x06\x04\x04\x04\x04\x04\x02\x03\x03\x03\x02\ \x03\x02\x04\x03\x03\x02\x00\x00\x46\x4f\x43\x9f\x80\x46\xd0\x72\ \x00\xce\x6a\x03\xa4\xb0\xa1\xd7\xf1\xfd\xe6\xec\xf1\xa5\xb0\xb6\ \x24\x12\x07\x23\x24\x25\x1c\x1a\x17\x0e\x0c\x07\x0e\x0c\x07\x0c\ \x09\x07\x0c\x09\x07\x0e\x0a\x08\x0f\x0c\x0a\x14\x0e\x0b\x19\x0e\ \x09\x16\x19\x22\x24\x3c\x5c\xbb\xc4\xcb\xf4\xf7\xfc\xe7\xeb\xf0\ \xc5\xca\xcd\x46\x2c\x1f\x12\x25\x30\x1d\x1d\x1a\x0d\x10\x17\x03\ \x09\x13\x02\x0a\x16\x04\x0a\x13\x03\x0a\x13\x03\x0a\x16\x02\x0b\ \x1d\x02\x0b\x1d\x02\x0b\x1d\x04\x0f\x24\x04\x10\x29\x07\x10\x22\ \x08\x0e\x1d\x08\x12\x27\x0b\x1b\x35\x0c\x22\x40\x0e\x23\x3f\x1d\ \x4c\x75\x5a\xa1\xd4\x70\xb9\xdd\x6b\xa2\xca\x2a\x39\x53\x01\x03\ \x05\x00\x02\x02\x03\x09\x0b\x3a\x47\x4e\x1f\x36\x65\x24\x4a\xa3\ \x29\x47\xa2\x2f\x46\x9f\x00\x00\x00\x5b\x66\x63\x4a\x54\x56\x57\ \x6d\x7a\x5d\x6d\x77\x55\x61\x68\x62\x6e\x70\x49\x5c\x63\x5a\x6b\ \x69\x7a\x84\x7f\x87\x8f\x8b\x88\x91\x8d\x8c\x94\x96\x89\x92\x94\ \x81\x91\x94\x78\x89\x8e\x6e\x7d\x84\x52\x60\x70\x4e\x5b\x71\x5f\ \x71\x7e\x6d\x77\x80\x73\x7d\x85\x69\x75\x7c\x6c\x78\x7e\x76\x82\ \x86\x7e\x85\x86\x7f\x86\x87\x81\x88\x88\x73\x78\x7a\x53\x56\x5b\ \x51\x62\x6a\x4d\x60\x66\x62\x69\x6b\x6f\x72\x72\x57\x64\x69\x49\ \x58\x62\x3b\x54\x5c\x43\x5f\x63\x48\x60\x63\x3b\x4e\x4f\x39\x4f\ \x56\x36\x47\x49\x40\x5e\x67\x5a\x7b\x89\x48\x70\x7e\x40\x6a\x78\ \x3f\x5d\x6a\x4a\x64\x72\x43\x5d\x66\x3f\x60\x66\x42\x5b\x5e\x45\ \x5d\x67\x4d\x6d\x7f\x4e\x73\x86\x54\x7d\x90\x50\x7a\x8c\x48\x6c\ \x75\x43\x6a\x74\x2f\x52\x53\x21\x32\x2f\x29\x44\x41\x35\x52\x54\ \x44\x6e\x77\x44\x66\x70\x45\x5a\x61\x55\x70\x7c\x51\x69\x77\x87\ \x94\x9d\xec\xf0\xf2\x71\x7b\x80\x00\x00\x04\x04\x04\x04\x02\x04\ \x05\x17\x22\x2d\x36\x49\x48\x36\x55\x67\x30\x53\x67\x2e\x58\x77\ \x2a\x4e\x78\x20\x44\x83\x12\x34\x69\x0c\x24\x4d\x08\x1c\x3b\x0e\ \x19\x1d\x10\x15\x0a\x0e\x11\x0e\x10\x11\x0e\x72\x75\x77\xb1\xb5\ \xbb\xc0\xe2\xeb\xe5\xf6\xfc\xf4\xf6\xfc\xeb\xef\xf3\xcb\xd1\xd3\ \x69\x70\x72\x25\x27\x26\x08\x09\x09\x07\x08\x06\x06\x09\x08\x07\ \x09\x08\x06\x08\x08\x08\x0a\x08\x08\x0a\x08\x08\x08\x07\x06\x06\ \x05\x02\x00\x00\x23\x38\x42\x4f\xa8\xc0\x6c\x88\x75\xb7\x71\x27\ \x7c\xa6\xa2\xbc\xec\xfc\xf1\xf3\xf7\xa7\xb4\xba\x3a\x3b\x39\x1c\ \x36\x45\x1c\x1b\x17\x0f\x0e\x07\x0f\x0d\x08\x0e\x0b\x07\x0d\x0b\ \x07\x0e\x0b\x09\x0f\x0c\x0b\x10\x0c\x0b\x15\x0e\x0a\x1e\x1b\x19\ \x10\x27\x4b\x71\x80\x90\xf4\xf7\xfb\xeb\xf0\xf3\xd4\xdc\xdf\x87\ \x8f\x93\x2b\x36\x3b\x20\x16\x11\x10\x0e\x13\x05\x09\x11\x02\x0b\ \x16\x04\x09\x12\x04\x0a\x12\x04\x0a\x15\x03\x0a\x1d\x04\x0c\x1f\ \x04\x0d\x20\x02\x0c\x20\x02\x0d\x26\x04\x0f\x26\x08\x10\x23\x08\ \x11\x25\x07\x13\x2a\x07\x14\x31\x05\x11\x2d\x15\x44\x83\x25\x65\ \xba\x2a\x6e\xc3\x27\x6a\xc3\x20\x58\xa5\x29\x3c\x55\x4c\x57\x59\ \x9f\xaf\xb2\x9d\xa8\xb0\x39\x48\x67\x31\x48\xa7\x4b\x55\xa0\x62\ \x63\x35\x00\x00\x00\x4e\x5d\x5a\x52\x5a\x5e\x54\x5d\x62\x4f\x5b\ \x63\x45\x4f\x52\x51\x5c\x64\x55\x63\x69\x48\x5d\x66\x45\x5d\x60\ \x4d\x60\x6b\x4e\x5c\x66\x5a\x64\x6a\x6f\x72\x71\x80\x81\x7f\x8c\ \x92\x8f\x87\x91\x91\x77\x84\x8a\x6d\x79\x82\x7b\x86\x89\x76\x7d\ \x7e\x75\x7e\x82\x7c\x87\x8a\x7c\x86\x89\x82\x87\x8b\x85\x89\x89\ \x80\x86\x86\x7f\x87\x83\x72\x7b\x7e\x56\x63\x73\x48\x55\x66\x50\ \x5f\x66\x4a\x5e\x6a\x4d\x5d\x67\x4b\x5c\x6d\x46\x56\x64\x3f\x59\ \x62\x40\x5b\x63\x45\x61\x68\x3c\x57\x5b\x3e\x51\x4e\x33\x45\x44\ \x3e\x56\x68\x52\x79\x84\x4b\x73\x81\x47\x6c\x77\x3b\x58\x63\x44\ \x5a\x62\x47\x63\x74\x4c\x73\x84\x4d\x72\x83\x50\x76\x85\x53\x7b\ \x89\x53\x78\x7e\x52\x73\x79\x55\x73\x76\x45\x63\x62\x44\x5f\x63\ \x33\x54\x57\x24\x3e\x3b\x25\x3b\x37\x32\x4b\x4a\x48\x6c\x70\x47\ \x66\x6e\x43\x5d\x67\x59\x73\x81\x52\x6d\x7c\x87\x95\x9e\xed\xf0\ \xf2\xf3\xf6\xfa\xa9\xb4\xb6\x33\x41\x42\x16\x1f\x2b\x2b\x4a\x70\ \x36\x52\x64\x3b\x4d\x45\x32\x50\x5d\x31\x52\x61\x31\x53\x75\x31\ \x58\x94\x2c\x56\xa2\x20\x4f\x9c\x18\x43\x86\x0c\x2a\x4f\x0c\x1b\ \x1a\x0e\x13\x0b\x1a\x1b\x18\x81\x84\x89\xbc\xc2\xc6\xd4\xda\xe0\ \xf6\xf9\xfe\xf2\xf6\xfb\xe8\xed\xf0\xb3\xba\xbc\x4e\x53\x55\x1a\ \x1c\x1a\x0a\x0c\x09\x07\x09\x07\x09\x0a\x08\x05\x07\x07\x04\x07\ \x05\x06\x07\x06\x07\x09\x09\x05\x07\x05\x05\x04\x04\x04\x04\x04\ \x0d\x10\x11\x6e\x72\x77\x9a\xd1\xdf\x1b\xb0\xd7\x31\xbc\xe1\xc6\ \xed\xf7\xef\xf1\xf6\xb6\xc0\xc7\x52\x5e\x64\x31\x34\x38\x18\x10\ \x0a\x0f\x0c\x06\x0f\x0c\x07\x0f\x0c\x07\x0d\x0c\x08\x0c\x0b\x08\ \x0c\x0b\x09\x0e\x0b\x0b\x13\x0e\x0b\x1f\x19\x16\x13\x23\x42\x3b\ \x4d\x65\xce\xd5\xd9\xf0\xf3\xf7\xdc\xe3\xe6\xa5\xb0\xb6\x42\x42\ \x44\x1b\x0d\x06\x12\x11\x16\x05\x0b\x11\x04\x0b\x1a\x04\x0a\x12\ \x05\x0b\x13\x06\x0b\x13\x04\x0c\x18\x07\x0e\x20\x05\x0d\x22\x09\ \x12\x29\x0c\x15\x2e\x0b\x13\x30\x0e\x13\x30\x0d\x13\x31\x0d\x16\ \x36\x0a\x16\x31\x07\x14\x2c\x10\x2f\x65\x12\x45\x99\x13\x46\x9c\ \x14\x4c\xa5\x10\x4d\xa6\x2f\x5c\x9f\xc9\xd2\xdd\xe3\xe9\xed\xd3\ \xdb\xe1\x7b\x85\x98\x3d\x47\x97\x65\x64\x5c\x67\x60\x20\x00\x00\ \x00\x45\x4f\x52\x4a\x55\x5b\x51\x5a\x5a\x4e\x59\x59\x51\x5c\x5f\ \x48\x56\x5a\x54\x60\x5e\x46\x54\x50\x45\x53\x4f\x45\x5b\x5d\x46\ \x5e\x62\x42\x55\x58\x52\x60\x68\x4e\x56\x5c\x4e\x56\x61\x69\x6e\ \x6f\x7e\x88\x87\x82\x8c\x90\x7e\x8d\x93\x7a\x88\x8d\x7e\x88\x8e\ \x7e\x85\x88\x7f\x89\x8b\x85\x8a\x89\x83\x88\x88\x80\x88\x86\x71\ \x78\x77\x69\x76\x7a\x58\x63\x6b\x4b\x62\x6f\x54\x64\x6f\x55\x6d\ \x7a\x4f\x6c\x78\x4f\x64\x6f\x48\x5c\x66\x40\x57\x5b\x43\x58\x5b\ \x46\x60\x63\x3c\x54\x55\x38\x4a\x49\x2e\x41\x44\x4e\x70\x7e\x53\ \x7a\x88\x53\x76\x84\x4e\x6b\x79\x4a\x60\x6b\x4c\x68\x7a\x50\x76\ \x8a\x54\x79\x8d\x51\x70\x81\x4b\x68\x75\x50\x69\x75\x4c\x63\x6d\ \x4e\x62\x6d\x4f\x68\x77\x41\x65\x70\x39\x59\x5e\x34\x50\x53\x25\ \x3e\x3a\x26\x3d\x3d\x38\x56\x5b\x4f\x6d\x76\x44\x69\x77\x3f\x5f\ \x67\x57\x75\x83\x58\x74\x84\x8b\x98\xa3\xed\xf0\xf3\xf0\xf4\xf9\ \xd7\xe0\xe3\x8a\x98\x9d\x2d\x50\x80\x2a\x51\x85\x34\x58\x7f\x38\ \x51\x62\x3a\x4f\x50\x32\x50\x63\x2e\x53\x6e\x31\x56\x80\x2c\x56\ \x95\x2d\x54\xa1\x26\x52\xa2\x23\x50\x96\x1b\x42\x6e\x10\x29\x3d\ \x14\x1d\x1d\x7f\x84\x8b\xba\xc6\xcd\xc3\xca\xd2\xf8\xfb\xff\xf2\ \xf5\xfa\xe0\xe6\xe8\x95\x9d\x9f\x34\x39\x38\x14\x17\x12\x0d\x0f\ \x0a\x0d\x0f\x0c\x0a\x0c\x0a\x05\x08\x07\x07\x0a\x0a\x07\x0a\x0a\ \x06\x08\x0a\x08\x09\x0a\x04\x05\x03\x01\x02\x00\x42\x45\x45\x64\ \x6e\x73\xa0\xa3\xa3\xe9\xf5\xf8\xc4\xea\xf4\xe2\xf1\xf8\xeb\xf0\ \xf3\xc1\xcb\xd2\x5d\x65\x69\x29\x19\x14\x14\x0d\x0a\x0c\x0b\x07\ \x0d\x0a\x08\x0d\x0a\x07\x0d\x09\x07\x0c\x08\x07\x0e\x0a\x09\x0f\ \x0b\x08\x13\x0d\x0b\x1a\x12\x0d\x15\x1d\x2d\x0a\x1e\x3a\x9b\xa5\ \xac\xf1\xf6\xfa\xe5\xe9\xee\xb7\xc1\xc8\x52\x55\x58\x18\x0c\x06\ \x0c\x0d\x12\x15\x3d\x6b\x0c\x2b\x56\x04\x11\x24\x04\x0d\x16\x04\ \x0b\x13\x10\x17\x1d\x09\x10\x1f\x0e\x15\x2c\x10\x14\x35\x10\x14\ \x34\x0f\x14\x33\x0f\x13\x35\x11\x16\x39\x12\x17\x3e\x14\x19\x3f\ \x0f\x17\x39\x0a\x21\x4c\x12\x46\x9b\x10\x44\x9a\x11\x45\x9a\x1a\ \x4e\x9d\x1a\x53\x9c\x3a\x61\x90\xcf\xd3\xd3\xe8\xed\xf1\xd4\xdb\ \xe3\x7c\x82\x76\x49\x4d\x33\x38\x42\x39\x00\x00\x00\x3e\x46\x44\ \x49\x4b\x48\x4e\x4d\x4a\x4d\x4e\x4f\x4f\x50\x4e\x45\x4b\x4b\x3d\ \x48\x4b\x37\x42\x42\x39\x43\x42\x3d\x45\x48\x43\x4b\x4e\x4c\x54\ \x58\x55\x58\x57\x46\x56\x5b\x4b\x60\x6d\x4b\x64\x71\x50\x68\x6f\ \x5c\x60\x5f\x74\x75\x6c\x7e\x81\x7b\x80\x86\x82\x82\x89\x84\x7b\ \x80\x79\x74\x76\x6e\x6e\x73\x69\x5b\x68\x66\x4d\x62\x6a\x42\x57\ \x62\x40\x53\x65\x4a\x5b\x68\x4e\x64\x6f\x52\x6d\x76\x4c\x6e\x74\ \x51\x70\x74\x50\x6b\x75\x42\x60\x6c\x43\x63\x6d\x42\x5a\x5e\x40\ \x5a\x60\x35\x4b\x50\x39\x53\x5f\x49\x66\x73\x43\x62\x6d\x53\x75\ \x84\x52\x71\x83\x54\x6d\x77\x4e\x6b\x75\x50\x6d\x78\x51\x72\x84\ \x4f\x6f\x84\x55\x77\x8d\x4c\x69\x77\x50\x6a\x79\x54\x76\x8b\x59\ \x7e\x93\x4d\x77\x88\x3b\x60\x68\x2f\x4c\x4f\x2a\x4f\x50\x2f\x52\ \x55\x44\x65\x72\x4c\x6d\x7b\x47\x6c\x77\x3b\x62\x6e\x58\x76\x83\ \x5f\x79\x89\x87\x94\x9f\xea\xed\xf2\xe5\xec\xef\xaf\xba\xbd\x42\ \x57\x72\x14\x4c\xa0\x12\x4b\xa4\x2a\x4e\x7c\x38\x50\x61\x37\x4d\ \x59\x35\x50\x5d\x30\x51\x67\x30\x54\x6a\x32\x54\x79\x2f\x57\x9a\ \x2b\x58\xa2\x23\x4c\x90\x24\x48\x6f\x27\x53\x8e\x1e\x44\x72\x74\ \x84\x94\xc7\xd2\xd7\xc5\xcc\xd3\xf8\xfb\xff\xf0\xf3\xf8\xd2\xd9\ \xdc\x70\x77\x7a\x26\x2b\x2a\x0d\x12\x08\x0e\x11\x07\x0c\x0f\x0a\ \x0b\x0d\x08\x07\x09\x08\x05\x05\x04\x03\x05\x04\x04\x05\x04\x06\ \x07\x05\x06\x08\x06\x04\x06\x04\x43\x43\x40\xce\xd2\xd4\x5d\x68\ \x6e\xd1\xd3\xd4\xfb\xfc\xff\xf3\xf6\xfb\xea\xef\xf3\xc7\xd1\xd8\ \x68\x73\x78\x23\x14\x0f\x10\x0f\x0d\x0c\x0b\x08\x0e\x0a\x06\x0c\ \x09\x06\x0a\x06\x05\x0a\x08\x06\x0c\x09\x07\x0d\x0b\x09\x11\x0d\ \x0b\x15\x10\x0c\x12\x15\x19\x05\x12\x25\x51\x5b\x63\xe1\xe6\xe9\ \xea\xee\xf1\xc8\xd0\xd5\x6d\x75\x7b\x23\x23\x24\x0b\x0f\x14\x12\ \x47\x85\x12\x4a\x81\x13\x48\x7e\x0f\x2a\x46\x0d\x1c\x2c\x10\x18\ \x25\x11\x16\x2d\x11\x16\x33\x10\x16\x37\x11\x14\x34\x0f\x14\x33\ \x12\x16\x38\x16\x1a\x38\x17\x1a\x3c\x17\x1b\x3d\x17\x1a\x3d\x0f\ \x18\x3d\x18\x46\x98\x15\x4d\xa5\x3a\x56\x79\x58\x5b\x3c\x64\x61\ \x2f\x64\x5b\x1f\x6d\x6b\x23\xc3\xc6\xad\xcd\xd0\xd5\x6e\x73\x77\ \x5c\x5f\x30\x62\x66\x29\x00\x00\x00\x39\x40\x39\x34\x34\x30\x35\ \x33\x32\x3f\x3e\x39\x44\x42\x40\x45\x45\x47\x3e\x42\x44\x3d\x42\ \x48\x42\x4a\x49\x3c\x47\x48\x3f\x46\x47\x4a\x4d\x4c\x3f\x42\x45\ \x53\x58\x56\x59\x5e\x5e\x4e\x5c\x5d\x4c\x56\x56\x3d\x3f\x3f\x44\ \x44\x40\x56\x50\x49\x57\x54\x4a\x65\x63\x59\x64\x63\x5d\x4e\x54\ \x56\x41\x4f\x57\x42\x53\x5d\x3f\x50\x54\x3d\x49\x51\x53\x5e\x69\ \x5c\x67\x71\x5f\x6a\x72\x5c\x73\x7d\x4f\x6d\x79\x4a\x68\x6d\x4d\ \x6d\x71\x48\x67\x6d\x44\x5f\x62\x43\x5c\x63\x42\x5a\x60\x34\x4e\ \x55\x43\x63\x70\x52\x72\x7e\x4e\x73\x83\x4f\x72\x83\x52\x76\x87\ \x4a\x68\x76\x4a\x69\x76\x4c\x6b\x7a\x51\x73\x88\x54\x75\x85\x52\ \x73\x7d\x49\x6c\x73\x4f\x6c\x74\x50\x6f\x77\x4e\x71\x7b\x4e\x71\ \x7f\x44\x69\x76\x32\x49\x50\x33\x5b\x61\x3d\x64\x6f\x4e\x71\x82\ \x52\x76\x86\x51\x74\x83\x4a\x74\x89\x62\x83\x97\x5e\x7b\x8c\x87\ \x97\xa1\xdc\xe0\xe3\xcb\xd2\xd7\x6b\x77\x77\x25\x3d\x54\x14\x49\ \x94\x0f\x4b\xa2\x10\x47\x9a\x28\x4c\x7e\x3a\x4e\x5b\x37\x4d\x5f\ \x2f\x4f\x6d\x2e\x53\x6e\x2f\x56\x76\x30\x56\x86\x2e\x54\x99\x1d\ \x3a\x6e\x11\x1e\x36\x17\x28\x43\x2b\x57\xa0\x7a\x95\xbf\xd2\xd7\ \xd9\x85\x86\x8a\xd6\xd4\xd8\xf8\xfc\xff\xc3\xcc\xce\x4e\x54\x52\ \x35\x3c\x2b\x23\x29\x16\x0e\x14\x09\x0d\x0e\x09\x0c\x0d\x08\x09\ \x0a\x08\x07\x08\x07\x07\x07\x05\x06\x06\x05\x08\x0b\x0d\x07\x0a\ \x0a\x05\x07\x07\x17\x15\x13\x99\x96\x94\xb3\xba\xc0\x5f\x67\x6d\ \xe0\xe2\xe6\xfb\xff\xff\xec\xf1\xf5\xce\xd6\xde\x7a\x86\x8b\x2a\ \x29\x29\x0d\x11\x12\x0b\x0b\x07\x0d\x0a\x07\x0d\x0a\x07\x0b\x09\ \x07\x0c\x09\x08\x0e\x0b\x0a\x0f\x0c\x0a\x12\x0d\x0a\x11\x0e\x0b\ \x10\x11\x15\x0a\x14\x22\x0e\x19\x24\xbe\xc3\xc6\xf3\xf6\xfa\xd8\ \xe0\xe5\x87\x90\x96\x27\x2a\x2a\x11\x14\x1b\x10\x4e\x8f\x12\x50\ \x8c\x16\x49\x7b\x28\x4f\x70\x36\x59\x75\x4a\x60\x82\x26\x35\x6a\ \x14\x1a\x42\x10\x16\x36\x12\x17\x37\x14\x18\x38\x14\x18\x3a\x14\ \x18\x39\x17\x1a\x3b\x18\x1b\x3e\x18\x1b\x3d\x15\x17\x39\x35\x55\ \xa6\x3e\x62\xb4\x5d\x5d\x44\x6e\x60\x0f\x6a\x5f\x0f\x69\x5e\x14\ \x62\x60\x1a\x6a\x6b\x20\x87\x8b\x5b\x6f\x7c\x7a\x7a\x80\x3f\x86\ \x87\x2f\x00\x00\x00\x2e\x32\x2f\x2b\x2e\x2c\x31\x30\x2e\x34\x34\ \x2f\x34\x35\x32\x37\x38\x39\x38\x3a\x39\x3f\x43\x44\x41\x43\x40\ \x36\x3c\x3a\x37\x3d\x3c\x3f\x40\x41\x3f\x42\x44\x47\x45\x43\x4f\ \x4d\x4b\x48\x49\x48\x41\x40\x3e\x3d\x3d\x3a\x31\x30\x2f\x34\x32\ \x30\x30\x30\x2c\x43\x41\x3d\x56\x55\x53\x54\x57\x57\x4d\x56\x5b\ \x43\x50\x59\x3f\x4b\x53\x44\x4c\x57\x52\x5b\x60\x4e\x58\x5d\x4e\ \x62\x6e\x50\x6e\x7f\x52\x76\x88\x51\x6e\x79\x50\x6d\x72\x4a\x6a\ \x76\x3e\x60\x69\x42\x5a\x60\x3f\x55\x5a\x37\x4f\x54\x51\x71\x80\ \x4f\x68\x74\x55\x78\x8d\x58\x77\x86\x56\x71\x7f\x4e\x71\x80\x4f\ \x73\x83\x53\x74\x7f\x53\x71\x7e\x49\x67\x70\x42\x62\x66\x41\x62\ \x61\x44\x66\x6b\x4f\x72\x81\x50\x77\x87\x4e\x74\x83\x41\x62\x6f\ \x2f\x47\x4d\x41\x5d\x69\x51\x76\x8a\x5b\x7c\x8f\x59\x77\x89\x58\ \x7d\x90\x58\x7f\x92\x62\x83\x94\x5c\x79\x8b\x89\x9a\xa1\x92\x9a\ \x9b\x69\x70\x73\x3e\x53\x58\x3e\x5c\x67\x30\x50\x6f\x12\x49\x9a\ \x10\x4a\xa0\x15\x4b\x9a\x2d\x4c\x73\x35\x52\x71\x32\x4f\x66\x30\ \x4f\x67\x2f\x54\x70\x2b\x51\x75\x34\x50\x80\x21\x39\x62\x19\x2f\ \x51\x15\x29\x48\x1c\x2a\x5c\x5b\x73\xa9\xd8\xdd\xde\x48\x4a\x4e\ \x3d\x3a\x3c\x6c\x67\x69\x5d\x5b\x5d\x2a\x31\x28\x4f\x5d\x3f\x4c\ \x61\x58\x3b\x49\x2b\x32\x39\x18\x18\x1e\x0b\x06\x06\x03\x07\x08\ \x06\x06\x07\x06\x05\x07\x07\x09\x0d\x0f\x08\x0b\x0a\x09\x0c\x0f\ \x06\x07\x0a\x3b\x3a\x3a\xea\xef\xf4\x8b\x98\x9f\x66\x69\x6f\xb6\ \xb1\xb2\xf0\xf1\xf5\xe6\xec\xf2\x88\x8e\x92\x1b\x1d\x1f\x0a\x0c\ \x0b\x0c\x0b\x08\x0c\x09\x06\x0c\x09\x07\x0e\x0a\x09\x0d\x0b\x09\ \x0d\x0a\x08\x0d\x0b\x08\x10\x0c\x08\x0f\x0f\x0f\x0d\x14\x25\x09\ \x17\x30\x05\x13\x25\x40\x4a\x5a\xb9\xb7\xb9\xc3\xc0\xc4\x68\x64\ \x67\x0e\x0e\x0d\x14\x19\x21\x0e\x4c\x8d\x10\x50\x8c\x13\x4b\x81\ \x1d\x4b\x73\x46\x6d\x8d\x7b\x94\xc7\x55\x6d\xc0\x47\x5e\xa7\x29\ \x39\x76\x10\x18\x45\x11\x16\x3c\x14\x18\x3c\x15\x19\x3d\x16\x1a\ \x3e\x18\x1a\x3f\x17\x1b\x40\x17\x1a\x3d\x31\x41\x84\x6b\x7f\xd4\ \x6a\x67\x57\x65\x5b\x17\x66\x5b\x11\x63\x5a\x13\x6d\x69\x1f\x76\ \x73\x20\x7a\x7b\x23\x83\x84\x3a\x8a\x8c\x37\x90\x91\x34\x00\x00\ \x00\x2f\x38\x34\x2a\x2c\x2b\x2d\x2f\x2d\x39\x3a\x36\x30\x31\x2e\ \x2e\x2e\x2c\x31\x33\x2f\x31\x31\x30\x30\x31\x2e\x2d\x2e\x2c\x2c\ \x2d\x27\x3f\x3d\x3b\x35\x34\x32\x2e\x2f\x2d\x3c\x3b\x39\x3e\x3d\ \x3d\x40\x3d\x3d\x3d\x3c\x38\x30\x34\x31\x2f\x32\x2f\x28\x2a\x26\ \x31\x31\x2d\x37\x35\x2e\x48\x47\x42\x53\x55\x56\x54\x5b\x61\x47\ \x4d\x53\x40\x47\x4b\x49\x55\x59\x4c\x60\x6f\x57\x7f\x98\x57\x7c\ \x90\x55\x7a\x8b\x4f\x74\x84\x4f\x70\x83\x50\x70\x7e\x3e\x5f\x61\ \x40\x59\x60\x3b\x50\x53\x3d\x5a\x68\x4d\x71\x83\x54\x72\x7e\x50\ \x67\x71\x52\x67\x74\x52\x73\x89\x52\x73\x7e\x4b\x6c\x72\x4d\x68\ \x71\x4c\x6b\x78\x4b\x6b\x78\x44\x65\x6c\x57\x72\x7b\x63\x74\x79\ \x53\x70\x75\x54\x76\x86\x55\x78\x8a\x4b\x73\x84\x35\x56\x5d\x4f\ \x6e\x80\x5d\x80\x94\x66\x85\x95\x62\x81\x8e\x55\x75\x81\x53\x75\ \x7f\x5d\x7d\x8b\x5c\x7a\x8c\x85\x98\xa2\x6d\x76\x79\x3c\x52\x57\ \x3d\x53\x56\x42\x5b\x5b\x3d\x54\x58\x34\x57\x7a\x13\x4e\xa3\x15\ \x4d\xa2\x1d\x52\x99\x30\x4f\x6f\x36\x51\x64\x33\x4c\x59\x2e\x54\ \x79\x34\x51\x86\x38\x4c\x7e\x2d\x44\x68\x15\x2f\x55\x18\x31\x5a\ \x0a\x1b\x3a\x2f\x3c\x5c\xc1\xc7\xd1\x58\x60\x64\x0c\x0f\x10\x0c\ \x0c\x0d\x0d\x0f\x12\x39\x4e\x5f\x4f\x75\x8d\x54\x72\x7c\x67\x79\ \x64\x4e\x63\x4a\x43\x56\x4b\x21\x33\x43\x06\x0b\x13\x06\x08\x07\ \x06\x0a\x0e\x16\x1e\x20\x23\x2c\x30\x08\x0b\x0e\x07\x0a\x0d\x09\ \x0b\x0f\xbd\xbd\xc1\xd4\xdd\xe2\x73\x7e\x83\x2a\x2b\x2c\x33\x2f\ \x2e\x2e\x28\x2c\x1b\x1c\x1e\x0a\x0d\x0c\x0f\x12\x0d\x0d\x0b\x08\ \x0d\x08\x06\x0d\x09\x06\x0e\x0a\x0a\x0d\x0a\x07\x0d\x08\x06\x0e\ \x0d\x12\x0e\x11\x16\x0b\x18\x2f\x09\x18\x31\x09\x18\x31\x0a\x1c\ \x35\x0b\x1c\x37\x21\x26\x31\x26\x21\x1e\x0d\x0d\x0e\x02\x01\x00\ \x1b\x23\x2d\x14\x59\xa1\x11\x51\x8b\x15\x51\x7b\x15\x4a\x73\x29\ \x4c\x71\x5e\x76\xaa\x78\x92\xd2\x8e\xa6\xe3\x61\x79\xcc\x4c\x69\ \xbe\x25\x38\x7a\x11\x19\x46\x16\x1a\x41\x18\x1c\x43\x18\x1c\x3f\ \x16\x19\x3c\x15\x19\x3b\x1a\x23\x53\x60\x78\xdc\x64\x72\xa0\x6d\ \x65\x2d\x66\x5d\x1e\x5d\x5f\x1c\x7a\x7b\x1a\x8b\x8f\x31\x89\x8c\ \x30\x81\x83\x28\x8b\x8a\x28\x8d\x8c\x2c\x00\x00\x00\x2f\x3a\x34\ \x2f\x34\x31\x37\x41\x3a\x39\x40\x3b\x2a\x2c\x25\x24\x21\x1d\x21\ \x1e\x1a\x22\x21\x1e\x28\x25\x24\x26\x24\x22\x29\x2a\x26\x3e\x3b\ \x37\x35\x32\x2e\x28\x26\x28\x3a\x3a\x39\x3f\x3f\x3b\x3f\x3e\x3b\ \x39\x3a\x36\x31\x37\x32\x30\x36\x30\x29\x28\x26\x2d\x2e\x28\x28\ \x2b\x26\x30\x31\x2c\x42\x43\x3e\x60\x64\x64\x4f\x52\x52\x41\x46\ \x47\x38\x44\x42\x40\x57\x5b\x50\x68\x68\x48\x5e\x64\x4c\x68\x71\ \x4f\x72\x7a\x50\x6f\x79\x48\x6a\x6f\x3b\x60\x66\x3c\x54\x56\x32\ \x44\x46\x3c\x55\x5d\x4c\x6b\x78\x4d\x6c\x7b\x4b\x6d\x7c\x4a\x6b\ \x70\x49\x67\x69\x45\x62\x69\x49\x6a\x72\x46\x65\x6f\x4e\x74\x89\ \x51\x77\x8b\x50\x6c\x7b\x5e\x6b\x6e\x4d\x59\x61\x50\x6f\x7f\x54\ \x74\x82\x56\x73\x80\x51\x78\x88\x36\x5b\x63\x51\x78\x89\x56\x7a\ \x88\x54\x73\x7d\x4e\x6c\x76\x4d\x72\x83\x4f\x78\x90\x5e\x87\x9b\ \x65\x87\x9b\x6a\x81\x91\x59\x73\x79\x3d\x54\x58\x3b\x4d\x4c\x32\ \x44\x44\x45\x5c\x5f\x4c\x61\x60\x2b\x46\x6d\x0f\x4a\x9f\x15\x50\ \xa2\x21\x4b\x83\x30\x4d\x6c\x2f\x50\x6f\x38\x51\x8c\x3a\x4d\x85\ \x3c\x4f\x7b\x3c\x4f\x78\x39\x4d\x8e\x3c\x4d\xb6\x39\x4c\xad\x37\ \x4d\x84\x9f\xab\xbc\xd2\xd9\xdc\x36\x3e\x45\x0b\x0f\x12\x0d\x11\ \x16\x1c\x29\x38\x3c\x58\x74\x60\x7c\x8b\x62\x7a\x88\x56\x6c\x84\ \x3f\x52\x6e\x32\x49\x69\x1f\x35\x4f\x0b\x15\x22\x0a\x12\x1c\x07\ \x0c\x10\x0f\x13\x1c\x0b\x0f\x15\x0b\x0e\x15\x0a\x0e\x14\x20\x21\ \x28\xdb\xdd\xe1\xc8\xd2\xd9\x45\x4e\x52\x1b\x1a\x1b\x10\x12\x13\ \x09\x0b\x0b\x10\x12\x0f\x41\x3f\x2a\x40\x32\x1b\x16\x11\x09\x0d\ \x09\x07\x0e\x10\x15\x0d\x12\x1b\x0b\x16\x27\x0b\x18\x2c\x0a\x1b\ \x37\x0b\x1b\x37\x0a\x1a\x37\x0a\x1a\x33\x0a\x1b\x35\x09\x1b\x37\ \x12\x22\x37\x16\x13\x13\x04\x07\x0a\x06\x09\x0b\x2c\x36\x41\x21\ \x55\x93\x19\x56\x8c\x11\x53\x8c\x16\x4a\x88\x16\x27\x49\x93\xac\ \xc7\x96\xa7\xcc\x79\x88\xc4\x6a\x84\xd8\x6c\x88\xdc\x6b\x89\xe0\ \x56\x73\xc8\x27\x3c\x7d\x1a\x21\x49\x1c\x1e\x3f\x1a\x1f\x42\x18\ \x1c\x40\x16\x1b\x3f\x52\x6d\xc0\x7a\x97\xcc\x65\x77\x4c\x58\x5b\ \x18\x61\x65\x15\x6e\x70\x23\x80\x83\x27\x86\x86\x2a\x88\x89\x28\ \x8a\x8c\x29\x9a\x9d\x34\x00\x00\x00\x33\x3f\x38\x31\x39\x34\x2e\ \x30\x2c\x3b\x3c\x37\x26\x27\x23\x26\x24\x23\x21\x20\x1d\x22\x20\ \x1c\x29\x28\x25\x29\x2b\x28\x28\x29\x25\x3b\x3a\x36\x33\x31\x2a\ \x2a\x29\x27\x34\x35\x32\x3e\x3c\x39\x3a\x37\x33\x3a\x3a\x36\x35\ \x38\x34\x2e\x32\x2e\x2a\x2b\x28\x2d\x2f\x2b\x2f\x30\x2d\x31\x34\ \x34\x36\x3c\x3a\x60\x63\x64\x5d\x63\x65\x58\x5c\x5a\x31\x39\x32\ \x52\x59\x5a\x4f\x53\x51\x3b\x42\x42\x46\x5a\x62\x4a\x63\x6d\x4a\ \x67\x71\x47\x68\x6d\x40\x61\x65\x3b\x55\x59\x34\x4a\x51\x42\x63\ \x6f\x4b\x6f\x7c\x4d\x70\x78\x49\x67\x6f\x46\x64\x67\x45\x5d\x60\ \x48\x62\x6c\x4c\x6d\x78\x4f\x70\x7e\x56\x76\x83\x55\x76\x86\x54\ \x70\x86\x55\x6b\x81\x5a\x79\x8f\x58\x80\x93\x58\x7c\x8e\x57\x7a\ \x87\x59\x7e\x90\x4e\x7a\x94\x55\x85\x91\x4f\x76\x84\x4e\x76\x81\ \x52\x7a\x8a\x55\x80\x95\x55\x85\x9b\x5d\x87\x96\x66\x85\x91\x5b\ \x75\x80\x44\x5d\x5e\x33\x46\x43\x34\x44\x42\x35\x43\x42\x3d\x51\ \x53\x4f\x6b\x78\x5e\x7d\x88\x2d\x49\x6e\x12\x4a\x9d\x17\x4d\x9c\ \x26\x47\x71\x36\x50\x8b\x39\x4c\x94\x3e\x50\x88\x3e\x4e\x8c\x3e\ \x4f\x94\x3c\x4f\xa7\x3d\x4e\xa7\x3d\x53\x7d\x46\x5b\x86\x85\x8d\ \xb3\xf7\xf9\xfc\xf9\xff\xff\x8d\x9c\x9d\x3b\x49\x53\x2f\x3c\x4a\ \x32\x41\x4d\x55\x69\x7c\x47\x59\x6b\x44\x5a\x70\x43\x59\x71\x38\ \x4d\x64\x2b\x41\x5f\x44\x70\x9a\x21\x3b\x57\x11\x1c\x29\x06\x0a\ \x0f\x0a\x0f\x16\x0d\x12\x1c\x0b\x0f\x17\x0c\x11\x1a\x41\x42\x49\ \xea\xed\xf0\xde\xe6\xea\x8b\x94\x97\x4a\x56\x59\x39\x45\x4a\x2f\ \x36\x39\x4b\x46\x30\x60\x51\x29\x43\x43\x22\x17\x2c\x48\x1b\x47\ \x85\x11\x31\x62\x0b\x23\x4d\x0b\x1e\x3a\x14\x24\x3d\x23\x35\x4b\ \x37\x50\x63\x2b\x3d\x4e\x2f\x42\x48\x43\x63\x79\x42\x5c\x6c\xa5\ \xad\xaf\x7d\x88\x8a\x5a\x66\x6a\x31\x3b\x47\x25\x58\x9c\x1f\x5c\ \xa7\x0c\x5a\xad\x08\x55\xad\x33\x5c\x8b\x71\x70\x6e\x6c\x72\x89\ \x44\x53\x89\x5f\x78\xbe\x79\x95\xe2\x79\x93\xdf\x72\x8f\xe0\x77\ \x93\xeb\x5b\x77\xca\x33\x44\x82\x22\x29\x58\x1c\x20\x46\x1a\x1e\ \x45\x3a\x45\x77\x63\x73\xa7\x64\x70\x5c\x69\x71\x30\x60\x64\x1f\ \x6f\x73\x23\x7e\x81\x24\x7f\x83\x28\x82\x83\x20\x8e\x8e\x2d\x6e\ \x6c\x23\x00\x00\x00\x35\x43\x3b\x31\x3a\x35\x34\x3d\x39\x39\x38\ \x35\x27\x25\x21\x24\x24\x20\x22\x21\x1d\x22\x23\x1f\x29\x25\x23\ \x29\x2c\x28\x28\x2a\x26\x3a\x38\x33\x2f\x2e\x29\x27\x27\x24\x35\ \x37\x33\x3e\x3d\x39\x36\x37\x32\x33\x36\x30\x31\x38\x31\x30\x33\ \x2f\x2b\x2b\x29\x2b\x2f\x29\x2e\x31\x2d\x34\x35\x2f\x36\x3a\x34\ \x4f\x52\x50\x54\x56\x55\x48\x4b\x45\x2c\x2e\x27\x4d\x51\x4e\x52\ \x52\x4a\x2e\x32\x33\x50\x5d\x67\x56\x6c\x79\x61\x7e\x8f\x62\x7f\ \x91\x4b\x6c\x78\x39\x54\x5a\x44\x62\x6c\x50\x74\x7e\x51\x76\x7e\ \x4a\x68\x71\x48\x60\x6d\x47\x61\x6f\x42\x60\x6b\x46\x63\x6e\x49\ \x61\x6a\x4d\x65\x6c\x51\x6e\x7a\x57\x77\x8a\x5c\x7f\x91\x5a\x82\ \x92\x57\x7e\x8b\x53\x7a\x83\x51\x72\x7b\x58\x72\x7a\x60\x7d\x8a\ \x59\x7d\x83\x53\x79\x80\x50\x73\x77\x4f\x72\x75\x4e\x6c\x72\x4f\ \x69\x6e\x4e\x69\x6c\x4a\x5d\x5c\x57\x6c\x76\x59\x71\x7f\x41\x57\ \x5c\x36\x49\x47\x33\x42\x3e\x3a\x47\x45\x42\x53\x52\x48\x58\x57\ \x42\x4e\x45\x32\x37\x2f\x1d\x32\x57\x11\x48\x9a\x18\x4c\x98\x27\ \x4f\x93\x3b\x53\x96\x40\x53\xa6\x41\x50\x95\x43\x57\xa5\x41\x55\ \x9d\x38\x50\x7b\x41\x59\x92\x43\x54\x83\x67\x69\x6d\xdd\xde\xe1\ \xf1\xf6\xfa\x78\x80\x81\x3f\x4f\x5f\x27\x33\x3d\x45\x59\x68\x59\ \x71\x84\x22\x2e\x36\x3c\x50\x5e\x52\x6b\x82\x50\x66\x7a\x36\x54\ \x73\x3f\x67\x96\x24\x41\x68\x24\x3b\x5d\x0a\x12\x1f\x0f\x18\x22\ \x19\x2c\x47\x12\x20\x33\x0d\x15\x25\x0e\x14\x1b\x69\x6b\x6e\xe8\ \xec\xf0\xf9\xfd\xff\xf5\xfb\xff\xba\xc5\xcc\x3f\x43\x47\x4d\x4c\ \x30\x52\x67\x25\x1a\x28\x20\x23\x56\x9d\x23\x5c\xaf\x21\x5c\xb1\ \x26\x56\x99\x38\x51\x6c\x52\x6e\x7d\x5f\x82\x94\x50\x6c\x83\x48\ \x63\x77\x4f\x6f\x7b\x64\x8a\x99\x5b\x7b\x88\xa0\xa7\xaa\xf3\xf8\ \xfc\x93\x9d\xa3\x44\x4f\x57\x23\x5f\xab\x22\x60\xaf\x20\x5b\xa9\ \x18\x59\xad\x27\x5c\x9d\x50\x55\x3d\x6c\x62\x36\x79\x74\x67\x80\ \x90\xad\x8a\xa3\xe4\x86\x9e\xe6\x81\x9a\xe5\x82\x9a\xe3\x84\x9c\ \xea\x7c\x97\xe3\x5a\x71\xb7\x3b\x49\x7f\x24\x2c\x54\x1f\x22\x3d\ \x21\x22\x1b\x4a\x4f\x1b\x71\x79\x2b\x78\x7e\x2a\x72\x76\x23\x7d\ \x7e\x23\x7d\x7f\x27\x71\x71\x2d\x64\x64\x28\x68\x6a\x29\x00\x00\ \x00\x3a\x48\x42\x31\x38\x32\x31\x3a\x36\x38\x3c\x36\x28\x28\x24\ \x25\x27\x1f\x25\x27\x22\x26\x24\x20\x27\x25\x20\x2a\x2a\x27\x2a\ \x2b\x26\x36\x34\x31\x2e\x2c\x2b\x28\x2b\x26\x32\x36\x31\x3c\x3e\ \x39\x36\x38\x33\x34\x37\x31\x32\x38\x32\x33\x34\x32\x2d\x2d\x2a\ \x2c\x2f\x2a\x2e\x30\x2e\x29\x2b\x26\x29\x2c\x27\x2d\x2e\x27\x36\ \x36\x33\x36\x3b\x37\x2c\x34\x2d\x3a\x41\x3c\x3e\x3f\x36\x3b\x43\ \x42\x65\x70\x76\x72\x80\x82\x77\x7f\x7b\x7e\x85\x7f\x76\x8a\x8f\ \x44\x5b\x62\x5e\x74\x7f\x5c\x7d\x8c\x56\x77\x88\x52\x6e\x87\x4d\ \x60\x78\x4f\x63\x75\x4f\x70\x82\x51\x71\x83\x56\x6d\x7b\x55\x6f\ \x80\x58\x70\x7d\x5a\x76\x83\x57\x7b\x8a\x57\x7f\x92\x52\x70\x7e\ \x47\x5b\x5f\x32\x39\x33\x33\x35\x30\x39\x3f\x3c\x37\x3e\x39\x36\ \x3d\x3a\x34\x3c\x33\x31\x38\x32\x30\x34\x30\x38\x43\x41\x3e\x49\ \x4a\x40\x4c\x4e\x50\x61\x67\x54\x67\x6f\x43\x50\x52\x37\x4a\x45\ \x32\x3f\x39\x35\x3f\x3d\x30\x32\x2e\x2c\x2d\x28\x2d\x2f\x2b\x27\ \x28\x24\x25\x28\x22\x20\x39\x5b\x13\x4c\x9a\x1a\x51\xa0\x28\x51\ \x9a\x3e\x55\x95\x42\x59\x9f\x44\x58\xa5\x4d\x5f\x9d\x3b\x56\x97\ \x2c\x56\xa3\x38\x49\x58\x55\x4c\x3b\xc3\xc2\xc1\xea\xef\xf2\x4e\ \x5b\x5f\x3d\x4e\x5a\x3a\x4b\x57\x51\x67\x76\x50\x64\x73\x35\x46\ \x55\x45\x5b\x6c\x55\x6a\x7c\x2d\x40\x53\x32\x49\x64\x28\x43\x69\ \x29\x49\x74\x26\x43\x65\x0c\x13\x20\x0d\x14\x1c\x21\x35\x54\x24\ \x3d\x61\x1d\x34\x55\x16\x29\x41\x1a\x25\x35\x90\x92\x95\xed\xf0\ \xf3\xeb\xf0\xf4\xbd\xc6\xcb\x47\x4e\x4c\x57\x66\x2b\x3f\x5c\x1d\ \x15\x38\x5c\x23\x5b\xa9\x21\x5b\xad\x27\x59\xa0\x3b\x59\x78\x5a\ \x76\x87\x5d\x76\x84\x5a\x6c\x73\x50\x66\x73\x47\x5c\x65\x4b\x5a\ \x60\x49\x56\x58\x45\x4b\x4d\x59\x61\x66\xdb\xe0\xe4\xca\xd6\xda\ \x9d\xa7\xa8\x3f\x69\x9d\x21\x5e\xb2\x22\x5b\xa8\x24\x5d\xac\x2a\ \x63\xb1\x3b\x64\x8f\x59\x60\x40\x66\x5e\x28\x83\x81\x61\x9d\xa4\ \xad\xaf\xc4\xf0\xa7\xbc\xeb\x90\xa8\xe4\x8c\x9e\xce\x95\xa7\xcd\ \x8d\x9f\xc9\x8a\x9c\xcb\x6d\x7f\xb3\x41\x48\x53\x25\x26\x13\x2e\ \x31\x0e\x6d\x75\x1e\x7e\x84\x26\x80\x83\x29\x71\x75\x27\x65\x67\ \x30\x56\x5f\x49\x5c\x5d\x33\x66\x66\x2d\x00\x00\x00\x3a\x47\x43\ \x33\x40\x3a\x34\x3b\x33\x39\x3e\x3a\x2c\x2e\x26\x24\x26\x1f\x26\ \x26\x20\x28\x26\x22\x24\x23\x1e\x29\x2c\x25\x29\x2d\x26\x32\x33\ \x30\x2c\x2b\x28\x2a\x2e\x28\x32\x3c\x38\x36\x3d\x35\x34\x37\x33\ \x31\x35\x30\x34\x3c\x35\x33\x39\x33\x2c\x2d\x28\x2b\x2e\x2a\x2e\ \x32\x2b\x2a\x2c\x28\x2b\x2e\x25\x2a\x2c\x26\x2e\x2e\x2c\x36\x39\ \x38\x36\x3f\x3d\x33\x3a\x37\x2a\x2d\x28\x3a\x42\x42\x52\x55\x56\ \x62\x6a\x67\x58\x63\x61\x47\x54\x53\x6f\x74\x6f\x50\x69\x71\x5d\ \x75\x81\x63\x7a\x86\x5f\x78\x82\x5e\x76\x85\x5e\x74\x84\x55\x6f\ \x85\x53\x70\x83\x4c\x6a\x7a\x4c\x6b\x7a\x53\x78\x87\x50\x73\x7f\ \x55\x7c\x90\x55\x76\x8f\x4c\x69\x78\x45\x5c\x6b\x3a\x48\x4c\x2a\ \x31\x31\x29\x2d\x2c\x28\x2a\x28\x2a\x2d\x28\x30\x33\x31\x30\x38\ \x33\x2f\x39\x34\x2d\x33\x31\x36\x3a\x38\x37\x3c\x3a\x32\x36\x31\ \x37\x39\x35\x35\x37\x33\x2b\x2a\x27\x32\x41\x3c\x2f\x3d\x3d\x2f\ \x36\x33\x2c\x2c\x28\x2c\x2e\x28\x30\x34\x31\x2c\x2d\x2b\x29\x2c\ \x26\x2b\x2e\x29\x23\x3d\x5e\x15\x4a\x9b\x17\x50\x9f\x27\x52\x94\ \x33\x5c\xa3\x45\x5e\xae\x49\x59\xb0\x3f\x50\x94\x29\x58\x9f\x43\ \x4c\x52\x47\x37\x1f\xa6\xa1\x9b\xd9\xe1\xe2\x68\x79\x7d\x48\x5b\ \x66\x46\x58\x61\x4f\x62\x6d\x49\x5c\x69\x47\x5b\x6c\x55\x6a\x7a\ \x4e\x65\x73\x38\x51\x67\x2d\x3d\x53\x21\x31\x4e\x2a\x46\x72\x34\ \x4f\x73\x02\x08\x0f\x11\x20\x31\x1a\x31\x51\x33\x4e\x73\x23\x3d\ \x5e\x29\x41\x65\x1f\x38\x59\x33\x48\x64\xc7\xd0\xdb\xee\xf2\xf7\ \xbe\xc8\xce\x6f\x84\x88\x4c\x74\x43\x28\x47\x3c\x20\x52\x9d\x1f\ \x59\xaa\x21\x5b\xac\x2a\x51\x83\x4b\x61\x6d\x50\x61\x63\x4b\x54\ \x58\x4a\x50\x54\x40\x48\x49\x41\x47\x4c\x42\x47\x4b\x44\x4d\x50\ \x4c\x54\x58\x4e\x58\x5f\x94\x98\x9c\xe6\xe8\xeb\xa2\xa7\xa9\x52\ \x57\x5d\x2b\x49\x6f\x1a\x55\xa8\x1b\x55\xa7\x21\x5b\xab\x26\x61\ \xae\x33\x63\x96\x4a\x61\x64\x5f\x5c\x31\x6f\x64\x35\x85\x82\x61\ \xa5\xae\xa4\xa3\xb4\xd0\x93\x9b\x9b\x8d\x8e\x6d\x83\x89\x62\x8f\ \x97\x8c\x81\x87\x75\x6c\x72\x37\x69\x6d\x1f\x61\x67\x0f\x7c\x7e\ \x17\x86\x88\x20\x81\x80\x23\x65\x66\x26\x61\x61\x2f\x5b\x5e\x3a\ \x58\x59\x2f\x63\x65\x2f\x00\x00\x00\x37\x47\x40\x2e\x37\x2e\x31\ \x3a\x35\x36\x3d\x3b\x2b\x2b\x25\x26\x29\x23\x25\x28\x21\x26\x26\ \x22\x28\x26\x23\x2b\x2e\x29\x2e\x33\x2e\x34\x35\x33\x2b\x2e\x26\ \x2c\x33\x2d\x33\x3d\x37\x36\x3d\x39\x35\x3d\x39\x35\x37\x32\x31\ \x35\x30\x32\x36\x2f\x2c\x30\x2b\x2d\x31\x2a\x2c\x30\x29\x2a\x2b\ \x27\x2b\x2e\x27\x2c\x2d\x2a\x2c\x30\x2a\x33\x38\x36\x42\x4e\x4d\ \x34\x3b\x36\x2d\x32\x2f\x3b\x3f\x3f\x40\x46\x43\x53\x5c\x5f\x5e\ \x68\x69\x4a\x56\x58\x5d\x68\x6c\x58\x69\x72\x57\x61\x61\x4d\x51\ \x4d\x48\x52\x55\x4b\x5f\x6e\x50\x7a\x8f\x52\x86\x9a\x57\x86\x9c\ \x62\x8a\xa9\x50\x75\x89\x50\x7e\x92\x58\x84\x9b\x55\x7f\x94\x54\ \x76\x8d\x48\x67\x78\x4f\x6a\x78\x40\x51\x56\x31\x39\x36\x2a\x2d\ \x29\x26\x27\x22\x2d\x35\x2b\x33\x3d\x38\x2f\x35\x31\x32\x37\x32\ \x2b\x2e\x29\x29\x2a\x26\x29\x27\x26\x27\x26\x20\x27\x29\x25\x28\ \x29\x25\x26\x27\x22\x2e\x3a\x32\x32\x45\x43\x2c\x33\x2e\x2d\x31\ \x2d\x2e\x2f\x2d\x2c\x2b\x2a\x2a\x29\x25\x2b\x2e\x27\x2c\x30\x2a\ \x2c\x2e\x28\x25\x3d\x5a\x14\x4f\xa0\x1a\x51\x9e\x23\x56\xa3\x2b\ \x5d\xa8\x2d\x5b\xae\x2c\x4f\x8b\x3f\x49\x54\x39\x56\x83\x47\x3b\ \x27\x81\x7b\x6e\xc7\xcc\xcb\x78\x80\x83\x3d\x4e\x56\x4e\x62\x6b\ \x4f\x5f\x68\x4e\x5f\x69\x43\x55\x62\x57\x6c\x7d\x57\x6c\x80\x49\ \x61\x75\x1c\x28\x3b\x21\x36\x53\x1e\x33\x55\x21\x35\x4f\x2c\x43\ \x61\x18\x25\x3b\x24\x36\x54\x28\x3d\x5e\x1d\x33\x50\x28\x3b\x5c\ \x23\x3d\x5f\x39\x55\x73\x53\x5f\x6e\xde\xe2\xe7\xd9\xe1\xe6\x8d\ \xa0\xb8\x26\x5c\x98\x2b\x51\x64\x23\x57\x9b\x1f\x5a\xa9\x1e\x55\ \xa1\x28\x42\x65\x40\x48\x4b\x3c\x41\x41\x3e\x4b\x55\x4f\x55\x56\ \x4a\x51\x55\x44\x4a\x52\x48\x50\x52\x49\x50\x54\x4c\x53\x52\x44\ \x4a\x4b\x4c\x4e\x51\x81\x81\x81\xaa\xb2\xb6\x4e\x52\x55\x43\x48\ \x49\x34\x48\x61\x1e\x56\xa1\x1d\x58\xab\x21\x59\xa8\x23\x5f\xab\ \x25\x61\xad\x2e\x63\xa0\x3c\x62\x87\x4c\x63\x60\x6d\x73\x31\x77\ \x76\x32\x7b\x7d\x3a\x62\x69\x10\x67\x6f\x20\x72\x78\x2c\x74\x79\ \x24\x68\x6f\x0e\x6d\x75\x15\x78\x7c\x15\x87\x88\x1e\x8b\x8c\x1d\ \x76\x73\x1e\x60\x5c\x2b\x64\x61\x2e\x66\x63\x30\x62\x61\x2f\x5e\ \x62\x2d\x00\x00\x00\x32\x41\x3b\x2e\x31\x2a\x35\x40\x3a\x38\x40\ \x38\x28\x2b\x25\x27\x27\x21\x26\x27\x22\x28\x29\x24\x28\x29\x25\ \x2c\x2e\x28\x30\x34\x2f\x36\x37\x33\x2d\x2e\x28\x2d\x33\x2f\x2f\ \x39\x31\x33\x3c\x35\x34\x39\x33\x35\x3a\x35\x34\x3b\x37\x31\x34\ \x2f\x2b\x2e\x28\x2f\x33\x2f\x2f\x34\x2e\x2c\x30\x2b\x2d\x35\x2b\ \x2d\x2e\x28\x2d\x32\x2d\x33\x3d\x39\x45\x4f\x4a\x37\x41\x3b\x39\ \x3f\x3c\x3f\x44\x41\x40\x46\x44\x51\x58\x57\x5f\x67\x67\x4f\x54\ \x54\x41\x47\x46\x3c\x48\x44\x35\x3c\x3b\x2a\x30\x2d\x47\x6d\x7e\ \x54\x83\x95\x58\x92\xa4\x5d\x94\xb2\x57\x7c\x8c\x63\x77\x7f\x55\ \x82\x9a\x55\x7f\x95\x52\x72\x80\x47\x55\x5d\x4d\x5e\x6a\x55\x76\ \x7d\x4d\x63\x66\x3b\x4a\x4a\x31\x39\x35\x2b\x2e\x2d\x29\x2c\x27\ \x2e\x33\x2d\x2f\x33\x2f\x2a\x2b\x25\x34\x39\x35\x30\x36\x32\x2c\ \x2e\x2a\x27\x27\x21\x2a\x27\x22\x28\x28\x22\x2b\x2a\x25\x28\x29\ \x26\x27\x29\x23\x32\x3c\x36\x2c\x2d\x29\x30\x30\x2f\x2c\x30\x29\ \x28\x28\x23\x29\x2a\x25\x2c\x2f\x2a\x2d\x33\x2e\x2e\x36\x30\x2c\ \x2e\x27\x26\x37\x4d\x16\x4d\x9e\x1b\x51\xa0\x21\x59\xa4\x27\x61\ \xa9\x24\x5e\xab\x34\x4e\x71\x3a\x4a\x60\x48\x46\x47\x64\x55\x44\ \x98\x96\x91\x41\x44\x42\x2e\x3a\x4b\x41\x53\x61\x50\x63\x6f\x56\ \x67\x73\x4c\x5e\x6e\x52\x65\x73\x4c\x62\x79\x35\x47\x57\x26\x3f\ \x57\x2b\x49\x6c\x1f\x34\x53\x1d\x31\x4e\x25\x3d\x5e\x23\x3f\x5f\ \x22\x3e\x5f\x26\x3f\x5d\x18\x30\x4a\x25\x3b\x59\x3e\x59\x73\x4e\ \x67\x7f\x34\x4f\x70\x62\x6a\x78\xdb\xe0\xe4\x4e\x61\x81\x1e\x52\ \xa5\x2b\x5e\x99\x28\x58\x91\x22\x5d\xab\x21\x57\xa3\x20\x3a\x5f\ \x43\x51\x5e\x43\x50\x57\x4c\x59\x5d\x40\x48\x4e\x4e\x56\x59\x46\ \x4e\x54\x48\x4e\x54\x44\x48\x4a\x40\x41\x41\x41\x44\x42\x40\x41\ \x40\x4b\x4c\x4f\x6b\x6c\x71\x4b\x50\x54\x4d\x55\x59\x50\x5b\x5c\ \x3b\x4e\x65\x1f\x50\x93\x1a\x54\xa6\x1e\x5a\xa8\x21\x60\xb0\x1f\ \x5e\xac\x25\x60\xb0\x2d\x65\xac\x4b\x69\x72\x5b\x6e\x46\x73\x7d\ \x29\x63\x6e\x1d\x56\x62\x0f\x64\x6f\x06\x66\x6f\x08\x65\x6f\x08\ \x65\x70\x13\x72\x78\x09\x80\x81\x17\x89\x87\x1a\x70\x6f\x1c\x5f\ \x5d\x25\x5b\x58\x28\x57\x58\x2f\x51\x55\x2e\x66\x68\x30\x00\x00\ \x00\x31\x3d\x38\x32\x38\x33\x2f\x35\x2d\x34\x38\x33\x2b\x2b\x27\ \x26\x26\x22\x29\x2b\x26\x29\x2a\x25\x2a\x2d\x29\x2f\x33\x2f\x32\ \x3c\x36\x34\x38\x32\x2c\x2e\x28\x2d\x38\x32\x36\x47\x41\x37\x42\ \x3c\x37\x3d\x3a\x35\x38\x33\x36\x3e\x38\x35\x3b\x36\x2d\x31\x2c\ \x2e\x32\x2d\x30\x34\x2c\x2d\x31\x2b\x2d\x31\x2b\x2f\x33\x2e\x30\ \x33\x31\x2f\x36\x30\x37\x3e\x37\x38\x3c\x39\x3b\x40\x3d\x3e\x43\ \x3e\x42\x49\x45\x5c\x65\x61\x60\x69\x67\x49\x52\x54\x3a\x48\x46\ \x38\x48\x47\x2d\x3a\x39\x34\x48\x4e\x4a\x69\x72\x46\x66\x6e\x53\ \x7e\x91\x5c\x81\x8a\x4a\x67\x6b\x41\x64\x75\x56\x76\x8b\x50\x6d\ \x7a\x40\x4f\x56\x47\x59\x68\x4a\x57\x65\x49\x61\x64\x46\x63\x6a\ \x44\x56\x5e\x2f\x35\x30\x2b\x2e\x29\x28\x28\x24\x2b\x2e\x27\x32\ \x39\x34\x33\x39\x37\x34\x3e\x38\x2f\x33\x2f\x26\x25\x21\x27\x26\ \x22\x28\x26\x22\x29\x29\x23\x2a\x2d\x27\x2b\x2d\x28\x28\x2a\x24\ \x29\x2a\x27\x32\x34\x34\x30\x33\x2f\x2f\x32\x2d\x2b\x2e\x29\x2a\ \x2a\x26\x30\x35\x30\x31\x37\x32\x2b\x2f\x28\x27\x2c\x27\x25\x29\ \x21\x28\x3c\x4e\x26\x5a\xa2\x1d\x54\xa1\x22\x59\xa6\x22\x5c\xaa\ \x1d\x54\xa2\x39\x46\x57\x43\x44\x42\x4d\x41\x2c\x4a\x3b\x27\x4b\ \x3c\x29\x39\x40\x4a\x2a\x3b\x55\x34\x45\x5f\x49\x5b\x6f\x50\x66\ \x79\x3b\x4b\x5a\x57\x74\x8e\x39\x52\x66\x43\x5f\x79\x4a\x73\x95\ \x3f\x63\x87\x1c\x34\x50\x30\x4f\x72\x48\x68\x86\x58\x79\x97\x49\ \x67\x83\x4d\x69\x81\x3f\x5b\x74\x47\x61\x7e\x49\x63\x7c\x2e\x43\ \x5b\x1c\x2f\x42\x7f\x83\x8b\x3c\x4e\x62\x1c\x48\x89\x20\x58\xa9\ \x26\x5d\xa6\x23\x57\xa5\x20\x58\xa7\x1d\x3e\x6c\x3e\x4d\x55\x42\ \x56\x61\x43\x50\x57\x47\x50\x56\x56\x60\x67\x44\x4a\x4a\x40\x42\ \x3f\x3d\x3c\x3b\x3f\x3b\x39\x43\x46\x48\x43\x47\x49\x46\x4d\x4f\ \x4b\x52\x54\x4f\x59\x5b\x4e\x57\x5c\x4e\x56\x56\x49\x53\x51\x35\ \x42\x4f\x21\x4d\x87\x1c\x5a\xa9\x23\x61\xb1\x24\x63\xb1\x21\x5f\ \xaf\x26\x66\xb8\x24\x60\xb5\x2d\x62\xa7\x69\x75\x33\x73\x7c\x26\ \x61\x6c\x12\x66\x72\x0d\x6c\x7a\x19\x66\x72\x0b\x62\x6b\x16\x69\ \x71\x13\x73\x79\x0d\x7c\x7e\x13\x72\x73\x1e\x64\x63\x20\x65\x60\ \x1f\x5f\x5f\x29\x57\x5b\x31\x58\x59\x2f\x00\x00\x00\x2d\x34\x2d\ \x30\x3a\x35\x34\x3e\x39\x38\x3e\x3b\x2c\x2c\x28\x28\x29\x25\x29\ \x2d\x27\x2b\x2d\x28\x2b\x2d\x28\x30\x37\x2f\x32\x3a\x30\x35\x39\ \x33\x2e\x31\x2c\x30\x3b\x37\x36\x47\x42\x35\x3e\x37\x36\x3d\x37\ \x38\x3d\x37\x35\x3c\x37\x35\x3b\x35\x30\x34\x32\x30\x35\x31\x30\ \x35\x2e\x2b\x2e\x27\x2c\x2f\x27\x30\x37\x31\x30\x36\x32\x2f\x33\ \x2f\x2b\x2d\x28\x34\x37\x34\x30\x33\x2e\x34\x37\x30\x38\x3f\x38\ \x43\x4c\x44\x44\x52\x52\x47\x53\x5b\x3d\x4c\x4f\x37\x4d\x4d\x34\ \x4c\x4b\x35\x49\x4a\x49\x62\x6b\x4a\x68\x76\x4f\x6e\x75\x3c\x4d\ \x4e\x36\x49\x4b\x37\x40\x3f\x34\x3c\x36\x39\x51\x4f\x3b\x47\x49\ \x44\x5b\x5b\x4c\x62\x68\x47\x61\x69\x53\x6e\x78\x42\x50\x50\x33\ \x3a\x35\x2c\x2e\x2b\x28\x2b\x26\x30\x33\x2e\x39\x46\x3e\x39\x40\ \x3d\x34\x3b\x35\x2d\x32\x2d\x29\x2a\x23\x27\x28\x21\x2a\x29\x22\ \x2a\x27\x22\x2b\x2b\x26\x2e\x34\x2e\x2d\x34\x31\x2b\x2c\x27\x3b\ \x40\x3f\x32\x33\x30\x2d\x30\x2a\x2d\x30\x2a\x2b\x2c\x29\x30\x37\ \x30\x31\x3a\x36\x2d\x33\x30\x29\x2b\x26\x27\x2e\x26\x40\x59\x5e\ \x56\x8b\xaf\x2a\x5c\x9a\x16\x4b\x9c\x18\x52\xa3\x1a\x58\xa8\x23\ \x57\xa2\x35\x4b\x63\x4a\x41\x2f\x4a\x3d\x28\x4b\x3e\x2a\x44\x40\ \x38\x36\x3e\x46\x24\x37\x53\x35\x4c\x69\x4c\x5f\x72\x31\x45\x56\ \x4c\x64\x7b\x4e\x6a\x7f\x44\x5f\x77\x4e\x6c\x87\x48\x64\x81\x3b\ \x59\x76\x48\x69\x89\x4d\x6b\x89\x5a\x79\x98\x3f\x5b\x73\x46\x62\ \x7f\x3d\x59\x78\x38\x4f\x73\x2c\x3c\x57\x1f\x2f\x3e\x1b\x2c\x3d\ \x1c\x2e\x43\x23\x35\x4d\x21\x4d\x8b\x22\x57\xa8\x22\x56\xa4\x26\ \x5b\xa8\x24\x5e\xac\x1c\x43\x7d\x1f\x2b\x3a\x37\x41\x41\x3e\x4c\ \x52\x48\x4b\x4b\x41\x47\x4b\x38\x35\x30\x3b\x3a\x38\x41\x43\x43\ \x45\x43\x45\x4a\x4e\x4d\x4b\x50\x54\x49\x4e\x50\x4c\x52\x53\x4d\ \x54\x55\x4c\x53\x56\x44\x49\x4b\x3c\x41\x3f\x43\x4b\x49\x41\x4c\ \x56\x31\x57\x86\x20\x5e\xac\x23\x64\xb5\x26\x6b\xba\x24\x66\xb7\ \x26\x65\xb3\x29\x65\xb2\x42\x6b\x87\x5b\x6e\x41\x45\x58\x46\x57\ \x64\x42\x5a\x64\x33\x52\x61\x32\x43\x52\x97\x47\x5d\x82\x57\x65\ \x48\x62\x63\x20\x65\x64\x1b\x62\x5d\x15\x60\x5c\x12\x61\x5f\x1e\ \x6e\x73\x34\x6c\x6f\x3a\x00\x00\x00\x2b\x2e\x2e\x3c\x49\x46\x34\ \x3f\x36\x37\x42\x3c\x2f\x32\x2b\x2c\x2f\x29\x2e\x31\x2a\x2b\x2c\ \x27\x2c\x2e\x27\x2e\x35\x2e\x31\x39\x31\x35\x3a\x33\x2d\x31\x2b\ \x31\x3b\x36\x39\x4a\x47\x3b\x47\x45\x38\x40\x3d\x3a\x3f\x3a\x37\ \x3c\x37\x36\x3e\x37\x34\x38\x36\x32\x35\x31\x30\x34\x2d\x2e\x30\ \x29\x2d\x30\x2a\x30\x36\x31\x37\x40\x3d\x3c\x43\x40\x30\x32\x2c\ \x30\x33\x2f\x30\x34\x2f\x30\x34\x2f\x34\x3f\x39\x34\x44\x42\x48\ \x5d\x62\x50\x61\x69\x48\x5a\x62\x35\x47\x45\x36\x50\x4f\x39\x4f\ \x51\x3a\x47\x4d\x3a\x43\x47\x3c\x55\x52\x35\x43\x41\x30\x3b\x39\ \x2b\x30\x2e\x2c\x36\x33\x3a\x57\x55\x3d\x59\x59\x3c\x57\x53\x4c\ \x65\x69\x51\x72\x7f\x58\x73\x81\x3c\x49\x48\x31\x38\x32\x2d\x30\ \x2b\x29\x29\x25\x30\x33\x2d\x37\x41\x3b\x39\x43\x40\x37\x3f\x3a\ \x2f\x36\x2e\x2e\x2f\x2a\x2b\x2a\x25\x2b\x2b\x27\x2b\x29\x25\x29\ \x26\x22\x2e\x33\x29\x32\x39\x34\x2d\x2e\x28\x39\x3f\x3d\x34\x38\ \x35\x31\x32\x30\x32\x35\x31\x2f\x30\x2e\x31\x3a\x34\x32\x40\x39\ \x30\x37\x34\x2a\x2f\x2a\x27\x2c\x26\x55\x79\x87\x61\x8f\xa5\x47\ \x6e\x8a\x25\x51\x8d\x15\x4e\xa3\x17\x52\xa5\x1d\x59\xac\x26\x59\ \x9e\x3f\x43\x46\x4a\x3c\x27\x4b\x40\x2e\x47\x3f\x2d\x3e\x3d\x3b\ \x2a\x38\x4d\x20\x3a\x5f\x28\x39\x4e\x29\x3a\x47\x4f\x64\x78\x4f\ \x66\x7a\x4a\x61\x75\x50\x67\x7e\x3d\x55\x6a\x4d\x67\x7e\x4e\x68\ \x82\x50\x6b\x86\x4c\x6e\x8d\x40\x63\x85\x3f\x53\x6f\x36\x50\x75\ \x29\x45\x69\x19\x2a\x3f\x1c\x2d\x3d\x1e\x30\x46\x1a\x2e\x42\x1c\ \x37\x56\x21\x54\x9b\x21\x56\xa5\x23\x5a\xab\x25\x5a\xa5\x27\x60\ \xae\x1e\x50\x93\x12\x21\x36\x39\x44\x46\x37\x3f\x43\x42\x49\x48\ \x2e\x2d\x2f\x30\x2c\x26\x3c\x3b\x35\x46\x47\x46\x49\x47\x47\x4e\ \x4e\x50\x4e\x55\x5b\x4b\x52\x58\x4e\x54\x56\x4e\x55\x58\x49\x4f\ \x52\x40\x47\x47\x41\x48\x46\x4c\x54\x54\x55\x61\x67\x53\x5f\x67\ \x34\x50\x72\x26\x63\xad\x28\x69\xba\x27\x6a\xb8\x24\x65\xb4\x25\ \x5f\xae\x27\x5f\xad\x2c\x5c\xa2\x2f\x49\xbb\x3d\x42\xc7\x33\x3d\ \xb9\x41\x4e\xba\x3d\x49\xdf\x35\x4a\xd9\x38\x48\xc7\x3f\x47\xaa\ \x46\x4c\x94\x4e\x58\x6f\x6d\x72\x38\x6a\x6d\x19\x70\x77\x27\x67\ \x6b\x26\x00\x00\x00\x39\x41\x3f\x3c\x43\x3c\x36\x3f\x3a\x36\x42\ \x39\x2e\x32\x2a\x2c\x2f\x29\x2b\x2d\x25\x2b\x30\x29\x2c\x2c\x25\ \x2e\x33\x2c\x33\x3e\x34\x33\x3d\x35\x33\x38\x31\x33\x3f\x39\x39\ \x4d\x4b\x3a\x46\x42\x37\x41\x3c\x38\x3e\x38\x35\x3d\x36\x38\x3f\ \x39\x33\x37\x32\x32\x36\x2f\x2e\x33\x2b\x2d\x32\x2b\x2d\x30\x27\ \x30\x37\x31\x3f\x48\x44\x42\x49\x42\x33\x3c\x33\x34\x3a\x37\x35\ \x3b\x36\x30\x35\x30\x36\x3d\x3a\x36\x41\x3d\x47\x5a\x60\x55\x6a\ \x6e\x4f\x66\x6b\x40\x60\x65\x41\x61\x63\x3c\x56\x56\x3c\x4d\x4e\ \x38\x44\x46\x3e\x5a\x58\x3d\x55\x53\x36\x3f\x3d\x2e\x2f\x2d\x2b\ \x32\x2d\x37\x52\x4c\x3d\x60\x5d\x41\x5e\x62\x4b\x63\x67\x58\x78\ \x85\x54\x67\x6a\x39\x45\x45\x30\x36\x31\x2c\x30\x2b\x2a\x27\x21\ \x30\x35\x2e\x38\x45\x3f\x39\x44\x41\x39\x42\x3e\x32\x38\x31\x2b\ \x2d\x26\x2b\x2b\x27\x2c\x2e\x27\x2c\x2f\x28\x29\x29\x25\x2b\x2d\ \x25\x2f\x35\x2f\x32\x39\x36\x45\x53\x56\x34\x3a\x34\x2f\x33\x2d\ \x3e\x46\x49\x2c\x2c\x29\x31\x38\x34\x32\x42\x3a\x32\x3c\x39\x2f\ \x35\x32\x2d\x35\x32\x54\x76\x84\x52\x76\x89\x52\x77\x89\x4b\x6d\ \x80\x2d\x51\x81\x14\x53\xa8\x12\x4f\xa4\x21\x5b\xad\x30\x52\x7c\ \x49\x40\x30\x44\x3a\x28\x4b\x42\x2e\x4e\x41\x2f\x45\x42\x3e\x35\ \x3d\x46\x1f\x35\x4d\x3e\x55\x68\x45\x5a\x6a\x2b\x36\x45\x46\x5b\ \x6f\x48\x5c\x70\x53\x6a\x7f\x46\x5b\x6e\x49\x62\x76\x50\x73\x92\ \x57\x83\xad\x28\x3e\x5e\x20\x3e\x5e\x2d\x4b\x77\x2e\x4f\x79\x30\ \x50\x7b\x1f\x37\x4f\x1c\x30\x49\x1c\x33\x4c\x24\x50\x8e\x22\x58\ \xa7\x21\x55\xa3\x22\x58\xa7\x21\x57\xa6\x24\x5b\xaa\x23\x5a\xa6\ \x14\x2e\x56\x32\x40\x44\x47\x57\x5e\x3b\x40\x40\x35\x36\x34\x2d\ \x2a\x23\x3e\x3a\x38\x48\x46\x48\x4d\x4b\x4c\x54\x56\x5a\x4c\x52\ \x55\x4b\x4e\x4f\x4b\x50\x54\x4c\x55\x58\x50\x59\x64\x42\x4e\x52\ \x44\x45\x48\x50\x58\x5a\x56\x60\x63\x51\x59\x62\x46\x4a\x4f\x39\ \x4d\x64\x26\x5d\xa3\x24\x64\xb5\x23\x63\xb4\x22\x5c\xad\x25\x5f\ \xae\x24\x58\xac\x2e\x45\xcd\x39\x37\xe3\x30\x40\xd9\x35\x4f\xd2\ \x3a\x55\xce\x44\x55\xd9\x41\x55\xd9\x42\x4b\xde\x3f\x41\xda\x3f\ \x3c\xcf\x49\x4a\xad\x5e\x63\x64\x68\x6f\x3e\x4d\x54\x2c\x00\x00\ \x00\x3f\x46\x44\x34\x3b\x34\x38\x46\x3f\x38\x40\x39\x30\x34\x2e\ \x2c\x31\x29\x2c\x2e\x26\x2c\x33\x2c\x2d\x30\x2a\x2a\x2d\x26\x31\ \x3b\x34\x35\x3f\x37\x32\x36\x2f\x31\x3b\x32\x39\x4e\x4b\x38\x45\ \x40\x37\x40\x3d\x3b\x41\x3d\x36\x3f\x3d\x37\x3b\x36\x34\x3c\x36\ \x31\x35\x2f\x2d\x32\x2b\x2f\x36\x2d\x2e\x2f\x27\x34\x3b\x36\x52\ \x57\x57\x4a\x50\x49\x36\x3e\x37\x37\x3d\x37\x37\x41\x3b\x35\x3a\ \x36\x3b\x40\x3e\x39\x39\x39\x45\x4f\x53\x51\x66\x6c\x4d\x65\x6f\ \x44\x65\x6a\x40\x59\x59\x3e\x52\x4f\x3c\x49\x47\x36\x46\x42\x3c\ \x53\x52\x38\x44\x41\x36\x39\x39\x28\x2b\x24\x29\x2c\x26\x39\x5a\ \x55\x41\x67\x65\x4a\x71\x75\x4c\x6c\x72\x5b\x79\x85\x50\x65\x6b\ \x42\x52\x57\x2e\x31\x2c\x2b\x2e\x27\x28\x28\x24\x2d\x31\x29\x3b\ \x4e\x48\x3c\x48\x45\x37\x3c\x35\x34\x3a\x35\x2f\x31\x2d\x2b\x2c\ \x2a\x2e\x2f\x27\x2f\x33\x2b\x30\x31\x2f\x32\x37\x33\x36\x3f\x38\ \x35\x3e\x39\x4e\x5f\x61\x3c\x46\x46\x30\x34\x2d\x35\x3d\x35\x2e\ \x31\x2e\x30\x3b\x35\x34\x47\x42\x38\x47\x45\x32\x3a\x37\x36\x4a\ \x4c\x55\x7f\x90\x57\x80\x92\x57\x7d\x8f\x55\x7d\x90\x51\x75\x8a\ \x31\x53\x7e\x14\x4d\xa3\x1d\x50\x97\x3b\x46\x51\x49\x40\x2f\x52\ \x44\x31\x4b\x42\x2c\x4d\x42\x2b\x49\x3f\x2e\x46\x3e\x2e\x47\x45\ \x40\x31\x4b\x69\x2a\x48\x67\x2e\x4a\x66\x4e\x70\x91\x37\x49\x60\ \x3f\x51\x6c\x1d\x2e\x42\x40\x57\x71\x4b\x68\x86\x43\x6d\x9f\x30\ \x46\x65\x3d\x66\x8f\x31\x4d\x72\x14\x21\x39\x21\x35\x55\x20\x34\ \x4e\x1d\x31\x49\x27\x45\x6b\x1c\x56\xa8\x1b\x53\xa6\x1f\x53\xa1\ \x21\x54\xa3\x21\x56\xaa\x1e\x55\xa4\x1f\x5b\xad\x13\x3c\x76\x2a\ \x39\x44\x51\x63\x74\x38\x36\x35\x38\x39\x34\x31\x2e\x28\x44\x41\ \x3d\x4a\x4c\x4c\x4f\x4f\x4f\x53\x59\x5c\x47\x4a\x4e\x4c\x4d\x4d\ \x53\x58\x5d\x55\x61\x6a\x59\x66\x6d\x4a\x59\x5a\x50\x5b\x5a\x5b\ \x64\x67\x5f\x6b\x72\x59\x63\x6d\x4a\x54\x5d\x50\x57\x5a\x3e\x56\ \x67\x2b\x5c\x96\x27\x63\xb2\x23\x60\xb4\x24\x5d\xb0\x24\x5d\xae\ \x2a\x4e\xc5\x2b\x38\xd4\x29\x4e\xc2\x2c\x4c\xca\x2a\x55\xc4\x32\ \x5b\xc4\x3a\x5b\xc9\x4d\x5d\xda\x55\x54\xe2\x42\x43\xdc\x48\x44\ \xdd\x4f\x4d\xdd\x50\x54\xd7\x4f\x58\xd4\x00\x00\x00\x48\x4f\x4e\ \x33\x39\x36\x34\x41\x3c\x39\x47\x42\x32\x38\x31\x2e\x31\x2b\x2e\ \x32\x2b\x2c\x2f\x27\x2c\x32\x2b\x2c\x2f\x2a\x33\x3d\x39\x38\x42\ \x3b\x34\x3c\x37\x2f\x36\x30\x37\x4d\x48\x38\x48\x45\x39\x45\x3d\ \x38\x41\x3c\x36\x43\x3e\x34\x3b\x31\x37\x3d\x38\x32\x39\x33\x2e\ \x33\x2d\x30\x34\x2e\x30\x35\x2c\x35\x3c\x37\x51\x54\x4e\x45\x49\ \x42\x36\x3c\x37\x36\x3c\x36\x38\x41\x3a\x35\x3e\x34\x3a\x3f\x3b\ \x3b\x3b\x39\x42\x4a\x50\x55\x6a\x74\x4b\x64\x66\x40\x5f\x5d\x41\ \x5c\x5d\x40\x5a\x5d\x3d\x4b\x4a\x38\x47\x44\x40\x5e\x5c\x3e\x54\ \x51\x35\x43\x41\x2d\x32\x2d\x27\x28\x23\x31\x44\x3b\x41\x62\x62\ \x51\x75\x7e\x56\x70\x7c\x5b\x7a\x86\x49\x60\x63\x40\x4c\x4d\x2f\ \x32\x2c\x2a\x2d\x27\x29\x2a\x25\x33\x39\x33\x3a\x48\x43\x3d\x4e\ \x49\x38\x3e\x38\x37\x3a\x37\x2d\x2e\x29\x30\x32\x2f\x2f\x35\x2f\ \x2d\x2f\x2a\x2f\x31\x2c\x32\x35\x2e\x33\x38\x34\x38\x3e\x3d\x46\ \x55\x56\x38\x43\x41\x35\x3e\x3c\x37\x3c\x39\x36\x3f\x39\x36\x49\ \x46\x34\x48\x40\x3c\x52\x50\x34\x46\x43\x48\x65\x70\x57\x82\x93\ \x57\x7d\x8d\x51\x74\x83\x4d\x6c\x7c\x4f\x73\x85\x54\x76\x88\x3e\ \x5e\x7d\x1b\x50\x9c\x1c\x53\xa6\x2c\x5a\x99\x3d\x4a\x5b\x4a\x42\ \x35\x4c\x41\x2c\x4b\x40\x2d\x49\x40\x2e\x4f\x43\x2e\x3b\x3a\x37\ \x30\x4f\x70\x3d\x66\x96\x39\x51\x70\x17\x23\x33\x2c\x46\x67\x28\ \x42\x63\x28\x45\x67\x32\x58\x83\x36\x54\x7b\x15\x24\x37\x25\x35\ \x4e\x24\x36\x4f\x1f\x31\x46\x21\x31\x46\x1c\x2b\x42\x2a\x32\x41\ \x28\x57\x9d\x1a\x54\xa4\x1a\x51\xa5\x19\x4d\x9e\x1c\x50\xa1\x1c\ \x51\xa4\x1f\x55\xa5\x1e\x59\xab\x1a\x50\x99\x1e\x32\x4d\x48\x56\ \x57\x43\x49\x50\x39\x3a\x38\x34\x31\x29\x43\x42\x3e\x46\x46\x44\ \x52\x55\x56\x52\x57\x5d\x4c\x50\x54\x50\x55\x57\x56\x5d\x62\x59\ \x63\x6b\x51\x5b\x60\x46\x4d\x4b\x4b\x4d\x4b\x4f\x55\x54\x53\x58\ \x57\x59\x63\x66\x4a\x52\x5a\x45\x4d\x4d\x3e\x55\x54\x3b\x52\x5a\ \x35\x63\x97\x29\x65\xb2\x21\x5d\xae\x26\x63\xb2\x1f\x55\xa5\x21\ \x58\xac\x1e\x57\xaf\x1f\x57\xae\x29\x5d\xb6\x2c\x5e\xb4\x36\x65\ \xb2\x43\x5b\xbe\x44\x45\xe0\x57\x51\xe3\x54\x51\xe4\x4d\x4a\xe3\ \x4d\x4b\xe3\x59\x57\xe3\x00\x00\x00\x54\x5d\x61\x3f\x48\x44\x38\ \x44\x3e\x3a\x44\x3e\x34\x3d\x35\x2d\x31\x2b\x2e\x34\x2e\x2f\x36\ \x2f\x31\x36\x30\x2b\x31\x2a\x33\x3d\x36\x39\x47\x41\x36\x3e\x39\ \x32\x3b\x36\x39\x4b\x4a\x36\x46\x41\x36\x41\x3d\x38\x42\x3d\x34\ \x42\x3b\x35\x3e\x36\x34\x38\x33\x31\x35\x2f\x2f\x37\x30\x35\x38\ \x31\x30\x33\x2e\x34\x39\x37\x3b\x3c\x3b\x36\x3b\x38\x36\x42\x3b\ \x38\x45\x3e\x3a\x48\x40\x34\x3c\x33\x38\x3e\x3a\x36\x39\x36\x38\ \x43\x3f\x59\x6f\x7d\x47\x5d\x5e\x41\x61\x5d\x43\x60\x60\x40\x5d\ \x60\x3c\x4f\x4d\x34\x43\x3c\x40\x5d\x57\x3e\x4f\x4e\x39\x48\x44\ \x2f\x36\x2e\x29\x29\x25\x31\x3d\x3b\x4a\x6d\x74\x53\x76\x7f\x59\ \x72\x7c\x5a\x7b\x86\x55\x73\x81\x43\x52\x52\x30\x35\x30\x2a\x2e\ \x28\x28\x2a\x25\x32\x3c\x34\x3e\x52\x50\x3c\x4b\x47\x38\x40\x3b\ \x3c\x41\x3f\x34\x38\x36\x2e\x32\x2d\x30\x38\x2f\x2e\x34\x2d\x33\ \x37\x33\x31\x35\x2f\x2d\x30\x2b\x3a\x40\x3f\x4e\x61\x69\x3e\x50\ \x50\x3a\x47\x42\x36\x3e\x39\x36\x3f\x39\x3a\x51\x4d\x38\x4f\x4b\ \x45\x5f\x64\x3d\x51\x54\x59\x7e\x8f\x5d\x7e\x91\x56\x77\x8a\x50\ \x73\x86\x51\x76\x8c\x54\x7c\x91\x54\x78\x91\x50\x67\x7d\x43\x5b\ \x75\x23\x4c\x88\x21\x5b\xa9\x26\x5e\xae\x38\x56\x7e\x45\x45\x44\ \x40\x44\x48\x3e\x41\x44\x46\x46\x41\x42\x3f\x3b\x3f\x53\x69\x30\ \x55\x85\x16\x30\x56\x24\x38\x55\x31\x45\x60\x28\x3f\x5e\x2d\x4d\ \x78\x24\x3f\x5b\x16\x2a\x3f\x20\x32\x48\x21\x31\x45\x1f\x32\x4b\ \x20\x32\x4d\x2b\x2f\x3c\x28\x33\x48\x2f\x39\x55\x22\x4b\x91\x16\ \x53\xa7\x15\x52\xa5\x13\x4e\xa2\x12\x48\x9b\x17\x4e\xa3\x19\x50\ \xa5\x1c\x56\xa7\x1e\x5b\xaa\x11\x2c\x54\x3e\x47\x4f\x48\x4a\x4a\ \x2f\x31\x2a\x35\x33\x2c\x44\x40\x3e\x4c\x4d\x4e\x5a\x5d\x5f\x4f\ \x56\x5d\x4f\x53\x57\x53\x5b\x61\x51\x57\x5d\x48\x49\x4b\x3a\x3b\ \x34\x42\x47\x42\x48\x4b\x49\x50\x54\x52\x52\x59\x5d\x51\x59\x5a\ \x47\x53\x5b\x44\x5b\x64\x50\x60\x6b\x5d\x68\x6f\x4d\x53\x57\x33\ \x55\x7b\x29\x5e\xa4\x29\x65\xb5\x23\x5c\xac\x25\x5e\xad\x20\x5e\ \xb0\x1e\x5d\xae\x20\x58\xa7\x27\x5f\xa6\x2d\x63\xa5\x28\x60\xae\ \x2f\x5a\xc2\x3b\x51\xd0\x46\x50\xd9\x4e\x50\xdf\x4b\x4f\xe0\x46\ \x48\xdd\x00\x00\x00\x48\x51\x56\x44\x4a\x47\x3c\x47\x46\x39\x42\ \x3a\x32\x36\x30\x2e\x32\x2e\x30\x37\x32\x30\x35\x2d\x32\x3a\x33\ \x2d\x30\x29\x32\x37\x32\x39\x49\x42\x38\x43\x3e\x3a\x41\x3e\x37\ \x46\x41\x3a\x4b\x48\x37\x42\x3a\x39\x43\x3e\x36\x41\x3b\x39\x43\ \x3d\x37\x3c\x36\x31\x35\x2d\x2f\x38\x2d\x34\x3a\x33\x33\x39\x33\ \x35\x3a\x36\x3a\x3a\x3b\x35\x3a\x38\x37\x44\x3e\x38\x41\x3e\x37\ \x3f\x39\x34\x3a\x35\x37\x3d\x3c\x3e\x46\x49\x37\x48\x43\x4f\x69\ \x6d\x3f\x54\x4f\x42\x5f\x5c\x45\x61\x61\x40\x5f\x5f\x39\x48\x46\ \x3b\x4f\x4e\x3f\x58\x53\x43\x5c\x55\x3d\x4f\x49\x2e\x34\x2d\x2a\ \x2d\x29\x31\x36\x34\x4f\x6b\x71\x53\x77\x7d\x54\x6b\x72\x59\x76\ \x7f\x55\x6e\x77\x3f\x4e\x4c\x2f\x34\x30\x2a\x2d\x26\x27\x2a\x24\ \x36\x43\x3e\x3f\x57\x55\x3f\x4c\x4a\x44\x50\x50\x38\x3c\x3b\x2f\ \x32\x2d\x2d\x2e\x2a\x2f\x33\x2d\x2f\x36\x2e\x34\x3a\x36\x30\x33\ \x2e\x34\x3a\x39\x44\x4f\x56\x56\x6f\x79\x44\x5d\x5e\x36\x45\x41\ \x39\x43\x3f\x32\x39\x34\x35\x45\x3e\x3e\x5a\x59\x4f\x6c\x73\x4e\ \x69\x74\x5f\x86\x98\x5a\x7a\x8f\x5c\x7d\x95\x5a\x7c\x91\x53\x72\ \x88\x48\x5f\x6d\x46\x56\x5f\x50\x5d\x68\x51\x5b\x66\x3d\x44\x4e\ \x24\x3d\x61\x1b\x4e\x9a\x24\x5c\xab\x2b\x58\x98\x24\x57\x9e\x23\ \x53\x99\x23\x50\x90\x26\x4c\x84\x28\x50\x86\x21\x51\x98\x1f\x50\ \x96\x25\x3f\x66\x2d\x40\x62\x26\x4c\x84\x23\x4e\x8e\x21\x48\x7f\ \x1b\x41\x75\x1c\x3c\x6f\x1e\x3a\x6a\x1d\x41\x7c\x22\x40\x73\x2e\ \x46\x72\x27\x48\x81\x22\x41\x7a\x24\x42\x77\x18\x55\xab\x17\x54\ \xa6\x16\x54\xa7\x15\x4e\xa0\x18\x53\xa8\x11\x49\x9f\x15\x50\xa5\ \x1b\x5a\xaf\x0e\x34\x6b\x47\x51\x5b\x41\x47\x48\x31\x33\x2c\x37\ \x38\x33\x48\x49\x49\x4e\x4f\x53\x57\x5b\x5d\x4f\x56\x5c\x4d\x52\ \x57\x49\x4c\x4d\x3c\x39\x37\x34\x30\x2a\x38\x37\x2e\x41\x45\x3d\ \x4d\x53\x4f\x59\x5f\x61\x5a\x65\x6a\x49\x4e\x50\x4d\x56\x59\x4d\ \x5a\x5a\x4e\x59\x5b\x47\x52\x55\x47\x50\x52\x41\x4c\x4c\x2b\x47\ \x63\x29\x57\x96\x28\x65\xb8\x24\x5f\xae\x22\x60\xae\x21\x5c\xac\ \x1f\x59\xaa\x25\x61\xaf\x24\x61\xb0\x29\x64\xaf\x24\x61\xab\x28\ \x67\xb5\x21\x57\xb4\x2b\x50\xbf\x34\x51\xca\x3c\x49\xd7\x00\x00\ \x00\x36\x45\x53\x44\x4f\x52\x3c\x4c\x46\x38\x43\x3e\x34\x3a\x36\ \x30\x35\x31\x32\x3f\x35\x33\x3d\x33\x2f\x35\x2e\x2d\x33\x2e\x33\ \x3a\x37\x3c\x4e\x47\x39\x44\x41\x3c\x42\x3e\x37\x41\x3d\x3e\x51\ \x4e\x3a\x48\x43\x3a\x46\x3f\x31\x3a\x36\x36\x44\x3a\x35\x3e\x34\ \x30\x36\x2f\x30\x39\x30\x3b\x42\x3d\x36\x40\x37\x39\x40\x3d\x40\ \x46\x4c\x36\x3e\x3c\x3a\x47\x43\x3b\x4b\x44\x36\x3d\x36\x33\x37\ \x31\x37\x3a\x3a\x40\x48\x47\x39\x4e\x4b\x41\x60\x5c\x40\x56\x53\ \x40\x5d\x5a\x45\x62\x63\x43\x62\x65\x36\x47\x45\x38\x4c\x4a\x3d\ \x51\x4b\x40\x4f\x4a\x3d\x4f\x48\x2c\x34\x2b\x2a\x2d\x27\x2a\x2e\ \x2b\x4d\x67\x6d\x57\x79\x80\x5b\x79\x88\x54\x6e\x76\x54\x6c\x72\ \x44\x55\x59\x2e\x33\x2f\x2b\x2f\x29\x2d\x32\x2c\x3c\x4c\x45\x47\ \x5f\x5c\x45\x55\x53\x44\x51\x51\x41\x4b\x4c\x32\x3a\x35\x2e\x33\ \x2c\x2f\x33\x2c\x2e\x33\x2b\x36\x41\x3c\x36\x40\x3c\x38\x43\x42\ \x4c\x57\x5b\x4f\x61\x63\x41\x56\x55\x3c\x4c\x49\x3b\x45\x44\x35\ \x3f\x3b\x36\x40\x3e\x49\x63\x67\x55\x72\x7b\x4e\x66\x6f\x4d\x63\ \x65\x42\x51\x57\x3e\x46\x4b\x49\x54\x5d\x4c\x5b\x6b\x4c\x58\x65\ \x4a\x58\x62\x58\x65\x6f\x4c\x58\x66\x31\x33\x32\x2f\x34\x33\x33\ \x40\x53\x20\x48\x86\x1c\x5b\xb5\x1d\x57\xac\x20\x5b\xac\x19\x58\ \xac\x19\x54\xa6\x18\x52\xa6\x19\x53\xa2\x20\x4d\x93\x2d\x41\x64\ \x2f\x47\x70\x22\x51\x9a\x1e\x53\xa1\x1f\x53\xa1\x1d\x50\x9e\x1f\ \x46\x8b\x1b\x41\x84\x21\x45\x89\x21\x4a\x8e\x1c\x4f\x9b\x1f\x4b\ \x92\x22\x45\x85\x23\x3b\x6b\x17\x50\xa5\x16\x50\xa1\x18\x52\xa6\ \x17\x51\xa3\x14\x4e\xa4\x11\x4b\xa2\x12\x4d\xa4\x1a\x54\xaa\x16\ \x43\x87\x36\x3d\x47\x3d\x44\x40\x36\x37\x2f\x40\x40\x3b\x4f\x51\ \x54\x51\x53\x58\x4d\x59\x5d\x3b\x4a\x4c\x3a\x45\x46\x3a\x3b\x39\ \x36\x38\x34\x35\x36\x2f\x39\x39\x33\x3e\x48\x42\x49\x5b\x61\x58\ \x61\x65\x55\x60\x65\x4d\x55\x5a\x4d\x53\x59\x40\x48\x4a\x44\x4d\ \x57\x4e\x54\x54\x4d\x5f\x62\x50\x5f\x5d\x31\x44\x49\x29\x3a\x43\ \x2a\x4f\x84\x28\x60\xaf\x23\x63\xb1\x23\x62\xb1\x20\x5d\xab\x23\ \x60\xaf\x25\x60\xac\x2a\x65\xad\x26\x63\xae\x28\x63\xaf\x1e\x5a\ \xa9\x17\x53\xa9\x1e\x57\xb0\x22\x4f\xb6\x00\x00\x00\x22\x35\x34\ \x3e\x4a\x44\x3b\x4b\x43\x37\x41\x3b\x35\x3f\x37\x36\x3f\x37\x31\ \x3a\x31\x33\x41\x38\x2e\x37\x2e\x2d\x33\x2d\x32\x38\x35\x40\x51\ \x50\x44\x53\x52\x3a\x44\x3b\x30\x3b\x35\x3f\x52\x4e\x39\x43\x3e\ \x37\x43\x3b\x2e\x30\x2b\x37\x46\x3d\x34\x3b\x36\x33\x3a\x35\x35\ \x3e\x37\x3e\x47\x42\x34\x3e\x37\x34\x3c\x37\x3d\x43\x44\x37\x42\ \x3d\x3b\x4d\x47\x3b\x4b\x45\x36\x3f\x3b\x35\x3f\x39\x35\x37\x34\ \x3c\x40\x40\x3b\x4d\x46\x3d\x5a\x55\x3b\x4f\x4a\x3e\x59\x55\x42\ \x5b\x56\x41\x64\x61\x38\x4e\x4b\x39\x4a\x45\x42\x61\x5d\x42\x59\ \x59\x39\x46\x43\x2d\x31\x2b\x29\x2b\x26\x2e\x32\x2e\x49\x64\x6a\ \x58\x7f\x8a\x64\x86\x95\x53\x6f\x7c\x51\x6a\x76\x44\x54\x54\x2f\ \x35\x30\x30\x35\x2f\x2f\x36\x2f\x3a\x46\x41\x46\x60\x5d\x44\x54\ \x54\x41\x4e\x4e\x39\x3e\x3a\x34\x39\x32\x2f\x31\x2c\x2c\x30\x29\ \x32\x3a\x32\x39\x42\x3e\x3a\x45\x42\x3f\x4a\x49\x46\x51\x51\x46\ \x57\x57\x44\x59\x58\x40\x51\x4d\x3d\x4b\x4a\x33\x3a\x32\x36\x3c\ \x37\x3e\x47\x46\x3d\x4d\x4e\x38\x47\x45\x37\x3a\x3b\x3f\x46\x49\ \x49\x52\x61\x4f\x5b\x6c\x43\x51\x5c\x45\x4d\x4f\x53\x62\x6c\x5a\ \x6c\x76\x4a\x55\x5f\x29\x29\x25\x3c\x45\x48\x46\x55\x5a\x4e\x5c\ \x6c\x33\x4c\x72\x1c\x57\xab\x17\x52\xa9\x1c\x59\xa9\x21\x5b\xaa\ \x1b\x54\xa8\x1e\x56\xa8\x1f\x4e\x92\x2c\x49\x75\x30\x4e\x7c\x23\ \x53\x9b\x23\x55\xa2\x24\x58\xa2\x19\x50\x9f\x19\x46\x8f\x23\x4b\ \x90\x21\x48\x8b\x29\x51\x94\x21\x51\x9a\x21\x48\x87\x26\x42\x76\ \x2a\x3b\x61\x1e\x51\x9f\x16\x50\xa2\x14\x4e\xa1\x17\x51\xa5\x16\ \x51\xa4\x19\x53\xa8\x16\x4f\xa6\x17\x53\xa7\x19\x4d\x98\x26\x30\ \x40\x33\x36\x2e\x3c\x3f\x36\x4b\x4d\x4c\x52\x55\x59\x4e\x50\x55\ \x45\x4c\x50\x42\x53\x4f\x45\x56\x58\x39\x46\x49\x38\x3f\x3d\x36\ \x43\x41\x3b\x42\x44\x3a\x47\x41\x48\x5c\x60\x55\x61\x67\x4a\x53\ \x54\x4a\x59\x5b\x46\x4d\x48\x4b\x57\x5b\x47\x57\x5d\x46\x59\x5c\ \x3e\x52\x55\x3e\x4e\x4f\x38\x4b\x4b\x2b\x3e\x42\x25\x35\x34\x26\ \x3f\x5e\x2e\x65\xaf\x26\x66\xb2\x23\x61\xaf\x27\x61\xaf\x29\x64\ \xb0\x28\x62\xaa\x28\x66\xb1\x26\x63\xb1\x25\x63\xb1\x20\x5b\xab\ \x1f\x5c\xad\x1f\x5c\xaa\x00\x00\x00\x24\x39\x3b\x31\x48\x44\x34\ \x43\x39\x39\x49\x3f\x35\x41\x3a\x37\x42\x3a\x33\x40\x38\x37\x48\ \x3e\x30\x3b\x34\x30\x39\x31\x2f\x36\x2f\x47\x57\x57\x43\x56\x54\ \x37\x40\x35\x2e\x33\x2c\x3e\x47\x44\x39\x44\x3e\x35\x3c\x36\x2d\ \x2f\x29\x39\x47\x44\x35\x3f\x39\x36\x43\x3f\x38\x46\x3f\x3b\x49\ \x41\x37\x40\x3a\x3e\x48\x47\x3b\x3d\x3d\x34\x3b\x37\x35\x47\x41\ \x3a\x49\x46\x3a\x48\x40\x35\x3a\x34\x37\x39\x36\x39\x40\x41\x39\ \x4c\x48\x3e\x5a\x55\x3b\x4e\x4a\x3d\x59\x57\x42\x5a\x57\x3d\x57\ \x54\x3a\x54\x54\x3b\x4b\x4b\x47\x67\x64\x46\x5e\x5b\x3d\x4a\x48\ \x31\x36\x30\x2c\x2b\x26\x2f\x33\x2e\x41\x55\x56\x56\x7b\x84\x5f\ \x78\x83\x56\x71\x79\x51\x68\x6e\x37\x45\x41\x30\x3a\x35\x2f\x36\ \x2e\x35\x42\x40\x3a\x46\x44\x4a\x62\x69\x44\x58\x5b\x51\x60\x68\ \x44\x4d\x4e\x2e\x31\x2c\x2f\x32\x2e\x33\x3a\x32\x37\x41\x3d\x3c\ \x4b\x48\x3b\x46\x41\x3e\x4c\x49\x48\x54\x58\x44\x55\x5b\x3f\x55\ \x52\x42\x55\x52\x38\x42\x3a\x35\x41\x40\x34\x3c\x37\x34\x3d\x38\ \x36\x46\x43\x35\x41\x3e\x3e\x44\x43\x4d\x56\x64\x4b\x54\x59\x47\ \x54\x5c\x3d\x4a\x4e\x33\x36\x2f\x5a\x6a\x71\x5b\x6b\x79\x3f\x47\ \x4d\x2b\x2c\x28\x42\x4f\x49\x54\x6b\x78\x5a\x6b\x77\x57\x69\x77\ \x40\x51\x62\x1f\x49\x8f\x12\x4b\xa3\x19\x55\xa8\x1f\x5a\xab\x22\ \x5d\xad\x25\x5b\xa0\x2e\x51\x83\x30\x50\x86\x2d\x5f\xa2\x26\x59\ \xa6\x27\x5a\xa5\x22\x56\xa4\x1b\x51\x9c\x1d\x46\x89\x23\x4b\x8c\ \x22\x4a\x8b\x21\x53\x9c\x20\x48\x87\x2c\x3b\x61\x2b\x30\x45\x21\ \x45\x87\x19\x53\xa8\x19\x52\xa4\x12\x4e\xa2\x18\x51\xa3\x19\x53\ \xa6\x18\x53\xa9\x1a\x55\xaa\x1e\x58\xa8\x1d\x29\x3e\x38\x3a\x32\ \x41\x45\x3e\x4e\x50\x50\x4c\x49\x49\x4b\x4a\x48\x44\x4b\x4c\x45\ \x49\x46\x4f\x58\x59\x3c\x4f\x4e\x2e\x43\x42\x32\x47\x49\x37\x4b\ \x49\x37\x4c\x4d\x44\x58\x5c\x52\x5c\x5f\x49\x5b\x61\x3f\x50\x52\ \x3c\x49\x4a\x47\x57\x5a\x42\x58\x62\x39\x4a\x4a\x3a\x54\x58\x25\ \x3f\x3d\x23\x39\x3c\x35\x4a\x53\x20\x33\x38\x27\x43\x3d\x20\x35\ \x36\x2c\x52\x81\x31\x6a\xb2\x24\x5f\xae\x22\x5a\xa6\x27\x60\xae\ \x26\x61\xac\x2b\x67\xaf\x2f\x6e\xb5\x2e\x6b\xb4\x26\x63\xae\x28\ \x63\xae\x00\x00\x00\x2f\x45\x43\x33\x48\x46\x35\x44\x40\x3b\x4c\ \x45\x36\x40\x39\x35\x3e\x36\x2f\x33\x2a\x36\x48\x3e\x33\x40\x37\ \x31\x3e\x35\x2d\x34\x2c\x47\x52\x56\x47\x55\x54\x37\x3d\x37\x2f\ \x34\x2c\x3b\x48\x41\x3d\x48\x43\x31\x37\x31\x2e\x2f\x2a\x35\x3f\ \x3a\x39\x47\x44\x3e\x54\x53\x3d\x51\x4e\x37\x45\x3c\x3b\x44\x40\ \x40\x45\x44\x3d\x3f\x3d\x37\x40\x3b\x3a\x51\x4a\x3e\x48\x45\x3c\ \x4b\x47\x37\x3e\x38\x3d\x40\x40\x3e\x48\x49\x3e\x52\x4d\x3d\x5d\ \x56\x40\x59\x55\x41\x5b\x57\x42\x5e\x5a\x40\x5c\x5a\x3e\x5a\x59\ \x3a\x47\x41\x41\x5b\x57\x45\x5e\x5a\x3d\x4f\x4a\x37\x43\x3c\x2c\ \x2e\x2a\x2e\x2c\x28\x39\x4c\x48\x55\x7a\x82\x5e\x78\x82\x5d\x78\ \x86\x4e\x66\x6b\x3c\x51\x4f\x34\x3f\x3a\x33\x39\x35\x32\x3b\x34\ \x48\x59\x5a\x53\x6b\x77\x46\x5d\x62\x4d\x56\x58\x3c\x43\x41\x32\ \x36\x30\x2c\x30\x2b\x36\x41\x39\x3f\x4d\x4c\x40\x4f\x50\x3c\x4c\ \x4a\x46\x53\x58\x4e\x5e\x67\x4d\x62\x6d\x3f\x53\x53\x42\x5c\x57\ \x41\x52\x50\x3a\x47\x42\x37\x42\x41\x35\x3f\x3d\x30\x36\x30\x2d\ \x32\x2c\x42\x47\x45\x51\x5f\x68\x4e\x5a\x62\x45\x51\x55\x3e\x4c\ \x4c\x2e\x32\x2e\x59\x67\x6a\x5c\x6e\x7e\x36\x3c\x3c\x32\x39\x33\ \x3f\x51\x55\x53\x6c\x74\x5b\x6f\x77\x59\x6d\x7a\x49\x57\x5e\x33\ \x35\x30\x29\x38\x4e\x1a\x45\x86\x1e\x55\xa2\x29\x63\xb5\x28\x61\ \xaf\x2e\x56\x8e\x33\x57\x8b\x2f\x5b\x99\x2d\x63\xab\x28\x60\xa8\ \x23\x59\xa8\x21\x58\xa5\x1e\x45\x86\x1d\x48\x90\x23\x51\x96\x1f\ \x4e\x96\x24\x50\x91\x2d\x3e\x60\x2e\x33\x49\x26\x3a\x61\x1a\x4c\ \x98\x1a\x51\xa2\x1d\x57\xa8\x19\x55\xaa\x18\x52\xa8\x1a\x54\xa9\ \x19\x53\xa6\x1e\x59\xac\x1a\x2a\x41\x3b\x40\x39\x4b\x4e\x4d\x4c\ \x51\x53\x46\x47\x44\x4c\x4e\x4e\x43\x4b\x4b\x55\x60\x5e\x43\x52\ \x55\x36\x41\x41\x37\x42\x3c\x36\x4d\x51\x2d\x3d\x3a\x34\x4e\x51\ \x3d\x55\x57\x41\x50\x55\x4c\x5c\x61\x33\x48\x4b\x41\x54\x5c\x4c\ \x5b\x5e\x46\x61\x6d\x35\x48\x4e\x35\x4a\x4b\x38\x4f\x4a\x30\x45\ \x4d\x40\x54\x5e\x30\x47\x51\x23\x38\x33\x21\x38\x36\x3b\x4d\x4c\ \x21\x32\x4a\x26\x4d\x80\x24\x55\x99\x25\x5a\xa7\x25\x62\xad\x2a\ \x66\xb1\x26\x62\xae\x28\x61\xab\x25\x60\xab\x23\x61\xad\x00\x00\ \x00\x31\x3e\x38\x2e\x3c\x3a\x37\x4c\x46\x3e\x52\x4d\x37\x48\x3f\ \x35\x41\x36\x31\x36\x2d\x34\x45\x3a\x39\x4a\x42\x35\x44\x3a\x31\ \x3a\x31\x39\x42\x3d\x3a\x41\x3c\x35\x3d\x32\x32\x37\x2f\x37\x44\ \x3c\x3c\x49\x43\x33\x3a\x34\x2d\x2f\x2a\x32\x3a\x32\x38\x49\x45\ \x43\x5b\x5a\x40\x54\x4d\x37\x45\x3e\x41\x50\x52\x45\x4c\x4d\x3c\ \x40\x3c\x35\x3d\x38\x3e\x53\x4f\x44\x54\x52\x3d\x4a\x46\x38\x3f\ \x3b\x39\x3b\x39\x44\x4c\x4e\x41\x59\x57\x3e\x58\x51\x3e\x58\x50\ \x3c\x54\x4f\x42\x5f\x5b\x41\x52\x50\x46\x5f\x61\x3c\x45\x43\x3d\ \x57\x52\x43\x59\x54\x40\x4d\x4b\x38\x3c\x39\x2d\x2d\x29\x30\x33\ \x2e\x3b\x4b\x46\x56\x78\x82\x5f\x79\x86\x5e\x7a\x85\x4a\x63\x6c\ \x3e\x53\x4e\x33\x3c\x37\x32\x3c\x36\x35\x42\x3b\x41\x54\x51\x54\ \x68\x6f\x58\x70\x7b\x52\x5e\x69\x3e\x48\x47\x30\x36\x2e\x2d\x33\ \x2b\x39\x48\x43\x42\x51\x54\x40\x52\x54\x3d\x4d\x4d\x46\x55\x5a\ \x4b\x5e\x66\x49\x5f\x65\x46\x5c\x60\x46\x5f\x5c\x42\x5a\x5d\x36\ \x40\x40\x37\x44\x40\x35\x3f\x3c\x34\x3c\x37\x2e\x2f\x2a\x3a\x3d\ \x38\x4f\x58\x5c\x4d\x58\x5e\x43\x4f\x52\x44\x56\x59\x35\x3d\x39\ \x50\x5b\x56\x56\x67\x73\x2b\x2e\x29\x37\x41\x38\x4a\x62\x66\x55\ \x69\x71\x59\x6c\x74\x55\x6a\x74\x4b\x5d\x63\x39\x3f\x3b\x36\x38\ \x2f\x36\x3b\x35\x2c\x3c\x56\x24\x4c\x8c\x1b\x57\xb6\x25\x5b\xa5\ \x2f\x56\x8d\x2f\x5a\x96\x2c\x5e\xa3\x2a\x60\xaa\x23\x58\xa5\x19\ \x51\x9f\x1d\x4b\x92\x17\x48\x95\x1b\x4c\x98\x20\x4d\x96\x25\x51\ \x95\x2a\x4a\x7e\x30\x42\x66\x2e\x3b\x5b\x24\x3f\x74\x1e\x44\x86\ \x20\x50\x99\x1a\x4e\x9c\x1b\x54\xa5\x19\x56\xaa\x1c\x57\xac\x1e\ \x58\xaa\x1c\x2d\x48\x42\x49\x40\x4e\x55\x54\x51\x56\x59\x4c\x4f\ \x4e\x43\x54\x55\x32\x4c\x49\x3e\x4b\x47\x3c\x4c\x4a\x3e\x4a\x4a\ \x2f\x44\x45\x3f\x4a\x46\x3b\x49\x47\x30\x49\x4f\x3c\x51\x53\x3f\ \x55\x5d\x40\x51\x5a\x38\x48\x4e\x3c\x50\x56\x48\x56\x5b\x41\x5a\ \x68\x34\x4a\x4e\x3d\x53\x58\x27\x40\x43\x38\x48\x45\x46\x55\x5b\ \x42\x50\x56\x31\x45\x4b\x20\x36\x36\x38\x46\x46\x33\x4b\x54\x21\ \x33\x2f\x30\x45\x56\x24\x46\x6e\x25\x51\x81\x26\x55\x90\x23\x55\ \x9b\x22\x57\xa2\x22\x57\xa0\x22\x5b\xa8\x00\x00\x00\x2d\x33\x2e\ \x2a\x31\x2b\x38\x4a\x3f\x3d\x50\x4b\x3a\x4d\x45\x36\x43\x38\x2f\ \x32\x2c\x34\x42\x37\x38\x47\x40\x35\x40\x37\x33\x3e\x34\x2f\x35\ \x2c\x31\x35\x2e\x32\x39\x32\x34\x3b\x35\x36\x41\x3c\x38\x45\x3f\ \x35\x3a\x33\x2e\x31\x2f\x31\x3b\x35\x37\x49\x43\x40\x56\x50\x43\ \x59\x55\x38\x49\x45\x48\x56\x58\x45\x4b\x4a\x40\x47\x46\x33\x38\ \x34\x3f\x53\x4f\x46\x55\x53\x3f\x4c\x49\x3b\x47\x45\x3c\x3f\x3f\ \x49\x50\x51\x44\x55\x54\x40\x5b\x53\x3c\x52\x4b\x3b\x52\x4c\x48\ \x64\x64\x46\x5a\x5d\x52\x69\x6d\x37\x3d\x39\x3e\x54\x4e\x46\x60\ \x5b\x47\x59\x58\x38\x3c\x3a\x35\x36\x34\x33\x36\x30\x38\x40\x3b\ \x4d\x65\x68\x5e\x7b\x88\x59\x73\x7b\x4b\x66\x6c\x3d\x51\x4e\x36\ \x43\x3f\x33\x3c\x38\x39\x46\x41\x42\x57\x51\x52\x64\x6c\x62\x76\ \x81\x54\x62\x6c\x3b\x42\x40\x2d\x33\x2c\x31\x3b\x34\x43\x59\x59\ \x44\x58\x5e\x40\x54\x55\x3c\x4c\x4f\x52\x66\x71\x48\x5c\x5e\x45\ \x55\x54\x49\x62\x63\x48\x5f\x5f\x44\x5a\x58\x39\x47\x4a\x38\x43\ \x3f\x3b\x48\x45\x3b\x48\x46\x2e\x33\x2d\x3e\x41\x3c\x49\x4e\x50\ \x50\x5b\x5f\x4a\x59\x5e\x4c\x5e\x64\x3b\x45\x45\x3b\x45\x3c\x40\ \x47\x44\x2c\x31\x29\x3b\x4d\x46\x4c\x68\x67\x58\x72\x7c\x5e\x73\ \x7d\x56\x6b\x76\x48\x5b\x63\x35\x39\x36\x36\x37\x33\x3d\x44\x3f\ \x39\x3c\x39\x3d\x43\x47\x3a\x55\x7e\x2b\x4d\x80\x2c\x4a\x7b\x2d\ \x53\x8f\x2c\x5c\x9d\x2b\x60\xa7\x25\x5b\xa7\x1b\x54\xa4\x1a\x50\ \xa0\x19\x4c\x9c\x18\x4b\x9b\x1c\x4f\x9b\x22\x52\x9d\x2c\x57\x9a\ \x2d\x4e\x82\x2c\x3d\x63\x28\x3e\x6b\x25\x3e\x72\x26\x48\x7f\x24\ \x48\x86\x23\x4e\x8f\x23\x55\x9c\x1e\x51\x9d\x23\x57\xa4\x28\x34\ \x44\x4c\x4b\x45\x52\x5b\x5c\x54\x58\x58\x4e\x55\x54\x3d\x53\x55\ \x2d\x4f\x4a\x28\x3f\x3a\x36\x4b\x47\x3e\x4c\x4c\x2d\x49\x4d\x27\ \x38\x34\x40\x4a\x45\x42\x5e\x64\x38\x4f\x51\x47\x5d\x60\x3d\x4b\ \x53\x3d\x4a\x4c\x33\x45\x47\x35\x43\x41\x40\x53\x5c\x35\x49\x51\ \x3c\x4c\x4d\x39\x4b\x54\x37\x49\x4c\x40\x50\x4f\x3a\x4f\x50\x3b\ \x54\x58\x20\x3e\x3b\x2b\x49\x41\x3d\x58\x59\x1e\x3a\x34\x32\x4c\ \x45\x34\x50\x52\x22\x3a\x3a\x1f\x3a\x40\x1c\x33\x3e\x30\x4b\x5f\ \x2e\x51\x67\x2c\x4e\x6e\x00\x00\x00\x29\x2d\x26\x29\x28\x22\x32\ \x3a\x33\x36\x46\x41\x3c\x4f\x47\x38\x48\x3c\x31\x38\x31\x36\x40\ \x3a\x36\x41\x3a\x30\x33\x2d\x32\x3d\x34\x31\x3d\x33\x33\x3a\x33\ \x38\x40\x39\x34\x3d\x36\x37\x45\x3e\x37\x45\x40\x31\x37\x30\x30\ \x35\x30\x33\x43\x3e\x3a\x4c\x46\x3b\x52\x4e\x40\x58\x55\x39\x49\ \x45\x43\x52\x4d\x41\x48\x48\x43\x4c\x4e\x3b\x49\x47\x3e\x56\x53\ \x44\x58\x56\x3c\x48\x44\x38\x3e\x39\x41\x45\x47\x4f\x5c\x60\x4d\ \x57\x5a\x3c\x57\x4d\x3b\x58\x51\x38\x50\x48\x47\x63\x62\x4f\x68\ \x68\x4f\x61\x62\x3c\x43\x41\x3d\x50\x4d\x44\x5f\x5c\x47\x5b\x58\ \x3d\x43\x44\x39\x3c\x3c\x32\x37\x32\x38\x42\x41\x45\x58\x57\x5e\ \x7d\x86\x56\x6f\x7a\x43\x62\x63\x40\x55\x54\x3b\x4b\x47\x35\x3f\ \x3c\x34\x3d\x37\x41\x57\x54\x54\x67\x6f\x60\x71\x80\x52\x61\x6b\ \x39\x43\x41\x2e\x36\x32\x3a\x4f\x4f\x50\x6f\x81\x4d\x64\x6c\x40\ \x54\x58\x42\x58\x5e\x55\x6c\x78\x45\x5a\x5c\x4a\x5d\x5a\x40\x56\ \x54\x46\x5e\x61\x3e\x51\x51\x3f\x4d\x4e\x37\x40\x3b\x39\x47\x40\ \x34\x3d\x38\x2d\x30\x2b\x3f\x40\x3c\x48\x4d\x52\x51\x5b\x62\x51\ \x60\x67\x50\x67\x74\x42\x56\x57\x35\x46\x41\x31\x35\x2d\x35\x3d\ \x38\x3d\x4f\x4a\x49\x62\x5f\x55\x6d\x76\x57\x6d\x7a\x54\x68\x71\ \x48\x5c\x61\x35\x3c\x38\x34\x39\x36\x46\x4f\x50\x40\x45\x45\x45\ \x4b\x49\x52\x5e\x62\x47\x4f\x55\x3d\x41\x4a\x30\x3e\x54\x29\x4e\ \x8c\x22\x58\xa6\x25\x5e\xaa\x24\x5f\xac\x1a\x53\xa3\x1d\x55\xa4\ \x1b\x50\x9f\x21\x57\xa5\x22\x56\xa1\x22\x56\x9f\x26\x50\x8d\x2a\ \x4b\x80\x26\x4b\x80\x25\x48\x7f\x27\x4a\x82\x28\x49\x81\x26\x46\ \x7d\x2b\x4c\x7d\x2e\x48\x73\x27\x3c\x62\x42\x46\x4b\x4e\x4b\x48\ \x57\x5e\x65\x53\x58\x58\x4d\x59\x5a\x40\x54\x55\x29\x42\x3e\x20\ \x3a\x38\x29\x3e\x3b\x39\x4c\x51\x27\x3e\x3e\x23\x38\x37\x31\x3f\ \x40\x42\x5a\x5b\x3c\x55\x53\x38\x4c\x47\x47\x58\x5b\x40\x5a\x60\ \x40\x4e\x52\x43\x55\x60\x49\x5e\x5f\x44\x5e\x69\x38\x53\x56\x34\ \x4c\x53\x39\x58\x59\x37\x51\x4e\x32\x53\x54\x36\x51\x56\x3b\x51\ \x53\x42\x4f\x47\x3f\x52\x4b\x2a\x43\x46\x27\x3d\x36\x43\x55\x51\ \x30\x4c\x4c\x21\x3d\x3a\x21\x38\x33\x2f\x44\x41\x35\x4a\x44\x3f\ \x58\x5d\x00\x00\x00\x2a\x33\x2d\x2f\x32\x2c\x2f\x32\x2e\x33\x3e\ \x37\x39\x48\x40\x38\x48\x3f\x35\x3f\x36\x35\x3f\x39\x38\x45\x3d\ \x2e\x33\x2b\x31\x3b\x34\x34\x42\x3c\x39\x42\x3e\x35\x3d\x35\x34\ \x3d\x36\x3a\x4a\x47\x3b\x48\x45\x32\x38\x31\x2f\x37\x32\x3b\x50\ \x51\x40\x52\x52\x47\x60\x63\x4a\x67\x69\x42\x56\x5a\x4d\x60\x64\ \x54\x61\x6a\x4d\x5a\x5f\x3f\x51\x4c\x40\x57\x56\x42\x58\x58\x3f\ \x4f\x4b\x34\x38\x36\x3c\x3f\x3f\x53\x62\x66\x4b\x51\x51\x3b\x51\ \x4e\x40\x60\x55\x37\x52\x4b\x46\x63\x60\x49\x61\x65\x54\x69\x71\ \x46\x50\x50\x47\x5d\x5e\x46\x64\x5f\x43\x55\x52\x4a\x52\x53\x3a\ \x3b\x3b\x39\x45\x42\x41\x51\x4e\x3f\x4e\x4b\x5a\x75\x7d\x52\x6c\ \x72\x41\x5c\x59\x3f\x54\x51\x3a\x4e\x4d\x37\x46\x44\x2f\x33\x2d\ \x3d\x50\x4c\x4b\x5c\x5f\x61\x75\x85\x51\x65\x70\x38\x45\x47\x36\ \x4a\x49\x3f\x55\x56\x52\x71\x7e\x4e\x68\x74\x43\x5b\x6a\x4f\x6f\ \x7e\x4b\x62\x6b\x4f\x64\x62\x3d\x4d\x4a\x40\x53\x51\x46\x5c\x5c\ \x41\x55\x56\x3b\x49\x49\x3c\x4a\x49\x3c\x4b\x49\x39\x44\x41\x31\ \x36\x2f\x3c\x3e\x39\x59\x66\x6b\x54\x67\x75\x4f\x5f\x69\x5a\x73\ \x81\x48\x61\x64\x38\x4d\x4e\x31\x3a\x33\x38\x41\x3d\x39\x4a\x45\ \x49\x60\x5f\x57\x6c\x75\x5d\x76\x80\x4d\x61\x66\x44\x57\x58\x39\ \x44\x42\x38\x42\x3e\x47\x4f\x52\x46\x4a\x4d\x3f\x45\x43\x47\x52\ \x50\x49\x4e\x51\x3d\x40\x40\x41\x41\x3b\x5f\x6c\x77\x32\x47\x62\ \x29\x4f\x87\x21\x57\xa5\x19\x54\xa8\x1d\x56\xa4\x23\x59\xa3\x26\ \x5e\xa9\x21\x5b\xa6\x20\x58\xa4\x24\x59\x9e\x1f\x50\x9a\x26\x57\ \x9c\x23\x50\x94\x26\x52\x95\x2b\x54\x95\x27\x4a\x82\x2f\x4b\x77\ \x32\x3e\x53\x3e\x42\x46\x4f\x56\x5a\x57\x59\x5a\x5e\x66\x70\x52\ \x5d\x61\x33\x53\x59\x2d\x4d\x54\x27\x40\x3c\x23\x3c\x39\x22\x3b\ \x3a\x33\x4a\x47\x28\x3e\x3e\x33\x49\x49\x44\x56\x5f\x35\x50\x53\ \x38\x48\x49\x42\x54\x56\x4f\x60\x61\x45\x5c\x5d\x44\x59\x59\x47\ \x64\x6a\x35\x56\x5d\x37\x51\x54\x45\x5f\x65\x42\x5a\x62\x3d\x5f\ \x62\x34\x4e\x4f\x39\x4f\x4f\x28\x41\x3d\x3e\x51\x54\x2a\x3a\x3b\ \x34\x47\x43\x2b\x45\x4b\x22\x3b\x37\x34\x3f\x35\x37\x4a\x49\x32\ \x46\x44\x2c\x48\x49\x37\x50\x57\x32\x4d\x4e\x42\x4c\x53\x00\x00\ \x00\x2d\x3d\x34\x2e\x31\x2b\x2e\x31\x29\x2d\x33\x2c\x37\x46\x39\ \x39\x46\x3e\x37\x43\x3a\x34\x40\x3c\x3b\x4e\x42\x34\x3d\x3a\x37\ \x44\x40\x38\x47\x3f\x38\x41\x39\x38\x3f\x3d\x33\x40\x38\x3d\x4b\ \x48\x38\x40\x3a\x30\x34\x2f\x34\x42\x42\x46\x5c\x5a\x45\x55\x56\ \x4c\x63\x68\x5b\x74\x7f\x51\x67\x6d\x55\x61\x63\x57\x65\x6b\x4b\ \x5a\x5e\x40\x53\x50\x41\x57\x54\x42\x5c\x5c\x3f\x4f\x4f\x39\x3f\ \x41\x3d\x41\x43\x44\x4c\x4f\x4a\x4d\x4c\x39\x4d\x45\x44\x60\x5e\ \x43\x5e\x5b\x46\x65\x62\x52\x6f\x76\x51\x65\x65\x4f\x5b\x61\x3f\ \x4a\x48\x42\x59\x56\x43\x56\x55\x50\x5c\x5f\x39\x3c\x3b\x36\x40\ \x3e\x41\x51\x50\x40\x4f\x4c\x55\x6f\x74\x45\x59\x59\x3e\x55\x54\ \x40\x58\x57\x3d\x56\x58\x3b\x50\x4d\x33\x3a\x34\x3c\x4f\x4b\x46\ \x59\x5c\x5f\x76\x88\x49\x58\x5e\x36\x47\x49\x32\x46\x44\x3f\x53\ \x5b\x50\x75\x84\x5b\x78\x88\x50\x6a\x79\x52\x67\x6e\x42\x54\x54\ \x3f\x57\x55\x41\x56\x52\x3f\x53\x52\x3f\x58\x58\x41\x55\x55\x3d\ \x4e\x4e\x39\x44\x41\x3d\x4a\x4a\x39\x43\x40\x35\x3b\x38\x40\x43\ \x43\x52\x5d\x61\x59\x6c\x78\x55\x6b\x77\x55\x6b\x72\x44\x5c\x5d\ \x39\x4e\x47\x33\x3a\x32\x3d\x4b\x46\x3d\x50\x4a\x43\x58\x53\x5b\ \x73\x7b\x5d\x75\x84\x53\x66\x74\x48\x5f\x62\x3e\x4e\x4d\x45\x4e\ \x4d\x4e\x59\x5c\x47\x49\x4b\x40\x45\x45\x49\x54\x55\x4d\x57\x60\ \x3e\x3f\x3f\x42\x43\x42\x55\x60\x62\x4e\x5d\x63\x56\x62\x69\x47\ \x4e\x59\x33\x4f\x72\x2b\x54\x8d\x2e\x5f\x9d\x25\x5a\xa0\x27\x60\ \xa9\x26\x5f\xaa\x20\x58\xa4\x1f\x57\xa3\x20\x5a\xa5\x21\x58\xa2\ \x21\x54\x9e\x26\x55\x97\x2d\x4c\x7b\x33\x3f\x56\x45\x4a\x4f\x38\ \x4b\x50\x44\x53\x53\x40\x4a\x44\x62\x6e\x71\x49\x5a\x61\x2f\x4d\ \x4c\x35\x59\x5c\x28\x46\x47\x27\x42\x42\x2c\x4d\x51\x28\x45\x44\ \x2a\x3e\x3f\x42\x56\x5e\x45\x55\x56\x3f\x5a\x5f\x46\x62\x62\x4f\ \x64\x6d\x4c\x5c\x5d\x53\x68\x6f\x43\x64\x6e\x42\x5c\x5e\x36\x54\ \x5c\x34\x54\x59\x2b\x44\x4f\x4a\x59\x55\x40\x56\x62\x3f\x54\x58\ \x3b\x4e\x50\x29\x3e\x3f\x33\x4d\x57\x41\x57\x55\x3c\x51\x4e\x47\ \x58\x5c\x2d\x47\x4c\x2a\x42\x46\x2a\x3f\x3c\x2e\x45\x44\x2e\x49\ \x4c\x2a\x42\x43\x31\x46\x42\x30\x40\x49\x00\x00\x00\x2d\x40\x39\ \x2e\x34\x2d\x30\x33\x2c\x30\x37\x2f\x34\x40\x35\x37\x47\x3d\x3a\ \x4c\x45\x39\x47\x41\x3b\x4d\x45\x38\x48\x40\x3b\x4c\x45\x3c\x4b\ \x47\x38\x43\x39\x3c\x4c\x49\x3c\x51\x49\x3d\x4d\x48\x39\x44\x3d\ \x31\x38\x33\x3a\x4b\x49\x49\x5e\x5b\x3d\x50\x4b\x43\x5b\x59\x53\ \x6e\x76\x5d\x73\x7e\x5a\x6d\x75\x58\x67\x71\x4a\x5c\x5e\x3e\x54\ \x53\x3e\x53\x4f\x3c\x51\x4c\x40\x52\x4f\x3a\x3e\x3e\x44\x4b\x4e\ \x49\x58\x57\x4a\x51\x52\x32\x38\x34\x43\x51\x4f\x45\x51\x50\x43\ \x5f\x5c\x50\x6a\x6e\x55\x69\x6d\x51\x61\x66\x42\x4e\x4e\x40\x55\ \x52\x3f\x56\x52\x4e\x58\x5c\x42\x47\x44\x3b\x46\x41\x3f\x50\x4d\ \x40\x4d\x4d\x47\x5b\x5a\x3c\x50\x49\x36\x42\x3c\x3b\x4d\x4d\x40\ \x54\x54\x41\x53\x50\x39\x44\x3e\x3b\x4f\x4a\x42\x5b\x5c\x4f\x65\ \x6e\x3f\x4a\x4a\x38\x46\x43\x3a\x4f\x52\x4a\x6c\x7e\x4f\x79\x87\ \x5f\x7c\x8c\x4f\x61\x69\x3f\x4c\x48\x3b\x4d\x4b\x45\x5d\x5a\x3f\ \x51\x4c\x3e\x4f\x4a\x3e\x54\x53\x42\x5b\x61\x40\x56\x57\x3d\x4e\ \x4c\x3d\x4f\x4f\x35\x3d\x39\x37\x3e\x37\x41\x46\x45\x4b\x53\x55\ \x5c\x6e\x7c\x5c\x71\x82\x4c\x60\x68\x3f\x58\x57\x3b\x4c\x47\x35\ \x43\x3c\x3e\x50\x4b\x3c\x51\x4b\x41\x5b\x58\x54\x6c\x6e\x62\x7d\ \x90\x4e\x61\x6e\x44\x5a\x57\x42\x55\x56\x48\x56\x55\x59\x66\x6f\ \x3e\x41\x41\x47\x4d\x4d\x5a\x69\x72\x4b\x55\x5f\x44\x48\x48\x46\ \x47\x4a\x47\x4f\x4c\x52\x60\x65\x59\x64\x6d\x56\x5e\x62\x50\x5a\ \x5d\x57\x61\x68\x3e\x49\x4e\x35\x46\x5a\x34\x55\x7c\x38\x60\x98\ \x2c\x57\x92\x2f\x58\x92\x2d\x56\x90\x29\x4f\x8d\x2c\x4b\x7c\x42\ \x51\x67\x40\x48\x50\x3e\x50\x4a\x4b\x59\x58\x3f\x54\x58\x2c\x45\ \x46\x27\x39\x37\x42\x53\x4f\x3a\x59\x5c\x26\x42\x43\x2a\x41\x41\ \x2b\x4a\x4a\x2c\x3f\x42\x35\x4b\x4a\x32\x54\x55\x3b\x54\x53\x51\ \x65\x6b\x33\x58\x5e\x42\x64\x64\x50\x6e\x76\x59\x73\x81\x53\x68\ \x6e\x44\x63\x6b\x52\x6a\x76\x3e\x5c\x65\x42\x60\x67\x38\x56\x59\ \x3d\x56\x5c\x3f\x51\x57\x4a\x58\x5e\x3c\x4f\x51\x40\x54\x55\x3c\ \x4d\x50\x32\x4d\x4e\x40\x50\x4e\x37\x49\x4d\x35\x47\x47\x3d\x51\ \x51\x4a\x5a\x5c\x3c\x4e\x50\x4b\x5a\x59\x45\x56\x61\x4f\x58\x5e\ \x4f\x5c\x62\x58\x69\x6e\x00\x00\x00\x2d\x3e\x38\x32\x3b\x33\x30\ \x33\x2c\x31\x39\x2f\x35\x43\x38\x38\x46\x3c\x3b\x4f\x4b\x38\x44\ \x3c\x36\x3f\x3a\x3b\x4d\x43\x3b\x4c\x46\x3e\x4b\x46\x3c\x4b\x44\ \x3b\x4b\x44\x41\x59\x54\x3c\x4e\x45\x38\x49\x41\x32\x3a\x33\x3a\ \x45\x42\x46\x5f\x5c\x40\x54\x50\x3f\x53\x4e\x52\x69\x71\x62\x76\ \x81\x5a\x6c\x73\x56\x67\x69\x42\x56\x53\x3f\x5a\x56\x42\x59\x55\ \x3c\x4d\x43\x3c\x4b\x45\x3a\x3e\x3e\x44\x53\x52\x4a\x57\x56\x53\ \x5d\x5e\x3e\x4a\x43\x3b\x43\x3e\x43\x49\x49\x40\x57\x55\x4b\x65\ \x67\x5a\x73\x7b\x50\x63\x6a\x3f\x48\x49\x3b\x4a\x46\x40\x59\x56\ \x4b\x57\x59\x3e\x41\x40\x38\x3c\x3a\x3c\x4b\x48\x3f\x4d\x4b\x3b\ \x47\x42\x37\x43\x3c\x34\x3a\x36\x3d\x48\x49\x46\x57\x56\x3e\x4d\ \x47\x3b\x47\x44\x3c\x4b\x49\x45\x60\x62\x3d\x52\x51\x37\x43\x41\ \x31\x37\x32\x45\x58\x5a\x4f\x6b\x7a\x51\x77\x8b\x5e\x7d\x8c\x51\ \x66\x6f\x35\x42\x3f\x41\x5d\x59\x43\x5d\x5c\x40\x52\x50\x3e\x49\ \x46\x39\x47\x44\x43\x5a\x59\x3f\x56\x58\x3e\x45\x46\x43\x57\x58\ \x3a\x44\x42\x37\x3e\x39\x40\x47\x46\x42\x48\x47\x5f\x70\x7d\x5d\ \x73\x81\x42\x56\x57\x43\x5f\x5f\x3f\x54\x51\x37\x4b\x46\x3c\x50\ \x4a\x3f\x57\x52\x45\x5f\x5f\x4e\x64\x63\x65\x80\x90\x3e\x4c\x51\ \x3c\x4c\x46\x42\x58\x58\x57\x6b\x75\x56\x68\x78\x40\x42\x43\x4b\ \x50\x50\x5a\x65\x6c\x4c\x56\x59\x4f\x57\x5c\x4c\x51\x55\x41\x4a\ \x46\x4e\x57\x56\x57\x62\x6b\x53\x5b\x5c\x58\x61\x64\x54\x63\x6d\ \x3e\x4b\x49\x43\x47\x44\x59\x5f\x5b\x65\x6e\x74\x4d\x51\x56\x56\ \x5d\x68\x56\x5b\x65\x52\x53\x55\x57\x61\x6a\x42\x48\x52\x40\x52\ \x65\x49\x59\x5b\x3a\x52\x57\x28\x46\x47\x2b\x3f\x3b\x32\x4a\x4c\ \x32\x49\x48\x30\x53\x56\x35\x52\x56\x32\x46\x49\x37\x4b\x49\x46\ \x58\x5d\x44\x58\x54\x45\x5f\x59\x43\x55\x50\x48\x5b\x58\x45\x61\ \x62\x53\x73\x7d\x53\x6f\x7f\x4d\x69\x74\x54\x6d\x75\x5d\x76\x88\ \x55\x6e\x83\x46\x60\x68\x47\x5c\x5f\x46\x5c\x64\x48\x5d\x63\x48\ \x53\x55\x48\x5a\x69\x3c\x4e\x56\x40\x50\x59\x3c\x52\x5a\x3a\x4f\ \x50\x48\x5c\x59\x36\x49\x4f\x2c\x3d\x3f\x36\x4a\x4a\x45\x55\x55\ \x41\x51\x57\x48\x57\x56\x39\x4d\x51\x47\x55\x57\x46\x5e\x61\x47\ \x5e\x65\x00\x00\x00\x31\x40\x3a\x32\x3a\x32\x31\x39\x31\x35\x3e\ \x35\x34\x41\x37\x38\x44\x3c\x3a\x4a\x45\x3a\x4b\x40\x33\x39\x34\ \x36\x40\x36\x33\x3b\x34\x3c\x4b\x45\x3b\x4c\x45\x3a\x46\x3b\x3b\ \x50\x47\x3b\x4c\x41\x3a\x4a\x43\x33\x39\x36\x39\x3f\x3b\x47\x5f\ \x5c\x42\x57\x54\x3f\x52\x4e\x47\x5b\x5d\x5d\x72\x7f\x62\x73\x7c\ \x52\x67\x67\x40\x53\x4e\x43\x5d\x5a\x43\x5b\x59\x3c\x4e\x49\x3c\ \x4a\x44\x3a\x40\x3d\x43\x53\x52\x4a\x5b\x5d\x4d\x55\x54\x36\x3d\ \x36\x43\x54\x52\x3a\x3e\x3b\x3d\x51\x4d\x47\x63\x63\x53\x69\x72\ \x56\x6b\x71\x3f\x4b\x4c\x40\x4b\x4b\x4a\x5f\x64\x4f\x5e\x64\x3e\ \x44\x42\x37\x3e\x39\x37\x45\x40\x3e\x50\x4d\x3d\x49\x45\x39\x47\ \x43\x42\x4e\x4e\x40\x51\x50\x49\x55\x54\x3e\x4d\x48\x3a\x4a\x44\ \x41\x51\x51\x42\x59\x57\x3b\x57\x58\x37\x43\x40\x30\x32\x2f\x42\ \x52\x52\x5b\x75\x88\x5d\x84\x98\x60\x82\x92\x4e\x63\x6c\x36\x48\ \x48\x40\x60\x5d\x42\x5c\x5d\x3f\x4f\x4f\x3d\x4a\x49\x3a\x42\x42\ \x44\x54\x59\x3f\x4e\x52\x42\x52\x51\x47\x5c\x5c\x3c\x4c\x48\x38\ \x41\x3e\x3b\x43\x40\x44\x4d\x4c\x5f\x6e\x7c\x5a\x71\x82\x48\x5f\ \x62\x49\x66\x6a\x3e\x55\x52\x3b\x50\x4c\x3c\x51\x4d\x40\x5a\x55\ \x45\x61\x5f\x48\x5f\x5b\x5d\x7b\x86\x3b\x45\x46\x3c\x49\x44\x4b\ \x68\x68\x67\x82\x94\x4d\x5b\x65\x4a\x4b\x4e\x4d\x50\x50\x50\x56\ \x57\x4f\x55\x55\x57\x63\x68\x4d\x51\x53\x41\x4c\x4a\x49\x57\x53\ \x59\x64\x67\x59\x61\x67\x5b\x65\x6b\x56\x63\x6f\x40\x4f\x53\x4f\ \x54\x55\x5b\x62\x65\x5d\x69\x6f\x53\x57\x5a\x56\x5b\x5b\x5e\x64\ \x6b\x59\x5c\x60\x58\x6a\x7c\x2c\x42\x69\x34\x4b\x53\x33\x47\x48\ \x32\x4b\x4d\x29\x53\x55\x26\x44\x44\x35\x50\x4b\x41\x65\x66\x46\ \x60\x64\x48\x56\x59\x47\x53\x4f\x4a\x54\x52\x51\x61\x65\x4a\x60\ \x5e\x47\x5b\x56\x40\x48\x45\x45\x53\x4e\x62\x77\x7f\x65\x82\x98\ \x54\x6b\x79\x4f\x6a\x73\x4e\x6c\x73\x53\x69\x70\x4d\x66\x72\x45\ \x5a\x60\x4e\x5e\x5e\x5c\x68\x6a\x42\x5a\x72\x39\x44\x3d\x4c\x5f\ \x62\x32\x4a\x4d\x39\x50\x56\x2a\x41\x44\x29\x3f\x42\x28\x41\x3c\ \x3e\x4c\x50\x3b\x4a\x4d\x37\x4c\x4f\x3d\x53\x55\x36\x4b\x4d\x39\ \x52\x59\x2c\x4d\x4c\x38\x4c\x4e\x46\x56\x5a\x48\x52\x4e\x00\x00\ \x00\x38\x49\x44\x36\x48\x40\x37\x42\x3f\x37\x44\x38\x35\x42\x3a\ \x38\x45\x3e\x34\x3d\x36\x3e\x52\x4b\x37\x42\x38\x34\x39\x31\x30\ \x35\x2b\x3b\x4a\x45\x3e\x49\x43\x37\x42\x3b\x3f\x52\x4f\x3f\x52\ \x4f\x39\x45\x3e\x30\x34\x2e\x3b\x41\x41\x50\x61\x64\x45\x5c\x5b\ \x43\x57\x55\x3c\x4c\x47\x52\x68\x74\x5b\x6e\x72\x45\x5a\x58\x3f\ \x53\x4f\x43\x5c\x58\x43\x5c\x5a\x42\x58\x59\x39\x43\x3f\x39\x3f\ \x3b\x3f\x4b\x4a\x4a\x5a\x5a\x4f\x57\x56\x36\x3e\x32\x46\x5f\x5b\ \x38\x3c\x38\x38\x41\x3b\x45\x5f\x5d\x5a\x73\x7e\x53\x68\x6f\x3d\ \x4a\x47\x46\x4f\x52\x55\x64\x6b\x56\x63\x66\x3f\x49\x48\x35\x40\ \x39\x36\x41\x3f\x3f\x53\x51\x3d\x4a\x44\x40\x56\x56\x45\x57\x59\ \x4a\x5f\x66\x43\x52\x51\x3d\x51\x4d\x36\x46\x3c\x3f\x4b\x4b\x3e\ \x4f\x4c\x40\x56\x5b\x3b\x45\x43\x39\x42\x43\x4a\x5f\x68\x64\x7b\ \x8a\x60\x81\x8e\x58\x76\x84\x48\x60\x69\x3c\x58\x58\x3e\x5a\x56\ \x41\x5d\x5b\x40\x55\x52\x3b\x48\x44\x3a\x41\x3f\x57\x6d\x7d\x45\ \x5b\x63\x49\x5c\x5b\x45\x5c\x59\x39\x47\x44\x3b\x47\x42\x37\x3d\ \x38\x4b\x55\x58\x61\x74\x80\x5c\x73\x88\x52\x6b\x7a\x51\x67\x6d\ \x3d\x5b\x5c\x3a\x50\x4f\x3e\x4f\x4e\x3e\x56\x51\x43\x62\x61\x43\ \x58\x55\x42\x51\x4f\x3a\x45\x40\x3f\x44\x43\x4f\x5a\x5a\x5b\x71\ \x7a\x50\x58\x5d\x53\x58\x5e\x4b\x50\x55\x52\x5a\x60\x55\x60\x67\ \x54\x60\x67\x4b\x50\x56\x40\x49\x47\x43\x53\x4d\x52\x5e\x5e\x5b\ \x65\x68\x5c\x66\x6e\x5e\x6b\x76\x47\x55\x5d\x4e\x50\x52\x58\x5e\ \x60\x59\x5f\x62\x4a\x50\x53\x43\x45\x41\x5a\x60\x63\x5c\x68\x72\ \x46\x60\x69\x38\x59\x62\x3a\x5c\x6e\x31\x50\x58\x3d\x5d\x67\x4a\ \x66\x71\x46\x60\x62\x3f\x51\x45\x4e\x68\x66\x4f\x65\x67\x46\x53\ \x50\x4f\x60\x5c\x4a\x55\x4e\x61\x75\x7d\x49\x5a\x5d\x47\x5c\x58\ \x41\x4a\x48\x4e\x58\x51\x76\x8c\xa0\x68\x80\x93\x50\x68\x71\x56\ \x6a\x6c\x4f\x69\x71\x4b\x69\x6c\x5d\x69\x6c\x50\x58\x5c\x57\x5d\ \x5f\x5d\x6b\x6d\x4b\x5c\x69\x35\x45\x4c\x44\x56\x52\x3a\x51\x55\ \x3d\x50\x59\x28\x3b\x40\x29\x39\x3c\x2b\x3b\x45\x31\x3e\x3f\x31\ \x44\x4b\x2c\x41\x42\x29\x41\x41\x2f\x4b\x51\x31\x52\x5a\x2c\x4b\ \x4d\x33\x50\x5a\x3b\x4f\x4d\x4d\x58\x57\x00\x00\x00\x3a\x4b\x48\ \x3a\x4e\x47\x3a\x4c\x45\x35\x43\x38\x33\x3c\x35\x3a\x41\x39\x37\ \x3d\x34\x3b\x4b\x44\x3a\x41\x38\x39\x45\x3e\x35\x3e\x33\x33\x3a\ \x35\x3b\x44\x3e\x3b\x4b\x45\x48\x5c\x60\x4c\x62\x63\x44\x56\x56\ \x38\x3e\x3c\x3e\x46\x47\x54\x69\x73\x48\x62\x62\x48\x59\x59\x3b\ \x48\x43\x43\x5c\x5b\x4c\x62\x61\x44\x5c\x57\x40\x53\x50\x42\x59\ \x56\x3f\x56\x55\x40\x58\x54\x3b\x45\x42\x3b\x46\x41\x45\x58\x55\ \x4c\x5d\x5e\x4c\x55\x54\x2f\x2e\x2a\x3f\x4f\x4b\x38\x3e\x38\x36\ \x40\x3a\x3d\x54\x51\x54\x6e\x76\x51\x66\x6a\x36\x42\x3d\x47\x51\ \x56\x5a\x68\x72\x4d\x5e\x63\x3e\x4b\x47\x39\x47\x43\x3e\x4f\x48\ \x40\x55\x52\x40\x54\x50\x4e\x68\x72\x46\x62\x6c\x50\x66\x72\x3f\ \x53\x50\x3b\x51\x4d\x3b\x50\x4e\x42\x4e\x52\x44\x56\x5b\x48\x5c\ \x62\x47\x55\x5a\x3e\x4c\x4c\x4c\x60\x64\x62\x76\x83\x5a\x73\x82\ \x52\x67\x72\x46\x65\x73\x41\x63\x65\x41\x5f\x5e\x42\x5f\x64\x43\ \x59\x5b\x3f\x4f\x4d\x4a\x5b\x5d\x5c\x78\x89\x4c\x69\x76\x49\x69\ \x6f\x40\x57\x59\x3b\x4d\x4c\x3b\x4a\x4a\x39\x42\x3e\x4f\x56\x5a\ \x60\x73\x7d\x56\x6a\x79\x58\x6b\x75\x58\x66\x70\x45\x66\x6c\x3d\ \x4f\x4d\x43\x4f\x4d\x3c\x4e\x48\x44\x61\x5f\x41\x5c\x58\x3b\x4a\ \x49\x39\x49\x3e\x42\x4a\x47\x5a\x65\x6d\x5a\x64\x6c\x5b\x63\x6a\ \x58\x63\x6d\x55\x5c\x63\x57\x5e\x63\x5d\x6a\x73\x5a\x65\x69\x57\ \x5d\x69\x47\x4e\x4f\x45\x57\x50\x57\x60\x61\x5e\x68\x6e\x5d\x64\ \x6e\x60\x68\x70\x52\x60\x6c\x4b\x4e\x52\x59\x5d\x5b\x60\x68\x6d\ \x47\x51\x57\x52\x55\x55\x57\x5e\x61\x61\x76\x81\x58\x6a\x76\x4d\ \x5f\x64\x63\x7a\x85\x41\x4f\x5b\x57\x63\x68\x5a\x6b\x73\x4b\x62\ \x68\x47\x59\x56\x4b\x63\x66\x54\x6b\x6e\x44\x4d\x4b\x52\x5a\x55\ \x4d\x5a\x5c\x55\x67\x66\x44\x54\x4f\x4b\x62\x5a\x4e\x62\x65\x5c\ \x6b\x6e\x69\x86\x97\x54\x75\x84\x39\x52\x54\x4d\x5a\x57\x5a\x6e\ \x74\x5f\x66\x66\x4b\x4b\x49\x50\x59\x5f\x51\x58\x59\x4a\x56\x5b\ \x4b\x5c\x67\x3f\x4e\x57\x3c\x51\x50\x36\x4e\x4e\x41\x51\x52\x2a\ \x3b\x46\x38\x46\x4b\x44\x57\x62\x3a\x4e\x59\x2e\x41\x49\x2f\x43\ \x3f\x56\x6a\x79\x45\x5c\x5c\x41\x5f\x5f\x2d\x5a\x5d\x33\x52\x54\ \x50\x5b\x4c\x4d\x5b\x67\x00\x00\x00\x40\x4d\x4d\x41\x53\x52\x3e\ \x56\x50\x3c\x52\x48\x32\x3b\x32\x32\x34\x2e\x36\x41\x38\x39\x46\ \x41\x3d\x49\x43\x38\x45\x3d\x36\x3e\x34\x34\x39\x32\x34\x39\x33\ \x3d\x4f\x49\x43\x4c\x4e\x43\x51\x58\x54\x63\x6c\x3d\x47\x44\x52\ \x64\x6e\x58\x69\x6c\x4f\x67\x67\x46\x59\x57\x3b\x4e\x4b\x43\x64\ \x5e\x41\x5a\x57\x48\x65\x60\x41\x53\x4f\x41\x54\x4f\x42\x5d\x5d\ \x3c\x4f\x4c\x3b\x49\x46\x3b\x4a\x45\x41\x56\x52\x4b\x5d\x5f\x51\ \x5c\x59\x38\x3c\x38\x3c\x4d\x46\x3a\x45\x41\x3c\x48\x43\x3f\x50\ \x4c\x4e\x69\x71\x4d\x68\x6c\x3b\x4e\x4c\x55\x62\x6a\x5f\x6f\x7b\ \x4c\x5d\x61\x3d\x4c\x4a\x3f\x4d\x4b\x3d\x4f\x4b\x3e\x54\x53\x40\ \x58\x5b\x55\x6e\x7a\x54\x74\x83\x54\x67\x6e\x43\x59\x56\x3e\x53\ \x4f\x3f\x59\x57\x49\x5c\x60\x4a\x59\x5e\x42\x54\x55\x3f\x4b\x4c\ \x3e\x4a\x48\x4a\x61\x65\x5c\x74\x80\x58\x70\x81\x4f\x60\x6d\x4d\ \x6a\x77\x47\x65\x6a\x40\x58\x57\x46\x66\x6a\x49\x63\x6a\x42\x53\ \x54\x51\x64\x6e\x62\x83\x98\x4a\x63\x6d\x4a\x69\x6f\x44\x5d\x60\ \x3f\x58\x5a\x3f\x55\x57\x38\x41\x3e\x51\x5d\x67\x5d\x6f\x7d\x54\ \x68\x72\x51\x64\x69\x59\x66\x74\x54\x6a\x72\x43\x56\x59\x46\x52\ \x51\x3d\x4c\x47\x3b\x48\x41\x48\x66\x67\x3f\x50\x55\x3f\x4e\x49\ \x48\x53\x4f\x5e\x68\x6e\x60\x69\x72\x63\x6e\x79\x61\x6a\x77\x56\ \x5d\x66\x56\x61\x66\x57\x65\x6a\x5d\x65\x6e\x54\x57\x5f\x4c\x52\ \x55\x48\x56\x55\x5a\x63\x6b\x61\x68\x6d\x54\x59\x60\x59\x5d\x63\ \x55\x5b\x63\x44\x47\x49\x55\x58\x54\x60\x69\x70\x4e\x53\x57\x53\ \x59\x5a\x50\x55\x58\x5e\x70\x7b\x5d\x69\x74\x52\x64\x6a\x68\x7b\ \x83\x54\x6f\x88\x4b\x56\x59\x4b\x53\x4d\x4e\x62\x64\x54\x68\x75\ \x47\x61\x63\x46\x52\x4d\x49\x4d\x46\x5a\x64\x66\x55\x62\x64\x52\ \x66\x6b\x46\x59\x55\x51\x68\x65\x55\x6c\x75\x56\x66\x6d\x4e\x4e\ \x47\x5a\x64\x62\x42\x5c\x65\x53\x61\x67\x5d\x69\x6f\x47\x4a\x48\ \x52\x56\x4e\x4f\x5a\x61\x55\x5d\x61\x40\x53\x5d\x3a\x4c\x4d\x39\ \x50\x57\x3b\x51\x50\x39\x4c\x51\x3f\x51\x5a\x41\x4f\x53\x33\x42\ \x44\x30\x40\x3c\x30\x41\x46\x48\x5c\x5c\x59\x6e\x77\x64\x74\x83\ \x3a\x48\x4c\x46\x56\x4e\x3f\x63\x67\x3a\x58\x5a\x3f\x51\x4e\x3a\ \x4b\x46\x00\x00\x00\x3d\x4c\x46\x3b\x48\x42\x40\x55\x52\x3e\x58\ \x4d\x31\x38\x30\x31\x30\x2c\x37\x40\x35\x36\x3b\x35\x34\x38\x32\ \x36\x3c\x38\x37\x3d\x34\x38\x3f\x39\x36\x38\x33\x34\x3f\x36\x3b\ \x41\x3f\x46\x4f\x4e\x3b\x41\x40\x3a\x41\x3e\x57\x6a\x76\x5a\x6b\ \x71\x47\x59\x58\x43\x5a\x59\x40\x59\x57\x46\x6c\x69\x46\x66\x63\ \x45\x64\x5f\x43\x58\x54\x43\x56\x52\x42\x5d\x5a\x3c\x55\x51\x3e\ \x50\x4c\x3a\x4b\x45\x44\x5a\x59\x4f\x5f\x65\x53\x5f\x60\x3d\x45\ \x45\x40\x51\x4d\x3a\x46\x42\x44\x56\x59\x3d\x49\x49\x44\x5e\x60\ \x48\x66\x67\x3e\x57\x58\x54\x65\x6e\x5c\x70\x7a\x42\x5b\x5c\x3e\ \x54\x51\x40\x51\x51\x42\x5a\x5a\x42\x5d\x5e\x42\x61\x61\x54\x6f\ \x79\x62\x7c\x91\x55\x68\x72\x3d\x55\x53\x41\x58\x56\x44\x64\x64\ \x50\x6c\x71\x4a\x61\x61\x49\x62\x68\x46\x58\x5b\x43\x53\x55\x4b\ \x5c\x63\x5d\x78\x87\x62\x7f\x90\x56\x6d\x79\x54\x6e\x7b\x48\x66\ \x6d\x3c\x54\x54\x47\x62\x67\x4a\x67\x6f\x40\x52\x54\x53\x68\x71\ \x58\x72\x7e\x4e\x6d\x76\x4c\x6c\x76\x3e\x55\x58\x3f\x50\x51\x3f\ \x57\x57\x3e\x47\x46\x5a\x67\x73\x5e\x71\x7f\x51\x67\x72\x54\x64\ \x6b\x62\x73\x81\x5e\x69\x76\x44\x4f\x4f\x4b\x59\x58\x3d\x4b\x47\ \x3b\x46\x3f\x49\x5c\x57\x43\x55\x55\x42\x50\x4c\x46\x4d\x48\x5d\ \x67\x6f\x64\x71\x7b\x69\x76\x83\x64\x6d\x7e\x50\x57\x5b\x54\x61\ \x62\x5c\x6c\x75\x55\x5b\x61\x50\x50\x53\x50\x53\x53\x53\x5a\x5d\ \x57\x5d\x60\x57\x59\x5b\x52\x53\x59\x52\x54\x56\x51\x55\x58\x45\ \x48\x4a\x52\x57\x5c\x58\x5f\x64\x4f\x55\x59\x50\x57\x5a\x52\x5d\ \x63\x58\x70\x7a\x51\x60\x66\x56\x6b\x6e\x6c\x7e\x88\x65\x83\x9c\ \x49\x5b\x65\x45\x51\x4c\x51\x69\x6d\x62\x7a\x8f\x45\x5c\x61\x44\ \x52\x4d\x52\x5b\x5e\x61\x66\x65\x66\x73\x71\x5e\x70\x78\x4f\x69\ \x69\x58\x6a\x6d\x53\x56\x56\x4e\x49\x40\x48\x48\x3d\x45\x53\x52\ \x4b\x54\x59\x5f\x6a\x6c\x5a\x66\x6e\x59\x67\x6f\x5b\x67\x6e\x53\ \x5b\x60\x57\x5e\x61\x46\x56\x5a\x2f\x40\x49\x32\x45\x4a\x39\x45\ \x4a\x38\x49\x4b\x31\x43\x44\x2d\x3d\x3e\x22\x3e\x3d\x3a\x51\x57\ \x3a\x4b\x50\x65\x72\x76\x64\x78\x86\x49\x55\x56\x38\x4b\x4f\x50\ \x5d\x59\x32\x56\x56\x38\x5b\x5b\x43\x5d\x61\x33\x46\x4c\x00\x00\ \x00\x3d\x4d\x48\x3b\x45\x3b\x37\x3f\x3b\x3f\x55\x4d\x32\x34\x2c\ \x33\x33\x2f\x37\x3c\x37\x36\x3a\x34\x2f\x30\x2a\x34\x35\x31\x36\ \x3b\x35\x3a\x40\x3c\x39\x3f\x38\x2e\x32\x29\x31\x34\x2c\x35\x39\ \x33\x31\x31\x2b\x32\x36\x30\x53\x68\x72\x60\x71\x76\x3f\x4e\x4c\ \x44\x64\x62\x3f\x58\x57\x46\x6d\x6a\x44\x64\x5f\x44\x63\x5d\x42\ \x5b\x57\x45\x59\x58\x41\x55\x52\x3f\x5a\x53\x3e\x51\x4c\x3a\x4d\ \x46\x44\x5c\x5b\x51\x64\x69\x58\x64\x66\x58\x62\x6b\x47\x56\x57\ \x3e\x4d\x4d\x4f\x63\x6c\x3f\x51\x51\x3a\x4b\x48\x44\x60\x60\x4c\ \x67\x72\x58\x6c\x77\x57\x6a\x71\x42\x5f\x62\x3b\x50\x4e\x40\x56\ \x58\x3a\x48\x45\x39\x4c\x4a\x3c\x59\x56\x56\x75\x85\x6a\x84\x98\ \x5c\x72\x82\x45\x63\x68\x3f\x55\x55\x47\x64\x68\x4d\x69\x70\x47\ \x60\x64\x4c\x65\x68\x42\x57\x55\x41\x59\x5e\x58\x6b\x75\x56\x6a\ \x77\x65\x81\x96\x53\x68\x77\x56\x6c\x7a\x46\x61\x69\x40\x59\x58\ \x4a\x62\x67\x50\x73\x82\x44\x5e\x66\x4f\x60\x6b\x45\x4f\x51\x5a\ \x73\x7f\x52\x6f\x7b\x41\x64\x6c\x3f\x4e\x4f\x3d\x4f\x50\x47\x52\ \x54\x5a\x6b\x7c\x5d\x71\x82\x4d\x60\x69\x4e\x61\x68\x5e\x70\x7d\ \x5a\x64\x6f\x40\x49\x47\x4e\x5a\x5d\x3f\x4d\x4b\x41\x51\x50\x43\ \x4f\x4c\x4b\x5d\x61\x41\x4d\x48\x47\x50\x4f\x5b\x69\x6f\x63\x75\ \x7f\x67\x73\x7e\x58\x60\x6b\x44\x49\x4a\x56\x61\x66\x5c\x6a\x73\ \x54\x58\x5f\x51\x54\x55\x50\x51\x52\x55\x58\x5a\x58\x59\x5d\x55\ \x59\x5e\x57\x59\x5c\x52\x55\x5d\x52\x56\x5d\x4f\x56\x5c\x5a\x62\ \x6d\x58\x5e\x65\x4e\x59\x5f\x58\x69\x71\x52\x63\x6b\x52\x65\x70\ \x4d\x59\x5f\x54\x65\x64\x6d\x7e\x89\x62\x7c\x8e\x42\x53\x55\x4f\ \x5c\x5b\x5b\x71\x76\x6e\x8d\xa8\x48\x67\x73\x4e\x60\x5d\x5d\x6c\ \x77\x6b\x64\x60\x5b\x5d\x55\x50\x4d\x47\x61\x71\x6f\x57\x5b\x5e\ \x54\x4d\x49\x56\x4d\x45\x51\x4f\x49\x44\x51\x4a\x4b\x58\x59\x5d\ \x68\x6c\x5a\x67\x6e\x5a\x68\x6c\x4a\x5a\x62\x4d\x5e\x66\x4b\x5c\ \x62\x40\x52\x59\x3c\x52\x58\x2f\x45\x50\x33\x49\x4b\x2e\x44\x47\ \x2a\x3c\x3e\x38\x4f\x57\x3a\x5a\x63\x45\x61\x62\x49\x5a\x60\x4c\ \x54\x51\x53\x63\x69\x3b\x4d\x53\x38\x40\x3c\x48\x4e\x47\x39\x55\ \x55\x31\x55\x56\x3e\x4d\x4c\x2e\x41\x4a\x00\x00\x00\x44\x55\x51\ \x39\x43\x37\x36\x3b\x36\x35\x3b\x33\x2f\x2f\x29\x36\x37\x31\x35\ \x37\x32\x33\x36\x30\x33\x36\x30\x3c\x40\x3c\x3a\x41\x3a\x3f\x4a\ \x43\x39\x41\x39\x32\x34\x2b\x2e\x30\x2a\x35\x37\x32\x36\x39\x35\ \x34\x3b\x33\x4e\x63\x6a\x5f\x70\x71\x3c\x50\x49\x46\x67\x64\x3f\ \x52\x4e\x44\x66\x66\x46\x65\x61\x46\x66\x63\x45\x5c\x5a\x47\x59\ \x59\x46\x56\x54\x41\x5d\x57\x3d\x53\x4d\x3a\x4f\x4b\x42\x5a\x57\ \x4f\x65\x67\x58\x68\x6e\x57\x60\x65\x44\x56\x56\x49\x5e\x62\x53\ \x69\x72\x41\x53\x53\x36\x3e\x3b\x45\x64\x62\x52\x6c\x75\x5a\x70\ \x7d\x57\x6d\x76\x4a\x65\x67\x3f\x59\x58\x42\x57\x53\x39\x40\x39\ \x35\x39\x35\x38\x4f\x4a\x55\x6d\x7e\x6b\x80\x95\x61\x7a\x8b\x4e\ \x6c\x73\x40\x5a\x57\x52\x71\x7a\x50\x6f\x7a\x4f\x63\x6b\x43\x5a\ \x5b\x40\x59\x57\x45\x60\x67\x5e\x6c\x76\x50\x5f\x6a\x64\x80\x93\ \x5d\x77\x8a\x58\x71\x83\x48\x65\x72\x3b\x52\x55\x4c\x5e\x67\x5a\ \x7c\x8f\x53\x6e\x7e\x4f\x5e\x6c\x3a\x3e\x3d\x5b\x6d\x75\x53\x66\ \x71\x4c\x67\x70\x46\x5b\x5f\x43\x55\x57\x54\x66\x71\x5e\x70\x86\ \x64\x7a\x90\x50\x5c\x64\x59\x66\x6e\x67\x77\x87\x58\x62\x70\x41\ \x48\x45\x4c\x5a\x59\x43\x53\x53\x4c\x60\x68\x45\x54\x55\x56\x67\ \x6d\x44\x52\x4e\x4b\x5a\x5a\x5c\x6c\x70\x5b\x6f\x7b\x54\x5b\x60\ \x46\x47\x49\x48\x4a\x49\x5f\x68\x70\x5b\x61\x67\x56\x58\x61\x52\ \x56\x5b\x4f\x51\x55\x52\x54\x56\x57\x59\x5e\x5a\x5e\x62\x5a\x5f\ \x65\x56\x5b\x62\x5a\x60\x6c\x59\x62\x6f\x5c\x67\x72\x5a\x62\x66\ \x53\x67\x6f\x5f\x73\x7e\x4c\x5e\x65\x53\x5e\x65\x56\x65\x71\x48\ \x52\x4e\x53\x59\x58\x50\x66\x6c\x46\x5e\x5e\x5b\x6a\x71\x68\x7e\ \x8c\x74\x94\xb0\x4e\x6e\x7f\x4f\x5a\x58\x52\x55\x50\x4e\x45\x3a\ \x48\x3e\x31\x4d\x44\x3b\x5c\x56\x4e\x59\x52\x4d\x59\x51\x4b\x57\ \x4a\x42\x56\x52\x4d\x3e\x4f\x48\x4e\x5f\x59\x59\x65\x67\x51\x60\ \x64\x47\x59\x5c\x43\x49\x45\x46\x58\x60\x3b\x53\x5c\x3f\x54\x57\ \x46\x62\x65\x39\x58\x65\x43\x59\x5c\x27\x42\x47\x2d\x46\x46\x71\ \x80\x80\x72\x8c\x9f\x71\x84\x88\x40\x4f\x5b\x31\x3c\x37\x3f\x58\ \x56\x42\x5a\x62\x46\x4d\x4d\x4e\x52\x4b\x49\x5a\x58\x30\x4b\x53\ \x29\x3c\x3c\x2e\x43\x45\x00\x00\x00\x40\x52\x4c\x3c\x47\x3e\x37\ \x3c\x34\x33\x37\x30\x2f\x31\x2a\x39\x3c\x36\x36\x39\x31\x33\x35\ \x2e\x30\x2e\x29\x37\x3a\x35\x3a\x40\x39\x3e\x48\x44\x37\x40\x35\ \x31\x33\x2a\x30\x33\x2b\x2f\x30\x29\x32\x36\x30\x31\x30\x2a\x44\ \x56\x59\x55\x64\x5f\x37\x4a\x44\x44\x5f\x5c\x43\x56\x54\x44\x60\ \x61\x45\x67\x64\x48\x69\x6a\x44\x5c\x5b\x45\x57\x56\x41\x58\x57\ \x46\x63\x66\x43\x63\x63\x3f\x54\x52\x42\x5c\x5a\x4c\x63\x64\x5b\ \x6a\x72\x59\x67\x75\x4f\x66\x70\x4e\x68\x6e\x4f\x64\x6a\x38\x45\ \x40\x34\x3a\x31\x41\x5e\x5c\x4c\x6a\x74\x5e\x77\x86\x5c\x76\x83\ \x49\x60\x60\x40\x54\x53\x46\x56\x5b\x3d\x47\x42\x3b\x45\x40\x3f\ \x55\x52\x51\x61\x6a\x71\x88\x9d\x63\x7a\x89\x4d\x6c\x73\x46\x64\ \x6b\x56\x78\x88\x4c\x6f\x79\x47\x5c\x62\x37\x40\x3a\x40\x59\x56\ \x49\x66\x69\x5f\x71\x83\x56\x66\x74\x60\x7c\x8d\x5d\x76\x88\x56\ \x6f\x7e\x51\x6e\x7f\x3f\x60\x66\x54\x65\x6c\x64\x83\x9b\x61\x7d\ \x94\x4c\x5b\x66\x33\x37\x2f\x4b\x52\x56\x52\x61\x67\x54\x6e\x7c\ \x4b\x62\x6b\x41\x52\x54\x64\x78\x8a\x60\x79\x89\x5a\x6a\x79\x53\ \x5d\x67\x57\x60\x68\x65\x74\x80\x4b\x50\x58\x41\x47\x43\x49\x56\ \x54\x4e\x5b\x5f\x5d\x6b\x73\x49\x57\x59\x54\x64\x64\x44\x50\x4d\ \x48\x54\x50\x5e\x68\x6e\x5d\x6d\x75\x53\x59\x62\x3c\x40\x40\x4f\ \x50\x4e\x61\x68\x6e\x5a\x5d\x61\x55\x5b\x5f\x54\x5a\x60\x4c\x50\ \x51\x50\x54\x55\x56\x5c\x61\x5d\x64\x65\x5e\x64\x6e\x5b\x65\x6e\ \x63\x6f\x7b\x60\x70\x81\x49\x56\x5a\x5b\x6a\x6f\x5b\x78\x8c\x5b\ \x71\x7f\x51\x61\x6e\x52\x59\x58\x55\x66\x72\x43\x51\x51\x3f\x44\ \x3c\x49\x5e\x5e\x5e\x70\x77\x6e\x84\x97\x73\x85\x97\x6a\x87\x9d\ \x59\x6f\x83\x4b\x4a\x45\x4a\x41\x36\x49\x3f\x2f\x4b\x41\x32\x50\ \x40\x36\x54\x49\x3d\x51\x42\x37\x54\x44\x3a\x4e\x43\x3a\x4c\x46\ \x39\x4d\x49\x43\x47\x4e\x4f\x43\x55\x58\x46\x57\x5d\x4a\x5b\x5d\ \x3a\x4c\x5c\x48\x59\x5d\x3e\x52\x5c\x35\x4f\x57\x31\x4c\x4e\x2d\ \x4a\x48\x34\x51\x50\x3c\x55\x5a\x65\x74\x78\x6c\x7e\x92\x86\x8c\ \x92\x64\x72\x83\x37\x44\x4a\x38\x4a\x42\x3d\x54\x57\x36\x4f\x58\ \x27\x2e\x32\x2c\x37\x35\x2d\x3e\x3e\x27\x3a\x3e\x30\x45\x41\x2b\ \x46\x44\x00\x00\x00\x45\x57\x52\x3f\x45\x41\x39\x43\x3c\x33\x35\ \x2e\x32\x33\x2d\x38\x3e\x39\x37\x3c\x34\x33\x35\x2e\x37\x3b\x36\ \x39\x3e\x39\x37\x3c\x37\x3e\x4a\x45\x39\x40\x3a\x33\x34\x2d\x30\ \x34\x2d\x33\x38\x30\x37\x3b\x37\x37\x3c\x33\x3b\x46\x43\x3f\x4b\ \x47\x3f\x4f\x4d\x44\x5c\x5b\x44\x55\x53\x45\x62\x60\x4d\x70\x6d\ \x46\x67\x64\x4a\x62\x64\x4a\x5f\x68\x47\x65\x6b\x59\x71\x83\x4d\ \x6f\x74\x44\x5c\x5f\x48\x5f\x61\x46\x5d\x61\x5c\x6e\x79\x53\x65\ \x69\x60\x79\x89\x53\x70\x7d\x4a\x62\x64\x37\x43\x3b\x36\x3f\x3a\ \x3d\x52\x4e\x42\x5a\x58\x5b\x75\x81\x64\x80\x8e\x43\x54\x50\x40\ \x4f\x4b\x4e\x5f\x5f\x3f\x4b\x49\x43\x51\x50\x4d\x61\x65\x3b\x45\ \x3e\x5c\x6f\x76\x64\x79\x88\x4d\x6a\x73\x47\x66\x6f\x4d\x57\x5c\ \x48\x65\x6a\x43\x56\x53\x3a\x44\x40\x41\x57\x54\x54\x6b\x6e\x61\ \x73\x80\x5b\x72\x81\x51\x66\x73\x5f\x7d\x92\x57\x75\x83\x4f\x68\ \x74\x38\x49\x4a\x5b\x6e\x7a\x64\x7f\x93\x65\x7f\x98\x4a\x56\x5f\ \x34\x38\x36\x3e\x42\x40\x49\x55\x56\x5d\x77\x86\x4e\x6a\x72\x4b\ \x5e\x62\x66\x7e\x94\x5e\x75\x85\x59\x67\x74\x5f\x6c\x79\x55\x5e\ \x6a\x57\x61\x69\x53\x59\x61\x49\x51\x53\x48\x56\x53\x4c\x53\x52\ \x5f\x6b\x71\x40\x47\x43\x3f\x48\x43\x3e\x49\x47\x4b\x52\x4f\x62\ \x72\x77\x60\x6a\x72\x57\x5d\x64\x3a\x3d\x3b\x45\x44\x3e\x59\x5d\ \x62\x5b\x5f\x65\x58\x5e\x65\x55\x5c\x61\x4e\x54\x5a\x52\x5c\x61\ \x5d\x66\x71\x61\x66\x71\x5c\x68\x70\x60\x6f\x7b\x61\x72\x82\x5c\ \x6d\x7e\x4b\x5b\x61\x5b\x6d\x70\x6b\x86\x9a\x5a\x72\x83\x52\x60\ \x69\x53\x5c\x61\x60\x74\x87\x49\x62\x67\x4c\x5e\x63\x56\x65\x64\ \x70\x85\x97\x76\x8e\xa0\x69\x7c\x91\x63\x7b\x87\x58\x61\x69\x47\ \x41\x37\x49\x40\x31\x4d\x41\x34\x3e\x4a\x3e\x4a\x48\x40\x4f\x4b\ \x44\x46\x46\x3a\x47\x44\x36\x4d\x45\x39\x57\x57\x50\x49\x55\x55\ \x3e\x57\x5a\x41\x5d\x62\x45\x5a\x5c\x43\x58\x5b\x40\x53\x5c\x50\ \x5e\x5f\x4b\x5d\x5f\x4b\x5e\x66\x3d\x57\x5d\x24\x3e\x48\x37\x54\ \x53\x7e\x8b\x85\x88\x94\x9d\x6f\x7d\x87\x77\x86\x87\x34\x4a\x5a\ \x3f\x4f\x53\x28\x3b\x3c\x2f\x50\x56\x23\x38\x3c\x25\x37\x36\x2c\ \x40\x44\x29\x40\x3f\x2a\x3d\x3a\x29\x3e\x3d\x26\x3b\x34\x00\x00\ \x00\x42\x56\x4f\x41\x48\x43\x3e\x49\x42\x37\x3b\x34\x35\x39\x33\ \x3e\x49\x44\x37\x3b\x35\x35\x37\x2f\x38\x3e\x36\x3a\x40\x37\x38\ \x3d\x37\x3e\x4d\x47\x36\x3c\x32\x32\x34\x2c\x31\x37\x2f\x34\x37\ \x31\x35\x36\x32\x39\x3a\x36\x2f\x30\x28\x41\x54\x53\x43\x54\x50\ \x43\x59\x57\x40\x50\x4d\x3c\x4e\x4c\x4d\x69\x66\x46\x65\x63\x4c\ \x62\x66\x4e\x63\x69\x44\x62\x61\x52\x69\x73\x5c\x77\x84\x50\x6c\ \x75\x50\x68\x70\x3d\x57\x5b\x50\x61\x64\x41\x55\x54\x58\x72\x7e\ \x58\x73\x7c\x43\x5f\x5d\x39\x48\x41\x38\x44\x3e\x39\x48\x41\x3d\ \x51\x4b\x55\x6c\x74\x63\x80\x8e\x3a\x42\x3e\x38\x3f\x3a\x49\x5c\ \x5c\x41\x52\x51\x4e\x63\x65\x51\x64\x68\x3b\x3e\x3e\x42\x47\x47\ \x5d\x68\x70\x47\x57\x59\x50\x6c\x73\x54\x62\x6d\x44\x5a\x5a\x3f\ \x55\x51\x3b\x48\x42\x3c\x4c\x4b\x4e\x65\x69\x64\x7b\x8b\x55\x68\ \x76\x3f\x4b\x4d\x64\x82\x94\x5e\x79\x8d\x4d\x65\x71\x45\x52\x55\ \x5c\x6d\x77\x60\x77\x89\x64\x80\x98\x48\x56\x5b\x3b\x43\x42\x3a\ \x42\x3f\x40\x4e\x4b\x57\x6b\x74\x4c\x67\x6c\x51\x64\x69\x6d\x84\ \x9a\x66\x78\x8a\x5c\x6b\x79\x5c\x6d\x7a\x54\x5e\x68\x59\x60\x69\ \x5d\x66\x6c\x54\x5c\x5e\x42\x4e\x4a\x40\x43\x3f\x49\x4c\x4b\x45\ \x47\x41\x51\x57\x56\x3f\x47\x43\x4d\x52\x50\x5b\x6a\x6d\x57\x5c\ \x5e\x54\x5a\x5d\x3e\x3f\x3a\x42\x41\x3a\x59\x61\x67\x5a\x62\x69\ \x5f\x64\x6f\x58\x5e\x64\x54\x5f\x68\x5c\x6a\x75\x62\x71\x7d\x61\ \x6d\x7b\x4c\x5b\x62\x56\x64\x66\x62\x76\x83\x5f\x73\x85\x4e\x64\ \x6a\x54\x61\x66\x6c\x81\x90\x5c\x74\x84\x57\x69\x77\x59\x69\x71\ \x6d\x81\x95\x60\x76\x86\x4d\x61\x6b\x5e\x5b\x5a\x62\x6e\x7a\x59\ \x65\x67\x5b\x5e\x61\x53\x62\x63\x51\x4a\x49\x49\x3e\x33\x4b\x40\ \x31\x50\x46\x3a\x50\x48\x3c\x4f\x4a\x3d\x49\x52\x4e\x3c\x49\x40\ \x3b\x4b\x43\x4e\x4b\x3b\x4a\x4a\x3d\x30\x4b\x4e\x34\x53\x53\x33\ \x50\x53\x2b\x4d\x54\x32\x4a\x4e\x3e\x54\x58\x42\x52\x59\x3b\x4b\ \x45\x58\x6e\x70\x45\x65\x68\x58\x79\x95\x3d\x64\x70\x40\x58\x5d\ \x5f\x6b\x6b\x48\x5b\x60\x31\x45\x4c\x31\x4e\x52\x37\x50\x53\x2a\ \x41\x40\x34\x50\x4d\x39\x53\x50\x2c\x41\x3b\x30\x4f\x59\x29\x3a\ \x36\x28\x39\x37\x27\x37\x33\x28\x42\x42\x00\x00\x00\x44\x56\x51\ \x44\x52\x48\x3a\x43\x39\x3a\x44\x3b\x37\x3b\x34\x3c\x45\x40\x38\ \x3b\x37\x33\x34\x2d\x39\x40\x37\x3b\x48\x3d\x39\x40\x38\x3f\x4d\ \x49\x37\x3d\x35\x35\x36\x30\x3b\x48\x3f\x3c\x47\x3f\x39\x3e\x3b\ \x35\x37\x31\x35\x39\x34\x42\x58\x56\x44\x5a\x55\x41\x57\x51\x42\ \x4f\x4a\x42\x5a\x59\x4b\x66\x62\x47\x64\x60\x4c\x60\x61\x44\x53\ \x52\x3f\x58\x54\x51\x68\x6e\x63\x7a\x8a\x62\x7d\x8c\x5b\x74\x7f\ \x40\x59\x5a\x3c\x4c\x49\x41\x59\x55\x4d\x6c\x71\x53\x6f\x76\x43\ \x61\x5d\x3b\x4c\x46\x41\x55\x54\x39\x40\x3b\x44\x55\x50\x55\x69\ \x71\x5b\x76\x80\x3a\x42\x3c\x3e\x43\x41\x4a\x63\x68\x4d\x69\x72\ \x54\x70\x7a\x4f\x63\x67\x38\x3f\x3d\x3b\x3d\x3c\x53\x60\x64\x52\ \x63\x66\x56\x68\x6e\x5e\x68\x6f\x4e\x6a\x6a\x3d\x54\x4e\x39\x49\ \x43\x46\x5a\x5e\x50\x69\x6f\x68\x82\x95\x4b\x5a\x64\x40\x4c\x4e\ \x57\x6f\x7c\x5d\x7a\x8e\x53\x69\x75\x44\x54\x56\x4c\x59\x5f\x5d\ \x6e\x7e\x5b\x74\x85\x48\x54\x57\x42\x50\x51\x3e\x49\x4a\x37\x44\ \x3f\x45\x4d\x4c\x4f\x65\x6c\x52\x63\x6a\x69\x7b\x8a\x64\x76\x8b\ \x5c\x69\x73\x5b\x6b\x77\x55\x5f\x66\x5e\x64\x6b\x60\x6a\x6f\x56\ \x5e\x5e\x3e\x44\x40\x48\x47\x45\x44\x46\x45\x49\x47\x42\x59\x5d\ \x61\x47\x4d\x4a\x54\x58\x5a\x52\x5c\x5c\x5b\x62\x66\x4b\x4f\x50\ \x43\x44\x42\x40\x43\x38\x5b\x6b\x6b\x5c\x66\x6d\x60\x67\x6d\x5c\ \x62\x6c\x55\x64\x6d\x5d\x6d\x77\x56\x63\x6a\x55\x66\x6d\x42\x53\ \x55\x50\x5c\x61\x58\x6b\x73\x5b\x6c\x73\x5b\x71\x79\x59\x6d\x7e\ \x65\x77\x81\x5b\x74\x85\x59\x70\x7a\x63\x77\x80\x71\x86\x9d\x71\ \x81\x90\x52\x62\x70\x5e\x58\x58\x57\x55\x56\x55\x53\x53\x5c\x57\ \x58\x55\x57\x58\x4f\x47\x41\x4a\x3d\x2e\x4d\x40\x30\x4e\x44\x34\ \x53\x45\x34\x53\x47\x38\x54\x51\x46\x3a\x44\x38\x2e\x46\x3e\x48\ \x4a\x3e\x3f\x43\x38\x29\x3d\x3a\x37\x4d\x49\x2e\x4c\x4e\x2b\x47\ \x48\x3b\x5c\x62\x4c\x5c\x5f\x39\x58\x5f\x3e\x54\x56\x30\x4b\x4e\ \x40\x55\x52\x64\x84\x85\x2f\x53\x65\x25\x47\x49\x23\x42\x45\x29\ \x45\x48\x2d\x43\x47\x34\x4f\x51\x38\x51\x53\x3f\x53\x56\x42\x53\ \x53\x33\x44\x41\x33\x46\x41\x30\x4a\x5d\x24\x38\x35\x2c\x40\x40\ \x3a\x52\x55\x37\x58\x56\x00\x00\x00\x43\x52\x4f\x48\x56\x50\x3d\ \x48\x41\x3f\x4e\x47\x38\x3c\x36\x39\x3d\x36\x38\x3b\x35\x37\x3a\ \x33\x3b\x46\x41\x3f\x4e\x47\x3b\x45\x3f\x3a\x48\x3e\x39\x40\x39\ \x37\x3c\x34\x39\x45\x3e\x3f\x4d\x47\x39\x3f\x37\x3f\x4c\x4b\x42\ \x50\x4c\x46\x58\x5a\x46\x64\x5f\x43\x5f\x59\x44\x53\x4f\x44\x5c\ \x58\x4a\x69\x6b\x49\x67\x66\x41\x51\x49\x3a\x45\x40\x3e\x55\x4f\ \x42\x55\x53\x60\x75\x84\x67\x7e\x8c\x62\x7c\x86\x45\x5f\x63\x3f\ \x56\x59\x3d\x51\x4e\x45\x68\x68\x4a\x68\x70\x42\x63\x5f\x3a\x4e\ \x49\x45\x59\x5a\x3a\x41\x3a\x41\x4a\x47\x53\x64\x6c\x4f\x65\x68\ \x38\x41\x3a\x3c\x41\x3f\x52\x6a\x6f\x60\x81\x90\x60\x7f\x8e\x4b\ \x60\x61\x39\x3f\x3c\x39\x40\x3e\x4e\x5b\x59\x53\x67\x6c\x52\x63\ \x67\x5a\x64\x6c\x45\x65\x64\x40\x53\x4f\x3a\x43\x3e\x46\x56\x56\ \x4d\x5f\x62\x62\x78\x87\x4c\x59\x62\x3c\x47\x48\x47\x55\x59\x5e\ \x7a\x8b\x58\x6c\x75\x40\x4f\x52\x50\x5f\x67\x4c\x59\x60\x4b\x59\ \x5c\x4a\x5c\x5f\x49\x5f\x64\x43\x53\x56\x39\x43\x40\x46\x4b\x4a\ \x5a\x68\x74\x58\x6c\x74\x66\x77\x83\x58\x68\x76\x54\x61\x67\x54\ \x64\x6c\x54\x5e\x65\x61\x69\x6f\x59\x5f\x60\x54\x5b\x5d\x3f\x40\ \x3b\x51\x50\x4f\x50\x53\x56\x4a\x4b\x4a\x55\x58\x5c\x4f\x54\x55\ \x55\x57\x57\x5b\x61\x63\x59\x5f\x67\x50\x51\x51\x3f\x40\x3f\x3f\ \x49\x44\x51\x66\x66\x57\x65\x69\x5a\x64\x68\x5c\x68\x72\x4b\x5b\ \x5e\x55\x68\x6c\x4b\x5b\x60\x48\x53\x52\x4f\x63\x6d\x5b\x69\x73\ \x61\x78\x86\x5a\x6e\x7b\x60\x76\x81\x5a\x70\x86\x5d\x6c\x72\x64\ \x7e\x8e\x5d\x7a\x8a\x6d\x86\x99\x69\x7c\x91\x77\x88\x9a\x5b\x5b\ \x63\x62\x5d\x5c\x58\x51\x51\x5d\x55\x51\x60\x5b\x5c\x54\x4e\x4a\ \x4c\x40\x32\x4c\x42\x32\x4e\x43\x34\x50\x48\x3a\x52\x46\x38\x51\ \x49\x3c\x47\x4b\x3f\x36\x43\x38\x2c\x44\x3d\x31\x43\x40\x29\x3c\ \x37\x23\x37\x33\x28\x3a\x34\x2c\x44\x43\x34\x52\x5b\x41\x59\x59\ \x4d\x67\x6c\x2a\x48\x4a\x2f\x4d\x4f\x41\x5b\x5c\x5c\x71\x72\x55\ \x7a\x8f\x4d\x65\x71\x46\x5c\x63\x4e\x63\x65\x43\x5d\x68\x2e\x45\ \x4d\x30\x46\x47\x2f\x3e\x3f\x33\x45\x45\x3a\x4c\x4e\x2c\x42\x40\ \x43\x5b\x59\x38\x53\x55\x43\x59\x5b\x36\x4f\x54\x2f\x4b\x4c\x31\ \x4b\x47\x00\x00\x00\x47\x59\x59\x4a\x5c\x5b\x42\x52\x4b\x42\x4f\ \x4b\x40\x43\x3f\x3c\x3f\x39\x39\x3d\x37\x38\x3b\x33\x3e\x4a\x44\ \x43\x55\x51\x3d\x4e\x46\x39\x47\x3e\x3c\x44\x3c\x33\x35\x2e\x3f\ \x50\x49\x44\x53\x4e\x43\x4f\x4c\x4d\x65\x65\x47\x57\x54\x4c\x56\ \x5a\x46\x67\x66\x45\x64\x5f\x45\x56\x4f\x42\x54\x4d\x47\x6c\x69\ \x4c\x6f\x6d\x43\x53\x4e\x35\x3c\x38\x3f\x58\x51\x41\x59\x53\x54\ \x68\x71\x5e\x77\x88\x64\x7d\x8b\x5a\x7b\x8c\x50\x75\x82\x41\x53\ \x54\x43\x64\x5f\x47\x61\x60\x43\x60\x5d\x3f\x59\x59\x44\x56\x56\ \x38\x40\x38\x43\x4a\x4a\x58\x66\x71\x4a\x61\x62\x37\x42\x3a\x3b\ \x3d\x3b\x52\x64\x66\x65\x84\x91\x60\x81\x8d\x47\x5c\x5f\x40\x4c\ \x49\x47\x50\x51\x48\x5c\x5b\x49\x61\x62\x50\x65\x69\x56\x5d\x5f\ \x49\x6c\x6a\x41\x58\x55\x3d\x45\x43\x45\x55\x59\x54\x6c\x75\x57\ \x67\x73\x4f\x64\x6a\x43\x4e\x51\x4a\x59\x60\x5a\x71\x80\x5c\x73\ \x83\x46\x59\x62\x5a\x70\x7e\x44\x52\x57\x46\x4d\x50\x58\x6a\x76\ \x57\x70\x7f\x47\x59\x5a\x3b\x46\x42\x44\x4c\x49\x5e\x6a\x76\x54\ \x68\x6f\x5a\x6a\x6d\x52\x5d\x63\x44\x51\x52\x49\x55\x54\x5c\x66\ \x6c\x61\x68\x72\x5a\x5b\x5f\x4a\x53\x51\x42\x47\x40\x5a\x5b\x5c\ \x54\x57\x5c\x56\x58\x58\x5a\x5d\x62\x54\x59\x5d\x56\x59\x57\x5e\ \x62\x66\x4f\x53\x57\x52\x56\x55\x44\x48\x48\x4f\x66\x6b\x4d\x62\ \x60\x56\x67\x6d\x54\x62\x69\x4d\x5b\x5d\x4b\x5d\x62\x51\x65\x69\ \x53\x69\x76\x54\x5f\x61\x6c\x83\x96\x65\x79\x8e\x6e\x82\x95\x67\ \x7d\x90\x6c\x85\x98\x67\x82\x9d\x51\x5f\x65\x7a\x89\x98\x6e\x80\ \x94\x7e\x92\xa6\x62\x6d\x80\x5d\x5a\x58\x5c\x56\x55\x62\x5d\x5e\ \x63\x5c\x5c\x64\x5c\x5a\x64\x5f\x60\x4d\x48\x3f\x4d\x42\x30\x4f\ \x46\x35\x52\x48\x39\x50\x46\x39\x50\x44\x36\x4f\x49\x3b\x3c\x49\ \x41\x2b\x3e\x36\x26\x3a\x34\x23\x3a\x39\x1e\x34\x31\x18\x2b\x2a\ \x20\x33\x31\x28\x3d\x3a\x3a\x4e\x53\x42\x52\x4f\x3e\x61\x6e\x3c\ \x5e\x63\x62\x77\x78\x6a\x79\x7f\x68\x73\x72\x4b\x68\x7a\x47\x4d\ \x4c\x46\x4f\x51\x4f\x60\x65\x3b\x57\x62\x26\x40\x37\x2c\x47\x46\ \x23\x41\x3e\x38\x47\x42\x3f\x51\x4a\x4d\x61\x61\x45\x57\x5d\x45\ \x5c\x5d\x51\x67\x6c\x35\x4f\x56\x30\x49\x4e\x33\x46\x41\x00\x00\ \x00\x48\x58\x56\x4a\x59\x55\x4a\x5c\x5a\x40\x52\x48\x3f\x48\x43\ \x3b\x41\x3b\x3d\x45\x3b\x3b\x40\x38\x3c\x47\x3f\x42\x55\x50\x41\ \x54\x4b\x39\x43\x39\x3a\x44\x3d\x3d\x45\x40\x40\x55\x4d\x45\x57\ \x52\x43\x53\x52\x50\x72\x73\x46\x58\x55\x52\x58\x52\x40\x53\x4e\ \x46\x61\x5b\x4a\x60\x59\x3c\x4a\x41\x43\x62\x5c\x49\x69\x65\x47\ \x57\x54\x3d\x42\x3e\x3e\x52\x4d\x44\x56\x56\x55\x6a\x72\x69\x80\ \x96\x6c\x86\x97\x66\x82\x90\x5b\x79\x82\x42\x5b\x57\x41\x5e\x5a\ \x49\x62\x60\x45\x5e\x5b\x41\x52\x50\x3f\x41\x40\x3d\x4a\x44\x48\ \x56\x54\x62\x6e\x76\x4c\x62\x62\x3f\x4f\x4c\x46\x55\x52\x54\x69\ \x6f\x69\x89\x9e\x61\x80\x8b\x46\x5c\x5d\x4d\x5a\x5e\x48\x53\x53\ \x4d\x66\x64\x4d\x67\x68\x55\x6c\x72\x52\x5a\x5c\x46\x60\x61\x4a\ \x67\x66\x40\x4d\x49\x49\x54\x56\x5b\x71\x7c\x60\x75\x80\x50\x66\ \x6f\x44\x4f\x54\x50\x66\x71\x55\x6e\x79\x65\x7c\x8a\x5b\x73\x85\ \x64\x7c\x8e\x48\x5b\x61\x4c\x58\x5c\x62\x72\x78\x60\x77\x88\x49\ \x5f\x5c\x3e\x4d\x4a\x44\x4c\x4a\x59\x61\x63\x4c\x5d\x5d\x52\x60\ \x61\x51\x5a\x63\x48\x52\x50\x47\x56\x54\x5c\x66\x67\x5d\x63\x6a\ \x5b\x5d\x5e\x40\x44\x42\x4c\x52\x4e\x5b\x5d\x63\x57\x59\x5b\x5b\ \x5f\x64\x59\x5d\x63\x51\x59\x5a\x53\x58\x56\x5e\x64\x6a\x43\x47\ \x45\x57\x5f\x66\x54\x62\x65\x5a\x6f\x7a\x49\x60\x60\x54\x62\x63\ \x4e\x56\x58\x5a\x70\x7d\x5d\x72\x81\x69\x7e\x92\x5b\x73\x84\x58\ \x6c\x75\x6e\x82\x91\x6d\x83\x9a\x72\x85\x99\x77\x8c\xa6\x6a\x82\ \x98\x63\x74\x80\x63\x6f\x7b\x5f\x5b\x5b\x61\x63\x6b\x6f\x74\x77\ \x56\x59\x60\x55\x4b\x45\x58\x51\x4e\x5b\x50\x49\x6c\x66\x64\x6c\ \x67\x67\x67\x62\x62\x4e\x4c\x3f\x50\x47\x36\x56\x4d\x41\x52\x47\ \x39\x49\x53\x46\x57\x52\x4a\x3f\x54\x54\x2b\x45\x40\x24\x46\x42\ \x25\x3d\x35\x25\x3c\x38\x1a\x30\x33\x19\x2f\x2b\x24\x3c\x3a\x26\ \x3c\x3d\x41\x5b\x5f\x4f\x6d\x71\x42\x5e\x65\x5b\x71\x72\x48\x63\ \x66\x4a\x63\x63\x31\x4a\x55\x33\x4d\x54\x24\x3a\x36\x40\x53\x4f\ \x52\x6b\x75\x2e\x4c\x4e\x2c\x44\x3d\x3a\x4c\x4c\x39\x4c\x46\x38\ \x46\x42\x43\x52\x4d\x6a\x6d\x69\x51\x66\x72\x31\x49\x4e\x3a\x56\ \x54\x25\x42\x43\x31\x4e\x4e\x30\x3c\x3b\x00\x00\x00\x45\x54\x54\ \x4b\x5a\x57\x42\x51\x4d\x46\x5a\x58\x46\x53\x4e\x3d\x46\x3e\x44\ \x55\x50\x41\x49\x43\x3e\x44\x3d\x42\x50\x4c\x43\x5b\x58\x3b\x46\ \x3c\x3d\x4d\x48\x40\x49\x46\x3f\x49\x41\x42\x52\x4e\x44\x59\x5a\ \x54\x78\x78\x3c\x40\x37\x31\x2f\x25\x37\x40\x3b\x49\x68\x63\x46\ \x5f\x59\x41\x50\x49\x48\x66\x63\x48\x69\x64\x48\x5c\x5a\x3c\x45\ \x3e\x3b\x48\x47\x48\x59\x57\x57\x69\x75\x65\x78\x8c\x66\x79\x87\ \x5a\x6c\x74\x4d\x6c\x70\x45\x5e\x5d\x43\x5f\x5b\x46\x60\x5e\x45\ \x5e\x5b\x3b\x44\x3f\x44\x4f\x4d\x3c\x47\x3f\x44\x4d\x49\x5d\x69\ \x70\x4f\x5d\x61\x45\x5b\x58\x46\x57\x54\x50\x5f\x63\x68\x89\x9b\ \x5b\x7a\x84\x4a\x62\x66\x53\x61\x67\x43\x53\x50\x44\x5d\x5b\x48\ \x61\x5f\x53\x6f\x74\x50\x5a\x60\x48\x60\x60\x4b\x64\x67\x4b\x58\ \x5b\x54\x61\x6d\x5b\x6c\x79\x5e\x73\x83\x54\x6a\x77\x4c\x5a\x60\ \x63\x7b\x8d\x51\x69\x74\x67\x7b\x8f\x77\x8e\xa5\x60\x77\x8a\x55\ \x69\x71\x58\x62\x65\x62\x6e\x75\x6a\x80\x90\x47\x61\x66\x40\x4f\ \x4f\x4c\x59\x5c\x54\x57\x5a\x45\x51\x4f\x5b\x70\x7c\x43\x4c\x4d\ \x40\x49\x44\x4e\x5e\x60\x56\x5f\x60\x56\x5a\x5d\x54\x59\x5c\x44\ \x48\x47\x59\x5e\x63\x58\x5c\x62\x5a\x5e\x63\x5f\x64\x67\x57\x5d\ \x65\x46\x4d\x4a\x4f\x54\x52\x4f\x55\x55\x47\x4c\x4a\x63\x72\x7e\ \x62\x74\x80\x5d\x74\x85\x56\x73\x82\x4a\x5f\x64\x56\x62\x68\x6f\ \x84\x9a\x6d\x83\x98\x6f\x85\x9b\x65\x7d\x92\x5b\x73\x80\x72\x85\ \x97\x79\x8f\xa7\x74\x83\x97\x6e\x76\x85\x5a\x62\x6a\x60\x5c\x59\ \x58\x52\x55\x56\x4e\x4d\x5a\x53\x53\x5c\x55\x54\x55\x4f\x4e\x53\ \x47\x44\x55\x49\x42\x60\x57\x54\x64\x5e\x5b\x6c\x66\x61\x5f\x5b\ \x59\x50\x41\x35\x51\x46\x36\x54\x4a\x3d\x54\x4d\x40\x5a\x51\x42\ \x4f\x5d\x5c\x30\x4f\x45\x27\x4b\x49\x23\x3f\x40\x24\x3a\x37\x29\ \x3e\x38\x25\x3b\x38\x2a\x4a\x4f\x3d\x59\x5a\x44\x5b\x5a\x56\x6c\ \x75\x4c\x5e\x61\x59\x68\x6c\x61\x6e\x6e\x66\x7f\x90\x66\x7d\x85\ \x5c\x77\x8c\x29\x3c\x3b\x4d\x62\x66\x52\x5c\x5c\x51\x61\x65\x45\ \x5b\x61\x3b\x4a\x4a\x2c\x44\x4c\x35\x48\x42\x42\x4b\x43\x3b\x59\ \x5b\x47\x5a\x59\x31\x46\x47\x25\x3f\x45\x2a\x45\x43\x25\x3f\x40\ \x29\x3f\x3a\x1d\x36\x39\x00\x00\x00\x43\x51\x4d\x4a\x5c\x58\x3d\ \x48\x43\x45\x5a\x58\x46\x51\x4c\x3e\x48\x45\x46\x56\x54\x41\x4b\ \x42\x40\x4b\x43\x3d\x46\x3d\x3d\x4f\x4c\x3b\x4a\x44\x3b\x43\x41\ \x4b\x55\x56\x45\x4d\x48\x45\x5a\x58\x4b\x66\x67\x51\x6f\x6f\x38\ \x3c\x34\x34\x31\x2b\x39\x3e\x3c\x48\x65\x61\x4a\x63\x5e\x40\x4c\ \x44\x43\x58\x53\x47\x62\x5e\x45\x5a\x53\x3f\x48\x42\x33\x3a\x33\ \x48\x59\x59\x5b\x6d\x79\x63\x76\x84\x59\x63\x6a\x58\x62\x68\x49\ \x64\x65\x45\x61\x5e\x40\x5b\x59\x44\x5f\x5b\x3e\x52\x4d\x3e\x49\ \x48\x4a\x59\x58\x40\x52\x4d\x42\x4e\x49\x57\x61\x65\x47\x55\x52\ \x45\x5a\x55\x47\x58\x57\x4b\x59\x5e\x6d\x87\x9c\x57\x79\x82\x4f\ \x6b\x70\x50\x63\x66\x43\x57\x57\x47\x5c\x59\x45\x5d\x5a\x51\x6d\ \x71\x5d\x72\x7f\x47\x5d\x5d\x47\x5f\x60\x4d\x5d\x63\x55\x64\x72\ \x63\x76\x85\x66\x7b\x8c\x53\x6e\x78\x52\x69\x71\x67\x7b\x8c\x54\ \x70\x7c\x6d\x85\x97\x72\x88\xa1\x5c\x6f\x7a\x53\x5e\x63\x53\x59\ \x59\x5a\x64\x6a\x5b\x67\x6b\x4b\x68\x72\x4a\x5a\x5b\x58\x64\x6a\ \x55\x57\x5a\x3c\x40\x38\x52\x62\x67\x42\x48\x45\x4e\x54\x55\x55\ \x5e\x60\x4f\x55\x55\x4a\x4d\x4b\x43\x48\x44\x53\x55\x58\x60\x64\ \x70\x5b\x63\x69\x5e\x66\x6a\x63\x69\x6e\x54\x5b\x63\x44\x50\x4d\ \x4a\x58\x5a\x41\x4a\x48\x50\x59\x58\x6c\x83\x91\x56\x67\x6e\x66\ \x7b\x8c\x60\x79\x88\x5a\x73\x7d\x64\x75\x7f\x72\x87\x9a\x74\x87\ \x9d\x71\x83\x9a\x72\x85\x9c\x64\x78\x8d\x69\x6e\x76\x6f\x78\x84\ \x6e\x6f\x76\x66\x60\x5f\x5e\x5b\x5c\x51\x4b\x47\x5b\x4e\x4d\x5e\ \x57\x56\x5d\x56\x55\x61\x5a\x59\x59\x51\x52\x4f\x41\x3a\x55\x47\ \x3c\x61\x56\x4f\x59\x50\x48\x60\x56\x50\x55\x4d\x42\x50\x40\x32\ \x4a\x4c\x41\x4a\x46\x3a\x41\x45\x39\x3d\x44\x39\x40\x49\x42\x2d\ \x3e\x34\x23\x3a\x36\x20\x37\x32\x28\x46\x43\x1c\x38\x35\x36\x4c\ \x4e\x29\x48\x4a\x36\x4d\x4c\x3f\x54\x58\x35\x4c\x56\x4a\x5b\x59\ \x6b\x7d\x82\x9e\xa8\xaf\x9b\xa7\xb3\x65\x7a\x86\x42\x5e\x68\x45\ \x53\x4f\x4c\x4f\x4f\x4d\x54\x4e\x53\x60\x63\x54\x5d\x60\x4f\x55\ \x56\x36\x51\x4e\x29\x48\x49\x36\x4b\x43\x3d\x55\x51\x2c\x4a\x4d\ \x29\x42\x44\x24\x3c\x3f\x24\x3b\x3c\x22\x39\x39\x30\x4a\x48\x28\ \x3e\x40\x00\x00\x00\x42\x51\x4f\x40\x4f\x4b\x38\x41\x3a\x45\x5d\ \x5c\x44\x54\x52\x44\x50\x51\x46\x55\x51\x40\x47\x40\x3f\x49\x47\ \x3f\x4d\x48\x3e\x4f\x4a\x3f\x4c\x47\x3c\x48\x46\x56\x64\x6d\x45\ \x4c\x44\x45\x58\x54\x4e\x6d\x6f\x48\x60\x5a\x35\x38\x2f\x34\x33\ \x2c\x37\x3a\x36\x48\x66\x64\x4d\x69\x65\x48\x56\x50\x3f\x52\x4b\ \x4b\x6c\x6b\x46\x61\x5b\x41\x4b\x47\x34\x38\x2f\x47\x55\x5a\x5e\ \x73\x7f\x68\x7a\x89\x5b\x66\x6f\x5b\x66\x6a\x43\x57\x57\x45\x67\ \x65\x41\x5e\x5a\x41\x59\x56\x3e\x4f\x49\x44\x52\x53\x4d\x5f\x62\ \x43\x56\x4f\x44\x50\x4d\x51\x5e\x60\x45\x53\x52\x44\x57\x53\x49\ \x5f\x5f\x50\x62\x68\x65\x7e\x8f\x55\x75\x80\x4c\x66\x69\x47\x60\ \x5e\x47\x5c\x5c\x46\x55\x51\x47\x61\x5e\x56\x72\x78\x62\x7a\x8a\ \x55\x6e\x78\x4c\x69\x71\x59\x6e\x7c\x54\x66\x72\x61\x72\x80\x63\ \x78\x87\x55\x68\x6f\x62\x76\x85\x5e\x6c\x79\x63\x74\x81\x77\x8c\ \x9f\x67\x7b\x8a\x58\x5d\x60\x51\x57\x5b\x4e\x53\x52\x53\x5e\x60\ \x4b\x51\x51\x55\x6a\x6f\x49\x5a\x5e\x5d\x64\x68\x4d\x51\x55\x39\ \x39\x31\x4d\x56\x54\x46\x4c\x4b\x55\x5b\x5f\x55\x5a\x5d\x4f\x57\ \x5a\x48\x4f\x4e\x3a\x3e\x38\x5d\x62\x67\x62\x6c\x7b\x61\x6c\x76\ \x62\x6b\x76\x59\x60\x65\x47\x4e\x50\x49\x59\x53\x5a\x72\x7a\x4b\ \x5f\x65\x66\x77\x7f\x6c\x87\x98\x54\x67\x6b\x67\x80\x92\x5d\x77\ \x84\x65\x7c\x86\x62\x74\x7f\x64\x75\x84\x74\x81\x8f\x74\x81\x92\ \x79\x87\x98\x6a\x72\x81\x50\x4d\x4d\x57\x51\x4f\x56\x50\x4c\x55\ \x4e\x46\x5c\x56\x53\x54\x4c\x47\x5d\x53\x50\x5f\x54\x51\x61\x57\ \x55\x66\x5e\x5c\x5d\x59\x59\x4e\x44\x3a\x4f\x44\x35\x58\x4e\x3f\ \x53\x49\x3d\x58\x4b\x42\x52\x46\x38\x52\x46\x3a\x42\x59\x54\x32\ \x49\x45\x35\x4b\x47\x2a\x49\x49\x1f\x3a\x33\x24\x40\x37\x21\x43\ \x42\x26\x3d\x3a\x47\x55\x4e\x52\x67\x6b\x4d\x67\x6c\x3d\x61\x69\ \x57\x6f\x76\x66\x76\x7e\x6c\x81\x8d\x7f\x88\x85\xa4\xae\xb5\xa3\ \xac\xb3\x95\xa4\xb5\x6c\x71\x7a\x57\x6b\x72\x4f\x5c\x62\x3f\x46\ \x48\x48\x4a\x45\x46\x50\x4e\x53\x57\x55\x52\x50\x4b\x55\x58\x54\ \x3c\x4f\x50\x3b\x45\x40\x4e\x4f\x47\x37\x55\x56\x1e\x3d\x3d\x2f\ \x4b\x48\x30\x49\x4b\x31\x4a\x4a\x34\x4f\x50\x30\x48\x46\x00\x00\ \x00\x42\x53\x52\x3f\x4a\x44\x39\x44\x3c\x40\x56\x55\x44\x59\x59\ \x46\x59\x58\x48\x5b\x55\x41\x45\x41\x42\x47\x42\x3d\x45\x41\x3d\ \x48\x43\x42\x4d\x49\x46\x56\x55\x5d\x6f\x77\x49\x4e\x49\x42\x50\ \x4c\x4d\x6b\x6a\x46\x58\x53\x38\x3e\x33\x38\x37\x30\x3b\x39\x34\ \x45\x5e\x5e\x4c\x6b\x66\x47\x59\x53\x45\x60\x5d\x4c\x71\x6f\x45\ \x5f\x5c\x3f\x4d\x47\x39\x3f\x36\x45\x55\x58\x5b\x6a\x6f\x63\x77\ \x89\x4e\x53\x54\x45\x4b\x48\x3b\x48\x43\x49\x6c\x69\x3f\x55\x4f\ \x3f\x50\x4a\x40\x54\x50\x49\x5f\x65\x51\x6a\x73\x47\x5b\x59\x47\ \x55\x53\x4b\x59\x5a\x4b\x5e\x5f\x46\x59\x56\x48\x61\x62\x54\x67\ \x6e\x61\x73\x7e\x57\x73\x80\x47\x60\x63\x48\x62\x61\x4a\x63\x5f\ \x3e\x47\x41\x46\x5c\x5a\x4f\x69\x6c\x68\x83\x93\x63\x7f\x8c\x53\ \x7b\x86\x66\x80\x95\x50\x61\x69\x4e\x5c\x5f\x60\x72\x7b\x43\x46\ \x45\x63\x6e\x7b\x50\x5a\x5e\x58\x60\x64\x77\x8b\x9f\x4f\x5c\x61\ \x52\x52\x53\x52\x55\x53\x4e\x53\x51\x55\x61\x64\x44\x4c\x48\x4a\ \x4d\x4c\x4c\x63\x69\x5a\x61\x65\x45\x49\x49\x3b\x3a\x34\x61\x6b\ \x6b\x45\x4c\x50\x5c\x68\x6e\x4e\x56\x59\x50\x5a\x5e\x58\x63\x6c\ \x4a\x53\x55\x62\x6a\x74\x60\x6f\x7b\x5e\x6e\x76\x5f\x6d\x78\x48\ \x50\x51\x41\x45\x42\x56\x6c\x72\x58\x6c\x6c\x5e\x72\x7b\x71\x82\ \x91\x60\x76\x7f\x5e\x70\x73\x6f\x87\x9a\x63\x75\x83\x61\x73\x79\ \x6b\x78\x84\x63\x6c\x76\x61\x67\x6e\x5f\x60\x64\x60\x62\x66\x52\ \x4f\x4e\x6a\x65\x5c\x7c\x77\x74\x5a\x55\x51\x53\x47\x3b\x5f\x59\ \x55\x52\x4c\x48\x59\x4f\x4a\x5d\x51\x4e\x62\x56\x54\x66\x60\x5a\ \x62\x5c\x5d\x53\x45\x3c\x4f\x44\x35\x55\x4a\x3d\x56\x4e\x40\x53\ \x49\x3c\x4d\x4b\x40\x4f\x46\x37\x39\x5c\x57\x2e\x4d\x4a\x29\x44\ \x42\x27\x4b\x47\x1d\x3a\x34\x26\x47\x44\x2f\x49\x46\x49\x5e\x58\ \x6c\x74\x74\x58\x5d\x61\x73\x78\x6c\x71\x81\x83\x82\x8e\x93\x8f\ \x93\x94\x86\x99\xac\x62\x70\x73\x90\x9c\x9e\x9d\xa7\xab\x88\x98\ \xa2\x63\x78\x89\x4a\x53\x51\x56\x62\x69\x42\x49\x46\x44\x4d\x4b\ \x3f\x4a\x48\x43\x53\x54\x52\x49\x3d\x57\x4f\x44\x48\x5a\x55\x39\ \x4e\x4e\x4e\x57\x57\x4b\x5d\x5b\x3c\x57\x5a\x2c\x48\x42\x2b\x49\ \x45\x2d\x46\x44\x33\x4b\x48\x42\x59\x5b\x00\x00\x00\x3e\x50\x4a\ \x3b\x45\x3c\x3c\x4b\x42\x44\x59\x59\x48\x63\x65\x44\x5c\x58\x44\ \x56\x4c\x44\x4b\x48\x40\x46\x43\x3f\x4c\x46\x45\x56\x51\x40\x51\ \x4c\x51\x65\x66\x5a\x6d\x75\x4c\x52\x4e\x43\x4d\x4b\x4b\x69\x66\ \x44\x5a\x50\x3b\x41\x35\x3d\x41\x3a\x3f\x3e\x38\x42\x53\x50\x4e\ \x6a\x67\x4a\x5e\x5a\x42\x54\x4f\x49\x6d\x6b\x43\x5a\x54\x45\x5b\ \x55\x3b\x45\x3b\x3d\x4b\x47\x51\x57\x56\x5b\x6c\x74\x3d\x3f\x39\ \x3a\x41\x3a\x3a\x46\x41\x48\x62\x5e\x41\x52\x4b\x3c\x49\x43\x44\ \x56\x56\x55\x6f\x7a\x56\x70\x76\x4c\x62\x61\x49\x5a\x58\x4b\x59\ \x5a\x4a\x5b\x5d\x48\x5d\x5b\x46\x5f\x63\x57\x6d\x74\x63\x74\x84\ \x55\x6e\x77\x4c\x63\x63\x43\x52\x4f\x4e\x63\x62\x3e\x4b\x46\x46\ \x5a\x5b\x4c\x64\x65\x62\x7c\x87\x56\x6b\x74\x59\x6c\x73\x6b\x87\ \x9c\x4a\x5b\x5f\x3f\x46\x41\x46\x47\x44\x3c\x3a\x33\x5c\x63\x6e\ \x40\x44\x41\x4d\x4c\x4a\x5c\x6a\x72\x4d\x52\x52\x55\x56\x57\x50\ \x52\x52\x50\x52\x53\x4f\x56\x58\x4e\x50\x51\x4d\x4f\x50\x5b\x64\ \x6c\x5a\x5f\x67\x42\x46\x46\x43\x46\x45\x6d\x7b\x81\x53\x5f\x65\ \x64\x73\x7f\x4f\x56\x5a\x57\x5d\x60\x66\x77\x85\x62\x6f\x7e\x64\ \x74\x83\x61\x74\x7e\x5f\x71\x7b\x61\x70\x7f\x3f\x46\x47\x61\x6b\ \x6c\x67\x7a\x88\x56\x64\x63\x65\x76\x7f\x60\x63\x69\x4a\x4a\x41\ \x5e\x68\x68\x69\x6d\x72\x6e\x71\x78\x6c\x6d\x68\x79\x86\x99\x68\ \x6f\x78\x62\x61\x64\x59\x56\x56\x55\x4c\x47\x55\x44\x33\xbf\xb7\ \xb2\x6e\x70\x7c\x46\x39\x30\x4e\x42\x32\x5d\x53\x4f\x77\x6d\x5f\ \x59\x50\x4f\x5b\x4e\x46\x5f\x57\x50\x65\x5a\x55\x56\x50\x48\x55\ \x44\x36\x51\x44\x35\x53\x42\x34\x51\x43\x33\x54\x46\x39\x49\x4f\ \x48\x3f\x53\x4d\x2f\x58\x58\x28\x4e\x4d\x27\x41\x3c\x22\x3d\x3c\ \x2c\x48\x44\x45\x51\x4b\x4d\x5b\x58\x58\x68\x6b\x5b\x5f\x60\x51\ \x58\x57\x58\x63\x5e\x5c\x6b\x70\x85\x8a\x84\x88\x8a\x88\x70\x86\ \x97\x51\x64\x65\x44\x54\x59\x66\x6b\x69\x58\x5e\x65\x48\x57\x5c\ \x49\x4e\x49\x52\x60\x65\x43\x4d\x4d\x4e\x4d\x46\x45\x51\x4e\x33\ \x48\x46\x39\x42\x37\x3c\x41\x37\x3f\x52\x4d\x3d\x5a\x57\x44\x50\ \x4a\x4a\x57\x5c\x31\x48\x4c\x21\x34\x34\x1d\x3c\x34\x28\x4c\x44\ \x2a\x49\x49\x3c\x4d\x44\x00\x00\x00\x3d\x4c\x49\x40\x4f\x49\x40\ \x4f\x4b\x43\x58\x59\x44\x54\x4f\x43\x54\x52\x46\x59\x55\x43\x4d\ \x46\x45\x51\x4d\x44\x55\x52\x46\x53\x51\x42\x4a\x47\x4b\x5f\x67\ \x65\x79\x7e\x52\x5c\x5d\x43\x50\x4c\x4c\x62\x61\x46\x55\x4c\x3e\ \x43\x3e\x4a\x53\x53\x47\x4a\x47\x3c\x41\x3b\x47\x63\x60\x4b\x66\ \x64\x3f\x4f\x47\x48\x6c\x6a\x3f\x52\x4a\x3f\x4c\x46\x3f\x4d\x45\ \x37\x3a\x2f\x39\x38\x31\x45\x4a\x47\x3b\x3e\x3b\x3c\x43\x3f\x45\ \x53\x51\x48\x5f\x5d\x46\x5d\x59\x47\x56\x55\x48\x59\x5d\x57\x70\ \x7c\x61\x7b\x83\x54\x6a\x6e\x48\x5d\x59\x44\x51\x4e\x47\x5a\x55\ \x4f\x64\x64\x4c\x60\x61\x59\x70\x7a\x5f\x6f\x7b\x4d\x60\x60\x4b\ \x5f\x5d\x4b\x56\x57\x51\x68\x6e\x40\x4c\x49\x4c\x5e\x5e\x50\x6a\ \x6a\x4c\x62\x62\x44\x55\x54\x48\x48\x48\x58\x68\x6f\x4a\x5b\x5b\ \x41\x47\x44\x43\x40\x3d\x3a\x39\x31\x41\x40\x36\x40\x40\x39\x4d\ \x4c\x4d\x4b\x4b\x47\x50\x4f\x51\x5f\x5e\x60\x5a\x5c\x5f\x4c\x4c\ \x4c\x4d\x52\x55\x4c\x4c\x4b\x51\x55\x59\x5d\x62\x6c\x5a\x5f\x67\ \x40\x46\x42\x5d\x69\x6f\x74\x87\x96\x5e\x70\x7b\x63\x78\x87\x58\ \x63\x6b\x5e\x65\x6a\x72\x81\x8e\x70\x81\x92\x68\x7c\x8c\x58\x6e\ \x76\x60\x74\x7e\x5e\x74\x81\x48\x54\x51\x69\x6e\x73\x6b\x73\x80\ \x5d\x64\x62\x67\x6e\x75\x52\x4e\x4b\x4d\x48\x3f\x5f\x5d\x56\x64\ \x60\x60\x60\x54\x4d\x60\x50\x46\x67\x67\x68\x63\x65\x6d\x57\x54\ \x56\x4f\x45\x41\x48\x3f\x33\x57\x44\x2e\xdc\xc4\xae\x70\x76\x84\ \x47\x3c\x2c\x4e\x42\x35\x6c\x5e\x4e\x75\x73\x70\x94\x8f\x8d\x50\ \x47\x43\x5b\x4f\x44\x5a\x4d\x45\x52\x46\x3a\x53\x44\x34\x55\x45\ \x3a\x5a\x4f\x46\x57\x4d\x42\x59\x50\x47\x56\x56\x52\x41\x56\x58\ \x29\x49\x46\x2c\x57\x55\x2a\x4b\x4d\x40\x56\x55\x3b\x4f\x51\x6f\ \x6f\x6b\x87\x8b\x8f\x95\xa1\xaa\x70\x81\x8f\x92\x98\x92\x42\x59\ \x6a\x61\x70\x78\x47\x5b\x58\x3d\x4d\x4a\x44\x4f\x47\x2f\x3f\x3e\ \x30\x42\x43\x45\x47\x44\x52\x51\x49\x45\x43\x3d\x4e\x4f\x48\x52\ \x62\x67\x4b\x52\x4e\x59\x5b\x58\x57\x59\x55\x3c\x46\x47\x3b\x49\ \x46\x3f\x53\x54\x39\x58\x54\x2f\x54\x54\x38\x47\x41\x68\x70\x69\ \x46\x62\x63\x2d\x57\x53\x33\x4a\x3f\x45\x55\x50\x36\x55\x56\x3a\ \x4a\x47\x00\x00\x00\x41\x55\x52\x44\x56\x52\x3f\x52\x4d\x47\x57\ \x55\x3e\x46\x40\x3f\x48\x43\x41\x4d\x47\x41\x51\x4b\x4c\x5f\x5f\ \x43\x54\x4d\x44\x58\x53\x3d\x49\x44\x55\x6c\x76\x69\x7c\x83\x51\ \x5f\x5d\x43\x4e\x48\x4c\x5d\x5a\x42\x4e\x44\x48\x52\x4f\x57\x66\ \x69\x4b\x50\x4e\x3d\x3d\x36\x40\x4f\x48\x47\x5d\x57\x41\x50\x46\ \x47\x61\x5c\x45\x58\x50\x40\x4b\x47\x40\x4b\x48\x3a\x3a\x30\x3e\ \x42\x3a\x3d\x43\x3a\x3e\x45\x3c\x40\x48\x43\x40\x4f\x48\x50\x67\ \x68\x50\x66\x63\x49\x5d\x5a\x47\x62\x65\x5a\x79\x83\x5e\x74\x81\ \x5a\x6c\x74\x49\x62\x61\x45\x56\x54\x48\x57\x54\x4b\x5e\x5e\x43\ \x4f\x4a\x5c\x74\x7b\x5c\x67\x6c\x42\x4f\x48\x47\x5e\x5c\x4a\x53\ \x54\x57\x67\x6b\x45\x50\x4b\x4c\x5b\x58\x4e\x63\x62\x4b\x60\x62\ \x40\x47\x42\x4c\x4b\x4b\x4d\x53\x52\x47\x55\x54\x41\x45\x41\x39\ \x31\x29\x3d\x3b\x2e\x3f\x3c\x33\x43\x43\x3d\x4d\x4b\x49\x47\x45\ \x44\x5b\x5d\x5f\x5e\x61\x64\x5a\x5e\x61\x4c\x4e\x50\x5b\x65\x6e\ \x51\x5a\x5e\x57\x5d\x61\x5f\x68\x72\x59\x65\x6d\x4d\x59\x5d\x6b\ \x79\x86\x70\x82\x90\x6b\x7b\x88\x6b\x7c\x8c\x5f\x71\x7a\x60\x6b\ \x6e\x67\x75\x7a\x6f\x7d\x86\x67\x72\x7b\x59\x6a\x67\x69\x7c\x84\ \x60\x70\x78\x55\x59\x59\x61\x5d\x59\x69\x6b\x73\x5d\x57\x51\x61\ \x5d\x5b\x59\x54\x4f\x56\x53\x4b\x64\x61\x5a\x64\x5a\x55\x55\x47\ \x3c\x59\x4e\x45\x5d\x5b\x5a\x64\x65\x6a\x61\x5f\x60\x53\x4d\x47\ \x45\x39\x2d\x53\x42\x2c\xc4\xa7\x88\x95\x9b\xa5\x68\x62\x55\x70\ \x6d\x6d\x69\x57\x47\x99\x8c\x7d\x62\x57\x4d\x54\x46\x3c\x57\x4b\ \x40\x5a\x4c\x43\x5a\x4d\x42\x55\x46\x3c\x52\x42\x35\x50\x41\x31\ \x51\x42\x32\x53\x41\x33\x4b\x48\x3e\x34\x59\x56\x2c\x4e\x4b\x43\ \x50\x4a\x4e\x54\x47\x60\x59\x51\x98\x95\x8d\x96\x98\x9c\x8b\x8b\ \x8a\x80\x8a\x89\x6f\x81\x87\x54\x66\x6b\x38\x4a\x48\x33\x49\x47\ \x2a\x3f\x38\x2e\x45\x3f\x2a\x3f\x3d\x29\x38\x38\x39\x3f\x39\x35\ \x3c\x39\x41\x3e\x37\x40\x42\x3e\x3b\x48\x46\x41\x54\x55\x3b\x43\ \x3d\x5a\x5d\x5a\x4d\x57\x5a\x4d\x5b\x59\x48\x53\x48\x2f\x4d\x4b\ \x30\x4d\x49\x24\x43\x43\x38\x4a\x42\x45\x51\x4a\x3e\x51\x45\x2c\ \x4c\x46\x3f\x4a\x40\x42\x51\x4a\x42\x57\x58\x48\x59\x54\x00\x00\ \x00\x43\x54\x53\x47\x59\x56\x43\x55\x54\x43\x55\x50\x3e\x48\x42\ \x41\x4d\x4a\x41\x45\x3f\x46\x59\x55\x4d\x61\x5d\x3f\x45\x3d\x41\ \x4c\x49\x41\x52\x4e\x4d\x61\x64\x6d\x81\x8b\x4f\x5c\x57\x43\x4f\ \x47\x4a\x5e\x5c\x49\x59\x53\x53\x60\x61\x5d\x6d\x72\x53\x5c\x58\ \x3f\x3f\x36\x39\x35\x2d\x3f\x4a\x43\x42\x53\x4c\x48\x60\x5c\x43\ \x52\x49\x41\x49\x43\x3e\x46\x3e\x3d\x42\x3a\x41\x46\x40\x44\x4e\ \x47\x46\x54\x4d\x3f\x47\x40\x42\x4a\x49\x4e\x69\x67\x4f\x65\x64\ \x4a\x5a\x59\x41\x5b\x5b\x5f\x7e\x8a\x63\x7b\x8c\x5a\x6b\x73\x47\ \x5a\x58\x51\x67\x68\x4d\x60\x5c\x49\x5c\x5c\x53\x61\x64\x55\x60\ \x66\x51\x57\x57\x40\x49\x41\x47\x58\x56\x55\x5c\x60\x5f\x6e\x77\ \x46\x4f\x4a\x47\x57\x52\x4b\x5e\x5d\x49\x59\x55\x49\x53\x4e\x4e\ \x52\x50\x47\x48\x44\x48\x59\x58\x41\x46\x41\x3a\x31\x28\x41\x3e\ \x33\x40\x3e\x37\x4e\x4d\x4a\x54\x54\x55\x4d\x4f\x4e\x5c\x5f\x61\ \x63\x68\x6d\x57\x5a\x5b\x54\x58\x5a\x5f\x6d\x74\x57\x62\x69\x5a\ \x64\x6c\x65\x6f\x7d\x60\x6e\x7b\x5b\x67\x70\x70\x7e\x8c\x71\x83\ \x92\x6c\x7d\x89\x68\x78\x87\x59\x6d\x73\x4e\x5a\x52\x4e\x54\x49\ \x53\x56\x48\x4c\x4b\x3d\x53\x52\x47\x6a\x71\x71\x5b\x5e\x59\x60\ \x5e\x5d\x5c\x58\x53\x64\x63\x65\x58\x4f\x46\x5b\x57\x52\x53\x50\ \x46\x51\x46\x3b\x5d\x51\x46\x5a\x4c\x40\x58\x4f\x45\x66\x64\x63\ \x5a\x53\x51\x63\x60\x5c\x59\x54\x51\x5b\x52\x44\x69\x64\x59\x54\ \x4d\x44\xac\x96\x7d\xd0\xcb\xc6\xa3\xa0\xa2\x74\x6a\x62\x52\x45\ \x3a\x4e\x3e\x2d\x4f\x41\x34\x54\x44\x36\x56\x47\x3b\x51\x41\x36\ \x51\x41\x30\x50\x43\x33\x52\x45\x34\x50\x43\x32\x50\x42\x31\x4d\ \x46\x39\x37\x43\x3a\x37\x54\x4e\x3d\x4e\x47\x50\x45\x33\x7b\x73\ \x61\x96\x9d\xa4\x77\x72\x70\x64\x5b\x51\x5e\x59\x4f\x3e\x4d\x48\ \x32\x46\x45\x40\x4d\x4c\x29\x3c\x3a\x23\x36\x31\x3d\x49\x3f\x4c\ \x54\x4c\x45\x4c\x47\x3f\x47\x43\x65\x5b\x45\x41\x4f\x53\x47\x4e\ \x4e\x3d\x4b\x50\x37\x4a\x49\x51\x65\x67\x54\x54\x49\x66\x63\x59\ \x3a\x4c\x4c\x25\x3d\x3a\x2d\x44\x3e\x25\x48\x42\x26\x4a\x48\x1e\ \x36\x34\x37\x4a\x42\x30\x48\x45\x31\x44\x3d\x33\x48\x46\x38\x3a\ \x30\x3d\x47\x41\x34\x50\x4e\x2c\x48\x45\x00\x00\x00\x47\x59\x5a\ \x46\x58\x53\x41\x50\x4c\x47\x59\x58\x45\x50\x4c\x3f\x4a\x46\x44\ \x4a\x45\x44\x53\x50\x4a\x5a\x53\x3f\x41\x3b\x43\x43\x3f\x43\x50\ \x49\x43\x53\x4c\x5a\x69\x6d\x45\x52\x49\x43\x51\x4a\x48\x5b\x55\ \x4a\x58\x58\x5e\x6d\x72\x5d\x6f\x73\x55\x5f\x5c\x3f\x43\x39\x3b\ \x39\x31\x3b\x3f\x38\x45\x5a\x53\x48\x5c\x58\x46\x56\x52\x46\x52\ \x4f\x42\x4d\x47\x41\x4e\x49\x46\x51\x4c\x4a\x5b\x58\x4f\x65\x64\ \x46\x54\x52\x4d\x52\x52\x4a\x5f\x61\x4e\x68\x68\x4b\x58\x57\x44\ \x53\x50\x51\x6a\x71\x68\x85\x98\x4c\x59\x59\x3f\x44\x3f\x46\x50\ \x4b\x4b\x60\x60\x46\x55\x56\x5b\x6c\x71\x5f\x67\x6f\x50\x54\x53\ \x42\x47\x43\x4c\x55\x53\x54\x59\x5b\x5a\x65\x67\x42\x46\x41\x49\ \x56\x54\x50\x63\x66\x4a\x5a\x58\x4a\x53\x50\x57\x60\x61\x4a\x4f\ \x4a\x47\x50\x4d\x3b\x3a\x33\x3c\x32\x2d\x44\x42\x3b\x41\x40\x3b\ \x55\x57\x59\x5b\x60\x65\x53\x57\x58\x57\x5a\x5d\x5c\x61\x64\x4f\ \x53\x53\x56\x5b\x5f\x5b\x69\x6d\x5d\x6d\x72\x61\x72\x80\x70\x80\ \x94\x6b\x7f\x96\x63\x71\x7c\x6e\x7b\x89\x6a\x7a\x86\x6c\x7d\x8b\ \x62\x6e\x72\x4e\x54\x4e\x53\x57\x51\x56\x5c\x57\x50\x51\x44\x48\ \x42\x35\x4e\x40\x30\x5d\x50\x44\x52\x4e\x42\x61\x61\x5d\x61\x60\ \x5d\x63\x62\x62\x55\x4b\x40\x5a\x53\x49\x4e\x49\x3d\x51\x42\x36\ \x54\x47\x3a\x54\x45\x37\x61\x59\x52\x5e\x5a\x56\x5d\x56\x50\x53\ \x49\x40\x58\x4c\x3f\x68\x5d\x4e\x6b\x65\x59\x6a\x5d\x4e\xa2\x93\ \x82\x89\x74\x61\x71\x6b\x65\x49\x3d\x2e\x4f\x41\x33\x4f\x40\x33\ \x50\x40\x30\x4e\x3f\x30\x50\x42\x31\x4f\x41\x31\x4e\x41\x2f\x4e\ \x42\x33\x50\x44\x34\x4e\x41\x31\x4d\x42\x31\x44\x4b\x3f\x39\x48\ \x42\x49\x4a\x44\x51\x47\x3e\x50\x45\x3a\x6e\x5c\x47\xaf\xa1\x93\ \x8c\x8b\x8c\x6e\x6a\x67\x52\x51\x47\x33\x3d\x35\x36\x43\x41\x3b\ \x3d\x38\x40\x50\x4a\x28\x44\x43\x2f\x42\x3c\x5f\x62\x57\x3f\x48\ \x46\x2b\x30\x2d\x51\x50\x42\x6e\x6b\x60\x76\x73\x6c\x60\x65\x66\ \x49\x5f\x66\x48\x5a\x57\x4e\x53\x4c\x3a\x44\x3f\x34\x45\x3f\x21\ \x39\x35\x25\x40\x3d\x24\x41\x3b\x27\x4d\x4c\x2e\x47\x48\x35\x50\ \x4d\x37\x54\x52\x37\x52\x56\x2f\x4e\x4e\x2a\x3b\x36\x2d\x39\x33\ \x24\x3e\x37\x2d\x4a\x4d\x00\x00\x00\x46\x53\x52\x46\x59\x54\x46\ \x55\x56\x53\x64\x63\x3d\x46\x3f\x3c\x43\x3c\x40\x48\x3f\x48\x52\ \x4f\x47\x55\x51\x44\x44\x42\x44\x42\x3b\x42\x4b\x40\x42\x4e\x46\ \x41\x49\x40\x41\x4a\x43\x41\x4f\x48\x46\x59\x53\x47\x57\x53\x63\ \x72\x77\x56\x64\x62\x58\x65\x63\x41\x44\x3b\x3e\x3f\x36\x40\x48\ \x3f\x43\x51\x4f\x48\x5e\x59\x46\x5a\x56\x48\x58\x57\x44\x52\x4f\ \x46\x55\x51\x4c\x5d\x5c\x49\x58\x57\x50\x69\x6b\x59\x68\x6e\x4e\ \x56\x54\x4c\x53\x56\x4d\x65\x67\x44\x53\x51\x40\x4b\x47\x44\x57\ \x57\x59\x75\x7e\x47\x54\x52\x3e\x43\x3a\x41\x46\x3e\x4c\x60\x60\ \x52\x60\x63\x4b\x59\x56\x50\x59\x59\x50\x55\x57\x4c\x53\x52\x55\ \x60\x5e\x4d\x4f\x4f\x49\x50\x4b\x42\x48\x40\x4e\x5a\x58\x5c\x69\ \x70\x4e\x5a\x5c\x55\x59\x58\x5c\x65\x67\x47\x4d\x45\x43\x45\x3d\ \x3f\x39\x31\x44\x3c\x3a\x45\x41\x3b\x49\x4b\x47\x60\x68\x70\x65\ \x6c\x77\x57\x5d\x60\x56\x5d\x60\x5d\x67\x6c\x45\x4e\x4b\x4a\x52\ \x50\x58\x5f\x5e\x6b\x80\x8b\x6f\x82\x93\x7d\x93\xab\x6c\x80\x91\ \x67\x76\x85\x66\x6e\x71\x73\x81\x8c\x64\x6d\x70\x4f\x53\x4b\x4d\ \x52\x49\x5f\x61\x5c\x61\x63\x64\x51\x52\x47\x50\x49\x3c\x4f\x47\ \x38\x4e\x44\x35\x55\x4a\x3e\x69\x67\x65\x5b\x59\x54\x5e\x5b\x54\ \x51\x49\x39\x54\x47\x37\x4b\x45\x35\x61\x56\x4c\x51\x45\x38\x5c\ \x51\x42\x65\x5c\x57\x55\x4a\x41\x53\x45\x39\x86\x7c\x75\x7e\x7b\ \x7a\x54\x46\x36\x62\x55\x44\x5a\x4c\x3e\x56\x4a\x3c\x52\x43\x31\ \x53\x45\x37\x4d\x3f\x31\x50\x41\x33\x4f\x3f\x30\x4c\x41\x30\x4d\ \x41\x31\x4c\x3e\x2e\x4a\x3e\x2f\x4a\x40\x2f\x4b\x3f\x2f\x4b\x3c\ \x2b\x48\x3a\x2a\x48\x3c\x2c\x41\x40\x33\x45\x3b\x2e\x70\x64\x58\ \x4f\x4d\x43\x4d\x45\x36\x53\x50\x4a\x6e\x59\x42\x76\x6a\x57\x5f\ \x5a\x50\x57\x5c\x53\x3a\x55\x58\x3f\x50\x4b\x3c\x44\x40\x3e\x48\ \x3d\x2d\x4e\x4f\x30\x43\x3e\x3d\x48\x41\x50\x58\x57\x63\x5f\x56\ \x70\x68\x65\x71\x67\x5f\x60\x60\x59\x48\x55\x55\x46\x5a\x59\x26\ \x40\x41\x32\x46\x3e\x41\x4d\x47\x22\x39\x3a\x23\x3d\x3a\x2a\x4b\ \x43\x2a\x4f\x51\x26\x44\x42\x23\x37\x37\x26\x40\x39\x33\x4f\x4f\ \x38\x4f\x4a\x38\x55\x53\x3e\x58\x5d\x36\x49\x4a\x35\x4d\x4b\x3f\ \x5f\x68\x00\x00\x00\x48\x5b\x5d\x54\x61\x5d\x4d\x54\x55\x5b\x69\ \x66\x3e\x49\x45\x3f\x45\x3b\x3d\x41\x3a\x4f\x58\x5a\x58\x60\x61\ \x54\x56\x56\x49\x48\x42\x40\x46\x3d\x41\x51\x4a\x45\x50\x45\x41\ \x49\x3e\x40\x46\x3c\x45\x54\x4f\x44\x52\x49\x53\x5f\x5c\x43\x49\ \x45\x51\x61\x5b\x3e\x42\x39\x43\x4b\x45\x43\x4b\x41\x42\x4f\x4b\ \x4a\x5f\x5b\x44\x59\x53\x49\x5c\x59\x48\x5a\x55\x4a\x60\x5e\x53\ \x68\x6c\x48\x58\x57\x4b\x63\x61\x4d\x5b\x5b\x51\x5d\x5d\x54\x5f\ \x65\x51\x66\x6e\x4b\x62\x65\x42\x4f\x4b\x47\x58\x54\x51\x6f\x70\ \x48\x58\x55\x3e\x40\x3b\x41\x43\x3a\x4d\x5c\x5d\x54\x63\x65\x53\ \x5d\x60\x53\x5a\x5a\x58\x61\x63\x4c\x59\x56\x4b\x56\x54\x47\x47\ \x44\x49\x51\x4e\x42\x47\x40\x4b\x52\x4f\x5d\x66\x6b\x54\x5d\x60\ \x55\x58\x58\x5a\x62\x62\x45\x50\x4a\x46\x4b\x46\x44\x42\x3d\x47\ \x45\x42\x42\x43\x3c\x52\x5a\x5c\x6d\x78\x84\x69\x75\x84\x5f\x6c\ \x77\x54\x5b\x5e\x62\x70\x75\x48\x51\x52\x48\x54\x4b\x4f\x59\x52\ \x6e\x7e\x89\x71\x7f\x90\x68\x78\x85\x64\x70\x73\x65\x70\x75\x50\ \x52\x49\x53\x55\x4e\x4d\x50\x49\x4f\x4f\x48\x50\x4c\x40\x63\x62\ \x5f\x65\x64\x64\x51\x46\x3d\x53\x4c\x40\x52\x4f\x45\x50\x4b\x3c\ \x51\x48\x34\x68\x64\x5d\x66\x67\x66\x64\x5d\x53\x4f\x48\x39\x4c\ \x46\x36\x57\x4e\x3c\x58\x4e\x42\x52\x44\x34\x50\x3f\x30\x4f\x3e\ \x2f\x56\x48\x39\x5a\x4d\x46\x58\x49\x35\x76\x65\x52\x53\x49\x43\ \x51\x42\x33\x50\x42\x30\x50\x42\x35\x4f\x42\x33\x4f\x40\x31\x4e\ \x42\x30\x4e\x42\x31\x51\x44\x37\x4b\x40\x32\x4b\x43\x33\x67\x60\ \x55\x76\x73\x70\x5c\x59\x56\x52\x4c\x47\x5d\x55\x4b\x79\x76\x70\ \x81\x81\x7f\x89\x89\x86\x86\x86\x87\x6e\x67\x68\x7f\x75\x65\xb3\ \xae\xa9\xb8\xb8\xbd\x60\x5d\x57\x53\x4d\x41\x4e\x48\x37\x4d\x50\ \x47\x38\x4b\x4a\x2b\x4d\x49\x48\x57\x52\x2c\x3d\x3d\x35\x3d\x3b\ \x5d\x5b\x54\x66\x60\x59\x5f\x5c\x58\x48\x4c\x46\x5f\x5c\x55\x70\ \x65\x5f\x75\x79\x79\x45\x63\x65\x2d\x4f\x4e\x2c\x48\x45\x23\x40\ \x3f\x23\x3c\x3a\x24\x3b\x35\x29\x46\x47\x26\x4b\x41\x2a\x53\x52\ \x1d\x3b\x39\x1e\x3d\x38\x55\x61\x51\x54\x69\x69\x3a\x54\x53\x43\ \x4d\x49\x38\x54\x50\x3e\x57\x59\x34\x4c\x4c\x27\x46\x46\x00\x00\ \x00\x59\x6a\x71\x53\x5b\x53\x48\x51\x54\x6d\x79\x7d\x3e\x49\x43\ \x3e\x46\x3e\x3d\x46\x3c\x55\x60\x65\x57\x5f\x5f\x51\x54\x51\x49\ \x4d\x48\x45\x4e\x46\x43\x51\x4a\x44\x53\x49\x3f\x42\x37\x3c\x3e\ \x33\x44\x51\x46\x45\x4c\x42\x44\x4e\x44\x43\x4c\x45\x47\x57\x50\ \x3b\x3e\x33\x45\x50\x4a\x43\x50\x46\x40\x4a\x47\x4b\x61\x5d\x3d\ \x46\x3d\x46\x5b\x57\x48\x5e\x5c\x4d\x69\x65\x60\x72\x7a\x46\x52\ \x4d\x4a\x61\x5c\x57\x67\x67\x5d\x69\x6e\x52\x5a\x5a\x57\x67\x71\ \x5a\x71\x7a\x4a\x56\x53\x4c\x5e\x5b\x4f\x6d\x6f\x48\x5a\x57\x3f\ \x40\x39\x43\x43\x3d\x4b\x56\x4f\x64\x6f\x73\x54\x62\x62\x4f\x54\ \x54\x56\x61\x64\x4f\x5e\x5b\x51\x58\x56\x48\x47\x47\x49\x4e\x4a\ \x45\x4b\x44\x4a\x51\x4c\x58\x62\x66\x5a\x5d\x5e\x4c\x4d\x4a\x4b\ \x53\x52\x48\x52\x4f\x54\x58\x58\x4a\x4d\x4b\x4c\x4f\x4c\x54\x5a\ \x5b\x6f\x83\x8e\x72\x82\x90\x7f\x8d\x9d\x66\x7a\x84\x56\x5e\x62\ \x6c\x76\x7a\x5f\x6a\x70\x5d\x64\x61\x5c\x63\x5f\x56\x5c\x58\x6c\ \x79\x8a\x57\x5c\x60\x49\x4c\x40\x4d\x4d\x44\x4e\x51\x48\x4e\x51\ \x48\x4e\x50\x45\x51\x53\x44\x59\x4f\x46\x61\x5d\x56\x5e\x5a\x5a\ \x4e\x49\x36\x55\x56\x45\x5e\x59\x4f\x52\x48\x38\x51\x4a\x39\x6a\ \x63\x5c\x6a\x61\x5c\x55\x49\x38\x4e\x49\x37\x50\x4c\x3b\x50\x46\ \x36\x4e\x44\x34\x50\x44\x33\x56\x49\x3d\x5b\x4d\x41\x5a\x4c\x3e\ \x58\x4b\x44\x52\x43\x36\x4e\x43\x33\x51\x45\x37\x51\x44\x34\x50\ \x42\x34\x4e\x42\x34\x4f\x43\x32\x4c\x41\x32\x4c\x42\x34\x4f\x45\ \x37\x53\x48\x40\x5c\x55\x4b\x9d\x93\x83\xbd\xb6\xaf\xba\xb6\xb0\ \xd4\xd0\xcf\xad\xa6\xa0\xa7\xa3\x9e\xb8\xa7\x96\xd1\xc5\xb8\xd6\ \xc9\xb9\xe2\xda\xcf\xbc\xbc\xc3\x8a\x81\x80\x7e\x77\x6e\x57\x5a\ \x51\x52\x5c\x5f\x37\x4b\x46\x49\x4e\x4d\x38\x48\x43\x2e\x3f\x3c\ \x36\x3f\x37\x51\x56\x50\x42\x4b\x47\x65\x66\x5d\x67\x5f\x54\x56\ \x59\x50\x48\x4f\x4c\x61\x65\x60\x4d\x59\x5a\x7b\x70\x5d\x8c\x88\ \x7f\x3e\x51\x4e\x3a\x52\x4f\x35\x53\x53\x30\x4e\x4c\x2b\x4b\x4d\ \x27\x41\x3f\x33\x4f\x4f\x30\x4b\x47\x28\x52\x52\x1a\x2f\x27\x2d\ \x45\x3d\x2d\x4f\x49\x40\x51\x49\x2d\x4c\x4e\x30\x44\x3f\x31\x50\ \x52\x30\x4c\x48\x3e\x5b\x5e\x36\x53\x58\x00\x00\x00\x77\x80\x95\ \x5b\x60\x65\x51\x58\x5e\x67\x71\x7e\x47\x4e\x4b\x41\x4b\x46\x40\ \x4a\x45\x61\x6e\x77\x5c\x64\x67\x58\x60\x60\x4c\x52\x4d\x48\x52\ \x4d\x46\x51\x47\x42\x4f\x47\x3c\x3d\x32\x3b\x37\x2f\x45\x4e\x45\ \x49\x52\x49\x44\x4d\x42\x44\x52\x48\x45\x55\x4d\x3e\x43\x3a\x47\ \x55\x51\x47\x5c\x55\x48\x60\x5f\x46\x58\x53\x42\x4d\x45\x46\x5a\ \x57\x4c\x62\x62\x45\x53\x4d\x54\x62\x63\x4b\x57\x55\x4b\x62\x5f\ \x48\x56\x53\x56\x67\x6b\x4c\x55\x59\x65\x7c\x8c\x58\x71\x78\x4a\ \x56\x52\x50\x61\x5b\x48\x61\x5d\x4c\x64\x62\x49\x4e\x47\x48\x4d\ \x49\x4d\x55\x51\x56\x5b\x5c\x66\x72\x7b\x5b\x62\x66\x59\x62\x65\ \x4c\x5c\x5a\x4e\x57\x54\x56\x57\x57\x47\x4a\x45\x43\x47\x42\x46\ \x4d\x47\x4c\x55\x53\x54\x56\x56\x60\x65\x63\x58\x61\x63\x53\x5b\ \x5b\x57\x5e\x62\x42\x49\x49\x4f\x58\x59\x7b\x87\x8e\x93\xa6\xb4\ \x80\x8d\x90\x6b\x76\x7c\x61\x72\x7a\x54\x5e\x5f\x68\x71\x74\x66\ \x6d\x6e\x7d\x85\x84\x64\x6b\x6a\x54\x58\x54\x6c\x7a\x84\x4d\x52\ \x4c\x4a\x50\x43\x4f\x55\x4e\x53\x54\x4f\x4e\x54\x47\x53\x53\x47\ \x57\x4e\x41\x58\x4b\x41\x5e\x5a\x50\x5d\x5d\x57\x50\x4d\x3c\x53\ \x4c\x3a\x53\x4b\x39\x50\x46\x34\x51\x46\x39\x59\x48\x38\x53\x4a\ \x3a\x4f\x4b\x39\x55\x4a\x3e\x51\x44\x36\x4c\x41\x32\x4f\x45\x37\ \x6f\x61\x57\x6d\x64\x64\x60\x54\x4e\x5d\x51\x49\x54\x4c\x45\x56\ \x4d\x3c\x53\x48\x3a\x4e\x44\x35\x50\x45\x34\x4b\x3f\x2e\x4d\x42\ \x34\x50\x46\x39\x5a\x53\x4a\x72\x69\x5d\x85\x80\x80\x8e\x86\x81\ \xc1\xba\xb1\xda\xd3\xcd\xce\xc5\xbd\xcd\xc0\xaf\xd4\xc7\xb7\xe1\ \xdc\xd6\xb2\xb1\xb5\xa2\x9c\x95\xae\xa0\x94\xb9\xaf\xa8\xb8\xac\ \x9f\xca\xbb\xad\xc5\xc5\xc3\x79\x81\x84\x6e\x78\x76\x6f\x74\x6d\ \x3d\x4a\x49\x3f\x45\x3f\x68\x6e\x68\x37\x48\x47\x62\x60\x53\x73\ \x72\x6d\x84\x7b\x70\xab\xa6\x9a\x89\x91\x93\xc5\xb6\xa1\x8d\x98\ \xaa\x65\x61\x58\x3c\x4b\x4d\x37\x43\x3f\x3f\x41\x38\x28\x41\x3c\ \x36\x4e\x4a\x2b\x4c\x49\x27\x3e\x39\x2c\x45\x46\x37\x4a\x46\x50\ \x62\x5e\x36\x55\x57\x22\x46\x45\x29\x42\x3d\x30\x3e\x3b\x27\x3d\ \x3c\x27\x38\x37\x2d\x44\x45\x2f\x43\x42\x2c\x44\x43\x30\x4a\x45\ \x2e\x4e\x4c\x38\x55\x56\x00\x00\x00\x93\x9c\xb7\x78\x7d\x8b\x63\ \x6c\x76\x77\x88\xa2\x62\x6a\x6f\x53\x61\x61\x46\x51\x51\x5d\x69\ \x6e\x5b\x63\x65\x4a\x51\x4c\x43\x4d\x46\x4c\x54\x53\x44\x4e\x45\ \x42\x4d\x45\x3d\x40\x33\x3e\x3f\x36\x45\x4f\x47\x48\x56\x4e\x44\ \x4b\x41\x45\x55\x4e\x43\x51\x48\x3e\x44\x3a\x43\x50\x4a\x44\x53\ \x4c\x4d\x66\x64\x4e\x67\x68\x48\x57\x52\x4a\x5c\x5c\x4f\x65\x64\ \x42\x53\x4e\x48\x52\x50\x4c\x5b\x59\x4f\x68\x68\x53\x67\x6a\x5b\ \x6c\x71\x57\x69\x71\x63\x72\x7d\x4e\x5f\x60\x47\x57\x56\x51\x5e\ \x5d\x4a\x5d\x58\x4a\x58\x53\x51\x59\x56\x4f\x56\x53\x54\x5d\x5c\ \x4f\x51\x51\x62\x68\x6e\x61\x66\x6b\x57\x5b\x5c\x4d\x58\x58\x4f\ \x58\x57\x54\x55\x56\x49\x49\x48\x47\x47\x45\x49\x4c\x4a\x4b\x52\ \x51\x4d\x4e\x4e\x52\x57\x52\x65\x70\x78\x5a\x61\x68\x57\x61\x67\ \x6b\x7d\x85\x80\x95\xa3\x8a\x96\x9f\x60\x6a\x65\x4b\x51\x46\x64\ \x6d\x6f\x5c\x66\x65\x60\x64\x61\x80\x89\x91\x6d\x75\x78\x69\x6b\ \x68\x5c\x5d\x5a\x53\x56\x50\x5e\x6c\x6c\x4b\x4f\x44\x5b\x60\x59\ \x5d\x60\x5a\x58\x59\x50\x5c\x5a\x51\x60\x56\x4d\x55\x49\x3c\x53\ \x4b\x3d\x56\x50\x41\x52\x4f\x40\x50\x45\x35\x54\x47\x39\x4f\x44\ \x32\x4e\x41\x2e\x4e\x40\x2e\x4e\x46\x34\x4d\x49\x39\x53\x46\x3b\ \x56\x46\x3f\x4d\x3b\x31\x4c\x3b\x2d\x50\x45\x38\x85\x74\x66\x75\ \x6d\x6f\x54\x4a\x46\x58\x4f\x46\x62\x5b\x57\x6b\x69\x61\x5e\x5a\ \x54\x5d\x57\x50\x62\x5d\x51\x73\x70\x67\x86\x83\x7f\x8b\x85\x81\ \xa3\x9a\x91\xba\xac\x9c\xd1\xc9\xc2\xe3\xda\xd2\xe3\xdc\xd2\xdf\ \xd8\xcf\xd6\xd0\xcb\x99\x93\x90\x7f\x6a\x57\xaa\x99\x7f\xdb\xcf\ \xc1\xda\xd5\xcf\xd0\xca\xc4\xc6\xbc\xb6\xc8\xc3\xbf\xa8\x9d\x96\ \x7d\x7a\x73\x4b\x54\x51\x3b\x4d\x47\x34\x43\x43\x3b\x45\x3e\x6e\ \x73\x6d\x4e\x55\x52\x65\x67\x63\x69\x67\x5a\x48\x51\x49\x5e\x62\ \x5a\x6d\x71\x62\x8c\x89\x79\xa2\x95\x83\x5f\x6b\x78\x44\x4e\x4c\ \x2d\x3b\x35\x3a\x4a\x46\x33\x45\x42\x25\x3d\x39\x2a\x4b\x4a\x3a\ \x59\x55\x43\x5d\x61\x3a\x4a\x4a\x49\x50\x51\x45\x53\x51\x40\x5b\ \x5a\x28\x50\x4c\x24\x44\x43\x2d\x40\x3c\x2e\x48\x44\x3b\x51\x4a\ \x3e\x54\x51\x2f\x46\x45\x2e\x46\x45\x32\x48\x43\x3f\x57\x58\x39\ \x53\x58\x00\x00\x00\x92\x96\xaa\x6f\x71\x84\x74\x82\x9a\x8f\x98\ \xb3\x7b\x84\x94\x75\x80\x89\x4a\x56\x58\x5f\x6c\x72\x64\x6f\x73\ \x3d\x45\x3b\x3c\x49\x3e\x49\x53\x51\x4a\x56\x51\x48\x52\x50\x3f\ \x49\x40\x41\x49\x3f\x4e\x5e\x5b\x4d\x5e\x57\x46\x4f\x46\x44\x54\ \x4d\x42\x4e\x45\x3f\x42\x36\x3e\x4a\x41\x3e\x49\x40\x51\x65\x6d\ \x61\x7b\x82\x48\x59\x57\x50\x63\x6c\x56\x6c\x73\x4d\x61\x61\x4d\ \x55\x55\x46\x51\x53\x4f\x6a\x6d\x5a\x70\x7a\x66\x78\x83\x5b\x71\ \x78\x63\x6b\x6f\x45\x49\x44\x4f\x61\x63\x5a\x66\x6a\x4d\x5d\x5a\ \x4a\x4f\x48\x55\x5b\x5a\x54\x58\x56\x53\x5c\x5e\x54\x57\x5a\x4f\ \x51\x54\x5a\x5d\x61\x4e\x4d\x4d\x4b\x53\x52\x54\x5b\x5b\x54\x59\ \x60\x4f\x50\x50\x4c\x4d\x4c\x4f\x53\x53\x59\x5e\x61\x5c\x5f\x63\ \x59\x68\x70\x60\x6d\x79\x66\x74\x80\x68\x72\x79\xab\xb9\xc5\x97\ \xac\xbe\x5d\x68\x68\x56\x5d\x56\x5b\x65\x60\x54\x5a\x53\x53\x58\ \x4f\x7b\x7d\x7f\x77\x80\x89\x54\x55\x53\x50\x52\x4d\x4d\x54\x4a\ \x4f\x57\x4e\x4f\x5e\x57\x58\x5d\x53\x7e\x7c\x7b\x75\x6e\x68\x6d\ \x62\x59\x78\x6d\x68\x69\x5c\x56\x55\x4e\x44\x52\x47\x3a\x56\x50\ \x45\x57\x4e\x42\x51\x41\x31\x53\x44\x33\x50\x42\x2f\x4f\x43\x2e\ \x56\x4f\x43\x59\x56\x4f\x58\x4a\x3e\x61\x56\x51\x59\x4c\x49\x4c\ \x3d\x32\x50\x3f\x33\x5a\x52\x4c\x6e\x64\x5e\x65\x5f\x5f\x7b\x73\ \x70\x81\x7d\x7b\xa1\x9a\x90\xc1\xba\xb3\xc6\xbf\xb8\xbc\xb7\xb2\ \xb2\xa8\xa1\xca\xc1\xb7\xd7\xcf\xc8\xd1\xcb\xc5\xa4\x9c\x9a\xa7\ \x98\x8a\xd7\xcb\xbe\xe0\xd9\xcf\xe0\xd9\xd0\xda\xd4\xcd\xc0\xb4\ \xa9\x9d\x99\x97\x69\x5f\x54\xa2\x8d\x70\xe3\xd8\xc9\xde\xd8\xd1\ \xe0\xd7\xcf\xc6\xbc\xb7\xd2\xc9\xc2\x73\x79\x81\x42\x4a\x46\x40\ \x47\x42\x37\x3e\x37\x88\x89\x82\xa6\xa3\x9c\xb4\xb2\xb0\xbd\xb4\ \xa6\xc7\xc7\xc9\x78\x7b\x7f\x45\x58\x5a\x43\x4d\x42\x3a\x51\x52\ \x65\x5f\x48\x9e\x8d\x79\x44\x50\x59\x51\x60\x65\x4e\x56\x4d\x2a\ \x4b\x51\x30\x4c\x4a\x23\x3a\x35\x2a\x43\x42\x53\x56\x4e\x60\x6d\ \x6f\x68\x6a\x6a\x59\x5d\x5b\x47\x52\x49\x45\x4b\x41\x5e\x69\x5f\ \x39\x56\x57\x33\x47\x45\x41\x5a\x54\x3a\x4e\x4b\x2b\x41\x3e\x24\ \x3b\x38\x2e\x41\x3e\x1e\x32\x2f\x3e\x59\x58\x2f\x48\x4d\x00\x00\ \x00\x62\x65\x6c\x60\x65\x71\x83\x8a\x9d\x9a\xa1\xb2\x82\x8b\x9b\ \x89\x94\x9d\x56\x67\x73\x88\x94\x9d\x77\x87\x93\x40\x4c\x49\x42\ \x52\x4a\x42\x4f\x49\x4c\x5e\x5b\x52\x63\x68\x53\x5f\x5d\x48\x56\ \x52\x53\x68\x6c\x58\x6d\x6d\x52\x64\x63\x47\x59\x54\x47\x53\x50\ \x41\x45\x3e\x40\x49\x42\x40\x48\x3e\x4c\x59\x5e\x62\x7b\x83\x53\ \x6a\x71\x5b\x72\x80\x4f\x62\x64\x4c\x61\x5e\x42\x49\x42\x45\x50\ \x50\x4f\x6b\x6d\x5e\x76\x82\x66\x7b\x81\x4d\x5c\x5b\x44\x44\x3c\ \x3d\x39\x32\x53\x65\x6c\x66\x72\x7d\x5a\x62\x65\x4b\x51\x4d\x56\ \x60\x61\x58\x5e\x60\x5e\x68\x6b\x57\x5a\x5c\x5d\x63\x69\x5a\x5e\ \x60\x52\x53\x53\x51\x5a\x5a\x58\x60\x61\x5b\x60\x69\x5c\x61\x68\ \x4e\x52\x52\x55\x59\x5c\x6d\x7b\x85\x6c\x7c\x87\xc7\xd3\xda\x8d\ \x94\x98\x58\x68\x6b\x87\x94\x9d\xa3\xb0\xb8\x8e\x9a\xa5\x57\x5f\ \x5e\x50\x53\x49\x57\x59\x51\x48\x4a\x3d\x62\x62\x59\x6d\x6f\x6f\ \x50\x55\x4f\x4d\x53\x46\x50\x59\x52\x4e\x59\x50\x56\x57\x4f\x69\ \x6e\x6a\x80\x82\x81\x7b\x74\x70\x5f\x52\x48\x6b\x5c\x53\x7f\x74\ \x74\x75\x6a\x64\x5b\x57\x50\x52\x4b\x3d\x71\x63\x58\x5c\x53\x44\ \x55\x4c\x3c\x57\x49\x3a\x54\x4d\x42\x5e\x5b\x55\x6d\x6c\x70\x61\ \x5b\x5e\x5b\x4d\x42\x63\x53\x52\x59\x4d\x46\x4d\x40\x31\x53\x46\ \x3d\x94\x8b\x84\xa6\x9f\x9b\xa8\xa3\x9f\xc3\xb8\xac\xda\xd0\xc6\ \xdb\xd2\xc9\xdc\xd3\xc8\xdd\xd3\xc8\xdd\xd0\xc5\xda\xcf\xc6\xdd\ \xd2\xca\xd5\xcb\xc2\xd8\xce\xc5\xc5\xb8\xb1\xd6\xcc\xc1\xbc\xb2\ \xab\xcd\xc1\xb0\xd0\xc2\xb4\xde\xd7\xcd\xc3\xbd\xba\xac\xa1\x99\ \x7e\x7a\x7b\x8f\x7e\x6c\xbb\xa6\x8f\xe3\xde\xd3\xdf\xd9\xd1\xd8\ \xd1\xcc\xdb\xd5\xce\xcc\xc7\xc3\x56\x6c\x7a\x3e\x4d\x4c\x8e\x85\ \x77\xdd\xd0\xbf\xb4\xb5\xbb\x81\x73\x68\xc0\xa2\x82\xdd\xd5\xcc\ \xd4\xcd\xc7\x82\x8c\x94\x51\x58\x5c\x3c\x50\x4c\x40\x41\x30\x69\ \x69\x64\x3e\x44\x40\x60\x6d\x73\x66\x66\x54\x31\x46\x52\x33\x4d\ \x4c\x21\x3c\x3e\x3f\x4a\x43\x62\x5e\x50\x8f\x81\x79\x93\x83\x7d\ \x6e\x6d\x6e\x4d\x4e\x42\x52\x52\x43\x69\x67\x62\x40\x54\x53\x27\ \x3d\x36\x49\x4e\x3e\x45\x51\x4a\x35\x49\x4c\x2e\x47\x48\x3f\x4b\ \x4c\x34\x49\x4c\x3b\x55\x5c\x33\x48\x48\x00\x00\x00\x63\x64\x68\ \x64\x6b\x77\x74\x7a\x86\x83\x89\x96\x80\x88\x97\x87\x92\xa1\x69\ \x79\x8c\xa7\xb7\xc8\x9a\xab\xbd\x61\x6f\x74\x53\x67\x64\x41\x50\ \x4c\x4d\x5e\x5e\x5f\x74\x7f\x58\x63\x63\x50\x60\x60\x4c\x65\x65\ \x5c\x77\x7c\x64\x80\x8a\x5a\x6f\x6f\x46\x4f\x47\x40\x48\x40\x3d\ \x3f\x36\x40\x41\x3b\x47\x51\x4e\x60\x7b\x89\x72\x8a\xa0\x63\x73\ \x82\x4e\x60\x66\x51\x68\x67\x44\x4f\x49\x4d\x59\x5b\x58\x70\x79\ \x5d\x71\x79\x54\x61\x60\x46\x54\x4f\x3e\x3b\x31\x3f\x37\x31\x5b\ \x61\x65\x65\x6e\x70\x54\x57\x57\x50\x55\x52\x57\x62\x60\x60\x68\ \x6e\x60\x64\x67\x51\x55\x55\x54\x59\x5a\x5c\x5f\x60\x4e\x52\x4f\ \x50\x53\x51\x47\x4a\x48\x72\x7b\x83\x7c\x83\x8d\x58\x5f\x61\x6a\ \x77\x81\xa2\xb1\xbe\xd2\xdc\xe5\x84\x88\x89\x6e\x80\x88\xb7\xc6\ \xcf\xad\xbe\xca\x91\xa0\xad\x5d\x61\x5f\x4d\x51\x49\x4f\x51\x4a\ \x4d\x4e\x47\x4e\x4f\x45\x50\x4b\x43\x51\x58\x54\x4d\x56\x4a\x58\ \x60\x58\x6b\x78\x7a\x4e\x59\x52\x54\x54\x4b\x79\x75\x74\x88\x87\ \x87\x6d\x63\x61\x57\x49\x3e\x6c\x5b\x50\x71\x64\x5d\x68\x5f\x5b\ \x53\x4d\x44\x5f\x58\x4c\x5c\x4d\x42\x5c\x4e\x46\x5f\x53\x4f\x59\ \x4b\x3f\x73\x6a\x64\x79\x74\x71\x6a\x63\x60\x6b\x5f\x59\x65\x57\ \x4f\x55\x44\x3c\x52\x44\x3c\x53\x49\x3d\x70\x60\x50\xbe\xb1\xa9\ \xdf\xd4\xc9\xd8\xcf\xc7\xdd\xd4\xcb\xdd\xd3\xc8\xdd\xd3\xc9\xdc\ \xd4\xca\xdb\xd2\xc9\xda\xd1\xc8\xda\xd1\xc9\xde\xd5\xcc\xdd\xd5\ \xce\xde\xd5\xcc\xd2\xca\xc4\xd7\xca\xc1\xc4\xbf\xbe\x8b\x7f\x7e\ \xb8\xa1\x85\xda\xd3\xc7\xce\xc5\xbf\xa9\xa2\x9d\xab\x95\x80\xa2\ \x9a\x96\x96\x85\x76\xb4\x9b\x83\xe1\xd8\xcb\xdf\xd9\xd2\xe2\xdb\ \xd2\xb4\xb5\xb4\x5c\x5e\x5a\x96\x8f\x81\xbf\xb1\xa1\xd7\xcb\xba\ \xda\xd5\xd2\xb3\xb6\xbd\x6e\x69\x66\x77\x70\x62\xa6\x98\x80\x9b\ \x93\x92\x76\x88\x97\x22\x33\x31\x49\x4a\x38\x56\x5a\x57\x37\x42\ \x47\x84\x80\x6e\x53\x5c\x60\x43\x50\x57\x4c\x5b\x57\x3e\x54\x4d\ \x61\x5d\x4b\x79\x66\x56\x84\x71\x66\x87\x74\x6c\x7f\x74\x6d\x67\ \x65\x60\x55\x54\x48\x42\x5a\x5a\x37\x52\x4a\x2d\x45\x41\x3f\x44\ \x3b\x3c\x4e\x49\x65\x6b\x63\x35\x47\x48\x39\x49\x45\x49\x61\x5f\ \x44\x62\x65\x36\x50\x54\x00\x00\x00\x50\x56\x5d\x57\x5f\x68\x6a\ \x7a\x8c\x7b\x88\x9a\x79\x87\x99\x85\x93\xa6\x88\x98\xad\xa4\xb2\ \xc5\xae\xbc\xcf\x89\x97\xa5\x6e\x80\x83\x47\x59\x5a\x44\x54\x54\ \x62\x75\x7f\x58\x65\x68\x4d\x61\x63\x4f\x6b\x6c\x5c\x75\x7e\x6a\ \x85\x93\x66\x74\x79\x43\x4b\x3f\x44\x53\x4b\x40\x45\x3d\x3d\x3e\ \x36\x44\x53\x4e\x61\x78\x86\x78\x92\xa8\x5c\x6c\x77\x5c\x6c\x7a\ \x5c\x72\x79\x43\x4a\x46\x4c\x53\x54\x66\x7b\x88\x63\x75\x79\x49\ \x51\x4c\x44\x4a\x44\x40\x3b\x34\x41\x36\x31\x51\x54\x54\x5f\x65\ \x67\x5a\x5a\x5a\x50\x56\x56\x55\x5e\x5e\x5f\x66\x6c\x64\x67\x6d\ \x55\x59\x58\x42\x40\x3b\x48\x47\x42\x61\x6a\x70\x55\x5a\x59\x46\ \x4d\x4c\x83\x8f\x96\x8d\x9b\xa9\x6e\x76\x7d\x83\x8a\x8e\x9e\xa0\ \xa2\x82\x85\x84\x5b\x65\x67\x83\x8c\x90\xb0\xbe\xc7\xa0\xaf\xb8\ \x63\x6a\x68\x49\x4d\x46\x4c\x4f\x42\x4b\x4d\x3e\x4e\x4f\x43\x51\ \x58\x51\x50\x56\x4d\x4e\x51\x47\x55\x5e\x56\x70\x77\x77\x76\x76\ \x77\x68\x70\x6d\x6a\x6d\x6e\x7b\x7c\x7e\x79\x74\x72\x71\x6d\x69\ \x5d\x57\x4e\x5d\x54\x4e\x5f\x57\x4f\x6a\x5e\x59\x71\x66\x5f\x67\ \x5a\x52\x56\x46\x37\x5c\x4f\x47\x56\x4a\x3e\x6b\x60\x5a\x6f\x63\ \x5d\x6c\x5e\x57\x69\x5c\x55\x65\x5a\x56\x56\x48\x41\x59\x4e\x45\ \x53\x49\x43\x79\x73\x6d\x96\x88\x76\xcb\xc0\xb7\xde\xd3\xc9\xdd\ \xd6\xcd\xdd\xd5\xcd\xdd\xd5\xcc\xdd\xd5\xcd\xdc\xd5\xcd\xdc\xd7\ \xcf\xdb\xd4\xcd\xd9\xd2\xcb\xdb\xd2\xc8\xde\xd6\xcf\xdd\xd7\xce\ \xdd\xd6\xcd\xdd\xd5\xce\xde\xd6\xce\xdf\xd9\xd3\xbb\xb5\xb1\xce\ \xc0\xb2\xd6\xce\xc6\xa4\x9d\x9a\x90\x86\x81\x86\x71\x5c\xb1\xaa\ \x9e\x9f\x91\x84\xe4\xda\xcd\xdf\xd7\xcf\xc9\xc3\xbf\x79\x7b\x78\ \xa1\xa0\x94\xdb\xce\xbf\xc8\xc4\xbe\xae\xa3\x9a\xd4\xc3\xb3\xdf\ \xd6\xce\xb5\xaf\xa9\xc1\xc1\xc5\x5a\x5f\x5e\x7f\x71\x61\x89\x8f\ \x91\x24\x35\x39\x47\x46\x34\x61\x61\x60\x5f\x60\x60\x97\x8b\x7a\ \xb8\xb9\xb9\xb5\xb6\xb4\x7e\x8b\x92\x4c\x5c\x6a\x4e\x47\x3b\x6b\ \x5a\x44\x6f\x5c\x51\x6d\x5d\x52\x72\x5e\x4d\x72\x6a\x62\x5c\x54\ \x48\x54\x54\x4e\x2e\x46\x42\x2a\x41\x3a\x41\x53\x4c\x30\x41\x43\ \x22\x33\x2f\x37\x46\x3e\x4c\x62\x5a\x44\x5e\x5e\x41\x60\x63\x3e\ \x52\x53\x00\x00\x00\x4c\x59\x5f\x51\x65\x74\x61\x6f\x7d\x69\x76\ \x87\x6b\x76\x83\x78\x7e\x88\x8a\x95\xa7\xa1\xb2\xc9\xb1\xba\xc9\ \x9c\xa8\xb8\x91\xa0\xac\x5d\x71\x77\x42\x54\x51\x59\x6b\x73\x54\ \x61\x5f\x47\x60\x5f\x4a\x69\x67\x4e\x65\x68\x5f\x7a\x85\x5e\x6f\ \x71\x41\x4b\x42\x45\x58\x50\x42\x49\x43\x3e\x3d\x33\x46\x57\x58\ \x59\x70\x76\x67\x76\x84\x58\x66\x6b\x54\x66\x6d\x57\x6e\x73\x44\ \x4c\x49\x51\x5b\x5e\x66\x78\x81\x59\x69\x68\x46\x4e\x47\x42\x40\ \x37\x3f\x37\x2f\x4b\x43\x41\x50\x50\x50\x55\x58\x56\x5b\x60\x60\ \x5e\x65\x67\x53\x5e\x5d\x53\x5c\x5c\x5e\x62\x65\x4e\x4f\x4e\x43\ \x47\x3f\x54\x56\x58\x80\x8d\x98\x51\x55\x51\x4e\x58\x57\x92\x9f\ \xa5\xbe\xcc\xd6\x73\x7c\x7c\x4d\x52\x4c\x4b\x4e\x47\x48\x4b\x44\ \x54\x57\x56\x64\x6d\x70\x96\x9e\xa2\x86\x94\x9d\x57\x61\x60\x4e\ \x52\x4d\x4e\x55\x4e\x4d\x54\x46\x53\x5b\x50\x57\x61\x5c\x51\x57\ \x49\x50\x52\x49\x66\x62\x5c\x81\x82\x81\x7e\x78\x73\x76\x6b\x65\ \x77\x73\x71\x7f\x87\x8e\x66\x6b\x71\x62\x60\x59\x75\x70\x6a\x5b\ \x55\x4e\x6f\x66\x5c\x72\x62\x5a\x6c\x60\x55\x5f\x52\x47\x4c\x39\ \x2a\x5a\x4f\x43\x6d\x65\x63\x73\x6a\x6b\x68\x65\x65\x58\x4f\x48\ \x55\x44\x35\x5c\x4e\x48\x5a\x51\x49\x6e\x67\x64\x70\x66\x5f\xa3\ \x9d\x9a\xc1\xb3\xa3\xdc\xd5\xd0\xdf\xda\xd3\xde\xd7\xd0\xe2\xda\ \xd4\xdc\xd4\xcb\xdf\xd9\xd3\xdf\xda\xd3\xdf\xd9\xd1\xde\xd8\xd2\ \xda\xd1\xcd\xc2\xb7\xb0\xc4\xb3\xa5\xd3\xc9\xbe\xde\xd7\xce\xdd\ \xd6\xce\xdd\xd6\xce\xdd\xd4\xcb\xe1\xd8\xce\xde\xd6\xcd\xd9\xd3\ \xcb\xbe\xba\xb5\xca\xbe\xb5\xb3\xac\xa8\xc5\xb8\xa5\xd5\xcd\xc6\ \xdb\xd2\xc8\xd4\xcb\xc4\xc4\xbc\xb5\xa4\xa1\x9e\xb6\xa2\x8e\xcf\ \xc2\xb6\xd8\xcd\xc0\xcc\xc9\xc8\xb6\xa8\x98\xd2\xc7\xb6\x84\x87\ \x8b\x8b\x87\x7b\x78\x72\x68\x92\x8e\x89\x81\x83\x7b\x52\x60\x6d\ \x76\x74\x6b\x80\x86\x8c\x7a\x6c\x5e\xda\xcb\xb6\xd4\xcc\xc4\xcc\ \xc3\xb5\xbd\xb5\xaa\xa4\xa3\xac\x7f\x7a\x79\x6f\x6c\x69\x4c\x3d\ \x2f\x52\x45\x2f\x60\x51\x43\x58\x46\x37\x51\x4c\x3d\x56\x50\x46\ \x36\x48\x45\x29\x3f\x36\x28\x3f\x45\x27\x39\x36\x31\x4b\x45\x35\ \x51\x4d\x4a\x59\x50\x46\x62\x60\x42\x5a\x5d\x50\x57\x4f\x00\x00\ \x00\x41\x47\x46\x50\x5c\x5d\x3f\x41\x3d\x53\x55\x5c\x5d\x62\x6b\ \x6c\x6e\x74\x73\x77\x85\xa4\xb6\xce\xae\xbd\xc8\x9f\xac\xba\xa2\ \xba\xce\x7f\x95\x9b\x46\x5b\x5e\x5b\x72\x78\x4c\x5a\x55\x50\x65\ \x68\x4e\x6a\x69\x4b\x61\x62\x4f\x6b\x6e\x4f\x64\x62\x43\x50\x4c\ \x49\x5f\x5c\x44\x50\x4a\x41\x43\x3d\x42\x4b\x4a\x51\x69\x6a\x63\ \x6f\x7c\x52\x5a\x5c\x52\x67\x6b\x5a\x70\x76\x46\x4d\x4b\x55\x64\ \x6e\x64\x77\x7f\x52\x5d\x59\x45\x4c\x42\x44\x42\x39\x41\x3e\x37\ \x53\x51\x52\x59\x5e\x5f\x50\x55\x52\x64\x6b\x70\x62\x68\x6c\x5e\ \x68\x6d\x4e\x54\x53\x53\x56\x53\x47\x47\x44\x4d\x5a\x56\x5a\x62\ \x65\x60\x6a\x66\x4c\x53\x4d\x5b\x67\x68\x82\x8d\x94\x83\x8d\x8e\ \x57\x63\x60\x4e\x5a\x53\x4a\x54\x49\x4e\x54\x4d\x4d\x51\x4c\x4d\ \x4e\x4a\x7e\x86\x8a\x99\xa8\xb3\x67\x72\x76\x4e\x54\x4e\x4d\x56\ \x4e\x4f\x56\x4d\x58\x5e\x59\x53\x5c\x55\x4d\x57\x49\x57\x56\x50\ \x68\x60\x59\x7d\x7d\x7d\x72\x70\x71\x70\x65\x62\x73\x6b\x66\x89\ \x8b\x8c\x63\x66\x67\x67\x62\x5c\x5c\x54\x4e\x65\x5c\x54\x70\x66\ \x5f\x6c\x5e\x54\x5e\x56\x4c\x5e\x53\x4b\x4c\x3a\x2c\x5d\x4f\x46\ \x6d\x62\x5c\x6f\x65\x60\x66\x5c\x57\x5b\x4c\x44\x5e\x50\x46\x7d\ \x75\x70\x7d\x76\x70\x92\x8e\x8c\xa3\x95\x8c\xce\xc6\xc0\xdb\xd4\ \xcd\xe2\xdd\xd5\xe2\xdd\xd8\xdb\xd5\xd0\xbb\xb1\xad\x9a\x84\x78\ \xa7\x94\x84\xbe\xae\xa2\xaa\x9e\x95\xcc\xbb\xab\xd8\xd4\xd2\x87\ \x7c\x7b\x7d\x65\x56\xa9\x93\x82\xe2\xd9\xcb\xdc\xd4\xcc\xde\xd8\ \xcf\xdd\xd5\xce\xcc\xc0\xb6\xe1\xd7\xcb\xdc\xd5\xcd\xde\xd3\xcb\ \xdd\xd7\xd1\x8a\x80\x7e\xcc\xb4\x9c\xe1\xd8\xd0\xde\xd4\xcc\xda\ \xd1\xcb\x9d\x96\x97\x92\x83\x7a\x94\x7e\x74\xb5\x9f\x8e\xe3\xd2\ \xc4\xa7\xa5\xa6\x68\x6c\x6c\x79\x73\x5d\x81\x85\x85\x5d\x64\x61\ \x6c\x6c\x67\xa1\x9c\x91\xaa\xa6\x9f\xb4\xb0\xad\xdb\xd0\xc2\xd6\ \xd0\xcc\xb5\xab\xa2\xb2\xa3\x99\xd1\xc2\xab\xd7\xce\xc4\xcb\xc1\ \xb7\xd5\xcc\xc2\xc7\xbd\xb0\xc7\xcc\xce\x5c\x5e\x66\x63\x55\x44\ \x89\x77\x65\x6f\x63\x58\x62\x67\x69\x36\x41\x3a\x34\x43\x3a\x23\ \x38\x33\x1f\x32\x37\x32\x41\x39\x44\x62\x64\x40\x5b\x5f\x3d\x4f\ \x4c\x37\x50\x4d\x35\x52\x55\x3b\x44\x3f\x00\x00\x00\x3a\x39\x32\ \x43\x4c\x46\x3e\x3f\x39\x51\x54\x5a\x6c\x73\x84\x97\xa6\xb8\x9f\ \xad\xbe\xa3\xb2\xc5\xa4\xb9\xd0\x9e\xb8\xca\x85\xa9\xc5\x80\x9a\ \xa9\x4b\x69\x72\x61\x7a\x89\x4b\x61\x61\x57\x6d\x72\x51\x67\x66\ \x4e\x63\x60\x4f\x6d\x6d\x4a\x64\x62\x43\x4e\x49\x4a\x5a\x57\x4a\ \x5a\x57\x47\x54\x4d\x40\x3f\x3a\x55\x6b\x72\x60\x6d\x7b\x56\x5d\ \x61\x55\x66\x71\x4f\x61\x5f\x49\x53\x56\x5d\x71\x7d\x64\x78\x79\ \x4d\x55\x51\x45\x49\x40\x47\x45\x3d\x47\x48\x42\x59\x5b\x5c\x5f\ \x6c\x6d\x4d\x5c\x54\x63\x70\x77\x66\x76\x7e\x60\x6b\x6a\x4b\x51\ \x4f\x56\x62\x60\x55\x5c\x5a\x63\x6f\x72\x61\x71\x6d\x4e\x5b\x50\ \x50\x5a\x53\x6d\x73\x74\x83\x8b\x8f\x57\x61\x5c\x54\x5b\x56\x4f\ \x5e\x55\x4a\x55\x49\x4b\x4e\x42\x4f\x51\x49\x56\x5d\x5e\x8e\x9a\ \xa6\x8f\xa1\xaf\x5c\x67\x66\x4b\x54\x49\x4f\x56\x49\x5b\x62\x59\ \x5f\x63\x60\x59\x5e\x57\x4f\x55\x48\x4f\x55\x4b\x63\x66\x61\x6e\ \x6e\x6c\x81\x84\x86\x71\x70\x72\x74\x6f\x6b\x64\x61\x5e\x63\x5d\ \x58\x5a\x56\x4c\x60\x5c\x54\x75\x69\x60\x68\x5f\x58\x5f\x54\x4a\ \x65\x59\x4f\x70\x66\x5e\x55\x47\x3a\x5f\x4c\x43\x65\x59\x53\x66\ \x59\x53\x52\x44\x36\x4c\x3d\x2e\x88\x7b\x71\x9c\x94\x8f\xa8\xa1\ \x97\xae\xa8\xa6\x7e\x6e\x69\xaf\x99\x8a\xdd\xd3\xc7\x86\x76\x72\ \xb6\xa2\x8e\xcf\xcd\xc9\x8e\x83\x81\x77\x60\x55\x76\x5d\x4c\x7c\ \x60\x4f\x7a\x63\x54\xa7\x8f\x7a\xdc\xd2\xc7\xbd\xba\xb9\xab\xa5\ \xa2\x82\x71\x69\x86\x70\x64\xaa\x92\x7f\xdb\xd0\xc3\xdf\xda\xd4\ \x8c\x86\x8b\x8b\x77\x6a\xbe\xaa\x98\xdc\xd1\xc7\xde\xd6\xcf\xaa\ \xa3\xa2\xd4\xc3\xb5\xc6\xb7\xab\xc2\xb2\xa7\xd2\xc3\xb7\xa3\x9e\ \xa3\x8c\x77\x6d\x82\x71\x6a\x88\x71\x63\x93\x83\x73\x53\x60\x62\ \x61\x63\x5d\x3e\x45\x3f\x6c\x6b\x64\x9f\x9a\x90\xc7\xbe\xb3\xd9\ \xd0\xc5\xca\xc3\xb9\xd7\xcb\xc0\xdc\xd3\xc9\xde\xd5\xca\xdb\xd2\ \xc9\xd3\xca\xc0\xd1\xc9\xbf\xc2\xb7\xaa\xdd\xd2\xc6\xde\xd5\xca\ \xd5\xd0\xc7\xb4\xaa\x9f\xbf\xb3\xa5\xa4\xa4\xa8\x66\x5e\x58\xa3\ \x89\x6a\x83\x8c\xa2\x39\x40\x38\x36\x48\x3e\x33\x48\x4f\x3d\x4d\ \x4e\x55\x68\x61\x60\x72\x73\x46\x5a\x61\x3a\x52\x56\x3b\x51\x57\ \x3f\x58\x5d\x43\x57\x51\x00\x00\x00\x3c\x40\x35\x41\x48\x42\x50\ \x58\x5d\x85\x95\xae\x95\xa2\xb6\x97\xa3\xb2\x90\x98\xa4\x79\x7d\ \x86\x7f\x8a\x97\x60\x71\x80\x59\x70\x82\x67\x77\x80\x4a\x5e\x62\ \x5b\x75\x83\x5f\x7e\x8c\x64\x7f\x8d\x55\x6e\x6f\x4e\x67\x6a\x52\ \x6c\x72\x49\x63\x60\x43\x51\x4b\x49\x56\x53\x49\x5a\x54\x46\x4f\ \x49\x49\x4f\x4b\x53\x5a\x5e\x67\x73\x7f\x5c\x66\x6e\x59\x67\x75\ \x47\x5c\x5d\x53\x64\x70\x58\x6b\x73\x5e\x71\x74\x4e\x56\x51\x44\ \x48\x41\x46\x47\x40\x4f\x51\x51\x59\x5d\x5e\x60\x6a\x6b\x50\x61\ \x5c\x50\x57\x4f\x5f\x6a\x66\x55\x5d\x56\x62\x69\x6a\x80\x89\x8b\ \x4d\x50\x4b\x5d\x62\x5e\x54\x5e\x56\x50\x5c\x4f\x5c\x62\x5f\x80\ \x88\x94\x61\x6b\x6d\x4f\x54\x4e\x50\x57\x4f\x4d\x59\x4d\x4d\x56\ \x4a\x4f\x55\x4f\x4d\x50\x4a\x72\x7e\x86\x92\x9a\xa2\x82\x8d\x96\ \x58\x67\x63\x53\x5b\x53\x53\x53\x4d\x5d\x58\x4f\x62\x62\x5b\x6a\ \x68\x64\x64\x67\x66\x55\x5c\x55\x6e\x75\x75\x77\x7a\x7e\x90\x96\ \x9a\x69\x6f\x6e\x57\x54\x51\x4e\x4e\x45\x58\x58\x4f\x6b\x63\x5b\ \x6c\x5b\x51\x6b\x60\x59\x5d\x52\x44\x5e\x51\x4b\x60\x54\x47\x74\ \x69\x62\x59\x4c\x40\x57\x45\x36\x62\x54\x4b\x52\x43\x3a\x4c\x3e\ \x31\x6a\x5b\x51\xa6\x9c\x97\xab\xa3\xa1\xca\xc1\xb9\xb0\xab\xab\ \x80\x70\x6a\x7f\x6d\x66\xb4\xa7\x97\x96\x8d\x8d\xd4\xc8\xbc\xd0\ \xcc\xcb\x8e\x85\x85\x7e\x6a\x61\x7c\x66\x5e\x79\x62\x55\x7a\x66\ \x5b\x7f\x67\x5a\xbb\xa7\x92\xe0\xd7\xce\xd8\xd3\xcf\x88\x84\x89\ \x76\x61\x56\xa7\x8f\x7e\xd1\xc5\xbb\xd8\xcc\xc0\xda\xd4\xcd\x92\ \x8d\x96\x8f\x77\x66\xd6\xc4\xb5\xe0\xd6\xcd\xdb\xd4\xcc\x7e\x74\ \x79\x7b\x62\x55\x7e\x65\x59\x8c\x76\x65\x86\x74\x6a\x88\x74\x6b\ \x7e\x6b\x63\x6f\x5f\x54\x5f\x54\x4a\x53\x56\x4d\x59\x5e\x5b\x4d\ \x4e\x4b\x95\x81\x70\xd9\xc7\xb4\xda\xd2\xc8\xe1\xd8\xce\xda\xd1\ \xc9\xdd\xd4\xca\xd8\xcd\xc3\xde\xd6\xcb\xdd\xd3\xc8\xdb\xd4\xc9\ \xdc\xd2\xc8\xd9\xd1\xc7\xdc\xd2\xc7\xdd\xd3\xc8\xdd\xd3\xc9\xdc\ \xd4\xcb\xce\xc7\xc0\xc5\xb8\xab\x9c\xa5\xad\x62\x6a\x6a\x62\x6b\ \x6c\x44\x4d\x48\x2b\x3a\x39\x22\x3e\x3f\x2b\x45\x45\x27\x40\x41\ \x2b\x40\x3c\x41\x4a\x48\x29\x42\x41\x2a\x45\x41\x35\x57\x59\x40\ \x59\x58\x00\x00\x00\x42\x44\x3b\x42\x48\x44\x4a\x53\x50\x76\x7c\ \x90\x8b\x91\x9f\x92\x98\xaa\x75\x79\x7c\x3f\x49\x46\x40\x47\x45\ \x43\x44\x43\x49\x4f\x54\x4d\x57\x5b\x42\x48\x40\x58\x62\x6d\x52\ \x67\x6d\x65\x84\x90\x5b\x75\x7c\x51\x6d\x70\x51\x72\x75\x4f\x6e\ \x74\x54\x6d\x70\x4f\x5e\x5a\x47\x51\x4b\x49\x4d\x4a\x46\x46\x40\ \x50\x55\x59\x69\x76\x80\x58\x61\x64\x52\x5b\x5f\x51\x68\x75\x5a\ \x6e\x7b\x54\x66\x63\x66\x79\x80\x58\x67\x67\x4b\x54\x4b\x45\x4c\ \x46\x56\x5f\x5b\x59\x64\x63\x62\x67\x65\x57\x5d\x55\x5e\x63\x60\ \x57\x58\x4e\x55\x53\x4e\x63\x63\x61\x6b\x6d\x67\x4c\x54\x49\x51\ \x55\x4a\x50\x5a\x4d\x56\x5d\x57\x79\x84\x8c\x6b\x7a\x7a\x5a\x66\ \x65\x65\x73\x73\x55\x61\x5d\x52\x5b\x55\x5e\x64\x61\x69\x6c\x6d\ \x6e\x71\x6e\x89\x8b\x8b\x7b\x7a\x78\x7d\x79\x75\x7e\x7b\x77\x71\ \x68\x64\x52\x48\x3e\x6a\x66\x62\x71\x6a\x68\x80\x76\x70\x81\x79\ \x72\x70\x6c\x68\x66\x67\x65\x69\x6c\x6a\x64\x67\x65\x58\x5d\x58\ \x55\x58\x52\x6a\x66\x61\x5e\x53\x50\x59\x4f\x45\x56\x4a\x3f\x4f\ \x4a\x3d\x4f\x44\x36\x4f\x47\x38\x58\x4a\x3a\x60\x53\x47\x55\x46\ \x38\x51\x42\x32\x58\x46\x3b\x4b\x3b\x32\x56\x48\x3d\x90\x82\x76\ \xcd\xc6\xc2\xd6\xd0\xca\xd2\xce\xc8\xc7\xc2\xc1\x89\x7c\x7c\x7d\ \x66\x5e\x7f\x68\x5f\xb0\x9d\x8b\xd9\xd2\xcb\xd3\xcb\xc5\xac\xa7\ \xa8\x80\x70\x69\x7c\x6a\x61\x7c\x67\x5f\x80\x6d\x67\x82\x71\x67\ \xc3\xb5\xa8\xdb\xd1\xc7\xdd\xd4\xc9\xc8\xc5\xc6\x75\x62\x5b\x99\ \x81\x70\x82\x6f\x67\x7f\x61\x50\xb3\x9f\x8c\xd4\xc6\xb8\xc9\xc2\ \xbe\xb7\xab\xa4\x83\x71\x68\xac\x90\x78\xae\xaa\xac\x7c\x69\x64\ \x78\x63\x59\x79\x63\x56\x7a\x63\x54\x84\x6e\x60\x83\x6f\x66\x57\ \x58\x54\x33\x41\x3f\x44\x4c\x46\x82\x70\x66\x80\x6e\x68\x7c\x62\ \x53\xb5\x9a\x81\xda\xcc\xbc\xe2\xd9\xcf\xa1\x9c\xa0\xbd\xa3\x8d\ \xda\xd0\xc6\xd4\xc6\xbc\xdb\xd1\xc6\xe0\xd4\xc9\xde\xd6\xcc\xc6\ \xc0\xbb\x9b\x92\x87\xd5\xc6\xb6\xde\xd6\xcb\xde\xd4\xca\xd5\xcc\ \xc5\xb9\xaf\xab\xdb\xcb\xb4\x97\xa6\xaf\x78\x82\x7e\x37\x4e\x52\ \x2c\x3e\x40\x2c\x4f\x52\x27\x42\x42\x2c\x44\x45\x35\x4a\x4a\x32\ \x49\x4b\x37\x51\x53\x36\x4f\x4f\x35\x58\x5a\x35\x4e\x53\x00\x00\ \x00\x50\x52\x4f\x4d\x52\x51\x56\x65\x70\x93\xa3\xbd\x92\xa0\xb4\ \x7c\x81\x8d\x55\x5c\x5a\x50\x62\x68\x55\x5d\x62\x51\x55\x57\x56\ \x5d\x63\x5c\x67\x6b\x45\x4a\x3e\x3d\x3d\x38\x48\x58\x59\x58\x71\ \x79\x56\x73\x78\x4e\x6c\x6f\x4a\x68\x69\x58\x6f\x7a\x62\x75\x7d\ \x52\x63\x62\x4d\x5f\x5d\x4e\x5b\x57\x43\x46\x40\x53\x54\x56\x61\ \x6b\x6f\x4e\x58\x56\x55\x5f\x5d\x52\x5f\x5e\x57\x70\x75\x5a\x70\ \x6f\x68\x7b\x7f\x5e\x70\x6e\x54\x5f\x5d\x4e\x55\x50\x56\x5a\x53\ \x5a\x63\x5e\x65\x63\x5f\x61\x56\x4b\x64\x5c\x55\x55\x56\x4b\x53\ \x57\x4b\x57\x5e\x56\x53\x5a\x51\x52\x5d\x54\x55\x60\x59\x56\x5f\ \x5b\x63\x6e\x6e\x73\x7c\x7e\x58\x63\x5d\x57\x5b\x57\x61\x63\x61\ \x74\x75\x75\x63\x67\x65\x79\x7a\x78\x5a\x56\x4f\x76\x73\x6e\x72\ \x74\x71\x56\x54\x4c\x7a\x75\x73\x7f\x7a\x76\x67\x5c\x54\x53\x4c\ \x3e\x6f\x6a\x65\x6a\x64\x5b\x73\x6b\x64\x6b\x60\x56\x57\x4e\x45\ \x51\x52\x46\x68\x6c\x66\x69\x6c\x6c\x64\x5f\x59\x6f\x63\x5b\x69\ \x5e\x54\x69\x5e\x55\x54\x4e\x42\x4c\x46\x36\x4c\x46\x35\x4e\x46\ \x38\x51\x44\x36\x53\x45\x38\x50\x42\x32\x4b\x3d\x2e\x4a\x38\x2c\ \x52\x42\x38\x4f\x40\x37\x77\x6d\x68\xa1\x96\x8e\xb5\xa6\x9d\xdd\ \xd4\xca\xb0\xab\xaa\xc4\xb6\xa7\xb7\xb3\xb5\x7c\x6b\x66\x82\x6b\ \x60\x97\x85\x7c\x91\x7e\x72\x9c\x8a\x81\x9a\x8b\x83\x8d\x81\x7d\ \x75\x63\x5a\x81\x6f\x65\x95\x87\x7f\x8d\x79\x6f\x9e\x89\x7b\x98\ \x88\x7d\xa4\x93\x85\xb3\xa7\xa1\x79\x68\x62\x83\x6e\x63\x83\x6e\ \x64\x7f\x6a\x60\x7f\x69\x5f\xa7\x89\x6f\xd3\xc7\xba\x9c\x94\x96\ \x80\x6b\x65\x7c\x66\x59\x97\x7f\x6d\xbb\xaf\xa7\x98\x8d\x8c\x89\ \x7a\x77\x7c\x64\x55\x88\x6f\x62\x86\x6f\x65\x61\x60\x5d\x59\x55\ \x4c\x8c\x77\x6c\x89\x73\x67\x83\x72\x6f\x86\x72\x65\xaf\x9a\x89\ \x9c\x87\x7b\xc6\xb2\x9d\xd2\xcb\xc6\xb9\xa6\x98\xdf\xda\xd0\xc9\ \xbf\xb6\xce\xc1\xb6\xae\xa2\x97\xd6\xc6\xb1\xe1\xd7\xcc\xd2\xc7\ \xbd\xd4\xca\xc0\xdf\xd6\xcb\xd7\xcc\xc2\xc9\xc0\xbc\xac\xae\xae\ \x76\x72\x67\x6e\x7f\x80\x2f\x4b\x4a\x28\x42\x3f\x7a\x7a\x6e\x2d\ \x4f\x5a\x28\x42\x41\x34\x4a\x4a\x2e\x4a\x4f\x37\x4f\x4d\x47\x5d\ \x58\x4d\x5e\x64\x4d\x6a\x73\x5f\x71\x73\x00\x00\x00\x5a\x66\x6a\ \x64\x6c\x75\x5d\x6f\x7d\x8a\x9f\xb7\x90\xa9\xbe\x63\x74\x71\x40\ \x4b\x45\x47\x56\x55\x58\x60\x66\x57\x5e\x61\x53\x56\x57\x57\x62\ \x68\x47\x4f\x46\x3d\x3b\x31\x43\x4e\x4a\x4b\x5c\x5c\x4c\x68\x6c\ \x5d\x7b\x85\x52\x6a\x6c\x56\x6a\x6e\x5d\x6f\x72\x50\x66\x65\x4e\ \x5f\x5c\x4c\x5a\x56\x45\x49\x44\x55\x56\x59\x64\x70\x72\x52\x5e\ \x58\x53\x5f\x59\x4f\x5e\x55\x5e\x70\x70\x6f\x87\x93\x5d\x65\x60\ \x58\x5e\x55\x4f\x58\x51\x55\x56\x52\x65\x67\x63\x61\x5f\x5c\x68\ \x60\x5a\x5a\x50\x42\x50\x44\x34\x52\x50\x46\x59\x66\x5e\x58\x64\ \x5e\x50\x5a\x50\x57\x61\x5b\x57\x5e\x58\x71\x7b\x80\x7b\x87\x8d\ \x66\x71\x6e\x50\x58\x50\x4e\x54\x49\x57\x53\x49\x57\x54\x48\x70\ \x6e\x64\x6f\x6d\x68\x5b\x5f\x5a\x68\x69\x66\x5b\x5b\x54\x5d\x57\ \x4e\x78\x72\x6e\x75\x6f\x6c\x56\x4d\x44\x67\x63\x5d\x74\x71\x6c\ \x68\x60\x57\x78\x71\x6d\x54\x4f\x43\x5a\x56\x4e\x6c\x69\x63\x74\ \x73\x6f\x72\x6d\x67\x6e\x61\x58\x59\x46\x36\x6c\x5e\x54\x5b\x4f\ \x47\x4d\x43\x34\x47\x3e\x2f\x46\x3e\x2c\x4b\x43\x37\x51\x47\x3d\ \x60\x55\x4b\x56\x49\x3e\x5a\x4d\x3c\x6d\x63\x5c\x70\x68\x63\x5f\ \x56\x50\xb5\xac\xa6\xa8\xa2\xa1\x84\x70\x69\xbf\xab\x9a\xb9\xb3\ \xb1\xaa\x98\x8d\xc2\xbd\xba\x92\x88\x85\x81\x6f\x69\x82\x70\x66\ \x84\x71\x69\x84\x71\x67\x85\x73\x6a\x88\x77\x71\x81\x6c\x60\x88\ \x73\x68\x81\x6d\x63\x82\x6c\x61\x82\x6b\x5f\x81\x6c\x61\x7d\x6b\ \x67\x7c\x66\x5e\x7f\x6a\x60\x81\x6a\x5d\x83\x70\x67\x89\x73\x67\ \xa0\x93\x8e\x7c\x67\x61\x8f\x76\x63\xaf\x9e\x92\x8e\x81\x7f\x7c\ \x67\x5d\x84\x6f\x64\x9e\x88\x78\xb4\xa1\x92\xb4\xad\xaa\x85\x6f\ \x68\x85\x6d\x62\x7e\x6a\x61\x69\x61\x57\x7f\x6c\x5f\x8b\x73\x66\ \x8f\x79\x6d\x82\x71\x6b\x9b\x84\x72\xb1\x9f\x94\x83\x70\x6a\x88\ \x6e\x60\xb8\x9e\x87\xd8\xc9\xb8\xdd\xd2\xc7\xb9\xb4\xb0\x9c\x97\ \x92\x51\x53\x53\x93\x76\x57\xd0\xbf\xab\xcb\xbc\xad\xda\xcd\xbe\ \xdf\xd9\xd0\xc3\xb5\xa7\xcd\xc6\xbf\xab\xa7\xa6\x98\x91\x8b\x5c\ \x71\x7e\x3c\x51\x47\x2f\x51\x56\x48\x54\x4e\x33\x46\x46\x2e\x3f\ \x3a\x2c\x40\x3e\x6c\x76\x6b\x42\x54\x59\x42\x4e\x41\x58\x61\x5d\ \x63\x6b\x6a\x63\x74\x7d\x00\x00\x00\x5d\x6a\x6c\x63\x6f\x7a\x66\ \x78\x85\x5e\x6a\x73\x58\x62\x63\x49\x58\x53\x44\x54\x4e\x4d\x5d\ \x5c\x59\x61\x68\x58\x5e\x61\x4d\x4d\x49\x51\x59\x5d\x53\x5e\x5a\ \x41\x43\x36\x46\x4d\x4a\x4f\x5c\x5b\x48\x5e\x5e\x63\x7d\x8b\x54\ \x62\x5e\x4a\x5b\x56\x55\x64\x67\x5c\x70\x75\x4d\x5b\x5a\x54\x6a\ \x72\x53\x5c\x58\x54\x5a\x60\x5c\x65\x63\x53\x5c\x51\x52\x5f\x56\ \x52\x60\x58\x59\x66\x64\x6f\x83\x8e\x51\x58\x4c\x52\x5b\x4d\x52\ \x5c\x4f\x6d\x67\x63\x7a\x77\x74\x6c\x67\x63\x63\x58\x4f\x57\x50\ \x47\x54\x54\x48\x5d\x65\x63\x73\x84\x88\x54\x62\x57\x5a\x65\x5e\ \x5f\x69\x65\x5c\x61\x5c\x8e\x93\x96\x92\x98\x9d\x60\x66\x62\x4c\ \x53\x4a\x4e\x5b\x52\x4b\x51\x42\x4b\x52\x42\x56\x56\x49\x62\x5d\ \x57\x76\x76\x76\x85\x86\x87\x68\x68\x66\x4e\x4b\x3a\x62\x5e\x52\ \x63\x57\x51\x53\x46\x39\x7b\x72\x6c\x7d\x79\x75\x70\x6b\x63\x75\ \x6b\x61\x63\x5b\x54\x6a\x66\x60\x7b\x77\x73\x83\x7c\x7a\x5e\x50\ \x46\x58\x4c\x3f\x4f\x45\x35\x56\x4e\x43\x4f\x45\x3a\x4c\x45\x35\ \x74\x6e\x65\x95\x91\x89\xb6\xb0\xad\x99\x95\x96\x91\x8c\x88\x5a\ \x52\x4b\x81\x75\x67\xab\xa5\x9e\x99\x96\x96\x9d\x96\x8e\xe8\xe3\ \xdd\xd7\xd5\xd4\x95\x87\x83\x96\x82\x79\x8e\x7d\x75\x8e\x7b\x72\ \xa7\x98\x8f\xcc\xc3\xbb\xc6\xc3\xc2\x7c\x6e\x68\x8c\x79\x6f\x94\ \x85\x7e\x88\x75\x6d\x84\x6e\x64\x84\x71\x67\x85\x6f\x65\x83\x71\ \x6a\x8b\x77\x6e\x84\x6f\x63\x82\x6f\x66\x83\x6e\x66\x7e\x69\x62\ \x7d\x67\x5c\x82\x6f\x68\x83\x6f\x67\x8d\x78\x6f\xa4\x8d\x7f\x8c\ \x81\x82\x80\x69\x60\x91\x77\x67\xae\xa4\x9d\x83\x6f\x69\x85\x71\ \x65\x87\x71\x67\x8e\x77\x6b\x93\x7e\x73\x81\x6b\x63\x81\x69\x5d\ \x83\x6d\x61\x81\x6a\x5c\x83\x6b\x5a\x8c\x77\x6b\x92\x7d\x75\x82\ \x6c\x62\x95\x7f\x71\x9c\x87\x7d\x7f\x69\x60\x8e\x7d\x72\x9e\x8c\ \x7e\xa7\x91\x81\xac\x9e\x92\x9e\x97\x90\x89\x8c\x8c\x3d\x46\x45\ \x97\x82\x6f\xb5\xa8\x99\x87\x80\x78\xd5\xc4\xaa\xc0\xb9\xb2\xc2\ \xb7\xa8\x8d\x94\x9b\x70\x7a\x7d\x76\x74\x73\x50\x59\x56\x8b\x85\ \x72\x4e\x71\x83\x31\x4d\x4d\x29\x3c\x3b\x63\x60\x50\x58\x6c\x79\ \x84\x6d\x4e\x84\x87\x8a\x41\x4d\x4b\x3e\x4a\x49\x57\x5c\x54\x51\ \x60\x6c\x00\x00\x00\x51\x5e\x5e\x5e\x6c\x75\x5c\x63\x6a\x4b\x4f\ \x48\x46\x4f\x47\x46\x50\x49\x4f\x60\x62\x51\x5e\x5c\x5b\x66\x70\ \x58\x5b\x59\x43\x3e\x38\x59\x65\x6d\x52\x5e\x59\x41\x46\x3b\x48\ \x49\x46\x55\x57\x5b\x53\x62\x64\x59\x71\x77\x4e\x59\x57\x4e\x61\ \x64\x56\x65\x6d\x65\x7c\x82\x51\x64\x69\x63\x72\x7d\x66\x74\x7c\ \x66\x76\x7f\x59\x64\x5e\x51\x5c\x51\x52\x60\x52\x51\x56\x4c\x6b\ \x7d\x8a\x7c\x91\x9a\x54\x5e\x50\x4e\x5a\x4d\x65\x65\x60\x75\x66\ \x5f\x79\x6a\x5d\x63\x5e\x52\x55\x55\x4c\x59\x57\x52\x56\x5e\x54\ \x84\x8d\x98\x66\x72\x71\x4f\x5a\x4e\x5a\x5e\x5a\x5e\x61\x5e\x72\ \x77\x79\x8d\x8c\x8b\x73\x73\x73\x6e\x6d\x6b\x75\x74\x70\x74\x72\ \x6f\x57\x58\x50\x50\x53\x46\x4b\x4e\x40\x63\x64\x60\x8a\x8c\x8f\ \xa1\xa6\xa9\x92\x94\x94\x51\x4c\x3e\x4f\x4a\x3d\x54\x49\x3b\x5a\ \x4e\x44\x7d\x76\x6f\x7a\x72\x6e\x76\x70\x6c\x62\x5a\x53\x64\x5e\ \x54\x61\x5b\x56\x69\x61\x5b\x5c\x4f\x43\x54\x4a\x40\x4e\x45\x36\ \x4c\x43\x32\x49\x44\x33\x54\x4d\x45\x7b\x77\x71\xc0\xba\xb5\xa0\ \x98\x98\xb1\xa8\xa2\xc9\xc6\xc3\xa5\xa2\xa0\x76\x6f\x6b\xab\xa4\ \x9a\xc7\xc2\xbc\xad\xa7\xa6\xc6\xbe\xb7\xe1\xda\xd2\xce\xcd\xcd\ \x8b\x7e\x7a\x7f\x6a\x60\x7a\x64\x56\x8f\x7c\x72\xae\x9e\x93\xde\ \xd1\xc4\xcb\xc7\xc2\xa8\xa2\xa3\x80\x6b\x5f\x95\x85\x7e\x89\x77\ \x70\x82\x6e\x64\x8f\x79\x6d\x8f\x7f\x79\x87\x77\x6f\x8f\x7a\x73\ \x8b\x77\x6e\x8d\x7a\x70\x84\x71\x68\x82\x71\x68\xa1\x95\x8b\xbd\ \xad\xa2\xae\xa7\xa9\x8d\x78\x72\x87\x73\x68\x86\x71\x67\x83\x6e\ \x66\x84\x70\x65\xc0\xa3\x8a\xa8\xa4\xa9\x85\x73\x6b\x85\x71\x6a\ \x80\x69\x5e\x7d\x61\x50\x8c\x77\x6c\x83\x6d\x63\x82\x6a\x5c\x85\ \x6c\x62\x86\x6a\x59\x84\x6e\x67\x83\x6d\x5d\x87\x70\x64\x89\x71\ \x69\x8a\x71\x64\x8e\x78\x6e\x88\x72\x66\x6b\x63\x5d\x6c\x5f\x52\ \xc2\xab\x93\xc7\xc1\xbc\x7b\x7e\x80\x64\x5b\x46\xc0\xb3\xa4\xbc\ \xae\xa4\x86\x87\x8b\x87\x7f\x70\x67\x6b\x67\x77\x6c\x58\xa2\x9d\ \x97\x67\x79\x89\x6a\x6b\x6c\x60\x6a\x72\x4f\x53\x4e\x34\x45\x42\ \x3d\x49\x3f\x71\x6f\x67\x61\x62\x60\x44\x51\x4f\x31\x3b\x3a\x30\ \x3e\x3e\x30\x49\x4b\x2f\x3e\x38\x51\x5e\x5d\x5d\x66\x6c\x00\x00\ \x00\x4f\x5e\x5c\x5d\x6f\x7c\x55\x5a\x58\x4c\x4f\x4b\x47\x53\x4b\ \x48\x4c\x47\x4d\x57\x58\x56\x5d\x63\x57\x5c\x64\x55\x59\x58\x49\ \x45\x42\x64\x71\x7e\x5c\x6a\x6a\x46\x4f\x49\x49\x4e\x4e\x57\x61\ \x69\x5c\x6a\x72\x4d\x60\x5c\x50\x5d\x5d\x5d\x6a\x77\x63\x76\x87\ \x73\x81\x8a\x69\x7b\x83\x6e\x7a\x85\x6d\x78\x84\x68\x77\x79\x5d\ \x6b\x65\x58\x65\x5d\x51\x5b\x4e\x51\x54\x4b\x75\x8c\x9c\x82\x81\ \x7f\x7a\x76\x72\x7a\x77\x73\x78\x70\x69\x67\x5c\x55\x63\x59\x4d\ \x56\x51\x45\x57\x57\x4e\x57\x5e\x53\x59\x5d\x59\x8d\x93\x99\x54\ \x5c\x53\x50\x57\x4d\x4f\x54\x4b\x6e\x70\x6e\x96\x93\x93\x90\x8d\ \x8d\x7e\x78\x77\x77\x71\x6a\x6c\x63\x5c\x8a\x86\x82\x7f\x77\x72\ \x71\x6a\x63\x64\x64\x5c\x81\x80\x7d\x80\x7a\x76\x6c\x67\x61\x6c\ \x68\x61\x4d\x48\x38\x50\x4d\x3b\x54\x4b\x3c\x59\x50\x45\x7f\x7b\ \x78\x77\x6c\x67\x61\x57\x4d\x72\x6b\x64\x61\x5d\x52\x65\x5b\x51\ \x52\x4b\x41\x56\x50\x45\x51\x4b\x3b\x4d\x47\x35\x4e\x49\x3c\x83\ \x7e\x78\xd3\xcc\xc9\xee\xec\xeb\xd7\xd4\xd4\x90\x8e\x8f\xad\xa3\ \x9d\xe3\xdf\xd9\xcd\xc9\xc4\xae\xa8\xa5\xc0\xb8\xb0\xdd\xd7\xd1\ \xdb\xd6\xd2\xdd\xd8\xd3\xdc\xd6\xd1\xd5\xd1\xcd\x9c\x92\x90\x86\ \x72\x6d\x78\x61\x54\x83\x6f\x65\x79\x61\x53\x88\x6f\x5e\xba\xa8\ \x9a\xd9\xd1\xcd\xaa\xa3\xa3\x98\x89\x84\x89\x78\x71\x85\x70\x66\ \x89\x73\x6a\x89\x74\x6c\x85\x71\x6a\x8b\x73\x6b\x87\x71\x69\x87\ \x71\x62\x87\x72\x68\xa2\x84\x71\xe5\xd9\xce\xb1\xa6\xa2\xbd\xab\ \x99\xb3\xac\xad\x89\x77\x70\x7d\x67\x5c\x83\x6d\x62\x88\x72\x6a\ \x8e\x72\x5f\xd3\xc2\xb3\x8a\x85\x89\x7c\x66\x5e\x73\x57\x45\x7d\ \x5e\x49\x86\x72\x6d\x8b\x72\x61\x9e\x8a\x7c\x83\x6d\x64\x86\x6b\ \x57\x83\x6c\x63\x8c\x73\x63\x84\x6b\x63\x85\x6c\x60\x82\x6c\x5f\ \x93\x79\x6b\xab\xa2\x9c\x5a\x58\x57\x66\x6b\x67\x8a\x79\x69\x99\ \x8e\x82\x7c\x7a\x75\x3f\x49\x4d\xa0\x90\x76\xa1\x9f\x9b\x84\x80\ \x78\x8a\x8d\x8e\x35\x49\x4d\x62\x5c\x4d\x9f\x8b\x75\x65\x77\x81\ \x6e\x74\x6b\x6c\x79\x7c\x48\x50\x4f\x26\x39\x3b\x5c\x5f\x54\x5d\ \x65\x65\x38\x44\x47\x2a\x39\x3a\x4b\x53\x50\x42\x50\x45\x5b\x65\ \x61\x4a\x55\x56\x60\x68\x66\x5b\x67\x69\x00\x00\x00\x4e\x54\x4d\ \x59\x69\x76\x4e\x4b\x42\x4d\x50\x4e\x49\x52\x4a\x47\x4c\x46\x49\ \x48\x42\x53\x5a\x5e\x5f\x67\x6a\x4f\x54\x4f\x49\x4a\x49\x61\x6f\ \x7c\x6a\x7a\x86\x4d\x55\x4f\x57\x63\x6c\x5c\x6b\x73\x64\x75\x82\ \x52\x62\x63\x5d\x69\x70\x6d\x7f\x91\x74\x83\x92\x6d\x74\x78\x65\ \x6f\x72\x70\x7d\x89\x64\x6f\x6f\x5f\x69\x64\x61\x67\x63\x55\x5a\ \x51\x4e\x55\x48\x66\x7c\x89\x89\x9f\xaf\x7e\x74\x6f\x78\x6b\x64\ \x78\x6d\x66\x66\x5f\x54\x59\x54\x4b\x56\x5d\x53\x58\x54\x4b\x56\ \x50\x46\x51\x55\x49\x65\x6d\x71\x65\x69\x66\x59\x60\x54\x52\x56\ \x4e\x58\x59\x52\x81\x7b\x77\x83\x7b\x79\x7f\x78\x75\x80\x7d\x7a\ \x6c\x64\x5e\x68\x61\x5c\x74\x6a\x63\x6b\x5d\x56\x77\x6f\x68\x77\ \x71\x6e\x85\x7e\x79\x85\x7d\x77\x60\x58\x4e\x54\x4d\x42\x57\x52\ \x47\x52\x4e\x3f\x5e\x55\x4c\x66\x61\x56\x8f\x8b\x86\x7a\x7a\x76\ \x6b\x69\x63\x5e\x58\x4e\x55\x4e\x3f\x4c\x46\x34\x5c\x57\x4e\x60\ \x57\x50\x55\x4c\x3e\x4e\x44\x36\x72\x66\x59\x98\x92\x8d\xc9\xc7\ \xc3\xeb\xe9\xe9\xdd\xdd\xde\x9c\x99\x9b\xd0\xca\xc6\xeb\xea\xe8\ \xe1\xde\xdc\xd8\xd4\xd0\xde\xd9\xd5\xd7\xd0\xc8\xbb\xb2\xac\xb1\ \xa3\x99\xb2\xa5\x9f\x97\x8b\x88\x8d\x7f\x77\x95\x86\x7c\x91\x81\ \x7c\x87\x72\x6a\x72\x58\x49\x79\x5d\x4c\x7d\x67\x5c\x9e\x85\x71\ \xc8\xba\xaf\xc2\xba\xb6\x8a\x7a\x78\x82\x68\x5a\x87\x71\x65\x87\ \x6d\x62\x87\x71\x68\x87\x71\x67\x88\x70\x65\x8a\x70\x64\x88\x6e\ \x61\xa6\x8a\x76\xbe\xaf\xa9\x86\x72\x6c\x88\x6c\x5e\x9d\x8b\x7e\ \x92\x7e\x73\x8b\x74\x6b\x83\x6c\x62\x83\x68\x59\x80\x6d\x67\x97\ \x74\x58\x9c\x91\x8f\x7b\x63\x59\x75\x59\x49\x7e\x63\x51\x84\x6c\ \x5e\x87\x6c\x5e\xb9\xa2\x93\x82\x70\x6a\x8a\x73\x66\x85\x71\x67\ \x91\x7c\x72\x81\x6a\x5c\x81\x69\x5a\x84\x68\x55\x8a\x74\x69\x7e\ \x67\x59\x8f\x7c\x6d\xa6\x9f\x96\x68\x69\x6a\x95\x8e\x85\xae\x9c\ \x85\x6d\x77\x82\x4f\x5c\x5a\x50\x54\x4a\x75\x6a\x56\x79\x83\x90\ \x44\x50\x4a\x44\x4d\x4e\x35\x41\x3e\x2a\x45\x46\x5d\x5b\x4b\x80\ \x7d\x77\x5a\x5d\x5d\x44\x5b\x61\x47\x52\x4d\x60\x66\x62\x68\x61\ \x57\x83\x7b\x73\x89\x85\x7f\x72\x74\x6e\x5c\x63\x5e\x48\x5b\x58\ \x53\x60\x67\x56\x5c\x5a\x00\x00\x00\x50\x59\x50\x50\x56\x57\x4a\ \x48\x3f\x4e\x50\x4c\x4c\x51\x49\x4b\x50\x4b\x42\x3d\x31\x4c\x50\ \x50\x63\x6c\x70\x4f\x58\x53\x4f\x58\x5a\x6e\x81\x92\x6b\x79\x84\ \x50\x59\x56\x5a\x66\x6f\x66\x77\x83\x6a\x7c\x8c\x5e\x6c\x71\x65\ \x6d\x74\x73\x80\x8c\x74\x80\x88\x68\x6b\x68\x53\x58\x52\x5e\x69\ \x69\x53\x65\x5d\x5f\x6a\x68\x54\x67\x61\x54\x5d\x55\x50\x55\x4a\ \x64\x6a\x6f\x7f\x8d\x98\x83\x7a\x77\x67\x5a\x4f\x5d\x52\x44\x5c\ \x56\x49\x5d\x55\x4d\x55\x4e\x3e\x55\x4a\x3c\x53\x4d\x40\x5f\x64\ \x63\x66\x68\x67\x71\x73\x72\x6f\x72\x6d\x5f\x5d\x56\x74\x6a\x64\ \x7c\x71\x6d\x80\x79\x76\x7a\x72\x70\x79\x75\x70\x61\x59\x50\x67\ \x60\x5b\x5e\x5a\x52\x6d\x67\x63\x71\x6c\x66\x7b\x75\x71\x88\x81\ \x7c\x76\x6e\x68\x70\x65\x5d\x57\x4f\x44\x5f\x59\x50\x51\x4d\x3e\ \x67\x5b\x52\x82\x78\x71\x89\x83\x7e\x93\x93\x93\x81\x7f\x7c\x54\ \x51\x45\x4d\x47\x37\x4f\x46\x37\x57\x49\x3d\x5e\x4f\x43\x7a\x6d\ \x67\x5c\x4f\x47\x5f\x51\x43\xd4\xd1\xcd\xda\xdb\xdd\xf4\xf3\xf3\ \xec\xed\xef\xc4\xc4\xc5\xe9\xe8\xe8\xf0\xef\xef\xe6\xe3\xe3\xec\ \xeb\xe9\xe5\xe3\xe2\xa4\x9a\x96\x82\x6a\x5f\x86\x72\x67\x82\x6b\ \x5d\x86\x6f\x63\x86\x70\x66\xa5\x99\x8f\xa7\x9a\x95\x89\x78\x71\ \x77\x59\x48\x72\x52\x3e\x75\x59\x49\x75\x58\x4a\x7f\x65\x52\x87\ \x72\x67\x86\x6e\x5e\x84\x6d\x63\x82\x69\x5e\x82\x69\x5c\x7f\x67\ \x57\x89\x72\x66\x84\x69\x5a\x86\x6d\x5c\x84\x6c\x60\x96\x7a\x6a\ \x9b\x89\x7f\x85\x6f\x64\x82\x67\x5c\x75\x5b\x4e\x8e\x76\x68\x86\ \x6d\x61\x88\x71\x66\x83\x69\x5d\x82\x6d\x61\x78\x5b\x4e\xa3\x8e\ \x80\x80\x69\x62\x7c\x61\x54\x83\x6a\x5b\x83\x6a\x5d\x93\x73\x5b\ \xc4\xb5\xac\x8b\x7c\x78\x8b\x76\x6c\x8b\x75\x6d\x7b\x64\x5c\x89\ \x72\x64\x7e\x65\x58\x86\x6a\x57\x88\x76\x6f\x56\x4f\x47\x6f\x69\ \x62\x77\x77\x70\x83\x7a\x67\x94\x94\x94\xa0\x8f\x7b\x57\x63\x69\ \x43\x50\x4e\x48\x58\x59\x6d\x64\x53\x7f\x84\x85\x2b\x38\x3a\x47\ \x51\x4d\x32\x42\x42\x3c\x4c\x48\x40\x56\x57\x4c\x58\x54\x95\x8c\ \x7b\x80\x90\x9e\x31\x47\x48\x65\x62\x53\x8f\x7f\x72\x8c\x7b\x6f\ \x8c\x83\x7e\x7a\x77\x79\x5a\x6c\x70\x4d\x64\x65\x43\x56\x5a\x50\ \x5f\x65\x00\x00\x00\x53\x60\x5a\x48\x4a\x40\x46\x45\x3e\x51\x56\ \x51\x4c\x52\x4c\x49\x4f\x48\x41\x3e\x32\x41\x3e\x39\x58\x64\x66\ \x59\x67\x6b\x58\x68\x6d\x6f\x83\x90\x6f\x7f\x88\x50\x5c\x58\x51\ \x5b\x61\x6b\x7c\x8a\x6f\x82\x92\x6b\x6a\x6a\x59\x56\x4f\x58\x5a\ \x58\x58\x61\x5e\x52\x5f\x58\x56\x62\x5c\x5b\x68\x65\x6f\x7b\x78\ \x6c\x76\x78\x5a\x5c\x54\x52\x4e\x44\x53\x55\x4c\x51\x58\x4f\x6c\ \x72\x74\x71\x71\x6c\x59\x58\x4e\x55\x52\x48\x5c\x5f\x54\x5c\x55\ \x47\x54\x4c\x3f\x53\x4e\x3d\x57\x58\x4d\x75\x7a\x7b\x79\x71\x69\ \x6e\x67\x62\x71\x6f\x6c\x80\x7b\x78\x84\x7b\x76\x7e\x73\x6d\x77\ \x6d\x63\x79\x70\x68\x77\x6f\x6b\x6f\x67\x61\x60\x59\x52\x76\x70\ \x6a\x68\x62\x5f\x76\x71\x6c\x7a\x6d\x65\x84\x7a\x74\x7f\x77\x70\ \x74\x69\x60\x5c\x50\x43\x6d\x66\x5d\x58\x52\x47\x55\x49\x3d\x85\ \x7b\x74\x7f\x78\x72\x69\x61\x58\x5c\x55\x48\x4c\x46\x37\x64\x5e\ \x52\x6b\x61\x54\x52\x41\x30\x66\x55\x47\x7a\x6c\x68\x5e\x51\x49\ \x8d\x84\x7a\xf6\xf6\xf8\xe3\xe2\xe3\xf4\xf4\xf4\xeb\xeb\xec\xed\ \xec\xed\xf3\xf1\xf1\xce\xcf\xd0\x94\x88\x83\xc3\xba\xb3\xee\xed\ \xeb\x94\x8a\x8a\x87\x6f\x65\x8b\x79\x6f\x7a\x64\x57\x7f\x65\x55\ \x83\x6b\x5f\x7c\x63\x56\x8a\x74\x67\x86\x74\x6a\x73\x55\x45\x70\ \x4e\x38\x77\x5b\x49\x79\x5c\x4e\x80\x61\x4a\x7c\x62\x56\x7b\x5d\ \x4b\x9b\x88\x7d\x97\x89\x86\x85\x6d\x63\x85\x6b\x5b\x85\x6e\x63\ \x85\x6a\x5c\x8c\x75\x68\x7d\x63\x55\x85\x69\x59\x89\x70\x63\x7f\ \x64\x53\x7a\x5c\x4a\x73\x56\x46\x87\x6e\x5e\x87\x70\x65\x82\x69\ \x5b\x83\x68\x58\x84\x6c\x60\x7a\x5f\x4f\xad\x94\x84\x80\x6c\x68\ \x80\x67\x5d\x87\x70\x63\x8a\x76\x69\xae\x8d\x73\xbd\xb2\xad\x85\ \x72\x6c\x97\x82\x75\x90\x7c\x74\x89\x74\x69\x93\x81\x77\x8d\x7b\ \x76\x8c\x72\x66\x9d\x88\x7f\x77\x72\x72\x4b\x4e\x45\x50\x62\x65\ \x4e\x4c\x3c\x8a\x88\x85\x6b\x63\x5a\x4c\x58\x5f\x55\x51\x44\x6f\ \x7b\x7d\x3c\x4c\x4b\x34\x44\x41\x50\x58\x50\x4c\x58\x53\x62\x68\ \x62\x99\x91\x81\x70\x82\x8d\x75\x70\x5b\x8d\x87\x86\x9a\x92\x8d\ \x5d\x5e\x5e\x65\x5c\x51\x69\x62\x5b\x81\x6c\x57\x83\x7d\x77\x6b\ \x68\x6a\x6b\x6f\x6f\x53\x5d\x5c\x3c\x52\x5e\x51\x5a\x57\x00\x00\ \x00\x55\x64\x61\x4b\x4e\x45\x45\x47\x3e\x51\x5e\x5a\x4d\x50\x4a\ \x49\x50\x48\x4f\x54\x4f\x4a\x4d\x4c\x55\x66\x69\x64\x77\x87\x68\ \x78\x85\x6c\x7b\x85\x68\x73\x7a\x55\x60\x5e\x60\x6d\x77\x70\x80\ \x8d\x69\x7e\x88\x5e\x68\x69\x54\x5a\x52\x52\x62\x5a\x59\x68\x65\ \x5c\x6a\x65\x6c\x72\x70\x86\x8a\x8f\x89\x8d\x92\x6e\x6a\x65\x76\ \x70\x6a\x62\x5f\x53\x50\x55\x48\x69\x7b\x82\x5d\x62\x5c\x55\x5f\ \x55\x57\x63\x5b\x61\x65\x5d\x5d\x60\x56\x5f\x5c\x51\x5a\x50\x45\ \x54\x4c\x43\x64\x69\x68\x7c\x7b\x77\x76\x68\x60\x79\x6f\x68\x7e\ \x7a\x77\x92\x8c\x8a\x83\x7b\x78\x78\x6b\x63\x6b\x5e\x55\x78\x6d\ \x65\x80\x79\x75\x80\x7a\x75\x76\x71\x6a\x5c\x57\x4d\x75\x70\x6e\ \x73\x67\x5f\x6c\x5c\x53\x80\x73\x69\x7b\x6d\x64\x6a\x60\x57\x75\ \x6a\x62\x82\x7b\x74\x5c\x52\x44\x56\x4d\x41\x71\x68\x5d\x64\x59\ \x4d\x60\x57\x4f\x4c\x43\x33\x79\x75\x67\x97\x8d\x86\x6a\x61\x5a\ \x54\x44\x34\x68\x57\x47\x7f\x70\x68\x6f\x64\x5e\xc9\xc6\xc1\xf1\ \xef\xf0\xee\xec\xec\xec\xe9\xe7\xef\xec\xea\xef\xee\xec\xea\xe9\ \xe7\xb1\xac\xa9\x80\x71\x6a\xb4\xa9\xa0\xcf\xcc\xc9\x95\x85\x82\ \x8a\x76\x6f\x89\x79\x6f\x81\x6b\x61\x84\x6a\x5c\x88\x76\x6e\x80\ \x68\x5c\x8f\x80\x76\x93\x84\x7e\x7b\x61\x56\x71\x4f\x3b\x7d\x5f\ \x4e\x7f\x63\x56\x80\x60\x4a\x80\x65\x59\x80\x62\x52\x8e\x78\x6d\ \x93\x7a\x71\x91\x7d\x74\x80\x67\x5c\x84\x6d\x60\x8a\x70\x61\x88\ \x70\x64\x7f\x66\x5b\x82\x67\x56\x83\x68\x59\x7c\x5f\x4e\x77\x5a\ \x48\x70\x51\x41\x7e\x5d\x4b\x87\x6f\x65\x7e\x64\x54\x81\x68\x58\ \x7e\x66\x5a\x78\x5d\x4e\xa7\x8b\x73\x8b\x79\x75\x99\x88\x7f\x85\ \x71\x68\x86\x71\x64\xb0\x97\x82\x89\x76\x70\x74\x58\x4a\x88\x71\ \x62\x95\x7e\x6d\xd6\xc1\xaf\xce\xc2\xbc\x79\x7e\x86\x66\x61\x58\ \x5f\x5c\x54\x7a\x6b\x5f\x40\x48\x4a\x43\x50\x4d\x40\x4b\x49\x5b\ \x5b\x54\x5e\x5c\x54\x35\x42\x46\x48\x45\x3d\x66\x67\x63\x4f\x64\ \x67\x2a\x46\x44\x6a\x6b\x5a\x5d\x64\x62\x96\x8f\x79\xa2\x92\x86\ \x7c\x86\x92\x58\x50\x3f\x5b\x5c\x5b\x8a\x76\x69\x57\x58\x5b\x33\ \x3a\x35\x3a\x3f\x3b\x4c\x4f\x47\x57\x63\x66\x64\x69\x65\x57\x5f\ \x61\x3a\x4a\x4b\x54\x61\x61\x4d\x56\x57\x00\x00\x00\x52\x68\x62\ \x4d\x52\x48\x63\x73\x7e\x6b\x6d\x66\x4a\x4d\x4a\x45\x49\x40\x56\ \x60\x65\x54\x60\x63\x66\x78\x82\x67\x76\x7d\x62\x73\x77\x5f\x73\ \x7c\x71\x81\x87\x51\x62\x60\x67\x76\x7c\x6d\x7d\x89\x79\x89\x93\ \x63\x6f\x6f\x53\x62\x5b\x56\x5a\x54\x5c\x69\x6b\x5b\x65\x61\x72\ \x6c\x65\x84\x84\x86\x84\x8b\x8c\x6d\x6c\x69\x5f\x58\x4f\x56\x52\ \x4a\x63\x67\x65\x5f\x66\x68\x55\x5a\x4d\x58\x5d\x53\x61\x66\x5b\ \x5d\x60\x56\x56\x56\x4c\x56\x4c\x3a\x57\x4d\x40\x56\x51\x4a\x66\ \x67\x65\x7a\x78\x74\x7c\x70\x68\x70\x64\x5d\x74\x69\x64\x95\x90\ \x90\x8f\x8b\x8a\x79\x72\x6c\x68\x63\x60\x7d\x75\x6d\x80\x75\x6e\ \x8a\x85\x81\x70\x68\x5d\x69\x5f\x56\x72\x68\x63\x77\x6f\x66\x6c\ \x62\x59\x80\x76\x6d\x70\x67\x5f\x6b\x62\x5d\x86\x7b\x77\x75\x6e\ \x62\x52\x4a\x39\x55\x4e\x3f\x54\x4f\x40\x5a\x50\x43\x5b\x51\x44\ \x66\x5f\x4f\x81\x78\x6b\x76\x6b\x64\x72\x63\x61\x59\x4a\x3d\x77\ \x62\x58\x79\x64\x58\x8b\x7b\x6c\xe3\xe0\xda\xee\xec\xec\xd2\xcd\ \xc9\xe1\xdd\xd6\xe7\xe3\xde\xe9\xe5\xdf\xcf\xcf\xcf\x7b\x68\x5e\ \x85\x73\x6d\xa8\x96\x89\xdc\xd9\xd4\x90\x7f\x7c\xa7\x9d\x98\x89\ \x72\x69\x84\x6f\x66\x89\x71\x63\x8a\x75\x6a\xa9\x9b\x96\xb5\xac\ \xa7\x92\x86\x83\x8b\x78\x71\x91\x82\x79\x85\x6d\x62\x87\x70\x64\ \x81\x65\x53\x84\x69\x5e\x81\x66\x57\x87\x6d\x5f\x91\x75\x64\x8a\ \x75\x6b\x84\x6d\x63\x80\x67\x5a\x82\x69\x58\x84\x6d\x63\x81\x69\ \x5c\x79\x5d\x4c\x84\x69\x57\x7f\x67\x5b\x75\x56\x48\x79\x5a\x47\ \x84\x6a\x5b\x87\x6f\x67\x7e\x66\x58\x7e\x64\x54\x80\x62\x4f\x78\ \x5e\x51\xaf\x92\x78\x85\x77\x76\x8b\x75\x68\x97\x86\x7d\xb1\xa2\ \x96\x7e\x6e\x6a\x79\x5f\x50\x6d\x4b\x38\x7a\x5d\x4b\x9a\x79\x61\ \xe2\xd1\xc3\xb1\xaa\xa9\x8e\x8f\x8c\x82\x80\x79\x5c\x66\x6c\x4f\ \x4c\x3d\x34\x43\x4b\x27\x34\x30\x5d\x59\x55\x3e\x45\x43\x45\x48\ \x43\x50\x5a\x57\x51\x53\x47\x58\x66\x61\x4e\x55\x50\x1e\x2d\x31\ \x65\x56\x3a\x51\x65\x73\x44\x49\x3f\x72\x66\x55\x7a\x7b\x81\x33\ \x3b\x3a\x3c\x47\x41\x2c\x2b\x2a\x48\x44\x3d\x5f\x57\x4d\x6c\x5f\ \x53\x75\x77\x72\x73\x72\x71\x99\x80\x6f\x8b\x7f\x78\x6b\x6f\x72\ \x44\x4e\x55\x56\x55\x4d\x00\x00\x00\x60\x71\x6d\x4b\x50\x4a\x62\ \x74\x82\x5f\x6d\x67\x4d\x5d\x58\x4e\x5d\x5a\x5f\x70\x7a\x68\x77\ \x7b\x75\x7e\x87\x79\x84\x8f\x6c\x7a\x84\x7b\x86\x88\x68\x6b\x69\ \x66\x70\x74\x60\x73\x7a\x7a\x88\x95\x81\x89\x90\x63\x65\x62\x56\ \x58\x4c\x55\x57\x54\x5c\x65\x64\x5d\x69\x68\x86\x8c\x93\x87\x88\ \x89\x84\x82\x83\x64\x62\x5c\x56\x59\x50\x59\x5c\x56\x5a\x61\x61\ \x6c\x78\x7c\x54\x57\x45\x59\x5d\x50\x5c\x5c\x53\x5f\x59\x4f\x56\ \x51\x47\x54\x50\x43\x57\x57\x4d\x5a\x5b\x57\x61\x62\x5c\x86\x85\ \x85\x7d\x76\x71\x72\x6b\x64\x70\x62\x5d\x7a\x73\x6f\x7b\x73\x6f\ \x7c\x74\x6f\x7d\x77\x73\x7a\x6f\x69\x77\x6d\x66\x76\x6b\x62\x6e\ \x63\x5a\x6c\x62\x5c\x72\x63\x5b\x7e\x6e\x65\x7e\x70\x6a\x77\x6c\ \x61\x6b\x5f\x54\x74\x6a\x63\x74\x69\x63\x5b\x4f\x43\x5e\x54\x48\ \x59\x52\x43\x52\x45\x35\x53\x45\x36\x54\x4d\x3c\x69\x5d\x4f\x7c\ \x6d\x5f\x7a\x6e\x6d\x70\x5d\x59\x6b\x5b\x51\x7c\x6b\x60\x6e\x5e\ \x54\x95\x87\x7a\xe7\xe2\xdd\xcf\xcf\xce\x83\x72\x6c\x7b\x63\x56\ \x9d\x88\x79\xd9\xd1\xc9\xdd\xda\xd6\x7e\x6d\x65\x84\x6f\x63\xc2\ \xb5\xa9\xe5\xdf\xd8\xa7\x9f\x9f\x97\x86\x7c\x93\x83\x7c\x85\x70\ \x68\x88\x73\x69\x9c\x87\x7d\xc9\xc0\xbb\xae\x9f\x96\xa6\x9c\x9a\ \xad\xa0\x98\xb7\xac\xa6\xbc\xb2\xaf\x8d\x7b\x75\x96\x80\x75\x8e\ \x78\x70\x8d\x75\x69\x88\x70\x62\x86\x6c\x60\x82\x67\x58\x88\x72\ \x67\x87\x72\x6a\x7f\x64\x53\x84\x6b\x61\x7b\x62\x58\x86\x6c\x5c\ \x7d\x63\x51\x7c\x63\x56\x76\x5a\x49\x7b\x5f\x4f\x80\x68\x5a\x79\ \x5f\x53\x81\x6b\x61\x80\x6a\x5f\x78\x5e\x51\x76\x5c\x4c\xa0\x80\ \x67\xa7\x9b\x95\xc6\xb6\xa8\xae\xa4\xa3\x8f\x81\x7a\x7a\x62\x55\ \x7e\x66\x57\x74\x5a\x4c\x78\x5f\x4f\xb9\x9f\x87\xd2\xc9\xc5\x81\ \x79\x78\x8e\x88\x80\x85\x7b\x74\x66\x61\x60\x80\x70\x5a\x40\x52\ \x61\x36\x3f\x3b\x2e\x3a\x38\x44\x4c\x43\x89\x77\x65\x99\x82\x75\ \x5d\x66\x67\x53\x5c\x4f\x4b\x4f\x48\x2e\x39\x3e\x45\x42\x3d\x48\ \x4a\x45\x56\x56\x4c\x45\x4b\x48\x2b\x35\x2f\x42\x4f\x48\x3d\x45\ \x3c\x72\x65\x5a\x92\x7c\x6e\x83\x6e\x63\x86\x71\x62\x7c\x7e\x83\ \x54\x55\x55\x79\x74\x6d\x7e\x79\x76\x6d\x6f\x6d\x61\x69\x6a\x62\ \x5e\x57\x00\x00\x00\x67\x7b\x7b\x53\x60\x5f\x83\x9e\xaf\x77\x85\ \x7e\x50\x68\x62\x52\x63\x5d\x56\x62\x67\x71\x80\x85\x6e\x7b\x84\ \x70\x7c\x82\x71\x7d\x86\x71\x72\x71\x63\x62\x5e\x74\x76\x77\x79\ \x84\x8d\x87\x8f\x96\x72\x72\x6a\x52\x4f\x43\x58\x5d\x59\x5f\x69\ \x6c\x58\x64\x5f\x5e\x68\x66\x6e\x77\x7b\x80\x81\x7f\x72\x6d\x69\ \x6a\x67\x64\x69\x6a\x67\x62\x69\x6a\x7a\x8f\x99\x62\x6b\x6a\x57\ \x59\x4c\x60\x64\x5c\x56\x5d\x4e\x53\x54\x46\x62\x5c\x4f\x60\x5d\ \x57\x77\x82\x8b\x6f\x71\x74\x7d\x7d\x7c\x82\x80\x7e\x76\x73\x6e\ \x76\x6f\x68\x69\x5e\x57\x77\x6c\x65\x70\x66\x5e\x74\x6c\x65\x7c\ \x70\x67\x70\x61\x58\x71\x65\x5b\x70\x60\x55\x68\x5c\x51\x65\x59\ \x4d\x57\x46\x3a\x6d\x61\x55\x6f\x63\x56\x5e\x54\x46\x58\x4d\x3b\ \x5c\x52\x44\x5c\x50\x3e\x53\x46\x34\x53\x44\x33\x51\x45\x35\x50\ \x46\x31\x53\x49\x36\x6b\x60\x53\x7f\x6e\x67\x80\x6e\x60\x80\x73\ \x6d\x83\x71\x67\x7b\x69\x5d\x80\x6e\x62\x7a\x67\x60\x95\x83\x73\ \xd9\xcf\xc4\xd8\xd3\xcd\x9a\x91\x8f\x7c\x65\x5c\x7b\x63\x57\xb9\ \xa8\x99\xda\xd3\xcd\x96\x8b\x86\x7e\x67\x5b\x90\x7c\x71\xa7\x97\ \x8c\x89\x79\x73\x7b\x64\x57\x8f\x78\x6a\x90\x7d\x74\x8e\x7b\x74\ \x91\x7c\x72\x83\x6e\x64\x90\x79\x6f\xac\x9d\x92\xa4\x98\x91\xbd\ \xb4\xac\x98\x89\x82\x91\x7e\x74\x8e\x75\x67\x94\x7f\x72\x94\x80\ \x79\x93\x7a\x71\x8f\x78\x70\x89\x72\x68\x94\x7b\x6f\xb8\xa9\x9e\ \x90\x81\x7a\x81\x6a\x62\x7c\x65\x57\x6f\x54\x46\x85\x6f\x5f\x8d\ \x79\x6e\x84\x71\x66\x83\x6e\x62\x8e\x79\x6e\x90\x7e\x74\x98\x8a\ \x81\x88\x7a\x74\x76\x5e\x53\x75\x5c\x4f\x94\x79\x65\xc4\xae\x9c\ \xd7\xca\xbd\xa9\xa3\xa4\x7d\x6c\x68\x7d\x65\x58\x7d\x66\x5c\x86\ \x71\x63\xbe\xa9\x92\xc8\xc2\xbd\x94\x90\x8b\x47\x54\x59\x38\x46\ \x43\x46\x47\x42\x3f\x44\x3f\x34\x3c\x35\x44\x4c\x4a\x44\x52\x4c\ \x64\x64\x5d\x42\x49\x43\x67\x5a\x4b\x72\x69\x60\x58\x55\x4f\x2e\ \x3f\x41\x28\x30\x27\x3c\x3e\x3c\x4a\x49\x40\x72\x6f\x68\x52\x54\ \x4f\x65\x65\x5f\x79\x6b\x59\xb6\xa8\x98\xa9\x9e\x98\x8a\x7f\x7f\ \x76\x67\x5e\x66\x5c\x53\x66\x68\x66\x70\x6f\x6e\x64\x6a\x6b\x91\ \x75\x5e\x8d\x81\x75\x6c\x6e\x66\x40\x4e\x5e\x55\x56\x4f\x00\x00\ \x00\x85\x9f\xae\x73\x80\x7f\x6a\x79\x81\x85\x93\x96\x5f\x72\x6b\ \x58\x63\x5a\x5b\x65\x6b\x7a\x86\x8a\x6f\x80\x89\x75\x7e\x7f\x84\ \x91\x99\x7c\x83\x82\x5a\x55\x51\x75\x78\x7a\x6f\x77\x78\x76\x7c\ \x80\x5e\x62\x5b\x56\x59\x53\x57\x57\x51\x5a\x62\x60\x57\x6b\x68\ \x6f\x79\x7e\x65\x6d\x6d\x63\x68\x66\x6a\x69\x64\x62\x5e\x57\x57\ \x54\x4b\x61\x6b\x6f\x74\x8a\x98\x66\x6f\x6c\x5c\x62\x59\x5c\x64\ \x5b\x58\x63\x56\x66\x68\x5f\x6b\x61\x57\x75\x79\x7c\x7a\x78\x77\ \x7b\x75\x72\x6f\x6c\x65\x72\x6e\x6a\x64\x62\x5a\x6d\x62\x59\x77\ \x6c\x65\x72\x65\x5b\x7f\x77\x72\x7e\x77\x71\x6f\x63\x58\x6d\x60\ \x58\x76\x6d\x67\x6b\x5c\x52\x67\x5b\x52\x75\x67\x5d\x5d\x4e\x42\ \x59\x4b\x3d\x57\x4e\x3d\x5f\x53\x46\x58\x4d\x3d\x56\x4c\x3a\x52\ \x44\x32\x53\x45\x32\x54\x48\x36\x52\x49\x37\x5b\x52\x3e\x5e\x50\ \x3f\x81\x73\x6a\x78\x69\x62\x80\x6e\x61\x80\x6e\x61\x83\x6d\x5f\ \x7d\x67\x58\x7d\x69\x5b\x71\x5f\x52\xb2\xa0\x91\xdc\xd3\xca\xdf\ \xd9\xd2\xcf\xca\xc7\x93\x85\x80\x81\x6e\x64\x91\x78\x68\xd6\xcd\ \xc3\xcc\xc8\xc4\x89\x78\x72\x80\x68\x5e\x79\x60\x56\x81\x6a\x5b\ \x85\x6d\x63\x7c\x62\x54\x9a\x87\x7c\x8c\x78\x70\x7c\x64\x5a\x7d\ \x64\x55\x8a\x71\x63\xaf\x9b\x8a\xc5\xbd\xb7\x9d\x90\x8c\x8d\x78\ \x6f\x88\x74\x6d\x86\x6b\x60\x83\x69\x5b\x80\x65\x59\x8d\x75\x68\ \x90\x7c\x74\x86\x71\x68\x83\x6a\x5e\xac\x94\x82\xb9\xae\xa5\x94\ \x85\x82\xaa\x94\x81\xb2\xa6\x9e\xbb\xad\xa2\xcd\xc4\xbb\xc4\xb7\ \xaf\xc2\xb8\xad\xd3\xc6\xb9\xe2\xd8\xcc\xdd\xd4\xcb\xbc\xb2\xad\ \x9b\x89\x81\x89\x77\x70\x80\x6b\x63\x8c\x75\x65\x98\x86\x7c\x7e\ \x6b\x68\x7f\x69\x5e\x82\x6b\x62\x83\x6b\x61\x9e\x87\x76\xba\xab\ \xa0\x9e\x93\x8c\x9f\x9e\x9d\x49\x57\x59\x4c\x58\x56\x4b\x4e\x47\ \x61\x61\x5c\x6a\x64\x5f\x8c\x7c\x72\x41\x4f\x53\x40\x42\x38\x28\ \x36\x32\x3c\x42\x38\x2f\x3a\x37\x3b\x43\x3b\x40\x48\x46\x39\x40\ \x3b\x6b\x65\x56\x84\x7a\x72\x9d\x89\x7d\x95\x7f\x74\x90\x77\x6d\ \x89\x70\x65\x7f\x67\x58\xa2\x92\x85\x74\x72\x74\x56\x54\x49\x41\ \x46\x49\x44\x4d\x50\x74\x73\x6a\x65\x62\x63\x7c\x68\x52\x68\x6b\ \x63\x80\x83\x7d\x52\x64\x72\x4f\x57\x58\x00\x00\x00\x76\x81\x88\ \x69\x73\x6f\x53\x5f\x58\x66\x71\x79\x6e\x78\x7a\x57\x61\x5b\x56\ \x65\x69\x80\x8d\x94\x59\x6e\x71\x7d\x87\x8e\x75\x7e\x82\x71\x7e\ \x7f\x5d\x65\x67\x6d\x70\x70\x5c\x68\x66\x5f\x6b\x69\x6e\x6f\x6e\ \x5d\x5a\x54\x56\x5b\x53\x52\x5a\x51\x5e\x6f\x70\x74\x81\x87\x63\ \x6a\x66\x57\x56\x52\x6d\x72\x72\x5c\x5c\x54\x57\x5c\x59\x67\x76\ \x7e\x6e\x81\x8d\x5d\x67\x5f\x5a\x5c\x57\x63\x65\x5e\x73\x75\x6e\ \x79\x72\x6a\x64\x57\x4b\x6a\x61\x58\x6a\x5d\x54\x75\x6d\x66\x78\ \x70\x68\x6f\x69\x63\x80\x7d\x77\x66\x60\x59\x7d\x73\x6c\x74\x68\ \x5e\x7f\x77\x73\x8f\x88\x83\x6c\x60\x56\x6c\x62\x57\x79\x73\x6f\ \x6a\x61\x5a\x5a\x4f\x46\x5a\x4c\x3d\x5a\x48\x3b\x58\x49\x38\x55\ \x4c\x39\x55\x4e\x3d\x53\x4b\x3b\x52\x49\x38\x56\x4a\x35\x5d\x52\ \x42\x55\x47\x36\x6c\x61\x54\x7d\x6d\x61\x70\x61\x55\x85\x74\x69\ \x7b\x69\x5f\x7b\x67\x58\x7a\x61\x50\x81\x6a\x5b\x7f\x6c\x5f\x79\ \x66\x59\x7a\x67\x5b\xc8\xb7\xac\xdd\xd3\xc8\xdd\xd5\xcd\xde\xda\ \xd3\xbc\xb6\xb2\x84\x72\x6a\x83\x6b\x5e\xc8\xbd\xb1\xe0\xdb\xd4\ \xb3\xa9\xa6\x7f\x66\x5f\x7f\x67\x5f\x81\x65\x55\x91\x80\x79\x82\ \x6b\x61\x95\x81\x75\x90\x7f\x77\x99\x89\x81\x8b\x7b\x76\x83\x6d\ \x62\x8b\x72\x64\x9b\x88\x7f\x86\x70\x65\x92\x7b\x70\x89\x72\x68\ \x87\x6d\x60\x95\x7e\x73\x97\x82\x7a\x94\x7e\x76\x96\x82\x7b\x8f\ \x7c\x75\x85\x70\x69\x86\x6e\x62\x98\x86\x7d\x8b\x79\x76\xbf\xa6\ \x8e\xe7\xe1\xd8\xe3\xda\xd0\xe1\xd7\xcc\xe2\xd6\xcc\xe2\xd8\xcc\ \xde\xd2\xc7\xdf\xd4\xc7\xe0\xd4\xc9\xde\xd3\xca\xcf\xbe\xb1\xce\ \xc3\xba\xad\xa0\x9a\xcd\xbf\xb0\xbb\xb4\xb1\x7c\x6c\x69\x74\x5c\ \x51\x7c\x63\x56\x80\x6a\x62\x75\x61\x59\x7f\x6b\x60\xa6\x9e\x97\ \x91\x92\x93\x2e\x3a\x3b\x74\x6b\x5c\xb6\xa6\x95\xaa\x9d\x95\x97\ \x84\x7c\x8e\x80\x77\x7a\x7a\x72\x2e\x40\x46\x2d\x3a\x34\x24\x36\ \x2e\x6a\x62\x4f\xb8\xb1\xa4\x98\x97\x97\x90\x83\x7c\x95\x81\x78\ \x8b\x6f\x5d\x8a\x71\x62\x8d\x72\x63\x8e\x73\x65\x8a\x6f\x61\x8b\ \x71\x60\xa8\x8c\x78\x9f\x9d\x9f\x6c\x68\x63\x72\x6c\x69\x53\x5a\ \x5b\x7f\x78\x6b\x6b\x6a\x6a\x5a\x5d\x52\x69\x6a\x67\x67\x78\x7a\ \x79\x7e\x74\x5a\x61\x61\x00\x00\x00\x5d\x66\x63\x71\x7b\x7a\x54\ \x60\x58\x58\x5c\x5c\x5f\x6a\x6a\x52\x5f\x5c\x65\x78\x80\x92\x9e\ \xa5\x83\x94\x9b\x7c\x8e\x96\x85\x92\x9a\x7e\x81\x83\x5a\x5b\x56\ \x58\x5c\x55\x55\x5b\x58\x5b\x61\x5d\x64\x63\x5a\x53\x51\x43\x5c\ \x67\x65\x54\x65\x5c\x61\x68\x69\x8a\x91\x95\x68\x68\x67\x57\x59\ \x51\x69\x6a\x69\x68\x6f\x6e\x75\x88\x95\x7a\x8f\x9e\x5c\x69\x62\ \x59\x63\x58\x5a\x61\x59\x60\x62\x59\x64\x64\x5c\x66\x60\x58\x66\ \x5c\x4f\x74\x6a\x64\x5f\x58\x4d\x81\x7d\x77\x7d\x71\x6a\x78\x6c\ \x66\x7c\x74\x6e\x7f\x7a\x76\x7f\x78\x73\x82\x79\x72\x80\x7a\x78\ \x8b\x86\x82\x81\x7b\x75\x7a\x75\x6f\x73\x6b\x66\x62\x56\x4e\x64\ \x5e\x5b\x58\x52\x49\x53\x47\x37\x55\x49\x38\x54\x4e\x3d\x54\x50\ \x3e\x57\x51\x40\x58\x4e\x3e\x57\x4a\x3c\x5c\x4c\x41\x7c\x6e\x63\ \x99\x8e\x8a\x8e\x7d\x71\x88\x75\x6c\x72\x60\x55\x7a\x69\x5f\x77\ \x60\x53\x7a\x62\x52\x80\x6c\x5f\x7f\x69\x5c\x6d\x5b\x4c\xa6\x95\ \x87\xd8\xc9\xbf\xdb\xca\xc1\xd8\xcb\xc0\xdb\xd1\xc7\xdb\xd5\xcf\ \xab\xa2\x9f\x81\x6c\x60\x92\x7b\x6b\xe6\xe1\xd7\xc8\xc1\xbc\x80\ \x6d\x65\x86\x71\x67\x7f\x64\x53\x97\x88\x7e\x83\x6d\x62\xa1\x8f\ \x83\x91\x82\x7d\xb5\xa9\xa3\x9e\x91\x8b\x9a\x8e\x8d\x88\x71\x65\ \x91\x7d\x74\x7f\x67\x5d\x84\x69\x58\x97\x82\x79\x8d\x78\x6d\x8a\ \x70\x63\x84\x6b\x5f\x7f\x6b\x61\x84\x6a\x5b\x93\x7f\x77\x85\x6f\ \x67\xa2\x8a\x7b\xc2\xb7\xb1\x95\x81\x7b\xde\xd0\xbc\xe2\xda\xd0\ \xe2\xd9\xd1\xe0\xd7\xcd\xde\xd6\xcb\xd7\xca\xbf\xde\xd2\xc8\xda\ \xcf\xc5\xdd\xd0\xc5\xdf\xd4\xca\xde\xd1\xc4\xdd\xd0\xc5\xcd\xbf\ \xb6\xb5\xa5\x9a\xb0\x9c\x8d\xc3\xb3\xa9\xa0\x94\x8e\x9d\x8d\x81\ \xce\xbc\xad\xd7\xcd\xc5\xcd\xc3\xbc\x7f\x82\x82\x48\x59\x5a\xaf\ \x99\x7a\xde\xcb\xbb\xcc\xc0\xb7\xbb\xab\xa2\xc2\xae\x9f\x9d\x97\ \x9a\x77\x71\x64\x51\x65\x6c\x4e\x53\x42\xae\x9e\x8b\xe1\xbf\xa7\ \xeb\xc7\xab\xe0\xc1\xac\xae\xa3\x9c\x88\x7a\x77\x80\x64\x55\x88\ \x6d\x5e\x88\x6e\x61\x88\x6d\x5b\x88\x70\x61\x87\x6e\x61\x7d\x6b\ \x5d\x99\x8b\x80\xb6\xa4\x97\x92\x87\x89\x89\x87\x87\x58\x59\x54\ \x60\x61\x52\x55\x67\x73\x5e\x6b\x66\x4b\x64\x72\x35\x46\x46\x36\ \x46\x3f\x00\x00\x00\x58\x60\x5f\x7f\x85\x87\x5b\x69\x68\x62\x6e\ \x6c\x6f\x7b\x7f\x7e\x91\x98\x98\xa2\xaa\x9e\xa4\xab\x88\x91\x99\ \x99\xa0\xa8\x7c\x84\x84\x5d\x64\x5f\x54\x5f\x56\x5e\x6a\x63\x58\ \x61\x5c\x55\x62\x5a\x52\x5d\x53\x57\x5f\x59\x65\x71\x73\x65\x79\ \x77\x66\x74\x77\x81\x86\x8c\x80\x7d\x78\x67\x66\x60\x5e\x5e\x5b\ \x76\x81\x89\x7b\x92\xa4\x72\x82\x8b\x60\x69\x63\x65\x6f\x6b\x58\ \x58\x4d\x60\x69\x60\x5c\x5c\x50\x69\x5d\x50\x76\x69\x62\x7f\x7a\ \x75\x6c\x65\x5d\x6e\x64\x5d\x77\x6d\x65\x68\x5a\x53\x60\x57\x4b\ \x65\x5e\x57\x66\x5d\x53\x66\x60\x58\x78\x74\x72\x7b\x78\x73\x89\ \x87\x87\x8f\x8e\x8d\x7b\x75\x73\x72\x71\x6f\x70\x6e\x6c\x60\x55\ \x4d\x53\x4d\x3c\x54\x4c\x3b\x53\x4f\x3e\x54\x4e\x3c\x5d\x52\x44\ \x85\x78\x70\x73\x61\x59\x7e\x6c\x64\x92\x81\x77\x8f\x7d\x76\x8e\ \x79\x6e\x7f\x6d\x60\x76\x63\x57\x80\x6d\x61\x78\x5f\x51\x83\x69\ \x5b\x7f\x6a\x5a\x78\x64\x59\x71\x5d\x50\xc3\xaf\xa2\xdf\xcc\xc2\ \xd7\xc7\xbe\xd8\xcb\xc1\xdc\xd5\xcb\xdd\xd7\xd0\xdc\xd7\xd2\x8c\ \x79\x72\x9b\x83\x73\xe4\xdd\xd4\xd9\xd4\xcf\x9f\x93\x8e\x85\x70\ \x65\x85\x70\x65\x91\x7b\x71\x9e\x8f\x87\xc3\xb6\xae\xb4\xaa\xa7\ \x8e\x7d\x74\x8c\x78\x6e\x9f\x8d\x85\x8e\x78\x6f\x96\x80\x77\x87\ \x73\x6b\x75\x58\x4a\x8b\x70\x61\x91\x7d\x74\x82\x69\x5e\x7a\x5d\ \x4e\x8c\x78\x70\x7e\x68\x5c\x84\x6a\x5a\x95\x81\x79\xa4\x91\x87\ \xad\xa3\x9a\x8c\x7b\x78\x8f\x78\x6c\xbb\xa8\x99\xb9\xaa\x9d\xd9\ \xcf\xc2\xdb\xd0\xc4\xde\xd4\xc9\xde\xd2\xc8\xda\xcd\xc3\xdb\xce\ \xc2\xc5\xb4\xa9\xcb\xb6\xa6\xd3\xc0\xb3\xc2\xb1\xa2\xdb\xcb\xbb\ \xe1\xd3\xc5\xe0\xd3\xc4\xe1\xd3\xc6\xdf\xd3\xc9\xde\xd1\xc7\xbd\ \xb2\xaa\x6f\x74\x75\x8a\x85\x7b\xcf\xbb\xa5\xdd\xcd\xc0\xdf\xd0\ \xc2\xdf\xd0\xc2\xe3\xcd\xbc\xd7\xc7\xbb\x4c\x59\x65\x55\x50\x42\ \xbb\x99\x77\xec\xc3\xa6\xf4\xb9\x8f\xf7\xb6\x85\xf8\xb5\x84\xf7\ \xb7\x87\xdd\xa9\x81\xc4\xa6\x89\xb8\xab\xa2\x8b\x79\x74\x85\x6c\ \x5f\x85\x6a\x57\x89\x71\x65\x88\x6f\x62\x65\x60\x58\x6a\x69\x69\ \x7e\x71\x5b\x98\x95\x97\x5c\x66\x6e\x44\x55\x57\x4f\x5a\x4c\x93\ \x93\x93\x47\x54\x59\x3a\x51\x59\x2a\x3a\x3f\x30\x38\x36\x00\x00\ \x00\x58\x66\x5d\x70\x7b\x82\x85\x89\x8b\x83\x87\x88\x64\x6e\x70\ \x8a\x95\x9f\x9c\xad\xb8\x97\x9f\xa4\x87\x8c\x8e\x90\x94\x9b\x78\ \x7d\x7a\x56\x67\x5b\x5c\x66\x60\x69\x6e\x6f\x62\x68\x63\x58\x63\ \x59\x5d\x6a\x68\x66\x71\x71\x79\x84\x8a\x8d\x97\x9b\x75\x80\x84\ \x9a\xa7\xad\x7f\x80\x7c\x61\x62\x5c\x64\x6d\x70\x7e\x92\xa1\x7f\ \x92\xa0\x5c\x5d\x57\x59\x56\x4c\x67\x6d\x6a\x59\x50\x44\x5b\x54\ \x4a\x54\x44\x33\x57\x47\x37\x67\x5a\x50\x78\x6b\x66\x6d\x64\x5b\ \x6e\x67\x62\x83\x7a\x72\x72\x67\x5d\x78\x6f\x62\x58\x54\x48\x66\ \x60\x58\x86\x86\x89\x82\x81\x80\x81\x7d\x79\x75\x6c\x66\x76\x6d\ \x68\x62\x5d\x58\x6f\x6c\x6a\x77\x74\x75\x62\x57\x4c\x53\x48\x36\ \x55\x49\x39\x56\x4d\x3d\x58\x4b\x3b\x70\x60\x59\x81\x6f\x65\x8b\ \x7a\x73\x85\x72\x69\x8e\x7b\x71\x8a\x76\x69\x7a\x69\x5e\x84\x73\ \x68\x7e\x6b\x60\x79\x60\x52\x75\x5b\x4f\x7a\x62\x55\x7c\x69\x5b\ \x79\x65\x57\x80\x6c\x60\xb7\xa2\x96\xda\xc8\xbe\xd7\xc8\xbd\xdb\ \xcd\xc4\xde\xd8\xd1\xdc\xd7\xd0\xe0\xd9\xd2\xc4\xbb\xb8\xd3\xc6\ \xba\xcc\xc4\xbf\xd1\xca\xc4\xaf\xa5\xa0\x8b\x79\x71\x84\x6e\x64\ \x8d\x78\x6d\x8f\x7b\x72\x9b\x8c\x86\x96\x85\x7b\x8a\x75\x6c\x87\ \x73\x6b\x94\x7f\x72\x8f\x79\x70\x8e\x78\x6c\x8f\x7c\x74\x82\x6e\ \x66\x7e\x67\x5d\x8e\x7a\x71\x84\x6c\x61\x82\x6a\x60\x85\x72\x6a\ \x7b\x66\x5e\x7e\x64\x55\x8d\x71\x60\xb8\xa5\x96\x9b\x8c\x83\x89\ \x78\x72\x7e\x67\x5f\x75\x5a\x4f\x8c\x76\x69\x92\x7b\x6b\xcf\xbd\ \xaa\xdc\xd0\xc3\xd7\xc9\xbc\xd5\xc5\xb8\xc2\xb0\xa5\xd3\xbd\xae\ \xdc\xcc\xc0\xd7\xc6\xba\xe0\xd2\xc6\xdd\xd0\xc5\xde\xcf\xc6\xe0\ \xd1\xc8\xde\xd2\xc8\xda\xcc\xc0\xb3\xa7\xa0\xc4\xb3\xa5\x8d\x8b\ \x86\xce\xb8\x9e\xe0\xd1\xc4\xdf\xce\xbf\xdf\xcb\xbb\xe4\xc6\xb0\ \xe8\xc5\xab\xe3\xc5\xb0\x76\x72\x6d\xd7\x9c\x6b\xf7\xbe\x94\xf1\ \xb8\x90\xf5\xb3\x82\xf7\xb3\x7d\xf9\xb4\x7c\xf9\xb6\x84\xff\xbb\ \x86\xd1\xa3\x84\xa8\x84\x64\xd9\xb0\x8f\xa0\x88\x79\xaf\x86\x67\ \xb4\x95\x82\xa3\x88\x78\x75\x70\x6f\x68\x66\x62\x27\x3d\x40\x61\ \x5f\x56\x4e\x59\x5a\x41\x4c\x45\x2f\x49\x4e\x4b\x4e\x46\x66\x66\ \x5b\x49\x5a\x66\x36\x49\x4b\x4b\x54\x4f\x00\x00\x00\x57\x69\x61\ \x69\x76\x7b\x81\x80\x7c\x78\x75\x73\x72\x72\x75\x8c\x92\x98\x91\ \xa0\xab\x89\x86\x86\x83\x88\x8e\x75\x7c\x80\x64\x62\x5c\x58\x5e\ \x59\x73\x78\x76\x63\x68\x65\x5b\x5a\x52\x61\x68\x67\x80\x8c\x95\ \x89\x93\x96\x6a\x73\x73\x82\x87\x89\x6b\x70\x6f\x6c\x7b\x7b\x5c\ \x62\x5a\x59\x57\x4f\x64\x64\x64\x81\x8c\x98\x74\x7d\x7f\x56\x57\ \x4b\x59\x54\x4a\x69\x6e\x6b\x5b\x56\x4e\x59\x4e\x40\x58\x4f\x40\ \x5a\x52\x45\x70\x65\x5a\x6d\x63\x5a\x6c\x5e\x56\x70\x63\x5c\x77\ \x6b\x63\x6d\x65\x5b\x77\x66\x5c\x72\x68\x61\x71\x6e\x68\x85\x8d\ \x91\x82\x7e\x7d\x8d\x87\x82\x7a\x72\x6c\x6a\x5e\x57\x6b\x65\x62\ \x6c\x62\x5c\x6e\x61\x5c\x6f\x64\x5d\x5c\x51\x44\x5f\x54\x47\x65\ \x57\x4d\x6d\x5f\x59\x7a\x6d\x69\x88\x78\x6d\x83\x6f\x62\x85\x71\ \x66\x86\x75\x6b\x86\x75\x6b\x81\x70\x66\x83\x72\x69\x81\x6c\x61\ \x80\x6b\x5d\x75\x5d\x4f\x6e\x57\x48\x72\x5d\x4e\x6d\x5b\x4d\x7a\ \x66\x59\x93\x7b\x6c\xc1\xab\x9f\xca\xb9\xb0\xc3\xb4\xaa\xe4\xdf\ \xd8\xdd\xd9\xd5\xc1\xb9\xb0\xd8\xd1\xc8\xb0\xa3\x9b\x87\x79\x74\ \x8d\x7b\x70\xa7\x9a\x93\xa1\x93\x8e\x89\x77\x6e\x8e\x79\x71\x8b\ \x76\x70\x8c\x7a\x73\x97\x86\x7f\x93\x81\x78\x8d\x79\x71\x93\x80\ \x77\x96\x7f\x75\xaa\x9c\x93\x95\x84\x7e\x8f\x7d\x77\x88\x78\x72\ \x8c\x77\x71\x8e\x7a\x70\x87\x73\x6b\x89\x74\x6d\x88\x70\x67\x83\ \x6a\x5c\x93\x7b\x6b\xd0\xbe\xaf\xc8\xbc\xb2\xc5\xbc\xb5\x9f\x91\ \x8c\xac\x99\x8b\xc2\xb2\xa4\xbe\xac\x9d\xd9\xc6\xb5\xd8\xc9\xb8\ \xdb\xca\xbc\xde\xce\xbe\xdf\xd1\xc5\xdc\xcf\xc3\xd0\xc1\xb7\xbd\ \xad\xa4\xce\xbb\xac\xdf\xd2\xc4\xdf\xd3\xc7\xe1\xd4\xc7\xde\xd2\ \xc7\xde\xd2\xc7\xe2\xd3\xc6\xd2\xc6\xbf\xc1\xad\x9c\xdd\xcc\xba\ \xe3\xd5\xc9\xe4\xd7\xcc\xe3\xd3\xc4\xe2\xcc\xb8\xe5\xc7\xb0\xdf\ \xc4\xb1\xb9\xa2\x92\xf0\xb3\x85\xf5\xb1\x7c\xf4\xb2\x7d\xf5\xb2\ \x7e\xf8\xb1\x7c\xfc\xb4\x7c\xed\xaa\x78\xf1\xab\x73\xe7\xa8\x7b\ \x6d\x64\x57\x99\x6c\x45\xd0\x9a\x6d\xe7\xa5\x75\xd3\x9c\x73\xeb\ \xb7\x89\xad\x9a\x95\x75\x70\x65\x40\x44\x3b\x98\x7d\x66\x61\x60\ \x5d\x2e\x3d\x3d\x1b\x31\x2d\x1e\x2e\x2a\x43\x4a\x42\x7e\x85\x83\ \x62\x71\x6b\x57\x6a\x6c\x00\x00\x00\x53\x61\x56\x6a\x7e\x88\x7b\ \x73\x68\x73\x73\x71\x6a\x66\x66\x81\x87\x8c\x8b\x93\x9a\x7a\x7c\ \x7c\x6e\x73\x77\x5c\x66\x62\x58\x5d\x57\x6c\x6b\x68\x8b\x8b\x8a\ \x69\x60\x57\x57\x5b\x4f\x60\x64\x62\x7b\x83\x8a\x8a\x91\x95\x8a\ \x95\x97\x97\x9c\x9e\x74\x77\x76\x84\x87\x88\x65\x62\x58\x5b\x5c\ \x56\x70\x6b\x64\x62\x5e\x5d\x74\x76\x76\x59\x59\x4d\x5c\x59\x51\ \x70\x72\x71\x60\x5b\x54\x62\x59\x52\x60\x59\x4d\x61\x58\x4d\x6e\ \x61\x55\x62\x52\x48\x63\x59\x4f\x66\x5c\x51\x65\x58\x4c\x66\x5c\ \x53\x6d\x5b\x4c\x68\x5c\x54\x66\x60\x57\x6e\x69\x64\x7b\x6e\x67\ \x8d\x86\x82\x62\x59\x4c\x60\x54\x4c\x6a\x5d\x56\x68\x58\x50\x59\ \x46\x39\x65\x54\x48\x6d\x5e\x55\x74\x6b\x69\x7d\x73\x6f\x7e\x72\ \x6f\x7f\x75\x73\x7b\x6c\x64\x7e\x6c\x61\x83\x74\x69\x86\x77\x6d\ \x8c\x7c\x73\x85\x74\x6c\x80\x6d\x63\x86\x72\x65\x94\x84\x7a\x93\ \x83\x7b\x7d\x6b\x60\x72\x62\x55\x6a\x57\x49\x86\x6f\x63\x8a\x70\ \x62\xa5\x92\x85\x88\x71\x67\x9f\x8c\x7e\xe3\xdc\xd4\xe5\xe1\xdd\ \xc5\xbe\xb8\xb2\xa5\x9d\x9e\x90\x88\x82\x6b\x61\x81\x6a\x5c\x8e\ \x79\x6d\x8e\x79\x70\x8f\x7b\x73\x8b\x7a\x75\x8a\x75\x6e\x88\x78\ \x73\x92\x7f\x76\x95\x83\x79\x94\x7e\x73\x93\x81\x7d\x90\x7b\x72\ \x8d\x7a\x70\x7d\x62\x54\x8e\x78\x69\xaa\x9b\x91\x8d\x7b\x79\x85\ \x6d\x5f\x83\x6c\x60\x8f\x7a\x70\x89\x72\x6b\x90\x76\x65\xca\xb8\ \xa8\xde\xd5\xca\xdd\xd5\xca\xe3\xd8\xce\xdd\xd3\xca\xe7\xdb\xce\ \xe0\xd2\xc4\xdc\xcd\xc2\xd7\xc5\xb7\xd9\xc9\xbe\xda\xcc\xbf\xc5\ \xb9\xad\xbe\xaf\xa4\xbc\xaf\xa6\xbe\xac\x9b\xbc\xab\x9d\xcf\xc0\ \xaf\xce\xc0\xb4\xd5\xc6\xb9\xd8\xca\xbc\xd6\xc8\xbe\xde\xcf\xc0\ \xbe\xaf\xa9\x9c\x83\x77\xbe\xa1\x88\xe3\xd6\xc9\xe5\xdc\xd4\xe2\ \xd8\xd0\xe1\xd1\xc2\xe0\xcb\xb9\xe1\xcb\xb8\xde\xc7\xb7\xe9\xc3\ \xaa\xef\xb2\x88\xf6\xb0\x7a\xf6\xaf\x7a\xfa\xb3\x7e\xf9\xb3\x7b\ \xdc\x9c\x6e\xc1\x86\x57\xb9\x89\x64\x91\x69\x4d\x8e\x71\x5a\x57\ \x52\x42\x74\x5d\x42\x99\x69\x40\xb1\x84\x65\x96\x6c\x49\xaa\x7e\ \x60\xa5\x86\x6c\x32\x39\x34\x80\x64\x4b\x40\x46\x46\x25\x35\x36\ \x1f\x30\x2f\x2e\x37\x31\x43\x46\x3e\x66\x74\x76\x60\x64\x64\x43\ \x4e\x54\x00\x00\x00\x55\x61\x59\x57\x69\x6a\x7d\x82\x81\x73\x7a\ \x78\x5d\x5d\x58\x76\x7e\x81\x82\x8e\x93\x6f\x6f\x69\x59\x64\x62\ \x69\x6c\x65\x66\x5d\x53\x6a\x65\x61\x90\x92\x91\x60\x52\x43\x5c\ \x63\x61\x61\x6b\x68\x63\x6c\x6b\x70\x76\x7a\x8a\x90\x94\x90\x95\ \x96\x86\x89\x86\x5c\x56\x4c\x60\x5a\x51\x65\x5e\x51\x5f\x5d\x52\ \x73\x74\x73\x80\x80\x81\x74\x73\x6f\x7a\x77\x72\x79\x76\x74\x61\ \x5e\x56\x6a\x63\x5d\x64\x5b\x50\x5a\x4d\x42\x5d\x4e\x43\x67\x5a\ \x51\x75\x6b\x63\x80\x79\x72\x7c\x73\x6d\x69\x5d\x54\x5e\x52\x44\ \x64\x55\x4b\x63\x5d\x50\x5b\x56\x46\x5b\x53\x47\x5c\x51\x49\x5c\ \x4b\x40\x5f\x4d\x45\x69\x58\x50\x61\x50\x45\x74\x6a\x61\x95\x89\ \x82\x77\x6f\x69\x78\x6c\x6a\x7f\x74\x70\x8a\x7f\x79\x76\x69\x62\ \x76\x65\x5a\x7b\x6c\x61\x70\x5f\x54\x7b\x6c\x61\x84\x70\x66\x87\ \x72\x65\x83\x73\x69\x87\x6f\x61\x84\x71\x65\x9c\x8d\x83\xc0\xb3\ \xa9\x92\x87\x81\x74\x5e\x4d\x91\x78\x69\xb7\xa4\x95\xd9\xce\xc5\ \xd2\xc5\xbd\xdc\xd2\xc7\xe4\xdc\xd5\xe0\xd7\xce\xdb\xd2\xc8\x9c\ \x8f\x8a\x8c\x78\x6a\x84\x6c\x5f\x88\x70\x64\x86\x6e\x5f\x8b\x72\ \x65\x8f\x77\x6c\x87\x73\x6a\x87\x73\x6a\x83\x70\x66\x86\x6d\x5f\ \x94\x80\x76\x90\x78\x6e\x91\x7c\x75\x92\x7d\x75\x8b\x78\x70\x7e\ \x66\x5c\x7f\x64\x58\x9c\x8b\x83\x88\x74\x6e\x8d\x76\x6b\xa0\x8a\ \x7a\xa9\xa0\x9c\x89\x70\x61\xd4\xc4\xb2\xe1\xd7\xcd\xde\xd4\xcb\ \xe0\xd5\xca\xe0\xd5\xcb\xdb\xd1\xc7\xc4\xb1\xa4\xe0\xcf\xc0\xe1\ \xd2\xc5\xe0\xd2\xc5\xdf\xd1\xc5\xdb\xce\xc3\xd7\xc9\xbf\xd6\xca\ \xbc\xd7\xca\xbe\xd2\xc7\xbc\xad\x9c\x94\x9c\x8b\x7f\x9a\x80\x6f\ \xaa\x94\x84\x9d\x88\x7c\xbe\xa1\x8b\xb6\xaa\xa1\x8d\x74\x6b\xa1\ \x7f\x65\xdd\xc9\xb2\xe4\xda\xd1\xe6\xdd\xd4\xe3\xda\xd1\xe0\xce\ \xc0\xe3\xbf\xa3\xe4\xbe\x9f\xe7\xbb\x9a\xeb\xb5\x8c\xf3\xae\x79\ \xf6\xae\x77\xf8\xb1\x78\xd4\x93\x66\xf0\xa7\x6f\xb5\x82\x5d\xab\ \x77\x4b\xd0\x9b\x72\x82\x6d\x5b\x3c\x4b\x48\x3c\x39\x28\x6b\x5c\ \x47\x78\x58\x39\x52\x4a\x40\x64\x43\x26\x93\x6d\x50\x7b\x69\x56\ \x27\x38\x37\x2e\x36\x31\x3b\x4a\x4a\x2d\x41\x3e\x2a\x3b\x37\x71\ \x69\x55\x6d\x72\x73\x71\x7c\x7c\x5e\x67\x69\x53\x56\x52\x00\x00\ \x00\x50\x5b\x4f\x55\x67\x60\x5a\x6b\x69\x6a\x77\x74\x56\x5b\x51\ \x50\x59\x54\x70\x7b\x7d\x5b\x67\x5e\x68\x6c\x6a\x76\x6b\x60\x5f\ \x4f\x45\x66\x63\x64\x7f\x83\x80\x56\x4d\x3d\x6b\x72\x79\x65\x75\ \x72\x6d\x7e\x7f\x78\x7f\x80\x6b\x6e\x6f\x84\x86\x84\x72\x6c\x63\ \x5e\x57\x4b\x76\x6c\x64\x6c\x5e\x52\x61\x5a\x50\x71\x6e\x6c\x78\ \x76\x74\x7c\x75\x71\x8b\x8b\x8a\x7b\x70\x68\x65\x60\x58\x6c\x5f\ \x57\x67\x5d\x53\x5c\x4e\x40\x5d\x4d\x43\x6c\x5e\x55\x72\x67\x63\ \x78\x70\x6a\x76\x6e\x68\x65\x56\x4c\x5f\x57\x49\x59\x4f\x42\x72\ \x65\x5a\x62\x59\x50\x54\x47\x3a\x55\x44\x36\x61\x4f\x47\x64\x53\ \x4c\x76\x66\x5d\x7a\x68\x61\x86\x7b\x78\x91\x88\x81\x7e\x71\x6b\ \x66\x53\x46\x66\x57\x48\x6f\x60\x51\x69\x5c\x4d\x78\x66\x5b\x83\ \x73\x6a\x7b\x6a\x62\x7c\x6a\x5f\x8a\x72\x67\x7e\x6a\x5b\x86\x77\ \x6c\x7f\x6a\x5d\x82\x6d\x61\x78\x63\x58\xa2\x92\x8a\x8f\x84\x7e\ \x7f\x69\x5c\xb6\xa1\x91\xe9\xdf\xd5\xe5\xdd\xd2\xe4\xda\xd2\xe4\ \xdb\xd2\xe6\xdd\xd3\xe6\xdc\xd4\xe5\xda\xd0\xa7\x9a\x93\x83\x69\ \x59\x86\x70\x63\x85\x6b\x60\x85\x6c\x5c\x89\x6f\x60\x8f\x78\x6c\ \x8e\x76\x6c\x8d\x7a\x70\x87\x71\x67\x7f\x62\x52\x8a\x71\x65\x8c\ \x73\x6b\x92\x7c\x71\x88\x72\x68\x8f\x79\x70\xc7\xb7\xaa\xdd\xd0\ \xc5\xd0\xcc\xc9\xa2\x8f\x82\xbc\xaf\xa2\xe0\xd6\xc9\x9f\x93\x8b\ \xd3\xc3\xb1\xc7\xba\xb1\xd3\xc3\xb7\xe0\xd5\xca\xdc\xd0\xc7\xc1\ \xb1\xa6\xd5\xc1\xb0\xd2\xc0\xb5\xb8\xa5\x9a\xba\xa6\x96\xc9\xb6\ \xa7\xd4\xc4\xb5\xd8\xc9\xbd\xdc\xce\xc2\xdc\xd0\xc5\xd7\xcd\xc6\ \x98\x88\x87\x8a\x71\x63\x89\x6e\x5c\x92\x76\x68\x97\x80\x70\x8c\ \x6e\x5f\x8d\x6e\x5b\x8d\x70\x5d\x96\x73\x5f\xc8\xa7\x89\xe6\xda\ \xcd\xe3\xd9\xcf\xe5\xdc\xd3\xe1\xd8\xcd\xe0\xcd\xbe\xe8\xb7\x95\ \xee\xb0\x7f\xf0\xaf\x7d\xf2\xae\x79\xf4\xae\x77\xf6\xaf\x77\xf4\ \xb1\x7a\x68\x55\x45\x7f\x67\x4c\x71\x59\x40\x93\x66\x43\xbd\x8a\ \x66\x92\x6f\x51\x8d\x72\x57\x44\x47\x40\x46\x4d\x44\x4c\x44\x33\ \x32\x37\x30\x71\x50\x36\x48\x44\x3c\x49\x48\x41\x31\x39\x3a\x24\ \x34\x30\x4f\x55\x46\xb7\x88\x5f\x81\x76\x69\xcd\x9c\x6f\x8d\x8e\ \x8e\x71\x72\x70\x50\x61\x73\x64\x66\x61\x00\x00\x00\x5d\x65\x58\ \x51\x5b\x4e\x52\x67\x5d\x57\x67\x60\x51\x5e\x53\x50\x55\x4a\x5a\ \x68\x6a\x78\x7d\x78\x67\x68\x65\x54\x53\x4a\x54\x50\x41\x62\x5d\ \x54\x61\x56\x48\x55\x4b\x3c\x60\x5e\x5f\x5c\x60\x59\x57\x5e\x56\ \x5d\x6e\x69\x61\x6a\x65\x6c\x6e\x69\x5c\x55\x4b\x6a\x62\x59\x62\ \x55\x49\x63\x59\x53\x74\x69\x63\x74\x6c\x69\x79\x6e\x6a\x82\x7b\ \x77\x7e\x72\x69\x71\x64\x5d\x5e\x54\x49\x61\x51\x43\x68\x5a\x4f\ \x5d\x4f\x44\x58\x45\x37\x58\x43\x35\x63\x54\x49\x66\x57\x4e\x64\ \x55\x49\x69\x5c\x4f\x66\x5c\x50\x59\x50\x43\x61\x55\x48\x55\x40\ \x30\x55\x46\x36\x52\x42\x32\x68\x5a\x4c\x8c\x7f\x74\x79\x69\x61\ \x85\x75\x6c\xc0\xb4\xac\xa5\x98\x92\x83\x72\x68\x75\x68\x5a\x60\ \x57\x47\x60\x52\x43\x61\x55\x44\x76\x67\x5b\x75\x69\x5f\x77\x65\ \x5e\x87\x77\x6e\x85\x70\x65\x81\x6b\x5e\x86\x6e\x61\x7c\x66\x58\ \x77\x63\x59\x72\x5d\x53\x74\x60\x56\x8c\x76\x69\xaf\x97\x87\xe5\ \xd7\xc9\xe5\xda\xcf\xe4\xd8\xcd\xe3\xd7\xcc\xe3\xd8\xd0\xe4\xda\ \xd1\xe3\xd8\xcc\xe6\xd4\xc4\xce\xbf\xb4\x91\x7b\x6f\x8c\x73\x67\ \x8f\x76\x6a\x8a\x72\x62\x8b\x72\x64\x92\x7a\x70\x91\x78\x6c\x93\ \x7f\x75\x89\x72\x68\x81\x65\x54\x8d\x75\x67\x8b\x75\x6b\x94\x7f\ \x77\x89\x75\x6e\x88\x73\x6c\xab\x93\x83\xe4\xda\xcf\xce\xc6\xbe\ \xe7\xde\xd2\xe6\xdd\xd3\xd7\xcd\xc4\xcf\xc3\xb8\xb3\xa9\xa4\xb7\ \xa4\x93\xdf\xd3\xc7\xc2\xb4\xad\x95\x7f\x73\x91\x75\x65\x93\x7a\ \x6c\xaf\x9a\x8a\x8d\x78\x6f\x98\x7e\x6e\x94\x78\x6b\x91\x75\x67\ \x92\x74\x60\xca\xaf\x99\xbc\xac\xa4\xbe\xad\xa3\xb4\xa4\x98\xd0\ \xbe\xad\xc0\xb5\xac\x8f\x7a\x6f\x8b\x70\x61\x87\x68\x5a\x8d\x6c\ \x59\x8d\x6d\x59\xa1\x7d\x65\xe8\xcb\xae\xe1\xcf\xbf\xe1\xd2\xc4\ \xe2\xd3\xc5\xe0\xd0\xc3\xdf\xce\xbc\xe5\xbf\xa3\xee\xb1\x83\xf1\ \xb0\x80\xec\xa9\x76\xf4\xb4\x82\xd6\x9d\x72\xaa\x79\x56\x97\x72\ \x5a\x56\x4b\x3d\x96\x6c\x44\x53\x53\x4f\x6b\x4e\x37\x99\x70\x52\ \x8b\x60\x3f\x62\x63\x56\x22\x3c\x3c\x1c\x2b\x2a\x23\x2a\x24\x1b\ \x23\x1d\x89\x66\x46\x7a\x67\x59\x68\x59\x45\x99\x79\x58\x70\x6a\ \x59\x6f\x4b\x2e\x94\x70\x53\xad\x79\x53\x80\x74\x60\x69\x6a\x61\ \x5f\x64\x66\x44\x4f\x54\x00\x00\x00\x9b\x90\x8a\x81\x79\x6f\x67\ \x6b\x60\x5a\x69\x61\x53\x6b\x65\x53\x63\x5a\x56\x65\x66\x77\x83\ \x81\x59\x5a\x50\x52\x4d\x3f\x52\x53\x46\x55\x5c\x4c\x52\x48\x39\ \x56\x4f\x41\x58\x51\x46\x58\x55\x4b\x59\x5c\x52\x5d\x66\x5d\x5b\ \x68\x60\x60\x64\x5a\x67\x63\x5b\x65\x58\x4b\x57\x48\x3b\x62\x53\ \x49\x6f\x65\x5e\x76\x69\x62\x74\x65\x5b\x73\x68\x5e\x6b\x58\x50\ \x60\x51\x41\x5a\x45\x35\x5c\x47\x37\x64\x55\x48\x5c\x50\x44\x58\ \x47\x39\x58\x47\x39\x54\x45\x35\x55\x4a\x3d\x56\x4a\x38\x57\x4b\ \x3b\x5a\x51\x43\x6c\x60\x56\x70\x60\x51\x59\x4a\x3a\x5f\x54\x46\ \x56\x4a\x3c\x6d\x61\x57\x90\x7f\x76\x8c\x7e\x79\x86\x77\x6e\xb6\ \xa8\xa2\xd1\xc8\xc0\x93\x87\x7e\x78\x65\x5a\x6c\x5c\x4e\x5c\x4e\ \x3c\x6c\x5a\x4e\x79\x69\x5d\x85\x78\x70\x84\x6f\x64\x8a\x79\x70\ \x7d\x6e\x68\x7f\x6c\x5f\x86\x6e\x64\x85\x73\x6a\x6f\x5b\x50\x66\ \x51\x46\x6c\x5a\x4f\x94\x7b\x6a\xeb\xd9\xc5\xe6\xd6\xc6\xe3\xd5\ \xc6\xe1\xd2\xc0\xe2\xd3\xc3\xe2\xd4\xc4\xe2\xd3\xc4\xe2\xd1\xc0\ \xe3\xce\xbb\xea\xd4\xbf\xc8\xb5\xa6\x91\x7a\x6d\x8d\x78\x69\x92\ \x7b\x6d\x8a\x70\x64\x91\x77\x69\x92\x7c\x6f\x93\x7e\x70\x90\x7a\ \x72\x7f\x61\x54\x87\x6d\x5b\x92\x80\x75\x92\x80\x7a\x8b\x74\x6b\ \x89\x73\x6a\x8d\x78\x6d\xb7\xa3\x94\xd6\xd0\xc6\xdf\xd2\xc6\xdc\ \xd2\xc9\xdc\xd1\xc5\xdc\xd0\xc4\xd4\xc5\xba\xd0\xc3\xb9\xb0\xa2\ \x99\x90\x7c\x73\x8b\x6a\x56\xb4\x9a\x85\xb8\xa5\x96\xbf\xad\xa2\ \x91\x7a\x70\x8a\x6b\x5a\x91\x72\x62\x8d\x6f\x5c\x91\x70\x5a\xd1\ \xb5\x9e\xa6\x9a\x95\x8a\x73\x66\xc1\xa6\x8d\xc1\xba\xb8\xa0\x85\ \x77\x96\x81\x78\x91\x75\x65\x89\x6c\x5d\x8f\x70\x5d\x90\x6f\x5e\ \xc4\x9c\x7d\xe7\xd0\xba\xe1\xca\xb5\xdf\xc9\xb6\xe1\xc4\xac\xe0\ \xc9\xb4\xe0\xc7\xb3\xe4\xc1\xa7\xe9\xbc\x98\xee\xbe\x99\xb3\x87\ \x63\xf4\xc1\x9a\xdb\xaf\x91\x75\x6e\x62\x48\x44\x38\x43\x3f\x34\ \x9c\x66\x3a\x4f\x52\x4e\x42\x3c\x32\x85\x61\x42\x6d\x5e\x4f\x60\ \x49\x32\x53\x50\x47\x3d\x41\x3a\x53\x44\x30\x57\x45\x35\x50\x43\ \x39\xce\x88\x4f\xe4\xa8\x7b\xef\xb6\x8c\x8f\x75\x61\x29\x36\x31\ \x46\x34\x1b\x69\x5a\x45\x6b\x58\x43\x69\x6b\x63\x30\x44\x46\x37\ \x40\x41\x00\x00\x00\x98\x93\x93\x92\x85\x7f\x91\x80\x78\x79\x6e\ \x62\x5f\x64\x5f\x6c\x75\x74\x65\x70\x6e\x50\x63\x5d\x50\x5d\x55\ \x56\x5e\x54\x5c\x68\x5e\x53\x5c\x4f\x54\x54\x44\x57\x58\x49\x59\ \x5f\x58\x58\x56\x4b\x55\x4b\x3f\x59\x5c\x55\x5f\x69\x5d\x60\x5c\ \x52\x64\x54\x49\x5d\x4b\x3b\x52\x41\x2d\x55\x46\x3a\x60\x54\x4a\ \x62\x54\x47\x6b\x5c\x55\x6d\x60\x56\x64\x51\x45\x5a\x46\x37\x57\ \x3f\x30\x53\x3d\x2c\x5a\x49\x3c\x5b\x51\x48\x59\x4d\x41\x5f\x54\ \x4a\x55\x49\x3b\x62\x5a\x50\x67\x5d\x52\x74\x68\x5c\x7c\x6e\x63\ \x7f\x72\x6c\x7b\x6b\x5e\x69\x5a\x4d\x7a\x6d\x63\x75\x68\x5d\x75\ \x65\x58\x80\x6b\x5e\x88\x79\x71\x7e\x6b\x63\x93\x86\x81\xc8\xbf\ \xb9\xde\xd8\xd2\x6f\x61\x59\x74\x63\x59\x66\x55\x44\x76\x67\x5d\ \x75\x69\x5c\x73\x65\x57\x7d\x69\x5e\x85\x75\x6b\x86\x78\x71\x82\ \x6e\x61\x82\x71\x68\xbb\xb1\xa9\x91\x85\x7a\x6c\x5a\x50\x84\x72\ \x64\xd3\xb9\xa5\xe6\xd5\xc1\xe3\xd4\xc2\xe3\xd4\xc4\xe2\xd1\xbf\ \xdf\xce\xbc\xe1\xcd\xb7\xe0\xcd\xb8\xe2\xca\xb4\xe3\xcc\xb5\xe5\ \xcf\xbb\xea\xd4\xc0\xb5\xa2\x96\x8c\x75\x68\x92\x7a\x6d\x95\x7e\ \x73\x97\x7f\x71\x92\x7c\x71\x91\x79\x6c\x91\x7b\x71\x8b\x70\x62\ \x8e\x76\x69\x96\x89\x86\x90\x85\x84\x8d\x78\x6f\x83\x6b\x62\x87\ \x70\x65\x89\x70\x63\xdb\xca\xb8\xda\xd0\xc8\xd4\xc5\xb8\xc7\xb9\ \xb0\xab\x9d\x95\x99\x82\x76\x92\x7b\x70\x93\x78\x68\xb0\x99\x89\ \xc9\xb1\x9e\xcf\xc0\xb4\x93\x7d\x74\x8c\x71\x63\x8c\x6d\x5a\x8d\ \x6e\x5d\x8f\x70\x5f\x8c\x6c\x5a\xa2\x7c\x61\xc6\xb2\xa4\xc8\xbb\ \xb0\xa9\x9b\x93\x9d\x82\x71\xb1\xa4\x9d\x82\x68\x5c\x85\x67\x58\ \x8d\x6c\x59\x98\x79\x66\xb7\x9b\x86\xc1\xa8\x94\xe4\xce\xb8\xe2\ \xd3\xc4\xe1\xd0\xc1\xe0\xcd\xbb\xe2\xc9\xb3\xe0\xca\xb5\xe1\xca\ \xb6\xe2\xca\xb4\xe4\xcb\xb4\xdb\xbe\xa7\xb5\x9f\x8b\xde\xbb\xa4\ \xda\xb5\x98\x7c\x75\x6d\x38\x41\x3d\x65\x56\x44\x69\x4b\x31\x67\ \x5d\x4f\x45\x46\x3d\x94\x74\x57\x91\x6d\x53\xa1\x73\x53\x95\x70\ \x5b\x8d\x6e\x5b\x55\x45\x37\x6b\x54\x3d\x8f\x6d\x4c\xa6\x7a\x55\ \xa3\x76\x50\xc2\x94\x70\x3d\x41\x3d\x19\x2e\x2a\x2a\x2c\x1f\x41\ \x49\x3f\x3b\x49\x43\x3d\x4f\x50\x39\x44\x45\x46\x4a\x43\x00\x00\ \x00\x84\x79\x75\x85\x77\x74\x8d\x7c\x74\x83\x6d\x61\x7f\x77\x78\ \xbd\xc0\xc4\xd5\xd5\xd2\x8c\x8e\x8b\x7d\x81\x80\x82\x88\x86\x6d\ \x78\x72\x51\x5d\x52\x4e\x55\x46\x4e\x55\x46\x50\x57\x4e\x58\x54\ \x49\x53\x46\x37\x50\x4f\x43\x5a\x53\x4a\x57\x47\x39\x52\x40\x31\ \x53\x42\x32\x52\x42\x31\x51\x43\x36\x55\x46\x38\x53\x44\x38\x58\ \x48\x3c\x5c\x4a\x3c\x59\x44\x35\x6f\x5e\x52\x66\x55\x45\x5d\x4d\ \x40\x83\x79\x70\x94\x8b\x83\x7b\x71\x6a\x6d\x63\x60\x6a\x60\x5a\ \x7a\x71\x6b\x76\x6e\x6d\x8a\x7b\x72\x8a\x79\x6d\x81\x70\x68\x7e\ \x6f\x65\x75\x68\x5a\x79\x6b\x5d\x82\x70\x64\x7e\x69\x60\x80\x71\ \x69\x90\x80\x79\x88\x75\x6d\x74\x63\x5b\x93\x86\x7f\xe0\xd7\xd1\ \xb2\xa9\xa2\x75\x67\x5e\x6f\x5f\x52\x78\x68\x60\x7b\x6f\x64\x80\ \x70\x63\x6f\x5b\x4f\x84\x72\x67\x89\x77\x6e\x7f\x69\x5e\x8c\x7e\ \x75\xa2\x94\x8d\x8f\x7d\x73\xa0\x90\x86\xb4\x9f\x90\xe7\xd5\xc2\ \xe3\xd2\xbf\xe1\xd0\xbe\xe1\xd1\xbf\xe1\xcf\xbd\xe1\xcd\xb8\xe2\ \xcb\xb6\xe1\xcb\xb4\xe3\xc7\xad\xe4\xc8\xae\xe3\xce\xbc\xe4\xd2\ \xc0\xdf\xc8\xb4\xb1\x96\x86\x8a\x72\x67\x94\x7c\x70\x98\x82\x7a\ \x94\x7e\x70\x94\x7e\x71\x91\x79\x6e\x8e\x72\x63\x94\x77\x66\x8b\ \x7a\x74\x8a\x79\x74\x88\x71\x65\x7f\x66\x58\x84\x6b\x5e\x9e\x85\ \x72\xdf\xcd\xbc\xde\xd0\xc6\xbe\xae\xa6\x9a\x8c\x8b\x8b\x78\x73\ \x8f\x73\x64\x95\x76\x63\xd1\xbc\xa6\xc9\xb7\xaa\xcc\xbd\xb4\x96\ \x81\x78\x8c\x6b\x5a\x88\x69\x59\x89\x68\x56\x98\x7d\x6d\x8e\x76\ \x69\x88\x69\x57\x9e\x7e\x69\x85\x6b\x60\x92\x72\x5b\xc5\xb1\x9d\ \xbd\xae\xa4\xc4\xbb\xb4\x81\x66\x59\xa1\x82\x6d\xb3\x99\x87\xcf\ \xbc\xaa\xe2\xd5\xc8\xe6\xda\xcf\xe3\xd5\xcb\xe2\xd6\xcb\xe2\xd5\ \xcb\xe2\xd4\xc9\xe0\xd3\xc8\xe1\xd2\xc4\xe2\xd2\xc4\xe3\xd3\xc3\ \xe7\xd8\xc9\xb4\xa6\x9b\xb2\xa8\xa0\xb6\x9b\x87\xbf\xb2\xaa\x57\ \x57\x54\x77\x64\x54\x44\x44\x40\x72\x5e\x47\x88\x79\x6c\x72\x65\ \x57\xb3\x8c\x6a\x62\x57\x4e\x6a\x4d\x35\x87\x6b\x58\x60\x4c\x3e\ \x6e\x50\x39\xdc\xa2\x70\xaf\x85\x67\x69\x5e\x51\x4f\x47\x31\x62\ \x52\x3d\x42\x45\x39\x1d\x37\x2f\x2a\x38\x33\x2e\x3d\x36\x2a\x40\ \x3b\x21\x39\x37\x32\x43\x41\x3c\x45\x46\x00\x00\x00\x87\x7d\x78\ \x7d\x6b\x63\x80\x6e\x66\x83\x72\x6d\x94\x8a\x88\xd4\xd4\xd6\xe0\ \xdf\xe0\xeb\xe9\xe7\xa0\x99\x95\x9c\x94\x91\x95\x89\x7f\x88\x7b\ \x70\x89\x85\x7a\x6e\x6c\x67\xa1\xa4\xa5\x8c\x88\x84\x74\x6b\x64\ \x87\x82\x80\x73\x65\x59\x58\x4c\x3e\x68\x5e\x53\x6f\x67\x59\x5a\ \x51\x45\x5d\x54\x4c\x79\x72\x69\x6a\x5c\x4d\x5c\x54\x46\x58\x4b\ \x3b\x56\x44\x35\x62\x52\x49\x61\x4f\x40\x5f\x4e\x42\x85\x7f\x79\ \x81\x7d\x79\xc7\xc3\xc0\x7f\x7a\x78\x83\x79\x73\x83\x79\x73\x7a\ \x72\x71\x7d\x6d\x64\x8f\x7a\x70\x8d\x78\x6c\x88\x77\x6e\x88\x7a\ \x70\x83\x75\x6e\x82\x70\x65\x76\x63\x59\x71\x64\x5c\x7f\x72\x6b\ \x81\x70\x67\x7e\x6c\x60\x81\x71\x68\x9e\x92\x8c\xcb\xc0\xb9\x7e\ \x70\x66\x6d\x5f\x55\x86\x77\x6d\x7b\x69\x60\x76\x63\x57\x85\x74\ \x6d\x89\x75\x6c\x90\x7d\x74\x88\x73\x67\x8f\x7a\x73\x7c\x60\x52\ \x9a\x81\x76\x97\x80\x75\xbf\xa8\x96\xe4\xd2\xbc\xe4\xce\xba\xe3\ \xcb\xb4\xe2\xcb\xb6\xe0\xcc\xba\xe1\xce\xbc\xe1\xcb\xb7\xe2\xc6\ \xae\xe5\xbf\x9e\xe6\xc3\xa4\xe1\xcc\xb7\xe2\xce\xba\xe7\xcb\xb3\ \xe5\xbe\xa0\xb8\x99\x85\x90\x76\x6a\x8f\x77\x6a\x94\x7c\x70\x8f\ \x79\x6f\x95\x7f\x73\x8f\x75\x67\x8c\x6f\x5f\x88\x6f\x63\x95\x7e\ \x72\x86\x6e\x63\x84\x6a\x5a\x8a\x70\x61\xcf\xb6\xa0\xdf\xce\xc2\ \xa8\x97\x92\x8e\x79\x72\x93\x82\x7e\x8e\x78\x6c\x8c\x6f\x5e\xc9\ \xad\x94\xd3\xc1\xb4\xa1\x8c\x80\xb4\xa1\x95\x8f\x76\x66\x89\x70\ \x65\xb5\x98\x80\xb3\xa2\x97\xca\xb5\xa3\xbe\xb4\xb2\x91\x6d\x5b\ \xb6\x94\x78\xcb\xb0\x99\xcb\xb4\xa3\xbb\xa8\x99\xc1\xac\x9c\xe0\ \xd7\xcd\xc8\xb9\xb0\xe1\xd4\xc6\xe2\xd8\xcf\xe3\xda\xd0\xe3\xdb\ \xd1\xe1\xd8\xcf\xe0\xd6\xcd\xe1\xd5\xcc\xe0\xd6\xcd\xe0\xd6\xcc\ \xe2\xd5\xcd\xe0\xd5\xcd\xe2\xd6\xcb\xe5\xd8\xcc\xbd\xb7\xb7\x50\ \x54\x53\xab\x92\x77\x83\x83\x89\x7a\x73\x6b\x4c\x4e\x4c\x69\x5b\ \x4a\xba\xaa\x92\xd9\xbd\xa6\xe1\xc8\xb7\x8c\x84\x80\x77\x63\x4f\ \x73\x62\x52\x4b\x46\x3f\x3d\x35\x2b\x60\x50\x39\xd5\xa7\x7c\xd3\ \xb0\x96\x96\x78\x5f\x67\x60\x55\x30\x3b\x32\x3f\x43\x38\x34\x3c\ \x32\x32\x4c\x47\x39\x4c\x4b\x58\x55\x43\x62\x65\x59\x52\x4f\x44\ \x4c\x53\x4a\x67\x5d\x4d\x00\x00\x00\xc6\xc2\xbf\x9c\x94\x8f\x8a\ \x7a\x72\xc1\xc4\xcb\xb7\xaf\xab\xd4\xc8\xbe\xa6\x9e\x9f\xb5\xb8\ \xbe\xa4\x9e\x9c\xa4\xa1\xa2\x9e\x90\x89\x96\x86\x80\x9f\x94\x91\ \x9f\x98\x96\xab\xaa\xad\x9b\x92\x8c\x95\x86\x80\xa1\x8b\x83\x7b\ \x6b\x60\x5f\x57\x49\x83\x80\x81\xaa\xa1\x9f\xa2\x92\x8d\x99\x8f\ \x8c\x95\x85\x7c\x8b\x7a\x75\x8a\x7b\x77\x81\x73\x6c\x62\x56\x4b\ \x61\x52\x45\x61\x54\x4c\x6b\x62\x5c\x77\x6d\x6a\x8b\x83\x7f\x82\ \x7a\x77\x80\x78\x75\x8b\x81\x7e\x81\x74\x6d\x8d\x7d\x76\x8b\x79\ \x6b\x8d\x7d\x71\x8a\x76\x6b\x8e\x7b\x6e\x8b\x7b\x70\x85\x78\x70\ \x86\x76\x6d\x6e\x59\x4d\x82\x75\x71\x7a\x69\x5f\x81\x72\x67\x83\ \x70\x64\x87\x78\x71\x83\x73\x6b\xb8\xaf\xa7\x98\x8c\x84\x6d\x5f\ \x52\x77\x65\x5b\x79\x68\x5d\x83\x74\x6c\x87\x75\x6e\x8a\x77\x6c\ \x8a\x7b\x73\x8c\x7b\x73\x92\x7b\x72\x91\x7c\x6e\x9e\x87\x7c\x8e\ \x74\x66\xc8\xb1\x9c\xe2\xce\xbc\xe3\xcc\xba\xe4\xcb\xb4\xe2\xcb\ \xb3\xe0\xca\xb6\xe2\xc4\xab\xe5\xbc\x9a\xe5\xbd\x98\xe7\xbb\x94\ \xe6\xbf\x9c\xe6\xc2\xa4\xe6\xc0\xa3\xea\xc0\x9f\xed\xbe\x98\xed\ \xb8\x90\xa5\x83\x6e\x95\x7e\x72\x92\x7b\x6c\x93\x7e\x6e\x91\x7c\ \x71\x8c\x79\x6f\x91\x7a\x6a\x9d\x87\x7a\x94\x7e\x73\xab\x96\x86\ \xb5\xa8\x9e\xb9\xa1\x92\xca\xb8\xaf\x90\x7c\x71\x96\x86\x84\x8d\ \x73\x67\x93\x80\x7a\x8c\x75\x69\xa6\x85\x6d\xa2\x90\x88\xa1\x88\ \x79\xad\x92\x7f\xb6\xa0\x91\xbb\xad\xa3\xc6\xae\x96\xdc\xce\xc0\ \xac\x9b\x91\xd2\xc0\xaf\xa6\x96\x90\xd6\xb6\x9a\xe7\xc9\xb1\xe4\ \xcf\xb7\xe4\xd5\xc5\xe6\xdd\xd2\xe7\xdf\xd7\xe7\xdf\xd8\xe7\xdf\ \xd8\xe5\xde\xd7\xe5\xdd\xd7\xe5\xdb\xd5\xe4\xdb\xd2\xe2\xd9\xd0\ \xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\xd0\xe1\xd9\xd0\xe3\xd9\xcf\xe1\ \xd8\xcf\xe3\xd9\xce\xcb\xc8\xc6\x87\x84\x84\x32\x40\x46\x93\x80\ \x67\xaa\xa5\xa0\x59\x5c\x5d\xbf\xad\x98\xe5\xd8\xca\xe6\xda\xcc\ \xe6\xd7\xcb\xe8\xd8\xca\xa5\x9d\x99\x6b\x5f\x57\x34\x37\x34\x5d\ \x4b\x33\xdc\xb7\x96\xd8\xbc\xa0\xf2\xd5\xbe\xcc\xbb\xb3\x3f\x4d\ \x50\x2e\x3b\x2f\x77\x67\x47\xc2\x9e\x7b\xd6\xae\x88\x87\x83\x81\ \x77\x68\x52\x7e\x71\x62\x88\x7f\x77\x53\x52\x4f\x47\x4f\x49\x1f\ \x29\x2d\x00\x00\x00\xf1\xf1\xf1\xf6\xf6\xf5\xc2\xb6\xaa\x97\x8c\ \x88\xb2\xaa\xa7\xbd\xab\x9f\x9c\x96\x98\x9f\x90\x86\x8f\x89\x8b\ \x9c\x97\x99\x9e\x91\x8c\x95\x87\x82\x9e\x95\x93\xa5\xa3\xa5\xaa\ \xa7\xa6\xa9\xa6\xa7\x9f\x93\x8d\x9b\x87\x7a\x86\x67\x54\x86\x73\ \x66\x96\x8b\x87\xa3\x96\x91\x98\x86\x7f\xbd\xb1\xaa\xa1\x8e\x81\ \x8f\x7b\x71\x89\x79\x71\x7a\x70\x6b\xb6\xb5\xb1\xbd\xb7\xaf\xbf\ \xbb\xb5\x9d\x98\x93\xb3\xaf\xad\xa6\x9f\x9a\x99\x92\x8a\x8d\x7d\ \x73\x8a\x82\x80\x85\x78\x71\x7f\x71\x67\x89\x79\x6d\x82\x75\x6c\ \x7f\x70\x64\x82\x74\x68\x82\x74\x6b\x92\x88\x7f\xb3\xa5\x9f\x6f\ \x5e\x51\x74\x63\x58\x83\x6e\x66\x8b\x7c\x75\x8a\x7a\x73\x87\x7c\ \x77\x84\x75\x6c\xa2\x95\x8c\xb2\xa6\x9e\x87\x77\x6d\x6c\x5c\x54\ \x63\x55\x49\x8a\x7a\x71\x84\x70\x65\x8b\x75\x68\x8d\x7c\x72\x85\ \x73\x6c\x91\x78\x68\x9d\x88\x7c\x84\x67\x58\x8e\x72\x60\xc9\xb1\ \x9b\xe3\xce\xb9\xe3\xcb\xb5\xe2\xc9\xb1\xe2\xc9\xb2\xe3\xc1\xa6\ \xeb\xb2\x84\xed\xb0\x7c\xe7\xba\x91\xe6\xbc\x9a\xe8\xba\x95\xe9\ \xba\x92\xe9\xba\x92\xeb\xbb\x93\xec\xba\x93\xf1\xba\x90\xeb\xb8\ \x92\xb1\x97\x86\x94\x7c\x71\x8e\x77\x6b\x8f\x79\x6b\x8e\x78\x6a\ \x94\x7c\x71\xa2\x8b\x7c\x9a\x86\x7c\xca\xbc\xb0\xa1\x90\x8a\x8d\ \x75\x69\x89\x6d\x60\x95\x7e\x72\x96\x89\x88\x90\x77\x6a\x93\x82\ \x7c\x8f\x76\x6b\xce\xb4\x9b\xc0\xb6\xb2\x8e\x6e\x5d\xc7\xab\x95\ \xb9\xa7\x9b\xcd\xbe\xb1\xdb\xca\xbc\xca\xbf\xb7\xba\xa8\x9a\xa6\ \x93\x88\xd0\xbe\xac\xe8\xe0\xd7\xe6\xdc\xd3\xe8\xdf\xd7\xe8\xe0\ \xd9\xe7\xe1\xdc\xe7\xe1\xdd\xe6\xe0\xdc\xe6\xe1\xdc\xe7\xe0\xdc\ \xe7\xde\xda\xe6\xde\xda\xe4\xdc\xd6\xe3\xdc\xd4\xe4\xdb\xd2\xe4\ \xdb\xd2\xe4\xdb\xd2\xe4\xdb\xd2\xe4\xdc\xd3\xe3\xd9\xd3\xe6\xdc\ \xd4\xb2\xb3\xb5\x52\x59\x5f\x62\x67\x67\x76\x64\x51\xb8\xad\xa1\ \xe3\xd6\xc6\xeb\xe2\xdb\xe5\xdf\xd7\xc2\xbe\xba\x9c\x99\x9c\xc8\ \xb8\xa8\x68\x75\x83\x3f\x40\x3d\x91\x68\x43\xf3\xb9\x87\xf3\xc8\ \xa6\xf0\xcf\xb4\xd3\xc1\xb6\x85\x81\x7f\x77\x72\x67\x89\x66\x49\ \xff\xd4\xa3\xf8\xce\xaf\xfd\xd6\xb7\xa5\x9a\x9a\x33\x44\x4f\x56\ \x51\x41\x8d\x8d\x8c\x26\x38\x3d\x26\x32\x2d\x65\x57\x3f\x00\x00\ \x00\xcf\xc9\xc5\xa7\x9b\x94\xad\x9a\x8c\x93\x81\x78\xa6\x94\x8d\ \x8e\x76\x6a\x95\x8e\x8e\x94\x82\x76\x89\x79\x72\xa1\x9d\x9e\xa2\ \x9c\x9c\x9a\x93\x93\x9d\x91\x8a\x90\x86\x84\xb1\xb0\xb1\xa6\x9e\ \x9e\x9b\x90\x8b\x9f\x90\x85\x8c\x73\x6a\x97\x83\x79\x94\x81\x78\ \xa8\x98\x90\x94\x7f\x76\xd5\xca\xc4\xc8\xb4\x9f\x89\x73\x68\x81\ \x70\x69\x7b\x6b\x65\xc8\xc3\xc0\xf2\xee\xe9\xf2\xee\xe9\xf4\xf0\ \xeb\xee\xea\xe5\xf0\xed\xe6\xe5\xe1\xdc\xd4\xcd\xc7\xa0\x96\x90\ \x82\x75\x6c\x72\x61\x57\x78\x6a\x61\x81\x75\x6c\x81\x6e\x62\x81\ \x6f\x65\x77\x68\x5f\xa6\x9a\x96\xad\xa2\x9c\x7f\x70\x67\x7a\x67\ \x5d\x86\x72\x66\x8d\x7e\x78\x8a\x7a\x74\x85\x76\x70\x7f\x6a\x5e\ \xa2\x94\x8a\xb1\xa4\x9c\x81\x70\x68\x7d\x6e\x66\x67\x59\x4d\x72\ \x60\x52\x83\x71\x68\x81\x6e\x62\x7c\x69\x5d\x8a\x73\x6a\x90\x76\ \x67\x8b\x6e\x5d\x87\x69\x58\x9a\x7d\x6d\xd7\xc3\xaf\xe2\xd1\xbf\ \xe2\xce\xbb\xe2\xca\xb4\xe3\xc2\xa7\xe8\xb5\x8c\xed\xaf\x7c\xec\ \xb2\x81\xe8\xbc\x95\xe8\xba\x94\xec\xb3\x83\xea\xb5\x8a\xeb\xb8\ \x8f\xeb\xb8\x8e\xeb\xb9\x91\xef\xb8\x8c\xf2\xba\x8e\xf1\xc2\xa0\ \xae\x94\x85\x8f\x7a\x6d\x8f\x78\x6d\x96\x7e\x72\x97\x81\x76\x93\ \x7b\x6b\x92\x7b\x70\x85\x6e\x62\x90\x79\x6b\x89\x6d\x5f\x8e\x71\ \x61\x94\x7e\x72\x9b\x8e\x8e\x92\x77\x6a\x91\x7a\x71\x9c\x7f\x6a\ \xbd\xa4\x95\xc2\xb5\xac\x8e\x6f\x5e\xbf\xa3\x8d\xd2\xc5\xba\xa3\ \x90\x89\x9c\x83\x77\xa4\x91\x84\xb2\x9c\x8c\xdf\xcf\xc0\xee\xe8\ \xe6\xea\xe6\xe3\xeb\xe6\xe4\xeb\xe6\xe4\xeb\xe6\xe4\xeb\xe6\xe4\ \xea\xe6\xe3\xe9\xe3\xe2\xe7\xe2\xe0\xe6\xe0\xdd\xe5\xdf\xdb\xe5\ \xdf\xdb\xe6\xdf\xdb\xe6\xde\xdb\xe5\xde\xd8\xe5\xdd\xd8\xe5\xdc\ \xd6\xe5\xdd\xd6\xe5\xdc\xd8\xe5\xdc\xd8\xdb\xd3\xcc\x97\x98\x9d\ \x77\x74\x71\x7e\x77\x66\xda\xcb\xb6\xec\xe4\xdd\xe9\xe1\xdc\xe8\ \xdf\xda\xec\xe2\xdb\xa8\xb4\xc5\x5c\x63\x60\x5d\x60\x5f\x4b\x50\ \x4e\x75\x6e\x5e\xd1\xa9\x88\xce\xae\x97\xe7\xc2\xa4\xe9\xcf\xbb\ \xc6\xb2\xa7\x78\x79\x7b\x7c\x68\x4f\xc0\xa5\x92\xeb\xb3\x88\xe5\ \xb5\x94\xe8\xc3\xa6\x5f\x71\x82\x5a\x4e\x38\x78\x77\x77\x71\x6e\ \x6b\x30\x3b\x3c\x3a\x48\x40\x4d\x50\x43\x00\x00\x00\x97\x89\x83\ \x95\x8a\x86\xa4\x89\x76\x8c\x78\x71\x89\x73\x6c\x87\x71\x67\x9c\ \x9a\x9d\x9a\x8c\x82\x8b\x77\x6f\xa0\x9d\x9d\x94\x89\x87\x99\x94\ \x95\xa2\x98\x92\x91\x87\x85\x9c\x94\x94\x97\x8a\x84\x93\x80\x79\ \x92\x7b\x6c\x91\x7b\x71\x94\x7c\x71\x97\x83\x7b\x9f\x8e\x83\xa5\ \x95\x8c\xe0\xd2\xc9\xb7\x9b\x86\x8b\x74\x68\x8b\x78\x6e\xae\xa5\ \xa1\xe6\xe3\xdf\xf0\xee\xe9\xec\xe8\xe3\xeb\xe6\xe0\xe9\xe4\xdf\ \xea\xe6\xe0\xed\xe8\xe3\xef\xeb\xe6\xbd\xb2\xab\x80\x72\x6a\x7d\ \x6d\x62\x81\x72\x68\x7b\x6e\x66\x6b\x5a\x4b\x72\x62\x58\x7b\x6c\ \x63\x8d\x7f\x79\x89\x7b\x73\x89\x7c\x73\x87\x75\x6a\x82\x6f\x63\ \x89\x79\x70\x87\x74\x6b\x88\x77\x6e\x79\x63\x54\xad\xa2\x99\xd0\ \xc4\xbc\x91\x81\x79\x7a\x69\x60\x74\x63\x59\x69\x5a\x4d\x82\x70\ \x66\x78\x65\x5a\x73\x60\x53\x91\x7a\x6f\x91\x78\x69\x90\x73\x62\ \x93\x74\x60\xca\xb4\xa0\xe4\xd5\xc4\xe2\xd3\xc2\xe0\xcd\xbb\xe3\ \xc2\xa4\xe8\xb8\x91\xeb\xb3\x84\xee\xad\x79\xf1\xab\x76\xe8\xbb\ \x95\xe7\xbd\x99\xeb\xb3\x87\xeb\xb4\x88\xea\xb6\x8e\xec\xb5\x89\ \xed\xb6\x8a\xed\xb9\x8f\xed\xbb\x93\xf2\xbb\x90\xd9\xa8\x83\x8e\ \x76\x6b\x90\x78\x6c\x90\x77\x6c\x94\x7c\x71\x8d\x78\x6e\x94\x7d\ \x71\x90\x7a\x6e\x8c\x70\x60\x8b\x6f\x60\x91\x74\x64\x96\x7f\x73\ \x96\x88\x89\x95\x7a\x6b\x91\x76\x68\x90\x72\x5f\xb1\x94\x7d\xd1\ \xc4\xb9\x8c\x71\x64\xa9\x8e\x79\xb0\x9e\x95\xa5\x94\x8a\x81\x65\ \x58\xa8\x8c\x76\xe1\xd5\xc8\xef\xea\xe8\xec\xe8\xe8\xee\xe8\xe9\ \xee\xea\xeb\xef\xec\xec\xee\xeb\xec\xee\xeb\xeb\xed\xe9\xe9\xec\ \xe6\xe8\xea\xe5\xe4\xe8\xe3\xe0\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\ \xde\xe4\xdf\xdc\xe6\xde\xdb\xe6\xdf\xdb\xe6\xdd\xd9\xe6\xde\xdb\ \xe5\xde\xda\xe5\xdc\xd8\xbb\xb8\xba\x54\x5a\x5f\x92\x81\x66\xe7\ \xda\xcb\xe7\xdf\xd6\xe5\xdd\xd7\xe8\xdf\xda\xe9\xe0\xdc\xe9\xe0\ \xdc\xe5\xe2\xe1\x5a\x68\x76\x56\x5b\x5e\x80\x73\x5c\xdf\xcd\xbc\ \xe7\xda\xd1\xb1\xb1\xb9\x92\x85\x79\xc6\xae\x9c\xe1\xc3\xab\xb7\ \xb1\xb7\x92\x7b\x66\x9b\x8f\x81\x9f\x85\x72\xa4\x7f\x5e\xa6\x85\ \x71\x4d\x5b\x5b\x3c\x39\x2c\x75\x72\x6d\x28\x2f\x30\x40\x42\x36\ \x5d\x66\x5f\x5b\x5b\x51\x00\x00\x00\x8d\x7a\x71\x98\x8c\x89\xc4\ \xb1\xa2\x89\x73\x6d\x7f\x68\x5e\x85\x75\x6f\x97\x95\x98\x9f\x9b\ \x96\x91\x80\x7b\xa8\xa7\xa9\x96\x8d\x8c\x98\x94\x93\x9e\x91\x86\ \x86\x77\x74\xa8\xa0\x9b\x95\x83\x77\x8f\x78\x6c\x8a\x6f\x60\x8f\ \x77\x68\x91\x78\x6d\x95\x7f\x71\x98\x84\x7a\xbf\xb1\xa8\xbd\xaf\ \xa7\xbb\xa4\x94\x8b\x73\x65\x8e\x75\x65\x97\x84\x79\xa0\x91\x8a\ \xb1\xa5\xa0\xde\xdb\xd7\xf2\xec\xe5\xec\xe8\xe2\xec\xe7\xe1\xea\ \xe6\xe0\xe9\xe5\xe0\xbd\xb1\xa5\x70\x62\x5a\x80\x70\x66\x7a\x6b\ \x5e\x74\x65\x5a\x69\x5a\x4d\x6f\x5d\x52\x79\x67\x5b\x84\x71\x67\ \x85\x75\x6c\x86\x76\x6b\x88\x77\x6e\x80\x6a\x60\x88\x76\x70\x8c\ \x77\x6c\x8a\x76\x6d\x7d\x66\x58\x98\x88\x81\xda\xcf\xc8\xb4\xa7\ \x9f\x6e\x5d\x53\x7a\x68\x5e\x7a\x6b\x5f\x63\x53\x48\x62\x52\x44\ \x8f\x7f\x75\x91\x79\x6c\x92\x76\x68\x91\x77\x68\xb6\x9f\x8c\xe5\ \xd1\xbd\xe5\xc8\xb3\xe5\xc3\xa8\xe6\xbc\x97\xea\xb6\x8c\xee\xb0\ \x7f\xee\xaf\x7c\xef\xae\x7a\xee\xad\x7a\xed\xb1\x80\xe8\xb7\x8f\ \xec\xb2\x82\xed\xb0\x80\xea\xb5\x87\xec\xb2\x83\xed\xb1\x81\xed\ \xb5\x89\xef\xb5\x88\xf5\xb0\x79\xf5\xb1\x7c\xd2\xa2\x81\x93\x79\ \x6a\x90\x77\x6a\x8b\x72\x66\x8a\x76\x6b\x88\x70\x67\x89\x6e\x60\ \x8f\x73\x65\x8d\x70\x61\x93\x77\x68\x95\x7d\x70\x91\x7b\x77\x95\ \x7a\x6b\x8e\x71\x63\xa8\x89\x75\xce\xbb\xac\xa9\x97\x8c\x91\x78\ \x6c\x9f\x7b\x63\x95\x76\x67\x89\x68\x57\xb6\x8e\x6d\xe5\xdb\xcd\ \xe9\xe4\xe1\xe8\xe2\xe0\xe9\xe4\xe2\xeb\xe6\xe4\xee\xec\xec\xef\ \xee\xee\xf0\xee\xee\xef\xed\xed\xee\xec\xec\xed\xe8\xe8\xec\xe6\ \xe7\xea\xe4\xe4\xe9\xe3\xe3\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\ \xe7\xe2\xe0\xe7\xe2\xdf\xe7\xe0\xdd\xe7\xe1\xdd\xe5\xde\xdb\xdb\ \xd5\xd3\xb3\xb0\xae\x8a\x80\x75\xd0\xbb\xa3\xe2\xd8\xcf\xe5\xdc\ \xd3\xe5\xdc\xd7\xe5\xdd\xd7\xe7\xde\xda\xe9\xe0\xdc\xd2\xcf\xcf\ \x53\x6e\x84\x55\x53\x44\xba\xac\x99\xe4\xd8\xca\xd7\xd1\xd1\xa0\ \xa6\xb0\xa1\x97\x8e\x8d\x82\x79\x91\x81\x73\x8f\x8b\x8c\x8f\x7a\ \x67\x64\x67\x69\x75\x69\x5d\x55\x57\x4e\x48\x57\x4e\x39\x4d\x4e\ \x21\x2f\x2b\x31\x34\x30\x30\x3c\x36\x44\x4a\x42\x52\x5a\x5d\x66\ \x5c\x52\x00\x00\x00\x90\x80\x79\x8f\x84\x84\x9e\x8a\x7a\x7d\x67\ \x61\x91\x85\x83\xb4\xb1\xb0\x99\x90\x8f\x9c\x98\x97\x95\x88\x85\ \x91\x84\x82\xa2\xa0\xa3\xa4\xa1\xa2\x93\x89\x88\x98\x8c\x87\x9b\ \x90\x8c\x9b\x8e\x86\x93\x81\x78\x89\x6d\x5c\x89\x6f\x61\x8e\x78\ \x6a\x97\x81\x78\xb0\xa1\x99\xa0\x8b\x7e\x8e\x70\x5f\x8a\x70\x63\ \x91\x77\x69\x90\x76\x66\x8f\x75\x63\x88\x6c\x5d\x86\x67\x52\x88\ \x6f\x61\x9e\x92\x8c\xc1\xb7\xb3\xe0\xd6\xcd\xe6\xe4\xe2\xf8\xf8\ \xf6\xe0\xda\xd2\x7d\x6b\x62\x7f\x6f\x67\x8c\x82\x7b\x78\x6a\x5f\ \x64\x58\x47\x77\x67\x5a\x88\x75\x6c\x84\x6d\x62\x82\x70\x65\x87\ \x74\x68\x8d\x7b\x73\x78\x62\x52\x86\x74\x69\x92\x7d\x71\x8b\x75\ \x6a\x7e\x67\x5c\x82\x71\x68\x85\x79\x74\x8d\x83\x7e\x9c\x8f\x88\ \x7b\x6a\x60\x74\x63\x59\x65\x54\x45\x62\x50\x41\x89\x78\x6f\x92\ \x78\x66\x92\x79\x6d\xab\x90\x7f\xe4\xcd\xb9\xe4\xcf\xba\xe6\xc6\ \xa9\xe8\xbd\x98\xe7\xbc\x99\xe9\xb7\x8d\xef\xad\x76\xed\xb1\x81\ \xed\xb3\x83\xec\xb2\x84\xef\xae\x7d\xef\xac\x7a\xf1\xab\x73\xf0\ \xab\x71\xec\xb3\x85\xea\xb8\x8f\xed\xb2\x82\xed\xb1\x82\xf1\xb0\ \x7e\xf3\xae\x79\xf8\xb0\x75\xf1\xb7\x8a\xc9\xa0\x84\x90\x78\x6b\ \x8a\x71\x64\x86\x6f\x66\x90\x7a\x70\x8b\x6b\x59\x92\x76\x67\x8e\ \x71\x62\x90\x79\x6d\x91\x79\x6a\x9a\x7f\x70\x95\x79\x6b\x8d\x6e\ \x5c\xaf\x8f\x79\xbb\xb0\xaa\xb9\x99\x80\xc1\x9c\x85\xde\x97\x62\ \xdc\x9b\x6c\xe2\xa3\x73\xec\xb4\x87\xe5\xd3\xc0\xe6\xdf\xda\xe6\ \xdf\xda\xe6\xdf\xda\xe6\xe1\xdd\xe8\xe4\xe1\xec\xe8\xe7\xee\xec\ \xec\xee\xec\xec\xed\xec\xec\xef\xea\xeb\xed\xeb\xeb\xed\xe6\xe7\ \xea\xe4\xe5\xe9\xe4\xe3\xe9\xe4\xe3\xea\xe5\xe4\xeb\xe5\xe4\xea\ \xe4\xe5\xea\xe5\xe3\xe9\xe5\xe2\xe8\xe3\xe1\xe2\xdb\xd8\xbd\xb7\ \xb5\xcc\xb9\xa7\xe2\xd2\xc3\xe1\xd8\xd0\xe5\xdc\xd4\xe3\xda\xd7\ \xe4\xdb\xd7\xe6\xdd\xd9\xe7\xdd\xd9\xe8\xe1\xdd\x8f\x95\xa0\xd1\ \xc6\xb7\x9b\x9c\x9d\xa4\x96\x84\xdb\xda\xd7\x6d\x77\x80\x46\x53\ \x57\x35\x46\x49\x41\x46\x3c\x58\x64\x69\x37\x3b\x34\x2f\x41\x43\ \x40\x42\x38\x47\x50\x4a\x3e\x56\x59\x31\x4c\x54\x30\x4a\x4b\x29\ \x34\x33\x30\x41\x3b\x36\x45\x40\x47\x51\x54\x93\x75\x56\x00\x00\ \x00\x85\x70\x65\x94\x8a\x8b\xa8\x9c\x8f\x8c\x74\x66\xa2\x9d\xa2\ \xe5\xe7\xea\xab\xa3\x9f\x9c\x9d\xa3\xa3\xa0\x9f\x95\x86\x81\xa6\ \xa7\xae\xb4\xb2\xb2\x91\x7c\x73\x94\x88\x82\x91\x80\x77\x9d\x92\ \x8d\x96\x84\x7b\x92\x7b\x6d\x93\x7e\x73\x93\x7b\x6f\x92\x7c\x73\ \x8e\x76\x69\x84\x68\x59\x8f\x73\x65\x83\x67\x58\x97\x84\x7b\x94\ \x7d\x71\x91\x77\x67\x87\x6b\x5e\x89\x6d\x59\x87\x6b\x59\x8b\x74\ \x68\xb5\xa7\xa0\xdb\xce\xc4\xd4\xca\xc1\xda\xdb\xdd\xa9\xa6\xa7\ \xa2\x99\x94\x7e\x6d\x63\x77\x69\x61\x71\x63\x59\x73\x64\x55\x8b\ \x7b\x71\x86\x75\x6c\x74\x62\x55\x73\x62\x55\x84\x70\x67\x86\x75\ \x6c\x78\x62\x52\x86\x72\x68\x8f\x7d\x70\x86\x71\x65\x7e\x69\x61\ \x7d\x69\x5e\x76\x65\x5d\x81\x75\x6c\x84\x75\x6a\x7d\x66\x58\x72\ \x60\x51\x6b\x59\x4d\x7c\x69\x5f\x90\x7c\x72\x9b\x7f\x6d\xae\x8c\ \x75\xec\xbc\x95\xec\xbf\x9c\xe7\xc2\xa3\xe5\xc3\xa5\xe6\xc2\xa2\ \xe6\xbf\x9f\xe7\xb9\x92\xe9\xb8\x8c\xe7\xbc\x96\xe7\xbe\x9c\xe7\ \xb9\x94\xe9\xb6\x8e\xf0\xab\x73\xf2\xa8\x6b\xf1\xab\x70\xec\xb3\ \x84\xe7\xba\x99\xe9\xb8\x92\xec\xb3\x87\xee\xb0\x80\xf1\xaf\x7b\ \xf4\xad\x76\xf5\xb0\x7b\xf5\xb4\x84\xcf\xa6\x88\x93\x7a\x6b\x9e\ \x86\x7a\x91\x7a\x70\x88\x67\x50\x91\x74\x62\x91\x75\x65\x8e\x75\ \x68\x9b\x7d\x6a\x9a\x81\x74\x95\x75\x63\x93\x78\x68\xae\x82\x65\ \xcb\x9f\x83\xf4\xb2\x81\xfc\xac\x6f\xfa\xab\x6f\xf8\xaa\x6e\xf4\ \xac\x74\xf1\xae\x7c\xec\xb5\x8a\xe2\xce\xbc\xe0\xd3\xc8\xdf\xcf\ \xc5\xe1\xd3\xc7\xe5\xdc\xd5\xe8\xe3\xde\xe8\xe4\xe1\xea\xe4\xe4\ \xed\xe9\xe9\xee\xea\xeb\xed\xeb\xeb\xee\xe9\xea\xed\xea\xeb\xed\ \xe8\xe9\xed\xe7\xe8\xed\xe7\xe8\xec\xe8\xe9\xed\xe7\xe8\xec\xe7\ \xe8\xeb\xe7\xe7\xe9\xe4\xe3\xe6\xe0\xdf\xe5\xdb\xd5\xe0\xd3\xc7\ \xe1\xd6\xca\xe2\xd9\xd0\xe4\xdb\xd3\xe4\xdc\xd7\xe4\xdb\xd5\xe6\ \xdd\xd9\xe8\xde\xda\xd8\xd5\xd6\xe1\xd5\xca\xcf\xcc\xd0\xb1\xab\ \xa6\xcb\xc4\xba\xcb\xc4\xc0\x81\x8b\x95\x76\x78\x73\x30\x4f\x5c\ \x2f\x42\x3d\x35\x46\x4c\x2a\x42\x44\x27\x3f\x3b\x31\x40\x38\x48\ \x53\x50\x25\x38\x3b\x1e\x37\x3e\x25\x3c\x30\x3d\x4d\x48\x35\x45\ \x48\x47\x4d\x43\x57\x58\x52\x71\x63\x50\x00\x00\x00\x9e\x91\x8e\ \xaa\xa6\xa6\xe9\xe8\xe7\xf4\xf0\xed\xd9\xd6\xd5\xc2\xc3\xc6\xab\ \xad\xaf\xa0\xa2\xa6\xa8\xaa\xae\xa3\x9f\xa0\xad\xb1\xb7\x9e\x97\ \x95\x8e\x79\x6d\x93\x83\x7d\x9c\x97\x96\x98\x8c\x86\x95\x80\x76\ \x88\x6f\x60\x90\x77\x6a\x8e\x76\x68\x9a\x85\x7c\x98\x7e\x6b\x8a\ \x74\x6d\x93\x7c\x70\x7e\x5b\x49\x8e\x7b\x73\x97\x81\x77\x8e\x72\ \x63\x84\x67\x57\x8b\x6f\x62\x88\x6b\x5d\x92\x7b\x6f\xc0\xb2\xac\ \xdd\xcd\xc4\xa7\x92\x86\x9d\x9d\xa0\xa4\x9e\x9b\xbe\xb9\xb7\x7d\ \x6d\x66\x81\x71\x69\x7e\x70\x66\x85\x74\x6e\x89\x77\x71\x86\x74\ \x6b\x78\x63\x55\x74\x61\x55\x77\x64\x5d\x86\x75\x6b\x7e\x6c\x63\ \x7f\x6e\x65\x80\x6e\x64\x7e\x6a\x5e\x7b\x65\x5b\x76\x61\x58\xa5\ \x92\x86\xae\x98\x89\xbf\x94\x72\xe5\xaf\x83\xcf\xa2\x7f\x96\x76\ \x61\xb6\x99\x85\xa3\x86\x75\xea\xb8\x90\xf7\xba\x8a\xef\xb8\x8a\ \xee\xb6\x88\xea\xba\x91\xe7\xbe\x9b\xe3\xc3\xa7\xe4\xc6\xae\xe4\ \xc4\xab\xe4\xc3\xa8\xe4\xc2\xa6\xe4\xc6\xac\xe4\xc5\xa9\xe7\xb8\ \x94\xf0\xab\x72\xf3\xa9\x6b\xf3\xa9\x6a\xf1\xab\x70\xea\xb8\x90\ \xe6\xbc\x9d\xe9\xb5\x8f\xee\xb0\x81\xf0\xae\x7c\xf3\xad\x78\xf7\ \xad\x71\xf6\xae\x73\xfb\xb7\x81\xda\xb4\x97\x9c\x83\x73\x8c\x6f\ \x5d\x88\x65\x51\x92\x73\x61\x95\x76\x64\x95\x76\x64\x93\x76\x65\ \x92\x6f\x5c\xac\x82\x68\xad\x82\x66\xe9\x9f\x6a\xfd\xab\x6e\xfa\ \xa9\x6c\xf7\xa9\x6c\xf7\xa8\x6b\xf7\xa7\x6b\xf6\xa7\x69\xf6\xa6\ \x6a\xf3\xa6\x6c\xee\xab\x78\xe4\xbb\x9a\xe3\xbc\xa0\xe3\xba\x9c\ \xe2\xc7\xaf\xe8\xe2\xdb\xe9\xe4\xe1\xe7\xe2\xde\xea\xe4\xe2\xea\ \xe4\xe5\xea\xe5\xe5\xed\xe7\xe8\xec\xe9\xe9\xed\xe9\xe9\xeb\xe8\ \xe8\xec\xe6\xe7\xec\xe8\xe8\xed\xea\xea\xee\xea\xeb\xec\xe8\xe9\ \xea\xe4\xe5\xe7\xe1\xe0\xe4\xdc\xd7\xe2\xd8\xcf\xe3\xd9\xce\xe3\ \xda\xd2\xe3\xda\xd1\xe4\xda\xd3\xe4\xdb\xd4\xe6\xde\xd8\xe7\xde\ \xda\xe6\xdd\xd9\xdc\xd8\xd5\x7d\x86\x95\x75\x6e\x61\xc3\xbb\xaa\ \xc6\xc2\xc4\x5c\x76\x8f\x34\x3e\x39\x4e\x5b\x59\x45\x57\x55\x4a\ \x5e\x5e\x28\x3f\x3c\x36\x45\x44\x3c\x48\x47\x4e\x4d\x46\x1b\x31\ \x33\x1d\x38\x39\x2c\x47\x45\x30\x40\x3d\x25\x3a\x37\x70\x62\x4d\ \xb2\x8d\x6e\xbd\xa4\x8a\x00\x00\x00\xdd\xda\xdb\xf8\xf3\xf0\xf0\ \xec\xe7\xf3\xee\xeb\xf6\xf2\xf0\xf6\xf4\xf3\xda\xd9\xd7\x9f\x9f\ \x9f\xac\xaf\xb5\xa0\xa3\xaa\xa8\xaa\xaf\x9e\x99\x96\x9d\x90\x89\ \x8e\x79\x6e\xa0\x9d\x9d\x99\x8c\x84\x94\x81\x76\x88\x6d\x5b\x8c\ \x6f\x63\x8d\x73\x65\x9d\x8b\x82\xa4\x91\x85\x94\x89\x85\x8a\x6e\ \x5f\x8c\x72\x64\x86\x6c\x60\x9d\x8a\x80\x9e\x87\x78\x91\x78\x6a\ \x8e\x73\x67\x89\x6c\x5c\x97\x82\x77\xce\xbe\xb7\xdd\xc9\xc0\xce\ \xbd\xb4\xd3\xd5\xd6\xbd\xb5\xac\xc7\xc2\xbd\x76\x6a\x61\x75\x66\ \x5d\x7d\x6d\x64\x7e\x6b\x63\x86\x71\x68\x83\x71\x67\x86\x74\x6a\ \x7f\x6a\x5e\x70\x5d\x4e\x90\x80\x77\x76\x65\x5a\x7b\x6a\x61\x7e\ \x6b\x61\x7b\x67\x5b\x7a\x65\x5b\xa6\x8d\x7a\xef\xc4\xa1\xef\xb5\ \x88\xf8\xb9\x86\xf4\xbb\x8c\xf2\xc2\x9b\xf4\xc8\xa2\xea\xbe\x9c\ \xd6\xa7\x85\xee\xb7\x88\xf0\xb8\x87\xeb\xbb\x93\xea\xba\x91\xe7\ \xbd\x97\xe6\xbd\x99\xe4\xc0\x9f\xe2\xc7\xae\xe1\xc9\xb4\xe1\xc8\ \xb2\xe1\xc7\xb2\xe1\xcc\xb7\xe2\xc6\xaf\xed\xac\x7a\xf2\xa9\x6d\ \xf3\xa8\x6a\xf5\xa7\x69\xf5\xa7\x6a\xed\xaf\x7f\xe7\xb9\x95\xe9\ \xb5\x90\xec\xb2\x86\xf0\xae\x7d\xf1\xad\x79\xf6\xa9\x70\xf8\xaa\ \x70\xf6\xae\x77\xf4\xbd\x94\xce\xa3\x84\xa1\x7d\x67\x87\x69\x58\ \x91\x73\x61\x94\x76\x63\x94\x75\x65\x9e\x76\x5e\xba\x81\x5d\xf3\ \xa6\x6f\xfb\xad\x71\xfb\xab\x6e\xf9\xa9\x6c\xf7\xa8\x69\xf8\xa7\ \x68\xf7\xa6\x68\xf7\xa6\x68\xf7\xa6\x68\xf6\xa5\x68\xf5\xa4\x66\ \xf4\xa3\x66\xf0\xa8\x71\xee\xa8\x75\xef\xa5\x6d\xea\xb0\x81\xe4\ \xd6\xc8\xe6\xe0\xdb\xe8\xe2\xdf\xe9\xe2\xe0\xe7\xe2\xe1\xe5\xe0\ \xdc\xe7\xe1\xdf\xe7\xe1\xdf\xe7\xe1\xdf\xe7\xe1\xe0\xe7\xe1\xe0\ \xe8\xe3\xe3\xeb\xe6\xe6\xed\xe8\xe9\xec\xe6\xe8\xeb\xe5\xe6\xe9\ \xe3\xe3\xe7\xe2\xde\xe6\xdf\xda\xe5\xdd\xd7\xe5\xdd\xd6\xe3\xd9\ \xd2\xe1\xd7\xce\xe4\xd9\xd1\xe5\xdd\xd7\xe7\xdd\xd9\xe3\xda\xd5\ \xd9\xd1\xcc\xaf\xb3\xb8\x4f\x5f\x66\x51\x5a\x50\x42\x4c\x4f\x43\ \x57\x5d\x31\x40\x3c\x3f\x4e\x51\x3d\x4d\x4c\x49\x5a\x5f\x20\x34\ \x35\x3e\x4e\x4c\x24\x37\x40\x2c\x3c\x3b\x2e\x48\x46\x3e\x4f\x4c\ \x66\x6c\x63\x4b\x56\x56\x34\x40\x3f\x2a\x33\x33\x6a\x57\x41\x7e\ \x7a\x78\x00\x00\x00\xf1\xed\xeb\xf4\xef\xec\xf2\xed\xea\xf4\xef\ \xec\xf3\xee\xec\xf5\xf1\xef\xf1\xea\xe6\x9d\x9c\x9a\x97\x91\x91\ \x97\x96\x9d\x9d\x99\x9b\x92\x8b\x8b\x9d\x91\x88\x87\x72\x69\x99\ \x92\x8f\x91\x7f\x76\x91\x7b\x71\x95\x80\x73\x8a\x6e\x5e\x92\x7e\ \x75\xa6\x9c\x98\xac\xa6\xa6\xa1\x9d\x9a\x91\x78\x6b\x8f\x77\x6c\ \x8d\x7a\x73\xb6\xae\xab\xe0\xdb\xd3\xd4\xca\xbf\x92\x7d\x70\x8b\ \x6d\x5e\x9a\x88\x7e\xd4\xc4\xbb\xde\xcc\xc1\xdc\xcc\xc2\xe1\xd8\ \xd3\xdf\xd8\xce\xc8\xbc\xb1\x7c\x6c\x61\x68\x5a\x50\x80\x74\x6c\ \x7d\x6a\x62\x84\x72\x69\x85\x74\x67\x89\x78\x70\x8d\x7c\x73\x7e\ \x6a\x5f\x87\x76\x6c\x7c\x6c\x61\x71\x61\x56\x83\x71\x6a\x76\x61\ \x58\x78\x62\x56\xe5\xd0\xb9\xf0\xc7\xa1\xf5\xb9\x87\xf5\xb5\x81\ \xf0\xb7\x86\xea\xc3\xa1\xe7\xcb\xaf\xea\xc3\xa2\xf0\xb9\x8b\xf1\ \xb2\x7f\xec\xb8\x8c\xe7\xc0\x9e\xe5\xc3\xa3\xe5\xc0\x9e\xe6\xbf\ \x9d\xe4\xc3\xa4\xe2\xca\xb3\xe0\xcb\xb7\xe0\xc7\xb0\xe1\xc8\xb0\ \xe2\xc3\xac\xe6\xb9\x96\xf2\xa7\x6c\xf4\xa7\x69\xf4\xa7\x69\xf6\ \xa6\x69\xf6\xa6\x68\xf3\xa8\x6d\xef\xad\x79\xef\xac\x7a\xf1\xaa\ \x75\xf4\xa7\x6d\xf5\xa7\x6c\xf6\xa8\x6c\xf6\xa8\x6d\xf7\xaa\x6f\ \xf0\xb5\x8b\xf3\xb7\x8c\xe8\xa5\x72\xb8\x89\x6c\x91\x75\x65\x8a\ \x6f\x5f\x9a\x72\x58\xe5\x9e\x6a\xf2\xa6\x6f\xfc\xab\x6f\xf9\xa9\ \x6c\xf8\xa8\x6c\xf6\xa6\x6a\xf7\xa5\x67\xf6\xa5\x66\xf7\xa5\x67\ \xf5\xa4\x67\xf6\xa4\x67\xf6\xa5\x68\xf5\xa3\x66\xf5\xa4\x68\xf4\ \xa3\x66\xf4\xa2\x64\xf4\xa1\x64\xf3\xa3\x69\xec\xb0\x7f\xe4\xc2\ \xa6\xe1\xcb\xb9\xe1\xd2\xc7\xe0\xc7\xb9\xe2\xc6\xb1\xe0\xce\xc1\ \xe0\xd4\xca\xe1\xd8\xd1\xe1\xd9\xd1\xe3\xda\xd5\xe5\xdc\xd9\xe6\ \xe0\xdd\xea\xe4\xe2\xeb\xe5\xe5\xea\xe4\xe6\xe9\xe3\xe5\xe8\xe3\ \xe1\xe8\xe3\xe1\xe7\xe2\xdf\xe5\xdf\xdc\xe2\xd8\xd4\xe2\xd6\xcd\ \xe4\xda\xd1\xe5\xdb\xd5\xe2\xd8\xd3\xe2\xd6\xce\xdb\xcb\xc3\x95\ \x94\x9a\x51\x5e\x62\x1a\x30\x2f\x20\x31\x2b\x39\x45\x40\x31\x3c\ \x36\x43\x55\x53\x44\x56\x58\x2c\x40\x4a\x22\x33\x31\x4e\x56\x4f\ \x3a\x4f\x57\x2e\x42\x43\x36\x52\x55\x4f\x5e\x60\x59\x60\x5f\x2c\ \x3f\x48\x3e\x40\x37\x2d\x3b\x40\x4b\x46\x34\x8f\x7d\x6b\x00\x00\ \x00\xf1\xeb\xe8\xf3\xee\xea\xf3\xed\xed\xf5\xef\xee\xf3\xee\xee\ \xf4\xef\xee\xf8\xf5\xf2\xaa\x9e\x94\x87\x7b\x7d\x90\x8f\x96\xa1\ \x9e\x9d\x90\x8a\x8b\xa2\x94\x8b\x86\x70\x6b\x9b\x93\x92\x8d\x77\ \x6b\x8e\x77\x67\x86\x6a\x5b\x8a\x70\x63\xa2\x9d\xa3\xb1\xb0\xaf\ \x9f\x9c\x9e\xa9\xa8\xa9\xa6\x97\x8f\x90\x7d\x75\x94\x89\x88\x97\ \x8a\x88\xdf\xdf\xe3\xfe\xfe\xfc\xc6\xbc\xb4\x8d\x6c\x5d\xa2\x8f\ \x87\xe1\xd1\xc8\xde\xcd\xc2\xdd\xca\xc1\xdc\xcd\xc4\xdd\xce\xc5\ \xde\xd3\xc8\xa7\x96\x8c\xa5\x9e\x9c\xed\xec\xea\x98\x8c\x84\x7c\ \x6b\x64\x85\x72\x68\x84\x74\x6d\x8e\x7e\x78\x86\x71\x6a\x84\x71\ \x68\x80\x6d\x60\x7a\x69\x5e\x7c\x6a\x63\x70\x5c\x4d\xd9\xca\xbb\ \xe9\xdd\xcd\xe9\xcc\xb1\xef\xba\x8d\xf0\xb4\x83\xed\xb8\x8b\xe8\ \xc3\xa1\xe3\xcf\xba\xe5\xcd\xb5\xe8\xc0\x9c\xec\xb6\x88\xe7\xbe\ \x99\xe4\xc7\xab\xe3\xce\xb8\xe4\xce\xb8\xe4\xd1\xbc\xe4\xd3\xc3\ \xe2\xd3\xc1\xe1\xd0\xbd\xe2\xc5\xad\xe3\xc1\xa7\xe6\xba\x9b\xec\ \xaf\x7f\xf0\xa9\x75\xf3\xa6\x6a\xf5\xa7\x69\xf6\xa6\x6b\xf6\xa7\ \x68\xf5\xa5\x68\xf5\xa6\x69\xf5\xa6\x68\xf5\xa5\x67\xf6\xa5\x68\ \xf6\xa6\x68\xf6\xa7\x6a\xf6\xa7\x6b\xf7\xa6\x6d\xf5\xab\x74\xf5\ \xae\x7a\xf8\xab\x72\xf4\xa9\x6f\xd7\x9d\x76\xa9\x84\x6f\xd8\x94\ \x64\xfa\xab\x6d\xf9\xaa\x6d\xf9\xa8\x6b\xf8\xa6\x69\xf7\xa6\x69\ \xf7\xa5\x68\xf7\xa5\x67\xf6\xa4\x67\xf7\xa4\x66\xf6\xa4\x65\xf6\ \xa3\x65\xf6\xa3\x65\xf4\xa3\x66\xf5\xa3\x66\xf5\xa2\x65\xf5\xa2\ \x65\xf4\xa2\x64\xf4\xa1\x64\xf3\xa0\x63\xf1\xa4\x6b\xec\xa9\x77\ \xeb\xa9\x7a\xed\xa7\x75\xec\xa8\x77\xe5\xb5\x91\xe2\xbd\xa1\xdf\ \xc5\xb2\xde\xcd\xbf\xe2\xd5\xce\xe5\xdb\xd4\xe4\xdc\xd8\xe5\xe0\ \xdb\xe6\xe1\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xdf\xe8\xe3\xe1\ \xe6\xe0\xde\xe7\xde\xdb\xe1\xd9\xd2\xe2\xd5\xcd\xe4\xd8\xd0\xe4\ \xd9\xd0\xe1\xce\xc7\xe0\xca\xbf\x96\x8d\x90\x74\x74\x77\x50\x54\ \x4e\x21\x35\x35\x22\x35\x32\x2b\x38\x32\x3f\x55\x52\x39\x55\x54\ \x4c\x60\x66\x36\x4c\x66\x18\x24\x2e\x2b\x3a\x32\x3d\x52\x52\x29\ \x43\x40\x43\x52\x48\x8f\x8d\x7f\x5d\x72\x7c\x53\x62\x63\x2e\x3c\ \x3c\x22\x2d\x2b\x24\x31\x30\x6a\x5b\x40\x00\x00\x00\xed\xe8\xe5\ \xf1\xec\xeb\xf4\xef\xed\xf3\xef\xee\xf3\xef\xee\xf4\xef\xee\xf3\ \xf0\xf0\xf5\xf2\xed\xb2\xa7\x9e\xc4\xc6\xc9\xb3\xb5\xba\x94\x85\ \x7d\x8f\x80\x7a\x9f\x94\x90\xb8\xad\xa5\x9c\x8e\x85\x96\x82\x76\ \x8c\x70\x61\x87\x6f\x67\x9b\x93\x97\xca\xce\xd4\xbc\xbb\xba\xca\ \xcc\xd0\xf7\xf6\xf6\xdf\xde\xdc\xcf\xca\xc6\xb4\xad\xa7\xe6\xe8\ \xe9\xdd\xde\xe0\x9b\x91\x8d\x90\x74\x67\xd0\xc0\xb9\xe0\xcd\xc3\ \xde\xcc\xc0\xdd\xc9\xc1\xb2\xa0\x97\xd4\xc8\xc1\xe9\xe6\xe3\xfc\ \xfc\xfc\xfe\xfe\xfe\xf8\xf8\xf8\xe9\xe8\xe3\x81\x74\x6f\x7c\x6b\ \x5f\x7e\x6a\x60\x84\x71\x69\x82\x6c\x60\x7e\x69\x5f\x81\x6c\x60\ \x7f\x6b\x5e\x70\x5b\x4e\xd7\xcc\xc1\xea\xe1\xd7\xe6\xdb\xcc\xe7\ \xcc\xb1\xe8\xc0\x9a\xeb\xb8\x8d\xeb\xb7\x8a\xe4\xc6\xab\xe1\xce\ \xbb\xe1\xcc\xb7\xe3\xcc\xb5\xe3\xce\xb7\xe3\xcf\xbb\xe4\xd5\xc4\ \xe5\xd8\xcc\xe6\xd9\xcd\xe5\xdb\xd0\xe7\xdb\xd1\xe4\xd8\xce\xe2\ \xd3\xc2\xe1\xc9\xb2\xe3\xc2\xa7\xe5\xbd\x9e\xec\xb0\x82\xee\xad\ \x7c\xf0\xa9\x73\xf4\xa6\x6a\xf6\xa6\x69\xf5\xa6\x68\xf6\xa6\x6b\ \xf5\xa5\x69\xf5\xa4\x65\xf5\xa4\x65\xf4\xa4\x66\xf6\xa5\x67\xf5\ \xa6\x69\xf6\xa5\x68\xf5\xa6\x6b\xf5\xa6\x6a\xf7\xa6\x69\xf7\xa8\ \x6a\xf8\xa8\x6b\xf8\xa8\x6c\xf8\xa8\x6d\xf8\xa8\x6b\xfa\xa7\x6a\ \xfa\xa7\x69\xf7\xa5\x68\xf8\xa5\x68\xf7\xa4\x66\xf7\xa3\x69\xf6\ \xa3\x65\xf5\xa3\x63\xf6\xa4\x64\xf6\xa3\x63\xf6\xa3\x64\xf5\xa2\ \x64\xf5\xa3\x66\xf5\xa3\x65\xf5\xa2\x64\xf4\xa1\x63\xf6\xa2\x63\ \xf6\xa2\x64\xf5\xa2\x64\xf6\xa1\x63\xf6\xa0\x63\xf4\xa0\x64\xf2\ \xa1\x64\xf4\xa0\x63\xf1\xa2\x6b\xee\xa5\x70\xe9\xae\x83\xe3\xc5\ \xaa\xe1\xd6\xcc\xe3\xda\xd1\xe3\xdb\xd4\xe6\xdd\xd8\xe5\xde\xd8\ \xe5\xde\xdb\xe5\xdf\xdb\xe5\xde\xdb\xe4\xdf\xda\xe6\xde\xd9\xe4\ \xdb\xd5\xe2\xd8\xd1\xe1\xd2\xcc\xd9\xcb\xc5\xd5\xc6\xba\xe4\xc8\ \xba\xdd\xbe\xab\x4c\x56\x69\x5b\x63\x64\x32\x41\x40\x23\x39\x32\ \x38\x44\x39\x35\x40\x3d\x34\x4e\x4e\x33\x50\x52\x3c\x56\x59\x40\ \x53\x60\x29\x3f\x45\x3c\x4b\x46\x8b\x85\x7d\x60\x6b\x72\x79\x77\ \x66\x83\x7f\x7a\x6f\x7b\x7e\x40\x54\x5d\x1f\x31\x2f\x2f\x39\x38\ \x3a\x49\x4d\x3f\x48\x45\x00\x00\x00\xee\xe8\xe6\xf3\xee\xee\xf3\ \xf0\xf0\xf3\xee\xee\xf3\xef\xee\xf3\xf0\xf0\xf3\xf1\xf1\xf5\xf3\ \xf3\xfa\xf9\xfa\xf5\xf4\xf2\xc1\xbe\xba\x8d\x77\x66\x82\x69\x5e\ \x9c\x93\x96\xd7\xd5\xd5\xdf\xda\xd4\xbe\xaf\xa1\x97\x7f\x6f\x91\ \x78\x6e\x94\x8b\x89\x9b\x9c\xa5\xa1\xa1\xa8\xc0\xc3\xca\xf5\xf6\ \xf8\xf2\xf2\xf2\xf0\xf0\xf0\xd6\xd5\xd7\xd6\xd6\xda\xdf\xdb\xd8\ \xa6\x98\x93\x91\x77\x6a\x9e\x88\x7e\xc3\xb1\xa9\xc0\xae\xa7\xaf\ \x99\x8d\x8a\x69\x59\x8e\x7a\x70\x9d\x8f\x8b\xae\xaa\xac\xd9\xd8\ \xda\xe2\xe2\xe3\xd9\xdd\xde\x8a\x80\x78\x6b\x5b\x52\x7c\x6a\x61\ \x80\x6f\x66\x80\x69\x5b\x7e\x69\x5b\x7d\x6b\x63\x7b\x68\x5e\x8a\ \x77\x6d\xe8\xde\xd4\xeb\xe2\xd9\xe8\xdc\xd1\xe5\xcd\xb5\xe6\xc2\ \xa2\xe6\xbf\x9a\xe7\xbf\x97\xe4\xc7\xac\xe1\xce\xba\xe1\xd0\xbc\ \xe2\xd1\xbf\xe4\xd7\xc7\xe6\xda\xd1\xe6\xda\xd1\xe6\xdd\xd4\xe8\ \xe0\xd8\xe8\xe1\xd8\xe7\xdf\xd6\xe5\xda\xd2\xe3\xd5\xc6\xe1\xce\ \xb9\xe3\xc6\xad\xe5\xbf\xa1\xe8\xb9\x93\xeb\xb1\x81\xef\xab\x76\ \xf2\xa8\x6c\xf5\xa6\x69\xf4\xa5\x67\xf5\xa5\x68\xf5\xa4\x65\xf6\ \xa4\x66\xf5\xa4\x66\xf4\xa4\x66\xf6\xa5\x66\xf5\xa4\x65\xf6\xa4\ \x66\xf6\xa5\x67\xf7\xa4\x66\xf7\xa4\x66\xf7\xa5\x68\xf7\xa5\x68\ \xf8\xa6\x69\xf8\xa6\x69\xf8\xa5\x68\xf8\xa5\x67\xf8\xa5\x67\xf9\ \xa4\x65\xf7\xa4\x65\xf7\xa4\x65\xf7\xa3\x66\xf8\xa3\x65\xf7\xa2\ \x65\xf8\xa2\x65\xf8\xa2\x65\xf8\xa2\x65\xf8\xa4\x63\xf7\xa1\x65\ \xf7\xa1\x64\xf7\xa1\x64\xf7\xa2\x63\xf7\xa3\x64\xf6\xa1\x63\xf7\ \xa1\x63\xf6\xa0\x63\xf6\xa1\x62\xf6\xa0\x62\xf6\x9f\x61\xf7\xa0\ \x61\xf7\x9f\x60\xf6\x9d\x5e\xed\xae\x79\xe2\xc5\xac\xdf\xcf\xbf\ \xdf\xd2\xc7\xdf\xd0\xc5\xe0\xd2\xc7\xe1\xd8\xd0\xe4\xda\xd6\xe5\ \xdb\xd7\xe5\xdc\xd7\xe4\xdb\xd5\xe3\xd8\xd3\xe0\xd2\xcc\xce\xc0\ \xba\xde\xce\xc5\xb8\xad\xa9\x7d\x76\x71\x80\x6e\x63\xb9\x87\x67\ \x45\x56\x61\x3c\x4d\x4b\x37\x51\x5c\x2c\x44\x45\x23\x3a\x36\x32\ \x46\x48\x22\x3d\x3a\x33\x45\x4a\x3a\x50\x55\x39\x4a\x52\x3a\x53\ \x54\x38\x49\x48\x72\x71\x68\x46\x55\x5b\x66\x65\x5c\x2f\x42\x4f\ \x1d\x33\x32\x20\x2c\x27\x19\x2a\x26\x1c\x29\x24\x3d\x48\x45\x48\ \x4e\x47\x00\x00\x00\xed\xe6\xe2\xf2\xef\xef\xf3\xf1\xf0\xf4\xef\ \xee\xf3\xef\xed\xf2\xef\xef\xf3\xf1\xf1\xf5\xf3\xf3\xf6\xf4\xf4\ \xf9\xf8\xf8\xf4\xf2\xef\xc0\xae\x9d\x8d\x74\x63\x9b\x85\x79\xa9\ \x9d\x96\xae\xa4\x9d\xb7\xaa\xa1\xbd\xb0\xa6\xae\xa3\x9e\x90\x83\ \x82\xa4\xa5\xab\xa1\x9e\xa1\x8e\x86\x88\xb4\xb1\xb7\x9b\x93\x90\ \x9b\x91\x90\x9a\x90\x8d\x93\x89\x89\xd9\xd6\xd8\xcc\xc5\xc1\x9a\ \x82\x72\x97\x7b\x69\x9b\x83\x76\xa4\x8d\x83\x93\x78\x69\x8e\x70\ \x62\x95\x7a\x6c\x98\x85\x7d\x9e\x8b\x83\x98\x89\x86\x93\x87\x86\ \xa5\xa6\xaa\xa2\x9a\x95\x82\x73\x6b\x84\x75\x6d\x82\x72\x6b\x7e\ \x68\x5b\x7b\x67\x5c\x7a\x64\x5a\xa6\x95\x8c\xd9\xcd\xc1\xe9\xe0\ \xd6\xe9\xe0\xd7\xe6\xd6\xc7\xe3\xc7\xae\xe4\xc4\xa5\xe5\xc2\xa3\ \xe4\xc4\xa8\xe2\xce\xb7\xe2\xd3\xbf\xe3\xd6\xc6\xe5\xd7\xca\xe4\ \xd9\xcf\xe5\xdb\xd2\xe5\xdc\xd3\xe7\xdf\xd7\xe8\xe0\xda\xe9\xe1\ \xd9\xe6\xdf\xd8\xe7\xde\xd5\xe4\xd9\xcd\xe1\xd1\xbf\xe1\xc8\xaf\ \xe3\xc3\xab\xe4\xc3\xa6\xe6\xbc\x9a\xec\xb3\x87\xf1\xaa\x72\xf5\ \xa5\x69\xf5\xa5\x67\xf5\xa4\x67\xf6\xa3\x66\xf5\xa4\x65\xf7\xa3\ \x65\xf5\xa3\x67\xf5\xa4\x66\xf5\xa5\x66\xf5\xa3\x66\xf6\xa4\x66\ \xf7\xa4\x67\xf6\xa3\x65\xf7\xa5\x67\xf7\xa4\x66\xf7\xa4\x67\xf7\ \xa4\x67\xf6\xa4\x67\xf8\xa4\x67\xf7\xa3\x66\xf9\xa4\x66\xf8\xa3\ \x65\xf8\xa3\x65\xf7\xa2\x64\xf6\xa1\x63\xf7\xa0\x64\xf7\xa1\x64\ \xf8\xa2\x63\xf8\xa2\x63\xf7\xa2\x64\xf8\xa1\x64\xf7\xa2\x65\xf7\ \xa2\x64\xf7\xa2\x64\xf7\xa2\x65\xf7\xa1\x63\xf7\xa0\x64\xf6\xa0\ \x62\xf6\x9f\x63\xf6\x9e\x62\xf6\x9f\x60\xf7\x9f\x60\xf6\x9d\x5e\ \xf6\x9d\x5d\xf1\xa8\x70\xe6\xba\x9a\xe0\xc3\xae\xe1\xc2\xae\xe1\ \xc0\xa9\xe2\xba\x9e\xe1\xc3\xac\xe0\xca\xba\xdf\xcb\xc0\xe1\xc8\ \xb6\xe1\xce\xbe\xdf\xcc\xc0\xe3\xcd\xbf\xc3\xa8\x9a\xb8\xa5\x98\ \x93\x82\x77\xc3\x9b\x80\x78\x74\x77\x42\x45\x3b\x55\x54\x47\x5a\ \x53\x45\x45\x57\x5e\x3d\x52\x54\x26\x45\x45\x25\x3c\x36\x2b\x48\ \x47\x33\x44\x44\x36\x4d\x51\x3c\x4e\x51\x3a\x4d\x50\x39\x49\x51\ \x3a\x4a\x46\x3b\x4c\x59\x3d\x48\x48\x29\x3d\x3a\x23\x3a\x37\x28\ \x32\x2e\x3c\x3e\x37\x5d\x5b\x4d\x71\x76\x6b\x88\x7f\x71\x00\x00\ \x00\xf2\xef\xee\xf3\xf1\xf0\xf3\xef\xed\xf3\xef\xec\xf2\xed\xeb\ \xf3\xee\xec\xf3\xef\xee\xf4\xf2\xf2\xf7\xf5\xf5\xf7\xf6\xf6\xf9\ \xfa\xfb\xf7\xf3\xe9\x93\x7c\x6e\xa9\x9b\x93\xa1\x91\x88\xb1\xa5\ \x9c\xa2\x8b\x7d\xa2\x99\x96\xb1\xb5\xbd\xad\xaa\xad\xad\xb2\xb8\ \xa7\xa6\xa8\x91\x7d\x76\x8f\x80\x7f\x9d\x8d\x87\x95\x89\x88\x9b\ \x8b\x83\x91\x7f\x7a\xa1\x8f\x88\xa0\x8c\x82\x9b\x80\x6f\x99\x7b\ \x69\x9c\x83\x76\xae\x99\x8d\x92\x74\x62\x94\x78\x69\x9e\x8b\x84\ \xa6\x9f\x9b\x9f\x8f\x87\xa1\x92\x8e\xa3\x95\x8f\x94\x8a\x89\xa7\ \xa4\xa4\x9e\x93\x8f\x7d\x6b\x64\x75\x65\x5d\x73\x61\x57\x7a\x67\ \x5d\x8b\x7a\x71\xc9\xbd\xb4\xee\xe6\xdd\xe7\xde\xd4\xe7\xdc\xd1\ \xe3\xcf\xbb\xe3\xc2\xa3\xe4\xc1\xa1\xe4\xc1\xa3\xe2\xc6\xac\xe2\ \xd3\xc1\xe5\xd7\xc9\xe5\xda\xcf\xe6\xdb\xd2\xe6\xdc\xd3\xe5\xdb\ \xd2\xe6\xdd\xd4\xe7\xdf\xd7\xe7\xe0\xd8\xe6\xdf\xd8\xe6\xdc\xd7\ \xe6\xdd\xd4\xe4\xd8\xcd\xe1\xd2\xc2\xe0\xca\xb5\xe2\xc6\xb1\xe1\ \xc5\xad\xe5\xbb\x9c\xe9\xb4\x8c\xf0\xac\x79\xf5\xa5\x6a\xf5\xa4\ \x67\xf5\xa4\x67\xf6\xa3\x65\xf6\xa4\x65\xf6\xa3\x65\xf5\xa4\x67\ \xf5\xa4\x68\xf4\xa4\x68\xf5\xa4\x67\xf5\xa4\x66\xf6\xa3\x65\xf6\ \xa3\x65\xf4\xa4\x67\xf6\xa4\x66\xf6\xa3\x65\xf8\xa4\x66\xf9\xa3\ \x66\xf8\xa2\x65\xf7\xa3\x66\xf8\xa2\x65\xf7\xa2\x64\xf7\xa2\x64\ \xf7\xa2\x63\xf7\xa2\x64\xf8\xa2\x64\xf7\xa2\x62\xf7\xa2\x62\xf7\ \xa1\x63\xf6\xa1\x63\xf7\xa1\x62\xf7\xa1\x65\xf7\xa1\x63\xf7\xa1\ \x62\xf8\xa1\x64\xf8\xa1\x63\xf7\xa0\x62\xf6\x9f\x61\xf6\xa0\x60\ \xf6\x9e\x61\xf6\x9e\x60\xf6\x9e\x5e\xf5\x9d\x5e\xf6\x9d\x5e\xf4\ \x9f\x60\xf1\xa1\x6b\xeb\xad\x82\xe7\xb4\x90\xe7\xb1\x8c\xec\xa7\ \x78\xed\xa6\x72\xec\xac\x80\xe9\xac\x86\xee\xa8\x78\xec\xaf\x86\ \xe9\xb7\x95\xea\xb6\x95\xf0\xb0\x88\x81\x70\x62\x4e\x45\x36\x92\ \x72\x58\x47\x4d\x55\x34\x40\x3a\x56\x56\x4c\x5f\x52\x43\x5f\x65\ \x62\x54\x5e\x5a\x34\x51\x58\x24\x3e\x3b\x2d\x45\x41\x2f\x43\x43\ \x42\x50\x55\x45\x51\x55\x2e\x43\x48\x39\x45\x44\x4b\x55\x4f\x55\ \x5d\x5d\x4b\x56\x50\x46\x59\x58\x3f\x4c\x3b\x81\x7d\x6c\xa9\x9d\ \x8d\xcf\xc1\xad\xb3\xb4\xb5\x91\x84\x7b\x00\x00\x00\xf4\xf2\xf3\ \xf4\xf1\xf0\xf2\xee\xeb\xf3\xee\xeb\xf2\xed\xea\xf2\xee\xea\xf3\ \xee\xeb\xf3\xef\xee\xf5\xf3\xf3\xf6\xf5\xf5\xf7\xf7\xf7\xf9\xf9\ \xf8\xc8\xb9\xab\x92\x77\x65\x86\x6c\x60\x8a\x71\x66\x89\x6f\x64\ \xae\xa6\xa3\x90\x87\x86\x95\x95\x9b\xa6\xa5\xaa\xa0\x9b\x9e\x98\ \x89\x82\x9d\x93\x91\x90\x77\x6c\x94\x89\x8a\xa8\x9b\x96\x97\x85\ \x81\x95\x7b\x6e\x95\x77\x66\x9a\x7e\x6c\x99\x7a\x68\x95\x79\x6b\ \x95\x7a\x69\x8f\x6f\x5b\x97\x7c\x6b\x9d\x8c\x84\xb2\xb1\xb3\xae\ \xa6\xa2\x9b\x88\x80\xae\xaa\xa8\x92\x85\x7f\xa0\x9c\x9b\x9d\x91\ \x8e\x81\x70\x68\x71\x61\x57\x6f\x5e\x53\x74\x60\x58\x91\x85\x7f\ \xd5\xcd\xc5\xea\xe2\xd8\xe7\xdc\xd2\xe5\xd9\xcc\xe3\xcf\xb9\xe5\ \xbf\x9a\xe6\xba\x92\xe4\xc0\x9f\xe1\xc5\xab\xe3\xd4\xc3\xe6\xdb\ \xd2\xe8\xde\xd5\xe7\xdf\xd6\xe6\xdd\xd4\xe7\xde\xd4\xe5\xdd\xd6\ \xe6\xde\xd6\xe7\xdf\xd7\xe6\xde\xd5\xe6\xdd\xd3\xe5\xda\xd2\xe2\ \xd6\xca\xe0\xd1\xbf\xdf\xca\xb6\xe2\xc8\xb2\xe2\xc6\xae\xe9\xb6\ \x91\xee\xab\x78\xee\xae\x7b\xf2\xa8\x6f\xf4\xa5\x69\xf5\xa4\x67\ \xf5\xa3\x66\xf6\xa2\x65\xf6\xa3\x65\xf5\xa4\x65\xf5\xa5\x68\xf5\ \xa5\x68\xf5\xa5\x69\xf5\xa4\x69\xf6\xa3\x67\xf6\xa2\x64\xf5\xa3\ \x65\xf5\xa3\x65\xf7\xa3\x66\xf8\xa3\x65\xf8\xa3\x65\xf7\xa2\x66\ \xf7\xa2\x65\xf7\xa2\x63\xf6\xa2\x62\xf7\xa2\x62\xf7\xa3\x64\xf7\ \xa2\x61\xf7\xa2\x62\xf7\xa1\x62\xf7\xa2\x62\xf7\xa1\x62\xf7\xa1\ \x62\xf6\xa1\x60\xf7\xa0\x62\xf7\xa1\x61\xf7\xa1\x60\xf8\xa1\x62\ \xf8\xa1\x63\xf6\x9f\x60\xf7\x9f\x60\xf6\x9f\x60\xf6\x9f\x5f\xf6\ \x9d\x60\xf6\x9d\x5f\xf5\x9d\x5f\xf5\x9d\x5d\xf5\x9c\x5d\xf5\x9c\ \x5d\xf4\x9d\x5e\xf1\xa0\x65\xf0\xa2\x6a\xf3\x9e\x61\xf5\x9d\x5c\ \xf3\xa1\x68\xf2\xa2\x6b\xf4\xa2\x6a\xf5\xa4\x6b\xf4\xa4\x6d\xf7\ \xa7\x6f\xe2\x95\x64\xaa\x88\x6d\x49\x50\x4a\x59\x51\x44\x37\x45\ \x4e\x40\x47\x3f\x62\x57\x49\x51\x53\x47\x6a\x6a\x65\x4d\x56\x54\ \x37\x51\x51\x29\x49\x43\x26\x3f\x3b\x49\x5a\x55\x59\x5c\x5d\x45\ \x52\x5a\x53\x5a\x56\x52\x5c\x57\x8d\x84\x73\xb1\xa7\x9e\x94\x8b\ \x88\xa5\xa7\xa8\x6a\x5f\x49\x88\x8f\x94\xc3\xaa\x8d\xd7\xcc\xc2\ \xd7\xd1\xcf\x59\x5e\x72\x00\x00\x00\xf4\xf2\xf2\xf4\xf2\xf2\xf3\ \xee\xed\xf2\xed\xea\xf1\xec\xe9\xf1\xec\xe9\xf1\xec\xe9\xf3\xee\ \xeb\xf2\xef\xf0\xf5\xf4\xf4\xf6\xf5\xf5\xf7\xf7\xf7\xf7\xf6\xf6\ \xf2\xf0\xed\xb9\xa6\x96\x9b\x87\x7b\xba\xb1\xa9\xb9\xbb\xbe\x9c\ \x96\x95\xa7\xa3\xa5\xa3\xa0\xa2\xa6\xa0\xa1\xab\xa7\xa6\xaa\xa8\ \xa9\x8d\x77\x6b\x94\x86\x84\x9c\x94\x94\x95\x84\x81\x98\x80\x73\ \x97\x7b\x6c\x9a\x7e\x69\x97\x7c\x6a\xa5\x8f\x84\xa0\x89\x7a\xb4\ \xad\xab\xa3\x92\x88\x9c\x86\x7a\x9b\x8a\x81\xaa\x9e\x9b\xa1\x8f\ \x82\xa0\x96\x93\x94\x84\x7a\xa1\x9f\xa1\x9d\x90\x8b\x9f\x99\x95\ \x82\x77\x70\x7d\x6b\x5f\x79\x66\x5a\x91\x84\x7c\xe0\xd8\xcf\xe9\ \xe0\xd7\xe6\xdc\xd2\xe3\xd7\xcd\xe2\xd3\xc1\xe3\xc6\xaa\xe5\xbc\ \x96\xe3\xbe\x9c\xe1\xc8\xae\xe3\xd7\xc8\xe7\xde\xd5\xe8\xdf\xda\ \xe9\xe0\xda\xe9\xe0\xd9\xe7\xdf\xd8\xe7\xdf\xd7\xe7\xdf\xd9\xe6\ \xdf\xd7\xe6\xde\xd5\xe6\xdb\xd3\xe3\xd7\xcd\xe0\xd4\xc9\xdf\xcf\ \xbe\xe1\xc8\xb1\xe1\xc8\xb3\xe2\xbf\xa4\xe8\xb6\x91\xef\xab\x74\ \xee\xac\x78\xee\xb0\x80\xf1\xa9\x72\xf4\xa5\x6a\xf6\xa4\x67\xf6\ \xa3\x65\xf6\xa2\x65\xf5\xa2\x65\xf6\xa4\x67\xf5\xa4\x67\xf4\xa6\ \x6a\xf4\xa7\x6c\xf5\xa5\x68\xf5\xa3\x66\xf6\xa5\x67\xf5\xa4\x67\ \xf6\xa2\x64\xf8\xa2\x65\xf8\xa2\x65\xf8\xa3\x65\xf7\xa2\x64\xf7\ \xa2\x63\xf7\xa2\x64\xf6\xa2\x61\xf6\xa1\x62\xf8\xa0\x63\xf7\xa1\ \x61\xf6\xa0\x60\xf6\xa1\x62\xf6\xa0\x62\xf8\xa0\x60\xf6\xa0\x61\ \xf7\xa0\x61\xf6\x9f\x5f\xf6\x9f\x5e\xf6\x9f\x60\xf7\x9e\x61\xf5\ \x9d\x5f\xf6\x9c\x60\xf6\x9e\x5f\xf6\x9d\x5f\xf5\x9d\x60\xf5\x9c\ \x5d\xf5\x9c\x5e\xf5\x9d\x5c\xf5\x9c\x5e\xf4\x9c\x5c\xf4\x9b\x5d\ \xf3\x9b\x5d\xf3\x9c\x5c\xf3\x9c\x5c\xf4\x9b\x5b\xf4\x9d\x5e\xf4\ \xa0\x62\xf4\xa3\x6c\xf5\xa3\x6b\xfc\xa5\x68\xcb\x91\x68\x7d\x52\ \x39\x9c\x72\x52\x86\x6e\x57\x4f\x51\x4b\x45\x48\x3d\x3f\x40\x37\ \xa7\x76\x50\x45\x50\x58\x4a\x56\x4e\x3a\x4f\x53\x2e\x40\x3f\x3b\ \x49\x41\x70\x64\x4e\xa1\x80\x63\x5f\x63\x6c\x7f\x6d\x62\x83\x6e\ \x5d\x6a\x7d\x84\x74\x72\x6c\xa6\x9c\x94\x83\x8c\x98\x90\x8b\x82\ \x5c\x5b\x58\xb7\xa9\xa1\x83\x78\x6e\x91\x89\x82\x9e\x91\x82\xa2\ \x9b\x95\x00\x00\x00\xf5\xf3\xf3\xf6\xf4\xf4\xf4\xf0\xed\xf2\xee\ \xe9\xef\xea\xe7\xee\xe8\xe5\xee\xea\xe7\xf0\xeb\xe8\xf1\xeb\xeb\ \xf2\xee\xee\xf5\xf3\xf3\xf7\xf5\xf5\xf6\xf6\xf6\xf9\xf9\xf9\xfc\ \xfc\xfc\xf9\xfa\xf8\xd0\xd0\xd0\xb3\xb4\xb7\x98\x89\x80\xa6\xa4\ \xa4\xb6\xba\xbf\xa8\xab\xb3\x94\x8d\x8d\x9b\x94\x94\x86\x77\x71\ \x91\x7f\x7b\x98\x88\x86\x99\x89\x86\x9c\x83\x77\x9b\x7d\x6a\x9b\ \x81\x70\x9a\x82\x73\xb1\xa3\x9d\x9d\x87\x7a\xab\xab\xb1\xb0\xac\ \xa9\x9d\x8e\x83\x93\x7d\x71\xab\xa3\x9e\xa6\x98\x8f\x98\x83\x78\ \x96\x8c\x8b\x9e\x95\x93\x9c\x92\x91\x9f\xa1\xa3\x97\xa0\xaa\x8e\ \x83\x82\xce\xc2\xba\xdb\xd1\xc7\xed\xe7\xdf\xe8\xe1\xd8\xe6\xdd\ \xd4\xe4\xd8\xcc\xe1\xd3\xc1\xe1\xc9\xb1\xe4\xc3\xa6\xe3\xc5\xa8\ \xe3\xd1\xbe\xe7\xdd\xd2\xe8\xe1\xd9\xe9\xe2\xdd\xe7\xe2\xdd\xe5\ \xe2\xdb\xe7\xe2\xdd\xe7\xe0\xdd\xe8\xe0\xda\xe6\xe0\xd7\xe6\xdd\ \xd5\xe6\xdc\xd2\xe3\xd7\xcd\xe3\xd6\xca\xe1\xd1\xc0\xe1\xcc\xb6\ \xe2\xbe\xa2\xea\xb1\x84\xeb\xb3\x87\xeb\xb4\x89\xee\xad\x7b\xec\ \xb0\x82\xef\xab\x78\xf3\xa7\x70\xf4\xa4\x68\xf5\xa3\x66\xf5\xa4\ \x69\xf6\xa3\x66\xf4\xa2\x65\xf6\xa3\x65\xf6\xa4\x66\xf5\xa4\x69\ \xf3\xa7\x6e\xf5\xa5\x6b\xf5\xa4\x6b\xf4\xa4\x69\xf7\xa2\x64\xf7\ \xa3\x63\xf7\xa1\x64\xf7\xa2\x63\xf7\xa2\x64\xf7\xa1\x63\xf8\xa0\ \x60\xf8\xa0\x62\xf6\xa1\x61\xf7\xa0\x61\xf8\x9f\x5f\xf8\x9f\x60\ \xf7\x9e\x5f\xf6\x9e\x5f\xf5\x9d\x5d\xf5\x9d\x5e\xf5\x9e\x5d\xf5\ \x9d\x5f\xf6\x9d\x5e\xf6\x9e\x5e\xf5\x9d\x5e\xf6\x9e\x5d\xf5\x9d\ \x5e\xf6\x9d\x5f\xf5\x9d\x5d\xf4\x9c\x5c\xf5\x9d\x5d\xf5\x9d\x5c\ \xf4\x9c\x5c\xf5\x9d\x5e\xf4\x9c\x5c\xf4\x9b\x5c\xf5\x9b\x5c\xf4\ \x9b\x5e\xf4\x9a\x5d\xf3\x9b\x5d\xf3\x9c\x5d\xf7\xa1\x63\xf6\xa1\ \x67\xfc\xa4\x65\xb8\x7d\x5e\xc8\x87\x58\x6f\x56\x40\x51\x46\x37\ \x82\x64\x4a\x5a\x4f\x47\x52\x4f\x46\x83\x6e\x56\x61\x52\x42\x9d\ \x7e\x64\x6b\x67\x5d\x41\x56\x64\x33\x46\x4b\x81\x63\x46\xd2\xa1\ \x7c\x65\x59\x4b\x63\x64\x60\x51\x59\x56\x45\x49\x49\x40\x4b\x4c\ \x4d\x54\x53\x46\x45\x40\x80\x7f\x80\x46\x47\x43\x33\x3e\x4c\x57\ \x51\x46\x97\x8b\x7e\xba\xaa\x95\xcf\xba\xac\xb5\xb5\xb7\x00\x00\ \x00\xf6\xf4\xf4\xf5\xf3\xf3\xf4\xef\xed\xf2\xee\xea\xf0\xeb\xe8\ \xee\xe8\xe5\xee\xe7\xe4\xed\xe5\xe2\xed\xe8\xe5\xf0\xeb\xe8\xf3\ \xef\xee\xf4\xf1\xf1\xf6\xf3\xf3\xf7\xf7\xf7\xf8\xf7\xf7\xfb\xf9\ \xfa\xdd\xdc\xdb\xbd\xc0\xc4\xb9\xb6\xb2\x8e\x7b\x71\xa1\x9f\xa5\ \xae\xb2\xb8\x9d\x94\x91\x97\x8e\x8e\x8b\x73\x68\x8f\x78\x6f\x99\ \x88\x81\x9a\x8a\x83\x98\x7c\x6e\x9b\x80\x70\x9c\x7f\x6e\x95\x7f\ \x73\xc5\xbe\xbb\xb4\xa5\x9c\xa3\x9e\x9f\xba\xb9\xb8\xa7\x9b\x93\ \x9c\x88\x7c\xa9\xa3\xa1\xa9\x9b\x93\x99\x84\x7a\x98\x85\x7e\x8e\ \x7d\x77\x85\x72\x6f\x90\x94\x9c\x90\x97\x9e\x8b\x82\x7f\xe6\xe2\ \xdf\xf0\xeb\xe8\xe9\xe6\xe1\xea\xe3\xde\xe9\xe0\xd8\xe5\xdb\xd0\ \xe2\xd2\xc0\xe1\xcb\xb5\xe1\xce\xba\xe2\xd3\xc2\xe6\xdc\xd2\xe7\ \xe1\xd9\xe6\xe2\xdc\xe7\xe3\xde\xe8\xe4\xdf\xe7\xe3\xde\xe8\xe2\ \xdd\xe8\xe2\xdd\xea\xe1\xdc\xe8\xe0\xd8\xe7\xdf\xd6\xe6\xdd\xd4\ \xe5\xda\xcf\xe3\xd6\xcb\xe2\xd4\xc4\xe0\xcb\xb8\xe5\xbb\x9a\xe9\ \xb7\x8e\xe8\xb5\x8b\xe8\xb5\x8a\xeb\xb1\x82\xec\xb0\x82\xed\xaf\ \x7e\xf1\xaa\x74\xf3\xa4\x6a\xf5\xa3\x67\xf7\xa4\x66\xf5\xa3\x66\ \xf6\xa2\x65\xf5\xa3\x65\xf6\xa3\x66\xf5\xa2\x65\xf5\xa3\x66\xf5\ \xa3\x68\xf6\xa3\x66\xf7\xa1\x63\xf9\xa2\x62\xf7\xa1\x64\xf8\xa2\ \x64\xf8\xa1\x63\xf7\xa0\x62\xf7\x9f\x61\xf6\x9f\x5f\xf7\x9f\x60\ \xf5\xa0\x61\xf6\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5d\xf5\ \x9d\x5d\xf6\x9d\x5d\xf6\x9e\x5e\xf5\x9e\x5c\xf5\x9d\x5e\xf6\x9d\ \x60\xf6\x9d\x5e\xf5\x9e\x5d\xf5\x9e\x5d\xf5\x9d\x5e\xf5\x9c\x5f\ \xf5\x9c\x5b\xf3\x9b\x5b\xf5\x9b\x5d\xf5\x9b\x5b\xf5\x9b\x5b\xf6\ \x9c\x5c\xf4\x9a\x5a\xf3\x9b\x5a\xf4\x9b\x5a\xf4\x9b\x5a\xf5\x9b\ \x5a\xf5\x9b\x5b\xf5\x9c\x5d\xf4\x9f\x63\xf6\x9f\x61\xfa\xa3\x63\ \xaa\x7c\x5f\x4f\x4b\x3e\x55\x47\x35\xe0\x94\x5d\x98\x78\x62\x5b\ \x56\x51\x6d\x59\x46\x90\x76\x5c\x86\x72\x61\x61\x5b\x4c\x3a\x45\ \x42\x36\x4d\x57\x48\x53\x57\x81\x65\x4c\x96\x72\x5e\x68\x57\x46\ \x7a\x5f\x46\x49\x5a\x57\x40\x49\x4e\x44\x4a\x46\x38\x44\x48\x2e\ \x3c\x3f\x35\x3e\x40\x3e\x40\x39\x7d\x72\x60\x7f\x7e\x7f\xb9\xa0\ \x8b\x75\x76\x78\x71\x6a\x65\x77\x78\x76\x00\x00\x00\xf5\xf3\xf3\ \xf4\xf2\xf2\xf4\xef\xee\xf3\xee\xed\xf2\xed\xea\xee\xea\xe5\xec\ \xe6\xdf\xea\xe3\xdd\xeb\xe4\xdf\xed\xe7\xe3\xef\xe9\xe8\xf1\xec\ \xeb\xf4\xef\xef\xf5\xf2\xf2\xf5\xf3\xf3\xf6\xf3\xf3\xe5\xe3\xe1\ \xc5\xca\xcf\xbd\xbe\xc0\xa3\x95\x8b\x94\x88\x86\xa8\xa7\xab\x9f\ \x97\x93\x96\x8d\x8c\x8f\x79\x6e\x90\x74\x66\x9a\x8c\x88\x9a\x8d\ \x89\x94\x78\x65\x9b\x80\x70\x9a\x81\x74\x95\x81\x78\xd5\xd2\xd3\ \xd5\xce\xc9\xca\xc6\xc5\xb1\xb0\xb0\xa8\x9c\x97\x97\x84\x7b\xa2\ \x9b\x99\xa7\x99\x92\x95\x82\x7a\x9a\x89\x85\x8a\x7f\x7d\x7c\x6a\ \x66\x97\x9a\xa0\xa0\xa6\xac\x87\x7d\x7a\xed\xe9\xe7\xf0\xec\xe8\ \xed\xe9\xe4\xec\xe5\xe1\xe9\xe3\xdc\xe7\xe0\xd7\xe5\xdb\xce\xe4\ \xd6\xc8\xe4\xd9\xcd\xe7\xdc\xd3\xe7\xe0\xd8\xe8\xe2\xdc\xe8\xe3\ \xdf\xe9\xe4\xe0\xea\xe3\xe0\xea\xe4\xe0\xe8\xe3\xdf\xe8\xe3\xde\ \xe8\xe3\xdd\xe9\xe1\xda\xe7\xe0\xd7\xe7\xde\xd5\xe5\xdb\xd1\xe4\ \xd7\xcd\xe2\xd4\xc7\xe1\xcc\xb8\xe3\xc1\xa6\xe5\xc0\xa1\xe6\xbd\ \x9b\xe9\xb4\x8b\xeb\xb1\x84\xed\xad\x7d\xef\xab\x79\xef\xac\x78\ \xf4\xa5\x6a\xf5\xa5\x68\xf6\xa5\x66\xf5\xa4\x66\xf5\xa3\x64\xf6\ \xa2\x64\xf7\xa1\x64\xf7\xa2\x65\xf8\xa2\x65\xf7\xa1\x62\xf8\xa1\ \x62\xf7\xa1\x60\xf8\xa1\x61\xf8\xa1\x63\xf8\xa1\x63\xf7\xa0\x62\ \xf6\x9f\x60\xf7\x9e\x5f\xf7\x9f\x5f\xf6\x9e\x5d\xf6\x9e\x5e\xf5\ \x9d\x5d\xf6\x9d\x5d\xf6\x9d\x5d\xf6\x9d\x5e\xf5\x9c\x5d\xf5\x9e\ \x5e\xf6\x9e\x5e\xf6\x9e\x5e\xf5\x9e\x5d\xf5\x9d\x5f\xf5\x9d\x5d\ \xf5\x9d\x5f\xf5\x9e\x5d\xf5\x9d\x5e\xf5\x9c\x5c\xf5\x9c\x5c\xf4\ \x9c\x5c\xf5\x9b\x5a\xf5\x9b\x5a\xf5\x9b\x59\xf5\x9b\x5c\xf5\x9b\ \x5a\xf6\x9b\x5a\xf4\x9b\x5a\xf5\x9a\x59\xf6\x9a\x5a\xf6\x9b\x5c\ \xf6\x9c\x5d\xf5\x9d\x5e\xf5\x9e\x60\xc5\x85\x58\x74\x57\x3f\xa7\ \x72\x4a\x75\x61\x4e\x99\x72\x50\x8b\x6a\x4c\xa9\x79\x51\xc9\x8c\ \x63\xc1\x89\x66\x89\x77\x6c\x33\x44\x43\x3a\x45\x3c\x35\x41\x3f\ \x36\x41\x41\x4a\x3d\x31\x6e\x61\x54\x66\x55\x47\x77\x65\x54\x39\ \x50\x4d\x32\x45\x4c\x44\x42\x40\x3e\x4a\x4b\x3f\x48\x41\x5d\x64\ \x63\x52\x59\x52\x46\x4e\x4a\x71\x6d\x65\x75\x6b\x65\x40\x48\x4d\ \x62\x59\x49\x77\x6e\x63\x00\x00\x00\xf3\xf1\xf1\xf3\xf1\xf1\xf3\ \xf0\xf1\xf3\xf0\xf0\xf4\xf0\xf0\xf0\xec\xe7\xea\xe3\xda\xe9\xe0\ \xd7\xe8\xe0\xd7\xe9\xe2\xdb\xeb\xe4\xdf\xec\xe6\xe2\xef\xea\xe7\ \xf2\xee\xec\xf3\xef\xed\xf2\xed\xea\xf0\xea\xe5\xca\xd0\xd5\xc3\ \xc4\xc7\xb4\xb1\xaf\xa3\x9d\x99\xa1\x98\x97\xa9\xa4\xa2\x97\x8f\ \x8c\x8b\x70\x64\x99\x85\x7c\x9a\x93\x95\x97\x86\x7f\x93\x76\x68\ \x9d\x82\x75\x95\x7c\x72\x9b\x90\x8d\xde\xde\xdf\xf9\xf9\xf8\xf4\ \xf3\xf1\xaf\xac\xad\xa5\x98\x93\x91\x79\x6b\x9c\x90\x8c\xac\xa2\ \x9d\x95\x7f\x73\x9b\x93\x8f\x9b\x96\x97\x7b\x6f\x6d\x94\x98\x9e\ \x98\x9a\x9d\xa5\x9b\x97\xf7\xf3\xf2\xf2\xee\xeb\xf1\xec\xea\xee\ \xe8\xe6\xeb\xe4\xe0\xe9\xe3\xdd\xe6\xdd\xd4\xe4\xd7\xcd\xe5\xdc\ \xd2\xe7\xe1\xda\xe9\xe3\xde\xe9\xe4\xe0\xea\xe5\xe2\xeb\xe5\xe2\ \xeb\xe4\xe1\xeb\xe4\xe1\xeb\xe4\xe1\xe9\xe4\xdf\xe8\xe2\xde\xe7\ \xe1\xdc\xe8\xe1\xda\xe6\xde\xd6\xe6\xdc\xd3\xe5\xd9\xcf\xe2\xd6\ \xc8\xe1\xce\xb8\xe2\xc7\xad\xe2\xc5\xab\xe3\xc2\xa7\xe8\xb3\x8b\ \xef\xaa\x77\xf0\xa9\x73\xf2\xa7\x6e\xf2\xa7\x6f\xf2\xa6\x6c\xf5\ \xa6\x69\xf5\xa5\x68\xf5\xa3\x65\xf4\xa2\x64\xf7\xa2\x63\xf7\xa2\ \x64\xf7\xa1\x64\xf9\xa1\x64\xf7\xa1\x63\xf7\xa0\x61\xf7\xa0\x5f\ \xf7\xa0\x60\xf7\x9f\x60\xf7\x9f\x61\xf7\x9f\x5f\xf7\x9e\x60\xf6\ \x9e\x5f\xf6\x9e\x5e\xf6\x9e\x5e\xf5\x9d\x5d\xf6\x9d\x5e\xf5\x9d\ \x5d\xf6\x9e\x5d\xf6\x9e\x5d\xf6\x9d\x5d\xf6\x9e\x5c\xf4\x9d\x5c\ \xf6\x9d\x5e\xf6\x9d\x5d\xf6\x9d\x5d\xf4\x9c\x5b\xf6\x9c\x5d\xf4\ \x9c\x5c\xf5\x9c\x5c\xf6\x9b\x5b\xf5\x9b\x5b\xf5\x9b\x5b\xf4\x9b\ \x5a\xf3\x9b\x59\xf5\x9a\x5a\xf4\x9a\x5b\xf4\x9a\x5a\xf7\x9a\x5a\ \xf5\x9a\x5a\xf6\x9a\x5a\xf5\x9a\x5b\xf5\x9a\x5b\xf6\x9c\x5c\xf5\ \x9c\x5e\xf6\x9f\x60\xb7\x7d\x54\xa0\x6c\x45\xbb\x80\x55\x66\x5e\ \x52\x98\x66\x3d\xe0\x98\x66\xd4\x97\x6c\xb5\x80\x5e\x6f\x66\x57\ \x70\x68\x57\x31\x43\x40\x3d\x43\x39\x47\x46\x3f\x38\x3f\x3d\x39\ \x3f\x41\x3a\x39\x32\x41\x41\x38\x5d\x54\x50\x40\x53\x51\x21\x3a\ \x3d\x41\x44\x32\x4a\x58\x63\x40\x47\x44\x4f\x56\x53\x52\x5c\x54\ \x46\x51\x4f\x43\x4d\x4f\x3d\x44\x45\x2d\x38\x3b\x3e\x42\x3b\x32\ \x39\x41\x00\x00\x00\xf2\xf0\xf0\xf2\xf0\xf0\xf3\xee\xec\xf2\xed\ \xee\xf3\xee\xee\xf0\xe9\xe6\xed\xe5\xdf\xe9\xe1\xd6\xe7\xdb\xd1\ \xe9\xde\xd5\xe9\xe1\xd9\xeb\xe3\xdc\xed\xe6\xe3\xf0\xe9\xe6\xee\ \xe7\xe4\xef\xe9\xe5\xf1\xea\xe4\xd6\xd5\xd3\xbe\xc3\xc9\xbe\xbb\ \xba\xba\xba\xbc\xab\xa2\x9f\xb2\xae\xad\xaa\xa3\xa1\x94\x84\x7e\ \xa4\xa1\xa1\x98\x91\x91\x93\x7d\x74\x97\x7b\x6f\x9b\x83\x72\x8f\ \x75\x67\x9f\x93\x90\xe9\xeb\xec\xfa\xfa\xfa\xfd\xfd\xfc\xb9\xb7\ \xb6\xa3\x9a\x97\x94\x80\x75\xa0\x96\x93\xa5\xa1\xa0\x97\x83\x7b\ \x96\x8a\x8a\xae\xb1\xb5\x80\x74\x72\x8d\x93\x9c\x98\x97\x98\xe4\ \xe1\xde\xf5\xf3\xf3\xf3\xf0\xf0\xf2\xef\xed\xf1\xee\xea\xed\xe8\ \xe5\xea\xe5\xe1\xe8\xe2\xda\xe8\xde\xd3\xe8\xe0\xd9\xea\xe3\xdf\ \xeb\xe6\xe3\xed\xe8\xe5\xee\xe9\xe6\xed\xe9\xe5\xed\xe8\xe5\xec\ \xe7\xe3\xea\xe5\xe2\xeb\xe5\xe1\xe9\xe5\xe0\xe9\xe4\xdf\xea\xe1\ \xdd\xe7\xe0\xd8\xe7\xde\xd5\xe6\xdb\xd2\xe3\xd5\xc7\xe1\xce\xb9\ \xe1\xca\xb4\xe1\xc6\xae\xe5\xbc\x9f\xec\xab\x7a\xed\xad\x7d\xee\ \xae\x7e\xf2\xa7\x6e\xf2\xa6\x6c\xf3\xa5\x6c\xf5\xa5\x6a\xf5\xa5\ \x68\xf5\xa3\x66\xf6\xa1\x64\xf7\xa3\x62\xf7\xa2\x63\xf7\xa0\x62\ \xf8\xa0\x63\xf7\xa0\x62\xf7\xa0\x61\xf6\x9f\x60\xf6\x9e\x5f\xf6\ \x9e\x5e\xf6\x9e\x5f\xf6\x9f\x5f\xf6\x9d\x5e\xf6\x9d\x5e\xf5\x9d\ \x5e\xf6\x9e\x5e\xf5\x9e\x5e\xf5\x9e\x5c\xf6\x9e\x5e\xf5\x9d\x5d\ \xf6\x9e\x5d\xf5\x9d\x5d\xf4\x9c\x5b\xf4\x9c\x5c\xf6\x9c\x5c\xf6\ \x9d\x5c\xf4\x9d\x5b\xf4\x9c\x5b\xf4\x9b\x5b\xf4\x9b\x5b\xf6\x9b\ \x5a\xf6\x9b\x5b\xf5\x9c\x5a\xf5\x9a\x5b\xf4\x9a\x5b\xf3\x9a\x5c\ \xf5\x9b\x5a\xf4\x9a\x5b\xf6\x9b\x59\xf4\x99\x5b\xf5\x99\x5a\xf5\ \x9a\x5a\xf4\x9a\x5a\xf5\x9b\x5b\xf5\x9c\x5a\xf6\x9d\x5d\xf7\x9f\ \x61\xf2\x9d\x60\xed\x9c\x63\x90\x6b\x51\x9c\x69\x41\xea\x99\x5c\ \xb6\x80\x5d\xaf\x81\x63\xae\x79\x52\x46\x5d\x5d\x44\x4f\x41\x5b\ \x59\x51\x39\x41\x41\x35\x3a\x38\x31\x39\x36\x34\x42\x4f\x48\x49\ \x3f\x60\x5c\x4c\x53\x54\x51\x4c\x51\x5a\x2d\x40\x44\x5e\x5e\x52\ \x4c\x5a\x54\x4f\x5f\x62\x45\x4a\x4f\x3d\x46\x43\x22\x2c\x2e\x3c\ \x41\x3d\x4f\x56\x51\x4a\x53\x50\x42\x3e\x32\x7e\x70\x66\x00\x00\ \x00\xf2\xed\xef\xf3\xef\xeb\xf0\xec\xe9\xf1\xeb\xec\xf0\xeb\xe9\ \xee\xe8\xe4\xee\xe8\xe3\xec\xe4\xdb\xe6\xda\xcc\xe8\xdd\xd4\xea\ \xe1\xd8\xea\xe1\xdc\xec\xe5\xe2\xf0\xe9\xe5\xee\xe7\xe0\xee\xe5\ \xe1\xf0\xe8\xe5\xe5\xdf\xd9\xb1\xb4\xba\xb4\xb3\xb2\xab\xa7\xa9\ \xa9\xa1\x9d\xa9\xa3\xa3\xbe\xbf\xbf\xb3\xb1\xb0\x9d\x96\x94\xa2\ \x9a\x98\x99\x83\x7a\x99\x80\x70\x93\x78\x68\x8e\x76\x69\xa8\x9d\ \x99\xf7\xf8\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xdb\xda\xd9\xa0\x97\x95\ \x8e\x78\x6e\x9a\x8f\x8b\x9b\x94\x92\x8c\x76\x6d\x86\x72\x6c\xa0\ \x9d\xa0\x85\x77\x73\x82\x7d\x7f\xcb\xca\xc9\xf6\xf5\xf5\xf7\xf4\ \xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf3\xf0\xf0\xf1\xec\xec\xf0\xeb\xe8\ \xec\xe7\xe3\xea\xe5\xe0\xea\xe5\xe2\xec\xe7\xe4\xee\xe9\xe6\xf0\ \xec\xe8\xf0\xeb\xe9\xef\xea\xe7\xee\xea\xe7\xef\xea\xe6\xed\xe8\ \xe5\xeb\xe6\xe3\xeb\xe4\xe1\xea\xe3\xdf\xe9\xe3\xdf\xeb\xe2\xdc\ \xe7\xe0\xd7\xe6\xdc\xd3\xe4\xd6\xc9\xe1\xce\xbd\xe0\xcd\xb7\xe3\ \xc4\xac\xe6\xb9\x95\xec\xaf\x7f\xec\xad\x7f\xf1\xa7\x71\xf2\xa8\ \x72\xed\xae\x7d\xef\xad\x7c\xf2\xa7\x6f\xf4\xa4\x67\xf5\xa3\x65\ \xf7\xa0\x64\xf7\xa1\x63\xf7\xa1\x63\xf8\xa1\x62\xf8\xa1\x62\xf6\ \xa0\x60\xf7\x9e\x5f\xf6\x9e\x61\xf5\x9e\x5f\xf6\x9d\x5d\xf6\x9e\ \x5f\xf5\x9e\x5d\xf5\x9d\x5d\xf5\x9d\x5d\xf6\x9e\x5e\xf6\x9e\x5e\ \xf6\x9d\x5d\xf6\x9d\x5c\xf6\x9d\x5d\xf5\x9c\x5d\xf5\x9c\x5d\xf4\ \x9d\x5d\xf4\x9d\x5c\xf5\x9c\x5c\xf6\x9c\x5b\xf4\x9b\x5c\xf4\x9c\ \x5b\xf4\x9c\x5c\xf5\x9c\x59\xf5\x9c\x5a\xf4\x9b\x5b\xf4\x9a\x5b\ \xf5\x9a\x5b\xf4\x9c\x5c\xf3\x9a\x5a\xf5\x9b\x5b\xf4\x9a\x5c\xf5\ \x99\x5a\xf6\x9a\x58\xf3\x99\x5a\xf3\x9a\x5a\xf4\x9a\x59\xf4\x99\ \x59\xf3\x9a\x5a\xf5\x9b\x5c\xf5\x9c\x5f\xf6\x9e\x5f\xf8\xa1\x63\ \xf0\x9c\x60\xf8\xa2\x67\xf2\xa0\x68\xd3\x96\x69\x64\x5a\x50\x6d\ \x52\x3d\x75\x5a\x43\x3c\x42\x3d\x30\x39\x30\x37\x45\x45\x41\x44\ \x40\x7f\x5a\x41\x96\x73\x52\x4c\x4e\x51\x69\x5f\x53\x70\x5d\x4d\ \x43\x42\x3b\x53\x4d\x45\x3a\x48\x48\x4a\x3e\x31\x48\x47\x40\x38\ \x41\x47\x53\x4d\x45\x6a\x63\x51\x8b\x86\x7c\x64\x5b\x4e\x56\x67\ \x6e\x6c\x66\x5c\x8d\x7a\x6a\x51\x4e\x42\x00\x00\x00\xf0\xea\xe7\ \xee\xe9\xe5\xec\xe7\xe4\xee\xe9\xe8\xef\xeb\xe8\xef\xea\xe7\xed\ \xe6\xe4\xeb\xe3\xda\xe8\xde\xd5\xea\xe1\xd8\xeb\xe3\xdb\xeb\xe5\ \xe0\xee\xe8\xe5\xf0\xe9\xe5\xec\xe8\xe3\xed\xe7\xe2\xee\xe8\xe4\ \xf3\xed\xe9\xd3\xcc\xc8\xb3\xab\xa5\x9b\x91\x8a\xa0\x95\x90\x85\ \x73\x6b\xaf\xb1\xb5\xb4\xb5\xb5\xa8\xa4\xa2\x97\x8b\x87\x92\x7c\ \x6f\xa6\x91\x83\x96\x81\x76\xc4\xbb\xb7\xd7\xd2\xce\xfc\xfc\xfc\ \xf9\xf9\xf9\xfa\xfa\xfa\xf0\xf0\xf0\xa1\x9b\x99\x94\x82\x77\xa0\ \x96\x8f\xa8\x9e\x99\xa2\x92\x89\x87\x70\x65\x91\x8d\x8f\x9b\x91\ \x8d\xca\xc3\xbf\xf5\xf5\xf5\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf6\xf6\ \xf7\xf5\xf5\xf5\xf3\xf3\xf2\xf0\xf0\xf1\xec\xeb\xf0\xeb\xea\xf0\ \xeb\xe8\xf0\xec\xe9\xf0\xed\xea\xf0\xee\xec\xf1\xed\xec\xf1\xed\ \xeb\xf1\xec\xea\xf0\xeb\xe8\xf0\xeb\xe9\xef\xeb\xe9\xee\xe9\xe6\ \xec\xe6\xe3\xec\xe5\xe2\xe9\xe5\xe0\xe8\xe4\xdf\xe9\xe2\xdb\xe7\ \xde\xd5\xe5\xd8\xcd\xe3\xd4\xc4\xe1\xd1\xbf\xe2\xc4\xa9\xe6\xbc\ \x9c\xe9\xb6\x8f\xed\xac\x7d\xf2\xa4\x6a\xf2\xa6\x6e\xf1\xa8\x71\ \xf0\xa9\x75\xf1\xa9\x73\xf3\xa5\x6b\xf4\xa2\x64\xf8\xa2\x63\xf8\ \xa0\x63\xf7\xa0\x62\xf7\xa2\x63\xf6\xa0\x62\xf7\x9e\x5f\xf5\x9e\ \x5d\xf6\x9e\x5f\xf6\x9d\x5f\xf5\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5d\ \xf5\x9e\x5e\xf5\x9e\x5e\xf5\x9d\x5d\xf5\x9d\x5d\xf4\x9c\x5b\xf5\ \x9c\x5b\xf5\x9c\x5c\xf6\x9c\x5b\xf6\x9c\x5a\xf6\x9c\x5c\xf5\x9b\ \x5c\xf4\x9b\x5a\xf4\x9c\x5a\xf3\x9b\x5a\xf5\x9b\x5a\xf6\x9a\x59\ \xf5\x9a\x5b\xf4\x9a\x5b\xf4\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x59\xf4\ \x99\x5a\xf4\x9a\x5a\xf5\x99\x5a\xf6\x9a\x5b\xf5\x9b\x5b\xf2\x99\ \x59\xf5\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x5a\xf3\x9a\x59\xf5\x9a\x5b\ \xf6\x9b\x5b\xf6\x9c\x5f\xf6\x9d\x5d\xf7\x9e\x61\xf8\xa2\x66\xf7\ \xa3\x66\xd1\x97\x6e\x61\x59\x4c\x55\x55\x4e\x7b\x64\x54\x46\x3d\ \x36\x51\x48\x3c\x85\x5f\x46\x6f\x61\x59\x9b\x6a\x4e\xec\x9f\x6c\ \xcd\x95\x6d\x6b\x5f\x59\x69\x59\x46\x69\x5a\x50\x3b\x3e\x40\x3b\ \x34\x2c\x66\x53\x3b\xaf\x7b\x55\xf6\xae\x7f\x92\x7c\x6a\x4f\x58\ \x50\x46\x55\x53\x60\x59\x45\x6c\x71\x6b\x53\x67\x72\x3e\x4c\x53\ \x50\x4e\x46\x71\x64\x58\x00\x00\x00\xec\xe4\xe1\xe9\xe2\xda\xea\ \xe4\xdf\xec\xe5\xe2\xee\xe9\xe6\xf1\xec\xe9\xef\xe9\xe5\xec\xe5\ \xdc\xeb\xe4\xdd\xee\xe5\xe0\xed\xe5\xe1\xec\xe7\xe2\xee\xea\xe6\ \xf1\xea\xe7\xf0\xea\xe6\xef\xe9\xe5\xef\xea\xe6\xee\xe9\xe6\xf4\ \xee\xec\xed\xe6\xdd\xc3\xb9\xb0\xb0\xa7\xa0\x98\x88\x7d\xc5\xc1\ \xbf\xb6\xb6\xb8\xb7\xb5\xb4\x9f\x8f\x84\x9c\x85\x7a\xc3\xbb\xb7\ \xda\xd3\xd0\xfb\xfc\xfd\xfb\xfb\xfb\xf7\xf7\xf7\xf7\xf7\xf7\xf9\ \xf9\xf9\xfb\xfb\xfb\xb6\xb1\xad\x9b\x8f\x8e\xa0\x9a\x9a\xa5\x9e\ \x9b\x97\x8a\x85\x7d\x6d\x6c\x8f\x8c\x8d\xce\xcb\xc9\xfc\xfc\xfd\ \xf9\xf9\xf9\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf7\xf8\xf8\xf6\ \xf5\xf5\xf4\xf2\xf2\xf2\xee\xee\xf1\xec\xed\xf1\xef\xed\xf2\xef\ \xef\xf3\xef\xf0\xf1\xef\xef\xf1\xef\xef\xf1\xee\xee\xf0\xee\xed\ \xf0\xed\xec\xf1\xed\xeb\xf1\xec\xea\xf0\xec\xe8\xee\xea\xe7\xed\ \xe7\xe4\xec\xe5\xe2\xe9\xe5\xe0\xea\xe4\xdf\xe9\xe0\xda\xe5\xdb\ \xd3\xe5\xd7\xcb\xe4\xd5\xc5\xe3\xc9\xb2\xe5\xbe\x9f\xe6\xbb\x96\ \xef\xaa\x76\xf2\xa5\x6c\xf1\xa7\x70\xf2\xa7\x70\xf2\xa6\x6f\xf4\ \xa5\x6b\xf4\xa4\x6b\xf5\xa4\x67\xf7\xa1\x63\xf6\xa0\x62\xf6\xa0\ \x61\xf6\x9f\x61\xf7\x9f\x61\xf6\x9f\x5e\xf6\x9e\x5e\xf5\x9d\x5e\ \xf5\x9d\x5e\xf6\x9c\x5f\xf5\x9d\x5e\xf6\x9d\x5b\xf5\x9d\x5e\xf5\ \x9c\x5e\xf5\x9c\x5d\xf5\x9c\x5c\xf6\x9c\x5c\xf4\x9b\x5c\xf5\x9c\ \x5c\xf5\x9b\x5b\xf4\x9b\x5a\xf5\x9c\x5b\xf4\x9b\x5c\xf3\x9a\x5b\ \xf5\x9b\x5b\xf5\x9b\x5a\xf6\x9b\x5a\xf4\x9b\x59\xf6\x9a\x5b\xf4\ \x9a\x5a\xf3\x9a\x59\xf4\x9a\x59\xf4\x9a\x5b\xf4\x9b\x5b\xf4\x9b\ \x5b\xf6\x9b\x59\xf4\x9a\x5b\xf4\x9a\x5b\xf4\x9a\x5a\xf3\x9a\x59\ \xf4\x9a\x5a\xf4\x9a\x5a\xf4\x9a\x5a\xf4\x9b\x5b\xf4\x9a\x5a\xf1\ \x99\x5c\xf0\x9a\x5b\xf2\x9a\x5c\xea\x9b\x65\xd9\x8c\x5b\x93\x74\ \x60\x62\x56\x4b\x62\x4e\x38\x88\x63\x47\x74\x55\x47\xc2\x7e\x4f\ \x98\x71\x5e\xe1\x94\x63\xbd\x7f\x5c\xb9\x7a\x55\x98\x73\x5a\x5a\ \x53\x4b\x43\x3f\x33\x60\x47\x3a\xa8\x6d\x45\xd9\x94\x64\xa3\x7d\ \x61\xa2\x6b\x43\xd5\x98\x70\x60\x5d\x59\x3e\x4d\x4c\x57\x51\x41\ \x48\x46\x36\x67\x74\x75\x48\x52\x51\x37\x4c\x56\x2c\x39\x34\x50\ \x45\x37\x00\x00\x00\xe6\xdd\xd6\xe9\xe1\xd8\xeb\xe4\xdf\xec\xe6\ \xe2\xef\xea\xe8\xf3\xed\xec\xf2\xed\xea\xef\xe9\xe6\xee\xe6\xe2\ \xee\xe5\xe1\xee\xe5\xe0\xed\xe5\xe2\xf0\xeb\xe9\xf3\xee\xed\xf3\ \xef\xec\xf1\xec\xe9\xef\xe9\xe7\xee\xe7\xe3\xee\xe6\xe2\xef\xea\ \xe8\xf2\xed\xea\xe1\xdb\xd6\xcc\xc7\xc5\xf7\xf5\xf5\xbc\xb9\xb8\ \xb4\xb3\xb3\xad\xa3\x9c\xcc\xc3\xbf\xfa\xfa\xfb\xfb\xfc\xfc\xf7\ \xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf8\xf8\xf8\xf9\xf9\xf9\xfb\xfb\ \xfb\xf0\xee\xec\xbe\xb6\xb1\x97\x8c\x85\xa1\x9a\x95\x93\x85\x7e\ \x8b\x7b\x77\xaf\xac\xac\xf7\xf7\xf6\xf8\xf8\xf9\xf8\xf8\xf8\xf9\ \xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xf8\xf8\xf8\xf6\xf6\xf6\xf5\xf3\ \xf3\xf3\xf1\xf1\xf2\xef\xf0\xf2\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\ \xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xf0\xf0\xf2\xef\xef\xf1\ \xed\xee\xf1\xeb\xec\xf0\xec\xe9\xf0\xeb\xe8\xef\xea\xe7\xed\xe9\ \xe6\xed\xe5\xe3\xeb\xe5\xe2\xe9\xe2\xdd\xe8\xe0\xd7\xe7\xdc\xd3\ \xe6\xda\xd0\xe3\xd5\xc6\xe3\xc9\xb2\xe4\xc0\xa4\xec\xaf\x81\xee\ \xae\x7b\xee\xae\x7c\xed\xae\x7e\xee\xae\x7e\xf1\xa7\x73\xf3\xa4\ \x6a\xf6\xa2\x66\xf8\x9f\x64\xf6\x9f\x62\xf7\xa0\x61\xf7\x9f\x60\ \xf6\x9f\x5f\xf6\x9d\x5f\xf5\x9d\x5c\xf6\x9d\x5f\xf6\x9e\x5d\xf6\ \x9d\x5d\xf5\x9d\x5d\xf4\x9e\x5d\xf5\x9c\x5b\xf5\x9c\x5b\xf6\x9c\ \x5b\xf4\x9b\x5a\xf5\x9d\x5c\xf3\x9b\x5b\xf7\x9b\x5a\xf4\x9b\x5b\ \xf5\x9b\x5b\xf6\x9b\x5a\xf6\x9b\x5a\xf4\x9b\x5a\xf5\x9a\x59\xf4\ \x9a\x58\xf3\x9a\x5a\xf5\x9b\x5a\xf6\x9a\x5b\xf5\x9a\x5a\xf4\x9a\ \x5a\xf4\x9a\x5a\xf6\x9b\x5c\xf5\x9b\x5c\xf3\x9a\x5c\xf4\x9a\x5a\ \xf4\x9a\x5a\xf3\x9a\x5b\xf3\x99\x5a\xf3\x99\x58\xf4\x99\x59\xf3\ \x98\x59\xf3\x9a\x59\xf4\x9a\x5a\xf2\x98\x5b\xf1\x97\x5b\xf2\x9b\ \x5b\xf8\x9e\x5c\xbc\x85\x66\x76\x54\x44\x3e\x43\x40\x9d\x6b\x44\ \xc6\x84\x53\xfb\xa4\x67\xeb\x9a\x69\xd8\x8f\x5e\xc9\x8a\x67\xd4\ \x88\x59\xf8\xa4\x69\xb4\x7a\x58\x80\x59\x46\x54\x43\x35\xb8\x79\ \x4d\xbc\x7c\x54\xee\xa1\x6d\xbc\x8d\x68\x42\x46\x43\x3e\x3b\x2e\ \x85\x64\x49\x43\x46\x43\x45\x4f\x4d\x47\x49\x45\x29\x39\x36\x40\ \x4f\x54\x43\x4a\x41\x39\x49\x47\x35\x43\x44\x43\x46\x41\x00\x00\ \x00\xe3\xd3\xc7\xe9\xde\xd3\xe8\xdd\xd5\xe9\xe2\xda\xed\xe8\xe5\ \xf0\xeb\xea\xf3\xee\xee\xf2\xee\xeb\xef\xea\xe4\xef\xe7\xe3\xef\ \xe8\xe3\xef\xe9\xe5\xf2\xee\xec\xf4\xf2\xf2\xf4\xf2\xf1\xf3\xf0\ \xef\xf1\xec\xe8\xeb\xe5\xdf\xeb\xe3\xdd\xe8\xe0\xd9\xeb\xe3\xde\ \xf2\xed\xec\xf3\xee\xef\xf5\xf1\xf2\xec\xe8\xe7\xe2\xdf\xde\xe2\ \xde\xdb\xf2\xf1\xf0\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\ \xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\ \xf3\xf2\xf1\xdf\xdc\xda\xe4\xe3\xe1\xd7\xd3\xcd\xe2\xde\xdb\xee\ \xed\xed\xfa\xfa\xfa\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\ \xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf6\xf6\xf6\xf6\xf4\xf4\xf3\xf1\xf1\ \xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf3\xf1\xf1\xf4\ \xf2\xf2\xf3\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\xf1\xee\xee\xf1\xeb\ \xeb\xf0\xeb\xeb\xef\xea\xe7\xef\xea\xe7\xef\xea\xe7\xee\xe8\xe4\ \xeb\xe6\xe5\xea\xe3\xdf\xe9\xe3\xdd\xe7\xdf\xd8\xe7\xdd\xd5\xe5\ \xd9\xcf\xe1\xcb\xb6\xe3\xbe\xa2\xe8\xb5\x8f\xe9\xb5\x8e\xe9\xb5\ \x8c\xe8\xb6\x90\xed\xad\x80\xef\xab\x78\xf3\xa5\x6c\xf6\xa2\x63\ \xf8\xa0\x63\xf7\xa0\x62\xf7\x9e\x60\xf6\x9e\x5f\xf6\x9d\x60\xf5\ \x9d\x5f\xf5\x9d\x5e\xf6\x9e\x5e\xf5\x9e\x5d\xf5\x9c\x5e\xf5\x9c\ \x5c\xf5\x9c\x5b\xf5\x9d\x5b\xf6\x9c\x5c\xf5\x9c\x5b\xf7\x9c\x5a\ \xf6\x9b\x5a\xf5\x9b\x5b\xf5\x9a\x5a\xf5\x9b\x5a\xf6\x9a\x59\xf5\ \x9a\x59\xf6\x9a\x59\xf6\x9a\x5a\xf5\x9a\x59\xf5\x9a\x5a\xf4\x9a\ \x59\xf5\x9a\x5c\xf5\x9a\x5c\xf5\x9a\x5b\xf4\x9a\x5a\xf5\x99\x59\ \xf6\x9a\x58\xf5\x99\x5a\xf3\x9a\x5a\xf3\x9a\x59\xf4\x9a\x5a\xf4\ \x9a\x5a\xf3\x99\x5a\xf2\x9a\x58\xf4\x98\x58\xf4\x98\x58\xf4\x98\ \x57\xf3\x98\x57\xf4\x98\x58\xf5\x9b\x5c\xf5\xa0\x62\xf2\x9d\x63\ \x80\x67\x56\x6b\x4f\x39\xab\x74\x4d\xef\x96\x5a\xf2\x9e\x66\xec\ \x97\x61\xec\x97\x62\xe7\x9d\x6a\xd6\x88\x5a\xdc\x92\x61\xb0\x73\ \x4d\xc3\x7b\x4b\xb6\x7b\x5b\x7d\x59\x40\xc1\x7c\x4d\xed\x9a\x60\ \xe6\xa0\x73\x9a\x76\x5d\x66\x5a\x4e\x30\x44\x45\x32\x40\x3e\x2f\ \x3d\x3e\x2d\x38\x3a\x33\x34\x2e\x39\x4c\x4d\x30\x3e\x40\x3e\x48\ \x46\x2d\x3d\x3f\x28\x31\x35\x3f\x4f\x4e\x00\x00\x00\xe2\xcd\xbc\ \xe8\xdf\xd6\xe8\xda\xcf\xe8\xdc\xd4\xea\xe4\xdf\xec\xe6\xe2\xf1\ \xec\xeb\xf3\xef\xec\xf0\xec\xe8\xf2\xed\xea\xf2\xed\xea\xf3\xee\ \xed\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf3\xef\xf0\xef\xea\xe7\ \xe5\xd4\xc2\xe2\xd0\xbe\xe3\xca\xb4\xe6\xd9\xcf\xf1\xeb\xe8\xf3\ \xee\xec\xf3\xed\xee\xf5\xf1\xf2\xf5\xf3\xf3\xf5\xf3\xf3\xf5\xf4\ \xf4\xf6\xf4\xf4\xf7\xf6\xf6\xf6\xf6\xf6\xf5\xf3\xf3\xf5\xf3\xf3\ \xf7\xf5\xf5\xf6\xf6\xf6\xf6\xf5\xf5\xf7\xf5\xf5\xf9\xf9\xf9\xfb\ \xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xf8\xf8\ \xf8\xf7\xf7\xf7\xf7\xf7\xf7\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\ \xf9\xf9\xf9\xf6\xf6\xf6\xf7\xf5\xf5\xf4\xf2\xf2\xf4\xf2\xf2\xf4\ \xf2\xf2\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf5\xf3\xf3\xf5\xf3\ \xf3\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xee\xef\xf1\xeb\xeb\xf0\xea\xe9\ \xee\xe9\xe5\xed\xe6\xe3\xeb\xe6\xe3\xec\xe7\xe4\xec\xe5\xe3\xe7\ \xe0\xdd\xe6\xdd\xd8\xe5\xda\xd1\xe4\xd8\xcf\xe3\xd5\xc8\xe1\xc7\ \xb0\xe5\xb9\x98\xe7\xb6\x92\xe6\xbb\x97\xe6\xbc\x9c\xe9\xb2\x8c\ \xf1\xa7\x72\xee\xab\x7a\xf4\xa4\x6c\xf6\xa1\x64\xf8\xa1\x63\xf6\ \x9f\x61\xf6\x9e\x5f\xf6\x9e\x5d\xf6\x9d\x5f\xf4\x9e\x5f\xf6\x9d\ \x5d\xf6\x9d\x5c\xf4\x9d\x5b\xf4\x9d\x5b\xf5\x9c\x5c\xf5\x9c\x5a\ \xf5\x9c\x5c\xf5\x9b\x5b\xf5\x9a\x5b\xf5\x9b\x5a\xf5\x9a\x59\xf3\ \x9c\x5d\xf3\x9a\x5a\xf5\x9a\x5a\xf7\x9a\x5a\xf5\x9a\x59\xf7\x99\ \x59\xf6\x99\x5b\xf4\x99\x5b\xf5\x9a\x5a\xf6\x9a\x59\xf4\x99\x5a\ \xf5\x9a\x5a\xf4\x9a\x59\xf4\x9a\x5b\xf3\x9a\x5a\xf5\x9a\x58\xf4\ \x99\x5a\xf4\x97\x58\xf5\x99\x57\xf3\x98\x58\xf2\x98\x58\xf4\x99\ \x58\xf2\x99\x59\xf3\x97\x58\xf3\x99\x57\xf3\x97\x57\xf2\x98\x58\ \xf5\x98\x58\xf4\x99\x58\xf5\x9c\x5f\xe3\x93\x5f\xbc\x77\x45\xea\ \x95\x57\xeb\x98\x64\xdc\x89\x55\xeb\x94\x5d\xe9\x97\x62\xc8\x82\ \x57\xc2\x7b\x51\xb1\x74\x52\x75\x48\x32\xb4\x6f\x43\xbf\x78\x4a\ \x9e\x6e\x51\xba\x6f\x3f\xea\x98\x60\xee\x9a\x62\xb5\x83\x5e\x6e\ \x5c\x4b\x68\x56\x44\x64\x5b\x4c\x4d\x51\x49\x3c\x3f\x3a\x56\x4e\ \x3a\x5c\x59\x4f\x4d\x49\x44\x46\x46\x3e\x42\x48\x41\x45\x4c\x43\ \x82\x73\x61\x61\x56\x47\x00\x00\x00\xe2\xc7\xaf\xe5\xd8\xcd\xe9\ \xde\xd4\xea\xdd\xd4\xe7\xdd\xd4\xe8\xdf\xd9\xee\xe9\xe6\xef\xeb\ \xe8\xf0\xec\xe8\xf1\xec\xe9\xf2\xed\xec\xf2\xed\xee\xf4\xf2\xf2\ \xf3\xf1\xf1\xf3\xed\xee\xed\xe6\xe0\xe3\xcf\xc0\xe3\xc4\xa8\xe6\ \xbe\x9b\xe5\xbd\x9b\xe6\xd3\xc5\xf0\xec\xea\xf3\xef\xec\xf4\xf0\ \xef\xf7\xf3\xf4\xf4\xf1\xf2\xf3\xed\xee\xf3\xee\xef\xf3\xf1\xf1\ \xf3\xf1\xf1\xf3\xf1\xf1\xf3\xef\xf0\xf3\xf0\xf0\xf5\xf3\xf3\xf6\ \xf4\xf4\xf5\xf3\xf3\xf5\xf4\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\ \xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf6\xf6\xf6\xf7\xf5\xf5\ \xf6\xf5\xf5\xf7\xf7\xf7\xfa\xfa\xfa\xf9\xf9\xf9\xf7\xf7\xf7\xf6\ \xf6\xf6\xf5\xf4\xf4\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\ \xf2\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf4\xf2\xf2\xf3\xf1\xf1\ \xf2\xf0\xf0\xf2\xee\xee\xf1\xeb\xec\xee\xea\xe7\xec\xe6\xe3\xeb\ \xe4\xe1\xea\xe3\xe0\xea\xe3\xe0\xe7\xe1\xda\xe6\xde\xd6\xe5\xda\ \xd2\xe3\xd7\xcd\xe2\xd4\xc7\xe1\xd0\xbe\xe2\xc0\xa6\xe4\xbb\x9d\ \xe5\xbe\xa0\xe5\xc0\xa5\xe7\xb6\x95\xef\xa7\x76\xf1\xa7\x70\xf2\ \xa5\x6f\xf6\xa1\x65\xf8\xa1\x64\xf5\x9f\x61\xf6\x9e\x61\xf6\x9e\ \x5e\xf5\x9d\x5e\xf5\x9e\x5e\xf6\x9c\x5e\xf5\x9d\x5d\xf4\x9c\x5c\ \xf5\x9c\x5c\xf4\x9b\x5b\xf6\x9c\x5b\xf3\x9a\x5c\xf5\x9a\x59\xf4\ \x9a\x5a\xf5\x9a\x5b\xf4\x9b\x5b\xf4\x9c\x5b\xf7\x99\x5a\xf6\x9b\ \x5a\xf6\x9a\x59\xf4\x99\x5c\xf6\x99\x5b\xf4\x9b\x5b\xf4\x9a\x5b\ \xf4\x9a\x5a\xf4\x99\x59\xf5\x99\x59\xf3\x99\x58\xf6\x98\x58\xf4\ \x98\x57\xf4\x98\x5a\xf4\x98\x5a\xf3\x98\x59\xf3\x98\x56\xf3\x98\ \x57\xf4\x99\x59\xf4\x97\x57\xf2\x98\x58\xf3\x97\x58\xf3\x97\x59\ \xf3\x97\x5a\xf3\x98\x57\xf4\x98\x57\xf3\x98\x57\xf3\x99\x58\xf4\ \x99\x58\xf4\x9a\x59\xf2\x98\x59\xf6\x9b\x5b\xf5\x9c\x5b\xf6\x9c\ \x5e\xea\x99\x61\xb8\x79\x55\xb7\x73\x4a\xd7\x84\x51\xbd\x79\x54\ \xb9\x6f\x3f\xce\x7e\x47\xe7\x91\x56\xe8\x92\x57\xe5\x90\x56\xe4\ \x91\x5d\xf6\x9f\x62\xe2\x99\x68\x8f\x6c\x55\x4e\x4b\x3a\x60\x5d\ \x4a\x96\x68\x46\x62\x59\x50\x5e\x4d\x3a\xaa\x79\x57\x5c\x60\x57\ \x3e\x49\x49\x61\x65\x5d\x7f\x6a\x55\x8b\x69\x46\xdf\x9a\x6a\xed\ \xa2\x6d\x00\x00\x00\xe5\xbe\x9f\xe3\xc8\xaf\xe3\xc6\xae\xe3\xc4\ \xac\xe2\xcd\xba\xe4\xd8\xcd\xe9\xe3\xde\xec\xe3\xe1\xea\xe0\xd8\ \xe6\xd6\xcb\xe6\xd7\xcd\xe8\xdc\xd5\xe8\xdf\xd9\xe9\xdf\xda\xe8\ \xd9\xce\xe4\xc5\xac\xe5\xb7\x91\xe7\xb8\x92\xea\xb3\x88\xea\xb2\ \x86\xe6\xce\xbc\xf0\xeb\xea\xf3\xf0\xf0\xf6\xf4\xf4\xf7\xf5\xf5\ \xf4\xef\xee\xf0\xeb\xe8\xef\xe9\xe8\xf0\xea\xea\xf0\xeb\xe9\xef\ \xea\xe7\xee\xe8\xe7\xf2\xee\xee\xf4\xf3\xf3\xf6\xf4\xf4\xf4\xf2\ \xf2\xf1\xef\xef\xf3\xef\xef\xf3\xf0\xf0\xf3\xf0\xf0\xf4\xf3\xf3\ \xf6\xf6\xf6\xf5\xf4\xf4\xf5\xf3\xf3\xf3\xf1\xf1\xf4\xf2\xf2\xf5\ \xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf5\xf4\xf4\xf5\xf3\ \xf3\xf4\xf2\xf2\xf2\xf0\xf0\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\ \xf4\xf2\xf2\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xf0\xf0\xf2\ \xee\xef\xf0\xeb\xeb\xec\xe8\xe4\xe9\xe1\xde\xe7\xdf\xda\xe7\xe0\ \xdc\xe6\xde\xd9\xe2\xd6\xce\xe2\xd6\xca\xe2\xd5\xcb\xe1\xd3\xc9\ \xe2\xd3\xca\xe2\xd5\xc9\xe3\xca\xb4\xe3\xc8\xb0\xe3\xc6\xae\xe6\ \xb9\x99\xee\xa8\x7a\xef\xaa\x77\xee\xac\x7d\xf3\xa3\x6c\xf7\x9f\ \x63\xf6\x9f\x61\xf6\x9e\x60\xf5\x9d\x5f\xf5\x9d\x5f\xf5\x9d\x5d\ \xf4\x9d\x5c\xf5\x9c\x5c\xf4\x9c\x5e\xf4\x9c\x5d\xf5\x9c\x5d\xf6\ \x9b\x5a\xf4\x9b\x5c\xf3\x9a\x59\xf6\x9a\x5a\xf4\x9a\x5a\xf5\x9a\ \x5a\xf5\x9a\x59\xf5\x9a\x5a\xf6\x99\x5b\xf4\x9a\x5a\xf4\x9b\x59\ \xf4\x9b\x5a\xf5\x9a\x5a\xf5\x9a\x5a\xf5\x99\x58\xf4\x98\x59\xf5\ \x98\x58\xf4\x98\x56\xf4\x97\x5a\xf4\x97\x58\xf4\x97\x57\xf3\x97\ \x57\xf3\x97\x57\xf4\x97\x57\xf4\x97\x56\xf3\x98\x58\xf4\x98\x57\ \xf4\x98\x56\xf4\x98\x57\xf3\x96\x56\xf4\x98\x58\xf3\x97\x57\xf2\ \x98\x57\xf2\x98\x57\xf2\x99\x58\xf4\x98\x58\xf4\x99\x58\xf3\x99\ \x59\xee\x95\x59\xdd\x8a\x54\xd8\x8c\x55\xd4\x83\x4c\xd5\x85\x56\ \xc3\x7f\x5d\xc6\x7c\x50\x88\x62\x49\xbc\x6c\x37\xd8\x88\x54\xeb\ \x90\x50\xea\x93\x56\xf2\x99\x5b\xe9\x92\x57\xe8\x94\x5e\xf8\xa1\ \x62\xc1\x8a\x62\x6c\x4f\x3a\xd1\x8a\x57\xc8\x91\x6a\x53\x48\x40\ \x4f\x49\x3f\x4d\x4c\x3f\x74\x5c\x46\x57\x5c\x54\x66\x5d\x59\x6f\ \x65\x55\xc8\x8a\x5e\xab\x7d\x5c\xd5\x94\x64\xba\x8c\x6f\x00\x00\ \x00\xef\xaa\x76\xec\xad\x7f\xed\xac\x7a\xe9\xb1\x87\xe4\xc1\xa4\ \xe3\xcf\xbd\xe4\xcf\xbc\xe5\xc1\xa5\xe6\xba\x98\xe9\xac\x7f\xe8\ \xac\x82\xe5\xb7\x96\xe4\xb8\x96\xe5\xb7\x95\xe8\xb1\x87\xed\xab\ \x79\xed\xac\x7a\xef\xaa\x75\xef\xab\x76\xec\xb0\x80\xe5\xc8\xb4\ \xe8\xdf\xda\xea\xe0\xdd\xea\xe4\xe0\xf1\xed\xec\xef\xea\xe8\xea\ \xe3\xdd\xe6\xdc\xd4\xe7\xde\xd8\xea\xe0\xdb\xea\xe3\xde\xed\xe6\ \xe4\xf1\xec\xed\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xef\xf0\xec\xe7\xe6\ \xeb\xe6\xe4\xec\xe5\xe3\xeb\xe4\xe3\xee\xe9\xe9\xf1\xee\xee\xf1\ \xed\xed\xef\xea\xea\xef\xec\xec\xf2\xef\xf0\xf4\xf2\xf2\xf5\xf3\ \xf4\xf5\xf4\xf4\xf6\xf4\xf4\xf6\xf3\xf3\xf4\xf2\xf2\xf3\xf1\xf1\ \xf2\xf0\xf0\xf2\xef\xef\xf2\xf0\xf0\xf2\xf1\xf1\xf2\xf0\xf0\xf2\ \xef\xef\xf2\xef\xef\xf2\xef\xef\xf2\xf0\xf0\xf0\xee\xee\xef\xea\ \xe8\xe9\xe3\xde\xe2\xd6\xcd\xe0\xd0\xc3\xe2\xd6\xcc\xe4\xd6\xcf\ \xe0\xd3\xc7\xdf\xca\xb7\xe0\xc7\xb4\xe0\xc7\xb2\xe0\xcb\xb9\xe2\ \xd2\xc6\xe2\xd3\xc4\xe0\xcd\xbb\xe3\xc2\xaa\xe6\xbc\x9e\xea\xb2\ \x89\xed\xaf\x82\xee\xac\x7f\xf3\xa3\x6d\xf5\x9f\x62\xf5\x9e\x5f\ \xf5\x9e\x5e\xf5\x9d\x5f\xf5\x9d\x5e\xf4\x9c\x5e\xf4\x9d\x5c\xf4\ \x9b\x5d\xf5\x9d\x5b\xf4\x9c\x5b\xf4\x9b\x5b\xf4\x9b\x5a\xf7\x9a\ \x5c\xf4\x9b\x5b\xf3\x9a\x5a\xf5\x9a\x5a\xf4\x9a\x5a\xf5\x9a\x59\ \xf6\x9a\x5b\xf4\x9a\x5c\xf5\x9b\x5c\xf5\x9a\x5b\xf5\x9a\x5a\xf5\ \x99\x59\xf5\x99\x58\xf4\x98\x56\xf4\x98\x56\xf4\x98\x56\xf4\x97\ \x57\xf3\x98\x57\xf3\x98\x56\xf3\x97\x57\xf4\x97\x57\xf4\x97\x56\ \xf3\x98\x56\xf4\x97\x57\xf3\x98\x58\xf3\x98\x57\xf3\x97\x56\xf3\ \x97\x55\xf3\x95\x57\xf4\x97\x55\xf3\x97\x56\xf2\x96\x56\xf3\x98\ \x57\xf3\x98\x56\xf3\x98\x58\xee\x95\x58\xeb\x91\x56\xe6\x8f\x56\ \xca\x7d\x50\xe6\x90\x55\xf4\x9a\x5d\xde\x90\x5f\xb5\x76\x52\x9e\ \x64\x44\xd2\x82\x4a\xd0\x80\x4e\xe4\x89\x4c\xe9\x91\x55\xf1\x97\ \x57\xf6\x9d\x5c\xea\x91\x56\xf5\x9d\x61\xf5\x9d\x62\xe7\x9a\x66\ \xc7\x88\x5e\xa3\x71\x4f\xc0\x7c\x51\x58\x4f\x4a\x41\x39\x2d\x36\ \x39\x35\x2c\x3a\x38\x5b\x58\x52\xa1\x76\x50\x94\x7b\x67\x63\x4c\ \x3e\x8e\x6f\x54\x87\x6d\x58\xa2\x78\x5a\x00\x00\x00\xf1\xa7\x6e\ \xf0\xa7\x71\xf0\xa9\x70\xec\xae\x7f\xe8\xb3\x8c\xe8\xb4\x8b\xeb\ \xaf\x80\xee\xa8\x72\xee\xa9\x75\xee\xab\x76\xee\xac\x79\xed\xae\ \x7d\xed\xab\x77\xf0\xa8\x70\xf0\xa8\x6e\xf0\xab\x78\xef\xad\x7a\ \xf1\xab\x75\xf0\xab\x75\xee\xac\x7a\xea\xb2\x89\xe7\xb9\x96\xe8\ \xb7\x94\xe2\xc1\xa8\xe4\xcf\xc1\xe6\xc9\xb6\xe2\xca\xb6\xe2\xce\ \xbd\xe2\xd3\xc6\xe5\xd9\xce\xea\xe2\xdc\xeb\xe4\xe2\xee\xe8\xe7\ \xf0\xec\xec\xee\xea\xea\xec\xe7\xe6\xe8\xe3\xdc\xe7\xe1\xd9\xe8\ \xe0\xda\xe8\xe0\xda\xea\xe3\xe1\xeb\xe5\xe3\xea\xe3\xe0\xe8\xe1\ \xdc\xea\xe4\xe1\xee\xe8\xe9\xf0\xed\xec\xf3\xef\xf0\xf3\xf0\xf1\ \xf3\xf2\xf2\xf3\xf1\xf1\xf2\xef\xef\xf0\xed\xed\xf1\xed\xed\xf1\ \xec\xec\xf1\xed\xed\xef\xec\xed\xf0\xec\xec\xef\xea\xeb\xf0\xea\ \xeb\xf1\xec\xed\xf0\xed\xed\xee\xe9\xea\xea\xe4\xe1\xe5\xda\xd3\ \xdf\xc8\xb5\xdf\xc7\xb2\xdf\xce\xbb\xe0\xd0\xc3\xe0\xd1\xc3\xe1\ \xd0\xc0\xe2\xc7\xb2\xe3\xbf\xa4\xe2\xc2\xa8\xe1\xc3\xac\xe2\xc3\ \xad\xe2\xc2\xab\xe5\xbf\xa5\xe6\xba\x9c\xe8\xb5\x92\xed\xae\x81\ \xf1\xa6\x72\xf5\x9f\x65\xf5\x9e\x60\xf5\x9d\x5f\xf6\x9d\x5e\xf6\ \x9e\x60\xf5\x9d\x5f\xf4\x9d\x5e\xf4\x9c\x5c\xf3\x9c\x5b\xf4\x9b\ \x5b\xf3\x9b\x5b\xf4\x9b\x5b\xf5\x9c\x5a\xf7\x9a\x5b\xf3\x99\x5b\ \xf4\x9a\x5a\xf5\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x59\xf5\x9a\x5c\xf4\ \x9b\x5a\xf4\x9a\x5a\xf5\x99\x5a\xf5\x98\x57\xf5\x98\x58\xf4\x98\ \x57\xf5\x98\x57\xf3\x97\x56\xf3\x97\x56\xf4\x97\x58\xf3\x97\x56\ \xf1\x97\x57\xf3\x96\x56\xf3\x97\x56\xf3\x97\x55\xf2\x97\x56\xf3\ \x96\x55\xf4\x96\x55\xf4\x97\x56\xf3\x97\x55\xf3\x96\x54\xf3\x95\ \x56\xf3\x96\x56\xf2\x96\x57\xf3\x96\x56\xf3\x96\x57\xf4\x99\x57\ \xea\x90\x52\xec\x91\x52\xef\x94\x57\xf4\x9a\x59\xf7\x9c\x5d\xf9\ \x9e\x5e\xdc\x93\x63\xb4\x75\x50\xa9\x6d\x46\xad\x68\x43\xd6\x82\ \x4c\xc3\x7a\x4b\xe8\x8d\x4e\xf1\x96\x56\xf5\x9c\x5b\xf6\x9c\x5b\ \xdf\x90\x5b\xee\x94\x55\xe8\x95\x5d\xdc\x91\x60\xbe\x81\x5a\x57\ \x46\x3a\x97\x64\x40\x31\x3b\x3e\x2e\x37\x31\x4f\x43\x34\x44\x4b\ \x45\x4f\x4c\x44\x5c\x4e\x3c\xa3\x70\x4b\x4d\x47\x3c\x62\x54\x44\ \x50\x49\x40\x5e\x53\x46\x00\x00\x00\xf3\xa7\x6d\xf4\xa6\x6b\xf3\ \xa6\x6b\xf2\xa6\x6d\xf1\xa8\x6f\xf1\xa8\x6d\xf1\xa8\x6c\xf1\xa6\ \x6e\xf1\xa7\x6d\xf0\xa8\x6e\xf0\xa9\x6f\xf0\xa7\x6f\xf2\xa7\x6e\ \xf0\xa8\x6d\xf1\xa7\x6f\xf1\xa7\x71\xef\xa8\x72\xf1\xa8\x72\xef\ \xac\x76\xef\xa9\x72\xef\xa9\x73\xef\xa9\x76\xeb\xb1\x84\xe9\xb5\ \x8a\xed\xad\x7e\xe9\xb1\x87\xe4\xbd\x9f\xe4\xd1\xc1\xe7\xda\xd0\ \xe9\xde\xd7\xe9\xe1\xdd\xe9\xe1\xde\xea\xe3\xdf\xeb\xe5\xe2\xea\ \xe4\xe0\xe8\xe1\xde\xe6\xdc\xd4\xe6\xda\xd3\xe6\xdb\xd4\xe5\xdb\ \xd3\xe7\xde\xda\xe9\xe0\xdd\xe8\xdf\xdb\xe5\xdd\xd5\xe7\xde\xd9\ \xe8\xe2\xdf\xea\xe4\xe1\xed\xe8\xe8\xf0\xeb\xeb\xf1\xeb\xed\xf0\ \xeb\xec\xef\xe9\xea\xef\xea\xe9\xed\xe8\xe8\xee\xe8\xe8\xed\xe7\ \xe7\xeb\xe5\xe4\xec\xe5\xe4\xec\xe5\xe4\xec\xe7\xe6\xec\xe8\xe6\ \xeb\xe6\xe5\xea\xe4\xe2\xe7\xde\xdb\xe0\xd1\xc4\xe1\xc4\xab\xe1\ \xc6\xaf\xe0\xcb\xba\xe2\xc3\xac\xe1\xc5\xb1\xe0\xcd\xbb\xe1\xcc\ \xba\xe1\xc7\xb0\xe3\xc3\xab\xe7\xb3\x92\xea\xaf\x86\xe6\xb6\x95\ \xe6\xb8\x99\xe7\xb8\x97\xea\xb0\x89\xf2\xa3\x6b\xf4\x9f\x64\xf5\ \x9e\x60\xf5\x9d\x5f\xf5\x9d\x60\xf5\x9d\x5f\xf6\x9d\x60\xf5\x9d\ \x5f\xf5\x9c\x5d\xf4\x9c\x5c\xf3\x9c\x5a\xf4\x9a\x5a\xf4\x9b\x5b\ \xf3\x9b\x5a\xf4\x9a\x5a\xf4\x9a\x5c\xf4\x9a\x5b\xf4\x9a\x5a\xf5\ \x9a\x5b\xf6\x9a\x5a\xf4\x9a\x5c\xf4\x99\x5a\xf3\x9a\x5b\xf4\x99\ \x5b\xf5\x98\x58\xf3\x98\x58\xf3\x98\x59\xf3\x97\x58\xf2\x98\x58\ \xf3\x97\x57\xf3\x97\x56\xf2\x97\x56\xf2\x96\x56\xf2\x97\x56\xf3\ \x97\x56\xf4\x96\x55\xf4\x96\x56\xf3\x96\x55\xf3\x96\x54\xf4\x95\ \x55\xf3\x96\x55\xf3\x95\x55\xf4\x95\x55\xf3\x96\x54\xf3\x97\x56\ \xf2\x96\x57\xf3\x96\x55\xf3\x96\x54\xee\x95\x54\xee\x91\x51\xf3\ \x96\x57\xf4\x99\x5a\xf2\x99\x5b\xee\x95\x5b\xd4\x88\x5a\xa2\x64\ \x45\xb4\x70\x41\xc6\x7e\x51\xcf\x7f\x4b\xe9\x91\x52\xd2\x89\x59\ \xda\x81\x48\xf6\x9c\x5b\xf4\x9a\x5b\xf8\x9c\x5a\xd6\x91\x5f\xde\ \x89\x4f\xac\x6c\x46\xcb\x87\x5a\x69\x4f\x3e\x65\x4e\x3e\x53\x47\ \x35\x31\x3c\x3c\x47\x44\x36\x66\x4f\x37\x5a\x50\x43\x2d\x3a\x35\ \x3f\x38\x28\xae\x75\x4c\x49\x4e\x4a\x71\x52\x39\x6c\x56\x45\x73\ \x5c\x47\x00\x00\x00\xf3\xa6\x6b\xf5\xa7\x6a\xf5\xa5\x6a\xf5\xa5\ \x69\xf3\xa6\x6b\xf3\xa6\x6b\xf3\xa6\x6b\xf4\xa5\x6c\xf2\xa6\x6d\ \xf2\xa6\x6c\xf2\xa7\x6b\xf4\xa7\x6a\xf4\xa6\x6c\xf2\xa8\x6c\xf1\ \xa7\x6f\xf3\xa8\x6f\xf4\xa7\x6b\xf3\xa6\x6c\xf0\xa8\x72\xf1\xa6\ \x6e\xf0\xa6\x6d\xef\xa8\x73\xe8\xb5\x90\xe6\xb7\x94\xea\xb4\x88\ \xe9\xb2\x88\xe6\xba\x96\xe3\xd1\xc1\xe3\xd7\xcd\xe5\xd9\xd0\xe2\ \xd4\xc9\xe1\xd3\xc9\xe5\xdb\xd6\xe6\xdc\xd5\xe6\xde\xd7\xe8\xde\ \xd6\xe5\xd8\xce\xe3\xd6\xcd\xe4\xd6\xcb\xe3\xd6\xc9\xe4\xd7\xcf\ \xe4\xd9\xd0\xe4\xd8\xcf\xe4\xd8\xcf\xe5\xdc\xd4\xe5\xdc\xd5\xe8\ \xdf\xd9\xe9\xe3\xdf\xea\xe4\xe0\xeb\xe6\xe2\xec\xe6\xe6\xea\xe6\ \xe3\xea\xe4\xe1\xea\xe2\xe0\xe9\xe2\xe0\xe7\xe0\xdb\xe7\xde\xda\ \xe7\xe0\xdc\xe8\xe0\xdc\xe7\xdf\xda\xe7\xdf\xdb\xe8\xdf\xdc\xe7\ \xe0\xdb\xe2\xd4\xca\xe1\xc1\xa8\xe1\xc7\xb1\xe1\xcc\xb8\xdf\xc9\ \xb5\xe2\xc2\xa9\xe2\xc4\xab\xe1\xc7\xb0\xe1\xc7\xb2\xe3\xc2\xa9\ \xe4\xbc\xa0\xea\xad\x84\xee\xac\x7c\xec\xaa\x7b\xec\xaa\x7d\xec\ \xaa\x7e\xf1\xa1\x68\xf5\x9d\x5f\xf5\x9d\x60\xf5\x9c\x5e\xf5\x9d\ \x5f\xf4\x9f\x5f\xf5\x9c\x5d\xf5\x9d\x5e\xf4\x9c\x5d\xf3\x9c\x5c\ \xf4\x9b\x5b\xf5\x9b\x5a\xf2\x99\x5c\xf3\x9a\x59\xf5\x9a\x5c\xf4\ \x9a\x5b\xf2\x99\x5b\xf3\x9a\x5a\xf6\x9a\x5a\xf4\x9a\x5a\xf3\x9a\ \x5a\xf3\x99\x5c\xf3\x9a\x5a\xf5\x98\x59\xf4\x97\x58\xf3\x98\x57\ \xf5\x97\x56\xf3\x97\x56\xf5\x98\x54\xf2\x96\x57\xf3\x97\x55\xf3\ \x97\x56\xf2\x96\x56\xf2\x96\x55\xf2\x95\x55\xf4\x96\x55\xf3\x96\ \x55\xf2\x95\x53\xf3\x96\x54\xf3\x95\x53\xf3\x96\x55\xf3\x95\x55\ \xf2\x96\x55\xf2\x95\x54\xf5\x95\x53\xf4\x94\x54\xf2\x96\x54\xf2\ \x95\x53\xf3\x95\x54\xed\x91\x52\xf2\x96\x55\xf3\x96\x57\xf0\x97\ \x58\xe9\x94\x5c\xcb\x83\x56\xc1\x75\x43\xba\x78\x4d\xd8\x85\x4b\ \xe0\x88\x4f\xde\x88\x51\xdf\x8a\x54\xc2\x7c\x4f\xb6\x61\x33\xf8\ \x9e\x5d\xf4\x99\x5b\xed\x97\x5a\xe1\x98\x63\x98\x5e\x39\xa8\x6c\ \x47\xc3\x89\x63\x50\x4f\x47\x22\x2e\x28\x24\x2d\x2a\x38\x3c\x32\ \x45\x4c\x45\x29\x36\x2e\x40\x3b\x31\x38\x3d\x32\x76\x5f\x42\xa2\ \x73\x4d\x4f\x51\x4c\x51\x41\x2b\x39\x3f\x3a\x57\x50\x44\x00\x00\ \x00\xf6\xa6\x69\xf6\xa5\x69\xf5\xa5\x68\xf5\xa5\x68\xf6\xa5\x6a\ \xf6\xa6\x69\xf6\xa5\x68\xf4\xa5\x6a\xf5\xa5\x6a\xf4\xa5\x69\xf4\ \xa5\x6b\xf5\xa4\x6b\xf4\xa4\x6d\xf5\xa7\x6b\xf3\xa6\x6d\xf3\xa6\ \x6d\xf5\xa6\x6a\xf6\xa6\x69\xf4\xa5\x6a\xf4\xa4\x6a\xf4\xa4\x69\ \xf2\xa5\x6e\xed\xad\x7e\xea\xb0\x85\xea\xb0\x87\xec\xad\x7c\xe5\ \xc1\xa3\xe1\xcb\xb5\xe0\xca\xb6\xe2\xcd\xb8\xe3\xc0\xa7\xe2\xc8\ \xb3\xe0\xce\xbd\xe1\xd2\xc4\xe5\xd8\xcf\xe4\xd8\xcf\xe3\xd4\xc6\ \xe2\xd3\xc4\xe1\xd3\xc4\xe4\xd5\xc9\xe1\xd3\xc6\xe0\xd0\xbe\xe0\ \xcd\xbc\xe0\xcd\xbe\xe2\xd1\xc4\xe1\xd4\xc7\xe4\xd8\xd0\xe6\xd9\ \xd3\xe6\xdc\xd6\xe8\xe0\xdc\xe6\xdf\xdb\xe7\xde\xd9\xe5\xdc\xd5\ \xe4\xd9\xd3\xe5\xda\xd5\xe5\xd9\xd1\xe4\xd6\xce\xe0\xd0\xc5\xde\ \xc9\xba\xdf\xcd\xbe\xe0\xd2\xc6\xe2\xd5\xcd\xe2\xd5\xcd\xe0\xc7\ \xb6\xe3\xc2\xa8\xe1\xc6\xb2\xdf\xc6\xb2\xe1\xbe\xa7\xe5\xb3\x92\ \xe5\xb6\x9a\xe6\xb5\x97\xe7\xb5\x94\xe5\xb6\x95\xe9\xaf\x88\xeb\ \xa8\x7b\xf2\xa0\x67\xf3\x9f\x66\xf2\x9d\x63\xf3\x9c\x61\xf4\x9b\ \x5d\xf5\x9b\x5e\xf5\x9c\x5f\xf4\x9c\x5e\xf5\x9c\x5f\xf5\x9b\x5e\ \xf4\x9c\x5d\xf3\x9a\x5d\xf4\x9a\x5b\xf3\x9a\x5a\xf4\x9b\x5a\xf4\ \x9b\x5b\xf1\x99\x59\xf4\x9a\x5b\xf5\x9b\x5c\xf5\x9a\x5c\xf3\x9a\ \x5a\xf4\x9a\x58\xf1\x99\x5a\xf3\x99\x58\xf4\x99\x58\xf4\x97\x57\ \xf4\x97\x58\xf3\x97\x57\xf2\x97\x56\xf4\x97\x55\xf4\x96\x55\xf3\ \x96\x57\xf3\x96\x56\xf2\x97\x56\xf2\x96\x56\xf3\x96\x55\xf2\x96\ \x54\xf2\x96\x55\xf3\x95\x55\xf2\x95\x55\xf2\x95\x55\xf2\x95\x54\ \xf3\x95\x54\xf3\x96\x53\xf4\x94\x54\xf2\x95\x53\xf2\x96\x55\xf4\ \x94\x54\xf3\x94\x54\xf4\x94\x53\xf2\x96\x53\xf2\x95\x55\xf1\x96\ \x57\xef\x92\x55\xf1\x96\x56\xf2\x97\x57\xed\x94\x5a\xc7\x80\x54\ \xcd\x79\x46\xbb\x74\x4b\x97\x64\x4d\xdc\x7f\x43\xe7\x90\x56\xe5\ \x91\x57\xe4\x8c\x53\xf5\x99\x59\xe1\x8c\x55\xef\x92\x53\xf0\x99\ \x5a\xca\x81\x52\x72\x55\x3f\x60\x45\x30\x6d\x56\x46\x49\x40\x35\ \x1c\x2c\x2b\x4f\x3a\x21\x6e\x5b\x43\x93\x61\x37\xb0\x7d\x53\x89\ \x63\x42\xe5\x95\x58\xc4\x89\x62\xac\x73\x4c\xf2\xab\x76\xab\x80\ \x65\xa6\x72\x47\x66\x5a\x4b\x5b\x56\x48\x00\x00\x00\xf5\xa5\x68\ \xf5\xa5\x68\xf4\xa4\x68\xf5\xa5\x69\xf5\xa5\x69\xf5\xa5\x68\xf5\ \xa4\x69\xf5\xa5\x6a\xf4\xa6\x68\xf5\xa5\x69\xf5\xa6\x6a\xf5\xa6\ \x6b\xf5\xa6\x6a\xf6\xa6\x69\xf5\xa6\x6b\xf5\xa4\x6c\xf5\xa4\x6a\ \xf5\xa4\x69\xf5\xa4\x69\xf5\xa4\x68\xf4\xa4\x69\xf3\xa3\x69\xf0\ \xa9\x76\xef\xaa\x77\xf1\xa8\x73\xed\xab\x7a\xe6\xb7\x97\xe6\xb5\ \x92\xe5\xbc\x9e\xe6\xb9\x96\xe6\xb5\x92\xe3\xc1\xa8\xe2\xc8\xb2\ \xe5\xd5\xc5\xe9\xdc\xd4\xe3\xd4\xc3\xe0\xc9\xb6\xe2\xc6\xb0\xe2\ \xca\xb7\xe2\xc4\xaf\xe3\xbf\xa5\xe1\xc4\xab\xe2\xbf\xa4\xe4\xb8\ \x97\xe3\xb7\x97\xe0\xc4\xae\xdf\xcd\xbe\xe1\xd2\xc6\xe5\xda\xd3\ \xe8\xde\xda\xe7\xdc\xd7\xe3\xd6\xce\xe0\xd1\xc5\xdf\xcf\xc3\xe3\ \xd5\xcc\xe3\xd6\xcc\xe0\xd0\xc2\xe2\xc1\xa8\xe3\xbe\xa2\xe3\xc0\ \xa6\xe2\xc6\xb1\xe0\xca\xb7\xe1\xc8\xb4\xe2\xbe\xa4\xe3\xbe\xa6\ \xe4\xbb\x9f\xe6\xb2\x91\xe9\xae\x86\xeb\xab\x80\xee\xa4\x74\xf0\ \xa2\x6c\xee\xa8\x76\xec\xa8\x7a\xf0\x9f\x69\xf3\x9c\x5f\xf3\x9c\ \x5b\xf4\x9b\x5c\xf2\x9b\x5c\xf3\x9a\x5b\xf3\x9a\x5d\xf4\x9a\x5c\ \xf4\x9b\x5c\xf3\x9a\x5b\xf4\x9a\x5c\xf5\x9b\x5b\xf3\x9a\x5e\xf3\ \x9b\x5b\xf3\x9a\x5a\xf3\x9a\x5a\xf3\x9b\x5a\xf3\x9a\x5d\xf2\x9a\ \x5a\xf4\x9a\x5a\xf4\x9a\x5a\xf4\x99\x5a\xf3\x9a\x5a\xf5\x9a\x59\ \xf2\x98\x5b\xf2\x98\x59\xf3\x98\x58\xf4\x97\x57\xf4\x98\x57\xf2\ \x97\x57\xf3\x97\x55\xf3\x97\x56\xf4\x96\x55\xf3\x96\x55\xf4\x97\ \x54\xf2\x96\x55\xf3\x96\x55\xf4\x95\x54\xf3\x95\x53\xf2\x95\x54\ \xf4\x96\x56\xf1\x95\x55\xf3\x95\x54\xf1\x95\x54\xf2\x94\x54\xf2\ \x95\x52\xf1\x96\x55\xf3\x95\x55\xf2\x95\x56\xf1\x95\x54\xf3\x93\ \x54\xf2\x95\x52\xf2\x94\x53\xf1\x95\x54\xf2\x95\x55\xf1\x94\x54\ \xf3\x95\x53\xf1\x96\x57\xde\x8b\x55\xcb\x7e\x4d\xd0\x84\x52\xca\ \x7c\x4a\xed\x90\x51\xe8\x90\x55\xe6\x8c\x4e\xec\x91\x54\xef\x95\ \x55\xf4\x97\x57\xe6\x90\x57\xe6\x8c\x50\xf4\x9b\x5c\xd0\x83\x51\ \xaa\x76\x51\x3f\x46\x3e\x63\x4a\x35\x4f\x47\x39\x6b\x53\x36\xee\ \x97\x57\xd1\x94\x6c\xc1\x7a\x49\xc1\x83\x58\xbe\x82\x55\xd8\x93\ \x62\x9c\x6d\x4f\xa3\x6f\x51\xdc\x93\x60\xb4\x81\x60\xb2\x7f\x59\ \x9f\x6f\x4f\x75\x68\x55\x00\x00\x00\xf5\xa4\x67\xf4\xa4\x67\xf4\ \xa3\x68\xf5\xa4\x67\xf5\xa4\x68\xf5\xa4\x67\xf5\xa4\x67\xf5\xa4\ \x68\xf5\xa5\x67\xf6\xa5\x68\xf5\xa5\x6a\xf5\xa5\x6a\xf6\xa5\x6a\ \xf5\xa5\x69\xf6\xa6\x69\xf6\xa5\x69\xf5\xa4\x68\xf4\xa4\x66\xf4\ \xa4\x67\xf5\xa3\x66\xf4\xa4\x68\xf4\xa3\x68\xf3\xa4\x69\xf3\xa5\ \x6b\xf4\xa4\x6b\xf1\xa5\x6e\xef\xa7\x73\xf0\xa6\x71\xed\xa9\x77\ \xee\xa7\x73\xed\xaa\x7b\xe5\xb9\x98\xe3\xc8\xb2\xe3\xd4\xc7\xe4\ \xd6\xc9\xe2\xc7\xb1\xe3\xbd\xa0\xe6\xb8\x96\xe8\xb3\x8e\xec\xa8\ \x79\xeb\xac\x80\xe6\xb7\x95\xe8\xb1\x87\xec\xab\x7c\xeb\xaa\x7e\ \xe7\xb2\x8f\xe2\xbc\xa1\xe0\xcd\xbd\xe3\xd8\xcf\xe6\xdb\xd4\xe4\ \xd8\xcf\xe0\xca\xb9\xe0\xc6\xb2\xe0\xc8\xb5\xdf\xca\xbb\xe1\xc7\ \xb5\xe4\xb9\x9c\xe4\xb7\x98\xe5\xb3\x90\xe7\xb4\x91\xe4\xb9\x9c\ \xe2\xc0\xa9\xe3\xbb\x9f\xe7\xb2\x8d\xe9\xae\x89\xe8\xb1\x8b\xec\ \xac\x81\xef\xa8\x77\xf0\xa4\x6f\xf3\x9c\x62\xf4\x9c\x5d\xf2\x9c\ \x62\xf1\x9b\x5d\xf3\x9a\x5c\xf3\x9a\x5b\xf3\x9b\x5a\xf2\x9b\x5b\ \xf3\x9a\x5b\xf2\x9a\x5b\xf3\x9a\x5a\xf5\x9a\x5a\xf4\x9a\x5b\xf3\ \x9b\x5a\xf3\x9a\x5a\xf4\x9a\x5b\xf3\x9a\x5a\xf4\x9a\x5b\xf4\x9a\ \x5c\xf3\x9a\x5a\xf5\x9a\x5b\xf2\x99\x5c\xf5\x9a\x5a\xf3\x99\x5a\ \xf3\x99\x5a\xf3\x99\x59\xf4\x99\x59\xf4\x98\x58\xf3\x97\x58\xf2\ \x98\x58\xf2\x97\x58\xf3\x96\x57\xf2\x97\x56\xf4\x96\x54\xf4\x96\ \x55\xf3\x96\x56\xf2\x96\x55\xf3\x96\x54\xf2\x96\x55\xf2\x95\x56\ \xf3\x96\x55\xf2\x95\x54\xf4\x95\x54\xf2\x95\x53\xf2\x95\x54\xf3\ \x94\x54\xf3\x94\x54\xf2\x95\x53\xf2\x95\x54\xf2\x94\x55\xf2\x95\ \x53\xf1\x95\x55\xf2\x95\x54\xf2\x94\x53\xf1\x95\x55\xf2\x93\x53\ \xf2\x94\x53\xf2\x94\x53\xf2\x93\x53\xf3\x95\x54\xf3\x95\x55\xee\ \x94\x56\xd8\x84\x51\xd6\x85\x51\xb5\x75\x4e\xdd\x85\x46\xf4\x98\ \x56\xe1\x8b\x53\xf0\x93\x52\xef\x93\x55\xf2\x96\x54\xf2\x96\x57\ \xeb\x92\x57\xec\x94\x57\xc4\x7f\x52\x93\x67\x4a\x88\x5c\x3c\x82\ \x56\x37\xbb\x78\x47\xad\x76\x4a\xf1\x9a\x5a\xf5\xa2\x6a\xf0\xa0\ \x6b\xc6\x85\x5b\x9c\x74\x55\x42\x4c\x48\x87\x66\x49\x4c\x46\x3d\ \x61\x49\x34\xaa\x73\x48\xa2\x71\x4e\xa4\x7f\x67\x6c\x5a\x4b\x55\ \x55\x4c\x00\x00\x00\xf5\xa3\x66\xf5\xa4\x65\xf5\xa3\x65\xf5\xa4\ \x64\xf5\xa3\x65\xf5\xa3\x65\xf5\xa3\x66\xf5\xa4\x67\xf5\xa4\x67\ \xf6\xa4\x68\xf5\xa5\x69\xf5\xa6\x69\xf6\xa4\x69\xf5\xa3\x69\xf5\ \xa3\x68\xf5\xa3\x67\xf6\xa3\x68\xf5\xa3\x67\xf5\xa3\x66\xf5\xa2\ \x64\xf6\xa3\x67\xf5\xa3\x66\xf5\xa2\x65\xf5\xa3\x66\xf5\xa3\x66\ \xf5\xa3\x68\xf3\xa3\x6a\xf3\xa4\x6a\xf4\xa3\x6a\xf3\xa3\x66\xf4\ \xa2\x6a\xef\xa5\x72\xe9\xb0\x8a\xe3\xc0\xa7\xe4\xbd\xa1\xeb\xac\ \x7f\xed\xa7\x75\xee\xa5\x73\xf1\xa4\x6f\xf1\xa4\x6b\xf0\xa5\x71\ \xed\xa9\x7a\xf0\xa6\x71\xf1\xa3\x6e\xf0\xa2\x6a\xee\xa5\x70\xe8\ \xb3\x8e\xe2\xc4\xad\xe0\xd0\xc2\xe1\xd1\xc5\xe1\xcb\xb9\xe2\xbe\ \xa4\xe4\xb2\x91\xe7\xae\x8a\xe7\xaf\x8c\xe8\xaf\x8b\xee\xa3\x6f\ \xee\xa4\x73\xef\xa5\x72\xf0\xa4\x70\xed\xa9\x7b\xe9\xad\x87\xed\ \xa9\x79\xed\xab\x7c\xea\xae\x87\xee\xa9\x7c\xf0\xa3\x70\xf2\xa1\ \x69\xf2\x9e\x63\xf3\x9c\x5c\xf3\x9b\x5c\xf3\x9a\x5c\xf2\x9a\x59\ \xf3\x9a\x59\xf3\x9a\x5a\xf4\x9a\x59\xf3\x9a\x5b\xf5\x9a\x5a\xf4\ \x99\x59\xf4\x9a\x5a\xf4\x99\x59\xf5\x99\x5a\xf5\x9a\x59\xf4\x9a\ \x5b\xf3\x99\x59\xf3\x9a\x59\xf4\x9a\x5c\xf3\x99\x5b\xf3\x99\x5a\ \xf3\x9a\x5a\xf2\x98\x59\xf4\x9a\x5b\xf4\x99\x5b\xf4\x98\x58\xf3\ \x99\x58\xf4\x99\x59\xf3\x98\x58\xf4\x97\x57\xf3\x97\x58\xf2\x97\ \x57\xf3\x97\x55\xf1\x96\x56\xf2\x95\x55\xf3\x96\x55\xf3\x96\x54\ \xf3\x96\x54\xf4\x95\x54\xf1\x95\x55\xf3\x95\x55\xf1\x95\x55\xf1\ \x95\x55\xf3\x94\x54\xf2\x96\x54\xf2\x95\x54\xf2\x95\x54\xf2\x94\ \x53\xf2\x95\x54\xf2\x94\x54\xf2\x94\x56\xf3\x94\x54\xf2\x94\x55\ \xf1\x95\x55\xf1\x95\x55\xf1\x95\x54\xf4\x93\x54\xf1\x94\x54\xf2\ \x95\x52\xf2\x94\x53\xf2\x96\x55\xf4\x95\x56\xe8\x92\x58\xd5\x83\ \x51\xd4\x82\x4c\xc7\x79\x48\xed\x91\x4e\xf2\x96\x57\xe8\x8f\x53\ \xef\x93\x54\xf3\x95\x54\xf2\x96\x55\xf1\x96\x55\xf1\x97\x58\xee\ \x94\x59\xb7\x7e\x59\x5d\x56\x4d\x72\x4e\x30\xca\x7a\x3f\xf8\xa3\ \x65\xf5\x9f\x64\xed\x9a\x65\xdd\x96\x69\xc6\x81\x54\xa7\x76\x56\ \x7b\x5e\x49\x26\x39\x3b\x39\x36\x2c\x3a\x3c\x36\x3d\x3c\x30\x6a\ \x5f\x4b\x4d\x4b\x45\x4c\x4d\x4a\x65\x52\x43\x5c\x5b\x4d\x00\x00\ \x00\xf5\xa3\x66\xf7\xa3\x64\xf7\xa2\x65\xf6\xa1\x65\xf5\xa3\x66\ \xf6\xa3\x65\xf5\xa3\x67\xf5\xa3\x65\xf4\xa4\x67\xf5\xa4\x67\xf5\ \xa4\x68\xf4\xa4\x67\xf6\xa5\x6b\xf4\xa2\x66\xf5\xa2\x66\xf6\xa3\ \x65\xf6\xa2\x66\xf6\xa3\x66\xf5\xa2\x67\xf4\xa2\x64\xf6\xa2\x65\ \xf6\xa2\x64\xf7\xa2\x65\xf7\xa2\x66\xf6\xa1\x65\xf5\xa3\x67\xf4\ \xa2\x68\xf5\xa2\x68\xf5\xa2\x67\xf6\xa1\x65\xf4\xa2\x65\xf5\xa0\ \x64\xf5\xa1\x68\xf1\xa4\x6e\xf1\xa5\x71\xf4\xa1\x66\xf5\x9f\x66\ \xf3\xa1\x66\xf3\xa2\x6a\xf3\xa3\x6b\xf2\xa2\x68\xf3\xa4\x6a\xf4\ \xa1\x65\xf3\xa1\x66\xf2\xa1\x68\xef\xa8\x74\xe7\xba\x99\xe4\xc4\ \xab\xe1\xca\xb7\xe1\xc7\xb4\xe4\xb9\x9d\xea\xaa\x80\xf1\xa1\x68\ \xf3\x9f\x66\xf2\x9f\x66\xf1\x9f\x66\xf2\x9f\x62\xf4\x9f\x63\xf4\ \x9f\x63\xf2\x9f\x64\xf1\x9e\x64\xf2\xa0\x64\xf2\xa2\x6a\xf0\xa4\ \x70\xef\xa1\x6b\xf2\x9e\x62\xf2\x9d\x62\xf2\x9d\x60\xf3\x9b\x5d\ \xf3\x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5a\xf3\x9b\x5a\xf4\x9a\x5b\xf3\ \x99\x5a\xf3\x9a\x5a\xf3\x99\x5b\xf3\x9a\x5b\xf4\x99\x5a\xf3\x99\ \x5b\xf4\x99\x5a\xf4\x9a\x5a\xf6\x9a\x5a\xf5\x9a\x5c\xf3\x99\x59\ \xf4\x9b\x5a\xf4\x9a\x5b\xf3\x99\x59\xf4\x9a\x5b\xf3\x99\x5c\xf4\ \x99\x59\xf3\x99\x59\xf4\x98\x58\xf4\x97\x58\xf3\x98\x59\xf2\x98\ \x59\xf2\x97\x59\xf3\x97\x57\xf3\x97\x55\xf3\x96\x55\xf2\x97\x56\ \xf2\x95\x55\xf1\x95\x55\xf2\x96\x56\xf2\x96\x55\xf3\x96\x55\xf2\ \x95\x55\xf4\x95\x53\xf3\x95\x53\xf3\x94\x54\xf2\x95\x54\xf3\x95\ \x54\xf2\x95\x56\xf1\x94\x54\xf1\x95\x53\xf2\x95\x54\xf1\x94\x54\ \xf1\x95\x55\xf1\x95\x56\xf1\x95\x54\xf2\x95\x54\xf1\x95\x55\xf3\ \x95\x55\xf1\x95\x54\xf1\x94\x54\xf1\x93\x54\xf2\x94\x52\xf1\x94\ \x55\xf1\x95\x55\xf3\x95\x55\xea\x91\x58\xce\x82\x50\xe1\x8c\x55\ \xc9\x7a\x48\xef\x93\x54\xf2\x95\x58\xf0\x94\x53\xf1\x94\x54\xf1\ \x93\x54\xf1\x94\x55\xf1\x94\x55\xf2\x98\x58\xed\x96\x5a\xb0\x77\ \x53\x3b\x3a\x34\xca\x7e\x46\xf5\x9d\x61\xf8\xa3\x67\xd6\x8e\x5f\ \x91\x6b\x55\xbb\x7b\x4f\x5b\x52\x49\x50\x3d\x32\x3e\x35\x2a\x24\ \x36\x2e\x29\x36\x2f\x29\x31\x2b\x28\x35\x30\x35\x3f\x3a\x50\x52\ \x4a\x4d\x4c\x43\x41\x3c\x31\x8c\x69\x46\x00\x00\x00\xf7\xa2\x63\ \xf7\xa1\x64\xf5\xa2\x64\xf7\xa2\x63\xf6\xa2\x64\xf6\xa1\x65\xf5\ \xa1\x64\xf7\xa2\x67\xf6\xa2\x67\xf5\xa3\x66\xf5\xa4\x68\xf5\xa3\ \x66\xf4\xa2\x66\xf6\xa3\x65\xf6\xa2\x65\xf6\xa2\x65\xf5\xa3\x66\ \xf7\xa2\x66\xf7\xa1\x64\xf7\xa0\x64\xf7\xa1\x64\xf7\xa1\x64\xf6\ \xa0\x64\xf5\xa0\x63\xf7\xa1\x64\xf7\xa0\x64\xf7\xa0\x64\xf6\xa1\ \x64\xf6\xa1\x64\xf5\xa1\x65\xf6\xa0\x63\xf6\xa1\x64\xf6\xa0\x62\ \xf5\x9f\x63\xf6\xa0\x62\xf5\x9e\x63\xf6\xa0\x65\xf6\xa0\x64\xf4\ \xa1\x66\xf3\xa1\x68\xf4\xa2\x67\xf3\xa1\x68\xf7\xa0\x63\xf4\xa5\ \x6c\xf0\xa9\x74\xed\xaa\x7b\xe7\xb7\x97\xe7\xb9\x9b\xe6\xb4\x93\ \xea\xaa\x81\xf1\xa0\x69\xf2\x9f\x64\xf3\x9e\x64\xf4\x9f\x62\xf4\ \x9e\x60\xf1\x9d\x60\xf2\x9d\x60\xf3\x9d\x61\xf2\x9c\x60\xf3\x9e\ \x5f\xf4\x9d\x5e\xf3\x9c\x5f\xf3\x9c\x5f\xf1\x9d\x63\xf2\x9c\x5e\ \xf4\x9b\x5e\xf3\x9c\x5c\xf3\x9b\x5d\xf3\x9b\x5a\xf2\x99\x5a\xf2\ \x9a\x5b\xf4\x9a\x5a\xf3\x99\x5c\xf3\x9a\x5a\xf6\x99\x59\xf3\x9a\ \x59\xf2\x99\x5b\xf3\x9a\x59\xf3\x9a\x59\xf3\x9a\x58\xf3\x98\x59\ \xf4\x98\x5a\xf4\x99\x58\xf2\x99\x58\xf4\x99\x5a\xf3\x99\x59\xf4\ \x97\x58\xf3\x99\x58\xf2\x99\x59\xf4\x98\x59\xf3\x97\x59\xf3\x98\ \x59\xf4\x97\x56\xf3\x97\x58\xf1\x97\x59\xf3\x98\x57\xf2\x97\x57\ \xf4\x96\x57\xf3\x95\x55\xf1\x95\x54\xf2\x95\x54\xf3\x96\x56\xf2\ \x95\x53\xf1\x96\x54\xf2\x95\x54\xf3\x94\x53\xf3\x95\x54\xf5\x93\ \x53\xf2\x95\x53\xf2\x94\x53\xf1\x95\x52\xf1\x96\x54\xf1\x95\x55\ \xf2\x95\x54\xf1\x95\x54\xf2\x94\x53\xf2\x94\x55\xf1\x95\x56\xf2\ \x94\x54\xf2\x95\x56\xf2\x94\x55\xf2\x94\x54\xf1\x95\x55\xf1\x94\ \x56\xf2\x95\x53\xf2\x94\x53\xf1\x93\x54\xf1\x94\x53\xf0\x94\x54\ \xf3\x94\x54\xeb\x92\x56\xd8\x83\x52\xdb\x8b\x54\xcf\x7a\x4b\xeb\ \x8e\x52\xf2\x95\x55\xf1\x94\x53\xf1\x94\x52\xf2\x94\x53\xf3\x96\ \x59\xf2\x98\x5b\xf1\x97\x57\xd8\x8c\x5b\x8c\x60\x49\x88\x5d\x3c\ \xde\x8a\x4b\xf6\xa1\x67\xe7\x9a\x65\x8e\x69\x51\x5e\x51\x41\x4d\ \x41\x31\x37\x3e\x39\x15\x21\x1f\x1e\x23\x1d\x25\x36\x2c\x2a\x37\ \x32\x2f\x32\x2f\x33\x3a\x39\x77\x59\x40\x5d\x53\x41\x6c\x60\x4e\ \x3d\x4b\x45\x7b\x62\x46\x00\x00\x00\xf8\xa1\x65\xf7\xa2\x65\xf7\ \xa1\x65\xf7\xa2\x65\xf7\xa2\x64\xf7\xa1\x65\xf7\xa2\x65\xf7\xa1\ \x65\xf5\xa2\x64\xf5\xa2\x66\xf6\xa4\x69\xf7\xa2\x65\xf6\xa1\x66\ \xf7\xa2\x63\xf7\xa1\x65\xf7\xa2\x65\xf6\xa1\x65\xf6\xa1\x64\xf6\ \xa1\x65\xf8\xa2\x64\xf7\xa1\x65\xf7\xa1\x63\xf7\xa1\x64\xf7\xa0\ \x64\xf6\xa0\x63\xf6\xa0\x63\xf6\xa0\x64\xf6\xa0\x64\xf6\x9f\x64\ \xf6\xa0\x63\xf6\xa0\x62\xf7\x9f\x63\xf5\x9f\x63\xf6\xa0\x62\xf6\ \x9f\x63\xf6\x9f\x63\xf5\x9e\x62\xf4\x9f\x65\xf4\xa1\x6a\xf3\xa1\ \x69\xf4\x9f\x63\xf5\x9f\x63\xf5\x9f\x63\xf1\xa2\x68\xf0\xa2\x6b\ \xf1\x9f\x68\xee\xa8\x78\xec\xa9\x7f\xef\xa6\x72\xf0\xa2\x6b\xf3\ \x9e\x61\xf3\x9d\x61\xf4\x9d\x5f\xf4\x9d\x5e\xf3\x9d\x5e\xf3\x9d\ \x5f\xf4\x9c\x5e\xf2\x9c\x5f\xf4\x9b\x5f\xf3\x9c\x5f\xf3\x9b\x5f\ \xf4\x9b\x5c\xf3\x9b\x5d\xf3\x9b\x5e\xf4\x9b\x5d\xf4\x9b\x5c\xf2\ \x9a\x5b\xf2\x9a\x5a\xf4\x9a\x5a\xf2\x99\x59\xf1\x99\x59\xf4\x99\ \x5a\xf4\x99\x5a\xf3\x99\x5c\xf4\x9a\x5b\xf3\x99\x5b\xf3\x99\x59\ \xf2\x99\x5a\xf3\x99\x59\xf3\x98\x58\xf2\x97\x57\xf3\x98\x58\xf4\ \x98\x57\xf2\x97\x57\xf4\x97\x58\xf4\x97\x57\xf3\x98\x57\xf2\x98\ \x58\xf2\x98\x57\xf3\x98\x57\xf1\x98\x57\xf3\x96\x58\xf3\x97\x57\ \xf1\x97\x58\xf3\x97\x57\xf3\x97\x56\xf3\x96\x56\xf3\x96\x55\xf3\ \x95\x55\xf3\x96\x54\xf3\x95\x55\xf2\x96\x54\xf1\x96\x53\xf2\x95\ \x54\xf2\x95\x53\xf3\x94\x53\xf2\x95\x53\xf4\x94\x52\xf2\x94\x52\ \xf1\x95\x53\xf1\x95\x55\xf1\x94\x54\xf1\x94\x53\xf3\x95\x54\xf0\ \x94\x56\xf2\x93\x54\xf1\x94\x55\xf1\x95\x56\xf1\x93\x55\xf2\x95\ \x54\xf0\x95\x55\xf1\x94\x54\xf1\x94\x54\xf1\x95\x55\xf2\x93\x55\ \xf1\x93\x53\xf0\x94\x53\xf0\x94\x52\xf2\x93\x54\xf0\x94\x55\xe7\ \x8f\x55\xe4\x90\x5b\xdc\x8a\x56\xe5\x8b\x50\xe7\x8b\x4f\xf2\x93\ \x53\xf1\x93\x53\xf0\x93\x54\xf1\x95\x56\xf0\x97\x5c\xf2\x9c\x60\ \xeb\x98\x5f\x7e\x62\x4d\x80\x52\x2e\xc9\x7e\x4f\xd0\x82\x4c\xe4\ \x96\x62\xc5\x88\x5e\x3f\x43\x40\x22\x2a\x26\x2b\x31\x2a\x32\x2e\ \x29\x25\x2c\x27\x25\x2d\x26\x32\x36\x2e\x46\x45\x37\x41\x3d\x31\ \x71\x51\x32\x62\x54\x43\x90\x66\x43\x4c\x53\x4c\x34\x41\x38\x31\ \x37\x34\x00\x00\x00\xf8\xa1\x64\xf6\xa0\x64\xf7\xa1\x63\xf7\xa1\ \x63\xf7\xa1\x64\xf7\xa3\x64\xf8\xa1\x65\xf6\xa1\x66\xf7\xa2\x66\ \xf6\xa2\x65\xf7\xa2\x68\xf8\xa1\x64\xf7\xa1\x64\xf7\xa1\x63\xf6\ \xa1\x64\xf7\xa2\x63\xf7\xa1\x64\xf7\xa1\x63\xf7\xa0\x63\xf6\xa1\ \x62\xf6\x9f\x62\xf7\x9f\x61\xf5\x9f\x61\xf6\x9f\x61\xf5\x9f\x61\ \xf5\x9f\x61\xf5\x9f\x62\xf5\xa0\x61\xf5\x9e\x61\xf6\x9e\x62\xf4\ \x9f\x61\xf5\x9f\x61\xf4\x9f\x62\xf4\xa0\x63\xf5\xa0\x63\xf6\x9e\ \x62\xf5\x9e\x61\xf5\x9f\x62\xf3\xa0\x64\xf4\x9e\x64\xf5\x9e\x61\ \xf4\x9e\x61\xf2\x9d\x61\xf3\x9d\x60\xf3\x9d\x5f\xf3\x9d\x61\xf3\ \x9e\x62\xf1\x9f\x64\xf1\x9f\x64\xf3\x9d\x60\xf4\x9c\x5f\xf3\x9e\ \x5f\xf4\x9d\x5f\xf3\x9c\x5e\xf3\x9c\x5e\xf3\x9b\x5e\xf3\x9b\x5c\ \xf4\x9b\x5f\xf3\x9a\x5c\xf3\x9b\x5c\xf2\x9a\x59\xf3\x9b\x5a\xf3\ \x9a\x5c\xf3\x9a\x5c\xf2\x9b\x5b\xf3\x99\x5b\xf4\x9a\x5c\xf4\x9a\ \x5a\xf1\x99\x5b\xf3\x9a\x59\xf3\x99\x5a\xf3\x99\x5a\xf2\x99\x59\ \xf3\x9a\x59\xf3\x99\x5a\xf3\x98\x5a\xf3\x98\x59\xf2\x98\x59\xf4\ \x98\x5a\xf4\x98\x56\xf3\x97\x58\xf4\x97\x57\xf3\x97\x56\xf2\x97\ \x57\xf3\x98\x58\xf4\x97\x57\xf2\x97\x59\xf2\x97\x57\xf4\x97\x57\ \xf2\x97\x57\xf2\x98\x57\xf2\x97\x58\xf3\x97\x57\xf2\x96\x57\xf3\ \x96\x56\xf2\x96\x57\xf3\x97\x56\xf2\x97\x55\xf3\x96\x56\xf3\x95\ \x55\xf2\x96\x55\xf2\x95\x55\xf2\x96\x54\xf2\x95\x54\xf2\x95\x55\ \xf1\x95\x54\xf2\x94\x54\xf2\x94\x52\xf2\x93\x53\xf2\x94\x54\xf1\ \x94\x54\xf2\x94\x53\xf0\x94\x53\xf1\x95\x55\xf0\x95\x55\xf1\x94\ \x55\xf2\x94\x54\xf1\x95\x55\xf0\x94\x55\xf2\x94\x54\xf0\x94\x53\ \xf1\x94\x55\xf1\x95\x55\xf2\x95\x53\xf1\x93\x54\xf0\x94\x53\xf1\ \x94\x54\xf1\x94\x52\xf1\x93\x53\xf1\x93\x54\xeb\x91\x55\xe5\x91\ \x5b\xe0\x8f\x5b\xe8\x8f\x53\xeb\x91\x55\xec\x90\x52\xf0\x93\x51\ \xf1\x93\x53\xf1\x96\x58\xf0\x98\x5a\xf2\x9c\x60\xe3\x92\x5e\xcf\ \x81\x4e\xbc\x7c\x53\xb5\x74\x49\x82\x5b\x43\xa1\x69\x47\x7d\x5d\ \x45\x2e\x34\x33\x31\x34\x2b\x32\x33\x27\x58\x4b\x3a\x67\x47\x2d\ \x74\x57\x3d\x98\x67\x3f\xcc\x88\x57\xb3\x81\x5c\xc0\x7b\x48\xae\ \x83\x64\xe0\x98\x64\x8d\x79\x6e\x3f\x43\x3d\x36\x31\x27\x00\x00\ \x00\xf7\xa1\x63\xf6\xa0\x64\xf8\xa1\x63\xf7\xa1\x63\xf6\xa0\x63\ \xf6\xa1\x64\xf7\xa0\x65\xf7\xa1\x64\xf7\xa1\x64\xf6\xa1\x64\xf7\ \xa2\x64\xf7\xa1\x63\xf7\xa1\x63\xf7\xa1\x64\xf7\xa0\x63\xf8\xa1\ \x62\xf8\xa0\x63\xf6\x9f\x61\xf7\x9f\x61\xf5\x9f\x60\xf7\x9e\x5f\ \xf5\x9e\x60\xf6\x9e\x60\xf6\x9d\x60\xf6\x9e\x60\xf6\x9d\x60\xf6\ \x9c\x61\xf4\x9e\x60\xf6\x9e\x61\xf5\x9e\x61\xf5\x9e\x61\xf5\x9e\ \x5f\xf6\xa0\x61\xf5\x9f\x63\xf4\x9e\x62\xf5\x9e\x61\xf6\x9e\x61\ \xf4\x9e\x60\xf5\x9e\x61\xf4\x9e\x61\xf5\x9d\x60\xf3\x9c\x61\xf4\ \x9d\x61\xf5\x9d\x5f\xf4\x9c\x5f\xf4\x9c\x60\xf5\x9c\x60\xf4\x9b\ \x5f\xf3\x9c\x5d\xf4\x9c\x5c\xf3\x9b\x5e\xf3\x9b\x5c\xf4\x9c\x5d\ \xf3\x9b\x5c\xf3\x9b\x5b\xf3\x9a\x5c\xf3\x99\x5c\xf4\x9a\x5c\xf2\ \x9a\x5b\xf2\x9a\x5c\xf3\x99\x59\xf2\x99\x59\xf2\x9a\x5b\xf3\x99\ \x5a\xf1\x99\x5a\xf2\x9a\x5a\xf4\x9a\x5b\xf2\x9a\x5a\xf2\x99\x5c\ \xf3\x99\x5a\xf3\x98\x5a\xf4\x98\x58\xf2\x98\x59\xf3\x99\x58\xf2\ \x99\x58\xf2\x98\x58\xf3\x97\x58\xf1\x97\x58\xf1\x97\x58\xf4\x98\ \x56\xf3\x97\x57\xf3\x97\x57\xf3\x96\x56\xf1\x97\x58\xf3\x97\x57\ \xf2\x95\x55\xf4\x96\x58\xf2\x96\x56\xf3\x96\x57\xf2\x96\x56\xf3\ \x97\x56\xf3\x96\x57\xf3\x96\x57\xf1\x96\x57\xf2\x96\x57\xf1\x96\ \x57\xf1\x96\x57\xf1\x96\x55\xf2\x96\x56\xf3\x95\x54\xf3\x96\x55\ \xf0\x95\x55\xf3\x94\x54\xf1\x94\x54\xf1\x94\x54\xf0\x94\x55\xf1\ \x94\x52\xf2\x93\x53\xf1\x94\x53\xf2\x94\x54\xf1\x94\x54\xf1\x94\ \x54\xf1\x94\x55\xf2\x94\x56\xf2\x94\x55\xf1\x94\x55\xf1\x95\x52\ \xf1\x95\x55\xf1\x94\x55\xf0\x93\x52\xf1\x93\x52\xf1\x94\x54\xf0\ \x95\x54\xf1\x95\x56\xf0\x94\x54\xf1\x95\x54\xf1\x94\x53\xf1\x94\ \x53\xf0\x94\x54\xf2\x93\x54\xef\x94\x55\xed\x92\x56\xea\x91\x58\ \xed\x91\x56\xf1\x93\x52\xee\x91\x55\xf1\x93\x53\xf0\x94\x56\xf1\ \x94\x56\xf2\x96\x57\xf2\x97\x5d\xe6\x92\x59\xc1\x7b\x4e\x92\x65\ \x4b\xa5\x6c\x42\x52\x4c\x3e\x47\x39\x2b\x46\x44\x36\x7d\x54\x34\ \x5b\x49\x3a\x3f\x3b\x31\x7b\x5b\x40\xce\x7f\x4a\xf1\x9e\x66\xd5\ \x95\x66\xb9\x7f\x59\x89\x62\x46\xc1\x81\x54\xa9\x83\x6d\x91\x77\ \x5b\x73\x6b\x5d\x31\x3f\x47\x25\x2b\x26\x00\x00\x00\xf7\xa0\x63\ \xf7\xa0\x63\xf7\xa2\x64\xf8\xa1\x63\xf6\xa0\x63\xf7\xa0\x63\xf7\ \xa1\x64\xf7\xa2\x65\xf7\xa2\x63\xf7\xa0\x63\xf7\xa0\x63\xf6\xa0\ \x63\xf6\xa0\x63\xf7\xa0\x62\xf7\xa0\x62\xf6\xa0\x61\xf7\xa0\x61\ \xf6\x9f\x61\xf6\x9e\x5f\xf5\x9e\x60\xf6\x9d\x5f\xf5\x9d\x5f\xf5\ \x9d\x5e\xf6\x9d\x60\xf6\x9f\x5f\xf6\x9d\x5f\xf5\x9d\x61\xf4\x9e\ \x60\xf5\x9e\x5f\xf4\x9e\x62\xf4\x9e\x60\xf4\x9e\x5f\xf5\xa0\x60\ \xf5\x9e\x5f\xf4\x9e\x5f\xf5\x9e\x5f\xf6\x9e\x60\xf4\x9d\x60\xf5\ \x9d\x5f\xf5\x9d\x5e\xf4\x9d\x5f\xf3\x9c\x5e\xf4\x9d\x5d\xf4\x9c\ \x5d\xf4\x9c\x5e\xf3\x9c\x5e\xf4\x9d\x5f\xf5\x9b\x5e\xf3\x9b\x5c\ \xf4\x9b\x5d\xf3\x9b\x5b\xf2\x9b\x5a\xf4\x9a\x5b\xf3\x9a\x5a\xf3\ \x9a\x5a\xf3\x99\x5b\xf4\x99\x5a\xf3\x99\x59\xf3\x9a\x58\xf3\x99\ \x5a\xf3\x99\x59\xf2\x99\x5b\xf2\x98\x59\xf1\x99\x59\xf2\x99\x5b\ \xf2\x99\x58\xf3\x99\x5a\xf3\x99\x59\xf2\x98\x59\xf2\x98\x5b\xf2\ \x98\x58\xf3\x98\x58\xf3\x98\x59\xf2\x98\x58\xf3\x97\x58\xf2\x97\ \x58\xf4\x97\x57\xf2\x98\x57\xf3\x97\x57\xf1\x97\x58\xf2\x98\x56\ \xf3\x96\x57\xf2\x97\x56\xf2\x96\x56\xf3\x96\x55\xf1\x94\x56\xf3\ \x96\x56\xf3\x96\x55\xf3\x96\x56\xf2\x95\x55\xf2\x97\x56\xf2\x96\ \x56\xf2\x96\x58\xf1\x97\x58\xf2\x96\x57\xf1\x97\x56\xf0\x95\x56\ \xf2\x96\x55\xf2\x96\x54\xf1\x97\x56\xf1\x95\x54\xf0\x95\x55\xf1\ \x93\x56\xf0\x95\x53\xf1\x94\x54\xf2\x94\x55\xf2\x94\x53\xf2\x93\ \x54\xf1\x93\x53\xf2\x93\x52\xf3\x94\x52\xf2\x94\x52\xf1\x95\x54\ \xf1\x94\x56\xf0\x94\x56\xf1\x94\x53\xf0\x94\x53\xf1\x94\x53\xf0\ \x94\x54\xef\x94\x53\xf0\x93\x53\xf1\x93\x54\xf0\x94\x55\xf1\x94\ \x55\xf0\x94\x54\xf1\x94\x54\xef\x94\x54\xf0\x93\x53\xf0\x94\x53\ \xf2\x93\x54\xf0\x94\x54\xf0\x93\x52\xee\x92\x53\xee\x91\x52\xf1\ \x92\x51\xf1\x92\x53\xf1\x93\x53\xf1\x92\x56\xf0\x94\x53\xf1\x95\ \x57\xf3\x96\x5b\xf3\x9a\x5c\xad\x7c\x59\x3a\x3f\x39\x83\x5d\x3e\ \x4b\x44\x37\x4a\x3f\x32\x3b\x3b\x2d\x82\x4e\x2f\xbb\x77\x49\xd6\ \x8e\x5b\xd5\x92\x62\xab\x77\x58\xef\x97\x5a\xed\xa5\x73\xa9\x7c\ \x60\x6e\x50\x38\x87\x63\x46\x7c\x6c\x60\x5a\x5c\x53\x3e\x46\x3f\ \x31\x3e\x3b\x2c\x3e\x3f\x00\x00\x00\xf8\xa0\x62\xf9\xa1\x63\xf6\ \xa0\x62\xf7\x9f\x61\xf7\xa0\x62\xf8\xa1\x62\xf6\xa1\x63\xf7\x9f\ \x63\xf7\xa0\x62\xf6\x9f\x61\xf7\xa0\x60\xf5\xa0\x64\xf5\x9f\x61\ \xf7\xa0\x61\xf7\x9e\x5f\xf6\x9f\x62\xf5\x9f\x60\xf6\x9e\x5f\xf5\ \x9e\x5e\xf6\x9e\x61\xf6\x9d\x60\xf4\x9d\x5f\xf5\x9e\x5e\xf5\x9e\ \x60\xf5\x9d\x5d\xf4\x9d\x5d\xf5\x9d\x5f\xf4\x9c\x5e\xf5\x9c\x5d\ \xf4\x9d\x5e\xf4\x9c\x5d\xf5\x9b\x5f\xf5\x9c\x5e\xf4\x9d\x5e\xf4\ \x9d\x5d\xf5\x9c\x5f\xf3\x9b\x5d\xf4\x9b\x5e\xf3\x9c\x5c\xf3\x9c\ \x5b\xf4\x9b\x5d\xf2\x9b\x5e\xf3\x9b\x5c\xf3\x9c\x5c\xf3\x9b\x5c\ \xf4\x9a\x5d\xf3\x9c\x5e\xf3\x9a\x5a\xf4\x9b\x5c\xf3\x9b\x5e\xf2\ \x9a\x5c\xf4\x9a\x5a\xf1\x99\x5a\xf2\x9a\x5c\xf4\x99\x5b\xf4\x99\ \x59\xf4\x9a\x59\xf3\x98\x5b\xf4\x9a\x59\xf5\x9a\x59\xf4\x98\x59\ \xf3\x98\x59\xf3\x99\x59\xf3\x97\x57\xf2\x98\x59\xf3\x98\x58\xf2\ \x99\x59\xf3\x98\x59\xf1\x98\x58\xf3\x97\x59\xf4\x98\x57\xf2\x98\ \x57\xf2\x97\x58\xf3\x98\x58\xf2\x97\x59\xf2\x96\x58\xf3\x96\x56\ \xf2\x97\x55\xf3\x97\x56\xf2\x97\x57\xf2\x96\x56\xf2\x96\x56\xf1\ \x97\x55\xf4\x96\x56\xf3\x95\x55\xf3\x95\x55\xf2\x95\x56\xf2\x95\ \x56\xf2\x95\x56\xf1\x96\x57\xf2\x96\x55\xf2\x97\x56\xf3\x96\x56\ \xf2\x95\x57\xf1\x96\x54\xf1\x96\x54\xf1\x96\x55\xf2\x95\x56\xf1\ \x95\x55\xf0\x94\x56\xf1\x95\x54\xf1\x95\x53\xf0\x94\x55\xf2\x93\ \x55\xf1\x94\x54\xf2\x93\x53\xf2\x94\x53\xf1\x93\x54\xf2\x94\x52\ \xf2\x93\x53\xf2\x93\x53\xf2\x94\x53\xf2\x94\x52\xf0\x95\x54\xf0\ \x93\x53\xf1\x93\x50\xf1\x94\x53\xf0\x94\x53\xf0\x93\x53\xf2\x93\ \x53\xf1\x93\x53\xef\x93\x53\xf0\x94\x55\xef\x94\x56\xf0\x93\x52\ \xee\x92\x52\xf0\x92\x53\xf0\x94\x55\xf0\x95\x55\xef\x95\x55\xef\ \x92\x52\xf0\x92\x52\xf0\x92\x52\xef\x91\x51\xf0\x91\x52\xf0\x92\ \x50\xf1\x92\x53\xf0\x93\x52\xf0\x94\x54\xf2\x95\x57\xe3\x8e\x57\ \xcd\x86\x5b\xa0\x6b\x4b\x54\x4a\x3c\x3e\x3f\x35\x6c\x4c\x39\x4b\ \x43\x36\x73\x4d\x2c\xe4\x90\x54\xe1\x90\x5d\xf5\xa0\x66\xc8\x8a\ \x64\x6d\x5d\x4d\x76\x5c\x47\xe8\x9a\x63\x80\x68\x59\x43\x3f\x31\ \x4d\x4a\x3d\x40\x42\x3c\x50\x55\x50\x3b\x45\x44\x1d\x2b\x26\x2c\ \x3e\x3e\x00\x00\x00\xf7\xa0\x62\xf5\xa0\x61\xf6\x9f\x61\xf5\x9e\ \x60\xf6\x9f\x60\xf5\x9f\x61\xf5\x9e\x60\xf5\x9f\x61\xf6\x9f\x61\ \xf6\xa0\x5f\xf6\x9f\x60\xf6\x9e\x61\xf6\x9e\x61\xf5\x9e\x5e\xf5\ \x9e\x5e\xf5\x9f\x5f\xf6\x9e\x5e\xf5\x9d\x5d\xf5\x9d\x5e\xf6\x9d\ \x61\xf4\x9d\x5f\xf5\x9d\x5f\xf5\x9c\x5f\xf4\x9b\x5d\xf3\x9b\x5b\ \xf3\x9b\x5d\xf4\x9c\x5e\xf5\x9b\x5d\xf4\x9b\x5d\xf3\x9b\x5b\xf3\ \x9b\x5d\xf4\x9c\x5b\xf3\x9b\x5b\xf4\x9b\x5d\xf4\x9a\x60\xf3\x9a\ \x5a\xf3\x9a\x5d\xf3\x9a\x5c\xf3\x9a\x5b\xf4\x9a\x5c\xf3\x9b\x5b\ \xf2\x9a\x59\xf4\x9a\x5c\xf4\x9a\x5d\xf3\x9a\x5b\xf2\x99\x5c\xf3\ \x99\x59\xf2\x99\x5b\xf3\x99\x5c\xf3\x99\x5a\xf3\x99\x5c\xf1\x99\ \x5c\xf3\x99\x5b\xf3\x99\x5a\xf4\x99\x5a\xf3\x99\x58\xf3\x98\x59\ \xf2\x99\x58\xf3\x98\x56\xf3\x97\x59\xf2\x97\x5a\xf3\x98\x56\xf1\ \x98\x58\xf1\x97\x5a\xf3\x98\x57\xf1\x97\x58\xf2\x97\x58\xf1\x97\ \x57\xf3\x97\x59\xf3\x96\x57\xf1\x97\x56\xf4\x97\x56\xf3\x97\x56\ \xf3\x96\x56\xf2\x95\x55\xf2\x95\x55\xf2\x96\x56\xf2\x96\x56\xf1\ \x95\x56\xf2\x96\x55\xf3\x95\x56\xf3\x96\x56\xf2\x96\x55\xf3\x95\ \x55\xf2\x95\x56\xf1\x96\x55\xf1\x97\x56\xf2\x97\x57\xf3\x97\x56\ \xf3\x96\x56\xf1\x96\x57\xf3\x95\x57\xf2\x95\x56\xf1\x96\x55\xf1\ \x96\x54\xf1\x95\x55\xf1\x94\x56\xf1\x95\x55\xf1\x95\x55\xf2\x95\ \x54\xf2\x94\x53\xf3\x94\x54\xf1\x94\x54\xf1\x94\x54\xf0\x94\x54\ \xf0\x93\x54\xf1\x93\x53\xf1\x94\x54\xf0\x94\x55\xf1\x94\x53\xf1\ \x92\x52\xf0\x92\x52\xf2\x92\x53\xf0\x92\x53\xf1\x94\x55\xf0\x94\ \x54\xf1\x93\x54\xf2\x93\x53\xf0\x93\x53\xf1\x93\x52\xf0\x94\x53\ \xf0\x93\x53\xef\x94\x57\xef\x94\x56\xf0\x95\x58\xf1\x94\x54\xf0\ \x94\x54\xef\x96\x58\xef\x96\x5a\xef\x93\x57\xef\x92\x53\xef\x91\ \x50\xf0\x91\x51\xf0\x91\x51\xf0\x91\x51\xef\x91\x52\xf0\x92\x52\ \xf1\x93\x53\xf1\x94\x56\xf4\x97\x59\xc3\x78\x4a\x87\x61\x44\x3f\ \x39\x2e\x52\x3b\x28\x72\x4c\x2f\xba\x71\x3f\xf4\x9b\x5d\xe3\x98\ \x64\xb3\x7a\x57\xc4\x7e\x54\xc0\x80\x56\xb2\x7c\x5a\x65\x5d\x55\ \x3c\x40\x36\x8c\x69\x4f\x6a\x5b\x52\x42\x39\x2f\x59\x49\x32\x4d\ \x4f\x42\x2f\x40\x40\x29\x3b\x40\x1c\x2c\x2a\x35\x45\x40\x00\x00\ \x00\xf6\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9f\x60\xf6\x9e\x5f\ \xf5\x9e\x5f\xf6\x9e\x60\xf5\x9e\x60\xf6\x9f\x61\xf6\x9f\x61\xf6\ \x9e\x60\xf6\x9e\x60\xf6\x9e\x5f\xf5\x9d\x5e\xf5\x9e\x60\xf5\x9e\ \x5f\xf5\x9e\x5e\xf5\x9d\x5d\xf5\x9c\x5f\xf4\x9d\x60\xf4\x9c\x5c\ \xf5\x9c\x5b\xf5\x9c\x5d\xf4\x9c\x5e\xf3\x9c\x5b\xf3\x9b\x5b\xf3\ \x9b\x5c\xf4\x9c\x5c\xf3\x9b\x5b\xf4\x9b\x5c\xf2\x9b\x5b\xf3\x9a\ \x5b\xf3\x9a\x5c\xf2\x9a\x5c\xf3\x9a\x5c\xf2\x99\x5d\xf2\x9a\x59\ \xf3\x9a\x5b\xf3\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x5d\xf1\x99\x59\xf3\ \x99\x5c\xf2\x99\x5b\xf2\x9a\x5a\xf2\x99\x5a\xf2\x99\x59\xf2\x99\ \x5a\xf3\x99\x5c\xf2\x99\x5b\xf4\x99\x5a\xf2\x99\x5a\xf2\x98\x5b\ \xf1\x98\x58\xf2\x98\x58\xf2\x97\x58\xf2\x98\x58\xf2\x98\x58\xf2\ \x97\x57\xf1\x97\x58\xf2\x97\x58\xf3\x96\x58\xf3\x97\x57\xf2\x97\ \x5a\xf1\x97\x58\xf2\x97\x57\xf2\x97\x56\xf2\x96\x57\xf2\x97\x55\ \xf2\x96\x56\xf2\x96\x55\xf2\x95\x55\xf2\x96\x55\xf2\x96\x56\xf2\ \x95\x56\xf2\x96\x55\xf2\x96\x55\xf2\x96\x56\xf1\x95\x57\xf2\x95\ \x54\xf3\x94\x54\xf2\x95\x56\xf2\x95\x55\xf2\x95\x55\xf1\x95\x56\ \xf2\x95\x54\xf3\x95\x57\xf1\x95\x57\xf2\x96\x58\xf3\x96\x57\xf2\ \x95\x57\xf1\x96\x57\xf1\x96\x55\xf0\x95\x55\xf0\x96\x55\xf0\x95\ \x55\xf1\x95\x55\xf2\x93\x54\xf1\x95\x54\xf1\x94\x54\xf2\x93\x54\ \xf1\x94\x58\xf1\x95\x54\xf0\x94\x55\xf0\x94\x54\xf1\x94\x53\xf1\ \x94\x53\xf1\x93\x54\xf1\x93\x52\xf0\x92\x51\xf0\x93\x52\xf1\x93\ \x51\xf2\x92\x51\xf0\x92\x53\xf1\x92\x53\xef\x93\x54\xef\x93\x53\ \xef\x93\x52\xf1\x93\x51\xef\x92\x53\xef\x92\x53\xf0\x92\x53\xf0\ \x93\x54\xef\x94\x56\xef\x94\x56\xef\x95\x57\xf0\x97\x5a\xee\x98\ \x5f\xee\x96\x5b\xef\x93\x56\xf0\x92\x53\xee\x91\x50\xf1\x90\x50\ \xf0\x90\x50\xf0\x90\x51\xf0\x91\x50\xf1\x91\x52\xed\x91\x52\xee\ \x92\x53\xed\x92\x53\xc7\x80\x56\x92\x66\x49\x49\x3d\x2e\xa8\x65\ \x34\xfa\x99\x56\xfd\xa2\x63\xec\x9a\x65\x96\x72\x5b\x4c\x41\x34\ \x86\x53\x33\x7f\x5f\x4c\x7b\x5b\x3e\x58\x52\x4c\x40\x47\x42\x42\ \x4d\x4f\x4d\x50\x4d\x42\x43\x3a\x55\x41\x2e\x50\x57\x51\x2a\x3f\ \x3b\x25\x3c\x3b\x2c\x45\x43\x30\x40\x39\x00\x00\x00\xf6\x9e\x5f\ \xf7\x9e\x61\xf6\x9d\x5e\xf6\x9d\x5f\xf6\x9e\x5f\xf5\x9e\x5e\xf7\ \x9d\x60\xf5\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9d\ \x5f\xf6\x9d\x61\xf4\x9e\x5f\xf5\x9d\x5f\xf5\x9e\x60\xf4\x9c\x5f\ \xf4\x9c\x5c\xf4\x9c\x5e\xf4\x9c\x5e\xf4\x9b\x5a\xf4\x9b\x5b\xf4\ \x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5d\xf3\x9a\x5a\xf4\x9a\x5b\xf4\x9b\ \x5c\xf3\x9b\x5a\xf3\x9a\x5d\xf2\x99\x5b\xf2\x99\x5a\xf2\x9a\x5b\ \xf3\x9a\x5c\xf3\x9b\x5c\xf2\x99\x5d\xf4\x99\x5b\xf3\x9a\x5c\xf3\ \x9a\x5a\xf3\x9a\x5a\xf2\x99\x5b\xf2\x99\x5b\xf3\x99\x5b\xf3\x99\ \x5a\xf3\x99\x5a\xf4\x99\x5b\xf2\x9a\x5a\xf1\x98\x5b\xf2\x99\x5b\ \xf3\x99\x5a\xf2\x98\x59\xf2\x99\x59\xf1\x97\x5a\xf2\x98\x57\xf2\ \x97\x58\xf1\x97\x5a\xf3\x98\x58\xf2\x96\x57\xf3\x97\x56\xf1\x97\ \x57\xf1\x95\x56\xf2\x95\x57\xf1\x96\x57\xf2\x96\x56\xf2\x96\x57\ \xf3\x97\x56\xf3\x96\x56\xf2\x95\x56\xf2\x96\x54\xf2\x95\x56\xf2\ \x96\x55\xf2\x96\x55\xf2\x96\x56\xf2\x94\x56\xf1\x96\x53\xf2\x96\ \x55\xf2\x96\x55\xf2\x95\x55\xf2\x95\x55\xf1\x95\x53\xf3\x94\x54\ \xf2\x95\x54\xf2\x95\x54\xf2\x95\x55\xf3\x95\x55\xf1\x96\x56\xf2\ \x95\x54\xf1\x95\x55\xf2\x96\x56\xf1\x95\x57\xf2\x96\x55\xf0\x95\ \x57\xef\x95\x56\xf1\x95\x56\xf0\x95\x56\xf0\x95\x54\xf1\x94\x54\ \xf1\x94\x55\xf1\x94\x54\xf1\x94\x54\xf0\x94\x54\xf0\x95\x55\xf1\ \x94\x53\xf1\x93\x54\xf1\x94\x53\xf1\x94\x53\xf1\x93\x54\xf0\x92\ \x51\xf2\x92\x51\xee\x93\x53\xf0\x92\x53\xf1\x93\x52\xf0\x93\x52\ \xf1\x91\x51\xef\x92\x52\xf0\x92\x52\xf0\x92\x52\xef\x93\x54\xf0\ \x93\x53\xf0\x93\x54\xef\x96\x59\xef\x98\x5b\xef\x9b\x5f\xef\x99\ \x60\xee\x96\x5b\xee\x94\x57\xef\x95\x59\xed\x97\x5d\xed\x96\x5b\ \xee\x94\x58\xef\x92\x52\xf0\x91\x50\xf0\x90\x50\xf0\x91\x50\xf0\ \x91\x53\xf0\x90\x50\xef\x91\x51\xeb\x91\x54\xcc\x7d\x4b\xab\x6f\ \x45\x69\x4f\x3e\x68\x41\x21\xcb\x7c\x43\xf6\x98\x54\xf7\x9c\x5f\ \xe8\x96\x61\xd1\x88\x5b\x81\x69\x55\x29\x35\x2e\x6f\x48\x2b\x94\ \x67\x4d\x44\x3e\x32\x49\x4c\x46\x3f\x45\x3f\x4f\x56\x51\x4a\x57\ \x5b\x37\x44\x45\x38\x47\x42\x30\x3f\x3f\x37\x45\x42\x32\x4c\x4f\ \x30\x46\x48\x34\x3e\x3c\x00\x00\x00\xf4\x9d\x60\xf5\x9c\x60\xf5\ \x9e\x60\xf5\x9e\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf6\x9c\x60\xf6\x9f\ \x5e\xf6\x9e\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf4\x9e\x60\xf5\x9d\x60\ \xf4\x9c\x5e\xf4\x9c\x5d\xf4\x9c\x60\xf4\x9b\x5e\xf3\x9c\x5d\xf4\ \x9c\x5e\xf4\x9b\x5e\xf4\x9a\x5b\xf3\x9a\x5c\xf4\x9b\x5c\xf2\x9b\ \x5b\xf3\x9a\x5d\xf4\x9b\x5b\xf3\x9a\x5c\xf3\x99\x5b\xf3\x9a\x5b\ \xf2\x9a\x5a\xf2\x99\x5b\xf4\x9a\x5a\xf3\x9a\x5a\xf4\x9a\x5c\xf4\ \x99\x5c\xf3\x9a\x5c\xf4\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x59\xf3\x9a\ \x59\xf3\x99\x5b\xf2\x98\x5c\xf4\x99\x59\xf3\x99\x59\xf3\x99\x5b\ \xf3\x9a\x5a\xf4\x98\x59\xf1\x98\x58\xf2\x98\x59\xf3\x99\x58\xf1\ \x98\x58\xf3\x99\x58\xf2\x98\x58\xf1\x97\x58\xf1\x97\x5a\xf1\x97\ \x58\xf1\x96\x57\xf2\x96\x56\xf1\x96\x55\xf2\x96\x56\xf2\x95\x56\ \xf1\x95\x56\xf2\x96\x56\xf1\x96\x55\xf2\x97\x55\xf2\x95\x55\xf2\ \x96\x55\xf1\x96\x53\xf2\x96\x54\xf3\x95\x56\xf3\x95\x54\xf2\x94\ \x54\xf1\x95\x54\xf3\x95\x53\xf1\x95\x53\xf1\x96\x56\xf2\x95\x55\ \xf2\x95\x54\xf2\x95\x53\xf1\x94\x54\xf1\x95\x55\xf2\x95\x53\xf2\ \x95\x54\xf2\x95\x54\xf2\x95\x55\xf1\x96\x56\xf1\x94\x55\xf1\x95\ \x55\xf1\x95\x56\xf0\x95\x56\xf1\x95\x55\xf1\x95\x55\xf1\x95\x55\ \xf1\x94\x55\xf0\x94\x56\xf0\x94\x54\xf2\x93\x52\xf1\x94\x53\xf0\ \x93\x54\xef\x93\x55\xf0\x94\x55\xf0\x94\x54\xf1\x93\x54\xf2\x93\ \x55\xf1\x93\x54\xf0\x93\x54\xf0\x93\x54\xf1\x92\x52\xf1\x92\x53\ \xf0\x93\x51\xef\x92\x52\xef\x93\x52\xf0\x92\x52\xef\x92\x51\xee\ \x92\x52\xef\x91\x52\xef\x92\x51\xef\x94\x56\xee\x93\x56\xef\x95\ \x59\xef\xa3\x6f\xed\xac\x80\xed\xa7\x7c\xee\xa1\x71\xef\x9d\x68\ \xef\x9b\x65\xef\x9c\x64\xef\x9b\x64\xed\x98\x61\xed\x93\x56\xee\ \x90\x51\xee\x91\x50\xef\x91\x52\xee\x92\x52\xef\x91\x53\xef\x90\ \x50\xf1\x91\x53\xf4\x95\x57\x98\x65\x4a\x61\x43\x2f\x9c\x5f\x31\ \xe2\x88\x45\xf7\x9a\x59\xf2\x99\x5a\xf2\x99\x5d\xce\x86\x5a\x92\ \x65\x45\x6a\x54\x40\x44\x43\x37\x5f\x45\x2b\xb7\x74\x44\xaa\x73\ \x4d\x82\x69\x53\x9e\x76\x50\x67\x66\x5e\x50\x5c\x5e\x43\x57\x5a\ \x2d\x42\x46\x2e\x45\x43\x44\x58\x55\x3c\x54\x5c\x32\x47\x50\x30\ \x3b\x3d\x00\x00\x00\xf4\x9d\x60\xf5\x9d\x5e\xf5\x9e\x5e\xf5\x9e\ \x5f\xf5\x9d\x60\xf6\x9c\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf6\x9d\x5e\ \xf5\x9e\x5e\xf5\x9d\x60\xf5\x9d\x60\xf4\x9d\x5f\xf5\x9b\x5f\xf4\ \x9d\x5e\xf3\x9c\x5e\xf4\x9b\x5a\xf4\x9b\x5d\xf3\x9c\x5c\xf3\x9a\ \x5d\xf5\x9b\x5b\xf4\x9a\x5c\xf3\x9a\x5b\xf3\x9b\x5b\xf4\x9b\x5b\ \xf1\x9a\x5a\xf3\x9a\x5b\xf5\x9a\x5c\xf4\x9a\x5d\xf3\x9a\x5a\xf3\ \x9a\x59\xf3\x99\x5a\xf4\x99\x5b\xf4\x9a\x5a\xf2\x99\x5a\xf4\x9a\ \x5b\xf3\x99\x5a\xf3\x99\x5b\xf4\x99\x5a\xf4\x99\x5b\xf4\x99\x5b\ \xf1\x98\x5a\xf2\x99\x5b\xf4\x99\x5a\xf4\x99\x5b\xf3\x99\x58\xf3\ \x98\x59\xf2\x99\x58\xf2\x98\x58\xf2\x98\x59\xf2\x98\x59\xf2\x97\ \x59\xf1\x96\x59\xf4\x97\x56\xf2\x97\x56\xf2\x96\x57\xf2\x95\x56\ \xf2\x95\x57\xf2\x96\x54\xf2\x95\x55\xf3\x96\x56\xf2\x96\x55\xf3\ \x95\x56\xf2\x95\x52\xf1\x96\x55\xf2\x95\x53\xf2\x95\x53\xf1\x95\ \x54\xf2\x96\x55\xf2\x95\x53\xf2\x94\x55\xf2\x94\x55\xf1\x95\x55\ \xf2\x95\x55\xf2\x94\x53\xf0\x95\x55\xf0\x95\x55\xf2\x94\x55\xf2\ \x94\x54\xf1\x95\x54\xf1\x94\x55\xf1\x95\x56\xf1\x95\x56\xf2\x94\ \x54\xf1\x95\x55\xf2\x95\x54\xf1\x95\x56\xf1\x95\x54\xf1\x95\x56\ \xf1\x95\x55\xf1\x95\x56\xf1\x94\x55\xf0\x94\x57\xf2\x93\x53\xf2\ \x94\x53\xf0\x94\x53\xf1\x93\x53\xf1\x93\x53\xef\x94\x54\xf0\x93\ \x53\xef\x94\x54\xf1\x93\x55\xf0\x93\x54\xf1\x92\x53\xf1\x94\x54\ \xf1\x93\x53\xf0\x92\x54\xf0\x91\x51\xef\x93\x51\xef\x93\x54\xee\ \x92\x52\xf0\x93\x51\xf0\x92\x53\xf1\x91\x50\xef\x92\x52\xef\x91\ \x51\xf0\x94\x54\xee\x94\x59\xee\x93\x56\xef\x9d\x62\xec\xaf\x86\ \xe8\xb3\x94\xea\xaa\x83\xeb\xa3\x76\xed\x9c\x6b\xed\xa0\x71\xed\ \xa0\x6f\xef\xa2\x6f\xed\xa0\x6f\xed\x99\x5f\xed\x94\x59\xec\x91\ \x54\xed\x90\x51\xee\x90\x4f\xef\x92\x54\xed\x94\x58\xe9\x8f\x52\ \x9e\x6c\x49\x65\x43\x28\xb3\x65\x29\xee\x90\x52\xf1\x95\x55\xf2\ \x95\x56\xf3\x97\x5a\xf5\x99\x5e\xa6\x75\x57\x5a\x49\x3a\x55\x40\ \x2e\xa9\x6a\x3d\xdc\x90\x5c\xf8\xa0\x67\xda\x97\x6a\xca\x93\x6c\ \x80\x65\x51\x42\x54\x59\x3b\x54\x55\x3a\x51\x50\x38\x49\x4b\x1f\ \x39\x34\x3c\x52\x4f\x3e\x56\x57\x30\x44\x46\x3a\x4e\x57\x00\x00\ \x00\xf5\x9e\x61\xf5\x9d\x5f\xf6\x9f\x5f\xf4\x9d\x60\xf6\x9e\x5e\ \xf6\x9d\x60\xf5\x9d\x60\xf5\x9d\x61\xf3\x9c\x5f\xf4\x9d\x5e\xf4\ \x9d\x5e\xf3\x9c\x5d\xf3\x9d\x5e\xf4\x9b\x5c\xf3\x9c\x5b\xf4\x9c\ \x5c\xf3\x9a\x5b\xf3\x9b\x5a\xf6\x99\x5a\xf3\x9a\x5b\xf2\x99\x5c\ \xf2\x99\x5a\xf2\x9a\x5c\xf5\x9b\x5d\xf2\x99\x59\xf4\x99\x5c\xf4\ \x99\x5a\xf4\x9a\x5b\xf3\x99\x5b\xf4\x99\x5b\xf3\x98\x59\xf4\x99\ \x5c\xf4\x99\x5a\xf3\x98\x5a\xf5\x98\x5a\xf2\x98\x57\xf2\x98\x59\ \xf2\x97\x58\xf2\x97\x59\xf3\x98\x59\xf1\x98\x58\xf2\x99\x58\xf1\ \x98\x58\xf2\x98\x59\xf1\x99\x59\xf2\x98\x59\xf1\x97\x57\xf3\x98\ \x5a\xf3\x98\x57\xf2\x97\x59\xf1\x97\x57\xf1\x96\x56\xf2\x97\x58\ \xf1\x97\x57\xf2\x96\x57\xf3\x95\x55\xf2\x97\x57\xf2\x96\x57\xf1\ \x95\x55\xf1\x95\x54\xf2\x95\x53\xf2\x96\x55\xf1\x95\x54\xf1\x95\ \x57\xf2\x94\x54\xf1\x95\x54\xf1\x94\x52\xf1\x94\x53\xf0\x94\x54\ \xf1\x94\x53\xf1\x94\x54\xf2\x94\x52\xf2\x95\x55\xf1\x95\x54\xf1\ \x94\x54\xf1\x94\x55\xf2\x94\x55\xf2\x94\x53\xf1\x94\x54\xf1\x94\ \x53\xf1\x94\x55\xf2\x95\x53\xf2\x94\x52\xf0\x95\x53\xf1\x96\x55\ \xf0\x94\x57\xf0\x93\x54\xef\x93\x53\xf0\x94\x55\xf1\x93\x55\xf0\ \x93\x55\xf1\x93\x54\xf1\x94\x54\xf1\x94\x52\xf0\x93\x53\xf0\x92\ \x52\xf0\x92\x52\xf1\x91\x51\xf0\x92\x52\xef\x93\x52\xf0\x92\x53\ \xf0\x92\x52\xf0\x92\x52\xf0\x92\x52\xf1\x93\x52\xf0\x93\x54\xf0\ \x94\x55\xee\x93\x54\xef\x93\x53\xef\x92\x52\xf0\x92\x52\xf0\x91\ \x51\xf1\x91\x51\xef\x92\x52\xef\x91\x51\xf0\x91\x50\xef\x97\x5b\ \xed\x96\x5d\xee\x99\x5e\xef\xa8\x76\xea\xac\x87\xe8\xa9\x81\xe9\ \xa5\x7e\xea\x97\x62\xec\x91\x56\xec\x95\x5e\xec\x99\x63\xec\xa3\ \x75\xeb\xa6\x7c\xec\xa5\x7a\xed\xa2\x72\xed\x9a\x66\xec\x95\x5a\ \xed\x92\x55\xed\x92\x53\xec\x93\x57\xcb\x7d\x4d\x9e\x5e\x31\xe2\ \x85\x42\xf0\x93\x52\xef\x92\x55\xf1\x94\x55\xf3\x95\x56\xee\x94\ \x5a\xda\x8b\x59\x7d\x66\x4e\x56\x3f\x26\xf6\x94\x4f\xe6\x9a\x67\ \xbb\x7e\x56\xef\x9b\x64\xdf\x9b\x6e\xa5\x76\x5b\x3c\x47\x43\x38\ \x4a\x4b\x3c\x53\x56\x34\x4c\x4b\x36\x4d\x4e\x28\x3b\x3c\x2f\x3d\ \x3a\x33\x46\x46\x28\x37\x39\x23\x34\x39\x00\x00\x00\xf5\x9e\x5e\ \xf5\x9c\x60\xf5\x9e\x60\xf5\x9c\x5f\xf4\x9c\x5c\xf5\x9c\x5f\xf5\ \x9c\x5e\xf3\x9c\x5d\xf4\x9c\x5e\xf4\x9d\x60\xf4\x9c\x5f\xf4\x9b\ \x5d\xf4\x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5b\xf3\x9a\x5b\xf3\x9b\x5b\ \xf3\x9a\x5c\xf2\x9a\x5a\xf2\x99\x5b\xf2\x9a\x5c\xf3\x9a\x5b\xf3\ \x9a\x5d\xf3\x99\x5c\xf3\x99\x59\xf2\x99\x5b\xf1\x98\x5b\xf2\x98\ \x5b\xf4\x99\x5b\xf3\x99\x58\xf1\x98\x5a\xf3\x98\x59\xf2\x97\x5a\ \xf1\x97\x58\xf2\x97\x58\xf3\x99\x59\xf2\x98\x59\xf1\x97\x58\xf2\ \x98\x58\xf2\x97\x59\xf1\x98\x5b\xf2\x97\x58\xf3\x98\x58\xf2\x98\ \x58\xf2\x98\x58\xf2\x98\x59\xf1\x97\x58\xf1\x96\x57\xf3\x96\x56\ \xf1\x96\x57\xf2\x95\x56\xf3\x95\x56\xf2\x96\x56\xf1\x95\x56\xf1\ \x95\x56\xf2\x95\x57\xf2\x95\x56\xf2\x94\x55\xf2\x95\x54\xf2\x94\ \x54\xf1\x94\x54\xf2\x94\x54\xf1\x95\x53\xf2\x94\x54\xf2\x95\x54\ \xf2\x94\x53\xf2\x94\x52\xf1\x94\x52\xf0\x95\x54\xf2\x93\x54\xf0\ \x94\x52\xf0\x95\x54\xf1\x94\x55\xf0\x94\x54\xf0\x94\x53\xf0\x94\ \x54\xf1\x93\x54\xf2\x95\x55\xf2\x95\x54\xf2\x93\x54\xf2\x94\x53\ \xf2\x94\x55\xf0\x95\x54\xf0\x95\x54\xf0\x94\x55\xf0\x95\x55\xf1\ \x94\x52\xf3\x92\x53\xf1\x93\x53\xf2\x93\x52\xf1\x92\x52\xef\x93\ \x52\xf0\x93\x52\xf1\x92\x52\xf0\x93\x52\xf0\x92\x53\xf0\x93\x52\ \xf0\x92\x52\xf0\x93\x51\xf1\x93\x53\xf0\x93\x53\xf0\x92\x52\xf0\ \x92\x52\xf1\x93\x52\xf0\x94\x55\xf0\x93\x54\xef\x94\x56\xef\x96\ \x59\xee\x93\x56\xf0\x92\x53\xef\x93\x51\xef\x92\x53\xef\x92\x50\ \xf1\x91\x52\xf1\x91\x51\xf0\x91\x50\xef\x98\x5e\xed\x9b\x63\xee\ \x9c\x66\xed\xab\x80\xe9\xaa\x88\xec\xa0\x70\xec\x9f\x6f\xec\x97\ \x5e\xed\x91\x53\xed\x92\x54\xee\x99\x5e\xed\xa9\x7b\xe8\xb0\x8b\ \xe9\xb1\x8f\xe9\xae\x8c\xeb\xa9\x80\xec\xa3\x74\xec\x9c\x66\xed\ \x98\x5e\xec\x94\x59\xe0\x86\x4a\xf1\x94\x54\xf1\x93\x55\xef\x92\ \x52\xef\x93\x54\xf1\x93\x53\xf1\x93\x55\xe8\x8f\x52\x95\x65\x45\ \x58\x4a\x3d\x9c\x60\x3b\xdd\x8f\x5c\xb4\x80\x5f\x73\x59\x44\x7a\ \x57\x3d\x83\x68\x5b\x54\x4f\x4c\x44\x4a\x42\x47\x56\x53\x3a\x4e\ \x54\x3c\x59\x5c\x35\x4e\x59\x3a\x48\x4c\x35\x45\x43\x43\x4f\x52\ \x34\x41\x45\x28\x31\x32\x00\x00\x00\xf5\x9d\x5d\xf4\x9d\x60\xf5\ \x9c\x5f\xf5\x9c\x5e\xf4\x9c\x5e\xf4\x9d\x5e\xf4\x9c\x5b\xf4\x9b\ \x5c\xf3\x9b\x5b\xf3\x9b\x5d\xf3\x9b\x5c\xf3\x9b\x5d\xf3\x9b\x5c\ \xf3\x9a\x5a\xf3\x9a\x5b\xf3\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x5c\xf3\ \x9a\x5c\xf2\x99\x5b\xf3\x9a\x5c\xf3\x9a\x5b\xf3\x99\x5c\xf3\x99\ \x5c\xf2\x9a\x5a\xf3\x98\x5b\xf2\x99\x5c\xf2\x99\x59\xf2\x98\x5a\ \xf3\x98\x59\xf1\x98\x59\xf3\x98\x59\xf2\x97\x59\xf1\x97\x58\xf3\ \x97\x56\xf2\x98\x59\xf2\x98\x59\xf1\x97\x58\xf1\x98\x58\xf2\x97\ \x59\xf2\x98\x57\xf3\x97\x58\xf2\x96\x58\xf2\x96\x58\xf1\x97\x59\ \xf2\x96\x57\xf0\x96\x59\xf2\x96\x57\xf0\x96\x57\xf1\x96\x56\xf2\ \x95\x54\xf2\x96\x55\xf3\x95\x56\xf2\x95\x56\xf2\x95\x55\xf2\x94\ \x55\xf1\x94\x55\xf2\x94\x54\xf0\x96\x53\xf0\x94\x54\xf1\x94\x54\ \xf1\x94\x54\xf0\x94\x55\xf1\x94\x55\xf2\x94\x53\xf1\x94\x54\xf1\ \x93\x53\xf0\x94\x52\xf1\x94\x54\xf2\x94\x54\xf1\x94\x53\xf1\x94\ \x54\xf1\x95\x55\xf2\x94\x53\xf1\x95\x54\xf1\x94\x53\xf1\x94\x55\ \xf0\x95\x56\xf2\x94\x54\xf3\x94\x55\xf0\x94\x55\xf1\x95\x54\xf1\ \x94\x55\xf1\x95\x54\xf0\x95\x56\xf0\x94\x54\xf1\x92\x53\xf1\x92\ \x52\xf1\x92\x51\xf1\x92\x52\xf2\x92\x52\xf0\x93\x53\xf0\x93\x52\ \xef\x93\x54\xf0\x93\x53\xf0\x92\x52\xf0\x92\x53\xf1\x92\x51\xf0\ \x92\x53\xef\x94\x54\xef\x93\x52\xef\x92\x53\xf0\x92\x53\xf0\x91\ \x52\xee\x94\x56\xee\x95\x58\xee\x95\x58\xee\x96\x58\xef\x95\x56\ \xef\x93\x54\xf0\x93\x54\xef\x92\x54\xf0\x93\x51\xf0\x91\x51\xed\ \x92\x51\xef\x91\x52\xee\x98\x5e\xee\x9d\x68\xed\xa0\x6e\xec\xa6\ \x78\xe9\xab\x87\xec\xa3\x77\xeb\x9c\x68\xec\x97\x5e\xec\x93\x53\ \xec\x98\x60\xed\xa4\x75\xe9\xb2\x8e\xe6\xb6\x9d\xe6\xb2\x96\xe8\ \xae\x8f\xe8\xae\x8d\xe9\xad\x8c\xeb\xa7\x7b\xeb\xa4\x77\xec\x9b\ \x63\xef\x99\x61\xee\x94\x58\xef\x92\x55\xf0\x92\x54\xee\x93\x56\ \xf0\x94\x56\xf1\x94\x54\xde\x8b\x53\xab\x6b\x45\x99\x6e\x4a\x5a\ \x43\x3c\x97\x63\x3f\x54\x4a\x42\x30\x35\x31\x46\x3a\x29\x51\x50\ \x48\x6c\x64\x5b\x5b\x61\x62\x36\x48\x4d\x3f\x49\x49\x48\x52\x59\ \x2e\x3a\x41\x4c\x50\x49\x38\x4a\x4c\x3c\x4a\x4e\x32\x44\x46\x40\ \x40\x3f\x00\x00\x00\xf4\x9d\x5e\xf5\x9c\x5f\xf5\x9c\x5e\xf4\x9b\ \x5e\xf4\x9b\x5c\xf3\x9b\x5b\xf5\x9a\x5a\xf4\x9a\x5d\xf3\x9b\x5a\ \xf2\x9b\x5b\xf3\x9b\x5a\xf4\x9b\x5c\xf2\x9b\x5b\xf2\x99\x5a\xf3\ \x9a\x5c\xf2\x9a\x5b\xf2\x99\x5b\xf2\x9a\x5a\xf3\x9a\x5c\xf2\x99\ \x5b\xf3\x99\x5b\xf2\x9a\x5c\xf3\x9a\x5a\xf3\x99\x5c\xf1\x99\x58\ \xf3\x98\x59\xf2\x98\x59\xf2\x99\x59\xf2\x98\x59\xf2\x98\x5b\xf2\ \x97\x57\xf2\x98\x58\xf2\x97\x58\xf2\x96\x59\xf2\x96\x57\xf2\x96\ \x57\xf2\x96\x57\xf1\x96\x57\xf2\x97\x57\xf1\x96\x58\xf2\x96\x57\ \xf2\x95\x56\xf3\x97\x56\xf3\x96\x57\xf2\x96\x57\xf1\x97\x57\xf0\ \x96\x58\xf1\x96\x56\xf2\x96\x55\xf2\x95\x55\xf1\x95\x54\xf1\x95\ \x55\xf2\x96\x54\xf1\x94\x54\xf1\x94\x55\xf2\x95\x54\xf1\x94\x55\ \xf1\x93\x54\xf1\x94\x54\xf1\x94\x54\xf2\x93\x54\xf1\x94\x53\xf1\ \x93\x54\xf0\x94\x52\xf2\x94\x52\xf1\x95\x55\xef\x95\x53\xf0\x94\ \x52\xf2\x93\x54\xf1\x94\x52\xf3\x94\x54\xf1\x94\x54\xf0\x94\x53\ \xf2\x94\x53\xf2\x94\x53\xf0\x94\x54\xf0\x94\x54\xf0\x94\x54\xf0\ \x94\x52\xf1\x94\x55\xf1\x94\x56\xf1\x95\x56\xf1\x95\x55\xf1\x94\ \x55\xf0\x93\x54\xf1\x93\x54\xf0\x92\x52\xf0\x92\x52\xf0\x92\x51\ \xf0\x93\x52\xf0\x93\x51\xf0\x93\x51\xf0\x93\x53\xef\x93\x53\xf0\ \x93\x50\xf0\x91\x50\xef\x91\x52\xef\x94\x54\xf0\x94\x57\xef\x94\ \x56\xef\x93\x53\xef\x92\x51\xef\x93\x54\xef\x94\x54\xee\x95\x57\ \xef\x95\x59\xef\x96\x59\xef\x98\x5d\xee\x96\x59\xee\x94\x57\xf0\ \x93\x54\xee\x93\x55\xee\x93\x53\xee\x92\x55\xec\x92\x52\xee\x91\ \x51\xee\x96\x5a\xee\x9f\x6b\xed\xa1\x6f\xed\x9e\x6d\xeb\xa2\x75\ \xeb\xa0\x74\xeb\x9a\x66\xed\x97\x60\xeb\x94\x59\xec\x97\x5f\xeb\ \xa4\x77\xe8\xaf\x8c\xe5\xae\x91\xe6\xa7\x84\xe8\xa5\x7e\xe9\xa4\ \x7e\xe8\xa6\x7f\xea\xa9\x82\xeb\xac\x88\xec\xa8\x7f\xec\xa4\x75\ \xed\x9a\x64\xee\x98\x61\xee\x96\x5c\xef\x93\x54\xf0\x94\x57\xf0\ \x94\x57\xdf\x8a\x4e\xe1\x87\x49\xca\x85\x55\xa7\x67\x3e\xb0\x76\ \x4f\x81\x5c\x48\x4f\x40\x36\xb2\x75\x46\x92\x76\x60\x88\x6b\x52\ \x59\x5f\x5e\x4f\x59\x54\x4b\x49\x44\x56\x5d\x55\x33\x45\x46\x4b\ \x4e\x4d\x3a\x48\x50\x3f\x52\x53\x35\x46\x50\x4a\x45\x46\x00\x00\ \x00\xf4\x9c\x5d\xf5\x9c\x5e\xf4\x9b\x5e\xf4\x9c\x5d\xf4\x9b\x5b\ \xf3\x9a\x5a\xf3\x9b\x5a\xf3\x9b\x5c\xf2\x9b\x5b\xf2\x9a\x5b\xf3\ \x9a\x5b\xf3\x9a\x5c\xf4\x9b\x5b\xf3\x99\x5c\xf2\x9a\x5b\xf2\x99\ \x5c\xf4\x99\x5b\xf2\x99\x5a\xf2\x9a\x5d\xf1\x9a\x5a\xf3\x99\x5b\ \xf3\x99\x5c\xf2\x99\x5c\xf4\x9a\x5d\xf1\x98\x57\xf2\x98\x59\xf2\ \x97\x59\xf2\x98\x59\xf2\x97\x58\xf2\x97\x57\xf2\x96\x57\xf0\x96\ \x58\xf1\x96\x57\xf2\x96\x56\xf2\x96\x57\xf3\x96\x56\xf2\x95\x56\ \xf1\x94\x56\xf3\x96\x58\xf2\x96\x58\xf2\x96\x57\xf2\x95\x54\xf2\ \x96\x56\xf2\x96\x56\xf2\x97\x57\xf1\x97\x57\xf1\x95\x56\xf1\x95\ \x54\xf0\x95\x57\xf1\x96\x57\xf1\x95\x56\xf1\x94\x54\xf1\x95\x55\ \xf0\x95\x54\xf1\x94\x54\xf1\x94\x56\xf1\x94\x53\xf1\x94\x54\xf0\ \x94\x52\xf1\x94\x54\xf2\x93\x53\xf2\x93\x53\xf1\x94\x54\xef\x95\ \x51\xf1\x94\x54\xf0\x94\x53\xf0\x93\x54\xf0\x93\x52\xf1\x93\x52\ \xf0\x94\x52\xef\x93\x54\xf1\x92\x52\xf2\x93\x53\xf1\x92\x52\xf2\ \x93\x52\xf0\x93\x53\xf1\x94\x53\xf1\x93\x53\xf0\x94\x53\xf2\x93\ \x53\xf0\x95\x55\xf1\x94\x54\xf1\x93\x54\xef\x93\x54\xef\x93\x53\ \xf0\x93\x52\xf1\x92\x53\xf0\x92\x52\xf1\x92\x52\xf1\x92\x52\xf0\ \x92\x50\xf0\x92\x51\xef\x92\x53\xef\x92\x52\xf0\x92\x53\xef\x93\ \x52\xef\x92\x52\xee\x94\x55\xed\x94\x57\xee\x93\x54\xef\x92\x52\ \xf0\x91\x50\xef\x94\x55\xee\x96\x5b\xee\x99\x5e\xef\x99\x5e\xef\ \x9e\x65\xef\xa2\x6d\xee\x98\x5e\xee\x95\x5a\xee\x94\x56\xee\x94\ \x57\xed\x94\x57\xed\x92\x54\xed\x92\x54\xed\x91\x52\xed\x92\x54\ \xed\xa2\x6f\xeb\xa5\x79\xee\xa1\x6f\xec\xa0\x70\xeb\x9f\x6f\xec\ \x97\x5f\xec\x98\x63\xec\x99\x64\xec\x98\x61\xeb\x9c\x6c\xe8\x9d\ \x6f\xe7\x98\x6a\xe9\x94\x5e\xea\x96\x5f\xe8\x97\x66\xe9\x94\x5e\ \xea\x94\x5d\xea\xa5\x7a\xe9\xa8\x84\xea\xa8\x81\xeb\x9e\x6f\xec\ \x99\x65\xed\x95\x5f\xe9\x8f\x54\xe4\x8d\x57\xee\x90\x54\xf2\x94\ \x55\xf1\x93\x56\xe4\x8f\x55\xe9\x91\x59\x76\x5a\x47\x65\x50\x3b\ \x84\x5a\x3e\xcf\x84\x56\xba\x89\x6d\x41\x47\x45\x46\x4b\x47\x63\ \x5e\x55\x3c\x49\x49\x48\x53\x52\x30\x3f\x47\x2d\x3d\x45\x3c\x45\ \x45\x3f\x4c\x52\x42\x50\x55\x45\x4a\x4b\x00\x00\x00\xf4\x9b\x5c\ \xf3\x9b\x5b\xf3\x9b\x5b\xf3\x9b\x5b\xf2\x9b\x5a\xf3\x9a\x5c\xf3\ \x9a\x5b\xf3\x9a\x5d\xf3\x9a\x5c\xf2\x9a\x5a\xf1\x9a\x5b\xf2\x9a\ \x5c\xf4\x9a\x5d\xf2\x9a\x5a\xf2\x99\x5a\xf2\x99\x5c\xf3\x9a\x5c\ \xf2\x99\x5c\xf3\x99\x5c\xf2\x99\x5b\xf1\x99\x5c\xf2\x98\x5c\xf3\ \x99\x5a\xf3\x98\x58\xf2\x97\x5a\xf2\x98\x5a\xf1\x98\x58\xf1\x97\ \x58\xf2\x96\x57\xf2\x96\x55\xf3\x97\x57\xf2\x96\x56\xf2\x96\x56\ \xf1\x96\x57\xf3\x96\x57\xf2\x96\x57\xf0\x96\x57\xf0\x97\x56\xf1\ \x96\x55\xf3\x96\x55\xf1\x96\x57\xf1\x96\x56\xf1\x96\x55\xf0\x95\ \x55\xf1\x97\x57\xf0\x96\x57\xf1\x96\x57\xf0\x96\x55\xf1\x96\x55\ \xf0\x95\x54\xf1\x94\x54\xf1\x94\x53\xf1\x95\x54\xf1\x95\x55\xf1\ \x95\x53\xf0\x95\x54\xf1\x94\x53\xf2\x93\x54\xf0\x94\x53\xf0\x94\ \x55\xf1\x93\x53\xef\x94\x52\xf0\x93\x51\xf1\x93\x53\xf0\x94\x54\ \xef\x92\x54\xf1\x93\x53\xf1\x93\x51\xf1\x93\x53\xf0\x93\x52\xef\ \x93\x53\xf0\x94\x53\xef\x94\x53\xf1\x92\x51\xf1\x94\x53\xf0\x93\ \x52\xf0\x94\x51\xf1\x93\x53\xf1\x92\x53\xf1\x93\x53\xf1\x94\x53\ \xf0\x94\x54\xf0\x94\x54\xef\x93\x55\xef\x94\x54\xf0\x93\x51\xf1\ \x92\x53\xf1\x92\x52\xf0\x93\x52\xf0\x92\x53\xef\x91\x51\xef\x92\ \x53\xee\x93\x53\xef\x92\x51\xee\x94\x55\xee\x94\x57\xef\x92\x53\ \xee\x92\x51\xee\x92\x51\xee\x92\x51\xef\x91\x4f\xef\x92\x54\xef\ \x97\x5a\xee\x98\x5e\xee\x9d\x66\xee\x9f\x69\xec\xa2\x72\xed\xa0\ \x70\xee\x9d\x69\xed\x9b\x64\xed\x98\x5e\xec\x95\x5b\xed\x94\x58\ \xed\x93\x53\xed\x92\x55\xeb\x90\x53\xed\x92\x52\xee\x9e\x68\xe9\ \xa2\x74\xec\x9c\x6a\xec\x9d\x6a\xeb\xa0\x71\xed\x9a\x66\xee\x9b\ \x66\xed\x9d\x6b\xec\x9b\x69\xe9\x9c\x69\xea\x97\x61\xeb\x8f\x53\ \xea\x8f\x52\xec\x90\x53\xeb\x90\x53\xeb\x90\x53\xec\x90\x53\xea\ \x92\x56\xeb\x9a\x64\xea\xa2\x78\xe9\x9a\x6a\xeb\x91\x57\xed\x90\ \x53\xea\x8e\x56\xe4\x8a\x52\xd5\x7f\x4a\xd6\x82\x4e\xd7\x82\x4d\ \xf0\x94\x58\xdf\x8b\x54\xe3\x8d\x52\xcc\x87\x56\xba\x7c\x53\xd1\ \x8d\x61\xa6\x7d\x6a\x6d\x56\x4b\x55\x54\x4e\x44\x4e\x52\x38\x44\ \x4a\x3e\x49\x47\x2a\x44\x4b\x27\x40\x3e\x2b\x3e\x3d\x3e\x4c\x4f\ \x3c\x4e\x4f\x36\x48\x56\x00\x00\x00\xf3\x9b\x5b\xf4\x9a\x5d\xf3\ \x9a\x5b\xf3\x9a\x5c\xf2\x9a\x5a\xf3\x9a\x5b\xf2\x99\x5b\xf2\x99\ \x58\xf3\x99\x5b\xf4\x9a\x59\xf3\x99\x5b\xf1\x98\x5b\xf3\x98\x5a\ \xf2\x98\x59\xf1\x98\x59\xf3\x98\x59\xf3\x98\x59\xf3\x98\x59\xf2\ \x99\x5b\xf0\x98\x59\xf1\x98\x5a\xf2\x99\x58\xf2\x98\x5a\xf2\x97\ \x58\xf2\x97\x5a\xf2\x96\x58\xf3\x96\x57\xf2\x97\x56\xf2\x96\x56\ \xf3\x95\x58\xf1\x96\x56\xf1\x97\x56\xf2\x96\x56\xf2\x96\x57\xf1\ \x97\x56\xf2\x96\x55\xf2\x95\x56\xf2\x94\x56\xf0\x96\x57\xf0\x97\ \x56\xf1\x95\x54\xf1\x96\x55\xf1\x95\x55\xf1\x95\x56\xf1\x95\x56\ \xf0\x95\x54\xf1\x94\x55\xf1\x94\x54\xf2\x95\x56\xf0\x96\x56\xf0\ \x95\x53\xf1\x95\x55\xf1\x94\x53\xf1\x94\x54\xf0\x93\x53\xf0\x93\ \x53\xf0\x94\x54\xf0\x93\x55\xf2\x91\x51\xf2\x92\x51\xf1\x92\x52\ \xef\x93\x53\xf1\x94\x52\xef\x93\x54\xef\x93\x53\xf0\x92\x52\xf0\ \x92\x52\xf1\x92\x52\xf1\x92\x52\xee\x93\x52\xf0\x93\x52\xef\x93\ \x52\xee\x94\x53\xef\x93\x54\xf0\x93\x51\xf0\x93\x52\xf0\x93\x53\ \xef\x93\x53\xf0\x92\x52\xef\x94\x53\xef\x94\x53\xef\x94\x56\xef\ \x92\x54\xee\x93\x54\xf0\x93\x53\xef\x93\x52\xf0\x92\x52\xef\x92\ \x52\xef\x92\x54\xef\x91\x53\xef\x92\x51\xef\x91\x51\xef\x91\x50\ \xee\x92\x50\xed\x92\x52\xef\x91\x51\xef\x90\x50\xef\x92\x51\xf0\ \x92\x4f\xed\x90\x50\xee\x90\x4f\xed\x91\x52\xeb\x93\x56\xed\x96\ \x5b\xec\x97\x5f\xec\x97\x61\xec\x9a\x63\xed\x9e\x69\xed\xa1\x6e\ \xed\x9c\x69\xec\x9b\x67\xeb\x93\x59\xec\x92\x56\xec\x91\x54\xec\ \x92\x54\xee\x91\x54\xed\x93\x55\xee\x9d\x66\xec\x9e\x6e\xeb\x96\ \x5f\xec\x97\x5d\xed\x9d\x69\xed\x9e\x6b\xea\xa0\x70\xe9\x98\x63\ \xeb\x97\x61\xeb\x96\x62\xea\x96\x60\xea\x92\x57\xec\x94\x55\xeb\ \x96\x5f\xec\x98\x5e\xeb\x94\x59\xeb\x92\x57\xeb\x90\x53\xeb\x91\ \x54\xea\x95\x61\xec\x8d\x50\xed\x8c\x4b\xee\x8c\x4d\xe9\x8b\x4e\ \xe5\x89\x4f\xeb\x8d\x4d\xe0\x86\x4c\xd9\x87\x52\xdb\x85\x4e\xe6\ \x8d\x52\xf2\x99\x5e\xef\x9c\x64\xcf\x87\x5b\x9f\x7b\x63\x5a\x5d\ \x57\x46\x45\x48\x50\x51\x4f\x33\x43\x42\x40\x50\x53\x3b\x4c\x52\ \x29\x4b\x48\x29\x38\x39\x3b\x49\x42\x2e\x3c\x39\x36\x48\x53\x3c\ \x49\x48\x00\x00\x00\xf2\x9a\x5b\xf3\x9a\x5c\xf3\x9b\x5e\xf2\x9a\ \x5c\xf2\x9a\x5a\xf4\x99\x5a\xf3\x98\x5b\xf3\x9a\x5b\xf2\x99\x5b\ \xf2\x9a\x59\xf3\x99\x5b\xf3\x98\x5b\xf0\x97\x59\xf1\x98\x5a\xf2\ \x98\x5b\xf1\x98\x5a\xf2\x98\x59\xf3\x98\x59\xf1\x97\x5a\xf2\x98\ \x58\xf1\x97\x58\xf1\x97\x5a\xf2\x96\x59\xf3\x96\x56\xf1\x97\x57\ \xf1\x96\x57\xf2\x97\x57\xf1\x96\x56\xf1\x96\x57\xf2\x96\x56\xf2\ \x96\x57\xf1\x96\x56\xf2\x95\x55\xf2\x96\x55\xf2\x95\x54\xf0\x96\ \x56\xf2\x95\x55\xf2\x95\x57\xf0\x96\x56\xf0\x96\x56\xf0\x95\x54\ \xf1\x95\x55\xf1\x94\x54\xf1\x95\x55\xf1\x94\x54\xf2\x94\x54\xf0\ \x93\x53\xf1\x94\x54\xf0\x94\x55\xf0\x95\x55\xf0\x94\x55\xf2\x94\ \x53\xf0\x93\x54\xef\x94\x52\xf0\x94\x52\xf0\x93\x52\xf1\x93\x52\ \xf0\x92\x54\xf0\x93\x51\xf0\x93\x53\xf2\x92\x54\xf0\x93\x52\xef\ \x94\x54\xef\x93\x53\xf0\x92\x52\xf0\x92\x52\xef\x92\x51\xf0\x91\ \x51\xf1\x93\x51\xef\x93\x52\xf0\x92\x52\xef\x93\x53\xef\x93\x52\ \xef\x93\x51\xf0\x92\x50\xf0\x92\x52\xf0\x93\x52\xf0\x92\x52\xf1\ \x93\x52\xf0\x93\x53\xee\x94\x53\xee\x92\x53\xef\x92\x53\xee\x93\ \x52\xf1\x93\x54\xf0\x92\x51\xee\x92\x51\xee\x92\x53\xef\x92\x51\ \xef\x91\x51\xf0\x91\x50\xf0\x91\x51\xef\x93\x51\xef\x92\x52\xee\ \x92\x53\xed\x92\x52\xee\x91\x50\xee\x92\x52\xed\x92\x52\xef\x8f\ \x4e\xf0\x90\x50\xed\x92\x52\xed\x95\x57\xee\x95\x5b\xec\x97\x5e\ \xed\x9b\x64\xee\xa4\x74\xec\xaa\x7e\xeb\xab\x82\xeb\xa4\x76\xec\ \x9d\x6a\xed\x92\x57\xeb\x90\x51\xec\x91\x52\xec\x92\x53\xed\x92\ \x53\xec\x95\x5b\xed\x9c\x67\xea\x9e\x6e\xea\x95\x5d\xeb\x94\x59\ \xeb\x99\x61\xec\xa1\x70\xea\x9f\x70\xeb\x9a\x62\xea\x94\x5a\xeb\ \x92\x58\xeb\x95\x5c\xea\x95\x5d\xeb\x99\x64\xed\x9c\x69\xeb\x9b\ \x6c\xea\x95\x60\xea\x94\x5c\xe9\x92\x58\xeb\x90\x53\xec\x8c\x4d\ \xed\x8b\x4b\xed\x8c\x4b\xed\x8c\x4d\xe9\x8c\x50\xef\x8e\x4d\xef\ \x8f\x4f\xcd\x7c\x49\xd7\x83\x4d\xdc\x89\x53\xe6\x8f\x58\xd9\x88\ \x56\xd9\x8c\x5d\xab\x79\x59\x7f\x67\x55\x75\x64\x58\x5e\x58\x53\ \x28\x32\x2e\x2e\x3d\x3b\x3a\x50\x54\x2e\x3f\x47\x2a\x42\x3e\x62\ \x4d\x39\x7e\x65\x4e\x29\x33\x34\x32\x37\x37\x39\x47\x4f\x00\x00\ \x00\xf2\x99\x5c\xf3\x9a\x5c\xf3\x99\x5c\xf2\x99\x5c\xf2\x99\x5b\ \xf3\x99\x5a\xf3\x98\x59\xf3\x9a\x5a\xf3\x9a\x5b\xf4\x99\x5a\xf3\ \x98\x58\xf2\x98\x59\xf1\x98\x5b\xf1\x97\x5a\xf2\x98\x58\xf1\x97\ \x59\xf1\x96\x58\xf1\x96\x57\xf0\x96\x59\xf1\x97\x58\xf2\x98\x59\ \xf1\x96\x57\xf2\x96\x56\xf0\x96\x57\xf0\x96\x58\xf2\x96\x57\xf1\ \x96\x57\xf2\x96\x56\xf2\x95\x56\xf1\x96\x56\xf0\x97\x55\xf1\x96\ \x56\xf0\x95\x56\xf1\x95\x56\xf1\x95\x56\xf1\x96\x56\xf1\x95\x55\ \xf1\x95\x56\xf0\x96\x58\xf0\x96\x56\xf1\x95\x56\xf2\x94\x55\xf2\ \x94\x55\xf1\x95\x54\xf1\x94\x54\xf1\x95\x54\xef\x94\x53\xef\x94\ \x54\xf0\x93\x53\xf1\x93\x54\xef\x93\x54\xf1\x93\x52\xf0\x94\x54\ \xf0\x93\x52\xef\x93\x53\xf0\x93\x53\xf0\x93\x53\xf1\x93\x51\xf0\ \x93\x52\xf0\x92\x54\xf0\x92\x53\xef\x93\x52\xef\x93\x53\xef\x93\ \x52\xf1\x93\x51\xf0\x93\x52\xf0\x92\x51\xf1\x92\x53\xf1\x92\x52\ \xf0\x92\x51\xf0\x92\x52\xef\x92\x52\xf0\x92\x53\xef\x93\x53\xef\ \x92\x51\xef\x92\x52\xef\x93\x52\xef\x92\x51\xef\x92\x52\xef\x94\ \x52\xed\x94\x54\xf0\x92\x52\xf0\x92\x52\xf0\x93\x51\xee\x93\x52\ \xef\x93\x52\xf0\x92\x50\xef\x91\x53\xef\x92\x51\xf0\x91\x50\xef\ \x91\x50\xef\x91\x51\xee\x93\x55\xee\x92\x52\xee\x92\x54\xed\x94\ \x57\xee\x92\x54\xee\x92\x52\xec\x91\x54\xef\x8f\x4e\xef\x90\x4f\ \xed\x93\x56\xed\x93\x56\xed\x96\x5d\xed\x98\x5f\xec\x9a\x64\xeb\ \xa3\x75\xe9\xaf\x8c\xe7\xb0\x91\xe9\xad\x89\xea\xa7\x7c\xeb\x9d\ \x68\xec\x94\x59\xec\x92\x53\xec\x91\x54\xec\x90\x54\xeb\x92\x57\ \xeb\x98\x61\xe9\x9c\x6b\xeb\x99\x61\xeb\x95\x5c\xec\x95\x5a\xea\ \xa0\x6e\xea\xa3\x76\xea\x9c\x69\xea\x94\x5e\xec\x98\x60\xeb\x9c\ \x69\xea\x98\x62\xea\x9a\x68\xeb\x9a\x67\xea\x99\x67\xeb\x96\x60\ \xea\x93\x5c\xec\x8f\x52\xeb\x8d\x50\xee\x8c\x4d\xec\x8c\x4b\xee\ \x8c\x4b\xed\x8c\x4b\xed\x8e\x4c\xee\x8d\x4d\xf0\x90\x4f\xd0\x80\ \x4b\xd2\x7f\x4a\xd3\x87\x56\xc5\x7e\x57\xc6\x86\x5e\xa7\x71\x58\ \x92\x72\x59\x81\x69\x55\x67\x5f\x58\x3f\x4c\x52\x21\x33\x32\x32\ \x43\x44\x37\x4b\x54\x42\x48\x48\x59\x4e\x41\x59\x4c\x41\x3f\x40\ \x3a\x3a\x34\x2d\x57\x56\x48\x4b\x53\x54\x00\x00\x00\xf3\x99\x5c\ \xf3\x99\x5c\xf3\x99\x5c\xf3\x98\x5b\xf1\x98\x5a\xf2\x99\x5b\xf2\ \x99\x59\xf1\x99\x58\xf1\x98\x5b\xf2\x97\x5b\xf3\x97\x59\xf2\x98\ \x59\xf3\x98\x59\xf2\x98\x5b\xf2\x97\x59\xef\x96\x59\xf1\x95\x56\ \xf1\x96\x58\xf1\x95\x56\xf1\x96\x58\xf1\x97\x5a\xf1\x96\x57\xf1\ \x96\x56\xf1\x96\x56\xf1\x96\x55\xf2\x96\x55\xf0\x96\x55\xf1\x96\ \x57\xf1\x95\x54\xf1\x95\x57\xf0\x96\x56\xf2\x96\x55\xf1\x95\x56\ \xf0\x95\x58\xef\x95\x56\xf2\x96\x54\xef\x95\x55\xf1\x94\x54\xf0\ \x95\x55\xf0\x96\x56\xf1\x95\x56\xf1\x94\x54\xf3\x94\x55\xf0\x94\ \x54\xf0\x94\x54\xf0\x93\x54\xf1\x93\x51\xef\x94\x52\xf0\x92\x53\ \xf0\x93\x54\xf0\x93\x52\xf1\x94\x52\xf0\x93\x52\xf0\x93\x52\xef\ \x93\x52\xf0\x93\x54\xef\x93\x53\xf1\x93\x52\xf0\x93\x52\xef\x92\ \x52\xf0\x92\x52\xf0\x92\x51\xf0\x92\x52\xf0\x93\x51\xf0\x92\x51\ \xf0\x92\x51\xf0\x92\x52\xef\x91\x53\xee\x93\x52\xf0\x93\x51\xef\ \x92\x51\xf0\x92\x50\xef\x92\x52\xee\x92\x53\xef\x93\x50\xef\x93\ \x53\xef\x93\x52\xef\x94\x52\xef\x93\x52\xee\x93\x52\xf0\x92\x53\ \xf1\x92\x50\xf0\x92\x50\xef\x92\x52\xef\x92\x52\xef\x91\x52\xf1\ \x92\x4e\xee\x90\x51\xee\x92\x53\xf0\x94\x54\xee\x91\x52\xee\x91\ \x50\xec\x92\x53\xee\x91\x51\xef\x91\x51\xed\x94\x56\xee\x94\x59\ \xed\x92\x52\xee\x90\x51\xef\x8e\x4f\xee\x90\x4f\xee\x8f\x52\xed\ \x90\x51\xed\x92\x54\xeb\x97\x5f\xec\x96\x5e\xeb\x9f\x6d\xe8\xab\ \x87\xe6\xae\x8c\xe7\xb0\x92\xe8\xaf\x8d\xe9\xaa\x84\xe9\xa3\x75\ \xed\x9b\x64\xec\x9b\x64\xeb\x9a\x63\xeb\x93\x59\xeb\x92\x57\xeb\ \x9e\x6b\xea\x9e\x6d\xeb\x9b\x6a\xec\x9d\x69\xe9\x9d\x6c\xe8\xa0\ \x75\xe9\x97\x61\xeb\x91\x58\xeb\x98\x60\xea\xa4\x78\xea\x9b\x69\ \xed\xa2\x70\xea\x9f\x6d\xeb\x97\x61\xec\x96\x5f\xe9\x92\x5c\xed\ \x8d\x4e\xee\x8c\x50\xec\x8b\x4b\xed\x8c\x4b\xed\x8c\x4c\xec\x8d\ \x4b\xed\x8c\x4c\xee\x8c\x4d\xee\x8e\x4e\xec\x90\x53\xec\x92\x57\ \xea\x94\x5e\xc3\x86\x5e\x9c\x70\x54\x74\x62\x5c\x5e\x55\x50\x40\ \x44\x44\x4a\x4f\x49\x37\x49\x54\x40\x49\x4c\x45\x49\x47\x60\x5c\ \x56\x55\x52\x4d\x55\x49\x4a\x70\x59\x47\x87\x6d\x5a\x83\x5a\x3d\ \xb9\x8b\x62\x51\x5d\x60\x00\x00\x00\xf2\x9a\x5c\xf2\x9a\x59\xf2\ \x98\x5b\xf2\x98\x5b\xf1\x99\x5c\xf2\x98\x5b\xf2\x98\x58\xf2\x98\ \x5a\xf2\x98\x59\xf1\x97\x59\xf2\x98\x5a\xf2\x98\x59\xf2\x98\x58\ \xf2\x98\x58\xf2\x98\x57\xf1\x97\x56\xf1\x95\x55\xf2\x95\x56\xf1\ \x95\x58\xf1\x95\x58\xf1\x96\x57\xf0\x96\x57\xf0\x96\x59\xf2\x96\ \x55\xf1\x95\x58\xf2\x95\x56\xf1\x95\x56\xf1\x95\x57\xf1\x95\x56\ \xf0\x95\x58\xef\x95\x55\xf1\x95\x54\xf0\x94\x53\xef\x95\x56\xef\ \x96\x56\xf1\x95\x54\xf1\x95\x56\xf0\x95\x55\xf0\x95\x55\xf1\x95\ \x54\xf0\x94\x53\xf0\x95\x54\xf0\x94\x55\xf0\x94\x54\xef\x94\x54\ \xf0\x93\x53\xf1\x92\x51\xf0\x93\x52\xf1\x93\x52\xef\x93\x52\xf1\ \x93\x51\xf1\x93\x53\xf0\x92\x51\xef\x93\x52\xef\x93\x53\xf0\x93\ \x51\xf0\x93\x51\xf0\x93\x53\xf1\x92\x52\xf0\x93\x50\xf0\x93\x51\ \xf0\x92\x51\xf0\x92\x51\xf0\x92\x52\xf0\x92\x50\xef\x93\x51\xef\ \x92\x51\xf0\x92\x51\xef\x92\x52\xef\x91\x51\xf0\x92\x51\xef\x92\ \x52\xef\x92\x50\xef\x92\x51\xf1\x93\x51\xf0\x93\x52\xee\x93\x50\ \xee\x92\x51\xef\x92\x50\xef\x92\x51\xf0\x91\x52\xf0\x92\x50\xf0\ \x91\x50\xf0\x90\x51\xed\x92\x51\xee\x91\x50\xf0\x91\x4e\xee\x91\ \x51\xec\x92\x54\xed\x95\x5a\xed\x94\x58\xef\x91\x53\xed\x90\x53\ \xef\x90\x51\xef\x92\x53\xed\x92\x52\xed\x93\x53\xec\x91\x52\xed\ \x90\x50\xef\x8e\x4e\xee\x8e\x4d\xee\x8d\x4d\xee\x8e\x4b\xed\x91\ \x54\xec\x97\x61\xec\x94\x5a\xec\xa2\x71\xe9\xa6\x7e\xe9\xaa\x84\ \xe6\xb1\x93\xe6\xb4\x95\xe7\xb3\x93\xe7\xab\x8a\xea\xa5\x7c\xea\ \xaa\x82\xe9\xad\x88\xe8\x9c\x6c\xeb\x98\x5e\xea\xa6\x7b\xe9\xa6\ \x7e\xe8\xa1\x72\xe9\xa6\x7d\xe8\xa0\x73\xe7\x96\x65\xea\x98\x5f\ \xeb\x92\x5b\xec\x9a\x63\xeb\xa9\x82\xea\xa7\x7c\xeb\xa9\x80\xe9\ \xab\x85\xec\xa4\x77\xeb\xa1\x72\xeb\x98\x64\xea\x8f\x52\xed\x8e\ \x51\xec\x8d\x4e\xed\x8c\x4c\xed\x8c\x4b\xed\x8d\x4b\xec\x8b\x4c\ \xee\x8d\x4d\xee\x8e\x4e\xef\x90\x50\xee\x92\x55\xea\x95\x5d\xa7\ \x72\x51\x55\x57\x4d\x2c\x40\x43\x24\x34\x34\x27\x31\x30\x36\x3c\ \x42\x6b\x57\x46\x8e\x6f\x5d\xa2\x78\x60\xac\x89\x73\x43\x49\x4f\ \x3f\x40\x39\xc4\x7a\x4b\xa2\x7c\x69\xa3\x6d\x4b\xe5\x9e\x6d\x7e\ \x74\x6e\x00\x00\x00\xf1\x9a\x59\xf1\x99\x58\xf4\x97\x5a\xf2\x97\ \x5a\xf2\x98\x5a\xf2\x99\x59\xf3\x98\x5a\xf3\x97\x5a\xf2\x98\x59\ \xf2\x97\x5a\xf1\x96\x5a\xf2\x97\x58\xf0\x96\x58\xf2\x96\x56\xf0\ \x97\x58\xf1\x97\x5a\xf2\x95\x57\xf1\x96\x56\xf0\x96\x57\xf1\x96\ \x56\xf0\x95\x57\xf1\x95\x57\xf0\x95\x56\xf0\x96\x56\xf0\x96\x54\ \xf1\x95\x56\xf1\x95\x56\xf2\x96\x57\xf2\x95\x56\xf0\x94\x54\xf1\ \x94\x55\xee\x95\x54\xf1\x95\x56\xf0\x95\x55\xef\x95\x58\xf3\x94\ \x53\xf0\x94\x55\xf0\x94\x55\xef\x94\x56\xf0\x95\x53\xf0\x94\x53\ \xf0\x94\x54\xf0\x93\x53\xf2\x93\x53\xf2\x92\x52\xf0\x92\x51\xf0\ \x93\x52\xef\x93\x51\xef\x92\x51\xef\x93\x52\xef\x92\x53\xef\x92\ \x52\xf0\x93\x52\xef\x92\x53\xf0\x93\x53\xf0\x94\x51\xf1\x93\x51\ \xee\x91\x54\xef\x92\x50\xf0\x91\x51\xf0\x91\x51\xef\x92\x50\xef\ \x91\x52\xf1\x93\x51\xf0\x92\x51\xf1\x91\x52\xf1\x91\x52\xf0\x91\ \x51\xf0\x91\x50\xed\x93\x53\xef\x92\x52\xef\x91\x53\xf0\x91\x51\ \xf0\x92\x51\xee\x92\x51\xf0\x92\x51\xf0\x91\x50\xef\x91\x50\xf0\ \x90\x50\xf1\x90\x4f\xf0\x90\x50\xef\x91\x50\xf0\x91\x4f\xf1\x91\ \x4d\xef\x92\x50\xf0\x94\x55\xf0\x8f\x4f\xef\x92\x50\xed\x91\x52\ \xee\x91\x53\xee\x91\x54\xee\x94\x59\xef\x92\x56\xee\x92\x53\xef\ \x94\x5a\xee\x93\x57\xef\x90\x4e\xef\x90\x51\xee\x92\x52\xee\x90\ \x4e\xef\x8f\x4e\xee\x8f\x50\xed\x8e\x4e\xee\x96\x5a\xed\x9d\x6c\ \xec\x9a\x64\xeb\xa6\x78\xe9\xa7\x80\xe8\xae\x88\xe6\xb5\x97\xe4\ \xb7\x9d\xe4\xb4\x9a\xe5\xb0\x94\xe6\xb0\x92\xe5\xb6\x99\xe4\xb7\ \x9d\xe7\xad\x87\xea\xa5\x78\xe8\xaf\x8b\xe7\xb1\x94\xe8\xaa\x84\ \xe8\xaa\x85\xe7\xa5\x7f\xea\x9b\x69\xeb\xa2\x6c\xea\x9e\x6d\xea\ \x9b\x68\xea\xaa\x83\xe9\xb1\x8e\xea\xb6\x93\xe7\xb8\x9e\xe9\xaf\ \x91\xe9\xa9\x84\xe9\x9e\x72\xe8\x8c\x53\xec\x8e\x4f\xeb\x8f\x54\ \xee\x8d\x4c\xed\x8c\x4c\xec\x8b\x4b\xed\x8c\x4c\xee\x8e\x4f\xec\ \x8f\x50\xea\x90\x54\xe9\x91\x55\xb5\x7b\x5b\xae\x6d\x47\x79\x67\ \x58\x4c\x52\x51\x3a\x4a\x50\x29\x31\x32\x9f\x6c\x4b\xf6\xa6\x6e\ \xbd\x8b\x71\x6e\x63\x61\x5e\x5a\x5d\x51\x54\x53\x5e\x57\x53\xa0\ \x71\x4e\xa3\x77\x62\x78\x68\x5a\xdf\x99\x6b\x8f\x78\x72\x00\x00\ \x00\xf2\x98\x59\xf1\x98\x5a\xf1\x99\x5a\xf1\x98\x5b\xf1\x98\x5a\ \xf1\x97\x58\xf1\x97\x57\xf3\x98\x5a\xf1\x96\x59\xf0\x98\x57\xf0\ \x97\x58\xf0\x96\x59\xf0\x96\x57\xf2\x96\x56\xf1\x96\x55\xf1\x96\ \x58\xf1\x96\x57\xf0\x96\x57\xf1\x96\x57\xf0\x95\x57\xef\x96\x57\ \xf0\x94\x55\xf2\x95\x55\xf0\x95\x55\xf0\x95\x56\xf1\x94\x55\xf1\ \x95\x56\xf0\x95\x56\xf0\x94\x56\xef\x95\x56\xf1\x94\x55\xf1\x94\ \x54\xf0\x94\x55\xf0\x94\x55\xef\x94\x57\xf0\x94\x56\xf0\x93\x53\ \xf1\x93\x53\xf0\x94\x54\xef\x95\x53\xf2\x94\x52\xee\x94\x56\xf0\ \x92\x52\xf1\x92\x54\xf0\x92\x54\xef\x93\x52\xf1\x92\x51\xf0\x92\ \x53\xef\x93\x53\xf0\x93\x52\xf0\x93\x51\xf0\x92\x52\xf0\x92\x52\ \xf0\x93\x52\xee\x92\x53\xee\x92\x52\xf0\x92\x51\xef\x92\x52\xee\ \x92\x51\xef\x92\x51\xf0\x91\x50\xf0\x92\x50\xf0\x91\x54\xf0\x91\ \x50\xef\x92\x50\xf0\x91\x51\xee\x92\x51\xef\x92\x52\xed\x92\x51\ \xef\x91\x51\xf0\x92\x50\xf0\x92\x52\xef\x92\x51\xef\x91\x51\xee\ \x91\x50\xef\x91\x52\xf0\x90\x51\xef\x91\x4f\xf0\x90\x4f\xf0\x90\ \x4f\xf1\x90\x50\xf1\x90\x50\xf0\x8f\x50\xf1\x90\x4f\xef\x93\x54\ \xed\x94\x57\xef\x90\x4e\xf0\x91\x50\xed\x91\x52\xee\x8f\x4d\xf0\ \x8e\x4e\xed\x92\x51\xee\x95\x58\xed\x95\x58\xee\x94\x55\xed\x93\ \x56\xec\x92\x52\xef\x98\x5b\xee\x9c\x65\xed\x97\x5d\xee\x96\x59\ \xeb\x93\x54\xec\x8f\x50\xee\x9c\x63\xed\xad\x82\xeb\xb0\x8a\xe8\ \xaf\x89\xeb\xab\x87\xe7\xb1\x93\xe4\xb7\x9d\xe5\xb2\x97\xe5\xb0\ \x90\xe6\xa8\x85\xe6\xaa\x8a\xe4\xb0\x95\xe3\xb7\x9f\xe4\xbe\xa7\ \xe4\xbf\xa4\xe4\xbd\xa1\xe3\xc0\xa7\xe4\xb6\x98\xe6\xb1\x8f\xe6\ \xac\x8a\xe9\x9f\x71\xe9\xaf\x88\xe7\xad\x8c\xea\xa2\x73\xea\xaa\ \x81\xe6\xb6\x99\xe4\xb6\x9d\xe2\xae\x94\xe4\xa1\x7f\xe4\x93\x65\ \xe6\x8b\x54\xeb\x89\x48\xeb\x89\x49\xeb\x89\x4c\xeb\x8b\x49\xec\ \x8a\x48\xe9\x8b\x4b\xde\x85\x4b\xdb\x82\x4a\xd1\x85\x4f\x93\x65\ \x4f\xa7\x6a\x46\xd4\x87\x58\xac\x7a\x5e\x7e\x62\x4e\x42\x4d\x49\ \x47\x46\x42\x47\x46\x41\x75\x56\x4c\xd6\x98\x77\x70\x64\x62\x3f\ \x48\x4c\x78\x64\x58\x74\x69\x5e\x65\x63\x62\x63\x65\x67\x9a\x70\ \x55\x7e\x6d\x63\x8f\x6d\x5b\x58\x58\x5c\x00\x00\x00\xf1\x98\x59\ \xf1\x99\x5a\xf1\x98\x59\xf2\x97\x57\xf1\x97\x59\xf0\x97\x5a\xf1\ \x97\x58\xf2\x98\x5a\xf1\x97\x59\xf2\x97\x58\xf1\x96\x58\xf1\x96\ \x58\xf1\x96\x56\xf0\x96\x56\xf2\x95\x55\xf1\x96\x58\xf1\x95\x56\ \xf0\x95\x56\xf2\x96\x55\xef\x95\x56\xf1\x95\x57\xf0\x95\x56\xf0\ \x95\x57\xf1\x95\x55\xf0\x95\x55\xef\x95\x58\xf0\x95\x57\xef\x94\ \x56\xf1\x94\x56\xef\x95\x57\xf1\x94\x54\xf0\x95\x56\xf0\x94\x54\ \xf0\x94\x54\xef\x94\x54\xef\x95\x54\xf0\x93\x54\xf1\x94\x55\xf0\ \x94\x54\xf0\x94\x54\xef\x93\x54\xef\x94\x52\xef\x93\x54\xf0\x92\ \x53\xef\x92\x53\xf0\x93\x52\xf0\x92\x52\xf0\x93\x51\xf0\x92\x52\ \xef\x92\x52\xf0\x91\x51\xef\x92\x52\xf0\x91\x53\xf0\x93\x51\xee\ \x92\x52\xef\x92\x54\xef\x92\x51\xf0\x92\x52\xee\x91\x52\xee\x92\ \x52\xef\x91\x51\xef\x92\x51\xef\x92\x52\xf0\x91\x50\xee\x92\x51\ \xef\x91\x53\xef\x92\x51\xed\x92\x51\xee\x91\x51\xee\x90\x54\xee\ \x92\x52\xed\x91\x51\xee\x92\x52\xee\x91\x51\xee\x92\x51\xef\x90\ \x50\xee\x91\x50\xee\x90\x50\xef\x90\x4d\xef\x90\x4e\xf0\x8f\x4f\ \xf0\x90\x4f\xef\x8e\x50\xf0\x90\x4e\xee\x91\x54\xed\x92\x56\xee\ \x90\x50\xef\x8f\x4f\xee\x8f\x50\xee\x8e\x4e\xee\x8d\x4f\xee\x92\ \x52\xed\x9c\x64\xeb\x9b\x65\xed\x98\x61\xec\x96\x5d\xec\x92\x56\ \xec\x95\x5c\xec\x9c\x69\xec\x98\x62\xee\x9d\x69\xec\x9b\x66\xec\ \x94\x59\xeb\x9e\x69\xe8\xac\x86\xe6\xb4\x97\xe6\xb1\x94\xe8\xb1\ \x90\xe5\xb6\x9a\xe4\xbc\xa3\xe5\xb3\x97\xe6\xac\x8c\xe7\xb0\x90\ \xe6\xab\x88\xe6\xa8\x83\xe5\xa9\x87\xe3\xbb\xa0\xe0\xc7\xb3\xe0\ \xcb\xb7\xdf\xc9\xb8\xe0\xc9\xb7\xe2\xc6\xb0\xe3\xbc\xa4\xe7\xa8\ \x83\xe7\xaa\x85\xe7\xad\x8d\xe8\xaa\x84\xe6\xad\x8c\xe5\xa5\x83\ \xe4\x9e\x79\xe5\x92\x5f\xe8\x8d\x55\xea\x88\x48\xea\x88\x47\xea\ \x89\x46\xeb\x8a\x48\xeb\x89\x49\xec\x8a\x49\xec\x8b\x48\xe4\x89\ \x4e\xe4\x87\x4c\xe4\x87\x48\xd9\x86\x53\xb5\x6f\x4b\xcc\x7a\x49\ \xc8\x89\x5e\x55\x53\x59\x4c\x4b\x45\x71\x61\x4e\x6c\x5e\x52\x45\ \x4b\x4c\x50\x4a\x4b\x6b\x5f\x5c\x77\x6e\x65\x35\x3f\x41\x68\x52\ \x40\x4f\x43\x33\x3a\x4c\x57\x3d\x4b\x54\x7d\x6c\x5e\x72\x66\x65\ \x33\x39\x3d\x4b\x43\x38\x00\x00\x00\xf2\x97\x58\xf2\x97\x59\xf0\ \x98\x58\xf2\x96\x59\xf0\x97\x5a\xf1\x97\x59\xf0\x97\x59\xf0\x97\ \x59\xf1\x96\x59\xf1\x96\x59\xf1\x96\x58\xf1\x96\x58\xf1\x96\x56\ \xf1\x95\x58\xf1\x96\x55\xf1\x95\x56\xf1\x94\x56\xf0\x95\x55\xf0\ \x95\x56\xf1\x96\x55\xf0\x95\x55\xf0\x95\x55\xef\x95\x57\xf0\x95\ \x55\xf1\x94\x55\xef\x95\x57\xef\x95\x56\xef\x95\x56\xef\x95\x56\ \xf0\x94\x55\xef\x94\x55\xf1\x94\x56\xf0\x94\x53\xee\x93\x55\xef\ \x94\x53\xf0\x94\x54\xf0\x93\x53\xf0\x94\x54\xf0\x94\x53\xf0\x94\ \x53\xef\x93\x55\xf0\x93\x53\xef\x92\x55\xef\x93\x53\xef\x92\x52\ \xf0\x92\x52\xef\x92\x52\xef\x92\x53\xef\x91\x52\xef\x92\x51\xee\ \x92\x51\xee\x92\x53\xf0\x92\x51\xf1\x92\x52\xf0\x91\x51\xee\x91\ \x53\xee\x93\x52\xee\x91\x51\xee\x92\x52\xee\x90\x52\xee\x91\x52\ \xef\x91\x51\xee\x91\x53\xf1\x92\x4f\xf0\x91\x52\xee\x91\x51\xee\ \x92\x51\xed\x91\x51\xef\x92\x50\xef\x91\x53\xef\x91\x52\xee\x92\ \x51\xee\x92\x51\xee\x91\x50\xef\x91\x51\xf0\x90\x4f\xef\x91\x51\ \xee\x90\x50\xef\x90\x4f\xee\x8f\x4e\xf0\x8e\x4f\xf0\x8f\x4e\xf0\ \x8e\x50\xef\x90\x50\xef\x8f\x51\xee\x90\x4f\xef\x8f\x4f\xef\x8e\ \x4e\xef\x8e\x4e\xef\x8e\x4d\xef\x8d\x4e\xed\x91\x52\xeb\x96\x5f\ \xeb\x96\x5c\xec\x94\x59\xeb\x91\x55\xec\x90\x51\xed\x90\x54\xeb\ \x94\x5b\xec\x95\x5c\xed\xa0\x6e\xec\xa0\x71\xeb\x97\x5f\xea\x98\ \x63\xe9\x9e\x6d\xe8\xaa\x84\xe7\xac\x8c\xe8\xac\x89\xe6\xb4\x96\ \xe4\xbf\xa7\xe4\xbb\xa2\xe6\xae\x90\xe6\xb0\x93\xe6\xb0\x92\xe5\ \xb7\x98\xe6\xb5\x93\xe3\xbe\xa2\xe0\xcd\xb9\xe1\xd1\xc4\xdf\xcd\ \xbc\xe1\xd1\xc2\xe1\xd2\xc5\xe0\xc9\xb8\xe4\xb5\x99\xe7\xa9\x86\ \xe6\xa4\x7e\xe6\x9e\x72\xe3\x9b\x71\xe7\x90\x5b\xe7\x90\x59\xea\ \x8c\x50\xeb\x8d\x4e\xeb\x8b\x4d\xea\x89\x47\xea\x88\x47\xeb\x8a\ \x47\xeb\x8a\x47\xeb\x8a\x49\xeb\x8b\x49\xea\x8b\x4c\xe3\x84\x45\ \xec\x8d\x4c\xe8\x8c\x51\xe6\x8d\x52\xc9\x7d\x4f\x6b\x5f\x52\x2b\ \x36\x33\x96\x6f\x4f\x94\x77\x65\x6b\x5d\x4f\x60\x60\x58\x58\x53\ \x54\x5e\x5e\x59\x53\x57\x57\x2b\x32\x33\x68\x55\x45\x53\x43\x33\ \x25\x2e\x30\x36\x41\x46\x48\x4e\x50\x48\x49\x4b\x57\x4c\x44\x39\ \x3a\x37\x00\x00\x00\xf1\x98\x59\xf1\x97\x59\xef\x97\x59\xef\x97\ \x57\xf0\x97\x57\xf0\x97\x59\xf0\x97\x59\xf1\x96\x5a\xf2\x97\x59\ \xf1\x97\x59\xef\x96\x58\xf0\x95\x58\xf0\x96\x57\xf1\x96\x58\xf0\ \x96\x57\xf0\x96\x57\xf0\x96\x57\xf0\x95\x56\xf0\x95\x55\xf1\x94\ \x55\xef\x95\x55\xf0\x95\x56\xee\x94\x56\xef\x95\x57\xef\x95\x55\ \xef\x94\x55\xef\x94\x56\xef\x95\x55\xee\x95\x55\xf1\x94\x55\xef\ \x93\x55\xf0\x94\x54\xf0\x93\x53\xee\x93\x54\xee\x94\x55\xef\x93\ \x56\xef\x94\x53\xef\x94\x57\xef\x94\x56\xef\x94\x55\xee\x94\x55\ \xee\x93\x53\xee\x93\x54\xef\x93\x53\xef\x92\x53\xed\x93\x52\xee\ \x91\x52\xef\x92\x53\xee\x92\x51\xee\x93\x51\xee\x92\x52\xee\x93\ \x51\xf1\x93\x50\xef\x91\x51\xf0\x92\x51\xef\x92\x51\xee\x92\x52\ \xee\x92\x54\xee\x92\x53\xef\x91\x52\xef\x92\x51\xef\x92\x51\xef\ \x92\x52\xf0\x91\x51\xf0\x91\x51\xee\x90\x52\xef\x91\x51\xee\x91\ \x51\xf0\x92\x52\xef\x92\x51\xee\x92\x51\xed\x92\x53\xee\x92\x51\ \xef\x91\x51\xef\x90\x50\xee\x91\x4f\xef\x90\x4f\xee\x90\x4f\xef\ \x8f\x4f\xef\x8f\x4f\xee\x8f\x50\xee\x8f\x50\xf0\x8e\x4f\xef\x8f\ \x50\xf0\x8e\x51\xee\x8f\x50\xef\x8e\x4f\xee\x8d\x4e\xee\x8d\x4d\ \xee\x8d\x4d\xee\x8e\x4d\xed\x8d\x4d\xed\x8e\x4f\xed\x90\x52\xee\ \x8f\x4f\xee\x8f\x4d\xed\x8d\x4c\xee\x8e\x4e\xed\x90\x52\xed\x95\ \x5a\xec\x9e\x6f\xe9\x9a\x6c\xea\x8f\x55\xec\x93\x5a\xeb\x9d\x67\ \xeb\xa6\x7b\xea\xa9\x84\xe6\x9c\x70\xe4\x9d\x72\xe4\xb2\x94\xe4\ \xba\xa5\xe7\xae\x8c\xe7\xac\x88\xe5\xb1\x94\xe2\xbc\xa4\xe2\xc3\ \xae\xe2\xce\xb9\xe3\xd5\xc7\xe1\xd6\xca\xe2\xd5\xc9\xe2\xd5\xca\ \xe1\xd4\xcb\xe0\xd0\xc5\xe0\xc4\xb1\xe5\xb8\x9f\xe6\xa7\x82\xe7\ \x98\x67\xe7\x8f\x57\xe8\x8c\x50\xe9\x90\x58\xe9\x8f\x56\xea\x8e\ \x52\xea\x8b\x4f\xec\x8a\x4a\xeb\x89\x4a\xeb\x89\x49\xea\x8a\x47\ \xeb\x8a\x49\xec\x8a\x49\xe9\x89\x4a\xeb\x8a\x48\xe5\x8b\x51\xe3\ \x89\x54\xd4\x82\x4e\xb8\x7a\x51\x71\x5b\x4c\x51\x4e\x3f\xb7\x7c\ \x52\x54\x52\x50\x4f\x55\x51\x49\x50\x51\x45\x43\x3a\x3f\x47\x46\ \x48\x4b\x4c\x29\x32\x32\x22\x26\x23\x27\x32\x2e\x48\x3c\x2c\x32\ \x3f\x46\x3e\x47\x49\x41\x4a\x4b\x3f\x3f\x3c\x30\x38\x32\x00\x00\ \x00\xf1\x97\x56\xf2\x97\x58\xf0\x96\x57\xf0\x97\x57\xf1\x97\x57\ \xf0\x96\x58\xf0\x96\x58\xf2\x98\x58\xf1\x96\x59\xef\x95\x59\xf0\ \x96\x59\xf0\x96\x59\xf0\x95\x58\xf0\x95\x57\xf1\x95\x56\xf0\x95\ \x58\xf1\x94\x55\xf0\x94\x55\xef\x95\x55\xf0\x94\x54\xef\x94\x56\ \xf0\x93\x54\xf1\x94\x55\xf1\x94\x55\xf0\x95\x54\xf0\x93\x54\xee\ \x94\x57\xee\x93\x55\xee\x94\x55\xf0\x94\x53\xef\x94\x53\xee\x94\ \x54\xee\x93\x53\xef\x93\x53\xf0\x94\x54\xf0\x94\x53\xf0\x95\x55\ \xf0\x96\x56\xf0\x94\x55\xf1\x94\x54\xee\x94\x54\xee\x94\x53\xef\ \x93\x52\xee\x93\x52\xef\x92\x52\xed\x92\x52\xef\x92\x51\xee\x92\ \x53\xf0\x92\x51\xef\x92\x51\xef\x92\x51\xee\x91\x51\xee\x92\x52\ \xef\x91\x52\xee\x92\x51\xee\x91\x52\xee\x91\x50\xef\x91\x52\xef\ \x90\x53\xed\x91\x52\xf0\x90\x52\xee\x91\x4f\xed\x92\x51\xef\x91\ \x50\xef\x90\x50\xef\x91\x51\xee\x90\x51\xef\x90\x50\xf0\x91\x51\ \xee\x92\x50\xed\x92\x52\xed\x92\x50\xef\x90\x51\xed\x90\x53\xef\ \x91\x4f\xef\x90\x50\xee\x90\x51\xee\x8f\x51\xef\x8f\x50\xee\x8e\ \x4f\xee\x8e\x4f\xef\x8e\x4f\xef\x8e\x4f\xef\x8d\x4e\xf0\x8e\x50\ \xee\x8e\x4f\xef\x8f\x4d\xef\x8f\x4e\xee\x8d\x4d\xee\x8e\x4c\xed\ \x8d\x4c\xef\x8e\x4d\xee\x8d\x4d\xed\x8c\x4d\xee\x8d\x4c\xed\x8d\ \x4b\xee\x8d\x4d\xef\x8e\x4e\xee\x8f\x4e\xeb\x90\x54\xea\x8f\x54\ \xeb\x8c\x50\xed\x8c\x4c\xee\x90\x51\xec\x9d\x68\xe9\xa4\x7b\xe5\ \x9c\x71\xe8\x8e\x58\xeb\x8a\x4d\xe7\x94\x61\xe5\xa2\x7d\xe7\xad\ \x8b\xe8\xb2\x90\xe6\xb2\x93\xe5\xbd\xa2\xe1\xc7\xb0\xe1\xd2\xc4\ \xe3\xd6\xce\xe4\xd7\xcf\xe5\xd9\xd0\xe3\xd8\xce\xe0\xd2\xc6\xe0\ \xd1\xc6\xde\xca\xbb\xe1\xbe\xa9\xe4\xab\x8e\xe6\x9d\x71\xe8\x92\ \x58\xe9\x93\x59\xe8\x8c\x55\xe9\x8b\x50\xeb\x89\x4b\xeb\x8b\x4e\ \xea\x8b\x4a\xea\x8a\x4b\xea\x89\x47\xeb\x8a\x48\xec\x8b\x48\xec\ \x8a\x4a\xeb\x8b\x49\xed\x8d\x4a\xdd\x87\x50\xe8\x8b\x54\xd7\x88\ \x5a\x7a\x5c\x4b\xa9\x6a\x42\x67\x5f\x57\x77\x5e\x52\x92\x73\x5c\ \x57\x58\x51\x33\x45\x48\x2f\x3a\x3b\x3f\x4c\x4d\x29\x36\x40\x63\ \x4c\x39\xb9\x7d\x57\x81\x5c\x3a\xa6\x7f\x6a\x63\x5a\x59\x58\x4b\ \x41\x70\x6a\x63\x2f\x37\x37\x3e\x3b\x30\x00\x00\x00\xf1\x97\x57\ \xef\x97\x57\xf2\x96\x59\xf1\x97\x58\xef\x96\x58\xf0\x95\x59\xf1\ \x95\x59\xf0\x95\x59\xf1\x96\x57\xf1\x96\x58\xf0\x96\x57\xf0\x95\ \x58\xef\x95\x57\xf0\x96\x55\xf1\x94\x56\xf0\x95\x55\xef\x94\x56\ \xf0\x94\x54\xee\x93\x55\xf0\x93\x52\xef\x93\x53\xef\x93\x54\xee\ \x93\x53\xee\x94\x55\xed\x93\x53\xef\x94\x52\xee\x94\x52\xef\x93\ \x53\xf0\x93\x53\xee\x93\x51\xf0\x94\x54\xf0\x93\x56\xef\x93\x55\ \xef\x94\x56\xee\x94\x57\xf0\x99\x5d\xf0\x9c\x62\xef\x99\x5c\xef\ \x95\x55\xee\x94\x57\xee\x94\x52\xee\x92\x54\xed\x92\x53\xee\x92\ \x52\xf1\x91\x51\xee\x92\x51\xef\x91\x51\xee\x92\x54\xef\x91\x51\ \xee\x91\x53\xee\x92\x53\xef\x91\x52\xec\x91\x52\xed\x92\x53\xee\ \x92\x53\xee\x92\x50\xee\x91\x51\xee\x91\x52\xee\x91\x53\xee\x91\ \x53\xee\x90\x51\xed\x91\x51\xee\x91\x51\xee\x90\x51\xee\x91\x53\ \xee\x91\x53\xee\x90\x51\xef\x90\x50\xed\x91\x51\xed\x90\x51\xed\ \x90\x54\xee\x91\x52\xee\x91\x50\xef\x91\x50\xee\x8f\x4f\xef\x8f\ \x51\xec\x90\x51\xf0\x8e\x51\xee\x8e\x50\xee\x8f\x50\xef\x8e\x4f\ \xef\x8f\x4f\xee\x8e\x4e\xec\x8f\x4e\xee\x8d\x50\xec\x8e\x4e\xee\ \x8d\x4e\xef\x8d\x4f\xef\x8d\x50\xef\x8d\x4f\xef\x8e\x4d\xed\x8c\ \x4d\xee\x8d\x4d\xee\x8d\x4d\xed\x8d\x4d\xee\x8c\x4d\xed\x8d\x4d\ \xec\x8d\x50\xed\x8b\x50\xed\x8c\x4e\xed\x8c\x4c\xed\x8d\x4c\xec\ \x8b\x4c\xec\x8d\x4c\xea\x92\x59\xe7\x96\x62\xea\x8c\x51\xec\x89\ \x49\xec\x8a\x4a\xeb\x8a\x4b\xea\x95\x5f\xe6\x9c\x70\xe5\xa7\x85\ \xe4\xb4\x96\xe2\xbb\xa3\xe0\xbf\xad\xdf\xc5\xb5\xe0\xd1\xc6\xe3\ \xd6\xce\xe4\xd7\xd0\xe4\xd7\xd0\xe0\xd1\xc6\xde\xc8\xb8\xdf\xbf\ \xae\xe3\xba\xa3\xe7\xae\x90\xe9\xa6\x7f\xea\x9c\x6c\xe8\x98\x65\ \xe8\x8e\x55\xea\x8c\x4e\xea\x89\x4b\xeb\x8a\x48\xea\x8b\x4d\xeb\ \x8a\x4a\xec\x8b\x49\xeb\x8a\x4a\xea\x8b\x48\xeb\x8a\x4a\xec\x8b\ \x4b\xeb\x8c\x4c\xe2\x88\x50\xde\x86\x4e\xba\x7c\x58\xba\x71\x45\ \xdc\x8e\x59\x8b\x68\x57\x75\x60\x4c\x93\x69\x4d\x85\x66\x54\x36\ \x41\x3d\x43\x36\x21\x70\x5d\x4e\x87\x6c\x51\x77\x5e\x50\xbd\x7b\ \x57\x99\x7d\x73\x72\x59\x4f\x79\x64\x56\x31\x42\x4a\x47\x4e\x52\ \x40\x4b\x4c\x39\x45\x43\x00\x00\x00\xf1\x96\x5a\xf1\x97\x58\xf0\ \x95\x59\xf1\x96\x59\xf1\x96\x58\xf1\x97\x59\xf1\x96\x58\xf1\x95\ \x58\xf0\x95\x58\xef\x95\x56\xef\x95\x56\xf0\x96\x57\xef\x95\x57\ \xef\x95\x55\xef\x94\x56\xee\x94\x55\xf0\x92\x55\xef\x93\x56\xee\ \x94\x54\xef\x92\x55\xee\x93\x54\xef\x92\x54\xee\x93\x55\xef\x94\ \x54\xee\x92\x55\xee\x93\x53\xef\x93\x53\xed\x93\x55\xee\x92\x54\ \xee\x93\x54\xed\x93\x55\xed\x93\x55\xef\x94\x56\xef\x96\x59\xf1\ \xa0\x68\xef\xa0\x6a\xef\x9b\x66\xee\x99\x5f\xee\x94\x54\xec\x93\ \x55\xed\x94\x54\xee\x94\x53\xee\x92\x53\xee\x92\x52\xee\x92\x53\ \xee\x92\x52\xef\x91\x52\xee\x91\x51\xef\x91\x51\xee\x92\x51\xee\ \x92\x51\xed\x91\x51\xee\x91\x52\xec\x92\x52\xed\x91\x53\xef\x91\ \x51\xee\x91\x53\xef\x92\x51\xed\x91\x52\xef\x90\x51\xef\x91\x50\ \xed\x92\x51\xef\x91\x51\xee\x91\x52\xed\x90\x52\xed\x90\x53\xee\ \x91\x53\xef\x90\x52\xee\x91\x50\xef\x90\x52\xee\x90\x53\xee\x90\ \x52\xee\x91\x51\xef\x8f\x4f\xef\x8e\x50\xef\x8e\x50\xee\x90\x4f\ \xf0\x8e\x51\xef\x8f\x4f\xee\x8f\x4f\xed\x8f\x50\xed\x8e\x50\xef\ \x8e\x4e\xef\x8d\x4f\xef\x8e\x4e\xee\x8d\x4d\xee\x8d\x4f\xee\x8e\ \x4f\xee\x8d\x4e\xee\x8d\x4f\xee\x8d\x4d\xef\x8d\x4f\xef\x8e\x4e\ \xee\x8d\x4e\xed\x8d\x4d\xee\x8d\x4d\xee\x8d\x4d\xee\x8d\x4d\xed\ \x8c\x4d\xee\x8d\x4d\xed\x8d\x4b\xec\x8c\x4b\xed\x8c\x4c\xec\x8c\ \x4c\xec\x8f\x50\xec\x8f\x53\xed\x8d\x4d\xec\x8b\x4c\xeb\x8a\x4a\ \xea\x8b\x4b\xea\x90\x56\xe9\x95\x60\xea\x94\x5d\xe6\xa1\x77\xe0\ \x98\x73\xe3\x9b\x71\xe2\xaf\x93\xe0\xbf\xad\xdf\xcb\xbd\xe0\xd2\ \xc7\xe1\xd3\xca\xde\xce\xc2\xe0\xc5\xb2\xe2\xbf\xaa\xe3\xbd\xa6\ \xe4\xb6\x9e\xe6\xaf\x8f\xe8\xa6\x7f\xe8\x9e\x74\xea\x99\x67\xe9\ \x8d\x54\xe9\x89\x4d\xea\x88\x47\xea\x88\x46\xe9\x88\x49\xec\x8c\ \x4d\xeb\x8c\x4d\xeb\x8a\x4a\xec\x8a\x4a\xe4\x88\x49\xdb\x81\x47\ \xe4\x87\x49\xeb\x8f\x52\xcf\x83\x53\xcb\x82\x53\xaa\x7a\x5e\xb7\ \x7c\x59\x9d\x76\x62\x4f\x4c\x4d\x58\x54\x4f\x6d\x50\x34\xdd\x96\ \x65\xdb\x8d\x60\xd7\x95\x6c\x99\x77\x60\x6d\x65\x62\x71\x59\x4b\ \x3d\x40\x3d\x31\x3a\x37\x33\x3f\x44\x48\x4f\x50\x54\x59\x5b\x42\ \x49\x46\x00\x00\x00\xf0\x96\x58\xf0\x96\x58\xf1\x96\x59\xf0\x95\ \x56\xf1\x96\x55\xf0\x96\x56\xf1\x96\x56\xf0\x95\x57\xf0\x95\x58\ \xf0\x96\x56\xef\x94\x57\xef\x95\x55\xee\x94\x54\xee\x94\x55\xef\ \x94\x54\xef\x93\x55\xee\x93\x55\xef\x93\x56\xee\x93\x53\xee\x92\ \x53\xee\x93\x54\xef\x93\x52\xef\x93\x55\xed\x93\x54\xef\x92\x53\ \xee\x92\x53\xee\x92\x54\xed\x93\x55\xee\x93\x54\xee\x92\x55\xed\ \x92\x54\xee\x93\x56\xee\x94\x57\xef\x9b\x63\xee\xa5\x73\xf0\x9d\ \x66\xee\x95\x5b\xee\x93\x56\xef\x93\x52\xee\x93\x53\xed\x93\x53\ \xef\x93\x52\xef\x91\x51\xee\x91\x51\xee\x91\x51\xed\x91\x51\xef\ \x92\x53\xee\x91\x51\xef\x91\x51\xef\x92\x50\xee\x92\x50\xed\x92\ \x51\xee\x92\x52\xec\x91\x54\xee\x91\x51\xf0\x91\x50\xed\x91\x52\ \xee\x92\x51\xed\x91\x54\xee\x90\x51\xee\x91\x51\xee\x91\x51\xef\ \x91\x51\xed\x91\x51\xef\x90\x52\xed\x90\x52\xed\x91\x51\xec\x91\ \x52\xee\x92\x51\xed\x91\x53\xef\x91\x51\xed\x91\x51\xee\x90\x51\ \xee\x8f\x4f\xee\x8f\x4f\xef\x90\x50\xef\x90\x50\xf1\x90\x4f\xee\ \x90\x4f\xee\x8f\x50\xef\x8e\x52\xef\x8f\x50\xed\x8e\x50\xed\x8d\ \x50\xee\x8d\x4e\xef\x8d\x50\xed\x8e\x50\xee\x8e\x4e\xee\x8d\x4e\ \xef\x8d\x4e\xef\x8e\x4d\xef\x8e\x4f\xef\x8d\x4f\xee\x8d\x4f\xee\ \x8c\x4e\xef\x8e\x4e\xed\x8c\x4d\xed\x8c\x4c\xed\x8c\x4d\xed\x8d\ \x4c\xed\x8c\x4c\xec\x8b\x4c\xed\x8c\x4b\xed\x8b\x4b\xec\x8c\x4d\ \xec\x8c\x4d\xed\x8c\x4c\xeb\x8b\x4b\xed\x8d\x4c\xeb\x8b\x4c\xeb\ \x8e\x50\xe9\x91\x57\xe9\x8e\x55\xe8\x8d\x54\xe8\x89\x4e\xe8\x8c\ \x50\xe5\x97\x65\xe5\xa9\x86\xe1\xb3\x98\xe1\xbd\xa9\xdf\xc9\xba\ \xdf\xc6\xb6\xe0\xbe\xaa\xe0\xbc\xa9\xe2\xba\xa7\xe2\xaf\x95\xe2\ \xa5\x84\xe4\xa0\x78\xe7\x9a\x6d\xea\x9b\x6c\xe7\x92\x5e\xea\x89\ \x4b\xea\x89\x49\xea\x89\x47\xea\x8a\x48\xeb\x8d\x51\xea\x90\x56\ \xe9\x8a\x4a\xe9\x8a\x4a\xd7\x84\x51\xda\x84\x4e\xdd\x86\x4d\xc1\ \x7f\x56\xbf\x7f\x57\xab\x75\x56\xbf\x7d\x54\xb8\x80\x5b\x44\x52\ \x59\x4e\x48\x47\x5f\x57\x4a\x86\x65\x49\x93\x74\x63\x68\x53\x48\ \x96\x76\x64\x62\x58\x51\x41\x4f\x55\x3b\x49\x49\x31\x3e\x42\x27\ \x38\x37\x2a\x39\x3d\x4d\x4d\x4d\x5a\x5b\x5a\x35\x3e\x3a\x00\x00\ \x00\xf0\x95\x58\xef\x95\x58\xf0\x95\x58\xf0\x95\x58\xf0\x95\x57\ \xf0\x95\x56\xef\x95\x57\xf0\x95\x57\xf0\x94\x57\xf0\x95\x57\xef\ \x94\x56\xef\x94\x56\xee\x94\x54\xef\x93\x55\xef\x93\x53\xed\x93\ \x55\xee\x92\x53\xef\x92\x53\xef\x93\x52\xed\x93\x53\xef\x93\x52\ \xee\x92\x52\xee\x92\x53\xee\x92\x54\xed\x93\x54\xed\x93\x54\xee\ \x93\x53\xed\x92\x54\xec\x92\x55\xee\x92\x54\xee\x93\x52\xee\x94\ \x57\xef\x97\x58\xee\x9f\x68\xef\xa6\x75\xef\x9c\x64\xee\x94\x56\ \xee\x92\x52\xef\x93\x51\xed\x93\x52\xec\x91\x52\xee\x91\x52\xee\ \x91\x51\xee\x91\x51\xee\x90\x52\xed\x90\x52\xef\x91\x53\xed\x91\ \x51\xed\x91\x51\xed\x90\x51\xee\x91\x50\xf0\x92\x51\xed\x92\x53\ \xee\x91\x52\xef\x91\x52\xee\x92\x51\xed\x92\x52\xec\x91\x52\xec\ \x91\x53\xed\x90\x54\xed\x91\x53\xed\x91\x51\xee\x91\x53\xeb\x92\ \x53\xee\x91\x53\xee\x91\x51\xee\x91\x52\xec\x92\x53\xec\x92\x53\ \xed\x90\x53\xee\x90\x51\xee\x90\x51\xed\x90\x51\xed\x8f\x51\xee\ \x90\x4f\xee\x90\x50\xef\x8f\x50\xee\x8f\x50\xef\x8f\x50\xee\x8e\ \x52\xed\x8f\x52\xee\x8e\x50\xee\x8e\x51\xee\x8d\x4d\xee\x8d\x4e\ \xf0\x8e\x52\xee\x8e\x4e\xee\x8d\x50\xed\x8e\x4f\xed\x8d\x4f\xee\ \x8e\x4e\xee\x8d\x4e\xec\x8d\x4f\xee\x8d\x4e\xee\x8d\x4e\xee\x8c\ \x4e\xec\x8c\x4c\xed\x8c\x4c\xed\x8d\x4c\xed\x8c\x4e\xed\x8c\x4c\ \xed\x8c\x4c\xed\x8b\x4c\xec\x8c\x4b\xed\x8c\x4c\xed\x8c\x4c\xec\ \x8c\x4b\xec\x8b\x4b\xeb\x90\x51\xeb\x8c\x50\xea\x8c\x51\xe9\x8a\ \x4d\xea\x88\x49\xea\x88\x48\xea\x89\x49\xea\x86\x46\xe9\x8a\x4b\ \xe6\x99\x6a\xe5\x9f\x76\xe5\xa8\x84\xe3\xbd\xa6\xe1\xc0\xad\xe1\ \xb2\x99\xe1\xa4\x84\xe3\xa6\x88\xe3\x9f\x78\xe5\x94\x64\xe7\x9a\ \x6a\xe9\x9a\x6a\xe9\x9a\x6a\xe7\x95\x64\xea\x93\x5b\xe9\x8e\x55\ \xea\x8b\x4c\xec\x8d\x4e\xea\x8c\x53\xea\x8f\x54\xe9\x8d\x51\xe7\ \x89\x4d\xe1\x87\x4e\xe2\x88\x4e\xd6\x84\x4d\xbc\x7d\x5b\xbe\x7c\ \x58\xb5\x72\x4e\xef\x92\x54\x81\x67\x58\x4b\x4d\x4b\x9c\x6a\x45\ \x87\x71\x5b\x55\x56\x4d\x52\x4f\x4d\x1e\x2a\x2f\x42\x46\x3f\x43\ \x4e\x51\x3f\x4c\x50\x2e\x45\x48\x2c\x3b\x3c\x33\x45\x48\x2c\x3c\ \x40\x33\x37\x38\x4c\x52\x50\x46\x52\x56\x00\x00\x00\xf0\x95\x56\ \xef\x96\x56\xf0\x95\x56\xf0\x94\x55\xef\x94\x56\xf1\x95\x55\xef\ \x94\x56\xef\x94\x56\xef\x95\x55\xef\x94\x57\xef\x94\x56\xee\x93\ \x56\xee\x93\x55\xef\x94\x54\xee\x93\x53\xef\x92\x52\xee\x92\x52\ \xef\x92\x52\xee\x93\x53\xef\x92\x53\xef\x92\x52\xee\x93\x54\xee\ \x93\x53\xee\x93\x53\xee\x92\x53\xef\x93\x52\xef\x92\x53\xef\x92\ \x53\xee\x91\x53\xec\x92\x53\xee\x93\x55\xed\x94\x57\xed\x98\x5e\ \xed\x9e\x6c\xed\xa4\x77\xef\x99\x60\xee\x93\x53\xee\x92\x54\xef\ \x91\x52\xee\x91\x51\xec\x92\x50\xef\x90\x51\xef\x90\x51\xee\x90\ \x51\xee\x91\x50\xef\x91\x51\xee\x90\x52\xed\x91\x53\xee\x90\x51\ \xee\x90\x51\xef\x90\x50\xef\x91\x50\xee\x91\x50\xed\x92\x53\xed\ \x91\x53\xec\x92\x54\xec\x92\x54\xee\x91\x54\xed\x91\x52\xed\x91\ \x55\xee\x91\x53\xed\x91\x53\xec\x91\x55\xec\x92\x51\xed\x91\x52\ \xed\x91\x53\xec\x92\x53\xec\x92\x54\xec\x92\x53\xed\x91\x54\xee\ \x91\x50\xee\x91\x51\xee\x90\x51\xee\x8f\x51\xef\x90\x50\xee\x91\ \x52\xed\x90\x54\xed\x90\x53\xee\x8f\x52\xed\x8f\x51\xec\x8f\x51\ \xec\x8e\x51\xed\x8e\x50\xee\x8e\x4e\xee\x8d\x51\xef\x8e\x50\xec\ \x8d\x4e\xed\x8d\x51\xec\x8d\x50\xed\x8d\x4f\xee\x8d\x4e\xee\x8e\ \x4e\xed\x8d\x4d\xee\x8e\x4c\xed\x8e\x4c\xee\x8c\x4e\xed\x8d\x4b\ \xed\x8d\x4c\xed\x8d\x4c\xed\x8c\x4d\xed\x8d\x4b\xec\x8b\x4b\xec\ \x8c\x4b\xec\x8c\x4b\xec\x8c\x4b\xec\x8c\x4c\xec\x8c\x4b\xec\x8b\ \x4b\xeb\x8b\x4c\xec\x8b\x4b\xeb\x8b\x4a\xeb\x8a\x49\xeb\x8a\x48\ \xeb\x89\x49\xeb\x88\x47\xe9\x87\x47\xea\x87\x48\xe7\x8b\x4f\xe7\ \x92\x5d\xe8\xa2\x76\xe5\xb2\x96\xe2\xb6\x9f\xe3\xa9\x89\xe8\xa0\ \x71\xe6\x98\x6b\xe5\x8f\x59\xe9\x9b\x6a\xeb\xa5\x78\xe8\x9f\x72\ \xe7\x97\x64\xe8\x8c\x53\xe8\x8f\x56\xe8\x8e\x56\xea\x91\x56\xeb\ \x97\x61\xeb\x95\x5f\xeb\x95\x5d\xeb\x95\x5f\xea\x8d\x50\xeb\x8b\ \x4a\xe4\x88\x4b\xd1\x82\x55\xca\x7d\x50\xb2\x73\x51\xc7\x81\x55\ \x80\x60\x50\x78\x56\x3e\xba\x7c\x54\xb5\x84\x63\x6e\x62\x56\x38\ \x4d\x4c\x36\x44\x49\x3e\x4f\x53\x23\x39\x37\x35\x4a\x47\x37\x48\ \x4c\x41\x52\x51\x3e\x49\x4a\x69\x5c\x4b\x69\x62\x56\x49\x54\x53\ \x38\x43\x4a\x2f\x3b\x3d\x00\x00\x00\xef\x95\x57\xef\x96\x58\xf0\ \x93\x54\xee\x95\x55\xee\x95\x57\xef\x94\x54\xef\x94\x55\xef\x95\ \x57\xed\x93\x58\xee\x93\x55\xee\x94\x55\xee\x93\x52\xed\x92\x55\ \xee\x93\x55\xed\x93\x51\xee\x92\x52\xee\x91\x53\xed\x92\x53\xec\ \x92\x52\xed\x92\x53\xec\x91\x54\xed\x91\x55\xed\x92\x55\xec\x92\ \x52\xec\x92\x55\xed\x92\x52\xee\x92\x51\xee\x91\x51\xee\x92\x52\ \xec\x93\x53\xee\x91\x53\xed\x91\x55\xec\x92\x56\xed\x94\x58\xeb\ \x96\x5f\xec\x94\x56\xec\x91\x53\xed\x91\x51\xed\x90\x52\xee\x91\ \x52\xec\x91\x52\xef\x91\x50\xee\x91\x50\xef\x90\x51\xef\x91\x51\ \xef\x90\x52\xee\x91\x51\xef\x90\x51\xef\x91\x51\xef\x91\x50\xee\ \x90\x53\xed\x91\x53\xee\x91\x54\xed\x91\x54\xec\x92\x53\xee\x91\ \x53\xef\x91\x54\xeb\x91\x54\xec\x91\x56\xeb\x92\x55\xec\x92\x55\ \xec\x92\x55\xed\x93\x56\xec\x92\x54\xec\x93\x52\xed\x93\x55\xee\ \x92\x55\xee\x92\x55\xed\x92\x55\xed\x91\x54\xed\x91\x51\xeb\x90\ \x51\xeb\x90\x51\xed\x90\x52\xeb\x91\x51\xeb\x90\x52\xec\x90\x54\ \xec\x91\x53\xea\x91\x54\xed\x90\x51\xec\x8f\x51\xeb\x8f\x53\xed\ \x8f\x50\xed\x8d\x50\xeb\x8e\x52\xec\x8e\x50\xed\x8d\x50\xec\x8d\ \x51\xed\x8c\x50\xeb\x8c\x51\xee\x8d\x4f\xed\x8c\x4f\xee\x8c\x4e\ \xee\x8b\x4e\xee\x8c\x4d\xed\x8c\x4e\xed\x8c\x4d\xed\x8d\x4c\xec\ \x8d\x4c\xed\x8c\x4d\xed\x8c\x4c\xec\x8b\x4b\xec\x8b\x4c\xeb\x8b\ \x4b\xeb\x8b\x4a\xec\x8b\x4a\xec\x8b\x49\xec\x8b\x4a\xea\x89\x4a\ \xeb\x8a\x4a\xeb\x89\x4a\xea\x8a\x49\xeb\x8a\x49\xeb\x89\x49\xeb\ \x8a\x49\xeb\x8a\x4a\xea\x8c\x4c\xea\x8e\x4f\xec\x97\x60\xe7\xa5\ \x7b\xe6\xa5\x7c\xe7\xad\x8c\xe9\xac\x88\xe8\xa9\x89\xe6\x9b\x70\ \xe8\x8e\x53\xeb\x9c\x69\xeb\xad\x88\xea\xab\x86\xe9\x9b\x6b\xe9\ \x8d\x53\xe8\x8c\x53\xe8\x88\x48\xe9\x8e\x55\xe7\x90\x5c\xe8\x91\ \x5b\xeb\x9a\x66\xe9\x99\x69\xe9\x8f\x57\xec\x8b\x49\xd3\x84\x51\ \xdc\x86\x53\xcc\x82\x56\xb9\x77\x53\xbd\x79\x51\xa7\x65\x39\xb7\ \x76\x47\xd9\x8c\x5f\xb3\x7d\x60\x76\x61\x59\x50\x50\x4e\x30\x40\ \x45\x38\x4a\x4c\x41\x50\x4e\x4d\x57\x50\x85\x6c\x56\x8e\x78\x64\ \x88\x6e\x60\xb5\x7c\x5c\x99\x78\x69\x4d\x53\x58\x40\x48\x4f\x34\ \x3c\x3b\x00\x00\x00\xf0\x96\x57\xee\x95\x55\xf0\x94\x53\xf0\x93\ \x55\xee\x93\x56\xed\x93\x57\xed\x92\x56\xef\x93\x56\xed\x94\x56\ \xee\x94\x55\xed\x93\x53\xee\x92\x52\xef\x91\x51\xed\x91\x54\xed\ \x91\x54\xee\x91\x54\xed\x91\x54\xee\x91\x52\xef\x91\x52\xed\x91\ \x52\xed\x91\x53\xed\x91\x52\xed\x92\x52\xee\x92\x53\xf0\x91\x50\ \xed\x91\x54\xed\x91\x52\xed\x91\x53\xed\x91\x51\xee\x91\x50\xeb\ \x91\x53\xec\x91\x53\xed\x91\x51\xee\x91\x52\xed\x93\x54\xed\x91\ \x53\xec\x91\x51\xee\x90\x52\xee\x90\x51\xee\x90\x50\xed\x91\x51\ \xec\x90\x51\xef\x8f\x51\xef\x90\x4f\xed\x90\x50\xee\x90\x51\xec\ \x90\x52\xef\x90\x50\xee\x90\x50\xed\x90\x51\xef\x8f\x52\xee\x8f\ \x51\xec\x92\x53\xec\x91\x52\xec\x92\x55\xed\x93\x55\xec\x92\x55\ \xed\x93\x54\xeb\x93\x56\xec\x93\x55\xec\x92\x55\xec\x91\x55\xeb\ \x93\x56\xec\x93\x55\xee\x96\x5b\xee\x98\x5e\xeb\x93\x57\xeb\x92\ \x55\xea\x92\x55\xec\x91\x51\xeb\x90\x51\xec\x91\x53\xec\x90\x51\ \xec\x90\x52\xec\x90\x50\xeb\x92\x53\xeb\x91\x55\xeb\x92\x56\xec\ \x91\x53\xed\x90\x53\xec\x90\x4f\xed\x8f\x53\xed\x8f\x50\xed\x8d\ \x50\xeb\x8e\x50\xed\x8e\x50\xec\x8d\x51\xec\x8e\x51\xec\x8e\x51\ \xec\x8c\x4f\xee\x8c\x50\xec\x8c\x4c\xeb\x8c\x4c\xed\x8c\x4c\xec\ \x8b\x4d\xec\x8b\x4c\xec\x8d\x4c\xec\x8b\x4d\xec\x8a\x4d\xec\x8b\ \x4c\xec\x8c\x4b\xec\x8c\x4c\xeb\x8b\x4a\xec\x8b\x4b\xec\x8b\x4b\ \xeb\x8a\x4b\xea\x8a\x4b\xeb\x8a\x49\xeb\x8a\x49\xeb\x8a\x49\xeb\ \x8b\x4a\xec\x8b\x4b\xea\x89\x49\xec\x8b\x4b\xeb\x8a\x4c\xea\x8b\ \x4d\xea\x90\x54\xeb\x93\x59\xea\x9f\x72\xe7\xa2\x78\xe7\xa6\x7d\ \xe8\xad\x8d\xe4\xa8\x87\xe1\x9c\x77\xe7\x91\x5d\xea\x98\x62\xeb\ \xa8\x7e\xe7\xaa\x87\xe7\xa7\x83\xe8\xa2\x7a\xe9\x93\x5c\xe8\x8a\ \x4e\xe9\x86\x45\xe8\x89\x48\xe8\x87\x45\xe9\x8a\x4c\xeb\x96\x60\ \xeb\xa0\x74\xeb\x9c\x6c\xec\x92\x59\xd8\x87\x56\xd5\x86\x54\xcf\ \x82\x57\xc1\x7e\x56\xd9\x88\x54\xc7\x7c\x4c\xeb\x8f\x51\xd4\x8c\ \x60\x9f\x77\x61\x5a\x5a\x59\x29\x33\x36\x5c\x4d\x3a\x98\x76\x5d\ \x77\x71\x68\x61\x67\x66\x8b\x76\x6c\xa1\x82\x6f\x59\x5f\x6a\x5d\ \x54\x4f\x7b\x66\x58\x64\x53\x45\x63\x59\x4c\x3d\x44\x45\x00\x00\ \x00\xef\x94\x56\xef\x95\x55\xed\x94\x54\xee\x93\x53\xed\x93\x55\ \xed\x93\x56\xef\x93\x53\xee\x94\x55\xed\x92\x54\xed\x93\x54\xed\ \x92\x53\xee\x91\x53\xee\x91\x52\xf0\x91\x51\xee\x92\x52\xed\x92\ \x53\xed\x91\x53\xee\x91\x52\xee\x90\x51\xec\x92\x51\xef\x90\x51\ \xed\x91\x52\xed\x91\x51\xec\x91\x53\xef\x91\x51\xef\x91\x51\xee\ \x90\x51\xef\x90\x52\xee\x90\x52\xee\x91\x51\xed\x91\x51\xee\x91\ \x52\xee\x91\x51\xee\x91\x51\xed\x91\x53\xed\x92\x50\xee\x8f\x52\ \xee\x90\x50\xed\x90\x51\xed\x90\x51\xee\x90\x50\xec\x90\x50\xef\ \x8e\x50\xee\x8f\x51\xee\x90\x52\xee\x8f\x50\xef\x91\x51\xee\x90\ \x50\xed\x90\x50\xec\x91\x51\xee\x90\x52\xee\x90\x51\xea\x92\x53\ \xed\x90\x54\xec\x91\x53\xed\x91\x52\xec\x92\x56\xeb\x93\x55\xeb\ \x91\x56\xed\x92\x53\xec\x92\x54\xec\x92\x54\xeb\x93\x57\xec\x96\ \x5a\xec\x9c\x65\xec\x9e\x6c\xec\x99\x61\xed\x96\x5b\xec\x93\x58\ \xec\x93\x57\xec\x93\x56\xec\x91\x54\xeb\x91\x52\xeb\x91\x53\xec\ \x93\x54\xec\x95\x5b\xec\x93\x56\xeb\x91\x54\xeb\x91\x54\xec\x91\ \x52\xeb\x91\x55\xec\x91\x55\xee\x8e\x52\xed\x8e\x51\xec\x8e\x50\ \xec\x8f\x51\xec\x8d\x51\xef\x8e\x50\xed\x8d\x50\xed\x8d\x4f\xee\ \x8c\x50\xec\x8d\x4d\xee\x8c\x4d\xed\x8b\x4e\xed\x8b\x4e\xec\x8c\ \x4c\xed\x8d\x4b\xed\x8c\x4d\xec\x8b\x4c\xeb\x8b\x4b\xec\x8c\x4b\ \xeb\x8b\x4c\xeb\x8c\x4b\xec\x8b\x4b\xec\x8b\x4b\xec\x8a\x4a\xeb\ \x89\x49\xeb\x8b\x48\xec\x8a\x49\xeb\x8b\x49\xea\x8a\x48\xea\x8a\ \x4a\xea\x8a\x48\xea\x8a\x4a\xea\x8a\x4a\xeb\x8c\x4d\xea\x90\x59\ \xe7\x90\x59\xe8\x95\x62\xe8\x99\x67\xe7\xa0\x72\xe6\xa3\x7e\xe5\ \xa1\x77\xe8\x9c\x6d\xe9\x9a\x68\xe9\x9c\x6b\xe8\xa2\x78\xe8\xa4\ \x7c\xe9\xa8\x80\xe8\xa6\x7f\xe6\x92\x61\xe9\x8a\x4e\xe9\x89\x49\ \xe9\x8a\x4a\xe9\x89\x4a\xe9\x8b\x4b\xe9\x91\x5b\xe7\x96\x65\xe7\ \x94\x65\xe8\x8f\x5b\xe6\x8c\x58\xde\x88\x53\xd1\x82\x54\xbe\x7a\ \x53\xd2\x87\x59\xcc\x7b\x49\xdf\x8b\x53\x9f\x72\x5a\x6e\x62\x5a\ \x3b\x4d\x56\x52\x4f\x49\xaa\x72\x52\xd1\x8e\x64\x57\x5a\x59\x52\ \x5b\x60\x56\x5e\x64\x5d\x63\x62\x50\x58\x63\x63\x5c\x56\x6b\x62\ \x5c\x4f\x4e\x4b\x5a\x55\x51\x63\x5a\x50\x00\x00\x00\xee\x94\x55\ \xee\x94\x56\xed\x93\x56\xed\x94\x54\xed\x93\x54\xed\x92\x53\xee\ \x92\x53\xed\x93\x53\xec\x92\x55\xed\x92\x53\xef\x91\x52\xef\x90\ \x53\xee\x91\x52\xef\x92\x52\xee\x8f\x53\xee\x91\x52\xee\x91\x52\ \xed\x92\x52\xec\x91\x52\xed\x90\x51\xef\x90\x51\xed\x91\x51\xee\ \x91\x50\xed\x91\x53\xed\x90\x51\xee\x90\x51\xee\x91\x52\xed\x90\ \x53\xec\x90\x51\xee\x91\x50\xed\x91\x51\xec\x90\x52\xee\x91\x50\ \xed\x90\x50\xee\x90\x50\xed\x91\x51\xee\x91\x51\xed\x90\x51\xed\ \x8f\x51\xee\x90\x51\xef\x8e\x50\xef\x8f\x51\xed\x8f\x52\xee\x8f\ \x51\xed\x90\x50\xee\x90\x51\xed\x91\x52\xee\x90\x50\xef\x90\x4f\ \xed\x90\x50\xed\x91\x53\xed\x91\x53\xec\x91\x55\xed\x91\x53\xec\ \x91\x52\xeb\x92\x54\xec\x92\x54\xeb\x92\x54\xeb\x92\x54\xec\x92\ \x54\xec\x91\x55\xeb\x91\x55\xed\x93\x57\xec\x96\x5c\xeb\x97\x61\ \xeb\x99\x64\xec\x9c\x68\xec\x9b\x62\xeb\x96\x5c\xec\x97\x60\xed\ \x9b\x67\xec\x97\x5d\xec\x94\x59\xec\x96\x5b\xed\x97\x5f\xec\x9a\ \x65\xec\x98\x5f\xec\x93\x56\xeb\x91\x55\xea\x90\x53\xeb\x91\x55\ \xec\x91\x55\xec\x8e\x52\xeb\x90\x53\xeb\x8f\x52\xeb\x8f\x50\xec\ \x8d\x4f\xed\x8d\x50\xed\x8d\x50\xee\x8d\x50\xee\x8b\x4f\xea\x8c\ \x50\xeb\x8b\x4e\xec\x8b\x4f\xed\x8b\x4d\xed\x8c\x4c\xed\x8b\x4d\ \xed\x8b\x4d\xeb\x8a\x4d\xeb\x8a\x4d\xec\x8b\x4a\xeb\x8a\x4a\xec\ \x8a\x4c\xec\x8a\x4b\xec\x8a\x4b\xeb\x8a\x4a\xeb\x8a\x49\xeb\x8a\ \x48\xec\x8a\x49\xeb\x89\x4a\xea\x89\x48\xeb\x89\x47\xe9\x89\x48\ \xea\x89\x47\xea\x8a\x49\xea\x8b\x4e\xe9\x89\x4b\xea\x89\x4c\xe9\ \x8f\x57\xe6\x92\x5e\xe6\x8f\x5a\xe6\x8f\x5c\xe6\x91\x5d\xe6\x95\ \x65\xe7\x98\x6a\xe8\x98\x67\xe8\x9f\x71\xe7\x9d\x71\xe6\x9d\x71\ \xe5\x97\x6a\xe7\x8a\x52\xe9\x8b\x51\xe9\x8b\x52\xe9\x8c\x51\xe9\ \x8b\x4e\xe8\x86\x45\xe8\x87\x48\xe7\x88\x4b\xe8\x8a\x4f\xe8\x8c\ \x51\xea\x8c\x50\xdc\x88\x54\xde\x89\x57\xc3\x7d\x56\xba\x78\x52\ \xcd\x7a\x48\xc9\x7d\x51\x7d\x6b\x5e\x41\x4c\x50\x64\x53\x45\x9e\ \x6c\x4f\x9f\x70\x56\x98\x78\x68\x64\x60\x5d\x8e\x79\x68\x77\x68\ \x5d\x43\x4b\x4a\x3c\x4a\x4c\x42\x56\x58\x45\x4b\x4c\x6b\x5a\x4e\ \x7e\x69\x58\x61\x5b\x53\x00\x00\x00\xee\x93\x53\xee\x93\x53\xee\ \x92\x54\xec\x93\x56\xed\x93\x56\xed\x93\x53\xed\x92\x54\xed\x93\ \x52\xec\x92\x54\xed\x92\x52\xed\x91\x51\xee\x90\x52\xef\x90\x51\ \xee\x91\x51\xef\x90\x51\xed\x91\x50\xed\x91\x51\xee\x91\x4f\xed\ \x92\x52\xef\x90\x52\xee\x90\x52\xed\x90\x50\xee\x90\x50\xee\x90\ \x50\xed\x90\x52\xed\x90\x50\xed\x91\x51\xef\x91\x52\xed\x91\x51\ \xed\x91\x50\xed\x91\x51\xee\x90\x51\xee\x90\x50\xee\x90\x50\xed\ \x90\x50\xef\x8f\x52\xed\x90\x50\xed\x8f\x4f\xed\x8f\x51\xec\x90\ \x52\xee\x8e\x51\xed\x90\x50\xec\x90\x52\xed\x8f\x52\xee\x90\x50\ \xee\x91\x51\xec\x8f\x53\xed\x90\x4f\xef\x8f\x50\xef\x90\x4f\xed\ \x91\x52\xed\x91\x53\xec\x90\x53\xec\x91\x53\xec\x90\x53\xeb\x91\ \x52\xec\x92\x55\xea\x92\x55\xeb\x92\x55\xec\x91\x55\xec\x91\x55\ \xeb\x92\x53\xed\x94\x5b\xec\x99\x60\xec\x97\x5f\xef\x9c\x64\xed\ \xaa\x7a\xeb\xa5\x75\xec\x9b\x64\xed\x9d\x67\xec\x9c\x69\xec\x99\ \x64\xec\x99\x63\xec\x9c\x67\xec\x9c\x66\xec\x9a\x67\xed\x9f\x6e\ \xed\x9a\x63\xec\x95\x5b\xeb\x91\x54\xea\x91\x55\xea\x90\x54\xea\ \x8f\x52\xea\x8f\x53\xeb\x8f\x52\xeb\x8d\x50\xec\x8d\x4f\xec\x8d\ \x4f\xec\x8c\x50\xed\x8c\x50\xec\x8c\x4f\xed\x8c\x50\xec\x8c\x4f\ \xeb\x8b\x4e\xec\x8b\x4c\xec\x8b\x4e\xed\x8b\x4d\xeb\x8a\x4b\xea\ \x8b\x4b\xec\x8b\x4c\xeb\x8b\x4a\xeb\x8a\x4c\xec\x8a\x4b\xeb\x8b\ \x4b\xea\x8a\x48\xeb\x8a\x48\xeb\x8a\x4a\xea\x89\x48\xeb\x8b\x49\ \xea\x89\x49\xea\x89\x49\xea\x8a\x48\xea\x89\x48\xe9\x88\x46\xea\ \x89\x47\xea\x89\x47\xeb\x89\x47\xeb\x89\x48\xe9\x88\x49\xe7\x88\ \x4a\xe8\x87\x49\xe7\x87\x49\xe9\x87\x47\xe8\x87\x48\xe8\x8e\x54\ \xe8\x93\x5f\xe8\x9a\x6a\xe6\x92\x60\xe7\x8e\x58\xe8\x89\x4f\xe8\ \x88\x49\xe9\x88\x4c\xe9\x88\x48\xe8\x87\x45\xe7\x87\x46\xe9\x84\ \x44\xe8\x85\x43\xe7\x85\x44\xe9\x87\x48\xe9\x8a\x4b\xea\x8a\x4d\ \xe7\x8a\x4e\xdc\x86\x53\xc8\x7e\x54\xca\x81\x53\xca\x7a\x4c\xba\ \x7d\x58\x56\x52\x4b\x8d\x67\x4c\xc4\x80\x53\xa6\x72\x54\x98\x77\ \x5f\x49\x51\x59\x96\x68\x4a\x90\x66\x4d\x79\x62\x4d\x36\x43\x44\ \x38\x47\x4b\x4c\x52\x50\x3f\x4d\x4e\x48\x4c\x4a\x4b\x50\x4d\x31\ \x39\x32\x00\x00\x00\xed\x92\x53\xed\x91\x54\xec\x92\x54\xed\x92\ \x54\xef\x92\x52\xef\x92\x53\xed\x92\x53\xee\x92\x53\xef\x90\x53\ \xee\x91\x52\xed\x91\x50\xed\x91\x50\xed\x90\x50\xef\x91\x50\xee\ \x90\x50\xed\x91\x50\xed\x90\x50\xed\x91\x51\xee\x91\x51\xef\x8f\ \x51\xf0\x90\x4f\xee\x8f\x50\xef\x90\x50\xee\x8f\x51\xed\x90\x52\ \xee\x90\x52\xed\x90\x51\xed\x90\x51\xed\x8f\x52\xeb\x90\x51\xee\ \x8f\x4f\xee\x90\x50\xed\x91\x51\xec\x90\x4f\xed\x8f\x50\xee\x90\ \x50\xf0\x8f\x51\xed\x90\x50\xed\x8f\x4f\xed\x8f\x51\xed\x8f\x50\ \xec\x90\x52\xed\x90\x51\xee\x8f\x52\xee\x8f\x52\xec\x90\x52\xee\ \x8f\x51\xef\x8f\x4e\xee\x8e\x50\xf0\x8f\x50\xee\x90\x50\xee\x91\ \x51\xec\x90\x52\xec\x91\x52\xed\x90\x52\xeb\x91\x53\xea\x92\x54\ \xed\x92\x54\xeb\x93\x56\xec\x93\x58\xed\x93\x55\xec\x95\x58\xed\ \x9c\x64\xee\xa9\x7a\xea\xb1\x84\xe7\xbc\x97\xe5\xc2\xa6\xe9\xb6\ \x92\xeb\xad\x7f\xec\xa3\x75\xeb\xa3\x72\xec\xa0\x6d\xed\xa2\x6e\ \xeb\xa1\x72\xec\x9e\x6c\xed\x9f\x6b\xed\xa6\x77\xee\xa9\x7d\xed\ \xa0\x6c\xec\x94\x5c\xea\x91\x53\xea\x8f\x54\xeb\x8f\x52\xea\x90\ \x50\xe9\x8f\x51\xec\x8c\x51\xeb\x8e\x4f\xec\x8c\x50\xed\x8c\x50\ \xeb\x8b\x4e\xeb\x8b\x4f\xeb\x8b\x4f\xec\x8c\x4f\xec\x8b\x4c\xeb\ \x8b\x4c\xeb\x8b\x4d\xec\x8a\x4c\xeb\x8b\x4d\xec\x8a\x4c\xea\x8a\ \x4a\xea\x8a\x4a\xeb\x8a\x4d\xeb\x8a\x49\xeb\x8a\x4a\xea\x8a\x49\ \xeb\x8a\x48\xea\x8a\x48\xea\x87\x49\xeb\x8a\x49\xea\x88\x49\xea\ \x89\x47\xea\x89\x46\xea\x8a\x47\xe9\x88\x46\xe9\x89\x46\xea\x89\ \x47\xe9\x89\x47\xe9\x88\x47\xe9\x87\x47\xe7\x86\x44\xe8\x86\x45\ \xe7\x85\x45\xe9\x88\x48\xec\x94\x55\xeb\x99\x5e\xeb\x96\x60\xe8\ \x98\x65\xe7\x8a\x53\xe8\x86\x47\xe9\x87\x48\xe9\x87\x47\xe9\x88\ \x46\xe9\x87\x46\xe9\x85\x44\xe9\x86\x42\xe8\x86\x44\xe8\x85\x46\ \xe9\x86\x44\xea\x88\x46\xea\x89\x4a\xe9\x88\x4a\xe9\x89\x48\xe6\ \x86\x4b\xe1\x87\x4f\xea\x8c\x4e\xb3\x75\x4d\x7d\x54\x33\xc1\x7e\ \x4e\xd7\x8f\x61\x87\x67\x5d\x98\x6f\x4e\x91\x70\x64\x59\x4f\x47\ \x6e\x55\x42\x74\x59\x42\x43\x41\x3a\x37\x4a\x4c\x39\x41\x3b\x48\ \x50\x4c\x3f\x48\x46\x50\x53\x4d\x4c\x58\x58\x2d\x44\x44\x00\x00\ \x00\xed\x92\x52\xed\x92\x55\xec\x92\x53\xed\x91\x53\xf0\x92\x51\ \xef\x91\x50\xed\x91\x52\xec\x92\x51\xec\x91\x51\xec\x91\x51\xed\ \x90\x52\xed\x8f\x51\xed\x90\x51\xec\x90\x50\xee\x8f\x51\xee\x8f\ \x51\xee\x91\x51\xee\x91\x50\xed\x8f\x50\xee\x8f\x51\xed\x90\x51\ \xec\x90\x50\xed\x90\x4f\xee\x8f\x4f\xed\x8f\x53\xed\x90\x51\xec\ \x90\x52\xeb\x91\x51\xec\x8f\x51\xee\x8f\x50\xec\x8f\x51\xf0\x8e\ \x50\xed\x90\x4f\xed\x8e\x50\xed\x8f\x50\xeb\x8f\x53\xed\x8e\x50\ \xed\x8e\x4f\xed\x8e\x4f\xed\x8f\x50\xef\x8f\x4e\xed\x8d\x52\xec\ \x8f\x51\xed\x90\x50\xec\x90\x50\xec\x8e\x52\xec\x8f\x50\xee\x8f\ \x51\xed\x90\x51\xee\x90\x50\xec\x8f\x51\xec\x90\x50\xec\x8f\x53\ \xeb\x8f\x52\xeb\x90\x53\xec\x92\x53\xeb\x91\x54\xeb\x93\x56\xec\ \x96\x5a\xeb\x98\x61\xec\x9c\x65\xed\xa5\x73\xea\xb6\x8e\xe5\xc1\ \xa5\xe3\xcb\xb5\xe3\xd1\xbc\xe1\xd0\xbc\xe1\xc9\xb4\xe5\xbb\x9e\ \xe8\xa9\x7f\xe8\xa3\x76\xea\xa6\x7b\xea\xa7\x7d\xeb\xa5\x79\xea\ \xa3\x73\xeb\xa8\x7b\xe9\xac\x87\xe9\xa9\x85\xea\xa7\x7e\xec\xa3\ \x72\xeb\x9a\x63\xeb\x92\x55\xeb\x93\x57\xea\x91\x55\xeb\x91\x54\ \xeb\x8d\x50\xeb\x8c\x4f\xea\x8d\x50\xed\x8c\x4f\xeb\x8c\x4f\xeb\ \x8c\x50\xeb\x8c\x4c\xed\x8c\x4c\xec\x8b\x4c\xec\x8b\x4b\xec\x8a\ \x4d\xec\x8b\x4a\xec\x8a\x4c\xeb\x8b\x4b\xeb\x8a\x4a\xeb\x89\x4b\ \xeb\x8a\x4b\xea\x89\x47\xeb\x89\x49\xeb\x8a\x49\xea\x8a\x46\xe8\ \x89\x46\xeb\x8a\x48\xea\x89\x47\xea\x89\x47\xe9\x88\x46\xe9\x88\ \x46\xe9\x88\x46\xea\x89\x47\xe9\x89\x47\xe8\x88\x45\xe9\x88\x46\ \xe9\x88\x46\xe8\x87\x43\xe9\x87\x45\xe9\x86\x43\xe8\x86\x44\xe9\ \x88\x49\xec\x9c\x64\xec\xad\x86\xea\xa7\x7c\xe5\x97\x6a\xe7\x86\ \x48\xe7\x85\x43\xe7\x86\x44\xe8\x86\x44\xe8\x86\x44\xe7\x85\x43\ \xe9\x85\x43\xe8\x84\x42\xe7\x85\x45\xe8\x86\x44\xe7\x87\x42\xe8\ \x86\x45\xe9\x86\x43\xe8\x84\x44\xeb\x86\x44\xeb\x87\x46\xe6\x87\ \x4b\xe8\x89\x4e\xcf\x85\x55\xdd\x87\x54\xe8\x8e\x51\xb5\x78\x56\ \x7a\x5f\x52\xab\x74\x54\x60\x50\x46\x6a\x58\x45\x48\x48\x3f\x3c\ \x45\x45\x31\x43\x40\x89\x62\x40\xe2\x90\x58\x8c\x71\x60\x49\x49\ \x42\x3c\x45\x49\x47\x56\x5a\x2d\x41\x40\x00\x00\x00\xec\x92\x53\ \xec\x91\x52\xed\x91\x52\xee\x91\x53\xec\x91\x51\xed\x90\x50\xee\ \x8f\x52\xec\x90\x51\xef\x90\x50\xee\x8f\x4f\xed\x90\x51\xed\x8f\ \x4f\xed\x8f\x50\xed\x8e\x50\xef\x8e\x4f\xec\x90\x4f\xec\x90\x51\ \xee\x90\x51\xed\x8e\x50\xee\x8e\x51\xee\x8f\x50\xee\x8f\x4f\xed\ \x8f\x50\xef\x8e\x50\xef\x8d\x51\xed\x8f\x4f\xec\x8f\x51\xec\x8f\ \x52\xed\x8e\x52\xec\x8e\x51\xec\x8e\x52\xef\x8e\x51\xed\x8f\x50\ \xed\x8e\x50\xec\x8f\x4f\xeb\x90\x50\xec\x8f\x4f\xec\x8f\x50\xed\ \x8f\x50\xec\x8e\x51\xed\x8d\x50\xef\x8d\x50\xed\x8f\x50\xee\x8e\ \x4f\xed\x8f\x4f\xec\x8e\x51\xec\x8e\x50\xeb\x8f\x4f\xec\x8f\x50\ \xee\x8e\x50\xec\x8f\x51\xec\x90\x52\xec\x90\x51\xed\x90\x53\xeb\ \x90\x53\xeb\x92\x54\xeb\x93\x55\xeb\x94\x5d\xec\x96\x60\xec\x9f\ \x6a\xeb\xa7\x79\xe8\xac\x86\xe2\xbf\xa8\xe2\xcf\xbc\xe6\xda\xcb\ \xe8\xde\xd2\xe5\xd9\xcd\xe1\xd0\xbe\xe0\xc3\xad\xe5\xb9\x9b\xe9\ \xa9\x7f\xe9\xab\x84\xe8\xb0\x8d\xe9\xad\x88\xeb\xac\x82\xe8\xa8\ \x80\xe8\xa5\x7c\xe9\xa6\x7c\xea\xa3\x7b\xe9\xaa\x83\xeb\xac\x84\ \xed\xa5\x74\xec\x9f\x6e\xeb\x9a\x64\xea\x93\x58\xea\x8e\x51\xec\ \x8c\x50\xea\x8c\x4f\xea\x8d\x4e\xec\x8c\x4e\xeb\x8b\x4f\xea\x8b\ \x4e\xed\x8c\x4d\xeb\x8b\x4e\xe9\x8b\x4e\xea\x8a\x4a\xec\x8b\x4c\ \xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\x8a\x4b\xea\x8a\x49\xeb\ \x89\x49\xea\x89\x49\xea\x89\x48\xe9\x89\x47\xe9\x8a\x47\xea\x89\ \x48\xe9\x88\x47\xe9\x88\x47\xe9\x88\x47\xe9\x88\x46\xe9\x88\x47\ \xea\x88\x47\xe9\x88\x46\xe8\x88\x46\xe9\x88\x46\xe9\x88\x46\xe7\ \x86\x43\xe8\x87\x44\xe8\x87\x45\xe9\x87\x46\xe9\x88\x46\xe8\x93\ \x5c\xe8\xa9\x87\xe6\xa6\x81\xe5\x8c\x58\xe7\x86\x45\xe9\x85\x41\ \xe9\x84\x44\xe7\x84\x44\xe8\x86\x45\xe9\x85\x44\xe8\x85\x41\xe8\ \x84\x43\xe7\x85\x43\xe8\x84\x43\xe8\x85\x46\xe9\x85\x43\xe9\x84\ \x43\xe8\x84\x42\xe9\x85\x45\xe9\x86\x46\xe9\x88\x49\xea\x8b\x4b\ \xd3\x86\x55\xcc\x80\x55\xb5\x79\x58\x77\x56\x48\x9a\x73\x5b\x7b\ \x61\x52\x5f\x54\x4e\x8f\x68\x4c\x76\x60\x4e\x61\x5a\x46\x56\x55\ \x50\x98\x67\x45\xda\x96\x6a\x90\x6d\x5d\x2f\x37\x35\x22\x2f\x2c\ \x4a\x59\x56\x2f\x43\x4a\x00\x00\x00\xec\x91\x53\xed\x90\x53\xee\ \x91\x53\xee\x90\x51\xef\x90\x52\xee\x90\x50\xed\x90\x53\xed\x8f\ \x52\xed\x8f\x50\xee\x8f\x4f\xee\x8e\x4f\xef\x8f\x4e\xee\x8e\x4f\ \xee\x8f\x4f\xee\x8e\x4f\xed\x8f\x50\xec\x90\x4f\xee\x8f\x50\xec\ \x8f\x50\xee\x8f\x4f\xef\x8e\x4e\xee\x8f\x4f\xef\x8e\x51\xee\x8f\ \x4f\xef\x8e\x50\xed\x8f\x50\xed\x8e\x50\xed\x8e\x4f\xed\x8d\x51\ \xed\x8e\x50\xed\x8e\x50\xee\x8e\x51\xed\x8f\x51\xee\x8f\x50\xed\ \x8e\x50\xec\x8f\x50\xed\x8e\x51\xed\x8f\x51\xed\x8f\x51\xee\x8e\ \x51\xee\x8d\x51\xee\x8e\x4f\xee\x8f\x51\xed\x8f\x50\xed\x8f\x4f\ \xed\x8e\x50\xed\x8e\x50\xec\x8f\x50\xed\x90\x50\xec\x8f\x51\xec\ \x8f\x52\xed\x8f\x51\xeb\x8f\x51\xeb\x90\x53\xec\x91\x53\xeb\x92\ \x53\xeb\x94\x5a\xeb\x95\x5c\xed\x9e\x6a\xeb\xa9\x7e\xe7\xb0\x8e\ \xe6\xb2\x8f\xe2\xc9\xb2\xe6\xd9\xcc\xe9\xe0\xd8\xeb\xe2\xdb\xe8\ \xe0\xd7\xe6\xda\xcc\xe2\xce\xba\xe2\xc4\xac\xe4\xb7\x98\xe5\xb5\ \x93\xe4\xbb\x9f\xe5\xb4\x94\xe7\xb0\x8d\xe8\xaa\x85\xe8\xa7\x7e\ \xe7\xa6\x7e\xe9\xa1\x74\xe7\xa2\x76\xe6\xa1\x79\xe7\xa2\x78\xe8\ \x99\x69\xea\x9b\x6b\xe9\x93\x5d\xea\x8f\x53\xe9\x8e\x53\xeb\x8c\ \x4f\xea\x8d\x50\xea\x8d\x51\xeb\x8b\x4f\xea\x8b\x4f\xec\x8c\x4f\ \xea\x8b\x4f\xe9\x8b\x4e\xeb\x8a\x4a\xec\x8a\x4b\xeb\x8a\x4b\xeb\ \x8a\x4c\xea\x8a\x4d\xea\x89\x4a\xea\x8a\x47\xea\x88\x48\xea\x88\ \x49\xe9\x8a\x48\xea\x89\x47\xea\x89\x47\xe9\x8a\x47\xe9\x88\x47\ \xe9\x89\x46\xe9\x89\x47\xe9\x89\x48\xea\x89\x49\xe9\x88\x47\xe8\ \x87\x47\xe9\x88\x46\xe8\x87\x45\xe8\x87\x45\xe7\x87\x44\xe9\x87\ \x44\xe8\x87\x45\xe8\x87\x46\xe9\x88\x46\xe7\x87\x48\xe6\x90\x5c\ \xe7\x97\x68\xe8\x8c\x54\xe9\x86\x46\xe7\x85\x44\xe8\x84\x41\xe8\ \x84\x42\xe8\x85\x43\xe8\x85\x44\xe8\x85\x42\xe8\x85\x44\xe8\x84\ \x44\xe8\x85\x43\xe9\x84\x44\xe9\x83\x44\xe8\x84\x43\xe8\x85\x44\ \xe9\x85\x44\xe9\x86\x44\xe9\x88\x47\xe9\x8a\x4b\xd6\x87\x58\xd9\ \x86\x53\x9e\x6e\x58\x84\x5c\x49\x6d\x5b\x52\x64\x4f\x41\x68\x52\ \x47\xa7\x6f\x48\x83\x6a\x57\x69\x5a\x4a\x9e\x76\x60\x6e\x4d\x38\ \x9d\x6f\x52\x6b\x55\x42\x4b\x4a\x43\x27\x38\x34\x32\x48\x42\x43\ \x56\x5f\x00\x00\x00\xee\x90\x53\xec\x90\x54\xed\x91\x53\xef\x90\ \x50\xef\x90\x51\xed\x90\x50\xed\x8f\x50\xef\x8f\x50\xef\x8e\x51\ \xef\x8e\x4f\xef\x8e\x50\xf0\x8e\x4f\xef\x8d\x4e\xf0\x8e\x4f\xee\ \x8e\x4f\xef\x8e\x4f\xef\x8e\x4e\xef\x8e\x51\xec\x8f\x4f\xef\x8e\ \x51\xef\x8f\x51\xee\x8e\x50\xf0\x8e\x50\xef\x8e\x4e\xef\x8f\x50\ \xee\x8e\x4f\xee\x8e\x51\xed\x8f\x50\xed\x8e\x51\xed\x8e\x4f\xee\ \x8e\x4f\xed\x8e\x53\xed\x8e\x51\xed\x8e\x51\xee\x8e\x51\xed\x90\ \x50\xee\x8d\x52\xed\x8e\x50\xec\x8e\x50\xee\x8e\x4f\xec\x8e\x4f\ \xeb\x8f\x50\xee\x8e\x4f\xed\x8e\x4f\xec\x8e\x50\xec\x8f\x51\xeb\ \x8f\x50\xed\x8f\x4f\xec\x8f\x51\xeb\x8f\x51\xed\x8f\x52\xeb\x8f\ \x52\xeb\x8f\x52\xeb\x90\x53\xec\x91\x54\xea\x91\x55\xeb\x92\x59\ \xeb\x94\x5c\xea\x9e\x6d\xe8\xac\x88\xe5\xb2\x95\xe4\xb9\x9d\xe1\ \xcf\xbd\xe7\xdd\xd3\xea\xe3\xdd\xeb\xe5\xdf\xea\xe2\xdd\xe9\xdf\ \xd6\xe6\xda\xce\xe3\xd3\xc1\xe2\xca\xb4\xe2\xc3\xa8\xe2\xc5\xac\ \xe3\xbd\xa3\xe3\xb7\x98\xe6\xae\x8d\xe8\xa7\x7e\xe8\xa5\x79\xea\ \xa5\x79\xe6\x9f\x71\xe9\x9d\x69\xeb\x99\x62\xea\x95\x5e\xe9\x94\ \x5f\xea\x93\x57\xea\x8f\x56\xea\x8e\x53\xea\x8e\x51\xeb\x8e\x51\ \xea\x8d\x52\xeb\x8e\x50\xeb\x8c\x4f\xea\x8d\x4f\xea\x8c\x50\xea\ \x8c\x50\xec\x8b\x4c\xeb\x8a\x4c\xeb\x8b\x4b\xea\x8a\x4d\xea\x89\ \x4e\xea\x89\x4b\xe9\x8a\x48\xea\x89\x48\xea\x89\x49\xea\x89\x48\ \xe9\x88\x48\xea\x89\x48\xea\x89\x47\xe8\x88\x47\xe9\x88\x48\xe9\ \x89\x48\xe9\x88\x47\xea\x89\x49\xe9\x88\x46\xe9\x88\x47\xe9\x88\ \x46\xea\x88\x47\xe8\x88\x46\xe7\x86\x44\xe8\x87\x45\xe8\x86\x45\ \xe8\x86\x45\xe7\x86\x44\xe8\x86\x47\xe8\x86\x46\xe7\x87\x49\xe7\ \x88\x4a\xe8\x85\x45\xe7\x85\x43\xe6\x85\x44\xe7\x85\x42\xe7\x85\ \x44\xe8\x84\x43\xea\x84\x43\xe9\x84\x44\xe9\x84\x43\xe8\x85\x42\ \xe8\x84\x43\xe8\x84\x44\xe8\x85\x42\xe7\x84\x43\xe9\x85\x43\xe9\ \x85\x43\xeb\x87\x47\xde\x85\x4c\xd6\x84\x52\xb0\x75\x56\x90\x67\ \x50\x9a\x6d\x51\x56\x4e\x47\x3e\x36\x2b\xbd\x7b\x4d\xa1\x6f\x51\ \xa8\x75\x53\x4a\x4f\x50\x85\x63\x51\x6e\x53\x44\x59\x57\x53\x50\ \x4d\x49\x63\x5b\x54\x3a\x4d\x56\x39\x4a\x48\x37\x41\x3d\x00\x00\ \x00\xee\x90\x51\xec\x91\x52\xec\x90\x52\xef\x8f\x50\xed\x8e\x4f\ \xec\x8f\x50\xee\x8f\x4f\xf0\x8f\x50\xef\x8d\x50\xee\x8f\x50\xef\ \x8e\x4d\xee\x8e\x51\xef\x8e\x51\xef\x8d\x4f\xee\x8e\x50\xee\x8e\ \x52\xf0\x8e\x4f\xee\x8e\x4f\xee\x8e\x4f\xee\x8e\x50\xed\x8f\x4f\ \xed\x8f\x51\xef\x8e\x52\xef\x8d\x50\xed\x8e\x4f\xf0\x8e\x51\xee\ \x8e\x4f\xed\x8e\x4e\xed\x8e\x51\xea\x8e\x53\xed\x8e\x51\xed\x8d\ \x50\xeb\x8d\x51\xeb\x8f\x51\xed\x8f\x50\xed\x8f\x50\xee\x8e\x52\ \xec\x8f\x50\xeb\x8e\x51\xed\x8e\x4f\xee\x8e\x51\xee\x8e\x51\xec\ \x8e\x4f\xeb\x8f\x4f\xec\x8e\x50\xed\x8e\x50\xed\x8e\x51\xed\x8e\ \x50\xeb\x90\x53\xeb\x8f\x51\xec\x8e\x51\xeb\x8f\x53\xec\x90\x52\ \xea\x90\x51\xea\x91\x53\xeb\x91\x53\xeb\x90\x55\xeb\x95\x5b\xe9\ \x99\x65\xe8\xa5\x7b\xe5\xb1\x94\xe1\xbd\xa6\xe3\xd4\xc7\xe8\xe0\ \xd8\xeb\xe5\xdf\xeb\xe5\xe0\xeb\xe5\xdf\xeb\xe3\xdd\xe8\xe0\xd7\ \xe7\xdc\xd1\xe5\xd6\xc7\xe1\xcf\xbb\xe1\xcc\xb9\xe0\xc3\xac\xe4\ \xb8\x9e\xe6\xab\x8a\xe8\xa5\x7a\xe8\xa7\x7e\xe8\xab\x85\xe9\xa4\ \x74\xe9\xaa\x7e\xea\xa3\x74\xeb\x9b\x68\xeb\x9e\x6c\xea\x9d\x6a\ \xe9\x94\x5b\xeb\x90\x52\xea\x91\x55\xe9\x96\x5e\xec\x95\x5e\xea\ \x92\x55\xea\x8e\x4f\xe9\x8f\x53\xea\x8e\x54\xe9\x8c\x4f\xeb\x8b\ \x4c\xec\x8b\x4b\xeb\x8b\x4b\xea\x8a\x4b\xeb\x8a\x4c\xea\x8a\x4a\ \xe9\x89\x47\xe9\x89\x48\xe9\x89\x49\xea\x89\x48\xea\x89\x47\xe9\ \x88\x48\xe9\x88\x47\xe9\x88\x46\xea\x88\x48\xea\x89\x47\xea\x88\ \x46\xea\x88\x48\xe9\x88\x46\xe9\x87\x47\xe9\x87\x45\xe9\x87\x46\ \xe8\x88\x46\xe8\x87\x44\xe8\x86\x45\xe8\x87\x46\xe8\x86\x46\xe8\ \x86\x45\xe7\x85\x44\xe8\x86\x44\xe8\x85\x43\xe7\x86\x45\xe9\x84\ \x42\xe8\x86\x44\xe7\x85\x41\xe7\x85\x44\xe9\x84\x41\xe8\x84\x43\ \xe9\x84\x42\xe9\x84\x44\xe8\x84\x44\xe8\x85\x44\xe7\x85\x42\xe7\ \x83\x43\xe7\x84\x43\xe8\x83\x42\xe8\x85\x43\xe9\x85\x44\xe6\x86\ \x46\xda\x85\x51\xd1\x83\x53\xbe\x7a\x51\x52\x47\x45\x76\x51\x38\ \x99\x68\x45\xb5\x75\x4a\xd8\x88\x52\x79\x5b\x56\x88\x6b\x55\x45\ \x4a\x4b\x48\x48\x43\x4e\x4b\x48\x47\x44\x3a\x5a\x5d\x57\x4a\x53\ \x5c\x3d\x52\x60\x41\x4b\x4a\x42\x4a\x4a\x00\x00\x00\xed\x90\x50\ \xee\x8f\x51\xef\x8f\x50\xec\x8f\x50\xee\x8e\x4d\xed\x8e\x4f\xee\ \x8d\x51\xef\x8d\x4f\xed\x8e\x4e\xec\x8d\x4e\xed\x8e\x50\xee\x8c\ \x4f\xee\x8c\x4f\xee\x8e\x4c\xee\x8e\x4e\xec\x8e\x50\xed\x8d\x4e\ \xed\x8e\x4e\xec\x8d\x51\xee\x8e\x4e\xec\x8e\x4e\xec\x8d\x50\xec\ \x8d\x4e\xee\x8d\x4e\xeb\x8e\x4e\xee\x8d\x4e\xef\x8c\x4f\xee\x8d\ \x4f\xee\x8c\x50\xeb\x8f\x50\xef\x8c\x51\xed\x8c\x4f\xef\x8e\x4f\ \xec\x8e\x50\xec\x8e\x51\xec\x8e\x51\xeb\x8e\x50\xed\x8f\x4f\xee\ \x8e\x4f\xec\x8e\x50\xea\x8d\x52\xed\x8d\x50\xee\x8e\x4f\xeb\x8e\ \x51\xeb\x8e\x51\xec\x8d\x4f\xed\x8e\x4e\xec\x8e\x51\xeb\x8f\x52\ \xec\x91\x53\xeb\x90\x51\xe9\x90\x51\xec\x90\x51\xec\x91\x52\xeb\ \x91\x55\xea\x8f\x53\xea\x93\x59\xeb\x9b\x67\xeb\x9a\x66\xea\xa7\ \x7a\xe5\xb3\x92\xe1\xba\xa1\xe1\xd0\xc4\xea\xe3\xdc\xeb\xe4\xe1\ \xed\xe6\xe3\xea\xe5\xe1\xea\xe5\xe1\xeb\xe5\xde\xea\xe2\xda\xe8\ \xdf\xd4\xe6\xd9\xcc\xe1\xd3\xc2\xe0\xc9\xb4\xe2\xc2\xa7\xe5\xb7\ \x96\xe7\xb2\x8a\xe6\xb3\x90\xe4\xb3\x93\xe7\xb2\x8d\xe5\xb4\x96\ \xe7\xaf\x8e\xe9\xa8\x7c\xe9\xa4\x77\xea\xa5\x79\xea\xa1\x6f\xe8\ \x94\x5c\xe8\x90\x56\xe9\x94\x5b\xea\x9c\x6a\xeb\xa1\x6f\xea\x96\ \x5d\xe9\x91\x57\xe8\x8c\x50\xe9\x8a\x4d\xea\x8a\x4d\xea\x8a\x4e\ \xeb\x8a\x4a\xeb\x89\x49\xea\x8a\x4b\xea\x8a\x4b\xeb\x8a\x4a\xea\ \x87\x49\xea\x88\x49\xea\x88\x49\xe9\x88\x46\xe8\x88\x45\xe8\x87\ \x48\xea\x87\x47\xe9\x89\x47\xe8\x88\x48\xe8\x87\x48\xe8\x87\x47\ \xe9\x8a\x48\xe8\x88\x47\xe9\x88\x47\xe8\x87\x46\xe8\x87\x45\xe9\ \x88\x46\xe8\x87\x45\xe9\x88\x46\xe8\x87\x45\xe8\x86\x43\xe7\x86\ \x43\xe7\x84\x45\xe8\x84\x43\xe8\x85\x44\xe7\x84\x43\xe9\x83\x43\ \xe8\x84\x41\xe8\x85\x45\xe7\x85\x42\xe7\x84\x42\xe8\x85\x43\xe9\ \x85\x44\xe7\x84\x43\xe8\x83\x43\xe9\x84\x42\xe6\x84\x42\xe7\x83\ \x3f\xe7\x83\x3f\xe8\x84\x44\xe8\x85\x42\xe2\x85\x4c\xe4\x88\x4f\ \xcb\x7f\x53\x7e\x63\x58\x6a\x48\x31\xc5\x78\x42\xd8\x85\x4f\xe3\ \x8b\x53\xee\x93\x5a\xab\x74\x56\x5d\x5d\x53\x2e\x40\x43\x41\x49\ \x48\x3e\x46\x45\x57\x57\x50\x43\x48\x41\x3c\x4f\x4d\x2a\x45\x4b\ \x30\x40\x42\x2f\x3a\x3a\x00\x00\x00\xed\x90\x50\xee\x8f\x50\xee\ \x8e\x51\xf0\x8e\x51\xee\x8e\x51\xef\x8e\x4f\xee\x8e\x4e\xee\x8e\ \x4e\xee\x8e\x4d\xed\x8e\x4f\xec\x8e\x4e\xee\x8d\x50\xee\x8d\x4e\ \xee\x8c\x4e\xee\x8c\x4e\xee\x8d\x4d\xee\x8d\x4e\xee\x8d\x4e\xee\ \x8d\x4e\xec\x8d\x50\xeb\x8d\x4f\xee\x8d\x4f\xee\x8d\x50\xed\x8d\ \x4e\xee\x8c\x4f\xee\x8c\x4f\xed\x8d\x4d\xed\x8d\x4c\xee\x8c\x4f\ \xed\x8c\x4d\xed\x8d\x4e\xed\x8d\x4d\xed\x8c\x4f\xec\x8c\x50\xee\ \x8c\x50\xec\x8d\x51\xef\x8e\x4d\xed\x8d\x4f\xea\x8d\x50\xea\x8f\ \x52\xea\x8e\x4f\xee\x8d\x4e\xec\x8e\x4d\xee\x8d\x4e\xec\x8d\x4f\ \xeb\x8d\x50\xea\x8e\x51\xec\x8e\x4f\xec\x8d\x52\xec\x8f\x51\xec\ \x8f\x53\xec\x8e\x52\xea\x90\x52\xeb\x90\x51\xea\x91\x53\xeb\x90\ \x53\xeb\x93\x59\xe9\x93\x5e\xe9\x97\x63\xe6\xa8\x81\xe3\xbf\xa3\ \xe1\xc9\xb2\xe2\xd3\xc2\xea\xe3\xdd\xed\xe6\xe3\xee\xe7\xe4\xee\ \xe7\xe4\xed\xe6\xe3\xed\xe5\xe2\xeb\xe6\xe0\xeb\xe3\xdc\xe8\xe1\ \xd7\xe7\xdc\xcf\xe5\xd7\xc6\xe4\xd3\xc1\xe2\xcc\xb5\xe2\xc5\xac\ \xe2\xc0\xa7\xe2\xbf\xa4\xe1\xc3\xa8\xe4\xbe\xa3\xe4\xb4\x96\xe6\ \xb2\x91\xe8\xb5\x90\xe9\xb3\x8f\xe7\xb9\x97\xeb\xaa\x7b\xec\x9f\ \x69\xea\x9a\x66\xe8\x97\x64\xea\x9f\x70\xeb\xa2\x76\xec\x9b\x66\ \xe8\x8e\x53\xe8\x8a\x4d\xea\x8a\x4b\xeb\x88\x4e\xea\x89\x4b\xeb\ \x89\x4b\xe9\x8a\x4b\xe9\x8a\x4c\xea\x89\x4b\xea\x8a\x48\xe9\x88\ \x49\xe8\x88\x47\xe9\x88\x48\xea\x87\x47\xe9\x89\x47\xe9\x88\x47\ \xe9\x89\x47\xe8\x88\x47\xea\x87\x48\xe9\x88\x48\xe9\x88\x48\xe8\ \x87\x47\xe9\x87\x47\xe9\x88\x45\xe8\x87\x47\xe8\x87\x46\xe8\x87\ \x43\xe7\x87\x45\xe8\x86\x44\xe8\x85\x43\xe8\x86\x44\xe8\x84\x41\ \xea\x84\x42\xe9\x83\x42\xe7\x84\x43\xe8\x84\x43\xe8\x84\x44\xe8\ \x84\x43\xe7\x84\x43\xe7\x84\x44\xe8\x83\x44\xe7\x83\x43\xe8\x84\ \x43\xe7\x83\x43\xe7\x83\x41\xe6\x83\x41\xe8\x82\x41\xe7\x83\x42\ \xe8\x84\x42\xe8\x85\x44\xe6\x86\x48\xea\x87\x48\xbe\x7b\x50\x69\ \x54\x4a\xc3\x6e\x33\xe5\x8e\x55\xdf\x8a\x54\xe2\x8c\x56\xb6\x7b\ \x55\x62\x5b\x55\x32\x40\x43\x2d\x3b\x3b\x4a\x49\x41\x5e\x58\x4b\ \x81\x5e\x42\x66\x60\x5a\x40\x52\x4f\x4b\x55\x4f\x47\x51\x4a\x4a\ \x55\x5b\x00\x00\x00\xec\x8e\x51\xf0\x8f\x50\xed\x8e\x50\xed\x8d\ \x4f\xee\x8d\x4f\xee\x8d\x50\xed\x8e\x4f\xef\x8c\x50\xee\x8c\x50\ \xed\x8d\x4e\xed\x8e\x4d\xee\x8d\x4d\xed\x8c\x4d\xed\x8d\x4e\xed\ \x8c\x4d\xed\x8c\x4d\xeb\x8c\x4d\xeb\x8d\x4c\xee\x8c\x4d\xee\x8c\ \x4f\xed\x8c\x4d\xed\x8d\x4d\xed\x8b\x4d\xeb\x8b\x4f\xeb\x8b\x4f\ \xec\x8c\x4c\xec\x8c\x4d\xec\x8b\x4c\xed\x8c\x4e\xed\x8c\x4e\xed\ \x8c\x4e\xec\x8c\x4e\xec\x8c\x4f\xeb\x8d\x4f\xec\x8c\x50\xeb\x8d\ \x4f\xeb\x8d\x50\xed\x8e\x4f\xed\x8d\x4f\xec\x8d\x4e\xeb\x8e\x4e\ \xed\x8d\x4f\xed\x8c\x4d\xec\x8d\x4e\xeb\x8d\x4e\xee\x8e\x4e\xeb\ \x8c\x4f\xeb\x8e\x52\xed\x8e\x50\xeb\x8e\x52\xed\x8f\x53\xea\x8e\ \x53\xeb\x90\x52\xea\x8f\x53\xeb\x90\x52\xea\x91\x54\xeb\x92\x56\ \xe9\x91\x5a\xe9\x9b\x67\xe9\xad\x86\xe2\xc4\xad\xe4\xd5\xc7\xe6\ \xde\xd4\xec\xe5\xe0\xef\xe9\xe6\xef\xea\xe7\xef\xeb\xe7\xef\xe8\ \xe5\xed\xe6\xe2\xea\xe6\xe1\xeb\xe6\xe0\xea\xe3\xdc\xe9\xe1\xd8\ \xe9\xdf\xd4\xe8\xdd\xd2\xe5\xd8\xcb\xe2\xd1\xbe\xe0\xcb\xb7\xe1\ \xcc\xb8\xe1\xcb\xb6\xe3\xcb\xb6\xe3\xc5\xac\xe4\xbe\xa2\xe3\xc6\ \xae\xe1\xc8\xb2\xe2\xc5\xae\xe4\xc2\xa8\xe7\xba\x99\xea\xac\x83\ \xea\xa1\x6e\xe9\xa2\x75\xeb\xaa\x80\xe9\xa9\x80\xe9\x94\x5c\xe9\ \x89\x4d\xea\x89\x4c\xe8\x88\x4c\xe9\x89\x4b\xea\x89\x4b\xea\x89\ \x4b\xeb\x89\x4b\xea\x8a\x49\xea\x89\x4a\xea\x89\x49\xea\x89\x49\ \xe9\x88\x49\xe9\x87\x47\xe8\x88\x49\xe9\x88\x47\xe9\x88\x46\xe9\ \x88\x47\xe8\x88\x47\xea\x89\x48\xe8\x87\x47\xe9\x88\x47\xe8\x87\ \x46\xe8\x87\x48\xe9\x87\x47\xe8\x86\x45\xe7\x86\x44\xe7\x86\x44\ \xe7\x86\x44\xe7\x85\x43\xe7\x86\x42\xe8\x85\x44\xe8\x84\x42\xe9\ \x84\x41\xe8\x84\x42\xe7\x84\x44\xe9\x84\x44\xe8\x84\x43\xe7\x84\ \x42\xe7\x84\x44\xe8\x84\x43\xe6\x83\x43\xe7\x83\x42\xe6\x83\x41\ \xe6\x83\x41\xe7\x82\x3f\xe6\x81\x40\xe6\x82\x41\xe9\x83\x43\xe8\ \x84\x43\xe8\x84\x42\xe2\x84\x48\xca\x77\x44\xac\x6e\x4d\xef\x89\ \x49\xdf\x88\x52\xdd\x88\x56\xef\x90\x54\xcc\x86\x5d\x3f\x46\x45\ \x30\x35\x30\x5d\x4c\x34\xa4\x73\x51\xd4\x8a\x5c\xe6\x91\x5f\x6f\ \x67\x63\x45\x4f\x4f\x51\x52\x52\x4d\x54\x59\x32\x41\x47\x00\x00\ \x00\xed\x8d\x50\xef\x8d\x50\xee\x8e\x4e\xef\x8d\x4f\xee\x8d\x4f\ \xed\x8d\x4e\xee\x8c\x4e\xee\x8c\x4f\xed\x8d\x4e\xee\x8e\x4d\xec\ \x8d\x4d\xec\x8d\x4f\xed\x8c\x4d\xec\x8c\x4c\xec\x8c\x4c\xec\x8b\ \x4d\xed\x8c\x4d\xed\x8b\x4c\xec\x8b\x4b\xed\x8c\x4e\xed\x8b\x4d\ \xed\x8c\x4c\xed\x8c\x4c\xec\x8b\x4d\xec\x8c\x4d\xec\x8c\x4c\xec\ \x8b\x4d\xeb\x8c\x4d\xed\x8d\x4c\xed\x8a\x4f\xeb\x8c\x4e\xec\x8c\ \x4e\xee\x8c\x4d\xec\x8c\x4c\xea\x8d\x4e\xec\x8c\x4d\xed\x8c\x4f\ \xed\x8d\x4f\xec\x8d\x4f\xea\x8c\x50\xed\x8d\x4e\xec\x8d\x4e\xec\ \x8c\x4e\xed\x8d\x4f\xe9\x8d\x50\xeb\x8c\x50\xed\x8c\x50\xeb\x8e\ \x4f\xeb\x8e\x51\xec\x8e\x51\xeb\x90\x53\xeb\x8f\x53\xeb\x90\x52\ \xea\x90\x53\xea\x90\x53\xea\x91\x54\xea\x90\x55\xea\x90\x56\xe9\ \x9d\x6b\xe5\xb9\x9c\xe1\xcd\xbb\xe4\xd8\xcf\xe8\xe1\xda\xed\xe6\ \xe3\xf0\xec\xe8\xf1\xec\xea\xf0\xeb\xe9\xef\xe9\xe6\xee\xe8\xe5\ \xee\xe7\xe4\xeb\xe6\xe1\xec\xe6\xe1\xeb\xe4\xde\xea\xe3\xdb\xe9\ \xe1\xd9\xe8\xdf\xd5\xe6\xdb\xcf\xe5\xd7\xc8\xe5\xd8\xc9\xe6\xd9\ \xcb\xe5\xd8\xca\xe3\xd3\xc3\xe0\xcd\xbb\xe2\xd0\xbe\xe1\xcf\xbf\ \xe0\xc9\xb6\xe1\xc6\xb2\xe2\xc4\xae\xe4\xbc\xa0\xe7\xb3\x92\xe8\ \xac\x86\xe8\xb0\x8a\xe7\xb2\x92\xe9\x9c\x6c\xe9\x8d\x51\xe8\x8b\ \x4c\xe9\x89\x4d\xe9\x89\x4b\xea\x89\x4c\xe9\x89\x4c\xea\x89\x4b\ \xeb\x8a\x4a\xe9\x88\x4b\xea\x88\x4b\xe9\x88\x4a\xe9\x89\x4b\xea\ \x88\x4b\xe9\x88\x48\xea\x87\x49\xe9\x88\x47\xe9\x88\x47\xe9\x88\ \x46\xe9\x88\x48\xe9\x88\x46\xe9\x87\x48\xe9\x87\x47\xe8\x87\x48\ \xe8\x87\x46\xe8\x87\x46\xe7\x85\x44\xe7\x86\x43\xe7\x86\x43\xe7\ \x86\x44\xe7\x85\x44\xe8\x86\x46\xe8\x84\x43\xe8\x85\x43\xe8\x84\ \x43\xe8\x84\x44\xe9\x85\x44\xe7\x84\x42\xe8\x83\x43\xe7\x83\x42\ \xe7\x83\x43\xe7\x83\x42\xe6\x83\x41\xe7\x83\x40\xe6\x83\x41\xe6\ \x82\x3f\xe6\x81\x41\xe7\x82\x42\xe6\x82\x42\xe7\x83\x40\xe5\x84\ \x43\xe4\x83\x45\xeb\x88\x47\xad\x6f\x51\xe4\x85\x4a\xda\x85\x50\ \xe5\x87\x50\xcb\x82\x55\x76\x5a\x47\x3f\x3f\x35\x9d\x67\x3d\xc0\ \x7e\x54\xc6\x7f\x55\xca\x87\x5f\xa6\x72\x51\x5e\x61\x61\x3f\x4b\ \x53\x2f\x44\x4a\x2b\x36\x37\x2c\x3d\x38\x00\x00\x00\xef\x8e\x50\ \xee\x8e\x4f\xef\x8e\x4e\xee\x8d\x4d\xed\x8e\x4e\xec\x8d\x50\xee\ \x8c\x4d\xec\x8d\x4c\xeb\x8c\x4e\xed\x8c\x4c\xec\x8c\x4d\xec\x8c\ \x4c\xee\x8c\x4e\xed\x8c\x4c\xed\x8c\x4b\xec\x8b\x4d\xec\x8c\x4d\ \xec\x8c\x4d\xed\x8c\x4c\xec\x8c\x4b\xeb\x8c\x4d\xed\x8b\x4d\xec\ \x8c\x4c\xec\x8c\x4c\xed\x8c\x4c\xec\x8c\x4b\xec\x8b\x4c\xec\x8c\ \x4b\xeb\x8c\x4c\xec\x8c\x4e\xec\x8d\x4c\xec\x8b\x4f\xeb\x8c\x4e\ \xec\x8b\x4e\xeb\x8c\x4e\xeb\x8c\x4e\xeb\x8c\x4f\xeb\x8d\x50\xeb\ \x8c\x50\xea\x8c\x4f\xec\x8c\x4e\xeb\x8d\x4e\xea\x8c\x50\xeb\x8d\ \x4f\xeb\x8c\x4f\xeb\x8b\x50\xed\x8c\x50\xeb\x8e\x4e\xe9\x8e\x50\ \xec\x8d\x4f\xeb\x90\x52\xea\x8f\x51\xea\x8f\x52\xea\x90\x52\xe8\ \x8f\x52\xea\x90\x53\xea\x92\x58\xea\x99\x65\xe7\xa2\x78\xe2\xb8\ \x9d\xe0\xce\xbe\xe3\xd7\xcd\xe8\xe0\xd8\xec\xe6\xe3\xf2\xed\xea\ \xf1\xed\xeb\xf1\xed\xea\xf0\xeb\xe8\xf0\xeb\xe8\xf0\xeb\xe6\xed\ \xe7\xe4\xec\xe8\xe3\xeb\xe7\xe2\xec\xe5\xe0\xea\xe4\xde\xea\xe2\ \xda\xe8\xe0\xd7\xe9\xdf\xd5\xe9\xdf\xd5\xe8\xdf\xd5\xe7\xdd\xd4\ \xe4\xd8\xcc\xe2\xd4\xc6\xe3\xd4\xc5\xe5\xd7\xc8\xe1\xd1\xc1\xdf\ \xc8\xb6\xe0\xc4\xb2\xe0\xb9\xa1\xe2\xa8\x88\xe4\xa6\x81\xe7\xb5\ \x94\xe5\xbb\x9e\xe8\xa9\x81\xe8\x93\x5b\xe7\x8b\x4f\xe8\x8b\x4e\ \xe8\x89\x4b\xe9\x89\x4b\xea\x89\x4c\xeb\x89\x4b\xea\x8a\x4a\xea\ \x89\x4a\xea\x88\x4a\xe9\x88\x4b\xe9\x8a\x4f\xeb\x89\x4a\xe9\x88\ \x4b\xe9\x89\x49\xe9\x87\x49\xea\x89\x48\xe9\x89\x49\xe9\x88\x49\ \xe8\x89\x47\xe8\x87\x47\xe9\x87\x48\xe8\x87\x46\xe8\x86\x45\xe7\ \x87\x46\xe8\x86\x46\xe7\x86\x42\xe7\x86\x43\xe8\x85\x44\xe7\x85\ \x43\xe7\x84\x43\xe7\x85\x42\xe7\x85\x43\xe8\x84\x44\xe8\x84\x43\ \xe9\x85\x44\xe6\x84\x44\xe6\x83\x43\xe7\x83\x42\xe6\x83\x42\xe6\ \x83\x41\xe7\x82\x42\xe6\x82\x42\xe6\x82\x41\xe7\x82\x3e\xe7\x81\ \x40\xe6\x82\x41\xe5\x82\x40\xe7\x82\x3e\xe7\x83\x42\xe7\x84\x44\ \xe9\x86\x43\xc9\x7d\x4f\xdc\x84\x4e\xc3\x7e\x57\x82\x5d\x48\x4b\ \x42\x3c\x4c\x41\x34\x7e\x52\x30\xca\x7f\x55\x99\x6d\x56\x77\x5d\ \x4c\x5d\x52\x4b\x45\x4b\x4e\x37\x48\x4c\x2e\x3c\x44\x2e\x3a\x36\ \x30\x3b\x35\x21\x33\x2f\x00\x00\x00\xef\x8d\x4f\xef\x8d\x4f\xee\ \x8c\x4e\xee\x8d\x4c\xed\x8c\x4f\xed\x8d\x4d\xee\x8d\x4c\xec\x8c\ \x4c\xed\x8d\x4c\xed\x8c\x4d\xed\x8b\x4c\xec\x8c\x4c\xec\x8c\x4c\ \xed\x8d\x4d\xed\x8c\x4d\xed\x8b\x4d\xec\x8b\x4c\xec\x8b\x4c\xec\ \x8b\x4b\xec\x8b\x4c\xeb\x8c\x4c\xec\x8c\x4c\xed\x8b\x4d\xee\x8c\ \x4c\xec\x8b\x4c\xed\x8c\x4c\xed\x8c\x4c\xed\x8c\x4d\xec\x8c\x4c\ \xec\x8c\x4d\xeb\x8b\x4e\xeb\x8b\x4d\xeb\x8b\x4d\xeb\x8c\x4d\xea\ \x8d\x4e\xec\x8c\x4d\xeb\x8c\x4f\xeb\x8c\x4f\xee\x8c\x4e\xec\x8c\ \x4f\xea\x8c\x4f\xea\x8d\x4f\xeb\x8d\x4d\xeb\x8c\x4d\xeb\x8c\x50\ \xea\x8c\x4e\xea\x8d\x50\xea\x8d\x4d\xea\x8d\x4e\xec\x8c\x4e\xed\ \x8d\x4f\xeb\x8f\x4f\xea\x8f\x51\xe9\x90\x52\xe9\x8e\x4f\xe9\x92\ \x57\xea\x9b\x67\xe9\x9a\x69\xe7\x9e\x70\xe4\xc1\xa7\xe3\xd3\xc7\ \xe5\xda\xd0\xea\xe1\xdc\xeb\xe5\xe1\xf1\xec\xea\xf3\xed\xed\xf3\ \xef\xeb\xf1\xec\xe9\xf2\xed\xe9\xee\xe9\xe6\xef\xe8\xe5\xee\xe8\ \xe4\xee\xe8\xe4\xed\xe6\xe2\xe9\xe5\xe0\xeb\xe4\xdf\xeb\xe3\xdd\ \xea\xe3\xdb\xea\xe1\xdb\xea\xe2\xdb\xe8\xe1\xd8\xe7\xdb\xd3\xe7\ \xdb\xd0\xe6\xd9\xcd\xe7\xda\xd1\xe4\xd8\xcd\xe0\xcb\xb9\xdf\xbc\ \xa7\xe3\xaf\x94\xe7\xa6\x7f\xe7\xa6\x79\xe4\xb6\x9b\xe3\xbd\xa5\ \xe6\xb6\x97\xe8\x9f\x6b\xe9\x92\x5a\xe8\x8b\x52\xe9\x88\x4d\xea\ \x89\x4b\xe9\x88\x4d\xe9\x88\x4a\xea\x89\x4b\xe9\x89\x49\xeb\x89\ \x4c\xea\x8a\x4f\xe8\x8b\x4e\xe8\x8d\x50\xe9\x8b\x4f\xea\x8d\x51\ \xe9\x89\x49\xe9\x88\x48\xe9\x88\x48\xe9\x88\x48\xe9\x89\x48\xe8\ \x88\x47\xe7\x87\x46\xe8\x88\x47\xe7\x87\x46\xe7\x86\x45\xe8\x86\ \x45\xe8\x84\x44\xe8\x85\x45\xe7\x84\x42\xe7\x85\x44\xe7\x85\x43\ \xe8\x85\x43\xe7\x84\x43\xe7\x83\x45\xe7\x84\x44\xe8\x84\x43\xe7\ \x84\x43\xe7\x84\x44\xe6\x83\x42\xe6\x82\x40\xe7\x82\x41\xe6\x83\ \x41\xe7\x82\x42\xe8\x81\x40\xe6\x81\x3f\xe6\x81\x40\xe7\x82\x41\ \xe6\x81\x3e\xe6\x82\x40\xe7\x83\x3f\xe7\x83\x41\xe8\x85\x41\xe4\ \x84\x47\xd2\x7f\x4f\x8e\x62\x4a\x44\x3c\x38\x64\x47\x30\xaf\x6c\ \x42\xb7\x6f\x46\xc6\x7b\x4d\xbe\x83\x5f\x69\x60\x5a\x3e\x44\x41\ \x58\x4d\x3f\x59\x5c\x5a\x77\x58\x45\xa9\x72\x4d\x55\x50\x41\x2f\ \x3e\x36\x00\x00\x00\xef\x8d\x4f\xee\x8c\x4d\xec\x8b\x4e\xea\x8c\ \x4e\xed\x8c\x4d\xed\x8c\x4d\xec\x8c\x4d\xec\x8b\x4e\xeb\x8b\x4e\ \xed\x8c\x4b\xeb\x8b\x4d\xec\x8c\x4d\xed\x8c\x4c\xec\x8b\x4b\xec\ \x8b\x4c\xed\x8c\x4d\xeb\x8c\x4c\xeb\x8c\x4a\xed\x8b\x4d\xec\x8c\ \x4a\xec\x8b\x4b\xeb\x8a\x4a\xec\x8a\x4d\xec\x8b\x4d\xed\x8b\x4c\ \xec\x8b\x4e\xec\x8c\x4b\xed\x8b\x4b\xec\x8a\x4b\xec\x8a\x4c\xec\ \x8c\x4b\xec\x8c\x4d\xeb\x8b\x4d\xed\x8c\x4d\xed\x8b\x4c\xe9\x8d\ \x4e\xeb\x8b\x4c\xed\x8b\x4d\xeb\x8b\x4e\xe9\x8c\x4e\xeb\x8c\x4f\ \xea\x8c\x4f\xeb\x8c\x4c\xe9\x8d\x4f\xeb\x8c\x4f\xea\x8c\x50\xe9\ \x8c\x4e\xeb\x8b\x4e\xea\x8b\x4c\xeb\x8c\x4c\xeb\x8c\x4e\xeb\x8e\ \x51\xe9\x90\x53\xea\x91\x53\xea\x8f\x52\xea\x94\x5a\xe8\x9c\x6b\ \xe9\x9e\x6d\xe9\xaf\x82\xe2\xcb\xb7\xe4\xd7\xcd\xe6\xdd\xd3\xeb\ \xe2\xde\xee\xe7\xe4\xf2\xed\xeb\xf5\xef\xef\xf3\xee\xed\xf2\xed\ \xeb\xf1\xec\xe9\xef\xea\xe7\xed\xe8\xe5\xed\xe7\xe4\xee\xe7\xe4\ \xef\xe8\xe5\xeb\xe8\xe2\xe9\xe5\xe0\xe9\xe5\xe0\xeb\xe4\xe0\xeb\ \xe4\xe0\xec\xe4\xe0\xeb\xe2\xde\xe8\xe1\xd8\xe7\xdd\xd6\xe8\xde\ \xd5\xe7\xdb\xd3\xe4\xd8\xce\xdf\xcb\xbd\xe0\xbc\xa6\xe4\xad\x8c\ \xe5\xae\x8c\xe6\xaf\x8b\xe3\xb3\x96\xe3\xb8\x9d\xe5\xbc\xa3\xe8\ \xad\x89\xe7\x94\x62\xe8\x8c\x53\xe9\x89\x4d\xe8\x89\x4b\xe9\x89\ \x4a\xe9\x89\x4c\xea\x89\x49\xe8\x88\x4c\xea\x89\x49\xe9\x8a\x4d\ \xe7\x8c\x51\xe6\x8b\x50\xe7\x8b\x53\xe8\x8d\x56\xe8\x8a\x4f\xe9\ \x87\x49\xe9\x87\x48\xe8\x88\x4a\xe9\x87\x47\xe8\x88\x48\xe9\x87\ \x48\xe9\x86\x47\xe7\x86\x46\xe7\x87\x45\xe7\x84\x42\xe7\x86\x45\ \xe7\x86\x45\xe8\x85\x43\xe7\x84\x44\xe8\x85\x43\xe7\x84\x42\xe8\ \x85\x45\xe8\x84\x45\xe6\x83\x42\xe6\x83\x42\xe6\x82\x41\xe7\x83\ \x42\xe7\x83\x43\xe6\x82\x40\xe6\x83\x42\xe7\x81\x3f\xe6\x81\x41\ \xe7\x81\x3f\xe6\x81\x3e\xe7\x82\x40\xe7\x81\x3d\xe6\x81\x40\xe5\ \x81\x41\xe7\x82\x3e\xe8\x83\x42\xe8\x84\x43\xe4\x82\x44\xbe\x74\ \x49\xc9\x75\x46\xc9\x79\x47\xde\x7f\x3f\xd9\x82\x51\xe7\x8a\x4c\ \xd9\x89\x59\x92\x72\x5d\x46\x4a\x4f\x37\x40\x3a\x59\x4b\x3c\x81\ \x64\x5a\x7b\x5a\x41\x50\x44\x38\x37\x42\x3e\x44\x43\x36\x00\x00\ \x00\xed\x8c\x4d\xec\x8c\x4c\xec\x8c\x4c\xeb\x8c\x4c\xec\x8c\x4c\ \xec\x8c\x4c\xec\x8c\x4c\xeb\x8b\x4d\xeb\x8d\x4c\xec\x8c\x4c\xed\ \x8b\x4c\xec\x8b\x4b\xec\x8c\x4c\xec\x8b\x4a\xed\x8c\x4c\xeb\x8c\ \x4b\xeb\x8c\x4a\xec\x8b\x4a\xec\x8a\x4c\xec\x8b\x4b\xec\x8b\x4c\ \xec\x8b\x4c\xeb\x8b\x4c\xec\x8b\x4b\xed\x8c\x4c\xeb\x8c\x4c\xec\ \x8c\x4c\xec\x8c\x4c\xec\x8c\x4a\xec\x8a\x4d\xeb\x8b\x4c\xec\x8c\ \x4b\xed\x8b\x4b\xeb\x8b\x4d\xec\x8b\x4c\xeb\x8c\x4d\xeb\x8b\x4d\ \xed\x8c\x4c\xeb\x8b\x4e\xea\x8b\x4d\xeb\x8c\x4c\xea\x8a\x4f\xea\ \x8b\x4e\xeb\x8b\x4f\xea\x8b\x4d\xe8\x8c\x4e\xea\x8c\x4d\xea\x8b\ \x4d\xea\x8c\x4e\xea\x8e\x50\xe9\x8f\x52\xe9\x8e\x51\xe9\x93\x58\ \xec\x9c\x67\xec\x9f\x6a\xeb\xa0\x6e\xe8\xa7\x79\xe9\xaf\x86\xe2\ \xc3\xa8\xe1\xd1\xc3\xe6\xdb\xd2\xe7\xde\xd6\xeb\xe4\xdf\xee\xe9\ \xe6\xf4\xef\xed\xf5\xf0\xef\xf3\xef\xef\xf3\xee\xeb\xf1\xec\xe9\ \xef\xea\xe7\xee\xe7\xe4\xee\xe8\xe5\xee\xe9\xe6\xee\xe9\xe6\xed\ \xe8\xe4\xed\xe6\xe3\xeb\xe6\xe1\xeb\xe5\xe1\xea\xe5\xe0\xea\xe5\ \xdf\xed\xe4\xdf\xe9\xe2\xdb\xe9\xe1\xd8\xe9\xe0\xd7\xe6\xdb\xd3\ \xe3\xd6\xcd\xdf\xce\xbe\xe0\xbf\xa9\xe4\xb5\x97\xe4\xaf\x8f\xe3\ \xb4\x96\xe4\xb9\x9c\xe4\xb9\x9d\xe4\xb9\xa0\xe5\xb4\x9b\xe9\x9b\ \x6a\xe8\x93\x59\xe6\x8b\x4f\xe6\x89\x4d\xe7\x8a\x4d\xe7\x89\x4f\ \xe9\x89\x4a\xea\x88\x4b\xea\x8a\x4d\xe8\x8d\x51\xe7\x8d\x54\xe8\ \x8a\x4e\xe7\x89\x4f\xe7\x8b\x53\xe8\x89\x4c\xe9\x88\x49\xe9\x88\ \x49\xe9\x88\x48\xe9\x87\x48\xe8\x87\x47\xe8\x87\x48\xe8\x86\x4a\ \xe9\x86\x46\xe8\x87\x45\xe8\x85\x43\xe7\x84\x44\xe8\x85\x44\xe9\ \x84\x43\xe8\x84\x44\xe8\x85\x45\xe7\x84\x44\xe6\x84\x43\xe7\x83\ \x42\xe7\x83\x43\xe7\x82\x42\xe6\x83\x40\xe6\x82\x41\xe6\x82\x40\ \xe7\x82\x41\xe6\x82\x41\xe7\x82\x40\xe5\x82\x40\xe6\x81\x3f\xe7\ \x80\x3f\xe6\x81\x3e\xe6\x80\x40\xe7\x82\x3e\xe7\x81\x3f\xe7\x82\ \x40\xe7\x82\x40\xe9\x84\x44\xd3\x78\x41\xd7\x80\x49\xe8\x88\x4b\ \xde\x87\x4f\xc6\x7f\x52\xc0\x74\x4c\xc4\x78\x50\xae\x73\x50\xa5\ \x6a\x4b\x63\x56\x4e\x3f\x41\x3e\x3c\x3b\x32\x74\x56\x45\x71\x55\ \x3c\x78\x5a\x42\x2c\x3b\x38\x2d\x2c\x22\x00\x00\x00\xed\x8c\x4c\ \xed\x8c\x4c\xec\x8c\x4c\xed\x8c\x4c\xec\x8b\x4c\xec\x8b\x4c\xec\ \x8b\x4c\xed\x8b\x4c\xeb\x8b\x4d\xea\x8b\x4c\xed\x8c\x4c\xed\x8b\ \x4c\xeb\x8b\x4b\xed\x8c\x4c\xec\x8b\x4b\xec\x8b\x4c\xec\x8b\x4b\ \xec\x8c\x49\xeb\x8b\x4d\xec\x8b\x4c\xec\x8b\x4b\xec\x8b\x4c\xec\ \x8b\x4b\xed\x8c\x4d\xec\x8c\x4c\xea\x8c\x4e\xeb\x8c\x4c\xec\x8c\ \x4c\xeb\x8b\x4c\xeb\x8a\x4d\xec\x8b\x4d\xeb\x8b\x4a\xec\x8b\x4b\ \xeb\x8b\x4d\xea\x8c\x4d\xea\x8a\x4e\xec\x8b\x4c\xec\x8b\x4d\xeb\ \x8a\x4e\xea\x8b\x4d\xec\x8b\x4d\xe9\x8b\x4d\xe9\x8a\x4c\xea\x8b\ \x4d\xea\x8d\x4f\xe9\x8e\x4f\xea\x8d\x4f\xe8\x8c\x4f\xe9\x90\x52\ \xe9\x91\x56\xe9\x91\x54\xe8\x8e\x52\xe8\x96\x5f\xe9\xa1\x73\xe9\ \xa8\x7e\xe7\xa3\x78\xe6\xa8\x81\xe2\xc0\xa5\xe1\xcb\xb8\xe0\xd0\ \xc1\xe4\xd9\xd0\xe9\xe1\xdb\xec\xe5\xe1\xf0\xeb\xe8\xf4\xef\xef\ \xf5\xf1\xf1\xf4\xf0\xf0\xf3\xef\xec\xf2\xed\xea\xf1\xec\xe9\xee\ \xe9\xe6\xed\xe8\xe5\xef\xea\xe7\xf0\xeb\xe8\xee\xe9\xe6\xed\xe7\ \xe4\xed\xe5\xe2\xeb\xe5\xe1\xea\xe5\xe0\xeb\xe5\xdf\xed\xe5\xe1\ \xeb\xe3\xde\xe9\xe2\xda\xe8\xe1\xd8\xe6\xdc\xd4\xe3\xd6\xcc\xe0\ \xce\xbf\xdf\xc6\xb0\xe1\xc6\xae\xe2\xbf\xa5\xe2\xbc\xa1\xe3\xbd\ \xa5\xe4\xbf\xa6\xe4\xba\xa0\xe5\xb6\x9a\xe8\xa9\x86\xe6\x96\x64\ \xe6\x8a\x50\xe7\x8a\x4d\xe7\x8a\x4c\xe7\x8b\x52\xe7\x8a\x4d\xe8\ \x89\x4a\xe8\x8e\x51\xe7\x8d\x53\xe7\x8c\x53\xe8\x8a\x4e\xe7\x89\ \x4b\xe7\x88\x4c\xe8\x88\x49\xe8\x88\x47\xe8\x88\x48\xe9\x88\x49\ \xe8\x87\x49\xe8\x87\x47\xe8\x87\x47\xe8\x87\x48\xe8\x87\x46\xe8\ \x87\x46\xe8\x85\x42\xe7\x85\x42\xe6\x85\x44\xe7\x85\x43\xe8\x84\ \x44\xe7\x84\x44\xe7\x85\x42\xe6\x84\x43\xe6\x83\x42\xe7\x83\x42\ \xe6\x83\x41\xe6\x82\x41\xe7\x81\x40\xe6\x81\x40\xe6\x82\x3f\xe7\ \x82\x40\xe6\x82\x3f\xe6\x81\x3f\xe5\x81\x3e\xe6\x80\x3e\xe6\x80\ \x3f\xe7\x7f\x3e\xe7\x81\x40\xe7\x80\x3e\xe8\x82\x40\xe9\x81\x40\ \xe5\x82\x43\xd9\x79\x3f\xd5\x7f\x4b\xca\x7c\x4e\xce\x7f\x4d\x8b\ \x64\x52\x8c\x5b\x42\x87\x60\x4a\xbc\x76\x4e\x9c\x6a\x4d\x61\x55\ \x4e\x2b\x38\x3b\x44\x47\x3f\x43\x3e\x2e\x3b\x38\x2d\x3f\x3a\x2e\ \x4b\x3c\x2b\x4e\x3f\x2e\x00\x00\x00\xed\x8b\x4c\xed\x8c\x4d\xed\ \x8c\x4c\xec\x8b\x4c\xec\x8b\x4b\xeb\x8b\x4c\xec\x8b\x4b\xed\x8d\ \x4a\xed\x8b\x4b\xeb\x8b\x4b\xeb\x8b\x4b\xee\x8c\x4d\xec\x8c\x4b\ \xed\x8c\x4d\xec\x8b\x4b\xec\x8b\x4c\xeb\x8a\x4a\xeb\x8c\x4b\xeb\ \x8a\x4a\xeb\x8a\x4a\xea\x8a\x4a\xeb\x8b\x4a\xeb\x8b\x4a\xec\x8b\ \x4c\xeb\x8b\x4b\xec\x8b\x4d\xec\x8b\x4b\xec\x8b\x4c\xeb\x8b\x4e\ \xec\x8b\x4b\xec\x8a\x4e\xec\x8b\x4c\xeb\x8c\x4b\xea\x8c\x4d\xe9\ \x8b\x4f\xec\x8b\x4c\xeb\x8b\x4d\xeb\x8b\x4c\xea\x8a\x4e\xeb\x8b\ \x4c\xeb\x8a\x4c\xea\x8a\x4b\xe9\x8b\x4c\xe9\x8b\x4c\xe9\x91\x56\ \xea\x94\x59\xec\x95\x57\xed\x9b\x60\xeb\x9a\x60\xea\x94\x5b\xea\ \x95\x5d\xe9\x94\x58\xe9\x95\x5f\xe7\xa1\x76\xe7\xa7\x7d\xe8\xa1\ \x73\xe6\xb0\x8a\xe0\xc4\xad\xe1\xd1\xc0\xe4\xd7\xcb\xe3\xd7\xce\ \xe5\xdd\xd6\xec\xe5\xe2\xf1\xec\xe9\xf4\xf0\xf1\xf5\xf3\xf3\xf4\ \xf2\xf1\xf5\xf1\xf0\xf3\xee\xec\xf2\xed\xea\xef\xea\xe7\xed\xe9\ \xe5\xf0\xeb\xe8\xf1\xec\xe9\xf0\xeb\xe8\xee\xe9\xe6\xee\xe7\xe4\ \xed\xe6\xe2\xeb\xe5\xe2\xec\xe5\xe1\xea\xe6\xe0\xeb\xe5\xdf\xeb\ \xe3\xdb\xe9\xe2\xd9\xe7\xdd\xd5\xe5\xd9\xcf\xe1\xd2\xc3\xdf\xcf\ \xbd\xdf\xcb\xb9\xdf\xc6\xb0\xe1\xbf\xaa\xe1\xbd\xa8\xe1\xbf\xaa\ \xe4\xbd\xa5\xe4\xb9\xa1\xe4\xa9\x89\xe4\x93\x64\xe6\x89\x4e\xe7\ \x89\x4d\xe8\x8b\x50\xe8\x8c\x53\xe8\x8c\x4f\xe9\x8e\x4f\xea\x9a\ \x65\xe8\x97\x64\xe8\x8f\x58\xe7\x8f\x54\xe7\x8c\x4f\xe6\x88\x4c\ \xe8\x88\x4a\xe9\x88\x4a\xe9\x87\x48\xe8\x87\x48\xe9\x88\x48\xe8\ \x87\x47\xe8\x87\x47\xe8\x87\x48\xe8\x87\x46\xe8\x87\x46\xe7\x86\ \x44\xe6\x84\x41\xe6\x84\x42\xe7\x85\x42\xe7\x85\x44\xe5\x85\x44\ \xe7\x84\x42\xe7\x84\x43\xe7\x84\x43\xe5\x83\x43\xe6\x83\x42\xe6\ \x81\x41\xe7\x81\x3f\xe7\x81\x3e\xe6\x82\x40\xe6\x81\x41\xe7\x81\ \x3e\xe6\x80\x3e\xe6\x80\x3e\xe5\x80\x3f\xe5\x7f\x3f\xe6\x7f\x3e\ \xe6\x81\x40\xe6\x81\x3f\xe7\x82\x3e\xe9\x82\x3f\xde\x7f\x41\xdf\ \x7c\x3f\xbd\x74\x4a\xcc\x78\x46\xd0\x7b\x4a\xa2\x68\x4d\x94\x68\ \x52\x7c\x57\x45\x74\x55\x41\x5f\x52\x48\x2c\x38\x38\x26\x3a\x3b\ \x52\x4d\x3e\x64\x4b\x30\x6e\x51\x3b\x7b\x51\x31\xb9\x72\x3e\x77\ \x5e\x4d\x00\x00\x00\xed\x8c\x4c\xec\x8c\x4a\xec\x8b\x4c\xec\x8b\ \x4c\xec\x8b\x4b\xeb\x8a\x4b\xec\x8b\x4b\xec\x8b\x4b\xec\x8a\x4c\ \xec\x8b\x4b\xeb\x8b\x4b\xec\x8c\x4a\xec\x8b\x4b\xeb\x8a\x4b\xec\ \x8b\x4a\xeb\x8b\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\x8a\x4a\xea\x89\ \x49\xeb\x8b\x49\xec\x8b\x4b\xec\x8b\x4a\xeb\x8a\x4b\xec\x8b\x4b\ \xed\x8b\x4e\xec\x8b\x4a\xea\x8b\x4c\xea\x8a\x4b\xeb\x8a\x4a\xec\ \x8b\x4c\xec\x8b\x4c\xeb\x8b\x4b\xeb\x8a\x4d\xea\x8a\x4f\xeb\x89\ \x4f\xea\x8a\x4d\xec\x8b\x4c\xea\x8a\x4c\xe9\x89\x4c\xec\x89\x4c\ \xea\x89\x4d\xea\x8a\x4c\xea\x8c\x4d\xe9\x8f\x53\xe9\x96\x60\xe9\ \x9f\x70\xe9\xa6\x7d\xeb\xa5\x78\xea\xa3\x74\xeb\xa4\x75\xeb\x9f\ \x6b\xea\xa0\x6c\xe8\xa3\x76\xe8\xaf\x8a\xe7\xb0\x8b\xe3\xc1\xa5\ \xe0\xcc\xba\xe4\xd8\xca\xe5\xd9\xd2\xe4\xd8\xcd\xe7\xde\xd4\xed\ \xe5\xe2\xf3\xee\xec\xf5\xf3\xf3\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\ \xf3\xf4\xee\xed\xf1\xec\xe9\xf0\xec\xe8\xef\xea\xe7\xf0\xec\xe7\ \xf1\xec\xe9\xf0\xec\xe8\xf0\xeb\xe7\xee\xe8\xe5\xee\xe6\xe4\xec\ \xe6\xe3\xeb\xe4\xe2\xea\xe4\xe0\xeb\xe5\xe0\xea\xe3\xde\xea\xe2\ \xdb\xe9\xe0\xd7\xe6\xdb\xd3\xe3\xd7\xcc\xe1\xd3\xc5\xe1\xd1\xbf\ \xdf\xcd\xbc\xdf\xc4\xb1\xe1\xbf\xa9\xe1\xc1\xab\xe2\xbd\xa7\xe3\ \xb1\x97\xe4\xa5\x80\xe4\x90\x5d\xe6\x8a\x50\xe7\x8a\x50\xe9\x8d\ \x54\xe9\x96\x5d\xeb\x9d\x66\xed\xa8\x76\xeb\xa3\x76\xe8\xa3\x77\ \xe7\x99\x68\xe6\x91\x5c\xe8\x8f\x54\xe7\x8d\x52\xe6\x89\x4d\xe9\ \x87\x4a\xe9\x87\x48\xe8\x88\x47\xe9\x87\x48\xe8\x87\x47\xe7\x87\ \x48\xe8\x87\x48\xe8\x87\x46\xe8\x86\x45\xe7\x86\x44\xe7\x85\x45\ \xe7\x84\x44\xe6\x84\x44\xe6\x84\x44\xe5\x84\x44\xe6\x84\x43\xe7\ \x83\x43\xe7\x83\x42\xe5\x82\x42\xe7\x82\x43\xe6\x82\x3d\xe7\x81\ \x3f\xe6\x81\x40\xe6\x81\x40\xe6\x81\x40\xe6\x80\x3f\xe5\x80\x3d\ \xe5\x80\x40\xe5\x80\x3d\xe7\x80\x3e\xe5\x80\x3e\xe6\x80\x3f\xe6\ \x80\x3d\xe7\x82\x3f\xe8\x82\x40\xdd\x7f\x44\xdd\x7e\x44\xcb\x78\ \x46\xcc\x7a\x4b\xc2\x70\x45\x8d\x62\x4c\x4e\x48\x4c\x58\x42\x36\ \x7f\x5a\x38\x66\x54\x40\x56\x50\x41\x5d\x4c\x39\xb1\x6a\x3b\x88\ \x64\x46\x56\x40\x2a\xca\x7a\x43\xfa\xa2\x67\x7c\x69\x59\x00\x00\ \x00\xed\x8b\x4b\xed\x8c\x4b\xec\x8a\x4b\xec\x8b\x4a\xeb\x8b\x4a\ \xeb\x8a\x4b\xec\x8b\x4c\xed\x8b\x4c\xeb\x8c\x4b\xec\x8b\x4a\xec\ \x8b\x4a\xec\x8b\x4b\xeb\x8a\x4a\xec\x8a\x4a\xeb\x8b\x4c\xeb\x8a\ \x4c\xec\x8b\x4a\xec\x8b\x4a\xec\x8b\x4b\xeb\x8b\x4c\xea\x8a\x48\ \xea\x8a\x4a\xeb\x8b\x4c\xec\x8b\x4b\xeb\x8a\x4b\xeb\x8a\x4b\xeb\ \x8b\x48\xea\x8a\x4b\xec\x8b\x4c\xeb\x8a\x4e\xeb\x8a\x49\xeb\x8a\ \x4c\xea\x8a\x4e\xea\x89\x4b\xea\x8a\x4c\xeb\x8c\x50\xeb\x8b\x4d\ \xea\x8a\x4b\xe9\x8b\x4d\xea\x8f\x51\xea\x8f\x52\xea\x8c\x4f\xeb\ \x8b\x4c\xea\x8f\x53\xe9\x91\x55\xeb\x9e\x6a\xeb\xa6\x79\xea\xaf\ \x89\xe8\xb3\x92\xe8\xb4\x8f\xe7\xa9\x81\xe9\xa7\x7a\xe8\xa9\x81\ \xe6\xa5\x7b\xe4\xb4\x96\xe3\xc5\xaa\xdf\xca\xb9\xe0\xd0\xc0\xe6\ \xda\xd0\xe4\xd9\xd1\xe5\xda\xd1\xe7\xdf\xd7\xed\xe8\xe3\xf4\xef\ \xed\xf5\xf3\xf3\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf0\xf1\ \xf3\xef\xec\xf0\xeb\xe8\xef\xea\xe7\xf0\xeb\xe9\xf0\xeb\xe8\xf1\ \xec\xea\xf0\xec\xe9\xf0\xeb\xe8\xee\xe9\xe5\xee\xe7\xe4\xec\xe6\ \xe3\xeb\xe4\xe1\xea\xe6\xe0\xec\xe4\xe0\xea\xe2\xdb\xe8\xe1\xd8\ \xe7\xde\xd5\xe7\xdb\xd1\xe5\xd9\xce\xe3\xd6\xc9\xe1\xd3\xc4\xe0\ \xcb\xba\xe0\xc9\xb5\xe1\xc6\xb1\xe1\xc0\xaa\xe3\xb1\x95\xe5\xa4\ \x7c\xe6\x93\x5e\xe8\x8f\x56\xe7\x8e\x57\xe6\x8f\x5a\xe8\xa1\x72\ \xe8\xaf\x8c\xe7\xb7\x99\xe7\xba\x9d\xe7\xb2\x92\xe6\xa2\x78\xe6\ \x96\x62\xe8\x98\x65\xe6\x93\x5e\xe8\x8f\x56\xe8\x8c\x4f\xe8\x88\ \x47\xe9\x86\x48\xe7\x87\x49\xe8\x88\x47\xe7\x87\x47\xe8\x86\x48\ \xe9\x87\x46\xe8\x87\x45\xe6\x85\x44\xe7\x85\x44\xe6\x84\x43\xe6\ \x85\x46\xe6\x84\x44\xe7\x84\x44\xe6\x82\x42\xe5\x83\x40\xe6\x83\ \x3f\xe6\x82\x42\xe6\x81\x40\xe5\x81\x41\xe4\x81\x40\xe6\x81\x3f\ \xe5\x81\x3e\xe5\x80\x3e\xe5\x80\x3e\xe5\x80\x3e\xe6\x7f\x3f\xe6\ \x7f\x3f\xe5\x80\x3c\xe6\x81\x3d\xe7\x7f\x3c\xe7\x7f\x3f\xe6\x80\ \x3e\xe7\x82\x41\xe2\x81\x42\xd7\x7c\x46\xce\x7c\x48\xc2\x71\x43\ \xc0\x78\x4c\x6e\x55\x4a\x78\x5f\x50\x70\x53\x40\x96\x60\x3b\xce\ \x7c\x45\xc3\x77\x47\xd2\x7f\x46\xc3\x7e\x56\x55\x48\x3e\x81\x54\ \x33\x6a\x4e\x39\x9b\x6d\x48\x45\x4a\x47\x00\x00\x00\xec\x8b\x4c\ \xec\x8a\x4b\xec\x8b\x4c\xec\x8c\x4a\xec\x8c\x4c\xed\x8c\x4b\xec\ \x8c\x4b\xeb\x8b\x49\xec\x8a\x4b\xeb\x8a\x4a\xeb\x8b\x49\xeb\x8b\ \x4b\xeb\x8a\x4b\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8b\x4a\xea\x8a\x4a\ \xea\x8a\x49\xeb\x89\x4b\xeb\x8a\x4a\xeb\x8b\x4a\xeb\x8a\x4b\xec\ \x8a\x4b\xeb\x8b\x49\xeb\x8a\x4a\xeb\x8a\x49\xea\x89\x4b\xea\x89\ \x4a\xeb\x89\x4d\xeb\x89\x4b\xea\x89\x4a\xeb\x8a\x4c\xea\x89\x4c\ \xea\x89\x4b\xeb\x8a\x4d\xe8\x8e\x52\xea\x8f\x55\xec\x90\x55\xec\ \x97\x5f\xec\x9e\x69\xea\x97\x5f\xe8\x8d\x50\xea\x8d\x50\xe9\x93\ \x5b\xe9\x97\x61\xe7\xa0\x74\xe4\xa6\x80\xe4\xac\x8f\xe4\xb4\x9a\ \xe2\xbe\xa7\xe5\xb9\x9a\xe6\xb5\x93\xe7\xb3\x8e\xe8\xb4\x8e\xe3\ \xbf\xa4\xe3\xd2\xc2\xe0\xd0\xbe\xe4\xd7\xc8\xe9\xe0\xd6\xe8\xdf\ \xd7\xe7\xdf\xd6\xeb\xe3\xdb\xef\xeb\xe6\xf4\xef\xef\xf6\xf4\xf4\ \xf6\xf4\xf4\xf5\xf3\xf3\xf6\xf4\xf4\xf4\xf1\xf1\xf1\xed\xed\xef\ \xea\xe6\xed\xe8\xe6\xef\xeb\xe7\xf0\xec\xea\xf1\xed\xea\xf2\xed\ \xea\xf0\xeb\xe8\xef\xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xec\xe7\xe3\ \xeb\xe5\xe1\xec\xe5\xe1\xec\xe4\xde\xe9\xe3\xd9\xe8\xe1\xd8\xe7\ \xde\xd5\xe7\xdb\xd3\xe5\xd9\xcf\xe3\xd6\xcb\xe2\xd4\xc6\xe0\xd1\ \xbe\xe0\xcc\xbb\xe1\xc6\xb3\xe4\xb5\x99\xe6\xa8\x81\xe7\x9a\x6b\ \xe8\x99\x62\xe6\x91\x5c\xe6\x8d\x55\xe6\x9c\x6c\xe6\xad\x8b\xe5\ \xbe\xa2\xe2\xc3\xae\xe4\xba\xa4\xe6\xad\x8c\xe9\xa0\x70\xe8\xa1\ \x75\xe6\x94\x61\xe9\x92\x5c\xe9\x94\x5f\xea\x92\x56\xe9\x95\x58\ \xe8\x8f\x55\xe7\x89\x4d\xe8\x86\x47\xe8\x86\x46\xe8\x87\x45\xe6\ \x85\x45\xe7\x85\x46\xe6\x85\x45\xe7\x87\x45\xe8\x88\x49\xe6\x86\ \x47\xe5\x83\x43\xe6\x83\x42\xe6\x83\x43\xe5\x82\x42\xe4\x82\x41\ \xe5\x82\x41\xe7\x82\x3f\xe7\x82\x3d\xe6\x81\x3e\xe6\x80\x3f\xe8\ \x80\x3f\xe6\x80\x3b\xe6\x7f\x3e\xe6\x80\x3c\xe7\x80\x3f\xe7\x7f\ \x3c\xe7\x80\x3e\xe6\x80\x3d\xe7\x80\x3d\xe6\x81\x3f\xe7\x81\x40\ \xe8\x83\x42\xd2\x7a\x43\xca\x75\x40\xc4\x73\x44\x91\x62\x4d\x82\ \x5c\x46\x6a\x51\x3f\xb5\x70\x42\xdd\x7e\x42\xf0\x8d\x4f\xf3\x8e\ \x4f\xc8\x82\x59\x65\x54\x48\x78\x53\x32\x85\x62\x43\x63\x45\x2f\ \x91\x69\x46\x3b\x46\x40\x00\x00\x00\xec\x8b\x4c\xea\x8a\x4c\xed\ \x8b\x4c\xed\x8c\x4c\xec\x8c\x4c\xec\x8c\x4c\xec\x8b\x4b\xec\x8a\ \x4c\xeb\x8b\x4a\xec\x8a\x4b\xeb\x8b\x4a\xeb\x8a\x4a\xeb\x8a\x4a\ \xec\x8a\x4b\xea\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8a\x4a\xea\ \x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x89\x4a\xeb\x8a\x4b\xeb\x8a\ \x4b\xeb\x8a\x4b\xeb\x8a\x4a\xea\x8a\x4b\xea\x89\x49\xea\x89\x4b\ \xeb\x8a\x4a\xea\x89\x4a\xea\x89\x4b\xeb\x89\x4a\xeb\x8a\x4a\xe9\ \x8b\x4d\xe8\x8b\x4e\xe7\x8c\x52\xe8\x93\x5e\xe8\x9f\x70\xe9\xa4\ \x76\xe9\x98\x63\xe9\x91\x57\xe9\x94\x59\xe8\x96\x60\xe6\x93\x5d\ \xe5\x97\x66\xe6\xa1\x77\xe7\xac\x85\xe6\xb4\x94\xe3\xc0\xa8\xe4\ \xbc\xa2\xe3\xbe\xa4\xe1\xbd\xa8\xe0\xbd\xa6\xe0\xc9\xb8\xe4\xd9\ \xcd\xe5\xd9\xcd\xe7\xde\xd4\xea\xe3\xdc\xe8\xe1\xdd\xea\xe2\xdb\ \xec\xe6\xe0\xef\xeb\xe7\xf2\xed\xed\xf5\xf2\xf2\xf6\xf4\xf4\xf5\ \xf3\xf3\xf4\xf3\xf3\xf4\xf0\xef\xf2\xec\xea\xee\xe8\xe4\xeb\xe4\ \xe1\xee\xe8\xe5\xef\xea\xe7\xf2\xed\xea\xf2\xed\xea\xf1\xed\xe9\ \xf0\xeb\xe8\xf0\xe9\xe6\xef\xe8\xe5\xef\xe8\xe5\xed\xe6\xe3\xeb\ \xe5\xe2\xeb\xe5\xe0\xeb\xe4\xe0\xea\xe2\xdc\xe9\xe1\xd9\xe8\xdf\ \xd6\xe7\xdc\xd3\xe6\xda\xd1\xe5\xd8\xcf\xe3\xd5\xc8\xe1\xd2\xc2\ \xe0\xcb\xba\xe3\xc0\xa9\xe4\xb4\x99\xe4\xa3\x7c\xe7\xa1\x72\xe6\ \x98\x66\xe6\x93\x5b\xe6\xa4\x79\xe5\xae\x8f\xe2\xba\xa3\xe0\xbf\ \xac\xe2\xb7\xa0\xe5\xb7\x9b\xe8\xb3\x91\xe8\xb4\x94\xe7\xa4\x79\ \xe7\x9d\x6c\xe7\x99\x69\xe8\xa0\x71\xe9\xa9\x7e\xe9\xa1\x73\xe9\ \x90\x59\xe7\x8b\x4d\xe7\x87\x48\xe8\x87\x47\xe6\x86\x46\xe7\x86\ \x45\xe7\x84\x44\xe7\x87\x4a\xe6\x8a\x54\xe5\x85\x47\xe7\x83\x42\ \xe6\x82\x42\xe5\x82\x41\xe6\x82\x41\xe4\x82\x42\xe4\x82\x41\xe6\ \x82\x3f\xe6\x81\x3d\xe6\x80\x3f\xe6\x80\x3e\xe5\x80\x3e\xe7\x80\ \x3d\xe6\x7f\x3f\xe5\x80\x3e\xe7\x80\x3d\xe7\x7f\x3c\xe5\x80\x3c\ \xe7\x7f\x3e\xe7\x80\x3d\xe7\x81\x40\xe7\x82\x42\xe6\x83\x41\xc3\ \x71\x44\xd9\x7a\x3e\xb6\x6e\x46\xa3\x64\x43\xa1\x67\x44\xb0\x69\ \x36\xdd\x85\x4f\xe4\x85\x4a\xec\x89\x4b\xf0\x8c\x4f\xc2\x7e\x55\ \x93\x67\x45\x6e\x52\x39\x5f\x50\x40\x18\x2b\x29\x38\x3b\x2f\x3e\ \x4c\x45\x00\x00\x00\xed\x8b\x4d\xec\x8c\x4b\xec\x8b\x4d\xec\x8b\ \x4c\xec\x8b\x4b\xec\x8b\x4c\xed\x8b\x4b\xec\x8a\x4d\xeb\x8b\x4a\ \xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\ \x8a\x4a\xeb\x8a\x4b\xeb\x89\x4b\xea\x89\x4c\xeb\x8a\x4e\xea\x89\ \x4e\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4b\xea\x89\x4b\xea\x89\x4a\ \xea\x89\x4a\xea\x89\x4a\xea\x89\x4a\xea\x89\x4b\xea\x89\x4b\xea\ \x89\x49\xea\x89\x4a\xeb\x8a\x4c\xe9\x8b\x4d\xe7\x8d\x52\xe8\x8b\ \x4e\xe8\x8b\x4c\xea\x91\x59\xe8\x9a\x69\xe9\xa2\x75\xea\xa0\x70\ \xe9\x97\x63\xe8\x93\x5c\xe7\x91\x58\xe8\x90\x57\xe8\x97\x62\xe8\ \xaa\x81\xe5\xb9\x9d\xe4\xbf\xa7\xe2\xc4\xaf\xe2\xc3\xae\xe2\xbe\ \xa5\xe2\xb6\x9c\xe2\xb2\x98\xe1\xc6\xb3\xe2\xd6\xcc\xe5\xda\xd2\ \xe7\xde\xd9\xea\xe1\xde\xe9\xe0\xdc\xeb\xe4\xe0\xed\xe7\xe3\xef\ \xe9\xe6\xf0\xeb\xe9\xf3\xef\xef\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\ \xf4\xf5\xf3\xf1\xf4\xf0\xee\xf1\xec\xe8\xed\xe6\xe2\xed\xe7\xe4\ \xee\xea\xe7\xef\xeb\xe8\xf1\xec\xe9\xf2\xed\xea\xf1\xec\xe9\xf1\ \xec\xe9\xef\xeb\xe8\xf0\xe9\xe6\xee\xe8\xe5\xed\xe8\xe4\xec\xe6\ \xe2\xe9\xe6\xe1\xeb\xe5\xe0\xec\xe3\xde\xe8\xe1\xd8\xe8\xe0\xd7\ \xe7\xde\xd5\xe7\xdb\xd3\xe4\xd8\xcd\xe2\xd5\xca\xe1\xd1\xc2\xe0\ \xc4\xb0\xe4\xb5\x9b\xe3\xa5\x81\xe4\x9e\x74\xe5\x9d\x70\xe8\xa6\ \x76\xe7\xaf\x8b\xe4\xa9\x86\xe3\xb8\x9f\xe1\xba\xa4\xe4\xb6\x9c\ \xe3\xbf\xa7\xe3\xc0\xaa\xe2\xc0\xab\xe5\xb9\x9d\xe7\xab\x84\xe8\ \xa4\x77\xe9\xa6\x79\xe8\xae\x89\xe9\xb4\x94\xea\xa9\x7f\xe7\x98\ \x67\xe6\x8b\x4f\xe7\x87\x4a\xe5\x86\x49\xe7\x85\x44\xe6\x84\x45\ \xe7\x87\x48\xe4\x87\x4d\xe5\x84\x44\xe6\x82\x43\xe6\x83\x43\xe5\ \x82\x42\xe5\x81\x40\xe6\x82\x3f\xe4\x81\x3f\xe5\x80\x40\xe6\x80\ \x3d\xe6\x80\x3f\xe6\x80\x3f\xe6\x80\x3f\xe6\x80\x40\xe7\x80\x3f\ \xe7\x80\x3e\xe6\x80\x3e\xe6\x80\x3c\xe5\x7f\x3f\xe7\x7f\x3e\xe6\ \x7f\x3f\xe6\x80\x3e\xe8\x81\x3e\xd8\x7b\x40\xd3\x78\x41\xce\x77\ \x43\xac\x6a\x46\xa9\x65\x41\xcb\x77\x41\xd5\x7e\x4b\xdb\x82\x4e\ \xe8\x84\x48\xec\x86\x47\xed\x89\x4d\x79\x5a\x47\x54\x48\x3b\x6c\ \x4e\x31\x6f\x51\x37\x3e\x42\x33\x31\x46\x3d\x27\x47\x46\x00\x00\ \x00\xec\x8b\x4b\xed\x8b\x4c\xeb\x8b\x4b\xec\x8a\x4b\xec\x8a\x4b\ \xec\x8a\x4b\xeb\x8a\x4b\xeb\x89\x4a\xec\x8b\x4b\xeb\x8a\x4c\xeb\ \x89\x4c\xeb\x89\x4c\xeb\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\ \x4a\xec\x8a\x4b\xea\x8a\x4c\xeb\x89\x4b\xea\x8a\x4d\xeb\x8a\x4a\ \xea\x8a\x4c\xea\x8a\x4b\xeb\x89\x4a\xea\x8a\x49\xe9\x89\x49\xe9\ \x89\x4c\xeb\x89\x4c\xea\x89\x4d\xea\x8a\x4c\xe9\x89\x4b\xeb\x8a\ \x49\xea\x8b\x4c\xe9\x8c\x4d\xe8\x8c\x4f\xe9\x8e\x53\xe8\x8b\x4e\ \xe7\x8f\x59\xe8\x99\x68\xe8\xa0\x75\xe9\xa3\x76\xe7\x98\x65\xe7\ \x8e\x55\xe8\x90\x57\xe9\x9c\x67\xe9\xa7\x7a\xe7\xb4\x95\xe4\xb8\ \x9f\xe1\xc4\xb0\xe1\xc6\xb2\xe1\xc7\xb4\xe1\xc6\xb0\xe3\xbb\x9f\ \xe2\xbe\xa3\xe1\xce\xbd\xe3\xd5\xcb\xe5\xd9\xd1\xe6\xdc\xd6\xe5\ \xdb\xd8\xe7\xdf\xd9\xeb\xe4\xe0\xed\xe6\xe2\xee\xe7\xe4\xed\xe7\ \xe4\xf1\xec\xea\xf3\xef\xf0\xf5\xf3\xf3\xf6\xf5\xf4\xf7\xf5\xf5\ \xf6\xf3\xf4\xf4\xf0\xef\xf3\xed\xe9\xf1\xec\xe9\xef\xea\xe7\xef\ \xe8\xe5\xf0\xea\xe7\xf1\xed\xea\xf2\xed\xea\xf2\xed\xea\xf2\xed\ \xea\xf1\xeb\xe8\xf0\xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xec\xe5\xe2\ \xeb\xe5\xe1\xec\xe5\xe0\xec\xe3\xdd\xe9\xe2\xd9\xe9\xe0\xd7\xe7\ \xde\xd5\xe7\xda\xd1\xe4\xd7\xce\xe2\xd4\xc7\xe0\xc9\xb7\xdf\xb8\ \xa2\xe2\xa1\x7b\xe8\xa4\x77\xe7\xb5\x8e\xe4\xc5\xa9\xe5\xc8\xaf\ \xe6\xbe\xa2\xe2\xbe\xa4\xe0\xc4\xae\xe2\xc5\xad\xe0\xc9\xb5\xdf\ \xcb\xb9\xe1\xcb\xb7\xe1\xc6\xb2\xe2\xbe\xa6\xe5\xba\x9d\xe6\xb8\ \x9a\xe5\xb5\x97\xe6\xbd\xa4\xe7\xb6\x9c\xe9\xa8\x7e\xe8\x9a\x68\ \xe6\x89\x4e\xe6\x84\x46\xe5\x84\x43\xe5\x85\x45\xe6\x87\x49\xe5\ \x85\x48\xe6\x85\x45\xe4\x83\x44\xe6\x82\x41\xe6\x81\x40\xe5\x81\ \x3f\xe6\x80\x40\xe5\x80\x3f\xe6\x80\x3e\xe5\x7f\x40\xe6\x7f\x3e\ \xe5\x7f\x3d\xe6\x81\x3f\xe5\x80\x40\xe7\x80\x3d\xe8\x80\x3c\xe6\ \x7f\x3b\xe6\x7f\x3d\xe6\x7f\x3e\xe5\x7f\x3d\xe7\x7f\x3d\xe7\x80\ \x3e\xe8\x80\x3c\xd9\x7b\x40\xd4\x7e\x4a\xd0\x76\x42\xa9\x69\x46\ \xca\x74\x42\xd5\x7b\x47\xd7\x7e\x49\xe7\x82\x46\xeb\x83\x44\xde\ \x7f\x46\xad\x69\x3f\x96\x5b\x32\xc1\x73\x3c\xd4\x80\x4a\x93\x63\ \x46\x67\x51\x40\x27\x37\x33\x27\x42\x40\x00\x00\x00\xec\x8a\x4a\ \xec\x8a\x4c\xec\x8b\x4b\xeb\x8a\x4a\xeb\x8b\x4a\xeb\x8b\x4a\xea\ \x8a\x4d\xeb\x89\x4b\xeb\x8a\x4b\xeb\x89\x4a\xec\x89\x4b\xea\x89\ \x4b\xea\x8a\x49\xea\x8a\x4a\xeb\x89\x4a\xeb\x8a\x48\xeb\x8a\x4a\ \xea\x8a\x4a\xeb\x8a\x4b\xea\x8a\x4b\xeb\x8a\x4a\xe9\x8a\x4b\xea\ \x8a\x4a\xeb\x8a\x49\xea\x8a\x4a\xea\x89\x4c\xea\x89\x49\xea\x89\ \x4a\xea\x89\x4d\xe9\x8b\x4e\xe8\x8a\x4c\xe9\x8c\x4c\xea\x8b\x4e\ \xe9\x8d\x4f\xe8\x8d\x51\xe7\x8d\x52\xe9\x89\x4d\xe9\x88\x4d\xe6\ \x90\x5b\xe6\x9a\x6c\xe6\x9c\x70\xe8\x95\x62\xe9\x90\x54\xe8\x92\ \x5a\xe7\xa3\x7c\xe7\xb1\x91\xe2\xaa\x8c\xe3\xb5\x9b\xe2\xc3\xb0\ \xdf\xc6\xb4\xdf\xcd\xbc\xe0\xca\xb5\xe1\xc6\xb0\xe1\xcd\xb8\xdf\ \xd0\xc2\xe2\xd5\xcb\xe3\xd6\xcf\xe2\xd6\xd1\xe0\xd2\xca\xe6\xdb\ \xd4\xeb\xe3\xe0\xeb\xe4\xe1\xec\xe5\xe2\xec\xe5\xe1\xee\xe9\xe6\ \xf2\xec\xed\xf4\xef\xf0\xf6\xf3\xf3\xf7\xf5\xf5\xf7\xf5\xf5\xf6\ \xf4\xf4\xf5\xf2\xf2\xf4\xf1\xf1\xf4\xf0\xec\xf2\xed\xea\xf2\xed\ \xe9\xf3\xee\xeb\xf4\xef\xec\xf4\xef\xeb\xf3\xee\xec\xf2\xed\xea\ \xf2\xec\xe9\xef\xea\xe7\xee\xe9\xe6\xef\xe8\xe5\xec\xe5\xe2\xec\ \xe6\xe1\xeb\xe5\xe1\xeb\xe3\xdf\xe9\xe2\xda\xe9\xe0\xd7\xe6\xdd\ \xd4\xe6\xd9\xd0\xe3\xd5\xca\xdf\xce\xbe\xdd\xb1\x99\xe5\xa7\x7e\ \xe3\xc0\xa5\xe0\xc8\xb5\xde\xc9\xbb\xdf\xce\xc2\xe1\xd2\xc6\xe1\ \xd0\xbf\xe1\xd0\xbf\xe2\xd3\xc3\xe0\xd0\xc0\xe3\xd3\xc5\xe2\xd6\ \xc9\xe2\xd1\xc3\xe1\xc9\xb4\xe2\xc8\xb2\xe2\xc4\xae\xe4\xc4\xaa\ \xe3\xc5\xb0\xe1\xb7\xa2\xe1\xa5\x88\xe0\x98\x73\xe4\x8a\x52\xe6\ \x85\x47\xe7\x89\x48\xe8\x88\x47\xe8\x8f\x51\xe9\x8c\x51\xe6\x88\ \x4a\xe6\x82\x42\xe5\x82\x3f\xe5\x81\x40\xe5\x81\x3f\xe6\x80\x40\ \xe6\x7f\x3f\xe6\x80\x3f\xe6\x7f\x3d\xe6\x7f\x3d\xe7\x7f\x3e\xe8\ \x80\x3c\xe5\x7f\x3c\xe8\x80\x3d\xe7\x7f\x3d\xe7\x7f\x3e\xe6\x7f\ \x3d\xe5\x81\x3f\xe5\x7f\x3e\xe6\x7f\x3b\xe7\x7f\x3f\xe8\x80\x3e\ \xe1\x7e\x42\xcf\x78\x47\xcf\x7b\x49\xb8\x6e\x48\xd6\x78\x3e\xd7\ \x7b\x45\xe3\x80\x40\xe3\x7f\x44\xe7\x80\x42\xd9\x79\x3f\xdd\x7c\ \x3e\xe7\x84\x43\xec\x89\x4c\xb7\x77\x52\x73\x52\x36\x7b\x4f\x2e\ \x63\x51\x36\x25\x3e\x40\x00\x00\x00\xeb\x8a\x4a\xec\x8b\x4b\xea\ \x8a\x49\xeb\x89\x4a\xea\x8a\x49\xea\x8a\x4a\xea\x89\x4b\xeb\x89\ \x4b\xea\x89\x49\xeb\x89\x4a\xea\x89\x48\xea\x8a\x49\xea\x8a\x49\ \xe9\x89\x49\xea\x8a\x49\xeb\x89\x4a\xea\x89\x4d\xea\x8a\x4b\xea\ \x89\x4c\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8a\x4b\xea\x89\x4b\xea\x89\ \x4c\xeb\x89\x4c\xea\x89\x4a\xe9\x89\x4a\xe9\x8a\x4a\xe7\x89\x4d\ \xea\x89\x4b\xe9\x8a\x4b\xe8\x8b\x50\xe7\x8a\x4f\xeb\x89\x4c\xe9\ \x89\x4c\xe8\x89\x4e\xe8\x89\x4d\xe8\x88\x49\xe6\x8a\x4f\xe5\x91\ \x5c\xe6\x95\x63\xe8\x9b\x6a\xeb\xa3\x74\xeb\xa1\x71\xe5\xa3\x7a\ \xe2\xa4\x83\xe6\x99\x6b\xe5\xaa\x8b\xe2\xb8\xa2\xe2\xc0\xae\xe1\ \xcf\xbe\xe1\xd0\xc0\xdd\xca\xbb\xde\xcc\xbf\xdd\xc7\xb8\xde\xce\ \xc2\xdd\xcc\xc1\xdc\xc9\xbf\xdf\xd0\xc1\xe4\xd9\xd2\xe9\xe0\xdc\ \xe9\xe1\xdd\xeb\xe3\xe0\xeb\xe6\xe2\xee\xe7\xe5\xf0\xeb\xe9\xf2\ \xec\xec\xf3\xf0\xf1\xf5\xf3\xf3\xf7\xf5\xf5\xf8\xf6\xf6\xf8\xf6\ \xf6\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\xf0\xf6\xf1\xf0\xf5\xf0\xef\ \xf4\xef\xf0\xf5\xef\xef\xf5\xf0\xee\xf3\xee\xeb\xf3\xee\xeb\xf2\ \xed\xea\xf0\xec\xe8\xf1\xea\xe7\xee\xe8\xe5\xed\xe6\xe3\xec\xe5\ \xe2\xeb\xe5\xe0\xec\xe3\xdf\xe9\xe1\xdb\xe7\xdd\xd6\xe6\xd9\xd1\ \xe2\xd5\xcb\xe0\xd1\xc4\xe2\xb7\x9e\xe3\xa7\x83\xdf\xb7\xa4\xdf\ \xc4\xb1\xdf\xc7\xb6\xdf\xc9\xb7\xdd\xcc\xbf\xdf\xd1\xc6\xe2\xd7\ \xcc\xe1\xd3\xc9\xe0\xd0\xc2\xe1\xd3\xc7\xe3\xd7\xcc\xe5\xd9\xce\ \xe3\xd5\xc8\xe0\xcf\xc2\xdf\xcb\xbc\xdf\xc9\xb9\xe0\xbd\xac\xdd\ \x9d\x7e\xe1\x8c\x5a\xe5\x88\x4d\xe5\x87\x4c\xe6\x86\x4a\xe5\x8d\ \x57\xe6\x8d\x56\xe4\x94\x67\xe3\x8f\x5f\xe3\x86\x51\xe3\x83\x44\ \xe4\x82\x40\xe6\x80\x3e\xe5\x81\x3f\xe4\x80\x3d\xe5\x7f\x3e\xe6\ \x81\x3f\xe6\x80\x40\xe5\x7f\x3f\xe5\x7f\x3f\xe6\x7f\x3e\xe5\x7f\ \x3f\xe5\x7e\x3f\xe4\x7f\x3d\xe6\x7e\x3e\xe7\x7e\x3c\xe7\x7d\x3d\ \xe6\x7f\x3b\xe6\x7f\x3b\xe6\x7f\x3c\xe8\x80\x3d\xe6\x80\x3f\xdd\ \x7d\x44\xd5\x7a\x42\xc3\x74\x43\xdf\x7c\x40\xdd\x7b\x3f\xe7\x7f\ \x3c\xe4\x7f\x42\xe8\x7f\x41\xe9\x80\x44\xea\x82\x44\xeb\x85\x47\ \xea\x87\x4b\xce\x7f\x50\x9c\x5e\x36\xaa\x6c\x43\x83\x65\x53\x2c\ \x3e\x42\x00\x00\x00\xeb\x8a\x4c\xeb\x8a\x49\xeb\x89\x4b\xeb\x8a\ \x4b\xea\x89\x49\xeb\x8a\x49\xeb\x89\x4c\xea\x89\x4a\xeb\x89\x4a\ \xea\x89\x48\xea\x89\x49\xe9\x89\x49\xea\x89\x4a\xe9\x8a\x49\xea\ \x89\x49\xea\x89\x49\xea\x89\x49\xea\x89\x48\xe9\x8a\x49\xea\x88\ \x4a\xea\x89\x49\xea\x89\x4a\xea\x8a\x4a\xea\x8a\x49\xea\x89\x48\ \xe9\x88\x4a\xe8\x88\x4a\xea\x89\x49\xe8\x89\x4c\xe9\x89\x48\xe9\ \x88\x49\xe8\x87\x4b\xe9\x89\x4a\xe9\x89\x4b\xe7\x89\x4b\xe8\x89\ \x4b\xe8\x89\x49\xe8\x89\x4d\xe6\x8a\x4e\xe7\x8e\x56\xe6\x91\x59\ \xe3\x90\x5e\xe4\xa0\x79\xe7\xa8\x7d\xe8\xa2\x79\xe4\x98\x66\xe8\ \x9f\x72\xe7\xae\x8d\xe3\xb9\xa2\xe0\xc2\xaf\xdf\xca\xbb\xdf\xc9\ \xb9\xde\xb9\xa6\xdf\xbe\xac\xdf\xc1\xad\xde\xc7\xb7\xde\xc7\xb6\ \xdf\xbe\xa7\xde\xcc\xbd\xe3\xd6\xcd\xe5\xdb\xd5\xe6\xdd\xd8\xea\ \xe3\xde\xeb\xe4\xe0\xec\xe6\xe2\xed\xe8\xe6\xf0\xeb\xe9\xf3\xef\ \xef\xf5\xf3\xf3\xf7\xf5\xf5\xf8\xf7\xf7\xf8\xf6\xf6\xf8\xf6\xf6\ \xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf2\xf3\xf5\xf2\xf2\xf5\xf2\xf3\xf5\ \xf2\xf1\xf5\xf0\xf1\xf5\xf0\xee\xf4\xef\xec\xf3\xee\xeb\xf2\xed\ \xea\xf1\xec\xe8\xef\xea\xe7\xee\xe7\xe4\xed\xe6\xe3\xeb\xe4\xe1\ \xec\xe4\xe0\xeb\xe2\xde\xe7\xdd\xd6\xe4\xd9\xd0\xdd\xcc\xbf\xdc\ \xc7\xb9\xdf\xb8\xa4\xe4\xa9\x84\xe2\xb6\x98\xdf\xc2\xaf\xdc\xc5\ \xb5\xdf\xcd\xbd\xdf\xcf\xc1\xe1\xd0\xc3\xe2\xd6\xcd\xe2\xd5\xcd\ \xe2\xd4\xc9\xe3\xd5\xc9\xe7\xdb\xd1\xe9\xdd\xd5\xe3\xd6\xcf\xdc\ \xc1\xb6\xdc\xbb\xab\xde\xbd\xae\xdf\xaf\x9a\xe5\x99\x6d\xe7\x92\ \x5b\xe6\x8f\x57\xe6\x8a\x4c\xe9\x91\x57\xe8\x96\x64\xe4\x8b\x59\ \xe6\x8d\x56\xe5\x8c\x58\xe3\x84\x4a\xe4\x81\x40\xe5\x80\x40\xe4\ \x80\x3f\xe6\x80\x3e\xe6\x7f\x3d\xe5\x80\x3f\xe6\x7f\x3e\xe5\x7f\ \x3f\xe5\x7f\x3e\xe4\x7f\x3f\xe4\x7e\x3e\xe6\x7e\x3e\xe5\x7f\x3d\ \xe5\x7f\x3c\xe5\x7f\x3d\xe4\x7e\x3e\xe6\x80\x3c\xe6\x7d\x3d\xe6\ \x7e\x3d\xe6\x7e\x3d\xe7\x7e\x3c\xe6\x7e\x3d\xe0\x7e\x43\xd8\x7a\ \x41\xc5\x76\x49\xe2\x7d\x41\xdf\x7c\x40\xe5\x7e\x40\xe8\x7d\x3d\ \xe7\x7e\x40\xe9\x80\x42\xea\x81\x43\xec\x85\x45\xca\x7b\x4c\x9e\ \x67\x49\x84\x5c\x43\x75\x57\x3e\x4b\x4e\x44\x24\x34\x32\x00\x00\ \x00\xea\x8a\x4b\xea\x8a\x4a\xeb\x8a\x4a\xea\x89\x4a\xea\x8a\x49\ \xea\x8a\x4a\xea\x8a\x4a\xeb\x8a\x49\xea\x8a\x48\xe9\x89\x49\xea\ \x89\x49\xea\x88\x4a\xe9\x88\x49\xea\x89\x49\xe9\x89\x48\xe9\x89\ \x48\xe9\x88\x49\xea\x89\x4a\xea\x8a\x48\xea\x88\x4b\xe9\x88\x4b\ \xe9\x89\x4a\xe8\x8a\x4c\xea\x89\x4a\xe9\x89\x49\xe8\x87\x4b\xe9\ \x88\x49\xea\x89\x49\xe9\x88\x4a\xe9\x89\x48\xe9\x88\x49\xea\x88\ \x4b\xe9\x89\x4c\xe9\x89\x4a\xe7\x89\x4b\xea\x89\x4a\xe7\x89\x4b\ \xe6\x8b\x4f\xe7\x8e\x53\xe6\x8d\x53\xe7\x8d\x52\xe6\x8d\x55\xe7\ \x9d\x6e\xe7\xaa\x85\xe8\xa6\x80\xe6\x96\x62\xe4\xa3\x7e\xe2\xab\ \x8f\xe0\xac\x93\xe0\xb6\xa1\xe0\xc3\xb3\xe0\xbf\xad\xe2\xbb\xa2\ \xe2\xbd\xa5\xe0\xc1\xab\xe0\xc4\xaf\xdf\xc8\xb6\xe0\xbe\xa8\xde\ \xc7\xb6\xe3\xd6\xcc\xe3\xd6\xce\xe1\xd4\xcc\xe8\xdf\xda\xeb\xe4\ \xe0\xeb\xe4\xe0\xed\xe5\xe4\xf0\xeb\xe9\xf4\xef\xef\xf5\xf3\xf3\ \xf7\xf5\xf5\xf8\xf7\xf7\xf8\xf7\xf7\xf8\xf6\xf6\xf8\xf6\xf6\xf8\ \xf6\xf6\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf4\xf2\ \xf2\xf4\xf1\xf1\xf5\xf0\xee\xf3\xee\xec\xf3\xee\xeb\xf3\xee\xeb\ \xf1\xec\xe8\xee\xe9\xe6\xee\xe7\xe4\xec\xe5\xe2\xec\xe6\xe1\xea\ \xe1\xdd\xe7\xdd\xd5\xe8\xde\xd5\xe4\xd5\xc7\xde\xbf\xac\xe0\xae\ \x94\xe3\xb1\x93\xe1\xbd\xa5\xe0\xb9\xa4\xdf\xc0\xab\xe0\xce\xbe\ \xe2\xd2\xc6\xe2\xd4\xca\xe2\xd5\xcd\xe1\xd4\xcd\xe2\xd5\xcd\xe5\ \xda\xcf\xe7\xdd\xd6\xe8\xdf\xdb\xe2\xd6\xd1\xdf\xbd\xaa\xe2\xa8\ \x88\xe3\xb2\x9a\xe3\xaa\x8d\xe5\x9c\x6c\xe8\x9e\x6e\xe7\x9e\x6d\ \xe7\x94\x60\xe7\x95\x60\xe5\x98\x6a\xe5\x8f\x58\xe6\x93\x60\xe2\ \x8a\x57\xe3\x81\x41\xe6\x80\x3f\xe5\x80\x3f\xe5\x80\x3e\xe5\x7f\ \x3e\xe5\x7f\x40\xe6\x80\x3f\xe6\x7f\x40\xe5\x7f\x3f\xe6\x7f\x3f\ \xe6\x7f\x40\xe6\x7f\x3e\xe5\x7e\x3f\xe5\x7e\x3e\xe7\x7f\x3b\xe6\ \x7f\x3d\xe5\x7f\x3c\xe6\x7f\x3c\xe6\x7d\x3c\xe5\x7e\x3d\xe5\x7e\ \x3c\xe6\x7e\x3b\xe7\x7e\x3a\xe6\x7e\x3c\xe4\x7b\x3d\xde\x7b\x3f\ \xe5\x7e\x3f\xe5\x7d\x3b\xe5\x7e\x3c\xe7\x7d\x3d\xe8\x7e\x3d\xe7\ \x7e\x3e\xdb\x7b\x3f\xaf\x6d\x44\x4c\x40\x3c\x65\x47\x2c\x64\x4c\ \x34\x64\x4c\x3a\x50\x4d\x45\x30\x3d\x35\x00\x00\x00\xea\x89\x4a\ \xea\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xea\x89\x4b\xe9\x89\x4a\xe9\ \x8a\x49\xea\x89\x49\xea\x89\x48\xea\x89\x49\xe9\x89\x49\xea\x89\ \x48\xe9\x89\x49\xea\x88\x4a\xea\x89\x49\xe9\x88\x4a\xe9\x88\x49\ \xe9\x88\x48\xea\x89\x4a\xea\x88\x4b\xe9\x8a\x4b\xea\x8d\x51\xea\ \x8d\x51\xe8\x8b\x4e\xe9\x8f\x54\xea\x90\x57\xea\x8e\x52\xe9\x8b\ \x4d\xe8\x88\x4b\xea\x88\x4a\xea\x89\x4b\xe9\x89\x49\xe9\x89\x4a\ \xe9\x89\x4d\xe9\x8a\x4b\xe9\x88\x4b\xe8\x89\x4c\xe7\x8e\x54\xe6\ \x90\x59\xe8\x91\x58\xe9\x8f\x54\xea\x94\x5c\xea\xad\x86\xe7\xb1\ \x90\xe5\xa4\x7e\xe6\x92\x5e\xe3\x90\x61\xe1\x90\x65\xdf\x97\x6d\ \xe0\x99\x74\xde\xa7\x8b\xe0\xaf\x99\xe1\xb7\xa2\xe0\xbf\xab\xdf\ \xc7\xb3\xe0\xcd\xbb\xe2\xd2\xc3\xe1\xca\xb6\xe1\xcd\xbc\xe3\xd7\ \xce\xe4\xd8\xcd\xe0\xd2\xc7\xe6\xdd\xd5\xed\xe3\xe0\xea\xe4\xe0\ \xec\xe6\xe3\xf0\xec\xea\xf4\xef\xef\xf4\xf2\xf2\xf7\xf5\xf5\xf8\ \xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\ \xf5\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf3\xf3\ \xf5\xee\xef\xf4\xef\xee\xf4\xef\xed\xf3\xee\xeb\xf0\xeb\xe7\xf1\ \xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xed\xe7\xe3\xee\xe5\xe1\xe7\xdd\ \xd8\xe7\xdd\xd6\xe6\xdc\xd4\xe1\xc9\xb7\xe2\xb9\x9c\xe2\xc2\xa8\ \xe0\xc7\xb1\xe1\xbd\xa3\xe0\xc4\xae\xe1\xd2\xc4\xe3\xd5\xcc\xe4\ \xd7\xce\xe1\xd3\xcd\xde\xd0\xc8\xe0\xd3\xcb\xe0\xd4\xcf\xdf\xd4\ \xce\xe3\xd9\xd5\xe0\xd1\xcc\xe0\xbd\xab\xe4\xb0\x92\xe3\xb2\x97\ \xe3\xb1\x98\xe7\xa5\x7f\xe8\xa9\x82\xe6\xa4\x7c\xe5\x9c\x6f\xe7\ \x9d\x6d\xe4\x9a\x70\xe4\x94\x63\xe2\x8b\x5a\xe2\x83\x48\xe4\x81\ \x40\xe6\x7f\x3e\xe4\x80\x3e\xe5\x80\x3e\xe5\x7f\x3f\xe4\x7f\x40\ \xe5\x7e\x3e\xe5\x7f\x3f\xe5\x7f\x3e\xe7\x7f\x3e\xe5\x7f\x3f\xe7\ \x7f\x3e\xe5\x7f\x3d\xe6\x7f\x3e\xe6\x7e\x3d\xe5\x7e\x3d\xe6\x7e\ \x3c\xe5\x7e\x3c\xe5\x7e\x3b\xe5\x7e\x3b\xe6\x7d\x3b\xe6\x7d\x3b\ \xe8\x7d\x3a\xe7\x7d\x3a\xe7\x7d\x3a\xe7\x7d\x3a\xe6\x7d\x3a\xe7\ \x7d\x39\xe7\x7c\x3a\xe7\x7d\x3c\xe8\x7e\x3c\xe2\x7c\x3f\x9d\x61\ \x3e\x79\x49\x2a\xa8\x66\x36\x7d\x53\x36\x90\x54\x2c\xbf\x73\x44\ \x75\x5f\x4c\x4c\x50\x46\x00\x00\x00\xea\x8a\x48\xe9\x89\x49\xea\ \x8a\x4a\xea\x8a\x49\xea\x89\x49\xe9\x88\x4b\xe9\x89\x49\xea\x88\ \x49\xe8\x89\x4a\xe9\x89\x49\xe9\x89\x4a\xe8\x87\x4b\xe8\x89\x47\ \xe9\x88\x49\xe9\x88\x49\xea\x89\x48\xe9\x88\x48\xe8\x87\x49\xe9\ \x88\x4a\xe9\x88\x4b\xe8\x8f\x54\xeb\x9a\x62\xec\x9b\x67\xe8\x90\ \x58\xe9\x97\x63\xe7\x97\x65\xe7\x92\x5d\xe8\x8e\x54\xe8\x8e\x54\ \xe8\x8a\x4b\xe9\x89\x4b\xea\x88\x4a\xe9\x89\x4b\xe8\x89\x4c\xe9\ \x88\x4c\xe7\x89\x4c\xe6\x89\x4e\xe6\x8d\x57\xe6\x8e\x57\xe8\x9b\ \x6d\xeb\xa0\x6b\xeb\xaf\x87\xe6\xbc\xa0\xe5\xb0\x92\xe5\x9e\x72\ \xe5\x8c\x56\xe5\x89\x50\xe4\x87\x4c\xe4\x89\x4f\xe4\x8a\x52\xe2\ \x8d\x5b\xe2\x9b\x72\xe0\xa4\x83\xe2\xb6\x9e\xdf\xc4\xb1\xe0\xca\ \xb9\xe1\xd1\xc7\xe5\xda\xcc\xe8\xdd\xcf\xe6\xdb\xd0\xe6\xdc\xd2\ \xe3\xd5\xca\xe7\xde\xd4\xed\xe6\xe2\xee\xe7\xe4\xee\xe7\xe6\xf2\ \xed\xeb\xf4\xef\xee\xf4\xf2\xf2\xf7\xf5\xf5\xf8\xf6\xf6\xf8\xf7\ \xf7\xf9\xf8\xf8\xf9\xf7\xf7\xf7\xf5\xf5\xf7\xf5\xf5\xf7\xf5\xf5\ \xf6\xf4\xf4\xf8\xf6\xf6\xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf2\xf2\xf5\ \xf0\xee\xf4\xef\xec\xf3\xee\xeb\xf1\xec\xe9\xf1\xeb\xea\xf1\xea\ \xe7\xf0\xe9\xe6\xef\xe8\xe5\xee\xe7\xe2\xeb\xe1\xdd\xe7\xde\xd5\ \xe7\xde\xd7\xe5\xd9\xcf\xe1\xd0\xbe\xe0\xd1\xc1\xdf\xce\xbe\xdf\ \xca\xb6\xdf\xcb\xb9\xe1\xd2\xc7\xe2\xd5\xcd\xe1\xd4\xcb\xe0\xd1\ \xc8\xdd\xcc\xc2\xdb\xc4\xbc\xd9\xb4\xaa\xdd\xb3\xa2\xdc\xc6\xbe\ \xdc\xbc\xb1\xe1\xb6\xa0\xe2\xb1\x98\xe3\xae\x91\xe4\xb2\x97\xe6\ \xb3\x93\xe5\xb3\x96\xe4\xac\x8d\xe8\xa4\x7b\xe8\xa4\x7a\xe2\x96\ \x6b\xe2\x8b\x5b\xe2\x82\x48\xe3\x82\x43\xe3\x82\x43\xe4\x83\x43\ \xe3\x7f\x3d\xe4\x7e\x3b\xe6\x7f\x3e\xe5\x7e\x3f\xe6\x7f\x3e\xe7\ \x7f\x3f\xe4\x7f\x3d\xe5\x7f\x3e\xe5\x7e\x3f\xe5\x7e\x3e\xe4\x7f\ \x3e\xe5\x7e\x3e\xe6\x7e\x3e\xe6\x7f\x3c\xe5\x7f\x3d\xe5\x7e\x3b\ \xe5\x7e\x3d\xe6\x7d\x3b\xe6\x7d\x3c\xe7\x7d\x3b\xe8\x7d\x3a\xe6\ \x7c\x3a\xe8\x7c\x3b\xe7\x7d\x39\xe7\x7c\x3a\xe8\x7b\x3b\xe8\x7b\ \x3a\xe8\x7d\x39\xe2\x7a\x3b\xcf\x6f\x37\xbc\x6a\x39\xd1\x74\x38\ \xb6\x69\x3c\xa6\x68\x40\xa9\x61\x32\xc1\x77\x4c\x96\x68\x4d\x70\ \x55\x40\x00\x00\x00\xea\x89\x49\xea\x88\x49\xe9\x89\x47\xea\x88\ \x49\xe9\x89\x49\xea\x8a\x4a\xe8\x88\x4b\xe9\x89\x4a\xe9\x87\x49\ \xe9\x89\x49\xe8\x89\x4a\xe8\x89\x48\xe9\x88\x48\xe9\x89\x48\xe9\ \x87\x48\xe8\x88\x48\xe9\x88\x47\xea\x88\x49\xe9\x88\x47\xe8\x87\ \x4b\xe5\x8d\x55\xe5\x98\x6b\xea\x9c\x6c\xea\x93\x5d\xe5\x92\x5f\ \xe6\x93\x5d\xe6\x90\x5a\xe7\x93\x5c\xe7\x92\x5c\xe9\x94\x5b\xe7\ \x8b\x4f\xe7\x89\x4b\xe7\x89\x4c\xe8\x88\x4d\xe7\x88\x4a\xe9\x88\ \x4a\xe6\x88\x4a\xe4\x88\x4e\xe5\x8b\x53\xe9\xa2\x76\xe9\xb2\x90\ \xe5\xbb\xa3\xe5\xba\xa5\xe7\xb1\x91\xe8\xa1\x74\xe6\x8f\x57\xe5\ \x87\x4c\xe5\x88\x4d\xe6\x8b\x52\xe5\x88\x4f\xe6\x89\x4e\xe4\x93\ \x5f\xe6\xa3\x77\xe3\xb2\x97\xe0\xbf\xac\xdf\xcc\xbc\xe4\xd7\xcb\ \xe9\xde\xd4\xed\xe6\xde\xeb\xe1\xd9\xe7\xdc\xd4\xe9\xde\xd4\xeb\ \xe3\xdb\xee\xe7\xe4\xef\xea\xe7\xf0\xea\xe6\xf3\xee\xec\xf4\xee\ \xee\xf3\xf1\xf1\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf6\xf6\xf7\xf7\xf7\ \xf8\xf7\xf7\xf9\xf7\xf7\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\xf5\xf8\ \xf6\xf6\xf8\xf7\xf7\xf8\xf6\xf6\xf6\xf4\xf4\xf6\xf3\xf4\xf5\xf0\ \xf0\xf3\xee\xeb\xf3\xee\xea\xef\xea\xe8\xef\xea\xe7\xf0\xeb\xe8\ \xf0\xeb\xe8\xf1\xea\xe6\xeb\xe4\xe1\xe8\xdd\xd8\xe6\xdd\xd5\xe4\ \xd7\xd1\xe0\xd2\xca\xe0\xd3\xc7\xdf\xcf\xbf\xde\xcc\xbb\xe0\xcd\ \xbd\xe1\xd3\xc5\xe5\xd9\xcf\xe1\xd4\xc9\xe1\xd3\xc9\xda\xb9\xac\ \xd8\x98\x7c\xdc\x90\x68\xe0\x9e\x79\xde\xb3\x9e\xe1\xb0\x96\xe2\ \xb3\x98\xe2\xab\x8d\xe4\xb3\x94\xe5\xb8\x9e\xe4\xbb\xa2\xe1\xb2\ \x98\xdf\xa3\x82\xe2\xa5\x83\xe0\x9e\x79\xe0\x8c\x5c\xe1\x81\x44\ \xe3\x83\x43\xe7\x8c\x50\xe6\x8e\x54\xe2\x85\x4b\xe4\x81\x41\xe5\ \x7e\x3d\xe5\x7d\x3e\xe5\x7e\x3d\xe6\x7e\x3d\xe5\x7f\x3c\xe6\x7e\ \x3e\xe4\x7f\x3d\xe5\x7e\x3d\xe6\x7e\x3e\xe6\x7e\x3e\xe6\x7e\x3d\ \xe6\x7d\x3c\xe6\x7e\x3b\xe6\x7d\x3d\xe7\x7e\x3a\xe6\x7c\x3c\xe6\ \x7c\x3b\xe8\x7d\x3c\xe7\x7d\x3b\xe6\x7c\x3b\xe5\x7b\x3c\xe7\x7c\ \x39\xe6\x7b\x39\xe7\x7b\x39\xe7\x7c\x39\xe6\x7b\x3a\xe6\x7d\x3a\ \xe7\x7c\x3a\xe5\x7d\x3a\xe2\x7c\x3d\xc7\x6f\x3c\xe4\x7e\x3f\xd1\ \x7c\x48\x6c\x54\x41\x46\x48\x3b\xa3\x6c\x47\xc7\x7e\x4d\x00\x00\ \x00\xe9\x89\x48\xea\x89\x49\xe8\x88\x4d\xe8\x88\x4b\xea\x89\x49\ \xe9\x88\x4b\xe9\x88\x49\xea\x89\x49\xe8\x87\x49\xe9\x89\x47\xe9\ \x88\x48\xe7\x88\x48\xe8\x89\x49\xe7\x88\x4b\xe7\x89\x47\xe9\x88\ \x48\xea\x87\x48\xe8\x86\x47\xe8\x88\x49\xe7\x87\x4b\xe6\x88\x4d\ \xe5\x91\x5e\xe9\xa5\x7c\xe7\x97\x64\xe6\x8b\x50\xe5\x8d\x58\xe7\ \x96\x63\xe6\x93\x5f\xe7\x93\x5d\xea\x9a\x67\xe8\x8f\x55\xe6\x8a\ \x4e\xe5\x89\x4c\xe8\x88\x49\xe7\x87\x4b\xe6\x88\x48\xe5\x88\x4c\ \xe6\x8a\x4d\xe7\x93\x5c\xe6\xa7\x84\xe4\xb5\x9e\xe3\xb0\x96\xe6\ \xb0\x95\xe6\xad\x8d\xe3\x97\x6b\xe6\x8c\x54\xe6\x8b\x4f\xe6\x89\ \x4e\xe5\x8a\x51\xe6\x8c\x53\xe6\x8b\x53\xe6\x93\x5f\xe4\xab\x87\ \xe5\xb1\x91\xe0\xbe\xa6\xde\xc6\xb6\xe2\xd6\xce\xe9\xe3\xde\xee\ \xea\xe6\xef\xe9\xe4\xee\xe7\xe0\xec\xe6\xe1\xed\xe6\xe3\xf0\xeb\ \xe8\xf1\xec\xe9\xf0\xeb\xe9\xf2\xed\xec\xf3\xee\xee\xf5\xef\xf0\ \xf4\xf2\xf2\xf3\xf2\xf1\xf6\xf4\xf4\xf8\xf5\xf5\xf6\xf4\xf4\xf6\ \xf4\xf4\xf6\xf4\xf4\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\xf5\xf7\xf7\ \xf7\xf8\xf6\xf6\xf8\xf6\xf6\xf6\xf4\xf4\xf4\xef\xf0\xf1\xec\xec\ \xef\xea\xe9\xee\xe9\xe5\xef\xe8\xe6\xee\xe9\xe8\xef\xea\xe9\xef\ \xea\xe9\xeb\xe3\xe2\xe3\xd9\xd1\xe4\xd8\xd1\xe3\xd6\xcf\xe1\xd3\ \xc7\xde\xcf\xbf\xde\xcd\xbd\xde\xcb\xbc\xe2\xd6\xc9\xe6\xda\xd0\ \xe6\xdc\xd5\xe3\xd7\xcd\xde\xcd\xc5\xda\xa7\x93\xdf\x8b\x5b\xe4\ \x8a\x52\xe4\x93\x5f\xe3\xa4\x81\xe3\xb1\x96\xe3\xaf\x95\xe4\xb0\ \x93\xe3\xb6\x9b\xe2\xbc\xa3\xe3\xc0\xab\xe1\xb3\x99\xe1\x95\x68\ \xe1\x93\x63\xe3\x98\x6b\xe2\x88\x51\xe2\x81\x46\xe3\x83\x46\xe4\ \x95\x64\xe2\x92\x67\xe4\x8b\x51\xe2\x85\x49\xe4\x81\x41\xe4\x80\ \x40\xe6\x7f\x3e\xe6\x7e\x3d\xe6\x7e\x3d\xe5\x7f\x3e\xe5\x7e\x3f\ \xe4\x7e\x3f\xe6\x7f\x3e\xe5\x7e\x3d\xe6\x7d\x3c\xe6\x7d\x3d\xe5\ \x7e\x3d\xe7\x7c\x3c\xe6\x7c\x3c\xe6\x7d\x3b\xe6\x7c\x3b\xe5\x7c\ \x3c\xe5\x7c\x3b\xe7\x7c\x3a\xe8\x7b\x38\xe6\x7b\x39\xe7\x7a\x39\ \xe7\x7b\x37\xe7\x7a\x37\xe7\x7c\x37\xe5\x7b\x3b\xe7\x7b\x39\xe6\ \x7c\x3b\xe7\x7d\x3c\xe9\x80\x40\xe8\x81\x44\xe4\x82\x48\xd0\x7c\ \x49\x9c\x74\x59\x5e\x54\x4b\x92\x65\x4e\x00\x00\x00\xe8\x89\x49\ \xe8\x89\x4a\xe9\x89\x49\xe9\x89\x47\xe9\x88\x49\xe9\x88\x49\xe8\ \x87\x49\xe9\x88\x49\xe8\x88\x4b\xe8\x87\x49\xe8\x88\x49\xe9\x88\ \x48\xe8\x88\x48\xe7\x89\x4a\xe9\x88\x48\xe7\x87\x49\xe8\x88\x48\ \xe8\x88\x48\xe9\x86\x4a\xe8\x88\x48\xe8\x89\x4a\xe6\x8b\x52\xe3\ \x93\x68\xe6\x8f\x59\xe7\x8b\x4e\xe6\x8d\x56\xe5\x93\x61\xe7\x94\ \x5e\xe6\x93\x60\xe4\x9a\x6e\xe8\x9b\x67\xe7\x90\x57\xe7\x8c\x52\ \xe7\x87\x4d\xe8\x88\x49\xe6\x87\x49\xe6\x88\x4c\xe7\x90\x55\xe7\ \x97\x63\xe4\x9d\x75\xe2\xa3\x7f\xe4\xa4\x81\xe6\xb0\x92\xe7\xab\ \x88\xe5\x94\x60\xe5\x89\x4f\xe5\x8c\x54\xe6\x8d\x54\xe6\x8d\x52\ \xe5\x8b\x54\xe6\x90\x5a\xe8\x9c\x6c\xe5\xab\x87\xe4\xb3\x96\xe1\ \xbe\xa9\xe0\xc7\xb4\xe1\xd4\xc9\xe6\xdd\xd9\xec\xe6\xe5\xef\xea\ \xe7\xf0\xea\xe8\xf1\xeb\xe8\xf0\xe9\xe6\xf1\xec\xe9\xf3\xee\xec\ \xf2\xed\xea\xf3\xed\xed\xf4\xef\xef\xf5\xee\xef\xf4\xf0\xf1\xf3\ \xf2\xf2\xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\ \xf2\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\xf4\xf8\xf7\xf7\xf7\xf8\xf8\ \xf8\xf6\xf6\xf6\xf3\xf4\xf3\xee\xef\xf0\xea\xea\xee\xe6\xe3\xeb\ \xe4\xe1\xeb\xe4\xe2\xea\xe2\xe0\xe8\xe0\xde\xe9\xe3\xe1\xe8\xe1\ \xdd\xe7\xde\xd5\xe6\xdb\xd3\xe6\xd9\xd2\xe6\xd9\xd0\xe4\xd6\xc6\ \xe3\xd4\xc4\xe2\xd2\xc2\xe5\xda\xce\xe9\xe1\xd9\xe7\xdd\xd9\xdf\ \xd2\xcc\xdc\xbd\xb2\xde\x95\x6f\xe1\x87\x51\xe1\x8b\x54\xe3\x92\ \x60\xe3\xa1\x78\xe1\xa9\x88\xe3\xb3\x96\xe2\xbf\xa4\xe3\xc4\xaa\ \xe3\xcb\xb6\xe0\xc9\xb7\xe2\xb9\xa2\xe6\xa5\x80\xe6\x9e\x70\xe3\ \x9f\x76\xe3\x94\x63\xe6\x8e\x57\xe6\x8e\x55\xe5\x97\x67\xe9\x9c\ \x6b\xe6\x9b\x6c\xe3\x8b\x55\xe3\x86\x4b\xe2\x85\x4a\xe4\x7f\x3f\ \xe5\x7e\x3d\xe6\x7e\x3d\xe4\x7e\x3e\xe6\x7f\x3e\xe6\x7e\x3f\xe4\ \x7f\x3d\xe8\x7e\x3d\xe7\x7e\x3e\xe6\x7d\x3d\xe5\x7d\x3e\xe5\x7c\ \x3c\xe7\x7c\x3c\xe5\x7c\x3b\xe6\x7c\x3b\xe5\x7c\x3b\xe5\x7c\x3b\ \xe5\x7c\x3c\xe5\x7a\x3b\xe7\x7b\x3a\xe6\x7a\x39\xe6\x7b\x3a\xe6\ \x7a\x39\xe6\x7b\x39\xe5\x7b\x3a\xe6\x7c\x39\xe7\x7c\x39\xe7\x7d\ \x3a\xe6\x7e\x3e\xe4\x7e\x42\xd9\x7c\x45\xc8\x7b\x4e\xa6\x6d\x4f\ \x4f\x47\x3d\x8d\x5d\x3b\x00\x00\x00\xe8\x88\x49\xe9\x88\x4b\xe8\ \x88\x47\xea\x88\x49\xe9\x88\x48\xe8\x88\x49\xe9\x89\x49\xe9\x87\ \x49\xe8\x87\x48\xe8\x88\x49\xe8\x88\x49\xe9\x88\x4a\xe7\x88\x48\ \xe7\x88\x49\xe9\x88\x48\xe9\x87\x4b\xe8\x88\x49\xe8\x87\x47\xe8\ \x86\x48\xe8\x88\x49\xe6\x8c\x54\xe7\x8f\x57\xe7\x8b\x53\xe6\x8d\ \x56\xe7\x8e\x55\xe5\x8c\x57\xe5\x8f\x5c\xe5\x95\x62\xe6\x90\x58\ \xe4\x98\x68\xe8\xa1\x76\xe9\x9b\x6a\xe8\x93\x5d\xe5\x8a\x50\xe6\ \x87\x4a\xe5\x85\x4a\xe5\x88\x4e\xe5\x8d\x57\xe6\x99\x69\xe8\xa2\ \x77\xe4\x9d\x6f\xe4\x9f\x76\xe4\xa6\x83\xe5\xab\x8a\xe6\x9b\x6a\ \xe6\x8e\x58\xe7\x8d\x53\xe5\x8c\x53\xe6\x8f\x59\xe6\x8c\x53\xe4\ \x8d\x54\xe5\xa7\x81\xe5\xb6\x97\xe3\xbc\xa1\xe1\xc7\xb1\xe3\xd2\ \xc1\xe3\xd7\xcc\xe1\xd4\xcc\xe7\xdf\xdb\xea\xe4\xe3\xec\xe7\xe7\ \xef\xe9\xea\xf3\xee\xed\xf4\xef\xed\xf3\xee\xed\xf3\xee\xed\xf4\ \xee\xee\xf4\xee\xf0\xf5\xee\xef\xf4\xf0\xf1\xf3\xf1\xf1\xf4\xf1\ \xf2\xf4\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\ \xf3\xf1\xf1\xf4\xf2\xf2\xf8\xf5\xf5\xf8\xf7\xf7\xf7\xf6\xf6\xf6\ \xf3\xf3\xf4\xee\xef\xef\xe9\xe7\xeb\xe4\xe1\xe9\xe2\xdf\xe9\xe2\ \xdf\xe7\xdf\xdc\xe6\xdd\xd7\xe8\xe0\xda\xea\xe1\xdd\xea\xe3\xde\ \xeb\xe4\xdd\xe9\xe0\xd9\xe8\xdd\xd4\xe9\xdf\xd5\xe9\xdf\xd6\xe8\ \xdf\xd4\xe8\xe0\xd7\xea\xe2\xdc\xe6\xdd\xd8\xdd\xc8\xbd\xdf\xad\ \x96\xe1\x96\x6b\xe4\x8f\x59\xe6\x95\x5f\xe7\xa2\x72\xe6\xab\x84\ \xe5\xb8\x96\xe3\xc5\xab\xe1\xcf\xbd\xe3\xd3\xc3\xe3\xd7\xc9\xe0\ \xcc\xc0\xe1\xbb\xa6\xe2\xaf\x93\xe4\xad\x8d\xe1\xa3\x82\xde\x93\ \x66\xe3\x99\x6a\xe6\x9e\x70\xe6\xa3\x79\xe9\xab\x87\xe6\xae\x8e\ \xe3\x96\x6a\xe2\x84\x4b\xe1\x80\x46\xe3\x7c\x3d\xe6\x7e\x3d\xe4\ \x7e\x3e\xe4\x7d\x3d\xe5\x7e\x3e\xe6\x7e\x3e\xe5\x7e\x3c\xe6\x7d\ \x3e\xe5\x7e\x3e\xe5\x7e\x3d\xe6\x7d\x3d\xe6\x7c\x3c\xe5\x7c\x3b\ \xe5\x7c\x3d\xe6\x7b\x3b\xe4\x7b\x3b\xe5\x7b\x3b\xe6\x7c\x3a\xe6\ \x7b\x3a\xe6\x7a\x39\xe6\x7a\x39\xe4\x7a\x3a\xe5\x7a\x3a\xe6\x7a\ \x39\xe6\x7b\x38\xe7\x7b\x39\xe7\x7c\x3a\xe7\x7c\x3b\xe5\x7c\x3e\ \xe6\x7e\x3f\xea\x81\x42\xda\x7c\x45\x97\x63\x46\x74\x56\x3e\xaa\ \x71\x4a\x00\x00\x00\xe7\x88\x49\xe8\x88\x4b\xe9\x87\x49\xe7\x88\ \x4a\xe9\x88\x48\xe8\x88\x49\xe7\x88\x48\xe8\x88\x4a\xe7\x87\x48\ \xe7\x88\x4a\xe8\x88\x49\xe9\x87\x49\xe6\x88\x4a\xe8\x88\x48\xe6\ \x87\x49\xe8\x87\x4b\xe8\x88\x48\xe7\x87\x48\xe7\x87\x4a\xe9\x88\ \x4a\xe6\x8a\x53\xe7\x8c\x53\xe7\x8b\x51\xe6\x8c\x54\xe7\x93\x5e\ \xe6\x8c\x54\xe6\x8e\x5b\xe5\x99\x6b\xe9\x9c\x67\xe4\x9b\x6c\xe4\ \x9f\x77\xe7\x9d\x71\xe6\x98\x67\xe6\x89\x51\xe5\x87\x49\xe5\x85\ \x4a\xe4\x87\x4c\xe5\x8c\x52\xe6\x9c\x6e\xe7\xaa\x87\xe5\x9f\x72\ \xe7\xa2\x77\xe6\xa7\x80\xe6\xa7\x82\xe5\x9e\x71\xe6\x91\x5c\xe5\ \x91\x5d\xe8\x94\x5c\xe8\x9a\x66\xeb\x9e\x6a\xeb\xa1\x6e\xe6\xab\ \x86\xe2\xb9\xa1\xdf\xbc\xab\xde\xc9\xbc\xe4\xda\xd0\xe8\xdd\xd4\ \xe7\xdc\xd0\xe6\xdc\xd5\xe8\xe0\xdc\xe9\xe1\xde\xeb\xe5\xe4\xf1\ \xeb\xed\xf3\xee\xee\xf4\xee\xef\xf4\xee\xef\xf4\xee\xef\xf5\xef\ \xf0\xf5\xef\xf0\xf4\xef\xf0\xf4\xf0\xf1\xf4\xf0\xf1\xf4\xf2\xf2\ \xf4\xf2\xf2\xf3\xf1\xf1\xf5\xf3\xf3\xf4\xf2\xf2\xf5\xf3\xf3\xf5\ \xf3\xf3\xf6\xf4\xf4\xf7\xf5\xf5\xf7\xf5\xf5\xf5\xf3\xf3\xf4\xee\ \xef\xf1\xeb\xe8\xec\xe5\xe2\xe7\xdf\xdb\xe3\xda\xd6\xe5\xda\xd6\ \xe3\xd8\xd5\xe4\xdb\xd8\xe5\xdc\xda\xe7\xe0\xdc\xea\xe3\xe0\xea\ \xe4\xe0\xe9\xe2\xda\xeb\xe2\xdc\xeb\xe2\xde\xeb\xe3\xde\xea\xe1\ \xdc\xe9\xe0\xdc\xe5\xdb\xd6\xde\xc9\xbb\xe1\xab\x8d\xe2\x93\x64\ \xe4\x96\x67\xe6\xa1\x76\xe5\xb2\x91\xe2\xba\xa3\xe0\xc4\xaf\xe0\ \xcd\xc0\xe3\xd5\xcb\xe6\xda\xd0\xe3\xd7\xce\xe0\xcf\xc2\xe0\xc5\ \xb2\xe0\xb3\x99\xe0\xa5\x83\xdd\x9e\x79\xe1\x8b\x55\xe4\x94\x5f\ \xe7\xab\x85\xe6\xaf\x90\xe5\xaf\x93\xe1\xac\x93\xdf\x99\x74\xdf\ \x84\x51\xe2\x7e\x3f\xe3\x7d\x3a\xe4\x7d\x3c\xe5\x7e\x3d\xe5\x7d\ \x3d\xe4\x7d\x3f\xe5\x7e\x3e\xe5\x7e\x3d\xe5\x7e\x3e\xe5\x7d\x3d\ \xe5\x7c\x3c\xe6\x7c\x3c\xe6\x7c\x3b\xe5\x7d\x3c\xe6\x7c\x3a\xe5\ \x7b\x3a\xe6\x7b\x3a\xe6\x7b\x39\xe5\x7c\x38\xe5\x7a\x39\xe6\x7b\ \x39\xe4\x7a\x39\xe5\x7a\x38\xe5\x79\x3a\xe7\x7b\x39\xe6\x7a\x39\ \xe8\x7a\x38\xe8\x7b\x38\xe8\x7b\x3a\xdb\x79\x41\xda\x7b\x40\xdd\ \x7d\x43\xe4\x7f\x44\xba\x70\x47\xa6\x67\x40\xbe\x78\x4b\x00\x00\ \x00\xe7\x88\x49\xe8\x88\x48\xe8\x87\x4b\xe8\x88\x48\xe8\x87\x48\ \xe8\x87\x48\xe8\x87\x48\xe7\x88\x4a\xe7\x88\x48\xe8\x88\x47\xe8\ \x87\x49\xe6\x87\x4b\xe8\x87\x48\xe8\x88\x48\xe7\x87\x48\xe7\x88\ \x48\xe7\x87\x49\xe6\x87\x4a\xe6\x87\x4a\xe7\x88\x4a\xe6\x87\x4c\ \xe5\x88\x4f\xe6\x8a\x4e\xe5\x8b\x52\xe6\x93\x63\xe4\x8d\x56\xe4\ \x89\x54\xe2\x8f\x5f\xe2\x95\x6c\xe3\x93\x63\xe6\x9b\x6f\xe6\xa1\ \x76\xe5\x96\x66\xe4\x8a\x4e\xe5\x88\x4b\xe6\x8c\x52\xe6\x8b\x50\ \xe8\x96\x61\xe8\xa6\x7d\xe6\xa8\x85\xe5\x9e\x73\xe4\x9f\x74\xe3\ \xa2\x7a\xe5\xa9\x86\xe5\x9d\x6e\xe5\x97\x67\xe4\x91\x5c\xe7\xa9\ \x83\xe8\xaf\x8c\xe6\xb6\x96\xe5\xbb\x9d\xe6\xb6\x96\xe4\xb7\x9b\ \xe3\xb4\x99\xe0\xbd\xa9\xe1\xd5\xcd\xe6\xdd\xd8\xe8\xe2\xdc\xe7\ \xdf\xd8\xe6\xdb\xd6\xe5\xdc\xd8\xe9\xe2\xdf\xef\xea\xe9\xf3\xed\ \xee\xf4\xee\xef\xf4\xee\xef\xf4\xee\xef\xf3\xed\xee\xf4\xee\xef\ \xf5\xf0\xf1\xf5\xef\xf0\xf4\xef\xf0\xf5\xf0\xf1\xf3\xf1\xf1\xf5\ \xf3\xf3\xf5\xf3\xf3\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf5\ \xf5\xf5\xf4\xf4\xf6\xf3\xf3\xf6\xf1\xf2\xf4\xef\xed\xf0\xeb\xeb\ \xee\xe6\xe3\xe4\xda\xd7\xde\xd1\xcb\xde\xd1\xca\xdd\xce\xc3\xdc\ \xc5\xbb\xdb\xc4\xbb\xe2\xd8\xd3\xe6\xde\xdb\xe7\xe0\xdd\xe9\xe2\ \xdf\xea\xe1\xdd\xeb\xe2\xde\xea\xe3\xe0\xe9\xe1\xdd\xe8\xde\xda\ \xe6\xd9\xd3\xde\xcb\xbe\xe1\xb5\x9a\xe3\x9f\x75\xe3\x98\x68\xe4\ \xa7\x83\xe2\xbb\xa2\xe0\xbf\xa9\xe1\xc5\xaf\xdf\xcd\xbf\xe1\xd3\ \xcb\xe2\xd5\xcd\xe2\xd5\xcd\xe2\xd3\xc8\xdf\xce\xbd\xe0\xbc\xa8\ \xe1\xa4\x80\xe4\xa2\x77\xe5\xa2\x76\xe5\xa5\x7c\xe5\xb1\x97\xe2\ \xad\x94\xe4\xb3\x97\xe0\xa5\x86\xde\x8b\x5c\xe1\x7f\x3f\xe2\x80\ \x3f\xe2\x7e\x3f\xe4\x7c\x3b\xe5\x7d\x3c\xe5\x7d\x3c\xe4\x7d\x3e\ \xe5\x7d\x3e\xe5\x7d\x3e\xe5\x7d\x3d\xe5\x7c\x3c\xe5\x7c\x3b\xe6\ \x7c\x3b\xe6\x7c\x3b\xe4\x7b\x3b\xe6\x7c\x39\xe6\x7b\x38\xe6\x7c\ \x3b\xe6\x7b\x39\xe5\x7b\x3a\xe6\x79\x38\xe6\x7b\x38\xe4\x79\x39\ \xe7\x7a\x36\xe5\x7a\x38\xe6\x7b\x37\xe7\x7a\x38\xe8\x7a\x39\xe6\ \x7a\x39\xe7\x7c\x39\xe1\x7b\x40\xd2\x75\x40\xba\x6d\x40\xd2\x79\ \x44\xc7\x74\x47\xa8\x67\x41\xc5\x76\x4d\x00\x00\x00\xe8\x87\x4a\ \xe7\x85\x4c\xe8\x88\x47\xe7\x88\x47\xe7\x88\x47\xe8\x87\x49\xe7\ \x87\x4a\xe9\x88\x47\xe6\x87\x4b\xe8\x87\x4a\xe6\x87\x4a\xe8\x88\ \x48\xe9\x88\x49\xe7\x87\x47\xe8\x87\x48\xe6\x87\x48\xe6\x88\x4a\ \xe8\x88\x4a\xe7\x87\x49\xe7\x88\x4a\xe7\x87\x4a\xe7\x86\x4b\xe7\ \x86\x4a\xe6\x86\x4c\xe3\x87\x51\xe5\x88\x4d\xe5\x87\x4a\xe4\x88\ \x4d\xe5\x8a\x54\xe4\x92\x5e\xe7\xa0\x77\xe7\xa0\x74\xe9\x9c\x6c\ \xe9\x9b\x64\xe8\x93\x60\xe5\x93\x61\xe6\x98\x65\xe6\xa3\x78\xe6\ \xaa\x87\xe7\xab\x84\xe5\xa0\x75\xe5\xa1\x75\xe8\xa9\x81\xe3\xa1\ \x7b\xe3\x9a\x6f\xe2\x8d\x5a\xe1\x91\x5f\xe2\xa5\x85\xe4\xb4\x9b\ \xe3\xba\xa1\xe2\xc0\xab\xe2\xc5\xaa\xe3\xc9\xb4\xe2\xc1\xa7\xe1\ \xbf\xa9\xde\xce\xc2\xe0\xd3\xcd\xe2\xd8\xd4\xe7\xde\xd9\xe6\xdc\ \xd5\xe8\xdf\xd8\xed\xe5\xe1\xee\xe9\xe7\xf2\xec\xed\xf3\xed\xee\ \xf2\xec\xed\xf4\xee\xef\xf3\xee\xed\xf2\xed\xed\xf3\xed\xee\xf4\ \xee\xef\xf4\xef\xf0\xf5\xf0\xf1\xf6\xf3\xf3\xf6\xf4\xf4\xf6\xf4\ \xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf5\xf5\xf6\xf4\xf4\ \xf4\xf2\xf2\xf3\xee\xef\xef\xe9\xea\xed\xe7\xe8\xe7\xe0\xdd\xde\ \xd0\xcb\xd9\xc2\xb7\xda\xc3\xb7\xdb\xc5\xb9\xdd\xc6\xb5\xdf\xc1\ \xac\xdc\xc9\xbe\xdb\xcc\xc5\xdd\xcf\xca\xe5\xda\xd6\xe7\xde\xda\ \xe8\xdf\xdc\xe7\xe1\xde\xea\xe2\xde\xe7\xdd\xd9\xe3\xda\xd2\xde\ \xcd\xc3\xdf\xbf\xab\xe3\xae\x8f\xe5\xa9\x84\xe3\xb4\x97\xdf\xbc\ \xa7\xdf\xc1\xaf\xdf\xc5\xb2\xdf\xcb\xb9\xe0\xd2\xc7\xdf\xd2\xc9\ \xe6\xd7\xcd\xe3\xd7\xcc\xe1\xd3\xc7\xe1\xc6\xb7\xe3\xb4\x98\xe5\ \xad\x8b\xe0\xa8\x8a\xe0\xa3\x81\xe1\xaa\x8e\xe4\xb5\x9b\xe4\xb4\ \x9f\xe1\xa9\x87\xe1\x97\x6c\xe5\x8a\x52\xe1\x83\x48\xe2\x80\x42\ \xe2\x7f\x3e\xe3\x7c\x3c\xe4\x7d\x3d\xe5\x7d\x3d\xe4\x7c\x3d\xe5\ \x7c\x3c\xe5\x7c\x3c\xe6\x7d\x3c\xe5\x7d\x3e\xe6\x7b\x3b\xe5\x7b\ \x3c\xe6\x7b\x3b\xe4\x7a\x3a\xe5\x7a\x39\xe7\x7a\x3a\xe5\x7a\x3b\ \xe3\x7b\x3a\xe8\x7a\x3a\xe5\x7b\x3b\xe4\x7b\x3a\xe6\x7a\x38\xe7\ \x7a\x38\xe6\x7b\x38\xe7\x79\x37\xe6\x7a\x38\xe6\x7b\x3a\xe5\x7c\ \x38\xe5\x7a\x3b\xe6\x7d\x3c\xdb\x79\x40\xc0\x70\x42\xc8\x76\x47\ \xa1\x65\x46\xbc\x74\x48\x00\x00\x00\xe7\x87\x49\xe6\x87\x49\xe8\ \x88\x48\xe9\x88\x48\xe8\x87\x48\xe8\x87\x49\xe8\x87\x46\xe6\x87\ \x47\xe7\x88\x48\xe8\x87\x48\xe8\x87\x48\xe8\x88\x47\xe8\x87\x48\ \xe6\x86\x48\xe8\x87\x48\xe7\x87\x4c\xe6\x87\x49\xe6\x87\x4a\xe7\ \x88\x49\xe7\x86\x4b\xe7\x87\x4a\xe6\x87\x4a\xe7\x87\x4a\xe7\x87\ \x4b\xe5\x86\x4b\xe5\x87\x4b\xe6\x88\x4b\xe6\x86\x48\xe5\x86\x4a\ \xe3\x89\x51\xe0\x91\x66\xe1\x94\x6c\xe0\x94\x69\xe1\x91\x65\xe3\ \x8d\x58\xe3\x8d\x58\xe1\x8e\x5f\xe0\x93\x68\xe1\xa0\x7c\xe2\xa3\ \x7f\xe7\xa4\x7c\xe7\xab\x88\xe6\xae\x8e\xe5\xa1\x77\xe3\x91\x5f\ \xe3\x88\x4f\xe2\x8b\x54\xe3\xa1\x7a\xe5\xb6\x9c\xe2\xba\xa3\xe2\ \xbf\xa9\xe0\xcb\xb9\xe0\xca\xba\xe0\xc3\xb0\xe1\xc4\xae\xe1\xcf\ \xbe\xe2\xd3\xc7\xdc\xcb\xbd\xdc\xd0\xc9\xe0\xd5\xd0\xe5\xde\xd9\ \xec\xe5\xe3\xf0\xe9\xe6\xf1\xec\xeb\xf2\xed\xed\xf1\xec\xec\xf2\ \xec\xed\xf2\xec\xee\xf2\xed\xed\xf3\xed\xee\xf4\xee\xef\xf5\xf0\ \xf0\xf5\xf2\xf2\xf6\xf4\xf4\xf8\xf6\xf6\xf5\xf3\xf3\xf5\xf3\xf3\ \xf4\xf2\xf2\xf5\xf3\xf3\xf6\xf4\xf4\xf5\xf2\xf2\xf1\xed\xee\xef\ \xe8\xe9\xeb\xe4\xe4\xe5\xdd\xdb\xe2\xda\xd5\xe0\xd1\xc7\xde\xc7\ \xb4\xde\xbc\xa9\xe0\xc0\xa9\xdd\xc8\xb9\xde\xc6\xb6\xde\xbb\xaa\ \xde\xb4\x9f\xde\xc4\xb3\xdf\xd1\xc8\xe2\xd6\xd1\xe0\xd5\xd0\xe3\ \xda\xd5\xeb\xe4\xe1\xea\xe2\xde\xe0\xd5\xce\xdc\xc7\xb9\xdd\xc0\ \xb0\xe0\xb4\x9d\xe1\xb1\x98\xe0\xb5\xa1\xe0\xbd\xa6\xdf\xc6\xb3\ \xdf\xcd\xbd\xe3\xd6\xc9\xe5\xd9\xcf\xe7\xdc\xd0\xe9\xe0\xd6\xe6\ \xdc\xd3\xe5\xd8\xce\xe0\xcf\xc2\xdf\xc1\xad\xe2\xb2\x99\xe1\xa9\ \x8c\xe2\xa3\x7c\xe4\xad\x88\xe3\xbf\xa8\xe2\xbb\xa7\xe4\xb0\x91\ \xe4\xa5\x80\xe4\x9c\x70\xe2\x91\x5e\xe2\x88\x50\xe2\x83\x45\xe4\ \x81\x42\xe6\x88\x4c\xe3\x83\x47\xe4\x7c\x3b\xe6\x7c\x3b\xe5\x7d\ \x3e\xe5\x7c\x3d\xe5\x7c\x3c\xe6\x7b\x3b\xe5\x7b\x3c\xe4\x7c\x3a\ \xe4\x7a\x39\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x7a\x3a\xe5\ \x79\x3b\xe6\x7b\x37\xe6\x7b\x37\xe4\x79\x3a\xe7\x79\x38\xe7\x79\ \x38\xe5\x7a\x36\xe0\x7b\x3c\xd9\x78\x3e\xd7\x74\x39\xda\x74\x38\ \xdc\x76\x3c\xe3\x7d\x3f\xc1\x6c\x3b\xbc\x68\x37\xb4\x71\x4a\xad\ \x67\x41\x00\x00\x00\xe7\x88\x48\xe7\x88\x48\xe7\x87\x49\xe9\x88\ \x49\xe8\x87\x49\xe8\x87\x48\xe8\x87\x46\xe6\x86\x49\xe7\x88\x49\ \xe8\x87\x49\xe8\x87\x49\xe8\x87\x47\xe8\x87\x47\xe7\x87\x48\xe6\ \x87\x49\xe7\x86\x4a\xe6\x87\x4a\xe5\x87\x4a\xe7\x88\x4a\xe6\x87\ \x4a\xe6\x88\x48\xe6\x87\x49\xe7\x87\x48\xe7\x87\x47\xe6\x86\x49\ \xe7\x89\x4c\xe7\x8a\x4c\xe6\x88\x4b\xe7\x8c\x54\xe5\x8b\x51\xe3\ \x86\x4c\xe4\x85\x4a\xe4\x86\x48\xe5\x86\x4a\xe4\x8a\x50\xe4\x89\ \x50\xe5\x89\x51\xe3\x89\x53\xe2\x91\x63\xe1\x93\x64\xe0\x9d\x78\ \xe3\xa4\x83\xe4\xab\x8b\xe5\xa0\x75\xe6\x92\x5b\xe3\x8a\x51\xe4\ \x8d\x54\xe6\xa8\x80\xe3\xba\xa4\xe3\xbc\xa5\xe2\xc0\xab\xdf\xca\ \xb9\xe0\xcd\xbc\xe0\xc8\xb5\xe2\xce\xbd\xe3\xd6\xc9\xe5\xd8\xcd\ \xe5\xd8\xc9\xdf\xce\xbe\xde\xd0\xc5\xe3\xd9\xd3\xea\xe2\xdf\xee\ \xe9\xe6\xf3\xed\xec\xf2\xed\xec\xf2\xec\xec\xf3\xed\xed\xf3\xed\ \xee\xf3\xed\xed\xf2\xec\xed\xf3\xef\xef\xf5\xf1\xf2\xf6\xf3\xf4\ \xf8\xf6\xf6\xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\xf3\xf5\ \xf2\xf2\xf3\xf0\xf0\xf3\xef\xef\xf0\xea\xeb\xec\xe5\xe5\xe9\xe2\ \xde\xe4\xda\xd5\xe5\xdb\xd4\xe4\xd8\xd1\xe0\xd0\xc2\xdf\xc6\xb4\ \xe0\xc7\xb4\xdd\xc1\xb3\xdb\xb6\xa6\xde\xb9\xa5\xe0\xbf\xaa\xdf\ \xc7\xb7\xdf\xc9\xbf\xdf\xcf\xc4\xde\xcf\xc3\xe7\xdc\xd3\xec\xe5\ \xe1\xe9\xe3\xdf\xe1\xd6\xcf\xda\xc3\xb8\xd9\xa9\x95\xdf\xb1\x98\ \xe1\xb7\xa0\xe1\xba\xa2\xdf\xc0\xad\xde\xcb\xbb\xe2\xd5\xca\xe6\ \xdb\xd3\xe7\xdf\xd6\xe9\xe2\xda\xea\xe2\xde\xe8\xe0\xd9\xe7\xdd\ \xd6\xe3\xd7\xce\xe0\xcc\xbc\xe1\xc0\xa8\xe2\xb9\x9c\xe3\xba\x9e\ \xe1\xc0\xa8\xdf\xc6\xb4\xe1\xc5\xb2\xe3\xc0\xab\xe5\xb7\x9d\xe6\ \xae\x90\xe4\x9f\x74\xe4\x95\x65\xe2\x8c\x57\xe3\x8b\x56\xdf\x86\ \x54\xe1\x7c\x40\xe4\x7b\x3b\xe5\x7b\x3b\xe4\x7c\x3d\xe4\x7b\x3b\ \xe5\x7b\x3b\xe5\x7a\x3a\xe4\x7a\x3b\xe4\x7b\x39\xe6\x7a\x3a\xe5\ \x7a\x38\xe6\x7b\x3a\xe4\x7a\x3b\xe4\x7a\x3b\xe5\x7a\x3a\xe6\x7a\ \x38\xe6\x7a\x38\xe7\x7a\x37\xe7\x79\x38\xe5\x7a\x38\xe5\x7a\x36\ \xde\x79\x3e\xda\x78\x3e\xd9\x77\x3d\xda\x76\x3d\xda\x77\x3b\xd7\ \x77\x3c\xcd\x76\x41\xc2\x73\x43\xb3\x6e\x44\xb9\x6e\x44\x00\x00\ \x00\xe9\x87\x49\xe6\x88\x48\xe8\x87\x48\xe8\x87\x49\xe7\x87\x47\ \xe8\x87\x48\xe8\x87\x48\xe7\x86\x4a\xe7\x87\x48\xe8\x87\x48\xe7\ \x87\x47\xe5\x87\x49\xe5\x86\x4a\xe6\x87\x49\xe7\x88\x48\xe7\x86\ \x4b\xe6\x87\x49\xe7\x88\x49\xe6\x88\x49\xe7\x86\x49\xe6\x87\x49\ \xe6\x87\x4b\xe6\x86\x48\xe4\x87\x4a\xe6\x87\x48\xe6\x89\x4f\xe6\ \x91\x5a\xe6\x91\x5a\xe5\x8c\x57\xe5\x88\x4e\xe6\x86\x49\xe6\x86\ \x4a\xe6\x87\x48\xe5\x86\x49\xe6\x88\x49\xe5\x87\x4a\xe5\x88\x4d\ \xe5\x88\x4e\xe3\x88\x50\xe5\x8c\x56\xe2\x94\x65\xe1\x9d\x76\xe1\ \x9b\x73\xe3\x9e\x73\xe5\x99\x68\xe7\x96\x60\xea\xa5\x73\xe7\xb9\ \x9a\xe2\xb8\xa2\xe1\xb6\xa1\xe1\xb8\xa4\xe0\xc1\xaf\xde\xc6\xb9\ \xdd\xc1\xb2\xdf\xca\xbf\xe0\xd3\xcc\xe4\xd7\xcf\xe8\xdd\xd5\xe5\ \xd8\xcb\xe3\xd5\xca\xe6\xda\xd2\xe9\xe1\xdc\xed\xe8\xe5\xf0\xeb\ \xeb\xf1\xec\xea\xf1\xeb\xec\xf3\xed\xed\xf2\xec\xed\xf1\xec\xec\ \xf1\xeb\xeb\xf2\xeb\xec\xf3\xef\xf0\xf6\xf4\xf4\xf7\xf5\xf5\xf6\ \xf4\xf4\xf6\xf4\xf4\xf4\xf3\xf3\xf5\xf2\xf2\xf3\xef\xf0\xf2\xed\ \xee\xf2\xec\xed\xee\xe8\xe9\xea\xe3\xe1\xe8\xe1\xde\xe7\xde\xd7\ \xe7\xdf\xd7\xe4\xd9\xd4\xe0\xd3\xc8\xe2\xd4\xc6\xe1\xd1\xc4\xdc\ \xba\xac\xdd\x9c\x79\xdc\x9d\x7c\xdc\xa3\x87\xdd\xae\x98\xde\xbb\ \xa7\xdf\xc8\xb7\xe0\xd0\xc2\xe8\xdf\xd9\xea\xe3\xe0\xe7\xe0\xde\ \xdc\xca\xc4\xde\xb0\x9c\xe1\xab\x87\xe1\xb8\x9d\xdf\xc2\xaf\xde\ \xc6\xb4\xdd\xc7\xb5\xe0\xcf\xc0\xe3\xd8\xce\xe6\xdc\xd6\xe7\xde\ \xd9\xea\xe1\xde\xea\xe2\xde\xea\xe1\xde\xe8\xdf\xdb\xe5\xdb\xd4\ \xe4\xd6\xca\xe1\xd3\xc3\xe0\xcb\xba\xdf\xc4\xb1\xde\xc4\xb4\xde\ \xc3\xb4\xdf\xc8\xb6\xdf\xc5\xb4\xe1\xbe\xaa\xe4\xb9\xa3\xe5\xad\ \x8e\xe5\xa6\x81\xe2\x97\x6c\xe1\x8e\x5d\xe2\x83\x48\xe3\x84\x47\ \xe4\x7e\x3e\xe3\x7c\x3c\xe5\x7c\x3b\xe4\x7b\x3b\xe5\x7a\x3c\xe5\ \x7a\x3b\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x79\x39\xe4\x79\x38\xe5\x7a\ \x39\xe3\x7a\x3a\xe5\x7b\x37\xe5\x7a\x3b\xe6\x7a\x39\xe5\x7a\x39\ \xe7\x79\x37\xe6\x7a\x37\xe6\x79\x37\xe4\x7a\x38\xe4\x7a\x3a\xe5\ \x7a\x3b\xe5\x7b\x3b\xe2\x7a\x3b\xd9\x7a\x3d\xcd\x74\x42\xbe\x70\ \x43\xb7\x6f\x42\xd4\x7c\x44\xc3\x75\x46\x00\x00\x00\xe7\x86\x48\ \xe6\x87\x4a\xe7\x87\x48\xe7\x87\x49\xe7\x87\x48\xe8\x87\x48\xe7\ \x87\x48\xe6\x87\x4a\xe7\x87\x47\xe7\x87\x47\xe7\x87\x48\xe5\x86\ \x48\xe7\x86\x47\xe6\x87\x48\xe5\x88\x48\xe6\x87\x49\xe6\x87\x49\ \xe6\x87\x4a\xe6\x88\x48\xe6\x86\x4a\xe5\x87\x49\xe5\x87\x49\xe5\ \x87\x4a\xe4\x86\x4c\xe6\x87\x49\xe5\x88\x4b\xe4\x8a\x53\xe4\x8a\ \x52\xe6\x87\x4b\xe6\x87\x49\xe6\x85\x4a\xe6\x87\x4a\xe6\x86\x4a\ \xe5\x87\x4a\xe5\x88\x4d\xe6\x89\x50\xe6\x8d\x55\xe5\x8a\x50\xe4\ \x87\x4e\xe4\x8f\x5b\xe3\x92\x62\xe4\x8f\x5c\xe5\x96\x65\xe5\x9a\ \x6c\xe6\x9b\x6b\xe6\xa2\x77\xe5\xb6\x9d\xe3\xc5\xb2\xe5\xbd\xa4\ \xe3\xa8\x88\xe2\xac\x92\xe1\xb1\x9a\xdd\xae\x99\xe0\xb0\x99\xde\ \xb6\xa5\xdd\xbd\xae\xe3\xd3\xcb\xe9\xe0\xd8\xe9\xdf\xd5\xe8\xdb\ \xd1\xe7\xdb\xd5\xe8\xe1\xdd\xec\xe5\xe2\xef\xe7\xe7\xef\xea\xea\ \xf0\xea\xeb\xf0\xea\xeb\xf0\xea\xeb\xf1\xec\xea\xf0\xeb\xe9\xf1\ \xec\xea\xf2\xec\xed\xf3\xef\xf0\xf5\xf1\xf2\xf2\xee\xef\xef\xec\ \xed\xf0\xeb\xec\xf0\xeb\xec\xee\xe9\xea\xec\xe7\xe8\xec\xe6\xe7\ \xe9\xe4\xe2\xe8\xe1\xde\xe8\xe0\xdc\xe8\xdf\xda\xe9\xe0\xdc\xe6\ \xdb\xd4\xe3\xd6\xcd\xe0\xd3\xcc\xdc\xc9\xc2\xdf\xb1\x9c\xe5\xa5\ \x7b\xe3\xa0\x77\xe0\x9b\x72\xe1\xa8\x87\xe1\xb9\xa1\xdf\xc7\xb5\ \xdc\xcb\xbf\xe2\xd7\xd2\xe5\xdb\xd7\xe1\xd7\xd3\xdd\xc2\xb4\xe0\ \xbc\xa5\xe0\xc5\xae\xde\xc9\xb5\xdf\xcd\xbd\xe0\xcf\xc2\xdd\xcd\ \xbc\xe1\xd4\xca\xe4\xd9\xd0\xe5\xdb\xd6\xe7\xde\xda\xe9\xe0\xdc\ \xeb\xe1\xde\xea\xe1\xdd\xe8\xe0\xdc\xe7\xdd\xd9\xe6\xdc\xd3\xe4\ \xd7\xcf\xe1\xd3\xc6\xde\xcb\xbd\xde\xc4\xb3\xdf\xbe\xaa\xde\xc2\ \xb0\xe0\xc4\xb5\xe0\xbe\xab\xe0\xb7\xa5\xe0\xaf\x9a\xe0\xa7\x8c\ \xe2\x9e\x78\xe0\x94\x69\xe1\x87\x52\xe1\x86\x4f\xe2\x81\x46\xe4\ \x7b\x3a\xe4\x7b\x3b\xe5\x7a\x3c\xe4\x7b\x3b\xe5\x7a\x39\xe4\x79\ \x39\xe6\x7a\x3a\xe5\x7a\x38\xe5\x79\x38\xe5\x7a\x38\xe6\x7a\x3a\ \xe5\x7b\x38\xe4\x7a\x38\xe4\x7a\x37\xe5\x7a\x39\xe4\x79\x39\xe4\ \x79\x38\xe5\x79\x38\xe6\x7a\x38\xe5\x7a\x37\xe6\x7a\x39\xe7\x7b\ \x39\xe7\x7c\x39\xd8\x7e\x46\xd3\x79\x44\xc4\x71\x41\xce\x7a\x47\ \xc0\x71\x42\xd0\x7a\x46\x00\x00\x00\xe7\x87\x4a\xe6\x86\x4a\xe8\ \x87\x48\xe7\x88\x48\xe7\x87\x49\xe8\x86\x48\xe6\x87\x49\xe7\x86\ \x47\xe7\x86\x49\xe6\x86\x49\xe6\x87\x4a\xe5\x86\x49\xe6\x87\x48\ \xe4\x87\x4a\xe6\x87\x4b\xe7\x86\x4a\xe6\x87\x49\xe7\x87\x4a\xe7\ \x87\x4a\xe6\x86\x4a\xe5\x86\x49\xe6\x87\x48\xe5\x86\x4b\xe6\x87\ \x49\xe5\x86\x4c\xe6\x87\x48\xe7\x87\x4a\xe6\x86\x49\xe6\x87\x49\ \xe7\x86\x4b\xe6\x86\x49\xe6\x87\x49\xe4\x86\x4a\xe5\x87\x4c\xe3\ \x89\x50\xe6\x8e\x57\xe8\x95\x60\xe7\x8e\x53\xe6\x8b\x52\xe3\x8e\ \x58\xe4\x90\x59\xe8\x99\x66\xe4\x99\x6d\xe4\x9a\x6e\xe7\xa7\x80\ \xe7\xa6\x7d\xe1\xa1\x80\xe2\xb3\x9f\xe2\xb7\xa4\xe6\xaf\x8b\xe7\ \xab\x87\xe3\xa6\x82\xe4\xa3\x7c\xe5\xae\x8e\xe3\xb9\x9e\xe1\xc1\ \xab\xe0\xcf\xc5\xe8\xdf\xd9\xe8\xe0\xdb\xe6\xdd\xd6\xe3\xd6\xd1\ \xe6\xdc\xd8\xe7\xe0\xdd\xec\xe4\xe3\xeb\xe5\xe6\xec\xe5\xe4\xec\ \xe6\xe6\xed\xe7\xe8\xec\xe7\xe6\xed\xe7\xe8\xf0\xea\xeb\xf0\xea\ \xeb\xea\xe4\xe6\xe6\xe1\xe2\xe4\xdd\xde\xe7\xe0\xdf\xea\xe4\xe2\ \xe9\xe3\xe3\xe8\xe1\xdf\xe7\xde\xdb\xe6\xdf\xdd\xe4\xde\xdc\xe5\ \xdc\xd9\xe8\xdf\xdb\xe7\xde\xda\xe9\xe0\xdc\xe7\xdf\xd8\xe3\xd8\ \xd1\xdd\xcb\xc4\xdf\xb6\xa4\xdf\xa9\x8f\xde\xa8\x8c\xdb\x9b\x79\ \xe1\x9a\x6e\xe0\xa6\x86\xdf\xb3\x9d\xdd\xbe\xae\xdd\xc3\xb3\xdd\ \xcd\xc2\xe1\xd3\xcc\xe1\xd4\xcc\xdf\xcd\xbc\xe0\xcc\xb9\xe3\xd7\ \xc8\xe3\xd7\xc8\xe1\xd4\xca\xe0\xd2\xc7\xe0\xd2\xc6\xe1\xd5\xcb\ \xe1\xd7\xcf\xe4\xdb\xd3\xe7\xde\xd9\xea\xe1\xdd\xea\xe1\xdd\xe8\ \xdf\xdb\xe9\xe0\xdc\xe8\xdf\xdb\xe8\xde\xd7\xe4\xd7\xd1\xe1\xd4\ \xca\xdd\xce\xc1\xdd\xc9\xb8\xdf\xc4\xb3\xdf\xc3\xb3\xe0\xc4\xb3\ \xdf\xc0\xb1\xe1\xb3\x9d\xe1\xa7\x86\xdc\x94\x70\xdc\x90\x68\xdf\ \x8a\x5f\xe3\x89\x57\xe0\x85\x51\xe2\x82\x4a\xe3\x7d\x3d\xe4\x7b\ \x39\xe4\x7a\x3b\xe5\x7b\x39\xe6\x7b\x38\xe6\x7a\x39\xe4\x7b\x38\ \xe5\x7a\x39\xe5\x7b\x38\xe5\x7b\x38\xe4\x7a\x39\xe4\x7a\x38\xe4\ \x7a\x3a\xe4\x79\x38\xe4\x79\x37\xe4\x79\x39\xe5\x79\x37\xe4\x7a\ \x38\xe4\x79\x38\xe4\x79\x39\xe6\x79\x3b\xe7\x7c\x3c\xe8\x7c\x3e\ \xd5\x78\x42\xc0\x72\x47\xbb\x6f\x44\xac\x6a\x45\xa5\x6c\x4c\x94\ \x62\x4b\x00\x00\x00\xe8\x86\x4b\xe8\x86\x47\xe7\x87\x49\xe7\x86\ \x49\xe7\x87\x46\xe5\x87\x48\xe5\x86\x48\xe7\x87\x47\xe6\x87\x47\ \xe7\x87\x48\xe6\x86\x47\xe8\x86\x48\xe7\x86\x4a\xe5\x87\x49\xe6\ \x88\x48\xe5\x88\x48\xe6\x87\x48\xe5\x87\x4a\xe4\x88\x4b\xe4\x86\ \x49\xe5\x86\x49\xe6\x86\x48\xe5\x87\x4a\xe3\x87\x4b\xe5\x87\x47\ \xe5\x87\x49\xe4\x87\x49\xe7\x87\x4a\xe4\x86\x4b\xe5\x87\x49\xe7\ \x86\x49\xe5\x86\x48\xe7\x88\x4b\xe5\x88\x4d\xe6\x8d\x54\xe4\x90\ \x5c\xe4\x96\x68\xe8\x9d\x6d\xea\x9d\x6a\xe4\x93\x60\xe5\x9d\x6c\ \xe4\x9e\x75\xe7\x9e\x6e\xe2\x96\x65\xe0\x97\x70\xe3\x9e\x7d\xe0\ \x92\x67\xda\x95\x73\xde\x98\x79\xdd\x9c\x7b\xe0\xa3\x82\xde\x99\ \x73\xe2\xa7\x85\xdf\xa5\x88\xd9\xa0\x87\xdc\xaf\x9b\xe0\xcb\xc1\ \xe5\xdc\xd5\xe8\xdd\xd9\xe4\xda\xd4\xe2\xd5\xcc\xe2\xd6\xd0\xe7\ \xde\xda\xe9\xe1\xdc\xe9\xe1\xdc\xe6\xde\xdb\xe5\xde\xdb\xe5\xdf\ \xdd\xe7\xe0\xdd\xe8\xdf\xe0\xe7\xdf\xe0\xe6\xdf\xe0\xe2\xd8\xd5\ \xd8\xbc\xb3\xda\xc6\xbe\xdb\xce\xc8\xdd\xd1\xd0\xdf\xd4\xd4\xe3\ \xd8\xd5\xe4\xda\xd3\xe1\xd5\xd1\xe0\xd5\xd0\xe1\xd7\xd1\xe2\xd7\ \xd3\xe5\xda\xd6\xe4\xda\xd6\xe1\xd5\xd2\xdc\xcc\xc6\xdd\xc4\xb8\ \xe1\xb4\x9c\xe2\xa9\x88\xe0\x9c\x75\xe4\x9d\x72\xe4\xa5\x7f\xe2\ \xa5\x83\xe2\xb4\x99\xdf\xc2\xad\xdf\xcc\xbb\xe0\xd0\xc0\xe1\xd2\ \xc7\xe2\xd7\xcf\xe4\xda\xd2\xe5\xda\xcf\xe6\xdd\xd7\xe5\xdb\xd4\ \xe3\xd9\xd1\xe1\xd5\xcb\xe0\xd3\xca\xdf\xd2\xca\xe1\xd5\xcd\xe5\ \xda\xd2\xe6\xdd\xd8\xe9\xe0\xdc\xea\xe1\xde\xeb\xe2\xde\xea\xe2\ \xde\xeb\xe2\xde\xe7\xde\xdb\xe4\xdb\xd4\xe2\xd6\xce\xdd\xcf\xc6\ \xde\xcc\xbe\xdd\xca\xba\xdd\xc7\xb8\xde\xc6\xb5\xdf\xbc\xad\xe2\ \xb8\xa3\xe0\xb1\x9b\xde\x93\x6b\xdf\x88\x56\xe1\x88\x53\xdf\x85\ \x52\xe3\x87\x52\xe3\x8c\x58\xe2\x85\x49\xe3\x7f\x40\xe3\x7a\x3b\ \xe5\x7a\x3b\xe5\x7a\x39\xe6\x7b\x39\xe4\x79\x3a\xe4\x7b\x39\xe4\ \x7a\x38\xe5\x7a\x38\xe5\x7a\x39\xe7\x79\x39\xe5\x7a\x39\xe3\x79\ \x3a\xe4\x7a\x36\xe4\x7a\x38\xe5\x79\x37\xe6\x79\x37\xe4\x7a\x39\ \xe5\x79\x38\xdd\x7a\x3e\xcb\x73\x42\xc3\x71\x42\xbd\x6e\x43\x95\ \x60\x46\xc7\x72\x42\xcd\x78\x47\xac\x6d\x4a\xa2\x62\x41\x00\x00\ \x00\xe6\x87\x4b\xe7\x87\x4b\xe8\x86\x49\xe7\x86\x47\xe7\x86\x48\ \xe7\x87\x49\xe7\x86\x48\xe8\x86\x48\xe4\x87\x47\xe5\x87\x48\xe6\ \x86\x48\xe5\x87\x4a\xe5\x87\x48\xe6\x87\x48\xe5\x88\x47\xe6\x87\ \x48\xe6\x86\x49\xe5\x87\x48\xe5\x87\x4b\xe5\x87\x49\xe6\x87\x4a\ \xe4\x87\x49\xe4\x86\x4a\xe5\x87\x4b\xe5\x87\x4a\xe5\x87\x4a\xe6\ \x87\x49\xe6\x86\x49\xe7\x87\x48\xe6\x87\x49\xe4\x87\x4b\xe6\x85\ \x49\xe6\x8b\x53\xe5\x8d\x54\xe6\x93\x60\xe7\x95\x61\xe6\x96\x62\ \xe5\x9f\x72\xe6\xa2\x7a\xe6\x99\x6a\xe5\x9f\x73\xe3\x98\x6c\xe2\ \x9b\x70\xe3\x92\x5d\xe4\x8f\x5a\xe2\x8b\x59\xe3\x87\x4f\xe4\x86\ \x4b\xe3\x87\x51\xe2\x87\x50\xe0\x89\x56\xe1\x8b\x5a\xe2\x9a\x73\ \xe2\x99\x6f\xe1\x93\x63\xe1\xa6\x84\xde\xc3\xb5\xdd\xcd\xc7\xe3\ \xd8\xd3\xe1\xd6\xd0\xe0\xd3\xc9\xe0\xd2\xc8\xe5\xdb\xd6\xe9\xe0\ \xdc\xe7\xdd\xd9\xe4\xd8\xd4\xe4\xd9\xd4\xe3\xd7\xd2\xde\xd1\xcd\ \xdb\xcd\xc6\xdf\xd1\xcb\xdd\xce\xc8\xde\xd1\xca\xdf\xc2\xae\xdc\ \xc1\xae\xdc\xba\xaa\xd9\xa9\x99\xda\xb8\xa9\xda\xc6\xbb\xdb\xcc\ \xc7\xda\xc3\xb9\xdb\xc5\xb8\xdb\xca\xc0\xdb\xcb\xc5\xdc\xc9\xc3\ \xda\xc4\xba\xdb\xc6\xb9\xde\xc4\xb5\xde\xc3\xb1\xe1\xb7\xa2\xdf\ \xa8\x8a\xdf\x9a\x6e\xe0\x9f\x78\xdf\xa2\x80\xe1\xaa\x8b\xe1\xb8\ \xa0\xdd\xc6\xb7\xde\xcd\xc0\xdf\xd1\xc8\xdf\xd2\xc9\xe2\xd7\xce\ \xe6\xdc\xd7\xe6\xde\xd8\xe5\xdd\xd9\xe5\xdb\xd6\xe4\xda\xd3\xe3\ \xd7\xcf\xde\xd1\xc8\xdc\xcc\xc4\xde\xd1\xc8\xe0\xd5\xcd\xe3\xda\ \xd3\xe5\xdc\xd8\xe8\xdf\xdc\xea\xe1\xdf\xe8\xe2\xdf\xe7\xe1\xde\ \xe8\xe0\xdc\xe7\xdd\xd7\xe3\xd8\xd2\xe0\xd4\xc9\xe1\xd3\xc7\xe0\ \xd1\xc6\xdf\xca\xbe\xdd\xc5\xb7\xdf\xbc\xae\xe2\xb5\xa2\xdf\xaa\ \x92\xdf\x93\x6b\xe0\x89\x55\xe0\x8a\x5a\xde\x80\x4a\xe0\x85\x4c\ \xe0\x8b\x5c\xe3\x90\x5f\xde\x84\x50\xe4\x79\x39\xe3\x7a\x3a\xe3\ \x7a\x3a\xe5\x79\x3a\xe6\x7a\x39\xe6\x79\x36\xe5\x79\x37\xe6\x7a\ \x38\xe5\x79\x39\xe5\x79\x3a\xe6\x79\x39\xe4\x79\x38\xe5\x7a\x39\ \xe5\x79\x38\xe6\x78\x38\xe7\x79\x39\xe4\x7a\x37\xe4\x79\x38\xdb\ \x77\x3f\xcb\x74\x44\xc9\x71\x3f\xbb\x6b\x3f\xac\x67\x45\xaf\x64\ \x3c\xb3\x67\x3d\xb0\x6b\x43\xb9\x6f\x46\x00\x00\x00\xe6\x87\x4a\ \xe7\x87\x47\xe8\x87\x48\xe6\x86\x48\xe6\x86\x49\xe7\x87\x47\xe4\ \x86\x49\xe6\x86\x49\xe6\x86\x49\xe6\x86\x48\xe5\x87\x48\xe6\x87\ \x47\xe5\x87\x48\xe5\x87\x4a\xe6\x88\x47\xe5\x87\x47\xe3\x86\x49\ \xe4\x87\x4a\xe5\x88\x4a\xe5\x88\x4a\xe5\x88\x49\xe3\x87\x4a\xe5\ \x87\x4a\xe5\x87\x4b\xe4\x86\x4b\xe6\x87\x4a\xe6\x87\x4a\xe4\x86\ \x48\xe4\x86\x49\xe7\x87\x4a\xe5\x86\x49\xe3\x86\x49\xe4\x8d\x59\ \xe5\x8f\x5a\xe6\x96\x68\xe9\xa7\x7d\xeb\xaa\x82\xe8\xa8\x80\xe7\ \xa8\x80\xe9\xa6\x7a\xe6\x9e\x71\xe2\x91\x62\xe1\x8b\x57\xe2\x89\ \x53\xe2\x89\x53\xe5\x8a\x51\xe5\x8a\x51\xe4\x87\x4d\xe4\x88\x4b\ \xe5\x88\x4c\xe4\x87\x4b\xe4\x86\x4e\xe1\x89\x56\xe1\x8d\x5a\xe1\ \x8f\x5e\xe0\xa1\x7c\xde\xb8\xa6\xde\xb8\xa6\xdf\xce\xc5\xe1\xd4\ \xca\xe1\xd4\xca\xe4\xd6\xcc\xe4\xda\xd2\xe7\xdc\xd7\xe4\xd8\xd3\ \xe1\xd5\xcd\xe0\xd4\xcc\xdb\xcd\xc7\xdb\xc9\xc0\xdd\xc9\xbc\xdd\ \xce\xc5\xdf\xd2\xc8\xe1\xd1\xc6\xde\xc5\xb2\xdc\xc0\xae\xdd\xb1\ \x9b\xdf\xa1\x7f\xde\xb7\x9f\xdc\xc1\xb2\xdc\xc2\xb2\xe0\xc8\xb4\ \xe0\xce\xbd\xdd\xca\xbc\xdd\xbd\xac\xdd\xba\xa7\xdf\xc0\xac\xdf\ \xc8\xb7\xde\xc3\xb3\xdd\xb7\xa6\xdb\xa8\x90\xdc\x9d\x7a\xe1\x93\ \x64\xe1\xa1\x77\xe1\xa0\x76\xe0\xa9\x89\xe0\xbc\xa6\xdd\xc5\xb5\ \xde\xce\xc1\xde\xcf\xc6\xdd\xcf\xc5\xe0\xd5\xcc\xe2\xd9\xd4\xe5\ \xdc\xd7\xe6\xdd\xd9\xe6\xdd\xd9\xe5\xdb\xd6\xe3\xd9\xd2\xdf\xd3\ \xca\xdc\xca\xbf\xda\xc8\xbd\xdb\xcd\xc4\xdf\xd3\xcd\xe2\xd7\xd2\ \xe4\xdb\xd5\xe6\xde\xdb\xe7\xe0\xdd\xe7\xe0\xdd\xe8\xdf\xdb\xe7\ \xde\xda\xe6\xdb\xd7\xe4\xd9\xd1\xe2\xd7\xcf\xde\xd2\xcb\xdb\xc6\ \xbd\xdd\xbe\xb2\xdf\xbe\xae\xe1\xb9\xa4\xe1\xb3\x9b\xe1\xa1\x7b\ \xe0\x8d\x5e\xdf\x86\x50\xe2\x84\x48\xe1\x83\x48\xdf\x82\x49\xe1\ \x8b\x5c\xdf\x7e\x47\xe2\x79\x38\xe3\x7a\x39\xe5\x79\x38\xe4\x79\ \x3a\xe6\x7a\x39\xe5\x79\x39\xe5\x79\x38\xe5\x7a\x38\xe5\x79\x38\ \xe4\x79\x38\xe6\x78\x37\xe3\x79\x39\xe5\x79\x39\xe5\x79\x38\xe5\ \x78\x38\xe5\x79\x38\xe5\x7a\x37\xe5\x7a\x39\xe3\x79\x3b\xcb\x73\ \x42\xc1\x6e\x3e\xb5\x6c\x46\xc0\x6d\x3e\xd5\x79\x40\xd2\x7b\x43\ \xd1\x7b\x46\xb9\x6f\x49\x00\x00\x00\xe5\x87\x49\xe8\x88\x45\xe6\ \x86\x48\xe5\x87\x49\xe6\x87\x48\xe5\x86\x49\xe5\x86\x48\xe5\x86\ \x47\xe6\x85\x47\xe6\x86\x47\xe6\x86\x4a\xe6\x85\x49\xe6\x86\x4a\ \xe6\x87\x47\xe5\x87\x48\xe5\x87\x49\xe5\x86\x48\xe6\x87\x49\xe4\ \x87\x4a\xe4\x87\x4a\xe4\x86\x49\xe4\x87\x49\xe4\x87\x4b\xe5\x87\ \x4c\xe4\x87\x4c\xe7\x88\x4a\xe5\x87\x4b\xe3\x86\x49\xe4\x87\x4a\ \xe4\x87\x4a\xe4\x86\x4a\xe5\x85\x49\xe4\x88\x4f\xe4\x8d\x58\xe3\ \x98\x6b\xe3\x9f\x7a\xe4\xab\x8d\xe7\xae\x8d\xe6\xae\x8c\xe9\xb1\ \x90\xe8\xa2\x76\xe3\x8c\x57\xe4\x87\x4c\xe3\x87\x4d\xe3\x88\x4d\ \xe2\x89\x51\xe5\x89\x50\xe4\x88\x4d\xe4\x88\x4d\xe4\x89\x4f\xe3\ \x87\x4e\xe4\x87\x4e\xe3\x89\x54\xe4\x8b\x55\xe1\x8a\x56\xde\x96\ \x6d\xe3\xaf\x96\xe5\xb9\x9e\xe3\xcf\xbf\xe1\xd2\xc8\xde\xd0\xc6\ \xe4\xd7\xcf\xe5\xd8\xd0\xe4\xd9\xd5\xdf\xd2\xcd\xde\xcf\xca\xdf\ \xd0\xca\xdb\xba\xad\xdb\xc5\xb7\xdc\xc3\xb5\xdc\xc8\xba\xe2\xd4\ \xc7\xe7\xde\xd4\xe7\xd9\xca\xe3\xce\xbb\xe0\xb4\x98\xe1\xa4\x81\ \xdf\xae\x90\xde\xba\xa6\xe0\xcc\xb9\xe1\xd4\xca\xde\xd0\xc7\xdd\ \xc4\xb5\xdf\xc2\xac\xde\xc5\xb2\xe0\xc8\xb3\xde\xcc\xbd\xdd\xbf\ \xb0\xdc\xa8\x8f\xe0\x9c\x74\xe3\xa3\x79\xe2\x9d\x70\xe2\xa1\x7a\ \xe3\xad\x8d\xe1\xae\x91\xe0\xb6\x9f\xdd\xc5\xb4\xdd\xcc\xc1\xde\ \xce\xc3\xdb\xca\xc0\xdd\xce\xc7\xdf\xd4\xcc\xe3\xda\xd1\xe4\xdc\ \xd8\xe5\xdc\xd8\xe3\xd9\xd5\xe1\xd7\xd1\xdf\xd3\xcb\xdc\xcb\xbf\ \xdb\xc2\xb4\xdb\xc6\xba\xdc\xcd\xc6\xde\xd2\xca\xe0\xd6\xcd\xe5\ \xdc\xd5\xe7\xde\xdb\xe7\xdf\xdc\xe8\xdf\xdb\xe6\xdd\xd9\xe5\xdb\ \xd7\xe0\xd5\xd0\xdd\xd0\xcb\xdc\xcc\xc6\xdb\xbf\xb1\xdf\xbf\xad\ \xdf\xc3\xb4\xdf\xbf\xad\xe0\xb2\x9e\xe0\xa6\x88\xde\x94\x69\xe1\ \x8a\x55\xe1\x8d\x5b\xe2\x89\x55\xe3\x87\x4f\xe2\x8c\x56\xe2\x83\ \x4b\xe1\x7a\x3a\xe4\x79\x39\xe4\x78\x36\xe6\x78\x36\xe5\x79\x39\ \xe4\x79\x39\xe6\x78\x38\xe6\x7a\x39\xe5\x79\x38\xe5\x79\x38\xe4\ \x79\x38\xe5\x7a\x38\xe4\x78\x39\xe3\x78\x39\xe6\x79\x38\xe5\x7a\ \x39\xe3\x78\x39\xe5\x79\x38\xe1\x7b\x3e\xc9\x76\x47\xc3\x71\x42\ \xca\x73\x42\xe2\x7e\x40\xd1\x7c\x49\xcf\x7d\x4c\xc9\x76\x47\xae\ \x6a\x43\x00\x00\x00\xe7\x87\x47\xe6\x87\x47\xe6\x86\x49\xe6\x86\ \x49\xe6\x86\x48\xe6\x86\x46\xe5\x87\x46\xe6\x85\x49\xe6\x86\x45\ \xe5\x86\x48\xe5\x86\x47\xe5\x86\x49\xe5\x86\x49\xe5\x87\x47\xe4\ \x86\x48\xe5\x87\x4a\xe5\x87\x4a\xe4\x88\x4a\xe3\x87\x49\xe4\x86\ \x4a\xe3\x86\x4a\xe4\x86\x49\xe3\x87\x49\xe3\x86\x4a\xe4\x87\x4a\ \xe5\x87\x49\xe5\x87\x49\xe4\x87\x4b\xe4\x87\x4a\xe4\x86\x4c\xe4\ \x87\x4a\xe4\x86\x48\xe3\x86\x4b\xe3\x88\x51\xe1\x8f\x5d\xe3\x94\ \x68\xe2\x9f\x78\xe3\xa6\x87\xe5\xac\x8d\xe5\xb2\x98\xe4\xa4\x7f\ \xe5\x8d\x56\xe5\x88\x4e\xe4\x87\x4c\xe4\x87\x4b\xe4\x87\x4c\xe5\ \x89\x4f\xe4\x88\x4b\xe5\x89\x4e\xe5\x8a\x51\xe4\x88\x4e\xe4\x86\ \x4b\xe2\x88\x51\xe4\x8a\x52\xe3\x88\x50\xe1\x8b\x56\xe0\xa8\x8d\ \xe0\xc0\xae\xe3\xd3\xcb\xe2\xd3\xc8\xde\xc8\xbc\xe2\xd4\xcb\xe2\ \xd6\xcd\xde\xcf\xca\xdb\xbb\xb1\xdd\xc0\xb4\xdd\xce\xc4\xe0\xb6\ \x9e\xdf\xc9\xba\xde\xc7\xb5\xdf\xcc\xbe\xe6\xdc\xd3\xea\xe1\xdc\ \xeb\xe2\xdb\xe7\xde\xd4\xe3\xcd\xb6\xe2\xc1\xa3\xe3\xca\xaf\xe0\ \xca\xb3\xe0\xd5\xc7\xe0\xd2\xc9\xdd\xcc\xbf\xdf\xca\xb8\xe0\xcf\ \xbe\xe0\xcf\xbe\xdf\xcd\xc0\xdc\xc5\xba\xdd\xb5\xa3\xe2\xaa\x86\ \xe3\xad\x89\xe4\xb3\x96\xe3\xb4\x94\xe5\xaf\x8f\xe2\xb8\x9f\xe1\ \xba\xa2\xe1\xba\xa2\xdd\xc5\xb4\xdd\xcb\xc0\xde\xd0\xc4\xdd\xcd\ \xc0\xde\xd0\xc1\xe1\xd7\xcd\xe2\xd9\xd1\xe4\xd9\xd5\xe3\xd8\xd4\ \xe0\xd5\xcf\xdf\xd4\xcc\xde\xd1\xc9\xdb\xc9\xbd\xdc\xbf\xb1\xdc\ \xbe\xb0\xdb\xc3\xb9\xdc\xcc\xc1\xe0\xd4\xcb\xe4\xdb\xd3\xe6\xdd\ \xd8\xe7\xde\xda\xe7\xde\xda\xe5\xdb\xd7\xe3\xd8\xd4\xde\xd2\xcb\ \xdc\xca\xc0\xdc\xc3\xb8\xdf\xbf\xac\xdf\xc4\xb2\xdf\xc5\xb6\xdf\ \xbc\xaf\xe0\xaf\x9a\xde\xa2\x82\xdf\x97\x70\xe1\x93\x64\xdf\x93\ \x66\xe1\x8c\x5e\xe3\x90\x5f\xe4\x99\x6a\xe1\x91\x61\xe2\x82\x48\ \xe2\x7d\x3c\xe3\x7a\x38\xe5\x78\x37\xe5\x78\x38\xe3\x78\x3b\xe4\ \x79\x38\xe4\x79\x39\xe4\x79\x38\xe3\x79\x38\xe5\x79\x37\xe5\x7a\ \x38\xe4\x79\x37\xe5\x79\x37\xe5\x79\x39\xe4\x79\x39\xe4\x79\x39\ \xe5\x7a\x3b\xe3\x7b\x3d\xd8\x79\x43\xbf\x6e\x40\xd6\x7b\x42\xc2\ \x7a\x50\xbe\x76\x4e\x8b\x5d\x49\x81\x51\x34\x7a\x54\x44\x00\x00\ \x00\xe4\x86\x4a\xe5\x87\x49\xe5\x86\x48\xe5\x86\x47\xe4\x85\x47\ \xe5\x86\x49\xe6\x86\x48\xe6\x86\x47\xe6\x86\x4a\xe6\x87\x49\xe5\ \x87\x49\xe5\x86\x4a\xe5\x86\x4a\xe4\x87\x49\xe4\x86\x4b\xe4\x87\ \x49\xe4\x87\x48\xe4\x87\x49\xe5\x87\x4a\xe4\x87\x4b\xe4\x87\x4a\ \xe4\x86\x4a\xe6\x87\x49\xe6\x88\x4a\xe6\x86\x48\xe4\x86\x4a\xe3\ \x86\x49\xe4\x87\x4a\xe5\x87\x49\xe7\x86\x49\xe3\x85\x4c\xe3\x86\ \x4a\xe3\x86\x49\xe5\x89\x4d\xe5\x8b\x57\xe3\x91\x61\xe1\x90\x5f\ \xde\x8f\x62\xdf\x9b\x78\xe3\xa5\x83\xe4\x9b\x6f\xe7\x99\x68\xe3\ \x87\x4c\xe3\x86\x4b\xe3\x86\x4c\xe5\x88\x4b\xe5\x87\x4b\xe5\x8b\ \x50\xe6\x8d\x56\xe6\x8e\x56\xe5\x89\x4f\xe5\x89\x4c\xe3\x86\x4e\ \xe4\x89\x4f\xe3\x88\x4e\xe3\x86\x4d\xdf\x93\x6a\xdf\xa8\x90\xde\ \xbf\xb4\xe0\xd0\xc5\xdf\xc7\xb6\xdf\xd0\xc5\xe1\xd1\xca\xdf\xca\ \xbd\xe2\xba\xa1\xe1\xcb\xb7\xdd\xcd\xc2\xe0\xc7\xb2\xde\xcd\xc1\ \xde\xcf\xc3\xde\xcb\xbf\xe3\xda\xd4\xe8\xe0\xdb\xea\xe1\xdd\xea\ \xe1\xdd\xe8\xdf\xd6\xe6\xd9\xcd\xe6\xd8\xd0\xe2\xd6\xcb\xe1\xd5\ \xcb\xe0\xd0\xc4\xdf\xd0\xc0\xe0\xd2\xc3\xe1\xd3\xc6\xe0\xd4\xc8\ \xdb\xc0\xb5\xdd\xb9\xa7\xe1\xb4\x98\xe1\xbd\xa3\xe1\xc6\xaf\xe0\ \xc0\xac\xdf\xc0\xa9\xe1\xc1\xab\xdf\xc4\xaf\xde\xc5\xb2\xdf\xbd\ \xa7\xdd\xc1\xb0\xdd\xca\xbc\xe0\xd0\xc4\xe2\xd4\xc6\xe2\xd7\xcc\ \xe3\xd9\xd1\xe3\xda\xd2\xe2\xd8\xd1\xdf\xd5\xce\xdc\xd0\xc8\xdc\ \xce\xc5\xdb\xcc\xc2\xdc\xc6\xb9\xdc\xc0\xb0\xdf\xc0\xad\xde\xc0\ \xae\xdc\xc6\xb7\xdf\xd1\xc6\xe5\xdb\xd4\xe6\xdc\xd8\xe3\xda\xd6\ \xe3\xd8\xd4\xe1\xd6\xd1\xdf\xd4\xce\xdd\xd1\xc7\xdc\xca\xbf\xdd\ \xc6\xb7\xde\xc5\xb4\xdd\xc4\xb4\xde\xc2\xb2\xdf\xb4\xa2\xde\xab\ \x92\xdc\x9e\x7b\xdd\x98\x6e\xe1\x9c\x70\xdf\x98\x6c\xdf\x92\x64\ \xe1\x93\x65\xe1\x9b\x71\xe3\x9e\x73\xe2\x95\x67\xe2\x8b\x56\xe2\ \x7b\x3d\xe3\x78\x38\xe3\x77\x37\xe5\x7a\x38\xe4\x79\x38\xe4\x7a\ \x39\xe5\x7a\x38\xe5\x7a\x39\xe4\x79\x39\xe2\x78\x39\xe3\x79\x39\ \xe2\x79\x39\xe4\x79\x38\xe5\x78\x38\xe3\x7a\x3a\xe4\x79\x3b\xe5\ \x7b\x3b\xd5\x79\x40\xc3\x7a\x4f\xc4\x7a\x4b\xca\x7c\x54\xaf\x6c\ \x47\xb6\x6f\x45\x9e\x63\x41\x7e\x51\x36\x00\x00\x00\xe4\x87\x4a\ \xe5\x87\x48\xe5\x87\x4b\xe5\x86\x49\xe4\x86\x4a\xe6\x86\x48\xe5\ \x86\x49\xe5\x85\x4a\xe3\x86\x48\xe4\x87\x48\xe4\x86\x48\xe4\x86\ \x48\xe6\x87\x48\xe5\x86\x49\xe5\x87\x49\xe5\x86\x49\xe5\x86\x4a\ \xe3\x87\x4a\xe4\x86\x4b\xe3\x87\x4a\xe4\x87\x4a\xe4\x86\x4a\xe4\ \x87\x4b\xe4\x87\x4b\xe4\x87\x4c\xe3\x86\x4a\xe3\x86\x49\xe4\x87\ \x49\xe5\x88\x48\xe4\x86\x49\xe4\x85\x4b\xe3\x86\x49\xe4\x86\x4c\ \xe3\x88\x52\xe3\x8a\x52\xe3\x92\x60\xe4\x8d\x57\xe3\x87\x50\xe1\ \x89\x56\xe0\x97\x70\xe0\x93\x6a\xe1\x8f\x60\xe4\x85\x4c\xe6\x85\ \x4c\xe4\x85\x4d\xe3\x87\x4e\xe5\x8b\x51\xe7\x92\x5c\xe9\x98\x66\ \xe6\x93\x5f\xe3\x8a\x50\xe4\x8d\x56\xe5\x8b\x52\xe4\x8b\x55\xe3\ \x89\x53\xe3\x84\x4c\xe0\x83\x4a\xdf\x8d\x61\xde\xa8\x93\xdb\xc1\ \xb6\xde\xc4\xb5\xde\xc9\xbe\xdc\xc9\xc0\xdf\xca\xbc\xe1\xd0\xbf\ \xe2\xd6\xcc\xe1\xd3\xc6\xdf\xd0\xc4\xdd\xc5\xb6\xdb\xc8\xbb\xe0\ \xce\xc0\xe5\xdc\xd3\xe8\xde\xd9\xe7\xe0\xdc\xe8\xe1\xdd\xe8\xe0\ \xda\xe8\xde\xd8\xe7\xde\xd7\xe7\xdd\xd4\xe5\xda\xd1\xe3\xd6\xca\ \xe3\xd6\xca\xe4\xd8\xcf\xe5\xd9\xd0\xdf\xcf\xc6\xdc\xb2\xa0\xdc\ \xa7\x8e\xdf\xbb\xa6\xdf\xc9\xb7\xdf\xcd\xbf\xdf\xca\xb9\xe0\xce\ \xbd\xe1\xd1\xc1\xe1\xd2\xc2\xe0\xcf\xbf\xe0\xcb\xb9\xdf\xc7\xb4\ \xdd\xca\xb9\xe0\xd2\xc5\xe4\xd8\xcf\xe4\xda\xd3\xe5\xdc\xd3\xe3\ \xd9\xd2\xe2\xd7\xd0\xdf\xd4\xcb\xdd\xd0\xc5\xdc\xcc\xc0\xdc\xc7\ \xba\xdb\xc3\xb4\xdc\xc0\xb0\xdd\xc4\xb4\xdd\xc3\xb2\xdd\xc3\xb2\ \xdc\xcb\xc1\xdd\xd1\xca\xdf\xd3\xcf\xdc\xce\xca\xdb\xca\xc1\xdb\ \xcc\xc4\xdc\xcd\xc5\xdc\xcc\xc3\xde\xca\xbd\xdd\xc6\xb9\xdc\xc2\ \xb4\xde\xc1\xb2\xde\xbf\xae\xdf\xb2\x9f\xdf\xa8\x8b\xe0\xa2\x7b\ \xe1\xa1\x78\xdf\x9e\x76\xe1\x9e\x76\xe0\x9c\x71\xdf\x99\x6d\xe1\ \x9b\x73\xe1\xa1\x7b\xe1\x9a\x71\xe3\x99\x6b\xe3\x87\x50\xe2\x80\ \x42\xe3\x7b\x3c\xe3\x78\x38\xe5\x7a\x39\xe4\x7a\x38\xe4\x79\x39\ \xe3\x79\x39\xe3\x79\x3a\xe3\x79\x3a\xe3\x78\x39\xe3\x78\x39\xe2\ \x78\x39\xe4\x7a\x3a\xe5\x7a\x37\xe6\x7b\x39\xe5\x7b\x3a\xde\x7d\ \x42\xd6\x7a\x48\xaa\x6e\x4f\xaf\x6c\x47\xc3\x78\x4b\x80\x59\x46\ \x91\x59\x3b\xbf\x71\x3e\x00\x00\x00\xe4\x87\x49\xe5\x86\x48\xe4\ \x87\x4b\xe4\x85\x49\xe4\x86\x49\xe4\x85\x48\xe6\x86\x47\xe5\x85\ \x49\xe4\x86\x49\xe6\x86\x47\xe5\x86\x48\xe5\x86\x48\xe5\x87\x48\ \xe3\x87\x48\xe3\x87\x4a\xe4\x87\x4a\xe3\x86\x4a\xe4\x87\x4b\xe6\ \x87\x49\xe4\x86\x4b\xe4\x86\x4b\xe4\x86\x4b\xe4\x87\x4a\xe4\x87\ \x4b\xe4\x87\x4a\xe3\x86\x4a\xe3\x86\x4a\xe4\x87\x4a\xe5\x86\x49\ \xe4\x85\x48\xe3\x86\x4a\xe4\x85\x4b\xe4\x85\x4b\xe3\x87\x4c\xe4\ \x88\x4e\xe3\x8c\x5a\xe4\x8a\x54\xe2\x85\x4b\xe3\x85\x4c\xe0\x86\ \x4e\xe1\x8a\x56\xe3\x87\x4e\xe2\x85\x4d\xe3\x86\x4b\xe2\x86\x4b\ \xe2\x88\x4f\xe5\x8f\x5b\xe4\x98\x6a\xe4\x9c\x70\xe4\x91\x60\xe4\ \x89\x51\xe2\x87\x4e\xe3\x87\x4d\xe3\x88\x4e\xe3\x87\x4d\xe4\x85\ \x49\xe3\x83\x48\xe1\x81\x47\xdd\x88\x5d\xd7\x91\x72\xdb\xa5\x8f\ \xde\xb4\xa3\xde\xbb\xaa\xe0\xcc\xbd\xe0\xd1\xc5\xe0\xd3\xcc\xe2\ \xd6\xcf\xe1\xd5\xcb\xe5\xd6\xc7\xe3\xd6\xc8\xe2\xd5\xcb\xe6\xdd\ \xd7\xe6\xdc\xd6\xe4\xdb\xd4\xea\xe1\xde\xea\xe1\xdd\xeb\xe3\xdd\ \xeb\xe4\xde\xea\xe4\xdd\xe9\xe0\xd9\xe7\xdc\xd5\xe5\xdb\xd2\xe6\ \xdc\xd5\xe5\xdd\xd7\xdd\xc9\xc1\xdb\xa3\x88\xe0\xa6\x82\xdf\xbc\ \xa6\xdc\xc7\xbb\xdd\xca\xbd\xdf\xd1\xc2\xe2\xd5\xca\xe3\xd7\xce\ \xe2\xd6\xcd\xe1\xd5\xca\xe0\xd3\xc8\xdf\xd0\xc3\xde\xcd\xbe\xe1\ \xd4\xc9\xe3\xda\xd2\xe5\xdc\xd4\xe5\xdb\xd3\xe3\xd9\xd2\xe2\xd8\ \xcf\xe1\xd5\xcc\xdf\xd2\xc7\xdc\xcb\xbe\xdc\xc4\xb5\xdd\xc3\xb3\ \xde\xc4\xb3\xdd\xc6\xb6\xdd\xc5\xb5\xdc\xc3\xb4\xda\xc1\xb6\xda\ \xc0\xb7\xd8\xbb\xb2\xd9\xb8\xad\xdc\xbd\xaf\xdb\xc4\xb7\xdb\xc8\ \xbb\xdb\xc8\xbb\xdb\xc6\xb8\xdb\xc4\xb6\xdd\xc2\xb2\xdf\xbe\xae\ \xdf\xbb\xaa\xe0\xb3\x9e\xe1\xab\x91\xdf\xa8\x88\xdf\xa7\x86\xdf\ \xa3\x7d\xe0\xa4\x80\xe0\xa2\x7e\xe1\xa1\x79\xe3\xa3\x7c\xe3\xa4\ \x7d\xe2\xa2\x7c\xe3\xa2\x7c\xe3\x99\x6d\xe0\x89\x57\xe0\x7f\x44\ \xe2\x7a\x3b\xe3\x79\x39\xe2\x7a\x3a\xe2\x79\x3a\xe5\x79\x3a\xe2\ \x78\x38\xe3\x79\x38\xe3\x78\x39\xe3\x78\x38\xe3\x78\x38\xe3\x79\ \x38\xe3\x7a\x39\xe4\x7b\x39\xe4\x7c\x3b\xd9\x7a\x41\xc2\x6f\x42\ \xc4\x77\x48\xc7\x76\x4b\xa8\x66\x43\x9f\x65\x43\xa4\x66\x42\xbb\ \x6d\x40\x00\x00\x00\xe5\x86\x49\xe6\x87\x47\xe5\x85\x4a\xe6\x86\ \x49\xe5\x86\x48\xe4\x85\x49\xe4\x86\x4a\xe5\x86\x4a\xe4\x85\x49\ \xe5\x85\x49\xe5\x86\x49\xe4\x86\x48\xe4\x86\x49\xe4\x86\x48\xe4\ \x86\x49\xe4\x86\x4b\xe4\x86\x4b\xe3\x86\x4d\xe4\x88\x4a\xe4\x85\ \x4b\xe4\x87\x49\xe4\x86\x49\xe4\x86\x4a\xe4\x87\x4b\xe3\x86\x4a\ \xe3\x86\x49\xe3\x86\x4a\xe5\x86\x4b\xe4\x86\x4b\xe3\x86\x4a\xe3\ \x86\x48\xe3\x86\x4a\xe4\x86\x4a\xe4\x87\x4d\xe4\x89\x4f\xe5\x8c\ \x55\xe6\x91\x5c\xe4\x86\x49\xe3\x85\x49\xe3\x86\x4a\xe1\x86\x4b\ \xe2\x86\x4a\xe3\x85\x4a\xe4\x86\x4a\xe3\x85\x4b\xe2\x88\x51\xe4\ \x93\x61\xe4\x96\x66\xe2\x90\x61\xe3\x88\x52\xe4\x87\x4c\xe3\x86\ \x4c\xe4\x86\x4b\xe3\x86\x4b\xe3\x85\x4a\xe3\x85\x4a\xe2\x86\x4c\ \xe2\x84\x48\xe3\x81\x44\xe2\x83\x4c\xde\x8f\x62\xdc\x99\x77\xda\ \xa3\x8b\xdb\xbd\xb2\xde\xc9\xbf\xde\xc6\xba\xdd\xca\xc1\xe3\xd8\ \xd1\xe8\xdf\xd7\xe7\xde\xd8\xe4\xd8\xd1\xe4\xd9\xd6\xe7\xdf\xd8\ \xe9\xe1\xdb\xee\xe7\xe2\xee\xe8\xe5\xef\xe8\xe5\xec\xe6\xe2\xea\ \xe4\xe0\xea\xe1\xdd\xe8\xdd\xd9\xe3\xd9\xd3\xdf\xd1\xcc\xdc\xca\ \xc6\xda\xb1\xa2\xe0\xa1\x7b\xe0\xaa\x8c\xde\xb1\x9c\xdc\xbc\xac\ \xdc\xc5\xb4\xdf\xce\xc3\xe0\xd4\xcb\xe2\xd5\xce\xe3\xd6\xce\xe2\ \xd5\xcd\xe1\xd5\xcb\xdf\xd3\xc9\xe0\xd2\xc7\xe2\xd7\xcd\xe4\xda\ \xd3\xe5\xdc\xd4\xe4\xdb\xd2\xe2\xd9\xd1\xe2\xd7\xcf\xe0\xd5\xcc\ \xdf\xd2\xc8\xde\xcd\xc1\xdd\xc7\xb8\xdd\xc4\xb3\xdc\xc5\xb5\xdd\ \xc6\xb6\xdc\xc4\xb5\xdc\xbf\xb1\xdc\xb6\xa6\xdb\xae\x9a\xdd\xab\ \x96\xdc\xa8\x90\xdd\xb4\x9f\xdd\xbf\xaf\xdc\xc3\xb3\xdc\xc5\xb5\ \xdc\xc0\xb2\xdc\xbf\xb0\xdd\xbe\xaf\xdd\xbb\xaa\xdf\xb7\xa4\xdf\ \xb1\x9a\xdf\xab\x92\xe0\xaa\x90\xde\xa7\x8a\xdf\xa7\x85\xe0\xa9\ \x89\xe1\xa8\x89\xe1\xaa\x8a\xe1\xab\x8b\xe1\xaa\x8a\xe2\xa7\x83\ \xe3\xa6\x81\xe1\xa0\x79\xe1\x94\x66\xde\x83\x4d\xdf\x7d\x3f\xe2\ \x79\x3a\xe3\x79\x3a\xe3\x7a\x3a\xe4\x7a\x39\xe3\x79\x39\xe5\x79\ \x38\xe4\x78\x38\xe2\x78\x38\xe4\x78\x38\xe4\x79\x39\xe4\x7a\x3b\ \xe5\x7a\x3c\xdd\x7a\x3f\xcb\x77\x46\xc5\x76\x47\xb3\x71\x4c\x81\ \x55\x44\x7d\x56\x40\xa0\x68\x49\x91\x63\x4a\x9b\x63\x45\x00\x00\ \x00\xe4\x86\x49\xe5\x86\x48\xe4\x85\x4a\xe5\x86\x49\xe5\x86\x48\ \xe5\x85\x47\xe4\x85\x49\xe5\x86\x47\xe4\x84\x49\xe4\x84\x4a\xe4\ \x86\x4b\xe4\x85\x49\xe5\x87\x49\xe4\x86\x49\xe4\x86\x4b\xe3\x86\ \x4a\xe4\x86\x4b\xe4\x86\x4c\xe4\x87\x4a\xe4\x87\x4b\xe3\x86\x4a\ \xe3\x86\x49\xe4\x87\x4b\xe4\x86\x4c\xe3\x85\x4c\xe4\x86\x49\xe4\ \x86\x49\xe4\x86\x4a\xe4\x86\x4a\xe2\x85\x4a\xe4\x86\x49\xe3\x86\ \x4b\xe3\x86\x4b\xe2\x85\x4a\xe3\x87\x50\xe3\x8e\x57\xe4\x92\x62\ \xe4\x87\x4d\xe4\x85\x49\xe4\x85\x4a\xe2\x85\x4a\xe3\x85\x4a\xe4\ \x85\x4b\xe3\x85\x4a\xe3\x86\x4a\xe4\x89\x53\xe5\x93\x62\xe5\x96\ \x66\xe5\x8c\x57\xe4\x88\x4d\xe3\x88\x4a\xe3\x86\x4b\xe4\x86\x4b\ \xe4\x86\x4a\xe3\x87\x4b\xe4\x86\x4b\xe3\x85\x4c\xe2\x84\x48\xe2\ \x84\x47\xe3\x83\x4b\xe0\x85\x4e\xdf\x83\x4d\xdc\x84\x52\xd9\x8f\ \x6f\xd9\xa6\x92\xde\xbc\xac\xdf\xc5\xb8\xe1\xd4\xcc\xe7\xdf\xdb\ \xe9\xe0\xdc\xe5\xda\xd5\xe6\xdc\xd5\xea\xe2\xdd\xec\xe5\xe2\xef\ \xea\xe7\xf0\xeb\xe8\xf1\xeb\xe8\xed\xe6\xe3\xea\xe3\xe0\xe2\xda\ \xd6\xde\xd2\xce\xdc\xca\xc5\xdb\xbc\xb1\xdc\xb2\xa1\xdf\xa6\x86\ \xe3\xac\x8a\xe1\xb4\x9b\xe1\xb3\x9a\xdf\xb9\xa3\xde\xc7\xb4\xdf\ \xcf\xc1\xe0\xd3\xc8\xdf\xd2\xc9\xe1\xd4\xcd\xe3\xd8\xcd\xe3\xd7\ \xcd\xe3\xd6\xcd\xe3\xd6\xce\xe3\xd8\xcf\xe5\xda\xd2\xe5\xdc\xd3\ \xe4\xdb\xd2\xe2\xd9\xd0\xe1\xd8\xcf\xe0\xd5\xcc\xde\xd1\xc9\xdf\ \xcf\xc4\xdc\xcb\xbd\xdc\xc8\xb8\xdd\xc6\xb5\xdc\xc5\xb5\xdd\xc3\ \xb3\xde\xbd\xad\xde\xb5\xa3\xdf\xad\x95\xde\xa9\x90\xdf\xa9\x90\ \xe0\xb3\x9d\xdd\xba\xa7\xdd\xbf\xb0\xdd\xc1\xb0\xdd\xbc\xac\xdd\ \xb9\xa7\xdd\xb9\xa8\xde\xb8\xa6\xdf\xb4\x9e\xde\xae\x98\xde\xa9\ \x8f\xdf\xa9\x90\xe0\xaa\x90\xe2\xad\x91\xe2\xae\x94\xe1\xad\x93\ \xe1\xae\x94\xe1\xad\x92\xe1\xaa\x8d\xe1\xaa\x89\xe3\xa9\x85\xe2\ \xa4\x7f\xdf\x9a\x72\xe1\x8d\x5b\xe0\x85\x4f\xe2\x7d\x3d\xe3\x7b\ \x3c\xe2\x7b\x3c\xe3\x7a\x3a\xe3\x78\x3a\xe5\x79\x39\xe3\x78\x3a\ \xe3\x79\x39\xe4\x79\x39\xe3\x79\x3a\xe4\x79\x3a\xe4\x7a\x3d\xdf\ \x7c\x43\xcd\x7c\x4c\xbb\x72\x4d\x7a\x58\x49\x8d\x5d\x45\x76\x58\ \x4b\x8b\x62\x4e\x7c\x5b\x4d\x90\x61\x46\x00\x00\x00\xe3\x87\x48\ \xe5\x86\x49\xe4\x86\x48\xe5\x85\x49\xe5\x85\x48\xe6\x84\x49\xe6\ \x85\x49\xe5\x85\x47\xe2\x85\x49\xe3\x85\x49\xe4\x86\x4a\xe3\x85\ \x4a\xe3\x87\x49\xe3\x87\x49\xe4\x86\x4a\xe5\x86\x4a\xe4\x87\x4b\ \xe3\x87\x4a\xe3\x86\x49\xe5\x87\x4b\xe4\x86\x4b\xe3\x86\x4a\xe5\ \x86\x49\xe5\x85\x48\xe3\x86\x4b\xe4\x86\x4a\xe4\x86\x4a\xe3\x87\ \x49\xe4\x86\x49\xe3\x86\x4a\xe4\x85\x4b\xe4\x86\x4b\xe3\x86\x4a\ \xe2\x86\x4b\xe2\x86\x4b\xe4\x8a\x58\xe5\x8f\x5e\xe4\x8b\x52\xe2\ \x84\x4a\xe4\x87\x4b\xe3\x86\x49\xe4\x85\x4a\xe3\x86\x4c\xe2\x86\ \x4c\xe4\x86\x4a\xe5\x88\x50\xe4\x91\x61\xe3\x94\x65\xe5\x8d\x59\ \xe4\x87\x4d\xe3\x88\x4e\xe3\x89\x4e\xe3\x86\x49\xe4\x86\x4c\xe3\ \x85\x4b\xe3\x86\x4b\xe2\x85\x48\xe3\x85\x45\xe3\x82\x47\xe4\x83\ \x49\xe4\x88\x4c\xe2\x83\x46\xe0\x81\x44\xe1\x83\x49\xdf\x8c\x5c\ \xda\x9f\x82\xd9\xad\x9e\xda\xbd\xb7\xdc\xcf\xcc\xe3\xd9\xd6\xe4\ \xd9\xd4\xe8\xdf\xda\xe9\xe2\xdf\xef\xe8\xe5\xee\xeb\xe7\xf2\xec\ \xec\xf0\xeb\xea\xec\xe6\xe3\xe0\xd7\xd7\xd9\xc1\xbd\xdb\xb7\xaa\ \xdc\xb2\xa1\xdc\xaa\x94\xdf\xa7\x8b\xe3\xac\x8d\xe2\xb4\x9b\xdf\ \xba\xa4\xdf\xc1\xaa\xe0\xca\xb6\xe0\xd0\xbf\xe1\xd4\xc7\xe0\xd4\ \xca\xe2\xd6\xcc\xe4\xd7\xce\xe4\xd9\xd1\xe4\xdb\xd2\xe3\xd9\xd0\ \xe2\xd9\xd0\xe2\xd9\xd0\xe4\xdb\xd2\xe3\xda\xd1\xe3\xda\xd1\xe1\ \xd9\xcf\xe0\xd7\xce\xe0\xd4\xcc\xe0\xd3\xcb\xde\xd1\xc6\xde\xce\ \xc2\xdc\xcc\xbe\xdd\xc8\xb9\xdc\xc6\xb7\xdd\xc2\xb3\xdd\xbc\xab\ \xdf\xb8\xa6\xdf\xb3\x9f\xde\xac\x92\xdf\xa9\x8b\xe0\xb3\x9b\xdd\ \xb6\xa2\xdd\xb8\xa3\xdf\xbd\xab\xde\xbb\xab\xdd\xb8\xa6\xde\xb9\ \xa4\xdf\xba\xa4\xdf\xb6\x9e\xe0\xb2\x9b\xdf\xad\x95\xe0\xac\x95\ \xe1\xb1\x97\xe1\xb2\x9a\xe1\xb2\x9a\xe2\xb0\x98\xe2\xae\x97\xe1\ \xad\x94\xe0\xac\x90\xe0\xa9\x8d\xdf\xa7\x88\xdf\xa0\x7b\xde\x97\ \x6f\xdf\x8f\x65\xe0\x87\x51\xdf\x83\x48\xe0\x7d\x40\xe1\x7b\x3d\ \xe1\x7b\x3b\xe3\x79\x38\xe3\x79\x3a\xe2\x78\x39\xe4\x78\x39\xe4\ \x79\x3a\xe4\x79\x38\xe3\x7a\x3a\xe2\x7b\x3d\xd6\x79\x44\xc4\x72\ \x43\x9e\x66\x4a\xa0\x67\x4c\x70\x57\x4f\x56\x4a\x46\x8c\x61\x4d\ \x79\x59\x46\x8d\x60\x44\x00\x00\x00\xe4\x86\x49\xe4\x86\x4a\xe4\ \x85\x4a\xe5\x85\x48\xe5\x86\x49\xe3\x85\x4a\xe7\x86\x48\xe6\x87\ \x47\xe5\x86\x47\xe5\x86\x47\xe4\x86\x4a\xe6\x87\x49\xe6\x85\x48\ \xe5\x85\x4b\xe3\x87\x49\xe4\x86\x4a\xe3\x86\x4a\xe5\x86\x49\xe4\ \x85\x4b\xe4\x87\x4a\xe4\x87\x4b\xe3\x86\x4b\xe4\x86\x4a\xe4\x86\ \x4a\xe4\x85\x4b\xe5\x87\x49\xe4\x86\x4b\xe3\x85\x4c\xe3\x86\x4b\ \xe5\x87\x4a\xe2\x85\x4a\xe4\x86\x4a\xe4\x85\x4a\xe3\x86\x48\xe7\ \x8d\x54\xe9\x95\x5d\xe3\x8c\x5b\xe4\x8b\x55\xe4\x86\x48\xe5\x87\ \x4c\xe3\x87\x4b\xe4\x86\x4b\xe4\x87\x4d\xe4\x87\x4e\xe3\x86\x4c\ \xe4\x8a\x52\xe4\x8c\x59\xe2\x90\x5f\xe2\x8a\x54\xe3\x86\x4b\xe4\ \x87\x4c\xe5\x8c\x57\xe7\x8e\x51\xe5\x8b\x53\xe4\x88\x4d\xe2\x85\ \x4b\xe2\x84\x48\xe2\x83\x47\xe2\x84\x47\xe3\x84\x49\xe1\x8b\x57\ \xe4\x8d\x55\xe3\x86\x48\xe4\x8d\x57\xe5\x96\x65\xe4\x9b\x6f\xdd\ \x95\x6c\xd8\x92\x73\xd7\xab\x9b\xd9\xc2\xbd\xdf\xd1\xcb\xe6\xdc\ \xd8\xea\xe3\xdf\xee\xe9\xe7\xf0\xea\xec\xef\xe9\xea\xef\xe8\xe6\ \xeb\xe5\xe3\xdd\xbf\xb4\xda\xa1\x86\xdc\xa3\x86\xda\xa4\x8b\xdc\ \x9f\x7d\xdf\xa4\x82\xe1\xaf\x96\xdf\xb6\x9f\xde\xbc\xa6\xde\xc7\ \xb4\xe0\xd3\xc5\xe2\xd6\xcc\xe4\xd7\xce\xe5\xd9\xcf\xe5\xd9\xd1\ \xe4\xda\xd1\xe6\xdc\xd3\xe5\xdc\xd3\xe5\xdc\xd3\xe5\xdc\xd3\xe4\ \xdb\xd3\xe4\xda\xd2\xe3\xd9\xd1\xe2\xda\xd1\xe2\xd7\xcf\xe1\xd8\ \xce\xe2\xd6\xcb\xe0\xd4\xca\xe0\xd1\xc8\xdf\xd0\xc4\xde\xce\xc2\ \xdc\xcb\xbf\xdc\xc8\xb9\xdc\xc2\xb3\xdd\xbc\xab\xde\xb6\xa3\xde\ \xaf\x99\xdf\xad\x92\xe1\xb3\x98\xe1\xb6\x9c\xe0\xb7\xa2\xe0\xb7\ \xa0\xde\xbe\xaa\xde\xbf\xac\xdf\xbc\xa9\xde\xbb\xaa\xde\xbb\xa9\ \xde\xb9\xa4\xdf\xb6\x9f\xe0\xb3\x9b\xe1\xb2\x9a\xe0\xb2\x9c\xe2\ \xb3\x9d\xe2\xb4\x9d\xe1\xb2\x9b\xe2\xb1\x99\xe3\xb0\x98\xe0\xac\ \x96\xe1\xab\x8f\xe1\xa8\x87\xdf\xa2\x7d\xdf\x99\x70\xdf\x90\x62\ \xe0\x8e\x5d\xdf\x86\x52\xe1\x7f\x43\xe1\x7f\x40\xe2\x7d\x3f\xe0\ \x7d\x3e\xe4\x79\x38\xe2\x78\x39\xe2\x78\x38\xe2\x78\x3b\xe3\x79\ \x39\xe4\x7a\x3b\xe0\x7b\x3f\xda\x79\x42\xc8\x77\x48\xae\x69\x43\ \xa0\x6a\x52\x82\x60\x4d\x9f\x6d\x4e\x96\x65\x4b\x9d\x6a\x52\x8c\ \x62\x4c\x00\x00\x00\xe3\x86\x4a\xe3\x87\x48\xe5\x87\x47\xe5\x86\ \x47\xe5\x86\x49\xe4\x86\x49\xe5\x86\x48\xe4\x86\x4a\xe5\x85\x48\ \xe3\x86\x4a\xe5\x86\x49\xe4\x86\x49\xe4\x86\x48\xe3\x87\x49\xe4\ \x86\x49\xe5\x86\x4a\xe3\x86\x49\xe4\x87\x4b\xe4\x86\x4b\xe4\x87\ \x49\xe3\x86\x4b\xe3\x86\x4b\xe4\x86\x4c\xe4\x86\x4c\xe4\x85\x4c\ \xe4\x87\x4d\xe4\x86\x49\xe5\x86\x4b\xe4\x86\x4a\xe3\x86\x4a\xe4\ \x86\x4b\xe3\x86\x4a\xe3\x85\x4b\xe4\x85\x49\xe2\x90\x61\xe4\x9f\ \x78\xe5\x92\x60\xe4\x8d\x58\xe5\x88\x4d\xe4\x86\x4c\xe4\x86\x4c\ \xe2\x87\x4e\xe4\x8b\x53\xe4\x88\x4e\xe3\x87\x4b\xe3\x88\x4f\xe4\ \x8a\x53\xe1\x89\x53\xe3\x88\x4f\xe4\x87\x4c\xe6\x8c\x52\xe6\x95\ \x62\xe3\x95\x66\xe4\x8e\x5b\xe2\x89\x50\xe3\x86\x4a\xe2\x84\x49\ \xe1\x83\x48\xe3\x83\x46\xe3\x85\x49\xe5\x8f\x5a\xe3\x92\x5f\xe4\ \x8e\x58\xe4\x9c\x6d\xe0\x9a\x71\xdd\x98\x71\xdf\x8c\x5c\xe1\x85\ \x4f\xdc\x8e\x63\xdd\xa4\x87\xdf\xc5\xb8\xe4\xdb\xd7\xe9\xe1\xdf\ \xeb\xe5\xe5\xec\xe6\xe7\xea\xe5\xe5\xe9\xe4\xe4\xe1\xd7\xd8\xd8\ \xaa\x99\xde\x9e\x7a\xe0\x9f\x76\xdf\xa2\x7b\xe0\xa0\x78\xdf\xa4\ \x7f\xe1\xad\x92\xe2\xb3\x9a\xdf\xc1\xab\xdf\xcd\xbd\xe2\xd5\xcb\ \xe4\xd8\xcf\xe5\xda\xd1\xe4\xdb\xd2\xe5\xda\xd3\xe6\xdb\xd3\xe5\ \xdc\xd4\xe6\xdd\xd4\xe6\xdd\xd4\xe5\xdc\xd4\xe5\xdb\xd3\xe5\xdc\ \xd3\xe3\xda\xd1\xe2\xd9\xd1\xe2\xd9\xcf\xe1\xd6\xce\xe1\xd6\xcc\ \xe0\xd4\xcb\xdf\xd3\xcb\xe0\xd2\xc8\xdf\xd1\xc5\xdf\xce\xc2\xdd\ \xc9\xbb\xdd\xc6\xb5\xde\xc3\xb2\xdf\xbe\xa9\xe0\xbd\xa6\xe0\xbd\ \xa5\xde\xbd\xa7\xde\xc0\xab\xde\xc0\xa9\xdf\xbe\xa8\xdf\xc0\xae\ \xdf\xc2\xaf\xdf\xc0\xae\xde\xbc\xaa\xde\xbc\xa9\xde\xbb\xa8\xe0\ \xb9\xa2\xdf\xb8\xa1\xe0\xb7\xa0\xe0\xb6\x9f\xdf\xb5\x9e\xdf\xb6\ \x9f\xe0\xb6\x9e\xe0\xb4\x9c\xe2\xb2\x9a\xe1\xaf\x97\xe1\xac\x93\ \xe0\xab\x8e\xe1\xa6\x83\xe0\xa0\x7a\xde\x9a\x6f\xdf\x91\x65\xe1\ \x8f\x5d\xe1\x89\x52\xdf\x81\x48\xe1\x7c\x41\xe1\x7d\x3e\xe3\x7b\ \x3c\xe3\x79\x3a\xe3\x79\x3a\xe3\x79\x39\xe2\x79\x3a\xe4\x7a\x3a\ \xe0\x7a\x3d\xd6\x78\x42\xcb\x77\x47\x9d\x66\x4b\x8c\x66\x53\x95\ \x66\x4e\xa4\x6c\x51\xa7\x70\x50\x87\x5e\x46\xa3\x6d\x50\x00\x00\ \x00\xe4\x86\x49\xe3\x87\x48\xe5\x86\x47\xe4\x86\x49\xe5\x85\x49\ \xe3\x85\x48\xe5\x86\x48\xe4\x85\x49\xe5\x86\x47\xe3\x86\x48\xe5\ \x86\x49\xe3\x85\x49\xe3\x85\x4a\xe3\x87\x49\xe2\x86\x48\xe4\x86\ \x4a\xe3\x86\x49\xe4\x85\x4c\xe4\x86\x4b\xe4\x86\x4a\xe4\x86\x4b\ \xe3\x86\x4a\xe4\x86\x4c\xe3\x85\x4c\xe3\x86\x4b\xe3\x87\x4a\xe3\ \x86\x4b\xe4\x86\x4b\xe5\x86\x4a\xe4\x86\x49\xe3\x86\x4a\xe3\x86\ \x4b\xe4\x85\x4b\xe4\x85\x4b\xe2\x85\x4f\xe1\x89\x5a\xe2\x88\x53\ \xe3\x89\x54\xe2\x87\x4f\xe3\x86\x4c\xe3\x87\x4a\xe2\x87\x4e\xe5\ \x8b\x56\xe4\x89\x50\xe2\x87\x4d\xe3\x86\x4c\xe3\x87\x4d\xe2\x88\ \x4d\xe3\x8a\x51\xe3\x88\x4f\xe2\x8c\x58\xe2\x8f\x60\xdf\x8a\x58\ \xe3\x8d\x59\xe2\x88\x4e\xe3\x85\x48\xe2\x83\x47\xe2\x84\x48\xe1\ \x83\x45\xe2\x86\x4c\xe0\x8d\x5f\xe0\x89\x57\xe2\x90\x5e\xdf\x92\ \x67\xde\x8d\x5f\xde\x8d\x5e\xe0\x86\x52\xe1\x83\x4c\xe0\x90\x60\ \xe2\xa9\x86\xdf\xc3\xb4\xde\xd0\xcd\xe1\xd7\xd4\xe5\xdd\xdc\xe4\ \xdc\xde\xdf\xd4\xd4\xdb\xcf\xd1\xd5\xaa\x9e\xda\x90\x67\xde\x9b\ \x73\xde\x9f\x79\xde\xa0\x7f\xdf\xa1\x7e\xdd\xa0\x7e\xdf\xa9\x8d\ \xe2\xb6\x9d\xdf\xc6\xb2\xe0\xd3\xc4\xe4\xd8\xce\xe5\xda\xd1\xe5\ \xdb\xd2\xe6\xdd\xd3\xe4\xdb\xd2\xe5\xda\xd4\xe5\xdc\xd4\xe6\xdc\ \xd4\xe6\xdd\xd4\xe6\xdc\xd4\xe6\xdc\xd3\xe5\xdc\xd3\xe4\xdb\xd2\ \xe3\xda\xd1\xe2\xd9\xd0\xe1\xd8\xce\xe1\xd6\xcd\xe0\xd5\xcc\xe0\ \xd3\xcb\xdf\xd4\xca\xe1\xd3\xc9\xe0\xd1\xc5\xdf\xcf\xc1\xde\xcd\ \xbd\xdc\xca\xbb\xde\xc8\xb5\xdd\xc8\xb6\xdd\xc6\xb6\xdd\xc4\xb2\ \xde\xc5\xb2\xdc\xc8\xb6\xde\xc7\xb4\xdd\xc7\xb5\xdd\xc5\xb6\xdd\ \xc4\xb2\xdf\xc0\xad\xde\xbe\xaa\xdf\xbe\xab\xdf\xbc\xa8\xdf\xbc\ \xa8\xde\xbb\xa8\xdf\xba\xa5\xdf\xb9\xa3\xdf\xb7\xa2\xe0\xb7\xa1\ \xe0\xb6\x9f\xe1\xb3\x9c\xe2\xb1\x99\xe1\xaf\x97\xdf\xac\x91\xe0\ \xa7\x88\xdf\xa1\x7d\xdc\x99\x73\xde\x93\x68\xde\x8c\x5f\xdd\x84\ \x50\xdf\x80\x48\xe0\x7e\x3f\xe1\x7c\x3c\xe2\x7c\x3e\xe3\x7a\x3b\ \xe3\x79\x38\xe3\x7a\x38\xe3\x7a\x39\xe3\x7a\x3a\xe0\x7c\x41\xd2\ \x7b\x48\xb1\x6f\x4b\x9a\x6b\x51\xa0\x69\x4a\xb6\x73\x50\xb2\x72\ \x4e\xae\x6f\x4b\xa0\x6b\x4c\x94\x62\x48\x00\x00\x00\xe3\x86\x48\ \xe4\x85\x49\xe5\x86\x47\xe4\x86\x48\xe3\x85\x49\xe4\x85\x49\xe4\ \x85\x48\xe4\x85\x48\xe4\x85\x48\xe3\x86\x4a\xe3\x87\x4a\xe3\x86\ \x48\xe3\x86\x48\xe4\x86\x4a\xe5\x86\x49\xe4\x86\x4a\xe3\x87\x49\ \xe4\x86\x4a\xe3\x87\x48\xe4\x85\x4a\xe4\x85\x4b\xe4\x86\x49\xe3\ \x86\x4b\xe4\x85\x4b\xe4\x86\x4d\xe3\x86\x49\xe4\x86\x4b\xe4\x86\ \x4a\xe3\x86\x4b\xe4\x85\x49\xe3\x85\x4a\xe4\x87\x4b\xe4\x86\x4b\ \xe3\x86\x4c\xe3\x86\x4d\xe2\x85\x4b\xe2\x86\x4f\xe2\x87\x4e\xe2\ \x85\x4c\xe2\x86\x4e\xe2\x87\x4b\xe3\x88\x4e\xe3\x8a\x55\xe3\x89\ \x51\xe3\x88\x4d\xe4\x87\x4b\xe2\x86\x4b\xe1\x87\x4d\xe3\x89\x54\ \xe2\x88\x4d\xe2\x86\x4b\xe2\x86\x4a\xe2\x84\x49\xe3\x85\x4a\xe3\ \x84\x49\xe1\x84\x47\xe2\x82\x47\xe1\x84\x47\xe3\x83\x46\xe2\x83\ \x47\xe1\x84\x4c\xe3\x8a\x54\xe3\x8f\x5c\xe3\x8e\x59\xe3\x91\x5c\ \xe3\x91\x5f\xe2\x8a\x52\xe1\x88\x4f\xe0\x92\x63\xde\xa3\x81\xdb\ \xaf\x9d\xdb\xb6\xaa\xd8\xbd\xb7\xd8\xc2\xbf\xd9\xb9\xb3\xd5\xa7\ \x98\xd6\x9d\x85\xdc\x8c\x61\xdf\x8f\x5e\xe2\xa0\x76\xde\x9a\x71\ \xdd\x96\x6e\xdc\x92\x69\xdc\x91\x66\xdd\x9c\x77\xe1\xba\xa3\xdf\ \xcc\xbb\xe2\xd6\xca\xe5\xd9\xd1\xe5\xdc\xd3\xe5\xdd\xd4\xe5\xdc\ \xd5\xe6\xdc\xd4\xe5\xdc\xd5\xe6\xdc\xd6\xe7\xdd\xd6\xe7\xdd\xd6\ \xe7\xde\xd5\xe6\xdd\xd4\xe6\xdd\xd4\xe5\xdc\xd3\xe4\xda\xd2\xe4\ \xdb\xd2\xe2\xd9\xcf\xe1\xd8\xce\xe1\xd6\xce\xe2\xd6\xcd\xe0\xd4\ \xcc\xe0\xd5\xcb\xe0\xd3\xc9\xe0\xd2\xc8\xe0\xd2\xc5\xde\xd0\xc2\ \xdf\xcf\xc0\xdc\xcc\xbd\xdc\xca\xbc\xdd\xcb\xba\xdd\xcb\xba\xdc\ \xcb\xbc\xde\xcb\xba\xdd\xca\xbb\xdd\xc9\xb9\xdd\xc7\xb6\xdd\xc4\ \xb3\xde\xc2\xb1\xde\xc1\xae\xdd\xc0\xad\xdd\xc0\xac\xde\xbd\xad\ \xdd\xbd\xa9\xde\xbb\xa7\xde\xba\xa7\xe0\xb9\xa4\xe0\xb8\xa4\xe1\ \xb6\x9f\xe1\xb4\x9c\xe2\xb2\x9a\xe0\xae\x94\xdf\xa9\x8b\xde\xa1\ \x7e\xdb\x92\x6b\xdf\x8c\x61\xde\x89\x5b\xdd\x80\x48\xde\x7d\x42\ \xe1\x7b\x3c\xe3\x7a\x3a\xe3\x7a\x3a\xe3\x7a\x3b\xe2\x7a\x38\xe3\ \x79\x39\xe2\x7b\x3a\xe2\x7a\x3b\xe0\x7d\x42\xcc\x78\x48\xb7\x78\ \x54\xab\x77\x5b\x89\x60\x4f\x92\x6c\x55\x9d\x6a\x52\x80\x58\x46\ \x7e\x5e\x4d\xa0\x69\x48\x00\x00\x00\xe2\x85\x47\xe5\x84\x49\xe3\ \x85\x48\xe3\x84\x48\xe3\x84\x48\xe3\x84\x48\xe4\x84\x48\xe4\x85\ \x46\xe4\x85\x49\xe4\x86\x48\xe3\x86\x49\xe3\x84\x4a\xe3\x86\x4a\ \xe4\x86\x49\xe4\x86\x4a\xe3\x86\x4a\xe4\x87\x4a\xe4\x87\x4a\xe3\ \x87\x49\xe4\x85\x49\xe3\x85\x4a\xe3\x85\x49\xe3\x86\x4b\xe4\x86\ \x4c\xe4\x86\x4a\xe3\x85\x4a\xe3\x86\x4b\xe3\x87\x49\xe4\x85\x4d\ \xe4\x86\x49\xe4\x86\x4a\xe4\x86\x4a\xe3\x87\x4d\xe3\x86\x4c\xe2\ \x85\x4b\xe3\x87\x4d\xe4\x85\x4d\xe3\x86\x4c\xe3\x85\x4e\xe3\x86\ \x4c\xe3\x86\x4b\xe3\x87\x4e\xe3\x89\x50\xe5\x8a\x51\xe4\x89\x4f\ \xe4\x88\x4d\xe3\x87\x4e\xe2\x87\x4b\xe1\x87\x4e\xe3\x87\x4d\xe3\ \x86\x4a\xe2\x86\x4a\xe3\x85\x4a\xe2\x83\x49\xe2\x84\x4a\xe2\x83\ \x47\xe4\x84\x48\xe1\x84\x4a\xe3\x86\x49\xe3\x86\x49\xe5\x8a\x51\ \xe6\x9a\x67\xe8\xa2\x71\xe6\xa0\x72\xe3\xa1\x78\xe0\x98\x6c\xe1\ \x91\x5d\xe1\x92\x5f\xe1\x9b\x6e\xe0\xa0\x78\xdc\x9f\x7f\xdb\xa1\ \x84\xda\x9f\x7f\xdb\xa3\x86\xde\xa6\x8b\xde\x96\x6b\xdb\x90\x62\ \xde\x90\x63\xdf\x93\x61\xe3\xa6\x81\xde\x9b\x73\xde\x91\x60\xdf\ \x91\x5f\xe0\x93\x60\xe4\xa3\x78\xe1\xc2\xaa\xe0\xd2\xc2\xe4\xd7\ \xcc\xe6\xdc\xd3\xe6\xdd\xd4\xe6\xdd\xd4\xe6\xdc\xd6\xe6\xdd\xd5\ \xe6\xdd\xd5\xe7\xdc\xd7\xe5\xdd\xd5\xe8\xdc\xd8\xe7\xdf\xd7\xe6\ \xde\xd7\xe6\xdd\xd5\xe6\xdd\xd4\xe5\xdb\xd4\xe4\xdb\xd2\xe3\xda\ \xd2\xe2\xd9\xd0\xe2\xd7\xcf\xe2\xd7\xce\xe1\xd6\xcc\xdf\xd4\xcc\ \xe0\xd5\xcb\xe0\xd3\xcb\xe0\xd2\xc9\xe0\xd1\xc6\xdf\xd1\xc5\xdd\ \xce\xbf\xdd\xce\xbf\xdf\xcf\xc2\xde\xce\xbf\xde\xce\xc1\xdd\xcc\ \xbf\xde\xcc\xbd\xdd\xcb\xbb\xde\xc9\xb9\xdd\xc8\xb7\xdc\xc5\xb5\ \xdc\xc4\xb3\xdd\xc3\xb1\xde\xc2\xb2\xdf\xc1\xae\xde\xbe\xab\xdd\ \xbd\xaa\xdd\xbc\xa9\xdd\xba\xa8\xe0\xb9\xa5\xe0\xb8\xa2\xe0\xb6\ \x9f\xe2\xb3\x9d\xe1\xaf\x97\xdf\xab\x8e\xde\xa3\x81\xde\x96\x6e\ \xe0\x8f\x61\xdf\x8e\x5f\xde\x83\x4b\xdf\x7e\x40\xe1\x7c\x3e\xe2\ \x7a\x3c\xe3\x7a\x3a\xe3\x7c\x3d\xe2\x7c\x3e\xe3\x7a\x3c\xe3\x7a\ \x3c\xe3\x7a\x3c\xe2\x7d\x41\xcf\x7a\x48\xba\x7b\x56\x88\x70\x69\ \x67\x5b\x56\x83\x62\x56\x8a\x5e\x47\x8b\x5f\x46\xa1\x70\x54\xb0\ \x6b\x42\x00\x00\x00\xe3\x84\x49\xe2\x85\x48\xe3\x85\x46\xe1\x85\ \x47\xe3\x85\x47\xe4\x83\x48\xe3\x84\x48\xe3\x83\x46\xe4\x86\x48\ \xe3\x85\x48\xe4\x85\x48\xe3\x86\x49\xe2\x85\x49\xe4\x86\x4a\xe3\ \x87\x48\xe2\x86\x4a\xe4\x86\x4b\xe3\x86\x49\xe4\x86\x4b\xe2\x86\ \x4c\xe4\x87\x4a\xe4\x86\x4b\xe4\x85\x4c\xe3\x86\x49\xe4\x86\x4b\ \xe4\x86\x4a\xe4\x87\x4b\xe3\x85\x4a\xe3\x85\x4a\xe4\x86\x49\xe3\ \x87\x4b\xe2\x87\x4c\xe3\x86\x4b\xe3\x86\x4b\xe3\x86\x4f\xe1\x87\ \x4b\xe3\x85\x4b\xe3\x85\x4b\xe3\x85\x4d\xe2\x87\x4b\xe2\x87\x4c\ \xe4\x87\x4d\xe4\x8c\x53\xe4\x8d\x57\xe3\x88\x4f\xe2\x88\x4d\xe3\ \x86\x4d\xe2\x85\x4a\xe3\x85\x4b\xe3\x85\x4a\xe2\x85\x4a\xe3\x84\ \x49\xe1\x86\x4a\xe2\x85\x49\xe1\x84\x46\xe1\x84\x46\xe1\x85\x4a\ \xe3\x87\x4f\xe4\x8a\x53\xe5\x92\x5a\xe4\x99\x68\xe4\xa9\x85\xe7\ \xb2\x95\xe0\xa7\x86\xe0\x9d\x73\xe2\x9e\x73\xe4\x9a\x6c\xe3\x9c\ \x6e\xe3\xa5\x7f\xe3\xab\x8a\xe0\xa5\x7e\xe0\xa3\x7a\xe3\xa6\x7e\ \xe2\xa4\x7e\xde\xa5\x84\xe0\xa0\x78\xe1\x9a\x6c\xe0\x96\x69\xe1\ \x9c\x6e\xe2\xa5\x80\xde\x9b\x72\xe2\x96\x66\xe5\xa2\x75\xe5\xaa\ \x7f\xe2\xb9\x9b\xde\xcb\xb8\xe0\xd4\xc8\xe4\xd9\xd0\xe5\xdc\xd3\ \xe7\xde\xd5\xe6\xde\xd4\xe8\xdd\xd7\xe7\xdd\xd7\xe7\xdd\xd7\xe6\ \xde\xd6\xe6\xde\xd8\xe8\xde\xda\xe7\xe0\xd8\xe7\xe0\xd7\xe7\xde\ \xd7\xe5\xdf\xd5\xe5\xdc\xd7\xe5\xdc\xd3\xe3\xda\xd2\xe3\xda\xd2\ \xe4\xd9\xd0\xe2\xd9\xcf\xe0\xd7\xcd\xe0\xd6\xcc\xe0\xd6\xcc\xdf\ \xd4\xcb\xe0\xd4\xca\xdf\xd2\xca\xdf\xd1\xc5\xe0\xd0\xc4\xe1\xd0\ \xc3\xdf\xd1\xc5\xde\xd0\xc4\xde\xce\xc2\xdd\xcd\xc0\xdd\xcd\xbf\ \xdd\xcc\xbd\xdd\xcb\xbb\xdc\xca\xba\xdd\xc6\xb7\xdc\xc5\xb5\xdc\ \xc4\xb5\xdd\xc4\xb4\xdc\xc3\xb0\xdd\xc0\xaf\xde\xbe\xab\xde\xbd\ \xaa\xdd\xbc\xaa\xde\xba\xa7\xe0\xb9\xa5\xe0\xb7\x9f\xe1\xb4\x9e\ \xe1\xb0\x9a\xe0\xab\x90\xdd\xa1\x80\xdf\x9b\x74\xdf\x99\x70\xe0\ \x94\x68\xe0\x8b\x57\xdf\x81\x45\xe0\x7c\x3b\xe2\x7a\x3c\xe1\x7b\ \x3b\xe0\x7f\x41\xe0\x7d\x42\xe2\x7b\x3d\xe4\x7c\x38\xe4\x7a\x3c\ \xe0\x7b\x44\xd5\x78\x45\xa6\x70\x54\x75\x61\x59\x90\x68\x55\xa0\ \x6a\x50\x96\x64\x4a\xa1\x69\x49\xc9\x7c\x4c\xcd\x7c\x4b\x00\x00\ \x00\xe5\x86\x4a\xe3\x86\x49\xe3\x84\x46\xe4\x83\x47\xe4\x83\x45\ \xe2\x83\x46\xe3\x83\x47\xe5\x86\x4a\xe3\x85\x4b\xe3\x84\x49\xe3\ \x84\x49\xe2\x85\x49\xe3\x86\x49\xe3\x86\x49\xe3\x86\x4a\xe3\x85\ \x4a\xe3\x85\x4a\xe4\x86\x4a\xe3\x85\x4a\xe4\x85\x4b\xe3\x85\x49\ \xe2\x85\x49\xe4\x85\x4b\xe4\x86\x49\xe3\x85\x49\xe3\x86\x49\xe3\ \x86\x4a\xe3\x85\x4a\xe3\x86\x4a\xe4\x86\x4a\xe1\x86\x4e\xe3\x85\ \x4d\xe2\x85\x4d\xe3\x86\x4e\xe2\x87\x4d\xe3\x86\x4d\xe3\x87\x4d\ \xe2\x87\x4c\xe3\x85\x4b\xe3\x86\x4c\xe2\x87\x4c\xe4\x87\x4f\xe4\ \x8c\x58\xe3\x8b\x56\xe3\x87\x4e\xe1\x86\x4d\xe0\x87\x4d\xe2\x85\ \x4d\xe1\x85\x4c\xe3\x87\x4c\xe5\x86\x4d\xe4\x85\x4c\xe2\x85\x4a\ \xe3\x86\x47\xe3\x84\x46\xe1\x83\x49\xe2\x87\x4c\xe2\x8f\x5c\xe3\ \x95\x66\xe4\x9c\x70\xe3\x9e\x73\xe3\xa7\x85\xe1\xab\x90\xe0\xa2\ \x7f\xe4\xa2\x77\xe2\xa4\x7c\xe2\xa1\x78\xe4\xa8\x83\xe2\xaf\x92\ \xe3\xb1\x99\xe4\xb1\x95\xe4\xae\x92\xe2\xb1\x97\xe2\xb2\x9a\xe3\ \xae\x91\xe1\xa9\x86\xde\xa4\x7f\xde\x9e\x74\xe2\xa7\x83\xe4\xae\ \x91\xe5\xa7\x7f\xe6\xae\x83\xe4\xb6\x97\xe2\xbe\xa3\xe0\xc7\xb1\ \xe0\xce\xbd\xe2\xd6\xcc\xe5\xdb\xd3\xe6\xdd\xd4\xe7\xde\xd6\xe7\ \xde\xd7\xe6\xe0\xd7\xe6\xdf\xd6\xe6\xdf\xd7\xe8\xe0\xd9\xe9\xe0\ \xdc\xe8\xe0\xd9\xe9\xe0\xdc\xe9\xe1\xdc\xe8\xe0\xdb\xe7\xdf\xd8\ \xe6\xde\xd7\xe5\xdc\xd4\xe5\xdb\xd4\xe5\xdb\xd4\xe4\xdb\xd2\xe3\ \xda\xd1\xe2\xd9\xcf\xe1\xd8\xcd\xe1\xd7\xcd\xdf\xd6\xcd\xe0\xd5\ \xca\xe1\xd4\xcb\xdf\xd2\xc9\xe0\xd2\xc8\xdf\xd2\xc6\xdf\xd1\xc5\ \xde\xd1\xc5\xe0\xd1\xc5\xdf\xcf\xc2\xde\xce\xc1\xdd\xcd\xbe\xdb\ \xcb\xbb\xdb\xca\xba\xde\xc9\xb9\xdd\xc6\xb6\xdd\xc6\xb5\xdd\xc4\ \xb4\xdc\xc3\xb3\xdd\xc2\xb0\xdd\xbf\xae\xde\xbd\xac\xdd\xbb\xa9\ \xdd\xbb\xa6\xdf\xb9\xa5\xe0\xb7\xa1\xe0\xb4\x9d\xe0\xb0\x9a\xe0\ \xac\x93\xdf\xa4\x83\xdf\x9d\x75\xdf\x9d\x76\xdf\x98\x70\xdf\x8d\ \x62\xdf\x87\x51\xe0\x7e\x42\xe0\x7a\x3c\xe2\x79\x3b\xe0\x7b\x3d\ \xdf\x7c\x40\xe3\x7b\x3d\xe3\x7a\x3b\xe4\x7b\x3e\xdb\x77\x3f\xd6\ \x78\x41\xa4\x6f\x54\x91\x69\x58\xa3\x6d\x4d\x9a\x68\x52\x9d\x61\ \x41\xca\x79\x47\xd7\x7f\x4b\xc0\x75\x4c\x00\x00\x00\xe8\x90\x58\ \xe8\x8d\x54\xe5\x85\x45\xe5\x86\x4a\xe5\x88\x4c\xe6\x8c\x50\xe7\ \x8c\x52\xe5\x8b\x4e\xe4\x87\x4b\xe4\x87\x4b\xe2\x85\x49\xe3\x85\ \x4a\xe2\x85\x4a\xe2\x85\x48\xe2\x85\x48\xe2\x84\x49\xe2\x84\x48\ \xe2\x85\x49\xe4\x86\x4a\xe3\x86\x4a\xe3\x86\x49\xe2\x85\x4a\xe2\ \x84\x49\xe3\x85\x48\xe2\x85\x48\xe2\x84\x49\xe2\x85\x4a\xe3\x84\ \x4c\xe3\x86\x4b\xe3\x85\x4c\xe2\x86\x4a\xe3\x86\x4c\xe2\x86\x4d\ \xe1\x85\x4c\xe1\x86\x4c\xe4\x86\x4d\xe3\x86\x4b\xe2\x86\x4c\xe2\ \x86\x4c\xe3\x86\x4e\xe2\x87\x4b\xe4\x8a\x52\xe4\x8a\x56\xe2\x88\ \x50\xe2\x87\x4d\xe2\x86\x4d\xe2\x87\x4c\xe1\x85\x4c\xe1\x85\x4a\ \xe3\x89\x50\xe5\x8c\x58\xe5\x8e\x56\xe3\x88\x4f\xe2\x85\x4a\xe3\ \x84\x47\xe2\x85\x48\xe2\x8b\x53\xe2\x93\x61\xe3\x9a\x6d\xe5\xa5\ \x7d\xe3\xa4\x7d\xe4\xa7\x85\xe0\xa4\x85\xe4\xa6\x82\xe2\xa7\x84\ \xdf\x9e\x78\xe1\xa4\x7d\xe3\xaf\x94\xe3\xb4\x9b\xe2\xb4\x9d\xe2\ \xb6\x9e\xe3\xb8\xa2\xe1\xb8\xa1\xe1\xb5\x9e\xe2\xb2\x9b\xe3\xb2\ \x97\xe1\xaa\x88\xe1\x9f\x78\xe1\xa5\x82\xe3\xb8\x9e\xe3\xc2\xa7\ \xe1\xc5\xae\xe0\xc9\xb4\xe1\xd0\xbc\xe3\xd6\xc6\xe5\xd8\xca\xe6\ \xdb\xd1\xe7\xde\xd5\xe7\xdf\xd8\xe7\xe0\xd7\xe7\xe0\xd8\xe8\xe0\ \xda\xe8\xe0\xd9\xe9\xe0\xda\xe9\xe0\xdc\xea\xe1\xdd\xea\xe1\xdd\ \xe9\xe3\xde\xea\xe2\xde\xe8\xe1\xdd\xe9\xe0\xdc\xe7\xde\xda\xe6\ \xdd\xd8\xe5\xdc\xd6\xe5\xdc\xd6\xe5\xdb\xd4\xe4\xdb\xd2\xe2\xd9\ \xcf\xe2\xd9\xcf\xe1\xd7\xcf\xe0\xd7\xce\xe1\xd6\xcc\xe2\xd5\xcc\ \xdf\xd3\xcb\xdf\xd3\xca\xdf\xd2\xc9\xe0\xd2\xc8\xe0\xd2\xc7\xdf\ \xd2\xc6\xe0\xd0\xc5\xdf\xcf\xc3\xdd\xcd\xc1\xdc\xcc\xbd\xdc\xca\ \xbc\xdd\xc9\xba\xdc\xc7\xb8\xdc\xc5\xb6\xdd\xc4\xb5\xdc\xc3\xb2\ \xdd\xc2\xb1\xdd\xbe\xaf\xdd\xbd\xaa\xde\xbc\xa8\xdd\xb9\xa7\xdf\ \xb9\xa3\xdf\xb4\x9f\xe0\xb3\x9c\xe2\xb1\x9a\xe2\xaf\x97\xe1\xac\ \x8f\xe2\xa7\x83\xe0\xa2\x7c\xdf\x99\x70\xdf\x8e\x60\xe0\x8a\x59\ \xe0\x81\x49\xdf\x7a\x3c\xe2\x7a\x3a\xe1\x7a\x3b\xe1\x7a\x3b\xe3\ \x7a\x3c\xe4\x7a\x3c\xe2\x7b\x3e\xd4\x77\x42\xc3\x75\x49\xb6\x70\ \x49\x91\x67\x53\xc6\x79\x4d\xa1\x67\x4a\xcd\x78\x3f\xd8\x7f\x4a\ \xb0\x64\x3c\xbf\x76\x4b\x00\x00\x00\xe7\x9c\x6d\xe9\x9c\x6e\xea\ \x99\x62\xeb\xa0\x6d\xea\xa5\x77\xea\xa7\x78\xea\x9f\x6d\xeb\xa2\ \x71\xe6\x8d\x52\xe4\x89\x4e\xe3\x85\x49\xe3\x85\x4a\xe3\x85\x49\ \xe4\x85\x48\xe3\x85\x48\xe3\x85\x49\xe2\x85\x49\xe2\x85\x49\xe4\ \x86\x4d\xe3\x86\x4a\xe3\x87\x4b\xe3\x86\x49\xe3\x86\x49\xe3\x85\ \x47\xe2\x85\x49\xe2\x83\x4a\xe2\x84\x49\xe2\x85\x4a\xe3\x85\x49\ \xe3\x85\x4b\xe3\x85\x49\xe3\x85\x4a\xe2\x86\x4a\xe2\x86\x4b\xe3\ \x86\x4b\xe1\x86\x4a\xe3\x85\x4a\xe2\x86\x4d\xe4\x88\x50\xe4\x88\ \x4e\xe2\x88\x4f\xe4\x8a\x53\xe2\x89\x51\xe2\x88\x4e\xe3\x86\x4e\ \xe1\x87\x4d\xe3\x85\x4b\xe1\x85\x4b\xe2\x87\x4b\xe4\x91\x5c\xe6\ \x97\x65\xe5\x99\x6a\xe5\x94\x5f\xe4\x8f\x58\xe5\x8c\x53\xe3\x89\ \x4f\xe2\x8e\x59\xe3\x96\x67\xe0\x99\x6d\xe3\xa7\x81\xe4\xaa\x87\ \xe4\xa8\x86\xe3\xa4\x7c\xe3\xad\x90\xe3\xaf\x92\xe2\xa5\x7e\xe2\ \xaa\x87\xe2\xb2\x9a\xe1\xb4\x9d\xe1\xb4\x9e\xe0\xba\xa4\xdf\xbd\ \xaa\xde\xbd\xa9\xe0\xbc\xa6\xe1\xb9\xa2\xe1\xb5\x9d\xe2\xb4\x9b\ \xe2\xb0\x90\xe3\xb2\x92\xe1\xc4\xae\xde\xcd\xbc\xdf\xcf\xbf\xe0\ \xd1\xc1\xe3\xd7\xca\xe5\xda\xd0\xe7\xdd\xd4\xe8\xe0\xd7\xe9\xe0\ \xd9\xe9\xe0\xdb\xe8\xe0\xd9\xea\xe1\xda\xeb\xe1\xde\xea\xe2\xdc\ \xeb\xe2\xde\xeb\xe3\xdf\xeb\xe3\xdf\xec\xe3\xdf\xe9\xe3\xde\xe9\ \xe4\xdf\xe9\xe4\xdf\xe9\xe2\xde\xe9\xe0\xdc\xe7\xde\xd9\xe6\xdd\ \xd9\xe5\xdd\xd8\xe4\xdc\xd4\xe5\xdc\xd3\xe4\xdb\xd3\xe3\xda\xd1\ \xe2\xd9\xcf\xe2\xd9\xd0\xe1\xd7\xce\xe2\xd6\xcc\xde\xd4\xcb\xe0\ \xd3\xcb\xe0\xd3\xca\xdf\xd2\xc9\xe0\xd2\xc9\xe0\xd1\xc7\xde\xd0\ \xc4\xdd\xcf\xc3\xde\xce\xc2\xdc\xcb\xbf\xdb\xcb\xbb\xdd\xc9\xbc\ \xdc\xc8\xba\xdc\xc5\xb6\xdc\xc4\xb4\xdc\xc3\xb3\xde\xc2\xb0\xdc\ \xbf\xae\xde\xbd\xab\xde\xbc\xa8\xde\xba\xa6\xdf\xb9\xa2\xe0\xb5\ \x9f\xe2\xb3\x9c\xe2\xb2\x9a\xe1\xb1\x99\xe0\xae\x95\xe0\xaa\x8a\ \xe0\xa4\x81\xde\x9c\x74\xde\x92\x68\xe2\x92\x65\xdf\x86\x55\xdf\ \x7a\x3b\xe0\x7a\x39\xe2\x7a\x39\xe1\x79\x38\xe3\x79\x3a\xe3\x7b\ \x3c\xe2\x7a\x3d\xdf\x7a\x3e\xc9\x76\x45\xbd\x73\x48\xac\x76\x57\ \xa6\x6b\x51\xb0\x6c\x42\xde\x7e\x43\xd3\x7a\x43\xd5\x79\x41\xbf\ \x74\x47\x00\x00\x00\xe3\x9c\x70\xe5\x9d\x73\xe8\xa7\x7f\xe9\xb0\ \x8f\xe8\xb1\x92\xe8\xb5\x98\xe8\xaf\x8c\xe6\xae\x8e\xe8\x9d\x6a\ \xe3\x8b\x53\xe3\x88\x4e\xe3\x85\x49\xe4\x84\x48\xe4\x86\x49\xe4\ \x85\x49\xe5\x87\x4b\xe4\x88\x4f\xe3\x87\x4b\xe3\x86\x4f\xe4\x88\ \x4f\xe5\x88\x4f\xe3\x87\x4c\xe3\x87\x4b\xe4\x89\x4e\xe4\x88\x4d\ \xe4\x87\x4b\xe3\x87\x4c\xe1\x85\x4a\xe1\x84\x48\xe2\x84\x4b\xe2\ \x85\x4b\xe2\x85\x4b\xe2\x85\x4a\xe2\x86\x4c\xe2\x85\x4d\xe1\x86\ \x4c\xe2\x85\x4c\xe2\x88\x4f\xe3\x8e\x59\xe4\x8e\x56\xe4\x89\x53\ \xe2\x89\x4f\xe1\x88\x4f\xe1\x87\x4f\xe1\x86\x4c\xe2\x86\x4a\xe2\ \x85\x4b\xe3\x86\x4b\xe4\x8b\x52\xe5\x9c\x6b\xe4\xa0\x75\xe3\x9d\ \x74\xe3\x99\x6c\xe3\x99\x6c\xe2\x95\x64\xe3\x92\x60\xe1\x8d\x5b\ \xe1\x98\x6c\xe3\x9a\x6e\xe2\xa9\x86\xe5\xb1\x94\xe4\xb2\x95\xe4\ \xb3\x94\xe4\xb3\x98\xe2\xb4\x9b\xe2\xad\x8f\xe2\xaf\x92\xe1\xb1\ \x9b\xe0\xb1\x9b\xe1\xb5\x9e\xdf\xb6\xa1\xdd\xb8\xa6\xdd\xb5\xa1\ \xde\xb9\xa6\xdf\xbb\xa6\xe1\xba\xa1\xe0\xbc\xa5\xdf\xbf\xaa\xe0\ \xc0\xa9\xde\xc8\xb6\xe1\xd0\xc1\xe2\xd6\xc8\xe5\xd8\xcb\xe7\xdb\ \xd2\xe9\xdf\xd6\xe7\xe1\xd7\xe8\xe1\xd9\xea\xe2\xdc\xea\xe2\xde\ \xea\xe1\xdc\xea\xe3\xde\xeb\xe4\xdf\xec\xe5\xe0\xea\xe5\xe0\xeb\ \xe5\xe1\xe9\xe4\xdf\xeb\xe3\xe0\xea\xe4\xdf\xea\xe4\xe0\xea\xe5\ \xe0\xe9\xe4\xdf\xe8\xe2\xdd\xe9\xe0\xdc\xe7\xde\xda\xe5\xdd\xd7\ \xe5\xde\xd6\xe5\xdc\xd7\xe4\xda\xd3\xe4\xda\xd1\xe2\xd9\xd1\xe3\ \xda\xd0\xe1\xd8\xcf\xe1\xd6\xcd\xe0\xd6\xcc\xdf\xd3\xcc\xdf\xd3\ \xca\xdf\xd3\xca\xde\xd2\xc9\xe0\xd0\xc8\xde\xd0\xc4\xdd\xcf\xc3\ \xdd\xce\xc1\xdd\xcc\xbf\xdd\xca\xbe\xdb\xca\xbc\xdd\xc8\xba\xdc\ \xc6\xb7\xdd\xc5\xb5\xdc\xc3\xb1\xdd\xc2\xb2\xde\xc0\xb0\xdd\xbd\ \xab\xdd\xbb\xa7\xdf\xba\xa5\xe0\xb9\xa3\xdf\xb5\xa0\xdf\xb2\x9b\ \xe1\xb2\x9a\xe1\xb0\x99\xdf\xac\x94\xde\xa8\x8a\xde\x9e\x7a\xdc\ \x94\x6c\xdd\x8b\x60\xdf\x8c\x5f\xdf\x89\x59\xe0\x7c\x3f\xe2\x79\ \x39\xe0\x7a\x3b\xe1\x7a\x3a\xe2\x79\x39\xe2\x7a\x3b\xe3\x7b\x3c\ \xe0\x7a\x3d\xd8\x79\x41\xc9\x78\x4a\xac\x72\x59\xa2\x67\x4a\xc0\ \x76\x4a\xd7\x78\x43\xc6\x74\x44\xc2\x72\x45\xb8\x70\x47\x00\x00\ \x00\xe2\x99\x6c\xe5\xa1\x74\xe5\xa7\x84\xe7\xae\x91\xe6\xb3\x99\ \xe4\xb2\x98\xe3\xaa\x8e\xe5\xa5\x81\xe4\xa1\x77\xe6\x91\x59\xe4\ \x8c\x53\xe4\x8a\x51\xe5\x8e\x53\xe5\x90\x58\xe4\x88\x4e\xe4\x8b\ \x55\xe4\x90\x5b\xe5\x8d\x55\xe4\x90\x5a\xe7\x93\x5d\xe6\x8e\x55\ \xe3\x88\x4f\xe3\x8a\x53\xe3\x90\x5e\xe5\x92\x5d\xe4\x95\x60\xe4\ \x8e\x56\xe5\x8a\x4e\xe4\x88\x4d\xe3\x88\x4c\xe1\x84\x49\xe1\x84\ \x49\xe0\x85\x4a\xe1\x85\x4a\xe1\x85\x4b\xe1\x84\x4d\xe2\x85\x4c\ \xe3\x87\x4f\xe3\x8d\x59\xe5\x95\x63\xe4\x8e\x59\xe2\x89\x54\xe2\ \x87\x4f\xe1\x87\x4d\xe0\x86\x4e\xe1\x86\x4e\xe2\x85\x4d\xe2\x86\ \x4c\xe5\x93\x60\xe4\xa5\x7f\xe5\xa4\x7d\xe3\x9b\x72\xe2\x9e\x76\ \xe0\x98\x6d\xe2\x96\x67\xe2\x95\x65\xe2\x8c\x57\xdf\x8e\x61\xe2\ \x9c\x72\xe3\xa7\x86\xe3\xb5\x9e\xe2\xbb\xa4\xe1\xbc\xa7\xe2\xbc\ \xa3\xe1\xb8\xa0\xe1\xb4\x9c\xe1\xb5\x9c\xe1\xb3\x9b\xe0\xae\x95\ \xe0\xb6\x9e\xe0\xb2\x9b\xdf\xb0\x99\xdf\xad\x95\xdf\xae\x99\xdd\ \xb9\xa5\xdf\xc0\xad\xdf\xc4\xb2\xde\xc4\xb1\xde\xc7\xb4\xdf\xcf\ \xbe\xe4\xd6\xc9\xe7\xdb\xd1\xe7\xde\xd5\xe7\xe0\xd7\xe8\xe1\xd8\ \xea\xe2\xdb\xed\xe3\xdf\xed\xe4\xe0\xea\xe3\xdf\xec\xe3\xdf\xeb\ \xe4\xdf\xea\xe5\xe0\xeb\xe4\xe1\xec\xe5\xe1\xed\xe6\xe3\xed\xe7\ \xe2\xeb\xe4\xe1\xe8\xe3\xe0\xe9\xe4\xdf\xeb\xe4\xe1\xeb\xe4\xe1\ \xe9\xe3\xde\xe8\xe1\xdc\xe8\xdf\xda\xe6\xde\xd7\xe7\xde\xda\xe5\ \xdd\xd9\xe5\xdc\xd5\xe5\xdb\xd4\xe4\xdb\xd2\xe2\xd9\xd0\xe1\xd8\ \xce\xe0\xd7\xce\xe0\xd6\xcc\xe0\xd5\xcb\xe1\xd4\xcb\xe1\xd4\xcc\ \xdf\xd3\xc9\xe0\xd0\xc8\xdd\xd0\xc3\xdd\xcf\xc4\xdc\xcc\xc1\xdc\ \xcb\xbf\xdb\xcb\xbb\xdb\xca\xba\xdc\xc9\xb9\xdd\xc7\xb8\xdc\xc6\ \xb7\xdc\xc3\xb2\xdd\xc2\xb2\xdf\xc0\xaf\xde\xbe\xab\xde\xbc\xa7\ \xdf\xbb\xa5\xdf\xb8\xa2\xe0\xb5\x9f\xe0\xb2\x9c\xe0\xb2\x9b\xe0\ \xb0\x99\xde\xab\x94\xdd\xa3\x84\xdd\x9d\x77\xde\x94\x68\xde\x89\ \x5c\xde\x87\x54\xdf\x8a\x56\xdf\x86\x52\xe0\x7a\x3b\xdf\x7a\x3b\ \xe2\x78\x3a\xe2\x79\x39\xe0\x79\x3a\xe4\x7b\x3c\xe2\x7a\x3d\xdb\ \x7a\x41\xd1\x78\x44\xb5\x6b\x40\xcc\x79\x45\xc8\x78\x4a\xd9\x78\ \x40\xce\x79\x46\xb9\x71\x49\xc4\x74\x44\x00\x00\x00\xe4\x9b\x6e\ \xe4\x9e\x76\xe1\xa0\x77\xe0\xa1\x7e\xe3\xad\x93\xe6\xae\x8d\xe7\ \xa9\x85\xe5\xa8\x82\xe6\xa6\x7a\xe4\x98\x67\xe4\x94\x5f\xe5\x94\ \x60\xe5\x9a\x69\xe6\x98\x68\xe4\x8b\x54\xe5\x90\x5c\xe4\x97\x67\ \xe4\x95\x65\xe2\x97\x65\xe6\x9d\x6e\xe5\x99\x67\xe4\x92\x5c\xe1\ \x8d\x57\xe1\x8a\x54\xe2\x90\x5f\xe6\x9c\x6e\xe4\x96\x63\xe6\x98\ \x63\xe6\x96\x60\xe5\x8f\x58\xe1\x85\x48\xe2\x84\x48\xe1\x84\x48\ \xe0\x84\x4a\xe2\x86\x4d\xe4\x89\x4d\xe2\x88\x4c\xe2\x86\x4c\xe1\ \x8c\x59\xe2\x93\x66\xe2\x90\x5d\xe6\x8b\x53\xe2\x88\x4f\xe2\x86\ \x4a\xe1\x87\x4d\xe2\x87\x4c\xe2\x87\x4e\xe2\x89\x4f\xe1\x95\x69\ \xe1\xa1\x7d\xe4\xa3\x7f\xe1\x99\x70\xdf\x96\x6c\xe0\x96\x69\xe2\ \x9c\x70\xe4\x9c\x6d\xe4\x96\x63\xe2\x90\x5c\xe4\xa4\x7b\xe3\xab\ \x89\xe2\xb7\x9e\xe0\xbd\xaa\xdf\xbf\xac\xdf\xc0\xad\xdf\xbe\xa8\ \xe0\xba\xa3\xe0\xb9\xa3\xe0\xb9\xa2\xe0\xb8\x9e\xe0\xbb\xa3\xe0\ \xba\xa4\xe0\xb5\x9d\xe1\xb3\x9b\xe1\xb3\x99\xdf\xb7\xa1\xde\xbe\ \xaa\xde\xc4\xb2\xde\xca\xb8\xdf\xd0\xbe\xe3\xd6\xc9\xe7\xdb\xd2\ \xe9\xe0\xd7\xea\xe2\xda\xeb\xe3\xdd\xed\xe4\xdd\xec\xe6\xe1\xec\ \xe6\xe1\xea\xe4\xdf\xeb\xe5\xe0\xec\xe6\xe1\xeb\xe5\xe0\xec\xe5\ \xe1\xec\xe5\xe2\xee\xe6\xe3\xee\xe8\xe5\xef\xe9\xe6\xee\xe7\xe4\ \xeb\xe4\xe1\xea\xe4\xdf\xec\xe5\xe2\xeb\xe4\xe1\xe9\xe3\xdf\xe8\ \xe1\xdd\xe8\xe0\xd9\xe8\xde\xda\xe7\xde\xd9\xe7\xde\xda\xe6\xdd\ \xd9\xe5\xda\xd6\xe4\xda\xd5\xe4\xdb\xd2\xe3\xd9\xd0\xe2\xd9\xcf\ \xe1\xd8\xce\xe0\xd6\xcc\xdf\xd5\xcb\xdf\xd5\xca\xdf\xd2\xca\xde\ \xd2\xc8\xde\xcf\xc5\xdc\xce\xc4\xdd\xce\xc1\xdc\xcc\xbe\xdd\xcc\ \xbe\xda\xca\xbb\xdb\xca\xb9\xdc\xc7\xb8\xdc\xc5\xb5\xdc\xc4\xb4\ \xdc\xc2\xb2\xdd\xc0\xae\xde\xbe\xaf\xde\xbc\xab\xde\xba\xa7\xdf\ \xb7\xa1\xdf\xb3\x9f\xdf\xb3\x9d\xde\xb1\x9a\xdf\xae\x98\xdd\xaa\ \x90\xde\xa4\x82\xde\x9f\x79\xde\x97\x6f\xdc\x8a\x5a\xde\x86\x52\ \xdf\x88\x55\xdc\x87\x5b\xdf\x7d\x44\xe0\x7a\x3e\xdf\x7a\x3c\xdf\ \x79\x3e\xe1\x79\x39\xe1\x7a\x3c\xe4\x7b\x3e\xdf\x7b\x42\xcd\x77\ \x46\xcb\x77\x45\xcb\x76\x45\xd8\x7d\x46\xd1\x79\x44\xd1\x7a\x45\ \xda\x7e\x45\xca\x7a\x4c\x00\x00\x00\xe6\x9e\x73\xe4\x9c\x71\xe2\ \x9f\x73\xe6\xa6\x7e\xe4\xac\x8e\xe5\xb1\x95\xe6\xb2\x94\xe6\xb0\ \x91\xe5\xac\x88\xe5\xa3\x78\xe4\x9b\x6c\xe4\x9b\x6e\xe3\xa1\x77\ \xe6\x9e\x6e\xe7\x9d\x6b\xe6\x9f\x72\xe6\xa2\x74\xe6\x9f\x72\xe5\ \xa0\x73\xe5\xa6\x7e\xe5\xa8\x7f\xe7\xa6\x79\xe6\x9d\x6a\xe6\x9a\ \x67\xe5\x9d\x6c\xe6\xa6\x7e\xe8\xa7\x7a\xe6\xa8\x7f\xe7\xa9\x82\ \xe5\x99\x69\xe3\x8a\x53\xe3\x87\x4c\xe3\x89\x4e\xe4\x8b\x53\xe4\ \x92\x5b\xe6\x97\x63\xe7\x9a\x65\xe6\x8f\x55\xe3\x8d\x58\xe3\x91\ \x5e\xe2\x91\x5d\xe6\x95\x63\xe4\x91\x5a\xe2\x87\x4c\xe2\x86\x4c\ \xe3\x86\x4d\xe3\x88\x51\xe1\x89\x53\xe1\x8c\x5b\xe1\x99\x71\xdf\ \x9a\x71\xe0\x98\x6e\xe0\x95\x69\xdd\x91\x64\xdd\x94\x6b\xdd\x99\ \x74\xdd\x91\x67\xe3\x9e\x74\xe5\xaf\x92\xe4\xb5\x98\xe1\xb9\xa1\ \xe0\xbe\xaa\xe0\xc3\xae\xe0\xc3\xb1\xdf\xc1\xae\xdf\xc0\xad\xdf\ \xbf\xac\xde\xc0\xad\xde\xc2\xac\xdf\xc4\xb0\xe0\xc3\xb0\xdf\xc1\ \xab\xdf\xbc\xa6\xdf\xb8\xa2\xdf\xbe\xaa\xdf\xc5\xb3\xe0\xca\xb7\ \xe1\xd1\xc3\xe3\xd5\xcb\xe8\xdb\xd2\xe7\xe0\xd7\xe9\xe2\xda\xed\ \xe4\xdf\xee\xe6\xe2\xef\xe7\xe1\xed\xe6\xe2\xed\xe7\xe2\xec\xe7\ \xe2\xeb\xe6\xe1\xeb\xe6\xe0\xec\xe6\xe1\xeb\xe6\xe2\xec\xe5\xe2\ \xed\xe6\xe3\xef\xe8\xe5\xf0\xeb\xe8\xed\xe7\xe4\xeb\xe4\xe1\xe8\ \xe4\xdf\xea\xe3\xe0\xeb\xe4\xe1\xe9\xe4\xe0\xe9\xe2\xdd\xe8\xe0\ \xd9\xe8\xe0\xd9\xe7\xde\xd9\xe7\xdf\xd8\xe6\xdd\xd9\xe4\xdc\xd7\ \xe5\xdc\xd5\xe5\xdb\xd3\xe4\xdb\xd2\xe2\xd9\xd0\xe2\xd9\xd0\xe0\ \xd6\xce\xe0\xd5\xcc\xde\xd3\xcb\xde\xd2\xc9\xdf\xd1\xc7\xdd\xcf\ \xc5\xdc\xce\xc4\xdd\xce\xc3\xdd\xcd\xc2\xdc\xcc\xbe\xdc\xca\xbd\ \xdc\xc9\xbb\xdb\xc8\xb9\xdc\xc5\xb5\xdd\xc5\xb5\xdc\xc3\xb2\xde\ \xc0\xaf\xdf\xbf\xac\xde\xbd\xaa\xde\xba\xa8\xde\xb8\xa3\xdf\xb5\ \x9e\xdf\xb3\x9d\xdf\xb1\x9a\xde\xae\x97\xde\xa9\x8e\xde\xa2\x81\ \xdc\x9e\x79\xdd\x99\x71\xde\x90\x63\xdf\x8a\x59\xdc\x84\x4f\xdc\ \x80\x4c\xde\x7f\x45\xde\x7b\x3e\xe0\x7a\x3c\xe1\x7a\x3a\xe2\x78\ \x3a\xe0\x7a\x3a\xe2\x7a\x3b\xe3\x7a\x3b\xd1\x78\x44\xd0\x77\x45\ \xcd\x77\x47\xdc\x7d\x43\xcc\x78\x48\xbf\x70\x44\xbe\x70\x42\x9f\ \x63\x46\x00\x00\x00\xe5\xa1\x78\xe5\xa4\x79\xe5\xac\x88\xe6\xb1\ \x93\xe4\xb3\x97\xe4\xb7\x9c\xe4\xb8\x9f\xe4\xb3\x95\xe5\xae\x8f\ \xe6\xac\x89\xe6\xa8\x7f\xe4\xa3\x7a\xe4\xa3\x78\xe5\xa8\x83\xe6\ \xac\x87\xe5\xab\x87\xe4\xaa\x88\xe3\xa8\x83\xe4\xa9\x86\xe3\xaa\ \x8c\xe5\xaf\x90\xe5\xb2\x91\xe5\xb0\x8d\xe6\xad\x88\xe7\xae\x89\ \xe5\xb1\x92\xe4\xae\x8f\xe3\xab\x8b\xe3\xa7\x83\xe1\x9a\x6f\xe2\ \x8f\x5b\xe4\x93\x5e\xe4\x98\x66\xe4\x99\x68\xe5\xa1\x74\xe6\xa8\ \x80\xe7\xae\x88\xe9\xaa\x7c\xe7\x9e\x6c\xe4\x98\x66\xe2\x93\x63\ \xe1\x97\x6e\xe1\x8f\x62\xe2\x89\x51\xe2\x8a\x51\xe2\x87\x4f\xe2\ \x8b\x56\xe2\x8b\x55\xe0\x89\x54\xe1\x97\x6b\xe0\x98\x6b\xde\x92\ \x66\xdf\x8d\x5f\xe2\x8a\x55\xdf\x89\x55\xde\x85\x52\xe3\x93\x5e\ \xe4\xaf\x8e\xe3\xb9\x9f\xe2\xbd\xa5\xe1\xbe\xaa\xdf\xc2\xaf\xdf\ \xc5\xb4\xde\xc6\xb6\xdf\xc6\xb4\xdf\xc5\xb4\xdf\xc6\xb3\xde\xc6\ \xb5\xde\xc8\xb7\xde\xca\xba\xdf\xcc\xbc\xdf\xcd\xba\xdf\xc9\xb6\ \xdf\xc7\xb3\xe0\xc6\xb3\xde\xcc\xbb\xe0\xd3\xc5\xe2\xd5\xcb\xe4\ \xd8\xcf\xe7\xdc\xd4\xeb\xe2\xda\xec\xe4\xdf\xee\xe6\xe2\xed\xe6\ \xe2\xef\xe8\xe5\xf0\xe9\xe6\xef\xea\xe6\xee\xea\xe5\xee\xe8\xe4\ \xed\xe8\xe3\xec\xe9\xe3\xed\xe6\xe2\xee\xe7\xe4\xee\xe7\xe4\xef\ \xe8\xe5\xee\xe9\xe6\xed\xe7\xe4\xeb\xe4\xe1\xea\xe3\xdf\xe9\xe2\ \xde\xe8\xe3\xde\xe9\xe2\xde\xe9\xe2\xdd\xe8\xe0\xda\xe8\xe0\xdb\ \xe8\xe0\xda\xe8\xdf\xdb\xe7\xde\xda\xe5\xde\xd6\xe6\xdd\xd7\xe6\ \xdb\xd6\xe4\xdb\xd2\xe3\xd9\xd2\xe2\xd9\xd0\xe1\xd8\xce\xdf\xd6\ \xcc\xde\xd4\xca\xdf\xd3\xc9\xdd\xd1\xc8\xdd\xd0\xc6\xdc\xce\xc5\ \xdc\xce\xc2\xdc\xce\xc1\xdc\xcc\xbe\xdb\xca\xbe\xdb\xca\xba\xdc\ \xc8\xba\xdd\xc6\xb7\xdd\xc5\xb5\xdb\xc3\xb0\xdd\xc2\xb1\xdf\xbf\ \xac\xde\xbc\xaa\xdf\xba\xa8\xdf\xba\xa3\xdf\xb7\xa0\xe0\xb5\xa2\ \xde\xb1\x9a\xdd\xac\x95\xde\xaa\x90\xdf\xa6\x87\xdc\xa1\x7b\xdf\ \x9e\x75\xdf\x9a\x70\xde\x93\x68\xdd\x8a\x58\xdc\x82\x4c\xdf\x7c\ \x43\xdf\x7a\x3d\xe0\x7a\x3c\xe2\x7a\x3b\xe1\x78\x3a\xe0\x7a\x3b\ \xe1\x7a\x3b\xdf\x7a\x3c\xdc\x7a\x3f\xd4\x79\x44\xd9\x79\x40\xd9\ \x7c\x46\xd3\x79\x43\xcf\x78\x43\xd0\x7a\x44\xc0\x75\x49\x00\x00\ \x00\xe2\x9e\x76\xe2\xa4\x7e\xe3\xac\x8d\xe4\xb6\x9b\xe4\xb9\xa0\ \xe4\xbc\xa4\xe3\xbb\xa1\xe4\xb7\x9c\xe4\xb6\x9a\xe4\xb6\x98\xe4\ \xb0\x92\xe5\xac\x8a\xe4\xab\x89\xe4\xb1\x94\xe5\xb1\x96\xe5\xaf\ \x92\xe3\xab\x8d\xe2\xaa\x89\xe3\xaa\x8b\xe2\xaa\x8e\xe4\xb4\x9a\ \xe2\xba\xa1\xe3\xbc\xa3\xe3\xbc\xa1\xe3\xbb\xa1\xe5\xb7\x9f\xe5\ \xb2\x95\xe5\xac\x8d\xe6\xaa\x84\xe3\x9e\x70\xe5\x9b\x6b\xe4\xa2\ \x77\xe3\xa3\x78\xe4\xa5\x7c\xe5\xad\x8c\xe5\xb1\x92\xe5\xb5\x9d\ \xe6\xb9\x9d\xe7\xaf\x8a\xe5\xa3\x77\xe4\x9b\x6c\xe3\x95\x63\xe2\ \x89\x55\xe1\x86\x51\xe0\x89\x54\xe4\x8d\x54\xe3\x92\x61\xe4\x94\ \x60\xe2\x8e\x59\xe2\x9b\x70\xe3\x9f\x74\xe2\x94\x64\xe4\x95\x63\ \xe5\x9e\x6f\xe6\x9e\x6e\xe8\xa0\x6e\xe7\xb0\x87\xe2\xbc\xa4\xe1\ \xc0\xaa\xe1\xc3\xaf\xe0\xc4\xb0\xdf\xc5\xb1\xdd\xc7\xb6\xdd\xc8\ \xb8\xdd\xc8\xb7\xde\xc9\xb9\xdf\xc9\xba\xde\xca\xba\xde\xcc\xba\ \xdf\xcf\xbe\xe1\xd1\xc4\xe2\xd3\xc6\xe1\xd2\xc4\xe1\xd1\xc3\xe2\ \xd0\xc3\xe0\xd1\xc3\xe1\xd3\xc9\xe3\xd7\xcf\xe6\xdc\xd4\xe9\xe0\ \xd6\xeb\xe2\xde\xed\xe4\xe1\xec\xe6\xe2\xee\xe7\xe3\xf0\xe9\xe6\ \xf2\xec\xe9\xf3\xed\xea\xf2\xed\xea\xef\xea\xe7\xef\xe9\xe6\xee\ \xe9\xe6\xee\xe7\xe4\xed\xe6\xe3\xed\xe6\xe3\xed\xe6\xe3\xec\xe5\ \xe2\xeb\xe4\xe1\xea\xe3\xe0\xe9\xe4\xdf\xea\xe4\xde\xe8\xe2\xdd\ \xe9\xe1\xdc\xe6\xe1\xdc\xe8\xe0\xdb\xe9\xe1\xdc\xea\xe1\xdd\xe8\ \xdf\xdb\xe8\xdf\xdb\xe6\xdd\xd8\xe5\xdc\xd7\xe5\xdc\xd6\xe4\xdb\ \xd4\xe3\xda\xd2\xe2\xd9\xd0\xe1\xd8\xcf\xdf\xd6\xcc\xdf\xd5\xcb\ \xe0\xd4\xca\xdd\xd2\xc7\xde\xd0\xc5\xdd\xcf\xc5\xdc\xce\xc2\xdb\ \xcd\xc0\xdb\xcd\xbd\xdc\xcb\xbc\xdc\xca\xbc\xdc\xc9\xba\xdd\xc7\ \xb7\xde\xc5\xb4\xdc\xc3\xb2\xdc\xc2\xb2\xde\xc0\xad\xde\xbd\xaa\ \xdf\xbb\xa8\xe0\xbb\xa4\xdf\xb8\xa2\xdf\xb7\xa2\xe0\xb1\x9a\xdc\ \xab\x91\xde\xa9\x8d\xde\xa9\x8d\xde\xa8\x87\xdf\xa5\x82\xdf\xa2\ \x7d\xde\x9c\x75\xdc\x8c\x5f\xdd\x84\x50\xdd\x7d\x44\xdf\x79\x3a\ \xe0\x79\x3a\xe2\x79\x3b\xe0\x79\x3c\xe2\x79\x3a\xe2\x79\x3a\xe0\ \x7a\x3b\xe0\x7a\x3c\xdf\x7b\x3e\xdb\x7a\x41\xd1\x78\x42\xc3\x70\ \x41\xca\x75\x3f\xc9\x78\x46\xb8\x6f\x45\x00\x00\x00\xe4\x9d\x71\ \xe2\xa1\x78\xe3\xad\x8e\xe3\xb8\x9e\xe1\xbc\xa4\xe0\xbd\xa9\xe0\ \xbd\xa6\xe2\xbb\xa3\xe3\xbb\xa3\xe2\xbc\xa1\xe3\xba\x9f\xe3\xb8\ \x9c\xe4\xb4\x9b\xe3\xb3\x9b\xe3\xb1\x99\xe3\xaf\x92\xe1\xaa\x8c\ \xe1\xab\x8e\xe1\xad\x91\xe2\xaf\x92\xe3\xb6\x9d\xe1\xbd\xa7\xe0\ \xc0\xac\xe0\xc0\xad\xe1\xbf\xaa\xe1\xbf\xa9\xe4\xbc\xa2\xe4\xbb\ \x9e\xe5\xb9\x9c\xe5\xb1\x8e\xe6\xab\x86\xe4\xaa\x89\xe4\xae\x8b\ \xe5\xb5\x95\xe4\xb8\x9e\xe3\xbc\xa1\xe4\xbc\xa4\xe3\xbf\xaa\xe4\ \xbe\xa4\xe6\xb6\x96\xe5\xa8\x7e\xe4\xa1\x76\xe2\x94\x61\xe2\x87\ \x50\xe0\x86\x50\xe2\x94\x61\xe6\xa4\x78\xe9\xa7\x7c\xe7\xa1\x70\ \xe4\xa4\x7b\xe5\xa8\x82\xe4\xa2\x73\xe5\xa6\x7f\xe5\xad\x8c\xe5\ \xb3\x93\xe4\xbb\x9d\xe2\xbe\xa7\xe0\xc1\xac\xe0\xc5\xb2\xdf\xc6\ \xb3\xe0\xc7\xb6\xde\xc8\xb7\xde\xc8\xb9\xdf\xcb\xb9\xdf\xca\xbb\ \xdf\xca\xbb\xde\xcb\xbd\xde\xcd\xc0\xde\xce\xc0\xe0\xd1\xc4\xe3\ \xd3\xc6\xe1\xd4\xc9\xe1\xd4\xca\xe1\xd4\xc9\xe0\xd3\xc9\xe2\xd5\ \xcb\xe4\xd7\xcd\xe5\xda\xd1\xe7\xde\xd5\xe9\xe1\xd9\xec\xe3\xdf\ \xec\xe6\xe1\xee\xe7\xe4\xef\xe8\xe5\xf0\xeb\xe7\xf3\xef\xeb\xf3\ \xed\xec\xf1\xed\xeb\xef\xe9\xe7\xee\xe7\xe4\xec\xe5\xe2\xec\xe5\ \xe2\xeb\xe4\xe1\xeb\xe4\xe1\xec\xe5\xe2\xea\xe3\xdf\xe9\xe2\xdf\ \xea\xe4\xdf\xe9\xe4\xdf\xe9\xe3\xde\xe8\xe3\xde\xea\xe1\xdd\xe9\ \xe0\xdc\xe9\xe0\xdc\xea\xe1\xdc\xe9\xe0\xdc\xe8\xdf\xd9\xe8\xdf\ \xdb\xe5\xdc\xd8\xe3\xdb\xd4\xe4\xda\xd5\xe3\xd9\xd3\xe3\xda\xd2\ \xe3\xda\xd1\xe1\xd8\xcf\xe0\xd7\xcc\xdf\xd5\xcb\xdf\xd5\xcb\xde\ \xd2\xc9\xde\xd0\xc7\xde\xcf\xc6\xdd\xce\xc3\xdc\xce\xc1\xdc\xcd\ \xc0\xdb\xcc\xbd\xdd\xc9\xbb\xdc\xc9\xb9\xdd\xc7\xb8\xdd\xc6\xb7\ \xdd\xc4\xb3\xdb\xc3\xb0\xdd\xc1\xb0\xde\xbe\xab\xde\xbc\xa9\xe0\ \xbb\xa7\xe0\xb9\xa3\xe1\xb8\xa2\xe0\xb4\x9d\xdf\xaf\x96\xdf\xac\ \x92\xe0\xac\x93\xe0\xac\x92\xdf\xab\x8d\xe0\xa8\x87\xde\x9f\x79\ \xdc\x90\x64\xde\x88\x58\xdc\x82\x4d\xde\x79\x3d\xdf\x79\x3a\xe2\ \x78\x3a\xdf\x78\x3b\xe0\x7a\x3c\xe0\x7a\x3b\xde\x79\x3d\xde\x79\ \x3e\xe1\x7a\x3d\xe0\x79\x3e\xd5\x77\x41\xc5\x74\x44\xbb\x71\x46\ \xc6\x76\x47\xd5\x7b\x44\x00\x00\x00\xe6\xab\x86\xe6\xaf\x8c\xe2\ \xb8\x9e\xe1\xbe\xa7\xe0\xc1\xab\xdf\xc1\xac\xdf\xbe\xaa\xde\xbc\ \xa6\xdf\xbe\xa9\xdf\xc0\xab\xe0\xbf\xaa\xe0\xbd\xa5\xe3\xb5\x9d\ \xe2\xb0\x97\xe4\xb4\x9d\xe3\xb2\x99\xe3\xac\x8d\xe3\xae\x91\xe3\ \xb0\x94\xe2\xb5\x9c\xe1\xbb\xa4\xe0\xbf\xaa\xe0\xc1\xb0\xe0\xc2\ \xaf\xe1\xc2\xaf\xe1\xc4\xb0\xe1\xc4\xaf\xe1\xc3\xae\xe2\xc3\xad\ \xe3\xbe\xa7\xe4\xb7\x9c\xe3\xb4\x99\xe1\xbb\xa1\xdf\xbf\xa8\xe0\ \xc0\xad\xe2\xc4\xaf\xe1\xc1\xab\xe1\xc2\xae\xe2\xc3\xaf\xe3\xbf\ \xa7\xe4\xb5\x97\xe3\xa9\x84\xe2\x98\x69\xe2\x8b\x55\xe3\x8c\x54\ \xe5\xa0\x70\xe7\xb1\x92\xe5\xb6\x9b\xe6\xb1\x93\xe6\xaf\x8e\xe5\ \xb1\x95\xe4\xb5\x95\xe3\xb4\x98\xe4\xb8\x9c\xe2\xbd\xa4\xe1\xbf\ \xab\xe0\xc1\xae\xe0\xc3\xb1\xdd\xc5\xb5\xde\xc8\xb7\xde\xca\xb9\ \xdf\xc8\xb7\xdd\xc7\xb7\xdd\xc8\xb9\xde\xc9\xba\xdd\xca\xbb\xdd\ \xcd\xbf\xde\xce\xc1\xe0\xd0\xc4\xe0\xd1\xc5\xdf\xd3\xc7\xdf\xd4\ \xca\xe1\xd5\xca\xe0\xd3\xca\xe1\xd7\xcb\xe4\xd8\xce\xe3\xd9\xd1\ \xe5\xdc\xd3\xe7\xdd\xd4\xe6\xde\xd8\xec\xe3\xdf\xef\xe6\xe2\xef\ \xe8\xe5\xf1\xea\xe7\xf1\xec\xe9\xf3\xee\xec\xf2\xed\xea\xef\xea\ \xe7\xef\xe7\xe4\xec\xe5\xe2\xeb\xe4\xe1\xe9\xe2\xe0\xe9\xe1\xde\ \xea\xe2\xde\xea\xe3\xdf\xe9\xe3\xde\xe9\xe3\xdf\xe7\xe2\xdd\xe7\ \xe3\xde\xe9\xe3\xde\xe9\xe3\xde\xe8\xe2\xdd\xe7\xe0\xdc\xea\xe1\ \xdd\xe9\xe0\xdc\xe9\xe0\xdc\xe8\xdf\xdb\xe7\xde\xda\xe3\xdb\xd5\ \xe5\xdb\xd3\xe4\xda\xd2\xe3\xda\xd1\xe3\xd9\xd2\xe1\xd9\xcf\xe1\ \xd8\xcf\xe0\xd7\xcd\xe0\xd6\xcc\xdf\xd4\xca\xdf\xd3\xca\xdf\xd1\ \xc9\xde\xd0\xc7\xdc\xcf\xc4\xdc\xce\xc2\xda\xce\xc1\xdc\xcc\xbf\ \xdb\xca\xbc\xdb\xca\xb9\xdd\xc9\xb9\xdc\xc7\xb6\xdc\xc5\xb5\xdc\ \xc4\xb2\xdc\xc2\xb0\xdf\xbf\xad\xde\xbd\xaa\xdf\xbc\xaa\xdf\xba\ \xa3\xe0\xb9\xa3\xe0\xb8\xa1\xe1\xb4\x9d\xe0\xb1\x99\xe1\xb0\x98\ \xe0\xb0\x97\xe1\xaf\x95\xe0\xab\x8f\xde\xa5\x85\xde\x98\x6f\xde\ \x94\x66\xde\x8b\x5a\xde\x7c\x40\xdf\x78\x3a\xe0\x78\x3a\xe1\x79\ \x3a\xde\x7a\x3d\xdf\x7b\x3d\xdf\x7a\x3c\xdf\x7d\x40\xdf\x7c\x3e\ \xe0\x7c\x3e\xcf\x78\x45\xc2\x74\x49\xd6\x7c\x45\xde\x81\x47\xc2\ \x78\x4e\x00\x00\x00\xe3\xb8\x9c\xe3\xbc\xa2\xe1\xc0\xaa\xdf\xc5\ \xb0\xdf\xc6\xb2\xdf\xc5\xb1\xe0\xc3\xaf\xe0\xc2\xad\xe0\xc3\xb0\ \xdf\xc5\xb2\xdf\xc4\xb0\xdf\xc1\xac\xe1\xbe\xa5\xe1\xbb\xa1\xe1\ \xb9\xa2\xe1\xb7\x9d\xe2\xb0\x96\xe2\xb1\x99\xe2\xb6\x9e\xe1\xb9\ \xa0\xdf\xbd\xa6\xde\xbe\xac\xdf\xc3\xb2\xdf\xc4\xb2\xdf\xc4\xb3\ \xde\xc7\xb5\xde\xc7\xb6\xdf\xc6\xb5\xde\xc6\xb4\xdf\xc5\xb0\xe0\ \xbe\xa8\xe1\xbd\xa6\xdf\xbf\xab\xe0\xc3\xaf\xdf\xc5\xb1\xde\xc6\ \xb5\xdf\xc7\xb5\xe0\xc7\xb6\xe0\xc6\xb4\xe0\xc2\xac\xe3\xbf\xa7\ \xe4\xb3\x95\xe3\xa3\x79\xe3\x99\x67\xe3\x9c\x6e\xe5\xad\x8c\xe3\ \xb3\x9a\xe2\xbd\xa5\xe3\xb7\xa0\xe4\xb6\x9d\xe4\xb3\x9b\xe0\xae\ \x98\xe0\xb1\x9c\xe0\xb9\xa3\xde\xbe\xad\xe0\xc1\xb0\xdf\xc3\xb0\ \xdf\xc1\xb0\xdf\xc2\xb0\xdd\xc6\xb6\xdf\xca\xba\xdf\xcb\xba\xdd\ \xc8\xb9\xdd\xc7\xb6\xdd\xc8\xb9\xdd\xcb\xbc\xdc\xcd\xbe\xe0\xd0\ \xc4\xe0\xd0\xc4\xde\xd0\xc5\xdf\xd1\xc7\xe1\xd3\xca\xe1\xd5\xcb\ \xe2\xd6\xcd\xe3\xd6\xcd\xe4\xd8\xd0\xe4\xd8\xd1\xe4\xda\xd3\xe6\ \xdc\xd5\xe5\xdc\xd5\xea\xe1\xdd\xed\xe5\xe2\xee\xe7\xe4\xf0\xea\ \xe8\xf2\xed\xea\xf3\xee\xed\xf2\xed\xea\xee\xe8\xe5\xed\xe5\xe2\ \xea\xe3\xe0\xe9\xe2\xde\xe9\xe0\xdc\xe8\xe1\xdc\xe9\xe1\xdc\xe8\ \xe1\xdc\xe8\xe1\xdc\xe9\xe0\xdc\xe9\xe1\xdd\xe8\xe2\xdd\xe7\xe2\ \xdd\xe9\xe2\xdd\xe8\xe2\xde\xe7\xe1\xdc\xe7\xe1\xdc\xe8\xe1\xdc\ \xe8\xdf\xdb\xe7\xde\xda\xe6\xdd\xd9\xe4\xdc\xd5\xe4\xdb\xd2\xe3\ \xda\xd1\xe2\xd9\xcf\xe1\xd8\xce\xe2\xd8\xcf\xe1\xd7\xcf\xe1\xd7\ \xcd\xdf\xd5\xcb\xdf\xd5\xcb\xdd\xd4\xca\xdd\xd1\xc7\xdc\xd0\xc6\ \xdd\xcf\xc5\xdd\xcf\xc3\xdc\xce\xc2\xdc\xcc\xc1\xdc\xcb\xbf\xdd\ \xca\xbc\xdd\xc9\xb9\xdd\xc8\xb9\xdc\xc6\xb6\xdd\xc4\xb4\xdd\xc3\ \xb2\xde\xc2\xb0\xdf\xbf\xad\xde\xbd\xaa\xdd\xbb\xa8\xdf\xba\xa5\ \xdf\xb9\xa5\xe0\xb6\xa0\xdf\xb4\x9d\xde\xb1\x98\xe1\xb2\x9a\xe1\ \xb2\x9b\xdf\xad\x95\xdd\xa9\x8b\xe1\xa6\x82\xe0\x9f\x78\xdf\x95\ \x69\xe0\x8b\x55\xde\x7e\x42\xe0\x7a\x3c\xde\x7b\x3e\xe1\x7c\x3f\ \xe0\x7b\x3d\xe0\x7a\x3c\xe2\x7e\x3d\xe1\x81\x45\xde\x7f\x44\xd4\ \x7b\x47\xd8\x7a\x3f\xe1\x81\x44\xcc\x80\x52\xb7\x81\x63\x00\x00\ \x00\xe2\xc1\xa9\xe0\xc2\xad\xe0\xc6\xb2\xdf\xc8\xb7\xde\xca\xb8\ \xde\xc9\xb7\xdf\xc9\xb8\xdf\xc8\xb5\xdf\xc8\xb6\xdf\xc8\xb8\xde\ \xc7\xb7\xde\xc7\xb5\xdf\xc5\xb1\xdf\xc1\xab\xdf\xbd\xa6\xdf\xbc\ \xa4\xe2\xb5\x9a\xe1\xb4\x9b\xe1\xb8\xa1\xe0\xbb\xa8\xdf\xbe\xab\ \xdf\xbf\xac\xdf\xc0\xaf\xde\xc2\xb1\xde\xc2\xb1\xdd\xc7\xb6\xde\ \xcb\xb9\xde\xca\xb8\xde\xc8\xb6\xdf\xc6\xb4\xe0\xc3\xb0\xdf\xc4\ \xb0\xdf\xc7\xb2\xdf\xc6\xb5\xdf\xc7\xb4\xde\xc8\xb7\xdd\xca\xb9\ \xde\xca\xb9\xde\xc9\xb7\xdf\xc7\xb4\xe0\xc5\xb1\xe1\xbd\xa4\xe3\ \xaf\x8e\xe2\xa6\x7c\xe3\xaa\x87\xe4\xaf\x94\xe1\xb1\x97\xe1\xbe\ \xa9\xe2\xbb\xa5\xe2\xba\xa3\xe2\xb4\x99\xe0\xab\x8d\xdf\xa8\x8d\ \xe0\xb1\x9b\xde\xb8\xa5\xde\xbb\xa9\xde\xbc\xab\xdf\xbc\xab\xde\ \xc1\xaf\xdd\xc6\xb4\xdd\xc8\xb9\xdf\xca\xbb\xde\xcb\xbc\xde\xcb\ \xba\xdd\xcc\xbc\xdc\xcd\xbe\xde\xce\xc1\xdf\xcf\xc3\xdf\xcf\xc3\ \xdf\xd0\xc7\xe0\xd1\xc7\xe0\xd3\xc9\xe2\xd5\xcb\xe2\xd5\xcc\xe2\ \xd5\xcd\xe3\xd6\xce\xe4\xd7\xd0\xe4\xd9\xd1\xe5\xdc\xd2\xe5\xdb\ \xd3\xe6\xde\xd7\xe9\xe1\xdd\xeb\xe4\xe1\xee\xe8\xe6\xef\xea\xe9\ \xef\xe9\xe8\xef\xe9\xe7\xea\xe3\xe0\xe9\xe2\xdd\xe9\xe0\xdb\xe6\ \xe0\xda\xe7\xde\xd9\xe8\xdf\xda\xe8\xe0\xd9\xe9\xe0\xdb\xe9\xe0\ \xdc\xe8\xdf\xdb\xe9\xe0\xdb\xe8\xe0\xdc\xe7\xe2\xdd\xe9\xe1\xdc\ \xe7\xe1\xdd\xe8\xe1\xdd\xe9\xe0\xdc\xe9\xe0\xdc\xe6\xde\xd8\xe6\ \xdd\xd9\xe5\xdd\xd6\xe4\xdb\xd3\xe2\xdb\xd3\xe2\xd9\xd1\xe2\xd9\ \xcf\xe2\xd9\xd0\xe1\xd8\xcf\xe0\xd7\xcd\xdf\xd6\xcd\xdf\xd5\xcb\ \xde\xd4\xca\xde\xd3\xc9\xde\xd1\xc7\xdd\xd0\xc6\xdc\xcf\xc6\xdc\ \xce\xc4\xdc\xce\xc2\xdb\xce\xc2\xdd\xcc\xc0\xdc\xcc\xbe\xdb\xcb\ \xba\xdc\xc9\xb9\xdd\xc6\xb8\xdc\xc5\xb6\xdc\xc3\xb3\xdc\xc2\xb1\ \xde\xc0\xae\xde\xbd\xac\xdd\xbc\xa9\xde\xbb\xa8\xdd\xba\xa5\xdf\ \xb7\xa1\xdd\xb2\x9c\xde\xaf\x98\xdf\xb2\x9a\xde\xb2\x9b\xdf\xad\ \x96\xe0\xab\x8f\xdf\xaa\x8c\xe0\xa5\x84\xdd\x9c\x75\xde\x93\x69\ \xdd\x84\x4f\xdf\x7b\x3e\xdd\x7c\x40\xdf\x7d\x42\xde\x7e\x41\xdf\ \x7c\x3e\xe0\x7e\x41\xe0\x86\x4f\xe0\x82\x4b\xde\x7f\x47\xda\x80\ \x47\xce\x7e\x4e\xbf\x7e\x5a\xb8\x77\x56\x00\x00\x00\xdf\xc8\xb4\ \xdf\xca\xb7\xde\xcc\xba\xdf\xce\xbe\xdf\xce\xbd\xdf\xce\xbd\xdf\ \xcf\xbe\xde\xce\xbe\xde\xcd\xbc\xdf\xcd\xbd\xde\xcc\xbc\xde\xca\ \xba\xde\xca\xb7\xde\xc7\xb5\xdf\xc1\xad\xde\xc0\xab\xe0\xbf\xa7\ \xe0\xbb\xa3\xe1\xba\xa5\xde\xbb\xa6\xdf\xbd\xaa\xe0\xbf\xac\xdf\ \xbd\xab\xdf\xc0\xae\xdf\xc2\xb0\xde\xc8\xb7\xdf\xcd\xbc\xdf\xcf\ \xbe\xde\xcd\xbc\xde\xcc\xb9\xde\xca\xb9\xde\xca\xb8\xde\xcb\xbb\ \xde\xcb\xbb\xdd\xcb\xb9\xde\xcd\xbb\xdd\xce\xbd\xdf\xce\xbe\xdf\ \xcd\xbc\xdf\xca\xba\xde\xc7\xb5\xdf\xc4\xb0\xe2\xbd\xa5\xe2\xb5\ \x98\xe2\xb6\x9b\xe3\xb6\x9c\xe0\xb8\xa1\xe0\xbe\xa9\xe0\xbf\xaa\ \xe0\xbc\xa6\xe2\xbb\xa1\xe2\xb3\x96\xe1\xae\x8e\xdf\xac\x92\xde\ \xae\x99\xde\xb6\xa1\xdf\xb9\xa6\xdf\xba\xa7\xde\xc1\xae\xdd\xc0\ \xb1\xdc\xbe\xb0\xde\xc6\xb8\xde\xca\xbc\xdc\xcc\xbc\xdc\xcd\xbd\ \xde\xcd\xc1\xde\xcf\xc2\xde\xcf\xc3\xdd\xd0\xc3\xdf\xd1\xc6\xdf\ \xd1\xc7\xe0\xd3\xc9\xe1\xd5\xcc\xe2\xd5\xcd\xe0\xd5\xcc\xe1\xd5\ \xcd\xe1\xd6\xcd\xe1\xd7\xce\xe1\xd8\xce\xe1\xd8\xce\xe3\xd9\xd0\ \xe4\xdb\xd5\xe6\xde\xda\xe8\xe1\xde\xe9\xe4\xe2\xea\xe3\xdf\xe8\ \xe1\xde\xe8\xdf\xdc\xe6\xdd\xd8\xe6\xdd\xd6\xe5\xdd\xd6\xe6\xde\ \xd6\xe6\xdd\xd9\xe7\xde\xd8\xe6\xde\xd7\xe7\xde\xd9\xe7\xdf\xd8\ \xe8\xe0\xd9\xe9\xe1\xdd\xe7\xe1\xdc\xe8\xe1\xdc\xe7\xe1\xdc\xe9\ \xe0\xdb\xe8\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd7\xe5\xdd\xd7\xe5\xdd\ \xd7\xe5\xdc\xd4\xe2\xda\xd3\xe2\xd9\xd1\xe2\xd9\xd0\xe1\xd8\xcf\ \xe1\xd6\xcd\xe0\xd6\xcc\xdf\xd5\xcc\xde\xd4\xca\xdd\xd4\xca\xdd\ \xd1\xc7\xdf\xd1\xc7\xde\xd0\xc5\xdc\xcf\xc6\xdd\xcf\xc3\xdc\xce\ \xc2\xdc\xcd\xc1\xdd\xcd\xc0\xdd\xcc\xbe\xdb\xcb\xbb\xdb\xca\xbb\ \xdd\xc7\xb8\xdc\xc6\xb7\xdc\xc4\xb4\xdc\xc3\xb3\xdc\xc1\xaf\xdd\ \xbf\xae\xdd\xbd\xaa\xdd\xbc\xa9\xdd\xba\xa7\xde\xb8\xa3\xdf\xb6\ \x9f\xe0\xb4\x9c\xdf\xb2\x9b\xdf\xb4\x9e\xe0\xb2\x9b\xe0\xad\x94\ \xdd\xaa\x8e\xdc\xa2\x81\xdd\x9d\x75\xdd\x97\x6f\xdd\x89\x5b\xdc\ \x7d\x44\xdd\x7e\x44\xde\x80\x44\xdd\x7f\x46\xde\x7d\x41\xde\x7e\ \x42\xdb\x7f\x45\xda\x81\x4c\xd7\x81\x4f\xd1\x80\x50\xd0\x83\x54\ \xc6\x7d\x54\xb5\x77\x57\x00\x00\x00\xdf\xcf\xbe\xdf\xd0\xbf\xe0\ \xd1\xc1\xe1\xd2\xc3\xe1\xd2\xc4\xe1\xd2\xc3\xe0\xd3\xc4\xe1\xd2\ \xc4\xe0\xd1\xc2\xe0\xd0\xc2\xe0\xd0\xc2\xde\xcf\xbe\xdf\xce\xbe\ \xde\xcd\xbb\xde\xc7\xb3\xdf\xc4\xb1\xdf\xc2\xb0\xdf\xc0\xac\xdf\ \xbf\xac\xdf\xbf\xab\xdf\xbf\xac\xdf\xbe\xab\xdf\xbe\xab\xe0\xc2\ \xb0\xdd\xc6\xb5\xde\xcb\xb9\xdf\xcf\xbf\xe0\xd0\xc3\xe0\xd1\xc2\ \xdf\xd0\xc1\xdf\xd0\xc0\xde\xce\xbe\xdf\xcf\xbf\xde\xcf\xbf\xdf\ \xcf\xc0\xde\xcf\xbf\xe0\xd1\xc4\xdf\xd0\xc3\xde\xcf\xbf\xde\xcd\ \xbd\xdd\xca\xbb\xdd\xc8\xb7\xde\xc5\xb1\xe0\xc1\xaa\xe0\xc1\xab\ \xe0\xc1\xab\xe0\xc1\xac\xe0\xc3\xaf\xe0\xc3\xb0\xe0\xc2\xae\xe0\ \xc4\xb0\xe1\xc3\xac\xe1\xba\xa2\xe2\xb0\x96\xe1\xae\x92\xdf\xb7\ \xa0\xdf\xba\xa5\xde\xbb\xa8\xdd\xbd\xaa\xdd\xba\xa8\xdd\xb9\xa5\ \xdd\xc2\xb2\xdd\xc9\xba\xdb\xcc\xbc\xdd\xcd\xbf\xde\xce\xc1\xde\ \xcf\xc2\xdd\xcf\xc3\xdd\xcf\xc4\xdd\xce\xc5\xde\xcf\xc6\xdf\xd2\ \xc8\xe0\xd3\xca\xe0\xd3\xcb\xe0\xd3\xcb\xe0\xd4\xca\xdf\xd5\xcb\ \xdf\xd4\xcb\xe0\xd4\xcb\xdf\xd4\xcb\xdf\xd5\xcb\xe0\xd5\xcd\xe1\ \xd8\xcf\xe2\xda\xd4\xe3\xdb\xd8\xe4\xdb\xd7\xe4\xda\xd6\xe4\xdb\ \xd6\xe3\xda\xd6\xe4\xdb\xd4\xe5\xdc\xd5\xe6\xdc\xd7\xe5\xdd\xd8\ \xe6\xdd\xd8\xe5\xdd\xd6\xe6\xde\xd6\xe6\xdf\xd7\xe6\xde\xd8\xe8\ \xdf\xdb\xe8\xe2\xdc\xe9\xe1\xdd\xe6\xe0\xdb\xe8\xdf\xd8\xe7\xdf\ \xd8\xe6\xdd\xd8\xe5\xdc\xd8\xe4\xdc\xd5\xe5\xdc\xd9\xe3\xdb\xd3\ \xe2\xd8\xd1\xe1\xd8\xcf\xe0\xd7\xcd\xe1\xd7\xcd\xdf\xd5\xcb\xde\ \xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdd\xd2\xc8\xdd\xd2\xc8\xde\xd2\ \xc8\xdf\xd0\xc4\xdd\xce\xc5\xdd\xce\xc3\xdd\xce\xc4\xdc\xcd\xc1\ \xde\xce\xc2\xdd\xcd\xc0\xdb\xcb\xbc\xdc\xcb\xb9\xdd\xc8\xbb\xdc\ \xc7\xb8\xdd\xc5\xb5\xdd\xc3\xb5\xdc\xc3\xb3\xdd\xc0\xb1\xdc\xbf\ \xae\xdd\xbe\xab\xdd\xbc\xa9\xdd\xba\xa7\xdd\xba\xa3\xdf\xb7\xa1\ \xe0\xb6\xa0\xdf\xb7\xa2\xe0\xb4\x9e\xe0\xb2\x9a\xdf\xac\x93\xdc\ \xa5\x85\xde\xa1\x7c\xdc\x99\x71\xdc\x8e\x64\xdd\x86\x50\xdc\x83\ \x4b\xdc\x83\x4b\xdd\x7f\x46\xde\x7d\x41\xdd\x7c\x3f\xdc\x79\x3b\ \xda\x7d\x43\xd4\x81\x54\xda\x86\x55\xb2\x6f\x4c\xa9\x71\x55\xa8\ \x75\x55\x00\x00\x00\xe0\xd3\xc8\xe0\xd3\xc7\xe0\xd3\xc5\xe0\xd4\ \xc9\xe1\xd4\xca\xe0\xd4\xc9\xe0\xd4\xca\xe1\xd3\xc8\xe1\xd3\xc7\ \xe0\xd3\xc8\xe0\xd2\xc7\xe1\xd2\xc6\xe1\xd2\xc4\xe0\xd0\xc1\xde\ \xcd\xbc\xde\xc9\xb7\xdf\xc4\xb1\xde\xc2\xaf\xde\xc2\xaf\xe0\xc4\ \xb1\xde\xc6\xb2\xde\xc1\xac\xdf\xc2\xaf\xdf\xc7\xb6\xdd\xc9\xb8\ \xde\xcf\xbe\xe0\xcf\xc1\xe1\xd1\xc4\xe2\xd2\xc5\xe2\xd2\xc6\xe1\ \xd2\xc4\xe2\xd2\xc5\xe2\xd2\xc4\xe1\xd1\xc3\xe1\xd2\xc4\xe0\xd1\ \xc3\xe3\xd2\xc6\xe1\xd1\xc5\xdf\xcf\xc2\xde\xce\xbf\xdd\xce\xbc\ \xde\xcc\xbb\xdf\xca\xb8\xde\xc8\xb6\xde\xc8\xb5\xdf\xc7\xb5\xde\ \xc7\xb5\xdf\xc6\xb3\xde\xc6\xb4\xde\xc6\xb5\xdf\xc6\xb6\xdf\xc5\ \xb3\xe1\xbd\xa7\xe1\xb7\x9e\xe0\xb9\xa0\xdf\xbc\xa6\xdf\xbf\xaa\ \xde\xbd\xaa\xde\xbc\xa6\xdf\xc0\xad\xdf\xc2\xad\xde\xc5\xb3\xde\ \xca\xbb\xdc\xcc\xbd\xdc\xcd\xbe\xdd\xce\xc2\xdd\xce\xc1\xde\xcd\ \xc1\xdd\xce\xc3\xdc\xce\xc4\xdd\xcf\xc3\xde\xd0\xc6\xdf\xd0\xc8\ \xde\xd1\xc7\xdf\xd2\xca\xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\xc8\xde\ \xd1\xc8\xde\xd2\xc8\xde\xd3\xc9\xdd\xd2\xca\xde\xd4\xca\xdf\xd6\ \xcc\xe1\xd6\xce\xe1\xd6\xcf\xe1\xd6\xcf\xe2\xd9\xd0\xe3\xda\xd1\ \xe3\xda\xd1\xe5\xda\xd5\xe4\xdb\xd7\xe5\xdc\xd5\xe5\xdc\xd6\xe5\ \xdc\xd7\xe6\xdd\xd9\xe6\xdf\xd7\xe7\xde\xd9\xe7\xde\xd8\xe8\xdf\ \xdb\xe7\xe0\xdb\xe6\xe0\xd9\xe7\xdf\xd8\xe6\xde\xd7\xe5\xdd\xd6\ \xe4\xdc\xd6\xe4\xdb\xd7\xe6\xdc\xd5\xe2\xd9\xd1\xe2\xd8\xd0\xe1\ \xd8\xce\xe0\xd8\xcd\xdf\xd6\xcd\xde\xd5\xcc\xdf\xd5\xcb\xde\xd4\ \xca\xdf\xd5\xcb\xde\xd3\xc9\xdd\xd2\xc8\xde\xd1\xc8\xde\xd0\xc7\ \xde\xcf\xc6\xde\xce\xc5\xdd\xce\xc3\xdb\xcd\xc1\xdc\xcd\xc1\xdd\ \xcd\xc0\xdc\xcc\xbe\xda\xca\xb9\xdc\xc9\xba\xdc\xc9\xbb\xdc\xc6\ \xb7\xdb\xc4\xb4\xdc\xc3\xb3\xdd\xc3\xb4\xde\xc1\xb0\xdc\xc0\xaf\ \xdc\xbf\xab\xdd\xbc\xaa\xdd\xbb\xa7\xde\xb9\xa5\xe0\xb8\xa2\xe0\ \xb7\xa1\xde\xb4\x9e\xe0\xb2\x9b\xdf\xad\x96\xdf\xa8\x8d\xdd\xa5\ \x82\xdd\x9d\x76\xdc\x97\x6c\xdc\x91\x65\xdd\x8b\x59\xdd\x87\x51\ \xdd\x86\x50\xdd\x83\x4c\xdc\x7d\x42\xdf\x7d\x3b\xe3\x8d\x54\xde\ \x8e\x59\xdf\x91\x62\xbb\x7f\x5b\xac\x7d\x5d\xb2\x81\x69\x00\x00\ \x00\xe1\xd5\xcb\xe1\xd5\xcb\xe2\xd6\xcc\xe3\xd7\xcd\xe3\xd7\xcd\ \xe3\xd6\xcd\xe3\xd6\xcd\xe3\xd7\xcd\xe2\xd6\xcc\xe1\xd6\xcc\xe2\ \xd6\xcc\xe1\xd5\xcb\xe0\xd4\xca\xe1\xd4\xc7\xe1\xd1\xc2\xdf\xcf\ \xbf\xde\xcb\xb8\xdf\xc7\xb3\xe0\xc8\xb6\xdd\xc9\xb8\xde\xc8\xb6\ \xdd\xc6\xb4\xdd\xc7\xb5\xdf\xca\xbb\xdd\xce\xbc\xdd\xce\xc0\xde\ \xcf\xc1\xe0\xd1\xc5\xe1\xd1\xc4\xe1\xd3\xc7\xe2\xd3\xc8\xe1\xd3\ \xc9\xe1\xd4\xc9\xe1\xd3\xc8\xe1\xd3\xc8\xe1\xd3\xc8\xe0\xd1\xc8\ \xdf\xd1\xc6\xe1\xd1\xc4\xe0\xd0\xc3\xde\xd0\xbf\xdd\xce\xbf\xdd\ \xcd\xbd\xde\xcb\xbc\xdc\xcb\xbb\xde\xca\xbb\xde\xc9\xba\xdd\xc9\ \xb8\xdd\xc9\xb8\xde\xca\xb9\xde\xcb\xba\xdd\xc8\xb6\xdf\xc4\xaf\ \xe0\xc3\xae\xdf\xc3\xae\xde\xc5\xb1\xde\xc5\xb2\xde\xc5\xb2\xde\ \xc4\xb0\xdd\xc4\xb4\xdc\xc8\xb7\xde\xc9\xba\xdc\xcb\xbb\xdc\xcc\ \xbd\xdc\xcd\xbe\xdd\xce\xc2\xdb\xcd\xc2\xdc\xce\xc3\xdc\xce\xc2\ \xdc\xce\xc3\xdc\xce\xc4\xdd\xd0\xc3\xdd\xcf\xc3\xdf\xd0\xc6\xdc\ \xd0\xc6\xde\xd0\xc7\xdd\xd0\xc8\xdc\xd0\xc7\xde\xd0\xc7\xdf\xcf\ \xc5\xdd\xd1\xc8\xde\xd1\xc9\xde\xd3\xca\xde\xd4\xc9\xde\xd3\xca\ \xdf\xd5\xcb\xe0\xd6\xcd\xe2\xd7\xce\xe1\xd8\xce\xe2\xd8\xd0\xe3\ \xda\xd1\xe3\xd9\xd3\xe4\xd9\xd5\xe4\xda\xd4\xe2\xda\xd3\xe4\xdc\ \xd5\xe6\xdd\xd9\xe5\xdc\xd8\xe5\xdd\xd8\xe6\xde\xd8\xe6\xde\xd7\ \xe5\xdc\xd8\xe5\xdd\xd6\xe4\xdc\xd5\xe4\xdd\xd6\xe5\xdc\xd5\xe4\ \xdb\xd4\xe5\xdc\xd5\xe2\xdb\xd2\xe1\xd9\xcf\xe1\xd8\xce\xe2\xd8\ \xce\xe1\xd7\xcd\xdf\xd7\xcd\xe0\xd6\xcc\xdf\xd5\xcb\xde\xd4\xca\ \xdf\xd5\xcb\xde\xd4\xca\xde\xd1\xc6\xdd\xd1\xc7\xdc\xd0\xc6\xdb\ \xd0\xc5\xdc\xcf\xc3\xdd\xce\xc3\xdc\xcf\xc3\xdb\xce\xc2\xdb\xcc\ \xbf\xdc\xcc\xbe\xdc\xcb\xbe\xdd\xc9\xbb\xdc\xc7\xb8\xdc\xc6\xb6\ \xdb\xc4\xb5\xdb\xc3\xb1\xdc\xc2\xb2\xde\xc0\xb0\xde\xc0\xae\xde\ \xbf\xac\xde\xbd\xaa\xdc\xbc\xa9\xde\xbb\xa6\xe0\xb9\xa6\xdf\xb8\ \xa0\xe0\xb4\x9d\xdf\xb0\x98\xdd\xab\x90\xdd\xa5\x84\xde\xa1\x7a\ \xdd\x9d\x75\xdc\x98\x70\xdd\x93\x69\xdd\x8c\x5d\xdc\x87\x57\xdd\ \x87\x54\xdd\x85\x4f\xe1\x8e\x53\xe7\xa9\x7f\xe3\xa3\x79\xdb\x9a\ \x6f\xc7\x92\x74\xb7\x87\x6a\x93\x71\x68\x00\x00\x00\xe3\xd8\xce\ \xe2\xd9\xce\xe4\xd8\xce\xe4\xd8\xce\xe4\xd9\xcf\xe3\xd9\xd0\xe4\ \xd9\xcf\xe3\xd9\xcf\xe3\xd9\xcf\xe4\xd9\xcf\xe4\xd7\xce\xe4\xd7\ \xce\xe3\xd7\xcd\xe1\xd5\xcb\xe0\xd4\xc6\xe1\xd3\xc6\xe1\xd1\xc3\ \xdf\xd0\xbf\xe0\xcf\xbe\xe0\xd0\xbf\xde\xce\xbc\xdd\xc9\xb8\xdd\ \xc8\xb8\xdd\xcc\xbb\xdd\xce\xbf\xdc\xcd\xbd\xdd\xcd\xc0\xe1\xd1\ \xc3\xe0\xd1\xc7\xe1\xd3\xca\xdf\xd4\xca\xe1\xd5\xca\xe1\xd5\xcb\ \xdf\xd4\xca\xe0\xd5\xcb\xe0\xd2\xc9\xe0\xd1\xc6\xe1\xd1\xc5\xe0\ \xd0\xc3\xe0\xd0\xc4\xdd\xd0\xc3\xdf\xcf\xc1\xde\xce\xc0\xdc\xce\ \xbe\xdc\xce\xbd\xdc\xcc\xbb\xdd\xcc\xbb\xdd\xcb\xbc\xdd\xcc\xbb\ \xdf\xcb\xbc\xde\xca\xbb\xde\xcb\xba\xdd\xc9\xb8\xdd\xc8\xb7\xdd\ \xc9\xb8\xdd\xca\xb9\xdc\xcb\xba\xdc\xca\xbb\xdd\xca\xba\xdd\xca\ \xb9\xdd\xca\xbb\xdd\xcb\xbb\xdc\xcc\xbc\xdd\xcd\xc0\xdd\xcd\xc0\ \xdc\xcd\xc2\xdb\xcd\xc1\xdc\xce\xc2\xdb\xcd\xc3\xdc\xce\xc1\xdc\ \xce\xc2\xdd\xce\xc2\xdc\xce\xc2\xdd\xce\xc4\xdd\xd0\xc6\xdb\xcf\ \xc5\xdc\xce\xc6\xde\xcf\xc6\xdc\xcf\xc5\xdc\xd0\xc6\xdd\xd1\xc7\ \xdd\xd1\xc7\xde\xd2\xc8\xde\xd3\xc9\xdd\xd4\xc9\xdd\xd3\xc9\xe0\ \xd6\xcc\xe0\xd6\xcd\xe0\xd6\xcd\xe0\xd7\xcd\xe1\xd8\xce\xe2\xd9\ \xd0\xe2\xd9\xd1\xe1\xd9\xd2\xe1\xd9\xd0\xe4\xdb\xd2\xe3\xdb\xd4\ \xe5\xdc\xd8\xe4\xdb\xd6\xe4\xdc\xd6\xe6\xde\xd7\xe5\xdd\xd6\xe3\ \xdb\xd4\xe3\xda\xd3\xe2\xdb\xd3\xe2\xdc\xd3\xe3\xdc\xd4\xe4\xdb\ \xd7\xe4\xdc\xd4\xe2\xda\xd1\xe0\xd8\xce\xe0\xd7\xcd\xe1\xd7\xcd\ \xe1\xd8\xcf\xe1\xd8\xd0\xe0\xd7\xcd\xdf\xd6\xcc\xde\xd4\xca\xde\ \xd4\xca\xdf\xd3\xc9\xdd\xd2\xc8\xdc\xd0\xc6\xdd\xd0\xc4\xdd\xce\ \xc5\xdd\xce\xc4\xdc\xcf\xc4\xdc\xcd\xc2\xdd\xcc\xc0\xdd\xcc\xc1\ \xdc\xcb\xbe\xdb\xc9\xba\xdc\xc8\xbb\xdd\xc6\xb8\xdc\xc5\xb5\xdb\ \xc5\xb4\xdc\xc3\xb3\xdd\xc3\xb3\xdc\xc2\xb1\xdd\xc1\xaf\xde\xc0\ \xad\xdd\xbe\xab\xdf\xbd\xaa\xde\xbb\xa7\xde\xb9\xa4\xe0\xb8\xa2\ \xdf\xb4\x9c\xe0\xad\x94\xdf\xa9\x8d\xdd\xa6\x85\xdd\xa1\x7d\xdc\ \x99\x73\xdc\x97\x6d\xdc\x91\x68\xdc\x88\x5a\xdd\x8a\x59\xdf\x94\ \x65\xe5\xa6\x78\xe5\xb9\xa1\xe3\xb0\x95\xdd\xaa\x8a\xc4\x98\x81\ \xc7\x98\x79\x8f\x78\x6d\x00\x00\x00\xe5\xdb\xd2\xe5\xdb\xd2\xe4\ \xdb\xd2\xe4\xdb\xd2\xe4\xdb\xd2\xe5\xdc\xd3\xe5\xdc\xd2\xe6\xdb\ \xd3\xe5\xdc\xd3\xe4\xdb\xd2\xe5\xdb\xd2\xe5\xda\xd1\xe6\xda\xd1\ \xe4\xd9\xcf\xe4\xd8\xce\xe3\xd7\xcd\xe3\xd7\xcd\xe2\xd6\xcb\xe2\ \xd5\xc9\xe3\xd5\xc5\xe0\xd2\xc3\xde\xcd\xbb\xde\xca\xb9\xde\xce\ \xbe\xdf\xcf\xc2\xdf\xd0\xc0\xe1\xd1\xc3\xe1\xd2\xc4\xe1\xd2\xc5\ \xdf\xd3\xc9\xe1\xd5\xcb\xe2\xd6\xcc\xe1\xd4\xcb\xe0\xd4\xcb\xdf\ \xd3\xc9\xdf\xd2\xc9\xe0\xd1\xc6\xdf\xd1\xc5\xde\xd0\xc4\xdd\xcf\ \xc4\xdd\xcf\xc3\xdf\xd0\xc3\xde\xcf\xc2\xde\xcf\xc1\xdd\xce\xc1\ \xdc\xcd\xbf\xdb\xcd\xbd\xdd\xce\xbe\xdc\xcc\xbc\xdd\xcc\xbc\xdc\ \xcd\xbd\xdd\xcc\xbc\xdd\xcc\xbb\xdc\xcb\xbb\xdd\xcc\xbb\xdc\xcd\ \xbb\xdd\xcc\xbd\xdd\xcc\xbf\xdc\xcc\xbd\xdc\xcc\xbc\xdc\xcc\xbd\ \xdd\xcc\xbd\xdc\xce\xc0\xdc\xcd\xbf\xdc\xcd\xc0\xda\xcd\xc1\xdb\ \xcd\xc1\xdb\xcd\xc1\xdb\xcd\xc3\xdc\xce\xc3\xdc\xcd\xc2\xdc\xce\ \xc3\xdc\xce\xc2\xdc\xcf\xc5\xdc\xce\xc5\xdc\xce\xc4\xdc\xcf\xc4\ \xdb\xcf\xc5\xdb\xcf\xc6\xdc\xcf\xc5\xdc\xcf\xc4\xdc\xd0\xc6\xdc\ \xd2\xc8\xdd\xd2\xc8\xdc\xd3\xc8\xdd\xd4\xca\xdf\xd4\xca\xdf\xd5\ \xca\xdf\xd4\xcc\xdf\xd5\xcb\xdf\xd6\xcd\xe1\xd8\xce\xe2\xd8\xcf\ \xe1\xd8\xcf\xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\xd2\xe2\xdb\xd2\xe3\ \xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe3\xdb\ \xd2\xe2\xdb\xd2\xe3\xdc\xd3\xe3\xdb\xd2\xe2\xda\xd4\xe3\xdb\xd5\ \xe2\xd9\xd2\xe1\xd8\xcf\xe1\xd8\xce\xe1\xd8\xce\xe1\xd8\xcf\xe1\ \xd8\xd0\xe1\xd9\xcf\xe0\xd8\xce\xdf\xd5\xcb\xde\xd5\xca\xe0\xd6\ \xcc\xdf\xd4\xca\xdf\xd3\xc9\xde\xd1\xc4\xdd\xce\xc5\xdd\xd0\xc4\ \xdb\xd0\xc5\xdc\xce\xc2\xdc\xcd\xc1\xdb\xcd\xc0\xdd\xcc\xc1\xdb\ \xcb\xbb\xdc\xc9\xba\xdd\xc9\xba\xdb\xc7\xb9\xdb\xc5\xb7\xdd\xc4\ \xb4\xdd\xc5\xb5\xdd\xc4\xb5\xdd\xc4\xb3\xdc\xc3\xb1\xdd\xc1\xaf\ \xdc\xc1\xad\xdd\xbe\xab\xde\xbc\xa8\xdf\xba\xa5\xde\xb6\x9f\xe0\ \xb0\x9a\xde\xae\x93\xde\xaa\x8e\xdd\xa4\x83\xdd\x9e\x78\xdb\x9b\ \x75\xd8\x8f\x68\xda\x86\x59\xdc\x8a\x59\xde\x9b\x6f\xe3\xb1\x8f\ \xe2\xbc\xa8\xe5\xb6\x9d\xdc\xae\x97\xd5\xaa\x91\xd5\xaa\x8d\xa2\ \x8a\x7b\x00\x00\x00\xe6\xdd\xd4\xe5\xdc\xd3\xe6\xdd\xd4\xe6\xdd\ \xd4\xe7\xdd\xd4\xe6\xde\xd4\xe6\xdd\xd5\xe7\xdd\xd4\xe7\xde\xd5\ \xe6\xde\xd5\xe7\xde\xd5\xe6\xdd\xd4\xe6\xdd\xd4\xe7\xdd\xd4\xe6\ \xdb\xd3\xe6\xda\xd2\xe5\xda\xd1\xe5\xd9\xd0\xe5\xd9\xd0\xe5\xd8\ \xcc\xe2\xd6\xc9\xe1\xd3\xc5\xe0\xd1\xc1\xe0\xd1\xc2\xe0\xd2\xc4\ \xdf\xd2\xc7\xe0\xd3\xc8\xe1\xd3\xc7\xe1\xd2\xc7\xdf\xd3\xc9\xe1\ \xd5\xcb\xe1\xd5\xcb\xe0\xd4\xc9\xdf\xd4\xc9\xe0\xd2\xc9\xe0\xd1\ \xc7\xdf\xd1\xc5\xde\xd0\xc5\xdd\xd0\xc6\xde\xd0\xc5\xdc\xcf\xc4\ \xdd\xcf\xc3\xdd\xcf\xc3\xdc\xcf\xc2\xdc\xcf\xc1\xde\xce\xc1\xdc\ \xcd\xbf\xdc\xcd\xbe\xdc\xcc\xbd\xdd\xcd\xbf\xdd\xcd\xc0\xdd\xce\ \xbe\xde\xce\xbe\xdc\xcd\xbd\xdc\xcd\xbe\xdc\xcd\xbd\xdc\xcd\xbc\ \xdc\xcd\xc0\xdb\xce\xc0\xdd\xce\xc0\xdd\xcd\xbf\xdc\xce\xc0\xdb\ \xcd\xc1\xdb\xce\xc1\xda\xcd\xc0\xdb\xcd\xc0\xda\xcd\xc0\xdb\xcd\ \xc1\xdb\xce\xc1\xdb\xcd\xc2\xdb\xce\xc1\xdb\xcd\xc3\xdc\xce\xc4\ \xdc\xcd\xc4\xdc\xce\xc4\xda\xcd\xc3\xdb\xce\xc3\xdb\xcf\xc4\xdb\ \xce\xc5\xdb\xcf\xc4\xdd\xcf\xc4\xdb\xcf\xc4\xdc\xd1\xc6\xdc\xd2\ \xc8\xdd\xd2\xc8\xdd\xd3\xc9\xdd\xd4\xca\xde\xd4\xca\xde\xd4\xca\ \xde\xd4\xcb\xe0\xd5\xcb\xe0\xd6\xcc\xe0\xd6\xcc\xe1\xd8\xce\xe1\ \xd8\xce\xe1\xd8\xcf\xe2\xd8\xd0\xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\ \xd0\xe1\xd8\xd0\xe1\xd8\xd0\xe3\xda\xd2\xe3\xdb\xd2\xe2\xda\xd2\ \xe2\xda\xd2\xe2\xda\xd3\xe1\xda\xd3\xe3\xdb\xd4\xe3\xd9\xd1\xe2\ \xd9\xd0\xe2\xd9\xd0\xe2\xd9\xcf\xe1\xd9\xcf\xe2\xd8\xd0\xe0\xd7\ \xcf\xe1\xd7\xce\xe0\xd6\xcc\xdf\xd6\xcc\xe0\xd5\xcc\xdf\xd5\xcb\ \xde\xd4\xca\xde\xd2\xc7\xde\xd0\xc7\xdc\xcf\xc7\xdc\xcf\xc5\xdd\ \xce\xc3\xdc\xce\xc3\xdb\xcd\xc0\xdb\xcd\xc0\xdb\xcb\xbd\xdc\xca\ \xbc\xdc\xc9\xbb\xdb\xc9\xbb\xdb\xc7\xba\xdc\xc6\xb7\xdc\xc4\xb7\ \xdc\xc5\xb6\xdc\xc4\xb5\xdc\xc4\xb4\xdc\xc4\xb4\xdb\xc4\xb0\xdc\ \xc1\xad\xdd\xbf\xac\xdd\xbb\xa9\xde\xb9\xa2\xe1\xb5\x9e\xdf\xb3\ \x9b\xe0\xb0\x97\xdd\xa9\x8b\xdd\xa3\x81\xdb\x9b\x75\xd8\x8e\x64\ \xda\x89\x5d\xda\x8d\x5d\xdf\x9f\x74\xe4\xb1\x93\xe4\xba\xa5\xe4\ \xb8\xa1\xe4\xb9\xa0\xde\xb7\xa1\xd8\xb3\x9a\xcb\xa9\x91\x00\x00\ \x00\xe6\xde\xd5\xe7\xde\xd5\xe8\xdf\xd6\xe6\xde\xd7\xe7\xdf\xd6\ \xe6\xdf\xd5\xe5\xdf\xd6\xe7\xde\xd6\xe7\xdf\xd6\xe6\xde\xd6\xe7\ \xdf\xd7\xe6\xe0\xd6\xe9\xe0\xd7\xe8\xdf\xd6\xe8\xde\xd6\xe7\xdd\ \xd6\xe7\xde\xd5\xe6\xdc\xd3\xe6\xdb\xd3\xe5\xda\xd1\xe5\xd8\xcf\ \xe4\xd7\xcd\xe2\xd5\xca\xe1\xd4\xc9\xe0\xd4\xc9\xe0\xd4\xca\xe1\ \xd4\xca\xe0\xd4\xca\xe0\xd3\xc9\xdf\xd3\xc9\xe1\xd4\xcb\xe0\xd4\ \xcb\xdf\xd3\xca\xe0\xd3\xca\xde\xd2\xc8\xe0\xd1\xc6\xdf\xd0\xc7\ \xdf\xd0\xc4\xde\xd0\xc5\xde\xcf\xc5\xdd\xcf\xc5\xde\xd0\xc3\xdd\ \xcf\xc4\xdc\xce\xc4\xdc\xce\xc2\xdd\xcf\xc1\xdd\xce\xc1\xdb\xcd\ \xc0\xdc\xcd\xbf\xdb\xcd\xc1\xdb\xcc\xc1\xdd\xce\xc1\xdb\xce\xbf\ \xdc\xcc\xbf\xdc\xcd\xbf\xdd\xcd\xc0\xdd\xcd\xc0\xdb\xcd\xc0\xdb\ \xce\xc1\xdb\xce\xc0\xdb\xcd\xbf\xda\xcd\xbf\xdb\xcd\xc0\xdc\xcd\ \xc2\xdb\xcd\xbf\xdb\xcd\xc1\xdb\xcc\xc2\xdb\xcd\xc1\xda\xcd\xc2\ \xdc\xce\xc2\xdc\xce\xc3\xdc\xcd\xc2\xdc\xcd\xc3\xdb\xce\xc4\xdc\ \xce\xc2\xda\xce\xc3\xdc\xce\xc2\xda\xce\xc3\xda\xce\xc4\xda\xcf\ \xc5\xde\xcf\xc5\xdb\xcf\xc5\xdc\xcf\xc4\xdc\xd1\xc7\xdd\xd0\xc8\ \xdc\xd2\xc8\xdc\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\ \xd4\xca\xde\xd5\xcb\xdf\xd6\xcc\xe0\xd6\xcc\xe1\xd6\xcd\xe0\xd8\ \xcf\xe1\xd8\xcf\xe0\xd8\xcf\xe0\xd7\xce\xe1\xd8\xcf\xe1\xd7\xcf\ \xe1\xd8\xce\xe1\xd9\xcf\xe2\xda\xd0\xe2\xda\xd1\xe2\xd9\xd1\xe2\ \xda\xd1\xe2\xd9\xd2\xe2\xdc\xd2\xe3\xdb\xd2\xe3\xda\xd2\xe2\xd9\ \xd0\xe1\xd8\xd0\xe0\xd9\xcf\xe0\xd9\xd0\xe0\xd8\xcf\xe1\xd8\xce\ \xe1\xd6\xcd\xde\xd6\xcb\xe0\xd5\xcc\xdf\xd4\xcb\xde\xd3\xca\xdf\ \xd2\xc9\xdc\xd1\xc8\xdc\xd1\xc8\xdd\xd0\xc6\xdd\xce\xc5\xdc\xcd\ \xc3\xdb\xce\xc1\xda\xcd\xc0\xda\xcc\xbe\xdb\xcc\xc0\xdc\xcb\xbf\ \xdc\xca\xbc\xdb\xc9\xbb\xdd\xc8\xb9\xdd\xc8\xb9\xdc\xc7\xb8\xdb\ \xc5\xb6\xdb\xc4\xb5\xdd\xc3\xb4\xdd\xc5\xb4\xdc\xc4\xb1\xdb\xc1\ \xb0\xdd\xbf\xad\xde\xbc\xa9\xdf\xba\xa4\xdf\xb6\x9f\xe0\xb5\x9c\ \xe0\xaf\x95\xdf\xab\x8d\xdd\xa7\x84\xdc\x9e\x76\xdd\x9a\x6f\xdd\ \x99\x6b\xde\xa4\x7d\xe2\xb2\x98\xe2\xbb\xa4\xe1\xbd\xa6\xe1\xbe\ \xa8\xe0\xbd\xa7\xde\xb9\xa1\xdf\xba\xa0\x00\x00\x00\xe6\xdf\xd7\ \xe6\xdf\xd6\xe8\xdf\xd7\xe8\xe0\xda\xe8\xe0\xd9\xe8\xe0\xd8\xe8\ \xe0\xd9\xe8\xe0\xd9\xe8\xe0\xd8\xe9\xe0\xdc\xe8\xe0\xd8\xe8\xe1\ \xd8\xe9\xe1\xd9\xe8\xe0\xd9\xe8\xe0\xd9\xe7\xe0\xd8\xe8\xdf\xd7\ \xe8\xde\xd6\xe7\xdd\xd5\xe5\xdc\xd3\xe4\xdb\xd2\xe5\xd9\xd0\xe3\ \xd8\xcf\xe3\xd8\xce\xe2\xd6\xcc\xe2\xd5\xcd\xe1\xd5\xcc\xe1\xd4\ \xcb\xe0\xd4\xca\xe0\xd4\xc9\xe0\xd5\xcb\xdf\xd5\xca\xdf\xd4\xc9\ \xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\xc7\xdd\xd1\xc7\xdd\xd0\xc6\xdf\ \xcf\xc7\xde\xcf\xc6\xdf\xcf\xc6\xdd\xcf\xc4\xdc\xce\xc2\xdc\xcf\ \xc2\xdc\xce\xc2\xdd\xcf\xc2\xdc\xce\xc2\xdc\xce\xc2\xdb\xcd\xc1\ \xdc\xcd\xc0\xdb\xce\xc1\xdc\xcd\xc0\xdb\xcd\xc1\xdc\xce\xc0\xdc\ \xcd\xbe\xdb\xce\xc0\xdb\xce\xc0\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\ \xc0\xda\xcc\xc2\xda\xcd\xc1\xdb\xce\xc1\xdb\xce\xbf\xdb\xce\xc0\ \xdb\xcd\xc2\xda\xcd\xc2\xdb\xce\xc1\xdb\xcd\xc1\xdc\xce\xc3\xdb\ \xcd\xc2\xdb\xce\xc2\xdc\xce\xc2\xda\xcd\xc3\xdd\xce\xc2\xdb\xcd\ \xc1\xdb\xce\xc2\xda\xce\xc4\xdb\xcd\xc4\xda\xce\xc4\xdb\xcf\xc5\ \xdc\xcf\xc6\xdc\xd0\xc5\xdc\xcf\xc6\xdc\xd0\xc6\xdd\xd2\xc7\xde\ \xd2\xca\xdd\xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\ \xcb\xe0\xd5\xcc\xdf\xd5\xcd\xdf\xd6\xcd\xde\xd6\xcc\xe1\xd7\xcd\ \xdf\xd6\xcc\xe1\xd7\xcd\xe0\xd7\xce\xe0\xd7\xce\xe0\xd7\xcd\xe2\ \xd9\xd0\xe2\xd9\xcf\xe2\xd8\xd0\xe3\xd9\xd1\xe2\xd9\xd0\xe4\xda\ \xd1\xe2\xdd\xd3\xe2\xdb\xd2\xe1\xda\xd1\xe2\xda\xd1\xe1\xd8\xd0\ \xe1\xd8\xcf\xde\xd7\xce\xe0\xd7\xcd\xe1\xd6\xce\xe0\xd6\xcc\xde\ \xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdd\xd3\xc9\xdc\xd3\xc8\xdd\xd1\ \xc9\xdc\xd1\xc5\xdc\xd0\xc6\xdb\xcf\xc5\xdc\xcf\xc3\xdc\xce\xc2\ \xdb\xcd\xc1\xda\xcc\xc0\xda\xcc\xc0\xda\xcb\xbf\xdb\xcb\xbd\xdb\ \xca\xbc\xdc\xc9\xba\xdc\xc9\xb9\xdd\xc8\xb9\xdc\xc7\xb7\xda\xc6\ \xb6\xdd\xc5\xb5\xdc\xc5\xb5\xde\xc5\xb5\xdc\xc5\xb4\xdc\xc4\xb2\ \xdb\xc2\xae\xde\xbe\xaa\xde\xbd\xa8\xdf\xb9\xa4\xe0\xb6\x9f\xe0\ \xb3\x9b\xe1\xb2\x9a\xe2\xb0\x94\xe2\xb0\x90\xe1\xae\x8b\xe2\xb1\ \x94\xe3\xb7\x9f\xe0\xbc\xa5\xdf\xc0\xab\xe0\xc1\xac\xe0\xc2\xac\ \xe0\xbf\xa9\xe2\xbd\xa6\x00\x00\x00\xe9\xe1\xd9\xe9\xe1\xdb\xe9\ \xe2\xdb\xe9\xe2\xdb\xea\xe2\xdc\xea\xe2\xdd\xea\xe2\xdb\xea\xe2\ \xdb\xea\xe2\xdb\xea\xe2\xdc\xeb\xe2\xdd\xea\xe1\xdd\xea\xe1\xdd\ \xea\xe2\xdc\xe9\xe1\xda\xe8\xe0\xda\xe7\xe1\xd8\xe9\xe0\xd7\xe7\ \xde\xd5\xe4\xdb\xd1\xe4\xdb\xd1\xe3\xda\xd2\xe3\xd8\xd0\xe2\xd8\ \xce\xe1\xd7\xcf\xe3\xd7\xce\xe1\xd7\xcc\xe1\xd5\xcd\xe0\xd4\xcb\ \xe0\xd5\xcb\xe0\xd4\xca\xde\xd3\xc9\xde\xd3\xc9\xdf\xd3\xc8\xdf\ \xd2\xca\xde\xd2\xc8\xdd\xd1\xc7\xdd\xd0\xc4\xdf\xd1\xc4\xde\xd1\ \xc7\xdc\xd1\xc7\xde\xcf\xc3\xdd\xcf\xc4\xdd\xce\xc4\xdd\xcf\xc3\ \xdd\xcf\xc6\xdb\xcd\xc1\xdc\xce\xc3\xdb\xcd\xc2\xdb\xce\xc2\xdb\ \xcd\xc0\xdb\xce\xc1\xda\xcd\xc0\xda\xcd\xbf\xdb\xcd\xc0\xdb\xcd\ \xbf\xda\xcd\xc0\xda\xcc\xc0\xdb\xcd\xc1\xda\xcd\xc0\xdb\xcd\xc0\ \xdb\xcc\xc1\xda\xcc\xc0\xdb\xcc\xc1\xdb\xcc\xc2\xdb\xcc\xc2\xda\ \xcc\xc1\xdb\xcc\xc2\xdc\xcc\xc4\xdb\xcd\xc1\xdc\xcd\xc4\xdc\xcd\ \xc2\xdb\xcd\xc1\xd9\xcd\xc3\xdb\xcd\xc1\xdb\xcd\xc1\xda\xcd\xc2\ \xda\xce\xc3\xda\xcf\xc3\xdb\xcd\xc2\xda\xcf\xc5\xda\xce\xc4\xda\ \xcf\xc4\xdb\xd0\xc4\xdb\xce\xc2\xdc\xd1\xc8\xdc\xd2\xc6\xdd\xd2\ \xc8\xdc\xd2\xc8\xdd\xd3\xc9\xdf\xd5\xcb\xde\xd5\xcb\xde\xd4\xcb\ \xde\xd4\xca\xde\xd4\xcb\xde\xd5\xcb\xdf\xd5\xcb\xe0\xd6\xcc\xe0\ \xd6\xcd\xe0\xd7\xce\xe0\xd7\xcd\xe0\xd6\xcd\xe1\xd9\xcf\xe2\xd9\ \xd0\xe3\xda\xd0\xe3\xda\xd1\xe3\xda\xd1\xe1\xd9\xd1\xe1\xda\xd2\ \xe0\xda\xd1\xe2\xda\xd1\xe3\xd9\xd1\xe2\xd9\xd0\xe1\xd8\xce\xe0\ \xd6\xcd\xe0\xd6\xcc\xe0\xd5\xcc\xdf\xd4\xcb\xde\xd4\xca\xdd\xd3\ \xc9\xdc\xd2\xc8\xdc\xd3\xc9\xdd\xd2\xc8\xdd\xd1\xc7\xde\xd0\xc6\ \xde\xd0\xc6\xdd\xd0\xc6\xdd\xce\xc4\xdd\xce\xc6\xdc\xce\xc2\xdc\ \xce\xc1\xdb\xcd\xc0\xda\xcd\xc1\xdb\xcc\xbe\xdb\xcc\xc0\xdc\xcb\ \xbe\xdc\xcb\xbe\xdc\xca\xbc\xdd\xc9\xba\xdd\xc8\xb9\xdd\xc8\xb9\ \xdd\xc8\xb9\xdc\xc7\xb7\xdd\xc6\xb6\xdd\xc5\xb5\xdd\xc5\xb2\xdb\ \xc4\xb0\xdd\xc1\xae\xde\xbf\xab\xdf\xbd\xa7\xe0\xbb\xa4\xe0\xb9\ \xa3\xe0\xb9\xa2\xe1\xba\xa2\xe0\xbc\xa3\xe0\xbd\xa5\xdf\xbd\xa6\ \xdf\xbf\xa9\xe1\xc1\xae\xe0\xc1\xae\xe0\xc1\xae\xdf\xc0\xac\xde\ \xbf\xa9\x00\x00\x00\xeb\xe3\xdc\xea\xe2\xde\xeb\xe2\xde\xe9\xe3\ \xde\xeb\xe4\xdf\xea\xe4\xdf\xea\xe4\xdf\xe9\xe4\xdf\xec\xe3\xdf\ \xe9\xe4\xdf\xeb\xe4\xdf\xec\xe3\xdf\xea\xe4\xdf\xeb\xe2\xde\xea\ \xe2\xdb\xe9\xe1\xda\xe7\xe0\xd8\xe8\xe0\xd7\xe7\xde\xd5\xe6\xdc\ \xd4\xe4\xdb\xd3\xe4\xdb\xd2\xe2\xd7\xce\xe2\xd7\xcd\xe0\xd7\xcd\ \xe1\xd7\xcd\xe0\xd6\xcd\xe0\xd6\xcc\xdf\xd4\xca\xde\xd4\xca\xdf\ \xd4\xca\xdf\xd3\xc9\xde\xd3\xc9\xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\ \xc8\xde\xd2\xc8\xde\xd1\xc7\xdc\xd1\xc7\xdd\xd0\xc5\xdc\xd1\xc7\ \xde\xcf\xc5\xdc\xcf\xc3\xdd\xcf\xc4\xdb\xcf\xc4\xdb\xcf\xc5\xdc\ \xce\xc2\xdb\xce\xc4\xdb\xcd\xc2\xdb\xce\xc3\xdb\xcd\xc1\xda\xcc\ \xc0\xdb\xcc\xc1\xdb\xcc\xc1\xda\xcc\xc1\xda\xcc\xc1\xdb\xcd\xc1\ \xda\xcc\xc0\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xda\xcd\xc0\xdb\ \xcd\xc0\xdb\xcc\xc1\xdb\xcd\xc3\xdb\xcd\xc2\xda\xcc\xc1\xda\xcc\ \xc2\xdb\xcd\xc3\xdb\xcc\xc3\xdb\xcd\xc2\xdb\xcc\xc2\xda\xcc\xc3\ \xd9\xcd\xc0\xda\xcc\xc3\xdb\xcd\xc1\xdb\xcd\xc3\xd9\xcd\xc3\xdb\ \xcd\xc1\xda\xcd\xc1\xdb\xce\xc4\xda\xce\xc3\xda\xce\xc3\xdb\xcf\ \xc4\xdb\xcf\xc4\xdc\xd0\xc6\xdc\xd2\xc7\xdc\xd2\xc6\xdc\xd3\xc8\ \xdd\xd3\xc9\xdf\xd5\xcc\xdf\xd5\xcb\xdf\xd4\xcc\xde\xd4\xca\xde\ \xd4\xcb\xdf\xd4\xca\xde\xd5\xcb\xde\xd6\xcc\xde\xd5\xcb\xdf\xd6\ \xcd\xe0\xd7\xce\xe1\xd8\xce\xe0\xd7\xcf\xe2\xd9\xd0\xe2\xda\xd1\ \xe2\xd9\xd1\xe1\xda\xd2\xe3\xda\xd0\xe2\xd9\xd0\xe0\xd9\xd1\xe2\ \xd9\xd2\xe2\xd9\xd0\xe0\xd9\xd0\xe1\xd8\xcf\xdf\xd6\xcc\xde\xd4\ \xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xdd\xd3\xc9\xdc\xd2\xc8\ \xdc\xd3\xc8\xde\xd3\xc9\xdc\xd2\xc8\xdd\xd1\xc7\xdd\xd1\xc7\xde\ \xd1\xc7\xde\xd0\xc5\xdc\xd0\xc5\xdd\xce\xc4\xdd\xce\xc3\xdb\xcd\ \xc2\xdb\xcd\xc2\xdb\xcc\xc1\xda\xcc\xc0\xdb\xcc\xbd\xdb\xcc\xbf\ \xdb\xcb\xbc\xdb\xca\xbc\xdb\xc9\xbb\xdd\xc9\xba\xdb\xca\xba\xdd\ \xc9\xba\xdd\xc8\xb9\xdc\xc7\xb9\xdc\xc7\xb7\xdd\xc5\xb5\xdc\xc5\ \xb3\xdd\xc3\xb0\xde\xc1\xaf\xde\xc1\xae\xde\xc0\xaa\xdf\xbf\xab\ \xde\xc0\xab\xde\xc1\xab\xde\xc1\xad\xde\xc0\xae\xdf\xc1\xae\xdf\ \xc2\xaf\xde\xc3\xaf\xdd\xc3\xaf\xde\xc3\xae\xdf\xc1\xad\x00\x00\ \x00\xeb\xe4\xe0\xea\xe4\xdf\xea\xe5\xe0\xea\xe5\xe0\xea\xe5\xe0\ \xea\xe5\xe0\xea\xe6\xe1\xe9\xe5\xe0\xea\xe6\xe0\xe9\xe5\xe0\xea\ \xe5\xe0\xe9\xe5\xe0\xea\xe5\xe0\xec\xe4\xe0\xec\xe2\xdf\xe9\xe1\ \xda\xe7\xe0\xd7\xe5\xdf\xd6\xe7\xde\xd5\xe6\xdc\xd4\xe5\xdc\xd3\ \xe4\xdb\xd2\xe2\xd8\xce\xe1\xd7\xcd\xe1\xd7\xcd\xe1\xd6\xcc\xe0\ \xd6\xcc\xdf\xd5\xcb\xdf\xd4\xca\xde\xd4\xca\xdf\xd4\xca\xdf\xd2\ \xc8\xdf\xd3\xc9\xdf\xd3\xc8\xdd\xd3\xc8\xdd\xd2\xc8\xde\xd2\xc8\ \xdd\xd1\xc5\xdc\xd1\xc6\xde\xd0\xc7\xdd\xd1\xc5\xde\xcf\xc5\xdb\ \xd0\xc5\xdc\xcf\xc5\xdb\xd0\xc5\xdd\xcf\xc4\xdc\xcf\xc3\xdb\xce\ \xc2\xdb\xce\xc2\xdc\xcd\xc3\xdc\xce\xc3\xdb\xcd\xc1\xda\xcc\xc0\ \xdb\xcc\xc1\xdb\xcd\xc0\xdb\xcd\xc0\xdb\xcd\xc1\xdb\xcd\xc1\xda\ \xcc\xc0\xda\xcc\xc0\xda\xcc\xc0\xdb\xcd\xc1\xda\xcb\xc1\xdb\xcd\ \xc0\xdb\xcc\xc1\xda\xcc\xc1\xdb\xcc\xc1\xdb\xcc\xc1\xd9\xcd\xc4\ \xd9\xcc\xc2\xda\xcc\xc1\xda\xcc\xc2\xda\xcc\xc1\xdb\xcc\xc1\xd9\ \xcd\xc3\xdb\xcd\xc3\xda\xcd\xc2\xda\xcc\xc2\xd9\xcc\xc0\xdb\xcc\ \xc2\xdb\xcc\xc1\xda\xcd\xc2\xda\xce\xc4\xda\xce\xc3\xda\xce\xc4\ \xdb\xcf\xc4\xdb\xd1\xc6\xdb\xd1\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xde\ \xd3\xcb\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\ \xcb\xdf\xd5\xcb\xdf\xd4\xca\xdf\xd5\xcb\xe0\xd6\xcd\xe0\xd7\xcf\ \xe1\xd8\xce\xe1\xd8\xcf\xe2\xd9\xd1\xe3\xda\xd2\xe2\xd9\xd0\xe1\ \xd9\xd1\xe3\xda\xd1\xe1\xd9\xd0\xe1\xd9\xd0\xe0\xd7\xcf\xdf\xd7\ \xcf\xe0\xd8\xce\xde\xd6\xcd\xdf\xd6\xcc\xde\xd5\xcb\xdf\xd5\xcb\ \xdf\xd5\xcb\xdf\xd5\xcb\xdd\xd3\xc9\xdc\xd2\xc7\xdc\xd2\xc8\xdd\ \xd2\xc8\xde\xd2\xc8\xdd\xd3\xc9\xdd\xd2\xc8\xdd\xd1\xc7\xde\xd0\ \xc7\xdd\xd0\xc5\xdd\xcf\xc3\xdd\xce\xc4\xdc\xcd\xc3\xdb\xcd\xc3\ \xdb\xcc\xc2\xdb\xcd\xc1\xda\xcc\xbf\xdb\xcc\xbf\xdb\xcc\xbf\xdc\ \xcb\xbe\xdb\xcb\xbc\xdc\xca\xbb\xda\xca\xba\xdc\xcb\xbb\xdc\xca\ \xbb\xdd\xca\xb9\xdc\xc9\xb9\xdd\xc8\xb8\xdd\xc7\xb6\xdd\xc6\xb5\ \xdd\xc5\xb3\xdd\xc5\xb4\xdc\xc5\xb1\xdd\xc5\xb2\xde\xc5\xb1\xdd\ \xc5\xb1\xdc\xc5\xb1\xde\xc4\xb1\xdd\xc4\xb1\xde\xc5\xb1\xde\xc5\ \xb1\xdd\xc4\xb1\xdd\xc5\xb0\xde\xc3\xaf\x00\x00\x00\xea\xe6\xe0\ \xea\xe5\xe0\xe9\xe5\xe0\xea\xe6\xe1\xea\xe6\xe1\xea\xe6\xe1\xe9\ \xe6\xe0\xeb\xe5\xe1\xeb\xe5\xe2\xeb\xe5\xe1\xea\xe6\xe1\xea\xe5\ \xe1\xe9\xe5\xe1\xea\xe6\xe1\xec\xe4\xe0\xea\xe1\xdb\xe8\xe0\xd8\ \xe6\xdf\xd6\xe7\xdf\xd6\xe6\xdd\xd4\xe5\xdc\xd3\xe4\xdb\xd2\xe3\ \xd9\xcf\xe1\xd7\xcd\xe2\xd8\xce\xe0\xd6\xcc\xe0\xd6\xcc\xdf\xd5\ \xcb\xdf\xd5\xcb\xdf\xd4\xca\xde\xd3\xc9\xdf\xd3\xc9\xde\xd4\xca\ \xdf\xd3\xc9\xde\xd3\xc9\xdc\xd3\xc7\xdd\xd2\xc8\xdd\xd2\xc7\xdd\ \xd2\xc7\xdd\xd1\xc6\xdd\xd1\xc5\xdc\xd0\xc6\xdc\xd0\xc6\xdc\xd0\ \xc5\xdc\xd0\xc6\xdb\xce\xc3\xdb\xcf\xc5\xda\xce\xc3\xdb\xce\xc4\ \xdc\xcd\xc3\xdc\xcd\xc2\xdb\xce\xc2\xdb\xcd\xc1\xda\xcd\xc1\xdb\ \xcd\xc1\xda\xcd\xc0\xdb\xcc\xc0\xdb\xcc\xc0\xda\xcc\xc0\xdb\xcd\ \xc1\xdb\xcd\xc1\xdb\xcc\xc1\xda\xcc\xc2\xda\xcd\xc0\xd9\xcc\xc0\ \xda\xcb\xc1\xda\xcc\xc2\xd8\xcc\xc0\xda\xcd\xc1\xdb\xcc\xc2\xda\ \xcc\xc1\xda\xcc\xc2\xda\xcc\xc1\xd9\xcc\xc1\xda\xcd\xc2\xd9\xcd\ \xc1\xd9\xcd\xc2\xda\xcc\xc1\xda\xcc\xc2\xdb\xcb\xc3\xd9\xcd\xc2\ \xd9\xcd\xc1\xd9\xcd\xc3\xda\xce\xc2\xda\xcd\xc2\xda\xce\xc2\xdc\ \xd0\xc5\xdb\xd1\xc7\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xde\xd4\ \xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd6\xcc\ \xde\xd4\xca\xde\xd4\xcb\xdf\xd6\xce\xe0\xd7\xce\xe0\xd7\xcd\xe1\ \xd8\xcf\xe0\xd9\xd0\xe0\xd7\xd0\xe0\xd7\xcf\xe0\xd7\xcf\xe0\xd8\ \xce\xe0\xd7\xce\xe1\xd8\xce\xdf\xd6\xcc\xde\xd5\xcc\xde\xd5\xcb\ \xdf\xd5\xcb\xde\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdd\ \xd3\xc9\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd2\xc8\xde\xd2\ \xc8\xde\xd2\xc9\xdd\xd2\xc9\xde\xd1\xc8\xdd\xd0\xc6\xdc\xd0\xc6\ \xdc\xcf\xc5\xdd\xce\xc4\xdb\xcf\xc3\xdc\xce\xc3\xdc\xce\xc2\xdc\ \xce\xc2\xdb\xcd\xc1\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xdb\xcc\ \xc0\xdb\xcc\xbe\xda\xcc\xbe\xdb\xcc\xbe\xdc\xcc\xbc\xdb\xcc\xbb\ \xda\xca\xb9\xdb\xca\xb9\xdc\xca\xba\xdc\xc9\xb8\xdc\xc8\xb7\xdd\ \xc8\xb7\xdd\xc8\xb6\xdd\xc7\xb7\xdd\xc7\xb5\xdd\xc6\xb5\xdd\xc7\ \xb6\xdd\xc7\xb5\xdd\xc7\xb5\xdd\xc5\xb4\xdd\xc5\xb4\xdd\xc5\xb4\ \xdd\xc5\xb2\xde\xc4\xb0\x00\x00\x00\xe9\xe5\xe0\xea\xe6\xe1\xea\ \xe6\xe2\xeb\xe8\xe2\xec\xe7\xe2\xec\xe7\xe2\xec\xe6\xe2\xeb\xe7\ \xe2\xec\xe5\xe2\xea\xe6\xe1\xeb\xe7\xe2\xeb\xe5\xe2\xea\xe6\xe1\ \xe9\xe5\xe0\xeb\xe5\xe0\xeb\xe2\xdb\xe8\xe1\xd9\xe8\xe1\xd8\xe6\ \xdf\xd6\xe5\xde\xd5\xe5\xdd\xd4\xe5\xdc\xd3\xe4\xdb\xd1\xe1\xd9\ \xce\xe1\xd7\xcd\xe0\xd7\xcd\xe0\xd6\xcc\xdf\xd6\xcc\xde\xd5\xcb\ \xdf\xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xde\ \xd4\xca\xdd\xd4\xc9\xdc\xd2\xc8\xdd\xd2\xc8\xdd\xd2\xc7\xdc\xd1\ \xc5\xdd\xd0\xc4\xdb\xd1\xc7\xdb\xd1\xc6\xdc\xd0\xc6\xdc\xd0\xc6\ \xdc\xd0\xc6\xdc\xcf\xc5\xdc\xce\xc3\xdc\xce\xc4\xda\xce\xc2\xda\ \xcd\xc1\xdb\xce\xc1\xda\xcd\xc3\xdb\xcd\xc2\xd9\xcc\xc0\xdb\xcd\ \xc1\xda\xce\xc2\xda\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xdb\xcd\xc0\ \xd9\xcd\xc1\xdb\xcc\xc1\xda\xcd\xc0\xda\xcd\xc1\xda\xcc\xc0\xda\ \xcc\xc2\xd9\xcb\xc0\xda\xcc\xbf\xda\xca\xc2\xd9\xcb\xc1\xda\xcc\ \xc2\xd9\xcc\xc1\xd9\xcd\xc3\xda\xcd\xc1\xd9\xcc\xc0\xd9\xcb\xbf\ \xd8\xcc\xc1\xda\xcc\xc1\xd9\xcc\xc2\xd8\xcc\xc2\xd9\xcc\xc2\xd9\ \xcc\xc1\xd9\xcc\xc0\xda\xcd\xc3\xda\xce\xc4\xdb\xcf\xc5\xdc\xcf\ \xc5\xdc\xd0\xc6\xdb\xd0\xc7\xdd\xd3\xc9\xde\xd4\xca\xdd\xd3\xc9\ \xdd\xd3\xc9\xdd\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\ \xd5\xcb\xe0\xd6\xcc\xdf\xd7\xcd\xe0\xd7\xcd\xdf\xd6\xcf\xde\xd6\ \xcc\xdf\xd6\xcc\xde\xd6\xcb\xde\xd5\xcb\xde\xd5\xcc\xdf\xd5\xcb\ \xdf\xd5\xcb\xde\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd5\xcb\xdf\ \xd5\xcb\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdc\xd2\xc8\xdd\xd3\ \xc9\xdc\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xde\xd3\xc9\xdd\xd2\xc8\ \xdd\xd2\xc8\xdd\xd1\xc8\xdc\xd1\xc7\xdc\xd0\xc6\xdd\xd0\xc8\xdc\ \xd0\xc4\xdc\xcf\xc6\xdc\xce\xc5\xdc\xce\xc4\xdc\xce\xc2\xdb\xcd\ \xc2\xdb\xcd\xc2\xdb\xcd\xc3\xdb\xce\xc1\xdb\xcc\xc1\xda\xcc\xc0\ \xdb\xcd\xc1\xdb\xcd\xc1\xdb\xcd\xbf\xdb\xcd\xbf\xdb\xcc\xbd\xdb\ \xcc\xbd\xdc\xcb\xbb\xdc\xcb\xbb\xda\xca\xb9\xdc\xca\xba\xdb\xca\ \xb9\xdd\xc9\xba\xdd\xc9\xba\xde\xca\xb9\xdd\xca\xb9\xdd\xc9\xb8\ \xdd\xc8\xb9\xdd\xc9\xb8\xde\xc8\xb7\xdd\xc7\xb6\xdc\xc7\xb4\xdc\ \xc5\xb3\x00\x00\x00\xeb\xe8\xe2\xed\xe7\xe3\xee\xe7\xe4\xef\xe8\ \xe4\xef\xe8\xe4\xee\xe9\xe5\xed\xea\xe5\xee\xea\xe5\xec\xe8\xe3\ \xed\xe8\xe2\xec\xe6\xe3\xec\xe6\xe3\xed\xe5\xe3\xeb\xe7\xe1\xec\ \xe6\xe1\xe9\xe4\xdf\xec\xe4\xe0\xe9\xe3\xde\xe9\xe2\xdb\xe5\xde\ \xd6\xe6\xde\xd5\xe6\xdc\xd5\xe5\xdc\xd3\xe4\xdb\xd2\xe1\xd8\xcd\ \xe2\xd7\xce\xe1\xd7\xcd\xdf\xd6\xcc\xdf\xd6\xcc\xdf\xd5\xcb\xdf\ \xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdc\xd2\ \xc8\xdd\xd3\xc9\xdc\xd2\xc9\xdd\xd2\xc7\xdc\xd2\xc8\xda\xd2\xc7\ \xdd\xd0\xc6\xdb\xd0\xc5\xdc\xd1\xc6\xdb\xd0\xc7\xdb\xd1\xc6\xdc\ \xd1\xc5\xdc\xce\xc7\xdb\xcf\xc5\xda\xcf\xc4\xdb\xcf\xc4\xdb\xcf\ \xc5\xda\xce\xc3\xdc\xce\xc4\xda\xce\xc2\xd9\xcd\xc1\xda\xcc\xc0\ \xda\xcc\xc0\xda\xcc\xc2\xdb\xcd\xc1\xdb\xcc\xc1\xda\xcd\xc2\xd8\ \xcc\xc1\xdb\xcc\xc1\xda\xcb\xc0\xdb\xcb\xc1\xdb\xcd\xc1\xd8\xcc\ \xc0\xd9\xca\xc1\xdb\xcd\xc1\xda\xcb\xc2\xda\xcc\xc0\xdb\xcc\xc0\ \xd9\xcd\xc1\xda\xcc\xc1\xd9\xcd\xc2\xda\xcc\xc2\xd9\xcc\xc0\xd7\ \xcb\xc1\xda\xcb\xc3\xd9\xcb\xc0\xda\xcb\xc2\xdb\xcc\xc2\xdb\xcb\ \xc3\xdb\xcc\xc1\xd9\xce\xc3\xda\xce\xc3\xdb\xd0\xc5\xdb\xd0\xc4\ \xdc\xd0\xc6\xdc\xd1\xc7\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdc\ \xd2\xc8\xdc\xd2\xc8\xdc\xd3\xc9\xdd\xd3\xc9\xde\xd4\xca\xdf\xd5\ \xcb\xe0\xd6\xce\xdf\xd7\xcc\xdf\xd4\xcd\xe0\xd5\xcd\xdf\xd4\xcc\ \xde\xd4\xca\xdf\xd4\xcb\xdf\xd4\xca\xdd\xd3\xc9\xde\xd3\xc9\xdf\ \xd4\xca\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\xc9\xdd\xd3\xc9\xde\xd4\ \xca\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc8\xdc\xd2\xc9\ \xdd\xd3\xc9\xdd\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xdd\xd2\xc8\xdd\ \xd1\xc8\xde\xd1\xc7\xde\xd2\xc7\xdd\xd1\xc8\xdc\xd1\xc6\xdd\xd0\ \xc6\xdd\xcf\xc3\xdb\xd0\xc4\xdc\xcf\xc4\xdd\xce\xc4\xdd\xce\xc3\ \xdc\xce\xc2\xdb\xcd\xc1\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\ \xce\xc2\xdc\xcf\xc1\xdc\xce\xbf\xdc\xcd\xc1\xdb\xcd\xbf\xdc\xcc\ \xbf\xdb\xcd\xc0\xdb\xcd\xbd\xdc\xcc\xbe\xdc\xcc\xbb\xdb\xcc\xba\ \xdb\xcc\xba\xdb\xcb\xba\xda\xca\xba\xdd\xcb\xbb\xda\xcb\xba\xda\ \xc9\xb9\xdc\xc9\xba\xda\xc9\xb8\xdc\xc9\xb7\xdd\xc8\xb7\x00\x00\ \x00\xed\xe8\xe4\xef\xe8\xe5\xee\xe7\xe4\xef\xe9\xe6\xef\xe9\xe5\ \xf0\xea\xe6\xf0\xe9\xe6\xf0\xe8\xe6\xef\xe8\xe5\xef\xe8\xe5\xee\ \xe8\xe4\xed\xe9\xe4\xed\xe9\xe4\xec\xe7\xe2\xec\xe6\xe1\xe9\xe5\ \xe1\xea\xe5\xe0\xea\xe4\xdf\xe8\xdf\xdb\xe6\xdf\xd6\xe6\xde\xd8\ \xe5\xdc\xd6\xe6\xdd\xd3\xe5\xdc\xd3\xe2\xd9\xd0\xe1\xd8\xce\xe0\ \xd8\xce\xe0\xd6\xcc\xdf\xd5\xcc\xe0\xd6\xcc\xde\xd5\xcb\xde\xd5\ \xcb\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xde\xd4\xca\ \xdd\xd3\xc8\xdd\xd2\xc7\xdd\xd3\xc9\xdd\xd2\xc8\xdc\xd0\xc6\xdc\ \xd1\xc7\xdc\xd1\xc7\xdc\xd0\xc6\xdb\xd1\xc8\xdc\xd0\xc7\xdb\xd0\ \xc5\xdc\xcf\xc5\xdc\xce\xc5\xdb\xcf\xc3\xda\xce\xc4\xdb\xcf\xc4\ \xda\xcf\xc4\xd9\xce\xc3\xda\xce\xc2\xda\xce\xc3\xd8\xcd\xc1\xda\ \xcc\xc2\xd9\xcc\xc1\xda\xcc\xc3\xda\xcc\xc1\xd9\xcd\xc1\xda\xcc\ \xc1\xd8\xcc\xc0\xd9\xcc\xc1\xd9\xcc\xc1\xd8\xcc\xc0\xd9\xcc\xc1\ \xda\xcd\xc1\xdb\xcc\xc1\xda\xcb\xc1\xda\xcc\xc2\xd9\xcd\xc1\xd9\ \xca\xc1\xd9\xcc\xc0\xd8\xcb\xbf\xd9\xcb\xbf\xd8\xcc\xc0\xdb\xcc\ \xc2\xd7\xcc\xbf\xd9\xcc\xc0\xd9\xcc\xc0\xda\xcd\xc0\xda\xcd\xc1\ \xda\xcc\xc0\xda\xce\xc4\xd9\xcd\xc2\xda\xce\xc4\xdb\xcf\xc5\xdb\ \xd0\xc6\xdc\xd1\xc7\xdb\xd1\xc7\xdb\xd2\xc6\xdb\xd2\xc7\xdb\xd1\ \xc7\xdb\xd1\xc7\xdc\xd2\xc8\xdc\xd2\xc9\xdd\xd2\xca\xde\xd4\xca\ \xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xcb\xde\xd4\xca\xde\ \xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xdd\xd3\xc9\xdd\xd3\xc9\xdc\xd2\ \xc8\xdd\xd3\xc9\xdb\xd1\xc7\xdc\xd2\xc8\xdd\xd3\xc9\xdd\xd3\xc9\ \xdc\xd2\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdd\ \xd2\xc6\xdd\xd2\xc7\xdc\xd3\xc9\xdc\xd3\xc9\xdd\xd2\xc9\xdd\xd1\ \xc8\xdd\xd1\xc8\xdf\xd2\xc8\xdc\xd0\xc6\xde\xd1\xc5\xdc\xd0\xc4\ \xdd\xcf\xc3\xdc\xce\xc5\xde\xcf\xc4\xdd\xcf\xc4\xdd\xce\xc3\xdd\ \xce\xc3\xdd\xcf\xc3\xdb\xcf\xc5\xdd\xcf\xc3\xdc\xcf\xc2\xdd\xcf\ \xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc1\ \xdd\xce\xc0\xde\xce\xc1\xdc\xce\xc0\xdc\xcd\xbf\xdb\xcd\xbd\xdc\ \xcc\xbc\xdc\xcc\xbe\xdc\xcc\xbc\xdd\xcd\xbc\xdd\xcd\xbd\xdc\xcc\ \xbc\xdb\xcb\xba\xda\xca\xb9\xdc\xca\xb9\x00\x00\x00\xef\xe8\xe5\ \xef\xe9\xe6\xee\xea\xe6\xef\xea\xe6\xef\xea\xe7\xf0\xeb\xe7\xf0\ \xea\xe7\xef\xe9\xe6\xf0\xea\xe7\xf0\xe9\xe6\xef\xe8\xe5\xef\xe8\ \xe5\xed\xe8\xe4\xec\xe6\xe2\xea\xe6\xe1\xe9\xe4\xe0\xe8\xe3\xde\ \xe8\xe1\xdd\xe8\xe0\xd9\xe6\xde\xd6\xe6\xde\xd8\xe4\xdc\xd5\xe5\ \xdd\xd4\xe4\xdc\xd2\xe3\xda\xd0\xe1\xd8\xcf\xe1\xd8\xce\xe1\xd7\ \xcd\xdf\xd6\xcd\xdf\xd5\xcc\xde\xd5\xcb\xde\xd4\xca\xdf\xd5\xcb\ \xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\xc9\xdd\ \xd2\xc9\xdd\xd3\xc9\xdc\xd3\xc9\xdc\xd1\xc6\xdc\xd2\xc8\xdb\xd1\ \xc7\xdb\xd1\xc7\xdb\xd1\xc7\xdb\xd1\xc7\xdb\xd0\xc5\xdc\xd0\xc5\ \xdc\xcf\xc4\xdb\xcf\xc6\xdb\xcf\xc3\xda\xcf\xc3\xda\xce\xc3\xda\ \xce\xc4\xda\xce\xc3\xda\xce\xc3\xda\xce\xc2\xda\xcd\xc3\xd9\xcd\ \xc1\xd9\xcd\xc2\xd9\xcd\xc2\xd8\xcd\xc2\xd8\xcc\xc0\xd8\xcd\xc1\ \xd9\xcc\xc0\xda\xcc\xc1\xdb\xcc\xc1\xda\xcd\xc1\xd9\xcd\xc1\xda\ \xcb\xc3\xda\xcc\xc2\xda\xcc\xc2\xd8\xcc\xc1\xd8\xcc\xc1\xdb\xcc\ \xc2\xda\xcc\xc1\xda\xcc\xc2\xd8\xcc\xc0\xda\xcb\xc2\xd8\xcb\xc0\ \xd8\xcb\xc2\xd9\xcc\xc1\xda\xcc\xc1\xd8\xcc\xc2\xd9\xcc\xc0\xd9\ \xcc\xc3\xda\xcd\xc3\xda\xce\xc3\xda\xce\xc3\xdb\xcf\xc5\xdc\xd0\ \xc6\xdb\xd0\xc7\xdb\xd0\xc7\xdc\xd1\xc7\xdc\xd1\xc7\xdc\xd1\xc7\ \xdc\xd1\xc7\xdb\xd1\xc7\xdc\xd2\xc8\xdd\xd3\xc9\xde\xd3\xca\xde\ \xd4\xcb\xde\xd4\xca\xde\xd3\xc9\xdd\xd3\xc9\xdc\xd2\xc9\xdc\xd2\ \xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc8\ \xdd\xd1\xc7\xdb\xd1\xc7\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc8\xdc\ \xd2\xc8\xde\xd4\xca\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc8\xdc\xd3\ \xc8\xdc\xd2\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc7\xdd\xd2\xc7\ \xde\xd1\xc8\xdd\xd1\xc7\xdb\xd1\xc7\xdc\xd0\xc5\xdc\xd0\xc6\xdb\ \xd0\xc6\xdd\xcf\xc4\xdb\xcf\xc5\xdd\xcf\xc4\xdd\xcf\xc4\xde\xd0\ \xc4\xdd\xd0\xc4\xdd\xd0\xc4\xdb\xcf\xc4\xdd\xcf\xc3\xdd\xcf\xc4\ \xdd\xcf\xc3\xdd\xcf\xc3\xdd\xcf\xc3\xdd\xcf\xc2\xdd\xcf\xc2\xdd\ \xcf\xc3\xdc\xce\xc2\xdc\xcf\xc1\xdc\xce\xc2\xdc\xce\xc1\xdc\xce\ \xbe\xdd\xce\xc0\xdc\xce\xc0\xdd\xce\xc0\xde\xce\xc0\xdb\xcd\xbc\ \xdb\xcc\xbb\xdd\xcb\xbb\x00\x00\x00\xef\xea\xe7\xef\xeb\xe6\xf0\ \xeb\xe8\xf1\xea\xe8\xf0\xeb\xe8\xf1\xeb\xe8\xf1\xec\xe8\xf1\xec\ \xe9\xf0\xeb\xe8\xf0\xea\xe7\xef\xe9\xe6\xee\xe8\xe5\xed\xe8\xe4\ \xeb\xe6\xe1\xe9\xe4\xdf\xe8\xe3\xde\xe8\xe2\xdd\xe8\xe0\xda\xe7\ \xe0\xd9\xe6\xde\xd7\xe5\xdc\xd6\xe4\xdc\xd4\xe4\xdc\xd3\xe2\xda\ \xd1\xe3\xda\xd0\xe1\xd8\xd0\xe0\xd7\xce\xe0\xd6\xcc\xdf\xd7\xcc\ \xe0\xd6\xcc\xde\xd5\xcc\xdf\xd4\xca\xde\xd5\xcb\xdf\xd5\xcb\xdf\ \xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\ \xc9\xdc\xd2\xc9\xdc\xd3\xc9\xdc\xd2\xc8\xdb\xd1\xc7\xdb\xd1\xc7\ \xdc\xd1\xc8\xdc\xd2\xc8\xdb\xd1\xc5\xdb\xd0\xc7\xdb\xcf\xc4\xdc\ \xcf\xc6\xdb\xcf\xc4\xda\xce\xc2\xda\xce\xc2\xdb\xcf\xc4\xda\xcf\ \xc3\xda\xcf\xc3\xda\xce\xc2\xda\xcf\xc5\xda\xce\xc3\xd9\xcd\xc2\ \xda\xce\xc4\xda\xcd\xc1\xd8\xcc\xc1\xd9\xcc\xc0\xd9\xcc\xc0\xd8\ \xcc\xc1\xd9\xcc\xc1\xd9\xcd\xc0\xd9\xcc\xc1\xd9\xcc\xc2\xd9\xcc\ \xc1\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc2\xd9\xcc\xc1\xd9\xcc\xc0\ \xda\xcc\xc0\xd8\xcc\xc0\xd9\xcc\xc1\xd9\xcb\xc0\xd9\xcc\xc1\xd8\ \xcc\xc1\xda\xcc\xc0\xd8\xcc\xc1\xda\xcd\xc2\xd9\xcc\xc1\xd9\xcd\ \xc2\xd9\xcd\xc2\xd9\xcd\xc1\xdb\xce\xc4\xda\xce\xc5\xdb\xcf\xc5\ \xdc\xcf\xc6\xdb\xcf\xc5\xdc\xd0\xc6\xdc\xcf\xc5\xdc\xd0\xc6\xdb\ \xcf\xc5\xdb\xd0\xc6\xdb\xd2\xc8\xdc\xd3\xc8\xdb\xd1\xc7\xdc\xd2\ \xc8\xdc\xd2\xc8\xdc\xd1\xc6\xdc\xd2\xc8\xdb\xd1\xc7\xdc\xd1\xc8\ \xdc\xd2\xc7\xdb\xd2\xc6\xdb\xd1\xc7\xdc\xd1\xc6\xdc\xd2\xc7\xdd\ \xd3\xc9\xdd\xd3\xc9\xdc\xd3\xc9\xdd\xd2\xc8\xdc\xd2\xc8\xdd\xd3\ \xc9\xdd\xd3\xc9\xdd\xd3\xc8\xdc\xd2\xc8\xdd\xd2\xc8\xde\xd3\xc7\ \xdd\xd1\xc7\xdc\xd1\xc7\xdd\xd1\xc7\xdc\xd2\xc7\xdc\xd1\xc6\xdd\ \xd1\xc7\xdd\xd1\xc6\xdd\xd1\xc6\xdc\xd0\xc5\xdc\xd0\xc5\xdb\xcf\ \xc4\xdd\xcf\xc4\xdd\xcf\xc5\xdd\xd0\xc7\xdd\xcf\xc4\xdd\xd0\xc5\ \xde\xd0\xc4\xde\xd1\xc5\xdf\xd1\xc4\xde\xd0\xc6\xe0\xd2\xc5\xdf\ \xd0\xc6\xde\xd0\xc4\xde\xd0\xc4\xde\xd0\xc4\xdf\xd1\xc4\xde\xd0\ \xc3\xde\xcf\xc4\xdd\xcf\xc3\xdd\xd0\xc3\xdd\xd0\xc1\xdd\xd0\xc1\ \xde\xcf\xc3\xde\xd0\xc1\xde\xcf\xc1\xdd\xcf\xc0\xdb\xce\xbe\xdc\ \xcd\xbd\x00\x00\x00\xf0\xec\xe8\xf1\xed\xe8\xf1\xec\xe9\xf0\xea\ \xe7\xf0\xec\xe8\xf2\xed\xea\xf2\xee\xea\xf2\xed\xea\xf0\xec\xe8\ \xf0\xec\xe8\xf0\xeb\xe7\xed\xe8\xe6\xec\xe8\xe3\xe9\xe5\xe0\xe8\ \xe2\xdc\xe7\xe0\xd9\xe6\xde\xd7\xe7\xdf\xd7\xe5\xde\xd5\xe4\xdd\ \xd4\xe4\xdc\xd4\xe3\xdc\xd3\xe2\xdb\xd2\xe1\xda\xcf\xe2\xd9\xcf\ \xe1\xd8\xcf\xdf\xd7\xcd\xdf\xd6\xcc\xde\xd7\xcd\xdf\xd7\xcc\xde\ \xd7\xcc\xde\xd5\xca\xde\xd4\xca\xde\xd5\xcb\xdf\xd5\xcb\xde\xd5\ \xcb\xde\xd4\xca\xde\xd3\xc9\xde\xd3\xc9\xde\xd3\xca\xdd\xd3\xc9\ \xdc\xd2\xc8\xdc\xd2\xc7\xdb\xd2\xc6\xdb\xd2\xc6\xdc\xd2\xc7\xdc\ \xd0\xc4\xda\xd1\xc5\xdb\xd0\xc6\xdb\xd0\xc4\xdc\xd0\xc5\xda\xce\ \xc2\xdb\xcf\xc4\xdb\xcf\xc4\xda\xce\xc2\xdb\xcf\xc2\xda\xce\xc2\ \xd9\xcd\xc1\xda\xce\xc3\xda\xce\xc2\xd9\xce\xc2\xda\xce\xc2\xda\ \xcd\xc1\xd9\xcd\xc1\xd9\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd8\xcc\ \xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\ \xd7\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc1\xd8\xcc\xc0\xd8\xcc\xc0\xd8\ \xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd7\xcb\ \xbf\xd7\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc1\ \xd9\xcc\xc1\xd9\xce\xc2\xda\xcf\xc1\xd9\xce\xc2\xda\xcf\xc3\xdb\ \xcf\xc4\xda\xce\xc3\xda\xce\xc4\xdb\xcf\xc3\xda\xce\xc2\xdb\xcf\ \xc3\xdb\xcf\xc3\xdc\xd0\xc5\xda\xd1\xc5\xdb\xd2\xc6\xdb\xd1\xc8\ \xdb\xd1\xc5\xdb\xd2\xc5\xdc\xd2\xc8\xdb\xd1\xc6\xdb\xd0\xc6\xdb\ \xd1\xc6\xdb\xd0\xc4\xdd\xd0\xc4\xdb\xd2\xc5\xdc\xd2\xc7\xdc\xd2\ \xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd2\xc8\xdd\xd2\xc6\xde\xd3\xca\ \xde\xd3\xc9\xdd\xd2\xc8\xdd\xd3\xc9\xde\xd2\xc5\xdd\xd2\xc6\xdd\ \xd1\xc5\xdd\xd2\xc6\xdd\xd2\xc6\xdd\xd1\xc6\xdc\xd0\xc4\xdc\xd0\ \xc4\xdd\xd1\xc5\xdd\xd0\xc4\xdb\xd1\xc5\xdb\xd1\xc7\xdc\xd0\xc3\ \xdc\xd0\xc4\xdd\xd0\xc5\xdf\xd0\xc4\xde\xd1\xc7\xde\xd1\xc5\xdf\ \xd0\xc4\xde\xd1\xc5\xdd\xd1\xc5\xde\xd2\xc7\xe0\xd2\xc6\xde\xd2\ \xc5\xe0\xd2\xc6\xde\xd1\xc6\xdf\xd1\xc5\xdf\xd2\xc5\xdf\xd1\xc5\ \xdf\xd1\xc6\xdf\xd1\xc6\xdf\xd1\xc4\xdf\xd1\xc3\xe0\xd1\xc5\xde\ \xd1\xc3\xde\xd2\xc3\xdd\xd0\xc1\xdd\xd0\xc0\xdc\xce\xc1\x00\x00\ \x00\xf0\xec\xe7\xf0\xec\xe7\xf1\xec\xe9\xf0\xec\xe7\xf0\xec\xe7\ \xf2\xee\xea\xf3\xee\xeb\xf3\xee\xeb\xf0\xec\xe6\xf0\xec\xe7\xee\ \xea\xe5\xeb\xe7\xe2\xe9\xe5\xe0\xe8\xe2\xdc\xe7\xe0\xd7\xe5\xde\ \xd5\xe4\xdd\xd4\xe3\xdc\xd3\xe4\xdd\xd4\xe2\xdb\xd2\xe3\xdc\xd3\ \xe2\xdb\xd1\xe1\xd9\xcf\xe0\xd8\xce\xe1\xd9\xcf\xe1\xd8\xcf\xde\ \xd7\xcc\xde\xd6\xcb\xdd\xd7\xcd\xde\xd6\xcc\xde\xd6\xcb\xdd\xd5\ \xca\xde\xd4\xcb\xde\xd4\xca\xdd\xd4\xca\xdf\xd5\xcb\xde\xd6\xcc\ \xdf\xd5\xcb\xde\xd4\xca\xdd\xd4\xca\xdc\xd4\xc9\xde\xd1\xc6\xdd\ \xd2\xc8\xdc\xd2\xc7\xdc\xd2\xc7\xdb\xd2\xc8\xdc\xd1\xc5\xdb\xd2\ \xc5\xdc\xd1\xc5\xdc\xd0\xc5\xdb\xcf\xc3\xdb\xcf\xc5\xdb\xd0\xc5\ \xdb\xcf\xc3\xdc\xcf\xc5\xdb\xd0\xc4\xda\xce\xc2\xd9\xcd\xc1\xda\ \xce\xc2\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\ \xc1\xd8\xcc\xc0\xd8\xcd\xc1\xd9\xcd\xc1\xd8\xcc\xc0\xd8\xcc\xc0\ \xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcd\xc1\xd8\ \xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd7\xcb\xbf\xd7\xcb\ \xbf\xd7\xcb\xbf\xd7\xcb\xbf\xd6\xcb\xbf\xd8\xca\xbe\xd9\xcb\xbf\ \xd7\xcb\xbf\xd7\xca\xbe\xd8\xcb\xbf\xd8\xcc\xc0\xd8\xcc\xc0\xd8\ \xcd\xc1\xd8\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd9\xcd\xc1\xd9\xcd\ \xc1\xd9\xcd\xc1\xd9\xce\xc1\xda\xce\xc3\xd9\xcd\xc1\xd9\xcd\xc1\ \xda\xce\xc2\xdc\xd0\xc6\xdb\xd0\xc5\xdb\xd1\xc5\xdb\xd0\xc5\xdb\ \xd0\xc3\xdb\xd1\xc6\xdc\xd0\xc4\xdb\xd0\xc4\xdb\xd1\xc4\xdc\xd0\ \xc4\xdb\xd1\xc7\xda\xd1\xc7\xdb\xd0\xc6\xdd\xd0\xc4\xdc\xd2\xc6\ \xdd\xd3\xc9\xdd\xd3\xc9\xde\xd3\xc9\xde\xd4\xc9\xde\xd2\xc7\xdd\ \xd2\xc8\xdd\xd2\xc6\xdc\xd1\xc7\xdd\xd2\xc5\xdc\xd2\xc5\xdd\xd0\ \xc5\xdd\xd1\xc5\xdd\xd1\xc5\xdc\xd0\xc4\xdc\xd0\xc4\xdc\xd0\xc4\ \xdc\xd0\xc4\xdb\xd0\xc4\xdc\xd1\xc5\xdb\xd0\xc4\xdc\xd1\xc5\xdd\ \xd0\xc5\xdc\xd0\xc4\xdc\xd0\xc4\xdd\xd1\xc5\xdd\xd1\xc5\xde\xd2\ \xc6\xde\xd2\xc5\xdd\xd1\xc6\xdf\xd3\xc6\xdf\xd3\xc6\xe0\xd2\xc7\ \xde\xd3\xc6\xde\xd2\xc7\xde\xd1\xc6\xde\xd2\xc5\xe0\xd2\xc6\xe0\ \xd2\xc8\xe0\xd3\xc5\xe1\xd2\xc8\xdf\xd2\xc5\xe0\xd2\xc5\xe0\xd3\ \xc5\xdf\xd2\xc4\xdd\xd0\xc1\xda\xcd\xbc\x00\x00\x00\ \x00\x02\x46\x69\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x12\x00\x00\x01\xf4\x08\x02\x00\x00\x00\x7e\x48\x35\xeb\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xde\x0a\ \x02\x15\x16\x06\xeb\x4f\x76\xac\x00\x00\x00\x41\x74\x45\x58\x74\ \x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x52\x45\x41\x54\x4f\x52\x3a\ \x20\x67\x64\x2d\x6a\x70\x65\x67\x20\x76\x31\x2e\x30\x20\x28\x75\ \x73\x69\x6e\x67\x20\x49\x4a\x47\x20\x4a\x50\x45\x47\x20\x76\x36\ \x32\x29\x2c\x20\x71\x75\x61\x6c\x69\x74\x79\x20\x3d\x20\x39\x30\ \x0a\xb0\x45\x58\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\x7c\ \xbd\xcb\xb2\x25\xc9\x91\x24\xa6\x6a\x1e\x37\xab\xd0\x8d\x61\x8b\ \xcc\x6a\x46\xb8\xa7\x50\x84\x7f\xc3\x05\xf9\xff\x7f\x30\x33\x0d\ \xa0\x81\xca\x70\x53\x2e\xd4\xcc\xdc\xcf\x4d\xb0\xab\x45\xd0\xf5\ \xc8\xbc\x79\x4e\x84\xbb\x3d\xd4\x54\xd5\xf8\xff\xfc\xbf\xff\xb7\ \xa4\x00\x22\x42\xa2\x94\xc8\x84\x00\x10\xa0\x24\x30\xb9\x16\x28\ \x46\x48\xda\xb9\x93\x94\x04\x80\xa4\x04\xff\x4d\x44\x48\xca\xcc\ \xfe\xf7\x8a\xa0\x24\x49\xec\x5f\x2f\x29\x22\x32\x93\xc4\x5a\x2b\ \xf5\x02\x24\xb8\xb7\x00\xa2\x7f\x12\x00\x25\x49\x82\x08\x64\x40\ \x29\x91\x10\x84\xcc\xc5\xb5\x10\x00\x92\xf0\x8f\xcd\x9d\x82\xd6\ \x8a\xad\x04\x44\x82\x24\xc9\xbd\xd3\x1f\x4f\x12\x23\x62\x85\xa8\ \xf4\x8f\x26\x7f\xfe\xfc\x09\x60\xad\x15\x11\x82\xb4\xf1\x20\xea\ \x7b\x01\x10\x48\xd6\xef\x25\x11\x91\x99\x99\x49\x72\xad\x85\xfe\ \xcb\x5f\x39\x82\xfe\x4f\xcf\xf3\x48\xda\x7b\xd7\x7f\x26\x08\x4a\ \xf2\x6f\x91\x24\xd0\x5f\x32\x33\x21\x21\xa8\x10\x09\xa4\x20\x45\ \x44\x44\xfd\xdc\x4c\x51\xf4\x3f\xaf\xb5\x48\x66\x6e\xb2\xfe\x50\ \x04\x82\x84\xe4\xef\x22\xe9\xeb\xeb\x2b\x20\x29\x9e\xb5\x18\x20\ \x15\x0a\x2e\x05\xf1\x84\xff\xa2\xf2\xcd\xe4\x5a\x0f\x89\xcc\x7a\ \x12\xfe\xe4\xf5\x79\xa9\xad\xfa\xc7\xbd\x37\xc9\x78\x96\x80\xf7\ \x7d\xf7\x4e\xf2\x79\xe1\xef\x1b\x02\x20\x2c\x2e\x10\xca\xa4\xc0\ \xa8\xcf\xe6\xbf\xd6\x5a\x99\xb9\xd6\xf2\x43\x7c\x48\x21\x33\xe5\ \xef\xe2\x5f\x03\x80\x11\x49\x3d\x08\x8a\x48\x91\x60\x20\x29\x90\ \x5b\xf9\xc4\x82\x94\x99\xcf\xf3\xcc\xd3\x26\xb0\xd6\x02\x28\x6d\ \x29\xfd\x73\x02\xfe\x5e\x01\x00\x29\xc4\xca\x5d\x2f\xda\x47\x4a\ \xfd\xac\x48\x26\x02\x80\x1f\x4a\x1f\x51\x65\x66\x30\xb8\x00\xc8\ \x4f\x20\x33\x63\x29\x22\xa4\x84\x80\x50\x64\x28\x41\xf2\xf1\x5b\ \x4a\xc0\x1f\x88\x7d\x60\xc8\x20\xa9\x04\x83\x49\xa5\x10\x90\x20\ \xb0\x5e\x7c\xfd\xdc\x08\xe9\x7c\x1f\x3f\x11\xff\x92\x79\x88\xd7\ \x5b\x39\xbf\x77\x0e\xb4\x7f\x3b\xe9\xdf\x1d\xf5\x8b\x49\x12\x52\ \x26\x92\x7d\x90\x04\x31\x90\x29\x2a\xe7\xda\x08\x00\x05\x20\xa5\ \x73\x7b\x95\x94\xa4\x64\x04\x44\x41\x80\x32\xa5\xa8\xa7\x8c\x0a\ \x13\xf2\x29\x97\x14\x24\x10\x92\xc2\x9f\x81\xf5\x11\xfd\x2c\x7c\ \x1b\xfd\x25\xa4\xc4\x9c\xde\x58\x5f\x5f\x0f\x20\x04\x90\xfe\x51\ \x49\x86\x70\x7d\xeb\xbe\x39\xe9\xf0\xe0\x17\x19\x01\x42\xbe\xe4\ \xfe\xd2\x99\x02\x26\x1e\x45\x90\xa2\x3f\x27\x49\xf4\x77\xed\x07\ \xe8\x70\x85\xf9\x37\x41\x06\x23\x21\xf9\xb7\x01\x08\x44\x44\xb0\ \xaf\x61\x3a\x9e\xf4\xa3\x02\x11\xcc\xfa\x2e\x1d\x02\xa0\xf9\x47\ \xdf\x8d\xf7\x7d\x53\x72\xbc\xdb\x4a\xc8\x27\x04\x92\x08\xa4\xb6\ \x12\x01\x82\x15\xf8\xee\x77\xed\x3b\x2f\x20\x7c\x23\xb3\xdf\xb8\ \x43\x72\xff\x05\x32\x85\x05\xad\x67\x11\x48\xbf\xd8\xeb\x6b\xf6\ \xa1\x22\xc9\x55\x71\x05\x40\xce\x7f\x0d\x20\x18\x75\x20\x49\x50\ \xa9\x9d\xc0\x42\xdd\x7f\x91\xc1\x39\x90\xfe\x40\x70\x88\x97\x36\ \x00\x32\x82\xe1\x7f\x3f\x91\x68\xb2\x42\xc4\x02\x94\xb9\xfb\x53\ \xe1\x01\xea\xc1\x89\xf2\xa1\x41\x50\x12\x42\x80\x10\xb1\xb5\x33\ \x05\x52\x0a\xa9\x9e\xab\x7f\x73\x44\xd4\xd5\x64\xfd\x07\x29\x53\ \x42\x82\x5c\xfd\x47\xc6\x47\xd8\x3e\x7f\x29\xeb\x1a\x92\x11\xce\ \x10\xe8\x1f\x0f\xbe\x7d\x66\x05\x30\x02\x12\x95\x29\x09\x64\x82\ \x3e\x0f\x99\xdb\x11\x3c\x18\xfe\x04\x6f\x6e\xdf\x22\x46\x44\xac\ \x4c\x81\xf0\x39\x16\x36\xfb\xa0\xcd\xe9\x9c\x77\x4c\x56\x0e\x49\ \x65\xc7\x7c\xff\x6a\x5e\x7f\xaf\x4e\x9c\x73\xd4\x72\x6f\x24\x36\ \x09\x04\x59\x97\x24\xaf\xdf\xcc\xf3\x13\x48\xa5\xfc\xb0\x7c\x33\ \x85\x04\x91\x99\xe1\x17\x57\x6f\xb5\xee\x3f\x93\x7e\x40\xbe\xf6\ \x11\x75\xce\x84\x3a\xf6\x7e\x64\xec\x7f\x90\xff\xfc\x15\x41\x11\ \x22\x95\x52\xdf\xf8\x04\xa2\xaf\x8d\x53\x85\x00\x06\x95\x44\x87\ \x63\x84\x0f\xa3\x2a\x2f\x2a\x02\xe9\x03\x27\xa7\x6e\x81\x20\xa4\ \x74\x72\x91\x7c\xd5\xaf\x37\xd7\x67\x2e\xd3\xff\x42\x4e\xe6\x3b\ \xf7\x15\x31\x9d\x46\x29\x02\x64\xf8\x07\x82\x29\x01\x75\xb9\x7d\ \x33\x37\xb8\xae\x18\xed\xbb\xea\x78\x37\x35\x45\xbd\x88\x8a\xc4\ \x74\x38\x51\x9e\xf0\x57\xe9\x86\xf0\x3f\x01\xca\x7a\x03\x55\xd0\ \x88\x02\xc4\x20\xd8\xff\xb6\xa2\x9e\xfc\xa3\xea\xfd\x02\x20\x22\ \x16\x81\x07\x10\x08\x09\x5d\x46\xa9\x1f\xad\x04\x08\x29\xd4\xa9\ \x06\x02\x74\x3a\xae\x7a\x2c\x18\xa2\xab\x32\x09\x12\xa1\xad\x08\ \x7f\xcf\x94\xe8\x74\x84\x5f\xfe\x22\x29\x25\x3b\xab\x00\x3a\xe1\ \xdd\x5f\xbe\xc2\x8d\x12\x29\x28\xd2\x85\x92\x83\x2e\x04\x65\x1f\ \x4d\x71\xee\x3c\x08\xc4\x0a\x0a\x89\x04\xd0\xb1\x51\x20\x27\x04\ \xdf\x57\xf7\xf3\xef\x91\x02\x48\x51\x5b\x19\x7e\xc2\x2e\xdb\x94\ \x81\x00\xb9\x62\x61\x81\xa2\x5f\x3c\x49\x65\x0a\x72\x3e\xa1\x1f\ \xda\x55\x38\xdd\x99\x21\x33\x13\x5a\x4f\x15\x45\x64\x38\x4e\x4d\ \x35\x18\x80\x58\x0f\xa0\x32\x76\xc0\x5f\x2f\xb1\x3b\xcc\x9f\x34\ \xe6\xf3\x51\x31\x52\x4c\x88\x4e\x95\x50\x6a\x13\x19\xfe\xa7\xfe\ \x00\xd1\xa1\x2a\x54\xd1\x83\x74\x51\x9a\xea\xdc\x55\x17\x2f\x55\ \x17\x5e\xda\x99\x5d\x78\x3b\x8e\x57\x9d\x89\x4a\x1a\x64\xf8\x41\ \x4f\xe6\x53\x85\xac\x4e\xe6\xce\x7b\x92\x03\x20\xd2\x35\xaa\x5f\ \x9c\x74\x82\x4a\x84\x28\xa5\x5f\x1a\x55\x89\x61\x03\x5c\xa4\xf4\ \x51\xaa\xf8\xab\x43\xbb\xff\x48\xf9\x41\x39\xca\xc6\x74\x18\x48\ \x56\xdc\xa9\x67\x4d\x39\x83\x4f\xb6\x8b\x7e\x43\x29\x24\xd1\xb1\ \x40\x09\x04\x99\xf5\x7d\x4e\xae\xc2\x66\x06\xf8\x24\x11\x41\xbd\ \x02\x12\xfe\xb8\x2e\xb4\x13\xa4\x80\x08\x12\x01\xc6\xaa\xf4\x40\ \x4e\xf5\x92\x99\x0c\x81\xc8\xac\xf8\x44\x32\x56\x28\xd5\x6d\x40\ \x54\xaf\x52\x4f\x90\xea\xd2\x59\x0e\xba\x20\xe4\x8f\x36\x15\x5d\ \x44\x60\x27\xe8\x93\x92\x29\x70\x23\x29\x41\x08\x82\x81\xba\xcf\ \x02\x3a\x78\x66\x85\x18\x51\x15\xab\xea\xe7\xc1\x21\xc4\xbf\x92\ \xd2\x9e\x9b\xfa\x99\xfa\x50\x85\x1c\x53\x10\x5d\xb2\x01\xd2\x5b\ \xd7\x97\x95\x36\x54\x27\x17\x42\xa2\xcf\x5f\xe5\x4c\x32\x77\x4e\ \x92\xe9\xc4\x5c\xff\xbb\xe5\xc3\xf7\x83\x4c\x01\x89\x3c\xa7\xaa\ \x6a\x85\xd3\x04\x02\xd8\xda\xac\x02\xae\x7e\x8a\x08\x40\x41\x70\ \xb9\x20\x91\xa4\x78\xc4\x20\xb2\x9a\x26\x84\x4f\x7c\x06\x11\x64\ \x2c\x2e\x06\xeb\x56\x30\x2a\x36\xf8\x64\xa8\x6e\xbd\x0f\x96\xa4\ \x4c\x70\x39\x9b\x65\x7f\x8c\xfa\xf4\x04\x17\xb0\xe1\xa3\x37\xc5\ \x67\x85\xeb\x8a\x12\xba\x52\x4e\xe5\x2d\x3f\x28\xff\x0e\xcd\x23\ \x41\xbd\x73\x5f\x9b\xf0\x81\x63\x56\x50\x64\x5f\xd1\x94\xff\x80\ \xec\x0a\x7e\x75\x16\x82\x24\xed\x7a\xab\x7e\x95\xe9\x4f\x14\x90\ \x36\xfd\x77\x64\x20\xb3\x52\x19\xc3\x01\x08\xa0\x42\x02\xb4\x77\ \xdf\x34\xb7\x67\x1d\x5f\xaa\x6c\x8b\xce\xc9\x5d\xd4\x3b\x13\x42\ \x99\xe2\x43\xa4\x14\x58\x80\x02\x9c\x9c\x03\xd5\xb9\x4b\xae\x90\ \x10\xaa\x9b\x57\x87\xd1\xf9\x2e\x00\x07\x77\x92\x1d\x3c\x9d\x8e\ \xc1\xee\x86\x70\xc0\x80\x29\x76\x94\xae\x2d\x58\xcf\xa0\xff\x60\ \x48\x42\xa6\xc2\xd5\x4b\x65\xd6\x4e\x43\x55\x51\x2b\x15\x91\x3b\ \xa7\x24\x20\xe8\x62\x0c\x9d\x94\xd5\x45\x88\x52\x7d\xec\x84\x02\ \x0c\x4e\xc5\xdc\x1f\x8c\x99\xca\xbc\xc2\x78\xcc\xf3\xaa\x30\x2a\ \xa6\xdb\x3c\x65\x92\x00\x43\x92\xaf\x6e\x9d\x9d\xbe\x7b\x14\x63\ \x45\xbd\x7e\x50\x72\xec\x0f\x46\xc0\xcd\x00\x72\xbb\xc4\x98\x0b\ \x1c\x74\x14\x99\x9b\xec\x86\x24\x05\x86\xd2\xd9\xa1\x5b\x6d\x2c\ \xa7\x4e\x67\x3b\xd4\x89\x0a\x31\x32\xb0\x48\x80\x2e\xf9\xd8\x1d\ \x51\xd6\x27\x71\x77\x67\xfc\x47\xfd\x2a\xa7\xec\x82\x1c\x04\xb2\ \x4a\x61\x17\x49\x52\x54\x89\xac\x44\x25\xf8\xbb\x79\x41\x3d\xf3\ \x08\xf8\xcd\x49\x55\x14\xf8\x79\x56\x8c\x65\xa5\xfd\x84\xa2\x4b\ \x45\xff\x72\x02\xc0\x02\x72\x6f\x71\x39\xc7\x0b\xd8\x44\xf8\xdb\ \x45\x2c\xc9\xd7\xb8\xa2\xd4\x74\x9b\xa9\x6a\xa7\x09\x72\xd1\x65\ \x6c\xa6\xa4\x74\x9e\xad\xd2\xa9\x13\x64\xca\xd8\x52\x44\xf5\x62\ \xba\x0b\x6e\x29\x7d\xdd\xaa\x4c\x63\xfa\xbb\xb9\xe0\x8c\xc8\xb9\ \xa2\x09\x3d\x3e\xb3\xfe\x24\xea\xce\x97\x0b\x04\x33\xc9\x64\x82\ \xc4\x7e\x53\x11\xec\xa7\x4c\xb0\xe2\x9b\x4b\xdb\x08\xf7\x7c\xf5\ \x31\x08\xd7\xc9\x8e\x53\xd9\x5f\xd5\xc9\xc4\x91\x46\x9a\x74\xd9\ \x50\x86\x3f\x10\xaa\x95\xf7\x79\x02\x73\xed\xfd\xc2\x4d\x37\x2b\ \x16\x4d\x66\xf3\x71\x22\xa1\xc9\x07\x05\xc4\xe5\x09\xe2\x6e\x98\ \x7d\x55\x82\x77\xea\x9b\xda\xb8\x6f\x50\x92\x8b\x04\x43\x84\x53\ \x34\x2a\x88\xce\xf5\xf0\xd3\xe4\x09\xd5\xea\xaa\x59\x10\x02\xe9\ \xa7\x8f\x0e\x53\xf4\x05\x94\x0b\xcc\x9d\x5b\x75\x23\x8d\x84\x55\ \xb3\x14\x9a\x2b\x74\x4a\x9d\x8a\xc6\x72\xff\xab\x08\x30\x16\xab\ \x4b\x74\xbb\x3f\x85\xb8\x6f\x9b\x8b\x90\x2a\xe1\xd1\x85\x97\x24\ \x54\x91\xea\xac\xe2\x83\x2c\x06\xa9\x48\xed\x77\x6f\x06\xdd\x65\ \x09\x7e\x0b\x0c\x32\xab\x68\x54\x7d\xa9\x70\x1e\x8f\x7e\xef\xe9\ \xa7\xd2\x4d\x3e\x06\x22\x9b\x27\x5b\x05\x67\x38\x36\x9d\x64\xd3\ \xd5\x6c\xb5\x93\xa9\xbc\x7e\x79\x62\x2b\x63\x45\x95\xa5\xdb\x19\ \x43\x11\x9b\x2e\x35\xa2\x8e\x80\xbb\x22\x89\xd0\xe2\xf2\xc5\x10\ \xba\xb2\xe8\x7e\x67\x80\x94\xf3\xc1\xaa\x56\x03\x94\x8a\x3e\x9c\ \xa9\x94\xa2\xf2\xd2\xc7\x8d\x8a\x38\x20\x96\x63\xf9\x83\x2e\x3e\ \x58\x17\xb0\x8a\x9f\x08\xfa\x9e\x30\xea\x7c\x64\x9d\x07\x64\xa5\ \xdd\x46\x39\x80\x9c\x22\xb0\xd2\x43\x80\x9d\xcc\x1b\x26\x46\x63\ \xd5\x4e\x41\x05\xca\xf5\x3d\x4b\x24\x75\xfa\x67\x7f\xc3\xcc\x74\ \xbd\x15\x0c\x08\xe9\xf8\x4b\x3a\xf5\x5e\xb5\xb4\x7f\x92\xaf\xe2\ \x9d\x49\xb2\x3f\x4f\xe3\x16\xb8\x3b\x9c\x6a\x33\x2e\x30\x5d\xca\ \x1d\xc1\xe8\x54\xcb\x83\x8b\x57\xd5\x5b\x0f\x3b\xdf\xf9\x51\xca\ \xcc\xd0\x8a\x67\x0a\xfc\x9d\xfb\x4e\x65\xb1\x7c\xdf\x5c\x2f\x87\ \x30\x80\x92\x9f\x79\xf7\x11\x75\xfa\x1d\x20\x89\x0e\x64\xce\x75\ \xae\x5c\x54\x85\x74\x9d\x2f\x34\xc6\x06\x88\x0a\xa8\xd1\xff\x3a\ \x34\x72\xd1\xa6\x14\x90\xb1\x9e\xca\x14\xea\x77\x33\x15\x18\x2a\ \x27\x9d\xca\x99\x55\x84\x19\x23\x71\x6f\xc6\xc6\x8e\x2b\x4c\xf8\ \x5c\x6c\x04\xb4\x37\x06\xa7\xbb\x6f\xce\xe4\xc8\xea\x71\xfa\x3a\ \x65\x66\x95\x62\xbe\xc7\x4a\x76\x56\xe9\x84\xe2\x3a\x3f\xea\xaa\ \x57\xc8\x0f\x90\x40\xee\x9d\xee\xf4\x07\x47\x49\xff\x8a\xcc\x20\ \x69\xc8\x78\x8e\x7b\xd5\x2d\x8d\x05\x2b\x5f\x21\xfc\x87\x33\xa9\ \x20\x07\x0e\xa7\xd1\xc4\xcc\x9c\x2a\xde\xd1\xc9\x43\x85\x08\xe3\ \x3d\x7c\x7a\xa4\x90\x27\x0a\xdc\x48\x62\xc0\x81\x4d\xa7\xd8\x55\ \x15\x8b\x34\x1e\x11\xfe\xc8\xfe\xe9\x13\x78\x82\xe1\x94\x5f\xdd\ \xb0\x21\x7c\xf2\xc2\x13\x71\x97\xf2\x0e\x69\x51\x69\xff\xa4\x57\ \x09\x2b\xea\x6d\x51\x51\xd5\x72\x5f\x3c\xc3\x15\xaa\x51\x0c\x1a\ \x4c\xe0\x60\xb2\xa9\x55\x40\x8f\x7f\xfd\xce\x53\x7d\x07\xa7\xef\ \x9a\xef\x0e\x54\x5c\x96\x4e\x89\xe6\xd0\x00\xe9\x1b\x7a\xee\xe7\ \xb8\x5d\x16\x7c\x4c\x3f\x3a\x06\x4f\x3e\xee\x3f\xb5\xa3\xbe\xdb\ \xf1\xec\x3f\x04\x95\x5b\x3e\xfa\x7d\xb9\x52\x77\x30\x29\x40\xb2\ \xe0\x84\xce\x2a\x35\x30\xa8\x06\x98\xf2\xcf\x77\x8a\xaa\x43\xe9\ \xaf\x2f\xb1\xf1\x16\xfa\xd7\xa5\x94\x99\x02\x16\x7d\x2c\x30\x31\ \xab\xa6\x5e\x99\xf3\x8f\x55\x63\xbb\x32\xe9\x5e\x2e\x22\xb4\x53\ \xd8\x8c\x45\xc3\xd1\x57\x40\xee\x30\x5a\x0f\x2c\xfb\x03\xcb\xb0\ \xac\x53\x97\xdc\x21\xc4\x5c\x75\x97\x33\x11\xac\xaa\x5a\x3b\xb7\ \x2f\x5b\x4c\xd9\xc8\x0b\x31\x9f\x34\xb2\x77\x83\x7b\x98\x5f\x60\ \xac\x99\x01\x64\xe6\xde\x55\xc6\x13\xec\xbc\xe9\xfb\xbc\xfb\xaa\ \xfa\x45\x67\xbe\x69\x00\x90\x0c\x57\xb4\x46\x05\x23\xaa\xd2\x16\ \xf0\x10\xd8\xb9\x95\xaf\x2b\x8e\x88\x1a\x29\xcc\x71\xbf\x61\xbe\ \xba\x37\xa9\x2a\x9d\x85\xcc\x64\x80\x88\x2b\x01\x5f\x59\x45\xf2\ \x7c\x70\xe6\x7d\x73\xb0\x52\x5d\x83\xf6\x25\x39\x27\xaf\x2a\x5f\ \x04\xbf\x9c\xeb\x68\xe4\xea\x44\x1d\x06\x23\x33\x77\x4a\xab\x4a\ \x78\x56\x6c\x61\xe3\xba\x02\xb2\x10\x90\x9d\x2e\x7e\xf6\x35\x79\ \x75\xc1\xb6\x77\xf5\x82\x35\x7f\xf8\x86\x4a\x5f\x05\x13\x78\xb2\ \x93\x0e\x28\x52\xb9\x19\x1f\x23\x97\xe8\x7e\xd7\x1d\x7d\x76\xb4\ \xe5\x8c\x83\x3d\x3e\x46\x26\xba\xa2\x6a\x5c\xb1\xc6\x1d\xa0\x0b\ \x38\x50\x19\xb1\xfc\x30\x9f\xb5\x3a\x42\x2d\x0a\x51\xd5\x75\x90\ \x49\x67\xb5\x0e\x6a\xc6\x0f\xfd\x87\xae\x20\x14\xfe\xd3\x0d\x9b\ \xa8\x4a\x00\x2d\x3e\x2e\x4e\xc8\x58\xc1\xb7\x23\xc8\xce\xec\xa4\ \x73\x26\x07\x77\x8c\x53\x01\xd3\xa8\x7a\x48\x29\xec\xf0\x87\x89\ \x0e\x3a\xdc\x6e\x29\x1a\x22\x57\x57\x04\xdc\x48\xfa\x3b\x65\x66\ \xdf\x88\xed\xea\x00\xc0\xae\x39\x4c\x03\xee\xa8\x2f\xe6\x57\x5f\ \xd9\x48\x49\x85\xa2\xba\xf9\x2b\x3d\xde\x07\xd1\x33\x95\x88\x70\ \xcf\x16\x55\x90\xed\x3a\xd7\xc6\x93\x52\xcf\x13\x6b\x2d\x07\xfd\ \x88\xea\xcb\x22\x0a\xdc\x02\xa2\x4a\x37\xa4\x24\x06\x9f\x37\xb7\ \x80\x57\xf0\xfb\x52\xc5\x9c\xc9\x4a\x31\x93\xc1\xf9\x37\x1e\xd9\ \xf6\x03\x0d\x7a\x4e\xdf\xb9\xbb\x07\x38\xdb\xc8\xce\xb7\x2a\xc8\ \xb3\x67\x92\x2b\x56\x2a\x95\xce\xb6\xf4\xc0\xd1\x3d\x6a\x04\xd7\ \xf3\xec\xbd\x49\x6d\x6d\x15\x72\xb6\x9d\x96\x65\xc0\xb3\xdb\xd9\ \x79\x3a\x4d\x58\x30\xd4\x95\x6a\x50\x59\x40\xc4\x72\x79\x13\x1e\ \x89\xd6\x0f\xa2\x32\xd7\xa0\x1c\x1e\x42\xdd\xd8\x74\x34\xee\x99\ \x09\x24\x23\x82\x21\x65\x66\xc6\x5a\xbe\x3e\x11\x41\x44\x6e\x45\ \x35\x4e\xce\x8a\x86\x01\xab\x84\x22\x7a\xce\x50\x9f\xc4\xbd\x46\ \xcd\x0a\x3c\xc6\x9d\xcb\x23\xe4\x9b\xe9\x41\x6a\xf8\x66\xb8\xd9\ \xa0\xc7\xf1\x15\x21\x3c\x51\x97\x3b\xc3\x94\x11\xcb\x1a\xc5\x80\ \x82\x56\xe1\xbf\x60\x7d\xab\x6c\xf4\x3a\xe9\x41\x2a\x3b\xb3\x2e\ \x17\x06\xd8\xa8\x62\xe7\xa0\x05\x88\x19\x5b\xd7\x71\x75\xcf\xdb\ \xf4\x11\xb7\xe6\x3b\x7d\x39\x52\x58\x84\x42\x8d\x00\xc9\x23\x5c\ \xba\xc3\x9a\x6f\xe9\x59\xd2\xeb\x79\x62\xb0\x66\x7d\x22\x00\xe3\ \x8d\xc1\x62\x6e\x30\x10\x0d\x71\xa7\xd2\xed\xa7\xb1\x7f\x00\xfb\ \xdd\x3a\x93\x16\x90\x2a\xb8\x97\x5a\xb1\x02\x8f\xa4\xad\xac\x71\ \x45\x95\xeb\x09\xae\x4c\x19\x1e\xae\xa9\x7a\x7a\x34\x79\x5a\x17\ \x22\x52\xf5\xc5\xfc\x0b\x0d\x9d\xc3\x03\xcc\xad\x27\xbb\x66\x70\ \xb4\x9a\xd0\x72\x87\xd5\xe2\x2f\x44\x7c\x0b\x39\x99\xc9\xbe\x12\ \x43\x9a\x70\x29\xac\xac\x76\x22\xf3\xa0\xd5\x1f\x71\xcb\x83\x79\ \x1e\xbc\xec\x44\x62\xf0\x8f\x9f\x7f\x40\x50\x68\xc5\xd2\xca\xbd\ \xd3\xe7\xf0\x54\x00\xd2\xc0\xe9\xf9\x59\x26\x39\x84\xdd\xc5\x92\ \x3a\x61\xcc\xd4\x8b\x8d\xe0\x9e\xb9\x8d\x91\x8d\xf9\xbe\xc1\x5d\ \xb4\x09\xa6\xf6\x02\xa3\x1b\x9b\x9e\x47\xab\xea\xa5\x6b\xb2\x39\ \xed\x50\xa6\xdc\x4a\x05\x07\x1a\x29\xe8\xcc\x18\xa0\xcb\x07\xce\ \xfd\x87\x2f\x78\x5f\x2f\x0f\x8e\x07\x0b\xaa\xae\xc0\x4f\x15\x8d\ \x50\xa5\xc4\xc5\xa5\xe8\x32\xcd\x8d\x09\x3c\xad\xf1\x70\xa9\xa3\ \x75\x21\x7b\x80\x8b\x6a\x64\xf7\x18\x1b\x57\x26\x39\x50\xde\x8a\ \x81\x4d\x3c\x7f\x13\xe4\x03\x24\x01\xca\x82\x72\x0c\xf3\x44\x73\ \x07\x28\x09\x7b\x22\xa0\x41\x63\x57\x88\xd5\x05\x60\xa7\x44\xd5\ \xc8\xb2\xff\xdc\xac\x6b\x59\x97\x47\x95\xc3\x50\xb3\xdd\x1a\xe2\ \x38\x48\x11\xc2\xfb\xbe\x35\x24\xef\x73\xa8\x9a\x47\x55\x3f\xb8\ \x15\x93\xdd\x7c\xa2\x7a\x7a\x26\x72\x47\xb8\x3e\xcc\x60\x98\x34\ \x50\xe5\xe2\x5a\xf4\x05\xee\x52\xbc\x4e\x44\x02\xe1\x29\x3e\x1e\ \x7e\x09\x7a\xe6\x92\xb0\x8e\xe2\x3d\xa7\x3b\x14\xa3\xf3\xcb\x2e\ \x44\xe2\x63\x4c\xab\x0f\xf0\xe1\x70\x2b\x3e\x69\x69\x1f\x43\xcf\ \x8f\xc2\x1f\x68\xea\x44\xe6\x5e\x00\x83\x99\xbb\x3a\x7b\x67\x89\ \xc6\xb2\x8b\x21\x11\x55\x0d\x5c\x5f\xa1\x46\xb1\x43\x03\xbb\x8b\ \x46\x42\xdf\x6e\xfe\xb7\xa1\xe7\x1d\x23\xea\x07\xd6\x91\x3e\xc8\ \xd4\xfd\x13\x8a\xe8\x25\x32\xf2\x54\xd4\xee\x9e\xe7\xfb\xb2\xda\ \xdf\x9e\x78\x16\x89\xa9\xba\x38\x17\xf2\xd5\x2b\x82\xb1\xc0\x0f\ \x1e\xc6\x3c\xc9\x35\x4d\xcc\xf5\xf4\x98\xe0\x43\x32\xa4\xb7\xc6\ \x47\x5d\x7c\x66\x0e\x6b\x86\x1f\xf3\xe6\x8b\xfa\x74\x55\xcb\x27\ \x2c\x76\x0d\xa6\x99\x75\x9c\xdf\x7a\x1e\x03\x7a\x68\xa6\x81\xda\ \x7b\x46\xae\xba\x22\xdb\x18\x55\x1d\xd6\x9a\x0e\xf5\x70\xb0\xba\ \x3b\x30\x3d\x2b\x45\x18\x23\x28\xce\x8a\x13\x3c\x3d\x57\x30\xb1\ \x0b\x45\x3e\x24\x1c\xe0\xc9\x10\x02\x03\x77\xca\x04\x8c\x66\x2b\ \x42\x9b\x59\xff\x3e\x73\x70\x29\xce\xb4\x1f\xe7\x60\xcf\x74\xb5\ \x86\x8d\x07\x06\x6c\x7e\xcd\x8c\xaa\x58\x3c\xc3\xe7\xd7\x79\xf9\ \x55\x16\x22\xa2\x58\x27\x99\x03\xee\x35\x1f\xae\x28\x3d\xfa\x38\ \x9d\xf8\x38\x5e\xf7\xbf\x37\x89\x73\xfe\x3e\x22\xde\xbd\x71\x97\ \xcb\x57\x72\x33\xd7\x90\x8c\x54\x5e\x01\xa3\xaa\x38\x0e\x0e\x2d\ \x15\xdf\xa9\x81\x1c\x77\xd9\xd3\x4a\xf1\xaa\x00\x2b\x75\x5c\x5f\ \xe4\x0e\x07\x79\x30\xeb\x62\xbe\x38\xdc\x4d\x7d\xc5\x03\x97\x4e\ \x56\xc4\xde\x49\xb7\x18\x9f\x0f\xf0\x10\xde\xe4\xec\xaf\x65\xd6\ \x52\x16\x57\xb4\xc6\xe4\xce\x0e\x33\x7e\x55\x51\x6f\xd0\xe4\xba\ \xc6\x11\x3e\x9b\x9f\x2a\xbb\xd3\xb3\x32\xf4\x9c\x94\x3d\x26\x2f\ \xf8\xd1\x3f\x61\x8a\x2e\xf7\x99\x35\x4a\xec\x52\xc2\x8d\x51\xe6\ \x1d\xe6\xf6\xde\x86\x92\x1c\x8c\x2b\x0c\xc5\xaa\x86\x85\x90\x41\ \x48\xe3\x45\x45\xd6\x72\x95\x3a\x75\x98\x00\x6c\x00\x99\x8c\x48\ \x4f\xcc\xae\xe6\x63\xe7\xae\x6b\x49\xca\x74\x8e\x02\x80\x0a\x2e\ \xdb\x7e\xc8\x59\xd3\x91\xba\x11\xaa\x84\xea\x1e\x48\xf9\x82\x08\ \xae\x9e\xd8\xb9\xf9\xa0\xa0\x85\x2c\x60\x81\x87\x43\xa0\x8b\xe1\ \x56\xb9\xab\xa3\x9b\x0f\x67\xcd\xb4\x68\xec\xb1\x7a\xd7\xa6\x5c\ \x19\x6b\x09\x65\x02\x7c\x86\x0c\x59\x78\xd4\xbc\xa1\xc2\xac\x88\ \x1a\x73\x7d\x07\xbe\xae\x23\xce\x6f\xb9\xe5\x94\x70\x17\x0a\x79\ \x7f\xca\x3a\x7c\x57\x00\x98\xce\x27\x22\x22\x16\xf0\x0e\x2f\xf5\ \xaa\x09\x49\x53\xae\x10\x4a\xf5\x21\xeb\x28\x8b\x43\xaf\xb8\x53\ \x87\x09\x3e\x75\x32\x3e\x4b\xd0\x6f\xb9\xb1\xc6\x6a\x8e\x31\xe9\ \xce\x1a\x93\xe2\xe7\xab\x7d\x7e\x2f\xcc\xe4\xec\x5b\x42\x9e\xd1\ \x98\x68\xae\x97\x82\x21\xaa\xce\x8a\xa4\xdc\xc6\x74\xee\x90\xe3\ \x2a\xa3\x07\xda\x67\x0e\x53\xb3\x9a\x2b\xc5\x93\x2e\x99\xd2\xb4\ \x69\x55\x8d\x91\x33\xdd\x3b\x19\x18\x3c\xcc\x6e\x60\x5f\xa0\xdf\ \x7d\xc9\xdd\xbb\xd6\x8f\xbf\x33\x4b\xc5\x23\xe3\x61\x6a\x5a\x86\ \x90\x3b\xb0\x9a\xb0\xa2\x6c\x24\x13\x18\xc6\x17\xdd\xda\xd4\xf4\ \x89\x9c\xa1\x7b\xc2\x64\x74\x14\xa6\x4c\x4d\xdf\xbf\x77\xce\x9c\ \xc4\xc3\x65\x56\x5c\xcc\x9e\x23\x98\x5f\xac\x2d\x38\x38\xcf\x00\ \x37\x1a\xc3\x26\xa4\xbd\xd7\x0a\x1c\x6e\x71\xd1\x05\xd5\xe4\x9b\ \xcf\x24\x71\x05\xfa\x9d\x18\x30\xa8\xe1\xc0\xe8\xb9\xaa\x1f\xc0\ \x73\xd7\xb5\xd3\x0b\xae\x08\xb2\xa8\xf2\x3d\x6b\x8b\xfb\x40\xfc\ \x27\x7f\x7d\x9b\x79\x1d\x9c\xfe\xb3\x1c\xfa\x86\xcf\xb8\x3b\xea\ \x5f\x96\x29\xae\xc5\x66\xe0\xcf\xf4\x92\x34\xca\x67\x96\xef\x35\ \xe1\x05\x03\xc5\x47\xd4\xc9\xc8\x13\xf9\x9a\xd2\xa4\xc3\xc1\xfd\ \x27\x9f\xbb\x5a\xea\x70\x4b\x6f\xbc\x6e\xca\xbf\x7a\x14\x87\xe5\ \x59\x8f\xe2\x00\x9e\xa7\x0f\x89\x78\xdf\xb7\x92\x2a\xa8\xf8\xc8\ \x72\x93\x37\x1a\xa5\x35\xe7\x0f\x03\xca\x17\x05\xab\xc3\xb3\xd3\ \x14\xa4\x88\x7e\x62\x99\x8a\x15\x43\x36\x0b\x93\x21\xe6\xc2\xf9\ \x2e\x57\xdf\x44\xa0\xfa\x86\x88\x98\x41\xd9\xa9\xb4\xce\xd8\xff\ \x2e\x63\x8c\x1a\xf8\x0c\xd6\xb4\x51\x3b\xc2\x73\xec\x33\x8d\xd8\ \xc5\xe9\x5e\xa0\x80\x1c\x26\x6a\x97\x2a\x8d\xdd\x98\x16\x75\x91\ \x55\xd8\xd7\x6f\xef\xbd\x62\xe1\x42\xf5\xb3\x10\x91\x28\x92\x0a\ \x10\x5c\x0d\x78\x1c\x0c\xdc\x54\xbc\x4c\x21\x14\xaa\x8a\x37\x8b\ \xdf\x52\x90\xc7\x56\x52\x45\x8d\x6f\xbc\xd5\x04\x25\x1a\x22\xfb\ \x95\x67\xbc\xf7\x8e\x4a\x01\x6c\x40\x45\x43\x97\x1d\x0e\xe1\x73\ \x4e\x40\x83\xe5\x00\xd3\xdc\x9a\xe2\xf5\x7d\x30\x97\x3f\x86\x83\ \xbf\xfc\xa7\xcf\x09\xb1\x6e\xac\xf6\xce\x54\xff\xf9\xf5\x93\x68\ \xf8\xb9\x2e\x6a\x7a\xc8\x3d\x90\xb7\xc7\x37\x3d\x4b\xa9\x43\x06\ \x8f\x1a\x92\x47\xf0\x63\x66\x5d\xcd\x71\x3b\x15\x49\xa7\xce\x3c\ \xa9\x6f\x6f\x11\x0a\x0e\x93\x3a\x8a\x2c\x97\x8d\x16\x9b\xcc\xbb\ \x6e\x66\x6a\x37\xac\x0a\xae\x8f\x4b\xdc\xb2\xa2\xae\x86\xeb\x8a\ \x7c\x23\xb6\xb2\xfb\xeb\x4b\x8b\x51\x0f\x30\xe2\x10\x1b\x0e\xa7\ \xac\x79\x24\x35\xed\xed\x66\xe2\x7d\x5f\x97\x29\x8e\xa4\x4d\xc7\ \xe2\xf0\x2f\xe8\x0b\x3f\x43\x9e\xeb\xbb\xcf\x3c\xea\xae\x02\x66\ \xcc\x24\x68\xef\x6c\x66\x6d\x11\xdf\xae\xa1\xe4\x92\x72\xef\x37\ \xd6\x62\x67\xa2\x9e\x4b\x89\x1e\x82\x6b\x72\x9d\x80\xc3\x69\xb9\ \x1e\x80\x32\xc5\xb8\xab\x75\xff\x96\xc2\x69\x7d\x82\x46\x01\xd6\ \xd3\x25\x56\xc5\xbb\xcd\xd2\xcc\xe2\x2b\x42\x02\x42\xa6\xbe\x16\ \xf1\xdb\xd7\x89\xd3\x81\x4d\x59\xd2\x6f\xe4\x3e\xcc\x45\x7a\x8d\ \xea\xa3\xb3\xe8\x2c\x9e\xf4\x2b\x9a\xac\xf8\x7c\x92\x19\xab\x43\ \xda\xca\x40\xf5\x0b\xba\x8a\x9c\xfb\xaf\x6f\x42\x9a\x5b\xa3\xf6\ \x6b\xfa\x1b\x24\x4d\x9f\xbd\xc7\xb7\x5e\x7c\xee\xdb\x02\x21\x46\ \xe3\xba\xbc\x2b\x19\x67\xc5\x2c\x4e\x62\x30\x58\xa4\x8f\x82\x80\ \x8b\xc3\x6f\x5a\x2e\x6b\x02\x30\x15\xee\xb7\x22\xad\xba\x9a\x66\ \x48\x33\x58\xcd\x48\xd7\xda\x41\xe6\xd5\x3f\x7c\xeb\xe8\x7a\xb2\ \x91\x77\xa9\x63\xb1\xda\x5d\x74\x55\xc4\x67\xc9\x03\xb2\x69\xb6\ \x7e\x57\xcf\x21\x4a\x5f\x78\x4c\x8d\xd8\xcc\x69\xcc\x0a\x10\x7e\ \xcd\x51\x84\x00\x87\xca\x37\xb3\xf8\x20\x68\xda\xe3\x8c\x9b\x3e\ \x67\xf5\x33\x4d\xf6\xdf\xbc\xd5\xc3\x9c\x3b\xa9\x13\xea\x3e\xf0\ \x87\x56\xc5\x28\xfb\x3f\xca\x15\x28\x6b\x9c\x05\x43\x23\x4d\xca\ \x3d\x19\xa5\x21\xcc\xfe\x0a\x28\x46\xdf\xf0\x5e\x18\x99\x2a\xee\ \x7e\x0b\x1f\xb3\xee\xc0\xf2\x00\x34\x55\xe5\x59\x74\x43\x9f\x99\ \x99\xda\x90\xa7\xa4\xc6\x11\xb6\x27\x51\xbe\x3d\x29\x15\xe5\xb7\ \x69\x69\x73\x5f\x86\x3d\x4e\x7e\x83\xb2\x4e\xbf\xda\x53\xa3\xab\ \x47\xc8\x42\xec\x19\x00\x9e\x33\x6a\xed\x01\x70\x35\x39\x41\x53\ \xed\x78\x25\xe5\x3b\xcf\xfc\x9a\x58\x26\xe5\x7d\x6b\xc7\xef\x8f\ \x35\x93\xcd\xcf\x52\x07\xdf\x3a\xa5\xd3\x8d\xf5\xd0\x7f\x02\x94\ \x9c\x31\xc3\xa7\xcc\xe4\xe8\x4e\xc2\xd1\xa5\x0d\xe8\xc2\xe6\x23\ \x2b\x1e\x45\xd6\x0d\x34\xa1\x19\x91\xfa\x9e\x49\xa6\x07\x68\x01\ \xdc\x47\xa1\xd5\x3c\x45\x46\x38\x28\x7d\xfb\xe1\xf5\x9f\x93\x68\ \xd2\xff\xea\xa0\xba\xe0\xe6\x16\xc9\xa6\x57\xf7\x21\xad\x67\x28\ \xa4\xf4\x44\xc4\x14\xe2\x53\xf1\x0a\xd1\xb0\x94\x8f\xe0\xb3\x8a\ \xe2\x7e\x32\xd2\xa5\x33\x8b\xeb\xf5\x77\x2a\x8b\x1e\xc5\x50\x75\ \xda\x50\xb0\x6b\x7f\xcd\xdd\x78\x98\x74\x58\x33\x3d\xc2\xae\xe3\ \x38\x33\x7d\x80\x6e\x94\xd1\x5d\x0c\xe6\xf7\x8e\x5a\xd1\x79\x00\ \x31\x0c\xae\x02\x47\x82\xc1\x92\x22\xd6\x18\x90\x9d\xd0\x2a\x59\ \xc4\x0d\x85\x36\x15\xa7\x94\x94\x20\xb2\x0a\xa3\xfb\x8c\x65\x0a\ \x99\x14\x76\xa0\xd5\xb8\x4a\xd3\x73\xfc\x58\xf8\x0b\x12\x76\x17\ \x41\xef\xfb\x1a\x26\xf5\x73\x5b\xeb\x71\x7f\x13\x28\xa4\xa7\x00\ \xe8\x3c\x40\x2d\xb6\xb1\x02\xac\x82\x06\x57\x1c\xaa\xf8\xe7\x48\ \xe4\x57\xd0\x76\xb4\x7b\xff\xc9\xaf\x01\x3e\x0a\xa4\xc1\xe5\x4e\ \xfa\x2a\x01\x5e\x76\x80\x47\x84\x9a\xa3\xe9\x28\x52\x6f\x2f\xba\ \x1d\x52\x51\x26\xe2\x50\x7b\xbb\x94\xed\xf8\x1d\x8c\xc4\xe7\xf9\ \xfe\xa6\xe5\x1e\x71\x5f\xd3\x4c\x7d\x4f\x66\xd0\xf3\x4f\xb5\x3a\ \x6a\xc6\x5a\xde\x87\xd2\x53\xac\xbd\x77\x8e\xbc\x1b\x1f\xc5\xaa\ \x47\xae\x1b\x29\x7e\xef\x0c\x3d\x60\x63\x71\x05\x10\x24\xd6\x6a\ \xb9\x51\x71\xee\xcd\xd5\x02\xd5\x90\xfd\x7c\x7c\x1c\x2d\x90\x4e\ \x76\x9d\x3c\xf3\xed\x75\xdc\xa7\xe7\x63\x84\x90\x59\x10\x5a\x82\ \x6b\x5d\x5a\xc8\xc6\x6c\x5d\x18\x29\x2e\x8d\xcd\x8d\xdb\xa1\x93\ \x76\x57\x22\x12\x88\x54\x16\x31\x8c\x88\x15\xf7\x81\xe9\xa2\x51\ \x03\x1b\xf4\x83\x8a\x01\x82\x6b\x64\x7b\xce\xc9\x20\xde\x02\xf2\ \xa9\x12\x06\x5d\xb7\xe5\x45\x99\x2e\x08\xea\xfe\xd6\xdf\xb8\x73\ \x9f\xd2\x63\xcf\x82\x8e\x16\x53\xd2\xfe\xb9\x15\x8f\x8b\x97\xf5\ \x7f\xfe\x5f\xff\x87\x9b\xfe\x4b\x8c\x5b\x2a\xb3\x7a\x1c\x44\x70\ \xed\xdc\x38\x09\xa1\x38\xcf\x33\xb8\x44\xbf\x9b\x65\x0a\xcc\x8c\ \xac\x9a\x94\x75\x84\x19\x6a\x0e\xf9\x67\xd8\xb6\x3e\xc4\xd7\xfa\ \xc6\x61\x9b\x79\x1c\x87\xb4\xd9\xa3\xa8\x33\x1e\x6e\x75\x4d\x05\ \x20\x5e\x6d\x6e\x3f\x77\x53\xb1\x48\xce\x73\xe7\x8a\x88\xf0\x80\ \x5a\xdf\x23\xba\x55\x84\xc5\x33\x62\xd3\x52\xf0\x11\x77\x31\xc0\ \x9a\x85\x10\xec\x27\x90\x3d\x5e\x3c\x38\x4c\xcf\x94\xd0\x91\xba\ \x02\x7c\xf0\x8a\x14\x68\x23\x01\xf0\xc6\x49\xfb\x11\xcd\x97\xb5\ \x76\xb0\x79\xd7\xd9\x6f\xea\x4a\x35\x6e\xeb\x86\x70\xe4\x47\xb4\ \x82\x61\x0e\xc1\x69\xce\x75\x4d\xde\x3e\x25\xfe\x6c\xe2\x1c\x19\ \x01\x61\x9b\x22\xdc\xf7\x56\x45\x79\x61\xe6\xf6\xe3\xcb\x7c\xdf\ \xd7\x73\x51\xb4\x92\xbd\x7f\x2c\xeb\x49\x78\x5a\x8f\xf3\x34\x46\ \xe8\x82\xfe\xd1\x6c\x85\xca\xc8\xf3\xcd\xcb\xae\x31\x36\x8f\x84\ \x42\x23\x92\xad\x13\xd4\x44\xe6\x56\x53\x5c\x61\x22\xc1\x02\x51\ \x1c\x74\x46\x42\xc7\xbb\xa3\xbb\xdb\x84\x7e\xe2\x55\x9d\x1a\xf6\ \x1f\x5c\xf5\x81\x76\x83\x68\xc1\x00\x4b\xd0\x9e\xb4\x4c\x54\x90\ \xf4\x6a\xa3\x4a\x7c\x9f\x08\x0b\x1e\x17\x03\x32\x61\xcc\x47\xd6\ \x35\x28\x9a\x69\x5a\x40\x48\x95\x86\xc1\x91\xdd\xc1\x9a\x7b\x94\ \xf6\xe2\xdc\x26\x68\xbb\xd3\x4f\xda\x06\x00\x52\x4e\x4f\x1f\x5c\ \x45\x2f\x68\xce\x30\x53\xa3\xf9\x37\x6a\x6f\xd6\x7b\xff\x39\x67\ \xac\xd1\x30\x59\xb7\x76\x05\xc6\xb7\x84\xca\x25\x5c\x26\x5a\xc3\ \x4f\x53\x48\xb2\x35\xa4\x88\x8e\x05\x45\x71\x35\xda\xd0\x2a\xdb\ \xbd\x4c\x3d\xc9\xcd\x88\x70\x07\x29\xc5\xa1\xa0\x73\x1e\xc9\x1c\ \xe5\x94\x90\xf2\x3c\xbe\x6f\xeb\x11\xe5\x7a\x4c\x49\x44\xb3\x0e\ \x5b\x91\x04\xf1\x79\x62\x44\x11\xa3\x83\x01\x40\xac\xd5\xbc\x84\ \x0a\x67\x67\x78\xb0\x88\x61\xa3\x29\x65\x23\x01\x6d\x13\x71\x5b\ \xfe\x99\xd9\xb2\xa5\x20\xf4\x26\x36\xb4\x4b\xfd\xe9\x29\x7c\xe9\ \x6a\x3a\x5a\xef\xc6\x97\xa8\x24\x9a\x83\x83\x33\x88\x52\x53\x42\ \x1d\x58\x17\x69\x15\x51\x62\xa7\x53\x43\x76\x57\x77\x48\x23\x85\ \xb4\x01\xc4\xbb\x3b\x2a\x13\x11\xe5\x05\xc1\xd6\x36\xe9\x20\xe5\ \x79\x22\x55\x6e\x10\x6b\x28\x06\xae\x1d\xdf\x5d\x83\xe3\x88\x5d\ \xcf\xc6\x31\xb6\xb5\x2f\x17\x3c\x58\x65\x08\x7b\xbc\x11\xc1\x88\ \x14\xa4\x52\xbf\x3f\x59\x6c\x86\xc2\xd1\x76\xab\x8c\xab\x22\xea\ \x66\xb7\xa5\x6b\x6c\x99\xa4\x49\x60\x0c\x12\x8b\x67\x9a\x81\xab\ \x59\x3e\x24\x85\x2c\xb6\x49\x14\x9b\x68\x45\x14\x84\xd8\x3a\xd0\ \x98\xa2\xce\x07\x2c\xa0\xdc\x60\x70\x59\x50\xdb\x71\x96\x68\xa9\ \x51\x74\xa4\x1f\x24\x03\x43\x80\xd5\xa9\xe3\x39\xa1\x53\x29\xc7\ \xb4\x65\x7a\xcc\xde\x1a\x10\x78\xf4\x5e\xb8\xc4\x0d\x23\xb7\xbc\ \xc0\x8f\x22\x28\x70\x08\x9c\x8e\xf9\x8b\x11\x08\xa4\x94\xd8\x53\ \x7e\xf8\xb8\x98\x41\x88\x93\x35\xb4\xab\x91\xf0\x94\x60\xaf\x91\ \x10\x47\x0d\x63\x6a\x22\xca\x68\x32\xc1\xe7\xe4\x4c\x15\xe0\x57\ \x04\x8c\x00\xf2\xa2\x1d\x1b\x60\xe5\x77\x16\xa6\x9b\x72\xb2\x0d\ \x21\x4a\xa7\xaa\x9e\xcb\xe3\xcd\xea\xc3\xfc\xdd\x5d\xd4\xe4\x30\ \x93\x3b\x4f\x0d\x26\xd0\x7c\x80\x79\xfb\x46\x2b\xce\xbc\xc1\xc3\ \xd4\x1e\x1d\x8e\x54\xbe\x99\xe6\x10\x88\xd5\x23\xcc\xe2\x9d\x67\ \x7a\x40\x63\x72\x3d\xa0\x58\xd1\xf1\xc6\x7d\xa2\xa5\x9a\xd1\xf4\ \x9c\x97\x0a\x75\xe8\xf4\x07\xd8\x4a\x64\xbe\xaf\x9e\x67\x35\x11\ \x6d\xc4\x03\xbe\x30\x22\x36\x18\x88\x8d\xf4\x45\xc6\x50\x85\x57\ \xf7\xe8\xb9\x77\x95\xca\xd2\x7e\x1d\x7f\x65\x5a\xe4\xd3\x00\x5c\ \x85\x10\x9e\x7a\x1d\xb7\x7e\xb8\x01\xea\x56\x4d\xac\x85\xd4\x9b\ \x3b\xa7\x58\x6a\x25\xc6\xe1\x2f\x70\xbc\x3d\xa2\xf3\x1b\xde\xbd\ \x25\x7d\xad\xb5\x22\x76\x3d\x32\xf4\x6c\xf1\x22\xbf\x6c\xa5\x14\ \xcd\x48\x0a\xb6\x05\x0b\x90\xcd\x20\xd2\x14\x00\x43\x57\x93\x28\ \xae\x55\x84\x91\xe8\xec\xaf\x2c\x52\xa0\x87\x76\x33\x26\xaa\xbc\ \xdc\x95\xd2\x51\x35\x1a\x2a\xfa\xac\xa0\xee\x3a\xee\x74\x35\x45\ \x6a\x54\x22\x17\xd7\xfa\x44\x44\xae\xab\xab\x56\xd4\xd0\x9f\x07\ \xb4\x8d\x08\x79\x0c\x9e\x92\xad\x49\x74\x74\x29\xed\xec\x0c\xda\ \x3c\x4d\x97\x0c\x12\x7a\x92\x87\x86\x4b\x78\x4b\x1a\x0a\x4d\xac\ \x79\x68\x05\x84\x2c\xad\x14\x3a\x43\xb7\x1d\x40\x4e\x65\x56\x92\ \x8c\x9c\xa3\xcd\x28\x70\xa8\x45\x20\x38\x6c\xdd\x72\x05\x4a\xb4\ \x4e\x2e\x47\x80\x78\x9c\x4e\x50\xea\x87\xeb\xa6\x21\xda\x05\xaa\ \x6c\x52\x0a\xd1\xce\x82\xaf\xad\x52\x6e\xc4\xdb\x39\xf5\x32\x2f\ \x6a\x87\x0b\x0c\x1b\x21\x8f\xfe\x57\xa6\x21\x95\x04\x29\xb3\x28\ \xe8\x2d\x9e\x84\x84\x37\xb4\xd2\x1e\x03\x39\xe5\x43\x34\xff\x56\ \xc3\x57\xa0\x47\x1d\xe0\x39\x64\x2c\x52\x27\xe2\x99\xce\xe4\xe2\ \xce\x38\x5a\xb1\x2a\xe4\x54\x1c\xdd\x45\x57\xde\x15\xb6\xb9\x33\ \xdd\x0e\x35\x6b\x84\xad\x5d\x3e\x54\x71\x07\xde\x75\xa3\x16\xdd\ \xb9\x56\x2c\xc7\x5d\xcd\xc3\x85\xef\xea\xf1\x3c\x0f\xd1\xb9\x33\ \xb8\x0b\xc1\x9c\x5b\x3a\x9f\xbf\x28\x8e\xa5\x55\x57\xd3\x63\xaa\ \xba\x2d\xa9\x49\x95\x6d\x8c\x6c\x43\xb3\x52\x48\xb2\xe8\x7b\x85\ \xf9\xa2\xad\x1b\x74\x7e\xd7\x3d\xa3\x32\x23\x10\xdd\x94\xf8\x7a\ \x5b\x08\x59\x0f\xa4\x79\x97\x75\x8b\x06\xbc\x66\xc5\xcb\x9b\x80\ \x00\x28\xd8\x22\x4e\x46\xb8\xdd\x6e\xad\x28\xc2\xfa\x50\x3f\x00\ \xc3\xbd\x47\x84\xe8\x28\xcb\xe1\x35\xb0\x06\x8c\x24\x65\x2b\x28\ \x96\x55\x55\x76\xe0\xc8\x76\xca\x52\x62\x97\x86\x2c\x5a\x84\x33\ \x1a\x74\x1b\xa9\x84\xb3\x3a\x8e\x9e\x0b\x2d\x83\x67\x8e\xd4\x5c\ \xd8\xca\xe2\xc2\x1f\x1f\xa2\x71\x6e\xe2\xc0\xd1\x55\xc4\x28\x09\ \x3c\x11\x36\xdc\xf2\xd9\x49\x7b\x74\x1d\x74\xba\xee\x62\x34\x2c\ \x15\xa4\x3d\x42\x24\x45\x55\xbc\xec\xd8\xa1\xed\xab\x02\x12\x8b\ \xcb\x27\x30\x46\x0e\x8c\x12\x5d\xba\x5a\x2f\xc5\x9e\x5f\x82\x5f\ \xb6\x05\xb3\xca\x44\x89\x67\x2b\xf4\x10\x1e\xb3\xb3\x99\x33\x7c\ \x52\xd2\xbb\xbb\xe0\xc0\x75\x70\x6b\x06\x2d\xec\xed\xc9\x40\xc9\ \x6b\x39\xb0\x26\x4b\x86\x1b\x2a\x79\xb6\x59\xda\x73\x03\x4f\x82\ \x22\xcd\xa7\x40\x8f\xe1\xb5\x5b\x86\xa1\x6b\xfe\x35\x63\x96\x64\ \x96\x00\x8e\x1d\x05\xe5\x06\xa9\xd2\x5a\xa8\x9d\x5f\xe6\xf8\x34\ \xab\x33\x5b\xc4\xbc\x7d\x43\x83\xac\x00\xdd\x5e\x2d\xb2\xe2\x7c\ \x0f\x6a\x61\x79\xc9\xb8\x69\x95\x96\xb8\x4d\x09\x8c\x6c\x35\xdf\ \x20\x3f\x08\x2e\x1c\xe7\x19\x24\x4a\xe8\xea\xdb\xd4\x2d\x4d\xd2\ \x7d\x78\x1a\x5c\xd2\x38\x83\x41\x56\x9a\xb4\x0c\x4b\x73\x77\x4b\ \xfd\x90\x31\x76\x2c\xca\xc4\xb2\x30\xa1\x27\xa8\x43\x7e\x30\x73\ \xcf\x63\xde\x1a\x6f\xb7\xe9\xd4\x62\x04\x57\x31\xb3\x1b\x20\x34\ \x51\xd2\x4a\x0f\x01\xe2\xf2\x51\x79\xb3\xc7\x32\xad\xe0\x30\x9d\ \x79\x22\x80\x7f\x43\x36\xfd\x31\x2d\xb8\x35\xe9\x93\xb1\x86\xb5\ \x76\x91\x77\x39\x81\xe3\xe6\xd4\x92\x7c\x2a\x7c\x20\xd6\x52\xa8\ \x68\x0e\x0c\x5a\x27\x6f\xb7\x04\x4e\x35\x07\x1c\x3b\xc5\x98\xb7\ \x24\xc5\x5a\x41\x5e\xe6\x5a\x45\x22\x58\x28\x65\x40\x34\x6b\xdb\ \x89\xbd\x78\x6a\xa1\x68\xd9\x00\x81\xb5\xdc\x40\xaa\x95\xb1\x02\ \xb0\x9e\xc7\x53\xd5\xd5\x8e\x09\x33\xef\x11\xf1\xf8\x65\x07\xae\ \xde\x5a\x75\x3e\x6a\xda\x86\x72\x9c\xd2\xed\x19\x58\x26\x05\x2e\ \x64\xbb\xbf\x68\x24\xa8\x86\xbb\xd7\x60\x49\xa5\x3e\x54\x4e\xc7\ \x53\x6d\x2a\x40\xbd\xad\x41\x2d\xc6\x10\xb9\x77\x89\xac\x6a\xf0\ \x04\x9a\xe4\x67\x68\xeb\xdd\xef\x46\xae\x1a\x28\xb5\x9e\x3b\xda\ \xa0\x10\xc8\x9d\x28\xf9\x64\x06\x23\x56\xa7\x9c\x6a\x8b\xfc\x16\ \x73\xc5\x30\x3e\xab\x10\xb7\x98\x89\xe6\xb3\x5c\x6a\x68\x67\x29\ \x0a\x69\x79\x56\x6b\xf9\x34\x6c\x81\xae\x49\xd7\xf3\x14\xd2\xa5\ \x51\xcc\x87\xbd\x3b\xc4\x60\xc4\x5a\xd1\x5d\xe8\x5c\xc7\x7e\xd0\ \x07\x67\x36\x1b\x06\xad\x0d\x8a\x7b\xa0\x3f\xd6\x10\x2c\x26\x3d\ \xd6\x7a\x8a\x72\x12\x3d\x60\x2d\x03\x3a\x13\xf1\xba\xd7\xd0\x48\ \x00\xab\xa0\xda\x65\x23\xa2\xf7\xc5\xce\x6d\xa1\x1b\xba\xac\x48\ \xe9\xcb\xc8\x0d\x39\x25\xbc\x31\xd0\xd5\xe7\x2e\xd3\x56\x53\x08\ \xc6\x78\x72\x0c\xfc\x68\x5a\xf7\xce\xed\x6b\xb3\xa6\x08\xaf\x7e\ \x13\x14\xc2\x73\x5a\xa7\x80\xa0\xdd\x96\x1a\xb9\xc6\xf2\x50\xa1\ \x2b\x09\x6b\xce\xaa\x2e\x48\x44\x83\xce\x51\x6d\x61\x55\xc2\x1e\ \xe8\xa0\x0f\x2e\x47\xad\x6f\x3e\xdb\xe3\xd4\x4d\x92\xb1\x7c\x20\ \x32\xa5\x15\x0b\xd0\xd7\x7a\xde\xdc\xc1\x45\x96\xd9\x9a\xe7\xe7\ \x42\xfb\x18\x40\xcf\xef\x7f\xfa\xd7\x58\xa1\x9f\xbb\x0f\x86\xf5\ \x80\xfe\xb1\xfe\xf2\xfb\xe2\x62\xb5\x63\x9d\xce\x1c\x5a\xba\x3c\ \x31\x3e\x39\xd4\x01\x15\x8b\x6c\x0f\x25\x11\x24\x9e\x58\x2a\xc5\ \xb6\x80\xf8\x3d\x3c\x9e\x84\x2a\xc5\xf2\xfd\xb9\xb1\x7c\x09\xa2\ \x4b\xae\x0a\x39\xa3\x2b\x5b\x35\x4f\xd8\xd1\x2e\x98\x74\x1d\x9d\ \xe9\xb6\x66\xfe\xd6\x13\xae\x03\x6f\x4c\xb1\x7c\x99\x1a\x19\x0e\ \xd6\x16\x88\xb5\x9e\x36\x09\x39\x36\x05\x43\x07\x6c\x35\x38\xdb\ \xa2\xaf\x7e\x44\xcc\xf4\x3d\xdf\x98\xdb\x5e\x64\xcf\x41\x2a\x39\ \x86\x2c\xd6\xa1\x78\xac\xbc\x3a\x33\x17\x43\x59\x01\x6a\xb8\x85\ \x28\xd2\x73\xf7\x37\x8d\x36\xfb\xd6\x04\x15\xf1\xa8\xac\x4e\x14\ \xe4\xa2\xe9\xb0\xc8\x54\x10\x83\x95\xb9\x7f\xdb\x0d\x0f\xee\xbd\ \xa3\x27\x97\xcf\x97\x87\x2b\x91\x9c\xd0\x4f\x8b\x41\x2f\x4d\x77\ \x60\xb0\xb9\x53\xdd\x8e\x7b\xe5\x69\xaf\xd6\x0a\x2b\x8b\xfc\x49\ \x6d\x49\x3b\x7a\xc9\xae\x11\xca\xa8\x20\xc4\x88\xca\x68\xfe\xf2\ \xcb\xb0\x33\x22\xba\x74\x64\x53\x71\x2c\xd1\xf7\x9d\xc4\xf2\xd7\ \xdc\xed\x03\xd0\x58\x67\x0d\xe0\x2a\x92\x46\x4f\xc1\x52\x22\x56\ \x2c\x83\x37\xdb\x54\x24\x81\x3b\x11\x25\x4f\x0e\x29\x77\xfa\x67\ \x8b\x89\xb5\xa0\x14\x81\x15\xb1\x62\xed\xdc\x3f\x21\x28\x9f\xdf\ \xff\xf4\x2f\x04\xf5\x95\xb2\xc5\x01\x66\x92\x65\xf8\x7e\x81\x6f\ \x87\x07\xa7\x68\x85\xfb\x5a\xe5\x8a\xa5\x53\xd8\xdd\x6d\x46\x35\ \xd8\x51\xb6\x8b\xdd\xb4\xd4\x00\x09\xd4\x12\xb1\xca\x62\xa7\x12\ \x64\x73\xfb\x2d\x18\x12\xd7\x71\xdc\xe9\xd3\x5b\x28\x0a\x0e\x5b\ \x76\xaf\x49\xd3\xcd\xc1\xd9\x99\x6b\x80\x4c\x7b\x37\x4b\x0b\x40\ \x3c\x25\x2e\xd8\x09\x20\x4a\x04\x7b\xa4\xf3\x24\xe3\x6b\xe8\xc9\ \xfd\xec\x4b\x8c\xb1\x6f\x82\xf3\x65\x00\x80\x8b\x5d\x49\x1f\xdf\ \x2f\x3e\x45\x26\x6c\x3a\x9b\xa4\xdc\x5a\x8b\xef\xce\xf0\x99\x66\ \xc9\x34\x0d\x2e\x06\xb1\x18\x1e\x3f\x8f\x09\x0c\xa2\xb0\x01\x07\ \xf8\x4c\x46\x43\x91\x86\xd1\xdb\xce\xb4\x49\xe8\x34\x70\x94\x88\ \x90\xd1\xad\x08\x1f\x05\x51\x08\x62\x97\x7a\xb6\x32\x57\x2c\xd3\ \x9e\x95\x1b\x62\x36\xf0\xe5\xea\xab\xde\xc6\xd1\x17\x20\xc5\x03\ \xb4\x64\x1e\x7b\x04\x01\x5c\x66\xd0\xf8\xf5\xe5\xcf\x1c\x93\xa0\ \x86\x87\xc1\x22\xae\xc9\x37\x2a\x22\x72\x6f\xd1\xc0\x17\x4a\x21\ \x52\xb8\x5d\x13\x9d\x84\x21\x96\x45\x49\xca\x35\x42\x7a\x20\x8e\ \xff\x45\xdb\xf7\xf8\x7e\xd6\x0f\x31\xba\x1b\x21\xff\x71\xaa\x0b\ \xb0\xb1\xcb\x43\xb5\x54\x95\x0a\x31\xa5\xf7\xfd\xf9\xe7\xff\xf2\ \x2f\xff\xf2\xaf\x7f\xfe\x7a\x9e\x3f\x7e\xfe\xf1\x97\x7f\xff\xcb\ \x1f\xff\xf8\x47\xe1\x1a\xe4\x62\xfc\x7c\x5f\x73\x62\x1f\x94\x23\ \xdf\xda\x78\x21\x06\xc3\x7e\x69\x1e\x6f\x0a\x22\x9e\x7a\xf7\x33\ \x1b\xb2\xe5\x16\x57\x8a\xc1\x65\x2f\xe6\x93\x82\x06\x2f\x9c\xef\ \xe1\x18\x1f\x9c\x29\x5b\x2a\x73\x33\xe2\xcb\x47\x31\x91\x25\x8d\ \x1d\x7d\x6f\xa4\xb4\xfc\x88\xed\x91\x59\xfc\x5e\x09\x69\xc4\x09\ \x3b\x53\xa9\xf5\xac\xdd\x7e\x83\x3e\xd1\xbb\x5d\x15\x48\x6a\xdb\ \xc0\x96\x1b\xd5\x78\x39\x88\x96\x61\xbb\x0e\xdf\x24\x56\xe4\xce\ \xd7\xb8\x93\x02\x65\xa7\xab\xcb\xd2\xb2\x9a\xb6\x67\x8d\xfb\xcc\ \x10\xc7\x29\xe5\x4e\x04\xcf\xa0\xb5\x4d\x36\xd4\x10\x36\xde\x57\ \x8c\xa5\xf4\x07\xc4\x5a\xc1\x58\x68\x96\xf7\xc2\x0a\x68\x87\xb5\ \xb8\x06\xac\xb3\x07\x1e\xe5\x4f\x7d\xb8\x8c\x47\x09\x5c\x76\xa9\ \x86\x51\x49\x64\x6e\xcb\xa5\x1d\x9d\xb3\x0a\x32\x45\x3c\xb9\x6d\ \xfe\x5b\x02\x79\xb1\x9c\x4b\xb3\xb9\xa1\x99\xda\xca\xe1\x6b\x53\ \x07\xd3\x47\xc4\xde\xee\xfe\xe3\x22\x10\x75\x4b\xb1\xdb\xbd\x96\ \x30\xb3\xc5\xa2\x43\x3f\x62\x08\x3b\xb7\xd9\x7a\x7f\xfe\x2f\x7f\ \xfe\xf1\xe3\x07\xc9\x3f\x7e\xfe\xf1\x97\xbf\xfc\xe5\xe7\x7e\xb3\ \x8c\x14\xcf\xe8\x73\xc6\xd9\x46\xcc\x39\xe3\xe8\xfa\x2c\x59\xa6\ \x36\x8c\x16\xcb\x35\x8a\x8a\x72\xc4\x34\x78\x0e\xdb\x00\x04\x94\ \x69\x23\x17\xb4\xb9\xa2\xbb\xe8\xc1\x2d\x7e\xfe\xfc\xe3\xe7\x3f\ \x7e\xee\xfd\xfe\xf6\xe3\x7f\x7f\xfe\xb7\x3f\xff\xf8\xf1\xfc\xe3\ \x1f\xef\x1f\xff\xf8\xfb\x7f\xfc\xe5\xaf\xd1\x4c\xf8\x66\xa9\xf3\ \x79\xd6\xf3\xd7\xbf\xfc\xcd\x13\x44\x96\xbe\xc3\xa5\x76\x7c\xfd\ \xf8\xed\x59\x8f\xa0\xf7\xe7\xcf\xff\xf8\xfb\xdf\x67\xa8\x62\x12\ \xfd\x68\xb9\x90\xee\xfc\x3c\x38\xd2\xb1\x90\xf4\xb3\xb3\x77\xeb\ \x29\xe0\x2e\x3e\x93\xd0\xe6\x20\xba\x34\x3f\x26\x2c\x8a\x91\xb1\ \x56\x0b\x0d\xc7\x88\xb6\x44\xed\x7f\xfe\xf3\xbf\x92\xd4\x86\xc4\ \xff\xf5\x3f\xff\x7d\xfa\x50\x17\x41\x99\xca\xbd\xd7\xb3\xc6\x63\ \x45\x38\x7e\x3e\x92\x9e\x58\x76\xbf\xbb\x5c\x4e\x40\xf2\xdd\x5b\ \xda\xe4\x5a\xcf\x17\xa7\x6b\x11\x6b\xf8\x5b\x7d\x7a\xc5\xfc\x9d\ \xe9\x4b\xa8\xb2\x41\x2b\x4f\x50\x23\xaa\x68\x8e\x36\xdb\x8a\xa4\ \xa1\x14\xbe\xb9\xed\x52\xe1\x34\xb1\x33\x1f\x9b\x64\x48\x2b\x96\ \xed\x1e\xd3\x39\x80\x69\xdb\x36\xc9\xbe\xa8\xcf\xde\x7b\x38\x74\ \x42\x68\xef\xe8\x5e\x62\x4c\x8a\x82\x16\x53\x6d\x9b\xb0\x36\x38\ \x39\x00\x00\x20\x00\x49\x44\x41\x54\x6e\x65\x8a\x88\x62\x19\x27\ \x45\xaa\xc5\x72\x6e\x62\x9f\xb5\x26\x7c\x6c\x5d\x4e\xa2\x97\x50\ \xef\x23\xb7\x80\xce\xbd\xcd\xc9\x1b\x33\x9b\x53\xee\xba\x78\x78\ \x9e\xc7\x9c\x4b\x51\x7b\xef\x3f\x7e\xfe\x5c\xeb\xf9\xfd\xcf\x7f\ \xfa\xf1\x00\x60\xee\xfc\xfb\xcf\xbf\xfb\xf3\xd9\xb6\x5a\xcd\x37\ \x8f\x58\xc6\x43\xa3\x71\x01\x8f\xcb\xbb\xce\xe7\x5a\x51\xd8\x22\ \xbb\x9d\x43\xdb\x08\xda\xb1\x24\x90\xfb\x25\x63\xad\xa7\xcd\xc5\ \x64\x4f\xf0\x00\x56\x2c\xba\x1e\x2e\x59\x07\x32\x7f\xdf\xef\xcf\ \xcc\xfc\xf3\x9f\xfe\xc4\xdc\xda\x6f\x28\x7f\xff\xed\xeb\x2b\xfe\ \xfc\xf5\x3c\x05\x7a\x16\x20\x14\x80\x9e\xbf\xfd\xed\x7f\x59\xfd\ \x7d\x4d\x0f\xf1\x7c\xfd\xf8\xb7\xaf\x27\x62\x01\xb1\xa5\xbf\xfe\ \xfb\xff\x8c\x22\xb3\xd7\xe5\x29\xf3\xf9\x40\x14\x1a\xc4\xb5\x42\ \x50\xee\x3c\x33\x81\x26\xf4\x8f\x7f\x31\x85\x2a\xe1\x19\xc6\xe3\ \x23\x96\xbb\xb1\x41\xf9\x32\x73\x2b\xd7\x8a\x72\x33\xcc\x84\xb0\ \xad\x65\x8f\xd8\xef\xbb\x9e\xaf\x3f\xfd\xf6\xdb\x8f\x1f\x3f\xbe\ \x7e\x7c\xbd\xef\xcf\x3f\xfe\xf1\x1f\xef\xcf\x97\x0c\x21\xed\x9c\ \x52\x83\xa0\xe8\x72\xb7\x49\x85\x81\xe5\x69\xda\x9e\x2b\xdc\x3c\ \x62\x53\x9d\x93\xb6\xd0\xe7\xfa\xe3\x1f\x8d\x3c\xa2\x6f\x96\xb3\ \x10\x13\xfa\x62\xec\xa0\x1c\xc6\x8d\x70\x04\x6d\x57\x1b\x0c\xe9\ \xdd\x1b\x64\x76\x17\x54\x18\xa3\x1d\x94\xf7\x36\x92\xb2\x40\xe4\ \x4e\x06\x1e\x72\x15\xb0\x99\x81\x5d\xca\xfc\x70\xf4\xcc\xc8\x88\ \x08\xd9\x7d\x30\x54\xc8\x82\xb7\x40\x30\xb9\x46\x74\x1f\x96\xfa\ \x2f\x17\x7c\x19\x15\xa6\xdb\xf7\x2c\xdb\xf6\xad\xad\xb1\xb8\x95\ \x36\xd8\x9e\x79\x64\xcd\x94\x0e\x40\x07\x83\x14\x89\x9d\x1b\x42\ \x78\x92\x6e\xf0\xa9\xcd\x2e\x75\x11\xd5\x62\x45\xa0\x5d\xb1\xfd\ \xd7\x13\xb1\x77\x92\xca\xc5\xe7\xe9\x26\xc3\x16\xe9\xc8\xdf\x7f\ \x7b\x20\x5f\x42\x9f\x91\xb5\xd6\xf8\xd9\xad\x29\x7d\xcb\x9a\xda\ \x06\x00\xaf\x9d\x58\x56\x3b\x9d\xa1\x9a\xba\x28\x59\x52\x9a\xf5\ \x42\xe8\xf1\x52\x0d\xb3\xe8\x97\xcb\xe1\x4c\xd4\x7a\x82\x0e\xf1\ \x2b\xfc\xbb\xb0\xb9\xa4\x55\x47\x46\xa9\x9d\x41\xc4\x8f\xe7\x8b\ \x04\x73\x99\x51\x6a\x40\x42\xf9\xfc\xb6\xbe\xb8\xe0\xc3\x6a\xd6\ \xf5\xbb\x33\x4a\x75\x94\x11\x20\xf5\x63\xd1\x0e\xd6\x6b\xad\x15\ \x91\xd0\xde\x6d\xdb\x9a\x6a\x07\xee\x9a\x5c\xb0\x57\x77\xd8\x8b\ \xba\x70\x8f\xac\xc5\x32\x85\x20\x77\xee\x20\x09\xad\xdb\x41\x1a\ \xcb\x5e\x82\x9b\x20\x14\xc6\xa1\x54\xfe\x23\xda\x7c\xe4\x2a\x6b\ \x2b\x1e\x10\xfa\x7a\x9e\xe0\x99\x4c\x7a\xc8\x7e\x76\x64\x74\xb3\ \xde\x03\xf4\xf6\xdd\xbb\xac\xed\xdc\x38\x6e\x48\xab\xa0\xd9\x1a\ \x44\xea\xc6\x0c\x14\xad\x76\x1d\x00\x54\x33\x54\x25\xed\xd2\x4d\ \x2e\x86\x72\x97\x73\xfe\x38\xbf\x5c\xac\x56\xab\xb2\xca\x9a\x64\ \x3d\x45\x94\xb2\x27\xe6\x58\x67\x86\xf7\x46\x74\xdc\xdf\x28\xb7\ \x16\x65\xfa\xf4\x04\xb5\x08\xc3\xaf\x23\x14\xa0\x7d\xb0\xa4\x85\ \x60\x2c\x89\xbb\x45\xd9\x1b\x6f\xaa\x02\x05\x15\x29\xa5\xbc\x16\ \x48\x9e\xe9\xa5\x3a\x76\x1e\x19\x9f\x07\x63\xa2\x22\x16\xd6\x5a\ \x1b\x95\x78\x05\xac\x58\xc8\xcc\xf4\xa8\x4a\x10\xb9\x62\x05\x33\ \x17\x73\x73\x45\x8f\x4d\xbd\x79\x22\xc3\x57\x7b\xc8\x60\x05\x39\ \xf5\x50\xbb\x76\xc2\x14\xaf\x89\xc7\x88\x58\xb4\x59\x7d\x43\x33\ \x08\x94\xad\xb5\xba\xe1\x34\xfb\x21\x8b\x18\x86\x36\x66\xb0\xab\ \xa8\xb4\xb9\x16\x21\xe5\xf6\x8b\x0d\xb6\xdf\x4f\xeb\x79\xca\x72\ \x18\x4a\xe9\xdd\xef\x8f\x41\x61\xdc\xf5\xad\xa5\x9d\x5a\x6e\x04\ \x60\x63\xc3\xc7\xac\x9a\x58\xd1\x56\x8d\x04\xd3\x1b\x76\xba\xd1\ \x44\x99\xfd\x18\x3c\x35\x93\xbb\xfc\x11\x67\x9a\x35\xa4\x94\xd1\ \xe5\xd9\x54\x9a\x96\x04\x2a\x18\x8a\xdb\xb4\x43\xb2\xc4\x1c\x86\ \x51\xca\xd5\x3a\x9a\xd9\xd2\x86\x2f\xce\x72\xca\xd8\x10\xa1\x15\ \xc8\x08\xae\x72\x44\x71\x3d\xbd\xd6\xb2\xef\x99\x01\xdb\x43\xdf\ \x20\x6f\xc9\x49\x7b\x83\x9d\xbe\x20\x18\x8a\xbc\x38\x0d\x81\x45\ \x3b\xa0\x04\x57\x3b\x13\xe8\x96\x40\xf1\xaa\xbc\xaf\x8d\x0e\xc6\ \x5e\x1e\x30\x21\x7d\x7d\xd9\x50\x62\x6c\xde\xd5\x85\x94\x1f\x22\ \x66\xae\xce\x1a\x6b\xab\x18\x3a\x43\x1e\x54\x0a\x43\x79\x6e\x13\ \x2e\xeb\xab\xa3\x32\x78\x6f\xe1\xb9\xbd\xc4\x6a\x43\x13\x8a\x84\ \x62\x04\x67\xab\xf5\xb1\x36\x75\xdb\x7b\x67\x3b\x4e\x14\x87\xab\ \x86\x9b\xbb\xc2\xce\xe8\xfa\xc7\x47\x52\x56\xb7\x8e\xc6\xa9\xf4\ \xa7\xd0\xee\xb9\x48\xad\x95\xa9\xf3\xb7\xfd\xf9\x41\xa7\x8d\x44\ \xfb\x48\x1d\xe1\x6d\x45\x49\xec\x19\xec\xd4\x27\x3c\x7e\xb4\x18\ \x9b\x58\xb6\xc2\xb6\x01\xcc\xb1\xa1\xf9\xd0\x33\x90\x9d\xce\xba\ \x94\x30\x33\x24\x88\xe8\x3f\x3b\x83\xac\x26\xaa\x79\x8c\x2d\x41\ \x22\xb7\x67\x38\xb3\x2b\xe5\xe7\xde\xa5\xe2\xb6\xf7\x77\xcf\x18\ \x9f\xb2\x39\x18\x5a\xac\x67\xec\x1f\x07\xbc\x3b\xae\xa6\x3c\x4c\ \x2b\xba\x9b\x8c\xad\x8f\xd6\xac\xf7\xf5\x04\x2e\x73\xfb\x56\xb5\ \xf3\x10\xc4\x87\x4f\x1d\x41\xa9\x3a\x99\x40\x19\x6c\x67\x11\xee\ \x86\x9d\x3a\xab\x09\xc0\xc0\x8b\xcd\x8c\xbb\xc2\x56\x51\x29\xa8\ \xcf\x15\x54\x9f\xd2\xa0\x59\x50\x33\x06\x65\x98\xa9\x7d\x2d\x2d\ \xa8\x72\x3d\xf3\xf2\x27\x6d\x5a\xf4\x2c\x4d\xc0\x87\xf5\x54\x91\ \x5e\x9a\x24\x8e\x54\xd3\xa0\xa2\x45\x85\x47\x7a\xa0\x32\x9e\x6c\ \x1f\x82\xbc\x3c\x94\x7b\x64\x99\x01\xec\xf6\x71\x75\x33\xba\x3d\ \xbc\x74\xd5\x38\x79\xc1\x21\xa9\xd9\xfc\xcd\xd1\xc0\xd6\x36\x7a\ \xb2\xb3\x31\x98\x6e\xce\x91\xf5\xdd\xd0\x24\x47\x1b\x0c\xb6\x1e\ \x2b\xf1\xcd\x2e\xc2\xf0\x5d\x2a\xc5\x3c\xab\x05\x6c\xe7\xeb\x44\ \xd5\x8b\x9e\xa6\x14\xd4\xd9\x27\x60\xa1\x9f\xc7\xa6\x1f\x16\xba\ \xed\x68\xf3\xe9\xba\xd8\x97\xe1\xc6\x06\x7e\xd5\x05\xdf\xae\x97\ \xed\x11\x78\x31\x17\xcb\x19\x6b\x18\x1c\xc4\x55\x81\x40\x79\x5b\ \x8e\xa0\x5a\xdf\x2c\x4c\xca\x9b\x49\x6a\x62\xa1\xdc\xfb\x2d\xa3\ \x04\xa3\xea\x3d\xad\xcd\xdc\x3c\x48\x6b\x45\xa1\xa6\xbf\x24\x10\ \x6f\x56\xed\xc8\x21\x82\xb4\xa2\xa0\x59\xfa\x68\x1f\xde\x6c\x17\ \xe7\xc2\xe0\x6b\x3f\xd7\x18\x9a\x34\x7d\xfa\x86\xf9\x9b\x6e\x32\ \xac\x23\x07\x98\x87\xe1\xd7\xc4\xa1\xb2\xd3\xdc\x82\x9e\xbd\xbe\ \x6d\x44\xef\xde\x11\x88\xe1\x5f\xe4\x2f\xee\x53\x97\x21\x0e\x33\ \xf7\x5a\x01\xe4\x55\xc4\x3b\xd5\x6e\xdf\x5b\x72\x89\x97\xfe\xa7\ \x50\xc2\x6c\xa5\x80\xd6\x5a\x7d\xce\xfc\x65\xf3\xb8\x5f\xdb\x47\ \x18\x97\xf9\x59\x79\x80\xde\x7e\xf9\x23\x7e\x0e\x1f\x6a\xd3\x61\ \xc7\x76\xbe\xff\xac\xe3\x3c\xd8\xf7\x2e\xcb\x8a\xbf\xf3\xaa\xda\ \xf7\x22\x0c\xd1\x2a\x0b\x7f\xc3\x51\x63\xfb\xd5\x8c\x2e\xac\xfe\ \x51\x67\x2f\x97\x8e\xd4\xf9\xc3\x6c\xe0\x43\xd0\xda\x63\xef\x8d\ \x5d\x71\xd2\xca\xd3\x96\x24\x65\xbe\xc3\x08\xc1\x2d\x52\x2a\x35\ \x54\x39\xf8\x1f\x65\xe5\x87\x70\xfe\x36\x96\xf0\xda\x89\x1c\xa5\ \xd0\xb7\x7b\xf2\xcd\xfe\xe5\x43\x62\x60\x7f\x19\x8e\x21\xc2\x65\ \x98\x7a\x5d\x33\xc3\x3b\x4a\x71\x39\x2f\x57\x8f\x92\x99\xc5\xf4\ \xe9\x0b\xec\x6a\x36\x66\xef\xd2\x80\x69\x68\xf6\xde\xed\x5a\x73\ \x84\xa0\x5c\x2e\xf2\x6a\x24\x5f\xe1\xc2\xc9\x38\x78\x39\xd6\xfa\ \xe4\x45\xf0\xbb\xf7\xe9\xf1\xbf\x1f\x7f\xb3\x76\x7b\x2f\x6b\x3b\ \x4e\x31\xe0\x95\x86\x8b\x51\xc3\x86\x88\x41\x60\xd3\xdd\x42\x5d\ \xf7\x58\x24\xd7\xda\xfb\x55\x8a\x65\x1c\x1c\xfd\xe0\xaa\xae\x20\ \x8f\xb0\xb1\x47\x72\xb3\xab\x63\x37\x33\xad\x4a\x91\x31\x92\xc6\ \x58\x2e\x35\x9f\xc6\x24\x92\xf1\x9f\x66\xfb\x9f\x94\x3d\x26\x24\ \x68\x8d\xdc\xf0\xf6\x4f\xd2\x6c\xba\x11\x3e\xd6\x33\x8e\xa6\x53\ \x74\xe1\x35\x45\x60\x8e\xe6\x7e\xf6\x2f\xa5\x2b\xc6\xd6\x31\x99\ \x8b\x19\x1a\xea\x29\x92\x32\x22\xe1\xe6\xeb\x58\xe0\xef\x8e\xff\ \xd3\x7c\x6e\xed\x37\x67\xef\x8f\x55\xf8\xee\xf5\xf5\x4d\xd9\x76\ \xb6\x75\xec\x3d\xae\x09\x14\xf9\x9d\xae\xda\xce\x52\xb7\xd7\xcd\ \x2d\xf0\x2e\x5f\x61\x8d\xc3\x22\x8e\x25\x40\x65\xdd\xb3\x93\x14\ \x20\xff\x89\x83\x6e\x57\xda\xf8\xf0\x37\xe3\x87\x23\xcf\x31\x8b\ \x48\xcc\x98\x61\xad\x09\x45\xe3\x96\x58\x3d\x78\xeb\x73\x8a\xa5\ \xd7\x29\xf7\x78\x9d\x9b\x48\x5b\xe4\xaa\x21\xce\x0a\x99\x59\xd6\ \xe9\x69\xaa\xa3\x8d\x2f\xfa\x94\x67\x66\x44\x8e\xf5\x21\x84\x2c\ \x72\x43\xec\xcc\xbd\x5f\xd6\x86\x8e\xb3\x62\xf2\x9b\xc9\xe0\x08\ \x89\xef\x67\xd1\x54\x6b\x73\x90\xb3\xad\x5d\x35\x6c\x4a\x90\x7b\ \xbf\xc1\x22\xb5\x7b\x4c\xd7\x95\x61\xcb\x69\xcb\x08\xd9\x78\xe0\ \x19\xcc\x8d\xe1\xd3\x11\x22\xb4\xd3\x29\xf0\x21\x8c\xfb\x78\xaf\ \xcd\xe1\xb6\xa4\x56\xca\xba\x08\x53\x54\x64\xef\x01\xae\x2c\x5a\ \x6a\x71\x82\x8f\xa9\xf8\x09\x31\x19\x6b\xad\xa8\x45\x09\x95\x4f\ \x56\x11\xf5\xa0\xb5\x1a\x3b\x39\xb7\x82\x2d\x37\xf3\x24\x17\x6b\ \xf4\x2b\x3d\xab\x12\xea\xe0\x76\x9b\x77\x3c\x2b\xd7\xaa\xcd\x33\ \x7d\x09\xed\x22\xc9\x94\xb7\x0c\x95\xc4\x23\xeb\xed\x29\xc5\x2d\ \x6f\x10\x88\x2e\xa3\x39\x85\x35\x6a\xf7\xcb\x87\xda\x71\xdc\x8c\ \x53\xf9\xea\x1d\x9a\x99\x8a\x55\xa5\xf8\xd4\xcc\x7f\x13\xc0\xe3\ \x33\xed\x66\x25\xba\xe1\x32\xcf\x74\xe7\xbb\x23\x8b\x94\x7b\x9f\ \xac\xfe\xb1\x8f\x04\x8a\xa0\x1f\xe6\x5c\xa4\x01\xbe\x23\xa6\x8e\ \xc0\x78\x0b\xa2\xc6\x2a\x15\xbb\x22\xc6\xcc\x5c\x3c\xdb\x3b\x5a\ \xe0\xd8\x7a\xa8\x7e\x15\xa5\x32\xf5\xd5\xb2\x87\xce\xe3\xd0\x68\ \xab\xc8\xa1\x17\x4f\x15\xd1\xed\x8e\x20\x34\x85\x39\x8b\x43\x15\ \x8f\x94\x45\x47\x6f\x4f\x96\xdb\x36\xed\xdb\xd3\xfc\xb6\xf8\xb6\ \xfa\xd7\x60\xd6\x54\xa4\x66\xc0\x06\xd3\xbb\x0f\x6c\xb6\xec\x99\ \x09\x58\x67\x62\xea\xc7\xee\x9d\x8f\xb9\xd0\x2b\x1a\x7f\x51\x2c\ \xcf\x91\xf8\xf4\xd9\x19\x27\xdd\x52\x21\x39\xd2\x0c\x24\xbd\x6b\ \xe8\xd8\x45\xc7\x55\x1b\xdf\xe6\x8e\xd5\x0c\x7a\xee\x5b\x86\xb3\ \x0c\xc4\x11\xf0\x1e\xaf\xf4\x1b\x52\x3b\x36\x8b\x3d\xfc\x9a\x45\ \xbb\xc5\xd3\xe0\xc7\x4e\x91\x6e\xaf\xbb\xbc\x59\x63\x39\x2f\x2c\ \x72\x16\x54\xd5\xe0\xd5\x1f\x2a\xab\x93\x57\x72\x13\x66\x7c\xa7\ \x10\x5c\x39\x3a\x05\x96\xcf\x6c\x49\xe4\x8f\xa0\xe0\xe3\xaf\xfa\ \x29\x3c\x3b\x51\x78\x7d\xa9\xc9\xae\xa7\x41\xba\x28\xed\xf5\x5f\ \x1d\x22\xe7\x11\x44\x9b\xf4\x97\xcc\xfe\x34\xf1\x36\xa5\xe8\x10\ \x93\xbf\xb8\x5e\xe2\x76\xe3\x69\x7b\x85\x71\xb5\x9e\x60\xd8\x0c\ \x46\xdc\x5b\xe1\x90\x2d\x7a\x9c\x22\xab\xcf\xed\x96\x32\xb5\x77\ \xbe\x59\xb3\xbe\x08\xd2\x4e\x6b\xb5\x23\x96\xb2\x3d\xaa\x5d\x39\ \xc3\x1c\x14\xe8\xf8\xdc\x5c\x10\x4d\xc3\xa3\x2c\x58\xb6\xe0\xaf\ \x1a\x9c\xae\x9d\x9b\x17\xc5\x70\x44\x2c\xbf\x5a\x6f\x5d\xc7\xa6\ \x09\xa0\xca\x18\xdf\x5d\x6f\x85\x82\xcc\xfc\x68\x0b\x21\xd4\xa9\ \x42\x2d\xe4\x2c\xee\x06\xd2\x92\xb0\xb3\xe3\xc6\xfa\xa1\x5f\x9c\ \xdc\x54\x12\xcb\xef\xf6\x88\xb7\x05\x07\x70\x96\xf9\xfa\x7f\x57\ \xc4\xda\x97\x3f\x13\xbd\xd0\x7c\x81\xdf\x17\x06\x35\xf7\x87\xe4\ \xaa\xf5\xf4\x1f\x36\x42\xb9\x73\x07\xc3\x1c\xc1\x6b\x77\xf4\x32\ \xf3\x28\x6a\x49\x28\xcf\x3e\x4c\x8e\x7d\x07\xda\x67\xd3\xea\xab\ \xa0\x1c\xed\x4a\xda\x12\x54\x7c\x8b\x4a\xf5\x74\x0a\x24\x77\xca\ \xd9\x5a\x62\xda\x2d\x56\x7c\xa8\x14\x55\xac\x00\xb6\x10\xad\x8c\ \x5a\xa0\x76\xcc\xf9\xd5\x98\x42\x12\xd7\xd2\xb4\x73\xfa\x26\x02\ \xa9\xc1\x0b\x94\x97\xe1\x76\xaf\x75\x19\x63\xcd\x6b\x4f\x61\xcb\ \x49\xdd\x81\xd7\x14\xbd\x15\x15\x71\x7b\x3c\x7c\x73\x17\xeb\xff\ \xb4\x01\xa7\x23\x48\xf9\xa6\x8c\xec\xef\xbd\x83\x08\x3e\x90\x19\ \xfa\x85\xd6\xc6\xc1\x2f\xf1\xcb\x1e\x8d\xec\xe7\x8f\xbd\xf7\xde\ \xfb\xe7\xde\xd9\xf2\x13\x06\x4b\x8e\x2a\xe5\xde\xcf\x5a\x6d\xc1\ \x61\xb7\x00\xd4\xc2\xd1\xcc\xad\xb3\x0c\xd4\x27\x6f\x15\xdd\x1f\ \xba\xad\x80\xbb\x23\x2d\x6f\xd5\x28\xbd\x81\x27\xc3\x79\x04\x6f\ \xd3\x9d\xce\xf8\x24\xab\x86\xc1\x51\xac\xd4\xf2\x81\xa3\xed\x9e\ \xfd\xc9\x2e\x9e\x8e\xb5\x52\xf5\x8d\x11\x0b\xa6\x01\xf6\x82\xc1\ \x13\x6a\x7e\x71\xf1\xf9\xa7\x8e\xbb\xa5\x40\x6a\xef\x8e\x2c\x36\ \xe4\x2c\xe8\x59\xab\xec\xe5\xd4\x3b\x86\xda\x69\xff\x70\xf1\xb3\ \x76\xda\xf5\x4e\xb8\x0f\x6b\x11\x84\x60\x17\xb5\x1a\x9b\xb6\x46\ \xff\xf8\x6e\xe3\x53\xf7\x66\xd8\xac\x66\xe3\x79\xac\x33\x66\xc3\ \x22\x0e\x57\x1c\xb1\x1e\x4a\xef\xbb\x59\x5c\x9a\xde\x5f\x57\x52\ \xa4\x40\xc8\xe3\x8c\xbd\x7d\x04\x99\xf1\xd1\xf3\x37\x50\xd0\x9c\ \x86\x66\x9a\x7f\xc8\xeb\x3b\x2b\xfe\x1c\x27\x27\xff\xcf\x56\xef\ \x2d\x3b\x23\xcf\xe6\xad\x1e\x70\xcf\x5c\xb4\x74\x3c\x57\xfb\xb0\ \xa5\x1a\x6d\xce\x7b\x85\xce\x24\x28\x4f\x58\x3f\x2c\xdd\x3e\x4c\ \x9c\xf5\x39\x5a\xb0\x0b\x67\xf3\x06\x9f\x85\xaa\x53\x36\xe2\xac\ \xb1\x8c\xf8\x30\x4c\xe5\xf1\x47\x8f\x63\x77\xe1\xdc\xd0\xb6\x49\ \x3b\x93\xaf\x8d\x2e\x34\xd6\x31\x99\xf9\xf8\x8c\x3b\xe9\x64\x6d\ \x2c\xf3\xc3\x2f\x68\x3f\x95\x5b\x5a\xc2\x96\x56\x11\xd1\x55\x93\ \x3f\xb5\x57\x29\x53\x16\x54\xef\x3d\x08\x3a\xd0\x96\x0b\xc5\xe2\ \xee\x17\x73\x56\x71\xef\xad\xed\xb5\x42\x65\xa5\xad\x59\x0b\x41\ \xae\x2f\x8f\x08\x18\x45\x41\xc4\xf1\x21\xd1\xce\x6c\x6e\xef\xe6\ \x2f\xab\x82\x6e\x33\x37\x7d\x48\x9a\x2b\xe4\x8c\xbe\xa8\xe2\x61\ \x6e\x0f\x6b\x5c\x69\x64\x29\xbe\x99\xc8\x31\x0f\xde\x5b\x97\xee\ \x6a\xe0\xe4\x75\x62\x43\xd3\xa1\xdd\xfc\x98\xd6\x60\x6a\x88\x2b\ \xb6\xd5\x0e\xcc\x25\x7f\xf6\xff\x5d\x2d\x74\xeb\xbe\xa7\x2c\x9b\ \x75\x56\x67\x0d\xa2\xbc\x28\x6f\xb9\x34\xcb\x44\xc6\xe3\x5d\x20\ \xbd\x52\x47\x65\x30\xa4\x0c\x49\x5e\xc4\x62\x17\xe0\x5a\x58\xd4\ \x1a\x32\x8d\xfa\xd1\x55\xbb\x8e\xfb\xed\xc5\xb7\x6b\x0a\x77\x60\ \x15\x63\x38\x2a\x92\xc4\x70\x9f\x8b\x27\x7d\xf9\xca\xab\xd4\x59\ \x33\xae\xaa\x61\xd2\xb1\x9c\x2c\x25\x3f\xa2\x6e\x68\x1e\xef\x0a\ \x2f\x3a\xeb\x50\xd9\x8b\xf1\x1a\x42\xac\xde\x96\xb5\x23\x75\xe4\ \x09\x35\xc6\x8a\xc1\x91\x5a\x33\xd4\x64\x8f\x9b\x82\x78\x1c\xf9\ \x82\x1d\x18\x75\x31\xaa\xd4\xab\x6f\x32\x57\xd1\x08\x8c\xa1\x84\ \x22\x33\x1f\x2b\xd1\xfa\x97\x9a\x41\xf3\xb2\x5d\x60\x30\xe6\xbb\ \xb5\xe7\xbe\xca\x07\x77\xae\x44\x3c\x4f\x66\xbe\x30\x9d\x70\x66\ \x19\x51\x63\x77\xcb\x10\x6b\x0b\x67\x2f\x6e\x1d\x6c\xdd\xdc\x3b\ \x3e\x6d\xa8\x80\x50\x99\x80\x02\x69\x96\x8c\x87\x91\x34\x0b\xc4\ \x67\x3d\x62\xb5\x49\x59\x5b\x22\x54\xbc\xa1\x0f\x4b\x75\x85\xf9\ \x11\xc6\xda\x21\x31\x2f\x77\x1a\xec\x76\xe3\xf3\x84\x9c\x50\xaf\ \xd4\x46\x7b\x3b\xb4\x6a\xb5\xc7\x3e\x69\x56\x04\xb3\xb9\xe9\xcc\ \x71\xcd\x8b\xe3\xa5\x0f\xf7\x8a\x4a\x1c\x6b\x95\x5a\xdc\xd7\x30\ \x1a\xc3\x6b\x78\xc6\x99\xa7\x77\x76\xc4\xe8\x22\xc3\xbb\xb8\xcb\ \x17\x94\x35\x60\x51\x12\xa1\x46\xf5\x8f\xd9\x85\xcb\x8a\xa6\x68\ \x24\xb7\x29\x0f\x90\x90\xaf\x56\xef\xca\x3a\xf3\x44\x33\xbb\xed\ \x77\xf8\xd4\x02\x92\x53\xf4\x96\x9c\xca\xbb\x6e\xbd\x56\xa6\x18\ \xed\x1d\xfd\xdb\x64\xd8\xa8\xe1\xcc\xf0\x26\x8c\xb7\x79\x72\x56\ \x61\xdf\x03\x99\xde\xe9\xe2\x9d\x38\x5c\x7a\xaa\x86\x13\x85\x8c\ \x42\xb6\x09\x1b\xcf\x57\x4a\x5b\xc3\x2e\x89\x5a\x97\x83\xbd\x73\ \x2a\xf1\xda\x9d\x4b\x7a\x29\xbb\x3f\x5d\xb9\x0b\x5c\xf6\x6e\x4e\ \x8b\xb3\x54\x66\xf5\x2a\xb1\x4c\x28\xc3\xa0\xb4\x94\x2b\x9e\xb0\ \x62\x8e\x41\xb1\xfd\xfb\xf5\x44\xb8\x02\x7f\x5a\x14\x5e\x0b\x8d\ \xca\x85\x28\x8e\x77\x63\xef\x64\x06\xdb\xa1\xba\xeb\xba\xe8\xed\ \xca\xc3\xc1\xbb\x01\x6c\x8f\xe9\x6a\xb3\x18\x3f\xba\x82\x9a\x5e\ \xae\x82\x7e\x90\xc7\xfe\x29\xd9\x07\x4d\xb5\xd7\xae\x99\x8b\x6d\ \xb7\x15\x65\x25\xc1\xdc\xb3\x33\xea\x30\x0a\x63\xad\xdb\x5f\xef\ \x1a\xa2\xa5\xa4\x36\x54\x38\x68\x87\x9a\xfe\x78\x1c\x9c\xfe\xd9\ \x1a\x85\x01\x39\xd6\x42\x66\x06\xe3\x63\x61\x06\xdb\x79\xd4\xb5\ \x93\xf1\xa5\xd9\xf9\xdc\xd4\x4b\x4f\x56\xfc\xa6\x56\xef\xd0\x3a\ \x0b\x0e\x4b\xdb\xba\x8f\xa7\xb0\x5d\x49\x5b\x97\xc9\xe0\xa3\x12\ \xc3\x9e\xb6\xb3\xdc\x8a\x5b\x70\x66\xce\xc9\x2e\x16\xfe\xac\xb3\ \x6e\xf8\xb8\xad\xe6\xc7\x2d\xb6\xd8\x99\xc5\xf3\x47\xe2\xb8\xa0\ \x78\xa8\xd3\xb1\xbb\x0d\x96\x62\xe0\xec\x4b\xac\x59\x83\xcb\x0b\ \x1b\xb8\xdd\x58\x75\x49\xe3\xbd\xda\xe4\x3c\x69\x53\xbc\xae\x6e\ \xe9\x2c\x06\x57\x8a\x6d\xd2\x84\x1b\x46\x8e\xe0\x99\x20\x96\xec\ \xca\x86\x80\x79\x6d\x93\x6d\xdf\xdf\x44\x2d\xf6\xe0\x98\xed\xde\ \x1b\x23\xaf\x9e\x1b\x97\x57\x6f\xda\x13\xa9\xab\xe2\x65\x29\x46\ \xf1\x70\x32\x1f\xb7\x25\x28\x9d\x58\x7b\xf2\x32\x2a\xd4\x9d\x3d\ \x2d\x3c\x4e\x40\x6e\x9e\xd2\xca\xf3\xfc\xe6\xd4\x96\xf7\x2e\xbe\ \x0b\x55\x1f\x4b\xcb\x31\x9e\x6c\x2e\xf5\xb1\xfe\xa8\x91\x0b\xa9\ \x92\x16\x13\x67\xda\x57\x06\x27\xe3\x26\x13\x7d\x97\x46\x5e\x87\ \x6b\x20\xf5\x8b\xff\xbf\xae\x22\x6d\x4a\xac\xe8\x95\x04\xbc\x3d\ \x25\xff\xe9\xe6\x92\x79\xd6\xdf\xea\xe3\x63\x5f\xa6\x4f\x13\xb7\ \x61\xbb\x1f\xff\xa2\x34\xbc\x49\xc5\xe0\x9c\x6d\x10\x50\x34\x85\ \xb6\x4d\xa8\xee\x52\xf7\x4f\xbf\x2d\x51\x2e\x1d\x53\xe6\x1e\x0b\ \x3c\x5e\x5e\xc9\xca\x9d\xbd\x95\xcb\xee\xb7\xfa\x1c\x06\xf4\x22\ \x16\x4e\x9f\x53\xb9\xee\x56\x35\x5b\xe4\x50\x21\x20\x70\x79\x46\ \x97\x0d\x08\xcf\xfd\xb9\x1a\xcb\x5a\xb4\x8b\x68\xb0\xa5\x3f\x7b\ \x6e\x65\x6e\xcf\x0e\x2c\x47\x5f\xb5\xb4\x7e\x14\x9c\x87\xe1\xd8\ \x23\xf3\x7e\xad\xb8\x1c\x8b\xf8\x89\xd4\x4d\xdd\xb5\xb7\x7a\x31\ \x4f\xbd\xb2\x6b\xf5\x2a\xfa\xbf\x79\xaa\x73\x9e\x86\xa7\x34\xbb\ \x98\xa8\x83\x04\x26\xe5\x1c\x34\x60\x95\xe9\xe4\x4f\x01\x58\x3d\ \x23\x1b\xdb\x9c\xb9\xb7\x5d\xc2\xda\x6c\x85\x67\x11\x13\xcf\xba\ \xe6\x5f\x99\x2c\xe7\xf1\xfd\x02\x40\xcf\x25\xcf\x5f\x1c\x71\x1b\ \xc5\xfb\xb0\x0b\xeb\x2d\x45\xfe\x18\xbb\x23\x22\xdb\xd1\x8b\x6d\ \x18\x1b\x83\x93\x98\xb1\x77\x83\x57\xed\xa6\xd2\x95\xe2\x38\x6b\ \x1c\xb8\x3c\x81\xbc\x1d\x77\xbf\xf5\x45\x83\x8f\xfd\xba\xcf\x74\ \x56\xc3\x97\x8a\x63\x36\x9f\x7f\xda\xcb\x46\xad\x5a\x8a\xa8\x55\ \x72\xd3\xb0\x54\x3a\x5f\x51\x21\x43\x9f\x4b\xb7\x66\x4f\xb7\xc9\ \x5b\xc7\x37\xb4\x28\x42\x03\x5b\xf0\xec\x79\x4d\x0f\xf3\x69\xda\ \x6f\x4d\xf6\xa0\xcb\x28\xb8\x77\x63\x67\x0e\xb4\x18\x9f\x63\xf8\ \xdb\x03\x60\x2c\x59\x7a\xe3\x88\x55\xc9\xea\x5a\x91\xdd\xf9\x29\ \xf7\x76\x65\x64\x1b\xb7\x9c\xfa\xa8\x17\x30\xdd\x07\x06\xed\x16\ \x33\x98\xe7\xc5\x4d\xed\xf5\x70\xc7\x1e\xe9\x36\x10\x75\xe5\xcf\ \xdb\xde\x7a\xec\x14\x6c\xde\xca\xa3\x10\x53\xdb\x07\x1d\x1b\xf0\ \x21\x2e\xcd\xc6\x6c\x25\x77\x47\xfd\x6c\x75\x32\x72\x76\x7a\x0b\ \xe0\x16\xc4\x78\xca\x38\xbc\x10\x3d\x94\xb0\xe0\x63\x73\x2d\xd4\ \xfe\xff\x23\x5b\xb1\xc1\x81\xcb\xac\x1b\xcc\x9d\x73\x66\x21\x11\ \x19\xdf\x7c\x6b\x8f\x76\x5f\xf0\x29\xf9\x66\xfd\xec\x9d\x8c\xbd\ \x44\x74\xf8\x23\x3d\xa3\x3e\xa6\xba\x9a\x08\xc4\x79\xdb\x2d\x15\ \x46\x79\xc2\x60\x04\xc0\x73\xbc\xdb\x22\x13\xed\x79\xad\xe6\x3a\ \xab\xcd\x2e\xf2\x36\xb3\xfe\x7c\xc7\x1f\xa9\xec\x73\xe9\x95\x9b\ \xf1\x99\x15\x94\x2d\xc3\x50\x00\xa2\x2a\x65\xd7\x34\x28\xc3\xf7\ \xf4\x66\x3f\xa3\xde\xe4\xa2\xc4\x34\xa9\x33\x42\xc7\xfc\x93\x64\ \xad\xe9\xf8\xb0\xd5\x2d\xa2\x9e\xf6\x45\x0d\x6c\x9b\x88\x21\x0a\ \x56\xf4\x2b\x7e\xea\xb8\x89\xdf\x33\x8e\x69\x94\x25\xfd\xb2\xb8\ \xc5\xd7\xbc\xe1\x01\xea\xf6\xf2\x1c\x93\x75\x9e\x12\xbc\x42\x7d\ \x33\x7a\xd5\xb4\xd0\xba\xe9\x9f\x01\xd4\x09\x44\xcd\x02\xe4\xd1\ \xf9\x61\xa6\x92\x1c\x35\xdc\xb1\xe3\xc3\x90\x0f\xbf\x99\xf1\x1e\ \x34\x8f\xb5\xbe\xba\x26\x93\xe8\x4e\x2d\x71\x69\xc7\x1a\xb5\x69\ \x12\xaa\x3f\xb1\x97\x5e\x69\xc6\x94\xf7\xe8\x87\x20\xf9\x7c\x58\ \x83\xb6\xc7\x4f\x41\x2e\x11\x51\xfc\x3c\x2f\x2f\x3c\x46\x06\x6d\ \xa8\xca\x6f\xf1\xf8\xdb\xae\xb5\x5f\xad\xa9\x6f\xb0\x5c\x8c\xc5\ \xd8\xf9\x7e\xdf\x02\x52\x86\x53\xf4\xde\x00\x27\xda\x56\x20\xc6\ \xd9\x1b\xee\x17\x83\x9b\x1f\x58\x18\x1f\x52\xcb\x33\x61\x56\x93\ \x2d\x28\x89\x85\x6b\x2b\x03\x2e\x8d\x81\x60\x83\x4c\x5c\xb6\xee\ \x53\xa3\x7f\xdf\x6b\xf9\xb1\xc9\xf0\x38\x80\xce\x7e\xdf\x49\x36\ \x1c\x4f\x58\x7b\x54\xad\xa8\x87\xb8\xb8\xc6\x94\x69\xa4\x65\x51\ \xeb\xc3\x56\x34\xa8\xee\xd5\x31\x76\x54\xea\x1d\x0d\x6a\xf7\x9a\ \xa9\xf3\x25\x6e\x13\x92\xc7\x93\xb4\xf0\x74\x7e\x8a\xcc\x0a\x8a\ \x52\xe2\x22\x49\x5c\xbe\xf5\xbd\x72\x79\x82\xb4\xbf\x47\x79\x7f\ \xc2\x32\x9b\x1b\x9f\x3c\x47\x7a\x7e\xd4\xb8\x96\x7c\xec\x9c\xb2\ \xc5\x8b\xda\x39\xf3\xde\x9f\xd7\x04\x1b\x7b\x2a\x5c\x99\xe6\x83\ \xa6\x30\x8c\xc7\xd9\x0a\x7e\x86\x6c\x6b\xdd\x56\xb4\x67\x7d\x32\ \xee\x8d\x5a\xcd\x43\x41\x17\x97\x67\x87\x3b\xc7\x79\xd0\x4c\xff\ \xcc\x14\xe2\xc7\x8f\xa5\x30\x5d\xd5\xb0\xc6\x6e\xa4\x4d\x92\x1e\ \x2f\x30\x33\xc1\xdf\x56\xf3\xe0\xb7\x0d\x67\x6f\x9d\x83\x38\x5e\ \x6d\x3d\xe1\xc9\x6f\x14\x8c\x5f\x36\xde\xe4\x1d\xd2\x3e\xa0\xe1\ \x14\x7f\x6e\x7e\x61\xa1\xac\x49\x4e\x32\xef\x93\x34\xf5\xf4\xbd\ \x29\xae\x14\x0c\x9e\xdf\x36\x4f\x89\x35\xb9\x00\x63\xa9\xcb\x30\ \xcc\x10\xf0\xb2\x8a\x9e\x5b\x9d\xb3\xd2\xa7\x86\xca\xcc\xcc\x7b\ \x17\xfc\x3f\xe1\x89\x5c\xf7\x67\xd0\x98\x5e\x20\x15\xbd\x9e\x1b\ \x41\xb3\x54\x42\xd6\x48\x21\x3d\xd4\x77\x4d\xb1\x28\x5b\x6d\x94\ \x3d\x6c\xd7\x6d\x6d\x6b\x14\x53\xf2\x15\x7b\xfa\x59\xc7\xbb\x6f\ \xad\xa6\xe0\xd7\xd6\x64\x4f\x23\xf6\x7e\xcb\x8d\xa2\x65\x98\x6d\ \x3e\x37\xed\x7b\xb3\x8e\x8e\xb9\xaf\xaf\x6d\x78\x58\x81\xb2\x8a\ \xd7\xdc\xaa\x69\x97\x17\x20\x44\xa6\xd6\x3a\x50\x7f\xf7\xc0\xbc\ \xe8\x7c\xbf\xfa\xca\x77\x79\x1c\x81\x9d\xa3\xda\xf8\x75\xd5\xcf\ \x98\xdc\xe1\xf2\x98\xff\xd6\x5b\x4e\x0f\x5c\x8e\x59\xd3\x09\x7f\ \xc2\x36\x6d\xc3\x7f\x5a\xdd\xe9\x73\xcc\x2f\x51\x1c\x0d\xa5\x04\ \xe6\xf6\x6b\x30\xb7\x70\xef\x77\x4b\x5f\x1d\x4c\xab\x05\xea\x9e\ \x64\xf5\x1f\x57\xae\x9c\x05\x72\x06\x69\x0a\x68\x51\xa0\x22\xd6\ \x7a\xd6\xf3\xc7\x24\x24\xde\x36\x25\xf8\xd5\xc4\x7e\x80\x94\x8b\ \xb1\x87\x7b\x3d\xce\x47\x2c\x89\x82\x59\x2a\xa2\xe4\x29\x78\x3e\ \xde\x81\x0a\xc1\xbc\x96\xb6\x9e\x12\x25\x26\x81\xdb\xe1\xae\xc7\ \x14\xdf\x56\x6b\xd8\x8f\x17\xd7\x82\x90\x88\xf0\xf8\xda\x3b\xe3\ \xd6\x13\x40\x3a\x88\xac\xb5\xe6\x31\xd4\xca\xcb\xb5\xbe\x4d\xa9\ \xe7\x6d\xad\xb5\xae\x1d\x1b\x1a\x91\xcf\xd0\xd5\x57\xac\x65\x9b\ \x27\xe5\x5a\x0f\xcb\x02\x9c\x6b\x45\x7a\x68\xb9\x8e\xf5\x4f\x01\ \x93\x3b\xfb\x0d\x54\xe7\xbb\x9d\x36\xed\x04\x4f\x1b\xd0\x94\x1b\ \xc0\xb5\xb4\x07\x6b\x45\xa6\xc5\xb0\xa6\x08\xb9\x28\x2d\xc5\x34\ \x84\x9d\xa7\x3d\xcf\xda\x17\x7d\xf6\xde\x4c\x45\x68\xbd\xc6\xec\ \x3c\xab\x24\x27\x7c\xdb\x1c\x7e\x33\x2c\xc9\xef\xf1\xe5\x5a\x9c\ \x34\x7e\x35\x15\xce\xeb\xd4\x95\x21\xed\xf9\xd5\x97\x28\xe3\x23\ \xed\x1c\xae\x56\x1b\x9f\xb3\x66\xb5\xfa\x56\x51\x7f\x03\xf7\xd8\ \x0b\x0b\x7a\x0d\x78\xb4\x65\x52\x71\x7f\x1b\xa0\x16\x0e\x0f\x38\ \xd4\x60\x95\x4d\x47\x8a\x89\x75\x3a\x0e\x3d\xf3\x81\x8e\x04\x43\ \x69\x59\x47\xaa\xc7\x97\x71\xad\xbd\x3a\x3d\xd4\x07\x7d\xf3\xfe\ \x6b\xad\xd5\xb9\x95\xf7\xaf\xbc\x0b\xd0\x60\x70\xf1\xd7\xfb\x76\ \xd7\xdc\x53\xd4\xae\x58\xbb\xd5\x10\xab\xc0\xc9\x0c\xfb\x52\x35\ \x78\x59\x8c\xa7\x89\xdb\x9f\x0c\x73\xab\x90\x94\xfb\x5e\xa7\xe1\ \xa7\x65\x61\x7a\x2d\xe2\x6a\xa0\xe6\x5b\xec\xfc\x58\xe0\xfe\xad\ \x1f\xf8\x10\xea\x1d\x66\x68\x94\xc7\x63\x81\xc8\xea\x2d\x4e\x0c\ \x2e\x3e\x0d\xae\xa0\x03\x7d\x68\x9a\x0e\xf2\x2b\xa2\x66\xbe\x1d\ \x9c\xfc\x6e\xc7\xfb\xa3\x11\x4d\x7a\xce\x30\x14\xd7\xbd\xfd\xba\ \xd7\x40\x85\x53\xc0\x58\x69\xb8\x16\x76\x6a\x2c\x94\x2e\x35\x54\ \xad\xc7\x1a\xbf\x9a\xf1\xfd\xb9\x97\x71\xdd\x0e\x81\x9f\xeb\xac\ \xbf\xe7\x99\xc9\x27\x04\x88\x95\xed\xdd\x32\xf1\xe8\x92\x8e\xd4\ \xa0\xb5\x0f\xfa\x15\x8e\xf9\x8d\xd2\x71\x2f\xab\xaa\x13\xd2\x8e\ \x05\x39\xdf\xe2\x50\x2b\x78\xf6\x40\x07\xcf\x8a\xa4\x31\xaa\x8e\ \x5e\xd6\xd5\x66\xf0\xe3\x06\x8e\xd4\x06\x11\x6b\x8d\x49\x9b\x67\ \xc2\x96\x19\x3e\x5d\x32\x65\xbd\xef\x88\xa7\x6e\x55\x86\xb8\x83\ \x7b\x67\x9b\x31\x9c\x3d\x79\xb3\xa8\x71\xf6\x98\x8f\xa8\xf3\x2a\ \xfd\x0f\x8a\x15\xff\x3f\x19\x7c\x92\xd2\xc7\xc3\xca\xf2\x70\xf8\ \xdc\x32\x29\x82\x4f\x04\x57\x2f\xba\xa1\x72\x67\x6b\x11\xcb\x91\ \x9e\xed\x75\x34\xd8\x03\x70\x35\x33\x9f\x7b\x29\x6c\x4e\x56\xb0\ \xe0\xde\xd1\xd5\x63\x2a\x57\xdb\x41\xcd\xdf\x78\xbe\x34\x69\xe7\ \x5e\x66\xca\xb3\xc6\x21\xfd\x56\xfc\xe7\x2c\xd7\x3f\xa9\x70\x79\ \x20\x3c\xb1\xfa\x71\x14\x59\x61\x30\xc1\x98\x59\x3a\x66\x43\x02\ \xa2\x4f\xf3\x13\x51\x81\xad\xac\x3e\x20\x71\x15\xa9\x28\x8b\x02\ \x43\x66\xd3\xdb\x6b\xf3\x47\x0d\x86\xb8\x95\xac\x5b\xac\x5a\x66\ \x06\x91\x51\xb2\x67\xce\x3a\xe8\x18\x37\x9a\x02\xfb\x6b\x3e\x01\ \x72\x89\xe1\xb9\xa2\xee\x05\x7c\xdd\x18\x7c\x88\xc6\x6c\x89\x38\ \x6b\x32\xb4\x13\x52\xef\x9d\xbe\x97\xde\xf8\xc5\x74\xad\x48\x8c\ \x37\x69\x6d\x83\x52\xeb\x37\xac\x03\x89\x6b\xc3\x4e\x59\x2c\x9c\ \xd7\xe4\xb2\xd3\x74\x01\x2e\x36\x1b\x4d\xb9\xdb\xbb\xb7\xc7\x91\ \xf1\x35\x72\xd3\x1d\xde\x59\x13\xca\xfc\xed\xb7\x27\x0b\x85\x1b\ \xb2\xfb\x62\x49\xb2\x23\x90\x20\x9f\xe7\x2b\x82\x4f\x94\x66\x3c\ \x2e\x9a\xb4\x77\xa6\x24\xe2\xb1\x55\x47\x1f\x8c\x35\xea\xde\x1c\ \x1d\x9a\xa7\x42\x3c\x5c\xd4\xe2\x20\x6a\x46\xdf\x33\xf2\xeb\x25\ \xcc\x53\xc0\xb6\xc7\xe2\x21\xf0\x7b\x96\xb7\xac\xc5\xf9\x88\x34\ \x0f\x96\x4b\xb5\x07\xcc\x37\xd7\x13\xbe\x0e\x6d\xbe\xe8\x23\x18\ \xf9\xbe\x2e\x36\x55\x6b\x21\x80\xaa\xf0\x14\x04\x7d\xe8\xbb\xd2\ \x5b\x18\xaf\xc6\x8c\x61\x1e\xd9\x58\x1e\xf4\x52\xd5\x2e\x9d\xec\ \xc9\x9d\xde\x40\x8b\x16\x0e\xf9\xb2\x3f\x11\x8b\x5c\x5c\xa8\x01\ \xa5\x24\x84\xf0\x90\xb1\xa2\x8c\x32\x82\x8b\xf1\xac\xa7\x75\x5d\ \x76\x6d\x56\xa0\xcc\xce\x1a\x08\xf0\xa0\xd7\x23\x48\x3f\x24\xef\ \x8e\xa2\x1e\x37\xf7\x4b\xc0\x46\x46\x42\x65\x50\xb1\x9e\x8c\x44\ \x7d\x81\x48\x6d\xd3\x0f\x64\x0f\x3d\x31\xe2\x59\xc5\x85\xad\xd3\ \x59\xbe\x27\x6c\x67\x89\x72\x6d\x5a\xdd\x2c\x64\xeb\xaf\x24\xc0\ \x50\x09\x57\xf9\xe4\xb6\x53\xfb\xde\x9b\x88\x78\x8c\x6a\x2e\xe8\ \x10\xb4\x67\x41\xfd\xce\xed\xe9\x87\x96\x16\xb0\xa4\xf5\xf5\x95\ \xa0\xa5\xc6\xf1\x3c\xe6\x50\x0d\x7f\xb9\x34\xcc\xcd\xe1\x12\x77\ \x8d\x13\x73\xf8\x17\x83\x85\xd8\x99\x36\xa4\x0c\xe0\x79\x9e\x59\ \x27\x40\x06\xb1\x3e\x98\xbe\xd3\xe6\x9a\xa3\xd0\x67\xc0\x9c\xc7\ \xe8\xd5\x68\x8c\x40\x26\x33\xa4\x47\x00\xf9\xf5\xf5\x1b\x56\xac\ \x20\x02\xf6\xac\xf3\xe3\xe0\x23\x82\xeb\x71\x79\x5d\xae\x04\xc4\ \xd7\x8f\x27\x9e\x48\xe4\xce\xcd\xc5\xdf\x7e\xff\x53\x4d\x24\x7a\ \xdc\x1f\x5a\x8d\x58\xee\xf1\x26\x9d\xd9\x48\xd8\x47\xc6\xbb\x17\ \x53\xde\x57\x1f\x67\xe7\xaa\x77\xa6\x60\xd9\x00\xe5\x60\x60\xf0\ \x7a\x6a\x10\x81\xaf\x8d\x6d\x27\x0a\x4f\x63\xed\x69\x2d\xe5\xfa\ \xed\xb7\x28\xeb\xd2\x58\x5f\xcf\x8f\xdf\x7f\xbf\x17\x8e\x3f\x8d\ \xf6\xcc\x44\x6c\x0c\xc7\x31\x0b\x6a\x3c\x4d\x38\x74\xca\x51\x75\ \x07\xbd\x77\xce\xbc\xae\x25\xf6\x3e\x33\x03\xc8\xd0\xae\x8d\xe0\ \x4e\xdf\x14\x85\x55\x0e\x5c\x88\x5a\x23\x8a\x27\x60\x67\x80\xa7\ \x2d\x32\xa2\x58\xb8\xb1\x7c\x55\x27\xbb\x22\x6b\xcc\x83\x5a\x10\ \x5d\x8c\xdb\x5b\x8d\x4e\x28\x5b\xed\x09\x00\x7a\x73\x6f\x5f\x3e\ \x21\x85\xaf\xd4\xce\xbd\xb3\x40\xd4\xc7\x9b\x63\xbc\x7b\x63\xef\ \x37\xd3\x20\xf8\xae\x32\xdb\x56\x80\xb0\xa3\x80\xfd\x5e\xda\x19\ \x4b\x51\xde\x91\xb6\xab\x58\x35\x87\x29\x54\x6d\x0d\x69\xad\x7e\ \x78\x6e\x00\xeb\x21\xb6\xe5\xa9\xb3\xec\xa9\x9d\xaf\xdd\xab\xc4\ \x4a\xe2\xcd\x3d\xb6\xa6\x00\x95\x64\xac\xdf\x7f\xfb\x97\x20\x43\ \xc9\x0b\x57\xd0\xec\x7a\x30\x7a\xe5\x0a\xe2\x1e\x72\xa0\xd5\xa3\ \x41\x11\xb9\xb7\x33\xc8\xd4\xeb\x6d\x49\x6f\xf9\xb7\x91\x80\xa5\ \x61\x73\x46\x78\x39\xca\x49\x5c\x3e\x15\x8f\xf5\x4b\xfe\x81\x00\ \x62\x3d\x7e\x37\x7d\x6d\x9a\xec\x41\xf0\xf9\xfa\xd3\x9f\x17\x57\ \xd8\xc5\xb3\x37\x38\xae\x67\x35\x52\xc8\xdf\xfe\xf4\x27\x5b\x7d\ \xaa\x54\xec\xb4\xd6\xa8\x92\x7e\xbe\x1c\x3b\xd7\x31\xa3\x01\x33\ \xf3\x59\x21\xba\xeb\x55\xcb\x17\x5b\xe4\x94\x89\x66\x76\x5c\xfb\ \x0e\x3e\x36\x48\xaf\xce\x71\xdd\x1a\x70\x04\x81\x1b\xd8\x50\x80\ \xcf\x8f\x1f\xcf\x8f\x1f\xab\x46\xdb\x48\xfb\x2b\xa0\xb4\xd4\x3b\ \x35\x30\x11\xed\xec\x6a\xfa\x7d\xee\xa7\x01\xca\x23\xad\x63\xd8\ \x6e\x38\xf7\xae\x31\xfe\x61\x5d\x10\xd5\x18\xf6\x0e\x50\xe2\xf9\ \x7a\x8c\xf8\xaf\xf2\x9f\xe3\x5a\x0e\xc8\x7c\x22\x56\x10\xa4\x33\ \xcd\x53\xe6\xc6\x14\xf8\xc4\x12\x93\x53\x86\x44\x62\x99\xa4\xe8\ \x38\x5a\x66\x9b\x4e\xcc\x25\x23\xb3\xa5\xb0\x63\x3a\x95\xd0\xfb\ \x5a\xf0\xbe\x73\xe7\x6b\x49\xb5\xaf\x4d\xe6\xce\x8c\xc4\x23\xd8\ \x47\x76\x29\x7f\xa8\x76\x18\x7f\xf5\xe0\x2f\x5b\xb8\x5e\x8b\x06\ \xa3\x6b\xc2\xaa\xeb\x42\xc0\x32\xcc\x98\xca\xee\x16\xcc\xb7\xed\ \x5a\xb5\xa6\xea\xb6\xd8\xc6\x2a\x7e\xa7\x6a\x97\x7b\x77\x3b\x5d\ \x53\xad\xe0\xda\x67\x0b\x5d\xda\x3c\x8a\x4c\x86\x5a\xe1\x6d\x58\ \x50\xb3\x68\x19\xe0\x5a\xf4\x52\xa4\xb2\xf9\x98\xc5\xbd\xfe\xc0\ \x49\x78\xd8\x78\x62\x9f\x49\x11\x3b\x07\x80\x45\x22\xb5\x8b\xdb\ \x68\x5a\xbe\xd9\xe5\xdb\x54\x56\xaf\xe5\xe9\xf1\x56\x04\xdf\x37\ \x7f\xfb\xb2\x1b\x12\x33\xf3\x7d\x33\xf3\xa7\x3d\xbb\x82\x4a\x5a\ \xd8\x85\xe7\xeb\xc7\xef\xcb\x19\xda\xee\x4e\x41\x00\xaf\x0d\x78\ \xa5\x14\x9f\xe7\xe1\x2e\xfb\xb1\x43\x93\x98\x95\x03\xeb\xab\xec\ \xcb\x31\xfe\xfe\xb5\x06\x24\x7b\x4f\x73\xad\xaa\x47\x2b\xce\x5c\ \xe6\x98\xc4\x10\x6d\x22\x33\xcb\xf1\x5a\x36\x17\xeb\x29\x6f\x81\ \xe5\x78\x3d\x3b\xc9\x5a\xca\x28\x8a\x5a\xb3\xe7\xc8\xa6\xe0\x36\ \x9c\xab\x85\xf6\xa5\x21\x39\x60\x5b\xb0\x15\xe4\x2c\x4d\xb6\x29\ \x2c\x5e\x7e\xe3\x12\xfa\x79\x10\xb5\x59\xfd\xb0\x22\x3a\x4d\x8d\ \x64\x74\x16\x56\xb9\xa9\x29\xc8\x81\x65\x2a\xe3\x1b\x2f\x46\x22\ \x1c\x57\x8a\x9e\x68\xfa\x5a\x49\xfe\x84\x58\x2c\x4e\xce\xe1\x53\ \xa9\x65\x29\xd7\x26\x3e\x66\x41\xd0\x26\x56\xc2\x3a\xcd\x2d\x64\ \x22\xa1\x77\x63\xcb\xf0\x00\xb7\x6a\xd9\xb9\x1b\x65\x63\xf8\x59\ \x9e\x82\xb5\x68\x81\x67\xaf\x6c\xbb\x26\xf5\x0c\xc5\xd0\x48\x42\ \xdc\xd8\x5e\xd2\xa4\x2c\x9b\xcf\x42\x96\xda\x21\x12\x90\xf6\xac\ \x1a\x35\x7b\x8a\x33\x16\x4f\xa1\xc4\xa7\xe9\x64\x5d\x09\xbe\xf7\ \x56\xc0\xd6\x72\x00\x96\xa2\x5a\x4a\x8d\x39\x77\x1d\xe4\x5d\x0b\ \x7e\x8e\xcd\xc0\x11\x50\x67\x72\x83\x87\xbe\x95\xd7\x68\x66\x94\ \x97\xb1\x56\xee\xdd\xbb\xe8\xbb\xb2\x89\xf0\x6e\x4e\xd5\x4a\xb2\ \x6a\x9f\xde\xf7\xfd\xfb\xdf\xff\xf1\xdf\xff\xdb\x7f\xff\xaf\x7f\ \xfa\xaf\xfb\xdd\x99\xf9\x97\xbf\xfe\xed\xaf\x7f\xfd\x77\x87\x99\ \x05\x6c\x96\x5c\xf3\xf9\xc7\xdf\xfe\xc3\xa6\x3b\xcd\x5e\x22\x23\ \xd6\xd7\x43\x2f\x94\xcb\xfc\xdb\x5f\xfe\xc6\x74\xa8\x66\x3b\xd7\ \xb4\xc4\x09\x58\x63\xa9\x5c\x26\xd1\x68\x96\x67\x4a\x61\x3a\x77\ \xcb\xcd\x34\xae\x39\xe6\x34\x77\x6f\x57\xf3\xf5\xde\xbb\xa2\x88\ \xd0\x06\x87\xb0\xc0\x71\x3b\x2a\x4d\xab\xba\x77\x1f\xdb\xcb\xb3\ \xee\xda\x2e\x85\xb2\xb4\x9e\x43\x40\x8c\xb0\x00\xab\x64\x77\xaa\ \x33\xa8\x62\xe1\xd4\x5c\x59\xc7\x10\xa4\x12\x63\xc8\x4f\x1f\xb5\ \xf2\xc1\x8b\x86\xd9\xac\x27\x5f\x45\xc7\x91\x04\x56\xed\xac\x00\ \x7b\xd9\x54\x89\x09\x55\x75\x5d\xcc\x30\x8a\x89\x44\x64\xd4\x5e\ \xd2\x32\xf9\x0e\xb5\x13\xac\xb9\xbc\x3d\x21\x0c\xaf\x22\x2e\x13\ \xa7\x4a\x2c\x7b\x67\x2a\x91\xb6\xbf\x05\x45\x24\x94\x6f\xf6\x11\ \x11\xc0\x4c\x3b\x01\x85\x84\xdc\x1b\x35\x58\x2d\x49\x49\x83\x3c\ \x65\x39\x6c\x88\x22\x7b\x6d\xf0\xde\x9b\x6b\xe9\xd6\x8a\x61\x48\ \x7d\xb3\xe5\x5e\x9d\x8f\xb3\x6b\xf1\x0a\x7f\xb3\x79\x93\xc2\x7a\ \xc2\x63\x90\xd1\x40\xfa\x79\x27\xa0\xd5\x0e\x8f\xec\x71\x83\xca\ \x90\x76\xed\xd5\x3b\x25\x66\xac\x13\x33\xed\x97\x7e\x0e\x85\xee\ \x54\x9b\x03\x82\x1b\xe5\x67\x91\xea\xfd\x1e\xcd\xc9\xe0\xb2\x53\ \x9c\x32\xf3\x21\x61\xb9\x6b\xe6\x7e\xdf\x9f\x7f\xfc\xe3\xdd\xaf\ \xf6\x76\x8d\xf7\x8f\x3f\xfe\xf8\xe3\x8f\x9f\x51\xae\x5c\xda\x02\ \xb8\x49\x3e\x7f\xfd\xcb\xbf\x6b\xbf\xfb\x9a\xa8\xac\x67\xfd\x97\ \x7f\xfb\xb7\x87\xe1\xf2\xe2\x7f\xfd\x8f\xff\x11\xe5\x5d\x6a\x6c\ \x24\xef\x41\xef\x63\xb4\xbb\xb6\x18\xd6\x86\x11\xdb\xf4\xa1\x53\ \x92\x1f\x95\x60\x0e\x5f\x6d\x7d\xb1\x85\x4a\x0c\xf7\x4c\x67\x8b\ \x3c\x11\x51\xa3\xc0\x22\xf7\xcd\x1e\xbd\x31\x67\xf3\xb2\x8d\xcc\ \x23\x01\xed\x21\x8f\x23\x66\xee\xb6\x30\xee\x61\xbd\xb4\x93\x8c\ \x27\xa2\x94\xcc\x11\xc8\x3c\xcb\x08\x6a\x8f\x6f\x37\x92\x9a\xd3\ \xd0\x03\xa2\x42\x00\xb8\x8a\xb7\xdb\xbf\xc6\xbf\x49\x76\x1e\x67\ \xe6\xe6\xb0\xaf\x2c\x8e\xe9\x93\xb4\x62\x01\x39\xde\xbc\x14\x22\ \xd7\x1a\x0a\x6d\xc1\x3e\x59\x83\x6b\x26\xf0\xaa\x5b\x4a\x14\xbd\ \xfa\x02\x6e\x85\x04\x76\xcb\x4d\xb2\x8c\x67\xed\x01\xdd\x8b\x47\ \x5c\x76\xe6\xe0\xfa\x56\x80\xf8\x01\x3e\x33\xd6\x90\xd7\x57\x60\ \x90\xbc\xae\x88\x72\xc3\x92\xfd\x76\x53\x1d\x30\xa3\xb6\xcf\x26\ \x80\xdd\x52\x81\x30\x75\xb8\x68\x06\x59\xa0\x8f\xb5\x0b\xf9\xb3\ \x99\x8a\xde\x23\x86\x66\x83\x40\x71\x9c\x94\x59\xeb\x5b\xaa\xbd\ \x73\xda\x2b\x1a\xbc\xe7\x2e\x2c\x81\x03\xa5\x80\xca\xe5\xaf\xc8\ \x7a\x65\x92\x22\xd0\x87\xb4\xfa\xa5\xa1\xc1\xdb\x49\xd1\x46\x9d\ \xd9\x96\x1a\x2b\xa2\x38\x38\x7b\xbf\xcf\xf3\xe3\xc7\x8f\xdf\x7e\ \xfb\xb1\xed\x31\x1d\x24\xe3\xb7\xdf\x7f\xff\x5a\x8c\xb2\x96\x4e\ \x88\xb1\xf8\xac\xa8\x19\x70\x4f\x85\xbc\xa7\x74\xaf\xe7\x2b\xc4\ \xaf\xb5\x9e\x58\x6b\x73\x4c\xa2\x84\xda\x8a\x21\x48\x3b\xa3\xb5\ \x45\x68\x54\xdd\x57\x27\x42\x01\x07\x00\xce\x9a\x38\xf7\x43\x0a\ \x30\xcb\x6b\x13\x5c\xd7\x2a\xe9\x2a\x24\xda\x68\x74\xda\xcf\x3a\ \xf6\x39\x33\x35\xbb\xb7\xb8\xde\xec\xd5\xdb\xa3\xb7\xf2\x5a\xe4\ \x1f\x03\x4b\xcf\xd1\x7f\x9a\x2b\xe8\xba\x39\xc2\x6b\x3c\xca\x65\ \xaa\x55\xf2\xd1\x84\xd9\x31\xb6\x86\x80\x15\xc3\xe8\x86\x44\x64\ \xcc\xe0\x3f\x5c\x77\xe4\xd7\x8a\x58\x4b\x3b\x0d\xe3\x9a\xc0\x61\ \xda\xc1\x09\x99\xe0\xd7\x62\x44\xec\xbd\x7b\x9f\x2d\x1d\x14\x0f\ \x16\x7f\xa4\xda\x19\x0a\xf0\x70\x64\xda\xd9\x0c\x02\x72\xe7\x56\ \xfe\xf4\x0a\x52\xe0\xd5\x96\xb0\xd3\x44\x01\x65\x96\x25\xbe\xe7\ \x8c\x7b\xef\x1e\x6a\xd5\x2a\x4c\x63\x6a\x65\x2d\x95\xc1\x78\xe8\ \xef\x55\xde\x20\x46\x41\xd7\xb8\x3a\x8f\x36\xa9\xfc\x90\xab\x15\ \xc9\x16\x08\x47\x8c\x09\x22\xa6\x62\x37\x80\xde\x7b\xee\xcf\x76\ \x39\x0e\x77\xe7\x91\xd7\x0c\x07\x3e\xf8\xa3\xed\x9e\xfa\x04\x43\ \xdb\x7a\xae\xc5\xde\xb6\xd2\x5b\x0c\x33\x3e\x95\xed\x67\xeb\x84\ \xe0\x7e\x9d\xc7\xb0\x21\x25\x6a\x05\x11\xb1\x73\x3f\xab\x31\xee\ \xf4\x5e\x44\x26\x97\xdb\x61\xe5\x56\xe0\xe7\xfe\x49\xc4\xd7\x8f\ \x90\x62\xad\x15\x90\x0d\x52\x88\xa4\xf6\xf3\x90\x78\x1e\xca\x52\ \xad\xa2\xfd\x1b\x18\x76\xd8\xfb\xb1\xbe\x1e\x29\xd6\x42\x01\xa1\ \x87\xaa\x88\x78\x6a\x4a\x8d\xd3\x61\x13\x91\x85\x19\x0c\x51\x37\ \xb8\xcc\xd5\xdb\x55\xe2\x7b\xda\xa3\x68\x5f\xae\x28\x0c\xf9\x61\ \x99\x8c\x67\xe8\x2e\xef\x01\x93\xfc\x0f\xf7\xae\x17\x76\x67\x2a\ \x95\x8f\x77\x8a\x14\xe2\x2d\xa2\x14\x12\xf6\x6a\x3a\x8b\x28\xcf\ \x00\x20\x78\xf1\x30\x5b\x6d\x96\xe3\xf4\x34\x92\x1c\x63\x6e\xf1\ \x44\xd5\x07\x4a\x0a\x11\xcf\xd7\xf3\xac\x36\xd1\x25\x93\xc0\xfa\ \x5a\x3f\xd6\x0f\xd4\x24\xa0\x56\xd2\x3c\x8c\xaf\x9a\x5a\xf9\x64\ \xe6\x13\xc5\x63\x62\x00\xab\x2a\xc3\xb0\x1b\x38\xee\xf5\x18\xb3\ \xcd\x3b\xba\x91\xc8\xfd\xe6\xde\xdb\x7d\xce\x96\xde\x9e\x1d\xbe\ \xfb\x7d\x53\xe6\xa4\xa5\xb4\x5d\x73\x58\xfb\xba\x7d\x67\x3d\x25\ \xe6\xde\xaf\xc8\xf5\x7c\x49\x7a\x77\xda\x5e\x8b\xbd\xa3\xd7\xa8\ \x59\x2f\xe7\xb5\xe9\x56\x5b\x2b\xee\x73\x40\x6b\x8b\xb8\x53\x73\ \xb0\x97\xc5\x56\xbd\xea\x60\x54\x21\xc9\xdc\x96\x20\x60\x93\xdf\ \xb3\x1d\x28\xda\x44\x6a\x41\xd6\x7b\x79\xea\x6f\x2a\x4b\x51\x34\ \xec\x4f\x1b\x2e\x13\x11\x63\xfc\x86\x3d\x4b\x4b\xc7\x7f\x97\x5d\ \xa4\x8f\x00\x01\xbd\x0b\x59\x99\x86\xc2\x89\xd5\xd4\xed\x0a\x0d\ \x63\x43\x55\xf5\x76\x79\xc7\x55\xcc\xf6\x94\x9e\x6c\xee\x82\x8a\ \x3f\xf9\xec\x2d\xbb\xc3\x46\xcd\xc5\xde\xb8\x46\xfa\xb5\x88\x89\ \x49\x34\xe8\x41\x9a\x3d\x5e\x58\xd0\x4e\xae\xf0\xf1\x0d\x1b\xdf\ \x9a\x51\x6a\x70\xb6\x07\x5b\x21\xa8\xf6\x1c\xa9\x93\x4f\x6f\x5c\ \xb6\x6f\xff\x36\x34\xd3\xe6\x92\x6c\xf9\xae\xbd\xb4\xb7\xc6\x08\ \xd8\x7b\x5f\xcb\xb0\x8c\x46\xae\xbe\x6a\x84\x6b\x08\x26\x6b\xcb\ \x7b\xf9\x5f\xb6\xa6\x1f\x99\xbd\x7e\xaa\x60\x94\x9e\xa8\x96\x7b\ \x53\x2f\x4d\x1d\x5f\xe3\x5a\x42\xe7\x70\x1f\xb7\x2b\x10\x14\xd0\ \x0a\x83\xce\x0a\xca\x37\xeb\x41\x8a\xfa\x61\xfd\xe1\x8a\x45\x3e\ \x50\xc0\x0b\xbb\x2d\x6c\x2c\x33\x87\x1f\x0f\x18\x40\x64\x89\x79\ \xdb\x0b\xa1\x19\x7b\x38\xba\x86\xf6\x63\xde\xca\xaf\x2f\x64\xf0\ \xcd\xbd\x85\x9d\x88\xd4\xb6\xd5\x54\xd1\xd4\xd5\x1b\xa9\x63\xd3\ \xfa\x11\x60\x1d\x52\x91\x90\xf2\x62\xb9\xfd\x7a\x6f\x5d\xeb\xc2\ \x33\x63\x06\x08\xb1\x99\xac\xd6\x65\xaf\x35\x3c\x68\x82\xa1\xc9\ \x27\x95\xc5\xc3\xda\x46\xf7\xd9\x85\x61\x06\xd2\x8c\x06\xf6\xba\ \x6c\x57\xe6\x4f\x99\xea\x9a\x27\x94\xed\x4a\x33\x9e\xa0\xb6\x2c\ \xec\x59\xfe\x58\xd7\x17\x8e\x16\x59\xab\xbb\x82\x74\x46\x2d\x96\ \x89\xfb\xed\xda\xb1\x9d\x4a\xc5\xb3\x93\x51\xf2\xc7\x00\x00\x20\ \x00\x49\x44\x41\x54\xda\xa4\x00\x92\x17\x5a\x32\x9e\xd2\x71\xf6\ \x74\xb0\x82\xc4\x53\x96\xdc\xca\x7c\x81\xac\x29\x40\xee\x15\x91\ \xde\xbc\x8c\xdc\x0a\x51\x95\xbc\xac\x17\x64\xeb\x10\x8d\x35\x2c\ \x69\x49\x01\xe4\x7e\x63\x3d\x35\x8b\x5c\x6b\xcf\x12\x0e\x5e\xce\ \x2a\x10\x97\xf5\xe5\x36\x98\x49\xc2\x7e\x42\xd5\xbf\x63\x45\x22\ \xb5\x73\x1f\x5f\xf0\x46\xbc\xca\x12\x0c\xf1\x2c\x1f\x8b\x9a\xb4\ \xb4\x97\x2c\x88\x64\xae\x38\x1b\x5e\xd0\x2b\x57\x92\x93\xcd\xc9\ \xd5\x6b\x41\x28\x08\x0b\x81\xc7\x34\xc7\x6c\x92\x08\x4b\x0c\x1c\ \xe5\x9d\xeb\xcd\x47\x8d\x25\xda\xf1\x28\x3d\x17\x4f\x38\x94\xaf\ \x72\x6a\xb5\x7c\xa6\x36\x65\x95\xe8\x60\x55\x36\x96\x0b\x44\x17\ \x36\xeb\xd1\x43\x3c\xbe\x1b\x01\x48\x81\x5c\xf4\x16\xae\x82\x6a\ \xbc\x40\x11\x8f\x11\x39\x7b\x3d\x44\x6c\xc6\x32\x78\x81\x02\xe3\ \x6a\x97\x5a\x9d\xaf\xd4\xeb\xee\xf5\x01\x12\x08\xea\x29\xb8\x58\ \x81\x04\x12\x99\x8b\x2b\x99\xbd\x70\x1a\xe0\xe3\xc5\x79\x0f\x98\ \x99\xb9\xf7\xeb\xfd\xe4\x8c\x65\xaf\xbf\xbd\x8d\x41\x64\xef\x53\ \x8a\x66\xc8\x67\x00\xb5\xb2\xbc\xb8\x97\x61\xbc\xc6\xec\x2c\x8c\ \x53\x5f\x44\x18\xf0\xf0\x1a\x6e\x79\x82\xd7\x1b\x21\xed\x19\xc1\ \xde\x6c\xd1\x7e\xa2\xdd\xfb\x4b\x02\x76\xaf\x57\xe4\xb4\xb5\x6d\ \x83\x33\x80\x58\xf3\x4b\x5a\x26\x3d\x6a\xc0\xe6\x82\xd4\x76\xc5\ \xe8\x46\xd8\xe2\x78\x22\x36\xae\x9d\x17\x2c\xeb\xc9\x2d\x21\xda\ \x8b\xd3\xb9\x46\x1b\x2a\x73\x3c\x2b\x30\xb6\xde\x2d\x3d\x85\x2b\ \x6d\x5f\xbd\xac\xe5\xde\xb5\x3e\xf5\xe1\xb2\x60\x6d\xbb\x2f\x5c\ \xb1\x62\xc5\xc1\x89\x6e\x8f\x63\x8f\xf0\xb3\x96\x08\xd4\x7e\x42\ \x6a\xef\x8c\xb5\x62\x35\xfd\x09\x69\x33\x74\x2b\x40\x7b\x7b\x6e\ \x8c\x97\x8d\x89\x14\x1a\x5b\x69\xb5\x51\xd5\xa1\x65\xf2\x90\xbb\ \x6a\x49\x43\xd3\x7b\x8c\xc2\xd5\xf4\x5e\x51\x4a\x87\x2d\x61\x45\ \x31\x21\x42\x4c\x5a\x96\xcc\xbd\x5f\xf5\xa8\x2c\x6a\x51\x76\x7b\ \x39\xd7\x7c\x80\xb5\xe6\xcb\x95\xb1\xc9\xe9\x82\xb8\xcb\x02\x49\ \x09\xc5\x8a\xcb\xfb\x1d\x95\x55\x5b\x2c\xc7\x5a\xe4\x5c\xfe\xfc\ \x84\x32\xc8\x05\x2d\x9f\xab\x5a\xb0\x0a\x2f\xa6\xab\xc4\xce\x62\ \x88\xd2\xd1\xb4\x1a\x78\x86\x7a\xa5\xb8\x63\x70\xb3\x3b\x82\x33\ \x86\x48\xaf\xad\x8a\xc5\x07\x4c\x2d\x3b\xc3\x94\x2d\xe8\xe2\x0e\ \xf4\xd6\xdf\xc2\xac\x41\x7e\x3d\x41\x3e\x92\x9d\xd2\x14\x4f\xe4\ \xce\xac\x49\xf4\x58\x56\x8e\x78\xa6\xf4\xc3\xf1\x30\x53\x0a\x45\ \xc4\x91\x8a\x49\x66\x45\xdb\xd5\x80\xb1\xbc\xb5\xb5\x57\x10\xab\ \x70\x07\x8e\xe9\x1e\xc8\x28\x4f\x90\x33\xa6\xb3\x12\x21\xd9\xdc\ \x1e\xdb\x15\xf0\x72\xfb\x4d\x7b\x21\xad\xe9\x58\xa6\x3f\x72\xf9\ \xe7\xed\x8b\x3f\xec\xdf\x41\x9b\xa6\x8c\xc9\x76\xd1\x0e\xab\x1d\ \x2c\xe7\x0b\xb6\xe9\x54\xc5\xe1\x04\xb4\x55\xa3\x41\xab\xb3\xb7\ \xde\x32\xb6\xa5\x94\x58\xb1\x36\x5f\xc3\x28\x94\x4d\x27\x62\x4b\ \x8f\x94\x5e\x10\xea\x93\x5a\xab\xb7\xda\x39\x65\xa7\x9e\x58\xb9\ \x77\x8d\xc2\x89\x5a\x1e\xe4\x36\x03\x51\xc6\x4b\xb3\x2b\xe6\xa0\ \xd0\xba\xac\xf9\xd7\x29\x8b\x3f\x29\x61\x87\x13\xc9\xd5\x72\x06\ \x66\xa6\xbd\x30\x4c\x78\x1b\x5e\x6e\x54\x7e\xe5\xf4\x25\x7e\x03\ \xd1\x16\x48\x14\x02\xca\x9d\x36\xfb\xab\xdd\x94\xc1\xf2\x74\x0d\ \x22\x62\xcc\x3f\x53\x9a\x4a\x60\xac\x12\x3b\x12\x79\xdd\xac\x7a\ \xca\x99\x52\xa8\x39\xc8\x8a\xde\xb8\x5e\xab\x38\x3d\xfd\x5f\x56\ \x6f\x3a\x89\xb8\x81\xf1\xa0\x2e\x24\x26\x22\xb8\x22\x16\xbe\x6a\ \x4a\x55\x8b\x29\xab\x55\x8c\x68\x24\x95\x35\xe5\x36\xd9\x47\xed\ \x47\x6e\x66\xbb\x8b\x69\x98\x5f\x9b\xe3\xfc\xc4\x60\x58\x76\x42\ \x68\x29\xbc\x3d\x26\xb3\x99\xd4\x06\xff\x6d\xbd\x63\x91\x67\xf9\ \x45\xf5\xde\x28\x16\x9f\x63\x35\x15\x5d\xe3\xa0\x53\xbd\xb9\xa2\ \xa4\x6f\x95\xe7\xb3\x24\xcf\xb1\x0a\x8a\xdc\xf3\xce\xdb\xfb\xa0\ \x7c\x79\x38\x48\x60\x75\x28\xe5\x29\x35\x6c\xce\x84\x76\x35\xbd\ \xb8\xfc\x53\xb5\x16\x4b\x43\xd1\xb6\xa0\x07\x12\xa9\xe1\xf5\x42\ \xe5\xc1\xb2\x75\xb1\xe6\xc1\x59\xe8\x89\x87\xeb\xd1\xde\xb9\x2d\ \x41\x95\x97\xd2\x2a\xbd\x46\x65\xd5\x3e\xc5\x82\x0e\x4d\x4e\xda\ \xa8\xa6\x21\xda\x06\xa2\xf9\xd9\x4a\x5e\x2b\x6c\x4b\x38\x60\x2b\ \x0c\x0d\x9d\xd8\x33\x49\x46\x3a\xdc\xf0\x90\xbd\xdb\x80\xbb\x6a\ \x74\xdf\xa6\x9c\x95\x03\x6a\xdd\x4c\x75\x54\x6d\x32\x44\x7c\xb3\ \xbe\x6e\xe4\x2c\xab\x53\xc7\xe0\xc8\xa9\x26\x50\xd6\x70\x66\xa6\ \x63\x35\x87\xbe\xe4\x76\x3c\xcc\xd1\x38\x2b\x0f\x21\xe9\x8f\x9f\ \x3f\xc7\x31\x88\xd1\x1b\xe0\xfa\xbb\x38\xd2\x1b\x4f\x68\xd2\xb4\ \xcc\xbc\xc0\xce\x12\xba\xb3\xbb\xb9\x68\x5d\xbf\xd8\x76\x26\x4e\ \x18\x95\x12\x4b\x60\xd6\x26\x91\xb5\x8e\x33\x22\x02\xa5\x0a\x22\ \x16\x70\x0a\xce\x6a\x40\x15\xac\x63\x37\x44\xe7\x4b\x44\x78\xdb\ \x0c\x00\x0a\x57\x12\xe1\x2d\x73\xf0\xd8\x3b\x33\x62\x11\xb9\x15\ \xd4\xc3\x70\xa8\x6c\xed\x5b\x3c\x4f\x3b\xe9\xd6\x54\xcd\x23\xe6\ \xd9\x17\x48\xd7\x26\xee\x5b\xd5\x1a\x35\x71\x7c\x0b\x48\xee\xde\ \xaa\x7a\xf8\x5d\x6d\xc4\x3b\x9e\x4a\x42\xb3\x03\x6b\x40\xeb\x3a\ \x2b\xd9\xa7\x22\x25\x99\x3a\x21\xe5\x4d\x9c\xcf\xcc\x81\xf6\xc7\ \x05\xe1\x9b\x6f\x6a\x4b\x68\xea\x56\x8f\x6b\x24\x89\xf7\xdd\xc7\ \xaf\xb8\x1f\x63\x89\x44\xbc\x21\xca\x8b\x9f\xa2\x0c\xe3\xc7\xef\ \xaa\x32\x65\x7f\xba\x71\x6b\x48\x8d\x27\x9e\x87\x3d\x99\x99\x5c\ \xc4\xa7\xe0\xf2\x69\x56\x39\x1b\x97\xec\xca\x51\xc7\xc5\x34\x2e\ \xf1\x50\x56\x4c\x54\xfd\xfd\xa7\xb8\xe2\x56\xd4\x04\x6e\xed\xe7\ \xb9\x32\x97\xa7\x49\x23\x96\xfd\xb5\x71\x71\x27\x75\xfd\xff\xa1\ \xcb\x43\x54\xb4\xd1\xfb\xa7\x8c\x2c\xbd\x7d\x0e\x4d\xd0\x6f\xda\ \x68\xb6\xfb\xc1\xa5\xd6\xe6\xbc\x89\x02\x4a\x66\x17\x71\xa6\x4a\ \xe6\xe9\xca\x38\x7a\x7b\x71\xbd\xbf\x21\x62\x70\xf4\x9c\x75\x6f\ \xca\x57\x87\xcf\x0a\x80\xab\xc9\x9a\xc4\x0a\x13\x70\x8e\xae\xd9\ \x6c\x8c\x38\x34\x6a\x7c\x12\xae\x04\x76\xc5\x02\x97\xbb\xf5\x32\ \x50\xb6\x00\x81\xc5\xed\x03\xba\x33\x82\xa1\xed\x0c\x64\xd4\x6a\ \x4a\x16\x8f\x2f\xe0\xdd\x0d\xd1\x1b\xcf\x51\x9b\xe2\xd4\x51\x40\ \x83\xdf\xe5\x58\x2e\x0c\xf1\x29\xc6\x4e\x98\xe3\x67\x73\x85\x48\ \x74\x5f\x74\x9c\x20\xfa\x5d\xa6\xa7\x9b\x39\xfc\xa4\x52\x86\x0d\ \xc7\xf8\x9b\xfe\x6c\xcc\x5d\x71\xf6\x6e\x8c\xdf\xb9\x2c\x22\xbc\ \xdf\x78\x8b\x11\x0b\xcf\xb9\xcf\x19\x23\x3c\x2f\x8a\x5e\x62\x5a\ \xd6\x9c\xc2\x80\x75\x3c\x6b\xb8\xcb\xd2\xa6\x68\xdb\x6d\xa7\xee\ \x02\x01\xed\xb1\x3e\x46\x75\x30\xe8\x7e\xd2\xdf\xb8\xaa\xb6\xfb\ \x15\x87\xef\xaa\x6b\xf9\x50\xf5\x84\x86\x06\xdf\x5b\x10\x56\x73\ \x40\x2f\x45\xf1\xea\xe0\xef\x62\xcf\x4b\xf4\xc7\x82\x95\x2f\xb4\ \x9e\x23\x86\xa6\xd2\x8e\xf9\x23\xfc\xaa\xcd\x9e\x3a\x52\xb3\x32\ \xf0\x6e\x02\x4f\xb3\xe2\x8b\xee\xd0\xfa\xa1\x23\x5b\xa0\x6a\x9a\ \x51\xa6\x7d\x6e\x9a\x52\x81\x62\xf8\xab\x79\x71\x71\x3b\x40\x66\ \x91\xb9\x69\x57\x5b\x43\xa3\xed\x87\x5c\xe4\xf0\x1e\xf3\x07\x15\ \xcd\xb9\x32\xc3\x66\xb9\x5a\xe3\x71\x26\x5d\xa5\xc6\xa9\x98\x1d\ \x87\xe5\xaa\x71\x7d\x83\x30\xca\xed\xec\x67\x3a\x96\x2b\x0b\x44\ \x40\x2b\x16\x94\xe0\xca\xd0\x4c\x3e\xd2\x13\x29\xb5\x93\xba\xd2\ \xf4\xfb\x6e\x2e\x87\x88\x3f\x9c\x24\x36\x81\xc8\x3e\x21\xa3\x98\ \xab\xd1\xcc\xac\xbf\x1b\x0a\x5b\x0d\xaf\x55\x54\x3a\xe1\xd6\x38\ \x1d\xe1\xf4\x10\x9b\xbc\xca\xfc\xdc\x9c\x59\xff\x33\x89\x37\xda\ \x44\x3f\x78\xb6\x50\xe8\xa8\xae\x5b\x22\x35\xda\x41\x7c\xca\x9c\ \xa2\xac\x64\x2a\x8e\x3f\x4e\x60\x13\xcf\xb2\xac\xe8\xab\x3e\x1c\ \x8f\x22\x79\x99\x3b\x5b\x47\x07\xd3\x65\x32\xf5\xf5\xf5\x4c\x99\ \x63\xc3\x03\x2f\xf2\x31\xb7\xee\xf1\x54\xd6\x3c\xe6\xde\x00\x1d\ \x16\xf7\xe5\x65\xf6\x8e\xf6\x7d\xf4\x19\xcc\x91\xc5\xe5\xdc\xc8\ \x61\xe0\x1f\x77\x26\x7d\x38\xdf\xe6\xe5\x81\x32\xba\x82\xae\x66\ \x79\xb3\xca\xba\xf2\x41\xde\x99\xaa\xd1\x14\x1a\xe7\x2f\xe9\x09\ \xd4\x1b\x29\x2b\x61\xd6\x2c\xfd\x36\x95\x6d\x8f\x96\x68\x9a\x99\ \xa4\xb5\x7a\x6d\x89\x15\x82\xa6\xbb\x5c\x9b\x34\xe2\xf2\x2a\xa0\ \x4a\x52\xce\x84\x56\x34\x23\xba\x82\x96\xad\x36\x96\x61\x21\x3f\ \xc0\x4c\x2e\x04\xe2\x9a\xed\x14\x5d\x2f\x5a\xb3\xd7\xeb\x07\x6f\ \xd3\xa8\x82\x83\x6b\x9a\x33\x5b\x84\xab\xab\x30\x64\xb0\xcb\x22\ \x07\x5c\xcb\xfc\x2a\xe2\x21\x36\x94\x28\x21\x1e\xc8\xa8\x95\xf1\ \xae\x9e\x7a\xad\x9f\xc9\xdd\xf5\xbc\x67\x67\x9a\x21\x80\x5e\xad\ \xd8\xc5\x57\xe6\xf1\x72\x46\xf1\xc6\x3d\xd7\xf2\x38\x37\xb9\xcc\ \x7a\x1b\x73\x04\x5d\xe6\xff\x1d\xd2\x79\xbc\x9a\x6a\x6d\x9b\xef\ \x70\x55\xfb\x2b\x8a\xec\xdb\x70\xe7\x71\x0b\xb3\x39\xed\x37\xab\ \xa0\x5f\x7d\x85\x74\x0a\xc5\xa3\x91\xde\x99\x6c\x57\xa0\xfc\x98\ \xee\x54\x63\x34\x3c\x6a\x2d\x87\x80\x4c\x5b\x99\x36\x1f\x30\x6b\ \xf2\x65\xe7\x67\x88\x5a\x5d\x17\xa4\x8b\xb4\xe6\x8a\x9e\x3d\x68\ \x3e\xde\xb9\xb3\x7b\x15\xaf\xed\x0d\x0c\x07\xa2\xd5\x5f\xe7\xd8\ \x8f\xdc\xad\xac\x39\x8c\x84\xf6\x04\xe2\x9c\x8c\x63\x63\x5f\x63\ \x30\x8b\x05\x84\x1a\x50\xd2\xed\xc7\x6e\xd4\x91\xf7\xca\x11\xbb\ \xd7\xcc\x24\xab\x0c\xf1\xfa\x53\xb7\xcf\x72\x63\x29\x5d\x89\x5d\ \xab\xcf\xd2\x97\x2a\x82\x3a\xce\xaa\xc5\xc9\xb0\x65\xdc\xae\x1a\ \x9a\xe7\x63\xb6\x35\x70\x9f\x04\x4d\xbf\xd8\x3d\x8c\x7d\xcf\x9c\ \x76\xb0\x56\x98\x81\x1f\xbd\xf7\xa1\xb2\x19\xf8\x98\x19\xc0\x36\ \xaa\x50\x91\x09\xae\x22\x15\xb6\x5f\x20\x3d\xe7\xa2\xc5\xc9\x29\ \x84\xdc\xd7\x4d\xce\xd1\x12\x15\xd8\xe0\x93\x42\xac\xfc\x23\x5f\ \x11\x94\x5d\x67\x93\x20\xb4\x16\x23\x56\x6e\x6f\x18\xb6\x29\xb4\ \xae\x2a\xa8\x24\xe8\x99\x5b\x58\x41\xee\xea\xb9\x35\x72\x8b\x13\ \xda\x8f\xc3\x2b\x4f\x9f\x53\x08\x42\x68\xa1\x18\xb1\xca\xa3\xec\ \x6a\x5f\xad\xf1\x28\xce\x1e\x0a\xc0\xa3\xd4\xc6\xd1\xda\x6f\xa8\ \x09\xb5\xc4\x6d\x09\x7d\x7b\x71\x5c\xd6\xe4\x65\xb6\x1a\x2b\xac\ \x11\xbf\x55\x7e\xa8\x96\xbb\x29\xb9\x0d\xdf\xed\xd4\x53\xde\x9e\ \x95\x1e\x6a\xc4\x2d\x92\x5e\x64\xf2\xe9\xad\xc3\x68\x3f\xa3\xb6\ \xbf\x26\x1f\x8f\x1a\x95\x89\x05\x2f\xae\x31\xc9\x73\xc4\x95\x11\ \xc5\xb4\x33\x17\x61\xf7\x0c\x7e\xd6\x5a\x18\xf1\x2e\xa0\x4d\xa3\ \xc7\x60\xb9\x24\x5e\x8b\xfe\x7a\xd3\xeb\x0d\x65\xfa\xcb\x64\x93\ \xbe\x7b\x0f\x44\x04\xbf\x2d\x8b\x70\x32\x6c\x69\xdb\xd1\xc1\x1e\ \x8b\x99\x5a\x13\x33\x0d\xf5\x2d\xbe\xb5\xcb\x06\x72\x7f\xb3\x65\ \xfb\xee\x1c\xc2\x1a\xe7\x14\x91\x37\xb1\xa2\x4c\xd7\xb4\xb3\x8d\ \x86\x92\x07\x1d\x8f\x00\x03\xde\xd2\x11\x2b\xb0\xa2\x36\x0e\xd7\ \xc4\x87\x62\x44\xf9\xb7\x1e\x02\x4d\xad\xdd\xfe\xdc\xb7\xa3\x59\ \x5a\x36\x76\x7e\xbb\xfd\xaa\x82\xfc\x62\x69\x1f\xea\x36\x67\xa1\ \x3f\xd9\x7b\xc1\x62\x59\x81\x18\x3b\xc5\x32\xfe\x6c\xae\x1a\x10\ \x7b\xff\x78\xbe\xf6\xd6\x46\x06\x92\x62\x7a\x96\x55\x59\x8e\x99\ \x2f\xe2\xe1\x2f\xeb\x99\xce\xb2\x90\x55\x3e\xeb\xd9\x2b\xb4\x46\ \xd3\x9c\x4a\x66\x14\xe0\x9c\xc3\xc3\x40\x6d\xe2\x62\xbf\xfe\xd1\ \xd9\xce\xcf\x87\xda\x89\xa6\x7e\x87\x3e\x1d\x91\xbe\x09\x72\xbf\ \xa9\x83\xb3\xe7\xb8\x35\x45\xd0\xd0\x0b\x70\xd9\x33\x44\xe1\xec\ \x45\x03\x77\x48\x8b\x63\x93\xc0\x16\x5b\xca\x0e\xe0\xd9\x00\x58\ \x4b\xcc\x9a\x03\x33\xbe\x17\xcf\xf4\x74\x11\x51\xd3\x44\xca\xee\ \x0f\xa5\x8a\xba\x72\x67\xa9\xa5\xaf\xa7\xb9\x0b\x55\x9c\x9d\xa0\ \xe5\x81\x8e\xb3\x20\xe0\xbb\x8d\xd5\x48\xbc\x5b\x01\xa5\x6b\x93\ \x07\xda\x5e\xec\x5e\xa3\xab\xdd\xa3\x85\x7f\xfa\xd7\x5d\xef\xe2\ \x9b\x85\x21\xda\xa8\x4b\x6a\x31\xc0\xc7\xde\x8e\xe9\x32\xa7\x36\ \xab\x46\x9e\xf0\xf2\x50\xff\xe3\x68\x04\xa2\xe9\xff\x6e\x9a\x57\ \x44\xa1\x07\x09\xac\xf4\x95\xde\xb9\xed\x97\x6c\xf3\x0d\xaf\xaf\ \x6a\xc8\x55\x2c\x95\x2c\x6f\xe3\x95\x0f\x9b\x62\xd8\x04\x82\xbd\ \xff\x62\xd4\xe8\x28\x62\x45\xdd\x57\x0a\xc2\x46\xfb\x7c\x59\x0f\ \xe1\x05\xa2\x6f\xd6\x82\x17\xbd\x6f\xd6\xea\xb7\x76\x8e\x4d\x21\ \x54\x43\xfa\xe9\x75\x5b\x7f\x8f\x9d\x39\xd2\x4e\x7e\xae\xb8\x69\ \xf4\xf0\xd2\x4d\x7d\xac\x63\xbf\xa3\x40\x51\x27\x5b\x84\x75\xa0\ \xb9\x30\x95\xe9\xb2\xa7\x89\xf2\x56\x35\x47\x19\x2d\x22\xc8\xcb\ \xb0\x37\x3e\x6d\xd0\xbe\x5f\xec\x54\x42\x1a\x99\x66\xad\x1e\x68\ \xfb\xbb\x4d\xc5\xe0\xb0\x47\x78\x9f\x63\x19\xe8\xa2\x37\x81\xdd\ \x0c\xcf\xe9\x6a\xab\xf1\xb3\x24\x56\x27\xf7\x3e\x63\xe5\x16\xa2\ \x37\x21\x19\xbd\x09\x37\x40\xb9\x77\x3f\xaf\x3a\x97\x6e\x9d\x6f\ \x43\xc0\xae\xc1\x8a\x21\x21\xb7\xe9\x55\xcb\xdd\x68\xe3\xbd\x2b\ \xca\x7a\x9b\xdb\x9d\xf1\x58\x13\x36\x61\xe3\x7c\xc3\xa2\xd6\x83\ \x1f\xb6\x0f\xdf\xdd\x1e\xf4\xf9\xaa\x05\xf1\x5e\x45\xd3\x61\xbb\ \xa6\x38\x6b\xe1\xb2\xda\xb8\x01\xad\x1a\x25\xad\x28\x1a\xef\xb1\ \x94\x54\xbf\xfb\x76\xb8\x97\x14\x5b\x20\xcc\xba\x73\xbf\x18\xbd\ \x91\xa6\x1c\xb9\x2a\xb1\x14\x5f\xab\x2d\x5e\x8f\x1b\x4a\xe0\xd8\ \x6f\xf6\xc9\x82\x87\xf0\x4c\xef\x3e\xbf\x6d\x28\x5c\xc0\xf8\x4e\ \xed\x48\x02\x4f\xac\x5d\x9a\x2b\xe2\xcd\x62\xe4\xfa\x3d\x4c\x77\ \xdf\x36\x57\x1f\xcf\xb1\xa4\x5a\xc7\x05\x79\x71\x99\x3c\x50\xcb\ \xd5\x56\x11\xc6\xaf\x45\xb6\xba\xcf\xf1\xbd\xb7\xf0\x7b\x33\xd9\ \xa6\x0b\x86\x7d\x31\xf8\x47\x1b\xc8\x9f\xc9\x81\xa6\xab\xbb\x6c\ \x74\x2e\x87\xb0\x29\xb6\xbf\x57\x10\xd7\x32\x64\xaf\x6d\xea\x7d\ \x78\x27\x7b\x5b\x81\x3c\x08\x5b\x95\xd9\x4d\x80\x2b\xa3\x6e\x57\ \x13\x41\xb6\x40\xad\xe3\xe9\x90\xda\x10\x1a\xa2\x09\x1f\x9c\xfd\ \xb9\x65\x68\x52\x7b\x0c\x81\xe7\x79\xf6\xde\x8e\x93\x47\xa5\x55\ \x2d\x47\xa0\x38\xa1\x8f\x67\xa4\x65\x2f\x5d\x02\xa3\xf4\x6a\x4f\ \x53\x38\x4b\x8c\x37\x36\xfe\xa5\x6a\xc7\x33\xc5\xd5\x59\x67\xc9\ \x31\x67\x68\x7a\x20\xdb\x18\x19\xe0\xc7\x6a\xa7\xaa\x09\x30\x08\ \x61\x4e\xaa\x63\xd7\x7c\xeb\x9a\x39\xb0\xc5\x19\xbe\x3c\x38\xa6\ \x02\xd1\x64\xc4\x61\xe2\x54\x70\x2d\xd9\xa6\x0f\x61\x9f\xb2\x15\ \x0b\x65\x2c\x57\x1c\x51\x0b\x3c\x0d\xde\x31\x37\x9f\x67\xb5\x1c\ \x22\xa5\x65\x04\xc3\x8e\xe9\x11\x24\x57\x2c\x50\x56\xfa\xf0\xda\ \x5a\x15\xb1\xc0\x5d\x03\x67\x5b\x32\xbb\x74\xe0\xc1\x1b\xcb\x26\ \xa1\xf6\xcd\x15\x33\xc9\x02\xb4\x10\x19\xab\xf8\x18\xcc\x44\xaf\ \x91\xd2\x2b\x31\x62\xbd\xef\xc6\xb1\x8f\x35\xf1\x95\x8f\xa5\x38\ \xed\xcd\xa8\x76\x26\x29\xeb\x7b\x72\x6f\x21\x15\x11\x89\x7d\x12\ \xf5\x88\x9d\xca\x18\xba\x28\x6d\xfa\xb6\xc4\xf8\x08\xd1\x8f\xaf\ \xec\xd9\x46\xdd\x33\x3b\xda\x2c\x12\xe7\x62\x58\xd6\xaf\xcc\x9e\ \x50\xd3\xda\xdb\xe9\x44\x47\xad\x76\xad\x25\xae\xb6\xea\xda\x3d\ \x65\x6d\x75\x6f\x68\x76\x44\x8e\xc8\x7e\xd3\xf5\x3f\xab\x96\xe0\ \x29\x09\xec\x5a\xd6\xda\xb0\x5c\x4a\xa1\x02\xa1\x66\x7a\xf9\x8c\ \xe4\x2d\xbd\x03\xd2\xdc\x3c\x15\xe2\x81\x32\xc2\x93\x0e\xba\x55\ \x63\x3f\x65\x62\x93\x84\xc5\xd4\xff\x1f\x61\x6f\xb7\x6d\x47\x72\ \x24\xe9\x99\x99\x47\xee\x73\x00\x14\xea\x87\x1c\x76\xcf\xa8\x67\ \x46\xf3\xfe\x4f\xa4\x7b\xf5\x68\xd4\x6c\x36\x59\xc5\xaa\x02\x70\ \x76\x86\xbb\xeb\xc2\x3d\x22\x13\xa0\xb4\xc4\xc5\xc5\x45\x16\x51\ \x05\x9c\xbd\x33\x23\xfc\xc7\xec\xb3\x2b\x8f\x85\x2b\x20\x26\x60\ \xf5\x60\xd7\xa8\x24\xa9\xe2\x0f\xf5\xd0\x56\x4b\x5e\xa1\xa5\x31\ \xdf\x83\x4b\xc8\x18\xb1\x71\x0a\x5c\x34\xd4\x86\xb9\xf0\xf6\x7a\ \xf6\x03\x40\x54\xd4\xcc\x72\x0e\xef\x3f\xed\xbe\xd0\x37\x96\xbc\ \x54\x5f\xda\x61\x90\xd9\x7b\x84\x58\x89\xb6\xd4\xea\xcf\x2e\xde\ \xe1\xd6\x45\x89\xc9\xd8\xf6\x39\x89\xc6\xda\x95\xdb\x10\xc7\x50\ \xa7\xd7\x35\x12\x60\x5d\x3b\xf5\xbd\x48\x52\x0a\xa6\x0b\xf2\x7c\ \x8f\x9a\x2b\xcf\x92\x19\x77\x4e\xbb\xb7\x93\xb5\x4b\x78\x1a\xe9\ \x1a\xb6\xb0\x69\x44\x16\x88\x22\x90\xc3\x16\x8a\x5e\x06\xc0\x7b\ \x2f\x13\x24\x0d\x23\x40\x9f\x41\x0d\x22\x18\x21\xae\x04\x8c\x6c\ \x3f\x32\xdd\x05\x7a\x11\x81\xd6\x6c\x3c\x13\xb3\x1c\x07\x6b\xf8\ \x59\x9f\x62\x34\x9d\x5c\x5b\xe6\x9c\xe9\xc2\x52\x1f\x83\xde\xf0\ \xa1\x05\x0e\x08\x26\x42\xd4\x3d\xb4\x7d\xfd\x67\x46\x78\x30\x2f\ \x22\x36\x9b\x64\xd5\x53\xbe\xc8\xcd\xd4\x2e\x10\x36\x32\xb0\xbe\ \xe1\xdd\x05\x6d\x5f\x77\xac\x55\xfb\x72\x91\xf4\x84\xa8\xed\x86\ \x1d\xda\x06\x5c\x79\x51\x59\x23\xd4\x52\xc5\x22\xe4\x74\x56\x79\ \xc5\x8a\x68\xc8\x86\xca\x34\xcf\x1e\x28\x2a\xe7\x2a\x15\xb6\xc0\ \xb8\x7f\xb1\xbb\x47\xcc\xf0\xce\x96\xd8\xd6\x8b\x95\xae\xbc\x77\ \xdb\xd8\xfd\xc3\x8d\x65\xb5\x8b\xdf\xaf\x10\x34\xa5\x92\xa8\x87\ \xf2\xab\xe2\xea\x56\x28\xad\x28\xf0\x3b\x49\x6b\x6d\xee\xf6\x06\ \xec\x06\xb9\xcb\xbc\x4f\x7b\x12\xbb\xc6\xab\x6e\x3e\x57\x2c\xf5\ \x06\x99\xef\x8c\xf3\x3b\xac\x92\xdc\xcc\xce\xde\xed\xdc\x02\xe0\ \x97\xc9\xa5\x8f\xa8\xd6\xfb\xe8\x06\xae\xbe\x3d\x55\x9d\xa7\xae\ \x1a\xac\x69\xa1\xf4\x0a\xb6\x71\xb9\x42\xb4\x6f\xd7\x95\xb7\x71\ \xcb\x8d\x58\x17\xea\xbe\xa2\x17\xd4\xd2\xa0\x60\x2d\xff\x6a\x80\ \x03\x53\x8f\xe4\x27\xb3\xda\xad\x62\xbe\x64\xd2\x24\xd4\x7f\x23\ \x68\x4c\xaf\x03\x46\x0e\x6f\xfb\x57\xdb\x6e\xf7\xc7\xb7\x12\x70\ \x6f\xbd\xe4\x12\x7a\xc5\xcd\x28\xc8\xaf\x62\xa5\xab\xd6\xb8\x7d\ \xcd\xaa\x25\x0a\xb1\x1c\x19\xbd\xa2\xff\xc7\x48\xd0\xa5\x32\xe3\ \xf5\x3b\xed\x6f\x96\x2a\x93\xdc\xfa\x8b\x71\x43\xe6\x66\x8f\xb0\ \x6f\xcc\xf1\x5d\x83\xf5\x89\xef\x2b\x99\x07\x1b\x42\xa5\xee\x02\ \x09\x2b\x43\x61\xbb\x1e\xa2\x94\xa1\x88\x58\x5f\xca\xce\x75\xed\ \x20\xb3\x9b\xe0\xbe\x28\x2b\xea\x44\xa2\x9d\x76\xc1\x15\x01\x11\ \xde\xe0\xe5\xc6\xe6\x6e\x69\x18\x32\x33\xa4\x15\xd3\x59\x6e\x81\ \xdd\x6f\xac\x75\x2a\x41\xf8\x37\xa2\x84\x3d\x5a\xc3\x57\x54\xbb\ \x6b\xb1\xd3\xaa\x63\x4f\xbf\x59\xeb\x79\xf9\x6e\xaa\x5f\x4a\x25\ \xff\x21\x21\xb4\x6e\x07\xc5\x95\x18\xd7\x6d\x66\x29\x63\xb4\x6f\ \xf6\x2d\x11\xda\x4f\x45\x25\x42\x30\x57\x60\x57\x0f\x2d\xaf\x3d\ \x46\xc3\x98\xe2\xe2\xa9\x36\xd2\x8a\x97\x42\x77\x91\xed\x73\xdd\ \x9f\xdc\x78\xd1\x85\xd8\xec\x91\x52\x57\x79\x7d\x6b\xf6\x97\xb1\ \xe1\xae\x0b\xf2\xd6\xd1\x88\x04\xbd\x27\xe6\xa5\xc5\xed\xf6\xc6\ \x48\x17\x11\x29\x11\xa1\x54\x5a\xb6\xe4\x6c\xbd\xf2\x01\x54\x94\ \x57\x5a\xc9\xb5\x3b\xc9\x86\xa9\xa5\xc7\x2c\xb1\x89\xda\xc7\xdd\ \x29\xa6\x57\xc4\xf0\x1a\xe6\x5e\x1f\xd5\xde\x38\xec\xc6\x21\x72\ \x25\xe5\x2d\xfd\xf2\xf2\x57\xb4\xf4\xf4\x6a\x83\x77\x8e\xc7\x37\ \x94\xd6\x7b\xc0\xfa\xbd\x7d\xfa\xfa\xf1\x40\x5b\x80\x56\xce\x2b\ \x6e\xab\xd5\x3b\xd8\xbe\xd5\x00\x82\xda\xe0\xbd\xa9\xd0\x6c\x34\ \x50\x6d\xb8\x22\x6c\x05\x48\x62\xf9\xb8\xea\x80\x98\x33\x76\xf8\ \xd8\x85\x85\xeb\x79\x1d\x01\x8e\x1d\x47\xb2\x9c\x90\xe5\xc2\xd5\ \x5d\x90\x82\x52\x2d\x2d\x54\x36\xc9\x5a\xa0\x2d\x21\x3f\xd7\xa7\ \xb4\x48\x22\x65\x35\x66\x7e\x35\x45\x21\xef\x4c\xc7\xff\x97\x5d\ \xef\x2d\xba\xb5\x79\x2d\x79\x1b\x9b\x64\x4b\x6d\xb4\x81\x1c\x2b\ \x76\x66\xfb\x40\xb3\x4b\xc1\xdb\x0b\xd7\x5d\x7a\x87\xe1\x5c\x89\ \x16\xf7\x11\x67\x16\x97\x68\xa3\x85\x79\x4d\x10\xb6\x4e\xa9\x31\ \x0e\x1c\x96\x66\x66\xab\xfa\x5a\x4d\x19\xda\xfb\x9c\x21\x93\x91\ \x05\xd1\xef\x0e\x48\x9b\xbd\x41\x44\x94\xd9\xd6\xda\x64\xbe\x56\ \xe9\xad\xf0\x40\x1f\x50\xfb\x9c\x5e\x2d\x6b\x9f\x99\xa1\xec\x3a\ \x9b\xcb\x3e\xd2\x0d\x8c\xc4\x23\x39\x33\x9d\x1d\x09\xa5\x0a\xaa\ \x23\x66\xab\xea\x72\x28\xa2\x97\xd0\x99\x2c\x33\x49\x3b\x6d\xaf\ \xbe\x25\xbf\x02\xfe\xf3\xda\x9e\x77\x77\xd8\xa9\x47\x35\x70\x5b\ \x0d\xc9\x8d\xa8\xb5\x9d\x2e\xbd\xd3\xe1\xed\xec\x58\x7c\x39\xdd\ \x27\x07\xff\x08\x40\xdd\x6c\xd4\x02\x0b\xaf\x87\x44\xb7\x79\xc0\ \xfa\x07\x2c\xb0\xf0\x57\x13\xb6\x95\x0a\x1e\xb1\x3d\xdc\x99\x4b\ \xc8\x87\x8a\x42\x49\x6f\x97\xb0\x0a\xa6\xbd\x36\xd7\x89\x2b\x60\ \xb4\xdf\xe8\xbb\x50\xb0\x4b\x9b\x71\x8d\xd5\xca\x2f\x5d\xce\x93\ \x4c\x83\xd9\x18\x7a\x3e\x33\x42\xc3\xb8\xfc\xc8\x55\xeb\x29\x55\ \x1d\xa0\x74\xe4\x1a\xf2\x02\x64\x1a\x08\x63\xa9\x24\x83\x5f\xcd\ \xd7\x57\xb2\xe2\x2d\x8f\xe0\x8a\x29\xfd\x7a\x9d\xb2\x77\x17\x31\ \xaf\x61\xd0\x6d\xd7\x1b\x19\x05\x3b\xbf\x0a\x86\x2d\x9f\x59\x17\ \x6b\xde\xc7\x63\x2b\x6c\xd0\xbf\xfa\x2b\x35\x98\x12\x33\x69\x4b\ \xd8\xd7\x8d\xc9\x57\xf9\x95\xd8\xe5\x4b\x9d\x29\xed\xdb\xcb\x8c\ \xc8\xc2\x1e\x88\x34\x99\x10\x45\x09\x34\x1b\xa6\x96\xd0\xf4\xce\ \x06\x6b\x92\xd3\xb0\x9b\x5e\x8d\x9b\xee\x05\x7a\x95\x10\xea\x0b\ \x9e\xab\x53\xe7\x9e\x09\x94\x5e\xc6\x90\x99\x98\x22\x8e\x61\xe7\ \x5c\x69\x41\x84\xca\xe3\x5a\x52\x5e\xf6\x5c\x75\x78\x4c\x81\x7e\ \x45\x4e\xac\xd1\x42\xe1\x42\x84\x98\xde\xaf\x6a\xdf\x6a\x7b\xe8\ \x12\x17\x04\xa5\x26\x09\x3b\x0c\xbd\x8e\x97\xa8\x13\x20\x22\xce\ \x9a\xb8\xee\x17\x23\xb3\x64\x44\x79\x7b\x61\xee\x43\x36\xfc\x43\ \xcc\xc6\x1d\xae\xfd\x0d\x4c\x3c\xbf\xba\xa3\x9a\x59\x52\xcb\xbe\ \x6f\x0f\xc1\x7d\x41\xed\xdb\xc0\xbd\x6b\xd1\x5e\x7c\x25\x11\xed\ \x5d\x47\x94\x73\xa0\xda\x90\x39\x3d\xc3\x93\x8a\xdb\xe4\x0d\xcb\ \xf7\xd9\x8e\xa4\x1a\x96\x2e\x0b\xb4\x5d\xf3\x38\x52\x66\x05\x2f\ \xf4\x89\x71\x1c\xe9\x61\x87\xed\xe5\xd4\x96\x75\x92\x47\xfd\xed\ \xd7\x07\x6d\xfa\xaa\x6a\xc2\xb7\x69\x50\x17\xb6\x7c\xad\x7e\xe3\ \xeb\x9f\x7c\x9f\x34\xdd\xf9\xf0\x5b\x85\x68\x5e\x28\xb6\xad\x86\ \x8a\x3d\xcf\x2d\x49\x48\xf9\x3f\xae\x6e\xbe\x7a\x45\xa1\xec\x0f\ \x25\xa1\x6f\x6a\x55\x27\x51\xc3\x44\x03\xdc\x83\xd7\x8c\xfd\x36\ \xbc\x8a\x60\x19\x19\x64\x99\x5e\xa1\x1f\x35\x3d\x34\x5d\xc2\x12\ \x99\x2d\xc9\x13\x97\xd6\x2b\xcb\xdf\x26\xab\xcf\x86\x0d\xd4\xbb\ \x25\xc4\x6c\xbc\x58\x2d\x4c\x6a\x51\x9a\xcd\xa9\xb9\x9d\x15\x3b\ \x70\xa8\x3c\x73\xf5\x69\x47\x3e\xc6\x38\x3d\x6a\xc1\xdf\x83\x7a\ \x23\xa0\xe2\xc4\xf5\x1c\xd5\x4b\x1b\xa2\xc9\x26\x2b\x96\x83\x35\ \xe0\x55\x56\x0f\x28\x08\x44\x96\x77\x32\xa3\x20\x27\xf7\x6c\x15\ \xee\x23\xb8\xe4\xcc\xfd\xc5\xe5\x35\x19\xbf\x72\xde\xaf\x55\x54\ \x2b\x7a\x4b\xe9\xa3\xc2\x2a\xf4\x44\xa6\x2f\xae\xbb\x88\x66\x7f\ \xe6\x45\xaf\xaf\x25\xcc\xde\x61\xe0\x5b\x45\x23\xff\xf1\x1d\xbb\ \xc0\xdf\x3d\xc1\xe1\x2d\x7a\xed\xda\xd2\x16\xe7\xb1\xe3\x75\xf7\ \xb6\x07\x90\xe8\x79\x9f\x6e\xc7\x9a\x9b\x5b\xeb\x0e\x6a\x6f\xb3\ \x63\x33\x6e\x68\xdf\x1d\x4f\xdc\x6e\x7a\x80\xf5\xa7\xbf\xb4\xdd\ \x5f\x6b\x84\xee\x02\xa1\x7f\x08\x67\xde\x4b\x9e\x5a\x56\x70\xa9\ \x7d\x72\x8c\xf1\x8f\x31\x32\x5f\x6d\x7f\xff\x3f\xae\xf2\x7f\xfc\ \xd7\xde\xb4\xda\x18\x5f\xa9\x95\xae\x9c\x3f\x88\xe6\xb5\x17\x5b\ \xc9\x4d\x6b\x91\x0f\x06\xf8\xd5\xcc\x34\xb7\x5f\xaa\xb7\xa2\x80\ \x15\x62\x33\x63\xf9\x47\x68\xf5\x6f\x69\x05\x03\xe8\xa6\x46\x69\ \x7a\xfd\x4d\xd8\x7c\x39\x0b\x78\xcb\xc4\xb9\x29\xd2\x36\xc1\x8f\ \xbb\xd8\xa8\xfa\xc0\xbb\xc8\xec\x55\x8c\x56\x9d\xba\x99\x65\xc3\ \xe4\x91\x66\xd1\xd3\xb5\xf5\x44\xb3\xe3\xb7\x39\x88\xb0\xe2\xc4\ \x56\xf8\x63\xce\xf5\x15\xd7\x18\xa9\x8e\xbf\x58\xd1\x07\x55\xfa\ \x5f\x5f\xe2\x3a\x29\x2b\xa0\xb2\x0a\x5a\xc9\xfa\x8f\xb9\x52\x89\ \x90\xd0\x22\xdd\xdc\xeb\xf0\x35\x82\xe2\x9c\xce\x92\xb9\xf6\x74\ \x94\x37\x39\x7c\xdc\x9f\xab\xf3\x3c\xef\xb9\xab\x2b\x42\x82\xbd\ \x01\xc6\x72\x8c\x7e\xeb\x46\xb9\xa5\xd5\xdf\xd6\xa5\x19\xe1\x15\ \x6d\xd6\x83\xbf\x92\x11\xac\x88\xb8\xc8\x0a\x71\x48\xc0\x9b\xad\ \xd3\x19\x7e\x3d\x0f\x88\x74\x4c\x64\x61\x62\x17\x3a\xbd\x54\x4f\ \x5d\x8f\x47\xf3\xed\x72\xbb\x2a\xee\x6b\x8d\xf6\x9c\xc5\x7d\x3b\ \x79\xff\x43\xdf\xbb\x3a\xe2\x6b\xf4\xf9\xd7\xb9\x0b\xfb\x3e\xf9\ \xe6\x27\xbf\xdf\x39\xfb\x1f\x78\xbf\xaf\xbf\x39\x78\x6e\x13\x2f\ \xe8\x9b\xac\x86\xab\x91\x5d\xf2\x86\xe8\xae\xbf\x67\xeb\xc9\xde\ \x20\x2f\x21\xd2\x72\xae\x76\x57\xc3\xd5\xda\x5b\x39\x31\x97\x71\ \x68\xd4\x58\xac\x45\x7a\x49\x24\x47\x15\x44\x02\x52\x26\x4a\x43\ \x32\xa9\x39\x0d\x83\xab\x50\xeb\xfd\x7a\x2f\x6d\x7a\x69\xb0\xed\ \xe2\x9b\xbb\xb2\x50\xdd\x35\x50\xad\x16\xa3\xc7\x98\x45\x20\x83\ \x24\xf7\x58\xcc\x20\x06\xc2\x08\x99\xcd\xcc\x89\xb4\x64\xd5\x8f\ \x0a\x84\x38\xc0\x19\xc9\xd2\x06\x94\x85\x1c\x21\x95\x87\x3e\xbb\ \x5c\x48\x37\x2a\x40\xca\x22\xa3\x2e\x81\x2b\x8e\x13\x69\x6a\x0c\ \x37\xdb\x36\xc9\x7d\xd9\x60\x09\xd6\xf2\xb2\xac\x5c\x75\x47\x27\ \xa2\xef\xa4\xa9\xfe\xd5\x7b\xc8\x93\x15\x1c\xe0\xee\xdf\x1c\x97\ \xdf\xa8\xaa\x3b\xd0\x70\xf1\x0d\x17\x9f\x0a\xff\x28\xc3\x41\x2e\ \x1e\xf9\x2d\xe8\x14\x40\x7a\x04\x3a\xa4\xa1\x1f\x99\x9d\x70\x9e\ \x0b\x49\x9f\x19\x33\x72\xc0\x3d\x90\x61\x76\x6d\x7f\x37\xaa\x76\ \xdc\x4e\xf1\xfe\xfe\xfa\x54\xed\x09\xda\x8d\x1e\x70\x01\xba\xf0\ \x6d\x04\xdf\x52\x6d\xf3\xd6\xf2\xe3\x1f\x56\xc8\x3b\xc6\xe3\x1e\ \xdd\x71\x9b\x5a\x6a\xc7\xd5\xdd\xfa\x93\x5b\xa6\xca\x37\x7a\x0f\ \xdc\xf5\x37\xdd\x8b\xe4\xaa\xfd\x72\x21\x2d\xb4\xce\xb6\x36\x4e\ \x97\x46\xdd\x73\x68\x47\xd9\xf7\x57\x58\x30\xab\x6f\xca\x42\xf5\ \x64\x26\x23\xd3\x5a\x11\xcc\xc6\xcb\x97\xa3\xb9\x26\x71\x1d\x00\ \x0b\x11\xcd\x4a\xc7\x1a\x48\x68\x6f\x04\x57\x12\xbb\xb4\x51\xd0\ \xe5\x82\xcc\xfd\xff\xf2\x1e\xbb\xdb\xfe\x70\x83\xf6\x3e\xbc\xde\ \xd5\x12\x6b\xf7\xb5\x93\xf4\xa8\x32\x2f\x27\x83\x81\x92\x72\x96\ \x32\xc4\x95\x87\xf3\x64\xa5\x53\x01\x2a\xc1\x50\x27\xaf\x9b\x58\ \x2e\xf5\xe2\x60\x78\x7b\x1b\x3b\xbc\xe0\xeb\xb6\xa1\x46\x51\xfd\ \xf4\xaf\xc2\xf8\x4a\x03\x30\x36\x89\xe5\x7a\x55\xae\x42\x57\x3d\ \x8c\xdd\xa9\x52\xb8\x52\x1b\x32\xfd\x1e\x87\xb6\xcf\xcd\x2a\xd2\ \x76\x0e\x42\x78\xac\x8f\x8c\xfb\x39\xf9\xc7\xf4\x87\x6b\x80\xb1\ \xa4\x03\x2b\xcf\xb2\xfb\xab\x00\x65\x7d\x1b\x2d\x9c\xfc\x82\x99\ \xf5\x7e\x31\x7b\x8c\xa9\x8b\xe3\xb1\xe6\xa7\x56\xef\xc8\xd8\x15\ \xd4\x15\xdc\xbe\x70\x64\x1a\xd6\x1a\x98\xb8\x52\xad\x97\xfd\x6f\ \xdb\x95\x1a\xcc\xa1\x4b\xa4\xdc\x1e\x15\xf1\x7a\xb1\x76\x25\xb2\ \x05\xad\xbc\xa0\x0a\xb7\xc9\xe3\x7e\x62\x82\x5f\x45\x46\xae\x2a\ \xba\x11\x69\x5f\xa5\x7d\xe5\xd2\x36\x54\xe5\xd9\x66\xb5\x2b\xf8\ \xb6\x35\x36\xb9\x0c\x30\xc8\x58\x73\x37\xe4\xc5\xf6\x02\xb2\x07\ \xbe\x2b\x60\x51\x57\x4d\xb5\x07\xeb\x66\x2a\xf8\xfc\x22\x59\x81\ \x92\x6c\xb5\xfa\x37\xf7\x47\xbf\x37\x2d\xf7\xed\x41\xa6\xe1\xda\ \x74\x5c\xef\x46\x6e\x8f\xc0\x12\x8b\xe6\x0e\x34\xef\x43\x50\xa0\ \xef\xae\x41\xaa\x53\x8a\x6b\x0d\x6e\x4d\x3c\x73\x96\xaa\xa9\xec\ \x09\x6d\x11\xef\xd7\x9a\x51\xd0\x59\x2b\x40\x77\xe6\x14\x56\xaa\ \x65\x6e\x09\x48\x03\x69\x48\x98\x4a\xb0\x70\x8d\x15\x23\xb0\x43\ \xeb\x58\xa8\xf7\x5c\x4f\x6a\xec\x19\x5c\xdc\x9a\xb6\x4b\x03\x02\ \xee\x3f\x70\x9f\x41\xd7\xfb\x23\x86\xc7\x16\xa1\x7d\x15\xf6\x98\ \xe1\x58\x1e\x14\x5d\x09\x68\x2b\x54\x30\x6e\x61\x86\xeb\x79\x07\ \x76\x70\xfd\x0e\xa8\xcc\x9b\x91\xc4\x24\x10\x9e\xd1\x5f\x4e\xae\ \xd0\x26\x28\x6b\x54\x53\x2b\x26\x51\xd0\x6c\xf7\xc0\x32\x70\x84\ \x4f\x1a\x81\x51\xb7\xa2\xc8\xd8\x12\xd2\xc8\x88\x34\xcb\x85\x7d\ \xf0\x0a\xa9\xd8\x53\xec\x4a\x9d\x5c\xf1\xa1\x7b\x38\x83\x2b\x25\ \x34\x6a\xf5\x8b\xed\xb2\xdc\x4f\xd3\x85\x3f\x45\x7a\x4c\xad\x09\ \x66\xdc\x22\xe6\x0a\xce\xc4\x0e\xec\xf5\xdc\x51\x3e\x3d\x62\xce\ \x46\x75\x2d\x79\x44\xde\x66\x3b\xb6\x6e\xe3\x16\x47\x6f\x4b\x69\ \xb3\x54\xb0\x13\x86\xeb\x62\xd6\xca\x8b\x67\x6a\xa5\xe1\x26\x16\ \xb6\xbe\x3c\x36\x25\xd1\x55\x91\x65\x3a\x80\x1a\x5a\xe6\xb3\xa2\ \x3d\xe9\xf2\x81\xa6\x40\x83\xac\xc1\xc0\xa8\xfe\xa7\x06\x24\x6d\ \x55\xd9\x42\xce\x2d\x56\xba\x36\x57\x5b\x21\x98\xcb\x78\x57\xeb\ \xfe\x82\x3f\x73\x21\x73\x4b\xda\x5c\xf7\x4f\x9d\x91\x3c\x9a\xb6\ \xe0\xc5\x18\x2d\x8d\x8c\x88\x64\x94\xe9\x80\x66\xcb\x88\x02\x33\ \x65\x7b\xdd\xe1\xc1\x75\xd4\x23\xb5\x6e\x8a\x8e\x01\x6e\x30\x44\ \x99\xf9\x16\x6c\x14\xdb\xd6\x5e\xf5\x4e\x20\xe1\x58\xf8\xc6\xb5\ \x65\xd3\xca\x95\x41\x94\xb7\xb4\x38\x36\x77\xab\xb4\xc8\x50\x24\ \x72\x67\x3f\x22\x37\x9c\xb5\xf9\x8b\x99\xd7\x10\x60\x71\x2c\x6e\ \xb3\xa2\xd5\x48\xae\xd5\x42\x4f\xbc\xfa\x2b\x8f\x75\x24\xb6\xb6\ \x06\x4a\x78\xd2\xc3\x2f\x62\x7a\xc7\x8a\x84\x4a\x5a\x83\xa8\x8e\ \x6a\x95\xce\xaa\x1c\x62\xf5\x61\x97\x01\x0c\xd1\xda\x1a\x86\xe8\ \x20\xc2\x0b\x8f\xb0\x00\x40\x7d\xc9\x6c\xf6\xff\xaa\xd9\x62\xe5\ \x7d\x73\xe9\xa4\xd5\xd5\x6b\x5c\xd7\x31\xb8\xd4\x44\xb5\xc4\xb8\ \xa6\x84\x84\xef\x94\xd3\x75\x28\x5d\x7c\x6c\xae\xad\x85\xf6\x4e\ \x4d\x3b\x7c\x66\x9d\xfe\xeb\xa0\x5c\xcc\x99\x86\xb1\xa1\xa0\xa0\ \xa9\x2d\x34\x5d\x13\x65\xf5\xdf\x1f\xd8\xfd\xc4\xae\xce\x3b\xf3\ \x25\x17\x98\x68\x8d\xb2\x32\x6a\xc4\x04\xd6\x07\x5b\xdf\xf7\x8a\ \xd7\x50\xd9\x1f\xd3\x54\x40\x9b\x58\x56\xbb\x35\x27\x48\x55\x28\ \x93\x5a\x72\xb3\xfd\xa6\xbc\x74\x9e\xeb\x8f\xe1\xed\xfd\x2f\x92\ \x76\x1d\xe7\xdd\xd3\x98\xcc\x03\x5a\xfa\xd3\xa5\xff\x60\x19\x6a\ \xe9\x01\xc0\x4a\x1f\xad\x8e\x3e\x27\x21\x65\x20\x38\xa3\xd6\xd4\ \x8c\x5c\x71\x74\xc8\x26\x8a\x58\x00\x05\xe6\xea\x2a\x4a\x3b\x06\ \xb8\x3e\x11\x2d\x5c\xdf\x16\x64\xac\xc8\xf7\xaf\x9a\x49\xb4\x2e\ \x27\xe1\xe1\x15\x4e\x52\x52\x7d\xeb\x02\xaf\xca\x0d\x07\xa4\x4a\ \x04\xed\x9c\xde\x56\x73\xdd\x57\x96\xbd\xd4\x88\xe5\xd7\xdf\x7e\ \xdc\xa5\xd9\xc9\x80\x96\x35\x38\x56\xb6\x5c\xb7\xf7\x3b\x17\xf1\ \xab\xad\x60\x5c\x22\x32\x19\x93\x1e\xde\xd9\x10\xd9\x61\xea\x89\ \x64\x86\x7b\xc5\x48\xe5\x52\x1d\xac\x0e\x29\x77\x4a\x35\xc6\x32\ \x0f\x6e\xcb\xfd\x85\x3e\xe8\x97\x77\x47\x93\xde\xfe\x3a\x51\x07\ \x5f\x44\xc7\x2d\x6b\x9d\x10\xf0\xdc\x93\x13\x04\x7c\x41\x95\x04\ \x60\x33\xd6\xa3\x21\x30\xf8\x6a\x44\x76\x4b\xfe\xde\x79\xd7\x2b\ \x2f\xbb\xbc\x8a\xb1\x82\x77\xb9\x3b\x9e\x25\x6b\xa6\xf5\x23\xce\ \x5c\x28\x93\x4a\x97\x5d\xc2\x76\x2d\xce\x0b\xb6\x91\x02\xeb\x34\ \x2a\x9d\x03\xe5\x8b\x67\x6d\x0b\x43\xd0\x6d\x6b\x19\xd7\xb8\xaf\ \x24\xa6\xd6\xbf\x49\x00\x13\x60\xd1\x72\xcd\x0c\xf4\x1b\x51\x42\ \x85\x3f\xca\x0b\x87\xd2\x70\xec\x6e\x7f\x2e\x50\x08\x97\xa7\xfb\ \xab\x7e\xb0\xb9\xdb\x6a\xc2\xf1\xe5\xed\xae\x3b\xb9\x48\x87\xd5\ \x2c\xb7\xe0\x00\xaa\x7c\x47\x38\x3b\x52\x3b\x64\x95\x12\xd5\xce\ \x4a\xf6\xf0\x6c\x71\xb6\xd1\x7a\x2d\x4f\xe2\x92\xd7\x57\x79\xec\ \xd5\xde\xad\xee\x0f\xcb\x67\xaf\x45\x63\xb4\x3d\xf3\xa9\x23\xc1\ \x0b\xf9\xb6\x5a\x9b\xca\xc9\xd9\x6c\xe8\xac\x70\xcb\xaa\xb4\x23\ \x77\xb4\xf1\xfa\xc9\x96\x68\x38\x92\x64\xa4\xc3\xb7\xa8\x6a\x45\ \xc5\x48\xcb\xee\xda\xf8\xaf\xac\x35\xb2\x58\x81\x9e\x6b\xc2\x1e\ \xd7\xd0\xfe\x4a\x39\x40\xc9\x5f\x7a\xe6\x64\x56\xc7\x25\xd5\xe2\ \x78\x69\xd4\x24\x7c\xd3\x79\xfa\x45\xd0\xde\xa2\xea\x42\x70\xd4\ \x2c\xa5\x01\xe0\x4b\x2a\xbd\x03\x43\xc8\x1b\x91\x12\x9d\xf8\x50\ \x5f\xde\x56\x68\x5f\xe2\xe5\x2b\x00\x70\x67\x8e\xf7\x34\xab\x08\ \x0f\x8d\xa0\x62\x71\xae\x78\xb3\xe3\xf6\xdf\x5c\xf7\x52\xa2\xa1\ \x63\x6c\xc4\xaa\x36\x28\x23\xb6\x9f\xa7\xaf\xa5\x2b\x09\x70\xcd\ \x73\x52\x48\xa5\xf2\xab\x59\x5e\xad\xe5\x9d\xb9\xc0\xa3\x9e\x97\ \xd6\xae\x83\x09\x0a\xb0\x8b\xbd\x70\x2c\x42\x71\xb5\xed\x85\x35\ \xd5\x90\xaa\x53\xaa\x94\xc1\x8a\x27\xe2\x9a\xfd\x15\x20\x83\x2d\ \x0d\x90\xa5\xb1\x70\xcf\xf5\x02\xd8\x9e\xa7\xb5\x0b\xa0\x17\xcd\ \x2b\x03\xb2\x6e\xaa\x62\x42\xe4\x8a\xa0\xc3\xe6\xc0\x47\x76\x51\ \xd0\x1a\xd6\xf2\x63\x03\x51\xe1\x6f\xe1\x49\x38\x17\x4f\x42\xcc\ \x40\x30\x65\xb2\x39\xcb\xa0\x85\xd9\xde\xd8\xdc\x1f\x54\x07\x50\ \x56\x62\xcd\xde\x0c\x5d\x91\xdd\xbc\x03\x9a\x2b\x63\x2e\xaf\xb0\ \x0f\x6f\x88\x1f\x04\xe6\xf4\xb8\x47\xad\x17\xc4\x11\x11\xc5\x63\ \x20\x16\xeb\x18\xbe\x7e\x2c\x2b\xef\x30\xbe\xdd\x80\x2c\x0e\x3f\ \xb2\x01\x85\x3d\x5e\x5a\xae\xe2\xcd\xca\x29\xbd\xcc\xb6\x0b\x30\ \xbf\xce\xff\xbc\xce\xff\xfd\x2d\x37\x77\x5b\xb6\xe4\x06\xed\xdb\ \x4c\x28\x7b\xf6\x71\x69\xb1\x87\x69\x9e\xcd\x34\xde\x83\xb1\xb1\ \xd2\x5a\x90\x8a\x32\x9d\xf3\x3e\xf2\x73\x77\x77\x99\x75\x41\xa9\ \x4e\xfe\x44\x7a\x61\xeb\x55\xb8\x87\xb5\xa2\xae\x85\x95\xa9\x34\ \x63\x81\x2d\xa6\xe6\xe6\x05\x22\x22\x55\xf8\xbf\xaa\x2b\x36\x78\ \x62\x9d\xbb\x59\x9b\xbb\xb6\xef\x2c\x83\x5d\x1f\x33\xf0\x74\xb6\ \xc9\xb1\xcb\xb3\xba\x2e\x6b\xaa\x51\x85\x8f\xb5\x51\xb4\x27\xea\ \x57\x3d\xb0\x3a\x10\x26\x3c\x26\x77\xfb\x8e\x25\x18\x80\xf5\x31\ \xdc\x43\xfb\x9a\x14\xaf\xc8\x00\x0e\x31\x55\x88\xb3\x42\x62\x2d\ \x3c\xc1\x41\x23\x98\x53\x3a\x24\x5a\x0d\xba\x96\x3a\x2e\x45\x88\ \x30\x2c\x72\x50\xeb\x71\xb6\x6a\xb0\xb3\x38\xa2\x78\xa3\xca\x8c\ \x68\xd6\x40\x16\x5f\xb5\x50\xae\xb1\x48\xfc\xf4\x5d\x7e\xb6\x19\ \x9c\x70\xb9\x27\x33\x98\x22\x1c\x81\xf4\x64\xa6\x71\x20\xe2\x0c\ \x57\x1c\x24\xa6\x9f\x28\x96\x67\x71\xa1\x72\xd3\x00\x4b\x70\xd3\ \xb6\xa9\x48\x8f\x82\x2a\xa5\xea\x71\x34\x31\x12\x51\x5a\xc1\x06\ \x5e\x88\xa0\xfb\xdc\x59\x6b\x7b\x3d\x1a\xdd\x20\x57\x4c\x52\xf4\ \x38\xbd\x3c\x63\xf0\x9a\x39\x66\xd3\x41\x16\x3f\x8a\x37\x5a\xd8\ \x25\x3f\xaf\x5a\x3f\x6e\xf3\x52\xf5\xfb\xa2\x4e\x7f\xc9\xcc\xe5\ \xbc\xbd\x66\x95\xb9\xb4\x0c\x9b\x02\xbf\x42\xe7\xcb\x7b\x2f\x8f\ \x38\x60\x19\x2b\xa1\x68\x23\x06\xbc\x5b\xd9\xe8\x78\x83\x3a\x18\ \xfb\x7d\x2d\x59\x73\xbf\x36\x2c\x2f\x7f\xf6\x8b\x9a\x37\xab\xb0\ \xcc\xb4\xf4\x11\x59\x57\x26\xd2\x7d\xf6\x9c\x0a\x5d\xa8\x04\x3b\ \x72\x68\x09\x3a\x9a\xea\x5b\x98\xea\x7a\x31\x23\x3c\xa2\x04\xa0\ \x15\x34\x10\xcb\xbb\xda\x99\x9f\xb7\xe0\x9f\x62\x6a\x76\x9b\xba\ \xa8\x23\x75\xe4\x26\xea\x35\x46\x43\x21\xeb\x95\x5b\xed\x5d\x66\ \x36\x96\xba\xc2\xf4\xb4\xde\xd7\xbe\xa6\xaa\xaa\x49\xdf\x4e\x8f\ \x48\xaf\x90\xa6\x0c\x66\x2a\x96\x12\x94\xb4\x52\x4c\x22\x1a\x5b\ \x57\xff\x4c\xa8\x48\x7a\xbd\x3b\x48\x06\x52\x42\x32\xd2\x86\x0d\ \x12\x9e\x04\xc6\x10\x83\x32\x09\x62\x24\x59\xd7\x98\x72\x92\xa6\ \x0b\xbf\x96\x41\x26\x45\xa3\x55\x3e\xd9\xb2\xc0\x37\xbf\xb0\xc6\ \x02\x02\x03\xbe\x20\x7d\x95\xca\x96\x01\x78\xf7\x27\xf1\xc0\x38\ \x6d\x46\x94\xcd\x9f\x85\x46\x64\xc2\x2a\x06\x35\x53\x01\x55\x92\ \xe6\x55\x15\x5f\x11\x06\x65\x38\x45\x6b\x79\x22\xbc\x85\x3f\x3d\ \x18\x50\xc9\xe1\x17\xee\x29\xef\xce\xfe\x7e\xe7\xcb\x2b\x5d\xff\ \x3b\x3c\xb6\x17\x38\xdd\x93\x4c\x29\x12\x50\x5b\xe5\x32\x5c\xb0\ \x9a\x59\xcc\x88\x44\xac\x00\xc6\x5d\x97\xb2\xf2\x3c\x84\x75\x0f\ \x6c\x7e\xcb\xe2\xe0\x65\xe4\x6d\xa0\x5d\xb3\x87\x76\x44\x79\x33\ \xd0\x0c\x40\x24\x73\x46\xe7\x42\x88\x94\x79\xb0\x49\x0b\x92\x11\ \x1e\xe1\xd1\x0d\xb1\x7b\xa5\x63\x66\x07\x34\xd4\x89\x8c\x4a\x87\ \x2e\x3d\x57\xcb\x7f\x46\xe7\x3e\x7b\xb0\x33\x0c\x72\xeb\xf9\xcf\ \xe7\x33\x32\x03\x69\x68\xff\x70\xc7\x45\x24\x24\x33\x99\x99\x15\ \x2b\x23\x7b\xa9\x9a\xdf\xa8\x33\xdb\xe8\x13\x1b\x92\xda\x77\x5b\ \x22\xc3\x67\xf6\x30\xc8\x77\xd8\xe2\xae\xa7\xa2\x00\x2c\x5b\x55\ \xd2\x9f\x60\x9b\xc2\xd8\x3c\xb3\xe8\x28\xb5\x2e\x72\x9b\x8d\xbb\ \xcc\x3c\x0b\xbc\xbd\x15\x84\x6b\x50\xb6\xae\x77\xee\xae\x71\xad\ \x20\x22\x33\x58\x2f\x89\xf6\x8c\xab\x7e\xd9\x24\x39\xe3\xcd\x30\ \x08\xcc\x4c\x4b\x09\x87\xec\x90\x9c\x3d\x23\x06\x4b\x9a\x0d\x46\ \xe2\xe5\x71\x44\xcc\xe0\x31\x6c\x68\xf5\x51\x15\x68\xda\xa7\x15\ \x52\x3b\x6e\x6a\x91\x9d\xfa\x76\xec\xd7\x26\xaf\xed\x53\x85\xd6\ \x06\x68\x0a\x9f\x11\x3d\x1a\x4d\xf7\x49\x31\x67\xd2\x25\xce\xf0\ \x15\x98\xcc\x63\xe8\xcb\x97\xa7\x4c\xc7\x41\x0a\xf0\x26\x20\x5f\ \xc3\xfd\x8b\x5d\x53\x69\x54\xfb\x77\xdb\xa1\x52\x6a\x67\x4b\x7f\ \x29\x8b\x0a\x8b\x7d\x78\x17\x10\x27\x33\xbd\x66\x63\xd2\x30\x2a\ \x89\xd3\xdd\xdd\x29\x23\xe8\xd3\x2f\xd1\x4d\xed\x94\xb4\x24\xa1\ \x15\x85\xb4\xfc\xe6\x09\x2f\x96\x7f\x26\x3b\xe6\x6d\xad\x09\x9a\ \x15\xb7\xd0\xca\x45\xd7\xaf\x5a\x76\x85\x2b\x47\x0d\x21\x07\x8b\ \xb1\xaa\xdd\x10\x09\x06\x20\xbc\x75\x10\xa9\x8c\xac\x21\x29\x22\ \x61\xc3\x90\x39\xe7\xba\x36\xa9\x73\xce\x35\x9f\x5d\x60\x9a\x25\ \xe2\xa9\x07\x7e\xe8\xab\xad\x4a\x41\x89\xb4\x39\x01\x2b\x83\x2a\ \x0a\xbd\xa7\xc6\x50\x0f\x00\x70\x78\x47\x20\xb1\x11\xfd\xf5\xd5\ \xc7\x46\xb3\xc6\x72\xbf\xf7\x63\x59\x85\x4d\x02\x25\x94\x96\x95\ \x49\x8e\x9b\x5a\x7f\xad\x3e\xb7\x4a\xa0\xb0\x28\xc1\xcb\x64\xba\ \xd8\x8f\x45\x29\xd2\x72\xa4\xac\x72\xb6\x06\x29\xbd\x8c\xb1\xe5\ \xb2\xdd\xc9\xb3\x58\x5e\x92\x15\x93\xa9\x64\xd9\x30\x22\x62\x82\ \x28\xd4\xb3\x65\xd5\x7c\x68\xb0\x86\xad\xd5\x97\x92\xe2\xe0\x90\ \x44\x55\xe6\x1f\x92\xc8\xa1\x40\x42\x69\x62\x2a\x26\x10\xa7\xbf\ \xbe\x3c\x52\x1e\x9a\x18\x46\x8e\xb2\xa4\xb8\xa5\x18\x26\x25\xe9\ \x8c\x9b\xca\x11\x69\x50\xb6\xe3\x29\xe8\x1e\xdb\x72\x6f\x60\x7a\ \x46\x74\x2c\x1b\xb2\x72\x68\x22\xa0\xc1\x88\xf0\x40\x69\x94\x82\ \x40\x9e\x33\x9e\xcf\x27\xcd\xc6\xfb\xc7\xf4\x38\xbf\x9c\x67\xb8\ \x47\x93\x09\x3c\xc6\x8c\x88\x60\x49\x06\x7a\xc0\x1c\x89\x32\x11\ \x46\x66\x32\xc2\x33\x90\x67\xf4\x43\x99\xd7\x0e\xae\xfe\xb4\x3e\ \xe1\x5d\x3e\x34\xc5\xa3\x9f\xf5\x84\xfb\xf9\xcb\xcf\xbf\xbc\xbe\ \xbe\xbc\xbe\xfb\x80\x94\x4f\x9f\xf3\x34\x33\x54\x3c\x6d\xe3\x78\ \xce\x88\x10\x0d\xcc\xd3\x27\x96\x48\xac\xc2\x45\xca\x71\x10\xd1\ \xe7\xf5\xde\xff\xac\x5d\x6a\x46\xba\x1a\x82\xd6\x61\x2d\x75\x47\ \x45\x64\x85\xf6\x4d\x3d\xc8\x85\x43\x00\x00\x20\x00\x49\x44\x41\ \x54\xf7\x70\xac\xa7\x2b\x90\xf4\x3a\x88\x93\x99\x79\xce\x67\x9d\ \xb1\xd3\xa7\x87\xbf\xbc\x3e\xfe\xdb\x7f\xff\xaf\x7f\xfc\xe3\x1f\ \xbc\xf2\x50\x23\xe6\xdb\x73\xcb\x44\x08\xa6\x87\x4a\xfc\x8c\x96\ \x98\x8d\x9d\x06\xb5\x7c\x97\xb6\xa5\xa6\xf5\xdb\x33\xc2\x23\x6d\ \x8c\x88\x78\xbe\x3d\x3f\x7f\xfe\xb2\xa4\x87\xbd\x24\x5d\xa2\xd4\ \x58\x4b\x9b\x58\x32\xef\xb0\x81\xb6\x7c\xe8\xb2\xa0\xad\xac\xa7\ \xba\x46\xfb\x27\xb9\x02\xb4\x0a\x51\x5b\xbb\xf0\xaa\x07\x36\x4d\ \xbd\x85\x34\x1d\x1b\xbf\x1c\x68\xf5\x45\xec\x15\xa2\xac\x87\xfa\ \x34\xc6\x19\x49\xa5\xc9\x6a\x76\x56\xf4\xe4\xda\x68\x76\x7c\x79\ \x5a\xcf\xae\x55\x61\x6f\xed\x48\x95\xba\xfa\x30\x69\x92\x4f\xd5\ \x0c\x4a\xc3\xf2\x64\x4a\x38\x0c\x46\x4d\xa5\x0f\x4d\x91\x33\x48\ \x0e\xe1\x30\x46\xfa\x97\xcf\xbf\xfd\xf6\xeb\x6f\xff\xf2\x2f\xff\ \xdb\x87\xf7\x07\x38\x35\x62\xc8\x0d\x2a\xdd\x4d\x85\x10\xd6\xf3\ \xdf\xc2\xaa\x95\x3d\x12\x08\x78\x33\x10\x96\x1d\x15\xc1\x99\x91\ \xf5\xc5\x4b\x16\x89\x08\x46\xc0\xdd\xe7\xe9\xa7\x47\xdd\xb2\xcf\ \xf3\x39\x3d\x12\xfa\xdb\xdf\x7e\xf9\xb7\x7f\xfb\xf7\x1f\x7f\xfa\ \xf1\xe5\xf5\x35\x33\x67\xc4\x79\x3e\xc3\xfd\x8c\xf4\xd0\x73\xe6\ \x9c\x19\xe1\x73\xd6\xed\x96\xe7\x8c\x59\xb1\x86\xe9\x9e\x11\x8e\ \x58\xd3\x99\xc8\xf0\x02\xb1\x46\x99\x0e\x3c\x56\xf8\x5a\x20\x7d\ \x9e\xfd\xf5\x21\x29\xd4\x93\x79\xbe\xbd\xfd\xf9\xdf\xfe\xfd\xfd\ \x77\xdf\xbd\xff\xf0\xa1\x16\xc6\xf3\x9c\xd5\xa7\x2f\x31\x40\x59\ \x31\x9c\x42\x64\xce\x39\x5b\x1e\x86\xa5\x32\xe8\x0d\x63\x05\xfa\ \x54\x62\x34\x16\x39\x37\xa2\xa2\x0d\x3c\x2b\xdd\xa7\xdb\xf7\x6f\ \x46\x0a\xff\x3f\xff\xda\xd2\x9e\x04\xf0\xee\xc3\xbb\x3f\xfc\xe1\ \xc7\x9f\x7e\xfc\x61\x9e\x33\x62\xe6\xf4\xf9\x3c\x6b\xca\xa7\xb6\ \xc4\xdf\x4c\x62\x02\xd0\x2c\x01\x2e\x92\x60\xf7\xf7\xf5\x2b\xe6\ \x79\x9e\xcf\x27\x3c\x44\xe6\x39\x33\xf3\x7f\xfe\xeb\xff\xf5\xaf\ \xff\xfa\x3f\x23\x42\x1a\x1d\x02\xb4\xf0\x94\x1b\x58\x8c\x4d\xb8\ \x25\xcc\xda\x7e\xbb\xb0\x37\xbc\xf1\xa0\x4d\x8d\x80\x2c\x0a\xe6\ \xde\xf9\xed\xdb\xa6\x24\x01\x59\x29\x4b\x7b\x99\x55\x8c\xad\xba\ \x15\x57\x62\xf8\xca\x5d\x13\x59\xaf\x0d\x80\x84\xb5\x25\x3e\x37\ \x2e\x10\x7b\xd8\xb2\x2a\xf2\xac\xb0\xef\x3a\x01\xaa\x09\xa9\x66\ \x89\xad\x78\x6a\xdf\x0f\xbb\x8a\x58\xb9\x24\xaa\x14\xe8\x1e\x87\ \x6b\xbb\x00\xcc\x86\x04\xfc\xed\x6f\x7f\xfd\xe5\xe7\x9f\xff\xfb\ \x7f\xff\xdf\x3f\x7c\xf7\xc8\x3c\x77\x0c\x70\x6b\x69\xf6\xcc\x3d\ \xf2\xfa\x61\x97\x36\x3e\x6b\xaa\xdf\x09\xbf\xe9\xbe\x78\x75\x9b\ \x0a\x9e\xc8\x28\x01\x78\x46\xc4\x9c\x1e\x1e\x10\xcf\xe7\xe9\x99\ \x20\x7f\xfd\xfb\x6f\x3f\xff\xf2\xeb\xc7\x8f\x1f\x8f\x63\x38\x22\ \x3b\xe1\x93\x33\x3c\x32\xe7\xac\x2b\x25\xbb\x24\x8d\x42\x49\x16\ \xba\xac\x7e\xab\x36\x81\xe1\x4a\xa2\x5d\x89\xb9\xb1\x90\xa4\xb1\ \xf6\x28\xbd\x4f\x8c\x9a\x68\x60\xa5\x0b\xfe\xfa\xcb\x27\xef\xe7\ \xb2\x49\xf0\x79\x05\xe3\xac\x9e\xb1\xb7\x81\xb9\xe4\x84\xc9\xeb\ \x14\x5c\x69\x93\x3c\x44\x8b\x85\x6c\x26\x61\x35\x66\x3c\xc8\x43\ \xd8\xe6\xa8\x2e\x7b\xb4\x09\xd1\xb7\xb9\x71\x43\x6a\x2f\xe3\x7d\ \x45\xbc\x0b\x1e\xfe\xfb\xe7\xbf\x8f\xa1\x38\x7d\x3e\xdf\x3c\x3c\ \x23\xe0\x3e\xdf\xce\xee\xee\x0a\xce\x98\x14\x53\x80\x83\xb5\x17\ \xa9\xd7\x26\x44\x15\x2a\x4a\x2a\x9d\x12\x12\x98\xe7\x9c\xe7\x54\ \x96\xb3\x25\xcf\x39\x7f\xfb\xf5\xb7\x9f\xff\xfa\x77\x90\x63\x1c\ \xab\x43\x2b\xeb\xdc\x96\x76\xb7\xc9\x76\x49\x1c\x7c\xc3\x08\xab\ \x2b\x2f\x29\xdd\xbe\xd8\x3b\x89\xe8\x0a\xbe\xe2\x26\x45\xed\xbc\ \xae\xb5\x73\xda\x10\x0e\x44\x84\xf5\x04\x60\x29\xe6\x36\xf7\x05\ \x14\x6c\x65\xc2\x59\x89\x20\x9b\x8c\x0e\x5b\x27\x4c\x94\x64\x75\ \x47\x26\x2e\x03\x61\x33\xd2\x73\xf1\x37\xd0\xa7\x48\x2c\xc1\x61\ \xb7\x1c\x35\x52\xbc\xc9\x9b\x5b\xa4\x43\x19\x32\xfa\xed\x02\xff\ \xed\x7f\xfd\x1f\x40\x94\x38\x74\xd9\x54\xb9\x1d\xf7\xb9\x60\x9f\ \x5c\x74\xc3\xde\xe9\x75\xd3\xb0\x22\x43\x56\xbe\x49\x52\xb2\x52\ \xac\x5b\x42\x51\x3e\xcf\x4e\xaf\x09\x33\x8b\x74\xef\x05\xa8\x99\ \x7d\xf8\xf9\x3f\x9e\x89\xcf\xcb\x0b\xde\x1e\x8d\x15\x44\xbd\x9f\ \xcc\x2a\x75\xad\x05\x0f\xa5\xa9\xbb\xa9\xf1\xf2\x3a\xd2\xd6\x16\ \xba\x53\x09\xa2\x53\xae\x32\x3d\x42\x2a\x4a\x5b\xd3\xa8\x0e\x1b\ \x62\x47\xbe\xa8\x46\x86\xa5\x93\xc8\x30\xeb\x84\xdb\x5a\x19\xf7\ \xbd\x2a\xdb\x62\x8e\x6a\x74\xf7\xe0\xa5\x74\xb4\x5e\xf5\x73\x89\ \xc9\x4a\x6e\x54\xdd\xe2\x1e\x15\xdf\x21\xda\x65\xad\xea\xe5\x12\ \x2f\x36\xe2\x02\x6e\xf5\xc8\x81\x39\xe7\xf3\xfc\xf3\xf3\x3c\xbf\ \xcc\xe9\x7d\xa5\x51\x94\x15\x93\xd3\x2a\x87\x42\xa4\x8c\xad\xef\ \xda\xb0\xdc\x8b\x68\xd0\x53\x60\xb1\x1b\x08\x9f\x67\x4e\x4f\x61\ \x26\x91\x98\x73\x7a\x38\xcd\x3e\x7e\xfc\xe1\xe3\xc7\xef\x33\x25\ \xaa\x26\x1c\xc2\x7a\xc6\x12\x5f\x9b\xc6\xa6\x2e\x5f\xe7\x76\x28\ \x40\xe2\x6c\x9f\x1d\x59\x91\xd5\x09\xa9\x28\xba\x19\x7b\x80\x9e\ \xcc\x6b\x25\xd7\xc0\xe4\x0c\x8f\x4e\x04\x69\x01\x79\xef\xc8\xd6\ \xb1\x63\x1a\x00\x13\x66\x3a\xa4\xa3\x72\xf2\x6a\xdb\x6d\x59\x4d\ \x97\x47\xce\x8c\xb9\x1e\xc9\xb5\xa3\xee\x14\x94\xfe\x7d\x2b\x74\ \xce\xe3\xac\x47\x2d\x16\x8d\x36\x93\xc3\x4a\x24\x85\xba\xc1\x3b\ \x11\x80\x69\x9d\x80\x49\x5b\x1e\x8b\x46\x70\x88\x95\xd0\x5d\xcf\ \x07\x2f\x03\xe5\x3a\x08\xbb\x05\x8b\x9b\x6a\x56\x8b\xf9\x52\x2b\ \x28\x93\x3d\xec\x78\x19\xe3\x55\xe3\x20\x74\xce\xe9\xf3\xcd\xcf\ \xb7\x39\x9f\xc8\xd9\xfd\x74\xc6\x6e\xf2\x0b\x3f\x94\xad\x5e\x27\ \x8a\x03\x16\x29\x5a\x62\x2d\x05\xb1\xad\x8d\x42\x71\x26\x17\x7b\ \x33\x57\x02\x37\xb5\xa8\x7c\xb8\xab\x92\x83\x3b\xa3\xb3\xce\xe4\ \xe2\x52\x07\x91\x18\x1a\x8f\xf1\xb0\xf6\xb6\x2a\x61\x0d\xdb\x4c\ \x27\x15\x2c\xad\xd9\xe5\x7f\xbe\x09\xac\x62\x07\xee\xae\x40\xed\ \x45\x37\xc8\x66\xf3\x96\xfa\x32\x19\xce\xa8\xd8\x8b\xe2\xff\xe6\ \x05\xd1\xad\x0d\x71\x2c\x75\xe6\x25\x27\x59\x16\x8e\x68\x74\x06\ \x83\x18\xe1\xd7\x3b\x50\x87\xe9\x64\x3c\x7d\xbe\x7b\xbc\x84\x2b\ \x65\x10\x33\x0a\x7d\xd7\x67\xd8\xc8\xda\x6b\x2e\x21\xf0\xa5\x41\ \xce\xd8\x73\x9c\x0e\xc1\xf3\x38\x67\x90\x7c\xff\xfe\xc3\xc7\x8f\ \xdf\x87\x63\x98\x65\x5c\x6b\xed\x3b\x3c\xbe\x1f\x85\xba\x17\x97\ \x29\xb5\xbd\x5d\x6b\xb4\x8f\xce\x5b\xc6\x51\x50\xcb\xda\x45\xc7\ \x92\x88\xb6\xed\xa3\xdc\x8e\xfb\x7e\x65\xb2\x9c\x4f\xad\x3f\x51\ \x5b\xeb\xb7\xea\x5a\x43\x83\x1c\xd4\x31\xec\x90\x3d\x00\x1b\xc3\ \x22\x93\x29\x62\x08\x99\xf0\x8c\x19\xf1\x44\x55\xc9\xb1\x01\x10\ \xb9\xc8\x40\x35\x66\xce\x44\x78\x9c\x99\x01\x45\x33\xe6\x08\x42\ \x63\x58\x65\x9e\x0d\x0d\x23\x4d\x15\xd4\xce\x43\x56\xbf\x6a\x68\ \x05\xdf\xc8\xcc\x6a\x74\x4d\x33\x1a\x2d\x91\x44\x14\xcd\x53\x97\ \x12\x3c\x75\xe5\x2a\x70\x03\x48\xfa\x8c\x4c\xc1\x0e\xf0\xd0\x78\ \x31\x7b\x27\x3b\xca\x91\xf2\x7c\x7e\x7e\x3e\x3f\xcf\xf3\x33\xc3\ \xe7\x7c\x06\x3c\x81\x39\xcf\x08\xcf\xba\x28\x23\xbd\x32\xc1\x3c\ \x23\xc3\xd7\xfa\xba\x9b\xe6\x04\xb2\xd2\x5f\x56\x30\xf4\x1a\x1b\ \x45\xb7\xa9\x5e\xe8\xcf\xae\xea\xd6\x88\xad\xc7\x38\xed\xf7\x4c\ \x40\x01\xf7\xce\x4b\x13\x82\x83\x63\x68\x58\xaf\x11\x5a\x18\x5c\ \x17\x24\x92\x83\x70\x5e\x50\x64\x80\x91\xbe\x64\xb9\xeb\x88\x2d\ \x53\x03\x3b\x5b\x72\x07\x89\xdf\x2b\x9a\x3e\xdc\x7a\xa8\xb2\xd8\ \xc4\xeb\xb5\x49\xde\x98\xee\x2b\x01\x67\xe1\x70\x72\x25\x8f\xf6\ \x34\xd1\x67\xcc\xe9\x50\xe4\x72\x28\xee\x31\x44\xed\xf7\x19\xb1\ \xc4\x51\x09\x61\x78\x03\x96\xda\x7b\xb5\x76\x98\x2b\x86\xae\x8b\ \x03\x4e\xcc\xcd\x79\xa9\x76\xf1\x9a\x53\xf2\xda\x0a\x57\xe0\x51\ \x13\x43\xcd\xba\xd3\x5d\x20\xbe\x5e\xc7\xb2\x93\xe3\x7a\xf4\x5a\ \x25\x2b\xcd\xca\x4f\xaf\x9e\xbe\x96\x24\x6b\xb5\xfb\x0b\xdf\xd8\ \xc2\x14\xe1\x26\xea\x5a\xbb\x50\x0a\x4c\x17\xd3\xa4\x43\x3a\xcc\ \x1e\xc2\x61\x1a\x7d\xff\x64\xed\x48\x2a\x2e\x74\x26\x1f\x19\x33\ \x2b\x4d\x6a\xc3\x26\x2e\x66\x4d\x85\x91\x45\xc4\x8c\x74\x30\x2a\ \x90\xbe\x5e\xe8\x51\xa9\x73\xd4\xa8\xe5\x02\x63\x18\xcd\xc6\xe8\ \x24\x81\xac\xce\x7f\x14\x0d\x6a\x27\x76\xb0\x1c\x00\x30\xa2\xd0\ \xcc\xd8\xa3\xcb\xf6\x4a\x04\xaf\x30\xbd\x5a\x2f\x96\xf0\x44\xd0\ \x41\x1c\xb4\x57\x1b\x0f\x68\x64\x42\x03\x8c\x89\x79\xf6\x3f\x47\ \x57\x82\xea\xec\x21\x78\x4e\x38\xb2\x92\x8a\x3c\x82\x42\xb8\xd2\ \xa3\x3e\x37\xf5\x8d\xb3\x10\x22\xe9\x6b\xef\xd1\xd2\x90\x0a\xbf\ \x89\x7d\x9f\xd4\x98\x07\x77\x51\x0e\x13\x0d\x44\x5f\x59\x26\xb9\ \x0a\xbd\xdc\xf8\xaf\xac\x98\xe5\xdc\x0e\xf3\x1a\xbb\xad\xe0\xce\ \x26\x8d\x21\x51\x16\xa0\x45\x6c\x6b\xe1\x51\x6c\xae\xe7\x45\x0f\ \xad\x9a\x76\xa9\x04\x10\x25\xc6\xd9\x02\xde\xaf\x8c\x2d\xdb\x8c\ \x70\xb1\x61\x4a\xb1\x83\x9e\x4a\xb2\x50\xeb\x1e\xce\xd5\x61\x47\ \x1b\x99\x16\xc2\xec\x2b\x6c\xea\x72\x77\xe6\x9e\xde\x27\x77\xa6\ \x8d\xad\xc7\xc7\x23\x02\xac\x21\x4b\x6b\xf5\x5a\xcc\x6b\x8b\xc0\ \xcd\x1b\x6e\xf3\x06\x35\xa9\x86\x67\x55\x6e\x65\x08\x5c\x8d\x46\ \x6d\x57\x55\x38\xef\x32\x31\xf3\xeb\x70\xa4\x12\xc3\xed\x38\x42\ \x74\x40\x97\x58\x39\xab\x1a\x2b\x09\xa5\x1d\x23\xb5\xbe\x17\x44\ \x0c\x83\x29\x0f\xc5\x30\x1e\x86\xc1\xb0\x46\x37\xaf\x00\x68\xa5\ \xaa\xc8\x4a\x64\x3f\x2f\xd8\x09\x26\x55\xb8\xd7\xcb\xe9\xc1\x8c\ \xed\xcb\x82\x25\xa1\x84\x85\x4c\xa6\x4a\x37\x43\x36\xd8\xc9\x01\ \xa4\xac\x1c\x98\x94\x55\xd2\x6e\xb4\x14\x41\x0d\xad\x32\x71\xd8\ \xb0\x64\x3a\x50\x20\xcd\x11\xec\x88\x38\xac\xd1\xe4\x7a\x36\xb2\ \x0b\xc6\x92\x28\xc3\x6b\xfa\xdc\xbd\x8e\x85\x06\x44\x8c\x39\x4f\ \xb5\x27\x27\x04\x0c\x59\x44\x05\x05\xaf\x7a\x27\x5b\x86\x93\x1e\ \x33\x7c\x9d\x20\x3a\xbd\x49\xe5\xde\x0f\x99\x89\x82\xa2\x52\x0a\ \x38\x1d\xd9\x13\x16\x52\x15\x02\xd6\xd3\xde\x2b\x8e\x80\xea\xf4\ \xf2\x52\xc3\x49\x94\x69\x1c\x3a\xea\xda\x06\x52\x55\xfa\xf1\xa2\ \x33\x73\x05\x46\x74\x95\x20\x86\xfb\xed\x78\xbd\xac\x9a\x05\xd5\ \x41\xf7\x5c\xb9\x14\x29\x65\x7c\x37\xc7\x8a\xbd\xe2\x92\xe8\x54\ \xd5\x89\x0b\x32\xfe\x0d\xfc\xf6\x02\x7d\x6c\x41\xde\x36\x3f\xf7\ \x7e\xaa\xf8\xb8\x79\xf3\x5b\xb1\x75\x23\x0d\x7b\xe0\x68\xea\xae\ \x2c\x63\x99\x1f\x49\x24\xdc\xa3\x46\x38\x43\x96\x0b\x4a\x5d\x23\ \x3f\xf4\x2f\x70\x75\xb6\xb3\xee\xdc\xfe\xbe\x75\xcc\x3a\x72\xe2\ \xa6\xd7\x0c\xbf\x24\x6c\xea\xfd\x4f\x5a\x9d\xbc\x17\x24\xa8\x04\ \x53\x8d\x6c\xc6\x42\x5a\x36\x19\xd3\x93\xd2\xd2\x3b\x80\xb0\xbe\ \x88\x3a\x89\x59\xb2\x01\x98\x58\x85\xf5\x90\x0c\x34\xc4\xba\xa5\ \x3a\xf9\x27\x10\x89\xb4\xe4\x8c\xf4\xec\x85\xe6\x8a\xa0\x01\xc1\ \xb9\x38\x50\x94\x31\x62\x7a\xa6\x30\x6a\x43\x95\xd6\x72\xd1\x82\ \x38\x19\x41\x7a\x41\x36\x6b\xaf\x65\x63\xb0\x35\xb5\xbd\x14\xac\ \xb7\x3a\x72\x21\x52\xa3\xf1\x78\xb5\xff\x41\xc5\xe2\x41\x65\xf5\ \x04\x3a\xf4\xb4\x9d\xf9\x69\x60\xb5\x51\x06\x98\xe9\x01\x1d\xe1\ \x9e\x9e\xe4\x00\x0c\x90\x86\x61\x36\x17\xb6\x47\x1c\x51\xab\x4d\ \xd9\xe8\x2d\xff\xcc\x88\x73\x42\x1c\x34\xcf\x88\x60\x46\x8c\xc1\ \x5a\x7d\xe4\xa5\x25\x2b\xb7\xb3\x02\x51\x15\x30\xd4\x90\xe5\x2c\ \xf8\x82\x5d\xda\xf0\x6d\x71\x2f\x89\x3f\x0a\x98\xa3\x61\x18\xf5\ \x58\x67\xa6\xd2\x1b\x39\xd2\xf1\xe2\x58\x20\x71\x1a\x09\xb5\x17\ \x40\x62\x20\x1b\x20\xb8\x66\x18\x75\xd5\x35\x8f\x2b\x13\x95\xce\ \x1d\xb1\xf1\x5e\x25\x3f\x52\xcd\xba\xd8\x2a\xe6\xbe\xc9\x02\xdf\ \xf0\x75\xaf\xae\xfb\x52\x40\xec\x7c\x98\x65\x62\xc6\xcd\x4a\x76\ \x49\x83\x3b\x65\x6b\xbf\x7b\x63\xf9\xa1\xa2\x79\xe1\x81\x88\xb4\ \x44\x6d\x72\x70\x05\x0a\xf6\xb2\xab\x22\x90\x7a\xd9\x5f\x7d\xbc\ \xee\x96\x88\x6c\xba\xd0\xed\x2d\xaf\x47\xeb\x36\xe6\x46\xb9\x8c\ \x11\x1d\xc4\x4c\x82\x21\xee\x23\xc2\xd3\xb4\x92\xe0\xd2\xcb\x65\ \xd7\x03\xc6\x83\x3b\x3e\x45\x12\x18\xcc\x85\xfe\xec\x71\x78\x11\ \x02\x90\xb4\x7a\xc1\x22\x97\x0c\x2d\x49\xd9\x30\x92\x03\xf2\x70\ \x47\x66\xc1\x76\xb3\x37\x59\x1d\x59\x51\x32\xbf\x4c\x2f\xf6\xcc\ \x6a\xdb\x22\x99\xc1\x30\x5a\x8f\x4d\x33\x22\x2b\x0b\x7a\xac\xd7\ \xd6\x72\x2b\xdf\x0b\xf4\x5c\xfc\x2c\xaa\xa1\x35\xfb\xdb\x66\xfd\ \xd9\x12\x85\x1b\xa6\x5d\x51\xbc\x60\x2a\x76\xce\x59\xa6\x11\x06\ \x1c\x80\xc1\x46\x2b\x7d\xd5\x1b\x31\xf9\xe1\xfe\x14\x1f\x91\x5e\ \x09\x54\xc8\x00\x3b\x45\x0d\x17\x72\x95\x4c\xc1\xa4\x1e\x60\x57\ \x09\x3c\x11\x0a\x14\xa9\xa3\xc9\x27\x25\x4e\xc9\x55\x42\x17\x0b\ \xfc\x1a\xf1\x7c\xb5\xf7\xc0\xd6\x08\x9b\x59\x82\x19\x69\x30\xd3\ \x90\x06\xcb\x76\x9f\x1e\x7d\x1c\xd1\xab\x78\x4c\xc6\x9e\x3a\xa2\ \xa4\x1e\x8b\xd5\x81\x4d\x3c\x96\xd8\x97\xa5\x56\xf0\x54\x7f\x83\ \xad\xa4\xa8\x93\x3c\x48\x98\x4c\xc1\x99\xbe\x6a\xbb\x0a\x40\x12\ \x2e\x95\xfc\x45\xb9\x30\x59\x13\xaf\xc4\x9c\x51\x83\x28\x80\xe1\ \x33\xc3\x3b\x2b\xc8\xec\xcd\xcf\xf9\x3c\x45\x39\x56\xd6\x50\x4d\ \xfd\xd8\x4a\xe5\x91\x7b\x99\x93\x5e\xa7\x76\x1b\x3f\x6f\xaf\xa5\ \xcf\xfe\xdc\x33\xac\x93\x32\xcc\x2a\x39\xb5\xfd\xae\x97\xd7\x52\ \x79\x0b\x66\x33\xd9\x35\xce\x5c\x11\xb6\xfd\xb9\xd7\x38\x5c\xfd\ \xc4\xf5\xed\xdc\xe9\xb6\x95\xdc\xd0\x1e\x9b\xf2\xc8\xdd\x6e\xd1\ \x58\xce\xd8\x20\x06\xd6\x8d\x5c\xfb\xd3\x4e\xef\x51\xb3\x96\xd7\ \x28\xcb\x0a\xf3\xaf\x5d\xbd\x62\x58\x2d\x7f\x6b\x90\x57\x75\xcb\ \xaa\x0a\xea\x15\xe8\xf8\x15\x25\x68\x23\x0e\x0f\x5f\x30\xb1\x85\ \x03\x58\x68\xc1\x28\x90\x7a\x0f\x54\xb8\x2a\x49\x82\x0a\x5a\x3d\ \x36\x63\xbb\x6a\x84\x2c\xad\x67\x22\x5b\x20\xdd\x37\xab\xed\x08\ \x95\xd6\x61\x33\x82\x0b\xd2\x52\x76\x06\x81\x4a\x0d\x89\xe9\x70\ \x3f\x13\xa2\x1d\x7e\x06\x78\xd0\x6a\x21\x10\x44\x50\xc9\x08\xde\ \x42\xf7\x1c\x29\x1c\x75\x3e\x4d\x78\xa6\x9b\x0e\x11\x67\x48\xf0\ \x2a\x43\x57\xfa\x55\x99\x26\x42\x85\x7a\xcf\x9d\x23\x25\x14\xdc\ \x74\xcb\xc4\x6b\xb4\xdc\xdb\x80\xc2\xcd\x1f\x0f\x3d\x4c\xc3\x6a\ \xbb\x20\x36\x9b\x2d\x93\xd9\xf0\x3d\x55\x84\xc4\xe2\x10\xf6\x58\ \x21\x69\xaa\x5f\xee\xe1\x9e\x6a\xe3\x67\x97\x57\x8b\x8b\x19\xc1\ \x16\xe5\x08\xec\x8c\xd5\x0c\x46\xc1\x59\x4b\xca\x76\x4f\xe1\xbc\ \xdf\x33\x7d\x41\x6c\x4a\xbc\xfa\xdb\x6e\x00\xba\x87\xc6\x95\x97\ \x12\x19\x64\x15\xe5\x65\x48\x00\x93\xb1\x55\x02\x4b\x4a\x53\x01\ \xa5\x3b\x64\x8a\x95\x3e\x09\x5e\xb2\xce\x6d\xf7\xe3\x0d\x0c\x92\ \x19\x1b\x7d\xb1\x57\x54\x8b\x24\xaf\x9b\xd0\x2c\xbe\x61\x72\x28\ \x6f\xe8\x96\x7e\x41\x0b\xa0\x5c\x35\xa7\xf7\x16\x2c\x15\x89\xad\ \xfc\xdd\x50\x25\x71\x44\x38\xa2\x4e\x95\x62\xb4\x57\x26\xe6\x32\ \x5a\x56\xcd\xa3\x4a\x6a\xd2\xfd\x0e\xac\x2b\x00\xa9\x6c\xe1\xaf\ \xaf\x22\xb6\xcb\xd9\x16\x2d\x94\x01\x83\x30\xda\x6c\x58\x61\xcd\ \xc3\x00\x64\x71\x9e\xfa\x5d\x48\xd5\x5a\x48\x30\x30\xea\xb2\xab\ \x8a\xab\x4d\x07\x2b\xa9\x4f\x75\x5d\xa2\x02\x6f\x2b\xb4\x8c\x15\ \x1b\x9c\xa0\xc3\x0d\xaa\xd2\xf6\xb6\x0e\x16\x38\xb0\xd2\x3d\xea\ \x59\xc9\x76\x06\x98\x34\x82\x96\x51\xea\xcd\x41\x84\x14\x35\x3c\ \xeb\x17\x20\x01\x16\xf4\xb1\xdc\x4f\x4b\x0c\x15\x59\xe6\xcf\x03\ \x79\xf6\x4c\x2a\x96\x52\x73\x79\x1e\x6a\xc3\x5a\x43\xa1\xcc\xa4\ \x82\xb1\x28\xf0\xf0\x88\x5b\x96\x10\x91\x34\x33\xe3\x21\x9a\xc9\ \x94\x3d\x62\x85\xd5\x20\x2e\x2e\x34\xf3\x15\xb1\x56\x1f\x75\x64\ \x63\x79\xf6\x87\x5e\x17\x5d\x47\xc2\x2c\x02\xf6\x22\x79\xc9\xea\ \x4d\xac\xe9\xc0\xcc\xd9\x36\x88\x0c\xaf\xbe\x46\xb9\xe2\x63\xf2\ \x1b\x40\xc7\xaa\x99\x7a\x28\x17\x1e\xd9\x91\x69\xeb\x71\xac\xff\ \x5d\xcd\x5d\xcf\x0d\x4b\x62\xd6\x30\x5f\x0d\x81\x18\x6d\x8f\xd1\ \x05\xa2\xac\x86\xbd\x96\x83\xeb\x37\x68\xe8\x44\x0d\x24\x0b\x0a\ \x5a\x5f\x5a\x44\x8b\x0f\xb9\xf3\xa0\x76\xf8\xe8\xd7\xa9\x19\x2b\ \x41\xa8\x57\x2d\xd5\x52\x5f\x1d\x7f\xe4\xa6\x69\x9a\x98\xb0\x0a\ \x44\xe7\x86\xc7\x94\x87\x5f\x00\x60\x5e\x0f\x5a\x27\x62\xe0\x9a\ \x28\x58\xbb\x95\xd3\x24\x1b\x18\x86\x07\xd2\x5a\xbc\xdf\x53\xb9\ \x96\xfd\x93\x61\x3c\xa2\x08\x49\x9c\x2b\x1f\x7c\x6f\x01\x5b\xdb\ \x5e\x0a\x51\x9a\x8c\xe7\xec\xaa\x35\x05\x58\x34\x49\xa3\xba\x32\ \xd1\x2c\x1b\xc0\x68\xd9\xef\xad\x12\x8c\xc6\x20\x49\x2a\x80\xd3\ \x8a\x10\xa3\xf2\x0a\xbd\x69\x0d\x11\x96\x0e\x0e\xc9\xec\x69\x28\ \x20\x0e\xde\x6a\xa3\xd8\xb6\xd4\x41\x85\x59\x3c\x35\x4c\xe9\x8f\ \xc9\x19\xe9\x64\x58\x82\xa0\xb3\x6e\x8c\x04\x4c\x30\xc4\x8c\x72\ \xdf\xb4\xeb\xb3\xfc\x64\x65\xf7\x91\xaf\x10\x3f\xb6\x2b\xba\x8a\ \x52\xf6\x63\x00\xaf\x4d\x1a\x38\x62\xa5\x12\x09\x0c\x8e\xfd\xcd\ \x12\x64\xca\xca\x06\x1e\xd2\xd2\x45\x64\x38\x91\xe0\xd8\xe9\x6b\ \x35\xdf\x59\x79\x0a\xb2\x82\x57\x75\xb8\x73\x01\x0f\xaa\x5f\x08\ \xda\x2d\x00\xb4\xb4\x05\xcd\x68\xbe\x61\x6f\xbb\xfb\x0d\xf7\xca\ \x8a\xf5\x44\x53\x12\xd7\x32\x32\xbf\xcd\x96\xca\x55\xb9\xae\x1c\ \x41\x94\x3e\x1a\x8c\xda\x04\xb0\xf7\x6c\xb3\x19\x83\x56\x9c\xac\ \x12\x71\x88\x1a\x57\x0e\xc8\xd7\x1e\xce\x16\xd8\xb6\x0b\x6a\xe5\ \x30\x2a\xf7\x48\xb9\x24\x77\x4d\x3e\xfa\x4a\xee\xb3\xa1\x03\xb9\ \x24\xfd\x6d\x19\xad\xc1\xfc\x22\x89\x53\x97\x85\xa7\x07\x7c\x15\ \x8b\x8c\xc6\xca\x42\x2b\xab\x6f\x71\x24\x85\x0a\x09\x4b\x22\xeb\ \x2a\x19\x4b\x49\x4c\x40\x4c\x09\x63\xcd\x73\x86\x71\xa0\xc1\x56\ \xea\xc0\x0b\xee\xbd\x4c\x5f\x48\x96\x02\x67\x66\x15\x0e\xb1\x22\ \x0e\x36\x10\xae\xf5\x69\x83\xe6\x34\xd2\x23\x22\x63\x76\xae\x60\ \xdb\xe9\x0b\x76\x48\x9a\x71\x51\x26\xb4\x1a\xaa\x85\xc5\x27\xf7\ \x48\xaa\x63\x5d\x6b\x1a\xcd\x4d\x11\xbe\x22\x6e\x72\x79\x75\x02\ \x4c\x1a\x85\x1c\x41\x6b\x62\x41\x7b\xe0\x2c\x92\xce\x49\x98\x34\ \x1c\x47\xb5\x65\x88\x2c\xaf\x7c\x8d\x4f\x0d\x95\x73\x93\xd1\x93\ \x56\x2d\x5b\x87\x2a\x70\xbb\x06\x51\xd1\x16\x05\x18\x00\x13\x3c\ \x21\x45\x0a\xf0\xda\x92\x01\x16\x7d\x98\x26\x25\x2f\x0c\xa2\x35\ \x44\xab\xdb\x5a\x48\x1c\x32\x93\x6c\x03\xe2\xab\xd0\x46\xe9\x9c\ \x16\xf4\x3e\x33\xac\x63\x33\x02\x0b\xf6\x5d\xe9\x85\x56\x6f\x40\ \x36\x23\x4a\xe1\xd1\xed\x4d\x67\xef\x62\x5f\x3e\xb5\x7d\x51\xf6\ \xda\xa4\x3e\x28\x59\xe4\x5a\xe9\xe0\x2e\xc3\xc7\x3d\x61\xa9\x2a\ \x97\x62\xcc\x5b\x89\x1b\xf2\xab\xa8\x9c\x7a\xfe\x1d\xbc\xa5\x7d\ \xa6\x56\x3e\x67\xb6\xb8\x66\xab\x63\xd4\xdf\xe1\x80\xa1\xdb\xeb\ \x2b\xfd\x1d\x88\x48\x67\x7d\x24\x9d\xbf\xd2\x0f\x20\xa9\xdc\xae\ \xc4\x7d\x1a\x44\x6f\xf1\x37\xb1\xbc\xda\x96\x66\xc0\x37\x2d\xbc\ \x87\x8e\x68\xc0\xc5\x3a\x91\x56\x22\x31\x01\xb6\xb9\x6b\x5b\x4c\ \x45\x95\x14\xa5\xa6\xe1\x5a\x63\xb0\x7a\xaa\xaa\x19\x1d\xa5\x40\ \x31\x18\x31\x16\x74\x63\xd7\xb4\x10\xa5\x0c\x9a\x10\x56\x0e\x96\ \x4c\x0b\xc6\x56\x87\x5d\xe1\xe9\x8d\xbb\x71\xd0\x44\x9f\x3c\x33\ \x41\x84\x3a\x84\xb3\x27\x43\x92\x59\xad\xb5\x09\x86\x76\xb4\x57\ \x4b\x1f\x92\x48\xc1\x2b\xaa\xd3\xb4\x04\x47\xbb\x31\x13\x6b\x0d\ \xd1\xb3\xb3\x45\xb0\x81\x49\x84\x65\x9a\xd2\x88\x41\x0c\x72\x90\ \xa3\xde\x6e\xe8\xe1\x0a\xb0\x9a\x90\x50\xa8\xe9\xae\x4d\x4f\xe9\ \x59\x51\x65\xa3\xb6\x78\xbe\x0c\x24\x58\xcb\x42\x56\x7b\x97\xd1\ \x99\x46\x48\xd0\x7a\xa7\x93\x73\x03\xce\xb2\xdf\xef\x40\x20\x43\ \xad\x85\x55\xed\xe0\x1a\xe9\x03\x33\x8e\xc1\xc7\xe0\x50\xdb\x1d\ \x99\x70\x26\x8d\x1d\x14\xc3\x65\xc3\x88\x74\xb5\x3b\x3c\x0b\x49\ \x9c\x2b\xc6\x3c\x37\x80\x83\xbd\xb7\xcb\x4d\xff\xc9\xbc\x98\x58\ \xac\xed\x29\x0a\x08\x1c\xc8\xc1\x7d\x9b\x65\xe0\x8a\x82\xba\x4f\ \x33\xb2\x87\x7e\xcb\x08\xde\x4c\xf1\x5c\x61\xe9\x9b\x31\x92\x73\ \x9e\xe5\x8b\x5f\x20\x82\xe6\xa4\x15\x1e\x61\xac\x78\x30\x44\x44\ \x7d\xa2\xd5\x44\xb7\x6c\x61\x43\x62\x73\x7b\x4a\x3b\x37\xa9\x25\ \xc2\x58\xfe\xf2\xcc\x0a\xdc\x5b\x59\x1e\x0b\xa9\x71\x81\x9d\xd6\ \x26\xa6\x61\xe7\x8b\x2b\xd6\x97\x26\x71\x83\xdf\x66\xe4\xb0\xa2\ \x19\x6b\xd8\x66\x91\xed\x0c\xea\xd5\x30\xf4\x71\x23\xd6\x95\x02\ \x11\x66\x32\xea\xa0\x0d\x93\xd5\x00\x3a\xd7\x6f\xd4\x2e\x97\xf2\ \x39\xbb\x84\xa8\xee\x86\xe5\x94\x41\xfb\x46\xca\xc0\xac\x1e\xca\ \x75\x15\x06\x18\x74\xa2\xb7\x26\x4b\xb4\xd6\x1f\xdf\xfe\x5e\x51\ \xd5\x99\xb8\x85\xe1\xbd\x89\xd9\x74\xdd\xed\x15\x2d\x36\xc0\xa2\ \x4a\x09\xb8\xcd\x54\xb1\x95\x76\xfd\x43\x21\x8d\x30\xc2\xea\x27\ \xad\x77\x4b\x4a\xd3\x83\x3a\x4d\x47\xca\x69\x61\x99\xf4\x9a\xc1\ \x95\x3f\x26\xba\x46\x09\x17\x06\x98\x89\x8a\xf2\x56\x66\x50\x19\ \x61\x01\xb7\x35\x70\xcb\x0e\x2a\x0f\x4f\x30\xbd\x5c\x62\x45\xc2\ \x52\x43\x17\xe0\x55\x28\x56\xee\x50\x1b\xb9\x21\x8e\x81\x71\xd8\ \x71\xe8\x50\x89\x86\xa3\x8b\xf7\x82\x9c\x45\x3a\x77\x86\x34\x5a\ \x90\xd4\x4e\xc1\x3d\xf6\x5d\x0d\xcc\x36\xab\x89\x44\x28\x2a\x60\ \x24\x95\x11\x1d\xcf\xd4\x2f\xf8\xde\x4e\x57\x9b\x98\x56\x39\x80\ \x4b\x57\x8e\x3d\xe0\xdd\x20\x3e\xd4\xc1\x52\x80\x16\xa0\x88\xe7\ \xcb\xc6\x53\xce\x36\xcf\x34\x1b\xcd\x2b\xaf\x1d\x8b\x6a\x3d\x08\ \x04\xaf\x34\xb5\xde\xb4\x47\x04\x72\x7b\x21\x6b\x71\x72\x27\x09\ \xb6\x38\xb6\x83\xa3\x76\xb0\x4c\xbf\x54\xda\x70\xcd\x1e\xb3\xf6\ \x87\x54\x4a\xbe\x2a\x05\x6a\x44\xd7\x7b\xf3\xae\xd5\x6e\xf4\xf9\ \x2d\x37\x20\x74\xc5\x5c\x88\xb0\x2b\x3a\xa6\x7f\xf8\x9e\x11\x70\ \xcd\xa5\x55\x0f\x68\x61\x96\x34\x64\x66\x30\x71\x10\xb6\xe8\x40\ \x35\x1c\x68\x0c\xa0\x50\x39\x31\xa2\x1c\x44\x86\x32\xe6\xa2\xb6\ \xf7\xee\xc3\x88\x2a\xf0\xc8\xca\x6f\x09\x40\x32\x0b\x7f\x7a\x9c\ \x8b\x1c\x71\xf9\x88\x5a\x84\x86\xcd\x4d\xac\x48\x0e\x5b\xf6\xec\ \x12\x7e\x19\x69\xf5\xba\xae\xb4\x8f\x3b\xf9\x89\xab\xfd\xdb\xf1\ \xbd\xc2\x8a\x0a\x67\x05\xb6\xf7\xb4\x8d\x0d\xc7\xa1\x4c\x16\x34\ \xc9\x20\x8b\xa8\xab\xa0\xb3\x19\x98\x72\xf7\x44\x88\x96\x3d\xb1\ \x62\x80\x50\x74\xca\xb8\xda\xb5\x55\x94\x11\x2f\x35\x40\xdf\xde\ \xad\xf7\x69\xbb\xb9\x9a\xf7\xbb\x74\x02\x9d\x04\x82\xd6\xb4\xc9\ \x64\x43\x43\x1a\xaa\xef\x59\x97\xd5\x1f\x99\x64\xd1\x2d\xb9\x38\ \x3c\xb7\x88\x22\x0a\x8d\xb4\xaf\x15\x57\xb0\x0a\x99\xaa\xb4\x94\ \x03\x03\x84\xbb\xe7\x96\xd2\x72\xad\x5b\xf3\x96\x23\xbe\xd5\x9a\ \xb5\x4c\x5c\x04\xa0\xcd\xef\xbb\x0b\x3e\xeb\xcc\x9b\xde\x55\x76\ \x59\xe0\x97\x2e\x3b\x17\x4e\x39\x96\x49\xab\xc7\xa4\x2b\x55\x70\ \x87\x10\x46\x15\x43\xfc\x36\xca\x64\x5b\x2d\x12\xe1\x19\xb3\xab\ \xb8\xbc\xd2\x34\x85\x02\xff\xc6\x15\x5a\xd2\x02\xba\xa6\xb5\xf5\ \x16\x83\x3d\x7d\x45\xb5\xef\x82\x19\xad\xe7\x81\x4b\xfa\xdd\x12\ \x84\x4c\x8c\xea\x58\xac\xb2\xc2\xae\x86\x63\xe1\x46\x96\xfe\x5b\ \xab\x91\x58\xb7\x17\x4c\xb4\x01\x33\x0e\xb2\x57\x84\x58\x31\xe6\ \x8b\xa2\x69\x56\x3b\xdc\x08\x23\x18\x98\x3d\xb9\xaa\xc6\xab\xd6\ \xcd\x3b\x84\xa6\xeb\x3a\xd0\x92\xc3\x38\x12\x36\xc1\xc4\x2c\xac\ \x84\xb2\xb2\xb4\x37\x10\x07\xca\x85\xfb\xcc\x75\x1d\x41\xa0\x0e\ \xb1\xcc\x97\x6b\xb3\x4a\x2d\x56\xc6\xb6\x14\xd5\xa9\xb3\x0c\xf6\ \x5b\xb7\x6b\x15\xde\x0e\x1a\x61\x25\xc8\x29\xcd\x66\xf5\x12\xc9\ \x21\x5a\x59\xcd\xa3\x72\x5d\x22\xd4\x73\xb0\x52\xca\xae\x78\x8e\ \xf2\xbf\xe7\xd2\x2b\x81\xc0\x48\xc6\x52\xad\xa7\x47\x99\x2f\x99\ \x56\x16\xd0\x92\x4d\x47\x59\x57\xab\x30\xda\x38\x36\x46\xaa\x00\ \x6c\x69\xc6\x31\x74\x18\x87\xb2\x29\xa3\x5a\xcf\x41\xc0\x78\x8b\ \xf5\xf2\x6e\x0b\x33\xd5\x99\x42\x11\xec\x2d\x17\x12\x49\x6b\x1e\ \x57\x55\xef\xce\xee\xbc\xea\xe0\x28\x3d\x7f\x54\x12\x5c\xf8\x36\ \x59\x74\x12\xca\x00\x02\x4c\xa5\x87\x17\x2b\xa2\x13\xe9\xda\x0d\ \x7a\xa7\xec\x36\xee\x0e\x2b\xe0\x69\xe5\x35\x15\x65\x29\x2a\xdd\ \x6b\x69\xea\xee\x73\xf0\xba\x6d\x3a\x73\x6d\x99\x2e\xc2\x23\x56\ \xca\x6a\xd7\x56\x2c\xee\x70\x2e\x3b\xc5\x56\x6d\x6e\xce\x17\xc7\ \xca\xc6\x58\xab\xb1\x6b\xec\xda\x62\x8a\xe5\x72\x27\x0e\xda\x90\ \x2d\x41\xb4\xf5\x08\x22\x93\xc4\x18\x96\xc5\x6e\xe8\x1d\x65\x8b\ \xa1\xd7\xdb\x65\x62\x39\x6a\xd4\x87\x11\x8c\x34\x66\x2f\x67\x88\ \xa1\x34\xe1\x41\x96\xf2\x6b\x80\xa3\x46\xc4\x55\x4c\x55\xd4\x7a\ \x59\x56\x86\x46\xd5\x45\x43\x62\x6c\xb6\xb5\x8f\x46\x44\x2c\x4c\ \x53\x47\xc4\xa5\xd5\x18\x4f\x31\xf0\x9a\x71\x06\x7d\xbf\x2d\xfd\ \xa7\xa1\xa9\xc3\xd4\x24\x40\xc5\xf0\xab\x69\x71\xaa\xfd\x86\xb9\ \xee\x96\xdc\x23\x8f\x3e\x59\x33\xbe\x0e\xfc\xe9\xcf\x76\x40\x8a\ \xba\xf7\x2a\xd7\x00\xb6\x2c\xc4\x41\xc5\x31\x1e\xc1\x29\x8c\xf2\ \x83\x34\x54\xb4\xaa\xa3\x4c\x20\x2a\x63\x2b\xe5\x33\xa2\x44\xf0\ \xa0\xa0\x20\xd2\xc3\x95\xe3\x60\xba\x66\x34\x3a\xad\xce\xe9\xcc\ \x25\x18\x63\xc6\xa0\x4a\x50\x39\x99\x83\xda\x32\xbe\x4e\x28\x81\ \x0d\xd9\x63\xbc\x1e\x7a\xd4\x51\xb8\xaa\xcc\xfa\x71\x9d\x44\x90\ \xf0\x0d\x9e\x29\x1d\x27\x09\xe4\x08\x4f\x97\x0a\xfe\x1a\xec\x78\ \x32\xab\xc2\x5e\x4b\x9b\x97\x6b\xa2\x5f\xe1\x34\x3b\x2c\x64\xcf\ \xc6\x94\x2c\xe0\x5b\x22\xfa\x6f\x88\x0a\x36\x6e\xef\xc9\x86\x54\ \x2d\x3a\x55\x56\xae\xed\x12\x9b\xb5\x99\x52\xb0\x22\xc3\xa0\xd1\ \x80\xd9\xa0\xff\x4e\x3d\x54\xba\xbb\xfb\xa8\xd9\x82\x67\x6c\x6a\ \xeb\xfa\x26\xd1\x52\x9a\x1d\x84\x10\x9d\xd0\x40\x52\x3a\x90\x34\ \x19\x65\x6d\xe7\xac\xdd\x7f\xc0\xc3\x7b\x8d\x44\x35\x27\x03\x44\ \xed\x26\x3c\x19\xb0\x41\xc3\x40\x0a\x51\x46\xff\x2a\x75\x46\xad\ \xbf\x22\xd2\x64\x82\x35\x6b\x26\x3b\x1c\xb3\xab\xff\x6e\x1c\x05\ \xd2\x2a\xcd\xa5\x6b\x07\x31\xcd\x78\x0c\x0e\xe3\x51\x81\x95\x92\ \xf5\xfc\x8d\xa3\x02\x79\x19\x7b\x78\x59\xff\x0c\x31\x43\x65\x3d\ \x83\x23\x26\x99\xc0\x00\x12\xe9\xeb\xa1\x26\x2e\x50\x74\x12\x79\ \xe8\x9d\x63\xce\xa4\xe0\x35\xba\x57\xb4\x58\xb3\x3c\xd1\x80\x46\ \x9d\x27\x0b\x72\x4f\x51\x32\xa3\xa2\x54\x18\x34\x59\x16\x12\x87\ \xba\xba\xc1\x1d\x06\xb3\xd5\xdc\x19\xd5\x0d\x8a\x1a\x25\x7f\x13\ \x45\x8d\x32\x86\x26\x40\x8d\x4c\x43\x82\x3c\xc8\x28\x35\x9f\x25\ \x3a\x92\xbe\xee\x8d\x25\xac\x17\x54\x3e\xf6\xfa\x07\x15\xf8\xb6\ \x20\x41\x96\x07\xe0\x59\x1a\x18\xa5\x65\xec\x46\xbc\x44\xa2\x96\ \x88\xcc\x01\xc6\x8a\xb8\xb9\x38\x0d\x89\xc3\x5e\x1f\xf6\x62\xb4\ \x6a\x41\x17\x35\x3b\x16\x6a\x2f\x67\xce\xdc\x70\x19\x75\x28\x1a\ \xbc\x14\x01\x88\x28\xff\x45\x79\xb2\x9d\x2d\x35\xac\xc0\x1c\x09\ \xa1\x8c\x20\x03\x8a\xf4\x86\x28\x21\x2a\x51\xa5\x8e\xe8\xa8\xc5\ \x14\x6a\x52\x5c\x87\x93\x3a\x2a\xb2\x73\xb9\xb5\xc5\x06\x4b\xaa\ \xa2\x15\xa6\x97\x88\xa8\x99\x75\x9d\x1d\xd5\x60\xb8\x3b\x41\x9a\ \x99\x59\x66\xbb\x02\xeb\x7d\x19\x25\x53\x18\x25\x0e\xac\xdd\xf5\ \x65\x6f\xb9\x8c\x9b\x2d\xa4\x4f\xae\xe8\x2e\x02\xd7\x36\xb3\xaa\ \xc2\xc8\x10\x60\x36\xea\x0b\x9b\xe1\xa3\x0e\xc8\x72\xa5\x44\x74\ \x1e\x92\x03\x83\x46\x8d\xde\xa2\xae\xe4\xf3\x4b\x66\xa7\x16\x52\ \xc2\xaa\x2a\x5b\xa4\xfa\xb6\xf7\x35\xe4\xa8\x4b\x1d\x91\x43\x32\ \x61\x90\x36\x78\x88\x06\x98\x34\x86\x86\xf4\x00\x2c\x6e\x49\x0a\ \xd8\x18\x4c\xd5\xac\xa0\x1c\x48\x13\x08\x62\xac\xad\x5f\x10\xa3\ \xa5\xcb\xcd\x65\x55\xbb\xc6\xe0\x80\x8c\x09\x1d\x11\x2a\x98\xd3\ \xfe\x93\x09\x56\x17\x47\x66\x25\x44\xb5\x6e\xa0\x29\xc2\x8a\xee\ \xec\x8a\x80\x5b\x5e\xe6\x4a\x06\x64\xd5\xc8\xcd\xfa\xce\xd5\xcf\ \x2c\xbe\x6f\x55\x1f\x15\x09\x32\x48\x51\x16\x8d\x7a\x86\xd9\xa1\ \xf1\xc8\xf3\x49\x1e\x53\x69\x3d\x0f\x8a\x85\x82\x28\x9f\x9f\x03\ \xa6\x4c\xa5\x79\x64\x30\x80\x50\xa6\xa1\xec\xfa\x8a\x56\xc0\x25\ \x93\xd3\xbd\xf2\xe2\x33\xbd\x82\x97\x11\x8a\x5a\x87\x2f\xa0\x66\ \x08\x44\xd8\x32\xca\x0e\x1e\x47\xf9\xc4\xd7\xc8\xb4\x4e\xc3\x60\ \x16\x59\x6a\x60\x44\x5d\xa8\xe5\xc8\xa1\x25\x3c\x58\x63\xf0\x7e\ \x85\x59\x59\x4f\x60\x20\xa4\xde\x6e\x5f\x23\x84\x6e\xac\xaa\xb7\ \x8a\x4e\xe7\x6e\x3f\x69\x14\xdd\x97\x74\x23\xa1\x31\xe1\x29\x30\ \x7c\x33\x05\xe3\x96\x36\xbb\x7a\xf2\x25\x1c\x2e\x58\x42\xf2\xca\ \x06\xad\x77\x3e\x93\x26\xfa\x45\x63\xae\x3e\x22\x22\x5a\xca\xb9\ \x7d\xfc\x7b\x5d\x8b\xb8\x67\xbb\xc5\x42\x48\x47\xe3\xde\xfa\x65\ \xda\x63\x1f\xe3\xf2\xf8\xd6\x8c\xaf\xd3\x80\x6a\x4d\xdc\x8d\x99\ \xd9\xe2\x84\x49\x36\x6c\x54\x99\x1a\x9d\x33\xbd\x40\xb7\x75\xa5\ \x44\xa1\x30\x4a\x20\xb8\x9e\x4c\xd1\xba\x97\x23\x52\x59\x89\x81\ \xa9\x7e\x67\x20\x25\xd1\xb5\xd9\x31\x34\xb4\x95\x8e\x6b\x09\x5b\ \x53\x6b\xac\x88\x95\x35\x0c\x8a\x35\x32\xa8\x07\x76\xd6\xd7\xb6\ \x79\x3a\x6a\x5e\x66\xad\x9f\x2c\x33\x4c\x66\x1c\x13\xcf\xc8\x89\ \xfa\x70\xfb\xaa\x50\x2f\x94\xaa\x23\xe9\x06\xa6\xe7\xed\xf5\xd8\ \x59\xe7\x33\x34\x07\x98\x59\xcc\x41\xaa\x49\x96\xdd\x83\xde\x00\ \xcc\x52\x0e\x48\xe4\xe8\x65\x14\xcc\x37\x0a\x5b\x83\x1c\xc3\x1e\ \x1e\x11\x33\xea\x9e\xb0\xaa\xef\x49\x4a\x1e\xc8\x70\xc3\xf0\x9c\ \x42\xeb\xed\x07\x98\x29\xcf\xea\x83\x32\x11\x62\x32\x18\x4b\x0a\ \x59\x3b\xee\x9a\x88\x79\x4b\x24\x2b\x8d\x6d\x51\xaa\x97\x31\xaf\ \x4a\xd1\x87\x5e\x4c\xc3\x68\x15\xb3\xd7\x31\xad\xb5\x65\xc1\xcc\ \x28\x79\xa5\x67\xd2\x68\x59\xb1\x23\x90\xe4\x01\x30\x5c\xa9\x45\ \xf5\x56\xeb\x2e\x4a\x94\x90\xbe\xc2\x40\x4b\xcd\x96\xc5\xf8\xde\ \x62\xe7\x2b\x26\xb5\xc7\x05\x59\x0d\xd9\x4a\xf8\xe2\x35\xd4\xba\ \xd6\x9d\xda\x09\xbe\x85\xf2\x5b\xd9\x94\xbc\xad\x7a\x18\x5e\xda\ \xa0\xed\xa8\xe1\xae\x3d\x25\x8d\xad\xf9\xe7\x75\xbc\x55\x46\xb6\ \xdf\x23\x8a\x56\xae\x6f\x27\x7b\x12\xb6\xb4\x67\x9d\x92\x2d\x19\ \x60\xf5\x76\x31\x73\x64\x99\x4b\x7b\x6e\x56\xaf\x6a\x64\xd4\x74\ \x9f\x89\xf0\xc5\xf1\xe8\x09\x21\x17\xcd\xbe\x7f\x30\xd2\x8c\x76\ \xe5\xc5\x36\x4c\xb1\xfe\x94\x83\x20\xd2\x0a\xa6\x3a\x58\x63\x59\ \x13\x4c\x34\xea\x30\x1b\xa4\x08\xdb\x33\xa8\x7e\xdb\x92\x04\x83\ \xb6\x79\x87\x5d\x89\xa5\x90\x8e\x92\x9c\x71\x0c\xde\x79\x0e\x02\ \xa8\x15\xdc\x6d\x20\xcc\x8a\xcb\x3b\xc4\xcc\x91\x9c\xd7\xd0\xa0\ \x2e\x02\xac\xb1\x60\xb7\x46\x0b\x8f\x98\x2d\xc3\xec\x18\x43\xde\ \xe3\x4f\x6e\xfd\x1b\x6f\xf3\x1e\x54\x35\x6a\x2b\xc8\xc7\xd6\x46\ \xc0\x96\x08\x18\x26\xa5\x8d\x98\x03\x70\xc1\x76\xb4\x93\xa5\x1c\ \xb1\xa7\x31\xe9\x56\xb1\x50\x16\xce\x0a\x29\x95\xa2\x3a\xe5\x6c\ \xbc\x4b\x32\x24\x0c\x2a\x33\x3c\xbc\xa3\xa9\x91\x32\x44\xca\x63\ \x16\x73\x51\x2b\x47\x16\x29\x95\x23\x8d\x36\x38\x04\x5b\xea\xf5\ \x56\x11\xd6\xb1\x90\x70\x31\xda\xa6\x51\xc5\x67\xc5\x79\x37\xd4\ \x96\xdd\x01\xa0\xc1\x81\x68\x38\x65\xa9\x13\x59\x52\xfe\xe2\xe4\ \x45\x75\xe4\xb4\x08\xf7\x2a\xd5\xca\x9a\x00\x5f\x6b\xf8\x66\x22\ \x5a\x93\xbb\x3a\xd3\x5b\x5f\x65\x96\x2d\x01\x41\x34\xeb\x33\xaa\ \x9f\x6e\x6b\xa5\x77\x5c\x70\x2d\x59\xbb\x6e\xdb\xa2\xb1\xea\x28\ \x3a\xb9\x65\xe9\x03\x54\x22\x6d\x2c\x54\x3b\x76\x38\x5e\xcb\x25\ \x6e\xc6\xfe\x6d\x6e\xab\x9f\xbe\x2a\x48\xdb\x0a\xbb\x4c\xd2\xee\ \x01\x36\xaa\xcd\xbc\x38\xfa\x1a\xd9\x60\xf9\xaa\x30\x57\xca\x98\ \x70\x39\x89\xf7\x73\xdf\x97\x62\xdd\x6c\xfd\x66\xad\x44\xd2\x9e\ \xb9\x96\xc1\x4e\x34\xd3\x30\x59\xcd\x9c\x73\x8b\xa6\x58\x9a\xb1\ \x4a\x0f\x58\x6c\x76\xae\xee\xaa\x8a\x03\x28\xe1\xbd\x76\xc6\x56\ \x50\x35\x57\x67\xfd\xf3\x01\x8e\x84\x9c\x72\x3f\x1d\x59\xda\xf5\ \x4d\xfc\x24\x76\xf0\xd7\xae\x77\xd7\x1f\x78\x5f\x60\xad\xe2\x49\ \x6c\x25\x44\xfd\xd0\x2b\xf8\xa8\xc3\x8c\x96\xed\x60\xc5\x39\xb7\ \x2c\x4d\x54\xac\x94\x07\x92\x06\x0b\x5a\x52\xd9\x6e\x7b\x20\x99\ \x4a\xf7\xaa\xf8\x19\xd9\x2a\x86\x28\x36\x40\x36\x5f\xd9\x16\xb7\ \x3d\x92\x09\x57\x09\x91\x4a\x50\xd4\xec\xfa\xcc\xa8\x23\xb9\x3a\ \xc9\x96\x05\xd4\xa6\x36\x83\xa6\x71\xd8\x51\x6f\x0e\x43\x5f\xe7\ \xa8\x45\xa2\xa4\x75\x02\x43\xed\xc1\xf4\xb5\xc5\xaf\x6a\x84\xe9\ \xb9\xf0\x75\xbd\x02\xc9\xde\xb9\xa4\x11\xc1\x85\x67\xbb\x52\xd4\ \xfa\x9e\x29\xc9\x6d\x76\x92\x41\x19\x42\xf6\x30\x5a\x92\x2c\x6f\ \xe9\x33\x4b\x83\x81\x85\xc6\xe9\x82\x83\x2d\xb4\x59\x91\xe7\x15\ \xd4\x6e\xba\x52\x2a\x25\x0d\x0d\x2f\x00\x42\xcd\x13\xc6\xd6\x25\ \xd5\x00\xce\x56\x52\x73\x17\x58\x3b\x4d\x64\x49\x81\x76\xa0\xa4\ \x6a\xec\x50\x6b\xad\x76\x2f\xad\x53\x33\xaf\x40\x6d\x5e\xbd\xf4\ \xd2\x35\xb6\x93\xc9\x5a\xae\xb9\x72\x94\x77\xfe\x6f\xbf\x37\x15\ \xaf\x44\x65\x11\x15\x2b\xbd\xa8\xba\xfa\x2a\x59\x28\x65\xc9\x0d\ \x45\x58\xcd\x73\x84\xa1\x9a\xd2\x62\x08\x03\x10\xb8\x34\x69\x24\ \x64\x8d\xa6\xf6\xe6\x7e\x47\xdd\x12\xc8\xda\xee\x31\xa6\xd7\xd2\ \xa6\x91\x75\xeb\x27\x55\xef\x8e\x2c\x6b\x08\xea\xa1\xd1\xe2\x6a\ \x97\xf3\x6c\x01\x5d\xea\xc8\x32\xf0\x25\x6d\x70\x55\xcd\x9d\xe9\ \x41\x55\x09\x54\xe1\x4a\x3d\x12\x58\x45\x6c\xde\xea\x93\x60\xe7\ \x83\x33\x15\xb9\x60\xe8\xad\x1e\xea\x2d\xb1\xa1\x85\x22\x83\x87\ \x2b\x93\x13\x1a\x65\x24\x9e\x35\x85\xca\x3c\x20\x8f\x74\x24\xc2\ \xdb\x69\x5b\xc1\xa5\x2d\xc7\xec\x04\x07\xc9\xcb\xf3\x5b\x65\xbe\ \x27\x8b\x6b\xec\xb5\x4b\xce\x60\x06\x22\x07\xcd\xe1\x13\xb5\xb9\ \x6c\xcd\xd9\xb0\x71\xd8\xcb\xd0\x31\xf2\xa8\xfe\x00\x64\x88\x99\ \x30\xe0\x4c\x7f\x90\xa9\x9c\xf0\x15\x17\xe5\xd9\xe9\xbb\xe9\xa5\ \xa8\x77\x00\x98\x88\xc0\xc4\xd6\xaf\x10\xd6\x74\xc5\x6a\x62\x23\ \x7a\x26\x84\x66\x46\x57\x4f\xc0\x56\x0c\x55\x88\xf3\x1a\x6b\x23\ \x09\xb9\xd8\xc8\xb5\xe2\x88\xa8\x4b\xc0\x3d\xc3\xbc\x2d\x26\x5b\ \xc1\xb0\xdf\x9a\x15\x2f\xdd\x3e\x94\xb6\xa7\xe5\x12\x82\x71\x70\ \x73\x88\xaf\xfc\x37\xd5\x15\xca\x60\xc7\x44\xd7\x5e\xae\x26\x7a\ \x97\xfe\x70\x8d\xcf\x1b\xc3\x8e\x1a\x5a\xd5\x42\x20\x76\x79\xa4\ \x25\xd4\x6a\xae\x92\xa4\x21\x96\x8b\x30\x3d\x52\x0d\x12\xe8\x9f\ \xbf\x84\x13\x2e\x31\xec\x80\x40\x85\x29\x9d\x96\x55\x75\xc0\x6d\ \x80\x54\x4a\xbd\x4c\x2c\x67\xa4\x19\x86\xc5\x30\xab\xf4\xf2\x83\ \x78\xd4\x5a\x3d\xa5\x85\xbc\xaa\x13\x24\x6d\xb5\x2d\x53\x08\x31\ \x41\x43\x4d\x1a\xdc\x12\x61\xce\xa4\x6a\x31\x8d\xe6\x59\x13\x90\ \x19\xdd\x2c\x60\xcc\xd9\x43\x80\x61\x48\xa5\x4d\xd8\x93\x41\xe6\ \xe0\x18\x48\x25\x3d\xd0\x9e\x88\xfa\xac\x13\x51\x01\x9c\x66\x60\ \x0a\x62\xa6\x8a\xee\x0a\x8c\x84\x48\x27\x91\xb0\x64\xba\x9f\xa3\ \x24\x79\x55\x85\x5d\xcb\x5c\xd1\x48\x73\x5a\xc7\x40\x14\xd4\x4a\ \x07\x94\xae\x29\x55\x16\x57\xfd\x9e\x5e\xc5\x4f\x4f\x1e\x58\x49\ \x00\x09\x05\xe0\x11\x11\xac\x6f\xd4\x7b\x20\xc7\xe8\x86\x3c\xf2\ \x92\x9b\xa2\x2e\x29\xd3\x84\x19\x41\xcc\x74\x31\x27\xa2\x9a\x02\ \x33\x7b\xb5\xc7\x0b\x1f\xc2\x43\x1a\x44\x05\x88\xe7\x9b\x30\x12\ \x06\x45\xfa\xd1\xd3\x6a\x8f\x0c\x10\xc3\xb6\x11\x3a\x46\x7a\x64\ \x62\x78\x64\x58\xd1\xab\x39\xb3\xf6\xb0\xb5\x2c\x62\x5b\xd5\xda\ \xc8\xd1\x6b\x1e\xe6\x46\xfb\xe6\x16\x2a\xd4\x6e\x1d\x09\xaf\xcb\ \xfc\x64\x58\xf1\x08\xc8\x58\xdc\xb9\xbc\x81\x4e\x4b\xba\xa3\x06\ \xa8\x67\xbf\x54\x52\x26\x2c\x67\x21\x81\xda\x1c\xd9\x19\x1e\x8b\ \x82\xa3\x85\x17\xec\xdb\x64\xa9\xaa\x45\x0b\x45\xb9\x40\x7a\x78\ \xc7\xdc\x96\xb5\x6e\xdf\xdb\x73\xb7\xe5\x62\x2a\xfe\x13\xf7\x32\ \xa2\xc7\x09\x5d\xe3\x9b\xc9\x68\xa2\xd5\x70\xb6\x44\xfb\xa6\xbe\ \x05\x56\xb9\x05\x6e\x41\x31\xa5\x34\x06\x8d\x06\xa8\x2c\x1c\x06\ \x96\xf8\x7d\x64\x07\xbd\xc8\x46\xb4\x92\x40\x58\x72\x7a\x72\x49\ \xa1\xcb\x02\xc7\x12\xad\x8a\x80\x45\x2a\x09\xc1\xcb\x5f\x9a\xa5\ \x65\x66\x52\x0c\x26\x1c\x6b\x15\x0d\x99\x91\xa3\xea\x91\x48\x87\ \x92\xca\x61\xc8\x92\xae\x31\x85\x01\x2a\x69\xc9\x47\x46\x46\x52\ \xa3\xf1\x73\x9d\xc9\x59\x0b\x4f\xbc\x3a\x95\x98\xc4\xac\x71\x49\ \x55\xec\x35\x31\x4d\xa9\xa0\x86\xc2\x82\x45\x55\x62\x7b\xe7\x01\ \x28\x5b\x38\x5a\x97\x41\xca\x52\x86\x5a\x38\x94\x84\x25\xe0\x91\ \x1e\x67\x2c\x74\xd0\x4b\x58\x13\x38\x2a\xf3\xbe\xc8\x32\xea\xf4\ \x24\x53\xb8\xcf\x48\xf7\xc8\xe0\x0c\x45\x5b\x8b\xeb\xaf\x64\x32\ \x72\x20\x8f\xed\xa7\x6e\x65\xa6\x4d\x24\x11\x0f\x62\x44\xc0\x53\ \xc1\x11\x7c\xcd\x97\x77\x7a\x49\x8d\x33\x99\x8a\x76\xbf\x10\x8f\ \xa4\x41\x4f\xab\x6d\x4d\xc9\x76\x77\x40\x77\x06\x1c\x2c\x74\x61\ \x9c\xc7\x44\x38\x63\xd2\xcd\x70\x46\xce\x74\x07\x63\x59\x0b\x5a\ \x00\x87\x5e\x46\xd7\x65\xac\x95\xc8\x10\x4b\x5d\x5f\x7c\x56\x0f\ \xf6\x25\xa3\x2a\x59\xbb\xdc\x8b\x82\xbe\xd7\x32\x6a\x63\x30\x48\ \x35\x1f\xe5\x8a\xf2\xab\xe9\x55\x0f\xbd\x44\x65\x19\x20\x0b\xc7\ \xe5\x37\xbc\xe0\x56\x56\xb3\x57\xa7\x90\x11\xb3\x89\x58\xdb\xed\ \x90\x5f\x45\x7c\xde\xcb\xb0\x72\xcd\x73\x49\x77\xb7\x52\x84\xb9\ \x53\xd2\xfa\x0a\x34\xe3\xe8\x25\xcc\x4a\x77\xf8\xaa\x01\x58\xd9\ \x7f\x23\x47\x35\xeb\x4a\x1b\x71\x68\x3c\x52\x56\x35\x56\x2d\x62\ \x4d\x84\x3b\x92\xe8\xdd\x9f\x19\xcd\xd2\x8a\xa2\x28\xca\x68\x55\ \xa1\x0a\x66\xb2\x90\xcd\x2a\x0e\x3d\x95\x70\x21\x14\x92\x1d\x8e\ \x62\xd7\xa1\xed\x56\x0f\xe3\x54\x66\x1a\x4e\xd1\xc0\x47\xd2\xfa\ \xb4\xb0\x37\xc2\x8d\x96\x43\x54\x62\x2a\x31\x28\x9a\x90\x76\x24\ \x90\xf1\x85\x3c\x07\x48\x1d\xb2\x18\x9c\x03\x21\xbc\x04\x1e\x4f\ \x58\x5d\x36\x08\xcb\xb4\x04\x84\x53\xc5\xbe\x31\x10\xa7\xd2\x07\ \x99\x7e\x3c\x49\xe6\x60\xd7\x34\xbd\x92\xa2\xd1\x46\x5b\x0d\x6c\ \xf0\x18\x38\x46\xed\x89\x60\x48\x33\xda\xb0\xc1\x18\x43\xe3\xa1\ \x73\xda\x74\x64\x9e\x00\x3d\x47\x6d\x1c\x22\xbc\x69\x8d\x81\x0c\ \x84\xe7\xf9\x34\x4e\xd2\xc2\x4f\xa5\xcf\x4a\x0f\x13\x94\x10\xd3\ \x62\xb9\xb3\x61\xd3\xcc\x0f\xe3\xf1\xf2\x38\x8e\xb2\x6e\x22\x22\ \xe6\x32\xa0\x73\x78\x00\x00\x20\x00\x49\x44\x41\x54\xcc\x67\xe6\ \x19\xa4\x4e\x9a\x3c\xcd\x91\x8c\x64\x24\x82\xe2\x03\xf6\x38\x5e\ \xe6\xf7\x2f\x6f\x46\x93\x19\x96\xc3\xf9\x8a\x32\xca\x0c\x4f\xfa\ \x2b\x26\x62\xce\xb7\x4f\x5f\x7e\xfd\x25\xce\x4f\x70\x01\x4f\x50\ \x4e\x50\xe9\x00\x7c\x2a\x01\x1a\x98\xb5\x91\x5a\xdd\x60\x8d\x53\ \xd1\xfb\xdd\x8a\x46\x44\x64\x84\xb3\xdb\x55\x74\x00\x1b\x48\x46\ \xc6\xce\x44\x58\x10\xac\xee\xa7\x6f\x71\x89\x0d\x98\x89\x65\x92\ \xcc\xc8\x75\x0a\xcf\xea\x1e\x32\x31\xb6\xd6\x20\x3c\xd6\x1e\xbf\ \x43\xe7\xf2\xc6\x2b\xc8\x54\x6f\x78\xcc\xc0\x52\x5c\x97\x3a\xa4\ \x38\xbc\x5b\xbc\xd9\x93\x83\x3d\x9d\x2b\x53\x34\x20\x72\xa8\xc3\ \xfa\x4a\x12\x7f\xa5\xde\xb2\x45\xbb\xbd\xfc\xb0\xd4\x11\x4a\x0e\ \x8e\x71\xf0\x38\xf8\xd0\xe3\x9d\xbf\x1c\x09\xd3\x4c\xbd\x3d\x81\ \x30\x00\x96\xde\xe8\x17\x23\x4c\x18\xc6\x41\x0e\xc2\x06\xcc\x34\ \x60\x43\x92\x64\x41\xf1\xe5\x75\xbc\xbe\x84\x10\x6f\x93\x5f\x5c\ \x84\x72\x8e\xd4\xc8\x14\x93\xc6\x28\xb5\xf7\xd0\xa0\xc1\x3d\xc7\ \x81\x0f\xaf\x96\x89\xcf\x67\x9e\x13\x99\x78\x79\xe8\xc3\x0b\xc7\ \x88\xcf\xa7\x9e\x5f\x4a\xca\x72\x60\xa4\xc2\xe1\x33\x62\x32\xf3\ \xe3\xab\x7d\x78\xd1\x61\xef\x5e\x5e\xf4\x18\xe7\xc1\x00\x8e\xe7\ \x8c\xb7\xf9\xe9\xf9\x3c\x9f\x6f\xf6\x7c\x7e\x77\xe2\x11\x31\xc5\ \xa8\xbc\x37\x18\x5f\x8e\x97\xef\x5f\xc2\x78\xfe\xfa\x7b\x86\xc3\ \x83\x91\x9d\xa9\x09\xd4\x45\x5a\x1e\x1f\x9a\xe5\x30\x7b\x7d\xe1\ \xc7\xf7\x61\x7a\x7e\x39\x07\xa5\xa1\x71\xc2\xfc\x7c\x3c\x27\x9e\ \xa7\xcd\xf4\x88\x67\xad\x31\x32\x2d\x85\xcc\xf0\xa8\x4d\xce\xe1\ \x3e\x3c\xe2\xcb\xf3\xd7\xbf\xfe\x75\xfe\xfe\x1b\xe3\x64\x52\x79\ \x5a\x46\x63\x6e\xb2\xc2\x00\xcc\xc5\x69\x66\xaf\x2f\x8f\x8f\xdf\ \xf3\xfd\xbb\xc7\xcb\x3b\x8d\xa3\xa6\x59\xb9\xf2\x5c\x83\x74\xe0\ \xf3\xe7\xcf\xf9\xf3\xef\xef\x7e\x7f\xc2\xbd\x0c\xfd\x53\x44\xd2\ \x3e\xfe\xf4\xee\x7f\xfc\x29\x5e\x4c\x30\xcb\x16\xb7\x57\xc2\x64\ \xa3\xef\xd3\x15\xf3\x31\x9f\x36\xdf\xde\xfe\xfe\x8b\x7f\x7a\xce\ \x73\x8a\x08\xe6\xc4\x94\x1d\x01\x88\x27\xcd\x3a\x3b\x34\x17\x8a\ \xb8\x5c\x0e\x0d\x4d\x8f\x26\x86\x72\x25\x1d\xc8\x0c\x1d\xd3\xa7\ \xa8\x14\x2a\xee\x60\x63\x5c\x92\xba\x6c\x70\x48\x66\xb8\x63\x73\ \x14\x22\xc5\xe9\xee\x95\x07\x86\x42\xba\x31\x3d\xea\x00\x23\x81\ \x51\x39\xda\xd8\x80\xfe\x1e\x20\xa0\x97\x65\x57\x44\xe0\x4a\xe0\ \x59\xc3\xb8\xfe\x8f\x58\x22\xcc\x02\x0b\x35\x22\xde\x96\x2d\xbe\ \xae\x1e\xab\xb1\x6c\xdd\x33\x8c\x6c\x60\x45\x73\xcf\xd1\x16\xe3\ \x94\xd2\xd0\x36\xc5\x23\x69\xb0\x57\xe9\x21\x7b\x1d\x1f\x3e\xbe\ \xfe\xf4\x93\x1e\x47\x7e\x7a\x9e\x7f\xfd\x45\xcf\x67\x86\x33\xa3\ \x6c\x7c\x85\x1a\x15\x4c\x1c\xe2\x60\x1e\x03\xa2\x8e\x90\xc2\x0c\ \x62\x1e\x8f\xe3\x8f\x3f\x1d\x7f\xfa\xc9\x8d\xfe\xdb\xa7\xe7\x7f\ \xfc\x5d\x9f\xde\x8e\xa7\x46\x4d\x5e\x4b\xea\x0c\x19\x98\x92\x2a\ \x7c\xfc\xc7\xef\x5f\xff\xdb\x3f\xa7\xfb\xf3\x5f\xff\xef\xf9\xeb\ \x6f\xf0\xe0\xbb\xf7\x1f\xff\xc7\x7f\xd5\xeb\xf1\xe5\xff\xfc\x73\ \xfe\xfb\xb4\x1e\x35\x18\x88\xa4\xcf\xf7\xa6\x9f\xbe\x1b\x7f\xfc\ \xe1\xe5\xe3\x3b\x23\x0e\xa8\x03\x6e\x0d\x26\x8a\x7c\xce\x67\xbe\ \x7d\x8a\xff\xf8\xc5\xff\xf6\x39\x3f\x9f\x30\xda\xa3\x06\x58\x7a\ \x7c\xfc\xee\xf5\xbf\xfc\xa7\x27\xe3\x53\xfc\x99\xfe\x99\x8a\x74\ \x97\x7b\xad\xc9\xea\xb6\x49\x1a\x6c\xd0\x1e\x31\x86\xde\xbd\xe3\ \x8f\xdf\x3f\x07\xdf\x7e\xff\x34\x61\x2f\x8f\x97\x12\x01\xd8\xd3\ \x75\x3a\x1d\x11\x1e\x23\xfd\x10\x3d\x8f\x67\xda\x4c\xf7\x60\xb8\ \xa6\xe3\x9c\x7a\x4e\xf0\xb3\x8e\x4f\xd0\x5b\x0f\x4f\x92\x81\x98\ \x48\x10\x15\x39\xea\xb4\x3c\x0e\x7d\x78\xff\xee\x3f\xfd\xf1\xe5\ \xc3\xf7\x91\xf2\x2f\xcf\xf3\xb7\xd3\xcf\xa7\x57\x29\x28\xf2\xe5\ \xf1\xf8\xfe\xe3\xcb\xf7\xef\x0d\xf2\xef\xff\x8e\x3f\xff\x15\x3f\ \xff\x76\x9c\xfe\x20\xdf\x94\x01\x3d\x5f\x3f\x9c\xdf\xff\xf0\xd9\ \x22\x7f\xfe\x64\x9f\x9e\x88\x16\x2b\xb0\x10\xbd\x33\x80\x18\x39\ \xcf\xe7\x93\xfe\x8c\x2f\xa7\xc5\xa0\x5e\x23\xf1\x64\x1d\xf9\xa5\ \x0a\x33\xd4\xb8\x3c\xa8\x0d\xc0\x6a\xd3\x67\x85\x37\x8c\xb0\x28\ \x88\x7d\x66\x03\xae\x0a\x2a\x20\x2a\xe4\x23\x30\x31\xbd\x5b\x88\ \xad\xf6\x4c\x00\xb2\x3e\xc7\x73\xcd\x17\x0a\xc1\x4a\x32\xd1\xf9\ \x35\x57\x0a\x6b\x89\x4a\x22\x56\x2c\xd4\xaa\xd3\xa2\x93\x7a\x36\ \x21\x0a\x4b\xc6\x93\xb8\x81\xda\x96\xe6\x72\x47\x80\x55\x93\xc3\ \xa6\xb1\x5d\xd3\xb3\xdc\xe1\x1c\xa5\x63\xa8\x2e\x99\x33\x59\xa4\ \xa4\x96\xcf\x14\x77\xa6\xfa\x13\x13\x65\x69\xa6\x47\x70\xd0\x5e\ \x60\x2f\x18\xef\xc7\xf7\x7f\x38\x7e\xfc\x89\x2f\x47\xbc\x9b\x31\ \xa9\x9f\x7f\x8f\xf9\x56\xbe\xf9\x42\x37\x77\x47\x27\x23\x0f\xa5\ \x09\x07\xa5\x59\x79\xb3\x1a\x78\x79\xf5\x8f\x1f\xe2\xfb\x0f\xf1\ \x50\x7c\x78\x4c\x71\xfc\xfb\xaf\x23\xce\x91\xee\xdd\x72\x62\xb8\ \x64\x0a\x05\x33\x68\xe2\x87\x0f\xfe\xe3\xf7\xf3\x79\x3e\x5f\x5f\ \xf9\xe5\x4d\x03\xe3\xfd\xfb\xf8\xf1\xa3\x3f\x8c\x1f\x3f\xcc\xff\ \xf8\xfb\xa3\xb2\x3a\xa9\x39\xc0\xf7\x8f\xe3\x9f\x7e\xd2\x3f\x7d\ \xaf\xc7\x38\x7f\xff\x72\x7e\x7e\xfb\x7c\x7a\xcc\x59\x49\x34\xf6\ \x32\xec\xdd\x43\xef\x5e\xdf\x7f\xf7\xc1\x1f\x1f\x38\x7e\x7e\xfb\ \xcb\xcf\x75\x24\xd5\x2e\x3c\xc6\x63\xbe\xbe\x4e\xa4\x8f\x63\x70\ \xe6\xc8\x88\x79\x1b\xd0\x4b\x79\x80\x06\x3b\xd2\x4c\xe3\xc8\x71\ \x84\x59\x88\x49\x9d\x33\xf0\xf6\xf4\x33\xf2\xf4\x7c\x3b\xf1\xe6\ \x7c\x06\x80\xf8\xee\x45\xdf\x1d\x9a\xf9\xfc\xcb\x2f\xf6\xdb\x73\ \xce\x73\x7a\xcc\xd3\x7d\x4e\x30\xf0\x7c\x8b\x2f\x31\xf2\x00\x82\ \xf5\x82\xc2\x0e\x15\xc5\x47\xb5\x29\x3a\x7e\xfc\xe1\xdd\x3f\xfd\ \x51\xef\xbf\x3b\xdf\xe6\xf3\xaf\xbf\xe7\x6f\x6f\x78\xf3\xf4\xa8\ \x60\x8d\x10\xe6\xcb\x3c\x9f\x78\x37\xf5\xfe\xa7\x1f\xf1\xc7\x7f\ \xfa\x34\x0e\x87\xe5\xdf\x3e\x8d\x19\x0f\xd2\x87\x9d\x76\x3c\xf5\ \x70\x9f\x8f\xbf\x7c\x79\xfd\xf9\xf7\xea\x9f\x10\x49\xaf\xd9\x95\ \xd7\x6c\xfc\xc4\x1b\xc2\xe5\x6e\x93\x0c\x21\x2b\xe1\xe1\xf0\x7c\ \xa2\x33\xbe\xc8\x8c\xba\x41\x22\xb6\xf3\x46\xc9\x19\x51\x01\x59\ \xcb\x91\xc1\xde\x62\x0a\x85\xf7\x4a\xa5\xa9\xbe\xd5\x85\x26\xa0\ \x75\x0a\x52\x6f\xf8\x63\xb9\x7b\x16\x66\x03\x99\x31\x83\x32\x5c\ \xac\xcc\x6a\x31\xae\xbe\x77\xd0\xd4\x6f\xd5\x4d\x25\x57\xbd\x48\ \xec\xb8\xae\xcc\x1a\x85\x00\x30\xeb\x68\x9b\x4a\x2e\xa8\x29\xd8\ \xe2\x68\x2f\x2d\x32\x17\xfc\xa9\x05\xce\x42\x98\x64\x4a\xab\xf2\ \x5c\x9b\x5b\xde\xef\xb2\x44\x13\x84\xaa\xb5\x64\xa6\xd7\x31\x5e\ \x60\x2f\x1c\xaf\x7a\xff\xdd\xe3\xe3\x8f\xae\x87\x87\xc6\xeb\xe3\ \xf8\xce\xe3\x4b\xf2\x8b\x59\xcc\x8c\x99\x31\xd5\xc1\xaf\xe5\x7c\ \xb4\x21\x3b\x38\x82\x26\x1a\x6d\xc8\x2c\xc6\x71\x1e\xe6\x87\xcd\ \x41\x8e\x77\xc7\x3f\xc9\x5c\x31\x7f\x4b\x3c\x9b\x1f\x5b\x2e\xc6\ \x6a\x91\xc2\x25\x9d\xc7\xe3\xf9\x7a\x38\x13\x8f\x63\x8c\x97\x0c\ \xcc\x31\x62\x98\xbf\x8c\xe3\x71\x68\x3c\x84\xf4\xf0\x69\x36\xff\ \xf0\xfe\xf5\x5f\xfe\x64\x3f\x7d\x37\xe7\x79\xfe\xf9\xb7\xfc\xcb\ \xcf\xc7\xe7\x79\x2d\x9d\x45\x1f\x8a\x43\xf6\xdd\xeb\xf8\xf1\xfd\ \xeb\x77\x1f\xf1\x9f\x5f\x3e\x8f\xc3\xff\xe3\x97\x97\x99\x22\x93\ \x39\x79\xc0\xcc\x99\xb0\x97\xe4\x5c\x94\x36\x42\x8b\x7e\x94\x22\ \x8d\x38\x92\xc3\x39\x00\x53\xea\x48\x64\x28\xdf\x4e\x9e\xa7\x9e\ \x19\x67\x9c\x9f\x67\xbc\x9d\xf8\x72\x42\x94\x1d\xc7\x77\x07\xe7\ \x9c\xbf\x4d\xfe\xfc\x76\xcc\x40\xb8\x9d\xd3\x7d\x9e\x98\x19\xe7\ \x98\x49\xc8\x49\xc7\x08\x8b\xc8\x80\x98\x64\x50\xae\x83\x1f\x3e\ \xbe\xfb\xd3\x9f\xf4\xe1\xc3\xa7\xcf\x6f\x5f\xfe\xfd\xef\xf6\xf3\ \x97\xe3\x44\x0a\x11\x59\x82\x54\x9a\x5e\x35\xce\xdf\x7c\x7e\xf9\ \xfb\xf9\x09\xfc\x2f\x3f\xe8\x8f\x7f\x04\xc6\x9c\x7f\xb6\xbf\x7f\ \x16\x18\x14\x60\x47\x1e\x1f\x42\x87\x73\x4c\x44\x25\xb8\x45\x20\ \x9c\x7d\x48\x87\xc3\x33\x03\x51\x71\xe7\xaa\xd8\xe8\x9a\x2a\x0d\ \x0c\x67\xa8\x54\xa0\x89\x95\x3a\x6c\x48\x05\x5c\x4c\xd9\xf0\x32\ \x4c\xd6\x1e\x5c\x56\xa1\x64\x51\x48\xb3\x9c\xac\x55\xdc\x57\xa2\ \xfe\xd4\x96\x57\x77\xea\x0b\x33\x4b\xef\x5c\xfa\xb8\x2c\x07\x23\ \x77\x1a\x78\xa7\x8e\xd6\x8b\x50\x54\xa8\x1c\x0b\x97\xd1\x32\xf2\ \x7a\x5b\xaa\x49\xee\xa4\xde\xe6\x09\x46\x07\x5a\x75\x09\x59\x1b\ \xdd\x10\x6c\xa3\xd9\xd6\x90\xfb\xca\xd6\xed\x46\x3f\x21\x6a\x70\ \x0c\x9a\x92\xa6\x51\xdd\x59\x75\x51\x6d\x31\x59\x24\x00\xd3\x30\ \x58\x60\xbc\x3b\x5e\x93\x0f\x1e\xef\x5f\xbf\xfb\x69\x3c\xde\x7f\ \xf9\x72\x4e\xcc\xc7\x77\xdf\xdb\xbb\x0f\xe7\xeb\xd3\xcf\xe2\xee\ \xb0\x93\xb5\x35\x08\x83\x46\xc8\xa4\x07\x39\x98\x28\x11\xe8\xd0\ \x70\x3b\xdc\x8e\x30\xab\x91\xe4\x78\x7d\x87\x9f\x10\xcf\x78\xfb\ \x39\x79\x4e\x25\xac\x7a\x00\x29\x8e\xca\x87\x1d\x6f\xc7\xf1\x66\ \xca\x43\x0f\x3b\x0e\x3b\x90\x1e\xe0\x14\x4f\xd3\xd0\x61\x76\x64\ \x44\x98\xf2\xe3\xab\xfd\xcb\x3f\xfb\x3f\xff\x10\x4f\x9f\x7f\xfe\ \xd5\xfe\xd7\x2f\x1f\xbf\xb8\x39\x52\xf2\xc1\x2c\x07\x73\x30\x27\ \xe2\xf9\x36\x7f\x3f\xed\x9f\x4d\x3f\xbd\x8e\x7f\xfe\x13\x27\xf4\ \xd7\x4f\x2a\x78\x3e\x8f\xb4\x47\xd2\x0f\x3e\xc8\x67\x41\xf3\x16\ \xff\x7a\xb1\xf2\xfa\x12\x38\xc8\x11\x22\x4c\x69\xd5\x35\x4a\xe1\ \xf5\x5b\x0c\x57\x84\xd5\x35\xef\x01\x24\x2d\xe9\x8e\x63\x22\x1c\ \x88\x12\x43\xd8\x23\x23\x5c\x09\x73\x9c\x48\xa5\xa5\x47\x16\x07\ \x44\x7a\xb8\xcc\x5f\xc6\xcb\x4f\x3f\x1c\x1f\x3e\xbc\x7d\x99\xe7\ \x5f\x7e\x1d\xbf\xbe\xbd\x9b\x44\xc6\xa7\x98\x25\xf9\x45\x24\x63\ \x58\xe4\x08\x8b\x67\xf8\xdf\x7e\x9f\x12\xfe\xeb\x8f\x8f\x1f\x7e\ \xf0\x3f\xbc\xcd\xa7\x73\x7a\x85\xcc\x2b\xf0\x7a\x96\x24\x6b\x05\ \x6a\x30\x57\x18\x68\x24\xa6\x31\xe0\x85\x38\x88\x9e\x26\xa3\x62\ \x23\x6a\xc5\x35\xc0\x59\x75\x5d\x11\x16\x54\xab\xbb\xb4\x22\x41\ \xab\x84\xcb\x4a\x30\xb3\x42\x93\x1a\xf8\x49\xac\x0c\xe0\xcc\x11\ \xed\x57\x98\xb9\xa2\x42\x6e\xc1\x6d\x54\xd3\x97\xd8\x16\xf2\x58\ \xce\xb9\x40\xdb\x06\xac\xdf\xa2\x46\x2b\x67\x8c\x9d\x60\xb1\xd2\ \x2c\xf6\xe3\x0e\x8a\x31\x63\x91\x3d\x96\x61\x75\x95\x96\xcb\x9b\ \x15\xb5\xb7\xe3\xb5\xf9\xbe\xc8\x6c\xe2\xe5\xb8\x54\x59\xac\x42\ \x6d\x68\x68\xee\x66\xb6\x8f\x6b\x01\xc2\x98\xd4\x38\xa0\x01\x3c\ \x46\x1e\x66\xaf\x2f\xaf\x1f\x10\x96\x9f\xbf\xc0\x1d\xe6\xe3\x78\ \xc5\xfb\x0f\xfe\xf6\xe4\x97\xac\xe3\xc0\xa3\xf0\xe8\x06\x59\x48\ \x51\x4d\x16\x1b\x5a\x7e\xa4\x29\x35\xcb\x1a\x73\xba\x4f\xf7\xe3\ \x81\x1f\x3e\x14\xaf\x74\xfc\xfc\xc9\xce\xb2\xb0\x23\x06\xc3\x38\ \x4a\x3b\x67\x72\x13\xa7\x94\x3c\x2a\x85\x0b\xfa\x04\x06\x1a\x4f\ \x1b\x4c\xbe\xbc\x1e\x3f\xfd\x38\xff\xf0\xf1\x04\xf0\x97\x5f\xdf\ \xfd\xe5\xf3\xfb\xd3\x18\x31\xd5\xa3\xd1\xd1\x09\xb7\x74\xa4\x65\ \x5a\xe4\xdb\xbf\xff\xa2\x87\x5e\x7e\xfc\x60\xdf\x7f\xcc\x5f\x9f\ \x79\x56\x74\x82\x61\x93\x03\xd6\xb6\x86\x5d\xcd\x68\x91\xf6\x6d\ \x25\x07\x18\xa8\x69\x7a\x1a\x26\x39\x90\x0a\x30\x00\x27\x3d\xe1\ \xa4\x93\x95\x85\x53\xf6\x8f\x5a\xc5\x44\x20\x23\x90\x8a\xb4\x6a\ \x02\xd6\xae\x8f\x89\x03\x06\xca\x60\x86\xf1\xa4\xe9\xdd\x87\xc7\ \xc7\xef\x22\xe1\x7f\xff\x74\xfc\xfd\x39\x4e\x50\xf8\x12\x33\xf2\ \x44\x6e\x02\x07\x33\x42\xe1\xc3\x8e\x74\xe4\xdf\x3e\xc7\x31\xf0\ \x9f\xbf\x3f\xfe\xf0\x7d\xfc\xfe\xc5\x7f\xfd\x54\x19\xf7\x19\x61\ \x33\xd8\xca\xa4\x58\x34\xd8\x40\x7a\xc2\x33\x5d\x2d\x84\x9e\x8e\ \xb3\x40\xd2\xc1\x54\x05\x59\xb3\x56\xd5\x09\xa4\xd9\x88\x4a\xfa\ \xe1\xd2\x65\x27\x60\x99\xb4\x70\x57\x9b\xd4\x4a\x6b\x73\x8b\x73\ \xca\x0a\xac\x0b\x53\x39\xaf\x29\xd3\xb2\xcd\xf1\xf6\xfe\xf0\x16\ \x80\x58\x4d\x87\x65\x62\xf6\x20\x73\xf4\xb6\xa0\xe5\xe4\x99\x99\ \x23\x7c\xa9\x6f\x1a\xa8\x4b\xd1\xea\xda\xda\x51\xf1\xf7\xc8\x9d\ \x6b\xfa\xc5\xb5\x9c\x2c\x9d\x02\x7a\x27\x54\xcf\x2c\x93\x49\x65\ \xd2\x5a\x79\x3d\xb4\x35\x67\x01\x80\x63\x11\x04\xcb\x40\x5b\x3a\ \x37\x51\xc6\x61\x3a\x60\x0f\x52\xe3\x78\x79\xbc\x7c\x38\xec\xf5\ \xed\xcd\xf5\x74\xce\xcc\x4f\xcf\xf1\xc3\x0b\xde\x7d\x18\x9f\x9f\ \x38\x83\x80\x42\x2c\x87\x04\x95\xa4\xd1\xc0\x72\x8e\x0d\xe5\xb0\ \x34\x23\x33\x72\x04\x3c\x31\x66\xfa\xaf\x9f\xe2\x98\xfe\xfd\xfb\ \xf1\x87\x0f\x16\xa9\x67\xea\xd7\x67\x45\x4a\xa6\x6d\xc6\xf0\x00\ \x55\xcd\xfe\x48\x0e\x08\xc8\x80\x18\x85\xcb\x6f\xa9\x0b\xdf\x3d\ \xf8\xe3\x07\x8d\xc1\x5f\x7e\xd7\x5f\x7f\x7b\x7c\x99\x19\x78\x0a\ \x4f\x42\xc8\x87\x17\x66\x37\x27\xe9\xd5\xd8\x26\xf9\x65\xc6\xcf\ \x5f\xf2\x78\x0c\xbc\xc4\xf1\x4e\xfe\x54\x15\xb7\xce\x1e\x9a\x85\ \x04\x04\x0f\x99\xb3\x80\x32\x28\x9b\x81\x55\x20\xe7\x26\xe3\x97\ \xbc\x60\x64\x5a\xa4\x82\x48\x78\xc0\x02\x74\x64\xa6\x55\x17\x11\ \x1e\xc8\x62\xb1\xfa\x99\x08\x8f\x98\x05\xcb\x8f\x95\x23\xa4\x28\ \xdd\xb5\x99\x86\xa5\x51\x87\xbd\x7e\x18\xc7\xcb\xf3\xd3\x1b\x7f\ \x7b\xbe\x73\x20\xf9\x96\xa7\x33\xe4\x11\xf3\x8c\xda\x50\x8f\x31\ \x50\x43\xba\x24\xf1\xfa\x0c\xff\xf9\x4b\x7e\x7c\xc5\xbb\x47\x7c\ \x78\x97\x9f\x4f\xf9\xe2\x9f\x61\x81\x8b\xb3\x05\x99\x2b\x83\x84\ \xb9\x11\xac\xfd\xdf\xb2\x22\x54\xd9\xd2\x1d\x26\xd3\xdb\x35\x07\ \x53\x07\x82\x17\x05\xa1\x36\x2a\xa8\x30\x00\xdb\x46\xea\x9a\xb1\ \x77\x70\x58\xd4\x04\x9b\x56\xe1\x2e\x05\x9d\x99\xe9\x3b\x63\xac\ \x52\x09\xb6\xad\x66\x05\x62\x27\x81\xca\xc8\xe2\x26\x3e\xb6\xa5\ \xbf\x5f\xb9\x51\x8e\xd6\x35\xe0\x28\x77\xa1\x2e\x68\x60\xb7\xf5\ \xc9\xb6\x40\x67\x53\xfc\x56\x60\x4b\x89\x56\x6a\x8d\xce\x45\x48\ \x50\x07\xb6\xb7\x8d\xcc\x68\x03\x1a\xd9\x03\x8e\xfe\x13\x04\x47\ \xfb\xc9\x17\x12\x97\x36\x78\x1c\xf6\x22\x3c\x0c\x2f\xd2\x23\x1f\ \x2f\xf6\xfa\x8a\x89\xf8\x7c\xea\x24\x22\xf9\x65\xe6\x6b\x3c\xc6\ \xbb\x78\x7d\xfb\xfc\xf9\xa9\xa4\xc1\x2d\xdc\x2a\xae\x95\x66\x18\ \xd4\x48\x1d\xd2\x38\x60\x84\xa2\xa4\xcb\xc9\x41\x21\x31\x3e\x9f\ \xe3\xf7\xb7\xa4\xf3\x87\x8f\xe3\x87\x0f\xf8\xec\x67\xfc\x3a\x9e\ \xb3\xfa\xb3\x01\xd6\xdb\x21\xda\x4b\xcb\xf9\xcd\x4d\xc9\xec\xc8\ \x7a\x32\x19\x30\x2a\xe9\xef\x5f\xf8\xf1\xbd\x39\xe2\xe7\xcf\xf6\ \x79\x2a\x94\xe9\x02\x1f\x33\x8e\x0c\x86\x67\xa5\x06\xbb\xac\xa4\ \x30\x46\x0b\xe5\xcf\x4f\x7c\xfe\x35\x92\x98\x43\x4c\x2a\x02\x56\ \xb7\x99\x53\xd4\xb0\x6a\x77\x73\x58\x44\x21\x8e\x56\x91\x7b\xb8\ \xac\x10\x2a\x4c\xa5\xa7\x07\x2c\x61\x54\xc5\x09\xa6\x56\xac\x39\ \x88\x99\x63\x12\x61\x67\x39\xc7\x91\x06\xcf\x74\x30\x92\x51\xbf\ \x36\x61\xcd\x5d\xc9\x04\x07\xcc\x26\x46\x1c\x8f\xc7\xf1\x62\xce\ \xe7\xa7\x69\x13\x95\xf5\xca\x70\xc6\x8c\xe9\x75\x71\x35\xf0\xb4\ \xb7\xe0\x86\x92\x95\xbc\x3d\xf5\xfb\x33\x3f\xbc\xfa\xfb\x77\x87\ \xbe\x8c\x37\x8f\x50\x65\xbf\x26\x61\xd6\x49\x86\xcc\x86\x2a\x80\ \x99\xb4\x5c\xbb\x07\x4b\xd1\x19\x60\x24\x67\xf9\x31\xda\x8d\x5b\ \xc9\x2b\xe9\x19\x6b\x61\xbb\x02\x82\x92\x1e\x18\x32\x08\x11\x2e\ \x32\x96\xbf\x20\x17\x5d\x23\xb2\x19\x6a\x83\x56\x99\x0b\xaa\xb9\ \x59\x0f\xa8\xdb\x9f\x11\xd5\x72\xd5\xa7\xe7\xe5\x70\x02\x2a\x7f\ \x7a\xab\x67\x96\x51\x53\xd2\xc8\x1d\xef\x46\xae\x74\x93\x4b\x41\ \xcd\x15\x8d\x5b\x1a\xbe\x8b\x90\xbb\xe4\xfd\xd7\xfa\x25\x41\xb3\ \x9e\xcd\x47\x2b\xae\xb2\xbb\xaa\x22\x31\x5b\x01\xa3\x16\x7d\x82\ \x2b\xad\x94\x8b\x01\xa5\x06\x8b\x73\xbc\xe8\x81\xf1\x72\x3c\x5e\ \xcd\x8e\xf9\x9c\xf3\xf3\x59\x49\x19\xf9\x36\xe7\xa7\xb7\xf1\xf1\ \x38\x5e\x5e\x9f\x8f\x23\x3d\x98\xb2\x0a\x63\x22\x92\x36\xa0\xe8\ \x25\xba\x89\x23\x56\x12\x9a\xa9\x84\xca\xf9\x9a\x78\x7c\x7a\x3e\ \xd3\x21\xf1\xbb\x1f\xf2\x4f\xdf\x4f\x0f\xfd\xf5\xb7\x97\xb3\x45\ \x20\xd1\xd5\x95\x94\x64\x54\x97\x5c\x67\x5f\x09\xbf\xb5\x54\x1c\ \xc4\xcb\xc1\xd7\x11\x5f\x4e\xfc\xf6\x66\x15\xfb\xc9\x60\xea\xd1\ \xa9\x74\x19\x40\x12\x23\x99\x13\x30\x48\xb0\x50\x3e\x61\x5f\xde\ \x4a\x1e\x2a\xab\xc9\x5d\x9d\x3c\x8c\x31\xfc\x51\x6e\x25\x28\xb2\ \x56\x2f\x8d\x85\x1a\xc6\x97\x11\x8f\xc1\x77\x07\x8e\xce\x48\x2e\ \xe2\x54\x6b\x63\xb4\x82\x4b\xcb\x55\x51\x25\x5e\xb4\x23\xa5\x98\ \x60\x9b\x80\xb6\x56\x18\xec\x6c\x4e\x15\x3a\xd4\x52\xe2\x38\x86\ \x3d\x72\x22\x9f\xbe\xcc\x42\xb1\x92\x52\xcb\x56\xd0\x88\xa0\xad\ \xc0\xa9\x6b\x02\x11\x78\x4e\x44\xea\xf1\xa0\x06\x2b\xfe\xd7\x93\ \x22\x3f\xbc\xa7\x8c\x99\xf4\x64\x78\xc5\xac\xaf\x0b\xe0\x79\xf8\ \x39\x9f\x6f\xf3\x2d\xca\xf5\x9d\x32\x65\xb8\x52\x90\xcf\xb2\x36\ \x71\xa1\xfa\x54\xfe\x5e\x96\x2a\x27\x73\x35\x7e\x0d\x0b\xbb\x25\ \x9c\xd8\x92\x44\x18\xa2\xd3\xb2\x86\xac\x47\xd7\x55\x31\xb2\x09\ \xa8\xbb\x9c\x62\x33\x10\x1a\x51\x95\xfb\xd6\xa0\x24\x65\xc6\x96\ \x82\x8e\x4d\x8a\xb1\x5a\x9c\x34\x42\x6d\x87\x7c\xa4\xa8\xf5\xc2\ \x14\x67\x47\x8d\xb0\x84\x6a\x1f\xbc\x76\x38\xdf\x80\xaa\x2b\xae\ \xc2\x4c\x1a\xb4\xda\xd8\xa8\xb3\xfd\xea\x15\x93\xd1\xc2\x1b\x53\ \x6f\x55\x9e\x71\x48\xe3\x18\x2f\xd2\x61\x3a\x5e\x8e\x17\x3a\xfd\ \xcb\x93\x9e\xa3\x8e\xc6\x70\x7f\x3b\xfd\xbd\x3f\x1e\xaf\xfe\xfa\ \xde\x67\x88\x2e\x94\x65\x72\x2d\xd4\x79\x4d\x49\xca\x8b\x8a\xc6\ \x95\x06\x1d\x3c\xe3\xf1\x4c\x9b\xf3\x0b\x3f\xcd\xf1\x0e\xdf\xbd\ \xd3\x9f\x3e\xda\xd3\x8f\x9f\xdf\x0c\x70\xf1\xd4\x9c\xc6\x10\x1a\ \xd6\xc1\x76\x15\x54\x41\x68\x35\xa6\x54\x41\xc4\x8f\xa4\xfc\x39\ \xf1\xf4\xe1\x95\x71\x55\xdc\xca\x8c\x10\xcd\x60\x48\xaa\xfd\xdd\ \x82\x4c\xe9\x61\xdb\xcb\x5a\x26\x6c\xb6\xff\x2b\x87\x1e\xff\x0f\ \x55\x6f\xdb\x24\xd9\x71\x5c\x69\x9e\xe3\x1e\x71\x33\xeb\xa5\xbb\ \xd1\x0d\x80\x00\xa9\x21\xa5\xd5\xc8\x46\x36\x3b\x36\xb6\xff\xff\ \x17\xec\x2f\xd8\x35\x5b\x99\x69\x64\x23\x8d\x48\x11\x04\x08\xf4\ \x4b\x55\x65\xde\x1b\xee\x67\x3e\x78\x44\x16\xd6\x8c\x9f\x40\x1a\ \xd1\x5d\x95\xf7\x66\x84\xfb\x39\xcf\xf3\xf6\xcd\xa9\x9f\x2d\xab\ \x2d\x83\x64\xdc\x16\xd0\x6c\xae\xcd\x78\xee\x38\xfb\x7e\x72\x74\ \x72\x4c\x3e\xc2\xa4\x8c\x9b\x9a\x4d\xd1\x47\x81\xaa\xcb\xc2\xec\ \xaf\x8c\x20\x2b\x79\xb2\xdd\x98\x77\x29\x9a\x1b\x90\x32\x15\x66\ \x14\x0e\xeb\x0d\x2d\xd2\x6c\x7d\x8d\xac\x13\xbf\xa6\xf3\x89\xf5\ \xeb\x9c\x4d\xfa\x95\x42\x75\x12\x47\xa6\x46\x3a\xcd\x9a\xb3\x25\ \x49\x86\x1a\x5b\x7f\x7c\xe4\xe9\x8c\x00\x55\x97\x97\x62\xe3\x8c\ \x8c\x40\x1c\x7d\x1c\x57\x7e\x89\x71\x05\x3b\x47\x50\x61\x0a\xcd\ \x90\x97\x61\x16\xc6\xf2\x75\xb1\x91\xd5\xcf\xd3\x7c\x8e\x6a\xa6\ \x64\x45\xa3\x0a\xca\x53\x29\x2b\x72\xb2\x2a\x36\x69\xb0\x84\x8c\ \xb2\x29\xf8\xab\x24\x89\x00\x96\x4c\xe5\x95\xdf\xa9\x19\x65\x5f\ \x4d\x6c\x2e\x41\x8f\xc1\x8c\x11\xc5\xa1\x6a\xb7\x40\xda\x8d\xe1\ \xc7\x45\xff\x9b\x34\x9b\x3a\x49\xe5\x4c\xd4\x38\xe7\x67\xb1\xda\ \xd9\xf3\x31\x58\xd5\xd3\xfa\x0a\xf3\x95\x9d\x31\x5a\x73\x37\xe3\ \x92\x04\x54\xf0\xdb\xaa\xc1\x9a\x4a\x63\xaf\x78\xaf\x9b\x37\xdb\ \x9a\x9d\x9b\x9d\xcc\x36\x5a\x6b\xed\xd4\xac\xc7\x48\x1c\x6a\xa5\ \x7f\x07\x01\x3f\x42\xfb\xf5\xd8\xee\xdb\xf9\xfc\xb0\xef\x61\xba\ \x52\x51\xe4\x20\xd0\x0d\x4e\x36\xcd\x2e\xe4\x74\xda\xa4\x8c\xf0\ \x96\xe6\x30\x0f\x7a\xc2\xc4\xfd\xcb\x71\x9c\xbf\xb0\xb5\xf3\xe3\ \x5d\xff\x26\xf3\xfa\x0b\x5e\x8e\xaa\xa7\xa2\x12\xe9\x44\xd6\xfb\ \x6d\x72\x8e\xad\x7e\x08\x85\xac\x52\x73\xef\x7e\x24\xf2\xc8\x93\ \xd8\x45\x17\xb3\xaa\x38\x62\x73\x1a\x9b\x9f\xdc\xee\x36\x14\x4c\ \x97\x90\x15\x3d\xc7\x9c\x6e\xc9\x63\xbf\x28\xf6\xe2\x9f\x50\x4a\ \x35\xdf\xd8\xb9\x15\x74\x36\x1d\x81\x14\xb3\x62\xc9\x65\xd3\xc5\ \xc9\xa2\x6b\xb4\x5a\xa1\xde\x12\x25\x66\x56\x1f\x6a\x36\x2b\xe6\ \x9e\x81\x6e\xf5\x0d\x63\xee\xf0\xfa\xf9\x51\x55\x3a\x98\xb8\xdc\ \x45\xa5\xc5\xac\xfa\x59\x53\xdb\xc8\x3e\x49\xa2\x20\xd8\xcc\x06\ \x2c\x3c\x8b\x13\x38\xcd\x38\x85\xd2\x7a\x4d\xc7\xd2\x68\x76\x30\ \xab\x29\x48\x15\x04\x25\x08\xeb\x69\x4d\x18\x97\x23\xae\xfb\x3c\ \xe0\xa5\xa8\x54\x0e\x14\xcf\x31\x62\x8c\x5d\xa3\x96\xc3\xcd\xad\ \x21\xab\x47\x3c\x52\x6a\xde\x22\x83\x25\x3f\x53\xd1\x76\xaa\x66\ \x40\x53\x64\x79\x1b\xa7\x42\x7d\xf1\x20\x2b\xe5\x09\x95\x8d\xa7\ \x9e\xad\x66\x80\x30\x00\x4b\x39\x2d\x22\x65\xb3\xa3\x5d\x51\x48\ \xbd\x7e\x4d\x4c\xab\x65\x91\x2e\xcd\x6c\xdc\x2c\x51\xaf\x1c\x48\ \xbe\x3e\x36\xeb\x3c\x38\xaf\xf4\xfe\xff\xb7\x53\xbe\x62\x0b\x69\ \xce\x85\x1f\x80\x55\x46\xb6\x5c\x1d\xa4\xd5\x65\xdc\x34\x8b\x0a\ \x4e\x73\xb9\xc1\x0d\x26\x99\x65\x61\x46\x67\xf2\xbf\x38\x80\x06\ \xf7\x79\x05\xda\xdc\x4e\x66\xdd\xfc\xe4\x7e\xee\xdb\x9d\xa1\xed\ \x47\x28\x61\x2a\x3c\x0d\x64\x8d\x03\xb9\x0f\x6c\xea\xed\x9c\xfd\ \xd0\x2e\xb3\x84\x62\x52\x06\xdd\x12\x8e\xea\x18\x63\xb6\x7d\xfc\ \x06\x48\x88\xfa\xb9\x92\xa4\x27\xf2\xe3\x95\x7a\xf2\x0f\x6f\xf0\ \x78\x97\xdf\xc4\xf8\xe5\x8b\xf6\xa3\x91\x1d\x0e\xe1\xa8\x18\x78\ \xb1\x2d\x6b\x8d\x22\x30\x54\x24\xe5\x1b\xa0\xd1\xaa\x41\x4a\x5a\ \x7d\x85\x48\xd6\x1c\x91\xa4\x4e\x77\xf7\xed\xeb\x37\x79\x6a\xf2\ \x7a\x51\x63\xb6\xa1\x25\x01\xc7\x67\xe0\x53\x58\xc2\x20\x0b\x4b\ \xe8\xf9\xe9\x7a\x3c\x5d\x6b\x11\xca\x94\x85\xcc\x20\x63\x32\xe9\ \xb0\x93\xdb\x9d\xb7\x93\xf9\x7d\xc3\x9b\x56\x29\x6d\xd2\xdc\x13\ \x51\x6f\x3c\x99\x99\x0a\x8e\x1e\xf2\x80\x85\xb5\x34\x73\x32\x3d\ \x62\x18\x68\xb4\x88\x01\x16\xf7\xa6\x18\x31\x4e\xaf\x6f\xb4\x9e\ \x72\x09\x1c\x30\x2f\xe8\x06\xcd\x1b\x34\x1c\x1c\x56\x09\x53\xb8\ \x57\x23\xad\x40\x28\xcb\x6f\x32\x6d\x41\x8e\x20\x42\x20\x93\x06\ \xb1\x85\x59\x28\x9f\x0e\xbd\xd4\x63\x23\x29\xa0\xb4\x54\xc1\xd3\ \x94\x91\x79\x14\x8c\x3a\x50\xd7\xf7\x46\xc9\x01\x22\x88\xee\xe6\ \x62\xa6\x22\xb3\xe8\x6c\x14\x32\x72\x24\xea\x45\x61\x53\xdf\x4b\ \x2b\x1b\xee\xca\xdf\xaf\x76\x32\xcc\x0a\x6f\x4b\x6b\x53\x4e\x08\ \xcb\x5d\x8b\x21\x56\x5b\x72\x69\xe4\x18\x99\x32\xa3\xcc\xbc\x92\ \xa4\x29\x57\x41\xe2\xcc\xcc\x8a\xaf\xb3\x8c\x03\xa8\x2d\x4d\x69\ \x33\xa7\x47\x59\x99\x23\xf2\xd6\xea\x59\xd0\x90\x89\xc7\xe1\xb2\ \x69\x2d\x40\x51\xcd\x0a\x30\x8f\xff\x9a\x74\x14\x63\x81\xb4\xab\ \x00\x63\x5e\xb7\x3c\x2d\x73\x85\xb9\xa1\xcf\xa0\x1a\xcc\xab\xf1\ \x6b\xa7\xe6\xf7\x6e\xa7\xb6\xdd\xb7\xed\x7e\xa4\x22\xd3\xe9\x66\ \x6b\x3c\x5e\x49\xe1\x34\x0c\x59\xf7\xad\x9d\xf7\x36\x94\xc3\xcc\ \x5a\x95\xd6\x35\x47\xde\x66\x6d\xc2\x01\xbd\x86\xe6\xac\x55\x31\ \xb1\xc6\x9b\xb4\xf3\x45\xd4\xd5\xbd\xe3\xab\xbb\xfc\xf0\x78\x98\ \xec\x97\x27\xdb\xa3\xe1\x06\x4c\xb1\xea\x36\xcf\xfc\x78\xa2\x54\ \x64\x5c\x44\x11\x0f\x3a\x9c\xf0\x69\xe1\x5d\x0f\xa9\x7b\xd1\x13\ \x18\x5f\xae\xf9\x72\xa1\x9b\x60\x69\xaa\x7d\x0b\x7b\x6f\x5b\xa3\ \x59\xd6\x47\x5d\xde\x6a\xf7\xf7\x72\xc4\xd3\x81\xac\xb2\xf1\x04\ \x25\xa7\xd5\x6b\x9e\xda\x85\x4c\xa2\xb3\x11\xc3\xd2\xab\xa0\xb3\ \xae\x18\x06\x9a\xc3\x82\x3e\x5d\x2a\x2e\x5a\xbd\x55\x93\xa4\xcb\ \x3b\x43\xa1\x28\xcb\x42\x2a\x26\x4c\x88\x75\xad\x77\xc9\x1a\xac\ \x32\x7a\x9d\xbe\xb1\x0d\xed\xf3\xd0\xc0\xd6\x2d\x02\x1d\x40\xf7\ \xad\xdb\x06\xf6\xd2\x69\x2f\xda\x30\xc8\xe6\x6e\x48\x6a\xaf\xdb\ \x83\xbb\xe8\x47\x7a\xe2\x2e\x7d\x8c\x5a\xdc\x13\x21\xab\x9d\x48\ \xa5\x1c\x91\x41\x9f\x2e\x28\xd6\x25\xdc\x8c\x8c\x9c\x32\x93\xda\ \xc4\x17\xb8\xa6\x92\x66\xa1\xf9\x16\x54\xa9\x5f\x28\xa0\xd8\x23\ \x5e\x84\x73\xb2\x6e\x9f\x75\xc3\x6f\x46\x97\x02\x0c\x50\x8e\x34\ \xd0\x69\x31\x79\x81\x0b\x11\x52\xe7\x4d\xa3\x99\x17\x43\xa6\x1e\ \xbb\x57\x36\xaa\x5e\x89\xb3\x80\x1a\xf8\xaa\x47\xc7\x92\x07\x9a\ \x7b\x5d\xd8\x5e\x01\xf5\xb3\x0e\xc9\x4a\x48\x6c\x66\xeb\x51\xf6\ \x25\xc2\x76\x82\xcc\x59\xcd\x22\xcd\xd9\x1a\x9b\x5b\xab\x4d\x88\ \xd7\x49\x6f\x82\x08\xe7\x95\xb2\x81\x06\x73\xf6\x6e\x27\xe7\x66\ \x68\xc6\xcd\xec\xd4\xda\x19\x6c\x60\xf6\xee\xad\x59\xcd\xeb\x8d\ \x26\x67\x77\xca\xc8\xf4\x0c\x58\x3f\x59\xdb\x31\x26\x56\xb4\x56\ \xbc\xe6\x2d\xad\xd3\x4a\x37\x60\x13\x9c\x95\xb3\x3f\x4b\xc0\xc5\ \x01\x53\x72\x0b\xe3\xf3\x38\xf8\x19\x1b\xf1\xf6\x9e\x6f\xef\x19\ \xa9\x8f\x5f\x70\xa4\x65\x5a\x8d\x80\x64\x8e\x56\x17\x01\xe6\x1c\ \xcc\xd5\x37\x27\x8e\xf0\x23\x49\x47\x73\xb4\x40\xcc\x55\x95\x41\ \xc5\x11\x8a\x23\x63\x5c\x0c\x69\xe6\x61\x90\x29\xdd\xd2\x71\xf7\ \xe6\xa1\xb7\x86\xd2\xab\x00\x9e\x6e\x07\x37\x23\x87\x35\x75\x87\ \xd7\x45\x32\x2a\x79\x51\xe9\x7f\x4b\x26\x15\xcd\x65\x33\x3b\xab\ \x42\xb4\xcd\xa5\x00\x4c\xe9\xaa\x6f\x33\x2b\x1e\xa2\xc8\xa8\xee\ \x41\x33\x49\x15\x6c\x63\x63\xa9\x7b\x66\x19\xdf\x26\x82\x69\x62\ \x77\x4d\xa2\x8e\xb2\x18\x35\x79\xcb\x4c\x0c\x37\x18\x6c\xab\xe8\ \xa1\xb3\xbb\x77\xa2\xa7\x5c\x05\xd3\xa2\x83\xb0\xd6\x5b\xdb\x52\ \xcc\x43\x0a\x4f\xc8\x45\x3f\x34\x8d\x1d\xb9\x0a\xce\xb5\x36\x29\ \xff\x76\x26\x39\xa8\xc8\x38\x8a\x87\xe6\xf5\x07\x80\x91\x5e\x28\ \x96\xda\x36\x4d\xb2\x0c\x27\xfc\x83\xb0\x40\x07\x8f\x89\xca\x84\ \x83\xb9\x8c\xed\xd3\xaf\x11\x99\x56\x6d\x82\x3a\x1f\x14\x89\x54\ \x34\x58\x37\xaf\x75\xab\x69\x26\x06\x87\x72\xca\xc5\x9c\xe3\x5a\ \xa1\xea\x5a\xc8\x2e\x2f\xec\x04\xa3\xcf\x88\x72\xcb\x94\x7b\xa3\ \x94\x31\xbf\xe9\x6f\x3a\xb4\x52\x05\xdd\x3c\xa1\x11\x31\x1b\x1c\ \xb7\x2a\xf3\x6a\xa6\x4c\x90\x65\x5d\x83\xf4\x6a\xb5\xb6\xe2\xad\ \x72\x2e\x1d\x56\xc3\xf9\x95\xde\x29\x58\x21\x66\xdc\xbc\x79\xb7\ \xb6\xd1\x9a\x59\x37\x6e\x1a\xb0\x2a\x6c\xaa\x6e\x4b\x4e\xf3\xb0\ \x95\x5a\x20\x91\x70\x6b\xad\xdf\xc5\x5e\x68\xb0\xf9\xd8\x88\x5e\ \x51\x1d\xab\x51\xf9\x4d\x2d\x08\xa4\xd0\xc4\x36\x8b\x6a\x55\xb2\ \x81\xed\xa1\x8f\xcf\x6c\xbd\x9f\xb6\xf6\xf6\x5e\xe3\x18\xcf\x87\ \x8c\x4d\x24\xac\x99\xcd\x65\x89\x40\xa9\xa5\x58\x34\x98\xc4\xb8\ \x8c\xbe\x47\x6b\x7d\x3f\x6f\xe3\x12\x4e\x20\xe0\x6e\x75\x1f\xa9\ \x92\xc7\x64\xde\x8a\x06\x8e\xd2\xb0\x18\xe8\x2d\xc1\x28\xb8\x79\ \x8d\xf7\x07\xd2\xd8\x65\x2e\xf7\x24\xb3\x48\x26\x95\x4b\x9c\x90\ \x89\xc9\xd2\x0c\xab\x69\x73\xed\x39\x17\xeb\x0f\xa8\xfb\x8f\x57\ \xdb\x8c\x48\x60\x88\x21\x07\xdd\x3d\x03\x40\xd8\xa4\xfe\x56\x8a\ \x71\xf1\xc1\x64\x84\x64\xe6\xee\x01\x43\x50\x23\xcd\x75\xb2\x0e\ \xef\x31\xd2\x5c\x66\x38\x72\xb7\x62\x52\xf8\x66\xdc\x80\x52\x06\ \xb9\xdc\x69\x2d\x21\xf4\x66\xad\xe9\x08\x5e\x8e\xf2\x47\x94\x29\ \xd8\xc1\x91\x75\x26\xc9\x54\x02\x01\x0c\x60\x84\x42\x0a\x60\x30\ \x07\x33\x90\x61\x88\x54\xe5\x23\x6a\x51\xee\x53\xe1\x5a\x48\x03\ \x96\x40\xbc\xfa\x09\xd5\xca\x6d\xb4\xb2\xfa\xce\x05\xce\xdc\x3a\ \x52\x12\x9a\xf7\xd5\x45\x4e\xab\xab\x04\x28\x43\x27\x0e\x81\x31\ \xdd\xd0\xd3\x7e\x3b\xf7\x36\xc4\x8d\x00\xc8\x5b\x5c\x86\x46\xf3\ \xe6\x99\x63\xcd\x99\xd5\xf4\x2b\x7b\x4e\x45\xb3\x6f\xc3\x93\x95\ \x71\xce\x5b\xb3\x00\xeb\x3d\x9a\x99\x5e\x60\x13\xfc\xca\x7f\x40\ \x16\x91\x71\xd5\x66\xdc\x68\x6e\x0b\xb0\x54\x4f\x4e\xb9\x1f\x44\ \xd8\xbc\xd6\x1a\xdd\x8a\x35\xe3\x27\x72\x33\xdf\xba\x9f\x1b\x7b\ \x8c\x1a\xa0\x44\xd1\x52\x92\x09\xcb\x30\x12\x41\xc2\x5a\x93\xbb\ \x6f\xf4\xb6\xa9\x07\xc7\x81\x9c\xe0\x04\xe2\x57\x58\xf3\xe9\x0e\ \xf7\xac\xc0\x72\x56\x3f\x9f\xc5\xd0\xaf\x86\x03\x13\x7c\xde\xd9\ \x9e\xfb\x57\x6f\xed\xb4\x8d\x77\xf7\xc3\x5e\xb0\x4d\x95\x54\xbd\ \xcd\xa6\x7a\x40\x54\xd2\x02\x14\x9a\x18\x7b\xe8\x32\xfc\xb1\xdb\ \xc3\x79\x3c\xef\xed\xaa\x06\x50\x6c\xd6\x3c\xb3\xac\x61\xf5\x64\ \x28\x0b\xf8\x4e\x25\x9a\xfb\x26\x72\xc8\x13\x9a\xac\x50\x2f\x07\ \x6b\x26\x23\x34\xff\x48\x82\x29\x93\x5a\xcc\x03\x50\x66\x9a\xdc\ \x08\xd6\x13\x73\xcb\x86\x58\x3d\x58\x96\x45\x40\xab\x7d\x60\xc8\ \x57\x3c\x5c\x9e\x16\x05\xbb\x94\x10\xf5\x95\x5f\x0c\xae\x5c\xe4\ \x23\xd4\x16\xbc\x76\x09\x89\x6e\x5d\xed\xb4\x8f\xcc\x4c\xd3\x69\ \xda\xaf\xac\x7b\xeb\x75\xa2\x83\x9c\xde\xb2\xe0\x5c\xad\xe3\x74\ \x16\x3d\xae\x07\x8f\xac\x53\x91\xe0\x96\x24\xd2\x28\x37\x29\xaa\ \xed\x53\x9a\xee\x43\x0a\x71\x78\x06\x14\x50\x08\xa9\x12\x48\x4f\ \x58\x3b\xe6\x7a\x71\x86\x92\xcb\xb5\x96\x58\xf8\xac\x02\x27\x11\ \x70\xb6\x64\x48\xb1\x92\x02\x95\x43\xd3\xa4\x12\x4d\x32\xa1\x55\ \x56\xdf\xcd\x80\x16\x91\x5e\xbf\xcc\x5b\x0b\x61\xa9\x9d\x6d\xc5\ \xf6\xcd\x16\x17\x7f\xa1\xa8\x6e\x6f\x7d\x80\x4d\x52\x8c\x80\x91\ \x45\x3e\x7f\x15\xcf\xcf\xa9\x9f\x32\xcd\xda\x3a\x32\xcc\x76\x71\ \x35\x31\xb3\x58\x22\x2b\x6f\x52\x2b\x9a\x9b\x22\xd3\xdc\x9a\x35\ \x67\x9b\x1e\x0b\xcc\xb1\x5f\xb9\x72\xcd\x0c\x70\x9b\x9b\x79\x77\ \x6b\xcd\xba\x79\xb7\x76\xea\xed\x44\xd1\x82\x33\x8e\x3d\x87\x91\ \x82\x09\xb4\x7a\xe4\x1d\x86\x54\xb6\xde\xac\xb1\x6f\x21\x80\x61\ \xaa\xcb\x42\x75\x86\x6f\xfa\xb2\x99\x9e\xf0\x9c\x27\xa9\x20\x98\ \xf0\x54\x71\xa0\x89\xb0\x48\x7e\xba\xd2\x9e\xf1\xfe\x8c\x87\x33\ \x0c\x49\x6b\x80\x27\x92\x26\xb7\x99\xc3\x4b\x59\x14\xd5\xc0\x0d\ \xe0\xa1\xf8\x72\xd1\xe9\xb4\xdd\xdf\xd9\xe3\x91\xe3\x52\x3a\xeb\ \xa2\xac\xe3\x35\xeb\x54\x09\xc2\xfa\xcd\x59\x6f\x9b\xc3\x34\xe4\ \xe2\x80\xc3\xca\x44\xbb\xb8\xd9\xc6\x10\x0a\x4a\x0d\xcd\xb4\x3b\ \x5e\x35\x92\x35\x31\x6a\x7c\x8d\xe6\x1a\x19\xac\x07\xca\xaa\xd1\ \x68\x39\x7e\xd5\x7f\x5a\xb2\x11\x33\x87\xd5\xb5\xa9\x25\x62\x9e\ \x40\xea\x97\x55\x9c\xb2\x04\x1c\xcd\x5d\x62\x8c\x80\xa1\xb5\x0d\ \x9b\x86\x14\x71\x38\xb6\x62\xd0\xd1\x1c\xf4\x1a\x4e\xe6\x52\x0c\ \xfb\xe9\xa4\xad\x5f\x47\xc6\x75\x6f\x21\xa6\x89\xc2\x2c\x74\xe6\ \x4d\x74\x9c\xcb\x33\x4e\x05\x73\x88\x83\x0a\xe5\xa0\x86\xb1\x4e\ \x63\x24\x2c\xa8\x6a\x81\x27\xa4\x05\x34\x2e\x65\x48\xce\x5e\x67\ \xb1\x76\x50\x3f\x69\x93\xe6\xbe\x7f\xba\x17\x2d\x6a\x48\x82\xe2\ \x65\x47\xde\xb8\xfb\x30\x52\xad\x79\xc8\x22\x62\x46\x31\x79\xfb\ \x71\x22\x8b\x59\xa7\xa5\xad\x9c\xf8\xc1\x9a\x85\x2d\xde\xdd\x74\ \xe3\x49\x91\x72\xbc\x4a\x59\x6a\xff\xe8\xee\x19\x21\x52\x73\x46\ \x5a\xf7\x02\x2f\x96\x52\xf5\xcf\x33\x17\x2d\x00\x6b\x36\x31\x87\ \xfb\x95\xdd\x6c\x0d\x3e\x23\xd5\xc6\x19\x73\xae\x59\xb8\xcc\x68\ \xcd\xea\xfe\xb3\x19\xcf\xc0\xc9\x6d\x6b\x76\x72\x7a\x8e\x28\x8a\ \x0c\x71\xeb\xbb\x09\x39\xfb\xb9\xa0\x59\x28\x25\xed\xc3\xb7\xcd\ \xfa\x36\x4b\xaf\xe9\x06\x82\x1e\x30\x7a\xb5\xa9\x09\x63\x38\x13\ \xe9\x23\x5c\x55\x5f\xb2\x5e\x24\x8c\x82\x85\xc8\x7c\x08\x31\xf4\ \xe5\xd9\x3a\xb6\x37\x1b\xee\xcf\x03\x4a\x53\x05\x02\x68\x56\xa6\ \x9c\x3e\xc2\xec\x48\x29\xdd\x90\x68\x89\xf8\x72\xd1\xb6\x9d\xde\ \xde\x9f\x1e\x1f\xf6\x3d\xe3\x3a\x4a\xf0\x57\x0e\x9a\x06\x44\x11\ \x71\x30\xcd\x16\xa7\xd3\x66\xde\x72\x24\xdc\x3c\x5d\x19\x15\x80\ \xf5\x04\x0e\xb4\x6a\x40\xc7\xc4\x21\x4d\x35\x06\xe6\xb0\xb9\x38\ \x5d\xa9\x1b\xc4\x47\x72\xc8\x95\xa2\xc9\x4d\xb3\x1b\x1e\x4e\x34\ \x23\xe8\xa5\x48\xaa\xcf\x40\x95\xd6\xa6\x1a\xdd\xed\xd5\x92\x09\ \x9f\x48\x03\xa3\x2c\x0a\x38\x06\xe4\x08\xd5\xe6\xb3\x9f\x52\xc8\ \xc3\x3d\xa3\x4c\x6a\x55\x1c\x11\x3c\x69\x32\xeb\xbd\x7b\xef\x68\ \x3e\x04\x5e\x77\x5e\x26\x69\xd3\x20\x86\x59\x1d\xfc\xa3\x68\x2a\ \xa5\xe1\x94\xad\xe3\x91\xa6\xf6\x79\x46\x6e\x4a\x51\xbd\xe2\x5c\ \x94\x92\xa5\xda\x9c\x0a\xfa\xa8\x0d\x98\xc3\x2c\x2d\x91\x44\x79\ \xba\xa6\x96\xd3\xc9\xac\x51\xa9\x66\x2b\xc6\x8c\xc5\xdd\x99\x9d\ \x66\xa0\xfc\x1d\xee\xcd\x78\xc4\x6b\x0f\x9f\x99\x18\x99\x91\x35\ \xed\xbd\xc5\xe6\x12\x5e\x5b\x62\xa1\xc6\xc0\x4b\x29\xde\x96\xe8\ \x7d\xda\x3f\xb0\x40\x35\xab\xdc\x59\x3f\x81\x95\x56\x9b\x52\x0f\ \x5b\x90\xbe\x59\x15\xf8\xd5\xa5\x85\x34\x73\x59\xf7\xde\xd9\x5b\ \xdd\x1f\x2a\x59\x59\xbc\xe6\xc9\xb5\x41\x43\x33\xb8\xab\x35\xef\ \xcd\x36\xf7\xcd\xb9\x19\x36\x82\x8a\x40\x02\x09\xd3\x2d\x89\x81\ \xf9\x0f\xad\xc4\x43\x06\xa5\x02\x38\x02\x2e\x37\x97\xf7\x21\xac\ \x69\xb8\xe7\x4a\x60\x54\x36\xa9\x16\x01\x96\xa9\x4c\x03\x2c\xad\ \xa5\xa9\xaa\xd1\xac\xef\x07\x8a\xca\xe3\xc0\x97\x8b\x39\xb7\xc7\ \x33\xfa\x4d\x1d\x6a\xe6\x4d\x48\x5a\xdb\x02\xd8\x63\x1f\x95\x7e\ \x41\x13\xb9\xe7\xf8\xfc\x4c\xe3\xdd\xf9\x74\xf7\xfe\xed\xf1\x72\ \x8d\x97\x7d\xec\x51\xff\x3a\x9f\x9b\x74\x80\x70\xf7\xd3\xf9\x04\ \x47\x44\xe4\x50\xeb\x56\x5e\xc8\x9a\x96\x32\x60\x99\x88\xa9\x63\ \x5e\x94\xee\x52\x77\xdf\xbe\x34\x99\x34\xb2\x61\x62\xb4\x54\x66\ \xa2\xb9\xcf\x0c\x9a\x11\x35\x9d\x73\x1a\xbc\x95\x57\x86\x4e\x03\ \xb3\x5e\xb8\xad\x6a\xc4\x59\xee\xec\x95\x3e\x67\xfa\xfc\x37\xc4\ \x5c\x1d\x16\x74\x70\x8c\x20\xcd\xda\xd6\x6a\x4b\x37\x12\x56\xe8\ \x04\x66\xa9\x1c\xdc\xbd\x35\x9a\x8d\xc8\xdc\x07\x8f\xac\x1f\x7d\ \xbd\x24\x8b\x3d\x64\xb4\x51\x0b\xe2\x5c\xe7\x21\x09\xd3\x96\xc1\ \x49\x59\x94\x71\x06\x66\x50\x63\x71\x59\x46\x8e\xfa\x9a\xac\x4a\ \x67\x01\xd4\xb0\xb4\xda\x2c\x31\x07\x42\x4b\x20\x3c\x13\x0b\x0a\ \x01\x75\x83\x28\x6f\x0f\x85\x35\x8d\xba\xd9\xa0\x86\xd1\xdc\xdb\ \x8c\x4f\x13\xa1\x88\xf9\xe1\x37\x1a\x15\x99\x99\x47\x44\xa4\x6a\ \x8a\xab\x5b\x38\x73\x92\x6b\x0a\x66\x7a\xcb\xd3\xad\x32\xa7\xe1\ \xd5\xda\x99\x33\x55\x93\x82\xcc\x8b\x9f\xb2\xde\x09\x36\x5d\x1b\ \x33\xb0\x9d\x32\xb2\xcd\x7d\xbf\x4f\x27\xb2\xd9\x34\x51\x2d\x79\ \x9d\x5b\x6b\x74\x66\x37\x73\xb7\x5e\xc3\x62\x9b\xaa\xbe\x49\xad\ \x26\xb2\x04\xc0\x33\x83\xa0\xe2\x44\x96\x6d\xca\x67\x1c\x27\xa5\ \x48\xf7\xc6\xb6\x29\x31\x7d\x0f\x36\xcd\x4b\x37\xb8\xc7\x42\x57\ \x2c\x9f\xe1\x14\xed\x4d\x85\xfd\x1c\x84\x94\x86\xfc\xba\xe7\x17\ \x7a\x6b\xdd\x36\x01\x5b\x52\xa8\x00\x5e\x09\xa6\x9d\xb2\xa4\x97\ \xd6\xa2\xce\x5d\xfb\x75\xc4\xe7\x27\x45\xde\x9f\x4f\xe7\xc7\x47\ \x9d\xc6\xd8\xf7\x79\x83\xa8\x8b\xf3\xf2\xe7\x09\x88\x18\x25\xcd\ \x64\x66\x9b\xb7\x18\x20\x27\x66\x6f\x0a\x84\xd6\x30\x7f\x06\xe0\ \x75\xc3\xaa\xcc\x35\x83\xea\xce\x56\x97\xe7\x92\xe4\x2c\xb7\xe3\ \x14\xa1\x18\x2d\x27\x5b\x73\x0e\x14\x2a\x0b\x36\x63\x60\x63\x92\ \x88\x6b\xa0\x54\x6e\x9f\x45\x5f\x49\xe5\xe4\x86\x48\x39\x12\x93\ \x74\xda\x9b\xb1\x6d\x45\xde\xe9\xf3\x9d\x46\x13\x14\x11\xe3\x38\ \x8e\x11\x19\xc1\xcc\x46\x4b\xe9\x15\x83\x2a\x31\xd2\x0d\x23\xa6\ \xf7\xbd\x36\xa9\x56\x34\x75\x33\x12\x19\x39\x7b\x29\xc8\xb9\x32\ \x99\x0e\x24\x8b\x35\xe0\xca\xa9\x83\x49\xaa\xc2\xfa\x56\x34\x76\ \x33\x2f\xed\x59\x81\x3d\xa6\xc9\xa5\x46\x3d\x65\xa8\x9d\xf8\x64\ \xad\x53\x6e\x7d\x93\xa0\x94\x13\x81\x12\x7d\xfb\xcc\x19\x97\x25\ \x60\x0e\xe6\x17\x1d\x55\xf3\x0f\x4a\xd6\xf3\x46\x00\xd3\x0a\x99\ \x99\xeb\x82\xb2\xac\x21\xbf\x0e\x57\xf3\x16\x66\x2d\x83\xfa\xeb\ \x14\x20\x43\x30\x38\x9c\x62\xa6\x6a\xdd\xe9\xde\xcc\x5f\xd1\x60\ \x13\x97\x26\xde\x00\x1d\x0e\x53\x16\x25\xd0\x17\x7b\xd1\x6d\x32\ \x07\x91\x31\xa8\xb9\x2d\x46\x86\x96\xae\xde\xe8\x26\xa9\x20\x5b\ \x7e\x2a\x78\x23\xa2\x22\x3e\xde\xbc\x27\xdc\x30\x69\xc2\x75\x09\ \x2f\xc2\x4f\xbd\x1e\xed\x40\x65\xc1\xad\xbe\x1c\x9d\x0e\x69\x11\ \xa6\xe7\xab\x24\xa9\x6b\xc4\x97\xfd\x64\xee\xad\xdb\x51\x73\x10\ \x4b\xc1\xd2\x70\x08\x4c\x0b\x58\x4c\xda\xbe\x79\xeb\x52\xee\x18\ \x79\x7d\x79\x89\xf3\xc3\xa9\xb7\x76\xba\xbb\x5b\x59\x0b\x98\xa0\ \xc8\x1c\xe3\xb8\xee\xfb\x18\x88\xac\xe7\x18\x21\x45\x52\x32\x80\ \x99\x3c\xb2\xd8\x21\x39\x41\xaf\xf3\x87\x34\xd1\xc1\x33\x5e\x51\ \x1a\x62\x93\x90\x23\x69\xf2\xb5\x58\x48\xbd\x22\x29\x8d\x16\x18\ \x42\xc4\x9e\x45\x42\xc6\xaf\xb2\x86\x15\x18\x2c\x1f\x7a\x44\xdc\ \xe0\x27\x5a\xd6\x56\xce\x5e\x31\x6a\x8d\x31\x4b\x56\xb3\xc6\x60\ \x95\x8a\x4d\x58\x42\xa9\x18\x11\xa9\x1c\xc7\x51\xd5\x72\xcc\xb9\ \xd3\x84\x53\x1a\x4d\x63\x8c\x0c\x2a\xac\x30\x4e\x4b\x99\x5c\x52\ \xb9\x44\xa5\x50\x4c\x5e\x88\x7d\x5b\xd6\x27\x15\x34\xf4\xb6\x74\ \x72\x64\xb5\xd0\xc4\x52\xc1\x29\x13\x31\xa3\x28\x85\xf7\xd3\xaa\ \xb4\x44\xfd\x0c\xa7\xfe\xc8\x9c\xf3\x62\x50\xd8\x6a\x4b\x0c\xa7\ \x91\x1c\x31\x26\x7f\x8f\xb3\x0b\xb3\x3e\xd5\x3e\x69\xc3\x35\x09\ \x7a\xbd\xb4\xbf\xce\x04\x5a\xbd\x6b\x53\x8a\xcc\x69\x28\x5b\x7d\ \x80\xf9\xa7\x03\xcc\xbc\x4e\xdc\x53\xc9\x99\x25\xa4\x58\x36\xa8\ \xe4\x14\xda\xcd\x42\x7f\x85\xff\x6b\x91\x3c\x63\x96\x86\x5a\x0a\ \x70\x92\xc3\xa6\x87\xda\x9b\x7c\x72\x34\x8b\x96\x26\x29\xea\x5c\ \x79\x9d\xa6\x4f\x25\xd7\x7a\x19\x48\xc8\x29\xc0\x06\xa3\x24\x6b\ \x86\xd0\xb8\x1e\xcb\x17\x29\x5a\xaf\x34\xd6\x02\x6a\x1b\x49\xa5\ \xe9\xaa\xd4\x35\x32\xec\x98\x3a\x31\x17\x68\xa6\xca\x1e\x17\xb5\ \x52\x84\x98\x43\x7a\xbe\x8e\x94\xac\xd9\x2e\x5c\x93\x72\x23\x38\ \x70\xfd\xf2\x22\x95\xe5\xc3\x6a\x24\x57\x22\xc3\x53\x18\x93\x40\ \x8c\xe3\x25\x0c\xd6\x9b\x17\xa5\x87\x20\x11\x11\x71\x04\x53\xc8\ \x68\x85\x8a\x0c\x28\x07\x00\xaf\x2b\x1e\x10\x31\x54\x66\xd8\x2c\ \xc6\x6f\x1a\x05\xd5\x31\xea\x56\x62\xaa\x26\x1f\x33\x33\x8f\x14\ \x64\x51\x68\xf2\x1a\xca\xcb\x9c\x0a\x54\x42\x3f\x47\x8c\x90\x0b\ \xa6\x84\xd8\xc0\x84\x89\x09\xa3\xa3\x03\xd3\xf1\x05\xd8\xba\xad\ \x43\x90\xd7\xd9\x22\x07\xe6\xc1\xa4\x5c\x8e\x90\xc8\x44\xe4\x18\ \x49\x31\xb3\x6c\x52\xc5\xe7\x5f\x7f\x4a\x80\x29\x64\x2e\x66\x64\ \xcd\xb9\xaa\x6a\x79\x03\xea\xce\xda\x2f\x57\x02\xac\x12\x84\x56\ \x83\x59\xdc\x08\x69\x25\x36\x65\xd2\xb6\xc2\x3c\x26\xab\xb9\x51\ \xa7\x84\xc8\x5a\x08\xa0\x67\x0c\xc2\x9d\x9a\xe2\xd2\x4d\xbe\x7a\ \x77\x00\x00\x20\x00\x49\x44\x41\x54\xc4\xd0\xaf\xac\x97\x95\xbf\ \xa4\x39\x91\x50\xd2\x0b\x96\x9f\x48\xa7\xdc\xdc\xbd\xd9\x98\x0f\ \xdb\xad\x29\xa3\xc5\xb7\xcf\xc8\x79\xb1\xa1\x96\xda\x78\x1e\x8f\ \x1b\x6e\xb4\xa7\x57\xb0\xb4\xdd\xfe\xc1\x2b\x3a\xbd\x12\x75\x98\ \xef\xea\x9b\x4c\xaa\xb6\x9c\x99\xe9\x53\x50\x64\x1d\xcd\xc8\x3e\ \xa5\xcd\xf5\x06\xd5\x54\x03\x08\x94\x39\xdb\xfa\x04\xb4\x14\x7b\ \xf1\xa2\x22\x22\x0f\xd5\xbd\xa5\x0a\x14\x52\x62\x44\x8e\x2a\xc1\ \x51\x22\xb2\x5e\x1d\x0e\xf3\xc9\x59\x34\x29\xf2\x90\x16\x1b\x59\ \x0b\x66\x6d\x6b\xfb\x54\x1f\xf4\xd8\x47\x0c\x40\x31\x67\x7a\x85\ \xfb\xad\x57\xc0\xec\xc7\xcd\x8c\x96\xa5\x62\x4f\x1d\x57\x71\x94\ \x53\xdc\xad\x31\x32\x22\x33\xb2\xca\xb7\x9d\xd6\x50\x5c\x5e\x31\ \xad\xd5\x20\xd9\xa9\xa1\x94\x38\x02\xcc\x35\x3f\x32\xac\x93\x80\ \x88\x6e\xc6\xc2\x0a\xa7\x96\xd9\x7e\x16\xb7\x2a\x14\x42\xcd\x41\ \xe4\xcc\x45\x73\x55\x2b\xd6\xaf\xc3\x45\x05\x33\x26\x9f\x73\xda\ \x95\xe7\x33\x65\xe6\x90\x17\x15\x49\x88\x44\x92\x51\xae\xd6\xb9\ \x7d\x0a\xdd\x50\xc8\x34\x76\xcd\x8a\xca\x2b\xba\xb7\xd0\xb7\x2a\ \xf8\x29\xcb\xc8\x55\xc1\x33\x57\x35\x0c\x69\xd5\x3d\x28\x8b\xda\ \x04\x24\xcf\xb3\xac\xa6\x27\x70\xde\x01\x4a\xd0\x04\x20\x94\x61\ \xaa\x3b\x61\xca\x4c\x69\x60\x2c\x45\x43\x16\x16\x16\xa2\x72\x24\ \xe9\xf0\x69\xe2\x20\x65\x99\x19\x18\x65\xb0\x79\x65\x78\xd4\x57\ \x53\xc2\x90\xc9\x66\xd3\x0c\x0f\x73\x27\x0a\x2c\xaa\x60\x91\x2a\ \xc4\xb0\xfa\xa3\x65\xcd\xfc\x1b\x3d\x91\x9b\x35\x10\xfb\xe8\x6e\ \x6e\x6a\x35\xfb\xcb\x44\xe9\x19\x20\xbf\x65\xf6\x56\xf3\x92\x25\ \x8b\x26\xd9\x90\x09\x77\xa2\x12\xa3\xeb\xe5\xb6\x66\x11\x2b\x84\ \x33\x3d\x67\xa4\xb9\x35\xde\x18\xb7\x36\x0b\x6b\x6e\xbd\x64\xc8\ \x6e\x6e\xd6\xba\x6d\x56\x89\xc8\x0a\xa7\xad\x1a\xce\xfc\x46\x62\ \xed\x19\xe9\xe6\xee\x93\x1b\x4a\xd4\xf4\x49\xd2\x00\xa9\x20\x15\ \x5e\x27\xbc\xcc\xa9\xb7\x2d\x46\xfb\xe4\xde\x0f\x25\x39\x8a\x57\ \xce\x54\xb0\x79\xb3\xe2\x0a\xf1\xb5\xfc\x30\x6f\x12\xf0\x9c\x12\ \x4a\x5f\x73\x44\x33\x4b\xc2\x6d\x7e\x6e\x66\x14\xc3\x00\xa8\xc3\ \xa7\x04\x22\x39\x53\xab\x01\x5f\x47\x01\x1f\x9a\x22\xce\x10\x0d\ \xad\x6a\x8b\x05\x56\x16\x0d\xc9\xba\x47\x0e\x77\x5b\xc5\xc1\x00\ \x22\x8c\xc8\x0c\xce\x28\xeb\x44\x87\x70\xd1\x54\xe7\x94\x6b\x5e\ \x69\x60\xf3\xae\x5c\x75\xab\xb5\xf0\x5c\xaa\x60\x2f\xac\x4a\x16\ \x05\xb1\x50\x8f\x65\x42\x21\xcd\xad\x2b\x8f\x94\x85\x62\xc5\x10\ \xeb\x46\x6c\x6e\xba\x25\xe9\x56\x2e\x7c\x7a\xc4\x52\x4b\x53\x0a\ \xd8\xbc\xcc\xce\x89\xb1\xe8\x44\x4b\x8a\x29\x25\xa2\x86\x69\x05\ \x97\xb0\xf9\x47\x15\x33\x23\xc2\x27\x6d\x39\x4b\x41\x23\x09\x0a\ \x29\x94\x31\x8f\x2f\x02\x13\xcd\x5c\x64\xe4\xb1\x0c\x62\x4e\x46\ \x79\x7f\x6c\xd6\xba\x20\xb3\x64\x78\xe5\x1e\xcd\xb3\xec\xb2\x75\ \x33\x92\x07\x03\xf3\x18\xd7\xa0\x2c\x61\x29\xcd\xd7\xe6\x32\xa7\ \x83\xdc\x90\x52\x23\x03\x49\x63\x02\x89\xa8\x48\x3c\x51\xf4\x59\ \x73\xab\x8d\x2a\x9c\x40\xca\xbd\x3f\xbf\xec\x99\x13\x14\xb2\xb5\ \xd9\x12\xb0\x1a\x84\x9b\x01\x68\x5e\xd2\x1c\x37\x4e\x98\x7a\x2d\ \x45\xbd\x1e\xdb\x9b\x55\x52\x37\x92\x40\xdd\x4d\x6a\xe8\xa1\x72\ \x33\xd9\x7a\x88\xcc\xd1\x1c\x56\x7f\x37\x47\xa5\x0c\xe0\xe6\x35\ \xeb\x70\x77\x24\xd7\xd7\x40\xa3\x68\xf2\x5a\x66\x26\x82\x18\xf5\ \x2e\xa8\x0c\x6a\x62\x30\x4b\xc2\x7c\x63\x7c\x72\x85\xc3\xc2\xe0\ \xe5\xfa\x35\xa2\x44\x78\xb8\xb9\x2f\xb0\x7c\xc2\xf5\xc0\x5a\xbd\ \xc7\x54\x8f\x94\xad\x54\xc3\xe4\xba\x6b\xe6\xe4\xe6\xde\x24\x6b\ \x31\x55\x08\x09\xde\x1c\xf6\xf3\xff\x6d\x7e\xdc\x66\x94\xbb\xc6\ \x64\x75\x41\x29\x26\xaa\x9b\x88\x4d\x1a\xeb\xd5\x54\x63\xc7\xfa\ \xf3\xc7\x22\x68\xd7\x30\x42\xfc\x15\xb3\x6b\x1e\xc4\xf0\xda\xe8\ \xb8\x0d\x67\x96\x74\xb9\x0a\xe3\x10\x14\x8b\x2c\xb9\xee\x23\x55\ \x1f\x99\x15\x03\xd9\x5a\xfb\x4d\x5f\x4d\x71\x26\x6e\xe7\xa2\x92\ \xae\xc7\x7a\x89\xa6\x65\xd5\xc8\xc0\x91\xb9\x2a\x25\x56\xb8\xe6\ \xa2\x55\xd8\xec\x26\x60\x65\x5b\x6b\xc8\x5b\x9b\xbb\x82\x55\xe6\ \x08\x22\xeb\x7f\x32\xb3\x67\xca\x49\x43\xce\x44\xe6\xba\x2c\x71\ \x99\x8f\xeb\xe6\xdf\xf0\xfa\xb3\xf2\x15\x0b\x9b\x23\xdd\x94\x98\ \x01\xd0\xad\x8b\x51\x41\x4e\x83\x65\x99\x4f\xd3\x12\x51\x73\xd9\ \x72\xa1\xc1\x2c\x51\x8b\x08\x9a\x3c\x8b\x4f\x59\xea\x18\xd1\xe8\ \xaa\x01\x6c\x11\x7f\xe5\x20\xbb\xa5\x9b\x97\x5c\x2c\x46\x46\xd6\ \x41\x37\x8a\xf7\x57\x8d\x85\x85\x9d\x9d\x4e\x81\xba\x8f\xb4\x79\ \x27\x9c\xdf\x29\xc5\x20\x5a\x0d\xa4\x09\x78\xc6\x0a\x0a\xc4\x52\ \xf9\xd6\xed\xbe\x95\x23\x61\x21\xe6\xdd\x56\xa6\xc6\xbd\xb9\x35\ \x2b\xcf\x0a\x0a\xb2\x6c\xcb\x71\xe9\x04\x7d\x91\xf9\xd7\xf0\x26\ \x2b\xd8\x0a\x5a\x3d\x56\x92\x66\xd9\x25\x6f\x37\xb1\xd7\x35\x6b\ \xbd\xec\x12\x72\xc5\x3a\x32\x9b\x31\xb9\x96\xb1\x56\x25\xdc\x79\ \x98\xd6\xaf\x40\x1f\x36\xa7\x12\x9a\xfe\xea\xca\x04\xcd\x41\x87\ \x79\xae\xa8\xb7\xbf\xaa\xaa\x8a\xfa\x9f\xc5\xaa\xb3\xbc\x41\x25\ \xb9\xaa\x76\x5a\x4d\xf1\x79\x04\x9e\x0e\xe1\xf9\xc7\xe4\x6a\x43\ \x4d\x5d\x70\xe5\xfa\xd6\x2f\x6f\x26\x16\xb9\xc8\xf8\xf6\x2b\x56\ \x1d\x85\x5c\x7b\x84\x95\xe3\xb3\xd7\x09\x4f\xf9\x8b\xeb\xaf\x87\ \x05\x54\x4d\xd5\x6c\x53\x64\xce\x2b\x4b\x05\x0d\xea\xaf\x59\xf5\ \x61\x9b\x27\xc8\x79\xde\xc9\xf9\xf8\xf9\xb0\xa8\xdf\xe1\x74\x75\ \xa5\x6a\x93\xa8\x55\xe0\x85\x41\x28\xf8\x05\x52\xc2\x6c\xfc\xce\ \x8d\x34\xec\x46\xf8\x9f\xaf\x86\x22\xb0\x2f\x1c\x4b\x7d\xe1\x99\ \x26\x88\x4c\xc4\x84\x67\x46\xd6\xd5\x69\x6e\x38\xb9\x7c\x0b\x74\ \x36\x8a\x89\xcc\x8a\x00\x31\x2b\x75\x27\x18\x18\xd3\xf4\xb4\xbe\ \x34\xd6\x81\xbb\x36\x26\xc0\x04\x00\xd9\x7c\x6d\xc2\x13\x61\x15\ \x0e\xa8\xcb\xad\x31\xd3\x9b\x7b\xa1\xee\x6f\xe6\xd9\xc9\xe7\xbc\ \xd1\xa7\x7f\x65\x7d\xbe\xd1\x36\x17\xcc\xd6\x0c\xba\x25\xad\xad\ \x8a\x02\xf5\xdd\x94\x23\x6f\x72\x9b\x1b\xf9\xe6\xe6\x2a\x9c\xe3\ \x3c\x98\x9b\x99\xcc\x69\xcd\x7b\xf3\x66\xb0\xa5\x3d\x62\x7d\x9a\ \x96\x18\x87\x5e\xdd\x95\xa8\xc2\xc1\xb4\xb1\x4c\xaa\xf5\x54\x44\ \xce\x1a\x94\x15\x43\x19\x53\x2b\x4d\x38\x55\xde\x4e\x2f\x8b\x2c\ \x96\x88\xc6\xe6\xf5\x5f\xfa\x95\x34\x06\x56\x41\xfa\xc5\x1e\xb9\ \x69\x1c\x6c\x69\xa1\x34\x33\xdb\x35\x17\x9b\x79\x3f\xc6\x3a\xa9\ \xae\x16\x6a\x99\xa9\x54\x1e\x9c\xf9\xa9\xb2\x45\xb6\xaa\xb0\x14\ \x53\x70\x5a\xdd\xc7\x57\x39\xc8\x56\x0b\x6d\x01\x4d\xc4\x6a\xae\ \x84\x96\x7c\x94\x6b\xaf\x53\xbf\x2a\x2f\x29\xee\xe2\xd8\x9a\xd3\ \x26\x86\xc8\xe7\xa4\x34\xdd\xcd\x91\xe5\x1f\xd1\x54\x06\x20\x6d\ \xa5\xb5\x65\x0e\xb8\xcb\xec\xa6\xbd\x9b\xda\xed\x42\x7a\xd5\xad\ \xc6\xe7\xd5\x96\x91\x70\xa5\x94\x8a\xe6\x0d\xf3\x63\x30\x23\x8b\ \xb3\xaa\xb4\x1c\x14\x55\x1d\x98\x66\x9a\x59\xe1\xc2\x04\xfa\x4f\ \x11\x5b\x41\xf6\xe6\x30\xdb\xe6\x0f\xb6\xb4\x3c\x5e\xdf\x1f\x51\ \xbd\xa5\x99\x85\x5b\x2f\xe2\x4c\x03\x86\xe9\x46\x15\x20\x5d\x58\ \x83\xbe\xba\x51\x62\x9d\xa7\x59\x20\x1c\x3a\xad\xac\x23\x90\x1b\ \xa6\xf2\xa2\x06\x6e\x58\xc1\x19\x33\xcb\x3a\x92\xd4\xa6\x6f\x49\ \x5c\x33\x13\xd0\x84\x97\xcd\xce\x98\x94\xb2\xe6\x31\x55\x2a\x56\ \xbf\xe5\xa5\x34\xaf\x8d\xe9\xe4\xcd\xb6\xfa\xf2\xc5\xb4\xcf\x82\ \xaf\xee\xeb\x2c\x0d\xc1\x12\xd7\xf2\x16\x79\x9e\x95\x58\xe5\x3c\ \xcf\x54\x7a\x5c\xf3\xe6\x63\xf4\x55\x13\x95\xd7\xc1\x4c\x6b\xe2\ \x30\xf5\x82\x15\x4b\x9b\x35\x15\x14\xdc\x99\xde\xe0\xa2\x9b\x35\ \x13\xdd\xd7\x21\xd9\x8b\x44\xe8\x35\xb4\x9c\xe6\x88\x9a\x1f\x4f\ \x46\xa1\x4d\x04\x9f\x3b\x5a\x73\x18\xe4\x68\x53\x85\x39\x9c\xa2\ \x4c\x93\x20\x43\xf7\x42\x05\x4c\x6a\xee\x3c\xfb\xe5\x74\x3f\xbc\ \xfa\x73\x60\x92\xd5\x52\x73\xfe\x54\xaa\x48\x19\xf5\x3b\xfe\x55\ \x44\xc9\x7c\xae\x51\x66\x64\x39\x8d\x49\x38\xc2\x4b\xc2\x3a\x9f\ \x0f\x7a\xe9\x92\x57\xd7\xdd\xb3\x44\x00\xf5\x50\xe5\x6c\x32\x48\ \x59\x69\xe2\x14\x29\xd5\x9d\xc5\x52\x06\x35\xe9\xe4\x7a\x70\xdc\ \x3b\x37\xc0\x85\xc5\xd1\x2f\xd4\x91\x92\x53\x7c\x32\x88\x6e\x6e\ \x56\x9a\x55\x73\x24\xc2\x6e\x24\x0c\x38\x44\x19\x93\x4a\x89\x61\ \x28\xc3\x4c\x0e\x03\xb3\x1c\xeb\xca\xe2\x26\xab\xd2\x2b\x74\x99\ \x05\x44\x64\x1f\x6a\xc4\xb1\xa4\x39\x0e\x24\x94\xc5\x8e\x2c\x45\ \x90\x26\xa2\x2f\xca\xa1\x3d\xd5\xad\x08\xe8\xa0\x30\xc7\x46\xd8\ \x2d\x47\x1c\xed\x4a\xdf\x05\xb8\xaf\x57\x57\x88\x4c\x13\x33\x6b\ \x78\x56\x12\x78\xce\x61\x67\x8d\xee\x4b\x94\xb9\x0e\x44\x35\xba\ \x2e\x4c\x73\xd1\x7d\x66\xe8\xc6\x4d\x19\x31\xbf\xda\x68\x82\x9c\ \x1e\x22\xad\xd4\x07\xac\xff\xca\x69\x5e\xe0\xbe\x3a\x3b\x15\x93\ \xad\x36\x31\x99\x4b\xf8\x35\x41\xe7\x10\x2a\xdc\xd9\x74\x8b\x36\ \xf0\x06\x65\x16\x6e\xab\x0c\xa5\x19\x2b\xea\x55\x47\x8e\x89\xf2\ \x9f\x73\xe8\xfa\x80\xcd\xf1\xb6\xb1\x9b\xf5\x1a\x25\xdb\x4a\x07\ \xcd\xf7\x32\xe7\xdc\x99\x0b\x44\xde\x58\x17\x83\xfa\x08\x9b\xcb\ \x21\x5e\x9d\x6c\xbe\x25\xc7\x7c\xd8\x90\x46\x07\x4e\x74\x99\x07\ \xad\x09\x98\xa8\x0a\x33\x10\x09\x47\xfa\x84\xab\x35\xb0\x75\x9a\ \xc8\xd1\xbc\xe0\xa7\x71\x0f\x78\xe5\x96\x5a\x1a\xe5\xaf\xfe\x9c\ \xa5\xe1\x9c\x41\x95\x1a\x14\x32\xa8\x74\x8e\x60\x06\x12\x8c\x19\ \xdf\xac\x70\x7a\x05\x29\x6b\x29\x3f\x8f\x2e\xa0\xa1\xd1\xf2\x68\ \x57\x6e\x6c\xa7\x16\xcd\xa2\x43\xc7\xd0\x73\xd8\xa8\x2f\x24\x01\ \x68\xc9\x06\xec\xce\x68\x69\x82\x45\x1a\x19\xce\xbc\x73\xdb\xc0\ \x92\x32\x3d\x27\xd3\xe6\xdf\x1b\x8a\x52\x51\x58\xe6\x89\xf9\xce\ \xf5\xbe\xe7\xfb\x86\x07\xea\x84\x74\xa0\x92\x9d\x09\x49\x11\xc0\ \x01\x5d\xe9\xcf\x91\x94\x0b\xdb\xc5\x79\x2d\xee\x65\x66\x4f\x48\ \x76\x72\xff\xea\xcc\x93\x07\x99\x0d\xc3\x73\x76\x1c\x83\x8a\x3a\ \xd2\x22\xa0\xb1\xec\x76\x75\x53\x9c\xb3\x1f\x12\x42\x7c\xda\xdb\ \x9f\x5f\xb6\xe7\x4c\xda\xc0\x1c\x24\x9b\x59\x98\x5a\xaa\xc9\xae\ \x0c\x3a\xdb\x40\x8a\xc3\x64\x50\x97\x86\xe7\xce\x88\xfb\x6d\x7c\ \x38\xb7\x37\x27\x6b\x8e\x13\x47\xcb\xfd\x72\xb5\x5f\xae\xfc\xe9\ \xd3\xf8\xf8\xb9\xed\x6c\x52\x83\x53\x23\x6b\x84\xc0\x8a\x0d\xeb\ \xd5\xb7\x57\xd7\xb4\xda\x0f\xcf\xae\xb1\x3b\xca\xa3\x96\xe5\xa0\ \x97\x52\x9a\x56\x1e\x2f\x59\x04\xa2\xd6\xb2\x29\xf8\x0c\x52\xc2\ \x29\xd2\x87\x04\x64\xa3\x75\x37\x03\x35\x1f\x97\x12\x9c\x0b\x29\ \x79\x46\x8e\x1b\xbc\x10\xbf\x72\x37\xb5\x85\xde\xac\xeb\xcd\xb4\ \xdc\x18\xcd\xe7\xc1\x9c\xd3\xd4\xae\xa9\xff\xd6\xab\xcd\xa0\xbe\ \x04\x27\xd6\x60\xc5\x31\x5b\xb3\xb6\x74\xc1\x35\x93\x9c\xf5\x00\ \x67\xab\x47\x76\x2a\x91\xb2\xfa\x04\xde\xac\x75\x34\x67\xb3\xf3\ \xfd\xdd\xef\x3e\xe8\xed\xe3\xc6\x26\xaa\x99\x1b\x7d\x30\x0d\xdc\ \xcc\xd3\x39\xcc\x5b\xe5\x43\xca\x75\x39\xa4\xe3\x88\xcb\x71\x3c\ \xed\xbe\xe3\x24\x6d\x06\x3a\xc2\x91\x9b\xd4\x1c\x8f\x8d\xdf\x9d\ \x79\x32\x03\xc3\x6d\xb4\x79\x26\xc5\xeb\x08\xfa\x76\xdf\xad\x79\ \x80\x2c\xc8\x9d\x7e\x55\xbc\x1c\xf1\x79\xef\x57\x6d\x07\x6d\x4c\ \x31\xa9\xcc\x68\x25\x2c\xa2\xcd\x1b\x6e\xc5\xbd\x74\xbd\x83\xfd\ \xcd\xa9\x7f\x7f\x36\x27\x1c\x7a\xc9\xe3\x3f\xf6\xfe\x43\xf4\xdd\ \x93\x66\xc5\x42\x8b\x7a\x75\x98\x6b\x7a\x60\xd8\x5b\xff\xed\xa9\ \xff\xae\xf1\x44\x7d\xd1\xf8\x1f\x17\xfc\x3c\x58\x42\x57\x61\x93\ \xf6\x96\xc7\xa3\xeb\x37\xf7\xf6\x9b\x73\xbe\xb7\xe3\x9e\x63\x43\ \xb4\x3a\x9d\x95\xfb\x7a\x06\x12\x7c\x80\x17\xc4\x33\xf4\x19\x67\ \x88\x2f\xe0\x55\x0a\x0d\xc0\xb6\xee\x4a\xfd\xe6\x84\xff\xf6\xee\ \xe9\x0d\xaf\x50\xb8\x86\xd5\xde\xd8\xe6\xd0\x59\x95\x87\x87\xb3\ \x68\x65\x33\xf7\x98\x13\x29\x0e\x0f\xf4\x7f\xdb\x8f\xa7\xd8\xae\ \xd7\xae\xd9\x0c\x30\xe6\x9a\xf5\x4b\x33\x29\x3e\xdf\xb9\x0d\xd6\ \x9d\xc6\x78\x39\xe7\xf8\xe6\x11\x7f\xf8\x2a\xfe\xe6\xe1\xe5\xd1\ \x45\xa6\x73\xa7\x22\x52\x97\x38\xff\xf8\x92\xff\xf2\xc3\xe5\x7f\ \xfd\x78\xf7\x65\x6f\xa3\x34\x3c\x88\x90\x4f\xe5\xe0\x0c\xdd\xe4\ \x8d\x91\x0e\xdc\xe6\x3e\x2b\x03\xa4\xe4\xaa\xda\xce\x3c\xc0\x84\ \x30\xcd\x8c\xcb\xbc\x71\x14\x87\x83\x0e\x2b\x46\x5c\x9d\xd6\x16\ \x15\x63\xde\x57\xd7\x4d\x0d\x37\x0e\xf3\xba\xa4\xce\x3b\xaa\xcd\ \x49\x9a\xfb\xba\xde\xf8\xdc\x4e\xaf\x55\xe6\x4d\xb9\xa1\x8c\x85\ \xaa\x5e\xf5\x8e\x79\x51\x31\xb3\x1a\xf1\x98\xb3\xb2\x31\x53\xfa\ \x35\xcf\x3a\x93\xdb\x53\x89\x81\x1b\x95\xd5\x8d\x8e\x66\x80\x6f\ \xf0\x13\x7a\x67\x17\xcc\xde\x3f\x9e\xff\xcf\xff\xe3\xf2\xcd\xdb\ \xd1\x78\xb1\xb1\x89\xdd\xfc\x30\xd0\x78\xc8\x86\x21\x7c\xee\xfb\ \x91\xec\xf5\xb5\x1a\x89\x5d\x7c\xda\xf5\xcb\x45\x3f\x5f\xc6\xf3\ \x61\xca\x9a\x56\xe4\x1d\xe3\xbb\x6d\xff\xdb\x73\x9c\x78\x05\x8e\ \x86\xe1\x75\xbe\x9b\x09\x3b\x7b\x45\xe0\x27\x6d\x36\x3a\x3c\xd1\ \x06\xda\x8e\xfe\x6c\xfe\xb1\xc7\xcf\xc7\xf1\x4b\xf4\x17\xfa\xb1\ \x7e\x5d\xf2\xb9\x19\x04\x0a\x90\xe0\xc4\xd8\x84\xef\x4f\x97\x7f\ \x38\x5f\xbe\x71\xcc\x17\xa0\xf9\x1d\x78\xb9\x9c\x7e\x0a\xa2\x89\ \x16\x66\x49\x24\xe8\xc8\xd6\x3a\x8d\x52\xe0\xcc\xf8\x60\x97\x3f\ \xb4\x97\x33\xce\x9f\x74\xfa\xd9\xfb\x97\x83\xc1\x30\xd6\x48\x2b\ \xde\x6d\xf8\xc3\x9d\x7e\xdf\x9e\xdf\x70\x6f\x88\x0d\x47\x43\xd8\ \x1c\x4b\xdb\x12\x05\xe6\x80\x13\xa7\x07\xf0\xde\x78\x67\x17\x57\ \xec\xb2\xc3\x0c\x2d\x0e\x81\xea\xf4\xeb\x57\xfd\xc7\x6f\xfc\x97\ \xaf\x2a\xbc\x59\x67\xfb\x99\x51\xae\xd0\x4b\x08\x3e\xd4\xaa\xd6\ \xaa\x25\x86\x99\x9f\x43\xf4\x1d\xf7\x77\xcd\x4e\x2d\xda\xe1\x61\ \x4d\x66\xb5\x3a\x43\x2a\x32\x84\xf2\xd6\x2e\x0b\x22\x37\x73\x37\ \x5d\x4f\x18\xbf\x7b\xc8\xff\xfe\x9b\xeb\xf7\x77\x4f\x1b\x06\xd1\ \x04\x1b\x82\xa8\x53\xfb\xfc\xe0\x5f\xde\xda\xdb\x0f\xbf\xb7\xc7\ \xd3\xfe\x4f\x7f\xf2\x8f\xd7\x16\xb5\xf5\x4f\x64\xcd\xf2\x59\xaa\ \x8b\x62\xd9\x4c\x9b\x68\xbd\xc5\xc9\x90\x59\xf5\x41\x2b\x2e\x3b\ \x41\x19\x62\x5a\x6a\x6e\xbe\x72\x4d\x56\xe7\x17\x85\x48\x43\xcc\ \x75\x2a\x60\xf0\xe6\xbd\xf5\xea\xf9\x2f\xee\xb6\x9b\xf9\x64\xf6\ \x64\x1a\x0d\x74\x9f\x37\xdf\x1a\x82\xe4\x2b\x3a\xdd\xdc\xe8\xde\ \xdc\x59\x3f\x8b\xcc\xa2\xf6\x61\x8e\xda\x25\x55\x30\x84\xb7\xb1\ \x80\xd1\x14\xaa\x89\x47\xb7\xde\xac\xb5\x4a\x8a\xd6\xb5\x58\x73\ \x0d\x50\xe7\xce\x02\x79\xde\x32\xf0\xc5\x79\x35\x79\x97\x37\xef\ \xd1\x36\xdd\x9f\xf7\xaf\xce\x9f\xbe\x3d\x1d\x1d\x54\x1b\xd7\xb1\ \xc1\x87\xd9\xb4\xd0\x1b\x06\x31\x67\x73\x25\x86\x06\x64\x9e\x42\ \x93\x3f\x5c\xef\xe3\xc7\xcb\xfe\xe7\x8f\xfe\xe9\x78\xbc\xb0\x41\ \x79\xe2\xf1\xc6\x3e\x3f\x70\xdf\xd2\xc9\xc3\x29\x43\xc7\x0d\x00\ \xf7\x3a\xe0\x85\x15\x2e\x0e\x41\xb8\x60\x40\x1b\xd8\xde\xf0\xee\ \x2b\x6f\x8f\x36\x4e\x63\x7c\xcc\xfb\xcf\x6a\x57\xda\x20\x1a\xc6\ \xc8\x22\x1c\xb7\x02\xba\x78\xe6\x03\xf9\x9b\xed\xf2\x9d\x3f\xdd\ \xe1\x04\x00\x1a\x0d\xf7\xe9\xe7\x9f\x3a\x5e\xc2\xae\xcc\xf2\x3d\ \xd7\xc1\xb5\xa2\x2b\xd6\xd2\xc8\x3b\xc4\x83\x7f\xbe\xc7\xd3\x3d\ \x8e\x10\x1f\xe4\x5d\x1b\xdc\x8c\x83\xc7\xf1\x40\xfd\xdd\x7d\xfc\ \xe7\xf6\xe5\x1d\x5e\xaa\x5c\x2f\xa4\x55\xaf\xc8\x00\x84\xe6\x18\ \x9e\x27\x8c\x44\x24\xfa\x23\xfc\x0e\x3a\x51\xe9\xe7\xc8\x16\x62\ \x3a\xa8\xe6\xda\x1f\xdb\x78\x40\xdc\x21\x2f\xb9\x3d\xe7\xb6\x8b\ \xe1\x19\x69\xc1\xb2\x9e\xa7\xc0\x54\xc5\xd4\xf2\x76\xb1\xd7\x72\ \x50\xbe\x28\xfe\x32\xda\x91\xa0\x1d\xa5\x8a\x07\x9c\x4c\x58\xcc\ \xfe\xb8\x7b\x22\xab\x27\x27\xba\x52\x8a\x7c\xbb\xd9\x3f\x7e\xfb\ \xe9\x3f\xdd\xbd\x74\xb5\xa1\xd3\xc7\xab\x7e\x7a\x69\x2f\x41\xa6\ \xdf\xf5\x78\xff\x30\x3e\x6c\xbf\x7c\xd3\x3e\xd8\x6f\xf9\x72\xc4\ \xcb\x9f\xdb\x35\x9c\x53\xe0\xe4\x20\x32\xc7\x6c\xb0\x94\x6e\xb9\ \x19\x95\x4c\x29\x2a\x15\x1a\x22\x35\x50\x96\x5a\x64\x55\xf2\x65\ \xd9\x12\xa3\x08\x51\x24\x55\x4d\x91\x92\xc2\x03\x94\x25\x63\x0e\ \x47\xab\x16\x62\xa4\x65\x28\x95\x75\x97\x2f\x8e\xf3\x50\x66\x01\ \xab\xac\x38\x41\xae\x18\x35\xaf\x68\x63\x0c\x77\x37\xb3\x11\xc1\ \xc5\x6d\xab\x11\x23\x8d\x1a\xd3\x45\x6c\x89\xd5\xad\x36\x03\xa5\ \x39\x19\x73\x73\x26\xad\x6a\xac\xee\x8d\x9d\x30\x87\xf9\x0a\xe6\ \x2a\x69\x94\x15\xdc\xd9\x7a\x2d\x31\xea\xa3\x63\xb6\x19\x1b\xd9\ \xcd\xb6\xec\xdb\x38\xf5\xc3\xfd\x8b\x41\xd0\xf9\x69\xf7\x9f\x5e\ \x6c\x78\x85\xcc\x3a\x4c\x55\x90\xaf\x4c\x54\x4f\xa7\xb7\xcd\xf3\ \xe4\xc7\x99\xb1\xe1\xb9\xa3\x9f\xce\xba\x27\xff\xfd\x73\xfe\x78\ \xf4\xb0\x74\x5e\x37\x8e\x4d\xb9\xb1\x72\x0c\xba\x0a\xe9\x35\xd9\ \x9b\x52\xce\x92\xce\x11\x6e\xb5\x14\x96\x40\x6d\x38\x36\x24\x91\ \x67\xdc\x6d\xc4\xa9\x1d\xed\x38\x85\x7a\x19\xbe\x40\xcd\x1f\xf3\ \x0c\x0f\x8e\x33\xc7\xd7\xdb\xf1\x4d\x3b\xee\xe0\x3d\x47\x06\x1b\ \x8f\xa6\xe3\x4d\x1b\xbf\xd9\x8e\x9f\x8f\xfe\x53\x5a\x24\xe8\xe5\ \xa6\xeb\xa0\xc3\xd2\x94\x8d\xb9\x29\x3b\xb2\x32\x02\x0d\xd9\x94\ \xa7\xe6\x68\x0c\x8d\x73\x8b\xff\xe4\xf1\xf7\xfe\xf1\x2b\xbc\x74\ \x98\xc4\x4b\xda\x98\xe1\x22\x2e\x02\x6a\x95\x6c\xc1\xea\x2a\x54\ \xc1\x15\xe3\x8d\xec\x7b\xe7\x97\xc3\x3f\xc9\x0f\x1f\x06\x39\xa2\ \xe4\x29\xbb\xfa\x6e\xe7\x8f\xdc\xfe\x1a\xf6\x14\x18\xc0\x51\xb8\ \x76\xcc\x23\x7a\x0a\x39\x49\xb7\x14\x9b\x37\xf7\x1e\xe3\x38\x9e\ \xf7\xf6\x71\xdf\x9e\x45\xf3\x41\x45\x4c\x77\x58\x11\xcf\x05\x6f\ \x82\x41\x43\xb9\x82\xa2\xf4\xde\xfc\x9b\xc7\xf1\xfd\xdd\xf5\x11\ \xfd\x05\x77\x7f\x7c\x3a\xfd\xeb\xa7\xd3\xe7\xc1\x81\x8c\x38\x1a\ \xf6\x6f\xae\xcf\x7f\xf7\xee\xf9\xb7\xf7\x4f\xdf\xf4\xf7\x7f\xfb\ \x35\xfe\xe3\x89\x7f\xf9\x42\x94\x37\xab\xb7\xb1\x6b\x4e\x1a\x40\ \xb6\xda\x87\xe6\x7c\x06\x16\x68\xbc\x96\xed\xa5\xd9\xa4\x25\xa4\ \x64\xca\x0b\xeb\x24\xb0\xa4\xa5\xb3\x56\xa3\x12\xda\xa8\x9c\xb3\ \x01\x10\x81\x48\x84\x58\x7b\xa2\x84\xd1\xac\xf5\xeb\xf5\x52\x23\ \xec\x69\x3e\xcf\x14\x58\xbc\x27\x33\xcb\xcc\xe6\x3e\xe3\xcc\xde\ \x1a\x16\xe7\xae\x06\x7d\x95\x35\x8a\xe5\x47\xb7\xac\xfd\x44\x2d\ \x77\x7c\xd1\x08\x50\x8f\x44\x6b\xbd\xb1\x4f\x92\x60\x25\x09\x0a\ \x35\x82\x8a\x38\xcc\xe3\x9d\xdd\x74\x6b\xf2\x36\x43\x27\x4d\xe6\ \xa2\x35\xdb\x64\xd6\x0c\x18\xbc\xff\xe1\xea\xff\xfa\xe9\x7c\xd1\ \x91\x99\xb4\xa6\x0a\x11\xc2\x28\x75\x1f\x3d\x37\xf3\xb6\xb5\x7c\ \xd8\xc6\x57\x5b\x7c\x38\xc5\x83\xef\x4d\xfa\xb0\x79\xbe\xd5\xf1\ \x49\xcf\xc1\xad\x55\x67\x05\x6e\x9e\xb0\x5d\xf6\x92\xbe\x57\x43\ \x60\xde\xda\x40\xd5\xde\x7c\x09\x77\x20\xcb\xd8\x90\x77\xca\x3b\ \x5e\x1d\x3a\xb3\x7f\x4d\x3f\x2c\x9f\xe0\x57\x52\x8a\x5d\x74\x47\ \xcc\xb0\x92\x5c\xe3\x9e\xfb\xd7\x7d\x7f\x6b\xd9\x05\x05\x09\x39\ \x0c\x60\xd7\xf1\x35\xaf\xef\xe1\x9f\xe2\x94\x4e\xe2\xc0\xcc\x78\ \x35\x68\x18\xcd\x3c\x1b\xd4\xd8\x9c\x9d\x6a\x34\x37\x4b\x46\xd2\ \xbc\x91\x6f\x88\xdf\xf6\xe7\xb7\xbc\x76\xb4\x50\xff\x7c\xdd\x9e\ \xe9\xf2\xa8\x18\x21\xe6\x74\x22\x0d\x61\x4a\x22\x3c\xed\x6c\xd9\ \x98\x94\x35\xe9\xad\x1d\xdf\xb6\xfe\xd7\xe1\xc1\x31\x42\x9b\x5f\ \xc0\x34\x98\x93\x90\x5f\x87\xff\xb2\xb7\x4f\xd0\x2e\xbb\x46\x0b\ \x31\x75\x94\x7c\x76\x89\x99\x2b\x58\x63\x06\xc7\x38\x46\xb4\x7d\ \xf8\x35\xb7\x43\x29\x86\xd1\x89\xa6\x2c\x78\x0c\xe1\x26\x59\xcc\ \x35\x00\x9d\xa5\x72\x1e\x1b\xf5\xae\xef\x8f\x1c\xc2\xdd\x25\xcf\ \x3f\xed\x77\x3f\x0e\xdb\xb1\x9b\x21\x79\x7f\xa8\xfd\xe9\xca\xfb\ \xfd\xf9\x37\x77\x9f\x9d\xe7\xb7\xe7\xfb\xc7\x13\xfe\xfa\xcc\xf4\ \xac\x1b\x5b\xc5\x30\xe9\xb1\xea\x9c\x24\x10\xaa\x49\x06\xe6\x64\ \xb3\xb2\xe3\xe6\x26\x21\xa1\x42\x5b\x85\x72\xb2\xc8\x06\x2d\x63\ \x5e\xca\x79\x7b\xd2\xac\x55\x4c\xa7\xe8\x70\xcd\x9b\x2f\xc5\x8d\ \x35\x8f\x63\xd4\xb3\x31\xbd\x6c\xf5\x75\x97\xb1\x1c\xb5\x63\xf6\ \x6d\x66\xd8\x79\xf2\x6e\x6f\xbd\x9f\x59\xe2\x72\xd4\xdc\xbc\x4e\ \x88\x36\xfd\x1b\xc5\xb2\x2d\xcd\x70\x4d\xf1\x60\x8d\xf4\x9a\xaf\ \xd7\xb3\x3f\xa3\x54\x33\x6d\x5c\x0e\xee\x1b\x4b\xba\xc1\x67\x8f\ \xb7\xf8\x6e\xac\xba\x2a\x4e\x01\x17\xb6\xab\xf9\x97\xb8\x7b\xd6\ \x16\x18\x08\x8b\xe8\x93\xd0\xce\x68\x31\x90\xad\x59\xeb\x81\xf3\ \xd8\x9f\x8e\x7d\x4f\x7e\x77\x77\xbc\xf3\xfd\x2c\xbc\xdf\xb6\x4f\ \x77\xae\x6b\x6e\xe0\xd6\xcc\xad\xbe\x43\xb7\x4b\x9e\x3e\x0d\x3b\ \xc8\x24\x52\x93\xf1\x59\x68\xfb\x99\xbf\xf2\x42\x1e\xc6\x49\xfb\ \xc8\x41\xe5\xd9\xe5\xc8\x13\xec\x0d\xe3\xa4\x68\x68\x7b\x51\x1a\ \xbc\xdc\x12\x62\x1e\x3d\xae\x0f\x7e\xbc\xd7\x78\x80\x0c\x2d\x3a\ \xa1\xcb\x48\x6f\x14\xb1\x3f\xd0\x3e\x78\xff\x69\x3f\x65\x30\xcc\ \xcc\x30\x56\x7c\x7c\x81\xe4\xd2\x30\xbc\x76\xbb\x30\x9a\x59\x1b\ \x8e\xb0\xcc\x77\x3e\xde\xda\xe8\x70\xa9\x7d\xde\xcf\x3f\x1e\x77\ \x17\x87\x6d\xd1\x58\xb8\x79\x19\xd3\x50\x72\xac\x30\xc4\x06\x25\ \xb4\xc1\x3b\xd5\xf2\x72\xa7\xf1\xb5\xf3\x3d\xcf\x17\x40\x0e\x2c\ \x60\xaa\x60\xa9\x7e\x51\xff\x1c\xf6\x51\x39\x64\x87\xda\x18\x59\ \xd7\xd1\xb5\xbc\xac\x51\x95\x19\x0c\x03\xa0\x47\x46\x16\x65\x92\ \x2d\x78\x17\x50\x16\xbf\xf4\x46\x3f\xaa\x1e\xa6\x27\x19\x54\x56\ \x11\xa8\x19\xba\x67\x99\x47\x23\xf3\x1a\xbc\x22\x0f\xee\x0d\x26\ \xeb\xc7\x71\x76\xf0\x39\x1f\x0e\x7e\x69\x18\x0e\xf4\x46\xeb\x80\ \x15\x8d\x01\x96\xac\x95\x25\x02\xd3\x8f\x58\x63\x10\x55\xe4\x93\ \x98\x14\x1e\x0a\x59\x35\x63\x26\x53\x26\x36\x7a\x9d\xe5\x0c\x06\ \x6b\x10\xaa\x94\x58\x64\x02\xd6\x1f\x76\x42\x46\x2b\xe6\x82\x88\ \x28\x44\xf6\xcd\x97\x11\x73\xdd\xb9\x8a\xa1\x6b\x40\x66\x66\x6d\ \x2e\x3e\xe7\x0c\x84\x6b\x4b\x3e\x55\x6a\xab\x52\xcc\x54\xd9\x85\ \x97\x8c\xa0\xba\xcd\x39\x99\xd1\xd3\x50\x3b\x9d\x1c\x8e\x44\x7d\ \x0c\x27\xe4\x76\xaa\xdb\x6a\x8c\x77\x4b\x09\xac\xae\xdb\xd4\x20\ \x14\x0b\x5c\x4d\x70\x61\x44\xc4\x65\xbf\x7f\x21\x64\x09\x58\xb2\ \xc0\x98\x45\x33\x70\xc0\x5c\xe6\x81\x8b\x7a\x88\xe4\x71\x6e\xe3\ \xde\xf6\x33\x8f\x47\xec\xef\x9a\xbf\xec\x9c\xcf\xec\x9c\xfa\xf5\ \x1d\x0f\x9f\xc3\x9f\x47\x46\x58\x4c\xdf\x7a\xb9\xec\xcb\x8e\x93\ \xee\x6c\xdd\x3b\xb5\xb1\x1d\x78\x41\x06\x89\x93\xc1\x61\x67\xd7\ \x5d\x66\x0f\x98\xea\x72\x98\x59\x2e\xee\x8c\x4d\xfa\xca\xf2\x83\ \xc5\x06\x26\xb9\x43\x07\x9b\x73\x3b\x93\xa6\xb8\x43\x7c\xe0\xfe\ \x06\xf1\x1c\x96\x8d\x4c\x70\x22\xc5\x55\xd8\x52\x12\xce\x30\x8d\ \x05\x52\x2b\x13\xd8\x38\x01\x8f\x96\x77\xa4\xa3\x1f\x68\x9f\x8e\ \xed\x97\xa3\xef\xae\x2d\xd9\xca\x35\x2d\x99\x60\xc5\xf5\x27\x9d\ \x9e\x8c\xa1\xda\xf9\x85\xf1\xd8\x94\xef\x6c\xbc\x3b\xe9\xc7\xc3\ \x77\x3a\xb0\x0d\xf4\x80\x01\x0d\xd6\x76\xb4\x67\xe7\x55\x88\xd4\ \x18\x63\x54\x58\x20\xb1\x4e\xb0\x33\x2e\x15\x4b\x19\x26\x07\xf3\ \xa0\xb9\xb1\x01\x7d\x15\x4b\x0e\x73\x87\x5a\x14\x59\x63\x76\x45\ \x5b\xb5\xb3\xeb\x44\x7b\x19\xfd\x8a\x76\x87\xb1\xb9\xdf\xb5\xdd\ \xb0\x05\x9a\xe0\xca\x96\x99\xdd\x6d\xe3\x06\xdd\x89\xdb\x90\x8d\ \xca\x9e\x81\x72\xcf\xac\xc5\x8f\x21\x51\x31\xf5\x9a\x2c\xc3\x6e\ \xb9\xd3\xc2\xf5\x24\x6b\xbc\xb6\x76\xdd\x33\x01\x20\xca\xc7\x4c\ \x30\xce\x0c\x08\x66\x77\x7a\xfe\x23\x9f\xcc\x68\xaf\x3c\x0f\x04\ \xaf\xf2\x71\x4e\x48\x67\x4d\x4e\x34\x77\xd5\x66\xc0\xc8\xdb\x4b\ \xff\x96\xf0\xac\x7f\xeb\xfa\xac\x15\x70\x6e\x8d\x9b\xa9\x98\xff\ \x17\x25\x29\x2f\x8a\xf4\xfa\x32\x71\xa7\x57\xe5\xa6\xa8\x07\xf5\ \x97\x2d\x13\xef\x9c\x78\xaf\x48\xc1\xa4\x3d\x2d\x90\x54\x91\x51\ \x1b\xe6\xd2\x1b\xce\x70\x48\xe8\xc7\xf0\xcb\xe8\xbb\x95\x7b\x62\ \x36\x8b\x29\x51\x0c\x1a\x8c\xdd\x94\x30\xa9\x3f\x87\xf5\x1d\x9f\ \xf6\xfc\xb0\x5d\x1f\x38\x1c\x79\xb2\x6c\x24\xd2\xa4\x26\x1c\x84\ \x24\x3f\x72\x7b\x3a\xfc\x79\xe4\x9e\xcc\x1a\x0c\x98\x5b\xc1\x3d\ \x40\x57\xb6\xb0\x3e\x9a\x19\x36\x47\x20\x9c\xfb\x7d\xcb\x8d\xe1\ \x88\x0d\xba\x73\x75\x99\xc3\xc2\x12\xf4\xc6\xc9\x50\xb9\x37\x7f\ \xdf\x74\x4f\x98\x5a\xb0\x3d\xc9\xbe\xa8\x3b\xf8\x5e\xfb\x23\x47\ \x97\xde\x58\xbe\xb3\xfc\x79\xd8\xc8\x81\x54\xa1\x02\x38\x93\x86\ \x4e\xb4\x49\x0a\xc9\xa2\x75\x11\x69\x4c\x32\xb2\x59\x74\x0f\x83\ \x27\x7c\x47\x7b\x01\x47\x0a\xc3\x90\x1d\x00\x35\xaa\x91\x41\x02\ \xea\x01\x85\x46\xaf\xcb\x2e\xcd\x0c\x06\xdb\x71\x0e\xb6\x6a\xe2\ \x21\xb7\x81\x5e\x5f\x3c\x12\x8e\xb4\x03\x4c\x8b\xda\xbd\x48\x53\ \x5b\x94\xb2\xc8\x92\x5d\xd2\xcd\xe7\xfb\x94\x75\x9a\x31\x99\x43\ \xe9\x4a\xc0\x02\x96\x36\xb5\x4a\x99\x05\x72\x54\xc0\xa0\x0e\x13\ \x0c\xa4\xc6\xe0\xa7\xcb\xf9\xcb\x71\xbc\xeb\xe3\xde\xec\x37\xf7\ \xf8\xe3\xd5\x9e\xf6\xfb\x01\x68\x64\xcb\x97\x6f\xcf\xf9\x37\x8f\ \xb9\xb1\xef\xf2\x5f\x5e\xda\xd3\x30\xf0\x20\x3c\xac\x07\x93\xcc\ \x2a\x74\xbe\x1a\x90\x66\xd4\xb8\xce\xfb\xc9\x1b\xf9\x72\x06\xb5\ \x96\x03\x7d\x3e\x58\xc6\xc2\xac\xe5\xed\xd4\x53\x59\xa8\xea\x28\ \x15\x8d\xd0\x16\xea\x77\x2a\xcd\x8d\x80\x45\x04\x69\x26\xd6\xf4\ \x78\x59\xa4\x26\x6d\x7a\x86\x6b\xcc\x5d\xd0\xc4\x09\xae\x08\xe4\ \x4c\xf7\x98\xcd\xb8\x36\x54\xb9\x18\xaf\x47\x52\x13\x9a\xeb\xf4\ \xee\xad\x86\x0a\x84\x19\xdc\x26\x57\x60\x8e\xd3\x97\x52\x9a\xcb\ \x77\xcb\x59\x38\x7b\x65\x49\xd3\x58\x5b\x6d\x1e\xd4\xd5\x75\x0a\ \x72\x8c\x1e\xd9\x46\x65\x11\x26\xcd\x00\x84\x5c\x4e\x13\x32\xc3\ \x82\x68\x52\x1f\xe0\x55\x7e\x39\x7c\x24\xb3\x54\xd4\x30\x0b\x0b\ \x40\xd9\xd6\x8a\xc9\x0e\xf9\x15\xb6\x1b\x07\x90\x45\xd8\x99\xf9\ \xc9\xf2\x9b\xb7\x11\x1c\x47\xb3\x66\x03\x34\x1e\x77\x7e\x24\xc2\ \x71\x34\xd0\x91\xe5\x49\x2c\x41\x5b\x9a\x0c\x44\xd2\xcd\xde\x3a\ \xdf\x7b\x9c\xd4\x20\x7b\x09\xff\xeb\x78\xf8\x8c\x4e\x1d\x66\x79\ \xd7\xe5\xc4\x3d\xf8\xe1\xa4\x3f\x87\x5e\x82\x6c\xa5\x57\x88\x5a\ \x16\x55\xaf\x16\x72\x4d\xa4\xbc\x2d\x1f\x3a\xc7\x71\x84\x05\xdb\ \x30\x5a\xa3\xf7\x96\x76\x48\xc9\x48\x0f\xb5\x72\xb4\xe4\xe2\x47\ \x08\x0c\x68\xc8\x52\x0e\x3b\x80\x1c\xe8\x84\x3d\xeb\xfc\x29\xda\ \xc8\x5d\xcc\x59\x01\x00\x0a\x2c\xa2\xe1\x0a\xc7\x5c\x76\xbb\x82\ \x61\x80\xa5\x6a\xbf\xbf\x8c\x5d\x96\x35\x83\x42\xaa\x25\x5a\x3a\ \x52\xbb\xe7\x01\x35\xb0\xcf\x77\x7e\x01\x09\x2b\xe8\x82\x1b\xd6\ \x63\xc6\x71\xbe\x0c\xfe\xe9\xe9\xfc\xee\xdd\xfe\x86\xf8\x66\xe3\ \xef\x1f\xe2\xf9\xf0\xa7\x23\x4c\xf9\xfd\xfd\xf1\x5f\xdf\x3f\x7d\ \xd7\x00\xd8\x4f\x17\xfc\xf1\xf3\x76\xc9\x06\x3b\x44\x26\x7d\x2e\ \x2f\x8c\x51\x87\x91\x59\xd2\xaf\x9c\x61\x85\x4d\x35\xb3\x7b\x46\ \x29\x09\xa7\xa7\x02\x69\x59\xfc\x80\x5a\x29\xce\x17\xe3\xda\xb2\ \xe0\x76\x5e\xb2\x95\xe1\x31\x33\x03\x19\x19\x39\x8d\xd3\xab\xe2\ \xa4\x05\x0f\x9c\x8f\xa1\x6e\x7d\xe7\x59\x53\x9b\xc1\xd5\x99\xfd\ \xaa\xe9\xcc\x44\x0b\xd4\xf0\x6f\x3d\x37\x4e\x2f\x43\x7a\x63\x1a\ \xd1\x9a\x75\xa3\xbb\x35\x67\x73\x78\xd5\xd4\x8a\x92\x7f\x3b\x97\ \xcd\xd0\x0d\xbc\xbe\xfc\x8d\x66\x6c\x9c\xd9\xb2\x45\xf3\x40\xc9\ \xe5\x2a\xe1\x86\x53\xd0\x43\x55\x81\x75\xa5\x27\x4d\x95\x1b\x13\ \x19\x51\xa4\x39\x3a\x64\x2d\xc9\x91\xca\x01\x66\xfa\xcc\xc5\x78\ \xc1\x1a\x39\x60\x9b\x15\x72\x2b\x9a\x8f\x66\x11\x99\xa6\x14\xd2\ \xa7\xad\xb1\x1a\x83\x59\x00\x3f\x04\x69\x43\xdb\x55\x9b\xf0\xdc\ \x79\x74\x10\x68\x3b\xda\x9e\xbd\x36\x6d\x0d\x7e\x28\x8b\x49\x7b\ \xc6\xf1\xb5\x7d\xfe\x0a\xfb\x09\xa7\x9d\xe7\xbf\x5c\x4e\x3f\x1c\ \xe7\xa7\x6c\x4e\x77\xcf\x37\x2e\x77\x6c\xd0\xb7\x3e\xfe\xc3\xc7\ \xe7\xb0\x83\x5b\x02\xe0\xc5\x41\xc2\x43\x47\x62\x10\x07\x09\x7a\ \x13\xba\xd2\x60\x40\x28\xa5\x17\xb5\x0b\xfa\x09\xd9\x10\x5f\x77\ \xec\x61\x3f\xe7\x16\xa0\xf1\xe8\x70\x58\x85\x5e\x67\x99\x15\x4a\ \xd1\xd2\x70\x80\x87\x20\x2a\x80\xe7\xe4\xf3\xda\xb2\x2b\x83\x8e\ \x54\x03\x41\xa6\x11\x50\x97\x01\x1c\xf5\xad\x27\x34\x99\x66\xfc\ \x09\xb5\x69\x2b\x7e\x0b\xa2\xa8\x01\xcc\x59\x77\xa6\xd7\xbb\xcc\ \x2a\xed\x58\x0b\x16\x79\xd0\xc0\xdd\x10\xa6\xda\x07\x8f\x06\x1c\ \x76\xfa\x63\xf8\xfd\xd1\xff\x7e\xbb\x3c\xd8\xf1\xf7\xf7\x8a\xeb\ \xf8\x01\xe3\xed\x5d\xfc\xfd\xdb\xe3\xfb\x93\x09\xdb\x9f\x2f\xf6\ \x4f\x3f\xdf\xff\x70\x9c\x46\x37\x44\x69\x24\xe8\x4c\xb2\xa0\x72\ \x73\x20\x95\x31\xf1\x03\xf0\x34\x94\x04\xb7\x1c\x1c\xce\x5c\x91\ \x43\x56\x5e\xa8\xd6\xec\x59\x61\x79\x5a\x22\x0a\x07\x5b\x4d\xb8\ \xaa\x18\x24\x64\x32\x4b\x27\x98\xc0\x81\x14\xe5\x04\x5d\xcd\x5b\ \x8c\x70\x3a\x8b\x38\xe7\x98\x3b\x32\x2e\x51\x07\xd7\xf1\xcc\x16\ \x24\xb0\xea\x19\xf5\xbd\x14\x1a\x95\x5c\x98\x39\x8b\x19\xb9\x9c\ \x2a\x35\x83\x1b\xbc\xb1\x3b\x5a\xbd\x8e\x5f\x7b\xaf\x7a\xed\x90\ \xce\x26\xf6\x0c\x60\x17\x4d\x66\x01\xa2\xd4\xe6\xd7\xdf\x52\x61\ \x18\xe1\x92\x47\x98\xd5\x8b\x23\x0a\x03\x60\x89\x34\x78\x12\x6c\ \x34\x87\xdc\xc2\x1c\xd5\x13\x53\x6e\x5b\x9e\x0c\x9d\x0c\xe0\x88\ \x9c\x27\x58\x59\xbd\x17\xe7\xa1\xc1\xa6\xe8\xca\x16\xbb\x6a\x96\ \x7f\xd7\x97\x5e\x28\x9b\x8e\x16\x71\x86\x1e\x1d\x27\xc2\xb0\xed\ \xb8\x7f\xca\xd3\x25\x67\xce\x04\x90\x13\xc8\x34\xe5\x1b\xc6\xd7\ \x36\x1e\x68\xc2\xf6\x51\xe7\x3f\x6b\xfb\x31\xfd\x90\x19\xbb\xf2\ \xfc\x56\x38\xf1\x7a\x87\x78\x44\x7c\xb3\xc5\x8f\xd7\xfe\x49\x8e\ \x59\xaf\x4b\xdc\x42\x8f\xca\x6a\x72\xd7\xb1\x5d\xa5\x7d\x32\x7d\ \xc9\xd3\x4f\x61\x5b\x7b\xb9\xc3\xfe\xd6\x3b\xcf\xfd\x41\x78\xa2\ \x02\x89\xcc\xca\xfb\xac\xe8\x63\x19\xd8\x28\xb4\x03\x94\x21\x90\ \x21\x5c\xc5\xa4\xbc\x29\x52\x56\x20\x36\xf5\x41\x3b\xe6\x8a\x41\ \x31\x3c\x55\x8c\xb2\x69\x47\xca\xd7\x14\x49\x01\x29\x12\x44\xd0\ \xa7\xea\x6e\x08\x70\xc1\xd2\xea\x43\x3a\xa7\x66\x0c\x2f\x14\x42\ \x1d\x8d\xea\x50\x08\x48\xde\xc3\xfb\x2f\x78\xfa\x9f\x5f\x8e\xbb\ \x3b\xfe\xfe\x94\xef\x5b\xfc\xe3\xdb\xf8\xfd\xe3\x71\xbf\x8d\x37\ \xbe\x5d\xf0\xe6\xdf\x9f\xf8\x3f\x3e\x9d\xfe\xed\xf9\xee\xc5\x09\ \x1f\xb7\x24\x13\xcd\xca\x04\x3d\xff\x3c\x13\x0e\x52\x8b\x5e\xd1\ \x18\x61\xb3\x6c\x57\x27\xb1\x45\x5a\xa8\x5f\x68\x65\xbf\xe7\x6b\ \x51\x64\xed\x6c\x66\x1e\x3a\x32\x27\xd8\x18\x13\xe3\x58\x28\xa4\ \xcc\xac\x6b\xfc\xdc\x6c\xd7\xb0\x0d\x73\x22\x3b\xb3\xe1\x42\xb1\ \x04\xe6\xad\x5d\xd4\x2b\x22\x7d\xe2\xc5\xe7\xf7\x19\x6e\xac\x3e\ \xd0\x8c\x8b\x76\x8f\x06\x52\x85\xd0\xb7\x89\x44\x9c\xae\xbc\x95\ \xf5\xaf\x9f\xac\x79\x65\x12\x0b\xf7\x3c\xa3\x97\xf0\xc9\xe1\x59\ \x36\xf9\x19\x89\x33\x42\x1a\xca\xde\xbb\x81\x01\x59\xc2\x09\xab\ \xfe\x20\xcd\xb0\x9d\xb9\xb9\x9c\x11\x3b\xe3\xc5\x72\x7f\x7b\xc7\ \x6f\x1f\xc6\x43\x93\xa1\x5d\x84\x97\xb0\x41\x98\x71\xba\xd0\x40\ \xe8\xe0\xf5\x62\xfb\x09\x0e\x79\x31\x64\xcb\x59\x85\x29\xd8\x01\ \x2c\xc0\x91\xcd\x2e\x6f\x6d\xfc\x76\x8b\x0f\x0d\x1d\xa7\xc0\xdd\ \xb3\xce\x1f\x8f\x76\x89\x81\xa9\x32\x91\x0b\x18\x71\x8a\xfc\xd6\ \xf5\xde\xdd\xd0\x2e\x68\x3f\x0e\xff\x05\x71\x69\x4e\x1b\x47\xf2\ \x0b\xfc\xc7\xd1\xbf\x6a\xc7\x89\xd9\xa0\x6f\xdb\xf8\x61\xb7\x4b\ \xa4\x98\xce\x26\x44\xcd\x27\x41\x97\xb5\x5a\xb0\x39\x26\xaa\xcf\ \x1a\x61\xf6\x39\xda\xbf\xbd\x9c\xec\xbe\x7f\xe7\x9f\xef\x70\xbc\ \xf1\x3c\x21\x0e\xf4\x03\x76\xb8\x86\xaa\xcf\x92\x03\x18\xc9\x21\ \x46\xce\xdd\xb0\x92\x2a\xea\x98\x1c\x05\xaf\x40\xd2\x12\xe6\x64\ \x07\x70\x22\xbe\xe9\xc7\x20\x5f\xe8\x91\x84\x33\x47\xd2\x86\x99\ \x0a\xdc\x81\xb2\x45\x52\x34\x10\x2e\x2a\x94\x1f\xc5\x1f\xc0\x6b\ \x70\x39\x34\x96\x9e\x65\xaa\x5d\xe1\x48\xa0\x65\x32\x99\x66\x42\ \xdb\x44\x66\x1e\x31\xf8\xe9\x32\xfe\xb2\x1f\xdf\x7c\xad\x33\xf4\ \xc1\xf6\xaf\x5b\xa6\x9d\x7f\x1a\x77\xff\xfc\xec\xff\xf3\x53\xff\ \x14\xf7\xd7\xcd\xd2\x76\x64\x60\x04\xdc\xd3\x7b\xd0\x69\x3b\x76\ \x4d\xd6\xfc\xec\x63\x54\x48\x20\x57\x25\xf9\xd5\x67\x33\x89\x8b\ \x5c\x46\xdb\x62\x93\xce\xd2\xa2\x69\xb6\xdf\x6b\x6f\x50\x6f\xa8\ \x31\xb3\x9b\x05\x08\xb4\x8c\x39\xff\xab\xe5\x0d\x12\x63\x0c\x65\ \x3a\x19\xb3\x2c\x32\xd3\xb6\x00\x9a\xad\xe4\x8d\xc9\x44\x7a\xf3\ \xd6\x6c\x4f\xde\xc2\x5b\x6e\x14\x5b\xc9\x45\xb5\xa8\x83\x14\x8d\ \xcd\x68\x7d\x0a\x1b\xdc\x35\x91\x52\xb6\xc2\x9a\xb3\x1d\x72\x13\ \x6f\x4d\xa0\x01\x00\x5a\xa2\x84\x64\xad\x9a\x7d\xb0\x9a\x80\x4f\ \x82\x37\x98\xec\xbb\xac\xa5\xc1\x99\xb7\xc8\x78\x15\x0f\xe6\xd5\ \x6d\x44\xcb\xfd\x1e\xc7\xf7\x67\xfc\xe7\x77\xc7\xf7\x7d\x6c\xe8\ \x03\xdb\x2f\xb1\x7d\x1e\xfd\x40\x76\x47\x56\x9d\x1f\xe1\xda\xef\ \xb5\xbf\xa3\x37\x5a\x60\x96\xc5\xc1\x91\x39\x4d\x0f\x14\x4f\xc0\ \xa9\xe3\xb1\xe1\xeb\x36\x3e\x30\x1e\x61\x86\x87\x67\xdc\xff\x14\ \x77\xbf\x1c\xbe\xd7\x92\x96\x69\x99\x8e\xf4\x1c\xf7\x91\xdf\x9e\ \x8e\x37\xa4\xc1\x9f\xe1\x3f\xef\x7c\x8e\x18\xb6\xbb\x35\xd8\x76\ \x84\x7e\x19\xed\x73\xf4\x77\x2d\xba\x8e\x77\xc4\x37\xfd\xf8\xcb\ \xb3\x2b\xa9\xee\x2b\x11\xef\x89\x96\x70\x21\x1c\xe6\x50\x23\xc5\ \x86\x46\x9a\xed\xa3\xff\x70\x0d\xbc\xdc\xe5\x1d\xbe\xf5\xcb\x23\ \x8e\x13\x9e\xce\x68\x81\x5e\x6f\xf4\x24\x03\x1c\xb0\xc3\x70\x88\ \x3b\xf2\x8a\x38\x64\x23\x7d\x1f\xcc\x74\x63\xa3\xa5\xd9\x60\x02\ \x46\xa6\x51\x72\x1d\xf7\x81\x3f\x78\xfc\x76\x7b\x49\x38\xd5\x92\ \x3e\x14\xc4\x61\x18\xd3\xd7\x52\x70\x29\x0c\x41\xa9\x4e\xba\xd0\ \xff\x18\xf7\xff\xb7\xfa\x15\xc9\xac\xa4\x02\x72\x7e\x86\x8c\x24\ \x3c\x11\xb2\x9c\xb3\xbd\xca\xa1\x2b\xae\x1c\xcf\x77\x79\xfa\xf6\ \xf1\xc3\xf7\x0f\x3f\x3d\xb4\x97\xc6\xea\xc3\xe2\x82\xed\x4f\x5f\ \xf8\xcf\x9f\x1e\x9e\xdd\x8e\x6e\x40\x10\x45\xf4\xda\xd8\x1c\xad\ \x31\x86\x55\x9c\x55\xb6\xa4\xcc\xc5\xeb\x03\xd2\x55\x3f\x82\xea\ \xb3\xa4\xd3\x66\x5b\x76\xbe\xdf\x0d\x0a\xa3\x17\x8d\x21\xab\x7c\ \x02\x07\x94\x8a\x10\x9b\xfb\x50\x56\x1a\xa1\xe0\x2d\x6e\x9e\xa5\ \x98\xf5\x46\x8e\xeb\x1c\x01\xe3\x86\xac\x9d\xbc\xb3\x64\x95\x72\ \xda\x24\x7e\x2a\xd7\xc7\x32\x7f\x25\x53\xab\xc7\x84\xcd\xe7\xb5\ \xdc\x96\x3a\xa7\x20\x09\x85\x6b\x6a\x68\xd3\x76\x12\x5c\x6a\xaa\ \xe5\xcc\x29\x87\x97\x66\x9d\xad\xfe\x43\x11\x5e\x28\xac\x55\xc5\ \xa9\xb7\x64\x55\x66\x2b\x97\xd7\xcd\x1f\x4e\xb6\x59\x61\x56\x18\ \xe2\xb2\x5c\x5c\x1a\xb2\x65\x7a\xf2\xd1\xe3\xdb\xbb\xf8\x9b\x37\ \xf1\xed\x29\x36\xb4\xc0\xe9\x4b\x9e\x7e\xbc\x3e\x7c\x8c\x26\x3b\ \xac\xfe\x47\x08\x07\xee\xac\x7d\x7b\xd6\xf9\x7c\xa4\x4d\xce\xbc\ \x00\xa2\x57\xd9\xb4\xf6\x68\x06\x6c\xd4\x3d\xb2\x43\x0d\x83\x68\ \xcf\x79\xfe\x4b\x9c\xff\x3c\xfa\x67\xe2\x30\xa2\xcd\xf6\x9b\x87\ \x4e\x81\x6f\xb6\xe3\x6b\x1b\x67\xf4\x2b\xb6\x1f\xf7\xed\xa7\x6b\ \xbf\xb2\xc3\x10\xe6\x40\xdf\x47\xfb\x34\xf0\x53\xbf\x7e\xe3\xa3\ \x63\x9c\xb1\xfd\xb6\xe7\x9f\xcc\x7e\x08\x83\x9b\xda\x9c\x73\x9a\ \xd6\xbb\xba\x14\x9f\x6a\xd3\x7d\x6b\xa6\x4d\x3b\xf2\xc7\x91\xfb\ \xf3\xf6\xb9\xb5\x6f\xb6\xe3\x8d\x5f\xcf\x38\x3a\x2e\x75\xce\x15\ \x3c\x81\x0e\x3b\xc3\x93\x1e\xd0\x40\x0e\xf2\x8a\xf6\x2c\x3e\xe5\ \x36\xb2\xb5\xba\x86\x32\xa8\x80\x64\x92\x53\xae\x24\xb4\xe1\xa8\ \x14\xf1\x90\x65\x02\x76\x54\xb3\x6d\x41\x40\x53\xc8\x06\x80\x63\ \xc0\x05\x9d\x78\xae\x95\x60\x31\x66\xa6\xef\x98\xd3\x07\x33\xb7\ \x93\x52\x53\xb0\x48\x65\x38\x7a\x5c\xbe\xee\xf1\x0f\x77\xf1\x77\ \xe7\x97\x47\x5a\xe2\xcd\xcf\x0a\xe6\xe5\x3e\x37\xb5\xf3\x77\x6f\ \xfd\xaf\x3a\xfe\xf9\xcb\xc9\x4d\xe9\x29\xb9\x9c\xf4\x80\xa9\xb5\ \x1c\x76\xcd\x23\xc3\x3c\x4b\x8d\x56\x92\x0e\x14\x23\xba\x44\x97\ \x93\x53\x06\x1b\x4c\x95\x7e\x5d\xb3\xd1\x4d\x54\xc7\x93\x82\x19\ \x6f\xd4\xb0\x2a\x20\x0b\x4b\x0f\xba\x8c\x98\xe6\xb4\x11\x51\xfe\ \xf7\xda\x3a\x42\xe8\xbd\x17\x8b\xe2\xd6\x87\xba\x65\xb2\xda\x4a\ \x7d\xfe\xea\x9f\xcd\x9e\x52\xac\x76\xae\x8e\x38\x22\xa2\x2c\x17\ \x6e\xde\xad\x0a\x4d\x28\x7e\x7d\xa3\x37\x4d\x97\x12\x56\x93\x91\ \x93\x43\xdc\x66\xb3\x85\xee\x75\xf6\xa0\x13\x3e\xef\x45\x72\xa8\ \x14\x37\x96\x39\x31\x7f\x4d\x08\x47\xfb\x2f\xef\xb6\xdf\xbd\xb9\ \x4b\x3f\xe6\x7b\x83\x24\xd5\x0a\x7b\x13\xd1\xb2\x9d\x7b\xde\x9b\ \xee\xb0\x37\x0c\xe0\xb4\xe3\xf4\x29\xf9\x97\x97\xf3\x0f\xfb\xdd\ \x4e\xd2\xd5\x6d\xd4\x6e\xd3\xe1\x1b\x9c\xae\x3b\xbc\x94\x71\x39\ \x67\x36\x7e\x32\xd4\xe6\x6a\x16\x22\xf6\xba\x60\x24\x34\xc6\x78\ \xda\xe3\xe3\x68\x4f\xde\x86\x43\xcd\x93\x49\x84\x4b\x4d\x3c\x13\ \x5f\xf7\xcb\x3d\x87\xa1\x5f\xe0\xbf\x8c\x7e\x41\x57\x37\xdb\x10\ \x6e\x48\x28\x7c\x0f\xfb\xb8\xf3\x8b\xe7\xbd\xe7\xc6\xf1\x0e\xd7\ \xef\xba\x7e\x7e\xd9\xae\xad\xd6\x92\x21\x1d\x42\x72\x46\x65\xd2\ \xab\x9c\x8a\xae\x72\x20\x31\xb1\xf5\xe1\xf9\xf1\xca\xeb\xde\x3f\ \x1e\xfd\xab\x7e\x7a\x7f\xda\x1f\x79\x3d\x31\xfa\x2c\x5b\x0b\x48\ \xc7\x00\xd0\xa0\x33\x08\xd8\x30\xdd\x83\x9b\x52\xc9\x3d\xb7\x9d\ \x6d\xcf\x03\x09\x2a\x80\x4c\xb3\xc3\xb7\x8f\xea\x1f\x87\xcd\xad\ \xa5\x2c\x54\xe6\x4a\x06\x3d\x50\x95\xac\xc0\xcc\xe8\x33\xc8\x00\ \xff\x92\xdb\x4e\xba\x21\x54\x93\x72\x49\x33\x74\x05\x30\xd5\x40\ \x89\xa3\x09\x0e\x30\x2f\x9b\xf6\xef\x7a\xfe\xc3\xbd\xfe\xd0\x9f\ \xee\xa0\x27\xdd\xfd\x29\xf2\x8f\x4f\xe4\xf1\xd5\xef\xdf\xec\xdf\ \xd8\xf8\x0a\xfa\xc7\xb7\x7b\x06\xff\xe5\x65\xdb\xd3\x08\x35\xe5\ \xc3\x36\xde\x9d\x88\xd0\x5f\x5f\xf2\xcb\x13\x9e\x0f\x53\x13\xf2\ \x46\x74\xd3\x2a\xfc\x82\x75\x0e\xa5\x58\x74\x00\xde\x98\xfe\x36\ \xc9\xb6\x9a\x27\x7e\x69\x56\x5f\x2a\xa2\x05\xc4\xc8\xd9\xa9\x59\ \x70\x13\x12\x99\x31\x8e\x83\x45\xf1\xa8\x91\x4f\xa2\x10\x81\xb7\ \xb3\x60\xde\x1e\x9b\x9c\xd5\x1a\xad\xa2\x40\x39\x28\x00\x00\x20\ \x00\x49\x44\x41\x54\x6e\x6f\x81\xd6\x0b\x4a\x6f\x51\x70\x87\x1b\ \x71\x17\xc5\xb2\x9b\xfe\xae\xe6\xbd\x68\xb4\x73\x1c\x3e\x35\xeb\ \xe5\x9b\x32\x2f\x72\x76\xb1\xea\x2a\x0e\xb8\xba\x37\x86\x57\xa7\ \xe6\x72\x0b\xcd\x72\x7f\x13\xd2\xf0\xf2\x9b\xd6\x3e\x90\x83\xe1\ \x38\xea\x06\x6d\x08\x07\x48\x4f\x33\xe2\x42\x54\x81\xd7\x2f\x38\ \xbd\xa8\x7f\xca\xfe\xd7\xc3\x3e\x66\xbf\xba\x92\xe9\xac\x74\x90\ \xd5\x8b\x79\xc0\x0f\xd9\x60\x04\x66\x53\x1b\xb7\x4c\x69\xb5\x9e\ \x19\x14\x1c\xad\x38\x20\x2e\xc9\xbc\x6f\x3c\xf9\x68\x68\xe6\x2d\ \xd9\xc0\x30\xcb\x2e\xf6\x8c\x37\xbe\xbf\xb3\xfd\x0c\x09\xf9\x3c\ \x78\x8d\x68\xdc\xdd\x7c\x57\x67\x06\x52\xdd\xe8\xae\x90\xae\x32\ \x99\x84\x63\x83\xff\xf6\xd4\xff\x78\xf0\xe7\xd2\x03\xd7\x40\x74\ \x0a\xdb\x6b\xfc\xc7\x06\x67\x1a\x35\x09\x5f\x02\xa2\x75\x98\x8e\ \xc3\xbf\xa4\x0d\x61\xdf\xe3\x73\x3f\xee\x78\x3d\x33\x1a\xd0\x94\ \x8d\xe1\x8a\x46\x19\x0e\x22\x98\xd8\x90\xee\xfd\xd4\x5a\x87\x46\ \xe0\x0a\xbd\x44\x47\xee\x49\x38\x65\xd8\x76\x3b\xfd\xfb\x65\xfb\ \xe7\xfd\xfc\xa5\x1a\xf9\x89\xb4\x48\x4b\x39\x43\xae\xac\x76\x9b\ \xa8\x21\xe4\x48\x87\x7b\x50\xc7\x30\xb9\x8c\x5d\x14\xd2\x04\x7a\ \xc1\xa4\xa2\xac\x63\x93\x54\x40\x92\xe3\x68\xf1\xf2\xdb\xd3\xfe\ \x7f\x3d\xec\xdf\x37\x85\x4e\x7f\x09\xfe\xcb\x4b\xfb\xd7\xbd\x7d\ \x11\x2c\xf1\xe9\x4b\xff\x2f\xbc\xfc\xae\xbf\xfc\xc6\x37\xff\xa0\ \xeb\x5f\x8f\x7f\xfb\x7c\x3e\xe4\xee\xf8\xc3\xa3\xff\xe3\x3b\x1a\ \xc6\xff\xfb\x43\xfe\x7f\xcf\xdd\x7b\x53\x46\x8e\xe4\xe4\xba\x4d\ \x5f\x8b\xa6\x4b\x94\x2c\x01\x55\x25\x65\x5f\x7d\x4c\x95\xb4\xa9\ \x61\x09\x67\x2b\x57\x2b\x56\x69\x13\x44\xc1\xc2\x51\xd6\x98\xd7\ \x66\xf6\xd2\x5d\x15\x63\x03\x33\x8e\xc8\x58\x25\x1c\x16\x3f\xb3\ \x7e\x6f\x0d\xb7\x0b\xb2\x64\xa5\xe7\x70\xb7\x55\xc6\x2c\xa0\xe0\ \x2c\x38\x28\x0b\x1b\x68\x20\x13\xcd\x5a\xb7\xee\xe6\x25\xd6\xb2\ \xb5\x06\x79\xd5\x0f\xd4\x77\xb9\xd5\x00\x80\xbf\x1a\x06\x10\x0b\ \x35\x5d\x61\x6a\xa7\xa7\x19\x60\x2e\x98\xe0\x07\xec\xa7\x4b\x7b\ \x1e\xdc\x29\x27\xdc\x6c\xc9\x23\x81\x9a\x0d\x4c\x21\xa9\x1f\xb4\ \x0b\xec\x45\x7e\x51\xdf\xcd\x74\x4e\x1f\x63\xaa\x91\xcb\x6f\x0e\ \x17\xfc\x45\xf6\xf3\xe1\x4f\xda\x8e\x9b\x23\xe4\x96\x05\x54\xb5\ \x09\xd2\x53\x9b\xac\x7b\x3e\x78\xbc\x71\x6f\xe4\xa3\x11\x6d\xdf\ \xa3\x5d\xc3\x07\x41\x57\x25\x84\xef\xa8\x6f\xfa\xf5\x0d\x0e\x87\ \x1f\xc0\x06\x7e\xd7\xf5\x55\x1f\xc3\x70\xa0\x93\xa2\x45\x37\xba\ \xa3\xc3\xee\xbd\xfe\x55\xd1\x78\x7c\xc3\xfc\xee\x7c\x7d\x3a\xce\ \x20\x86\x5e\x27\x43\xab\xa3\xb1\x9a\x80\x19\x3e\x4c\x6c\x83\x94\ \x0d\x51\xe1\x99\x6e\x82\x0f\xb6\x0b\x7b\xb0\x5f\x15\x4d\xd5\x36\ \x3b\x3c\x46\x67\x6c\xb2\xcd\xd0\x2d\x9b\x0d\xc7\xd5\xe0\x5f\xa1\ \x5d\x7d\x7f\x3e\xec\x59\x3d\xd8\x0c\xa5\x5a\xf5\x44\x7f\xd1\xc3\ \x13\x1f\x5e\xb6\x80\x1d\xb5\xa6\x8c\x46\x59\x58\x86\x05\x42\x13\ \xdd\x47\xb8\x1a\x93\x4c\x5b\xe8\x77\x94\x6f\x0a\x5a\xf9\x61\x7a\ \x44\xc8\x67\x2b\xc7\x33\xe1\xd2\x3b\xe2\xbf\x3e\x7e\xfe\xdb\x36\ \x80\x0f\xff\xeb\xb8\xfb\x7f\x3e\xfb\x1f\x0f\xbb\x36\xa8\x4b\x99\ \x7f\x1a\x77\xe3\x4b\xd7\xe3\xfe\x7d\xd7\x3b\xd3\x7f\x7b\x7f\x74\ \xc4\xbf\xfd\x7c\xce\xd0\x39\x3f\x3d\x88\xe4\xe6\xda\xc0\xcd\x9a\ \x3c\x98\xb1\xf0\x17\x6b\x9f\x59\x57\xf1\x0a\xe7\xa3\x58\xfc\x65\ \xbd\x5d\x8c\x55\x38\xc9\xc8\x31\x87\x71\x05\x4c\x9b\x96\x65\x99\ \xd1\xe1\x39\xa3\x6a\x75\x4e\x2f\xe0\x38\x55\x4c\xf3\x99\x57\x2c\ \x0f\xd5\xab\x27\xfa\xf5\x90\x36\xc1\x52\xf3\xfe\xbf\xa4\xea\xcb\ \x69\x83\x75\x70\x55\xaa\xb4\x11\xb6\x38\x8e\x46\x3a\xdc\x0b\xeb\ \x9c\xeb\x47\x8a\x59\xf4\x99\xf4\xae\xdb\x60\x60\xea\x77\xb8\x0c\ \xb4\xd5\x27\xb0\x79\x81\xbb\x3d\x3f\x82\x01\xa7\x1d\xfc\xa7\xe7\ \xbb\x1f\x2f\xad\xa8\x26\xe6\x0e\x38\x98\x36\xf9\xc8\x33\x6b\x90\ \x70\xd1\x61\x5e\xaa\x02\xf7\x34\x09\x5e\x9f\xc0\x86\xaa\xeb\xc1\ \x0d\xa7\x44\xfb\x34\xf8\x97\xa3\x5d\xdc\x92\xb3\x5c\xfd\x1a\x38\ \xaa\xd1\x47\xc2\x33\x4e\x31\xbe\xf2\x96\xa7\x78\x6b\x2f\x1d\xf9\ \x0e\xf6\xcc\xf8\x12\x0a\x8d\xe2\x49\x78\xea\x4d\xbb\xbe\xe7\xcb\ \x59\x49\x35\x27\xbf\x6a\x97\xaf\x1a\x0c\x1c\xe8\x03\xc3\x90\x40\ \x36\xa0\x01\x81\x20\xd8\x21\xd3\x41\xe8\xc4\xf1\xbb\xfe\xf2\xe3\ \xe8\x3f\x5e\xdd\x9a\x3c\x01\xb9\xac\xd5\x84\xbd\x5a\x4e\xae\xe1\ \x39\xfa\xc0\x99\x87\x92\xd1\x3c\x36\xca\x12\x1a\x80\xaa\x6e\x21\ \xf6\x84\x87\x14\x6a\x94\x1b\x86\x65\x34\x65\x93\x75\xe0\x8e\x97\ \x3b\x3e\x6f\xb8\x9c\xe1\xef\xa1\x8f\x68\x1f\x47\xbf\x64\x0d\x15\ \x9b\x70\xa2\x3a\xe1\x24\xac\x09\x1e\xc8\x94\x7a\xa6\x57\xba\x3b\ \xe6\x28\x39\x6f\x6c\xf9\x00\x62\x7e\x42\xa5\x98\x69\x7c\x72\xfe\ \xca\xa1\x64\x61\x20\xcd\xe0\x2e\x1d\xa7\xe4\xef\x4f\xe3\x77\xed\ \x68\x78\xfc\x28\xff\x97\x17\xff\xf7\x38\x5f\x37\x81\x3b\x94\x30\ \x1f\x2d\x7e\xd8\x69\x5f\xde\xeb\x71\xff\x7e\xdb\xbf\x75\xf2\xdd\ \xb0\x23\x7e\x79\xf6\x07\x0e\x87\x8d\xe4\x31\xee\xd8\xdd\xe2\x1a\ \x09\x1a\x72\x94\x58\x37\x55\xec\x6e\x9b\xae\xe5\xa8\x50\x8d\xa0\ \x29\x60\x9b\x0f\x15\x1c\x86\x92\x38\xce\x52\x1b\xdd\x94\x95\x6b\ \xb2\x09\x9b\x31\xc8\x05\xf7\x62\x36\xcc\xbb\x7c\x72\xa2\x6e\x27\ \x79\x86\x0b\x35\x66\x0b\xd0\x91\x05\x22\xc6\xed\x96\xbc\xe6\x00\ \x93\x0a\x65\x0e\x20\x32\x57\x65\xbd\x30\x07\xf5\x15\x52\x1c\xcd\ \x99\xaf\x59\x56\x12\xce\xa6\x8d\x95\x2f\xd0\x6e\xc0\x24\x10\x59\ \x0d\x8a\xc5\x03\x2d\x02\x8b\xa6\xe4\xf7\x57\x4f\x83\xe0\x81\xf6\ \x84\xed\x23\x4f\x81\x0d\x3e\xc0\x2e\xf3\x19\x4a\x60\x12\x83\xe9\ \x46\x2b\xea\x46\x6f\xda\x6a\xfd\x32\x0c\x68\x63\xc2\x7a\x27\x1d\ \xb2\xb0\x7b\x62\x1f\xd6\xaf\xbe\xed\xce\x31\x17\xba\xaf\x80\x19\ \x91\xc0\x06\xd0\xf5\x72\x84\xe7\x30\x3b\xf6\xb6\x3d\x7f\xe0\xd8\ \xc0\xb7\xe0\x43\xea\x7f\x93\xf5\x66\x4d\x92\x24\x49\x92\x1e\xb3\ \x88\xaa\xb9\x7b\x44\xe4\x59\x59\xd5\xc7\x4c\x83\x76\x9b\xb0\x3b\ \x2f\xc0\xff\xff\x0f\x78\xc3\x0b\x40\x4b\x84\x59\xec\xec\x4c\x1f\ \x75\x64\x56\x56\x46\x46\xb8\xbb\x99\x8a\x30\x1e\x44\xcd\x23\x9b\ \xd0\x44\xd5\xd4\xd5\x95\x95\x19\x11\x6e\xa6\x2a\x07\xf3\xc7\xcf\ \x63\x4b\x9a\xdc\x1b\xf2\x8d\x5d\x5f\x63\x5b\x8a\x9d\xe7\x68\x58\ \x0d\xc3\xb1\x74\x08\xd8\x2a\x43\x8a\x08\x87\x09\x5e\x09\x1c\x0e\ \x21\x36\xf8\xe5\x7b\xde\x7f\xe8\xf6\xe9\x9a\x54\xb9\x54\x5b\xc2\ \x13\x2e\xb8\xa1\xe0\x80\xd1\x82\x6f\x2c\xfe\xd0\xcf\xf7\x79\x7a\ \x72\xfb\x2b\xfc\x4b\xb6\x98\x39\x2f\xb0\xda\x75\x17\x1b\x16\x10\ \x7b\x7a\x13\x32\xa5\x55\x32\x62\x55\x22\xaf\x0d\x6b\x63\x3b\xd1\ \x1e\x88\x3b\x6a\x0b\xca\x4a\xc2\x94\x15\x7c\x48\x43\x16\xdd\xdc\ \xa1\x51\xa0\x6f\x4b\xf4\x9d\xfc\x32\x12\x3b\xb9\xa8\x16\x71\x4c\ \x16\x51\x40\x3b\xa2\x62\x6a\x4d\xcc\x10\x26\x59\x7a\x34\x63\xcf\ \x07\x1b\xbf\x3b\x6c\x27\x7b\x1d\xb8\xff\xdb\x86\xbf\x8c\xb6\x9d\ \x86\xe8\x5a\x1b\x72\xc0\x92\xf4\x38\x1c\x7e\xdc\xb6\x7c\xb4\xb8\ \xbf\xfe\xf1\x98\xef\x3a\xfe\xeb\xfb\xf5\xe3\x81\xaf\x0f\x68\x6c\ \x5f\x87\x3d\x0f\xcb\xca\xee\x32\xb1\xaa\x90\xdc\x71\xbc\x98\xb1\ \x75\xb7\xab\xa7\xfe\xe9\xc4\xe4\x5a\xce\x5d\x9c\xb9\x59\x86\x66\ \x2a\xce\xfc\x65\x9a\x92\x7c\x2f\x1a\xad\x45\xbd\x3f\x64\x44\x4c\ \x38\x68\xc9\xe3\xb3\x1e\xd1\x9d\xa9\x85\x19\x36\x32\xd7\x9d\xca\ \xac\x1c\x16\xd5\x6e\x85\xe6\xf4\x89\x43\x2f\x63\x50\x01\x81\x22\ \x27\x76\xdc\xdc\xdc\x1b\x7a\xb3\x85\x6c\x85\xe6\x2a\x56\x08\x27\ \xd7\xbc\xd0\xd8\x46\x14\x9e\xe2\xe6\x2a\x35\xdf\x13\xc1\x77\xbf\ \x1a\x27\x93\x9e\x26\xb3\x6c\x0e\xcc\x35\x4b\xad\x05\x95\xee\x15\ \x25\xb9\x83\xd0\xbc\x38\x47\x28\x8e\xe0\x6d\x26\x9e\xbb\xd0\xbd\ \x10\x29\xb4\x54\xa4\xad\xc6\x34\xac\xc0\x11\xf2\xd4\x12\xf4\x4a\ \x1d\xd6\xcd\xfe\xf0\x8d\x5d\x8d\x10\xe1\x49\x5e\x06\x7f\xbd\x8e\ \x57\xf0\x77\x87\x01\x60\x01\x8f\x90\x9b\x00\xea\x8a\xfb\x7e\xf9\ \x0e\x97\xa3\x40\x9e\xae\x3c\x7e\xce\xbb\x33\x19\x1c\xa9\x1e\x53\ \x13\x55\xff\x9d\x05\x26\x01\xa2\x2b\xde\xf0\xfc\x16\x57\xd7\xe5\ \x9e\xaf\x7e\xe7\xfc\x1b\xf9\x18\x65\x83\x08\x96\xd0\x45\x5a\xa9\ \xe6\x62\xa0\x89\x6f\x7d\xfc\xa9\x9f\xdf\xa1\xfd\x06\x7f\xba\xfa\ \xd7\x38\xe1\x30\x84\x51\x20\x4e\xc6\x0d\xa5\x39\x4d\xf6\xb5\xf6\ \x03\x19\xca\xab\x0e\x17\x5e\xef\x6c\x6b\xda\x16\x2e\xf7\x86\xc5\ \xa2\x58\x27\x09\x08\xa3\x48\xf7\x59\x28\x75\x78\x88\x99\x99\x1a\ \x90\x4b\xad\xae\x99\x7d\xb8\x38\x4d\xa0\xa5\x86\xce\xca\x2b\x28\ \xd0\xfa\xee\x62\x93\x3b\x3b\x30\x88\x74\x30\x89\x38\x30\x4f\x66\ \xae\xb6\x52\x1f\xe3\x70\x69\x4b\x2e\x52\x42\xb5\x20\x52\xd0\x0c\ \xec\x5b\xe7\x2f\x63\xcb\xf3\x32\x6c\xfc\x71\x79\x7a\xbb\x8c\x7b\ \x97\xb3\x03\xfd\xd7\xb5\x3d\xa5\xd9\x22\x0f\xdb\x46\x32\xdd\x5b\ \x14\x14\x16\x46\x34\x2b\x47\x59\xd1\xcf\xa6\x06\x99\x0e\xe6\x2c\ \xb8\x11\x19\xe5\x44\x4e\xce\x5d\xe5\x9e\x1d\x57\x9d\x76\x72\x5e\ \xef\xd8\xc3\xa4\x0a\x69\x4b\xd0\x2b\x3d\x64\x62\x6a\x8a\x68\xb1\ \xdb\x32\xb1\x4b\xdb\x1a\x13\xb2\x82\x89\xc1\xe8\xc6\x46\x78\x25\ \x17\x2a\x03\x32\x65\xd2\x98\x91\x3b\x01\x64\x4f\x9b\x32\xf7\x9a\ \x5f\xcf\xc0\xaf\x4a\x62\xa9\x85\xa6\x99\xcc\x4a\x82\xb5\x47\xe5\ \xee\x4e\x1b\x4c\x7a\x7e\x29\xa6\x27\xd6\xcc\x93\x96\x46\x06\xeb\ \xe8\x6d\x91\x35\x87\xf7\x80\x87\x15\x94\x1f\xc4\x98\x83\x40\x2a\ \x55\x3e\x53\x44\xc0\x45\x79\xad\xc5\xe0\x4a\x4e\x0e\x68\xd6\xfe\ \xc0\x60\x54\x0b\xf9\x90\x07\x54\xc9\xbf\x7a\x81\xc4\xd7\x55\x3a\ \x0c\x06\x78\x24\x0c\x7e\x45\xbb\xa0\x07\xa2\x21\x3a\xf3\xe0\x70\ \x6b\x49\x2c\x39\x3e\xf0\xf9\x8d\x56\x47\xbf\xda\xdd\xcf\x71\xff\ \x97\xf5\xf8\x05\x5c\x2d\xd7\x64\xc2\x02\x00\x5c\xfb\xd5\x6b\x48\ \x02\x6d\xcb\x3f\x34\xfb\xaf\x4b\xbe\xe1\x66\x18\x1f\xb8\x7d\xdf\ \xfa\x79\xed\x41\x08\x17\x60\x74\xa4\x03\x51\xe6\xae\x2c\x73\xe8\ \xf5\xa4\xf5\xa8\x73\x58\x7b\x93\xfd\xe3\x76\x1c\xcd\xd5\x72\xba\ \xe4\x67\x96\xf8\xd4\xbf\xde\x60\xfa\x9c\x14\x33\x0b\xf7\xe4\x54\ \x18\x35\x2b\xac\x8f\x99\x7b\x3d\x4a\x26\xf7\xb2\xbb\xd5\x89\x38\ \x7c\x4b\x01\xe9\xa5\xac\xce\x01\xcb\x3d\xcb\xb8\xa4\xf2\x53\x0b\ \x79\x43\x73\xcc\x11\x6d\x5d\xe4\x06\x34\x80\xae\x70\x36\x79\x80\ \x25\x05\x9c\x1c\x75\x4f\xf4\x8c\x50\x8e\x6a\x2f\x84\xb6\xeb\x7c\ \x97\x68\xed\x57\xc5\x7f\x7f\x4a\xa1\xfd\x69\xc9\x83\x0f\xe8\xf0\ \x38\xec\x97\xaf\x87\x55\x0e\x0f\x55\x9c\xfa\x54\x71\x4c\xcc\x38\ \xc4\xc0\x2d\x7d\x4c\x40\xcc\x71\x97\xd5\x62\xff\xc6\xca\xa8\x07\ \xcc\xd2\xc0\xc9\x21\xc6\x7c\xfc\x66\x38\x46\xf1\xa7\xe6\xc3\x50\ \x61\x53\x64\xca\x26\x2d\x3e\x23\x72\x00\x72\x6b\x04\xc9\x0b\x26\ \x59\x4f\x6d\x17\xed\xd7\x11\x32\xb3\x20\x2b\xb1\xad\xb6\xc0\x45\ \x2d\xae\x4f\xcb\x9b\x4f\xa4\x13\x7d\x8a\x31\x6f\x2b\xa1\xda\x1d\ \xd7\x5c\x4e\xb7\xb3\x08\xdc\x07\x74\x2f\x69\x9e\x53\xe2\xb0\xeb\ \x4a\x05\x4b\x79\x51\x20\x12\x1e\xf0\x80\x65\x11\xca\x85\x28\x6f\ \xf6\xcc\xa8\xac\x22\xa3\xc6\x21\xd6\x6d\xf2\x75\xbe\xb9\x34\x2a\ \x03\xa8\x68\x82\x0e\x1c\x02\x23\x71\xd0\x0c\x74\x54\x66\xab\x2f\ \x30\xa7\x81\x28\x77\x7e\x60\x1f\x32\x17\xa9\xb1\xd1\x0c\x3e\x4a\ \xe1\x8c\xad\x71\x74\x3b\xb4\xb0\x11\xe3\xed\x61\x7c\xbf\xb0\xd3\ \x03\xc7\x8b\xee\x3e\xc5\xc3\xa7\x6c\x4f\xb6\x6d\x89\x21\x04\x1b\ \x2a\xe0\xe0\x86\xc4\xc4\xe4\xbe\x73\xb4\xef\x7a\xbc\xb2\x67\xc3\ \x7a\x8f\xf5\xf7\xce\x4f\xf0\xc7\x30\x36\x80\x4d\x3c\x08\x07\xc0\ \x0a\x83\x67\xa6\x4d\xb6\x21\x88\xeb\x01\xfc\xb0\xd8\xa7\xf5\xfa\ \xeb\xf5\x40\xf4\xd1\x24\x4a\xbe\x19\xc3\x26\x17\xac\x1c\x81\x50\ \x4c\xac\x6a\x63\x1c\x7c\x74\x98\xb1\x05\x7d\x43\xd3\x8d\xcf\xb9\ \xf7\xb5\x94\x3c\x65\x69\x51\xf1\xf1\xea\xb2\xad\x32\x0e\xe6\xa7\ \xb7\x73\xf6\xa6\xe6\x0d\x31\xa5\x72\x35\x03\x36\x57\x3a\xe6\x93\ \x16\x8c\x8a\x02\x4a\x9a\x1c\x26\xb7\x01\x80\xc3\x79\xb8\xa7\xf5\ \xcc\x75\x0d\x80\x91\x36\x54\x51\x5f\x30\xa6\x23\x95\x94\xf0\xe5\ \x7a\xf9\x79\xc3\x9b\xef\x0e\x6f\xdd\x6c\x1e\x3d\xca\xf4\x50\xd1\ \x48\x28\xc7\x88\xd2\xa8\x54\x5e\x77\x21\xc4\x2d\x29\x8c\x19\xdc\ \xb9\xcb\x6a\xea\x05\xb7\xba\x2c\xa9\xd2\x0a\x10\xe6\xcc\x98\x33\ \xd4\x1a\x23\x18\x91\x29\x14\x39\xa6\x32\xff\x76\x5e\xe1\xec\xc8\ \xcb\x8c\xb0\x0f\x7a\xb1\xeb\xf6\x29\xa9\xb9\xfb\x37\x90\xe0\x09\ \xa2\xdc\xa3\x98\xb0\x67\x4d\x31\x53\x0c\xb8\xcc\xcb\x73\xe6\x93\ \x96\x46\xd8\x34\x34\xcc\x0f\xfd\x65\x39\x04\xc3\x4b\xfa\xc1\x3e\ \x5d\x9b\x02\xaa\x17\x52\x59\x29\x6e\x66\x3e\xa5\x01\xf6\xf2\x16\ \x41\x31\x50\xb1\x67\xda\x5f\x6d\xdc\x82\xa9\xe6\xf0\xf6\x46\x7c\ \xc4\x2e\x3e\x92\xcf\x34\x17\x23\x5a\xaa\x0f\xb6\x84\x34\x35\x34\ \xf3\x7a\x9c\x62\xd7\x89\xac\x29\x30\x80\x45\x46\x47\x23\x7d\x70\ \x5c\xd3\x87\x92\x0c\x22\x7d\x6a\xd9\xe3\xed\x72\x79\x43\x08\x4b\ \xe2\xee\x8b\x4e\x9f\xf3\x78\xa6\x6d\xce\xac\x91\x28\x4c\x6e\x9a\ \x74\xed\xba\x9b\x0d\x0e\x70\x3c\x86\xfe\x96\xaf\xbe\xf3\xed\x2d\ \x2e\x0b\x96\x1f\xcc\x7f\xf2\xf6\x7c\x55\x99\xf3\x84\x96\x6c\x2c\ \x25\x6c\xfa\xb0\x3c\x47\x7b\xca\x3e\x6c\x74\x8c\x0f\xce\xe7\xbb\ \x33\xbe\xfa\x59\x1d\x47\x8b\x8e\x56\x3e\xf4\x09\x65\x02\xa0\xf9\ \x4c\xc8\x1b\xf3\xe4\xeb\x1d\xb7\x45\x66\x76\xb8\xe2\xb0\xaa\x0d\ \x19\x79\x65\x26\x86\xb1\x7b\x12\x30\x39\x0b\x83\x5d\xfe\x42\x14\ \x10\xd5\xa6\xd6\x3c\x6f\x92\xfc\x9c\xd7\x9a\x27\x26\x68\x9d\xcc\ \xb9\xeb\x28\x37\x2b\x7d\x92\xa1\x30\x6a\x6a\x7a\xa6\x7d\xce\xe3\ \xda\x9e\x17\xd8\x87\x86\x1f\x6c\xfd\x6b\xda\x4a\xaf\x7c\xa0\x50\ \x96\x36\x54\x65\xdb\x4f\x1d\xd9\xde\xde\x8d\xc5\x8e\x81\xc3\x46\ \xf3\xe6\xbf\x7f\x77\xfd\x12\xf6\xf7\xb3\xaf\xf4\x74\x2b\x31\xcd\ \x04\x8d\x59\xcc\x10\x04\x98\x65\x46\xd9\xbd\x02\xe6\xd5\xa5\xef\ \xd1\x22\x33\x8b\xd9\x0b\x0a\x2b\x9b\xab\x9f\xd2\xb9\x4d\xe8\xc8\ \x24\xe4\xd5\x21\x97\x99\x23\x47\x28\x7d\x67\xac\xde\x08\x81\xb6\ \xf3\x72\xa6\xa8\xad\x14\xd0\x59\xb1\x4f\xf4\xdb\x6b\x56\xba\x33\ \x73\x4e\xf0\x0f\x05\x15\xa2\xa0\xf6\xae\xde\x2b\x3c\x90\xce\xac\ \xb5\x5b\x11\x71\x67\x5b\xef\xee\x35\x68\xde\x49\x82\x56\x95\xf7\ \x9c\xf8\x62\xbf\x2a\xad\x55\x1b\xc5\xdb\xbe\xa7\x7c\x35\x39\x33\ \x5f\xbd\x86\x0c\xe5\x90\x10\xb9\xc7\x1d\x68\x7f\x79\x2a\x5c\x9b\ \x2f\x8e\x87\x99\x1c\x30\x8f\x4c\x53\x1a\x30\xc3\x09\xb2\x72\x98\ \x6f\x61\x2e\x9c\x49\x43\x30\xd5\x44\xb2\x86\x46\x93\x14\xe0\x03\ \x4b\xc0\x09\x76\xd8\x02\x6b\x5b\xde\x79\xbc\xf1\xad\x61\x40\xcb\ \x95\x87\xdf\xa2\x3f\x8b\xd9\x1c\x6d\x32\x34\x73\xc7\x6b\xe4\x9c\ \xf3\x94\xbb\x4a\xde\x6c\xa5\x3e\xea\xe1\x13\x9e\x5e\xe3\xb1\xe5\ \xe5\x35\x0e\xbf\x6f\xf9\xe9\xc2\x1c\xf2\x83\x4c\xa3\x6b\xac\xb6\ \x54\xf4\x5c\x8a\x4f\x58\x3e\xc6\xdb\x37\xf6\x78\x8f\xf5\x00\xfe\ \xb1\x5b\xbb\xbf\xfc\xb6\x69\x43\xab\x6c\x52\x94\x84\x69\x3a\x3a\ \x92\x99\x8e\x6c\xcc\x43\xcb\x3b\xae\x47\xc8\xe8\x81\x7e\xc6\x72\ \x65\x87\xd1\x78\xf5\xa4\xe9\x90\x68\xa3\x04\x2a\x99\x4b\xc0\x91\ \x2e\x0b\x2a\x25\x47\x4c\x89\x29\x26\x74\x25\x77\xc0\x57\x52\x23\ \xea\xd7\x2a\x5a\xca\x13\x96\xd3\x4e\x9e\x2e\x98\x14\x9c\x86\xb6\ \xe5\x6a\xfa\x71\x9c\xbe\x6f\xf8\x9d\xe9\xb5\x6f\xff\xeb\x83\xe7\ \x55\x3f\x5d\xdb\x35\x0f\xab\x35\x11\xd6\x44\x5d\x19\xc3\xa9\x37\ \xdd\xfe\x74\x6f\x7f\x38\xaa\xe1\xf0\x55\xed\xaa\x71\xb4\xf5\xfd\ \x82\x3f\xbf\x1f\xf9\xf3\xe1\xe7\x4b\x8b\x49\x5c\xad\x38\xae\xa4\ \x03\x08\x50\x18\x8a\x9c\x38\xb1\x42\xda\x83\x91\x98\x38\xe2\xdc\ \xd3\x40\x60\xc6\x8c\x1a\x99\x48\x8a\x08\x84\x21\x22\x23\xe7\xa2\ \x42\x73\xd3\x23\x65\xec\x89\x0f\x53\x0a\x83\x12\xbf\x79\x6b\x30\ \x9a\x9d\xbd\xf4\xa5\xc8\x96\x05\x2e\x9d\xb3\x6e\x73\xdb\x6b\xfe\ \xfa\x71\x4d\xea\x1e\x50\xe3\x66\x6b\xce\xde\x4a\x11\xa2\xcc\x1c\ \x36\xb3\xa6\x35\xeb\x2f\xec\xa1\x54\x36\x9d\x9e\x2f\x97\x9b\xf6\ \x34\xeb\xaa\x12\x8a\x12\x6c\x88\xaa\xa8\x8b\x7f\x5d\xf0\xe0\x04\ \x87\xba\xd0\xe8\xa8\x9f\xcd\x2e\xa0\xae\xeb\x4b\x32\x16\x69\x1b\ \x49\x79\x9d\xe8\xb5\x64\xb2\x14\x9c\x8e\x14\x14\x54\x74\x8e\xa5\ \x40\xd1\xe6\x96\x66\x86\x98\x2c\x46\xce\x58\xbc\x9d\x29\x6d\x58\ \xcd\x06\xb3\xa4\x61\x26\xf8\x8c\x2b\x43\xfa\x18\xc7\x18\x6f\x96\ \xf5\x35\x07\x20\xe1\x78\xc9\xe5\xeb\xe0\x50\x38\x4b\x4d\x35\x4d\ \x7e\x95\x58\x65\x37\xe4\x2d\xd2\x27\xb5\x28\xbf\x6e\xf6\x4b\xdc\ \xff\xd1\x2f\x6d\x68\xb1\xf5\x03\xfb\x3b\xe8\xcb\x48\x8b\xad\x71\ \x6d\x79\x6d\x3c\x30\x21\x59\x7a\xbb\x42\x7f\x1f\xfd\x48\xff\x43\ \x7f\x7c\x80\xee\x90\x7f\x58\xc6\xdb\x16\x4f\xd1\x57\x78\x90\x31\ \x2f\x38\x11\xe1\x1a\x8e\x38\x20\x0f\x2d\x17\x44\x87\x1a\x5a\x60\ \xb9\x60\xf9\x1a\xed\x2a\x68\x8a\x60\x6a\x14\x65\x0d\xba\xc7\xf6\ \x41\x79\x3f\x2c\x03\xc0\x26\x49\x9e\x0e\xed\xa1\x13\x45\x18\xce\ \x5b\x7c\xa8\xc4\xa0\x5d\x61\x5f\xc2\x7e\x53\x5b\xe5\xe0\x06\x44\ \x69\x7c\x4a\x46\x98\x22\xe4\x86\x3e\x9a\x7e\x3e\xe3\xdf\x87\x1f\ \x96\xa7\x3b\x6c\xbf\xf3\x66\xa7\x71\x8f\xf1\xf1\xac\xc7\xb1\x5c\ \x40\xd8\xd6\x71\x3d\xc2\xde\x1f\xfb\x87\x53\xbe\x27\x1d\xa7\x27\ \xe1\x2f\xcf\x7a\xda\xfc\xfb\x7b\x7f\xdf\xf1\xfe\xd8\xff\xfc\x43\ \xc6\x2f\x63\x3c\x13\xbe\x50\x62\xda\x50\xe3\x9e\xc6\x93\x1e\x1a\ \xfb\x4c\x94\x96\xd3\xff\x67\xb0\x12\xb1\xed\xd7\xe4\x84\x0a\x97\ \xb3\xad\xa2\x52\xa7\x72\x9a\x70\x36\x59\x74\x6f\xbd\x2d\x66\x0e\ \xaa\xf4\xd6\x66\xa8\xf1\x5a\x41\x05\x22\xa2\xe6\x4f\x75\x03\x03\ \x6c\x99\xe9\x6e\x15\x97\x55\xc8\x7b\xbb\x35\xca\xb0\xdd\x97\x33\ \x7b\x50\xaf\x20\x5b\x6b\x2e\x22\x92\x74\xe4\x4c\x84\xba\x85\xf1\ \x14\x79\x0c\xf2\x7d\x97\x54\xfc\x3d\x58\xb1\x00\x54\xe4\xf6\x92\ \x7c\xb2\x40\x07\xde\x98\x60\xa6\x94\xa9\xe1\x08\x16\xca\xbe\xf2\ \x5e\xaa\xc0\x84\xe0\xf5\x3f\xa7\x62\x54\x40\xf9\x23\xc4\x1b\x6f\ \xdb\xd0\xea\xb4\x17\x22\xc2\xe4\xb1\xf3\xde\x29\x55\x30\xba\xed\ \x14\x70\xc4\x04\x77\x53\xb2\xdc\x63\x97\xd2\x48\x65\x2a\x87\x30\ \xd4\x81\x6c\xd2\x01\xdb\xfb\x8e\x77\xcb\xb6\x90\xa6\xbb\x8d\xa7\ \xdf\xd6\xf6\xb4\x79\x36\x91\xe1\x68\x31\xc5\x76\xb3\x63\xdb\xa1\ \x91\xb5\x5d\x48\x83\xd1\x99\x63\xfb\xe5\x72\xfa\x72\xf7\xaa\xdb\ \x76\xc4\xf5\x95\xb7\xef\x3b\xb7\x8b\x71\x58\x85\x8d\x7a\xb9\xda\ \xe9\x68\x18\xc4\x97\xe0\xbf\xaf\x26\xda\xef\xdb\xf5\x84\x6c\x18\ \xaf\x99\xaf\xda\x36\xb8\x0c\xf4\x61\xd3\x07\x45\xa4\x43\xc6\xe8\ \x19\x9d\xc3\x91\x42\x1b\x38\x0c\xf4\xe7\x6c\xe7\xf0\x41\x36\xd3\ \x60\x73\x3f\xa6\x6f\xc2\x7a\x27\xff\x53\x3f\x7e\xbf\xd4\x60\x2d\ \x80\x24\xd2\x10\x0d\x95\xb5\x3d\xcb\xf3\xfd\x20\xae\xf5\xbb\x05\ \x0e\x2b\xce\xff\xf7\xb5\xfd\xb7\x71\x4c\x2f\xea\xe6\x0c\xe5\x1c\ \x0a\x44\x9a\xb9\xd0\x12\x70\x6f\x63\x59\xff\xb2\x36\xe7\xab\x7f\ \x6a\xe7\x07\x8e\xef\xd8\x5f\xdf\xe1\xeb\x71\xfc\x76\x59\xcf\x61\ \x22\x9b\xb5\xbb\xce\xbb\x1e\x86\xdc\x70\xfc\x25\xf5\xf7\x8b\x3e\ \x9e\xb1\xa5\x2e\x76\xbf\x91\x6f\x9a\xdf\x1f\xda\xef\xbf\xbf\xae\ \x9f\x2f\x9f\x7e\x1d\x83\x56\x9a\x9f\x4c\xc3\x4e\xb9\xb3\x05\xd8\ \x72\x6a\xc3\x6a\x7e\x5e\xba\xef\x32\x02\x68\xa6\x0f\x00\x4e\x06\ \x8c\x88\xd6\x9a\x21\x34\xa4\x1a\xeb\x42\x8e\x56\x1d\x47\x66\x8e\ \x18\x98\xfb\x28\x66\x4d\xa4\xeb\xc5\xab\x3d\xe1\x74\xfd\x07\xc1\ \xb6\xdb\xf8\x67\xc0\xeb\x6c\xb7\x67\x38\xc7\x4c\xf4\xd1\xbc\x18\ \xe8\x30\xc7\x1c\x74\x72\x62\xa4\x43\x25\x61\xa9\x75\xa6\xa6\xba\ \x7b\xa6\xc8\xd1\x58\x5c\x0e\xfb\x46\x0c\xb7\x07\x03\x62\x8e\xd2\ \xea\x1d\xb7\x26\xb7\x61\xda\xd0\x37\xef\xac\x2a\x38\xeb\xcf\x9d\ \xc3\xd6\x4a\x4a\x9c\x9b\x27\xe3\xae\x65\x20\xbe\x59\xd6\x72\x82\ \xbd\x5a\xfa\xa2\x76\x0a\x72\xc3\x69\x60\x49\x5a\xcc\x98\x8d\xfd\ \x4b\xe1\xad\x79\xac\xd1\xc5\x32\x35\x94\x4a\x9a\x32\xfb\x86\xe3\ \x40\x00\x76\x5c\xf0\xb6\xe9\xae\xc1\x71\x10\xef\x9e\x74\xfc\x14\ \x7e\x55\x83\x7b\x59\x83\x1d\x14\x30\xa6\x14\xcf\x9a\xcf\xf1\xed\ \xbc\x1c\xeb\xcf\xf2\xf1\xb4\xfa\x5f\xe3\xdd\xa9\x3d\x35\xa4\xa3\ \xbf\x3b\xfa\xa7\xec\x83\xaf\x57\x8b\x0d\x0f\x03\x87\xd1\x5c\xcd\ \x8b\x5d\x3a\x10\x9f\x31\x34\xfc\x9a\xaf\xbf\x6b\xdb\x83\x9d\x8f\ \xd8\x4e\x18\x0b\x72\x60\xec\x8f\x76\x69\xca\xc7\x0c\x61\x02\x04\ \x1b\x3a\x5c\xd8\xce\xe9\xcf\x71\xb8\xa2\xd3\xb7\x9e\xbc\xba\x0f\ \xdc\x5d\xc8\x33\xae\x64\x27\xd9\xf7\x50\x32\x62\x38\xc2\x31\x0a\ \xa1\x5b\x0c\xe5\x19\x81\x5c\x80\x2d\x40\x72\x07\x56\xc8\xc0\x06\ \x6b\x98\xd3\xb4\xda\xb3\xc1\x06\x99\x96\x2d\x00\x64\x90\x09\xe7\ \xf3\xc8\xff\xb8\xd8\xa3\xdd\x7f\xb7\x6c\x6f\x4c\x47\xf3\x7b\xc3\ \xfd\x5d\xd5\xe1\x1e\xb0\x01\x5d\x63\x3b\x47\xfc\x2a\xfb\xe9\xda\ \x1e\xd7\x65\x18\xe4\xd7\x4f\x5b\x6e\xcf\x7d\x3d\xb5\xe6\x27\xeb\ \xed\xd5\xab\x78\x3a\xe7\x9a\xc9\xa8\xa9\x30\xb3\x06\xfb\xd8\x49\ \x34\x35\xbf\x70\x9b\x5a\x79\x25\x0c\x37\xb8\x26\x60\xd5\x0b\xa1\ \x5a\x61\x8d\xca\xb9\x9f\x2e\x7b\xee\x79\xb6\x94\x34\x22\x23\xb3\ \xb7\xd2\x8e\xed\xc7\x06\x6e\xa4\x20\xdb\xbb\x61\x36\x7c\xa3\xe0\ \x34\xa3\x99\xff\x43\x9b\x3d\x0f\xfa\xf9\x65\xb8\x59\x73\x9f\x6b\ \x99\x5a\x15\xe0\x25\x4a\x60\x7a\xd4\xe6\x65\x52\xbf\xc8\xcc\xdc\ \xa6\x2b\x6d\xdf\xce\x62\xaf\xd9\x12\x13\x65\x93\x6a\x69\x6d\x98\ \x3f\xab\x51\xfe\x9c\x11\x05\xfe\xd4\xec\x89\x76\x1a\x48\xbd\xf5\ \xda\x37\x51\xfb\xef\x38\xbf\x9c\x1b\x48\x84\x6c\x06\x1c\x9e\xed\ \xcd\x6f\x38\x5d\x70\xff\x05\x87\xb5\xd9\x6e\x6d\x15\xcd\xc1\x97\ \x38\x81\x09\x13\x4a\x37\x9a\x60\xc9\xab\x1c\x1b\xfc\x8b\xee\xee\ \xa1\x03\x11\xee\xe9\xbc\x00\x03\xbe\xe1\xf4\x73\x2e\x8f\xb2\xec\ \x0d\xe6\x89\x91\x73\x39\xf5\x62\x69\xaf\x54\xf4\x49\x4b\x61\x2b\ \x0c\xba\xd1\x36\xda\x5f\xb7\xb6\xb8\x3e\x50\x92\x3f\x82\x17\xf3\ \x4f\x7a\xf5\xf7\xe4\x23\x97\x67\xb5\x8f\x6a\xd1\x2b\xb9\xbe\xc9\ \x18\x16\x8f\x43\xd7\x95\x9f\xc7\xe1\x5d\xd7\x77\x4d\x6f\xb8\x1d\ \x00\x2b\x9a\xde\x3e\x84\x2e\xca\x7b\xd2\x23\x35\x12\x1b\x96\x33\ \xda\x25\x7d\xc3\x21\x9d\x64\x18\x3a\xad\x5f\x14\x3f\x8e\xc3\xa3\ \x2d\x49\xa6\x0a\x20\x59\xe7\x91\x37\xc0\xe1\x25\xf6\x9a\xd9\x0f\ \x98\xa8\xb4\xc9\x3d\x91\x0d\xf8\x13\xf8\x53\x2e\x57\x2b\xd2\x64\ \x12\x06\xba\xe0\x62\xd2\xcb\x40\x36\x7d\xb6\x30\xcb\x43\xfb\x32\ \xec\xeb\xd0\xcf\x57\xbc\xb2\x7c\xe8\x76\x74\x34\x54\x9c\x20\x37\ \xe1\x9c\x3a\xaf\x7c\xde\xfc\x0c\xbf\xa4\xab\x41\x6e\x43\x3d\xf1\ \xac\x71\xbe\x3e\x1d\xcd\x12\xda\xae\xab\x25\x79\x4b\x22\x99\x71\ \xb7\x33\x81\x40\xb0\x80\xa0\xd2\x72\x9a\x23\x13\x2f\x99\xbe\x39\ \xa7\xe6\xbb\x91\x0d\xc5\xd1\xaf\xf5\x5e\xb1\xbd\xf7\x68\x99\xa9\ \xd1\xb8\x79\xf8\x6d\xdf\x73\xe4\xbc\x6c\xea\x41\x26\xab\x51\x6f\ \xfb\x68\xd8\x50\x29\x0e\x33\xc3\x6b\x86\xf8\xdd\x96\x81\x99\x21\ \xa5\x9b\x37\x6b\x6e\x25\xc1\x98\x23\x4a\xdb\x37\x33\x93\x7f\xab\ \x52\x05\xed\xaf\xc7\xfc\x4e\x6f\xc9\x86\xb7\x2f\xcb\x0a\x41\x23\ \xb2\x81\x3d\x0d\x8f\xdb\xf5\x2f\x8f\x5a\x5c\x6b\x60\xad\xeb\xd1\ \xe6\xcc\x70\x9f\x23\x4c\x99\xfa\x6d\xdd\xb6\x0b\x76\x40\xcb\x3d\ \xda\x4d\xe6\x69\xce\x10\x3f\xaa\x23\xad\x47\x3b\x93\x4f\x0e\x38\ \x2c\x6b\xae\x7d\xfb\xca\xea\xad\x11\x95\x96\xe9\xa2\xdc\xd2\x4c\ \xad\x0d\xc6\xc7\xd4\x1a\x5c\x98\x84\x67\x82\x5a\x9a\xf5\xa1\xe5\ \xd7\x61\x2b\x89\x56\x34\x59\xdf\x6f\xb9\xda\x37\xee\x40\xb8\xb2\ \x63\x58\xce\x44\x9e\x94\x70\x8c\x05\x5f\x79\xfd\xef\x69\x3f\xd2\ \x73\x60\x4b\x3f\x3b\xbe\xa8\x3d\x5f\xef\x0e\xb0\xd5\xfb\x6f\x68\ \xd1\x92\x04\xc3\x04\x0e\x36\x79\x4b\x72\x53\x3e\x8f\xc3\x33\xf4\ \x64\xed\x9e\x6c\xc0\x8e\x70\x4a\x08\x99\x96\x64\xa6\x6d\x28\x07\ \x8e\x0f\x7a\xd0\x93\x2e\x0e\x20\x88\x03\x69\x17\xc5\x4f\x9b\x85\ \xf5\xcd\x52\x4a\xa5\x03\x3d\x8d\x25\x4b\xb3\x6a\x14\xe7\xd2\xa0\ \xde\x99\x22\xbd\xd8\x8e\x4d\xc3\x80\x0d\xb7\xf4\x30\xee\xf3\x60\ \x99\x41\x66\x2e\x1c\xc2\x93\x19\x36\x28\xb6\xe8\x2e\x33\x3b\xd8\ \x58\xe2\xba\xe1\x99\xf9\x91\xc9\x70\x8a\x5e\x61\xb9\x89\x01\x0b\ \xb4\x70\x87\x14\x16\xe4\x00\x97\x40\x4b\xef\x6b\xe6\x48\xdb\x46\ \x2a\x84\xcd\xd7\x54\x40\x62\xdc\x82\xce\x39\x53\xb8\x33\x5d\x18\ \x31\xb3\x3d\x2a\xfe\x28\x26\x64\x60\x17\x53\x4a\xdf\x80\x39\x76\ \x22\xb9\xc1\x9d\x52\xa6\xc9\xdc\xcc\xbc\xb0\xeb\xe2\xce\x8c\x2d\ \x39\x99\x66\x0e\x07\xe7\xa0\x6b\x7f\x23\xda\xbc\x4f\xa6\xaf\x33\ \x6f\x1c\x9b\x3d\xbc\xac\x1a\x9e\x59\xe4\x95\xd0\xd3\xd1\x1b\xea\ \xb7\xb8\xc5\x91\xcc\x5c\xa0\x5b\xfa\x1a\x67\x04\x3d\x6e\x29\x67\ \xba\x0d\xb6\xb5\xfb\x4c\xea\x1a\x11\x31\x00\xcb\x7c\xbe\x42\x41\ \x23\xb7\x1d\xa1\xb8\x9f\x88\xb0\x5d\x4a\xc0\x3d\x33\x28\x59\x91\ \x56\x7b\x66\x01\xf7\x48\x12\x66\xee\x3b\xc7\xc7\xf4\x75\x98\x6d\ \x1e\x8e\x41\x81\x6d\x4f\x63\xc8\x0a\xb9\xe1\x5c\x3b\x91\x8c\x56\ \x86\x78\xb9\x44\xb0\x6d\xb0\x2f\xf2\x73\x94\x63\xa8\x29\x12\xd9\ \xba\xb7\xc4\xb2\xd6\x12\xd1\x93\x4c\xc7\xa2\x19\xec\x68\x3b\x5c\ \xc5\x72\xbf\xbd\x81\x98\xd3\x3a\x1b\x8a\x25\x9b\x56\xd3\x00\xbf\ \xa2\x0d\x11\x48\xeb\x0d\xc2\x39\xba\xc9\x48\xdf\x28\x28\x9a\x7c\ \x1e\x42\x06\x78\x86\xb5\x14\x89\xf8\x22\x27\x72\x28\x9b\xca\x09\ \x96\x50\x22\xcb\xb3\x8e\x94\xa7\x35\x95\x85\x48\xb5\xd1\x9f\x8c\ \x0e\x33\x83\x31\xec\xb0\x86\x06\x7d\x54\x25\x33\x31\x77\x94\xb7\ \x2a\x30\x33\xeb\x06\xd1\x4b\xa6\x3d\x76\x3b\x56\x61\x19\x0b\x33\ \x55\x99\x70\xa2\x4a\x43\x48\x99\xda\xa0\x0b\x57\x9f\x06\x7a\x1f\ \x99\xb2\x24\xc3\x28\x3b\x58\x94\xe2\x25\xa1\xa8\x6b\x03\x5b\xbd\ \x9f\x1d\x03\x96\xc3\x32\xd1\x10\xd0\x88\x68\x89\x43\x22\x09\x0f\ \x01\xaa\x34\xe6\xa8\x5c\x9e\xfd\x8d\xd9\x95\xc8\xbb\x3e\x12\xfb\ \x07\xf9\xc2\xcd\xa8\x87\x37\x81\x97\x60\xb1\x9d\x9d\x64\x2a\xe5\ \x33\x4d\xe5\x18\x29\x57\x6d\x4a\x19\xb7\xe9\x1b\xad\x52\x2a\x5f\ \xe2\xa0\x30\xf7\x17\x25\xe5\x34\x9b\x49\x6b\xce\x52\x50\x9b\xd4\ \x2a\x69\x23\x86\x65\xca\xdc\xd4\x8a\x87\x56\xcd\xb8\xa5\x39\x5a\ \xce\x3b\xcd\x44\xa5\xd2\x58\x43\xb8\x3d\xde\xd6\x7c\x0e\x78\x63\ \x77\xb7\x71\xcf\xb6\x81\x6b\x6a\x68\x33\x88\x25\x28\xe6\xd5\x03\ \xb0\x7e\x8d\x2e\x52\x5e\x87\x5d\xa5\xa1\x4e\xb9\x5b\xc9\x4d\x73\ \xfa\x63\x5a\x5a\x26\xc2\x1c\xee\xa0\xcd\xf5\x08\x65\xa0\x07\xa5\ \x80\xc3\x12\x76\x25\xd9\x6b\xec\xdd\x90\x5e\xe8\x79\x22\x4d\x89\ \x68\x90\x4f\xf9\xb9\x7b\x36\x72\x80\x0c\x87\x45\xf1\x98\x4c\x6b\ \x16\x59\xcb\x6b\xe9\x5c\x19\x10\x95\x0c\x37\xe5\xcb\xa8\x16\xb5\ \x15\x47\x5d\x89\x44\x4c\x8c\x50\xd1\x2a\x4a\xa1\x4e\xb0\xd2\xff\ \xd0\xb2\x96\xb9\x0d\x44\xb5\x5b\x42\xeb\xda\x57\xc2\xc8\x72\xf1\ \xe7\x1e\xab\x55\x81\x7d\x56\x36\xb3\xa1\xdc\x6c\x50\x51\x25\x7c\ \xb5\x50\xf3\xdc\x33\xc1\x46\xf9\x18\x67\x2c\x38\x6a\x28\xec\x64\ \xf4\x6e\x2e\xa6\x31\x92\x89\x9e\xc5\x1b\xd1\xa4\xa3\xc3\x45\xcc\ \xa0\xd9\xda\x66\xd4\x60\x52\xf3\x2b\xda\xa9\x2f\x44\x94\xb9\x70\ \x0f\x31\xac\x54\xb7\x14\x18\x51\xf3\x23\x2c\x95\x7a\x6f\x0c\x30\ \x52\x53\x42\xc7\xc4\x64\xce\x63\xa2\x34\x01\x31\xa2\x3c\xaa\x21\ \x8c\x2d\x84\xc8\x88\xa8\x78\x53\x62\x64\xd1\xd7\x62\x0f\x03\xc4\ \x2d\x4c\x32\x27\xcf\xd6\x6e\xd4\x8b\xbd\x89\x9c\x8f\xd9\x5c\x9b\ \xc8\x42\x31\x59\x3a\x2a\xf9\xb3\x83\x59\x6b\xca\x92\xd7\x25\x2d\ \xc5\x52\xd3\x66\x44\xa8\xe6\x39\x98\x7b\x91\xfa\x29\xbc\x48\xe6\ \xab\x68\xcd\x17\xbc\xe0\xde\xc6\x48\xa9\x62\x3a\x4f\xdd\x65\xc2\ \x68\x85\x5d\xac\xcf\xf3\x25\xc8\xc0\xa0\x4c\xca\xb8\x83\xa8\x0a\ \x7c\x40\x32\x8b\x7d\x57\x86\x1a\xd9\xcd\xef\xc9\x69\x82\xaa\xa6\ \x2d\x33\xa3\x42\xb3\x4a\x08\x93\x5b\xa6\x1a\xbc\x2e\xc9\xe2\x32\ \xe1\x16\x60\x57\x82\x95\x28\xbf\x7c\x2b\xc5\x85\xeb\xdb\x7c\x51\ \x40\x9a\xe3\x87\x54\x29\x45\x66\xa2\x93\x95\xea\x39\xc9\xa9\xf5\ \x13\x77\xe5\xe9\x0c\x15\x84\xb5\xc9\x03\xd1\x6d\x01\x3b\x11\x10\ \xa6\x84\x63\xae\x7c\x10\x60\xc3\x1e\x60\xb8\xa7\xfb\x99\xeb\x66\ \xd9\x95\x18\xb3\x56\x85\xa5\x5a\xa6\x8a\xc9\x55\xd6\x87\x3a\x08\ \xa6\x17\xdf\x78\x03\x2f\xa8\x40\x71\xae\x54\x72\x66\x6e\x49\xc5\ \xdd\x4c\x35\x43\x43\xe1\xb4\xe6\x7d\x3b\x53\xcd\x50\xbd\x6e\x29\ \x29\x62\x6e\xac\x14\xf5\x0e\x1a\x20\x74\x40\x86\x28\x87\x9e\x30\ \xe6\xe8\x11\x1b\xe9\x95\x09\xed\x70\x9a\x11\x96\xc8\x19\x09\x3a\ \xe7\xd0\x33\x9d\x47\x9c\xfd\x4c\x0d\x11\x66\x1f\x09\x08\x61\x8c\ \x9e\x15\x81\xce\x30\xcf\x3a\x0b\xa2\x42\x08\x05\x0b\xb8\xe5\x9c\ \x53\x17\xc2\x79\xa6\x25\x2a\x99\x60\x8c\x2d\x47\x42\x16\xc1\x62\ \xb6\x43\x02\x22\x33\x32\x8a\xed\x95\xb1\x21\xe3\x45\x48\xf4\x0f\ \xa9\x80\xf5\x49\xe2\x25\xca\x94\x72\x58\xec\x71\x6b\x93\x01\x5f\ \x62\xed\xdd\xd3\x49\xa3\x41\xa1\xd9\x3f\xd8\xec\xd8\x99\x23\x76\ \xa8\xd4\x5c\x18\x46\xd9\xd4\xe6\x1d\x53\xcf\x0e\x91\xbb\xb8\x66\ \x5f\x22\xb2\x68\x4e\xfb\xaf\x9a\x63\xb7\x1d\x4d\x0b\x77\xba\xff\ \xff\x08\x52\x9c\x59\x28\xdc\x03\x05\xb8\xcf\x14\x6e\xd1\xdb\x33\ \x8a\x1c\x09\x64\x31\x83\x12\x00\xc3\x30\x5c\xad\x57\x0e\xf1\x3a\ \x4c\x99\xa6\x30\x96\x47\xf0\xa6\xba\xe2\xae\xd9\xc1\x54\xa0\x48\ \x96\x61\xcd\xe6\x8f\x72\x32\x83\x3b\x6e\x18\x4e\x52\x62\x3a\x2d\ \x67\x3c\x03\x59\x35\x95\x95\x12\x43\x15\xaa\x36\x5f\xa5\x1b\xab\ \xb4\xfe\xf5\xdc\x63\xda\x73\x96\xf5\x9c\x54\xbe\xfa\x6d\x5f\xc6\ \xed\x04\x93\x48\x92\xe9\x3b\xe5\x00\x36\xd5\x65\xda\x47\x24\xcc\ \xdb\x52\x9d\xd3\x2b\x38\x3f\x6d\xd7\xb4\xa4\xcd\x16\xc8\xa6\xca\ \xd5\x40\x4f\x91\x99\x64\x7a\x54\xb5\x53\x41\x58\x55\x2f\x4d\xf4\ \x4c\x69\xe7\xa9\x1b\x8c\xc2\x34\xe3\x50\x32\x27\x8e\xc6\x08\x6b\ \xfb\x14\x53\x99\x62\xca\xb6\x52\xc0\x02\x19\xde\x66\x23\x8a\x36\ \x8d\x9a\xe5\xfc\xa8\x83\x76\xf6\xd1\xb5\xf7\xb8\xa9\x49\x4c\x66\ \x95\x34\x00\xc1\xb4\x31\x0d\xd9\x92\x82\xd2\x4c\x2c\x38\x68\x42\ \x72\x65\xed\xb2\xf2\xf6\xa4\x4f\x74\xb2\x4c\xc2\x3a\x52\x1b\x6d\ \xb8\xd4\xb2\x5e\x69\x15\x90\x07\x19\x3d\x11\x11\xb5\x73\xe5\xfe\ \x18\x70\x7f\x7c\x03\x81\xfd\xd6\x9a\x2a\x68\xec\x52\x98\x69\x60\ \xd9\x59\x4b\xb3\xb9\x9f\x37\x30\x11\x7b\xdf\xcc\x20\xb3\x40\x6a\ \x73\xcc\x5e\x77\x18\xf7\xcc\xe1\x72\x67\xde\xa2\x44\x6f\x36\x13\ \x36\x02\x6e\x56\x07\xa1\x13\x4e\xba\x83\xfe\x12\x8b\xc9\x72\x59\ \xec\x26\x6e\x2b\xac\xc0\x9e\xb0\xa8\x99\x2d\x6f\xc8\x84\xc9\x78\ \xcb\x73\xbb\xcd\x13\x4c\xf3\xaa\xd9\x35\x9c\x3b\x1e\xd1\x10\x96\ \x09\x44\x92\xcc\x70\x25\xe5\xa3\x59\x6a\xcc\x6f\x92\x7b\x19\xdb\ \x26\x01\x57\xb6\x67\x2a\x4d\x06\xfa\x1e\x87\x06\x7a\x79\x50\xf7\ \x99\xf4\x1c\xd6\x85\xdf\x22\x5f\x65\x40\x9b\xc5\x3a\x73\x86\xfd\ \xea\xa5\xf1\x7a\xc9\xc5\x9d\x5e\xb6\x64\xb3\x9b\xdc\x0e\xfb\xaa\ \xb6\x72\xb1\xbf\xf9\x08\x55\xfe\x5c\xe3\x4e\xa3\xe8\xaa\x30\xc8\ \xba\x65\x91\xe6\x7b\x39\x33\x25\x70\xd8\x93\xb6\xe6\x41\xe6\x10\ \x4b\x98\x3c\xef\x04\x57\x51\x76\x25\xcb\x17\x22\xc3\x7e\xf1\xda\ \xae\x37\x16\xa7\x26\x4a\x7b\x4c\xa4\xef\x33\xe9\x29\xa7\x72\x48\ \x60\x80\x44\x6b\xcc\xe2\xb9\xaa\xcd\xf4\xcb\x12\xd4\x10\xba\xa5\ \x2a\xde\x06\xf4\xba\x1d\xfd\x2f\xe2\x8e\x1e\xa5\x37\xae\xc1\x9d\ \xa5\xe4\x80\xc5\xec\xc4\x3c\x6c\x05\x41\x1b\x64\x36\x35\x92\x43\ \x2d\xc8\xb4\x0b\xeb\x93\x66\x65\xd7\x14\x17\x83\x92\x5b\xcd\x2f\ \x27\x6a\x46\xf3\xf2\x16\x35\x2c\x65\xb5\xdc\x47\x3a\x8c\xa8\xd4\ \xe5\xea\xb4\x67\x20\xc6\xf4\x9d\x68\xf2\x38\xb1\x2f\xed\x63\x86\ \xf2\x48\xb7\xd1\x69\x05\x06\xa8\x9e\x02\x8b\x5b\xed\x33\x85\xa2\ \x46\x3a\xc4\x0c\x65\xa4\xb4\x73\xa6\xf7\x19\xf2\x3c\x97\xca\x07\ \x2e\x40\x68\x37\x31\xca\xcc\xaf\xcf\x19\xe8\x6c\xf3\xfe\x98\x69\ \x54\x63\x8c\xcc\xa8\xf5\x77\xcc\x03\xae\xc4\x39\x3b\xfb\xa6\x42\ \x51\xf8\x0f\xd6\x9d\xdb\xe3\xb5\xab\x03\xed\xc5\x80\x23\x10\x6e\ \xb4\x34\x5b\x09\x52\x45\x5f\x5c\x9b\x64\x68\x19\xc5\x87\x6b\x33\ \x1c\xa0\x26\xce\xc5\x4b\x31\x1a\x1d\x04\x4d\x5e\xce\x83\x8a\xdb\ \xb4\xb0\x9a\xf9\xee\xc2\xb3\x19\x52\x6a\x2f\x67\xce\x7e\xec\x9a\ \xcd\x30\xda\x3d\x04\x77\xca\xc8\x8b\x15\xef\x5e\x74\xc2\x02\x1e\ \x95\x6d\xb1\xd4\x3d\x39\x03\xa6\x35\xf3\x76\xeb\x22\xa9\xe1\x42\ \x38\x09\xf4\x44\x0b\x78\xa6\xa8\xa0\x8a\x84\xa8\xfd\xa4\xb2\x17\ \x38\xab\x08\x0d\x2f\x53\x61\x15\x80\x10\xac\x04\x33\x93\xb9\x64\ \x10\x53\x4c\xab\x74\x33\x27\x1b\xd1\x01\x87\xbb\x8a\x15\x0a\xa3\ \x90\xa5\x44\xf0\x04\x47\xad\xda\x5e\x52\x2c\xea\xa7\x5f\x61\x0a\ \xd9\xe5\x5b\x5a\x6e\x02\x98\x15\x77\xaa\x01\x8e\x12\x83\x02\xa8\ \x68\xa7\xa9\xf9\xd4\x37\x45\x91\xaa\x90\xae\x12\x31\x07\x07\x30\ \x1a\x29\x1c\x07\x4d\x19\xb4\xad\x59\x86\x59\xa2\x91\xc9\x4e\xa4\ \x30\xae\x65\xba\xb2\x28\xcf\x72\x4d\x79\x54\x4c\x2a\x93\x59\x32\ \xea\xed\x27\x88\x1a\x10\x66\x8e\x54\xa4\x51\x93\xe0\x3c\x6b\x77\ \xec\x83\xc3\xfa\xae\x2a\x69\x7d\x92\xee\x30\xa7\x60\x85\x7d\xdf\ \x93\x99\x69\x56\x8d\x99\xcd\xa7\x02\xb4\x59\xbc\xb5\xd4\x36\x77\ \x2a\x45\x30\x77\x33\x56\x74\x1c\xcd\xdc\x9b\xcf\x32\xb5\xc8\x1a\ \x48\xab\x68\x4d\x9b\xf1\x19\xed\xe6\x59\x03\xe9\xac\x88\x66\x41\ \x72\x6f\xb5\x5a\x94\xd1\x76\xe5\xc0\xcb\xf9\xaf\x7d\x38\x51\x54\ \xd1\x7a\x23\x75\xeb\x9a\xa6\x3e\x69\x66\x72\xec\xd3\xf3\x79\x62\ \x57\x81\x60\x0e\xbd\x6c\x50\xe7\x2c\x0c\x38\x0a\xc8\x34\x28\x19\ \x6d\x47\x46\x83\xc8\x4c\xd6\x94\xbb\x19\x7c\xda\x21\xd3\x95\x07\ \x99\x83\x89\x61\x5a\x1b\x29\xb5\xbd\xec\x76\x55\x3f\x34\x55\x05\ \x85\xff\x10\x33\x9b\x82\x14\xad\x28\x93\xa5\x0e\x76\x82\xc6\x74\ \xa9\x43\x8b\xd8\x93\x1d\x3b\xde\x1d\x35\xa1\xb3\x92\x45\x47\x32\ \x0d\x69\x1e\xc6\x4d\xc6\x0a\x50\x03\x09\x36\x84\x82\x4d\xa1\x8c\ \x96\x59\xd9\x26\xfb\xfa\x78\x1e\x1f\xf3\x6f\x98\xd4\x6a\x81\xd4\ \x61\xb0\x0d\x21\xa0\x19\x03\xe6\xbc\x55\x6e\x95\x0a\x86\x34\x47\ \x76\xc6\xd1\xf2\x9e\xd9\x21\x27\x1c\x69\x0a\x00\x6e\x4c\xb2\x36\ \x26\x51\xcc\x34\x2a\xa5\x04\x62\x9f\x32\x36\xc4\x41\x91\x82\xc9\ \xd6\x91\x2b\x6c\xe5\xe1\x9a\x54\x9b\x31\xd0\x40\xce\xa7\x2b\x6f\ \x29\xd9\x56\x6c\x7f\x8a\xce\x88\x91\x07\xc0\x19\x00\x57\x62\xb3\ \x04\x19\xa0\x47\xd8\x58\x0f\x4a\xb8\xae\x3a\x6c\x46\x71\xa5\x84\ \xc8\x8e\xd1\xe5\x90\x9b\xe6\xaa\x89\x98\x01\x6d\x4a\x65\x8e\x94\ \x52\x2b\x4d\x41\x1b\xd9\x56\xd9\x96\x36\x12\x81\x48\xad\xce\x36\ \x4b\xc1\x6f\x8d\xc9\x33\x5f\x7b\x2e\x1b\xe6\x32\xa6\x4c\x34\x37\ \xbd\x25\x4d\x5e\xb3\x9c\x52\xc7\xd4\x1b\x32\x3f\x00\xd5\xc7\xdd\ \x42\x1b\x65\xa2\x11\x56\xc9\x99\x55\xac\xd4\x2f\x96\x58\x81\xbb\ \x39\x7d\xcb\x73\x79\x32\x27\x69\x9c\x3c\x48\xee\x2a\x53\xbe\x68\ \x6b\xf6\x40\xc3\x8c\xe9\x0e\xad\x74\x00\x9b\xf9\xb5\x9c\x0d\xb0\ \x6e\xfe\x15\xd9\x5e\x03\x92\xe6\x95\xdd\x59\x6c\x96\x7d\xfc\x87\ \x3d\x03\xb1\xe2\xc0\x6b\x2d\x68\x64\x73\xb3\x6e\x70\x6f\x83\x3d\ \xb4\xfa\x94\x48\x4b\x2f\x33\xc6\xdb\x02\x87\xb4\xf0\x8c\x57\x1c\ \xef\xfa\x78\xf0\x96\x58\x2e\xc2\xa8\x41\xf2\x7e\x06\xdc\xe4\x48\ \x84\x5c\x6c\x54\x53\x2c\x89\x23\xa3\x4b\xa4\xd6\xb4\x2b\x51\x51\ \x5c\x2d\xa3\x51\xcd\x70\x02\x4e\xc4\xbd\xc7\xc9\x75\x80\xda\x04\ \x99\x0a\x60\xa0\x0d\xd8\x2a\xac\x99\x17\xf1\x9c\xfd\xa2\xc5\x88\ \x8d\xe5\xd1\x2f\x5f\xca\xda\x73\x3d\xd1\x1e\x9a\xee\x34\xba\xa6\ \x26\x76\x52\x4e\xaa\x37\xda\xd5\xe1\x86\xa0\x73\xc8\x36\xe0\x2a\ \x5d\x32\x9e\xa5\xb3\xfc\x1c\x6d\x63\xf9\xf3\x1c\x20\x11\x9e\xdb\ \x81\x7a\xcd\xf1\x1d\xae\xf7\xd8\xfa\x1e\xbd\x51\xf5\x8d\x03\x81\ \xf2\x5e\x72\x98\x6d\x58\x2e\xe0\xca\x1c\xe2\x26\x17\xd1\x91\xa9\ \x3c\x2a\x17\xc7\x87\xa6\x03\x63\x95\x7e\x1c\xfc\x39\x96\xd5\x86\ \x4f\x8c\x26\x73\x6a\xd6\xb0\x37\x4b\x42\x0d\x0d\x94\x2e\x1d\x91\ \xbf\xa7\xbd\x73\x90\xf9\xf3\xd0\xdf\xae\x5c\x1b\x4d\x71\x8a\xf1\ \x7b\xbf\xfc\x60\x21\xf2\xa7\xc4\x5f\x57\xbf\x22\x91\x79\xc8\xf6\ \xcf\x47\xfc\xe0\xeb\x74\xca\xa4\xcd\xc2\x4f\xc3\x66\xe6\x52\x19\ \x56\x93\xcc\xc4\x76\x8d\xeb\xd7\xa1\xdf\x36\x7e\xde\xec\xcb\xe0\ \x2a\x6e\xce\x2d\x6f\x58\xf7\xea\x0c\x69\x65\xf0\x4d\x06\xe7\x52\ \x65\x9f\x70\xd4\x13\x6a\x9a\xcd\x59\x79\xe6\x2a\x02\xc5\x60\x15\ \xeb\x9e\x89\x82\x4c\xcc\xef\x91\x7b\xe0\x73\x25\xb0\x67\x6a\xf7\ \x91\x96\x2d\x26\x33\xc6\x36\x8a\x26\x65\x66\xb7\x77\xa3\xed\xfc\ \x60\x72\xe2\x7f\x6f\xaa\x85\x04\x60\x56\xf5\x4a\xe6\x0d\x91\x03\ \x03\xfc\x45\x26\x83\x9a\x0e\xed\x6e\xcd\xe2\x0a\xd8\x4e\xb8\xbe\ \xcd\xbd\x6f\x76\x04\xed\xa3\xbc\x62\xb6\x60\xba\x05\xec\xed\x61\ \xf9\x4f\x6f\xaf\xaf\xba\x56\x3d\xff\xcf\xdf\xec\x53\xf6\x9a\x77\ \xc7\x1c\x5e\xef\x05\x16\x97\x90\x39\xaf\x0f\xce\x3f\x1f\xe3\x4f\ \xcb\xf5\x8e\x11\xd2\x47\xf4\x1f\x73\x79\x52\x51\xd9\x6e\xf8\xf6\ \x4a\xff\x40\x83\x7a\x8e\x3b\x8c\xdf\xd1\xdf\x1b\x9a\x71\x45\xfe\ \x14\xfe\xab\x0e\x32\x20\x63\xc9\xf5\xce\xc6\x2b\xd8\x6b\xf2\x9e\ \xdb\x1d\xb6\x03\xc6\x82\xa8\x2d\x48\x95\x7a\xc2\x32\xd0\x82\xb6\ \x39\x57\xd9\x93\xf4\x05\x78\xcc\x7c\x56\xdf\xe8\x62\x93\x46\xd3\ \x7a\x67\xeb\x7b\xda\xef\x2d\x1e\xb0\x36\xa4\xdf\x9c\xa3\x90\xd0\ \xfc\x1f\xa0\x2a\x1e\x49\x8d\x5e\xd9\x00\x00\x20\x00\x49\x44\x41\ \x54\xf4\xe0\xb9\x66\x1a\x9b\xf3\xac\xf6\x49\xed\xef\x79\xfc\x35\ \x96\x4b\x7a\x9a\x53\xd9\x22\x4f\x88\x37\xb6\x7d\x6f\x97\xf7\x78\ \x3a\x6a\xf5\x17\xc2\x76\x96\x16\xa1\x9e\x0e\x01\x41\x1f\xe0\x01\ \xbe\x42\x57\xe2\x79\x66\xb3\x03\x8c\x05\xd1\x88\xef\xda\xfa\x1e\ \xd8\x80\x03\x78\xdd\xec\x4b\xcd\x3e\xa7\x7c\xbb\xf6\x61\xb7\x9a\ \x60\x6f\xad\x13\x04\xde\x30\xff\x4b\xbb\xfc\x1e\x49\xd8\xbf\xc1\ \xcf\x6b\xfb\x3c\x28\x6c\x6f\xf1\xf4\x2f\xed\xcb\x7f\x72\x05\x0e\ \xff\x43\xfe\x3c\xda\xaf\x22\x93\x6f\x68\x7f\xb6\xe7\x3f\xf3\x37\ \x53\x98\x19\xad\x25\x18\xf3\x19\x89\x39\xe5\x86\xd7\xec\x27\xb1\ \x25\x62\x85\x3d\x27\x7f\xbe\xe0\xff\x7d\x5a\xfe\xe3\x7c\xf7\x39\ \x7d\xa8\x82\x39\xa8\x17\xde\x50\xd1\xd2\x50\x3e\x2e\xf0\x36\xca\ \x85\x4d\xd0\xed\x9c\x68\x82\xcc\xdc\x1d\x46\xc4\x6d\xdd\x33\x4d\ \x7d\xbb\x70\x00\x93\x3c\xc3\x52\x45\x4a\x79\x4b\x17\x80\x22\x33\ \xe7\x69\xb2\x2f\x59\xe7\xe4\x8c\x4c\xed\xe1\x05\xb3\x09\x4a\xbc\ \x6c\x8f\xaa\x8f\x57\xc6\xcc\x00\x9e\x2e\x64\x89\x09\x77\xab\x9a\ \x0f\x29\xa5\x58\xbe\x8d\xdb\xb6\x6c\xbe\x56\x9a\xdb\x00\xe1\x96\ \x54\x30\x65\x1c\x29\x73\x35\x2a\x9b\xf4\x5d\xdb\xfe\xb7\x37\x5f\ \x7e\x7f\x70\xc3\xfa\x7f\x8c\xf7\xff\xe7\x73\xbb\xda\xa6\xb9\xd5\ \x9a\xaf\xac\xc1\xcc\x16\x58\x2c\x5a\x3f\x2c\xf6\xe7\xc3\xf5\x9f\ \xf0\xd4\xd2\xc4\xc3\x03\xef\x52\x4b\xa4\x5d\x3d\x52\x50\x52\x3e\ \xe9\x54\x0e\xb4\x64\x07\x1e\x78\xfe\x81\xf1\x1e\x70\x2d\xcf\x68\ \x8f\x71\xfa\xa2\x96\x6d\x6b\x8a\xd7\x8c\xdf\xf9\xf6\xda\xf2\xa4\ \x38\x68\x6d\xd8\x7a\xb1\x1f\xe7\x0f\xbd\x26\x5d\xa3\xaa\xd5\x13\ \x2c\xd8\x1f\x78\xbc\x47\xde\xa9\x7f\x4e\x7d\x8d\x65\x45\x17\xfc\ \x40\xbc\x62\xbc\xb7\xcb\x7b\x9c\x4f\x58\x99\x53\xa1\xbb\xd7\x8d\ \xad\x0c\xa9\xda\xf1\x39\xc9\xc9\xe8\x33\x85\xd0\x83\x0f\x6f\xed\ \xee\x81\x97\xbf\x44\xfc\xb8\xdd\x9d\x6d\x38\xb6\x53\xc4\xdb\x1e\ \x3f\xf4\xcb\x3b\x3c\xde\xe1\xe2\x2a\xe9\x95\xef\xab\xef\x4a\x6d\ \x9e\x53\x63\xc7\x20\x9e\x0c\x6d\x41\xeb\x65\x23\x4f\x09\x70\x25\ \x10\x47\x6c\xaf\xf1\xdb\x1b\x71\xe3\xdd\x2b\xf4\x25\xe1\x73\x73\ \x65\xb5\x49\xd3\x6d\x14\xba\xc3\x57\x4c\xb2\x34\x03\x4f\xfd\xf9\ \x35\xbe\xdc\x65\xd2\x1e\x1e\xf0\xea\xc8\xa5\x03\x42\x9e\x6c\x7d\ \xc5\xc7\xa3\xfa\xa6\xc3\x11\xbe\x90\x0d\xa4\xf9\xc9\xe3\xc8\xa7\ \x25\x9f\x2c\x21\xf7\x64\x84\xda\x56\xc6\xd1\x7d\x1d\x22\x0d\x62\ \x8e\xe9\x0c\xdb\x09\xe3\x8d\xf1\xfd\xdd\xdd\x77\x07\xdc\x7f\xdd\ \xfe\xdb\x17\xcb\xe4\xd5\x54\x01\xbd\x9c\xf4\x4b\x24\x4c\x05\x9c\ \xe4\xb7\x19\x1a\x14\x63\xef\xa4\xf7\xbf\xa6\xde\xd0\x66\x05\xf7\ \x22\xff\xaa\x57\xcd\x76\x54\x9e\xd7\x94\x32\xc5\x5b\x5b\xbe\x6b\ \x00\x5e\x2a\x9d\x1a\xce\xd9\x3e\xa2\x32\x52\x48\xb6\x4a\x2c\x80\ \x19\x5b\x69\xa2\x73\x08\x91\x30\x65\x29\xf7\xe6\xb2\xbe\x3c\xc9\ \x80\x60\x13\xaa\x61\x6e\xa4\xcf\xb6\x65\xaa\x2c\x77\x3a\x02\x76\ \xc1\x0f\x5e\x46\x0f\x35\x49\x0b\xcf\x45\xea\x0a\x40\xd7\xed\xf2\ \x84\xed\xcb\xeb\x03\x1b\x1e\xfe\xf9\xde\xfe\x9f\x8d\x09\x8e\xa8\ \x60\x5f\x4c\x0f\xb3\x4a\x77\xb8\xde\x63\xfd\x43\xcf\x1f\x70\x39\ \xe4\xe6\x11\xc6\xd5\x9a\x9e\x6c\x79\xce\xe3\x17\xf0\xba\x9f\x2b\ \xf3\x6a\x14\x9a\xfc\x68\x79\x6f\x71\x8f\x73\xb9\x28\x2f\xe9\x3d\ \x78\xb0\x68\xb9\xbd\xf6\xcb\xef\xec\xfc\x81\x97\x93\xd2\x19\xa6\ \x34\x25\xd3\x84\x26\xeb\x61\x15\x86\x52\xf9\xea\xe1\x18\x96\xb9\ \xa0\x1d\x99\x07\xe0\xe8\xe8\x46\x0e\x7b\x1c\x5d\xf4\x83\x73\x31\ \x1d\xb0\x35\xac\xa6\xa8\x69\xbb\x6a\x65\x34\xd7\x43\x37\xd9\xc4\ \xee\x24\x84\x57\x34\x0a\xa0\x86\x2b\xe0\x3f\x30\x5b\x4b\x0b\xff\ \x71\x80\x1a\x6f\x5c\xdf\xb7\xf5\x3b\x9e\xef\x71\x6e\x42\x71\x9c\ \x35\x93\x8a\x4b\xbe\x3d\x39\xc5\x92\xc0\x30\x5c\x0f\xf0\x8e\xa3\ \x81\x81\x65\x10\x9a\xa1\x4d\x3a\x70\xf4\xdc\x5a\xba\xcc\x1a\x0e\ \xe6\x07\x30\x6e\x83\xda\x99\xa7\x57\x63\xc3\xb2\x38\x65\x6d\x39\ \xd8\x80\x05\x5b\xd7\xb9\x51\xc4\xa9\xbb\x96\x25\x3b\x3c\xad\x75\ \xca\x6c\x40\x74\xaa\x13\xcb\x12\x1d\xc3\x60\x07\x5e\x8d\x67\x42\ \xa6\x87\x67\x2d\xbf\x91\x5f\x47\xbb\xa4\x0f\x60\x40\xa0\x92\x99\ \xda\xc0\x30\x5f\x72\xf3\x16\xd7\x07\x3e\x7e\xd7\xcf\x0f\x8e\xef\ \xfd\xe4\xaf\xaf\x63\xe8\xfa\xf8\x20\xe6\x75\xc4\x2d\x9f\xa6\x8a\ \x23\xc2\x0d\x51\x9b\xa1\xb9\x89\x9f\x81\x9e\x73\x0b\x26\xee\x4b\ \xd2\x3d\x38\x64\xdf\x06\x58\x65\xf4\xe6\x6d\x50\x6c\x33\x96\x86\ \x50\xfd\xd6\x79\xbb\x95\x30\x89\x4a\x7b\x75\x60\xb4\xc1\x12\xd7\ \x98\xba\x59\xa0\x45\xca\xdd\x6b\x3d\xb9\xbb\xb8\x9c\x9c\x89\xa1\ \x35\x63\x70\x82\x39\xc0\x41\xef\x4c\x96\xb3\xa1\x92\xa9\xac\x34\ \x01\x73\xce\x0c\xab\xfb\xc8\x9c\x34\x69\x5a\xfa\x15\xf3\xcc\x90\ \x4a\xe9\x62\xe9\x36\xdc\xbb\x35\x7b\x66\xfb\xb8\x1e\xce\x7a\x7c\ \xe0\xf1\x87\xe3\xf3\x7b\x1d\x1e\xb3\x67\x8f\x2a\xd4\x6c\x40\x36\ \xcd\xa0\x6e\x71\x74\xfb\x5d\xff\xfa\x0a\xe7\x66\x06\x86\xa5\x7a\ \x6e\x0f\x5c\xef\x5b\x7f\x02\xbd\x0a\xdf\x28\x8d\x65\x13\x93\xd8\ \x96\xbc\xbe\xb5\xf5\x1e\x61\xa0\x68\x5b\xf6\xcc\x3c\xe1\xe9\xe8\ \xcf\xdf\xfb\xf6\x16\xd7\x3b\x8c\x0e\x07\x3c\xd9\xb7\x39\xd5\x32\ \xd1\x72\xd2\xb6\x55\xa4\xc4\x44\x76\xa6\x71\x18\xce\x07\xc8\x91\ \x5e\xac\xd2\xb4\xab\x0e\xee\xad\x49\x0d\xab\x41\x56\x64\x64\x70\ \x63\x5b\xe7\xd8\xd9\x70\x73\xe4\x83\xc0\x30\x64\x4d\x0a\x9b\xfb\ \x64\xc5\xe1\x7a\xd2\xf8\xc1\x97\x5c\x7c\xbb\xf4\x4b\xf0\xcd\xe1\ \xfa\x83\x7d\x7d\x85\xcd\xd2\xa8\x74\x53\xd0\xa2\x62\x2a\xc8\x84\ \x25\xcc\x54\x15\xf9\x30\x91\x73\xac\xbc\x2d\xb0\x7b\x38\x98\x48\ \x5e\xa4\xdd\x97\xb2\x84\x09\x44\xb7\x36\xcf\xd8\x12\x50\x4f\xa7\ \xae\x8a\xcf\x77\x6b\x6d\x21\x32\x6d\xc2\x07\xe6\x94\x2f\x1c\xb1\ \x68\x74\xcb\x44\xaf\x78\x6d\x5a\x98\xb2\xc1\xba\xb1\xa5\x3c\x45\ \x2f\x7b\x9b\xa5\x2f\x1b\x4f\x1f\x87\xff\x12\x7e\x49\x5b\xc3\x02\ \x11\x9e\xe9\x4c\x0d\x70\x23\x4d\x68\x86\xb6\x8c\xfe\x3e\x2f\xff\ \x7c\x78\x7e\xe7\x5f\xde\x71\xf9\xdf\x5f\xe3\xf3\x75\xfd\xd7\xf3\ \xd1\xcc\x64\x1b\x2a\x70\x2e\x93\x21\x15\x93\xc5\xc0\xcc\x59\xd3\ \x54\xd7\xbf\xef\x9b\xeb\x32\x28\x99\x89\x76\x9d\x17\x6f\xb1\xcd\ \x34\xd6\xba\xb3\xc4\x6e\xec\x30\x80\x43\xa9\x90\x9b\x8f\x31\xc3\ \xd5\x58\x90\xc5\xb2\x72\xfb\xec\x2a\x00\xb5\x42\x3a\xa5\x2c\xa5\ \x9c\xb0\x50\xde\x6e\xab\x0c\x13\x91\x59\x81\xd6\x74\x98\xe5\x9c\ \x8a\x36\x76\x66\x2a\x21\xb7\xb9\x1d\x2b\x67\x32\x64\x09\xba\x49\ \x88\xc8\xde\x76\x2d\x5c\xee\x23\x90\x9a\xfd\x07\x48\x4b\x47\x85\ \xbf\xda\x6a\xc7\x4f\x19\x8f\xfa\x72\xc7\xcb\x03\x97\x1f\x7c\xfc\ \xc7\xf6\xc0\xd3\x55\x32\x0b\x51\x26\x89\x06\xb3\x6c\x66\x0f\x5d\ \xaf\x78\xed\x58\x29\x1b\xec\x34\xf7\xc4\x91\x71\x30\x75\xd9\x86\ \xd4\xb6\x87\x47\x96\xed\xd8\xd6\x93\xae\x77\xb8\x1a\x82\x58\x02\ \xd5\x8d\xc4\x91\xe7\x77\xf6\xf8\x0e\x79\x10\xa9\x16\xd6\x02\xb6\ \xa6\x0f\xec\xf7\xc3\xde\xa4\x19\x64\x26\x83\x3b\xec\xc0\xd1\x94\ \x0e\x39\xaf\x0d\x79\x07\x0c\xda\xf0\xfc\x1a\xcc\xb0\xe2\x59\x4e\ \x97\x11\x2d\x74\x7a\xd6\xc3\x57\xb4\xe0\x26\x70\x1d\x56\x11\x46\ \x34\x07\xd5\x10\x1d\xd9\xb1\x2e\x88\x85\xb6\x00\xa6\xd1\xb0\x39\ \xf1\xd6\x8f\xaf\xdd\x18\xe3\x9e\x4f\x77\x7c\x6a\x6a\x86\x56\xca\ \x9d\xc1\x56\x80\xd9\x80\x0f\x58\x82\x06\x15\xa6\xd4\x98\x89\xec\ \x50\x47\x3a\xb6\x05\x36\x80\x2b\x6d\x4c\x0f\x80\xc8\x14\xc2\xb9\ \x76\x8d\x05\x6a\x4a\x44\xa4\xc1\xe5\x39\x57\x21\x2f\xeb\x32\xce\ \xae\xa7\x74\x29\xdc\xd5\xc5\x72\xa5\x4b\x1e\x20\xa3\x54\xac\xc9\ \x48\x45\x9a\x32\x95\x1b\x3c\x98\x8b\xa9\x79\x9a\x4c\xd8\x52\x8f\ \xab\x7f\x02\xcf\xe2\x96\x18\x99\x41\xca\x2c\x60\x16\x60\x56\xb4\ \x78\x37\xf7\x2f\x1b\x02\xd9\x8f\x5f\xdf\x5a\x7e\xdf\xf1\xfd\x71\ \xfc\xfb\xb3\x5d\xd1\xc0\xa8\x20\xe8\x49\x18\xd4\xde\xd9\x97\x7b\ \x6a\x6a\x58\xf6\x50\x27\xd6\xb3\xec\x2a\xad\x46\x49\x32\x73\x5f\ \xca\xc9\xa1\x41\x13\x42\x40\x50\x88\x74\xa1\x50\xfa\x52\xd8\x4c\ \x43\xd6\x6c\x24\x52\xfb\xc8\x8e\xe5\x7e\xdd\xa5\x9c\x9c\x5f\xc0\ \xce\x41\xaa\x69\xf8\xa4\x2d\x0c\xa4\x32\x67\x30\xe2\x0d\x9a\x3b\ \x51\x06\x15\xae\xbd\x4b\x96\x54\x02\x4f\xfb\x06\x40\x56\xf4\xd0\ \x7d\x67\x73\x2b\x36\x41\x83\xac\x00\x7d\x72\xc1\x91\x86\xcf\x5b\ \x7f\x8a\x45\xb0\x6e\xcb\x77\xaf\xb7\xe3\xa6\x8d\x3b\x17\x8c\x35\ \x4f\x37\x9a\x1c\x78\xb7\x8c\x57\xec\x29\x0c\x22\x71\x48\x68\x41\ \x1e\xa1\x23\x66\xde\x94\xe6\x4a\x9e\x0e\x3a\xd4\x95\x47\xa8\xcd\ \x1f\x6b\xdb\x64\x6b\x82\x88\xbb\x36\xde\x98\x3a\xd2\x78\x4c\x2e\ \x1b\xfc\x1c\xbc\x86\x5d\x69\xa9\x5a\x78\xd9\x0c\x6f\x24\xdc\xd4\ \xa8\x93\xe5\x8a\x6c\x8c\x23\xf3\x88\xcd\x90\x1d\xf1\xc0\xb1\x39\ \x95\xe3\x5a\xe2\xc0\xb9\x95\xeb\xc2\xc3\x95\xaf\x3f\x8e\xd3\xaf\ \xc9\x73\x6e\x5b\x72\x8c\x12\x2e\x81\xdd\xe1\xc6\xd4\x91\x3a\xb4\ \xbc\xc3\x7a\xa7\xe7\xd7\xb8\x3c\xd8\xda\x69\x04\x0e\xe4\x9d\x29\ \x5c\x27\x1b\x1d\x61\xe8\xb0\x26\xd8\x05\x7d\x43\x4b\x60\x00\x43\ \x16\x69\x99\x53\x09\xbf\x30\x0c\x66\xb5\x6b\xaf\xaa\x19\xe6\x60\ \xa3\x75\x62\x04\xd8\xa2\xe9\xd2\x73\x90\xbd\x23\x5a\x8c\x86\xcc\ \x46\x22\xe6\xa6\xb8\x25\xf6\xe2\xb6\x5c\xe2\xb4\x2c\x33\x65\xd2\ \x80\x66\xbb\x7b\x11\x08\x81\x99\xa5\x27\x9d\x24\x26\xaf\xe7\x22\ \x11\xa9\x2d\x35\xea\xa3\x46\x06\xf2\x9c\xf8\x55\xbc\x5a\x26\x23\ \x99\x92\x07\x52\x39\x18\xc3\xa3\x07\x4d\x9e\xa6\x71\x5d\xd7\x9f\ \x56\xfb\x5d\x6b\x0f\x8b\x9d\xb0\xbc\x39\xe4\xd1\xc7\x65\x20\x1c\ \x91\x0c\x39\x3c\x11\x65\x53\x9b\x2b\xfc\xe9\xf1\xe7\x5e\x01\xd7\ \x85\x33\x8f\x71\x2b\xff\x1a\x77\x2b\xd9\x04\x3c\xed\x3a\x96\xd9\ \xcb\x15\xb3\xc9\x8a\x7c\xbe\x2b\x04\x12\xa5\x62\x9e\x0a\x6a\xd3\ \x37\xf4\xf4\x26\xa9\x5a\x93\xa8\x29\x1b\x67\x74\x45\x2a\x53\x33\ \x8e\xbd\xf8\x31\x2f\xe9\x6c\xdc\x15\xd8\xbb\xe6\x39\x27\xba\x03\ \xa0\xf6\xac\x6a\xf9\x74\xc3\xec\x81\xba\x4a\x16\xbb\x9a\x66\x66\ \xae\x69\x69\x68\xf2\x44\xa3\xdc\x1f\x47\x7c\x5e\x0f\xeb\xdd\x38\ \x41\xdf\xf5\xf1\xaa\x6f\x4f\x49\x38\x2a\xce\xd3\x5a\x21\xed\xb7\ \x45\xe3\x9d\xc5\x11\x4c\x1c\x07\xec\x2a\x5f\x74\xb5\xbc\x1a\xd7\ \x23\x47\xcf\x0a\xd3\xa9\xb3\xa2\x62\xd7\x86\x2b\x8e\xa6\x23\x9a\ \x61\x00\xcb\x25\xfd\xba\xa9\xd9\x78\x65\xd7\x57\x88\x06\x02\xed\ \x39\x8f\x5f\xd2\x2e\xc3\x9e\xd5\x07\x34\xa4\x90\x85\x5c\xa0\x98\ \x4c\x75\x6c\x4b\xb3\x67\xc3\x81\xe8\xd0\xc9\xb7\xf4\xa7\x7b\x5c\ \x17\x5c\x8f\xf0\x57\x8c\x8d\x6d\xc0\x38\xa8\x86\x1b\x33\x71\x13\ \x1e\xb7\xf8\x65\xb3\x27\x60\x2b\xb8\x4b\x89\x40\x47\x6a\xc8\x12\ \x0d\xb6\xf8\xe1\xd8\xdb\x6b\x21\x6d\x3d\x5a\xcd\xc7\x49\xa9\xc5\ \x58\x14\x0b\xeb\xc5\xce\xc2\xfa\x5c\xd1\x37\x1c\x06\x10\xca\x2d\ \x2c\xc5\x14\x19\x32\xb4\xcd\xe4\x18\x0d\x0c\x85\x68\x07\x33\xc1\ \x72\x9f\x67\x1a\x68\x61\xa2\x8b\x14\x5b\x99\xed\x4b\x7f\x58\x41\ \x7d\x25\xeb\x9c\x63\xd6\x1a\xa8\xa9\xb2\x44\x11\xc8\x18\x0c\xf7\ \xc2\x71\x27\x91\x62\xa4\x82\x19\xb7\x66\x63\x0a\x1f\xe6\x36\x37\ \x02\xbb\x0a\x5b\x82\x5f\x74\x3c\xc3\x57\xdf\xca\xfd\x16\xe6\x29\ \x29\x68\xeb\xc9\xd1\x47\x33\x63\x38\x61\xde\x2e\x89\xdf\xa4\x0f\ \xc8\x13\xfc\x74\xc8\xc3\xb2\x7a\x7a\x8b\x54\xe9\xa7\xe1\x62\xd6\ \x3a\x6b\xae\x28\x02\x45\x81\x25\x5e\x02\x00\x6e\x2b\x9a\xb9\x09\ \x95\xcd\xde\x4d\x80\x22\x72\xe7\x41\x97\x89\xba\x88\x16\xc4\xcb\ \x6f\x72\xd3\xc8\xec\xca\xeb\x0a\x72\xda\x9b\xf6\xc6\x9b\x2a\xae\ \x6a\xc0\x5d\xfb\xfa\x32\xad\x2b\xb7\x48\x2d\xdd\x38\xc3\xd6\x84\ \xc1\x09\xd4\x54\x54\xcb\x92\xa6\x7d\xab\x5d\x07\x97\xd3\x71\x4b\ \xdd\x9c\xfc\x42\x18\xf6\x9c\xc1\xea\xb1\xb3\xa8\x3a\xe6\x68\x76\ \x0e\xfb\xe9\x7a\xfc\xcf\xa7\xaf\x47\xac\xf7\x4b\xfb\xee\xb8\xfe\ \x7c\x3e\x8c\xfa\x3e\x66\x06\x39\x4d\xe3\x15\xae\xef\xb0\x19\x10\ \x5a\xbe\x6c\xfd\x29\xf0\xca\xb6\x6e\xd1\x30\xee\x31\x7a\x2c\x3e\ \x21\x8a\x35\x89\x16\x46\xb6\x8c\x93\xc5\x02\x12\x6d\x43\x7f\xda\ \x7c\x24\x8f\x7d\xbb\xb3\x73\x87\x80\xc3\x15\xed\x4b\x1c\x3e\x85\ \x5d\xc3\x2f\xf0\x01\x0c\x61\xf6\x0f\x70\x09\x15\xe2\xd9\x86\x16\ \xf6\xee\xad\x23\xee\x75\x06\xae\x6e\xd7\xce\xb5\xc1\x17\x2c\x47\ \x8f\xf3\x40\x44\xa6\xd7\xd9\x23\x10\xab\xf4\x18\xfa\x92\xf6\xdc\ \x3a\x0e\x96\xf4\x8c\xa8\xe8\x43\x20\x2c\xc2\xd2\x9e\xd1\x7b\xf8\ \x9a\xeb\x9d\x5b\xf6\x3a\x34\x2d\x05\x45\x32\x02\x99\xe1\xea\x48\ \x43\x00\x4b\x89\x43\x36\x30\x65\x23\x39\x8a\x8c\x35\xdb\x60\x38\ \xdd\xcd\x16\x45\xaa\x4c\x18\xb6\xc2\x56\x95\x0e\x78\x4a\x55\xd2\ \x8c\x68\xfb\x54\x9c\xc9\x96\x5e\x98\xdc\x40\x64\xc1\x16\xa6\xf6\ \x0a\xdd\x72\x00\x14\x46\x66\x41\x16\x4b\xc8\xc0\x14\x02\x0a\x71\ \x96\xb2\xfb\x35\x13\xc9\x14\x05\x0d\x20\xe6\xf9\x9c\x90\x22\x0e\ \xa3\xd9\xc6\xa0\x0c\x60\x66\xdb\x8a\xf3\x11\x0c\xb3\x09\x90\xb1\ \x36\x82\x17\xe1\x92\x19\x7a\x04\x8f\xcd\xfc\x46\x8d\xa9\x4e\x20\ \xf7\x87\x79\xf7\xe4\x4e\xec\xbe\xcd\x9a\xe4\xb6\x1a\xc1\x0b\xee\ \x05\x55\x6c\x95\x6a\x73\xfa\x88\xe6\x3f\x77\xd8\x6e\x3d\x81\x4b\ \x73\xca\x59\x52\xe2\x7d\xd1\x76\x63\x08\xcc\x72\x2c\xa5\xd6\xdc\ \x77\xa7\xd7\xfc\xe2\xcc\xcc\x66\x62\x4d\x39\x16\x08\x52\xa9\xdc\ \x87\xde\x42\x92\x6d\x2e\x43\xe7\xde\x53\x7b\x5c\x13\x53\xe9\xac\ \x96\x29\xbc\x6a\x63\xd9\x3e\x6f\x2f\x56\x5d\x46\x26\x68\x4d\xc9\ \xd4\x80\x24\xb5\x04\x56\xe1\xe3\xf3\xe9\xf1\xe1\xf9\x5d\xdf\xea\ \xc2\x39\x5c\x0e\x55\x6e\xd0\xa6\xb6\xd3\x94\xaf\xfb\xfa\x8a\x99\ \xb0\xab\x96\xc7\x6d\xf9\xb2\x0a\xcb\xf6\xb0\xc4\x82\x78\x40\xdc\ \x53\x9f\x0b\x42\x60\xac\x8e\xd1\x53\x07\x8c\x03\x57\x07\x12\xc7\ \xb3\xda\x25\x2c\x12\x0b\x63\x81\x0c\x96\xe8\xe7\x3c\xfc\x96\xed\ \x8b\x6c\x95\x6d\xf2\xa0\x06\x05\xc3\x34\x9c\x10\x91\x1c\xc2\x62\ \x1e\xf2\xab\x96\x85\x91\xb9\xf9\xe8\x87\xd6\x4e\x76\x75\x44\x27\ \x4e\xc4\x57\x62\xc8\x95\x46\xaf\xfd\x1a\x12\xb6\x72\x59\x5b\x8f\ \x8e\xb0\x9e\xee\x6a\x61\x59\xf3\x9d\xa1\xee\xa9\x86\x61\x11\xd9\ \xd3\xa2\xd1\x60\x8e\x9e\xe8\x6b\xb4\x73\xe8\x9a\x5c\xd5\x06\x3a\ \x90\x44\xb4\x8c\xb0\xec\x8a\x21\x66\x85\x4f\xa4\x24\xdb\x41\xb5\ \x4a\x5a\xa8\x85\x62\x60\x3b\x47\x05\x34\x70\x13\x06\xc3\x24\xb3\ \x39\x19\x00\x40\x8c\x86\xb5\xa9\x0d\x95\xc5\xb6\x76\x63\xbe\x6f\ \xe2\x6e\x83\x68\x9b\x96\x2b\xb2\x44\x15\x35\x2c\x49\x58\x96\x12\ \x56\x18\xf0\x32\x29\xcc\xea\x68\x86\x5a\x58\x4c\x0d\x62\xa5\x2c\ \x56\x89\x12\x82\x10\x14\x5d\x40\x8e\xb0\xb4\x98\x51\xe2\x5d\xc2\ \xc0\x96\xca\x03\xaf\x0d\x6b\x43\x8e\xb1\xa4\x75\x19\x91\x21\x66\ \xca\xa4\x40\xc6\x8b\x42\x6b\x8e\xff\xf6\xdc\xcb\x97\x4d\xfd\x8e\ \xf0\xaf\x6d\x47\xe6\x2e\x86\xb8\x91\x9d\xf7\x98\x1b\x2a\x61\x70\ \xa3\x47\x96\xa6\xab\x16\xa4\x06\xe6\x24\xc4\xbf\xe4\x30\x99\xb5\ \x86\x88\x86\x5b\x1b\x32\xe7\xc8\xbb\x71\xcb\x0a\xac\xcc\x32\xf4\ \x67\xe6\xae\xeb\xb9\xc5\x5a\x57\x2c\xd9\x04\xd5\xee\xfe\xe2\x9d\ \x54\x3b\xb3\x0a\xf6\xef\xe9\xe6\xf2\xdc\xc7\xe0\xb9\xcf\xc6\x47\ \x35\x22\x55\xd5\x3d\x8e\xc3\xa7\xed\xf0\x87\xbe\x19\xf4\x66\xc9\ \x3b\xd3\x39\xa7\xb7\x9e\x96\xa6\x58\x82\xdf\x1d\xc7\x09\x4c\x1c\ \x9f\x64\x5f\xb6\xf6\x24\xb5\xec\x67\xac\x27\xd3\x82\xbc\x67\x2e\ \xe9\x63\xa7\xb6\x7b\x84\x47\x1e\x5d\x07\x24\xc1\xc0\xf1\x79\xb4\ \x73\x10\x94\x33\x6c\x06\x1c\x2c\x5f\x72\xf9\x12\x7e\x01\xd7\xaa\ \x40\xca\x1b\x32\xc7\xc4\xba\x2d\xff\x92\x90\x8c\x51\xaa\x36\x7f\ \xca\xc3\x9d\xb6\x7b\x44\xe9\x79\x16\xc2\x60\x08\x8b\x56\x62\x6f\ \xe3\xfe\xf4\x48\x0e\xc4\xa4\xc7\xcc\x0a\xc2\xc4\xd3\xe0\x20\x92\ \x58\x0f\x8a\x07\xdf\x5e\xf5\xb1\x80\xc2\x61\x53\x7f\x0c\xff\x82\ \x1c\xe0\x97\x38\xbd\x16\x17\xae\x0d\xe9\x31\x0e\xe9\xc5\x5c\xd9\ \x5c\x5b\xe0\x6a\x0c\x69\x24\x92\x9e\xa0\x62\xc6\xd1\x0c\xd0\x32\ \x61\x0e\x58\x22\xe5\x45\xf0\xb6\x3d\xa6\x2b\x9b\xe2\x3e\xaf\xaf\ \x23\x0f\xab\x0f\x9b\x2e\xe7\x12\x90\xe6\xe4\x49\x4e\x0c\x8a\x83\ \xcd\xe3\xa4\xb4\xfa\x0d\x66\x4e\xf5\x04\x33\x0e\x31\x55\xc9\xaa\ \x3b\x9b\x81\x2e\xd3\x50\x6e\x73\x2a\xdc\x41\x83\x07\x9c\xcd\x08\ \x67\xa6\x47\x91\xe5\x61\xc1\xe2\x04\x1a\x02\xca\xe8\xdb\x78\xdf\ \xae\xdf\xf5\xf3\x11\x16\x88\x5f\x2f\xcb\xaa\x1e\xae\x90\xdd\x86\ \xe3\x53\xf7\x59\x29\x56\x3b\x35\xe0\x65\x9f\x39\xb9\xfe\x93\x60\ \x4a\xdd\x16\x90\x75\x53\xd5\xe0\x6d\x4a\xf5\x4a\xb3\xab\x34\xa7\ \x3b\x4b\x41\xfc\x52\x67\x71\x17\x34\x57\x44\xa6\x97\xe1\x40\x24\ \x2b\xdf\x09\xc8\x84\x79\x85\x67\x2a\xab\x1e\xcc\x4a\xa8\x17\x80\ \xa0\x72\xc6\x4e\x81\xfb\x30\xef\xa6\xb4\xdf\xff\x88\xdd\xec\x3d\ \x37\x66\x36\xe9\x68\xdc\xd1\x5b\x73\x0a\x72\xb3\x85\x26\x98\xc8\ \x44\x74\x15\x94\x8b\xb8\x84\x7e\x5c\x4f\x7f\xbe\x1b\x0f\x88\xd7\ \x1e\xaf\x9a\x7e\xbd\x10\x5e\x56\x7c\x60\x6c\xf7\xf0\x0f\x5d\x8d\ \x3d\xd1\x7f\xdb\xec\x73\x50\xc6\xaf\x3a\x7c\xd5\xf5\xb5\xd2\x19\ \x0f\x5c\x0f\x71\xba\x34\x4b\x81\x99\xcc\xd1\x95\x77\xcc\x03\x41\ \xf8\x9a\xed\x6b\xf0\x9a\xd9\x4d\xce\x74\x58\xa2\x5f\x75\x78\xca\ \xfe\x2c\xad\x40\x52\x31\x17\xe3\x39\x0f\xb3\x6f\x74\xa0\x05\x36\ \x4a\x45\x48\x03\x5c\xd5\x9e\x75\xb8\x68\x3d\x09\x6e\x32\x24\x55\ \x2c\xd4\x09\x71\x14\x60\x42\x53\xf6\x31\xc0\xd1\x73\x5a\xf5\x29\ \x01\x4d\x3e\x80\xad\x63\x3b\x21\xdf\x75\xfd\xb1\x3d\xfd\x60\xa3\ \xe1\xb0\xe1\xf4\x6b\xf8\xcf\x9b\x7d\x11\x65\x61\x63\x39\x0d\x6f\ \xbd\xdf\xeb\xdc\x29\x43\x1c\x68\x6e\x31\xc0\xd1\x78\x90\x85\xb4\ \x65\x0c\xc4\x56\x40\x5d\x31\x88\x92\x18\x4b\xae\xb2\xd2\x96\x77\ \x43\x0e\x91\x23\xcc\xe3\xde\xf4\x4f\x3d\xdf\xfa\x1a\xe4\x98\x84\ \xb1\x1a\x6a\x4f\x30\xda\xdc\x32\x15\x0c\x0f\xe3\x04\x9c\x98\x10\ \x7c\x37\x48\x94\x91\x7f\x67\x6d\xbe\xec\xb8\xeb\xb0\x09\x60\xd4\ \xa5\x84\x16\x34\xd9\x66\x0a\xcf\x2c\x40\x96\x57\xa8\x93\xd0\x38\ \x10\xe9\x39\xda\x36\x8e\xc8\xf7\x2d\xfe\xcb\xdd\xd7\x0f\xde\x1b\ \x96\xbf\x6f\xfe\xb7\xb3\x5f\xd2\x83\x5b\xce\xfb\x6a\x07\x9a\x20\ \x6f\x70\x93\xd9\x56\x7c\x93\x6b\x36\xf9\xb2\xdc\xf7\x95\x2f\xaf\ \x40\xbd\x01\x7b\xa3\x2f\xbe\xe8\xb5\x40\x02\x31\xc3\xf5\xca\x58\ \x50\x36\xb2\xcc\xa8\x9c\x85\xe2\x60\xd5\xba\xbf\x11\x30\xb3\xfc\ \x86\x65\x98\xe5\x7c\x9f\x72\x3b\xa9\x32\x62\xe9\x6e\x20\x7d\xa2\ \x44\x31\xe3\x11\x52\x72\xdb\x71\x7d\xbb\xbf\xba\xe4\x0e\x2f\x62\ \x86\xfa\x9a\xf2\x76\x6d\xd6\x06\x83\x66\x4c\x24\x66\x5f\x29\xca\ \x7c\xc3\xf8\xe5\x7a\xfc\x2d\xbf\xde\xd9\xf5\x9e\xcb\x9b\x26\x9f\ \x6e\x2e\xa5\xc2\x22\xdf\xf6\x7c\x4d\x33\x2d\xcf\xb0\x8f\x5b\x7b\ \x06\xba\xf9\x85\xf6\x88\xe5\xca\xcb\x1d\xc6\x1d\xb7\x3b\x1c\x9f\ \x64\x01\x19\xc2\x35\x0e\x18\x27\x1b\x1d\x2e\x1c\x2e\xc2\xf3\xc0\ \x1a\xec\x9e\x8b\x8d\x06\x40\x7d\xc5\x72\x4e\x8e\xba\x43\x6d\x12\ \x0b\xe6\x89\x60\xdf\x84\xcc\xd5\x92\xd2\x84\x1c\x55\x8e\x6c\xd9\ \x2e\xb9\xac\x66\x62\x38\xb2\x23\x8d\x2a\x14\x11\x54\x09\xee\xdb\ \x3d\xd7\x7f\xea\xed\xce\x22\x6c\x83\x71\x86\xca\xda\x3c\x92\x1d\ \xe3\xc0\xbc\xb7\x7c\x63\xeb\x1b\x5c\x0e\xb0\xc0\xdd\xaf\x5a\xfe\ \x67\xf8\x8f\xc9\xb3\xd3\xd8\xbf\xa2\xfd\x34\x92\xf4\x0f\xae\x3b\ \xaf\xc2\x32\x1a\xe0\x60\x87\x1d\x28\x51\x9b\xb9\x80\x2d\x15\xca\ \x0d\xaa\x21\xdb\x88\x36\x12\x99\xc8\xe9\xf6\x98\xf5\x3c\xb9\xb9\ \x2e\xf7\x38\xfd\xa1\x5b\x22\x00\x0e\xcc\xf0\xf2\xdd\x36\x49\xbd\ \x8c\xa0\x93\x18\xb5\x4a\xec\x90\x21\x7d\xfe\x54\xe6\x1e\x27\x65\ \x31\xff\xbf\x3d\xbe\x81\x05\x10\x1b\xb9\x93\x14\x1a\xf1\xde\xc6\ \x26\x64\x26\x64\x83\x31\xb8\x05\xc5\x3e\x5c\x89\x40\xe3\x38\x79\ \xbc\x5f\xe2\x43\xdf\xbe\x6f\x7e\xc0\xfd\x27\xf4\xff\xeb\xc2\x9f\ \x65\x51\x4d\x5b\xa5\xec\x94\xf5\x5c\x44\x50\x71\x73\xd7\x54\x07\ \xf2\xcd\xe7\xc4\xc2\x00\x7c\x63\xc0\xdc\xa5\xc7\xca\x82\x02\x26\ \x27\x6e\x10\xbb\xe2\x93\x64\xc6\xc8\x8c\xfa\xa5\x4e\x1b\xa8\x57\ \x20\x32\x42\xca\x98\x90\x02\xe4\x8b\x4d\x0d\xdf\xc6\x34\xe9\x85\ \xc8\xad\xb9\x32\xce\xd8\xe9\x31\x2f\xa2\x06\x64\xca\x98\x35\xa7\ \x98\xbe\xa4\x5d\x79\x63\xde\x2a\x89\x13\xb8\x5d\x50\x2f\x09\x3a\ \xfb\xb7\x5f\x90\xff\x34\x0e\x20\x0c\xcd\x64\xf1\x38\xfc\xd7\xf4\ \x3f\xfa\xf5\xa8\x57\x6f\x16\x76\xdf\xb6\xdd\x54\xe2\xb0\xf7\xed\ \x72\x67\x4e\xe2\xf3\xa6\xaf\xc3\xa2\x70\xdf\xd4\x93\xda\x39\x79\ \x67\xeb\x11\xfd\xae\xa5\x67\x33\xa6\x61\x33\x8c\xa3\x8d\xa3\xad\ \xc4\x12\x68\x4f\x23\xaf\x63\x19\x24\xb8\x76\x6c\x0e\x80\x7d\x0b\ \xbb\x2a\xa3\x60\x42\x55\xf0\xda\x04\xb5\x4d\xcb\x4c\xd1\xb6\x0d\ \x39\x73\x2b\x07\xe6\x37\xea\xd7\x6c\x2b\x4c\xbc\x1a\x68\x08\xdb\ \xc1\x54\x01\x17\x92\xb8\xbe\xb2\xa7\x65\xc1\x07\x18\xb0\xf9\xdc\ \x78\xd6\x33\xe7\x40\x96\xe6\xba\x21\x7b\x0e\x83\x0d\xf6\xcf\xe9\ \xff\xb6\xb5\xff\x88\xfe\xd4\x05\xd1\xb8\xa4\x8c\x1a\xb6\xc1\xb4\ \x64\xdf\xee\x10\x1d\xc3\x11\x94\xed\x6e\x54\x36\x36\x80\x32\xab\ \xd7\x64\xc0\x56\xf5\x0b\xf4\xac\xbc\x02\x0c\xb2\xb1\xd8\x14\xe1\ \x96\x4e\x51\xc6\xad\x41\xb5\xd7\xd3\x3e\xf8\x89\x19\xf5\x3e\xeb\ \x9f\x69\xc8\x03\xb2\xa2\x0e\x39\xf6\x5d\xf8\x2c\x72\x40\x05\x8a\ \x5b\x63\x37\xf8\xeb\x84\x1a\xef\x4a\x4b\xd3\xe5\x4d\xf8\xbf\x74\ \xfe\x89\x01\x18\x7a\xcf\x9a\x51\x23\x81\xcd\xab\x31\x67\x1c\xb8\ \xde\xbb\x16\x70\x43\xff\x39\xec\x5f\xb7\xf6\xaf\x5b\x3b\xb7\x54\ \x46\xe5\x32\x10\x62\x85\x9e\x96\xbe\xa6\x1e\xaf\xf9\x41\xe0\x05\ \xec\x26\x7c\x63\x40\x2a\x37\x91\xa4\x5d\x16\x76\xf3\xaa\x4e\x3d\ \x40\x28\x7d\xbf\x6d\xa2\xde\x22\x70\x06\xcf\xa2\x6a\xae\x51\x09\ \x9c\x6e\xe6\xe6\x51\x30\xdb\xc2\x12\xa0\xe6\xcb\xf3\xaf\x09\xe6\ \x94\x72\x4e\xc3\xcd\xf6\x2c\x33\x24\xf7\x84\x93\x42\x06\x94\xc3\ \x39\x4b\xdb\x6a\xc9\xb4\x62\x8b\x4a\xa0\x65\xa6\x79\x08\x25\xd1\ \xd7\xfe\xa6\x54\x02\xae\x94\x30\x97\xa7\x68\xca\x88\x1c\xc3\x9a\ \xb5\x33\xe2\xef\x97\xbb\x7f\xe9\x57\x52\xaf\x7d\xbb\xa7\x7d\xce\ \x56\x49\xa0\xa7\x16\xef\x0f\x97\x03\xed\x02\x7c\xbc\xe0\x2a\x06\ \x3d\x2d\x94\xf1\xbc\xf5\xaf\x6e\x6f\xb8\x1d\x88\x57\x2d\xda\xa5\ \x2c\x41\xe9\x19\xf7\x16\x27\x80\xf0\x73\xd8\xe3\xd5\xae\x03\xb2\ \xa8\xd7\x70\x6a\xde\xa6\x96\xc9\x30\x8d\x98\x96\x85\x4b\x9d\xb0\ \xee\x56\x1f\xbe\x23\x65\x6d\x37\x14\x66\xa6\x0d\x58\x4e\xaf\x5e\ \x11\x13\x2a\xec\xd1\x72\x76\x45\x24\x46\xd3\x70\x86\x23\x67\x9a\ \xd1\x14\x3b\xcd\x51\xa7\x83\xc6\xaa\x18\x86\xd2\xca\xba\xb2\x6e\ \xf6\xcc\xb6\xb6\x6c\x42\x4c\xdb\x8f\x5d\x68\x5f\xd1\x39\x38\x6c\ \x2c\xa6\x9e\xd1\x04\x9f\xf6\x64\x2b\xc9\x2b\x30\x1a\x12\x88\x06\ \x5b\xa8\xa5\xb1\x81\x4f\x8a\x6b\x70\x0c\x59\xaa\x3c\x75\xb2\x1e\ \xe8\x4f\xb2\xbf\x6f\xfc\x2a\x1b\x6a\x6b\x95\x21\x05\xb8\x2b\xe3\ \xe8\x6e\x81\xd7\x8c\x94\x18\x47\xe0\x0f\x8b\x7f\xef\x51\xb5\x8b\ \xa6\x9a\x04\x34\x4b\x31\xf6\x2c\x5c\x26\x73\x0f\x0e\x13\x3a\xf0\ \x04\xad\xa7\x38\xb0\x1d\xef\x4c\x84\xdd\x28\xe3\x09\x13\x3a\x31\ \x06\x10\xb0\x84\x9f\x91\xbf\x04\x3f\x5e\xf1\xb7\xcd\xff\x16\x87\ \xcf\x06\x21\x83\xa3\xa0\x32\x99\xc8\xd4\xcd\x0a\x9d\xf3\xcb\xbc\ \x15\x62\x35\xbd\x08\x7d\xcb\x48\xdb\xe9\x21\xb7\xbb\x96\xfb\x3d\ \x39\x5d\x48\x65\x1b\x57\x29\x62\xb8\xc3\xd4\xd2\xa4\x82\x1e\xf8\ \x6e\x5c\x91\xcc\xcc\xf6\xc4\x9b\x36\x6b\x3b\x2b\x83\xcc\x1c\x5a\ \x67\x4c\xe6\x81\xb9\x06\x72\x68\x30\xd3\xab\xd3\xa3\xac\x90\x25\ \x53\xc8\xac\xdd\x79\x8e\x19\x75\x56\xee\x96\x7d\x5e\xa7\xac\x54\ \xd5\x3d\xcc\xa8\xae\x48\x31\x11\x96\x48\x6b\x5b\xb6\x8c\x6c\x96\ \xe9\x21\xb8\x6f\xd4\x4f\xd7\xd3\xe7\x57\xe7\x57\xcc\x7b\x5e\xde\ \xe0\xf4\x04\xaf\xb0\xa5\x57\xbe\xbe\xb3\xcd\x70\xf7\x55\xfd\xd7\ \xe0\x85\x08\x6f\x34\x75\xe5\x35\xfb\xd7\xf0\xd5\x2f\x0b\xf2\xc4\ \xb8\xe3\x38\xc7\x91\x36\x16\xc4\x2b\xcb\x13\x3a\xb0\x9c\xf3\xf8\ \x35\xb1\x59\xd1\x64\xda\x8a\x53\x70\xa5\x86\x69\xf5\x5c\xca\x23\ \x0b\xf5\xad\x82\xd4\x0d\xa2\x2c\x05\x58\xc2\x64\x57\x57\x1a\x3c\ \xd1\x03\xdb\x34\xc3\x72\x13\x46\xb1\x12\x00\x4f\x40\x83\x63\xb5\ \xac\x34\x09\x24\xaa\x9b\xca\xfe\x95\x18\x26\xa9\x05\x6a\xa2\x9a\ \x65\x3e\xa2\x55\xde\x40\xbf\x33\xdd\xb5\xaf\x07\x6c\x1f\xfc\x6e\ \x3d\xd9\x6f\x91\x3f\xcb\xc4\x0e\x24\x3c\x81\x91\xb0\x6b\xde\x37\ \x0b\x69\x5b\xd0\x16\x8b\xf6\x62\xf9\x4d\x93\x0c\xda\xf3\x83\xd2\ \x11\x0d\xe7\x86\xe1\x38\x34\xfa\xa3\xdb\xf3\xa8\xe4\x88\x12\xaf\ \x3b\xb1\x9c\xf5\xea\xaf\x79\xfc\x91\x71\xa5\x0b\x4a\x84\xcc\xd4\ \x50\xc3\x24\xdd\xc4\x90\x4c\xa6\x88\xed\x0e\x7e\xc0\x78\xaf\xb4\ \xe4\xdc\x83\x66\xcd\xc4\x6d\x58\x29\x0c\x0a\x8e\xda\x08\x8a\x23\ \x9d\x29\xaf\xc1\xda\x25\xf3\x7f\x3e\xe3\xe7\x26\xe6\x55\xe3\xbc\ \x81\x61\x52\xb6\x94\xc9\x61\x6d\x24\x78\x55\x7b\x16\xcf\x6a\x67\ \xb5\x67\xe3\x19\xb6\xcd\x75\xc6\x80\x98\xe8\x31\x85\xcd\x95\x4e\ \x5c\x5a\xf7\x39\x9e\x33\xd3\x24\x68\xd2\x68\x23\x62\x2f\xd5\x6e\ \x8b\x14\xbd\xe4\x91\xed\x6d\x58\x25\x90\x36\x5a\xc0\x68\xd6\xcc\ \x33\x34\x62\xa8\xce\x4e\x58\xb3\x2e\xb8\xc3\x8a\x0d\x55\xbc\x84\ \x12\x59\x35\x4e\x3a\xca\x20\x6e\x46\x9c\x5d\xcb\x37\xe7\x08\xb9\ \x8d\x11\x91\xdd\x3b\xcd\x94\x51\x17\xac\xa3\xae\xb9\xcc\xa2\x72\ \xde\xe2\x3e\xcb\x7b\x5e\x5d\x9a\xf1\x1f\x72\x0f\x35\x6f\xd2\x5b\ \x5c\x84\x7d\x63\xa3\xb9\x45\xb3\xe7\xd3\x7a\xfd\xe9\xf9\xe1\xf5\ \x9d\x0e\x6e\x6f\x8e\xfa\xfb\x19\x48\x1d\x60\xdf\x35\xdd\x59\x17\ \xf2\xd3\x96\x9f\xaf\x3d\x8f\x16\x95\xb7\x05\xdb\x12\x5f\x47\x3f\ \xf7\x7e\x62\x9c\x2c\xef\x9d\x5f\x32\x23\x75\x34\x9c\x9a\x8c\xb6\ \x81\x4f\xc8\x0b\xda\x30\xb8\xc5\xb0\x1c\x48\x60\x23\x7b\x83\x27\ \xfb\x90\x49\xbd\x62\xe6\x93\x3d\xe5\x75\xe4\x18\xc3\x13\x08\x11\ \x31\xf7\x56\x82\xd8\x60\xcc\x24\x2c\x1d\x69\x74\xa0\x6f\xa8\x63\ \x7b\xd7\x23\xc3\x52\xf7\xbf\xea\xed\xbf\x6f\x87\x8f\xa1\x8b\x2d\ \x01\x1b\xe1\x85\x57\x2e\xc1\x0a\x15\x3d\x78\xaf\xf6\xfe\xd8\x7f\ \x38\xf1\x03\x2f\x07\x8b\xef\xb9\xfd\x33\xb7\xe7\xf5\x70\x29\xbb\ \xd0\xba\x61\xf8\x68\xed\xda\x7d\xf1\xd1\x98\x8c\x83\x60\x97\x19\ \x64\x94\x9c\xf3\x2e\x18\x82\x94\xb1\x75\xdb\x0e\x8c\x03\xc6\x02\ \x10\x8b\xd8\xd2\xb0\x65\x2b\x6c\xaf\xd5\x92\x0f\x76\x85\x3f\xc9\ \x56\x98\x99\x42\x26\x07\x69\xe1\x73\x51\x61\x20\x19\xd3\x50\xc9\ \xb0\xb4\x75\x1f\x18\x68\xc6\x82\x27\x14\x02\x0b\xc7\x53\x8e\x60\ \x81\x75\x5d\x21\x33\x94\x09\x4f\xdc\x7f\x3d\x3c\xfc\x9b\x2f\xff\ \x23\x5d\x5c\x4a\x46\x23\x47\x0c\x04\x2d\x73\xc5\x39\x53\x06\xb3\ \x41\x6c\x64\xd2\x53\x48\x85\x52\x71\x51\x66\x8c\xc8\xd8\x0a\x36\ \x15\xf5\xc5\x4d\xa0\xa3\xbe\xe1\x93\xed\x7f\x7b\x53\xf1\xbe\xe0\ \x9f\x66\x46\xa7\x90\xd5\xad\x4f\x72\x1d\x6e\x21\x39\xa4\x39\xad\ \xc5\x96\x91\x59\xa0\x3b\x9b\xd1\xcc\x56\xa2\x1c\xb3\xdd\xcf\x8f\ \xdd\x38\xb0\xb7\x30\x56\x71\xbb\x05\x12\xb7\x99\xb1\x55\x46\xc8\ \x3d\xfa\xac\xd2\xd6\xd2\xaa\xff\xcf\x5a\xfc\xd7\xbd\x5e\xa8\x95\ \x29\x7a\xd6\x8c\xd9\x7c\xf1\xbb\xe9\x1f\x83\xdd\xa7\xc4\x46\x34\ \x07\x0c\xa9\x1c\x4a\x9f\x30\x88\x2d\xe2\xa7\xcb\xab\xff\xe5\xee\ \xdc\xc9\x57\x4b\x1e\xb6\x1c\x19\xf7\xf2\x0f\x2d\x3b\xdb\x33\xf8\ \x79\xeb\x17\x2d\x5e\x01\x7a\xc6\x14\x37\xe8\x29\x96\xaf\xb9\xbe\ \xb6\x58\x38\x1e\x3c\x7b\x6c\x58\xc7\xa9\xe7\x42\x05\xf8\x2c\x3d\ \x86\x0f\x33\x91\x83\xb6\x72\xbb\x60\x04\xd6\x05\xc7\x4e\xef\x58\ \x24\x6c\xf5\x23\x4a\xd5\x84\x31\xab\xf7\xcc\x60\x09\x8b\x69\x72\ \x02\xf0\x82\xbc\x64\x36\xc4\xd1\xb6\x83\x85\xa3\x01\xb6\x81\xd7\ \xad\x0f\x20\xaa\x45\x82\x83\xa7\x8b\xdf\x7f\xb4\xe3\x2f\xc0\xe6\ \x5b\xda\x12\x39\xa1\x20\xd3\x65\x1d\x9b\xad\xe3\xb7\x6b\x7c\xbc\ \x1c\x9f\xba\xb7\xfe\xe9\x3d\xaf\x8b\xfa\x07\xb6\x9f\x38\x7e\x0c\ \x79\xf4\x37\x36\xde\x1c\xfb\x62\x39\x10\x4c\x6c\xa0\xc3\x86\x2c\ \x66\x1c\x04\x1a\xa1\x2c\x8d\x73\x55\x96\xcd\xd9\x57\xbb\xca\x9f\ \x8f\x5c\x8f\x40\xc2\x2f\xa6\x2b\xe4\x36\xdb\xd6\xc0\xe4\x06\x25\ \x2c\xdb\xa4\x07\xee\x20\xc7\x72\x92\x58\xa5\xaa\x4d\x2d\x08\x5c\ \x34\xa9\x25\x5a\x91\x26\xe6\x23\xa4\xaa\xb5\x6e\x68\x8c\x4a\x89\ \x28\x5a\x79\x46\x72\xc0\xc5\x7e\xe5\xf2\xd4\x8e\x67\x23\x73\xe4\ \x50\xb8\xa5\x65\x71\x08\xd2\x4f\x89\xc9\xe9\xa8\xfa\x2a\x32\x33\ \x47\xc6\xd8\xae\xca\x60\xa6\x32\xa3\x2a\x39\x55\x71\xad\xa9\x6e\ \xde\x3b\x99\x6a\x23\xa6\xb9\x86\xd3\xec\x9e\xf8\xc7\xe4\xa3\x99\ \xc6\x04\x4c\x78\x8e\x49\x99\x8a\xcc\x94\x27\x27\xa9\x96\x34\xaf\ \xed\x80\x55\x74\x87\x72\x8b\x2d\x91\x46\xba\x99\xc4\x0a\x51\x9f\ \xaf\xcd\x4b\xfa\x0c\x42\x85\xc5\xb8\x79\x13\xe0\x3e\x2b\x3a\x11\ \x28\xe2\x05\x67\x7f\x65\x66\x76\xd3\x14\x28\x95\xdc\x87\x49\x25\ \xcc\x28\x6f\x48\xf9\xf3\xe6\xfc\x6f\xff\x4f\x61\x1e\x54\xfb\x20\ \xb5\xfa\x86\x62\x90\x0d\x1b\xdb\xaf\xc1\xdf\x60\xaf\x99\x0f\xee\ \x27\x1f\xe7\x6b\xbc\xf5\xed\x1d\xe5\xb0\x4f\xe1\x1f\xb7\x65\xeb\ \x16\x64\xc5\x50\x26\x6c\x38\x9f\x93\x8f\x5a\x56\x9c\x5f\x61\x7b\ \xed\xdb\x29\xdc\x6c\x3c\xf8\x38\x02\x40\x3b\x47\x3f\x07\x87\x33\ \xcd\x00\x5c\x33\x2e\x42\x20\x1d\xe3\x64\x71\x67\xb2\xe8\xc2\x00\ \xc2\x98\x20\xb2\x5c\x4f\x73\xda\x59\x66\xa8\x45\xca\xa9\x81\x45\ \x4a\x6b\xcb\xcb\x3d\x2e\x27\xa4\x61\xd9\x70\x78\xda\xda\x73\x7a\ \x6a\x44\xa5\x01\xd1\x05\x0c\x20\x9c\x32\xa6\x7b\x58\x3d\x64\x12\ \xa2\x72\x47\xe4\x8b\x37\x57\xd7\x75\x04\xb7\xe5\x6d\x5b\x5f\xf3\ \x69\xe1\xb8\x43\x3b\x12\x96\x7a\xe3\xf8\x97\x3b\xbd\xe7\x25\xd1\ \x7e\x93\x7e\x1b\xc5\x83\xe2\x6d\xab\x02\x30\x94\x66\x92\x18\x13\ \x77\x42\x40\x5b\xca\x71\x5e\x7c\x75\xba\x23\x2d\xcd\x30\x7c\x26\ \xf2\xce\x53\x79\x66\xf6\x91\x29\x8e\x19\x75\xc6\xa4\x5e\xf6\x9d\ \xff\x1f\x59\xef\xfa\x2b\x4b\x76\x64\xf7\xad\x88\xd8\x99\x59\x75\ \x1e\xf7\xd9\xdd\xbc\x24\x87\x6c\x0e\x5b\x1c\x89\x23\x0d\xe0\x91\ \x0d\xfb\x83\x0d\x7f\x90\xff\x6f\xc3\x30\x0c\x18\x90\x0d\x43\x96\ \x44\x0d\x67\x86\xdd\x9c\x21\xd9\xec\xc7\x7d\x9d\x67\x55\x65\xe6\ \x8e\x58\xfe\x10\x7b\x67\x9d\x96\x01\x7e\x68\xde\x7b\xee\x79\xd4\ \xa9\xdc\x3b\x1e\x6b\xfd\x56\x24\x8a\x4d\x4c\x25\x42\xd6\xf6\x1c\ \x6d\xef\xf0\x16\x6c\xe3\xd4\xb3\x6a\xbf\x2f\x20\x5b\x9e\x59\xfa\ \x58\x59\x25\x3c\x5c\xc9\xcc\x9f\x47\x18\x25\x08\x11\x47\x99\x2d\ \x25\xd7\x4e\xaf\x11\x21\xee\xbe\x56\xae\xa0\x33\x2a\xc2\x15\x61\ \xa6\x6d\xc6\x40\x6f\x7b\xcb\x26\x4d\x25\xb1\xe6\xf9\xde\xfb\x9c\ \x48\x8d\xe6\x13\x97\x72\xab\xa2\x36\x69\x41\xe4\x24\x37\xff\xca\ \x84\x62\x49\xf9\xcb\xfd\x64\x86\xbe\x69\xc9\x25\x66\x0b\x61\x93\ \x86\x71\x12\x15\x0d\x78\x49\xf7\x8b\xca\x39\x0a\xaa\x0d\xa3\xc9\ \x4c\x09\x10\x51\x06\xbc\x7a\x22\x2d\x83\xb4\x3e\xf2\x16\x09\x11\ \x09\xa6\x8c\x69\xb3\x1e\x65\xee\x4f\x88\x64\xaa\x80\x6c\x18\xe9\ \x9e\xa0\x98\xe9\xc3\x79\x84\xc5\xc6\x67\x0b\x77\x54\x35\xd5\x31\ \x4a\x7c\xf4\xf8\xfe\x68\xcf\xf7\xeb\x7e\xb0\xcb\x61\x7d\x3c\xc9\ \x8b\x32\x5f\x1a\x1c\xf2\x6e\xb5\x1b\x1f\xbc\x80\x83\x58\x07\x61\ \xb9\xea\x0c\xde\xa1\x1c\x11\xd7\xf0\x2b\xa9\xd7\x0a\xf1\xb8\xc4\ \x32\x42\x57\x0c\x0f\x5e\x1e\xa9\xd5\x72\x80\xa1\x0b\xca\xc3\x7a\ \x71\xd4\xc3\x85\x2c\x86\xd3\x73\x1b\x2f\x5c\x56\xd0\x73\x9c\xa6\ \x90\x04\x08\x52\x83\x42\x63\xde\xdb\x21\x05\x1a\x14\x15\xe7\x80\ \xd8\x6b\x7d\xa6\xcb\x0e\x20\x86\x19\xe5\xde\xe5\x54\x4b\xb5\x5a\ \xf9\x24\xe9\x11\xa1\xd5\x41\x86\x67\xda\x55\x33\x53\xe6\x8c\x5b\ \xc5\x45\x43\x8a\xa1\xf0\x71\x8d\x8f\xae\x73\xf1\x3d\xd6\xc2\x7d\ \x89\x82\x88\x49\x1f\xaf\x79\x7f\x29\x15\xd8\x03\xfb\x93\x48\xa5\ \x32\xb5\x5e\x09\xff\xce\xf0\x26\xc9\x86\x33\x83\xc1\x29\x74\x84\ \x55\x96\x88\x0a\x13\x45\x51\x91\x22\x8b\xa9\x9b\x6e\x63\x1f\xa5\ \x28\xd5\x60\xac\xa1\xae\xa5\x8f\x4c\x1b\x10\xa6\xb1\x20\xa9\x26\ \x1a\xf4\xca\xfc\x5e\x2d\x57\x88\xc1\x60\x34\x5f\x46\xe5\x13\x54\ \x66\x73\x1b\xa4\x60\x58\x03\x63\x40\x10\x82\x93\x12\x16\x60\x38\ \xab\xc0\x35\xd4\x19\x70\x2f\x8b\xa5\x49\x15\x0c\x8f\xa8\x8c\x1a\ \xac\x12\x2e\x51\x35\x82\x09\x2b\x6b\xe6\x99\x68\xaa\xa9\x73\x96\ \x72\x9f\x12\x90\x4f\x73\x58\xcf\x01\x2c\x1b\x97\x97\x1b\x69\xd4\ \xcf\x99\x0a\x1b\x2c\x4a\x45\xd4\xd6\xb5\x7a\x5d\xfb\xd4\x1a\x7d\ \x29\x14\xa9\x9e\x96\x9e\xfb\x24\x71\x46\xa7\x6f\xde\x4e\x6c\x05\ \x58\xce\x21\xbb\x7c\xbe\x89\x4e\xdb\x0f\xd0\x88\x1b\xda\xf4\xcd\ \xcd\x5c\xd8\xc1\xb2\x71\x96\x13\x70\x33\x49\x37\xdb\x36\xa3\x39\ \xa2\x81\xa0\x22\x28\xe1\x51\xe1\x52\x72\xf7\x0b\x31\xea\xee\xa4\ \xfe\xe1\x24\xa7\x7d\x9d\xc0\x67\xe2\x47\xb1\xe7\x25\x26\xb5\x23\ \x71\xe3\x65\xcd\x55\x65\x63\x3f\x65\x1c\xa7\x38\xca\x01\xc3\x91\ \x65\x95\x18\x64\x79\xae\x00\x63\x27\xa1\x18\x96\x18\xee\xbc\xcc\ \x10\xcf\x88\x28\xa8\x43\x1f\xea\xee\xb6\x5c\x5e\x95\xe3\x80\xc7\ \xe7\x66\xaf\x07\xcc\x1c\x4f\x2c\x15\x7a\x6e\xb6\x24\xc7\xe7\x8b\ \x24\x60\x23\x17\xb6\x01\x23\x27\xf0\x79\x89\x2b\xa3\x61\x5a\x31\ \xde\xb1\xdc\xfb\xb4\x9a\x04\xc4\xbb\x50\x29\x8b\x18\x06\xe0\x69\ \x16\x00\xa9\x4d\x9e\x42\x85\x69\x10\xf0\xc6\xa4\x8b\x12\x27\x22\ \xe0\x8a\x75\x04\x47\x51\x30\x56\xf7\x95\x04\xdd\x64\x1d\x64\x3f\ \xa5\xa7\xa3\x41\x10\xf3\xd4\xe5\x66\xfd\x65\xc3\x51\x10\xc1\x66\ \x6c\x4d\x66\x85\x20\x07\x97\x2d\xab\xbb\xcd\x6d\x7a\xf8\x69\xae\ \xb7\x95\xce\x64\xe7\x6d\xd3\xdc\x4d\xd4\x95\xd1\x44\x25\x9f\x19\ \x6c\x11\x5e\x50\x2a\x32\x0a\x20\xce\xd0\x1d\x86\xb4\x1d\x5d\xc0\ \x1c\x85\xd0\x10\xa3\x69\x84\xd6\x74\x05\x09\x1d\x91\xe1\x4d\xb1\ \x56\x09\x67\x08\x19\x1e\x88\x90\x20\x63\x85\x7b\xd0\x9b\x6d\x38\ \x1c\x12\x08\x67\x7b\xbc\x36\x11\x65\xb7\xfe\xc9\x93\x2c\x4a\x11\ \x35\x84\x23\x47\x6f\x1b\xa7\x19\xe8\x4a\x99\x2d\x22\x9c\x75\x5b\ \x61\x76\x7a\x3a\x33\xa3\x56\x4d\x73\x1e\x9f\xa5\x6c\x44\x9c\x53\ \x02\xdb\xba\x53\x37\xc1\x5b\x9e\x5c\x5d\x4d\x92\xa0\x5a\x76\xde\ \x8a\x64\x18\x41\xcf\x0b\x64\x0b\xd8\xcd\x3c\x28\xa2\x75\xff\x0d\ \x1a\x05\x05\x23\x5a\x5e\x8c\xf6\x4f\x98\x8f\x50\xf6\x49\xdd\x62\ \x0f\x92\x9e\x19\xc3\x6c\x44\x6f\x22\xc4\x2a\x78\xe3\xbc\x5b\xed\ \xf9\x10\xd7\x45\xd7\x09\x17\x83\x85\xe0\xe3\xaa\x77\xd5\xdc\x00\ \x4b\xcd\x4f\x46\xca\x35\x7b\xe2\x29\xf4\x81\xd3\x09\xcb\x85\xd4\ \xab\x32\x8a\x62\x52\x10\xe5\xd1\x87\x87\x6a\xab\x09\x85\x12\x01\ \x1a\xc4\x4e\x5e\xde\xaf\xcf\xae\x0d\x2f\x64\xd9\xcb\xf2\xa3\x61\ \x38\x39\xde\x2d\x57\xce\x69\x05\x60\x2e\xea\xda\xa5\x18\x54\x55\ \x90\x70\x84\x97\x15\x63\xc4\xab\x72\xfa\xa4\x9c\x2e\xc5\x80\xfd\ \x23\x86\xf7\x8b\xdd\xb9\xd5\x02\xb8\x86\x3c\xb1\xfe\xa6\x47\x44\ \x05\x16\x54\xed\x44\x91\x9c\x81\x16\x3a\x3c\x2a\xe1\x26\x0a\xd4\ \x13\x65\x86\x12\x9e\xc1\x13\x02\x39\xc5\xf8\xc8\xf9\x85\xcc\x0a\ \x0e\x58\xaf\x04\x4e\x56\xf8\x13\xf9\x55\x46\xfc\x26\x36\xb8\x7d\ \xc3\x12\x28\xea\xa3\xb9\x69\x4b\x1b\xaa\x21\x8e\x92\xa6\x9a\x8e\ \x22\xdd\xf0\x57\x12\x9a\xe2\x74\x89\xb6\x0c\x6f\x6d\x4d\x13\x35\ \x40\x5d\xc4\xa1\x0e\xad\x4d\x6e\x44\x9e\x13\xc7\x35\xa0\x7e\xfe\ \xf3\xf6\xcc\x10\x52\x21\x15\xc5\xd1\x26\x15\x21\x0c\xd2\x89\x30\ \x7a\x0a\x43\x12\xd5\xb3\x80\xc1\x80\x7a\xaf\xff\xa2\x49\x9b\x82\ \x91\x02\xe7\xbe\xbc\xe0\x96\xb7\x05\xb4\x2b\x28\xb5\xd0\x1d\x73\ \xee\x6c\x11\x68\xad\x24\xdb\x6c\xf5\x5b\x74\x46\xfa\xd8\x42\x3a\ \x08\xa0\x99\x77\xfa\xae\x3f\x82\xa4\x6a\x2e\x69\xa4\xc1\x0f\x36\ \x9d\x4b\xeb\xfb\xb5\x08\x02\x62\x1d\x65\x96\x15\x62\x26\xd7\xab\ \xa8\x48\x15\x92\xee\x11\x11\xb0\x9c\x6e\x6b\xdb\x03\x25\x24\x2e\ \x1d\x7c\x4d\x53\xb6\x05\x82\x64\xfa\x46\x98\x98\x76\x80\x42\x92\ \xd9\x7a\xd8\x64\xf3\x0d\x69\x2e\xb1\x93\x7f\x13\x4e\xf7\x08\x8f\ \x08\x09\x91\x43\xe8\xc7\x2a\x97\x43\xbd\x34\xc5\x4e\x86\xc1\x8e\ \x88\xf7\xb5\x1c\x02\x6e\xa1\x8a\x48\xec\x4d\x02\x89\x49\x51\xce\ \xa1\x77\xbe\x3b\x95\x3a\x21\xf6\xe6\x56\xdc\x50\x66\xea\x7d\x95\ \x23\xd5\x85\xa2\x74\x02\xe1\x2a\x70\xb3\x5b\xee\xbe\x77\x29\xe5\ \xee\x4a\xe2\x0a\xf5\x47\x45\xc5\xd7\x0f\xab\x3e\x84\xb9\xa7\xc4\ \x3e\xa1\x40\x06\x28\xb9\x8a\xcf\xa3\xe3\x92\x78\x51\xd6\x9f\x0e\ \x0f\xaf\xe5\x54\x30\x9d\x30\xbe\xaf\xe3\xfb\x3a\x1e\x05\x14\x37\ \x4a\x88\x7a\x7b\xe7\x09\x45\xa9\x85\x25\x9d\x3b\xda\xfc\x49\x79\ \xec\x33\x9a\xe3\xab\x99\x7a\x74\x89\xf1\xc8\x5d\x95\x25\x84\x26\ \xa1\xe2\xa7\x90\xf7\xd4\xd7\xc0\x84\xd3\x48\x7f\xc6\x4b\xda\x70\ \x14\xae\x94\x48\xb5\x69\xa2\x33\x10\xdd\x7f\x1a\x0a\x19\x15\x3b\ \x5d\x76\xea\x02\x23\xe0\x88\x25\x86\x80\x05\x57\x67\x67\x0b\x35\ \x9d\x6f\x96\xf9\x72\xa6\xf4\x6f\xbb\xf7\x2d\xb5\x3e\xb3\xe9\x90\ \x04\x74\x7d\xa2\xfd\x42\x50\x84\xa8\x94\x9a\xd0\xbe\xa4\xda\xa5\ \x94\x56\x34\xa0\x2b\x64\x6d\xff\x2a\xd9\x3e\xce\xca\xe6\xc8\x5c\ \x09\x57\x8a\xb9\x7b\xe6\x60\x46\x1e\xdb\xfc\xa1\x08\x3f\x29\xd5\ \xec\x57\x4d\x9e\x63\x19\xf3\xd7\xad\x00\x68\xc7\x6d\x6f\x2e\x9a\ \x33\x12\x01\xb6\xeb\xfd\xc9\x84\x6d\xa3\xd5\x70\x1b\xe1\x36\xbe\ \x45\x0a\x64\x04\x06\xd6\x0d\x8e\xdc\x6c\x57\x1b\x8e\x5b\x14\x62\ \x45\x27\xbc\x3d\x94\x00\x00\x20\x00\x49\x44\x41\x54\x42\x1a\x03\ \xbc\x71\xa2\xb9\xf9\x63\x98\xbc\x40\x6a\x02\xa3\xda\xed\xd0\x6a\ \xc9\x86\x90\xca\xb0\x1c\x4a\x48\x0f\x58\x8a\x66\x58\x6d\xb8\x57\ \x26\x48\x27\xef\xa4\xfe\x4b\x21\xc3\xa1\x45\x3b\xfe\xae\xfd\xcc\ \x60\x90\x1e\xa1\x55\xa8\x72\x82\xdc\xb8\xfc\x08\x71\x61\x34\xa8\ \x2a\xef\x10\x1f\xaa\x9d\xd2\xdb\x0b\x0d\x98\x36\x34\x7b\x72\x2b\ \xc5\x29\xf7\xae\x47\xb3\x2b\x89\xa2\x8b\x09\x05\xe3\x21\xf4\xb1\ \x9a\xab\x84\xba\x34\x8f\x9c\xab\x80\xa2\xc7\x90\xb7\x3e\x8d\x72\ \x6d\x76\x98\x38\xbf\x06\xa7\x21\x2e\xf4\x74\x53\xed\x81\xba\x54\ \x89\xb6\xb6\xa3\x38\x0a\xe7\x09\xfe\x42\xca\xcb\x21\x9e\xdb\xe3\ \x4b\x39\x4e\x18\x17\xee\xdf\xd5\xf1\xfb\x65\x77\x17\x16\xba\x5a\ \x06\x74\x65\x78\x56\xc3\xf9\x2a\xa1\x1b\xda\x33\x32\xab\x9c\x89\ \xa4\x5e\x45\x18\xaa\x54\x50\x21\xae\x35\x6c\x0d\xa3\x85\x61\x9d\ \xb8\x16\xb1\x47\xd5\xef\x63\xff\x82\xb1\x97\xbb\x7d\xcc\x7b\x16\ \x31\x8c\xa2\xa7\xd0\x8c\xb1\xa8\xb4\x40\xe3\x6a\x16\xa3\x69\x8c\ \xb2\x4e\x88\x51\x72\xfa\x5c\x96\x9c\x32\x67\x47\x15\xb2\x01\x46\ \xb7\xcd\xdf\x13\xff\x33\x7f\xb0\x25\xec\x61\x3d\xcd\x82\x18\xa8\ \xdd\xd7\xd5\xa8\x6f\x22\x50\x78\x7a\x93\x9a\x8d\x64\xd3\x0f\x48\ \x66\x87\xa5\xf9\xc2\xc3\xc2\x2d\x50\x73\x26\xdd\x4a\xa7\xaa\x74\ \x89\xce\xda\x6e\x82\x9e\xe4\xc3\x11\x08\xcb\x95\x5f\x6b\x62\x72\ \x36\x49\x6e\xa2\xf4\xc8\x1b\x86\xe7\xc6\xbf\x3d\x55\x59\xfd\x65\ \x7b\xd1\x17\x2a\x5b\x7c\x60\x43\xca\x78\x04\xa2\x85\x38\x82\x92\ \xb9\xe7\xd6\xbc\x2d\xc9\x67\xd2\x14\xec\xc8\x93\xb4\xe6\x94\x2c\ \x23\xb2\x48\xcb\x97\x5d\x8a\x9a\x99\x88\x3a\x99\xe0\xea\x7c\x76\ \x33\x93\xb6\xbf\xba\x88\x7e\x9f\x31\x47\x65\x92\xd7\x48\x3e\x70\ \x59\x86\xc1\x54\x93\x89\x8b\xb6\x4f\x6f\x4a\x6d\x6a\x13\xe2\x30\ \x87\x98\x4f\xc6\xeb\xdc\xe6\x10\xd1\x0e\x8f\x72\x92\xb8\x9f\x65\ \xbe\xc0\x33\x71\x28\x29\xbc\xad\x7a\xbb\xea\x22\x2c\x20\x43\x08\ \xa1\x65\x86\x58\x58\x96\xe7\xaa\xa7\xc0\x43\xd8\x2b\x5d\x07\x59\ \x32\x1e\xf0\xe0\x78\x5c\x51\x07\x7a\x82\x00\x05\x62\x11\xa0\xab\ \x51\xf4\xae\x86\x79\xd1\x69\xf8\x4c\xd7\xe4\x2a\x5d\xe8\xf8\xba\ \x94\x87\x98\x0e\x18\x66\x6a\x15\x05\xbc\x90\x3b\xfa\xa5\xc6\xb5\ \xfa\x5e\x92\x05\x35\x1c\x78\xf9\x7e\xdd\x7f\x7b\x2a\x37\x3e\x2e\ \x03\xa8\x8b\x00\x66\xde\xb0\xf1\x8d\xd1\x1c\xc2\xaa\x9e\xd4\x73\ \x0d\x26\x3f\x28\x24\x08\x71\x11\x65\x49\x43\xbf\x50\xe0\xc1\x4a\ \x02\xf3\x88\xc3\x5e\xa7\xd1\x76\xf7\xd4\x8f\x6e\x7f\x58\x65\x37\ \xfa\x1b\x59\x47\xaf\x83\xca\x85\xd8\x64\xe2\x2a\xce\xe2\x44\x13\ \x38\x4b\x14\x59\x8b\xac\x05\xcb\x00\x57\x18\x31\x2e\x28\xf7\x61\ \x77\xab\xad\xa1\x6a\xae\x3d\x06\x35\xf9\x74\x3d\x8e\x25\x69\x1b\ \x88\xec\xbc\x9a\x2e\x31\x1f\x11\x32\xe0\xd2\x80\xdc\x1e\x5a\x9b\ \x2c\xa8\x4b\x3d\xc2\x29\x29\x18\xb5\xcc\x0b\xd9\x8e\x7b\x86\x30\ \xa4\xc2\x92\xe1\x16\xda\x4a\x94\x16\x2d\x1e\x09\x04\xa2\xe8\x92\ \xfb\xbb\xe6\x8d\x4c\x07\xb3\x77\x35\xe8\x66\x72\x6e\xc9\xe6\xad\ \xd0\xa2\xf0\xac\x7e\x4e\x7d\x02\x3b\x2a\x80\x1d\xa4\xcf\xa7\x0f\ \x4c\x1f\xa3\x75\x91\x4a\x0f\x61\xdb\x6e\x1b\xcb\xca\x35\x22\x31\ \x08\xda\x31\x63\x11\xe1\x5e\x3d\x22\x18\x6a\xf9\x42\xb0\xf4\x91\ \x4f\x62\xe4\x45\xda\x5d\x99\xe7\x51\x8a\x1a\x6a\xde\x06\xe9\xa5\ \x0b\x89\x90\x60\xfb\x9c\x1d\x5d\xae\xc2\x66\x85\x8a\xb2\x39\x7b\ \xd4\x12\xc2\x6f\x6d\x0f\xc6\xbe\x9d\x85\xc0\xb3\x9e\x4b\x54\xb1\ \x98\x36\x35\x5e\x0e\x1f\x1c\x23\xdc\x0d\xcb\x23\xe5\xb1\xda\xe5\ \x48\x91\x58\xa1\x77\xcb\x78\xac\x43\xb5\xa0\x5b\x06\x8e\x32\x12\ \xee\x26\x14\x0b\x81\x33\x16\xd7\xfb\x32\xcd\x58\x47\x08\xb0\x5f\ \x58\x6e\xab\x3d\x82\x4b\xee\x1f\xb5\xed\x89\x93\x28\xec\x22\xae\ \xfa\x21\x26\xaf\x72\x1a\xea\x6b\xe5\x35\x62\xc2\x3c\x49\x7d\x61\ \x35\x60\x15\xb6\xa2\x10\x2a\xf0\x01\xeb\x88\x5a\x60\x80\x55\x5c\ \x7c\x04\x6e\x39\xbe\x8d\xe1\x4e\xcb\x62\x01\x83\x40\x22\x56\xe1\ \xaa\x5a\x2a\x76\x15\xab\x63\x74\x2b\x9e\x23\x39\xb0\xa6\xbf\x3b\ \x73\x3e\x09\xb0\xd4\x04\x3b\xa2\x00\x85\x7a\x5c\xb4\xdc\xf0\xe2\ \xc4\x87\x11\xc3\xb5\x95\x8b\x61\xbd\x5d\xd5\x23\x6e\x8f\xf6\x27\ \x3e\xe3\x50\x5f\x0e\xc7\xbd\xb8\x21\xac\x91\x8d\xe5\x07\x70\x2e\ \x84\xc2\x05\x2e\x28\x8e\xdd\x89\xd3\x7d\xb5\xa3\x63\xcd\x89\x72\ \x20\x54\x33\x00\x30\x60\xab\x52\x35\x23\xb9\x2b\x54\x20\x25\x9b\ \x39\x69\x66\x46\x76\x21\x7b\x2b\x52\x9c\xba\xe2\xf2\x48\xdb\x09\ \x17\x88\x57\x8d\x40\xa8\x9b\xb8\x63\x38\xe1\x62\x86\x9e\xb2\x81\ \xf6\xd1\xdd\x51\x59\x6d\x7a\x94\x32\x21\x0e\x1a\xd5\xd6\x98\xd5\ \x53\x76\xe0\x85\x3e\xb9\x4a\xd8\xaa\x2a\xf4\xc2\x08\x84\x37\xc9\ \x72\x1e\x82\x61\x0a\x7a\xf5\x88\x36\x87\x95\xad\x4d\x41\x9a\x51\ \x35\xbf\xbb\x96\xe8\x8c\x4d\x05\x7d\x9e\xcd\x22\xda\x78\x8b\x9d\ \xf5\x2d\x99\x7e\x9d\x96\xd8\x60\x4e\xf2\x01\xa6\xe5\x9e\x08\xcf\ \xc7\x55\x4c\xa5\xa8\xe4\xe6\x06\x1b\xee\xac\x19\xd5\xa4\xf4\xc8\ \x8d\xce\x32\xcb\x21\x59\xb4\x01\x42\x06\x6f\x86\x7b\x02\x30\x7a\ \x54\x7d\xcb\x88\x48\x8a\x50\xfa\xdd\xb4\x6b\xb3\xdb\x6c\xb0\xdd\ \x1c\xcc\x7d\x6b\x49\xa1\x4d\xde\xf9\xcd\xa8\x9e\x76\xed\x2c\xa7\ \x83\x11\x69\x5f\x33\x77\x13\x17\x1b\x2c\xa0\x07\x19\xbf\xf3\x8b\ \x02\x1f\x11\x0f\xf4\x8f\xa1\x47\x95\x94\x12\xf5\x12\xbd\x71\xd9\ \x23\xc7\x54\xa2\x15\x72\xeb\xf6\xa1\x5c\x8b\x88\x61\x7a\x80\xdf\ \x50\x8e\x5a\x38\x28\xb5\x76\x85\x82\x56\x0d\x8d\x40\xd8\x68\x83\ \x4b\xdc\x70\x9a\x4f\xe3\x9d\x95\xe7\xe3\xfa\x4c\xd6\x6b\xc4\x04\ \x16\xc4\x80\xba\xc7\x8c\xcc\x50\x87\x00\xe3\x09\x76\x84\xdd\x87\ \xde\x54\xbd\xf3\x32\x8b\x71\x52\xf6\xe8\x15\xc8\xba\x48\x39\xc9\ \xfe\x06\x93\xe0\xe4\xd8\x3d\xa0\xd4\x2d\xea\x1b\xe2\x42\x41\x44\ \x42\x86\x48\xba\x8b\x47\xfa\x9c\x14\x56\x0d\x6f\xf9\xec\x77\x62\ \x2f\x61\x07\x0c\xb3\x26\x0a\x59\x16\xd1\x8f\xd5\x54\xcb\x62\x7c\ \x16\xcb\x5e\x38\x28\x14\x91\x68\xf6\x33\xc7\x0b\xb6\xc2\x02\x11\ \x1c\x66\xee\x1e\x7d\x3a\x54\xad\x6c\x59\x97\x2a\xe2\x1c\x4e\xbc\ \xb8\x15\x38\xc6\x8f\x2c\x47\x96\x60\x38\x6a\x62\x17\x22\x73\x50\ \x5a\x42\x74\x6c\xda\x9d\x3c\x65\xaa\xca\x0d\xe5\x2b\x96\x3d\xe3\ \xbe\xea\xc7\x28\x4b\x81\x17\x35\xea\xfb\xc0\xef\x7c\xff\x8d\xf0\ \x16\xf8\x38\x94\xc5\xc4\x1d\x06\xb9\x83\xfc\x63\x95\x0b\x91\x83\ \xc7\xbb\x23\x3c\x10\x52\xc2\x8d\xab\xb1\x0a\x6d\x51\x59\x25\xa4\ \x3a\xbd\x6a\x46\x38\x87\xf7\xf1\x37\x1b\x10\xa0\x09\x44\x9f\x28\ \xfd\x65\xeb\x71\xb6\x14\x74\x66\xde\xda\x56\xbd\x44\x5b\x3c\x36\ \x8f\x6d\x56\x6e\xcc\x77\x4a\x4f\x8e\x68\xf6\x88\x36\x60\xa6\x8a\ \x16\x34\xd3\x51\x8b\x89\x96\xf6\xb3\xb7\xd0\x92\x9e\x44\x01\x74\ \x4d\x1a\xd9\x78\x96\x7d\xfe\x90\xaf\x1b\x93\xc6\x21\x3c\x7b\x6c\ \x92\x45\x1d\xcc\xa0\x62\x29\x28\xb4\x26\x5e\x68\x37\xfe\x36\xf0\ \x6e\xa5\x5c\x34\xbc\x73\x04\x34\xa5\xcf\x91\x5f\xb7\x0f\xa9\xa5\ \x01\x52\x52\x70\x5a\x5d\xb0\xc2\xf6\x56\x6d\x9c\x45\xfe\x78\x92\ \x3b\xe8\x58\x38\xbb\x3e\xd2\xa3\x00\x5a\x0c\x11\x91\x91\x57\x1b\ \xf8\x2d\x07\xb9\xa5\xaa\xdf\x3b\xfe\xec\xe3\xa3\x11\x81\xc3\x6a\ \x1f\xdc\x96\x92\xc1\x4a\xdd\x13\xa0\x04\x8d\x9a\xd8\x9f\x20\x04\ \x32\x3d\x0a\x4f\x35\x6e\xc3\x2e\x45\x2e\x45\xf6\x05\x93\xc5\x84\ \x5a\xe0\x59\x37\x3b\x6d\x46\x39\xba\x3d\x2c\xe5\xc0\x71\x16\xa9\ \x22\xa1\x34\x8d\x96\xd1\x19\x25\xec\x82\x88\x5b\x5a\xac\xe5\xad\ \x59\xac\xe5\x9e\xe1\x9a\x91\xeb\x9a\x93\x2a\xa6\xee\x24\xe5\xb1\ \x19\xcf\x84\xd0\x10\x05\xa4\xc8\x87\x2a\xf7\xcb\xf5\x20\x1e\x64\ \x8d\xe2\x62\x2c\x32\x08\x4e\xc2\x7b\x84\x45\xb8\xdb\x89\x31\x18\ \xad\x81\xab\xd1\xaa\x19\x4a\xae\xa9\x9d\xb2\x86\xad\x31\x2e\x1c\ \x56\xd9\x2c\x8e\x08\x0d\xc7\xee\xce\xf5\xa1\xd6\x55\xca\x47\x99\ \x1e\x7d\x5a\xb1\x3a\x97\x6c\x70\x55\xb7\xe9\xf5\xe6\x90\xe4\x56\ \x50\x84\xc9\x0d\xfd\xb0\x16\x59\x75\xa5\x1d\x4d\x30\x56\x5a\xa9\ \x1c\xee\xc3\xff\x71\x86\x10\xeb\xa0\x75\x24\xcd\x39\x10\x45\x1f\ \x56\xde\xaf\x0a\x0e\x31\x87\x47\x45\x81\xa0\x38\xc5\x19\x8a\xb5\ \xc4\x4a\x46\x40\x95\x0c\xaa\x68\x7b\x03\xc2\x41\x37\x8f\xdc\xf6\ \x37\x55\x03\x1b\x31\x33\x43\x43\xa4\x21\x9a\x7d\x0b\xb9\x41\x9f\ \x4c\x9f\xa5\xd7\xf9\x9f\x67\xd4\x53\xcb\x0b\x8c\x08\xd5\x06\xcc\ \x68\x8f\x4c\x23\x7c\x4a\x84\x87\xd7\x06\x5c\x16\xa5\x10\xd6\x06\ \xc5\xe9\xd5\x94\x6e\xa8\x2e\x5b\x73\x61\xb9\xcc\x51\xe9\x03\x3f\ \x2d\xc9\x6f\xc9\x6f\x96\xa2\x5a\x44\x8b\xa8\x22\xc7\x2b\xd4\x9c\ \x6f\x34\xb1\x45\x3f\x04\x52\x89\x20\xed\xf5\xcf\xf9\x77\xfe\xb7\ \x30\x0d\x8e\x62\x10\x27\x85\xc1\x8a\xc8\x4c\x01\x36\x6b\x46\x26\ \x02\x69\xad\x4b\x60\x1c\x58\x78\x98\xfd\xe3\x9a\x2d\x9b\xa8\x8a\ \x15\x58\x90\x49\xac\x42\x7f\x2f\x76\xd9\x61\x84\xc0\x6c\x46\xbc\ \x0d\xf9\x10\x40\x15\x77\x8d\x62\x30\x7a\x0a\x27\x3a\x54\x26\xf3\ \x7c\xa0\xc1\x9a\x4e\x81\x30\x89\xd0\x98\xc9\x15\x76\x57\x55\xab\ \xa9\xa2\x48\x14\x4d\x5d\x87\x42\xb5\xc6\x50\x63\x0c\xcb\x74\x97\ \xec\x11\xbc\xbb\x8b\x84\x62\x92\xa1\xc9\x8c\x35\xa8\x31\xa5\xf9\ \x8e\x3d\xa1\x69\x0b\x5d\x30\x61\xcd\xe1\x4a\x26\x3b\x04\xc1\x4a\ \x62\x54\xe1\xc0\x43\x8c\x61\xa3\xb1\x0e\xb9\x7b\x90\x62\x02\x77\ \xad\xca\x55\xf5\x88\xea\x51\xcd\xf3\xa2\x8f\xf4\x45\xc3\x44\x02\ \x14\x44\xa4\x56\xa0\x84\x68\x62\xc5\xda\xe1\xa4\x9e\x8d\xcc\x29\ \x76\x35\x18\x6a\x0b\x86\x8c\xa7\xcf\x69\x1b\x29\xf4\x96\x51\x21\ \x4c\xfc\x74\xa6\xaa\xe5\x6b\x66\x21\x42\x2d\x87\x4c\x05\xa5\xb3\ \x9c\xc4\xd6\x82\x52\x65\x0a\x35\x2f\x82\xea\x44\x30\x3c\x18\xe2\ \x88\x0a\x72\x54\x91\x60\xf5\xb2\x8a\x56\xc2\x82\x13\x85\x82\x55\ \xcc\xe9\x43\x88\x7a\x2c\xd0\x30\x23\x9b\x17\x32\x9c\x44\x8e\xea\ \x25\x8b\xfd\xce\xc6\xec\x03\xe5\xc6\x19\xeb\x0f\x46\x9b\xc0\x35\ \xce\xd3\x59\x92\xb6\xe1\x39\x1b\x46\x3e\xfa\x3f\x17\xe6\x2c\xaf\ \xab\xd9\x08\x41\xc6\x3c\x92\x4b\xad\x19\xd0\xa8\xd2\x95\x22\x8c\ \x04\x77\xa7\x27\x3a\x77\x3e\x05\xdb\x42\x54\x1b\x24\xb0\xe9\xdc\ \xd2\x4c\x15\x02\xd2\x6b\x10\x50\x35\xeb\x6f\xbc\x6d\xc7\x94\x4b\ \xdc\x1c\x64\x48\x8b\x04\x91\x88\x0c\x47\x68\x8a\x50\xef\x85\xa5\ \x76\xb6\xb4\x32\x39\x0e\x9a\x31\xeb\x44\x00\x2e\x14\xb4\x51\xb6\ \x83\x0b\x9d\xae\x91\x4b\x46\xf3\x80\x44\x14\xa9\x49\xb5\x96\x26\ \x8e\xd8\x52\x19\xa5\xa5\xd1\x95\x40\xb0\x72\xa0\x0a\x21\x3a\x84\ \x8c\x21\xac\x10\x88\xb6\x50\x8f\x4e\x28\xcd\xd8\x1e\x33\x63\xfe\ \x0c\xa1\x62\x5a\x08\x21\xd4\x33\xfb\x32\xa8\x0c\x6d\x79\x05\xa5\ \x49\xad\xcc\x54\x29\xa8\xc2\x54\x73\x2b\x72\x67\xcc\xfc\xdc\x19\ \x1e\xd6\xe4\x44\x2d\x45\x36\x57\xed\x02\x0d\x6d\x41\x5e\x72\x86\ \x5f\x39\xb4\x33\x62\x82\x91\xde\xbd\xd6\x3d\xd7\x8c\xaf\x21\x28\ \xa2\x43\x08\x24\xc4\xa2\xc0\x5d\x5b\xcf\x9e\x45\x5a\x06\x3c\x77\ \x53\x53\xb4\x71\x61\x08\xc2\xa4\x66\x02\x38\x4b\x63\x04\x64\x14\ \x50\x5a\x8a\xc6\xa8\x25\x3c\xc8\x9a\x90\x80\x64\xee\x6f\x94\x6e\ \x3e\x81\xc0\xe4\x1a\xb4\x2f\xb0\x21\x0e\x3a\x9c\x61\x2b\x79\x44\ \x08\x22\xa2\x30\xcd\x15\xe1\x86\x90\x60\x30\x42\x75\x01\x13\xb0\ \xa6\x35\xe3\x38\x51\x45\x56\x01\x88\xc1\x6b\xda\x2b\x5c\x95\xe1\ \x9a\xe2\x99\xe4\x71\x88\x2c\x60\xb4\x2a\x25\xb6\x39\x71\x3b\xc6\ \x1b\x8c\x53\x98\xf4\xcd\x74\xaa\x6d\x6e\x81\x56\x8b\x45\x5f\x2f\ \x65\xc6\x0a\xa3\x21\x26\xa4\xba\x47\xc3\xea\x6c\x42\xb1\xb4\x7d\ \xa6\x8d\x2d\xdd\x74\x21\xaa\x51\x9b\x72\x21\x93\x10\xc5\x1a\x26\ \xbd\x78\xe4\x87\x6d\xea\xb8\x3e\xd8\xca\xec\xa2\x96\xb9\xd4\xa6\ \x23\xf1\xe4\x06\x71\xb8\xa6\x45\x25\x01\xbd\xda\x68\x2c\x29\x45\ \x03\x60\x88\x08\xe9\xb0\x5c\xed\xcf\x7a\xd6\x73\x34\xd8\xb9\xcf\ \x8b\xd4\x3e\x05\xe8\x41\xb1\x90\x98\x8f\xb6\x8f\xd5\x03\x5a\x82\ \x18\x60\x26\x82\x80\xac\x01\x31\xc8\x98\xf8\xf7\x27\xbf\x57\x98\ \x28\xdb\x20\x14\xbe\xc2\x32\xe8\xc7\xe0\x92\x11\x27\x29\x17\xd6\ \x0d\x59\xd5\x71\x2f\x4d\xee\x93\xe2\x94\x9c\x06\x47\x66\x28\x66\ \x9c\x53\xa6\xaf\x89\x6c\x61\x9d\xde\x26\x97\x2d\x7d\x29\x6b\xf2\ \xcc\xb7\xf3\xbe\x96\x42\xfb\xf6\x72\xfa\xdc\x9c\x49\x50\xcd\x95\ \x00\xa3\xa9\xa2\xac\x69\x98\x04\xd4\x92\x60\x19\x86\x80\x6e\xa4\ \x58\x24\xd3\x4f\x41\x0d\x31\x51\x53\x69\x79\x17\x0d\x8c\x23\x0d\ \xac\xdd\x72\x02\x37\x5a\x6e\x15\x78\x66\xc6\x37\xde\x93\x08\xf3\ \xba\x40\x24\x09\xc1\x11\xc6\x30\x94\x51\xe0\x10\x52\xeb\x26\x28\ \x39\x47\xda\xb4\xf9\x6c\x34\xf9\xa0\x09\x33\xde\xd0\x85\x24\x2c\ \x68\xd5\x03\xb5\x22\x18\x2a\x51\x34\x88\x08\x61\x88\x7b\xb2\xf8\ \x23\x42\x91\x42\x01\xa7\x07\x23\xaa\x84\x6b\x90\x55\xe1\xa1\xae\ \x84\x71\xc8\x67\x29\xda\x0f\x44\x02\x15\xb9\x7a\xc5\xe6\xda\xe4\ \x79\x48\xce\x8d\x8c\xdc\xc1\xa1\xd1\xd7\xb3\xec\x59\xd7\x8d\xdd\ \xdd\x06\xbf\xed\x85\x69\xb5\x9b\x8a\x3a\x22\x1b\x26\x74\x11\xa7\ \xb6\x7d\x41\xc8\xc6\xf3\x68\x0c\x01\x2d\x0d\xb2\x91\xaf\x7a\x88\ \x48\x41\xa3\xa7\x75\x6b\xe7\x36\x90\x0b\x30\x57\x7e\x6d\xfa\xd0\ \xae\x99\xb4\x61\x53\x82\x50\xb6\x90\x82\x66\x85\x4b\x4b\x93\xe6\ \xd4\x92\x4f\x7e\xda\x5c\xcb\xa4\xbc\x27\x1c\x42\x85\x3a\x43\x60\ \x91\x46\xa4\x1c\x43\x25\x06\xbc\xfd\x24\xca\x25\x32\x8b\x30\xa1\ \xb4\x8c\xa4\x19\xb5\x6c\x0f\xb4\x21\x22\xcf\xf4\xec\x9c\x3d\xa6\ \x12\x2c\x84\xda\xf4\x0e\x4a\x35\x72\x20\x0d\xad\x9a\xea\x3f\x8b\ \xb4\x30\xc1\x48\xa2\x14\x5b\x0a\xaf\x4a\x34\x59\x52\x9b\xd2\x43\ \x72\xc5\x80\x91\x62\x90\x92\x5e\x7d\x30\x27\x13\x89\x97\x92\x8c\ \x3b\x17\xf2\x2c\x55\x6a\x93\xdd\x16\x7f\x1b\x49\x55\xa6\xa4\xe3\ \xaf\x15\xea\x84\x22\xf2\xa3\x92\x52\x29\x5c\x25\x58\x28\x10\xf3\ \x3c\xfb\x33\x86\x2f\x52\xe7\x97\xe9\xd0\x5b\xe8\x53\x5b\x8e\xb5\ \x87\xa6\x29\x10\x5c\x58\x75\xb3\x0b\x27\x67\x1d\xd6\xdb\xe8\x73\ \xf8\x83\x49\x14\xb2\xc5\x66\x27\x77\xac\xfd\x8e\xcf\x42\xab\xd4\ \xf2\xf4\x7d\x49\x7e\xf7\x0e\x0a\x31\x04\xa4\x7a\x48\xb8\x22\x20\ \x16\x21\x5e\x01\xf7\x88\xaa\xa8\x2a\x24\xac\xb2\x38\x33\xb7\xd4\ \xb5\x66\x34\xa8\x46\xfa\x0e\xa5\x7b\xb3\x20\xd5\x5d\x7c\x45\x55\ \xd0\x52\x8c\x14\x28\x09\x93\x92\x73\xcf\x72\x36\x9f\x49\xdb\x52\ \xa4\x27\x0e\xd1\xcd\x9b\xf9\xe6\xcc\xdd\x50\xd6\x7b\x7d\x2a\xdd\ \x87\x26\xce\x88\x00\x45\x32\x04\xa8\x33\xe2\x45\xd4\x8c\x60\xad\ \x55\x04\xe9\xe2\xec\x47\x5f\x8a\xe2\xa8\x9a\x51\xe9\x85\x64\x51\ \x4d\x25\x6a\xb7\x3c\x33\x8f\x42\x26\x24\x7d\x23\x8e\xa5\x2d\x87\ \xfd\xd2\xeb\x08\x9a\x84\x4d\xb3\x79\xe4\xf2\x5f\x87\x17\x2d\x10\ \xe9\x76\x53\xc3\x66\x18\xca\xb3\xab\x49\x9c\x98\x56\x01\x61\xe4\ \x67\xee\x0a\x56\xa7\x28\x31\x88\x9b\x12\x42\x17\x35\x31\xb6\xe1\ \x13\x32\xdc\x69\x53\x83\xa3\x79\xeb\xda\xa5\x8d\x12\x5d\x1d\x87\ \x66\x37\xcd\x5c\x91\x21\xa0\x82\x15\x11\xed\xf6\x3b\xa7\x00\xf4\ \x7c\x4d\xb0\xc7\x3e\xa7\xf6\xc0\x48\x4b\xb8\x2f\xa2\x6a\xa8\x8a\ \x66\xe9\xaf\xe2\x48\x81\x17\x2c\xa8\xc8\x4a\xbc\xb5\x4a\x59\x2c\ \xa4\x23\xf3\x2c\x8a\xc0\x36\x40\x6c\x59\xda\xf9\x65\x9c\x19\x3e\ \x60\x96\xfa\x14\x42\x54\x28\x56\x05\xa2\x89\xdb\x64\x53\x8e\x67\ \x66\x26\x91\x55\x7a\x18\x9a\xde\xe0\x87\xb2\xc4\x4e\x6f\x96\xe6\ \x15\x02\x0d\xb9\x30\x6b\xfd\x71\x04\x8a\xab\xd6\x84\xed\x65\x3e\ \x69\x2e\x2b\x34\x47\x25\xdb\xb6\xb3\x45\x4f\xc4\xd9\x5f\x1c\x10\ \x8d\x4c\x5d\xa5\x03\x0c\x5a\x46\x20\x47\xca\xdb\x17\xc4\xaa\x79\ \xba\xab\x06\x4d\x34\x83\xa6\x5c\x88\x95\x9c\x25\x94\x31\x84\x16\ \x0e\x54\x38\xdd\x2a\x2c\xa2\xea\x02\x7a\x0c\xe1\x83\x70\x75\x3b\ \x35\x4d\x5b\xa1\xd4\x88\x55\x52\x94\xe5\x5b\x72\x38\x11\xb9\xd1\ \x74\x78\x13\x72\xcb\x93\x6f\x9b\x11\x8c\xa6\x37\x40\x17\x32\x6d\ \x71\xce\xad\x8c\x3a\xdb\x42\x37\x01\x81\x95\x22\xaa\xb5\x7a\xf2\ \x0e\xce\x29\xce\xf9\xf2\xa0\xeb\xcc\xd2\x6f\xf3\x84\x37\xd2\x95\ \x9a\x78\xb2\x79\xc5\x39\x0b\x5e\xa5\x65\xd1\xf4\x4c\xc7\xe8\x33\ \x36\xb6\x7d\x6a\x2b\x8f\xd9\xf3\x71\x42\x29\x7a\x4e\x4b\x49\xbe\ \x83\xf6\x24\xd1\xb4\x52\x3b\xc5\xb2\xb7\x89\xf3\xc8\x4d\xaa\xd8\ \x6e\x28\xf4\xd5\xc2\x1c\x31\x8b\x84\x9a\xa0\xec\x44\x26\x31\x27\ \x94\xd1\xa7\xcf\xd1\xf3\xda\xa8\x14\xf5\x68\x09\x25\x90\x12\x2d\ \x85\x49\xc9\x80\x46\xd6\xb7\xc8\xca\xb9\x6b\x68\xfb\xbc\x42\xdb\ \x61\x24\xd6\x8f\x20\x51\x0f\xd0\x13\xda\x68\x80\x57\x40\x11\x16\ \x94\x90\x14\xa3\xa6\x23\x36\xb9\x56\x2a\x91\x54\xe2\xd0\xfe\x62\ \x74\x90\x85\xb4\xad\x09\xcf\x62\x8e\x7c\x89\x6b\xae\x16\x7d\x89\ \xf4\x07\x6b\x03\x8a\x2a\x20\x35\x08\xb6\xbd\x56\x1e\x35\xdb\x02\ \xbd\x69\x2f\xc8\xfe\x0b\x62\xaf\xd1\xb2\xe5\xc9\xcf\x90\x65\x55\ \x7a\x4f\x03\xf4\x81\x3e\x28\x2a\xf4\x91\xc9\xb6\xc4\x06\x20\x0a\ \x32\x5a\xc3\x85\x3e\x5b\xca\xb5\x1a\x61\xd2\x58\x34\xcc\x60\xb5\ \xdc\x8f\xb8\x36\x76\x23\x02\x21\x98\xe1\x2e\xb3\x8e\x61\x84\x86\ \xa8\xcb\x2e\x12\xce\x8a\xaa\x3c\xe8\xb2\x0e\xf4\x12\x08\xc8\xb1\ \xda\x62\x1a\x16\xc2\x53\x41\xc5\x5a\x6d\x15\x09\x79\xb5\x7b\xf9\ \xb3\xe7\x77\x5f\x7f\x7c\xfc\xc3\x87\x16\xe9\x79\x92\xd6\xc7\xa7\ \xbf\xa6\xe5\x94\xb6\x38\xd1\xed\xe2\x84\x48\xab\x80\xfa\x76\x24\ \x7e\xe0\xf4\x6a\xd9\xbe\x4f\x32\x98\x34\xe8\xf1\x64\xd1\x9e\xf5\ \x96\xa9\x0a\x24\xdf\x21\x0d\x0b\xd0\x41\x5f\xf9\x28\x84\x7b\x4b\ \x38\x20\x4b\x0a\x04\xd8\x16\xa4\xa1\xdb\x6f\x82\x67\xa5\x7f\x78\ \x9f\x68\xe4\x2a\x34\xc2\xb1\x42\x49\x68\xa1\xe6\x3f\x0f\x06\xe8\ \x0a\x05\xe0\x1e\x2d\x58\x00\x9a\x4a\xea\xcc\xab\x08\x86\xa4\xcd\ \x58\x54\xa4\x2d\xb5\x98\xcd\x41\x13\x1d\x69\x04\x69\x11\xb2\x2c\ \x11\x83\xe2\xd1\x7d\x55\xe5\xd5\xa5\x4c\x3a\x28\x3c\x56\x07\x0a\ \x86\xea\x35\xa9\xb9\x22\x22\x66\x01\x20\x92\x62\x16\x20\x42\xda\ \xe2\xd6\x20\xa0\x54\x69\xb4\x80\xc6\xe0\x6b\xab\x0e\xcd\xda\x27\ \xed\x8b\x21\x7d\xee\x2f\x2c\x2d\xb3\x82\x6b\x89\x5a\x70\xf5\x89\ \xf1\xc2\x1e\x3f\xd2\x1f\x63\x5a\x64\xa8\xaa\x2a\xae\x60\xd7\x3a\ \xd3\xa5\x45\x34\x07\xc5\x32\xf3\xbe\x7b\x2b\xb0\xfd\xae\x5b\xde\ \x75\x0a\x48\xd8\x42\x91\xd4\x15\x75\xef\xf1\x12\xf1\x99\xc6\x33\ \xf1\x90\xe1\x24\xe5\x63\xe5\x3b\x2f\xa7\xf2\x84\x26\x21\xed\xbe\ \xc8\xbd\x42\xbe\x9f\xa2\xa9\x77\x7b\x1a\xec\x13\xd5\x45\x9b\xec\ \xa4\x67\x1f\xb3\x61\xdd\x0b\x2e\x15\x73\xc4\x4a\x86\x60\x25\x34\ \xb6\xb8\x90\x5c\xdc\x13\x67\x6d\x22\xfa\x99\x42\xf6\x56\x8a\x55\ \x42\x49\x71\x09\x47\x14\x86\x38\x09\x54\x41\xbd\x5c\xf9\x89\xc8\ \xcb\xbd\xee\x8a\xdf\xac\xcb\xef\x8f\xbb\xdb\xb9\x04\x62\x8c\xe5\ \x1a\xfc\xd5\xe5\xf0\xa6\x94\x49\x97\x85\xeb\x77\xa7\xd3\x3f\xde\ \xee\xde\xad\xf4\x7a\xbc\x92\x57\xbf\xfa\xec\xee\xdd\xfd\xcd\xb7\ \xef\xa6\x97\xc3\xee\xf3\xe9\xf8\x88\xe5\xdb\x60\x0d\xaa\x89\x89\ \x78\x2e\x3a\xa2\x9f\xc8\x8d\x12\x45\x6c\xad\x7e\x3b\x8c\xda\x68\ \xa0\x65\x0d\xb4\xc9\xd3\x96\x4f\xd3\x72\xa0\x36\x68\xd3\x13\x31\ \x6a\xff\xe1\x5b\x0e\x48\xce\x97\x95\xe7\x5c\x22\x46\x64\x28\x1a\ \xfa\x2c\xcd\x81\xc2\xb3\x0d\x53\x5a\xa8\x7a\xdf\x6a\x8a\xa4\x1e\ \x44\x82\x35\x43\xa7\xf2\x96\xcb\x73\x3e\x82\x10\x46\x0b\x42\x3d\ \x9f\xde\x10\x38\xdd\x88\x10\x8d\x3c\xa1\xb4\x8d\xba\x25\x31\x64\ \x19\xe5\x41\x06\x5d\x9b\xda\x47\xb7\xd6\x0d\x6a\x12\x21\xe6\xc0\ \xfa\xe8\x3c\xbd\xde\xbd\xfa\xb7\x3f\x7d\xf1\xf3\x57\x3a\x18\xab\ \xf8\x87\xd3\xe3\xef\xee\xf4\x1e\xa3\x1b\xd4\x08\x9a\x14\x73\xba\ \xa0\xaa\x40\x50\x18\x2b\x7d\x81\x15\xc0\xe8\x12\x56\x64\xa0\x8a\ \x1b\x05\x28\x21\x06\x11\x45\x0d\x84\x4a\x69\xc5\x26\x23\xe0\x2a\ \x6a\x9a\x52\xa6\x42\xa2\x60\xa6\xa0\x42\x26\xac\x2f\x19\xcf\xf4\ \x78\x92\x78\x10\x0b\x24\xf9\x5f\x2b\x68\x08\x25\x45\x73\xa0\xa3\ \x40\x28\xc2\x8d\x22\xa5\xc5\x2f\x3a\x88\xde\x8d\x0b\x02\x16\xdb\ \x14\x15\x4a\x0d\xb2\xee\xe9\x5f\x8c\xe3\x2f\xd4\x47\x79\x5c\xa1\ \x02\x1d\x10\xae\xeb\x9f\xab\x7f\x19\xd3\x2d\x94\xa2\x62\x15\xb1\ \x4a\xd6\xb4\x89\x91\x8c\x50\x46\x11\x15\xc1\xe2\xe9\x25\x95\x96\ \x05\x42\x4f\xfb\x36\x28\x9a\x0b\x2d\x71\xe1\x62\x86\x09\x4a\x88\ \x7a\xfb\x75\xaa\x0c\xd0\xa2\xa8\x4c\x12\xb1\x66\x68\xee\x8a\xa0\ \x58\x73\xbc\x85\x3b\x16\xa2\x18\xd4\xc3\x51\x03\x30\x15\x18\x11\ \x60\xd5\x35\x5b\xd9\xcf\x3e\x9f\xae\xfe\x9b\x8b\xef\x26\x1c\x26\ \xcc\x5f\xd5\xf8\xd3\x69\x27\xee\x26\x33\x64\xff\xe9\xe5\x8b\x2f\ \xae\xbf\xe7\x72\x7b\x3a\xf1\x7a\xda\xff\xe4\x85\xbe\x19\x0e\xff\ \xfb\x1f\xec\xf6\x74\xfd\xeb\x37\xe5\xdf\xbe\x78\x7e\x73\x25\xbf\ \x1f\xbe\x3b\xde\xc9\x2e\xca\x5f\x7f\xfa\xc9\x2f\x3f\x9b\x1f\x97\ \x3f\xff\xf6\xeb\xf5\x4f\xc7\x71\xce\xa1\x56\x27\x00\xe4\x25\x9b\ \xdd\x7c\x56\x97\xdd\xe5\xb0\x9d\x79\xdd\x59\x9f\x69\xf2\x7d\x68\ \xaa\x48\xf9\x28\x9b\x0d\x2d\x55\x95\x01\x89\x1e\x2e\x0e\x15\x85\ \x68\x78\xcd\x0f\x82\x14\x55\x4b\xeb\x5a\x36\x7b\x49\xd2\xcc\x7e\ \xa8\x88\xea\xea\x11\x84\x59\x31\x33\x30\xf1\x3a\xde\xc9\xb7\x4c\ \xd9\x59\x44\xfe\xde\x11\x99\x2e\xcd\x5e\x7c\x25\x47\xa8\x6d\x6f\ \xd8\x33\x6e\x5a\x79\xe2\x70\xcd\x05\x40\x8e\xe2\x95\x81\x90\xb6\ \x8c\x96\x90\xfc\xbf\x99\xe7\x2b\xdd\x13\x2a\x2a\x00\xd7\xd5\xc9\ \x97\x17\x9f\xfe\xbb\x5f\xe2\x6f\x5e\x7d\xf7\xe1\x61\xb9\x3f\xbd\ \x78\x71\x7d\x7d\x3d\x9e\xbe\x8f\xe1\x28\x5c\x83\x51\x17\xb3\x2a\ \x52\x22\x5c\x95\x36\xa8\x73\x91\x19\x6f\xca\xd5\xa7\xc3\xdd\x37\ \x8b\xdc\xcd\x16\x43\x78\x71\x89\x60\x2d\x50\x85\x88\x68\xc5\x3a\ \x8b\xee\x44\x5a\x90\x36\x4f\x81\xd1\x21\x0e\x87\x96\x41\x84\x95\ \x8b\xae\xc7\x22\x06\x54\xf5\x79\x52\xdb\xab\x0a\xc6\x18\x41\x3f\ \x99\x57\x8f\x32\x0c\x2c\x24\x58\x3c\x94\xc1\xc2\x8a\xd0\x84\x97\ \x89\x4a\x90\x5c\xdd\x1a\xb5\x35\xc4\x9a\x6c\xaa\x95\xc1\x01\x51\ \x22\xea\x18\xf1\x33\x5d\x7f\x6d\x33\x5d\x7f\x5f\xfd\x9b\x2a\xa6\ \xa7\xd7\xe4\xcf\x8b\x7c\x31\x3a\x97\xf2\xf7\x75\x3c\x0e\x5a\x59\ \xb9\xce\xe3\x30\x8e\x86\x31\xa2\xd4\x90\x58\x0d\xf5\xd9\x30\x4c\ \xa6\xb7\xac\x4b\x9d\x02\xba\xc2\x25\xa8\xa8\x39\x24\x8f\xea\xfd\ \x4d\xa5\x14\x25\x56\xa0\x0a\xd5\x1c\x3b\x71\x33\x0b\xc8\x81\x96\ \xe6\x6c\xad\xab\x01\xa6\xc5\xb0\x90\x7e\xc2\x7e\xa6\x89\x8b\xf9\ \x52\x96\x55\x6b\xd4\xc1\xf7\x18\x29\xc3\x09\xb2\x88\xb9\x55\x15\ \x57\x3a\xd6\x82\x58\x3e\x2e\x7f\xfa\xed\xfa\xed\x2b\xd1\xbf\xba\ \xb6\x89\x17\x12\x02\xce\xa1\x21\xd3\xfa\xbd\xdf\xfe\x1f\x37\x87\ \x87\xc7\x65\xbe\x3b\x7e\x52\x96\xff\xee\x27\x57\x3f\xbf\xe4\x2f\ \x9f\xfb\x6f\x1e\xa3\x9e\x8e\xea\xeb\xb0\x9c\xd6\x3b\xf1\x6a\x57\ \x03\x5f\xd9\x1f\xbe\xfd\x78\xfd\xf3\x17\x17\xc3\x9b\xe5\xdd\x3f\ \xda\x4c\x8a\x86\xe6\x21\x9d\xaf\x5b\xab\xf9\x15\xd9\x61\x46\xd3\ \x43\x83\x4e\x0f\x90\x74\xa7\xb7\x01\x55\x6b\x18\xf2\xe9\x62\x84\ \x47\x97\x51\xe7\x9b\x1a\xad\x32\x10\x86\xe6\x5c\xca\xb3\xe0\x12\ \x53\x0e\x8a\x62\x22\x3d\x70\x53\x2a\xaa\x12\x21\x21\xaa\xe5\x3c\ \xf2\x17\x35\xb3\x5e\xf5\x35\xc8\x3a\x54\x22\xe8\xd5\x25\xff\xda\ \x34\x71\x0d\x4e\xcf\xf4\xa7\x74\xd1\x8a\x07\x34\xff\x6f\x8e\xbd\ \x34\x93\x6e\x09\x04\xdc\x60\x68\x51\xe0\x5b\x41\x9a\x5d\x49\xbb\ \xac\xf2\x83\x9b\x38\x14\xa1\x34\xb8\xba\xb9\xff\x68\xc0\x17\xcf\ \xbe\xf9\xfe\xf6\xf6\x7f\xfb\xf2\xf9\x1d\xec\xf2\x59\xec\x2f\xe5\ \x58\xdd\x6c\x95\xf0\xbd\xc5\xf3\x61\xde\xab\x93\x38\xac\x17\x0f\ \x27\xa9\xb2\x3c\x97\xe5\xaf\xa6\xe5\xe7\xe5\xee\x62\xbd\xfa\x73\ \xf1\x87\x58\x4e\x0f\xe5\xf9\x34\x22\xe4\xbe\xce\x20\x86\xc1\x9f\ \xb9\x0e\x56\xef\xbc\xcc\xc1\xc9\xeb\x2b\xac\xe0\x20\xb0\x0b\x75\ \x47\xbc\x5f\x1e\x86\x39\x3e\x31\xb9\x1e\x42\x64\x46\xe0\x02\xeb\ \x08\x51\x6a\x75\x11\xe2\xa5\xea\xe5\xe0\x17\xba\x28\xe5\x7e\xc5\ \xfb\x45\x43\xf1\xc9\xb0\x14\x8e\x37\x51\x1e\x2b\xa0\xb3\x79\x3c\ \x17\xb9\x9e\xe4\x36\xe4\x16\x1a\x6a\x6c\xc7\x03\x35\xf3\xe0\x49\ \xaf\x7a\xcd\xf5\x17\xb6\xee\x59\xff\xd3\xfd\xd5\xdf\xd5\xab\x79\ \x54\xd3\xd3\xfb\xea\x27\xd5\x7f\x83\xe3\xcf\xcb\x7c\x33\x5f\x7e\ \x33\xef\x4c\xf4\x93\x9d\xfe\xac\x1c\xae\x85\x83\x48\x14\x39\x84\ \x40\xb0\xd3\xc3\x1e\x28\x36\xae\x5a\x1f\xe0\x8f\x1e\x83\xda\x45\ \xf1\x09\x30\x08\x2d\xd6\xc0\xc9\xa7\x23\x4a\xc4\x40\x39\x28\x96\ \x0b\xf0\x13\x9b\xc4\x84\x2a\x8f\x58\x86\xea\xa7\xe3\x34\xf3\xa0\ \x8e\x1f\x5d\xc4\x5f\xda\xf1\x52\x87\x23\xf8\xb5\x9f\xbe\x5a\xec\ \x06\xb1\xd3\xf2\xeb\x4b\x5e\x62\xbd\xc3\xf0\x49\xb9\x20\x1e\x7f\ \x73\xa8\x7f\x5c\xf6\xeb\x6e\xf0\xa1\xc9\xaf\x51\x4e\xdf\x9c\x0e\ \x6f\x1f\xed\x8b\xbd\xfd\xf2\x3a\x8a\x2c\x0a\x53\x71\xb1\x1d\x06\ \x7f\x7f\x3a\xbc\x3d\x95\x52\xaf\x0b\xe2\xfd\x3d\xef\x0e\x8b\x5e\ \x2e\x2f\x8b\xcb\xfa\xf0\xd5\x37\x7f\xf1\xeb\x4f\x1e\xdf\x1d\x1e\ \x7e\xf3\xcd\xcb\x37\x2f\x86\x93\xff\xf9\xab\xaf\xff\xfc\x9b\x3f\ \x7e\xfe\x3f\xfd\xf5\xf0\xa2\x2c\x3b\x1d\x6e\x57\xa1\x0a\x22\x70\ \xb6\x08\x33\xe8\x88\x4d\xfc\xcc\xf6\xdf\x09\x5b\xf6\x6e\x83\x8c\ \x6e\x1e\xc8\xbb\xa5\x4d\x08\xb0\xe5\x15\x6e\x52\x3e\xf6\xce\x28\ \x0d\xcf\x1e\xee\xa1\x6a\x21\x99\xd1\x0d\x46\xd4\xa5\xc2\x03\x11\ \x21\x48\x0a\x4d\xc9\x49\x5e\x4b\xb3\xc5\x36\x4b\x4e\xdd\xb5\x6e\ \xd5\x57\x33\x2c\x05\x43\x43\x1b\xd5\xa4\xf7\xd4\x19\xec\x19\x19\ \xb7\x46\x6e\x74\xc2\x2e\xd9\x8e\x8e\x9d\x97\x36\xca\x88\x06\x7e\ \x07\x15\x74\x56\xa0\x64\x81\x1e\x41\x88\xbb\x09\x39\x68\x84\x4c\ \x3a\x0f\xc1\xa2\x23\x6c\x7f\x17\xfb\x8f\xce\xdd\x32\x5e\x6a\xe8\ \xc1\xdf\x5c\x5f\xfe\xcd\xab\xfa\x52\x4e\x06\x29\xc0\xc7\xd9\x7f\ \xfb\xbe\xde\x2c\x97\xbf\xf8\xe4\xf4\xd3\xf2\xc7\x3d\xae\x7e\xb5\ \xbb\x7c\x8d\xf2\xd5\xe9\x74\x7f\x1a\x7e\x5d\xb8\x32\xfe\xcb\xc1\ \x1f\xe8\x7b\x29\x7f\xb5\x1b\xae\xec\xe1\xbf\xdc\x2f\x1f\xd6\xe9\ \x93\x9d\xff\xeb\xfd\xe3\x88\x7d\xc5\x65\x11\xf9\x10\xa7\xc3\x5c\ \x3f\x2b\xfa\xf9\x5e\x14\xe6\xdc\xd9\x45\x5c\xe0\x80\x10\xf5\xa5\ \xac\x65\x3f\x5c\xfd\x7c\x5c\xf6\xb8\x2d\x51\xf7\x32\xd5\xc2\x2f\ \x6b\xbd\x71\xfb\xd1\x28\x9f\x95\xe5\xab\x58\xbf\xbc\xbf\x10\x9b\ \xaf\x02\x9f\x5f\x60\xa7\x3c\x46\xa1\x94\x60\x73\xc5\x98\xb6\x13\ \x30\x58\x2d\xfc\x15\x4e\x2f\xe4\x74\xe3\xe5\x6b\x4e\xa7\x8b\xc9\ \x55\x56\xd1\x3a\xcc\xdf\x90\x3f\x76\xfd\xb9\xc5\x33\x1e\xdf\x1f\ \xe4\x27\xcf\xf1\xc5\xb4\x3c\x13\xaf\x51\x2a\x06\x48\xa8\xaa\x48\ \xa8\x2c\x40\x01\x77\x01\x0b\x1e\x4a\xcc\xcf\x6c\xb7\xc3\xe0\xe0\ \xc2\x18\x10\x97\xb6\x8e\x46\xf1\xe9\x3e\x34\x58\x80\x75\x34\xb8\ \xc8\x1c\x54\x2e\xaf\xcd\xf7\x05\x47\xe1\xf1\x7e\x79\xb3\x1f\xfe\ \x7a\xb7\x96\x75\x79\x7b\x2f\xfb\x71\xfc\xf5\xee\x38\x0e\xf8\x4f\ \xcb\xa4\x58\x7f\x5a\x0e\x3f\xc5\xfe\x9e\x97\x8f\x2e\x1f\x02\xac\ \xa2\x15\xb2\xf6\xb9\x90\x0a\x02\x5e\x76\x28\x83\x6b\x0d\xce\x92\ \x41\xb6\x83\x63\xac\x6b\xec\x20\x15\x85\x28\xb3\xcf\xbb\xeb\x0b\ \x79\xb1\x2f\x81\xd3\x87\x43\xa9\xc3\x34\x8c\xea\xb6\x33\xd4\xaa\ \xbb\x45\xca\x31\xae\x6f\xfd\xcd\x8d\xbf\x3c\xf8\x69\x3f\x2c\x1d\ \x2a\xd7\x56\x86\xd1\x3b\x6d\xe9\x8e\x7f\x41\xc3\x68\xd0\xc9\x0c\ \x53\xcc\x29\xa6\x9f\x27\x80\xe9\xf5\x8a\xde\xc6\x50\x3c\x42\x4a\ \x9f\x65\x21\x1a\x22\x55\x35\x85\x28\xb9\x3c\x25\x25\x14\x30\x0d\ \x61\xca\x8c\xe5\x29\x06\xa3\x07\x07\x9c\xe3\x6c\x91\x54\xe6\x26\ \xe6\x8b\xea\x6c\xe2\xaf\xc6\x83\x6a\x90\x02\xcd\x5c\x2e\x10\x74\ \x6d\x1c\x8f\x36\xe0\x69\xba\x3a\xe9\x2b\x3c\x12\x99\xfc\xd7\x12\ \xb6\x29\xa0\xd3\x05\x62\x3a\x40\x24\x1f\x95\x4c\x37\x10\x4a\x40\ \x85\x34\x13\xaf\xf4\xef\x4f\xf1\xa7\x87\x37\xff\xe2\xd5\xe9\x7f\ \xf9\x57\xf3\x3f\x7c\x98\xff\xf9\x58\x1e\x63\x14\x91\x90\xd1\xca\ \xca\x78\xff\xdd\xfd\x5c\xe7\xe1\xcd\xe5\xf3\x1f\x5f\xf1\x76\x3a\ \x3d\x9c\x78\xbb\xcc\x0f\x8b\x5e\x94\xbb\xf7\x87\xfd\x77\x76\x75\ \xbb\xd6\xd1\x1f\x9e\x47\x3d\x62\x12\xd9\x55\x75\xe2\x38\x71\xbd\ \x8e\xc3\x6e\xbd\x40\x2d\xc2\xfb\xbd\xdc\x5f\x61\x79\xbb\x9c\xbe\ \x5e\xf5\x2e\x86\x6b\x89\x5f\xec\x4f\x03\xfc\x4f\x47\xbd\x5f\xa6\ \xe7\x93\xfe\x74\x17\x2a\xb2\x8a\x52\x23\xe2\xf6\xfd\xe9\x10\xf3\ \xbd\x55\x7e\x3a\xc6\x9b\xeb\xf1\xd5\x80\x9b\xc7\xe5\x88\x18\x2e\ \xf8\xa9\xe8\xb7\x71\x79\xac\xfe\x62\x58\x5f\xdb\x72\xef\xd3\x12\ \x17\x50\x0d\x17\x0a\xd5\xda\x40\x87\x22\x94\x28\x38\xed\xe5\xb4\ \x83\x7c\xe4\xf8\x38\xa2\xee\x88\x55\xaa\x17\x1a\x0f\xbe\xdc\x47\ \x09\xe3\x40\xee\x4b\xfd\xf9\xfe\xf1\xb5\x2c\xf7\x4b\x79\xbf\x58\ \x2d\x62\x56\x04\x55\x59\xa7\xa2\x3b\xf5\xe3\x1c\x37\x6e\xab\xe2\ \xba\xf0\xca\x6a\xa5\xde\x56\x39\xae\x98\xe0\x2f\x27\xec\x6c\x75\ \xc3\x69\x6d\x72\xaa\x95\x72\x57\xe5\x6e\xa6\xa9\x7f\xb2\xab\x2f\ \x6c\x7d\x65\xfa\x91\xfa\xc5\xb3\xdb\xe7\x7c\xfc\xf2\xa6\xfc\xe1\ \xfd\xf2\xf2\x72\xfc\x97\x3f\x2a\x7f\x31\xd8\x57\xb4\xc3\x7c\x84\ \x3c\x0e\xea\xef\xfd\xf1\xdf\xdf\x8c\x37\x18\x96\x62\xf3\x14\x51\ \xbc\x75\xa7\x54\x7a\x55\x89\x98\x7c\x45\x13\x62\xa5\x46\x82\x22\ \x81\x19\x51\x95\x41\x5f\x5e\xef\xf0\xaf\x9f\x4f\x9f\x5d\xce\x5f\ \xdd\xe8\x97\xf7\x36\x1b\x58\xc6\x83\x94\xcb\xcb\xe1\xcd\xcb\x59\ \x75\xe7\x7a\xb9\x5a\x5d\xec\xf9\x49\x07\x95\x53\x28\xa3\x0f\xd6\ \xbb\xab\xa4\x5d\x23\x40\x6a\x81\x08\x6f\xcd\xbf\x4a\xbf\x52\xa2\ \xd7\x34\xe9\xa9\xc9\xda\x26\xa3\xa9\x73\x26\xcd\xf0\x08\x78\x7e\ \x83\x50\x3c\xc9\x2f\x64\x90\x39\x31\x69\x1b\xc0\xce\xff\xce\x7d\ \x68\xaa\x6b\x02\x5e\x12\x07\x95\x76\x4e\x55\x65\xb4\x99\x9b\xc2\ \x54\xa1\x10\x46\xb8\x3b\x20\x62\x7d\x6e\x4b\x44\x50\x34\xbf\xab\ \xcc\xab\x12\xd1\x20\xa4\x06\x4a\xd6\x76\x54\xc2\xa3\xb1\xdf\xc1\ \x8d\x44\x99\xd0\x3d\x6a\x1f\x65\x34\xeb\x1c\xa4\x25\x2e\xaa\x10\ \xf4\xba\x9c\x4a\x29\xfe\x7d\x7d\xfc\x5f\xff\xc9\x1f\x2b\x7f\xfd\ \x72\xfa\x77\x3f\xb6\x3f\x1d\xea\x6f\xde\xc5\x37\x71\x79\x9a\xe2\ \xdd\xe9\xe6\x37\xc7\x6a\xa7\x7d\xe1\x0c\x59\xae\xf7\x18\x47\xf5\ \x69\xfd\xe6\x28\x9f\x4f\x2f\x3e\x9d\x1e\xfe\xf9\x01\xff\x84\x58\ \x06\xfe\xa8\xb1\xf3\xc2\x46\x88\x59\x5d\x17\x87\x13\x1a\x32\x86\ \x4d\x5e\x96\x8a\xe5\x83\xdb\x3f\x1c\xc6\xef\x16\x16\xe5\x2f\x2f\ \x78\x21\xf6\xe7\xe5\xea\xcb\x65\x38\x70\x7d\x31\xaf\xcf\x4c\xae\ \x86\x69\x2d\xbb\x95\xb5\xce\x0f\x53\xd5\xc9\x9e\x97\xcb\x39\x6c\ \x06\x62\xd2\x0b\xba\xbf\x5b\xf4\xb3\xa1\x3e\x9f\xd6\xcf\x76\xa7\ \x3f\xdf\xe2\xd5\xa5\x8b\xc8\x07\x9f\x0e\x04\x59\x11\x03\x55\x09\ \x87\x06\x51\xda\x88\x40\x25\x6d\x37\xc1\xc1\x8b\xb9\x56\x35\x2d\ \x96\x1b\xce\x30\x56\x22\x2a\x76\x17\xbb\xb8\x92\x79\x89\xf2\xf1\ \x34\xde\xc7\x60\x3b\xa8\x68\x54\x1b\xc3\x61\x47\x85\x92\x51\x7d\ \x95\x58\xc6\x21\x8a\xd4\x93\xa3\xd6\xc9\xdd\x4e\xb4\x53\x89\x9d\ \x55\x03\x07\x11\x43\x15\xca\x2a\xc3\x41\x86\x83\xb8\xc6\xb4\x27\ \x76\xc0\xa4\xcb\xd5\x20\xcf\x8a\x23\xae\x9f\xef\xaf\x7f\xf1\xa6\ \x0e\x05\xb0\x91\xb1\x72\x59\x58\x2b\xc7\x61\x2e\xf1\x87\xd3\xd5\ \x77\xfb\x8b\x75\x0a\x47\x54\x24\x53\x49\xe9\x03\x43\xc3\x21\x56\ \x47\x73\x61\x00\x62\x92\x41\x5e\xc5\x31\xb1\x1c\xf5\xf1\x38\xcd\ \xfc\x74\xdc\xfd\xed\xa7\xeb\xe7\x97\x77\x7f\xb8\xd5\xff\xf3\xcf\ \x17\x6f\xeb\x09\x76\xe5\xe2\xff\xf1\xee\xd9\xdf\xbe\xd8\xff\xe5\ \xcf\xbe\xf9\xfd\xf7\xf2\xcf\xb7\xb8\xf1\xa8\x76\xfa\xc3\x01\xbb\ \x95\x27\x66\xa5\x04\x7a\x1f\x2e\x27\x0d\x23\xb2\xc2\xdf\xea\xae\ \x9e\x12\x10\xa4\x37\x2a\x3a\x22\xb2\xd5\xc9\x05\x7d\x83\x12\x34\ \x6b\x8a\x74\x56\x79\xba\xdf\x5a\x12\x43\xa6\xe1\xd6\x5a\x6b\x55\ \x55\xaa\xa4\x80\x2b\x27\x69\x79\xd2\x29\x54\xc5\x00\x2f\xff\x95\ \xfa\x28\xba\xc0\x2d\xe5\x65\x66\x06\x41\x8d\xf0\xb3\x78\xae\xa7\ \x57\x07\x25\x77\x81\xf9\x8f\xc2\x72\xe6\xeb\x29\x1b\x49\x7d\x19\ \x5b\xeb\x14\xa9\x36\x4b\x5e\x2a\x48\x65\x30\x3c\xd6\x62\x83\x76\ \x32\x74\x02\x6f\x29\x0c\x48\x1d\x18\x12\x63\x1d\xfc\xf7\xb7\xc7\ \x87\x43\xf9\xfa\x75\xf9\x97\x9f\x0c\x3f\x7f\x15\xff\xe3\x4f\xd6\ \xff\xe7\xed\xfa\xbb\x83\x5f\x0d\xfc\xcb\xab\xcb\x97\xcf\x27\x91\ \xf5\x52\xee\x26\x29\x88\x2b\x50\x64\xa8\xa5\x98\x60\xe7\xc3\xd5\ \x89\x25\xec\x20\x52\x21\x4e\x3a\x62\x95\xa8\xe2\x75\x28\x83\x40\ \x82\x0e\x9c\x0a\x60\x18\xef\xeb\x74\x83\xfd\xba\x3b\x8d\x71\xdc\ \x8b\x28\xec\xa1\x0e\x07\x1b\x6b\xc1\x69\xe6\xec\xcb\x55\x31\x59\ \x44\x7d\x7d\x2d\xcb\xaf\x2e\xcb\x38\x70\x45\xdd\x73\x29\x92\xf5\ \xc3\x74\xef\xf8\x2e\xd6\x5f\xe1\xf4\x66\x94\xd8\x0f\xcf\x47\x3c\ \xf8\xc5\xbb\xf5\x62\x56\x27\x4f\x46\x8a\x0f\x1c\x00\x95\x86\x41\ \x12\x0b\x8c\x47\x8c\x8b\x2c\x3b\x9d\x2f\xd6\xe9\xb6\x16\xca\x2c\ \xe2\x1a\xeb\x4e\xe6\x67\xb6\x18\x74\xa6\x45\x59\x45\xe8\x31\x9e\ \xea\xfe\x24\xe3\x2e\xbd\x4a\x01\xc0\x7a\x91\xc4\x24\x13\xb5\x93\ \xa9\xc7\x56\xb6\x44\x8d\xa6\x5c\x6d\xfa\xf4\xa0\x39\x06\x0a\xc8\ \x35\xe8\x19\x06\x2a\x0c\x41\x15\xb5\x3a\xc9\x61\x18\xaa\xd5\x9b\ \x58\xee\xaa\x1c\x0c\x84\xae\x3a\xae\xb2\x56\x5b\x29\x35\x87\x4e\ \xda\x32\x90\x89\x92\xb3\xd1\x2a\x01\x5f\xb5\x22\x88\x95\x1c\x58\ \x47\x0f\x84\x38\x57\xd7\x05\x6f\xca\xe5\x7f\xfb\x29\x5e\x8d\xb7\ \xff\xef\xf7\xf1\x1f\xdf\x4f\x6f\x9d\x72\x59\x44\xc6\x8a\xc7\xbf\ \xfb\xb0\x7e\x7f\x07\x8b\xf2\x70\x38\xfd\xf1\x5e\x3d\x76\xeb\x70\ \xf3\x9b\xef\x85\x32\xd6\x10\xef\xc8\x19\x61\xd7\x98\x45\xdf\xc3\ \x78\xc3\x09\xfc\xff\xf6\x8d\x64\xb8\x44\xa7\x3f\x7b\x34\x90\x0c\ \xba\x3e\x2c\x27\x58\x6c\x56\xc7\x6c\xb3\xdb\x1e\xd3\x6a\xce\xc7\ \x44\x52\x1f\x08\xd0\x73\x94\xd0\x4c\xd9\x4d\x15\x50\xba\xf9\xe6\ \xbc\x23\x56\x51\xb4\xe5\x8e\x87\x94\xbc\xdc\x55\x44\xd5\xa2\x5d\ \x0a\x09\x6a\x4d\x52\x7b\x23\x88\xa4\x11\x4d\x44\x22\xd7\x96\x6a\ \xaa\x8d\x60\x92\xe8\xaa\x94\x79\x65\x2a\x6e\x44\xa5\x98\xa9\x74\ \x51\x67\x78\x62\x0c\x73\xd4\xa4\xac\x2a\x25\x42\xeb\xea\x45\xe4\ \x2e\xf0\x1f\x3e\x3c\xfc\xe9\xf8\xf0\x3f\x73\xf8\xdb\xcf\xca\xeb\ \xf1\xf4\xcd\xc3\xc5\xdf\xbc\xb6\x5f\xec\x8f\xdf\xdf\x1f\xbf\xbb\ \x3d\xbc\x9c\xca\xf5\x2b\xa7\x54\x40\x95\x04\x6b\xa0\x92\x88\xd5\ \x00\xd5\xa1\x9a\x50\xaa\xc7\xe3\x8a\x58\xaf\xa6\xd3\xa5\xba\x41\ \xdd\x95\xa8\x85\x8b\x01\x64\x71\x91\x30\x17\x4f\x50\x2d\x07\x99\ \x4b\xac\xac\xbe\x93\x3a\x99\x1b\x56\xd4\x87\xb1\x0e\xbf\x78\xee\ \xaf\x4d\xbe\x3e\xf1\xbb\x63\xbc\x28\xba\xbf\x76\x67\x55\x1b\x17\ \xd3\xb7\xae\x3f\xc5\xfa\xc2\xb0\xbb\x72\xd3\xdd\xd7\xf3\xfe\x26\ \x46\x97\xc3\x85\xd6\x0b\xe5\xa9\xca\xa1\x2a\x4d\x20\xd6\x22\xa3\ \x59\x8f\xc1\x07\x1f\xaf\x8b\xfe\xd8\x4f\x37\x87\xe9\xe4\x4e\xa9\ \x13\xf0\x66\x94\xd7\x2a\x07\x9f\x3e\x56\x5d\x88\x05\xf2\x42\xeb\ \xc5\xb0\x3e\xae\xc0\x0c\xd1\x30\x80\x18\x57\x70\xc5\x0a\x5b\x51\ \xcb\xca\x69\xa6\x3b\x68\x56\x10\xa4\x2f\x26\x6b\x51\x57\x68\x40\ \x57\x66\xfc\xa4\x0b\x6b\xf1\xc5\x7c\x1d\x78\xdc\x63\x31\x4c\xd5\ \xcb\x69\x5d\x1f\x17\x5c\x8c\xc7\x3b\x2f\x7f\x7f\xd0\x3b\xcc\x5a\ \xa0\x76\x71\x34\x4c\x2e\xe4\x14\x22\xf4\xc0\xe2\x12\xd6\xa2\xd8\ \x73\x6d\x15\x55\x58\x0b\x3c\x6a\xf8\x69\x5d\x4d\x57\x50\xf4\x9e\ \x6e\xb2\xc0\x22\x6c\xc0\x27\xbb\xe9\x6f\x5f\x9e\x7e\x3c\xbc\xfb\ \xcd\xd7\xf5\x3f\xbc\x7b\x71\x53\x56\xdb\xb9\xe8\x9e\xea\xeb\xd1\ \x82\xe5\xbb\xf5\x84\xd8\x09\xe9\x51\xc1\x80\x99\x57\xad\x14\xeb\ \x7d\x09\x9a\xa7\xb1\x3b\x3a\x9d\x69\xa0\x94\xe6\xa5\xcf\xab\x23\ \x52\x3d\x90\xc8\x93\xc8\x0a\x8d\x9e\x7a\x4b\x69\x91\x8b\x7d\x79\ \x5a\x69\xf9\x09\xdb\x66\x3c\x5a\x42\xa7\xb8\xd7\xa6\x8e\xdf\x94\ \x30\xe8\xd2\xd1\x0d\x0b\x10\x51\x44\xb5\x97\x79\xdd\x20\xab\x1b\ \x15\xe7\xa9\xad\xf9\x7c\x60\xb5\xa7\x3b\xe1\x93\xd2\x1b\xb7\xfc\ \xce\xa4\x8b\x3a\xc1\xc8\x87\x19\x9a\x51\xbd\x29\x42\x15\xb8\x8a\ \x45\xbe\x35\x05\xd1\x40\xff\xa9\x40\x68\x22\x6a\x06\xc4\xc5\x04\ \xf5\x99\xdc\x5f\x8f\xf3\x1c\x97\x8b\xf8\x7d\xe0\x31\x76\x2b\xe0\ \x75\xb9\xc4\xee\x17\x97\x1f\x74\xb9\xfb\xe6\xdb\xdd\xc7\x43\x79\ \xf1\x23\x14\x9d\xcd\x07\xcc\x13\x62\xc7\x58\x02\xcb\x24\x8f\x97\ \xbe\xac\x5c\x80\x89\xf0\x81\x0f\xd7\xcb\xf5\xc5\x30\xfc\xf2\xe2\ \xe6\xb9\xad\xab\x4f\x26\xa0\x83\x2e\x8e\x70\x4d\x15\x66\x99\xe5\ \xe2\x41\x7c\x45\xfd\x74\x78\x38\x06\x16\xd5\xcf\x06\x7f\x6d\x1e\ \x51\x05\x73\xe1\xb0\x37\x08\xaa\x73\x37\x0e\xe3\xd5\x78\x1c\xc5\ \x27\x8b\x69\xc0\x9d\xf0\xce\xf9\x6e\xb5\x2f\x86\x75\x67\xc3\x77\ \xa1\x6f\xc3\x16\x84\x61\x78\x65\xf6\x63\xab\x37\x5a\xff\x38\x8f\ \x73\x2a\xaa\x11\x2a\xa0\xca\xed\x32\x7e\x39\x0f\xbf\xda\xc7\xaf\ \xc6\xbb\x89\xf2\x61\xbe\x40\xc8\xb3\x41\x3f\x1f\x27\x88\x7c\x39\ \xef\xde\x51\x84\xf2\xf5\xf2\xfc\x6a\x3a\xbd\xba\x78\xdc\x55\xb8\ \x4c\xa2\xb6\xc2\x4e\xae\x0b\x35\x10\xfb\x61\x7e\x2e\xe5\xce\xf5\ \xe4\xf6\x18\xb1\xd7\xf5\xf9\xb0\xec\x65\x1d\x24\xf6\xa6\x15\x76\ \x8c\x61\x06\x33\x6f\xa3\x48\x7d\x36\x9c\x46\x59\x0b\xb8\xb3\xe1\ \x80\x72\xe7\xc3\x51\xfc\x0f\xc7\xeb\x71\x94\x37\x53\x71\xa9\x1f\ \x7c\x9a\xca\x65\x94\xf9\x1f\x0e\x8f\xeb\x32\xc8\x6e\x6f\x40\xd4\ \x52\xbd\x84\x26\xa2\xa5\x29\x56\x12\x17\x48\x1f\x7e\x5c\xe4\x2f\ \x9f\x1f\x3e\xd3\xf9\xb9\xc6\x3a\x96\xff\xfe\xf5\xf0\xd9\x8c\x5f\ \xd9\x00\x00\x20\x00\x49\x44\x41\x54\xa1\xde\xfe\xfd\xdb\x78\x38\ \x5c\xbe\x79\xb5\x7e\x71\xf9\x61\xac\xf6\x93\xcb\x57\x17\xe3\x58\ \x07\x93\xe9\xf1\x4f\x87\xc3\xdf\x7f\x5b\x7c\xc6\x8c\x3d\xf7\x83\ \x6b\x4d\x7f\x64\xd6\x2d\x14\x01\xb4\xc6\xaa\x11\x3d\x23\xa0\xc5\ \x14\xb0\x99\xd2\x02\x19\x4a\xcc\xf3\x02\xb4\xdf\x08\xdb\xbd\x74\ \xde\xfe\x0a\x02\x1b\x79\x80\xb9\x91\x0f\x6d\x2a\x69\x69\x14\x1b\ \x35\x2d\x1e\x9e\x59\x3d\x4f\x12\x9a\xa5\x7f\xda\x1e\x62\xd0\x60\ \xb6\x1d\xde\x96\x8e\x81\x08\x7a\xad\xe8\xe1\x2e\x59\x28\x76\x49\ \x0f\x90\xa4\xf9\x36\x2c\xf3\xe4\xef\x69\xa6\x2f\x42\xd9\xb5\x73\ \x1e\x1e\x44\xc1\x00\x61\x57\x3a\x65\xbd\xd0\x40\x6d\x79\x84\x54\ \xba\x09\x4c\x34\x29\x05\x12\x19\x21\x01\x03\x17\xc1\xcb\x7f\xf5\ \x17\x9f\xfd\x0f\x9f\xdf\x7e\x38\xc4\xc7\xb5\xbc\x98\xf4\x5f\x3c\ \xaf\x1f\xe2\xf4\xed\x03\x96\xca\x87\xf5\xea\xf5\x30\x7e\xfe\xe3\ \xcb\x1f\x93\xaf\x2e\x1f\x61\x57\x9f\x5e\x5d\x7e\x7a\xf4\x6f\x1f\ \x86\xbb\x3a\xcc\xd8\x7f\xfe\xe2\xea\xd9\xe5\xe1\x9f\x1e\x79\xac\ \xbb\x0f\x1c\x3f\x9b\xfc\x6f\x3e\x29\x6e\x21\x7a\x3d\xb3\x54\x5d\ \xd7\xe2\x35\x6c\xc5\xb3\x15\xb3\x1b\x69\xa0\x4e\xc7\x89\x5f\xab\ \x3d\xe7\xee\x8d\xf1\x97\x17\xa8\xb2\x2a\x86\x05\xc3\x2c\xac\x45\ \x96\xb5\x7e\x77\xba\xdc\xef\xf5\xcd\x85\x3e\x87\x9b\xd4\x23\xf7\ \xbb\x72\xf9\xe2\xa2\xdc\xd4\x79\x9e\xe3\xed\xdd\xc5\x4f\x5f\x1c\ \x06\x1d\xde\xb9\xdd\x3a\x21\x33\x7c\x9d\xdc\x5f\x15\x8a\xc4\x77\ \x51\x4e\x14\xa6\xa1\x0e\x14\x99\x4e\x36\xfd\x6e\x9d\xe7\x53\xfd\ \x62\xda\xfd\x62\x27\x3f\x9d\x2e\x6a\xf8\x68\x73\xa5\xff\xe7\xc3\ \xf8\xd5\x3c\x3e\x4c\x31\x0c\xbb\xdf\xad\x54\x8d\x9f\x0e\xcb\xb5\ \x91\x08\x87\x3e\x04\xbd\xd6\xd3\x1a\x47\xd5\x9d\xe2\x6a\xb4\x25\ \xe4\x76\x96\x9b\x45\x38\xd6\x51\x65\x1c\x8b\x20\x56\xc6\x63\x2d\ \x07\x2f\x2e\xe1\x62\x33\xac\x08\xc5\xfc\xc2\x04\x98\x1e\x51\xde\ \xfa\xee\xd6\x86\x7a\x3d\xff\xf3\x22\x8f\x07\xfd\xd9\x85\xfd\x68\ \x2a\x9f\x85\x85\xec\xbf\x8f\x13\x16\x84\xed\x6e\x6c\x92\xf0\x87\ \x92\xb2\x22\x47\x03\xa2\xa5\xa6\xa8\x38\xc3\x43\x27\x1b\xff\xe2\ \x6a\xba\x66\xbd\xad\x13\x71\xfd\xd9\xf5\x45\x59\xef\xbf\xfc\x16\ \x5e\x6d\x09\x7d\xef\x17\xfb\x98\x76\x97\xf6\x19\x5c\x64\x17\xb6\ \xff\x38\x1f\x7c\x25\x18\x8a\xd9\x3d\x63\x64\x72\xbc\xd5\xcc\x7c\ \xe2\x4a\xc0\x83\x09\x9d\x95\xee\xab\xe9\x97\x4f\xb0\x06\x1b\xa4\ \x6c\x33\x6f\xb6\x06\x27\x57\xa2\x72\xe6\x08\xb4\x72\x95\x67\x34\ \xac\x02\x9e\x4e\xe9\x68\xb6\x50\x51\x51\xb5\xd3\x32\xe7\x71\x60\ \xda\x98\x72\x4c\x0d\x21\x51\xc3\x07\x0c\x22\x92\x72\xce\x08\x22\ \x55\x03\x3d\x30\x50\xfb\x18\x21\x48\x8f\x0c\xd6\x3d\xc3\xaa\x1b\ \xac\x34\xa7\x01\xcd\x8e\xdc\x74\x18\x1b\xa5\xa7\x99\xea\x98\x80\ \xa8\xae\x6a\xdb\x42\x16\xd2\x28\xa7\x6a\xdb\xd5\x15\x2a\x4a\x0d\ \x86\x42\x42\xd2\x8c\x2d\x37\x87\x99\xd5\xc7\x9f\x5c\xc9\xcf\x24\ \x84\x8f\xef\xef\x96\x7f\xbe\x9b\xfe\x74\x1a\x69\xeb\xff\xfd\xee\ \xf2\x57\x9f\x5c\x5f\x5c\x61\x5d\x1f\x7e\x7b\x3f\x5e\x94\xeb\x67\ \x17\x32\x5e\x1c\xe3\x34\x7c\x75\xcf\x75\xb4\x4f\xa6\x93\x0d\x12\ \x76\xf5\xb1\xf2\xb7\x0f\x38\xed\xf9\x4c\x0f\xc7\x45\xbe\x9b\x9f\ \x99\x0d\xb6\x3b\x7d\x1c\x86\xaa\xb8\x53\xff\x6a\x91\x07\x19\x4e\ \xaa\x55\x44\x47\xbd\x8d\xf8\xbb\x93\x7d\x88\x72\x29\x5c\x45\x1e\ \x7c\x44\xb1\xb0\xe5\x66\xb4\x45\xe4\x9f\xd6\xe1\x64\xf5\xb2\x60\ \xd6\xf2\x70\xbc\x36\x97\x67\xa5\x3e\x68\x59\x45\xa0\xc3\xa2\xe3\ \x8c\x58\x7c\xfa\x6e\x99\x66\xa5\x70\x96\xfa\xb0\xac\x1a\x63\xe2\ \x2d\xa2\xaf\xb4\x52\x27\x29\x32\xe0\xa8\xe5\xab\x2a\x6f\x67\xbe\ \x28\xbe\x97\x1a\xbe\x2e\x15\xf7\x76\xf1\x41\xc7\x65\x52\x8c\x2b\ \xe5\xf2\xa6\x1e\x7f\xb7\x62\x96\xdd\xa5\x5a\x91\x2a\x21\x35\x74\ \x05\xdd\x8d\xb3\x16\xa3\xaa\x1c\x39\xce\xe2\xe4\x1c\xd5\x92\x52\ \x9d\x63\xcf\x95\xea\xaa\x14\x5f\x43\x6f\xd6\xa2\xa2\xab\x8a\x8a\ \x52\xf4\xc0\xe9\x56\xa6\x79\x8f\xca\x8b\x07\x3b\xdd\x39\xbf\x5e\ \xeb\x54\xad\x9c\xec\x88\xe5\x8e\xe5\x80\x4b\xdf\x0d\xff\x97\xaf\ \x32\xdb\x91\x96\xdc\x25\xd1\x68\x92\xc8\x9c\x34\x15\xaa\xce\x7f\ \x9c\x4f\x37\xef\x28\x36\xb2\x86\xc8\x21\x18\xeb\xbc\x7b\x98\xbc\ \x3e\xaf\xff\x80\xf9\xeb\x6f\x80\x75\xc6\x7a\xb2\xb5\xaa\xdc\x9f\ \xe4\xf2\x8e\xcf\x1e\xa7\x1a\xa8\x92\x57\x4a\x0b\xce\x21\xe8\x60\ \x64\x80\x72\xb6\x25\x2d\xb1\x3c\xbc\xa5\x77\xb2\x2d\x6a\x1a\xf0\ \x2c\xdf\x74\x4e\x78\x8a\x90\x43\x5a\xb8\x7a\xc2\x3c\x3a\x24\x8d\ \x41\xe7\x46\x8f\x49\xed\x29\x94\x51\xa5\x8f\xde\x20\x62\xaa\xeb\ \x69\x65\x10\x90\x62\xd6\x22\xea\x99\x06\x18\x4d\x82\xa7\x89\xad\ \x5c\x0b\xda\x14\xae\x47\x35\x6d\x3a\xea\xe6\x64\xa0\xb7\x1e\x49\ \xcd\x34\x2d\x65\x9b\xe1\x21\x44\x6a\x24\x07\x9c\x4a\x47\xdb\x01\ \x99\x24\xdb\x44\x08\x54\xb6\x47\x5e\x29\x25\x1f\x79\x17\x0a\x4d\ \x41\x4a\x15\x51\x12\x95\x2c\x8d\xfa\x99\xfb\x73\x4d\x2d\xc1\xe1\ \x77\x6f\x1f\xbf\xbb\xd7\x71\xb0\x69\xd0\x61\x50\xea\xe4\xc3\xde\ \x76\x45\x8a\xff\x71\xad\x6f\xdf\xa1\x18\x9c\xa5\x56\x19\x6c\x29\ \xb3\x56\x4e\xcb\x95\x9e\xc0\x9b\x43\xec\xc2\x11\xe3\x8c\xb2\x8e\ \xf1\x67\xf2\xc3\x8c\x51\xcc\x63\xf2\x62\xd0\x80\x4f\x31\x5a\x20\ \x3e\x84\xdf\x52\x29\xc6\x41\x20\x0c\x19\x17\xe5\x07\xe1\x0d\xdd\ \x02\x90\x31\xe1\x9f\xe0\x1e\x05\x10\x99\x0b\x0f\x22\x25\x14\x28\ \xd5\x28\x9c\x47\x6a\x84\xcd\xd4\x09\x97\x9f\x3d\x9b\xd5\xf8\xfd\ \x8c\xbb\x65\x57\xa7\x45\x6c\x29\xb8\x42\x79\xf6\x51\x1e\xbf\x67\ \x2c\xea\x4a\x65\xb5\x90\x94\xdc\x44\x08\x69\xe5\x24\x76\x92\x78\ \x2f\xb9\x10\x9b\x18\x1a\x18\x38\xa6\xf9\x03\x8c\x28\x6a\x27\xbb\ \x78\x27\x71\x14\xee\x38\x95\xac\x8d\x4d\x68\xfa\x98\x4c\x06\x92\ \xa8\x6a\xe6\x18\x0f\xad\x08\x4f\x30\x49\x3b\x91\x23\x34\xa4\x38\ \x0a\x88\x08\x0d\x95\x10\xad\x10\x68\x1d\x00\x73\xc3\x74\x75\xf0\ \xb8\x87\x93\xa0\xa1\x22\x2a\x8c\x22\x21\x71\xaa\x64\xa4\xb1\x28\ \xda\xe2\x84\xb2\xa9\x20\x05\x02\xd8\x49\x79\xe2\x44\x1f\x3a\xa5\ \x4f\xc2\x8c\x3b\xa5\x60\x0d\x39\xe4\x03\xa7\xa3\x94\xca\x55\x2a\ \xe1\x48\x55\xa4\x38\xd5\xd9\x63\xc6\x3a\x96\x17\x21\x1e\xd1\x07\ \x68\xb5\x71\xc9\x5b\x19\xe6\xf4\x0c\xa1\xe6\x19\x64\xc6\x20\x6a\ \x44\x64\xc6\x27\x41\xc9\x28\xc0\xd6\xde\x9c\xa3\x07\x52\xae\x26\ \xde\x6b\xb6\xb6\x7b\xa7\x38\x35\x54\x2d\x56\x97\x70\x01\x6b\x44\ \xe6\x2c\x22\xd2\xdb\x12\x0d\x7c\x23\xa0\xe7\x00\x5a\xe0\x09\xb4\ \x6e\x1d\x4a\x6b\x5d\x48\x26\x4f\x30\x1a\x2e\x58\x63\xeb\x6b\x32\ \x5d\x04\x78\x92\x3b\x95\x22\x5a\x93\x06\x0d\x80\x30\x5a\x5a\x75\ \x3a\x1b\xb3\xc1\x69\xf9\x64\x69\x49\xf3\x74\x9d\x0a\x11\xe1\xde\ \xa8\xf0\x16\x8c\xdc\x86\xee\x8e\x61\xa7\x45\x94\x32\x60\x98\x6c\ \xdc\xed\x86\xdd\x04\x5a\x20\x4a\xa8\x2c\xd1\xc2\x4d\xa4\xe4\x05\ \xc9\xe6\x28\x13\x75\x95\x53\x55\x91\xe4\xb9\x5a\xa0\xa4\x71\x4d\ \x47\xc9\xe0\xd2\xae\xae\x54\x5a\xa9\x89\xe1\x89\xd0\x2e\xb4\x60\ \x11\x19\x7b\x90\x70\x7e\x0d\x15\x4d\xc3\xdf\xc0\xca\x92\xae\x25\ \x29\x22\x83\x24\xf4\xb7\x2e\xe3\xe5\x60\x66\xcb\x2d\xf8\x0d\x75\ \x96\xd4\x93\x2a\xcd\xee\x6c\x7d\x74\x3c\x84\x2e\xea\x91\xac\xa3\ \xb4\x9a\x9a\x02\x2b\x82\x34\x0d\xb5\x8a\x91\xbd\xe8\x00\x22\xe1\ \x4c\x1a\xa4\xaf\xa1\xa0\x5a\x35\x75\x78\xd2\xb3\xd3\x8f\x28\x96\ \xf9\xb5\x69\xa5\xa8\x02\x21\xcd\x53\x65\xae\x72\xe6\x63\x32\x20\ \x4a\xd1\x4c\x58\x0e\xb1\x68\xb9\x71\x01\x86\x25\xe2\x41\xd4\xd5\ \x2a\x84\x96\x06\x9a\xf0\x66\x06\x6e\x58\xd2\xfe\xf6\x50\x9e\x17\ \x29\xf9\xbb\x43\x36\xb1\x62\x79\xa8\x46\xf8\x06\x51\x4f\xf7\xb1\ \x4a\x6a\x28\x75\x70\x6a\x58\x88\x3b\x3c\x24\xdb\x5a\x88\xf7\xb2\ \x8a\x74\x32\x6a\x12\x6f\x1b\x33\xb9\x09\xe7\xd9\x5b\x97\x3e\x46\ \xee\xbe\xb4\x86\x2a\xdc\x32\x37\x7a\xcb\xd5\xf5\xcb\x8d\x5f\xd5\ \xcc\xd2\xfd\x46\x82\xb3\xf5\x33\x80\x12\x35\xba\x5f\x3a\x82\x11\ \x55\x33\x4e\xb7\x05\x0c\x22\x23\x0f\x24\x86\x2c\xca\x44\xa4\xe4\ \x2d\x98\x86\xe8\xfc\xc7\x11\xee\x7d\xe0\xdc\x81\xbb\xde\x13\x02\ \x9a\x90\x6e\x83\x99\xe6\x75\xb1\x09\x7d\xcf\xc9\xa0\x5d\x3d\x9a\ \xc9\xcb\x79\xff\x1a\x42\xd5\xd0\xb3\xe0\x02\xd1\xb3\xb5\xb2\x72\ \xf5\x94\xb4\x06\x21\xa8\x40\x49\x2c\xac\xe5\x3c\x5b\xe1\x70\x63\ \x18\x3a\x2f\xa9\xe5\x60\xc1\x89\x4c\x60\xdd\xdc\x2d\x79\x0e\xf5\ \x80\xb8\x86\x09\x0d\xb8\x10\x16\xa9\x77\x7f\x22\x89\xc8\xe7\x1a\ \x12\xe1\x6d\xbe\x98\x12\xf9\xfc\x4b\x0a\x84\x1e\xd5\xa4\x10\x92\ \x66\x58\x74\x82\xa2\x42\xe0\x02\xd5\x6a\x8a\x05\xcb\xef\xeb\xcc\ \x3a\x9e\x5c\xaa\xad\x62\x84\x96\xa5\xc6\x8d\x1f\x83\x26\x5a\x60\ \x08\x0a\xd3\x1a\x96\x94\xad\xee\xfc\x4b\x8b\x2e\x9e\x58\x60\x1d\ \xb0\x9c\x0a\x49\x1a\x11\x25\x7d\x96\xb9\xd5\xe9\x6c\x0c\x36\x60\ \x9d\x74\x01\xfc\xa6\xde\x68\x9b\xbf\x7c\x4d\x36\x48\x72\x7a\xa9\ \xba\xdb\x96\xbd\x94\x46\x1a\x67\xd0\x80\x45\xa9\x93\xec\x8e\x8f\ \xbe\xfc\xc0\xf9\x0f\x52\x12\xd9\xe8\x3b\x59\x45\x35\x40\x64\x1b\ \x18\x47\xbf\x0d\x9a\x34\x3e\x95\x27\x69\x2e\xce\x2d\x7c\x6b\x43\ \x72\x3f\x7a\xf6\x3a\x37\xa9\xd7\x96\x2d\xe8\xcd\xc7\x9a\x4a\x68\ \x6f\x4f\x14\xb6\xed\x27\x23\x5d\xa3\x2d\x8e\xb6\x45\xce\x3e\x61\ \x32\xe7\x86\xb4\x49\xc5\x09\x61\xdb\xe7\xf4\x66\x3e\x5f\x71\x85\ \x08\x4c\xc5\xe1\x39\x4c\xcb\xf8\x4e\x51\x81\x3f\x01\x6a\x41\xd2\ \xb2\x56\x9a\xad\xc8\x44\x4d\x7b\x6b\x93\x19\x73\x5a\x0a\x96\xe8\ \xaf\x9b\x34\x88\x44\x30\xa4\x85\x69\x33\x81\x72\xe8\x0c\xdb\x2d\ \x04\xb7\xf9\x9b\xa4\x98\x6a\x8e\x10\xa3\x8d\x4c\x05\x0c\x4f\xcc\ \xa0\x14\x00\x41\x57\xb1\x54\x0d\x41\xa2\xe1\x67\x28\x11\x55\xa5\ \xc7\x94\xe5\x1b\x27\xda\xec\x5e\x5c\xa0\x82\xb2\x81\x25\xb7\xf7\ \x8a\x34\x3b\xac\x6c\x19\x8d\x0d\x52\xda\x8c\x6d\x8d\x69\x1f\x62\ \xd6\x70\x57\xdd\x87\x19\xe1\xed\xfe\xe8\x46\x0b\xd9\x92\xb1\x9a\ \x3a\x2f\x37\x79\x4a\x78\x0e\xe8\x5b\x78\x16\x29\x90\x08\x84\x0c\ \x5c\x3d\xbe\xf5\x2b\x13\xc0\xc0\xe2\x30\x40\x47\x57\xf1\xc8\x43\ \x07\x84\x6a\xe9\xde\xa3\xce\xb0\xcc\x05\xb4\x32\x33\x67\x3a\xa5\ \x92\xed\xb4\x7e\x42\xca\xec\xcd\x2d\x7f\xe0\x5d\xce\x7e\x75\x7b\ \x02\x98\x24\x67\x6c\xae\x93\x68\x4f\x55\x76\xa6\xbd\x30\xe8\x24\ \xbc\x96\x24\x7a\xf6\xb2\x05\x5a\x6a\x12\x36\x2b\xe5\xe6\x2d\xdc\ \xea\xb2\xe8\xda\xe2\x2d\x64\x26\x08\x7a\x7b\x77\xa6\xda\x32\x53\ \x62\xa9\xcd\xc1\xd3\xa3\x34\x9c\x67\xaa\x6c\x4f\xa3\x6d\xf1\xca\ \xf9\xf3\x65\x6d\x16\x5d\x84\xdf\xa3\x6c\x84\x6c\x31\x53\x1d\x13\ \x48\x06\x1a\x02\xb3\x7d\x98\xb4\x7d\x28\xbb\x85\xa0\xcd\xd9\xba\ \x37\xb5\xd5\x51\x4d\x36\xd9\xac\x12\xdb\x4b\xa7\xaa\xa5\x14\xc2\ \x6b\xad\x2d\xcd\x41\x05\x84\x87\xb3\xb5\x71\x1d\xd1\x29\x52\x44\ \xfa\x8d\x94\x70\xa7\xc4\xa9\xb4\xdf\x69\xe3\xe1\x46\xb4\x60\xc4\ \x86\x8f\xec\xf1\x74\x79\x8f\x45\xa4\x7f\xa8\xd3\xcf\xe0\x10\x25\ \x34\x61\xa4\xc9\x96\x91\x86\xf1\x6d\xc4\x3a\x08\x4d\x35\x20\x11\ \x91\xe1\x39\x2a\x08\x28\x1d\x26\x34\x33\x44\x8b\x36\xcd\x7b\x3b\ \xc2\x8d\x8d\xab\x1f\x0c\x84\x88\x0b\x9a\xa1\x2b\x2b\xf9\xde\x8b\ \x6d\x99\xba\xb2\x05\xae\x48\xe2\x5b\xd0\x41\xd7\x08\x6a\x86\x43\ \xb4\x99\x7a\x8f\x6f\x14\xa5\x27\xe0\xa3\xc1\xb4\xce\x99\xf1\x49\ \xce\xcc\xfb\xd5\xfa\x4f\xde\xb3\x90\x34\x4d\xbc\xd0\x81\x32\xba\ \x3a\x58\x95\x21\x50\x41\x46\x96\xb7\x61\x7e\x87\x2b\xf2\xfc\xea\ \x41\x45\x43\x23\x65\xe4\x1d\x4e\xdc\xfd\x51\xee\xf9\x75\x5b\xed\ \xdc\x56\x15\x82\x68\x75\xcf\xf9\xd2\x67\x0f\x18\x7b\xf2\x2a\x9f\ \xc3\xc4\x1a\xa3\x38\x8f\x9d\xae\xc2\xef\xff\x33\x6b\xaf\x5f\x56\ \xc6\x19\x4c\x21\x09\x6d\xe9\xe0\x62\x69\xef\x45\x79\x1a\xc6\x94\ \x77\x53\x07\x93\x45\x0b\xcb\x6d\xcf\x7a\x20\x2a\xf3\x52\x71\x3f\ \x8b\x29\x73\x0d\xd2\xa6\xc1\xee\xee\xfd\xf1\xcb\x22\x2d\x75\x5d\ \xde\xb7\x34\x49\x59\x4a\x2b\x2d\x5a\xaf\xd2\x98\x54\x41\x56\xdf\ \x22\x96\x25\x73\x2b\x9c\x99\x2b\xdf\x5d\x92\x1b\x18\x9a\x4d\x68\ \x43\x8a\x53\x80\x70\xf4\x04\x82\x1c\x5e\x45\xf2\x30\x55\x05\xc8\ \xef\xea\x9c\x6d\x00\xf4\x53\x22\x0f\x1b\xaa\x6a\x37\x42\x6d\xaf\ \x72\x43\xfd\x79\x84\xaf\x4e\x66\x0f\x99\xac\xb3\x46\x13\xed\x2a\ \x36\x49\xe5\xf2\x66\x35\x6f\xa6\x00\x82\xce\x48\x69\x42\x4f\x26\ \x4d\xd2\x58\x83\xa4\x66\x6a\x6c\x48\x68\x08\x04\x41\xcf\xa8\x97\ \x46\xcd\x97\x9e\x86\xdd\xa6\xdb\xa1\xcd\x9b\xdb\xf0\xea\x21\x22\ \x56\xd0\xd7\xbb\xed\x53\xb5\x05\x91\xe0\x09\xc3\x65\x2b\x4e\xc2\ \x43\xa5\x31\xe3\x3a\x2f\xaf\x55\x2b\x2a\xb2\x61\x67\xf3\xdf\x26\ \x88\xa7\x67\x6f\x49\x7b\x6d\x72\x04\xb6\x91\xe7\xb7\x70\xb8\xfc\ \x36\x9b\x48\xc6\x44\x6d\x75\xc2\x54\x18\x6d\x91\xdb\x1f\xd4\x96\ \x6b\xc3\x7e\xe6\x27\xaf\x2e\x41\x94\xd1\x8c\xbf\x0c\x6a\x63\x87\ \x63\x73\x50\x65\x14\x60\x6a\x74\xb9\xb1\x31\xa2\x67\x32\xb1\xf9\ \x4a\x55\x32\x93\xbb\x63\x8e\x5a\xa6\x30\x37\xc0\x50\x0f\x4a\xeb\ \xcc\xf6\x68\x56\xba\xcc\xbe\x46\x41\x98\x74\xe3\x75\xbe\xd1\x02\ \xbe\x71\x8b\xe3\x09\x40\x8f\xff\xd5\xc3\xb3\xad\xf1\x73\x28\x95\ \xef\x9f\x3e\xce\x48\x3a\xac\xe3\x0c\x42\x26\xb7\x3b\x81\x11\xcd\ \x4e\x19\x44\x7e\xbd\xe8\x4a\x19\x46\x42\x29\xda\xfd\xc3\x80\x77\ \xb5\x7f\x6b\xbc\x3b\x12\x86\xf9\x96\x6b\x1b\xcf\xa0\xd3\xa9\xfd\ \x41\x4d\x5f\x41\x3e\x36\x7d\xf5\x99\xfa\xcd\x96\x1b\xd3\x44\xd5\ \x11\x0c\x11\x78\xeb\xd2\xb7\x6d\x8b\x26\x46\x4a\x1a\xa7\x56\xce\ \x78\xc1\x56\x66\x09\x29\xf9\xb8\x37\x0f\x5d\x1b\xbb\x85\x48\x12\ \xd9\x5a\x1c\x02\x29\x0c\x69\x10\xf5\xad\xd8\xd9\xce\xc8\x8e\x54\ \x89\xa6\xe2\x49\x99\xaa\xb8\xb6\xe2\x41\x42\x84\xf4\x68\xa9\xdc\ \x09\xd0\x8d\xc8\x41\x5c\xba\x4f\x13\xd4\x90\x3b\xe0\x60\x84\x8b\ \x76\xb2\x4e\x04\x84\xd2\xc0\xb1\xcc\x07\x81\xed\x02\x02\x35\xc3\ \x5b\x29\x21\x9a\x01\x63\xd2\xfe\x23\xba\x05\x30\x9f\xd0\xf4\x77\ \x36\x92\xbb\xa3\xbb\x1b\xf3\x26\xdd\xce\x6c\xf6\x2b\x4b\x22\x42\ \xba\x5d\xb3\x99\x91\xcf\xdd\x15\x90\x39\xb0\x8a\x95\xf9\xe6\x8b\ \x12\x69\x13\x08\xdf\x06\xf7\xc2\xd2\x61\x0c\xda\xa6\xa0\xc8\x74\ \xf8\xed\x2b\xb2\x6b\x0f\x7b\x70\xea\x0f\x70\x2c\x82\xfe\x4b\xde\ \xee\x24\x6e\xf2\xa5\xec\x24\x99\x0d\xeb\x66\x5c\x6c\xed\x52\x87\ \x3b\xb7\xf4\x00\x6e\x1f\xd0\xde\x9d\xc9\x1c\x08\x4b\xc1\x61\x5f\ \x15\x06\x3b\x4a\xb9\xed\x1c\xa3\xa7\xff\x6d\x9e\x53\x9c\x99\xeb\ \xf9\x2c\x67\x36\x66\x0b\x34\xec\xb6\xfe\xbe\x52\xcc\x67\x84\xcc\ \x54\xe9\xfe\x53\x22\x97\x1c\xed\x0a\xea\x2b\x4b\xcf\x3b\xa7\xdf\ \x18\xdb\xe7\xc9\x39\x72\x53\x10\x31\x22\xc2\xa5\x53\x39\xa5\x8f\ \xf9\x1a\x1c\xe1\xfc\x6a\xf5\x4f\xdb\x3a\x2e\x49\x01\x7e\x96\x60\ \xf9\x7e\x46\x40\xa8\x6a\x39\xa9\xcb\xb2\xa5\x91\x6b\x21\xd1\xe0\ \x86\xe7\x38\xda\x92\x72\xfd\xc6\x40\xea\x04\x03\x67\xe4\x18\x3b\ \x19\x5c\x0c\xf6\x64\x5c\xe9\x47\x45\x33\x1a\xf4\x86\x91\x00\x14\ \x5d\xdd\x49\x0d\x11\x87\x90\xa1\x30\x74\x5f\x27\x3b\x8c\xa2\x51\ \x38\x01\x88\x65\x4f\xbf\xc1\x0b\xa2\x99\xf4\xab\x63\x40\xbb\xa9\ \x4c\x7b\x7b\xd7\x8e\xda\xf6\x7b\x94\xd6\x7c\x4a\x7e\xef\xe1\xc1\ \x73\xef\xdb\x7b\xd6\xf3\x9d\x13\x4d\xc8\xa7\x1d\xe6\xdb\xf2\xe9\ \x33\xaa\x34\xbf\x70\xb7\x9c\xf3\xdc\x29\xb4\x63\xa0\xb5\xe6\x2d\ \x93\x29\x1a\x02\xd8\x14\xe8\x47\x11\xb1\x48\xac\x48\xb8\x5a\xf3\ \x74\x44\x8f\x78\x94\x5c\xd7\x04\x52\xb5\xaa\xf2\x34\x58\x72\x8b\ \xc7\x93\x66\x98\xdf\xd6\xdb\x1e\xcd\xea\x9e\x7b\xf2\x6d\x7d\x27\ \x0d\xd8\x92\x13\xd9\xee\xd0\xd5\xde\x35\x34\xa2\x43\xbe\xd7\x9f\ \xb8\xdc\x37\x14\x85\x6c\xab\xf5\x86\xc3\x55\x88\x35\xa1\x6e\x0a\ \x53\x32\x28\x61\xeb\x60\x9e\x52\xee\x3b\x75\x9c\xdb\xc9\xec\xde\ \xa6\x29\x71\xce\xf1\x4b\x60\x1e\x5b\xa5\xdd\xbd\x99\x11\x79\x57\ \x24\x0b\x26\xaf\xc4\x88\x3c\xe5\xf3\xd4\x6f\x05\x95\xe7\x8a\xc6\ \x19\xe7\x1c\x8e\x4e\x0b\x90\xe8\x9d\x4c\xdb\xd2\x6c\xa5\x68\x74\ \x76\x83\xf4\x3b\x6a\x9b\x1f\x30\x87\x7a\x3d\x40\x41\x02\xde\xe1\ \xb2\xf9\x00\x88\x69\x4b\xb8\x31\xd5\x08\xc5\x13\xec\xf4\x86\x1c\ \x50\x31\x00\x45\xc4\xc8\xb5\xb7\xaa\x3c\x53\x3d\x40\x51\xcd\x09\ \x68\x44\x08\xec\x3c\xf6\xce\xdb\x48\x4d\x45\x73\x18\xdd\xa2\x75\ \x32\x42\x08\x70\x84\x42\x3d\x97\x4e\x19\x88\xd2\x3a\xdd\x1e\xc7\ \xde\x3c\x08\xae\xd4\xf6\x25\x9b\xbf\x5a\x3d\x3c\x05\x88\x83\x68\ \x18\xe4\xcc\x11\x6c\x54\x1d\x25\xc2\x3d\x87\x16\x11\x29\xe9\xd6\ \x46\x97\x0b\xcf\xd4\xea\xa7\xbf\xdd\xa7\x47\x63\x7b\x47\xb2\xfb\ \x93\x9e\xa0\x49\x1a\xa4\xb0\x05\x88\x65\x00\x99\x6c\x81\xd9\x69\ \x7c\x6e\x47\x6b\x6c\xf9\x22\x8c\xf6\x76\xb1\xd6\x6b\x06\x5a\x3c\ \x43\x6b\x42\x35\x6d\x7f\xa2\x10\x28\x3d\x1f\xc4\xd0\x4c\x59\xdf\ \xbe\x4f\x3e\x65\x1a\xe9\x19\x2f\x91\xd9\x04\xc9\x46\xe8\x4a\x92\ \x0e\x48\x7b\xf2\x18\xe0\x29\x4d\x02\x08\x89\xa7\x58\x96\xde\xb8\ \x6d\x6c\x20\xb4\xd6\x58\xce\x44\x10\xc9\x59\xa5\x88\x36\x7a\x7e\ \xdb\xc6\x36\x0f\x72\x04\x63\x63\x1d\xff\xb0\x36\xdb\x9e\x13\x6e\ \xd7\x72\x7b\x92\x3a\x0e\x33\x2d\x31\x6c\xbf\x1f\x6f\x31\x1d\x39\ \x1f\xf0\x7c\x36\x2a\xfb\x16\x3f\x43\xc8\x5b\xc9\x8a\x64\xd3\xf4\ \x4f\x82\x6e\xf0\x6c\x98\xcd\x48\x78\x4d\xab\x56\x10\x01\xba\xa4\ \xed\xbf\xb1\xa0\xb8\xa1\x69\xa4\x61\xa4\x91\xc8\xb1\xb4\xb2\xeb\ \xf9\x7a\x6f\xed\xab\xf4\x59\x62\x32\xd2\x54\xb6\x58\xf6\xac\x11\ \x3a\xd0\x0f\xa5\xc5\xda\xaa\x44\xb8\xf4\x80\x9c\x8d\xf0\x48\x4a\ \xda\xa3\x07\x35\xc1\x39\x5f\xfb\x0c\xab\xea\x67\xa8\xb6\xb2\x5d\ \x28\x21\xa1\x5b\x45\x5c\x18\xa2\x96\xb5\x0d\x5b\x0a\x18\x0b\x4b\ \x2e\x5c\x9c\x41\xc2\xa4\xd3\xad\x73\xa4\x0b\x09\x29\x6b\x54\x03\ \xc4\x4a\x4f\x9f\x6f\x47\x9b\x3c\x81\xfe\x42\x24\xef\x7c\xa4\x0d\ \x6c\xe3\x8d\xf4\x0e\xf8\x09\x7f\x3e\xa7\x1c\xd2\x63\xe7\xb8\xd5\ \xa9\xdb\x47\x9e\xfb\xa2\x7c\xfd\x64\xfb\x10\x6c\xd6\xbb\x2c\xaf\ \x72\x45\xc1\xa6\xcf\xb0\x6d\xaa\x60\xa0\xb5\x1b\x4f\x5d\x1a\xda\ \xcc\x04\x3d\xa5\x3c\xbf\xba\x44\x46\xe6\x40\x0c\xdb\xe0\xbe\xbd\ \x01\x7b\x41\xb9\xf1\x46\x99\x7c\x10\xfe\x20\x9e\x2d\x55\xcd\xed\ \xc7\xd8\xc6\x66\xcc\x5a\xb2\x7f\xcf\xdb\xf3\x98\x65\x5b\x23\xc0\ \x6a\x7b\x49\xa2\x73\x10\x25\xd9\x8a\xc9\xc5\xb2\x16\x2e\x99\x08\ \xcf\x9a\x83\x88\xfc\x34\xb5\x49\xdd\xcf\x33\xb4\x76\x90\xc5\xd3\ \xf1\xda\x39\x70\x05\x4f\x3a\x52\xf6\x09\x73\x1e\x02\x4f\xfa\xa3\ \xa0\xf7\x9f\xb9\x23\xce\xd1\x82\x90\x79\x36\x42\x67\x81\xe3\xec\ \x7d\x51\x30\x82\xee\x60\x44\xb4\x33\x97\x11\xd2\xcd\x02\x09\xe0\ \xd4\x73\x2c\x6c\xcf\xbd\x01\xfb\x64\x38\xcb\x7d\x88\xa8\x6a\x44\ \xdb\xe2\x24\x21\x39\xc7\xad\x43\xb1\x32\x0c\xc5\x2c\x64\x23\xe1\ \x08\xbd\xfd\xd4\x85\xa9\x5a\x93\x26\x08\x4f\x59\x7b\xf3\xe6\xd0\ \x05\x45\x11\xb5\xfa\xb0\x93\x60\x78\x54\x6b\xfe\x36\xcb\x8a\x80\ \x2d\x0f\xd1\xb2\x02\xee\x43\xa6\xb3\x9a\x26\x9a\xf8\x94\xd6\x43\ \xa3\x0c\x12\x0c\xcb\x36\x71\xe3\x7d\x22\xa7\x6b\x08\xc0\xd2\xc3\ \xd3\xe2\xe9\x9b\x62\x2e\x6f\xe4\x2c\x56\xda\xfb\x80\x21\x2d\xaa\ \x1a\x0c\x17\xd5\x36\x9f\xc8\x64\x09\xd5\xed\x68\xcc\xcb\x44\x36\ \xcc\xff\x93\x47\x2b\x5f\xa9\x27\x7f\x7c\xfe\xab\xed\x0f\x65\x1b\ \x1e\x66\x83\x24\x08\xcf\x87\x54\x13\x10\x17\x7d\xa4\x80\xf6\xad\ \xb5\x2d\xfd\x46\x76\xd2\x3e\x33\x15\xe9\xb0\xf3\x68\x07\x7a\x7a\ \x9a\x32\x59\x17\xdd\x41\xd2\x0e\x24\x04\x52\x05\x8b\xde\xdc\xa4\ \x22\x20\x32\xeb\x98\x7d\x37\x22\x38\x87\xba\xf4\xf4\xcd\xad\xe1\ \xe4\x79\x8e\x93\xdb\x2b\x0a\x37\x2a\x63\x4b\x88\x40\xcb\x7c\xa1\ \xb6\x2e\x59\xf3\x1d\x1e\x9b\xbe\x18\x5d\x6b\xdc\xbf\xbb\x6c\x63\ \xb6\x6a\x2d\xb2\x14\x70\x6c\x3b\x98\x2d\x21\xa3\x3f\x66\xed\x52\ \xea\x03\xbd\x4c\x83\xcc\x5d\x4d\x23\xc8\xe6\x6f\xb9\x3f\x2d\xc1\ \x9a\xbd\x4a\x4f\x36\xcc\x29\x77\x04\x3c\x0f\xe0\xac\x23\xb7\xb1\ \x5b\xa3\x27\x33\x3c\xb5\x36\x39\x1d\xcb\x33\x27\x55\x06\x9a\x53\ \x5f\x8d\xa8\x9e\x42\xcb\xf4\xb1\xf4\xde\x58\xa0\x02\x2c\x4b\x20\ \x09\xcd\x6d\xe6\xd0\x92\x13\xb3\x57\x54\xd3\x2d\xdf\x06\x81\x90\ \x24\xec\x9c\xbb\x61\xaa\x36\x50\xad\x87\x0b\x68\xa6\x6a\xea\x1e\ \x9e\x20\x76\x0a\x3d\x8a\xaa\x4a\xfe\xf8\x59\x29\xc1\x98\x5b\x78\ \xcb\xc3\xc9\x5b\xa6\x88\x91\x5a\x90\xbb\x7c\x91\xac\x30\x83\x30\ \x4b\xbc\x38\x94\xd6\x78\x79\x52\xb9\x14\x19\x7b\x0c\x1e\x2b\x03\ \xe1\xe2\x55\xdd\xcd\x22\xa2\x42\x05\x9a\x86\xb6\x4c\x59\x6a\xf3\ \x5d\x65\x6f\x60\xfa\x95\x52\x6b\x35\x6b\x4f\x7a\x04\x09\xdf\x9e\ \x93\xbe\xaa\x6b\x99\x5b\x7d\xe6\x71\x7e\x78\xa2\x3f\x7e\x00\xc4\ \xbd\x95\x82\xec\x23\xd6\x7e\xca\xe4\xc0\x3e\x9b\xc8\x68\xa1\x33\ \xc2\xed\x9e\x57\x42\x25\x81\x59\xa2\xdd\x55\xd1\xd3\x16\x5a\xba\ \xd9\x99\x71\xb7\x4d\x3d\x85\xa4\xd3\xad\x9d\x2c\x01\x0a\x9c\x74\ \x69\x49\x2a\x2d\x76\x26\x7a\x05\xd0\x58\xc1\x0d\x8b\xdc\xaf\x67\ \x41\xa2\xd6\xe4\x8c\x48\xed\x19\x17\xad\x5c\x26\xcc\x9b\xd4\x23\ \xd2\x5e\xae\x2d\xa9\x48\x83\x11\x5c\x7b\x2f\x45\xaa\xf5\xe1\xac\ \xf4\x94\xc9\x5c\x3f\x30\x02\x51\xa3\xcb\xc4\x02\x21\x12\x10\xba\ \x93\xac\x6c\xf8\x8b\x86\x12\xcd\xbe\x3f\xe0\xed\x76\x92\x60\xd4\ \x36\xdb\x63\x38\x9d\xe1\x29\xf2\xef\xe3\xaf\x2e\xdf\x4c\x1e\x9a\ \xa6\x86\x52\xb6\xb4\x4c\xcf\xc1\x1d\x18\xe1\xd9\xe5\x67\xd5\xe7\ \x2d\xac\x59\x02\xb1\x5d\xd5\xf9\x70\xb0\x8f\x4d\x72\x85\x2a\x89\ \xf6\x6c\xac\xa8\xe1\xf1\x74\x50\x93\xbc\x5e\x0b\x8a\xcb\x2a\xa8\ \x11\x4b\x30\x04\x36\x8e\x23\x4c\x93\xfa\x2d\x2a\xa6\x5a\x00\x97\ \x9e\x49\xab\x62\x11\x96\xef\x11\x61\xa8\x58\x8b\xaa\x82\x08\x15\ \x0e\x26\x4c\x88\x24\xa9\x50\xd5\x36\x63\xce\xb7\x45\xf5\x9a\x9d\ \x0e\x39\x98\xb6\x3f\x8f\x84\x02\x4b\x10\xa5\xa4\x85\x34\x08\xb1\ \x92\x13\xb0\xf0\x14\xb2\x40\xd5\x11\x4a\x85\x50\xdc\x21\xf9\x7d\ \x08\x85\x1e\xae\x02\x46\x69\x0c\x4d\x95\x8d\x56\x2d\x2a\xa9\xa0\ \x7e\x32\xaa\x00\x80\xec\x56\x73\x93\x29\x4d\x85\x21\x4f\xa7\x05\ \xdb\x33\xd6\x84\x13\xdb\xfc\xe0\x87\x1f\xa9\x3f\x1c\x30\xf4\x57\ \x9e\x6d\x68\xdb\x83\x94\x08\xa8\x12\xe7\x15\x47\xcb\xd6\x04\x48\ \x47\x13\x55\xa0\x0d\x06\x52\x4f\xa1\xa1\x59\x12\x26\x4c\x30\x8d\ \x51\x5d\xd1\xd2\x83\x55\xa2\x57\xb1\x21\x4f\x4a\xf6\x26\x24\xcf\ \x2a\xbc\xcd\x48\xda\x75\x49\x86\xf6\x00\x95\xa7\xf3\x07\x69\xea\ \xa8\x5e\x97\x76\xa9\x70\xee\xb9\x15\xa6\x62\x16\xab\xe7\x2d\xdf\ \xd4\xbb\xff\x1f\x61\x6f\xda\x64\x49\x76\x63\x89\xe1\x00\xfe\x22\ \x22\x2b\x6b\x21\x39\xad\xe6\xd2\x9a\x19\x49\xb3\x98\xfe\xff\xaf\ \xd1\x58\x7f\xea\x91\x46\x23\xb2\x6d\xd4\xec\xda\x32\x33\x9e\x03\ \xd0\x87\x03\xe0\x5e\x7f\x11\x49\x95\x19\xd9\xd5\xac\xac\x58\x9e\ \xfb\xbd\x00\x0e\xce\xc2\x5b\x9e\x50\xa2\xb6\x0b\xb9\xc8\x79\x9e\ \x11\xa5\xfd\x0a\x29\x31\x7d\xa4\xa3\x2a\x62\xaf\x38\xa7\xbc\x54\ \x4a\x0d\xb1\x66\x02\xe8\xee\xa4\xd4\x75\xe1\x89\xf4\x88\x68\x53\ \xd8\x8c\xb8\xa7\xc0\xb3\x8b\x8f\x0c\x9b\xd3\x33\x23\x70\x12\xe6\ \xf2\x32\x1f\x77\xa2\x59\xd5\x55\x8f\x17\x27\x4f\x4e\x24\xbf\x17\ \x30\xcc\xe2\xa6\x8a\x72\xbd\xa9\x2a\x62\xe7\xab\x47\xba\x29\xe8\ \xd3\x29\x22\x0d\xfd\x95\xdd\x07\xca\xfb\x82\xd4\x80\x18\xf8\x23\ \xfd\x64\x12\x94\x47\xde\x38\x81\xf1\xd2\x8d\x2c\x88\xb3\x48\x27\ \x74\xc2\x6d\xa0\x1f\x62\x03\x1d\xb6\x7f\x9f\xd2\x4b\x0d\x09\x95\ \x08\xd0\x79\x14\x21\xee\x92\x07\xd3\x89\x49\x4e\xab\xa4\x48\xba\ \x8d\x81\xdc\x3c\x88\x26\x0e\x34\xfe\xe6\x9e\x50\xc2\xcb\x7e\x88\ \xd2\x99\x1b\x7d\xd7\xd6\x8b\x2e\x60\x88\xc0\xfe\xd2\x57\xb7\xad\ \xaa\x3d\x85\x0f\x54\xb0\x57\x98\xea\xe5\xae\x87\x6a\x3f\x42\xf2\ \xee\x5f\x29\xd4\xb9\x8e\x39\x77\x79\x8e\x48\x6f\xdb\x23\x2f\x86\ \xe4\x6b\xf3\x95\x15\xb5\xce\x34\x06\x25\x3b\x2b\xdb\x30\x42\x76\ \xc0\xa0\x9d\x8d\xd9\x45\x21\x2f\x8b\x4e\xc9\xc9\x73\x5f\x12\x47\ \xdd\x3d\x22\x27\xb6\x42\x44\x21\x96\xdb\x6a\xab\x76\xe6\x10\x2f\ \x03\x44\x65\x7e\x55\x21\xfe\x25\x1c\x89\x0c\x8f\x9e\x99\x38\x8a\ \x4b\xb5\xc3\xed\x86\x3b\x41\xcd\x84\x8d\xfc\xec\x0d\x93\xf7\x39\ \x6d\x31\xd9\x6c\x81\x90\x67\x9c\x29\xde\xb1\x3a\x41\x22\x73\xf9\ \xbe\x46\xf8\x79\xa6\x7a\xaf\x9a\x6a\xa4\xe1\x90\x9c\x90\x4c\x77\ \x99\x36\xb0\xaa\x53\xfd\x30\x32\x8e\x1c\x43\xba\x69\xb9\x5b\x06\ \x13\x81\x02\xa3\xbf\xc9\x48\x71\xb2\x8a\x04\xaf\xf7\x57\xb3\xc3\ \xc0\x45\x4e\x65\x52\xa1\xfb\x4c\xf6\xc3\x87\x99\xc5\xeb\xeb\x4d\ \xa0\x35\x99\x6b\xcf\x8b\x08\xd1\x0a\xef\x25\x1c\x04\x2d\x53\xb6\ \xc1\xbf\x23\x34\x35\xd7\xc0\x1c\xda\xaa\x53\x55\x35\xa5\xd5\x06\ \x5b\x65\x1a\x58\x8a\x0a\x17\xd0\x24\xe0\x9c\x9a\x06\x40\x45\x33\ \x4f\x76\xaa\x00\xfb\xe2\x7b\xc2\x20\xa6\x55\x4d\xf8\x41\x44\x51\ \x35\xd2\x4f\x49\x16\x31\x95\x36\x30\x41\x2d\xe5\xa7\x86\x4c\xe9\ \x98\xd7\x37\x68\x6c\xdb\x6b\xa8\x87\x23\xc1\xff\x9d\x43\xd1\xbb\ \x03\xcf\xc2\x12\xae\x5f\x9c\xa6\x7f\xe8\x28\x79\xaf\xb6\x51\x72\ \xa3\x84\xb1\x4b\xdc\xfe\xa5\x12\x58\x14\xb6\x45\x33\xb3\xba\x44\ \x0b\x20\x28\xab\x5c\xcd\x8c\xea\x5f\xb3\xf9\x69\xa9\xa4\x76\xd5\ \x1c\x85\x6c\x71\xe1\xf4\x7c\xbb\xc7\x78\xbb\x17\x37\x43\x60\xc5\ \x75\x17\xb6\xdd\x96\xc5\x7c\xcc\xd4\xcc\x27\x2a\xbf\xb9\x85\x1e\ \xbd\xfd\x12\x26\xf5\x55\x54\x65\x8f\x2c\xc9\x65\x25\x4f\x9a\xe7\ \x49\x3c\x80\x3d\x5b\x9d\xbd\xa2\x24\x13\x5f\x0e\xa0\x08\x70\xa4\ \x24\x54\xe8\x45\x63\xca\x91\x19\x79\xa6\xb8\x37\x45\xa0\xf6\x23\ \xc8\x14\x4f\xe6\x7d\xa3\x96\xa5\x5c\x6e\x6e\xdb\xcf\xa8\x6a\x98\ \x12\x11\xce\x25\xab\x4a\x50\x32\xb0\x63\x2b\x28\xfc\x25\xc1\xd0\ \x15\x00\x72\xbf\x9f\x10\xad\xb9\xae\xb6\x6e\xcb\xa1\x9c\x86\x1a\ \x47\xb9\x7d\x42\xd5\x0c\x34\x38\xe0\x2b\xa0\xc6\xf4\xa8\xd7\xf3\ \xee\x32\xf7\xe5\xa4\x88\xd6\x3c\xd5\x46\xc4\x48\x68\x3b\x75\x22\ \x41\xcc\x5a\x14\x70\x40\x25\x69\x50\xc3\x4e\x80\x32\x3d\x25\x4d\ \xd2\x5d\xd5\x0e\x3d\x54\x50\x9e\x04\x10\xc4\xa9\x69\x30\x84\xb8\ \xa7\xab\x9c\x96\xde\xdb\x2e\xaa\xc0\x95\x2c\x5b\x55\x5a\xa5\x30\ \x1d\x9b\xb9\x90\xca\x1d\x3f\xab\xcb\x7a\xcb\x0b\x4d\xcd\x87\xb7\ \x7f\xde\xe9\xda\x8a\x6e\xbd\x19\x5f\xdf\x99\x85\x86\x48\xb2\xff\ \xbb\x73\xe4\xb8\x4e\x1e\x1f\x38\x9d\xec\x3c\x69\xe5\x6c\x33\x2f\ \x75\xd1\x9b\x6a\xe8\x94\x60\x48\x1d\x62\xd4\xf1\xa5\x68\x09\x40\ \xc4\x49\x7a\xb3\x02\x82\xbc\x7a\xa5\x4a\x7d\xed\xb8\x70\xa0\x6d\ \x59\x33\xa3\x70\xf5\x2d\x84\x79\x01\x21\x4c\x61\x20\xb7\x1e\x29\ \xa9\xde\x44\x47\x11\x68\x25\x98\x41\xcb\x40\x92\x4e\x17\x85\x0f\ \x44\xb4\x09\x72\x64\xfb\x49\x64\xcf\xf4\xd1\x6f\xb3\x64\x64\x9e\ \xcd\x06\xc8\xca\xee\x20\x4d\xa6\xdf\xd7\x69\xe1\x78\xc0\xc8\x9b\ \xf6\x01\x12\xd6\xb1\xe1\xdc\xd2\x4c\x19\xf4\xb2\x9f\x52\xc8\x72\ \xe4\x90\xcc\xf4\xde\x72\x32\xdc\x9d\x7c\x92\x2a\x85\xd2\x2e\x3a\ \xfd\xe3\x92\x9f\xe6\xf0\x5c\x35\xbb\x03\x02\x44\x5f\xbf\xdc\x21\ \xe5\x67\xd8\x04\xe8\x28\x5b\xe0\x7e\x70\x07\x7b\x5f\x0e\xd8\xd8\ \xe0\xa2\x90\x3c\x3d\xa0\x4f\x15\xbb\xa3\xe0\x45\x88\xe2\x2c\xa8\ \xd4\xed\x5a\x4f\x2d\xfb\x99\x81\x7b\x55\x06\xa6\xc9\xd1\x48\x74\ \x70\x05\xe3\x29\xc8\x00\xd9\xfd\x59\x28\xf8\x19\xe4\xe0\xa6\xc0\ \x8a\x14\x1a\xa9\x46\x3c\xde\x65\xb1\xc6\x43\xf2\x44\x1e\x66\x12\ \xc4\x4b\xb8\x03\xaa\x2e\x63\xf5\x2a\x3c\x0b\xee\x83\xfa\xf2\x60\ \xa0\x7c\x83\xdf\xc3\xcd\x1e\x90\x80\x39\x18\xee\x3e\xc7\x6f\x00\ \xba\x37\xab\x4a\x34\x5e\x8d\x81\xae\xf6\x18\x62\x48\x2c\x3a\xc5\ \x6c\xf5\xd9\x99\x84\xf4\x39\xa8\xa9\x27\x8b\xb2\x15\x3d\x3a\x95\ \x0e\x89\xd3\xb2\x14\x9a\x28\x8d\x64\xce\x7e\x16\x45\xea\x2c\xf1\ \x01\x16\x01\xb4\x2d\x8d\x3a\x95\x40\x22\xc0\x49\x49\xa4\x48\x6e\ \x7d\xe8\x2a\x45\x9a\x3b\x1c\x51\xcd\x1a\xdd\x03\xe2\xe4\x5c\x71\ \x55\x38\x71\x95\x5c\x86\x78\x2e\x8c\xb8\x4c\x61\xfa\x0c\x44\xff\ \xd3\x08\x2f\xbd\x64\x31\x97\x8b\x6b\x9d\xe9\x99\x97\x75\x67\xb5\ \x14\x51\x64\xb6\x18\x46\x5e\x86\x0f\x1b\x40\xc2\xab\x13\xab\x7f\ \x24\x9a\xcb\x74\x33\xdb\x35\xb0\x8c\xd2\x58\x3c\xce\x0e\x65\xc8\ \x40\x4c\x17\x8a\x2e\x92\x02\x51\x3d\x5e\x5f\xbf\x2c\x59\x44\x29\ \xa3\x07\x88\x4c\xee\xa6\x0e\xb2\xb9\x3b\xa3\x23\xab\x8b\x4d\x5f\ \x31\x3c\x21\x46\xcf\xfd\xd9\xe3\x75\xa4\x73\xd9\xa5\xf5\x5e\xc5\ \xd3\xb5\x60\xd1\xba\x5b\x5d\x5c\xe9\x8c\xd2\x34\x2b\xfe\xb7\xa5\ \x01\xa9\x12\x51\x51\x9e\x27\x73\x01\x5c\x12\x69\xf4\x1e\x50\x31\ \x72\x0b\x3c\xdc\xc4\x8b\xf5\x90\x34\x96\x8a\xe1\x01\xa8\x18\xb1\ \xbc\x5e\x2a\x49\xe3\xa2\x58\x92\x3b\x6d\x4a\x51\x36\x35\x12\xc8\ \x1e\xd8\xa6\x43\xdb\x77\xa3\xfb\x6c\x33\xff\xcb\x80\xda\xd7\xe1\ \x87\x5f\x4d\xb3\x02\x4f\x06\x8d\x00\xfd\xa1\x89\xb0\xa9\xd6\x45\ \xbc\x9f\xc9\x79\xcb\xeb\xa1\xd0\x2e\x38\x42\xbc\xda\x0c\x2e\xde\ \x25\xb4\x35\x57\x4d\x8a\x8b\x62\xc6\x37\xf3\x53\x37\x2a\x5b\xa5\ \xa9\x54\xec\xcd\x66\x85\x5e\x69\x6b\x25\x92\x99\x54\xa5\x20\x83\ \x01\x65\x85\xa7\xc2\xff\x80\x2c\x85\x7b\xba\x93\x57\x9a\x28\x14\ \x98\x4d\xda\x44\xeb\x44\x86\xe7\xc9\xbd\x7e\x4f\x6d\xc5\xd2\x02\ \xf3\x1c\x8a\x3e\x53\x8c\xee\xe0\xee\x9f\x3c\x9c\xf4\xc8\x33\x24\ \xc8\x6d\xf0\xf0\x90\x40\xf3\x74\xc2\x92\x04\xe4\x44\x51\xcb\x8a\ \x0e\x93\x84\x13\x22\xfa\x08\xd5\xeb\xbb\xf2\x6d\x72\x02\x97\x26\ \xa8\x30\x96\x58\x20\x9c\xb5\x8e\x66\x17\xd2\x09\xbb\x80\x42\xef\ \xe7\x29\xd2\xae\xfc\x15\x18\xa5\xab\xeb\x45\x37\x69\x65\xd2\xd9\ \x13\xa9\x87\x67\xba\x20\x70\x58\xdc\xe5\x7e\x9e\x85\xd5\x28\x86\ \x5f\x2b\x03\x0e\x31\xa2\x4c\x44\x32\xb8\x1f\x0f\x71\x64\x4f\x0e\ \xce\xac\x08\x85\x18\xab\x83\xe1\x18\x08\xd4\xa0\x26\xe3\x75\xe5\ \x29\x50\xf2\xf7\x44\x55\x2c\xe2\x74\x3b\x54\xe2\xcc\xf3\x70\x0f\ \xf3\x74\x0d\x51\xb3\x33\xdd\xaa\x02\xd4\x50\x65\x2a\xe4\x71\xa3\ \x09\x1d\x5a\x0b\x14\x74\xe2\x2b\xe0\xde\xf9\xf6\x1b\x5c\xc6\x21\ \xa7\x00\x8f\x45\xbd\xcb\x7d\x40\x9a\x43\x12\xcb\x8c\xbb\xd8\x2b\ \x51\x1b\xd1\x5a\xba\x64\xa6\x42\x25\x34\xd3\xdb\x3a\xb8\xe3\xb4\ \x42\xae\x67\x72\x13\x63\x68\x31\x42\x10\x8b\xb4\x5b\xb3\x0d\x6d\ \x1d\x27\x95\xa9\x78\x8b\x12\x20\x0e\xdb\x62\x75\x4c\x18\x55\xc8\ \x8a\x06\xd9\x7c\xc4\xb7\x26\x3b\x78\x1e\x6b\xb6\x8a\x29\x68\x8b\ \x3e\x95\xe3\x03\x29\xce\x4c\xc8\x88\x0c\x17\xdd\x9a\x5c\x89\x39\ \xa3\x7c\xd7\xdb\x69\x99\xac\x30\x8f\x3c\x09\xc7\x93\xad\x1b\x43\ \xad\xaa\xeb\x8f\x58\x1e\x1c\x4e\xe8\xac\x2c\xc9\xa8\x1a\x48\x71\ \x59\xbd\x9f\x77\xce\x40\xa2\x66\x21\x2f\x0b\x98\x94\xe2\x4e\xf4\ \xbe\x68\x3f\x3c\x05\xee\x2d\x8c\x93\xc7\x92\xbc\x2e\xa7\x0a\xaf\ \xf8\x82\x51\x1e\x36\x80\xaa\xdd\x5f\xef\x60\xcf\x3f\xae\xec\xe9\ \x19\x4c\x67\x6c\xc3\x27\xbe\x34\xaa\xe5\xfd\x6f\x80\xa2\x3c\x42\ \x28\xa8\x49\x48\xe4\xbd\x25\xdc\x54\x90\x5b\x73\xc3\x3a\xa0\xb3\ \x64\x7f\xc5\x5e\x26\x6b\x94\x88\x5e\x24\x33\x27\xc7\xaa\xca\xdb\ \x0e\x0e\x95\xdb\x1c\xa2\x99\x2a\x61\xa0\x4e\xb1\x0c\x3d\xdc\x1d\ \x38\x03\x37\xa6\xa1\xaa\x88\x09\xa1\x48\xa4\x8a\x7b\xf0\x41\x5b\ \xb6\x25\x08\xd0\x89\x3c\xf0\x5c\x6c\x55\xe2\x98\xe8\x48\xa9\x7d\ \x60\x9e\x89\xa5\x0a\xd7\x06\x06\xec\xff\x3d\x75\x66\x9f\x67\x56\ \x5f\xa7\xc2\xfc\x35\xda\x24\x72\xeb\x07\xbf\x30\x5c\xfb\x96\xaf\ \xfa\x36\xc9\x2c\x45\x44\x23\x70\xee\x22\x91\x3a\xd3\x2a\xe9\xae\ \xbc\x01\xe9\xd5\x1a\x21\xae\xb5\x8f\xd0\x08\xad\x38\x1b\x51\x01\ \x27\x1e\xb6\x88\xdb\xb7\x6d\x06\xe6\x70\x4e\x4b\x9f\x34\x8b\xfa\ \x11\x17\xb0\x0e\x58\xaf\x32\x25\xf3\x40\xea\x61\x7a\x1e\x7e\x9e\ \x19\x49\xfd\x4c\xf9\x5a\x42\x32\xe3\xe4\xb0\x9d\x79\xf6\xff\xde\ \x99\x4d\xd1\x5f\xc6\x13\x52\x16\x98\x3d\x3f\x78\x4b\x9d\x49\xfd\ \xa4\xc2\x97\xa2\xd0\x15\x87\x26\xe9\xe2\x1c\x8f\xcf\xf4\x8c\x10\ \x63\xfd\xc9\xa8\x2d\xaa\xbb\x90\xc7\xb6\x30\x80\xa1\xa5\x95\xf7\ \x40\x8d\x06\xdd\x48\x8d\x6c\x4e\xa2\x7d\x70\x9a\x4e\xdb\x02\x3c\ \x0e\xc9\x5f\xbe\xbc\x66\x73\x69\x6b\x73\x1f\xd5\x3d\x66\x86\xa4\ \x71\xb6\xe1\xc5\x56\x65\xab\xe6\x60\x13\x53\xcd\x84\xdf\xe3\xbc\ \x9f\x10\x55\xd4\x36\x73\x5a\x9f\x0b\x35\x3f\x23\x13\x9c\xdb\x9e\ \xec\x10\x85\x38\x46\x39\x75\x86\x1b\xd2\xc4\x26\xf9\x5a\xa1\x23\ \x37\x80\xaa\x78\x37\x7f\x19\xa6\xcc\x3d\x90\xd2\x9b\x6b\x48\x66\ \xb8\x3b\x4e\xd5\x03\x0e\x17\x8f\x70\x36\x4d\x87\x69\x4a\xba\x33\ \xfc\xc9\xca\xad\xad\xde\xa0\xf2\xdf\xed\xa1\x43\xb5\x88\x9b\xb5\ \x9e\x69\x75\xc0\x82\x9e\x39\xc6\x5c\x60\xeb\x86\x04\xdc\x7d\x3f\ \x42\x75\xcc\xa0\xa2\x92\x67\xa6\xf6\x78\x23\x26\x70\xc6\x58\x10\ \x98\xc9\x35\xe2\x64\x8a\xe4\xe9\xa9\xe8\x35\x7d\xc5\xbd\x57\xda\ \xaa\x27\x52\x42\x55\x04\x9e\xde\x93\x2d\x0f\x8c\xc8\x69\xb4\x76\ \xc9\x13\x4c\xde\x23\x07\x9c\xfc\xeb\x7a\x08\x9a\x95\xd7\x4d\xc2\ \x4e\x60\xa3\xe7\xd5\xf3\x72\xa1\x10\x4d\x51\xe2\xf4\xd2\x01\x66\ \x69\xf1\x8a\xb5\xe6\x12\xc8\x54\x40\x15\x77\x36\x56\x88\xc2\x94\ \xa2\x56\x97\x49\x63\xb3\x45\x31\xe6\xaa\xb1\x24\x65\x59\x0a\xab\ \xf0\x0b\x29\xc6\x69\xe4\xca\x09\xf0\xee\xf7\xc8\x34\x85\x94\x3f\ \x06\xc9\xf5\xee\x11\x1e\x27\x03\x54\x42\x9c\xd2\xcb\x0c\xaa\x03\ \x78\xcc\x24\xe4\x8c\x92\x66\x70\x9f\xea\xd9\x5b\xe2\x9e\x96\x1c\ \x9a\x5c\x6d\xf5\x8c\x24\xaa\x2a\x91\x77\x39\xfb\x72\x21\xfb\xae\ \xb8\xed\x89\x54\x95\x90\x30\xd5\x0c\x68\xe2\x80\x9a\xd1\x6c\xf0\ \x2c\x7b\x02\x49\x40\x0f\x4d\x98\x1c\x45\x2d\x50\x49\x39\x23\xce\ \xfb\xfd\xee\x19\x19\x37\x85\x71\x01\x09\xa3\x90\x26\xf9\x6e\x59\ \xb1\x8f\xf3\xe0\x92\x28\xf8\x2f\x27\xa0\x9e\x7a\x3f\xef\x8c\x74\ \xa7\x66\xc1\x52\x34\xb3\x35\xa1\x6c\x25\x5a\xc8\x1c\xca\x28\xe8\ \x02\x8e\x44\x22\xe4\xf3\xe7\xf3\xd9\x5e\xcc\x6e\xe0\x8b\xad\xe0\ \x77\x94\x53\xd2\x54\xd5\x45\x5c\xea\xcb\x67\x8a\xab\x68\x28\x04\ \x0e\x81\xa1\xa9\x90\xa2\x22\x46\x9c\x5d\xa1\x50\xa4\x9a\xa4\x09\ \x68\xb1\x4b\x6f\x2a\xe3\x03\x54\xd5\xd8\xd5\x92\x0b\x1a\x49\x15\ \x35\x35\x95\xa3\xce\x58\x66\xd4\xa6\x9c\xa9\x0d\x09\x81\x84\xce\ \x98\x23\x0d\x34\x07\xc4\x33\x98\x95\x3a\x62\xf7\x52\x2a\xd1\xa7\ \x34\x43\x55\xbb\x21\xc2\x70\x7c\x53\x33\x0e\x11\x0f\x9c\x09\xcd\ \x30\x12\xc4\x52\x3d\xfd\xcc\x7c\x42\x8a\x7a\xa4\xa4\xd3\x37\x61\ \xad\x76\x69\x32\x19\x92\x62\x63\x96\x90\x5b\xb8\x18\x45\xec\x2e\ \x12\x91\x8a\xd0\x80\x8a\x21\x21\x4e\x5b\xe4\xf2\x1a\x3f\x89\xc8\ \x22\x8d\xab\x36\x93\xc8\xd3\xfd\x9e\xde\x72\xc8\x0c\x0f\x07\x2d\ \x59\x21\x82\xb8\x87\x17\xfe\x4b\x21\x1a\x5c\x8a\x1c\x10\x1e\xee\ \xb8\x27\x22\x50\x37\x01\x07\x9b\x99\x58\xbc\x68\x85\x67\x85\x6d\ \x70\xae\xa6\x11\x47\xd5\x16\x89\x88\x33\xef\x82\x0c\x95\x22\x3e\ \x67\x86\x16\x1f\x07\x02\x39\x98\xed\x4e\x48\x1a\xa9\x19\x25\xf6\ \xf4\xd6\x52\x79\xa6\x38\xc4\x23\xee\x48\xbd\xdd\x38\xc7\x87\x9f\ \x76\x93\x33\xcf\x84\xbf\x1c\x78\x32\xfc\xf5\xe7\x5f\xfd\xfe\x7a\ \xb3\x23\xf2\x15\x38\x45\x1c\x7a\xe8\xa1\x49\x5a\x8d\x99\x99\x1c\ \xc4\x12\x4c\x25\xd1\x66\x9d\x28\x66\x80\xa7\x9f\x2e\xe7\xfd\x14\ \x49\x0f\xf7\x8c\x1b\xe5\xd3\xe2\x29\x41\x17\xcf\xb4\x61\x7f\x66\ \x56\x30\xfc\x9d\xbb\x8b\xde\xa9\x44\x48\xde\x05\x06\x3b\x70\x70\ \x74\x25\x57\xdd\x55\x4d\x70\x8a\xab\x98\xa9\x21\xd5\x95\xc4\x53\ \x8b\xf3\xf3\xfd\x88\x9b\xc6\x69\xf9\x6c\x96\xaa\x7e\xe0\xb0\x14\ \xdc\x59\x59\xfa\xa9\x2b\xd4\x04\xa9\x51\x37\xbb\x9e\xa7\x52\x66\ \x4c\xca\x12\x54\x80\xf2\x2c\x4d\xca\x48\x59\x33\xb9\xb1\xa7\x81\ \x68\x65\xea\x58\xa1\xfd\x9c\xf2\x95\x24\xbd\xa8\xfb\x8b\xab\x93\ \xba\x9e\x75\xa9\x47\x13\x50\x0a\x80\x8a\xbd\x46\xde\x0d\x09\xd6\ \x25\x69\x28\x8a\x2a\xd4\xb2\xe4\x0c\x5a\x03\x89\x27\x52\x54\x61\ \xa9\x44\x02\x98\x6a\x77\xc6\x19\x79\xc2\xf8\xe0\x05\xf9\x64\x67\ \xe2\x35\xf5\x35\xd3\x42\x4e\x71\x34\x27\x4d\xc4\x0e\xad\x05\xeb\ \x35\xc2\x32\x73\x7e\xc8\xc2\x2d\x9c\x72\xc9\x0a\x83\x07\x52\xc4\ \x21\x12\x38\xc1\xcd\xc3\xfd\x2e\x71\x7f\x3d\xe3\x4b\xfa\xa9\xf7\ \xd0\x4c\xc9\x2f\xf7\xfc\xf4\xd9\x7f\x0d\x7f\x45\xbe\xd2\x4c\x7f\ \xcc\xbb\x25\xfd\xee\x11\xe9\x1e\xee\x4a\x00\xc9\x33\x1d\x8a\x6a\ \x5f\x24\x3d\x3c\x34\x48\x78\x27\x69\x32\x35\x22\xdc\xbb\xce\xdf\ \xe3\x8c\x4a\xce\xf0\xa8\x49\xc0\xc9\x5e\x08\x3f\xc3\x1d\x2a\x01\ \x44\x3a\xc3\xa6\x05\x85\x47\x7b\x9c\x30\x70\x39\xd4\x6c\x67\xd6\ \x49\x21\x99\x3a\xd1\xeb\x20\x14\xd7\x98\xaa\xaa\xd7\xf3\xce\x76\ \x3d\x33\x8e\xe3\x88\x2f\xe1\xe7\x3d\xe2\xfe\xe3\xcf\x3f\xc2\x00\ \x55\xf7\xbb\x78\x1c\xa6\xb4\x99\xc8\x74\x3f\x4f\x82\x71\x6c\x79\ \x0f\x8e\x77\x0a\x98\xd0\x37\x17\x25\xe5\x14\xb9\xa9\x04\x71\x67\ \x71\x55\x64\xfa\xe9\x5f\x20\xa6\x1d\xde\x2a\x29\x1e\xad\x3d\x81\ \xf6\xee\x0d\xe3\xd8\xae\xad\x29\x66\xf2\x67\x41\x13\x62\xf5\xf3\ \x87\x18\x8c\xfa\x1c\x55\x13\x01\x4e\xb0\xb4\x44\x88\x7e\x3e\x6e\ \xb7\xa7\xdb\xf9\x7c\x9c\x2f\xc7\xf1\xac\xf6\xac\x30\xe0\x80\x98\ \xca\x33\x04\xd4\x99\x28\xed\x39\xca\x87\x04\xa8\x06\xbd\xac\x4b\ \xc1\xc8\x43\x01\x54\x23\x93\xe5\x8a\xde\x6e\x2a\x9a\xc3\xac\xa7\ \x9c\x9e\x48\x56\xa7\xe0\x2e\xae\x6f\xcf\xee\x45\xd8\x68\x79\xd5\ \xc8\x0a\x38\xaa\x96\xde\x5b\x93\x3b\x81\x23\x25\xc0\x00\x00\x20\ \x00\x49\x44\x41\x54\xd5\x26\x07\x20\x3b\x28\x2e\x24\x4c\x94\xa6\ \xd9\xdc\x65\x22\xf9\x5d\x29\x63\x0a\x77\x1e\x70\xca\xaf\x5a\x6a\ \x63\x22\x37\xcd\x43\xe5\x66\x78\xd2\x38\xc4\xe9\x69\x32\xfc\x6d\ \x63\x7e\x60\x80\x3b\x0b\x19\x62\x41\x34\x59\x21\x24\x35\xd8\xa0\ \x15\x2b\x80\x43\x04\xda\x12\xd9\x48\x07\xc3\x79\xca\xfd\xcc\x57\ \xc7\x3d\x70\x86\xb8\x23\x3d\xfc\xf5\xee\xaf\x19\xaf\x9a\x9f\x23\ \xef\x7e\xb1\x59\x2a\xb1\xa4\x87\x0f\x9b\x75\xc4\x6a\x84\x7f\x3d\ \x45\xe2\x4c\x0c\xe5\x41\x0a\x47\x96\xaa\x3c\xaf\x25\xe7\xaa\x0c\ \x51\xba\x6a\x54\xc3\x50\x9b\xfb\xc2\x0c\x79\x5a\x40\xa6\x0c\xc5\ \x77\x87\x31\xf9\xb9\x56\x2b\x7d\x4d\xf4\x21\x92\x4a\x91\xe9\x34\ \xfa\x72\x2c\xd1\x20\xbd\xd0\xec\xf6\xc3\x6f\xbe\x8f\xf0\x4f\x9f\ \x3f\x7d\x79\xfd\x74\x9e\xaf\xa7\x9f\x67\x59\x02\x37\x68\x42\x02\ \x82\x27\x53\x91\xb9\x85\x3b\x96\xd4\x5e\x56\x77\xc2\xdb\x97\xa1\ \x3a\xe1\xf7\x10\xfc\xf2\xeb\xaf\x11\xff\x6c\x6d\xac\x34\xf4\xa6\ \x89\xd0\x5d\x1c\xad\xac\x75\x5f\x84\x48\xd3\x55\x5a\x64\xde\x70\ \x40\x9d\x4e\xa1\x95\x78\x65\x42\x15\xdb\x58\xb5\xd8\xa9\xbc\x2c\ \x0f\xa8\x09\x2c\x6b\x72\xd3\x76\xc4\x20\xf9\xa1\xc4\x16\xbd\xfd\ \x2e\xe2\x2b\x16\x6d\xa4\xfc\x83\x3b\xd0\x32\x55\x10\x15\x97\xcb\ \xe2\xda\x3a\x77\x65\x51\x2a\xff\x15\x01\x46\xd2\x37\x4a\xea\xee\ \xfc\x73\x69\x27\x40\x05\xde\xb9\xa8\x2b\xd8\xc5\x8f\x80\x67\x8d\ \x59\x89\x33\xc3\x04\xf3\xbd\xb9\x28\xc8\xea\xef\x86\x47\x9c\xad\ \x31\x2a\x2f\x1b\x55\x25\xfa\x24\xd0\xb2\x39\x56\x44\xde\xdc\x95\ \xe6\x75\x75\x02\xeb\x10\x69\xf3\x5b\xf7\x11\x74\x48\xd8\x92\xf0\ \xcc\x53\x66\xdf\x5b\x7d\xa9\x36\x6d\xec\x4c\x75\x4b\x3d\x52\x55\ \x52\xa2\xa9\x5e\x08\x91\x30\xa9\x84\x26\x96\x5d\xcf\x84\xe6\x42\ \xd2\x39\xec\x15\xff\x5a\xb4\x9e\x85\xab\x28\x3a\xda\xb4\x2f\xdb\ \x49\x36\xe5\xb0\xb2\xe8\x72\xcd\x6c\xf5\x0e\x79\xc6\x20\x0d\xec\ \x71\x23\x83\xbd\x3f\x6f\x6a\xb9\xb7\x08\x1c\x98\x18\xbf\x4c\x22\ \x82\x20\xac\x57\x58\x67\x34\x10\x8f\xac\x67\x20\x82\x38\xf0\x4b\ \x81\x19\x62\x7a\xbb\xbd\x1c\x92\xbf\xfd\xf8\x4d\x26\x8e\xa7\x5b\ \x9e\x5f\x44\x00\x3d\x88\x30\x16\x73\x98\xd5\x26\x52\xbc\x6c\x22\ \x8b\xc0\x9d\x0b\xea\x2a\xda\x74\x8a\xff\xf4\xf3\xbf\xfe\xf8\xd3\ \x8f\xc5\x36\x18\x39\x1d\xa8\x89\x9c\x0f\xa4\x2c\x6b\xcb\xc6\xa2\ \xbd\x64\xfa\xc3\xaa\x1a\xd5\x6c\xfc\x68\x69\x8b\x76\x87\x51\x72\ \x94\xe6\x4b\x71\xa7\xd1\xe0\xcf\x68\x80\x10\x5c\xa5\x2a\xa4\x8d\ \x21\x8b\x13\x42\xc2\x85\x37\x8a\x86\x45\x05\xd3\x2e\x74\x84\xaa\ \x84\xf1\x16\x65\x6c\x5d\x87\x1a\x6b\x56\x95\xa4\x83\x0c\x1f\x0d\ \x38\x93\x2e\x54\x2c\x67\x5e\xd1\x5a\x0a\xaa\x62\xba\x3b\x14\x63\ \x45\x27\xb1\x0b\xa9\x10\xc1\xa1\x42\x2b\x04\xad\xd5\xe7\xda\x35\ \xa1\x14\x38\xfd\x2b\x96\xac\x30\x55\x70\x98\x2c\xdb\x03\xb1\x96\ \xd6\xa1\x82\x83\x50\x4e\x93\xbd\x62\x22\xda\x13\xaa\x2c\xf6\xd9\ \xea\xbb\x68\x1d\x47\xb9\x93\x95\xb9\x08\x4b\x51\xde\x0b\xcc\x87\ \xa5\x18\xca\xff\x48\x24\x0d\x44\x7a\x35\x47\xe1\x57\xa7\x5e\xf2\ \x4c\x17\x19\xfe\x2b\x19\xd9\x55\x89\xca\x37\x9f\xa1\x7b\x5a\xde\ \xc5\x32\x68\xea\x22\x98\x96\xee\xa4\xa1\xce\xd6\xd0\x75\xf4\xb5\ \x43\x9c\x53\x1f\x42\x95\x2b\x0d\xe7\x48\x9a\x90\x74\x5b\x1e\x18\ \xda\xee\x59\x94\xbd\x0b\x6a\x41\x5a\x62\x4b\xed\x90\xf0\x54\x68\ \x63\xf2\x50\x3d\x90\x7a\xdc\x9e\xbe\xf9\xf8\xf1\xdb\x6f\xbf\x7b\ \x7e\x7e\x3a\x6e\xb7\xdf\xff\xe1\xef\x8e\xa7\x83\x28\x3d\x0e\x83\ \xaa\xc2\x4c\x81\xf2\xe2\xc8\xcc\x3c\xa4\xcd\xc4\xb2\x37\xfd\xd4\ \xe6\xa9\x1d\x21\xaa\x96\x7f\xf7\x77\xff\xd3\xaf\xbf\x7e\x8a\x08\ \xf7\xf4\xf0\xd8\x44\xa6\xbc\x44\x6b\xe5\x9d\xc3\x26\xde\x02\x74\ \xb7\x14\x52\x41\xb3\x93\xb9\xea\x81\xd3\x04\x44\xb2\xf2\xc3\xb5\ \xb5\x28\x19\xf4\x1c\x4a\xd0\xd5\x0f\x55\xfe\xb2\x2d\x74\xe9\x35\ \xbd\xf8\x01\xad\x71\x99\x14\x68\x0a\xf3\x5a\x96\x56\xa9\xa7\x0b\ \x41\x26\x91\xc1\x4f\x4a\x74\x18\xaf\x63\x65\x2e\xb0\xfd\x91\x8b\ \x47\x29\x06\xab\x55\x1d\x3d\x4b\xd5\x43\x11\x63\x85\xe0\x7e\xb3\ \xaf\x76\x94\xe0\xaf\x3f\x00\xd2\x14\xfa\x25\x2f\x51\xa8\xd6\x8f\ \x87\xda\x52\x43\x43\x16\xd9\xa1\x0e\x58\x10\xfc\x52\x60\x32\xef\ \x1d\xf0\x44\xd9\xb8\xcd\x77\x2b\x95\xce\xd5\xe3\x01\xc5\x7f\x6a\ \x44\x9e\xfc\xb7\x2c\x18\xaf\x37\x1e\x10\x15\x06\x41\x63\xfd\x84\ \xed\x78\x07\x8e\x09\x3e\xbe\x20\x85\xe4\xa6\x97\xdc\x5e\x2d\x62\ \x69\x1f\x7a\xe9\x1b\x50\xf6\x1d\xb5\xb8\xe8\x17\xa5\x7b\x00\x48\ \x7a\xd6\xe3\xac\xe6\xa6\xe9\x2f\xb4\x08\x47\x09\x1b\xeb\x5a\x2b\ \x14\xc8\x4d\x54\xa0\x5e\x21\x04\x13\x94\x9d\x1b\xb8\xdf\xab\xe5\ \x4c\xa8\xa1\x6d\x7d\x0a\x0e\x55\x15\xb3\xc3\x8e\xe3\x78\xb2\xe3\ \xe9\xf6\xf4\xf2\xe1\xc3\x87\x6f\xbe\xf9\x78\xb3\xdb\x71\xb3\x7f\ \xf3\x6f\x7e\x30\xda\x2d\xe9\x01\x35\x40\x55\xad\x23\x34\xea\x43\ \x39\xea\xaa\x56\x2b\xbf\xda\xb8\x41\x0f\x1c\x37\x73\x8f\xd4\xdb\ \xcd\xfe\xf0\xa7\x3f\xde\x5e\x9e\x7f\xfd\xe5\x97\xfb\xe9\xe7\xeb\ \xeb\xfd\x7e\x76\x22\x4f\xf9\x37\x8c\x9c\x03\x5a\x59\x03\x2d\x65\ \x5c\x8b\x51\x94\x06\x7f\x7e\x4f\x05\x5c\xb5\x9e\x6e\xb9\xc8\xd0\ \xcd\x4d\x20\x29\xd6\xd6\x55\xcd\xcf\x6e\x84\x50\x24\x54\x13\x96\ \x45\x9f\xa4\x40\x51\xe7\xf0\x23\x6a\xae\x62\x01\x54\x5d\x48\x79\ \x08\x85\xe0\x6d\x45\x11\x61\x9b\x52\x80\x38\xa6\x56\x68\x7b\x61\ \x09\xf3\x96\xa8\x14\x37\x33\x33\xd5\x32\xb3\x80\x69\xa1\xa2\x40\ \x13\xb4\x4d\x0c\x42\x68\xda\xbe\x33\x30\x15\x5a\x00\xf3\x62\xae\ \x05\x61\xbd\xc6\x32\xa2\xdb\xaa\x36\xe3\xac\x07\x68\xca\x01\x98\ \x92\x59\x1b\xb3\x8c\xa4\xf1\xa4\x66\x2a\x7a\x4f\xc6\x9e\xb8\x8e\ \x54\x36\x1a\x88\x5c\x07\x76\x56\x05\x40\x59\x0d\xaf\xb4\xf6\xe6\ \xaa\x34\xaf\xa3\x8f\x56\xbf\x88\x81\x16\xb7\x34\x3e\x59\x35\xba\ \x59\xcc\xe4\xc3\x2b\x3d\xab\xea\x33\xeb\x95\x10\x73\x90\x9d\xa2\ \x68\xe9\x10\x4a\xd4\xa4\x53\xe4\x60\x6e\xf9\xda\x1c\x62\x7c\x81\ \x22\xa2\xd7\x29\x58\x42\xa4\xd5\xc2\xe0\x94\xd1\xcc\xb6\xb1\x2e\ \xdd\xad\x83\xfe\x04\x39\xfb\x66\x0a\x1e\x4c\x4b\x3f\xaf\x6a\xfa\ \x74\xbb\x1d\xcf\x6a\xc7\x71\x3c\x2b\xcc\xcc\x44\x4d\x24\x0f\x13\ \x05\x3e\xbc\x3c\x65\x78\x9c\x71\xd8\xcd\x8e\x9b\xa8\x29\x4c\x71\ \x64\x24\xeb\xc4\x51\x11\x05\xc7\x4d\x8f\x83\x14\xb2\xe3\xf6\xa4\ \xf6\xa4\xb7\xf3\x96\x96\x87\x6a\x9a\xfc\xee\xb7\x1f\x3f\x7e\x74\ \x0f\xf7\x3c\xef\x77\xf7\xb3\xbc\x1f\xce\x13\x11\x58\x64\x5b\x64\ \x54\x13\x92\xca\x7b\x76\x9a\xa8\x42\x76\x14\xcd\xc9\xad\xce\x86\ \x7e\x4b\x2c\x10\x34\xc1\xdb\xba\xab\xa6\x04\xb5\x9e\xa4\x2e\xd5\ \x54\x2e\x2e\xcb\xf3\x09\xdd\xe3\x4d\x96\x1c\x4d\xdd\xe7\x13\x6b\ \x5b\x0a\x3d\x3a\x74\x71\x78\x69\x4d\x23\xe8\xd4\x7a\xed\x85\x4e\ \x9d\xef\xe2\x64\x9a\x80\xe1\x72\xc9\xd4\x2b\xa9\x0e\x88\x4d\x23\ \x94\x01\x90\x1c\x39\x63\x6a\x14\x4f\x64\x57\x2a\xa8\xd1\x6b\xa8\ \x14\x0c\xd8\xec\xdc\xb4\x99\x73\xc5\x35\x40\x1e\x82\xa3\x64\x6e\ \xf0\x98\x8d\xff\x32\xdd\x04\xca\x69\x46\x09\xd4\x69\xcc\x3b\xdd\ \x9e\x69\x6b\xca\x42\xbf\x5e\xcc\xb6\x14\xba\xfa\x6f\x2a\xf2\xa8\ \xc7\x70\x6a\x59\xa4\x8c\x05\x49\x19\xc6\x65\x0a\xf4\x86\xec\xe6\ \xb6\x9a\x0c\xe4\xa0\x1f\x21\x9b\x24\x36\x95\xe1\xee\x28\xcf\x4b\ \x19\x49\x4d\x0d\x8b\xd5\x98\x79\x8a\x6b\x78\x0e\x07\x7c\x66\x4b\ \x89\x93\x46\x96\xe5\xe3\xb5\xd0\x1b\x49\xf6\x8c\x9e\x5d\xac\xe7\ \xd6\xd3\xe6\x5a\x94\x13\x5d\xb2\xef\xc8\x36\x31\x67\xdd\xc8\x43\ \xcd\x0e\xd3\x27\xa9\x1c\xce\x5a\xd1\x89\xa6\x4a\xde\x0c\x00\xec\ \xb0\x33\x4d\x60\x09\x35\x3b\x8e\xa7\x9b\xda\x71\x0a\xec\x50\xfa\ \xa4\x25\xcb\x90\xe2\x76\xbb\x99\x3c\xdf\x6e\xcf\x2f\x50\x3b\x6e\ \x50\x3c\xdf\x1d\x92\xf9\x82\x6f\xec\x76\xd0\x13\x98\x55\xb2\x09\ \xe4\xaf\x79\x7a\x99\x51\xf5\x7f\xf1\xa2\x26\x60\x42\xfa\x41\xeb\ \x76\x97\x5f\xce\xf4\x6f\xe8\xbd\x7e\xc7\xeb\xce\x50\x53\xdd\x07\ \xff\x29\xfb\x13\xa4\x98\x1a\x6d\x7b\xea\xb2\x2f\xdf\x19\x2b\xfb\ \xd6\x48\xd2\x1a\x9a\x5e\x23\x7d\x21\xb2\x63\x81\x65\xdd\x79\x6c\ \x87\xda\x56\x93\xcd\x90\xb2\xc1\x6a\xdb\xc1\x8d\x07\x90\x22\x22\ \x46\xcb\xac\x7a\x1a\xcd\x38\x06\x4c\xb0\xd6\x8c\xf3\x0b\x6d\xb7\ \x7c\x17\x1b\x1c\x47\x0d\x00\x6c\x48\x6b\x8b\x45\x17\xac\x32\x73\ \x5e\xdf\x59\xd9\x96\x42\xca\x91\x4a\xb7\xe2\x4d\x2b\x3f\x55\x46\ \x71\xd5\xfa\x72\xfe\x7d\x91\x7c\xd8\x45\xef\xd5\xbf\x6c\xba\x78\ \xb2\xb5\x87\x2f\x51\x69\x5b\xf4\x14\xed\x80\x31\xd6\x1c\x24\x77\ \x61\x2a\xcb\x21\x91\x77\x93\x76\xb7\x95\x04\xf7\x78\xe7\x84\x3b\ \x3f\xcf\x42\xb2\xa2\xd8\x3b\xad\x57\x20\x77\xa4\x56\xf8\xa4\xa6\ \xf9\x2c\xb6\xda\x7e\xa6\x7e\xb5\xbe\x94\x75\x78\x16\xb5\x31\x87\ \x16\x0a\x18\x59\xc5\xb6\xa9\x7a\xe9\x3d\x4c\x6a\xd5\x61\x76\x91\ \xdd\x7b\xaa\x5a\x82\x3f\xfb\x51\x62\xd8\xaa\x54\xcc\x6c\xee\x9c\ \x67\xa8\xf2\x88\x40\xec\x38\x60\x07\x95\x94\xc6\xed\x0d\xc7\x18\ \x28\xec\x76\xbb\x3d\x3d\x1d\x07\x8e\xe3\x59\x8f\x03\x29\xaa\x4f\ \x70\x18\x20\xf7\xbb\xda\x11\x1e\x8d\xee\x04\xd4\x32\x5c\xe4\x43\ \x56\x3e\x42\x46\x59\x82\xa1\x4c\x79\x54\x37\xc3\xd5\x4a\x14\x69\ \x67\x58\x12\x11\xac\xde\x40\x36\x5f\x2c\x38\xda\x9e\x79\x7d\x5f\ \x53\x87\xa0\x38\x66\x62\x54\x09\x29\xeb\x68\x28\x07\x3c\xa8\x44\ \x15\x30\x01\x04\xde\x78\xe0\xd8\xf4\x8d\xab\xc6\xc2\xce\x4c\x75\ \xf8\xc9\xc4\xe8\xc6\x8b\xb4\xc8\x01\xc0\xe8\x62\x04\x49\xd2\x4f\ \xf5\xee\x3a\xee\xd2\x2c\x1a\xa6\xa3\x15\x58\x64\xea\xbe\x18\x48\ \xda\xdb\xec\x41\xaa\x70\x28\x04\x3a\x38\x64\x0f\xf4\x62\xa6\x46\ \x06\x61\x6b\x15\x0e\x15\x55\x8b\xe0\x62\x1f\xa0\xfc\x45\xd7\xd9\ \x30\xd3\xf2\x15\xab\x82\x5c\x13\x30\x47\x3c\xbe\xea\x33\x59\xcd\ \x55\xc0\xe7\x45\x80\x97\xfd\x92\x13\xca\x66\xb0\xa8\x94\x07\x5d\ \xc1\xe0\x40\x4a\xe9\x34\x9b\xb3\xa4\xf5\x69\x88\xdc\x54\x1c\xf5\ \xf2\x9b\x1c\x05\xd6\xb0\x2e\x29\x70\x96\xa3\x4c\x7d\x51\x68\x46\ \xde\xf3\x24\x9f\x1c\x54\x34\x53\x41\x2b\x1a\x22\x41\x36\x15\x16\ \x8b\x8f\x28\xac\xb6\xb5\x33\x19\x75\x9a\xb9\x3c\x84\x96\xab\xf3\ \x4d\x01\x8a\x78\x7a\xb2\x14\xa5\x99\xd5\xf6\xd0\x22\x7b\x06\xe6\ \x5e\x26\xcb\x8d\x16\x91\x50\x1c\x66\x22\x12\xce\xbc\x5a\x06\x3c\ \x40\x55\xe3\x3c\xe9\x8b\x75\x40\xe1\xaf\xaf\xc0\xed\xf4\x78\x66\ \x44\x93\xaa\xd9\x41\x50\x4b\x01\xb1\x9b\x8a\x1c\xaa\xa5\x98\xe1\ \xa1\x27\x80\x26\x79\x3c\x1d\x3a\x82\x72\x69\xbb\xd4\xba\xdd\x82\ \x0c\xb3\xd6\xe7\x6c\xb4\xfe\x12\xbd\x71\xd2\xef\x33\xd2\x9c\x90\ \xc2\xcb\x51\x4c\x39\x55\xa5\xd9\x5a\x07\xc3\x14\x19\xc5\x68\xa6\ \xd3\x1a\xab\xfe\x47\x22\x72\x93\x36\x11\xef\x79\xa4\x14\x2f\x3e\ \x17\x6d\x1d\xaa\x35\x82\x51\x62\xd9\x3d\xdb\x24\x38\xb0\x45\x58\ \x9e\xb2\xd2\x6e\x55\xb5\x0c\x60\x5b\x90\x5d\x0e\xcb\x00\xb1\x08\ \x70\x3a\x5d\x53\xbd\xa7\x54\x19\x07\xfa\x4f\x48\x25\xde\x6c\xfc\ \xb6\x46\x20\x54\xc9\xfd\xa3\x25\xaa\x4a\xb5\x76\xa9\x5b\xc3\x35\ \x70\x0b\x59\x7c\x0b\x13\x57\x15\x39\x8a\xf2\x54\xbf\xe3\xaa\x9d\ \x75\x5d\x13\xcd\x8c\x50\xe3\x6f\x6d\x19\x69\x36\xea\x91\x2a\xab\ \x23\x80\x34\x00\x56\x22\x10\x50\x9b\xd4\x64\x36\xd4\x69\xb1\xe8\ \xfe\xb3\x3d\x07\x79\x5e\x45\x9f\x45\x4b\x4a\x36\x24\xda\xbc\xd1\ \x90\x22\xe8\xa4\x44\x9a\x63\x79\xbd\x6b\x5a\xd5\x11\x98\x8e\xd5\ \x1b\x49\xbe\x5c\xaa\x4b\x26\xed\x37\x04\x99\x51\x43\x71\x6b\xc9\ \x00\x98\xc0\x70\xf0\xff\x37\x2e\x2c\x78\xb3\x42\xd4\xac\x26\xa6\ \x1c\xb3\xff\x7a\x21\x05\xa2\x26\xaa\x47\x99\x5d\xc2\xa1\xa2\x56\ \x0f\xb7\x8a\x69\x86\x08\x0e\x9a\x32\xca\xa1\x39\x56\x51\x4c\x63\ \xa3\xcb\xa5\x2a\x44\xf5\x38\x2a\x46\x2d\xab\x9d\x62\xcf\x2b\x27\ \xb7\x67\xa6\x26\x62\x39\x32\xa9\x61\x49\xaa\xd2\x35\xbc\xdc\xfb\ \xfb\x6a\x90\xb9\x6f\x87\x9f\x55\x98\x57\xad\x72\x94\x3b\x76\x76\ \x3e\xd6\x22\x00\x90\x50\x23\x0c\x60\x3f\x72\x76\x1e\xd2\x04\x5e\ \x29\xcf\x49\x98\xd5\x78\x3c\x5c\x66\x32\xa5\x91\x53\x88\x90\xfb\ \x99\x09\xda\xc0\x37\x18\x1d\x87\xd9\xe8\x66\xca\xab\x40\x3a\x9b\ \xae\x65\xd6\xb2\x3c\x9c\x12\x11\x6a\x2a\xed\xa7\xa0\x03\xbe\xa9\ \x6c\x20\x8e\x0a\x94\x7c\xbb\xaa\x1b\x65\x75\xb8\x52\x12\xaa\x3f\ \x40\xb9\x6b\x41\xc4\xf8\x46\xa5\xf2\x74\xea\x54\xd1\x6d\x66\x89\ \x08\x69\xa7\x91\x8c\xc5\xa6\x39\x66\x9e\xe9\xcc\x2f\x59\x7b\x25\ \xe2\xa5\x86\x86\x5c\xca\xd4\x42\x67\x22\x69\x8b\xfe\xbe\xe9\x34\ \x91\x60\xff\x23\x1d\x91\xc7\xe9\xd4\xca\xb1\xf9\x41\x3a\x4e\x63\ \xd5\x70\xc0\xdb\xed\xbf\x67\x2d\x4d\xcb\x43\x28\xfc\x69\x55\x12\ \x09\x0c\xbd\x03\x44\x2f\x41\xac\xac\xf5\x16\x86\x97\xad\xbb\xd3\ \x4c\x2f\x48\x59\x36\x93\xd0\xd1\x34\x95\x94\x82\x77\x9b\x95\xa4\ \xaf\xee\xb5\x5e\x89\xd6\xb4\xa0\xc3\xad\x12\xe0\x1e\x6e\xdc\x36\ \x95\x6e\xd6\xa2\xa2\x4a\x6a\x49\x72\x04\x03\x53\xaa\xa1\x53\x9a\ \x02\xa7\x12\x01\x32\x81\x89\xe4\xc1\x0d\xae\x08\xc8\xa1\x1a\x6b\ \x2f\x0b\xa9\x4f\x72\xca\x48\x47\x1c\x8a\x98\x8a\xe0\xd0\x02\x63\ \xf9\x8a\x2f\x22\x7b\x8f\x30\xd8\xf8\xc8\xb2\x30\x03\x3c\x69\x32\ \xfa\x84\xc0\x02\x1d\x6f\x08\xd9\x2b\x8c\xe9\x08\x8d\xb3\xcd\x73\ \xad\xa0\xaf\xa4\xec\xb3\x44\x35\xf3\xea\xc8\x32\xab\x5d\xf3\x31\ \x6f\x6b\xd1\xd5\x2f\x29\x19\x95\xbb\x78\x33\x27\x8a\xae\xce\xa6\ \x34\x5f\x94\x95\x5e\x24\x43\x73\xbb\xd5\xd1\xe0\x42\x19\xfe\x77\ \x0a\xaa\x98\x22\xac\x60\x45\x76\x7e\x6d\x31\x8b\xed\xc3\xc0\xea\ \xed\x04\x2b\xae\x2b\xfb\x02\xd1\x86\x8e\x4a\x4d\x84\xcd\x8e\x47\ \xac\x55\x3c\xcb\xd9\x4d\xf6\x3a\xbf\xec\xfe\x97\xff\x7b\xe9\xda\ \xf8\x7a\x6a\xc7\x6f\x00\x6b\xb9\x0d\xd0\x8e\xa6\xad\xea\x27\x31\ \x6f\x9e\xe3\xac\xa9\xe6\x0b\x9b\x20\x45\x43\x35\x0d\x5a\x19\xe1\ \x25\x4d\xef\x58\x40\x09\x22\x75\x11\x99\x30\x9e\x59\xc9\x84\xf3\ \x94\x66\x24\xe2\x4a\x1b\x9a\xfd\x99\x72\xa0\x6f\x32\x44\x01\x70\ \x65\x18\xec\x59\x9e\xf6\x34\x74\xcc\x50\x2e\x1b\x20\x51\x6b\xed\ \x0e\x5b\xc1\xea\x06\x44\x52\x83\x9e\xa9\xf4\x45\x5a\x51\x48\x34\ \xaa\x03\x82\x34\x96\x23\x78\xf8\xe6\x87\x29\xa7\x80\x52\x72\xcc\ \xfe\xb1\x06\xab\x66\x2e\x47\xf6\xe4\x74\x88\x3b\x35\x02\x64\xef\ \x64\xe9\x01\x0a\xce\x35\x1d\xf8\xb2\x49\xfc\x55\x11\x55\xdc\x03\ \x97\x51\xb7\x90\xc6\xda\x71\xd6\xbc\x3d\x6f\xf9\x6c\x6a\xac\xfb\ \xaf\x6a\x5d\x97\x0c\x22\xa7\x45\x29\xca\x8f\xa2\x37\xf2\x8d\xd0\ \xe9\xf6\x98\x37\xb4\x96\x67\x4a\xb4\xa2\x96\x06\xb5\x6a\x88\x37\ \x7b\x6c\x16\xa1\x7d\x02\xad\x55\xfa\x1f\x89\x1e\xba\xbc\xce\x7b\ \xbd\x2a\x85\x16\x40\x7b\xad\x23\x00\x2c\x24\xb5\xb7\x28\xa8\x66\ \x43\x8b\x5b\x3d\x77\x09\x98\x2f\x92\xfb\x93\x5d\xf2\x5b\x9e\x84\ \x25\xcf\x86\xd1\x62\xb0\x3f\x4e\xec\x7e\x02\x9b\x01\x08\x64\xd3\ \xd8\xb5\x56\x7e\x79\x2c\xe6\x56\x28\x6c\x06\x3d\x45\x2f\x40\x9a\ \x7d\xd8\x20\x3a\xe1\x46\xa6\xed\xd9\xb2\x75\xd5\xba\x96\xb5\xf6\ \xc8\x92\xc6\xff\x03\x5d\x55\xa3\x34\xbf\xc6\xc5\xb2\x22\xca\x2b\ \x8b\x1c\x1b\x5d\x08\xe0\x8a\xb4\xcc\xeb\x2f\x53\xbc\x0c\xd5\xe6\ \xd5\x97\xff\x64\xbd\x38\xb0\xa2\x2c\xf0\xd9\x2d\x41\x9f\x82\xab\ \x37\xb9\x7a\xfa\xd4\xc7\x21\x2a\x6a\x85\x64\xb9\x0a\xb3\x39\xb9\ \xa1\x8a\x22\x06\x65\x1e\xdb\x4f\x52\x8d\x61\xf4\xde\x53\x64\xce\ \x4c\x1d\xee\x7e\x68\xcd\xc9\xd7\x2c\x36\x05\xe6\xa6\x2d\x22\x43\ \x01\x35\x6d\x8e\x5a\xdc\x5a\xac\xa5\xbd\x00\x66\xed\x71\xd7\x82\ \x85\xca\x99\x8e\x75\xc9\x16\xb5\x74\xd6\x54\xa8\xef\x3e\x92\xfc\ \x99\xf2\xda\xd4\xb1\x8e\xb7\xb4\x4c\xad\x97\xd0\x6b\x51\xa7\x29\ \x5b\xb6\x8d\x5e\xf6\x4b\xfd\x7b\x64\xff\x90\xd2\xd6\xbf\x82\xc6\ \x35\x64\xb5\x98\xfb\xbd\x27\x19\x92\x0a\x13\x89\x0a\x31\x18\x40\ \xbd\x05\x60\xbd\x28\xe9\xef\x62\x5a\xce\x16\xaa\xb3\x9f\x6c\xf8\ \xa0\xfc\xcf\x46\x91\x2b\x5a\xbb\xa7\xe5\xfe\xd8\x0a\x9f\x54\x48\ \x85\xd5\x61\x93\x74\xc8\xda\xde\x6c\x51\x35\x2b\x83\xa0\x36\xe5\ \x23\xbb\x99\xe0\x85\xf5\x6f\xf1\x83\x68\xe6\x66\xcd\x55\x55\xa4\ \xb3\x6f\xa9\x1e\xc1\x9a\xd0\x34\xd8\x03\x6a\x5d\xd5\x52\x1f\xb4\ \x89\x7c\x71\xe2\x38\x35\x9c\xed\xf6\xbf\x2c\xc3\x4a\x66\xbf\xd6\ \x09\x1d\xbd\x3c\x95\x13\x6d\xa3\xd8\xa0\xda\x6c\x97\xb7\x25\x75\ \xa6\x5e\x7a\x71\x7e\xe7\x48\x16\x1e\x09\x5c\x94\xed\x68\x63\xed\ \x8e\x6f\xc9\x19\xa4\x93\xc9\xb8\x2e\x19\xe7\xfd\x7e\x18\x8e\x82\ \x56\x75\x71\xe0\xb2\x7e\x14\x6d\xa3\x64\x64\xf1\x4e\xaa\x3b\xa9\ \x6e\x9c\xe0\xba\x28\xf4\x28\x76\xcb\x74\x4c\xdc\x41\x4f\x7b\x0f\ \xaa\x07\x64\x3e\xb3\x2c\xb7\x54\xd9\xfc\x21\x4b\x61\x85\x5c\xc3\ \x3a\xea\xcd\x83\x36\x86\xd8\x05\xa7\x3d\x9a\x2f\xb7\x29\x39\x51\ \xe8\x2b\x92\x4f\x37\x6b\xa4\x1f\x1e\x41\x3d\xc3\x32\x95\xd2\x96\ \xa0\xf5\x5c\xa1\x92\xa1\x69\xe4\x2d\x71\x2e\xcf\x96\xbc\x69\x99\ \xc4\xc8\xa2\xdd\x34\x76\xde\x6b\x25\x35\x6d\x21\x7f\xfd\xa3\x5e\ \xd9\x2e\x92\x55\x6a\x01\xcc\x4c\x71\xeb\x8e\xd9\xa0\x5d\x36\x59\ \x9e\xea\xb5\x24\xf9\x9f\xae\xea\x92\xda\xdc\xa6\xf9\x9a\xcc\x8a\ \x4c\xa1\xa3\x29\xd6\x82\x57\x72\x41\x66\xab\x66\x65\x6e\x5d\x09\ \xc6\xdc\xb6\xd8\xab\x74\x99\xd0\xe5\x95\xbd\x32\x73\x2a\x1b\x47\ \x7a\xda\x11\x29\xc9\x23\xb5\x3d\x1d\x64\x90\x13\xe8\x52\xdc\x33\ \x58\xb4\xe3\x41\x8b\x42\x7b\x83\x13\x25\x91\x0d\x58\x96\x87\xcd\ \x6a\x30\x21\xe9\xa1\xa9\x4e\xad\x1e\x9f\xd0\x7c\xb4\x0a\xd0\xe8\ \x03\x97\xf5\x54\x35\x08\xd1\xf6\x24\xd2\x0d\x61\xbd\x7b\x75\x93\ \x84\x56\xe4\x7a\xac\x7b\x26\x5b\xfc\xea\x21\x6b\x1f\x90\x95\x94\ \x41\x61\x86\x88\x64\x9a\xea\x91\x4c\xcf\x2a\x7e\x5c\x79\x02\xb4\ \xc9\xa0\xa4\x44\x2a\x45\x57\x1d\x11\xcc\x82\x54\xef\xb7\x65\x84\ \x68\x81\xdf\xc3\xa4\x29\xa3\x0b\x81\x51\x52\xa1\x0f\x55\x10\x92\ \xa1\x8d\x17\xf6\xb2\x5c\xbb\x85\x27\x32\x7b\xb4\x19\x75\xed\xec\ \x8b\xf5\xa5\x74\x4a\x9f\x36\x28\xa5\xc1\xed\x95\x38\x55\x6c\xbe\ \x22\xe4\x94\xaf\x60\x6b\x7f\xb9\x2e\xec\xb5\x8f\xa8\xd2\x43\xbb\ \xbc\xe0\x0c\x12\x99\x56\x2c\x03\xcc\x0f\x80\xb6\xf2\x30\x9d\xf3\ \x23\x3a\x54\x80\xce\x61\x23\x81\x06\xec\xa3\x9b\xee\x66\x68\xda\ \x41\x71\x0d\xc4\xc8\x5f\x68\x41\x74\x67\x68\xf4\xbd\x20\xf5\x85\ \xa6\x3c\xf6\x7c\x07\x91\x54\xfa\xb7\xf6\x94\x5c\x37\x18\x8f\x16\ \x87\x11\x53\xd9\xa2\x18\x17\x2c\xc8\x15\x24\x96\xb5\xc0\x4c\x6e\ \xf3\x20\xa8\xa0\x9c\x23\x19\xb9\x26\xc2\xc6\xa2\x57\xc0\xdb\x24\ \xbb\xa5\xa0\x5c\x94\xc7\x01\xba\xfc\x0a\x0a\x06\x74\xba\x42\xa1\ \x8c\x7f\xf9\x0f\xbc\x4c\xd7\xe5\x4c\x0d\x8f\xbb\x9f\xd4\xca\x64\ \x8a\x7b\xdc\x4f\x0a\x9f\xb5\x5c\x35\x2a\x97\x1a\xd9\xb9\xe9\x48\ \xe6\xc4\xd6\x29\x8e\x8e\xc4\xe4\x0b\x48\x7c\xb3\x77\x3c\x45\xb0\ \x25\xe5\x9b\x5e\xce\xec\x15\xbc\xeb\xe0\x44\x5e\x90\xd7\xa6\xb5\ \x82\xaf\xb9\x75\x72\x4d\xb4\x3f\xfb\x63\x89\xe3\xf9\xbe\x46\xaa\ \xe2\xe9\x38\xd0\x71\xaf\x61\x72\x9e\x26\x5a\x3f\xa0\x47\xa5\x41\ \x89\x91\x61\xba\x59\xf5\xc9\x88\x72\x6b\x44\x54\x11\x1b\xb8\x16\ \x93\x5a\x26\x60\x2c\x20\xfa\x34\xc8\x90\xa6\x98\xc8\xa7\xcd\xbf\ \x27\x5a\xc1\x11\xad\x68\xd9\xa6\x7a\xc0\xd4\x54\x8a\x95\x43\xa5\ \xf1\x9c\xda\x56\x33\xa2\x94\xf5\x8a\xcb\xf4\x64\xb5\xe0\x53\xf6\ \x47\x2a\x9d\x2c\x5f\xf4\x9e\x45\xdc\x1a\x82\xaa\x4d\xf4\xbc\xaa\ \x4a\x3b\xe9\x22\x55\x54\x4d\xd9\x43\x2a\x7a\xb8\x87\x18\x34\x25\ \x94\xfb\x48\x44\x91\x55\x51\x5a\xa2\xca\xc5\x80\xa9\xb2\x51\x80\ \x62\xe7\xca\x81\x7e\xe6\xdc\x6b\xae\x19\xa8\x6b\x95\x16\x28\x56\ \xd7\x01\x8f\xeb\xb0\xb6\xb1\x2d\x46\x65\x8d\x03\x95\xdf\x55\x4b\ \x83\x19\xdc\x31\x0e\x85\xb3\xdb\xb4\xf1\x14\x1c\x5c\x74\x38\x3c\ \xe3\x05\xba\xf1\x7e\xa5\xc2\x7e\x42\x26\x84\x76\x2c\x0e\xeb\x0f\ \x94\x3c\xa6\x7a\xa4\x51\x63\x7b\xbb\x62\x9e\x61\x1e\x11\xa7\x7b\ \x96\xc5\x6d\x50\xba\x49\x0f\x1b\x86\x1b\x3a\xb3\xdc\xfa\x3c\x47\ \x66\xba\xe7\x11\x8d\x42\x45\xd9\xc9\xd7\x5d\xda\x06\xd5\x9b\xb4\ \x59\xc4\x3b\x60\x40\x4b\x49\x2e\x0d\xd0\x6b\x6d\x59\x13\x22\x79\ \x33\x35\x13\x77\x41\xa4\xa9\x99\x5a\x78\x87\x10\xaa\xba\x9f\xb5\ \x46\x84\x6a\x8a\x26\x92\x31\x2f\x37\x3b\xbe\xf9\xf0\x41\x15\x07\ \xdd\xcf\x10\x1f\x9e\xcb\x03\xc1\x19\x48\x15\x59\x86\x2a\x54\x59\ \xd1\xc7\x79\x84\xf2\xd9\x10\x04\x60\x2a\xbd\xec\xa6\x8b\x5a\xb4\ \xab\xec\xa0\x66\x90\x4a\x04\xd9\xdc\x90\xab\xf4\xcc\x4b\x9c\x73\ \x66\xb8\x69\x32\x35\x3d\x38\xf7\x47\xe3\xa4\x8d\x12\x63\x09\x33\ \x69\x52\xd6\xcc\x8c\x45\x86\x2c\xd3\xf4\xb6\xd1\x98\x4d\x65\x7b\ \xde\x72\xf8\xa9\x4e\x7c\x44\x6f\xc9\xa2\x87\x54\xad\x7e\x4a\xa5\ \xcc\xe6\xca\xeb\x72\xb9\xe5\x38\x44\x14\x4e\x88\xcb\xfa\x44\x51\ \x8d\xa3\xb4\x9d\x6f\x32\x8e\x36\x03\x9a\x09\xaa\x04\xac\xb4\x5b\ \x21\x34\xa0\x4d\xba\xbb\x1a\x0c\xab\xdf\xd7\xee\xf3\x6b\xf7\x51\ \x1d\xa0\x0c\xe0\xd5\xa4\x31\x94\xa8\x7e\xca\xd7\xf0\x2d\x41\x4d\ \x68\x48\x13\x48\xd7\xb1\x29\x0e\x21\x5d\x82\x30\x2e\x39\x3d\x97\ \x23\x36\x3b\x1c\x7e\xd7\x09\xee\x2b\x6b\xf5\xf1\xcf\x17\x2b\xa9\ \x40\x67\xb2\x45\xf5\x78\x65\xb0\x19\xa1\x6e\x7a\xba\x9f\x21\xed\ \x23\x48\x9f\x64\xc9\xb4\xe2\xa6\xc4\x52\x71\x48\x8a\x87\xb9\x1c\ \x7b\x44\xee\xa6\x4b\x28\xd5\xbf\x54\xac\x50\x47\xa1\xc6\xc4\xfc\ \xb6\xb5\x12\xb5\x84\x64\x6b\xcf\x5e\x12\x2a\x12\x6a\x80\x68\x9e\ \x62\xaa\x5e\x0e\x56\x80\x96\x72\xfe\x00\x60\xc7\xad\x4d\x8c\xea\ \x65\xbd\xa9\x3d\x1d\x76\xbb\x29\x14\x2e\xf2\x9c\x3d\x3d\x4d\x90\ \x9e\x48\x44\x78\xe0\x20\x32\x0b\x41\xff\x9e\xdb\x65\x4f\x18\x6f\ \xe9\x0d\x67\x8f\x56\x8b\x23\xc1\x25\xd0\xb5\x60\x84\xfa\x4c\x0b\ \x53\x68\xd5\x2f\x87\x66\x83\x1a\xd4\x1a\x0b\xa6\x17\x34\xc9\xa0\ \xab\x87\xd7\x49\xe3\x88\x0d\x56\x02\xa0\x36\x6d\x3d\x0a\xeb\x5c\ \xcc\xed\xfa\x76\x52\x22\x3c\x6e\x26\x68\xd9\x0b\xa4\x56\x8b\x55\ \x16\xbd\xdc\xc3\x56\x15\x0f\x95\x10\xc5\xb1\xb9\x6e\x10\x15\xd3\ \x9a\x39\xb8\x41\x26\xd2\x18\xa8\x7f\xbd\x64\xa6\x2a\x2b\xf5\x40\ \x00\x4b\xa1\xa2\x59\x55\x88\xfe\xcf\x40\x6b\xb7\xc5\xb5\x98\xbe\ \x74\x77\x0b\xd9\xfe\x8a\xdd\x66\xe4\xf2\xf7\x17\x01\xc4\x70\x8a\ \x6d\xb2\x42\x66\xa5\xbc\xc1\x42\xb4\x53\x13\x97\xb8\x78\x49\xaf\ \xd0\x8e\x52\x53\x64\xd9\xf2\x51\xa8\x39\x66\x1d\xe3\x10\xdf\x47\ \xa5\xe3\x10\x13\x9e\x22\x5f\x3c\xa2\x9d\x7f\x15\x1a\x91\x67\x65\ \xfa\xb8\x88\x09\x82\x77\x7a\x85\x53\x94\xf9\xbf\x1c\xc6\x40\xf9\ \xf6\xac\xac\x08\x8e\x92\xef\x79\x9b\xfd\x54\x28\xb7\x54\x74\x20\ \x52\xe9\x13\xda\x8a\x43\x1b\xf9\x5a\xb1\x46\x80\x80\x7b\xa8\x4a\ \x3d\x39\x98\x29\x1d\xde\x24\x45\x34\x32\x9f\x9f\x9e\x8e\x28\x52\ \x27\xa9\x58\x4c\x63\x0b\xd3\x54\x65\xf2\x6d\xa2\x6e\x5f\x95\x2d\ \x68\x9a\x9c\xdc\x97\x27\x48\x22\xdc\xd9\x66\x5b\x33\x04\x46\x5e\ \x47\x49\x30\x9b\x95\xfe\x49\x97\x6a\x92\xf6\x1b\x84\xfa\x4a\xfc\ \x52\xed\x78\x6e\xbc\x15\x29\xa2\x80\xaa\x02\x06\x31\xc3\xac\x99\ \x48\x10\xce\x14\x42\x49\xbd\x63\xed\xa0\x12\x2a\x8d\xeb\x36\xe7\ \xae\x11\x13\xf1\xa7\xb2\xe4\xcf\x5d\xcc\x93\x5f\x93\xaf\x54\x59\ \x5c\x49\x79\xe6\xaa\x6a\x4a\x12\xbc\x6c\xff\x3d\x05\x04\xfc\xfd\ \xb4\x68\x6d\x92\x5e\xdd\x94\xc2\x14\xc6\xbd\x73\x4d\x66\x09\xdc\ \x64\x1d\xbc\x2e\xa2\xb2\xa0\x0e\xac\x63\x91\x2a\x3e\x62\xa5\xc2\ \x27\xd6\xb1\xb9\xf8\xbe\x5f\x0e\x4f\xfd\xbf\x9b\xf1\x47\x69\xbc\ \x93\xb8\x6c\x27\x32\x30\xa6\x5b\xa7\x04\x64\x47\x58\xe7\xca\x18\ \x21\xbd\xb2\x0e\x96\xad\x4d\x1b\x26\x40\x25\x9b\x3d\x51\x33\x46\ \x63\x42\xd8\x70\x2a\x5a\x57\xaf\xbd\x1e\x24\x45\x69\x56\x91\x92\ \x87\x20\x3c\x5f\xef\x77\x9c\xa7\x7b\x46\x04\x71\xfe\x48\x93\x8c\ \xf3\x34\x69\x86\x74\x2d\x83\xa4\x8a\xff\x4d\x8e\xfa\x25\xa3\x2e\ \x9b\x14\x74\xd4\x4f\x99\x93\x4e\xf1\xe9\x01\xae\x92\xb0\x2b\x0d\ \x30\xe6\x70\x4b\xd3\x73\x32\xec\x48\x51\x89\xf4\xd3\x54\xec\x7c\ \x75\x97\x57\xb5\x03\x00\xcd\x43\xcd\xec\x38\x4c\x4c\xd1\x14\xf1\ \x54\x13\x33\xc9\x43\xec\x10\x43\xd0\x83\x1d\x87\xb6\xd4\xa4\xe2\ \x62\xc7\x26\x08\x65\x93\xc6\x3d\xa2\x66\xc5\x5c\xa2\xc9\x28\x24\ \xff\xf4\xc2\xa7\xd5\xcb\x19\x7e\x46\x16\xc8\x54\x11\xc8\xa4\x3d\ \x69\x84\xa4\x40\x8f\x65\x95\xaf\xad\x97\x38\xd4\x0e\xca\x86\xea\ \x25\x2e\x54\x28\x42\x66\xc5\x83\x70\xad\xcd\x6e\x46\x88\x96\xbe\ \x68\xd9\x34\x15\xc5\x30\xb2\x87\xaa\xd1\xaa\x65\x22\xb6\x84\x69\ \x1d\x12\x68\xcf\x0c\x76\xe3\x25\x42\xaa\x6a\x54\xd0\x3c\xcb\x18\ \xd1\x27\xee\xe8\x0e\x33\xc9\x50\xc0\xda\xac\x3d\x06\xf8\x48\x98\ \x91\x80\x5c\x65\x2d\x1a\x83\xef\x2c\xe9\xea\x58\x7d\xe4\xdc\xb5\ \x52\x92\xe8\xe8\xa1\xe2\xa7\x96\x04\x3b\x51\x52\xb5\x21\x02\x13\ \xae\xd2\xe5\x26\x49\x2f\xc7\x76\xb8\x6f\x1c\x51\x32\x8a\xc7\xdd\ \x1c\xfe\x15\x0f\x99\x13\xe3\x3e\x41\x1d\x0d\x28\xad\xab\xb3\xba\ \xb2\x4e\x33\x2d\x4e\xa4\x24\xdd\x50\x48\xbe\xac\x5f\x43\xc9\x54\ \x28\x29\x30\x07\xbb\x30\xbd\xb1\xa2\x6b\x44\xba\xe8\x4d\x6f\x1f\ \x9e\x0e\x35\xe5\x97\xae\xf0\xe8\x4c\x51\x42\x0e\xb9\x31\xa1\x39\ \xa4\xd8\xc2\xd4\xe9\xae\x19\x31\x4a\x4b\x59\x22\xdf\x98\xd0\xcc\ \xce\x66\x9e\x0d\x6a\xdb\xf2\x36\x31\x42\x35\x03\x8d\x87\x47\x9e\ \xa7\x7f\xff\xdb\xdf\x45\x86\x1d\xb7\xbb\x67\x9c\x71\x7f\xf5\xe7\ \xa7\x0f\xc7\xc7\x6f\xbf\x57\xbd\x29\x44\x4c\x8f\xe3\xd0\xe3\xf8\ \xee\xfb\x1f\xfc\xfe\xfa\x7c\x3b\x8e\x83\x74\x3d\x5a\x1c\x2d\x86\ \x2f\x4b\x2d\x86\x69\xd9\x1b\x83\xfe\x79\x75\xa9\x39\x48\x61\x9a\ \x75\x72\xfb\x88\x3b\x2d\x7a\xf9\x06\xd3\xc5\x2a\xa1\x66\x52\x99\ \x17\xe2\x79\xf6\xf6\x9c\xb8\x28\x4f\xf9\x71\x1c\x37\x55\x71\xf7\ \x48\xd8\x71\x64\x4a\x04\xfd\x07\xac\xee\xcc\xf2\x5a\x4f\x81\xc1\ \xb2\x62\x1e\x09\xc8\x87\xa4\xc2\xa3\x76\x8d\xd5\x52\x22\x69\xe8\ \xe3\x88\x44\xa8\x28\xb3\x2a\xa4\x3d\x81\x1d\x8c\x0d\x84\xa5\xdc\ \x05\x24\xae\xf1\x1d\x64\x1b\x26\x10\x71\x18\xb8\x7b\x49\x11\xf5\ \x93\x6e\x54\x47\x88\xb2\x14\xab\x29\x92\xfe\x73\x14\x83\xa3\x90\ \x81\x19\xb1\x8b\xa5\x2a\x29\x62\x13\x29\x47\x6d\x96\x68\x81\x8b\ \x4c\xd2\x00\xd6\x01\xf1\x7a\x5f\x86\x8d\x33\x2c\xb2\x1e\xb3\xf8\ \x84\x3a\x84\x53\xb3\x15\x96\x58\x89\xbe\xa5\x45\x50\x01\x8f\x51\ \x9d\x00\xf6\x4c\xad\x0a\x48\x50\x50\x38\xee\x1e\x7c\x8d\x0f\x40\ \xe8\xa5\x49\x2b\xad\xb5\x2c\x8a\x48\x6b\x1b\x53\xc5\x51\x93\x83\ \xca\xfd\xfe\x1a\x2e\x46\x2d\x3c\x3d\xd9\x91\x29\xe2\xa2\x01\x22\ \xd1\x88\x4a\x5d\xae\x08\x1c\x71\xf1\x32\x40\x5f\xce\xd3\x0d\x35\ \x97\x36\x3e\x0b\x4e\xe8\xa4\xaa\x5a\x27\xf2\xb7\x2a\x0d\xd3\xe4\ \x87\xaa\x68\xf9\x62\x55\x37\x82\x95\xb0\x65\x22\xe2\xe9\xca\xf5\ \x44\x8a\xdc\x9e\x5e\xc4\x70\xde\xfd\x3c\xef\xcc\x60\xff\xf9\xe7\ \x9f\x8f\xbf\xff\xc3\x3f\x7c\xfa\xf4\xc5\x5d\x04\xf2\xf9\xd3\xfd\ \xe5\xc3\xf3\x77\x3f\xfc\x4e\xc2\x6f\x06\x40\xe1\x91\xc5\x26\xe2\ \x00\x9d\xab\xd4\x96\xd5\xa1\xa3\x37\x43\x51\x75\x9d\x18\x57\x20\ \xe9\x9b\x9a\xfb\xc2\xd1\x23\x05\x38\x6a\x88\x8f\xfa\x9a\x68\x3f\ \x80\xe8\xa8\x09\x1a\x69\xb4\x6a\xe9\x8c\xbb\xbb\xd8\x61\x6a\xb7\ \xcc\x3c\x3d\x13\x12\xa7\xa8\xc2\x8e\x67\x77\x7e\x55\x8a\x16\x91\ \x1a\x0d\xfd\x68\x59\x5f\x74\x51\xe3\xc2\x31\x6a\xe1\x05\x8f\x44\ \x8a\x99\x96\x74\xb0\xa2\x68\xb4\xc7\x9d\xd8\xed\xe0\xd8\x79\x91\ \xbe\xc1\xfd\x0c\x71\x05\x55\x03\xd4\x54\xcd\x6a\x76\xb2\x72\xe2\ \xd1\xe5\x01\x85\x56\x76\xc5\x8a\x38\x61\x2e\x54\x46\x54\x24\x95\ \xca\xda\xc9\x94\xd9\x42\xce\xda\x33\x7a\xed\xa3\xcb\x25\x70\x68\ \xb3\x0c\x48\x2a\xf3\xf6\x88\x51\xa6\xf4\x1f\xcb\x99\x02\x52\x66\ \x74\x1c\xb4\xab\x4d\xd6\xf7\xc0\xb4\x6c\x8b\xa4\x8a\xe7\x66\x14\ \x13\x0b\x51\x74\x3e\x27\x4f\x74\x67\xdf\x08\x74\x53\xe9\xc0\x1b\ \x7d\xaa\x9b\x4f\x40\xc7\xbc\x2f\xaf\x5f\xec\x38\x0e\xbb\x9d\x11\ \x9f\xbf\x7c\xf1\x33\x61\xf6\xf4\xf2\xf2\xf2\xe1\x9b\xa7\xdb\xf3\ \xfd\x9e\xf7\xf3\xf4\xb3\xc2\xc8\x24\x42\x33\x9c\xf7\x74\xef\x57\ \xbb\xd8\x6a\x6a\xd9\x3f\xb3\x7d\xf2\xd1\xff\x89\x38\xe4\x5c\x1b\ \xcc\x5c\x1c\x29\x21\xc8\x00\x9e\xb7\xa6\x59\xa8\x8c\x42\xd9\x25\ \x90\x88\x48\x7e\x75\x09\xa8\xcb\xa9\x9e\xa2\x7a\xcb\xf3\xb4\x27\ \x7b\x7d\x7d\x3d\x44\x54\xcd\x4e\x77\x55\xfb\xf1\xa7\x9f\x7e\xfe\ \xf9\x67\xe2\x42\x4c\x07\x61\x8f\x8a\x0e\x1f\xee\xac\x48\x54\x74\ \x1b\xe3\x80\x6a\x75\x18\xc3\x2e\xc9\xd1\x3f\x64\x6f\x83\x4a\x43\ \x81\x70\xcf\xe4\x5b\x23\x1e\xde\x5f\xb0\xfc\x5b\xf9\x28\x22\xf2\ \xf4\x7b\xaf\xa2\x39\xc2\x85\x02\xa7\x27\x3e\xbd\xbe\x9e\xaf\x9f\ \x7e\xfd\x7c\x3b\x6e\xb7\xa7\xa7\xe7\xa7\xdb\xc7\x8f\xdf\xfc\xfc\ \xcb\xa7\xd3\x4f\x6b\x22\x4f\xa7\x5f\x54\xbc\xd7\xb6\xb3\x2b\xa2\ \x0b\x3c\xd8\x27\xf0\x32\xab\x6e\xa6\x00\x2c\x8e\x73\xbb\xfb\x66\ \x75\xc8\xd6\xaa\x1c\xd6\x58\xb3\x46\x08\xa8\x31\x68\x6e\x0c\x14\ \x87\xc2\x4c\x8b\x74\x43\xf4\x7a\x49\x61\x4a\x77\x30\x7a\x11\x34\ \xcb\xa0\xb5\xc9\xcd\x0e\xd3\x8d\x30\x50\x76\x67\x83\x12\x8e\xf7\ \x6d\xc7\x98\x16\xbd\xb6\x72\xa0\x3a\x59\x1d\xa3\xb3\xb7\xd2\x40\ \xe9\xd0\x97\x72\x2d\x43\x2b\x61\xb0\x62\xa2\x9b\x90\x1e\xb9\xe8\ \x1f\x0c\xfd\x53\xd8\xb6\x5a\x64\xe8\x50\x60\xd4\xb0\x1d\xed\x5b\ \x7b\x2e\xed\xa9\xf2\xe8\x29\x4e\x21\x7e\x9e\x22\x1e\x71\x9e\x7e\ \xde\xfd\xaf\x3f\xfe\xf2\xcb\x4f\xbf\x7e\xf8\xf8\xf1\x5b\x51\x39\ \x9e\xe5\x26\x2a\x16\x66\xaf\xf7\xd7\xfb\xeb\x5d\xa1\xe7\xf9\x5a\ \x3f\xd3\xc4\xcb\xac\x20\xd6\x81\x9f\x44\x81\xd3\x7d\x79\x75\x49\ \xfb\xe2\xf4\x5c\x58\x11\x74\x43\x05\xa2\xe7\x58\x0c\x35\x1e\xbd\ \xcc\xa8\xd8\x00\xc3\xad\x52\x0a\x24\x04\x6c\x34\xf5\x38\x9e\x45\ \x11\x11\xb7\xdb\xed\xf0\x68\x43\x23\xe8\x79\x06\xe7\xef\x58\xb6\ \x17\x94\x1f\xc9\xd2\xac\x46\x63\x89\x63\x83\x9e\x65\x77\xa4\x03\ \x90\xfb\xd9\x24\x21\x16\xe7\x48\x0a\x6c\x02\x4c\xb1\x13\x91\xf0\ \x0a\x27\xe1\x91\xf1\x68\xc3\x50\x6e\xc1\xda\x9d\x03\x90\xe3\xb8\ \x11\x00\xfc\xfc\xe5\x1e\x82\xcf\x5f\xbe\xfc\xf9\xcf\x7f\xf9\xf6\ \xc3\xc7\xef\x7f\xf3\x43\xa6\xdc\x9e\xe3\xf5\x7e\xfa\x79\x86\xa5\ \x5a\xd1\x31\x69\x80\x14\xd9\x5c\xef\x5c\x4a\x46\x62\x2b\x2a\x6d\ \x5d\x31\xff\x94\x13\x6f\x91\x2e\xd0\x01\xa0\xcc\x7b\x2a\x5e\x76\ \xca\xb0\xff\x06\x46\xaf\xa8\x6a\x53\xa8\x12\x77\x01\x89\x4c\x7c\ \x51\xb4\x17\x2e\xc4\xec\x47\x3d\x0a\xa8\xe4\x16\x0e\x58\x2a\xa0\ \x32\x53\x90\x45\x94\xc4\x62\xf1\x8b\x0e\xa9\x22\x2b\xda\x63\x42\ \x78\x73\x84\xe0\x5c\xa6\xed\x10\x5c\xdb\x2d\xd4\x2d\x2d\x8d\xb4\ \xf6\x30\x8c\xe1\x3f\x51\xd7\x3a\xe1\x6a\x58\xbb\x1a\xda\xe3\xaf\ \x5d\xa7\x2c\x0f\x02\x54\x94\x60\x39\x64\x56\x78\x77\xb4\x53\x39\ \x3f\x1d\xc2\xb4\xe7\xe9\xf7\x2f\x77\x51\x3c\x3d\xbd\xbc\x7e\xb9\ \x4b\xc8\xf1\xf4\xf4\xcb\xaf\xbf\x7e\xff\xdb\xdf\x08\x45\x32\x21\ \xd0\xe3\xe7\x4f\x3f\xfe\xf7\xff\xf6\x7f\x87\x47\xf8\x17\xfa\x2f\ \x77\x4a\x48\xec\xfc\xfa\x88\x21\x94\xc2\xdd\x73\xc5\x8a\x4e\xe7\ \xdb\x5e\x31\x7d\xd3\xb3\xb7\x3c\xe1\x8d\x6f\x11\xcd\x44\xc3\xd3\ \x84\xf9\xe5\xc0\x51\xf6\xd2\x59\x67\xfc\xbb\x1f\x7e\xf8\x77\xff\ \xee\x7f\xfb\xe6\xe3\x47\x9e\xde\xe3\xbf\xfc\xe3\x3f\xfe\xfe\xf7\ \xbf\xff\xf6\xe3\xf7\x22\xf2\xe5\xbc\xff\xe5\x2f\x7f\xf9\xfc\xf9\ \xb3\x34\x97\xc2\xc3\xc3\x83\x48\x40\xc6\x44\x20\xa4\x76\xc1\x99\ \xb0\x06\xa9\x0d\x0d\x5b\x52\xe7\x52\x2d\xe2\xcc\xb6\x8a\x55\x33\ \xfe\xea\x9d\x91\x54\x4c\xa4\xac\x2b\xae\xac\x67\x5a\x72\x6b\xee\ \x6e\x76\x7c\xff\xc3\xf7\xbf\xff\xc3\x1f\xeb\x7a\xd3\xdb\x87\x97\ \x97\x4f\x5f\xee\xdf\x7d\xf7\x43\xdc\xcf\xfb\xfd\x8c\x97\x97\x92\ \x45\x33\xb9\x4d\x0c\xc4\x24\xa0\x59\x58\xcf\x98\x00\x76\xe8\x40\ \x87\x47\x66\xb9\x84\x56\x6b\x5f\xa8\x9f\x04\xf7\xfa\x15\x83\xc2\ \x38\x19\xbe\x57\xca\xcc\x44\xd1\x14\x35\x35\x1f\x6d\x6a\xa2\xcc\ \xdb\x6b\x75\x74\x33\xab\x78\x83\x71\xd0\x69\x8a\x4a\xd5\x43\x70\ \xd9\x59\x2d\xdc\xac\xa8\xb5\xa4\x60\xc3\xa8\xb0\xce\x59\xef\xb5\ \x0f\xb5\x37\x45\x0d\x18\xd2\x5d\xc1\x72\x95\x8e\x55\x02\x90\x0d\ \xb9\xaa\xf7\x46\x53\xd2\x4c\x1b\x02\x4b\x11\x31\x33\x26\x04\x91\ \x45\x3a\x2c\x1b\x05\x20\x5a\x61\x4c\x14\xc6\x2e\x19\x5f\x23\xf6\ \x4d\x8e\x99\x92\x97\x2d\xef\xe1\xed\x3a\x2b\x2f\x51\x2a\x75\xe4\ \x7e\x3b\x01\x39\xcf\xf3\xe9\xe9\xc8\xf8\xf0\xeb\x2f\xbf\x7e\xf7\ \xdd\xef\x7e\xfd\xf2\xe9\xc3\xcb\x8b\x42\xc3\x83\x30\x8a\x42\x3e\ \x7d\xfa\xf5\xf5\xcb\x17\x49\xe6\xc5\xd4\xa0\x53\xf6\x2f\xb2\xf8\ \x95\x2c\x40\x95\x79\xd1\x8a\xbf\xda\x0d\x65\xfb\xa8\x56\xc6\xbd\ \xd2\x45\x0e\x06\xaa\xe2\x0a\x39\x1e\x46\x7e\x75\x92\x21\x29\x9e\ \xa7\x0a\x14\x79\xfa\xfd\xcb\x97\x5f\x7e\xf9\xf4\xc9\x0e\x8d\xb8\ \x8b\x84\xfb\xf9\xf2\xf2\x7c\xfc\x97\xff\xe3\x1f\x7f\xf8\xfe\xb7\ \xdf\xfd\x60\x11\xf1\xf4\xfc\xfc\xd3\x4f\x3f\xfd\xf9\xcf\x7f\x46\ \x1f\x06\x68\x56\x68\x48\xc4\x9e\x6d\x8f\x0a\x90\x71\x8f\x38\xa8\ \xd3\x2c\xbd\x64\xfb\xe5\xb7\x47\x46\x2b\x05\x52\x96\xf3\xd3\x22\ \x4d\xd2\x61\x5e\x76\xe6\xad\xa8\xdd\xcc\x13\xe1\x72\xb3\xdb\xf7\ \x3f\x7c\x7f\xbb\x1d\x5f\xbe\xbc\x86\xe0\xa6\xfa\xf1\xdb\x6f\xff\ \xe5\xaf\xff\xfa\xdb\xdf\xfd\xf6\xa7\x9f\x7e\x3a\x6e\xa6\xca\x90\ \x17\xa9\xa0\xed\x72\x72\xca\x6a\xa8\x17\x3d\xe0\xb2\xb0\x21\x26\ \x44\xc2\x58\x81\x7e\x28\xbf\x63\x22\x50\x2a\xa2\x07\x5a\xf1\x4f\ \x44\xc1\x14\x75\x31\xd0\x02\x48\x21\x6a\x38\x94\xc3\x6d\xda\xa1\ \x34\xf4\x20\x3d\xf5\x66\x7a\x7b\x3a\x4c\xad\x7c\x0e\x8b\x79\xa0\ \x59\x7f\xdf\x89\xab\xd9\x2c\x09\xa0\xa3\xfc\xca\xde\x7a\xb0\xac\ \xd6\x6a\xd7\x6b\xa1\x09\xa8\xc4\x26\xbf\xd8\x42\xac\xd0\x92\xfd\ \xee\x99\x39\x43\xf6\x25\x5d\xbb\xcc\x65\xfd\xde\x43\x77\xa4\xc8\ \x19\x5b\xb0\x42\x0f\xe3\xb2\x82\xd0\x01\x09\xa5\xf7\x08\x3a\x79\ \x30\x77\x64\x6d\x1b\xd8\xa1\x5a\x50\x86\x69\xa5\x04\x43\xa0\xfa\ \xe5\xbc\xbf\xbe\xde\x9f\x9e\x5f\xce\xcf\xaf\x7f\xfc\xe3\x3f\xdc\ \x6e\xb7\xbf\xfe\xf5\xc7\xff\xf0\xbf\xfe\x2f\x9f\x3e\x7f\x79\x2d\ \xa9\x78\xaa\xc4\xcb\xed\xf6\xcd\x87\xe7\x83\x20\x49\xf9\xba\xd6\ \xb9\x41\xe9\xe4\xa0\x80\xa7\xb3\x1b\x2f\x42\x43\xd7\x5e\x40\xdb\ \xd4\x05\x23\x45\x6b\x7a\x64\x5d\x29\x9d\x5c\x58\xc4\xec\x9c\xac\ \x48\x6e\x7d\xc8\x97\xca\x78\x3d\x3f\xe9\x2f\xa7\xc7\xfd\xe9\x66\ \x93\xd2\x72\x1c\x76\x7c\xfc\xf8\x51\xd5\xf8\xed\x5e\x5e\x9e\x7f\ \xf3\x9b\xdf\xfc\xf5\xaf\x7f\x85\xe6\xf3\x71\x43\x39\x01\xe8\x18\ \x87\xcb\xca\x91\xae\x8a\x71\x46\xb4\xa9\x1c\x5d\xbc\xa3\x6c\xc2\ \x88\x6e\x66\xe7\x45\x94\x41\x94\x22\x85\x61\x09\x95\xc6\x18\x67\ \x6d\x6a\xab\x29\x56\xb6\x91\x27\x7d\x7a\xc4\x6e\xb7\xdb\x79\x7a\ \x64\xa8\x1d\x66\xaa\x66\x7f\xf8\xc3\xdf\xff\xb7\xff\xfe\x7f\x7e\ \xf3\xcd\x87\x97\xe7\x67\xb3\x42\x98\x6b\xaf\x93\xed\x1e\x95\xfd\ \x81\xb5\x21\x50\x0c\xb7\x2b\x9a\x36\x07\xa1\xdf\x69\x1f\xe4\x68\ \x22\x20\x02\x15\x28\x54\x7b\x92\x79\x83\x15\x0a\x1c\xb5\xe8\x89\ \x3e\x91\x79\x1c\xda\x0a\x85\x30\xe0\x76\xbb\x65\xc6\x61\x06\x80\ \x49\xe0\x90\x54\x33\x83\x7a\x9c\x3c\x7c\xbc\x5b\xc8\xd2\xe8\xb5\ \x3c\x13\x28\x7d\xe3\x98\x43\x17\x55\x06\x1b\x18\xd9\x39\xec\x7d\ \xe9\x43\x0f\x2c\x22\x38\x69\x1f\xc3\xac\x29\x46\x86\x9a\x8a\x24\ \xbc\xf9\x28\xb9\xf7\x87\x52\x6c\x6c\x09\x49\xd1\x8a\x33\x92\x88\ \x64\x1c\x45\xf3\x39\x74\x2d\x83\x8a\xa9\x53\x35\x8d\x96\xe4\xe5\ \x4a\xa6\x30\x68\xc5\xbc\x4e\x15\x82\x08\xe0\x7e\x7e\xfa\xfc\xc5\ \xdd\x53\xf0\xcf\xff\xfc\x97\x3f\xfc\xf1\x1f\xfe\xf0\x87\x3f\xfd\ \xf5\xa7\x9f\xce\x08\x3d\x9e\xe8\x2d\xad\x96\xc7\x61\xdf\xbe\xbc\ \x7c\xa2\xab\x7a\xf1\x78\x7a\x50\x0e\x02\x6c\xa4\x8f\x9a\xa6\x44\ \x91\xa5\xa9\xd8\xa6\xae\x86\xd1\x9c\x3a\x91\x59\xb2\x74\x1a\x10\ \x01\xc2\x49\x57\xa7\x21\x70\x2d\x7c\x0c\xa6\xd0\xfa\x96\x90\x0c\ \x64\xa8\xa6\xfb\xab\xfb\xfd\xe5\xf9\xc9\xd8\x11\xa9\x8a\xc8\xf1\ \xcd\x37\xdf\x3c\x3d\x3f\xa5\x87\x28\x8e\xdb\xed\xe9\xe9\xf6\xf2\ \x72\x33\xb5\x97\xa7\x5b\x71\x37\x23\xe3\x38\x26\x72\x19\xfd\x69\ \x4a\x8a\x5a\x80\x50\x72\xc2\x4c\x91\xf4\x52\x80\x2a\x98\x45\xab\ \x75\x6a\x9a\x76\x28\x48\x0f\xc5\xa1\xa6\x22\x71\x8f\xbb\xa4\x49\ \x1a\xd0\xf4\x63\xda\x95\x89\xba\x1a\x29\xe8\xc7\x4d\xf9\x21\x84\ \x9f\xe7\xe9\x3f\xfd\xf8\xe3\xf7\xbf\xf9\xee\xdf\xff\xdb\xff\xf9\ \x97\x5f\x3f\x7d\xf9\xf4\x59\x0c\x11\xe7\x79\xde\x49\x48\xbd\x33\ \x32\xa0\x76\xec\x39\x59\xc8\x54\xc9\x8a\x12\x8b\x8c\x35\xd5\xaa\ \xaa\x2a\x2d\x44\x94\xc6\xf1\xad\xaa\xc4\xcc\x73\x8b\xfa\xaf\xc6\ \x89\x24\xc5\x68\xb9\xab\x5c\x23\xc1\x6a\xe6\xad\x1d\xe8\x93\x99\ \x48\x1e\xc7\xa1\x45\x8b\x4b\xd3\x02\xda\x22\x52\xdb\x21\x1d\x8a\ \x11\xf6\x96\x3b\x0f\xd2\x9d\xdd\x9d\x2e\x2a\xe9\xa6\xa3\xc2\x62\ \x22\xcb\xa8\x6b\x52\x24\x3d\xf4\x30\xa4\x38\x9b\x82\x0d\xc1\x23\ \x7e\xd5\xd2\x23\x59\x5e\x25\x6b\x4c\xa2\x75\x77\x6c\xea\x6d\x69\ \x3b\x6f\xbe\x55\x96\x99\xbc\xbc\x96\xa3\x93\xa7\x9f\x27\xaf\x4a\ \xce\x58\x91\x41\xbd\x71\x2e\x77\x56\x5e\xa8\x02\x09\x6a\xe3\x3f\ \xbf\xbe\xbe\xde\x5f\xed\x78\x52\x3d\xe4\xbc\xff\xd3\x7f\xfd\xbf\ \x44\xec\x8c\x7b\x28\xe0\x72\x3c\x7f\x80\x59\x04\x8e\xdb\xd3\x77\ \x3f\x7c\xff\xf2\xcd\xc9\x21\x9e\xa3\x00\x00\x20\x00\x49\x44\x41\ \x54\x87\x9b\x46\xc6\x59\xd1\x38\x95\xf8\xe4\xad\x9f\xa2\xb7\x66\ \xa1\xe1\x01\x19\x5e\x08\x12\x01\x9c\x98\x30\x85\x61\xaa\xd4\x64\ \x7e\x40\x81\xf4\xd8\x7d\xd5\xd8\xf1\xaa\x36\xcf\x2b\x22\x20\x11\ \x71\x98\xa6\xa9\x3d\xbf\x7c\x50\x28\x9a\x0c\x75\x7c\xf8\xe6\x43\ \x26\x09\xe7\x7a\xbb\xd9\x77\xdf\x7d\xfc\xdd\x6f\x7f\x67\x8a\xa7\ \x9b\xdd\x14\x92\xf2\x9a\x38\xc3\x57\xd6\x1b\x27\x03\x4a\x44\x4f\ \x0f\x82\x9e\x7e\x6a\xd5\x1f\xe7\xd5\x14\xe7\xa9\x19\xa6\xea\x91\ \x22\x69\x50\x8e\x89\xfc\x3c\xb5\xba\x60\xf7\x32\xf2\x2e\x17\x22\ \xe2\x58\x6a\xf6\x9a\x1a\x99\x6a\x76\x3b\xcc\xdd\xdd\x03\x86\x88\ \xf8\x72\xff\xf2\x2f\xff\xe3\x8b\x88\x7f\x79\x7d\x85\xc0\xec\x25\ \x25\x6f\xb7\x83\x77\xa4\xdd\x4a\x29\x4d\xb8\x39\xe2\xec\xa6\x89\ \xac\x64\x04\xdf\xa1\x72\x0e\x57\x40\x4c\x3b\x14\xaa\x77\x85\x5a\ \xb5\xab\xaa\xe6\x70\x0c\x3a\xb8\xc2\x2a\x40\x50\x12\xca\xe8\x09\ \x04\xa3\x83\x45\x99\xf8\x7e\xbf\x07\x80\x0c\x67\x3b\xe3\x11\x6a\ \x34\x7b\xf2\xde\xd7\x4b\x0d\x60\xb5\x9b\x10\x20\x96\xac\x8a\x08\ \x4e\x4a\x7b\xf1\xa2\xec\xce\xbb\xcb\x82\x80\x79\x60\x75\x0b\xf4\ \x7a\x6b\x9b\xd6\x6b\x4a\x04\xe3\xd9\xce\x53\x32\xd5\xd4\xbd\xc6\ \xc8\x2d\x75\xb3\x7a\xbc\x70\xcf\xf1\xcd\x20\x4f\x39\xca\xb9\xaa\ \x52\x8d\x04\xc4\xf9\x8b\x83\xd3\x2c\x81\x01\xb1\x69\x0d\x12\x99\ \xec\x4d\x6a\x0c\x03\x32\x03\x12\xee\xee\x19\xee\x11\x29\x1f\xbf\ \xfd\x56\x44\x4f\xe7\xbe\x56\x5c\xd2\x45\x3e\x7e\xf7\x9b\x3f\xfd\ \xdb\x7f\xff\xf2\xcd\xcd\x25\xc8\xa2\xb8\xa9\x19\x04\x86\x60\x1c\ \x6c\x75\xdf\x2a\x5e\x60\x5f\x04\x09\xe7\x8d\x95\x07\xed\xe5\xea\ \x2c\xbc\x24\x66\x11\xba\x08\xa9\x86\x90\x34\xb3\x9a\xc1\xeb\x7a\ \x92\xb5\xc0\xd9\xa8\x9e\x83\x22\xb5\xe2\x44\x14\x9a\x1a\xe7\xfd\ \x7e\x28\xe2\x76\xa8\x78\x1e\x4f\x7a\x33\xfd\xf0\x74\x7c\xff\xf1\ \xa6\x22\xa6\x07\x07\x82\x0f\x40\xe2\xc9\x3d\x30\xf1\xda\x74\xa4\ \xee\x95\x2c\x44\x3d\x9c\xad\x46\x44\xb0\x03\x8c\x9b\x32\xc9\xfb\ \x8c\x2c\x6f\x55\x01\xd1\x15\x85\x32\x13\x57\xca\x24\x21\xc2\x3b\ \xb9\x21\x0b\x44\x7f\x16\x9c\xc5\x0e\x27\x0d\x44\xcf\x2f\xe7\xbf\ \xfe\xf4\x3f\xee\xee\x4f\x76\x84\xfb\x71\x1c\xe1\xe7\xd3\xf1\xcb\ \xb7\xdf\x7d\xfc\x97\x7f\xf9\x7f\x25\xbc\x20\x05\x36\x03\xe9\xe9\ \x64\x96\x37\xac\x5d\x7a\x0f\xaf\x06\x45\xb7\x0e\x43\x2e\xe2\x2d\ \x66\x57\x66\x89\xf2\x2b\x85\x59\x13\xe2\x51\xd2\xd1\xaa\xf5\x51\ \x6a\x84\x0c\x50\xfe\xa3\x2e\x27\xeb\x78\x03\x1d\x11\x51\x39\x23\ \xe8\xba\x2f\x09\x76\xb2\x01\x59\x9b\x4a\x4a\xd5\x24\xc3\x23\xd0\ \x86\x21\x9b\xb2\xaa\x93\xdf\x1b\xc6\xac\x4b\x75\xd4\x8f\x14\xf7\ \x61\x0b\x6d\xc9\x21\x9c\x6b\x4a\xcc\x6e\x55\x5a\x08\x36\x52\x4c\ \x32\xec\x8b\x58\xda\x34\x50\x82\x0d\x87\x5a\xf3\x88\x25\x44\xd8\ \xcc\x2f\xda\x0d\xed\x44\xaa\xc3\xaf\x39\xbc\x34\xad\xaa\xd8\xa2\ \xf7\x52\x25\xdd\xef\xa7\x7b\xa4\x9a\x1e\xcf\x1f\x3f\x7c\xf3\xc1\ \xd4\x0f\xb3\xd3\x1d\xa6\x87\xda\xd3\xf3\x33\x20\x79\x46\xb4\x59\ \x5a\x27\x9f\x57\x96\x6b\x53\x51\xb2\x73\xa1\x97\xa1\x97\x08\x43\ \x09\x52\x56\x98\x50\xf4\xbe\x2b\x28\x10\x63\xaa\x99\x88\xdc\x54\ \x23\x5d\x0a\x47\xca\x0d\xc0\x58\xbf\xb8\x28\x1b\xbc\xd0\x90\x03\ \x38\xa4\x32\xd1\x22\xf3\x0c\x79\x31\x3d\x90\x61\x86\x70\x97\x34\ \x09\xcf\x38\xd3\xef\xa0\x7b\x5f\x6a\x15\x2f\x71\x8d\x09\x65\x6b\ \x2b\x93\x4c\xa3\x8e\x20\x4e\x6b\x86\xaa\x95\x51\x79\xda\xe0\x98\ \x59\xa1\x40\x4d\xd5\xcf\xe2\x15\xf8\x89\xde\x98\x32\xf6\xb2\x29\ \xef\x0c\xf0\x11\x53\x74\xd2\x0f\xd3\x1f\x09\x76\x58\x04\xf5\x5d\ \x26\x82\x54\x3b\x3d\x7e\xfc\xe9\xa7\xf3\xf5\x8b\xe4\x89\x4c\xb5\ \xa3\x3c\x3d\x68\x41\x98\x63\x07\x44\xe4\x37\x65\xdf\xa2\xbf\xd1\ \xc4\x72\x26\x8c\xca\x05\x9c\x94\xf3\x8a\x6b\xd8\x1c\xd3\x95\x0f\ \xb2\x63\x9d\xb6\xf4\x72\x91\xc3\x34\x17\x4f\x1e\xaa\x26\x92\x6c\ \x71\x2f\xdf\x32\x73\xa5\x06\x57\xe0\x47\x96\xe3\x4d\x0f\x66\xe5\ \x86\x3c\xa1\x3b\x63\xcc\x27\xa3\x98\x2b\xf8\x86\xdd\x85\x7b\x14\ \xe6\x3d\x49\xf7\xb4\x50\xae\x65\x4d\x47\x43\xca\x78\xc1\x30\x12\ \xcc\xd5\x8c\x83\x41\x6f\x37\x0b\xb4\x65\x50\x33\x3d\x32\xa9\x91\ \xc8\x36\x7b\x86\xf0\x38\xea\x1e\xcf\xb8\xa1\x74\xdd\x4f\xb6\x2a\ \x3d\x22\xbe\xf9\xf6\xdb\x3f\xfd\xe9\x4f\x7f\xff\x87\x3f\x7e\xf7\ \xfd\xf7\x11\x71\x1c\x07\x7f\x46\x17\x39\x6e\x4f\x4f\xc7\xad\x01\ \xee\x50\xc8\x5d\xe2\xa8\xfe\x49\x03\xa1\x8b\xf1\x28\x1b\xb4\x9e\ \x7d\xae\x42\x72\xc5\x13\xa5\x44\x94\x02\x34\x3a\x89\xa2\xab\x29\ \xe3\xac\xeb\x4e\x72\xae\xbc\xa8\xaf\x29\xdb\xa9\xc2\x76\xeb\xd3\ \x2d\x2e\x66\x30\x70\x98\xcd\x12\xfd\xc7\x0a\x36\x44\x65\x1e\x45\ \x6f\x3a\x11\x52\x82\xd7\xba\x7d\x2f\xf4\x40\x4e\x68\x31\xad\x5b\ \x2c\xeb\xc4\xe5\xc0\xde\x2d\x75\xbb\x64\xaf\xd6\xb7\x17\x26\xc9\ \x1a\xb4\x8c\xa0\x2a\xf6\xad\xda\xd4\xe0\x16\x27\x9f\x5f\x9e\xbf\ \x7d\xfa\x4e\x55\x0d\x07\x60\x0a\x8d\xf0\xe7\xe7\xe3\x76\xd3\xcf\ \x9f\x7e\xfd\xe7\xbf\xfc\x3f\xbf\xfc\xf8\x8b\x9f\x77\x85\xf2\xf1\ \xab\xaa\x7b\xb9\xe3\x47\x3b\xf9\x8b\x65\x78\x34\xa9\xba\x9a\xd9\ \x59\x75\xe8\x98\xe9\x4b\xd0\xf6\x20\xaa\x5b\x66\x52\x7a\x2e\x59\ \x78\x83\xee\x2b\x5a\x60\x2c\xcf\x07\x05\xee\x0a\x5f\xb8\x59\x44\ \x09\x63\x56\x91\xab\x74\x4a\xc2\x80\xc5\xb1\xac\x2f\xd2\x58\x6b\ \xae\xb0\xc0\x46\x57\x73\x52\x32\x9b\x63\x82\xf0\x20\x3b\x23\x32\ \xca\xc4\xb2\xbe\x74\x77\x28\xd5\xe6\x57\x42\x6d\xfd\x88\x7d\x59\ \x9c\x71\xaa\x22\xcf\x84\x5a\x6e\x8f\x51\xc0\xc6\x8c\x9a\x8b\x94\ \x76\xc4\x1b\x37\xb8\x19\xb3\x72\x14\xad\x5d\xdd\x87\x6b\xcd\x24\ \xd9\xcc\x34\xb5\xff\xf0\x9f\xfe\xe3\xff\xfe\x9f\xff\xd3\x77\xdf\ \x7e\xf8\xf8\xe1\x25\x3d\xed\xb0\xa4\xcb\x33\x14\x6a\x27\x83\x2b\ \x7b\xf1\xc6\x60\x77\x2d\x42\x93\x8c\xe6\x4e\x86\x42\x56\xf6\x9f\ \xd8\x43\x88\x47\x2d\xbb\x6d\xb8\xe6\x23\xeb\x36\x6c\x2c\x22\x28\ \xcd\x08\xb4\xd2\x21\x3a\x18\x7a\xd8\x78\xdc\x1d\xa3\xef\xaf\x50\ \xc0\x4f\x3f\x22\x62\x24\x65\xed\x5b\x2d\xfb\x85\xb1\x47\x1f\x8f\ \x04\xbd\x50\x49\x26\xcb\xa7\x84\xb8\x34\xe2\xd9\xc4\x75\xde\xf3\ \x56\x2e\x3e\xaa\x25\xcb\xd3\x0e\x4b\x50\x88\x93\xab\x17\xcd\x18\ \x6a\xdf\x91\x46\x2f\x7b\x99\x42\x14\x0e\x4f\xb7\x9b\x9a\x89\x00\ \x72\x88\xc8\xed\x66\x6a\x7a\x98\x3e\x3f\x3f\xff\xfa\xcb\xcf\xff\ \xf5\x9f\xfe\xe9\xd3\xaf\x3f\xc9\xe9\xda\x3f\xb4\xd4\x6d\xb3\x3e\ \xed\xa0\x60\x51\x91\x11\xde\xbe\x17\xa5\x07\xe4\xb1\xd9\xec\x6c\ \x72\xc2\xd5\x20\x29\xa7\x8c\x20\x4f\xf6\xe4\xe5\x6c\x9b\x1a\x93\ \xe1\xab\x44\xeb\xcd\x96\xdb\x94\xb4\xe2\x45\x47\x76\x2f\x10\x91\ \x73\x77\x72\x2b\x36\xc6\x70\x0a\xa0\xd9\x36\x9e\xb3\x23\xa2\xbd\ \x49\xca\x58\xf4\xd7\xc5\x7f\xd6\x54\x49\x8a\x6f\x2c\x9c\x5f\xc0\ \x88\x2f\x49\x27\x94\x4e\xa6\x66\x6d\xd9\xe8\xfa\x19\xae\xd0\x88\ \x50\x3d\x8a\x6b\xbc\x57\xcf\xdc\x35\xe6\x6c\x3c\xf7\x08\x6d\x7a\ \x96\x5d\x22\xb5\xc7\x70\x69\x99\x66\x24\x6e\xb7\xdb\xa1\xf8\xf0\ \xf2\xf4\x74\x98\x41\xd2\x52\x85\xbc\xc4\xe0\xeb\xa1\xa4\x08\xd5\ \xd7\x71\x4e\x55\xd9\x32\x9f\xcd\x63\x27\xcb\x3b\x6d\x97\x31\x6c\ \x31\xc6\xb3\x7e\x5a\xfe\x79\xcd\x6e\x59\xc9\xde\x32\x14\xb5\xf9\ \x4f\x5c\xac\x17\x89\xca\xce\x2d\x90\x2b\x9e\xce\xef\xe7\x61\x66\ \x7d\x89\x22\xc2\x3d\x4e\x46\x4d\xf7\x77\x8a\xdc\x36\xc3\x73\xf5\ \x35\x8c\xde\x29\xdf\x57\xdb\x13\x2a\x91\x90\xab\xb1\xc9\xdd\x6b\ \xa4\x9f\x48\x9d\x66\xd2\x08\x3b\xb1\xa3\x1a\xcc\xf6\x87\xdd\xd4\ \xbb\x15\x36\x99\xca\xfc\x29\xf1\x4c\xda\x17\x7e\xf8\xf0\xf2\xe1\ \xc3\x8b\x9f\xf7\xcf\x9f\x3f\xe1\x3c\x9b\x88\x96\x9b\x33\x6e\x4b\ \xcc\x57\x18\x86\xf4\x72\xa7\xa8\x43\x9e\x69\xb9\x9b\x71\x61\xb7\ \x07\x0d\xf8\x98\x71\xcd\xae\x60\xde\x0f\x81\x22\xbd\x33\x11\x22\ \x9b\x25\x50\xdc\xcd\xa2\xad\x20\x32\x4c\x8f\x48\xe7\x92\x0d\x02\ \x45\x0c\x79\xa4\x05\x13\xb1\xbc\x70\x07\x85\x4c\xcc\xe7\xce\xae\ \x41\xb7\x8b\xb4\xa2\x51\xc4\xb5\xe1\xa2\x36\x8f\x28\x2f\xda\xa4\ \xfb\xa5\x60\xd4\x95\x9d\xf6\xb1\x0e\x96\x96\xcd\x67\x4c\x44\x3c\ \x96\x9f\x4f\x06\x73\x43\xa5\xc3\x45\x16\x77\x7c\x85\x51\xc7\x7a\ \x45\x97\x8e\x1f\x17\x51\x50\xaa\xc1\x8c\x7c\xa3\x13\x7d\x23\x73\ \x4f\x5b\x49\xac\xc5\x3f\x8a\x92\xce\x74\x75\x5d\xee\x20\xcd\x5b\ \x28\xbd\xc9\xaa\x22\x98\x4e\xbc\x5f\xc8\x3a\xcf\x54\xe1\xcd\xa6\ \x4a\x9a\x42\xd4\x94\xd3\x90\xb6\xb8\xec\xce\x08\x40\x6a\x11\x24\ \xb9\xdf\xcb\x5a\x1f\x55\x05\xf6\xa3\x42\x5e\x2b\x84\xb1\xeb\x99\ \x2e\x11\xd2\x1b\x09\x94\x54\xa9\x2e\x17\xd4\x94\x0c\x5d\xbe\xf1\ \xc3\xe7\x6d\xe2\x5d\x5d\x1f\xf3\x72\xf4\xc5\x4f\xcd\xa6\x80\x7f\ \x60\xdd\x27\xad\x2d\x0c\x8c\xc7\x24\x26\x9d\x15\xd0\x62\x88\xaa\ \x06\x85\xb2\x80\xda\xf1\xe1\xc3\x87\xe3\x76\x68\xf1\x48\xb3\x24\ \x82\x45\x1c\x01\x37\x73\x2d\x4e\x96\x32\x76\x6c\x0c\x81\xfb\x12\ \x29\x28\x20\x4b\x83\x5e\xeb\xfd\x3e\x16\x7d\x9b\x6a\x0d\xd0\x6d\ \xd1\x56\xfb\xdc\xb1\x6e\xe1\x43\x2c\x8d\xfa\x8c\x10\x5c\xdc\x75\ \x86\x5a\x6e\x6d\x5a\xa9\x44\xc7\x74\xb2\x2b\x89\xb6\xb7\x06\xea\ \x31\x8f\x22\xb5\x74\x60\xdd\x99\x54\x57\xb3\xb8\x8a\xcd\x84\x96\ \x85\x04\x2e\xf3\x0c\x0a\xa3\x73\x23\x4a\x17\x1b\xad\x08\xfd\xbd\ \xfb\x9f\x82\x3d\xef\xa4\x60\x45\x59\xcd\xfd\x31\x21\x59\x7d\x35\ \x0d\x4d\x6e\x5f\x1a\x75\xcd\x6d\x23\x23\x64\x28\x8d\xfb\x49\x80\ \xa2\x85\x16\x72\x65\xc3\x63\x1c\x20\xc3\x14\x85\x25\xae\x54\xa5\ \x75\x81\x4f\xd1\xeb\x00\xe5\xa1\x38\x4a\x46\xbd\x59\xe3\x5f\x89\ \xe6\xe3\xd7\x12\x0f\xaa\x81\xe8\x05\x5f\xfb\x54\x46\x0e\x67\xa4\ \xb4\x5e\x9c\xf1\xa2\xfa\x26\x98\x88\xf0\xd8\x68\xa4\xaf\x88\xa2\ \xed\x35\x9d\x1f\xb0\x3e\xc4\xe1\x5f\x0c\xeb\x7c\xb8\x85\x35\xa7\ \xb6\xcb\x2b\x4b\x69\x87\x2e\x4c\x29\xdd\x82\xfd\x18\x37\xc7\xd7\ \x8d\xef\x9e\xb7\x1f\xb3\x66\x84\x28\xf5\x78\x3d\x1a\x93\x0a\x70\ \xde\x69\xcb\x5b\x9b\xe3\x8e\xa8\x7c\xba\x3d\x1f\x76\x90\x70\x5d\ \x53\x81\xd2\xf4\x9e\x1a\xf3\xe2\xff\xd9\x58\x2d\x8b\xe0\x9a\xa8\ \xce\xa4\xfb\x72\x4d\xd6\x49\xdc\x2e\x37\x7f\xe4\xee\x78\xa0\x92\ \x17\xe5\x49\xae\x0b\x78\xf9\x46\xe7\x64\x7d\x2e\x1f\xcf\x15\x40\ \x0b\x99\x8b\xbc\xcc\xbb\xa8\x14\x58\x86\x33\xa8\xec\x62\x74\x80\ \x16\x0f\x41\x54\xa1\xe9\xb4\x44\x8c\x89\x84\x4c\xf4\x56\x24\xae\ \x59\x51\xc5\xbd\x92\x2d\x0b\x66\x71\xcd\x62\xf2\xc6\x52\x34\x36\ \x2f\xb6\x0e\x3e\xdb\x72\xf6\xf2\xda\x50\xc8\x5a\xe5\xc8\x84\x08\ \x6c\xef\xcc\x0a\x41\x89\x38\x6f\xb7\xa3\xad\x23\x62\xec\x41\x29\ \x9b\x06\xd1\xe0\x5a\xfb\xd4\xc8\x19\x67\xcd\x99\x17\x39\x37\xda\ \xc6\xb3\x42\xb5\xd1\x32\xee\x98\x9c\xa5\x4c\x87\x88\x2d\xdc\x2f\ \xe6\x12\xe8\x04\x30\x1d\x77\x4f\x94\xa9\x79\x73\xb7\x29\xba\xd3\ \xb2\x5e\xef\x56\x8b\x18\xfb\xbc\x48\x72\x64\xa6\x1a\xd2\x31\xf3\ \x7d\x5b\xe9\xef\xbd\x59\x00\x1a\xe1\x51\x28\xca\x6a\xed\x81\xd5\ \xb9\xf1\x2e\x8c\x60\x94\x17\x72\xa9\xd9\x70\x9d\x9f\x77\x83\xc8\ \x04\x4d\x6f\xba\x55\xe7\xb6\xce\x19\xea\xc2\xfd\x41\xb6\x09\xb0\ \x8a\xaa\x78\x86\xe4\x1d\x50\xbe\x1c\x0c\xc0\x3d\x9e\x6f\x7a\x1c\ \x94\xfa\x13\xad\x6c\x03\xbe\x51\x97\x34\x8b\x38\xc7\x4a\x0f\x0d\ \x61\xf6\x43\x9f\x8d\x32\x09\x07\x55\x7a\x72\x62\xe1\x76\xf3\xed\ \x9c\x70\xc3\x95\x53\xb3\x09\x86\x07\xec\x7a\x68\x5e\x2f\x1e\xa4\ \xeb\x4a\x8e\x8e\x61\x6b\x53\x53\x1e\xbc\x40\x39\x86\xd6\xcf\x5c\ \x43\xb3\xae\x54\x92\xa6\xc0\x0c\x6f\x0d\x5b\x1f\x36\x43\x4a\x54\ \x82\xe7\x64\x38\x74\x1d\xdc\x1e\xb1\xec\xda\x90\x3d\x1c\x6b\x6f\ \xd1\xf7\x53\x93\x39\xb5\x5b\xe7\x27\xdf\x46\xf3\xf5\x07\xfb\x73\ \x13\x2b\xe6\x84\x8c\xdf\x2c\x3f\x21\x94\xda\xb9\xbc\x15\xe8\x30\ \xe0\x11\x46\x13\xd8\xb1\xae\x2b\x9b\x3f\x59\x5a\x6c\xfe\xa2\x46\ \xc7\xa9\x16\x02\x68\xe5\x1b\xae\x4b\x6a\x4c\x0d\x96\x33\xf8\x66\ \x1c\xb7\x92\x27\xe8\x39\x81\x6c\x9b\xcc\x9a\xc6\x07\x74\x8c\x90\ \xc3\x24\xf3\x58\x89\x14\xa0\x10\x8e\xc3\x06\xef\x7e\x7d\xf8\xe5\ \x67\xcc\x1b\xdb\xbe\xdd\x25\x91\x7d\x20\x69\xf4\x83\xc6\xcc\x2e\ \xa1\x9d\xea\xfb\x12\xac\x8f\x9b\x93\xf9\x76\x37\x6f\x5f\xb0\x86\ \xeb\xc5\x5d\x4d\xcf\x44\x44\xaa\x44\x9a\x00\xb0\x56\x89\xd8\x91\ \xaa\x1e\x6e\xb9\x3c\x4c\x2b\x24\xaf\x22\xc6\xfa\x5d\x6f\xec\x79\ \xa6\x89\x42\x99\xda\xaa\x71\x53\xdb\xe9\x64\x83\xe5\xb2\xd4\x1b\ \xeb\xe7\x09\x88\x29\xf8\x68\xe3\xd5\x41\x24\x3d\x25\xa9\x3a\xde\ \xae\xde\xeb\x21\x92\x41\x19\x81\xcb\x7b\x39\xeb\xeb\x5d\xed\xdc\ \x9f\xfc\x06\x42\x5e\xbf\xda\x72\xbd\x2a\x2a\x6a\x2a\x1a\x33\xeb\ \xa2\x9f\x41\xc1\x6f\x8c\x9a\x21\xdb\x07\x39\xdb\x6d\x53\xae\xe7\ \x3c\xaf\x0e\x7c\xdb\x6b\x58\xae\x98\xd9\xca\x63\x79\xb4\x92\x6a\ \x38\x39\x25\xc5\x5c\x30\x68\x49\x4c\x90\x7d\x4d\x06\xed\x26\x50\ \xa6\xc5\x5e\x26\xf4\x86\xe5\x8e\x40\x90\x2b\xc8\xbf\xac\x17\x63\ \x19\x53\x6e\x8a\x7d\x94\x7c\x6b\xbf\xa3\xd0\xf2\xe7\xad\x45\xaa\ \xf1\xeb\x4a\xac\xc3\x78\x5a\x80\xad\x36\xdd\x97\xbc\xf7\x46\x56\ \x19\x10\x66\x2b\x5e\x93\x6b\x74\x09\xa3\x67\xf7\xf5\xaf\x9d\x05\ \xb8\xb0\x81\x12\x7b\x44\xf7\x08\x08\xe6\x24\x37\xf1\x76\xeb\xef\ \x37\xeb\x43\x0a\x5c\x0a\xa8\xf4\x28\xae\xa0\x49\x5a\x6b\xa5\xac\ \x76\x0a\x3c\xed\xaa\x60\x94\x74\x4a\x8a\x73\xa0\x71\x91\xf0\x0c\ \x0b\x33\xbb\x1d\xb7\xc3\x0e\xe8\x91\x79\xc7\x86\x4e\x8e\xcf\x6d\ \x22\x76\x68\xa5\x56\x78\x91\xfb\x41\x9d\x7d\xe2\xcc\xe1\x18\x95\ \x64\xc5\xf5\x58\x29\xd4\xdb\xa5\x55\xd1\x89\x42\x5b\x39\xe1\xa2\ \x46\xae\x38\xbb\xbc\x3b\x2b\x62\xcc\x96\x16\x79\x66\x01\x19\x1c\ \xb5\x23\xaf\x8d\x13\x03\x28\x47\x76\x90\xbb\xdf\xed\x20\xbf\x2d\ \x94\x0e\x1e\x5b\x6d\xe7\x84\xb2\x38\xc6\xfc\x6b\xb2\x41\xa6\xbb\ \x21\xca\x63\x85\xc9\x8b\x5d\xdb\x3b\x13\xef\x56\x9c\x56\xf7\xdb\ \x2d\xb1\x35\x12\x38\x2a\xbb\xdd\x93\x36\xfb\xd6\x52\xf6\x02\x30\ \xeb\x4b\x0c\xd7\x6b\x64\x0b\x96\xd8\xe2\x62\x4b\xb7\xd2\xdf\xb4\ \x1f\xab\xfc\x0d\x97\x92\x3d\x35\xe5\xe2\x2c\xb2\xff\x2b\x92\xd1\ \x7c\x38\x29\x97\xbc\x5a\x88\x1f\xf4\x9a\x90\xdd\x48\x8e\x81\xca\ \xdb\xc5\x87\x15\xcd\x75\x39\xd6\x33\x13\x96\x1e\x2c\xe2\x12\xf0\ \xd2\xeb\xcd\xba\x98\x57\x6c\xdf\x7a\x1a\x21\x59\x06\x3f\x35\x96\ \xd5\x5a\xce\x33\xce\xb2\x14\x4a\x1f\x23\xac\x0c\xd5\xc3\x85\xfc\ \x32\xa9\xd4\xfb\x30\x51\x3d\x6e\x87\x1e\xb6\xbb\x05\x13\x6d\xc7\ \xbc\xbc\xfd\x79\x77\x4e\xba\xe4\xe6\xdd\x9e\x91\x40\x1a\x74\x37\ \xd4\x5c\x11\x48\xbc\x29\xcc\x55\xfa\xf2\xc6\x86\xc7\x37\x4f\x79\ \xbe\x9a\x4f\x50\x73\x47\x3d\xaf\x7d\x06\x1e\x7d\x99\xdb\x60\x45\ \xb6\xf3\xb9\x39\x36\xcb\x84\xa2\xb7\x1b\xd5\x38\x6a\x77\xc1\x8f\ \x10\x66\x15\xad\xf4\x96\xb6\x6d\x91\x0e\x26\x41\x87\x11\xe7\xf0\ \x41\x9b\x81\xb1\x37\x2c\x50\xbc\x3d\x30\xe3\xb6\xae\x72\x35\x13\ \x58\xfb\x9d\xb2\x6f\x46\x85\xa0\xce\x45\xd0\xa9\x5c\xc6\xb4\x67\ \xa4\x20\xbc\x1d\xda\x72\xeb\xbc\xac\x16\x35\xa5\xde\x28\x56\xab\ \x64\x24\x6c\x39\x78\xcf\xc7\x8d\xa4\xd7\x42\xa0\x4d\x55\xb7\xb2\ \x53\x1a\xfe\x79\x57\x27\xfe\x6d\xff\x33\xb2\x3c\xbe\x3a\xd6\x6c\ \xeb\xa2\x97\xf1\x49\xf9\x92\xa9\x64\x66\x9c\xfd\x02\xc9\x51\xa9\ \x81\x02\xab\x67\x90\x2a\x30\x58\xa9\x60\xcb\x22\x98\x14\x12\xa8\ \xe6\xf2\x82\x81\x98\x1d\x19\x4e\xe7\x28\x12\xdb\x82\x29\xf0\x8d\ \xbc\xd0\xd4\x29\x7a\x18\x8b\x41\x35\x08\x19\x61\xeb\x78\x4a\x60\ \xc9\x6c\x4a\xc4\x09\x8f\x48\x31\x7a\xe9\x06\x64\x91\x84\xc7\x4a\ \xb6\x9f\x40\x88\xa4\x1a\x54\x21\x21\x9a\xf7\x74\xd5\xcd\xf1\x69\ \xae\xe3\x8e\xb4\x2d\xb7\x95\x8d\x24\x39\x67\x78\xbd\x62\xb2\x21\ \xdf\x05\xfa\x1d\xe9\x8e\xd2\x34\x0d\x33\x45\x47\x12\xb5\x0b\xa8\ \x23\xa2\x36\x10\xed\x19\x9b\x83\x4d\xd6\xa8\xd2\xd1\x34\x0c\x57\ \x1a\x23\xd6\xfe\xe0\xf6\xaf\x36\x29\xe6\xa5\x36\xc1\xc4\x00\xe5\ \x4a\xf6\x91\x25\x1c\x98\x74\xc5\xba\xa1\xfb\xa3\x1b\xfe\x0b\x46\ \x99\x16\xa1\x9b\xbb\xe9\xfe\x8d\x63\xab\x8d\x23\x92\x9d\x0c\x9f\ \xbd\x4c\x77\x20\x75\xa9\xf6\x7b\xde\x6d\x69\xaa\x6a\xd0\x91\x9f\ \x16\xa5\xa5\x00\xa5\x13\x4b\x02\x48\xe5\xcd\x18\xa2\xda\x1a\xfa\ \xd6\xc2\x87\x41\x95\x9b\x08\xb4\x1f\x5b\xed\xf8\x50\x03\xfc\xd0\ \xea\xa6\xf2\x8c\xbc\xe5\x72\x3d\xe5\x5e\x79\x84\xec\x07\x7a\xca\ \xa0\xf5\x2e\xed\xa7\x44\xe6\xb5\x20\xe8\x48\x61\x6a\xe6\x27\x73\ \xe6\x24\x33\x4d\x8f\xe3\x76\x3b\xdc\xa3\x32\xb2\xfd\xac\x98\x5e\ \x99\x28\x36\xcc\xca\x7f\xe0\x91\xd9\x7e\xe6\x5c\xab\x13\x03\x03\ \x8d\x74\x7e\x1c\xa5\x25\xdc\xce\x31\xa7\x5b\x8a\x8e\x72\x01\x46\ \xd9\xe4\x36\x08\x4f\x08\x20\x7a\xcb\xf3\x4c\x35\x59\xce\x1e\x52\ \xfd\xae\xf4\x32\xaa\x63\xc8\xdb\x97\xcc\x56\x88\x86\x6c\x20\xef\ \x4c\xcf\x9b\x6d\x29\x1e\x53\x79\x7b\xc6\xb8\xae\xed\x2e\xa3\x5d\ \xa5\x62\xe3\x3a\x54\x24\xde\x8c\xcb\x28\x2f\xa8\x3d\x85\xa6\x46\ \x72\x33\x7d\xfb\x87\xdb\x3a\x65\xaf\x35\x79\xcd\x09\x90\xb5\x46\ \x6c\xe5\x1a\xb6\x24\xc7\x7d\xa3\x57\xd1\xc3\x99\x15\x52\x72\xb5\ \x7e\xa2\xc8\x62\x19\xda\xf5\x53\x26\xb3\x51\xda\xbe\x6d\x81\xbb\ \x57\x0c\xa3\x7e\x8c\x37\xd4\xa4\x59\xcf\x65\xd3\xb1\xb0\x87\x21\ \x92\xd6\x99\x8d\x0f\xca\x72\x02\x6c\x4c\x30\x52\xb7\x5b\x00\xb4\ \xba\xed\x9f\xb0\x1c\x36\xbb\xfc\x47\xec\x07\x62\x27\xf3\xcc\x0c\ \x00\x5c\xc6\xbf\x3e\x8b\xb8\x2c\x64\xab\x9f\x9b\x30\xf0\xc1\xf6\ \x51\x0a\x85\xce\x00\x1b\x6f\x60\x72\x2f\x90\x71\xdc\x9e\x9e\x68\ \xa9\x20\x10\xa3\x78\xa5\x22\x48\x74\x7e\xaa\xfd\x19\xef\xc7\x3a\ \x22\xc8\x20\xce\xa1\xf2\x16\x29\x3e\x37\x26\xee\x3e\xe2\x97\xaa\ \x57\x55\x9d\xbc\xa1\xf6\x13\x19\x18\xab\x01\xcf\x5a\xe7\xaf\xec\ \xb8\x22\x61\x31\xeb\x52\x14\x72\x96\x28\x5c\x55\xed\x30\x3b\xcc\ \xea\x91\x29\xc6\x24\x67\xcc\xfe\x12\x43\x3f\x44\xca\x1e\x15\x78\ \x7d\x23\x1b\x41\xda\xd5\x57\xfc\x7d\x4c\x57\xef\x96\x6f\x7b\xe5\ \x37\x13\xff\x55\x10\xb6\x94\xd4\x59\x9b\xd6\xc4\xd2\x24\xac\x1e\ \xfd\xe1\x79\xbf\x6d\xd0\x2f\x33\xfa\x75\xfe\x7e\x70\x12\x7c\x38\ \xe1\x97\x4c\xec\xeb\xbd\x50\xf2\x5b\x96\x85\xb5\x57\xdd\xdc\xa2\ \xaf\x37\xc8\xe3\x28\x90\xe3\x11\x42\x8f\xd8\x49\x97\x6c\x35\x9e\ \x6e\x69\x06\xeb\x4f\xf2\x63\x17\x2d\x27\xe7\x6e\x2e\xdb\x53\x54\ \x49\x6f\xf2\x5e\x8d\x8c\x9c\x95\x54\xf6\x9c\x26\xf3\x7a\x80\x07\ \x01\xeb\x15\xe0\xd6\x79\x2d\xf6\x42\x6d\xa0\x3b\x1c\xa3\x2e\x14\ \x8a\x71\x44\xc4\x67\xe9\x17\x45\xf4\x91\x68\xf6\x27\x32\xe3\x38\ \x0e\x1b\xcc\x34\xd2\x3d\x3c\xca\xd9\x65\x70\xc9\x7c\x40\x12\x77\ \x2a\x56\x34\x75\xbc\x68\x17\x95\x10\x50\xb3\x69\x2c\x56\xae\xac\ \x56\xa9\x23\x88\xa3\x6f\x59\x6c\x9e\x79\x7c\xa0\xe7\xe9\x91\x79\ \xc8\x48\xb8\x54\x77\x16\xa3\x96\xe5\xd7\x4c\x26\xb2\xfc\xca\x7a\ \x98\xef\xce\xf4\xd2\xab\xee\x7e\xfc\x57\xc0\x67\x39\xf1\x5e\xe2\ \x2d\x57\x1e\xdb\x05\x4b\x7d\x6f\x20\x9e\x4f\xe6\xe1\x4b\x45\xc3\ \x68\x7c\x6e\xb1\x89\x5b\xf7\x40\x4f\x6c\x7f\xbd\x0b\x91\x6d\x82\ \x36\x6c\x76\x2c\xcd\x1b\x57\xdd\xe4\xb7\x35\x48\xd6\x46\xe1\x1d\ \x04\x0f\x0f\x27\x27\xb7\x38\xba\xb7\x7e\x9e\x0f\x0b\x99\xad\x70\ \xe7\x16\x58\x20\xd7\x5e\x32\xea\x10\xb5\xff\x63\xad\xff\x65\xe3\ \x31\x4c\xc1\xd3\x86\xc6\xb5\x44\xd8\x87\xaa\x96\xef\x99\x1e\x0a\ \x64\x21\x68\xdd\x05\xb6\x1f\xa7\x5c\xe3\x15\x6a\xfd\x34\xe0\x9b\ \x5c\x06\x55\x91\x87\xb7\x1a\x82\xfd\x4b\x82\x79\xdb\xb2\x92\x82\ \xc2\x9b\xee\x90\x13\x04\x9b\x22\x38\x78\xdf\xab\xaa\xa9\xf9\x79\ \xe6\xb8\xa1\xe4\x52\xdb\xee\x57\xe0\x05\x69\x55\x50\x5c\x31\x86\ \xd9\xd8\x3a\xb6\x36\xd4\x69\xdc\x26\x21\xb9\x73\x1e\x19\xc8\x37\ \x84\x64\x0a\xed\x12\x09\xcf\x3c\x4f\x32\xa6\x87\x6f\x3d\x54\xf2\ \x3a\x87\x1e\xd1\xf2\xf2\x58\x5d\xf8\xb2\x8a\xee\x05\xfe\x26\x51\ \x9a\xfb\xe6\x2d\x3c\x98\xdb\xa7\xb8\x82\xcb\xa6\xa7\xce\x0a\x18\ \x9b\xd7\xfa\x6f\x54\x83\xfd\x0c\x6c\x41\xa5\xc3\xcf\xba\x30\xab\ \x64\xdb\x75\xec\x7b\x8f\x87\xca\xf0\x78\x4a\x07\xce\xde\x4e\xe9\ \x0e\xb8\x3c\xd0\xc3\xde\xde\x77\xfb\xcf\x79\xb9\x0b\x28\xe6\xb9\ \xd0\x0b\x65\xbe\xf8\x8a\x47\xd7\x15\x9c\x87\x2b\x2e\x75\x09\x84\ \xeb\xee\xb3\xbc\xe7\xc9\xcf\xad\xa9\x72\xdb\x7b\x4f\x6d\x1b\x4c\ \x8f\x87\xa4\xf9\xaa\xc5\xbf\xe3\xc2\x71\x91\x23\xda\x88\xa4\x77\ \x68\x15\x0c\x3f\x11\x21\xe4\x38\xf6\xfe\x62\xe5\x7b\x35\xb4\x3f\ \xc7\xac\xf2\xbb\x5a\x66\xb1\xd8\x6b\x21\xcb\x49\x05\x39\xfd\x5f\ \x44\x1e\xaa\xc3\x72\xc8\xb1\x45\x97\xeb\xf1\xb8\x20\xce\x3b\x4b\ \x2c\xb7\xa6\x62\x0d\x20\xeb\x92\x5b\x74\x99\x78\x0f\xd9\xac\x22\ \xde\xd0\x0e\x44\xa0\x81\x4c\xce\x5a\xb2\x42\x96\xa9\x34\xe8\xb8\ \x39\xaa\x61\x8a\xf0\x3b\xeb\x20\x59\xc2\xf1\x5c\xb4\xb3\xbd\xc8\ \x8d\xe4\xe4\x5a\x3f\xbb\xb9\x6f\x4e\xe6\xe6\xc3\x3f\x0c\xcb\x77\ \x7b\xa7\xf7\xca\xef\xe3\xdf\xbf\xc5\x79\x1e\xfe\xe6\xfa\x79\xe6\ \xc3\xa9\xdb\xff\x3e\x46\x75\x53\xa2\xca\x59\xfb\xe5\xfb\xf5\x93\ \x6e\x37\xaa\x7b\xad\x78\x5b\x73\x2e\x84\xc3\x5a\xfb\xe8\xf6\x8b\ \x6c\xc7\x07\x95\x14\x71\xc9\x83\x59\x3d\xce\x3b\xed\x9f\x4c\x46\ \x1e\x8d\xb1\xb6\x51\xa8\xf0\xe2\xb9\xdd\x30\x54\x9d\xd2\xfa\x4b\ \x54\x9f\x46\x57\xfe\xe2\x74\x76\x36\x42\xae\x0f\x60\xc7\x1d\x05\ \xe3\xc5\x91\xbd\x57\xec\x83\x87\x6d\x48\x6e\xbf\xf1\xd4\xe5\x26\ \xb7\x7e\xa9\xee\xab\x3b\xc0\xaf\xaa\x5b\xa2\xcf\x72\x71\xd2\x68\ \x24\xb7\x00\x92\xf5\x29\x5f\x3c\x19\x1e\x9a\xe3\xb9\x40\x27\x4b\ \x8a\x67\x69\x7d\x40\xcb\x32\x68\x6f\x72\x10\x11\x0f\x0f\x3a\x22\ \x52\x61\xa5\xad\xf7\x36\x6b\xaa\x18\x93\xfa\x69\x25\xc3\xf3\x38\ \x6a\x76\x31\xb3\x84\x7a\xb9\xa6\xab\x6c\x29\x37\xd3\xfb\xe5\x64\ \xbd\x6d\x89\x06\x0f\x97\x68\xfd\x52\x2a\x11\x81\x18\xad\xe7\xd6\ \xc0\x88\x78\xed\xe9\x7a\xc0\xda\xc0\x63\x89\xf8\x5a\xe7\xb6\x7f\ \xfd\x71\x5f\x10\xb9\xc4\xb6\x3d\xec\x1c\x1e\xaa\xd6\xfc\xef\x0f\ \xbd\x56\x5e\x1b\x27\x55\xbd\xac\xf3\xae\x3b\xfe\x7d\x8b\xf2\xd0\ \x95\x3d\x9c\x7c\xf2\x1a\xa1\xe5\x6e\x33\xa2\xeb\xf5\xfe\x5f\x19\ \xbd\xdb\x10\x2e\xd7\x9f\xff\x61\xae\x58\x31\x54\x8b\x1f\x0f\x41\ \x16\x4f\xe9\x80\x06\xe5\x55\xd5\x1d\x15\x83\x5c\xb1\xd1\x7a\x56\ \xe6\x58\x33\x8f\xe2\xfd\x6e\x73\x3e\xcf\x51\x01\x11\x90\xba\x5e\ \x1a\x29\x95\x49\x5f\xce\x5d\x96\x91\x80\x6f\x20\xcd\x96\xcb\x06\ \x28\x98\xf2\xc1\x67\x7a\x8c\xf5\x9b\xa9\x9e\x55\x85\x1f\x06\x66\ \xd9\xdf\xf2\x79\xd2\x9b\xdb\xe0\xcc\xff\x0d\x70\x4d\xf3\xe3\x0b\ \xc0\xdc\x10\x7f\xae\x54\x12\x00\x5c\x86\x32\x98\x4e\x17\x9e\x25\ \xbd\xca\x58\xdc\x7c\xa5\xdd\x86\x77\xf2\xb6\x48\x86\x98\xa9\xec\ \xab\xbb\x62\xa1\x2c\x6f\x3d\xc9\x19\xc2\x2f\x32\xc9\x87\x8b\x79\ \xdb\x8a\x5c\x6a\xc8\x23\xc3\xea\x4a\xa1\x69\x00\x53\xa7\x6b\x9a\ \x89\xe2\x6b\x68\xc1\xdb\x5b\x5f\xb7\xb4\xda\xd8\xec\x81\xf6\x7f\ \x77\x3f\x6c\x93\x28\x90\xd7\x73\xf2\x78\xde\xae\xc3\xd8\x5b\xb6\ \xcb\x3b\xb3\x1c\x11\x8b\x0d\x40\x7b\x9f\x85\xf0\x3e\x50\xb1\xb5\ \xe0\x97\x98\xdd\x95\xcf\x63\x40\x59\x32\xb6\x9b\x99\x42\x55\xd4\ \x31\x46\x4e\xa4\xa1\x46\x66\xaa\x55\x18\x6c\xc3\x41\xd9\x14\xdc\ \xd9\x2e\xc3\xbb\x36\xbd\x57\xc9\xe3\xe1\xd3\xde\x57\xcf\x78\xf3\ \xe1\x94\xe7\x43\x33\x3e\x30\x1c\x97\x70\x49\xcf\x70\x3f\xcf\x74\ \x4a\xc5\x3d\x33\x0e\x40\xce\xfb\x9d\x4e\x68\xe7\x19\xee\xb4\x6d\ \x69\x47\xaf\xad\xd3\x78\xc0\xa0\xfb\x7b\xc7\xe5\x38\x55\x30\x6a\ \xab\xb5\xc4\xf6\xda\x78\x1d\x0c\xd0\xd6\x0d\x0d\xbd\x0b\xd1\x74\ \x44\xd9\x32\x55\x02\x52\x46\xdb\x2e\x74\x46\xca\x92\x67\x53\x0c\ \x59\x2e\x80\x45\xa1\xb5\xcb\x73\x2d\x68\x77\x3a\xa5\xfd\xf5\x9a\ \x9b\xbe\x1f\x3c\x36\x98\x3f\x1f\xde\xe9\x2b\xa0\xb9\x9e\x53\x79\ \x70\xbd\x79\x7e\xf3\x27\xa7\x7c\x15\x5b\xef\x2b\x40\xc2\xe5\x2d\ \xbc\xbe\xee\xfb\x31\xae\x03\x9c\xd4\xa3\xad\x33\x73\xa9\x9c\xd7\ \xd6\xe0\xab\xa1\x1d\x57\x68\x74\xda\x82\x77\xa9\x40\x0f\x03\xd8\ \xf5\x82\x6f\xff\xc4\xdc\xdf\xd4\xad\xac\x89\x44\x22\x22\x3c\xce\ \x0c\xd7\x9a\x66\x9a\x38\x55\x26\xe0\x74\xff\x41\x8c\x2f\x36\x9a\ \x2c\xee\x21\x62\x84\x9e\xaf\xfd\xe4\x92\x34\x3d\xf4\xba\x11\xc9\ \x3c\xfa\x8d\x02\xa2\x17\x11\xd0\x5a\x49\x31\x3d\x61\xb3\xcf\x9c\ \x09\x29\x4e\x09\x6f\x2a\xdd\x59\x6a\x39\xc9\x24\xb9\x26\xb2\xae\ \xfe\x52\x87\x6a\xe5\xfc\x3d\xf4\x1b\xb1\xfd\xd0\xef\x3d\xf8\x2b\ \xe2\xdc\x81\x9b\x15\xf1\x88\x96\xa0\x5d\x08\x67\x1e\xe3\x37\x4b\ \x26\x68\xea\x72\x28\x18\x43\xa3\xd2\xed\x37\x0b\xa3\xd7\x1b\xf4\ \xe6\x89\xbb\x3b\xed\x28\x54\xe9\x63\x9f\x43\x0c\x7f\xdc\x82\xd3\ \x99\x44\xdf\x6f\xee\xf1\x0e\xca\xf4\xb6\xec\x3c\xbe\xbe\xbb\x40\ \xf7\xbd\x77\xfd\x2d\xe6\x9b\x3b\x77\xea\xff\xef\xaf\x87\xf9\x67\ \x65\x62\xbe\xc1\xf4\x2e\xbc\x35\x1d\x2f\xcf\xaa\x60\xef\x5f\xb1\ \x80\x1a\xfc\xdc\x58\x02\xa6\xf9\xe6\x80\xfd\x0d\x08\xb1\x2b\xe1\ \xa8\x3a\x4a\x95\xb3\xb5\x21\x23\x6d\x6c\x65\xe3\xe0\x54\x0b\xa4\ \xe5\x24\x2e\x91\x2e\x8e\x2c\x02\xc8\x2c\x74\x51\xae\xb9\x5b\x47\ \x18\xd4\x9c\x6a\x19\xf4\xad\x5d\xc3\x96\x74\x44\x89\x42\x85\x91\ \x02\x4b\x3f\xfb\x78\xbb\xc5\x24\xcb\x53\x68\xbc\x7a\xd1\x4e\x21\ \x86\x0a\x5d\xd2\xa8\xdb\x51\xe0\xb0\x0e\xc0\xc1\x04\x9f\x07\xbd\ \x67\xb5\xf5\xd9\x08\x4b\xb4\xcf\x70\x56\xcc\x4f\xe5\x32\xd3\x58\ \x63\xf6\x9e\x7b\xb6\x23\xa5\x20\xf3\xd8\x36\x46\xd5\x70\x5e\x97\ \x9a\x78\x3f\xfe\x0a\x79\xe5\xea\xcd\x79\x27\xe9\xa1\x69\x10\x44\ \x42\x21\xaa\xb4\x1b\x1f\x1f\x48\xb2\xef\x34\x13\x08\x31\xd1\xa8\ \xe4\xc5\x8e\x6b\xe9\x15\x7e\xe1\xe2\x9b\x7f\xd2\x46\xe1\x2e\x04\ \x77\xda\x00\xd5\x77\x2f\xda\x9d\xcd\xb1\xd7\x5b\xec\xd8\x51\xae\ \x16\x68\x6f\xdb\x1e\x70\xad\xf7\xa1\xb6\x62\xfa\x40\x16\x4c\x7b\ \x9d\xbd\x65\xe5\xfd\x12\x85\x57\x68\x6c\x61\x69\x0b\x12\xe1\x87\ \x7a\x20\x3d\x97\xa4\x2a\x77\x0e\x04\xf8\x07\xf6\x14\xa9\x4d\x44\ \x7a\x41\x03\x42\xde\x94\xd9\xf5\xeb\xcc\x3a\x79\xf7\xce\xc6\xb0\ \x2d\xf9\xbe\xd6\xe7\xbb\x99\xbf\x8f\xac\xbb\xd6\xd6\x29\x29\x2e\ \x79\x24\xf7\x25\x32\x44\xef\x82\x35\x87\x05\xa1\x52\xd1\x3f\x0d\ \xb2\xbe\xb9\xc9\xf9\x26\x9d\x91\x42\x3a\x68\x9f\xd2\x61\xb6\xef\ \x6e\x25\x73\xa4\x54\xb4\x04\x4b\x4a\xff\xde\x84\x65\x9c\xee\x15\ \x23\x98\xee\x7a\x64\x78\x1e\x9d\x21\xa3\x92\x4b\x50\x3a\x42\xf5\ \x36\xbe\x89\x8d\x67\x55\x71\x87\x6d\x7c\xf8\x48\xc1\xae\xf5\x3d\ \x39\x64\x79\xa2\x5a\x20\xd9\x25\xf8\xa4\x55\xe4\x28\xc8\xe6\xbe\ \x52\x68\xe2\x94\x30\x3d\x9c\x56\x5d\x19\x12\x81\x76\xa6\xac\x85\ \xa9\xc2\x04\x11\x7e\xe0\x99\xa9\xca\x1d\x4e\x0a\xd6\x58\xcf\xca\ \xf6\xda\xc8\xce\x05\x9e\xe4\x4e\x51\x9b\x44\xc2\x9e\x77\xc7\x48\ \xf1\x4a\x3a\xbe\xd4\x9f\x37\xe3\x4d\x85\xcc\xcf\x5c\x17\x21\xb6\ \x91\x94\x69\x6c\x10\x6f\x90\x83\xb5\xc7\xc5\x75\xd4\xae\x90\xaa\ \x4a\x34\xc3\x50\xa1\x73\xf1\x62\x55\x36\xf6\x86\xf0\x29\xe7\x36\ \x9e\xad\x00\xa6\xce\xe6\x5d\xe0\xee\x85\xd6\x5d\x68\xfb\x56\xcd\ \x7c\xdf\xa2\x6d\xac\xea\x2c\x5c\x64\xce\xcc\xb4\xb8\x7d\xb3\xe8\ \x4e\x8b\x6d\x93\xd8\x79\xa1\xd0\x4d\xd0\x5a\xa3\x56\xe6\x6a\x9a\ \x17\x6b\xb6\x7c\xc8\x54\x04\xb0\x1e\x6d\x02\x6a\x15\x5b\x5b\x56\ \xca\x39\x16\x71\x3b\x10\x78\x69\x77\xdb\x4b\x47\x1b\x65\x1e\x84\ \x44\x56\x83\xa3\xb2\xb1\xc0\x9b\x19\xb8\x53\x4f\x98\x26\x52\x9e\ \xc4\xcc\x23\xe3\xe7\x70\x6c\x0d\xa2\x44\xf8\x72\x4d\x5e\x9b\xfb\ \x9c\x34\x4c\x4a\xc0\x88\xfc\x7a\xc6\xf0\x11\x04\x88\xcd\x90\x7b\ \xa6\x2f\x5e\x0c\xb1\x74\x29\x97\x9b\x1e\x90\xf0\xd8\xef\x2d\x46\ \x2c\xd3\x45\x3d\x95\x89\xbc\x3d\xcc\xb0\x75\xec\x61\xa2\xaf\x78\ \x6e\xa3\xca\x9c\x50\x81\xf3\x71\x69\xb0\xe3\x89\x4b\x61\xf2\x80\ \x54\xcc\x6c\x33\x45\xe6\xad\xd0\x6a\x5e\x23\x72\xf0\xde\x5c\x6e\ \x17\x1a\xca\x8e\x6b\xcd\xdf\x7f\x75\x95\xd9\x4d\x4c\x1f\xca\xa6\ \x33\x02\x0f\xa4\x4f\xb4\xe5\xc2\xbb\x68\xd8\xc3\x17\x6f\xcd\xf6\ \xc2\xa0\x57\xd9\xc4\xd7\xc6\x7d\x08\xe4\xab\x08\x7b\x83\x92\xef\ \xce\x6c\x0f\x5c\xc9\x8d\x54\xd7\x8f\x62\x02\xe8\x8a\xf8\xa3\x45\ \x8d\x93\xa8\x44\xbb\xc4\xa4\x99\x93\xad\x4d\xd5\xb3\x83\xa6\x39\ \x2d\xea\x96\xf2\xc6\x97\x6d\x9c\x7b\x1f\x88\x57\x95\x7d\xd9\xb0\ \x81\x90\xa4\x20\x62\x93\x7a\xc4\x26\xe7\x6e\xa6\x18\x11\x7c\x5a\ \xe7\x36\xfd\x17\x02\xa6\x28\xd4\x3a\x99\x26\x32\x11\xaa\xb9\x13\ \xe9\x5b\xb1\xc9\x6f\xdc\x86\x3a\x45\x4c\x90\xb7\x88\xe4\x38\x1c\ \x56\x96\x6d\xd1\x88\xe2\xe1\x92\x8e\x7e\x10\xdb\x75\xd1\x1c\x9d\ \x71\xe6\xef\xa5\x5e\xf3\x17\xb7\x34\x84\xcc\xe0\x02\x6e\xe4\xcb\ \x74\xd1\x96\xe1\x68\x62\x74\xbf\xb2\x34\xee\xf9\xb7\xf7\xfd\x0f\ \x6b\x96\x07\xbc\x2b\xb7\xbf\xf6\xa5\xde\xa5\x35\xa1\x4e\xe3\x5a\ \x94\xbe\x46\xb3\x5f\x9e\x26\xdd\x2e\x62\x81\x10\x5a\x0e\x02\xdb\ \xd6\xbe\x05\x48\xcd\x75\xc3\xfb\x0c\xba\x77\xa1\xf0\x7d\x99\xf6\ \x00\xcd\x3d\xc8\x51\x76\x61\xd9\xb5\xf9\xc0\xee\xed\x74\x8d\x33\ \x79\x1c\xe4\x2e\x9f\xb0\x16\xd7\x9d\xeb\xe9\x5c\x92\x80\x0d\x1f\ \xa6\x55\x4d\x76\x66\x68\xa6\xd3\xd9\xb5\x03\x89\x52\x36\x71\xf1\ \x84\xc0\x95\xc5\x74\x2d\x3b\x67\xf9\x72\x61\x78\xc9\x85\x2f\xa5\ \xaa\x24\xb9\x79\x2e\xcf\xf4\x96\xf5\xe5\x2e\x59\xa4\xf9\xbe\x36\ \x2c\xe9\xee\x11\x61\x22\xaa\x7a\x8c\x0a\x1e\x22\x1e\x11\xe1\x8d\ \xdf\x69\x64\xa8\x1c\xa4\x5a\x96\x5b\x7b\x4f\x4e\x1d\xa8\x5b\x2e\ \x08\x0f\xdb\xba\xdc\x06\xfd\x77\x6f\xb5\x28\x8f\xc2\x4d\x03\xdf\ \x2b\x45\x7a\x07\x57\x2b\xd6\xf1\x5c\x74\x40\x22\xd7\x30\xcb\x03\ \xa0\x90\x96\xee\xb9\xc5\x9d\xf6\x06\xf3\x7c\x05\xdb\xed\x99\xd3\ \x61\xf6\xbd\xf8\x56\x53\xf5\xb0\x95\x7f\xfb\xf2\x3d\x64\x65\x3e\ \x34\x5a\x59\x1c\xca\xe5\x33\xf0\xf0\x2d\x1e\x80\xe9\xdd\xe7\x62\ \xcc\x75\x9b\xd8\x0f\xd9\xa5\xa7\x13\x8c\xa8\x3a\x1b\x89\xfd\x30\ \x7f\x0d\x1d\x7e\x5b\x7f\xa6\x27\x7f\x38\x39\xaa\x15\xf0\x72\xe5\ \x77\x61\x29\x44\x01\x55\xbc\x8b\x58\xbc\xd5\x62\xe1\x0d\x85\x29\ \xb7\xe8\x83\x09\x29\x5d\xf9\x22\x98\x3a\x18\x10\x2b\x2a\xa5\xb8\ \x64\x8c\x59\x42\x89\x2b\x37\xa2\x5c\x45\x04\xf1\x9e\x1d\xf9\x7d\ \xad\x10\x96\x77\x4f\xe6\xa6\xd7\x19\x91\x46\x1f\x86\xd8\x7e\x8b\ \x42\xde\x16\xa3\xc4\xb3\x8c\x08\xb3\x79\x51\x75\x72\x8f\x9a\x29\ \x54\x79\x9e\xb6\x76\x94\x6a\x26\xd9\x5c\xdb\xb2\xc5\x7a\x81\xdc\ \x3a\xb9\xbe\x90\xe6\xb2\x2c\xc8\xa4\x19\x4a\x0c\x75\x1a\x11\xeb\ \x90\xbd\xc7\x1d\xa6\x9d\x08\x3b\x07\x42\xe1\x9e\x53\x9e\xda\xa1\ \xb4\xf0\xa3\x48\x87\xe8\x48\x57\x18\x0f\x5a\xf9\x8c\x6b\x48\xc9\ \x81\x76\x6a\x4b\xdc\x79\x55\xd3\x0d\xbe\xbb\x82\x58\x4f\x55\x77\ \x20\x35\xbf\x86\x44\xb5\xeb\x24\xd6\x75\x20\x82\x52\xfe\x2d\x3f\ \xc6\x1d\x29\xc6\xd0\x76\xd6\xc3\xcc\xcb\xad\xcf\x3b\x23\x2f\xac\ \xb3\xb7\x54\xda\xe9\x94\xde\x85\xcb\xde\x6a\x0a\xb7\x21\xe4\x1d\ \x98\x9b\xbe\x9e\x39\xea\x89\xe9\xd8\x8a\x2b\x6f\x9a\x17\xf1\xd7\ \xd7\x88\x73\x3b\x22\x70\x51\x5c\x63\xb1\x6b\x31\x1f\x4a\x8e\x56\ \xa2\x29\xb7\x6d\xfe\xcf\xae\xc1\x3d\x32\x2d\x32\xad\x64\xea\x6d\ \x6c\x16\x21\x98\xa4\x8a\x4a\x6f\x1c\xee\xcc\x03\x11\x77\x23\xe6\ \xb4\x93\xdd\xbb\x15\xf5\x1a\x14\x0c\xc0\x14\x11\xe6\x0c\xf2\xc4\ \x4a\xa2\x82\x48\x89\xa2\xa1\xcc\xd9\xf1\x0e\xb3\x6f\xf4\x36\x23\ \x53\x4c\x75\x12\xdb\xa6\xc5\x42\x7b\x98\x96\x39\xdb\x6c\x62\xdb\ \xae\x70\x57\x30\x79\xe4\x22\x01\xb5\x8f\x9e\x9a\xc6\x6b\xec\xca\ \x44\x9e\xf8\x7b\xdc\x33\x35\xdc\x87\xd4\x84\xe6\x4d\x17\xd2\xd6\ \x19\x48\x73\x77\xb2\x4f\x33\xa1\x23\x7c\xbc\xe5\x21\x6f\x94\xa7\ \xf7\xf9\xc2\x22\x42\x0f\x90\x2b\x07\x3a\xdb\xe1\x40\xde\xe2\xbc\ \x43\xbd\xb9\x6c\x27\xfb\x92\xa9\xe0\x09\xd2\x5b\x87\xe9\x48\x51\ \x32\x16\x23\x73\x69\x0b\xd1\xf9\xe7\xed\xb9\x23\x72\xd9\x84\xec\ \xfd\xd5\xfc\xe2\x6f\xfb\xa5\x87\x81\xe4\x8d\x15\x46\x3c\xfc\xe1\ \x5d\xcb\xed\x65\xeb\x92\x2d\xbc\x1b\xc6\x65\xbc\xad\x21\x8f\xc2\ \x01\x5c\xa5\x14\x4d\x77\xea\x75\x9a\x32\x55\x97\x6f\xbc\x8e\xb0\ \x6f\xdc\x3b\x47\xce\xd2\x4e\x51\x2a\xea\xb1\xba\xd1\xce\x1f\x25\ \x92\xc6\x56\x4e\xf7\x69\x6d\xc9\x9b\xde\xcc\x8e\x68\x27\x5e\x06\ \x89\x07\x89\x65\x65\x9d\x2c\xd3\x01\xca\x20\x03\xa5\x9d\xd1\x80\ \x17\x47\x58\x15\xe5\x0f\x0e\xb2\x04\x10\xe1\x99\xe9\x7e\x9e\xee\ \xdc\xe1\xcc\x97\xd8\x82\x20\x1f\xfc\x38\x2f\x7a\x8c\x36\x38\x48\ \xdf\x8c\x9d\xb0\x79\x1f\x4a\x1b\x0b\x5d\x3e\x68\x8f\x59\x31\x8e\ \xa8\x2c\xc6\xd5\x72\x3a\x2c\xdf\x83\x56\x12\x36\xd3\xa7\x64\xf3\ \xb4\x54\x4b\x1a\xce\xf4\x33\xc9\x8b\x92\x76\xfc\xf9\x21\x97\xbd\ \xed\x85\xaf\xb5\x7c\x49\xb0\x49\xbe\x6a\x5a\xdd\x2d\x36\x2e\x3c\ \x97\x6e\x2f\x1f\xe0\x01\x46\x02\x4f\x87\xd9\x4c\x27\xee\x1f\xfa\ \xa9\x28\x1e\x78\xb1\x63\xb8\xba\xeb\xe4\x1e\xd0\xf0\xb7\xb5\xee\ \xdd\x0d\xe6\x4e\x63\x7b\xf8\x33\xfb\x61\xdb\xe8\x27\x9d\x60\xde\ \x7e\x50\x91\xf1\x37\xa4\xc5\xef\x56\x9b\xa6\x34\xb7\x99\xfa\x6e\ \x90\x53\x56\x3e\x32\x66\x9a\xd2\xa6\x08\x4c\x70\x21\xd8\x11\x03\ \x6d\xb6\x5b\x85\x32\x02\x82\xfb\x14\x18\x85\x8f\xe2\x6b\x7a\x79\ \x97\x68\xf7\x86\xfc\x2a\xcd\x7f\xef\xf1\x7c\xf5\x32\xb5\xcd\xf1\ \x85\xb0\xce\x34\xcc\x9d\x4b\xad\xfc\x00\x3b\x1a\x6b\x3a\xfa\xfd\ \x5b\xbf\x43\xa3\x87\x3a\x87\x8f\x79\xbe\x6f\xa5\x1a\x63\x8a\xf5\ \xee\x6a\xfc\x61\x40\x7c\xb3\xbf\x4b\x29\x8f\xaa\x86\x7d\xb5\x6f\ \xa3\x92\x6d\x77\x0e\x78\xa9\xa5\xcb\xb2\xa0\xe6\x9f\xb6\x98\x91\ \x32\x07\x2d\x37\x63\xac\xd4\x17\x59\x22\x9e\xaf\xaf\xc9\x37\xa4\ \x6b\x4d\xa9\x6f\xf6\x83\xfa\xf6\xc1\x6c\xcc\x89\xdd\xe3\x8d\xeb\ \x33\xeb\xdf\x57\x55\x1b\x05\x7d\x5c\x68\xc8\xdf\x60\x55\x3e\x0c\ \xee\xf3\x07\xca\x48\xfa\xcd\x32\x14\x5f\x97\x0f\xbd\x2d\x8f\x0f\ \xc8\xde\x65\x4a\x79\x70\x1f\xbb\xfe\xb1\xfd\xe7\xb9\xa0\x26\x15\ \xd5\xb0\x57\x5d\x7d\x4b\xb7\x23\xdb\x7d\x1c\xde\x86\x2e\xaf\x2a\ \xb1\x02\x51\x76\x7e\x4e\x2c\x35\xc2\xca\x65\x84\x8c\x3d\xf3\x7b\ \x53\xd6\xfb\xb0\x88\x16\x4d\x59\x55\x3d\x5c\x73\x5c\xee\xb0\x23\ \x1c\x7d\xe4\x8a\xa0\x4d\x3d\xa5\xda\xa0\x7b\x19\xc9\xf8\x26\x1c\ \x28\xcf\x7b\x19\xb5\x59\x2a\x22\xf8\x8a\xa2\x45\xd8\xcc\x72\x7a\ \xfb\x53\xe6\x03\x33\xfa\x6b\x90\xd1\xd0\xd8\x2e\x6f\xa4\x64\xa6\ \xe7\x38\xc0\xf5\xe0\xc9\x80\x9f\x1c\x3b\x32\x22\x02\xee\x09\x84\ \x7b\xc1\xd0\x0c\xa9\x88\x60\xea\x47\x05\xbe\xab\xec\x9d\x58\x33\ \xe1\x97\xe7\xc3\xbc\x31\x6d\x34\xee\xdb\x8f\x94\x6f\xd7\xf6\x66\ \x26\x8f\xfc\xcf\xc7\xdf\xa2\x49\xb2\x58\xde\x8b\x21\x00\xf8\xef\ \x86\x3b\x47\xa5\xbd\xc4\xed\xe2\xb0\x47\xe1\xfe\x56\x31\x1e\x18\ \x6e\x3b\xe7\xe5\xdd\x11\xeb\xed\x0f\xf9\xce\x18\xf6\xd6\x2a\x60\ \x9b\x43\x3c\xaa\xb5\x64\x16\xc8\x57\x01\x3a\xac\x3c\xd0\xb5\x94\ \x93\xfd\x0b\xd6\x27\xb0\x36\xdf\x6d\x77\x2b\x73\x68\xb7\x67\x75\ \x91\xbb\xe5\x94\x24\xc6\x13\xa7\x6a\x42\x0f\x6d\x83\x58\xcf\x49\ \x46\xd4\xb7\xbc\xef\xfe\x64\xb2\x59\x7b\x2d\xf6\xae\xe9\xa3\xac\ \xc3\xf0\x80\x09\xc9\xb2\xcf\xc1\x9a\x81\xa3\xe3\xb9\xaa\xbf\x3e\ \xb3\xac\x61\x8f\xcb\xfa\x4f\x92\xe9\xe2\xe5\x0c\x02\xe1\x34\xce\ \x72\xbd\xeb\x3a\x1f\x7a\x92\xb7\x25\xe5\xed\x32\x61\xf8\x85\x85\ \x1c\x24\x2d\xa0\xcb\xea\x80\xf8\x3c\x26\x74\x80\x7c\xba\x5c\xf1\ \x32\x6a\x26\xad\x40\x64\x88\x0d\x0c\xf6\x74\xc8\x29\x77\x1f\x0f\ \x82\x4b\x6f\xbb\xa1\x68\x2b\xdd\x69\x96\x92\xfb\x66\xb3\xfb\xc9\ \x78\xe0\xf0\x6e\xb1\xd8\xef\xbc\xdf\x8d\xfe\x73\xe4\x8d\x25\x3c\ \xc0\x36\xe2\x8f\x57\xac\x00\x92\x87\x6a\x1b\x47\xcd\xf4\xb8\x36\ \x2a\xdb\x67\x15\x5d\xe5\xd6\xec\xb4\xfa\xab\xce\x84\xc6\x57\x44\ \x97\xf3\x27\xdf\xa5\xa5\xed\x20\xfb\xc3\x25\x6d\xd0\x68\xe2\x84\ \xa2\xb3\x70\x6b\x7b\xfa\xb6\x23\x83\x1a\xda\x63\x3b\xf2\xe2\x06\ \x33\xfb\x64\xb8\xbb\x32\x46\x2f\x33\xd3\xdb\x94\x1b\x9d\x48\xa7\ \xb9\x9c\xca\x62\x4c\x53\x82\xe9\xee\x08\x8c\xf1\x18\x44\x34\xc5\ \x65\x4d\x9b\xc0\x6a\xc3\x6b\x13\xba\x80\x66\x6a\xaa\x51\x81\x2b\ \xac\x7a\x18\x5a\x20\x83\x1a\x79\x96\x6b\x83\x21\x58\x36\xb7\x92\ \x18\x44\xcf\x53\x42\x15\x96\x40\x8d\x02\x92\x87\xbb\xab\x1d\x21\ \xac\x27\x01\x23\x83\x72\x9c\x8b\xe3\xed\x69\x7e\x67\xce\xf9\x4a\ \xb9\xdc\x1f\x0d\xb9\x99\xd9\xce\xd7\x05\x20\xd2\x9c\x15\xa1\xcd\ \xbb\x76\x3f\x65\x22\x16\xda\x2f\x9f\xfe\x45\xa7\xbb\xf2\x95\x01\ \x02\x27\xb9\xd0\x9e\x02\x3d\x18\xcb\xde\x19\xb2\xfd\x5e\xae\x2e\ \x39\x3b\x20\x3e\xde\xe2\x4e\x1b\xe4\x32\xa7\x1d\x0f\x0e\xf6\x52\ \x13\x6d\x3e\xbc\x8b\x4b\x20\xd7\xbb\x64\x81\xa4\x96\xed\x10\xb4\ \xba\xb4\xee\x21\x53\xb5\x10\x29\xee\xfa\xb4\xc1\x20\xe6\xff\x88\ \xf8\x20\x3d\xed\xea\x88\xcd\x45\xb2\x0b\x9d\x42\xb6\x85\xce\xfb\ \xce\x07\x6f\x68\xd7\xb2\x02\x96\x17\x78\xbd\x0c\x2b\x4a\xd3\x12\ \x63\xa8\xb4\x41\x83\x42\xbf\xb9\xe6\xa2\x74\x04\x34\x57\x97\x5a\ \x1b\xed\xe2\x78\x2c\x06\x5a\xfd\xbe\xe8\xcd\x60\x1b\x64\x76\x00\ \x76\x47\x69\x40\x2d\xc7\xd4\x2a\x05\x39\xbe\xe3\xc5\x7b\x50\x45\ \xe6\xd9\x61\x89\xa2\x82\xd0\x8a\x1c\x6d\x3e\x54\xc5\x5e\x6c\xe4\ \x29\x06\x21\x46\xc3\x6d\xd5\xfd\x2d\xab\x2b\x15\x15\x1d\xde\x67\ \xbb\x6b\x24\x50\x3d\x00\x00\x20\x00\x49\x44\x41\x54\xac\x20\x20\ \x01\x18\x5d\x25\x95\x05\x43\x95\xb5\x24\x3d\xc3\x49\x91\x3e\x58\ \xaf\x4c\x0d\x92\xc1\xbb\xe0\x60\x49\x35\x11\xdf\xb7\xc3\x0f\x62\ \x86\xfd\x68\x44\xc8\xdf\x50\xae\x57\x97\x52\xc1\xb4\x62\x66\xf5\ \xf0\x2e\x44\x8c\x15\x42\x53\xb7\x9d\xda\x86\xde\x6e\xdf\x2e\x9c\ \xb7\x04\xb8\x08\x4b\x24\x63\xba\x62\xdc\xf7\x52\xa1\x0c\xad\x6b\ \xb3\xfe\xfa\x0a\xba\x95\xf5\x1d\x90\x6d\xdf\x56\x96\x0b\x1d\x22\ \xe1\x28\x2f\xf6\x15\xde\x9b\x37\x72\x15\x84\x6c\xf3\xce\xfa\xad\ \x2f\xe6\x24\x0f\xab\x1e\xec\xd5\x62\x32\xa9\x9a\xf1\xfe\x8e\x78\ \xfb\x5a\x34\xe4\xad\x8c\xfe\xed\xc6\xe6\x6f\x6f\x42\xf7\xee\x7a\ \x66\xd1\x8b\x7f\x58\xe4\x72\x9d\xcf\xec\xa5\xfb\xea\xb0\xdc\xbb\ \x0d\xea\x54\x1d\xdd\xda\xd1\xfa\x1c\xb2\xd6\xdf\x99\xe9\xe1\x7b\ \xe4\x5b\xeb\x53\x07\x66\xec\xa2\xd2\x69\x80\xb9\xa6\x9a\xb1\xd6\ \x0d\x41\x34\x4b\x66\x73\x26\xa2\xe8\x74\x73\x23\xa9\x35\xcb\xa3\ \xc6\x9d\x80\xb5\xe9\x36\x5e\xcc\x2f\x88\xb5\xfb\x69\x46\x84\x02\ \xe9\xb5\xf8\x8c\x09\x29\xd1\x63\x3c\x6a\x64\x79\x4f\xca\xe8\x3f\ \xa5\x42\x7f\xfc\x5d\xb9\xc8\x7b\x85\xe5\xb1\xe5\x18\x75\xc7\x6c\ \x72\x6a\xc0\x50\xc4\x55\xf3\x49\xe1\x0f\x22\x86\x55\x85\x8d\xbc\ \xac\x80\x95\xfb\x02\x02\x95\x1d\xb6\x0f\xe2\x85\x07\xe8\x66\x20\ \xab\x15\xb0\xb5\xbb\xd8\xbc\x45\x9c\x1a\xcc\x35\xd2\x83\xb2\x20\ \x39\x9b\xc0\x86\x41\x15\x1e\x14\x6c\x63\x9e\x74\x75\x98\xc9\xab\ \xb7\x10\x36\xdb\x41\xbd\x8e\xef\xf9\x00\xd0\xc9\x1b\x7a\x41\x03\ \x24\xfb\x59\xc5\x83\x80\xea\x6f\x2c\x76\xae\x17\xdc\xe5\x0f\xcc\ \xb4\xf9\x35\x2d\xc3\xc3\xcd\x52\x34\x8d\x2b\x3c\xb0\x66\xb0\x1e\ \x48\xf6\xe6\x7c\xf9\xca\xf7\x25\x90\x2b\x33\x14\xed\x2c\x9f\x23\ \x75\xcf\x66\xa1\x16\x38\xd9\xc3\x42\x7d\xc6\x5a\x76\xfa\x39\x24\ \x8a\xb7\x26\xc9\x5b\xcc\x5a\x3f\xdc\xdc\x1d\x3a\x2b\xf9\xa7\x7f\ \xf8\x68\x3f\xb5\x36\x70\x46\x3e\x58\x13\x66\x6f\xff\x36\x31\x75\ \xa0\x00\xe8\x9c\x24\xde\x71\x2a\x2f\xa7\xb7\x5a\xe7\xe7\xdf\x9c\ \x29\x69\x25\x22\x0f\x3c\xbf\xcb\xc7\x97\xd3\xcd\xaf\x46\x08\xcb\ \x85\x72\xad\x3b\xa4\x4a\xcd\xe1\x45\x33\x53\xdf\x9d\x82\x88\xb2\ \x95\x96\x7c\xbc\xc6\x54\x96\x44\x5f\x0a\x43\xc5\x80\x68\xcb\x5c\ \x2d\xa3\x03\x1d\x64\x39\x9a\xef\x1e\x28\x3b\xc2\x23\xcb\x3a\x88\ \x71\xb8\x9b\x1f\x6c\xf7\xc2\x0b\x29\x86\xcc\xe2\x79\xfc\x73\xe2\ \x4d\xfb\xfa\xb8\x94\x6c\xd0\xa3\x05\x33\x0f\xff\x86\x3c\xea\x7e\ \x27\x4c\xb2\x45\x3e\x5f\x93\xd3\xbc\x55\x1c\xbc\xe9\xe2\xae\xab\ \xa6\x37\x9a\x88\x47\x9d\xf6\x38\xbb\x5f\xd9\x34\x2b\xdb\x7d\x33\ \x8c\x5e\x6b\xa2\x4c\x88\xd8\x7e\x35\xe7\xae\xd1\x98\x6e\x4d\xaf\ \x68\xe4\x88\xac\x2b\x09\x2e\x12\xed\xd2\xb9\xdd\x8a\x63\x92\x25\ \x8f\xa0\x44\xcd\x66\x7b\x26\xcc\xb2\xaa\x91\x4c\x67\xb6\x9f\x20\ \xf1\xe0\xde\xdb\xc6\x05\xfd\x9d\x72\x00\x3e\x68\x21\x56\x22\x79\ \x10\xf8\xa9\x79\xcd\x7d\x16\x5c\x28\x57\x80\xdc\x77\xd8\xfb\x42\ \x60\x80\x23\x91\x7c\xeb\xed\xb0\xdf\xa0\x9b\xb9\xc2\x36\x18\xa0\ \x63\x24\x51\x95\xb6\xb3\xdf\x42\x03\xde\x1e\x40\x8c\x88\xdb\x8c\ \xc6\xb1\x88\xbc\x9d\xa2\xb4\xa8\x5d\xa3\x04\xe7\xa8\xca\xf6\x94\ \x63\xb7\xce\x8e\x45\xa5\x82\x6e\x72\xf9\xa6\x67\x47\x0d\x6c\xd4\ \x9b\x0b\xea\x81\xcd\xc6\x0e\xb9\xb6\x52\xd7\xc2\x42\x33\x8c\x5a\ \xce\x60\x71\x5a\x1f\xc0\xdc\xe5\xa2\x14\x6f\xf9\xee\x79\x65\x9a\ \xe9\x02\xd3\x65\xbf\xee\x2f\xba\xe8\xaf\x15\x9c\x5d\xe3\xf0\xc0\ \xfc\xde\xca\xe0\x92\xe0\x6f\x59\x77\xeb\xa3\x78\xab\xd2\x7b\x8f\ \x2e\x34\x2c\xcb\x0b\x88\x87\xf2\x32\x47\xd9\x76\x4e\xdc\x43\x19\ \x33\x79\x51\x67\xd6\xca\x7f\x51\xca\xaa\xd1\xaa\xe8\x3b\x09\x2f\ \x46\x33\x04\x92\x2e\xc5\xfe\xbc\xf4\xc1\xf5\x66\x6e\x03\xf4\xba\ \x22\xbb\x34\x94\x82\xb5\xe8\x5b\xb3\x93\xed\x6f\xba\xbc\x39\xf6\ \x0f\x33\x19\x7e\xde\xce\x6e\x79\x84\xbb\x1d\xcf\xa0\x73\x6c\xc4\ \x84\xab\xf4\x23\xdc\xb7\x3f\x8f\xc6\x5c\x13\x0b\xb5\x3f\x2d\x55\ \x25\xb0\xbb\xcb\xaa\xea\x00\x8f\x23\xd1\x25\xaa\xed\x92\x85\x92\ \xb4\x77\x1a\xdf\x65\xa6\x04\x5c\xfd\x53\xb5\x2c\xee\x83\xe6\x37\ \x1d\x74\x10\x17\xa7\x40\x15\xc2\xf3\x21\xb1\xc6\x23\x45\xab\x43\ \x70\xbd\x9f\x3a\x6f\xe7\xdd\x51\x41\x1e\xce\x86\xee\xdd\xf2\x25\ \x35\xac\xa4\xad\xf2\x35\x32\xd8\xe5\x03\x7c\x63\xc5\xf4\x76\x81\ \x38\x65\xf0\xc1\xdb\x40\x6a\x68\x78\xb0\x76\xc8\x9d\x72\xb6\x1f\ \x9e\xdd\xfc\xa9\x2d\x4d\x72\x3e\xf0\x91\x3b\x35\x55\xfd\xd1\x9a\ \xe3\xad\x83\xfb\xe5\xa2\x2c\x47\x2e\x69\x1b\xc0\xf5\xe4\x75\xf1\ \xc9\x80\x0c\xce\x36\x0b\x69\xc9\x61\xfd\xea\xd6\x92\xb3\x08\xd7\ \xa8\x6a\x55\xa6\xa2\x25\x8b\x13\x09\x23\xa5\xf9\x62\xfb\x36\xe6\ \xdd\x18\xa6\x97\xa8\xee\xe5\x8b\xdd\x5e\xb6\x07\x65\x67\xff\xac\ \x3c\x2b\xd1\x52\xcb\xc5\x83\xa1\x27\x99\x29\x6d\x25\x83\x4a\xf3\ \x2b\x94\x3a\xda\x69\xb5\x58\xa8\x31\x6c\x86\xed\x75\xcf\x77\xdb\ \x80\x21\x17\xce\x32\xe4\x91\xbb\x19\x51\x71\xa0\x45\xd9\x58\x73\ \x61\xf4\x8e\x15\xb9\x78\x8d\x50\x14\xf6\xe2\x91\x4a\x21\x3a\xf7\ \x32\x51\xe1\x1d\xf4\xc1\x8a\x9d\x3b\xdd\x88\x42\x56\xea\x4b\x00\ \x2a\x8a\x09\x13\xea\x8c\xa5\xad\xe2\xad\x55\xb1\xd1\xeb\x1e\xf2\ \x60\xe4\x32\x48\xf6\xfb\xac\xf8\xcd\x50\x66\x8a\xf0\x43\x83\xba\ \xbf\x73\x83\x7a\x53\xf4\xfa\xe0\x93\xd6\x0c\x83\x78\x53\x37\xf4\ \xba\x3c\xca\x71\x31\xdf\x77\x97\xfb\x2c\xfe\xee\x54\x33\x45\xe2\ \x61\x57\xd8\x68\x4a\x01\x7a\x6f\xbd\x56\xa4\x05\x3c\xef\x53\xda\ \x16\xa2\x72\x51\x42\xc8\xde\x32\x49\x19\x7f\x2e\xe0\x0e\x1d\x47\ \x11\x99\x70\x81\xcd\xa0\x93\x15\x98\x21\x1e\xe9\x84\x4f\x55\x70\ \x70\x6e\xed\x7d\x48\x2d\x0c\xc6\x36\x2a\x37\x43\x53\x01\x06\xbc\ \xe1\x6f\x17\x52\xb8\xd9\x28\xe5\xb7\xca\x56\xdb\x22\xcc\x32\x66\ \x4f\x21\xe0\xac\xbb\x92\x0d\x53\x6a\xdd\x59\xad\x12\xb7\xb8\x84\ \xa6\xe3\xa2\xb9\x7c\x0b\x31\x3f\x90\x9d\x36\x0d\x77\xbc\x63\x77\ \x44\x5d\x74\xdb\x07\x8c\xfa\x25\x33\xc3\x7d\x72\xd7\x2e\x1c\x8d\ \x0a\x37\xe7\xaf\x00\xda\x8c\x84\x87\xc2\x33\x19\x41\x30\xe3\x0e\ \xf8\xe7\xff\x3f\xc2\xce\x6d\x49\x92\x24\x39\xae\xa6\xe6\x9e\x59\ \xd5\x3b\xb3\x03\x90\x0b\x3c\x41\xf8\x01\xe4\xff\xff\x11\x45\x56\ \x40\x42\x08\x02\xb3\x33\xd3\x55\x95\xe1\xa6\x7c\xb0\x8b\x5b\x44\ \x66\x2f\x85\x10\x02\x73\xeb\xae\xce\x8c\x70\xb7\x8b\xea\x51\x46\ \x80\x9e\x42\x8a\xfd\xe9\x65\xad\xee\x20\x4b\x5c\xa7\x82\xed\xef\ \x2f\x48\x25\x76\x6d\x55\x58\xf9\x69\x45\xfe\xff\x1e\xe6\xfe\xa8\ \x5d\x66\x53\x2f\xe6\xf8\x2e\xf6\x91\x12\xb6\x5e\x36\x86\xdd\xf5\ \x2e\x3d\x16\x21\x85\xbd\xf6\x92\xb0\x71\x79\x6f\x9f\x96\xd1\xa7\ \x5c\xcd\xab\x43\xee\xc9\xa9\xdd\x10\x6a\x72\x99\x58\xe0\x65\x44\ \xc1\xab\xcb\x5a\x45\x3d\x98\x42\x7a\x35\xdd\x68\x03\xae\xc7\x71\ \xc0\x73\x64\xaa\x23\x87\xdd\x92\x42\x10\x3b\xd9\x38\x2f\xe2\x8c\ \x5e\x91\x5a\x38\x0e\x5a\xda\x6f\x88\xfa\xb3\xfe\x6a\xc0\x82\xb2\ \xb5\xf1\xc9\x1c\x8a\x76\x4a\x0e\xe8\x52\x15\x72\x71\x41\x74\xd6\ \x22\xd2\x16\x37\xdd\x03\x2f\xd8\x82\xfd\xfa\xee\x87\xdc\xdf\xef\ \x3e\x63\x96\x51\x10\x9f\x93\x17\xd6\x47\x25\x50\x95\xae\xb9\xf1\ \x13\x17\x3a\x80\xbe\xfa\x8f\xc0\x13\x17\x6e\x0e\xc8\x12\x2b\x47\ \x91\x59\xe4\xaa\x35\x4f\x70\x05\xf1\xc9\x25\x97\xe1\xe2\xec\xad\ \x1f\x69\x68\x91\xab\x9a\xfb\xa0\x51\x70\xfe\xce\x56\xfe\x02\xee\ \x28\xb4\xda\x8f\x9e\xec\x1c\xca\xb3\x0d\xc4\xf8\x23\xc1\xff\xd3\ \x43\xac\xfd\x39\xbd\xc8\x70\xce\x21\x19\x2f\xea\xc0\x1f\x2b\x0c\ \xf8\x72\xf3\x73\x41\x65\xbf\xc4\x7c\xb6\x71\x05\xaf\x63\x8d\x3d\ \x6b\x91\xb5\xd6\x32\x93\xb3\x81\xa2\xfe\xc0\x4e\xea\x70\xe7\x26\ \x04\x2b\x5d\x03\xf9\x71\xca\x39\x47\x88\xcf\x5f\x6b\x2b\x44\x3b\ \x9b\xae\x44\x8c\xd6\x5a\xf7\x58\x7f\xc5\xc4\x3b\x39\x2d\xa7\x5b\ \x3d\x55\x26\xea\xff\x13\xf9\xb2\x10\x60\x9a\x70\xfa\xab\x65\x96\ \xcd\x04\xa7\x0e\x68\x4c\xd8\xae\x81\x36\x3d\xb5\x2f\x87\x98\x2d\ \x96\x9e\xcf\x67\xde\xee\xb4\xd8\x0d\x24\x41\xc4\xf6\x3d\x5a\x01\ \xd2\x23\x0a\x92\x4c\x44\xc1\x4e\x03\x41\x44\xb3\x92\xe4\x42\xd2\ \xa6\xcd\x03\xe5\x2d\x8b\x66\x4f\xae\x59\x21\xdc\x14\x8b\x63\xce\ \x97\x4b\x7a\xc5\xf6\x6d\x00\xa2\x98\x89\x69\xf9\xce\xa5\x4d\x18\ \x64\x17\xfd\x97\x2e\x8e\xcd\x44\x7e\x16\x65\xe6\x8c\xf1\x04\x3b\ \xc4\x19\x56\x2e\x62\xa5\x6b\xe6\x19\x54\xb5\x13\x4f\x22\xc0\x41\ \xb4\x19\x8c\x57\xd7\x8f\x26\x26\xaa\x7a\x7d\x79\xd6\x6b\x3d\x41\ \xd8\x72\x61\x22\x7a\x9e\xa7\xa3\xcd\x6f\x9f\x64\x84\x08\x77\x71\ \xdf\xb4\x72\x67\x7f\xec\x64\x0c\xe4\x73\x6e\xd5\x74\xa9\x72\x59\ \x9c\x6e\x3c\x4d\x09\xd3\xe5\x19\x4c\x08\x64\x08\xac\x07\x97\x2f\ \xe3\x1c\x2e\x32\x80\x8b\xf9\x29\x78\x5e\xb2\x07\x85\x42\x23\x5b\ \xdb\xb6\x82\xbc\x1c\x27\x12\x2f\x66\x50\xf0\x7b\x46\xaa\xc9\x0e\ \x92\x78\x02\xd5\x67\x7a\x86\x14\x3e\x97\x32\x3d\x23\x60\x0c\x3d\ \xbe\xcc\x96\x41\x38\xe1\xc6\x64\xaf\x82\xd4\xba\x8a\xb7\x55\x20\ \xde\x85\x03\x57\xe5\x29\xcf\xe1\x61\x3b\xaa\x8d\x5b\x39\xb7\xbf\ \x99\x6c\xb3\x2a\x70\x26\x8c\x9b\x41\xeb\x30\xf7\x6f\x9a\xb7\x40\ \xfe\x78\x69\xe0\x11\x55\x07\xa9\xc2\x23\x36\x69\x01\x37\x21\xd4\ \x23\xd4\x2a\xa7\x9a\x24\x54\x38\x55\xed\x7c\xc3\x9c\xbb\x02\x4f\ \x2f\x1c\x22\x62\x5c\x09\xe1\x8d\x26\x50\xcf\xac\xca\xbd\x24\x4d\ \x01\x4d\x62\x7b\x35\x63\x2c\x86\xa4\x53\xf3\x32\x04\xeb\x70\x8d\ \x42\xc2\xfa\x9b\x66\x41\xcd\xdd\x82\xe8\x0c\xd5\xb4\xd3\x38\xa0\ \x02\x75\x9a\xf0\xb2\xee\xab\x44\xc9\x9c\x6c\x9b\x39\xc6\x38\x4f\ \x6a\x84\xe4\xce\xcc\x2b\x13\xc4\x8f\x28\x9e\x99\x24\x9c\x58\x4c\ \xd9\x71\x58\x30\x51\x26\x69\x75\xcb\xf5\x33\x8e\xb7\x2c\x83\x08\ \x6f\x88\x32\x4c\x54\x5c\x94\x51\x74\x80\x14\x08\x1b\x95\x3a\xf4\ \x76\xc8\x47\xb4\xec\xa0\x22\x5b\x70\xd9\x61\xc3\x7e\x2c\xf9\x59\ \x8a\xa6\xdb\x55\xc1\x99\x50\xb5\xf3\x86\xe2\x44\xa3\x17\x8e\xbe\ \x5d\x0e\xa0\x7b\x0c\x6d\xc1\xf2\xd5\x30\x79\x21\xaa\x9e\x6b\x6a\ \xfe\xdb\x4e\x7f\xc2\xdc\xab\x2a\x51\xf6\xa8\xec\xd4\x21\xf3\x20\ \xc5\xe7\xbe\xf3\x5c\x65\xca\x2b\x1a\x50\xab\xc8\x89\x8b\x63\x7e\ \xad\x85\xb4\x17\x35\xa7\x5b\x78\xc4\xcc\x1c\xe8\x14\x24\x0a\x55\ \x0f\xd8\x52\xe1\x8a\xd6\xbf\x74\x37\x22\x05\x3e\xc9\x0f\x67\xbb\ \x54\x76\x5f\xf7\x8a\xaf\xe4\xf7\x64\x12\xc6\x02\xf8\xb8\x6f\x43\ \xe7\x02\x67\xb2\xd2\xf3\x09\x57\xa9\x5d\x17\x39\x5e\xa4\xfd\x30\ \x03\x58\x36\xdb\x4e\x70\x26\x7d\xd7\x47\xc4\x93\x88\x61\x07\x82\ \xa4\x5f\x57\x8a\x7f\x86\x6d\xf2\x06\x79\x29\xb1\xfa\xa5\xf1\x42\ \x2e\xd0\x27\xce\x79\x2b\x54\x60\xae\xd6\x06\xe6\x79\x96\x9d\x44\ \x38\xdd\xa1\x20\xb2\x49\xf6\x97\x18\xad\xb6\x41\x3b\x85\x8d\x10\ \x52\xa9\x37\xd9\xca\xed\x94\x01\x29\x49\x2f\xcb\x83\x1f\xe4\x58\ \x89\x8b\xc8\xb7\x89\xa2\x10\x8f\x8e\xd6\xde\x10\x9e\x5c\x71\x7c\ \x5e\x21\xb4\x42\x67\x0f\x83\xb2\xb9\xdc\xd2\xbb\xd3\x72\x2b\xb9\ \xa2\xdb\x3e\x66\xcb\x83\x25\x67\x74\x62\xfb\xc2\xcd\x29\x87\x5c\ \xab\xed\xe7\x22\xf2\x69\x01\xda\x15\xe8\x06\x9c\x8d\x5b\x7c\x82\ \xe8\x89\x05\xd9\x67\xe7\xc0\xec\xd4\x79\x11\xd7\x3c\x89\x89\xa9\ \xa8\x27\xfb\xb5\xc0\xbe\xae\xdd\xe2\x5a\x56\xfe\x81\xbd\x85\x38\ \x2f\x0a\xb3\x8e\xc0\x4b\xdb\x73\x1e\xb4\x3f\xd0\xa2\x37\x92\xdd\ \xd3\xbf\x80\x0b\x1a\x53\x72\xb5\x53\x0e\xf5\x8b\x35\xbb\xef\x83\ \xe4\x0c\x89\xdd\x09\xdc\x1b\xad\x8d\xd6\xac\x21\x5b\x6b\x5c\xc7\ \x7d\x1b\x3b\xb1\xa7\xae\x97\x94\x45\x91\xda\xd8\x6f\x5b\x91\xbb\ \xc7\x12\xc0\x67\x21\x36\xe1\x55\xaf\x90\x3f\x25\xae\x80\x98\x9c\ \x15\xf0\x04\xba\x48\xb6\x73\x92\x04\x25\x8d\x0f\xcb\x15\xfc\xe1\ \x80\xf2\xa3\x4a\x0a\x8a\xd4\xe0\xb3\x6c\xa9\x1e\x15\xbb\xbe\x55\ \x05\x17\x71\x03\x64\x1b\xba\xe2\xc2\x54\x3c\x6f\x02\xb2\x33\x3c\ \x89\x30\x58\x42\x92\x53\x2e\x49\x66\x8e\xa7\x89\xbb\x62\x4e\x29\ \x32\x69\xc4\x1c\x43\xdb\xba\x15\x15\x3c\x99\xb3\x42\x39\x29\x32\ \x5e\x09\xd1\xb1\x03\x01\xd0\xf1\xc4\x72\x0e\x2c\x93\x8e\x86\x71\ \x1e\x62\x8c\x0e\x6b\xd1\x8c\xaa\x4c\x13\xf2\x1e\x47\x4e\xa8\xf7\ \x30\xc2\x3c\xa7\xc1\xb2\x59\x0e\xee\x24\x45\x45\xce\xb3\x65\x9e\ \xf6\x33\x3c\x45\x24\xfe\xe0\x05\x90\x97\x84\xa7\xf3\x4d\x71\xfd\ \x77\xb6\xf9\xb6\xbe\x72\xc8\x86\x0f\xa6\xb9\x33\x4b\xd1\x93\x30\ \x02\x25\x34\x44\x2a\xdd\x1d\xd0\x14\xcd\x9c\xc4\x23\x00\x65\xea\ \x29\x2b\x48\xd1\x9b\x2b\x27\xe9\x9c\x47\xc6\xbb\x1b\x6e\x33\x59\ \xc9\x89\x37\x76\xbc\xc0\xd6\xa3\x20\xdf\x9c\x92\xf6\x6d\x76\x5f\ \x3c\x97\x67\x8a\x3a\xda\x62\x90\x65\xd9\xcf\x7f\xd8\xb8\x41\xcc\ \x39\xae\x98\xd9\x3a\x8e\xfd\x5c\x7a\xf0\x75\x18\xff\x99\x8d\x2c\ \x4b\x52\x30\xda\x3c\x00\x0a\x0d\x93\x88\x7b\x64\x2f\x67\xd0\x59\ \xf5\x87\x93\xdd\x13\x17\x23\x1d\xb7\x74\x37\x8f\x12\x54\x60\x59\ \x8d\x5b\x55\xe1\x4b\x10\x93\x73\x9c\x23\x30\x03\x29\x4d\x78\xff\ \xa5\x71\x55\xd6\x52\xb5\x2e\x74\xcb\x39\xef\x75\x96\x5a\x7e\x15\ \xb3\x3e\x6b\xf2\xa3\xeb\xb4\x22\xe8\x7b\xb7\x66\x60\xa4\x0b\x56\ \x63\x94\xbc\x48\xa3\xc1\x54\x7d\xf7\x1a\xa5\xcb\x5a\x36\x86\x68\ \xdf\x0c\x44\x2a\x8a\x83\x04\x96\xbf\xdf\x43\xb4\x3d\xc1\x14\x1f\ \x5b\xb6\x26\xfb\x79\x30\x58\x6e\xb2\x8b\x14\xff\x34\x56\xca\xff\ \xd8\x3f\x95\xbd\x18\x4d\xa1\xeb\x65\xe7\x98\x74\x07\xd4\xbe\x4c\ \xce\xc7\x47\xde\xc1\x59\xb1\x9f\x81\x6c\x2a\x6a\xb0\xb2\xaa\xe0\ \xaa\x84\x09\x3c\x83\xff\xd5\x9c\xf3\x12\xf1\xd0\x9e\x10\x6b\xf0\ \x9f\x90\x62\x9e\x33\x8b\xfa\x2f\x2e\x66\xcb\xbd\x5c\x5d\x86\xbb\ \xd9\x99\xf2\x9a\x51\x9a\x42\x4a\x44\x9a\xfd\x49\x87\xba\x27\xc1\ \x11\x5c\x9f\x36\xde\x34\xed\xf8\x5c\x4b\x8b\xb4\x84\xec\x83\x87\ \xe0\x2b\x62\xf7\x18\xed\x1d\x97\x07\xb3\xe9\x49\x55\xd0\xde\xd5\ \xd4\xf5\x69\x74\xb6\xb2\x5e\x8d\xc7\xab\x1e\xd3\x18\x30\xec\xb8\ \xf8\x27\x5c\x84\x44\x84\x9a\x67\xbe\x39\xbc\x66\xca\x94\x08\x14\ \xe0\xe3\xf1\xf0\x24\x0c\x32\x7a\x1a\x89\x04\x81\xd0\x8a\x50\x28\ \x43\xcf\xb6\xbe\x96\x4e\x98\x86\xc7\x8e\xe7\xed\xe2\xb4\x52\x40\ \xb7\x7f\xc1\xa3\x99\xfd\x2d\x1a\x01\x41\xcd\x1a\x71\x85\xcb\x07\ \x44\x10\x5b\xbc\xfb\x5b\x6b\x01\x43\x55\x6d\x2d\x2e\x27\x21\x47\ \xda\x02\x28\x16\x81\x0a\xae\x50\xf4\xc5\x1e\xf6\xc2\x81\xf8\xb1\ \xbe\x8e\xf2\x4a\x8a\x1f\xd7\xec\x19\x42\xbb\x44\x90\x82\x54\xff\ \xb8\x9e\x21\x32\x17\x78\x67\x17\x3e\x46\x9b\x0e\x05\xd5\xb3\xdd\ \xdb\x78\x34\xb9\xd8\x78\x81\x45\xf7\xc7\xce\xe1\x3e\x10\xbc\x4c\ \x33\xf7\xda\xc6\x3f\x2d\xbf\x84\x5f\x2e\x3d\xeb\x33\xa9\xa1\xa8\ \xbf\x2d\xaa\xd2\x63\x40\x9f\x70\x0b\xad\x00\xcb\x2c\x90\xb5\x96\ \x48\xa8\xfd\x70\xea\xb2\x52\x41\xa2\x00\xc5\x0e\xb3\x65\x51\x42\ \x66\x78\x3a\xca\xd9\x45\x81\x73\x53\xf3\x8c\x67\x85\x22\x19\x65\ \x70\x40\x73\xba\x6d\x7e\xae\x67\xec\x9a\x64\xd2\x78\x56\xd2\xd6\ \x5a\x7a\xff\xc9\x74\x87\xb8\x78\xe3\x1f\xe2\x9b\xdc\x0b\x56\xf4\ \x93\x02\xbe\x4b\xd4\x1c\xf5\xa4\x1e\x12\x7e\x81\x0d\x55\x4d\x72\ \x4d\x46\x87\x94\x7f\x08\xe8\x9a\xf9\x13\x23\xe3\x09\x6e\x71\xf2\ \xc6\x36\x9f\xf0\x65\x88\x5f\x25\x7b\x5b\x31\x22\xb3\xd1\x64\x03\ \xcf\x52\x16\xbb\xa9\xf8\xb6\xcb\x7b\x3f\x0b\x5d\xbf\xe3\xd8\xb7\ \xf8\x21\xcd\xcc\x96\x91\x1a\x1c\x2d\xb5\x08\xfa\x34\xad\x1c\x74\ \x6b\x98\x80\xe4\x36\x62\x0b\x10\xaf\x60\xbe\x4e\xcd\xfb\x11\xe6\ \xc6\xbf\x3f\xec\x61\xd4\x06\xca\xbc\x54\xcd\x9c\xde\x04\x88\xc1\ \xc4\xba\x64\xb8\xae\x17\xd9\x45\x92\xad\x6e\xb3\xed\x6e\x9c\x7e\ \xd4\x93\xd6\x6b\xaa\xcb\xab\xfb\x7c\x83\x96\x32\xad\x7d\x8f\x56\ \x6a\xfd\x0b\x36\x6d\xfb\x52\x01\xa7\x3d\x74\x46\x9c\x57\xf8\x16\ \x5f\x64\x35\x90\xd6\x48\x0a\xee\x92\x72\x6f\xa6\x15\xd8\xa4\x5f\ \x48\x95\xc2\x15\xa1\x30\xb6\x4a\x09\xed\x5b\x44\xcd\x38\x8a\x50\ \x88\xb6\xee\x54\x45\x0c\x7b\x7c\x92\xc1\x17\xac\x78\x02\xcb\x00\ \xbf\x48\xa7\xf7\xb9\x73\xee\xfc\xeb\x8f\x1f\x81\x4a\xa5\xdf\x93\ \x9d\x9a\xa0\x0a\x98\x6b\xbe\x4c\x64\xcd\x70\x4b\x88\x2e\xaf\x33\ \x47\x09\xe9\x90\x5d\xfb\x49\x15\x72\x9d\xe8\xb7\x07\x2e\x65\x26\ \x25\x77\x97\x3e\x7f\x96\x16\x1b\xd2\x1e\x3b\x4d\xe8\x8d\x17\xf2\ \x91\x98\x80\xcc\x3a\x87\x8a\x2c\xe1\xe6\xf5\x32\xd2\x45\x69\x18\ \x37\xaf\x28\x35\xd4\xd0\x25\x56\x45\x13\x66\x83\x65\x50\x57\x81\ \x0e\x86\x56\x7c\xeb\xc8\x1c\xaa\x15\x62\x35\x79\xed\x7f\x96\x17\ \xa9\x0f\xb2\x73\x0a\xb6\xc0\x89\xd5\x52\x37\x0e\xe9\xa9\x65\xea\ \x4f\x21\x20\x54\xbb\xc8\x90\x9b\xd7\x3a\x3d\x54\x6e\x88\xc8\x28\ \x01\x0d\x0f\x69\x3f\x83\x58\x15\x97\xef\x4b\x4e\x41\x3a\xa7\x72\ \x3a\x74\x8c\x34\xbf\xf7\xd8\x68\xc8\xd2\x9a\x22\xbc\x5c\x5e\xe7\ \x82\x36\x9d\x73\xec\x30\x2b\x19\x25\xdc\x70\xe2\x06\xa9\x0a\x0b\ \x28\xa5\x8e\x01\x28\x6d\x5b\x6e\x76\x4d\xab\x82\x75\xca\xb3\x2f\ \x74\x80\xd1\x40\x15\xb1\xe1\x10\x3c\x05\x2c\x02\x57\xc6\x33\xbf\ \xea\xc2\xe8\xda\x33\xad\x5d\x6d\x16\x20\xa5\x8d\x18\x52\xdb\x86\ \x36\xa7\xce\x9b\xca\x43\x7e\x94\x34\x15\x2f\x3b\x40\xca\x34\x33\ \xb8\xa9\x6b\x2d\x41\x4b\xf2\x3d\x43\x4d\x2f\xc1\x43\xaf\xde\x9c\ \xd8\xb5\x65\xbd\x11\xa8\xec\x74\x67\x8e\xa7\x54\x26\xd7\x22\x8e\ \x4a\xbb\xca\x42\x52\xeb\xbe\x5a\x66\x17\xe0\x5d\xe9\xc6\xd3\xc5\ \x4e\x27\x36\x1a\xcd\x50\xa3\xa9\x1c\x63\x8f\xa1\x44\xa1\xaa\x82\ \x0b\xb1\x33\x68\x5d\x0d\x25\x79\x05\x5f\xc5\x0d\x97\x1b\xe3\x65\ \x5a\x89\x46\x48\xc8\x86\x88\x17\x7d\x22\xb9\xad\xb6\xb7\x1b\x22\ \x73\xce\xb5\x96\x47\xb7\x04\x25\xc6\xda\x0d\x78\xe1\xfc\x8b\x50\ \x75\xaa\x06\xf1\xb8\x01\xab\xb3\xa1\xe7\xcb\xdb\xcc\x49\x26\x1d\ \xaa\x13\xdc\xa5\xd3\xd6\x99\x42\xf5\x98\x60\x89\x98\x66\x6d\xa0\ \xd5\x3e\xd9\xc2\x4e\x92\x3c\x7f\x83\x22\x30\x5b\x8e\x58\xc3\x49\ \xff\xd8\x8c\xb1\x0a\x91\x21\xa2\xcb\xd6\x18\x13\xe5\x1d\x20\xa1\ \x92\xab\x5e\x83\xf8\x67\xa1\xc9\x4c\x2b\xf9\xb0\x29\x66\xde\xc3\ \xd9\xbd\xc8\x89\x47\xf0\x62\xfb\xd9\x64\x65\x61\xe6\x52\xd8\x96\ \xa5\xd7\x48\x1d\xfb\x40\x10\xa3\xb0\xca\x97\x84\xb8\xc9\x72\x4a\ \x3b\x7c\x08\x41\x08\xa1\x98\xd1\x42\x29\x82\x94\x69\x15\x65\x9f\ \x42\x54\x5e\x1f\xa3\xcb\x98\xf6\x69\x83\xc1\xd4\x4c\x6e\xa8\xb1\ \xec\x99\xfd\xce\x67\x5f\x26\x61\x48\x0d\x36\x97\xa5\x7a\xb4\x54\ \xd3\x31\x3e\xc3\x56\xd4\x87\x0d\x2d\x23\xc1\x1d\x90\x0a\x1a\x41\ \x89\x8c\xc8\x16\x0a\xdc\x23\xf5\xfa\xe1\x34\x00\x03\x08\x6b\xc5\ \x95\xa2\x49\x07\xae\x36\xac\x33\x4d\xa6\x9a\xe6\xdc\xe8\xd5\x75\ \xd2\xc5\xf6\x35\xf0\xd5\xca\x14\x9d\xc3\xe3\xeb\x62\x0a\x0c\x52\ \x60\x11\x85\xd9\xee\xe3\x13\x86\x7b\xc3\x44\x90\x3b\x9c\x16\xb3\ \x55\x4a\x06\xe9\xfa\x2b\x2c\x43\x9a\x49\xea\x81\x37\xb9\x28\xaf\ \xa4\xa6\x7c\x21\x03\x06\x6e\xad\xc0\xee\xd3\xe4\x2c\xb0\xf3\xb5\ \x4d\x00\x1a\x55\x27\x00\x19\xd6\xe1\x0d\x1b\xcd\x61\x84\xaa\xe8\ \xa0\x40\x97\x22\x58\x08\xf5\x43\x17\x73\x59\x65\xef\xc0\xfb\x58\ \x25\x54\x96\x39\x8e\xdb\x9f\xc9\x53\xb3\xf0\x64\xa0\x60\x6f\x2c\ \x76\x7a\x43\x93\x4d\x55\xb7\xb6\x47\xe4\x57\x8f\x53\x06\x1e\x9e\ \xac\x84\x2a\x73\x8c\xa1\x9a\x69\xa6\x62\x46\x6a\x1b\x61\xd7\x0a\ \xac\x0d\x8e\xfc\xc5\x4c\x63\x46\xfe\x61\xfb\xd0\x09\xaa\x10\x35\ \xb1\x5a\x26\xba\x0b\x42\x2a\x80\x3a\xbf\x73\x4b\x63\x7a\x0d\x99\ \x40\x51\xc2\x48\x1d\x80\x0e\xf4\x50\x50\x5b\x75\x9c\x87\x24\x20\ \x3c\xa9\x06\x98\x3f\x8c\xaa\x43\x02\x0d\x1e\xfa\xc0\xe0\xc4\x47\ \xcd\xed\x6a\x33\x6a\x3d\xa7\x3b\xbb\xa2\xb5\x17\x67\x98\x58\x3f\ \xc8\x9d\xc6\x72\x5a\x23\x06\x4a\x02\xfd\x8b\xd0\x3a\x34\xfd\xba\ \xd7\x48\x1c\x11\xda\x48\xb0\x49\xcb\x15\xdd\x32\xb4\x93\x68\x33\ \x51\xa5\xae\x6a\x71\xfc\xd1\x18\xba\x1b\x9b\xd8\xc1\x89\x0e\x25\ \x1d\x35\x93\xa8\xb5\x88\xfe\x85\x5f\xa8\x0a\x18\x2b\x98\x51\x1a\ \x6a\x34\xa2\x65\xc7\xb6\xf4\x6e\x97\x71\xf9\xbd\xfc\x3f\x59\xb9\ \x3f\x89\x17\xc7\x7b\x64\xf5\x44\xae\x21\x5b\xff\xda\x22\x09\x06\ \x84\x65\x0c\xa5\xa2\xec\x5d\x51\x44\xcb\x2e\x1d\x01\x8a\xa6\xbd\ \x92\x01\x0a\x8d\x64\x1b\xa6\xec\x45\x45\x08\xa5\xc0\x3a\x27\xad\ \x3f\xe5\x7b\x32\x21\xf6\x6c\x29\xdf\xfb\x89\x2e\x2d\x2f\x43\x76\ \x4d\x56\xd1\xb8\x84\x81\x78\xd3\xf0\x2c\x40\x84\x33\x16\xc3\xb6\ \xbc\xbc\x33\xef\x70\x11\x22\x17\x3f\x5e\xac\x60\x18\x29\x64\x46\ \x0c\x9c\x9d\x1b\xd7\x36\xa3\x15\x2c\xef\xbc\x78\x94\x62\x8a\xfd\ \x55\xcc\xa4\x2b\x02\x30\x97\x8d\x65\xb4\x03\x4e\x6e\xdf\x7a\x9f\ \xf6\xda\x58\xb1\x1f\x78\xbf\x7e\x08\x27\xb9\x71\x38\x38\xcd\xda\ \xfc\x2c\x12\x16\x33\x2c\x15\x01\x1a\x2d\xf7\xd7\xbe\x46\x64\x9b\ \xb4\x2f\xe0\xac\xe7\x49\x40\x2a\xbb\xd9\xdb\xeb\x54\x9d\x95\xfc\ \xb6\x66\xbe\x0e\xaf\xc6\x0c\xd7\x29\x24\x3e\x9b\x1c\x7b\xc4\x65\ \x07\xe2\x2c\x52\xec\x6b\x6b\xf8\x89\x1d\x05\x5f\x59\x0e\x2a\x73\ \xc3\xac\x11\x48\xa5\xf2\x60\x50\x21\x1d\x60\xda\xbf\x4d\x4e\x78\ \x5e\x04\x3b\x55\xe4\x14\x83\x16\x32\xb8\x20\x87\x1a\x54\x1c\x19\ \x82\x7e\x9a\x23\xb6\x95\x86\x9e\x2d\x2c\x4f\xba\xaa\x00\x08\x22\ \x64\x2c\x29\x72\xb0\x66\x8f\x49\x96\x6b\x7c\x0e\xb1\x2f\xcc\x88\ \x2f\xd6\xb4\x44\x5b\xac\x46\xb5\xcd\x1b\x65\xbb\x43\xe6\xf3\xd4\ \x47\xfa\x3c\x35\x2f\xd5\x74\xd4\x94\xbf\xab\x3a\x54\x77\xad\xbb\ \xf7\x3e\xc0\x5d\xfe\xeb\xa8\xc8\x48\x34\xb2\xea\x98\x31\xb8\x10\ \xc4\xff\x6a\xe0\xb6\x2d\xa4\x6f\x6b\xba\x95\xdf\x77\xc5\x85\x20\ \x1f\x97\x50\x89\x27\x8d\x21\x20\x18\xcf\x71\xad\x95\xe2\x9d\xef\ \xa2\x10\x96\x85\x95\x59\xce\x50\x97\x45\xfa\x60\xb3\xae\xc4\x67\ \xec\xba\x40\xb0\xe4\x92\x5e\xad\x39\x3a\xad\x1b\xf4\xb5\x45\x35\ \x6c\x0c\xd2\xc5\xd0\x52\x1b\x15\xa3\xc9\x8e\xa3\xb9\x60\x60\x9f\ \x61\x3d\x69\x40\xef\xa4\x87\x5a\xfe\x5e\xf3\xcd\x91\xc6\xf4\x7e\ \x4d\x65\x14\x55\x9d\xd0\x97\xa5\xbe\x94\x58\x03\xb9\x5c\x32\x33\ \xf7\xbc\x36\x4f\x76\xdf\xd8\x00\xaa\x04\x3d\x70\x92\x99\xaf\xb8\ \xad\x04\x57\xc6\x6a\x93\x29\xf0\x64\x94\xac\xa2\x27\x26\x3d\x02\ \x92\x43\x6a\x08\x99\xe2\x7e\xd9\x1f\xc7\x89\x0a\xd6\x16\x97\xc5\ \xda\x58\x6b\x99\xad\x1c\xfd\x58\x47\x09\x6e\xfb\x2e\xb6\xa6\x7f\ \x4b\xfd\xf7\x2f\x5f\x31\xef\x75\x37\xb2\x6f\x34\x5d\x1d\x91\xde\ \x36\xd6\x03\xd6\x2b\xb7\x5c\x0e\x69\xb5\xc1\xe7\xa9\x5e\x4c\xaf\ \xa5\x49\x57\x1a\x01\xc6\xe0\xb7\xcd\x50\x08\x79\x3c\x1e\xe4\x29\ \x5d\x9d\x0d\xcf\x5c\x00\x56\xae\xb5\x81\x35\x5e\x09\x15\x3d\x36\ \x73\x61\xf3\x37\xde\x13\xa4\xe7\x94\xa5\x36\x03\xa9\xb5\x21\xb7\ \x34\x4d\x95\x9b\xc6\x78\xda\x06\x47\x9c\x1b\xba\x34\xce\xeb\x45\ \x6b\xa5\x16\xd8\x24\xc4\x3c\x89\x29\x4e\x4a\x85\xab\xc7\xe1\x07\ \x26\x88\xab\xd3\x75\xb7\x3a\xaf\x97\xa4\x27\x31\x84\x4b\x41\x76\ \x56\x77\xe9\x6a\xb4\x24\x89\xe9\x2e\xb1\x92\xc3\x5d\x36\xa5\xb1\ \xb4\xb1\x36\xa7\xfe\x21\x85\x92\x39\x6f\xd0\x7e\x5e\x34\x6f\xcb\ \xf6\xcf\xe4\xa4\x34\x0a\xf8\xca\x1d\xda\xdf\x57\xee\xcb\x1d\x3f\ \xd9\x08\xe5\xd2\x77\xa0\x88\x33\x7b\x87\x32\x96\x65\xd9\x0f\x06\ \xe3\x96\xf2\x67\x97\x7b\x5d\xf3\x0b\x22\xd1\x2b\x7d\xd3\x5e\xdd\ \x24\x1d\xb6\xc0\x45\x9e\x53\x00\x95\x14\x66\xed\x9d\x6a\x3d\x84\ \xbb\xfe\xad\x2d\xc3\x56\xfe\xe4\x9a\xc5\xdb\x2b\xcd\xcb\x2d\x23\ \xa2\x52\xa7\x83\x27\xab\xdf\x5a\xeb\x36\x07\xd7\x9a\xa5\x4a\xe6\ \x1e\x8a\x45\xa3\x13\x48\x1d\x08\x81\x65\xb6\xc7\x4d\x8d\x10\xac\ \x00\x17\xed\x9a\x1f\xe4\x11\x5f\x40\x8e\xbf\xbb\x89\x40\x72\xd3\ \x42\x9a\x60\x31\x83\x9f\xd1\xac\x03\x66\xa6\x63\x42\xe0\x12\xf2\ \xf8\x61\xcc\xa0\xc1\x20\x83\x8e\xa6\x61\x90\x65\xa7\x33\xa7\xb6\ \x2e\x3b\xd7\xb1\x37\x24\x67\x47\xe4\x4e\xd8\x02\x46\xc6\x60\x9c\ \x36\xee\x8c\x28\xb0\x38\xa5\xa2\x44\xa5\x78\xa2\x2f\xe0\x71\x8a\ \x2f\x61\x71\x5e\x26\xc6\x50\x3e\xf1\x37\x0d\xa8\x46\x44\xc8\x04\ \x55\x62\x6b\xed\xf1\x75\x57\xa2\x5f\xfa\xe3\xab\xbc\xea\xa5\xb1\ \x43\x20\xf6\xf1\x64\xc9\x60\x7a\x3a\xaa\x34\xfe\xd3\xfa\xaf\xd3\ \xaf\x18\x79\x2d\x3b\xea\xc2\x97\xf7\x3a\xea\x94\x66\x2c\xc2\xbd\ \xbf\xdd\x83\xb5\xf8\x7e\x34\x25\xe3\x74\x8c\x78\x9e\x54\x10\x0d\ \x83\x88\xef\x77\x96\x71\x99\xc6\xb3\x6c\x11\xbc\x94\xeb\x7c\xe1\ \x2e\x7a\xc7\x48\x09\xa6\x91\x43\x1a\xe4\x40\x58\x73\xa4\x1d\x68\ \x13\x2f\x87\x45\x2c\xe5\xf6\x87\x4b\x0f\xf7\xc8\x87\xd6\xff\x0d\ \xeb\xf2\xb7\x54\x48\x3d\x07\xfd\x66\x28\x99\x1e\xcb\xe6\x98\x7f\ \xfb\xed\xfb\x1c\x63\xf8\x37\x6b\x25\x39\x1d\x6c\x07\xaa\x1a\xc4\ \x15\xd0\x9e\x47\xd0\x8d\xff\x65\x9a\xdb\x3a\xb4\x96\x45\x5e\xf9\ \x2d\xb6\x56\xb7\x0c\x20\x74\x38\x84\x52\x56\x27\x89\xb6\xac\x46\ \xa9\x95\x07\x15\x23\xe4\x5c\x10\x21\xc7\x9c\x39\x78\x18\xbe\xd6\ \x48\x99\x09\x5e\x88\x76\x9f\xb6\x2e\xa7\xd9\x59\x97\xcc\xe4\xbe\ \xe3\xe2\x83\x88\x02\xc3\x3c\x41\xcd\x4e\x28\x6e\x86\x7a\xff\x92\ \xed\x73\xe1\x42\x09\xc5\x16\xe1\x59\x61\x72\x49\x50\x6a\x00\xf5\ \x68\xc7\xcc\x4b\x9c\xb2\xac\x48\x75\x4a\xb6\x1c\xe5\x9e\xf8\x1a\ \xa2\x61\xbd\x14\xb5\x77\x70\xc5\x91\x5d\x1c\x1c\x9d\x59\x93\x55\ \x93\x27\x2c\x5c\x2a\xd2\x44\x3f\x64\x62\x72\xfa\xbd\xe3\xdb\xd7\ \x8d\xea\xdc\x4f\x61\xb7\x8c\x65\xb3\xbb\xef\x78\x31\xbf\xfb\x52\ \x00\x51\x23\x2a\xdf\x43\xd3\x04\xa3\x60\x9b\x28\xf3\x97\x08\x64\ \x08\x8e\x3c\x88\xcd\x7d\x38\xd8\xea\x94\x0b\x0c\x77\x63\x38\x2f\ \x01\xf1\x7d\x20\x28\xad\x4c\xc3\xb2\xc0\x7b\xed\xce\xa2\x4d\x24\ \x5b\x1c\xd0\x5a\x71\x1c\x3c\x1e\xc7\x5a\x6b\x6e\xcc\x53\xe4\x39\ \x4b\xed\xea\x9b\xcd\x22\x1d\x98\x25\x29\x2d\xa5\x68\xbd\x06\xee\ \x1b\xe1\x0f\xf1\x9c\x7d\xe9\xc6\x13\x5b\xcc\xaf\x2e\x22\xc7\x39\ \x6d\x59\x55\x0e\xee\xf6\xdc\x27\xb8\x59\x0b\xd5\x30\xb6\x84\xf5\ \xb2\x6c\x29\x5f\x18\x4b\x0b\xd5\x59\xe0\x2d\xdb\x5d\x7e\x30\xc7\ \x94\xa7\x15\x41\x93\x6c\xda\x45\xad\xf3\x72\x4b\x18\x33\xf4\x57\ \x81\xd2\x3b\xf3\x19\x68\x24\x13\xab\x0b\x25\xfe\x9f\xd5\x33\x9d\ \x1f\x43\x46\x35\x49\x0b\x29\xa8\xcb\xf3\x35\xf1\x43\xae\x8c\x84\ \x3e\x8a\x6d\x4b\xb9\x13\x3e\xd7\xdf\x28\xef\xf7\x6a\x10\xeb\x3c\ \x31\x5e\xec\xa8\xed\xb7\xbe\x70\xd3\xe1\xab\x43\xd4\xd5\x6d\x35\ \x1a\xf7\x0f\x48\xd4\xd7\xde\x2c\xb7\x45\x28\xc1\x2a\xe9\x05\x32\ \xe4\x87\x4d\x20\x32\x58\x57\x90\xc4\xc3\x67\x9b\x36\x3c\x30\xf6\ \x24\x70\x41\x1b\xa5\xd6\xc7\xa3\xcf\x38\xf9\xa2\x1e\xc9\x41\x5b\ \xbf\xfc\xf9\x67\x7f\x6d\x2c\x21\xe2\x81\xbb\x94\xcc\x4c\xf3\xaf\ \x70\xc4\xc7\x14\x13\x09\xbf\x9a\xba\xdd\xc9\x7b\x6d\x33\x3b\xe9\ \x84\x13\x85\x71\x31\xb1\x49\xd5\x64\x71\xcf\x2c\xc9\xd4\x1a\x11\ \x18\x97\x39\x08\x64\x6d\xa6\x14\xd6\xaa\x95\x6b\x2a\xb7\x4e\x03\ \xc5\x25\xa9\x07\x10\xbb\x22\x63\xf2\x7b\xbd\xe0\xfa\x9f\xf7\xb6\ \x5b\xce\xc3\x13\x07\x03\x69\x1a\x3b\x8b\x35\xf1\x72\x42\xfd\x64\ \x71\x0d\x00\x8b\xb4\x98\x37\xc2\x32\xa2\x57\x0e\xac\xa1\x23\x9e\ \x06\xd9\x0c\x87\xe5\x1f\xd7\xb2\xe2\x56\xe7\x42\x51\x14\x78\x99\ \xe3\x52\x5f\x87\x31\xf2\x52\xaf\xea\xfa\xf3\x7e\xf0\x47\x0a\xba\ \x97\x74\x62\x8f\x40\xdc\x50\xb8\xa9\xad\x89\xcf\x58\x8a\x57\x62\ \x3f\x00\x3a\x82\x6e\x97\xf4\x65\x6e\x9d\x6b\x3e\x9b\x26\x5e\x80\ \x88\xc6\x6a\xc1\xca\xd2\x17\x59\xc5\x9e\x53\x16\x44\x5c\x3f\x2a\ \xac\xc3\x20\x24\xa2\xc1\x8a\x22\x58\x48\xb9\x7c\x1f\x12\x3c\x93\ \x8f\x72\x14\xb2\x16\x8c\x8d\xf8\x2f\x47\xde\xae\x8c\x59\x48\xfe\ \x82\xca\xe3\xe0\x71\x3c\x6e\xf7\xf7\xb9\x0f\x76\x71\x29\x3f\x35\ \x3d\x74\x3c\xc3\x47\xe4\x82\x10\x68\xfe\x16\xd9\x10\x61\xe1\x6a\ \x37\x3e\x77\xf6\xc2\xb3\xc5\x25\xf6\x95\x67\x1c\x43\x2c\xef\x8b\ \xe5\xc7\xcd\x44\x09\x65\x0d\x6a\x22\xd5\xb6\x60\x56\xae\x16\x34\ \x2b\x95\xd4\xcf\x29\xd7\xa9\xb6\x3c\xfb\xe6\x2f\x4f\xc9\xe6\x39\ \xe8\x0b\xab\x63\xbf\xd6\xea\x1d\xbb\x24\xbf\x9e\x66\xd6\x67\x7a\ \x67\xce\x77\x74\x84\x7e\xc2\x9e\xd3\x44\x36\x39\xfe\xac\x13\x7d\ \x0e\xa6\x3c\xbd\xc0\xcd\xf2\xf7\xcc\xb3\x4d\xb7\x0d\xb6\xd0\xe6\ \x39\xf0\x1d\x27\x33\x4f\x34\x63\x25\x70\x6a\x1b\x64\x3b\x4d\x14\ \xf1\x03\xa4\xc4\x39\x8e\xae\xaf\x20\x2b\x35\x3d\x1e\x6b\x44\x25\ \x94\xe2\x1d\xa4\x4d\x4d\x2b\x66\xaa\xd5\x7e\xdd\x05\x97\xb1\x2c\ \x2a\x27\xdf\x4a\xcd\xb2\xa4\xdc\xa0\x5b\xf6\x57\x23\x6b\xe9\x33\ \x6c\x76\x95\x51\x97\xa5\x79\x86\x82\x07\xe9\x4e\xa3\x4d\xe8\xa2\ \xad\x90\xa7\xf4\x60\xc1\x74\xbc\x3e\x1e\xbe\x02\x19\x63\xb8\x3e\ \x14\x39\x00\x3c\xc2\xb4\xc7\xea\x6d\x2a\xdc\xf3\xe2\xb9\xbb\x2c\ \xda\x3d\x2a\xb4\xd5\x60\xd1\xf3\x41\x64\xc0\x05\x77\x9e\xc6\x23\ \x88\x24\x28\x9f\x6d\x68\xfc\x57\x63\x94\xbd\x6d\x7f\x16\x3c\x57\ \x86\xaf\xa4\x65\x17\xec\xc6\x9e\xfe\x41\x9e\x54\x61\x28\x20\x99\ \xe0\x35\x8b\x59\xe4\xef\xb0\x48\xa5\xab\xf2\x9e\x15\x3a\x31\xed\ \xf5\xf7\x1a\x54\xb4\xc7\x39\x2d\x85\x94\xfd\xc2\x54\x1c\xf8\x8f\ \xa8\xb3\xdd\x91\x07\x5c\x43\x6d\x4b\xbd\x01\x39\x99\x1e\x64\x33\ \xda\xa5\x99\xb4\x76\xed\x86\x38\x8c\x73\x3a\x46\x9a\xac\xcd\x06\ \xa6\x58\xc8\x08\x4f\x53\x16\xcb\x74\x70\x55\x1f\x7c\xc6\x1d\x7e\ \x3c\x1e\x96\x42\x28\x29\xa8\x7e\xe8\x77\xe1\x0d\x5b\xd0\xe7\xd9\ \x18\xdc\x61\x8d\xa7\x18\x4f\x60\x62\xa9\x91\xdc\x69\xe0\x99\x94\ \x35\xec\x95\x50\x57\x5b\xef\xaf\xc4\x02\xfc\x9d\xfb\xab\xde\xda\ \x9c\x3e\xd5\x20\x10\x88\x40\x16\x8f\x69\x66\x6e\xfe\x65\x24\xd8\ \xa8\x27\x63\xb6\x71\x39\xf3\x74\x81\x08\x87\xaa\xad\x80\x52\x43\ \x55\x96\x1d\x16\x32\x5e\x5f\xc5\x54\x49\xb3\x68\x90\x21\xaf\x4a\ \x7f\x14\x53\x37\x31\xd3\xdc\x26\x67\x8a\x0e\x66\x62\x94\x84\xf5\ \xce\xf9\x5d\xb2\x96\xd5\x42\xb4\xf4\xab\x29\x02\x4f\x8f\x61\x9b\ \x6e\xfb\x73\xec\x27\xbd\x9d\x0d\x80\x9d\xb8\x69\xf1\xd5\x07\xa4\ \x23\x66\xca\x5b\xbe\xeb\x85\x45\x68\x28\xeb\x16\xaa\x71\x6d\x33\ \x87\xb2\xc9\x9f\xd3\xdb\x97\x70\x21\x34\xca\x36\x74\xbb\x38\x73\ \x1a\x1a\xa3\x36\xdb\x8c\xcc\x93\x1e\x96\x99\xdd\xf1\xfc\xde\x5e\ \x53\xd3\x28\x2f\x7b\xad\x4c\x77\x41\x73\x0d\x22\xa9\x27\xc1\x46\ \xef\x40\x43\xdf\x0d\x56\x75\x49\x69\x0f\x3b\x9a\x1d\x3a\x46\x91\ \x4e\xba\x8b\x53\x5b\x37\x44\x28\x6f\xcb\x75\xaa\x0b\x1b\xfc\x52\ \x89\x08\x8a\xcd\x65\xba\x98\xc7\xa7\xef\x1c\x30\x24\x56\xb0\x1d\ \x45\x5d\xef\x70\x96\x7b\xbf\x40\x09\xcb\x89\xc2\xde\xb7\x2a\x81\ \xef\x90\xb4\xea\xc8\x59\x19\xd3\x46\xdb\x55\x5e\xce\xcd\xe6\x30\ \x8b\x3f\x7b\xaa\x89\x0b\x81\x3b\x9e\x18\x68\x16\x0d\x5c\x24\x34\ \xf8\x8d\xe3\x83\x46\xf1\x6c\x81\x3e\xa4\xe4\x45\x22\xed\x77\xb1\ \x86\xa0\x76\x1b\x0a\x18\x19\x02\x6a\xc0\x30\x69\x11\x0b\xe6\x93\ \xcc\x1e\xb9\x02\x19\x30\xc9\x69\x46\x72\xd5\xf2\xa1\x54\xc8\x7e\ \x90\xd5\xdf\xf0\x6b\x8f\x98\x90\x80\x48\xa0\x8a\xa8\xaf\xf0\xad\ \x53\x6a\xc2\xd2\x92\xd9\xf3\x21\x68\xa2\xc6\x15\xc1\x4f\x11\x8f\ \x7e\xbe\xaa\xd5\x2b\x71\x84\x9b\x64\x30\x58\xdc\xea\x65\xa5\x46\ \xa4\x82\xbf\xbc\xc3\x8f\xfe\x7d\xf4\x5d\xb6\x5e\xb2\xbd\xfc\x2f\ \x51\x5b\x39\x81\x95\xe0\x01\x3d\x05\xdf\x46\x59\xcf\xb2\x87\x24\ \x9f\x44\x55\xc4\x96\xe4\x13\xd0\xc5\x9e\x12\xc5\xb6\x67\x10\x65\ \xb6\xb9\x08\xc5\x73\x03\x53\x23\xa2\x08\x0e\x0c\x92\xc3\x9d\xe3\ \x10\x73\xb2\x55\xda\x55\x63\xfe\x01\x13\x51\x5a\x0c\x12\xe9\x66\ \x6e\x2a\x65\x39\x8b\x24\xc0\x44\x59\x52\xa4\xa2\x3f\xfc\x48\x22\ \x6b\xc9\xc9\x91\xdc\x23\x57\x71\xda\x09\x91\xa9\x3d\xc4\x7e\xd9\ \x3d\x2a\x99\x01\x51\xb0\xc0\x5e\xf2\xb2\x66\x94\x0e\x6a\xf6\xdf\ \xec\x78\x1c\xdf\x7e\xc2\x4c\xc4\x3e\x1b\x68\xbc\xa5\xd5\x8a\x26\ \x55\xe9\x14\x9c\x76\x29\xaf\x2b\xef\x33\x00\x1a\x91\xd8\x8e\x02\ \x4f\xbe\x50\xdd\xef\x9e\xa8\x65\xa7\x08\x7c\x09\x63\xde\x22\xfa\ \x2f\x6d\x79\x20\x52\xe8\xdb\x98\x9a\x20\xc6\x9c\x3e\x83\x89\x64\ \x4f\xf7\xfb\x51\x61\xcd\x62\x55\x2e\x9a\x2a\x89\xa1\x97\xf4\x28\ \xb9\xd0\xe2\xeb\x7e\x34\xaf\x1f\xea\xee\xb6\xd2\xe5\x49\x08\x7a\ \x29\x46\xd9\xbb\xca\xf2\x6d\x31\x86\x4f\xe3\x14\xb9\xed\x26\xcd\ \x2d\x80\x52\x45\x91\x26\x91\xeb\x09\x91\x1c\xc7\xd6\x14\xb0\x0d\ \xb8\x63\x7e\x15\xb7\x46\x71\x69\xa5\xc9\x3a\x79\x6d\xe5\x6c\xd7\ \xf3\x9a\xd7\x85\xe5\x1f\xd9\x84\xda\x2c\xf8\xfd\x33\xdd\x45\xce\ \x76\x98\x67\xaa\x4a\x53\x2d\x94\xd3\xc5\xf9\x5c\x66\xcb\x4c\x55\ \xa7\x82\xb1\x06\x4a\x70\x87\x0f\xa0\xad\xe7\xbf\xd6\x6f\xb0\x89\ \x4d\x76\x22\xba\x34\x0e\xbe\xa7\x0e\xec\x8d\x1f\x4b\xf2\x51\x23\ \x38\x96\xa5\xbe\x2d\xfd\xe3\x68\xdd\x41\xd3\x68\xbb\x2a\x29\x08\ \x56\xb4\x87\x7b\xa9\x19\x19\x38\x22\xe0\xa4\x11\x0a\xb3\xe5\x6f\ \x38\x11\x9e\xab\x14\x77\xd2\x8d\x49\x67\xc5\xff\xb5\x0c\xd0\x8a\ \xae\x6d\xae\xe0\x8c\x7d\x7d\x9d\x69\x1e\x99\x59\x7b\x6c\x85\xb6\ \x6b\x33\x5b\x41\x04\x32\x49\x93\x5a\xce\xba\x3d\x83\xd9\x21\x43\ \x6e\xe5\x0e\x83\xaa\x53\x45\x9b\x2f\xa0\xe7\x8d\x76\x63\x69\x94\ \x34\x20\x4e\x0e\x89\x6b\xe6\xf3\x75\x92\x9e\x75\xd5\x8a\x8a\x28\ \x9b\x1e\x84\x33\x8e\x15\x00\xda\x43\xc8\xf2\x35\x31\x13\xc5\xa2\ \xef\xa0\x9a\x54\x40\x03\x2c\x5e\x14\x12\x14\x00\x86\xcd\x3d\x7b\ \x11\x31\x9c\x4d\x30\x2a\xb2\x85\x4c\xd8\x4a\x61\xbe\x7a\x73\x02\ \x9d\xb4\x37\x8b\x39\xf0\xde\x17\x01\xda\x66\x6e\xff\x14\x4d\x22\ \x21\x5d\x72\x1a\x51\x8d\xdd\x56\x10\x60\x7f\xc9\xb0\x78\x1d\x73\ \x4c\x83\xf7\x36\x47\x44\x07\xa1\x31\x32\xf3\x82\x17\x2b\xeb\x12\ \x1b\x72\xa3\x99\x82\xb0\x07\xb1\x21\xe2\xcb\x8e\x3c\x59\x8d\x09\ \x10\xd3\x50\x3e\x94\x3e\xaf\x54\xdb\x46\x6d\x65\x6a\x06\x9c\xd7\ \x5a\x9a\x56\xf0\x88\x86\xc9\x0d\x84\xb8\x13\xa0\xe6\xb2\x25\xe4\ \x5a\x87\x63\x9a\x99\xfb\x0c\x93\x16\x17\x76\x56\xdc\xf0\xc2\x81\ \xed\x6d\xd0\x69\x88\x94\xed\xa9\xee\x5d\xe7\xb9\x21\x56\xdf\x0e\ \x67\x6b\x9e\xa4\x2c\xf7\x3c\xa9\x36\x7d\xa4\x1f\xf3\x10\xcf\x6b\ \x30\x5f\xe4\xa7\x22\xd2\xc4\x5c\x1c\xad\x5e\x4f\xa2\x63\x31\x9e\ \x68\x80\x39\x09\x90\x9d\x16\x58\xe4\x37\x69\x4e\x9e\x4a\xa4\xea\ \x26\xf5\x4c\x42\x4e\x55\x82\xc6\xf4\x66\x47\x43\xd3\xbd\x77\xf9\ \xad\xa4\x7c\xff\x42\x9c\xda\x53\x87\x4a\xb6\xce\xdc\xca\xd0\x0c\ \x6f\xaf\x0b\xb4\x85\xec\x32\x66\xc1\xa7\xa4\xee\x13\x33\x55\x84\ \x7f\x07\xb6\xdb\x0a\x8a\x3a\x10\x37\x13\x54\x33\x0d\xbe\x0d\xe5\ \xf6\xed\xdd\xdb\xc2\x3e\x6e\x8b\x47\xbc\xd2\x05\x21\x4c\x17\x1b\ \x64\x40\x15\x37\x92\x9f\x9f\x1f\x5f\x5f\xc7\xf7\x8f\x4f\xb3\x6d\ \xeb\xda\xd5\x4f\xb0\x38\x8d\x66\x6e\x4b\xf0\x50\xf3\x06\x3a\x2e\ \x3b\x29\x37\xf3\x2a\x5b\x2e\xf5\x21\xbd\xfa\x38\xd8\xa4\x73\x44\ \x1b\xf0\x29\x3b\x82\x8b\xf1\x85\x5d\x1a\xad\x57\xdf\x0e\xa8\x3e\ \xcd\xb5\x65\xbe\xaa\x93\x09\x81\xea\x78\x3c\xfc\xbc\x5e\x62\x31\ \x41\xa8\x26\x82\xc6\xa1\x7b\x08\x56\x57\xc4\xb3\xba\x11\x01\x94\ \xf1\xad\x8e\x9b\x28\xb8\xcc\xc6\x18\x78\x85\xb1\x62\xf3\xf3\x45\ \xfb\x98\x83\x81\x31\x66\x04\xa9\x1b\x45\x0c\xea\x3f\xae\x19\x4d\ \x5c\xe5\x23\xcb\xf1\x03\x31\xdd\xb1\xb4\x0b\x9d\xc5\x6d\x0a\xbd\ \xd0\x42\x2e\xdb\x46\x08\x9a\xf0\x07\x09\xc5\x53\x41\x8d\x5b\x2b\ \x0c\xbd\x96\x30\x48\x3b\xf1\x49\x69\xdf\x20\x3e\x79\x70\x38\xe5\ \x30\x3a\x16\x40\x87\xa4\xa2\x37\x87\x09\x05\x90\xeb\x68\x91\xc6\ \x7a\x6b\x89\xb2\xa1\xa3\xce\x25\x94\x17\xc0\xcf\xed\xcd\x25\x94\ \xea\x19\xc9\xe9\x50\xc8\x0b\x75\x9a\x11\x47\xcb\x0c\x25\x61\x80\ \x05\x8c\x5e\x58\x79\xfd\xd6\x45\x7a\x05\x33\xe0\xce\x15\x66\x13\ \x66\x46\xb0\xb0\x2c\x7e\x3d\x3e\xbf\x7f\xff\xfc\xfe\xfd\xbb\x19\ \x6c\x31\xb9\xff\xb1\x78\x41\x69\xda\x4b\x4b\xee\x47\xa0\xd1\x8c\ \x23\x1b\x1c\xe5\x16\xf3\x5f\x56\x94\x7e\x1b\xac\xbd\xb6\xb8\x06\ \xc1\x5f\xa7\xf0\xbb\x45\x68\x65\xeb\x53\x80\x2e\xb6\xca\x5f\x22\ \x0e\x4a\x00\x91\xa1\x3a\x83\x19\x6b\x59\xc6\x48\x08\xcc\xb2\xe6\ \xf4\xbb\x62\xd5\xa8\x5c\xa0\x52\xd8\x7c\x36\x38\x75\xd6\x6e\x1e\ \xf2\x13\x17\x22\xf5\xe2\x04\xee\x70\x7e\xd7\x15\x20\x05\x7f\x46\ \x98\x43\x5d\xcd\x96\xd9\x8d\x65\x51\x08\xad\x8d\xdf\x9e\xd2\xfe\ \xd6\xd0\x79\xc8\x97\x8a\x60\xa8\x93\x77\x30\x5d\x82\x9d\xd3\x8f\ \xc4\x57\x5e\xb6\x34\xa1\x26\x76\x3b\x47\xa6\x56\x29\x46\xd3\xa1\ \xa5\xd8\x0a\x49\x0a\x4e\x91\xc4\xd0\xe1\xf5\xae\x46\xbd\x27\x82\ \x2a\x41\xdb\x08\x32\xc1\xa2\x11\x29\xe4\xfd\x74\xd0\xaa\x76\x60\ \x9e\xbf\x66\x67\x7b\x0f\xbb\x3c\x51\x3a\x60\xb2\xcd\x1b\xf0\xc4\ \x09\x48\x89\xb7\xef\x0e\xad\xa1\x09\xa4\x84\x76\xdd\x01\xda\xdb\ \xb9\xb0\x03\xf9\x3c\xaf\x18\x03\xe6\xad\x57\x0e\x84\x4e\xca\x58\ \x34\x0d\xab\xe7\x53\x6c\xd1\x8b\xaa\xaa\x0e\x7f\x0f\xff\xf8\xf8\ \xfc\xe3\xd7\x3f\x8e\x65\x22\x72\xbb\xdd\x50\x06\xfb\x34\x33\x58\ \x76\x7e\x35\x4f\x2d\x1e\x50\x44\x9d\x1a\x61\x62\xba\x14\xe2\x91\ \x38\x5d\xb3\x9b\xa7\xf9\xc9\x1f\x8b\xd6\x1a\x54\xa5\xd3\xd7\x6b\ \x99\x92\x02\x33\xd3\x92\x7c\x0a\x22\xa8\x23\xb7\x55\x56\x67\x97\ \x91\x62\x43\xd5\xec\x20\x39\x0b\xf4\x4e\x9a\xba\x93\x99\x46\x0f\ \x32\x6d\xc2\x54\x47\xde\x54\x19\xb3\xe9\x1c\xe7\x99\x67\x4c\xea\ \x92\xcc\x22\x78\x11\xfa\xd7\x34\x8e\x46\x2e\xe3\xf5\x78\x70\x47\ \xc4\xb1\x0e\x23\x47\x8d\x7b\x28\x18\x1a\x60\xed\x64\x50\x81\xa6\ \x2a\x76\xd8\xf1\x38\x58\xf8\x4c\xa4\xd2\x39\x03\x0b\xd8\x9a\xde\ \xdd\x00\x00\x20\x00\x49\x44\x41\x54\x12\x2b\x7c\xd9\x6c\x46\xf9\ \x13\x77\xdd\xda\xb7\xdf\x33\xb9\xa2\xa7\x9c\x97\xdc\x2b\x0b\xa8\ \x6c\xb3\xf6\x50\x93\x38\xe7\x58\x45\xcc\xed\x08\x5f\xa9\x48\x20\ \x76\xfc\xa1\xd1\x93\xe6\x92\x65\x86\xf3\x6f\x94\x76\xca\xde\x88\ \xbf\x99\x73\xd8\x39\x47\x97\x93\xb8\x17\xda\xda\x92\x2e\x3a\x05\ \xdb\xc1\xc3\x79\x6c\xed\xa0\x8b\xd3\x37\xad\xad\x35\x42\xb1\x31\ \x9f\xd9\x4a\xa7\x95\x11\xa9\xf9\xfc\xa9\x89\x98\xa8\x88\x7e\x7e\ \x7d\xba\x39\xfb\x61\x0f\x85\x7e\xfb\xf6\xd3\xfb\xfb\xdb\xed\xed\ \x16\x66\x71\xa4\x8a\x06\x6e\x93\xf3\xaf\x4c\x4c\x55\x86\x91\x0b\ \x9d\xb8\xba\x73\x94\x34\xd7\x0f\xcc\x8e\x25\x79\xb3\xfe\xeb\x41\ \x7e\xa4\x0d\xbf\x72\x51\x6a\x9a\xda\xd0\xf5\x50\xa7\xf2\x5a\x67\ \xfa\xa6\x41\x66\x57\x86\xd3\x3f\xfd\xc7\x71\xac\xb5\x9c\x92\xe0\ \x87\x2e\xc9\x23\xe4\xc7\x69\x96\x54\x81\x65\xd4\xf0\x75\x7b\x48\ \x39\x8b\x05\xaf\x5c\xd3\xd7\x80\xfe\xed\xb8\x96\x3e\x04\xa1\x39\ \x0e\x25\xdc\x03\x4c\xe2\x19\xcb\x6b\x9d\x4a\x1c\x29\x07\xbf\x6b\ \x49\x32\x70\x61\x3b\xe8\xe3\xa1\xf4\x39\x55\x6a\x88\xaa\x90\x65\ \xbb\xe5\xf7\x48\xe0\x38\x8e\xcb\x84\xf7\xb2\x30\x6d\x2f\x15\xab\ \x7b\xaf\xe6\x74\xbb\x57\xd2\xba\x9d\x46\xe8\x8b\xf6\x24\xa4\xc2\ \x34\xca\xf6\x5d\x4b\x07\xc7\xb8\x92\x5e\x2b\x3c\x07\x59\x74\x92\ \x2b\x37\xc2\x57\xcd\x75\x2c\x2d\x4e\xaa\x45\x55\x8d\xf7\x3a\xff\ \x59\xa7\x11\x9c\x4a\xe8\xb6\x50\x75\x32\xd0\x65\xd3\x15\xf7\x2a\ \x58\xbe\xb7\xd4\x56\xab\xaa\x12\x50\xca\xd7\xe3\xf1\xfd\xe3\xb7\ \x8f\xaf\xc7\x6d\x8c\x9f\x7e\xfe\xf9\xed\xed\x6d\x60\x7c\xfb\xf6\ \x3e\x86\xcb\xa3\xcc\xfb\xb8\x28\x84\xd1\xf1\x01\xd8\x8a\x04\x11\ \x91\x63\x53\xa3\x84\xfa\x6c\xea\xee\x57\xfc\x8e\xca\x7b\x91\xb6\ \xb0\xb9\xc1\xec\x39\x9e\x17\xfd\xe4\x86\x19\xf3\x1c\xd7\x13\xb7\ \x70\x5a\xf5\x67\xcf\x45\xc3\xb6\x81\x07\x86\xd5\x5b\x4f\xdf\xd2\ \x68\x78\x10\x00\x0c\x5e\x43\xbc\x5e\xbf\x1e\x6c\xd8\xf5\x27\x49\ \xcb\x16\xd6\x64\x7f\x8b\x2c\x12\x4d\x64\x78\xb8\xe2\x71\x2c\x00\ \x43\x66\x66\x7a\xca\x5a\x34\xf2\x76\x1b\xe2\x05\xc9\xb9\x02\xdc\ \x0a\xdf\x2b\xf6\x9b\x8b\x17\xe7\x4f\xad\xf1\xf6\x23\xf3\xec\x85\ \xde\xdd\x30\x4e\x10\xe5\xb0\x30\x04\xeb\x0d\x27\x93\x8f\xb7\xec\ \x6c\x80\xe5\x80\xf7\x59\x53\x09\xf8\x72\x5c\x2e\x6b\xf9\x4e\xe8\ \x75\xe3\xa7\x5e\x37\x4e\x28\x60\x3e\x05\x26\x15\x21\x2e\x8d\x73\ \x0b\x21\x5f\x83\xce\xd6\xca\xed\x09\x73\xc5\xb2\x09\x9c\xdd\xa9\ \xfd\xfc\x0d\xd6\x2e\xf3\xf4\x07\xdb\xf5\xe1\x00\xf4\x71\x3c\x3e\ \x3e\x3e\xbf\x7f\x7e\x7e\x7e\x3d\xee\x6f\xef\x18\xf3\xf3\xeb\x01\ \xd1\xa1\x79\x7c\x71\x51\xb8\xcc\xc6\x44\x9f\x1e\x6f\x15\xa9\xa5\ \xaf\x61\x2b\x04\xba\x91\xb6\x04\x66\xb5\x72\x8d\x71\x19\x2b\xea\ \x19\xec\x66\x80\x94\xae\xb5\xde\xa9\x93\x1e\xd3\xf8\x5b\x1a\x89\ \xf2\x77\x9c\x4e\x0a\x13\x3a\x8b\x83\x02\x71\x7e\x42\xf8\x81\x03\ \x23\x25\x39\xa3\x66\x6b\x7f\xb7\x2f\xdb\x91\x6a\x5e\xeb\xe6\xae\ \xab\xc5\xbe\x56\x18\x06\x3b\x3d\xf6\x02\xb1\xdf\x4f\xba\xa7\x24\ \x80\x48\x5b\x34\x44\x75\xb8\x0d\x5b\x28\x18\x5a\xfa\x07\x3f\x2f\ \x15\x2a\xb2\x68\x3c\x64\x85\x1d\x84\xcb\xd6\x5a\x99\x47\x27\x9b\ \x73\x57\x30\xe5\xad\x38\xc0\x45\xd6\x55\x0b\x3e\xf3\x49\xac\x67\ \xa1\xd6\x08\x1b\x39\xbd\x84\xbc\x08\xae\x38\xcd\x6b\x7a\x7d\x80\ \xae\x66\xca\x79\xf4\xc9\x24\xa8\xb8\xf8\xd6\x6a\x1d\x9c\x78\x64\ \x6d\x5c\x4c\x29\x5f\x95\xef\xb1\x0c\x22\x43\xc7\xa6\x98\xbb\x1c\ \x49\xae\x3f\xe0\x45\xe0\x4b\x33\x39\x43\x68\x9f\x35\x7a\x9a\xc3\ \xf5\x12\x16\x59\x25\x49\xa6\x6f\x3b\x17\x35\xf1\x3e\xfb\x08\x69\ \x19\xbf\x3e\xbf\x7f\xff\xfc\xfe\xf9\xf1\xa0\xc8\x6d\xde\xde\x6e\ \xb7\xb7\xfb\x37\xa8\x04\x64\x44\x83\xe9\x43\x5b\x2e\x03\x90\xc2\ \xd8\xb4\x8b\xdc\x44\x2e\x20\x92\x6a\xfa\x37\xdc\x58\x9e\xec\x6d\ \xd2\x96\xe6\xbc\x18\x95\xe4\x12\x35\x77\x06\x26\x72\x47\xbe\xc6\ \xc0\x5a\x9b\x45\xef\xe4\xd5\x41\xc4\x0b\xc8\x84\xc2\x96\x39\xa5\ \x93\x1a\x0a\x03\xab\x84\x17\x3f\xbc\xad\x3f\x28\x54\xcb\x08\x3c\ \x80\xb6\x58\x41\x6e\x59\x79\xe6\x68\x60\x67\xa4\x9f\x01\x85\x19\ \xda\xb8\xf7\x12\x42\xec\xc1\xb0\x0f\x25\xda\x15\x84\xa4\x47\xc4\ \x02\x3f\xe6\x8c\xfe\x84\x59\x1b\x61\x35\xc8\x58\x06\xc2\x9c\xde\ \x58\x4b\x2e\x63\x88\x45\x63\xab\x9d\x3e\xc0\x55\x8d\x41\x31\x9c\ \x3d\xcc\x81\xf2\x83\x58\xf9\xfa\xed\xda\x54\x50\x9a\x07\xc9\x32\ \x58\x55\x28\x94\x31\xeb\xae\x3a\x8d\x73\x63\xcd\xae\x0e\x80\x6a\ \xaf\xa2\x49\xd9\x5f\x20\x12\x13\x11\x39\x09\xc7\x72\x51\x0d\xb4\ \xb5\xbd\xdb\x1e\xd1\x17\x2d\x7b\x9d\x57\x61\x01\x61\xe8\xca\x29\ \x16\x32\xba\x2f\x44\xd6\x31\x0e\x65\x9b\xda\x22\xb7\x1f\xa4\xe7\ \x90\xf8\xf4\xc5\xf8\xf9\x75\x7c\xff\xfc\xf8\xfc\xf8\x34\x33\x85\ \xbe\xdd\xef\x6f\xef\x6f\xb7\xdb\x6d\xce\x29\x20\x6e\x70\x1d\x1a\ \x49\xe3\xf2\xff\x5b\x02\xa5\x29\x1a\xc9\x0e\x91\x32\x84\x9e\xe4\ \x53\x04\xe6\x6d\xf2\x6d\xea\x6f\x90\xa9\x4d\x48\x0f\x48\xac\x87\ \xb3\xc4\xb5\xc0\x6d\x31\x1d\x0a\x14\xa8\xd7\x50\x3c\x21\x70\x6b\ \xf8\xe7\xb2\x90\x65\x57\xfe\x96\x8b\x06\x43\x1b\xbd\x66\xe6\x2a\ \x2d\x97\xa8\x8c\x11\x6d\x43\x1d\x71\x01\x0b\x3a\x69\xe3\x58\xff\ \x00\x49\x53\xdc\x07\xbc\xf7\xd7\x22\xfb\x29\xef\x89\xe5\xc6\x04\ \xce\x73\xcb\x37\x77\xee\x06\x8c\xee\x16\x35\xd2\xcc\x16\x54\x6b\ \x69\x18\xa1\x9d\x14\x15\x18\x0a\x43\x97\x8f\x47\xb9\x88\x29\x2d\ \x59\xba\x11\x7f\xe5\xc4\x03\xf1\x9b\x0b\x6d\xa8\xef\xdc\xdc\xa2\ \x68\x6f\x72\x9a\x8a\x50\x5e\x72\x06\x3b\x2c\xb8\x76\x86\x6b\x99\ \x6e\x59\xbd\x33\x3b\x4b\x3a\x64\x28\xee\x58\x0e\x2d\x6b\x32\xd8\ \xe7\x92\x71\x4d\xc5\xdc\x2d\xea\x8e\x3d\xf5\x96\x1d\xb8\x8b\xb4\ \x6d\x16\x9b\xbf\xb5\x5b\xad\x57\x49\x31\x1a\x1a\x36\x60\xcf\x67\ \x49\xf7\x3e\x67\x56\x0c\xd9\x60\x2e\x4e\xa9\xcf\x8e\xcb\x2b\x47\ \xd7\x2e\xf2\xeb\x38\xbe\xbe\x7f\xfe\xf1\xf1\xf9\x75\x3c\x20\xf2\ \xfe\xf6\xf6\x76\xbf\xdf\x6e\x37\xb7\x3f\x8a\x2c\x18\x05\xa6\x39\ \xda\xc9\x96\x72\xeb\x91\x5a\x72\x5d\xc5\xe0\x34\xf3\x72\x1e\x01\ \x6c\xde\xcf\x3c\xf9\xfd\x33\xf1\xcd\x43\x77\x10\x6e\xad\xa0\xb2\ \x6d\xe7\xbd\x06\xf4\x67\xa0\xae\x84\x5c\x58\x97\x05\x5d\x8c\xd8\ \x9c\x84\xea\x0f\xa9\x10\xa7\xc0\x92\x36\x29\x32\x55\x0b\xa8\x79\ \xda\x3f\x54\xda\xa3\x35\x0b\x94\xc0\xb0\x23\x20\x6a\x57\x40\x06\ \x10\x99\xb9\xbd\x01\xd4\xed\x07\x85\x7d\xea\xb4\x06\x93\x8e\x5d\ \x26\x2a\x8a\xde\xc4\x9c\x6a\x62\x34\x23\xd4\xfc\x81\xb2\xd8\xc5\ \x87\x33\x27\x48\x9a\xfe\x27\x52\xb4\x25\x3f\xaf\x11\x1d\x6d\xcb\ \x99\x45\xd7\xd6\xc8\x9d\x4b\xd8\xe1\xc8\xd4\x9c\x95\x5d\xfd\x2a\ \x17\xa3\x41\xbb\xf4\xd1\xca\x65\xbc\x50\x29\xfb\x92\x74\xad\x9b\ \x96\xa4\xeb\x65\xec\xf6\x7e\x27\x33\x92\xcd\x91\x00\xf1\x58\x77\ \xa9\x7c\x57\x37\xe0\x5a\xb4\xa8\x6d\xe6\x23\xb6\x5a\xaa\xf6\x7d\ \x8d\xa4\xee\x15\xde\x69\x3a\x26\xa5\x93\x42\x9b\xde\xd4\xe8\x6c\ \xa8\x4e\x92\xc7\x71\x7c\x7e\xff\xfc\xe3\xfb\xf7\x75\x1c\x04\xee\ \xf7\xfb\xdb\xfd\xf6\x7e\x7f\x1b\x63\x62\x53\x2a\x13\x40\x09\xd2\ \x69\xfa\x66\x41\x85\x91\xe9\x25\xb8\xe5\x78\xca\xaf\xc1\x88\x0a\ \xa9\xca\xa4\x28\x3f\xbb\xd1\xb2\x14\x58\xe4\x22\xa7\xfe\xa5\x7c\ \x96\xa8\x97\x23\x8e\x66\xad\x35\xd2\x1d\x53\x18\x08\xe5\xb8\x16\ \x1c\xf2\x2a\x0d\x29\x12\x70\x48\x96\x12\x92\x02\x60\x7a\xb5\x9a\ \x61\x0f\xda\x23\xf8\x98\xe2\x9c\x7d\x48\x55\x82\xfb\x16\x08\x26\ \xf9\x46\x76\x0e\x5e\xa6\x18\xc8\xcb\x41\x4d\x2a\x5c\xb8\x96\x75\ \x04\x47\xaa\x88\x0d\xb5\x73\xc8\xdb\x84\x14\xda\xf2\x9a\xca\x75\ \x5c\xc2\x3d\x3a\xdc\x86\x72\x0a\x69\xba\xdd\x14\x7b\x4b\x53\xc3\ \xfb\xfa\xbf\xfb\x2b\x81\x73\x43\xfc\x8a\x01\x2b\x7f\x3f\x09\xbd\ \xff\xa3\x31\x46\x8c\x58\x36\x01\x0d\x69\xf0\xdb\xed\xd6\x65\x05\ \x7c\x99\xc2\xfb\x66\x39\xe3\x22\x78\x79\x3b\x2e\xb6\xbf\x27\xef\ \x5d\xb5\x2e\x7a\x89\x77\xbe\x26\x56\xf8\xc7\x38\x82\x34\x84\x34\ \x57\xe2\xca\x2b\x64\xe2\xb3\xc6\x9c\xb7\xe3\x71\xfc\xf1\xc7\x1f\ \x9f\x9f\x9f\x5f\x5f\x5f\x7e\xf4\x7c\x7b\xff\x76\x7f\xbf\x4f\x0c\ \x1d\x5a\x47\x4a\x30\x57\xb5\xbc\x17\x2e\x73\x66\x66\x89\x17\x42\ \x32\x61\x70\x3b\x9c\xb1\x41\x5e\x37\x06\xa8\xfc\x02\x38\x5d\x2c\ \x2e\x83\x84\xa1\x15\x16\x26\xcf\x9c\xce\xcd\x6a\x3c\x83\x86\xf6\ \xe6\x1d\x4d\xcd\x51\x0d\xe2\x5a\xec\xfa\x76\x97\x31\x4d\x15\x58\ \xe4\x47\xd3\xf2\x99\x23\x3b\xfc\xcc\x8b\x3d\xbf\x31\x8a\xb8\xc3\ \xbd\x5c\x0b\xd3\xef\x75\xba\x42\x79\x42\x93\x44\xa2\xa9\xba\x44\ \xf4\x38\x7c\xbd\x89\x48\x7f\x72\x4d\xaa\x40\xc7\xa4\x89\x3b\x82\ \x02\x49\x73\x02\xc9\x71\x2d\x06\x13\x79\xfb\x19\x57\xfc\x6b\x3e\ \x06\x7d\x52\x5e\x5f\xac\x9d\xcf\x3c\xeb\x4e\x3b\x70\x91\xd5\xc9\ \xd8\x68\xf6\x8c\x8d\x7d\xfe\x15\x8a\x97\x7d\x9e\x7f\x44\xed\x31\ \xa7\xf6\x21\x6b\xd7\x83\x9f\xef\x19\xed\x34\xa6\x53\x2c\xe9\x69\ \x78\xf0\x1a\x5e\x63\xe6\xd3\x01\x5e\x10\xc9\x67\x98\x87\x15\x45\ \x8e\x19\x2d\x93\x15\x9d\x5d\xf4\x67\xf5\x5d\x03\x37\x00\x1f\xdf\ \x3f\x7e\xff\xfd\xf7\xaf\xaf\xaf\xe3\x38\x44\xe4\xdb\xb7\x6f\x6f\ \x6f\x6f\x73\xde\x22\x6d\x28\xfd\x0d\x6e\x9b\xa9\xe9\x4f\xad\xc2\ \xd6\x32\xe3\xd2\xe0\x31\xd9\x70\x7b\xd5\x49\xa9\xe8\x0f\xc9\x84\ \x1c\x43\xf5\x11\x3d\x29\x01\x09\xdf\xa5\xe0\x47\x00\xdb\xd6\x89\ \xc8\x46\x79\x49\x50\x6e\x2a\x06\xb3\x77\xda\x51\x06\x47\x7d\x83\ \xe1\xb4\x19\xf4\xf2\x61\x0f\x06\x48\x11\x2c\x11\x4e\x83\xe9\xd0\ \x75\x3c\x32\xab\x53\x3b\xd6\xaf\x8d\xe4\xb9\x75\x59\xa9\x02\x5e\ \x6b\xa5\x40\xdd\x37\xa9\x25\xc9\xb1\xf8\xec\x86\x40\x3a\x7c\x43\ \x2c\x77\x73\x10\xdc\x6e\xf3\xeb\x6b\xf9\xa9\x63\x64\x92\xea\x68\ \x02\x91\x91\x47\xac\x46\xd1\x2d\x24\x5d\x33\x3a\x14\x38\xec\xc1\ \x98\x1d\x91\xc6\xe3\xb0\x65\x54\xba\x29\xca\x2e\x0f\xa2\xdf\x00\ \xcf\x7e\x5d\xff\x9b\x27\x36\xc8\x4e\xe8\xde\x4f\xb3\xe6\x08\xe8\ \x47\x00\xf5\x67\xf8\xad\x7b\xb0\x6b\xeb\x4f\x31\xff\x1c\x86\xfa\ \x52\x5c\x1d\xc2\xdd\x93\x64\xda\xea\x70\xcb\x05\x54\xeb\x2d\x3b\ \x5d\x1a\xfd\x11\x31\xb3\xfa\xd3\x6d\xca\x11\xd1\x33\xd9\xcf\xfe\ \x67\x01\x06\x69\x6b\x59\x72\x5d\xa4\x18\xbf\x7d\x59\xda\xe4\x0e\ \xfe\x8d\xd8\xf7\x3f\xbe\xfb\x3b\x03\x60\xce\xe9\xef\x4c\xc9\xb2\ \x59\x1e\x1e\x5a\x59\x3f\x15\x1a\xfa\x47\xe8\x5a\x0f\x93\x45\x72\ \xf1\x10\x19\xea\x87\x25\x30\x04\xf9\xee\x9a\xeb\x52\xed\x38\x04\ \x6a\x91\x54\x99\x5e\xc8\xf0\x4c\xad\x92\x5c\x97\xfc\xd2\xc3\x79\ \x44\x30\x86\x9a\x91\x5c\xd9\x2e\xd6\x37\x42\x62\x05\xba\x07\xfe\ \x26\x0f\x00\xc7\xb1\x90\xf9\xba\xc8\x71\x5f\x0f\x41\xcb\x21\x69\ \x6d\x59\x60\x96\x29\xd1\x6b\xb1\x6d\xeb\xd0\xeb\xf5\x9e\x09\x51\ \xe1\xc6\x85\x65\xf0\x3b\xda\x77\xa0\xb9\xd4\x8b\x63\xd4\xeb\x59\ \xeb\x18\xb1\x53\x28\x9c\x6d\x29\x17\x6a\x48\x12\x59\xc2\x91\x02\ \x8f\x45\x8a\x60\x6e\xf8\x11\x4a\x7d\xe1\xbe\x32\xa3\x51\x87\xce\ \x39\x6e\x73\xd0\x94\xb6\xd0\xea\x19\xe0\x45\xc2\x73\xfd\x53\xbf\ \x16\x5e\xa6\xc4\xd4\x56\xde\xa1\x78\x97\xd3\xba\x9d\x46\x56\x46\ \x98\xb3\xa9\x69\xbb\x8e\x25\xd0\x4e\x66\x96\x02\xaf\xc6\x15\x90\ \x17\x99\xa7\x48\x43\x5a\x1f\x9a\x87\x50\x5a\xb6\x8f\xeb\xf5\xf2\ \xbb\xad\x8c\xbb\x4a\xad\x4f\xa1\x03\x7f\x33\x54\x09\x43\x7f\x37\ \xa2\x51\x8f\x19\x84\x91\x63\x8c\xa1\x63\x2d\x7e\x7d\x7d\xfd\xfe\ \xfb\x1f\x5f\x9f\x5f\x24\xdf\xde\xde\x6e\xb7\xdb\xed\x7e\x7f\x7f\ \x7b\xf3\xf5\x1a\xe3\x68\x90\x97\xe8\x82\x42\xc1\x69\x9d\xb2\x14\ \x8d\xe5\xa4\x9c\xe8\xe1\xdb\x37\x50\x68\xf0\x9c\x97\xc6\x62\x6a\ \xb4\x95\x52\x54\xfb\xed\x28\x8c\xbe\xd8\xc1\x03\xb5\x8c\xf1\x7f\ \x61\xe8\x10\x62\x99\x39\x9e\xd7\x1d\xc4\xbe\x81\x7d\xf6\xb7\xef\ \xa3\x24\xfa\xf0\x2e\x3f\x3c\xa6\x88\xf0\xa0\xad\xe5\xfc\x6e\x13\ \xc1\xbe\xa4\x92\x3f\x82\xad\x7a\xbb\x08\x63\xb3\xa8\x38\x25\xc1\ \x0b\xda\x13\xfe\x14\x59\xdc\x96\xec\xee\xa6\x8a\x0f\xcf\xed\x95\ \x12\x2a\x2c\x1f\x6c\xd3\x84\xea\x26\x35\x37\xff\x80\x5c\x1c\x63\ \x88\x5b\xf0\x21\x54\xac\x2f\x3b\x1e\xc7\x5a\x2b\xdd\xb5\xa7\x27\ \xa9\x37\x12\x97\xa2\xe5\x39\x53\x51\xe4\x1a\xc6\x74\x51\xe0\x5f\ \x92\xd8\xf2\x9b\xaf\xd9\xc6\x3a\x4b\xef\xbc\x7c\x1d\xdd\xb7\xf2\ \x94\xdf\xfd\x9a\x02\x5e\x5f\x01\x43\x58\xa9\xcd\x95\x99\x30\xe4\ \xc4\x11\x3d\xe5\x58\x19\xdb\x94\x05\x5d\x6a\x2c\xbe\xec\x02\x40\ \x0c\x31\xbb\x5c\x5f\x5c\x3b\x77\x58\x87\x28\xc9\xef\x5f\x8f\xef\ \x7f\x7c\x7c\x7d\x7e\x72\x99\xaa\xde\xef\xf7\xb7\xb7\xb7\x39\x67\ \x4d\xdb\x0b\x04\x8f\x46\x6b\x8e\xd0\x6b\x84\xa2\x8c\xa0\x8e\x61\ \x7b\x8d\x10\x61\x21\xc8\xf0\x19\x29\x03\x73\xac\x9b\xce\x04\x99\ \x3d\x63\x60\x8e\xf8\x0b\x94\xdd\xe0\x58\xf9\x02\x04\x1a\xd6\xd2\ \x60\x1a\xd2\x51\x8f\x22\xb2\xf0\x61\x73\x51\xe0\x0d\x9d\x9c\x3a\ \x9a\xb3\x1f\x74\x68\xe4\x20\xb8\x00\xcd\x84\xc6\x19\x2e\x50\x3f\ \x33\xb5\x1c\x56\xdd\x83\x62\x8d\xfb\x1a\x43\xfd\xd5\x30\x5c\xd9\ \x9f\x0c\xb3\x95\x5f\x80\x5e\x40\x02\x35\xb5\xe8\xcd\x58\xbc\xe5\ \x59\xcf\x6e\x0f\xb7\x28\xfd\x06\x34\x62\x94\x47\x28\x30\x66\x3e\ \xcf\x94\x91\xe8\xdb\x74\xf4\xba\x6f\x56\x21\x2f\x5b\xe7\xcb\x0b\ \x70\xd6\x53\xf1\x39\x26\xc5\xf5\x35\x2f\xb7\x34\x4f\xd7\x17\xcf\ \x93\xb4\x86\xe4\x94\xfa\xb2\xc4\xab\x1a\x4d\x11\x4e\x85\x55\xb1\ \x41\x92\x3a\x18\xf1\x69\xcc\x5d\x81\xda\x3b\x30\xaa\x7e\xec\xfa\ \x1d\xd7\xb2\x08\x99\x10\x0b\x85\x52\x4d\x84\x7a\x17\xc7\xc8\x01\ \x3b\x8f\x0a\x2d\xbd\x58\x3a\xc6\x10\xc1\xf1\xb0\xef\xdf\x3f\x3e\ \x3f\x3f\x1f\x8f\x87\xaa\xde\xee\xf7\xfb\xed\xfe\xf6\x76\x9f\x73\ \x06\x6e\xdf\x7c\x93\x99\x22\x29\xd1\x90\x17\xa7\xb0\x7b\xa4\x1e\ \x6a\x38\xd7\xde\xa1\x9a\x5e\xd0\x16\x96\x3f\x03\x17\x74\x87\x4f\ \xfb\x4e\x9b\x6e\x01\xaf\x7c\x28\xaf\xa6\x56\x86\x5b\x0e\x8c\xa0\ \x3f\xd5\xaa\xd7\xe7\x3d\x67\x8f\x43\x56\x71\x08\x47\x23\x74\x79\ \x36\xa3\x2a\x3c\xf9\xb5\xf9\xcf\xbb\x91\xc8\x8f\xc5\x12\xeb\x37\ \x41\x26\x66\x2e\x4f\x42\x76\x2f\xba\x73\x21\xf2\xdc\x19\xf9\x8b\ \xf7\xc4\xe9\x67\x23\xfb\x09\x7d\x18\xdb\x18\xc8\x39\x2a\x72\x2b\ \x04\x3c\x62\x23\x81\x38\x2b\x56\x6d\x85\xa2\x89\x90\xf7\xcd\xee\ \x8d\xe0\x1e\x2f\x3e\x35\xd5\x41\xaa\xe2\x73\x05\x05\xaa\xb5\x6c\ \xba\xe6\xfe\x9e\x54\xa9\x8a\x8b\xff\x84\x2f\xc0\xb6\x2f\x07\xcd\ \xcf\xf7\x43\xe7\xc7\x56\xc8\x59\x14\x3c\x9a\x5c\x2c\x39\xe1\x2f\ \xaa\x5a\xbd\x60\x20\x2f\x37\xe4\xe9\xc6\x33\x23\xc4\x22\xb1\xe1\ \x84\x83\x39\x09\xe4\xfa\x6a\x83\xdd\xce\x76\x4a\x9e\x71\x5d\x4f\ \xcc\x4d\x5b\x4a\x6e\x79\xce\x00\xb5\xc5\xcf\xcf\xaf\x8f\x8f\xcf\ \xcf\xcf\x4f\x21\xc7\x18\x6f\x6f\xef\xdf\xde\xee\x53\xa1\x63\x30\ \x03\x79\x89\x1d\x98\x57\x09\x38\xdb\xdc\x5f\xac\x65\x1d\xa5\xc5\ \x2e\xa7\x1a\xb7\xfe\x6c\x4f\xd1\xd5\x67\x62\x11\xb5\xb8\xa7\xab\ \x92\x06\x3a\x24\xd7\x7f\xdf\xdd\x4f\xd9\x31\xe8\x54\x9d\xad\x2e\ \xdb\xf4\x08\xad\x15\xae\x85\xd2\xb2\xd9\x71\xc0\x33\x5c\x65\xed\ \x8c\x10\x09\x66\x85\x70\x42\xc2\x99\x1a\x02\x0d\x1a\xa0\xcb\x4e\ \x74\xf0\xf6\x32\xd4\x0e\x8d\x60\x92\xc8\x2b\x6d\x12\x7a\xf1\xe1\ \x6c\x69\x69\x06\x0b\xd5\x72\x2d\xbb\x82\x10\x00\x34\x4b\xaa\xef\ \x83\x75\xc4\x98\x4e\x76\x74\x58\xe9\x79\x69\xa4\x0d\x9d\xaa\x30\ \x85\x79\xa6\x55\x8a\xad\x3a\xf9\xae\xf3\xf4\x50\x47\x5a\x5f\x81\ \xf5\xe2\xba\x54\x16\xb4\xb4\x26\x30\xea\xc6\x26\xeb\xbc\xc6\x74\ \x3a\x0e\xae\xe6\x88\x9a\x4c\x82\x5d\xdb\x5b\xce\x05\x92\x6f\x77\ \x16\x11\xa6\xe1\xc2\x70\xdd\x9d\xb1\x58\x3c\x67\x0b\xaa\x14\x68\ \xcf\xff\x60\x11\x5f\xb7\xc5\xc9\x55\x36\x85\x9c\x17\xb9\x89\x4f\ \x9b\x4f\x24\xf5\x55\xb2\x07\x11\x6d\x03\x45\x8e\xc7\xf1\xfd\x8f\ \x8f\x8f\x8f\x4f\xdf\xdb\xbe\xdd\xdf\xef\x6f\xf7\xdb\xed\x36\xbd\ \x5b\xae\xc3\xc9\x67\x65\xe8\xce\x37\xd2\xb6\x9b\x39\xd6\x1e\x35\ \xcf\x69\x86\xf5\x84\xa3\x2d\x07\x02\xf3\x92\x59\xe2\x21\x32\x62\ \x21\x10\xc9\x29\x93\xe5\xef\x58\x9d\x90\x46\xe6\x09\xf7\x12\x46\ \x92\xd9\x9b\x4b\xf4\xfc\xcd\x3c\x6e\x3a\xf7\xf2\x51\x1e\x8a\x4a\ \x24\x1b\xb1\xe5\x68\xd7\xb3\xcf\x72\xdf\xb9\xb7\xc5\x05\xa5\xc6\ \x19\x72\x03\x5b\x35\x6c\x67\x0b\x24\x4a\xad\x00\x68\x5e\xf6\x96\ \xde\x81\x20\x7d\xf9\x5b\xcb\x63\xf2\x55\x86\x70\xc1\x4d\x32\xdd\ \xa3\xa6\x6d\xfe\xb4\x20\xde\x1c\x58\xf9\x5a\x13\xf7\x12\x00\xb4\ \x94\xf2\x6c\x7f\xe9\x70\x45\xdc\x72\x30\x90\x54\xe2\x80\xba\xda\ \x42\x1c\xd0\xea\x0e\x12\xdb\x12\xda\xb4\x9e\xa4\xfe\x08\xdc\x6a\ \x0d\x54\xcc\x43\x48\xd4\x2c\xa3\x0e\xe2\x4f\x60\x67\x90\x48\xf7\ \x39\x32\xac\x73\x09\xb8\x40\x51\x5b\x42\xcb\xa3\x50\x1a\x65\x2d\ \xdc\x6e\xa4\x79\x46\x09\x69\x21\x31\xf6\xc9\xbe\xed\x36\x99\x69\ \x41\xec\x37\xd4\x09\xac\xb5\xed\x7d\x7b\xa5\x6b\x29\xc9\x4b\xfa\ \x47\x7c\xa2\x7e\xbb\xb4\x34\x74\x13\xe6\x1a\xac\x51\xf6\x44\x70\ \x1c\x8f\x8f\xaf\x8f\xaf\xcf\xc7\xe3\xeb\x01\xc1\xfd\x7e\xbb\xdf\ \x6f\xef\xb7\x37\x37\x1a\xe6\x36\x7d\x8b\xc4\x42\x8d\x93\x27\x51\ \xe4\x66\xd6\xf0\xa6\x90\x4a\x5b\x21\x04\xd9\x00\x10\x15\x98\xc6\ \xa7\xe6\xd5\x5e\xfd\x12\x2a\x4e\xe1\x2c\xd7\x70\x1c\xd5\xf1\xdf\ \x47\x70\x61\xfa\xea\x0b\xa6\x13\x9c\x3d\x71\x0b\x7a\x22\x9a\x85\ \x75\x8b\x20\xb4\x2c\xba\x35\x10\xc6\x1e\x75\x90\x76\xe8\x52\xf5\ \x85\x48\xcf\xc8\xe1\xb3\x6f\x55\x59\x9c\x22\x3c\xd6\x91\xae\x97\ \xd0\x05\xb1\xbe\xb8\x3c\xf0\xcd\x56\x9e\xfc\x35\xdc\xa7\xd9\x81\ \x1d\xa0\x7d\x6a\x73\x5d\xa5\x6b\x46\x95\x0d\xbb\xd1\xb3\xa8\xa9\ \x54\xa3\x2d\xc6\x7d\x73\x8d\x52\xa3\x6c\x75\x48\x96\x80\x82\xab\ \x12\x91\x22\x28\xe4\xea\xac\x3c\x71\xa8\x4b\xc8\x21\xa5\xca\x2a\ \x4b\x69\x14\x13\xf1\x2c\x04\x87\xc7\xc7\xd8\xac\xff\x2c\x32\xec\ \x76\x6f\x50\xc3\xe5\xdc\x5f\xba\x1f\x37\xae\x9b\x34\xb7\x85\xbc\ \x4a\x68\xcb\xb5\x9b\xcd\xd5\x9c\x8e\x6c\x6c\xf2\x7e\x1c\x2e\x86\ \x52\x28\xef\x1f\x36\xcc\xd1\x4c\xd2\x69\x44\x21\x77\x47\x77\x96\ \xd0\x11\x7b\xaa\xae\xe6\x68\xb0\x92\x9c\xc7\x6d\x61\x7d\x52\xa9\ \x05\x30\xe3\xd7\xc7\xf7\x3f\x3e\x3e\xbe\x1e\x0f\x90\x73\xce\xfb\ \xed\xed\x76\xbb\xdd\x6e\x43\x45\x33\x4c\xe0\xb2\x17\x6e\xec\x0c\ \x87\xd3\x3c\x47\x2d\xa0\x87\x12\x72\x1b\xe6\x62\x93\x19\x5f\x91\ \x57\x19\x16\x39\x4a\x49\x11\x3a\xf9\x02\x58\xd0\x2c\xd4\x9d\xb9\ \x2e\x7e\x69\xa9\x79\x40\x1c\xf6\x1a\x9b\xf7\x1c\x21\x6c\x67\x7b\ \xc9\xdb\xfa\x5f\x6e\x99\x55\x55\xad\xa9\xeb\x89\x5b\xce\x07\x75\ \x6e\x1c\x58\xc7\xe1\xd6\xfc\x64\xf2\xe8\x25\xd2\x83\x15\xa7\x2a\ \xf5\xdd\xf8\x93\xad\x11\x6b\xda\x46\x78\xa7\xcf\x0b\x19\x38\x13\ \xc0\x6d\x4b\xc4\x46\x2c\xb0\x6a\x35\x04\x94\x6d\x3c\x4d\xb2\x8a\ \x52\x3d\x3a\x6f\x37\x3c\x67\x71\xa0\x43\x05\x2b\xd3\x6b\x33\xa8\ \xb0\x92\x9f\x4d\x75\x78\x93\xd3\xe4\x22\x67\x3b\x5d\xb2\xda\xc2\ \x32\x90\xf1\x42\x17\xa7\x43\x14\x94\x86\x73\xdb\xd6\x15\xb5\x15\ \x40\x79\x99\x2e\xa8\x0f\x3d\xe7\x9c\x73\x0e\x81\x1c\x8f\x47\x5a\ \x24\x8b\x22\xe5\x1f\xd1\xc6\xed\x8f\x62\x76\xa4\xdc\xd2\xbc\x2c\ \xcc\xb4\xb4\xd6\x8c\x99\x06\x31\xaa\x7a\x1b\x73\x31\xa8\x59\xc7\ \xb8\x5d\x97\x3c\xb1\x30\x0c\x86\x36\x8d\x66\x4b\xd6\x61\x7f\xfb\ \xed\xf7\xaf\xc7\x63\xce\xf9\xfe\xf6\xfe\x76\xbf\xcf\xdb\xcc\x39\ \x90\xff\xb2\xed\xb4\x13\x6a\x93\xdf\x9b\x63\x9d\xc9\x6c\x8d\x70\ \x2d\xd4\x33\xe5\xbb\xe4\x6d\xa5\xcc\x3c\xd1\xc6\x65\xff\xe2\x10\ \x2e\x2b\x2b\x97\xd5\xc0\x5d\x91\x8a\x4d\x9e\x21\x83\x4d\xdd\xaa\ \xc0\x65\x23\x9a\x0d\x6a\x24\x34\x9e\x5f\x69\x16\x10\x1c\x82\x67\ \x8d\x48\x57\x19\x40\xc5\x83\xb9\xa6\xea\xf0\xad\xcb\x9c\xb2\x03\ \xa8\x9c\x29\xa1\x71\xbb\x66\xc8\x44\xb3\x3d\xf0\x8a\x2d\x3d\x3b\ \x5e\x10\x6a\x02\x69\x21\x8c\x29\x9f\xf7\x95\x6d\xbe\x33\x2d\x8c\ \x72\xb7\xcf\x12\x1a\x3f\x9c\xb2\x8b\xaa\x44\xed\x60\xbf\x4c\x98\ \x88\x21\x82\x0e\x2f\x56\xc7\x10\xb7\x09\xd9\x0e\xbf\x89\x69\xbd\ \x3d\x13\xc6\xa4\x31\xa9\x9b\x83\xa8\xaa\x83\xcd\x8f\xee\x8e\xee\ \xa6\x93\xb0\xfe\xf7\x7b\x73\x3f\x54\xe7\x98\xb7\xdb\xcd\x68\x8f\ \xaf\x2f\xad\x1d\x9c\x10\x46\x57\xb3\xb8\x20\xca\x8b\x0a\x5f\x51\ \x87\x53\x32\x13\x6f\xfc\x72\x63\x86\xae\x6c\x7e\x45\xce\xd3\xd6\ \x5e\xb6\x22\x51\x81\xbe\xf5\x46\x17\x3d\x98\x19\xc5\x28\x0b\x49\ \xed\x3e\xcc\x1e\x8f\x65\x8b\xf7\xdb\x5d\x04\xb7\xdb\xfd\xed\x7e\ \x7f\xbb\xdf\xc7\x1c\x46\x82\x0b\x2a\x14\x39\x8e\x9a\xfc\xa2\x79\ \x51\x9b\xfb\x95\x01\x05\x71\xe9\xc0\xd3\x30\xd6\x4d\x8e\x10\xc1\ \xb7\x3f\x7d\x7b\x7f\x7b\xf7\x59\xd6\x99\x32\x0a\x28\xd4\xb2\x3a\ \x0d\x9a\x7e\x06\x29\xed\x81\x92\xa0\x98\x76\xe8\x29\x07\xc4\x2b\ \xa0\x6e\xff\xfb\x95\xc7\xdc\x76\x62\x9a\xf6\x08\xf6\xb5\xef\x6b\ \x29\x49\xe2\x4f\xcc\xd6\x1c\x63\x1c\x6b\x71\x99\x0c\x77\x70\x78\ \x58\x0a\xc3\xc6\xed\x47\x8c\x86\x50\xa2\x61\xc4\xd6\xa9\x97\x7e\ \x39\xed\x35\x52\xac\xf4\xd6\x91\x88\xb7\x32\x61\xd7\x94\x5c\xd8\ \x86\xbb\xb8\x8d\x8c\x66\xee\x79\x8a\x67\x76\x91\xcb\x05\x9b\x11\ \x93\x18\x29\xd2\xb4\x7b\x12\x50\x05\x66\x5c\x66\x2a\xeb\x11\x95\ \x5b\x08\x31\x5a\x6c\x0f\x6a\xc2\xf6\x83\xb9\x59\x82\x01\x62\x64\ \x19\x43\xde\xfe\x8e\x5d\x76\xa3\x4f\x8a\x95\x52\x31\xed\x77\xec\ \x71\x1c\x8f\xe3\x37\xf9\xdd\xcf\x77\x37\xd3\x7b\x41\x83\xca\xe0\ \xdc\x90\x87\x0e\xa7\xf5\xa6\x4e\xaf\x5c\x08\x7f\x29\xc6\x50\xf4\ \xd4\xd1\x5c\xe6\xe4\x91\xb3\xd1\x41\x71\x81\xab\x52\xc8\xb5\x2c\ \x04\xff\x38\x8e\xf5\xf5\x38\x1e\x8f\xc3\x96\xa9\x0e\x1d\x03\x43\ \xc7\x18\xf7\xfb\x3d\xac\xf6\x71\xe4\x31\xa3\x6d\x85\x5d\x20\x99\ \xf9\xb9\xe7\x19\xa3\xf6\xcf\xaa\x3e\x99\xc5\x00\x2c\x12\x32\xe6\ \x98\x73\x24\x38\xb3\x5a\xe2\x9c\x36\x78\x20\xf3\xf2\x5c\x10\x2a\ \x44\x2b\x78\xb9\x24\x63\x76\xca\xe9\xd8\x84\x36\x9e\x93\x17\xca\ \x71\xf4\x14\xbe\x90\x6f\x72\xb0\x3e\x5d\x5b\x9f\x2d\x31\x9f\x8c\ \xe2\x49\x3c\x0f\xc8\x97\x89\xc8\x0c\x14\xbf\xab\xa2\xbd\x22\x47\ \xe7\xf4\x27\xba\x2a\x27\xcc\xbe\x47\x5a\x2b\xf2\x13\x7e\x94\x6e\ \x59\x2c\x62\xc1\xd9\x15\x19\x2e\xf6\xbc\x62\x55\x64\x15\xa9\x2e\ \x43\xcf\xa5\x4e\xcc\xa8\xcb\xcd\xc3\x77\xbc\x46\x33\xaa\x8e\xe5\ \xab\x5b\x85\x50\x86\xea\x18\x63\xa8\xd2\x60\x79\x30\x1b\x65\x30\ \x75\x40\x35\xe4\x15\x6d\x39\x20\xcf\xdb\x18\xb6\x1a\x51\x2a\x79\ \x82\x4f\x20\xcc\x1f\xed\x2b\xdb\x1c\xb9\x9f\xca\x75\x98\x8e\x16\ \x01\xef\xca\x19\xaa\x08\x1b\xef\x30\x59\x98\x8e\x28\xd0\x8c\xea\ \xc8\xd1\x58\x0c\x18\x22\x04\x46\x00\x98\x2e\x1e\xf5\x7d\xed\x0d\ \x29\x10\xc1\xad\x3e\xa6\x57\x55\x11\x9d\x02\x1a\xb0\x1e\x8f\xf5\ \xf1\xf1\xf1\x78\x1c\x66\x9c\x7a\x9b\x73\x26\x17\x3c\x7d\xac\xd8\ \x44\x01\xcd\xbc\x54\x17\x65\xe7\xa5\xe7\xd9\x19\x09\xea\x6f\x63\ \xf4\x67\xd9\xab\x2f\x71\x3c\xb1\xe0\x71\x2c\xa3\x61\x20\x7e\xb0\ \x90\xc0\x31\x0c\xf8\x1b\x85\x00\x1a\x4d\x16\xb1\x86\x4e\x15\x53\ \x9d\xb9\x10\x3c\x79\x8a\x77\xc8\xf6\x89\x75\x5e\x49\x5f\x55\x0b\ \x14\x63\xac\xff\x78\xd9\x81\x64\x68\x41\x4b\x43\x79\x65\xac\x12\ \x2e\xa1\x42\xa6\xb7\x0d\x69\xc6\x60\xe9\xb1\x53\x94\x01\x62\x79\ \x5f\xa1\x99\xc7\x60\xc5\x19\x6b\xe5\xca\x25\xc4\xc2\xbb\x5e\xff\ \xba\x42\x96\x26\xc4\x35\x4d\x30\xdd\x4e\xa1\x01\xf3\x77\x34\xc2\ \xfd\x68\x6c\xa1\xbf\x11\xdf\x46\xa1\x98\x32\x48\xa7\x94\xe5\xad\ \x8d\x99\x1d\x8c\xce\xd8\x36\x00\x1a\xa2\xd2\x72\x01\x72\xb5\x96\ \xdf\x64\xba\x85\x98\x16\x4c\x45\xe5\xd0\x59\x16\x04\x8a\x1d\x81\ \xf7\xa3\xbd\xfe\x2b\xc6\x50\x43\xa6\x8a\x2b\x3b\x5c\x81\xe6\x0a\ \x61\x31\x33\x8d\x38\x61\x53\xd5\xa1\xea\x03\x8f\x21\x30\x0a\x14\ \xd3\xc7\x6b\xc1\x0b\x66\x36\xfa\x0a\xec\xfc\xa2\xf0\x0c\x5a\x18\ \x0d\x4a\x93\xae\xaa\x66\x40\xb8\x27\x43\x70\x22\x5b\xf9\x81\xcf\ \x8f\xaf\xaf\xcf\x87\x00\x73\xde\x7c\xeb\x4f\xf2\x9b\x7e\x03\xe8\ \xf3\x62\x50\x28\x55\x30\x95\xce\x63\x5b\x62\x35\x2a\xeb\xd1\x93\ \x83\xe5\x07\x71\xe7\xfe\x2c\x79\xc9\x6f\xbe\x29\xb7\x2c\xf3\xaa\ \x4f\xd9\xbf\x0a\xd4\x7f\xdd\x5a\x40\xa2\x82\xc2\x44\xa1\x4e\x0c\ \x3a\x51\xa4\x93\x81\x74\x59\xc5\x6d\xb4\x6d\x39\xfd\xcf\x62\xfc\ \x8e\x4f\x0f\xa2\xd5\x69\x44\xd9\xde\x4f\xa4\x10\x19\x22\x62\x73\ \x8c\xf1\xf1\x51\x03\xcf\x5d\x2d\xb0\xf4\xa1\x39\x86\x6b\xe2\x59\ \x51\x1d\xb8\x52\xb0\x5f\x10\x43\x8a\x4e\x1a\x72\xfd\x0b\x5a\xb2\ \x76\xcb\xe7\xa0\x73\x05\x96\x87\xbd\xec\xcc\xdf\x6a\x3b\x22\x98\ \x70\xa8\x0e\xff\xd7\x00\xd7\xd5\x8a\x31\x04\xd3\x7d\xef\x1d\xeb\ \x85\x3d\x46\xf4\xd6\x68\xef\x31\xcf\x4e\xef\xe7\x84\x96\x58\x48\ \xe9\x49\xca\x59\xdb\x93\xa6\x74\xbc\xee\x50\x63\x48\x50\xbf\x60\ \x1c\xff\x3e\x10\x5b\xe6\xe3\xe2\x9a\x0b\x40\x31\xa0\x22\xea\xa0\ \x06\xf7\x57\x7a\x80\x99\x02\xa9\xcc\xd8\x42\xc3\x78\xeb\x9d\xbd\ \xc5\xb3\xf0\x2c\x8c\xe1\x46\x8b\x53\xe8\x92\x9f\x41\x8c\x31\xe7\ \xb0\x31\xe7\xfd\x7e\x9b\xf3\x96\x4d\x2c\x23\x61\x54\x12\xd4\xa9\ \xb2\xc3\x50\xb8\xbb\x67\x6c\x87\xf5\xf6\x01\x6a\x13\x3d\x5c\x20\ \xc6\xd9\x79\x96\x3f\x3c\x62\x16\x68\x1c\xc8\x37\x50\xa0\x91\x3b\ \x9d\x9a\x2c\xda\xd4\x39\x06\xd6\x32\xb3\x10\x86\xc8\x36\x60\x34\ \x4f\xce\x73\xed\x50\xd8\xee\x96\x7f\x71\x09\x92\x18\xee\xe5\xca\ \x4c\xa7\xe0\x13\xaa\x98\x71\xd9\x3a\xa1\x1b\xb0\xc1\xc2\x2a\x24\ \x6d\x42\x71\x78\xf6\x06\xb2\x3e\x61\x35\x7c\x9a\xac\xb0\xfd\xfa\ \x86\xd2\x95\xf1\xc5\x20\x76\xc1\x0d\xa4\x94\x9a\xed\x8c\xef\x8b\ \xc0\x4d\xf2\x72\xdb\xc4\xa5\xdf\x1c\x50\xbc\xd2\x48\xea\x9d\xaf\ \x5d\x34\x04\xbe\xe1\x72\x5a\xdf\x62\x99\xe4\xa4\xe2\x93\x84\x15\ \xaf\xe5\x4b\x91\x04\xe1\x31\x59\x81\x21\xc1\x59\xbb\x13\xf3\x11\ \xc3\x48\x4e\x27\x92\x8e\x6e\xce\x00\x72\x12\x5a\x07\x2f\xb1\x45\ \xb5\xd5\x48\xf0\xcc\x2b\xcb\x23\x10\xf9\x2c\xab\x60\x0c\x88\x88\ \x39\x7e\xdd\x94\xe2\x20\xb2\x81\x34\x98\x14\x96\x49\x2a\x06\x3e\ \x06\xaf\x63\x5f\x35\x0e\xa4\xdd\x30\xa9\x9a\xbf\xab\x78\x8a\xb9\ \x4f\xc4\x35\x09\xc0\x18\x63\xa8\xaa\x2d\x2f\xae\x65\x62\xd9\xb0\ \xfb\xfd\x7e\xbb\xdd\xe2\x5b\xa8\x1d\x96\x10\xd0\xa1\xb2\x89\xaf\ \x19\x0e\xeb\x95\x59\xb5\x19\x45\x5b\xb0\x05\x41\x71\x38\xb7\xd7\ \x27\x07\x8c\x8c\x0d\xac\x2a\x29\xde\x45\x49\x2d\x8d\x62\x46\xb7\ \x05\x77\x88\xd3\x91\xc2\xe5\x27\x9b\x66\xe2\xba\xc9\xd2\xf0\xec\ \xa0\x0c\x4c\xed\x26\x39\x21\x7b\x6b\x66\x2d\x7b\xa1\x58\xdf\xce\ \x0e\xcf\xf4\x2a\x63\x63\x80\xf9\x14\xd1\xd1\x87\x31\x29\x8d\x9f\ \x02\xac\xf5\x30\x9a\xbb\xc0\x65\xa7\xe6\x3a\x8c\x22\x73\x3d\xea\ \x4d\x20\xcd\x6c\xe4\x3c\x27\x2c\xd1\x65\xf4\x46\x45\x90\x08\x4d\ \x54\xfd\xb1\x2d\xaf\x3d\x8b\xbb\x8d\x2c\x51\x0a\x03\x28\x0d\x09\ \xac\x3a\x62\xf5\x18\xf8\x65\x1d\xaa\x89\x27\xf3\xbd\x26\x6f\xc2\ \xda\x05\xf9\x0c\x6d\xe8\xb0\x16\x16\x94\x13\x9c\x76\xef\x48\xd9\ \xb6\x54\x84\x23\xe7\x52\x6c\x80\x4d\x9c\xc4\xcc\x01\x7c\x73\xbc\ \x42\x05\xe1\x50\x4e\xf2\xa5\xbc\xc3\xa5\x94\xc9\x9a\x3f\x6d\xa1\ \x95\x55\x71\xbf\xdf\x74\x0c\x31\x8b\x7e\xd4\x4c\x13\x7e\x39\x34\ \x31\x0e\xbd\x08\xa4\xed\x5d\xa7\xa7\x52\xd7\xf1\x94\xa6\x67\x55\ \xd1\x31\x53\xd4\x3c\x58\x73\x27\xec\x30\x2f\x01\xe6\x18\x63\x0c\ \xa1\x1c\x8f\xc7\x3a\x08\x60\xde\xe7\xed\x76\x53\x75\x99\xe9\x52\ \x55\x4b\x10\x73\x80\x06\x1b\xe4\x52\x43\xcd\x9d\x3a\x0d\xc6\xfb\ \x1a\x75\xd1\x4d\xcc\x96\x68\x10\x08\x32\x0e\x83\x39\xe4\xae\x61\ \x92\x62\xca\xbc\x0d\x77\xc5\xe5\x16\x89\x88\xd1\x56\xb6\x6d\x09\ \xfa\x48\xe5\x62\xf8\x05\x90\x56\xff\xdc\xc7\x6f\xd4\xf0\xa9\x75\ \x96\xab\x42\x8a\x19\x3b\xcc\xad\x25\xc0\x75\x2d\x24\x0d\xb5\xd5\ \xb4\xbc\xdd\xd7\xb4\x61\x6a\x22\x13\xaa\x5f\x8f\x43\x33\x9a\xd3\ \x4e\x70\x33\x73\x8c\x17\xa4\xe6\xd1\xc9\xec\x84\xac\x45\x21\x86\ \x5a\xd6\x6e\x89\x3d\xd2\x7c\xb0\xcc\x24\x13\xb2\x72\x34\xe7\xb4\ \x1b\x47\x38\xc7\xd8\xcc\x27\x25\xf5\x34\x00\x81\x55\x50\x2b\xb0\ \x9b\xcf\x02\x14\x0e\x47\x0f\x30\xa8\xad\x58\xfb\x9a\x40\xc6\x6d\ \xdc\xde\x6f\x2a\xa0\xd1\x5f\xbc\xf2\x51\x22\x75\x3d\x2b\x98\xda\ \xb4\xbe\x93\xad\x69\xa6\x6a\x2c\xc5\x80\x0b\xf5\x28\xd7\x60\xb5\ \x29\xb0\xf4\xdb\xc5\xed\xaa\xa2\xa8\x59\x66\xb8\x16\x75\x9c\x76\ \x00\x9c\x63\xdc\xef\xef\x22\x8b\x30\x04\x12\xc1\x19\x16\xb1\xf4\ \xd4\x1e\x8c\x91\xf9\x74\xd2\x21\x33\xa3\x72\xe5\x4e\x11\xa7\xb7\ \x09\xb3\xbc\x67\x49\x4b\x92\xb4\x34\xc0\x95\x4f\x05\x00\x28\xa8\ \xc3\x06\x55\xe4\x96\xfa\x07\x9a\x89\xfa\x14\x82\xda\xf4\xc4\x9b\ \xb6\xec\x45\x81\x34\x4d\x40\x22\xa5\x16\xca\x4e\x89\xfd\x60\x91\ \xb6\xec\x08\x2a\x1d\xdd\x23\x35\x1c\x9b\xea\x8c\xa1\xbc\x45\x41\ \x5b\xaa\xf4\xdc\x12\x1d\xf1\x8b\xa9\x38\x05\xc3\x65\x29\xce\x19\ \x8d\x36\x37\xde\xe7\x22\x9c\x88\xa1\x8d\x24\x2b\x01\x21\x33\x0b\ \xb6\x2f\xb5\xaf\x76\x52\xf9\x0e\x4f\x70\x59\x1e\xf4\x12\xf5\x96\ \xc8\x2b\xdc\x69\xa3\x08\x51\x44\xa6\x99\x0f\x4c\x95\x2e\x68\x05\ \x6a\xf2\xe0\x7d\xbc\x14\xdf\x20\x4d\xa0\x01\x97\x93\xca\x0d\x4f\ \x9c\x75\x9b\x0b\x46\x68\x09\x45\x46\xcb\x29\xac\x77\x72\x0b\x43\ \x53\x2a\x94\x4a\x33\x67\x97\xc2\xa4\x01\x64\x40\xd2\xd6\x91\xd4\ \xf0\x64\xf8\x60\xc0\xe5\x3d\x5c\x0c\xc0\x45\xc9\x3e\xb9\x50\x89\ \xc7\x01\xef\x23\x41\x5b\xa5\x73\xc0\x36\x52\x97\x3e\xc0\x99\xd2\ \xe5\x00\x8a\x6d\x92\x49\x83\x3c\x14\xfe\xaa\x8a\x6c\x46\x50\x43\ \x4e\x35\x84\xc2\xc3\x4c\x20\x23\xf1\xef\x8a\x31\x1c\x5b\x63\x86\ \x7d\xe0\xb5\x24\xbe\x04\xb4\x2c\xa4\xae\x82\xf5\x47\xb1\xa4\x3d\ \x31\x43\xab\xb2\x21\x8a\xd7\xdb\xed\x5e\x3b\xb3\x30\xf6\x55\x7e\ \xdd\x39\x88\x99\xc2\x45\x93\x05\x00\x3a\x6c\xad\x84\x36\xa0\xad\ \x37\x4a\xa5\x9b\xc5\x3e\xa3\xb3\x8d\xe8\x80\xa1\x12\xc1\xca\xfe\ \x77\x8c\x26\xaa\xf4\xb4\x0a\xd2\x1e\xcb\xc2\xb8\xca\x75\x3c\x8e\ \xc7\xf1\xf0\x32\x75\x88\x1e\x30\x11\x79\x3c\xd6\xf7\xef\xdf\xd3\ \x69\xe9\xb5\x9f\x0b\x32\x2c\x15\x49\x46\x77\x83\xab\xb3\xe0\x4c\ \x3a\xf7\xcf\x9f\x8f\x2d\xb2\x6a\x7a\x87\x5d\x27\xd7\x3b\xbd\x2b\ \xc6\xc6\x03\x3a\x01\xb0\x76\x0a\x68\x22\x0a\xd8\x28\xeb\x3d\x23\ \x36\x01\x47\xe2\x55\xe2\x94\x48\x20\x31\x55\x46\xf4\x5f\x9b\x9c\ \xc0\x0f\x86\x57\xa3\xa2\xe8\x3b\x97\x3d\x61\xac\xf7\xd6\x7f\x71\ \x61\x15\x73\x19\xe2\x72\xe5\x94\xd2\x58\x6b\x77\xfc\x8a\xd8\x6f\ \xe5\x76\xf6\x34\x19\x29\x0a\x6d\x4a\xdd\xd5\x1e\x48\x3e\x1e\xc7\ \xe7\xe7\x03\x3c\x40\x2a\x51\xbc\x23\x6f\xc6\x6c\x59\x44\x68\x43\ \x35\xf1\x62\x1b\xbb\x23\x7b\x6a\x56\x5d\x50\x5b\x2a\x5a\xbc\xbd\ \xaa\x1b\x46\xa8\x31\x3c\xf7\x0f\x32\x44\x98\x4e\x2e\x82\x28\x1c\ \xf2\x02\x1f\x9e\x89\xc8\x18\xf3\x36\x6f\x41\x41\x80\x88\xd0\x07\ \x6a\x2d\x98\xa0\x09\xfb\x2b\xb4\x09\x54\x84\x1f\xc9\x87\xed\x2d\ \x75\x1d\x35\x61\x84\xe0\x36\x47\xea\x2d\x90\x49\x3c\x1b\x39\x06\ \xe8\x18\x81\x9c\x1d\xbe\x45\xc6\x41\x1b\x98\x28\x63\x88\xb6\xd0\ \xe5\xe6\xdb\x6f\xf6\x19\x00\x18\x39\x80\xf6\x60\x0a\x18\x64\x4e\ \x08\x30\x00\x81\x1e\x5f\xc7\x5a\x87\xc0\x44\x6e\x32\x3d\x3d\x85\ \x50\xc7\x1a\x2b\x80\xe3\xb1\xfe\xf4\xed\x5b\xa9\x4d\xb9\x2c\x75\ \x30\x2c\x67\xd1\x1e\xcc\x44\xb9\xc4\x15\x89\x65\x51\xc3\xc8\xd6\ \x64\xbd\x0c\xd9\xdd\x30\x85\xed\xfe\x22\x2f\x48\xce\xc6\x15\xa1\ \x43\x33\x96\xfa\x45\x01\x4d\x03\x51\x4d\xb1\x65\xdf\xb7\x5e\x4c\ \x61\xce\x39\x56\x4c\xd6\x22\x5b\x49\x4f\xa6\x5f\xae\x15\x78\x97\ \x8e\x78\xf5\x6b\xce\xcc\x92\xc3\x8e\x17\x18\xb1\x1a\xe3\xed\xd3\ \x6c\x77\xd1\x66\x7b\x61\xda\xab\x49\xe4\x30\x4d\xa1\x66\xe2\x1d\ \x40\xc9\x44\xca\xf6\x68\x26\xb6\xa2\x8e\x81\xa8\x99\x1d\xcb\x46\ \x6c\xc7\x38\x00\xd1\x51\x19\xb8\x39\x41\x98\xf3\x3e\x46\xfb\xf9\ \x65\x67\xe1\x88\x31\xac\x5f\x6c\x90\xb6\x4a\x71\xc8\xf5\x64\xcc\ \x90\x5a\x2d\xed\x59\x14\x50\xf5\xc1\x68\xbc\x7d\x73\xa2\x8f\x07\ \x6e\x73\xce\x39\x4c\x4c\x63\x04\x42\xdd\xe8\xda\x7c\x51\x7b\x94\ \x4e\xf8\xcb\xa8\xaa\xb6\xbf\xf7\x7c\xc7\x50\x0b\xee\x28\xdb\x0b\ \x5f\x69\x27\xb2\xd1\x86\x51\x55\x14\x20\x74\x0c\x51\x5d\x08\xd9\ \x91\xf9\x46\x35\xad\xc7\x9b\xea\xd3\x10\x19\x45\x71\xf7\x99\x62\ \xe2\x30\x75\x4c\xd2\x86\xaa\x4e\x47\xfe\xe8\xd4\x79\x1c\x8f\x60\ \x07\x8f\x01\x60\xad\x83\x46\x1d\xc3\x0b\xa2\x35\x1f\x73\xde\x2b\ \x15\x9c\xb2\x68\xf4\x2f\x8a\x8d\x41\x25\x91\x0e\x66\xf1\x0d\x1d\ \xb6\xd6\x71\x2c\xf8\x30\x81\x8d\x1f\x52\xed\xfa\xc5\x30\xfb\xd4\ \xe4\x40\xc4\x49\x26\x3c\xaf\x16\x6b\x69\x24\xaa\x1e\xfc\x72\xb2\ \x33\x37\xa1\x43\xb8\x8f\xfd\xfb\x9a\x02\xe1\x3a\x04\x54\x19\xae\ \x95\x25\x22\x8b\x53\xa1\xc6\x75\xb9\x46\xca\x9e\xe9\xba\x12\x6d\ \x52\x77\x3c\x45\x31\xab\x6a\xee\x55\x2c\xad\xbc\x2c\xd3\xe8\x76\ \x2b\xee\xe1\xe9\x4e\x3a\x50\xf8\x46\x76\x14\x31\x5f\xbc\x0a\x6a\ \x60\x4d\x3f\x15\x3d\xd3\x0a\x3a\x00\x1d\xc0\xf4\xad\x22\x85\x58\ \x7b\x0c\xea\x90\xd1\xa1\xcb\x40\x31\xd1\xe1\x3f\x06\x9a\x76\xdb\ \xa1\x10\x24\x74\x27\xd2\xe5\x62\xc0\xdf\x73\x89\xd4\xf2\xc0\x95\ \x60\xaf\x69\x99\x28\x39\x1a\x75\x4e\x6b\xa0\x52\x05\x44\xd5\xed\ \xdd\x47\x11\xe4\x6c\x21\x12\x9d\x76\x00\x45\x29\xee\x3d\xe0\xc3\ \x28\x2e\x42\x51\x24\xa3\x90\x89\xdf\x52\x6c\x84\x57\xbd\x55\xf1\ \xd5\xd8\x98\x50\x1d\x3e\x48\xdd\x8a\xe4\xa1\xc3\xe7\x77\xde\x46\ \x10\xc6\xa5\x43\xb1\x81\x07\x3e\xce\xf1\x92\x31\x2b\xfd\x54\x82\ \xc2\xb2\x01\x8d\xbe\x67\x29\x04\xe3\xe6\x57\xea\xd0\xc1\x43\x84\ \xa6\x73\x94\xaf\x46\xc0\x79\xbf\x79\x1f\x07\x62\x8c\xb1\xb2\x86\ \xf3\x63\x6f\x78\x61\x3d\xd2\x79\x00\x66\x7b\xc6\x91\xbc\x85\xc2\ \x43\x8f\xda\x43\x4b\x4b\x75\xdd\x2a\x01\x73\x97\x7f\xbe\x78\x71\ \xd4\x66\x80\xb9\xe7\xbf\xc7\x44\x57\x1b\xb8\xaf\x60\x70\xfe\xbf\ \xc7\x68\x43\xb1\x93\xd2\x2d\xfd\x45\x46\x51\xce\x51\x07\x7f\x24\ \xf3\x50\x5d\x85\xeb\x75\x47\xd3\x53\x38\x06\xff\x6c\xdc\x3d\xd3\ \xba\x5a\x26\x47\xfc\xa5\x10\xdc\x9e\xef\xfc\xd7\x34\xc2\xbf\x12\ \x2d\x11\x7b\x03\x9a\x90\x0a\x2c\x8a\xc9\x72\xf3\x8f\x29\x54\x9d\ \xf6\x2c\x99\x84\x85\x24\x91\x2c\x5f\x00\xfa\x9d\xf3\x76\x7b\x1f\ \x10\xd8\xe1\x4f\xbf\x47\x72\x8e\xd8\x44\x40\x20\xe6\x6c\x35\x45\ \xcb\xc0\x53\xcb\x68\xc9\x4c\x9b\x01\xdb\x32\xa5\x2c\x50\xa1\xa3\ \xf3\x46\x42\x61\xab\xaf\x17\x33\x0f\x93\x59\x6a\xa4\xbd\x3e\xde\ \x00\x8d\x2d\x65\xb0\x64\x5d\x40\x1e\xf0\x8b\x1a\xcf\x95\xe1\x44\ \x0a\x6f\xa3\x35\xd8\x19\x40\x25\x01\x48\xe5\xf7\x69\x7d\xaa\x05\ \x11\xf5\xa0\x50\x7f\x92\xdd\x1e\xb2\x1e\x8f\xba\xc7\xa3\x11\xf7\ \x99\x8d\x49\xf8\x4b\xcd\x3d\x25\x51\xff\xcc\x81\xd8\xa1\xba\xc9\ \x29\x93\x33\x11\xb9\xc7\x56\xb0\x44\x81\x0c\x0d\xd2\xe0\x54\x70\ \xd8\x3a\x4c\x42\x30\x08\x72\x3d\x3e\x1f\x50\x9d\x63\x28\x61\x8b\ \x8f\xaf\x4f\xd2\xee\x03\x6b\x7d\x8d\x9e\xd5\xe6\x3f\xb3\x6e\x65\ \xa0\x8f\x4b\xfd\x91\x33\x2e\x05\xa1\xa2\x43\xbb\xf8\xb6\xa6\x61\ \xf9\x22\x8f\x4b\x38\xb6\x6d\xfc\x58\x2e\xd6\x9b\xe1\xac\xb8\x91\ \x0b\x90\xbc\x0c\x34\x4c\x1c\xa8\x58\xee\xcb\x85\xa3\x21\x6b\xc7\ \x74\x73\x65\x04\x67\x7b\x85\x26\x76\xf1\x75\x5c\x84\x46\x5b\x16\ \x10\x7a\x98\x55\x7b\xd6\x86\x6b\xf1\x12\x4e\x0b\x16\x1b\xca\x70\ \x69\xca\xe3\x2a\x05\x97\x54\x0c\x93\xf7\x06\x39\xd4\xcf\x70\x15\ \xda\xd0\xe1\x4b\x03\x44\x1a\x04\x3d\xbd\x49\x55\xef\xb7\xb7\x5f\ \xfe\xe1\x17\x55\x59\x8f\xc7\x7a\x7c\x9a\x2d\x1d\x43\x71\x73\xcc\ \x9c\xba\x9b\x88\x18\xd5\xe7\x5b\x76\xd8\x48\xe5\x63\x25\x92\x56\ \xee\x4a\xdc\xc8\x02\x11\x0c\x35\xb3\x7a\x19\xbc\x2d\x3d\xb3\x9a\ \x28\xda\x76\x5c\x81\xd6\x12\x51\xd1\x10\x32\x07\x24\x11\xca\x21\ \x9a\x16\x80\x18\x3e\xa9\x8e\xca\x09\xc9\x8d\x6e\x9c\x26\xb7\xa1\ \x46\x72\x2d\x11\x73\x49\xb8\xe6\xe4\x3b\x4a\x2b\x50\x68\x63\xdc\ \xc2\x9a\x04\x2a\x64\xfa\x8e\xc4\x28\xa0\x8e\xa1\x83\x74\xa2\x89\ \x84\xc9\x6c\x6f\xbe\xa3\x6f\xb1\x12\x55\x0e\x5f\x5c\xfa\x0a\x4b\ \xb6\x50\xdb\x6d\x45\xcc\xff\x64\x0c\x9f\x06\xaf\xa1\xb8\x79\xfa\ \x13\x38\x87\xeb\x36\x64\xce\x39\x71\xfb\xf5\xb7\xc7\xe7\xc7\x87\ \xdc\x6f\x77\x8c\xf5\x38\xfe\xf6\xdb\x6f\xbf\xfd\xf6\xdb\xcf\x3f\ \xfd\xf4\xf9\x3f\xfe\xfb\xe6\x6c\xfb\x81\x02\x13\x0c\x0b\xcf\xa7\ \x34\xdf\x14\x32\x5b\xc8\x96\xad\x31\xe2\xea\x75\x1d\x77\x49\xe0\ \x2e\x82\xe5\xe0\xc2\xa3\x8e\xef\x72\xd1\xb8\xd5\xac\x9d\x51\x3e\ \x3f\x41\xc5\xf6\x8a\x64\x24\xa2\x34\x54\x97\xa3\x50\x09\x0f\xb5\ \x80\x2a\xe6\xe7\xe7\xe7\x5a\x2b\xbe\x57\x83\x9b\xbe\x45\x9d\xf3\ \x4e\x81\x3c\x33\xf8\x3a\x18\x56\x98\x5e\x9d\xd4\x80\xb6\x7f\xd9\ \x32\x72\xab\x16\x52\x9b\xbe\x52\x95\x5f\xa5\x20\x7b\xe6\x8e\xab\ \xad\x81\x49\x33\xc7\xf6\x18\x6d\x99\x41\x17\xbc\x4b\x36\x11\x97\ \xe7\x46\x38\x34\xc6\x9c\xdf\xbe\xfd\xf4\xf1\xc7\x1f\xeb\x71\xdc\ \x6e\xf7\x39\xf5\xfe\x76\x17\xf2\xeb\xeb\xf3\x38\x0e\xc0\x63\x80\ \xc2\xbf\xe0\xc2\x75\x0a\x8f\xb5\xfc\x2f\x42\x2b\x9c\xcc\xda\x2d\ \x95\xa0\x86\x75\x57\x45\xc6\x48\x9b\x37\x86\x0b\xde\x4a\xd8\x90\ \x63\xf7\x4c\xb6\x8f\x94\x2b\x8d\xa1\x34\x54\x75\x8e\x50\x91\xc5\ \xdf\x8a\xab\x2e\x80\xc3\xae\x07\x57\x72\x0c\xdb\x7a\x00\x00\x20\ \x00\x49\x44\x41\x54\x45\x33\x0d\x84\xc7\x67\xa8\xbb\xb1\x4c\xa1\ \x3a\x34\xb5\x66\xea\xdf\x12\x92\x55\x70\xbb\xdf\xfc\xa7\xb6\x98\ \x1c\x6c\x0b\x2a\x45\xc6\xd0\xb5\x38\xd4\xa5\xd0\x94\x74\x2c\xea\ \x08\x00\xb3\x64\x0d\x03\xa8\xba\x0a\x36\xc9\x8e\x80\xc7\x63\x78\ \x34\xa2\xd2\x83\xc0\xb3\xb2\xf1\x61\x83\xaa\xba\x01\xfc\x58\x87\ \x4f\x5f\xc6\x98\xa4\x1c\xc7\x01\xc1\x5a\x87\x2c\x8a\xc9\xe3\xf1\ \xf8\xf5\x6f\x7f\x03\xc6\x7f\xf9\xe5\x97\xdb\x50\x88\x98\x2d\x8d\ \x60\x72\x37\x1f\x64\x6c\xa5\xdf\xea\x5e\x70\xb6\xc3\xbb\xe6\xf4\ \x95\x32\xf2\x1c\x9d\x54\xc9\x3c\x67\x80\x11\x7d\x28\x12\x61\x9d\ \x3b\x06\xc5\x73\x4d\xf6\xd0\xcc\xb2\x71\x0d\x1d\xa6\x8f\x4c\x42\ \x41\xe4\x6b\xdd\x41\x72\xae\xe3\x51\x46\x69\x0c\xad\x84\x51\x8f\ \xfa\x1c\xcb\x44\xb1\x9e\xd0\x2a\x8d\xcc\xb2\x0b\xc0\x4b\x90\x7a\ \x0f\x22\xef\x1c\x9d\x96\xac\x61\x49\x84\xf2\x46\x19\x17\xb1\x80\ \x8f\x04\xd1\x1d\xfb\xde\x0e\x2d\xc3\x98\x63\xe8\x61\x32\x6f\x73\ \xde\x6e\x63\xde\xee\x6f\xdf\xde\xee\x6f\x73\xe2\x76\xbb\xcd\x39\ \xd6\x3a\x8e\xc7\x17\x68\x63\x8c\xa1\x62\x5c\x16\xc8\xc2\x74\x9d\ \x99\xbb\x6a\x31\x74\xf8\x08\x5a\x2b\xe6\xe9\xc4\x1c\xa0\x10\xf0\ \x47\x96\xa2\x53\xa7\x4e\x21\xeb\xb5\xc9\x6a\x4d\xb3\xe8\xf7\x9d\ \x5c\xc4\x71\x51\x64\xa8\x0b\xf3\x44\x20\xb7\x48\xdd\xa0\x2a\xc6\ \x98\xfe\x3e\xc1\x23\x40\xd3\xb4\x96\x51\x38\x70\x98\x7a\xbc\x6c\ \x1a\x72\xe6\x31\x30\x34\x08\xdf\x22\x32\xa0\x9e\x4a\x14\xa4\xa6\ \x98\x07\x26\x3a\x90\xa4\x70\x8e\x69\x74\xe5\x5b\x76\x7a\x66\x14\ \x2b\xdd\x60\x90\x6e\xc4\x01\x9d\xe5\xe8\x83\x8f\xee\xe3\xe5\x76\ \xc5\x45\x5b\xb6\x3b\x2d\x29\x06\xf6\x71\xfe\xb0\xf0\xaf\x2e\x9e\ \x01\xf5\xb0\x43\x05\x42\x1c\x8f\x75\x18\x75\xce\x79\xbb\xdd\xe6\ \x2d\x86\x91\x68\xec\xe6\xc4\xb2\x56\x92\xd5\x10\x42\xe1\x0e\x60\ \xd5\x51\xb9\x98\x29\xa9\xc0\x25\x09\xb3\x1b\xbd\x5e\x69\x08\xd1\ \x7f\x1f\xa9\x73\x41\x87\xa5\x12\x69\x6c\xdf\x3f\xca\x5f\xec\xed\ \x0b\x99\x1a\x2c\x72\x66\xee\x82\x16\x64\xd7\xe8\xdf\x7d\xf0\x60\ \x32\xb5\xea\x62\x63\xc8\xbd\x75\xb9\x18\xa4\x67\xb9\x20\x2e\xbb\ \x14\x4f\x65\x66\x1d\x5b\x94\x41\xd8\xce\x4b\xe3\xec\xeb\x91\xac\ \x50\x9c\xc3\x96\x96\xc2\x00\xa8\xb7\xf4\x25\x3f\x7e\x86\x3a\xe4\ \xee\x2f\x7f\xf9\xcb\x9f\x7f\xfe\x79\xa8\x28\xa8\x9a\x5c\x63\x2e\ \x67\xf5\x44\x78\x9d\x17\x68\xe6\xc2\x6f\x75\xdd\x9e\x8a\x62\x38\ \xf8\xd9\xaf\x88\xd1\xf8\x07\x82\xf2\xca\x0d\x15\x88\xd2\xaf\x8e\ \xcd\x83\xa9\x43\x3f\x87\xc3\xc3\x5d\xfa\xf1\x06\xba\xe2\x4e\x77\ \x6b\xa1\x19\xd2\xed\x13\x17\x28\x5c\xdc\x50\x3b\xc5\x94\x42\x67\ \x56\x70\x26\x7e\xd5\xfe\x4e\xa1\x39\x45\xe6\xfe\xee\x22\x28\x53\ \x1a\x92\x3c\x58\xc6\xce\xd1\xb3\xb5\x72\x39\x4b\x05\x31\x76\x4c\ \x15\xcd\xb5\x43\xa0\x99\x8a\x87\x4e\x20\x3b\xed\xa8\xe8\x53\x72\ \x1d\x97\x5c\xc9\x14\x35\x52\xe0\x3d\x86\x0d\x15\xec\x92\xa8\x0b\ \x28\xc6\x50\x0c\x9d\x14\x7c\x7c\x7c\x7e\x1d\x4b\xc7\x84\x8e\xb5\ \x56\x34\x8b\x35\x45\xab\xcb\x33\x02\x2d\x31\x74\xf0\xb0\x4d\xac\ \xad\x0c\xf6\x12\xc6\x3f\x61\x84\x5b\xfc\x46\x0a\xa3\x72\x6e\x90\ \xfa\xc8\x4d\x66\xdf\x43\xac\x53\x50\x47\x33\x2a\xf6\x95\x00\x04\ \x18\x2b\x42\xf0\x38\x53\x5e\xb9\x54\x53\xb5\x9f\xef\xa2\x0a\x56\ \x8e\x7e\xa5\xe7\x87\xf9\x2d\x40\x31\xe3\x00\x2d\x8e\x21\x9a\x98\ \x47\x55\x0e\x1d\x46\xae\xb5\x54\x7c\x63\xa0\xe5\xc0\x29\x72\x51\ \x5a\xbb\x77\xb0\x2c\x22\x52\x81\xbe\x48\xa6\x27\x0b\x88\x53\x4c\ \x75\x87\x20\x08\x3a\x27\xdf\x3f\x87\x9f\x7e\xfa\xf9\xdb\xb7\xf7\ \x01\x8e\xd8\xcf\x2e\xf3\x1a\x2f\x22\x16\x4d\x68\x95\x4b\xe4\xdf\ \x95\xb5\xf0\x67\x7f\x80\x63\xd9\x1f\xfb\xd0\xf2\xbb\x23\x5e\x0f\ \xd4\x70\x61\xa7\xf9\x41\xb6\xdd\x54\xa2\x4d\xf7\xfc\xac\xbd\x5d\ \x43\x9e\x0e\x9e\xf4\x65\xf1\x9e\xd2\x84\x58\xb4\x65\x54\xc3\xd0\ \xd8\xba\x36\x64\x19\xd4\x74\xab\x6d\x7c\x75\x29\x26\x06\x13\xd8\ \x8a\x0a\x0b\x62\x5c\x42\x9f\x9f\xfa\x9a\x0a\x26\xae\x84\xcd\x86\ \x12\x47\x56\x1c\x01\x79\x8e\xa8\xfa\x34\x48\xf8\x22\x95\xc2\xc5\ \xad\x4b\x4e\x12\x93\x7b\x8f\xf2\xe5\x34\xcd\x80\x89\x25\xc4\xc9\ \x81\xab\x25\xcd\x41\x1c\x79\x10\xe1\xa1\xc0\x1c\x2b\xe0\x4a\x6b\ \x99\x61\xdc\xbc\x73\x9a\x94\x47\x2a\xf7\x06\x4b\x8f\x23\x20\x65\ \x40\x54\xe4\x20\x23\xcd\x88\x95\x86\xa8\x3d\x22\xe0\x39\xcf\xb8\ \x01\x84\x33\x62\xa1\xf3\x56\x9c\xfd\x4f\x39\x63\xb4\xba\x26\xa0\ \xf2\x1a\xa3\x78\x84\xf6\x3b\xca\x97\x67\x36\x1f\x8f\x47\x65\xbf\ \x32\x74\x28\xa1\xf2\x60\xf7\x1d\xb0\x24\x64\x56\x91\x54\xbe\x2e\ \xb7\x90\x79\xef\x1f\x7d\x71\xe5\x7a\x50\x4f\x89\xa4\x79\x01\xa6\ \x3b\x04\xb1\x04\x49\x4d\x2b\x33\x24\xd8\xdf\xc9\x65\x26\x8d\x86\ \x13\x5c\x38\xf5\x70\x51\xa9\x67\xd8\xd6\x32\x5b\x76\x1c\x98\x18\ \x22\x3c\xcc\x6c\x49\x24\x7b\x46\xc5\x2a\x42\x07\x6c\xe9\x9e\x42\ \xc8\xd4\x11\xb3\x01\x8f\xe9\x85\xa4\xfa\x58\xc3\xd3\x36\xa4\xaf\ \xca\x7a\xb8\x43\x95\x05\x43\xb5\x76\x0d\xea\x8f\xd2\xc8\xe7\x33\ \x06\x69\x59\x75\x05\x2b\xc3\x2a\xa9\x23\x6b\xe3\x50\xd6\x0c\xd7\ \x98\x6a\x88\x6d\xf2\xc9\x0b\x75\xf0\x18\x13\xfb\x12\x24\x52\xb5\ \x50\xf9\xac\x29\x71\x15\x8b\xfc\x28\x49\x39\xa1\x85\xc0\x3a\x6f\ \xe1\x64\xcc\x34\xfb\x84\x60\xb8\x89\x5b\x3b\xbf\xdc\xe7\x1a\x23\ \x7e\x41\xc9\xf5\x30\x22\x1b\xa8\x7e\xd5\xba\xbb\x14\x51\x7a\x79\ \x1f\xb5\x16\xe7\xd0\x39\xe6\x1c\x63\xaa\x81\x0f\x62\xe8\xb8\x1d\ \xf6\x70\x67\x54\xe4\x8a\xd7\x08\x3c\xeb\x7d\x88\xd0\x9d\x6a\x8a\ \x75\x38\xad\x35\xad\xc7\x69\x7a\x7d\x85\x32\x6d\xde\x01\xb2\x62\ \x74\x7b\xd2\x54\x19\x64\x0a\x85\x94\x9c\x40\x5c\x3c\xab\x8c\x4e\ \x28\xf5\xc1\xce\xc7\x50\x11\xe1\x8c\xa5\xc7\xb6\xea\xc9\xc6\x1e\ \xa5\x1a\xbd\xc1\x6c\xbd\xbf\x67\x8f\x11\xdf\x61\x0c\x17\xa6\xbd\ \xca\x5a\xa9\x85\x48\x68\x6f\x85\x4a\x2e\x33\x77\x74\x80\xb5\x63\ \xcb\xf7\x33\x44\x5e\xb2\x99\x7a\xa8\x01\x60\xcc\xb8\x28\xaa\x81\ \x8a\x8a\x79\xa1\x13\xa2\x48\xa3\x58\xb2\x7f\xdd\xce\xb8\xb2\xb5\ \x73\x2d\x5c\x00\x4b\x7c\x62\x5c\xbb\x32\x13\x0a\xf4\x21\x61\x28\ \x0d\x54\x92\x4a\x47\xf2\xf9\xe6\x73\xe4\x0f\x27\xb4\xa6\x7c\x8b\ \xa1\xb0\x73\xae\xb5\xa2\x31\x98\xbf\x61\x68\x16\x61\x6e\x9e\x1d\ \xea\xe3\x21\x0a\x15\x6a\x62\x76\x1c\xc8\x68\x34\xa9\x6c\x16\xe7\ \xfb\x50\x23\x23\x57\x72\x7a\x31\x32\xc4\x17\x9e\xc8\xa7\x1e\xa8\ \x54\xbe\x5f\x09\xf3\x39\x33\x07\x16\xea\xde\x00\x31\xe3\xf2\x87\ \x4f\x7d\x71\x5a\x84\x24\x45\x5e\xab\xc1\x04\x8b\xaf\x71\xf8\x92\ \x76\x69\x9e\x32\x26\xe6\xc7\x81\x4f\x50\x86\x8e\xbd\x7a\xf5\xb7\ \x5a\xe9\x7c\x28\x8a\xde\xee\xf3\xa6\x37\xe8\xa4\xa8\x89\x40\xc7\ \xfb\x9f\x7e\xfe\xcb\x3f\xff\xd3\x4f\x3f\xfd\xa4\x8a\x63\x59\x9d\ \xcf\xd8\xc1\xeb\x81\x5d\xd6\x08\x10\x8b\x5c\x23\x9f\xbb\x45\x7a\ \x65\x9b\x01\x74\xc1\xf2\x99\x14\x69\x7c\x1d\x7f\x8b\x66\x55\xce\ \x04\xb6\xf3\xc4\xba\x70\x65\x6e\xfb\x15\x11\x03\x8d\x0e\x3a\xe7\ \x8c\x06\x6b\x0c\xb0\xac\x59\x7b\x0e\x73\xd0\x68\xf1\x97\x66\x5e\ \xe7\x8c\x13\xb8\x6e\x07\xde\xed\xa0\xc3\x88\xc5\x15\x71\xc8\xb0\ \xaa\xc6\x2a\x90\x96\xb7\xcb\x22\xc5\x96\x44\x17\x0b\xa7\x60\x39\ \x74\xb3\x36\x84\x3a\x54\xd7\x1e\x06\x12\xa9\xac\x48\x23\xa6\x90\ \xfc\xfe\xfb\xef\xff\xeb\xaf\xff\xfa\xeb\x7f\xfc\xfb\x1c\x04\x8d\ \xb6\xc8\x23\x32\x06\xd6\x01\x46\xd3\xe4\x9d\x9a\xc7\x9c\xd3\x0c\ \x71\xda\xb2\x12\x99\x8c\xa6\x01\xcb\xb5\x8c\x13\x0b\x8c\x85\x2a\ \x12\xca\xc8\xf4\x07\x35\x86\x23\x3d\x51\xc3\x07\x90\x35\x11\x29\ \x94\xd9\xf2\xa3\x19\x31\x61\x93\x65\x4b\x28\x33\x5d\x00\x49\x17\ \xb2\x38\xce\x55\x9d\x0e\x32\x80\x21\xc5\xed\xf7\x47\x72\x88\xff\ \x6a\x80\xa9\x50\x7d\xd8\xa0\x22\x9c\x18\x3e\x81\x2c\x9f\x68\x88\ \x98\xcd\x62\xd2\x95\xf8\x53\xff\x60\xe9\x13\x76\xc4\xc8\x85\x34\ \x23\x15\x3a\x24\x3e\xc5\xda\x43\x8f\x31\xfc\x2f\x01\x0c\x98\x37\ \x36\x1a\xf4\x53\x1a\x21\x5c\x20\x28\x26\x4b\xa8\xd1\xf6\x18\x78\ \x7c\x39\x71\x1f\x9f\x1f\x2a\x46\xc1\x4d\x64\xc8\x18\x26\xfa\xd3\ \xb1\x7e\xf9\xc7\x5f\x8c\xdf\x84\x18\x1e\x81\xba\xc5\x42\x9b\xbb\ \x0b\xf5\x71\x81\x49\x48\x7e\xa3\x56\xe8\x48\xe4\xcb\xe8\xf9\x72\ \x94\x3f\x1b\x0a\xf3\x6f\x5a\x4b\x34\x49\xb1\x38\x7a\x42\xc2\xe9\ \xa5\xca\xe8\x62\x1a\x97\xea\x50\x1d\xd3\x42\x98\xad\xb9\x4f\x15\ \x86\xb8\x33\x78\xf8\xe7\xb4\x71\x6f\xaa\xed\x9c\x75\xba\x63\x5c\ \x4f\x41\x20\x81\x41\x43\xa8\x3c\x50\x68\x23\xbf\x3e\x96\x9b\x3e\ \x53\x26\xce\x2c\x43\xb7\x43\x6f\x85\x54\x92\xb6\x96\xc8\x18\xea\ \x6f\x8e\xd0\x1f\x65\x23\x21\x8f\xaf\xcf\xff\xfc\x8f\xff\xfb\x9f\ \xff\xfe\x7f\x26\x24\x60\x83\xb5\xab\xb4\x83\x16\x8e\x3d\x55\x51\ \xc8\xb1\x8e\x6d\x91\x44\xca\x99\x61\x8e\x67\x1f\x4a\xb7\x06\x8d\ \xa1\xd0\x3d\x32\x6a\x6a\xe7\xec\x10\xb2\x81\x49\xd8\xfe\x4e\x25\ \xf7\xd5\xbf\x91\x43\x1b\x10\xd3\xc5\x70\x50\x72\xf9\xa4\x25\x1c\ \xc8\xf9\x8d\xaa\xee\x9e\x66\xb8\x78\x86\x50\x5f\x8d\x27\x67\x54\ \xbd\x20\xa2\x88\x82\x8a\xdc\x48\x82\xe4\xc8\x55\x79\x8b\x88\x91\ \x18\xb6\x51\x86\x0e\xc1\x8a\xa6\x37\x6c\xaf\x21\x59\xcd\x3f\x99\ \x2f\xce\x31\xa8\x3a\xb4\xf4\x6c\x82\xd2\x8e\x7a\x91\xc6\x5a\x29\ \x96\xe1\xc2\xaf\x27\x75\x9c\xa6\x5b\x39\xa2\xe5\xa1\xa8\xce\x39\ \xd5\x45\xc5\x63\x8a\x4c\x8a\x3e\xcc\xbe\xfd\xf4\xd3\x9c\x37\x31\ \xc1\xcd\x31\x24\x02\x64\xd2\x53\x45\xad\xbb\xe8\xbe\xb4\xaa\x28\ \x6d\xa9\xe0\x89\x2a\x7c\x8e\xbb\x79\xc1\x72\xbe\x9c\xf2\x8d\x59\ \x13\x94\x2a\x50\x45\x2c\xe4\xb2\xe7\x50\x5f\xd4\xaa\x11\xe2\x79\ \x08\x00\x26\x69\xf0\x67\x9b\x26\x26\xaa\x2a\xfe\x44\x9e\x62\xc4\ \xf7\xeb\x61\xb6\x76\x20\x61\xff\xb9\xad\x58\x59\x2d\xe1\x3c\x12\ \x65\x23\x3a\xcf\x5b\xda\x18\x6a\x6d\x17\x9e\x54\x23\xe9\x03\xb8\ \x83\x6b\x72\x2c\x1a\xec\xe1\x91\x45\x40\xe0\x80\xd9\x12\x5a\xc8\ \x83\x3a\x86\xce\x9f\xbe\x7d\xc3\x3f\xfc\x59\x49\x70\xa9\x92\xb2\ \x12\x35\x49\x47\xdc\x9b\x3d\x4e\x0a\xd4\xa4\xbe\xc4\xbb\xe0\x42\ \xb2\x2c\xf3\x5c\x01\x30\x74\xf8\xe2\xda\x5c\x3a\x5c\x9b\x16\x89\ \x75\xdb\x70\x99\xfb\x4e\x2a\xca\x2c\x09\x91\x39\xc7\x5a\x29\x36\ \xf5\x5a\x3f\x76\xf2\x0e\x1c\xe3\x89\x44\x25\x91\x76\x58\x62\xbc\ \xf2\xf7\xaa\x79\x46\x89\x92\x1c\x42\xcd\x34\x5a\x92\x51\x0e\x92\ \x3e\xfb\xab\x58\xe9\xc0\x2b\x8f\x91\x49\xa0\x39\xa3\x32\xa5\x2e\ \x11\x1d\x41\x87\xa0\x13\x0f\xb3\x2f\x73\x7d\x77\x1a\x38\xb3\xc6\ \x9d\xaa\x16\x3f\x39\x9c\xf8\x2c\xa7\x03\x64\x47\xa6\x05\x98\x34\ \xd7\x8b\x04\x30\x5d\xa7\xb2\x8d\x2b\x94\x43\xc7\xfd\xed\x76\x7b\ \x7f\xbf\x47\x63\x34\xd4\x62\xa4\xb6\x43\x06\x21\x99\xf8\x17\x01\ \xc8\x3a\x90\x87\x47\x45\x43\x9f\x52\xca\x91\xc1\x30\xc8\x45\xe7\ \x7e\xac\xaa\xf4\x0f\x5f\x8b\xe2\x4a\x62\xdd\x71\x9a\xfd\xf2\xa9\ \xf3\xa7\xac\xb4\x51\x4e\x2d\x92\x5c\xf3\x58\xcb\x20\x14\xce\xd8\ \xfd\x85\x4f\x1f\xb2\xc3\x03\x5b\xdc\x87\xcb\xf5\x57\x5f\x2d\x65\ \x51\x58\x7e\xa6\x60\x4e\x1b\x97\x91\x43\x54\x1a\x1e\x21\xcd\xb5\ \xb6\xf5\x38\x27\x96\x71\x48\xc7\x45\xee\x73\xa8\xb8\x6d\x05\xde\ \xbc\x3a\xb5\xd2\xb7\xdf\x32\x54\xa1\x32\xa1\x53\xf5\xdb\x9f\xde\ \x8e\xaf\x3b\x6c\x81\x50\x24\xed\xc5\x16\x9d\x53\x45\x02\x33\x24\ \x57\xf9\x1b\xb2\x05\xc2\x39\xcc\xcd\x0c\xee\xc9\xd5\x29\x0e\xf9\ \x53\xff\x96\x80\x21\xc3\x62\x58\xe6\x20\x7e\x45\x28\x59\x19\x8e\ \x58\xdd\x4e\x1c\x01\x4d\xc6\x98\x09\x2f\x10\x9c\x17\x1e\xb1\x84\ \xf6\xda\xc4\x12\x94\x5c\x55\x74\x0c\xeb\xe8\xbf\x7b\x3e\xa7\x59\ \x41\x98\x10\x21\x23\xb3\xd8\x1e\x4b\xae\x3f\x8c\x10\x19\xf3\x9e\ \x93\xc6\x0a\x91\x4e\x16\x53\xad\x56\x18\xff\xbd\x88\x32\x95\x91\ \xfe\xbb\x70\xa8\x88\x17\xa9\x7e\x35\x85\x62\x61\x61\x41\xa0\xf3\ \x56\x33\x59\x03\x73\x39\xe0\x63\x68\x57\xd8\x0d\xc6\xbc\x29\x00\ \x3a\x3a\x34\xe2\xf5\x34\xeb\x0d\x95\xb5\x16\x68\x90\xb5\x12\x59\ \xa9\x4c\x88\x97\xd4\xa4\x27\xcc\x94\xaa\x08\x5a\x78\xd3\x64\x4a\ \x98\x11\xad\x9c\x6a\x8a\x5a\xef\x06\x8e\x9d\x9d\x57\x51\x88\x49\ \x31\x5b\xa6\x98\x68\x74\xd5\x0a\x27\x73\x8f\x59\xde\x95\x52\xcb\ \x7a\x36\x00\xaa\xff\x94\x93\x46\xa3\x65\x2e\x8f\x85\x97\x39\x37\ \x65\x4a\x39\x83\xc3\x4f\x05\x65\xf5\x30\x0d\xb1\x53\xee\x1a\x43\ \x52\x63\xb2\xa4\x8e\x4f\x94\xcb\x5b\x85\x55\x2a\x84\x0a\xa8\xaf\ \xd3\x29\xeb\xef\x96\x57\x5b\xb3\xdf\x0c\x8b\x5d\xc6\x01\x73\x95\ \xdf\xb8\x29\x16\xb9\xac\xa1\xfa\x1d\xbd\x77\xf8\xe8\x59\x31\x5c\ \x13\x9c\x39\xec\x21\xe0\x4a\xfc\xaa\xd7\xfa\xa1\x8b\x1c\x63\x70\ \xcf\x3c\x02\xb0\x52\xe4\x43\x0a\x75\x0e\x84\x68\x3f\x11\x35\x7e\ \xaf\x0e\x89\x3c\xde\x9c\xce\x0a\x21\x23\x9c\xc4\xaa\x43\xc3\x8e\ \xc1\x9c\x17\xed\x98\x34\x0f\xed\xdb\x74\x3c\xa8\xca\xa0\x67\xef\ \xae\x23\x9e\xce\x72\x27\x87\xda\xd3\xc3\xe3\x74\xb8\xb4\x5c\x31\ \xc6\x40\xd2\x44\x73\x0a\x67\x14\x13\x9d\x8e\x9d\x11\xf3\x19\x64\ \x99\x13\x8a\x59\x1f\x54\x72\xb7\x8a\x34\x9b\x1a\x54\x03\x18\xed\ \xfe\x50\xd6\xe4\xa9\x2b\x5d\x89\xc6\xa0\xcf\x4d\xa1\x02\x90\x19\ \x14\x16\x98\x09\x15\x3a\xf4\x3e\xa7\x0f\x4b\x55\xc4\x4d\xb0\x86\ \xd2\x04\x4a\xa6\x68\x51\xb8\x6c\x59\xf6\xa0\x59\xc0\xb3\x84\x51\ \x78\x36\x72\x9e\xeb\xb5\x17\x5c\xae\x58\xc5\xd9\x0e\x71\x0a\xe4\ \x87\x7f\x9b\x78\xf1\x0b\xb6\x79\x43\x30\x29\x21\x32\x0f\xa6\x17\ \xad\xac\x36\x4d\xb1\xe3\x6f\xc5\x80\xae\x7d\x0f\xee\xd4\xa1\x96\ \xac\xe2\x0f\xc6\x9e\x88\x79\xd3\xa2\xd8\x2e\x10\x9f\x71\xf9\xa9\ \x9f\x4b\x1b\x43\xfd\x17\x31\xef\x13\x25\x46\x10\x0f\x29\x72\x88\ \x4c\x1f\xd8\xa3\x70\x02\x56\xa9\x42\xb2\x68\x83\x2b\x0f\x19\x83\ \x9a\x8e\x21\x0c\x1e\x22\x86\x6f\xe8\x46\x6a\x26\x15\x62\x7e\xc2\ \x4f\xa8\x88\xac\x20\xb0\x01\x1c\x1c\xfe\x7e\x00\xc0\x1c\xba\x77\ \x4a\x50\x51\x99\x98\x8a\xde\x7e\x68\x4d\x3c\xc3\xc9\x53\x0a\x06\ \x58\x3c\x43\xb1\x38\x88\xfd\x89\x63\x49\x47\x34\xe7\x6c\x0d\x03\ \xb2\xca\x33\x54\x9e\x73\xe3\xb0\x88\x10\x73\xea\x0c\xc0\x80\xa6\ \x68\x47\x05\x63\x0c\x8d\xac\xc6\xbd\x57\x1a\x99\x51\xb5\x99\xbd\ \x58\xe0\x10\x2c\x2f\x37\x9c\x7a\xb1\xf7\xa2\xae\x47\x70\xd5\xa9\ \x44\x70\xaa\xe6\xf6\x40\xaa\x69\x52\x6e\x70\xb9\xec\x0d\xac\xeb\ \x09\xf4\xba\x8f\x5c\xb5\xf0\xd4\xc4\xb8\x3f\x0e\x3b\x0c\xd0\x79\ \x7f\xbb\xdf\xe6\x50\x70\x44\x30\x9a\x74\x62\xbc\x2b\xc7\x06\xa0\ \x2c\x17\x10\x63\xe8\x1a\x01\x30\xf2\x77\x50\x80\x55\x8a\xf3\xe9\ \x5f\x48\xab\xaf\xd6\xdd\xd1\x20\x43\xac\x33\xbb\xda\x93\x7a\x61\ \xca\x3d\x81\x14\xb6\xce\x63\x2d\x55\xe5\xea\x61\xf7\x4c\x6a\x66\ \xa6\xc6\x94\x0a\xc3\x85\x14\x19\x44\x6a\x2b\x4c\x6c\x96\x66\xce\ \x16\x54\x74\xb8\x88\x45\x56\xc3\xa9\xa5\x53\xd0\x4f\xa4\x31\xe0\ \xce\xe6\x2d\x65\xf1\x18\xa8\xaa\xf7\x2c\x95\x30\x05\xf7\x00\x21\ \x50\xa2\x1b\x96\xc5\x91\x27\xc6\x74\x9b\xcf\xc1\x09\x31\x47\xd4\ \x45\x6c\x80\xc3\x38\x6d\xc9\x08\xf1\xbf\x88\x4c\x8e\x7a\x30\x18\ \x03\x2f\x68\x84\x7e\x09\x5d\xdc\xe7\x08\x0b\x85\x57\x7f\x2c\x11\ \x7b\x1e\x19\x1a\x87\x74\x3c\xe7\x04\x07\x86\xd0\x98\x2b\x42\x16\ \xb9\x84\x1c\x73\xe4\xaa\xd7\x0f\x00\x6f\xa0\xd3\x80\x29\xe9\xec\ \x0d\x43\xbf\x14\x06\xc4\x49\xcc\x10\x96\xd6\x4d\xa1\x43\x35\x97\ \xec\x6e\x9f\x52\x21\x37\x45\x2d\x5f\x5d\xea\x50\xd3\x05\x37\x1c\ \x78\x9e\x56\x49\x67\x13\x9d\x40\x6f\xbc\x13\x65\x0e\x24\x92\x25\ \x47\x70\x44\x7a\xd7\x33\x99\x3d\xa3\x8f\x73\x9c\x01\x4d\x81\x11\ \x39\x9c\x10\x3f\x74\x08\x54\xc7\xa0\xa8\x7e\x3c\xc6\x22\xf5\x76\ \x9b\xb7\x01\x75\xc9\x05\xd6\x91\x6c\xdb\xed\x36\xa2\xd4\x43\x55\ \xdd\x88\x91\x26\x6e\x87\x03\x76\xa4\x00\x3d\x35\x0d\xf2\xf7\x98\ \x75\xb2\x01\x02\x5b\x13\x50\x45\x7a\xb6\x46\x29\xf0\x63\xe5\xab\ \xe2\x9a\xc5\xe2\x8f\x07\x14\x73\x1d\x87\x42\xc9\x87\xcb\xc0\xc5\ \x05\x58\xb2\xfa\xe8\x3a\xe4\xeb\x11\xcb\x40\x67\x63\x9a\x51\xa1\ \x79\x71\xf8\xcc\x9d\x11\x18\x92\xc3\x25\x1f\x4d\x96\xc1\x18\xdb\ \x89\x14\xea\x23\x69\x44\xb8\x0c\xde\x32\x1a\xc6\x6d\x9c\xa6\x92\ \xc5\x32\xf2\xda\x16\x15\x80\x1e\x9b\x43\xd5\x81\xc9\xa9\x74\x35\ \x6e\x00\xf6\x06\x7c\x84\x21\x80\xea\x14\x5f\xba\xf8\x86\x06\xf9\ \x50\x15\x50\x15\x31\x00\x46\xdc\xc4\x4d\x10\x96\xeb\xff\x74\xc5\ \x59\x6c\xfc\x10\x5a\x0a\x05\xe0\x95\x99\x40\x3d\xc9\x01\xd4\xea\ \xf5\xb3\x1e\x13\xc5\xc8\xbe\x4e\x37\x7a\x05\x1a\x0b\xd2\x88\xec\ \xa9\x0f\x44\xa5\x3a\x05\xd7\xa1\xd1\x3d\x2f\x61\x05\x85\x95\x6d\ \x1a\xaa\x48\x91\x2e\x7a\xfa\x9f\x7f\x89\x0b\xa2\x36\x9c\x78\x23\ \xac\xb4\x93\x52\x79\x67\xd8\x4a\x08\x11\x73\x94\x91\x94\xa3\xc0\ \xc6\x78\x26\xc0\xf6\xf5\xed\x63\x38\x10\x5a\x5a\x44\x7f\xe6\x94\ \x2f\xa0\xc4\xae\xf8\x70\xde\x8e\x52\x61\x65\xcb\x50\x69\x12\xc0\ \x1d\x51\x1e\x7f\x18\x5f\xf8\xaa\x6a\xe6\x2e\xc5\x6f\x99\x91\xa3\ \xae\xcd\x8b\x57\x60\x17\x72\xc1\x5e\xd9\x09\x4f\xf9\x1d\xe4\x27\ \xcb\xbd\x2a\xca\x60\x18\x70\xa7\xdf\x9c\xb2\xa8\xd1\x0b\xbc\x90\ \x4e\xe8\x2c\x00\xfd\x68\x73\xea\xd3\xa8\xdb\x9b\xd2\xe4\x32\x65\ \xbb\x69\x81\xf5\xf4\xea\xc2\x45\xd5\xa2\xdc\x00\xf9\xfa\xa1\xea\ \x1a\x31\x48\xbc\x66\x4a\x1d\xaa\xeb\xeb\xab\xe2\xc0\xd0\xa2\xdc\ \x25\x2b\x48\xd9\x60\x65\x2b\x47\xb0\x65\xc5\x19\x51\x75\x82\x01\ \x4c\x84\xd6\x5f\xbd\x89\x72\x40\x38\x7d\x31\xb7\x5f\x8c\xf8\x46\ \x62\xed\xda\xc0\xbe\x7e\xf9\x9f\xc0\x31\x5b\x18\x10\x76\xca\x8a\ \xca\x83\x45\x67\x1d\x19\x70\x30\x8b\xcd\x7e\x9c\x91\x58\x7e\x5f\ \x35\x04\x68\x6a\xc0\x7d\x65\x54\x56\x9b\xd8\xea\x87\xf6\x20\x9d\ \xe0\x85\x88\xe4\xbe\x51\x63\xeb\x67\xb9\xcd\xa0\xb8\xdf\xd8\x69\ \x48\xd8\xcb\xac\x40\x71\x44\xaa\x45\xbd\x48\xbb\xc3\x95\x16\x5d\ \x2c\x3b\x9e\x64\x73\xd1\x0a\x25\x10\xb4\x1a\x4f\xfc\xa5\x95\x63\ \x6f\xcf\xbc\x0a\xc1\xe5\x26\x3f\xc8\x3e\x1c\x35\x60\x4a\x5e\xf8\ \x80\xde\x32\xc9\x88\x93\x89\xe2\x85\xbd\xdf\xc2\xc1\x75\x61\x90\ \x11\x64\x19\x08\xc5\xe1\xd6\x40\x55\xe8\xc6\x74\xa1\xb1\x2f\xdb\ \x5b\x17\x24\x30\x6f\xf2\xa8\xc2\xc4\xb5\xd5\x73\xef\x5f\xa3\xd1\ \x24\x97\xb5\x91\x26\x7f\x29\xfc\x18\xe9\x1d\xd5\x3e\xed\x21\x92\ \x4f\x51\x44\x26\x04\xb6\xdc\xb5\x66\x91\x5d\xfd\x22\x8a\xb5\x67\ \x82\x3a\x4a\xb3\x1c\x46\x95\x1e\x63\x9e\x51\x81\xf0\x4a\xf9\xd7\ \xbc\xc6\xf0\x7b\xdf\x82\xa2\x59\x63\x33\x57\x9a\xac\xe5\xab\x1d\ \xaa\x8a\x1f\xa0\xdc\xb3\x3f\xe3\x12\xd5\x19\x60\x04\x09\x85\x5a\ \x81\x76\xa3\xa7\x31\x14\x72\xcd\x28\x14\x33\x53\xdf\x8b\xfa\xfb\ \x96\x51\xf4\x99\xf3\x11\x9b\xde\xae\x71\xb6\x90\xee\x57\x2d\xab\ \xd9\x9e\x35\xd5\x56\x96\x8f\xa1\xdc\x34\xf3\xfa\x0b\xcd\x1f\xbd\ \x13\x6f\x4a\xf0\x20\x0d\x4a\xb8\x81\x73\x05\xbb\x0c\xad\x5a\xf8\ \x07\xea\x52\xcd\x2a\x14\x19\x28\xe1\xe9\x0a\x19\x1f\x1d\xad\x97\ \x89\x41\x62\xb5\x93\x5b\x3c\xe5\x29\x66\x36\x28\xd9\x17\x20\xe5\ \xb3\x75\xb8\xee\xc4\x9a\xf1\x8a\x44\xea\x91\x5f\xd0\x27\x04\x76\ \x2b\x03\x36\x90\xd0\xa3\xa5\x4a\x57\x1c\xa7\x85\x0d\x19\x35\x6a\ \x2b\x95\x65\x29\xdf\xb0\xb7\x23\x2c\x8b\x67\x32\x1e\x28\xb6\x6e\ \x73\x7e\xf2\x50\xb9\xab\x0b\x50\x43\x6c\xda\x33\xe5\xd2\xf2\x98\ \xd9\x3d\x0a\xa8\x4e\x66\xd9\x8e\x3d\x18\x4b\xcc\x08\xe2\xab\x8b\ \xe7\xde\xe3\xd5\x21\x89\xaa\x55\x69\x19\x6c\xd1\x95\x38\xa2\xc1\ \xc4\xb8\x54\x65\x0a\x0d\x56\x15\xf6\x16\x93\xb4\x6a\xd3\x6d\x0f\ \x99\x7e\x03\xcb\x5b\x50\x00\x38\xb4\x44\x7d\x61\xc5\x85\x12\x39\ \x79\x96\x83\x46\xa1\x26\xc2\x31\xea\x9b\x03\x85\xb2\xc4\xc6\x54\ \xcf\x46\x64\x19\xf8\x3d\x19\x49\x03\x5c\x94\xdd\x8a\xdb\x39\x12\ \xcc\x85\xc3\x38\xdd\xf4\xa2\x9a\xda\x87\x44\x60\x78\xd0\x4c\xe8\ \x2f\x99\x71\x8b\xd2\xa2\x78\xf9\x14\xc6\x60\x09\x0c\x58\x19\x3c\ \x9a\x85\x6c\xb7\x0c\x9b\x88\x5a\x0a\x8f\xc4\x62\x23\x99\x69\x6f\ \xe7\xae\x34\xa2\x29\x40\x4d\xf8\xf9\x85\xbc\x5e\xaa\x90\x2a\x7e\ \xf7\x87\xef\xd8\xa5\xcd\xe8\xf0\x9b\x2d\x3d\xc1\xfb\xff\x67\x05\ \xb2\xe4\x22\x19\x9b\x88\x8c\xeb\x9f\xb7\xf9\x0e\x5b\x26\x42\xa2\ \x7c\x77\x6a\x4d\x83\x94\xa5\xfd\x7b\x55\x77\xda\xaf\xe2\xee\x7f\ \xdc\x5b\xb8\x33\x0c\x5a\x5e\xac\xf1\x6c\x33\xcd\xbc\xd4\xac\x34\ \x31\x5f\x6a\xa9\x79\xa7\xe9\xb7\xeb\x0d\x7a\xd7\x71\xbf\x8d\x31\ \x5c\x2c\xee\xa7\x83\x00\xb0\x58\x3d\xed\x6d\xd6\xb6\xb8\xfb\xd1\ \x31\x26\x36\xed\x3f\xa5\x8f\xe9\x67\x89\x3f\x94\xe2\xec\x64\x81\ \x98\xeb\xf3\xca\xfc\xcf\x42\x39\x8e\x9b\x9a\x4d\x0e\x4c\x85\x8c\ \x81\xa1\x37\x0d\xe4\x6c\x08\x9c\x6b\x49\xba\xf9\x85\xb1\x56\x18\ \x2a\xb0\x4d\x82\x76\x9c\xbd\xd7\xe4\x99\x2d\x15\x43\x4d\x19\x28\ \x41\xd1\x16\x52\x7b\x1e\x28\x85\x2e\x73\xd2\x20\x88\x70\x09\xe5\ \x68\xfd\xb0\x7b\x62\x45\x0e\xae\x15\x54\x7c\x78\x4a\x96\x82\x66\ \xa6\xb6\x96\x60\xce\x91\x89\x42\x36\x68\xce\x82\x75\xb7\x7a\x69\ \x7e\x37\x24\x6e\x03\x6b\x90\xbb\xf0\x4d\x99\xa8\x89\x5f\xda\x06\ \x83\x62\xa1\x65\x32\xec\x92\x0d\x2f\x06\x10\x24\x98\x1e\x7b\xe8\ \xa8\x32\x1d\x63\x73\x29\xf3\x7a\xd1\xa7\x48\xea\x90\xc9\x31\xca\ \xce\x44\x7c\x09\x4e\x75\x75\x79\x35\x7c\xb3\xd9\x42\x9e\xce\x6f\ \xa2\xfb\x73\xfb\x13\xad\x2d\x7a\xad\x1b\x04\x33\x42\xf6\xbc\x4d\ \x17\x43\x28\x13\x58\x6d\x6d\x89\x21\xba\x4c\xf8\x22\xdc\xbf\x20\ \xf3\xeb\x2f\x53\x0c\x61\xdc\xc7\x3e\xcf\x84\x8c\x1d\x5b\x15\x08\ \x87\xa0\x1d\xf8\x13\x3e\x26\xc6\x9f\x7f\xfe\x45\xd5\xee\xef\xef\ \xdf\xbe\xbd\xcf\x19\x41\x2d\xce\x95\x5f\x56\x86\x19\x6b\x3a\x98\ \x1d\x48\xea\x40\x29\xa9\xbe\x27\x0f\x6e\x2f\x89\x04\xb4\x65\xb6\ \x16\x77\x76\xda\x30\xa1\x2c\x59\xee\x90\xab\x5d\xad\x43\xc8\x55\ \x65\x40\x05\x73\xe8\x9c\xb7\xdb\xcd\x6b\x3a\xd5\x31\x50\x48\x33\ \x40\x96\x99\x70\x3a\x7d\x35\x3c\xfa\x15\x05\xba\xd6\x5a\x87\xd7\ \x60\x2e\x5e\xd4\x2c\xff\xe1\x31\xc2\x82\x41\x25\xa8\x43\xd7\xb1\ \x84\x36\x82\x04\x4d\x19\xd4\x31\xef\xb7\xf7\x52\x28\x8a\xc8\x5a\ \x7c\x8c\xb5\xcc\x48\xb9\xdd\xee\x2a\xb2\x6c\x89\x0e\x15\xc5\x40\ \x88\x92\x82\x6a\xac\xdb\xc7\xef\x31\x3a\x34\x17\x60\x9a\x70\x90\ \xcb\x28\xe6\x62\x75\xd6\xba\x89\x3b\xbd\x6b\xeb\x2c\x15\xd2\x65\ \xa9\xdd\x0a\xbe\xb9\xa8\x91\x8d\x67\xf0\x2c\xc1\x0a\x3e\x0b\x65\ \x97\xca\x59\xfe\x14\xd9\x12\x16\xf4\x0c\xcd\x1b\x1f\x45\xb6\xdd\ \x70\xe1\x4c\x55\x88\xd5\xcf\x66\xae\x9b\x89\xc3\x32\xe3\x57\xcc\ \x9f\x1d\xc0\x5a\x69\x8b\x8f\x4f\xe3\x6c\x59\x87\x50\x43\x6c\x0b\ \x5f\xdb\x5e\x7f\xd3\xa0\xc1\x17\x4d\x7c\xab\x40\x2c\xbd\x81\x34\ \x33\x77\x44\x5a\xf3\x25\x36\xba\x52\xce\x7e\xfa\x45\xf4\xa3\x97\ \x87\x45\x23\xd0\x28\xbf\x10\x44\x8b\x94\x35\xc0\x19\x26\xe6\xf6\ \xdb\xe0\x66\x0d\x15\x1d\x7f\xf9\xaf\xff\xf5\xbf\xfd\xcb\xbf\x08\ \x1e\xff\xe5\x1f\x7f\x79\xbf\xdf\x10\x01\x2e\xc1\x34\xdb\x1b\x79\ \x4b\x65\x97\x85\x33\x82\x06\xe3\x57\x08\xa6\x29\x22\xa6\xa9\xc7\ \x2f\x6c\x91\x93\x2e\x97\x99\x87\x98\xb4\x08\xa8\xc4\x85\xbb\xfc\ \xd7\x23\x23\x43\x90\x38\xbe\x8e\x63\xfe\xfc\xf3\x9f\x45\xf8\x3e\ \x86\xd7\x43\x8e\x4a\x0b\xac\xd9\x1e\x72\x38\xa7\x22\x18\x10\x6c\ \xd1\x61\xb7\x39\xa1\xb4\x63\x81\xb9\x81\xcb\x8c\x60\x27\x81\x24\ \x98\x1e\x4d\xc9\x60\x24\x8f\x45\xda\x12\xb3\xcc\xd3\xb4\xb5\xd6\ \xe3\x58\xc7\x61\x63\xdc\x3e\x6d\xfd\xfb\x7f\xfe\x8a\xc2\x0f\x07\ \x2b\x3a\x1a\x2a\x33\xde\xf0\x56\xb6\x61\x9f\xf3\x16\xf7\xc2\xe7\ \x4e\xce\x4b\xe8\x22\x25\x87\x75\xa0\x87\xaa\xab\x98\x51\xd5\xc5\ \xa6\x96\xa8\x6a\xae\x25\xae\x80\xdc\xcd\x7b\x42\x42\x14\x2d\x15\ \xcb\x49\x11\x5b\x3d\x19\x69\x6f\x2e\x0a\x8e\x5d\xb0\x2a\xd7\x51\ \x57\x43\xca\xc9\xa3\x7e\x8f\x0f\xd2\x61\xa2\x61\xf9\x35\x81\x53\ \xda\x14\x99\x12\x12\x9b\xa1\xde\x11\x65\xfd\x56\x10\xa3\x7c\x46\ \xcd\xf3\x5a\x54\xe1\x07\x09\x37\xe7\x25\xd6\x47\x71\xf4\xe6\x5a\ \x39\x9f\x3c\x17\x4a\xa8\x44\x3a\xc1\x7e\x61\x42\x9c\xaa\x0c\x57\ \x4c\xe6\xde\xf4\x38\xf8\x97\x0c\xcb\x73\xfe\x48\xa9\xf2\x03\x24\ \x62\xb6\xe0\x81\x4a\x29\x17\xca\x09\x92\x87\xc4\x19\x69\x5f\x6b\ \xfd\xef\x7f\xfb\xf7\x8f\xcf\xaf\x7f\xfc\x87\x9f\x3f\x3f\x1f\x43\ \xc3\x47\xb2\x84\x63\x8c\x29\x88\x4e\x7b\xbf\x9c\x85\x7e\xf2\x76\ \x37\xa4\xfa\xbe\x5b\x77\x72\x2f\xb7\x21\x2d\x5c\x5e\xbe\x00\x0d\ \xb5\x2e\xc5\xa0\x43\x23\xc8\x01\x19\xbb\x99\xdd\xe2\x58\x5f\xc7\ \x6d\xce\xf9\x4f\xff\xf4\xcf\x7f\xf9\xcb\x5f\x20\xc6\x65\xea\xf7\ \x1f\x2b\x95\x36\x2b\x46\xd3\x16\xb8\x1c\xaf\xa0\xcb\x3d\x01\x13\ \xc7\x62\x5a\xf8\x70\x8c\x66\xd1\xd0\xd1\x8c\xee\x86\x0f\x04\xd0\ \x3a\x96\xbb\x92\x48\x55\x1a\xed\x61\xb4\xe3\xe1\xd1\x35\x16\xd2\ \x7e\x1e\xeb\xf3\xd7\xef\xdf\x51\x69\xcb\x60\x39\xe3\x52\x64\xec\ \x87\xb3\xa9\xe8\x22\x97\x1d\x2e\xbf\xd0\xcc\xb6\x97\xa4\x22\x56\ \xdc\xe7\x16\x2c\xed\xb1\xe9\x29\x8f\xc5\x3b\xc1\xe5\x03\x86\x0d\ \xa7\x0e\x10\x48\x45\xa0\x94\x36\x49\xcb\x72\xd4\xfa\x16\xad\x24\ \x00\x11\x07\xfd\x6c\x02\x25\x60\x8b\xae\x93\xd4\xe6\x7c\x42\x0c\ \xcb\xb7\x2b\x31\x36\x27\x3b\xf6\x08\xd5\x9f\x45\xca\x1d\x8a\x53\ \x7d\x62\xd3\x59\xad\xce\xca\x59\xbc\x1b\x12\xb6\x9f\xd6\xba\xe0\ \x6a\x83\x8b\xb7\xc8\x55\x1a\xc0\x2d\x2e\x8a\x70\x52\x0b\x9f\xb5\ \xf7\xa7\x18\xd3\xa7\xc8\x23\x69\x4e\xd1\xa8\x0c\x51\xf0\x96\x1d\ \x34\x2f\x15\xb1\x28\xdc\x6c\x50\xc1\xc7\xe3\xf1\xfd\x7f\xff\xdb\ \x71\x7c\xad\xe3\x50\x88\x0e\x59\x1e\x53\x25\xee\x08\x8c\xc7\x9f\ \x72\xfd\x34\xaa\x49\xcb\xf1\xc2\xce\xde\xf6\x97\xcf\x75\x47\x35\ \xa5\x84\xc8\x71\x1c\x04\xa0\xb7\x50\x3c\xdb\xb6\x78\x96\x75\xf1\ \x38\xd6\xfd\xfe\x36\xff\xfa\xaf\xff\x9a\x41\x57\xc5\x3d\x74\x87\ \x58\x3e\xab\x22\x5c\x3d\x8d\x2d\xd8\xaf\xeb\xb0\x31\x95\x5c\xde\ \x95\x88\xb9\xed\x7a\xa7\x5c\x5a\x0e\x4c\x8a\x4a\x01\xd9\x34\x71\ \x8a\x1d\x8f\x87\x1d\x87\xd9\xa3\x90\xf7\x34\x59\xc7\x3a\x44\xcc\ \x64\xbe\xbf\x45\x3c\x52\x7c\xcc\xee\xd5\xa6\x43\xf2\x2a\xd7\xd6\ \xa1\x7a\x95\xfc\x49\x71\xc9\x53\xbd\xf5\x91\x6f\xee\x31\xa3\x5e\ \xaf\x8d\xe1\xc9\xaf\x91\xe6\x4b\x23\x69\x23\x0c\x56\x12\x09\x05\ \x89\x32\x50\x4f\x73\x8e\x29\xf4\xeb\x96\x20\x38\x7d\x19\x69\xed\ \x87\x9b\x6a\xc9\x06\x33\xfd\xda\x56\x8c\x2a\x91\xc3\xa0\x9d\x15\ \x12\xb7\x0d\x4e\x04\x83\xf6\xec\x9e\xba\x1d\x66\xd1\x76\x0d\x2d\ \x72\xc9\x3a\x33\x7d\xd6\xc5\x07\x27\x6f\x09\xda\x82\x64\xcb\x96\ \x6a\x24\xc6\x12\xe7\x6f\x81\x3d\x2a\xcc\xa1\x1c\x71\x6d\xcf\xf1\ \xd4\xad\xbd\x02\xb6\xe4\x5a\xc6\x65\x72\xcc\xc0\x68\x8f\x64\xe9\ \xd1\xb9\xf4\x70\x07\xaf\xb9\xf4\x61\xcb\x49\x94\x8f\xc7\xe3\xf1\ \xf8\x9a\x43\x59\x2b\x0e\x3d\x9c\x0a\x28\x55\x9a\xe1\x34\x01\x71\ \x75\x65\x34\x66\x0a\xb6\x28\x56\x55\x06\x62\xb3\x06\x09\xad\x0f\ \x34\x3b\x18\xa4\x49\x88\x78\x1a\x64\x38\x8b\x40\xde\x00\x39\x1e\ \xf3\x3f\xfe\xef\xaf\xe4\xba\xcd\x9b\x42\x97\xdf\x65\x63\x48\x5a\ \x81\x74\x0c\x1f\x1d\xcf\x11\x33\xab\xfa\xea\xd6\x72\x05\x8b\x71\ \xad\xca\x2e\x37\x5a\x57\x4d\x53\x22\x8c\x12\xc0\x41\x46\x98\x32\ \xe3\xcd\xf4\xc7\x2b\x5e\x78\x5b\xe6\x16\xaa\xe5\x08\x68\x1f\xba\ \xeb\x1e\x82\xe4\xee\xda\xd2\x9a\x03\xe8\xdc\x27\xa2\x4f\x64\xf2\ \x5f\x2c\xfa\xe8\x46\xb4\x05\xc8\x82\x2e\xdb\xa9\x09\x63\x56\x0e\ \x91\x40\x08\x0d\x0d\x27\x77\x5e\x97\xab\x95\x5c\x12\x7f\x21\x3f\ \x1a\x4d\x99\xb1\x94\xa9\x26\x74\x50\x4e\xc6\x49\x85\x28\xd7\x0b\ \xf7\xb8\x46\xc8\x24\xb5\xa7\x28\x0e\x68\x9a\x62\x34\x3e\xa5\x5c\ \x1a\xe7\xca\x1d\x0e\xc7\x3d\xfd\x5a\x5b\xdb\x92\xd1\x31\xfa\x27\ \x46\x10\x53\x20\x7c\x7a\xa0\xf1\xd4\xdc\xb7\x7b\xb4\x5e\x2a\x87\ \xfa\x86\xf7\xd3\xb5\x23\xc9\x18\x78\x91\x45\xf9\x74\x0b\xa5\x4c\ \x97\x4c\x88\x77\x71\x64\xcf\x29\x49\xd9\xec\xf9\xf3\x7b\x03\xbe\ \x7f\xfe\xfe\xaf\x7f\xfd\xeb\xdf\xfe\xe3\x4f\xbf\xfe\xfc\xa7\xa1\ \x31\xba\xf4\x5e\x9a\xb2\x14\xfe\xb7\xe0\xdb\xbd\xc2\xe1\xa3\x58\ \x67\x49\x4b\xb2\x5a\x35\x51\x9c\xe2\xef\xe1\x76\xb1\xc6\x8d\x5a\ \x2e\xa6\xd2\x90\x21\xea\x94\x24\x8b\x09\x27\xf7\x68\x51\x6f\xb7\ \xf9\xf9\xf5\x65\xc7\xf1\x98\x8f\x0c\x70\x6e\xda\xa0\xf8\xa3\xfa\ \xce\x1b\xcb\x75\x75\x4c\x26\x0e\x53\xcc\x6f\x47\x69\x16\x9c\x21\ \xb6\xcc\x83\x05\x75\xb9\x8c\x70\xe4\x9c\x37\xd3\x86\x3d\x1e\x39\ \x96\x39\x6b\x45\x65\x47\x98\xc8\x5a\x26\x22\xdf\xfe\xf4\xf3\xed\ \xed\x9e\xca\x3b\xad\xbd\x7e\x46\xc6\xc5\x13\xef\x51\xdd\xd2\x63\ \x9b\x7d\xe5\x98\x99\x2f\xe7\xc9\xec\x4e\x17\x2c\xf9\xdd\x72\x98\ \x7a\x3d\x1b\x09\xb5\xb0\x50\x21\xa0\x99\x1b\xfc\xf4\xb2\xed\xc1\ \x68\xa6\xa2\x11\x0b\xeb\x48\xc2\x4e\xbb\xbb\xe7\x6f\x22\xd9\x45\ \x33\x86\x86\x7b\xc9\x43\xcd\xd1\x32\x59\x2f\x67\x7e\xeb\xed\x4e\ \x33\xa7\xdd\x36\xe5\xeb\xfe\x0b\x6c\x17\x6e\x47\xd4\x73\x8f\x33\ \xfa\xd2\xa2\x24\x64\xf1\x47\xd3\x68\xf0\xf4\x9c\x2d\xd5\xf6\x3c\ \x27\x29\x45\xa5\x77\x9d\x22\xb5\x9f\x0d\x30\x17\xb6\x5e\xa7\x2b\ \x54\x5d\x56\x00\xcd\x9d\xf0\x94\x10\x87\x60\x09\xa9\x3c\x3e\x3f\ \xfe\xcf\xbf\xfd\xdb\x1f\xbf\xde\x1e\xff\xf8\xe7\x9f\xbe\xbd\xb9\ \x9e\x2c\xae\x6d\x6d\xfc\xee\xf2\x25\xa7\x1e\x28\xd9\x50\xda\xf2\ \xe0\xe3\x83\xb9\xe9\x4d\xb8\x3c\x55\xc8\x13\xa0\x1c\x3f\x11\xb9\ \x4f\xc8\xe0\x98\x08\x7b\xd5\x1a\xcd\xeb\xd0\xb5\xd6\xed\x76\x9f\ \x7f\xfd\xeb\xff\x3c\x8e\xc3\x65\x28\xb1\x27\xae\xe0\xe2\x40\x9f\ \x89\x4e\x94\xd3\x65\x39\x85\x75\x43\x5d\xbc\x0a\x8a\x05\x47\x6a\ \xa2\xc3\xef\xe5\x5b\x93\x50\xf3\x95\x83\x3d\x0e\x19\x33\x5b\x62\ \x81\xc7\xca\x4d\xb5\xba\xb4\xf9\xfe\xf6\x2e\x74\xf6\xbe\x1b\x54\ \x2c\x4e\x90\x15\xd5\x92\x66\xb6\x06\xa2\x38\x64\xf0\xd6\xcd\xb3\ \xbe\xad\x32\x38\xb2\xd4\x31\x4f\xcd\x45\xec\x7e\x3c\x42\xc2\x39\ \x9f\x96\x88\x9c\x58\x8d\xc4\xca\xa8\x21\xb8\xb3\x3c\xdb\xa9\x96\ \xd5\x21\xc5\xb6\x9b\x8b\x9a\xcc\x90\x24\x16\x94\xae\x21\xb9\xa0\ \x86\xa6\x1e\x77\x3d\x8e\x46\x05\x14\x77\x97\x9b\xfd\x3d\x4b\xad\ \xe5\x88\xa6\xc2\xca\xd9\x0d\x52\x71\x51\x10\xa1\x23\x1d\x77\xa7\ \xe1\xba\x7d\x94\x92\x40\x5b\xae\x35\xce\xf0\x63\x3f\x17\x18\x36\ \xbb\xf0\x35\x4b\xee\x79\xe3\xa5\xd4\x22\x2d\x7a\x24\x3b\xf2\x8f\ \xbf\xf3\x99\xe4\x8c\x01\xdb\x44\xa5\x3c\xcc\x46\xdd\xa7\xad\x5a\ \x5a\xc2\xd1\x9c\x8b\x3d\xa5\x26\x03\x4b\x28\xd0\x39\x6e\x37\x55\ \xbd\xbf\xbf\xfd\xf9\x97\x9f\x5d\x1c\x94\x4e\xdb\x52\xb1\x28\xea\ \xad\xd0\x18\xf4\x29\xda\x3b\x8a\x8d\xae\x75\x39\x4b\x14\x69\x52\ \xc1\x64\x2c\xe2\x05\x32\x0b\x57\x9c\x8b\x92\xdf\xa3\x97\xcd\x5e\ \xdf\xce\xb5\x0e\xb3\xc3\x29\x76\x5a\xac\x59\x86\xcd\x3e\xa6\x4f\ \x12\xd2\xa0\xf8\xba\xd5\x4f\x29\xcd\xfe\x72\x76\xe6\xa0\xa4\x65\ \xca\x27\x11\x94\x08\x6d\xde\x76\x09\x7a\xfd\xb8\x6c\x1d\x35\x56\ \xf2\xfa\xc7\x16\x48\x1e\x66\x63\xfa\x42\x87\xb4\xb5\x85\x08\x54\ \xe9\x0e\x83\xd0\xe4\x44\x9a\x68\xe4\xac\x65\x0b\xbe\x37\x6a\x96\ \x27\x92\xf7\x40\x16\x11\xc1\xd9\x91\xab\x5b\x82\x11\x38\xa5\x9e\ \x47\xa0\xc9\x00\xf5\x57\x71\xdb\x53\x4d\x04\x66\x5a\xa4\xdc\x7c\ \x3e\x56\xbc\x51\x5a\x8a\x37\xef\x46\xf7\x94\x2f\x96\x80\x31\xea\ \xd1\x2e\x7c\xea\x0b\x96\xc0\x65\x1b\x3c\x05\xcd\x6c\x07\x74\xec\ \x22\xaa\x24\x07\x45\x43\xee\x49\xc5\x75\x0a\xf7\xf3\xbe\x10\xe3\ \xd5\xdc\x6f\x47\x2a\x76\x44\x85\x34\x24\xb9\x84\x60\x35\xfa\x00\ \x4b\x0c\x96\xfc\x3f\xc2\xde\xf5\xc7\xb2\xeb\xc8\xf2\x8b\xc7\x3e\ \x37\x2b\xb3\xaa\x48\x4a\x14\x25\xb5\x34\xd3\xad\x99\x6e\xdb\x18\ \x77\xb7\xc7\x03\x03\x6d\x8c\xff\x7b\xc3\x86\x01\xc3\xf3\x80\x0d\ \xcb\x33\xa3\x77\xab\xf5\xa6\x48\x56\x15\xab\x32\xf3\xde\xb3\x23\ \x96\x3f\x44\xc4\xde\xfb\xdc\x4c\xda\x02\xd4\x4d\x50\x55\x99\xf7\ \x71\xce\xd9\xf1\x58\xeb\xb7\x64\x5a\x50\x9e\xda\x27\x97\x19\xc0\ \xec\xc6\xa6\x7f\x97\x99\xc3\x07\xe8\xe6\x33\x6a\x63\xac\x67\x31\ \x02\x95\x85\xa5\x69\x13\x14\xca\x35\x49\x4e\xa1\x45\x2c\xd3\xcf\ \xfa\x08\x1b\x4f\x21\x0d\x72\x37\x2d\x83\x1f\x8e\xeb\xb6\x68\x82\ \x09\x77\x2c\x49\xde\x68\x98\x21\xb9\xe2\x11\x39\x1e\xd4\x44\x88\ \x68\x40\xb4\x9b\x17\x2f\x60\x7d\x6b\x4a\x18\xb3\xe0\x4c\x3b\x15\ \x61\x3a\x30\x04\xe3\xef\x36\x91\x98\x48\x4a\xe5\x0d\x26\xe4\x01\ \x04\x25\x1d\xc8\xa8\xc0\xd9\x70\xe8\x3d\x0b\x9a\x26\x24\xb1\xd5\ \x57\x80\x49\x06\xc4\x39\x09\x47\x42\x44\xec\x9c\x6b\x32\x07\x71\ \x60\x5e\x44\xa3\x2e\x8b\x91\x2e\x55\xcc\x55\x4a\xd4\xe2\xd9\x93\ \xf7\x8d\x8f\xba\x02\x44\x42\x32\xc3\x67\x3c\x43\xb2\xe9\xb8\x47\ \x8c\xf6\x29\x74\x4f\x2b\xe4\x7a\x4c\x2f\xd6\x31\xc0\x50\xeb\x2c\ \x23\x87\xb9\x3f\xad\xbd\x4d\x2a\x0f\x1d\xd0\xe1\x8d\xab\x84\x60\ \x49\xc7\x56\x9d\xd7\xcb\x2a\x6c\x8d\x10\xe3\x42\x16\x8c\x5d\x6d\ \x0c\xee\x17\x5a\x00\x4f\x88\x34\x4d\xc1\xfc\x31\x93\x7d\x61\xd8\ \x4f\xed\xd6\xf3\xf1\xbd\xeb\xe5\x31\xa3\x77\x8e\xb4\xd8\xf9\x81\ \x3c\x57\xa1\xd1\xb4\x8d\x4c\xd7\x74\xc4\x43\x88\xe0\x0a\xaa\x7c\ \xdc\x26\xf1\x40\x65\x96\xb5\x02\xb5\x6c\xc5\x69\x3b\x09\xbb\x30\ \xab\x88\xa6\xb2\x7b\x92\xa9\x0f\x1e\x9b\xf1\x7e\xb7\xe4\x1e\xce\ \x74\xc2\xda\x14\xd7\xc3\x45\x56\xc4\x4d\x6e\xad\xa2\x3f\x92\xc1\ \x00\x59\x3f\x3a\x1a\x3e\x9a\xb0\xae\xea\x8e\x1e\x08\xbd\xec\x59\ \xcd\x38\xe1\xab\xa9\x34\x4e\x94\x50\x2a\x96\x61\x48\x55\x22\xe0\ \x22\x3a\x44\x69\x39\xe1\x50\x19\x77\xd1\xb4\xa6\x0e\x72\x68\x72\ \x26\xd8\x6d\xf2\x79\xeb\x6b\x08\x1d\x0e\x6f\x22\xad\x69\xef\x26\ \x6d\xe3\xb2\xb6\x8f\x67\xff\x5a\xc0\x17\xfd\xa9\x66\x64\x0e\xe8\ \x94\x44\x96\xe5\x63\x6c\x2e\x88\x0c\x43\xd6\x9c\xad\x58\xd0\x84\ \xd3\x30\xe9\xab\xd7\x68\x62\xe0\x47\xca\xe0\xb2\x1c\xbc\xda\x8a\ \x1e\x78\xa5\x58\xe1\xa3\xcc\x8a\x68\x1e\x2a\x43\x31\xf2\x95\x00\ \x73\xc8\x95\x5a\x0c\xeb\x24\x37\xac\x19\xa2\x32\xa6\xf0\xd7\xa9\ \xdf\x98\xf9\x84\x3c\x84\xa4\xc9\x81\xe0\x3a\x4b\x0f\x2f\x52\x9f\ \xbc\xf2\x71\x07\x8e\x10\x94\x6a\x8e\xae\x46\xc9\xdf\xf8\x7e\x9f\ \x53\x09\x1c\x9e\x3e\x22\x08\x72\x6f\x15\x6a\x91\x7b\xe0\xbc\x04\ \x58\xc4\xea\x22\xfe\x5d\x99\x81\x94\x55\x6e\x6e\xda\xb7\xbe\xf5\ \xc9\xc6\xf8\xe4\xe3\x57\x1f\x7d\xf4\x52\x95\x47\xd4\xf6\xe0\xbd\ \x8c\xb3\x34\x8d\x2e\xf1\xbd\x1b\xf9\x14\x38\x86\xe6\xcf\x3d\xb0\ \x95\x9c\xa1\x12\xa3\x7c\x9d\x5f\xb7\x83\x48\x87\x8a\x2f\x06\x45\ \x43\x86\x04\x74\x16\x72\xf7\x06\x61\x15\x61\x6d\x63\x35\xe5\x25\ \xcc\x0a\x30\x12\x01\xaa\x31\x89\x86\x86\xa7\x48\xe7\x32\xcb\xcc\ \xdc\x7c\xbd\xe9\x2b\x00\x31\x50\xc2\x15\x65\x32\x58\x9b\x1c\x64\ \x6c\xe7\x3d\xa0\x02\xb3\x3b\xca\x8e\x02\x01\x97\x8f\x12\xcd\x02\ \x16\x1b\xc3\xb7\xf2\xcf\x0f\x4d\xfa\x50\xda\x49\x13\xa5\x70\xb4\ \xae\x99\x8d\x44\xe1\x6e\x18\x29\x89\x24\xd4\xa2\xe9\xc2\x24\x35\ \x2f\x13\x35\xb0\x5c\x5f\x67\x71\xa5\x0f\x77\xca\x21\x50\xe8\x09\ \x9e\x2b\xe4\xb1\x81\xc8\x29\x71\x30\xd5\x28\x3f\x61\x12\xce\x89\ \xd3\x07\xa5\xc3\x71\x31\x41\x94\x56\x6d\x74\x44\x99\x76\xef\xab\ \xd0\x6b\x9c\xb4\x58\xc6\x00\xcb\x63\x7c\x10\x65\xf9\x90\xb2\x34\ \xc0\x90\xf5\xd7\xe9\x18\xdc\x5d\xd8\x6e\x59\x1e\x0a\xfc\x34\x7c\ \xe5\x9b\x0e\x19\x3e\x48\xe6\xae\xc2\x5a\x9e\x91\xb0\xc5\x83\x7f\ \xec\xc7\x46\x78\x5e\x88\x09\x99\x41\x64\x91\x7e\x77\xb3\x6d\xc2\ \xbe\xb5\x26\xaa\x2a\xdc\x9a\x0c\x86\x49\xf1\x2d\x3c\x18\x18\x4b\ \x82\x5a\x51\x22\x24\x6b\x77\x2e\x2c\xe2\x5c\x6a\x1d\xe7\x16\x39\ \x12\xd3\x03\xaf\x90\x20\x90\x01\xa5\xcd\xc4\x71\x77\x6f\x77\x77\ \x77\xde\x55\x73\xda\x45\x43\x3c\x98\xc4\x03\x30\x91\xc9\x54\xf5\ \x22\xc1\xea\x15\x34\xa3\xc9\x14\xe7\x43\x48\x95\xa3\xb6\x75\xb5\ \x51\x01\x07\x6e\x2b\xa4\x62\x71\x65\x98\xd1\x22\x7d\x25\xe1\x70\ \x59\x07\x36\x00\x73\x89\xc1\xc3\x44\x81\x41\x3a\x15\x56\x90\x23\ \xe0\x9f\x66\x29\xaa\x87\x41\xdb\x42\x6a\xab\x2d\x54\x4d\x0f\x63\ \x31\x0e\x42\x70\xd2\x42\x4f\xe4\x1e\x2b\xb8\x48\x2e\xc1\xd5\x50\ \x28\x2e\x35\xe5\x2b\x6e\xea\xe2\x05\xe0\xb8\x39\xe9\x69\x10\x90\ \x24\x14\xdc\x9f\x5e\x6a\xf9\xa1\xf9\x18\xe3\x96\x02\x30\x83\x67\ \xe1\xc4\x6b\x76\xd0\xa1\xa4\x9c\xb6\x73\x1e\x7c\x6d\xac\xb1\x9e\ \x34\x88\x16\x4b\xbd\xc1\x4b\xb1\xf8\xdc\x3d\x5f\x0b\x25\x59\x76\ \xaf\xeb\xa3\x70\x6a\xe1\xae\xe6\x63\xe3\xfd\xf2\x80\x81\x5c\xdd\ \x25\xe9\x7c\xac\x4e\x24\x3f\xfc\xf1\x19\x2e\x4e\x99\x72\x8e\xd4\ \xbf\x43\x6e\xb7\xa8\x3b\x99\x30\xcb\xa6\xcc\x73\x2a\x81\xb4\xaf\ \xa5\xeb\xc3\x0b\x7d\x5f\xe3\x6e\x8c\xf8\xbd\xda\xbb\xe4\x2e\x8e\ \x87\xaa\x20\x67\xd7\x49\x3b\xb8\xc2\xcb\x8c\xa8\xaf\xb1\xde\x8d\ \xfb\xbc\xb5\x26\x7b\xa7\xb1\xd6\x48\x52\x66\x82\x2c\x89\x95\x09\ \x4a\x66\x05\xcb\xcc\xce\x87\x88\x1c\xa6\xd5\xb6\xd7\x19\x37\x1e\ \x30\x23\xf5\x90\x6b\x46\x5e\x67\x71\x7e\xca\x46\x66\x52\x4c\xd9\ \xdc\x40\x57\xc0\x2d\x52\xd5\xe7\x99\x8e\x43\x45\x98\x67\x52\x11\ \x03\x87\x26\x37\xe4\xaa\xa5\x94\x75\x72\xd7\xd2\xc0\x8c\x87\xa8\ \xb0\x58\xf6\x06\x3c\x62\x11\xa8\x3c\x64\x09\xf7\x84\x8f\xc8\xa4\ \x51\x9f\xcc\xb4\xc7\x9a\x6f\x8f\x9b\x64\x54\xbd\x43\xcc\x92\x68\ \x41\x9e\xb2\xb1\xb1\xd8\x8f\x8e\xb1\x35\xf5\x7a\xef\x63\xbe\x52\ \xbc\x08\x2e\x5b\x0f\x30\x0a\x82\x54\x00\x00\x20\x00\x49\x44\x41\ \x54\x09\x91\xc6\xb0\x40\x12\xc9\x9d\x4a\x4a\x24\x33\xd3\xdd\x94\ \x69\x1c\x89\x15\x6e\x5d\xa3\xb0\x50\xa2\x79\x59\x66\x92\xed\x94\ \x72\x2a\x2e\x65\xc3\xcc\x85\x5d\xfc\x8f\x43\x7f\x34\x6e\xe0\x31\ \x8a\x98\xbc\xa0\x92\x2e\xac\x60\x96\xab\x73\x66\xf8\xe1\xf9\xfa\ \x41\xe3\xbc\xd8\x6c\xdc\x9d\x9d\x44\x12\x7f\x48\x43\xcf\x9f\x2b\ \xd7\x0a\x71\x67\x77\xdb\x99\x09\x16\x05\xb5\xc3\xc5\xab\x2d\x88\ \x47\xcc\x38\x78\x73\x15\x34\xff\x35\xb1\x1e\xb7\xd2\x5c\xd9\xae\ \x95\xd3\x06\x82\xd5\xd2\xc5\x17\x5e\x6e\x3c\x02\xe6\xa4\xe8\xaa\ \x04\x15\x69\x94\xaf\x05\x24\x3c\x21\x04\xc3\xbb\x13\x5d\x66\xe1\ \xf5\x0b\xd6\x18\xbd\x51\xe6\x87\x25\xc3\x65\x76\x9f\x3c\x49\xa1\ \x51\x38\xc5\xe7\x55\xae\x36\x8e\x70\x54\x00\xb0\x85\x2d\x38\x6e\ \xab\x7c\x98\x3b\xc0\x5e\x33\x8a\xea\x16\x42\xe8\x09\xd2\xbc\x0f\ \xac\xc4\xa5\x14\xc8\x74\x84\x12\x2b\xec\xd0\x73\x68\x88\xc3\x88\ \x33\x9c\x05\x70\x92\xba\x2f\x24\x86\x51\xb5\xcd\x5f\x42\x1b\xb9\ \xd8\xd4\xd1\x84\x86\x5b\x41\x17\xcb\x69\x39\x90\xd9\xa9\x56\xa2\ \x03\x7d\x38\xad\xa9\x65\xc6\x1c\xb1\xd3\x4b\xb2\x31\x0f\xb3\xe7\ \x34\xe5\xc0\xcb\xa4\x5a\x83\x55\x03\x27\x48\x35\xa0\xea\x93\x36\ \x1b\xea\xb6\x89\x9c\xae\x59\x81\x13\x13\x5c\x0e\xa4\xbb\xf8\x34\ \xf4\x6a\x23\x39\xf5\x4a\xa5\x77\x06\x60\x06\x3e\x38\xaf\x0a\xa6\ \x54\x2b\xdd\xd1\x5d\x8c\xff\xbb\xba\x71\x9f\xe2\x2f\x30\xeb\xdb\ \xb1\x5f\x09\x00\x4c\x86\x34\x38\x0d\x3c\x5b\xa0\xed\x2a\xe8\x5b\ \xa9\xb2\x4b\x50\xb9\x22\x25\x32\xa8\x13\x30\xdb\x69\xbe\x5a\xf8\ \x2e\xc3\xbe\x39\xbb\x61\x97\xe2\x38\x0d\xd8\x37\x11\x92\xc6\x9a\ \xba\x2d\x2c\x2f\xba\xbc\x50\x18\x4b\xc0\x06\x40\x83\x92\x32\xae\ \x1b\x4c\xc6\x71\x58\xfd\x23\x1e\x06\x33\xfa\x3d\x64\x91\x34\x1e\ \x63\x47\x11\xf1\xf8\x1a\xe2\xd6\x0a\x09\xb0\xcf\x71\x7e\x19\x2a\ \x31\x01\x22\x18\x13\x83\x28\xaf\x33\xdf\x42\x65\xc4\xd0\x0f\xe9\ \x2c\x25\x87\x6b\x69\xdc\x63\x8c\xe6\x69\xb3\x10\x61\x58\xca\x52\ \x69\x5d\xfd\x25\xff\x6b\x46\x86\x27\x51\x21\x66\x11\xbe\x04\x34\ \x5f\x07\xde\x4f\x54\x4a\xe6\x13\xb1\xcc\x52\x4d\xf8\x80\xbf\x02\ \x58\x94\x0f\xa9\xf7\x81\x6e\x5b\xa0\x08\x23\x6e\x29\xee\x34\x4a\ \xe0\xe4\x71\xe5\x91\x9a\x67\x1a\x4f\xd3\xd2\x0a\x06\x6e\x89\x99\ \x9e\xf1\xe1\x96\x89\x61\xb4\xfd\x9e\x3a\xe8\x9c\xf6\xad\x43\x82\ \xf5\x65\xf3\x42\x94\xbd\x12\x95\x5d\xdd\x0c\x87\x2c\x96\xd1\x36\ \x94\x5e\xf8\x9b\x7c\x04\xcc\x22\x3e\xa8\x13\x93\xc3\x94\xe0\x55\ \xae\xd1\xf4\xb8\x94\x4b\x40\x30\xd3\x1a\xc2\xf3\x54\x5b\x14\x7a\ \x66\x9a\x87\x6f\xaa\x21\x89\x0e\x73\xbc\x75\x5b\xfd\x64\x6e\xce\ \xd3\x63\x57\xab\xa0\xc5\xac\x95\xff\x69\x31\xb5\x56\x5e\x00\xec\ \xab\xe3\x15\x46\xc4\xf0\x30\x7c\xf9\xea\x89\xcc\x1f\xee\xd9\x46\ \x57\xc5\xc1\x87\x2c\xc8\x78\xac\x96\xdb\xab\x36\x60\xe1\x54\x8a\ \x29\xa2\x1f\xdf\xb0\x27\xd5\x41\x78\x09\x07\xa9\xc5\x77\x7e\x84\ \x31\x80\x8e\x56\x3b\x53\x03\xdd\x3c\xee\x42\x68\xda\x03\xa3\x25\ \xe4\x75\x0d\x31\xb2\xfa\xe0\x5c\x48\x7a\x8c\xfc\xda\x52\xf0\x83\ \x40\x57\x5d\xed\xcc\xa1\x1d\xc9\xe3\x34\x71\x87\x8b\x3e\xf6\x10\ \xf5\x53\x17\x3b\x67\x21\x2a\x29\xe5\x38\xe2\xbd\xd7\x5b\x85\x9e\ \x04\x50\xcc\x6e\x74\xbd\xe8\xb1\xf4\xcf\x31\x1f\x5b\xd6\x41\xc5\ \x66\xc3\x6a\x69\xa1\x19\x97\xc2\xcb\x02\x67\x0c\x24\xf3\x45\x5d\ \x4f\xb7\xaf\x3c\xa0\x3c\x45\x03\xb5\xc6\x42\xa9\x8c\x5d\x8e\x5b\ \x8e\xd9\x6a\xcf\x7c\xf4\xf5\x55\x54\x3c\x38\x8d\xc7\x61\x7d\xc5\ \x39\xd0\xf2\x6c\xea\xb3\x33\xac\xde\x60\x69\xd9\x7c\x86\x23\x2c\ \x7c\x35\x5a\x39\x38\xd5\x60\xd3\x8c\xfd\x7c\x56\xac\x3d\x36\x75\ \xb9\x92\x47\x86\x2e\x56\xc0\x5b\x36\x2f\x25\x58\xe1\xb6\x2c\x25\ \x0e\x79\xce\x0b\xcd\x90\x54\xc5\x07\x67\x76\xae\xc4\x2a\xd1\xaf\ \x08\x46\x57\x01\xeb\x53\x45\xb9\x00\xd9\x93\x74\xce\x70\xa2\x9e\ \x75\x66\x21\xa3\x7c\x62\x9f\xc0\x1e\x9c\x68\xa1\x62\xd5\x45\x6a\ \x22\x8a\x7f\x48\x1e\xfa\xb7\xd4\x9b\x09\xb9\x4d\x4f\x60\xc4\xf7\ \x64\xce\x7a\x2d\xca\x06\xa7\xba\x48\xfb\x59\x6e\x4b\x0a\x64\x26\ \x12\x7a\xbd\x69\x16\x84\xfb\x72\x09\x49\xf8\x9c\x50\x92\xde\xb8\ \xa4\x22\x5b\x95\xc2\x86\x2a\x45\xd1\x2a\xe9\xb6\x78\xae\x92\x48\ \x8e\x59\x2e\xb4\x58\x77\x79\x82\xe1\x72\x15\x35\x6f\x63\x1e\x79\ \x04\x84\x31\xad\xa7\xdc\xa9\xd7\x43\x7a\xa1\xd1\x00\x99\xe8\x98\ \xdf\x46\x4a\xb4\x17\xc9\x46\x91\xe1\x8e\x4b\x97\x31\x66\xab\x6b\ \xb7\x74\x2a\x98\x24\x95\x19\x15\xc5\x15\x6d\x46\x57\xda\xd0\x69\ \x00\x0c\x01\x61\x46\x80\x2d\x97\x41\xfa\x83\xe0\x99\x8d\x7c\x68\ \x2e\x49\xea\xb3\x12\x22\x73\xac\x69\x00\xa3\x80\x5e\xd6\x3e\xf3\ \x06\x09\x09\x26\x61\xb9\x17\x57\xf2\x01\xf1\xd5\x58\xf2\x6a\xc8\ \xee\xf5\x2c\x03\x53\xc4\x63\x1e\x79\x4f\x80\xa3\x25\xe9\x4f\xa6\ \x68\x7b\x14\x72\x91\xd7\xe7\xe6\x86\x1e\xd1\x48\xb5\x10\x9a\x7c\ \x1d\x5e\xe4\xc0\x3c\xd0\x8b\x87\x64\x5c\x8d\xa6\x34\x71\xfa\x49\ \x30\x1a\xd8\x89\xc9\xb6\x02\x95\x72\x23\xb0\x03\x6c\x9c\x93\x4a\ \xa6\x91\xc8\x4a\x18\x64\xb1\x9c\xc4\x8f\x70\x63\x9a\x84\x3a\x61\ \x81\x5b\x2c\x08\xd3\x43\x5b\x5d\x67\x62\xfb\x07\x57\x8a\x60\x14\ \x40\x9a\x51\xa4\xc6\xde\x76\x3e\xac\xa7\x90\x76\x92\xab\x42\x5a\ \x00\x21\x05\x00\x76\x0d\x4e\xac\x32\x01\xe6\x1e\x6d\x56\x29\xbb\ \xf3\xd1\xea\xb1\xe6\x62\xcc\x9b\x65\xa6\x3d\xaf\xd2\x66\x46\xb2\ \xae\x46\xad\x15\xe3\x04\x8e\xc1\x1b\xca\x3e\xcb\xc3\xba\x9c\x81\ \x90\xe3\xa9\x88\x21\xeb\x18\x29\x6d\x83\xa4\xe4\xe9\xa1\x1d\x59\ \x5d\xf3\x7c\xa8\x19\x00\x09\x07\x7a\xcd\xe3\x1b\x11\x1f\x18\x34\ \xce\xc1\x71\xfd\x12\x7e\x8a\xf0\xe3\x49\x03\x1f\x8e\xd3\x98\x06\ \xa0\x4e\x09\x64\xf4\x37\x09\x8b\x73\xec\xd7\x67\xee\xa1\xb2\x90\ \x54\xaa\x5c\x3e\xe9\xdc\x43\xf3\xc4\xce\xaa\x45\x0e\xc6\xd1\x1f\ \x4e\x44\x90\x59\x3f\x67\xa8\xed\x7a\xf4\xad\x2b\xcb\xab\x33\x27\ \x57\x34\x98\xcc\x5b\xd4\x07\x51\xe4\x83\x49\x0a\x08\xaa\xa7\x41\ \x54\x9e\x14\x8b\xf1\xcf\xaa\x72\x95\xf6\x36\x7e\xf1\xd3\xdf\x3d\ \x8b\xaa\xca\x73\x2d\xae\x3e\xa6\xa8\x16\x3c\xc3\xaa\x78\x3d\x28\ \x9d\x89\xac\x92\x60\x69\xa2\x36\x58\x12\x58\x13\x6e\xed\x08\xdf\ \xce\x20\xce\x84\x4f\x99\x4b\x26\xcc\xd6\xfc\x32\x61\x2b\x75\x40\ \x8a\x28\x1d\xb4\x8a\x8e\xc9\xd5\x77\x90\xe6\x52\x08\x73\x93\xb8\ \x0a\xb8\x9e\xac\xc6\x47\x7e\xba\x03\x9c\xe1\x40\x7e\x28\x57\xe2\ \x4c\x14\xc4\x15\x28\xd9\x42\x59\xdd\xda\x65\xee\x5d\xac\xfc\x4e\ \x10\x0c\x3a\x44\x44\x3a\x2f\xaa\x34\x58\xc9\x19\x4a\xcc\x1f\x5b\ \xea\x1a\x00\x8d\x5d\x4b\x80\xdc\x33\xe5\x80\xd3\x0f\x3b\xb0\x38\ \x19\xcd\x5d\x46\xae\xe3\x74\x7b\x3e\xbc\x25\xe9\x20\xe3\x7c\xe6\ \x21\x30\x2f\x67\xfb\xf5\xea\xe6\xe9\x32\x87\x88\x9c\x5c\x82\x26\ \x34\x66\x5f\x34\x31\x70\xe9\xd6\x00\xad\xc3\xf1\xe4\x78\x0a\xcf\ \xfb\x30\x37\x09\xbe\x4e\xa9\x9f\x55\x5e\x8f\x20\x88\x6b\xe0\xe0\ \x73\x9b\xd9\x2b\x11\xaa\xbb\x13\xcb\xf5\xff\x3e\xa7\x38\x53\x40\ \xd4\xc2\x29\x00\x90\x99\xc9\xb1\x67\x2d\x23\x5a\x8d\x62\x06\xcf\ \xe2\x10\x6b\x43\xdf\x54\x29\x52\x46\x89\x27\xa9\x34\x66\xca\x15\ \x2c\xb5\x6c\x56\xea\x74\xe2\xd2\x94\x8f\xd4\xcb\xa1\xf9\x97\x1c\ \x2c\x0b\x91\x90\x03\x32\xda\x28\x3a\xa4\xfa\x90\xe7\x7f\xe1\x09\ \x44\xcf\x41\x76\xee\x1f\xaf\xbf\x51\x77\x55\xa1\xe3\xe2\x2f\xfe\ \xd3\xe1\x85\x8f\x41\xda\xd4\x06\x16\x34\x25\x55\x79\x23\x4c\x1c\ \x4b\xc4\xa3\xce\x3c\x6e\x48\xb8\x10\x18\x93\xd6\x5b\xa7\xc4\x92\ \x07\xb6\xb8\xc1\x6a\x33\x3f\x0e\xd4\x99\xa8\x87\x91\xd7\x68\x22\ \x2d\x44\xb5\xe9\x84\x48\xa5\x73\xc5\x45\x32\x98\x95\xc0\x70\x9b\ \xb7\x9c\x4f\x9e\x43\x20\x38\xd7\x62\x74\x7d\xe3\x32\x92\xe3\xf9\ \xa8\x4e\x1b\x16\xea\x67\x2f\x3b\xd0\x31\x1d\x99\x0e\xfc\x58\x3a\ \x74\x1d\x01\xc2\x31\x87\x54\x96\xd9\x14\x34\xae\x06\xe9\x1a\x30\ \x0e\x12\x58\x8e\x05\xdc\xe5\xc9\x1e\x76\xb9\x1e\xb2\x37\x18\x68\ \xe4\xf5\x9c\x19\x86\xd6\xff\xdf\x1b\x7e\x0c\x42\x3d\xeb\x8d\x91\ \x24\xc5\x22\xd2\x1c\x36\xa4\xa4\xe5\xf6\xe1\x55\x77\x24\x22\xbd\ \xf7\x09\x6e\x3d\xfc\xd6\x49\x85\x5e\xcd\xb1\xcb\xd7\xe0\x18\x16\ \x25\x9e\x21\xf1\x23\x2b\x06\x74\x1d\xc2\xc8\x8b\x5a\x68\x7c\x22\ \x35\x52\xaf\xfd\x3e\x38\x7c\x07\x6e\x5e\xca\x63\x21\x18\x2c\x96\ \xa9\xbe\x5c\xba\x63\xea\x5a\x1e\x2d\x9e\x9b\xc1\x98\xcd\x47\x29\ \x33\xa5\x5f\x01\x63\xe6\x19\x43\x1b\x67\xcf\x02\x79\x98\x2d\x36\ \x78\x89\x2c\xaa\xf4\x9d\x14\x9d\xa3\xb0\x02\x31\xdd\x2e\xa2\x0d\ \x8f\x98\x47\x1f\x01\x1d\xb2\x0a\x83\x23\x90\x6b\xa2\x85\x31\xc4\ \x5a\x72\x98\x14\xcd\x71\x2b\x2a\xb6\x73\x3e\x85\x55\x19\x90\x31\ \xe3\x2e\xfc\x59\x55\x20\x58\x60\xf6\x84\x55\xb7\x36\x0f\x9f\x84\ \x78\xf1\xd1\x32\x39\x7e\xcd\x72\xbf\x3c\xcd\xd1\x3c\xe6\xb8\x50\ \xdd\x71\xa1\xc9\x00\x2d\xae\xd2\x6f\xb8\x7c\x53\xd6\x9d\xa9\x8a\ \xcc\x2b\x93\x80\xbe\xf9\xf7\x11\x3d\x1b\x4e\x78\x35\x10\xbf\x72\ \x71\x8f\x3f\x1c\x15\xe3\xf5\x80\x0e\xd7\x9e\x24\x66\x6e\x22\xec\ \x3d\x97\xf4\x41\x41\x8c\xeb\x23\xd6\xff\xbe\x08\x31\x9e\x4b\xab\ \x1a\x75\x0e\x01\xe8\xbd\x87\xe4\x61\xb4\x37\xf5\xd7\xcb\x74\x79\ \x5c\x14\x30\x06\x64\xaf\x4a\x0c\xe4\x59\x14\x79\xdf\xcb\x5c\xca\ \x63\xf9\x79\xd0\xb9\xc6\xbc\xcd\x33\x98\x2e\x5c\xf8\x11\xe0\x1a\ \x45\x48\x66\x95\x51\x58\xb7\x81\x00\x40\x2f\x1f\xba\x6a\x33\x33\ \x77\x5b\xea\x01\x76\x33\x16\x49\x72\x74\xae\xa4\x7c\x25\x84\xad\ \xae\x60\xcc\xab\x6f\xb2\x4e\x07\x86\xaf\x7e\xbb\x66\x16\x5c\x66\ \xd8\x05\x8f\x97\x30\x9c\x20\x42\xe3\x59\x3e\x8a\x92\x2a\x6e\x29\ \x43\xcc\x23\x4c\x37\xdb\xbf\x80\x2d\x4a\xfc\x68\x9f\x9a\xff\x20\ \x5e\x71\xe8\xf7\x22\xbd\x37\x2e\x71\x2d\xe6\x30\x65\x02\xc1\x2a\ \xdc\xf6\x45\x3c\x26\x47\x10\xfe\xa1\xa9\xf3\x61\xa8\xa0\xcc\x7c\ \x5f\x04\xcd\xd7\x17\xad\xbb\xe5\xe2\xf0\xa0\xe2\xe4\x99\x05\xbc\ \x94\xe1\x57\x0a\xb7\xa9\x58\xc5\xb0\x64\xaf\x0d\x33\x31\x71\x14\ \x47\xcb\x21\x49\x6b\x4b\x43\xcf\x05\xe2\x5e\xfd\xa2\xab\xb4\x0f\ \x5e\xa8\x6d\xcb\xab\xd5\xf5\x24\x1c\x6f\xb5\xa5\xf9\xcc\xe1\x2a\ \x6c\x73\x8c\xd8\x7b\x8f\x3f\x1a\xa5\x1a\x80\xab\x8d\xf2\x55\xe4\ \x60\x39\x55\xbc\xac\x5d\x18\xa9\x52\x21\x60\x98\x58\xaf\x85\x92\ \x2d\xb3\xd4\x9b\x32\x2f\x38\x54\x35\x57\x6f\x39\x51\x4a\x6e\xae\ \x8c\x31\x34\x4b\xd1\x26\xd2\x3c\x47\xf0\xc6\xe3\x97\x67\xd4\xa3\ \x64\x6e\xa9\x07\x6c\x3d\x15\x7d\x75\xc8\x99\xf5\x04\x5f\xf0\xb4\ \x13\x8b\xea\x32\x3a\x9b\x41\xaa\x4f\xd2\x88\xe6\x14\x23\x8e\x17\ \x16\x61\x48\x6b\x9a\x93\x09\x48\xae\xe4\x58\x89\xb0\xa9\xc0\x6d\ \xdb\x36\xa7\x08\x2f\x41\x76\x1c\x05\x2e\xab\x8e\xc8\x97\x87\x22\ \x07\x10\x2b\x9e\xb9\x51\x2a\x2a\x09\x91\x21\x71\xcc\xe9\x64\x16\ \x90\xb0\x38\x85\xc0\x30\xa6\x33\x1a\x46\x8b\xf4\x63\x12\x11\xdc\ \xdc\xf6\xcb\xc5\xe6\xee\x9f\x53\x5d\xfe\xac\xc6\xac\x1e\xeb\x57\ \xf1\xe5\xcf\x36\x09\x4f\xe0\xfc\x73\x96\x1d\x72\xa9\xbc\x0b\x82\ \xb0\x15\xab\x7c\x9f\x10\x8f\x2b\x76\x9c\x88\x64\x83\x30\xeb\xa4\ \xd5\xa6\x4a\x01\xe9\x74\x18\x13\x8b\xe8\xc4\x12\x1d\xa6\x66\xd7\ \x67\xce\xda\x13\xad\x39\x1a\x6b\x73\xe1\xc3\xaa\x98\xaf\xdf\x51\ \x52\x15\x49\xe7\x92\x33\x4b\x8b\x81\xa3\x28\x6b\x1e\xa6\x57\x81\ \x3b\x38\x0a\xc2\x7d\x8d\x88\x0a\xe0\xcc\x2a\x25\x1a\xe1\x36\x22\ \x34\x80\x63\x80\x67\x14\x42\xc9\x10\x72\x24\x9e\x2a\xfa\x81\x95\ \x4d\xf9\x58\x7c\x6a\x33\xe8\x64\x7a\xe6\xc9\x09\xec\x71\xa0\x10\ \xe6\x1d\x52\xd0\xa7\x05\x8e\x1a\xf9\x06\xa9\x45\xcd\x9d\x92\x68\ \x74\xc6\xec\xa3\xf4\xe2\xa2\x93\x83\xfd\xca\x3d\xb2\xd0\xf6\xaf\ \x4a\xe7\xb1\x41\x8b\x7b\x49\x40\x4c\x4e\x5b\xdb\x6e\x5f\xdc\x8d\ \xeb\x4a\x43\xf2\x2b\x42\x65\xe6\x6e\xcc\x6d\x3b\x71\x45\x05\x67\ \xda\x06\x00\x32\x95\x16\x78\x2d\x65\x52\x65\x66\xcd\x0f\x5e\x98\ \x2c\xdc\xda\x24\x22\x4d\x14\x29\x5d\x49\x09\x52\x70\x7b\xc4\x23\ \xea\x99\x84\x27\xec\x30\x65\xf3\x83\x26\x24\xdc\xcd\x2e\x97\x7d\ \x31\x2a\xd3\x74\x6d\x3c\xf3\x78\xa6\xa7\x42\xe9\x51\x7d\x3c\xdb\ \x5e\x8f\x49\x4f\x26\x0b\x1e\x3e\x4c\x5a\x42\x06\x79\x6c\xec\xe9\ \x69\xf1\x39\xa7\x02\x2b\x28\xab\x80\xd9\xd3\x41\x5f\x00\xe7\x34\ \x84\x1f\xc4\xda\x35\x5b\x97\x31\xb6\x7e\xf2\x36\x97\x44\x3d\x9a\ \x12\x0a\x29\xbe\xe4\x7c\xbd\xf5\x8f\x6e\x86\x2a\xb6\x9b\x59\x4f\ \xd8\xe8\x51\x88\xb0\x4e\x21\x56\x0d\xc5\x32\x2b\x8b\xb9\x55\xcc\ \x48\xd6\x5d\x32\x07\x23\x60\x1a\x99\x8a\x17\xb0\x04\x79\x20\x8a\ \x0f\xb8\x5d\x4b\xd3\x41\x0e\x37\x77\x5d\x95\x83\x5e\x11\x4b\x4b\ \x38\x41\x9c\x30\xa1\xe4\x1b\x8a\xfd\xcc\xb4\x85\x30\x19\xc6\x3e\ \x72\x52\x2c\x16\x73\xf4\x78\xf8\xf8\x10\xaf\xae\xd9\x0c\xa3\xc9\ \xa2\x27\x7e\x81\xec\x8e\x8a\xe3\x1a\x09\xbe\x46\x60\x11\xd9\xf7\ \x3d\x06\xbf\x56\x71\x9c\xc4\xdc\x44\x36\x95\x9d\x68\xef\x3d\x1e\ \xb3\xdb\xa9\x39\x40\x8e\x6d\x6b\x04\xdc\xef\x8f\xb9\xb8\x2c\xae\ \xb7\x88\x7a\x8c\x06\x22\xc0\x49\xf3\x1c\x21\x47\xd3\x54\xfb\x0e\ \xab\xb7\x54\xd6\x46\xc4\x50\xa4\xba\x31\xbf\xf6\xa4\x4e\x8b\x50\ \xd3\x16\x21\x60\xe5\xc2\xe2\x55\x08\xf3\x5c\xea\xe5\x01\x4d\xf8\ \xf4\x31\x7a\x35\xa1\x5a\x43\xc8\x32\x0e\x60\x94\x50\x55\x90\x2d\ \x9a\x24\x5a\x1e\x4c\xb3\x9c\x59\x73\x32\x58\x24\xd1\xcd\xa5\xe5\ \xc3\x24\x98\x02\x24\xa0\x7a\xa7\x10\xe6\xab\xb9\x14\x2d\x59\x04\ \x58\xbd\x1e\x7c\xc0\x9d\x63\x61\xcb\x80\x8b\x22\x7b\xb5\x43\xc5\ \xa2\x23\x26\x46\x9b\xad\xc3\x32\x60\x8d\x8d\xcf\xd0\x1d\xad\x63\ \xca\x78\xde\xe4\xff\x5d\x1a\xb5\xe5\x43\xcc\x17\x5d\xe9\x94\xe5\ \x76\x5a\xd2\xae\x13\x17\x86\x49\x35\x8a\xba\xb9\xb6\x74\x23\xde\ \x74\x9e\x07\xf1\x91\x49\x05\x43\x0c\x85\xeb\x60\xb3\x53\xd1\xdd\ \x93\x05\x84\x15\x5d\x99\x86\xc1\x0a\xcb\x9e\x23\xaf\x4a\xd5\xe3\ \x25\x40\x7d\x75\x47\xf2\x61\x7b\xb2\xbe\x55\x9a\x72\xb7\x18\x43\ \xf4\xbe\x3f\x3c\x3c\xf6\xde\x6f\x6e\x4e\x2f\x5e\xdc\xa8\x6e\x5b\ \x6b\xb7\xb7\x2f\x9a\xe8\x97\x5f\x7e\x71\x3e\x3f\x6c\xdb\x76\x7b\ \x77\x7b\xf7\xf2\xe5\xcd\xab\x97\x2f\x5e\xdf\x11\xe4\xf1\xdd\xfb\ \xaf\x3e\xff\xa2\xef\x97\x1f\xfc\xf0\x9f\x4b\xe1\x11\x1e\x1e\x1e\ \x1e\x1f\x1f\x2e\x97\x7e\x3e\x5f\x88\xa8\xb5\x26\xcc\xbd\x7b\x87\ \x87\xd1\xbd\xf7\xee\x40\x64\xaf\xc6\x60\xa0\x89\x66\xce\x1f\x13\ \x13\xb7\x4d\x5a\x53\x0d\x74\x8d\x88\x0a\x9b\x9b\xf5\xbe\x77\x33\ \x73\xe5\xac\xa4\x87\x8a\xe4\x2a\xd7\x72\x75\x68\x5e\x15\x3c\xc7\ \xe6\xe7\x1a\x52\x73\x60\x6c\x96\xbc\x4f\x67\x36\x7d\x51\xcb\xe0\ \xb9\xa5\x1e\x32\xc7\x9a\xc7\x5c\xef\x55\xe6\x46\x73\x09\xa5\x29\ \x22\x1d\xa1\xcf\xb1\xf5\x41\xdb\x7d\x9d\xe0\xf9\x94\xd8\xf6\xdc\ \x19\xcb\xc3\x61\xb9\x8c\xb3\xd9\xa7\xbe\x4d\x4a\x11\xc8\x2d\x9a\ \x23\x0b\xa2\x17\x66\xa2\x00\x16\x60\xd5\x8a\x83\xe6\xc3\xc7\x37\ \x5e\xc1\xa1\xf2\x8f\x71\x02\x96\xd0\x5d\xe5\xc2\xe6\x0f\x36\xdf\ \x01\x62\x46\x2c\x95\x21\x3d\x58\xa9\xc0\xb1\xa8\x5d\x0e\xe2\xc5\ \x40\x86\x5c\x2f\x92\x10\x4b\x4c\xd4\x22\x9c\x83\x26\x27\xa4\x4c\ \x5e\x9e\x71\x1c\x85\x35\xa8\x91\x3c\x8d\x54\xfa\xc1\x3b\x8a\xac\ \x2c\x29\xc8\xc0\x74\x17\xcf\x19\xc9\x3a\x39\xc5\x70\x2c\xdf\xdc\ \xdc\x7c\xfa\xe9\xb7\x3f\xf9\xe4\xa3\xd7\x2f\x5f\xbe\x7a\x75\xf7\ \xe9\xa7\xdf\xfe\xe4\x93\x8f\xff\xe3\x7f\xf8\x0f\x3f\xff\xe9\x4f\ \xff\xc5\xbf\xfc\xab\xbf\xf9\xeb\xbf\xfe\xec\xfb\xdf\x6b\xaf\x5e\ \xb2\xc8\xe3\xe3\xf9\x8f\xff\xf8\xdb\xff\xfb\xfd\xc3\x7b\xc7\x27\ \x1f\x7d\x2c\x22\xe6\xfd\x72\xb9\x84\x5f\x18\xf4\x70\xe9\x4e\x44\ \x6d\x3b\x45\x86\x6e\xee\xe2\x91\x79\x1a\xda\xb6\xb6\x35\x9e\x06\ \x4f\x62\x31\xce\xb8\x46\x76\x0c\x62\x1b\x23\xe0\x74\xba\xa1\x72\ \xa9\xb9\xe6\x93\x22\x28\x1a\xd8\x75\x96\xd8\xf8\x9a\xd6\x06\xe0\ \xa9\x3e\xed\x68\x78\xaf\x29\x3d\x1f\xfc\xb3\x8c\xb9\x8b\x9b\x6e\ \x0c\x60\x05\xb7\xaf\x14\xc8\xd6\xb4\xf7\x91\xd9\x16\xfc\xc7\x48\ \x24\xc1\xdc\x7b\x0c\x31\xff\x22\xb9\x59\x11\xa1\x57\xc9\xb3\xcf\ \x8e\xce\xd6\x05\x28\x0d\x5f\xe6\xba\xb7\xa5\x03\xe8\x7d\xa4\x40\ \x34\x65\x71\xeb\x2c\x62\x56\x31\x40\x45\x19\x0d\x39\xd9\x50\x70\ \xd5\x86\x5e\x32\x2b\x2a\x25\x8e\x23\x48\x68\x21\x23\xf2\x61\xf2\ \x30\xd9\xb8\x0b\xb1\x70\x4a\xea\x68\xe0\x78\x52\x8a\x18\xf7\x96\ \x89\x28\x87\x76\x0f\xac\x04\x58\xcc\xa5\x40\xd2\xea\xb9\x13\x1b\ \x77\x95\x08\xd3\xc4\xd4\x70\x25\x66\x23\x41\x1c\x5e\xb5\x1a\x3b\ \x40\x26\xcc\x24\x28\xfd\x01\x07\xb2\x39\xa2\x6d\xe2\x0c\xe4\x43\ \x2b\x39\xdd\xf7\x4d\x24\x5a\xb2\x4d\xc5\x17\x01\x40\xb8\x98\x2f\ \x66\xb7\x2a\x30\xb3\x7d\xbf\xdc\xdf\xe3\x66\x13\x7f\x71\x52\x7e\ \xf9\xe2\xf4\xf2\xf6\x46\x99\xcc\x3a\xc1\x6f\xb6\xed\x86\x05\x66\ \xfd\xf1\xf1\x72\xff\xfe\xf1\xf1\xde\x7d\x7f\xf3\xe6\xab\xcb\xf9\ \xe1\xf1\x72\xee\xbd\x5b\x37\xb3\x7e\xe9\xe6\xa0\x6d\x3b\x01\x7d\ \xbf\x18\x60\xe5\x93\x4a\x25\xf0\xde\x9d\xd8\xdb\x38\x3c\x45\x1c\ \x9d\x59\x82\xbd\x62\x0e\x03\x75\x80\x2d\xbc\x80\x38\xe9\xa0\x27\ \x0f\xaa\xee\x62\x85\x38\x56\xa1\xb9\x62\x61\x3f\x3e\xa1\x6d\xe9\ \x0a\x64\x3c\xd5\x02\x24\xc3\x6c\x52\x48\xbf\x91\xb9\x24\x29\x06\ \x2a\xb5\x4a\xdc\xc1\xf1\x14\x95\xd8\x50\xf9\xb2\xb7\x4b\x64\x6a\ \x26\x18\xd4\xc8\xb4\xca\xe9\xf4\x97\x05\x5e\x79\x49\x82\x4d\xbc\ \xf6\x9a\x62\x3b\x98\xd9\x4f\xcf\x96\x6f\x9a\x6c\xc5\x52\x24\x66\ \x35\x58\x52\x23\x86\xcc\xaf\x1a\x33\x09\x04\x47\xfa\x52\x90\x46\ \x7d\x1e\x5e\x5b\x54\x2e\x87\x72\x6e\x3f\x51\x42\x5d\x1c\x1c\xe1\ \x3c\x44\x5f\xe5\x69\xf1\x2b\xf7\x9c\x47\x9b\x98\xfb\x47\x98\x19\ \xd7\x7a\x23\x1d\x62\xe1\xf1\xe1\xd1\xf7\xc8\x58\xaf\xc4\x39\x88\ \x8a\x3a\x14\x36\x50\x84\x69\x46\xd3\x63\xee\xce\x6e\x41\x5c\x51\ \xba\x5a\x60\x1c\x05\xfc\x3c\xf4\xb3\xc3\xa3\x59\x98\x4c\x21\x77\ \x64\x24\xc8\xd8\x91\x8d\xfb\x30\xe6\x05\xee\x04\xd2\x08\xf5\x88\ \x0c\x50\x51\x16\x01\x88\xbd\x37\xd9\x1a\xcb\xde\xfb\xe3\xfb\x0f\ \x0d\xf6\x41\xf9\xee\x74\x3a\xe9\xa6\x24\x02\xbe\xd9\x6e\xfe\xf8\ \x9b\xdf\x7d\xf8\xea\xeb\xdf\xfe\xfa\xb7\xaf\x5f\xbd\x7a\x71\x7b\ \x2b\x2a\xef\xde\xbc\x73\xf3\xef\x7d\xf6\xbd\x7f\xf3\x6f\xfe\xf5\ \x97\x7f\xfe\xf2\x8b\xaf\xbe\x78\x7c\x3c\x9f\x1f\xcf\xe7\xcb\xf9\ \xe1\xe1\x71\xef\xf6\xed\x4f\x3f\x7d\x79\x7b\xfb\xe1\xfe\xc3\x7e\ \xb9\xb8\x75\x37\x77\xef\xee\x20\xd6\xd3\xe9\xa6\xa9\x3a\x8c\xdc\ \x85\xb7\x8b\x59\x8e\xb5\x09\xc2\x8a\xba\xea\x95\x20\xca\x8c\x98\ \x08\x17\x32\x21\x08\x14\x72\xb8\x6e\xd6\xc2\x46\x64\xda\xb0\x17\ \x55\xd1\x7c\x36\x31\xaf\xb9\x1d\xc3\xe5\xc3\xbc\xe0\xd5\x16\x99\ \x6b\x09\x60\xa7\xfa\x66\x51\xcc\x3a\x8e\x68\xb7\x41\xbb\x27\x15\ \xd9\xeb\xf6\x08\x6f\x09\x83\x24\xd5\xbb\xc7\xc5\x3f\xe4\x20\x08\ \x5e\x41\x71\x4f\x7c\x87\x87\xaa\x72\xfc\x4b\x61\x76\x89\x84\xf5\ \x25\x50\x75\x2a\xa3\x03\x1a\x49\x6c\x20\x34\x37\x6b\x8d\x33\x3f\ \x00\x4e\x63\x5d\xb2\xd2\x4e\x8f\xeb\x30\xf8\x55\x07\xe9\x6b\x24\ \x4e\x78\x80\x57\x48\xc0\xa8\x69\xc6\x5f\x0a\x3f\x66\x35\xf1\x96\ \xcf\x26\x08\xbb\xc1\xc9\x35\x73\x61\x78\x4c\x66\x72\xbd\xcd\x41\ \xbb\x65\xf1\x72\xa6\x45\x3c\x77\x94\x54\x46\x60\xa2\xb6\x8c\x8c\ \x57\xe5\x08\xf1\x41\x8c\x09\xf0\x48\x92\xce\xc5\xcf\xd3\x38\x00\ \x5a\x3f\x71\xa0\x5f\x76\x15\x65\x55\x38\xa2\x51\x30\xeb\x44\xcc\ \xa4\x6e\xb6\xeb\x19\x0f\x97\x6e\xfd\x3d\xcb\x9b\xa6\x7f\xda\xfe\ \xf8\xeb\xd3\xaf\xff\xf3\xff\xf3\x5f\x54\xf4\xdd\xdb\x77\xef\x3f\ \xbc\xef\xdd\x36\xfd\xe3\x3f\xfe\xf2\x9f\x22\x8c\x84\x85\xcc\xfd\ \xe1\xe1\xf1\x0f\xff\xf4\xbb\x5f\xfd\xec\x97\xfb\x65\xef\xd6\xfb\ \x65\xef\x6e\x2a\xea\x40\x37\xfb\xf0\xf6\xeb\x97\x2f\x5f\xf6\x73\ \xff\xf0\xf8\xe1\xe1\xfe\xa1\x9b\x99\xf5\x98\xb0\x9c\xb6\x8d\xc1\ \xe6\x66\xb6\x8b\xf0\xdf\xfd\xfd\xdf\x1b\xf1\xb9\x5f\x92\xda\x4e\ \x64\x71\x9f\x17\x69\x53\x25\x9a\xbe\xd1\x7f\xa4\xea\xe3\xd9\x7e\ \xc0\xdd\x55\x84\x85\x9f\xce\xb8\xae\x1a\xa1\x59\xc2\x1d\xc1\x03\ \xbc\x8a\xc7\x47\x7c\x6e\x44\xcc\x17\x42\x9b\x8e\xc1\x33\x73\x0a\ \x3c\xd4\xf4\x32\x42\xaa\xf2\xae\x79\xb2\x1e\x7f\xde\xd7\x70\xd5\ \x7f\x5d\x55\x6e\x57\xb8\xf7\xe1\xa3\xe6\x80\x8f\x3d\x57\xce\x5d\ \x2d\x5a\x1a\xa7\x97\xd5\xc6\x50\x30\x49\x06\x33\xa4\x9b\xd6\x80\ \xe8\xa0\x4b\x4f\xef\x2b\x8f\x01\xdf\x0c\xc3\x79\xfa\x71\xd4\xb3\ \x6b\x2e\xd4\x16\x61\x4e\x6a\x8e\x84\x63\x30\xec\xcb\xc7\x5d\x5b\ \xa8\x0a\x46\x19\x9d\x49\x9c\xa5\xb1\x12\x89\xab\x7e\x80\x88\x9e\ \xad\x65\xa7\xdb\x32\x67\x9a\x28\x01\x67\x1e\x68\x82\xe7\xf6\x76\ \x83\x87\xc6\xa4\xac\x2e\xd0\x38\xf2\x40\xfb\xc3\xfe\xd3\x9f\xfe\ \xe4\xab\xaf\xbe\xe2\x9c\x8d\xb0\x19\x4e\x4d\x45\x74\x6b\x02\x33\ \x1e\xb9\xbe\x91\xc6\x6e\x60\x42\x37\x2f\x65\x1d\x99\x5b\xec\x1c\ \x08\xd4\xad\x33\xb1\x93\xbb\x79\xb7\x9e\xca\x62\x61\x0f\x7f\x8f\ \x19\x39\xc9\xa6\x66\x9e\xb4\xef\x98\x8e\x10\xb3\xc0\xc9\xb5\xc9\ \x5f\xfe\xe8\x47\x1f\x7f\xf2\xb1\xf5\xce\xaa\xcc\xe2\x88\x5c\x52\ \x11\x4e\x5e\x9d\x66\x00\x83\x57\xb0\xd8\xc0\x46\xe4\xce\x60\xc1\ \x15\x72\x91\xd3\xae\x0c\x36\xdf\x84\x78\xe6\x2b\xd6\x8a\x1c\xf4\ \x7c\x53\x0a\x57\x7d\xa4\x63\x96\xeb\x23\x22\x74\x3a\x76\x62\x70\ \xcf\x66\xe3\x34\x4b\x9a\xab\x83\xbe\x21\x02\x9a\x78\x44\xd2\x5d\ \x23\x0e\xa7\x89\x6d\xaa\xa3\x9e\x19\x1b\x3c\xbd\xf3\x8e\xdb\x5b\ \x8f\x1c\xf8\x98\x48\xb5\x01\xec\xd0\x31\xd3\xf4\x9c\xe7\x8d\xab\ \xda\xdd\x2a\xe5\x25\xb1\xf5\x71\xe4\x8a\xc4\xea\x6d\x1d\x47\x1e\ \x76\x5e\x63\x92\x88\xca\xc4\x0d\xfe\xe0\xaa\x4f\xc9\x00\xaf\x91\ \x3f\xc2\xdc\x44\xdd\x3c\xb2\x04\xa6\xc8\xda\x2b\xaf\x82\x29\xd6\ \xf6\x1e\x7d\x46\xe4\x95\xc2\x89\x9c\x69\xfa\x78\x07\x3d\x75\x6e\ \x27\x97\xc8\x24\xc6\x91\x0e\x0e\x3e\x2c\xd4\x16\x1e\x51\x7c\xe2\ \x42\x0c\xf3\x9b\xd3\xcd\xbb\x37\x6f\xde\x7d\xf5\x4e\x85\x3f\xbc\ \x7f\xf8\xfc\x0f\x9f\xdf\xdf\x7f\xd8\xda\x0d\x25\xbf\x93\x3b\x91\ \x9b\xbb\x5b\xe6\xb0\x0b\x49\x28\xa3\x11\x03\x56\x66\x52\x51\x06\ \x4c\x58\x9c\xd8\xf6\x4e\x0c\x91\x04\x71\x2a\xb4\xb5\x76\x6a\xa7\ \x15\xbd\x99\x74\x0e\xd1\x6c\xdd\x93\xe7\x8a\xc4\x1e\x08\xb1\x32\ \xd8\xde\xbd\x7d\xfb\x9d\xef\x7c\xfa\xf0\xe0\x52\xee\x12\x38\x48\ \xa6\xbf\xd5\x01\xc9\x60\xc6\x8c\xf6\x9a\xb0\x02\xa2\xa4\x5e\x94\ \xda\x6b\x0e\x64\x79\x09\x56\xc2\xdc\x65\x3f\x73\xe1\x16\xfc\x8b\ \x45\xc8\x97\x4e\x25\xae\x81\x21\x93\x4a\x09\xae\x54\xc8\xb6\x38\ \xd9\xd3\x43\xa0\xfa\x49\x94\xdf\x83\x2b\x85\xcd\x51\x4f\xc7\xb1\ \x0a\x39\x86\xbb\xc9\xb3\x12\xcf\xd1\xed\x4c\x64\xc7\xd1\x4e\x35\ \x37\x96\x3c\x8d\x77\x34\x67\x27\xb2\x1e\xb9\x2d\xf3\x93\xb1\x94\ \xa9\x73\xee\x9d\xa3\x72\xcb\xc6\xb8\x3e\x4d\x38\x08\xc2\xe2\x0b\ \x29\x66\x48\xbf\xc6\x4c\x83\x16\x5a\x04\xf1\x28\x6e\x91\x45\x5a\ \x78\x51\xf2\x29\x90\x3e\xe4\x5a\xd0\x30\x2b\x13\xe0\xd9\xce\x06\ \x73\xcc\x23\x05\x35\xc6\x41\x66\x06\x27\x68\xfc\x50\x4f\xfb\x4d\ \xf8\x60\x16\x2e\xc9\xfc\x0e\x30\x05\xbb\x5a\xd3\x87\x74\x98\x02\ \x95\xdd\x57\x65\xcc\x5a\x6b\xc7\x2b\xb7\x5c\x41\xbc\x79\xf3\xf6\ \x27\xff\xe9\xbf\x6c\x5b\x23\x43\x63\xf9\xe8\xee\x55\x85\xe5\x02\ \x4c\x0a\x36\x75\x42\xe3\xc2\x32\x66\x4a\x24\xc8\x61\x2a\x0d\x80\ \xaa\x44\x11\x22\x18\x80\xbb\x2a\x11\x98\x16\x45\x23\x15\x05\x9b\ \x52\xad\x51\x51\xae\x39\xb5\x81\xb3\xf2\x76\xb3\x11\x78\xdb\xb6\ \x87\xfd\xfc\xd8\x2f\x9d\x70\x23\x22\x2c\xce\x04\xf3\x8c\x6b\x6e\ \x9b\x92\x7b\xef\x91\xc9\x96\x81\x81\xab\xdf\xa7\xc6\x4e\xc2\x4b\ \x3d\xb3\xf8\x04\xf3\x7e\x95\x6b\x75\xc8\x9c\x25\xac\xb4\xc2\x1a\ \x20\xf1\x72\xe0\x38\x46\x2c\x68\x06\x05\xd4\x9f\x9c\xca\x9b\xa1\ \xfa\xcb\x07\x6b\xe6\x64\x04\x61\x96\x0a\xa6\x3a\xb2\x3b\x2b\x28\ \x75\x1d\xf1\xa1\x7c\x59\x8c\x81\xb7\xce\x07\x72\xe4\xca\x66\xe3\ \x3c\xc2\x0e\xe2\xb7\x0f\xce\x1e\xc6\x5c\xfc\xa9\x02\x86\x0e\xee\ \x4e\x22\x62\x6a\xad\x68\x94\x79\xce\xc9\x18\xef\x06\x13\xb9\x52\ \x01\x63\x92\x11\x21\x63\x13\x76\x50\x13\xd8\xf5\x19\xe0\xcc\x52\ \x89\x22\x58\x87\xf9\xc3\x89\x1e\x0f\x30\x9e\xd8\x5e\xa4\x99\xae\ \x82\xc1\x2b\xc2\x11\xa3\xbe\x2a\xe4\xc5\x54\x01\xc6\xf1\xa5\x79\ \x83\x3b\x71\x9b\xbc\xdf\x65\x5c\x19\x3a\x79\xc6\xa0\x04\xb0\xc3\ \x39\x7d\x46\x92\x30\x82\x03\x6a\x9c\x96\x2c\x71\x62\x8f\xe8\x2d\ \xbf\xbb\xbb\x7d\xf5\xfa\x25\xcc\x1f\x1e\x3e\xdc\x7f\x78\x10\xe6\ \x62\x07\xc3\x89\x5a\x61\x20\xab\x86\x0f\xc4\x38\x66\xd1\x65\xa8\ \x9c\xc6\x58\xf5\x61\xf8\xbe\x38\x03\xd6\x87\x31\xbd\xb8\x73\x12\ \xae\x3d\x37\xc7\xb4\x6f\x0a\x59\xef\x77\x77\x77\xff\xea\xbf\xfa\ \x6f\x5e\x7f\xfc\xc9\xe9\xee\xc5\xf7\x7e\xf0\x83\x0e\xb4\x53\x0b\ \xed\x40\x13\x75\x85\xc3\x5a\x93\xd6\x98\x41\x1d\x5e\x38\x87\x5a\ \x2e\x40\x90\xc9\x9e\x58\xb0\x9d\x73\x3f\xb8\x6c\xd0\x69\xf1\xa4\ \x3e\x29\xd5\x32\xf8\xf2\x4a\xfd\x35\x29\x28\xd3\x49\x96\xc3\x39\ \x9f\x82\x1d\xcc\xed\xcd\xf5\x0d\x59\xab\x8e\x2c\x4b\x47\x28\x00\ \x92\x06\xf3\x94\xfb\x5e\xd5\x83\xd5\x57\x40\x1e\x82\xf8\x91\xf4\ \xc7\xb4\xc4\xfd\xe6\xcc\x14\x3e\x31\xf3\xbc\xe4\x80\x3e\x15\x40\ \x0c\x28\x4f\x9b\x49\xe3\x07\xf3\x7b\xb6\x2a\x2b\x66\xe1\xb0\xf5\ \xca\x3a\x77\xe4\xfb\xa1\xc2\xdf\x06\x6e\xfc\x40\xb4\x89\x0f\x96\ \x56\x2e\x56\x24\x69\xf9\xf0\xca\x67\x8b\x1a\xb6\x64\x33\x2b\x5c\ \xc1\xc8\x39\x08\x2a\xe7\xd8\x73\x2e\xdf\x6a\x6d\xa3\xe0\xe4\xec\ \xc2\xe2\x21\xb2\x63\xac\x9c\xef\x54\xf7\x67\x4c\xa8\xc7\x47\xea\ \x95\x76\x36\x68\xdb\xfc\xd4\x0e\x5d\xcb\x6c\x77\xff\xf6\xa7\xdf\ \xfe\xfb\xbf\xff\x3b\xdf\xed\xd7\xbf\xf8\xd5\xaf\x7e\xfe\x0b\x02\ \x37\x99\xd3\xf4\x26\xec\x84\x90\x0b\x54\xd2\xc7\x71\x45\x20\x01\ \x17\x1d\x1f\xe2\x0c\xfd\x76\x44\x66\xbd\x0e\xc7\x07\xd6\x46\x34\ \xa6\x51\x81\x5c\x11\x16\xa5\xcb\xe5\xf2\xd1\x47\x2f\xff\xee\x6f\ \xff\xf6\x87\x7f\xf9\x97\x91\xf1\x7b\xe9\x97\x50\xe2\xee\xb6\x0b\ \x5b\xdc\x89\xe7\x73\xbf\x5c\x2c\xf6\xa1\x8a\x09\x3e\x3f\xe4\xe2\ \x2c\x62\xd4\x52\xe2\x8d\x94\xa6\xa9\x96\x27\xf2\xa7\x2e\x97\xf5\ \x75\x96\x5a\x70\x84\xd6\xc5\x06\x6f\x5c\x86\x49\x32\x7e\x22\xe3\ \x39\xfc\x84\x75\x1e\x33\x7e\x5c\xde\xe6\xb5\xeb\xf1\x43\xfa\x5d\ \x1c\x97\xf1\x82\x45\x46\x7c\x59\xcd\xe7\xae\xa4\xd0\xc7\x91\x86\ \xac\xcb\xb7\xb0\x2a\x80\x79\x6d\x81\x8e\xba\xaa\xfc\xb9\xad\x34\ \x63\xf9\x31\x15\xef\xb5\x56\x1d\xcc\x84\x54\x71\x97\x7e\xcc\x79\ \x51\xaf\x15\x95\x66\xcc\x00\x68\x4d\xa6\xa6\xa5\xc9\x48\x70\x70\ \xf1\xe0\xe0\xf3\x09\x85\xe5\x48\x59\xdc\x2b\xd9\xdc\xd0\x84\xbb\ \xc4\x43\x2e\xa8\x80\x83\xab\x4c\x4c\xe2\x91\x73\x36\x57\x04\x2c\ \x31\xa7\x9c\x08\x60\x2c\x3d\x69\x4c\x64\xa4\x82\xf8\x50\x93\x25\ \x4f\xc9\x61\x88\xab\x31\xc5\x67\x31\xfb\x32\x77\x65\x7e\xfd\xfa\ \x35\x3b\xde\x7d\xeb\xe3\xbb\x97\x2f\xd8\xd1\x64\xe4\x98\x7b\xb8\ \xab\x60\xac\x2a\x9e\x08\x5f\xc7\xa8\x84\x22\x4b\x39\xa7\x84\x54\ \x6f\x66\x78\x71\xc9\x29\xb5\xd7\x81\xf9\xf5\x32\x36\x8e\xc5\x04\ \xea\xf8\x93\xc6\x1b\xb7\xbb\x9b\x26\x70\xeb\x17\x52\x06\xd1\x49\ \x36\xaf\xd4\x88\x9e\xb9\x23\x31\x97\x32\x56\x6a\x3a\xd7\x90\x8b\ \xd9\x06\xeb\xd9\xc2\xc7\x3d\x20\x9e\x18\xb9\xae\x72\x04\x9e\xcf\ \xe7\xc0\x38\xa9\x79\x75\xfc\x2d\x69\x56\xdf\x28\xf2\x7f\x3a\xa0\ \xcb\xdd\xcf\xb2\xa6\x19\xc0\xad\x21\x48\xa5\xb1\xde\x59\x72\xa0\ \xae\x1a\x9b\xff\x0f\x57\x65\x05\xa7\xa2\xc3\x30\x89\xdc\x6b\x8d\ \xb9\x66\xd7\x51\xf8\x6d\x9c\xab\x55\x23\x08\x21\x03\x05\x3c\xe0\ \x7f\x09\xdb\xc2\x88\x23\x5d\x29\xaf\x99\xf6\x36\xf7\xd4\xb9\xcc\ \x1e\x39\x50\x79\xeb\xc9\xb2\x9b\x0f\xd4\x8b\x67\xea\x48\x06\x25\ \x17\xcf\x64\x60\x04\xb9\x18\x00\x71\x1b\xab\x6a\x28\x32\x55\x35\ \x92\x16\x89\xa9\x24\x9d\x23\xa4\x88\xd3\x10\x5b\x4d\x8d\x3b\x9c\ \xfc\x4a\x29\x98\x5d\x47\x0e\xa1\x8a\x88\xce\xf1\x7c\x5d\x7c\x44\ \x69\x8d\x9b\xdf\x81\xbb\xb7\xd6\x7c\xef\x9d\x9c\x7a\x77\xb7\x48\ \x0b\x6e\x11\x31\x0d\x92\xf0\xaf\x87\x02\xc3\x21\x1e\x09\xe8\xc9\ \x83\x9e\xb2\xb7\x71\x3f\x82\xd8\x0b\xc8\x94\x79\x48\x51\x69\x46\ \xee\x77\x34\x45\xcc\xb0\x51\x5e\x6b\x56\x29\x4e\x2e\xde\xbb\xed\ \x9d\xdc\x60\x3b\xcb\xa6\x81\x68\x8d\xe7\x8e\xa6\xac\x93\xd8\x45\ \x58\x35\x84\x4a\x46\xde\x87\x38\x92\x70\xe5\x92\x4c\xa1\x6c\x75\ \xef\xa9\x47\x58\xbc\x1e\xb8\x72\x77\x1d\xd5\x68\x45\xb4\xcf\x07\ \xbd\x2f\xe9\x85\x5c\xee\x50\x30\xad\xc8\xba\x6b\x4a\x2e\xcf\xec\ \x10\x99\xf9\xac\x3c\x99\x21\x5e\xbe\x12\x82\x04\x86\xf5\xc8\xfd\ \xb8\x32\x20\x3c\x8f\x83\x7b\x32\x3d\x0f\x71\xfe\x10\x14\xc7\x48\ \x6e\xf9\x51\xb3\x42\x2d\x90\x38\xd0\x46\xa2\xab\xc3\x50\xa8\xbc\ \xda\xcc\x04\xce\x84\x95\x39\x10\x65\xe5\x96\x98\x73\x8f\x18\x12\ \xf1\xe2\x6f\x75\x22\xef\x1e\x0a\x04\xc9\x60\x0e\x97\x91\x3e\x19\ \x97\xbf\x65\xd8\x4d\x3a\x19\x39\x1f\xa3\x06\x72\xe0\x94\x0f\x17\ \x01\x58\x55\x62\xaf\xc9\x2a\x0c\xb8\x1b\x31\x0b\x2b\x2c\xd6\xf9\ \x5e\xe2\x17\x21\x74\x18\x4a\xe7\xe0\xd9\x51\x92\xe4\x9c\x2e\x40\ \x7b\xa5\x78\x73\x90\x12\xb8\x24\x81\xe3\xf4\x1d\x70\x4d\xb7\x0e\ \x61\x51\x8d\xb9\x41\x34\x89\x46\x4e\x02\x16\x38\xbb\x93\x25\xe7\ \x21\xc8\xd9\xf1\x91\x55\x5a\x80\x10\x3b\x39\x17\xd1\xf7\xe0\x42\ \xab\xb1\x5b\x8c\x2b\xa5\xfe\x4e\x4d\xfb\xe7\xc7\xe2\x0b\x98\x75\ \xf8\xab\xa8\x0e\x46\xc0\x54\x48\x99\x54\xb8\x67\x4c\xd2\xcc\x3d\ \x8a\x78\x2b\xd5\xa6\xa2\xc2\x70\xdb\xcd\x12\xe6\x96\xd6\x24\xce\ \x18\xb9\x74\x2d\x39\x88\xe1\x9c\xc2\xdc\x08\x78\x3c\xea\xa3\x93\ \x3b\x75\x28\xe8\x65\x80\x67\x32\xdc\x3e\xea\x14\xd0\xb2\x04\xcb\ \x8b\x3b\x32\x25\x8c\x0b\x8e\x91\xa0\xff\x30\x74\x4c\x4d\x23\x31\ \x93\x85\xe8\x1b\xa8\x64\x3a\x47\xa1\xcb\xa2\x4c\x08\x11\xcb\x93\ \xbd\x0a\x16\x63\x22\xc7\xd7\x3c\x22\x1f\x8f\x74\xab\x75\xf4\x9c\ \x7a\x3e\x0f\xc0\x04\xb1\xc8\x74\x19\xa4\x80\x25\x98\x73\x23\xb4\ \x23\x47\x02\x59\x84\x67\x83\x66\x43\xb2\xbe\x2c\x3a\x7b\xb7\xb4\ \xdd\x39\x74\xce\xcf\x99\xac\x4a\x41\x3e\xc4\x62\x20\x93\xc6\x68\ \xd2\xdd\x53\xa9\xc0\x42\x12\xe2\x1c\x83\x3b\x79\xa3\x94\xc7\x0a\ \x0b\x91\x11\x33\xb3\x92\xb4\x82\x2c\xc6\xcb\x72\x29\x14\x28\x11\ \xef\xc4\xdb\xb6\x71\xc2\x6f\x7d\x8d\x0e\x2e\x0a\x2a\x8f\x86\x60\ \x00\x51\x0a\x8e\x93\x8a\x60\xa6\xe1\xc0\xc1\x33\x32\x78\x0d\x35\ \x43\x77\x51\x29\x7c\x4b\xd6\x79\x31\x7c\xcb\x60\x14\x1f\x2d\xfd\ \x5c\x2c\x63\x32\xcd\xb2\xc4\x98\x65\x3c\xd3\xbc\x13\x02\xe8\x18\ \xea\xfd\x00\x52\x8b\x17\xdc\x23\xd8\x34\x9c\x82\x3d\xbd\x92\xf0\ \xab\xf2\xc6\x8d\x95\xac\x00\x93\x71\x23\x98\x5b\xc2\x3f\x8d\xc8\ \x49\xf6\x8c\x75\x56\x21\x65\x0e\x2b\x8b\x38\x64\x39\xd5\x25\x6f\ \xc8\x5c\x2b\x56\x2f\x41\x83\x73\x39\x9f\xf9\x60\x5c\x33\x6a\x8f\ \x43\xa7\x92\x9e\xad\x57\x67\xbe\x3b\xc9\x06\x12\x4c\x02\x92\x45\ \x69\x98\x21\xcf\x07\x79\x5b\x7c\xb6\x16\x37\xbf\x48\x26\xc6\x95\ \x3b\x36\xd3\x2e\x9e\x7a\x1d\x96\xb3\xc1\x8f\xb6\x28\xb9\x6e\x9c\ \x26\x32\xa1\x52\x7e\xe3\xfe\xad\xfb\x71\x9a\x5c\x23\xdb\x31\x86\ \xc6\x55\x6d\xb5\x34\x5d\xea\x01\x3a\xf3\x84\xe9\xdc\x07\x32\x88\ \x7d\xdd\xd5\x3a\x4d\x7d\x5d\x44\x7f\x94\xa1\x87\x40\x0e\x73\x44\ \x6c\xfc\x78\x5c\xc5\x19\xe7\x95\xdb\xc6\xcc\x9e\xfb\x96\xbc\x5c\ \x3c\x07\x33\x03\xb3\x56\xb7\x44\xf5\x70\xf1\xe5\x2f\x1e\x23\xb0\ \x10\x7a\x09\xc9\x79\x19\xa0\x65\x66\x09\xd3\x74\x7c\x20\x65\x14\ \x91\xc1\x54\xcd\xcf\x55\x80\x78\x01\x75\x17\x06\x88\x14\x21\x91\ \xc8\x2a\x9e\x94\xc1\x82\x9a\x88\x21\xb7\x62\xb9\xdb\xce\x30\x08\ \x70\x71\x8c\x51\xc7\xc0\x32\xa6\x23\xc4\xb6\x64\x5c\xa9\x21\xa6\ \x53\xf5\xe2\x3a\x20\xac\xe6\x24\xc7\x11\x05\xe5\x41\xea\xdc\x9a\ \x6e\xdb\xd6\xb4\x75\x18\x2b\xa3\x57\xc2\x1c\xe5\x19\xc8\xcc\x44\ \xad\x45\xbc\x38\xd9\xee\x31\x4f\x8b\x3b\x36\x30\x12\x43\xa7\x36\ \x26\x2d\x73\x85\x30\x0b\x75\x60\x98\x39\x47\xf4\xda\xbc\x67\x16\ \x78\xda\x21\xac\x21\x4d\xab\x3e\x23\x41\x07\x4b\x69\x19\x59\x8e\ \x07\x7f\x31\xe5\xaa\xbd\x9c\xfa\xe5\x72\xa1\x11\x38\xa3\x6b\xf8\ \x6a\xa1\x39\xae\x8a\x8a\x60\x78\x06\x0d\x70\x35\x3a\x5f\x21\xda\ \xab\x25\x7e\x7c\x0e\x15\xba\x11\xf3\x73\x1f\x53\xc1\x56\x31\xa4\ \x34\x34\x98\x4f\x5d\x7b\x66\xf5\x2f\x23\xae\x73\x21\x9e\xc8\x28\ \x48\x59\x26\x34\x35\x84\x2a\xc5\x75\x2d\x82\x07\x61\x86\x6a\x84\ \xe9\x0f\xc3\x58\x30\x48\x13\x44\x1c\x5b\x18\x1a\xf1\xc8\xc4\x56\ \x4f\xe5\xe4\x0b\x16\xa5\x7b\x14\xd5\x48\x86\x32\x3b\xb9\xc8\x8c\ \x15\x37\x0b\x3f\x02\x2d\x26\xc7\xc3\xb4\x92\x2b\x25\xe8\x08\xed\ \xcf\x19\x77\xac\xe5\x12\xa2\xeb\x26\x22\xd2\x54\x43\xfc\xc9\x60\ \x61\x65\x15\x02\xbb\x8f\x05\x21\xa7\x06\x8c\x52\x0d\x1b\x81\x84\ \xc3\x2e\xea\xf1\x39\x45\x87\xe2\x12\xa8\x1a\xc2\x12\x65\x0b\x66\ \x56\xcd\x88\x14\x59\x72\x5c\x63\x67\x95\xdf\xbe\x96\xf1\xa9\xe3\ \xe1\xfe\xbe\x9d\x5e\x9c\xd1\x59\x99\x25\x22\x27\x91\xf3\x5e\xe6\ \x53\x6b\x42\xe2\x7e\x89\x80\x10\x61\x86\x21\x50\xd3\xcf\xb1\x47\ \x70\xc5\xa7\x5c\x04\x16\x07\xf4\x35\xcd\xfa\xa2\xb2\xa9\x8f\xae\ \xa4\xa1\xd5\xaf\x47\x50\xae\xff\xbd\xd2\xb0\x67\x2d\x13\xb9\xb7\ \x4f\xe6\x73\x63\x1f\x1a\xc7\x64\x20\x1b\x58\x98\x75\x06\x90\x3c\ \xdd\xf4\x8f\x60\xa2\xab\xff\xac\x79\x3b\xc7\xf1\x00\x44\xd8\x8d\ \x72\x6f\x5e\x04\xd0\x59\x1e\x78\x7e\x5c\xee\x30\xea\x1b\x37\x80\ \x9a\xa8\x68\x2a\x4d\x9f\x31\x21\x2c\xc3\xae\x7c\x78\xf3\xb2\x96\ \x12\x90\xa8\x64\x7a\xa1\x64\x28\xf5\x1c\xdb\x81\x46\xc2\xe6\xf4\ \x8a\x65\x12\x03\x0b\xd8\x2b\x8f\x60\x3c\xdc\xe3\xd3\x89\x20\xf9\ \x6d\x3b\x71\xc5\x92\xa1\xba\x55\xc0\xb1\x83\x21\xdb\xe9\x14\xf7\ \x85\x57\x78\x5c\x01\x06\xe6\x52\x75\x94\xcb\x93\xdf\x7b\x84\x38\ \xe6\x2a\x2a\xb6\x87\x0b\x80\x62\x8e\x99\xcc\xdc\x11\x97\x40\x2a\ \x75\x2d\x67\x80\xe1\x53\x50\x12\x71\x9f\xa1\x8c\x34\xec\xdd\x18\ \xc4\xb9\xb1\x56\x8c\x92\x80\xe1\x42\x1c\xc9\xd2\x32\x32\xba\xa8\ \xa6\x83\x83\x40\x15\xa7\x01\x8b\xbb\x97\x5c\x2e\xef\x14\x21\x65\ \xcf\xb3\x6e\x3f\x9f\x6d\xef\xe0\xb3\x6c\x0d\xc4\x4e\xd0\x18\x50\ \xb3\x88\xea\x16\xa6\x1f\xd1\xbd\xb7\xcb\xf9\xde\x03\x57\xaf\x85\ \x66\x27\x7f\xe2\xbd\xe3\xd1\x09\x3c\x55\x79\x1e\xd4\x27\x79\x7a\ \x4e\xf1\xcc\x3a\xb6\x9a\x1e\xef\x9c\x6a\xae\x46\x4b\x0c\x00\xd8\ \x8a\x8a\x5d\x41\x4e\xb5\x08\xe0\x91\x37\xe7\x73\x8b\xca\x65\xe2\ \xa1\xa7\xd5\xf5\x37\x45\x55\xf3\x32\x53\x7e\x2e\x68\x24\xeb\x01\ \x5e\xad\xbb\x55\xc5\x85\x5c\x3b\x7e\xf9\x10\x0d\x35\x46\x0a\xb4\ \x68\x26\x8d\xf1\x6a\xd6\x59\xdd\xf3\xb2\xd0\x9d\x99\x58\x55\x28\ \x93\x97\x49\x93\xce\x15\x5b\x58\x71\x8c\x9f\x58\xda\xcf\x1a\xbb\ \x7b\x21\xd1\x1a\x4b\xd9\x47\x64\x58\x71\x38\x57\x5b\x18\xe4\xbb\ \x3c\xaf\x7c\x44\x69\x66\xaa\x6d\x6e\x2a\x6b\x48\x1d\x56\xd9\xa8\ \x13\xeb\xc1\xef\x22\xb4\x9c\x65\xc9\x9e\xa8\x47\x00\x4f\x3a\xc4\ \xb2\xcc\x3b\x98\x7e\x53\xd2\x15\x6b\xf5\xea\x13\xdd\xe2\x84\x81\ \x63\x26\x33\x11\x89\xd6\x4e\xc4\x26\x1b\x7a\x12\xdc\x89\xc9\x59\ \xe3\x46\x31\x8b\xf9\xfa\xb8\x6a\x56\x05\xcb\xca\x44\x1f\x06\xcc\ \x32\xe2\x87\x3c\x03\xcc\xd2\x1a\xbb\xd9\xef\x7e\xff\xfb\x47\xdb\ \x77\xc2\x8f\xfe\xe6\xaf\x5f\x7d\xfc\xfa\xe1\xf2\x08\x27\xe3\x4e\ \x22\x6c\xb8\xb8\xed\x97\x8b\x8a\xa8\x26\xf5\xd2\x33\x77\x7c\x26\ \x98\x2e\x57\xd8\x88\x4f\xe3\x67\xf1\xe7\x1c\x68\xfa\xa1\xa1\xe7\ \x83\xd2\xb9\xc5\xe3\xf7\xb9\x24\x82\x31\xd7\x8a\xdf\x49\x1c\xa3\ \x36\x2c\x8c\x6c\x92\x43\x62\xa1\xe7\x49\x9b\xf9\x56\x2c\x4c\x46\ \x8b\x5c\xea\x49\xa4\xee\x95\x6d\xbb\xf6\x2d\x5a\xc9\x66\x58\x72\ \x82\x9f\xd4\x6f\xd9\x73\xe7\xde\x53\x66\x80\x7d\x5c\xd3\xf1\x4d\ \x53\x25\xda\x19\xb3\xb4\x98\xec\xa7\x68\x65\x99\xf6\xac\xcf\x5d\ \x09\xd5\xc1\x4c\x24\xe0\xc6\xe3\x10\xf0\x55\xd8\xc4\x15\x3f\x31\ \xcc\xa4\xf5\xaf\x56\x57\x5b\xaa\xe2\x2c\xad\x3d\x09\x04\x72\x77\ \x4b\xfa\xbc\xd4\xa6\xc5\x30\x82\x31\x86\x41\x41\x48\x84\xdd\x11\ \x7d\x72\x55\x58\x9e\x93\xee\xb2\xa0\xc5\x9c\x43\x68\xc9\xcc\xa0\ \x8c\xe7\x98\x2b\xa5\x03\xe9\x6b\xde\x3f\x0b\x7d\x73\xf1\x5f\xc5\ \xec\x83\x49\x54\xa9\xf7\x6e\xe6\xbd\x83\x15\xc5\x92\x36\xc3\x81\ \x48\x37\xc3\xd0\x63\xfd\xc9\x99\x6c\x3c\x74\x4a\x53\x27\xca\x15\ \x01\x3f\xac\xb2\x75\xf9\xb8\xad\x14\xd4\xd9\x45\xb8\x83\xe8\x7c\ \x3e\xff\xf8\xc7\x3f\x96\x9f\x9d\x48\xe5\xa3\x4f\x3e\xfa\xe4\xdb\ \xdf\xc2\x6e\xa4\x0c\xd0\x6e\xde\xc9\xe2\xbb\x68\x2c\xad\x89\x2a\ \x8b\x0a\xf7\x59\x1f\xf1\xf5\x40\xb6\xa2\xc8\x69\x9d\x2c\x0f\xaa\ \xe3\xc0\x35\x2d\x36\x4e\x9e\xcb\xfb\x31\x64\xfb\x86\x88\xb5\x71\ \x8c\xac\x17\x8c\x17\x61\x1f\x38\x40\x63\x22\x20\xd8\x69\x62\x24\ \x35\x94\x7e\xb5\xfe\xe4\x75\xa6\xbc\x78\xb6\xc7\x3f\xcb\x42\xbb\ \x5e\x4b\xb5\xac\x6b\xdc\xb1\x04\x08\xd4\x14\xae\xc6\xb2\x31\x66\ \x8c\xdc\xa2\xda\x84\xaf\xdb\x4f\x6f\xcc\xf3\x4a\x3a\xfe\x02\x19\ \x5d\x08\xb1\x83\x3d\x6f\x3f\x9f\x69\x54\x43\x01\x31\x04\x2c\x29\ \x95\x4b\x35\x2b\x08\xae\xc5\x2c\x21\x0c\xf8\x6d\x0a\x2e\xd7\xfb\ \xc9\x20\xc6\x9a\x4e\x00\x00\x20\x00\x49\x44\x41\x54\x4b\x34\x06\ \x66\x67\x88\x83\x34\x23\x6f\x9d\x8c\xeb\x9c\x9b\xfa\xa2\x08\xa3\ \xf6\x41\x14\x18\x05\x86\x20\x27\xe9\x88\xbc\xb8\x1a\xc9\x12\x57\ \x5c\x34\xcd\x66\x86\x57\x0b\xf4\xe1\x7b\x2b\xf4\xea\x0c\xad\x11\ \x1a\x03\x13\x33\x7b\x78\x7c\xb0\xde\x2d\x8c\x2d\x58\x97\x70\xd4\ \x12\x62\x3b\x17\x19\xec\xa1\x7f\x2d\xfd\xce\xcc\xae\xe1\xa1\xae\ \x98\x32\xa0\x29\xde\x1b\x1d\xb6\x57\x2a\xf0\x60\xce\xe7\x8a\x79\ \xef\x3b\x3b\xa4\xa9\xbb\x8b\x43\x98\xb6\xa6\x1d\xd4\xbd\x07\x1a\ \x41\x53\xd2\x01\x11\x65\xb2\x4c\xcf\xe1\x2b\xb4\xc9\xba\x8b\xe4\ \xa7\x0d\xc3\x40\xb1\x2d\x27\x42\xd1\xef\x88\x25\xce\xe4\x15\x38\ \x56\x78\x65\x55\xbd\x3a\x76\x22\x57\x78\xac\x31\x90\xb6\x25\x39\ \x0a\x1a\x87\x46\x2f\x46\x10\xeb\x1d\xc8\x24\x49\xd6\x7f\x1a\x70\ \xb0\x50\x35\xc6\xfd\x20\x3c\x45\xfa\x28\x47\xfd\x48\x58\x98\xf6\ \x9e\x90\xfb\xb1\x07\x52\x42\x91\x0d\x57\xac\xf5\x6a\x8f\x55\xb2\ \xff\x56\x0a\xca\x41\x24\x91\xc1\xce\xaa\x63\xc7\x06\x70\x24\x4b\ \xa3\x62\xa1\xcf\xd9\xff\x92\xcb\x33\xa6\x6f\xb4\xc0\x0c\x16\x59\ \x1a\x97\x0a\x75\xe4\x49\x60\x49\xe9\x23\x22\x98\xbb\xc4\xe6\x71\ \xc8\x04\x67\x4c\xdf\x08\x76\x09\xe0\x44\xd4\x77\x23\x2b\x1b\x4c\ \x1e\x02\xd3\x32\x0a\x66\x5e\x75\x8e\xfb\x3c\xeb\xd3\x31\x07\xb9\ \x5a\x56\xcb\x40\xda\xd0\x00\xf0\x72\x8a\x86\x8a\x5b\x06\xa2\x87\ \x0f\x1f\x3e\x7c\xfd\xde\xe1\x4c\x8a\xc1\xc5\xe5\x12\x76\x8c\xd2\ \x6d\x51\x79\x73\x4c\x39\x47\xd6\x3c\x67\x44\xd2\x40\x60\xcd\x90\ \xb4\x43\xbe\xc5\xea\xbc\xa8\xcb\x89\x87\x50\x11\x6d\x6b\xb2\x9d\ \xa4\x31\x19\xdc\x0c\xbb\xed\x6e\x56\x80\x52\x22\xb1\xd8\x58\x11\ \xd9\xf9\x1c\xbc\xba\xe8\xb1\x39\xd2\x24\x79\xed\x5e\x7c\x19\xf2\ \x1d\x6e\x80\x89\x29\xbc\xe6\x6d\xf2\xf8\x46\x57\x06\xc7\x55\xca\ \xda\x4a\xff\x99\xea\x67\x1a\xf7\x2e\x16\xee\xdc\x21\x1b\x40\x72\ \x7c\xc2\x33\xa7\x09\x4e\x90\xf1\xdb\x9e\xa3\x3a\xf1\x22\xa2\xe3\ \x2b\x0a\xcf\xaa\x6b\x2e\x4f\xd9\x4a\x62\x22\x12\x89\x9d\xd9\x51\ \x7a\xc7\x29\x46\xe5\x2c\x27\x9b\x8a\x0a\xc8\x0f\x94\x67\xf0\xdc\ \xc5\x20\x38\x0f\x39\xa1\x07\x24\x85\x9c\x8b\xc7\x7f\xe0\xe7\x96\ \x1c\x90\xe1\xa4\x18\xd2\xa0\x15\xda\x9f\x8f\x4e\x43\x2e\xbd\x31\ \x31\xe2\x51\x07\x71\x48\x24\x5b\x99\x8e\x25\xe5\x79\xc4\x0b\x83\ \x78\xa2\xf5\xb3\x73\xf2\x11\xd9\xa5\xcc\x23\x0c\x75\x58\x20\x90\ \x60\xfb\xd4\x41\x47\xc5\x80\xcc\x3d\x2f\x16\x68\x7c\xd8\x11\xaa\ \x31\xe2\xbb\x39\x11\x53\xc4\x4d\xc4\x2e\xfb\xbb\x77\xef\x1e\x1f\ \xee\xb5\xe6\xb0\x69\xf4\xaf\x41\x66\x75\x26\x79\x18\x03\x10\xcd\ \x30\xde\xcc\xe7\x4a\x17\x6d\x09\x38\x53\xdb\x99\x46\xa5\x5c\x5a\ \x43\x04\x4c\x32\xfc\xee\x59\x48\x64\x6b\x37\xd8\xb8\x25\x80\xfd\ \xd3\xe7\x7f\x7a\xfd\xfa\xf5\xc3\xc3\x3d\xd8\xa1\xe3\xd6\xe7\x80\ \xda\x28\xc3\xdd\xb4\xe9\xcb\x57\xb7\xed\xf6\x85\xb0\x10\x93\xea\ \x8c\x33\x90\xb1\xf1\xc0\x8a\x9d\x3d\x4c\xa8\xcb\x8f\x1d\xb4\x3a\ \x0a\xf5\x6b\x2d\x92\x44\x0e\xfd\x61\x3e\x1d\x22\xaf\x37\x4f\x24\ \xa6\x40\xd2\x33\x47\x6e\xbc\x0a\x2f\xb1\xee\x34\x0a\xc5\x50\xf1\ \x0a\x4b\x48\x1c\x94\x77\xae\x16\xb7\xc8\x70\x25\xb7\x9a\x60\x51\ \x1e\xd9\xdb\x73\xb8\x8c\x83\xc1\xd2\x47\x17\xc2\xcc\xe3\x18\x1c\ \x96\x85\x4c\x07\xf1\xd4\xbd\xc4\xb3\x69\xac\x9b\x46\xbc\x61\x0c\ \x28\x5a\x34\xb0\x79\x38\x8d\x03\x81\xc6\x44\x85\x22\x7a\x34\x4c\ \x3e\x25\x8b\x4a\x30\x9e\xbb\xb5\xf8\x58\x25\xd1\xde\x3c\xcb\xca\ \xe0\x6a\x66\x13\xce\x5a\x87\xb2\x83\x60\x21\x98\x23\x61\x12\xa7\ \x41\xa7\x67\x22\x42\x6c\xbe\xd3\xd5\xc3\xcc\xaa\x2b\x0e\x73\x98\ \x9a\x23\x37\x8a\x41\xca\x91\x1f\x08\x8d\x84\x4d\x2d\x73\x0b\x25\ \xbf\x59\x6b\xda\x0b\xf7\xda\xa1\x20\xad\x8b\x0e\x0d\xdb\x89\x4c\ \xd8\xb2\xa4\xf9\x24\x09\xb3\xc9\xe0\x50\xe5\x0a\x5d\x61\xb3\x0f\ \x6f\xdf\x89\xa3\x11\xb9\xd9\x88\xd0\x76\x8f\x64\x62\xaa\x05\x29\ \x11\x79\x6e\x75\x3a\xa0\x50\x11\x87\x2b\x31\x6b\x1a\xf2\x18\x3e\ \x41\xb3\xa4\x9e\xb6\x70\xaa\x39\x97\x33\x42\xc7\x20\xb5\x6b\x8f\ \xa5\x35\x9c\xa4\x48\x3f\xec\xbe\x9f\xda\x0b\x77\x27\x75\x16\x27\ \x21\x95\x7c\xae\xc7\xc8\x5b\x85\x59\x59\x8d\xa4\x69\x6b\xda\x4e\ \x2a\x95\xa4\x91\x3a\xd4\x40\xeb\xb3\x88\x56\x12\xde\xca\x88\xa3\ \x7a\xca\x30\x3b\x02\xc3\x30\x2e\x4a\x4c\x6d\x84\xd3\xc0\x50\x89\ \xe4\x8f\x4a\x8d\x8c\xd4\xca\xdb\x5c\x5a\xb4\x87\xaa\x4d\x48\x84\ \x85\x54\xa9\x77\x5f\x38\xa7\x95\x1c\xc1\xda\x5a\x03\xb9\xaa\xb4\ \xa6\xa0\x93\xaa\x36\x6d\x6d\xdb\x34\x84\x0d\x94\x09\x6a\xf9\xdf\ \xfa\x6d\xe4\xd7\x20\x9d\x35\xde\x69\x4c\x6f\x69\x24\xb4\x0d\x50\ \x86\x33\x29\xf9\xc2\x3e\x9a\x51\xe4\x41\xb9\x0d\xfd\x85\x52\x73\ \x74\x55\x56\x95\x39\x96\x47\xc8\x82\x65\x0a\x07\xea\x14\x45\xe4\ \xab\x01\x2a\xdc\x54\x84\x74\x22\x15\x41\x91\x20\xcd\x61\xea\x20\ \xd1\x71\x73\x06\xfe\x5c\x63\x2b\xcb\x19\x2b\xde\xf3\x6b\x87\x90\ \x00\x20\x6f\xe2\xee\xc6\x24\x80\x75\x23\xde\x36\x43\x41\xe6\x83\ \x50\x13\xcc\x41\x61\xde\x1a\xac\xc7\xbd\x2d\xa2\x2a\x4a\xdd\x84\ \xe2\x5d\x78\xf5\x7b\x60\x40\x25\x0a\x21\x16\x11\x54\x93\x40\xee\ \x1c\x80\x04\x2d\xa9\x6f\x2c\xe9\x99\x64\x28\x56\x89\x23\x2e\x33\ \x56\xb7\x7b\xef\x22\x7c\xb3\xdd\x28\xf8\xcb\xb7\x7f\xee\xf7\xe7\ \x93\xea\xa5\x24\xbd\x71\xa0\xa1\x64\x46\x42\x4a\xec\x01\x50\x8c\ \x28\xce\x28\xca\xcc\xd3\x2a\x60\x15\x32\xd2\x4a\x9a\x63\x0c\xc9\ \x83\x81\xc9\x0d\x24\x2a\x91\xe6\x13\x74\x74\x59\xfb\x10\x70\x66\ \xf7\x84\xf2\xdf\x81\x7e\x3e\xbf\xfe\xf8\xe5\xf7\xbf\xff\xbd\x77\ \x1f\xde\xaa\x26\x5c\x4c\x8b\xb8\xb5\xc0\x7b\x55\x55\xa5\x65\x8a\ \x04\xe5\xf5\x1c\xe7\x5c\x89\x9e\x0b\x90\x50\x92\x9f\xd1\xe6\x93\ \x05\xd4\x6e\xae\x65\x24\x24\x45\x92\xb3\xf3\x98\x6a\x06\x90\xc4\ \x08\x35\x4b\x14\x56\x6d\x22\x21\x22\x3c\xd3\x65\x17\x6d\xdb\x76\ \xba\xbd\xbd\xbd\x9c\xbb\x30\x77\x26\xd1\xe9\xad\x88\xcf\x5f\x77\ \x62\x77\xde\x5a\xca\x17\x94\xc9\x59\xdb\xa6\xdb\xd6\xb6\x9b\x68\ \x76\x5c\xc0\x6b\x24\x44\x0d\x29\xe2\xf9\xa5\x33\xff\xbb\x78\x31\ \xf1\x80\xe6\x5c\xc2\xe4\xf3\x3d\x76\xeb\x20\x80\xcd\xdc\x98\x95\ \xc6\x25\x17\xa5\x83\x12\x91\x86\x45\xd7\x83\x99\x4f\xed\xf6\xee\ \x4e\x09\x16\xbc\x0d\x5b\x0e\x4a\x24\x75\xd5\x23\x69\x86\xe2\xc0\ \xcd\xdc\xee\x11\x43\x13\x56\x44\x94\x32\x34\xec\x0d\x05\x56\xe0\ \x6a\xf8\x10\xa6\xdc\xe8\xdd\x35\x00\xb9\x6a\x1e\x61\x86\x11\xfc\ \xe2\xd6\xcd\xd5\x59\x5b\x8b\xce\x44\x63\x9e\x06\x12\x6a\xf1\x85\ \xc5\xe1\x4e\x60\x76\x8b\xa1\xfa\xd6\xda\x69\xdb\xfc\x72\xa6\xad\ \x9d\x54\x5e\xdc\x9c\xa2\x3b\xad\x12\xc3\x63\xc9\x44\xa0\x26\xca\ \x2d\x52\x34\xc2\x8b\x94\x5f\x0f\x33\x25\x37\x39\x12\x4a\x65\x66\ \xc2\x57\xb0\x34\x13\x8b\xaa\xc0\xfc\x44\x8c\xc7\xc7\x5f\xfe\x5f\ \x3f\x46\x37\xa5\xa6\xba\xe5\x11\xca\x4e\x24\x98\x2a\xa9\x60\x2c\ \xd6\x95\x90\xf7\x52\x1e\x0f\xf1\x0c\x12\x26\x65\x0e\xaa\xad\x13\ \x09\x39\x7b\xe0\xf2\xd2\xd9\x26\x4a\x22\xc2\x24\xf1\x3f\xaf\x89\ \x31\xd5\x96\x68\xa9\x00\x40\x22\x3f\xfa\xab\x1f\xfd\xdb\x7f\xfb\ \x3f\xfd\xf9\x8b\x3f\xa9\xf2\x08\xaf\x15\xce\xcf\xd3\x73\x64\xa2\ \xa2\x10\x11\x8d\xd5\xcd\x12\xdc\x94\xb9\xc8\xa2\xeb\x80\x6d\x0c\ \x8e\xe3\x33\x60\x49\x91\xca\x42\x03\xf6\xdc\x23\xa3\x8a\x24\x2e\ \xff\xef\xbc\x90\xb3\xff\x24\xc8\xf9\xe1\xfc\xf6\xed\x5b\x37\x88\ \xa8\x03\x1f\x3e\x3c\x3c\x3e\x7c\x48\xc7\x55\x8d\xac\xdc\x9c\x45\ \x44\x4f\xa7\xdb\xed\xdd\xbb\xb7\xba\xdd\xec\xe6\x7f\xfb\x5f\xff\ \xf7\x2f\x6e\xb6\xa6\x72\x77\x7b\x7b\x3a\xdd\xb4\xda\x84\x78\x05\ \x99\x1d\xf2\xd3\xca\x86\x31\x74\xa5\x31\x7a\xf0\x52\x7e\x9d\xcd\ \x40\x26\x2c\xb5\xc5\x65\xa6\x80\xb7\x79\x9c\x7b\xeb\x4f\x43\x72\ \x5d\x01\x50\x77\xb3\x4e\x4c\xd4\x3e\xfb\xec\xb3\xfd\xd2\x3d\x69\ \xdc\x11\xbf\x1c\x87\x14\x2f\x53\xa5\xfc\x82\xd2\x3c\x5c\x43\x02\ \xb7\xae\xaa\x2a\x8a\x02\x25\x4e\x70\xc7\xa0\xfd\x84\xd2\x21\xe4\ \xb8\xe9\x50\x44\xef\xbb\x5b\xf1\xa7\x84\xdc\xdd\x1c\x97\xcb\x7e\ \xde\x77\x91\xf6\xf0\xf8\x78\xe9\x46\x4c\x5b\xdb\x88\xb8\x5b\x1f\ \x45\x73\x08\xa2\x99\x79\xdb\xda\xdd\x8b\xdb\x57\xaf\x5e\xbd\x7c\ \x79\x77\x7e\x78\x2d\xe4\x37\xdb\x76\x73\x73\x92\xca\xdd\x10\x1e\ \xd3\xf3\xe8\x31\xbc\x06\x5a\x61\xa1\x62\x51\x4e\xbb\x01\x71\x86\ \xe6\x28\xab\x24\x5f\xb5\x80\xe2\xa1\x12\x70\x76\xda\x9a\xde\x49\ \xfb\xfc\xf7\x7f\xb8\x7f\x38\x13\x2b\x2b\xab\x36\x66\x46\xc0\x95\ \xfc\xb0\x49\x0d\xc3\x19\x27\xbb\x8d\x9b\x84\x5b\xd5\xa5\xea\x4d\ \x4d\xac\x61\x28\xfd\x53\xfe\x18\x8a\x3c\x0a\x5b\x1c\xc4\xc1\x23\ \x40\x6f\x30\x0f\x30\x2c\x0f\x21\x3b\x64\x11\xe1\xd3\x8b\x9b\x87\ \xaf\xef\x1f\x3e\xdc\xdf\xbf\x7f\xd4\x4d\xd2\x9d\x9c\x61\xe2\x1a\ \xa7\x82\x6a\x99\x0f\x54\x08\x83\xcd\x95\xbc\x7c\x9a\x8c\x94\x99\ \x6f\x1b\xdb\x81\xf8\x34\x43\x4c\x59\x03\xbd\x91\xd8\x91\x37\x4b\ \x46\xdf\x49\xb9\x30\x69\x68\xcf\xb3\x17\x69\xad\x35\x55\x07\xbd\ \x7f\x7f\x7e\x7c\x7c\x7c\xf9\xea\xf5\x47\xaf\x3f\xb2\xce\xd2\x36\ \x9c\xef\x1f\x1f\x1f\x45\x04\x6e\x60\x56\x69\x6e\xe0\x06\xdd\x4e\ \x7f\xf1\xc3\x7f\xfe\x8b\x9f\xfd\xf4\xc5\xed\xdd\xf9\xbc\x37\x69\ \xa7\x6d\x13\x69\x0c\x22\x52\xe4\x28\x32\x77\x5f\xbe\x84\xac\xc5\ \xe4\x90\xf5\x30\x59\x4b\x75\x8f\x03\xec\xb7\x39\x52\xd1\xb0\xd9\ \x08\x0d\xf7\x23\x07\xa0\x89\x47\x47\x31\xa3\x49\xaa\xaa\x36\x23\ \x42\xfb\xe8\x93\x4f\xc9\x21\xc2\x4e\x68\xda\x40\x30\x5b\x7b\x7b\ \x61\x02\x0c\x2c\x0c\xb3\xa2\x46\x45\xe9\x2f\x80\xb9\xf5\x38\xa6\ \x59\xb8\xf7\xfd\xc0\x8f\x26\x66\x55\xf7\x91\x67\xc6\x48\x90\x80\ \x9b\xa1\xf7\xde\x7b\x07\x0c\xc4\xda\xa0\x0e\x92\xc6\xed\x86\x9c\ \xfa\xc5\xf9\xe4\x77\xa7\x17\x9b\x6e\xa2\xad\x35\x3d\xd8\x0f\x41\ \x9b\xea\xed\x8b\xdb\xdb\xbb\x5b\x51\xed\x8f\xf6\xf8\xb8\xc3\xad\ \x6f\xfe\xf0\x78\x36\xef\xee\x66\x6e\x94\xd2\xac\xa4\x43\xab\x70\ \xfa\xf8\x42\x5d\x22\xa4\xe5\xa6\xe4\x5c\x38\xf8\x70\x29\xf3\x80\ \x1f\xa4\xfd\x0f\xc2\xa4\xee\x6c\xfe\x4f\x3f\xff\xd5\xfb\xf7\xf7\ \x37\xd2\x40\xad\xd3\x9e\x7e\x65\x22\x2b\xad\xc2\x00\xa6\x82\x32\ \x77\x8f\x00\x13\x57\x16\x8b\xf0\xa9\x1a\xec\x88\x83\x61\x14\xb2\ \x63\x09\xde\x63\x0d\xa8\x3c\x55\xb7\x22\xc2\x64\x92\x35\x76\xcd\ \x28\x08\x6e\x20\xef\x22\xc2\x4a\x0c\x79\xb8\x5c\x7e\xf9\x8f\xbf\ \xfe\xf1\x8f\xff\xd3\x9b\xb7\x6f\xb9\xb1\xe5\x2c\x91\x91\x77\x5e\ \xa8\x0e\xb5\x64\x5d\xc3\x86\xc4\x25\x15\x1b\xf6\x98\xc0\xf9\x69\ \x9e\xb7\x3c\xf2\xc8\x50\x09\x3b\x23\x94\x2f\x7d\x15\xac\xc2\x93\ \x58\x79\x18\xb6\x45\x68\x22\x01\xc2\xda\xda\x16\x4d\xf6\xbe\xf7\ \x0e\x7f\xf1\xf5\xc3\xcd\xed\xcb\xcf\xfe\xea\xaf\xdc\x71\xff\xfe\ \xab\x77\xef\xbf\x26\x40\xb5\x95\x85\xd7\x89\xf9\xa3\x8f\x3f\x7a\ \x75\xf7\xf2\xab\x2f\xde\xfc\xf4\xa7\x3f\xf9\xcd\xaf\x7f\xab\xa2\ \x9f\x7d\xf7\x3b\x77\x77\x2f\x9a\x8a\xe4\xd9\x24\x15\x85\x94\xc1\ \xd1\x23\x71\x8c\x26\xf3\x36\xa7\x23\xf9\x0a\x29\x77\x01\xd1\x25\ \x9b\x09\x93\x37\xd5\xc8\x2b\xf7\x08\xd6\x71\x5b\x6d\x70\xeb\xd3\ \x84\x5b\x64\x34\xa1\xfd\xf6\x77\xbf\x57\x62\x12\xe9\x95\x7c\x30\ \xf7\x80\xb5\xb2\x37\xf3\x40\x33\xc1\x89\x55\x18\xee\x6e\x52\x14\ \xb6\x90\xb1\x13\x60\x6e\x32\x68\xbf\xc2\xe8\x23\xc4\x7a\xfc\xff\ \x38\x35\x33\xc2\x60\xdf\xfb\x6e\xfb\xec\x9a\x1c\xbd\x9b\x3b\x44\ \xe4\x3b\xdf\xfd\xee\xb7\x3f\xfd\xb6\xb0\xf4\xbe\x2f\x79\x2c\xd1\ \x9b\xea\x27\x1f\x7f\x7c\xf7\xf2\x15\xb1\x3c\x3c\x3c\xbc\x7b\xf7\ \xfe\xfe\xfe\x03\x60\x0f\xa2\x4c\x70\xbb\x38\x52\x17\x2a\x89\x3a\ \x18\x42\x41\x51\x96\xa0\xba\x10\x45\xca\xf8\x41\x84\x96\x0b\x8e\ \x5c\x92\x08\x8d\x9e\x96\xd0\x62\xd8\xb8\xe3\x27\xbf\xfc\xc5\xfd\ \x87\x0f\x9b\x10\xcc\xfa\xde\x83\xdb\xed\x79\x49\x83\x59\x99\x23\ \x0e\x7c\x68\x95\x82\x50\x05\x26\xe3\x64\x5b\x73\xf6\x7e\xc1\x1b\ \xce\x4e\x54\x26\xee\x23\xfb\x5b\x62\x65\xf5\xca\xfa\x0c\x6b\xd0\ \x48\x01\xa1\x80\x5d\x19\xa1\x83\xc8\x45\x6e\x5f\xbe\x24\x6d\x72\ \xba\x21\x8e\xd0\x6f\x44\x10\x3c\x27\xf5\x82\x6b\x6f\x98\xb1\x53\ \x57\xba\xac\x48\xfe\x63\x5a\xed\xd0\xb4\x6c\xd6\x53\x61\x2f\x2c\ \x4b\x5a\xc1\x88\x23\x8a\x6b\xb4\xf6\x09\x88\x43\x30\xd5\x97\x20\ \x6c\xd2\x54\x95\x58\x40\x64\xf4\x78\x82\x98\xe3\xcf\x9f\x7f\xc1\ \x77\xaf\x44\x99\x64\x7b\x75\xf7\xca\xbb\x69\x6b\xa2\x0a\x26\xef\ \x46\x4e\x80\xbc\x79\xfb\xf5\x0f\x7e\xf0\xcf\x7e\xfe\xf3\x9f\xdf\ \xbc\xb8\x55\x96\xd6\xb6\xdb\x17\x77\x4d\x5b\xac\xbd\x4a\xd7\x3c\ \x32\xb5\x0a\x6b\x1b\xc9\x93\x57\x14\xe2\x61\xe5\x01\x06\xe9\x41\ \x05\x44\x0d\x50\x87\xc3\x92\xc9\xd4\x77\x5b\xb0\xc6\xa1\x6c\x4c\ \xac\xb8\x7b\x8f\xcd\x49\x7b\xf3\xe6\x9d\xe6\xb8\x16\x53\x5c\x42\ \x55\x1a\x64\xc8\x4b\xee\x81\xe2\x49\xcc\x19\x6f\x12\xe3\x39\x87\ \xf7\x58\xee\x13\x08\x71\xf8\xc4\xa8\xce\x72\x31\x9e\x39\x90\x21\ \xb3\x31\x5b\x25\xc3\xc2\xd2\x73\xa0\x2d\xd1\x87\x58\x77\xde\xf4\ \xe6\x74\x73\xda\x4e\x92\x21\xaf\x49\xa3\x0e\x70\x07\x81\x1e\xcf\ \xe7\xee\xee\x8e\xbd\x87\x8f\x84\x98\x85\x9a\x32\x40\xd4\x24\x86\ \x01\x9a\x0f\xec\x8c\x61\x8a\x38\x31\x66\x26\x68\x79\xba\xa9\x00\ \x86\x95\x9b\x13\x57\x94\x84\xf6\x73\xa8\x48\x40\xec\x31\x43\x3d\ \x35\x79\x71\xe3\x0f\x0a\x6d\x22\x7c\x72\x67\x22\x56\x19\x42\xeb\ \xa8\x31\xb8\x42\x08\xf7\x4b\xff\xf2\xcd\x9b\x77\xe7\xfb\x50\x0b\ \x4b\x86\xd0\xc6\xd2\xbd\x0b\x0d\x00\x82\x57\x3c\x6f\x0c\x56\x88\ \x99\x3f\x7e\x75\xf7\x97\x7f\xf1\xfd\x57\x2f\x6f\x19\x46\x0c\x8d\ \x47\x4f\x34\xf1\x2a\xac\x2b\x83\x80\xdb\xb6\x7d\xfa\xfd\xcf\x3e\ \x9c\xef\x77\xb7\x91\x4a\x6f\x59\xb5\xa7\x05\x29\x9a\x2c\x83\xa7\ \x37\x2e\x1b\x92\xb1\x8b\x2a\xfc\x04\x2d\x91\x32\x99\xd0\x29\x33\ \x49\x72\xba\x7a\xa8\xa2\x8a\x3b\xb2\xbb\x4e\x36\x08\x65\xe6\x59\ \xce\xdb\x38\x6d\xaa\xd0\xd6\xca\x22\x69\xaa\xdb\xdb\xaf\xdf\xbc\ \xf9\x3f\xbf\x8c\x13\x4d\x45\xd7\x90\xf7\x91\xf9\x08\xd0\xc5\xf6\ \xd3\xe9\xe6\xfe\xfe\x83\xb4\x70\xc5\x00\x12\xd0\x15\x04\xe2\xd7\ \x11\xd3\x94\x64\x69\x94\x97\x7b\x2a\xe8\xb0\x3e\x1a\x69\xc4\xb4\ \x30\xc8\x6b\x56\xea\x9c\x24\x5a\x08\x58\x5c\x42\xce\x3f\x66\x51\ \xca\x0b\xaf\x59\x55\x88\x1a\x8b\x70\xe3\x00\x66\x64\x00\x5e\xbe\ \xec\xb9\xa5\x22\x66\x42\xb4\xab\x32\x52\x51\x90\xb4\xf3\x18\x25\ \xc7\x75\x96\x0f\xc4\x78\x39\x24\x10\x16\x21\x61\x19\xe2\x89\x70\ \x02\x51\x29\x28\x25\x1c\x1c\x89\x0f\x29\xb6\x0f\x98\x3e\xbc\x7f\ \xdf\x7b\xe7\xaa\x04\x0a\xa3\x9e\x72\x95\xb7\x6f\xdf\x39\xd0\xf4\ \xf4\xe2\xee\xd6\x09\xe6\xc6\xcc\x19\x3e\x12\x13\x0f\x72\xc6\x04\ \x97\x54\xc6\x43\xa6\x71\x14\x00\x86\x07\x92\xb3\xac\x64\x3c\xbc\ \xe7\xbe\xca\x81\x89\x8c\xd9\xe1\xa7\xad\xfd\xab\x7f\xfd\xdf\x5d\ \x1e\x1e\x54\x58\x55\xea\x8c\x12\x16\x15\xd6\x91\x57\xaa\xaa\x70\ \xda\x4e\x37\x6f\xdf\xbe\xff\xdf\xff\xdd\xbf\xff\xf2\xab\x5f\xc3\ \x8d\x47\xa3\xb9\x10\xe1\xb9\xb6\x01\x58\x44\x8d\x71\xe1\xbc\xfa\ \xce\xab\xbf\xfb\x1f\xfe\xe1\x9f\xfd\xf0\x7b\x66\x17\x81\xc7\x54\ \x0c\x0c\x21\xa5\xf8\x58\x47\x12\x9f\x66\x33\xfe\xd0\x2f\xdc\xc4\ \x52\xcb\x27\x65\x95\xe4\x91\xf9\x2c\x61\xec\x63\x90\x54\x84\x78\ \x25\x4c\x0f\xd6\x49\x79\xa3\xea\x49\x22\x1c\x36\xf8\x18\x84\xbb\ \x3b\xad\x02\xb3\xf8\x07\x19\x0b\xf6\xf1\xf6\xc2\x65\xe8\x71\x46\ \x45\xe0\x32\x10\x19\x10\x96\xbb\x6b\x91\x6d\xbb\x89\x35\x80\x54\ \x5c\x39\x4f\x71\x4b\x2a\xa5\x2f\x0f\x7b\x56\xba\xc8\x2b\xae\xd0\ \xe1\x70\xb6\xd2\x4e\xc0\x91\xc7\xf4\x91\x50\xc0\x8b\xcb\x29\xa5\ \xcd\xe3\xad\x55\xd4\x47\x54\xf1\xd1\xdd\xc4\x4f\x37\x07\x94\xb4\ \x82\xdd\x0b\x50\x4b\xc1\xb1\x22\x00\x4d\x44\xdd\x6c\xc0\x9d\x8a\ \x8e\x31\x1c\x80\x59\xe2\x49\x26\x18\x81\x39\x49\x4d\x45\x6b\xc9\ \x78\x27\x4c\xd8\x76\x1a\xf3\x88\xc9\x39\xa2\xcb\xb9\xd2\xe5\xcb\ \x5e\x1b\xf3\xd7\x78\xc5\x11\xcd\x01\x4f\x32\x2d\x72\xb1\x67\x44\ \xec\x3d\x99\x1e\x3e\x15\xb8\x95\xda\x47\xe9\xd5\xe7\xf0\xcd\x44\ \xfa\x48\x7c\x2b\x21\xf0\x2a\x41\x5a\x31\x20\xe3\xf1\x59\x71\x52\ \x48\x3d\xf7\x8c\xb9\xf5\xca\x5a\x5f\x79\xab\x18\xa9\x66\x20\xec\ \x6e\x1f\x7d\xfa\xad\xc6\xdf\x01\x99\x2e\x5c\x92\x9a\x5d\x13\x78\ \x68\xa5\x78\x6b\x37\xb4\xdd\xb4\xbb\xbb\x9d\xd9\x53\x13\x90\xb3\ \x82\xe3\x33\x70\xa8\xb3\x51\x71\xd5\x00\xc1\x44\xdb\xdd\xed\xe9\ \xd5\x2b\xeb\x67\x25\x53\xc9\x5c\x78\x96\x06\x62\x26\x13\xa9\xe6\ \x83\xe1\x80\x99\xf3\x84\x6a\x73\x05\x24\x92\xa4\xbe\x04\x20\xcb\ \x77\x18\x6b\x0e\x8a\x70\xb9\xcc\x5b\x00\xd9\x58\xee\xa7\x1f\x3d\ \x2c\x0f\xc8\x5c\x68\x39\xe8\xaf\x66\x6e\xf9\xb2\x22\x2d\x5f\x35\ \x61\x76\x8c\xe3\xc9\x25\x30\x37\x33\x4b\x85\x5b\x88\x9e\xc4\xb9\ \xc6\x1e\xf0\x11\x8e\x3e\x1c\xca\xc1\x40\x66\x82\x0b\x01\xb0\x87\ \x0f\xef\x6f\x6f\xb6\x57\x2f\x5f\xc6\x2b\x35\x1a\x51\x45\x23\x09\ \x7c\xc8\xc7\xb0\x44\xdf\xa6\x20\x69\x4e\x3a\x64\x9c\x46\x43\x16\ \x78\xc8\x9e\x26\x86\x45\x70\xf4\x4a\xdb\x5d\x94\xdf\x8d\xe6\xe2\ \xd9\xa3\x3f\x8f\x70\x39\xaa\x0c\x02\x29\xe1\x3b\x2d\x1a\x15\x54\ \x8d\x15\x02\xf8\x58\x7d\x16\x8f\x27\x0a\x02\x18\x91\xb9\x39\x15\ \x1a\x06\x3e\xca\x01\x20\xd2\x9d\x7b\xc5\xda\xba\xc1\xcd\xdc\xdd\ \x40\xb0\xde\x9d\x98\x59\x91\xf4\xe5\x2b\x4d\x87\x90\x08\x23\xcc\ \x62\x1e\x23\x4f\xeb\x3b\x39\x35\x91\x24\xd0\x01\xc5\x7b\xa6\xcc\ \xd6\x64\x62\x8f\xa1\x7d\x3c\x86\xdd\x09\x24\xa2\x22\x6e\x1e\xf1\ \xce\x92\x13\x7d\x13\x11\xc7\x01\x30\xe7\x70\x11\xea\x0e\x76\x32\ \x36\x51\xe9\xbd\xcb\x48\x4c\x41\xaf\xab\x47\x44\x24\x48\x4f\xe6\ \x74\xb1\xdd\x86\xae\x83\x93\x56\xef\x47\x95\x3a\xad\xca\x7b\x42\ \x35\xe9\x6c\xf0\x4b\xdf\xcf\xfb\xd9\xfa\x59\xb8\x0b\x13\xc1\x98\ \x99\x45\x23\x53\x50\xc3\x1c\xcc\x41\x44\xb3\xd6\x94\x53\x75\x02\ \x10\x79\x3c\x6b\x12\x76\x23\x43\x8e\x8d\xc8\xfd\x21\x8a\x5d\x28\ \xd3\x10\x88\x80\x88\x8e\x29\xc9\xd9\x30\xc4\xb0\xd1\x72\xa7\xbd\ \xe6\xfa\x8c\xd4\x7a\xc1\x10\xe0\x51\x70\x20\x43\xd3\x97\x6a\x23\ \x2a\x0a\x71\x37\x73\x0f\x27\xb1\x8a\xa7\x92\x13\x02\x1f\xb1\x33\ \xd9\x52\x82\x62\x07\x18\x49\xd7\xf1\xfa\xcc\x3e\x7c\x78\xdf\x94\ \x6f\x36\xbd\xb9\xb9\x09\x31\xc7\x9c\x75\x55\xfe\xfb\x48\xca\xe0\ \x83\xf1\x25\x74\x07\x63\xb4\x4a\x3e\xc1\x80\x38\x24\xbd\xc6\xf3\ \xc6\x47\xbc\xf9\x08\x6f\x4d\x2d\x98\x13\x48\xd0\xc2\x7a\x4a\x03\ \x4e\x36\x0e\xb2\xc1\x1f\xc9\xfa\xc9\x28\xb5\xdc\x42\x20\x37\x03\ \x9c\x55\x34\x4f\x66\xe7\x4a\x20\xe0\x63\x6c\x42\x96\x64\x95\x84\ \xe1\x43\x0d\x42\x16\x0c\x66\xe6\x18\x65\xef\x7b\x5e\x63\x21\x07\ \x26\x47\x95\xfb\x28\x71\x6d\x80\xa3\x84\x34\x45\x25\xee\x30\x26\ \x75\x77\xeb\x4e\x0c\x6e\x50\xa9\x8f\x29\xe0\xa2\xf5\x54\x28\x83\ \x6f\x93\x9c\x4d\x2b\x86\x6e\x0b\x8b\x77\x90\x49\x42\x41\x10\x16\ \x9f\xba\x92\x98\x89\xc5\x09\xd8\xda\xb6\xef\xbd\xa9\xc2\x33\xc6\ \xa3\x98\xa0\x60\x62\x6d\xd5\x07\x3b\xb1\xa4\xb4\x24\xfb\xb6\x29\ \x76\x1d\xa7\x0c\x2d\x25\x38\x1f\x92\x55\x41\xaa\xba\xdd\x6c\xdb\ \x16\x92\x09\xd9\x1a\x0b\xa2\x32\x8b\x0e\x42\xb5\x88\x1b\x00\x4e\ \xa7\x46\x40\xd3\x16\x27\x44\xce\x80\x85\xa2\x8b\x13\xce\xfd\xbf\ \x47\x2d\x1e\xbb\xaf\x2b\x1c\x06\x27\x29\x64\x80\x4a\xc6\x97\x3f\ \x12\x9c\xe4\x2a\x74\x7c\x85\xdd\x44\x17\x5a\xe8\xaf\x28\x4f\x52\ \xb0\x2c\x65\xe7\x24\x17\x97\xa1\x38\x72\xb8\x96\x9a\xb6\x92\x83\ \x43\xbc\x0f\x9a\xce\x4b\x28\xd1\xa9\xc9\x85\x73\x94\x77\x39\x9f\ \xad\xef\xdb\xed\x0b\x88\x18\x98\xf8\x2a\xe9\x62\xf5\xbd\xf8\x22\ \xbb\xcf\x5b\x32\x05\x72\x8e\xc5\x85\x90\x37\x6b\x48\x9b\x85\x88\ \xd4\x40\x9d\xf3\x1b\x29\x02\x56\x7d\x41\xd1\xba\xb4\x1e\x6d\x10\ \x13\x47\x67\x16\x0e\xaa\x7a\x44\x86\x6a\x88\xc5\x7c\xe4\x87\x01\ \x20\xa8\x28\xc0\x63\xc1\x87\xdc\xb9\x96\x4d\x61\x89\xd3\x46\x91\ \xd6\xb2\xe3\xe4\xf1\xf4\xcf\xe7\x62\x3c\xae\xdc\x63\x71\xcb\x80\ \xd3\x89\x58\x09\xe4\x43\xfc\x14\x7f\x2b\x76\x90\x00\xed\xdd\x36\ \xdd\x0c\x1d\x8e\xf3\x7e\xee\x97\x0b\x91\x11\x89\xbb\xb7\x99\xc2\ \x57\xb8\x8a\xa8\x7d\xaa\x8d\x90\x7a\x49\x4d\xd5\xcc\xdc\x46\x0a\ \x39\x07\x2d\x46\x2a\xe1\xbb\x9c\x1f\x96\x76\x2c\xe7\xb0\x36\x08\ \xa9\x5f\x22\x55\x27\xe8\x96\x89\xd2\x15\x65\x32\x03\x61\x8f\x75\ \x1e\xf7\x87\xc7\xb3\x9b\x07\x96\x44\x85\x2c\x19\x0e\x2b\x87\x3f\ \xcb\x19\x2f\xdb\x96\x14\x6f\x70\x3f\x9f\xdf\x7c\xf5\xd5\xeb\xbb\ \x8d\xfd\x02\xeb\x4d\x82\x65\x2e\xdd\xe1\x16\x7a\x1b\x52\x15\x55\ \xbe\x5c\x1e\x6f\x4e\x27\x87\x33\xa8\x6d\x2f\xf2\x61\x44\xc4\xc2\ \xad\x85\x29\x12\xba\x49\x64\xfe\x98\x59\x53\x75\xf7\x18\xb5\xa9\ \x88\x68\x23\x82\x59\x8f\x76\x56\x44\x62\xe7\x18\x17\x40\xdb\xb6\ \x68\x1b\xc3\xbc\x04\x9f\x18\xe5\xed\x74\xca\x59\x0b\x00\x77\xe1\ \xad\xa9\x6a\x6b\xee\x46\xb9\xda\x21\x65\x25\xc1\xb6\x29\x88\xdc\ \x61\x6e\x8f\x0f\xe7\x87\xf3\xbe\x6d\xed\xb3\xef\x7c\xaf\x35\x71\ \x28\xfb\x0c\x7c\xaa\xbd\x54\x2a\x77\x84\x94\x7d\xff\xf0\xf5\xfb\ \xaf\xbe\xfa\x32\xb6\xfe\xfb\x69\x7b\xbb\xb5\xfe\x78\x61\xe5\xd6\ \x36\x8b\x1a\x47\x15\x66\x69\x08\x8a\xc9\x44\x2c\xb4\x84\x94\x35\ \x3a\x80\xc1\xf6\x53\xd1\x30\x63\xc8\x02\xb6\x31\x22\xeb\xe6\x66\ \x4c\x6a\xb0\xcb\xe3\xe5\x74\x3a\xc5\x6c\xb9\x69\x4b\x3d\x8b\xa4\ \x37\x66\xdf\x2f\x8d\xdc\x74\xd3\x70\x32\x8e\xb5\xee\x90\x24\xb0\ \x30\xac\x7b\xb0\xc9\xe2\x5a\x0e\x66\x9a\x8a\x5b\x28\xa5\xfd\xe6\ \xb4\x5d\xcc\xc3\xfe\x1e\x17\xd9\x78\x7c\x25\x9e\x26\xd8\x1d\xbd\ \x07\x45\x35\x69\x9c\xfd\x72\xd9\x1f\xca\xfc\x4c\x7b\xdf\x7b\x37\ \x37\x74\xeb\x37\xfb\x85\xbe\xfb\xfd\x28\xce\xb3\xee\xae\x08\x83\ \x50\x62\xee\xbb\xed\x7e\x51\x91\x87\xf7\x5f\xff\xe9\x4f\x9f\x3f\ \x3c\x7c\x38\x6d\x5b\x13\xd6\xc0\x83\x9b\x8d\x84\x6e\x5e\x17\x78\ \x95\xbd\xde\xcd\xb2\xb4\x33\x1b\xe8\x54\x51\x85\xbb\x99\xa9\xaa\ \x92\x44\xab\xd4\xb4\x8d\x10\xb9\x84\x30\x29\x53\x8c\x0d\x1d\x52\ \x6a\xcd\xd0\x4f\x30\xc1\x7c\x0f\x02\xad\x11\x11\x6d\xf7\xe7\xfd\ \xcb\x37\x5f\x56\x12\x62\xae\xe2\x9d\xab\x7c\x8c\x46\x36\x0a\x90\ \x12\xc8\x47\x1e\x36\x33\x7d\x78\xf8\xf0\xd3\x9f\xfe\xe4\x8b\xcf\ \x7f\xd7\xb8\x6f\x44\x66\x97\xad\xa9\xb6\x93\x13\x99\x41\x10\xc1\ \x72\xd4\x36\xdd\xf7\x33\xdc\x55\x9b\x10\x6b\xdb\xa6\xdb\x8d\x59\ \x85\x1d\xa6\x42\x9b\x88\x21\x05\x84\x6d\xdb\xe0\xe6\x70\xd5\x98\ \xcf\xc5\x27\x00\x80\xb6\xd6\x5a\xdb\xcc\xec\xb2\x9f\xc3\x7a\x18\ \x13\x0e\x11\x71\xb3\xed\x66\x8b\x59\x89\xb0\x98\x9b\x6a\x13\x11\ \x77\xeb\x66\x30\x17\x16\x61\x6d\x5b\x73\x77\xeb\xbb\xc5\x4b\x62\ \x26\xc2\xd6\x24\xbc\xbe\xa2\x0a\xc8\xe3\xf9\xb2\xef\x46\xff\xad\ \xff\xe8\xd5\xbf\x50\x62\x33\x83\xa8\x08\x67\xe8\xb7\x10\x85\xb5\ \xa4\xb4\xd5\xff\xf8\xab\x5f\xfd\xf1\x0f\x7f\x78\xf5\xfa\xe5\x69\ \xdb\x84\xe9\xab\x2f\xfe\x1c\x25\x8f\x6e\xe2\x19\x1d\x2b\xe3\x10\ \x17\x96\xde\xbb\x59\x67\xe2\xd3\xe9\x34\xc8\x95\xaa\x1a\xa4\x82\ \x16\xe8\x05\x77\x00\xdb\xb6\xf5\xde\xf7\xbd\xbb\x9b\xbb\x8b\xea\ \x69\xdb\xcc\xfd\xeb\xb7\x5f\xb7\x6d\x93\x7c\x88\xa5\xee\x69\xdb\ \x36\x20\x3d\x1a\xed\xf7\xbf\xf9\xcd\xcd\xe9\x04\xc0\x7b\x12\x00\ \xa3\xf4\x6d\x22\x20\x0e\x28\x99\xe6\x94\x8c\x62\x19\x1c\x4f\x61\ \x73\xa8\xa8\xf5\x5d\x84\xad\x9b\x57\xc4\xf1\xc8\x55\x27\x9e\x95\ \x9f\x03\x7d\xdf\xa9\xb8\xe6\x6e\xe6\xec\xcc\x30\xb3\x4c\x55\x77\ \x77\x47\x37\x77\xf7\xdb\xbb\xbb\xbf\xfc\xd1\xdf\x50\x42\x39\xd3\ \xd5\xa4\x35\xf7\x50\x91\x10\xea\x10\xf0\xe5\x57\x6f\xfe\xf4\xbb\ \xdf\xde\x3f\xdc\x47\x02\x4f\x6b\x6d\x6b\xb9\x00\xd9\xf7\xfd\x2a\ \x83\xae\x85\x14\x12\xbe\xa6\x78\xb7\xd6\xe2\x4f\x86\x31\x30\x8c\ \xc4\x02\xea\xbd\x27\x73\x2e\x6f\xaa\x24\x30\x30\x47\x57\x93\xd2\ \x14\x89\xc1\x3d\x10\xd5\x93\x34\x22\xe2\xdd\x42\xaf\x2c\x8f\xbb\ \x5f\x1e\x1f\x43\x55\xe1\xce\x9e\x15\x34\x0f\x92\x0a\xb8\x1c\xd5\ \x85\x3f\x4c\x74\x3e\x91\x93\xdf\x3f\xdc\x37\x45\x63\xbf\xd9\xd8\ \x2e\x67\x61\xb0\x36\xf7\x54\xcb\x45\xbb\xa0\x5b\x3e\x31\xb7\xd6\ \x54\x94\xe8\x91\x59\x73\xc6\x29\xa4\x2a\xd1\x34\xdf\x48\xbb\xec\ \x7b\xdb\x14\x04\xe1\x16\x5a\x55\x55\x31\x33\xf2\x10\x1a\x0b\x11\ \x9b\x75\xd9\xf7\xca\x8c\x80\x93\xc5\x57\x79\x73\xba\xd9\xad\x77\ \xec\xb1\x97\x8b\x40\xe3\xf3\xe5\x32\xfa\x83\x4d\x37\x10\x81\xac\ \x9b\x57\x63\x81\xbd\x5f\x42\x49\xf8\xe2\xc5\xc6\x44\x97\xf3\x25\ \x44\xb2\xc4\x7c\x7e\xbc\xfc\xe6\xb7\xbf\xf9\xc1\x0f\x7f\xb8\x35\ \x63\x15\x06\x2b\xc9\x6e\x3d\x35\x62\x96\xd7\xcf\x7e\x7e\x70\xf3\ \xad\x69\x6b\xe2\xd6\x3b\x41\x9b\x7c\xfd\xfe\x4c\x60\x51\xa6\x11\ \x86\xe9\xbe\x6d\x9b\x96\x58\x3b\x78\xfa\xc2\x1c\x69\xe7\xe3\xcf\ \xd0\x88\x7b\x21\x06\x51\xef\x7b\xbc\xe5\x28\x73\x5a\xdb\x42\x73\ \xe4\xee\xf7\xf7\x0f\x51\x04\x59\x52\xc8\x25\x3e\x55\xf3\xde\xb6\ \x0d\x40\x7b\xf3\xc5\x9f\x42\x82\xeb\x48\xcf\x4a\x0c\x2b\x0b\x52\ \x52\xf0\x57\xac\xf1\x40\x00\xbc\x1b\x9a\xaa\x28\x5b\xb7\x69\x6b\ \x4b\xc7\x4f\x82\x77\x37\xc9\x34\x13\x61\xd2\x68\x8a\xd2\x6a\xe2\ \xdd\x8c\xc8\x42\xae\xe4\x70\x03\xc2\x68\x0c\x00\xdd\x2f\x0f\xf7\ \x7b\x1a\x99\x5d\x68\xb2\x4c\x42\xc4\x6d\xe6\xe4\xbc\xf7\x87\x2f\ \xff\xfc\xe5\xf9\xfe\xbd\x0e\xed\x84\xf7\xcb\x39\xeb\xe5\xe1\x91\ \x8a\x8b\xc0\xdd\xf7\x4a\xbc\x59\xe9\x2a\x03\x38\x3a\x66\xcd\x9e\ \xe7\xb6\xb2\x70\xec\x09\x54\x04\x6e\x66\x3d\xd6\xa5\x00\xed\xb6\ \x4b\xd0\x99\x9d\x95\x55\xb5\xc5\x4d\x6e\x20\x26\x28\x83\x44\xdc\ \x59\x25\x45\x77\x35\xd1\xe7\xe1\x07\xb4\xc4\xfe\x07\xb4\xbd\x3e\ \x5f\x11\x36\x9f\x3e\xd6\xc8\x7d\x88\x8e\x5d\x73\xa2\xee\x04\x26\ \x53\x56\x6a\x1a\x23\x5f\x11\x88\x88\x13\x9d\x5a\x03\x31\x1c\xd2\ \xb2\xa5\x69\x2a\xe6\x9d\x08\xb4\x89\x14\x56\x1b\xec\xbc\x44\x7f\ \x17\xf8\x3d\x4a\x3e\x4d\x45\x8c\x30\x81\xcc\x5d\xe1\x31\x16\x0e\ \x99\x79\xba\x8e\x45\xb4\xb5\x38\xd2\xdd\x9d\xc1\x24\x26\x1a\x53\ \x44\xe7\xf2\x86\x69\x08\xcc\x5a\x64\x20\x28\xab\x7a\x7c\xb0\x2c\ \xb7\x2f\xe5\xeb\xb7\x6f\xff\xb7\xff\xf5\x7f\x61\x62\x27\x63\x91\ \x9b\x6d\x73\xa0\x35\xcd\x84\x0b\x96\xbe\x5f\x82\x52\x61\xb6\x7f\ \xf7\xbb\x9f\x39\xac\xef\xbb\x30\xf5\xee\xaa\x22\xaa\x6e\xee\x4e\ \xf1\x9a\x55\xb5\xb5\x16\x5f\x74\x46\xd1\x23\x45\x3d\xbd\xf7\xb6\ \x35\x37\x7f\x78\x78\x88\x2c\xd4\x48\xaa\x0d\x3d\x2b\xc0\xee\xa6\ \xaa\xad\xa5\xf3\x8b\x59\x5e\xbe\xbc\xeb\xdd\x98\xc9\xd1\xfa\xee\ \x70\xcf\x28\x0d\x63\xb3\x3d\x0e\x15\x03\x48\xb8\x49\xb9\x0a\x54\ \x74\xcc\xca\x54\x05\x2c\xdd\x8d\xc7\xdc\xc1\x3d\x9b\x5d\x82\x93\ \xf5\x8e\xc6\xea\x30\x37\x6f\x4d\x89\x22\xc4\x58\x29\x3b\x6e\x4b\ \xca\x19\x0b\xe0\x11\xa2\xa6\x41\xc1\x0c\x84\x40\x6a\x64\x83\xb4\ \xca\xe5\x7c\xe1\x5f\xfc\xec\x67\xc2\x1c\xc0\x18\x16\x8a\xd7\x1d\ \xfd\x98\x85\xfc\xc1\x8d\x41\x6e\xdd\xdc\x85\x79\x3b\xb5\xa6\x4a\ \xe9\x91\x41\x2a\x87\x89\x44\x34\xa1\xfd\x06\x9e\x68\x63\x5a\xe9\ \x56\x25\xa6\xaa\x94\x1e\xf7\x24\xdd\x87\xf5\x48\x33\x00\x8e\xc5\ \x89\xd4\x61\xa2\xda\xb6\xc6\x45\x62\x24\x61\x8f\x19\x57\x48\x6c\ \xdc\xa2\xde\x23\x04\x63\xde\x5b\x8c\x1e\x19\x90\x50\x28\x48\xd4\ \x63\xb9\x3a\xf0\x68\x51\x63\xfa\x66\x70\x6a\x42\x4d\xa8\x29\xb5\ \x16\x61\xc9\xe2\x04\x80\xcd\xf6\xc6\x8d\x99\xcd\x3d\xd2\xa7\xe3\ \x18\x04\x3b\x83\xf7\x7e\xf1\x6d\x0b\xd8\x09\x07\x23\x14\xb4\xcf\ \x7c\xbb\x1e\x81\x3e\x11\xd5\x91\xb6\x0b\xe6\x10\x2e\x95\xee\x98\ \xdc\x2c\x28\x93\x03\xbe\x2c\x22\xa2\x8d\x39\x52\x6a\xc1\x9e\xd4\ \xae\x78\x78\xab\x86\x6a\x26\x80\x87\x96\x9f\x9f\x05\x52\x32\x52\ \x38\x1b\x2b\xef\x6e\x80\x39\x93\x7b\x9c\xd8\x91\x9a\xca\xd6\xf7\ \x10\x0d\x11\xf3\xd9\xcc\x2a\x5f\xd9\x83\x5d\xca\xc4\xc4\xdd\xfa\ \xb6\x9d\xb6\x93\xf6\xee\x66\xe4\x04\x6d\x2d\xec\x6b\x9a\xdc\xb7\ \x14\x7a\xf7\xde\xa3\x10\x37\xeb\xe4\x1c\x65\xc5\xb6\x6d\xac\xdc\ \xad\x6f\x6d\xbb\xbd\xbb\xbd\x5c\x2e\xe6\x26\xad\x79\xef\xd2\xc2\ \xda\x4c\xdb\xb6\x89\x48\x44\x00\x96\xdb\x87\xbb\xef\x4d\x1a\xdc\ \x55\x18\xaa\x66\xae\x4d\x75\xd3\xc7\xc7\xb3\xaa\x34\x77\x17\x15\ \x44\xfe\x50\x32\x9c\x74\x4c\x55\xba\xf7\x11\x52\x9e\x5c\x34\x22\ \x18\x85\xf9\x52\x72\xdf\x07\x09\x42\x18\x16\xec\x60\x04\x6d\xa0\ \xa7\x48\xcd\x3d\x04\x2b\x2a\x2c\xac\x20\x8f\xb2\xd8\x6b\x50\x93\ \x11\x2f\x19\x7e\xc7\x0f\x1f\xbe\x4e\xd0\x54\x4e\x16\x7c\x42\x4d\ \x19\x46\xa0\xee\xad\x89\x34\x19\x13\x1b\x47\x8e\x36\x67\x64\x15\ \x65\x43\x9f\x93\x9e\x5a\xd4\x85\x2b\xbd\x30\xd9\x51\x0b\xba\x7b\ \x6c\x42\x24\xb5\x73\xb4\xc8\x14\x23\x57\x43\x6a\x82\x5b\x6e\xfb\ \x4a\x2a\xaf\xad\x79\x3c\xe2\x44\xa4\x69\x9c\x3b\xb2\xc9\x47\x77\ \x27\xbb\x6c\x8f\xe7\xbd\x77\xf2\x5c\x79\x95\x4c\x32\x76\x82\x63\ \x88\x59\x80\x52\x55\x3a\x6d\x7a\xd3\xa2\x70\x77\x6d\xe2\xbd\x83\ \xa0\xad\xb1\x88\xb0\x8a\x92\xe4\x23\x27\xa0\xd5\x22\x44\x27\x39\ \x85\x06\x94\x85\x9b\xe6\x20\x4c\x83\x31\x02\x6a\x8d\xcd\x99\xd8\ \x99\xa5\x69\x33\x77\x4a\x5f\x10\x9b\x19\xd5\xfe\x3a\x02\x6e\xa2\ \x66\x13\x51\x33\x23\xf6\xd6\x08\x60\x55\x8d\x03\x5c\x23\x4c\xce\ \xfa\x91\x4d\xa3\x41\x11\xe5\x84\x56\x73\x3b\xb5\x74\xa4\x35\x85\ \x0b\x08\x4d\x18\x0e\x15\x55\x55\x71\xda\x7b\x2f\x6d\xe9\xa0\x1f\ \x27\xae\x31\xcc\x61\x37\xdb\x8d\xc1\xb5\x9d\x1c\xde\x7b\xf7\x50\ \xaf\x53\x81\x53\xe0\x44\xd2\x5a\xc3\x4c\x99\x26\x77\xcb\xb5\x9e\ \x92\x40\xe2\x4f\xc6\xf9\xe3\xf0\xcc\xa1\x8f\x71\x5d\xb2\x32\x8d\ \x84\xa3\x69\x89\x8c\xcd\xa0\x26\x8d\x7c\x04\x92\x18\xa5\x4a\x3c\ \xc0\xb6\xd6\x42\x88\xdc\x3c\x9d\xd6\x8e\x82\xa7\x82\x62\x86\x19\ \x27\x82\x23\xa8\xb2\x95\x63\x40\x15\xd8\x12\xef\xcd\xd3\xf7\x16\ \xc2\x94\xda\xd9\x51\x61\x6b\x95\x09\x35\x33\x8f\xb2\x9e\xc9\x60\ \xe9\x8d\x4d\xf9\x1d\x3c\xc0\xea\x3c\x91\x28\xd1\xbc\x8a\x54\x78\ \x6a\xd6\x08\x20\x50\xd0\x5f\x20\x0b\xe1\xa6\x2a\xb1\xb4\x81\xc4\ \x9c\x9a\x65\x81\x0c\x8d\x55\x9e\x03\xc6\x3c\x55\x5a\xf1\x5b\x6a\ \x0e\x99\xa3\xe8\xd8\xed\xce\x69\x31\x88\x58\x54\xd7\x10\x0b\x2a\ \x70\x7b\x71\x2b\x82\xc1\x01\x9c\x4e\xdb\xa9\xe9\x1e\xf3\xfa\x26\ \xaf\x6f\x4f\xbc\xbf\xf8\x20\x54\xb1\x8b\x9a\x2f\x25\x9b\x1a\xc9\ \x29\xb9\x53\xc4\x5a\xc1\x9d\xd8\x75\xd3\x17\x5b\x6b\x69\x69\x29\ \x23\x16\xa7\x6b\x28\x8d\xac\x04\xc9\xcd\x95\x18\x4c\x9a\x76\x37\ \x33\x53\x62\xe1\x26\x4a\xee\xc6\xb2\xc5\x12\xaf\x77\x72\x77\x6d\ \xf9\xce\x92\x19\xe9\x16\x9d\x68\xf8\x94\xcc\x7b\x66\x0f\xa6\x72\ \xcf\xac\x77\x66\x06\x2e\x53\xac\x08\x07\xd8\x03\xee\x9a\xef\xdf\ \xdd\xc1\x4d\x32\x9f\x02\xe4\x80\xb9\x87\xe8\xe4\xdc\xfb\x16\xc5\ \xba\x53\xf4\x97\xa9\x46\x11\x8a\x5f\x4a\x2c\xad\xe9\x6e\xc6\xc2\ \x4d\xdb\xbe\xef\x31\xde\x04\xd1\x6e\x9d\x39\x34\xb2\x50\x29\x6a\ \x85\x43\x99\xc1\x59\x3e\x84\x49\x3a\x6e\x48\x89\xc5\x81\x7b\xa9\ \x06\xa8\x66\xa2\xce\x92\x6c\xd6\x98\x82\xa0\xac\x69\x02\x16\xd5\ \xf8\x15\xdc\x34\x15\x41\x60\x22\x52\x38\xc8\x24\x5d\x63\x11\x2f\ \xc0\x66\xbd\x35\x56\x3d\x35\x62\x71\x62\x0d\xca\xbd\x1f\x10\x69\ \x1c\xa1\x30\xc9\x79\xe2\xb2\xc8\x85\x34\x26\xe5\x4a\x51\x5e\xe4\ \xaa\x39\x97\xb4\x9c\x32\x13\x1f\xfa\xb6\xb2\x08\x08\xc7\xf9\x4b\ \x12\x8d\x6f\x3d\xc9\x29\xce\xe5\x10\x1b\x41\x99\x73\x22\x57\x01\ \x8e\xc3\x9f\x59\x5b\x90\x98\x65\x8b\xb9\xbb\xfb\xc8\x3d\xde\x9a\ \xd4\x72\x28\x67\xd9\x07\xf6\x57\x85\xdf\x0d\x10\x78\x3c\x41\xab\ \x30\xb0\xda\xfe\xd5\x84\xb8\xa0\x33\x4c\x10\xf1\x95\xae\xc7\x65\ \x6f\x26\x26\xb7\x30\xca\x64\x50\xa2\x5b\x27\x15\xf2\x1e\xd9\x89\ \x0a\xbf\x21\x98\x10\x8b\x86\x7f\x26\xcf\xc7\x7c\x29\xd1\x45\x88\ \x77\x37\x73\x15\xd9\xad\x07\xf5\x53\xe1\x0c\x87\x59\xe8\xb8\x42\ \xb4\x93\x03\x49\x47\x30\x9c\x82\x45\xe5\x66\x4c\x64\xf0\x14\x7c\ \x12\x71\x07\x7b\x60\x44\x79\x70\xd7\x98\x09\xce\x0e\x02\x1b\x91\ \x9b\x1b\x3b\x89\x48\xb7\x0e\x70\xa0\x61\x88\xe2\x10\x60\x73\x0b\ \x74\xbc\xa8\x7a\xef\x21\xce\x15\x25\xf3\x7c\xea\x25\x8b\x32\xda\ \x39\xc4\x45\x4c\x19\xaf\x22\xec\x66\xbb\xf5\x6d\xdb\x10\xab\xd8\ \xb2\xe9\xa4\x0d\x34\xce\x84\x10\x4e\x09\xe9\xd6\xc2\x17\x25\xa1\ \x20\xca\x94\x73\x5c\xfa\xa5\x36\xef\xc4\x03\xc7\x2a\x24\x2a\x44\ \x0c\xef\x61\xf5\x56\x16\x6d\x6a\x95\xdc\x68\x45\xd9\x36\xb3\xdd\ \xbc\x35\x65\x2d\xdb\x1c\x45\x68\x25\x11\x49\xe8\x41\x7b\x37\x11\ \x76\x57\xa2\xcc\x5c\x1a\xe9\x54\x80\x46\x0d\x12\xef\xdd\xe1\x64\ \x39\x5e\x52\x95\x26\xe1\x31\x49\x0b\x64\x55\x1b\x23\x30\x5e\x35\ \xa8\x4e\xb1\xd6\x88\x6a\xc7\xcc\x41\xb5\xe4\x90\xe1\x2e\x2d\x36\ \x19\x7c\xe4\x6c\x50\x9a\xe1\xc9\x2d\xa8\xb6\xe2\x59\x77\x45\x3c\ \x08\x97\x0b\x88\x72\x6e\x46\x19\x70\x50\x01\x46\x59\x0a\x22\xb6\ \x85\x12\x13\x2d\x16\xa4\x0e\xbe\xf3\x4c\x27\x8e\x31\xb1\xa5\x59\ \x2f\xe7\xbd\x2b\xe2\x44\x66\xfc\x20\x8f\x91\xcb\x24\xf5\x8c\x2b\ \xcc\xb1\xf8\x4f\xca\x6f\x85\x49\x6d\x1c\xfc\xf2\x71\x1c\x49\xc5\ \x50\x47\xbd\xbd\xef\x3b\x03\x2a\x0c\x73\x32\x23\xb8\xc2\x99\x39\ \x92\xeb\x04\x51\x2c\x04\x4e\x42\x38\x32\xec\x05\xbb\x07\xee\xdd\ \xa3\x65\xd7\x00\x7c\x16\xc7\x35\xe6\x99\xa7\x6d\x7b\x7d\x7a\xd1\ \x7b\xbf\x5c\xce\x9c\xa3\x76\x88\x8a\xbb\x13\x53\x6b\x0d\x01\xeb\ \xd1\x51\xd8\x4a\xe6\x3b\x66\x42\x08\xbb\x5b\xc8\x40\xd3\x15\x55\ \xc7\x88\xaa\xac\x90\x0a\x91\xf1\x36\x4b\xce\x9c\x18\x8a\x09\x03\ \xa3\xb0\xe3\x13\x8b\xca\x08\x03\x8c\x51\x4a\xac\x6b\x4f\xa7\x53\ \x6b\xcd\xcc\x38\xf1\x24\xeb\xd0\x25\xc7\xf7\x21\x44\x6c\xdb\x76\ \xbe\x9c\xcd\x4d\x9a\x36\x11\x6d\xcd\xe1\x17\xdb\x89\xb8\x6d\xcd\ \xa3\x1f\x93\xe8\xba\x23\xf5\x8d\x95\x05\x03\x8f\x58\x17\x3d\x33\ \xb7\x6d\x8b\x0e\xaa\xb5\x36\xd2\x99\xa6\x49\x3a\x94\x48\xc9\xc7\ \xac\x36\xaa\x40\x64\xad\x29\x33\x5f\x2e\x17\x22\x6a\x4d\x99\x34\ \x88\x14\x0e\x3a\xa9\xce\x10\x73\x91\xa6\x10\x41\x64\x6d\xb8\x52\ \x2b\x95\x5b\x08\xe6\x20\x22\xce\x32\xc2\xab\xd3\xf4\x2b\x4a\xe4\ \xb9\x18\x89\x42\x33\x36\xad\xc3\x3b\x5d\x22\x78\x45\x6a\xc7\xb3\ \xff\x00\x09\x8b\x9b\x33\x98\x1b\x39\x04\xee\xb9\x5f\xa4\x11\xf9\ \x22\x60\x1f\x16\x87\x38\x88\x32\xc2\x4e\x19\x9c\xa3\xdc\xb8\xf4\ \x35\x8c\xd0\x9e\x68\x81\x84\x69\x10\x01\xd1\x5e\xfa\x20\x09\x31\ \xb3\x39\x42\x3e\xbc\x66\x77\x45\x6e\x51\xae\xa8\xb5\x96\x18\x28\ \x53\xca\x4c\x0a\xa0\xec\xbc\x02\x0e\xea\xe3\xa4\x20\x02\x54\xa3\ \x5c\x26\x15\x51\x56\x47\x27\xb8\x72\x2c\x61\xc0\x19\x38\x49\x64\ \xae\x42\xec\x10\x82\x72\xb8\x66\x3a\x41\x98\x44\x5c\x36\xc9\x68\ \x6c\xcb\x21\x8a\x4b\xcc\xc5\x12\x44\x05\x02\x7d\xef\x7b\xdf\xfb\ \x87\x7f\xf8\x1f\xf7\x4b\xff\x77\xff\xfe\xff\xf8\xfd\xef\x7f\x57\ \x34\x9f\x04\xbb\x6c\xdb\x66\xec\xe8\x14\x4e\x71\x98\x47\x55\xee\ \x0e\xf3\xee\xa0\xd6\x52\xb1\xc2\xca\x02\x01\xdc\x7a\x97\x26\xe8\ \x16\x21\x28\xee\x1e\xfd\x62\x18\xaa\xab\xf3\x4f\xa6\x6c\xef\x3d\ \xaa\x77\x61\x5e\xb9\x7e\x79\xe0\x4f\x4e\x22\x37\x6d\x31\x5b\x0a\ \xaa\x68\x78\x7b\xdd\xbd\xba\x76\x1a\xf9\x61\x22\xb2\xf7\x5d\xb5\ \x11\xd1\x6e\x5d\x65\x43\xba\xb9\x94\xdc\x44\x55\xdb\x49\x08\xd6\ \x7b\x61\x84\xd8\xbc\x4b\xae\x80\xc8\xc8\xca\xca\xb9\xe4\x33\x80\ \xc0\x39\x61\xb3\xda\xff\x8c\x77\xe2\xec\x44\xb4\xef\xfb\x91\xd4\ \x4e\x44\xb0\xde\x59\x34\x11\xb1\x41\xaa\x68\x4d\xc2\x0f\x17\x59\ \x99\xdd\x03\xd0\xd1\xc2\x63\xa2\xac\x53\xfe\x9c\xfc\xca\x64\x0c\ \xc7\xd6\x1f\xc4\x4d\x35\x74\x96\x52\x5c\x12\xd2\x58\xff\x3b\xb1\ \xa8\x2a\x21\xf7\x30\x2b\xae\x3d\xeb\x99\x78\xc5\x51\xab\x29\x47\ \x05\x47\x1c\x24\x79\x8c\xfe\x24\xc2\x1c\xa4\xa2\x54\x50\x41\xdb\ \x52\xb9\x34\xee\x46\x60\x11\x0d\x75\x68\x2c\x52\x20\x9e\xcf\x64\ \x77\x38\x58\xb9\x35\x0d\x75\xa3\x79\xaf\x84\x22\x46\x46\xd2\x31\ \x8f\x31\x38\x53\x24\xb1\x20\xed\x78\xe9\x34\x73\x78\x68\xd1\xdd\ \x2d\x85\x35\xc0\x74\x26\x7b\x8f\x78\x03\x92\xfc\x34\x14\x39\xb1\ \x06\xbb\x93\xc5\x1e\x7a\xc8\x99\x99\x59\xd3\x42\x65\xca\x1a\xd1\ \x95\x31\xdd\x90\xb4\xca\x85\x67\x27\x09\x9e\x5c\x73\xb9\x74\x63\ \xc1\x03\xff\x60\xee\xf7\x0f\x0f\x7f\xfa\xfd\xe7\xa1\x9e\x13\x11\ \x83\x25\x06\xdd\x8c\x99\xdc\x8c\x39\x58\x44\x99\xae\x2b\x4b\x2e\ \xac\xa8\x06\x7c\x32\xca\x74\x92\x91\xcb\xc7\x2e\x6c\xbd\x87\x20\ \x80\x39\x5c\xab\x14\xc6\xa7\xd6\xd4\xdd\x00\x6c\xaa\x2a\x27\x37\ \x8b\x71\x81\x97\xde\xbc\xb5\x26\x22\x09\x2a\x82\xa7\x2c\x4f\x03\ \xa4\xe0\x87\xcc\x85\xf8\xb4\x49\xb6\xad\xa5\x55\x5d\xea\x1b\x71\ \x17\x91\xde\xbd\xf7\x1e\x43\x36\x21\xba\xbd\xbd\xa5\xc8\x23\x61\ \xd1\x18\xb5\x06\x2a\xc4\xc5\x60\x4a\x9a\x61\xd2\x35\x49\x9f\xc6\ \xb2\xc0\xad\xa8\x4a\xce\x8c\x66\xc0\xd1\xd8\x49\xc4\xc7\x12\x13\ \x8e\x18\xa3\x8b\x08\xc8\xba\xef\x60\x8a\xdb\x18\x84\x6e\x3d\xed\ \x7d\xc2\xc2\x0d\xd4\xc9\x49\x45\x1b\x2b\x89\x4a\x2c\x1d\xcc\xad\ \x06\x5b\x19\x97\x58\x4c\x32\x4b\x01\xa5\x73\xaa\xc5\x98\xda\x4d\ \x1b\x61\x4e\x33\x4c\xc4\x3d\x29\xd9\xc5\xab\x4e\xa3\x75\x9a\x75\ \x28\x11\xfa\x03\x1f\xc3\x6c\x99\x2e\x87\xda\xe3\xef\x61\x0c\x8e\ \x16\x00\x00\x20\x00\x49\x44\x41\x54\xd2\x5a\x68\x34\xe3\x10\x55\ \xd5\x4c\xf4\xcb\x6c\xe4\x18\xe1\xe5\x7c\xc2\xa2\x26\x4c\x6f\x57\ \x51\xd0\x08\x1e\xd5\x39\xe5\x9e\x81\x18\xcc\x6e\x21\x4e\x1d\xf0\ \x72\xf2\xee\xd0\xe0\xe3\xc5\xb8\x41\x95\x98\xbc\xf7\x50\x1f\xc6\ \x95\x9b\xb2\xb3\xa8\x01\x24\x1c\x6b\x99\x7e\xae\x22\x2a\xc1\x83\ \xe3\x22\xd5\x32\x33\x29\x49\xea\xe1\x02\x7e\x0b\x53\x51\x0d\x26\ \x68\x9c\xe3\xa5\xef\x4b\x00\x1a\x13\x40\xe6\x60\xcf\x70\x9b\x30\ \xfb\x0a\x13\x24\xb7\x3d\xdd\xfc\x8f\x7f\xf8\xfc\xf3\xdf\xfd\xcf\ \xaa\x2a\x01\x5c\x80\x10\xb1\x8a\x22\xac\x13\x44\x2a\x02\x36\xe4\ \x37\x19\x48\x48\xa8\x8a\x79\x1c\x20\x11\x55\x92\xb7\x44\x56\x00\ \xa0\xad\x35\x01\x89\x26\x34\x45\x84\xdd\xcd\xac\x13\x69\xd4\x2d\ \x7b\xdf\x91\xd2\xf1\x42\x43\x45\x06\x81\xea\x68\x45\x92\xed\xc8\ \x5c\x01\x71\xfc\x70\x79\x88\x2b\xb5\x5b\x8f\xbb\x4b\xb7\xc6\x45\ \x3f\x8b\x2d\xb3\x99\x87\xa9\x93\x62\x4e\x45\x68\xda\x44\xc4\xcc\ \x6e\xda\x06\xf2\x7d\xdf\xa3\xc1\x68\xaa\xe9\x78\x66\xdd\xf7\xf2\ \xa6\x88\xc4\x18\x54\x45\xe2\x06\x10\x11\x88\x60\x61\xac\xc5\xf3\ \x7a\x94\x6a\xaa\x4a\x84\xd6\x5a\x28\x54\xe2\xce\xb9\x5c\x76\xe6\ \x58\xf8\x44\xfa\xd6\x18\xdc\x1b\x11\x85\x35\x35\xe6\xc8\xbb\xed\ \x9b\x6c\xfa\x17\x9f\x7d\x1c\x63\x97\x45\xed\x89\xf1\xfb\x78\x70\ \xa6\x46\xae\xe5\xc2\x93\x8f\xcb\x4d\x33\x97\x94\x06\x21\x5f\x16\ \xb7\xd1\x1a\x6c\xbf\xe6\x63\x49\x31\x72\x55\xa0\xc1\xb9\x08\xdf\ \x3d\x4f\x2a\xe3\x40\x60\x10\x9c\xeb\xd8\x8d\x02\x2a\x2b\xef\xb2\ \x1f\x16\x87\x6b\x4d\xe5\xb9\x26\x6a\x83\x43\xaa\xc4\xaa\x43\xf5\ \x57\x83\x41\xa2\xde\x3b\x88\xb6\x6d\x73\xb7\x0c\x48\xcc\xcf\x21\ \x0f\x7e\xc9\xdb\x4d\xa4\xf0\x1c\x52\x6f\xbc\x22\x93\xa2\xff\xf1\ \xdc\x0c\x86\xdf\x75\xef\xfb\xf9\xe2\xbb\xe5\xae\x6b\xb2\x95\x2b\ \x48\x4b\x24\x87\x1c\x35\x46\x37\x87\xa8\x6c\xa7\x76\xfb\xf2\xae\ \x6d\x9b\x93\xd5\xdc\x71\xa8\x84\xa2\x26\x32\x21\x6e\x4d\xdc\x91\ \xbd\x74\xaa\xba\xfa\x92\x98\xe7\x75\x6e\x7b\xa8\x28\xf2\xf1\xa4\ \xac\x39\xeb\xa7\x70\x5e\xc5\xb7\xa9\xf1\x00\x05\x2d\xbc\x79\x62\ \x21\x77\xb3\x6e\x11\x3c\xd1\xb6\x56\xe7\x33\xb7\xd3\x29\x4a\x0c\ \xc0\xc3\xfb\x39\xdb\x86\x2c\x84\x72\x7e\xa9\xaa\x44\x1c\xe7\xc0\ \x9a\x06\x3b\x2e\xee\x11\x7a\x1e\xd7\x71\x5c\xb2\x5c\x89\xae\xb3\ \xc4\xca\x70\x45\xa2\x9a\x86\x67\x4e\x53\x6b\xf1\xee\xe2\x46\x15\ \x99\xf9\x17\xf1\xb7\xba\x59\x48\x51\xe2\xd7\x99\xf5\xfa\x16\xb4\ \xb5\x4d\x24\xa9\xe2\x41\x2c\x89\xd9\xda\xf8\x09\x99\x9c\x69\x60\ \x62\x37\x37\xb7\xd6\x5a\x5e\x9d\xba\x46\xb3\xbb\xaf\x28\xdf\xea\ \xa7\xd3\xf0\x94\x07\x62\xad\xb1\xc7\xea\x50\xe3\xa7\x8f\xe4\x82\ \x8a\xc0\x6d\xaa\xe3\x5f\x8e\xaf\x9f\x01\xb7\xdd\x41\xcc\x0d\x20\ \x8b\xea\x2b\xa9\x5a\x61\x5f\xcb\x51\xb6\x44\xed\x35\xf1\xbe\xa8\ \x14\xd1\x38\x69\xe2\xae\x03\x3c\x47\xef\x25\xbc\x95\xd1\x0e\x2e\ \x14\x39\x5a\x30\xbf\x81\x5f\x48\x73\x41\xce\x37\xc9\x3d\x3e\xdf\ \x11\xa2\x14\x4b\x6b\x82\xa8\x00\xe8\xd6\x9b\x68\x2d\x2b\x24\x3e\ \x32\x09\xd5\xb6\xcc\x07\x44\x70\x73\x63\xda\xa1\xcc\x96\xb9\x2d\ \x33\x13\x2f\x45\xab\x44\x80\x31\x2b\x70\x40\xa8\x67\x02\x76\xef\ \xb1\x61\x88\x95\x91\x2a\x47\xe4\x21\x67\x3e\xb6\x81\x4d\xe9\x24\ \xf5\xa3\x1c\x90\x11\x29\x36\x76\x06\x84\x10\x5c\xa9\x72\x6b\x5a\ \x01\x69\x09\x0f\xee\xb6\xc7\x43\x40\x69\xb8\xf0\x7d\xb8\x9a\x7b\ \x77\xb3\x5d\x64\x1b\x64\x5a\x5e\xf2\xd5\x00\x3c\x3e\x3c\xdc\xdc\ \xdc\x44\x7f\x22\x2e\xad\x55\xf0\x60\x2d\xd3\x56\xbc\x1f\x2a\x2e\ \x66\x41\xc0\x26\xfb\x7b\xa8\x5a\x46\xb9\x35\x2e\x77\x2b\xaf\xfe\ \xf8\x5b\xab\x1f\x20\x1b\x18\xb3\x25\xbf\xac\x47\xe9\x38\xae\xf8\ \xb8\xb5\x46\xe4\xce\xd8\xe9\x45\xd7\x89\xdc\x14\x69\xd3\xe6\xde\ \x01\x27\x51\x76\x8f\x9f\xb3\x6d\x5b\x2c\x52\xe3\x52\x30\x8b\xde\ \x82\x9b\x88\x46\x67\x49\x24\xc1\xd0\xc8\xe1\x60\xcc\x74\x75\xba\ \xd3\x38\x6f\x9b\x35\xd5\x84\xc6\x86\x33\x1e\xcc\x95\xb4\x1e\x7f\ \x12\x9e\x06\x23\x00\x99\x4a\x16\x94\xa5\xe0\x1d\x9a\x97\xad\x1a\ \xe5\x17\xca\x8d\x0a\x46\x42\xc3\xe0\x3b\x17\x49\x02\xf9\x49\xbb\ \x8f\x40\x80\xc4\xd4\xe6\x65\x09\x8e\x46\x6b\xcd\xa4\xf4\xcc\x26\ \xe7\x01\x49\xa0\x49\x50\x8d\x6f\x42\x55\x59\x05\x66\x71\xd8\x12\ \x73\x6b\x4a\x65\x32\xf1\x14\x71\x7b\x37\x63\x6d\xe9\xaa\x54\x85\ \x3b\xcc\x2c\xee\x3f\x4f\xed\x9f\x10\xb1\x6a\x03\xb9\x4a\x97\xcc\ \xe0\xc8\x29\xc2\x9c\xea\xcc\x51\x5e\x14\xa1\x34\x51\xee\x44\x99\ \x58\xda\x54\x1b\x09\xd5\x9e\x4e\xa9\x52\xb9\x34\x01\x67\x31\x97\ \xa5\x10\x34\xa6\xe2\x4e\x58\x34\xa3\x57\x01\xdf\xb6\x6d\xcc\x97\ \xeb\x99\x96\xea\xe6\x7c\x46\x11\x66\x39\x50\xd7\x2e\x73\xcb\xba\ \x2b\xed\x9f\x9c\x55\x56\xaa\x6f\xb2\x76\x30\x22\xeb\x3d\x16\xf6\ \x45\xe4\xd2\xba\xfa\x6d\xb8\x9b\x01\x5c\x2e\x17\x6d\xad\x89\x8a\ \xea\x68\x7d\xa3\xb3\xdd\xf7\xae\x4a\xd9\xa8\x54\x16\x5d\xe8\xd9\ \x6b\x1f\x0d\xf7\x99\x25\x18\x45\x41\x4e\xa8\xea\x8b\x30\x33\xb3\ \x9c\x8c\x5b\x85\x6a\x8d\xf7\xd5\x7b\x1f\x15\x9a\x99\x89\xa8\xa4\ \x0d\x5b\x2a\x2b\x7b\x04\x47\x13\x31\x8d\x05\xe8\x55\x5c\x8f\x9b\ \x05\x8c\xb7\x8d\x7d\x1f\x60\xaa\x3c\x42\xd5\x43\xdf\x1a\x23\x0a\ \xc9\xcd\x4c\xe8\x53\x9c\x25\x73\x4c\x45\x98\x3a\x15\x42\x2d\x86\ \x15\x99\x8d\x11\x92\x6a\x25\xaa\xf1\x76\xc6\x04\xc4\xe3\x33\x9b\ \x94\xa6\xe9\x79\x4e\x0c\xd3\xe2\xd3\x81\xc5\x18\x58\x99\x0d\x44\ \x42\x2d\x78\x76\x45\x18\x9f\xc1\x43\x23\x7b\x97\xb9\x6d\x5b\x34\ \x0d\xf1\xe5\x8d\x73\xbf\x14\x6d\x79\xea\x0e\x12\x3d\x8b\xae\x39\ \xc0\x79\x24\x89\x08\x4b\xac\x87\x87\xac\x56\x42\x93\x2b\xb2\xb5\ \xed\x3a\x43\x57\x15\xec\x14\xd9\x24\x95\x2c\xad\x33\x75\x2c\x97\ \x5e\x59\x4d\x8c\x7c\x84\x05\x4f\x5c\x07\xa9\xa3\x8e\xac\x31\xb8\ \x8b\x5a\xd6\xd1\x61\x44\x9b\xc0\x4d\x58\x54\x95\x49\x98\x3a\x8b\ \x88\xb2\xb9\x8d\xa7\x4c\x1c\x7d\x19\x81\x94\x69\xf4\x5e\xad\x30\ \xcc\xf6\x7c\xdf\xcc\x71\xf9\x6e\x5b\x93\x08\xe9\x0c\x45\x4c\xa8\ \x45\x80\x46\xd4\xb4\x11\x87\x90\xc9\xdc\x7c\x14\x72\xe3\xe4\x71\ \xb3\x4d\xb5\x25\x15\x96\x28\x66\xd6\xa0\x41\x22\x57\x51\x26\x88\ \xaa\x9b\x99\x19\xf5\x0e\x36\x65\x89\x02\xac\x6a\xe0\x50\x58\x47\ \x83\xce\x19\x89\xe5\x60\xf6\xd0\xfa\x04\x41\x32\x8a\xa2\xde\x7b\ \xb7\x1e\x0a\xb9\x98\xee\xc5\xad\xd2\x5a\x8b\x3b\x90\x99\x4f\xa7\ \x53\x7c\xef\xad\x35\xb3\xde\xbb\x99\xf5\x7d\xdf\x25\x3c\x12\xad\ \xf5\x7d\xdf\xfb\x63\xe4\xb2\xe9\xa6\x85\x11\xd4\xd6\x18\x20\x33\ \xeb\x70\x55\x7d\xf1\xe2\x45\x74\x5f\xa1\x76\x8b\x1b\x4f\x92\x41\ \x47\xad\x35\x59\x22\xb6\x05\x25\xd1\x9f\xd8\xe8\xca\x23\x08\xb3\ \xae\x46\x52\x05\xc8\xc8\xaa\x27\x94\x4a\x5f\x89\x7b\x66\xc0\xb6\ \x75\x94\x63\x85\x31\x21\x22\x6e\x2d\x9f\x0d\x53\x9d\x31\x6c\x3a\ \x9c\xd3\xe4\x1c\x71\xfe\xbf\x5d\x5d\xc7\xda\xe4\xc6\x0d\x44\x6a\ \xce\x2f\xdb\xef\xff\x9e\x3e\x78\xb5\xc3\x46\xf0\xa1\x80\x26\x57\ \x3a\xe8\x53\x9c\xc4\x0e\x40\xa1\x82\x10\xf2\xca\x46\xfa\xd7\x60\ \x13\xb4\x64\xf4\xe7\x85\xde\xae\x6c\x22\x0f\x6d\xe6\xb1\xc4\x4e\ \x58\x47\x8e\x7d\x4e\xa7\x0e\x68\x0f\xce\x9e\xe3\xb6\x71\xe7\x01\ \x02\x14\x63\xce\xf6\x8c\x85\x46\x40\x91\xfe\xd5\x8c\x1b\xbc\xa9\ \x59\xb5\xeb\x62\x83\x24\x99\x49\x51\x9c\xd4\xf6\x0e\xc5\x49\x29\ \xc5\x59\x00\x2a\x28\x5f\x94\x90\xc7\x14\xa2\xb9\x6b\xb3\xb4\x87\ \x90\xca\xc9\x77\xec\x0e\x04\xe3\x1a\xe7\xac\x14\xca\x0c\xcd\x0c\ \x31\x03\x1c\x3f\x19\x27\x29\x2c\x39\x84\x55\xa2\x0a\x40\x6d\x59\ \x99\x29\x6a\x4c\x94\x11\xe7\x4e\xce\x48\x08\xeb\x92\x48\xd6\x02\ \xce\x40\xc2\x84\x61\x40\x4f\xb9\x29\x32\xc9\x7d\xad\x15\xee\xf3\ \x3f\x46\xe0\xa2\x46\x2d\x78\xef\xbe\x46\x88\xed\xba\x8e\x6b\x03\ \x0b\x95\x96\xc2\xf8\x30\xab\xb2\x42\xe2\xcd\x3d\x8f\xa0\x57\x0d\ \x8f\xd4\x93\xa8\x42\x80\x82\xb5\xa6\x54\x24\x63\x14\x5d\x63\xf6\ \x8a\x65\xea\xee\xe7\x27\xed\x0d\x96\x41\x49\x11\xee\xe9\x4c\x64\ \x4b\x97\x59\x56\x31\x95\x99\xe6\x8e\xaa\x62\x6d\x47\xc3\xfb\xbe\ \xd1\xf4\x47\x74\xf2\x6d\x6b\x49\x00\x18\xb6\xf1\xc7\x53\xf2\x61\ \xaa\x23\xee\x0e\x58\x05\x13\x12\x55\x25\xe6\x9e\x4f\x8f\x8f\x49\ \x53\x69\x22\xfb\x5e\xef\xcc\x89\x12\x51\x15\x4e\xf4\x85\x59\xd2\ \x4f\xa2\xa8\xc8\x54\x93\x68\x14\x11\x18\x92\x74\x13\x1c\xe1\x3d\ \xf0\x9a\x71\x55\x1f\xf4\x2a\x58\x13\xaa\x9c\x91\xd3\xed\xb7\xab\ \x38\xb7\x95\x66\xfb\xa4\x9e\xd8\x6b\x69\xb7\xd8\x06\x1f\x99\x4f\ \x4e\xc0\x58\xe1\x62\xe9\x67\xb5\xd2\x65\x86\x06\x91\x09\xce\x8f\ \x09\x17\xf1\xf1\x87\x13\xa6\xca\xc8\xe0\x20\xae\xce\x37\x9f\x7c\ \xe6\xd9\x65\x68\x7b\xfa\xc0\xe8\x04\x1b\x02\xbc\xab\x62\x5c\xa9\ \x2a\xed\xc7\xd0\x63\xd6\xb3\x88\xf9\x0c\xa4\xdf\x41\x65\x8d\x6b\ \x25\x55\x12\xeb\x2c\xd5\x6a\x76\x46\x55\x45\x3a\xa6\x1f\x95\x29\ \xca\x24\xe5\x19\xe5\x39\xf5\x02\x43\x73\x44\xcf\x03\x7e\x12\x2d\ \xa1\x23\x62\xd6\x88\x9b\x28\xb8\x05\x67\x85\x43\x3a\xc3\x29\x8b\ \x45\x6c\x2d\x9c\xfd\x80\x22\xf1\x1f\x0c\x5d\x8d\xd1\x24\x19\x33\ \x89\xf8\xde\x6a\x76\xd6\x13\xc6\x44\x3e\xa6\x79\xc5\xc5\x34\xac\ \xd3\x48\x74\x86\xb8\x8b\x54\xfa\xaa\x41\xbd\x74\xdf\x77\x7f\x86\ \x6c\xd0\xe2\x7c\x60\x22\xb2\xcb\x06\x2d\x68\xd3\x0f\xb3\x36\xb0\ \xae\x22\x90\x2f\x3f\x9f\xcf\xaf\x5f\xbf\xdc\x1d\xf3\xcd\x39\x8f\ \xea\xbe\x3d\x32\xaa\x45\x01\xc6\xc2\x98\x5a\x30\xb3\x2d\xe5\x1e\ \x28\x15\x18\xd6\x99\xa1\x6a\x19\xe9\x19\x60\xfd\xff\x93\x1a\x3f\ \x7f\xac\xb5\x32\xd3\x4e\x12\x1d\x5c\x41\xde\x5a\x94\x46\xc6\x54\ \xa7\x6e\x8e\x13\x9a\x29\xcc\xd7\xba\xb2\x71\xe7\xe6\x4d\xf5\x38\ \x67\x2a\xd7\x96\x38\x33\x7e\x79\xa9\x57\xc8\xa1\x88\x41\xaf\x9b\ \xd5\xb6\x77\xbe\x03\x92\x85\x2a\x04\xb3\x25\x9f\x5c\xec\xca\xd3\ \xfc\x4d\xe2\x53\x55\xa6\xa8\x58\xb7\x5e\xd3\x5e\x13\x65\xe0\x84\ \x0f\xe8\x9c\xea\xf0\x03\x3a\x71\x86\x3b\x35\xf1\x38\x36\x42\x2d\ \xa3\xda\xc0\x7a\x87\xf8\xb1\x3f\xd2\x32\x3a\x97\x58\x77\xa5\x7f\ \xa6\x68\xb4\xa4\xaf\x81\xff\x66\x21\x09\x4a\x08\x8f\x53\xb8\xb5\ \x37\xf1\x2b\x3e\x88\x5e\x9e\xf0\x44\x27\x9b\xb1\x70\x07\x67\x64\ \xc4\xd8\x13\xd3\x3b\x53\xbc\xad\x19\x58\x18\xf3\xc4\x63\x4a\x8f\ \x8b\x31\x33\x87\x8b\x3a\x91\x8f\xcc\x22\x5a\xed\x34\xd8\xc6\x69\ \xf5\x38\x88\xc0\x2d\x9a\x30\xee\xc9\xdc\x20\x94\x9d\xb3\x16\x27\ \x90\xa0\xc1\x9a\x13\xce\x23\x88\x19\x02\x72\x4a\x62\x65\x14\x1e\ \x33\x27\xf5\x67\xb2\x49\xe5\x11\x05\xef\x23\xa2\x4b\x4d\x45\x3d\ \x1c\x7d\x36\xfe\x7b\xb0\x2b\xce\xf2\x9b\x7f\x28\x66\x82\x9b\xad\ \x0a\x49\x5c\x81\x72\x25\x33\x22\x52\xa4\x41\x64\x14\x51\x47\xeb\ \xa5\xa2\xba\x8c\xd2\x31\x0a\xa8\x2a\x15\x85\xb8\x75\x8e\xdd\xe3\ \xa0\x5a\x22\xb4\xae\xe5\x3b\x44\xe4\xf3\xf9\xe4\xfd\xad\x57\x9e\ \xee\x69\x9c\x4e\x53\xd7\x7c\x82\x88\x80\x6f\xfa\x09\xda\x68\x83\ \xd4\x8e\x13\x19\x1f\x20\x26\x9b\x42\x30\x23\x30\xf2\xcc\xa6\x8b\ \xb7\x6f\xdb\x49\x6e\x3c\x6e\x86\x20\xb5\x61\x1c\x56\xd5\xce\x4c\ \x30\x92\xe5\xd2\x88\xad\xaa\x07\xa0\x50\x99\x7c\x0e\x04\x69\x88\ \x36\x8f\xaa\x83\x1e\x9a\x4d\x50\x14\x98\x7c\x57\x04\x92\xa1\x9e\ \x60\xe1\xaa\x50\x39\x71\x61\xe7\x49\xc8\xe3\xb2\x89\xc9\x06\x47\ \x84\x3b\xdc\x67\xda\x78\x73\x12\x0c\x82\xf3\x81\x3b\x3b\xf6\x8c\ \x3a\xb1\xb9\x51\xda\x8e\x00\x3a\xb0\x63\x0f\xaf\x22\x03\x60\x46\ \x93\x0c\x22\xc3\xa3\x2d\x0c\x06\x83\xe0\x86\xd3\xb3\xbd\x6e\xea\ \xb1\x95\xc2\xf1\x39\xee\x5a\xc2\x58\x8a\xa2\xcc\x9c\x45\x22\x92\ \x70\xab\x92\x33\x46\x2e\xd6\x36\x39\x6f\x99\x2a\xa6\x6f\x93\xb6\ \x70\x50\x0f\x80\xbf\x11\xde\xf6\x17\x4c\x88\xe7\x03\xc7\x5c\x8d\ \xcf\x84\x63\x2e\x36\x3c\xc4\x06\xc4\x39\xb8\xcd\x6b\xf8\xc9\xfa\ \x1e\x09\x91\x1c\x73\x17\xdc\xe4\xf8\x26\xc7\xd7\x0e\x3d\xd5\x91\ \x3f\xca\x6b\x2d\xbe\xf1\x34\x46\xe5\x0f\x37\xea\xf6\x22\x65\x48\ \xc5\x0f\xa4\xd6\x23\x20\xf7\x79\x59\x80\xd7\xe4\xee\xb8\xc0\xe7\ \x46\x45\x28\x44\xb3\x8d\x4e\xb8\x5a\xec\x0d\x18\x63\x34\x91\x79\ \xb8\xf0\xaa\x46\x85\x3b\x4d\x97\xda\xd7\xf7\xde\xdb\xe6\x2e\x1d\ \x8c\x84\x8f\x3c\xc1\xdd\xad\xdd\xe0\x8b\xaa\x34\x25\x4f\x64\x51\ \xd1\x61\x0c\x75\xa3\x02\x89\x48\x52\xc9\x12\x21\xf2\xf0\x4c\x7f\ \xe5\x8d\xd4\x18\x1e\xc9\x18\xc3\xf4\x42\xe9\xa0\x03\x9e\xd0\x0b\ \xe4\x0c\x08\xb7\x1c\xae\x11\xc0\x6e\xb1\xd4\x20\xaa\x29\x68\x72\ \xc4\x58\xc8\xa6\x16\x68\x9f\x2d\x12\x5a\xcb\x5a\x3f\x3c\xb9\xc1\ \x75\x38\x3d\x7a\xf6\x99\x20\x3a\x43\x98\x1d\x35\x75\x71\x95\x63\ \x27\xa3\x54\x40\xa5\x9c\x41\x24\x21\xa6\x42\x16\xee\x19\xc9\x8c\ \x2e\xa6\xca\xff\x30\xaa\x8c\x88\xd1\x43\x37\xa9\x76\x2a\x19\x8d\ \x0a\x18\x8b\x35\x23\x08\x76\x9a\x27\x06\x91\x68\xa9\x4d\x2a\x61\ \x15\x25\xb4\x9d\x4c\x8c\xfc\xf9\x77\x46\x10\x33\xb1\x92\x08\xab\ \x19\x2b\x97\x27\x51\x8a\x2d\x34\xed\x1e\xb9\x96\x01\x38\x0c\x0a\ \x26\x1b\xff\x6f\x9e\x84\x2d\x59\x6b\xf1\x2c\x29\x18\x85\xaa\x5e\ \x73\x63\x05\x2a\x5f\x38\x0a\x80\xa3\x18\x43\x6f\x6b\x38\xb2\xb3\ \x47\x89\x48\xcc\x7a\x8a\x02\x0f\x09\x33\x03\xe8\xaf\xaa\x2a\x82\ \x63\xd4\x2b\x18\xe1\x75\x98\x01\x48\xd3\xfb\x10\x74\x9e\x4c\xa2\ \xa2\xa2\xb0\x76\x45\xeb\x3f\xcc\xa6\x42\x3b\x83\x26\xb9\x9a\xdd\ \x1b\x24\xe4\xee\x7b\x7f\x97\xae\x87\x01\xd0\x0c\xb9\x3e\x08\xaa\ \x4a\xc4\x30\xb8\x64\xa6\x08\x57\x35\x6c\x48\x0f\x67\x39\x30\x15\ \x73\x39\x0a\x30\x94\x51\x19\x0d\x71\x89\xa8\xea\xc2\xf0\xb7\xaa\ \xaf\xbe\xe4\xac\x6a\x64\xe2\x5c\x4c\x55\xb9\x77\x32\x0b\x4e\x1f\ \x53\xa5\xb6\x6f\x15\x08\x59\x88\xa9\x32\xaa\x64\x82\x12\xa7\x26\ \x87\x41\x78\xab\xc7\x26\x0f\x09\x74\xd4\xd7\xfd\xc5\xee\xf9\x1a\ \x1a\x40\xbd\x15\x5c\x4f\x56\x90\x0e\x38\xc8\xeb\x62\x26\x74\xab\ \x32\xa1\xed\x27\x8d\xbe\x01\x89\xc0\x4c\xfd\x99\xf2\xda\xc2\x78\ \xa0\x50\x44\x12\x2b\xf8\x79\x3b\x1d\xd4\xd6\x06\xbf\x5a\xca\x41\ \xcc\x14\x95\x02\xce\xb6\x74\x8b\x42\x44\x6b\x81\x8f\x2c\x91\x11\ \xe9\x1c\xbc\x9a\x7b\x45\xc5\x05\x89\x18\x33\x07\x48\xde\xf0\x53\ \x9e\x34\x5f\x0c\x01\xe1\xc0\x03\xd7\x59\x66\xca\x1d\x8d\x3a\xb4\ \x05\x4b\x82\xf6\x05\x17\x2b\x28\xc4\x8c\x10\x31\x0e\x0b\x39\x84\ \x01\xcb\x13\xa7\x9c\xed\xef\xce\x94\x4c\x95\x94\x1e\x5b\x4a\xa2\ \x82\x99\x94\x58\xd4\xa2\x3c\x85\x08\xf7\x55\x10\x2c\xc9\x79\x48\ \xfb\xcd\x90\x7a\x4c\x73\x02\x07\x56\x65\xa6\x07\x77\x63\x70\x32\ \x96\x28\xc2\x51\x69\x05\x68\x4f\xa6\x2c\x14\xf0\x65\xda\x5b\x45\ \x11\x2f\x83\x41\x00\x9b\x90\xf0\xed\x7b\x6a\xd7\x5a\xcb\xb6\x47\ \x93\x71\xa9\x48\xfb\x5a\x51\x15\x51\xc9\x48\xc0\x8f\x15\x5e\x41\ \xac\x6a\xaa\x7e\xdf\x99\x79\x5d\x57\x44\xb8\xbb\x22\x90\x24\x33\ \x22\xd7\x52\xca\xca\x08\x11\x78\x12\x44\x95\x8e\x86\x2c\xba\x7f\ \x3e\x59\x7f\x52\xe5\xe9\x7e\x43\x4b\x31\xbc\x4c\xc7\x89\x00\xcb\ \xc7\x97\x92\x97\xd8\x64\x91\x64\x25\x1e\x21\xfc\x0b\x94\x95\xc8\ \x7c\x7f\x33\xeb\xba\x3e\xe3\x8c\x57\xcc\xc0\x4e\x38\xb3\x28\x72\ \x08\x62\x2d\x02\x50\x33\x1b\x0e\x4b\xe2\x98\xee\x1f\x61\xa0\xc6\ \x21\x88\xe7\x9f\x01\xf6\xcf\x14\x7f\x46\x99\x4f\xd6\x5b\xbb\xcb\ \x8d\xc8\xa0\x12\x3a\xd8\x96\x52\x8b\xe8\x2b\x3a\x94\x89\x0a\x3d\ \xd6\x63\xf1\xac\x32\xb9\x22\xcf\x9d\x70\x6a\x6a\x11\xb9\x96\x55\ \x34\x29\x10\x9e\x15\xe1\xf1\xf8\x4b\x0d\xbf\xad\x2a\x4e\x01\xab\ \x54\xba\x94\x4a\xfc\x71\x90\x6b\xaf\x7d\x70\x02\xd0\xdc\x47\xb8\ \x94\x0c\xa4\x03\xbc\xeb\x7c\x37\xc1\x95\x08\xe5\xad\x47\x00\x44\ \xaf\x99\x4e\xb4\x56\xe7\xcf\x78\x43\xd5\x21\xf1\x80\xfe\x33\x90\ \x75\x3b\x27\x34\xca\xc1\xb3\x12\xda\xd1\xfc\x64\xf6\x8a\x2a\x30\ \x56\x92\x6c\xeb\xf1\x4c\x33\xa5\xd4\xa4\xd4\x41\xe4\x8e\x02\xa2\ \x09\x01\x44\x59\x85\x09\xfd\xd4\xe8\x79\x7a\x22\x96\x57\xee\x0d\ \xa3\x85\xe8\x11\xfb\xde\x77\x32\x01\x71\xc2\x37\x8f\x8c\xcc\x62\ \xf2\x5e\x24\xbe\x23\x5c\x98\x55\xa4\xb8\x22\x33\x28\xd5\x30\x57\ \xea\xd1\x16\x58\x92\x38\x24\x71\x68\x71\x7b\x7e\xf6\x65\x4f\x54\ \xbe\x1d\xad\x42\x57\x5c\x2c\x07\x15\x68\xee\x42\x16\x13\xff\xac\ \x9f\x9b\xee\x67\xe9\x67\xb2\x70\x46\x66\x16\xa7\x9b\x1a\x29\xa1\ \x63\x01\x75\x00\x8f\xa6\x3b\x49\x79\xb0\x60\x34\x27\xc0\x1b\x88\ \xe8\xde\x5f\x55\xc3\x5a\xbe\xb7\x5b\xf5\xec\x6d\xef\x7b\xad\x2b\ \xd3\xb9\xa1\x24\x36\x61\x6a\xc7\xa5\xf6\x90\x12\xb5\x84\xca\x5a\ \xe0\x8b\x1a\x23\x1d\x5b\x0a\x4b\x1a\x62\xe9\xfc\xe5\x6a\xd8\x17\ \x5d\x47\x2f\x9d\xa2\xa4\x5c\xba\x86\x0f\x79\xcc\x29\x51\x95\xb5\ \x86\x1a\xd2\xb7\x93\xe5\xfd\x4e\x21\x81\x65\x0a\x1e\xe1\xfb\xa9\ \x77\x38\x19\xfd\x33\x6a\xf8\xfc\x7c\xb8\x3a\x1f\x3f\x00\x9a\x39\ \xcc\xa8\xe5\x85\x38\x33\xa2\x0a\x8d\x41\x79\xf0\x71\xff\x8d\xcc\ \x0c\x98\x84\x43\x02\x38\x3e\xe2\xf2\x66\x52\x0c\x75\x82\xcf\x9b\ \x02\x74\xa6\x99\xa2\x9f\x7e\x66\x70\x63\x6f\x9d\x5e\xb1\xa9\xa8\ \x62\x8c\xa1\x44\x7c\xa3\x43\x03\x19\x0d\x17\xf4\x34\x8b\x45\xf5\ \x8f\x2f\xf8\x84\xcc\x56\x3b\x30\x8a\x0a\x49\x79\x05\xb4\x55\x99\ \xd9\x1c\x23\xea\x2a\x22\x60\x90\xcf\x0f\xa9\xe4\x90\x00\xa9\x12\ \xfa\x92\x41\x66\xd5\x44\x0b\x7a\xe9\x40\xab\x26\x2a\xaf\x5c\x4e\ \xd1\xf4\x88\x5e\x1f\xc2\x4f\x76\x65\x41\x09\x03\xa2\x2f\x08\x2d\ \xc0\x28\x23\xcb\x30\x87\x95\xc3\x45\xe2\xe3\x31\x80\x79\x28\x80\ \xac\xf6\xef\xe6\x5a\x9f\x4b\x5c\x30\x5a\x59\x6b\x95\x94\xf5\x8c\ \xa5\xed\x3e\xd4\x14\xc0\xb4\x99\x69\x2a\xc0\xe5\xa6\x5d\xcf\x34\ \x13\x84\x5d\x8c\xd7\xce\xde\xe8\x7f\xd5\x27\x13\xbd\x51\xfe\xc7\ \x43\x7c\x62\x69\xcd\xd4\x7d\x33\x97\x08\xa9\x5a\x24\x8e\xcb\x10\ \x95\xcb\x34\x27\x92\x84\x98\xfd\xf6\x6c\xcb\x75\x64\x9b\xb3\x99\ \x59\xcf\x22\x46\xa5\xc4\xaf\x04\xd0\xa8\xd2\xee\x29\x57\x55\x95\ \xd4\x43\x6e\x90\x0e\x52\x2e\x4e\x2d\x65\xc5\x27\x86\x02\x87\x39\ \x67\xc2\x4a\x02\xd5\x3c\x04\x21\xfa\x9a\xdd\x42\xec\xf1\x0f\x73\ \x19\x66\x12\xd1\x66\x8e\xbc\xa9\x10\x87\x22\x0f\xf3\x1e\x66\x81\ \x9a\x82\xcf\xed\xc4\xc3\xc2\x22\x51\x29\x92\xc5\xc3\xd7\x78\xc9\ \x46\xa7\x20\x6f\xc0\x83\x58\x74\xa9\xd4\x09\x37\xaf\xb7\xc7\x00\ \xd1\x7b\x29\x8c\x07\x65\x25\x65\x93\xe8\xb2\x5d\x64\x58\x85\x2b\ \x4a\x98\xf4\x5a\xca\x22\x94\x92\x9d\x67\x9b\x09\x7f\x81\x4e\x1e\ \x02\x8b\x85\x5b\x58\x37\xb9\x45\x3d\x49\x1a\xba\x20\x8c\xb2\xd1\ \x9e\xb7\x9f\x3d\x65\x64\x12\xdc\xaa\x1c\x63\x03\x7c\xeb\xcb\xd6\ \x89\x86\x7d\xf8\xbc\x94\x6a\x1d\x7c\x70\x40\xc8\xe3\x8c\x43\x75\ \xe6\x12\x04\xcb\xd6\x86\x3a\x44\x4c\x7b\x5c\x78\x52\x8d\x29\x5f\ \x93\x65\x28\x83\x00\xb4\x9c\xe8\xe2\xea\x70\x32\x44\xa2\x1f\x9e\ \xd8\x71\x8a\x22\xe2\x9f\x9f\xcf\xef\xef\x6f\xec\x04\x53\x4d\xd5\ \x88\x04\xd3\x27\x91\xf0\x33\xdd\x8b\x7b\xa0\xe8\xc2\x31\x7a\x5d\ \x17\xde\xee\xf3\xf9\x54\x55\x64\x16\x3d\xa5\xda\x99\xe5\xf3\x20\ \x78\x0f\x15\xba\x0a\x43\x18\x7c\x4e\x51\xb9\xae\x6b\x44\x35\x96\ \x95\xcb\xec\xf3\xb3\xf6\xbe\xd1\x30\x2d\x31\x18\x5d\x00\x28\xc7\ \x18\x25\x13\x9a\xb7\x46\x53\x5a\x9d\xa3\x66\x6b\xd9\x82\xa5\xa0\ \x32\x33\x85\x07\x58\xe5\xc2\x1c\x95\x42\x69\xb6\x9a\x23\x4f\xb0\ \x49\xab\x27\x9f\x14\xf3\x8f\xde\x94\xad\xdc\x3a\x37\xf2\x10\x87\ \xd0\x2a\x90\x8e\xcf\x62\xa7\xc3\x36\x13\xe7\x39\x5a\x99\x51\xff\ \x9c\xd8\x6b\x39\xc0\x1f\x24\x8d\x7d\x68\xd4\x73\x0d\x31\x98\x35\ \xd2\xf3\xc1\x83\x2a\x42\x04\xda\xbc\x40\x26\x5b\x36\xa4\x71\xcc\ \x73\xe9\x3d\xd6\x68\xd6\x1b\xb5\x61\xc8\x71\xbd\x3e\x10\x0f\xc0\ \x59\x0f\x17\x21\x53\x63\xa0\x6d\xc2\x22\x9a\x41\x59\x1d\x9d\x5b\ \x1c\x24\x6a\x3d\x6c\x04\x04\x97\x15\x43\xa5\x2b\x26\xe1\x0c\xaa\ \x25\xdc\xce\xf1\x6f\x03\xf2\x63\x18\x2c\x55\xb0\x55\x39\x4f\x50\ \xb6\xef\x22\x62\xeb\xb3\x6c\x66\xb2\x3d\x46\x4a\x4a\xd3\xc6\x7c\ \xde\xa4\x92\xaa\x32\x55\x12\xc9\x7d\x1f\x14\xd5\x23\xa8\xca\x56\ \xcf\xd4\x87\xae\x5e\x67\xfc\x82\xb3\xe3\xd4\xe7\x19\x21\xa6\xc7\ \x45\x00\x81\xac\xc7\x1a\x76\x28\x4b\xa8\x15\x9b\xa9\x10\x6d\x57\ \x4b\x47\x37\xc6\x1d\xc9\xaa\xbd\xf8\x40\xf3\xe3\xcc\x22\xd3\x55\ \x41\x59\x75\xe0\x63\xee\x46\x5f\x98\x08\xa3\x18\x6c\xa1\xbd\xb7\ \x74\x40\x5c\x37\xfa\xfc\xe2\xa4\xe1\x76\x5a\x6b\x1d\x91\xd9\x28\ \x2f\xe4\x30\x1b\x41\x82\x66\x11\x4a\xa8\x7c\x53\x55\x97\x75\x50\ \x1f\x8e\x1d\xf0\xd0\x98\x0d\xd2\x09\xb8\x2b\x37\xc1\x27\xcb\x33\ \x3a\x55\x21\xc2\xb0\xb3\x40\x02\x13\xed\xc3\x05\x6e\x2e\x3a\xb6\ \xfa\x1e\x29\x47\x5d\xf4\x72\x72\xe7\xb6\x69\x4d\x21\x52\x3e\xc9\ \x7e\xc4\xa2\x90\x07\xa1\x2a\xcc\x93\x52\x84\x7c\xc4\x2a\x4e\x04\ \xb1\x36\x9a\x01\x84\xab\x69\xed\x95\x83\x6d\x4a\xdb\xf3\x44\x90\ \x2a\x03\x21\x26\x1e\x2e\xb7\xcd\xb5\x7b\x3c\x54\x87\x9f\x73\xe0\ \xc2\x89\x2e\xc4\xbd\xa7\x2c\xc9\xd5\xae\xf1\x94\x20\xe3\xbd\x70\ \x3c\x26\xf0\x94\xc6\x6b\x56\x1b\x4b\x6a\x6e\x41\x56\x2f\x8e\xac\ \xe4\x6c\xd0\xb6\x6b\x97\x48\x6a\x0b\x83\x20\x92\xf0\x10\xe4\x3a\ \x35\x59\x93\xa6\x22\xe3\x09\x00\x7b\x59\xd9\x16\xe6\x95\xa3\x4f\ \x68\x6d\x1c\x53\xd2\x73\xca\x4f\xb2\x71\xc1\xea\x6e\x68\x7e\xb3\ \x6a\x7b\xdd\xcf\x4a\x6d\xd0\x1f\xbf\x33\xb3\xd4\xe0\x90\x43\xaa\ \xc8\x37\x1d\x8e\xa9\xf7\x1b\x76\xbc\xbb\xb7\xe0\xbe\x5a\x92\x76\ \x28\x14\x67\x11\xd3\x3c\xcd\x63\x34\xf3\x8f\x8b\xfa\xd0\xdb\x30\ \xe3\xfe\x7e\xbf\xc7\x61\xaa\x2a\x61\xa3\x63\xfa\xd4\x54\xaf\x89\ \x56\xdb\xa7\x36\x20\xe6\x3e\x37\x4f\xd9\x32\x86\x60\xf6\xec\x87\ \x39\x42\x41\xdc\xc4\xd6\x42\xcb\x04\xf7\x4d\x42\x4a\x71\x41\x12\ \x98\x95\xd9\xde\x41\x94\xe1\x49\x99\x11\xc1\x20\xda\x11\xb1\x48\ \x4e\x0b\x10\x19\x7d\x02\x37\x0a\xa5\x99\x19\x3b\x32\x7b\xa9\x5a\ \x56\x2a\xfa\x9e\x22\x11\xe6\x6a\x55\x86\x89\x35\xdd\x03\x2d\x01\ \xf7\x69\x24\x2c\x08\xd0\x3a\x88\xb0\x10\x41\xce\x2e\xa0\xec\x14\ \x89\x74\xbd\x0c\x1b\x2e\xf0\x09\x14\x82\x6c\x64\x86\x32\x17\x73\ \x32\x27\x06\xaa\x73\xbd\x3e\x03\x2f\x91\xaa\xc0\x90\x83\x99\x10\ \xa0\xf5\xb8\x7f\x53\xf7\xeb\x0d\xc1\x8d\x69\xff\xfc\x5b\xa2\xf6\ \x65\x7e\xff\x11\x05\x81\x9d\x42\xbb\x12\x99\x85\x58\xbc\x0e\x78\ \x81\x05\xe9\x18\x47\x1f\x37\xf1\xf9\x8e\x23\x94\xce\xc4\x24\xa4\ \x33\x33\x71\xa7\x0a\x49\x71\x72\x17\x4b\xc9\xc9\x4a\x4a\x8a\x1a\ \xeb\x90\xb7\x87\xcc\xca\x55\xaf\x5d\x53\xa8\x9a\x6a\xbe\x02\x3a\ \x82\x4e\xb6\x6d\x57\x18\x21\x14\xee\xc3\x48\xaa\x97\x65\x0c\x72\ \x81\x02\xf3\x75\x60\x0f\xc2\xca\x47\x0a\xae\xad\xce\xc7\xb9\x53\ \xaf\x98\xa4\x93\xdc\x3d\x77\xd4\x44\x39\x54\x0a\x49\x66\x0a\x3c\ \xfb\x66\x70\xfc\x44\xe5\x09\x24\xf5\xf6\x58\x8e\x37\x73\x93\x8e\ \x2c\xf4\xc5\x6c\x6a\xfa\x36\xcb\x55\x19\x34\x4e\x2d\x0d\xfe\x3f\ \x45\x3b\xd8\x37\x74\x18\x6b\xef\x99\xdb\x84\xc2\xb4\x5d\xfc\x5a\ \x8b\x51\xb8\x66\x46\x04\x50\xa5\x43\x45\x6b\xe2\x02\x4b\x71\xa5\ \xa7\xef\x2d\x2a\xfa\x62\x72\xe1\xf4\x68\x04\x62\xb2\xc4\x99\x65\ \xa9\x39\x67\xdf\xd2\xd1\x22\x1f\x5c\x90\x7a\x2d\x15\xf9\xfb\xfb\ \xcd\x0a\x29\xb6\xa6\x93\xd5\x0b\x06\x1d\x87\x7a\x70\x66\x11\xf4\ \xab\xcc\xd1\x94\xa0\xa6\x63\x9e\x93\x45\x55\xe0\x09\x72\xac\x9f\ \x65\x04\x27\xac\x9d\x40\xdb\xc7\xa4\x14\x8f\xa4\x3f\xc0\xcb\xad\ \xb1\xaf\x93\xd6\x93\x01\xb4\x11\x63\xdf\xae\x66\xf2\xe2\xc6\x1d\ \x6f\x1a\xa8\x1c\xa0\x2b\x6a\x4f\xda\x4a\x98\xc2\xf4\xc3\x63\x39\ \x96\x7d\x60\x12\x64\xd6\x64\xc2\x80\xbd\x8b\x2d\x47\xd4\xf1\x16\ \x15\xd4\x87\x28\x68\x88\x1d\x84\x3c\x7e\x71\xd0\x09\xf6\x2c\x0f\ \x95\x1b\xc1\x97\xb7\x98\x4a\x91\x24\xd6\x56\x0a\x48\x8f\x00\x3d\ \xb2\x39\x21\xd5\xce\x12\x69\xa2\x0f\x20\xf2\x98\x65\x8f\x45\x77\ \xeb\x8b\xb2\x90\xeb\x94\x09\xeb\x05\x7a\x0d\x19\x5b\xe8\x33\x19\ \xe1\x67\xd6\xfc\x50\xe5\x4b\xa8\x1d\x39\x10\x56\x42\x59\xe9\x1e\ \xda\x29\x2d\xf9\x47\xc4\xdc\x28\x64\x8e\xdd\x02\x28\xea\x62\x02\ \x5e\xa3\x1c\xdc\xaf\xef\x13\xb0\x7b\xea\xf9\x5b\xdc\x72\x22\xf9\ \x26\x19\x32\xd7\x6b\xe8\x29\x62\x55\x83\xfa\x65\xe0\x91\x81\x96\ \xef\xbe\x99\x15\xd2\x86\xd6\x4e\x0f\x38\x76\x2e\xb7\xb9\x5b\x91\ \x7f\xa1\xe0\x53\xa3\x0c\xc1\xeb\x9c\x62\x1e\xf8\xe1\x3f\x1a\x9e\ \xa8\xa8\x68\xda\x0e\x18\x99\x03\xdc\x3d\x4a\x55\x82\x7b\x07\x71\ \x65\xee\xd1\x0b\x80\x0b\x1b\x99\xee\x74\xad\x65\xa0\x23\x7a\x7c\ \xf7\x6f\x00\xd0\xc4\x6d\xf2\x46\x23\x21\x8e\x8e\x71\x54\x31\x35\ \xb5\x89\x18\x98\xfc\x6b\xfc\xe4\x2a\x32\xee\x02\x82\x9c\x9c\xc3\ \xdd\x84\xc9\x9c\xaa\x65\xa3\xfa\xe0\xb3\xd1\x29\x36\x3a\x8e\x41\ \xad\xb3\x6d\x88\x54\xad\x4f\x65\x16\xd2\x02\xda\xd3\x4e\x76\xd3\ \x6b\xe6\x23\x6f\x3f\xfc\x83\xf7\x76\x6a\x23\xcd\xae\x3a\x75\xe8\ \x42\x9d\x84\xd0\xbf\xff\xd4\x24\xc0\x25\xf3\x30\x59\x61\x18\x89\ \xee\x08\x9f\x33\x27\x62\xee\x0f\xb4\x4b\x1e\x37\x82\xcc\x14\x46\ \x30\x23\x45\x96\xbb\x57\x26\x57\xca\x5a\x0d\xbe\x6a\xa3\x24\x7f\ \x34\xac\x33\x96\x92\x47\x2a\x40\xef\xf7\xc1\x35\x93\x91\xdf\xfb\ \xc6\x38\x9a\xaa\xeb\x52\x55\xed\xc8\xc6\x76\x42\x52\x35\xab\x97\ \xdf\x9f\xaa\x46\x26\x09\x57\x54\x54\xaa\x08\x96\x16\x5c\xc6\x64\ \x4a\x1a\xd8\x70\xf2\x24\xd7\xe3\xb3\x5d\x6b\xa9\xd8\x89\xbf\xed\ \x58\x87\x4c\xc0\x59\x22\xa2\x26\x5e\xe5\xbe\x2b\xa5\x88\x0c\xbc\ \x29\x91\xb5\x96\xbf\x4a\x86\x68\xef\xab\xeb\x20\xcb\xc0\xda\x81\ \xf5\x1e\x79\x82\x99\x55\xa5\x7b\x9c\x0f\x7f\xad\x8b\x39\xe9\x89\ \x42\x22\x8c\x77\x98\x99\x03\xbc\xc6\x1a\x4f\xb3\x5a\x70\xf9\x13\ \x41\x3f\x03\x30\x03\x1b\xe3\x1f\xa0\xe8\xf9\xe5\x7b\xc6\x6f\x66\ \xa6\xd8\xcc\x55\xfc\x72\xbb\xe5\x2a\x76\xdf\xd8\xb4\x04\xc3\xdb\ \x62\x62\x89\x08\x5b\xf6\xf3\xf9\x2c\x2b\x0f\xef\xee\xf0\x6e\xee\ \x2a\xf6\x7a\x63\xc1\x38\x5d\x45\x92\x55\x32\xc2\xec\x71\xac\x7d\ \x7f\xb1\xaa\x19\x05\x94\x54\xf5\x41\x82\x3d\xad\x2a\x11\xd9\x3e\ \xce\xfc\x60\x74\x44\xd4\xaa\x38\x88\xec\x88\x04\xc6\x6b\xa8\x82\ \xb4\x3c\x31\xcd\xc5\xdc\x00\x7e\x21\x5a\xd3\x3b\x82\xce\x84\xab\ \xb9\xb9\x9c\xcc\xc4\x7f\xbc\xf5\x80\xfd\x0f\x25\xac\xaa\x98\x61\ \x0a\x1c\x66\x18\x99\xef\xf3\x83\x9a\x7d\x32\xcb\x8c\xd7\x5a\x19\ \x71\x5e\xad\xd7\xa2\x9c\x15\xce\x18\x2c\xbe\x03\xaa\xf2\xa5\x01\ \x74\x98\xd8\xce\x25\x03\x7b\xa7\x98\x9d\xd0\x5c\x9b\x47\x0a\xda\ \x54\x94\x97\x08\x96\x12\x14\x2f\x16\x24\x57\xab\x08\x38\xe3\x0f\ \xae\xc8\x30\xd7\x8d\xe3\x8a\x52\xaf\x33\xde\xdd\x31\xd8\x65\x15\ \x0a\x54\x4f\x35\xc6\x0c\x34\x54\xda\xe8\x96\xb7\xd0\x7e\xe8\xde\ \xfb\xf4\x0c\xf9\xaa\xc7\x2a\x33\x8f\xd4\xbe\x49\xdf\x44\x4c\x62\ \x16\xee\xdf\xbd\x3f\x7f\xfd\x45\x54\xdb\x9d\x9f\x7e\x49\xcf\x4e\ \xfb\xf7\xbf\xff\x0d\x9b\xcc\x4c\x26\xf2\x8c\xe0\x66\xd8\x61\x99\ \xc6\x10\x05\x1e\xa9\x59\xdf\x45\x95\xe4\x18\x7c\xe9\xc3\x8e\x2b\ \x39\x7b\x32\x76\x14\xe7\xd1\xd8\xd0\x0b\xc8\x39\x3f\x05\xbe\xd4\ \x13\x18\x33\xf2\xb5\xef\xf7\x9b\xb9\xd6\x5a\x44\x8c\x8e\x08\x3c\ \xa3\x17\x0d\xf4\x3e\xea\x46\xf0\x1d\xf6\x4e\x55\x35\x5d\x44\x61\ \x66\xc6\x9c\x44\x6c\xc6\x10\x2d\x86\x3b\x40\xc9\x25\x02\xf4\x23\ \x32\x18\x5e\x3b\x42\x54\x04\xb4\x01\x70\x27\x1a\xdc\xe3\xfb\xcc\ \x5d\xda\x65\x55\xaa\x99\x40\x28\x52\x3b\xb3\x14\xd3\x1e\x1e\x47\ \xe9\x4c\x88\x6c\xee\x7d\xe7\x39\x15\x64\x5a\x8a\xcc\x41\x08\x52\ \x40\x7c\x10\x5c\x57\x98\xf1\xc1\x3e\x05\x4c\xf2\x6c\xb9\xf6\x58\ \x1a\xbb\x6f\x20\x9b\xca\xec\x11\xc7\x93\xac\x83\x3b\xa6\x89\x04\ \x43\xf1\x88\x34\xa4\x47\xe6\x95\x9d\x81\xde\x3d\x1b\x34\xfa\x4a\ \x4d\xcb\x25\x9e\x89\xa4\x07\x9e\xfe\x68\xb1\xeb\x6c\x5e\x33\xa1\ \x2c\xe8\xca\xda\x3d\x0d\xb1\x57\xdc\x26\x91\x63\x8c\x3f\x3c\x08\ \x6e\xc3\x9a\x9a\x7c\x90\x24\xd2\x22\x22\x5a\xeb\xba\xae\x0f\xac\ \x0b\x0c\x69\x53\x59\xb3\x50\x7a\xf0\x2a\x6a\x22\xfa\xfd\x7e\xbb\ \xae\x78\x0e\x5a\x06\x79\x80\x8a\x4d\x61\x93\xa5\xe1\x5b\xc7\x2f\ \xa6\x9f\x5a\xf2\xba\x0c\x03\xf5\xa2\x12\x21\x74\x50\x78\xb5\x44\ \xaa\x17\x9a\x66\x48\xc7\x33\x55\xec\x73\x49\x71\xad\x65\x97\xa8\ \xef\xdd\xae\xbe\xf9\x8c\xa1\x70\xa2\x9d\x23\xdc\x3d\xd7\xb2\xae\ \x6d\xc1\xf6\x59\x2a\x09\xe2\x18\x48\xcd\xb2\x79\x8f\x54\xae\xd5\ \xc6\x13\xd9\x9c\xaa\x02\xae\x5e\x65\x79\x39\x00\x21\x80\x29\x50\ \x1f\xe0\x8b\x1f\x6e\xe8\x28\xa2\x73\xe2\x6b\x10\x9a\xe4\x99\xf5\ \xf9\xfc\xe0\x95\x8f\x40\x06\x67\x8a\x2a\xcc\xa0\x9f\xcb\x00\x97\ \x12\x8c\x8d\x40\x40\x93\x4e\xdd\xd0\xbd\x37\x0c\xf9\x52\x4d\x14\ \xdd\x85\xa2\xc0\x15\x15\x4c\xca\x7a\x7c\x0d\x62\x40\x64\x9c\xeb\ \x15\x9f\x78\xb2\x81\x31\xaf\x8d\x22\x61\x23\x86\x55\x20\x33\x71\ \xad\xcb\xda\xf5\x02\x90\x33\x24\x18\x15\x88\x0a\x51\xb8\x4e\x2a\ \x93\x50\xa4\x13\x1c\x47\x8b\xb9\x52\x59\x94\x99\x2f\x3d\x61\x3b\ \xac\x46\x55\x51\xb9\xd6\x85\xfe\xc4\x0c\xc3\xaf\x96\xd3\x98\xb2\ \x08\x28\x32\x05\x47\xa3\x2a\x3f\xa0\xf3\x39\x47\x07\xe3\x4f\x55\ \x03\xfb\xc8\x0c\x12\xd7\x40\x72\x1a\xbc\x06\x64\x49\xc8\xaa\x28\ \xe6\xe2\x66\xac\x16\xd0\x8b\xa8\x50\x33\x66\x45\x52\x5f\x3b\xc7\ \x2a\xcf\xa9\x9c\x2a\x6a\xb0\xd3\xf0\xa2\x9c\x08\xa5\x1c\xf1\x40\ \xd6\xd0\xab\x08\xb4\x11\x40\x6d\x49\x30\xef\xab\xa2\x8c\x8a\xa8\ \x24\x61\x26\x8d\xbd\xd5\xe0\x6c\x45\xcc\x22\xa4\x98\xa4\x63\x7d\ \xe0\xe9\x9e\x03\x55\xa9\xa9\x25\xb8\x6b\x41\x86\x22\x66\x53\x66\ \x78\xea\xcd\x09\x2d\xa2\x6b\x49\x64\xe0\x66\x50\x91\x42\x44\xad\ \xc1\x03\x93\xdc\xd3\xd4\x58\xc5\xcc\x98\x18\xde\xfc\xd0\xad\xc1\ \xe6\xaf\x43\x1c\x32\x54\x0d\xb3\xbb\x33\xe4\x41\xbf\x81\x03\xfe\ \xf3\xb9\xa0\xf9\x69\x7d\x25\x62\x88\xb4\x4f\x7a\xa9\x60\x4e\x63\ \x41\xf2\x35\xcc\xbb\x50\x1b\xac\x6b\xc5\xde\xc5\x62\x4b\xf9\xf8\ \x55\x88\xac\xb5\xee\xef\xed\xdb\xd7\x5a\x60\xdf\xbc\x69\x97\xd0\ \x6f\xaa\x02\x04\xa7\x63\xbb\x91\xe9\x7b\x87\xaa\xfe\xfc\x7c\xf6\ \xfe\x12\xa5\xaa\x89\x2c\xf7\x1d\x01\x03\xf5\xde\x39\x3f\x3f\x3f\ \x38\x3e\x54\xad\xe9\x94\x02\xe5\x21\xbb\xef\xeb\xba\x8c\x32\x6d\ \xae\x0e\x55\x55\x51\xca\x04\x2a\x7d\xdf\x37\xb3\xfc\x75\x2d\x2f\ \x46\xe7\x45\x44\xd7\xb5\xb0\x83\x03\x9d\x4c\x85\x02\xd9\x6e\xc2\ \x1f\x58\xba\x8f\x7a\x56\xda\xa3\x10\xe6\x67\x6d\xe2\xe7\x54\xa8\ \xbf\x97\xfd\x28\x3d\xd8\x68\x17\x91\x53\x32\x83\xdf\x71\xea\x7d\ \xc9\x52\x53\x4e\x7d\xdf\xbc\x30\x25\x3a\xdc\x02\x65\x56\x95\xbd\ \x3d\x02\x01\xdc\x33\x7b\xd6\x1e\x06\x9c\xe8\x04\x9c\x2e\xd2\x6a\ \xb0\xc1\xac\x99\xe1\x9f\x0c\xe7\x2a\x10\xb4\x89\x29\x41\x3c\xf6\ \x16\x32\xa9\xda\xb5\x2e\x66\xf6\xf0\x8a\xc8\x98\x9d\xed\xc9\xab\ \x5b\xc9\x12\x99\x68\xb1\x93\x2b\x59\xef\x2e\x09\x9b\x18\x4b\x90\ \x27\xe3\x98\xc7\xbe\xb7\x88\x22\x3c\x23\xe0\x0e\x8b\x27\x87\x01\ \x08\x18\xbe\x40\xc0\x50\x11\xbc\x44\x85\x44\x4c\x6a\x62\xb6\x32\ \x32\x2a\x70\x11\xa1\x6a\x9a\x02\xa1\x0e\x84\xc0\xac\xa7\x70\x38\ \x1a\x60\x54\x92\x00\x57\x0f\xde\xc0\xcc\x11\xbf\xef\xef\xa6\xb6\ \x98\x24\x8d\xa6\xf7\x47\x24\x66\x94\x67\x66\x80\xee\x11\xba\xc8\ \x79\xe5\xd6\xfc\xcc\x8c\x4e\x89\xe8\xef\xbf\xff\x36\x85\x2f\x99\ \x54\xa5\x67\x5a\x66\x99\x15\x51\x4f\x1c\xab\x3e\x9f\xcf\x81\x58\ \xcf\xab\xb9\x3b\x33\x81\xee\xf9\xd7\x5f\x7f\x9d\x92\x6c\xde\x8b\ \xab\x7a\x7a\x73\x5d\x2b\x22\xcd\xf2\x9c\x95\xb8\x14\xc6\x8c\x06\ \xee\x70\x2d\x6c\x57\x15\x08\xd4\x7f\x7e\x7e\xaa\xea\xbf\xff\xfd\ \x6f\xc4\x17\x4a\x69\xf7\x60\x66\xb5\xc2\x10\x09\x7e\x50\x0d\xda\ \xa8\xb0\xaa\xc5\x78\x15\x0a\x7c\xaa\x11\x35\xb4\x93\x05\x66\x60\ \x4a\x59\x68\x9b\xb4\xc5\x05\x69\xb2\xf0\xf9\x22\x6e\x95\x31\x39\ \x8e\x64\xa6\x12\x2d\xdf\x70\x04\x1d\xfa\xb3\x7c\x96\xed\x31\x78\ \xe7\x39\x2a\xc6\xca\x85\x55\x8e\x93\x04\x9c\x5a\x5b\xb6\x11\xad\ \x95\xc4\x91\xa3\x48\xb7\xc5\x31\x19\x93\xbf\xa9\x2a\x99\x90\x58\ \xe1\x8c\x01\xd6\xcd\xe3\xa5\x70\xcf\x0e\x29\x24\xc4\xa0\x66\x89\ \xc8\xb6\xb3\x29\x72\xf7\x65\xdd\x86\x4f\xcc\x35\x71\x06\x09\xc3\ \x55\x1e\xce\xe2\x40\x98\x30\x0e\x90\x51\x9e\x55\xa6\x96\x9a\x6a\ \xcd\xb7\xcb\x97\x56\xee\xe5\x17\xf0\x58\xd7\x8c\x47\x90\x4c\x5c\ \x07\x8d\x77\x2b\x37\x89\x88\x68\xef\x4d\x5c\xa2\x4d\xb6\xc8\xa1\ \xde\x6c\x58\x34\x34\xd3\x31\x4d\xf4\x32\x6b\xb9\x4e\xdf\xc0\x72\ \x8c\x60\x00\x34\xa1\x26\xf1\x16\xb1\x54\x51\xa2\x18\xc6\x82\x63\ \x5e\xe0\x67\x0c\xf9\xe5\x02\x50\x7b\xdf\x37\x16\x99\x2d\x7c\x57\ \x80\x93\xb9\xbf\xfb\xf3\xd7\x87\x49\x7e\xff\xfd\xfb\xaf\x7f\xfd\ \x85\xe7\xf8\xfb\xf7\xef\xf7\x3a\xce\xcc\x08\xef\x74\xd4\xf9\xb6\ \xee\x01\x3a\x22\x55\x69\xb3\x6f\xbc\x22\x30\xb5\xdc\x7b\x03\xff\ \xcd\x88\x20\x8e\xd8\x91\x05\xde\x31\x1c\xf7\xf7\xde\x2a\x72\xad\ \xab\xb2\x51\xb5\x29\xbf\xe1\x4f\x40\x22\x8a\x37\xc5\x0b\xde\xf7\ \x9d\x09\xfd\xe6\xce\xf4\x9f\x9f\xcb\xbd\x86\x4b\xaa\x87\xd7\x73\ \x3c\x74\xf0\xfb\x7c\x3e\x1f\x00\x0c\x6b\x19\x7e\x3d\xff\xed\xd7\ \xcf\x0f\x68\x4a\x2a\x23\x1a\xc9\x2c\xe6\x68\xe5\x70\x21\x59\x15\ \x67\x64\x32\x65\x93\x91\x32\x22\x93\x85\x6c\xf8\x9e\xc5\x64\xaa\ \x42\x14\x95\xa6\xa0\x52\x0f\xbd\x17\xfe\x65\x15\xc7\xff\xb7\xda\ \x28\xaf\x93\x55\x82\x64\xb2\x70\x48\x44\x84\x78\x7c\x83\x9c\xab\ \x94\x85\x4d\xe9\x70\xd9\x89\x94\xe1\xc9\x11\xcc\x12\xd5\x56\x86\ \xf7\x37\x9a\xc4\xad\x3c\x83\xde\xa6\x51\x56\xe9\xd1\x66\xd6\x30\ \x54\x5f\x82\x78\x51\x35\xd0\xc3\x21\xdc\x6c\x8b\xc7\x4a\x61\x8a\ \xc8\x68\xc7\xc3\x22\x66\x25\xed\xae\x6a\x7c\x7e\x10\x8c\x99\x9d\ \x94\x22\x99\x59\xc2\x9f\xcf\xba\x7f\xfd\x9d\xd1\xda\x92\x13\x14\ \xd4\x5f\xb3\x5d\xad\xb5\x2d\xee\x4e\xf8\x1e\xe6\x71\xfc\x12\xad\ \x09\x8b\x88\xf5\xc3\x01\xdb\xc8\x50\x1f\x76\x6f\x29\x12\x1e\xc9\ \x79\x5d\x6b\x6c\xba\xf0\x49\x30\xc7\x0b\x33\x5b\x6b\xa1\x05\xc2\ \xb5\xbc\xb7\x8b\xb0\x99\xdc\x77\xb4\x13\x05\x4b\xa4\x47\xc4\xe7\ \xf3\x81\x67\x30\xe2\x07\x59\x54\xb8\x97\x06\x80\xe9\xf6\x97\x59\ \x0b\xc4\xbf\x88\xe8\xbc\x4e\x02\x7e\xf9\x3d\x1a\x15\xfc\x05\xee\ \x07\x2c\xbb\x66\xbc\x8d\xf8\x8c\x26\xbb\x02\x79\x01\x80\x3f\x4c\ \x2e\x7e\x54\x34\xf2\xfd\x7e\x4d\x95\x75\xf9\x46\xa1\x03\x87\x68\ \xa9\x2c\xf7\xa4\x22\x36\x26\x22\x53\xb9\xf7\xae\x36\x07\xc7\x6b\ \xea\xd0\x5b\xa5\x8a\xdd\x1d\x3f\x02\x3e\x15\x30\xe8\x5f\xbf\xfe\ \x5e\xcb\x0e\xec\x71\xd0\x88\x57\xa3\xdb\x45\xe6\x20\x16\x8a\x53\ \xfd\xde\x3b\x7c\xff\xfc\x7c\xec\x32\xf3\xbd\x99\xf9\xf3\xb9\x80\ \x99\xd0\x43\x79\x6e\xef\x18\x00\x54\x22\x15\x7d\x26\x31\x00\xbc\ \xaa\x22\xd1\x6c\xdb\x65\xea\x66\x8c\x18\x60\x1c\x72\x48\xee\xbd\ \x91\xf3\x70\xc2\x74\xb9\x3a\x78\x2f\xfb\xe7\x6b\x5b\x6c\x15\xb8\ \xa4\x4a\xbb\x2a\x8a\x9a\x59\x3b\xc7\xe6\x50\x43\x45\x20\x13\x2f\ \x4e\x26\x00\x12\xd4\xdb\x12\x16\xd0\x44\x68\x5a\xd6\x5a\x8f\xbb\ \xe8\x4c\x7e\xd6\xba\x6a\xec\x61\xb1\xfa\x55\x35\x3d\x44\xda\xce\ \x2f\xb3\x4c\x44\x27\xa7\x24\x33\xa8\x27\x4d\x40\xb6\xf8\x78\xa3\ \xc0\x32\xb8\x58\x88\x1c\xb7\xa8\xaa\x20\x3a\xe2\x66\x86\x7c\xac\ \xa4\x2f\x13\x87\x8d\x49\x13\xc7\xa5\xfd\x62\x10\xcb\xc0\xe3\xab\ \x7c\xb2\x97\xe1\xdf\x06\xcb\x6b\x15\x64\x53\xd2\x0b\xac\x13\x16\ \x15\x39\x75\xac\x99\x2d\x95\x9a\x61\xd4\xe9\xa7\x0f\x60\x83\x93\ \x7e\x7c\x95\xd8\x4c\x31\x0b\x41\x8f\xbb\x74\xdd\xf7\x8d\x85\xab\ \x9d\x22\x52\x32\xfa\x5b\x66\x60\x2e\x5c\x94\xdb\xf7\x32\x54\xda\ \xc2\x22\xe4\x81\x1f\xd7\x54\xcd\x16\x4e\xee\xa3\xb6\x7f\x78\xa5\ \x2d\x06\x79\x98\x04\x18\x18\x60\x47\x99\x19\x65\xc1\x7f\x10\x22\ \x4d\x77\x87\xac\x60\x02\xdb\x4b\x75\x15\xb9\xa9\x2d\xb3\xec\x47\ \x5a\xb3\x02\x73\xe6\xbf\x2c\xc2\xdf\xef\x0d\xfe\x47\x84\x1f\x59\ \x61\x44\x5e\xd7\x95\x09\x2b\x43\x31\x5b\x55\x71\x3a\xfe\x33\xf3\ \x79\x2b\x3a\x8f\x91\xc0\x40\x54\x50\xe0\xe8\x8f\x88\xfb\xfe\x7e\ \xbf\x46\x99\x3a\xc5\xeb\xce\xc4\xd4\x34\xfb\xd7\x23\xf0\x2f\x61\ \xf1\x05\x9e\xa1\x0d\x52\x81\x37\xf3\xbd\xb5\x70\x27\xb5\xf3\x3f\ \xf2\x46\x4c\x05\xf8\x0c\x51\xaa\x8a\xb5\x25\x24\x71\xa5\xb0\xe8\ \x12\xa6\x4c\xc6\x3e\x6e\x25\x0c\xc0\x8a\xdc\x19\x15\xdc\xd8\x2b\ \x52\x59\x7a\x1a\x3f\xc1\x1b\x89\x4c\x48\x66\x63\x61\x8f\x90\xea\ \x8f\x84\x8a\xdf\xa3\x3a\x27\x0b\xe9\x42\xf3\xeb\x67\xb3\x45\x08\ \xd1\x6d\xaa\x8a\x0a\x1b\xf3\x7b\x63\x66\x92\xe1\x53\x31\xe0\xa0\ \x4a\x78\x1e\x22\xca\x36\x59\x5a\x67\x01\xe1\x40\x4c\x76\xe7\x61\ \x79\x30\xd3\xde\x2e\xaa\x94\xd5\x5b\x4d\xf8\x5c\xb3\x82\xb8\x26\ \xf0\x23\x9b\x4d\xd3\x60\x85\x3c\x70\x39\x41\xb6\x4f\x4d\x26\x02\ \xbb\xcc\xa8\x42\x78\xac\x61\x18\x86\xbc\x09\xdd\x87\x9a\x49\x83\ \xbc\x6d\xae\xdb\xe6\xf8\x63\x55\xc3\x2c\x28\x47\xb1\x09\x47\x95\ \xd5\xac\x96\x05\xf9\x7e\x66\x11\x99\xca\xcf\xcf\xa7\x19\xb1\x87\ \x12\x7e\x66\x8e\x59\x63\x25\x83\x54\x6a\x94\xa9\x1d\x07\x95\x95\ \x47\x3c\xfc\x87\x3e\xca\x74\x64\x98\x8f\x7f\x12\xca\xa7\x88\xb8\ \xcc\x0e\x29\xee\xa0\x1a\x11\xa1\x22\x1e\x11\xe1\x88\x3d\x53\x12\ \xe8\x65\x99\x09\xfe\x86\xd6\xd5\x84\x9c\x79\x68\x93\x41\x7a\x5a\ \x2d\x6a\xc2\xe3\x47\x0e\x84\xf3\xfb\xdd\x48\x5f\x63\x66\xf7\x43\ \xa8\x7f\xe8\xa7\x6f\x01\xcb\x43\x1d\xca\x08\xfb\x40\x00\x00\x04\ \xe3\x49\x44\x41\x54\xca\x04\x36\xa6\x86\xb1\x12\x6f\x77\x93\x4a\ \x5b\x8b\xcd\xc2\x03\x84\x62\xe4\x45\x37\x4b\x20\x4b\x98\x7f\x3e\ \x17\x06\x4c\x8f\x51\x11\xd3\x7c\xf5\x12\x6e\x2b\x18\xc4\x6f\x79\ \x7a\x65\xc2\x7b\xc9\xb7\xab\x88\x69\x6b\x53\x0f\xeb\x92\x89\xd7\ \x5a\xc2\x42\x02\x1f\x4a\x98\x3a\xf1\x71\xeb\x83\x2c\x76\x6a\xac\ \xf6\x42\x66\xe2\xc8\x94\x89\xeb\x93\xce\x0a\x07\x55\x8c\x95\x45\ \x4c\x92\xaa\x69\x14\x87\x43\x0e\xc5\xee\x78\xbd\x32\x4b\x50\x66\ \x84\x32\xf4\x51\x88\x8f\x1d\xe3\xce\x19\xf8\x56\x85\xa8\x91\xd8\ \xf0\x02\xa1\x47\xea\x87\xa4\xd0\x10\x11\x17\xe6\x99\x08\x20\x11\ \x55\xe6\x7d\xdf\x22\xc2\x54\xda\x00\x27\xbe\xe5\xf3\xda\x47\xa5\ \x5a\x9d\x0d\xd5\x7f\xd7\x3b\x1c\xc6\x21\xdc\x62\x2f\x6e\x42\x20\ \xb1\x60\xf5\xa1\x99\xe4\xb3\xee\x55\x44\xe8\x61\x10\x67\xb4\x8b\ \xf9\x0c\xae\xe8\xc8\xda\xa1\x14\xa8\x03\x4b\xf6\x0c\x2d\x20\x1e\ \xee\x33\x9b\x8f\x81\xce\xb3\xee\xfb\x2b\x9b\x69\xe9\x9c\x04\xc2\ \xc4\x6b\xd9\xf8\xee\x41\x85\x61\xa7\x75\xa9\x97\x39\x7d\x66\x65\ \xfa\x19\x4d\xcd\xac\xb9\x7d\xeb\x3d\xf3\x1a\xd1\x17\xee\x10\x3c\ \x32\x53\x83\x95\x47\x13\xbd\x2f\xc3\x48\x96\x08\x22\x06\x8e\xcc\ \x7d\xef\xeb\xba\xce\x6b\xf6\x49\x57\x85\x49\x2b\xc4\xa6\xed\x6a\ \xd2\xf0\x29\x62\x49\xed\x45\x14\xc8\x37\x6d\xf7\x00\xe8\xc7\x4f\ \x74\xcc\xdc\x9a\x3c\x88\x3d\x56\x45\x66\x66\xdb\x9d\x0b\xb1\xb2\ \xad\xad\xef\x8f\xc6\x94\x95\x95\xa9\xa6\xc5\x95\xd1\xc1\xcf\x80\ \xf0\x21\x7d\x36\x85\xbf\x0f\xc4\xff\x5a\x4c\x66\x9f\x88\xd8\x0e\ \xf9\x91\xc0\xd7\xab\x73\x42\xcc\x54\x12\x34\x37\x84\xeb\xc1\xf3\ \x5b\x3a\x26\x83\xd3\x53\x99\xcd\x16\x46\xae\x6d\x4c\x4c\xcc\x54\ \x1e\x9e\x51\x86\x70\x1c\xd1\xc6\x03\xab\x80\x90\x65\x56\x25\xf6\ \x17\x8c\x35\x12\x69\x35\xfa\xd4\x09\x02\xa6\xa4\x08\xab\x18\xab\ \x28\x4e\x8a\xf1\x2e\x5c\xaa\x49\x5c\x01\x93\x8d\x8e\xb7\x7c\x2b\ \xf3\xa4\x07\x2c\x59\x54\xb6\x50\xa9\x4b\x65\x31\x95\xa9\x11\x23\ \x57\xa8\xfc\xc6\x06\x66\x13\xc1\xb7\x64\x78\x32\x66\x55\xb6\xef\ \x45\x51\x11\x2c\x8e\xb8\x50\x1f\x22\x4d\xe9\xc4\x2e\x34\x45\x83\ \xc5\x96\x15\xc5\x8b\x7e\x46\x40\x89\x41\xb1\x2a\xd8\x97\x07\x65\ \xb5\x7e\xa6\x33\xea\x2a\x30\xd8\xb9\xae\x0b\xcd\x1e\xae\xd6\x03\ \x46\x9d\xe1\x1b\x98\xe6\x28\x48\xa0\x22\x39\x23\xe3\x53\xf1\x4f\ \x7b\x83\x83\x8a\x55\xd5\x3d\x3c\x62\xad\x65\x8b\x96\x19\x8c\x40\ \x46\x23\xdc\x9b\xed\xe5\xfc\x92\xc3\x3f\x3e\x63\xbd\x7e\x97\x7e\ \x6b\xa2\xf5\xf9\xf8\xde\xe8\x76\x70\x16\x40\xac\x16\xe5\x91\xc7\ \xce\x66\x47\x40\x75\x8b\xa2\x20\x23\xc3\xb7\x13\x3f\x7e\x03\x0f\ \xbe\xaa\x42\x5c\x7e\x3b\xd2\xe3\x88\x18\x7e\xed\x11\x61\xc6\xaa\ \x3f\xe7\x44\x10\x11\xd0\x0b\xb0\x48\x50\x6a\xee\xf9\x30\x03\x15\ \xd8\x75\xe9\x30\xef\xca\x8c\xed\xe7\xf3\xe1\xfb\x0e\xd4\xff\xca\ \x2a\x8a\x4f\x4c\x45\x2a\x66\x17\x55\x87\x21\xd6\xa8\x13\xc7\xa1\ \xc2\xec\xe7\xf3\xc1\x35\xca\xc4\x3d\xe0\x61\x51\xd3\x65\x56\xf5\ \x1b\xc9\x8d\x6d\xd9\x88\xa6\xa8\x88\x4d\xdd\x83\x61\xee\x04\xf7\ \x58\x6a\x75\x29\x6a\x19\x55\xbd\x54\xdc\x13\x61\x50\x72\xcc\x23\ \x8b\x8a\x53\x44\x8c\x8a\x55\x61\x65\x72\x30\x75\xd3\xc9\xcd\x42\ \x04\x76\x95\xbd\x64\xd9\x63\xc1\x41\x59\x91\x49\x20\xa4\xa8\x19\ \x25\x31\x25\x19\x22\xab\x04\xb2\x18\x55\x21\x26\x4a\x39\xc3\xf5\ \x37\x31\xf1\x6d\xd3\x88\x68\x5f\x3d\x5e\x0a\xd9\x18\x2b\xf2\x05\ \x26\xc4\x08\x27\x52\x47\x63\x71\x87\xce\x41\x6e\x5f\xc4\x39\x72\ \xd0\x2e\xac\x0f\xbb\x09\x5e\xbd\x1d\x58\x3b\x8d\x72\x7f\x80\x6a\ \xf4\x46\xc6\x3a\x19\xd7\xaf\x8e\xd8\x3c\xa3\xaf\x88\x03\x3d\x1f\ \x06\xe1\xf7\xfb\x3d\xdf\x02\x9a\x08\x55\x01\x56\x26\xaa\x5c\x25\ \x23\x93\x3c\x47\xc6\xa9\x9d\x44\x34\xb3\x01\x7a\x88\xad\x3a\x3e\ \x36\xeb\x95\xc0\xf5\x38\x2f\x9f\x75\x39\x57\x5f\x67\x94\xe3\x4c\ \x3b\xa8\x77\xc3\x05\x13\xee\x6d\x6a\x1d\xa8\x56\x94\xe4\xed\x3e\ \x9f\x98\x25\xc4\xde\x69\x6a\x62\xaa\x6c\x83\x9b\x34\x98\xfe\xa6\ \xc3\x21\x91\x33\x2c\x30\x48\x88\x00\x6c\xf0\x58\x7f\x9c\x49\xd7\ \xfb\x9e\x39\xff\xfc\xf3\xf9\x1c\x4c\x65\xef\xed\x1e\xd0\xfc\x44\ \xd4\xde\x5b\x55\x0d\xbf\xa3\x89\x11\x6a\x1e\x9c\x13\x4c\xf6\x52\ \x32\x07\x8a\xc5\x17\x97\xbb\xef\xb2\x70\xae\x4a\x77\x98\x6f\x83\ \xa6\x7c\x6f\x27\xee\x81\x11\x4c\xf7\xdc\x1d\xa8\x83\xa9\x72\xdf\ \x66\x76\x99\x56\xd4\xef\x28\xcc\xd4\xbd\x52\x58\x3e\xd7\x32\x33\ \xc8\x83\xe8\x24\x0c\x9e\xa4\x48\x66\x29\x26\x65\xcf\x3c\x14\xb1\ \x53\x4c\xeb\x40\xb1\x50\x23\x1c\x57\xb8\x0e\x51\xd9\xfb\x71\x2c\ \x20\xc0\xb7\x1b\x43\x21\x15\xc5\x94\x63\xec\xd5\x01\xe7\xf3\x71\ \x5b\x7d\x2f\x82\x33\x40\x50\xd5\xbd\x9d\x29\x54\xa0\xab\xad\xd8\ \xc1\xcc\xeb\x5a\x5c\x9d\x22\xd0\x51\xf2\x18\x68\xd2\x81\x5a\x86\ \xfc\x3c\x11\xcd\x74\x32\x40\x47\x8c\x71\x0a\xc5\x6c\x6c\xb4\x0e\ \x69\x05\xeb\xac\x07\x56\x2a\xc8\x87\xba\xae\x8f\x8a\xde\xf7\xef\ \x48\x17\xd1\xe3\xd0\x87\x62\x03\x4b\xa1\x25\xc1\xf7\xfd\xca\xab\ \xe8\xb1\xd5\x99\x69\xc0\x65\x13\x81\x6a\x3f\x3f\x3f\x22\xf2\xfb\ \xf7\xef\xb6\xf1\xef\x65\x4d\x44\x0b\x31\xb3\xee\xfb\xb2\x0f\x3e\ \x52\x66\x1d\x09\xe0\xb1\x65\x3b\x57\xca\x18\x32\x35\x4e\xf0\xfb\ \xf7\xdf\x7b\x3b\x51\x01\xe7\xc5\x9f\xd1\xfd\x22\xbc\xfe\xe8\x6a\ \x97\x2e\x6e\x4e\x0f\xae\x85\xb5\xf7\xf6\xf0\x7f\xfd\x5c\x15\x48\ \xc0\x8b\xeb\xba\x98\xf9\xd7\xaf\x5f\x6f\x4e\x4d\x04\xae\x5c\x16\ \x95\xac\xbc\xe4\x8a\xa1\x48\x8f\x3f\xa0\xfd\x03\x40\xc3\xde\xc3\ \xcf\xfb\x9f\xff\xfc\x67\xef\xfd\xbf\xff\xfd\xef\xa0\x7f\x20\xa0\ \x9d\x52\xf3\xff\x59\xe8\x8f\x49\x93\x58\x99\xcd\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xa1\x9b\x9d\xa1\x9b\x9e\xa3\x9d\xa0\xa6\xa0\ \xa1\xa4\x9e\xa1\xa6\xa0\xa3\xa6\xa0\xa2\xa8\xa3\xa5\xaa\xa5\xa7\ \xab\xa6\xa8\xae\xa8\xac\xb0\xaa\xaf\xaf\xa9\xae\xb3\xad\xb2\xb2\ \xab\xb0\xb3\xae\xb3\xb2\xac\xb1\xb3\xab\xb0\xb5\xae\xb1\xb5\xad\ \xb0\xb8\xaf\xb1\xba\xb1\xb3\xba\xb2\xb3\xc0\xb8\xb9\xc0\xb8\xb8\ \xc1\xba\xbc\xc2\xbb\xbc\xc5\xbf\xc0\xc5\xbd\xbe\xc6\xbf\xc0\xc8\ \xc0\xc1\xc9\xc2\xc3\xc9\xc2\xc2\xc9\xc0\xbf\xcc\xc2\xc3\xcb\xc0\ \xc2\xcc\xc2\xc3\xcc\xc2\xc3\xca\xbf\xc0\xc7\xbb\xbc\xba\xa9\xab\ \xa6\x93\x95\xa2\x90\x91\xab\x9c\x9a\xc1\xb5\xb5\xcd\xc5\xc5\xcf\ \xc9\xca\xd0\xc8\xc9\xd2\xca\xc9\xd2\xcb\xc9\xd4\xcd\xca\xd5\xce\ \xcb\xd7\xcf\xcc\xd4\xcc\xcb\xcf\xc1\xc0\xc8\xb6\xb5\xba\xa2\xa0\ \xb3\x97\x94\xb0\x98\x94\xc0\xaf\xab\xcf\xc3\xc1\xd7\xce\xce\xda\ \xd3\xd4\xda\xd5\xd5\xdb\xd6\xd8\xdd\xd7\xd8\xde\xd6\xd7\xe0\xd8\ \xd9\xe0\xd9\xda\xe0\xd9\xd9\xe1\xd9\xda\xe1\xd9\xd9\xe2\xdb\xd8\ \xe0\xd8\xd5\xdf\xd5\xd2\xdc\xce\xcb\xd5\xc2\xbf\xce\xb6\xb1\xc7\ \xa8\xa4\xc2\xa0\x9f\xc0\xa2\xa1\xc0\xa4\xa2\xc6\xad\xa8\xcb\xb5\ \xb2\xd4\xc3\xbf\xd7\xc8\xc5\xdd\xd2\xd0\xdf\xd5\xd3\xe0\xd6\xd6\ \xe0\xda\xd9\xe1\xdb\xda\xe1\xdb\xd9\xe2\xdb\xda\xe1\xdb\xda\xdf\ \xd8\xd6\xdf\xd9\xd7\xe1\xdc\xda\xe0\xdb\xd9\xdf\xd9\xd6\xdf\xda\ \xd6\xa7\x8b\x7e\xe0\xd6\xd3\xe0\xda\xd9\xe1\xda\xda\xdf\xd9\xd9\ \xdd\xd6\xd6\xdc\xd6\xd6\xdb\xd3\xd3\xd6\xcd\xcf\xd2\xca\xcc\xd2\ \xc9\xcb\xcb\xc4\xc5\xc6\xc0\xc0\xbd\xb8\xb7\xb9\xb4\xb4\xb1\xab\ \xac\xa8\xa3\xa4\x9e\x99\x9a\x8f\x8e\x8e\x81\x82\x83\x71\x75\x76\ \x5f\x64\x6a\x45\x4d\x56\x21\x2b\x36\x06\x0a\x10\x00\x00\x00\x07\ \x06\x07\x36\x35\x35\x5e\x5d\x5d\x70\x70\x71\x79\x78\x7a\x80\x7f\ \x83\x85\x84\x88\x84\x85\x89\x86\x86\x8b\x86\x87\x8d\x84\x86\x8c\ \x81\x84\x89\x80\x82\x89\x81\x84\x8a\x80\x82\x87\x71\x73\x77\x69\ \x6b\x6f\x7a\x7d\x81\x79\x7c\x80\x79\x7c\x80\x76\x7a\x7f\x71\x75\ \x7b\x71\x75\x7d\x71\x77\x7e\x70\x76\x7f\x6d\x73\x7d\x69\x70\x7b\ \x65\x6e\x78\x68\x70\x7c\x68\x71\x7e\x59\x63\x70\x20\x25\x31\x0d\ \x0e\x17\x06\x06\x0b\x1d\x23\x2f\x47\x59\x6a\x1d\x27\x33\x00\x00\ \x00\xa1\x9c\x9e\xa1\x9d\x9f\xa5\xa0\xa2\xa6\xa1\xa3\xa6\xa1\xa3\ \xa5\x9f\xa2\xa5\x9f\xa1\xa8\xa3\xa4\xad\xa8\xaa\xac\xa7\xa9\xac\ \xa7\xa9\xae\xa9\xac\xad\xa7\xab\xb2\xac\xb1\xb2\xad\xb1\xb2\xac\ \xb1\xb5\xaf\xb4\xb6\xaf\xb3\xb6\xaf\xb2\xb6\xaf\xb2\xb8\xb1\xb4\ \xbc\xb5\xb7\xbb\xb3\xb5\xbe\xb6\xb7\xc2\xba\xbb\xbf\xb8\xba\xc1\ \xbb\xbc\xc5\xbf\xbf\xc4\xbc\xbd\xc7\xbf\xbf\xc8\xbf\xbf\xc8\xc0\ \xc0\xcb\xc2\xc2\xcd\xc3\xc3\xce\xc4\xc4\xcd\xc3\xc4\xcf\xc5\xc5\ \xcd\xc4\xc4\xcc\xc1\xc2\xce\xc4\xc4\xce\xc5\xc5\xd0\xc6\xc6\xca\ \xbd\xbd\xb7\xa6\xa4\xa2\x8e\x8b\x9f\x8b\x8a\xb0\x9e\x9d\xbe\xae\ \xac\xc8\xbd\xb9\xce\xc4\xc0\xd0\xc8\xc5\xd1\xca\xc7\xd5\xce\xcb\ \xd7\xd0\xcd\xd8\xd1\xcf\xd9\xd1\xcf\xd9\xd1\xce\xda\xcf\xcc\xcf\ \xbf\xbb\xc3\xb0\xac\xb3\x98\x91\xaf\x92\x8c\xb8\xa2\x9b\xc5\xb4\ \xaf\xd0\xc3\xc2\xd7\xcf\xce\xdb\xd4\xd2\xde\xd6\xd5\xde\xd9\xd8\ \xdf\xda\xd9\xe2\xda\xda\xe2\xdc\xdb\xe3\xde\xdd\xe3\xde\xdc\xe3\ \xdd\xdb\xe3\xdc\xda\xe3\xdd\xda\xe4\xdd\xda\xe4\xdd\xdb\xe3\xdb\ \xd9\xe1\xd7\xd5\xe0\xd3\xcf\xda\xc6\xc1\xd1\xb9\xb4\xcc\xb1\xab\ \xc5\xa9\xa2\xc1\xa2\x9e\xbf\xa1\x9c\xbd\x9b\x95\xbc\x9b\x90\xbe\ \x9e\x93\xbb\x9a\x8e\xbb\x9a\x90\xbe\xa0\x99\xbd\xa2\x9a\xbb\xa2\ \x99\xbe\xa5\x9b\xba\xa1\x98\xb8\xa1\x98\xa7\x8a\x7e\xa7\x88\x7d\ \xe4\xdd\xdc\xdf\xd7\xd6\xe0\xd8\xd8\xde\xd6\xd6\xdd\xd4\xd4\xda\ \xd2\xd2\xd7\xcf\xcf\xd4\xcc\xcc\xd1\xc9\xc9\xcd\xc5\xc6\xca\xc3\ \xc4\xc3\xbe\xbe\xbc\xb7\xb6\xb5\xb0\xb0\xab\xa6\xa7\xa2\x9e\x9f\ \x96\x92\x93\x8b\x89\x8b\x7c\x7e\x7e\x6c\x6f\x71\x56\x5c\x61\x34\ \x3d\x46\x11\x19\x20\x02\x03\x04\x00\x00\x00\x16\x16\x18\x4c\x4b\ \x4c\x66\x65\x67\x74\x73\x75\x7e\x7d\x80\x7f\x80\x83\x81\x82\x86\ \x85\x86\x8a\x86\x87\x8c\x84\x86\x8b\x83\x86\x8b\x84\x87\x8c\x80\ \x83\x88\x81\x84\x89\x7c\x7f\x84\x67\x69\x6f\x74\x77\x7b\x79\x7e\ \x81\x79\x7d\x81\x77\x7b\x7f\x77\x7b\x80\x70\x75\x7a\x6e\x75\x7b\ \x6f\x75\x7d\x70\x75\x7f\x6e\x75\x7f\x6b\x72\x7d\x67\x6e\x79\x66\ \x6f\x7a\x64\x6e\x7a\x44\x4e\x5a\x10\x11\x17\x08\x0a\x0e\x11\x12\ \x19\x35\x3e\x4a\x4d\x5d\x6d\x1b\x24\x2f\x00\x00\x00\xa1\x9d\x9f\ \xa1\x9d\x9f\xa7\xa2\xa4\xa7\xa2\xa4\xa7\xa2\xa3\xa6\xa0\xa2\xa9\ \xa3\xa5\xab\xa6\xa7\xad\xa7\xa9\xac\xa7\xa8\xac\xa7\xa9\xaf\xa9\ \xab\xac\xa7\xa8\xb0\xaa\xad\xb2\xac\xaf\xb4\xae\xb0\xb7\xb2\xb4\ \xb8\xb2\xb5\xb9\xb2\xb5\xb8\xb1\xb4\xbc\xb5\xb8\xbc\xb6\xb8\xbe\ \xb7\xb9\xc0\xb8\xb9\xc4\xbc\xbd\xc0\xb9\xba\xc2\xba\xbb\xc4\xbe\ \xbe\xc3\xbc\xbc\xc5\xbd\xbd\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc2\xc2\ \xcd\xc4\xc4\xce\xc5\xc5\xcf\xc6\xc7\xcf\xc7\xc7\xce\xc5\xc6\xd1\ \xc9\xc9\xd0\xc7\xc7\xd0\xc7\xc5\xd1\xc7\xc7\xd2\xc9\xc7\xd3\xc9\ \xc8\xd1\xc7\xc5\xc5\xb9\xb8\xaf\x9b\x98\xa0\x89\x83\xa3\x8f\x86\ \xb5\xa3\x9b\xc2\xb4\xb0\xc8\xbe\xba\xce\xc4\xc1\xd5\xcd\xcc\xda\ \xd3\xd0\xd8\xd1\xce\xda\xd3\xd0\xdb\xd3\xd3\xdb\xd4\xd2\xdc\xd6\ \xd4\xde\xd9\xd7\xd8\xcf\xce\xcc\xbe\xbb\xbe\xa8\xa3\xb4\x9a\x92\ \xb2\x98\x8e\xbc\xa5\x9c\xca\xb7\xb0\xd5\xc7\xc3\xd7\xce\xcb\xdc\ \xd4\xd1\xdd\xd7\xd5\xe2\xdc\xdb\xe2\xdc\xdb\xe3\xdd\xdc\xe3\xde\ \xdd\xe3\xde\xdc\xe3\xde\xdb\xe4\xde\xdb\xe3\xdd\xdb\xe3\xde\xdb\ \xe5\xdf\xdc\xe4\xde\xdc\xe5\xdf\xdc\xe6\xe0\xde\xe7\xe0\xde\xe6\ \xdf\xdd\xe5\xe0\xde\xe5\xde\xdc\xe4\xdc\xd9\xe5\xdd\xda\xe0\xd5\ \xd2\xde\xd1\xce\xdd\xcf\xcc\xdd\xd0\xcd\xdc\xcf\xcb\xdc\xd0\xcb\ \xdc\xd2\xcc\xda\xcf\xca\xb3\x97\x8c\xca\xbb\xb4\xdf\xd8\xd5\xde\ \xd6\xd3\xde\xd7\xd5\xdc\xd4\xd4\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\ \xce\xd2\xca\xc9\xd1\xc8\xc8\xcd\xc5\xc5\xc6\xbe\xbe\xbe\xb8\xb9\ \xb7\xb2\xb1\xae\xa9\xa9\xa7\xa2\xa4\x9c\x99\x9a\x8f\x8d\x8f\x84\ \x83\x86\x77\x78\x7b\x66\x68\x6c\x4f\x54\x59\x2a\x32\x3b\x09\x0e\ \x13\x00\x00\x00\x01\x02\x02\x26\x27\x2a\x55\x58\x59\x6a\x6c\x6f\ \x78\x79\x7b\x7f\x7e\x80\x81\x80\x84\x82\x83\x87\x83\x84\x88\x85\ \x86\x8c\x84\x86\x8b\x83\x86\x8b\x81\x84\x89\x7f\x82\x87\x80\x83\ \x88\x76\x7a\x7f\x65\x68\x6d\x7a\x7f\x83\x79\x7d\x81\x77\x7c\x7f\ \x76\x7a\x7f\x74\x78\x7d\x73\x77\x7c\x73\x77\x7d\x72\x78\x7f\x70\ \x75\x7e\x6d\x74\x7d\x68\x70\x7a\x65\x6f\x79\x65\x6f\x79\x61\x6b\ \x75\x2d\x34\x3d\x04\x04\x07\x0d\x0f\x14\x1d\x22\x2b\x45\x4e\x5c\ \x45\x50\x5e\x23\x27\x31\x00\x00\x00\xa3\x9e\xa0\xa2\x9e\xa0\xa6\ \xa1\xa3\xa7\xa2\xa4\xa9\xa4\xa5\xa7\xa2\xa3\xa8\xa3\xa5\xab\xa5\ \xa7\xad\xa7\xaa\xad\xa7\xa9\xab\xa5\xa7\xaf\xaa\xab\xad\xa8\xaa\ \xb0\xa9\xab\xb0\xa9\xac\xb0\xaa\xad\xb6\xb0\xb4\xb8\xb2\xb5\xb7\ \xb0\xb3\xb9\xb2\xb5\xba\xb3\xb6\xbb\xb4\xb6\xc0\xba\xbb\xc3\xbd\ \xbe\xc1\xbb\xbc\xc4\xbc\xbc\xc3\xbb\xbb\xc7\xc1\xc1\xc6\xc0\xc0\ \xc6\xbd\xbd\xc7\xbe\xbe\xc8\xc0\xc0\xcb\xc2\xc3\xcb\xc1\xc1\xcb\ \xc2\xc1\xce\xc5\xc5\xcf\xc8\xc8\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\ \xcb\xd2\xcb\xca\xd2\xc9\xc8\xd3\xca\xc7\xd2\xc9\xc8\xd2\xca\xc8\ \xd3\xcc\xcb\xd3\xcb\xc8\xd1\xc5\xc2\xc4\xb4\xaf\xb3\x9d\x96\xa7\ \x8f\x89\xaa\x94\x90\xb8\xa5\xa0\xc6\xb8\xb2\xcd\xc5\xc1\xd3\xcb\ \xc8\xd9\xd2\xce\xdb\xd4\xd1\xdb\xd4\xd1\xdc\xd6\xd5\xdc\xd6\xd6\ \xdc\xd7\xd8\xde\xda\xda\xdf\xd9\xd9\xdf\xd7\xd6\xda\xd0\xcd\xd0\ \xc0\xbb\xc1\xad\xa7\xbd\xa6\xa0\xbd\xa5\x9e\xbe\xa6\x9d\xc7\xb5\ \xaf\xd0\xc0\xbc\xd6\xc7\xc3\xd8\xcd\xca\xda\xd1\xd0\xdc\xd4\xd3\ \xdf\xd9\xd8\xe2\xdc\xdc\xe3\xde\xdd\xe2\xde\xdb\xe3\xde\xdb\xe3\ \xde\xdd\xe2\xdd\xdb\xe3\xde\xdd\xe4\xdf\xde\xe3\xde\xdc\xe3\xde\ \xdb\xe2\xde\xdb\xe2\xdd\xda\xe3\xdd\xdb\xe2\xdd\xda\xe2\xdc\xd9\ \xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd9\xd6\xdf\ \xda\xd6\xa5\x8a\x7d\xe0\xd8\xd4\xdc\xd5\xd2\xdc\xd5\xd2\xda\xd3\ \xd2\xd8\xd1\xd1\xd7\xd1\xd0\xd6\xce\xce\xd2\xca\xc8\xcd\xc5\xc3\ \xca\xc2\xc1\xc7\xbf\xbf\xc1\xbb\xba\xb9\xb3\xb4\xb0\xaa\xaa\xaa\ \xa5\xa4\x9e\x99\x9a\x98\x95\x96\x8b\x8a\x8c\x7c\x7b\x7e\x6d\x6f\ \x72\x5b\x5e\x63\x41\x46\x4c\x1d\x23\x2b\x04\x07\x0a\x00\x00\x00\ \x0c\x0c\x0e\x3d\x3e\x41\x5b\x5c\x5d\x6d\x6f\x71\x79\x79\x7d\x7e\ \x7e\x82\x82\x83\x87\x85\x86\x8a\x84\x85\x89\x85\x86\x8b\x86\x88\ \x8c\x83\x86\x8b\x80\x84\x89\x7e\x82\x86\x7f\x83\x87\x69\x6d\x72\ \x6e\x72\x77\x7b\x80\x84\x77\x7b\x7f\x76\x7a\x7e\x76\x79\x7d\x73\ \x77\x7c\x73\x76\x7c\x73\x77\x7d\x72\x78\x80\x72\x77\x80\x6f\x75\ \x7f\x6d\x74\x7d\x68\x70\x7a\x65\x6e\x78\x61\x6b\x75\x23\x29\x30\ \x01\x01\x01\x10\x12\x16\x33\x3b\x46\x3e\x47\x54\x34\x3c\x48\x28\ \x2d\x37\x00\x00\x00\xa5\xa1\xa2\xa5\xa2\xa4\xa7\xa2\xa4\xa7\xa2\ \xa4\xa9\xa4\xa6\xaa\xa5\xa6\xaa\xa4\xa5\xaa\xa4\xa5\xab\xa6\xa7\ \xad\xa7\xa8\xae\xa8\xa9\xb1\xab\xac\xaf\xa9\xaa\xb3\xad\xae\xb2\ \xac\xad\xb3\xad\xae\xb4\xaf\xb2\xb6\xb0\xb3\xb6\xb0\xb3\xb9\xb3\ \xb6\xba\xb3\xb6\xbc\xb6\xb8\xc0\xb9\xbb\xc3\xbd\xbe\xc2\xbb\xbb\ \xc4\xbe\xbe\xc7\xbf\xc0\xc6\xbf\xc0\xca\xc2\xc2\xc7\xc0\xc0\xc8\ \xc0\xbf\xc8\xc0\xc0\xcb\xc2\xc2\xcb\xc3\xc3\xcd\xc4\xc4\xcf\xc7\ \xc7\xcf\xc7\xc7\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\xca\xd2\xcb\xca\ \xd4\xcb\xcb\xd5\xcd\xcc\xd6\xce\xcd\xd5\xcc\xcc\xd4\xcb\xc9\xd4\ \xca\xc7\xd4\xc9\xc7\xd6\xcc\xc9\xd6\xcc\xc8\xd3\xc8\xc4\xc9\xbb\ \xb6\xb6\xa4\x9d\xac\x96\x8d\xb0\x9c\x94\xbb\xa8\xa1\xc1\xb2\xaa\ \xc8\xba\xb4\xcf\xc5\xc0\xd7\xce\xca\xdb\xd5\xd3\xdb\xd6\xd5\xdc\ \xd7\xd6\xdc\xd7\xd7\xdd\xd7\xd5\xde\xd8\xd7\xe0\xdb\xdb\xe0\xdb\ \xdb\xe0\xda\xd9\xde\xd5\xd2\xd5\xc8\xc4\xcb\xbb\xb5\xc4\xae\xa7\ \xc2\xa7\x9f\xc4\xaa\xa5\xc5\xae\xab\xc8\xb5\xb2\xce\xbe\xbd\xd2\ \xc4\xc2\xd5\xc8\xc5\xd5\xcb\xc6\xd6\xcc\xc8\xd8\xd0\xcd\xdb\xd2\ \xd1\xdc\xd3\xd2\xdd\xd8\xd6\xe0\xdb\xd9\xe0\xda\xd8\xe0\xda\xd8\ \xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe0\xdb\xd8\xdf\ \xda\xd9\xde\xdb\xda\xdb\xd7\xd7\xdb\xd6\xd3\xcc\xc0\xb8\xac\x94\ \x89\xdb\xd5\xd2\xd7\xd0\xce\xd7\xd0\xce\xd6\xd0\xce\xd3\xcc\xcc\ \xd3\xcc\xcb\xcf\xc8\xc7\xcc\xc5\xc2\xc8\xc1\xbe\xc4\xbb\xba\xc1\ \xb9\xb9\xba\xb3\xb4\xb4\xad\xae\xaa\xa4\xa4\xa0\x9b\x9a\x97\x93\ \x93\x8e\x8c\x8c\x81\x81\x83\x75\x75\x77\x63\x66\x68\x50\x55\x58\ \x33\x3a\x3e\x10\x17\x1b\x01\x03\x04\x00\x00\x00\x1a\x1b\x1e\x49\ \x4b\x4e\x61\x60\x62\x71\x6f\x72\x7b\x7a\x7b\x7f\x7e\x80\x82\x83\ \x86\x83\x84\x88\x85\x86\x8b\x85\x86\x8b\x84\x87\x8b\x82\x85\x89\ \x7e\x82\x86\x7e\x82\x86\x7c\x7f\x83\x66\x6a\x6f\x73\x77\x7b\x7b\ \x7e\x82\x77\x7a\x7f\x77\x7b\x7f\x75\x7a\x7e\x72\x77\x7c\x72\x77\ \x7c\x70\x76\x7c\x6f\x75\x7c\x6f\x74\x7c\x6e\x75\x7d\x6d\x75\x7e\ \x6a\x72\x7b\x65\x6e\x77\x5a\x64\x6f\x23\x27\x2f\x02\x02\x03\x15\ \x18\x1c\x54\x5d\x67\x45\x4d\x58\x2b\x33\x3d\x29\x2e\x39\x00\x00\ \x00\xa4\x9f\xa0\xa5\xa3\xa3\xa7\xa4\xa6\xa8\xa3\xa5\xa7\xa2\xa3\ \xaa\xa5\xa6\xac\xa6\xa7\xac\xa6\xa7\xad\xa7\xa8\xac\xa7\xa7\xb1\ \xab\xac\xb3\xad\xae\xae\xa9\xaa\xb2\xad\xae\xb5\xb0\xb1\xb5\xaf\ \xb1\xb4\xae\xb1\xb3\xad\xb0\xb6\xb1\xb3\xb9\xb4\xb6\xbb\xb4\xb7\ \xbf\xb8\xba\xc1\xbb\xbc\xc1\xbb\xbc\xc4\xbd\xbe\xc5\xc0\xc0\xc6\ \xc0\xc1\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc4\xc5\xca\xc3\xc2\xcb\xc3\ \xc3\xcc\xc4\xc4\xce\xc6\xc6\xce\xc6\xc6\xce\xc6\xc6\xd0\xc7\xc7\ \xce\xc5\xc5\xd1\xc9\xc9\xd3\xcb\xcb\xd4\xcc\xcb\xd6\xce\xcd\xd8\ \xd0\xd0\xd5\xce\xcc\xd5\xcd\xcc\xd5\xcc\xcb\xd5\xcb\xc9\xd4\xc8\ \xc6\xd3\xc9\xc5\xd5\xcb\xc7\xd7\xce\xc9\xda\xd2\xcf\xda\xd1\xce\ \xd7\xcb\xc7\xd2\xc4\xbf\xbf\xad\xa5\xaf\x99\x8e\xb0\x98\x8e\xb5\ \x9f\x96\xbd\xa9\xa0\xc4\xb4\xac\xc8\xbd\xb7\xd3\xca\xc7\xda\xd2\ \xd0\xdc\xd5\xd2\xdd\xd8\xd7\xde\xd9\xd8\xdd\xd9\xd9\xdd\xd8\xd7\ \xde\xd8\xd7\xdf\xd9\xd7\xe0\xda\xd7\xe1\xda\xd8\xe0\xd9\xd5\xdf\ \xd6\xd3\xdb\xcc\xc9\xd1\xc0\xbc\xcb\xb8\xb4\xc5\xb0\xad\xc3\xad\ \xa8\xc4\xad\xa6\xc3\xae\xa6\xc5\xb1\xaa\xc7\xb4\xb0\xc7\xb3\xad\ \xc6\xb3\xac\xca\xb7\xb2\xc8\xb5\xb0\xca\xb8\xb1\xc9\xb8\xb3\xc9\ \xb8\xb4\xca\xb9\xb5\xc9\xbb\xb5\xc7\xb9\xb4\xc6\xb9\xb4\xc6\xba\ \xb5\xc4\xb7\xb1\xc4\xb5\xac\x96\x77\x61\xc7\xb8\xb1\xd5\xcd\xca\ \xd2\xcb\xc9\xcf\xc9\xc6\xce\xc8\xc5\xcc\xc5\xc3\xca\xc2\xc2\xc6\ \xbf\xbf\xc4\xbc\xbb\xc1\xb9\xb7\xbb\xb5\xb1\xb6\xb0\xae\xb1\xaa\ \xa9\xa8\xa3\xa3\xa0\x9c\x9c\x98\x95\x94\x8e\x8b\x8b\x81\x80\x80\ \x75\x75\x76\x68\x69\x6a\x58\x5c\x5d\x44\x49\x4b\x22\x28\x2b\x07\ \x0a\x0d\x00\x00\x00\x04\x04\x06\x2d\x2d\x31\x51\x52\x54\x65\x65\ \x65\x70\x6f\x70\x79\x79\x7a\x7d\x7d\x7f\x81\x83\x84\x84\x86\x89\ \x84\x85\x8a\x85\x87\x8c\x83\x86\x8a\x80\x83\x87\x7f\x82\x86\x80\ \x83\x87\x72\x75\x7a\x6b\x6e\x73\x77\x7a\x7e\x79\x7c\x81\x76\x7a\ \x80\x77\x7b\x80\x76\x7a\x7f\x71\x78\x7d\x71\x77\x7c\x70\x76\x7c\ \x6e\x74\x7b\x6d\x74\x7b\x6b\x72\x7a\x6b\x72\x7a\x6c\x73\x7b\x68\ \x71\x79\x4e\x55\x61\x26\x2a\x34\x0a\x09\x0f\x21\x25\x2d\x5c\x65\ \x6f\x5a\x63\x6f\x3b\x42\x4e\x26\x2b\x36\x00\x00\x00\xa4\x9f\xa0\ \xa4\xa1\xa1\xa4\xa0\xa1\xa6\xa2\xa3\xa8\xa3\xa5\xaa\xa5\xa6\xab\ \xa5\xa6\xac\xa7\xa8\xae\xa9\xa9\xad\xa8\xa6\xb0\xaa\xab\xaf\xaa\ \xab\xae\xaa\xa9\xb3\xad\xae\xb5\xaf\xb1\xb6\xb0\xb1\xb5\xaf\xb0\ \xb5\xaf\xb2\xb8\xb2\xb4\xb7\xb1\xb3\xb6\xaf\xb2\xbd\xb6\xb8\xc1\ \xbb\xbc\xc2\xbc\xbc\xc4\xbd\xbd\xc6\xbf\xbf\xc6\xc0\xbf\xc8\xc2\ \xc1\xca\xc3\xc2\xcb\xc4\xc5\xc9\xc1\xc1\xcb\xc3\xc3\xcc\xc4\xc4\ \xce\xc7\xc7\xcf\xc8\xc8\xcf\xc8\xc8\xd1\xc9\xc8\xcf\xc7\xc7\xd0\ \xc8\xc8\xd2\xca\xca\xd4\xcc\xcc\xd6\xce\xce\xd6\xcf\xcd\xd5\xce\ \xcc\xd6\xce\xcc\xd5\xcc\xca\xd5\xcb\xc9\xd4\xca\xc8\xd4\xcb\xc7\ \xd6\xcc\xc8\xd5\xcc\xc8\xd7\xce\xcb\xd8\xd0\xcd\xd9\xd0\xcd\xdb\ \xd2\xcf\xdc\xd3\xd1\xd7\xd0\xcd\xd2\xc7\xc3\xc5\xb4\xaf\xbc\xa7\ \x9f\xb6\x9e\x95\xb7\xa0\x97\xba\xa6\x9e\xbe\xaa\xa2\xc3\xb1\xac\ \xc9\xbb\xb8\xcf\xc3\xc1\xd8\xd0\xcf\xdc\xd6\xd6\xdc\xd7\xd5\xdc\ \xd6\xd4\xdb\xd6\xd2\xdb\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd2\xdd\xd6\ \xd3\xdd\xd6\xd3\xde\xd8\xd5\xde\xd8\xd5\xdc\xd7\xd4\xda\xd4\xd3\ \xd6\xcf\xcc\xd3\xc8\xc5\xcd\xc1\xbd\xcc\xbe\xb9\xc4\xb2\xac\xc1\ \xac\xa6\xbd\xa9\xa0\xbd\xa8\xa1\xba\xa4\x9d\xba\xa4\x9d\xb9\xa1\ \x9b\xb8\xa2\x9c\xb7\xa1\x98\xb5\xa0\x99\xb5\xa2\x9a\xb4\xa2\x98\ \xb2\x9f\x93\x80\x5a\x46\xce\xc6\xc3\xca\xc3\xc0\xc8\xc1\xbf\xc4\ \xbe\xbc\xc5\xbe\xbc\xc1\xbb\xb9\xbf\xb8\xb8\xbb\xb5\xb4\xb8\xb2\ \xb0\xb3\xad\xac\xaf\xa8\xa7\xab\xa3\xa3\xa5\x9f\x9f\x9c\x98\x97\ \x94\x90\x90\x8d\x89\x89\x81\x7f\x7e\x74\x73\x73\x69\x69\x69\x5b\ \x5d\x5d\x4b\x4f\x50\x33\x3a\x3a\x15\x1b\x1e\x02\x04\x06\x00\x00\ \x00\x10\x0f\x11\x37\x38\x3b\x55\x57\x58\x65\x65\x65\x70\x6f\x71\ \x77\x76\x78\x7a\x7c\x7d\x81\x82\x84\x83\x85\x88\x83\x85\x88\x84\ \x87\x8b\x82\x85\x89\x80\x83\x87\x7f\x82\x86\x7e\x81\x85\x68\x6b\ \x70\x72\x76\x7b\x7a\x7d\x82\x77\x7b\x80\x77\x7b\x80\x75\x79\x7d\ \x75\x7a\x7f\x72\x78\x7e\x70\x76\x7b\x70\x78\x7d\x6e\x75\x7c\x6d\ \x74\x7b\x6b\x73\x7a\x6a\x72\x7a\x6a\x72\x7a\x66\x6f\x77\x4b\x52\ \x5c\x31\x35\x40\x1e\x21\x2b\x40\x46\x52\x62\x6b\x78\x63\x6c\x77\ \x51\x5a\x67\x36\x3e\x4b\x00\x00\x00\xa7\xa3\xa3\xa7\xa3\xa3\xa4\ \x9f\xa1\xa6\xa1\xa2\xa9\xa4\xa5\xac\xa7\xa7\xae\xa9\xaa\xae\xa9\ \xaa\xae\xa9\xa8\xb1\xac\xab\xb0\xaa\xa9\xae\xaa\xa9\xaf\xaa\xa9\ \xb3\xad\xac\xb4\xae\xaf\xb4\xae\xb0\xb5\xaf\xb0\xb8\xb2\xb3\xbb\ \xb5\xb7\xb9\xb3\xb4\xb5\xaf\xb0\xba\xb4\xb4\xbe\xb8\xb9\xbf\xb9\ \xb9\xc4\xbd\xbb\xc5\xbc\xbc\xc7\xbf\xbf\xca\xc3\xc2\xc9\xc3\xc2\ \xc8\xc1\xc1\xc9\xc2\xc2\xca\xc4\xc3\xca\xc4\xc3\xcd\xc7\xc6\xcf\ \xc9\xc9\xcf\xca\xc9\xcf\xc7\xc7\xd0\xc9\xc9\xd1\xca\xca\xd2\xca\ \xca\xd2\xca\xca\xd4\xcc\xcb\xd3\xcc\xc9\xd4\xcd\xcb\xd6\xcf\xcd\ \xd5\xce\xcc\xd6\xcd\xca\xd6\xcd\xca\xd6\xcd\xcb\xd6\xce\xcb\xd5\ \xcd\xca\xd6\xcd\xca\xd7\xcf\xcc\xd7\xce\xcb\xd6\xcd\xca\xd8\xcf\ \xcc\xd7\xcf\xcc\xd7\xcf\xcc\xd8\xd0\xcd\xd9\xd2\xcf\xd6\xcc\xc9\ \xcf\xc2\xbd\xc6\xb5\xb0\xbd\xa9\xa1\xbc\xa6\xa0\xbd\xa6\xa1\xb9\ \xa1\x9d\xb7\x9f\x96\xbc\xa6\x9d\xc0\xae\xa8\xc4\xb5\xaf\xcf\xc4\ \xbf\xd5\xce\xc9\xd6\xd0\xcd\xd7\xd3\xd0\xd7\xd1\xce\xd6\xd0\xcd\ \xd5\xd0\xcd\xd4\xcf\xcc\xd3\xce\xcd\xd3\xce\xce\xd2\xce\xcc\xd1\ \xcd\xcc\xd0\xcd\xcb\xcf\xcc\xc9\xcf\xca\xc7\xcf\xc9\xc7\xcf\xca\ \xc7\xcd\xc9\xc7\xcb\xc6\xc3\xcc\xc7\xc4\xca\xc5\xc3\xc8\xc2\xc0\ \xc6\xc0\xbe\xc6\xc0\xbe\xc5\xc0\xbe\xc4\xbf\xbe\xb2\xa6\xa1\x9f\ \x8a\x85\xbe\xb6\xb4\xbd\xb5\xb3\xb9\xb4\xb2\xb7\xb1\xb0\xb5\xaf\ \xaf\xb3\xad\xad\xb0\xaa\xaa\xad\xa7\xa6\xa7\xa1\x9f\xa4\x9e\x9d\ \x9f\x99\x97\x98\x92\x91\x95\x90\x90\x8d\x89\x89\x84\x81\x81\x7b\ \x78\x79\x71\x6f\x6f\x64\x64\x64\x5b\x5c\x5c\x4f\x51\x52\x3d\x42\ \x42\x23\x2a\x2b\x0c\x10\x11\x00\x00\x01\x00\x00\x00\x1a\x1a\x1c\ \x3e\x40\x41\x55\x57\x57\x61\x61\x61\x6c\x6b\x6c\x72\x72\x74\x79\ \x7b\x7c\x7e\x80\x81\x81\x83\x85\x82\x85\x88\x82\x86\x88\x81\x84\ \x87\x80\x82\x86\x7f\x81\x85\x77\x7a\x7d\x64\x67\x6a\x76\x7a\x7f\ \x7b\x7f\x83\x76\x7a\x7f\x78\x7c\x80\x76\x79\x7e\x75\x7a\x7f\x71\ \x77\x7d\x6f\x76\x7c\x70\x79\x7e\x70\x78\x7e\x6d\x74\x7b\x6a\x73\ \x7a\x6a\x72\x7a\x69\x71\x7a\x66\x6e\x77\x57\x60\x69\x3b\x40\x4b\ \x3a\x41\x4b\x5c\x65\x71\x66\x6f\x7a\x64\x6d\x79\x5e\x68\x74\x4d\ \x58\x65\x00\x00\x00\xa9\xa5\xa5\xa7\xa3\xa2\xa5\xa1\xa1\xa5\xa1\ \xa1\xab\xa6\xa7\xac\xa8\xa8\xae\xa9\xaa\xb0\xab\xab\xae\xa9\xa9\ \xb1\xad\xad\xae\xaa\xaa\xad\xa8\xa8\xb4\xaf\xaf\xb4\xaf\xaf\xb4\ \xaf\xaf\xb2\xad\xac\xb3\xad\xad\xb5\xaf\xb0\xba\xb4\xb5\xba\xb4\ \xb5\xba\xb4\xb5\xbe\xb8\xb9\xbe\xb9\xb9\xbe\xb8\xb8\xc4\xbd\xbb\ \xc2\xbb\xb9\xc6\xbe\xbd\xc8\xc1\xc0\xc7\xc0\xc0\xc6\xbe\xbe\xc8\ \xc1\xc1\xc9\xc4\xc4\xcb\xc5\xc5\xce\xc8\xc7\xce\xc8\xc7\xce\xc8\ \xc8\xce\xc6\xc6\xcf\xc8\xc8\xd0\xcb\xca\xd1\xca\xc9\xd1\xc9\xc8\ \xd1\xca\xc8\xd1\xc9\xc7\xd2\xc9\xc6\xd4\xcd\xca\xd4\xcc\xc9\xd3\ \xcb\xc8\xd3\xca\xc8\xd4\xcb\xc9\xd4\xcb\xc9\xd4\xcd\xca\xd3\xcc\ \xc9\xd2\xcc\xc9\xd4\xcc\xc9\xd1\xc9\xc6\xd3\xcb\xc8\xd3\xcb\xc8\ \xd2\xc9\xc6\xd3\xca\xc7\xd2\xca\xc7\xd4\xcc\xc9\xd3\xca\xc8\xd3\ \xcb\xc8\xd2\xcb\xc7\xcf\xc8\xc4\xcc\xc0\xbe\xc4\xb7\xb3\xbb\xab\ \xa3\xba\xa5\x9d\xb8\xa3\x9a\xb3\x9b\x90\xb4\x9a\x90\xb3\x9a\x90\ \xb4\x9d\x94\xb3\x9f\x97\xb9\xa9\xa3\xc0\xb4\xaf\xc6\xbd\xb9\xc8\ \xc2\xbf\xc9\xc4\xc0\xc7\xc5\xc2\xc7\xc6\xc3\xc6\xc4\xc1\xc4\xc0\ \xbf\xc2\xbf\xbb\xbe\xba\xb8\xbe\xb9\xb7\xbd\xb9\xb8\xbd\xb9\xb7\ \xbc\xb9\xb6\xba\xb7\xb4\xba\xb6\xb4\xb8\xb5\xb3\xb6\xb3\xb2\xb4\ \xb1\xb0\xb3\xb0\xae\xb5\xb3\xb1\x87\x74\x6c\xa7\x9d\x9a\xac\xa5\ \xa4\xac\xa5\xa3\xa8\xa3\xa1\xa6\xa0\x9f\xa4\x9e\x9e\xa0\x9b\x9b\ \x9e\x98\x98\x99\x94\x93\x94\x8f\x8d\x91\x8c\x8a\x8c\x86\x85\x87\ \x82\x81\x82\x7d\x7c\x7b\x77\x76\x73\x71\x6f\x6a\x68\x68\x61\x60\ \x60\x56\x56\x56\x4d\x4f\x4f\x40\x44\x44\x2f\x33\x34\x17\x1c\x1e\ \x04\x07\x08\x00\x00\x00\x06\x06\x06\x24\x24\x26\x42\x41\x42\x51\ \x51\x52\x5b\x5b\x5b\x66\x65\x66\x6f\x70\x72\x76\x78\x7a\x7b\x7e\ \x7e\x7f\x82\x84\x80\x83\x85\x82\x85\x86\x80\x83\x84\x7f\x82\x86\ \x80\x82\x85\x6b\x6f\x70\x6b\x6f\x6e\x7a\x7d\x80\x7a\x7f\x83\x76\ \x7a\x7f\x76\x7a\x7f\x76\x7b\x80\x74\x79\x7e\x72\x78\x7e\x6e\x76\ \x7c\x70\x78\x7f\x6f\x77\x7d\x6d\x75\x7c\x6c\x74\x7b\x6b\x73\x7b\ \x69\x70\x79\x67\x6f\x78\x5c\x65\x6e\x46\x4f\x59\x51\x59\x63\x61\ \x6a\x75\x63\x6c\x76\x63\x6d\x77\x63\x6d\x77\x5b\x66\x73\x00\x00\ \x00\xa9\xa4\xa5\xa7\xa3\xa3\xa7\xa2\xa2\xaa\xa5\xa6\xaa\xa5\xa5\ \xaa\xa6\xa5\xae\xaa\xaa\xb0\xab\xac\xaf\xaa\xaa\xb3\xae\xaf\xae\ \xa9\xa9\xaf\xa9\xaa\xb2\xad\xae\xb3\xad\xad\xb7\xb2\xb1\xb1\xac\ \xab\xb6\xb0\xaf\xb7\xb1\xb1\xb8\xb1\xb1\xba\xb4\xb5\xbd\xb8\xb8\ \xbf\xb9\xb9\xc2\xbd\xbc\xc1\xba\xba\xc3\xbc\xb9\xc2\xba\xb8\xc3\ \xba\xb7\xc5\xbd\xbb\xc6\xbf\xbd\xc4\xbd\xbc\xc7\xc1\xc0\xc7\xc1\ \xc1\xc9\xc4\xc3\xca\xc4\xc3\xc9\xc2\xc2\xcc\xc6\xc5\xcb\xc5\xc5\ \xca\xc5\xc4\xcd\xc7\xc6\xcd\xc8\xc8\xce\xc7\xc5\xcf\xc7\xc7\xd0\ \xc8\xc6\xcd\xc5\xc2\xcf\xc6\xc3\xcf\xc6\xc4\xce\xc6\xc3\xcd\xc5\ \xc2\xcf\xc6\xc4\xce\xc7\xc5\xce\xc7\xc5\xcc\xc6\xc3\xcc\xc5\xc2\ \xcd\xc6\xc3\xcb\xc2\xc0\xcb\xc3\xc1\xcb\xc3\xc1\xcb\xc4\xc3\xc9\ \xc2\xbf\xc9\xc1\xbe\xc8\xc0\xbd\xc7\xbf\xbd\xc8\xbf\xbc\xc7\xc0\ \xbd\xc7\xbf\xbe\xc7\xc0\xbe\xc6\xc0\xbe\xc6\xc1\xbd\xc5\xbc\xb9\ \xc2\xb9\xb3\xbd\xb1\xab\xb8\xa9\xa2\xb6\xa5\x9f\xb5\xa4\x9d\xb0\ \x9d\x98\xac\x99\x94\xa5\x90\x89\xa2\x8c\x84\xa1\x8a\x80\x9e\x86\ \x7c\x9d\x87\x7f\x9e\x8b\x85\x9f\x90\x8b\x9f\x93\x8c\x9f\x93\x8d\ \xa2\x97\x93\xa5\x9d\x98\xa7\x9f\x9b\xa8\xa1\x9e\xa7\xa2\x9f\xa6\ \xa1\x9f\xa6\xa1\x9f\xa5\xa0\x9e\xa3\x9f\x9f\x9f\x9b\x99\x9d\x98\ \x97\x97\x91\x8e\x74\x61\x5a\x9a\x93\x91\x98\x92\x90\x97\x91\x90\ \x94\x8f\x8e\x91\x8c\x8b\x8f\x8a\x8a\x8c\x87\x87\x89\x84\x83\x85\ \x80\x7f\x81\x7d\x7b\x7d\x78\x77\x77\x73\x71\x74\x6f\x6e\x6f\x6a\ \x69\x68\x64\x63\x60\x5d\x5c\x5c\x5a\x59\x52\x50\x4f\x48\x47\x47\ \x3e\x40\x40\x31\x35\x36\x23\x26\x27\x1d\x1c\x19\x02\x03\x03\x00\ \x00\x00\x0e\x0e\x0f\x2b\x2a\x2b\x3d\x3d\x3d\x4b\x4a\x4a\x55\x55\ \x56\x5e\x5e\x5f\x69\x6b\x6b\x71\x73\x74\x76\x79\x7b\x7b\x7e\x7f\ \x7f\x82\x82\x81\x84\x85\x80\x83\x85\x7f\x82\x85\x7f\x81\x84\x66\ \x69\x6a\x72\x76\x78\x79\x7d\x80\x78\x7d\x80\x78\x7c\x81\x76\x7c\ \x81\x75\x7b\x80\x72\x78\x7d\x72\x78\x7d\x6f\x77\x7d\x70\x77\x7e\ \x6d\x76\x7d\x6e\x75\x7d\x6b\x73\x7b\x67\x6f\x78\x67\x6f\x78\x68\ \x71\x7a\x61\x6a\x73\x5a\x63\x6c\x60\x69\x72\x64\x6d\x77\x63\x6c\ \x76\x63\x6d\x76\x64\x6e\x78\x63\x6d\x79\x00\x00\x00\xa5\xa1\xa1\ \xa5\xa2\xa1\xa9\xa4\xa4\xac\xa7\xa8\xa9\xa4\xa4\xab\xa7\xa6\xaf\ \xab\xab\xb1\xac\xad\xb1\xac\xad\xb4\xaf\xb0\xa9\xa4\xa4\xad\xa7\ \xa8\xb1\xab\xac\xb0\xaa\xaa\xb2\xad\xad\xb0\xab\xaa\xb3\xae\xae\ \xb6\xb0\xb1\xb6\xb0\xb0\xb7\xb0\xb0\xba\xb4\xb4\xbb\xb6\xb5\xc1\ \xbb\xb9\xc1\xba\xb7\xbe\xb8\xb3\xc3\xbc\xb9\xc2\xb9\xb6\xc1\xb9\ \xb6\xc2\xbb\xb8\xc0\xb9\xb7\xc4\xbe\xbc\xc6\xc0\xbf\xc5\xbd\xbd\ \xc4\xbe\xbe\xc6\xc0\xc0\xc8\xc3\xc2\xc6\xc1\xc1\xc6\xc0\xc0\xc9\ \xc1\xc2\xc8\xc2\xc2\xc8\xc1\xc1\xc9\xc2\xc1\xc7\xc1\xbe\xc7\xbf\ \xbc\xc8\xbf\xbd\xc8\xc0\xbf\xc6\xbf\xbe\xc5\xbe\xbc\xc5\xbe\xbc\ \xc5\xbe\xbc\xc6\xbe\xbd\xc5\xbe\xbc\xc3\xbd\xba\xc2\xbb\xb8\xc1\ \xb9\xb6\xc0\xb9\xb7\xc0\xb9\xb5\xc0\xb9\xb6\xbf\xb9\xb6\xbf\xb7\ \xb4\xbd\xb5\xb2\xba\xb2\xaf\xba\xb2\xaf\xba\xb3\xaf\xb8\xb1\xaf\ \xb8\xb0\xaf\xb8\xb1\xaf\xb6\xae\xab\xb6\xaf\xac\xb5\xae\xaa\xb4\ \xad\xaa\xb4\xad\xa9\xb4\xad\xa9\xb2\xab\xa8\xb0\xa8\xa6\xac\xa5\ \xa1\xa7\x9d\x9a\xa4\x99\x94\xa2\x96\x91\x9e\x91\x8b\x9c\x8f\x8a\ \x99\x8d\x88\x96\x88\x83\x91\x82\x7c\x8d\x7e\x77\x88\x79\x71\x84\ \x73\x6d\x81\x70\x68\x82\x72\x6b\x80\x6f\x68\x7e\x6d\x68\x7b\x6a\ \x65\x79\x6a\x65\x77\x68\x63\x73\x64\x5d\x75\x67\x61\x71\x62\x5c\ \x7b\x70\x6c\x84\x80\x7e\x83\x7e\x7c\x81\x7d\x7c\x7e\x7b\x79\x7c\ \x78\x77\x7a\x76\x76\x77\x73\x72\x74\x70\x6f\x70\x6c\x6b\x6e\x69\ \x68\x68\x65\x63\x65\x61\x60\x60\x5d\x5c\x5b\x58\x56\x56\x53\x52\ \x4f\x4d\x4c\x53\x4e\x48\x4f\x49\x41\x3c\x3b\x39\x32\x33\x33\x29\ \x2a\x29\x3a\x32\x28\x22\x1d\x16\x06\x05\x03\x0c\x0a\x07\x1f\x1b\ \x18\x2b\x2a\x2b\x39\x38\x39\x44\x44\x45\x4f\x4e\x50\x59\x5a\x5b\ \x62\x63\x64\x6c\x6e\x6f\x74\x76\x79\x7a\x7c\x7e\x7e\x7f\x82\x7e\ \x81\x82\x7e\x82\x83\x7e\x82\x84\x75\x78\x7b\x69\x6d\x6e\x76\x7a\ \x7e\x79\x7d\x82\x77\x7c\x7f\x79\x7d\x82\x76\x7a\x80\x72\x78\x7d\ \x71\x77\x7c\x72\x78\x7d\x71\x79\x80\x6f\x76\x7d\x6e\x76\x7d\x6d\ \x74\x7d\x6b\x73\x7c\x68\x71\x7a\x66\x6f\x78\x66\x6e\x77\x64\x6d\ \x76\x62\x6b\x74\x64\x6d\x76\x62\x6b\x75\x62\x6c\x76\x62\x6c\x76\ \x64\x6e\x78\x5e\x6a\x76\x00\x00\x00\xa5\xa0\xa0\xa6\xa2\xa1\xab\ \xa6\xa5\xad\xa7\xa7\xa9\xa5\xa4\xac\xa8\xa7\xac\xa8\xa7\xab\xa6\ \xa7\xad\xa8\xa9\xaf\xaa\xab\xaa\xa5\xa6\xad\xa7\xa8\xae\xa8\xa9\ \xad\xa7\xa8\xad\xa8\xa9\xad\xa9\xa8\xb2\xac\xad\xb6\xb1\xb1\xb6\ \xb1\xb0\xb4\xae\xad\xb7\xb0\xaf\xb8\xb2\xb0\xb8\xb3\xb1\xbb\xb4\ \xb1\xb7\xb1\xad\xbd\xb6\xb5\xbe\xb7\xb4\xbd\xb7\xb4\xbb\xb5\xb2\ \xba\xb2\xaf\xbc\xb5\xb3\xbe\xb7\xb7\xbd\xb6\xb5\xbd\xb7\xb5\xbe\ \xb8\xb7\xc0\xb9\xb9\xbf\xb9\xb9\xbe\xb9\xb8\xc0\xbb\xba\xbf\xb8\ \xb7\xbf\xb8\xb8\xbf\xb8\xb7\xbd\xb6\xb5\xbd\xb6\xb4\xbe\xb5\xb5\ \xbe\xb7\xb7\xbc\xb6\xb6\xbb\xb4\xb4\xba\xb4\xb3\xb9\xb2\xb2\xb9\ \xb2\xb2\xb8\xb1\xb0\xb6\xb0\xae\xb4\xad\xaa\xb2\xaa\xa7\xb0\xa9\ \xa6\xb1\xaa\xa6\xb0\xaa\xa7\xb0\xaa\xa8\xaf\xa8\xa6\xae\xa7\xa5\ \xac\xa7\xa4\xaa\xa4\xa2\xa9\xa3\xa0\xa7\xa2\x9f\xa7\xa1\x9e\xa6\ \x9f\x9c\xa5\x9e\x9c\xa2\x9c\x9a\xa1\x9b\x98\xa0\x99\x96\xa0\x99\ \x96\x9f\x9a\x97\x9f\x99\x96\x9d\x97\x94\x9c\x96\x93\x9a\x94\x92\ \x99\x93\x90\x96\x91\x8e\x93\x8f\x8c\x92\x8d\x8a\x8f\x89\x86\x8c\ \x86\x84\x88\x83\x80\x87\x81\x7e\x84\x7e\x7b\x82\x7b\x78\x81\x7a\ \x77\x7f\x78\x75\x7d\x76\x73\x7b\x75\x72\x79\x73\x71\x77\x72\x6f\ \x76\x6f\x6d\x73\x6c\x6a\x71\x6b\x68\x6f\x69\x67\x72\x6d\x6b\x70\ \x6c\x6a\x6e\x6a\x69\x6c\x68\x66\x6a\x66\x65\x67\x64\x63\x65\x62\ \x62\x63\x60\x5e\x5f\x5d\x5b\x5e\x5a\x59\x58\x54\x53\x53\x50\x4e\ \x50\x4e\x4c\x4e\x49\x46\x4c\x47\x44\x4c\x46\x40\x4f\x47\x3e\x53\ \x48\x3d\x53\x47\x3a\x47\x3e\x34\x3c\x36\x2f\x30\x2a\x23\x49\x39\ \x29\x1d\x17\x10\x1a\x13\x0c\x2f\x24\x18\x37\x2d\x23\x2a\x29\x2a\ \x34\x34\x34\x3f\x3e\x3e\x47\x47\x48\x52\x53\x53\x5d\x5f\x5f\x67\ \x69\x6b\x72\x74\x76\x79\x7b\x7c\x7c\x7f\x82\x7d\x80\x81\x7e\x82\ \x83\x7e\x82\x83\x6b\x6f\x71\x6d\x71\x74\x7b\x7f\x83\x79\x7d\x81\ \x77\x7a\x7f\x77\x7c\x7f\x74\x79\x7d\x72\x78\x7d\x70\x76\x7b\x6f\ \x75\x7a\x6d\x75\x7c\x6f\x77\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x73\ \x7c\x69\x72\x7b\x68\x71\x7a\x65\x6e\x77\x66\x6f\x78\x64\x6d\x76\ \x64\x6d\x76\x61\x6a\x73\x62\x6c\x75\x62\x6c\x76\x61\x6d\x76\x53\ \x61\x6c\x00\x00\x00\xa8\xa3\xa3\xa8\xa3\xa3\xa9\xa4\xa4\xac\xa7\ \xa8\xaa\xa4\xa5\xad\xa8\xa8\xac\xa9\xa9\xaa\xa5\xa4\xac\xa7\xa6\ \xa7\xa3\xa4\xa7\xa1\xa2\xad\xa7\xa8\xac\xa6\xa7\xab\xa5\xa6\xa9\ \xa4\xa4\xa9\xa4\xa4\xae\xaa\xaa\xaf\xaa\xa9\xb0\xa9\xa9\xaf\xa9\ \xaa\xaf\xaa\xaa\xb3\xae\xad\xb2\xae\xad\xb1\xab\xa8\xb2\xaa\xa6\ \xb3\xac\xa9\xb4\xad\xaa\xb5\xad\xad\xb4\xad\xac\xb2\xac\xa8\xb5\ \xaf\xac\xb7\xb0\xae\xb4\xae\xac\xb4\xad\xab\xb5\xae\xad\xb4\xae\ \xad\xb4\xae\xad\xb4\xae\xad\xb3\xad\xac\xb3\xac\xac\xb2\xab\xab\ \xb3\xac\xab\xb0\xaa\xa9\xb0\xaa\xa8\xaf\xa9\xa9\xae\xa8\xa8\xae\ \xa9\xa9\xab\xa6\xa6\xaa\xa4\xa4\xaa\xa3\xa4\xa8\xa2\xa2\xa6\xa0\ \xa0\xa5\xa0\x9e\xa3\x9d\x9c\xa1\x9b\x98\xa0\x99\x97\x9e\x98\x96\ \x9e\x99\x96\x9c\x97\x95\x9c\x97\x95\x9a\x95\x93\x99\x95\x93\x97\ \x92\x90\x96\x92\x90\x94\x8f\x8d\x93\x8e\x8c\x90\x8c\x8a\x8f\x8a\ \x88\x8e\x88\x86\x8c\x86\x84\x8b\x86\x83\x8a\x84\x82\x8a\x85\x82\ \x89\x84\x81\x89\x83\x81\x86\x81\x7f\x84\x7f\x7d\x82\x7e\x7c\x80\ \x7c\x79\x7e\x7a\x77\x7c\x78\x76\x79\x75\x72\x77\x73\x70\x75\x71\ \x6f\x74\x6f\x6d\x71\x6d\x6a\x70\x6c\x6a\x6e\x6b\x69\x6d\x6a\x68\ \x6c\x68\x67\x6a\x66\x64\x68\x65\x63\x65\x63\x61\x65\x61\x5f\x63\ \x5f\x5d\x5e\x5a\x58\x59\x55\x54\x59\x56\x52\x5c\x56\x52\x5f\x57\ \x50\x5b\x54\x4d\x5e\x56\x4f\x5b\x52\x4b\x56\x4d\x45\x54\x4b\x41\ \x50\x46\x3e\x4d\x42\x39\x48\x3d\x34\x42\x38\x2f\x45\x3a\x2f\x44\ \x38\x2c\x46\x39\x2c\x4a\x3b\x2c\x54\x42\x2f\x55\x42\x2f\x57\x43\ \x2f\x4e\x3d\x2a\x4e\x3c\x2a\x33\x29\x1e\x2e\x24\x1a\x34\x27\x1a\ \x3f\x2f\x1f\x43\x33\x24\x4f\x3e\x2d\x49\x3c\x2e\x3a\x34\x2f\x39\ \x35\x31\x41\x42\x42\x4c\x4d\x4d\x58\x59\x5a\x63\x65\x66\x6e\x71\ \x71\x76\x78\x78\x79\x7b\x7c\x7b\x7e\x7f\x7c\x80\x81\x7a\x7e\x7f\ \x6a\x6d\x70\x74\x79\x7c\x7e\x83\x87\x7c\x80\x85\x79\x7d\x81\x75\ \x7a\x7e\x75\x7a\x7f\x72\x78\x7d\x72\x77\x7c\x6f\x76\x7b\x70\x77\ \x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x74\x7d\x6b\x72\x7b\x68\x70\x79\ \x65\x6e\x77\x65\x6e\x77\x66\x6f\x78\x66\x6f\x78\x65\x6e\x77\x64\ \x6d\x76\x60\x6b\x73\x62\x6c\x75\x5b\x67\x71\x37\x43\x4d\x00\x00\ \x00\xa6\xa2\xa2\xa5\xa0\xa1\xa5\xa0\xa1\xa7\xa2\xa3\xa8\xa4\xa5\ \xa9\xa4\xa4\xa8\xa3\xa2\xa4\xa1\xa0\xa6\xa2\xa2\xa3\x9e\x9e\xa1\ \x9b\x9b\xa5\xa0\xa1\xa6\xa1\xa2\xa5\x9f\xa0\xa2\x9d\x9d\xa2\x9c\ \x9b\xa8\xa3\xa3\xa8\xa2\xa2\xa5\xa0\xa0\xa6\xa0\xa0\xa8\xa3\xa2\ \xaa\xa6\xa6\xa9\xa5\xa5\xa6\xa0\x9d\xa8\xa1\x9e\xaa\xa3\xa3\xa9\ \xa2\x9f\xa7\xa0\x9f\xa7\xa0\x9f\xa9\xa2\xa0\xa9\xa2\xa0\xa9\xa3\ \xa2\xa8\xa2\xa1\xa8\xa2\x9f\xa7\xa1\x9e\xa6\x9f\x9e\xa6\xa0\x9f\ \xa4\xa0\x9f\xa3\x9e\x9d\xa3\x9d\x9b\xa2\x9d\x9d\xa2\x9c\x9c\xa1\ \x9b\x99\xa0\x9b\x9a\x9e\x98\x98\x9b\x96\x96\x9b\x96\x96\x99\x95\ \x94\x98\x94\x93\x95\x93\x92\x95\x90\x90\x94\x8e\x8e\x91\x8d\x8b\ \x8e\x8a\x89\x8e\x88\x86\x8c\x86\x84\x8c\x85\x84\x8a\x86\x84\x87\ \x83\x81\x86\x82\x80\x84\x80\x7e\x83\x7f\x7d\x81\x7d\x7b\x80\x7c\ \x7b\x7e\x7b\x79\x7d\x79\x77\x7b\x77\x75\x79\x76\x74\x78\x73\x72\ \x77\x74\x72\x77\x73\x71\x76\x71\x6f\x75\x70\x6e\x74\x70\x6d\x73\ \x6f\x6e\x71\x6d\x6b\x70\x6c\x6b\x6d\x69\x67\x6b\x68\x66\x69\x66\ \x64\x66\x62\x61\x65\x62\x5f\x60\x5d\x5b\x5b\x57\x56\x55\x52\x50\ \x53\x4f\x4d\x53\x4e\x4b\x52\x4d\x49\x54\x4e\x48\x56\x4f\x48\x59\ \x50\x48\x58\x4f\x46\x57\x4d\x43\x59\x4d\x41\x5e\x50\x41\x53\x46\ \x39\x54\x46\x38\x52\x43\x35\x4f\x41\x32\x4f\x40\x2f\x42\x34\x27\ \x45\x37\x28\x3f\x30\x22\x3b\x2c\x1d\x3c\x2d\x1e\x36\x2a\x1b\x3e\ \x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3a\x2c\x1d\x31\x24\x18\x35\x28\ \x1a\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x2d\x22\x15\x29\x1f\x14\ \x2f\x24\x17\x37\x29\x1b\x44\x33\x22\x3c\x2e\x1e\x4c\x39\x26\x5a\ \x44\x2d\x5e\x47\x2f\x68\x4e\x33\x52\x41\x2e\x3e\x34\x29\x3d\x3e\ \x3e\x47\x48\x49\x54\x56\x56\x5f\x60\x62\x69\x6b\x6c\x72\x74\x75\ \x7a\x7c\x7c\x7a\x7d\x7e\x7b\x80\x80\x71\x74\x77\x6a\x6c\x71\x79\ \x7d\x80\x7d\x82\x86\x79\x7e\x82\x79\x7e\x81\x78\x7c\x80\x73\x78\ \x7d\x71\x77\x7c\x71\x77\x7c\x6f\x75\x7b\x71\x77\x7e\x70\x76\x7d\ \x6d\x74\x7c\x6b\x73\x7c\x68\x70\x79\x66\x6f\x78\x65\x6e\x77\x65\ \x6d\x76\x63\x6c\x75\x63\x6c\x75\x66\x6f\x78\x64\x6e\x77\x63\x6e\ \x76\x61\x6b\x74\x58\x62\x6c\x1e\x25\x2d\x00\x00\x00\xa6\xa2\xa2\ \xa3\x9e\x9e\xa3\x9e\x9f\xa4\x9f\xa0\xa5\xa0\x9f\xa4\x9f\x9f\xa1\ \x9c\x9c\x9f\x9b\x99\x9f\x9a\x9a\x9b\x96\x96\x9b\x97\x96\x9b\x98\ \x96\x9a\x95\x96\x9c\x97\x97\x9b\x96\x97\x9a\x93\x93\x9c\x96\x96\ \x9b\x95\x95\x9b\x94\x94\x9b\x95\x95\x9b\x96\x95\x9b\x95\x95\x9b\ \x97\x96\x9c\x97\x96\x9d\x98\x97\x9c\x96\x96\x9c\x97\x96\x9a\x94\ \x91\x97\x91\x8e\x9a\x94\x92\x98\x93\x91\x99\x93\x91\x96\x90\x8e\ \x96\x90\x8e\x96\x91\x90\x95\x90\x8e\x94\x90\x8f\x93\x8d\x8d\x91\ \x8c\x8c\x8e\x8a\x88\x8e\x8a\x88\x8d\x88\x89\x8b\x87\x85\x8d\x85\ \x83\x8b\x84\x80\x87\x83\x81\x87\x82\x83\x85\x81\x81\x83\x7e\x7e\ \x82\x7d\x7d\x81\x7c\x7c\x7f\x7b\x7a\x7d\x79\x78\x7b\x76\x75\x7a\ \x75\x74\x77\x73\x71\x76\x72\x70\x76\x72\x71\x73\x6f\x6e\x73\x70\ \x6e\x70\x6d\x6b\x6f\x6c\x6a\x6e\x6b\x69\x6c\x68\x66\x6a\x66\x65\ \x69\x64\x63\x67\x63\x62\x65\x62\x61\x65\x61\x5f\x63\x5f\x5e\x60\ \x5d\x5b\x61\x5d\x59\x62\x5e\x5b\x63\x5d\x57\x5c\x56\x52\x57\x51\ \x4d\x60\x57\x4e\x5e\x55\x4a\x61\x56\x4b\x6b\x5c\x4d\x68\x57\x48\ \x5f\x50\x42\x56\x48\x3a\x4d\x40\x34\x4f\x41\x33\x4a\x3c\x2f\x47\ \x39\x2b\x3c\x31\x24\x37\x2d\x21\x39\x2e\x20\x3a\x2d\x1f\x3b\x2d\ \x1e\x3c\x2d\x1e\x39\x2b\x1d\x3f\x30\x20\x39\x2c\x1d\x3e\x2f\x20\ \x39\x2b\x1d\x30\x25\x18\x2b\x21\x16\x23\x1a\x11\x22\x19\x10\x19\ \x13\x0c\x1b\x15\x0d\x1d\x16\x0e\x1e\x17\x0e\x23\x1a\x11\x31\x24\ \x17\x36\x28\x1a\x2b\x20\x15\x1e\x17\x0f\x22\x19\x10\x2d\x21\x15\ \x30\x24\x17\x2a\x20\x14\x2b\x21\x15\x30\x24\x17\x26\x1d\x13\x26\ \x1d\x12\x24\x1b\x11\x22\x1a\x10\x32\x27\x19\x43\x32\x21\x37\x29\ \x1a\x4c\x39\x25\x64\x4b\x31\x50\x42\x34\x3a\x3a\x3b\x44\x45\x46\ \x50\x51\x52\x5d\x5e\x60\x67\x68\x69\x70\x72\x73\x76\x7a\x7c\x7b\ \x7e\x81\x7d\x80\x84\x6b\x6e\x72\x6d\x71\x74\x80\x84\x86\x7c\x80\ \x84\x7b\x7f\x83\x79\x7e\x81\x78\x7d\x80\x76\x7b\x7f\x74\x78\x7d\ \x73\x78\x7d\x71\x77\x7c\x6f\x75\x7d\x6f\x75\x7c\x6d\x74\x7b\x6b\ \x72\x7b\x69\x70\x79\x65\x6e\x77\x66\x6f\x78\x68\x71\x7a\x68\x71\ \x7a\x64\x6d\x76\x65\x6d\x76\x62\x6c\x75\x65\x70\x78\x63\x6d\x77\ \x54\x60\x6b\x1c\x23\x29\x00\x00\x00\xa7\xa2\xa3\xa5\xa1\xa2\xa3\ \x9e\x9f\x9e\x99\x99\x9e\x9a\x9a\x9d\x99\x98\x99\x96\x94\x97\x94\ \x92\x94\x90\x8f\x90\x8c\x8c\x92\x8d\x8d\x91\x8c\x8b\x91\x8d\x8d\ \x8e\x89\x89\x8c\x87\x86\x8e\x89\x89\x90\x8b\x8b\x8e\x88\x88\x8c\ \x87\x87\x8c\x86\x86\x8d\x87\x88\x8c\x87\x87\x8b\x86\x86\x88\x84\ \x82\x8c\x88\x86\x8b\x87\x85\x8c\x87\x86\x88\x84\x81\x87\x82\x80\ \x88\x83\x83\x89\x84\x84\x87\x82\x81\x84\x7e\x7d\x8b\x7f\x76\x81\ \x7d\x7b\x80\x7b\x79\x80\x7b\x7a\x7e\x79\x79\x7e\x79\x79\x7b\x77\ \x75\x7a\x76\x74\x79\x75\x73\x77\x73\x71\x79\x73\x6f\x77\x71\x6f\ \x73\x6f\x6f\x72\x6e\x6e\x70\x6c\x6c\x6f\x6b\x6b\x6d\x69\x68\x6b\ \x67\x67\x6a\x66\x66\x68\x65\x65\x66\x63\x62\x65\x63\x61\x63\x60\ \x5f\x63\x60\x5f\x61\x5e\x5d\x5f\x5c\x5b\x5b\x59\x56\x53\x51\x4f\ \x4e\x4b\x49\x50\x4c\x47\x53\x4d\x47\x54\x4c\x44\x5c\x51\x46\x60\ \x53\x46\x55\x4b\x40\x56\x4c\x42\x56\x4b\x41\x4f\x45\x3b\x55\x48\ \x3c\x4e\x43\x38\x4f\x43\x37\x4b\x3e\x32\x46\x39\x2b\x4a\x3a\x2a\ \x4e\x3c\x29\x48\x38\x26\x53\x3f\x2a\x4e\x3b\x27\x41\x31\x21\x3d\ \x2f\x1f\x3c\x2e\x1e\x3e\x30\x20\x3d\x2e\x1f\x39\x2b\x1c\x32\x26\ \x18\x2a\x20\x14\x24\x1b\x10\x2a\x1f\x14\x30\x23\x17\x27\x1d\x12\ \x21\x18\x0f\x1d\x15\x0d\x1c\x15\x0d\x1f\x17\x0f\x22\x1a\x11\x1e\ \x17\x0e\x22\x19\x10\x1f\x18\x0f\x2b\x21\x15\x24\x1b\x11\x27\x1e\ \x13\x28\x1e\x13\x2b\x20\x14\x29\x1f\x14\x35\x27\x19\x35\x28\x1a\ \x33\x27\x19\x29\x1f\x14\x21\x18\x0f\x28\x1e\x13\x32\x26\x18\x35\ \x28\x1a\x31\x25\x18\x30\x23\x16\x2e\x22\x16\x2e\x22\x16\x30\x24\ \x17\x28\x1e\x13\x26\x1d\x12\x37\x29\x1b\x29\x1f\x14\x32\x25\x18\ \x6f\x54\x38\x63\x51\x3c\x36\x37\x37\x41\x42\x43\x4e\x4f\x50\x5b\ \x5c\x5d\x67\x68\x69\x70\x71\x72\x74\x77\x79\x79\x7d\x80\x76\x7a\ \x7d\x66\x6a\x6d\x71\x75\x77\x7f\x82\x84\x7b\x7e\x81\x79\x7e\x80\ \x78\x7d\x80\x76\x7b\x7e\x73\x77\x7c\x73\x78\x7d\x73\x77\x7e\x6f\ \x75\x7b\x6d\x73\x7b\x6d\x73\x7b\x6c\x74\x7c\x6d\x74\x7d\x6a\x71\ \x7a\x69\x72\x7b\x6a\x72\x7b\x69\x71\x7a\x68\x71\x7a\x66\x6f\x78\ \x66\x6f\x78\x65\x70\x79\x65\x6e\x78\x65\x6f\x79\x51\x5c\x67\x18\ \x1e\x25\x00\x00\x00\xa4\xa1\xa1\xa2\x9f\x9f\x9d\x9a\x9b\x99\x94\ \x95\x98\x94\x95\x92\x8e\x8e\x8e\x8a\x8a\x89\x85\x84\x85\x81\x7f\ \x83\x80\x7f\x83\x7e\x7c\x80\x7d\x7b\x81\x7c\x7c\x7f\x7a\x79\x7e\ \x79\x78\x7e\x79\x77\x7d\x79\x77\x7c\x77\x77\x7a\x75\x75\x7b\x76\ \x76\x7c\x77\x76\x7a\x75\x74\x79\x73\x73\x75\x70\x6e\x77\x73\x71\ \x78\x73\x72\x76\x72\x71\x76\x71\x70\x76\x71\x6f\x77\x73\x72\x75\ \x71\x71\x74\x70\x6e\x72\x6d\x6c\x78\x6e\x68\x6f\x6b\x6a\x6d\x69\ \x68\x6b\x67\x66\x6a\x67\x67\x69\x66\x65\x68\x64\x63\x66\x63\x61\ \x64\x61\x60\x64\x60\x5f\x62\x5f\x5e\x61\x5e\x5e\x60\x5d\x5b\x5e\ \x5c\x5a\x5d\x5a\x59\x59\x56\x55\x53\x50\x4f\x4d\x4a\x48\x49\x46\ \x42\x4a\x45\x40\x55\x4b\x43\x59\x4d\x43\x55\x4a\x3e\x50\x44\x39\ \x4f\x43\x36\x60\x4f\x3e\x54\x45\x36\x48\x3b\x2d\x4f\x3f\x2f\x4b\ \x3b\x2c\x43\x35\x27\x3f\x32\x24\x3f\x31\x22\x3b\x2d\x1f\x36\x29\ \x1c\x38\x2c\x1f\x40\x32\x22\x41\x32\x22\x45\x35\x24\x36\x29\x1c\ \x37\x2a\x1c\x37\x2a\x1b\x36\x28\x1b\x2a\x20\x14\x2d\x22\x16\x2b\ \x20\x14\x2a\x1f\x14\x2c\x21\x15\x2f\x23\x16\x29\x1f\x14\x23\x1a\ \x11\x25\x1c\x12\x22\x19\x10\x27\x1e\x13\x2f\x24\x17\x35\x28\x19\ \x2e\x23\x16\x2d\x21\x15\x2c\x21\x15\x29\x1f\x13\x2a\x20\x14\x24\ \x1b\x11\x2b\x20\x15\x35\x28\x1a\x35\x28\x1a\x2c\x22\x15\x2d\x21\ \x15\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x37\x29\x1a\x2b\x20\x14\ \x2b\x21\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x34\ \x27\x19\x2d\x22\x15\x29\x1f\x13\x2a\x20\x14\x38\x2a\x1b\x37\x29\ \x1a\x31\x25\x17\x2f\x23\x16\x31\x25\x18\x3c\x2e\x1d\x2b\x20\x14\ \x21\x19\x10\x2f\x24\x17\x28\x1e\x13\x2a\x1f\x14\x52\x3f\x2a\x6e\ \x56\x3e\x33\x34\x34\x3e\x3f\x3f\x4c\x4d\x4e\x59\x5b\x5b\x66\x67\ \x68\x6d\x71\x71\x73\x77\x79\x77\x7a\x7e\x6c\x6e\x71\x68\x6b\x6e\ \x7c\x81\x83\x7c\x80\x81\x7a\x80\x81\x7a\x7f\x82\x75\x7a\x7d\x75\ \x79\x7e\x73\x78\x7d\x72\x78\x7e\x73\x78\x80\x6f\x75\x7d\x6f\x74\ \x7d\x6c\x73\x7c\x6c\x73\x7c\x6d\x74\x7d\x6b\x74\x7d\x68\x71\x7a\ \x66\x6f\x78\x66\x6f\x78\x66\x6f\x78\x67\x70\x7a\x65\x6f\x79\x63\ \x6d\x77\x63\x6d\x78\x5e\x69\x74\x45\x51\x5a\x20\x24\x2c\x00\x00\ \x00\xa1\x9d\x9d\x9d\x98\x99\x96\x92\x92\x90\x8c\x8d\x8b\x87\x88\ \x85\x82\x82\x80\x7e\x7e\x7b\x77\x77\x77\x73\x73\x75\x72\x71\x73\ \x6f\x6e\x6f\x6b\x6a\x70\x6c\x69\x6e\x6a\x68\x6f\x6a\x67\x6e\x6a\ \x68\x6b\x67\x66\x69\x66\x64\x6a\x65\x65\x68\x64\x64\x68\x64\x64\ \x66\x62\x61\x65\x60\x5f\x62\x5e\x5c\x66\x62\x60\x65\x61\x60\x64\ \x60\x5e\x63\x5f\x5d\x62\x5e\x5d\x63\x5f\x5d\x62\x5e\x5d\x61\x5d\ \x5c\x5f\x5b\x5a\x5d\x5a\x59\x5c\x59\x57\x5b\x58\x56\x59\x56\x56\ \x53\x50\x4f\x4e\x4b\x49\x48\x46\x43\x4b\x46\x42\x50\x49\x42\x5a\ \x4f\x44\x63\x54\x46\x64\x54\x43\x58\x49\x3b\x4e\x41\x33\x54\x44\ \x35\x4d\x3e\x30\x49\x3b\x2d\x40\x34\x27\x40\x32\x25\x3c\x2f\x22\ \x38\x2c\x1e\x37\x2a\x1c\x2c\x22\x16\x2b\x20\x15\x2a\x20\x15\x37\ \x2a\x1b\x37\x29\x1b\x3b\x2c\x1d\x3c\x2d\x1e\x37\x29\x1b\x2e\x22\ \x16\x26\x1d\x12\x23\x1a\x11\x1d\x16\x0e\x1f\x17\x0e\x1f\x17\x0f\ \x25\x1c\x12\x31\x25\x18\x37\x29\x1a\x2b\x1f\x14\x2f\x24\x17\x31\ \x24\x17\x39\x2b\x1c\x2a\x20\x14\x22\x1a\x11\x25\x1c\x12\x2a\x20\ \x14\x2f\x23\x17\x36\x29\x1a\x31\x25\x18\x28\x1e\x14\x2d\x22\x15\ \x2f\x23\x17\x36\x29\x1a\x3a\x2b\x1c\x38\x2a\x1b\x31\x25\x17\x32\ \x25\x18\x2f\x23\x17\x2b\x21\x15\x2c\x22\x15\x2c\x21\x14\x2f\x23\ \x16\x34\x27\x19\x35\x28\x19\x33\x27\x18\x2e\x22\x16\x31\x25\x17\ \x32\x25\x18\x2b\x21\x14\x35\x28\x19\x22\x1a\x10\x22\x1a\x11\x27\ \x1d\x13\x27\x1d\x13\x26\x1d\x13\x29\x1f\x14\x31\x24\x17\x33\x26\ \x18\x34\x27\x19\x2e\x22\x16\x34\x26\x19\x33\x26\x18\x33\x27\x19\ \x34\x27\x19\x3a\x2b\x1b\x3c\x2d\x1d\x2a\x20\x14\x22\x1a\x10\x28\ \x1f\x13\x27\x1d\x12\x29\x1f\x14\x31\x25\x18\x66\x4f\x37\x33\x34\ \x34\x3d\x3e\x3e\x4a\x4b\x4c\x57\x58\x58\x63\x64\x65\x6c\x6f\x70\ \x72\x76\x76\x76\x79\x7c\x6a\x6c\x70\x6d\x70\x72\x7e\x82\x85\x7d\ \x80\x82\x7b\x80\x82\x7a\x7f\x83\x74\x79\x7d\x74\x79\x7e\x74\x7a\ \x7f\x72\x78\x7d\x73\x79\x7f\x70\x76\x7d\x6f\x74\x7d\x6f\x75\x7e\ \x6d\x73\x7c\x6b\x72\x7b\x6b\x73\x7c\x69\x72\x7b\x67\x70\x7a\x65\ \x6e\x78\x6a\x73\x7c\x66\x6f\x79\x64\x6e\x78\x63\x6d\x77\x64\x6d\ \x79\x5c\x67\x71\x40\x49\x53\x26\x2c\x36\x00\x00\x00\x9f\x9a\x9b\ \x98\x94\x95\x8f\x8c\x8c\x85\x82\x82\x7f\x7c\x7c\x79\x77\x77\x71\ \x6e\x6e\x6b\x68\x67\x67\x65\x64\x65\x62\x62\x63\x60\x5d\x60\x5d\ \x5b\x5e\x5a\x59\x5d\x5a\x57\x5c\x57\x55\x5c\x58\x56\x59\x55\x53\ \x58\x54\x52\x58\x54\x53\x59\x55\x54\x56\x53\x52\x56\x53\x51\x55\ \x50\x4e\x54\x50\x4d\x55\x51\x4f\x54\x50\x4d\x4e\x49\x46\x4b\x45\ \x41\x4c\x45\x40\x4a\x43\x3d\x52\x48\x40\x5e\x50\x43\x4c\x41\x37\ \x55\x46\x39\x52\x44\x35\x55\x45\x35\x53\x43\x32\x4d\x3d\x2e\x49\ \x3a\x2a\x42\x34\x25\x46\x37\x28\x47\x37\x26\x3e\x30\x22\x3a\x2c\ \x1e\x34\x28\x1b\x3b\x2d\x1e\x34\x27\x19\x2b\x21\x15\x28\x1f\x14\ \x2e\x23\x16\x2c\x22\x16\x28\x1d\x14\x27\x1d\x13\x24\x1b\x12\x21\ \x19\x10\x1b\x15\x0d\x1c\x15\x0d\x25\x1b\x12\x2b\x1f\x14\x32\x25\ \x18\x34\x27\x19\x32\x26\x18\x2c\x21\x15\x27\x1e\x13\x21\x19\x10\ \x23\x1a\x10\x22\x19\x10\x21\x1a\x10\x20\x17\x0f\x22\x19\x10\x2e\ \x22\x16\x38\x2a\x1b\x34\x27\x18\x35\x27\x19\x38\x2a\x1b\x3d\x2d\ \x1e\x37\x2a\x1b\x28\x1e\x13\x26\x1d\x13\x2e\x23\x16\x33\x26\x18\ \x2e\x22\x16\x2b\x21\x14\x26\x1d\x13\x26\x1d\x12\x30\x25\x18\x32\ \x26\x19\x35\x27\x1a\x37\x29\x1a\x30\x24\x17\x33\x26\x18\x30\x24\ \x17\x33\x25\x18\x29\x1f\x14\x2b\x20\x15\x2a\x20\x14\x2d\x21\x15\ \x38\x29\x1a\x3a\x2c\x1c\x32\x26\x18\x37\x29\x1a\x2d\x22\x16\x26\ \x1d\x13\x2b\x20\x15\x29\x1f\x14\x1f\x18\x0f\x33\x26\x18\x31\x25\ \x17\x27\x1e\x13\x24\x1b\x12\x27\x1e\x13\x30\x23\x16\x3a\x2b\x1c\ \x36\x28\x1a\x2f\x23\x17\x2f\x23\x17\x34\x27\x19\x40\x2f\x1f\x3c\ \x2d\x1d\x35\x28\x19\x2a\x20\x14\x26\x1c\x12\x26\x1d\x12\x27\x1d\ \x12\x23\x1b\x11\x31\x24\x17\x5c\x46\x2f\x35\x35\x33\x3d\x3d\x3e\ \x47\x48\x49\x55\x56\x57\x60\x61\x62\x6a\x6c\x6d\x71\x74\x76\x6d\ \x6f\x72\x68\x69\x6e\x7a\x7e\x82\x7f\x84\x87\x7c\x81\x84\x7c\x80\ \x84\x7c\x80\x86\x77\x7d\x81\x73\x7a\x7e\x75\x7b\x81\x73\x79\x7e\ \x73\x79\x80\x71\x77\x7e\x6f\x75\x7d\x6c\x74\x7c\x6c\x72\x7c\x6c\ \x73\x7c\x6a\x72\x7a\x68\x71\x7a\x68\x71\x7b\x66\x70\x7a\x67\x70\ \x79\x69\x72\x7c\x65\x6f\x79\x64\x6e\x78\x63\x6c\x78\x5f\x68\x71\ \x4c\x54\x5e\x33\x3a\x46\x00\x00\x00\x9b\x97\x98\x92\x8e\x8f\x8a\ \x86\x86\x80\x7c\x7d\x74\x71\x71\x6d\x6a\x6a\x64\x62\x61\x5b\x59\ \x58\x57\x54\x53\x54\x52\x51\x51\x4e\x4c\x51\x4e\x4c\x4e\x4b\x4a\ \x4f\x4c\x4a\x4d\x4a\x47\x46\x41\x40\x3e\x3a\x38\x40\x3a\x36\x4c\ \x42\x3a\x50\x45\x3b\x53\x47\x3b\x55\x47\x38\x56\x46\x35\x54\x43\ \x32\x4e\x41\x33\x47\x3b\x30\x3e\x34\x29\x40\x34\x29\x38\x2e\x25\ \x3a\x30\x23\x35\x2a\x1f\x2e\x24\x19\x34\x27\x1b\x36\x28\x1a\x28\ \x1e\x13\x24\x1b\x11\x2f\x23\x18\x34\x27\x1a\x2f\x23\x17\x2f\x24\ \x17\x35\x27\x1a\x3a\x2b\x1c\x32\x25\x18\x25\x1c\x12\x1b\x14\x0c\ \x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x23\ \x1b\x11\x25\x1c\x12\x23\x1a\x11\x23\x1b\x11\x20\x18\x0f\x23\x1b\ \x11\x23\x1a\x11\x26\x1d\x12\x2f\x23\x17\x2d\x21\x15\x30\x24\x17\ \x2e\x23\x16\x2c\x20\x15\x30\x24\x17\x2f\x24\x17\x2c\x21\x16\x26\ \x1c\x12\x2b\x21\x15\x2a\x20\x14\x27\x1e\x12\x30\x24\x17\x30\x24\ \x17\x2e\x22\x16\x2b\x20\x15\x2d\x21\x16\x34\x27\x18\x34\x27\x19\ \x35\x28\x1a\x31\x25\x17\x29\x1e\x14\x2c\x21\x15\x23\x1b\x10\x24\ \x1b\x12\x26\x1d\x13\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x36\x29\ \x1a\x35\x28\x1a\x37\x29\x1a\x33\x27\x18\x32\x26\x18\x30\x24\x17\ \x31\x25\x18\x2c\x21\x16\x25\x1d\x12\x24\x1b\x11\x2e\x22\x16\x2c\ \x20\x15\x3f\x2f\x1f\x40\x31\x1f\x2f\x24\x17\x1e\x17\x0e\x20\x19\ \x0f\x21\x1a\x10\x21\x19\x10\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\ \x24\x1c\x11\x28\x1e\x14\x28\x1e\x13\x2c\x22\x15\x34\x27\x19\x30\ \x24\x17\x30\x24\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2d\x1d\x31\x25\ \x18\x30\x24\x17\x2a\x1f\x14\x2f\x23\x17\x2d\x22\x15\x24\x1b\x11\ \x2c\x21\x15\x6c\x52\x38\x3c\x38\x33\x3c\x3d\x3d\x47\x48\x48\x54\ \x56\x56\x5f\x60\x60\x68\x6a\x6b\x70\x73\x76\x68\x69\x6d\x64\x66\ \x69\x7e\x82\x86\x7e\x82\x86\x7c\x81\x85\x7a\x7e\x82\x78\x7e\x83\ \x79\x7f\x84\x77\x7d\x82\x74\x7a\x80\x74\x7a\x80\x70\x76\x7d\x70\ \x76\x7e\x70\x76\x7f\x6f\x76\x7e\x6c\x73\x7c\x6c\x72\x7c\x6b\x73\ \x7c\x69\x72\x7a\x68\x71\x7b\x65\x6f\x78\x66\x70\x7a\x66\x70\x7a\ \x66\x6f\x7a\x65\x6f\x79\x65\x6f\x78\x62\x6c\x75\x58\x61\x6a\x43\ \x4a\x56\x00\x00\x00\x99\x92\x8f\x8e\x88\x88\x84\x7e\x7e\x76\x72\ \x73\x65\x60\x5e\x60\x5a\x57\x47\x43\x41\x49\x43\x3d\x37\x33\x2f\ \x48\x3e\x34\x66\x53\x41\x59\x49\x37\x4f\x3f\x2f\x49\x3a\x29\x4f\ \x3f\x2c\x4f\x3e\x2c\x57\x43\x30\x4f\x3d\x2a\x51\x3f\x2a\x45\x36\ \x25\x32\x27\x1a\x28\x20\x14\x2b\x20\x15\x29\x1e\x14\x2b\x21\x16\ \x2c\x21\x16\x2d\x23\x17\x26\x1d\x12\x1e\x16\x0f\x2c\x21\x16\x2e\ \x22\x16\x29\x1f\x13\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2d\x22\ \x15\x22\x19\x10\x29\x1f\x14\x26\x1c\x12\x27\x1d\x12\x2a\x1f\x14\ \x32\x25\x18\x36\x28\x1a\x32\x25\x18\x29\x1f\x14\x26\x1d\x12\x2c\ \x21\x15\x2e\x22\x17\x2c\x21\x14\x2a\x1f\x14\x29\x1f\x14\x28\x1e\ \x13\x24\x1b\x11\x28\x1e\x13\x2a\x20\x15\x25\x1c\x12\x25\x1b\x11\ \x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x29\x1f\x14\x22\x1a\x11\x26\ \x1d\x13\x32\x26\x18\x33\x26\x19\x2a\x1f\x14\x25\x1c\x12\x2c\x21\ \x16\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\x2e\x22\x17\x2b\x20\x15\ \x29\x1f\x13\x2c\x21\x15\x30\x24\x16\x34\x28\x1a\x2b\x21\x14\x34\ \x27\x19\x1f\x18\x0f\x24\x1b\x11\x21\x18\x0f\x26\x1d\x13\x2f\x24\ \x16\x2a\x20\x15\x29\x20\x14\x2f\x24\x16\x36\x29\x1a\x30\x24\x17\ \x29\x1f\x14\x2f\x23\x16\x34\x27\x19\x30\x25\x17\x2b\x20\x15\x22\ \x1a\x10\x1e\x17\x0f\x22\x1a\x11\x2a\x20\x14\x2e\x22\x16\x3e\x2f\ \x1d\x36\x28\x1a\x33\x26\x18\x1e\x17\x0e\x22\x19\x10\x22\x1a\x10\ \x22\x1a\x11\x26\x1c\x12\x23\x1a\x11\x24\x1b\x11\x24\x1b\x11\x28\ \x1e\x13\x30\x24\x17\x2e\x23\x16\x32\x26\x19\x2d\x22\x16\x2a\x1f\ \x14\x30\x24\x17\x37\x29\x1b\x40\x30\x1f\x3b\x2c\x1c\x44\x32\x20\ \x2d\x21\x16\x3d\x2d\x1e\x37\x29\x1a\x31\x25\x17\x22\x19\x10\x3b\ \x2d\x1e\x32\x2f\x2b\x40\x3f\x3e\x46\x47\x47\x53\x54\x55\x5d\x5e\ \x5e\x67\x69\x6b\x6b\x6e\x71\x64\x66\x6a\x6b\x6d\x71\x7c\x80\x84\ \x7d\x80\x85\x7c\x80\x85\x7a\x80\x84\x78\x7e\x85\x79\x7f\x85\x76\ \x7c\x83\x74\x7a\x7f\x71\x78\x7c\x71\x77\x7d\x6f\x75\x7c\x6d\x75\ \x7c\x6e\x75\x7d\x6c\x73\x7c\x6b\x72\x7b\x6a\x72\x7b\x69\x70\x79\ \x66\x6e\x78\x64\x6d\x77\x66\x6f\x79\x67\x71\x7b\x65\x6e\x79\x64\ \x6e\x79\x65\x6f\x79\x66\x70\x7a\x5e\x68\x70\x53\x5c\x66\x00\x00\ \x00\x4c\x3d\x2d\x4c\x3d\x2d\x64\x56\x4a\x74\x64\x57\x7a\x61\x48\ \x6b\x52\x39\x5f\x48\x32\x5b\x47\x30\x4b\x39\x27\x4d\x3a\x27\x4e\ \x3c\x27\x2d\x22\x16\x1e\x17\x0f\x21\x18\x0f\x28\x1f\x14\x27\x1e\ \x13\x29\x1f\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x11\x27\x1e\x13\ \x22\x19\x10\x22\x19\x10\x21\x19\x10\x21\x19\x0f\x27\x1e\x13\x2a\ \x1f\x14\x31\x25\x18\x28\x1f\x14\x1f\x17\x0f\x25\x1b\x12\x30\x24\ \x17\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x27\x1d\x12\x23\x1a\x11\ \x22\x1a\x10\x23\x1a\x10\x25\x1b\x11\x2a\x1f\x14\x30\x24\x17\x33\ \x26\x19\x39\x2b\x1c\x2d\x22\x16\x28\x1e\x13\x37\x29\x1a\x3a\x2b\ \x1c\x38\x2a\x1b\x38\x2b\x1b\x38\x2a\x1c\x33\x27\x19\x32\x26\x18\ \x2b\x20\x15\x28\x1e\x13\x28\x1d\x13\x27\x1d\x13\x27\x1d\x12\x28\ \x1e\x13\x24\x1b\x11\x24\x1b\x11\x23\x1a\x10\x25\x1b\x11\x24\x1b\ \x11\x2a\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x2c\x22\x16\x31\x25\x18\ \x2d\x21\x16\x2d\x22\x16\x29\x1f\x14\x2c\x22\x15\x2b\x20\x14\x25\ \x1c\x12\x2c\x21\x15\x2e\x22\x16\x32\x26\x18\x30\x24\x17\x25\x1c\ \x12\x1f\x18\x0f\x2c\x21\x15\x30\x24\x17\x25\x1c\x12\x29\x1f\x13\ \x26\x1c\x12\x25\x1c\x12\x31\x24\x17\x2f\x23\x17\x2a\x20\x14\x31\ \x25\x18\x31\x25\x18\x32\x25\x18\x2c\x21\x15\x22\x1a\x11\x20\x19\ \x10\x25\x1d\x12\x29\x1f\x14\x35\x27\x19\x33\x27\x19\x34\x27\x19\ \x30\x24\x17\x23\x1b\x11\x22\x1a\x10\x27\x1d\x12\x24\x1b\x11\x24\ \x1b\x11\x23\x1a\x11\x26\x1c\x12\x23\x1b\x11\x28\x1e\x13\x2a\x20\ \x14\x2e\x22\x16\x38\x2a\x1b\x35\x28\x1a\x2a\x1f\x14\x2b\x20\x14\ \x2b\x21\x15\x38\x2a\x1b\x41\x31\x1f\x3b\x2c\x1c\x31\x25\x18\x33\ \x27\x18\x3c\x2d\x1d\x39\x2a\x1b\x32\x26\x18\x3a\x2e\x1d\x30\x2c\ \x27\x3a\x3a\x3a\x44\x45\x45\x50\x51\x52\x5b\x5c\x5d\x65\x68\x68\ \x66\x69\x6c\x5d\x60\x63\x77\x7b\x7f\x7b\x7f\x83\x7a\x7f\x83\x7b\ \x7e\x84\x7a\x7e\x83\x77\x7d\x84\x78\x7e\x85\x75\x7b\x82\x73\x79\ \x7f\x6f\x77\x7c\x70\x77\x7e\x71\x78\x7f\x6f\x77\x7e\x6c\x74\x7c\ \x6c\x74\x7d\x6a\x72\x7b\x69\x71\x7a\x69\x71\x7a\x66\x6e\x77\x64\ \x6e\x77\x65\x6f\x78\x66\x6f\x79\x64\x6f\x79\x63\x6d\x77\x66\x70\ \x7a\x66\x70\x7a\x63\x6d\x77\x60\x6a\x74\x00\x00\x00\x53\x3e\x29\ \x59\x43\x2c\x80\x62\x43\x5c\x45\x30\x38\x2a\x1b\x36\x29\x1a\x33\ \x26\x19\x34\x27\x19\x37\x28\x1a\x3a\x2c\x1c\x41\x31\x20\x2a\x1f\ \x14\x21\x19\x0f\x22\x19\x10\x24\x1c\x12\x27\x1d\x13\x33\x26\x18\ \x26\x1d\x13\x1f\x17\x0f\x24\x1b\x11\x27\x1d\x13\x2c\x20\x15\x28\ \x1e\x14\x26\x1d\x13\x1f\x18\x0f\x27\x1d\x13\x2b\x20\x15\x38\x2b\ \x1b\x33\x25\x18\x25\x1c\x12\x1e\x17\x0f\x23\x1b\x11\x23\x1a\x11\ \x2c\x20\x15\x2d\x21\x15\x2e\x23\x16\x2d\x22\x15\x29\x1f\x13\x22\ \x1a\x10\x22\x1a\x10\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x37\x28\ \x1a\x27\x1d\x13\x22\x1a\x11\x2d\x22\x15\x38\x2a\x1a\x49\x37\x24\ \x43\x32\x20\x3e\x30\x1e\x37\x29\x1b\x30\x24\x17\x2b\x20\x14\x29\ \x1f\x13\x2c\x21\x15\x3b\x2c\x1c\x34\x27\x19\x37\x2a\x1a\x29\x1f\ \x13\x28\x1e\x13\x25\x1b\x12\x1c\x14\x0d\x1c\x15\x0e\x24\x1b\x12\ \x27\x1e\x13\x26\x1c\x12\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x29\ \x1e\x14\x39\x2b\x1c\x2c\x21\x16\x2a\x1f\x14\x26\x1d\x12\x2e\x22\ \x16\x27\x1c\x13\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x23\x1a\x10\ \x29\x1f\x14\x32\x26\x18\x32\x26\x17\x2b\x20\x15\x2d\x22\x15\x35\ \x28\x1a\x38\x2a\x1b\x34\x26\x18\x2f\x23\x17\x31\x25\x18\x37\x2a\ \x1b\x36\x28\x1a\x26\x1c\x12\x22\x1a\x10\x20\x18\x0f\x2e\x23\x16\ \x32\x26\x18\x29\x1f\x14\x30\x24\x17\x37\x29\x1b\x36\x29\x1a\x2c\ \x22\x15\x26\x1c\x12\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x2b\x20\ \x15\x2e\x23\x16\x2e\x22\x16\x32\x25\x18\x31\x25\x17\x2f\x23\x17\ \x36\x28\x1a\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x27\x1d\x13\x36\ \x29\x1a\x40\x30\x1f\x34\x28\x19\x27\x1e\x13\x2a\x20\x14\x2e\x23\ \x16\x37\x29\x1b\x36\x28\x1a\x2e\x23\x16\x45\x3a\x2f\x39\x39\x3a\ \x44\x45\x45\x4f\x50\x51\x59\x5a\x5b\x63\x66\x66\x61\x63\x66\x5d\ \x60\x64\x7d\x80\x84\x7a\x7e\x82\x7a\x7e\x82\x7b\x7e\x84\x7a\x7d\ \x82\x78\x7d\x84\x77\x7d\x84\x75\x7b\x81\x72\x78\x7d\x71\x79\x7e\ \x71\x79\x80\x6f\x77\x7e\x6f\x77\x7e\x6b\x73\x7c\x68\x71\x7a\x6b\ \x73\x7c\x69\x72\x7b\x65\x6f\x78\x65\x6f\x77\x63\x6e\x76\x64\x6f\ \x76\x65\x6f\x79\x66\x70\x7a\x64\x6e\x77\x67\x71\x7b\x66\x70\x7a\ \x64\x6e\x78\x62\x6c\x76\x00\x00\x00\x45\x34\x22\x3d\x2e\x1e\x7b\ \x5d\x3f\x36\x29\x1b\x27\x1d\x13\x32\x25\x18\x26\x1d\x12\x33\x26\ \x18\x33\x26\x18\x2b\x20\x14\x33\x26\x19\x30\x25\x17\x2a\x20\x14\ \x29\x1e\x14\x28\x1e\x13\x32\x25\x18\x2d\x22\x15\x22\x1a\x11\x29\ \x1f\x14\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x30\x24\x17\x22\x1a\ \x10\x24\x1b\x11\x25\x1b\x11\x30\x24\x17\x31\x24\x17\x30\x24\x17\ \x26\x1d\x13\x24\x1b\x11\x1c\x15\x0d\x1f\x17\x0f\x33\x27\x19\x30\ \x24\x17\x38\x2a\x1c\x29\x1f\x14\x24\x1b\x11\x20\x19\x0f\x23\x1a\ \x10\x23\x1b\x11\x2a\x20\x15\x2d\x22\x16\x2d\x22\x16\x2e\x23\x16\ \x2f\x23\x17\x2e\x22\x15\x36\x28\x1a\x46\x35\x22\x4a\x37\x23\x5a\ \x44\x2c\x43\x32\x20\x3a\x2c\x1c\x39\x2b\x1b\x33\x26\x18\x32\x25\ \x18\x2c\x21\x15\x33\x26\x19\x36\x29\x1a\x38\x29\x1a\x28\x1e\x13\ \x25\x1c\x11\x25\x1b\x12\x24\x1b\x11\x29\x1e\x13\x28\x1d\x13\x23\ \x1a\x11\x21\x19\x10\x20\x18\x10\x26\x1c\x12\x26\x1c\x12\x29\x1f\ \x13\x2b\x20\x14\x2f\x23\x16\x35\x29\x1a\x33\x26\x18\x33\x27\x19\ \x2a\x20\x14\x30\x24\x17\x35\x27\x19\x2c\x20\x15\x2a\x20\x14\x2d\ \x22\x15\x33\x26\x17\x2d\x22\x15\x2e\x22\x16\x38\x2a\x1b\x3c\x2d\ \x1d\x37\x29\x1b\x2e\x22\x16\x31\x24\x17\x31\x25\x17\x28\x1e\x13\ \x26\x1d\x12\x26\x1c\x12\x23\x1a\x11\x20\x18\x0f\x21\x19\x0f\x25\ \x1b\x12\x2e\x22\x16\x3a\x2b\x1c\x39\x2b\x1c\x2d\x22\x15\x29\x1f\ \x14\x2a\x20\x14\x2a\x20\x14\x27\x1d\x13\x27\x1d\x13\x30\x24\x17\ \x31\x24\x17\x30\x25\x17\x32\x26\x18\x30\x24\x17\x2d\x21\x16\x29\ \x1f\x14\x2a\x20\x14\x33\x27\x19\x2f\x24\x16\x31\x25\x17\x40\x30\ \x1f\x37\x29\x1a\x2c\x22\x16\x2f\x24\x17\x23\x1b\x11\x2d\x22\x16\ \x32\x25\x18\x38\x2b\x1c\x54\x45\x35\x37\x38\x39\x43\x43\x44\x4c\ \x4d\x4d\x59\x5b\x5b\x5f\x61\x62\x5a\x5d\x5e\x6d\x6f\x73\x79\x7c\ \x7f\x7b\x7d\x82\x7c\x7f\x84\x7b\x7f\x84\x79\x7d\x81\x7a\x7e\x84\ \x77\x7d\x84\x76\x7c\x83\x73\x7a\x81\x73\x7b\x80\x70\x78\x7f\x6f\ \x77\x7e\x6f\x77\x7e\x6c\x74\x7c\x68\x72\x7a\x6b\x74\x7c\x6a\x72\ \x7b\x67\x70\x78\x66\x70\x78\x64\x6e\x77\x65\x6f\x78\x65\x70\x7a\ \x66\x6f\x7a\x64\x6e\x77\x66\x70\x7a\x64\x6e\x78\x62\x6c\x75\x64\ \x6e\x78\x00\x00\x00\x50\x3b\x27\x46\x35\x22\x53\x3f\x2a\x30\x24\ \x17\x22\x19\x10\x2d\x22\x16\x32\x25\x18\x34\x27\x19\x3b\x2c\x1c\ \x3e\x2e\x1d\x3e\x2f\x1e\x32\x25\x17\x32\x25\x18\x2e\x23\x16\x2d\ \x22\x15\x31\x25\x18\x2e\x22\x16\x2a\x1f\x14\x27\x1d\x12\x2c\x21\ \x15\x27\x1d\x13\x2a\x1f\x14\x26\x1c\x12\x20\x18\x10\x20\x18\x0f\ \x24\x1c\x11\x32\x26\x18\x2c\x22\x15\x2b\x20\x15\x2c\x21\x15\x2e\ \x22\x16\x26\x1d\x12\x23\x1a\x10\x2c\x21\x15\x2c\x20\x15\x36\x29\ \x1a\x33\x27\x19\x2e\x23\x16\x2c\x21\x15\x20\x18\x0f\x21\x19\x10\ \x27\x1d\x13\x24\x1b\x11\x25\x1c\x12\x24\x1b\x12\x21\x19\x10\x2b\ \x20\x15\x35\x28\x1a\x3b\x2c\x1c\x3a\x2c\x1b\x43\x32\x21\x34\x26\ \x19\x2f\x23\x16\x2e\x22\x16\x3a\x2b\x1c\x37\x29\x1a\x31\x24\x17\ \x35\x27\x19\x3e\x2e\x1e\x3d\x2e\x1e\x3d\x2d\x1d\x38\x2a\x1b\x2c\ \x21\x15\x26\x1d\x12\x24\x1a\x11\x21\x19\x10\x23\x1a\x11\x22\x19\ \x10\x23\x1a\x10\x24\x1b\x11\x27\x1d\x13\x2f\x23\x17\x2c\x21\x16\ \x36\x28\x1a\x37\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1e\x39\x2b\x1b\x37\ \x29\x1a\x3e\x2f\x1e\x2c\x21\x15\x2e\x23\x16\x28\x1d\x13\x2b\x20\ \x14\x2b\x20\x14\x31\x25\x18\x3a\x2c\x1c\x35\x29\x1a\x30\x25\x17\ \x2e\x23\x16\x2f\x23\x17\x2e\x23\x17\x29\x1e\x14\x28\x1e\x14\x2c\ \x21\x16\x25\x1c\x12\x27\x1e\x13\x27\x1e\x13\x25\x1c\x11\x2f\x23\ \x17\x3a\x2b\x1c\x36\x29\x1a\x2f\x23\x16\x36\x29\x1a\x39\x2b\x1c\ \x3e\x2e\x1e\x3b\x2c\x1c\x40\x30\x1f\x45\x34\x22\x3f\x2e\x1e\x3f\ \x2f\x1f\x40\x30\x1f\x3c\x2d\x1c\x36\x29\x1a\x2f\x24\x16\x31\x25\ \x17\x2e\x23\x16\x32\x25\x18\x2f\x23\x17\x3b\x2b\x1c\x42\x31\x20\ \x2f\x23\x16\x29\x1e\x14\x26\x1c\x12\x2d\x23\x17\x28\x1e\x13\x2d\ \x23\x16\x43\x37\x2b\x36\x37\x37\x41\x41\x42\x4a\x4c\x4c\x57\x59\ \x59\x5d\x60\x60\x56\x57\x5a\x74\x76\x7a\x79\x7c\x80\x7c\x7f\x83\ \x7c\x7e\x83\x79\x7d\x82\x79\x7d\x81\x79\x7d\x82\x77\x7c\x83\x75\ \x7b\x82\x75\x7c\x83\x73\x7a\x81\x71\x79\x80\x6f\x77\x7e\x6e\x76\ \x7e\x6a\x73\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7a\x67\x71\x79\ \x66\x6f\x79\x65\x6f\x78\x67\x71\x7a\x67\x72\x7b\x66\x70\x7a\x64\ \x6f\x78\x64\x6f\x78\x63\x6e\x77\x63\x6d\x76\x66\x70\x7a\x00\x00\ \x00\x39\x2b\x1b\x3d\x2e\x1e\x72\x56\x38\x32\x26\x18\x25\x1c\x12\ \x27\x1d\x12\x2d\x21\x15\x30\x24\x17\x3c\x2d\x1d\x41\x31\x1f\x42\ \x31\x20\x3d\x2e\x1d\x30\x24\x17\x2a\x1f\x14\x22\x19\x10\x24\x1b\ \x11\x2b\x20\x14\x2a\x1f\x14\x2f\x23\x16\x2f\x24\x17\x26\x1c\x12\ \x20\x18\x0f\x23\x1b\x11\x2a\x1f\x14\x25\x1c\x12\x20\x18\x0f\x28\ \x1e\x14\x2a\x1f\x14\x23\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\x24\ \x17\x2a\x1f\x14\x26\x1c\x12\x20\x18\x0f\x2d\x22\x16\x2f\x24\x17\ \x32\x25\x18\x28\x1e\x14\x22\x1a\x10\x27\x1e\x13\x26\x1d\x12\x22\ \x19\x10\x27\x1d\x13\x2c\x21\x15\x24\x1b\x12\x22\x19\x10\x31\x24\ \x18\x42\x31\x20\x3a\x2b\x1c\x3c\x2d\x1d\x2b\x21\x15\x31\x24\x17\ \x34\x28\x19\x30\x24\x16\x36\x28\x1a\x2b\x20\x14\x31\x25\x18\x33\ \x26\x19\x2a\x1f\x14\x38\x29\x1b\x3f\x2f\x1e\x42\x31\x20\x2a\x20\ \x14\x26\x1d\x13\x29\x1e\x13\x25\x1c\x11\x29\x1f\x13\x28\x1e\x13\ \x2d\x22\x15\x30\x24\x17\x30\x24\x17\x31\x25\x18\x33\x26\x18\x34\ \x27\x19\x35\x28\x19\x36\x28\x19\x35\x27\x19\x37\x29\x1b\x40\x30\ \x1f\x2c\x21\x14\x2c\x20\x14\x29\x1e\x14\x29\x1e\x13\x28\x1e\x13\ \x2d\x21\x15\x2e\x23\x16\x32\x25\x18\x2a\x1f\x14\x2d\x22\x16\x31\ \x25\x18\x2a\x1f\x14\x27\x1d\x13\x2b\x20\x15\x30\x24\x17\x2e\x22\ \x16\x2a\x1f\x14\x32\x26\x18\x2d\x22\x15\x26\x1d\x12\x31\x24\x17\ \x34\x27\x18\x35\x28\x19\x35\x27\x19\x3f\x2f\x1f\x3d\x2e\x1d\x47\ \x36\x23\x48\x36\x23\x49\x37\x23\x3e\x2e\x1e\x47\x34\x22\x47\x35\ \x22\x44\x33\x21\x3a\x2b\x1c\x32\x25\x18\x35\x28\x19\x37\x29\x1a\ \x34\x27\x19\x30\x25\x17\x2d\x21\x15\x34\x27\x19\x3d\x2e\x1d\x3f\ \x2f\x1f\x2b\x21\x15\x2c\x21\x15\x22\x19\x10\x28\x1d\x13\x3e\x32\ \x25\x35\x36\x37\x3f\x40\x40\x49\x4b\x4c\x54\x56\x57\x53\x56\x59\ \x59\x5b\x5f\x70\x73\x78\x77\x79\x7e\x7b\x7e\x83\x7b\x7d\x82\x78\ \x7c\x81\x78\x7c\x80\x79\x7e\x83\x79\x7f\x84\x76\x7c\x82\x75\x7c\ \x83\x71\x79\x80\x71\x79\x80\x6f\x77\x7e\x6c\x74\x7c\x6b\x73\x7d\ \x69\x72\x7b\x6a\x73\x7c\x69\x73\x7c\x68\x72\x7b\x66\x71\x7a\x64\ \x6e\x77\x66\x71\x79\x66\x70\x7a\x66\x70\x79\x66\x70\x79\x64\x6e\ \x76\x63\x6e\x76\x64\x6f\x77\x66\x70\x7a\x00\x00\x00\x36\x29\x1a\ \x2e\x22\x16\x49\x37\x24\x36\x29\x1b\x24\x1b\x12\x21\x19\x0f\x28\ \x1e\x13\x2c\x22\x15\x31\x24\x17\x30\x24\x17\x37\x2a\x1a\x35\x28\ \x19\x2e\x21\x15\x1b\x14\x0d\x1d\x15\x0e\x2a\x1f\x14\x28\x1e\x13\ \x2e\x23\x16\x32\x25\x18\x2c\x20\x15\x20\x18\x0f\x18\x12\x0b\x28\ \x1e\x13\x38\x2a\x1b\x2e\x22\x16\x23\x1a\x11\x1e\x16\x0e\x27\x1d\ \x13\x27\x1e\x13\x26\x1d\x12\x26\x1c\x12\x2c\x21\x15\x2e\x22\x16\ \x2d\x22\x16\x25\x1c\x12\x29\x1f\x14\x2f\x22\x16\x2f\x23\x16\x31\ \x25\x18\x2d\x21\x15\x2b\x20\x14\x24\x1b\x11\x26\x1c\x13\x2b\x1f\ \x14\x2a\x1f\x14\x29\x1f\x14\x2a\x1f\x14\x31\x25\x18\x3f\x2f\x1e\ \x3e\x2e\x1e\x3b\x2d\x1d\x32\x26\x18\x33\x27\x19\x38\x2a\x1b\x2f\ \x24\x17\x2a\x20\x14\x2c\x21\x16\x2c\x21\x15\x30\x24\x17\x35\x27\ \x1a\x34\x27\x19\x2f\x23\x16\x31\x25\x18\x2f\x23\x17\x2b\x20\x14\ \x29\x1f\x13\x2f\x23\x16\x30\x24\x17\x2c\x21\x15\x2f\x23\x16\x2f\ \x23\x17\x2d\x22\x16\x39\x2b\x1b\x3b\x2c\x1d\x36\x29\x1a\x34\x27\ \x19\x32\x25\x18\x34\x27\x19\x38\x2b\x1a\x3b\x2c\x1c\x34\x27\x19\ \x34\x27\x19\x33\x27\x19\x27\x1d\x13\x27\x1d\x13\x2d\x22\x15\x2d\ \x22\x16\x2d\x22\x16\x2d\x22\x16\x29\x1f\x14\x2c\x21\x15\x28\x1e\ \x13\x22\x1a\x10\x27\x1d\x13\x32\x25\x18\x33\x27\x19\x38\x29\x1a\ \x38\x2a\x1b\x2a\x20\x14\x28\x1e\x13\x27\x1d\x12\x2b\x20\x14\x29\ \x1f\x14\x2a\x1f\x14\x31\x25\x18\x39\x2b\x1b\x34\x27\x19\x39\x2c\ \x1c\x42\x32\x20\x3b\x2c\x1d\x3f\x30\x1f\x42\x31\x20\x41\x30\x1f\ \x41\x30\x1f\x3f\x2f\x1e\x34\x27\x19\x2d\x22\x16\x2d\x22\x15\x2e\ \x22\x16\x31\x25\x17\x3a\x2c\x1c\x37\x2a\x1b\x32\x26\x18\x2f\x24\ \x17\x32\x26\x19\x24\x1b\x11\x1b\x14\x0c\x40\x33\x24\x34\x35\x35\ \x3e\x40\x40\x48\x4b\x4b\x52\x53\x54\x47\x49\x4c\x6b\x6d\x71\x70\ \x74\x78\x75\x79\x7d\x79\x7d\x82\x7a\x7d\x82\x77\x7b\x80\x77\x7b\ \x80\x79\x7e\x83\x75\x7b\x82\x75\x7b\x82\x71\x79\x80\x73\x7a\x81\ \x71\x79\x80\x71\x79\x80\x6c\x73\x7b\x6c\x74\x7e\x6b\x75\x7e\x6b\ \x75\x7e\x69\x73\x7c\x68\x73\x7b\x68\x72\x7b\x65\x6f\x78\x64\x6e\ \x77\x67\x71\x7a\x68\x71\x7b\x68\x72\x7b\x66\x71\x79\x62\x6d\x75\ \x62\x6d\x75\x64\x6f\x78\x00\x00\x00\x3b\x2c\x1d\x2b\x20\x14\x54\ \x3f\x2a\x23\x1b\x11\x19\x13\x0c\x1d\x16\x0e\x22\x1a\x11\x23\x1a\ \x11\x2b\x20\x14\x30\x24\x17\x35\x27\x19\x34\x27\x19\x2f\x23\x16\ \x15\x10\x0a\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x12\x27\x1d\x12\x2a\ \x20\x14\x2f\x24\x17\x29\x20\x14\x21\x19\x10\x28\x1e\x12\x27\x1e\ \x13\x2b\x20\x14\x22\x19\x10\x1e\x17\x0e\x28\x1d\x13\x2b\x1f\x14\ \x21\x19\x10\x24\x1b\x11\x2c\x21\x15\x2e\x23\x16\x34\x27\x19\x26\ \x1c\x12\x27\x1d\x12\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x34\x27\ \x19\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x2b\x20\x14\x29\x1f\x14\ \x2d\x21\x16\x2e\x23\x16\x32\x25\x18\x43\x32\x20\x3c\x2d\x1d\x3d\ \x2e\x1d\x3d\x2e\x1e\x46\x33\x22\x40\x30\x1f\x2f\x23\x17\x2d\x22\ \x16\x2f\x23\x16\x2c\x21\x15\x2f\x24\x16\x3b\x2c\x1c\x3d\x2d\x1d\ \x38\x2a\x1b\x39\x2b\x1b\x35\x28\x19\x2f\x24\x17\x2c\x22\x16\x32\ \x25\x18\x33\x26\x18\x33\x26\x18\x36\x29\x1a\x33\x27\x19\x36\x28\ \x1a\x38\x2a\x1b\x33\x26\x19\x2e\x23\x16\x32\x25\x18\x2c\x21\x15\ \x31\x25\x17\x35\x28\x19\x34\x27\x19\x3f\x30\x1f\x40\x30\x1e\x37\ \x29\x1a\x36\x28\x1a\x2e\x23\x15\x31\x24\x17\x33\x27\x19\x2c\x21\ \x15\x29\x1f\x14\x2c\x21\x15\x29\x1e\x13\x26\x1c\x12\x27\x1d\x12\ \x2c\x20\x14\x30\x24\x17\x37\x29\x1a\x32\x26\x18\x37\x29\x1b\x32\ \x26\x18\x2b\x20\x15\x2d\x22\x15\x2e\x23\x16\x2a\x1f\x13\x26\x1d\ \x13\x32\x26\x17\x30\x25\x17\x2f\x23\x17\x34\x28\x19\x3b\x2c\x1c\ \x36\x28\x1a\x38\x29\x1b\x36\x29\x1a\x39\x2b\x1c\x3e\x2f\x1e\x40\ \x30\x1f\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x33\x27\x18\x33\x26\ \x19\x31\x25\x17\x39\x2a\x1b\x37\x29\x1b\x37\x2a\x1b\x37\x2a\x1a\ \x31\x25\x18\x25\x1b\x12\x3f\x31\x21\x32\x34\x34\x3d\x3e\x3f\x48\ \x4a\x4b\x51\x53\x54\x47\x48\x4b\x6c\x70\x73\x72\x76\x7a\x74\x79\ \x7d\x77\x7b\x80\x7a\x7e\x83\x79\x7d\x83\x77\x7d\x82\x76\x7c\x83\ \x77\x7d\x84\x73\x7a\x81\x72\x79\x80\x73\x7b\x82\x72\x79\x81\x6f\ \x76\x7f\x6d\x75\x7d\x6e\x75\x7d\x6c\x75\x7e\x68\x72\x7b\x68\x72\ \x7a\x69\x74\x7c\x67\x71\x7b\x67\x72\x7b\x66\x71\x79\x66\x71\x7a\ \x65\x70\x78\x66\x6f\x78\x66\x70\x78\x61\x6b\x73\x62\x6c\x75\x67\ \x70\x79\x00\x00\x00\x38\x2a\x1b\x33\x26\x19\x45\x35\x22\x26\x1c\ \x12\x17\x11\x0b\x18\x11\x0b\x1b\x14\x0c\x24\x1a\x10\x2b\x21\x15\ \x32\x25\x17\x2f\x23\x16\x36\x29\x1b\x2a\x1f\x14\x1a\x13\x0c\x1c\ \x16\x0e\x1e\x16\x0e\x24\x1b\x11\x2e\x22\x16\x31\x25\x17\x3d\x2e\ \x1e\x3a\x2c\x1c\x2d\x21\x16\x31\x24\x17\x2a\x20\x15\x2b\x21\x15\ \x28\x1e\x13\x29\x1f\x14\x2f\x23\x16\x33\x27\x18\x25\x1c\x12\x23\ \x1b\x11\x26\x1d\x12\x2b\x20\x15\x31\x24\x18\x1a\x14\x0c\x1f\x17\ \x0f\x28\x1e\x13\x2e\x22\x16\x37\x29\x1b\x30\x24\x17\x2d\x22\x16\ \x2d\x22\x16\x35\x28\x1a\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x2a\ \x20\x14\x2e\x22\x16\x3c\x2d\x1d\x3a\x2b\x1c\x3d\x2e\x1d\x44\x33\ \x21\x41\x2f\x1f\x38\x29\x1a\x31\x25\x18\x31\x26\x18\x27\x1e\x13\ \x2d\x22\x16\x30\x25\x17\x3f\x2f\x1e\x40\x2f\x1f\x3b\x2c\x1d\x37\ \x2a\x1b\x36\x28\x19\x3a\x2b\x1c\x39\x2b\x1b\x2f\x23\x16\x2d\x21\ \x15\x2f\x23\x16\x31\x24\x17\x3b\x2c\x1c\x3e\x2f\x1e\x35\x28\x19\ \x33\x26\x18\x35\x28\x1a\x2c\x21\x15\x27\x1e\x13\x30\x24\x18\x35\ \x27\x19\x34\x27\x19\x3a\x2b\x1c\x3c\x2d\x1d\x3b\x2c\x1c\x3b\x2c\ \x1d\x36\x28\x19\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x37\x29\x1a\ \x35\x28\x1a\x31\x25\x18\x2d\x22\x16\x2a\x20\x14\x32\x26\x17\x35\ \x28\x1a\x36\x29\x1a\x31\x25\x18\x36\x29\x1a\x39\x2a\x1b\x32\x26\ \x19\x3b\x2c\x1d\x2a\x1f\x14\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\ \x28\x1e\x13\x23\x1a\x11\x3e\x2e\x1e\x3d\x2e\x1d\x3b\x2c\x1d\x2c\ \x22\x16\x30\x24\x17\x39\x2b\x1b\x40\x2f\x1f\x3b\x2c\x1c\x36\x29\ \x1a\x37\x2a\x1b\x39\x2b\x1b\x30\x25\x17\x31\x25\x17\x33\x25\x18\ \x39\x2a\x1b\x3a\x2c\x1c\x38\x2a\x1b\x37\x28\x1b\x30\x24\x17\x21\ \x18\x10\x54\x40\x2c\x31\x33\x33\x3c\x3e\x3f\x45\x47\x48\x44\x46\ \x48\x58\x59\x5b\x6b\x6f\x71\x71\x75\x7a\x74\x78\x7d\x77\x7b\x7f\ \x79\x7e\x83\x79\x7e\x84\x76\x7c\x82\x75\x7b\x81\x77\x7d\x84\x74\ \x7b\x82\x73\x7b\x82\x71\x78\x80\x6d\x74\x7c\x6f\x76\x7e\x6e\x76\ \x7e\x6c\x75\x7d\x6a\x72\x7b\x69\x72\x7b\x68\x71\x7a\x6b\x74\x7d\ \x6a\x73\x7d\x68\x72\x7a\x67\x72\x7a\x67\x70\x7a\x66\x70\x79\x65\ \x6f\x78\x65\x6e\x77\x62\x6c\x75\x64\x6e\x76\x65\x6f\x78\x00\x00\ \x00\x38\x29\x1b\x39\x2a\x1c\x42\x32\x21\x32\x25\x18\x1d\x15\x0e\ \x1e\x17\x0f\x20\x18\x0f\x24\x1b\x12\x29\x1f\x13\x29\x1f\x14\x28\ \x1f\x13\x23\x1a\x11\x1e\x17\x0f\x1a\x14\x0c\x18\x12\x0b\x1a\x13\ \x0d\x23\x1a\x10\x26\x1c\x12\x2a\x20\x15\x31\x24\x17\x34\x27\x19\ \x2f\x24\x16\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x2a\x1f\x14\x25\ \x1c\x11\x2d\x22\x16\x34\x27\x19\x30\x23\x16\x2b\x21\x14\x1f\x17\ \x0f\x2b\x20\x15\x29\x1e\x13\x20\x18\x0f\x23\x1a\x10\x27\x1d\x12\ \x27\x1d\x12\x2b\x21\x15\x24\x1b\x11\x21\x19\x0f\x26\x1d\x12\x2a\ \x20\x14\x30\x24\x16\x36\x28\x1a\x34\x26\x19\x2f\x22\x16\x31\x25\ \x18\x3f\x30\x1e\x41\x31\x1f\x41\x31\x1f\x4e\x3a\x26\x43\x32\x20\ \x2f\x23\x16\x32\x25\x18\x26\x1d\x12\x2e\x22\x16\x2b\x20\x15\x2f\ \x22\x16\x3b\x2c\x1c\x36\x28\x1a\x35\x27\x19\x2f\x23\x16\x32\x26\ \x17\x38\x29\x1b\x37\x29\x1b\x34\x27\x19\x32\x25\x18\x2f\x23\x17\ \x2e\x23\x16\x3b\x2c\x1c\x41\x31\x1f\x44\x33\x21\x36\x28\x19\x2f\ \x22\x16\x28\x1e\x13\x2e\x22\x16\x36\x29\x1a\x32\x26\x18\x3a\x2b\ \x1c\x35\x28\x19\x37\x29\x1a\x3a\x2b\x1c\x3d\x2d\x1d\x3c\x2d\x1d\ \x35\x28\x1a\x3c\x2d\x1d\x40\x30\x1f\x3a\x2c\x1c\x34\x27\x19\x2e\ \x22\x16\x2d\x21\x15\x2c\x20\x15\x35\x28\x19\x3b\x2c\x1c\x36\x29\ \x1a\x31\x25\x17\x33\x26\x19\x31\x25\x17\x32\x25\x18\x34\x26\x19\ \x35\x28\x1a\x2b\x21\x15\x28\x1e\x14\x2c\x21\x15\x2e\x22\x16\x3b\ \x2c\x1c\x41\x31\x1f\x42\x32\x20\x42\x31\x20\x3c\x2d\x1d\x35\x28\ \x1a\x33\x26\x19\x3c\x2d\x1d\x40\x30\x1e\x41\x31\x1f\x3f\x2f\x1e\ \x3a\x2c\x1c\x30\x23\x16\x32\x25\x18\x27\x1d\x13\x2e\x23\x16\x2c\ \x21\x15\x32\x26\x18\x48\x36\x23\x32\x26\x18\x2c\x21\x15\x3f\x31\ \x21\x36\x35\x34\x3b\x3d\x3e\x44\x46\x47\x3d\x3e\x41\x5f\x62\x64\ \x69\x6d\x6f\x6d\x72\x77\x70\x78\x7c\x74\x7a\x80\x78\x7e\x84\x77\ \x7d\x83\x76\x7c\x83\x75\x7b\x81\x74\x7b\x82\x72\x7a\x80\x71\x79\ \x80\x70\x77\x7f\x6e\x76\x7d\x6d\x75\x7d\x6d\x75\x7d\x6b\x74\x7b\ \x6b\x75\x7c\x69\x72\x7a\x69\x72\x7a\x68\x71\x7a\x69\x73\x7c\x66\ \x71\x7a\x66\x70\x78\x66\x70\x78\x64\x6e\x76\x65\x6f\x77\x65\x70\ \x78\x62\x6d\x75\x66\x70\x78\x66\x6f\x78\x00\x00\x00\x3d\x2d\x1d\ \x41\x30\x20\x41\x31\x20\x3b\x2c\x1c\x25\x1c\x12\x27\x1d\x13\x25\ \x1c\x12\x27\x1d\x13\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0d\x18\x12\ \x0c\x16\x11\x0a\x1c\x15\x0e\x19\x13\x0b\x1e\x16\x0e\x23\x1a\x11\ \x1e\x17\x0e\x23\x1a\x11\x2c\x21\x15\x2e\x23\x16\x2a\x20\x14\x2a\ \x20\x14\x2c\x21\x15\x34\x27\x18\x2c\x21\x15\x27\x1d\x13\x2f\x23\ \x17\x2b\x20\x15\x28\x1e\x13\x29\x1f\x14\x23\x1a\x10\x20\x18\x0f\ \x20\x18\x0f\x20\x18\x0f\x20\x19\x0f\x25\x1b\x11\x27\x1e\x13\x2f\ \x24\x17\x2a\x20\x14\x25\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x23\ \x16\x3c\x2d\x1c\x40\x30\x1f\x35\x27\x1a\x2a\x20\x14\x2e\x22\x16\ \x36\x29\x1a\x47\x34\x22\x38\x2b\x1b\x35\x28\x1a\x31\x25\x18\x35\ \x27\x19\x2e\x23\x16\x2f\x24\x17\x24\x1a\x11\x2b\x20\x14\x2f\x23\ \x16\x34\x27\x19\x31\x25\x18\x30\x24\x17\x31\x25\x17\x3a\x2b\x1c\ \x39\x2b\x1b\x33\x26\x18\x36\x28\x19\x38\x29\x1b\x35\x27\x1a\x36\ \x28\x1a\x3e\x2e\x1d\x43\x32\x20\x2f\x24\x17\x2a\x20\x14\x26\x1c\ \x12\x22\x19\x10\x2e\x22\x16\x2d\x21\x15\x36\x28\x1a\x35\x27\x19\ \x3a\x2c\x1c\x30\x24\x17\x2c\x21\x15\x35\x27\x1a\x31\x25\x17\x37\ \x29\x1a\x37\x2a\x1a\x38\x2a\x1b\x33\x26\x18\x2d\x21\x15\x29\x1f\ \x13\x2c\x21\x15\x32\x25\x18\x34\x27\x19\x2d\x21\x16\x26\x1d\x12\ \x2b\x21\x14\x29\x1f\x14\x2e\x22\x16\x3c\x2d\x1d\x35\x28\x1a\x35\ \x28\x1a\x2f\x23\x17\x29\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x31\x25\ \x18\x3b\x2d\x1d\x44\x33\x21\x3c\x2d\x1c\x31\x24\x17\x31\x24\x17\ \x34\x27\x18\x35\x28\x19\x3a\x2c\x1c\x3f\x2f\x1f\x39\x2b\x1c\x2e\ \x23\x16\x27\x1d\x13\x26\x1d\x13\x28\x1e\x13\x28\x1d\x12\x2a\x20\ \x14\x37\x29\x1a\x41\x31\x20\x3e\x2e\x1e\x3d\x2f\x20\x34\x32\x31\ \x39\x3b\x3c\x3f\x41\x42\x3f\x41\x42\x5e\x61\x63\x66\x6b\x6d\x6b\ \x72\x75\x63\x6c\x6f\x64\x6e\x73\x71\x78\x7f\x74\x7a\x80\x76\x7d\ \x84\x76\x7c\x82\x72\x7b\x81\x70\x78\x7f\x72\x7a\x81\x71\x78\x80\ \x6f\x77\x7e\x6c\x74\x7b\x6b\x72\x7a\x6a\x72\x79\x6b\x73\x7a\x69\ \x73\x7a\x68\x72\x79\x67\x70\x78\x67\x71\x79\x68\x72\x7b\x66\x70\ \x7a\x65\x6f\x78\x64\x6e\x76\x65\x6f\x77\x66\x71\x79\x66\x6f\x78\ \x65\x70\x77\x65\x70\x77\x00\x00\x00\x45\x34\x22\x45\x33\x21\x32\ \x25\x18\x28\x1e\x13\x1d\x16\x0e\x1c\x15\x0d\x1d\x15\x0e\x1d\x16\ \x0e\x21\x19\x10\x21\x18\x10\x1a\x13\x0c\x16\x11\x0b\x18\x12\x0b\ \x1a\x13\x0d\x1c\x15\x0e\x22\x19\x10\x2c\x21\x15\x22\x19\x10\x22\ \x19\x10\x2a\x1f\x14\x29\x1f\x14\x28\x1e\x13\x24\x1b\x11\x24\x1b\ \x11\x29\x1f\x13\x2a\x20\x15\x29\x1f\x14\x32\x26\x18\x2f\x24\x16\ \x32\x25\x18\x34\x27\x19\x31\x24\x17\x22\x1a\x10\x22\x1a\x11\x26\ \x1d\x12\x29\x1f\x13\x27\x1e\x13\x25\x1b\x12\x2c\x21\x15\x31\x25\ \x18\x27\x1d\x13\x22\x19\x11\x23\x1a\x10\x23\x1a\x10\x2c\x21\x15\ \x3c\x2d\x1d\x37\x29\x1a\x2d\x22\x15\x2c\x22\x16\x35\x27\x19\x3b\ \x2c\x1c\x3b\x2d\x1c\x41\x31\x20\x3b\x2c\x1d\x3a\x2c\x1c\x3a\x2c\ \x1c\x33\x27\x19\x2e\x23\x16\x2a\x20\x14\x2e\x22\x16\x33\x27\x18\ \x2d\x22\x15\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x2d\x21\x15\x2e\ \x22\x16\x37\x29\x1a\x37\x2a\x1b\x35\x27\x1a\x2f\x24\x17\x2f\x23\ \x16\x2b\x21\x15\x2d\x22\x16\x25\x1b\x11\x27\x1d\x13\x25\x1b\x11\ \x30\x24\x17\x2d\x22\x16\x36\x29\x1a\x32\x25\x18\x34\x26\x18\x32\ \x25\x18\x39\x2a\x1b\x36\x28\x1a\x34\x26\x18\x35\x27\x19\x34\x27\ \x19\x3d\x2d\x1e\x3b\x2b\x1c\x35\x28\x19\x2f\x23\x16\x24\x1b\x12\ \x25\x1b\x11\x21\x19\x10\x26\x1c\x12\x23\x1a\x10\x2a\x1f\x14\x24\ \x1b\x12\x24\x1b\x11\x34\x28\x1a\x42\x32\x20\x35\x28\x19\x3e\x2e\ \x1d\x45\x34\x22\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x17\x37\x29\x1b\ \x3d\x2e\x1d\x3d\x2f\x1e\x35\x27\x19\x30\x24\x17\x30\x24\x17\x34\ \x27\x19\x3a\x2b\x1c\x3f\x2f\x1e\x4c\x39\x24\x3d\x2e\x1d\x2a\x1f\ \x14\x34\x28\x1a\x2e\x23\x16\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\ \x5a\x44\x2c\x41\x31\x1f\x3f\x2f\x20\x36\x34\x2f\x38\x3a\x3b\x2e\ \x2f\x31\x50\x53\x53\x5b\x5f\x60\x64\x69\x6b\x58\x5e\x61\x19\x1d\ \x20\x1f\x24\x28\x66\x6d\x74\x78\x7e\x85\x74\x7b\x82\x76\x7e\x84\ \x75\x7d\x84\x72\x7a\x81\x70\x78\x7f\x6e\x76\x7d\x6d\x75\x7c\x6e\ \x75\x7d\x6d\x75\x7d\x6d\x75\x7c\x6b\x73\x7a\x68\x71\x7a\x6a\x73\ \x7b\x68\x72\x7a\x68\x72\x7b\x67\x71\x7a\x68\x72\x7b\x66\x70\x79\ \x67\x72\x7b\x64\x6f\x78\x64\x6f\x77\x66\x6f\x78\x69\x72\x7b\x69\ \x74\x7b\x00\x00\x00\x48\x36\x23\x45\x34\x21\x2c\x20\x15\x22\x19\ \x10\x1c\x14\x0d\x1d\x15\x0d\x1c\x16\x0d\x1f\x18\x0f\x23\x1a\x11\ \x22\x19\x10\x1c\x15\x0d\x17\x11\x0b\x1e\x16\x0f\x24\x1b\x11\x2c\ \x21\x15\x2a\x20\x14\x2f\x24\x17\x2b\x20\x15\x25\x1c\x12\x22\x1a\ \x10\x23\x1a\x11\x20\x18\x0f\x21\x19\x10\x1d\x16\x0e\x1e\x16\x0e\ \x20\x19\x10\x26\x1d\x12\x27\x1e\x14\x2c\x21\x15\x33\x26\x19\x38\ \x2a\x1b\x3b\x2c\x1d\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\x25\x1b\ \x11\x28\x1e\x13\x29\x1e\x13\x27\x1d\x12\x31\x25\x18\x3d\x2e\x1e\ \x33\x26\x19\x2e\x23\x16\x2e\x22\x16\x2e\x23\x16\x3a\x2c\x1d\x3a\ \x2c\x1c\x35\x28\x1a\x2f\x23\x16\x34\x26\x19\x33\x26\x19\x2f\x23\ \x16\x39\x2a\x1c\x36\x28\x1a\x38\x2b\x1b\x3b\x2c\x1c\x40\x30\x1f\ \x31\x25\x18\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x29\x1f\x14\x2e\ \x23\x16\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2d\x22\x16\x2e\x22\ \x16\x31\x25\x18\x3b\x2d\x1d\x39\x2b\x1c\x37\x2a\x1b\x2e\x23\x16\ \x2c\x21\x15\x2a\x20\x14\x26\x1c\x12\x2c\x22\x15\x32\x26\x18\x35\ \x28\x1a\x38\x2a\x1a\x37\x29\x1b\x2e\x22\x16\x32\x26\x18\x39\x2a\ \x1b\x37\x29\x1a\x31\x24\x18\x33\x26\x18\x34\x27\x19\x35\x27\x1a\ \x34\x27\x19\x35\x28\x19\x32\x26\x18\x28\x1e\x13\x23\x1a\x11\x23\ \x1a\x11\x2a\x1f\x14\x25\x1c\x12\x2b\x1f\x14\x23\x1a\x11\x1f\x17\ \x0f\x35\x28\x1a\x3c\x2d\x1d\x34\x26\x19\x2d\x22\x16\x31\x25\x18\ \x29\x1f\x14\x2f\x23\x16\x37\x29\x1a\x37\x29\x1a\x3d\x2e\x1d\x3d\ \x2e\x1d\x39\x2b\x1c\x3e\x2e\x1e\x39\x2b\x1c\x32\x25\x18\x2f\x24\ \x17\x2c\x21\x15\x38\x29\x1b\x40\x30\x1f\x38\x2a\x1b\x36\x29\x1a\ \x28\x1e\x13\x2e\x23\x16\x34\x27\x19\x35\x27\x19\x42\x32\x20\x41\ \x31\x1f\x34\x28\x1a\x3b\x36\x31\x37\x38\x3a\x1e\x1e\x1f\x47\x4a\ \x4c\x5a\x5e\x60\x63\x66\x69\x43\x46\x48\x00\x00\x00\x1b\x1e\x20\ \x5c\x62\x68\x77\x7e\x85\x73\x7b\x82\x76\x7e\x84\x73\x7b\x82\x73\ \x7b\x82\x71\x79\x80\x6d\x76\x7d\x6f\x77\x7e\x6e\x77\x7e\x6c\x74\ \x7d\x6c\x73\x7c\x6b\x74\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7c\ \x68\x72\x7b\x66\x70\x79\x68\x73\x7b\x67\x72\x7a\x6a\x74\x7d\x65\ \x70\x78\x63\x6e\x76\x66\x71\x78\x6b\x74\x7b\x6b\x75\x7c\x00\x00\ \x00\x56\x41\x2b\x4b\x38\x24\x2a\x20\x14\x28\x1e\x14\x1c\x15\x0d\ \x21\x19\x10\x20\x18\x0f\x23\x1b\x10\x22\x19\x10\x1e\x16\x0e\x1e\ \x17\x0e\x1f\x18\x0f\x25\x1c\x12\x26\x1d\x12\x2b\x20\x14\x31\x25\ \x17\x34\x27\x19\x2c\x21\x15\x22\x19\x11\x1d\x16\x0e\x20\x18\x10\ \x1f\x17\x0f\x24\x1b\x11\x23\x1a\x10\x23\x1a\x11\x1d\x16\x0e\x23\ \x1a\x10\x21\x18\x10\x24\x1b\x11\x2c\x21\x15\x3c\x2d\x1d\x35\x27\ \x19\x30\x24\x17\x31\x24\x18\x2c\x21\x15\x2d\x21\x15\x32\x26\x18\ \x34\x27\x19\x2d\x22\x15\x34\x27\x19\x3f\x30\x1f\x3d\x2e\x1d\x39\ \x2b\x1c\x39\x2b\x1c\x2f\x24\x17\x34\x27\x19\x3c\x2c\x1c\x34\x27\ \x19\x2a\x1f\x14\x2e\x22\x16\x2f\x23\x17\x2b\x21\x15\x2e\x22\x16\ \x2d\x22\x16\x31\x26\x17\x3b\x2d\x1d\x3e\x2e\x1d\x34\x27\x19\x32\ \x26\x18\x2d\x22\x16\x24\x1b\x11\x27\x1e\x13\x29\x1f\x14\x2a\x20\ \x14\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2a\x1f\x14\x33\x26\x19\ \x39\x2b\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x2f\x23\x16\x36\ \x29\x1a\x2d\x22\x15\x29\x20\x14\x34\x27\x19\x2f\x24\x17\x29\x1e\ \x13\x35\x27\x19\x31\x25\x18\x34\x27\x19\x34\x27\x19\x30\x24\x16\ \x2f\x23\x17\x37\x29\x1a\x31\x25\x18\x2d\x21\x15\x2e\x22\x16\x30\ \x24\x17\x34\x26\x19\x32\x25\x18\x27\x1d\x12\x23\x1b\x11\x27\x1d\ \x13\x22\x1a\x10\x24\x1b\x11\x21\x18\x10\x1f\x17\x0e\x34\x27\x19\ \x31\x25\x18\x37\x29\x1a\x35\x29\x1a\x3f\x30\x1e\x29\x20\x14\x2e\ \x22\x16\x30\x23\x17\x38\x2a\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x3b\x2c\ \x1c\x40\x30\x1f\x3e\x2f\x1e\x36\x29\x1a\x34\x27\x19\x2a\x20\x14\ \x2d\x21\x16\x3a\x2b\x1c\x3d\x2f\x1e\x37\x29\x1a\x2d\x21\x15\x2d\ \x21\x16\x2a\x1f\x14\x2a\x20\x14\x30\x23\x17\x2f\x24\x17\x23\x1b\ \x12\x3b\x34\x2f\x2f\x30\x31\x36\x37\x38\x30\x32\x34\x59\x5c\x5e\ \x5d\x62\x64\x36\x39\x3c\x00\x00\x00\x2b\x2e\x31\x64\x6a\x70\x73\ \x7a\x80\x73\x7b\x82\x74\x7c\x82\x72\x7a\x81\x71\x79\x80\x70\x78\ \x7f\x6d\x77\x7e\x6f\x77\x7f\x6d\x76\x7d\x6b\x74\x7d\x6b\x74\x7d\ \x6b\x74\x7d\x6b\x75\x7e\x6a\x74\x7d\x6a\x74\x7d\x67\x71\x7a\x65\ \x70\x78\x66\x71\x79\x67\x72\x7a\x68\x74\x7c\x67\x72\x7a\x66\x71\ \x79\x68\x72\x7a\x69\x72\x79\x6a\x74\x7b\x00\x00\x00\x5f\x48\x2f\ \x54\x40\x29\x2f\x24\x17\x1e\x17\x0f\x1f\x17\x0f\x21\x18\x0f\x23\ \x1a\x10\x26\x1c\x12\x2c\x21\x15\x23\x1a\x11\x26\x1c\x12\x28\x1e\ \x13\x2d\x22\x16\x2c\x20\x15\x2d\x21\x16\x28\x1e\x14\x30\x24\x17\ \x2f\x23\x17\x28\x1e\x13\x25\x1c\x12\x23\x1a\x11\x1e\x17\x0f\x23\ \x1a\x11\x24\x1b\x11\x27\x1d\x12\x26\x1c\x12\x2a\x20\x14\x20\x17\ \x0f\x23\x1a\x11\x2b\x20\x14\x33\x26\x18\x32\x25\x18\x35\x28\x19\ \x37\x29\x1b\x31\x25\x18\x34\x28\x19\x3b\x2d\x1d\x2e\x23\x16\x27\ \x1e\x12\x2f\x23\x16\x37\x29\x1a\x38\x2a\x1b\x37\x29\x1a\x33\x26\ \x19\x31\x25\x18\x37\x2a\x1a\x3e\x2e\x1e\x33\x25\x18\x2a\x1f\x14\ \x30\x24\x17\x33\x26\x19\x32\x26\x18\x30\x24\x17\x35\x28\x1a\x33\ \x27\x18\x33\x26\x18\x3d\x2d\x1d\x3a\x2c\x1c\x3c\x2d\x1d\x35\x27\ \x1a\x2b\x20\x15\x2a\x20\x14\x29\x1f\x14\x25\x1c\x12\x28\x1e\x13\ \x2c\x21\x15\x31\x24\x17\x2d\x21\x15\x34\x27\x19\x39\x2b\x1b\x36\ \x28\x1a\x38\x2a\x1b\x38\x2a\x1b\x34\x26\x19\x33\x26\x18\x31\x24\ \x18\x29\x1f\x13\x2d\x22\x15\x2b\x21\x14\x2d\x22\x15\x2e\x22\x16\ \x2e\x22\x16\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x33\x26\x18\x34\ \x27\x19\x30\x24\x17\x2d\x22\x15\x2a\x1f\x14\x2b\x20\x14\x2f\x23\ \x17\x2c\x20\x15\x26\x1d\x12\x31\x25\x17\x2b\x20\x15\x2b\x21\x15\ \x2b\x20\x14\x28\x1d\x13\x32\x25\x18\x2e\x23\x16\x30\x24\x17\x36\ \x28\x1a\x34\x27\x19\x40\x2f\x1e\x3a\x2c\x1d\x2c\x21\x15\x2d\x21\ \x15\x2f\x24\x17\x34\x27\x19\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1c\ \x39\x2b\x1c\x35\x28\x1a\x33\x26\x18\x2b\x20\x14\x2d\x21\x15\x31\ \x25\x18\x3c\x2e\x1d\x2f\x24\x17\x36\x29\x1a\x33\x26\x19\x31\x25\ \x18\x2a\x1f\x14\x2e\x22\x16\x24\x1b\x11\x29\x1f\x15\x38\x31\x2a\ \x23\x25\x26\x40\x42\x44\x36\x38\x3a\x4c\x4e\x51\x5c\x61\x63\x34\ \x36\x38\x00\x00\x00\x36\x39\x3b\x66\x6c\x70\x6f\x75\x7c\x76\x7c\ \x83\x75\x7b\x81\x74\x7c\x83\x71\x79\x80\x6d\x76\x7d\x6a\x74\x7c\ \x6c\x74\x7d\x6b\x74\x7d\x6c\x75\x7e\x6e\x77\x80\x6b\x75\x7d\x6b\ \x75\x7e\x6c\x76\x7f\x6a\x75\x7d\x68\x72\x7b\x67\x72\x7b\x67\x72\ \x7a\x66\x70\x78\x65\x70\x78\x67\x72\x7a\x66\x71\x79\x67\x70\x78\ \x69\x73\x7a\x6b\x74\x7b\x00\x00\x00\x58\x42\x2a\x4d\x3a\x25\x36\ \x28\x1a\x23\x1a\x11\x1f\x17\x0f\x22\x1a\x10\x2a\x1f\x14\x2b\x20\ \x15\x2e\x23\x17\x27\x1d\x13\x28\x1e\x13\x28\x1d\x13\x30\x24\x17\ \x30\x25\x18\x31\x25\x18\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x32\ \x26\x18\x2c\x21\x15\x27\x1d\x13\x24\x1b\x11\x27\x1d\x13\x24\x1b\ \x11\x24\x1b\x11\x2d\x22\x16\x2e\x23\x16\x28\x1e\x14\x22\x1a\x11\ \x2d\x22\x16\x2f\x23\x16\x31\x25\x18\x35\x27\x19\x38\x2a\x1b\x32\ \x25\x17\x2c\x21\x15\x2f\x24\x17\x2b\x21\x15\x24\x1c\x11\x26\x1d\ \x12\x32\x25\x18\x3b\x2b\x1c\x38\x2a\x1b\x36\x29\x1a\x35\x28\x1a\ \x32\x26\x18\x38\x2a\x1b\x36\x28\x1a\x35\x28\x19\x32\x26\x18\x2e\ \x22\x16\x2d\x22\x16\x32\x26\x19\x30\x24\x16\x2e\x22\x16\x34\x27\ \x19\x3d\x2e\x1e\x3e\x2e\x1d\x42\x31\x20\x41\x30\x1f\x32\x26\x18\ \x2f\x23\x16\x29\x1f\x14\x25\x1c\x12\x2a\x20\x14\x2d\x21\x15\x2b\ \x20\x15\x2d\x22\x16\x31\x24\x17\x33\x26\x19\x35\x27\x19\x33\x26\ \x18\x3a\x2c\x1c\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x32\x26\x18\ \x39\x2b\x1b\x39\x2b\x1b\x36\x29\x1a\x28\x1e\x14\x2b\x20\x15\x32\ \x26\x18\x37\x2a\x1a\x37\x29\x1a\x38\x2a\x1b\x36\x29\x1a\x38\x2a\ \x1b\x38\x2a\x1b\x36\x28\x1a\x33\x26\x19\x30\x24\x17\x29\x1f\x14\ \x25\x1c\x12\x2d\x22\x16\x2e\x22\x16\x32\x26\x18\x2c\x22\x15\x29\ \x1e\x14\x31\x25\x18\x2b\x21\x15\x2f\x23\x16\x31\x24\x17\x2e\x22\ \x17\x33\x26\x18\x3d\x2e\x1e\x2b\x1f\x14\x33\x26\x18\x2c\x21\x15\ \x2e\x22\x16\x2e\x22\x16\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x3a\ \x2b\x1c\x33\x26\x19\x33\x26\x18\x32\x25\x18\x2e\x23\x17\x34\x27\ \x18\x2f\x23\x17\x2f\x23\x17\x37\x2a\x1b\x34\x26\x19\x35\x28\x1a\ \x30\x23\x16\x25\x1d\x12\x28\x1f\x14\x3e\x34\x2a\x27\x29\x2a\x40\ \x42\x44\x46\x47\x49\x39\x3a\x3b\x5e\x63\x64\x42\x46\x46\x16\x16\ \x17\x4a\x4d\x51\x65\x6a\x6e\x6f\x75\x7c\x75\x7c\x83\x74\x7c\x82\ \x74\x7c\x83\x70\x78\x7f\x6e\x77\x7e\x68\x71\x7a\x6b\x73\x7c\x6a\ \x73\x7d\x6b\x74\x7e\x6b\x75\x7f\x6c\x76\x7e\x6b\x75\x7e\x6a\x74\ \x7d\x68\x73\x7b\x68\x72\x7b\x67\x72\x7b\x67\x71\x7a\x66\x70\x79\ \x65\x6f\x78\x66\x70\x78\x67\x70\x79\x67\x71\x78\x6a\x74\x7b\x6c\ \x75\x7c\x00\x00\x00\x56\x40\x29\x50\x3c\x26\x33\x27\x18\x2c\x21\ \x15\x22\x19\x10\x22\x1b\x11\x29\x1f\x13\x2c\x20\x15\x21\x19\x10\ \x23\x1a\x10\x27\x1e\x13\x29\x1f\x14\x33\x27\x19\x2f\x24\x16\x25\ \x1c\x11\x20\x18\x0f\x22\x1a\x10\x25\x1c\x12\x2d\x22\x16\x2d\x22\ \x16\x2c\x21\x15\x26\x1d\x12\x25\x1b\x12\x24\x1b\x11\x2b\x20\x14\ \x30\x24\x17\x2e\x22\x16\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x2e\ \x23\x16\x2f\x23\x17\x31\x25\x18\x35\x28\x19\x35\x28\x19\x2d\x21\ \x15\x2b\x20\x15\x29\x1f\x14\x22\x1a\x10\x26\x1c\x12\x2c\x21\x15\ \x31\x25\x18\x33\x26\x18\x35\x28\x19\x37\x2a\x1b\x31\x25\x18\x2f\ \x23\x17\x35\x28\x1a\x34\x28\x19\x33\x26\x19\x34\x27\x19\x2d\x21\ \x15\x33\x26\x18\x2b\x21\x15\x31\x25\x18\x35\x27\x19\x3e\x2e\x1d\ \x3e\x2f\x1e\x40\x30\x1f\x43\x32\x20\x37\x29\x1b\x2d\x22\x15\x28\ \x1f\x14\x22\x1a\x11\x28\x1e\x13\x2f\x23\x16\x30\x24\x17\x31\x24\ \x17\x2b\x20\x15\x2b\x20\x14\x35\x27\x19\x38\x2a\x1a\x3c\x2d\x1d\ \x34\x27\x19\x35\x28\x19\x34\x28\x1a\x39\x2b\x1c\x3c\x2c\x1d\x3e\ \x2e\x1d\x33\x26\x18\x28\x1f\x13\x2d\x22\x16\x34\x27\x19\x2e\x22\ \x16\x30\x24\x17\x35\x27\x19\x38\x2a\x1b\x42\x31\x1f\x41\x30\x1f\ \x42\x31\x20\x3f\x2f\x1f\x3d\x2e\x1d\x31\x25\x18\x2b\x21\x15\x2d\ \x22\x15\x2f\x24\x17\x33\x26\x19\x31\x25\x18\x2c\x21\x15\x2e\x23\ \x16\x32\x25\x18\x2c\x21\x15\x30\x24\x16\x2a\x1f\x14\x2b\x20\x15\ \x2d\x21\x15\x2a\x1f\x14\x2b\x21\x14\x29\x1f\x14\x27\x1c\x12\x25\ \x1c\x12\x25\x1c\x12\x29\x1e\x14\x2f\x23\x16\x37\x29\x1a\x36\x29\ \x1a\x37\x29\x1b\x3b\x2c\x1c\x36\x28\x1a\x32\x26\x18\x33\x26\x19\ \x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x3b\x2b\x1c\x39\x2a\x1b\x21\ \x19\x10\x21\x19\x10\x3c\x30\x24\x24\x26\x27\x3e\x41\x43\x47\x4b\ \x4c\x3f\x43\x45\x4f\x54\x56\x5c\x61\x65\x54\x58\x5c\x5b\x5f\x65\ \x60\x62\x69\x72\x77\x7d\x72\x7a\x81\x73\x7c\x82\x73\x7b\x82\x71\ \x79\x7f\x71\x79\x80\x6c\x75\x7e\x6d\x76\x7f\x6c\x75\x7f\x6d\x76\ \x81\x6b\x74\x7e\x6b\x75\x7f\x6a\x75\x7d\x69\x73\x7c\x68\x72\x7c\ \x69\x73\x7c\x66\x71\x7a\x66\x70\x79\x67\x71\x7a\x68\x72\x7b\x67\ \x70\x78\x68\x72\x7a\x69\x73\x7b\x6c\x75\x7d\x6e\x77\x7e\x00\x00\ \x00\x55\x40\x29\x52\x3e\x28\x3e\x2f\x1d\x2b\x20\x14\x21\x18\x0f\ \x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x21\x18\x10\x24\x1b\x10\x2a\ \x1f\x14\x2c\x21\x15\x2e\x23\x16\x2b\x20\x14\x1d\x16\x0e\x1c\x15\ \x0e\x21\x19\x0f\x20\x19\x10\x24\x1b\x11\x2e\x23\x16\x31\x25\x17\ \x2e\x23\x16\x27\x1d\x12\x25\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2e\ \x23\x16\x32\x25\x18\x39\x2b\x1c\x34\x27\x1a\x31\x24\x17\x28\x1e\ \x13\x2e\x22\x16\x2c\x21\x16\x2d\x22\x16\x30\x24\x17\x30\x24\x17\ \x27\x1d\x12\x22\x1a\x11\x25\x1b\x12\x27\x1e\x13\x2a\x20\x15\x2a\ \x1f\x14\x34\x27\x19\x37\x29\x1b\x2f\x23\x17\x2b\x20\x15\x2f\x23\ \x16\x30\x24\x17\x37\x29\x1a\x3a\x2b\x1c\x34\x26\x19\x34\x26\x19\ \x30\x24\x17\x38\x2a\x1b\x2e\x22\x16\x37\x29\x1a\x37\x29\x1a\x35\ \x28\x1a\x35\x28\x1a\x32\x25\x18\x32\x26\x18\x2f\x24\x17\x25\x1c\ \x12\x27\x1d\x13\x26\x1c\x12\x29\x1e\x13\x2b\x20\x14\x28\x1e\x13\ \x2c\x20\x15\x34\x27\x19\x39\x2c\x1b\x36\x29\x1a\x39\x2b\x1b\x3a\ \x2b\x1c\x38\x29\x1b\x33\x26\x19\x36\x29\x1a\x37\x28\x1a\x35\x27\ \x19\x30\x24\x17\x31\x24\x18\x37\x2a\x1b\x36\x28\x1a\x37\x2a\x1b\ \x36\x29\x1a\x37\x29\x1a\x3c\x2d\x1d\x3a\x2b\x1c\x3f\x2f\x1e\x43\ \x32\x20\x43\x32\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3c\x2c\x1c\x3a\x2c\ \x1c\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x31\x25\x18\x35\x28\x1a\ \x2c\x21\x15\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x27\x1d\x13\x2d\ \x22\x15\x2b\x20\x15\x28\x1e\x13\x26\x1c\x13\x29\x1e\x14\x2e\x23\ \x16\x2b\x21\x15\x28\x1e\x14\x30\x24\x17\x37\x2a\x1b\x34\x27\x19\ \x38\x2a\x1b\x34\x27\x19\x3c\x2d\x1d\x38\x29\x1b\x34\x27\x19\x35\ \x28\x19\x2e\x23\x16\x37\x29\x19\x3d\x2e\x1d\x24\x1b\x11\x22\x1a\ \x10\x3a\x2e\x21\x1e\x1f\x21\x3e\x41\x42\x36\x3b\x3c\x1f\x22\x24\ \x29\x2c\x2e\x6a\x70\x74\x6d\x73\x78\x55\x5b\x60\x5b\x60\x67\x75\ \x7b\x81\x73\x7b\x82\x74\x7c\x82\x71\x79\x80\x70\x77\x7f\x71\x78\ \x81\x6c\x76\x7f\x6e\x78\x81\x6e\x77\x80\x6d\x77\x80\x6b\x75\x7f\ \x6b\x75\x7f\x69\x73\x7d\x68\x73\x7c\x69\x73\x7d\x6a\x74\x7f\x67\ \x71\x7b\x67\x71\x7a\x68\x73\x7c\x69\x74\x7c\x68\x72\x7b\x67\x72\ \x7a\x6b\x74\x7d\x6d\x76\x7f\x6d\x75\x7d\x00\x00\x00\x52\x3e\x28\ \x4f\x3b\x26\x40\x30\x1f\x26\x1d\x12\x23\x19\x10\x20\x18\x0f\x1f\ \x17\x0f\x26\x1c\x12\x2b\x20\x14\x27\x1d\x13\x20\x18\x0f\x20\x18\ \x10\x21\x19\x10\x23\x1a\x11\x19\x13\x0c\x1a\x14\x0d\x1c\x15\x0d\ \x1c\x15\x0e\x1f\x18\x0f\x2e\x23\x16\x37\x29\x1a\x34\x27\x19\x26\ \x1d\x12\x24\x1b\x11\x21\x19\x10\x27\x1d\x13\x2b\x20\x14\x2e\x22\ \x16\x36\x28\x19\x33\x26\x18\x2d\x22\x16\x28\x1e\x13\x27\x1d\x12\ \x29\x1f\x14\x25\x1c\x11\x2e\x22\x16\x2f\x23\x16\x2c\x21\x15\x25\ \x1c\x12\x23\x1b\x11\x26\x1d\x12\x28\x1e\x14\x27\x1d\x13\x2c\x21\ \x15\x31\x25\x17\x2d\x22\x15\x29\x1f\x14\x2c\x21\x15\x32\x25\x18\ \x3a\x2b\x1c\x40\x30\x1f\x3d\x2d\x1d\x37\x29\x1a\x31\x24\x17\x2e\ \x23\x16\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\x38\x2a\x1b\x32\x25\ \x18\x2a\x1f\x14\x2c\x21\x15\x2f\x24\x17\x2c\x21\x15\x34\x27\x19\ \x2d\x22\x15\x2c\x21\x15\x29\x1f\x14\x25\x1c\x12\x2d\x22\x16\x36\ \x28\x19\x3c\x2d\x1d\x34\x27\x19\x38\x2a\x1b\x35\x28\x19\x3b\x2b\ \x1c\x31\x25\x18\x34\x28\x19\x2f\x23\x17\x33\x26\x19\x31\x25\x18\ \x35\x27\x19\x36\x29\x1a\x39\x2b\x1b\x37\x29\x1a\x33\x26\x18\x38\ \x2a\x1b\x35\x28\x1a\x35\x28\x1a\x3c\x2c\x1d\x42\x32\x20\x3e\x2f\ \x1e\x39\x2b\x1c\x3b\x2c\x1c\x3c\x2c\x1c\x39\x2b\x1b\x37\x2a\x1b\ \x33\x26\x18\x31\x24\x18\x34\x27\x19\x3f\x2f\x1f\x37\x2a\x1b\x34\ \x27\x19\x31\x24\x18\x2f\x23\x16\x29\x1f\x13\x30\x24\x17\x30\x24\ \x17\x2f\x23\x16\x2f\x24\x17\x36\x28\x1a\x3c\x2d\x1d\x34\x27\x19\ \x2d\x22\x16\x2a\x1f\x14\x31\x24\x18\x34\x27\x19\x37\x29\x1b\x37\ \x29\x1a\x40\x30\x1f\x3f\x2e\x1f\x37\x29\x1a\x30\x24\x17\x2b\x20\ \x15\x35\x28\x19\x33\x26\x18\x33\x26\x19\x24\x1c\x11\x3d\x31\x23\ \x28\x2a\x2b\x2c\x2a\x28\x0d\x0e\x0f\x1a\x1a\x1c\x1f\x1f\x22\x4d\ \x52\x56\x5f\x65\x69\x4d\x53\x58\x6a\x70\x76\x74\x7b\x81\x71\x79\ \x80\x73\x7b\x81\x70\x78\x7f\x6f\x76\x7d\x6f\x78\x80\x6d\x76\x7f\ \x6d\x76\x7f\x6b\x74\x7d\x6b\x75\x7e\x6c\x76\x7f\x6a\x74\x7d\x69\ \x73\x7c\x6a\x74\x7d\x69\x73\x7d\x69\x73\x7d\x69\x73\x7e\x68\x72\ \x7c\x68\x72\x7c\x66\x70\x7a\x68\x71\x7a\x68\x71\x7a\x6a\x73\x7c\ \x6d\x76\x7f\x6f\x77\x80\x00\x00\x00\x57\x41\x2a\x4c\x38\x24\x44\ \x33\x21\x22\x1a\x11\x26\x1d\x12\x23\x1a\x10\x1d\x15\x0e\x27\x1e\ \x13\x23\x1b\x10\x20\x19\x10\x1f\x17\x0e\x21\x18\x0f\x1c\x15\x0e\ \x1a\x14\x0c\x16\x11\x0b\x16\x11\x0b\x14\x0f\x0a\x16\x10\x0a\x1b\ \x15\x0d\x22\x1a\x10\x26\x1d\x12\x2b\x20\x15\x2a\x1f\x14\x1f\x18\ \x0f\x20\x18\x0f\x27\x1d\x12\x25\x1c\x12\x30\x24\x17\x30\x25\x18\ \x36\x28\x1a\x33\x26\x19\x2b\x20\x15\x27\x1e\x13\x2b\x20\x15\x23\ \x1a\x11\x27\x1d\x13\x2c\x21\x16\x36\x28\x1a\x35\x27\x19\x28\x1e\ \x14\x25\x1b\x12\x27\x1d\x12\x29\x1f\x14\x2b\x20\x15\x2b\x20\x14\ \x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x34\x27\x19\x38\x2a\x1a\x3e\ \x2e\x1e\x37\x2a\x1b\x3a\x2c\x1c\x32\x25\x18\x31\x24\x17\x35\x28\ \x1a\x31\x25\x17\x29\x1f\x14\x34\x27\x19\x2c\x21\x15\x26\x1c\x13\ \x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x34\ \x27\x19\x32\x25\x18\x27\x1d\x13\x2e\x22\x16\x39\x2a\x1b\x3e\x2f\ \x1e\x3f\x2f\x1f\x31\x25\x18\x33\x26\x18\x38\x2a\x1b\x35\x27\x1a\ \x36\x28\x1a\x2c\x21\x15\x30\x23\x17\x2d\x22\x16\x38\x2a\x1b\x3b\ \x2c\x1c\x3a\x2b\x1b\x30\x24\x18\x30\x23\x17\x38\x2a\x1b\x3c\x2d\ \x1d\x3a\x2b\x1c\x3e\x2f\x1e\x42\x32\x20\x44\x33\x21\x44\x33\x20\ \x44\x33\x21\x35\x27\x19\x37\x29\x1a\x3a\x2b\x1b\x37\x29\x1a\x34\ \x27\x19\x35\x28\x19\x3b\x2c\x1d\x42\x31\x20\x38\x2a\x1b\x39\x2b\ \x1c\x35\x28\x19\x35\x28\x19\x2a\x20\x14\x23\x1a\x11\x2a\x20\x14\ \x32\x25\x18\x35\x28\x19\x41\x30\x1f\x3d\x2e\x1d\x32\x26\x18\x28\ \x1e\x13\x29\x1e\x13\x2d\x22\x15\x36\x28\x1a\x36\x28\x19\x3a\x2b\ \x1c\x3c\x2d\x1d\x36\x29\x1a\x33\x27\x19\x2e\x23\x16\x2e\x23\x16\ \x26\x1d\x13\x2a\x20\x14\x23\x1a\x11\x34\x2a\x1e\x32\x34\x35\x0d\ \x0d\x0b\x25\x26\x26\x48\x4b\x4c\x44\x47\x4a\x34\x37\x3d\x49\x4f\ \x54\x54\x5b\x60\x72\x7a\x80\x73\x7b\x81\x71\x79\x80\x73\x7b\x81\ \x72\x7b\x82\x70\x79\x80\x6d\x76\x7f\x71\x7a\x83\x6f\x78\x81\x6b\ \x74\x7d\x6b\x74\x7d\x6a\x74\x7d\x6b\x74\x7d\x68\x72\x7b\x69\x73\ \x7d\x6a\x74\x7e\x69\x73\x7d\x6a\x74\x7e\x6a\x73\x7f\x69\x73\x7d\ \x65\x6f\x78\x67\x71\x7a\x69\x73\x7b\x6b\x74\x7d\x6e\x77\x80\x6f\ \x78\x81\x00\x00\x00\x52\x3e\x27\x51\x3c\x27\x44\x32\x20\x26\x1d\ \x13\x29\x1f\x14\x20\x18\x10\x23\x1a\x11\x26\x1d\x13\x21\x19\x0f\ \x1d\x15\x0d\x1c\x15\x0d\x1f\x18\x0f\x18\x13\x0c\x17\x12\x0b\x17\ \x11\x0b\x1d\x16\x0e\x1d\x15\x0e\x1b\x14\x0d\x1d\x16\x0e\x21\x19\ \x10\x29\x1e\x14\x31\x24\x18\x31\x24\x18\x23\x1b\x11\x1d\x15\x0e\ \x21\x19\x0f\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x38\x29\x1a\x2f\ \x24\x17\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x29\x1f\x13\x29\x1f\ \x14\x32\x26\x18\x30\x24\x17\x36\x28\x1a\x2d\x21\x16\x24\x1a\x11\ \x25\x1c\x11\x27\x1e\x13\x26\x1c\x12\x26\x1c\x12\x2a\x20\x14\x2c\ \x20\x15\x2b\x20\x15\x2b\x20\x15\x30\x23\x17\x3a\x2b\x1c\x39\x2a\ \x1b\x3f\x2f\x1e\x31\x25\x17\x38\x29\x1a\x39\x2b\x1c\x37\x2a\x1a\ \x29\x1f\x14\x32\x26\x18\x37\x2a\x1b\x2b\x20\x15\x2b\x20\x14\x31\ \x25\x18\x2e\x23\x17\x2e\x23\x16\x33\x26\x19\x38\x2a\x1c\x33\x27\ \x19\x2c\x21\x15\x31\x25\x18\x3b\x2c\x1c\x3f\x2f\x1e\x40\x30\x1f\ \x3e\x2e\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x42\x32\x20\x3a\x2b\x1c\x3e\ \x2e\x1d\x3c\x2d\x1d\x3a\x2c\x1c\x46\x34\x21\x49\x37\x23\x47\x35\ \x22\x36\x29\x1a\x3b\x2c\x1d\x38\x2a\x1b\x35\x28\x19\x3a\x2c\x1c\ \x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x41\ \x30\x1f\x3f\x2f\x1f\x45\x33\x22\x36\x29\x1a\x2e\x23\x16\x2c\x21\ \x15\x2b\x20\x15\x3a\x2c\x1c\x3b\x2c\x1d\x34\x27\x19\x3e\x2f\x1e\ \x3b\x2c\x1c\x2a\x20\x14\x28\x1e\x13\x23\x1a\x11\x2e\x22\x16\x31\ \x25\x17\x38\x2a\x1b\x39\x2b\x1c\x38\x2a\x1b\x30\x24\x17\x2c\x21\ \x15\x2a\x1f\x14\x2f\x23\x17\x2b\x21\x15\x32\x25\x18\x37\x29\x1a\ \x33\x26\x18\x34\x28\x19\x32\x26\x18\x34\x27\x18\x35\x28\x1a\x29\ \x1f\x14\x1e\x17\x0f\x45\x36\x26\x27\x29\x2a\x02\x01\x02\x2c\x2e\ \x2f\x24\x28\x2a\x35\x39\x3b\x31\x33\x37\x2f\x33\x37\x6e\x77\x7b\ \x72\x7b\x81\x72\x7b\x81\x75\x7d\x84\x74\x7c\x82\x72\x7a\x81\x6e\ \x78\x7f\x6d\x76\x7f\x6e\x77\x80\x6b\x75\x7e\x6b\x74\x7d\x6b\x74\ \x7d\x6a\x73\x7d\x6b\x74\x7e\x69\x74\x7d\x6a\x74\x7e\x69\x72\x7d\ \x67\x71\x7c\x69\x73\x7e\x6b\x75\x7f\x6b\x75\x7f\x68\x72\x7b\x69\ \x73\x7c\x6c\x75\x7f\x6b\x74\x7c\x6d\x76\x7e\x72\x7a\x82\x00\x00\ \x00\x4f\x3b\x26\x57\x41\x2a\x48\x35\x22\x23\x1b\x11\x26\x1d\x12\ \x2e\x22\x16\x26\x1c\x12\x24\x1c\x12\x2c\x21\x15\x21\x1a\x10\x22\ \x19\x11\x20\x18\x0f\x1a\x14\x0c\x1d\x15\x0e\x1d\x15\x0e\x23\x1b\ \x11\x1f\x17\x0f\x1d\x16\x0d\x20\x17\x0f\x20\x18\x0f\x29\x1e\x13\ \x34\x27\x19\x32\x26\x18\x2e\x23\x16\x24\x1b\x11\x26\x1d\x12\x26\ \x1d\x12\x25\x1c\x12\x28\x1e\x13\x30\x24\x17\x27\x1d\x13\x2b\x20\ \x15\x2b\x21\x15\x38\x29\x1b\x2f\x23\x16\x29\x1f\x13\x24\x1b\x11\ \x31\x25\x18\x34\x27\x1a\x2d\x22\x16\x2c\x21\x15\x31\x24\x17\x2f\ \x23\x16\x30\x24\x17\x31\x25\x18\x2d\x21\x16\x29\x1e\x13\x28\x1d\ \x13\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x35\x28\x19\x30\x24\x17\ \x2a\x1f\x14\x37\x2a\x1b\x37\x2a\x1b\x30\x24\x16\x31\x25\x18\x2b\ \x20\x14\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x39\x2b\x1c\x38\x2a\ \x1b\x37\x29\x1a\x39\x2b\x1b\x33\x26\x18\x32\x26\x18\x2f\x24\x17\ \x30\x23\x17\x3c\x2c\x1c\x3b\x2c\x1c\x37\x29\x1b\x36\x29\x1a\x33\ \x26\x18\x42\x32\x1f\x4b\x38\x24\x47\x35\x22\x4a\x37\x24\x3d\x2e\ \x1d\x33\x27\x19\x3c\x2c\x1d\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ \x37\x2a\x1b\x41\x31\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3b\x2c\x1c\x40\ \x30\x1e\x48\x36\x23\x49\x37\x24\x40\x2f\x1e\x40\x30\x1f\x35\x28\ \x1a\x3a\x2b\x1c\x34\x27\x19\x33\x27\x19\x2c\x21\x15\x2d\x23\x16\ \x32\x26\x19\x32\x26\x18\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x38\ \x2a\x1b\x36\x29\x1a\x27\x1e\x13\x27\x1c\x12\x2b\x21\x15\x30\x25\ \x17\x37\x29\x1a\x3b\x2c\x1c\x35\x28\x19\x32\x25\x18\x2d\x22\x16\ \x2b\x21\x15\x2a\x20\x14\x30\x24\x16\x32\x26\x18\x3a\x2b\x1c\x3a\ \x2c\x1c\x33\x26\x18\x39\x2a\x1b\x33\x26\x18\x2d\x21\x15\x27\x1d\ \x12\x40\x31\x22\x17\x19\x19\x14\x15\x15\x1f\x1f\x21\x3e\x41\x42\ \x53\x56\x58\x32\x34\x35\x1f\x21\x23\x6a\x74\x78\x70\x7a\x7e\x73\ \x7b\x81\x71\x79\x80\x73\x7b\x81\x71\x79\x80\x71\x7a\x81\x6f\x78\ \x81\x6d\x75\x7f\x6c\x75\x7e\x6c\x75\x7e\x6c\x75\x7e\x6b\x74\x7e\ \x6b\x75\x7e\x6b\x75\x7f\x69\x73\x7d\x68\x72\x7c\x68\x72\x7c\x69\ \x73\x7e\x6b\x74\x81\x68\x71\x7c\x67\x71\x7b\x69\x72\x7c\x6f\x78\ \x81\x6d\x76\x7e\x6d\x77\x7e\x6f\x79\x80\x00\x00\x00\x60\x49\x30\ \x56\x40\x2a\x4e\x3a\x26\x25\x1b\x12\x26\x1c\x12\x2b\x21\x15\x30\ \x24\x17\x32\x25\x18\x38\x2a\x1b\x2e\x22\x16\x21\x18\x10\x1b\x14\ \x0d\x1b\x15\x0d\x20\x18\x0f\x24\x1b\x11\x1c\x15\x0d\x19\x13\x0c\ \x1a\x14\x0d\x1e\x17\x0e\x24\x1b\x11\x27\x1d\x12\x30\x24\x17\x2f\ \x23\x17\x26\x1c\x12\x1f\x17\x0f\x26\x1c\x12\x27\x1e\x13\x26\x1d\ \x12\x2d\x22\x16\x2e\x23\x17\x2a\x20\x15\x2b\x20\x14\x2e\x22\x16\ \x35\x28\x1a\x39\x2b\x1c\x35\x28\x19\x29\x1f\x14\x31\x25\x17\x39\ \x2b\x1c\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x33\x26\x19\x32\x26\ \x18\x28\x1f\x13\x24\x1c\x11\x25\x1c\x12\x26\x1d\x12\x26\x1d\x12\ \x27\x1d\x12\x2c\x21\x15\x2b\x21\x14\x33\x26\x18\x34\x27\x19\x33\ \x27\x19\x33\x26\x18\x29\x1f\x14\x34\x27\x19\x2b\x20\x15\x2d\x21\ \x15\x31\x25\x18\x34\x28\x19\x39\x2b\x1b\x38\x2a\x1b\x3b\x2c\x1c\ \x3e\x2e\x1e\x3d\x2d\x1e\x3e\x2e\x1e\x39\x2b\x1c\x33\x26\x18\x35\ \x28\x19\x35\x27\x19\x2f\x23\x17\x33\x27\x19\x34\x28\x19\x43\x32\ \x21\x43\x32\x21\x46\x33\x21\x39\x2b\x1c\x39\x2b\x1c\x37\x29\x1a\ \x2e\x23\x16\x32\x26\x18\x34\x26\x19\x31\x24\x18\x2d\x22\x16\x33\ \x26\x19\x3e\x2e\x1d\x42\x31\x20\x3f\x2f\x1e\x39\x2b\x1c\x44\x33\ \x21\x48\x36\x22\x3f\x2f\x1e\x43\x32\x21\x3b\x2c\x1d\x38\x2a\x1b\ \x3d\x2d\x1e\x35\x28\x19\x2e\x23\x16\x2b\x20\x15\x31\x24\x17\x34\ \x27\x19\x27\x1e\x13\x22\x19\x10\x2d\x22\x15\x33\x26\x18\x3d\x2e\ \x1d\x3e\x2f\x1e\x31\x25\x18\x32\x24\x17\x35\x28\x19\x3d\x2d\x1d\ \x41\x31\x20\x37\x29\x1a\x30\x24\x17\x2c\x21\x15\x2a\x1f\x14\x2c\ \x21\x15\x2e\x23\x15\x31\x25\x18\x40\x30\x1f\x3f\x30\x1f\x38\x29\ \x1a\x3a\x2b\x1c\x34\x27\x19\x2b\x20\x15\x2f\x23\x16\x29\x1f\x16\ \x0f\x0f\x10\x24\x25\x27\x0f\x0f\x11\x3c\x3f\x41\x4f\x54\x55\x27\ \x29\x2b\x22\x22\x25\x4b\x4f\x56\x73\x7b\x81\x72\x7a\x81\x72\x7a\ \x80\x6f\x78\x7f\x6f\x78\x80\x6f\x79\x80\x6e\x78\x7f\x6d\x76\x7f\ \x6d\x77\x7f\x6b\x76\x7e\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\x7d\x69\ \x73\x7d\x6a\x75\x7f\x69\x74\x7d\x6c\x76\x81\x6b\x75\x81\x69\x73\ \x7d\x67\x70\x7a\x69\x73\x7c\x6a\x74\x7d\x6c\x75\x7e\x6d\x77\x7f\ \x6e\x78\x7f\x6e\x77\x7e\x00\x00\x00\x5d\x46\x2e\x48\x36\x23\x43\ \x32\x20\x22\x19\x10\x2a\x20\x14\x29\x1f\x14\x2c\x22\x16\x34\x27\ \x19\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x21\x18\x10\x22\x19\x10\ \x26\x1c\x12\x24\x1a\x11\x21\x18\x0f\x24\x1b\x12\x22\x19\x11\x26\ \x1c\x12\x23\x1b\x11\x23\x1a\x10\x2a\x1f\x14\x28\x1e\x13\x1c\x15\ \x0e\x21\x18\x10\x27\x1d\x12\x29\x20\x14\x30\x24\x17\x2e\x21\x16\ \x26\x1c\x12\x1f\x18\x0f\x1f\x18\x0f\x20\x18\x0f\x2b\x20\x15\x28\ \x1e\x13\x2a\x20\x14\x2f\x23\x16\x37\x2a\x1b\x34\x27\x19\x27\x1d\ \x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\ \x29\x1e\x13\x28\x1e\x13\x21\x19\x10\x26\x1d\x12\x25\x1c\x12\x22\ \x19\x10\x21\x19\x10\x28\x1e\x14\x29\x1f\x14\x2b\x20\x14\x31\x25\ \x18\x24\x1b\x11\x2c\x21\x15\x27\x1d\x12\x26\x1d\x12\x2b\x21\x15\ \x31\x25\x17\x35\x28\x1a\x35\x27\x1a\x3c\x2c\x1d\x44\x33\x21\x41\ \x30\x1f\x3a\x2b\x1c\x34\x27\x19\x35\x28\x19\x35\x27\x19\x31\x25\ \x17\x35\x28\x19\x2b\x1f\x15\x30\x24\x16\x32\x24\x18\x38\x2a\x1b\ \x40\x30\x1f\x39\x2a\x1b\x38\x2a\x1c\x42\x32\x20\x32\x26\x18\x28\ \x1e\x14\x31\x25\x18\x2e\x22\x16\x2c\x21\x15\x2e\x22\x15\x31\x24\ \x17\x39\x2a\x1b\x37\x29\x1a\x31\x25\x17\x38\x2a\x1b\x3c\x2d\x1d\ \x38\x2a\x1b\x3e\x2f\x1e\x43\x32\x20\x41\x30\x1f\x41\x31\x20\x42\ \x31\x20\x3f\x2f\x1f\x40\x30\x1f\x3b\x2b\x1d\x2c\x22\x16\x27\x1e\ \x13\x28\x1e\x13\x2c\x21\x15\x2f\x23\x17\x36\x29\x1a\x38\x2a\x1a\ \x38\x2a\x1b\x33\x26\x18\x2f\x24\x17\x3d\x2e\x1e\x49\x36\x23\x41\ \x31\x1f\x38\x2a\x1b\x30\x24\x17\x32\x26\x18\x2e\x23\x15\x29\x1f\ \x14\x2b\x20\x15\x32\x26\x18\x39\x2a\x1b\x41\x30\x1f\x3e\x2e\x1e\ \x3e\x2f\x1e\x3a\x2b\x1c\x2d\x22\x16\x28\x1f\x14\x0d\x0a\x07\x29\ \x2a\x2c\x13\x14\x15\x31\x36\x39\x39\x3e\x3f\x3e\x41\x44\x37\x39\ \x3e\x3c\x3f\x45\x60\x67\x6e\x72\x7a\x81\x71\x79\x7f\x70\x79\x80\ \x6f\x79\x80\x6f\x78\x80\x6f\x79\x80\x6b\x75\x7d\x6b\x75\x7d\x6e\ \x78\x80\x6d\x77\x81\x6c\x76\x80\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\ \x7d\x68\x73\x7d\x6a\x74\x7f\x69\x73\x7d\x6a\x74\x7e\x68\x72\x7c\ \x6a\x73\x7c\x6b\x76\x7e\x70\x7a\x82\x6f\x79\x80\x6f\x78\x7f\x6e\ \x78\x7f\x00\x00\x00\x46\x35\x22\x47\x35\x22\x3b\x2c\x1c\x1c\x15\ \x0d\x2a\x21\x15\x1e\x17\x0e\x26\x1c\x12\x2b\x20\x15\x27\x1d\x12\ \x31\x25\x17\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\x27\x1d\x13\x25\ \x1c\x12\x1e\x16\x0e\x20\x18\x10\x24\x1c\x12\x27\x1e\x13\x26\x1d\ \x12\x23\x1b\x11\x24\x1b\x11\x25\x1b\x12\x25\x1c\x12\x28\x1e\x13\ \x30\x24\x17\x2d\x21\x15\x29\x1f\x14\x28\x1e\x14\x2a\x20\x14\x2d\ \x23\x16\x2c\x22\x15\x22\x19\x10\x2f\x24\x17\x36\x28\x1a\x2f\x23\ \x17\x38\x2a\x1c\x3f\x2f\x1f\x31\x26\x18\x2d\x22\x15\x2b\x20\x15\ \x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x25\x18\x28\x1e\x13\x24\ \x1b\x12\x22\x1a\x11\x23\x1a\x11\x23\x1a\x11\x23\x1b\x11\x22\x1a\ \x10\x26\x1d\x13\x33\x26\x18\x2f\x23\x16\x2c\x21\x16\x2d\x22\x15\ \x2f\x23\x17\x32\x25\x18\x2e\x23\x16\x30\x24\x18\x35\x27\x19\x3a\ \x2b\x1c\x3d\x2d\x1d\x36\x28\x1a\x34\x27\x19\x36\x29\x1a\x36\x28\ \x1a\x38\x2a\x1b\x36\x28\x1a\x34\x27\x19\x36\x28\x19\x38\x2a\x1b\ \x2a\x1f\x13\x2c\x22\x15\x31\x25\x17\x34\x27\x19\x41\x30\x1f\x3d\ \x2e\x1d\x40\x2f\x1e\x41\x30\x1f\x3d\x2d\x1d\x3c\x2d\x1d\x3a\x2a\ \x1c\x41\x31\x20\x2f\x23\x16\x2c\x21\x15\x30\x24\x18\x33\x27\x19\ \x33\x27\x19\x3e\x2e\x1e\x40\x30\x1f\x38\x2b\x1b\x34\x28\x19\x3c\ \x2c\x1d\x3a\x2b\x1c\x3d\x2e\x1e\x35\x28\x1a\x3d\x2d\x1e\x41\x31\ \x1f\x43\x32\x20\x44\x33\x20\x32\x25\x18\x2e\x23\x16\x23\x1a\x10\ \x25\x1c\x12\x26\x1d\x12\x31\x25\x17\x35\x27\x19\x37\x2a\x1b\x35\ \x28\x1a\x28\x1e\x13\x34\x27\x19\x3e\x2e\x1e\x3d\x2d\x1d\x3d\x2e\ \x1e\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x25\x1c\x12\x24\x1b\x11\ \x32\x26\x19\x30\x25\x17\x2e\x23\x16\x35\x28\x1a\x45\x33\x21\x33\ \x27\x18\x35\x28\x1a\x3a\x2c\x1e\x09\x07\x04\x23\x23\x25\x19\x1b\ \x1c\x3d\x44\x45\x1a\x1e\x1e\x58\x5f\x62\x42\x45\x48\x45\x47\x4c\ \x51\x55\x5c\x6d\x75\x7d\x72\x7a\x80\x6f\x78\x7f\x6c\x76\x7d\x6d\ \x79\x7f\x6f\x79\x80\x6b\x76\x7d\x6a\x75\x7d\x6d\x76\x7f\x6c\x76\ \x80\x6b\x75\x7f\x6a\x74\x7e\x69\x74\x7e\x68\x72\x7c\x67\x71\x7b\ \x69\x73\x7d\x68\x73\x7d\x68\x72\x7c\x6c\x75\x7f\x6a\x75\x7e\x6e\ \x79\x81\x6e\x77\x7f\x6f\x79\x80\x71\x79\x80\x70\x78\x7f\x00\x00\ \x00\x41\x30\x1f\x4c\x39\x25\x3d\x2d\x1d\x1e\x17\x0f\x1f\x17\x0e\ \x1d\x16\x0e\x29\x1e\x14\x24\x1b\x11\x2c\x21\x15\x34\x27\x19\x2b\ \x20\x15\x23\x1a\x11\x1c\x15\x0d\x1f\x17\x0e\x27\x1e\x13\x26\x1d\ \x13\x20\x18\x0f\x2e\x23\x16\x35\x28\x19\x31\x24\x17\x2f\x22\x16\ \x34\x27\x19\x37\x29\x1a\x34\x27\x19\x3d\x2d\x1d\x3c\x2d\x1d\x2f\ \x23\x16\x2e\x22\x16\x2d\x21\x15\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\ \x1c\x24\x1c\x11\x28\x1e\x14\x2c\x21\x15\x25\x1c\x12\x30\x24\x17\ \x39\x2a\x1b\x3a\x2c\x1c\x2e\x23\x16\x28\x1d\x13\x29\x1f\x14\x25\ \x1c\x12\x33\x26\x18\x36\x28\x1a\x2d\x21\x15\x26\x1d\x12\x25\x1c\ \x11\x22\x1a\x10\x2a\x21\x15\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\ \x31\x25\x18\x33\x27\x19\x30\x24\x17\x23\x1a\x11\x25\x1c\x12\x2f\ \x24\x17\x39\x2b\x1b\x32\x25\x18\x34\x28\x19\x3b\x2b\x1c\x37\x29\ \x1a\x31\x25\x17\x34\x27\x19\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\ \x33\x26\x19\x2d\x23\x16\x2d\x22\x16\x33\x25\x19\x39\x2a\x1b\x34\ \x27\x19\x31\x24\x17\x3a\x2b\x1b\x3e\x2f\x1e\x40\x2f\x1e\x42\x32\ \x20\x43\x32\x20\x3a\x2b\x1b\x3a\x2b\x1c\x33\x27\x19\x40\x31\x1f\ \x3d\x2e\x1e\x37\x29\x1b\x3b\x2c\x1c\x3a\x2b\x1c\x34\x27\x19\x2f\ \x23\x17\x35\x28\x1a\x34\x27\x19\x37\x28\x1a\x36\x29\x1a\x39\x2b\ \x1c\x34\x28\x1a\x2c\x21\x15\x2f\x23\x16\x2d\x22\x15\x41\x31\x1f\ \x42\x31\x1f\x36\x29\x1a\x30\x24\x17\x26\x1c\x12\x28\x1e\x12\x28\ \x1e\x13\x2b\x21\x15\x32\x26\x19\x3b\x2c\x1d\x3b\x2c\x1d\x2e\x23\ \x16\x2d\x21\x15\x34\x27\x19\x32\x25\x18\x30\x24\x17\x36\x29\x1a\ \x35\x28\x1a\x32\x26\x18\x2c\x21\x15\x2b\x20\x14\x2e\x22\x15\x2f\ \x23\x17\x2a\x1f\x14\x39\x2a\x1b\x3f\x2f\x1f\x3b\x2c\x1c\x38\x2a\ \x1b\x48\x36\x24\x16\x10\x0a\x24\x24\x27\x11\x12\x13\x2e\x35\x36\ \x2a\x31\x33\x44\x4b\x4e\x38\x3c\x3f\x5b\x60\x63\x4a\x4e\x53\x59\ \x5f\x67\x72\x79\x81\x6f\x79\x80\x6f\x79\x80\x6f\x78\x80\x6d\x78\ \x7f\x6c\x76\x7d\x6d\x77\x7f\x6a\x74\x7e\x6b\x75\x7f\x6c\x76\x80\ \x6b\x75\x7f\x6a\x75\x7e\x67\x71\x7b\x68\x72\x7c\x6a\x74\x7e\x6b\ \x75\x7f\x68\x73\x7c\x6a\x74\x7e\x6d\x76\x80\x70\x79\x81\x6f\x79\ \x81\x6f\x79\x81\x70\x7a\x80\x70\x7a\x80\x00\x00\x00\x45\x34\x21\ \x55\x40\x29\x4a\x38\x24\x27\x1e\x13\x2c\x21\x15\x1a\x13\x0c\x23\ \x1a\x10\x26\x1d\x12\x2f\x23\x17\x34\x27\x19\x39\x2b\x1b\x33\x27\ \x19\x35\x28\x19\x2c\x21\x15\x21\x19\x10\x24\x1b\x11\x20\x18\x0f\ \x23\x1a\x11\x2e\x23\x16\x31\x24\x18\x2f\x23\x16\x2e\x23\x16\x35\ \x28\x19\x35\x29\x1a\x2b\x21\x15\x25\x1c\x12\x2a\x20\x14\x2a\x20\ \x14\x2b\x21\x14\x34\x27\x19\x34\x27\x19\x38\x2a\x1b\x2e\x22\x16\ \x24\x1b\x11\x1f\x17\x0f\x22\x1a\x11\x29\x1f\x14\x30\x24\x17\x2b\ \x20\x15\x33\x27\x19\x36\x29\x1a\x2f\x23\x16\x2f\x23\x16\x31\x24\ \x17\x2b\x20\x15\x23\x1a\x11\x26\x1d\x12\x28\x1e\x13\x27\x1d\x12\ \x2d\x21\x15\x26\x1c\x12\x25\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\ \x22\x16\x30\x24\x17\x2d\x22\x16\x31\x25\x18\x31\x25\x18\x32\x25\ \x18\x30\x24\x17\x2f\x22\x16\x39\x2b\x1c\x42\x32\x20\x3c\x2d\x1d\ \x37\x29\x1a\x2e\x23\x16\x2c\x22\x15\x2d\x22\x16\x2e\x22\x16\x37\ \x29\x1a\x3a\x2c\x1c\x37\x29\x1a\x3a\x2b\x1b\x32\x25\x18\x31\x25\ \x18\x31\x24\x17\x3e\x2e\x1d\x45\x34\x21\x44\x33\x21\x43\x32\x20\ \x3f\x30\x1f\x43\x32\x20\x3c\x2d\x1d\x44\x32\x21\x41\x30\x1f\x46\ \x35\x22\x4d\x39\x25\x48\x36\x23\x40\x30\x1f\x32\x25\x18\x2e\x23\ \x17\x29\x1f\x14\x27\x1d\x13\x2d\x22\x16\x2d\x23\x16\x32\x25\x18\ \x2e\x23\x17\x37\x29\x1a\x31\x25\x17\x3f\x2f\x1e\x43\x33\x21\x3d\ \x2e\x1d\x34\x27\x19\x28\x1e\x13\x23\x1b\x11\x26\x1c\x12\x2e\x23\ \x17\x39\x2b\x1c\x3b\x2d\x1d\x35\x27\x19\x30\x24\x17\x2c\x21\x15\ \x2b\x21\x14\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x2e\x22\x16\x35\ \x28\x1a\x3c\x2e\x1d\x34\x26\x19\x36\x29\x1a\x31\x25\x18\x30\x24\ \x16\x37\x29\x1a\x3f\x2f\x1e\x3a\x2b\x1b\x35\x27\x19\x35\x28\x1a\ \x1f\x17\x0f\x0f\x0f\x11\x04\x04\x04\x27\x2c\x2d\x4c\x54\x56\x1e\ \x24\x28\x2d\x2f\x33\x69\x6f\x74\x5d\x61\x67\x4d\x54\x5b\x67\x6f\ \x76\x6f\x79\x80\x6e\x78\x7f\x6e\x78\x7f\x6c\x77\x7e\x6f\x7a\x81\ \x6e\x79\x81\x6b\x76\x7e\x6a\x75\x7d\x69\x74\x7c\x69\x75\x7d\x69\ \x74\x7c\x68\x73\x7d\x69\x74\x7d\x69\x74\x7c\x68\x73\x7b\x6a\x75\ \x7d\x6c\x77\x7f\x6d\x78\x80\x6e\x77\x80\x6e\x78\x80\x6d\x76\x7f\ \x71\x7b\x82\x70\x79\x80\x00\x00\x00\x3c\x2d\x1d\x4f\x3a\x26\x4b\ \x38\x24\x24\x1b\x11\x22\x1a\x10\x19\x13\x0c\x20\x17\x0e\x2a\x1f\ \x13\x37\x29\x1a\x30\x24\x17\x39\x2b\x1c\x32\x26\x18\x2d\x22\x16\ \x2f\x23\x17\x25\x1c\x12\x28\x1f\x13\x23\x1b\x11\x21\x19\x10\x24\ \x1c\x11\x2d\x21\x15\x33\x26\x18\x33\x26\x18\x35\x28\x19\x31\x25\ \x18\x3a\x2b\x1c\x33\x26\x19\x24\x1b\x11\x20\x18\x0f\x21\x19\x10\ \x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x34\x27\x19\x2d\x22\x16\x29\ \x1f\x14\x2b\x20\x14\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x34\x27\ \x19\x33\x26\x18\x34\x28\x1a\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\ \x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x2d\x22\x16\x2c\x22\x15\x36\ \x29\x1a\x35\x28\x19\x3b\x2c\x1c\x43\x32\x20\x3d\x2e\x1e\x36\x29\ \x1a\x3c\x2d\x1e\x36\x29\x1a\x2c\x21\x15\x36\x28\x1a\x3b\x2c\x1c\ \x3a\x2c\x1d\x2f\x24\x16\x36\x28\x1a\x2d\x22\x15\x2b\x20\x14\x2b\ \x20\x14\x2c\x21\x15\x37\x29\x1b\x39\x2a\x1c\x32\x25\x18\x35\x28\ \x19\x3a\x2c\x1c\x40\x30\x1f\x3e\x2e\x1e\x3b\x2c\x1d\x38\x29\x1b\ \x3a\x2b\x1c\x3d\x2e\x1d\x4b\x38\x24\x43\x32\x20\x3a\x2c\x1c\x35\ \x28\x1a\x31\x25\x17\x36\x29\x1a\x3d\x2e\x1d\x3e\x2e\x1e\x42\x31\ \x20\x42\x31\x20\x43\x32\x20\x35\x29\x1a\x2e\x23\x16\x2c\x21\x15\ \x2a\x20\x15\x2a\x1f\x14\x2e\x22\x16\x2d\x22\x15\x2e\x22\x16\x2e\ \x23\x16\x35\x28\x1a\x43\x32\x20\x46\x34\x21\x3e\x2e\x1d\x32\x26\ \x18\x2f\x23\x17\x2c\x20\x15\x33\x26\x18\x35\x28\x19\x35\x28\x19\ \x3d\x2e\x1e\x37\x29\x1a\x34\x27\x19\x32\x26\x18\x2a\x1f\x14\x29\ \x1f\x14\x2f\x23\x17\x2d\x22\x16\x31\x25\x18\x3b\x2c\x1c\x39\x2b\ \x1c\x35\x28\x1a\x39\x2c\x1c\x31\x25\x18\x31\x25\x17\x34\x26\x19\ \x37\x29\x1b\x31\x24\x17\x31\x25\x18\x28\x1f\x14\x25\x1b\x12\x1e\ \x1f\x21\x00\x00\x00\x23\x26\x26\x40\x48\x49\x16\x19\x1b\x2a\x2c\ \x2f\x73\x79\x7f\x6e\x74\x7b\x4d\x52\x5b\x55\x5a\x63\x6c\x73\x7c\ \x6d\x76\x7f\x6c\x76\x7e\x6b\x76\x7d\x6d\x78\x7f\x6d\x77\x80\x69\ \x74\x7c\x6b\x75\x7d\x69\x73\x7b\x69\x74\x7c\x6a\x75\x7d\x69\x75\ \x7e\x69\x75\x7e\x68\x74\x7d\x69\x74\x7d\x6a\x75\x7e\x6c\x77\x7f\ \x6c\x78\x80\x6c\x76\x7f\x6f\x78\x81\x72\x7c\x84\x71\x7b\x82\x74\ \x7d\x83\x00\x00\x00\x3f\x2f\x1f\x47\x35\x22\x55\x3f\x29\x35\x28\ \x1a\x21\x19\x10\x1d\x16\x0e\x22\x1a\x11\x2c\x21\x16\x28\x1e\x14\ \x32\x26\x18\x38\x2a\x1b\x38\x2a\x1b\x2c\x21\x15\x31\x25\x18\x27\ \x1d\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x28\x1d\x13\x28\x1e\ \x13\x25\x1b\x12\x21\x19\x10\x25\x1b\x11\x29\x1f\x14\x31\x25\x17\ \x35\x28\x19\x2a\x1f\x14\x24\x1b\x11\x1f\x17\x0f\x23\x1b\x11\x26\ \x1d\x12\x2d\x22\x16\x39\x2b\x1c\x3f\x2f\x1f\x30\x24\x17\x29\x1f\ \x14\x23\x1a\x11\x24\x1b\x11\x23\x1a\x10\x2e\x23\x16\x33\x26\x19\ \x31\x25\x17\x33\x26\x18\x2e\x22\x16\x2b\x20\x14\x2b\x20\x14\x23\ \x1b\x11\x23\x1b\x11\x2b\x20\x14\x30\x24\x17\x32\x25\x18\x43\x32\ \x21\x3b\x2c\x1c\x3d\x2d\x1d\x41\x31\x1f\x31\x25\x17\x30\x24\x18\ \x33\x26\x18\x31\x25\x18\x34\x27\x19\x3e\x2e\x1e\x34\x27\x19\x2f\ \x23\x16\x2c\x21\x15\x2b\x20\x14\x2b\x20\x14\x2c\x21\x15\x2c\x21\ \x15\x2c\x21\x15\x2f\x23\x17\x29\x1f\x14\x2b\x20\x15\x30\x24\x17\ \x3c\x2c\x1d\x3c\x2c\x1d\x34\x26\x19\x2f\x23\x17\x2f\x23\x16\x33\ \x26\x18\x40\x30\x1f\x48\x36\x23\x3a\x2b\x1c\x36\x28\x1a\x2f\x23\ \x16\x32\x25\x18\x35\x28\x19\x38\x2a\x1b\x39\x2b\x1b\x41\x30\x1f\ \x4b\x38\x24\x3e\x2d\x1d\x3e\x2e\x1e\x35\x28\x1a\x32\x26\x18\x37\ \x29\x1b\x30\x24\x17\x31\x25\x17\x32\x25\x18\x31\x24\x17\x35\x27\ \x1a\x3b\x2d\x1c\x3c\x2e\x1d\x46\x34\x22\x4b\x38\x25\x38\x2b\x1b\ \x38\x2b\x1b\x34\x28\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x39\ \x2a\x1b\x2d\x22\x15\x2d\x22\x15\x2a\x20\x15\x2d\x22\x16\x33\x27\ \x19\x2b\x21\x15\x2a\x1f\x15\x2f\x23\x17\x35\x27\x19\x32\x26\x18\ \x3e\x2f\x1e\x33\x26\x18\x2c\x21\x16\x2d\x22\x16\x32\x25\x18\x32\ \x26\x18\x2e\x23\x16\x20\x18\x10\x10\x0d\x08\x29\x2a\x2b\x03\x03\ \x03\x01\x01\x01\x0c\x0e\x0e\x05\x06\x07\x33\x37\x3b\x65\x6d\x72\ \x6c\x75\x7a\x6a\x70\x77\x45\x4b\x55\x5b\x63\x6d\x6f\x77\x80\x6d\ \x76\x7e\x6a\x74\x7c\x6a\x75\x7c\x6d\x77\x7f\x6b\x76\x7e\x6b\x76\ \x7e\x69\x74\x7c\x68\x73\x7b\x69\x74\x7c\x6c\x77\x7f\x6b\x76\x7f\ \x6a\x75\x7e\x6a\x75\x7f\x6a\x76\x7e\x6b\x76\x7e\x6c\x77\x7f\x6f\ \x79\x80\x71\x7b\x82\x72\x7c\x83\x71\x7b\x82\x73\x7c\x82\x00\x00\ \x00\x45\x34\x22\x4c\x39\x24\x4b\x38\x24\x39\x2b\x1c\x30\x23\x17\ \x1d\x16\x0e\x2a\x20\x14\x33\x26\x19\x33\x27\x18\x2d\x22\x15\x2d\ \x22\x16\x2e\x22\x16\x2d\x22\x15\x29\x1f\x13\x2a\x1f\x14\x22\x1a\ \x10\x20\x18\x0f\x24\x1b\x11\x29\x1f\x14\x26\x1d\x12\x26\x1c\x12\ \x27\x1d\x13\x27\x1e\x13\x2d\x22\x15\x32\x26\x18\x39\x2a\x1b\x38\ \x2a\x1b\x29\x1e\x13\x28\x1e\x13\x20\x18\x0f\x2b\x21\x15\x39\x2a\ \x1b\x38\x2a\x1b\x3e\x2e\x1e\x33\x26\x18\x2d\x22\x16\x24\x1b\x11\ \x24\x1a\x11\x25\x1c\x12\x2b\x21\x15\x31\x24\x17\x32\x25\x18\x42\ \x31\x1f\x40\x30\x1f\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x25\x1c\ \x12\x24\x1b\x11\x2d\x22\x15\x2b\x20\x15\x2f\x24\x17\x30\x24\x17\ \x2e\x23\x16\x2e\x22\x16\x33\x26\x18\x37\x29\x1a\x2f\x23\x17\x3b\ \x2c\x1c\x45\x34\x22\x3e\x2f\x1e\x36\x29\x1a\x37\x29\x1b\x37\x29\ \x1b\x2e\x22\x16\x27\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x21\x15\ \x2a\x20\x14\x2d\x22\x15\x34\x28\x19\x33\x26\x19\x3b\x2c\x1d\x3e\ \x2e\x1d\x3b\x2c\x1d\x2e\x22\x16\x28\x1e\x13\x33\x26\x18\x45\x34\ \x21\x4d\x3a\x26\x3b\x2c\x1d\x39\x2b\x1c\x32\x26\x18\x38\x29\x1b\ \x33\x25\x19\x2f\x24\x17\x35\x28\x19\x3e\x2e\x1d\x3c\x2c\x1d\x31\ \x25\x18\x35\x28\x19\x36\x29\x1a\x31\x25\x17\x32\x25\x17\x2f\x24\ \x17\x38\x2a\x1b\x3a\x2b\x1c\x34\x27\x19\x37\x29\x19\x34\x27\x19\ \x32\x25\x18\x47\x35\x24\x2c\x21\x16\x2b\x21\x14\x30\x23\x17\x42\ \x32\x21\x34\x28\x1a\x39\x2b\x1b\x36\x28\x19\x3d\x2d\x1d\x3a\x2c\ \x1c\x2c\x22\x16\x2b\x20\x15\x2d\x21\x16\x2d\x21\x15\x2e\x23\x16\ \x2b\x20\x15\x33\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x40\x30\x1f\x3a\ \x2c\x1c\x30\x23\x17\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x34\x27\ \x19\x29\x1f\x14\x18\x11\x0c\x18\x18\x19\x24\x24\x26\x00\x00\x00\ \x01\x01\x01\x28\x2a\x2c\x49\x4e\x54\x4a\x51\x59\x6a\x72\x78\x71\ \x78\x7f\x5a\x5f\x69\x42\x48\x53\x68\x6f\x78\x6d\x75\x7e\x6b\x76\ \x7e\x6a\x74\x7c\x6d\x78\x80\x6b\x76\x7e\x6b\x76\x7e\x6b\x76\x7e\ \x6a\x75\x7c\x6a\x75\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\x69\ \x74\x7d\x6a\x75\x7d\x6b\x76\x7e\x6c\x77\x7e\x71\x7b\x82\x71\x7b\ \x83\x70\x7a\x81\x71\x7b\x82\x72\x7c\x83\x00\x00\x00\x3c\x2d\x1d\ \x4a\x37\x24\x43\x32\x20\x2f\x24\x17\x2b\x20\x15\x1b\x14\x0d\x23\ \x1a\x11\x2b\x21\x15\x28\x1e\x13\x25\x1b\x11\x27\x1e\x13\x28\x1e\ \x13\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\x26\x1c\x11\x2a\x20\x14\ \x32\x26\x18\x38\x2a\x1b\x39\x2b\x1c\x31\x25\x18\x2c\x21\x15\x28\ \x1e\x13\x26\x1c\x12\x30\x23\x17\x34\x27\x19\x37\x29\x1a\x30\x24\ \x17\x33\x27\x19\x25\x1d\x12\x25\x1c\x12\x2e\x23\x16\x31\x25\x18\ \x3e\x2f\x1e\x2f\x23\x16\x30\x24\x17\x28\x1e\x13\x1f\x17\x0e\x1e\ \x17\x0f\x22\x1a\x11\x29\x1f\x13\x2c\x21\x15\x35\x27\x19\x34\x27\ \x19\x2c\x21\x15\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x25\x1c\x12\ \x29\x1f\x14\x27\x1d\x13\x2c\x20\x15\x2e\x22\x16\x2b\x20\x14\x2e\ \x22\x16\x30\x25\x17\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x3d\x2e\ \x1d\x43\x32\x20\x41\x30\x1f\x36\x29\x1a\x33\x27\x19\x35\x28\x19\ \x27\x1d\x12\x23\x1a\x10\x29\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x28\ \x1e\x13\x2e\x23\x16\x35\x28\x1a\x39\x2a\x1c\x3a\x2b\x1c\x34\x27\ \x19\x2b\x20\x14\x28\x1e\x14\x2f\x24\x17\x2c\x22\x15\x34\x28\x19\ \x33\x26\x18\x31\x25\x17\x33\x26\x19\x39\x2a\x1b\x32\x26\x18\x2c\ \x21\x15\x37\x2a\x1b\x39\x2b\x1c\x3a\x2b\x1c\x3c\x2d\x1d\x3c\x2d\ \x1d\x38\x2a\x1c\x3a\x2b\x1b\x36\x28\x1a\x35\x28\x19\x3d\x2e\x1e\ \x44\x33\x21\x3c\x2d\x1d\x35\x27\x19\x35\x27\x19\x32\x25\x18\x37\ \x29\x1b\x2d\x22\x16\x25\x1b\x12\x28\x1e\x13\x2c\x22\x15\x32\x25\ \x18\x2d\x22\x15\x2b\x20\x15\x3b\x2c\x1c\x3d\x2e\x1e\x3a\x2b\x1c\ \x34\x27\x19\x37\x29\x1a\x31\x24\x17\x2b\x20\x15\x2b\x20\x14\x32\ \x26\x18\x30\x25\x17\x3c\x2d\x1d\x40\x2f\x1f\x3b\x2c\x1c\x37\x29\ \x1b\x35\x28\x19\x3e\x2e\x1e\x42\x31\x20\x34\x27\x19\x35\x28\x1a\ \x24\x1b\x11\x22\x23\x23\x3b\x3d\x3e\x17\x18\x19\x25\x26\x28\x54\ \x57\x5a\x5a\x5f\x64\x44\x49\x51\x5b\x61\x69\x6e\x75\x7d\x70\x76\ \x7f\x4a\x50\x5b\x4b\x52\x5c\x6c\x74\x7d\x6d\x78\x80\x6a\x75\x7d\ \x6b\x76\x7e\x6a\x75\x7d\x69\x75\x7d\x6a\x75\x7d\x69\x75\x7d\x68\ \x75\x7d\x67\x73\x7d\x68\x73\x7d\x69\x74\x7d\x6a\x75\x7d\x6b\x75\ \x7d\x6c\x76\x7e\x70\x7a\x82\x71\x7b\x83\x73\x7c\x85\x71\x7b\x82\ \x71\x7b\x82\x71\x7b\x81\x00\x00\x00\x3f\x2f\x1e\x53\x3e\x29\x4d\ \x39\x25\x41\x31\x1f\x27\x1e\x13\x18\x12\x0b\x15\x0f\x09\x1f\x17\ \x0f\x1e\x16\x0e\x1f\x18\x0e\x26\x1c\x12\x28\x1e\x13\x28\x1f\x13\ \x30\x25\x18\x28\x1f\x13\x1f\x17\x0e\x27\x1d\x13\x34\x27\x19\x40\ \x30\x1e\x3e\x2f\x1d\x38\x2a\x1b\x31\x24\x18\x29\x1f\x14\x27\x1e\ \x13\x27\x1d\x12\x26\x1c\x12\x28\x1e\x13\x2a\x20\x14\x30\x23\x17\ \x34\x27\x18\x27\x1d\x12\x29\x1f\x13\x29\x1f\x14\x31\x25\x18\x2f\ \x23\x17\x2a\x1f\x14\x1f\x17\x0f\x27\x1d\x13\x1e\x17\x0e\x1f\x17\ \x0f\x23\x19\x11\x29\x1f\x14\x2e\x22\x16\x31\x24\x17\x33\x26\x19\ \x33\x26\x18\x2e\x22\x16\x28\x1e\x14\x2a\x20\x14\x25\x1c\x12\x25\ \x1c\x12\x2a\x1f\x14\x27\x1d\x13\x28\x1f\x13\x2f\x23\x16\x31\x24\ \x18\x27\x1d\x13\x27\x1e\x13\x35\x28\x1a\x38\x2a\x1b\x44\x32\x20\ \x41\x31\x1f\x3d\x2e\x1d\x33\x26\x18\x2c\x21\x15\x2a\x1f\x14\x27\ \x1d\x13\x24\x1b\x12\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2d\x21\ \x15\x2e\x23\x16\x33\x26\x18\x3a\x2b\x1c\x38\x29\x1b\x36\x29\x1a\ \x37\x29\x1a\x36\x2a\x1b\x41\x32\x1f\x3a\x2b\x1c\x38\x2a\x1b\x46\ \x34\x21\x33\x26\x18\x3a\x2b\x1c\x3c\x2e\x1d\x30\x24\x17\x37\x29\ \x1b\x36\x28\x19\x38\x2a\x1b\x34\x27\x19\x31\x25\x18\x35\x28\x1a\ \x33\x26\x19\x30\x24\x17\x32\x26\x18\x42\x32\x20\x3a\x2b\x1c\x37\ \x2a\x1b\x2f\x23\x16\x38\x29\x1a\x31\x25\x17\x38\x29\x1b\x3e\x2e\ \x1e\x3a\x2b\x1c\x3e\x2e\x1d\x42\x31\x20\x3e\x2e\x1e\x35\x28\x1a\ \x33\x26\x18\x39\x2a\x1b\x41\x30\x20\x38\x2a\x1b\x32\x25\x18\x39\ \x2b\x1c\x33\x26\x18\x2f\x24\x16\x2b\x20\x15\x37\x29\x1a\x37\x2a\ \x1b\x3a\x2b\x1c\x39\x2b\x1b\x35\x28\x1a\x38\x2a\x1a\x34\x27\x19\ \x38\x2a\x1b\x41\x30\x1f\x36\x29\x1a\x36\x29\x1b\x1e\x16\x0f\x2d\ \x2e\x2f\x39\x3d\x3e\x38\x3a\x3d\x35\x38\x3c\x5c\x60\x64\x62\x67\ \x6d\x4f\x55\x5d\x48\x4d\x56\x68\x6e\x77\x6f\x77\x7f\x6a\x71\x7b\ \x42\x49\x55\x59\x61\x6b\x6c\x77\x7f\x6c\x77\x7f\x6c\x77\x7f\x67\ \x73\x7b\x6a\x75\x7d\x6a\x75\x7d\x68\x75\x7d\x67\x74\x7c\x68\x73\ \x7d\x69\x73\x7e\x6b\x74\x7e\x6a\x74\x7d\x6c\x75\x7e\x6b\x75\x7e\ \x71\x7a\x82\x73\x7d\x85\x73\x7d\x84\x71\x7b\x82\x72\x7c\x83\x72\ \x7c\x81\x00\x00\x00\x47\x35\x22\x60\x48\x2f\x51\x3d\x28\x43\x32\ \x21\x20\x18\x0f\x21\x18\x0f\x1f\x17\x0f\x22\x19\x10\x22\x1a\x11\ \x25\x1c\x12\x2c\x21\x15\x23\x1a\x11\x24\x1b\x11\x2d\x22\x15\x2c\ \x21\x15\x23\x1a\x11\x27\x1d\x12\x2c\x21\x15\x32\x26\x18\x39\x2b\ \x1b\x35\x28\x1a\x2c\x21\x15\x22\x1a\x10\x22\x1a\x10\x24\x1c\x11\ \x24\x1b\x11\x29\x1f\x14\x2d\x21\x16\x37\x29\x1a\x37\x2a\x1b\x26\ \x1c\x12\x30\x24\x18\x2f\x23\x16\x34\x27\x19\x27\x1d\x13\x26\x1c\ \x12\x26\x1d\x12\x30\x24\x17\x23\x1b\x11\x24\x1a\x11\x2a\x20\x14\ \x27\x1d\x12\x2b\x20\x14\x36\x28\x1a\x3c\x2d\x1d\x36\x28\x19\x2f\ \x24\x17\x28\x1e\x13\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x2c\x21\ \x15\x2a\x1f\x14\x28\x1e\x13\x25\x1c\x12\x25\x1b\x12\x26\x1c\x12\ \x2f\x23\x17\x2e\x22\x17\x2e\x22\x16\x39\x2b\x1b\x31\x25\x17\x33\ \x26\x18\x31\x25\x17\x2c\x21\x15\x2c\x21\x15\x2a\x20\x14\x2e\x23\ \x16\x28\x1e\x13\x2a\x20\x14\x2b\x20\x14\x2b\x20\x15\x2d\x22\x16\ \x35\x28\x1a\x2f\x23\x17\x34\x26\x19\x34\x27\x19\x33\x26\x19\x37\ \x29\x1b\x3c\x2d\x1d\x3e\x2e\x1e\x36\x29\x1b\x39\x2b\x1b\x26\x1d\ \x12\x28\x1e\x13\x32\x26\x18\x31\x25\x17\x30\x24\x17\x31\x24\x17\ \x34\x27\x19\x35\x28\x1a\x32\x25\x18\x2d\x21\x15\x2c\x21\x15\x2c\ \x21\x15\x2e\x23\x16\x2e\x22\x16\x38\x2a\x1b\x37\x29\x1b\x42\x31\ \x20\x40\x30\x1f\x38\x2a\x1c\x3b\x2c\x1c\x40\x30\x20\x3a\x2b\x1c\ \x38\x2a\x1c\x43\x32\x21\x3f\x2f\x1d\x34\x27\x19\x2c\x21\x15\x2e\ \x23\x16\x30\x24\x17\x30\x24\x17\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\ \x1b\x2a\x1f\x14\x27\x1e\x13\x2d\x22\x16\x2b\x20\x15\x39\x2b\x1b\ \x41\x31\x1f\x3b\x2d\x1d\x38\x2a\x1b\x3d\x2e\x1e\x3a\x2b\x1c\x3c\ \x2c\x1c\x38\x2a\x1b\x2e\x23\x16\x27\x1d\x13\x2a\x2c\x2d\x38\x3d\ \x3e\x3f\x42\x45\x32\x36\x3a\x48\x4c\x52\x62\x6a\x6f\x61\x69\x6f\ \x48\x4d\x56\x55\x5c\x65\x6b\x74\x7e\x6e\x77\x80\x61\x69\x73\x3e\ \x44\x4f\x5b\x65\x6e\x6d\x77\x80\x6a\x75\x7d\x69\x75\x7c\x6a\x76\ \x7d\x6a\x76\x7e\x69\x75\x7d\x69\x75\x7d\x6a\x74\x7e\x69\x73\x7e\ \x6b\x74\x7e\x6c\x76\x80\x6b\x75\x7e\x6d\x76\x7f\x6f\x79\x81\x72\ \x7c\x84\x71\x7b\x82\x70\x7a\x81\x72\x7d\x82\x73\x7d\x81\x00\x00\ \x00\x50\x3c\x26\x67\x4d\x32\x55\x40\x2a\x4f\x3b\x26\x24\x1b\x11\ \x2a\x1f\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x26\x1c\x12\x28\ \x1e\x13\x25\x1b\x11\x24\x1c\x11\x27\x1d\x12\x27\x1d\x12\x28\x1e\ \x13\x28\x1e\x13\x25\x1c\x12\x2e\x23\x16\x36\x28\x1a\x37\x2a\x1b\ \x33\x26\x18\x29\x1f\x14\x28\x1f\x13\x2a\x20\x14\x28\x1e\x13\x27\ \x1e\x13\x2a\x1f\x14\x35\x28\x19\x2f\x24\x17\x2a\x1f\x14\x28\x1e\ \x13\x26\x1c\x12\x2c\x21\x15\x27\x1e\x13\x2b\x20\x15\x2a\x20\x15\ \x2c\x21\x15\x29\x1f\x14\x27\x1d\x13\x2b\x20\x15\x24\x1c\x11\x28\ \x1e\x13\x31\x25\x17\x39\x2a\x1b\x3a\x2c\x1c\x34\x26\x18\x29\x1e\ \x13\x28\x1e\x13\x2b\x21\x15\x29\x1f\x14\x2b\x20\x14\x21\x19\x10\ \x24\x1b\x11\x23\x1a\x11\x1d\x16\x0e\x29\x1f\x14\x2e\x22\x16\x36\ \x28\x1a\x38\x2a\x1b\x3d\x2e\x1e\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\ \x1f\x38\x2a\x1b\x34\x27\x19\x31\x26\x18\x2f\x23\x17\x26\x1d\x12\ \x24\x1b\x11\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x34\x27\x19\x31\ \x24\x18\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x2f\x22\x16\x32\x26\ \x18\x3b\x2c\x1c\x36\x29\x1a\x3a\x2b\x1c\x31\x24\x18\x2b\x20\x14\ \x35\x28\x19\x30\x24\x17\x30\x24\x16\x39\x2b\x1b\x39\x2b\x1c\x39\ \x2a\x1b\x37\x29\x1a\x30\x24\x17\x2d\x22\x16\x2a\x1f\x14\x2a\x20\ \x14\x2e\x22\x16\x37\x29\x1a\x3b\x2b\x1c\x43\x32\x21\x3f\x2f\x1f\ \x38\x2a\x1b\x38\x29\x1b\x32\x25\x18\x34\x28\x19\x38\x2a\x1b\x3d\ \x2e\x1e\x42\x31\x20\x3a\x2b\x1b\x30\x24\x17\x2d\x22\x16\x2b\x21\ \x15\x32\x25\x18\x34\x26\x19\x38\x2a\x1b\x37\x2a\x1a\x34\x27\x19\ \x2c\x21\x15\x2c\x21\x15\x33\x26\x18\x38\x2a\x1c\x3b\x2c\x1c\x3c\ \x2d\x1d\x2e\x22\x16\x34\x27\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ \x1b\x37\x29\x1a\x2b\x21\x14\x18\x1a\x1a\x3a\x3d\x3f\x41\x44\x47\ \x3f\x43\x46\x35\x39\x3e\x5b\x63\x66\x64\x6c\x70\x5d\x64\x6a\x3f\ \x46\x4e\x5d\x65\x6e\x6c\x76\x7f\x6e\x77\x80\x57\x5f\x69\x3c\x45\ \x51\x68\x72\x7b\x6b\x76\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\ \x68\x75\x7c\x69\x75\x7e\x69\x74\x7e\x69\x73\x7d\x6d\x76\x80\x6c\ \x75\x7f\x6c\x75\x7e\x6f\x78\x81\x71\x7b\x83\x72\x7b\x83\x73\x7d\ \x84\x72\x7c\x83\x75\x7f\x84\x74\x7c\x82\x00\x00\x00\x4f\x3b\x26\ \x57\x41\x2a\x50\x3c\x27\x52\x3e\x28\x26\x1c\x12\x2d\x22\x16\x29\ \x1f\x14\x2b\x21\x15\x3a\x2b\x1c\x34\x27\x19\x31\x24\x17\x35\x28\ \x19\x29\x1f\x14\x28\x1e\x13\x29\x1f\x13\x29\x1e\x13\x24\x1b\x11\ \x23\x1a\x10\x27\x1d\x12\x2b\x20\x15\x31\x25\x18\x36\x28\x1a\x32\ \x25\x18\x2c\x21\x15\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x2b\x20\ \x14\x33\x26\x19\x30\x24\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x15\ \x29\x1f\x13\x2b\x20\x15\x2e\x22\x17\x30\x24\x17\x31\x25\x18\x27\ \x1e\x13\x34\x27\x19\x33\x26\x19\x28\x1e\x13\x28\x1e\x13\x2a\x20\ \x14\x2b\x1f\x14\x2a\x20\x14\x26\x1c\x12\x28\x1e\x13\x35\x28\x1a\ \x30\x24\x17\x2e\x22\x16\x35\x28\x1a\x2a\x20\x14\x27\x1d\x12\x21\ \x19\x10\x23\x1a\x11\x28\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x3a\x2b\ \x1c\x40\x30\x1e\x3b\x2d\x1c\x39\x2b\x1c\x43\x32\x21\x3e\x2e\x1e\ \x3a\x2c\x1c\x34\x27\x19\x34\x27\x19\x2b\x20\x14\x1e\x16\x0e\x2a\ \x1f\x14\x29\x1f\x14\x29\x1f\x14\x26\x1d\x13\x26\x1c\x12\x27\x1d\ \x12\x2a\x1f\x14\x2f\x23\x16\x32\x25\x18\x3b\x2c\x1c\x3e\x2e\x1d\ \x36\x28\x1a\x33\x26\x18\x29\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x36\ \x29\x1a\x3b\x2c\x1c\x42\x32\x20\x3c\x2d\x1d\x38\x2a\x1b\x37\x2a\ \x1a\x33\x26\x18\x30\x24\x17\x2b\x20\x14\x2a\x20\x14\x38\x2a\x1b\ \x36\x28\x1a\x3b\x2c\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x3f\x30\x1e\x3b\ \x2c\x1c\x34\x27\x19\x30\x24\x17\x32\x25\x18\x38\x29\x1b\x43\x32\ \x21\x37\x29\x1a\x30\x24\x17\x2d\x22\x15\x2a\x20\x14\x2d\x22\x15\ \x32\x25\x18\x35\x27\x1a\x36\x28\x1a\x32\x26\x18\x31\x24\x17\x2d\ \x22\x16\x32\x26\x18\x37\x2a\x1b\x3c\x2d\x1d\x40\x31\x1f\x33\x27\ \x19\x2f\x23\x17\x32\x25\x18\x36\x29\x1b\x37\x29\x1a\x37\x29\x1a\ \x34\x27\x19\x21\x20\x20\x2e\x31\x33\x41\x44\x46\x48\x4b\x4e\x3a\ \x3d\x41\x41\x45\x49\x64\x6c\x70\x67\x70\x76\x52\x5a\x61\x46\x4e\ \x57\x66\x6f\x78\x6b\x74\x7e\x6e\x76\x80\x49\x52\x5f\x45\x51\x5c\ \x6a\x76\x7f\x66\x73\x7b\x69\x75\x7d\x68\x75\x7d\x69\x75\x7d\x6a\ \x76\x7e\x6a\x75\x7e\x6b\x75\x7f\x6d\x77\x81\x6e\x77\x81\x70\x79\ \x82\x71\x7a\x83\x72\x7b\x84\x73\x7c\x82\x71\x7b\x82\x73\x7d\x84\ \x73\x7d\x83\x76\x7e\x85\x00\x00\x00\x3f\x2f\x1f\x45\x34\x21\x55\ \x3f\x29\x53\x3e\x28\x2e\x22\x16\x31\x25\x18\x26\x1d\x13\x2b\x21\ \x14\x38\x2a\x1b\x3a\x2b\x1c\x38\x2b\x1b\x36\x29\x1a\x31\x25\x18\ \x26\x1c\x12\x28\x1f\x14\x21\x18\x0f\x20\x18\x0f\x23\x1a\x11\x26\ \x1d\x13\x26\x1d\x13\x2a\x20\x14\x33\x26\x18\x2e\x22\x16\x2a\x20\ \x15\x28\x1e\x13\x28\x1f\x13\x28\x1f\x13\x2f\x24\x16\x32\x26\x18\ \x2c\x21\x15\x2c\x21\x15\x2e\x23\x17\x2a\x20\x14\x28\x1e\x13\x26\ \x1d\x13\x2b\x20\x15\x2f\x24\x17\x38\x2a\x1b\x30\x24\x17\x3b\x2c\ \x1d\x40\x2f\x1f\x33\x25\x18\x29\x1e\x14\x28\x1e\x14\x28\x1e\x13\ \x25\x1c\x11\x22\x19\x10\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\x30\ \x24\x17\x32\x26\x18\x2d\x22\x15\x26\x1c\x12\x24\x1b\x10\x2a\x1f\ \x14\x28\x1e\x14\x2e\x23\x16\x2b\x20\x15\x32\x25\x18\x34\x27\x19\ \x2f\x24\x16\x2d\x21\x16\x37\x29\x1a\x36\x28\x1a\x35\x28\x19\x35\ \x28\x1a\x36\x29\x1a\x2a\x1f\x14\x21\x19\x10\x28\x1e\x14\x26\x1c\ \x12\x22\x19\x11\x1e\x17\x0f\x25\x1b\x11\x23\x1a\x10\x27\x1d\x13\ \x2c\x21\x15\x30\x24\x17\x3e\x2e\x1d\x42\x32\x20\x3b\x2c\x1c\x3b\ \x2c\x1c\x2f\x23\x17\x33\x27\x19\x35\x28\x1a\x32\x25\x18\x3c\x2d\ \x1d\x3d\x2e\x1e\x3d\x2d\x1e\x3d\x2e\x1d\x3c\x2d\x1c\x39\x2b\x1b\ \x33\x26\x19\x31\x25\x17\x29\x1e\x13\x30\x24\x17\x34\x27\x19\x33\ \x27\x18\x38\x2a\x1c\x37\x2a\x1a\x42\x32\x20\x3d\x2d\x1e\x33\x26\ \x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x30\x24\x17\ \x30\x24\x16\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\x2a\x20\x14\x2c\ \x21\x15\x2e\x23\x16\x30\x24\x16\x2d\x21\x15\x2f\x24\x17\x35\x28\ \x1a\x35\x28\x19\x37\x29\x1b\x3c\x2d\x1d\x34\x27\x19\x30\x24\x17\ \x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x2e\x22\x16\x29\x20\x14\x30\ \x30\x2e\x1c\x1e\x21\x42\x45\x47\x48\x4d\x50\x4a\x4f\x52\x40\x44\ \x48\x55\x5c\x62\x67\x70\x77\x67\x6f\x77\x3e\x45\x4f\x51\x59\x62\ \x68\x72\x7a\x6b\x76\x7f\x66\x70\x7a\x38\x43\x4f\x4e\x5a\x64\x6a\ \x76\x7f\x69\x75\x7d\x6b\x77\x7f\x69\x74\x7c\x68\x74\x7c\x69\x75\ \x7c\x6a\x75\x7d\x6e\x78\x80\x6f\x79\x81\x70\x79\x83\x71\x7a\x83\ \x74\x7d\x86\x72\x7a\x83\x71\x7b\x82\x72\x7c\x83\x74\x7c\x84\x77\ \x7f\x85\x00\x00\x00\x3e\x2e\x1e\x53\x3e\x29\x65\x4c\x32\x55\x40\ \x29\x2c\x21\x15\x24\x1b\x12\x1e\x17\x0f\x38\x2a\x1b\x33\x26\x18\ \x37\x29\x1b\x39\x2b\x1c\x2f\x23\x17\x32\x26\x18\x2c\x21\x15\x2c\ \x21\x16\x27\x1e\x13\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x27\x1d\ \x12\x2a\x20\x14\x2d\x22\x16\x27\x1d\x13\x20\x18\x0f\x22\x19\x10\ \x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x32\ \x25\x18\x2e\x23\x16\x29\x1f\x14\x28\x1e\x13\x24\x1b\x12\x2e\x23\ \x16\x31\x25\x17\x30\x24\x17\x3a\x2b\x1c\x42\x31\x20\x3a\x2b\x1c\ \x36\x28\x19\x2e\x22\x16\x2d\x22\x16\x2f\x23\x17\x2e\x22\x16\x2c\ \x21\x15\x32\x25\x18\x2f\x23\x17\x2c\x21\x15\x2c\x21\x15\x34\x27\ \x19\x32\x25\x18\x2b\x20\x15\x27\x1d\x12\x27\x1e\x13\x22\x19\x10\ \x2c\x20\x15\x2b\x21\x15\x33\x26\x19\x34\x27\x19\x2c\x22\x15\x2e\ \x23\x16\x33\x26\x18\x31\x25\x18\x2e\x22\x16\x30\x24\x17\x32\x26\ \x18\x2d\x22\x16\x2b\x20\x14\x2f\x23\x16\x25\x1c\x12\x24\x1b\x12\ \x23\x1b\x11\x2b\x20\x14\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2f\ \x24\x17\x3a\x2b\x1c\x47\x35\x22\x36\x28\x19\x42\x31\x20\x3a\x2b\ \x1c\x43\x32\x20\x3d\x2d\x1d\x33\x26\x18\x31\x25\x18\x34\x26\x19\ \x3c\x2d\x1d\x3f\x2f\x1f\x40\x30\x1f\x41\x31\x1f\x3b\x2c\x1c\x3b\ \x2c\x1c\x2f\x23\x16\x2c\x21\x15\x32\x25\x18\x35\x28\x19\x35\x28\ \x1a\x39\x2a\x1b\x42\x32\x20\x47\x34\x22\x3a\x2c\x1d\x31\x25\x17\ \x30\x23\x17\x31\x25\x17\x2c\x21\x15\x2a\x20\x14\x33\x26\x18\x37\ \x29\x1b\x2f\x23\x17\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x29\x1f\ \x14\x2d\x22\x15\x2a\x20\x14\x32\x26\x18\x2f\x24\x17\x31\x25\x18\ \x2a\x20\x14\x36\x28\x1a\x2f\x23\x17\x27\x1d\x13\x2b\x21\x15\x28\ \x1e\x14\x30\x25\x18\x39\x2b\x1b\x32\x26\x19\x33\x30\x2e\x26\x28\ \x2a\x2d\x31\x35\x49\x4e\x52\x50\x56\x5a\x41\x48\x4c\x3b\x42\x49\ \x62\x6b\x71\x69\x73\x7a\x63\x6b\x74\x3b\x43\x4d\x60\x69\x71\x6c\ \x76\x7e\x6c\x77\x80\x61\x6c\x75\x34\x3f\x4c\x5b\x64\x71\x68\x74\ \x7d\x6a\x75\x7d\x68\x74\x7b\x69\x76\x7d\x69\x75\x7d\x68\x73\x7b\ \x6c\x76\x7e\x6e\x77\x80\x6f\x78\x81\x70\x79\x82\x72\x7b\x84\x73\ \x7d\x85\x71\x7a\x82\x74\x7e\x85\x76\x7f\x86\x77\x7e\x85\x00\x00\ \x00\x3b\x2c\x1d\x52\x3e\x28\x65\x4c\x31\x59\x42\x2b\x2e\x23\x16\ \x2a\x20\x14\x23\x1a\x10\x36\x29\x1b\x31\x25\x18\x34\x27\x19\x3d\ \x2e\x1e\x38\x2a\x1b\x30\x24\x17\x32\x26\x19\x2d\x22\x15\x2b\x20\ \x14\x2e\x23\x16\x28\x1e\x13\x24\x1b\x12\x21\x18\x10\x22\x1a\x10\ \x26\x1d\x12\x23\x1a\x11\x21\x19\x10\x25\x1c\x11\x2c\x21\x14\x2a\ \x20\x14\x25\x1c\x12\x2d\x22\x15\x31\x25\x18\x32\x25\x18\x36\x28\ \x1a\x39\x2b\x1b\x33\x27\x19\x2f\x23\x17\x32\x25\x18\x31\x24\x17\ \x33\x26\x19\x3b\x2c\x1c\x46\x34\x21\x39\x2b\x1c\x31\x25\x17\x2d\ \x22\x16\x2d\x22\x16\x34\x27\x19\x33\x27\x18\x30\x24\x17\x31\x25\ \x18\x32\x26\x18\x28\x1e\x13\x26\x1c\x12\x2a\x20\x14\x2f\x23\x17\ \x33\x26\x18\x2e\x22\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x12\x29\ \x1f\x14\x29\x1f\x14\x2e\x23\x16\x2d\x22\x16\x36\x28\x1a\x31\x25\ \x17\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\ \x32\x25\x18\x34\x27\x18\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2f\ \x24\x16\x30\x24\x17\x31\x25\x18\x2f\x23\x16\x30\x25\x17\x3b\x2c\ \x1c\x3d\x2e\x1d\x2a\x20\x14\x36\x28\x1a\x33\x26\x18\x3d\x2d\x1d\ \x3c\x2d\x1d\x37\x29\x1a\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1b\x3e\ \x2f\x1e\x40\x30\x1f\x47\x34\x22\x42\x32\x20\x3e\x2e\x1e\x33\x26\ \x19\x33\x26\x19\x3c\x2c\x1d\x37\x29\x1a\x2f\x23\x16\x34\x26\x19\ \x39\x2a\x1c\x41\x31\x1f\x3d\x2e\x1e\x30\x24\x17\x38\x2a\x1b\x3d\ \x2d\x1c\x34\x27\x19\x2f\x23\x17\x2c\x21\x15\x30\x25\x18\x36\x28\ \x1a\x38\x2a\x1b\x30\x24\x17\x2b\x20\x15\x2b\x21\x15\x2d\x22\x16\ \x30\x24\x17\x32\x25\x18\x30\x25\x17\x37\x29\x1a\x2d\x21\x16\x35\ \x28\x19\x2f\x23\x16\x30\x24\x17\x35\x28\x1a\x32\x25\x18\x3d\x2e\ \x1d\x3e\x2f\x1e\x40\x31\x20\x3a\x35\x2f\x2f\x32\x33\x20\x24\x27\ \x44\x4a\x4d\x50\x57\x5b\x54\x5a\x60\x3f\x46\x4c\x4c\x53\x59\x69\ \x72\x79\x6e\x78\x7e\x3f\x47\x4e\x2e\x33\x3b\x66\x70\x78\x6a\x76\ \x7e\x67\x73\x7b\x55\x61\x6c\x36\x3f\x4b\x64\x6f\x79\x68\x75\x7d\ \x69\x75\x7d\x6a\x76\x7e\x6a\x75\x7d\x6b\x76\x7d\x6e\x78\x80\x6f\ \x78\x82\x70\x79\x81\x70\x79\x82\x71\x7a\x83\x74\x7e\x85\x74\x7e\ \x85\x72\x7c\x83\x76\x7f\x87\x76\x7f\x86\x00\x00\x00\x3e\x2f\x1e\ \x4b\x38\x24\x5f\x47\x2d\x5b\x44\x2c\x31\x25\x18\x2a\x1f\x15\x1d\ \x15\x0d\x21\x19\x10\x2d\x22\x16\x31\x25\x17\x3e\x2e\x1e\x37\x29\ \x1a\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x30\x24\x17\ \x2b\x20\x15\x31\x25\x18\x31\x25\x18\x2a\x1f\x14\x26\x1d\x12\x28\ \x1e\x14\x2a\x20\x14\x31\x24\x17\x36\x28\x1a\x29\x1f\x14\x23\x1b\ \x11\x2b\x21\x15\x31\x24\x17\x33\x26\x18\x42\x31\x20\x40\x31\x1f\ \x36\x29\x1a\x31\x25\x17\x2e\x22\x16\x2f\x23\x17\x37\x29\x1b\x35\ \x28\x1a\x39\x2b\x1b\x3a\x2c\x1c\x30\x24\x17\x28\x1e\x13\x2a\x20\ \x14\x35\x28\x19\x35\x27\x19\x2f\x23\x17\x2b\x20\x15\x29\x1f\x14\ \x26\x1d\x13\x22\x19\x10\x20\x18\x0f\x29\x1f\x13\x33\x27\x19\x2d\ \x22\x16\x30\x24\x18\x27\x1d\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ \x14\x34\x27\x18\x34\x27\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\x17\ \x39\x2b\x1c\x30\x24\x17\x2b\x1f\x14\x2f\x23\x16\x37\x29\x1a\x3d\ \x2e\x1d\x3b\x2d\x1c\x39\x2b\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x36\x28\ \x1a\x31\x25\x18\x33\x26\x19\x3b\x2c\x1c\x3a\x2b\x1c\x31\x25\x18\ \x2b\x21\x15\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x34\x28\x19\x35\ \x28\x1a\x30\x24\x17\x2f\x24\x17\x32\x26\x18\x37\x29\x1a\x3b\x2b\ \x1c\x42\x31\x20\x40\x30\x1f\x34\x27\x19\x30\x24\x17\x36\x29\x1a\ \x3c\x2c\x1c\x35\x27\x19\x33\x26\x19\x34\x27\x1a\x34\x27\x19\x40\ \x30\x1e\x3d\x2e\x1d\x31\x25\x17\x39\x2b\x1b\x41\x30\x1f\x33\x26\ \x19\x2f\x23\x17\x2a\x20\x14\x2d\x22\x16\x39\x2a\x1b\x3d\x2d\x1d\ \x35\x28\x19\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x31\x24\x18\x35\ \x28\x19\x35\x28\x19\x33\x26\x19\x3c\x2c\x1d\x3e\x2e\x1e\x34\x27\ \x19\x34\x27\x19\x33\x27\x18\x33\x26\x18\x36\x28\x1a\x37\x29\x1a\ \x3f\x30\x20\x35\x30\x2a\x31\x33\x35\x31\x36\x39\x27\x2c\x30\x50\ \x58\x5c\x54\x5b\x60\x50\x56\x5b\x41\x47\x4c\x5b\x64\x6b\x6b\x76\ \x7c\x28\x30\x35\x32\x38\x3d\x44\x4d\x55\x68\x75\x7d\x6a\x76\x7e\ \x69\x74\x7d\x4d\x57\x63\x3c\x47\x52\x64\x72\x7a\x69\x76\x7e\x6c\ \x78\x80\x6c\x77\x7f\x6b\x77\x7e\x6b\x77\x7e\x6e\x79\x81\x70\x7a\ \x82\x6f\x78\x82\x71\x7a\x81\x70\x7a\x81\x72\x7d\x83\x76\x80\x88\ \x75\x7f\x86\x77\x80\x87\x00\x00\x00\x3b\x2d\x1d\x4c\x39\x25\x60\ \x48\x2e\x51\x3c\x27\x2d\x21\x15\x2e\x23\x17\x17\x11\x0a\x1f\x17\ \x0f\x28\x1e\x14\x29\x1f\x13\x2f\x23\x16\x2c\x21\x15\x23\x1b\x11\ \x26\x1d\x12\x2a\x20\x14\x29\x1f\x13\x2d\x23\x16\x31\x25\x18\x3a\ \x2c\x1c\x3e\x2e\x1d\x36\x29\x1a\x2b\x20\x15\x29\x1f\x14\x25\x1c\ \x12\x2f\x23\x17\x32\x26\x18\x2a\x1f\x14\x29\x1f\x14\x2b\x20\x15\ \x36\x29\x1a\x37\x29\x1a\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x36\ \x28\x1a\x2f\x24\x17\x31\x25\x17\x2e\x22\x16\x32\x25\x18\x36\x29\ \x1a\x3d\x2e\x1d\x32\x25\x18\x2b\x20\x15\x2d\x21\x15\x32\x25\x18\ \x33\x26\x19\x2d\x21\x15\x2f\x24\x17\x2c\x21\x15\x25\x1c\x12\x21\ \x19\x10\x28\x1e\x13\x32\x25\x18\x2a\x20\x14\x31\x25\x18\x29\x1f\ \x14\x27\x1e\x12\x2d\x22\x16\x30\x24\x17\x2c\x21\x15\x32\x25\x17\ \x31\x25\x18\x2f\x23\x17\x31\x25\x17\x3e\x2f\x1d\x3a\x2b\x1c\x28\ \x1e\x13\x29\x1f\x13\x2e\x23\x16\x34\x27\x19\x3b\x2c\x1c\x38\x29\ \x1b\x3a\x2c\x1c\x36\x28\x1a\x36\x28\x1a\x28\x1e\x13\x2e\x23\x16\ \x32\x26\x18\x38\x29\x1b\x32\x26\x18\x2f\x24\x17\x34\x28\x19\x2e\ \x22\x16\x28\x1e\x13\x36\x29\x1a\x37\x2a\x1a\x33\x26\x19\x2d\x22\ \x16\x35\x28\x19\x35\x28\x1a\x30\x24\x17\x3a\x2b\x1b\x3a\x2b\x1c\ \x38\x2a\x1b\x38\x29\x1a\x36\x29\x1a\x3b\x2c\x1c\x39\x2a\x1a\x2f\ \x23\x16\x2d\x21\x16\x2b\x20\x15\x2e\x23\x16\x3c\x2d\x1c\x31\x25\ \x18\x2f\x23\x16\x37\x29\x1a\x3d\x2d\x1d\x37\x29\x1b\x31\x25\x17\ \x2f\x23\x17\x35\x27\x1a\x38\x2a\x1b\x38\x2b\x1b\x2e\x23\x16\x2d\ \x22\x16\x2b\x20\x15\x30\x24\x17\x2d\x21\x15\x35\x28\x1a\x35\x27\ \x19\x32\x25\x18\x39\x2b\x1b\x3e\x2e\x1e\x38\x2a\x1b\x32\x25\x18\ \x2d\x22\x16\x2a\x20\x15\x2d\x21\x16\x31\x25\x17\x33\x27\x1a\x35\ \x2f\x28\x39\x3a\x38\x37\x3c\x3e\x2d\x33\x37\x35\x3b\x3f\x3d\x42\ \x47\x54\x5a\x5e\x49\x4f\x55\x4e\x57\x5e\x2f\x37\x3a\x27\x2e\x31\ \x36\x3e\x42\x2f\x36\x3d\x54\x5e\x67\x69\x76\x7e\x66\x73\x7b\x62\ \x6e\x76\x3e\x47\x51\x48\x53\x5c\x6a\x77\x7f\x6a\x77\x7f\x6c\x77\ \x7f\x6c\x77\x7f\x6b\x76\x7e\x6e\x78\x80\x6e\x78\x7f\x68\x72\x7a\ \x68\x73\x7b\x6c\x78\x7f\x70\x7d\x83\x75\x7f\x86\x76\x80\x87\x77\ \x81\x88\x00\x00\x00\x3c\x2d\x1d\x47\x36\x22\x5b\x44\x2c\x4c\x38\ \x24\x2c\x20\x15\x1e\x17\x0e\x1b\x15\x0d\x23\x1b\x11\x2a\x1f\x15\ \x2e\x23\x16\x2d\x22\x16\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\ \x1c\x12\x26\x1c\x12\x2a\x20\x14\x32\x26\x18\x37\x29\x1a\x3b\x2c\ \x1d\x32\x26\x18\x29\x1f\x14\x24\x1c\x11\x25\x1b\x12\x2e\x22\x15\ \x2a\x20\x15\x2b\x20\x15\x2c\x21\x15\x2b\x20\x14\x33\x26\x19\x32\ \x26\x18\x2a\x1f\x14\x2b\x21\x15\x32\x25\x18\x3d\x2d\x1d\x35\x28\ \x19\x36\x28\x1a\x31\x24\x17\x39\x2a\x1b\x40\x30\x1f\x3e\x2f\x1e\ \x38\x2a\x1b\x30\x24\x17\x2b\x21\x15\x2a\x20\x14\x2d\x22\x16\x29\ \x1e\x13\x2c\x20\x15\x31\x24\x18\x30\x24\x17\x2e\x23\x16\x29\x1f\ \x14\x2e\x23\x16\x33\x27\x19\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\ \x30\x24\x17\x2b\x21\x15\x25\x1c\x12\x2d\x22\x15\x36\x28\x1a\x31\ \x25\x18\x37\x29\x1a\x3d\x2e\x1d\x34\x27\x19\x2c\x21\x15\x2b\x20\ \x14\x29\x20\x14\x2f\x23\x17\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\ \x36\x28\x1a\x3a\x2c\x1b\x25\x1c\x12\x29\x1e\x14\x32\x25\x17\x2a\ \x20\x15\x2e\x23\x16\x29\x1f\x14\x32\x26\x18\x2e\x23\x16\x2e\x22\ \x16\x34\x27\x19\x2f\x24\x17\x2d\x22\x15\x31\x25\x17\x3a\x2b\x1b\ \x39\x2b\x1b\x36\x28\x1a\x39\x2a\x1b\x30\x23\x17\x33\x26\x18\x35\ \x28\x19\x3a\x2c\x1c\x35\x28\x19\x30\x24\x17\x2e\x22\x16\x2e\x22\ \x16\x2e\x23\x16\x27\x1d\x13\x36\x28\x1a\x29\x1e\x13\x27\x1d\x13\ \x2b\x20\x14\x2f\x24\x17\x2f\x23\x16\x2a\x20\x15\x2e\x22\x16\x31\ \x25\x18\x2c\x21\x15\x2b\x21\x15\x2a\x20\x14\x27\x1d\x13\x27\x1d\ \x13\x2a\x1f\x14\x27\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\ \x30\x25\x17\x3b\x2d\x1d\x3a\x2c\x1c\x39\x2a\x1c\x33\x26\x19\x36\ \x29\x1a\x2e\x23\x17\x2c\x21\x15\x2b\x21\x16\x31\x29\x20\x34\x38\ \x39\x3a\x3f\x43\x39\x3f\x42\x17\x1d\x20\x2c\x2f\x33\x5a\x61\x66\ \x64\x6c\x71\x39\x40\x47\x02\x02\x03\x35\x3a\x3e\x21\x27\x2c\x61\ \x69\x6d\x32\x3a\x42\x5f\x69\x71\x68\x76\x7e\x68\x75\x7d\x5c\x67\ \x70\x3b\x44\x4e\x52\x5e\x67\x6b\x77\x81\x6e\x7a\x83\x6e\x7a\x82\ \x6e\x79\x81\x72\x7c\x85\x61\x6b\x73\x3b\x42\x4b\x33\x3c\x43\x45\ \x52\x59\x64\x71\x77\x71\x7c\x83\x75\x7f\x86\x77\x81\x88\x00\x00\ \x00\x2d\x22\x16\x3f\x2e\x1e\x51\x3c\x27\x41\x31\x1f\x2d\x22\x16\ \x17\x12\x0b\x1b\x15\x0d\x25\x1d\x12\x2d\x22\x15\x2e\x23\x17\x30\ \x23\x17\x2b\x20\x14\x29\x1f\x14\x27\x1d\x13\x24\x1b\x11\x24\x1b\ \x11\x29\x1f\x13\x27\x1d\x12\x32\x25\x18\x38\x2a\x1b\x30\x24\x17\ \x25\x1c\x12\x23\x1a\x10\x22\x19\x10\x23\x1a\x11\x23\x1a\x11\x2b\ \x20\x15\x2e\x23\x16\x28\x1e\x13\x29\x1e\x13\x28\x1e\x13\x24\x1b\ \x11\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x31\x25\x17\x2d\x22\x15\ \x27\x1d\x13\x32\x25\x18\x39\x2a\x1b\x37\x29\x1b\x33\x26\x19\x30\ \x24\x17\x2c\x21\x15\x27\x1d\x13\x2b\x20\x14\x23\x19\x10\x23\x1a\ \x11\x27\x1e\x13\x32\x25\x18\x29\x1e\x13\x27\x1d\x13\x27\x1d\x12\ \x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x35\x27\x19\x33\ \x27\x19\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x37\x29\x1a\x3c\x2d\ \x1d\x33\x26\x18\x26\x1d\x13\x27\x1d\x13\x28\x1e\x13\x23\x1a\x11\ \x23\x1a\x11\x2a\x1f\x14\x2d\x21\x16\x36\x29\x1a\x34\x28\x19\x37\ \x2a\x1b\x32\x25\x18\x2d\x22\x16\x36\x29\x1b\x3a\x2b\x1c\x3c\x2d\ \x1d\x34\x27\x19\x32\x26\x18\x39\x2b\x1b\x32\x25\x18\x34\x27\x19\ \x2d\x22\x16\x2b\x21\x15\x2c\x20\x15\x31\x24\x17\x35\x28\x19\x35\ \x27\x19\x31\x24\x17\x31\x24\x17\x36\x29\x1a\x30\x25\x17\x3a\x2c\ \x1c\x3a\x2c\x1c\x3c\x2d\x1c\x39\x2b\x1b\x38\x2a\x1b\x38\x2a\x1b\ \x28\x1e\x13\x2d\x22\x16\x22\x1a\x11\x20\x18\x0f\x21\x19\x10\x27\ \x1d\x12\x26\x1c\x12\x23\x1a\x11\x29\x1f\x14\x28\x1e\x13\x28\x1e\ \x13\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x1e\x17\x0e\x26\x1c\x12\ \x28\x1e\x13\x26\x1c\x12\x2e\x23\x16\x2e\x22\x16\x34\x27\x18\x3e\ \x2f\x1e\x39\x2a\x1b\x35\x28\x1a\x31\x25\x17\x2c\x21\x15\x2e\x22\ \x17\x31\x25\x18\x30\x24\x17\x36\x2c\x22\x2a\x2c\x30\x39\x3d\x42\ \x38\x3d\x41\x11\x13\x15\x1a\x1e\x21\x4a\x50\x56\x65\x6e\x74\x5c\ \x64\x6c\x13\x15\x17\x02\x03\x04\x3d\x43\x46\x66\x71\x75\x58\x62\ \x67\x35\x3f\x47\x62\x6e\x77\x67\x75\x7d\x68\x75\x7d\x55\x61\x6a\ \x3d\x47\x51\x5c\x68\x73\x6c\x78\x82\x6c\x77\x80\x6c\x77\x80\x6f\ \x79\x82\x67\x71\x78\x50\x59\x62\x30\x36\x3d\x16\x18\x1f\x29\x2d\ \x36\x5f\x68\x70\x74\x80\x86\x77\x83\x8a\x00\x00\x00\x2f\x24\x17\ \x3e\x2f\x1e\x59\x42\x2c\x4e\x3a\x25\x2a\x20\x14\x16\x11\x0b\x1a\ \x14\x0c\x2f\x22\x16\x35\x28\x1a\x37\x29\x1b\x35\x27\x1a\x36\x28\ \x1a\x33\x26\x19\x2f\x23\x17\x22\x19\x10\x1e\x17\x0e\x23\x1a\x10\ \x21\x19\x10\x29\x1f\x14\x2f\x23\x17\x2d\x21\x15\x2b\x20\x14\x24\ \x1b\x11\x20\x18\x0f\x23\x1a\x11\x25\x1b\x12\x2a\x1f\x14\x25\x1c\ \x12\x2b\x20\x14\x28\x1e\x14\x28\x1e\x13\x2b\x20\x15\x28\x1d\x13\ \x27\x1d\x13\x2d\x21\x16\x31\x25\x17\x3a\x2c\x1c\x33\x26\x18\x35\ \x27\x19\x31\x25\x17\x34\x27\x19\x33\x26\x19\x2f\x24\x17\x23\x1b\ \x11\x24\x1b\x11\x25\x1b\x11\x22\x19\x10\x25\x1b\x11\x20\x17\x0e\ \x1e\x16\x0e\x1e\x17\x0f\x25\x1c\x11\x2b\x20\x15\x2f\x23\x16\x2f\ \x23\x17\x30\x24\x17\x2d\x22\x16\x2d\x22\x16\x34\x26\x19\x34\x27\ \x19\x32\x25\x18\x28\x1e\x13\x2f\x23\x17\x32\x25\x18\x36\x28\x1a\ \x27\x1e\x13\x25\x1c\x12\x28\x1f\x13\x1f\x18\x0e\x20\x18\x0f\x24\ \x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\x22\x16\x3a\x2c\x1c\x38\x2a\ \x1b\x31\x25\x17\x37\x29\x1b\x36\x29\x1a\x3c\x2d\x1d\x40\x30\x1f\ \x40\x31\x1f\x3d\x2e\x1e\x38\x2b\x1b\x39\x2a\x1b\x30\x23\x17\x2f\ \x24\x17\x33\x27\x18\x3b\x2c\x1c\x3d\x2e\x1d\x36\x28\x1a\x33\x25\ \x18\x34\x27\x18\x2d\x22\x16\x2b\x21\x15\x29\x1f\x14\x2a\x20\x14\ \x2f\x23\x16\x2e\x22\x16\x2f\x23\x16\x2b\x20\x14\x1e\x17\x0e\x2a\ \x1f\x14\x25\x1c\x12\x26\x1c\x12\x22\x19\x10\x2a\x1f\x14\x24\x1a\ \x11\x25\x1c\x11\x28\x1f\x14\x2a\x1f\x14\x28\x1e\x13\x27\x1d\x13\ \x28\x1e\x13\x29\x1f\x14\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x2c\ \x21\x15\x2e\x23\x16\x2f\x23\x16\x33\x27\x18\x43\x32\x20\x35\x28\ \x1a\x2f\x23\x16\x2a\x1f\x14\x21\x19\x10\x24\x1b\x11\x29\x1f\x13\ \x27\x1d\x13\x3d\x31\x25\x19\x1b\x1e\x37\x3a\x3e\x30\x34\x38\x01\ \x03\x03\x0d\x0f\x11\x32\x39\x3c\x68\x74\x7b\x4d\x58\x60\x15\x18\ \x1b\x00\x00\x00\x58\x60\x65\x69\x76\x7a\x6a\x75\x7b\x46\x51\x58\ \x3b\x45\x4e\x66\x73\x7a\x68\x76\x7d\x68\x75\x7d\x4f\x5a\x62\x40\ \x4a\x55\x60\x6b\x74\x6d\x78\x81\x6f\x7a\x82\x70\x7c\x84\x72\x7c\ \x84\x73\x7d\x84\x72\x7e\x83\x56\x5f\x66\x25\x26\x2f\x26\x2a\x34\ \x60\x6b\x73\x75\x81\x87\x00\x00\x00\x2f\x24\x17\x32\x26\x17\x5b\ \x44\x2c\x48\x35\x22\x36\x28\x1a\x20\x17\x0f\x13\x0f\x09\x2d\x22\ \x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ \x2b\x21\x15\x27\x1c\x12\x22\x1a\x10\x27\x1e\x13\x21\x1a\x0f\x2a\ \x20\x14\x2c\x22\x15\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x2b\x20\ \x14\x2e\x22\x16\x2a\x1f\x14\x24\x1b\x11\x19\x13\x0c\x22\x1a\x10\ \x22\x1a\x10\x26\x1c\x13\x29\x1f\x14\x2c\x21\x15\x2c\x21\x15\x26\ \x1c\x12\x2b\x20\x15\x2d\x22\x15\x2a\x20\x14\x2e\x22\x16\x2d\x21\ \x15\x24\x1b\x11\x27\x1d\x13\x25\x1d\x12\x26\x1d\x12\x24\x1c\x11\ \x23\x1a\x11\x2d\x22\x16\x2c\x21\x15\x29\x1e\x14\x21\x18\x10\x2a\ \x20\x14\x2a\x20\x14\x2c\x22\x15\x30\x23\x17\x2b\x21\x15\x29\x1f\ \x14\x28\x1e\x14\x27\x1e\x13\x2c\x21\x15\x30\x24\x17\x38\x2a\x1b\ \x33\x27\x19\x2f\x23\x16\x2e\x23\x16\x3a\x2b\x1c\x3c\x2c\x1d\x2c\ \x21\x15\x29\x1f\x14\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ \x11\x2e\x22\x16\x29\x1f\x13\x3b\x2c\x1d\x3f\x2f\x1f\x30\x24\x17\ \x36\x28\x1a\x3a\x2c\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x42\x31\x1f\x44\ \x33\x21\x3e\x2e\x1d\x3b\x2d\x1c\x36\x28\x19\x36\x28\x1a\x36\x28\ \x1a\x42\x32\x20\x43\x32\x20\x3b\x2d\x1d\x35\x29\x1a\x31\x24\x18\ \x32\x25\x18\x27\x1d\x13\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x21\ \x19\x10\x1c\x16\x0d\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x24\x1b\ \x11\x20\x19\x10\x24\x1b\x11\x24\x1b\x12\x26\x1c\x12\x2a\x20\x14\ \x2c\x21\x15\x2a\x20\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x12\x28\ \x1e\x13\x2b\x21\x15\x2c\x21\x15\x30\x24\x17\x2d\x21\x15\x31\x25\ \x18\x2e\x23\x16\x29\x1f\x14\x3a\x2c\x1c\x2d\x23\x15\x29\x1f\x14\ \x2a\x1f\x14\x26\x1c\x12\x29\x1e\x14\x24\x1b\x12\x2b\x20\x15\x31\ \x28\x1d\x23\x25\x28\x24\x27\x2a\x30\x34\x36\x00\x00\x00\x13\x15\ \x17\x35\x3b\x41\x4f\x5c\x62\x2b\x34\x3a\x27\x2d\x31\x01\x02\x02\ \x42\x4b\x50\x68\x75\x7c\x69\x77\x7d\x66\x73\x7a\x3a\x44\x4d\x46\ \x51\x5a\x68\x76\x7d\x6a\x78\x7f\x66\x71\x7a\x49\x52\x5c\x45\x4d\ \x58\x65\x6f\x78\x72\x7d\x86\x71\x7b\x83\x71\x7b\x83\x72\x7d\x83\ \x73\x7e\x83\x75\x80\x84\x66\x6e\x75\x38\x3b\x45\x31\x35\x3f\x69\ \x71\x7a\x00\x00\x00\x28\x1d\x12\x2d\x22\x15\x53\x3d\x28\x49\x37\ \x23\x3a\x2c\x1c\x1c\x15\x0e\x19\x13\x0c\x22\x19\x10\x3b\x2c\x1d\ \x42\x32\x21\x50\x3c\x28\x36\x29\x1a\x30\x23\x17\x2a\x1f\x15\x26\ \x1d\x12\x27\x1d\x13\x21\x19\x0f\x1f\x17\x0e\x29\x1f\x14\x2c\x22\ \x15\x2b\x21\x15\x2d\x22\x16\x28\x1f\x13\x27\x1e\x13\x2c\x21\x15\ \x28\x1d\x13\x28\x1e\x13\x17\x12\x0c\x1c\x16\x0e\x29\x1e\x13\x25\ \x1b\x12\x2a\x1f\x14\x29\x1f\x14\x21\x19\x10\x20\x18\x10\x21\x19\ \x10\x30\x24\x18\x30\x24\x17\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ \x2d\x22\x15\x22\x1a\x10\x28\x1f\x13\x2d\x22\x16\x2e\x22\x16\x2f\ \x23\x17\x2e\x22\x16\x36\x28\x1a\x2d\x21\x15\x2e\x23\x16\x35\x27\ \x1a\x39\x2a\x1b\x35\x28\x19\x28\x1f\x14\x21\x1a\x10\x26\x1c\x12\ \x29\x1f\x14\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x35\x27\x19\x2f\ \x23\x17\x2d\x21\x15\x30\x23\x17\x2b\x20\x14\x22\x1a\x10\x2a\x20\ \x14\x23\x1b\x11\x1c\x16\x0e\x21\x19\x10\x25\x1c\x12\x29\x1f\x14\ \x33\x26\x19\x34\x27\x19\x2f\x23\x16\x2d\x21\x15\x2d\x22\x15\x35\ \x28\x1a\x36\x28\x1a\x37\x29\x1b\x38\x2b\x1b\x3c\x2d\x1d\x37\x2a\ \x1a\x39\x2a\x1c\x39\x2b\x1c\x3b\x2d\x1c\x32\x26\x19\x3a\x2b\x1c\ \x3c\x2d\x1d\x3a\x2b\x1c\x36\x28\x1a\x2e\x23\x17\x2b\x20\x15\x26\ \x1d\x12\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0e\x1d\x16\x0e\x20\x18\ \x0f\x24\x1a\x11\x23\x1a\x10\x26\x1c\x12\x2a\x1f\x14\x28\x1e\x13\ \x30\x23\x17\x2c\x21\x15\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x28\ \x1e\x13\x26\x1d\x12\x22\x1a\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ \x11\x25\x1c\x11\x30\x24\x17\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\ \x29\x1e\x13\x2d\x22\x16\x29\x1f\x14\x2a\x1f\x14\x2d\x22\x16\x22\ \x1a\x10\x29\x1f\x14\x24\x1b\x11\x2f\x23\x16\x41\x34\x24\x2d\x30\ \x31\x20\x23\x26\x1d\x20\x21\x03\x03\x03\x20\x21\x24\x48\x50\x55\ \x1a\x1f\x24\x24\x28\x2c\x2c\x33\x36\x20\x23\x24\x33\x38\x3c\x51\ \x5b\x62\x69\x76\x7d\x66\x74\x7c\x5f\x6c\x74\x3b\x44\x4e\x50\x5b\ \x65\x6a\x77\x7f\x6b\x77\x7f\x65\x6f\x77\x47\x4f\x58\x4b\x55\x5f\ \x6b\x77\x7f\x72\x7c\x83\x71\x7b\x82\x73\x7d\x84\x73\x7e\x84\x75\ \x80\x84\x76\x80\x84\x6a\x73\x79\x36\x39\x42\x47\x4c\x55\x00\x00\ \x00\x35\x29\x1b\x2e\x23\x17\x5a\x43\x2c\x53\x3e\x28\x3d\x2e\x1d\ \x1d\x16\x0d\x1e\x16\x0e\x17\x11\x0b\x24\x1a\x11\x3c\x2c\x1d\x3d\ \x2e\x1e\x31\x25\x18\x35\x28\x1a\x2b\x20\x15\x2a\x1f\x14\x29\x1f\ \x14\x20\x18\x10\x1f\x17\x0f\x26\x1c\x13\x25\x1c\x12\x28\x1f\x14\ \x30\x24\x17\x30\x24\x17\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2b\ \x20\x15\x2e\x22\x16\x22\x19\x10\x22\x1a\x10\x27\x1d\x12\x31\x25\ \x18\x21\x19\x0f\x21\x19\x10\x1d\x16\x0e\x26\x1c\x12\x2d\x21\x15\ \x2d\x22\x16\x31\x26\x18\x33\x26\x18\x30\x23\x17\x2e\x23\x16\x31\ \x24\x17\x2f\x23\x17\x28\x1e\x13\x29\x1f\x13\x28\x1e\x13\x2d\x22\ \x16\x32\x25\x18\x30\x24\x17\x2c\x22\x15\x38\x2a\x1b\x30\x25\x17\ \x2e\x23\x16\x2b\x21\x15\x1c\x15\x0d\x24\x1b\x11\x29\x1e\x14\x2d\ \x21\x15\x26\x1b\x12\x26\x1c\x12\x2f\x24\x16\x37\x29\x1b\x2e\x22\ \x16\x24\x1b\x11\x25\x1c\x12\x26\x1c\x12\x2c\x21\x15\x2d\x22\x16\ \x25\x1c\x12\x21\x19\x10\x23\x1b\x11\x27\x1e\x13\x2b\x21\x15\x30\ \x23\x16\x3a\x2b\x1c\x33\x27\x19\x2c\x21\x14\x32\x26\x18\x33\x26\ \x19\x33\x26\x19\x30\x23\x17\x2d\x23\x17\x2d\x22\x16\x35\x28\x19\ \x3a\x2c\x1c\x3c\x2e\x1d\x35\x28\x1a\x2e\x22\x16\x34\x27\x19\x38\ \x2a\x1b\x3b\x2c\x1c\x3c\x2d\x1c\x3b\x2c\x1c\x29\x1e\x13\x2a\x1f\ \x14\x2b\x21\x15\x29\x1f\x14\x1f\x17\x0f\x21\x18\x0f\x28\x1e\x13\ \x20\x18\x0f\x29\x1e\x14\x2b\x20\x14\x23\x1a\x10\x24\x1a\x11\x2a\ \x20\x14\x2d\x22\x16\x2c\x21\x15\x30\x23\x16\x34\x27\x18\x2e\x22\ \x16\x2d\x22\x16\x2a\x1f\x14\x27\x1d\x13\x2a\x1f\x13\x2f\x23\x16\ \x38\x2a\x1b\x31\x24\x17\x2a\x20\x15\x2a\x20\x15\x2c\x21\x14\x2d\ \x22\x15\x2a\x1f\x14\x3a\x2b\x1c\x21\x1a\x10\x29\x1f\x14\x2b\x20\ \x14\x28\x1e\x13\x2c\x21\x15\x43\x34\x25\x2b\x2f\x30\x22\x25\x27\ \x05\x06\x07\x15\x16\x17\x1f\x22\x23\x58\x61\x65\x19\x1c\x1e\x17\ \x1a\x1c\x22\x26\x29\x55\x5d\x5f\x5e\x66\x69\x34\x3c\x42\x5a\x66\ \x6d\x69\x77\x7f\x67\x74\x7c\x59\x64\x6d\x3b\x44\x4f\x57\x62\x6c\ \x6a\x77\x80\x6c\x78\x7f\x61\x6b\x73\x48\x51\x5b\x54\x5d\x66\x6d\ \x77\x7e\x72\x7c\x83\x73\x7d\x84\x75\x7e\x86\x76\x80\x86\x77\x81\ \x85\x75\x7f\x82\x60\x66\x6b\x46\x49\x50\x00\x00\x00\x46\x35\x23\ \x26\x1d\x13\x4c\x39\x25\x57\x41\x2a\x3e\x2f\x1e\x22\x19\x10\x1b\ \x15\x0d\x18\x12\x0b\x27\x1d\x13\x3b\x2d\x1d\x43\x32\x20\x38\x2a\ \x1b\x32\x26\x18\x35\x27\x1a\x30\x24\x17\x24\x1b\x11\x2a\x1f\x14\ \x24\x1b\x12\x1e\x17\x0f\x1c\x16\x0e\x22\x1a\x10\x2a\x20\x14\x24\ \x1c\x11\x24\x1b\x11\x29\x1f\x13\x2a\x1f\x14\x26\x1d\x13\x26\x1c\ \x12\x2b\x20\x15\x1c\x15\x0e\x1f\x17\x0e\x31\x25\x18\x28\x1e\x13\ \x1d\x16\x0e\x1e\x17\x0e\x21\x19\x10\x25\x1c\x12\x2e\x23\x16\x30\ \x24\x16\x2d\x22\x15\x2e\x23\x16\x38\x29\x1a\x35\x27\x19\x2e\x23\ \x16\x22\x1a\x10\x1c\x15\x0d\x20\x18\x10\x2d\x22\x16\x32\x26\x18\ \x3b\x2d\x1c\x46\x34\x21\x34\x27\x19\x2d\x21\x15\x2c\x21\x15\x2f\ \x24\x17\x23\x1a\x10\x22\x1a\x11\x28\x1e\x13\x28\x1e\x13\x22\x1a\ \x10\x20\x19\x0f\x28\x1f\x14\x28\x1e\x13\x35\x28\x1a\x38\x2a\x1c\ \x26\x1d\x12\x2c\x22\x16\x32\x26\x18\x37\x29\x1a\x2b\x20\x14\x23\ \x1b\x11\x2c\x21\x15\x2e\x23\x16\x25\x1c\x12\x2a\x1f\x14\x2a\x1f\ \x14\x2f\x23\x16\x2d\x22\x16\x30\x24\x17\x33\x27\x19\x39\x2b\x1b\ \x33\x26\x18\x30\x24\x17\x2d\x22\x16\x35\x28\x19\x3d\x2e\x1d\x39\ \x2a\x1b\x3a\x2b\x1c\x36\x29\x1a\x36\x28\x1a\x39\x2b\x1c\x3a\x2c\ \x1c\x37\x29\x1a\x37\x29\x1a\x3f\x2f\x1e\x35\x28\x1a\x30\x24\x17\ \x2b\x20\x15\x22\x1a\x11\x24\x1b\x11\x28\x1e\x13\x23\x1a\x10\x25\ \x1c\x11\x28\x1e\x13\x2a\x1f\x14\x2c\x22\x15\x36\x29\x1a\x2e\x23\ \x16\x30\x25\x17\x2c\x21\x15\x31\x24\x17\x35\x27\x19\x31\x24\x18\ \x2d\x22\x16\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\x22\x16\x26\ \x1d\x12\x27\x1d\x12\x24\x1c\x11\x2c\x20\x15\x2a\x20\x15\x27\x1e\ \x13\x24\x1b\x11\x2b\x20\x14\x2d\x21\x16\x2a\x1f\x14\x27\x1e\x13\ \x2f\x23\x16\x59\x44\x30\x2d\x2e\x2e\x10\x11\x12\x13\x14\x15\x12\ \x13\x14\x36\x3b\x3d\x59\x63\x66\x1f\x23\x24\x00\x00\x00\x3a\x40\ \x40\x68\x71\x73\x6b\x76\x7a\x4f\x59\x5e\x36\x41\x48\x66\x74\x7b\ \x67\x75\x7d\x67\x73\x7b\x55\x5f\x68\x3d\x45\x4f\x5b\x66\x6e\x6c\ \x78\x7f\x6e\x77\x7f\x62\x6a\x73\x4a\x52\x5b\x59\x61\x69\x70\x7a\ \x81\x73\x7d\x84\x74\x7e\x85\x75\x7f\x87\x79\x82\x89\x78\x81\x86\ \x74\x7b\x7e\x5f\x64\x69\x00\x00\x00\x4e\x3b\x28\x39\x2c\x1c\x58\ \x42\x2a\x5b\x44\x2c\x4e\x3a\x26\x24\x1b\x11\x1f\x18\x0f\x21\x19\ \x10\x31\x25\x18\x46\x35\x22\x3c\x2c\x1d\x2c\x20\x15\x24\x1b\x11\ \x28\x1e\x13\x29\x1e\x14\x2a\x20\x14\x22\x1a\x10\x22\x19\x10\x23\ \x1a\x11\x1d\x16\x0e\x1c\x15\x0d\x1d\x16\x0e\x1a\x14\x0d\x1f\x18\ \x0f\x24\x1b\x11\x25\x1c\x12\x25\x1b\x12\x27\x1e\x12\x29\x1f\x14\ \x1e\x17\x0f\x27\x1d\x12\x2a\x20\x14\x2c\x21\x15\x3b\x2c\x1c\x26\ \x1d\x12\x19\x13\x0c\x1f\x18\x0f\x23\x1b\x11\x2d\x22\x16\x33\x27\ \x18\x34\x27\x19\x32\x26\x19\x37\x29\x1b\x35\x28\x19\x26\x1d\x12\ \x1e\x16\x0e\x20\x17\x0f\x2b\x21\x15\x34\x27\x19\x38\x29\x1b\x44\ \x33\x21\x32\x26\x18\x25\x1c\x12\x30\x24\x17\x2e\x22\x17\x25\x1c\ \x11\x25\x1c\x11\x23\x1a\x11\x24\x1b\x11\x20\x18\x10\x24\x1b\x11\ \x26\x1d\x12\x25\x1c\x12\x2c\x22\x16\x28\x1e\x13\x23\x1b\x10\x24\ \x1b\x11\x2d\x22\x16\x33\x26\x18\x32\x26\x18\x2b\x21\x14\x2f\x23\ \x16\x3a\x2b\x1c\x3e\x2e\x1e\x30\x23\x16\x34\x27\x18\x32\x25\x18\ \x29\x1f\x13\x37\x29\x1a\x3b\x2c\x1c\x41\x31\x1f\x3a\x2c\x1c\x33\ \x26\x19\x37\x29\x1b\x37\x29\x1b\x38\x29\x1b\x2f\x23\x16\x2c\x20\ \x15\x2d\x22\x15\x30\x24\x17\x35\x28\x1a\x38\x2a\x1b\x3a\x2b\x1c\ \x37\x29\x1a\x41\x31\x1f\x3d\x2e\x1d\x2a\x1f\x14\x2f\x24\x16\x29\ \x1f\x14\x2c\x21\x15\x2c\x21\x15\x33\x27\x19\x34\x27\x19\x33\x26\ \x18\x2d\x22\x16\x27\x1d\x13\x2e\x23\x16\x2f\x23\x17\x33\x26\x19\ \x3e\x2f\x1e\x37\x2a\x1b\x35\x28\x1a\x38\x29\x1b\x39\x2a\x1b\x35\ \x28\x19\x2c\x21\x15\x25\x1d\x12\x28\x1e\x13\x23\x1a\x11\x25\x1d\ \x12\x29\x1f\x13\x29\x1f\x13\x2c\x21\x15\x24\x1b\x12\x24\x1b\x12\ \x2b\x20\x14\x26\x1d\x12\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x4c\ \x3c\x2a\x2e\x2f\x2d\x06\x06\x07\x10\x11\x12\x14\x15\x17\x41\x47\ \x4b\x48\x50\x53\x22\x25\x27\x03\x03\x02\x30\x34\x35\x65\x6f\x73\ \x6a\x77\x7c\x69\x75\x79\x47\x51\x58\x3b\x46\x4e\x69\x76\x7d\x6a\ \x76\x7e\x65\x6f\x78\x4d\x55\x5e\x3d\x45\x4e\x62\x6b\x75\x70\x79\ \x81\x6e\x78\x7f\x63\x6b\x72\x4c\x52\x5a\x5f\x67\x6e\x71\x7b\x81\ \x72\x7d\x83\x74\x7e\x86\x78\x81\x8a\x78\x81\x89\x78\x80\x86\x72\ \x79\x7f\x00\x00\x00\x41\x31\x21\x37\x29\x1b\x5c\x45\x2d\x61\x48\ \x2f\x4d\x3a\x25\x2d\x22\x15\x13\x0e\x09\x20\x18\x0f\x31\x25\x18\ \x39\x2a\x1c\x31\x25\x18\x28\x1f\x13\x1f\x17\x0f\x22\x1a\x10\x29\ \x20\x14\x25\x1c\x12\x23\x1a\x10\x23\x1a\x11\x27\x1e\x12\x27\x1e\ \x13\x24\x1b\x11\x21\x19\x0f\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ \x1f\x17\x0f\x1f\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x19\x13\x0c\x1c\ \x15\x0d\x1e\x16\x0e\x26\x1c\x12\x24\x1b\x11\x26\x1d\x12\x1f\x17\ \x0f\x1d\x16\x0e\x28\x1e\x13\x30\x24\x17\x2d\x23\x16\x33\x27\x18\ \x32\x26\x18\x35\x28\x1a\x2b\x21\x15\x1f\x18\x0f\x21\x19\x0f\x27\ \x1d\x13\x27\x1d\x13\x2a\x1f\x14\x33\x25\x18\x34\x26\x19\x31\x25\ \x18\x2a\x1f\x14\x2a\x20\x14\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\ \x23\x1a\x11\x25\x1c\x12\x29\x1f\x14\x26\x1d\x12\x26\x1d\x12\x2a\ \x1f\x14\x36\x28\x19\x33\x26\x19\x27\x1e\x13\x24\x1c\x11\x2d\x22\ \x15\x3f\x2e\x1e\x38\x2a\x1b\x2e\x23\x16\x2f\x23\x17\x3b\x2c\x1d\ \x3b\x2c\x1c\x36\x28\x1a\x2c\x21\x15\x20\x18\x0f\x27\x1d\x13\x2f\ \x23\x16\x2f\x23\x17\x38\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x30\x24\ \x17\x32\x25\x18\x30\x25\x17\x29\x1f\x14\x26\x1d\x12\x29\x1e\x13\ \x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x28\x19\x3c\x2d\x1d\x3b\ \x2b\x1c\x3c\x2d\x1d\x3a\x2c\x1c\x31\x25\x18\x3a\x2b\x1c\x43\x32\ \x20\x4a\x37\x23\x4b\x38\x24\x48\x36\x22\x40\x30\x1f\x36\x28\x1a\ \x34\x27\x19\x34\x27\x19\x37\x29\x1b\x39\x2a\x1b\x3b\x2d\x1c\x3a\ \x2c\x1c\x33\x26\x18\x3b\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1c\x36\x29\ \x19\x2e\x23\x17\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x2b\x20\x15\ \x26\x1c\x12\x2e\x22\x16\x27\x1d\x13\x2a\x1f\x14\x2b\x20\x15\x28\ \x1e\x13\x32\x25\x18\x33\x26\x19\x38\x2a\x1b\x3a\x2d\x1f\x2e\x2d\ \x2a\x00\x00\x00\x0b\x0c\x0c\x31\x34\x35\x32\x39\x3d\x2f\x36\x39\ \x2f\x33\x35\x13\x15\x16\x1a\x1e\x22\x4b\x54\x5c\x69\x74\x7b\x6a\ \x76\x7c\x67\x72\x79\x40\x4a\x53\x45\x4f\x58\x5e\x69\x72\x39\x42\ \x49\x68\x71\x7a\x48\x4e\x58\x49\x51\x5b\x6c\x75\x7f\x72\x7c\x83\ \x72\x7c\x82\x62\x69\x70\x49\x4e\x55\x5e\x66\x6c\x71\x7b\x82\x77\ \x81\x89\x78\x81\x8a\x77\x81\x88\x76\x80\x87\x79\x82\x89\x00\x00\ \x00\x30\x24\x17\x30\x24\x17\x54\x3f\x28\x6f\x53\x36\x59\x42\x2b\ \x2d\x22\x15\x20\x18\x0f\x29\x1f\x14\x33\x27\x18\x33\x26\x19\x2b\ \x21\x15\x31\x25\x17\x25\x1c\x11\x22\x1a\x10\x24\x1b\x12\x20\x17\ \x0f\x1d\x16\x0e\x1e\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x1d\x16\x0e\ \x19\x14\x0c\x1d\x17\x0e\x1c\x15\x0e\x22\x19\x10\x26\x1d\x12\x23\ \x1a\x11\x22\x19\x10\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\x1d\x15\ \x0e\x23\x1a\x11\x26\x1d\x13\x26\x1c\x12\x22\x1a\x10\x1f\x17\x0f\ \x23\x1a\x11\x2c\x21\x15\x2a\x1f\x14\x33\x26\x18\x31\x25\x17\x30\ \x24\x17\x2b\x20\x15\x26\x1d\x12\x22\x1a\x11\x1f\x18\x0f\x2a\x20\ \x15\x2d\x22\x16\x2e\x23\x16\x34\x27\x19\x30\x24\x17\x2d\x22\x16\ \x28\x1d\x12\x2a\x20\x14\x2b\x22\x16\x20\x18\x0f\x27\x1e\x13\x2c\ \x22\x15\x2c\x21\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x36\x28\ \x1a\x32\x26\x18\x24\x1b\x11\x25\x1c\x11\x2d\x22\x16\x39\x2b\x1b\ \x39\x2a\x1b\x31\x25\x18\x2f\x24\x17\x38\x2b\x1b\x39\x2b\x1c\x30\ \x24\x17\x3b\x2c\x1c\x39\x2b\x1c\x2f\x23\x17\x26\x1d\x12\x2b\x20\ \x14\x34\x27\x19\x33\x26\x19\x37\x29\x1b\x36\x28\x19\x34\x27\x19\ \x30\x25\x17\x26\x1d\x12\x21\x1a\x10\x24\x1b\x12\x2a\x1f\x14\x34\ \x27\x19\x3b\x2d\x1d\x3d\x2d\x1d\x3c\x2d\x1c\x3b\x2c\x1d\x38\x2b\ \x1b\x3a\x2c\x1c\x31\x25\x17\x30\x24\x17\x35\x27\x19\x2d\x23\x16\ \x34\x27\x19\x3b\x2d\x1d\x3c\x2d\x1c\x3b\x2b\x1c\x38\x2a\x1b\x36\ \x28\x1a\x31\x25\x17\x2f\x23\x17\x2d\x21\x16\x30\x24\x17\x37\x29\ \x1b\x3c\x2d\x1d\x3e\x2f\x1f\x3f\x30\x1e\x40\x30\x1f\x33\x26\x19\ \x32\x26\x18\x30\x25\x17\x36\x29\x1a\x2d\x21\x15\x29\x1e\x14\x2b\ \x20\x14\x2c\x20\x15\x26\x1c\x12\x2f\x23\x17\x2f\x23\x16\x3d\x2d\ \x1d\x30\x24\x17\x2b\x21\x15\x27\x20\x15\x28\x25\x21\x0f\x0f\x10\ \x09\x0a\x0a\x3f\x44\x47\x35\x3b\x3f\x2d\x33\x3a\x2e\x34\x3a\x29\ \x2f\x33\x54\x5b\x63\x37\x3f\x49\x5b\x66\x6f\x6a\x76\x7d\x68\x73\ \x7b\x63\x6e\x76\x30\x3a\x44\x24\x2c\x31\x3b\x43\x4a\x72\x7c\x84\ \x65\x6e\x75\x46\x4d\x57\x4d\x56\x60\x6e\x78\x81\x72\x7d\x84\x70\ \x79\x80\x5f\x65\x6b\x4d\x52\x5a\x64\x6d\x74\x74\x80\x86\x7a\x84\ \x8b\x79\x82\x89\x78\x82\x8a\x74\x7e\x85\x00\x00\x00\x37\x29\x1b\ \x35\x28\x1a\x44\x33\x21\x72\x56\x39\x57\x41\x2a\x26\x1c\x12\x20\ \x18\x0f\x34\x27\x1a\x48\x36\x22\x4a\x37\x24\x38\x2a\x1b\x33\x26\ \x18\x26\x1c\x12\x22\x19\x10\x1c\x15\x0d\x1b\x14\x0d\x1d\x15\x0e\ \x1b\x14\x0d\x1d\x17\x0e\x20\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x1f\ \x17\x0f\x1d\x15\x0e\x20\x18\x10\x23\x1a\x11\x23\x1a\x11\x1f\x17\ \x0e\x1d\x16\x0e\x20\x18\x0f\x1c\x16\x0e\x1d\x16\x0e\x1e\x17\x0f\ \x2b\x20\x14\x23\x1b\x11\x25\x1c\x12\x24\x1c\x11\x2b\x20\x15\x2a\ \x20\x14\x2e\x22\x16\x33\x26\x19\x32\x26\x18\x2b\x20\x14\x31\x24\ \x17\x34\x27\x19\x2b\x20\x15\x29\x1f\x14\x2a\x1f\x14\x29\x1f\x14\ \x2a\x1f\x14\x36\x28\x1a\x33\x26\x19\x36\x29\x1a\x39\x2a\x1b\x34\ \x27\x19\x27\x1e\x13\x21\x19\x10\x27\x1d\x13\x2c\x20\x15\x2f\x24\ \x16\x30\x24\x17\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2e\x22\x16\ \x2a\x1f\x14\x21\x19\x0f\x1f\x18\x0f\x2a\x20\x14\x2f\x23\x16\x27\ \x1d\x13\x26\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x2d\x21\x15\x2a\x1f\ \x14\x2a\x1f\x14\x2a\x20\x14\x29\x1f\x13\x27\x1e\x12\x31\x25\x17\ \x36\x28\x1a\x35\x28\x1a\x3b\x2c\x1c\x42\x32\x1f\x37\x29\x1a\x36\ \x28\x1b\x31\x25\x18\x35\x27\x19\x33\x26\x19\x30\x24\x17\x31\x25\ \x18\x2d\x22\x15\x32\x26\x18\x37\x29\x1a\x3f\x2f\x1e\x46\x34\x21\ \x39\x2b\x1c\x3b\x2c\x1c\x33\x26\x19\x2e\x22\x16\x28\x1f\x14\x32\ \x25\x18\x36\x28\x1a\x2c\x21\x15\x26\x1d\x12\x2a\x1f\x14\x2d\x22\ \x15\x2b\x21\x15\x2a\x1f\x14\x2a\x1f\x14\x33\x27\x19\x34\x27\x19\ \x33\x26\x18\x3a\x2b\x1c\x3d\x2e\x1d\x39\x2b\x1b\x39\x2b\x1c\x3a\ \x2b\x1c\x39\x2b\x1c\x33\x26\x19\x26\x1d\x13\x2c\x21\x15\x37\x29\ \x1a\x3a\x2b\x1b\x30\x24\x17\x31\x25\x17\x33\x26\x19\x32\x26\x18\ \x2b\x20\x14\x2c\x22\x18\x2b\x24\x1c\x22\x24\x25\x08\x09\x09\x46\ \x4a\x4d\x4a\x50\x53\x31\x35\x3b\x1f\x23\x29\x4e\x56\x5c\x69\x74\ \x7b\x44\x4b\x53\x21\x28\x2d\x62\x6e\x76\x68\x74\x7b\x69\x74\x7c\ \x29\x33\x39\x06\x07\x08\x39\x43\x49\x45\x50\x57\x71\x7b\x81\x64\ \x6d\x74\x44\x4d\x57\x58\x62\x6b\x71\x7c\x84\x71\x7c\x83\x73\x7c\ \x83\x62\x69\x70\x4d\x51\x59\x67\x71\x78\x76\x81\x88\x7a\x84\x8b\ \x79\x83\x8a\x6c\x76\x7d\x00\x00\x00\x20\x19\x10\x30\x24\x17\x43\ \x32\x20\x70\x54\x37\x58\x41\x2b\x2b\x21\x14\x1e\x16\x0e\x34\x27\ \x19\x47\x35\x22\x5b\x44\x2c\x47\x35\x22\x3d\x2d\x1d\x25\x1c\x12\ \x22\x1a\x10\x20\x18\x10\x1d\x16\x0e\x1a\x13\x0c\x19\x12\x0c\x1e\ \x16\x0e\x23\x1a\x10\x23\x1a\x11\x24\x1b\x12\x27\x1e\x13\x23\x1b\ \x11\x22\x1a\x10\x25\x1c\x12\x2f\x24\x17\x2e\x22\x16\x24\x1c\x11\ \x20\x18\x0f\x1c\x16\x0e\x1f\x17\x0f\x22\x19\x11\x24\x1b\x12\x1b\ \x14\x0d\x1e\x17\x0f\x25\x1b\x12\x22\x19\x10\x22\x1a\x11\x26\x1d\ \x12\x2f\x22\x16\x30\x24\x17\x2a\x1f\x14\x29\x1f\x14\x29\x1f\x14\ \x27\x1d\x12\x27\x1e\x13\x29\x1e\x13\x27\x1d\x13\x26\x1d\x12\x28\ \x1e\x12\x31\x25\x17\x3f\x2f\x1e\x33\x26\x19\x30\x23\x16\x25\x1c\ \x12\x28\x1f\x13\x2e\x22\x16\x36\x28\x1a\x38\x2a\x1b\x33\x26\x18\ \x33\x26\x18\x32\x26\x18\x2c\x21\x14\x27\x1d\x13\x25\x1c\x11\x23\ \x1a\x10\x21\x19\x10\x28\x1e\x13\x2f\x23\x17\x33\x26\x18\x2b\x20\ \x15\x2b\x20\x14\x26\x1d\x13\x26\x1d\x12\x2b\x20\x14\x34\x27\x19\ \x3a\x2b\x1b\x34\x28\x1a\x35\x28\x19\x36\x29\x1a\x36\x29\x1a\x39\ \x2b\x1b\x36\x29\x1a\x37\x2a\x1a\x3a\x2c\x1c\x3b\x2c\x1d\x35\x28\ \x1a\x2b\x21\x15\x2e\x23\x16\x2d\x23\x15\x31\x24\x17\x2d\x22\x16\ \x2c\x21\x15\x31\x24\x17\x34\x27\x19\x33\x27\x18\x2f\x24\x17\x2b\ \x21\x15\x31\x25\x18\x39\x2a\x1b\x37\x29\x1b\x30\x24\x17\x38\x2b\ \x1b\x29\x20\x14\x26\x1d\x12\x24\x1a\x11\x24\x1b\x12\x29\x1f\x14\ \x2d\x22\x16\x2e\x22\x16\x30\x25\x18\x34\x27\x19\x33\x26\x18\x37\ \x29\x1a\x3c\x2d\x1d\x38\x2a\x1b\x32\x26\x18\x2f\x23\x16\x31\x24\ \x18\x36\x29\x1a\x29\x1e\x13\x29\x1f\x14\x2e\x22\x16\x24\x1b\x12\ \x2c\x21\x15\x29\x1f\x13\x26\x1c\x12\x23\x1a\x10\x24\x1b\x11\x27\ \x1e\x14\x3c\x33\x29\x16\x17\x19\x2b\x2e\x30\x44\x49\x4d\x4b\x52\ \x57\x44\x49\x4f\x35\x39\x3e\x52\x5c\x63\x69\x77\x7e\x27\x2f\x34\ \x38\x40\x47\x32\x3d\x44\x65\x74\x7e\x66\x75\x7d\x0b\x10\x14\x05\ \x07\x07\x15\x1a\x1d\x41\x46\x4b\x72\x7b\x81\x70\x79\x80\x64\x6d\ \x75\x45\x4d\x58\x5d\x66\x70\x73\x7d\x85\x75\x7f\x86\x75\x7d\x83\ \x61\x66\x6d\x4d\x51\x59\x6c\x76\x7c\x78\x83\x88\x78\x83\x87\x75\ \x80\x86\x00\x00\x00\x32\x26\x19\x43\x32\x21\x4b\x38\x24\x74\x56\ \x39\x58\x42\x2b\x3a\x2b\x1c\x21\x18\x0f\x2f\x23\x17\x3e\x2f\x1e\ \x4c\x38\x24\x40\x30\x1f\x45\x33\x21\x38\x29\x1b\x25\x1c\x12\x25\ \x1b\x11\x22\x19\x10\x1b\x14\x0d\x1b\x15\x0d\x22\x1a\x10\x2b\x20\ \x14\x29\x1e\x14\x2b\x21\x15\x30\x24\x17\x2a\x1f\x14\x28\x1e\x13\ \x29\x1e\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1c\x11\x1e\x17\x0e\x20\ \x19\x0f\x20\x17\x0f\x1f\x18\x0f\x1e\x17\x0f\x1f\x17\x0e\x1c\x15\ \x0e\x1e\x16\x0f\x1e\x17\x0e\x1f\x17\x0f\x24\x1b\x11\x28\x1e\x13\ \x29\x1e\x14\x25\x1c\x12\x22\x19\x10\x20\x18\x10\x24\x1c\x12\x25\ \x1c\x12\x25\x1c\x12\x22\x19\x10\x21\x18\x10\x2b\x20\x15\x22\x1a\ \x10\x24\x1b\x11\x27\x1e\x13\x23\x1a\x10\x29\x1e\x14\x2b\x20\x15\ \x26\x1d\x12\x25\x1c\x11\x2f\x23\x17\x38\x2a\x1b\x3e\x2f\x1e\x2b\ \x21\x15\x28\x1e\x13\x25\x1b\x11\x21\x18\x0f\x23\x1b\x11\x26\x1c\ \x12\x29\x1e\x13\x29\x1f\x13\x32\x25\x17\x35\x27\x1a\x2d\x21\x16\ \x23\x1a\x10\x25\x1c\x12\x2a\x1f\x14\x35\x28\x19\x2f\x23\x16\x2d\ \x22\x16\x29\x20\x14\x2b\x20\x14\x29\x1f\x14\x28\x1f\x13\x2a\x1f\ \x14\x2a\x20\x14\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x2d\x22\x15\ \x28\x1e\x13\x2b\x20\x15\x2f\x23\x17\x2e\x23\x16\x27\x1d\x13\x29\ \x1f\x14\x30\x23\x17\x2a\x1f\x14\x2e\x23\x16\x2b\x20\x14\x2d\x21\ \x16\x3b\x2d\x1d\x3a\x2c\x1d\x33\x26\x19\x2a\x20\x14\x29\x1e\x14\ \x28\x1e\x14\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x2b\x20\x14\x2a\ \x1f\x14\x2d\x22\x16\x31\x25\x18\x2f\x24\x17\x35\x28\x1a\x39\x2b\ \x1b\x32\x26\x18\x30\x24\x17\x2b\x21\x15\x2e\x23\x16\x31\x25\x17\ \x31\x25\x17\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x27\x1d\x13\x2a\ \x20\x14\x26\x1c\x12\x26\x1d\x12\x29\x1e\x14\x28\x1e\x14\x30\x2a\ \x23\x17\x18\x1a\x3a\x3f\x42\x42\x48\x4d\x4d\x53\x58\x55\x5d\x62\ \x3c\x43\x48\x4a\x53\x57\x26\x2c\x30\x23\x28\x2b\x37\x3e\x42\x24\ \x2c\x32\x3f\x4c\x55\x69\x78\x7f\x0c\x11\x14\x02\x01\x02\x0a\x0c\ \x0e\x3a\x3e\x45\x6b\x73\x7a\x6e\x79\x7f\x72\x7b\x81\x5d\x63\x6b\ \x46\x4d\x58\x64\x6c\x76\x72\x7d\x86\x75\x7f\x88\x74\x7d\x83\x60\ \x66\x6d\x52\x56\x5d\x6e\x77\x7b\x77\x83\x86\x79\x84\x88\x00\x00\ \x00\x2d\x22\x16\x3d\x2d\x1d\x49\x37\x23\x74\x57\x39\x63\x4a\x30\ \x3d\x2d\x1d\x25\x1c\x11\x2b\x20\x14\x2f\x24\x17\x41\x30\x1f\x38\ \x2b\x1b\x3e\x2e\x1e\x35\x27\x1a\x29\x1f\x14\x29\x1f\x13\x27\x1e\ \x13\x2a\x1f\x14\x23\x1a\x11\x27\x1e\x13\x29\x1f\x14\x29\x1f\x13\ \x29\x1f\x13\x28\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ \x1f\x14\x2b\x20\x15\x25\x1c\x12\x22\x1a\x10\x28\x1d\x13\x2a\x1f\ \x14\x25\x1c\x11\x25\x1c\x12\x24\x1b\x11\x22\x1a\x10\x27\x1d\x13\ \x27\x1d\x13\x23\x1a\x11\x26\x1d\x12\x25\x1c\x12\x26\x1c\x12\x22\ \x1a\x10\x20\x18\x0f\x24\x1b\x11\x26\x1d\x12\x2c\x20\x15\x29\x1e\ \x14\x29\x1f\x14\x21\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x21\x18\x0f\ \x24\x1b\x11\x21\x19\x10\x1f\x17\x0f\x23\x1b\x11\x1d\x16\x0e\x24\ \x1b\x11\x24\x1b\x12\x32\x25\x18\x37\x29\x1b\x2d\x22\x15\x27\x1e\ \x13\x25\x1c\x12\x1c\x15\x0d\x21\x19\x10\x27\x1e\x13\x26\x1c\x12\ \x24\x1b\x11\x2f\x24\x17\x35\x28\x19\x38\x2a\x1b\x33\x27\x19\x2f\ \x23\x16\x28\x1e\x13\x2b\x20\x15\x2f\x24\x17\x2c\x21\x15\x24\x1b\ \x11\x28\x1f\x13\x24\x1b\x11\x29\x1f\x14\x2c\x21\x15\x2a\x20\x14\ \x35\x28\x19\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\x18\x2f\x24\x17\x2f\ \x23\x16\x2b\x21\x15\x2f\x24\x17\x2a\x1f\x14\x2b\x20\x15\x2b\x20\ \x15\x2d\x22\x15\x29\x1f\x14\x29\x1f\x14\x2c\x21\x15\x2c\x21\x14\ \x35\x28\x19\x3c\x2d\x1e\x33\x25\x18\x1f\x18\x0f\x21\x18\x10\x25\ \x1c\x12\x23\x1a\x11\x23\x1a\x11\x27\x1e\x12\x26\x1d\x12\x2d\x22\ \x16\x2c\x21\x15\x27\x1e\x12\x2c\x21\x15\x34\x27\x19\x36\x28\x1a\ \x35\x27\x1a\x31\x25\x18\x2d\x22\x16\x2b\x20\x14\x28\x1e\x13\x2f\ \x23\x16\x2e\x22\x16\x31\x25\x17\x26\x1c\x12\x28\x1e\x13\x27\x1e\ \x12\x25\x1c\x12\x2a\x20\x14\x26\x1d\x13\x28\x23\x1e\x27\x2a\x2d\ \x36\x3a\x3e\x41\x47\x4b\x4c\x52\x57\x53\x5b\x61\x5d\x66\x6b\x32\ \x39\x40\x00\x01\x02\x35\x38\x3c\x17\x1c\x1f\x67\x6f\x76\x34\x3f\ \x47\x4b\x55\x5b\x06\x0a\x0b\x01\x01\x01\x26\x2a\x2c\x50\x59\x5e\ \x41\x49\x51\x6d\x78\x7f\x73\x7e\x84\x73\x7c\x83\x5a\x62\x6a\x43\ \x49\x53\x63\x6c\x76\x74\x7d\x87\x78\x81\x8b\x76\x7e\x84\x61\x65\ \x6c\x4f\x56\x5b\x6b\x75\x79\x79\x84\x87\x00\x00\x00\x22\x1a\x11\ \x3d\x2e\x1d\x45\x34\x21\x73\x57\x39\x62\x49\x30\x2f\x23\x17\x23\ \x1a\x11\x20\x18\x0f\x20\x18\x0f\x3a\x2b\x1c\x32\x26\x18\x33\x26\ \x19\x2f\x23\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\ \x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x27\ \x1e\x13\x23\x1b\x11\x23\x1b\x11\x22\x1a\x10\x25\x1c\x12\x23\x1b\ \x11\x22\x19\x10\x29\x1e\x14\x27\x1e\x13\x30\x24\x18\x2f\x23\x16\ \x2a\x20\x14\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x23\x1b\x11\x1e\ \x16\x0e\x20\x18\x0f\x20\x18\x0f\x21\x19\x0f\x22\x19\x10\x1e\x17\ \x0f\x28\x1e\x13\x2c\x21\x15\x2e\x23\x16\x2e\x22\x15\x30\x24\x17\ \x25\x1c\x12\x1c\x15\x0d\x1a\x13\x0c\x22\x1a\x10\x1f\x18\x0e\x22\ \x19\x10\x21\x18\x10\x2b\x21\x15\x27\x1e\x13\x24\x1b\x11\x22\x19\ \x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x15\x2a\x20\x14\x2a\x1f\x14\ \x1f\x17\x0f\x26\x1d\x12\x30\x24\x17\x2d\x22\x15\x24\x1b\x11\x29\ \x1f\x14\x32\x26\x18\x3e\x2f\x1e\x3a\x2c\x1c\x30\x24\x17\x26\x1c\ \x13\x23\x1a\x11\x30\x24\x17\x30\x25\x17\x23\x1b\x11\x29\x1f\x13\ \x2e\x22\x16\x28\x1e\x13\x29\x1e\x14\x29\x1f\x14\x33\x26\x18\x38\ \x2a\x1b\x3b\x2d\x1d\x37\x2a\x1b\x30\x24\x17\x2e\x22\x16\x2f\x23\ \x17\x30\x24\x17\x24\x1c\x11\x21\x19\x10\x28\x1e\x13\x27\x1e\x13\ \x2b\x21\x14\x29\x1e\x14\x2d\x21\x15\x31\x25\x18\x37\x2a\x1b\x3a\ \x2b\x1c\x2c\x20\x15\x24\x1b\x11\x1f\x17\x0f\x24\x1b\x11\x24\x1b\ \x11\x20\x18\x10\x24\x1b\x11\x27\x1c\x12\x2a\x1f\x14\x26\x1d\x12\ \x26\x1c\x12\x28\x1e\x13\x2b\x20\x15\x2a\x1f\x14\x2b\x21\x15\x2b\ \x21\x15\x32\x26\x18\x34\x27\x19\x2a\x20\x14\x27\x1d\x12\x28\x1d\ \x13\x22\x1a\x10\x1c\x16\x0e\x1c\x16\x0e\x21\x1a\x10\x28\x1e\x13\ \x31\x26\x18\x2c\x21\x15\x39\x30\x26\x2d\x30\x33\x36\x3a\x3e\x40\ \x45\x49\x4a\x51\x56\x53\x5c\x60\x5a\x64\x6a\x58\x61\x68\x14\x16\ \x17\x02\x03\x04\x2a\x2f\x33\x66\x72\x78\x62\x6d\x74\x0f\x13\x17\ \x22\x23\x26\x07\x07\x08\x25\x28\x2a\x70\x78\x7e\x45\x4d\x54\x4b\ \x53\x5b\x6f\x79\x80\x72\x7d\x83\x73\x7d\x83\x57\x5f\x68\x48\x4e\ \x57\x6a\x71\x7b\x76\x7f\x87\x7a\x82\x89\x76\x7c\x81\x5d\x62\x67\ \x52\x57\x5d\x6e\x76\x7a\x00\x00\x00\x19\x13\x0c\x34\x27\x19\x3d\ \x2e\x1d\x74\x57\x39\x5b\x44\x2d\x39\x2a\x1c\x22\x19\x10\x18\x12\ \x0c\x23\x1a\x11\x34\x27\x19\x37\x29\x1a\x37\x28\x1a\x2f\x23\x17\ \x29\x1f\x14\x2c\x21\x15\x29\x1e\x14\x29\x1f\x13\x2b\x20\x14\x2b\ \x20\x15\x33\x26\x19\x35\x28\x1a\x30\x24\x17\x2d\x22\x15\x28\x1e\ \x13\x23\x1b\x11\x23\x1b\x11\x25\x1c\x12\x1e\x16\x0d\x1e\x17\x0e\ \x1f\x17\x0f\x23\x1a\x11\x25\x1d\x12\x2d\x21\x16\x2c\x22\x15\x28\ \x1e\x13\x24\x1b\x11\x29\x1f\x13\x27\x1d\x12\x23\x1a\x11\x25\x1c\ \x12\x2b\x20\x15\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2f\x23\x16\ \x34\x27\x19\x31\x25\x18\x31\x25\x18\x36\x28\x1a\x2d\x21\x15\x26\ \x1d\x12\x23\x19\x10\x23\x1a\x11\x26\x1d\x12\x24\x1b\x11\x26\x1c\ \x12\x30\x23\x17\x2e\x23\x17\x30\x24\x17\x26\x1c\x12\x29\x1f\x14\ \x2b\x20\x15\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x24\x1b\x11\x22\ \x1a\x10\x2a\x1f\x14\x21\x19\x10\x1d\x16\x0e\x22\x1a\x10\x2c\x21\ \x15\x31\x25\x17\x35\x28\x1a\x32\x25\x18\x29\x1e\x14\x2a\x1f\x14\ \x33\x26\x19\x2a\x20\x14\x2a\x20\x14\x33\x27\x18\x2e\x22\x16\x2c\ \x21\x15\x2f\x23\x16\x2d\x22\x15\x32\x26\x18\x32\x26\x18\x36\x29\ \x1a\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1b\x3c\x2c\x1c\x33\x26\x19\ \x2a\x20\x14\x24\x1c\x11\x2a\x20\x14\x2b\x20\x15\x25\x1b\x12\x27\ \x1d\x13\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x36\x28\x1a\x34\x27\ \x19\x2f\x23\x17\x25\x1c\x12\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\ \x26\x1c\x12\x21\x18\x0f\x20\x18\x0f\x22\x1a\x11\x24\x1b\x11\x27\ \x1d\x12\x2f\x23\x16\x31\x24\x17\x33\x26\x18\x33\x26\x19\x3f\x2f\ \x1e\x41\x31\x1f\x35\x28\x1a\x2a\x20\x14\x28\x1e\x13\x23\x1b\x11\ \x1c\x15\x0d\x1e\x16\x0e\x23\x1b\x12\x1c\x16\x0d\x1d\x16\x0e\x23\ \x1b\x11\x48\x3a\x2b\x2c\x2f\x32\x35\x3a\x3d\x40\x45\x4a\x4a\x52\ \x56\x53\x5c\x61\x5b\x65\x6c\x4e\x57\x5d\x16\x18\x1a\x00\x00\x00\ \x47\x4d\x4f\x6b\x78\x7d\x34\x3d\x43\x04\x05\x07\x1e\x21\x26\x07\ \x07\x08\x3c\x40\x45\x78\x82\x89\x67\x6f\x77\x44\x4a\x54\x57\x5e\ \x67\x70\x7b\x80\x72\x7c\x83\x76\x80\x86\x59\x60\x68\x4b\x52\x5b\ \x6f\x77\x7f\x78\x81\x88\x77\x7f\x86\x76\x7d\x82\x5f\x64\x68\x51\ \x57\x5b\x00\x00\x00\x10\x0b\x07\x35\x27\x19\x3d\x2e\x1d\x76\x59\ \x3a\x58\x42\x2b\x3f\x2f\x1e\x21\x19\x0f\x1b\x15\x0d\x24\x1c\x12\ \x38\x2a\x1b\x48\x36\x23\x42\x31\x1f\x32\x26\x18\x2f\x23\x16\x32\ \x24\x18\x2c\x21\x15\x24\x1b\x11\x26\x1c\x12\x28\x1e\x13\x26\x1c\ \x12\x2c\x21\x15\x31\x25\x18\x2d\x22\x16\x24\x1c\x11\x1f\x18\x0f\ \x22\x1a\x10\x25\x1c\x12\x1e\x16\x0e\x1f\x17\x0e\x1c\x15\x0e\x21\ \x19\x10\x25\x1c\x12\x27\x1d\x12\x2f\x23\x17\x32\x26\x18\x28\x1e\ \x13\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x14\x22\x1a\x10\x29\x1e\x13\ \x2a\x1f\x14\x2b\x20\x15\x2f\x23\x16\x31\x25\x17\x2e\x22\x16\x27\ \x1d\x13\x2b\x21\x15\x2b\x21\x14\x30\x23\x16\x2f\x23\x16\x32\x25\ \x18\x28\x1e\x13\x24\x1b\x11\x27\x1d\x12\x27\x1d\x12\x32\x25\x18\ \x34\x26\x19\x36\x28\x1a\x32\x25\x18\x2b\x20\x14\x2d\x22\x15\x2c\ \x21\x15\x2e\x23\x15\x33\x26\x18\x2e\x23\x16\x2b\x21\x14\x2c\x21\ \x15\x21\x19\x10\x1f\x18\x0f\x1e\x17\x0e\x26\x1c\x12\x2e\x23\x16\ \x30\x24\x17\x31\x24\x17\x2b\x20\x15\x33\x26\x18\x2c\x21\x15\x2c\ \x21\x16\x3a\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x2f\x23\x17\x30\x24\ \x17\x31\x24\x17\x3a\x2c\x1c\x34\x27\x19\x38\x2a\x1b\x36\x28\x1a\ \x34\x27\x19\x38\x2a\x1b\x39\x2a\x1c\x2e\x22\x16\x25\x1c\x11\x28\ \x1e\x13\x2d\x22\x16\x29\x1e\x14\x20\x18\x10\x24\x1c\x11\x2a\x1f\ \x14\x24\x1b\x11\x2b\x21\x14\x30\x24\x18\x35\x28\x1a\x2f\x23\x16\ \x27\x1e\x12\x26\x1c\x12\x2f\x23\x17\x31\x25\x17\x2d\x21\x15\x2a\ \x20\x14\x23\x1b\x11\x24\x1b\x11\x2a\x1f\x14\x29\x1f\x14\x2e\x23\ \x16\x34\x27\x19\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1c\x44\x33\x21\ \x38\x2a\x1b\x34\x27\x19\x2d\x21\x15\x20\x18\x0f\x1e\x16\x0e\x1f\ \x17\x0f\x1b\x15\x0d\x1a\x14\x0c\x17\x12\x0b\x29\x1f\x14\x4c\x3c\ \x2b\x2b\x2f\x32\x34\x38\x3c\x3e\x43\x47\x48\x4f\x53\x52\x5a\x5f\ \x54\x5e\x63\x29\x30\x34\x32\x3a\x3e\x08\x08\x09\x27\x2d\x2f\x69\ \x76\x7a\x17\x1e\x20\x09\x0a\x0b\x2e\x32\x37\x19\x1b\x20\x61\x6b\ \x74\x73\x7d\x84\x71\x7b\x82\x64\x6c\x75\x48\x4e\x5a\x5c\x64\x6d\ \x73\x7c\x83\x74\x7e\x85\x73\x7c\x83\x54\x5b\x63\x51\x56\x5e\x6d\ \x75\x7c\x79\x81\x86\x79\x81\x86\x76\x7e\x81\x61\x66\x6a\x00\x00\ \x00\x0b\x08\x05\x36\x28\x1a\x3b\x2c\x1c\x69\x4f\x33\x64\x4a\x30\ \x46\x34\x22\x1a\x14\x0c\x22\x19\x10\x29\x1f\x13\x3f\x2f\x1f\x54\ \x3f\x29\x36\x29\x1b\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ \x14\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\ \x2c\x21\x15\x2a\x1f\x14\x20\x18\x0f\x1d\x16\x0e\x20\x19\x10\x21\ \x19\x10\x1f\x17\x0f\x1c\x15\x0d\x1f\x17\x0f\x1f\x18\x0f\x28\x1e\ \x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\x2c\x21\x15\x23\x1b\x11\ \x25\x1c\x12\x2b\x20\x14\x20\x18\x0f\x22\x19\x10\x29\x1e\x14\x2a\ \x1f\x14\x29\x1f\x13\x29\x1f\x14\x26\x1c\x12\x20\x18\x0f\x25\x1c\ \x12\x29\x1f\x14\x2c\x21\x15\x2b\x21\x15\x34\x27\x19\x2c\x21\x15\ \x23\x19\x10\x1f\x17\x0f\x1f\x17\x0f\x25\x1c\x11\x2e\x22\x15\x2a\ \x1f\x14\x2e\x22\x16\x2c\x20\x14\x2a\x20\x14\x29\x1f\x13\x2b\x20\ \x14\x2d\x22\x16\x2f\x23\x17\x38\x29\x1a\x38\x2a\x1b\x2d\x21\x16\ \x27\x1e\x13\x23\x1a\x10\x26\x1d\x12\x2c\x20\x15\x26\x1c\x12\x2a\ \x1f\x14\x2f\x23\x17\x36\x29\x1a\x28\x1e\x13\x2c\x21\x15\x38\x2a\ \x1a\x41\x30\x1f\x38\x2a\x1b\x30\x24\x17\x2f\x23\x17\x2c\x21\x15\ \x35\x28\x1a\x2d\x22\x16\x31\x24\x18\x35\x27\x1a\x31\x25\x18\x31\ \x24\x18\x2d\x22\x16\x2d\x22\x16\x2a\x20\x14\x24\x1b\x12\x1e\x17\ \x0f\x1d\x16\x0e\x1e\x16\x0e\x1c\x15\x0e\x1e\x16\x0e\x26\x1d\x12\ \x27\x1d\x12\x31\x25\x18\x37\x2a\x1a\x30\x24\x17\x29\x1f\x14\x23\ \x1a\x10\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2f\x24\x17\x29\x1f\ \x13\x24\x1b\x11\x28\x1e\x13\x27\x1e\x13\x2c\x21\x15\x31\x25\x18\ \x2f\x24\x17\x2f\x23\x16\x34\x27\x19\x3a\x2b\x1c\x35\x27\x19\x35\ \x28\x1a\x36\x28\x1a\x25\x1c\x12\x28\x1e\x13\x24\x1b\x12\x22\x1a\ \x10\x22\x19\x10\x1e\x17\x0e\x29\x1f\x14\x42\x34\x26\x2b\x2e\x32\ \x34\x38\x3c\x3d\x43\x47\x47\x4e\x52\x55\x5e\x62\x2b\x31\x34\x19\ \x1b\x1d\x34\x3b\x3c\x1b\x1d\x20\x27\x2c\x2f\x4d\x58\x5b\x16\x1b\ \x1c\x00\x00\x00\x0f\x11\x14\x4a\x52\x5b\x43\x4d\x57\x6b\x76\x7d\ \x72\x7d\x84\x72\x7c\x84\x63\x6a\x73\x49\x4e\x58\x5f\x65\x6e\x75\ \x7e\x84\x74\x7e\x85\x78\x7f\x86\x5b\x62\x68\x52\x58\x60\x71\x79\ \x7e\x7b\x84\x89\x79\x83\x87\x76\x7e\x82\x00\x00\x00\x0c\x09\x06\ \x41\x31\x21\x38\x2a\x1b\x62\x4a\x30\x64\x4b\x30\x4c\x39\x25\x1d\ \x16\x0e\x1f\x17\x0f\x27\x1d\x12\x30\x25\x17\x3e\x2f\x1e\x26\x1c\ \x12\x1d\x15\x0d\x20\x17\x0e\x1f\x17\x0f\x21\x19\x10\x23\x1a\x11\ \x2b\x21\x15\x31\x25\x18\x2e\x23\x16\x2b\x20\x15\x2b\x20\x14\x29\ \x1f\x14\x24\x1b\x11\x1f\x18\x0f\x22\x19\x11\x1f\x17\x0f\x1f\x17\ \x0f\x22\x19\x10\x21\x19\x0f\x21\x19\x10\x29\x1e\x13\x2a\x20\x14\ \x2c\x21\x15\x30\x24\x17\x28\x1e\x13\x26\x1d\x12\x21\x19\x10\x28\ \x1e\x14\x26\x1d\x12\x25\x1c\x11\x24\x1b\x11\x25\x1c\x12\x22\x19\ \x10\x1d\x16\x0e\x21\x19\x10\x24\x1b\x11\x23\x1a\x11\x28\x1e\x13\ \x2b\x21\x15\x2d\x22\x16\x31\x25\x18\x2f\x22\x16\x2c\x21\x15\x22\ \x1a\x10\x1b\x15\x0d\x25\x1b\x11\x2e\x22\x15\x2a\x20\x14\x2c\x21\ \x16\x2c\x21\x15\x2a\x20\x14\x24\x1b\x11\x22\x1a\x10\x24\x1c\x11\ \x26\x1d\x12\x2a\x1f\x14\x31\x25\x18\x2d\x21\x15\x25\x1c\x12\x24\ \x1b\x11\x26\x1d\x12\x24\x1a\x11\x25\x1b\x11\x27\x1d\x13\x32\x25\ \x18\x2c\x21\x15\x20\x18\x0f\x29\x1f\x13\x34\x28\x19\x3a\x2c\x1b\ \x39\x2b\x1b\x33\x27\x19\x32\x26\x18\x24\x1b\x12\x23\x1a\x11\x28\ \x1e\x13\x28\x1e\x13\x2d\x22\x15\x2c\x21\x15\x2b\x20\x15\x27\x1e\ \x12\x2c\x21\x15\x29\x1f\x14\x23\x1b\x11\x25\x1c\x12\x2d\x21\x16\ \x22\x19\x10\x24\x1b\x11\x20\x18\x10\x27\x1d\x12\x27\x1e\x13\x37\ \x29\x1a\x3c\x2e\x1d\x2d\x22\x16\x2d\x22\x16\x2c\x21\x15\x2b\x20\ \x15\x2b\x20\x14\x2d\x22\x16\x29\x1f\x14\x27\x1e\x13\x25\x1c\x12\ \x28\x1e\x13\x2c\x21\x15\x2d\x22\x16\x2e\x22\x16\x2e\x22\x16\x2b\ \x21\x15\x2d\x22\x15\x34\x27\x19\x37\x29\x1a\x36\x28\x1a\x35\x28\ \x19\x2a\x1f\x14\x2b\x20\x15\x2e\x22\x16\x27\x1d\x13\x24\x1b\x11\ \x23\x1a\x11\x2c\x21\x15\x48\x38\x28\x2e\x30\x31\x33\x37\x3b\x3c\ \x42\x45\x47\x4e\x51\x53\x5b\x5f\x21\x24\x26\x16\x17\x18\x1d\x1f\ \x21\x4e\x57\x5d\x69\x74\x79\x32\x3a\x3e\x0b\x0c\x0e\x06\x05\x06\ \x17\x1a\x1d\x72\x7c\x84\x4a\x54\x5c\x4b\x56\x5e\x6e\x79\x80\x73\ \x7d\x84\x75\x7e\x85\x5e\x65\x6d\x46\x4b\x54\x67\x6f\x77\x76\x80\ \x87\x7a\x82\x88\x77\x7f\x83\x5d\x63\x6a\x57\x5e\x65\x71\x78\x7e\ \x7a\x83\x88\x7c\x86\x89\x00\x00\x00\x05\x03\x02\x40\x30\x20\x39\ \x2b\x1c\x5f\x48\x2f\x5e\x46\x2e\x4e\x3b\x26\x1a\x14\x0c\x1e\x17\ \x0f\x24\x1a\x11\x2c\x21\x15\x33\x27\x18\x24\x1b\x11\x1e\x16\x0e\ \x1e\x16\x0f\x1d\x16\x0e\x1d\x16\x0e\x1f\x18\x0f\x27\x1d\x13\x2d\ \x22\x16\x34\x27\x1a\x3b\x2c\x1c\x38\x2a\x1b\x32\x26\x19\x2b\x20\ \x15\x28\x1e\x13\x2a\x1f\x15\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\ \x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x28\x1e\x13\x32\x26\x18\x38\ \x2a\x1b\x2c\x21\x15\x2e\x22\x16\x23\x1b\x11\x24\x1b\x11\x2b\x21\ \x15\x2f\x24\x17\x2a\x20\x15\x27\x1d\x13\x28\x1d\x13\x26\x1c\x12\ \x28\x1e\x14\x2b\x20\x15\x27\x1d\x13\x2c\x21\x15\x30\x24\x17\x30\ \x24\x17\x32\x26\x18\x31\x24\x17\x2d\x22\x16\x28\x1e\x13\x1f\x18\ \x0f\x24\x1b\x11\x27\x1e\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\ \x2c\x21\x14\x24\x1b\x11\x1b\x15\x0d\x22\x1a\x10\x20\x18\x0f\x1d\ \x16\x0e\x25\x1c\x12\x2b\x20\x15\x29\x1f\x14\x27\x1e\x13\x26\x1d\ \x12\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\ \x24\x1b\x11\x23\x1b\x11\x2e\x23\x16\x34\x27\x19\x39\x2b\x1b\x39\ \x2b\x1c\x37\x29\x1a\x36\x29\x1a\x33\x27\x19\x30\x24\x17\x32\x26\ \x18\x29\x1f\x13\x2e\x23\x16\x33\x27\x19\x2c\x21\x15\x26\x1c\x12\ \x21\x19\x0f\x25\x1b\x11\x28\x1e\x13\x2c\x21\x15\x28\x1e\x13\x2e\ \x23\x16\x22\x1a\x11\x1d\x16\x0d\x22\x19\x10\x38\x2a\x1a\x38\x2a\ \x1b\x34\x27\x19\x2e\x22\x15\x32\x25\x17\x2e\x22\x16\x30\x24\x17\ \x2c\x21\x15\x24\x1b\x11\x22\x1a\x11\x21\x19\x10\x25\x1c\x12\x2b\ \x20\x15\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x26\x1d\x12\x2b\x20\ \x14\x34\x27\x18\x33\x27\x18\x32\x25\x18\x33\x26\x18\x28\x1e\x13\ \x25\x1b\x12\x25\x1b\x12\x1f\x17\x0f\x1c\x15\x0d\x1e\x16\x0e\x26\ \x1d\x12\x47\x38\x27\x2b\x2c\x2d\x32\x36\x39\x3b\x41\x45\x46\x4d\ \x51\x50\x58\x5c\x21\x24\x26\x00\x00\x00\x26\x29\x2b\x62\x6b\x71\ \x6c\x77\x7e\x38\x3e\x43\x1e\x1f\x24\x09\x09\x0a\x1a\x1c\x20\x72\ \x7d\x83\x68\x73\x79\x47\x51\x59\x50\x5a\x62\x6f\x79\x80\x75\x7f\ \x86\x78\x81\x87\x5a\x60\x67\x4c\x51\x5a\x69\x70\x79\x78\x81\x85\ \x7a\x83\x87\x78\x80\x85\x5f\x66\x6c\x55\x5c\x62\x71\x79\x7e\x80\ \x8a\x8e\x00\x00\x00\x09\x07\x05\x48\x36\x24\x46\x35\x22\x5d\x45\ \x2d\x73\x55\x38\x5c\x45\x2d\x23\x1a\x11\x20\x18\x10\x23\x1a\x11\ \x2a\x20\x14\x27\x1d\x12\x25\x1c\x11\x1f\x17\x0f\x1f\x17\x0f\x1c\ \x15\x0d\x1d\x15\x0d\x20\x18\x10\x25\x1c\x12\x26\x1d\x12\x2e\x22\ \x16\x34\x27\x19\x39\x2b\x1b\x37\x29\x1b\x2e\x22\x16\x2c\x21\x15\ \x2a\x1f\x15\x27\x1e\x13\x24\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x23\ \x1a\x10\x1f\x17\x0f\x24\x1b\x12\x2f\x23\x17\x35\x27\x19\x36\x29\ \x1a\x35\x28\x1a\x30\x24\x17\x32\x26\x18\x31\x25\x17\x32\x26\x18\ \x3a\x2c\x1d\x31\x24\x18\x27\x1d\x13\x25\x1c\x12\x28\x1e\x13\x2c\ \x22\x15\x24\x1c\x12\x21\x19\x10\x24\x1b\x11\x26\x1c\x12\x2e\x23\ \x16\x2f\x23\x16\x2e\x22\x16\x28\x1e\x13\x1c\x15\x0d\x1f\x17\x0f\ \x1b\x15\x0d\x23\x1b\x11\x2b\x21\x15\x2d\x22\x15\x2f\x23\x16\x2e\ \x21\x16\x26\x1c\x12\x27\x1d\x13\x24\x1b\x12\x1f\x18\x0f\x24\x1a\ \x11\x2b\x20\x14\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\x1f\x18\x0f\ \x20\x18\x0f\x1f\x18\x0f\x21\x18\x0f\x23\x1b\x11\x23\x1a\x11\x25\ \x1b\x11\x29\x1f\x13\x30\x24\x17\x38\x29\x1a\x3e\x2f\x1e\x3e\x2f\ \x1e\x44\x33\x21\x47\x35\x22\x46\x34\x21\x3a\x2b\x1b\x28\x1e\x13\ \x27\x1d\x13\x2e\x22\x16\x2d\x22\x16\x27\x1d\x13\x27\x1d\x12\x2a\ \x20\x14\x29\x1f\x14\x2f\x24\x16\x30\x24\x17\x34\x27\x19\x2d\x23\ \x16\x24\x1c\x12\x30\x24\x17\x39\x2b\x1b\x39\x2a\x1b\x35\x28\x1a\ \x2c\x21\x15\x2f\x24\x17\x31\x25\x17\x31\x25\x18\x28\x1d\x13\x27\ \x1d\x13\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x2d\x22\x16\x2e\x22\ \x16\x29\x1f\x14\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\ \x2a\x20\x14\x2c\x21\x15\x34\x27\x19\x2a\x1f\x14\x2f\x23\x16\x1c\ \x15\x0d\x22\x19\x10\x20\x18\x10\x21\x18\x0f\x1f\x16\x0e\x39\x2d\ \x1f\x30\x30\x2f\x31\x36\x39\x3a\x3f\x43\x47\x4d\x51\x3f\x46\x49\ \x28\x2c\x2f\x06\x07\x07\x2b\x2f\x30\x63\x6d\x72\x6e\x77\x7f\x47\ \x4e\x56\x44\x48\x51\x00\x00\x00\x36\x3a\x3f\x75\x80\x86\x6f\x79\ \x7f\x69\x73\x79\x4a\x54\x5c\x57\x60\x68\x74\x7e\x85\x77\x80\x87\ \x75\x7e\x83\x5a\x60\x67\x4f\x53\x5c\x6c\x74\x7a\x7b\x84\x89\x79\ \x82\x86\x77\x7f\x83\x5f\x67\x6c\x5a\x60\x64\x73\x7a\x7f\x00\x00\ \x00\x09\x07\x05\x48\x36\x24\x45\x34\x22\x57\x41\x2a\x6f\x53\x36\ \x5d\x45\x2d\x28\x1e\x13\x30\x24\x17\x2d\x22\x15\x35\x28\x1a\x2c\ \x20\x14\x27\x1d\x12\x23\x1b\x10\x1a\x13\x0c\x1e\x16\x0e\x20\x18\ \x0f\x21\x19\x0f\x1d\x17\x0e\x21\x19\x10\x28\x1e\x13\x2a\x20\x15\ \x31\x25\x18\x2f\x23\x17\x26\x1d\x12\x27\x1d\x12\x28\x1d\x13\x29\ \x1f\x14\x28\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x1f\x18\ \x0f\x25\x1c\x12\x2d\x22\x15\x35\x27\x19\x33\x27\x19\x36\x28\x1a\ \x38\x29\x1b\x3d\x2e\x1d\x39\x2b\x1c\x2d\x22\x15\x2a\x1f\x14\x25\ \x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x0f\x27\x1e\x13\x22\x1a\ \x10\x1a\x14\x0c\x1e\x16\x0e\x1e\x17\x0f\x2b\x20\x15\x33\x27\x19\ \x2f\x24\x17\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x22\x1a\x10\x21\ \x19\x10\x24\x1b\x11\x25\x1b\x11\x28\x1e\x13\x2e\x22\x16\x2d\x21\ \x16\x27\x1d\x12\x23\x1b\x11\x1e\x16\x0f\x1d\x15\x0e\x29\x1f\x13\ \x30\x24\x17\x27\x1d\x12\x2b\x20\x14\x27\x1d\x13\x24\x1b\x11\x20\ \x18\x0f\x21\x18\x0f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x11\x27\x1e\ \x13\x2f\x23\x17\x33\x26\x19\x36\x29\x1a\x3a\x2b\x1c\x35\x27\x1a\ \x3c\x2d\x1d\x40\x30\x1f\x33\x27\x19\x2c\x21\x15\x28\x1e\x14\x2a\ \x1f\x14\x32\x25\x18\x33\x26\x19\x36\x29\x1a\x32\x25\x18\x36\x29\ \x1a\x3a\x2b\x1b\x3b\x2c\x1c\x2d\x22\x16\x33\x26\x18\x24\x1b\x12\ \x26\x1d\x12\x35\x28\x19\x26\x1d\x12\x28\x1e\x13\x27\x1d\x13\x2c\ \x21\x15\x35\x28\x1a\x2d\x22\x16\x1f\x18\x0f\x28\x1e\x13\x25\x1c\ \x12\x1a\x14\x0d\x1e\x16\x0f\x26\x1c\x12\x2a\x1f\x14\x22\x1a\x10\ \x20\x18\x0f\x21\x18\x10\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x32\ \x26\x18\x2f\x23\x16\x28\x1f\x13\x30\x23\x17\x22\x1a\x10\x1e\x16\ \x0e\x21\x19\x10\x1f\x18\x0f\x22\x19\x0f\x3b\x2d\x1f\x35\x32\x2f\ \x2f\x34\x37\x39\x3f\x42\x47\x4d\x51\x32\x36\x3a\x32\x36\x3a\x13\ \x15\x15\x32\x37\x3a\x65\x6e\x75\x6d\x77\x80\x69\x73\x7c\x36\x3b\ \x40\x39\x3d\x40\x37\x3d\x43\x6d\x76\x7d\x73\x7d\x83\x72\x7c\x83\ \x67\x70\x78\x49\x51\x5b\x5b\x64\x6c\x75\x7f\x86\x75\x7f\x83\x76\ \x7e\x83\x5c\x61\x68\x50\x55\x5c\x6d\x76\x7c\x7a\x85\x89\x7b\x88\ \x8c\x76\x83\x87\x65\x6d\x71\x58\x5d\x61\x00\x00\x00\x00\x00\x00\ \x38\x2a\x1b\x3d\x2e\x1e\x59\x43\x2b\x62\x4a\x2f\x61\x48\x2f\x2b\ \x20\x15\x33\x26\x19\x3b\x2c\x1c\x33\x26\x19\x31\x24\x17\x2a\x20\ \x14\x1e\x17\x0e\x1c\x14\x0d\x1e\x17\x0e\x1e\x17\x0f\x1d\x16\x0e\ \x1d\x15\x0e\x20\x18\x0f\x25\x1c\x12\x28\x1e\x14\x2e\x23\x16\x2f\ \x23\x17\x28\x1d\x13\x28\x1e\x12\x2e\x22\x16\x27\x1e\x13\x2b\x20\ \x15\x2a\x20\x14\x24\x1b\x11\x1e\x16\x0e\x1c\x15\x0d\x22\x1a\x10\ \x23\x1b\x11\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x3a\x2b\x1c\x39\ \x2b\x1b\x32\x26\x18\x28\x1e\x13\x20\x18\x0f\x21\x19\x0f\x20\x18\ \x0f\x1f\x17\x0e\x1f\x17\x0f\x25\x1c\x12\x23\x1a\x10\x1b\x15\x0d\ \x21\x19\x10\x26\x1d\x13\x2f\x23\x16\x30\x23\x17\x2e\x23\x16\x2a\ \x1f\x14\x23\x1a\x11\x1f\x17\x0f\x26\x1c\x12\x23\x1b\x11\x2a\x20\ \x14\x27\x1d\x13\x26\x1d\x12\x26\x1c\x12\x2b\x20\x14\x33\x26\x18\ \x34\x27\x18\x33\x26\x18\x29\x1f\x14\x30\x24\x17\x39\x2b\x1c\x32\ \x26\x18\x2f\x24\x16\x35\x27\x1a\x30\x25\x17\x2a\x20\x14\x25\x1c\ \x12\x1e\x17\x0e\x1d\x16\x0e\x23\x1b\x11\x23\x1a\x11\x22\x1a\x10\ \x2c\x21\x15\x26\x1d\x12\x2b\x20\x14\x25\x1c\x12\x2e\x23\x16\x30\ \x24\x17\x26\x1d\x12\x28\x1e\x13\x28\x1f\x14\x25\x1c\x12\x2a\x1f\ \x14\x2a\x20\x14\x30\x24\x18\x2f\x23\x17\x30\x24\x17\x36\x29\x1a\ \x2d\x22\x16\x32\x26\x18\x30\x24\x17\x2d\x22\x15\x28\x1f\x14\x33\ \x26\x19\x23\x1a\x11\x20\x18\x0f\x26\x1d\x12\x2f\x23\x17\x31\x25\ \x17\x2f\x23\x17\x2e\x22\x16\x2c\x21\x15\x27\x1e\x12\x23\x1b\x11\ \x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x20\x18\x0f\x2c\ \x22\x15\x36\x29\x1a\x2e\x23\x16\x2c\x21\x15\x33\x26\x19\x2f\x24\ \x17\x2b\x21\x15\x2a\x1f\x14\x25\x1d\x12\x1b\x14\x0d\x20\x19\x0f\ \x1c\x16\x0e\x21\x19\x10\x34\x28\x1b\x39\x34\x2d\x2f\x34\x37\x39\ \x3e\x41\x45\x4b\x4f\x47\x4d\x52\x2f\x33\x36\x2c\x31\x34\x56\x5f\ \x64\x69\x71\x79\x6b\x76\x7d\x6f\x79\x80\x3f\x47\x4e\x69\x72\x78\ \x51\x59\x60\x3c\x43\x4a\x6e\x78\x80\x75\x7f\x86\x73\x7d\x84\x64\ \x6c\x74\x49\x50\x59\x60\x69\x70\x77\x81\x86\x78\x81\x86\x74\x7c\ \x82\x63\x69\x70\x4c\x53\x5a\x66\x6e\x74\x38\x42\x46\x41\x4d\x52\ \x73\x80\x86\x65\x6d\x70\x00\x00\x00\x01\x01\x01\x3d\x2d\x1e\x45\ \x34\x22\x56\x40\x29\x5b\x44\x2c\x66\x4c\x31\x31\x26\x18\x36\x29\ \x1b\x2f\x24\x17\x31\x25\x17\x34\x27\x19\x2c\x22\x15\x1f\x17\x0f\ \x19\x13\x0c\x1c\x15\x0d\x21\x18\x0f\x1f\x17\x0f\x20\x18\x0f\x20\ \x18\x0f\x23\x1a\x11\x26\x1c\x12\x30\x24\x17\x33\x26\x18\x2d\x22\ \x15\x2a\x20\x14\x26\x1c\x12\x29\x1e\x14\x2c\x21\x15\x31\x25\x17\ \x30\x24\x17\x1f\x17\x0f\x24\x1a\x11\x21\x18\x0f\x29\x20\x14\x2f\ \x23\x16\x33\x26\x19\x36\x28\x1a\x32\x25\x18\x33\x26\x19\x34\x27\ \x19\x31\x25\x18\x2d\x21\x15\x26\x1c\x12\x27\x1d\x13\x23\x1a\x11\ \x20\x18\x10\x27\x1e\x13\x27\x1d\x13\x23\x1a\x11\x25\x1c\x12\x29\ \x1f\x14\x29\x1f\x13\x27\x1e\x12\x24\x1b\x11\x1d\x16\x0e\x21\x18\ \x0f\x22\x19\x10\x1e\x16\x0e\x21\x18\x10\x2b\x1f\x14\x24\x1b\x12\ \x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x3a\x2b\x1c\x3a\x2b\x1c\x34\ \x26\x19\x2f\x23\x17\x34\x27\x19\x2d\x21\x16\x22\x19\x10\x23\x1a\ \x11\x24\x1c\x12\x2e\x23\x16\x2e\x23\x16\x2a\x1f\x14\x24\x1b\x11\ \x1f\x18\x0f\x1f\x16\x0e\x20\x18\x10\x1e\x16\x0e\x20\x19\x0f\x1e\ \x17\x0e\x1d\x16\x0e\x1d\x16\x0e\x2b\x20\x14\x2b\x21\x15\x23\x1a\ \x10\x24\x1b\x11\x27\x1e\x13\x28\x1e\x14\x2a\x1f\x14\x2b\x21\x15\ \x2f\x24\x17\x36\x29\x1a\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2c\ \x21\x15\x30\x24\x17\x26\x1d\x12\x2c\x22\x16\x2b\x21\x15\x2e\x23\ \x16\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\x29\x1f\x14\x30\x25\x17\ \x35\x27\x19\x30\x23\x17\x2b\x21\x15\x27\x1d\x12\x24\x1b\x11\x1d\ \x16\x0d\x1e\x16\x0d\x21\x19\x10\x22\x19\x10\x2b\x20\x14\x2f\x24\ \x17\x30\x24\x17\x2a\x1f\x14\x34\x26\x19\x33\x27\x19\x2d\x22\x16\ \x2b\x20\x15\x2b\x20\x14\x27\x1d\x12\x29\x1e\x13\x31\x24\x17\x2c\ \x21\x16\x38\x2b\x1d\x3d\x36\x2e\x2f\x33\x36\x38\x3d\x41\x43\x4a\ \x4d\x4e\x55\x5a\x2b\x2f\x33\x43\x49\x4f\x66\x70\x77\x66\x70\x78\ \x6b\x76\x7d\x6e\x79\x81\x69\x73\x7c\x6e\x78\x7f\x6d\x76\x7d\x4e\ \x56\x5d\x3e\x48\x4d\x74\x7e\x85\x74\x7e\x85\x73\x7c\x83\x63\x6a\ \x72\x4d\x54\x5d\x67\x70\x76\x75\x7f\x84\x79\x83\x88\x79\x83\x87\ \x62\x68\x6e\x2d\x31\x36\x04\x05\x05\x08\x0b\x0c\x3a\x46\x4b\x79\ \x87\x8a\x00\x00\x00\x01\x01\x00\x27\x1e\x13\x38\x2a\x1b\x4a\x37\ \x23\x65\x4b\x31\x69\x4f\x33\x2f\x23\x16\x3a\x2c\x1c\x2e\x22\x16\ \x33\x27\x18\x25\x1b\x12\x27\x1d\x12\x25\x1c\x12\x22\x19\x10\x1b\ \x14\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x0f\x1b\x14\x0d\x1b\x14\ \x0d\x1e\x16\x0e\x2b\x20\x14\x30\x24\x17\x2f\x24\x16\x26\x1c\x12\ \x26\x1d\x13\x2b\x20\x14\x2a\x20\x14\x2d\x22\x16\x2f\x24\x17\x22\ \x1a\x10\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x2b\x20\x15\x2f\x24\ \x17\x34\x26\x19\x30\x25\x17\x2f\x24\x16\x35\x28\x19\x31\x25\x18\ \x30\x24\x18\x2b\x21\x15\x30\x24\x17\x32\x26\x18\x2c\x21\x15\x2a\ \x1f\x15\x2c\x21\x15\x25\x1c\x12\x27\x1e\x13\x24\x1b\x12\x23\x1a\ \x11\x25\x1b\x12\x24\x1b\x11\x23\x1a\x11\x1f\x18\x0f\x21\x19\x10\ \x22\x19\x10\x20\x18\x0f\x25\x1b\x12\x20\x18\x0f\x1f\x17\x0f\x20\ \x18\x0f\x1e\x17\x0e\x21\x19\x10\x2d\x22\x16\x29\x1f\x14\x2e\x23\ \x16\x2f\x23\x16\x24\x1b\x11\x27\x1e\x14\x2a\x20\x14\x25\x1c\x12\ \x29\x1f\x14\x2c\x21\x15\x33\x26\x18\x20\x18\x0f\x20\x17\x0f\x1e\ \x16\x0e\x22\x19\x10\x22\x19\x10\x24\x1b\x12\x23\x1b\x11\x23\x1b\ \x11\x27\x1e\x13\x1f\x18\x0f\x25\x1c\x12\x2a\x1f\x13\x23\x1b\x11\ \x22\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x14\x30\x24\x17\x32\ \x25\x18\x28\x1e\x13\x29\x1e\x14\x2c\x20\x15\x2c\x21\x15\x2d\x22\ \x15\x2d\x23\x16\x2e\x22\x16\x2c\x21\x15\x30\x24\x17\x2d\x22\x16\ \x21\x19\x10\x25\x1c\x12\x26\x1d\x12\x30\x24\x16\x3a\x2b\x1b\x3e\ \x2e\x1e\x39\x2a\x1b\x2a\x20\x14\x29\x1e\x13\x26\x1c\x12\x25\x1b\ \x11\x24\x1b\x11\x24\x1b\x11\x29\x1f\x14\x2b\x21\x15\x28\x1d\x13\ \x29\x1e\x13\x29\x1e\x14\x2b\x20\x15\x23\x1a\x11\x1e\x16\x0e\x29\ \x1f\x13\x27\x1d\x12\x2b\x20\x15\x2f\x23\x16\x2e\x22\x16\x35\x29\ \x1b\x2c\x28\x23\x2e\x32\x35\x37\x3c\x3f\x42\x48\x4c\x4a\x52\x57\ \x46\x4d\x54\x56\x5e\x66\x63\x6d\x74\x67\x71\x79\x6b\x75\x7d\x6e\ \x77\x80\x6d\x77\x7f\x6f\x79\x80\x73\x7b\x82\x6d\x75\x7c\x4e\x57\ \x5b\x46\x4f\x54\x77\x81\x88\x75\x7e\x85\x75\x7d\x84\x67\x6e\x76\ \x4b\x52\x5b\x67\x70\x76\x78\x82\x86\x7a\x84\x88\x7b\x84\x89\x3a\ \x3e\x42\x00\x00\x00\x00\x00\x00\x0f\x12\x14\x60\x6d\x72\x00\x00\ \x00\x0f\x0b\x06\x49\x37\x24\x3f\x30\x1f\x3e\x2f\x1e\x51\x3c\x27\ \x57\x41\x2a\x2a\x20\x14\x29\x1e\x14\x24\x1b\x11\x2b\x20\x15\x2a\ \x20\x14\x25\x1b\x11\x1f\x17\x0f\x20\x19\x0f\x24\x1b\x10\x23\x1a\ \x10\x20\x17\x0f\x1a\x13\x0c\x18\x12\x0c\x16\x10\x0b\x1c\x15\x0d\ \x2d\x22\x16\x30\x23\x17\x2c\x21\x15\x23\x1b\x11\x21\x19\x10\x2d\ \x22\x15\x2e\x22\x16\x2b\x20\x15\x22\x1a\x10\x1b\x14\x0d\x1b\x15\ \x0d\x23\x1a\x11\x2a\x1f\x14\x2a\x1f\x13\x26\x1d\x12\x2b\x20\x14\ \x32\x26\x17\x34\x27\x19\x36\x29\x1b\x37\x29\x1a\x31\x24\x18\x2c\ \x22\x16\x31\x25\x18\x30\x24\x17\x2e\x22\x16\x29\x1f\x14\x27\x1d\ \x13\x2b\x21\x15\x37\x29\x1b\x30\x24\x17\x2f\x23\x17\x30\x24\x18\ \x28\x1e\x14\x28\x1e\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\x1d\ \x16\x0e\x1d\x16\x0e\x1d\x15\x0e\x23\x1a\x10\x1e\x16\x0e\x17\x11\ \x0b\x19\x13\x0c\x20\x18\x10\x28\x1e\x13\x29\x1f\x13\x28\x1e\x14\ \x2d\x22\x16\x2b\x20\x14\x25\x1c\x11\x1d\x16\x0d\x20\x18\x0f\x29\ \x1f\x13\x31\x25\x18\x28\x1e\x13\x28\x1e\x13\x1d\x16\x0e\x2a\x1f\ \x14\x27\x1d\x12\x2b\x21\x14\x23\x1a\x11\x2c\x20\x15\x39\x2a\x1b\ \x2d\x22\x15\x27\x1e\x13\x24\x1b\x12\x23\x1a\x11\x22\x1a\x10\x23\ \x1a\x10\x27\x1d\x13\x22\x1a\x11\x2b\x20\x14\x30\x24\x17\x2b\x20\ \x15\x2b\x20\x15\x29\x1f\x14\x2e\x22\x16\x33\x27\x19\x29\x1f\x14\ \x2c\x21\x15\x24\x1b\x11\x29\x1f\x14\x32\x25\x17\x29\x1f\x14\x23\ \x1b\x11\x21\x19\x10\x2a\x20\x14\x33\x26\x19\x33\x26\x19\x34\x27\ \x19\x2e\x23\x17\x2a\x20\x14\x2c\x20\x14\x34\x27\x19\x2e\x22\x16\ \x2a\x1f\x14\x2c\x21\x15\x25\x1d\x12\x1e\x17\x0f\x27\x1d\x12\x23\ \x1a\x11\x20\x18\x10\x28\x1e\x13\x1c\x14\x0d\x1e\x16\x0e\x22\x19\ \x11\x2f\x23\x17\x30\x23\x16\x32\x26\x17\x32\x26\x18\x30\x2a\x23\ \x2d\x31\x35\x35\x3a\x3e\x40\x46\x4a\x4a\x51\x56\x54\x5c\x62\x5c\ \x65\x6c\x63\x6d\x75\x68\x72\x79\x6c\x76\x7e\x6c\x77\x7f\x71\x7a\ \x81\x72\x7b\x81\x72\x79\x80\x73\x7b\x82\x6d\x76\x7a\x48\x50\x55\ \x50\x59\x5e\x77\x81\x87\x76\x7f\x86\x78\x7f\x86\x63\x68\x70\x48\ \x4c\x55\x6f\x76\x7b\x7b\x86\x8b\x7f\x8a\x91\x51\x59\x5e\x00\x00\ \x00\x00\x00\x00\x05\x05\x05\x3c\x44\x47\x00\x00\x00\x02\x02\x01\ \x36\x2a\x1b\x40\x30\x1f\x4c\x39\x25\x59\x43\x2c\x60\x48\x2f\x38\ \x2a\x1b\x1d\x16\x0e\x20\x18\x10\x2e\x22\x16\x24\x1b\x11\x21\x19\ \x0f\x17\x12\x0c\x1c\x16\x0e\x1e\x17\x0f\x21\x19\x10\x25\x1c\x12\ \x1f\x17\x0f\x16\x11\x0a\x18\x12\x0b\x23\x1a\x11\x2a\x20\x14\x29\ \x20\x13\x29\x1f\x14\x1e\x16\x0f\x23\x1b\x11\x2b\x21\x14\x32\x26\ \x18\x24\x1b\x11\x21\x18\x10\x1c\x15\x0d\x20\x18\x0f\x26\x1d\x12\ \x27\x1d\x13\x29\x1e\x14\x24\x1c\x12\x2b\x21\x15\x27\x1d\x13\x2e\ \x21\x15\x37\x29\x1b\x38\x29\x1b\x38\x2a\x1a\x38\x2a\x1b\x39\x2b\ \x1c\x2a\x20\x14\x1f\x17\x0f\x24\x1b\x11\x24\x1a\x11\x22\x1a\x10\ \x2e\x22\x16\x26\x1c\x12\x23\x1b\x11\x23\x1a\x11\x23\x1a\x11\x2b\ \x20\x15\x24\x1b\x11\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x20\x18\ \x0f\x26\x1c\x11\x2a\x1f\x14\x26\x1c\x12\x25\x1c\x11\x1e\x17\x0e\ \x1d\x16\x0e\x20\x19\x10\x22\x1a\x11\x27\x1e\x12\x2b\x20\x15\x2c\ \x21\x15\x26\x1d\x12\x25\x1c\x12\x22\x1a\x10\x25\x1c\x12\x29\x1e\ \x13\x20\x18\x0f\x21\x19\x10\x29\x1e\x13\x22\x19\x10\x2a\x20\x14\ \x26\x1d\x12\x24\x1c\x11\x21\x19\x10\x26\x1c\x13\x2a\x20\x14\x2a\ \x1f\x14\x27\x1d\x13\x20\x18\x0f\x23\x1a\x10\x28\x1e\x13\x24\x1b\ \x11\x1e\x17\x0f\x27\x1d\x12\x31\x24\x18\x28\x1e\x13\x24\x1b\x11\ \x28\x1e\x13\x27\x1d\x12\x30\x25\x18\x2f\x23\x16\x36\x29\x1a\x33\ \x26\x18\x36\x28\x1a\x34\x27\x19\x2e\x22\x16\x25\x1c\x11\x2a\x20\ \x14\x30\x25\x17\x3c\x2d\x1d\x3b\x2c\x1d\x36\x28\x1a\x38\x2a\x1b\ \x32\x26\x18\x34\x27\x19\x35\x28\x1a\x34\x27\x19\x34\x27\x19\x3d\ \x2d\x1d\x39\x2b\x1c\x24\x1b\x11\x22\x19\x10\x1f\x17\x0f\x23\x1a\ \x10\x21\x19\x10\x20\x18\x0f\x19\x13\x0b\x18\x13\x0c\x1e\x17\x0e\ \x21\x19\x10\x23\x1b\x11\x3b\x2c\x1e\x47\x3b\x2f\x2d\x31\x33\x35\ \x39\x3e\x40\x45\x4a\x4b\x51\x57\x53\x5a\x61\x5b\x63\x6a\x62\x6b\ \x72\x66\x71\x78\x6a\x76\x7c\x6d\x76\x7e\x70\x7a\x81\x72\x7b\x81\ \x73\x7b\x82\x73\x7b\x82\x75\x7e\x83\x6c\x74\x78\x4b\x52\x57\x58\ \x61\x68\x79\x82\x89\x77\x80\x86\x7a\x83\x88\x5f\x65\x6c\x48\x4d\ \x54\x6e\x77\x7e\x7e\x8a\x90\x6d\x77\x7b\x08\x08\x08\x00\x00\x00\ \x01\x01\x01\x27\x2d\x2f\x00\x00\x00\x00\x00\x00\x26\x1d\x13\x3a\ \x2d\x1d\x41\x30\x1f\x54\x3f\x28\x62\x49\x2f\x4f\x3b\x26\x1e\x16\ \x0f\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x1c\x15\x0d\x1f\x18\x0f\ \x29\x20\x14\x22\x1a\x10\x2b\x20\x15\x2a\x1f\x14\x2b\x20\x15\x26\ \x1d\x12\x1c\x15\x0d\x27\x1d\x13\x2f\x24\x17\x2e\x22\x16\x22\x1a\ \x10\x24\x1c\x11\x28\x1f\x13\x29\x20\x14\x2a\x20\x15\x27\x1d\x13\ \x27\x1d\x13\x20\x18\x0f\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x1e\ \x17\x0e\x1f\x17\x0f\x23\x1a\x11\x22\x1a\x11\x24\x1b\x11\x24\x1b\ \x11\x28\x1e\x13\x2d\x22\x16\x34\x27\x19\x36\x29\x1a\x2a\x20\x14\ \x1f\x17\x0f\x1e\x16\x0f\x1d\x16\x0e\x21\x19\x0f\x1f\x17\x0f\x20\ \x18\x0f\x25\x1c\x12\x26\x1c\x12\x26\x1c\x11\x28\x1e\x14\x21\x19\ \x0f\x22\x19\x10\x1e\x16\x0e\x19\x13\x0c\x1c\x15\x0e\x1d\x16\x0e\ \x20\x18\x10\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x1a\x13\x0c\x20\ \x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x26\x1c\x12\x2d\x21\x16\x29\x1f\ \x14\x2d\x22\x16\x2b\x20\x14\x21\x19\x10\x21\x19\x0f\x19\x13\x0b\ \x1e\x16\x0d\x2a\x1f\x13\x2b\x20\x14\x20\x18\x0f\x26\x1d\x12\x2d\ \x22\x16\x32\x25\x18\x36\x28\x1a\x3b\x2d\x1c\x33\x27\x18\x33\x26\ \x18\x2d\x21\x15\x28\x1e\x13\x22\x1a\x10\x26\x1d\x12\x28\x1e\x13\ \x25\x1c\x12\x24\x1c\x12\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\ \x23\x16\x2b\x20\x15\x2b\x21\x15\x30\x24\x17\x2f\x23\x17\x3a\x2c\ \x1d\x39\x2b\x1c\x29\x1f\x14\x23\x1b\x11\x22\x19\x10\x2a\x1f\x13\ \x31\x25\x18\x36\x29\x1a\x30\x24\x17\x2a\x20\x14\x2c\x21\x15\x2c\ \x21\x15\x2d\x21\x16\x32\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x39\x2a\ \x1b\x2d\x22\x16\x2a\x1f\x14\x23\x1a\x11\x25\x1c\x12\x1e\x16\x0e\ \x1d\x16\x0d\x19\x13\x0c\x1b\x14\x0d\x22\x1a\x11\x22\x1a\x11\x25\ \x1c\x11\x32\x25\x19\x46\x39\x2b\x2b\x2f\x32\x34\x39\x3d\x3f\x44\ \x49\x4a\x50\x56\x54\x5b\x62\x5e\x65\x6c\x63\x6d\x74\x67\x71\x78\ \x6b\x75\x7e\x6d\x79\x80\x6f\x7a\x81\x70\x7a\x81\x71\x7b\x82\x75\ \x7e\x81\x74\x7d\x82\x77\x7f\x86\x66\x6f\x73\x43\x4a\x4f\x60\x69\ \x6e\x79\x82\x86\x7b\x84\x88\x7b\x84\x88\x5c\x61\x68\x43\x48\x50\ \x74\x7d\x82\x7c\x87\x8a\x35\x3b\x3c\x00\x00\x00\x00\x00\x00\x16\ \x1a\x1b\x00\x00\x00\x00\x00\x00\x29\x1f\x15\x49\x38\x24\x40\x30\ \x1f\x50\x3c\x27\x6a\x4f\x34\x50\x3d\x27\x23\x1a\x11\x10\x0c\x07\ \x1c\x15\x0e\x26\x1c\x12\x28\x1e\x13\x2c\x21\x14\x27\x1d\x13\x28\ \x1f\x14\x28\x1e\x13\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x20\x18\ \x0f\x24\x1b\x11\x29\x1f\x14\x21\x19\x10\x1a\x14\x0c\x1d\x15\x0e\ \x20\x18\x0f\x25\x1b\x12\x19\x13\x0b\x18\x13\x0c\x2c\x21\x15\x26\ \x1d\x12\x20\x18\x10\x21\x19\x0f\x1f\x18\x0f\x27\x1d\x12\x20\x18\ \x10\x24\x1b\x12\x26\x1c\x12\x27\x1e\x13\x23\x1b\x11\x2e\x23\x16\ \x36\x28\x1a\x36\x28\x19\x2e\x22\x16\x2d\x22\x15\x25\x1c\x12\x23\ \x1b\x11\x28\x1e\x13\x23\x19\x10\x1b\x15\x0d\x1b\x15\x0d\x1f\x17\ \x0f\x25\x1c\x11\x21\x19\x10\x20\x18\x0f\x25\x1c\x12\x24\x1c\x12\ \x24\x1b\x11\x19\x13\x0c\x16\x11\x0b\x1b\x14\x0d\x22\x19\x11\x21\ \x19\x0f\x20\x18\x10\x23\x1a\x11\x21\x19\x10\x20\x18\x0f\x1d\x16\ \x0e\x1f\x17\x0f\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x14\ \x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x28\x1e\x13\x30\x24\x17\x32\ \x25\x18\x2d\x22\x15\x2e\x23\x16\x2e\x22\x16\x32\x26\x19\x34\x26\ \x19\x30\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x38\x29\x1b\x35\x28\x19\ \x36\x28\x1a\x33\x26\x18\x34\x26\x19\x28\x1e\x13\x23\x1b\x10\x1c\ \x15\x0d\x1f\x17\x0e\x2e\x22\x16\x28\x1e\x13\x1e\x16\x0e\x27\x1d\ \x13\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2e\x23\x16\x2b\x20\x14\ \x25\x1c\x11\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x2f\x23\x16\x39\ \x2b\x1b\x3e\x2f\x1e\x3c\x2d\x1d\x2c\x21\x15\x21\x19\x10\x25\x1c\ \x12\x2f\x23\x17\x32\x26\x18\x3a\x2c\x1c\x3f\x2f\x1f\x3c\x2d\x1d\ \x3f\x2f\x1e\x2c\x21\x14\x24\x1b\x12\x26\x1d\x12\x21\x19\x10\x1c\ \x15\x0d\x1c\x15\x0d\x1d\x16\x0e\x23\x1a\x11\x23\x1b\x11\x32\x26\ \x19\x4d\x3e\x2f\x2b\x2f\x32\x34\x38\x3c\x3e\x44\x48\x48\x4f\x53\ \x51\x57\x5e\x5a\x62\x69\x61\x6a\x71\x67\x71\x79\x6c\x76\x7e\x6c\ \x76\x7e\x6e\x79\x80\x72\x7c\x82\x73\x7c\x83\x72\x7b\x82\x77\x7f\ \x86\x76\x7e\x85\x79\x81\x86\x66\x6e\x73\x49\x51\x56\x64\x6d\x71\ \x7b\x84\x88\x79\x83\x87\x7a\x82\x87\x60\x65\x6d\x51\x57\x5f\x74\ \x7d\x82\x71\x79\x7e\x19\x1b\x1d\x00\x00\x00\x14\x15\x18\x00\x00\ \x00\x03\x02\x01\x22\x1a\x10\x3e\x2f\x1f\x35\x28\x19\x57\x41\x2a\ \x65\x4b\x31\x4d\x39\x26\x1c\x15\x0d\x11\x0d\x09\x18\x12\x0b\x22\ \x1a\x10\x2b\x20\x15\x2f\x24\x17\x26\x1c\x12\x29\x1f\x13\x2c\x21\ \x15\x30\x24\x17\x2d\x22\x16\x29\x1f\x14\x1e\x16\x0e\x1d\x16\x0e\ \x1f\x17\x0f\x1b\x15\x0d\x17\x12\x0c\x19\x12\x0c\x23\x1a\x10\x2b\ \x21\x14\x21\x18\x10\x2c\x21\x15\x2a\x1f\x14\x22\x1a\x11\x28\x1f\ \x14\x31\x25\x18\x26\x1c\x12\x29\x1e\x13\x25\x1c\x12\x27\x1d\x13\ \x2c\x21\x15\x2f\x23\x17\x26\x1c\x12\x27\x1c\x12\x2e\x22\x16\x35\ \x28\x1a\x2d\x21\x15\x28\x1e\x13\x27\x1d\x13\x22\x1a\x11\x21\x19\ \x10\x1e\x17\x0e\x20\x18\x0f\x1c\x16\x0e\x1b\x14\x0d\x1c\x15\x0d\ \x23\x1b\x11\x1b\x14\x0d\x1f\x17\x0f\x26\x1d\x13\x24\x1b\x12\x2c\ \x22\x16\x1b\x14\x0d\x1a\x13\x0d\x21\x19\x10\x29\x1f\x13\x32\x26\ \x18\x2d\x22\x16\x25\x1b\x12\x23\x1b\x11\x1b\x15\x0d\x1a\x13\x0c\ \x1d\x15\x0e\x2b\x20\x15\x28\x1e\x13\x2f\x23\x17\x2e\x23\x17\x2e\ \x23\x16\x24\x1b\x12\x24\x1b\x11\x28\x1e\x13\x2a\x1f\x14\x28\x1e\ \x13\x19\x13\x0c\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2d\x22\x16\ \x30\x24\x17\x31\x25\x18\x35\x27\x19\x36\x28\x19\x31\x25\x18\x37\ \x29\x1a\x3a\x2b\x1b\x34\x27\x19\x22\x1a\x11\x1e\x17\x0e\x1e\x16\ \x0e\x21\x1a\x10\x25\x1c\x12\x1d\x16\x0e\x28\x1e\x13\x21\x19\x10\ \x26\x1c\x12\x27\x1d\x12\x23\x1a\x10\x26\x1c\x12\x24\x1b\x11\x24\ \x1b\x11\x33\x26\x18\x37\x29\x1a\x3a\x2b\x1c\x3c\x2d\x1d\x3a\x2b\ \x1c\x38\x2a\x1b\x2e\x22\x16\x2f\x23\x17\x34\x26\x18\x2c\x21\x15\ \x2a\x21\x15\x29\x1f\x14\x28\x1e\x13\x30\x24\x18\x35\x28\x1a\x29\ \x1f\x14\x28\x1e\x14\x21\x19\x10\x1b\x14\x0d\x20\x18\x0f\x1e\x17\ \x0f\x1d\x16\x0e\x19\x13\x0c\x1f\x17\x0f\x23\x1a\x11\x37\x2d\x22\ \x2a\x2e\x31\x34\x38\x3c\x3f\x44\x48\x47\x4d\x52\x51\x57\x5e\x5a\ \x61\x68\x61\x69\x71\x67\x70\x78\x6d\x75\x7e\x6f\x79\x81\x72\x7c\ \x85\x71\x7a\x82\x73\x7e\x85\x76\x80\x87\x78\x81\x88\x78\x80\x87\ \x76\x7f\x86\x77\x7f\x85\x5e\x64\x69\x46\x4d\x52\x69\x71\x75\x7b\ \x84\x88\x78\x82\x85\x7d\x85\x8a\x5f\x65\x6c\x4d\x53\x5b\x75\x7e\ \x83\x6d\x75\x78\x2e\x31\x33\x50\x54\x58\x00\x00\x00\x09\x07\x05\ \x13\x0e\x09\x4c\x39\x27\x35\x27\x1a\x55\x40\x2a\x4d\x3a\x25\x4a\ \x36\x24\x1a\x13\x0c\x10\x0c\x08\x13\x0f\x09\x1f\x17\x0f\x26\x1c\ \x12\x28\x1e\x13\x29\x1e\x13\x27\x1e\x12\x2d\x22\x15\x25\x1b\x11\ \x24\x1b\x11\x27\x1e\x12\x24\x1b\x11\x22\x19\x10\x1d\x16\x0e\x17\ \x11\x0c\x14\x0f\x0a\x1a\x13\x0d\x1a\x14\x0c\x24\x1b\x11\x28\x1e\ \x13\x2d\x21\x15\x2d\x22\x16\x29\x1f\x14\x2b\x20\x14\x29\x1f\x13\ \x23\x1a\x11\x22\x1a\x10\x25\x1c\x11\x26\x1d\x12\x2a\x1f\x14\x30\ \x24\x17\x2d\x21\x15\x29\x1f\x13\x30\x24\x17\x35\x28\x1a\x31\x26\ \x18\x2d\x23\x16\x29\x1f\x14\x21\x18\x10\x28\x1e\x13\x2a\x1f\x14\ \x2a\x20\x14\x27\x1d\x13\x20\x18\x10\x25\x1c\x13\x1c\x15\x0d\x1b\ \x15\x0d\x1f\x17\x0e\x20\x18\x0f\x26\x1c\x12\x24\x1b\x11\x1f\x17\ \x0f\x1f\x17\x0f\x1e\x17\x0e\x23\x1a\x11\x2e\x23\x16\x2d\x22\x16\ \x26\x1d\x12\x33\x26\x19\x2a\x21\x15\x1d\x16\x0e\x1f\x17\x0f\x28\ \x1e\x13\x26\x1c\x12\x2d\x22\x16\x32\x25\x18\x2f\x24\x17\x29\x1f\ \x14\x27\x1e\x13\x20\x18\x0f\x2a\x20\x14\x23\x1b\x11\x27\x1d\x13\ \x26\x1c\x12\x25\x1c\x11\x27\x1d\x13\x2a\x20\x14\x2e\x24\x17\x31\ \x25\x17\x34\x27\x19\x2b\x20\x15\x2f\x22\x17\x39\x2a\x1c\x39\x2a\ \x1b\x37\x29\x1a\x2c\x21\x16\x26\x1d\x12\x27\x1e\x13\x29\x1e\x14\ \x20\x19\x10\x25\x1c\x12\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x28\ \x1e\x13\x21\x19\x10\x2a\x1f\x14\x22\x1a\x10\x27\x1d\x12\x28\x1e\ \x13\x24\x1b\x12\x2f\x23\x16\x36\x28\x1a\x2b\x20\x15\x29\x1e\x13\ \x26\x1d\x13\x24\x1b\x12\x32\x26\x18\x29\x20\x14\x1e\x17\x0e\x22\ \x19\x10\x26\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x25\x1c\x12\x29\x1f\ \x14\x23\x1a\x11\x21\x19\x10\x21\x19\x10\x1f\x17\x0f\x1e\x18\x0e\ \x20\x19\x0f\x26\x1c\x12\x29\x1f\x14\x34\x2a\x20\x2d\x2f\x30\x32\ \x37\x3a\x3d\x42\x46\x46\x4c\x51\x4f\x56\x5c\x5a\x61\x68\x62\x6a\ \x72\x65\x6f\x76\x6c\x75\x7d\x70\x7b\x82\x72\x7d\x85\x6f\x7a\x81\ \x78\x82\x89\x74\x7e\x85\x76\x80\x87\x77\x80\x87\x76\x7f\x86\x76\ \x7e\x84\x7b\x84\x88\x60\x68\x6d\x48\x4e\x54\x6b\x73\x78\x7e\x87\ \x8b\x7e\x87\x8b\x80\x87\x8c\x66\x6c\x72\x4e\x54\x5c\x6e\x74\x79\ \x47\x4d\x52\x72\x78\x7c\x00\x00\x00\x1e\x17\x0f\x39\x2b\x1d\x50\ \x3d\x2a\x36\x28\x1a\x4b\x38\x23\x51\x3d\x27\x59\x42\x2b\x24\x1b\ \x11\x12\x0e\x09\x11\x0d\x08\x1c\x16\x0e\x24\x1c\x11\x31\x24\x17\ \x2a\x20\x15\x29\x1f\x14\x2c\x21\x15\x30\x24\x17\x2a\x1f\x14\x29\ \x1e\x13\x28\x1e\x14\x29\x1e\x13\x23\x1b\x11\x1f\x17\x0f\x20\x18\ \x0f\x1f\x18\x0f\x1a\x14\x0c\x1f\x17\x0f\x25\x1b\x12\x26\x1c\x12\ \x2d\x22\x15\x31\x25\x17\x27\x1d\x12\x24\x1b\x12\x28\x1e\x13\x2a\ \x1f\x15\x26\x1d\x12\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x1e\x16\ \x0e\x1d\x16\x0e\x1d\x16\x0e\x1e\x16\x0e\x24\x1b\x12\x21\x18\x10\ \x22\x19\x10\x22\x1a\x10\x24\x1c\x12\x29\x1f\x14\x31\x25\x17\x36\ \x29\x1a\x27\x1d\x13\x1f\x17\x0f\x1b\x15\x0d\x20\x18\x0f\x1a\x14\ \x0d\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x11\x22\x1a\x11\x21\x18\x10\ \x17\x12\x0b\x1f\x18\x0f\x2c\x22\x15\x31\x25\x17\x30\x25\x17\x28\ \x1e\x13\x25\x1b\x11\x24\x1b\x11\x22\x1a\x11\x1f\x17\x0f\x24\x1c\ \x11\x22\x1a\x10\x23\x1a\x11\x2a\x20\x14\x29\x1f\x14\x2f\x23\x17\ \x25\x1b\x11\x23\x1a\x10\x23\x1b\x11\x23\x1a\x11\x1b\x14\x0d\x22\ \x1a\x11\x23\x1b\x11\x25\x1b\x11\x25\x1b\x11\x2a\x20\x15\x31\x25\ \x18\x30\x24\x17\x31\x25\x17\x2f\x23\x16\x39\x2a\x1b\x3b\x2d\x1d\ \x2c\x21\x15\x21\x18\x0f\x27\x1e\x13\x21\x19\x10\x20\x18\x0f\x1d\ \x15\x0e\x22\x1a\x11\x20\x18\x0f\x23\x1a\x10\x23\x1a\x10\x20\x18\ \x0f\x23\x1a\x11\x21\x19\x10\x27\x1d\x13\x26\x1d\x13\x2b\x21\x14\ \x2d\x22\x16\x2f\x23\x16\x32\x25\x18\x2c\x21\x16\x21\x19\x10\x22\ \x1a\x10\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x1e\x17\x0e\x21\x1a\ \x10\x24\x1c\x12\x26\x1d\x12\x2a\x20\x14\x2b\x20\x14\x2c\x21\x15\ \x29\x1f\x14\x29\x1f\x14\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x26\ \x1c\x12\x2f\x23\x17\x2c\x23\x19\x31\x30\x2f\x32\x36\x39\x3c\x42\ \x46\x45\x4c\x51\x4f\x56\x5d\x5a\x62\x69\x60\x6a\x71\x65\x6f\x76\ \x6d\x77\x7f\x6f\x7a\x81\x6e\x79\x7f\x72\x7d\x84\x75\x80\x87\x77\ \x82\x89\x77\x81\x88\x78\x80\x87\x77\x80\x87\x78\x7f\x86\x77\x7f\ \x84\x7c\x85\x89\x5b\x61\x67\x4b\x50\x57\x6d\x75\x7a\x7e\x87\x8b\ \x7e\x88\x8c\x7f\x87\x8b\x68\x6d\x73\x36\x3a\x40\x3b\x40\x46\x7f\ \x8a\x8d\x00\x00\x00\x08\x07\x04\x0d\x0a\x06\x3f\x30\x20\x24\x1b\ \x12\x4f\x3b\x26\x61\x48\x2f\x5f\x46\x2e\x35\x28\x1a\x17\x12\x0b\ \x10\x0d\x08\x1a\x13\x0c\x24\x1b\x12\x28\x1e\x13\x2f\x24\x17\x31\ \x25\x18\x2b\x21\x15\x26\x1d\x12\x29\x1f\x13\x2c\x21\x15\x31\x25\ \x18\x2c\x21\x15\x24\x1b\x11\x24\x1b\x11\x22\x1a\x10\x1a\x13\x0d\ \x17\x12\x0b\x18\x12\x0b\x1b\x15\x0d\x2a\x20\x14\x2f\x23\x16\x2b\ \x21\x15\x36\x28\x1a\x2c\x21\x15\x31\x24\x17\x3d\x2e\x1d\x3b\x2c\ \x1c\x2f\x24\x17\x2d\x22\x15\x2a\x20\x15\x23\x1b\x11\x20\x18\x0f\ \x20\x18\x0f\x22\x19\x10\x25\x1b\x12\x2a\x1f\x14\x26\x1c\x12\x20\ \x18\x10\x2a\x1f\x14\x24\x1b\x11\x30\x24\x17\x2b\x1f\x14\x26\x1c\ \x12\x1f\x17\x0f\x21\x19\x10\x1d\x16\x0e\x20\x17\x10\x20\x18\x10\ \x21\x19\x0f\x25\x1c\x12\x24\x1c\x12\x21\x19\x10\x1e\x17\x0e\x1e\ \x17\x0f\x23\x1b\x11\x27\x1e\x13\x2c\x21\x15\x2e\x22\x16\x30\x24\ \x17\x33\x26\x18\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ \x1a\x14\x0d\x26\x1d\x12\x29\x1f\x14\x30\x24\x17\x2d\x22\x15\x24\ \x1b\x11\x1b\x15\x0d\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x10\x26\x1d\ \x13\x20\x18\x0f\x21\x19\x10\x26\x1d\x12\x29\x1f\x13\x2b\x20\x14\ \x2d\x21\x16\x31\x24\x18\x37\x2a\x1b\x31\x24\x18\x2c\x21\x15\x2c\ \x20\x15\x22\x1a\x10\x1f\x17\x0f\x20\x18\x10\x1d\x15\x0d\x22\x19\ \x10\x1c\x15\x0e\x1e\x16\x0e\x1f\x18\x0f\x24\x1b\x11\x26\x1c\x12\ \x27\x1d\x13\x2d\x22\x15\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x2b\ \x21\x15\x2d\x22\x16\x2d\x22\x16\x2b\x20\x14\x23\x1a\x11\x1b\x14\ \x0d\x22\x1a\x10\x20\x19\x10\x1c\x15\x0d\x1f\x17\x0e\x21\x19\x0f\ \x23\x1a\x11\x2b\x21\x15\x28\x1e\x13\x27\x1d\x12\x26\x1c\x12\x1e\ \x17\x0f\x27\x1e\x13\x2b\x20\x15\x2d\x22\x15\x2a\x1f\x14\x25\x1c\ \x12\x2a\x22\x18\x31\x2f\x2c\x31\x35\x38\x3a\x40\x44\x46\x4c\x51\ \x50\x57\x5d\x58\x60\x67\x60\x69\x71\x66\x70\x78\x6c\x75\x7e\x6c\ \x77\x7f\x6e\x79\x80\x70\x7b\x83\x75\x80\x87\x76\x81\x88\x77\x81\ \x89\x78\x82\x89\x78\x81\x88\x78\x80\x87\x78\x81\x87\x77\x82\x86\ \x79\x82\x86\x56\x5d\x62\x4d\x53\x58\x70\x78\x7d\x7e\x87\x8b\x7e\ \x86\x8a\x7c\x82\x87\x33\x37\x3c\x3f\x41\x46\x70\x78\x7c\x00\x00\ \x00\x11\x0d\x08\x01\x01\x00\x2d\x22\x16\x24\x1b\x11\x54\x3e\x28\ \x64\x4b\x31\x56\x40\x2a\x25\x1c\x12\x18\x12\x0c\x1b\x13\x0c\x1b\ \x15\x0d\x23\x1a\x10\x23\x1a\x11\x28\x1e\x13\x28\x1e\x13\x26\x1d\ \x13\x1f\x18\x0f\x22\x19\x10\x2c\x21\x15\x2d\x22\x15\x2a\x20\x14\ \x26\x1c\x12\x25\x1c\x12\x27\x1d\x13\x20\x18\x0f\x1a\x13\x0c\x1c\ \x15\x0d\x20\x18\x0f\x2e\x23\x16\x37\x29\x1b\x35\x28\x1a\x2d\x22\ \x16\x28\x1e\x13\x2e\x22\x16\x2b\x20\x15\x2d\x21\x15\x35\x27\x19\ \x34\x27\x19\x32\x25\x18\x25\x1c\x12\x1e\x16\x0e\x1c\x15\x0d\x1d\ \x16\x0e\x20\x19\x0f\x26\x1d\x12\x23\x1b\x11\x1c\x15\x0e\x23\x1a\ \x11\x22\x1a\x10\x22\x1a\x10\x24\x1b\x10\x2a\x20\x15\x2e\x22\x16\ \x27\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1e\x16\x0e\x1d\x15\x0d\x25\ \x1c\x12\x28\x1d\x13\x1e\x17\x0e\x20\x18\x0f\x19\x13\x0c\x1f\x17\ \x0f\x22\x1a\x10\x25\x1c\x11\x29\x1e\x14\x2f\x23\x17\x37\x29\x1a\ \x32\x26\x18\x28\x1e\x13\x27\x1e\x13\x21\x19\x10\x23\x1b\x11\x22\ \x19\x10\x2b\x21\x15\x32\x26\x18\x30\x24\x17\x24\x1b\x11\x25\x1c\ \x12\x21\x19\x10\x26\x1c\x12\x20\x19\x0f\x23\x19\x10\x1e\x16\x0f\ \x1f\x18\x0f\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x2b\x20\x15\x2b\ \x20\x15\x2d\x22\x16\x2c\x22\x15\x30\x23\x17\x2a\x1f\x14\x27\x1d\ \x13\x29\x1e\x14\x26\x1c\x12\x21\x19\x0f\x21\x19\x0f\x1e\x17\x0f\ \x20\x18\x0f\x22\x19\x10\x22\x1b\x10\x2c\x21\x15\x24\x1b\x11\x27\ \x1d\x13\x21\x19\x10\x24\x1b\x11\x1c\x16\x0e\x1c\x15\x0e\x24\x1a\ \x11\x29\x1f\x14\x2e\x23\x17\x27\x1e\x13\x21\x19\x0f\x28\x1e\x13\ \x2e\x23\x16\x27\x1d\x12\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\x22\ \x1a\x10\x22\x1a\x10\x23\x1b\x11\x1d\x15\x0d\x1c\x16\x0e\x1e\x17\ \x0e\x29\x1e\x14\x33\x27\x19\x31\x24\x17\x31\x24\x18\x2e\x23\x19\ \x39\x35\x2f\x2f\x34\x37\x39\x3f\x43\x45\x4b\x50\x4f\x57\x5c\x58\ \x61\x67\x5e\x67\x6f\x66\x70\x78\x6b\x75\x7d\x6d\x78\x7f\x72\x7c\ \x84\x72\x7d\x85\x74\x7f\x86\x76\x7f\x88\x77\x81\x89\x75\x7f\x86\ \x78\x82\x89\x77\x81\x89\x7a\x84\x8b\x7b\x85\x8a\x7a\x84\x88\x7c\ \x84\x88\x61\x66\x6b\x4c\x52\x58\x6e\x76\x7b\x83\x8d\x91\x73\x79\ \x7e\x41\x47\x4c\x6b\x71\x75\x59\x5d\x60\x00\x00\x00\x1c\x15\x0d\ \x0b\x08\x05\x33\x27\x19\x2b\x20\x15\x55\x40\x2a\x6e\x51\x35\x54\ \x3e\x28\x2e\x22\x16\x1b\x14\x0c\x12\x0d\x09\x1d\x15\x0e\x22\x1a\ \x10\x24\x1c\x12\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x22\x1a\x10\ \x21\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\x25\ \x1b\x12\x30\x24\x17\x25\x1c\x11\x1b\x15\x0d\x15\x10\x0a\x1a\x14\ \x0d\x2d\x21\x15\x2b\x1f\x15\x2f\x23\x17\x2a\x1f\x14\x26\x1d\x12\ \x25\x1d\x12\x25\x1c\x12\x27\x1d\x13\x2c\x21\x15\x2c\x21\x15\x2a\ \x1f\x14\x27\x1d\x12\x26\x1d\x12\x23\x1a\x11\x26\x1c\x12\x25\x1c\ \x12\x1f\x18\x0f\x23\x1a\x11\x22\x1a\x10\x26\x1d\x12\x23\x1b\x11\ \x27\x1d\x12\x2b\x20\x14\x2f\x23\x16\x32\x25\x18\x33\x26\x18\x26\ \x1c\x12\x24\x1b\x11\x22\x19\x10\x28\x1e\x13\x25\x1c\x12\x25\x1c\ \x11\x2b\x20\x14\x26\x1d\x12\x20\x19\x0f\x1f\x17\x0f\x22\x1a\x11\ \x24\x1c\x12\x26\x1d\x12\x2b\x20\x15\x30\x24\x17\x2e\x23\x16\x32\ \x26\x18\x2a\x1f\x14\x24\x1b\x11\x23\x1b\x11\x20\x18\x0f\x24\x1b\ \x11\x28\x1e\x14\x28\x1e\x14\x27\x1d\x13\x24\x1c\x11\x26\x1d\x13\ \x24\x1b\x11\x24\x1c\x11\x2c\x20\x15\x29\x1f\x13\x26\x1c\x12\x27\ \x1d\x13\x27\x1d\x13\x27\x1d\x13\x2e\x23\x16\x30\x24\x17\x30\x23\ \x17\x38\x29\x1b\x33\x26\x18\x32\x25\x18\x2a\x20\x15\x2f\x23\x16\ \x2e\x23\x16\x2f\x23\x16\x2b\x21\x15\x20\x18\x0f\x27\x1d\x13\x24\ \x1b\x11\x27\x1e\x13\x2b\x20\x15\x27\x1d\x13\x27\x1e\x13\x27\x1e\ \x13\x30\x24\x17\x30\x24\x17\x2e\x23\x16\x25\x1c\x12\x21\x19\x10\ \x2c\x21\x15\x2b\x20\x15\x25\x1b\x11\x2a\x20\x14\x28\x1e\x14\x28\ \x1e\x13\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x1f\x17\x0f\x1d\x16\ \x0e\x24\x1b\x11\x21\x19\x10\x1f\x18\x0f\x21\x19\x10\x29\x1f\x14\ \x2d\x22\x16\x35\x28\x1a\x3a\x2b\x1c\x30\x25\x1a\x2b\x29\x26\x2f\ \x34\x37\x39\x3e\x42\x43\x49\x4e\x4d\x55\x5a\x58\x60\x67\x5f\x68\ \x6f\x69\x72\x79\x6a\x73\x7c\x6e\x78\x80\x74\x7d\x85\x74\x7e\x87\ \x75\x7f\x86\x74\x7e\x86\x78\x83\x8a\x78\x82\x89\x79\x83\x8a\x77\ \x82\x89\x78\x83\x89\x7c\x86\x8c\x7b\x85\x8b\x7b\x84\x88\x7d\x85\ \x8a\x5f\x65\x6a\x4e\x53\x5a\x73\x7a\x7f\x59\x5f\x65\x63\x6a\x6f\ \x83\x8d\x91\x6e\x75\x78\x00\x00\x00\x0f\x0b\x07\x00\x00\x00\x21\ \x19\x10\x25\x1b\x11\x53\x3f\x29\x6a\x4f\x34\x5c\x44\x2c\x32\x26\ \x18\x23\x1a\x11\x20\x18\x0f\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\ \x24\x1b\x12\x26\x1c\x11\x23\x1a\x11\x1e\x17\x0e\x1b\x14\x0d\x21\ \x19\x10\x23\x1b\x11\x24\x1b\x12\x27\x1d\x13\x26\x1c\x12\x2a\x20\ \x14\x25\x1c\x11\x26\x1c\x12\x1d\x16\x0e\x20\x19\x10\x28\x1e\x13\ \x33\x26\x19\x2d\x22\x16\x2d\x22\x16\x26\x1d\x13\x1c\x16\x0e\x1d\ \x15\x0e\x26\x1d\x12\x2a\x1f\x14\x2f\x23\x16\x23\x1a\x11\x29\x1f\ \x13\x2a\x20\x14\x28\x1e\x13\x26\x1d\x12\x22\x1a\x10\x24\x1b\x11\ \x22\x19\x10\x24\x1b\x11\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x28\ \x1d\x13\x28\x1e\x13\x2e\x22\x16\x31\x24\x17\x25\x1c\x12\x2b\x20\ \x15\x25\x1c\x12\x2f\x23\x16\x2b\x20\x14\x26\x1d\x12\x2e\x23\x16\ \x25\x1c\x12\x28\x1e\x13\x24\x1b\x11\x23\x1a\x11\x25\x1c\x12\x27\ \x1d\x13\x2a\x1f\x14\x31\x25\x17\x35\x28\x19\x37\x2a\x1a\x34\x27\ \x19\x30\x24\x17\x28\x1e\x14\x21\x19\x10\x25\x1b\x12\x2c\x21\x15\ \x23\x1b\x11\x1e\x17\x0e\x28\x1e\x13\x2a\x1f\x14\x2a\x1f\x14\x2f\ \x23\x16\x30\x24\x17\x28\x1f\x13\x26\x1c\x12\x29\x1f\x14\x2c\x22\ \x16\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x2f\x23\x16\x37\x29\x1a\ \x30\x24\x17\x39\x2b\x1c\x33\x27\x18\x2f\x23\x17\x33\x26\x18\x2b\ \x21\x15\x2d\x22\x16\x22\x19\x10\x27\x1d\x13\x1e\x16\x0e\x24\x1b\ \x11\x27\x1d\x13\x21\x19\x10\x21\x19\x10\x22\x1a\x10\x23\x1a\x11\ \x21\x19\x10\x26\x1c\x12\x2b\x20\x15\x2a\x20\x14\x2c\x22\x15\x29\ \x1f\x14\x22\x1a\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x28\x1f\ \x14\x29\x1e\x13\x33\x26\x19\x2e\x22\x16\x2b\x20\x15\x28\x1f\x13\ \x28\x1e\x13\x24\x1b\x11\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x38\ \x2a\x1b\x47\x35\x22\x4a\x38\x26\x28\x26\x23\x2f\x34\x36\x38\x3e\ \x41\x43\x49\x4e\x4d\x55\x5a\x56\x5e\x64\x5e\x68\x6f\x67\x70\x78\ \x6a\x73\x7d\x6e\x78\x81\x72\x7b\x84\x74\x7d\x86\x75\x7f\x86\x41\ \x48\x4d\x52\x59\x60\x7f\x89\x90\x7a\x84\x8b\x79\x83\x8a\x7a\x84\ \x8a\x7b\x85\x8b\x7b\x86\x8c\x7c\x87\x8b\x7f\x88\x8c\x7e\x86\x8a\ \x68\x6e\x74\x4b\x50\x55\x35\x38\x3d\x80\x88\x8d\x7f\x88\x8c\x81\ \x8a\x8d\x00\x00\x00\x15\x10\x09\x01\x00\x00\x26\x1d\x14\x29\x1f\ \x14\x44\x33\x21\x61\x49\x30\x64\x4b\x31\x2b\x21\x16\x2a\x1f\x14\ \x30\x25\x18\x33\x27\x19\x2c\x21\x15\x29\x1f\x14\x20\x18\x0f\x22\ \x1a\x10\x24\x1b\x11\x24\x1b\x11\x20\x18\x0f\x1e\x16\x0e\x20\x18\ \x0f\x26\x1d\x12\x27\x1d\x12\x29\x1e\x14\x29\x1e\x14\x27\x1d\x12\ \x27\x1d\x13\x20\x18\x0f\x20\x18\x0f\x27\x1d\x12\x2d\x22\x16\x2f\ \x23\x17\x29\x1f\x14\x23\x1a\x11\x23\x1a\x11\x23\x1a\x11\x1e\x16\ \x0e\x1e\x16\x0e\x25\x1c\x11\x28\x1e\x13\x2b\x20\x14\x2c\x21\x15\ \x2f\x24\x17\x31\x24\x17\x25\x1c\x11\x24\x1b\x11\x20\x18\x0f\x23\ \x1a\x10\x22\x19\x10\x23\x1a\x10\x22\x19\x10\x1e\x16\x0e\x22\x1a\ \x10\x25\x1b\x11\x23\x1b\x11\x1e\x16\x0e\x21\x19\x10\x1e\x16\x0e\ \x20\x19\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x2c\x21\x15\x28\ \x1e\x14\x24\x1c\x11\x20\x18\x0f\x20\x18\x0f\x1f\x17\x0f\x24\x1b\ \x11\x28\x1e\x13\x32\x26\x18\x34\x27\x19\x38\x2b\x1b\x31\x25\x18\ \x2d\x21\x16\x1b\x14\x0d\x27\x1e\x13\x29\x1e\x13\x24\x1b\x11\x1e\ \x16\x0e\x26\x1c\x12\x2c\x21\x15\x2a\x1f\x13\x2f\x23\x16\x2e\x23\ \x16\x2d\x21\x16\x28\x1e\x13\x28\x1e\x13\x2d\x22\x16\x2d\x21\x16\ \x34\x27\x19\x34\x27\x1a\x35\x28\x1a\x39\x2a\x1b\x31\x24\x17\x2a\ \x1f\x14\x26\x1c\x12\x29\x1f\x14\x2c\x21\x15\x2d\x22\x16\x27\x1d\ \x13\x2d\x22\x16\x24\x1a\x10\x1d\x16\x0e\x1f\x17\x0f\x21\x19\x10\ \x1b\x14\x0d\x1b\x14\x0c\x16\x11\x0b\x1d\x15\x0d\x1a\x14\x0d\x22\ \x19\x11\x2d\x22\x16\x26\x1d\x12\x26\x1d\x13\x2b\x20\x15\x27\x1e\ \x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x28\x1e\x13\x31\x25\x17\ \x38\x29\x1b\x2e\x22\x16\x2e\x23\x17\x2d\x22\x15\x29\x1e\x13\x26\ \x1c\x12\x22\x1a\x11\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x3b\x2c\ \x1c\x3a\x2c\x1d\x2f\x2a\x25\x2f\x33\x36\x3a\x3f\x41\x41\x48\x4c\ \x4c\x53\x59\x57\x5f\x65\x5e\x67\x6e\x65\x6f\x75\x6b\x73\x7c\x6f\ \x78\x81\x72\x7b\x84\x72\x7c\x85\x6c\x75\x7c\x29\x2c\x2f\x42\x47\ \x49\x5a\x61\x67\x7f\x8a\x91\x7a\x85\x8b\x7b\x85\x8c\x7b\x85\x8b\ \x7c\x85\x8c\x7e\x89\x8f\x80\x89\x8e\x7e\x87\x8b\x84\x8d\x93\x47\ \x4c\x50\x28\x2a\x2e\x6c\x73\x78\x81\x89\x8c\x81\x8b\x8e\x00\x00\ \x00\x1a\x14\x0c\x00\x00\x00\x2a\x20\x16\x28\x1e\x14\x3a\x2c\x1c\ \x5f\x47\x2e\x5b\x44\x2b\x29\x1f\x14\x1a\x13\x0d\x1f\x17\x0f\x2c\ \x21\x15\x2c\x21\x15\x2c\x22\x16\x25\x1b\x12\x27\x1d\x12\x21\x19\ \x10\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x1e\x16\x0e\x1f\x17\x0f\ \x1d\x16\x0e\x20\x18\x0f\x26\x1c\x13\x23\x1a\x11\x26\x1d\x13\x22\ \x1a\x10\x1b\x15\x0d\x21\x19\x10\x32\x26\x18\x2e\x23\x16\x2a\x1f\ \x14\x1f\x17\x0f\x1d\x16\x0e\x28\x1e\x14\x1d\x16\x0e\x1b\x14\x0c\ \x20\x18\x0f\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\x2b\x20\x14\x2c\ \x21\x15\x27\x1d\x12\x22\x1a\x10\x23\x1b\x11\x27\x1e\x13\x27\x1d\ \x13\x2d\x22\x16\x2b\x20\x15\x26\x1d\x12\x25\x1c\x12\x24\x1c\x11\ \x20\x18\x0f\x18\x12\x0b\x1e\x16\x0f\x21\x19\x10\x23\x19\x10\x25\ \x1c\x12\x25\x1c\x11\x2a\x20\x14\x33\x26\x18\x31\x24\x17\x28\x1d\ \x13\x28\x1e\x13\x25\x1c\x12\x24\x1b\x12\x27\x1e\x13\x2b\x21\x15\ \x31\x25\x18\x35\x27\x19\x3a\x2c\x1c\x34\x28\x19\x28\x1e\x13\x1f\ \x18\x0f\x33\x26\x18\x2b\x20\x15\x2a\x1f\x14\x23\x1b\x11\x27\x1c\ \x12\x22\x19\x10\x28\x1e\x13\x2a\x20\x14\x26\x1d\x12\x27\x1d\x13\ \x2c\x22\x15\x2a\x20\x14\x22\x19\x11\x20\x18\x10\x27\x1e\x13\x27\ \x1d\x13\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x20\x18\x0f\x21\x18\ \x10\x25\x1c\x11\x29\x1f\x13\x2f\x23\x17\x2a\x1f\x14\x34\x27\x19\ \x30\x24\x16\x30\x24\x17\x26\x1c\x12\x26\x1d\x12\x20\x18\x0f\x1b\ \x15\x0d\x1c\x15\x0e\x1c\x15\x0e\x1a\x13\x0d\x21\x18\x10\x28\x1e\ \x13\x24\x1b\x11\x22\x1a\x11\x25\x1c\x11\x27\x1d\x12\x26\x1c\x11\ \x1f\x17\x0e\x1a\x14\x0d\x24\x1b\x11\x26\x1c\x12\x31\x24\x18\x2a\ \x20\x14\x25\x1c\x12\x24\x1c\x12\x24\x1b\x11\x22\x1a\x11\x1e\x16\ \x0e\x20\x18\x10\x22\x1a\x10\x25\x1b\x12\x2e\x22\x16\x39\x2b\x1c\ \x3f\x36\x2b\x2e\x32\x35\x3a\x3e\x41\x41\x47\x4c\x4a\x52\x57\x56\ \x5d\x64\x5f\x67\x6f\x65\x6e\x75\x6a\x74\x7b\x70\x79\x82\x73\x7c\ \x85\x74\x7e\x85\x49\x4f\x55\x5b\x61\x65\x66\x6d\x6f\x3c\x42\x46\ \x61\x69\x70\x7f\x89\x90\x7b\x85\x8c\x7c\x86\x8d\x7c\x85\x8c\x7e\ \x86\x8d\x7f\x88\x8e\x7f\x88\x8c\x81\x8a\x8e\x43\x48\x4d\x66\x6a\ \x6e\x58\x5c\x61\x68\x6c\x72\x84\x8c\x8f\x00\x00\x00\x1a\x14\x0d\ \x00\x00\x00\x1c\x16\x0e\x28\x1e\x14\x2d\x22\x16\x59\x43\x2c\x44\ \x33\x21\x27\x1d\x13\x19\x13\x0c\x1b\x15\x0d\x29\x1f\x14\x2a\x20\ \x14\x31\x25\x18\x2a\x20\x14\x22\x19\x10\x21\x19\x10\x23\x1b\x11\ \x1c\x15\x0e\x19\x13\x0c\x23\x1b\x10\x21\x19\x10\x1b\x15\x0d\x20\ \x18\x0f\x22\x19\x11\x27\x1e\x13\x2b\x20\x14\x29\x1f\x14\x24\x1c\ \x11\x21\x1a\x10\x32\x26\x18\x30\x24\x17\x27\x1d\x12\x1e\x17\x0e\ \x15\x10\x0a\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0d\x1e\x17\x0e\x20\ \x18\x0f\x22\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x28\x1f\ \x13\x25\x1c\x12\x25\x1c\x12\x2d\x22\x16\x2d\x21\x16\x2e\x23\x16\ \x32\x25\x18\x31\x25\x18\x27\x1e\x13\x22\x1a\x10\x26\x1c\x12\x26\ \x1d\x12\x26\x1d\x12\x29\x1f\x14\x26\x1d\x12\x20\x19\x10\x23\x1b\ \x11\x29\x1f\x14\x2f\x23\x16\x30\x23\x17\x2c\x21\x16\x2f\x23\x17\ \x28\x1e\x14\x24\x1b\x12\x26\x1c\x12\x2d\x22\x16\x30\x24\x17\x35\ \x27\x19\x36\x29\x1a\x33\x26\x18\x28\x1f\x13\x21\x18\x0f\x2c\x21\ \x15\x32\x25\x18\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x1e\x16\x0f\ \x27\x1d\x13\x29\x1f\x14\x25\x1c\x12\x2c\x21\x15\x2f\x23\x16\x30\ \x24\x17\x26\x1c\x12\x20\x18\x0f\x22\x1a\x11\x25\x1c\x12\x2b\x21\ \x14\x29\x1f\x13\x22\x1a\x10\x23\x1a\x11\x24\x1a\x11\x28\x1e\x13\ \x28\x1e\x13\x24\x1b\x11\x2a\x1f\x14\x32\x25\x18\x31\x25\x17\x36\ \x28\x1a\x31\x25\x17\x2e\x23\x16\x27\x1e\x13\x1f\x17\x0f\x1f\x17\ \x0f\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x1f\x17\x0e\x18\x12\x0b\ \x1b\x15\x0d\x1a\x13\x0c\x1d\x15\x0e\x21\x18\x0f\x20\x18\x0f\x19\ \x13\x0c\x1e\x16\x0e\x23\x1a\x11\x30\x24\x17\x2d\x22\x16\x27\x1d\ \x12\x24\x1b\x11\x24\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1b\x11\ \x22\x1a\x10\x22\x19\x10\x26\x1c\x12\x36\x29\x1b\x42\x37\x2b\x2d\ \x31\x33\x36\x3b\x3f\x40\x45\x4b\x4b\x51\x57\x56\x5e\x64\x5f\x67\ \x6d\x63\x6b\x72\x6c\x74\x7d\x70\x79\x81\x72\x7c\x82\x7b\x84\x8b\ \x13\x16\x19\x5f\x67\x6c\x80\x8c\x90\x57\x5d\x61\x1c\x1f\x23\x67\ \x6f\x75\x80\x8a\x90\x7e\x88\x8f\x7d\x87\x8e\x7e\x86\x8d\x80\x88\ \x8e\x82\x8a\x8f\x6a\x71\x74\x47\x4b\x50\x82\x88\x8c\x75\x79\x7e\ \x50\x53\x5a\x69\x6d\x72\x00\x00\x00\x1d\x16\x0e\x00\x00\x00\x19\ \x13\x0c\x2c\x21\x16\x25\x1c\x12\x4a\x37\x24\x3b\x2c\x1c\x2e\x23\ \x16\x11\x0d\x08\x18\x12\x0c\x28\x1d\x13\x28\x1e\x13\x31\x25\x17\ \x2b\x20\x15\x27\x1e\x13\x26\x1d\x12\x24\x1b\x11\x21\x1a\x10\x1b\ \x15\x0d\x1f\x18\x0f\x23\x1b\x11\x24\x1b\x11\x20\x18\x0f\x22\x19\ \x10\x27\x1d\x12\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x20\x18\x10\ \x2b\x21\x16\x32\x26\x18\x2e\x22\x16\x25\x1b\x11\x16\x11\x0a\x16\ \x11\x0b\x1b\x14\x0d\x1d\x16\x0e\x19\x13\x0c\x1a\x13\x0d\x1c\x15\ \x0d\x1b\x15\x0d\x1c\x16\x0e\x20\x18\x0f\x1f\x18\x0f\x1f\x18\x0f\ \x22\x1a\x11\x2a\x1f\x14\x2d\x22\x15\x2d\x21\x16\x30\x24\x17\x32\ \x25\x18\x2f\x24\x17\x28\x1f\x13\x26\x1c\x12\x2e\x22\x16\x2d\x21\ \x15\x2d\x21\x15\x2d\x22\x16\x1e\x17\x0f\x20\x19\x0f\x23\x1a\x11\ \x28\x1e\x14\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x22\ \x19\x10\x21\x19\x10\x2c\x20\x15\x30\x24\x17\x30\x24\x17\x33\x26\ \x19\x30\x24\x17\x2a\x20\x14\x21\x19\x0f\x25\x1c\x12\x31\x24\x17\ \x2f\x23\x16\x2d\x21\x15\x27\x1d\x13\x1d\x16\x0e\x21\x19\x10\x23\ \x1a\x11\x25\x1c\x12\x29\x1e\x13\x29\x1f\x14\x28\x1e\x13\x23\x1b\ \x11\x25\x1c\x12\x20\x18\x0f\x1d\x16\x0e\x23\x1b\x11\x22\x1a\x10\ \x1e\x16\x0e\x1e\x16\x0e\x29\x1f\x14\x2b\x20\x15\x24\x1b\x11\x22\ \x1a\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x16\x30\x24\x17\x32\x26\ \x18\x39\x2b\x1c\x2f\x23\x17\x29\x1e\x13\x23\x1a\x11\x23\x1a\x11\ \x20\x18\x10\x1e\x16\x0e\x16\x10\x0a\x15\x10\x0a\x1d\x16\x0e\x18\ \x12\x0c\x18\x12\x0c\x22\x1a\x11\x1e\x17\x0e\x17\x12\x0b\x19\x12\ \x0b\x23\x1a\x11\x2c\x21\x15\x30\x23\x17\x2c\x21\x15\x26\x1d\x12\ \x29\x1f\x13\x2a\x1f\x14\x2a\x1f\x14\x27\x1e\x13\x28\x1e\x13\x2a\ \x1f\x14\x23\x1b\x11\x43\x32\x21\x4a\x3c\x2d\x2d\x30\x33\x36\x39\ \x3e\x40\x45\x4a\x4b\x51\x57\x54\x5b\x61\x5e\x66\x6d\x65\x6e\x76\ \x69\x72\x7a\x6e\x78\x80\x75\x7e\x85\x59\x62\x68\x38\x3d\x40\x31\ \x38\x3c\x69\x73\x79\x5e\x64\x6a\x34\x35\x39\x48\x4b\x52\x68\x70\ \x77\x80\x8b\x92\x7d\x87\x8e\x7e\x86\x8d\x83\x8a\x91\x86\x8f\x93\ \x49\x50\x56\x6c\x70\x76\x81\x87\x8b\x82\x89\x8c\x76\x79\x7f\x57\ \x59\x60\x00\x00\x00\x29\x1f\x14\x00\x00\x00\x13\x0e\x0a\x2e\x23\ \x16\x21\x18\x10\x3c\x2c\x1d\x37\x29\x1a\x37\x29\x1a\x0f\x0c\x07\ \x18\x12\x0b\x26\x1d\x12\x2c\x21\x15\x37\x29\x1a\x34\x27\x19\x35\ \x28\x19\x30\x24\x17\x2b\x20\x15\x2b\x20\x15\x20\x19\x0f\x1d\x16\ \x0e\x20\x18\x0f\x22\x1a\x10\x1b\x14\x0d\x1e\x16\x0e\x1e\x17\x0f\ \x1a\x14\x0c\x1f\x18\x0f\x20\x19\x0f\x1c\x15\x0d\x22\x19\x10\x24\ \x1b\x11\x2a\x1f\x14\x28\x1d\x13\x20\x18\x0f\x16\x11\x0a\x20\x18\ \x0f\x1e\x16\x0e\x21\x18\x0f\x24\x1b\x11\x24\x1b\x11\x1f\x18\x0f\ \x1b\x14\x0d\x1b\x14\x0c\x16\x10\x0a\x12\x0e\x09\x13\x0e\x09\x1b\ \x15\x0c\x27\x1d\x13\x31\x25\x18\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\ \x18\x2e\x22\x16\x25\x1c\x12\x27\x1d\x13\x2c\x20\x15\x31\x25\x17\ \x2e\x22\x16\x27\x1e\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x26\ \x1d\x12\x29\x1f\x14\x26\x1c\x12\x2b\x20\x14\x29\x1f\x14\x27\x1d\ \x13\x28\x1e\x13\x2e\x22\x16\x2e\x23\x17\x35\x28\x19\x32\x25\x18\ \x28\x1e\x13\x1f\x18\x0f\x20\x18\x10\x24\x1b\x11\x26\x1d\x12\x2b\ \x20\x15\x2d\x21\x16\x20\x18\x0f\x1b\x14\x0d\x20\x18\x10\x27\x1e\ \x13\x29\x1f\x13\x27\x1e\x12\x20\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ \x27\x1d\x13\x1e\x17\x0f\x1d\x17\x0e\x21\x19\x10\x22\x19\x10\x21\ \x19\x10\x2d\x22\x16\x2c\x21\x15\x29\x1f\x14\x23\x1a\x11\x28\x1e\ \x13\x2e\x23\x17\x2e\x22\x16\x2f\x23\x16\x3b\x2c\x1c\x3d\x2e\x1d\ \x32\x26\x18\x29\x1f\x14\x1c\x15\x0e\x20\x18\x0f\x1f\x17\x0f\x1b\ \x14\x0d\x17\x11\x0b\x19\x13\x0c\x1f\x17\x0f\x1c\x15\x0d\x17\x12\ \x0b\x27\x1d\x13\x24\x1b\x11\x1d\x17\x0e\x1d\x16\x0e\x1f\x17\x0f\ \x25\x1b\x11\x33\x26\x19\x24\x1b\x11\x24\x1b\x12\x2a\x1f\x14\x25\ \x1c\x11\x2b\x20\x14\x36\x29\x1a\x27\x1d\x12\x41\x31\x20\x44\x34\ \x22\x3f\x30\x20\x4e\x3e\x2e\x2b\x2e\x31\x33\x38\x3b\x3e\x43\x47\ \x48\x4f\x54\x54\x5a\x60\x5d\x65\x6b\x65\x6d\x74\x6b\x73\x7c\x6f\ \x79\x82\x77\x81\x88\x2f\x35\x39\x76\x7f\x83\x67\x6f\x75\x24\x28\ \x2f\x37\x3a\x3f\x76\x7d\x81\x5c\x62\x66\x3c\x40\x46\x6b\x74\x7a\ \x80\x8a\x91\x7f\x88\x8f\x81\x8a\x92\x79\x82\x88\x40\x46\x4d\x7e\ \x85\x8c\x82\x89\x8d\x85\x8c\x90\x82\x88\x8b\x7a\x7d\x81\x00\x00\ \x00\x30\x23\x16\x00\x00\x00\x1c\x15\x0e\x3e\x2f\x1f\x26\x1d\x12\ \x3d\x2e\x1e\x36\x28\x19\x33\x27\x19\x11\x0d\x08\x16\x10\x0b\x21\ \x18\x10\x2f\x23\x16\x33\x26\x19\x35\x28\x19\x36\x28\x1a\x30\x24\ \x17\x32\x25\x18\x2c\x21\x15\x25\x1b\x11\x1b\x14\x0d\x1e\x17\x0e\ \x19\x13\x0c\x1d\x16\x0e\x1c\x15\x0d\x17\x11\x0b\x16\x11\x0a\x1a\ \x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x25\x1c\x12\x1d\x15\x0d\x25\x1c\ \x12\x23\x1a\x11\x15\x10\x0a\x0f\x0b\x07\x15\x10\x0a\x1a\x13\x0c\ \x1e\x17\x0e\x2a\x1f\x14\x30\x24\x18\x3b\x2d\x1e\x41\x32\x22\x44\ \x34\x23\x46\x36\x24\x45\x35\x24\x48\x37\x25\x3a\x2c\x1d\x29\x1f\ \x14\x2f\x23\x16\x3b\x2c\x1c\x3a\x2b\x1c\x33\x26\x19\x2e\x22\x16\ \x28\x1e\x14\x27\x1d\x13\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x37\ \x29\x1a\x29\x1f\x15\x21\x19\x10\x1e\x16\x0e\x23\x1b\x11\x26\x1d\ \x12\x25\x1c\x11\x29\x1f\x14\x32\x26\x18\x2f\x24\x17\x26\x1d\x13\ \x2d\x22\x16\x35\x27\x19\x39\x2a\x1b\x35\x28\x1a\x26\x1d\x12\x1e\ \x17\x0e\x1e\x16\x0e\x21\x18\x10\x21\x18\x0f\x25\x1c\x12\x2b\x21\ \x15\x28\x1e\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x26\x1c\x12\ \x24\x1b\x12\x21\x19\x10\x21\x19\x10\x24\x1c\x12\x2a\x20\x14\x23\ \x1b\x11\x19\x14\x0c\x19\x13\x0c\x26\x1d\x12\x2a\x20\x14\x29\x1f\ \x14\x23\x1a\x11\x28\x1d\x13\x24\x1b\x11\x1d\x16\x0e\x23\x19\x11\ \x30\x24\x17\x27\x1e\x13\x2f\x23\x17\x34\x28\x19\x38\x2a\x1b\x2e\ \x23\x16\x26\x1d\x12\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x23\x1a\ \x11\x1e\x17\x0f\x1e\x16\x0e\x1f\x18\x0f\x20\x19\x0f\x22\x1a\x10\ \x27\x1e\x13\x23\x1b\x11\x20\x18\x0f\x1f\x17\x0f\x20\x17\x0f\x29\ \x1f\x14\x23\x1a\x11\x1f\x17\x0f\x20\x17\x0f\x20\x18\x0f\x28\x1e\ \x13\x33\x27\x19\x30\x24\x17\x4a\x38\x25\x43\x32\x21\x2b\x21\x15\ \x3d\x32\x25\x2e\x30\x31\x33\x38\x3c\x40\x45\x48\x4a\x50\x55\x54\ \x5b\x62\x5e\x66\x6c\x63\x6c\x73\x6d\x75\x7d\x71\x7b\x84\x6d\x78\ \x80\x0b\x0d\x10\x78\x81\x87\x7b\x85\x8c\x55\x5b\x5f\x14\x15\x17\ \x76\x7e\x81\x84\x8d\x91\x43\x47\x4b\x2a\x2f\x34\x72\x7c\x82\x82\ \x8c\x93\x85\x8d\x95\x54\x58\x61\x65\x6a\x70\x80\x89\x8e\x84\x8d\ \x91\x88\x90\x94\x81\x88\x8c\x83\x89\x8d\x00\x00\x00\x36\x2a\x1d\ \x00\x00\x00\x10\x0d\x08\x45\x35\x23\x24\x1b\x11\x38\x2a\x1b\x3d\ \x2d\x1d\x35\x28\x19\x10\x0c\x08\x10\x0c\x08\x1b\x15\x0d\x2a\x20\ \x14\x23\x1a\x11\x28\x1e\x13\x2d\x22\x16\x29\x20\x14\x2f\x23\x16\ \x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\x1b\x15\x0d\x19\x13\x0c\x18\ \x12\x0b\x14\x0e\x0a\x13\x0e\x09\x13\x0f\x09\x14\x10\x0a\x26\x1c\ \x13\x41\x32\x22\x3a\x2c\x1d\x3c\x2e\x1e\x48\x36\x24\x4d\x3b\x27\ \x41\x31\x21\x3a\x2c\x1d\x33\x26\x19\x3e\x2f\x1e\x3a\x2c\x1d\x37\ \x2a\x1b\x3a\x2c\x1d\x3c\x2d\x1e\x3f\x2f\x1f\x3a\x2c\x1c\x37\x29\ \x1b\x36\x28\x1b\x34\x27\x1a\x38\x2b\x1c\x29\x1e\x14\x27\x1d\x13\ \x2f\x23\x17\x35\x27\x19\x35\x28\x19\x32\x26\x18\x34\x27\x18\x27\ \x1d\x13\x26\x1c\x12\x25\x1c\x12\x28\x1f\x14\x2f\x23\x17\x2b\x20\ \x14\x26\x1c\x12\x20\x18\x0f\x1c\x15\x0d\x20\x18\x10\x25\x1c\x12\ \x27\x1d\x13\x29\x1f\x13\x28\x1e\x13\x29\x1f\x13\x2b\x21\x15\x34\ \x27\x19\x35\x28\x19\x35\x28\x19\x29\x1f\x14\x22\x19\x10\x27\x1d\ \x12\x23\x1a\x11\x22\x1a\x10\x24\x1b\x12\x2a\x20\x14\x1e\x17\x0e\ \x1e\x16\x0e\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x1f\ \x17\x0f\x21\x19\x10\x29\x1f\x14\x2c\x22\x15\x2f\x23\x17\x2c\x21\ \x15\x22\x1a\x10\x23\x1a\x11\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\ \x21\x19\x10\x20\x17\x0f\x19\x13\x0b\x24\x1a\x11\x26\x1c\x12\x20\ \x19\x0f\x26\x1c\x12\x27\x1d\x13\x31\x25\x17\x2b\x20\x15\x27\x1d\ \x12\x29\x1f\x13\x2d\x22\x16\x2c\x21\x15\x29\x1f\x13\x28\x1e\x13\ \x28\x1e\x13\x27\x1e\x12\x2a\x20\x14\x29\x1f\x14\x26\x1c\x12\x25\ \x1c\x12\x1e\x16\x0e\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\x1b\x14\ \x0d\x1c\x15\x0d\x1a\x14\x0d\x19\x13\x0c\x24\x1b\x11\x29\x1f\x14\ \x2e\x22\x16\x45\x34\x22\x2f\x23\x17\x22\x19\x10\x29\x22\x1a\x30\ \x32\x31\x33\x38\x3b\x3c\x42\x45\x48\x4e\x53\x53\x59\x5e\x5b\x63\ \x69\x65\x6e\x74\x6c\x75\x7c\x74\x7d\x85\x3e\x44\x4b\x47\x4b\x51\ \x24\x28\x2e\x76\x80\x85\x4b\x52\x56\x3a\x3f\x42\x3b\x43\x46\x6f\ \x78\x7d\x44\x49\x4e\x33\x36\x3a\x42\x48\x4d\x70\x79\x80\x83\x8d\ \x94\x66\x6c\x74\x7e\x85\x89\x83\x8b\x90\x89\x91\x96\x86\x8e\x92\ \x85\x8b\x90\x86\x8c\x91\x00\x00\x00\x3d\x2f\x1f\x00\x00\x00\x03\ \x02\x01\x4c\x3a\x27\x25\x1b\x11\x3d\x2e\x1d\x3d\x2e\x1d\x35\x28\ \x1a\x12\x0e\x09\x15\x10\x0b\x23\x1a\x10\x2b\x21\x14\x22\x1a\x10\ \x2a\x20\x14\x26\x1c\x12\x31\x25\x18\x35\x28\x1a\x29\x1f\x13\x2a\ \x20\x14\x25\x1c\x12\x1e\x16\x0e\x1a\x14\x0d\x19\x13\x0c\x17\x11\ \x0b\x18\x12\x0b\x0f\x0b\x07\x19\x13\x0c\x4e\x3c\x28\x37\x2a\x1c\ \x25\x1c\x12\x25\x1c\x12\x29\x1f\x14\x27\x1e\x13\x29\x1f\x13\x24\ \x1c\x12\x1a\x14\x0d\x1c\x15\x0d\x24\x1b\x12\x33\x27\x19\x3c\x2e\ \x1e\x44\x34\x23\x55\x41\x2c\x5a\x45\x2f\x57\x42\x2d\x49\x37\x25\ \x2c\x21\x16\x2c\x21\x16\x26\x1c\x13\x27\x1d\x12\x2d\x21\x15\x37\ \x29\x1a\x35\x28\x19\x33\x26\x19\x31\x25\x18\x2f\x23\x17\x27\x1e\ \x13\x2d\x21\x15\x28\x1e\x14\x24\x1b\x11\x24\x1b\x11\x28\x1e\x13\ \x28\x1e\x13\x29\x1f\x14\x24\x1b\x11\x21\x18\x0f\x1b\x15\x0c\x1e\ \x17\x0e\x23\x1a\x11\x25\x1c\x11\x2c\x21\x15\x2f\x23\x16\x31\x25\ \x18\x32\x26\x18\x2d\x22\x16\x26\x1c\x12\x28\x1e\x13\x21\x19\x10\ \x2a\x20\x14\x33\x27\x19\x30\x24\x18\x1f\x17\x0e\x22\x19\x10\x25\ \x1c\x12\x2c\x22\x15\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\x16\ \x0e\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x2e\x22\x16\x28\x1e\x13\ \x22\x1a\x10\x20\x19\x0f\x24\x1c\x12\x29\x20\x14\x2e\x23\x16\x1f\ \x16\x0e\x20\x18\x0f\x1c\x15\x0e\x1e\x16\x0e\x20\x18\x0f\x22\x1a\ \x11\x22\x1a\x10\x28\x1e\x14\x22\x1a\x10\x28\x1e\x13\x23\x1a\x10\ \x27\x1d\x13\x2c\x21\x15\x29\x1e\x14\x27\x1e\x13\x24\x1c\x11\x26\ \x1c\x12\x2a\x1f\x14\x2c\x21\x15\x28\x1e\x14\x2b\x20\x15\x2c\x21\ \x15\x27\x1d\x12\x20\x18\x10\x1c\x16\x0e\x18\x12\x0c\x19\x13\x0c\ \x19\x13\x0c\x1c\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x29\x1f\x13\x38\ \x2a\x1a\x25\x1c\x12\x26\x1d\x13\x35\x2a\x1f\x34\x32\x31\x32\x36\ \x39\x3b\x40\x44\x47\x4d\x52\x52\x58\x5e\x5c\x64\x6a\x65\x6d\x73\ \x6b\x75\x7c\x79\x83\x8c\x23\x28\x2d\x7f\x88\x90\x52\x58\x5d\x1f\ \x21\x26\x30\x35\x37\x84\x8d\x91\x56\x5d\x61\x1e\x21\x25\x42\x44\ \x47\x7d\x84\x88\x55\x5b\x5f\x3a\x40\x45\x72\x7a\x81\x84\x8c\x92\ \x84\x8d\x93\x85\x8d\x94\x86\x8e\x93\x86\x8c\x91\x8b\x92\x96\x87\ \x8e\x94\x00\x00\x00\x46\x37\x26\x05\x04\x02\x00\x00\x00\x42\x31\ \x21\x29\x1e\x14\x40\x30\x1f\x3a\x2b\x1c\x39\x2c\x1c\x17\x11\x0b\ \x1b\x15\x0d\x23\x1a\x11\x2b\x1f\x15\x21\x19\x10\x27\x1d\x13\x26\ \x1d\x12\x29\x1f\x13\x2b\x20\x15\x21\x19\x10\x2a\x20\x14\x2a\x1f\ \x14\x25\x1c\x12\x1d\x16\x0e\x1d\x16\x0e\x18\x13\x0c\x15\x10\x0a\ \x12\x0e\x08\x13\x0f\x09\x28\x1e\x14\x15\x0f\x0a\x32\x27\x19\x48\ \x37\x25\x46\x36\x24\x3d\x2e\x1e\x4e\x3b\x27\x4d\x3a\x28\x43\x33\ \x22\x4f\x3c\x28\x62\x4c\x34\x31\x25\x18\x49\x38\x26\x6b\x53\x38\ \x32\x25\x17\x60\x49\x31\x62\x4b\x33\x50\x3d\x29\x34\x28\x1a\x25\ \x1d\x12\x25\x1c\x12\x25\x1c\x12\x2b\x20\x14\x2f\x23\x16\x30\x23\ \x17\x30\x23\x18\x29\x1f\x14\x22\x19\x10\x33\x26\x18\x33\x27\x19\ \x2d\x21\x15\x28\x1f\x13\x28\x1e\x13\x2c\x20\x15\x2f\x24\x16\x2d\ \x22\x16\x2d\x22\x15\x27\x1e\x12\x26\x1d\x13\x26\x1c\x13\x26\x1c\ \x12\x29\x1f\x14\x2f\x23\x16\x2f\x23\x16\x32\x25\x18\x31\x25\x18\ \x23\x1a\x11\x23\x1a\x10\x29\x1e\x13\x26\x1d\x13\x31\x25\x18\x32\ \x26\x18\x30\x25\x17\x27\x1d\x13\x29\x1e\x13\x27\x1e\x13\x27\x1d\ \x13\x2b\x21\x14\x27\x1d\x12\x21\x18\x10\x1f\x17\x0e\x24\x1b\x11\ \x22\x1a\x11\x1f\x18\x0f\x20\x18\x0f\x27\x1e\x13\x25\x1c\x11\x19\ \x12\x0b\x1e\x16\x0e\x26\x1d\x12\x2c\x21\x15\x1f\x17\x0f\x1e\x17\ \x0e\x1b\x14\x0d\x1d\x15\x0d\x20\x18\x0f\x19\x13\x0c\x1a\x14\x0c\ \x21\x19\x10\x1f\x18\x0f\x22\x1a\x11\x1f\x17\x0f\x24\x1b\x11\x26\ \x1c\x12\x22\x19\x10\x23\x1b\x11\x23\x1a\x11\x23\x1b\x11\x29\x1f\ \x14\x2d\x23\x16\x30\x24\x17\x28\x1e\x13\x2c\x21\x15\x2d\x22\x15\ \x2a\x1f\x14\x26\x1c\x12\x22\x19\x10\x1a\x14\x0d\x1c\x16\x0e\x1e\ \x17\x0e\x1e\x17\x0e\x22\x1a\x11\x37\x29\x1a\x2d\x22\x16\x28\x1e\ \x13\x28\x1e\x13\x35\x2a\x1e\x33\x31\x2e\x32\x36\x39\x3a\x40\x43\ \x45\x4b\x4f\x51\x58\x5c\x59\x61\x67\x62\x6b\x70\x6b\x75\x7a\x56\ \x5d\x64\x32\x37\x3a\x72\x7c\x82\x7b\x85\x8b\x3c\x40\x44\x2b\x2e\ \x30\x7c\x86\x8a\x79\x83\x86\x37\x3a\x3d\x31\x33\x37\x81\x8a\x8f\ \x43\x48\x4b\x00\x00\x00\x2f\x35\x3a\x74\x7e\x82\x83\x8c\x90\x86\ \x8e\x95\x88\x90\x97\x89\x91\x96\x8a\x90\x95\x88\x8e\x92\x00\x00\ \x00\x5e\x49\x34\x0a\x07\x05\x00\x00\x00\x41\x31\x21\x37\x29\x1b\ \x3d\x2e\x1d\x55\x3f\x29\x41\x31\x20\x21\x19\x0f\x15\x0f\x0a\x1a\ \x13\x0c\x1c\x14\x0d\x19\x12\x0c\x25\x1c\x11\x25\x1c\x12\x23\x1b\ \x11\x24\x1b\x11\x1d\x16\x0e\x1e\x17\x0f\x23\x1a\x11\x23\x1a\x11\ \x24\x1a\x11\x1e\x16\x0e\x19\x12\x0b\x1a\x13\x0c\x17\x11\x0b\x15\ \x0f\x0a\x23\x1a\x11\x15\x0f\x09\x2e\x22\x16\x37\x2a\x1c\x35\x29\ \x1a\x1f\x17\x0f\x34\x27\x1a\x40\x30\x1f\x19\x13\x0c\x48\x37\x26\ \x78\x5c\x40\x0d\x0a\x06\x3e\x2f\x20\x6b\x52\x38\x2b\x20\x15\x4e\ \x3b\x27\x71\x57\x3b\x57\x43\x2d\x2c\x21\x16\x27\x1d\x13\x24\x1a\ \x11\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2d\x22\x15\x39\x2b\x1b\ \x2f\x23\x16\x27\x1d\x12\x2d\x22\x16\x36\x29\x1a\x2c\x21\x15\x2e\ \x23\x16\x22\x19\x10\x2b\x20\x14\x2d\x21\x16\x34\x27\x19\x35\x28\ \x1a\x26\x1d\x12\x21\x19\x10\x1f\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ \x2e\x22\x15\x2d\x22\x15\x39\x2b\x1b\x31\x25\x17\x25\x1c\x12\x21\ \x19\x10\x25\x1c\x12\x23\x1b\x11\x26\x1c\x12\x2c\x22\x15\x28\x1e\ \x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x13\x21\x19\x10\x20\x17\x0f\ \x22\x19\x10\x1e\x17\x0e\x14\x0f\x0a\x13\x0e\x09\x16\x10\x0a\x18\ \x12\x0c\x1b\x14\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x18\x10\x1a\x14\ \x0c\x18\x12\x0c\x1c\x15\x0d\x27\x1d\x12\x26\x1d\x12\x29\x1f\x13\ \x25\x1b\x12\x23\x1a\x11\x1d\x16\x0e\x1e\x16\x0e\x25\x1c\x12\x25\ \x1c\x12\x26\x1d\x13\x21\x19\x10\x25\x1c\x12\x25\x1c\x11\x25\x1b\ \x11\x2a\x20\x14\x2d\x22\x15\x27\x1e\x12\x30\x25\x17\x38\x2a\x1b\ \x35\x28\x19\x28\x1e\x13\x2a\x20\x15\x2a\x1f\x14\x27\x1e\x13\x28\ \x1e\x13\x27\x1d\x12\x24\x1a\x11\x2e\x22\x16\x1e\x17\x0e\x1f\x18\ \x0f\x27\x1d\x13\x33\x26\x19\x46\x35\x23\x21\x19\x10\x26\x1c\x12\ \x2c\x23\x19\x34\x30\x2c\x30\x35\x38\x3b\x40\x44\x46\x4c\x51\x51\ \x58\x5d\x5b\x62\x67\x63\x6a\x70\x72\x7b\x82\x30\x35\x3b\x45\x4b\ \x4f\x42\x4a\x50\x70\x7b\x7e\x31\x34\x37\x4a\x4f\x53\x40\x44\x49\ \x63\x6b\x6f\x42\x46\x4a\x36\x3a\x3f\x48\x4e\x53\x1b\x1d\x1e\x00\ \x00\x00\x07\x08\x0a\x3e\x44\x4a\x74\x7c\x80\x88\x91\x96\x8b\x93\ \x99\x89\x90\x98\x8c\x92\x98\x8a\x91\x96\x00\x00\x00\x63\x4d\x37\ \x11\x0d\x08\x07\x06\x03\x34\x27\x1a\x22\x19\x10\x27\x1e\x13\x41\ \x31\x20\x36\x28\x1a\x18\x12\x0b\x11\x0d\x09\x12\x0d\x08\x1e\x17\ \x0e\x17\x11\x0b\x1d\x16\x0e\x20\x18\x10\x2c\x21\x15\x1e\x17\x0f\ \x15\x10\x0a\x18\x12\x0b\x1a\x14\x0d\x1b\x14\x0d\x24\x1b\x11\x30\ \x24\x17\x24\x1b\x11\x23\x1b\x11\x1d\x16\x0e\x17\x11\x0b\x1a\x13\ \x0c\x13\x0e\x0a\x38\x2a\x1b\x50\x3d\x29\x4e\x3b\x26\x12\x0d\x09\ \x48\x36\x24\x4f\x3c\x27\x0d\x0b\x06\x41\x33\x22\x50\x3d\x2a\x25\ \x1c\x13\x2e\x23\x17\x5e\x48\x30\x49\x37\x25\x3f\x30\x1f\x5f\x48\ \x31\x45\x34\x23\x27\x1d\x13\x2d\x22\x16\x23\x1b\x10\x1d\x16\x0d\ \x1f\x17\x0e\x25\x1b\x11\x2a\x20\x14\x31\x25\x17\x2b\x21\x15\x21\ \x19\x10\x21\x18\x0f\x28\x1f\x13\x26\x1c\x12\x30\x24\x17\x2b\x20\ \x14\x23\x1b\x12\x27\x1d\x13\x2a\x20\x14\x2e\x23\x15\x26\x1c\x12\ \x1e\x16\x0e\x20\x18\x0f\x21\x19\x10\x2d\x21\x16\x30\x23\x17\x32\ \x25\x18\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x1f\x17\ \x0f\x1a\x14\x0d\x20\x18\x10\x20\x19\x0f\x2c\x21\x15\x2d\x22\x16\ \x2c\x22\x16\x22\x1a\x10\x17\x11\x0b\x1a\x13\x0c\x19\x13\x0c\x15\ \x10\x0a\x15\x10\x0a\x12\x0e\x08\x16\x11\x0b\x1c\x15\x0e\x1e\x16\ \x0f\x21\x18\x10\x25\x1b\x12\x29\x1f\x14\x26\x1c\x12\x25\x1c\x12\ \x28\x1f\x13\x30\x24\x17\x32\x25\x18\x2c\x21\x15\x2f\x22\x16\x21\ \x19\x10\x21\x19\x10\x21\x19\x10\x24\x1b\x11\x23\x1a\x10\x27\x1d\ \x13\x1e\x17\x0f\x21\x19\x0f\x28\x1e\x13\x29\x1f\x14\x30\x25\x17\ \x2b\x21\x15\x32\x26\x18\x41\x31\x20\x3f\x2f\x1e\x30\x24\x18\x28\ \x1e\x13\x2f\x23\x16\x31\x24\x18\x2a\x20\x14\x2d\x21\x15\x29\x1f\ \x14\x29\x1e\x13\x28\x1e\x13\x1e\x16\x0d\x24\x1b\x11\x21\x19\x10\ \x27\x1c\x13\x30\x24\x17\x2d\x21\x15\x28\x1e\x13\x2f\x24\x19\x38\ \x33\x2c\x30\x35\x37\x3a\x3f\x43\x45\x4b\x4f\x4f\x56\x5c\x5c\x63\ \x68\x65\x6c\x72\x66\x6d\x74\x37\x3c\x40\x80\x8b\x8f\x43\x4a\x4f\ \x40\x44\x48\x35\x3a\x3b\x82\x8c\x8e\x41\x45\x49\x15\x16\x19\x46\ \x4b\x4e\x89\x92\x96\x52\x58\x5b\x0f\x0f\x10\x00\x00\x00\x3b\x3e\ \x40\x56\x5c\x60\x3f\x42\x47\x70\x77\x7c\x88\x90\x96\x85\x8c\x93\ \x8c\x94\x99\x8a\x92\x96\x00\x00\x00\x71\x56\x3b\x1b\x14\x0c\x03\ \x03\x01\x1b\x14\x0d\x1c\x15\x0d\x20\x19\x0f\x33\x25\x18\x43\x33\ \x21\x18\x12\x0b\x11\x0d\x08\x19\x13\x0b\x26\x1c\x12\x1d\x16\x0f\ \x1d\x16\x0e\x2b\x21\x15\x31\x25\x17\x19\x13\x0c\x12\x0e\x09\x12\ \x0e\x09\x12\x0d\x08\x18\x12\x0b\x21\x19\x0f\x24\x1b\x11\x24\x1b\ \x11\x26\x1c\x12\x19\x13\x0c\x11\x0d\x08\x11\x0c\x08\x11\x0e\x08\ \x34\x28\x1a\x33\x28\x19\x3f\x2f\x1f\x14\x10\x0a\x48\x35\x23\x36\ \x29\x1a\x2d\x22\x16\x52\x3f\x2b\x2c\x22\x16\x56\x42\x2e\x31\x25\ \x19\x49\x37\x25\x55\x41\x2c\x35\x28\x1a\x40\x30\x20\x4b\x38\x26\ \x2d\x21\x15\x2a\x1f\x14\x23\x1b\x11\x21\x18\x10\x20\x19\x10\x20\ \x18\x0f\x25\x1c\x12\x22\x19\x10\x23\x1a\x11\x21\x19\x0f\x1e\x17\ \x0f\x24\x1b\x12\x27\x1d\x13\x2a\x20\x14\x29\x1f\x14\x2a\x20\x14\ \x1e\x17\x0f\x27\x1d\x12\x2b\x20\x15\x2d\x22\x16\x28\x1e\x13\x1d\ \x16\x0e\x1d\x16\x0e\x20\x18\x10\x28\x1e\x13\x2b\x21\x14\x2b\x20\ \x14\x29\x1f\x14\x2c\x21\x15\x2a\x1f\x14\x20\x19\x0f\x1e\x17\x0e\ \x1e\x17\x0e\x25\x1c\x11\x31\x25\x18\x2b\x21\x15\x2a\x20\x14\x2b\ \x21\x15\x24\x1b\x11\x1a\x13\x0c\x20\x18\x0f\x20\x18\x0f\x18\x12\ \x0b\x11\x0d\x08\x17\x11\x0b\x18\x12\x0c\x17\x11\x0b\x19\x13\x0c\ \x25\x1c\x11\x31\x25\x18\x2a\x1f\x15\x27\x1d\x13\x29\x1e\x13\x2a\ \x1f\x14\x32\x26\x18\x33\x26\x18\x2e\x21\x16\x26\x1c\x12\x25\x1c\ \x11\x23\x1a\x11\x2a\x20\x14\x19\x13\x0d\x1d\x16\x0e\x1e\x17\x0f\ \x22\x19\x11\x21\x19\x10\x29\x1f\x14\x2c\x21\x15\x2b\x20\x14\x2d\ \x21\x16\x39\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x27\x1e\x13\x2e\x22\ \x16\x2d\x22\x15\x28\x1d\x13\x24\x1c\x12\x26\x1c\x12\x27\x1d\x12\ \x30\x23\x16\x25\x1b\x12\x1d\x16\x0e\x22\x1a\x10\x26\x1d\x13\x2e\ \x23\x17\x3d\x2d\x1e\x25\x1b\x12\x2a\x20\x16\x36\x2f\x29\x2f\x33\ \x36\x3a\x3f\x42\x44\x4a\x4e\x4f\x56\x5b\x5c\x62\x68\x5c\x64\x6a\ \x59\x60\x66\x39\x3e\x42\x74\x7f\x84\x80\x8a\x8e\x1f\x21\x23\x45\ \x49\x4c\x72\x7c\x7f\x30\x34\x36\x00\x00\x00\x37\x3b\x3e\x80\x89\ \x8d\x85\x8e\x91\x2d\x2f\x31\x0b\x0c\x0e\x62\x67\x6a\x8b\x93\x97\ \x34\x37\x3c\x36\x37\x3c\x6c\x73\x77\x89\x91\x97\x89\x91\x97\x8a\ \x90\x95\x00\x00\x00\x87\x73\x60\x2f\x25\x1a\x10\x0c\x08\x22\x19\ \x11\x2f\x24\x17\x27\x1d\x12\x46\x34\x22\x44\x33\x21\x26\x1c\x12\ \x0e\x0b\x06\x10\x0b\x07\x21\x19\x10\x30\x24\x17\x21\x19\x0f\x21\ \x19\x10\x18\x12\x0c\x15\x10\x0a\x16\x11\x0b\x0f\x0c\x07\x0d\x0a\ \x06\x11\x0c\x07\x18\x12\x0b\x1d\x16\x0e\x1f\x18\x0f\x1d\x16\x0e\ \x1c\x15\x0d\x14\x0f\x0a\x1c\x15\x0d\x1d\x16\x0e\x44\x33\x22\x38\ \x2b\x1c\x32\x26\x18\x31\x24\x18\x49\x37\x24\x1e\x17\x0e\x45\x34\ \x22\x31\x25\x18\x23\x1a\x11\x54\x41\x2c\x31\x25\x19\x2a\x20\x15\ \x4a\x39\x26\x37\x2a\x1b\x1b\x14\x0d\x48\x37\x25\x41\x31\x21\x29\ \x1e\x13\x23\x1b\x11\x23\x1b\x11\x23\x1a\x11\x26\x1d\x12\x1f\x18\ \x0f\x1a\x14\x0d\x1e\x16\x0e\x22\x1a\x11\x1c\x15\x0e\x1c\x15\x0d\ \x1b\x14\x0d\x20\x19\x0f\x2d\x22\x16\x28\x1e\x13\x1c\x15\x0e\x1a\ \x13\x0c\x1b\x14\x0d\x1d\x16\x0e\x21\x19\x10\x1e\x17\x0e\x17\x12\ \x0b\x19\x14\x0c\x20\x18\x10\x23\x1a\x11\x28\x1e\x13\x27\x1e\x13\ \x2b\x20\x14\x28\x1e\x13\x1a\x14\x0c\x12\x0d\x09\x16\x10\x0b\x1e\ \x17\x0f\x1f\x18\x0f\x21\x19\x10\x2a\x21\x15\x33\x26\x19\x20\x18\ \x10\x1c\x14\x0e\x1a\x13\x0d\x1c\x15\x0d\x17\x11\x0a\x14\x10\x0a\ \x19\x13\x0d\x1e\x17\x0e\x1b\x14\x0c\x1b\x14\x0c\x21\x19\x10\x29\ \x20\x14\x2b\x20\x15\x20\x18\x0f\x27\x1d\x13\x2f\x23\x16\x38\x2a\ \x1b\x37\x29\x1b\x2f\x23\x16\x2a\x1f\x14\x2b\x21\x15\x35\x28\x1a\ \x35\x28\x1a\x31\x25\x18\x21\x19\x10\x21\x18\x10\x24\x1b\x11\x22\ \x1a\x10\x2a\x1f\x14\x2d\x22\x16\x2b\x20\x15\x2f\x23\x16\x31\x25\ \x18\x29\x1f\x14\x27\x1d\x12\x22\x1a\x10\x1f\x17\x0f\x22\x19\x10\ \x20\x18\x10\x24\x1b\x11\x2a\x1f\x14\x2d\x22\x15\x30\x24\x17\x2f\ \x23\x16\x28\x1e\x13\x27\x1d\x12\x2a\x1f\x14\x46\x34\x22\x4d\x3a\ \x25\x30\x24\x17\x39\x2c\x1c\x37\x31\x29\x2f\x33\x36\x38\x3d\x41\ \x43\x48\x4c\x4e\x54\x58\x5c\x62\x68\x3a\x42\x47\x5c\x64\x6a\x40\ \x46\x4b\x43\x4a\x4f\x6e\x76\x7a\x2d\x2f\x31\x51\x57\x5b\x3a\x3f\ \x43\x00\x00\x00\x01\x01\x01\x21\x23\x26\x54\x5a\x5e\x59\x5f\x63\ \x49\x4c\x50\x49\x4d\x50\x4b\x4f\x53\x72\x7a\x7e\x32\x36\x3a\x63\ \x68\x6c\x4c\x50\x54\x6f\x76\x7a\x8b\x94\x99\x8a\x90\x95\x00\x00\ \x00\xa6\x9c\x94\x20\x1e\x1b\x01\x01\x01\x1f\x17\x0f\x3f\x30\x1f\ \x28\x1e\x14\x40\x30\x1f\x4a\x37\x24\x25\x1c\x12\x0e\x0a\x06\x14\ \x0f\x0a\x19\x13\x0c\x1c\x14\x0d\x21\x19\x10\x16\x11\x0a\x12\x0e\ \x08\x16\x11\x0a\x14\x0f\x09\x0c\x08\x05\x0e\x0b\x07\x0f\x0b\x07\ \x13\x0e\x09\x16\x11\x0b\x19\x12\x0c\x1e\x17\x0f\x20\x18\x0f\x12\ \x0e\x08\x1a\x13\x0d\x1d\x15\x0e\x37\x2a\x1b\x2a\x1f\x14\x1f\x17\ \x0f\x4e\x3b\x26\x2a\x20\x14\x1e\x17\x0e\x4a\x39\x24\x36\x28\x1a\ \x1b\x15\x0d\x49\x38\x26\x5d\x48\x31\x0c\x0a\x05\x46\x36\x24\x54\ \x40\x2c\x0f\x0b\x06\x3d\x2e\x1f\x33\x27\x1a\x21\x19\x10\x22\x1a\ \x10\x1d\x15\x0e\x1b\x15\x0d\x29\x1f\x14\x1e\x17\x0e\x1b\x14\x0c\ \x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x23\x1a\x11\x25\x1c\x12\x26\ \x1d\x13\x26\x1d\x13\x29\x1e\x14\x1f\x17\x0f\x1f\x17\x0f\x20\x18\ \x10\x1a\x14\x0d\x1c\x16\x0d\x20\x18\x0f\x1c\x15\x0e\x28\x1d\x13\ \x28\x1e\x13\x25\x1c\x12\x2a\x1f\x14\x26\x1d\x12\x2c\x21\x15\x23\ \x1b\x11\x18\x13\x0c\x13\x0f\x0a\x19\x13\x0b\x23\x1a\x11\x1c\x15\ \x0e\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x29\x1f\x13\x1e\x17\x0e\ \x24\x1b\x11\x23\x1a\x10\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x18\ \x12\x0c\x1b\x15\x0d\x1e\x17\x0f\x21\x1a\x11\x2e\x23\x16\x2f\x22\ \x16\x24\x1c\x11\x1d\x16\x0e\x28\x1f\x13\x2c\x21\x15\x35\x28\x19\ \x33\x26\x18\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x31\x25\x18\x2b\ \x21\x15\x2d\x22\x16\x1f\x18\x0f\x21\x19\x10\x28\x1e\x13\x29\x1f\ \x13\x2b\x20\x15\x32\x26\x18\x2f\x23\x17\x2c\x21\x15\x1f\x17\x0f\ \x1a\x14\x0d\x1f\x17\x0e\x1b\x15\x0d\x1b\x15\x0d\x19\x13\x0c\x26\ \x1c\x12\x2b\x20\x14\x29\x1f\x13\x36\x29\x1a\x34\x27\x19\x2e\x22\ \x15\x2d\x22\x16\x29\x20\x13\x2a\x20\x14\x2a\x1f\x14\x2e\x22\x16\ \x33\x26\x19\x39\x32\x29\x2e\x32\x35\x37\x3c\x40\x42\x47\x4b\x50\ \x56\x5a\x59\x60\x65\x2f\x34\x37\x38\x3e\x42\x77\x7f\x85\x45\x4b\ \x50\x29\x2c\x2e\x61\x65\x68\x7f\x85\x89\x3e\x43\x46\x01\x02\x02\ \x0c\x0c\x0d\x50\x54\x58\x56\x5c\x60\x1a\x1c\x1f\x60\x65\x69\x87\ \x90\x92\x59\x5d\x60\x2f\x30\x32\x4b\x50\x54\x8d\x9a\x9f\x5f\x66\ \x6a\x20\x23\x25\x6e\x74\x79\x8b\x92\x96\x00\x00\x00\x77\x66\x5c\ \x1f\x1c\x19\x00\x01\x00\x1e\x17\x0f\x36\x28\x1a\x24\x1b\x11\x3c\ \x2e\x1d\x2c\x21\x15\x22\x1a\x10\x12\x0e\x08\x1a\x14\x0c\x18\x12\ \x0b\x1d\x16\x0e\x19\x13\x0b\x19\x13\x0c\x1f\x17\x0f\x1b\x14\x0d\ \x14\x0f\x0a\x14\x0f\x09\x11\x0d\x08\x12\x0d\x08\x16\x11\x0a\x1b\ \x15\x0d\x19\x13\x0c\x1d\x16\x0e\x20\x18\x0f\x13\x0f\x09\x1f\x18\ \x0f\x16\x10\x0a\x29\x1f\x15\x25\x1c\x12\x23\x1a\x10\x4e\x3b\x27\ \x25\x1c\x11\x1f\x17\x0e\x36\x29\x1b\x47\x36\x23\x18\x12\x0b\x2e\ \x22\x16\x49\x37\x25\x1f\x18\x0e\x3a\x2c\x1e\x3c\x2e\x1f\x12\x0e\ \x08\x24\x1a\x11\x2f\x23\x17\x27\x1d\x13\x30\x24\x17\x23\x1a\x11\ \x1e\x17\x0f\x25\x1c\x12\x20\x19\x10\x1a\x14\x0d\x1e\x16\x0e\x27\ \x1d\x13\x20\x18\x0f\x21\x19\x10\x1e\x16\x0e\x29\x1f\x14\x2b\x20\ \x15\x2b\x20\x14\x25\x1c\x12\x1f\x17\x0f\x1c\x16\x0e\x23\x1a\x11\ \x24\x1b\x12\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x20\x19\x10\x25\ \x1c\x12\x2c\x21\x15\x25\x1c\x12\x23\x1a\x11\x19\x13\x0c\x17\x12\ \x0b\x1b\x15\x0d\x16\x11\x0a\x1f\x17\x0f\x1c\x16\x0e\x27\x1c\x13\ \x32\x26\x19\x32\x25\x18\x2a\x20\x14\x21\x19\x10\x27\x1e\x13\x26\ \x1c\x12\x24\x1c\x11\x29\x1e\x13\x26\x1d\x12\x24\x1b\x11\x20\x18\ \x0f\x1f\x18\x0f\x20\x18\x0f\x1f\x18\x0f\x13\x0f\x09\x13\x0f\x0a\ \x15\x10\x0a\x18\x12\x0b\x1e\x17\x0f\x2b\x20\x15\x31\x24\x17\x26\ \x1c\x12\x30\x24\x17\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x2f\x24\ \x17\x26\x1d\x13\x22\x1a\x10\x1e\x17\x0e\x22\x19\x10\x27\x1e\x13\ \x29\x1f\x14\x29\x1f\x14\x27\x1d\x13\x21\x19\x10\x24\x1b\x11\x1f\ \x18\x0f\x1c\x15\x0e\x1e\x17\x0e\x2b\x21\x15\x2a\x20\x14\x2b\x20\ \x15\x30\x24\x17\x2e\x22\x16\x30\x24\x17\x2d\x22\x16\x2c\x21\x15\ \x26\x1d\x12\x29\x1f\x14\x29\x1f\x13\x23\x1b\x10\x29\x1f\x13\x35\ \x2e\x25\x2e\x32\x35\x37\x3b\x3f\x43\x49\x4d\x3d\x43\x47\x52\x59\ \x5d\x4f\x55\x5a\x4a\x51\x56\x73\x7e\x81\x52\x5a\x5e\x3a\x3d\x41\ \x47\x4b\x4f\x83\x8a\x8f\x71\x78\x7d\x0c\x0d\x0f\x25\x26\x28\x7a\ \x82\x87\x6b\x74\x77\x21\x23\x25\x3a\x3d\x40\x7b\x84\x86\x88\x92\ \x92\x1e\x21\x22\x3b\x40\x46\x78\x83\x89\x41\x47\x4b\x00\x00\x00\ \x32\x36\x39\x8d\x96\x9a\x00\x00\x00\x9c\x7f\x66\x23\x1d\x16\x00\ \x00\x00\x10\x0c\x08\x20\x18\x10\x17\x11\x0b\x2c\x20\x15\x34\x28\ \x19\x30\x24\x17\x13\x0f\x09\x1b\x15\x0d\x21\x18\x0f\x27\x1d\x13\ \x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x1b\x15\x0c\x16\ \x11\x0b\x11\x0d\x08\x17\x11\x0b\x1b\x15\x0d\x1b\x14\x0d\x16\x11\ \x0b\x17\x12\x0b\x19\x13\x0c\x16\x11\x0a\x27\x1d\x14\x19\x13\x0c\ \x1b\x14\x0c\x16\x11\x0b\x1b\x15\x0d\x40\x30\x20\x25\x1c\x12\x29\ \x1f\x14\x2e\x22\x16\x2f\x23\x17\x17\x11\x0b\x1c\x15\x0e\x2a\x20\ \x14\x22\x1a\x10\x30\x24\x18\x2f\x24\x17\x14\x0f\x09\x1d\x16\x0e\ \x27\x1d\x12\x1f\x17\x0f\x24\x1c\x11\x22\x19\x10\x1d\x16\x0d\x1f\ \x17\x0e\x1a\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x11\x29\x1f\ \x14\x30\x24\x17\x2a\x1f\x13\x2a\x20\x14\x2d\x22\x16\x34\x28\x19\ \x27\x1d\x13\x22\x19\x10\x1b\x14\x0d\x21\x19\x10\x26\x1d\x12\x2b\ \x20\x14\x2a\x20\x14\x26\x1d\x12\x21\x18\x10\x1b\x14\x0d\x21\x19\ \x10\x24\x1b\x11\x23\x1b\x11\x17\x11\x0b\x1a\x13\x0c\x16\x11\x0b\ \x19\x12\x0b\x19\x12\x0c\x20\x18\x0f\x1b\x14\x0c\x28\x1e\x13\x31\ \x26\x18\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x22\x19\x11\x20\x18\ \x10\x24\x1b\x11\x29\x1e\x14\x2a\x1f\x14\x29\x1f\x14\x20\x18\x0f\ \x25\x1c\x12\x1d\x16\x0e\x13\x0f\x09\x15\x10\x09\x16\x10\x0b\x12\ \x0d\x09\x1a\x15\x0d\x26\x1c\x12\x24\x1b\x11\x24\x1b\x11\x1e\x17\ \x0e\x1a\x14\x0c\x28\x1e\x13\x27\x1e\x13\x2b\x21\x15\x29\x1e\x13\ \x1c\x15\x0e\x22\x19\x11\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2e\ \x22\x16\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x25\x1c\x12\x1d\x15\ \x0e\x1e\x17\x0e\x1d\x16\x0e\x29\x1f\x13\x22\x19\x10\x1f\x17\x0e\ \x29\x1f\x13\x23\x1a\x10\x2c\x21\x16\x2b\x20\x15\x24\x1a\x11\x2e\ \x22\x16\x2f\x23\x16\x2f\x23\x17\x30\x24\x17\x33\x2b\x22\x2c\x30\ \x33\x35\x3a\x3d\x47\x4c\x50\x2a\x2d\x30\x3e\x44\x49\x60\x67\x6e\ \x65\x6c\x72\x58\x5e\x63\x49\x4f\x53\x44\x4a\x4e\x50\x54\x59\x46\ \x4a\x4f\x6f\x75\x78\x35\x37\x39\x54\x58\x5c\x5e\x64\x69\x51\x58\ \x5c\x4f\x53\x56\x4e\x52\x55\x47\x4d\x51\x5e\x67\x68\x44\x4b\x4e\ \x66\x6d\x74\x42\x48\x4d\x14\x16\x18\x00\x00\x00\x11\x13\x15\x86\ \x8c\x92\x00\x00\x00\xb7\x97\x75\x29\x1f\x14\x00\x00\x00\x1a\x13\ \x0c\x24\x1b\x11\x1b\x15\x0d\x34\x27\x1a\x3d\x2e\x1e\x32\x26\x18\ \x0d\x0a\x06\x13\x0e\x09\x1b\x14\x0d\x28\x1e\x13\x22\x19\x10\x16\ \x11\x0b\x19\x13\x0c\x19\x13\x0c\x1f\x17\x0e\x20\x18\x0f\x19\x13\ \x0c\x1a\x13\x0c\x18\x12\x0b\x13\x0e\x09\x12\x0e\x09\x16\x11\x0b\ \x1d\x16\x0e\x16\x10\x0b\x1e\x17\x0e\x1b\x14\x0d\x1d\x15\x0e\x25\ \x1c\x12\x25\x1c\x11\x31\x25\x17\x25\x1c\x12\x25\x1b\x11\x30\x24\ \x17\x3c\x2d\x1d\x14\x10\x0a\x1d\x16\x0e\x2e\x23\x17\x20\x19\x10\ \x35\x28\x1a\x3c\x2d\x1e\x25\x1b\x12\x1d\x16\x0e\x20\x18\x0f\x1e\ \x16\x0e\x2e\x22\x17\x23\x1b\x11\x1d\x16\x0e\x23\x1a\x11\x23\x1b\ \x11\x1a\x13\x0c\x1b\x15\x0d\x22\x1a\x10\x27\x1d\x13\x27\x1d\x13\ \x26\x1c\x12\x24\x1b\x11\x2b\x20\x15\x26\x1d\x12\x24\x1b\x11\x29\ \x1f\x13\x24\x1b\x12\x22\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\ \x12\x25\x1b\x11\x1d\x16\x0e\x1f\x18\x0f\x1c\x16\x0e\x1d\x15\x0e\ \x1e\x17\x0e\x19\x13\x0c\x1b\x14\x0c\x1a\x13\x0c\x16\x11\x0b\x1b\ \x14\x0d\x19\x13\x0c\x13\x0e\x09\x1a\x13\x0d\x1e\x17\x0f\x22\x19\ \x10\x1d\x16\x0e\x1f\x17\x0e\x1d\x16\x0e\x23\x1a\x10\x2a\x20\x14\ \x2b\x20\x15\x2b\x21\x15\x2e\x22\x16\x2d\x22\x16\x29\x1f\x14\x26\ \x1d\x12\x19\x13\x0c\x1e\x16\x0e\x1e\x16\x0e\x1b\x14\x0d\x19\x13\ \x0c\x1d\x16\x0e\x2a\x1f\x14\x31\x25\x18\x23\x1a\x11\x1f\x18\x0f\ \x23\x1b\x11\x26\x1d\x12\x29\x1f\x14\x2d\x22\x16\x25\x1c\x12\x26\ \x1c\x12\x2a\x1f\x14\x2c\x21\x15\x27\x1d\x13\x23\x1a\x11\x24\x1c\ \x11\x22\x1a\x11\x28\x1e\x13\x31\x25\x17\x24\x1b\x12\x1a\x14\x0d\ \x17\x12\x0b\x22\x1a\x10\x25\x1c\x12\x23\x1a\x11\x27\x1d\x12\x24\ \x1b\x12\x2b\x21\x15\x2b\x20\x15\x2c\x21\x15\x32\x25\x18\x30\x24\ \x17\x2f\x23\x16\x2b\x20\x15\x28\x23\x1d\x2e\x30\x32\x36\x3a\x3e\ \x44\x4b\x4e\x2d\x31\x33\x48\x4e\x52\x63\x69\x6f\x6f\x75\x7c\x52\ \x57\x5c\x6d\x71\x75\x35\x3a\x3e\x7e\x83\x87\x45\x47\x4c\x24\x25\ \x27\x6e\x72\x77\x7a\x80\x86\x50\x54\x59\x2f\x31\x35\x6a\x71\x74\ \x8a\x93\x95\x42\x46\x49\x0e\x11\x12\x6c\x76\x7a\x8a\x94\x99\x70\ \x75\x7a\x23\x23\x26\x08\x08\x09\x30\x32\x35\x87\x8d\x92\x00\x00\ \x00\xc1\xaa\x92\x2d\x25\x1c\x00\x00\x00\x1d\x15\x0e\x36\x28\x1a\ \x1c\x15\x0e\x39\x2b\x1c\x3a\x2c\x1c\x35\x28\x1a\x07\x05\x03\x10\ \x0c\x08\x10\x0c\x07\x1c\x14\x0e\x29\x1e\x14\x20\x18\x10\x1e\x16\ \x0e\x1e\x16\x0e\x1f\x17\x0f\x24\x1b\x12\x20\x18\x10\x1c\x15\x0e\ \x17\x12\x0b\x15\x10\x0a\x16\x11\x0a\x1a\x13\x0c\x17\x11\x0b\x15\ \x10\x0a\x18\x13\x0c\x1d\x16\x0e\x23\x1a\x11\x2b\x20\x14\x2c\x21\ \x15\x2c\x20\x15\x32\x27\x18\x23\x1a\x10\x29\x1f\x14\x34\x27\x19\ \x17\x12\x0b\x27\x1d\x13\x3f\x30\x20\x1c\x14\x0d\x30\x24\x18\x3a\ \x2b\x1d\x2b\x20\x14\x20\x18\x0f\x20\x18\x0f\x1d\x16\x0e\x24\x1b\ \x11\x22\x1a\x10\x29\x1e\x13\x1f\x17\x0f\x1f\x18\x0f\x1f\x17\x0f\ \x20\x19\x10\x2a\x1f\x15\x2b\x1f\x14\x2c\x21\x15\x2d\x22\x16\x29\ \x1e\x14\x30\x23\x17\x27\x1d\x13\x27\x1d\x12\x2e\x22\x16\x2d\x21\ \x16\x2d\x22\x16\x24\x1b\x11\x22\x1a\x11\x22\x1a\x10\x20\x18\x0f\ \x1a\x13\x0c\x1d\x15\x0e\x1c\x15\x0d\x14\x10\x0a\x18\x13\x0c\x17\ \x11\x0b\x17\x11\x0a\x15\x10\x0a\x1b\x15\x0d\x1e\x16\x0e\x1c\x15\ \x0d\x17\x12\x0b\x1b\x14\x0d\x22\x19\x10\x1e\x17\x0f\x15\x0f\x0a\ \x1b\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x27\ \x1d\x12\x30\x24\x17\x30\x24\x17\x2d\x22\x16\x2b\x21\x15\x1e\x16\ \x0e\x15\x10\x0a\x15\x10\x0a\x1d\x16\x0d\x1a\x14\x0c\x1b\x14\x0c\ \x1e\x17\x0e\x24\x1b\x11\x2d\x22\x15\x23\x1a\x11\x22\x1a\x11\x26\ \x1d\x12\x26\x1d\x13\x2b\x21\x14\x25\x1c\x11\x27\x1d\x12\x27\x1d\ \x13\x2b\x20\x14\x2a\x1f\x14\x28\x1d\x13\x23\x1b\x11\x26\x1d\x13\ \x2f\x23\x16\x2a\x20\x14\x2b\x21\x15\x23\x1b\x11\x24\x1b\x11\x23\ \x1a\x11\x24\x1b\x11\x24\x1b\x11\x24\x1a\x11\x21\x19\x10\x26\x1d\ \x12\x2c\x21\x16\x2a\x20\x14\x30\x24\x17\x30\x25\x17\x31\x25\x17\ \x2a\x20\x14\x29\x22\x1b\x2e\x31\x32\x35\x3a\x3d\x44\x4a\x4d\x23\ \x27\x29\x40\x45\x49\x63\x6a\x6f\x54\x5b\x62\x6f\x77\x7d\x3c\x3f\ \x44\x2f\x33\x37\x84\x8a\x8f\x78\x7e\x81\x45\x48\x4c\x42\x47\x4b\ \x8b\x95\x99\x60\x68\x6c\x20\x23\x28\x53\x58\x5d\x7b\x82\x86\x21\ \x22\x24\x00\x00\x00\x2e\x32\x35\x7e\x88\x8c\x8d\x96\x9a\x31\x34\ \x38\x67\x6b\x6e\x7d\x83\x88\x8b\x91\x96\x00\x00\x00\x9c\x87\x6f\ \x33\x28\x1d\x02\x01\x00\x26\x1d\x13\x3a\x2b\x1c\x1e\x16\x0e\x2a\ \x20\x14\x3d\x2d\x1d\x38\x2a\x1a\x0f\x0b\x07\x0e\x0a\x07\x17\x11\ \x0b\x1f\x18\x0f\x28\x1e\x13\x27\x1e\x13\x1c\x15\x0d\x19\x13\x0c\ \x24\x1b\x11\x29\x1e\x13\x25\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x1c\ \x15\x0d\x18\x12\x0b\x18\x12\x0b\x14\x0f\x0a\x16\x11\x0b\x18\x13\ \x0c\x1f\x17\x0f\x2b\x1f\x15\x23\x1a\x11\x20\x19\x10\x1a\x14\x0c\ \x2f\x24\x17\x28\x1e\x14\x33\x26\x18\x3d\x2e\x1e\x13\x0f\x09\x28\ \x1f\x14\x46\x35\x24\x18\x12\x0b\x31\x25\x18\x3f\x30\x1f\x2b\x20\ \x15\x24\x1b\x11\x29\x1f\x14\x22\x1a\x10\x28\x1e\x13\x2b\x21\x15\ \x27\x1d\x13\x29\x1e\x14\x21\x19\x10\x20\x19\x10\x23\x1a\x11\x23\ \x1b\x11\x2e\x22\x16\x25\x1c\x12\x2f\x23\x16\x2e\x22\x16\x2e\x22\ \x16\x2e\x23\x16\x2f\x23\x17\x37\x29\x1a\x33\x26\x18\x2c\x21\x15\ \x24\x1b\x11\x1f\x18\x0f\x21\x19\x10\x1e\x17\x0e\x23\x1b\x11\x27\ \x1d\x13\x19\x13\x0c\x17\x11\x0a\x18\x12\x0b\x1a\x13\x0c\x17\x12\ \x0b\x16\x10\x0a\x1d\x17\x0e\x2e\x23\x17\x27\x1e\x13\x1e\x17\x0e\ \x18\x12\x0c\x21\x19\x10\x1a\x13\x0c\x17\x11\x0b\x16\x10\x0a\x13\ \x0e\x09\x14\x0f\x09\x18\x12\x0b\x1b\x14\x0d\x1e\x16\x0e\x25\x1c\ \x12\x2a\x1f\x14\x27\x1d\x13\x27\x1d\x13\x26\x1d\x12\x1a\x14\x0c\ \x19\x13\x0c\x1f\x17\x0f\x24\x1b\x11\x1f\x18\x0e\x1c\x15\x0e\x27\ \x1d\x12\x24\x1a\x11\x2e\x22\x16\x30\x25\x17\x35\x28\x19\x29\x1e\ \x14\x25\x1c\x11\x2a\x20\x14\x2e\x23\x16\x2b\x20\x14\x29\x1f\x14\ \x2b\x21\x14\x28\x1e\x13\x24\x1a\x11\x2d\x21\x16\x2f\x23\x16\x30\ \x24\x17\x2e\x22\x16\x28\x1e\x13\x26\x1d\x13\x25\x1c\x12\x21\x19\ \x10\x22\x19\x10\x2a\x20\x14\x24\x1b\x11\x1f\x17\x0e\x22\x1a\x10\ \x25\x1c\x12\x2d\x22\x16\x33\x27\x18\x2e\x22\x16\x2a\x1f\x15\x30\ \x27\x1e\x32\x32\x31\x33\x38\x3b\x44\x4a\x4d\x31\x37\x39\x1e\x24\ \x26\x43\x48\x4c\x0b\x0c\x0e\x55\x5a\x62\x72\x79\x7f\x70\x75\x79\ \x7a\x80\x85\x81\x87\x8b\x78\x7e\x81\x4b\x4f\x54\x4f\x55\x5b\x5a\ \x61\x64\x52\x55\x59\x57\x5c\x61\x39\x3c\x41\x0c\x0d\x0e\x00\x00\ \x00\x23\x25\x27\x2d\x31\x36\x71\x77\x7d\x29\x2b\x30\x8b\x93\x97\ \x8e\x96\x9c\x8e\x94\x99\x00\x00\x00\xc4\xb5\xa9\x4c\x41\x34\x07\ \x05\x03\x00\x00\x00\x2f\x24\x17\x20\x18\x0f\x33\x27\x19\x3c\x2e\ \x1d\x3a\x2b\x1c\x0f\x0c\x07\x0a\x07\x05\x19\x14\x0c\x25\x1c\x11\ \x27\x1d\x12\x25\x1c\x12\x1b\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x24\ \x1b\x11\x27\x1d\x12\x1f\x17\x0f\x18\x12\x0b\x1b\x14\x0d\x1e\x16\ \x0e\x1f\x18\x0f\x19\x13\x0c\x11\x0d\x08\x11\x0d\x08\x1b\x15\x0d\ \x1d\x16\x0e\x18\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x31\x26\x19\x1b\ \x14\x0d\x21\x18\x10\x2c\x20\x15\x0f\x0b\x07\x23\x1b\x11\x44\x34\ \x23\x1b\x15\x0d\x2b\x21\x15\x40\x30\x20\x41\x31\x20\x36\x29\x1b\ \x2d\x22\x16\x27\x1d\x12\x2c\x21\x15\x26\x1d\x13\x2b\x20\x15\x30\ \x25\x17\x2b\x20\x14\x30\x24\x17\x23\x1a\x10\x1d\x16\x0e\x23\x1a\ \x10\x26\x1c\x12\x27\x1d\x12\x22\x1a\x10\x23\x1a\x11\x2b\x21\x15\ \x2f\x24\x17\x2d\x21\x15\x2a\x20\x14\x28\x1e\x13\x28\x1e\x13\x24\ \x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x3c\x2d\x1d\x30\x24\x18\x20\x18\ \x0f\x1a\x14\x0c\x14\x0f\x0a\x19\x13\x0c\x18\x12\x0b\x17\x12\x0b\ \x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x19\x10\x1d\x15\x0e\x1f\ \x17\x0f\x1a\x13\x0d\x18\x13\x0c\x1d\x16\x0d\x20\x18\x0f\x22\x1a\ \x11\x25\x1c\x12\x2d\x21\x15\x26\x1d\x12\x23\x1b\x11\x29\x1e\x14\ \x28\x1e\x13\x2b\x21\x15\x2c\x21\x15\x1f\x17\x0f\x1f\x17\x0f\x22\ \x1a\x11\x22\x19\x11\x22\x1a\x10\x20\x18\x0f\x20\x18\x0f\x25\x1c\ \x11\x29\x1f\x14\x28\x1e\x13\x27\x1d\x13\x25\x1c\x11\x24\x1b\x11\ \x2b\x20\x15\x22\x1a\x10\x24\x1c\x11\x27\x1e\x13\x2a\x20\x14\x28\ \x1e\x13\x23\x1a\x11\x29\x1e\x14\x31\x25\x18\x30\x25\x17\x32\x26\ \x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x14\x26\x1d\x12\x22\x19\x10\ \x23\x1b\x11\x26\x1d\x13\x27\x1d\x13\x27\x1e\x13\x21\x19\x0f\x2e\ \x23\x16\x2b\x21\x15\x27\x1d\x13\x24\x1b\x12\x33\x29\x1f\x37\x35\ \x32\x33\x38\x3b\x42\x48\x4b\x34\x3a\x3c\x2e\x33\x36\x08\x08\x09\ \x2f\x30\x33\x68\x6e\x75\x78\x80\x85\x7c\x83\x88\x7c\x82\x87\x80\ \x87\x8c\x80\x87\x8a\x7c\x82\x85\x3e\x42\x46\x28\x2b\x2e\x76\x7c\ \x7f\x88\x90\x93\x4b\x4f\x53\x09\x09\x09\x00\x00\x00\x61\x65\x68\ \x6a\x6f\x75\x13\x14\x18\x63\x67\x6d\x8e\x96\x9a\x8e\x95\x9a\x8b\ \x91\x96\x00\x00\x00\xc3\xb2\xa4\x59\x49\x39\x0a\x08\x05\x00\x00\ \x00\x18\x12\x0c\x1c\x15\x0e\x1d\x16\x0e\x35\x28\x1a\x45\x33\x21\ \x1b\x15\x0d\x17\x11\x0a\x21\x1a\x10\x26\x1c\x12\x25\x1c\x12\x2a\ \x20\x14\x25\x1c\x12\x1c\x15\x0d\x1d\x16\x0e\x20\x18\x0f\x26\x1c\ \x12\x23\x1a\x11\x15\x10\x0a\x14\x0f\x0a\x1d\x15\x0e\x20\x18\x0f\ \x1f\x18\x0f\x14\x0f\x09\x0b\x08\x05\x17\x12\x0b\x14\x0f\x0a\x1c\ \x15\x0d\x2d\x21\x16\x2e\x22\x17\x49\x38\x25\x19\x13\x0c\x16\x11\ \x0b\x32\x25\x18\x14\x0f\x09\x1f\x18\x0f\x37\x2a\x1c\x1e\x17\x0f\ \x1f\x18\x0f\x3a\x2c\x1d\x58\x43\x2e\x4d\x3b\x28\x32\x26\x18\x28\ \x1e\x13\x2d\x22\x16\x26\x1c\x12\x24\x1b\x12\x2d\x22\x15\x2a\x20\ \x14\x33\x26\x18\x28\x1e\x14\x21\x19\x10\x24\x1a\x11\x24\x1b\x11\ \x27\x1c\x12\x1d\x16\x0e\x20\x17\x0f\x28\x1e\x13\x29\x1f\x13\x27\ \x1e\x13\x28\x1e\x13\x26\x1c\x12\x25\x1c\x11\x23\x1b\x11\x1f\x17\ \x0f\x21\x18\x0f\x2c\x20\x15\x23\x1b\x12\x1e\x17\x0f\x1c\x15\x0d\ \x19\x13\x0c\x1e\x17\x0e\x1a\x14\x0c\x1e\x16\x0e\x22\x1a\x10\x1c\ \x15\x0d\x21\x19\x10\x25\x1c\x12\x27\x1e\x13\x2a\x1f\x14\x1d\x16\ \x0e\x1b\x15\x0d\x22\x1a\x10\x25\x1c\x12\x2b\x21\x15\x31\x25\x17\ \x36\x29\x1a\x2d\x22\x16\x20\x18\x0f\x25\x1b\x12\x2c\x21\x15\x31\ \x26\x18\x33\x27\x19\x22\x19\x10\x22\x1a\x10\x1e\x16\x0e\x1d\x16\ \x0e\x1e\x16\x0e\x1b\x15\x0d\x1d\x15\x0d\x27\x1e\x13\x28\x1f\x14\ \x30\x24\x17\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x29\x1e\x14\x2e\ \x23\x17\x2c\x22\x16\x29\x1f\x13\x26\x1c\x12\x2a\x1f\x14\x26\x1c\ \x12\x27\x1e\x14\x31\x25\x18\x28\x1e\x13\x2d\x22\x16\x38\x29\x1b\ \x38\x29\x1b\x27\x1d\x12\x26\x1c\x12\x23\x1a\x11\x27\x1d\x12\x22\ \x19\x11\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x2e\x22\x16\x23\x1b\ \x11\x24\x1b\x12\x28\x1e\x13\x33\x28\x1c\x34\x32\x2f\x32\x36\x39\ \x45\x4a\x4d\x21\x25\x27\x00\x00\x00\x3b\x3e\x40\x6e\x73\x78\x73\ \x7b\x80\x4f\x57\x5b\x6b\x71\x76\x7e\x85\x89\x7e\x86\x8a\x81\x89\ \x8d\x83\x8a\x8f\x7b\x81\x86\x48\x4b\x4f\x59\x5d\x62\x8d\x95\x99\ \x67\x6d\x71\x26\x26\x29\x2b\x2a\x2e\x85\x8c\x92\x8c\x95\x9a\x1b\ \x1b\x21\x8d\x92\x98\x8c\x92\x97\x8d\x93\x98\x8d\x93\x98\x00\x00\ \x00\xc6\xb9\xb0\x64\x51\x3f\x0e\x0b\x06\x01\x01\x01\x19\x12\x0c\ \x21\x1a\x10\x17\x11\x0b\x3f\x30\x1e\x46\x34\x22\x29\x1f\x14\x17\ \x12\x0b\x1f\x17\x0f\x1c\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x16\x10\ \x0b\x11\x0d\x08\x14\x0f\x0a\x1a\x13\x0c\x24\x1b\x11\x1f\x17\x0f\ \x13\x0e\x09\x14\x0f\x0a\x19\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1a\ \x13\x0c\x12\x0d\x08\x17\x11\x0b\x0c\x0a\x07\x2c\x21\x16\x41\x32\ \x21\x46\x36\x24\x52\x3f\x2a\x15\x10\x0a\x15\x10\x0a\x29\x1f\x14\ \x12\x0e\x08\x1d\x16\x0e\x32\x26\x19\x1c\x16\x0d\x19\x12\x0b\x38\ \x2a\x1c\x38\x2a\x1c\x21\x19\x0f\x2b\x20\x14\x2d\x21\x15\x26\x1c\ \x13\x24\x1b\x11\x26\x1c\x12\x25\x1c\x12\x27\x1e\x14\x30\x24\x17\ \x2a\x20\x14\x1d\x16\x0f\x1e\x17\x0f\x21\x18\x0f\x20\x18\x0f\x20\ \x18\x0f\x22\x19\x11\x28\x1e\x13\x28\x1e\x13\x25\x1c\x12\x29\x1f\ \x14\x2b\x20\x15\x27\x1d\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\ \x23\x1b\x11\x1e\x17\x0f\x1d\x16\x0d\x1f\x17\x0e\x25\x1b\x11\x1e\ \x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x1b\x14\x0d\x1d\x15\ \x0e\x1f\x18\x0f\x2a\x20\x14\x31\x25\x17\x25\x1c\x11\x20\x18\x0f\ \x1f\x17\x0f\x21\x18\x0f\x28\x1d\x13\x2a\x1f\x14\x2b\x20\x14\x2a\ \x20\x14\x28\x1e\x13\x24\x1c\x12\x21\x19\x10\x28\x1f\x13\x2d\x22\ \x15\x2f\x24\x17\x2a\x20\x14\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0e\ \x1c\x15\x0d\x19\x13\x0c\x24\x1a\x11\x28\x1d\x13\x29\x1f\x14\x2d\ \x22\x16\x23\x1a\x10\x23\x1a\x10\x28\x1e\x13\x31\x25\x17\x33\x26\ \x19\x2b\x21\x15\x29\x1e\x13\x27\x1d\x13\x21\x19\x10\x26\x1c\x12\ \x26\x1d\x13\x27\x1d\x13\x2b\x20\x15\x32\x25\x18\x33\x26\x19\x29\ \x1f\x13\x29\x1f\x14\x2b\x20\x14\x24\x1b\x11\x25\x1b\x11\x1b\x15\ \x0d\x1c\x15\x0d\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\x29\x1f\x14\ \x30\x24\x17\x2b\x21\x18\x2a\x2a\x27\x32\x36\x39\x42\x45\x49\x21\ \x23\x25\x3d\x40\x44\x64\x69\x6d\x6c\x73\x77\x73\x7b\x7e\x43\x47\ \x4a\x25\x29\x2c\x7a\x82\x86\x7f\x85\x89\x80\x86\x8b\x80\x89\x8d\ \x83\x8c\x90\x7d\x83\x87\x43\x44\x49\x63\x65\x6a\x42\x46\x4b\x7a\ \x7e\x83\x5c\x5d\x63\x5a\x5c\x63\x5b\x5f\x62\x54\x56\x5b\x8e\x94\ \x99\x8f\x95\x9a\x8f\x95\x9a\x8e\x94\x99\x00\x00\x00\xc6\xb9\xb0\ \x6f\x5d\x4a\x0f\x0b\x07\x00\x00\x00\x17\x11\x0b\x21\x19\x10\x1b\ \x14\x0d\x3d\x2d\x1d\x3e\x2e\x1e\x20\x18\x0f\x15\x10\x0a\x1f\x17\ \x0f\x1d\x16\x0d\x17\x12\x0b\x14\x0f\x09\x12\x0d\x09\x12\x0e\x09\ \x13\x0f\x09\x16\x10\x0a\x21\x19\x0f\x23\x1a\x11\x18\x12\x0b\x11\ \x0c\x08\x11\x0d\x09\x15\x10\x0a\x16\x10\x0a\x1b\x15\x0d\x1b\x14\ \x0d\x15\x10\x0a\x0d\x0a\x06\x1c\x15\x0d\x20\x18\x0f\x21\x19\x10\ \x43\x33\x22\x16\x11\x0a\x1d\x15\x0e\x2a\x1f\x14\x19\x13\x0c\x18\ \x12\x0c\x30\x25\x18\x21\x19\x10\x0f\x0b\x06\x3a\x2c\x1d\x40\x31\ \x20\x20\x18\x0f\x37\x2a\x1b\x2d\x23\x16\x2a\x20\x14\x29\x1f\x14\ \x2d\x22\x16\x2c\x21\x15\x25\x1c\x12\x26\x1d\x12\x2a\x20\x15\x1d\ \x16\x0e\x20\x18\x10\x27\x1d\x12\x1f\x17\x0e\x23\x1a\x10\x25\x1c\ \x12\x29\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\x1d\x12\x2b\x20\x15\ \x2c\x21\x16\x29\x1e\x14\x25\x1c\x12\x23\x1b\x11\x26\x1d\x12\x26\ \x1d\x12\x22\x1a\x10\x21\x19\x10\x21\x19\x0f\x1e\x17\x0e\x1b\x15\ \x0d\x1b\x14\x0c\x21\x19\x11\x20\x18\x10\x20\x18\x10\x24\x1c\x12\ \x2c\x21\x15\x34\x27\x19\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\ \x15\x0e\x21\x19\x10\x22\x1a\x11\x29\x1f\x14\x2c\x21\x15\x25\x1b\ \x11\x26\x1c\x12\x1c\x15\x0e\x1b\x15\x0d\x1d\x17\x0e\x28\x1e\x13\ \x2e\x23\x17\x2c\x22\x15\x2e\x23\x16\x23\x1a\x11\x1c\x15\x0d\x1e\ \x17\x0e\x21\x18\x0f\x20\x18\x0f\x22\x1a\x10\x28\x1e\x13\x30\x24\ \x17\x24\x1b\x11\x23\x1b\x11\x29\x1f\x13\x31\x25\x17\x2b\x20\x14\ \x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x20\x19\x0f\x25\x1c\x11\x28\ \x1e\x13\x29\x1f\x13\x32\x25\x18\x2e\x22\x16\x2a\x20\x14\x2a\x1f\ \x14\x2d\x21\x16\x29\x1f\x13\x2b\x21\x14\x23\x1a\x11\x20\x19\x10\ \x20\x19\x0f\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x22\x15\x2a\ \x21\x16\x2a\x28\x25\x31\x36\x39\x3d\x42\x44\x4a\x4e\x51\x57\x5c\ \x60\x60\x65\x6a\x6d\x72\x78\x74\x7b\x80\x11\x12\x13\x7c\x82\x86\ \x46\x4d\x50\x68\x6d\x71\x82\x8a\x8f\x81\x8a\x8f\x81\x89\x8e\x87\ \x8f\x94\x7f\x85\x89\x3f\x41\x45\x34\x35\x38\x7c\x83\x88\x8e\x95\ \x9c\x5c\x5f\x66\x10\x10\x12\x82\x86\x8a\x8f\x94\x99\x90\x94\x99\ \x90\x95\x9a\x8f\x93\x98\x00\x00\x00\xca\xc0\xbb\x7a\x68\x57\x12\ \x0e\x09\x00\x00\x00\x0d\x0a\x06\x1c\x15\x0d\x19\x12\x0c\x33\x26\ \x18\x34\x27\x19\x1d\x16\x0d\x1b\x14\x0d\x24\x1b\x11\x1d\x16\x0e\ \x1a\x14\x0d\x14\x10\x0a\x1a\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1d\ \x15\x0d\x1e\x17\x0f\x28\x1e\x13\x29\x1f\x13\x1e\x17\x0e\x17\x11\ \x0b\x17\x11\x0b\x19\x13\x0c\x1b\x14\x0c\x27\x1d\x13\x1c\x15\x0d\ \x0c\x0a\x05\x2b\x20\x14\x1c\x15\x0e\x1c\x16\x0e\x54\x40\x2b\x12\ \x0e\x07\x16\x10\x0a\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x24\x1b\ \x12\x34\x27\x1a\x21\x1a\x11\x58\x44\x2e\x52\x3f\x2b\x14\x0e\x08\ \x5b\x45\x2f\x39\x2c\x1d\x1e\x16\x0e\x26\x1c\x12\x2b\x20\x15\x2a\ \x20\x14\x27\x1d\x12\x28\x1e\x14\x2b\x20\x14\x22\x1a\x10\x21\x19\ \x10\x2a\x1f\x14\x21\x18\x10\x24\x1b\x11\x26\x1c\x12\x27\x1d\x12\ \x1f\x18\x0f\x22\x19\x10\x28\x1e\x13\x2c\x21\x15\x2b\x21\x15\x2e\ \x22\x16\x2a\x20\x15\x24\x1b\x11\x2b\x20\x15\x2d\x22\x16\x31\x25\ \x18\x34\x27\x19\x25\x1c\x11\x1b\x15\x0d\x17\x12\x0b\x1b\x14\x0c\ \x1b\x14\x0d\x1e\x16\x0f\x1b\x14\x0d\x1f\x17\x0f\x21\x19\x0f\x29\ \x1f\x14\x29\x1f\x14\x28\x1e\x13\x1e\x17\x0e\x1a\x13\x0c\x1d\x16\ \x0e\x21\x19\x10\x23\x1a\x11\x29\x1e\x14\x2b\x20\x14\x2a\x1f\x14\ \x23\x1a\x11\x1d\x16\x0e\x17\x12\x0b\x1c\x15\x0e\x28\x1d\x13\x2b\ \x21\x15\x37\x2a\x1a\x2a\x1f\x14\x21\x19\x10\x18\x12\x0c\x1f\x17\ \x0f\x22\x1a\x10\x27\x1d\x13\x2b\x20\x15\x2c\x21\x16\x20\x18\x0f\ \x1e\x17\x0e\x20\x18\x0f\x2a\x20\x14\x2b\x20\x14\x28\x1f\x13\x24\ \x1b\x11\x22\x1a\x10\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\x27\x1d\ \x13\x2f\x23\x17\x2b\x20\x14\x2b\x20\x14\x26\x1d\x12\x28\x1e\x13\ \x29\x1f\x14\x27\x1d\x12\x2c\x21\x15\x28\x1e\x13\x27\x1e\x13\x29\ \x1f\x13\x28\x1e\x14\x24\x1b\x11\x23\x1b\x11\x29\x1f\x15\x2a\x27\ \x23\x30\x33\x36\x3b\x3f\x41\x48\x4c\x4f\x55\x5a\x5e\x5e\x64\x69\ \x6e\x74\x7a\x3e\x43\x48\x26\x26\x28\x87\x91\x94\x24\x27\x28\x46\ \x4a\x4e\x77\x7f\x82\x81\x8a\x8f\x82\x8a\x91\x84\x8b\x91\x86\x8e\ \x92\x88\x8e\x90\x4a\x4b\x4d\x5e\x60\x64\x88\x8e\x94\x76\x7b\x82\ \x40\x42\x45\x90\x95\x99\x8f\x94\x99\x93\x96\x9b\x90\x94\x99\x91\ \x96\x9b\x00\x00\x00\xc8\xbf\xb8\x83\x6b\x55\x14\x0f\x0a\x00\x00\ \x00\x0b\x08\x05\x1e\x17\x0e\x18\x12\x0b\x2f\x24\x16\x32\x26\x18\ \x1e\x16\x0e\x15\x10\x0a\x22\x1a\x11\x1e\x16\x0e\x19\x13\x0c\x18\ \x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x1d\x16\ \x0e\x21\x19\x10\x2a\x20\x14\x28\x1f\x13\x20\x18\x10\x1f\x17\x0e\ \x1c\x15\x0e\x1c\x14\x0d\x27\x1d\x13\x21\x19\x10\x0b\x08\x05\x37\ \x2a\x1b\x15\x10\x0a\x11\x0d\x08\x5c\x46\x2f\x38\x2c\x1d\x47\x36\ \x25\x3c\x2e\x1e\x22\x1a\x10\x21\x19\x10\x33\x26\x19\x53\x40\x2b\ \x3b\x2d\x1e\x58\x43\x2e\x64\x4c\x35\x2f\x24\x18\x5d\x47\x31\x36\ \x29\x1c\x17\x11\x0a\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2d\x22\ \x16\x2c\x21\x15\x29\x1f\x13\x20\x19\x0f\x25\x1c\x11\x25\x1c\x12\ \x29\x1e\x14\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x21\x19\x10\x24\ \x1b\x11\x26\x1c\x12\x29\x1f\x14\x2a\x20\x14\x31\x24\x17\x2c\x21\ \x15\x29\x1f\x13\x27\x1d\x13\x27\x1d\x13\x2b\x20\x14\x36\x28\x19\ \x2a\x20\x15\x1b\x14\x0d\x16\x11\x0a\x13\x0e\x09\x19\x12\x0c\x20\ \x18\x10\x1b\x15\x0d\x1b\x14\x0d\x20\x19\x0f\x22\x19\x10\x28\x1e\ \x13\x32\x26\x18\x27\x1e\x12\x1d\x16\x0e\x1b\x14\x0d\x22\x19\x10\ \x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x1b\ \x14\x0d\x1a\x13\x0c\x1d\x16\x0d\x21\x19\x10\x29\x1f\x13\x34\x27\ \x19\x31\x24\x18\x28\x1e\x13\x1a\x14\x0d\x17\x12\x0b\x1e\x17\x0e\ \x20\x18\x0f\x28\x1e\x13\x23\x1a\x11\x1b\x14\x0d\x1a\x13\x0d\x20\ \x18\x0f\x24\x1c\x11\x26\x1d\x12\x2e\x23\x16\x2b\x20\x14\x24\x1b\ \x11\x29\x1e\x14\x2e\x22\x16\x2e\x22\x16\x29\x1f\x14\x2e\x22\x16\ \x31\x24\x17\x31\x24\x17\x29\x1f\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ \x20\x14\x30\x24\x17\x2d\x21\x15\x2b\x21\x14\x2e\x22\x16\x2a\x1f\ \x15\x29\x1e\x14\x2a\x20\x14\x2b\x20\x15\x2a\x26\x21\x2f\x33\x35\ \x3b\x40\x42\x47\x4c\x4f\x54\x5a\x5d\x5f\x66\x69\x6a\x71\x76\x5f\ \x63\x69\x40\x42\x47\x5e\x64\x65\x1e\x20\x20\x8e\x94\x99\x2a\x2d\ \x31\x75\x7d\x83\x88\x91\x98\x80\x88\x8f\x83\x8a\x90\x87\x8d\x90\ \x83\x88\x88\x41\x44\x45\x60\x63\x66\x3b\x3c\x3f\x78\x7b\x80\x8f\ \x93\x98\x94\x97\x9c\x91\x95\x9a\x8f\x93\x98\x92\x96\x9b\x00\x00\ \x00\xc6\xb9\xae\x99\x86\x72\x1a\x15\x12\x00\x00\x00\x15\x10\x0b\ \x2e\x23\x17\x1e\x16\x0e\x30\x24\x17\x3e\x2e\x1d\x1d\x16\x0e\x13\ \x0f\x09\x27\x1d\x13\x22\x19\x10\x1e\x16\x0e\x25\x1c\x12\x20\x18\ \x10\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x1e\x17\x0f\x1e\x17\x0e\ \x24\x1c\x11\x24\x1b\x12\x23\x1a\x11\x29\x1f\x14\x26\x1c\x12\x1b\ \x14\x0d\x21\x19\x10\x20\x19\x10\x0e\x0a\x07\x31\x25\x19\x3b\x2c\ \x1d\x20\x18\x10\x7c\x5f\x42\x2c\x22\x17\x3f\x2f\x20\x3c\x2d\x1e\ \x26\x1c\x12\x1f\x17\x0f\x33\x26\x19\x43\x33\x22\x1d\x16\x0e\x37\ \x2a\x1c\x54\x40\x2c\x54\x41\x2c\x49\x39\x26\x1c\x15\x0e\x1c\x15\ \x0e\x21\x19\x10\x1b\x15\x0d\x27\x1e\x13\x2b\x20\x15\x2e\x23\x16\ \x2f\x24\x17\x27\x1d\x12\x24\x1b\x11\x25\x1c\x12\x26\x1c\x13\x2c\ \x21\x15\x31\x25\x18\x2a\x1f\x14\x25\x1c\x12\x21\x19\x10\x26\x1c\ \x12\x29\x1e\x13\x30\x23\x16\x32\x25\x17\x2c\x21\x15\x2f\x23\x16\ \x2d\x22\x16\x2e\x23\x16\x22\x1a\x10\x26\x1c\x12\x21\x19\x10\x18\ \x12\x0c\x13\x0e\x09\x10\x0c\x08\x19\x13\x0c\x21\x18\x10\x1c\x15\ \x0d\x1b\x15\x0d\x19\x13\x0c\x1f\x18\x0f\x2a\x20\x14\x2d\x22\x15\ \x29\x1f\x13\x24\x1b\x11\x1b\x15\x0d\x1f\x17\x0f\x25\x1b\x11\x23\ \x1b\x11\x24\x1b\x11\x25\x1b\x12\x22\x19\x10\x1f\x18\x0f\x1f\x17\ \x0f\x20\x18\x0f\x20\x18\x10\x1e\x17\x0e\x25\x1c\x12\x2d\x22\x15\ \x2a\x1f\x14\x27\x1d\x13\x1d\x16\x0e\x1c\x16\x0e\x1e\x17\x0e\x1d\ \x15\x0e\x1d\x16\x0e\x1b\x14\x0d\x18\x12\x0c\x1f\x17\x0f\x23\x1a\ \x11\x2c\x21\x15\x37\x29\x1a\x33\x26\x19\x29\x1f\x14\x2b\x20\x15\ \x35\x28\x19\x33\x26\x19\x32\x26\x18\x2d\x22\x15\x31\x25\x18\x32\ \x25\x18\x34\x27\x19\x31\x25\x18\x32\x25\x18\x31\x26\x18\x36\x29\ \x1a\x2e\x22\x16\x29\x1f\x14\x30\x24\x17\x2b\x20\x15\x26\x1c\x12\ \x29\x1f\x13\x28\x1e\x14\x26\x23\x1e\x2f\x33\x34\x3a\x3f\x41\x45\ \x4c\x4e\x52\x59\x5c\x5d\x65\x68\x66\x6e\x72\x77\x7e\x83\x64\x68\ \x6d\x1b\x1d\x1e\x4d\x50\x53\x75\x7a\x7e\x18\x1a\x1b\x63\x68\x6c\ \x70\x77\x7d\x82\x8b\x92\x79\x81\x87\x7f\x84\x86\x87\x8c\x8e\x89\ \x8e\x90\x50\x51\x55\x32\x31\x35\x8f\x93\x98\x8e\x92\x97\x90\x95\ \x99\x8f\x93\x98\x90\x94\x99\x91\x96\x9a\x00\x00\x00\xcb\xc1\xb8\ \x9e\x84\x6c\x1b\x15\x0f\x00\x00\x00\x18\x13\x0c\x39\x2c\x1d\x1e\ \x17\x0f\x2d\x22\x16\x41\x31\x1f\x25\x1c\x11\x10\x0c\x07\x1f\x17\ \x0f\x1e\x16\x0f\x1c\x16\x0e\x28\x1f\x14\x24\x1b\x11\x1e\x16\x0e\ \x26\x1c\x12\x1f\x17\x0e\x1c\x15\x0d\x1a\x14\x0c\x1e\x16\x0f\x23\ \x1a\x11\x23\x1a\x11\x26\x1c\x12\x2b\x20\x14\x1e\x17\x0f\x2e\x22\ \x16\x2d\x22\x15\x13\x0f\x09\x39\x2b\x1d\x3a\x2c\x1d\x5c\x47\x30\ \x59\x45\x2f\x0e\x0a\x06\x16\x10\x0a\x30\x24\x18\x34\x27\x19\x26\ \x1c\x11\x37\x29\x1b\x3f\x30\x20\x16\x10\x0a\x3e\x2f\x20\x45\x34\ \x24\x2c\x21\x16\x39\x2b\x1d\x26\x1d\x13\x26\x1d\x13\x24\x1c\x12\ \x1b\x14\x0d\x1c\x15\x0d\x26\x1d\x12\x2e\x23\x16\x2e\x22\x15\x2a\ \x20\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x2d\x21\x15\x34\x27\ \x19\x2d\x22\x16\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2a\x20\x14\ \x33\x26\x18\x32\x26\x18\x2e\x23\x16\x31\x24\x17\x38\x2a\x1b\x38\ \x2a\x1b\x2a\x20\x14\x22\x19\x10\x1d\x15\x0d\x19\x12\x0b\x17\x12\ \x0b\x17\x12\x0b\x16\x11\x0a\x20\x18\x0f\x21\x19\x0f\x1b\x15\x0d\ \x1d\x16\x0e\x1e\x17\x0e\x26\x1d\x13\x25\x1c\x12\x21\x19\x10\x21\ \x19\x0f\x1e\x16\x0e\x22\x19\x10\x23\x1a\x11\x20\x18\x0f\x28\x1f\ \x13\x26\x1c\x12\x26\x1d\x12\x22\x1a\x10\x23\x1b\x11\x28\x1e\x13\ \x23\x1a\x10\x25\x1b\x11\x23\x1a\x11\x2d\x22\x15\x2d\x22\x16\x2b\ \x1f\x14\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\x24\x1b\x12\x23\x1b\ \x11\x20\x18\x0f\x1d\x16\x0e\x1e\x16\x0e\x23\x1b\x11\x30\x25\x17\ \x32\x26\x18\x2b\x20\x15\x27\x1d\x13\x31\x25\x17\x32\x26\x18\x2c\ \x21\x15\x31\x24\x17\x2d\x22\x16\x2d\x22\x15\x2e\x23\x16\x37\x29\ \x1a\x36\x28\x19\x31\x25\x17\x33\x26\x19\x32\x25\x18\x30\x24\x17\ \x2c\x20\x15\x2b\x20\x14\x2a\x20\x14\x28\x1e\x13\x24\x1b\x11\x24\ \x1b\x11\x2d\x26\x1e\x2f\x33\x35\x39\x3d\x40\x44\x49\x4d\x52\x59\ \x5c\x5c\x63\x65\x65\x6e\x72\x72\x7a\x7f\x7c\x82\x86\x6f\x75\x79\ \x47\x49\x4c\x3a\x3c\x3d\x4c\x50\x50\x51\x54\x55\x32\x34\x37\x75\ \x7d\x82\x54\x59\x5e\x5c\x5f\x61\x86\x8a\x8c\x8a\x90\x93\x8f\x93\ \x98\x81\x83\x89\x8b\x8f\x94\x8f\x94\x98\x90\x95\x99\x91\x95\x9a\ \x93\x96\x9b\x93\x97\x9b\x00\x00\x00\xc9\xc1\xbd\xb9\xa7\x96\x21\ \x1c\x17\x00\x00\x00\x08\x07\x04\x2e\x23\x17\x1e\x17\x0e\x26\x1c\ \x12\x34\x27\x19\x23\x1a\x11\x0e\x0b\x07\x18\x12\x0b\x19\x12\x0b\ \x1e\x16\x0e\x25\x1c\x12\x22\x1a\x10\x22\x19\x10\x23\x1a\x11\x19\ \x13\x0c\x1a\x13\x0d\x1c\x15\x0e\x1f\x17\x0f\x27\x1e\x13\x2a\x1f\ \x14\x28\x1e\x13\x29\x1f\x14\x1b\x14\x0d\x21\x19\x10\x2c\x21\x15\ \x20\x18\x0f\x4e\x3b\x27\x23\x1b\x12\x34\x28\x1a\x39\x2c\x1d\x29\ \x1f\x14\x13\x0f\x09\x2e\x23\x17\x38\x2a\x1b\x20\x17\x0f\x39\x2b\ \x1d\x4d\x3b\x27\x18\x12\x0b\x4f\x3c\x2a\x4c\x3a\x28\x11\x0d\x08\ \x21\x19\x10\x30\x24\x18\x28\x1e\x13\x2d\x23\x16\x1b\x15\x0d\x19\ \x13\x0c\x20\x18\x0f\x27\x1e\x12\x27\x1c\x12\x28\x1d\x13\x2a\x20\ \x14\x31\x25\x17\x34\x27\x19\x39\x2b\x1b\x31\x25\x17\x31\x25\x18\ \x28\x1e\x13\x27\x1d\x13\x21\x19\x10\x25\x1c\x12\x2e\x22\x16\x35\ \x27\x19\x33\x27\x19\x32\x26\x18\x3a\x2c\x1c\x3c\x2d\x1d\x36\x29\ \x1a\x26\x1c\x12\x24\x1b\x11\x17\x11\x0b\x16\x11\x0a\x13\x0f\x09\ \x13\x0e\x09\x17\x12\x0b\x19\x14\x0d\x1e\x17\x0f\x20\x18\x10\x21\ \x19\x0f\x23\x1a\x10\x2a\x1f\x13\x25\x1b\x11\x1f\x17\x0f\x19\x12\ \x0c\x1d\x15\x0e\x1f\x17\x0f\x1d\x16\x0e\x24\x1c\x12\x29\x1f\x14\ \x25\x1b\x12\x20\x18\x10\x24\x1b\x11\x30\x24\x16\x30\x24\x17\x37\ \x2a\x1a\x2d\x21\x16\x37\x29\x1b\x30\x24\x17\x27\x1d\x13\x29\x1f\ \x14\x2d\x22\x15\x2f\x23\x17\x2c\x21\x15\x1a\x14\x0d\x1c\x15\x0d\ \x1d\x16\x0e\x1c\x16\x0d\x1e\x17\x0e\x20\x18\x0f\x20\x18\x0f\x20\ \x19\x0f\x29\x1f\x13\x33\x26\x18\x35\x28\x19\x34\x27\x19\x33\x27\ \x19\x2d\x22\x16\x38\x2a\x1b\x36\x29\x1a\x41\x31\x1f\x3c\x2d\x1c\ \x37\x29\x1b\x3c\x2d\x1d\x34\x26\x19\x31\x25\x17\x2f\x24\x16\x33\ \x26\x19\x2d\x22\x16\x2b\x21\x15\x23\x1a\x11\x1b\x15\x0d\x25\x21\ \x1b\x35\x36\x36\x38\x3d\x3e\x44\x48\x4c\x52\x58\x5b\x5c\x63\x66\ \x68\x70\x74\x74\x7b\x7f\x77\x7e\x83\x7e\x87\x8a\x64\x69\x6e\x3a\ \x3d\x3e\x7a\x80\x80\x51\x57\x57\x42\x45\x47\x3d\x40\x43\x50\x53\ \x56\x4c\x4d\x51\x77\x7c\x7f\x89\x8e\x91\x8f\x93\x98\x8f\x93\x98\ \x8a\x8e\x93\x8f\x93\x98\x91\x96\x9a\x94\x98\x9c\x91\x95\x99\x94\ \x99\x9c\x00\x00\x00\x62\x56\x4d\x8b\x7b\x6c\x23\x1f\x1a\x00\x00\ \x00\x02\x02\x01\x29\x20\x14\x1b\x15\x0d\x2c\x21\x15\x3a\x2c\x1c\ \x2f\x23\x17\x15\x10\x0a\x1a\x13\x0c\x18\x12\x0b\x1a\x14\x0d\x1e\ \x17\x0e\x1a\x14\x0c\x26\x1d\x12\x2b\x20\x14\x26\x1d\x12\x1b\x15\ \x0d\x24\x1c\x11\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x25\x1b\x12\ \x27\x1c\x12\x1f\x17\x0f\x16\x10\x0b\x30\x24\x17\x1b\x14\x0d\x45\ \x34\x22\x23\x1a\x11\x1f\x17\x0f\x35\x28\x1b\x6b\x53\x39\x13\x0f\ \x09\x3b\x2d\x1e\x44\x34\x22\x3e\x2f\x20\x54\x40\x2c\x65\x4d\x35\ \x24\x1b\x12\x4a\x38\x26\x52\x3f\x2b\x14\x0f\x0a\x1c\x15\x0d\x2e\ \x22\x17\x1f\x17\x0f\x26\x1d\x13\x15\x10\x0a\x15\x10\x0a\x20\x18\ \x0f\x24\x1b\x11\x29\x1e\x13\x25\x1c\x12\x29\x1f\x14\x2b\x21\x15\ \x30\x24\x17\x32\x25\x17\x30\x24\x17\x30\x24\x17\x23\x1a\x11\x1d\ \x16\x0e\x1b\x15\x0d\x20\x18\x0f\x29\x1f\x14\x34\x27\x19\x37\x29\ \x1a\x35\x28\x1a\x36\x29\x1a\x3a\x2b\x1b\x38\x2a\x1b\x31\x25\x18\ \x2a\x1f\x14\x21\x19\x10\x22\x1a\x11\x21\x18\x0f\x1d\x16\x0e\x20\ \x18\x0f\x1e\x17\x0f\x23\x1b\x12\x23\x1b\x11\x24\x1a\x11\x20\x17\ \x0e\x21\x19\x0f\x22\x19\x10\x19\x13\x0c\x17\x12\x0b\x1a\x13\x0c\ \x1d\x15\x0d\x19\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0f\x1c\ \x15\x0d\x23\x1b\x11\x33\x26\x19\x36\x29\x1a\x35\x27\x19\x34\x27\ \x19\x2f\x24\x17\x2d\x22\x16\x2a\x20\x14\x27\x1c\x13\x21\x18\x0f\ \x28\x1e\x13\x2a\x20\x14\x1b\x15\x0d\x1a\x14\x0c\x1d\x16\x0e\x1d\ \x16\x0e\x1b\x15\x0d\x15\x10\x0a\x16\x11\x0a\x1a\x14\x0d\x22\x1a\ \x11\x29\x1f\x14\x30\x24\x17\x2f\x23\x16\x29\x1e\x13\x29\x1f\x14\ \x31\x25\x18\x2e\x23\x16\x37\x28\x1a\x2f\x24\x16\x33\x26\x18\x2e\ \x23\x16\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\x2b\x21\x15\x2a\x20\ \x14\x27\x1e\x13\x25\x1c\x12\x1b\x15\x0d\x1f\x1b\x17\x30\x32\x32\ \x38\x3c\x3e\x43\x48\x4b\x51\x56\x59\x59\x60\x63\x68\x6f\x72\x72\ \x7a\x7d\x77\x80\x83\x7c\x85\x89\x85\x8e\x91\x84\x8c\x90\x78\x7e\ \x80\x3f\x44\x43\x39\x3e\x3e\x2f\x31\x32\x5c\x60\x62\x4b\x4d\x50\ \x77\x7d\x7f\x8c\x91\x94\x8c\x91\x95\x8c\x91\x94\x88\x8d\x90\x91\ \x95\x99\x90\x94\x98\x93\x98\x9b\x91\x95\x99\x93\x97\x9b\x00\x00\ \x00\x16\x10\x0b\x41\x30\x1f\x1f\x19\x11\x02\x01\x00\x00\x00\x00\ \x28\x1e\x13\x1c\x14\x0d\x34\x27\x18\x4b\x38\x24\x39\x2a\x1b\x15\ \x0f\x09\x14\x10\x0a\x18\x12\x0b\x16\x11\x0a\x1b\x14\x0c\x18\x12\ \x0b\x1e\x17\x0e\x28\x1e\x13\x25\x1c\x12\x1a\x13\x0c\x1a\x14\x0c\ \x1f\x18\x0f\x1a\x14\x0d\x18\x12\x0b\x19\x13\x0c\x1f\x18\x0f\x19\ \x13\x0c\x11\x0c\x08\x35\x28\x1b\x1d\x16\x0e\x35\x28\x1a\x30\x24\ \x18\x2b\x20\x15\x29\x1f\x13\x67\x4e\x35\x36\x2a\x1c\x4d\x3a\x27\ \x59\x43\x2c\x48\x37\x26\x54\x40\x2b\x62\x4b\x33\x4c\x3b\x28\x58\ \x43\x2d\x3f\x2f\x20\x19\x13\x0d\x16\x11\x0a\x25\x1c\x12\x19\x13\ \x0c\x2d\x22\x16\x18\x13\x0c\x10\x0d\x08\x17\x11\x0b\x23\x1a\x11\ \x1e\x16\x0f\x1e\x17\x0f\x2b\x20\x15\x2c\x21\x15\x2b\x20\x15\x2c\ \x21\x15\x32\x25\x17\x2b\x20\x14\x24\x1b\x11\x21\x18\x10\x20\x18\ \x0f\x22\x1a\x10\x2b\x21\x15\x30\x24\x17\x36\x28\x1a\x34\x26\x19\ \x33\x26\x19\x3b\x2c\x1c\x2f\x23\x16\x2f\x24\x17\x29\x1f\x13\x24\ \x1c\x12\x1f\x17\x0f\x26\x1d\x13\x21\x19\x10\x1d\x15\x0e\x1e\x16\ \x0e\x1b\x15\x0d\x21\x19\x10\x1c\x14\x0d\x1f\x18\x0f\x20\x18\x10\ \x1b\x15\x0d\x17\x12\x0b\x1d\x16\x0e\x22\x19\x11\x24\x1b\x11\x1e\ \x17\x0f\x22\x19\x10\x27\x1e\x13\x21\x19\x10\x1a\x14\x0c\x1e\x16\ \x0e\x2c\x21\x15\x2a\x1f\x14\x2c\x22\x15\x2d\x21\x15\x32\x26\x18\ \x2e\x22\x16\x23\x1a\x11\x23\x1a\x11\x1d\x16\x0e\x27\x1e\x13\x2f\ \x23\x16\x28\x1e\x13\x1a\x14\x0d\x16\x11\x0a\x1b\x14\x0c\x18\x12\ \x0c\x1a\x14\x0c\x1b\x14\x0d\x1c\x14\x0d\x22\x19\x10\x25\x1c\x12\ \x23\x1b\x11\x24\x1c\x12\x25\x1c\x12\x28\x1f\x13\x30\x24\x17\x2f\ \x23\x17\x2c\x21\x16\x30\x24\x17\x3b\x2c\x1c\x2f\x24\x16\x2c\x21\ \x16\x2e\x22\x16\x2c\x21\x15\x32\x26\x18\x2d\x22\x15\x2e\x23\x16\ \x2a\x1f\x14\x19\x13\x0c\x1f\x1b\x15\x32\x32\x31\x37\x3a\x3d\x42\ \x47\x49\x50\x56\x58\x5a\x61\x64\x64\x6c\x6f\x6f\x76\x79\x79\x80\ \x84\x7d\x86\x8a\x82\x8a\x8e\x85\x8d\x91\x77\x7c\x81\x3a\x3d\x40\ \x28\x2a\x2a\x5f\x62\x63\x4c\x4f\x51\x49\x4c\x4e\x8e\x94\x97\x8e\ \x94\x97\x8e\x93\x96\x8b\x90\x94\x8c\x91\x94\x8e\x93\x96\x90\x95\ \x98\x90\x95\x98\x8f\x93\x97\x92\x96\x99\x00\x00\x00\x8e\x8e\x8d\ \x81\x6d\x59\x2f\x24\x17\x03\x02\x01\x00\x00\x00\x22\x1a\x11\x1b\ \x14\x0d\x3a\x2b\x1c\x5d\x45\x2d\x3d\x2e\x1d\x11\x0d\x08\x18\x12\ \x0c\x1d\x16\x0d\x12\x0e\x09\x19\x12\x0c\x17\x11\x0b\x18\x13\x0b\ \x1c\x16\x0d\x23\x1b\x11\x1c\x15\x0e\x17\x11\x0b\x12\x0e\x09\x11\ \x0d\x09\x14\x0f\x0a\x14\x0f\x0a\x17\x12\x0b\x11\x0d\x08\x0d\x0a\ \x06\x2c\x22\x16\x29\x1f\x14\x2f\x23\x18\x39\x2b\x1c\x1d\x16\x0e\ \x23\x1a\x12\x4d\x3a\x27\x59\x44\x2f\x42\x32\x21\x39\x2b\x1c\x14\ \x0f\x0a\x30\x24\x18\x46\x35\x24\x21\x19\x10\x2d\x22\x16\x2d\x22\ \x16\x1e\x16\x0f\x17\x11\x0b\x24\x1b\x12\x1b\x15\x0d\x21\x19\x10\ \x15\x11\x0b\x11\x0d\x08\x14\x10\x09\x27\x1d\x13\x20\x19\x0f\x24\ \x1c\x12\x2a\x20\x15\x2a\x20\x14\x32\x25\x18\x2d\x22\x15\x31\x25\ \x18\x28\x1f\x13\x26\x1c\x12\x26\x1c\x12\x26\x1d\x12\x25\x1c\x12\ \x28\x1e\x13\x2b\x20\x15\x2a\x20\x15\x28\x1e\x13\x2c\x21\x15\x32\ \x25\x18\x29\x1e\x14\x30\x23\x17\x2d\x22\x16\x2b\x21\x15\x27\x1e\ \x13\x23\x1a\x11\x21\x19\x10\x17\x11\x0a\x19\x13\x0c\x20\x18\x0f\ \x28\x1e\x13\x24\x1b\x11\x28\x1e\x13\x27\x1d\x13\x22\x19\x10\x24\ \x1b\x11\x25\x1b\x11\x25\x1c\x12\x28\x1e\x13\x27\x1d\x13\x2a\x1f\ \x14\x33\x25\x18\x30\x23\x17\x20\x18\x0f\x16\x11\x0b\x1f\x18\x0f\ \x1b\x15\x0c\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x31\x24\x18\x2c\ \x22\x15\x22\x19\x10\x1d\x15\x0e\x1a\x13\x0c\x28\x1f\x13\x2d\x21\ \x15\x29\x1e\x14\x23\x1a\x10\x20\x19\x10\x27\x1e\x13\x29\x1f\x14\ \x27\x1e\x13\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x2a\x20\x14\x25\ \x1c\x11\x24\x1c\x12\x2c\x22\x15\x2b\x20\x14\x2c\x21\x15\x29\x1f\ \x14\x2c\x21\x15\x34\x27\x18\x31\x25\x17\x2e\x23\x17\x2b\x20\x15\ \x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x30\x24\x17\x25\x1c\x11\x1c\ \x15\x0e\x1e\x19\x13\x2c\x2c\x2b\x36\x39\x3b\x41\x46\x49\x4f\x55\ \x57\x59\x60\x63\x64\x6b\x6f\x6e\x75\x78\x78\x80\x84\x7d\x84\x88\ \x81\x87\x8c\x85\x8b\x90\x81\x87\x8c\x6e\x73\x76\x5f\x62\x63\x6d\ \x70\x72\x37\x37\x39\x66\x6a\x6d\x92\x98\x9c\x8f\x95\x98\x93\x97\ \x9b\x8f\x93\x98\x8e\x93\x97\x90\x95\x99\x91\x96\x9a\x8e\x93\x96\ \x8f\x94\x97\x8f\x94\x97\x00\x00\x00\xd0\xcd\xcc\xbb\xaa\x99\x48\ \x3c\x2f\x05\x04\x02\x05\x04\x02\x18\x12\x0b\x15\x10\x0a\x2e\x23\ \x16\x46\x34\x21\x3d\x2e\x1d\x0f\x0c\x08\x14\x0f\x0a\x1f\x17\x0f\ \x14\x0f\x0a\x15\x10\x0a\x14\x10\x0a\x12\x0e\x09\x1c\x15\x0d\x26\ \x1d\x12\x22\x19\x11\x1d\x16\x0e\x17\x12\x0b\x17\x11\x0b\x16\x11\ \x0b\x13\x0f\x09\x16\x10\x0a\x0f\x0b\x07\x10\x0c\x08\x1c\x15\x0e\ \x2a\x1f\x14\x27\x1c\x13\x3a\x2c\x1d\x1e\x17\x0e\x23\x1a\x11\x4c\ \x3a\x26\x23\x1a\x11\x2d\x22\x16\x40\x30\x1f\x0e\x0a\x06\x2d\x23\ \x17\x50\x3d\x2a\x1f\x17\x0f\x21\x19\x0f\x2e\x22\x16\x28\x1d\x13\ \x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x2a\x20\x15\x1f\x17\x0f\x1a\ \x13\x0d\x1d\x16\x0e\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x25\x1c\ \x12\x2c\x21\x15\x2f\x23\x17\x2e\x22\x16\x21\x19\x0f\x24\x1b\x11\ \x25\x1c\x12\x26\x1d\x11\x24\x1b\x11\x26\x1c\x12\x27\x1e\x13\x24\ \x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1a\x11\x23\x1a\x11\x23\x1a\ \x10\x29\x1e\x13\x2a\x1f\x14\x30\x24\x17\x29\x1f\x13\x1d\x16\x0e\ \x27\x1d\x12\x25\x1c\x12\x22\x1a\x10\x1f\x18\x10\x24\x1a\x11\x27\ \x1e\x12\x2b\x21\x15\x23\x1b\x11\x2c\x20\x15\x2b\x20\x15\x22\x1a\ \x10\x1c\x16\x0e\x1f\x17\x0f\x23\x1a\x10\x28\x1e\x13\x2e\x23\x16\ \x31\x24\x17\x2c\x20\x15\x23\x1a\x10\x19\x13\x0c\x1b\x14\x0d\x22\ \x19\x10\x1c\x16\x0e\x24\x1b\x11\x2d\x21\x16\x2d\x22\x16\x2f\x23\ \x17\x28\x1e\x13\x17\x12\x0c\x20\x17\x0f\x1f\x17\x0f\x1e\x17\x0e\ \x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x25\x1c\x12\x25\x1c\x11\x26\ \x1c\x12\x2f\x23\x17\x2d\x22\x16\x29\x1e\x13\x30\x23\x17\x2d\x22\ \x16\x2a\x20\x15\x27\x1d\x13\x23\x1a\x11\x26\x1c\x12\x2d\x22\x16\ \x2f\x24\x17\x32\x25\x18\x29\x1f\x14\x27\x1d\x12\x23\x1b\x11\x22\ \x1a\x10\x25\x1c\x12\x2a\x20\x14\x28\x1f\x14\x23\x1b\x11\x2a\x21\ \x18\x31\x2e\x2b\x35\x38\x3a\x42\x46\x48\x4e\x53\x55\x5a\x5f\x64\ \x66\x6a\x6e\x70\x75\x7b\x77\x7d\x83\x80\x86\x8c\x82\x88\x8d\x80\ \x86\x8b\x84\x8a\x8f\x87\x8c\x90\x8c\x90\x95\x4c\x4d\x50\x31\x32\ \x33\x83\x88\x8b\x68\x6e\x73\x87\x8d\x92\x92\x96\x9b\x90\x94\x99\ \x8e\x92\x97\x91\x95\x9a\x91\x95\x9a\x8d\x92\x96\x91\x96\x99\x91\ \x95\x99\x00\x00\x00\xce\xca\xc9\xc1\xaa\x94\x54\x42\x31\x08\x06\ \x03\x01\x02\x00\x1a\x13\x0c\x20\x18\x0f\x28\x1e\x13\x3d\x2d\x1c\ \x3b\x2c\x1c\x16\x11\x0a\x13\x0d\x09\x20\x18\x0f\x1a\x13\x0d\x17\ \x11\x0b\x15\x10\x0a\x17\x11\x0b\x18\x12\x0c\x23\x1b\x11\x2d\x22\ \x16\x25\x1c\x12\x1d\x15\x0e\x16\x11\x0a\x11\x0d\x08\x10\x0d\x08\ \x16\x11\x0a\x13\x0e\x09\x13\x0e\x09\x17\x11\x0b\x26\x1d\x12\x1a\ \x14\x0d\x40\x31\x21\x1c\x15\x0d\x27\x1e\x12\x4a\x38\x26\x1e\x16\ \x0f\x3a\x2b\x1d\x62\x49\x31\x28\x1e\x13\x31\x25\x19\x51\x3e\x2a\ \x1d\x16\x0e\x1c\x15\x0e\x22\x1a\x11\x1d\x16\x0f\x1c\x16\x0e\x21\ \x19\x10\x1e\x17\x0f\x26\x1c\x13\x1f\x18\x0f\x1a\x14\x0d\x17\x12\ \x0b\x1c\x15\x0d\x1e\x16\x0e\x1e\x17\x0d\x22\x1a\x11\x2a\x1f\x14\ \x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x24\x1b\x12\x2f\x23\x16\x27\ \x1d\x13\x21\x19\x10\x1e\x17\x0e\x1b\x14\x0d\x1b\x14\x0c\x22\x19\ \x10\x21\x18\x0f\x22\x1a\x10\x23\x1b\x11\x25\x1c\x12\x2a\x1f\x14\ \x32\x25\x18\x2a\x1f\x14\x22\x1a\x11\x27\x1e\x13\x26\x1c\x12\x26\ \x1d\x13\x20\x18\x10\x23\x1a\x10\x20\x18\x10\x23\x1a\x11\x20\x19\ \x10\x20\x18\x0f\x27\x1e\x13\x2c\x21\x15\x2e\x23\x16\x29\x1f\x14\ \x21\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\x13\x2a\x20\x15\x28\ \x1f\x13\x23\x1a\x11\x20\x18\x10\x17\x12\x0b\x21\x19\x10\x1a\x14\ \x0d\x1b\x14\x0d\x22\x1a\x11\x24\x1b\x12\x22\x1a\x10\x2a\x20\x14\ \x26\x1c\x13\x1c\x16\x0e\x23\x1a\x11\x1b\x15\x0d\x1f\x17\x0f\x24\ \x1b\x10\x27\x1d\x12\x2b\x20\x15\x2c\x21\x15\x2f\x23\x17\x3c\x2e\ \x1d\x35\x27\x19\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x2f\x23\x17\ \x2f\x24\x17\x2e\x22\x16\x2b\x20\x14\x27\x1e\x13\x2c\x21\x15\x29\ \x1f\x14\x29\x1f\x14\x24\x1b\x11\x24\x1c\x12\x28\x1e\x13\x25\x1c\ \x12\x26\x1d\x13\x24\x1b\x11\x1f\x17\x0e\x29\x1e\x14\x35\x30\x29\ \x35\x38\x3a\x3f\x43\x45\x4b\x4f\x52\x5a\x5e\x63\x67\x6b\x6f\x6e\ \x73\x77\x78\x7e\x82\x7f\x84\x89\x83\x89\x8e\x84\x89\x8e\x83\x88\ \x8c\x89\x8f\x94\x8e\x93\x98\x74\x76\x7a\x79\x7c\x7f\x8d\x92\x96\ \x63\x69\x6c\x79\x80\x82\x8c\x90\x95\x8e\x93\x97\x8e\x93\x96\x94\ \x98\x9d\x90\x94\x99\x91\x96\x99\x92\x97\x9a\x91\x95\x97\x00\x00\ \x00\xce\xcb\xca\xc6\xc2\xc1\x66\x57\x48\x0b\x08\x05\x01\x00\x00\ \x20\x18\x0f\x22\x19\x11\x26\x1d\x12\x44\x33\x21\x39\x2b\x1b\x15\ \x0f\x0a\x0f\x0b\x07\x16\x10\x0a\x26\x1d\x12\x23\x1b\x11\x1f\x17\ \x0f\x1e\x17\x0e\x1f\x18\x0f\x1a\x14\x0c\x22\x19\x10\x1d\x15\x0e\ \x1a\x14\x0d\x20\x18\x0f\x1e\x17\x0f\x19\x14\x0c\x1d\x16\x0e\x17\ \x11\x0a\x13\x0e\x09\x15\x10\x0a\x27\x1d\x13\x16\x11\x0b\x38\x2a\ \x1c\x1a\x14\x0c\x1b\x14\x0c\x33\x27\x19\x21\x19\x10\x37\x2a\x1b\ \x5c\x45\x2e\x53\x40\x2b\x2c\x21\x16\x47\x37\x25\x28\x1f\x14\x1b\ \x14\x0d\x2a\x1f\x15\x2f\x23\x17\x27\x1e\x13\x28\x1e\x13\x1f\x17\ \x0f\x2f\x23\x17\x27\x1d\x13\x1c\x15\x0d\x12\x0e\x09\x1f\x17\x0e\ \x1b\x14\x0d\x24\x1b\x11\x21\x19\x10\x2e\x23\x16\x2f\x23\x17\x2f\ \x23\x16\x2e\x23\x16\x34\x27\x19\x2c\x21\x15\x32\x25\x18\x28\x1e\ \x14\x1f\x16\x0e\x1c\x15\x0d\x1f\x17\x0f\x24\x1b\x11\x25\x1c\x11\ \x22\x19\x10\x25\x1c\x12\x26\x1c\x12\x32\x26\x18\x2e\x22\x16\x28\ \x1e\x13\x25\x1c\x11\x29\x1f\x14\x24\x1b\x12\x1d\x16\x0e\x1d\x15\ \x0d\x23\x1a\x11\x25\x1b\x11\x21\x19\x0f\x1e\x16\x0e\x1e\x16\x0e\ \x20\x18\x10\x23\x1a\x11\x29\x1e\x14\x2c\x20\x15\x26\x1d\x12\x1a\ \x14\x0d\x1a\x14\x0d\x1e\x16\x0f\x22\x19\x10\x24\x1b\x11\x25\x1c\ \x11\x26\x1d\x12\x23\x1a\x11\x1a\x13\x0c\x11\x0d\x08\x1b\x14\x0d\ \x19\x14\x0d\x29\x1f\x14\x2b\x20\x14\x2f\x23\x17\x2d\x22\x16\x22\ \x1a\x10\x22\x19\x10\x28\x1e\x13\x1f\x18\x0f\x27\x1d\x13\x29\x1f\ \x14\x2c\x21\x15\x2c\x21\x15\x28\x1d\x13\x37\x29\x1b\x39\x2b\x1c\ \x2b\x20\x15\x36\x29\x1a\x37\x29\x1b\x3c\x2d\x1d\x3f\x2f\x1e\x43\ \x32\x20\x35\x28\x1a\x2c\x21\x15\x2d\x22\x15\x28\x1e\x13\x1e\x16\ \x0e\x25\x1b\x11\x29\x1f\x14\x1f\x18\x0f\x24\x1b\x11\x25\x1c\x11\ \x24\x1a\x11\x23\x1a\x10\x20\x1a\x12\x30\x2c\x27\x35\x38\x3a\x3e\ \x42\x44\x4a\x4d\x50\x5b\x5f\x62\x66\x6b\x70\x6b\x70\x75\x7a\x80\ \x84\x7d\x82\x87\x80\x86\x8b\x80\x86\x8b\x84\x8a\x8f\x8f\x93\x98\ \x6f\x73\x77\x54\x57\x5a\x72\x75\x78\x2f\x31\x33\x1c\x1d\x20\x4a\ \x4d\x50\x86\x8b\x90\x91\x96\x99\x8e\x93\x96\x93\x98\x9b\x92\x96\ \x99\x93\x98\x9b\x8f\x94\x97\x91\x95\x99\x00\x00\x00\xd1\xcc\xca\ \xc1\xae\x9a\x69\x52\x3a\x14\x0f\x0a\x04\x04\x02\x0e\x0a\x07\x1d\ \x16\x0e\x27\x1d\x12\x54\x3f\x28\x34\x27\x19\x1a\x14\x0c\x0a\x07\ \x04\x11\x0d\x08\x1a\x13\x0c\x1f\x17\x0f\x25\x1c\x12\x20\x19\x0f\ \x1d\x15\x0d\x1a\x13\x0c\x22\x19\x10\x1b\x14\x0d\x13\x0f\x09\x19\ \x13\x0c\x20\x18\x0f\x2a\x1f\x14\x1f\x17\x0e\x1c\x15\x0d\x15\x10\ \x0a\x13\x0e\x09\x33\x26\x19\x0f\x0b\x07\x3e\x2f\x1f\x0f\x0b\x07\ \x10\x0d\x08\x4b\x39\x26\x24\x1b\x12\x27\x1d\x13\x49\x37\x24\x4a\ \x38\x26\x5a\x45\x2f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x10\x3b\x2c\ \x1c\x39\x2a\x1b\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x30\x25\x18\ \x26\x1d\x12\x1d\x16\x0e\x19\x13\x0c\x16\x11\x0b\x19\x13\x0b\x21\ \x19\x0f\x21\x19\x10\x27\x1d\x13\x2d\x22\x16\x34\x27\x19\x35\x28\ \x19\x35\x28\x19\x34\x27\x19\x2d\x22\x16\x22\x1a\x10\x1d\x15\x0d\ \x1f\x17\x0f\x22\x1a\x11\x22\x1a\x10\x24\x1b\x11\x27\x1e\x13\x28\ \x1e\x14\x21\x18\x0f\x26\x1c\x12\x2b\x1f\x14\x2e\x23\x16\x24\x1b\ \x11\x1e\x17\x0f\x1f\x17\x0e\x27\x1d\x13\x29\x1f\x14\x2a\x20\x14\ \x2b\x20\x14\x1f\x18\x0f\x1f\x18\x0e\x25\x1b\x12\x1e\x17\x0f\x25\ \x1c\x11\x2a\x20\x14\x32\x26\x18\x34\x27\x19\x2e\x22\x16\x21\x19\ \x10\x21\x19\x0f\x26\x1c\x12\x2f\x24\x16\x2f\x23\x16\x28\x1e\x14\ \x29\x1f\x14\x1e\x17\x0f\x1d\x16\x0e\x1b\x14\x0d\x1e\x17\x0e\x27\ \x1d\x13\x2d\x22\x16\x31\x25\x17\x2a\x1f\x14\x29\x1f\x13\x26\x1c\ \x12\x25\x1c\x12\x1f\x18\x0e\x25\x1b\x12\x1f\x17\x0f\x20\x18\x0f\ \x25\x1c\x12\x2c\x21\x15\x38\x2b\x1b\x30\x24\x17\x2b\x20\x15\x38\ \x2a\x1b\x2e\x23\x16\x35\x27\x1a\x37\x29\x1b\x39\x2b\x1b\x3c\x2d\ \x1c\x39\x2b\x1c\x30\x24\x17\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\ \x24\x1b\x11\x24\x1b\x11\x21\x19\x10\x22\x1a\x11\x21\x19\x10\x1e\ \x16\x0f\x25\x1c\x12\x34\x2d\x26\x35\x37\x39\x3d\x40\x43\x4a\x4d\ \x50\x54\x58\x5c\x61\x65\x69\x6e\x74\x78\x78\x7e\x81\x7b\x81\x87\ \x7d\x83\x88\x83\x89\x8e\x83\x89\x8f\x89\x8d\x92\x86\x8a\x8f\x90\ \x95\x99\x68\x6b\x6e\x64\x66\x6b\x64\x66\x6a\x3f\x41\x43\x83\x87\ \x8b\x93\x97\x9b\x95\x99\x9e\x91\x96\x9c\x90\x94\x9a\x92\x97\x9b\ \x8e\x93\x96\x8e\x93\x96\x00\x00\x00\xd2\xcd\xcc\xc9\xc5\xc4\x7b\ \x66\x50\x11\x0d\x08\x00\x00\x00\x1d\x16\x0f\x1f\x17\x0f\x24\x1b\ \x11\x52\x3d\x28\x4d\x39\x25\x2a\x1f\x14\x0f\x0b\x07\x12\x0e\x09\ \x13\x0f\x09\x17\x11\x0b\x20\x18\x0f\x20\x18\x0f\x26\x1d\x13\x2b\ \x21\x15\x25\x1c\x12\x1f\x17\x0e\x1b\x14\x0d\x1b\x15\x0e\x1c\x15\ \x0d\x22\x1a\x10\x30\x24\x17\x21\x19\x0f\x1a\x14\x0d\x1a\x13\x0d\ \x3e\x2f\x1f\x19\x13\x0c\x40\x31\x21\x0c\x09\x05\x12\x0e\x09\x3f\ \x31\x20\x19\x12\x0c\x28\x1f\x14\x3d\x2e\x1e\x1c\x15\x0d\x22\x1a\ \x10\x2a\x20\x15\x33\x26\x19\x1c\x15\x0d\x3a\x2c\x1d\x3b\x2d\x1d\ \x1d\x15\x0e\x30\x24\x17\x2c\x20\x15\x25\x1b\x11\x1c\x16\x0e\x1e\ \x16\x0e\x1e\x16\x0e\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x21\x18\ \x0f\x23\x1b\x12\x24\x1b\x12\x31\x25\x17\x41\x30\x20\x49\x37\x23\ \x3e\x2e\x1e\x28\x1f\x14\x1d\x16\x0e\x1b\x14\x0d\x1d\x15\x0e\x1f\ \x18\x0e\x20\x18\x0f\x1e\x17\x0f\x1f\x18\x0f\x21\x19\x10\x26\x1c\ \x12\x27\x1d\x12\x29\x1f\x14\x21\x1a\x10\x27\x1d\x12\x24\x1c\x12\ \x23\x1a\x11\x20\x18\x0f\x28\x1e\x13\x29\x1e\x13\x2a\x1f\x14\x2b\ \x20\x14\x25\x1c\x12\x29\x1f\x13\x22\x19\x10\x25\x1c\x12\x22\x19\ \x10\x26\x1d\x12\x29\x1f\x14\x29\x1f\x14\x29\x1e\x14\x1f\x17\x0f\ \x1f\x18\x0f\x28\x1e\x14\x2f\x24\x17\x2d\x22\x16\x1d\x16\x0e\x1f\ \x18\x0f\x2c\x21\x16\x38\x2a\x1c\x3e\x2f\x20\x1e\x16\x0e\x26\x1c\ \x12\x25\x1c\x12\x2d\x22\x16\x2c\x22\x15\x38\x2a\x1b\x2c\x21\x15\ \x25\x1c\x12\x1f\x17\x0f\x22\x19\x10\x28\x1f\x13\x29\x1f\x14\x2c\ \x21\x15\x30\x24\x17\x29\x1f\x14\x2a\x20\x15\x2d\x22\x15\x2e\x24\ \x17\x36\x28\x1a\x33\x26\x19\x37\x29\x1b\x36\x28\x1a\x3f\x30\x1e\ \x3a\x2b\x1b\x2b\x20\x14\x28\x1e\x13\x20\x19\x0f\x1a\x14\x0c\x1a\ \x13\x0d\x1c\x15\x0e\x1f\x17\x0e\x24\x1b\x11\x1e\x17\x0f\x1f\x18\ \x0f\x29\x26\x21\x32\x34\x36\x3e\x41\x43\x4b\x4e\x51\x58\x5c\x5f\ \x61\x65\x69\x6f\x74\x78\x78\x7f\x84\x7f\x85\x89\x81\x87\x8d\x88\ \x8e\x94\x82\x88\x8e\x88\x8e\x93\x88\x8e\x93\x8d\x92\x98\x6d\x71\ \x78\x6e\x71\x79\x47\x48\x4c\x59\x5a\x5e\x8c\x90\x95\x8f\x93\x98\ \x94\x98\x9d\x90\x94\x99\x99\x9d\xa2\x93\x97\x9c\x94\x99\x9d\x95\ \x99\x9c\x00\x00\x00\xd3\xcd\xcb\xc2\xb3\xa5\x85\x68\x4b\x12\x0d\ \x09\x00\x00\x00\x32\x26\x19\x2f\x23\x17\x24\x1b\x11\x4e\x3a\x25\ \x55\x40\x29\x48\x36\x23\x18\x13\x0b\x1c\x15\x0d\x13\x0e\x09\x1c\ \x14\x0d\x2b\x20\x14\x29\x1e\x14\x25\x1c\x12\x24\x1b\x11\x24\x1b\ \x11\x24\x1c\x12\x1e\x17\x0f\x1e\x16\x0e\x19\x12\x0c\x21\x18\x10\ \x27\x1d\x12\x25\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x48\x36\x24\x16\ \x11\x0b\x31\x25\x18\x11\x0d\x08\x19\x13\x0c\x44\x34\x23\x1f\x18\ \x0f\x30\x23\x17\x40\x30\x20\x26\x1d\x12\x2a\x20\x14\x36\x28\x1a\ \x3b\x2d\x1e\x1d\x15\x0d\x3e\x2f\x1f\x42\x33\x21\x23\x1b\x11\x2f\ \x23\x17\x24\x1b\x11\x1e\x17\x0f\x1f\x17\x0f\x1e\x16\x0e\x1c\x15\ \x0e\x18\x12\x0b\x1f\x17\x0e\x2d\x22\x16\x22\x19\x10\x22\x1a\x10\ \x22\x19\x10\x24\x1c\x11\x27\x1e\x13\x2f\x23\x17\x2f\x23\x16\x2a\ \x20\x15\x1f\x18\x0f\x1c\x15\x0e\x20\x18\x10\x21\x19\x10\x1c\x15\ \x0d\x1f\x17\x0e\x1d\x16\x0e\x19\x13\x0c\x25\x1b\x11\x27\x1d\x12\ \x2a\x1f\x14\x24\x1b\x12\x25\x1c\x11\x23\x1a\x10\x20\x17\x0f\x1f\ \x18\x0f\x27\x1e\x13\x25\x1c\x12\x2e\x22\x16\x2e\x23\x16\x1e\x17\ \x0e\x20\x18\x10\x21\x19\x10\x29\x1f\x15\x2b\x20\x16\x20\x18\x0f\ \x2a\x1f\x15\x30\x24\x17\x32\x26\x18\x5b\x46\x30\x7f\x62\x44\x88\ \x6a\x49\x90\x70\x4e\x51\x3d\x29\x31\x25\x17\x88\x67\x47\xaa\x84\ \x5c\xb2\x8a\x60\x71\x57\x3c\x21\x19\x10\x25\x1c\x12\x29\x1f\x13\ \x2c\x21\x15\x3b\x2c\x1d\x40\x30\x1f\x33\x26\x18\x24\x1b\x11\x1f\ \x17\x0f\x1f\x18\x0f\x21\x19\x0f\x22\x19\x0f\x24\x1b\x11\x27\x1e\ \x13\x2a\x20\x15\x26\x1d\x13\x26\x1c\x12\x27\x1d\x12\x35\x27\x1a\ \x2f\x23\x16\x3c\x2d\x1d\x3b\x2c\x1d\x37\x28\x1a\x2f\x23\x17\x31\ \x25\x17\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x1f\x18\x0f\x22\x1a\ \x10\x28\x1e\x13\x25\x1c\x12\x22\x1a\x10\x30\x25\x18\x36\x2e\x26\ \x32\x34\x37\x3d\x41\x43\x49\x4e\x51\x57\x5d\x5f\x61\x67\x6b\x72\ \x77\x7d\x76\x7e\x84\x7e\x85\x8b\x85\x8c\x91\x84\x8b\x8f\x87\x8d\ \x92\x83\x89\x8e\x89\x8f\x95\x8e\x94\x9a\x8f\x94\x9c\x68\x6c\x73\ \x48\x4a\x4e\x85\x89\x8d\x8f\x94\x99\x92\x96\x9b\x91\x95\x9a\x91\ \x95\x9a\x95\x9a\x9c\x97\x9b\x9e\x97\x9b\x9e\x98\x9d\xa0\x00\x00\ \x00\xd5\xd0\xcd\xca\xc2\xbb\x96\x7d\x66\x15\x11\x0b\x00\x00\x00\ \x1b\x14\x0d\x2d\x21\x16\x25\x1b\x12\x54\x3f\x29\x4d\x39\x25\x28\ \x1f\x14\x12\x0e\x08\x1e\x17\x0f\x18\x12\x0b\x15\x10\x0a\x1a\x13\ \x0d\x1a\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x22\x1a\x10\x25\x1c\x12\ \x1e\x17\x0f\x18\x13\x0c\x1a\x13\x0c\x1f\x16\x0e\x22\x19\x11\x21\ \x19\x10\x1e\x16\x0e\x1e\x17\x0f\x3c\x2d\x1e\x18\x12\x0b\x3d\x2e\ \x1e\x13\x0f\x09\x1b\x15\x0d\x3f\x30\x1f\x1d\x15\x0e\x23\x1a\x10\ \x30\x24\x17\x2b\x21\x15\x1e\x16\x0e\x30\x24\x17\x3a\x2c\x1d\x18\ \x12\x0b\x28\x1f\x14\x31\x26\x18\x29\x1f\x13\x2a\x1f\x14\x1f\x18\ \x10\x1c\x15\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x10\x21\x19\x10\ \x22\x1a\x10\x27\x1d\x12\x21\x19\x10\x19\x12\x0c\x18\x12\x0b\x1d\ \x16\x0e\x26\x1d\x12\x28\x1e\x13\x2d\x22\x15\x25\x1c\x11\x28\x1e\ \x13\x29\x1e\x14\x29\x1f\x14\x29\x1f\x14\x2a\x20\x14\x24\x1b\x11\ \x24\x1c\x12\x26\x1d\x13\x20\x19\x10\x20\x18\x10\x21\x19\x10\x16\ \x11\x0b\x29\x1f\x15\x49\x37\x25\x57\x43\x2e\x62\x4c\x34\x2e\x23\ \x16\x22\x19\x10\x2c\x21\x15\x31\x25\x18\x48\x37\x25\x9d\x7a\x55\ \xb6\x8d\x64\xa6\x81\x5b\x52\x40\x2b\x1b\x14\x0c\x26\x1c\x12\x2a\ \x1f\x14\x26\x1d\x12\x41\x32\x21\x97\x75\x52\xba\x91\x66\x62\x4a\ \x33\x2a\x1f\x14\x23\x1a\x11\x39\x2b\x1c\x9d\x7a\x54\xa1\x7c\x56\ \x2c\x21\x16\x28\x1e\x13\x1b\x14\x0d\x1f\x17\x0f\x27\x1d\x12\x2e\ \x22\x16\x37\x29\x1a\x35\x28\x19\x28\x1e\x13\x21\x19\x10\x1f\x17\ \x0f\x21\x18\x10\x27\x1d\x13\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\ \x23\x1a\x10\x2c\x21\x15\x33\x26\x18\x33\x26\x18\x37\x2a\x1b\x35\ \x27\x19\x3e\x2e\x1e\x39\x2a\x1b\x34\x27\x19\x37\x29\x1b\x2f\x23\ \x17\x2c\x21\x15\x23\x1a\x11\x1a\x13\x0c\x1c\x15\x0d\x1e\x17\x0e\ \x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x2b\x26\x20\x33\x36\x37\x3e\ \x41\x42\x4a\x4d\x50\x55\x5a\x5d\x63\x6a\x6d\x6e\x76\x79\x76\x7e\ \x82\x82\x87\x8d\x85\x8a\x90\x85\x8e\x92\x87\x8d\x92\x86\x8c\x90\ \x89\x90\x95\x8b\x91\x96\x8f\x95\x9b\x93\x98\x9e\x95\x99\x9e\x91\ \x95\x9a\x94\x98\x9d\x93\x97\x9c\x93\x97\x9c\x97\x9b\x9f\x95\x9a\ \x9d\x95\x99\x9c\x99\x9d\xa0\x98\x9c\x9f\x00\x00\x00\xd5\xd0\xcd\ \xce\xc9\xc6\xa6\x90\x79\x19\x14\x0f\x00\x00\x00\x0b\x09\x05\x2d\ \x22\x16\x1f\x17\x0f\x45\x34\x21\x3a\x2b\x1c\x26\x1d\x12\x16\x10\ \x0a\x22\x1a\x11\x23\x1a\x10\x18\x12\x0b\x14\x0f\x0a\x18\x12\x0c\ \x18\x12\x0c\x1a\x14\x0d\x22\x1a\x10\x23\x1b\x11\x21\x19\x10\x1f\ \x17\x0f\x1d\x16\x0e\x18\x13\x0b\x1c\x15\x0e\x21\x19\x10\x1e\x17\ \x0f\x20\x18\x10\x47\x35\x22\x24\x1b\x12\x44\x34\x23\x1b\x15\x0c\ \x15\x10\x0a\x26\x1c\x13\x1f\x17\x0e\x28\x1d\x13\x3c\x2c\x1d\x34\ \x26\x19\x25\x1c\x12\x2a\x20\x15\x31\x25\x18\x1f\x17\x0f\x2d\x21\ \x16\x2a\x1f\x14\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\x22\x1a\x10\ \x28\x1f\x13\x21\x19\x10\x1f\x17\x0f\x25\x1c\x12\x29\x1f\x14\x26\ \x1d\x12\x26\x1d\x13\x22\x1a\x11\x1a\x14\x0d\x1f\x18\x10\x2d\x22\ \x16\x2c\x21\x15\x2d\x22\x15\x25\x1c\x11\x18\x12\x0b\x2b\x21\x16\ \x50\x3d\x2a\x66\x4e\x36\x66\x4f\x36\x34\x27\x1a\x57\x42\x2d\x8c\ \x6c\x4b\x9b\x78\x54\x7b\x5f\x41\x30\x24\x18\x1f\x18\x0f\x5a\x45\ \x2f\xaa\x84\x5d\xb6\x8d\x63\x6d\x54\x3a\x23\x1a\x11\x21\x19\x10\ \x29\x1f\x14\x2d\x22\x15\x2d\x22\x15\x65\x4e\x35\xbb\x91\x67\x87\ \x68\x49\x24\x1a\x10\x21\x18\x10\x23\x1a\x11\x2a\x1f\x14\x29\x1f\ \x14\x25\x1c\x12\x76\x5b\x3e\xae\x86\x5e\x5d\x47\x31\x29\x1f\x14\ \x27\x1d\x13\x32\x26\x18\x9f\x7c\x57\x89\x69\x48\x40\x31\x20\x20\ \x19\x10\x23\x1a\x11\x24\x1c\x11\x26\x1c\x12\x24\x1b\x12\x2e\x22\ \x16\x32\x25\x17\x2e\x22\x16\x23\x1a\x11\x22\x1a\x11\x26\x1d\x12\ \x27\x1d\x12\x29\x1f\x13\x27\x1d\x12\x2a\x1f\x14\x2b\x20\x15\x2d\ \x22\x15\x2c\x21\x15\x32\x26\x18\x3b\x2c\x1d\x36\x28\x1a\x35\x28\ \x1a\x39\x2a\x1b\x38\x29\x1b\x3c\x2d\x1d\x3a\x2c\x1d\x2f\x23\x16\ \x2e\x23\x16\x25\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x21\x18\x0f\x22\ \x19\x11\x1c\x15\x0d\x27\x22\x1c\x33\x35\x36\x3c\x3f\x43\x48\x4c\ \x4f\x55\x5a\x5d\x63\x6a\x6e\x6e\x74\x78\x75\x7c\x80\x7e\x84\x8a\ \x84\x89\x8f\x88\x8f\x95\x8b\x91\x96\x85\x8b\x90\x86\x8c\x91\x8a\ \x90\x94\x8e\x94\x99\x8f\x94\x99\x92\x96\x9b\x90\x94\x99\x94\x98\ \x9d\x92\x96\x9b\x94\x98\x9d\x95\x99\x9d\x97\x9a\x9e\x94\x97\x9b\ \x97\x9a\x9d\x95\x98\x9d\x00\x00\x00\xd5\xd0\xce\xce\xc8\xc4\xb3\ \x97\x7b\x1b\x16\x10\x00\x00\x00\x12\x0f\x09\x39\x2b\x1d\x26\x1d\ \x12\x3a\x2c\x1c\x3f\x2f\x1e\x32\x25\x18\x10\x0c\x08\x20\x18\x0f\ \x25\x1b\x12\x24\x1b\x11\x21\x18\x10\x22\x19\x10\x19\x12\x0c\x1c\ \x15\x0e\x1e\x17\x0e\x24\x1b\x11\x26\x1d\x12\x2b\x20\x14\x2c\x21\ \x15\x23\x1a\x10\x2c\x21\x15\x28\x1e\x13\x21\x19\x0f\x1a\x14\x0d\ \x38\x2a\x1b\x23\x1b\x11\x3d\x2e\x1e\x1b\x14\x0d\x20\x18\x10\x43\ \x33\x21\x3a\x2c\x1d\x28\x1f\x14\x33\x27\x19\x37\x29\x1a\x22\x19\ \x11\x27\x1e\x13\x31\x25\x18\x1f\x17\x0f\x2b\x20\x15\x29\x1f\x14\ \x20\x18\x0f\x30\x25\x18\x21\x19\x11\x19\x13\x0c\x2b\x21\x15\x1e\ \x17\x0e\x1e\x16\x0e\x20\x19\x10\x22\x1a\x11\x22\x19\x10\x45\x35\ \x24\x62\x4c\x33\x6e\x54\x39\x7d\x5f\x42\x5b\x45\x2f\x24\x1a\x11\ \x2d\x21\x16\x25\x1b\x12\x18\x12\x0b\x30\x25\x18\x80\x63\x45\xa3\ \x7e\x57\x51\x3e\x2a\x17\x11\x0a\x24\x1c\x12\x8a\x6b\x4b\xa1\x7c\ \x57\x33\x27\x1a\x1c\x15\x0d\x1d\x16\x0e\x13\x0f\x08\x9e\x7a\x56\ \xaf\x89\x60\x4c\x3b\x29\x17\x11\x0b\x1f\x17\x0f\x23\x1a\x11\x22\ \x1a\x10\x2c\x21\x16\x5e\x48\x32\xbe\x93\x69\x90\x70\x4f\x35\x28\ \x1b\x21\x19\x0f\x26\x1c\x12\x29\x1f\x14\x46\x36\x25\x41\x32\x22\ \x75\x5a\x3e\x97\x74\x50\x5b\x46\x2f\x52\x3f\x2a\x53\x40\x2c\x62\ \x4b\x34\x86\x67\x46\x84\x65\x46\x4a\x38\x25\x25\x1c\x12\x28\x1e\ \x13\x17\x13\x0b\x17\x12\x0b\x22\x19\x10\x21\x19\x0f\x27\x1d\x12\ \x22\x19\x10\x26\x1d\x12\x29\x1e\x14\x27\x1d\x13\x29\x1f\x13\x29\ \x1e\x13\x2a\x20\x14\x2b\x20\x15\x32\x26\x18\x33\x26\x19\x31\x25\ \x18\x2d\x23\x16\x2f\x23\x16\x2c\x21\x15\x3a\x2c\x1c\x31\x24\x17\ \x2e\x22\x16\x39\x2b\x1c\x33\x27\x19\x2e\x22\x16\x2c\x21\x15\x29\ \x1f\x13\x25\x1c\x12\x1b\x14\x0d\x1c\x15\x0d\x1c\x16\x0e\x18\x13\ \x0c\x33\x29\x1e\x3f\x3c\x37\x3c\x3f\x41\x46\x4a\x4d\x57\x5d\x60\ \x5f\x64\x68\x6c\x71\x75\x77\x7c\x81\x7f\x86\x8a\x85\x8a\x8f\x88\ \x8f\x93\x8c\x92\x97\x89\x8f\x95\x8b\x92\x96\x8a\x90\x94\x8e\x93\ \x98\x8e\x93\x97\x90\x95\x99\x91\x95\x9a\x91\x95\x9a\x94\x98\x9d\ \x92\x96\x9b\x93\x96\x9a\x94\x97\x9b\x95\x98\x9b\x93\x97\x99\x98\ \x9b\x9f\x00\x00\x00\xd8\xd3\xd1\xcf\xcc\xca\xb9\x98\x78\x21\x1a\ \x11\x00\x00\x00\x10\x0d\x08\x36\x29\x1b\x22\x1a\x10\x3d\x2d\x1d\ \x40\x30\x1f\x31\x24\x17\x10\x0d\x08\x1f\x17\x0f\x20\x18\x10\x2a\ \x20\x14\x27\x1d\x13\x24\x1b\x12\x18\x11\x0b\x17\x11\x0a\x1a\x13\ \x0c\x18\x12\x0c\x1b\x15\x0e\x21\x18\x10\x28\x1e\x13\x27\x1d\x12\ \x1f\x17\x0f\x26\x1c\x12\x23\x1a\x10\x1a\x14\x0d\x37\x2a\x1c\x23\ \x1a\x11\x40\x31\x20\x19\x12\x0b\x1e\x16\x0e\x39\x2c\x1d\x3a\x2b\ \x1d\x1e\x17\x0e\x2d\x22\x15\x3c\x2d\x1d\x22\x1a\x10\x33\x26\x19\ \x43\x32\x21\x29\x1e\x13\x37\x29\x1b\x32\x25\x18\x1a\x13\x0c\x1d\ \x17\x0e\x20\x19\x10\x17\x11\x0b\x22\x1a\x10\x1b\x15\x0d\x1d\x16\ \x0e\x1e\x16\x0e\x1f\x18\x0f\x1e\x16\x0e\x29\x1f\x14\x54\x40\x2b\ \x97\x74\x4f\x89\x6a\x49\x11\x0d\x08\x26\x1c\x12\x26\x1d\x12\x27\ \x1d\x13\x2c\x22\x16\x32\x25\x1a\x6e\x54\x3b\x9e\x79\x54\x57\x43\ \x2d\x30\x25\x19\x3d\x2e\x20\x8f\x6e\x4d\xa6\x81\x5a\x48\x37\x24\ \x23\x1b\x11\x1d\x16\x0e\x18\x12\x0b\x90\x70\x4e\xb0\x89\x60\x56\ \x42\x2e\x13\x0e\x09\x18\x13\x0c\x1d\x16\x0e\x1d\x16\x0e\x22\x1a\ \x11\x4b\x39\x27\xb9\x8f\x65\x8f\x6e\x4d\x3a\x2c\x1e\x21\x18\x10\ \x2a\x1f\x14\x2c\x20\x15\x7e\x61\x43\xac\x85\x5d\xaa\x84\x5d\x92\ \x70\x4e\x70\x55\x39\x97\x75\x51\x97\x75\x51\x8b\x6b\x49\x9f\x7b\ \x55\xa2\x7d\x56\x5e\x48\x31\x34\x27\x19\x30\x25\x17\x21\x19\x10\ \x21\x19\x10\x27\x1d\x13\x27\x1d\x12\x23\x1a\x10\x22\x1a\x11\x29\ \x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x33\x26\x18\x33\x26\x19\x2d\x22\ \x16\x2b\x21\x14\x35\x27\x19\x3d\x2e\x1d\x32\x25\x17\x2b\x21\x15\ \x33\x25\x19\x35\x28\x19\x35\x28\x1a\x2e\x22\x16\x3a\x2b\x1c\x3c\ \x2d\x1d\x3c\x2d\x1d\x36\x29\x1a\x31\x25\x18\x30\x24\x17\x2d\x22\ \x15\x26\x1c\x12\x1d\x16\x0e\x1d\x17\x0e\x21\x19\x10\x24\x1e\x18\ \x2f\x31\x31\x3b\x3e\x40\x47\x4b\x4d\x54\x59\x5c\x5e\x63\x67\x6f\ \x74\x78\x78\x7d\x81\x7d\x82\x87\x82\x88\x8d\x89\x90\x92\x87\x8d\ \x92\x8c\x92\x97\x8e\x95\x99\x8d\x93\x98\x8a\x90\x95\x8c\x91\x95\ \x90\x94\x98\x93\x97\x9b\x93\x98\x9b\x96\x9a\x9e\x93\x96\x9a\x96\ \x99\x9d\x93\x96\x9a\x97\x99\x9d\x95\x98\x9a\x95\x98\x9c\x00\x00\ \x00\xc9\xbd\xb8\xbf\xb8\xb6\xb9\x9a\x7b\x2c\x22\x17\x02\x02\x01\ \x04\x03\x01\x3e\x2f\x1f\x20\x18\x0f\x37\x29\x1a\x44\x33\x21\x3b\ \x2c\x1c\x13\x0e\x09\x14\x0f\x09\x1e\x17\x0f\x2b\x21\x15\x23\x1a\ \x10\x1f\x18\x0f\x17\x11\x0b\x14\x0f\x09\x14\x0f\x09\x13\x0e\x09\ \x17\x11\x0b\x1b\x14\x0d\x23\x1b\x11\x22\x19\x10\x21\x19\x10\x21\ \x19\x10\x1b\x14\x0c\x15\x10\x0a\x2a\x20\x15\x1d\x16\x0e\x26\x1c\ \x12\x20\x17\x0f\x18\x12\x0c\x2a\x1f\x14\x36\x28\x1b\x1b\x14\x0d\ \x2a\x1f\x14\x3b\x2d\x1d\x27\x1d\x12\x34\x27\x1a\x40\x31\x20\x2e\ \x22\x16\x39\x2b\x1c\x37\x2a\x1b\x21\x19\x10\x19\x13\x0c\x1f\x18\ \x0f\x19\x12\x0c\x22\x1a\x11\x18\x12\x0c\x1b\x13\x0d\x1d\x16\x0e\ \x1d\x16\x0e\x24\x1b\x11\x22\x1a\x10\x3f\x30\x20\x95\x73\x4f\x94\ \x73\x50\x1a\x13\x0c\x24\x1b\x11\x22\x1a\x10\x24\x1b\x12\x5a\x45\ \x2f\x87\x69\x48\x75\x5a\x3d\x8c\x6c\x4a\x8d\x6d\x4c\x8c\x6c\x4c\ \x8f\x6f\x4d\xa3\x7e\x58\xb3\x8a\x61\x58\x43\x2e\x27\x1d\x13\x20\ \x18\x0f\x1f\x17\x0e\x7e\x61\x43\xad\x87\x5f\x68\x50\x37\x1a\x13\ \x0c\x1a\x14\x0c\x23\x1b\x10\x26\x1d\x13\x20\x18\x0f\x3f\x30\x20\ \xac\x85\x5d\x8b\x6b\x4b\x3b\x2d\x1f\x21\x19\x10\x2c\x21\x16\x29\ \x1f\x14\x4e\x3b\x28\x61\x4a\x32\x89\x69\x49\x9e\x79\x54\x79\x5d\ \x40\x3e\x2e\x1e\x2e\x22\x15\x23\x1a\x10\x7f\x61\x43\xa7\x82\x5b\ \x6b\x52\x37\x36\x28\x19\x2f\x24\x17\x2e\x22\x15\x27\x1e\x13\x2c\ \x21\x15\x33\x26\x18\x2b\x21\x14\x29\x1f\x14\x33\x26\x19\x33\x27\ \x19\x31\x25\x17\x3b\x2c\x1c\x3e\x2f\x1e\x3a\x2b\x1c\x39\x2b\x1b\ \x35\x28\x1a\x34\x27\x19\x33\x26\x18\x31\x25\x17\x36\x29\x1a\x3d\ \x2d\x1d\x3a\x2b\x1c\x38\x29\x1b\x37\x29\x1b\x31\x24\x18\x35\x28\ \x1a\x31\x25\x18\x2d\x21\x16\x2f\x23\x17\x30\x23\x17\x2f\x23\x16\ \x22\x19\x11\x1c\x15\x0d\x16\x11\x0b\x1d\x19\x13\x32\x31\x2f\x3a\ \x3c\x3e\x47\x4b\x4d\x55\x58\x5c\x5f\x64\x67\x6f\x74\x78\x74\x78\ \x7c\x7d\x82\x87\x87\x8d\x91\x86\x8b\x90\x85\x8b\x90\x8c\x92\x96\ \x8c\x92\x96\x8d\x93\x98\x8f\x95\x9a\x90\x94\x99\x90\x94\x98\x92\ \x96\x9a\x94\x99\x9c\x97\x9a\x9e\x94\x97\x9b\x97\x9a\x9e\x92\x95\ \x99\x9c\x9e\xa2\x99\x9c\x9f\x97\x9a\x9e\x00\x00\x00\xc2\xb4\xae\ \xb2\xa9\xa4\xb4\x9c\x85\x34\x2a\x1e\x03\x02\x00\x05\x04\x02\x2c\ \x22\x15\x1f\x17\x0f\x41\x31\x20\x56\x40\x29\x4c\x39\x25\x0d\x0a\ \x06\x10\x0c\x07\x21\x18\x0f\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\ \x17\x11\x0b\x16\x11\x0a\x11\x0d\x08\x11\x0c\x08\x17\x11\x0b\x19\ \x13\x0c\x20\x18\x10\x26\x1c\x12\x25\x1c\x12\x28\x1e\x14\x22\x19\ \x10\x1c\x15\x0d\x22\x1a\x11\x19\x14\x0c\x26\x1c\x12\x23\x1b\x11\ \x1e\x17\x0f\x25\x1c\x12\x3a\x2c\x1d\x20\x18\x0f\x27\x1d\x13\x36\ \x29\x1a\x26\x1d\x12\x33\x26\x19\x44\x34\x23\x2e\x22\x16\x36\x29\ \x1a\x39\x2b\x1c\x2a\x20\x14\x1c\x15\x0e\x18\x13\x0b\x16\x11\x0b\ \x27\x1e\x13\x14\x0f\x09\x16\x10\x0a\x18\x13\x0c\x16\x10\x0b\x1e\ \x17\x0e\x21\x19\x10\x45\x34\x23\xa5\x7f\x59\x99\x76\x52\x27\x1d\ \x12\x1f\x17\x0f\x1f\x18\x0f\x1b\x15\x0d\x34\x28\x1a\x51\x3e\x2b\ \x63\x4c\x34\x94\x72\x4f\x69\x50\x38\x39\x2b\x1d\x28\x1f\x13\x84\ \x66\x47\xb4\x8c\x62\x61\x4b\x34\x29\x1e\x13\x26\x1c\x12\x24\x1b\ \x11\x75\x5a\x3f\xae\x86\x5e\x82\x65\x46\x22\x1a\x10\x29\x1f\x13\ \x26\x1c\x12\x25\x1b\x12\x20\x17\x0f\x34\x28\x1b\xad\x86\x5e\x9a\ \x78\x54\x45\x35\x24\x1a\x14\x0c\x20\x18\x0f\x21\x19\x10\x26\x1d\ \x12\x29\x1e\x12\x6a\x51\x37\x8c\x6c\x4a\x6d\x54\x39\x34\x26\x19\ \x28\x1e\x12\x1f\x17\x0f\x66\x4e\x35\xa5\x80\x59\x6f\x55\x39\x3f\ \x2f\x1e\x36\x29\x1a\x34\x27\x18\x2e\x23\x16\x33\x27\x18\x37\x2a\ \x1a\x36\x28\x1a\x32\x25\x18\x3f\x2f\x1f\x42\x31\x20\x3a\x2b\x1c\ \x43\x32\x20\x43\x32\x21\x3a\x2b\x1c\x38\x2a\x1a\x38\x2b\x1b\x32\ \x25\x18\x2f\x24\x17\x2c\x21\x15\x29\x1f\x14\x31\x25\x17\x36\x29\ \x1a\x32\x25\x18\x2d\x22\x16\x2e\x22\x16\x35\x27\x1a\x34\x27\x1a\ \x2b\x1f\x15\x2f\x24\x17\x33\x27\x19\x31\x25\x17\x2c\x21\x15\x22\ \x1a\x10\x1c\x15\x0d\x26\x1f\x17\x31\x31\x2f\x3a\x3d\x3f\x46\x4b\ \x4d\x53\x57\x5a\x62\x67\x6a\x6e\x71\x76\x75\x78\x7d\x80\x83\x88\ \x89\x8d\x92\x85\x8b\x90\x87\x8d\x92\x8d\x93\x98\x8a\x8e\x93\x90\ \x94\x99\x90\x95\x9a\x90\x94\x99\x90\x95\x99\x90\x94\x98\x95\x99\ \x9d\x96\x99\x9d\x94\x97\x9b\x93\x96\x9a\x92\x95\x99\x9a\x9d\xa1\ \x97\x9a\x9e\x9b\x9e\xa3\x00\x00\x00\xd9\xd0\xcd\xcc\xc4\xc0\xc0\ \xad\x9b\x42\x36\x28\x05\x04\x01\x03\x02\x01\x1c\x15\x0d\x1f\x17\ \x0f\x3b\x2c\x1d\x5c\x44\x2d\x46\x34\x22\x19\x13\x0b\x11\x0d\x08\ \x1c\x15\x0d\x25\x1c\x11\x2b\x20\x14\x25\x1c\x12\x1e\x17\x0f\x1e\ \x16\x0e\x15\x0f\x0a\x0f\x0b\x07\x14\x0f\x0a\x13\x0e\x09\x19\x13\ \x0c\x1c\x15\x0e\x1e\x16\x0e\x2a\x1f\x14\x24\x1b\x12\x17\x11\x0b\ \x1a\x14\x0d\x1a\x14\x0c\x26\x1c\x12\x26\x1d\x13\x1f\x17\x0f\x21\ \x19\x10\x40\x31\x20\x1e\x17\x0e\x28\x1e\x13\x3b\x2d\x1d\x22\x1a\ \x10\x2b\x21\x16\x3a\x2c\x1d\x31\x24\x17\x33\x26\x19\x3a\x2b\x1d\ \x26\x1c\x12\x17\x11\x0b\x14\x0f\x0a\x12\x0e\x09\x26\x1c\x12\x15\ \x10\x0a\x19\x13\x0c\x15\x10\x0a\x17\x11\x0b\x1b\x14\x0d\x21\x18\ \x0f\x2f\x24\x18\x92\x70\x4e\x8f\x6e\x4c\x2c\x21\x15\x1b\x14\x0d\ \x26\x1d\x12\x26\x1c\x12\x1b\x14\x0c\x0a\x07\x04\x47\x37\x25\x99\ \x76\x52\x69\x51\x38\x1f\x18\x10\x09\x07\x03\x6d\x54\x3a\xab\x84\ \x5c\x6b\x53\x39\x28\x1e\x13\x22\x19\x10\x22\x19\x10\x68\x50\x37\ \xaa\x84\x5c\x93\x71\x4f\x23\x1a\x10\x2e\x23\x16\x2c\x21\x15\x22\ \x19\x10\x16\x11\x0a\x2e\x23\x18\xa1\x7c\x57\x9c\x78\x54\x4c\x3b\ \x28\x17\x11\x0a\x23\x1b\x11\x32\x26\x19\x29\x1f\x14\x26\x1c\x12\ \x5f\x48\x30\x7d\x5f\x41\x61\x4a\x32\x32\x25\x18\x2a\x1f\x14\x1a\ \x14\x0c\x66\x4f\x36\xa5\x80\x59\x84\x65\x46\x3c\x2d\x1e\x3a\x2c\ \x1c\x37\x29\x1a\x2e\x22\x16\x2a\x20\x14\x34\x28\x19\x39\x2b\x1c\ \x3a\x2b\x1c\x3b\x2c\x1c\x31\x24\x17\x29\x1f\x14\x2c\x21\x15\x2d\ \x22\x16\x2f\x23\x16\x33\x26\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\ \x17\x2a\x1f\x14\x29\x1e\x14\x2e\x23\x17\x31\x25\x18\x29\x1f\x14\ \x2b\x20\x14\x2d\x22\x15\x35\x28\x19\x37\x29\x1b\x2d\x21\x15\x33\ \x26\x18\x33\x26\x18\x2f\x24\x17\x2a\x1f\x14\x27\x1e\x13\x24\x1b\ \x11\x24\x1c\x14\x2e\x2d\x2b\x39\x3c\x3e\x46\x4a\x4c\x54\x57\x5b\ \x63\x66\x69\x6d\x71\x74\x78\x7b\x80\x7f\x83\x87\x85\x89\x8d\x8a\ \x8e\x92\x88\x8d\x92\x8a\x8f\x94\x89\x8e\x93\x8e\x94\x98\x8f\x94\ \x99\x90\x95\x99\x93\x98\x9b\x90\x95\x98\x93\x96\x9a\x94\x97\x9b\ \x96\x99\x9e\x90\x93\x97\x91\x93\x98\x95\x98\x9c\x96\x99\x9d\x9b\ \x9e\xa3\x00\x00\x00\xdc\xd4\xd2\xd7\xd0\xcd\xc4\xae\x98\x56\x4b\ \x3e\x06\x06\x04\x01\x01\x01\x19\x12\x0c\x28\x1f\x14\x3b\x2c\x1c\ \x64\x4b\x31\x4b\x38\x25\x28\x1e\x13\x13\x0e\x09\x1b\x14\x0d\x23\ \x1b\x11\x2b\x20\x14\x26\x1d\x12\x27\x1d\x13\x29\x1f\x14\x1f\x17\ \x0f\x16\x10\x0b\x17\x11\x0b\x13\x0e\x09\x18\x12\x0c\x1d\x16\x0e\ \x1f\x17\x0e\x29\x1e\x13\x26\x1c\x12\x19\x13\x0c\x1d\x16\x0e\x1e\ \x16\x0e\x24\x1b\x11\x27\x1e\x13\x1e\x16\x0e\x1a\x15\x0d\x2c\x21\ \x15\x1a\x13\x0c\x20\x18\x10\x39\x2b\x1c\x1d\x16\x0e\x28\x1e\x13\ \x38\x2a\x1c\x2f\x23\x17\x27\x1d\x12\x35\x27\x1a\x2a\x1f\x14\x1b\ \x15\x0d\x21\x19\x10\x18\x12\x0b\x38\x2a\x1d\x1c\x15\x0e\x16\x12\ \x0a\x13\x0e\x09\x18\x12\x0b\x1d\x16\x0e\x21\x19\x10\x2a\x20\x15\ \x9b\x77\x52\x8d\x6d\x4c\x38\x2b\x1c\x1c\x15\x0d\x26\x1d\x12\x23\ \x1a\x11\x20\x18\x0f\x19\x12\x0c\x2b\x21\x16\x7b\x5f\x41\x95\x73\ \x50\x4d\x3b\x29\x11\x0d\x07\x5a\x45\x2f\xa3\x7e\x57\x68\x50\x37\ \x26\x1c\x13\x22\x19\x10\x21\x19\x10\x4f\x3c\x29\xa5\x80\x59\x93\ \x72\x4f\x25\x1c\x11\x31\x24\x17\x40\x30\x20\x43\x34\x23\x35\x29\ \x1b\x49\x39\x27\xa0\x7b\x57\xa3\x7e\x58\x76\x5b\x3f\x5c\x48\x31\ \x7b\x60\x43\x67\x4f\x37\x30\x24\x17\x32\x25\x18\x69\x50\x36\x84\ \x65\x45\x7e\x60\x42\x4f\x3c\x29\x38\x2a\x1b\x30\x24\x18\x7c\x5f\ \x41\xa1\x7d\x58\x89\x69\x49\x51\x3e\x29\x38\x2a\x1b\x32\x26\x18\ \x29\x1f\x14\x2e\x22\x16\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1d\x3a\ \x2c\x1c\x30\x24\x17\x29\x1e\x14\x31\x24\x17\x32\x26\x18\x2e\x22\ \x16\x30\x24\x17\x2e\x22\x16\x2b\x20\x15\x30\x24\x17\x2c\x21\x15\ \x28\x1e\x13\x28\x1e\x13\x35\x28\x1a\x23\x1a\x11\x26\x1d\x13\x2d\ \x21\x16\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x13\x31\x25\x17\x31\x25\ \x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x14\x29\x1e\x14\x1f\x17\x10\ \x20\x1f\x20\x39\x3b\x3d\x46\x48\x4a\x53\x56\x58\x5f\x63\x65\x6c\ \x70\x72\x77\x7b\x7f\x7e\x83\x86\x82\x87\x8a\x8c\x91\x95\x88\x8c\ \x91\x87\x8b\x90\x8c\x91\x95\x8d\x92\x97\x8e\x93\x96\x92\x97\x9a\ \x92\x96\x9a\x92\x97\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\xa0\x8e\ \x91\x96\x94\x96\x9b\x8f\x92\x96\x94\x97\x9b\x9a\x9d\xa1\x00\x00\ \x00\xb8\xb0\xab\xbc\xb4\xaf\xbe\xa9\x94\x64\x55\x47\x09\x08\x06\ \x01\x01\x00\x28\x1e\x14\x2f\x24\x17\x3d\x2e\x1d\x60\x48\x2f\x49\ \x36\x23\x30\x24\x17\x15\x10\x0a\x18\x12\x0c\x26\x1d\x12\x27\x1e\ \x13\x23\x1a\x11\x22\x19\x10\x29\x1e\x13\x25\x1b\x12\x22\x19\x10\ \x21\x19\x10\x18\x12\x0b\x18\x12\x0c\x22\x19\x10\x1f\x17\x0e\x25\ \x1b\x11\x29\x1e\x13\x1d\x15\x0e\x1e\x17\x0e\x21\x19\x0f\x1a\x13\ \x0c\x22\x19\x10\x1b\x15\x0d\x18\x12\x0c\x2e\x22\x17\x1b\x15\x0d\ \x1d\x15\x0e\x2a\x1f\x14\x19\x12\x0b\x22\x1a\x10\x2b\x21\x15\x26\ \x1c\x13\x22\x1a\x10\x2e\x23\x16\x29\x1f\x14\x25\x1c\x12\x29\x1e\ \x14\x1c\x15\x0d\x3d\x2e\x20\x1b\x14\x0d\x15\x10\x0a\x14\x0e\x09\ \x16\x11\x0a\x1e\x16\x0e\x17\x12\x0b\x21\x19\x10\x95\x72\x4e\x99\ \x76\x52\x43\x34\x22\x20\x17\x0f\x1e\x16\x0e\x20\x18\x0f\x2a\x20\ \x15\x1e\x16\x0e\x1d\x15\x0e\x4c\x3a\x28\x9d\x79\x54\x9d\x7a\x55\ \x74\x5a\x3e\x83\x65\x46\xa4\x7f\x58\x71\x57\x3c\x25\x1d\x13\x25\ \x1c\x12\x1b\x14\x0d\x37\x2a\x1c\x9e\x79\x54\x9b\x77\x53\x37\x29\ \x1b\x2f\x24\x17\x4f\x3c\x28\x97\x75\x52\x8e\x6e\x4d\x94\x73\x50\ \xa5\x80\x5a\x9c\x78\x54\x98\x76\x52\x9a\x78\x54\x9d\x7a\x56\x5f\ \x49\x33\x25\x1b\x11\x37\x29\x1b\x5f\x49\x31\x70\x55\x3a\x68\x4f\ \x36\x51\x3d\x29\x3a\x2b\x1c\x38\x2a\x1c\x54\x40\x2b\x5a\x44\x2e\ \x58\x43\x2d\x4e\x3b\x27\x36\x28\x1a\x2f\x23\x17\x20\x18\x0f\x29\ \x1f\x14\x30\x24\x17\x2d\x21\x15\x2f\x23\x16\x38\x2a\x1b\x37\x2a\ \x1b\x2e\x23\x17\x34\x27\x19\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x14\ \x2a\x1f\x14\x2f\x23\x17\x38\x2b\x1b\x34\x27\x19\x30\x24\x17\x27\ \x1e\x13\x35\x28\x1a\x2c\x21\x15\x2d\x22\x16\x36\x28\x1a\x32\x26\ \x18\x2b\x20\x15\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2a\x1f\x14\ \x29\x1f\x14\x2b\x21\x15\x31\x25\x18\x2b\x20\x15\x1d\x1c\x1a\x2d\ \x2f\x31\x46\x48\x4a\x52\x55\x57\x5f\x63\x65\x6c\x70\x73\x78\x7c\ \x7f\x7b\x80\x82\x81\x86\x89\x8a\x8e\x93\x89\x8c\x91\x8c\x90\x94\ \x8f\x93\x99\x8c\x91\x95\x8c\x91\x94\x91\x96\x99\x91\x96\x99\x94\ \x98\x9b\x8c\x90\x94\x92\x95\x99\x95\x97\x9b\x93\x96\x9a\x94\x97\ \x9b\x8e\x91\x95\x93\x96\x9a\x96\x99\x9d\x00\x00\x00\xce\xc8\xc4\ \xc3\xbc\xb7\xb5\xab\xa3\x68\x5a\x4e\x0a\x09\x07\x01\x00\x00\x28\ \x1e\x13\x2d\x22\x15\x3a\x2b\x1b\x53\x3f\x29\x5d\x45\x2d\x37\x29\ \x1b\x15\x0f\x0a\x19\x13\x0c\x21\x18\x10\x24\x1b\x12\x26\x1d\x13\ \x27\x1d\x13\x28\x1e\x13\x27\x1c\x12\x2b\x20\x15\x2e\x22\x16\x24\ \x1b\x11\x18\x12\x0b\x19\x13\x0c\x17\x11\x0b\x1c\x16\x0d\x20\x18\ \x0f\x1c\x15\x0e\x1d\x16\x0e\x27\x1d\x13\x19\x13\x0c\x31\x25\x18\ \x1f\x18\x0f\x1e\x16\x0e\x40\x30\x1f\x1f\x17\x0f\x1f\x17\x0f\x26\ \x1d\x12\x1d\x16\x0e\x1c\x15\x0e\x1d\x16\x0e\x23\x1a\x10\x1f\x17\ \x0f\x2f\x24\x17\x2a\x20\x15\x22\x1a\x10\x27\x1d\x12\x1d\x16\x0d\ \x3b\x2d\x1e\x1b\x15\x0d\x16\x11\x0a\x16\x10\x0a\x1a\x14\x0c\x19\ \x13\x0c\x37\x2a\x1c\x21\x19\x11\x81\x63\x44\x97\x74\x51\x60\x49\ \x32\x42\x32\x22\x4e\x3b\x28\x67\x4f\x36\x5a\x45\x2e\x1d\x16\x0d\ \x1b\x15\x0d\x1f\x18\x0f\x46\x36\x24\x84\x66\x47\xac\x86\x5e\xac\ \x85\x5d\xaf\x88\x5e\x98\x75\x52\x4a\x38\x26\x2b\x21\x15\x2c\x22\ \x16\x5b\x45\x2f\x85\x66\x46\x7c\x5f\x41\x51\x3e\x2a\x2f\x23\x17\ \x3b\x2c\x1d\x6c\x53\x39\x6b\x52\x39\x61\x4b\x34\x51\x3e\x2b\x48\ \x37\x25\x47\x36\x25\x44\x34\x23\x40\x31\x21\x34\x28\x1a\x29\x1e\ \x14\x2a\x20\x14\x34\x27\x19\x3a\x2c\x1c\x2e\x22\x16\x2f\x23\x16\ \x35\x27\x19\x2a\x20\x14\x1e\x17\x0e\x27\x1d\x12\x33\x26\x19\x39\ \x2a\x1c\x35\x28\x1a\x2e\x23\x17\x23\x1a\x11\x26\x1d\x12\x24\x1b\ \x11\x28\x1d\x13\x29\x1f\x13\x2e\x23\x16\x2e\x23\x16\x2e\x23\x16\ \x2a\x1f\x14\x23\x1b\x11\x29\x1e\x14\x28\x1e\x13\x2b\x20\x15\x33\ \x26\x18\x3f\x30\x1e\x3d\x2e\x1d\x34\x27\x19\x34\x27\x19\x32\x25\ \x18\x33\x26\x18\x35\x28\x1a\x31\x25\x17\x32\x26\x18\x30\x23\x17\ \x2f\x23\x16\x34\x27\x19\x30\x24\x17\x2b\x21\x15\x27\x1d\x13\x29\ \x1e\x13\x2d\x22\x16\x34\x28\x1a\x33\x2e\x29\x21\x23\x24\x38\x3a\ \x3c\x53\x56\x58\x5f\x61\x65\x6e\x71\x74\x77\x7b\x7d\x79\x7c\x80\ \x84\x89\x8d\x85\x8a\x8d\x8c\x91\x94\x8b\x8e\x93\x90\x94\x98\x90\ \x94\x98\x8f\x94\x97\x8f\x94\x97\x90\x96\x99\x93\x98\x9c\x93\x97\ \x9c\x95\x98\x9d\x98\x9a\x9e\x94\x97\x9b\x94\x97\x9b\x94\x97\x9b\ \x95\x98\x9b\x95\x98\x9c\x00\x00\x00\xdc\xd7\xd3\xd4\xcf\xcc\xcc\ \xc5\xbe\x7e\x71\x63\x0d\x0a\x08\x02\x01\x00\x21\x18\x0f\x29\x1f\ \x13\x37\x29\x1a\x60\x48\x2f\x68\x4d\x33\x39\x2b\x1b\x0f\x0b\x07\ \x16\x10\x0a\x1b\x14\x0d\x20\x19\x10\x26\x1d\x13\x26\x1d\x12\x26\ \x1c\x12\x29\x1e\x13\x2d\x22\x16\x2f\x23\x17\x2a\x1f\x14\x1a\x14\ \x0d\x19\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x20\x18\x0f\x1b\x15\x0d\ \x1f\x18\x0f\x26\x1d\x13\x1d\x16\x0e\x32\x26\x18\x23\x1a\x11\x21\ \x19\x0f\x37\x2a\x1b\x21\x19\x10\x25\x1c\x12\x32\x26\x18\x27\x1d\ \x13\x26\x1d\x12\x27\x1d\x13\x24\x1b\x12\x1c\x16\x0e\x2f\x23\x17\ \x2b\x20\x15\x1f\x17\x0f\x2d\x21\x16\x20\x18\x0f\x2f\x23\x17\x24\ \x1c\x11\x1e\x17\x0e\x1a\x14\x0c\x18\x12\x0b\x16\x11\x0a\x71\x57\ \x3d\x7f\x62\x43\x8c\x6c\x4b\x95\x73\x4f\x9b\x78\x54\x95\x73\x50\ \x94\x72\x4f\x9d\x7a\x54\x6f\x55\x3b\x20\x18\x0f\x22\x19\x10\x1c\ \x15\x0d\x19\x12\x0b\x2c\x22\x17\x47\x36\x25\x55\x41\x2c\x5a\x45\ \x2f\x59\x44\x2f\x45\x34\x22\x34\x27\x19\x34\x28\x19\x46\x35\x23\ \x3b\x2d\x1e\x38\x2b\x1c\x3f\x2f\x1f\x2c\x20\x15\x2d\x21\x15\x2c\ \x21\x15\x27\x1d\x12\x20\x19\x0f\x17\x11\x0a\x16\x11\x0b\x1c\x15\ \x0d\x1e\x17\x0e\x21\x18\x0f\x27\x1e\x13\x2d\x22\x16\x28\x1e\x13\ \x26\x1d\x12\x33\x26\x19\x34\x27\x19\x34\x27\x19\x37\x29\x1a\x36\ \x28\x19\x2c\x21\x15\x2f\x23\x16\x32\x26\x18\x33\x26\x18\x35\x28\ \x1a\x34\x27\x19\x26\x1c\x12\x2b\x1f\x14\x2d\x22\x16\x32\x25\x18\ \x31\x25\x17\x34\x27\x19\x2b\x21\x15\x2c\x21\x15\x2c\x21\x15\x2a\ \x1f\x14\x2b\x20\x15\x2d\x21\x15\x30\x25\x17\x36\x28\x1a\x3a\x2c\ \x1c\x3d\x2e\x1d\x3c\x2d\x1d\x40\x30\x1f\x38\x2a\x1c\x34\x28\x19\ \x34\x27\x19\x33\x26\x18\x38\x2a\x1b\x37\x29\x1a\x35\x27\x19\x33\ \x26\x19\x31\x25\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x33\x26\ \x19\x32\x26\x18\x33\x2e\x27\x37\x39\x3a\x26\x28\x2a\x41\x43\x46\ \x5e\x62\x64\x6c\x70\x73\x73\x77\x7a\x7a\x7f\x82\x88\x8d\x90\x85\ \x8a\x8c\x8a\x8f\x92\x8b\x90\x93\x8b\x90\x93\x8f\x94\x97\x90\x95\ \x98\x91\x96\x99\x91\x96\x99\x90\x96\x99\x95\x99\x9e\x90\x93\x98\ \x99\x9c\xa0\x99\x9c\xa0\x96\x99\x9d\x95\x99\x9b\x95\x98\x9a\x93\ \x96\x99\x00\x00\x00\xdb\xd6\xd4\xd6\xd2\xd0\xc5\xb1\x9d\x86\x6e\ \x55\x0f\x0c\x08\x02\x02\x01\x26\x1c\x12\x29\x1f\x14\x33\x26\x19\ \x56\x3f\x2a\x5b\x44\x2c\x35\x28\x1a\x0d\x0a\x06\x0b\x09\x05\x15\ \x10\x0a\x1f\x17\x0e\x20\x18\x0f\x1c\x15\x0d\x21\x18\x10\x26\x1c\ \x12\x2d\x22\x15\x32\x26\x18\x2a\x1f\x14\x24\x1b\x11\x22\x1a\x10\ \x29\x1f\x14\x25\x1c\x12\x27\x1e\x13\x1d\x16\x0e\x1e\x17\x0e\x1b\ \x15\x0d\x1c\x15\x0d\x26\x1c\x11\x23\x1a\x11\x26\x1c\x12\x3a\x2c\ \x1d\x28\x1e\x13\x2a\x1f\x14\x31\x24\x17\x2c\x22\x15\x27\x1e\x13\ \x30\x24\x17\x2c\x21\x16\x1c\x15\x0d\x2b\x21\x16\x22\x1a\x11\x19\ \x13\x0c\x24\x1b\x12\x1b\x14\x0d\x2e\x23\x17\x24\x1b\x11\x20\x18\ \x10\x20\x18\x0f\x1a\x14\x0d\x1d\x16\x0e\x4e\x3b\x28\x6e\x55\x3a\ \x92\x71\x4d\x90\x6f\x4d\x7f\x62\x44\x47\x37\x25\x50\x3d\x29\x49\ \x37\x26\x31\x26\x19\x1f\x17\x0f\x28\x1e\x13\x25\x1c\x12\x1d\x16\ \x0e\x1a\x13\x0c\x1a\x14\x0d\x1d\x15\x0e\x26\x1c\x12\x28\x1d\x13\ \x2e\x22\x16\x32\x25\x18\x2e\x22\x16\x29\x1f\x14\x22\x1a\x10\x28\ \x1e\x13\x2d\x22\x16\x2b\x20\x14\x2c\x20\x15\x29\x1e\x13\x29\x1f\ \x13\x27\x1e\x13\x1c\x15\x0d\x21\x19\x10\x25\x1b\x12\x1e\x17\x0e\ \x1b\x15\x0d\x25\x1c\x12\x2c\x21\x15\x2e\x23\x16\x33\x26\x18\x38\ \x2a\x1b\x36\x28\x1a\x36\x28\x19\x33\x26\x18\x32\x25\x17\x2d\x22\ \x16\x31\x24\x18\x32\x26\x18\x2b\x20\x14\x2e\x22\x16\x2c\x21\x15\ \x2a\x1f\x14\x2e\x22\x16\x32\x26\x18\x3a\x2c\x1c\x3e\x2e\x1e\x39\ \x2b\x1b\x2f\x23\x16\x33\x26\x18\x30\x23\x17\x31\x24\x17\x36\x29\ \x1a\x35\x27\x1a\x33\x26\x19\x34\x27\x18\x35\x28\x1a\x37\x29\x1b\ \x3a\x2c\x1c\x3e\x2f\x1e\x3c\x2d\x1d\x3a\x2b\x1c\x37\x29\x1a\x33\ \x27\x18\x3e\x2e\x1e\x3e\x2f\x1e\x37\x2a\x1a\x37\x29\x1a\x30\x24\ \x17\x2d\x22\x16\x2a\x1f\x14\x2e\x23\x16\x30\x24\x17\x2f\x24\x17\ \x31\x2d\x25\x36\x38\x39\x45\x47\x49\x2a\x2c\x2e\x4b\x4d\x50\x6b\ \x6e\x70\x75\x79\x7c\x79\x7e\x80\x82\x86\x8a\x86\x8a\x8e\x87\x8c\ \x8f\x8e\x93\x96\x8b\x90\x93\x8a\x8f\x92\x93\x98\x9b\x92\x97\x9a\ \x92\x97\x9b\x90\x94\x98\x91\x95\x9a\x92\x96\x9a\x9a\x9d\xa1\x99\ \x9c\xa0\x98\x9b\x9f\x95\x98\x99\x92\x96\x97\x97\x99\x9d\x00\x00\ \x00\xb5\xae\xa8\xb6\xaf\xa9\xbc\xb1\xa5\x96\x85\x74\x11\x0f\x0b\ \x02\x02\x01\x29\x1f\x14\x32\x26\x19\x2e\x22\x16\x49\x37\x23\x5d\ \x45\x2d\x3e\x2f\x1e\x0f\x0b\x07\x14\x0f\x09\x26\x1d\x12\x21\x18\ \x0f\x17\x12\x0b\x1a\x13\x0d\x21\x19\x10\x24\x1a\x11\x29\x1f\x13\ \x32\x25\x18\x31\x24\x17\x28\x1e\x13\x20\x18\x10\x26\x1c\x12\x26\ \x1c\x13\x2c\x21\x16\x26\x1d\x13\x26\x1c\x12\x1b\x14\x0d\x17\x10\ \x0b\x1e\x17\x0e\x1c\x14\x0e\x24\x1b\x11\x3b\x2d\x1c\x2a\x20\x14\ \x2a\x1f\x14\x2d\x21\x15\x28\x1e\x13\x23\x1a\x11\x31\x25\x17\x31\ \x25\x18\x1a\x13\x0c\x36\x29\x1b\x2e\x23\x17\x16\x11\x0a\x2a\x20\ \x15\x21\x19\x10\x34\x28\x1a\x2c\x21\x15\x22\x1a\x10\x2b\x20\x15\ \x2b\x20\x15\x20\x18\x0f\x2a\x1f\x15\x2a\x20\x15\x88\x69\x48\x89\ \x6a\x49\x5f\x49\x31\x20\x18\x0e\x24\x1b\x11\x1e\x16\x0e\x19\x13\ \x0c\x1c\x15\x0d\x20\x18\x0f\x26\x1c\x12\x23\x1a\x11\x1e\x17\x0e\ \x1e\x17\x0e\x1e\x17\x0f\x28\x1e\x13\x28\x1e\x13\x30\x24\x17\x2f\ \x23\x17\x2c\x21\x15\x24\x1b\x11\x20\x19\x0f\x26\x1d\x12\x26\x1c\ \x12\x27\x1d\x13\x22\x1a\x10\x2b\x21\x15\x2a\x1f\x14\x28\x1e\x13\ \x24\x1b\x11\x21\x19\x10\x27\x1e\x13\x22\x19\x10\x1a\x13\x0c\x1d\ \x15\x0d\x1f\x17\x0f\x20\x18\x10\x31\x24\x17\x31\x25\x18\x33\x27\ \x19\x2f\x23\x16\x30\x24\x17\x2a\x20\x14\x2c\x22\x16\x32\x25\x18\ \x39\x2a\x1b\x35\x28\x1a\x31\x24\x18\x28\x1e\x13\x2b\x20\x15\x30\ \x24\x17\x2b\x21\x15\x32\x25\x18\x37\x2a\x1b\x38\x2a\x1b\x35\x28\ \x1a\x35\x28\x1a\x30\x24\x17\x31\x25\x17\x36\x29\x19\x32\x25\x18\ \x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2e\x22\x16\x31\x25\x18\x3a\ \x2c\x1c\x34\x27\x19\x37\x29\x1a\x3c\x2c\x1c\x34\x27\x19\x3c\x2d\ \x1d\x3c\x2d\x1d\x35\x28\x19\x3a\x2b\x1c\x32\x25\x18\x2d\x22\x16\ \x2a\x1f\x14\x28\x1f\x13\x2a\x20\x14\x30\x24\x18\x31\x2a\x23\x3a\ \x3b\x3b\x41\x43\x45\x50\x53\x55\x30\x32\x36\x53\x56\x59\x74\x78\ \x7a\x7e\x82\x85\x84\x88\x8b\x89\x8e\x91\x88\x8c\x8f\x8c\x91\x94\ \x89\x8e\x91\x8b\x90\x92\x8d\x92\x94\x90\x95\x98\x8f\x94\x98\x91\ \x96\x9a\x93\x97\x9c\x95\x98\x9c\x97\x9a\x9e\x96\x99\x9d\x98\x9b\ \x9e\x97\x9a\x9c\x94\x98\x99\x95\x99\x9b\x00\x00\x00\xd7\xd1\xce\ \xc7\xc1\xbe\xb3\xad\xa9\x96\x86\x77\x10\x0f\x0c\x10\x0c\x08\x3f\ \x30\x20\x46\x35\x23\x31\x25\x18\x4d\x3a\x25\x5b\x44\x2c\x4e\x3a\ \x25\x16\x10\x0a\x2b\x20\x14\x2f\x23\x16\x25\x1c\x11\x20\x18\x0f\ \x14\x0f\x0a\x19\x13\x0c\x22\x19\x11\x25\x1c\x12\x2c\x21\x15\x2e\ \x22\x16\x2c\x20\x15\x1e\x16\x0e\x23\x1a\x11\x25\x1c\x12\x2b\x21\ \x15\x2d\x22\x16\x27\x1d\x12\x1e\x17\x0e\x1a\x14\x0d\x24\x1b\x12\ \x18\x12\x0b\x20\x18\x10\x34\x27\x19\x2a\x20\x14\x2a\x20\x14\x34\ \x27\x19\x2d\x21\x16\x28\x1e\x13\x37\x2a\x1b\x33\x27\x19\x19\x13\ \x0c\x3a\x2c\x1d\x30\x24\x18\x1d\x15\x0e\x2d\x22\x16\x21\x19\x10\ \x2e\x23\x17\x2f\x24\x17\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x29\ \x1e\x14\x24\x1b\x12\x28\x1f\x13\x6b\x51\x38\x79\x5c\x3f\x64\x4d\ \x35\x19\x12\x0c\x24\x1a\x11\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\ \x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x21\x19\x10\x22\x19\x10\x22\ \x1a\x11\x2b\x20\x15\x2b\x20\x14\x2e\x23\x16\x2c\x20\x15\x25\x1c\ \x12\x26\x1d\x12\x22\x1a\x10\x24\x1a\x11\x1f\x18\x0f\x24\x1c\x12\ \x20\x18\x0f\x29\x1f\x13\x29\x1e\x13\x2b\x20\x14\x29\x1f\x14\x1e\ \x17\x0f\x25\x1c\x12\x25\x1c\x12\x24\x1b\x11\x24\x1b\x12\x1c\x15\ \x0d\x24\x1b\x11\x2f\x23\x16\x2f\x23\x16\x2a\x1f\x14\x25\x1b\x12\ \x2c\x21\x15\x26\x1d\x12\x25\x1c\x12\x2e\x22\x16\x30\x24\x17\x36\ \x29\x1a\x37\x2a\x1a\x33\x27\x19\x31\x24\x17\x2b\x20\x14\x2a\x1f\ \x14\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x33\x26\x19\x37\x29\x1a\ \x35\x28\x1a\x34\x28\x19\x2f\x23\x17\x29\x1e\x14\x2c\x21\x15\x2b\ \x21\x15\x2e\x22\x16\x31\x25\x17\x34\x27\x1a\x3b\x2c\x1d\x35\x28\ \x19\x39\x2b\x1b\x3e\x2e\x1e\x37\x2a\x1b\x3a\x2b\x1c\x3c\x2d\x1d\ \x37\x29\x1a\x40\x2f\x1f\x37\x29\x1a\x2e\x22\x16\x2b\x21\x15\x2b\ \x20\x15\x28\x1e\x13\x30\x24\x18\x2c\x24\x1c\x30\x31\x31\x40\x43\ \x44\x4b\x4d\x4f\x66\x69\x6b\x33\x36\x3a\x5a\x5d\x60\x81\x86\x88\ \x81\x86\x89\x86\x8a\x8d\x89\x8e\x91\x8f\x94\x97\x8d\x92\x95\x8e\ \x93\x96\x89\x8e\x91\x8c\x91\x94\x90\x95\x98\x96\x9b\x9e\x96\x9b\ \x9f\x94\x97\x9b\x95\x98\x9c\x9a\x9d\xa1\x97\x9a\x9e\x97\x9a\x9f\ \x97\x9b\x9e\x98\x9c\x9e\x00\x00\x00\xdd\xd8\xd5\xd8\xd3\xd3\xd0\ \xcc\xca\xb8\xab\xa0\x14\x12\x0f\x11\x0d\x08\x3c\x2d\x1e\x35\x28\ \x1b\x35\x28\x1a\x57\x41\x2a\x5c\x44\x2d\x4e\x3b\x26\x1b\x15\x0d\ \x27\x1d\x13\x1f\x18\x0f\x2a\x1f\x14\x26\x1d\x12\x18\x12\x0c\x19\ \x13\x0c\x1e\x17\x0e\x20\x17\x0f\x28\x1d\x13\x2d\x22\x16\x28\x1e\ \x14\x1c\x15\x0d\x21\x18\x10\x29\x1f\x14\x33\x26\x18\x28\x1d\x13\ \x28\x1e\x13\x26\x1c\x12\x1c\x15\x0d\x26\x1c\x12\x1e\x17\x0f\x19\ \x13\x0d\x39\x2b\x1d\x25\x1b\x12\x26\x1d\x12\x32\x25\x18\x34\x27\ \x19\x23\x1a\x11\x30\x24\x17\x32\x26\x18\x1d\x16\x0e\x3a\x2d\x1e\ \x45\x35\x23\x30\x24\x17\x28\x1e\x13\x1e\x17\x0e\x24\x1b\x12\x3a\ \x2c\x1d\x29\x1e\x14\x24\x1b\x11\x2e\x23\x17\x34\x28\x19\x26\x1c\ \x13\x27\x1d\x12\x54\x40\x2b\x8f\x6e\x4c\x80\x63\x44\x20\x17\x0f\ \x28\x1e\x13\x23\x1b\x11\x21\x19\x10\x1d\x16\x0e\x21\x19\x10\x24\ \x1b\x11\x24\x1b\x11\x21\x19\x10\x1b\x14\x0d\x1f\x17\x0f\x25\x1b\ \x12\x27\x1d\x13\x2b\x20\x15\x31\x24\x17\x2b\x20\x14\x30\x25\x17\ \x33\x25\x19\x27\x1d\x13\x24\x1c\x12\x23\x1a\x10\x1c\x15\x0d\x21\ \x18\x10\x23\x1b\x11\x21\x1a\x10\x24\x1b\x11\x27\x1d\x13\x27\x1d\ \x13\x2c\x21\x15\x2a\x20\x14\x28\x1e\x13\x27\x1e\x13\x23\x1b\x11\ \x27\x1d\x13\x29\x1e\x13\x1e\x16\x0e\x2a\x1f\x15\x30\x24\x17\x20\ \x18\x10\x24\x1b\x11\x34\x27\x19\x2e\x23\x16\x32\x24\x18\x38\x2b\ \x1b\x30\x24\x17\x32\x26\x18\x25\x1d\x12\x22\x1a\x11\x29\x1f\x14\ \x27\x1d\x12\x2a\x20\x14\x32\x25\x18\x3b\x2c\x1c\x3a\x2b\x1b\x39\ \x2b\x1b\x35\x28\x19\x2c\x20\x15\x2c\x21\x15\x29\x1f\x13\x2a\x1f\ \x14\x2b\x20\x14\x33\x26\x18\x36\x29\x1b\x39\x2c\x1c\x34\x28\x19\ \x38\x2a\x1b\x3e\x2e\x1d\x3f\x2f\x1e\x43\x32\x20\x3b\x2c\x1c\x39\ \x2b\x1c\x3c\x2d\x1d\x33\x26\x19\x29\x1e\x14\x2b\x20\x14\x2e\x23\ \x16\x33\x26\x19\x2d\x26\x1e\x20\x21\x22\x36\x38\x39\x4b\x4d\x50\ \x58\x5b\x5e\x6d\x70\x74\x3c\x3f\x43\x5d\x5f\x64\x84\x88\x8a\x89\ \x8d\x8f\x89\x8e\x91\x8c\x91\x94\x8d\x92\x95\x90\x95\x97\x8e\x93\ \x96\x89\x8e\x91\x8d\x92\x93\x92\x97\x9a\x92\x97\x9a\x98\x9c\x9f\ \x95\x98\x9c\x98\x9c\x9f\x99\x9c\xa0\x96\x9a\x9e\x96\x99\x9d\x9b\ \x9e\xa1\x00\x00\x00\xd4\xcf\xcc\xd3\xcf\xcd\xce\xcb\xca\xc8\xbf\ \xba\x18\x17\x14\x0c\x09\x06\x2c\x22\x16\x47\x36\x24\x30\x24\x17\ \x53\x3f\x28\x54\x3e\x28\x51\x3d\x27\x19\x12\x0b\x15\x0f\x0a\x19\ \x13\x0c\x23\x1a\x11\x2e\x22\x16\x2d\x21\x15\x22\x1a\x10\x22\x1a\ \x10\x23\x1b\x11\x26\x1d\x12\x30\x24\x17\x27\x1d\x12\x1d\x15\x0d\ \x1f\x18\x0f\x26\x1d\x13\x23\x1a\x11\x23\x1a\x10\x2e\x22\x16\x28\ \x1e\x14\x2e\x22\x17\x2a\x1f\x14\x20\x19\x0f\x16\x11\x0a\x33\x27\ \x1a\x2c\x21\x16\x27\x1e\x13\x33\x27\x19\x35\x27\x1a\x25\x1c\x12\ \x32\x26\x18\x37\x29\x1b\x23\x1b\x11\x2c\x21\x16\x34\x27\x1a\x28\ \x1e\x13\x26\x1d\x12\x20\x18\x0f\x15\x10\x0a\x36\x29\x1b\x26\x1d\ \x12\x26\x1d\x12\x2b\x20\x15\x35\x28\x19\x32\x26\x18\x36\x2a\x1b\ \x5d\x47\x30\x85\x66\x45\x86\x67\x47\x26\x1c\x11\x34\x26\x19\x29\ \x1e\x13\x1f\x17\x0e\x17\x11\x0b\x1b\x14\x0d\x1f\x17\x0f\x1e\x17\ \x0f\x1d\x15\x0e\x1b\x15\x0d\x1a\x14\x0c\x1a\x14\x0d\x23\x1b\x11\ \x20\x18\x0f\x26\x1d\x12\x23\x1a\x11\x2b\x21\x15\x2c\x20\x15\x29\ \x1e\x13\x23\x1a\x11\x23\x1b\x11\x23\x1a\x11\x19\x13\x0c\x1b\x14\ \x0d\x24\x1b\x12\x28\x1e\x13\x22\x1a\x10\x1d\x16\x0e\x20\x18\x10\ \x20\x18\x10\x27\x1d\x13\x21\x19\x10\x18\x13\x0c\x1f\x17\x0f\x1e\ \x16\x0e\x1f\x17\x0f\x23\x1a\x11\x27\x1d\x13\x2d\x21\x15\x1f\x17\ \x0f\x2a\x1f\x14\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x37\x29\x1a\ \x35\x27\x1a\x2b\x20\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x2a\ \x1f\x14\x32\x25\x18\x3a\x2b\x1b\x39\x2a\x1b\x33\x27\x19\x2e\x23\ \x16\x2a\x20\x14\x2f\x23\x17\x2b\x20\x15\x2a\x1f\x14\x30\x25\x17\ \x35\x28\x1a\x33\x26\x19\x32\x25\x18\x30\x24\x17\x39\x2b\x1c\x3a\ \x2b\x1c\x3d\x2e\x1e\x3c\x2c\x1d\x3a\x2c\x1b\x3e\x2f\x1e\x3f\x2f\ \x1e\x36\x28\x1a\x2c\x21\x15\x2c\x21\x15\x32\x26\x18\x2e\x22\x16\ \x2c\x25\x1d\x2e\x2f\x2e\x23\x24\x26\x41\x43\x45\x5c\x5f\x62\x5a\ \x5d\x60\x7a\x7e\x81\x4c\x50\x53\x5b\x5d\x61\x88\x8d\x8e\x8d\x91\ \x95\x8e\x93\x96\x8b\x90\x93\x8d\x92\x95\x8e\x93\x96\x8e\x93\x95\ \x91\x96\x97\x8f\x94\x97\x90\x95\x98\x97\x9b\x9e\x97\x9a\x9e\x98\ \x9b\x9f\x9a\x9d\xa1\x97\x9a\x9e\x9b\x9f\xa3\x9d\x9f\xa3\x00\x00\ \x00\xba\xb4\xb2\xbd\xb7\xb8\xbf\xba\xba\xb3\x94\x78\x1e\x18\x10\ \x06\x05\x02\x3c\x2d\x1e\x3d\x2e\x1f\x3b\x2c\x1c\x54\x3e\x28\x5a\ \x43\x2b\x4d\x39\x25\x1c\x14\x0d\x1a\x13\x0c\x24\x1b\x11\x28\x1e\ \x14\x29\x1f\x14\x23\x1a\x11\x20\x18\x10\x18\x12\x0b\x1d\x16\x0e\ \x21\x19\x10\x26\x1c\x12\x28\x1e\x13\x21\x1a\x10\x1d\x16\x0e\x1c\ \x15\x0d\x27\x1d\x13\x22\x19\x10\x1e\x17\x0e\x25\x1c\x12\x28\x1e\ \x13\x2c\x21\x15\x20\x19\x0f\x1d\x15\x0e\x2b\x21\x15\x28\x1e\x14\ \x26\x1d\x12\x35\x29\x1a\x45\x33\x21\x2f\x24\x17\x31\x25\x18\x33\ \x26\x19\x26\x1c\x12\x3b\x2d\x1e\x44\x34\x22\x29\x20\x14\x23\x1a\ \x11\x27\x1d\x12\x1b\x14\x0d\x32\x26\x19\x23\x1b\x11\x2d\x21\x15\ \x29\x1f\x14\x2f\x23\x17\x34\x27\x19\x33\x26\x18\x55\x40\x2b\x8b\ \x6a\x49\x80\x63\x44\x29\x1f\x14\x34\x27\x19\x31\x24\x18\x2f\x23\ \x16\x2e\x23\x16\x26\x1d\x12\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0e\ \x1d\x15\x0e\x1d\x17\x0e\x1c\x15\x0d\x1f\x18\x0f\x23\x1a\x10\x23\ \x1b\x11\x2e\x23\x16\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x21\x19\ \x10\x29\x1e\x13\x25\x1c\x11\x22\x1a\x10\x1b\x14\x0c\x1e\x16\x0e\ \x24\x1b\x11\x28\x1d\x13\x23\x1a\x10\x24\x1b\x11\x28\x1d\x13\x26\ \x1c\x12\x1d\x16\x0e\x1e\x17\x0e\x20\x18\x0f\x23\x1a\x11\x21\x19\ \x10\x24\x1b\x11\x21\x19\x10\x29\x1f\x14\x21\x19\x10\x28\x1e\x13\ \x29\x1f\x14\x31\x25\x17\x38\x2a\x1b\x35\x28\x19\x35\x29\x1a\x26\ \x1c\x12\x24\x1b\x12\x25\x1b\x11\x23\x1b\x11\x2a\x20\x14\x33\x26\ \x19\x3c\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x33\x26\x18\x32\x26\x18\ \x36\x29\x1a\x33\x26\x19\x33\x26\x18\x38\x29\x1a\x3b\x2d\x1c\x3e\ \x2e\x1e\x34\x28\x19\x33\x26\x18\x35\x28\x1a\x38\x2a\x1b\x37\x29\ \x1b\x2e\x23\x16\x2b\x20\x15\x35\x28\x19\x35\x27\x1a\x39\x2b\x1b\ \x33\x26\x19\x2d\x21\x15\x27\x1d\x12\x2a\x1f\x14\x27\x21\x1a\x32\ \x32\x32\x37\x39\x3a\x29\x2b\x2e\x53\x55\x58\x1e\x1f\x21\x72\x75\ \x78\x7e\x83\x84\x57\x5b\x5e\x56\x59\x5c\x87\x8d\x90\x8f\x95\x99\ \x8e\x93\x96\x8d\x92\x96\x8f\x94\x96\x8e\x93\x94\x8d\x92\x93\x8c\ \x90\x92\x8f\x93\x95\x94\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x98\x9b\ \xa0\x99\x9c\xa0\x9c\x9f\xa3\x9c\x9f\xa4\x00\x00\x00\xdb\xd6\xd5\ \xce\xc9\xc8\xc0\xbb\xbb\xb7\xa2\x91\x2a\x22\x1a\x07\x06\x04\x36\ \x28\x1b\x3f\x2f\x1f\x30\x24\x17\x4b\x38\x24\x4f\x3b\x26\x48\x37\ \x24\x17\x11\x0b\x2b\x21\x15\x3b\x2c\x1d\x34\x27\x1a\x1f\x17\x0f\ \x23\x1b\x11\x28\x1e\x13\x2b\x20\x14\x21\x19\x10\x1e\x17\x0e\x27\ \x1e\x13\x2e\x23\x16\x26\x1c\x12\x27\x1d\x13\x2c\x21\x16\x2d\x21\ \x15\x35\x28\x1a\x3e\x2f\x1e\x3e\x2f\x1e\x2b\x20\x14\x37\x29\x1b\ \x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x38\x2a\x1d\x20\x18\x0f\x30\ \x24\x17\x3f\x30\x1e\x33\x26\x18\x35\x28\x1a\x32\x25\x18\x2d\x22\ \x15\x34\x27\x1a\x3a\x2b\x1c\x31\x25\x18\x26\x1d\x12\x38\x2a\x1c\ \x22\x1a\x10\x1e\x16\x0e\x20\x18\x0f\x25\x1c\x12\x2f\x23\x17\x2f\ \x24\x17\x30\x24\x17\x2c\x21\x15\x53\x40\x2a\xa1\x7c\x56\x8b\x6a\ \x4a\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1b\x30\x24\x17\x2a\x1f\x14\ \x26\x1c\x12\x22\x19\x10\x1e\x16\x0e\x24\x1b\x11\x2c\x21\x15\x2d\ \x22\x16\x23\x1a\x11\x24\x1b\x12\x23\x1a\x11\x24\x1b\x11\x2a\x20\ \x14\x22\x19\x10\x29\x1f\x14\x24\x1c\x12\x2c\x21\x15\x2b\x20\x15\ \x2a\x20\x15\x23\x1a\x11\x1e\x17\x0f\x21\x18\x10\x26\x1c\x12\x26\ \x1c\x12\x23\x19\x10\x21\x19\x10\x22\x1a\x11\x22\x1a\x10\x20\x18\ \x0f\x20\x18\x0f\x1c\x15\x0d\x20\x18\x0f\x27\x1d\x13\x28\x1e\x13\ \x25\x1c\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2d\x21\x15\x36\ \x28\x1a\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x20\x18\x0f\x20\x18\ \x10\x22\x19\x10\x21\x19\x10\x24\x1c\x12\x27\x1d\x13\x30\x24\x17\ \x33\x26\x18\x34\x27\x19\x2c\x22\x15\x26\x1d\x12\x24\x1b\x12\x27\ \x1d\x13\x2c\x20\x15\x2a\x1f\x15\x2b\x20\x15\x2f\x23\x17\x2d\x22\ \x15\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x31\x25\x17\x2d\x22\x15\ \x28\x1e\x13\x2c\x21\x15\x39\x2b\x1b\x3d\x2d\x1e\x32\x25\x18\x2c\ \x21\x15\x2b\x21\x15\x37\x29\x1b\x3d\x30\x22\x35\x34\x31\x41\x44\ \x45\x3a\x3c\x3e\x11\x11\x13\x2f\x2f\x31\x5c\x5f\x5f\x7a\x7f\x7f\ \x8a\x91\x92\x62\x66\x6b\x54\x58\x5b\x86\x8b\x8e\x96\x9c\x9f\x8a\ \x90\x94\x8d\x92\x94\x8c\x91\x92\x8f\x94\x96\x8d\x91\x93\x92\x96\ \x98\x96\x99\x9d\x97\x9b\x9e\x97\x9a\x9e\x96\x99\x9e\x99\x9c\xa0\ \x9a\x9d\xa1\x99\x9c\xa0\x00\x00\x00\xdd\xd8\xd7\xdb\xd6\xd3\xd7\ \xd1\xd1\xca\xbb\xad\x3c\x34\x2c\x06\x05\x03\x1f\x17\x0f\x56\x41\ \x2b\x2d\x22\x16\x41\x30\x1f\x55\x40\x2a\x45\x34\x21\x23\x1a\x10\ \x41\x31\x20\x3a\x2c\x1c\x34\x27\x19\x2f\x23\x16\x3a\x2c\x1d\x32\ \x26\x18\x2d\x22\x16\x31\x25\x18\x27\x1d\x13\x1f\x17\x0f\x29\x1e\ \x14\x26\x1d\x12\x26\x1c\x13\x2e\x23\x17\x3a\x2b\x1b\x33\x26\x19\ \x36\x29\x1a\x34\x28\x1a\x38\x2a\x1b\x3f\x2f\x1f\x34\x28\x1a\x27\ \x1e\x13\x26\x1c\x13\x35\x28\x1a\x21\x19\x10\x34\x27\x1a\x3b\x2d\ \x1d\x2f\x24\x16\x35\x28\x1a\x3a\x2c\x1d\x30\x24\x17\x25\x1c\x12\ \x3a\x2d\x1d\x33\x26\x19\x2e\x22\x16\x40\x30\x20\x22\x19\x11\x26\ \x1c\x12\x1a\x13\x0c\x1f\x17\x0f\x1f\x17\x0f\x21\x19\x10\x24\x1b\ \x12\x29\x1f\x14\x48\x36\x25\x9e\x79\x54\x8e\x6d\x4b\x3e\x2f\x1f\ \x39\x2b\x1c\x48\x36\x24\x51\x3d\x29\x50\x3d\x29\x74\x5a\x3e\x6a\ \x51\x37\x2f\x23\x16\x25\x1b\x11\x26\x1c\x12\x2f\x23\x17\x2c\x20\ \x15\x32\x25\x18\x29\x1e\x14\x22\x1a\x10\x29\x1f\x13\x18\x12\x0b\ \x1f\x17\x0f\x23\x1b\x11\x22\x19\x11\x25\x1c\x12\x3d\x2e\x1e\x3b\ \x2d\x1e\x21\x19\x10\x19\x13\x0c\x22\x1a\x10\x2d\x21\x16\x2f\x23\ \x17\x2f\x24\x17\x2c\x22\x16\x27\x1e\x13\x27\x1d\x12\x26\x1c\x12\ \x2f\x23\x16\x2e\x23\x16\x2b\x20\x15\x26\x1c\x11\x23\x1a\x10\x23\ \x1a\x11\x25\x1c\x12\x30\x24\x17\x37\x29\x1b\x29\x1f\x14\x2e\x22\ \x16\x29\x1e\x13\x28\x1e\x13\x1e\x17\x0e\x1a\x14\x0d\x1a\x14\x0d\ \x18\x12\x0c\x1d\x17\x0e\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x31\ \x24\x18\x2e\x23\x16\x31\x25\x18\x2f\x24\x17\x38\x2a\x1b\x32\x26\ \x18\x31\x25\x17\x34\x27\x19\x35\x28\x19\x35\x28\x19\x32\x26\x18\ \x35\x28\x19\x2b\x20\x14\x31\x25\x18\x2f\x23\x16\x2c\x21\x15\x2d\ \x22\x16\x36\x29\x1a\x3f\x2f\x1e\x3a\x2c\x1c\x2c\x21\x15\x27\x1e\ \x13\x2d\x22\x15\x33\x27\x1b\x34\x31\x2e\x43\x45\x46\x2a\x2c\x2d\ \x00\x00\x00\x35\x37\x39\x17\x18\x18\x84\x88\x8a\x82\x86\x8a\x87\ \x8c\x8f\x69\x6d\x70\x5a\x5d\x60\x82\x86\x88\x92\x97\x9a\x90\x96\ \x97\x8e\x93\x95\x8e\x93\x96\x93\x97\x9a\x93\x96\x9a\x91\x93\x97\ \x97\x99\x9e\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x9b\x9e\xa3\x9a\ \x9e\xa1\x00\x00\x00\xc8\xc1\xc0\xcd\xc6\xc4\xcc\xc7\xc5\xcd\xc3\ \xba\x4d\x43\x39\x07\x06\x03\x15\x0f\x0a\x49\x37\x24\x28\x1e\x14\ \x40\x30\x1f\x4a\x37\x24\x48\x36\x23\x27\x1d\x13\x39\x2b\x1c\x2c\ \x21\x15\x28\x1e\x13\x2e\x22\x16\x34\x27\x19\x2e\x23\x16\x32\x26\ \x18\x32\x25\x18\x34\x27\x19\x31\x24\x18\x31\x25\x18\x29\x1f\x14\ \x29\x1f\x13\x35\x28\x19\x3c\x2d\x1e\x33\x26\x18\x34\x27\x19\x39\ \x2a\x1b\x39\x2b\x1c\x3d\x2d\x1d\x34\x27\x19\x27\x1d\x13\x27\x1d\ \x13\x47\x35\x24\x25\x1c\x12\x32\x25\x19\x3a\x2c\x1c\x25\x1c\x11\ \x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x2d\x21\x16\x47\x36\x24\x30\ \x25\x18\x23\x1b\x11\x3f\x2f\x1f\x2c\x20\x15\x32\x26\x19\x1a\x13\ \x0d\x2b\x20\x14\x1f\x18\x0f\x23\x1a\x11\x26\x1d\x13\x29\x20\x14\ \x4d\x3b\x27\xa8\x82\x5b\xa9\x83\x5c\xaa\x83\x5c\xb1\x89\x61\xb3\ \x8b\x62\xb1\x8a\x61\xb2\x8b\x62\xb5\x8d\x64\x78\x5d\x40\x2e\x22\ \x16\x20\x18\x10\x26\x1e\x13\x2b\x21\x15\x27\x1d\x12\x32\x25\x17\ \x2b\x20\x15\x2e\x22\x17\x65\x4d\x32\x81\x63\x44\x64\x4d\x36\x26\ \x1d\x13\x26\x1e\x12\x66\x4f\x35\xa2\x7d\x56\x7d\x61\x43\x29\x1f\ \x14\x21\x1a\x10\x23\x1a\x10\x2c\x21\x15\x2b\x21\x15\x2e\x23\x16\ \x32\x25\x18\x2e\x22\x16\x2d\x22\x15\x2a\x20\x14\x2e\x23\x16\x2d\ \x22\x16\x28\x1e\x13\x26\x1d\x13\x1e\x17\x0f\x2b\x20\x15\x34\x27\ \x18\x29\x1f\x14\x29\x1f\x13\x2d\x22\x15\x24\x1b\x11\x1f\x17\x0e\ \x22\x1a\x10\x1a\x14\x0d\x1f\x17\x0f\x20\x18\x0f\x1d\x15\x0e\x21\ \x19\x10\x2b\x20\x14\x2b\x20\x14\x2e\x22\x16\x2f\x23\x16\x2e\x23\ \x16\x31\x26\x18\x32\x26\x18\x32\x25\x18\x36\x29\x1a\x3b\x2d\x1c\ \x44\x33\x21\x39\x2b\x1c\x3c\x2c\x1d\x36\x29\x1a\x34\x27\x1a\x2e\ \x22\x16\x2c\x21\x14\x2e\x23\x16\x2d\x22\x16\x2e\x23\x16\x2a\x1f\ \x14\x2d\x22\x16\x2d\x22\x16\x25\x1c\x12\x27\x1e\x13\x33\x26\x19\ \x47\x36\x23\x31\x2b\x25\x3b\x3d\x3e\x2a\x2b\x2c\x00\x00\x00\x27\ \x28\x29\x20\x20\x21\x63\x65\x69\x84\x89\x8b\x85\x8b\x8c\x8d\x92\ \x95\x76\x78\x7a\x59\x5c\x5d\x83\x87\x87\x99\x9e\x9e\x8e\x93\x95\ \x8e\x92\x94\x94\x98\x9a\x97\x9a\x9e\x90\x93\x97\x95\x98\x9c\x95\ \x98\x9c\x96\x99\x9d\x9b\x9f\xa1\x9b\x9f\xa2\x9c\x9f\xa2\x00\x00\ \x00\xc9\xc3\xc1\xc6\xbf\xbb\xbe\xb8\xb4\xba\xad\xa3\x57\x4c\x42\ \x05\x05\x03\x0d\x0a\x07\x51\x3d\x28\x31\x25\x18\x47\x36\x23\x46\ \x34\x22\x4c\x38\x24\x34\x27\x19\x3c\x2d\x1e\x34\x27\x1a\x2b\x20\ \x15\x36\x29\x1a\x30\x24\x17\x2d\x21\x15\x2f\x23\x17\x3b\x2c\x1c\ \x33\x27\x19\x2c\x21\x15\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x2c\ \x21\x15\x33\x26\x19\x35\x28\x19\x38\x2a\x1b\x36\x28\x1a\x3b\x2d\ \x1d\x33\x26\x18\x32\x26\x19\x23\x1a\x11\x25\x1c\x12\x46\x36\x24\ \x21\x18\x0f\x30\x24\x17\x37\x29\x1b\x22\x19\x10\x29\x1f\x13\x38\ \x2a\x1b\x37\x29\x1b\x2e\x23\x17\x4a\x38\x25\x33\x27\x19\x24\x1c\ \x12\x38\x2b\x1c\x30\x25\x17\x32\x25\x18\x27\x1d\x13\x24\x1b\x11\ \x25\x1c\x12\x25\x1c\x12\x22\x1a\x11\x45\x34\x23\x8e\x6e\x4c\x93\ \x71\x4e\x87\x68\x48\x75\x59\x3d\x73\x57\x3c\x75\x59\x3d\x69\x50\ \x37\x5d\x47\x30\x5b\x45\x2e\x43\x32\x21\x33\x26\x18\x28\x1e\x13\ \x28\x1e\x13\x27\x1d\x12\x26\x1d\x12\x24\x1b\x11\x29\x1e\x14\x8f\ \x6d\x4c\xad\x86\x5f\x9c\x79\x53\xa5\x7e\x57\x6a\x51\x37\x1d\x16\ \x0e\x2f\x24\x17\x89\x68\x46\x6d\x54\x3a\x17\x11\x0b\x24\x1a\x10\ \x2c\x21\x15\x2d\x22\x16\x2d\x22\x16\x33\x27\x19\x38\x2a\x1b\x35\ \x28\x19\x2b\x21\x14\x29\x1f\x14\x28\x1e\x14\x31\x24\x17\x31\x25\ \x18\x22\x1a\x11\x1e\x17\x0f\x22\x19\x10\x25\x1c\x11\x2f\x24\x16\ \x2e\x23\x17\x2c\x21\x15\x28\x1e\x13\x1d\x16\x0d\x22\x18\x10\x26\ \x1d\x12\x2a\x20\x14\x2b\x20\x15\x24\x1b\x11\x25\x1c\x12\x25\x1d\ \x12\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x2a\x1f\x14\x2d\x22\x16\ \x2d\x22\x16\x2b\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x27\x18\x34\ \x27\x19\x36\x28\x1a\x38\x2a\x1b\x3b\x2c\x1d\x36\x28\x1a\x33\x26\ \x18\x32\x25\x18\x2e\x22\x16\x31\x25\x17\x2f\x23\x17\x39\x2b\x1b\ \x3b\x2c\x1d\x36\x29\x1a\x30\x24\x17\x2b\x20\x14\x22\x1b\x12\x25\ \x24\x22\x29\x2b\x2c\x1f\x20\x20\x13\x14\x14\x00\x00\x00\x4f\x51\ \x54\x50\x53\x56\x59\x5c\x5f\x8b\x90\x92\x8e\x93\x96\x96\x9a\x9c\ \x6e\x70\x70\x35\x36\x36\x7f\x83\x83\x96\x9b\x9c\x8e\x93\x94\x95\ \x99\x9b\x93\x96\x99\x94\x96\x9a\x95\x98\x9c\x92\x95\x98\x98\x9c\ \x9f\x98\x9b\x9d\x9a\x9e\xa0\x9c\xa0\xa1\x00\x00\x00\xde\xd9\xd8\ \xd8\xd2\xcf\xcc\xc6\xc5\xa4\x90\x7e\x63\x50\x3e\x07\x06\x04\x0c\ \x09\x06\x4e\x3a\x27\x31\x24\x17\x40\x30\x1f\x54\x3f\x29\x4a\x38\ \x24\x32\x25\x19\x41\x31\x20\x3a\x2b\x1c\x33\x26\x19\x30\x23\x16\ \x2b\x20\x14\x21\x18\x10\x2b\x20\x15\x2f\x24\x17\x24\x1b\x11\x2e\ \x22\x16\x35\x28\x1a\x33\x26\x19\x25\x1c\x11\x26\x1d\x13\x2b\x1f\ \x15\x2b\x20\x14\x2b\x20\x14\x2e\x23\x16\x3a\x2c\x1c\x33\x27\x19\ \x44\x34\x22\x22\x1a\x10\x23\x1b\x11\x50\x3e\x29\x23\x1a\x10\x31\ \x25\x17\x42\x32\x20\x2a\x1f\x14\x2b\x20\x14\x3a\x2b\x1c\x3b\x2c\ \x1d\x33\x27\x19\x4d\x3a\x26\x34\x27\x1a\x25\x1c\x12\x31\x25\x18\ \x32\x26\x18\x42\x32\x20\x35\x27\x1a\x29\x1f\x14\x26\x1d\x13\x2e\ \x21\x16\x2c\x22\x15\x24\x1b\x11\x28\x1e\x13\x30\x24\x17\x32\x25\ \x17\x30\x24\x16\x3a\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x36\x28\x1a\ \x3c\x2d\x1d\x37\x29\x1a\x33\x26\x18\x2e\x22\x16\x2d\x21\x15\x28\ \x1e\x13\x25\x1c\x11\x21\x19\x10\x49\x38\x25\x98\x75\x50\x64\x4d\ \x34\x23\x1a\x11\x8e\x6c\x4a\x9e\x7a\x55\x2b\x20\x15\x34\x27\x19\ \xa0\x7b\x55\x81\x63\x45\x21\x18\x0f\x2f\x23\x17\x2b\x20\x15\x2b\ \x1f\x14\x26\x1d\x12\x2f\x24\x17\x34\x28\x19\x30\x24\x17\x32\x25\ \x18\x2f\x23\x16\x33\x27\x19\x3f\x2f\x1e\x38\x2a\x1b\x27\x1d\x13\ \x2b\x20\x14\x2e\x22\x16\x30\x23\x17\x2f\x24\x17\x2a\x20\x14\x2e\ \x22\x16\x26\x1c\x12\x25\x1b\x11\x2b\x20\x14\x29\x1f\x14\x24\x1c\ \x12\x31\x25\x18\x33\x26\x18\x34\x27\x19\x2f\x23\x16\x28\x1d\x13\ \x2a\x20\x14\x29\x20\x14\x2d\x21\x16\x31\x25\x17\x2d\x22\x16\x2d\ \x22\x16\x30\x24\x17\x29\x1f\x14\x30\x24\x17\x35\x28\x1a\x3d\x2e\ \x1e\x44\x32\x20\x3b\x2c\x1c\x3c\x2d\x1d\x36\x29\x1a\x39\x2b\x1b\ \x35\x28\x1a\x37\x29\x1a\x37\x2a\x1b\x41\x31\x1f\x42\x31\x20\x38\ \x2a\x1b\x3a\x2b\x1c\x3f\x2f\x1f\x3f\x2f\x1e\x35\x31\x2c\x1b\x1c\ \x1d\x06\x06\x06\x30\x32\x32\x00\x00\x00\x4e\x50\x51\x79\x7d\x7e\ \x5c\x5f\x61\x55\x59\x5a\x93\x96\x99\x93\x96\x9a\x61\x62\x63\x00\ \x00\x00\x24\x25\x25\x75\x79\x7a\x93\x97\x99\x96\x99\x9b\x92\x94\ \x96\x93\x96\x98\x97\x9b\x9d\x96\x9a\x9c\x99\x9d\x9f\x9a\x9d\x9f\ \x9a\x9e\x9f\x9d\xa0\xa1\x00\x00\x00\xde\xd9\xd7\xdd\xd7\xd5\xd6\ \xd1\xcd\xce\xc9\xc6\x76\x65\x53\x09\x08\x05\x0a\x07\x05\x3e\x2f\ \x1e\x2e\x23\x17\x38\x2a\x1c\x48\x36\x23\x46\x34\x21\x2f\x23\x17\ \x3c\x2d\x1e\x42\x32\x20\x37\x2a\x1b\x2c\x21\x15\x23\x1a\x11\x24\ \x1b\x12\x27\x1d\x13\x23\x1a\x10\x28\x1e\x13\x33\x27\x19\x35\x28\ \x1a\x35\x28\x19\x2a\x1f\x14\x2b\x20\x15\x22\x19\x10\x2b\x20\x15\ \x30\x24\x17\x2d\x21\x16\x4e\x3b\x26\x34\x27\x19\x54\x41\x2b\x1f\ \x17\x0f\x24\x1b\x12\x4f\x3c\x28\x25\x1c\x11\x36\x29\x1b\x46\x34\ \x23\x29\x1f\x13\x2a\x1f\x14\x46\x34\x23\x4b\x39\x26\x32\x26\x18\ \x56\x42\x2c\x3a\x2b\x1c\x22\x19\x0f\x2a\x20\x14\x34\x27\x19\x3d\ \x2e\x1e\x2f\x23\x16\x28\x1e\x13\x2a\x20\x14\x35\x28\x1a\x33\x27\ \x19\x29\x1f\x14\x2c\x22\x15\x2e\x22\x16\x2f\x24\x17\x32\x26\x18\ \x39\x2b\x1b\x36\x28\x1a\x31\x25\x17\x37\x29\x1a\x3b\x2c\x1c\x33\ \x26\x18\x2f\x24\x16\x2e\x23\x16\x31\x24\x17\x2c\x21\x15\x27\x1d\ \x13\x2b\x20\x15\x4a\x38\x25\x99\x75\x50\x85\x66\x45\x63\x4c\x35\ \x8e\x6d\x4a\x8e\x6e\x4c\x3a\x2c\x1d\x58\x44\x2e\x9a\x77\x51\x92\ \x71\x4e\x65\x4d\x35\x7c\x5f\x41\x24\x1b\x11\x28\x1e\x13\x23\x1a\ \x11\x2c\x21\x15\x34\x27\x19\x35\x27\x19\x3a\x2a\x1b\x39\x2b\x1b\ \x3b\x2c\x1d\x40\x30\x1e\x35\x27\x19\x2e\x23\x16\x2b\x20\x15\x27\ \x1d\x13\x2b\x20\x14\x38\x2a\x1b\x2a\x20\x14\x2a\x1f\x14\x23\x1a\ \x11\x2b\x20\x15\x24\x1c\x11\x2f\x23\x16\x30\x24\x17\x38\x29\x1a\ \x36\x28\x1a\x34\x28\x19\x35\x28\x1a\x30\x23\x17\x2b\x20\x15\x30\ \x24\x17\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2b\x20\x15\x32\x25\ \x18\x2f\x23\x17\x2d\x22\x16\x36\x28\x1a\x41\x30\x1f\x38\x2b\x1b\ \x3b\x2d\x1d\x43\x32\x20\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x3d\ \x2e\x1e\x39\x2b\x1c\x31\x25\x18\x31\x25\x17\x33\x26\x18\x3e\x2f\ \x1e\x36\x29\x1a\x2c\x21\x15\x31\x2b\x24\x08\x08\x08\x29\x2a\x2a\ \x1e\x20\x1f\x17\x17\x18\x6b\x6e\x6f\x77\x7a\x7d\x82\x87\x88\x63\ \x66\x68\x56\x58\x5a\x88\x8a\x8d\x34\x35\x36\x00\x00\x00\x22\x23\ \x24\x4d\x4f\x50\x73\x75\x76\x97\x9a\x9b\x93\x96\x99\x92\x95\x96\ \x97\x9b\x9c\x9a\x9f\x9f\x98\x9c\x9d\x97\x9b\x9c\x9a\x9e\x9f\x9d\ \x9f\xa0\x00\x00\x00\xe0\xdb\xda\xdd\xd9\xd7\xd2\xc9\xc2\xcd\xc3\ \xb9\x8c\x80\x74\x0e\x0c\x09\x00\x00\x00\x4c\x39\x27\x31\x24\x17\ \x3c\x2c\x1c\x4b\x38\x25\x49\x37\x24\x31\x25\x17\x32\x26\x19\x38\ \x29\x1b\x45\x34\x22\x37\x29\x1b\x2c\x21\x15\x2c\x22\x16\x29\x1f\ \x14\x28\x1e\x13\x2d\x22\x16\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\x1b\ \x2e\x22\x16\x23\x1b\x11\x1e\x17\x0e\x27\x1d\x13\x29\x1e\x14\x2d\ \x22\x15\x43\x32\x21\x39\x2b\x1c\x4d\x3b\x26\x2e\x22\x16\x2d\x22\ \x17\x53\x3f\x2a\x2a\x1f\x14\x3b\x2d\x1d\x51\x3c\x28\x2c\x21\x15\ \x2c\x21\x15\x45\x34\x22\x41\x32\x20\x2a\x20\x14\x37\x29\x1b\x2b\ \x20\x14\x1c\x15\x0d\x37\x2a\x1c\x2f\x23\x17\x3d\x2e\x1e\x2f\x23\ \x16\x26\x1d\x12\x21\x1a\x0f\x2b\x20\x15\x35\x28\x19\x35\x27\x19\ \x2f\x23\x16\x30\x24\x17\x30\x24\x17\x2c\x21\x16\x34\x27\x19\x3a\ \x2c\x1c\x35\x28\x1a\x3b\x2c\x1c\x40\x2f\x1e\x34\x27\x19\x2e\x23\ \x16\x2f\x23\x16\x31\x25\x17\x2c\x21\x15\x28\x1e\x14\x2d\x22\x15\ \x30\x24\x17\x73\x58\x3d\x99\x75\x51\xa7\x82\x5a\x95\x73\x4f\x53\ \x40\x2a\x47\x36\x24\x9e\x7a\x55\x95\x72\x4e\xa0\x7b\x55\x8a\x6a\ \x49\x6f\x55\x39\x34\x27\x18\x2b\x20\x15\x2d\x21\x15\x2f\x23\x17\ \x33\x26\x18\x31\x25\x18\x33\x27\x18\x38\x2b\x1b\x36\x29\x1a\x32\ \x26\x18\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x3a\x2b\x1c\x33\x26\ \x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\ \x24\x1b\x11\x2f\x23\x16\x31\x26\x18\x37\x29\x1b\x33\x26\x18\x36\ \x29\x1a\x3f\x2f\x1e\x3d\x2e\x1d\x36\x29\x1b\x31\x25\x18\x2b\x21\ \x15\x32\x26\x18\x34\x27\x19\x32\x26\x18\x3d\x2e\x1d\x40\x30\x1f\ \x37\x2a\x1a\x36\x27\x1a\x32\x26\x18\x37\x29\x1a\x3b\x2c\x1c\x36\ \x29\x1a\x39\x2b\x1b\x31\x25\x17\x3a\x2b\x1c\x37\x29\x1a\x2e\x22\ \x16\x2a\x20\x15\x28\x1e\x13\x31\x24\x17\x3b\x2c\x1c\x2b\x20\x14\ \x30\x24\x18\x46\x38\x2b\x15\x12\x0e\x18\x19\x18\x15\x16\x16\x28\ \x2a\x2c\x64\x67\x6a\x7a\x7d\x81\x88\x8a\x8e\x86\x89\x8d\x72\x75\ \x77\x41\x42\x43\x06\x06\x06\x00\x00\x00\x53\x55\x55\x98\x9c\x9c\ \x53\x55\x55\x6a\x6c\x6d\x96\x9a\x9b\x96\x9a\x9b\x97\x9b\x9c\x9a\ \x9e\x9f\x98\x9c\x9d\x98\x9b\x9c\xa1\xa4\xa5\x9a\x9d\x9e\x00\x00\ \x00\xe1\xdb\xda\xde\xd9\xd8\xd8\xd4\xd3\xcf\xca\xc9\x90\x77\x5e\ \x0c\x0a\x06\x01\x01\x00\x2c\x21\x16\x31\x25\x18\x35\x27\x19\x3f\ \x2f\x1e\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x1a\x33\x27\x19\x38\x2a\ \x1c\x36\x29\x1a\x33\x26\x19\x32\x26\x18\x31\x25\x17\x2c\x21\x15\ \x31\x24\x17\x3c\x2d\x1d\x40\x2f\x1e\x30\x24\x17\x2e\x22\x16\x24\ \x1b\x12\x25\x1b\x12\x29\x1e\x13\x24\x1b\x11\x22\x1a\x10\x45\x34\ \x22\x37\x28\x1a\x4d\x3a\x26\x27\x1d\x13\x30\x24\x18\x52\x3e\x29\ \x29\x1f\x13\x34\x27\x19\x40\x31\x20\x2d\x22\x16\x25\x1c\x11\x43\ \x32\x21\x41\x32\x21\x24\x1b\x11\x3e\x2f\x1f\x33\x26\x19\x1f\x17\ \x0f\x29\x1f\x14\x29\x1f\x14\x43\x32\x22\x37\x28\x1b\x28\x1e\x13\ \x25\x1c\x12\x2f\x24\x17\x3a\x2b\x1c\x37\x29\x1a\x39\x2b\x1b\x36\ \x28\x1a\x33\x26\x19\x32\x26\x18\x34\x27\x19\x38\x2a\x1b\x3b\x2b\ \x1d\x3a\x2c\x1c\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ \x29\x1f\x13\x24\x1b\x11\x25\x1b\x11\x26\x1d\x12\x2a\x1f\x15\x2b\ \x21\x14\x4e\x3c\x28\x63\x4c\x33\x44\x34\x22\x32\x26\x18\x37\x28\ \x1b\x2c\x20\x15\x79\x5c\x3e\x92\x70\x4e\x2e\x22\x15\x2e\x23\x16\ \x2f\x23\x17\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\ \x24\x17\x2e\x23\x17\x2b\x20\x14\x26\x1c\x12\x26\x1d\x12\x32\x25\ \x18\x36\x28\x1a\x34\x27\x19\x34\x27\x19\x32\x26\x18\x30\x25\x18\ \x30\x23\x17\x2b\x21\x15\x2f\x23\x16\x27\x1d\x13\x2b\x20\x15\x2e\ \x23\x16\x36\x28\x1a\x3b\x2c\x1d\x32\x26\x18\x38\x2b\x1b\x3c\x2d\ \x1d\x3e\x2e\x1e\x40\x2f\x1e\x3d\x2d\x1d\x36\x28\x1a\x38\x2a\x1b\ \x38\x2a\x1b\x37\x2a\x1b\x35\x28\x19\x44\x33\x21\x42\x32\x20\x3b\ \x2c\x1d\x36\x28\x1a\x35\x28\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ \x1b\x38\x29\x1a\x3a\x2b\x1c\x30\x23\x17\x2d\x21\x15\x32\x25\x18\ \x2e\x23\x16\x30\x25\x18\x36\x28\x1a\x2e\x22\x16\x37\x29\x1b\x25\ \x1f\x19\x0b\x0b\x0c\x00\x00\x01\x2b\x2b\x2c\x5b\x5e\x60\x3a\x3d\ \x40\x64\x67\x6a\x8b\x8e\x91\x8b\x8e\x92\x8a\x8d\x90\x44\x44\x45\ \x00\x00\x00\x1a\x1b\x1b\x72\x75\x76\xa9\xad\xad\x5c\x5d\x5d\x53\ \x56\x57\x5f\x62\x65\x9b\x9e\xa0\x99\x9d\x9e\x9c\xa0\xa1\x98\x9c\ \x9d\x95\x98\x99\x9e\xa1\xa2\x98\x9a\x9b\x00\x00\x00\xe0\xda\xd9\ \xde\xd9\xd7\xd8\xd4\xd3\xcf\xcb\xca\xa5\x93\x81\x0f\x0d\x09\x02\ \x01\x00\x34\x28\x1a\x3e\x2f\x1f\x31\x25\x17\x30\x23\x16\x37\x2a\ \x1b\x38\x2a\x1b\x1b\x14\x0d\x2b\x21\x15\x2f\x23\x17\x33\x26\x19\ \x2c\x21\x15\x29\x1f\x14\x2c\x21\x15\x2b\x20\x15\x2a\x1f\x15\x2d\ \x21\x16\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x25\x1c\x12\x2b\x21\ \x15\x2b\x20\x14\x26\x1c\x12\x23\x1b\x11\x3f\x2f\x1f\x34\x27\x19\ \x3b\x2c\x1d\x2e\x22\x16\x2c\x21\x15\x4e\x3b\x28\x26\x1c\x12\x2e\ \x22\x16\x36\x28\x1a\x31\x25\x18\x28\x1e\x13\x40\x30\x20\x44\x34\ \x22\x2a\x20\x14\x46\x35\x24\x37\x29\x1b\x26\x1c\x12\x28\x1e\x14\ \x26\x1c\x12\x33\x27\x19\x35\x27\x19\x2a\x1f\x14\x25\x1c\x12\x2c\ \x21\x15\x36\x29\x1a\x39\x2b\x1b\x43\x32\x20\x45\x33\x21\x42\x32\ \x20\x36\x29\x1a\x3a\x2c\x1c\x38\x2b\x1b\x3b\x2c\x1c\x39\x2a\x1c\ \x38\x2a\x1b\x3c\x2d\x1d\x36\x29\x1a\x2e\x23\x16\x29\x1f\x13\x23\ \x1b\x11\x26\x1c\x12\x27\x1e\x13\x2e\x23\x16\x2b\x1f\x15\x27\x1e\ \x13\x2c\x21\x15\x2e\x23\x16\x2c\x22\x15\x29\x20\x13\x30\x24\x17\ \x71\x55\x3a\x8f\x6e\x4b\x41\x32\x22\x42\x32\x21\x3e\x2f\x1f\x23\ \x1b\x10\x27\x1d\x13\x27\x1e\x13\x2e\x23\x16\x31\x25\x18\x30\x24\ \x17\x22\x1a\x10\x1b\x15\x0d\x26\x1d\x12\x31\x24\x17\x34\x27\x19\ \x39\x2b\x1b\x33\x26\x18\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x31\ \x24\x17\x2b\x20\x15\x2e\x22\x16\x36\x28\x19\x39\x2b\x1b\x37\x29\ \x1a\x35\x27\x1a\x2f\x23\x17\x2e\x22\x16\x32\x26\x18\x3e\x2f\x1e\ \x43\x32\x20\x47\x35\x22\x40\x30\x1f\x31\x25\x18\x2c\x21\x15\x32\ \x25\x18\x36\x28\x1a\x3f\x2f\x1f\x3c\x2d\x1e\x3b\x2d\x1c\x34\x27\ \x19\x31\x24\x18\x2d\x22\x15\x2f\x23\x16\x34\x27\x19\x37\x29\x1b\ \x3b\x2c\x1d\x3b\x2b\x1c\x3a\x2c\x1d\x3b\x2c\x1c\x39\x2b\x1b\x34\ \x27\x19\x31\x25\x18\x31\x24\x17\x3d\x2e\x1e\x27\x1f\x18\x14\x15\ \x16\x05\x05\x05\x1b\x1b\x1c\x59\x5d\x5f\x6d\x71\x74\x3e\x41\x45\ \x67\x6a\x6d\x93\x95\x99\x85\x86\x89\x0b\x0b\x0c\x00\x00\x00\x1d\ \x1e\x1e\x80\x83\x84\x88\x8b\x8b\x69\x6b\x6d\x92\x95\x97\x75\x78\ \x7a\x53\x55\x59\x9f\xa3\xa4\x98\x9c\x9d\x99\x9d\x9e\x95\x99\x9a\ \x9b\x9f\xa0\x9c\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xde\xd9\xd8\xd8\ \xd4\xd3\xce\xca\xc9\xbb\xad\xa2\x12\x10\x0d\x00\x00\x00\x32\x26\ \x19\x3f\x30\x1f\x25\x1c\x12\x29\x1e\x14\x37\x29\x1b\x36\x29\x1a\ \x20\x18\x0f\x29\x1f\x14\x29\x1f\x13\x27\x1e\x13\x26\x1c\x12\x23\ \x1a\x11\x20\x18\x10\x23\x1a\x11\x24\x1b\x11\x26\x1d\x12\x26\x1c\ \x12\x28\x1e\x13\x26\x1d\x13\x2a\x20\x14\x26\x1c\x12\x2a\x1f\x14\ \x2b\x21\x15\x27\x1d\x13\x3a\x2b\x1d\x2c\x20\x15\x40\x30\x1f\x2d\ \x22\x16\x2f\x23\x17\x44\x34\x23\x27\x1d\x13\x32\x26\x18\x44\x33\ \x21\x43\x32\x21\x34\x27\x19\x46\x35\x23\x47\x36\x23\x2c\x21\x15\ \x3f\x30\x1f\x2f\x23\x17\x28\x1e\x13\x2b\x20\x14\x24\x1b\x10\x2c\ \x21\x15\x38\x29\x1b\x2b\x20\x14\x28\x1f\x13\x2d\x22\x16\x3a\x2b\ \x1c\x42\x32\x20\x3f\x2e\x1e\x4a\x36\x24\x4d\x3a\x25\x3d\x2e\x1e\ \x3d\x2d\x1d\x39\x2b\x1c\x37\x29\x1a\x3d\x2d\x1d\x3d\x2d\x1d\x39\ \x2a\x1b\x38\x2a\x1b\x3c\x2d\x1d\x31\x25\x18\x27\x1d\x13\x26\x1c\ \x12\x2c\x22\x15\x31\x25\x18\x2a\x1f\x15\x2a\x20\x14\x28\x1e\x13\ \x29\x1f\x14\x29\x1f\x13\x2c\x21\x15\x33\x26\x19\x62\x4a\x32\x98\ \x74\x50\x8d\x6c\x4b\x8a\x6a\x49\x5c\x46\x30\x26\x1d\x12\x2b\x20\ \x15\x2a\x20\x15\x2c\x21\x15\x2d\x22\x15\x2c\x21\x15\x21\x19\x10\ \x1e\x17\x0e\x28\x1e\x13\x30\x25\x17\x37\x29\x1b\x38\x2a\x1b\x33\ \x26\x18\x29\x1f\x13\x26\x1c\x12\x33\x25\x18\x30\x24\x17\x30\x24\ \x17\x32\x25\x18\x32\x26\x17\x2c\x21\x15\x28\x1e\x13\x2f\x23\x16\ \x2e\x23\x16\x2b\x20\x14\x30\x24\x17\x40\x2f\x1f\x47\x35\x23\x4a\ \x38\x24\x46\x35\x22\x32\x25\x18\x28\x1e\x13\x2e\x23\x16\x38\x2a\ \x1b\x31\x24\x17\x3d\x2e\x1e\x48\x36\x22\x46\x34\x22\x3e\x2e\x1e\ \x36\x28\x1a\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x37\x2a\x1b\x33\ \x27\x19\x40\x30\x1f\x3d\x2e\x1e\x37\x29\x1b\x39\x2a\x1b\x3e\x2e\ \x1e\x33\x26\x19\x30\x24\x18\x2c\x25\x1e\x24\x24\x23\x02\x02\x02\ \x32\x33\x35\x5d\x60\x60\x6d\x71\x73\x7a\x7e\x81\x49\x4b\x4f\x62\ \x62\x64\x62\x61\x63\x00\x00\x00\x0e\x0e\x0e\x50\x52\x53\x6d\x6e\ \x70\x43\x43\x44\x7c\x7f\x80\x9b\xa0\xa1\x9a\x9e\x9f\x84\x87\x89\ \x47\x47\x4d\x94\x97\x98\x9b\x9f\xa0\x9a\x9e\x9f\x9b\x9e\xa2\xa0\ \xa3\xa6\x00\x00\x00\xdf\xdb\xda\xde\xd9\xd8\xd9\xd4\xd3\xd1\xcd\ \xcb\xcb\xc2\xbb\x16\x14\x11\x01\x01\x00\x1b\x15\x0e\x2e\x23\x16\ \x1d\x16\x0e\x25\x1c\x12\x37\x29\x1a\x33\x26\x18\x1e\x17\x0e\x24\ \x1b\x11\x24\x1c\x12\x2b\x20\x14\x25\x1c\x12\x23\x1b\x11\x23\x1a\ \x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x24\x1b\x11\x28\x1f\x14\ \x2a\x20\x15\x2a\x20\x14\x27\x1e\x13\x29\x1e\x13\x27\x1e\x13\x1f\ \x18\x0f\x31\x25\x18\x2c\x21\x15\x55\x40\x2b\x26\x1c\x12\x24\x1b\ \x12\x37\x2a\x1c\x29\x1f\x14\x2d\x21\x16\x37\x29\x1b\x3e\x2e\x1e\ \x35\x28\x19\x40\x30\x20\x43\x32\x21\x2b\x21\x15\x40\x30\x20\x2c\ \x21\x16\x26\x1d\x13\x24\x1b\x12\x2f\x24\x17\x27\x1e\x13\x49\x37\ \x24\x33\x26\x19\x2f\x24\x17\x30\x24\x17\x39\x2b\x1b\x3c\x2d\x1d\ \x39\x2b\x1b\x45\x34\x22\x51\x3c\x27\x47\x35\x23\x3a\x2c\x1c\x33\ \x26\x19\x38\x2a\x1b\x3f\x2f\x1e\x3c\x2d\x1c\x34\x27\x19\x38\x2a\ \x1b\x40\x2f\x1f\x3d\x2e\x1d\x30\x24\x17\x22\x1a\x11\x24\x1c\x11\ \x24\x1b\x11\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x27\x1d\x13\x25\ \x1b\x11\x25\x1c\x12\x30\x24\x17\x39\x2b\x1b\x6c\x53\x38\x90\x6f\ \x4c\x80\x62\x43\x46\x35\x23\x28\x1e\x13\x26\x1d\x12\x25\x1b\x11\ \x28\x1e\x13\x2d\x22\x15\x2f\x24\x16\x28\x1e\x13\x25\x1c\x12\x2a\ \x1f\x14\x32\x26\x18\x3a\x2b\x1c\x38\x2a\x1b\x31\x24\x18\x2b\x20\ \x14\x2a\x20\x15\x2e\x22\x16\x2b\x21\x15\x2f\x23\x17\x2f\x23\x16\ \x30\x24\x17\x2c\x22\x15\x29\x1f\x14\x2f\x24\x17\x33\x27\x19\x32\ \x26\x18\x2d\x22\x15\x37\x29\x1a\x41\x31\x1f\x40\x30\x1f\x3b\x2c\ \x1c\x2f\x23\x17\x25\x1c\x11\x2c\x22\x16\x35\x28\x1a\x32\x26\x18\ \x41\x31\x20\x4f\x3b\x27\x45\x33\x21\x43\x32\x21\x3b\x2b\x1c\x31\ \x25\x18\x31\x25\x18\x37\x29\x1b\x39\x2b\x1b\x37\x29\x1b\x3f\x2f\ \x1f\x3f\x30\x1f\x37\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x2e\x22\x16\ \x27\x1e\x13\x2e\x27\x20\x1d\x1c\x1a\x2d\x2d\x2e\x29\x2b\x2d\x5c\ \x5f\x60\x6d\x6f\x70\x7a\x7e\x81\x7f\x84\x86\x5b\x5d\x5e\x01\x01\ \x02\x00\x00\x00\x29\x2b\x2b\x93\x98\x98\x85\x89\x89\x38\x38\x38\ \x75\x76\x76\x99\x9c\x9d\x96\x99\x9a\x9e\xa1\xa3\x8e\x92\x94\x45\ \x46\x48\x8b\x8c\x8e\xa2\xa5\xa6\x99\x9b\x9f\xa0\xa1\xa5\x00\x00\ \x00\xe0\xda\xda\xde\xd9\xd8\xda\xd6\xd4\xd3\xce\xcc\xcd\xc2\xb9\ \x1f\x1b\x15\x01\x01\x00\x18\x12\x0c\x33\x27\x19\x28\x1e\x13\x2a\ \x20\x14\x32\x25\x18\x33\x26\x18\x15\x10\x0a\x1f\x17\x0f\x25\x1c\ \x12\x26\x1d\x12\x27\x1e\x13\x28\x1e\x13\x26\x1c\x12\x26\x1c\x12\ \x23\x1a\x10\x24\x1b\x11\x26\x1d\x12\x2a\x20\x15\x32\x26\x18\x2f\ \x23\x16\x2d\x22\x15\x33\x26\x19\x2e\x22\x16\x29\x1f\x14\x2b\x21\ \x14\x3d\x2e\x1d\x3c\x2c\x1d\x29\x1e\x14\x2b\x20\x15\x32\x25\x18\ \x35\x29\x1a\x31\x25\x18\x37\x29\x1b\x3f\x30\x1e\x31\x25\x17\x42\ \x31\x20\x46\x35\x23\x2e\x23\x16\x40\x30\x20\x38\x2b\x1c\x27\x1d\ \x13\x25\x1c\x12\x31\x25\x18\x21\x19\x10\x3d\x2f\x1e\x32\x26\x18\ \x32\x26\x18\x37\x29\x1b\x3a\x2c\x1c\x33\x26\x19\x34\x27\x18\x3f\ \x2f\x1e\x49\x36\x23\x46\x34\x22\x33\x26\x18\x2f\x23\x17\x32\x25\ \x17\x37\x2a\x1b\x33\x27\x18\x2d\x22\x16\x32\x25\x18\x35\x28\x19\ \x3b\x2c\x1c\x34\x28\x19\x25\x1c\x12\x21\x18\x10\x1f\x17\x0f\x23\ \x1b\x11\x24\x1b\x11\x28\x1e\x13\x1f\x18\x0f\x23\x1a\x10\x25\x1c\ \x12\x27\x1e\x13\x2c\x21\x15\x33\x26\x18\x3e\x2e\x1e\x3e\x2f\x1d\ \x37\x29\x1a\x2c\x21\x15\x26\x1d\x12\x28\x1e\x13\x2c\x21\x15\x2c\ \x21\x15\x2a\x20\x14\x29\x1f\x14\x28\x1e\x14\x2e\x22\x16\x32\x25\ \x18\x38\x2a\x1b\x36\x28\x1a\x33\x26\x18\x33\x26\x19\x30\x24\x17\ \x31\x25\x17\x31\x24\x17\x2f\x23\x16\x2e\x23\x17\x2f\x23\x16\x2a\ \x20\x14\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x28\x1e\x13\x26\x1d\ \x12\x2a\x20\x14\x32\x25\x18\x3a\x2b\x1c\x39\x2b\x1b\x2e\x22\x16\ \x29\x1f\x14\x2a\x20\x15\x33\x27\x19\x40\x30\x1f\x43\x32\x21\x42\ \x31\x20\x3c\x2d\x1d\x3b\x2c\x1d\x35\x28\x19\x2f\x23\x17\x2e\x23\ \x17\x36\x29\x1a\x3d\x2e\x1e\x3f\x30\x1f\x47\x35\x22\x40\x30\x1f\ \x3a\x2b\x1c\x34\x26\x19\x29\x1f\x14\x2b\x21\x15\x25\x1c\x12\x28\ \x22\x1a\x25\x24\x23\x3c\x3e\x3f\x45\x47\x49\x2c\x2d\x30\x65\x67\ \x69\x7a\x7c\x80\x81\x83\x86\x71\x73\x74\x00\x00\x00\x04\x05\x05\ \x4e\x52\x52\xa8\xaf\xae\x68\x6c\x6b\x75\x77\x78\x56\x58\x58\x75\ \x75\x75\x97\x9b\x9b\x97\x9a\x9d\x96\x9a\x9d\x9c\x9f\xa2\x4f\x4f\ \x51\x7d\x7e\x80\x9b\x9e\xa2\xa0\xa2\xa5\x00\x00\x00\xe0\xdb\xda\ \xdf\xda\xd9\xdb\xd5\xd3\xd5\xd0\xcd\xc5\xb2\x9e\x2b\x23\x18\x00\ \x01\x00\x1a\x14\x0d\x48\x36\x24\x28\x1e\x13\x2c\x22\x15\x31\x25\ \x18\x36\x29\x1a\x18\x12\x0c\x1f\x17\x0f\x28\x1e\x13\x23\x1a\x11\ \x2a\x20\x14\x2a\x1f\x14\x2d\x21\x15\x29\x1f\x13\x29\x1f\x14\x27\ \x1d\x12\x26\x1c\x12\x2d\x22\x16\x38\x2a\x1b\x34\x27\x19\x2e\x23\ \x16\x35\x28\x1a\x32\x25\x18\x30\x24\x17\x2e\x23\x16\x34\x27\x19\ \x36\x29\x1a\x2d\x21\x16\x2d\x21\x16\x38\x2a\x1b\x39\x2b\x1c\x32\ \x26\x18\x3d\x2e\x1e\x41\x31\x20\x25\x1c\x11\x41\x31\x21\x45\x34\ \x23\x2a\x1f\x14\x43\x32\x21\x43\x32\x22\x33\x26\x19\x2c\x22\x15\ \x2d\x22\x16\x1e\x17\x0e\x2f\x24\x17\x27\x1e\x13\x2f\x23\x16\x34\ \x27\x19\x37\x29\x1a\x33\x26\x18\x36\x28\x1a\x3b\x2d\x1d\x43\x32\ \x20\x44\x33\x21\x39\x2b\x1b\x35\x27\x19\x33\x26\x18\x33\x26\x18\ \x2f\x24\x17\x2e\x23\x16\x30\x24\x17\x30\x24\x17\x38\x2a\x1c\x33\ \x27\x19\x2c\x21\x15\x27\x1d\x12\x27\x1d\x12\x26\x1d\x12\x1f\x18\ \x0f\x22\x1a\x10\x1f\x18\x0f\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\ \x27\x1d\x13\x2d\x22\x16\x2f\x23\x16\x34\x27\x19\x34\x27\x19\x2c\ \x20\x14\x2a\x1f\x14\x30\x24\x17\x35\x27\x19\x33\x26\x18\x2e\x23\ \x16\x2b\x21\x15\x28\x1e\x13\x2c\x21\x16\x31\x25\x18\x2f\x24\x17\ \x38\x29\x1b\x38\x2a\x1b\x37\x29\x1a\x34\x26\x19\x3d\x2d\x1d\x3b\ \x2c\x1c\x30\x24\x17\x2c\x21\x15\x2b\x21\x15\x28\x1e\x13\x2a\x1e\ \x14\x25\x1c\x12\x27\x1d\x13\x21\x19\x10\x23\x1b\x11\x2c\x21\x15\ \x2e\x22\x16\x38\x2a\x1a\x3d\x2e\x1d\x32\x26\x18\x33\x27\x19\x2b\ \x21\x15\x34\x27\x19\x3f\x2f\x1e\x3e\x2f\x1e\x3a\x2b\x1b\x37\x2a\ \x1b\x35\x29\x1a\x3b\x2d\x1c\x38\x2a\x1b\x33\x27\x19\x34\x28\x1a\ \x3b\x2c\x1c\x3d\x2e\x1e\x44\x33\x21\x42\x31\x20\x3b\x2d\x1c\x36\ \x28\x19\x29\x1f\x14\x25\x1c\x11\x22\x19\x10\x25\x1d\x16\x31\x30\ \x30\x40\x42\x43\x4d\x4f\x51\x58\x5a\x5d\x30\x32\x36\x72\x75\x79\ \x7e\x81\x83\x2a\x2c\x2b\x00\x00\x00\x0c\x0c\x0d\x57\x59\x5b\x96\ \x9a\x9c\x6b\x6c\x6d\x80\x83\x83\xa8\xac\xac\x54\x55\x55\x72\x73\ \x74\x94\x98\x99\x97\x9b\x9c\x9d\xa1\xa2\xa1\xa5\xa6\x61\x62\x64\ \x6c\x6c\x6e\x9f\xa1\xa2\x00\x00\x00\xe1\xdb\xda\xdf\xdb\xd9\xdb\ \xd6\xd2\xd6\xd2\xce\xbe\xa2\x85\x3c\x30\x24\x07\x05\x03\x10\x0c\ \x08\x36\x2a\x1c\x1f\x17\x0f\x29\x1f\x14\x34\x27\x19\x44\x33\x21\ \x1d\x15\x0e\x1c\x14\x0d\x20\x18\x10\x24\x1b\x11\x2d\x23\x16\x2e\ \x23\x16\x36\x28\x1a\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x2a\x1f\ \x14\x34\x27\x19\x36\x28\x19\x2b\x20\x14\x2a\x21\x14\x2c\x21\x15\ \x2f\x23\x16\x31\x24\x17\x35\x28\x19\x31\x25\x17\x39\x2b\x1b\x31\ \x25\x17\x2f\x23\x16\x36\x29\x1a\x49\x37\x24\x37\x29\x1a\x47\x35\ \x22\x4a\x38\x24\x2d\x22\x16\x3b\x2c\x1d\x39\x2b\x1c\x28\x1e\x13\ \x31\x25\x18\x33\x26\x19\x2b\x21\x15\x25\x1c\x12\x29\x1f\x14\x1b\ \x14\x0d\x34\x28\x1b\x20\x17\x0f\x2a\x20\x14\x2c\x21\x15\x32\x26\ \x18\x33\x27\x19\x33\x27\x19\x34\x27\x19\x3e\x2e\x1e\x41\x31\x20\ \x46\x34\x21\x3a\x2b\x1c\x32\x25\x18\x39\x2a\x1b\x34\x27\x19\x2f\ \x22\x16\x31\x25\x18\x2f\x23\x17\x33\x26\x18\x36\x29\x1a\x32\x25\ \x18\x31\x25\x17\x31\x24\x17\x2b\x20\x14\x1e\x17\x0e\x1f\x18\x0f\ \x23\x1b\x11\x27\x1d\x12\x26\x1c\x13\x23\x1a\x11\x24\x1b\x11\x28\ \x1e\x13\x2d\x22\x15\x32\x25\x18\x2b\x21\x15\x26\x1c\x12\x27\x1d\ \x13\x2e\x23\x17\x33\x27\x19\x2f\x23\x17\x30\x24\x17\x2b\x20\x14\ \x21\x19\x0f\x2b\x20\x14\x33\x26\x19\x32\x26\x18\x38\x2a\x1b\x33\ \x26\x19\x33\x26\x18\x31\x24\x17\x3c\x2d\x1d\x3c\x2c\x1c\x34\x27\ \x19\x2b\x20\x14\x28\x1f\x13\x2b\x20\x14\x2f\x23\x16\x2d\x22\x16\ \x2b\x20\x15\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x2e\x23\x16\x36\ \x29\x1a\x3a\x2c\x1c\x37\x2a\x1b\x3a\x2b\x1b\x38\x2a\x1b\x39\x2b\ \x1c\x37\x2a\x1b\x34\x26\x19\x35\x27\x19\x3a\x2c\x1c\x37\x2a\x1b\ \x3c\x2d\x1d\x3a\x2b\x1c\x35\x28\x19\x3a\x2c\x1c\x41\x30\x1f\x3c\ \x2d\x1d\x3f\x2f\x1e\x43\x32\x20\x36\x29\x1a\x30\x25\x17\x2c\x21\ \x15\x2a\x1f\x14\x2b\x20\x15\x30\x25\x19\x28\x25\x22\x3b\x3d\x3f\ \x4c\x4e\x4f\x5b\x5c\x5f\x69\x6b\x6f\x35\x36\x3a\x6c\x6e\x6f\x00\ \x00\x00\x02\x02\x02\x3f\x41\x42\x86\x8a\x8d\x39\x39\x3c\x68\x68\ \x6a\x9a\x9c\x9d\x79\x7b\x7c\x98\x9c\x9c\x60\x61\x61\x64\x66\x67\ \x91\x95\x96\x9d\xa0\xa3\x9b\x9e\xa2\xa2\xa6\xa8\x79\x7b\x7c\x63\ \x63\x65\x00\x00\x00\xdf\xda\xd8\xdd\xd9\xd7\xdb\xd5\xd2\xd7\xd2\ \xcf\xc6\xb1\x9d\x4c\x43\x38\x05\x04\x03\x05\x04\x03\x27\x1d\x13\ \x1c\x15\x0d\x2a\x1f\x14\x35\x28\x19\x4f\x3b\x26\x25\x1b\x12\x17\ \x12\x0b\x24\x1b\x11\x2a\x20\x14\x28\x1e\x13\x30\x24\x17\x3f\x2f\ \x1e\x35\x27\x19\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x3a\x2c\x1c\ \x36\x28\x1a\x2b\x20\x14\x2a\x1f\x14\x28\x1e\x13\x2c\x21\x16\x2c\ \x21\x15\x37\x2a\x1b\x3a\x2c\x1c\x3d\x2e\x1d\x34\x27\x19\x27\x1d\ \x12\x2f\x24\x17\x43\x33\x21\x3d\x2e\x1e\x4a\x38\x24\x4b\x38\x24\ \x33\x26\x18\x3c\x2d\x1d\x32\x25\x18\x26\x1c\x12\x29\x1e\x14\x36\ \x29\x1a\x2c\x21\x15\x20\x18\x10\x2c\x21\x16\x1c\x16\x0d\x32\x26\ \x18\x22\x1a\x10\x30\x24\x17\x2e\x22\x16\x34\x26\x18\x39\x2b\x1b\ \x40\x30\x1f\x37\x28\x1a\x40\x30\x1f\x44\x33\x21\x4d\x3a\x25\x46\ \x35\x22\x3c\x2d\x1c\x3c\x2d\x1c\x37\x29\x1b\x2e\x23\x17\x39\x2b\ \x1b\x3a\x2c\x1c\x33\x26\x18\x31\x25\x17\x35\x28\x19\x30\x24\x17\ \x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x24\x1b\x11\x24\x1b\x11\x26\ \x1c\x13\x30\x24\x17\x21\x18\x0f\x1c\x16\x0e\x23\x1a\x10\x33\x26\ \x19\x2f\x23\x16\x2c\x21\x15\x27\x1e\x12\x25\x1c\x12\x2b\x20\x15\ \x32\x26\x18\x33\x27\x19\x34\x27\x19\x26\x1d\x12\x21\x18\x10\x29\ \x1f\x14\x2d\x22\x16\x2d\x22\x16\x40\x30\x20\x37\x29\x1b\x2d\x21\ \x15\x24\x1b\x11\x33\x26\x19\x39\x2b\x1b\x38\x2a\x1b\x32\x26\x18\ \x30\x23\x16\x2d\x22\x15\x2d\x22\x16\x2c\x21\x15\x27\x1d\x13\x27\ \x1e\x13\x2c\x22\x15\x2f\x24\x16\x2e\x22\x16\x2e\x22\x16\x2d\x22\ \x15\x32\x25\x18\x34\x27\x19\x35\x27\x19\x33\x26\x18\x32\x26\x18\ \x2e\x23\x17\x34\x27\x19\x34\x27\x19\x36\x28\x1a\x32\x26\x18\x32\ \x25\x18\x36\x28\x19\x39\x2a\x1b\x46\x34\x21\x49\x37\x23\x3d\x2e\ \x1d\x3f\x30\x1e\x37\x2a\x1a\x33\x26\x18\x2e\x23\x17\x2f\x23\x16\ \x28\x1e\x13\x34\x29\x1b\x2b\x28\x24\x2a\x2c\x2d\x48\x4c\x4d\x5b\ \x5d\x5f\x6c\x70\x72\x75\x78\x7c\x0a\x0b\x0c\x00\x00\x00\x11\x11\ \x12\x78\x7c\x7e\x9f\xa3\xa6\x5e\x5f\x61\x44\x44\x47\x7d\x7e\x81\ \x28\x29\x2a\x7b\x7e\x7e\xaa\xae\xaf\x6f\x72\x75\x67\x69\x6c\x89\ \x8d\x90\x9d\xa1\xa4\xa2\xa5\xa9\xa7\xaa\xad\x87\x89\x8b\x00\x00\ \x00\xdf\xd9\xd6\xde\xda\xd7\xdc\xd7\xd3\xd7\xd2\xcf\xcd\xc0\xb4\ \x5d\x55\x4e\x05\x05\x04\x03\x02\x02\x21\x18\x10\x1d\x17\x0e\x2c\ \x21\x15\x3c\x2d\x1d\x53\x3e\x28\x36\x29\x1a\x1d\x16\x0e\x2a\x1f\ \x14\x2e\x23\x16\x29\x1f\x14\x2a\x20\x15\x36\x29\x1a\x35\x28\x19\ \x2b\x21\x14\x2d\x22\x16\x33\x27\x19\x3b\x2c\x1c\x33\x26\x19\x2c\ \x21\x16\x29\x1e\x13\x2b\x20\x15\x2e\x23\x17\x27\x1d\x13\x32\x25\ \x18\x3a\x2b\x1c\x34\x27\x19\x36\x29\x1a\x23\x1a\x10\x30\x24\x17\ \x53\x3f\x2a\x3d\x2e\x1d\x4d\x39\x25\x55\x3f\x29\x3a\x2b\x1c\x3e\ \x2f\x1e\x3a\x2c\x1d\x29\x1e\x14\x26\x1c\x12\x40\x30\x20\x2c\x21\ \x16\x23\x1b\x11\x35\x28\x1a\x2c\x21\x15\x2c\x21\x15\x22\x1a\x10\ \x29\x1e\x14\x2c\x21\x15\x2f\x23\x17\x39\x2a\x1b\x41\x31\x20\x3a\ \x2c\x1c\x37\x29\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x43\x33\ \x20\x41\x31\x1f\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\x31\x25\x17\ \x31\x25\x17\x33\x26\x18\x33\x26\x18\x2e\x22\x16\x2d\x22\x16\x2b\ \x21\x15\x23\x1a\x11\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x0f\x2c\x21\ \x15\x1e\x17\x0e\x1e\x17\x0f\x21\x1a\x10\x29\x1e\x13\x26\x1d\x11\ \x28\x1e\x13\x23\x1b\x10\x25\x1c\x11\x2c\x21\x15\x2c\x21\x15\x2c\ \x21\x15\x42\x32\x21\x49\x37\x25\x3c\x2d\x1e\x2f\x23\x17\x26\x1d\ \x12\x23\x1a\x10\x5b\x45\x2e\x7b\x5e\x40\x7d\x60\x41\x63\x4a\x32\ \x42\x31\x20\x31\x25\x17\x35\x27\x19\x34\x27\x19\x33\x26\x19\x31\ \x26\x18\x33\x27\x19\x30\x24\x17\x2a\x20\x15\x28\x1e\x13\x28\x1e\ \x14\x2e\x23\x16\x2c\x21\x15\x2b\x21\x15\x2d\x22\x16\x2f\x23\x16\ \x31\x25\x17\x38\x2a\x1b\x33\x26\x19\x35\x28\x1a\x30\x24\x18\x31\ \x25\x17\x30\x24\x17\x35\x28\x19\x31\x25\x18\x32\x25\x18\x39\x2b\ \x1c\x3a\x2b\x1b\x4a\x37\x23\x50\x3c\x27\x48\x36\x23\x43\x32\x20\ \x3c\x2d\x1d\x36\x29\x1a\x30\x24\x17\x2e\x23\x16\x29\x1f\x13\x2d\ \x22\x16\x35\x34\x31\x2f\x32\x33\x32\x34\x36\x50\x52\x55\x69\x6c\ \x6e\x74\x77\x7a\x07\x07\x07\x00\x00\x00\x1a\x1a\x1b\x9b\x9e\xa1\ \x85\x87\x8a\x6d\x6e\x72\x7b\x7c\x80\x67\x69\x6d\x5e\x60\x63\x90\ \x93\x95\x9c\xa0\xa0\xa6\xab\xad\x85\x8a\x8c\x54\x58\x5b\x82\x86\ \x88\xa4\xa8\xaa\xa0\xa3\xa7\xa1\xa5\xa6\x00\x00\x00\xe0\xdb\xd8\ \xe0\xdb\xd8\xdc\xd7\xd4\xd6\xd0\xcc\xd0\xca\xc5\x6d\x67\x60\x06\ \x05\x04\x0b\x08\x05\x49\x37\x24\x25\x1c\x12\x2e\x22\x16\x36\x29\ \x1a\x55\x3f\x29\x39\x2b\x1c\x28\x1e\x13\x2a\x20\x14\x2f\x23\x16\ \x34\x27\x19\x30\x24\x17\x34\x27\x19\x39\x2b\x1b\x32\x25\x18\x2b\ \x20\x15\x23\x1a\x11\x23\x1a\x10\x24\x1b\x11\x1f\x17\x0f\x20\x19\ \x10\x26\x1d\x13\x28\x1e\x13\x24\x1b\x11\x27\x1d\x13\x39\x2b\x1c\ \x37\x28\x1a\x3e\x2e\x1e\x29\x1f\x14\x34\x26\x19\x4e\x3b\x27\x2c\ \x21\x15\x3c\x2d\x1d\x52\x3d\x28\x37\x29\x1a\x3a\x2c\x1d\x40\x31\ \x21\x29\x1f\x14\x1e\x17\x0e\x30\x25\x18\x24\x1c\x11\x21\x1a\x10\ \x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x1b\x15\x0c\x23\x1b\x11\x25\ \x1c\x12\x28\x1e\x13\x2f\x23\x17\x3a\x2b\x1b\x37\x29\x1a\x38\x2a\ \x1b\x40\x2f\x1e\x41\x31\x1f\x3f\x2f\x1e\x43\x33\x20\x3d\x2e\x1e\ \x31\x25\x18\x36\x29\x1a\x3e\x2e\x1d\x37\x29\x1a\x35\x28\x19\x31\ \x24\x17\x2f\x23\x16\x29\x1e\x14\x29\x1f\x14\x2c\x21\x15\x27\x1e\ \x13\x2e\x23\x16\x35\x28\x1b\x39\x2c\x1d\x47\x36\x25\x3b\x2d\x1e\ \x19\x13\x0c\x21\x1a\x11\x65\x4e\x35\x77\x5c\x3f\x74\x58\x3c\x45\ \x35\x23\x2a\x1f\x14\x2e\x22\x16\x47\x35\x23\x70\x55\x39\x85\x66\ \x45\x94\x71\x4e\x87\x67\x46\x69\x4f\x34\x45\x34\x22\x29\x1e\x13\ \x57\x42\x2b\xa4\x7e\x58\x9f\x7a\x55\xa1\x7c\x55\x72\x57\x3a\x3d\ \x2e\x1e\x3a\x2b\x1c\x39\x2a\x1b\x30\x25\x17\x30\x25\x17\x2e\x22\ \x16\x2f\x24\x17\x2f\x23\x17\x2c\x21\x16\x32\x25\x18\x3a\x2c\x1c\ \x36\x29\x1a\x2e\x23\x16\x32\x26\x18\x33\x26\x19\x34\x27\x18\x3a\ \x2c\x1c\x3a\x2b\x1c\x3d\x2e\x1e\x3d\x2e\x1e\x40\x30\x1f\x3d\x2e\ \x1d\x3e\x2e\x1e\x37\x2a\x1b\x32\x26\x18\x3b\x2c\x1c\x3e\x2f\x1e\ \x5e\x46\x2e\x47\x35\x23\x43\x32\x20\x43\x32\x21\x42\x32\x20\x3d\ \x2e\x1d\x38\x2a\x1a\x31\x25\x17\x40\x30\x20\x51\x3d\x29\x3d\x37\ \x32\x42\x44\x46\x38\x3a\x3b\x38\x3a\x3c\x5a\x5d\x60\x49\x4a\x4c\ \x00\x00\x00\x05\x05\x05\x43\x45\x46\x70\x72\x76\x70\x72\x74\x6d\ \x6f\x73\xa5\xaa\xaf\x87\x8a\x8f\x6a\x6c\x72\x73\x76\x7a\x9b\x9e\ \xa0\x9e\xa3\xa4\xa0\xa5\xa6\x93\x98\x9b\x5c\x5e\x61\x78\x7a\x7c\ \x9d\xa0\xa1\x9f\xa3\xa4\x00\x00\x00\xe0\xdb\xd9\xdf\xda\xd8\xdd\ \xd8\xd5\xd7\xd3\xd0\xcf\xcb\xc8\x76\x67\x58\x07\x06\x04\x07\x05\ \x03\x49\x37\x24\x22\x1a\x10\x2c\x20\x15\x3b\x2c\x1c\x4d\x3a\x25\ \x3a\x2b\x1c\x17\x11\x0b\x21\x19\x10\x2e\x22\x16\x40\x30\x1f\x39\ \x2b\x1b\x2f\x23\x16\x2c\x21\x15\x2b\x20\x15\x2a\x20\x14\x26\x1d\ \x12\x23\x1a\x10\x21\x19\x10\x1e\x17\x0e\x23\x1a\x11\x27\x1e\x13\ \x20\x18\x0f\x20\x19\x10\x20\x18\x0f\x38\x2a\x1c\x31\x25\x18\x43\ \x32\x21\x2c\x21\x15\x2d\x22\x16\x3e\x2f\x1e\x25\x1b\x11\x34\x27\ \x19\x44\x32\x20\x36\x28\x1a\x46\x34\x23\x58\x42\x2d\x39\x2c\x1d\ \x18\x12\x0b\x3b\x2d\x1e\x27\x1e\x13\x1b\x14\x0d\x2c\x21\x15\x27\ \x1d\x13\x41\x31\x21\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x24\x1b\ \x12\x2c\x22\x15\x35\x28\x19\x2e\x22\x16\x30\x23\x17\x33\x26\x18\ \x37\x2a\x1a\x3e\x2e\x1d\x4a\x37\x24\x46\x34\x22\x42\x31\x1f\x3e\ \x2e\x1e\x3c\x2d\x1d\x3b\x2c\x1c\x47\x36\x23\x5d\x47\x30\x53\x3e\ \x29\x4b\x38\x26\x39\x2b\x1c\x23\x1a\x10\x20\x18\x0f\x32\x25\x18\ \x74\x59\x3e\x91\x70\x4d\x81\x62\x43\x3a\x2d\x1d\x1a\x14\x0c\x1f\ \x18\x10\x4f\x3c\x29\xa3\x7e\x58\x84\x66\x45\x30\x24\x17\x23\x1a\ \x11\x43\x32\x21\x83\x64\x43\xa0\x7b\x56\x9c\x78\x53\x97\x74\x50\ \xa3\x7e\x57\x94\x72\x4e\x7a\x5d\x3e\x31\x24\x18\x51\x3e\x2a\x58\ \x44\x2d\x48\x36\x24\x92\x70\x4e\x90\x6f\x4c\x63\x4b\x32\x31\x24\ \x17\x3b\x2c\x1d\x37\x29\x1b\x34\x27\x19\x2d\x21\x15\x2f\x23\x16\ \x2d\x22\x15\x2a\x1f\x14\x2d\x21\x15\x38\x29\x1b\x3a\x2b\x1c\x38\ \x2a\x1b\x35\x27\x19\x38\x2a\x1b\x3e\x2e\x1e\x38\x2a\x1b\x33\x26\ \x18\x37\x2a\x1a\x3d\x2e\x1e\x3b\x2d\x1d\x42\x31\x20\x42\x31\x1f\ \x3c\x2d\x1d\x3a\x2c\x1c\x39\x2b\x1c\x3c\x2d\x1d\x4c\x39\x25\x4d\ \x3a\x25\x4c\x39\x25\x48\x36\x23\x4d\x3a\x26\x4c\x39\x25\x46\x34\ \x22\x39\x2a\x1b\x34\x28\x1a\x3d\x2e\x1e\x3b\x35\x2f\x3c\x3e\x40\ \x4b\x4e\x4f\x4a\x4c\x4d\x42\x45\x47\x0e\x0f\x0f\x00\x00\x00\x16\ \x16\x16\x94\x98\x99\x63\x66\x69\x47\x48\x4a\x84\x87\x8b\x6a\x6c\ \x6f\x66\x67\x6a\x95\x97\x9c\x68\x6b\x6f\x6a\x6c\x70\x9d\xa1\xa3\ \x9d\xa2\xa4\xa0\xa5\xa8\x99\x9d\xa0\x6a\x6d\x70\x6d\x6f\x72\x96\ \x98\x9b\x00\x00\x00\xe1\xdd\xdb\xe0\xdb\xd9\xdf\xd9\xd6\xd6\xd0\ \xcb\xd0\xcc\xc9\x88\x7c\x71\x08\x07\x05\x0b\x08\x04\x59\x44\x2d\ \x29\x1f\x14\x2f\x23\x16\x44\x33\x21\x4c\x38\x25\x4d\x3a\x25\x2a\ \x1f\x14\x37\x29\x1b\x35\x28\x19\x3e\x2e\x1e\x3d\x2e\x1d\x3c\x2d\ \x1d\x38\x2a\x1b\x2e\x22\x16\x2f\x24\x16\x2f\x24\x16\x27\x1d\x12\ \x24\x1b\x12\x2a\x1f\x14\x33\x26\x19\x30\x24\x17\x26\x1c\x12\x21\ \x18\x0f\x1c\x15\x0d\x38\x2a\x1c\x35\x28\x1a\x47\x35\x23\x31\x25\ \x17\x2d\x22\x16\x3e\x2f\x1f\x24\x1b\x11\x34\x27\x19\x47\x35\x22\ \x38\x2a\x1b\x40\x30\x1f\x49\x37\x25\x36\x29\x1b\x1a\x14\x0d\x45\ \x34\x24\x32\x26\x19\x20\x18\x0f\x25\x1c\x12\x32\x26\x18\x4b\x39\ \x26\x2c\x21\x15\x22\x19\x10\x24\x1a\x11\x21\x19\x10\x23\x1b\x11\ \x51\x3d\x29\x4e\x3a\x26\x57\x42\x2b\x5c\x45\x2d\x49\x38\x25\x3a\ \x2c\x1c\x44\x33\x21\x45\x33\x21\x42\x31\x1f\x39\x2b\x1b\x3a\x2b\ \x1c\x6a\x50\x36\x7c\x5e\x40\x80\x61\x42\x63\x4b\x32\x77\x5b\x3e\ \x93\x71\x4f\x55\x41\x2b\x2b\x20\x14\x2d\x22\x16\x5e\x48\x32\x72\ \x57\x3b\x7e\x60\x41\x2d\x21\x15\x15\x10\x0a\x19\x12\x0c\x3d\x2e\ \x1e\xa4\x7e\x58\x75\x59\x3d\x26\x1d\x13\x2e\x23\x17\x71\x56\x3a\ \xaa\x83\x5b\x8a\x6b\x4a\x43\x34\x22\x2c\x21\x15\x37\x29\x1c\x84\ \x65\x45\x8e\x6c\x49\x3c\x2c\x1d\x4b\x3a\x27\x37\x29\x1a\x28\x1e\ \x13\x3f\x30\x20\x8c\x6b\x49\x6d\x53\x38\x2e\x22\x16\x38\x2a\x1b\ \x37\x29\x1b\x3b\x2d\x1d\x38\x2a\x1b\x2d\x21\x15\x2c\x21\x15\x23\ \x1a\x11\x29\x1f\x14\x2e\x23\x16\x2f\x23\x17\x35\x27\x19\x33\x26\ \x18\x3b\x2c\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3f\x2f\x1e\x2b\x21\x15\ \x34\x26\x19\x33\x26\x19\x3a\x2c\x1c\x4a\x37\x23\x44\x33\x20\x3e\ \x2e\x1d\x3b\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1f\x46\x34\x22\x48\x36\ \x23\x4e\x3b\x26\x4f\x3b\x26\x49\x36\x23\x44\x33\x21\x3f\x2e\x1e\ \x2e\x23\x16\x2c\x22\x16\x32\x2d\x28\x3b\x3c\x3e\x49\x4c\x4d\x59\ \x5d\x5e\x40\x42\x44\x00\x00\x00\x03\x03\x03\x4a\x4b\x4d\x9d\xa0\ \xa4\x83\x84\x87\x44\x44\x45\x73\x75\x79\x58\x59\x5c\x67\x68\x6a\ \x98\x9b\x9f\x97\x9a\x9e\x77\x79\x7d\x5f\x61\x65\x98\x9b\x9d\xa0\ \xa4\xa8\x9f\xa2\xa7\x9e\xa1\xa5\x75\x77\x7b\x68\x68\x6c\x00\x00\ \x00\xe4\xe0\xdf\xe2\xde\xdd\xe0\xdc\xda\xda\xd4\xd1\xd2\xce\xcc\ \x9b\x93\x8c\x0a\x09\x07\x05\x04\x02\x4a\x37\x24\x2d\x22\x16\x2a\ \x20\x14\x36\x28\x1a\x48\x37\x23\x44\x33\x21\x25\x1c\x12\x2c\x21\ \x16\x2c\x21\x15\x30\x23\x17\x2f\x23\x16\x38\x2a\x1b\x3b\x2c\x1d\ \x2d\x22\x16\x24\x1b\x11\x28\x1e\x13\x27\x1e\x12\x29\x1f\x14\x36\ \x29\x1a\x37\x29\x1a\x4d\x39\x26\x35\x28\x19\x27\x1e\x13\x26\x1d\ \x13\x3b\x2d\x1d\x32\x25\x18\x43\x32\x21\x28\x1f\x13\x38\x2b\x1b\ \x48\x36\x24\x2c\x20\x15\x41\x30\x1f\x43\x32\x21\x2a\x1f\x14\x29\ \x1f\x14\x33\x26\x19\x32\x25\x18\x24\x1b\x11\x39\x2c\x1c\x2e\x23\ \x17\x20\x18\x0f\x2b\x21\x15\x2f\x23\x16\x50\x3c\x28\x28\x1e\x13\ \x2e\x23\x16\x27\x1e\x13\x2c\x20\x15\x2e\x23\x16\x5b\x44\x2d\x6b\ \x51\x35\x74\x57\x3a\x61\x48\x2f\x69\x4f\x34\x63\x4a\x31\x3b\x2c\ \x1c\x34\x28\x19\x31\x24\x17\x35\x28\x19\x5f\x48\x31\x83\x64\x44\ \x8d\x6c\x4a\x82\x63\x44\x75\x5a\x3d\x7d\x5f\x40\x8c\x6b\x49\x97\ \x74\x50\x48\x36\x25\x2d\x22\x16\x49\x37\x25\x6f\x55\x38\x8b\x6b\ \x49\x26\x1c\x12\x1f\x17\x0f\x19\x13\x0c\x3d\x2e\x1e\xa3\x7d\x57\ \x83\x64\x44\x31\x25\x18\x3e\x2f\x1f\x8a\x69\x48\x9a\x77\x53\x50\ \x3e\x2a\x22\x1a\x10\x21\x19\x10\x30\x23\x18\x83\x64\x44\x96\x72\ \x4e\x76\x5a\x3d\x5a\x44\x2c\x3d\x2e\x1e\x30\x24\x17\x2e\x22\x16\ \x6f\x54\x37\x88\x69\x48\x4e\x3b\x28\x2d\x22\x15\x35\x28\x19\x33\ \x26\x18\x39\x2b\x1c\x32\x26\x18\x30\x24\x17\x2a\x1f\x14\x2a\x20\ \x14\x2a\x1f\x14\x2d\x21\x16\x30\x24\x17\x31\x25\x18\x33\x26\x19\ \x38\x2a\x1b\x3f\x2f\x1e\x41\x30\x1f\x39\x2b\x1c\x35\x27\x19\x2f\ \x23\x16\x36\x29\x1a\x3f\x30\x1e\x42\x31\x20\x45\x34\x21\x3f\x2f\ \x1e\x3c\x2d\x1c\x3c\x2d\x1c\x40\x30\x1e\x3b\x2b\x1c\x41\x30\x1f\ \x41\x31\x1f\x3f\x2f\x1e\x42\x31\x20\x3d\x2e\x1e\x2a\x20\x15\x2d\ \x22\x16\x32\x2c\x26\x3a\x3b\x3c\x49\x4b\x4c\x5d\x60\x61\x1e\x20\ \x20\x00\x00\x00\x02\x02\x02\x52\x55\x58\x93\x96\x99\x6d\x6f\x71\ \x80\x81\x84\x84\x86\x88\x5b\x5b\x60\x81\x82\x85\xa0\xa2\xa3\x9e\ \xa1\xa3\xa3\xa6\xaa\x7d\x80\x84\x59\x5a\x5e\x8a\x8c\x90\xa8\xac\ \xaf\x9c\xa0\xa4\xa1\xa4\xa7\x86\x87\x8a\x00\x00\x00\xe4\xe0\xdf\ \xe2\xde\xdc\xdf\xdb\xda\xdc\xd7\xd5\xd3\xce\xcc\xab\xa2\x9a\x0c\ \x0b\x08\x03\x02\x01\x3b\x2c\x1d\x2e\x22\x16\x33\x26\x19\x3b\x2c\ \x1c\x52\x3d\x28\x50\x3c\x27\x10\x0c\x08\x1f\x17\x0e\x2c\x21\x15\ \x36\x29\x1b\x3e\x2f\x1e\x41\x31\x1f\x3f\x30\x1f\x3b\x2c\x1d\x2f\ \x23\x17\x2e\x22\x16\x2d\x21\x15\x31\x24\x17\x2f\x24\x17\x2c\x20\ \x15\x2d\x22\x16\x27\x1d\x12\x32\x25\x17\x27\x1e\x13\x39\x2b\x1b\ \x28\x1e\x13\x37\x2a\x1b\x30\x23\x17\x2e\x23\x17\x46\x35\x23\x23\ \x1b\x11\x32\x26\x18\x3b\x2d\x1d\x29\x1f\x14\x1c\x15\x0d\x33\x27\ \x19\x32\x26\x19\x26\x1c\x12\x31\x25\x17\x27\x1e\x13\x29\x1f\x14\ \x2d\x22\x16\x25\x1c\x12\x43\x33\x21\x31\x24\x18\x27\x1d\x13\x28\ \x1f\x14\x39\x2b\x1b\x30\x24\x17\x57\x42\x2b\x83\x64\x43\x99\x74\ \x50\x89\x68\x46\x70\x55\x38\x5e\x46\x2e\x43\x33\x20\x2c\x22\x15\ \x2e\x23\x16\x46\x35\x23\x73\x58\x3b\x8b\x6a\x49\x56\x41\x2c\x2c\ \x21\x15\x28\x1e\x13\x37\x29\x1b\x70\x55\x39\x8c\x6b\x49\x6b\x52\ \x38\x2c\x22\x15\x41\x31\x20\x9c\x79\x53\x93\x70\x4c\x30\x24\x17\ \x23\x1b\x11\x19\x12\x0c\x3f\x2f\x20\xa4\x7f\x59\x83\x64\x45\x33\ \x28\x1a\x45\x35\x23\x9e\x79\x54\x8c\x6b\x4b\x44\x34\x23\x25\x1c\ \x11\x27\x1d\x12\x54\x41\x2c\x6b\x52\x38\x69\x50\x37\x57\x43\x2d\ \x33\x27\x19\x2d\x21\x15\x2e\x22\x16\x34\x28\x19\x60\x48\x2f\x8c\ \x6b\x49\x5f\x48\x31\x34\x28\x19\x3d\x2d\x1e\x36\x29\x1a\x31\x25\ \x17\x2f\x24\x17\x30\x24\x17\x30\x23\x17\x30\x24\x17\x2d\x22\x16\ \x2e\x23\x16\x2e\x23\x16\x31\x25\x17\x33\x26\x18\x3d\x2d\x1e\x3f\ \x2f\x1f\x49\x37\x23\x45\x34\x21\x42\x32\x20\x3a\x2b\x1b\x34\x27\ \x19\x35\x28\x1a\x39\x2b\x1c\x3d\x2d\x1d\x31\x25\x18\x3a\x2b\x1c\ \x3a\x2b\x1c\x3b\x2c\x1c\x3f\x2f\x1e\x3b\x2c\x1d\x3b\x2c\x1c\x3c\ \x2d\x1d\x3d\x2e\x1e\x40\x30\x1f\x30\x24\x17\x33\x26\x18\x38\x30\ \x27\x42\x3f\x3c\x48\x49\x4b\x4d\x4f\x50\x03\x03\x03\x00\x00\x00\ \x30\x30\x31\x68\x6b\x6e\x4c\x50\x52\x5a\x5b\x5d\xa0\xa3\xa7\x9c\ \x9f\xa2\x8b\x8d\x91\x5b\x5c\x60\x7d\x7e\x81\x9e\xa0\xa2\x9f\xa2\ \xa5\xa2\xa5\xaa\x8c\x8e\x92\x5c\x5d\x61\x7b\x7e\x80\xa9\xac\xb0\ \xa3\xa6\xaa\xa8\xaa\xad\x00\x00\x00\xe3\xdf\xdc\xe0\xdc\xd9\xde\ \xd9\xd7\xdd\xd8\xd5\xd5\xd0\xcd\xb9\xb2\xab\x0e\x0d\x0a\x00\x00\ \x00\x44\x33\x21\x2e\x22\x16\x27\x1d\x12\x3a\x2c\x1c\x58\x42\x2b\ \x52\x3d\x27\x18\x12\x0b\x1d\x16\x0e\x22\x1a\x11\x2d\x22\x16\x33\ \x26\x18\x39\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x3d\x2e\x1e\x36\x28\ \x1a\x30\x24\x17\x34\x27\x19\x31\x25\x18\x2a\x20\x14\x28\x1e\x13\ \x25\x1c\x11\x2a\x20\x13\x26\x1d\x12\x39\x2b\x1c\x23\x1a\x11\x25\ \x1c\x11\x1e\x17\x0e\x29\x1f\x14\x4c\x3a\x27\x24\x1b\x11\x32\x25\ \x18\x42\x32\x21\x37\x2a\x1b\x2a\x20\x14\x32\x27\x19\x2b\x20\x15\ \x1d\x15\x0e\x40\x30\x20\x33\x26\x18\x25\x1b\x11\x2f\x24\x17\x35\ \x28\x19\x38\x2b\x1c\x2f\x23\x17\x25\x1b\x12\x25\x1c\x11\x35\x28\ \x1a\x3e\x2e\x1e\x59\x44\x2c\x6c\x52\x35\x42\x31\x1f\x4a\x37\x24\ \x73\x57\x3a\x76\x59\x3b\x4d\x3a\x25\x33\x26\x19\x2b\x20\x14\x4b\ \x39\x25\x86\x66\x46\x73\x57\x3b\x3e\x2e\x1e\x2a\x1f\x14\x2b\x21\ \x14\x32\x25\x18\x5a\x43\x2c\x8b\x6a\x48\x86\x66\x45\x31\x24\x17\ \x3d\x2e\x1f\x9b\x78\x53\x94\x72\x4e\x34\x27\x1a\x26\x1c\x12\x1f\ \x18\x0f\x34\x27\x1b\xa1\x7c\x56\x88\x68\x46\x39\x2c\x1c\x3d\x2f\ \x1f\x84\x64\x44\x87\x68\x47\x4d\x3b\x29\x2d\x22\x16\x34\x27\x19\ \x33\x25\x18\x27\x1d\x13\x31\x25\x18\x44\x33\x22\x34\x28\x19\x2e\ \x22\x16\x32\x25\x17\x32\x26\x17\x4b\x38\x25\x8b\x6a\x48\x78\x5c\ \x3f\x2f\x22\x16\x59\x43\x2d\x6d\x53\x39\x24\x1b\x11\x31\x26\x18\ \x38\x2a\x1b\x35\x27\x19\x3a\x2b\x1c\x3e\x2e\x1e\x36\x28\x1a\x30\ \x24\x17\x39\x2a\x1b\x37\x29\x1a\x37\x29\x1a\x3d\x2d\x1d\x45\x34\ \x22\x49\x37\x23\x45\x34\x21\x3f\x2f\x1e\x36\x28\x19\x39\x2a\x1b\ \x40\x30\x1f\x3f\x2f\x1e\x3b\x2d\x1c\x34\x27\x19\x37\x29\x1a\x36\ \x29\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x36\x28\x1a\x37\x29\x1a\x38\x2a\ \x1a\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x19\x30\x29\x21\x37\x37\x38\ \x4a\x4c\x4e\x23\x24\x25\x00\x00\x00\x00\x00\x00\x71\x74\x74\x81\ \x84\x86\x54\x56\x56\x3e\x3f\x42\x9d\xa0\xa2\x9f\xa2\xa4\x9e\xa2\ \xa4\x92\x95\x97\x5d\x5e\x63\x7e\x7f\x83\xa1\xa5\xa6\x9f\xa2\xa5\ \xa1\xa4\xa8\x94\x97\x9b\x6b\x6d\x6e\x66\x68\x69\xb1\xb2\xb5\xa7\ \xa8\xac\x00\x00\x00\xe2\xdd\xda\xe1\xdc\xda\xdf\xda\xd7\xdb\xd7\ \xd4\xd6\xd2\xcf\xc4\xba\xb1\x11\x0f\x0b\x00\x00\x00\x4d\x3b\x28\ \x31\x25\x18\x22\x1a\x10\x3a\x2b\x1c\x55\x3f\x29\x51\x3e\x28\x16\ \x10\x0b\x19\x13\x0d\x20\x18\x0f\x2a\x1f\x14\x30\x24\x17\x31\x24\ \x17\x33\x26\x18\x34\x27\x19\x42\x31\x20\x37\x29\x1b\x33\x26\x19\ \x33\x26\x18\x39\x2b\x1b\x37\x29\x1b\x33\x27\x19\x30\x24\x17\x33\ \x26\x19\x27\x1d\x12\x3e\x2f\x1e\x2b\x21\x15\x3a\x2b\x1c\x28\x1d\ \x13\x2c\x21\x15\x3d\x2e\x1f\x34\x27\x19\x35\x28\x1a\x3d\x2f\x1e\ \x3b\x2d\x1d\x28\x1e\x13\x39\x2c\x1d\x2c\x22\x16\x13\x0e\x08\x44\ \x34\x23\x6d\x54\x3a\x7e\x61\x43\x90\x6f\x4d\x3d\x2e\x1e\x39\x2b\ \x1c\x34\x27\x19\x32\x26\x19\x29\x1f\x14\x2b\x20\x15\x40\x30\x1f\ \x69\x4f\x35\x62\x4a\x30\x40\x30\x1f\x3b\x2c\x1c\x46\x35\x22\x65\ \x4c\x32\x62\x49\x31\x46\x34\x22\x2a\x1f\x13\x4e\x3a\x26\x87\x67\ \x45\x63\x4c\x33\x31\x24\x18\x25\x1c\x12\x27\x1d\x12\x24\x1c\x11\ \x44\x33\x21\x84\x65\x46\x98\x75\x51\x2c\x22\x16\x39\x2a\x1c\x9b\ \x77\x53\x94\x72\x4e\x3c\x2d\x1d\x33\x27\x19\x2a\x20\x14\x35\x28\ \x1a\xa5\x7f\x59\x88\x68\x47\x3d\x2f\x1f\x2f\x24\x17\x7c\x5f\x42\ \xa0\x7b\x55\x75\x5a\x3d\x3e\x2f\x1f\x35\x28\x19\x2e\x23\x17\x3c\ \x2e\x1e\x91\x70\x4f\x73\x59\x3d\x2c\x21\x15\x23\x1a\x10\x28\x1e\ \x13\x25\x1b\x12\x2e\x23\x16\x81\x63\x43\x97\x74\x50\x78\x5d\x40\ \x85\x65\x44\x65\x4d\x33\x2c\x20\x15\x36\x28\x1a\x32\x26\x18\x36\ \x28\x1a\x3b\x2d\x1d\x41\x31\x20\x39\x2b\x1b\x31\x25\x17\x33\x27\ \x19\x34\x27\x1a\x38\x2a\x1a\x35\x28\x19\x3c\x2d\x1d\x42\x31\x20\ \x45\x34\x22\x43\x32\x20\x40\x30\x1f\x3a\x2b\x1c\x3f\x2f\x1f\x45\ \x33\x21\x40\x30\x1f\x44\x33\x21\x3f\x2f\x1e\x33\x26\x18\x3e\x2f\ \x1e\x49\x37\x24\x35\x27\x19\x3b\x2c\x1d\x37\x29\x1b\x33\x26\x18\ \x3e\x2e\x1d\x41\x31\x1f\x2f\x27\x1f\x34\x35\x35\x45\x46\x48\x07\ \x07\x07\x00\x00\x00\x1a\x1b\x1b\x87\x8b\x8c\x80\x84\x84\x46\x48\ \x48\x80\x84\x86\x58\x5a\x5e\x94\x97\x99\xa3\xa6\xa7\x9b\x9e\xa1\ \x9c\x9e\xa2\x6a\x6b\x6f\x68\x68\x6c\x9c\x9e\xa1\xa3\xa6\xaa\xa1\ \xa4\xa8\x9b\x9e\xa1\x79\x7c\x7d\x5a\x5b\x5d\xac\xad\xb0\x00\x00\ \x00\xe2\xdf\xdd\xe2\xdf\xdc\xe0\xdc\xda\xdb\xd7\xd4\xd5\xd0\xce\ \xc4\xb2\xa2\x15\x11\x0d\x00\x00\x00\x3e\x30\x1f\x2f\x23\x16\x25\ \x1c\x12\x30\x24\x17\x3e\x2e\x1e\x3f\x2f\x1f\x1d\x15\x0d\x1a\x14\ \x0d\x20\x18\x10\x27\x1e\x13\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\ \x3c\x2d\x1d\x38\x2a\x1b\x2f\x23\x16\x2f\x22\x16\x2a\x20\x15\x31\ \x26\x18\x2c\x22\x15\x27\x1d\x13\x27\x1e\x13\x2f\x23\x16\x29\x1f\ \x14\x4d\x3b\x27\x31\x25\x18\x47\x36\x24\x62\x4c\x33\x59\x45\x2e\ \x59\x44\x2e\x31\x25\x18\x2f\x23\x16\x3b\x2c\x1c\x3f\x2f\x1f\x37\ \x29\x1a\x3d\x2e\x1e\x2a\x20\x15\x17\x11\x0b\x43\x34\x23\x9d\x7a\ \x56\xa9\x82\x5b\xae\x87\x5e\x49\x38\x26\x32\x26\x18\x41\x32\x21\ \x25\x1c\x12\x25\x1c\x12\x22\x1a\x10\x31\x25\x18\x41\x31\x1f\x3c\ \x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x3b\x2d\x1c\x64\x4b\x31\x6c\x52\ \x36\x54\x3f\x2a\x2f\x23\x16\x5a\x44\x2c\x81\x62\x42\x6e\x53\x38\ \x3a\x2c\x1d\x2b\x20\x14\x29\x1f\x13\x27\x1d\x12\x4a\x38\x25\x6b\ \x51\x37\x76\x5b\x3e\x33\x27\x19\x2e\x23\x16\x82\x64\x45\x7b\x5e\ \x3f\x3d\x2d\x1e\x2f\x23\x16\x3e\x2f\x1f\x6f\x55\x3b\x9c\x77\x53\ \x88\x68\x48\x38\x2a\x1c\x1d\x15\x0d\x57\x42\x2e\xa1\x7d\x57\xa2\ \x7e\x57\xa5\x80\x5a\x99\x77\x54\x9f\x7b\x57\xad\x86\x5d\xac\x84\ \x5c\x71\x56\x3b\x36\x29\x1b\x27\x1d\x13\x28\x1e\x13\x27\x1e\x13\ \x24\x1b\x12\x46\x35\x22\xa4\x7f\x58\x9f\x7a\x54\x97\x73\x4f\x6a\ \x51\x36\x28\x1e\x12\x2e\x23\x17\x30\x25\x17\x37\x2a\x1b\x3b\x2d\ \x1d\x3b\x2c\x1c\x3e\x2e\x1e\x3f\x2f\x1e\x36\x29\x1a\x2d\x22\x16\ \x30\x24\x17\x37\x2a\x1b\x38\x2a\x1a\x41\x31\x1f\x4a\x37\x24\x40\ \x30\x1f\x4a\x37\x24\x39\x2b\x1c\x37\x29\x1a\x3a\x2b\x1c\x3d\x2e\ \x1e\x39\x2b\x1c\x36\x29\x1a\x42\x31\x20\x42\x32\x20\x4a\x37\x23\ \x43\x32\x20\x3f\x2f\x1e\x49\x36\x24\x4b\x38\x25\x42\x31\x20\x3b\ \x2b\x1c\x31\x28\x1f\x38\x37\x37\x27\x28\x29\x02\x02\x02\x00\x00\ \x00\x52\x54\x54\x78\x7d\x7c\x6f\x73\x72\x58\x5b\x5b\x99\x9d\x9f\ \x7d\x80\x83\x5d\x5f\x63\x8e\x90\x92\xa4\xa7\xa7\xa1\xa4\xa5\xa4\ \xa7\xaa\x75\x77\x7b\x56\x56\x5c\xa8\xab\xaf\xa1\xa4\xa8\xa4\xa7\ \xab\xa4\xa7\xaa\x8c\x8f\x92\x58\x57\x5c\x00\x00\x00\xe5\xe0\xdf\ \xe3\xdf\xdd\xe1\xde\xdc\xdc\xd8\xd5\xd5\xd0\xcd\xc9\xb9\xaa\x1f\ \x19\x11\x01\x01\x00\x4c\x3a\x27\x31\x24\x18\x2d\x21\x15\x2e\x22\ \x16\x42\x31\x20\x46\x35\x22\x1b\x14\x0d\x17\x11\x0b\x1f\x17\x0e\ \x2b\x20\x15\x2a\x1f\x14\x27\x1d\x12\x2e\x23\x16\x30\x24\x17\x39\ \x2b\x1b\x3e\x2e\x1e\x41\x30\x1f\x33\x27\x19\x2d\x22\x15\x37\x29\ \x1a\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x40\x30\x20\ \x3a\x2c\x1d\x48\x37\x24\x78\x5b\x3e\x7f\x60\x42\x7c\x5f\x40\x37\ \x2a\x1b\x2b\x20\x15\x35\x28\x1a\x37\x29\x1b\x2e\x22\x16\x42\x32\ \x21\x3d\x2e\x1e\x1f\x17\x0f\x31\x25\x19\x85\x66\x47\x8c\x6c\x4a\ \x9e\x7a\x55\x47\x36\x24\x2d\x22\x15\x3f\x30\x1f\x35\x28\x19\x2b\ \x21\x15\x24\x1c\x12\x2a\x20\x14\x3b\x2c\x1d\x32\x25\x18\x37\x29\ \x1b\x3d\x2e\x1e\x51\x3d\x27\x5f\x47\x2f\x5e\x47\x2f\x63\x4a\x31\ \x36\x29\x1a\x4b\x38\x25\x67\x4d\x33\x6e\x53\x37\x66\x4d\x33\x46\ \x35\x23\x38\x2b\x1c\x4e\x3b\x28\x6f\x55\x39\x8d\x6b\x49\x65\x4d\ \x34\x3c\x2d\x1d\x33\x27\x18\x98\x75\x51\x81\x63\x44\x81\x63\x43\ \xa9\x82\x5a\xa8\x81\x5a\xa2\x7d\x56\x9f\x79\x53\x75\x5a\x3e\x24\ \x1b\x10\x25\x1c\x12\x22\x19\x0f\x4f\x3c\x29\x8f\x6e\x4d\xa3\x7e\ \x57\xa5\x7f\x58\xa5\x7f\x59\xac\x86\x5e\xa7\x82\x5b\x76\x5b\x3e\ \x2d\x22\x16\x30\x24\x17\x32\x26\x18\x2e\x23\x17\x32\x24\x18\x2b\ \x21\x15\x43\x32\x21\x65\x4d\x33\x6e\x53\x38\x54\x41\x2b\x32\x25\ \x18\x30\x24\x18\x36\x29\x1a\x36\x29\x1a\x36\x28\x19\x3e\x2e\x1e\ \x49\x36\x23\x4a\x38\x24\x43\x32\x21\x3b\x2c\x1d\x37\x29\x1a\x38\ \x29\x1a\x34\x27\x19\x39\x2b\x1c\x49\x37\x23\x45\x34\x22\x46\x35\ \x22\x3c\x2d\x1d\x3a\x2c\x1c\x38\x2a\x1b\x3e\x2e\x1e\x31\x25\x18\ \x3a\x2c\x1b\x42\x32\x20\x4b\x38\x25\x54\x3f\x29\x3e\x2e\x1e\x3f\ \x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3e\x2f\x1f\x34\x27\x19\x35\x2a\ \x1d\x3d\x3b\x39\x0b\x0b\x0c\x00\x00\x00\x0a\x0b\x0b\x74\x77\x78\ \x74\x77\x78\x44\x46\x47\x91\x95\x96\x95\x98\x9a\x98\x9b\x9d\x83\ \x86\x88\x5d\x5f\x62\x89\x8b\x8c\xa1\xa4\xa4\xa2\xa5\xa7\xa3\xa6\ \xaa\x89\x8a\x90\x4c\x4b\x51\x9a\x9b\x9e\xa4\xa7\xaa\xa5\xa8\xac\ \xa9\xab\xae\x96\x97\x9b\x00\x00\x00\xe5\xe0\xdf\xe4\xdf\xde\xe1\ \xdc\xda\xdd\xd8\xd6\xd6\xd1\xce\xc9\xb9\xa9\x2d\x24\x1b\x00\x00\ \x00\x33\x26\x1a\x24\x1b\x12\x27\x1d\x13\x3b\x2c\x1c\x44\x33\x22\ \x4a\x38\x23\x19\x13\x0c\x17\x12\x0b\x16\x11\x0b\x1c\x15\x0d\x1e\ \x17\x0e\x26\x1d\x12\x30\x23\x17\x2f\x23\x17\x38\x2a\x1b\x3e\x2e\ \x1e\x3d\x2e\x1d\x3e\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2f\x23\x16\ \x2c\x21\x15\x2d\x22\x16\x27\x1d\x13\x43\x32\x21\x37\x2a\x1b\x3b\ \x2d\x1d\x85\x66\x46\x8e\x6d\x4b\x89\x69\x48\x44\x34\x22\x28\x1d\ \x13\x3b\x2b\x1c\x43\x32\x20\x31\x25\x17\x44\x34\x22\x48\x36\x23\ \x36\x28\x19\x39\x2b\x1c\x82\x65\x45\x9f\x7b\x55\x99\x76\x51\x48\ \x37\x25\x29\x1f\x14\x5c\x47\x2f\x39\x2a\x1b\x34\x26\x19\x25\x1c\ \x12\x2d\x21\x15\x41\x31\x20\x3d\x2e\x1d\x3a\x2c\x1c\x3f\x2f\x1f\ \x4b\x38\x25\x68\x4e\x34\x69\x4f\x35\x5e\x47\x2f\x3d\x2d\x1d\x43\ \x32\x20\x5d\x46\x2e\x7c\x5e\x3f\x89\x68\x46\x91\x6f\x4b\x8d\x6b\ \x49\x8d\x6c\x49\x8d\x6b\x48\x81\x62\x43\x3d\x2e\x1e\x37\x29\x1b\ \x35\x28\x1b\x95\x73\x51\x89\x69\x48\x9d\x79\x54\x9d\x79\x54\x9b\ \x78\x53\x91\x6f\x4d\x65\x4c\x35\x30\x24\x17\x29\x1f\x14\x27\x1c\ \x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x46\x36\x24\x5f\x48\x30\ \x64\x4c\x33\x4e\x3b\x27\x34\x27\x18\x26\x1c\x12\x27\x1d\x13\x2d\ \x22\x15\x31\x25\x17\x36\x29\x1a\x3e\x2e\x1e\x3c\x2d\x1d\x2e\x23\ \x16\x29\x1e\x14\x2b\x20\x14\x27\x1e\x13\x2a\x1f\x14\x2b\x20\x14\ \x34\x27\x19\x33\x26\x18\x35\x28\x1a\x3d\x2d\x1d\x40\x30\x1e\x48\ \x36\x22\x47\x36\x22\x46\x34\x22\x46\x35\x22\x3e\x2e\x1d\x48\x37\ \x23\x47\x34\x22\x49\x37\x23\x48\x36\x23\x4a\x37\x24\x41\x31\x1f\ \x39\x2b\x1b\x33\x26\x19\x3e\x2f\x1e\x32\x26\x19\x34\x27\x19\x40\ \x30\x1e\x4e\x3a\x25\x5a\x44\x2c\x4a\x37\x24\x43\x32\x21\x3f\x2f\ \x1f\x34\x26\x19\x35\x27\x19\x2e\x22\x16\x32\x26\x1a\x2b\x28\x25\ \x04\x04\x04\x00\x00\x00\x39\x3a\x3a\x6d\x71\x72\x75\x78\x7a\x45\ \x46\x49\x95\x98\x9b\x94\x97\x9a\x95\x99\x9a\x9e\xa2\xa3\x91\x94\ \x96\x5b\x5c\x60\x88\x89\x8b\xa2\xa4\xa6\x9e\xa1\xa5\xa3\xa6\xab\ \x99\x9a\x9f\x48\x47\x4b\x93\x93\x97\xa4\xa6\xaa\xa7\xa8\xab\xac\ \xad\xaf\x00\x00\x00\xe5\xe0\xe0\xe3\xde\xdd\xe2\xdd\xdc\xde\xda\ \xd9\xd7\xd1\xd0\xd1\xca\xc4\x3d\x34\x2b\x03\x02\x01\x28\x1f\x14\ \x30\x25\x18\x24\x1b\x11\x40\x30\x1f\x49\x36\x24\x54\x3f\x29\x22\ \x1a\x10\x16\x11\x0a\x1a\x13\x0c\x1f\x18\x0f\x24\x1b\x11\x2c\x21\ \x15\x2e\x22\x16\x27\x1d\x12\x34\x27\x19\x3b\x2b\x1c\x32\x26\x18\ \x33\x26\x18\x37\x29\x1a\x35\x28\x19\x30\x23\x17\x27\x1d\x12\x2a\ \x20\x14\x28\x1e\x13\x37\x29\x1a\x37\x2a\x1b\x2f\x23\x17\x5e\x47\ \x30\x86\x67\x46\x7d\x60\x43\x45\x34\x22\x37\x29\x1b\x3f\x2f\x1e\ \x3d\x2e\x1e\x24\x1b\x11\x44\x33\x22\x4f\x3b\x28\x39\x2b\x1c\x33\ \x27\x19\x75\x5b\x3e\x89\x69\x48\x98\x75\x51\x50\x3d\x29\x2a\x20\ \x14\x47\x36\x23\x31\x25\x18\x39\x2b\x1c\x2f\x24\x17\x2d\x22\x16\ \x36\x28\x1a\x42\x32\x20\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\x1f\x6a\ \x4f\x34\x73\x56\x3a\x55\x40\x2a\x3f\x2f\x1e\x45\x34\x21\x41\x31\ \x1f\x61\x4a\x31\x87\x67\x46\x94\x71\x4e\x87\x67\x46\x8d\x6c\x4a\ \x64\x4d\x34\x2c\x21\x15\x20\x18\x0f\x24\x1a\x11\x4e\x3c\x28\x58\ \x43\x2e\x50\x3d\x2a\x44\x34\x23\x3e\x2e\x1e\x2d\x22\x15\x22\x19\ \x0f\x23\x1a\x11\x2b\x20\x15\x2a\x20\x14\x2d\x22\x16\x31\x25\x18\ \x2d\x21\x15\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x32\x25\x18\x2e\ \x22\x16\x28\x1e\x13\x26\x1d\x13\x29\x1e\x13\x2d\x22\x16\x30\x24\ \x17\x33\x26\x18\x3f\x30\x1e\x45\x34\x21\x3b\x2c\x1c\x39\x2b\x1b\ \x2c\x21\x16\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x2f\x23\x16\x2b\ \x1f\x14\x31\x24\x18\x3a\x2b\x1c\x37\x29\x1a\x37\x29\x1a\x42\x32\ \x20\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x3d\x2e\x1e\x41\x31\x1f\ \x3f\x2f\x1e\x42\x32\x20\x3f\x2f\x1f\x3c\x2d\x1d\x34\x26\x19\x35\ \x28\x1a\x3d\x2e\x1d\x3e\x2f\x1e\x3a\x2c\x1d\x4e\x3a\x26\x4d\x3a\ \x26\x46\x35\x22\x41\x30\x20\x46\x34\x21\x38\x2a\x1b\x3c\x2d\x1d\ \x3b\x2c\x1d\x2d\x21\x16\x3a\x2c\x1c\x1e\x1b\x16\x00\x00\x00\x00\ \x01\x01\x5e\x61\x62\x69\x6c\x6e\x49\x4a\x4c\x7f\x80\x83\x8e\x91\ \x95\x96\x99\x9d\x97\x99\x9e\x9c\x9f\xa2\xa0\xa2\xa3\x9a\x9b\x9e\ \x5c\x5e\x63\x7e\x81\x83\xa0\xa3\xa6\xa3\xa5\xa9\xa3\xa5\xaa\xa5\ \xa7\xa9\x53\x54\x57\x84\x83\x87\xa6\xa8\xa9\xaa\xac\xad\x00\x00\ \x00\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\xde\xda\xd9\xd8\xd4\xd3\ \xcf\xca\xca\x47\x3e\x35\x03\x03\x02\x18\x13\x0c\x2f\x23\x17\x18\ \x12\x0b\x2b\x20\x14\x36\x28\x19\x44\x33\x20\x1c\x15\x0d\x11\x0d\ \x08\x15\x10\x0a\x1d\x16\x0e\x24\x1b\x11\x2f\x23\x17\x32\x25\x18\ \x29\x1f\x14\x33\x27\x19\x39\x2b\x1c\x37\x2a\x1b\x2f\x23\x16\x36\ \x28\x1a\x2f\x24\x17\x2d\x22\x16\x31\x25\x17\x26\x1c\x12\x24\x1c\ \x11\x35\x28\x1a\x40\x31\x21\x31\x25\x18\x82\x63\x44\x69\x50\x37\ \x70\x55\x3a\x40\x30\x1f\x36\x28\x19\x38\x2a\x1b\x39\x2a\x1b\x20\ \x18\x0f\x43\x33\x22\x4e\x3c\x27\x34\x27\x19\x2b\x20\x14\x73\x58\ \x3c\x87\x67\x48\x83\x64\x46\x44\x34\x23\x26\x1c\x12\x44\x34\x23\ \x33\x26\x18\x37\x29\x1a\x36\x28\x1a\x30\x24\x17\x2d\x21\x15\x36\ \x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x3d\x2d\x1d\x6e\x52\x37\x79\x5c\ \x3d\x52\x3e\x29\x32\x26\x18\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\x1c\ \x34\x27\x19\x38\x2a\x1a\x42\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x36\ \x28\x1a\x2b\x21\x15\x26\x1d\x12\x1d\x15\x0d\x1b\x14\x0d\x23\x1a\ \x10\x1b\x14\x0d\x21\x19\x10\x21\x19\x10\x23\x1b\x11\x28\x1e\x14\ \x29\x1f\x14\x31\x24\x18\x2e\x23\x17\x31\x25\x18\x29\x1e\x13\x2b\ \x20\x14\x31\x24\x18\x3b\x2c\x1c\x39\x2a\x1b\x31\x24\x18\x2e\x23\ \x16\x37\x2a\x1b\x29\x20\x14\x27\x1e\x13\x26\x1c\x12\x32\x25\x18\ \x3d\x2d\x1d\x3c\x2d\x1d\x39\x2b\x1b\x37\x29\x1a\x31\x25\x18\x2d\ \x22\x16\x2f\x23\x16\x30\x24\x17\x34\x27\x19\x36\x28\x1a\x33\x26\ \x18\x33\x26\x18\x35\x28\x1a\x39\x2b\x1b\x42\x31\x1f\x3e\x2e\x1e\ \x36\x28\x19\x35\x28\x1a\x3d\x2d\x1d\x39\x2a\x1c\x3b\x2c\x1d\x41\ \x31\x1f\x4b\x38\x24\x4d\x3a\x26\x43\x32\x21\x36\x29\x1a\x3b\x2c\ \x1c\x3c\x2d\x1d\x36\x28\x1a\x3c\x2d\x1e\x36\x29\x1b\x41\x31\x1f\ \x3d\x2e\x1e\x45\x34\x22\x45\x34\x22\x48\x36\x23\x46\x35\x21\x33\ \x27\x18\x30\x24\x17\x13\x0f\x0c\x00\x00\x00\x22\x23\x23\x5b\x5e\ \x5e\x6c\x6f\x6f\x37\x38\x39\x94\x97\x99\x8d\x8f\x93\x97\x99\x9d\ \x9b\x9e\xa1\x9c\x9e\xa2\x9d\x9f\xa1\x9e\x9f\xa2\xa8\xa9\xae\x5c\ \x5f\x63\x79\x7b\x7f\x99\x9b\x9f\xa5\xa7\xaa\xa3\xa5\xa6\xa9\xaa\ \xab\x6c\x6b\x6e\x6e\x6d\x6f\xa6\xa6\xa8\x00\x00\x00\xe5\xe1\xe0\ \xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\xdb\xd8\xd6\xd5\xce\xc4\xbb\x4d\ \x3e\x2d\x05\x04\x02\x18\x12\x0b\x39\x2c\x1c\x24\x1b\x11\x35\x28\ \x1a\x48\x36\x23\x52\x3e\x28\x29\x1e\x13\x1b\x14\x0d\x19\x13\x0c\ \x1e\x17\x0f\x26\x1d\x12\x2e\x22\x16\x2c\x21\x15\x29\x1f\x14\x2e\ \x23\x16\x32\x25\x18\x31\x24\x18\x37\x29\x1a\x35\x28\x19\x2a\x20\ \x14\x2a\x20\x14\x32\x25\x17\x33\x26\x18\x31\x24\x17\x35\x27\x19\ \x3c\x2e\x1e\x2d\x22\x16\x90\x6f\x4c\x7c\x5e\x40\x7a\x5c\x3f\x49\ \x37\x25\x3a\x2b\x1d\x40\x30\x1f\x3b\x2c\x1c\x21\x19\x10\x36\x29\ \x1b\x4e\x3b\x27\x4a\x38\x25\x3e\x30\x1f\x7a\x5e\x41\x93\x71\x4f\ \xa8\x82\x5c\x67\x4f\x36\x23\x1a\x11\x3f\x30\x20\x29\x20\x13\x34\ \x27\x19\x33\x26\x18\x32\x25\x18\x3a\x2b\x1c\x37\x29\x1b\x3d\x2e\ \x1d\x37\x29\x1a\x45\x33\x21\x5d\x46\x2d\x68\x4e\x33\x4d\x3a\x26\ \x35\x27\x19\x37\x29\x1a\x3c\x2d\x1d\x3c\x2c\x1d\x35\x28\x1a\x34\ \x27\x19\x36\x28\x19\x38\x29\x1b\x37\x2a\x1b\x2f\x23\x16\x2d\x22\ \x15\x29\x1f\x14\x30\x24\x17\x20\x18\x10\x29\x1f\x14\x24\x1b\x12\ \x20\x18\x10\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x2e\x23\x17\x2b\ \x20\x15\x2f\x23\x17\x2c\x21\x15\x28\x1f\x13\x25\x1d\x12\x2f\x23\ \x16\x37\x29\x1a\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x30\x24\x17\ \x2f\x23\x17\x26\x1d\x12\x29\x1f\x13\x34\x27\x19\x40\x2f\x1e\x3e\ \x2f\x1f\x3c\x2d\x1d\x3e\x2e\x1e\x47\x36\x23\x3c\x2d\x1d\x34\x26\ \x19\x36\x28\x19\x36\x28\x1a\x36\x28\x1a\x2f\x23\x16\x2d\x21\x16\ \x31\x24\x17\x36\x29\x1a\x35\x28\x1a\x2f\x23\x16\x31\x25\x17\x37\ \x29\x1b\x40\x30\x1f\x43\x32\x21\x46\x35\x23\x49\x37\x23\x4b\x38\ \x24\x51\x3d\x28\x4f\x3b\x26\x3a\x2c\x1c\x38\x2a\x1b\x3f\x2f\x1f\ \x34\x27\x19\x3b\x2b\x1c\x44\x33\x21\x4a\x37\x24\x41\x31\x20\x45\ \x34\x22\x38\x2b\x1b\x30\x24\x17\x35\x27\x1a\x32\x25\x18\x33\x26\ \x18\x14\x0f\x0a\x00\x00\x00\x45\x48\x47\x5c\x60\x5f\x42\x45\x44\ \x62\x65\x65\x88\x8b\x8d\x8f\x92\x96\x96\x99\x9d\x97\x99\x9d\x9d\ \x9d\xa2\x9d\x9f\xa3\x9c\x9e\xa1\xa2\xa4\xa8\xaa\xad\xb1\x6d\x6e\ \x73\x6d\x6e\x73\x95\x97\x9b\xa8\xab\xac\xa6\xa5\xa7\xac\xab\xac\ \x82\x82\x83\x60\x5f\x62\x00\x00\x00\xe5\xe0\xdf\xe5\xe0\xdf\xe2\ \xde\xdd\xdf\xdc\xdb\xda\xd7\xd6\xd2\xcd\xc9\x67\x5b\x51\x05\x04\ \x03\x12\x0e\x08\x48\x36\x24\x25\x1c\x12\x30\x24\x17\x40\x30\x1f\ \x54\x3f\x29\x30\x24\x17\x19\x13\x0c\x23\x1a\x11\x23\x1b\x11\x22\ \x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2a\x20\ \x14\x2f\x24\x17\x35\x28\x1a\x2e\x22\x16\x25\x1c\x11\x2f\x24\x16\ \x30\x24\x17\x2f\x23\x16\x30\x23\x17\x3f\x30\x1e\x46\x36\x22\x3c\ \x2d\x1d\x90\x6f\x4c\x78\x5b\x3e\x8e\x6c\x4a\x7e\x60\x43\x7a\x5d\ \x40\x75\x59\x3c\x45\x33\x22\x20\x18\x0f\x27\x1e\x13\x71\x58\x3c\ \xa1\x7d\x57\xa2\x7d\x57\x96\x74\x50\x96\x73\x50\xaa\x84\x5d\x74\ \x59\x3e\x26\x1d\x13\x49\x37\x25\x2a\x20\x14\x2d\x22\x15\x36\x28\ \x1a\x33\x26\x19\x46\x34\x22\x42\x32\x20\x44\x33\x21\x37\x29\x1a\ \x42\x31\x20\x52\x3e\x28\x5a\x44\x2c\x51\x3d\x27\x3c\x2d\x1d\x3d\ \x2e\x1e\x3a\x2c\x1c\x35\x27\x19\x32\x25\x17\x2a\x20\x14\x2d\x22\ \x15\x2d\x22\x16\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2a\x20\x14\ \x25\x1c\x12\x20\x17\x0f\x20\x18\x0f\x1f\x18\x0f\x24\x1b\x12\x27\ \x1d\x13\x28\x1d\x13\x2a\x1f\x14\x2e\x22\x16\x28\x1e\x14\x2d\x22\ \x16\x32\x25\x18\x32\x25\x18\x2d\x22\x16\x31\x25\x17\x3a\x2c\x1c\ \x34\x27\x19\x31\x24\x17\x2e\x22\x16\x30\x23\x17\x31\x24\x17\x2a\ \x20\x14\x29\x1f\x14\x30\x24\x17\x31\x25\x18\x33\x26\x19\x3a\x2b\ \x1c\x39\x2b\x1b\x3a\x2b\x1c\x48\x36\x23\x3e\x2f\x1e\x3e\x2e\x1e\ \x43\x32\x20\x3e\x2f\x1e\x37\x29\x1a\x34\x26\x19\x34\x27\x19\x34\ \x27\x19\x36\x28\x1a\x35\x27\x1a\x35\x28\x1a\x43\x32\x20\x42\x31\ \x20\x3c\x2c\x1c\x37\x29\x1a\x3b\x2c\x1c\x48\x36\x23\x4e\x3a\x26\ \x4d\x39\x25\x41\x30\x1f\x3e\x2f\x1e\x38\x2a\x1b\x36\x28\x1a\x3a\ \x2c\x1c\x3d\x2e\x1d\x3e\x2f\x1e\x48\x36\x23\x41\x31\x20\x3c\x2d\ \x1d\x39\x2b\x1c\x33\x26\x18\x2e\x22\x16\x41\x30\x20\x1d\x16\x0e\ \x12\x13\x14\x4b\x4d\x4d\x5c\x60\x5f\x2a\x2c\x2c\x7e\x82\x83\x81\ \x84\x86\x91\x91\x96\x95\x97\x9a\x98\x9b\x9f\x9a\x9d\xa0\x9e\xa0\ \xa4\x9f\xa1\xa5\xa1\xa4\xa8\xa1\xa4\xa8\xb0\xb4\xb8\x80\x80\x85\ \x65\x64\x6a\x8e\x8f\x92\xaa\xa9\xaa\xab\xab\xab\xae\xae\xae\x97\ \x97\x98\x00\x00\x00\xe4\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\ \xdb\xdb\xd7\xd6\xd2\xcf\xcc\x6d\x5d\x4c\x06\x05\x03\x0a\x08\x05\ \x51\x3d\x29\x32\x25\x18\x2f\x23\x16\x37\x29\x1a\x41\x31\x1f\x2d\ \x22\x16\x15\x10\x0a\x2b\x21\x14\x2c\x21\x15\x30\x24\x17\x2b\x20\ \x14\x27\x1e\x12\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x2b\x21\x14\ \x2c\x21\x15\x2a\x1f\x14\x29\x1f\x14\x2d\x22\x15\x2b\x20\x14\x24\ \x1b\x11\x2c\x21\x16\x3f\x2f\x1e\x56\x41\x2b\x3b\x2c\x1c\x84\x66\ \x45\x81\x61\x42\x8d\x6c\x4b\x9d\x78\x54\x96\x73\x4f\x88\x68\x47\ \x58\x43\x2c\x28\x1e\x13\x2d\x22\x15\x7c\x5f\x42\xa8\x82\x5b\x92\ \x71\x4e\x94\x72\x4f\x90\x6f\x4d\xa2\x7d\x57\x7c\x5f\x41\x2f\x24\ \x17\x3a\x2c\x1d\x23\x1a\x11\x24\x1c\x12\x28\x1e\x14\x34\x27\x19\ \x3e\x2e\x1e\x45\x34\x22\x3d\x2e\x1e\x37\x2a\x1a\x42\x31\x20\x5f\ \x47\x2e\x51\x3c\x27\x44\x33\x21\x3a\x2c\x1c\x39\x2b\x1b\x36\x29\ \x1a\x34\x26\x19\x35\x27\x19\x29\x1f\x13\x25\x1c\x12\x2e\x23\x16\ \x33\x26\x18\x33\x26\x18\x2d\x22\x16\x32\x26\x18\x2c\x21\x16\x26\ \x1c\x12\x2c\x21\x15\x28\x1e\x13\x1e\x17\x0e\x20\x18\x0f\x26\x1c\ \x12\x24\x1b\x11\x2a\x20\x14\x2c\x21\x15\x33\x26\x19\x31\x25\x18\ \x30\x24\x17\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x38\x2a\x1b\x3e\ \x2f\x1e\x35\x28\x19\x2b\x21\x15\x2b\x21\x15\x2d\x22\x16\x38\x29\ \x1b\x2f\x23\x17\x33\x26\x18\x31\x25\x17\x32\x26\x18\x37\x2a\x1b\ \x32\x25\x18\x30\x24\x17\x34\x27\x19\x34\x27\x19\x3b\x2c\x1d\x42\ \x31\x20\x3a\x2c\x1c\x3f\x2f\x1e\x46\x35\x22\x45\x33\x21\x3c\x2d\ \x1d\x38\x2a\x1b\x3c\x2d\x1d\x47\x35\x23\x43\x32\x20\x3e\x2e\x1e\ \x38\x2a\x1a\x36\x29\x1a\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x3f\ \x2f\x1e\x3d\x2e\x1d\x34\x28\x19\x37\x29\x1a\x35\x28\x19\x33\x27\ \x19\x38\x2b\x1b\x40\x30\x1e\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\ \x34\x27\x19\x2a\x1f\x14\x3f\x30\x1f\x22\x1a\x11\x2c\x2d\x2c\x4d\ \x4f\x4f\x45\x47\x47\x4d\x4e\x50\x77\x7a\x7c\x7e\x81\x84\x90\x91\ \x94\x96\x98\x9c\x94\x96\x9a\x9c\x9e\xa2\xa1\xa2\xa6\x9f\xa1\xa5\ \x9e\xa1\xa5\xa5\xa7\xac\xa3\xa5\xaa\xaa\xac\xaf\x95\x96\x9a\x5f\ \x5f\x63\x80\x80\x81\xa6\xa6\xa7\xb1\xb1\xb1\xad\xad\xae\x00\x00\ \x00\xe4\xdf\xde\xe4\xdf\xdd\xe4\xdf\xde\xe1\xdc\xdb\xda\xd7\xd6\ \xd3\xce\xca\x73\x5e\x49\x07\x06\x04\x09\x06\x04\x40\x31\x20\x31\ \x25\x18\x24\x1b\x11\x2e\x23\x16\x42\x32\x20\x34\x27\x19\x16\x11\ \x0b\x2b\x20\x15\x2e\x23\x16\x37\x29\x1a\x30\x24\x17\x2f\x24\x17\ \x31\x25\x17\x2f\x24\x16\x33\x26\x18\x2d\x22\x15\x33\x26\x19\x2f\ \x23\x16\x25\x1c\x12\x26\x1d\x12\x23\x1a\x10\x24\x1b\x11\x2c\x21\ \x15\x39\x2b\x1c\x52\x3d\x28\x3f\x30\x1f\x89\x69\x49\x8c\x6b\x48\ \x88\x69\x47\x98\x75\x51\x8b\x6b\x4a\x8e\x6d\x4b\x5d\x47\x30\x25\ \x1b\x11\x27\x1d\x12\x78\x5c\x40\xad\x86\x5e\x8a\x6a\x49\x91\x70\ \x4d\x7c\x60\x42\x8e\x6d\x4c\x87\x68\x48\x3a\x2c\x1c\x3c\x2d\x1d\ \x1e\x16\x0e\x1f\x18\x0f\x25\x1c\x12\x31\x25\x18\x33\x26\x18\x3c\ \x2d\x1d\x38\x2b\x1b\x37\x29\x1a\x4a\x37\x24\x70\x55\x37\x56\x40\ \x2a\x3e\x2e\x1e\x31\x25\x17\x30\x24\x17\x2e\x23\x16\x2e\x23\x17\ \x2f\x23\x16\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x32\x26\x18\x33\ \x26\x18\x2e\x22\x15\x33\x27\x19\x3e\x2e\x1e\x34\x27\x19\x35\x27\ \x19\x2f\x23\x16\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x26\x1c\x12\ \x28\x1e\x13\x2a\x1f\x14\x29\x1f\x13\x2c\x22\x15\x2a\x20\x14\x2f\ \x23\x17\x31\x25\x18\x2d\x22\x16\x34\x27\x19\x39\x2b\x1b\x34\x27\ \x19\x2f\x24\x17\x2c\x21\x15\x2f\x23\x16\x48\x36\x23\x37\x2a\x1b\ \x38\x2a\x1b\x3b\x2c\x1c\x38\x2a\x1b\x39\x2b\x1b\x33\x26\x19\x2d\ \x22\x16\x2d\x21\x15\x31\x24\x17\x35\x28\x1a\x3a\x2b\x1c\x3d\x2e\ \x1e\x42\x31\x20\x4b\x38\x24\x47\x35\x23\x3e\x2e\x1e\x39\x2b\x1b\ \x38\x2a\x1b\x41\x31\x20\x43\x33\x20\x44\x33\x21\x37\x29\x1a\x32\ \x26\x18\x32\x26\x19\x3b\x2c\x1c\x3b\x2c\x1c\x41\x31\x1f\x41\x31\ \x20\x3d\x2e\x1d\x3c\x2d\x1d\x36\x28\x1a\x31\x24\x17\x30\x24\x17\ \x39\x2b\x1c\x39\x2b\x1b\x35\x28\x19\x31\x25\x17\x2e\x22\x16\x26\ \x1d\x12\x32\x26\x19\x1f\x19\x12\x37\x39\x39\x4f\x52\x52\x2a\x2c\ \x2c\x6b\x6e\x6f\x74\x76\x79\x84\x86\x89\x8e\x90\x94\x99\x9a\x9d\ \x96\x99\x9d\x9f\xa2\xa6\x9f\xa2\xa6\x9d\xa0\xa4\x9d\xa1\xa5\xa4\ \xa6\xaa\xa3\xa5\xa9\xa8\xa9\xad\xae\xaf\xb3\xa3\xa6\xa7\x70\x71\ \x72\x7a\x7a\x7a\x9d\x9d\x9d\xb1\xb1\xb2\x00\x00\x00\xe6\xe1\xe0\ \xe5\xe0\xde\xe4\xdf\xde\xe2\xde\xdd\xda\xd6\xd6\xd4\xce\xcb\x84\ \x73\x61\x08\x06\x04\x04\x03\x02\x34\x27\x19\x2e\x22\x16\x29\x1f\ \x14\x34\x27\x19\x43\x32\x20\x33\x26\x18\x11\x0d\x08\x29\x1f\x14\ \x2a\x20\x14\x2d\x22\x15\x2f\x23\x17\x34\x27\x19\x37\x29\x1a\x35\ \x28\x19\x35\x28\x19\x34\x27\x19\x36\x29\x1a\x2d\x22\x16\x29\x1f\ \x14\x26\x1d\x12\x22\x1a\x10\x28\x1d\x13\x2e\x23\x16\x3b\x2c\x1d\ \x52\x3e\x29\x3e\x2e\x1e\x81\x63\x44\x8c\x6b\x49\x92\x70\x4c\x99\ \x76\x51\x89\x69\x48\x8a\x69\x48\x65\x4c\x34\x2a\x1f\x14\x23\x1a\ \x10\x6d\x54\x3a\xa8\x82\x5b\x96\x73\x50\x8c\x6c\x4b\x98\x75\x52\ \xa0\x7c\x56\x95\x73\x50\x36\x29\x1a\x42\x32\x21\x2a\x20\x14\x1e\ \x17\x0e\x23\x1b\x11\x2d\x21\x15\x30\x24\x17\x38\x2a\x1b\x3a\x2c\ \x1c\x38\x2a\x1b\x50\x3c\x27\x71\x55\x39\x54\x3f\x29\x44\x33\x21\ \x35\x28\x19\x33\x26\x19\x3a\x2c\x1c\x34\x27\x19\x2d\x21\x15\x2a\ \x20\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x2f\x23\x16\x2c\x21\ \x15\x2f\x24\x17\x34\x27\x19\x30\x24\x17\x2b\x21\x14\x2a\x20\x14\ \x25\x1d\x12\x20\x18\x0f\x22\x19\x10\x25\x1c\x12\x23\x1a\x11\x24\ \x1b\x11\x22\x19\x10\x27\x1e\x13\x27\x1d\x13\x2c\x21\x15\x32\x26\ \x18\x34\x27\x19\x35\x27\x19\x35\x28\x19\x32\x25\x19\x31\x25\x18\ \x2d\x21\x15\x35\x28\x19\x3f\x2f\x1e\x3a\x2c\x1c\x3d\x2e\x1d\x40\ \x30\x1f\x43\x32\x20\x3c\x2d\x1c\x3a\x2c\x1c\x34\x26\x19\x30\x23\ \x17\x2e\x23\x16\x35\x28\x1a\x38\x2a\x1b\x3a\x2c\x1c\x42\x31\x20\ \x44\x32\x20\x3f\x30\x1e\x3b\x2c\x1c\x33\x26\x19\x35\x28\x1a\x38\ \x2a\x1b\x38\x2a\x1b\x3d\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2b\x21\ \x15\x29\x1f\x14\x2e\x23\x16\x38\x2a\x1b\x37\x29\x1a\x46\x34\x21\ \x3f\x30\x1f\x36\x29\x1a\x33\x26\x19\x31\x24\x18\x3c\x2d\x1d\x3b\ \x2c\x1c\x38\x2a\x1b\x33\x27\x18\x33\x26\x18\x27\x1d\x12\x27\x1e\ \x13\x29\x22\x1a\x3a\x3b\x3c\x3e\x40\x41\x3d\x3f\x3f\x69\x6c\x6d\ \x75\x77\x7b\x83\x86\x88\x8f\x91\x93\x96\x97\x9b\x99\x9a\x9e\x9f\ \xa1\xa5\x9e\xa0\xa3\xa0\xa3\xa6\xa4\xa7\xa9\xa3\xa6\xa8\xa5\xa7\ \xaa\xa7\xa8\xab\xab\xac\xb0\xa8\xaa\xab\xb0\xb2\xb3\x80\x80\x81\ \x76\x74\x75\x8f\x8d\x8f\x00\x00\x00\xe6\xe1\xe0\xe5\xe0\xdf\xe4\ \xe0\xdf\xe2\xde\xdd\xdb\xd7\xd6\xd3\xcf\xcf\x94\x84\x72\x09\x07\ \x05\x04\x03\x02\x2d\x22\x16\x30\x23\x17\x32\x26\x18\x35\x28\x1a\ \x3a\x2b\x1c\x2f\x23\x16\x16\x11\x0a\x20\x18\x0f\x24\x1c\x12\x27\ \x1e\x13\x2b\x20\x15\x33\x26\x18\x3c\x2d\x1d\x3b\x2c\x1c\x35\x28\ \x1a\x36\x28\x1a\x2c\x21\x16\x28\x1e\x13\x26\x1c\x12\x2d\x21\x15\ \x2a\x1f\x13\x22\x19\x10\x26\x1c\x12\x2c\x21\x15\x50\x3c\x28\x31\ \x25\x18\x6b\x52\x38\x7f\x61\x41\x83\x64\x44\x94\x72\x4f\x85\x66\ \x46\x87\x67\x46\x68\x4f\x35\x31\x24\x17\x28\x1e\x13\x55\x41\x2c\ \x8e\x6e\x4c\xa1\x7d\x57\xa1\x7c\x57\x9a\x76\x53\x9f\x7b\x56\x96\ \x73\x50\x35\x29\x1a\x44\x33\x22\x3f\x30\x1f\x2f\x24\x17\x2a\x20\ \x14\x2d\x21\x15\x32\x26\x18\x2f\x23\x17\x38\x2b\x1b\x40\x30\x1f\ \x59\x43\x2d\x7d\x5f\x40\x64\x4b\x32\x56\x40\x2a\x48\x36\x22\x4e\ \x3b\x26\x52\x3d\x29\x3a\x2b\x1c\x30\x24\x17\x2c\x21\x15\x2c\x22\ \x16\x29\x1f\x13\x2d\x22\x16\x27\x1e\x13\x2a\x1f\x14\x2e\x23\x17\ \x2e\x23\x16\x30\x24\x17\x2f\x23\x16\x26\x1d\x13\x29\x1f\x14\x23\ \x1a\x11\x23\x1a\x11\x1f\x17\x0f\x24\x1a\x11\x20\x18\x0f\x1e\x17\ \x0f\x23\x1a\x11\x24\x1b\x11\x25\x1c\x12\x28\x1e\x14\x2f\x23\x16\ \x38\x29\x1b\x39\x2b\x1c\x2f\x23\x16\x2f\x23\x16\x29\x1f\x14\x29\ \x1f\x14\x2b\x20\x14\x37\x29\x1b\x3d\x2e\x1d\x37\x2a\x1b\x3a\x2c\ \x1c\x3c\x2c\x1c\x41\x30\x1f\x36\x28\x1a\x36\x28\x1a\x2d\x22\x15\ \x32\x25\x18\x37\x29\x1a\x32\x26\x18\x35\x28\x1a\x3a\x2b\x1c\x3e\ \x2e\x1e\x35\x27\x19\x2c\x21\x15\x2c\x21\x15\x2c\x22\x15\x35\x28\ \x19\x35\x28\x1a\x3b\x2c\x1d\x40\x30\x1f\x33\x27\x19\x2d\x21\x15\ \x33\x26\x19\x30\x24\x17\x32\x26\x18\x3d\x2d\x1d\x3e\x2f\x1e\x3a\ \x2b\x1b\x34\x27\x19\x33\x26\x19\x3c\x2d\x1d\x3f\x2f\x1e\x3b\x2c\ \x1c\x37\x29\x1a\x3a\x2b\x1c\x3a\x2c\x1c\x36\x28\x1a\x3b\x30\x25\ \x42\x42\x41\x21\x22\x23\x56\x58\x5a\x67\x69\x6b\x76\x79\x7c\x85\ \x88\x8b\x8d\x8f\x91\x95\x96\x9b\x9b\x9c\x9f\x9f\xa1\xa3\x9e\xa1\ \xa2\xa2\xa3\xa5\xaa\xab\xad\xa5\xa7\xa9\xa7\xa9\xaa\x9f\xa1\xa2\ \xa6\xa7\xa9\xaa\xab\xad\xa7\xa9\xaa\xad\xaf\xb0\x92\x93\x95\x7a\ \x7a\x7d\x00\x00\x00\xe6\xe0\xdd\xe7\xe2\xdf\xe6\xe1\xdf\xe3\xde\ \xdd\xde\xda\xd9\xd5\xd1\xd1\xa6\x9b\x91\x0a\x09\x06\x02\x01\x00\ \x25\x1c\x12\x2c\x21\x15\x3a\x2c\x1c\x3c\x2d\x1d\x30\x24\x17\x2e\ \x22\x16\x19\x12\x0c\x24\x1a\x11\x23\x1a\x11\x29\x1f\x14\x2c\x21\ \x15\x37\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1e\x39\x2b\x1c\x33\x26\x19\ \x2c\x22\x15\x29\x1f\x14\x24\x1b\x11\x32\x26\x18\x30\x23\x16\x1f\ \x17\x0f\x27\x1e\x12\x22\x1a\x10\x49\x38\x25\x2f\x23\x16\x6b\x51\ \x37\x8d\x6b\x49\x90\x6e\x4c\x93\x72\x4f\x82\x64\x45\x82\x64\x44\ \x6f\x55\x39\x30\x24\x17\x2c\x21\x15\x5b\x45\x2f\x8b\x6b\x4b\x99\ \x76\x52\xa7\x81\x5a\x89\x69\x49\xa2\x7d\x57\xa6\x81\x5b\x3b\x2c\ \x1d\x3d\x2e\x1d\x41\x30\x20\x30\x24\x17\x28\x1e\x14\x2b\x20\x15\ \x30\x25\x17\x2d\x22\x16\x3e\x2f\x1e\x41\x31\x1f\x49\x37\x23\x70\ \x55\x39\x8a\x69\x47\x6a\x50\x35\x66\x4c\x32\x6d\x52\x36\x59\x43\ \x2c\x36\x29\x1a\x2e\x22\x16\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\ \x2c\x21\x15\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2c\x21\x15\x29\ \x1f\x13\x2c\x21\x15\x2c\x21\x14\x31\x24\x17\x2c\x21\x15\x25\x1c\ \x12\x22\x1a\x10\x26\x1c\x11\x25\x1b\x12\x28\x1e\x14\x26\x1c\x12\ \x24\x1b\x11\x21\x19\x10\x25\x1b\x12\x2e\x22\x16\x32\x25\x18\x2e\ \x22\x16\x2b\x20\x14\x31\x25\x17\x2d\x21\x16\x28\x1e\x13\x23\x1a\ \x11\x2e\x21\x16\x33\x26\x19\x31\x25\x18\x39\x2a\x1b\x3a\x2b\x1c\ \x39\x2a\x1c\x32\x25\x18\x33\x26\x18\x29\x1e\x14\x27\x1e\x13\x2d\ \x22\x15\x28\x1e\x13\x2d\x22\x16\x37\x29\x1b\x3d\x2e\x1d\x35\x28\ \x19\x33\x26\x18\x32\x26\x18\x34\x27\x19\x37\x29\x1a\x35\x27\x19\ \x37\x29\x1a\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x42\x31\x20\x3b\ \x2d\x1d\x35\x28\x1a\x3c\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1e\x3b\x2c\ \x1c\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1c\x38\x2a\x1b\x38\x2a\x1b\ \x3f\x2f\x1f\x3d\x2e\x1e\x35\x28\x19\x42\x36\x29\x3d\x3b\x39\x2a\ \x2b\x2c\x5c\x5d\x61\x67\x69\x6c\x78\x7a\x7d\x81\x84\x87\x8b\x8e\ \x91\x9b\x9c\xa0\x9f\x9f\xa2\xa0\xa3\xa4\xa0\xa3\xa4\xa4\xa6\xa7\ \xa8\xa9\xaa\xa4\xa6\xa7\xa7\xa9\xaa\x9f\xa1\xa2\xa8\xaa\xab\xa8\ \xaa\xab\xa7\xa7\xa8\xad\xae\xaf\xad\xaf\xb0\xa2\xa4\xa6\x00\x00\ \x00\xbb\xb5\xb1\xc5\xbb\xb7\xcd\xc2\xbe\xd0\xc8\xc3\xd2\xca\xc8\ \xcf\xca\xc8\xb0\xa0\x92\x0b\x09\x06\x01\x01\x00\x2b\x20\x15\x32\ \x25\x18\x42\x31\x20\x43\x32\x20\x43\x32\x20\x3b\x2c\x1d\x21\x19\ \x0f\x26\x1c\x12\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\x36\x29\x1a\ \x3c\x2c\x1d\x3d\x2e\x1e\x40\x30\x1f\x41\x30\x1f\x3d\x2d\x1d\x37\ \x29\x1b\x30\x24\x17\x3e\x2e\x1e\x30\x24\x17\x2d\x21\x15\x2c\x21\ \x15\x28\x1f\x13\x48\x36\x24\x34\x27\x19\x67\x4f\x36\xaf\x88\x60\ \xb0\x88\x60\xad\x86\x5e\xa3\x7f\x59\x9f\x7b\x56\x8a\x6a\x49\x51\ \x3d\x29\x48\x36\x24\x71\x57\x3b\x96\x73\x50\x92\x70\x4e\x91\x6f\ \x4d\x7d\x5f\x41\x83\x65\x44\x7f\x62\x43\x47\x35\x23\x31\x25\x17\ \x31\x25\x17\x2b\x21\x15\x23\x1a\x11\x2c\x21\x15\x35\x27\x19\x34\ \x26\x19\x40\x2f\x1e\x4a\x37\x24\x45\x34\x21\x4f\x3b\x26\x80\x62\ \x42\x94\x71\x4d\x98\x74\x50\x98\x74\x4f\x7a\x5d\x3e\x45\x33\x21\ \x2e\x22\x16\x2e\x23\x16\x2a\x20\x14\x30\x24\x17\x2e\x23\x16\x2a\ \x1f\x14\x1e\x16\x0e\x24\x1b\x11\x24\x1b\x11\x30\x24\x17\x29\x1f\ \x14\x2a\x20\x14\x2d\x22\x15\x28\x1f\x13\x2b\x20\x15\x31\x25\x18\ \x2a\x1f\x14\x26\x1c\x12\x24\x1b\x11\x22\x1a\x11\x26\x1d\x12\x20\ \x18\x0f\x24\x1b\x11\x30\x24\x17\x2f\x23\x17\x23\x1b\x11\x29\x20\ \x14\x28\x1e\x13\x28\x1e\x14\x29\x1f\x13\x25\x1b\x12\x29\x1f\x13\ \x2d\x21\x15\x32\x25\x18\x30\x25\x17\x3a\x2b\x1c\x3d\x2e\x1e\x35\ \x28\x1a\x32\x25\x18\x2a\x1f\x15\x28\x1f\x13\x2a\x1f\x14\x24\x1b\ \x12\x27\x1d\x12\x32\x26\x18\x3a\x2b\x1c\x39\x2a\x1b\x35\x28\x19\ \x33\x26\x18\x3a\x2c\x1c\x3b\x2c\x1d\x39\x2b\x1b\x32\x25\x18\x35\ \x27\x19\x40\x2f\x1f\x46\x35\x22\x43\x33\x21\x3a\x2c\x1c\x39\x2a\ \x1b\x4d\x3b\x26\x4b\x38\x25\x3f\x2f\x1e\x36\x28\x1a\x3a\x2c\x1c\ \x3c\x2d\x1d\x38\x2a\x1b\x3f\x30\x1f\x41\x31\x1f\x41\x31\x1f\x32\ \x25\x17\x29\x1f\x13\x4d\x3d\x2d\x2c\x29\x25\x44\x45\x47\x58\x5a\ \x5c\x67\x69\x6c\x78\x7a\x7d\x7e\x80\x84\x8f\x91\x95\x98\x9a\x9e\ \x9c\x9e\x9f\x9e\xa0\xa2\xa4\xa5\xa7\xa7\xa9\xaa\xa3\xa5\xa6\xa5\ \xa7\xa8\xa7\xa9\xaa\xa6\xa8\xa9\xad\xad\xaf\xa6\xa7\xa8\xa9\xaa\ \xab\xa9\xab\xac\xaf\xb0\xb0\xab\xab\xad\x00\x00\x00\xc7\xc4\xbf\ \xc2\xbd\xb8\xbe\xb8\xb3\xbb\xb5\xb1\xb5\xad\xa9\xb1\xa8\xa5\xa1\ \x88\x71\x0c\x0a\x06\x03\x03\x02\x33\x27\x19\x41\x31\x20\x40\x30\ \x1f\x3f\x2f\x1e\x46\x34\x22\x41\x30\x1f\x25\x1b\x12\x1e\x16\x0e\ \x23\x1b\x11\x25\x1c\x11\x28\x1e\x14\x2c\x20\x15\x32\x25\x18\x3a\ \x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x33\x26\x19\x30\x23\x17\x29\x1f\ \x14\x3b\x2c\x1d\x30\x24\x18\x2d\x21\x15\x2c\x21\x15\x2c\x21\x15\ \x39\x2b\x1c\x2e\x23\x16\x50\x3d\x29\x91\x70\x4e\x7d\x60\x42\x78\ \x5d\x40\x70\x56\x3b\x66\x4e\x35\x58\x43\x2d\x49\x37\x24\x3f\x2f\ \x1f\x42\x32\x21\x4f\x3c\x28\x4b\x39\x26\x3f\x2f\x20\x37\x29\x1b\ \x37\x2a\x1b\x32\x26\x19\x2e\x23\x16\x2d\x21\x16\x3c\x2d\x1d\x32\ \x25\x17\x30\x24\x17\x32\x25\x18\x3e\x2e\x1d\x3c\x2d\x1d\x40\x30\ \x1f\x4d\x39\x25\x43\x32\x20\x38\x29\x1b\x4a\x37\x24\x66\x4d\x33\ \x72\x57\x3a\x79\x5c\x3e\x6b\x51\x36\x43\x32\x20\x2c\x21\x15\x29\ \x1e\x13\x27\x1e\x13\x26\x1d\x12\x2b\x20\x15\x2b\x20\x15\x1f\x16\ \x0e\x1d\x16\x0e\x29\x1f\x14\x37\x29\x1a\x2b\x20\x15\x2b\x1f\x14\ \x2f\x23\x16\x2e\x23\x16\x2c\x22\x15\x36\x28\x1a\x2a\x1f\x14\x24\ \x1c\x11\x21\x19\x10\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x26\x1c\ \x12\x28\x1e\x13\x2b\x21\x15\x23\x1b\x11\x23\x1a\x11\x22\x19\x10\ \x21\x19\x10\x28\x1e\x13\x22\x19\x10\x23\x1a\x11\x25\x1b\x11\x2a\ \x1f\x14\x2b\x20\x14\x30\x24\x17\x38\x2a\x1b\x2c\x22\x15\x2b\x20\ \x15\x2b\x20\x15\x2b\x20\x14\x28\x1e\x13\x25\x1c\x12\x26\x1c\x12\ \x2c\x21\x15\x2f\x23\x16\x36\x28\x1a\x37\x29\x1a\x34\x27\x19\x37\ \x29\x1a\x3a\x2c\x1c\x3c\x2e\x1d\x36\x28\x1a\x32\x25\x18\x37\x2a\ \x1b\x44\x33\x21\x3c\x2e\x1e\x34\x26\x18\x34\x27\x19\x3a\x2c\x1c\ \x44\x33\x21\x44\x33\x21\x3e\x2e\x1e\x3c\x2d\x1d\x40\x30\x1f\x40\ \x30\x1f\x47\x35\x22\x46\x34\x21\x42\x31\x20\x36\x28\x1a\x32\x25\ \x17\x57\x44\x30\x31\x2d\x28\x49\x4b\x4c\x58\x59\x5b\x67\x69\x6c\ \x79\x7b\x7e\x83\x85\x89\x8b\x8e\x91\x94\x97\x9b\x9e\x9f\xa2\xa0\ \xa2\xa5\xa3\xa4\xa7\xa6\xa7\xa9\x9d\x9f\xa0\xa1\xa3\xa4\xa7\xa9\ \xaa\xaa\xac\xad\xab\xac\xad\xa4\xa5\xa6\xac\xab\xad\xae\xaf\xb0\ \xad\xae\xaf\xac\xab\xae\x00\x00\x00\xe2\xde\xda\xe0\xdc\xd8\xdd\ \xd8\xd5\xd8\xd4\xd0\xd0\xcc\xc8\xc8\xc2\xbf\xae\x98\x84\x13\x0f\ \x0a\x02\x02\x01\x23\x1b\x11\x3a\x2c\x1d\x32\x26\x18\x3a\x2b\x1b\ \x32\x25\x18\x3e\x2e\x1e\x27\x1d\x12\x16\x11\x0b\x1c\x15\x0e\x22\ \x1a\x10\x25\x1c\x12\x26\x1d\x12\x33\x26\x19\x38\x2a\x1b\x2f\x23\ \x17\x30\x24\x18\x2c\x20\x15\x2d\x22\x15\x2b\x20\x14\x36\x28\x1a\ \x2e\x23\x16\x31\x25\x18\x34\x27\x19\x32\x26\x18\x40\x30\x1f\x2f\ \x23\x16\x2b\x20\x15\x3d\x2d\x1e\x38\x2a\x1b\x35\x28\x1a\x2e\x23\ \x16\x2f\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x3f\x30\x1f\x3f\x30\x1f\ \x3e\x2f\x1f\x45\x34\x23\x3a\x2c\x1c\x2b\x21\x15\x32\x26\x18\x37\ \x29\x1a\x39\x2a\x1b\x3a\x2c\x1c\x3c\x2e\x1e\x32\x26\x18\x35\x28\ \x1a\x2f\x23\x16\x3b\x2c\x1d\x46\x34\x22\x40\x2f\x1f\x47\x34\x22\ \x47\x35\x22\x35\x27\x19\x36\x28\x1a\x3d\x2d\x1d\x43\x32\x20\x48\ \x37\x23\x49\x36\x23\x36\x29\x1a\x2a\x20\x15\x28\x1e\x14\x23\x1a\ \x11\x1f\x17\x0f\x2b\x20\x15\x22\x1a\x10\x23\x1b\x11\x27\x1d\x13\ \x32\x25\x18\x30\x24\x17\x24\x1b\x12\x28\x1e\x13\x27\x1d\x13\x2b\ \x21\x14\x2f\x24\x17\x2c\x21\x15\x24\x1b\x11\x24\x1c\x11\x27\x1d\ \x13\x1e\x16\x0e\x1b\x14\x0d\x22\x1a\x10\x23\x1a\x11\x20\x19\x10\ \x21\x19\x10\x1f\x18\x0f\x1c\x15\x0e\x1b\x14\x0d\x20\x18\x10\x25\ \x1c\x12\x27\x1e\x13\x24\x1b\x11\x27\x1d\x13\x2a\x1f\x14\x2d\x21\ \x15\x35\x28\x1a\x36\x28\x1a\x2b\x20\x14\x2e\x23\x16\x30\x24\x17\ \x32\x25\x18\x30\x24\x18\x2d\x22\x16\x2c\x21\x15\x2a\x20\x14\x2a\ \x20\x14\x36\x29\x19\x36\x28\x19\x30\x24\x17\x35\x28\x19\x39\x2b\ \x1c\x3d\x2e\x1d\x3b\x2c\x1c\x3f\x2f\x1e\x3c\x2d\x1d\x41\x30\x1f\ \x3d\x2d\x1d\x35\x28\x1a\x37\x29\x1b\x31\x25\x18\x37\x2a\x1b\x4e\ \x3b\x27\x3a\x2b\x1c\x3d\x2d\x1d\x3e\x2e\x1e\x41\x31\x20\x3b\x2c\ \x1d\x34\x27\x19\x32\x25\x18\x31\x25\x18\x30\x24\x17\x4d\x3a\x27\ \x3e\x3b\x36\x4b\x4c\x4d\x59\x5b\x5d\x6a\x6c\x6f\x78\x7a\x7d\x87\ \x8a\x8d\x8e\x91\x94\x98\x9a\x9d\x9d\x9e\xa2\xa2\xa3\xa7\xa7\xa7\ \xab\xa5\xa7\xab\xa8\xa9\xac\xa7\xa9\xaa\xa2\xa4\xa5\xa8\xa7\xa9\ \xac\xad\xae\xac\xad\xae\xab\xaa\xac\xb1\xb0\xb2\xae\xae\xaf\xad\ \xae\xb0\x00\x00\x00\xe7\xe2\xde\xe5\xe0\xdd\xe3\xde\xdb\xe1\xdd\ \xda\xdd\xd8\xd5\xd6\xd1\xce\xca\xc1\xba\x1e\x18\x10\x02\x02\x00\ \x19\x13\x0c\x37\x29\x1b\x2e\x23\x16\x39\x2b\x1b\x38\x2a\x1b\x43\ \x32\x20\x24\x1b\x11\x12\x0e\x08\x1f\x17\x0f\x25\x1c\x11\x2a\x1f\ \x14\x2d\x22\x15\x3f\x30\x1f\x3e\x2e\x1e\x30\x24\x18\x31\x25\x18\ \x2f\x23\x17\x2b\x21\x15\x2c\x21\x15\x36\x29\x1a\x33\x27\x19\x35\ \x27\x19\x3e\x2f\x1e\x4b\x38\x25\x59\x43\x2d\x72\x58\x3c\x63\x4c\ \x33\x68\x50\x35\x54\x40\x2a\x68\x50\x36\x5e\x49\x31\x56\x42\x2c\ \x48\x36\x23\x43\x32\x21\x34\x27\x1a\x2d\x22\x16\x2d\x22\x16\x31\ \x25\x18\x30\x25\x17\x31\x25\x17\x30\x24\x17\x28\x1e\x13\x27\x1e\ \x13\x32\x26\x18\x3a\x2b\x1c\x3b\x2d\x1d\x2c\x21\x15\x2c\x21\x15\ \x33\x26\x19\x37\x29\x1a\x38\x2a\x1b\x44\x33\x20\x4c\x39\x25\x37\ \x29\x1b\x3f\x2f\x1e\x3a\x2c\x1c\x36\x29\x1a\x39\x2b\x1c\x37\x28\ \x1a\x2b\x21\x15\x2e\x23\x16\x2a\x20\x14\x22\x1a\x10\x22\x1a\x10\ \x2a\x1f\x14\x28\x1f\x13\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x2b\ \x20\x15\x30\x25\x18\x1f\x18\x0f\x29\x1e\x13\x28\x1e\x13\x2d\x21\ \x15\x26\x1d\x12\x2a\x20\x14\x29\x1f\x14\x27\x1d\x13\x1b\x14\x0d\ \x1a\x13\x0c\x23\x1b\x11\x25\x1c\x12\x23\x1a\x11\x21\x18\x10\x22\ \x1a\x10\x20\x18\x0f\x26\x1d\x12\x24\x1b\x11\x24\x1c\x11\x26\x1c\ \x12\x27\x1d\x12\x25\x1b\x11\x24\x1b\x11\x27\x1e\x12\x2e\x22\x16\ \x26\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x22\x17\x30\x24\x17\x2f\ \x24\x16\x34\x27\x19\x35\x28\x19\x2a\x20\x14\x27\x1d\x12\x28\x1e\ \x13\x28\x1e\x14\x2a\x1f\x14\x2e\x22\x15\x30\x24\x17\x33\x27\x19\ \x32\x25\x18\x3a\x2b\x1c\x34\x27\x19\x33\x26\x18\x32\x25\x18\x2b\ \x21\x15\x31\x25\x18\x32\x25\x18\x37\x29\x1b\x3b\x2c\x1d\x31\x25\ \x17\x3b\x2d\x1c\x3e\x2e\x1e\x42\x32\x20\x37\x29\x1b\x2b\x20\x14\ \x32\x25\x18\x35\x28\x1a\x32\x25\x18\x48\x37\x27\x47\x44\x40\x4f\ \x50\x51\x5c\x5e\x60\x6e\x70\x73\x79\x7c\x7e\x89\x8b\x8e\x91\x93\ \x96\x9c\x9d\x9f\x9f\xa0\xa4\xa0\xa1\xa4\xa1\xa1\xa3\xa3\xa4\xa5\ \xaa\xab\xad\xad\xac\xae\xa4\xa5\xa7\xab\xac\xae\xa7\xa6\xa8\xae\ \xb0\xb1\xac\xaa\xac\xb0\xae\xb1\xae\xad\xaf\xae\xb0\xb1\x00\x00\ \x00\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe1\xdd\xda\xdd\xd8\xd6\ \xd8\xd3\xd0\xce\xc9\xc7\x2f\x28\x22\x01\x01\x00\x0e\x0a\x06\x25\ \x1b\x12\x32\x25\x18\x41\x30\x20\x39\x2b\x1c\x3c\x2e\x1d\x27\x1e\ \x13\x0e\x0b\x06\x1e\x17\x0f\x2c\x20\x15\x2d\x22\x15\x2e\x23\x16\ \x30\x24\x17\x35\x28\x1a\x37\x29\x1b\x39\x2b\x1b\x32\x26\x18\x28\ \x1e\x13\x20\x18\x0f\x2f\x23\x17\x33\x26\x19\x36\x28\x1a\x38\x2a\ \x1b\x41\x31\x1f\x40\x30\x20\x42\x32\x20\x34\x27\x1a\x2d\x23\x16\ \x2f\x24\x17\x39\x2c\x1d\x40\x30\x20\x3d\x2e\x1e\x2c\x21\x15\x1f\ \x18\x0f\x1c\x15\x0e\x1f\x17\x0f\x1e\x17\x0e\x22\x19\x10\x2a\x1f\ \x13\x2b\x20\x14\x1e\x17\x0e\x1e\x17\x0e\x2c\x21\x15\x31\x24\x17\ \x37\x29\x1b\x34\x28\x19\x31\x25\x18\x27\x1d\x13\x2d\x22\x16\x2b\ \x20\x14\x31\x25\x18\x3c\x2d\x1d\x3d\x2e\x1d\x3f\x30\x1e\x3e\x2f\ \x1e\x39\x2b\x1c\x39\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x31\x25\x17\ \x3b\x2c\x1c\x37\x2a\x1b\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x22\ \x1a\x10\x25\x1c\x11\x2a\x20\x14\x2e\x22\x16\x26\x1c\x12\x2e\x23\ \x17\x25\x1c\x12\x23\x1b\x10\x26\x1d\x12\x27\x1d\x13\x1f\x18\x10\ \x22\x19\x10\x25\x1c\x12\x24\x1b\x11\x20\x18\x10\x1f\x18\x0f\x27\ \x1e\x13\x30\x23\x16\x30\x24\x17\x31\x24\x17\x32\x25\x18\x31\x25\ \x18\x2e\x23\x17\x2d\x22\x16\x2b\x21\x15\x28\x1f\x13\x25\x1b\x11\ \x22\x1a\x10\x22\x1a\x11\x24\x1b\x11\x2b\x20\x15\x20\x18\x0f\x20\ \x18\x0f\x23\x1b\x11\x2d\x22\x16\x36\x28\x1a\x38\x29\x1b\x3f\x2f\ \x1e\x3d\x2d\x1d\x35\x28\x19\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\ \x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x24\x17\x37\ \x2a\x1b\x2f\x23\x16\x2e\x23\x16\x2d\x21\x15\x2d\x22\x16\x2d\x22\ \x15\x2d\x22\x16\x2f\x23\x16\x2e\x23\x16\x30\x24\x17\x31\x25\x17\ \x2c\x21\x15\x2f\x24\x17\x31\x25\x18\x30\x24\x17\x36\x29\x1a\x35\ \x28\x19\x2c\x21\x15\x5d\x48\x31\x51\x4c\x46\x55\x56\x56\x61\x63\ \x64\x70\x73\x74\x7c\x7e\x82\x88\x8a\x8c\x93\x94\x98\x9c\x9d\xa1\ \x9e\x9f\xa3\xa1\xa2\xa6\x9d\x9e\xa2\xa3\xa4\xa8\xa9\xab\xad\xa9\ \xab\xac\xa5\xa7\xa8\xa3\xa5\xa6\xa9\xa8\xaa\xa6\xa5\xa7\xad\xac\ \xae\xb0\xb0\xb1\xac\xab\xad\xad\xad\xaf\x00\x00\x00\xe6\xe1\xde\ \xe5\xe0\xdd\xe4\xdf\xdd\xe2\xde\xdb\xe0\xdb\xd8\xd9\xd4\xd1\xcf\ \xca\xc7\x3c\x37\x31\x01\x01\x00\x0d\x0a\x06\x1e\x17\x0e\x32\x25\ \x18\x46\x34\x22\x36\x29\x1a\x3f\x30\x1e\x2e\x23\x16\x0b\x09\x05\ \x1e\x16\x0e\x28\x1e\x14\x32\x26\x18\x30\x24\x17\x33\x27\x19\x3f\ \x2f\x1f\x41\x31\x1f\x39\x2a\x1b\x3a\x2c\x1c\x29\x1e\x13\x21\x18\ \x10\x28\x1e\x13\x2c\x21\x15\x3c\x2d\x1d\x3e\x2f\x1e\x3e\x2f\x1e\ \x3f\x2f\x1e\x41\x31\x1f\x2a\x1f\x14\x1f\x17\x0e\x20\x18\x10\x26\ \x1d\x13\x2e\x22\x16\x34\x27\x19\x32\x25\x18\x27\x1d\x13\x27\x1e\ \x13\x24\x1b\x11\x1e\x17\x0e\x1d\x16\x0e\x25\x1c\x11\x2a\x1f\x14\ \x2c\x21\x15\x32\x26\x18\x2d\x21\x15\x31\x25\x17\x35\x28\x1a\x35\ \x28\x19\x2f\x23\x17\x2b\x21\x15\x2f\x23\x16\x34\x27\x19\x37\x2a\ \x1b\x3e\x2e\x1d\x42\x31\x1f\x42\x31\x20\x37\x2a\x1b\x3d\x2d\x1d\ \x44\x32\x20\x42\x31\x20\x39\x2a\x1b\x2c\x22\x15\x2c\x21\x15\x2e\ \x22\x16\x2a\x1f\x14\x27\x1d\x13\x26\x1c\x12\x20\x18\x0f\x21\x19\ \x10\x23\x1b\x11\x29\x1e\x14\x23\x1b\x11\x26\x1c\x12\x1f\x17\x0f\ \x1c\x15\x0d\x1b\x14\x0d\x21\x19\x10\x1b\x14\x0c\x1b\x14\x0d\x1e\ \x17\x0f\x1f\x17\x0f\x1d\x16\x0e\x21\x19\x10\x2a\x20\x14\x31\x24\ \x17\x35\x27\x19\x31\x25\x18\x2c\x21\x16\x34\x27\x19\x30\x24\x17\ \x2e\x23\x16\x34\x27\x19\x2b\x20\x14\x35\x28\x19\x2e\x23\x16\x2e\ \x22\x17\x26\x1c\x12\x24\x1c\x12\x21\x19\x0f\x19\x13\x0c\x23\x1b\ \x11\x2a\x1f\x15\x2e\x23\x16\x32\x25\x18\x38\x29\x1b\x34\x27\x19\ \x30\x24\x16\x27\x1d\x13\x23\x1b\x11\x29\x1e\x14\x2a\x20\x14\x29\ \x1e\x14\x25\x1c\x11\x2b\x20\x14\x2f\x23\x16\x31\x25\x17\x34\x27\ \x19\x31\x24\x17\x35\x27\x19\x36\x29\x1a\x3b\x2c\x1d\x37\x29\x1b\ \x32\x26\x18\x2f\x23\x17\x32\x25\x17\x35\x27\x19\x32\x26\x18\x2e\ \x23\x16\x37\x29\x1b\x35\x28\x1a\x37\x29\x1b\x35\x27\x19\x43\x34\ \x22\x58\x47\x35\x54\x51\x4e\x58\x59\x5a\x66\x68\x68\x72\x75\x76\ \x81\x84\x85\x8e\x91\x94\x99\x9b\x9d\x9f\xa1\xa3\x9f\xa0\xa4\xa2\ \xa3\xa6\xa2\xa3\xa6\xa4\xa6\xa8\xa9\xab\xad\xac\xad\xae\xaa\xab\ \xac\xab\xab\xad\xad\xad\xaf\xac\xab\xad\xaa\xa9\xab\xad\xad\xae\ \xad\xad\xae\xb2\xb1\xb3\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\ \xe0\xdd\xe3\xde\xdc\xe0\xdb\xd8\xd9\xd5\xd2\xd0\xcc\xc9\x3c\x34\ \x2a\x01\x01\x00\x11\x0d\x08\x21\x18\x10\x41\x30\x1f\x46\x34\x22\ \x31\x24\x17\x37\x29\x1b\x2d\x21\x15\x10\x0c\x07\x20\x18\x0f\x28\ \x1e\x13\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x3a\x2b\x1c\x36\x28\ \x1a\x33\x26\x19\x33\x26\x18\x2d\x21\x15\x29\x1f\x13\x25\x1c\x11\ \x2f\x23\x16\x36\x28\x1a\x36\x29\x1a\x33\x26\x18\x3f\x2f\x1f\x46\ \x34\x21\x39\x2a\x1b\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x26\x1c\ \x12\x26\x1c\x12\x2e\x23\x16\x2f\x23\x16\x29\x1e\x13\x28\x1d\x13\ \x1f\x17\x0f\x1f\x18\x0f\x24\x1c\x11\x2c\x20\x15\x30\x23\x17\x2d\ \x23\x16\x32\x25\x18\x2b\x20\x14\x2b\x20\x14\x35\x28\x19\x3a\x2b\ \x1c\x34\x27\x19\x3a\x2c\x1c\x38\x2b\x1b\x4a\x37\x24\x44\x33\x21\ \x3b\x2c\x1c\x42\x32\x20\x4b\x37\x24\x43\x32\x20\x47\x35\x22\x43\ \x32\x20\x34\x27\x19\x2b\x21\x14\x27\x1d\x12\x26\x1d\x12\x25\x1c\ \x12\x29\x1f\x14\x24\x1b\x11\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\ \x26\x1d\x13\x25\x1c\x12\x26\x1d\x13\x2a\x20\x15\x24\x1b\x11\x1c\ \x15\x0e\x1a\x13\x0c\x16\x10\x0b\x13\x0e\x09\x17\x11\x0b\x1c\x15\ \x0d\x20\x19\x10\x24\x1b\x11\x25\x1c\x11\x28\x1d\x13\x2a\x1f\x14\ \x29\x1f\x13\x30\x23\x17\x34\x27\x19\x34\x27\x1a\x2e\x22\x16\x36\ \x28\x19\x2e\x23\x17\x2a\x1e\x14\x2c\x21\x15\x2f\x23\x17\x32\x26\ \x18\x2a\x20\x14\x28\x1f\x13\x1f\x18\x0f\x24\x1b\x12\x25\x1c\x12\ \x2a\x20\x15\x2b\x21\x15\x28\x1e\x14\x24\x1c\x12\x22\x1b\x11\x27\ \x1e\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x3b\x2c\x1d\x34\x27\ \x19\x35\x27\x1a\x38\x2b\x1b\x40\x30\x1f\x35\x28\x1a\x32\x26\x18\ \x2c\x21\x16\x30\x23\x17\x39\x2b\x1c\x38\x2a\x1b\x3f\x2f\x1e\x41\ \x31\x20\x3f\x2f\x1e\x48\x35\x22\x34\x27\x19\x33\x27\x19\x44\x33\ \x21\x36\x28\x1a\x2d\x21\x16\x33\x26\x19\x3f\x2f\x1f\x4e\x41\x34\ \x58\x56\x56\x5e\x60\x61\x6c\x6e\x6f\x7a\x7d\x7e\x85\x88\x8a\x8f\ \x92\x95\x99\x9b\x9c\x9e\x9f\xa4\xa5\xa7\xab\xa2\xa4\xa7\xa2\xa4\ \xa6\xa8\xaa\xab\xaa\xac\xad\xad\xaf\xb0\xab\xac\xad\xa7\xa9\xaa\ \xaa\xab\xac\xb1\xb0\xb2\xaa\xa9\xab\xae\xad\xaf\xa9\xa8\xaa\xb4\ \xb3\xb5\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xdf\xe4\xe0\ \xdd\xe1\xdc\xdc\xda\xd6\xd5\xd0\xc9\xc2\x40\x31\x21\x02\x01\x00\ \x14\x0f\x0a\x24\x1b\x11\x3b\x2c\x1d\x50\x3c\x27\x30\x24\x17\x3d\ \x2d\x1d\x30\x24\x17\x17\x11\x0b\x26\x1d\x12\x24\x1b\x11\x26\x1c\ \x12\x2a\x20\x14\x2a\x20\x14\x32\x25\x18\x35\x27\x19\x35\x28\x19\ \x34\x28\x19\x28\x1f\x13\x2e\x22\x16\x27\x1e\x13\x26\x1d\x12\x27\ \x1e\x13\x24\x1b\x11\x30\x24\x17\x40\x31\x1f\x3b\x2c\x1c\x31\x24\ \x18\x29\x1f\x14\x33\x26\x19\x35\x27\x1a\x28\x1e\x13\x23\x1b\x11\ \x24\x1c\x11\x27\x1d\x12\x36\x28\x1a\x36\x29\x1a\x25\x1c\x12\x22\ \x19\x10\x24\x1b\x11\x26\x1d\x12\x32\x25\x18\x2f\x23\x16\x3a\x2b\ \x1c\x43\x32\x20\x37\x29\x1a\x41\x30\x1f\x38\x2a\x1b\x37\x29\x1a\ \x3e\x2f\x1e\x3a\x2c\x1c\x42\x31\x20\x3f\x30\x1e\x49\x36\x23\x4a\ \x37\x24\x41\x31\x20\x40\x30\x1f\x3c\x2d\x1d\x3e\x2f\x1e\x37\x29\ \x1a\x33\x26\x18\x28\x1d\x12\x1d\x15\x0e\x1e\x16\x0f\x2a\x1f\x14\ \x23\x1a\x11\x20\x18\x0f\x23\x1a\x11\x1c\x15\x0e\x1a\x14\x0d\x20\ \x18\x0f\x25\x1c\x12\x30\x24\x17\x29\x20\x14\x29\x1e\x13\x27\x1e\ \x13\x21\x19\x10\x17\x12\x0b\x19\x13\x0c\x1e\x16\x0e\x2c\x20\x15\ \x2a\x20\x15\x28\x1f\x13\x2f\x23\x16\x2f\x23\x17\x2a\x1f\x14\x2f\ \x23\x16\x33\x26\x19\x2b\x20\x14\x2f\x23\x17\x38\x2a\x1b\x2f\x23\ \x17\x2a\x1f\x14\x29\x1f\x13\x35\x28\x1a\x37\x29\x1b\x35\x28\x1a\ \x2d\x21\x16\x24\x1a\x12\x23\x1b\x11\x2c\x21\x15\x35\x28\x1a\x2f\ \x23\x17\x28\x1e\x13\x25\x1c\x11\x22\x1a\x10\x24\x1b\x11\x25\x1c\ \x12\x27\x1d\x13\x2b\x21\x14\x31\x25\x17\x31\x25\x18\x31\x25\x18\ \x32\x25\x18\x30\x25\x18\x30\x24\x17\x2d\x22\x16\x2f\x23\x16\x2f\ \x23\x17\x37\x29\x1b\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x45\x34\ \x21\x39\x2a\x1b\x27\x1d\x12\x22\x1a\x10\x2a\x20\x15\x2a\x1f\x14\ \x37\x29\x1b\x58\x43\x2d\x4d\x3b\x27\x62\x4b\x33\x64\x60\x5c\x6a\ \x6c\x6f\x77\x7a\x7b\x7c\x7e\x7f\x8a\x8c\x90\x93\x95\x98\x99\x9b\ \x9d\x9e\x9f\xa3\xa4\xa6\xaa\xa2\xa4\xa8\xa3\xa4\xa8\xa4\xa5\xa8\ \xa8\xaa\xac\xaa\xac\xad\xac\xae\xaf\xa8\xaa\xab\xab\xad\xae\xa7\ \xa8\xa9\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\xaf\xae\xb0\x00\x00\ \x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\xe0\xde\xe4\xe0\xdd\xe0\xdc\xd9\ \xda\xd7\xd3\xcc\xbf\xb3\x4e\x3b\x28\x02\x01\x00\x18\x12\x0b\x35\ \x28\x1a\x38\x2a\x1b\x42\x32\x20\x39\x2a\x1c\x3d\x2e\x1e\x27\x1d\ \x12\x18\x12\x0b\x18\x13\x0b\x1e\x17\x0e\x25\x1c\x11\x2b\x21\x14\ \x2a\x1f\x14\x27\x1d\x12\x2f\x24\x17\x33\x26\x18\x2b\x20\x15\x23\ \x1b\x11\x25\x1c\x11\x2a\x20\x14\x20\x18\x0f\x25\x1b\x11\x22\x19\ \x10\x2b\x21\x15\x38\x2a\x1b\x3d\x2e\x1e\x33\x26\x18\x2a\x1f\x14\ \x37\x2a\x1a\x30\x24\x17\x2b\x20\x15\x23\x1a\x11\x1e\x17\x0e\x24\ \x1a\x11\x35\x28\x1a\x31\x25\x18\x1f\x17\x0f\x1a\x14\x0d\x1d\x15\ \x0e\x21\x19\x10\x25\x1d\x12\x2d\x22\x16\x32\x26\x18\x41\x30\x1f\ \x3b\x2c\x1c\x48\x35\x22\x41\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x32\ \x25\x18\x33\x27\x19\x3e\x2f\x1e\x40\x30\x1e\x44\x34\x21\x40\x31\ \x1f\x36\x28\x19\x34\x27\x19\x34\x26\x19\x2e\x22\x16\x2a\x1f\x14\ \x1e\x16\x0e\x19\x13\x0c\x14\x0f\x09\x16\x11\x0a\x10\x0c\x08\x19\ \x12\x0c\x23\x1a\x11\x18\x12\x0c\x16\x11\x0a\x1d\x16\x0e\x23\x1b\ \x11\x35\x27\x19\x3d\x2d\x1d\x33\x27\x18\x27\x1d\x13\x24\x1b\x11\ \x20\x18\x10\x18\x12\x0c\x1d\x16\x0e\x24\x1b\x11\x21\x19\x10\x1c\ \x15\x0d\x28\x1e\x13\x2d\x22\x15\x2d\x22\x15\x3a\x2c\x1b\x35\x27\ \x19\x37\x29\x1a\x35\x28\x19\x39\x2b\x1b\x34\x27\x19\x31\x25\x18\ \x2d\x22\x15\x34\x27\x19\x33\x26\x19\x36\x28\x1a\x31\x25\x17\x36\ \x29\x19\x33\x26\x18\x2d\x22\x16\x2b\x21\x15\x2d\x22\x15\x29\x1e\ \x13\x24\x1a\x11\x26\x1d\x13\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\ \x30\x25\x17\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x36\ \x28\x1a\x3b\x2c\x1c\x34\x27\x19\x3c\x2d\x1d\x33\x26\x19\x36\x29\ \x1a\x3a\x2b\x1c\x3b\x2c\x1d\x44\x33\x21\x4e\x3b\x26\x33\x26\x19\ \x29\x1f\x14\x2c\x21\x15\x23\x1a\x10\x25\x1c\x12\x3e\x2f\x1f\x6a\ \x51\x36\x4d\x3b\x27\x3e\x31\x24\x65\x64\x63\x74\x76\x79\x7f\x81\ \x84\x86\x8a\x8c\x8d\x90\x93\x94\x97\x9a\x99\x9c\x9e\xa3\xa4\xa7\ \xa2\xa3\xa7\xa4\xa5\xa9\xa6\xa7\xab\xa5\xa7\xaa\xa4\xa7\xa9\xae\ \xb1\xb1\xac\xae\xaf\xa7\xa9\xaa\xa7\xa9\xaa\xaa\xab\xad\xab\xaa\ \xac\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\x00\x00\x00\xe7\xe2\xe0\ \xe6\xe1\xe0\xe5\xe1\xdf\xe4\xe0\xde\xe2\xdd\xda\xdb\xd7\xd4\xd3\ \xcc\xc7\x63\x53\x42\x03\x02\x00\x0c\x08\x05\x2b\x21\x14\x38\x2a\ \x1b\x48\x36\x23\x3d\x2e\x1d\x37\x2a\x1b\x32\x25\x18\x18\x12\x0b\ \x1c\x15\x0d\x1c\x15\x0d\x23\x1a\x11\x28\x1e\x13\x29\x1e\x13\x2a\ \x20\x14\x3a\x2c\x1b\x2d\x23\x16\x2b\x20\x15\x34\x27\x19\x36\x29\ \x1a\x31\x25\x18\x30\x24\x17\x2a\x20\x14\x28\x1f\x14\x22\x1a\x10\ \x2a\x1f\x14\x36\x28\x1a\x28\x1e\x13\x2a\x1f\x14\x32\x26\x18\x36\ \x29\x19\x32\x26\x18\x2c\x22\x15\x29\x1f\x14\x26\x1d\x12\x2f\x24\ \x17\x2b\x20\x15\x20\x18\x0f\x20\x18\x10\x1b\x14\x0d\x1f\x17\x0f\ \x24\x1c\x12\x2a\x1f\x14\x31\x25\x17\x36\x28\x1a\x2e\x22\x16\x47\ \x35\x22\x4c\x38\x26\x3e\x2f\x1e\x28\x1e\x14\x23\x1b\x11\x33\x26\ \x19\x3d\x2e\x1d\x3a\x2c\x1c\x3d\x2e\x1e\x3b\x2c\x1d\x34\x27\x18\ \x2b\x20\x14\x2f\x23\x16\x33\x26\x18\x2d\x22\x15\x29\x1e\x13\x22\ \x1a\x10\x22\x1a\x11\x1b\x15\x0d\x1a\x13\x0c\x1e\x17\x0f\x2a\x20\ \x14\x26\x1d\x13\x1f\x17\x0f\x23\x1b\x11\x32\x25\x18\x3e\x2e\x1e\ \x3d\x2d\x1d\x37\x29\x1b\x2d\x22\x15\x2d\x21\x15\x27\x1d\x12\x1c\ \x15\x0e\x1b\x14\x0d\x23\x1a\x11\x22\x19\x10\x23\x1a\x11\x2c\x21\ \x15\x33\x26\x19\x35\x27\x1a\x34\x27\x19\x30\x24\x17\x34\x28\x1a\ \x37\x29\x1b\x35\x28\x1a\x2f\x23\x17\x2c\x21\x15\x2c\x21\x16\x2e\ \x22\x16\x32\x25\x18\x36\x29\x1a\x48\x36\x23\x3c\x2d\x1c\x35\x28\ \x1a\x34\x27\x19\x28\x1e\x13\x2a\x20\x13\x2a\x20\x14\x2c\x22\x16\ \x2d\x21\x15\x2e\x23\x16\x2d\x22\x16\x30\x24\x17\x39\x2b\x1c\x34\ \x27\x19\x35\x28\x1a\x3b\x2d\x1c\x43\x32\x1f\x36\x28\x1a\x35\x28\ \x1a\x37\x29\x1a\x3b\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x31\x24\x17\ \x2e\x22\x16\x2e\x22\x16\x27\x1d\x13\x1e\x17\x0e\x26\x1d\x12\x34\ \x27\x19\x3e\x2e\x1f\x45\x34\x23\x53\x40\x2a\x54\x40\x2b\x32\x26\ \x18\x4c\x44\x3d\x74\x75\x76\x82\x84\x87\x88\x8a\x8c\x8a\x8d\x90\ \x95\x98\x9b\x93\x96\x9a\x9f\x9f\xa3\x9f\xa0\xa4\xa2\xa4\xa8\xa5\ \xa7\xab\xa7\xa8\xac\xa8\xa9\xad\xa0\xa3\xa5\xad\xaf\xb0\xa8\xab\ \xac\xa9\xab\xac\xa7\xa9\xaa\xaa\xac\xad\xac\xad\xae\xb0\xb0\xb2\ \xb2\xb1\xb3\xb2\xb1\xb3\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xdf\xe5\ \xe1\xdf\xe4\xdf\xde\xe3\xde\xdc\xdc\xd7\xd7\xd4\xd0\xcf\x74\x66\ \x57\x08\x06\x03\x17\x12\x0b\x2f\x24\x16\x2b\x21\x15\x46\x35\x22\ \x38\x2b\x1b\x2f\x23\x17\x32\x25\x18\x17\x11\x0b\x1a\x14\x0c\x22\ \x19\x10\x21\x18\x10\x28\x1e\x13\x25\x1c\x12\x26\x1e\x13\x2a\x20\ \x14\x25\x1b\x11\x28\x1d\x13\x29\x1e\x13\x2b\x21\x15\x30\x24\x17\ \x2f\x24\x17\x33\x27\x19\x36\x29\x1a\x2c\x21\x15\x32\x26\x18\x33\ \x26\x18\x2d\x22\x16\x26\x1d\x12\x2e\x22\x16\x2a\x1f\x14\x2d\x21\ \x16\x36\x29\x1a\x2d\x22\x15\x23\x1a\x11\x27\x1d\x13\x22\x1a\x10\ \x1f\x17\x0f\x1c\x15\x0d\x19\x13\x0b\x1f\x17\x0f\x1e\x16\x0e\x23\ \x1b\x11\x26\x1c\x12\x2e\x22\x16\x2e\x22\x15\x40\x2f\x1e\x4a\x37\ \x24\x3d\x2d\x1e\x2c\x21\x15\x24\x1b\x11\x2e\x22\x16\x36\x28\x1a\ \x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1a\x31\x25\x18\x2b\x20\x15\x2a\ \x1f\x14\x2b\x20\x14\x26\x1c\x13\x28\x1d\x13\x27\x1c\x12\x27\x1d\ \x12\x21\x19\x10\x14\x10\x0a\x1c\x16\x0e\x21\x19\x10\x2c\x21\x15\ \x31\x25\x18\x2a\x1f\x14\x30\x24\x17\x3c\x2d\x1d\x38\x2a\x1b\x3f\ \x2e\x1e\x33\x26\x18\x2a\x1f\x14\x2e\x23\x16\x27\x1d\x12\x1d\x16\ \x0e\x1b\x14\x0d\x1a\x14\x0d\x21\x19\x10\x28\x1d\x13\x2b\x20\x14\ \x2f\x23\x16\x38\x2a\x1b\x3a\x2c\x1c\x37\x29\x1a\x30\x24\x17\x30\ \x24\x17\x2f\x23\x17\x2d\x21\x15\x30\x23\x16\x2d\x22\x16\x3b\x2c\ \x1d\x36\x29\x1a\x4a\x37\x24\x3b\x2d\x1d\x31\x25\x18\x2f\x23\x17\ \x2b\x20\x15\x35\x28\x1a\x35\x27\x19\x2d\x21\x15\x30\x24\x17\x2e\ \x22\x15\x30\x24\x17\x37\x29\x1a\x37\x2a\x1a\x30\x24\x17\x37\x29\ \x1a\x3a\x2b\x1c\x33\x27\x19\x37\x29\x1a\x3e\x2e\x1e\x37\x29\x1a\ \x38\x2a\x1b\x38\x29\x1a\x41\x30\x1f\x35\x28\x19\x26\x1d\x13\x26\ \x1c\x12\x22\x1a\x11\x1e\x16\x0f\x37\x2a\x1c\x6f\x55\x39\x78\x5c\ \x3e\x4d\x3a\x26\x5f\x48\x30\x71\x57\x3a\x6a\x5a\x4a\x7a\x77\x74\ \x84\x87\x8a\x8f\x91\x95\x8c\x8f\x92\x93\x96\x99\x96\x9a\x9d\x9c\ \x9f\xa2\x9f\xa1\xa4\x9d\x9f\xa3\xa3\xa4\xa8\xa4\xa6\xaa\xa8\xa9\ \xac\xa7\xa9\xab\xa6\xa8\xaa\xaa\xac\xad\xa4\xa7\xa8\xaf\xb1\xb2\ \xaa\xab\xac\xaa\xac\xad\xab\xab\xad\xaf\xb0\xb2\xae\xad\xaf\xb1\ \xb0\xb2\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xde\xe5\xe1\xe0\xe4\xe0\ \xde\xe3\xde\xdd\xdd\xd8\xd8\xd4\xd0\xcf\x84\x7e\x78\x03\x02\x01\ \x21\x18\x10\x4c\x3a\x27\x3d\x2d\x1d\x41\x30\x1f\x39\x2b\x1c\x32\ \x25\x18\x29\x1f\x14\x1f\x18\x0f\x23\x1b\x11\x27\x1e\x13\x22\x1a\ \x10\x26\x1c\x12\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\ \x27\x1e\x13\x27\x1e\x13\x28\x1e\x13\x32\x26\x18\x39\x2c\x1c\x3c\ \x2d\x1d\x37\x2a\x1b\x37\x2a\x1a\x2b\x20\x15\x2e\x22\x15\x29\x1f\ \x14\x20\x19\x0f\x1f\x18\x0f\x25\x1c\x11\x22\x1a\x10\x2a\x1f\x14\ \x29\x1f\x14\x25\x1c\x12\x29\x1e\x13\x23\x1a\x11\x24\x1b\x11\x23\ \x1a\x11\x1b\x15\x0d\x19\x13\x0c\x1e\x16\x0e\x22\x1a\x10\x27\x1d\ \x12\x28\x1d\x13\x32\x25\x18\x34\x27\x18\x41\x31\x1f\x32\x26\x18\ \x28\x1e\x13\x28\x1e\x13\x2c\x21\x15\x31\x25\x17\x35\x27\x19\x3a\ \x2c\x1d\x38\x29\x1b\x30\x24\x17\x28\x1d\x13\x2c\x21\x15\x2d\x22\ \x15\x2a\x1f\x13\x25\x1b\x11\x20\x17\x0f\x23\x1b\x11\x23\x1b\x11\ \x18\x13\x0b\x21\x19\x0f\x20\x18\x0f\x27\x1d\x12\x29\x1f\x13\x22\ \x19\x10\x29\x1f\x14\x2e\x23\x16\x32\x25\x18\x37\x29\x1a\x38\x2a\ \x1c\x2a\x20\x14\x28\x1e\x13\x32\x25\x18\x30\x24\x17\x27\x1d\x13\ \x24\x1b\x11\x28\x1e\x13\x2c\x21\x15\x32\x26\x17\x38\x2a\x1b\x3d\ \x2d\x1d\x42\x31\x1f\x3c\x2e\x1d\x2f\x24\x17\x30\x24\x17\x2f\x23\ \x16\x3f\x2f\x1f\x29\x1f\x14\x3a\x2b\x1b\x3f\x2f\x1e\x3a\x2b\x1c\ \x58\x43\x2b\x51\x3d\x28\x47\x35\x23\x3b\x2d\x1d\x33\x27\x19\x32\ \x26\x18\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x3b\x2b\x1c\x3e\x2e\ \x1e\x40\x30\x1f\x45\x34\x21\x46\x35\x22\x40\x30\x20\x39\x2c\x1c\ \x44\x33\x21\x3c\x2d\x1d\x30\x24\x17\x34\x27\x19\x2b\x20\x14\x2f\ \x24\x17\x28\x1e\x13\x2e\x23\x18\x27\x1f\x15\x29\x21\x16\x33\x28\ \x1b\x35\x29\x1b\x22\x19\x10\x24\x1c\x13\x32\x29\x1d\x4f\x3f\x2d\ \x60\x4d\x38\x5e\x4e\x3e\x76\x6f\x68\x8c\x8d\x8f\x91\x93\x97\x91\ \x94\x98\x91\x94\x98\xa1\xa4\xa5\x98\x9c\x9e\xa0\xa4\xa6\xa4\xa6\ \xa7\xa2\xa4\xa7\xa2\xa3\xa7\xa2\xa3\xa7\xaa\xab\xae\xa8\xaa\xab\ \xab\xad\xae\xa8\xaa\xab\xa5\xa6\xa7\xa9\xab\xac\xad\xae\xaf\xa9\ \xab\xac\xac\xaa\xac\xb4\xb4\xb6\xac\xab\xad\xaf\xae\xb0\x00\x00\ \x00\xe6\xe2\xe0\xe6\xe1\xe0\xe6\xe2\xe0\xe4\xe0\xdf\xe3\xde\xdd\ \xdd\xd8\xd7\xd4\xd0\xcf\x8b\x80\x76\x05\x04\x02\x1e\x17\x0f\x74\ \x58\x3c\x32\x26\x18\x40\x30\x1e\x36\x29\x1a\x38\x2a\x1b\x32\x25\ \x18\x1b\x14\x0d\x1e\x17\x0f\x26\x1d\x12\x2e\x23\x16\x2c\x21\x15\ \x2d\x22\x16\x2b\x21\x15\x26\x1d\x13\x24\x1a\x11\x23\x1a\x10\x20\ \x18\x0f\x22\x19\x11\x27\x1e\x12\x2a\x20\x14\x25\x1b\x12\x25\x1c\ \x11\x26\x1c\x13\x29\x20\x14\x33\x25\x18\x2d\x22\x16\x26\x1d\x12\ \x2b\x20\x14\x2a\x20\x14\x30\x24\x17\x2e\x22\x16\x2d\x22\x15\x2c\ \x21\x15\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\x22\x1a\ \x11\x1d\x16\x0e\x19\x13\x0b\x1f\x17\x0f\x28\x1e\x13\x1f\x18\x0f\ \x2c\x21\x15\x33\x26\x18\x34\x26\x19\x24\x1b\x11\x1d\x16\x0e\x24\ \x1b\x11\x2a\x20\x14\x2c\x21\x15\x35\x28\x1a\x37\x2a\x1b\x31\x24\ \x17\x35\x28\x1a\x27\x1d\x12\x28\x1e\x13\x2d\x22\x15\x27\x1e\x12\ \x26\x1c\x12\x25\x1b\x11\x27\x1d\x13\x27\x1d\x13\x23\x1a\x11\x24\ \x1b\x11\x21\x19\x10\x29\x1f\x14\x20\x19\x10\x22\x19\x10\x2b\x20\ \x15\x31\x24\x17\x38\x2a\x1b\x3c\x2d\x1d\x35\x27\x19\x2f\x23\x16\ \x2e\x23\x16\x33\x26\x18\x34\x26\x19\x31\x25\x18\x2d\x22\x16\x28\ \x1e\x14\x2c\x20\x15\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x37\x29\ \x1a\x36\x27\x1a\x2a\x20\x14\x24\x1b\x11\x30\x23\x17\x37\x2a\x1a\ \x36\x28\x1a\x3f\x30\x1f\x48\x35\x23\x42\x32\x20\x5c\x45\x2d\x53\ \x3f\x29\x40\x30\x1f\x34\x28\x19\x35\x28\x19\x2d\x22\x15\x28\x1e\ \x13\x27\x1d\x13\x22\x1a\x11\x2f\x23\x17\x35\x28\x1a\x2e\x22\x16\ \x2e\x23\x17\x2a\x20\x14\x2a\x1f\x14\x31\x27\x1b\x2e\x25\x19\x29\ \x1f\x14\x2d\x22\x19\x31\x26\x1b\x2a\x22\x19\x3a\x33\x2b\x43\x3e\ \x36\x39\x36\x31\x37\x35\x33\x52\x52\x50\x3a\x39\x37\x05\x04\x02\ \x0c\x0b\x09\x40\x43\x44\x79\x7c\x7d\x5e\x61\x62\x6c\x6f\x72\x7e\ \x81\x85\x5d\x60\x63\x7b\x7c\x80\x97\x99\x9c\x97\x98\x9c\x98\x9b\ \x9f\xa2\xa5\xa8\x9d\x9f\xa1\xa4\xa6\xa9\xa5\xa6\xa8\xa3\xa4\xa8\ \xa5\xa6\xaa\xa7\xa8\xab\xaa\xab\xaf\xa9\xab\xad\xaa\xac\xad\xab\ \xac\xad\xa6\xa6\xa7\xa5\xa7\xa8\xad\xae\xaf\xad\xae\xaf\xae\xad\ \xaf\xb3\xb2\xb4\xaf\xae\xaf\xad\xac\xae\x00\x00\x00\xe7\xe2\xe1\ \xe6\xe2\xe1\xe7\xe2\xe1\xe5\xe1\xe0\xe3\xde\xdd\xde\xda\xd9\xd7\ \xd3\xd2\x9c\x94\x8e\x05\x05\x03\x1a\x13\x0c\x5f\x49\x31\x33\x26\ \x19\x34\x27\x19\x41\x32\x20\x46\x35\x22\x3a\x2c\x1d\x1d\x17\x0e\ \x1c\x15\x0d\x24\x1b\x11\x24\x1b\x12\x30\x24\x17\x37\x29\x1a\x34\ \x27\x19\x2c\x21\x15\x2e\x22\x16\x2f\x23\x17\x27\x1e\x12\x29\x1e\ \x14\x2b\x20\x15\x2a\x1f\x14\x23\x1a\x11\x1e\x17\x0f\x21\x19\x10\ \x2f\x23\x16\x2e\x22\x16\x2a\x20\x14\x27\x1e\x13\x2d\x21\x16\x2c\ \x21\x15\x2f\x23\x16\x30\x25\x17\x2e\x23\x16\x28\x1e\x13\x22\x1a\ \x11\x21\x19\x10\x1f\x18\x0f\x20\x18\x0f\x1f\x17\x10\x20\x18\x0f\ \x1d\x16\x0e\x21\x18\x10\x21\x19\x10\x22\x1a\x10\x2b\x21\x15\x21\ \x1a\x10\x1a\x14\x0d\x16\x11\x0b\x21\x19\x10\x22\x1a\x11\x29\x1f\ \x14\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x33\x26\x18\x2e\x22\x16\ \x2d\x21\x15\x32\x25\x18\x33\x26\x18\x32\x25\x17\x30\x25\x17\x31\ \x25\x18\x36\x28\x1a\x34\x27\x19\x30\x24\x17\x2f\x23\x17\x24\x1a\ \x12\x2c\x22\x15\x33\x26\x18\x33\x26\x18\x2c\x21\x15\x38\x2b\x1b\ \x39\x2a\x1b\x3f\x2f\x1e\x36\x28\x1a\x2c\x21\x15\x33\x27\x18\x32\ \x26\x18\x2f\x23\x17\x2d\x22\x15\x30\x23\x17\x2e\x22\x16\x2f\x24\ \x17\x2d\x22\x15\x2e\x23\x16\x35\x27\x19\x35\x27\x19\x33\x27\x19\ \x2f\x24\x16\x2f\x23\x16\x3a\x2b\x1c\x42\x31\x20\x3e\x2f\x1d\x39\ \x2b\x1c\x32\x26\x18\x34\x27\x18\x3a\x2b\x1d\x2e\x24\x18\x2e\x25\ \x1a\x2e\x25\x1b\x30\x27\x1d\x33\x2a\x1f\x33\x2b\x21\x34\x2b\x22\ \x35\x2d\x23\x34\x2e\x26\x31\x2b\x24\x1d\x15\x0d\x36\x31\x2b\x28\ \x25\x20\x3c\x3a\x37\x46\x48\x46\x37\x3a\x38\x0d\x0d\x0d\x10\x10\ \x11\x35\x38\x3b\x4c\x4f\x53\x7b\x7e\x80\x83\x87\x88\x83\x87\x88\ \x66\x6c\x6e\x55\x5a\x5a\x14\x14\x15\x00\x00\x00\x26\x28\x28\x7e\ \x83\x85\x4c\x4f\x52\x56\x58\x5b\x91\x93\x95\x99\x9a\x9d\x88\x8a\ \x8e\x67\x69\x6d\x7a\x7c\x80\x9e\xa0\xa4\xa0\xa2\xa6\x9f\xa3\xa6\ \xa0\xa2\xa4\xa7\xa8\xaa\xa2\xa4\xa5\xa3\xa5\xa7\xa6\xa8\xaa\xa5\ \xa6\xaa\xa5\xa7\xaa\xa7\xa9\xab\xad\xad\xaf\xac\xab\xad\xaf\xae\ \xaf\xac\xab\xac\xab\xab\xad\xae\xae\xaf\xaf\xae\xaf\xac\xac\xad\ \xb1\xb0\xb2\xaf\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\ \xe1\xe0\xe6\xe1\xe0\xe3\xde\xdd\xdf\xdb\xda\xd9\xd5\xd4\xaa\xa3\ \x9e\x06\x05\x02\x13\x0e\x09\x51\x3e\x29\x34\x27\x19\x37\x2a\x1b\ \x49\x37\x24\x37\x29\x1b\x3c\x2d\x1d\x2c\x21\x15\x2f\x23\x17\x3c\ \x2c\x1d\x2e\x22\x16\x36\x28\x1a\x35\x27\x19\x41\x31\x1f\x3d\x2e\ \x1e\x33\x26\x19\x40\x30\x1f\x2f\x24\x16\x23\x1a\x11\x2b\x20\x14\ \x2a\x1f\x14\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x25\x1c\x12\x2f\ \x23\x17\x2b\x20\x14\x2a\x1f\x14\x2e\x23\x17\x34\x27\x19\x35\x28\ \x1a\x33\x26\x18\x2a\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\ \x25\x1c\x12\x24\x1c\x11\x27\x1e\x13\x21\x18\x0f\x1f\x17\x0f\x22\ \x1a\x10\x22\x1a\x10\x19\x12\x0c\x1f\x17\x0f\x21\x19\x10\x20\x18\ \x0f\x1d\x16\x0e\x1f\x18\x0f\x2b\x21\x14\x34\x27\x19\x30\x24\x17\ \x31\x25\x17\x37\x29\x1b\x38\x2a\x1b\x34\x27\x19\x39\x2b\x1b\x3a\ \x2b\x1c\x36\x28\x1a\x38\x2a\x1b\x37\x29\x1b\x36\x29\x1a\x41\x31\ \x1f\x3e\x2e\x1e\x38\x2a\x1b\x32\x26\x18\x33\x26\x18\x2e\x22\x16\ \x4c\x3a\x25\x4f\x3b\x26\x32\x26\x18\x2e\x23\x17\x2f\x23\x17\x36\ \x29\x1a\x37\x28\x1b\x2f\x24\x17\x38\x2a\x1b\x2f\x23\x16\x2b\x21\ \x15\x2b\x20\x15\x28\x1f\x13\x28\x1e\x13\x25\x1c\x12\x26\x1d\x12\ \x29\x1f\x14\x2c\x21\x17\x2b\x22\x17\x28\x20\x17\x30\x26\x1d\x38\ \x2d\x21\x30\x28\x1f\x30\x29\x21\x35\x2e\x24\x33\x2d\x25\x35\x2e\ \x29\x3d\x38\x32\x3f\x3d\x39\x42\x40\x3f\x48\x48\x48\x4d\x4e\x4f\ \x53\x57\x59\x5b\x5e\x60\x63\x68\x6a\x6a\x71\x75\x6f\x75\x79\x72\ \x78\x7a\x4e\x56\x59\x00\x00\x00\x16\x17\x19\x52\x55\x58\x7f\x83\ \x85\x71\x76\x78\x33\x38\x3a\x0e\x10\x11\x01\x02\x02\x5a\x5c\x60\ \x72\x76\x7b\x5a\x5e\x62\x87\x8a\x8d\x8a\x8e\x8f\x89\x8e\x8f\x51\ \x55\x55\x00\x00\x00\x0a\x0b\x0b\x64\x66\x67\x9c\xa0\xa1\x5b\x5f\ \x61\x3d\x3f\x43\x87\x88\x8b\x9c\x9d\x9e\x9f\xa0\xa2\x91\x93\x96\ \x6d\x6f\x74\x6b\x6d\x70\xa6\xa8\xaa\xa3\xa5\xa7\xa4\xa4\xa6\xa7\ \xa9\xab\xa3\xa5\xa6\x9e\x9f\xa2\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb2\ \xb3\xa9\xab\xac\xad\xad\xaf\xab\xaa\xac\xb3\xb2\xb3\xab\xab\xac\ \xad\xad\xb0\xb0\xaf\xb1\xaf\xae\xb0\xad\xac\xae\xb2\xb1\xb3\xaf\ \xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\ \xe0\xe4\xe0\xdf\xe0\xdb\xda\xd9\xd6\xd4\xb5\xad\xa6\x07\x05\x03\ \x0a\x07\x04\x4e\x3c\x27\x3c\x2d\x1d\x35\x28\x19\x36\x29\x1a\x38\ \x2a\x1b\x41\x30\x1f\x34\x28\x19\x37\x29\x1b\x3d\x2d\x1d\x28\x1e\ \x13\x2e\x22\x16\x35\x28\x19\x38\x2a\x1a\x43\x32\x20\x3e\x2e\x1e\ \x4c\x3a\x26\x38\x2a\x1b\x30\x25\x17\x2e\x22\x16\x2c\x22\x16\x2a\ \x1e\x14\x29\x1f\x13\x31\x25\x17\x2b\x20\x15\x30\x24\x17\x33\x26\ \x19\x32\x26\x18\x2d\x21\x16\x31\x24\x17\x38\x2a\x1b\x35\x28\x19\ \x2a\x1f\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1d\x12\x27\x1e\x13\x26\ \x1d\x12\x22\x1a\x10\x21\x18\x0f\x26\x1c\x12\x25\x1b\x12\x29\x1e\ \x14\x24\x1b\x11\x23\x1b\x11\x24\x1b\x11\x1f\x18\x0f\x25\x1c\x12\ \x2d\x22\x16\x2b\x21\x15\x31\x25\x17\x32\x26\x18\x36\x29\x1a\x38\ \x29\x1b\x36\x28\x1a\x3c\x2d\x1d\x3e\x2f\x1e\x3b\x2d\x1c\x37\x29\ \x1a\x36\x29\x1a\x34\x26\x19\x34\x27\x19\x32\x26\x18\x3c\x2d\x1d\ \x3a\x2c\x1c\x40\x31\x1f\x3a\x2c\x1c\x3a\x2b\x1c\x39\x2b\x1c\x4b\ \x39\x25\x36\x28\x1a\x23\x1b\x11\x21\x19\x0f\x1e\x17\x0f\x29\x1f\ \x14\x2d\x24\x19\x2e\x26\x1b\x27\x21\x19\x2c\x25\x1d\x2d\x27\x1e\ \x2c\x26\x20\x35\x2e\x26\x2a\x24\x1d\x1c\x14\x0d\x21\x1a\x14\x33\ \x2f\x2b\x48\x44\x41\x4a\x4a\x49\x4d\x4f\x50\x50\x54\x56\x58\x5d\ \x5f\x5f\x65\x67\x67\x6e\x6f\x6c\x73\x77\x6c\x73\x79\x70\x77\x7d\ \x70\x77\x7c\x72\x79\x7f\x72\x79\x80\x71\x78\x7f\x75\x7b\x81\x73\ \x79\x7d\x75\x7a\x7f\x77\x7e\x82\x77\x7d\x81\x7d\x83\x87\x23\x2c\ \x2f\x35\x3c\x3f\x07\x06\x06\x64\x67\x69\x8a\x8e\x92\x76\x7a\x7e\ \x48\x4e\x50\x28\x2d\x2e\x00\x01\x01\x60\x61\x65\x8e\x91\x96\x7a\ \x7f\x82\x56\x59\x5f\x8a\x8d\x8f\x98\x9a\x9b\x22\x23\x24\x00\x00\ \x00\x0f\x0f\x0f\x80\x82\x84\x8c\x8e\x8f\x64\x67\x68\x84\x87\x8a\ \x67\x69\x6e\x7d\x7d\x80\xa0\x9f\xa2\x9d\x9e\x9f\x9e\x9f\xa1\x78\ \x7a\x7c\x64\x65\x66\xac\xad\xad\xa8\xa7\xa8\xab\xaa\xac\xa3\xa3\ \xa5\x80\x80\x83\x46\x45\x47\x33\x32\x32\x63\x63\x63\xa5\xa5\xa5\ \xb2\xb2\xb2\xae\xae\xaf\xb2\xb1\xb2\xac\xac\xac\xae\xae\xaf\xb1\ \xb0\xb1\xaf\xaf\xaf\xb1\xb1\xb1\xb1\xb0\xb1\xae\xae\xae\x00\x00\ \x00\xdf\xd8\xd5\xdf\xd9\xd6\xdf\xd9\xd6\xe1\xdb\xd9\xdf\xdb\xda\ \xdc\xd7\xd6\xd6\xcf\xcc\xbf\xb4\xac\x08\x06\x03\x0c\x0a\x06\x58\ \x44\x2e\x5d\x47\x30\x3f\x2f\x1f\x33\x26\x18\x32\x25\x18\x43\x32\ \x20\x39\x2b\x1c\x3a\x2c\x1d\x3d\x2e\x1e\x22\x1a\x10\x28\x1e\x13\ \x2a\x20\x14\x2b\x20\x15\x48\x36\x23\x3e\x2f\x1e\x3d\x2e\x1d\x3a\ \x2c\x1c\x39\x2b\x1c\x34\x27\x19\x2f\x24\x17\x2e\x22\x16\x32\x25\ \x18\x35\x28\x19\x36\x28\x1a\x30\x24\x17\x30\x24\x17\x34\x27\x19\ \x2f\x24\x17\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x2e\x22\x16\x33\ \x26\x18\x38\x29\x1a\x34\x27\x19\x36\x28\x1a\x34\x27\x18\x2d\x22\ \x15\x2f\x23\x17\x33\x26\x19\x34\x27\x1a\x36\x29\x1a\x2d\x22\x16\ \x2c\x21\x15\x2f\x24\x16\x29\x1f\x13\x36\x29\x1a\x37\x29\x1a\x36\ \x28\x1a\x3a\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1d\x33\x26\x19\x30\x24\ \x17\x34\x27\x19\x2e\x23\x16\x2c\x22\x15\x2a\x20\x14\x2e\x22\x16\ \x36\x28\x1a\x33\x26\x19\x2d\x21\x16\x36\x29\x1d\x37\x2c\x1f\x3a\ \x2f\x22\x39\x2f\x23\x35\x2d\x24\x40\x36\x2c\x42\x39\x2e\x3c\x34\ \x2d\x3c\x36\x2f\x3e\x39\x33\x3f\x3c\x38\x42\x41\x3f\x41\x41\x41\ \x37\x3a\x3c\x3e\x41\x43\x53\x54\x56\x53\x57\x5a\x4e\x53\x56\x5e\ \x64\x67\x41\x48\x4c\x01\x03\x04\x0f\x11\x14\x41\x48\x4f\x64\x6a\ \x6e\x6f\x74\x78\x6f\x77\x7a\x71\x79\x7c\x6f\x78\x7b\x6d\x75\x79\ \x70\x78\x7b\x73\x7b\x7f\x72\x7a\x7e\x71\x79\x7e\x74\x7c\x81\x76\ \x7d\x84\x76\x7e\x84\x75\x7d\x82\x79\x7f\x84\x7c\x82\x87\x7e\x84\ \x89\x7c\x84\x88\x7b\x82\x86\x79\x80\x84\x3f\x49\x50\x57\x5f\x61\ \x05\x07\x08\x6b\x6f\x73\x8e\x92\x96\x86\x8a\x8e\x85\x8a\x8d\x42\ \x47\x49\x0e\x11\x14\x72\x75\x77\x8f\x93\x95\x8f\x93\x95\x8b\x90\ \x93\x56\x5a\x5d\x72\x73\x75\x00\x00\x00\x04\x04\x05\x40\x42\x44\ \x6a\x6e\x71\x5d\x5f\x61\x64\x67\x69\xa5\xa8\xaa\xa1\xa2\xa5\x6c\ \x6d\x72\x77\x78\x7c\x9f\x9f\xa0\xa0\xa2\xa3\x9e\xa0\xa1\x8b\x8d\ \x8e\x58\x58\x59\xa8\xa7\xa8\xab\xaa\xac\xa5\xa4\xa7\x94\x94\x96\ \x32\x32\x33\x00\x00\x00\x15\x15\x16\x3a\x3b\x3c\x8e\x8c\x8c\xb3\ \xb1\xb2\xac\xab\xad\xaf\xae\xb0\xae\xaf\xaf\xb0\xb0\xb0\xad\xad\ \xad\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb1\x00\x00\x00\xdd\xd7\xd2\ \xdd\xd4\xd0\xdd\xd5\xd1\xdc\xd5\xd2\xda\xd3\xd1\xd7\xd1\xcf\xd1\ \xcb\xc8\xc8\xbf\xbe\x0a\x08\x04\x07\x06\x04\x78\x5c\x3f\x94\x72\ \x4f\x50\x3c\x28\x38\x29\x1a\x37\x2a\x1b\x40\x30\x1f\x36\x29\x1a\ \x2a\x20\x15\x30\x24\x17\x25\x1c\x12\x24\x1b\x11\x27\x1d\x13\x29\ \x1e\x14\x2c\x21\x15\x34\x26\x19\x3e\x2f\x1e\x46\x35\x22\x37\x29\ \x1a\x38\x2a\x1b\x40\x30\x1f\x34\x27\x19\x41\x30\x20\x40\x30\x1f\ \x3d\x2e\x1d\x34\x27\x19\x32\x25\x18\x35\x28\x19\x2f\x24\x17\x37\ \x29\x1b\x37\x2a\x1a\x37\x29\x1b\x46\x34\x22\x4d\x39\x25\x52\x3d\ \x27\x4d\x3a\x26\x45\x33\x21\x47\x35\x22\x43\x32\x21\x42\x32\x20\ \x41\x31\x20\x3d\x2e\x1e\x3d\x2e\x1d\x38\x2a\x1b\x2f\x23\x16\x2c\ \x22\x16\x29\x1f\x14\x2d\x22\x16\x26\x1d\x12\x29\x1f\x14\x2d\x21\ \x16\x2d\x22\x15\x2c\x22\x18\x25\x1f\x16\x2a\x24\x1c\x31\x29\x22\ \x33\x2d\x25\x35\x2f\x28\x3a\x35\x2f\x43\x3c\x35\x49\x43\x3a\x4c\ \x45\x3f\x4d\x48\x44\x4c\x49\x47\x4e\x4d\x4c\x51\x53\x53\x56\x58\ \x59\x5c\x5d\x5f\x62\x64\x67\x67\x6b\x6f\x6d\x72\x77\x70\x75\x7a\ \x70\x74\x79\x72\x76\x7a\x6f\x76\x79\x5f\x66\x6c\x5b\x64\x6a\x59\ \x61\x67\x60\x66\x6c\x6e\x72\x76\x56\x5b\x61\x58\x5d\x62\x5f\x65\ \x6a\x2a\x32\x36\x28\x30\x35\x4c\x55\x5c\x61\x69\x6e\x71\x78\x7b\ \x72\x79\x7d\x74\x7c\x80\x77\x80\x84\x73\x7c\x80\x77\x7f\x83\x76\ \x7e\x83\x76\x7e\x82\x76\x7e\x83\x7a\x81\x88\x7b\x84\x8a\x79\x82\ \x89\x7a\x81\x87\x7b\x80\x85\x80\x85\x8b\x80\x87\x8b\x7f\x85\x8a\ \x7e\x84\x89\x80\x86\x8b\x7b\x80\x85\x30\x3b\x3f\x69\x71\x76\x85\ \x89\x8d\x8c\x90\x94\x90\x94\x98\x83\x88\x8b\x58\x5e\x61\x65\x6a\ \x6e\x5d\x63\x67\x84\x87\x8a\x94\x97\x9b\x96\x9a\x9d\x89\x8f\x93\ \x1a\x1c\x1e\x00\x00\x00\x0d\x0f\x0f\x8f\x94\x97\x83\x87\x88\x40\ \x43\x45\x70\x72\x74\x5d\x5d\x5f\x55\x55\x58\x9a\x9a\x9e\x71\x72\ \x76\x75\x76\x79\xa2\xa2\xa3\xa4\xa5\xa6\x9d\x9f\xa0\x97\x99\x9b\ \x61\x61\x63\x90\x8f\x90\xae\xb0\xb0\xa2\xa3\xa5\x4d\x4d\x4e\x00\ \x00\x00\x42\x45\x46\x9c\xa0\xa1\x72\x72\x73\x8f\x8d\x8e\xab\xa9\ \xab\xb2\xb1\xb2\xae\xae\xae\xb1\xb1\xb1\xae\xae\xae\xb0\xaf\xb0\ \xb1\xb1\xb1\xb3\xb3\xb3\x00\x00\x00\xe4\xde\xdb\xe4\xdd\xd9\xe2\ \xdb\xd8\xe2\xda\xd8\xdf\xd9\xd5\xdd\xd6\xd2\xd8\xd2\xce\xcd\xc0\ \xb4\x10\x0d\x08\x07\x05\x03\x62\x4b\x33\x8c\x6c\x4a\x5a\x44\x2e\ \x32\x26\x17\x34\x27\x19\x40\x30\x1f\x34\x27\x19\x2c\x21\x16\x3c\ \x2e\x1e\x29\x1f\x13\x23\x1a\x10\x1f\x17\x0f\x24\x1b\x11\x2a\x1f\ \x14\x32\x25\x18\x38\x2a\x1b\x3b\x2d\x1c\x40\x30\x1e\x3d\x2e\x1e\ \x45\x34\x21\x40\x30\x1f\x45\x34\x21\x43\x32\x21\x44\x33\x21\x44\ \x33\x21\x45\x34\x22\x42\x32\x20\x3e\x2e\x1e\x38\x2a\x1b\x3e\x2e\ \x1e\x49\x38\x24\x4f\x3c\x27\x47\x35\x22\x45\x34\x22\x41\x32\x20\ \x37\x29\x1a\x3a\x2b\x1c\x37\x2a\x1b\x3c\x2e\x1e\x33\x27\x19\x2c\ \x22\x16\x2a\x21\x16\x34\x2a\x1e\x35\x2c\x22\x32\x2c\x25\x3a\x34\ \x2d\x42\x3c\x35\x46\x41\x3b\x4c\x46\x41\x54\x4e\x49\x56\x52\x4e\ \x58\x56\x53\x5f\x5c\x5b\x64\x62\x61\x69\x68\x67\x6e\x6e\x6d\x72\ \x72\x72\x77\x78\x7a\x7c\x7f\x81\x7f\x81\x85\x7e\x81\x85\x7c\x7f\ \x82\x7b\x7e\x81\x79\x7d\x81\x7b\x7e\x83\x7a\x7e\x83\x78\x7b\x81\ \x78\x7c\x81\x78\x7c\x81\x76\x7c\x81\x76\x7c\x80\x74\x79\x7d\x74\ \x7a\x7d\x6e\x73\x78\x58\x61\x68\x66\x6c\x70\x6c\x71\x76\x47\x4f\ \x57\x1c\x24\x2a\x09\x12\x17\x19\x21\x27\x56\x5c\x61\x6d\x71\x75\ \x67\x6e\x72\x56\x60\x64\x60\x69\x6d\x73\x7b\x7f\x78\x80\x84\x78\ \x80\x84\x77\x80\x84\x75\x7e\x82\x79\x82\x86\x77\x80\x84\x78\x80\ \x84\x79\x81\x86\x7c\x83\x89\x7c\x85\x8b\x7d\x85\x8d\x7f\x87\x8e\ \x7e\x85\x8c\x7f\x85\x8b\x7e\x85\x8a\x80\x88\x8d\x80\x87\x8c\x82\ \x88\x8d\x83\x89\x8d\x4c\x55\x5a\x8a\x8e\x93\x8b\x8f\x93\x8b\x8f\ \x94\x8f\x93\x98\x8d\x91\x96\x8b\x8f\x93\x8c\x90\x94\x86\x8b\x8e\ \x57\x5e\x62\x7e\x81\x86\x95\x9a\x9d\x89\x8d\x90\x03\x03\x03\x01\ \x01\x01\x34\x36\x37\xa7\xac\xae\x84\x88\x89\x4b\x4f\x52\x6f\x73\ \x76\x54\x57\x5a\x76\x79\x7e\x9c\x9f\xa3\xac\xad\xb1\x80\x81\x86\ \x6a\x6b\x70\x9d\x9f\xa0\x9f\xa1\xa2\xa4\xa8\xab\xa3\xa6\xa7\x6b\ \x6d\x6f\x7b\x7b\x7c\x92\x91\x93\x61\x61\x62\x45\x47\x47\x84\x89\ \x88\x6a\x6f\x6f\x7e\x80\x80\x36\x36\x36\x99\x98\x98\xaf\xaf\xb0\ \xb4\xb3\xb5\xb1\xb0\xb2\xac\xab\xac\xb3\xb2\xb3\xb0\xb0\xb1\xb3\ \xb2\xb3\x00\x00\x00\xe1\xd7\xd2\xe1\xd8\xd3\xe0\xd8\xd4\xe1\xd9\ \xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdd\xd5\xd1\xd2\xc5\xb9\x1f\x19\x12\ \x1c\x14\x0d\x72\x57\x3c\x72\x57\x3b\x67\x4f\x35\x40\x31\x20\x27\ \x1d\x13\x3e\x2e\x1e\x2d\x21\x16\x28\x1e\x14\x4b\x39\x26\x37\x29\ \x1a\x33\x26\x19\x2d\x22\x16\x2c\x21\x15\x36\x28\x1a\x3b\x2d\x1d\ \x3a\x2c\x1c\x46\x35\x23\x46\x35\x22\x40\x30\x1f\x40\x30\x1f\x3f\ \x2f\x1f\x36\x29\x1a\x34\x28\x19\x37\x29\x1a\x38\x2a\x1b\x3a\x2c\ \x1c\x33\x26\x18\x2f\x23\x17\x27\x1d\x12\x31\x25\x1b\x44\x37\x29\ \x45\x3a\x2d\x40\x38\x2f\x45\x3d\x35\x4a\x41\x3a\x4b\x44\x3d\x48\ \x42\x3c\x3d\x3a\x36\x30\x2f\x2b\x18\x1a\x1b\x15\x16\x19\x2d\x2c\ \x2d\x4c\x48\x47\x61\x5d\x5c\x6f\x6b\x6b\x7b\x79\x79\x84\x83\x83\ \x8e\x8d\x8e\x92\x91\x93\x94\x93\x94\x93\x92\x94\x91\x90\x92\x92\ \x91\x93\x90\x91\x92\x8e\x8f\x91\x8b\x8d\x8e\x87\x88\x89\x87\x8a\ \x8c\x87\x8a\x8d\x83\x87\x8a\x81\x84\x87\x81\x84\x88\x7f\x85\x87\ \x81\x85\x88\x7f\x82\x87\x7e\x82\x87\x7d\x81\x85\x7a\x7f\x84\x7a\ \x7f\x84\x79\x7f\x85\x79\x7f\x85\x76\x7d\x81\x77\x7d\x80\x69\x70\ \x74\x4f\x59\x60\x63\x69\x6e\x71\x75\x7a\x27\x2f\x36\x06\x09\x0d\ \x37\x40\x47\x39\x42\x49\x3a\x41\x4a\x67\x6c\x72\x6e\x73\x76\x4b\ \x56\x5c\x61\x6a\x71\x76\x7f\x83\x7c\x84\x88\x7b\x83\x87\x78\x80\ \x85\x7b\x83\x87\x7d\x86\x8a\x7b\x84\x88\x78\x81\x85\x7d\x86\x8a\ \x7f\x88\x8d\x7c\x85\x8b\x7d\x85\x8c\x7f\x87\x8d\x7e\x85\x8c\x7f\ \x85\x8b\x7f\x84\x89\x82\x88\x8d\x84\x8a\x8f\x82\x88\x8d\x85\x8b\ \x90\x87\x8d\x91\x8c\x91\x94\x8d\x91\x94\x8b\x8e\x92\x8a\x8f\x93\ \x8e\x92\x96\x90\x95\x98\x91\x96\x99\x8e\x93\x96\x87\x8e\x91\x5b\ \x62\x65\x89\x8f\x91\x4a\x4c\x4f\x00\x00\x00\x02\x03\x03\x43\x49\ \x4a\x81\x85\x87\x74\x78\x7a\x78\x7c\x7e\x9c\xa0\xa1\x69\x6e\x71\ \x78\x7c\x80\xa7\xa9\xad\xa2\xa3\xa6\xa7\xa9\xab\x90\x92\x96\x58\ \x5a\x5f\x9d\x9e\xa0\xa9\xab\xad\xa0\xa4\xa5\xa5\xa8\xa9\x65\x66\ \x67\x00\x00\x00\x00\x00\x00\x0c\x0c\x0c\x6b\x6d\x6c\xb7\xb9\xb7\ \x49\x49\x4a\x00\x00\x00\x59\x59\x59\xa8\xa7\xa9\xb3\xb3\xb4\xab\ \xaa\xab\xb3\xb2\xb3\xb0\xaf\xb0\xad\xac\xae\xb2\xb2\xb2\x00\x00\ \x00\xd9\xcf\xca\xd8\xcf\xc7\xd9\xce\xc7\xd9\xcd\xc9\xd9\xce\xc9\ \xda\xce\xcb\xda\xd0\xcd\xd7\xce\xca\x42\x34\x27\x30\x25\x18\x7d\ \x5e\x40\x65\x4d\x34\x51\x3d\x29\x5d\x46\x2f\x3d\x2e\x1f\x38\x2a\ \x1b\x2d\x23\x16\x33\x27\x19\x50\x3d\x28\x5d\x47\x2f\x5f\x48\x30\ \x48\x36\x23\x41\x31\x20\x47\x36\x24\x41\x31\x1f\x3a\x2c\x1c\x3d\ \x2e\x1e\x36\x29\x1a\x34\x29\x1d\x3a\x30\x25\x41\x37\x2c\x48\x3f\ \x36\x51\x48\x40\x58\x50\x49\x62\x5a\x52\x6b\x63\x5d\x72\x6c\x65\ \x79\x73\x6e\x7f\x7a\x75\x85\x80\x7c\x8a\x85\x81\x90\x8a\x87\x94\ \x8f\x8d\x95\x8f\x8d\x94\x8f\x8d\x8b\x88\x86\x7b\x7b\x7a\x5e\x63\ \x65\x30\x39\x41\x13\x1c\x25\x20\x26\x2d\x4d\x4c\x4f\x72\x6f\x71\ \x82\x7f\x81\x8d\x8b\x8d\x92\x91\x93\x97\x97\x98\x98\x97\x9a\x9c\ \x9b\x9e\x9b\x9a\x9d\x99\x98\x9b\x98\x97\x9c\x96\x97\x9b\x94\x96\ \x98\x91\x93\x94\x8c\x8e\x8f\x8c\x8e\x8f\x8c\x8e\x8f\x8b\x8d\x8f\ \x88\x8a\x8e\x85\x88\x8c\x83\x86\x8a\x83\x86\x8a\x81\x86\x89\x82\ \x86\x89\x81\x86\x8a\x80\x85\x8a\x7c\x82\x87\x7d\x82\x87\x7b\x80\ \x85\x7a\x7f\x84\x7d\x82\x87\x77\x7e\x82\x64\x6d\x71\x5e\x68\x6c\ \x61\x6a\x6e\x5a\x62\x66\x11\x18\x1e\x16\x1a\x1d\x4c\x50\x54\x54\ \x5a\x5f\x46\x4f\x58\x4b\x54\x5d\x4f\x58\x5f\x56\x5f\x65\x73\x79\ \x80\x78\x81\x87\x7a\x82\x88\x7a\x82\x88\x7a\x82\x89\x7a\x83\x88\ \x7a\x82\x87\x7d\x85\x8c\x7b\x82\x89\x7e\x85\x8c\x80\x87\x8e\x80\ \x87\x8e\x7d\x84\x89\x7d\x84\x88\x80\x88\x8c\x80\x87\x8b\x81\x87\ \x8c\x83\x89\x8e\x81\x87\x8c\x86\x8c\x90\x85\x8b\x8f\x8a\x8f\x93\ \x8e\x91\x96\x8e\x92\x96\x90\x95\x99\x8f\x94\x97\x8f\x94\x97\x91\ \x96\x99\x91\x96\x99\x8f\x94\x97\x8d\x92\x95\x8a\x8e\x92\x55\x59\ \x5f\x0d\x0f\x0f\x00\x00\x00\x1f\x20\x21\xa2\xa7\xa8\x56\x5a\x5d\ \x3b\x3e\x40\x99\x9d\x9f\x75\x78\x7b\x8f\x92\x96\x6f\x73\x79\x73\ \x76\x7a\x9b\x9c\x9e\xa3\xa4\xa5\xaa\xac\xae\x9a\x9c\x9f\x58\x5b\ \x5e\x98\x9a\x9b\xa9\xab\xac\xab\xaf\xae\x8a\x8c\x8d\x00\x00\x00\ \x12\x13\x13\x5c\x5f\x5f\x57\x5b\x5a\x21\x22\x21\x0a\x0a\x0a\x00\ \x00\x00\x26\x26\x28\xa6\xa7\xa7\xb1\xb2\xb3\xad\xad\xaf\xab\xaa\ \xad\xad\xac\xae\xaa\xa9\xaa\xb0\xb0\xb0\x00\x00\x00\xb4\x9f\x93\ \xba\xa5\x97\xc1\xa9\x9f\xc6\xae\xa6\xc8\xb1\xa7\xcc\xb7\xae\xce\ \xbb\xb5\xcc\xbd\xb6\x7d\x67\x51\x35\x28\x1a\x3f\x2f\x1f\x4b\x38\ \x25\x45\x33\x22\x58\x43\x2c\x5c\x45\x2e\x4d\x3b\x26\x3c\x2d\x1d\ \x4f\x3d\x29\x57\x44\x30\x54\x42\x30\x61\x4f\x3f\x63\x57\x4a\x6b\ \x60\x55\x75\x6a\x60\x78\x6f\x67\x7f\x77\x70\x88\x81\x7a\x8c\x86\ \x81\x91\x8b\x86\x93\x8d\x87\x9b\x95\x90\xa7\xa0\x9b\xb2\xac\xa8\ \xbb\xb5\xb2\xc2\xbb\xb7\xca\xc2\xc0\xce\xc7\xc5\xcd\xc7\xc3\xcc\ \xc6\xc2\xc9\xc4\xc0\xc6\xc2\xc0\xc3\xbe\xbd\xbc\xb8\xb7\xb3\xae\ \xad\xa8\xa4\xa3\x97\x95\x94\x7b\x7c\x7b\x52\x59\x5d\x25\x30\x39\ \x16\x1f\x28\x33\x36\x3c\x61\x5e\x5f\x7e\x7b\x7d\x8d\x8a\x8c\x93\ \x90\x92\x99\x97\x99\x9e\x9d\x9f\xa0\x9f\xa1\x9f\x9f\xa1\x9e\x9d\ \x9f\x9c\x9b\x9d\x9d\x9c\xa0\x9d\x9c\xa0\x99\x99\x9b\x93\x95\x96\ \x91\x92\x93\x8e\x8f\x91\x8e\x8f\x91\x8e\x90\x93\x8c\x8e\x92\x8a\ \x8d\x91\x86\x89\x8d\x83\x88\x8b\x85\x89\x8e\x84\x88\x8c\x82\x87\ \x8a\x82\x87\x8c\x80\x85\x8a\x7d\x82\x87\x7c\x81\x86\x7b\x81\x86\ \x7b\x81\x86\x70\x78\x7c\x5e\x69\x6d\x6c\x75\x78\x6b\x75\x78\x40\ \x48\x4f\x07\x0b\x0f\x21\x29\x2f\x28\x2f\x35\x4a\x51\x58\x63\x6a\ \x72\x32\x3b\x47\x2c\x37\x41\x66\x6c\x72\x79\x80\x84\x7a\x81\x88\ \x7a\x82\x87\x7a\x81\x87\x7c\x83\x8a\x7d\x87\x8b\x7c\x85\x89\x7c\ \x85\x8b\x7c\x84\x8b\x7e\x86\x8b\x7e\x87\x8b\x7f\x87\x8d\x7f\x87\ \x8d\x82\x89\x8e\x84\x8a\x8f\x84\x8a\x8f\x85\x8b\x90\x83\x89\x8e\ \x84\x8a\x8f\x87\x8c\x91\x85\x8b\x90\x8c\x90\x95\x8a\x8e\x93\x8c\ \x90\x95\x8f\x93\x97\x8f\x94\x97\x8d\x92\x95\x8f\x94\x97\x91\x96\ \x99\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x95\x9a\x9e\x40\x46\x48\ \x06\x07\x07\x63\x68\x6b\x9f\xa3\xa4\x7b\x7f\x82\x3d\x42\x45\x6c\ \x70\x73\x4b\x4d\x51\x67\x69\x6e\xaa\xae\xb2\x74\x77\x7b\x79\x7c\ \x80\x98\x9a\x9c\xa6\xa7\xaa\xa4\xa6\xa9\xa9\xac\xac\x61\x63\x66\ \x8e\x8f\x91\x9e\xa0\xa0\x90\x93\x93\x2b\x2c\x2c\x33\x36\x36\x78\ \x7e\x7d\xa3\xa7\xa5\x47\x49\x48\x34\x35\x37\x49\x4c\x4e\x68\x6c\ \x6f\x72\x75\x79\xad\xae\xb0\xac\xab\xad\xb0\xaf\xb1\xb2\xb1\xb3\ \xaf\xae\xaf\xb1\xb0\xb1\x00\x00\x00\x54\x56\x58\x5b\x59\x58\x62\ \x5a\x59\x69\x5e\x5b\x73\x66\x5f\x7c\x71\x69\x81\x79\x73\x83\x79\ \x72\x86\x75\x66\x5d\x4e\x40\x50\x44\x39\x58\x4b\x40\x5d\x50\x46\ \x66\x58\x4d\x6b\x5e\x51\x6a\x5f\x55\x5f\x59\x51\x54\x50\x46\x58\ \x4f\x45\x74\x64\x5a\x9f\x8f\x87\xb2\xab\xa6\xba\xb5\xb0\xc0\xba\ \xb5\xc8\xc2\xbf\xcc\xc7\xc5\xcd\xc8\xc6\xcf\xc9\xc6\xcf\xc7\xc5\ \xca\xc4\xc0\xcc\xc4\xc1\xd3\xcd\xc9\xd7\xd1\xce\xd7\xd1\xce\xd8\ \xd1\xce\xd7\xd2\xcf\xd5\xd1\xce\xd5\xcf\xcc\xd3\xcd\xca\xd1\xc9\ \xc7\xcc\xc6\xc4\xc7\xc2\xbf\xc0\xbc\xbb\xb6\xb1\xb0\xa6\xa3\xa0\ \x93\x92\x8e\x72\x75\x74\x42\x49\x4f\x19\x24\x2c\x1b\x25\x2e\x48\ \x47\x4d\x72\x6e\x70\x88\x85\x87\x93\x91\x93\x9b\x99\x9b\x9d\x9c\ \x9e\xa1\xa0\xa2\xa1\xa0\xa2\xa2\xa1\xa3\xa1\xa0\xa4\xa0\x9f\xa3\ \x9e\x9e\xa2\x9d\x9d\xa0\x99\x99\x9b\x95\x96\x98\x91\x93\x94\x91\ \x93\x95\x91\x92\x96\x90\x92\x96\x8b\x8e\x92\x8a\x8d\x91\x87\x8a\ \x8f\x86\x8a\x8f\x85\x89\x8e\x83\x88\x8c\x83\x89\x8d\x81\x87\x8c\ \x80\x84\x89\x7d\x81\x85\x7c\x80\x83\x7b\x7f\x83\x7c\x81\x84\x68\ \x70\x73\x55\x60\x64\x6b\x73\x76\x75\x7c\x7f\x45\x4f\x53\x03\x06\ \x09\x23\x2b\x32\x22\x2a\x30\x52\x59\x61\x6c\x73\x7a\x35\x3f\x48\ \x1e\x28\x31\x60\x66\x6c\x7b\x81\x85\x79\x81\x87\x7c\x85\x8c\x7b\ \x84\x8a\x7c\x84\x8b\x7e\x86\x8d\x7d\x85\x8b\x7e\x87\x8e\x7e\x87\ \x8d\x7e\x86\x8c\x7d\x86\x8c\x7f\x87\x8d\x82\x8b\x8f\x82\x8b\x8f\ \x82\x8a\x8e\x83\x89\x8d\x83\x8a\x8e\x82\x88\x8d\x87\x8c\x91\x86\ \x8a\x8f\x89\x8d\x92\x8e\x92\x97\x8a\x8e\x92\x8c\x90\x94\x8e\x92\ \x96\x8f\x92\x97\x90\x95\x99\x93\x97\x9b\x92\x96\x99\x91\x96\x99\ \x91\x96\x99\x94\x99\x9b\x93\x97\x9b\x97\x9d\xa1\x4e\x55\x58\x70\ \x76\x7a\x8d\x90\x90\x4f\x53\x55\x97\x9a\x9d\x70\x75\x79\x76\x7c\ \x80\x9b\x9e\xa2\x9e\xa0\xa4\xab\xad\xb1\x7e\x83\x86\x6d\x70\x72\ \x91\x93\x94\xa7\xa9\xa9\xaa\xac\xad\xa7\xaa\xab\x6f\x71\x72\x3e\ \x3d\x3d\x28\x27\x27\x31\x31\x31\x47\x49\x49\x9d\xa0\xa0\x74\x76\ \x73\x29\x29\x26\x30\x31\x32\xa3\xa7\xaa\xb5\xba\xbb\xae\xb1\xb3\ \xb0\xb0\xb2\xb4\xb3\xb5\xaf\xae\xb0\xb5\xb4\xb6\xb5\xb5\xb7\xb3\ \xb1\xb4\x00\x00\x00\x83\x8b\x8b\x78\x80\x7f\x69\x75\x75\x64\x6f\ \x70\x65\x6e\x6e\x67\x70\x6f\x66\x6f\x6e\x62\x6b\x6a\x63\x69\x68\ \x63\x69\x65\x63\x67\x65\x65\x69\x68\x69\x6c\x6c\x69\x6e\x6e\x6c\ \x71\x6f\x71\x78\x75\x75\x7d\x7a\x7d\x82\x7f\x8e\x8b\x88\xae\xa0\ \x96\xca\xbc\xb4\xd2\xcb\xc8\xd4\xcd\xcb\xd4\xce\xca\xd5\xd0\xcd\ \xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xcc\xc8\xd3\xcc\xc7\xd7\ \xd0\xcb\xde\xd7\xd3\xdf\xd8\xd5\xdd\xd8\xd5\xdd\xd8\xd5\xdc\xd7\ \xd5\xdc\xd7\xd4\xdb\xd5\xd2\xd8\xd1\xce\xd6\xce\xce\xd0\xca\xc7\ \xcb\xc4\xc3\xc3\xbe\xbd\xb6\xb1\xb0\xa5\xa2\xa0\x8a\x89\x88\x67\ \x6a\x6b\x33\x3a\x40\x13\x1c\x24\x28\x2e\x36\x5c\x5a\x5e\x7e\x7a\ \x7c\x8f\x8d\x8f\x9a\x97\x99\xa1\x9d\x9f\xa0\x9f\xa1\xa4\xa3\xa5\ \xa4\xa3\xa5\xa3\xa2\xa5\xa3\xa2\xa6\xa0\xa0\xa4\x9e\x9f\xa2\x9b\ \x9b\x9f\x98\x99\x9c\x94\x97\x97\x93\x95\x96\x91\x93\x95\x90\x92\ \x96\x8f\x92\x96\x8c\x8f\x93\x88\x8c\x90\x87\x8a\x8f\x85\x89\x8e\ \x84\x88\x8d\x83\x87\x8c\x82\x87\x8c\x81\x87\x8c\x80\x85\x8a\x7c\ \x81\x85\x7c\x81\x85\x7d\x82\x86\x77\x7e\x81\x66\x6f\x72\x5d\x68\ \x6c\x62\x6c\x70\x73\x79\x7d\x5c\x63\x68\x07\x0c\x11\x1a\x20\x25\ \x28\x2f\x35\x4d\x55\x5c\x46\x50\x5a\x47\x53\x5c\x2b\x39\x41\x3e\ \x49\x52\x71\x77\x7e\x7d\x84\x8a\x7b\x83\x89\x7e\x86\x8d\x7d\x85\ \x8c\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\ \x7d\x85\x8b\x7d\x86\x8c\x81\x89\x8e\x81\x88\x8d\x82\x89\x8e\x82\ \x88\x8d\x84\x89\x8e\x88\x8e\x93\x89\x8d\x92\x86\x8b\x90\x89\x8d\ \x92\x89\x8d\x92\x8d\x91\x96\x8c\x91\x95\x8c\x91\x95\x8f\x93\x97\ \x95\x99\x9d\x94\x99\x9c\x8e\x93\x96\x90\x94\x98\x94\x99\x9c\x96\ \x9a\x9d\x94\x97\x9b\x91\x94\x98\x9b\x9f\xa3\x69\x6d\x70\x66\x69\ \x6b\x57\x5b\x5d\xa6\xaa\xab\x9d\xa0\xa4\x7a\x7f\x82\x6f\x73\x76\ \x94\x95\x99\xa3\xa5\xa8\xab\xaf\xb0\x8f\x93\x95\x63\x66\x68\x8f\ \x91\x92\xa8\xa9\xa9\xa9\xaa\xa9\xab\xad\xad\x24\x24\x25\x00\x00\ \x00\x09\x0a\x0a\x38\x3a\x3b\x57\x58\x59\x48\x48\x46\x08\x08\x07\ \x00\x00\x00\x7f\x80\x81\xb1\xb3\xb4\xad\xad\xae\xb4\xb3\xb5\xae\ \xad\xaf\xb2\xb1\xb3\xb3\xb3\xb4\xb6\xb6\xb7\xb2\xb0\xb3\x00\x00\ \x00\xdf\xd6\xd0\xdc\xd3\xcc\xd5\xcf\xc8\xd1\xcd\xc7\xd0\xcb\xc6\ \xce\xc9\xc2\xca\xc7\xc2\xc6\xc3\xbf\xc4\xc1\xbc\xc3\xc0\xba\xc3\ \xbf\xbb\xc3\xc0\xba\xc3\xbe\xb9\xc2\xbd\xb8\xc5\xc0\xbc\xc8\xc3\ \xbd\xca\xc5\xc0\xcd\xc7\xc3\xd3\xca\xc4\xd7\xce\xc8\xdb\xd3\xcf\ \xdc\xd6\xd2\xdc\xd5\xd3\xdc\xd6\xd1\xdc\xd6\xd2\xdb\xd4\xd1\xdc\ \xd6\xd2\xdd\xd7\xd3\xd8\xd1\xcc\xd9\xd1\xcd\xde\xd7\xd2\xe3\xdd\ \xd9\xe3\xdd\xda\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdd\xda\xde\xda\xd8\ \xdc\xd8\xd6\xdb\xd6\xd3\xd7\xd2\xd1\xd2\xcc\xc9\xca\xc5\xc4\xc1\ \xbc\xbc\xb5\xb0\xb0\x9f\x9c\x9d\x81\x82\x82\x53\x59\x5c\x22\x2b\ \x32\x18\x1f\x28\x3c\x3f\x45\x6b\x68\x6b\x86\x82\x83\x95\x92\x93\ \x9e\x9b\x9d\xa1\x9e\xa0\xa5\xa3\xa5\xa4\xa3\xa5\xa4\xa3\xa5\xa4\ \xa3\xa6\xa3\xa3\xa7\xa1\xa2\xa5\x9b\x9c\x9f\x99\x9a\x9d\x97\x98\ \x9b\x94\x95\x97\x92\x94\x95\x90\x92\x96\x92\x95\x99\x8f\x93\x97\ \x8c\x8f\x94\x89\x8e\x93\x88\x8c\x90\x86\x8a\x8e\x87\x8b\x90\x84\ \x88\x8d\x82\x87\x8c\x7f\x85\x8a\x7e\x84\x88\x7b\x81\x85\x7a\x80\ \x83\x7c\x83\x86\x73\x79\x7d\x65\x6d\x72\x70\x77\x7b\x66\x6f\x74\ \x67\x6e\x75\x61\x69\x6e\x0b\x12\x17\x0b\x0e\x13\x18\x1d\x20\x3b\ \x42\x48\x36\x40\x4a\x59\x61\x68\x4b\x57\x5e\x3a\x48\x50\x5e\x66\ \x6e\x78\x7d\x83\x7d\x83\x89\x7d\x84\x8b\x7e\x85\x8c\x7f\x87\x8e\ \x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x87\x8f\x80\x87\x8e\x81\ \x89\x91\x7f\x87\x8c\x81\x88\x8c\x85\x8b\x90\x80\x86\x8b\x82\x87\ \x8c\x8b\x8f\x94\x89\x8d\x92\x88\x8c\x91\x8a\x8e\x94\x8c\x90\x95\ \x8f\x93\x98\x90\x93\x99\x8d\x91\x96\x8d\x91\x96\x92\x96\x9b\x91\ \x95\x99\x95\x99\x9c\x92\x97\x9a\x93\x97\x9a\x96\x99\x9d\x94\x96\ \x9a\x96\x9a\x9d\x97\x9a\x9e\x96\x9a\x9d\x6f\x75\x76\x68\x6c\x6f\ \x94\x97\x99\xa0\xa3\xa7\xa0\xa4\xa7\x80\x84\x88\x6d\x70\x75\x93\ \x95\x98\xa6\xa9\xab\xa7\xaa\xac\x97\x99\x9c\x6c\x70\x73\x83\x86\ \x85\xa7\xa8\xa7\x91\x92\x92\x40\x41\x41\x06\x06\x06\x5f\x62\x62\ \xa1\xa3\xa3\x65\x65\x64\x1b\x1b\x1b\x24\x27\x27\x2d\x2f\x31\x6b\ \x6d\x70\x95\x98\x99\xb0\xb1\xb1\xb3\xb2\xb4\xab\xac\xae\xb4\xb3\ \xb5\xb3\xb2\xb4\xb1\xb0\xb2\xb2\xb1\xb3\x00\x00\x00\xe1\xd9\xd5\ \xe2\xd9\xd5\xe2\xda\xd6\xe3\xdb\xd8\xe4\xdd\xd9\xe6\xdd\xd8\xe4\ \xdb\xd7\xe5\xdd\xd9\xe4\xdc\xd8\xe4\xdd\xd8\xe3\xdc\xd8\xe3\xdc\ \xd9\xe2\xdc\xd8\xe1\xd9\xd5\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\ \xde\xd7\xd3\xde\xd5\xd2\xde\xd7\xd3\xdf\xd8\xd4\xde\xd8\xd4\xdf\ \xd9\xd5\xdf\xd9\xd5\xe0\xda\xd5\xe0\xdb\xd7\xe0\xdb\xd6\xde\xd8\ \xd3\xda\xd3\xcf\xdc\xd4\xd1\xe2\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xdd\ \xe4\xdf\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe0\xdb\xd9\xde\xd9\xd8\xdb\ \xd5\xd3\xd6\xcf\xcd\xcf\xca\xc7\xc8\xc3\xc2\xbb\xb6\xb7\xae\xa9\ \xaa\x95\x93\x94\x72\x75\x76\x42\x4a\x4f\x1b\x26\x2e\x23\x29\x32\ \x4e\x4f\x55\x79\x75\x76\x8c\x86\x87\x98\x95\x95\x9f\x9d\x9e\xa2\ \xa1\xa3\xa5\xa3\xa5\xa3\xa2\xa4\xa4\xa3\xa6\xa4\xa3\xa6\xa2\xa1\ \xa3\xa1\xa0\xa4\x9d\x9f\xa2\x9b\x9c\xa0\x97\x98\x9c\x94\x95\x98\ \x91\x93\x96\x8f\x92\x96\x90\x93\x97\x8f\x93\x97\x8a\x8e\x93\x8b\ \x90\x93\x89\x8d\x92\x87\x8b\x90\x85\x8a\x8f\x83\x88\x8d\x82\x87\ \x8c\x80\x86\x8b\x7d\x84\x88\x7b\x82\x86\x7b\x81\x85\x7b\x82\x85\ \x74\x7b\x7f\x65\x6e\x73\x74\x7a\x7f\x73\x79\x7f\x61\x6a\x70\x59\ \x61\x67\x0d\x15\x19\x05\x08\x0d\x09\x0c\x10\x1b\x1f\x23\x4d\x53\ \x59\x62\x68\x6e\x44\x4d\x54\x44\x50\x57\x5e\x66\x6e\x69\x6f\x77\ \x7d\x82\x88\x7c\x82\x89\x7d\x84\x8b\x80\x87\x8e\x80\x88\x8f\x7f\ \x87\x8e\x7f\x87\x8f\x81\x88\x8f\x82\x89\x90\x82\x8b\x91\x81\x89\ \x8f\x82\x88\x8d\x85\x8b\x90\x84\x8a\x8f\x85\x89\x8e\x8c\x90\x95\ \x87\x8b\x90\x87\x8b\x90\x8a\x8e\x93\x8f\x93\x98\x8f\x93\x98\x90\ \x94\x99\x8d\x91\x96\x8d\x91\x96\x8f\x93\x98\x91\x95\x99\x99\x9d\ \xa1\x95\x99\x9d\x93\x97\x9b\x92\x96\x9a\x95\x98\x9c\x97\x99\x9e\ \x9b\x9e\xa2\x98\x9c\x9f\xa4\xa7\xaa\x82\x86\x8a\x6e\x71\x76\x8e\ \x90\x94\xa0\xa4\xa6\xa2\xa6\xa8\x88\x8c\x90\x70\x73\x79\x8b\x8e\ \x91\xa5\xa7\xa8\xa6\xa8\xa9\xa7\xaa\xab\x73\x77\x78\x73\x76\x77\ \x33\x33\x33\x21\x21\x21\x17\x18\x18\x91\x93\x92\x8c\x8d\x89\x75\ \x75\x70\x3a\x3b\x3a\x72\x76\x77\xaf\xb5\xb7\x91\x97\x9b\x78\x7c\ \x7f\x8c\x8d\x8e\xac\xad\xac\xb1\xb2\xb4\xb3\xb3\xb4\xb3\xb2\xb4\ \xb4\xb4\xb6\xb6\xb5\xb6\x00\x00\x00\xdb\xd3\xd0\xda\xd3\xcf\xdb\ \xd3\xd0\xdd\xd5\xd3\xde\xd7\xd4\xdf\xd7\xd3\xde\xd6\xd2\xdd\xd5\ \xd2\xde\xd7\xd4\xdf\xd8\xd5\xdf\xd9\xd5\xdf\xd9\xd6\xdf\xd9\xd6\ \xde\xd8\xd5\xdd\xd8\xd4\xde\xd7\xd3\xdd\xd6\xd3\xdd\xd6\xd3\xde\ \xd7\xd4\xe0\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe0\xda\xd6\xe1\xdb\ \xd7\xe2\xdc\xd7\xe3\xdd\xd8\xe2\xdc\xd7\xdd\xd6\xd1\xdb\xd4\xd0\ \xe0\xd9\xd6\xe4\xdf\xdc\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xe0\xdd\xe4\ \xdf\xdc\xe2\xdd\xdb\xe1\xdc\xda\xdf\xda\xd9\xdb\xd5\xd3\xd6\xce\ \xcc\xd0\xc8\xc7\xc6\xc1\xc0\xb9\xb4\xb5\xa7\xa3\xa4\x8d\x8d\x8d\ \x62\x67\x6b\x2f\x3a\x41\x17\x23\x2b\x2e\x34\x3c\x60\x5f\x62\x83\ \x7f\x7f\x92\x8d\x8d\x9d\x9a\x9a\xa3\xa2\xa3\xa4\xa3\xa5\xa5\xa3\ \xa5\xa5\xa4\xa5\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9f\x9f\xa1\ \x9b\x9d\x9f\x98\x9a\x9d\x96\x97\x9b\x94\x96\x99\x90\x93\x97\x8f\ \x92\x96\x8e\x91\x95\x8c\x90\x94\x89\x8c\x91\x8a\x8f\x93\x87\x8b\ \x90\x88\x8c\x91\x84\x89\x8e\x83\x89\x8e\x83\x89\x8e\x80\x86\x8b\ \x7d\x84\x88\x7c\x82\x87\x7c\x82\x87\x7b\x81\x85\x78\x7e\x83\x6c\ \x74\x79\x69\x71\x77\x78\x7e\x83\x6a\x71\x76\x50\x59\x5f\x0d\x15\ \x1b\x0e\x0f\x17\x14\x16\x1d\x08\x09\x0b\x45\x49\x4d\x57\x5e\x64\ \x1d\x25\x2b\x42\x49\x4e\x73\x79\x7e\x67\x6d\x75\x6e\x74\x7b\x7c\ \x82\x89\x80\x86\x8d\x7f\x86\x8e\x7f\x87\x8e\x80\x88\x8f\x7e\x86\ \x8d\x80\x87\x8e\x81\x89\x8e\x80\x89\x8d\x82\x8b\x8f\x83\x8a\x8f\ \x85\x8b\x90\x88\x8e\x93\x87\x8d\x92\x8c\x91\x96\x86\x8b\x90\x88\ \x8d\x91\x8a\x8e\x93\x8e\x92\x97\x8f\x93\x97\x92\x96\x9b\x8c\x90\ \x95\x8c\x90\x95\x8f\x94\x98\x92\x97\x9a\x94\x99\x9d\x95\x99\x9d\ \x97\x9b\x9f\x96\x9a\x9e\x96\x99\x9d\x97\x9a\x9e\x9e\xa1\xa5\x9a\ \x9d\xa1\xa0\xa3\xa6\xa2\xa6\xa8\x87\x8a\x8f\x74\x78\x7c\x8b\x8e\ \x91\xa1\xa5\xa6\xa6\xa9\xac\x90\x93\x98\x78\x7b\x80\x82\x83\x87\ \xa5\xa8\xa8\xa7\xaa\xa9\xa4\xa8\xa8\x7e\x82\x84\x00\x00\x00\x00\ \x00\x00\x08\x07\x07\x4b\x4b\x4a\x7a\x7a\x75\x33\x32\x2f\x00\x00\ \x00\x4f\x4f\x4f\xa9\xaa\xac\xaf\xb2\xb4\xa5\xa9\xab\x85\x87\x89\ \x7f\x7f\x7f\xa7\xa7\xa7\xb6\xb6\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb3\ \xb3\xb4\x00\x00\x00\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe1\xdb\ \xd8\xe1\xdb\xd9\xe0\xda\xd7\xe0\xda\xd7\xdf\xd9\xd7\xe1\xdb\xd8\ \xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdc\xda\xe1\xdc\xda\xe1\ \xdc\xd9\xe1\xda\xd7\xe0\xd9\xd5\xe2\xda\xd7\xe3\xdc\xd8\xe3\xdd\ \xd9\xe3\xdd\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe2\xdc\xd7\xe1\xdb\xd6\ \xe2\xdb\xd7\xe2\xdd\xd8\xdc\xd6\xd1\xdc\xd5\xd1\xe1\xdb\xd6\xe7\ \xe1\xde\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe3\xde\ \xdc\xe0\xdb\xd9\xde\xd9\xd7\xda\xd5\xd2\xd5\xce\xcb\xce\xc6\xc4\ \xc1\xbc\xbb\xb5\xb1\xb1\x9d\x9b\x9c\x80\x81\x83\x50\x58\x5e\x1f\ \x2b\x34\x19\x24\x2c\x42\x45\x4b\x6f\x6c\x6b\x88\x84\x82\x95\x91\ \x90\x9f\x9d\x9d\xa2\xa1\xa3\xa5\xa3\xa5\xa6\xa4\xa6\xa4\xa3\xa5\ \xa3\xa2\xa4\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9d\x9e\x98\x9a\x9c\x96\ \x98\x9a\x95\x97\x9a\x91\x94\x98\x8f\x92\x96\x8d\x91\x95\x8c\x91\ \x94\x8a\x8e\x93\x87\x8c\x91\x87\x8c\x91\x85\x8a\x8f\x87\x8c\x91\ \x81\x87\x8c\x83\x89\x8e\x81\x88\x8d\x7f\x86\x8b\x7e\x85\x8a\x7d\ \x85\x8a\x7d\x84\x89\x7b\x83\x86\x7b\x82\x86\x74\x7c\x80\x64\x6d\ \x71\x6d\x74\x79\x75\x7a\x7f\x5d\x64\x6a\x0f\x16\x1b\x09\x0a\x0d\ \x28\x2e\x36\x10\x16\x1a\x0c\x0d\x0f\x18\x1b\x1e\x01\x04\x07\x3e\ \x42\x47\x7c\x7f\x84\x78\x7d\x84\x61\x68\x70\x6f\x74\x7c\x82\x88\ \x8f\x7e\x84\x8c\x7e\x86\x8d\x81\x89\x90\x7f\x87\x8e\x80\x88\x8f\ \x7f\x87\x8e\x82\x8a\x90\x86\x8e\x93\x85\x8c\x93\x85\x8b\x91\x88\ \x8e\x93\x86\x8c\x91\x89\x8f\x94\x88\x8d\x92\x8a\x8f\x93\x8f\x93\ \x98\x8f\x93\x98\x8e\x93\x98\x90\x95\x9a\x8b\x8f\x94\x8a\x8f\x93\ \x91\x95\x9a\x92\x97\x9b\x93\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x97\ \x9b\x9f\x99\x9c\xa0\x9c\x9f\xa3\x99\x9c\xa0\x9c\x9f\xa3\xa2\xa5\ \xa9\xa0\xa3\xa7\x9f\xa3\xa6\x95\x99\x9c\x73\x76\x7b\x83\x86\x89\ \xa0\xa3\xa5\xa4\xa8\xaa\x98\x9c\xa0\x7b\x7d\x83\x73\x74\x77\xa2\ \xa5\xa5\xa4\xa6\xa6\xb1\xb4\xb5\x19\x1a\x1a\x00\x00\x00\x00\x00\ \x00\x1d\x1e\x1d\x6a\x6b\x6a\x27\x29\x28\x00\x01\x01\x30\x31\x33\ \x8a\x8a\x8c\xad\xae\xb0\xb1\xb3\xb4\xae\xb1\xb2\x91\x91\x92\x76\ \x76\x76\x8c\x8a\x8d\xbd\xbc\xbe\xb0\xaf\xb0\xb4\xb3\xb5\x00\x00\ \x00\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd8\xe2\xdc\xd8\ \xe1\xdb\xd7\xe1\xdb\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdc\xd9\xe3\ \xde\xdb\xe3\xde\xdb\xe1\xdc\xda\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\ \xd8\xe0\xda\xd5\xe1\xda\xd6\xe2\xdb\xd7\xe2\xdc\xd7\xe3\xdc\xd9\ \xe3\xdd\xda\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xdf\xdc\xe3\ \xdd\xd8\xde\xd8\xd3\xde\xd7\xd4\xe3\xdd\xd8\xe7\xe1\xde\xe7\xe2\ \xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe2\xdd\xda\xde\xd9\xd7\ \xdc\xd6\xd5\xd8\xd2\xcf\xd1\xca\xc7\xc9\xc2\xbe\xbf\xba\xb7\xaf\ \xac\xac\x95\x94\x94\x70\x73\x76\x3d\x46\x4d\x19\x26\x2e\x22\x2c\ \x34\x53\x54\x58\x7d\x78\x77\x8d\x89\x88\x9a\x96\x95\xa2\x9f\xa0\ \xa5\xa3\xa5\xa5\xa4\xa6\xa4\xa3\xa5\xa4\xa3\xa5\xa2\xa1\xa3\xa1\ \xa0\xa2\xa0\xa0\xa2\x9b\x9c\x9d\x99\x99\x9b\x94\x96\x97\x92\x94\ \x96\x91\x93\x97\x90\x94\x98\x8d\x91\x95\x8c\x91\x95\x8a\x8f\x93\ \x87\x8c\x91\x85\x8b\x90\x86\x8b\x90\x82\x88\x8d\x82\x88\x8d\x82\ \x89\x8e\x80\x88\x8e\x7e\x85\x8b\x7c\x84\x89\x7c\x85\x8a\x7c\x83\ \x88\x7b\x82\x86\x7a\x83\x87\x78\x81\x85\x6b\x74\x78\x63\x6b\x70\ \x72\x77\x7c\x73\x77\x7d\x28\x31\x36\x06\x06\x07\x49\x4e\x54\x4f\ \x57\x5d\x0c\x13\x18\x00\x00\x03\x1d\x22\x27\x4e\x54\x5b\x71\x76\ \x7b\x82\x86\x8c\x72\x78\x80\x60\x67\x6f\x76\x7d\x84\x7f\x85\x8b\ \x7f\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x8e\x80\x88\x8e\x84\ \x8b\x91\x86\x8d\x93\x86\x8d\x94\x85\x8c\x92\x86\x8c\x93\x87\x8d\ \x92\x87\x8d\x93\x8b\x8f\x95\x8c\x91\x96\x90\x94\x99\x90\x94\x99\ \x8f\x94\x99\x8f\x94\x99\x8e\x92\x97\x8e\x92\x97\x92\x96\x9b\x94\ \x98\x9d\x93\x97\x9c\x93\x97\x9b\x92\x96\x9a\x96\x99\x9d\x97\x9a\ \x9e\x9b\x9e\xa2\x98\x9b\x9f\x9c\x9f\xa3\xa1\xa4\xa8\xa1\xa4\xa8\ \xa0\xa3\xa6\xa2\xa6\xa9\x95\x98\x9c\x77\x7b\x7f\x7e\x80\x84\x9e\ \xa0\xa3\xa4\xa7\xaa\xa0\xa3\xa6\x82\x84\x88\x6e\x70\x74\x99\x9c\ \x9c\xae\xb0\xb0\x72\x75\x75\x00\x00\x00\x00\x00\x00\x19\x1a\x1a\ \x83\x87\x86\x92\x98\x95\x7c\x81\x81\x88\x8c\x8d\x7d\x7d\x81\x81\ \x82\x86\xb1\xb2\xb3\xac\xac\xad\xb0\xb1\xb1\x9e\x9e\x9e\x80\x81\ \x81\x78\x78\x7a\xb1\xb0\xb2\xb8\xb7\xb9\x00\x00\x00\xde\xd7\xd5\ \xdd\xd7\xd4\xde\xd8\xd6\xde\xd8\xd5\xdd\xd8\xd4\xdd\xd7\xd4\xde\ \xd7\xd3\xde\xd7\xd3\xdf\xd8\xd5\xe0\xd9\xd6\xe1\xdc\xda\xe1\xdc\ \xda\xe0\xdb\xd9\xe0\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd7\ \xe1\xdb\xd8\xe3\xdc\xd9\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdf\xdc\xe5\ \xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe8\xe3\xe0\xe5\xdf\xdc\xe1\xdb\ \xd7\xe2\xdb\xd8\xe6\xe0\xdc\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ \xe5\xe0\xdd\xe3\xde\xdb\xe0\xdb\xd8\xdd\xd8\xd7\xda\xd5\xd4\xd5\ \xce\xcc\xd0\xc9\xc6\xc7\xbf\xbc\xb9\xb4\xb1\xa5\xa3\xa3\x89\x8a\ \x8a\x5e\x64\x68\x2c\x37\x3e\x19\x25\x2c\x32\x39\x3f\x65\x63\x66\ \x85\x82\x83\x94\x91\x92\x9d\x9b\x9c\xa2\x9f\xa2\xa6\xa5\xa6\xa6\ \xa5\xa7\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\xa4\xa3\xa2\xa4\x9f\xa0\ \xa1\x9b\x9d\x9e\x98\x99\x9a\x93\x95\x96\x91\x93\x94\x91\x94\x95\ \x8f\x93\x96\x8c\x91\x94\x8c\x90\x95\x89\x8d\x92\x88\x8c\x91\x85\ \x89\x8e\x84\x89\x8f\x82\x88\x8e\x82\x89\x8e\x80\x87\x8e\x7d\x86\ \x8c\x7e\x86\x8b\x7e\x85\x8a\x7c\x85\x8a\x7a\x81\x85\x79\x81\x85\ \x79\x82\x87\x79\x82\x86\x74\x7d\x81\x67\x71\x75\x62\x6b\x6f\x70\ \x76\x7a\x2c\x36\x3a\x05\x06\x07\x4e\x53\x57\x79\x7e\x82\x4c\x56\ \x5c\x38\x42\x49\x61\x65\x6b\x6c\x73\x78\x60\x68\x6d\x75\x7b\x81\ \x7f\x85\x8c\x70\x78\x7f\x60\x6b\x72\x79\x80\x87\x81\x87\x8e\x7e\ \x86\x8d\x81\x88\x8e\x83\x8b\x91\x83\x8b\x91\x85\x8b\x91\x87\x8d\ \x92\x89\x90\x95\x87\x8d\x92\x89\x8f\x95\x84\x8a\x90\x87\x8d\x93\ \x8a\x90\x95\x8c\x91\x96\x8e\x91\x96\x8c\x90\x95\x8f\x93\x98\x90\ \x95\x9a\x93\x97\x9c\x91\x95\x9a\x92\x96\x9a\x96\x99\x9e\x97\x9c\ \x9f\x94\x99\x9d\x93\x97\x9a\x98\x9b\x9f\x99\x9c\xa0\x98\x9b\x9f\ \x9c\x9f\xa3\x9b\x9e\xa2\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa1\ \xa4\xa7\xa0\xa4\xa5\x9c\x9f\xa1\x7d\x80\x84\x72\x75\x7a\x9a\x9d\ \xa0\xa6\xa9\xaa\xa7\xa9\xac\x92\x95\x98\x69\x6d\x70\x8f\x91\x92\ \xaf\xb3\xb2\x56\x5a\x5c\x00\x00\x00\x02\x02\x02\x4a\x4c\x4b\xa4\ \xa7\xa5\xb8\xba\xb9\xb1\xb2\xb2\xa7\xa7\xa9\x89\x8b\x8e\x73\x74\ \x78\xab\xaa\xac\xb3\xb3\xb3\xb4\xb4\xb4\xaa\xab\xab\x91\x92\x94\ \x6f\x70\x72\xa3\xa1\xa4\x00\x00\x00\xe2\xde\xdd\xe2\xde\xdc\xe3\ \xdd\xdb\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd8\xe0\xdb\ \xd8\xe2\xdd\xda\xe3\xdd\xda\xe4\xde\xdc\xe5\xe0\xde\xe3\xde\xdb\ \xe3\xde\xdb\xe4\xdf\xdd\xe5\xdf\xdd\xe5\xdf\xdd\xe5\xe0\xde\xe7\ \xe2\xe1\xe8\xe3\xe2\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe5\xe1\xe9\xe4\ \xe2\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xde\xdb\xe1\xda\xd7\xe4\xdd\xda\ \xe7\xe1\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xdf\xdc\xe3\ \xde\xda\xe0\xdb\xd8\xdc\xd7\xd5\xd9\xd3\xd1\xd5\xce\xcc\xcc\xc5\ \xc4\xc2\xbc\xbb\xb1\xac\xab\x9e\x9a\x9a\x7c\x7d\x7f\x49\x53\x56\ \x20\x2b\x32\x1d\x26\x2e\x47\x48\x4e\x75\x72\x74\x8b\x87\x88\x99\ \x96\x97\xa2\xa0\xa1\xa3\xa0\xa2\xa5\xa3\xa4\xa5\xa4\xa6\xa6\xa5\ \xa7\xa4\xa3\xa5\xa2\xa1\xa3\x9f\x9e\xa0\x9d\x9f\xa0\x9b\x9d\x9e\ \x95\x97\x98\x91\x94\x95\x90\x93\x94\x90\x93\x94\x8d\x92\x94\x8d\ \x91\x94\x8a\x8e\x92\x88\x8c\x90\x86\x8a\x90\x84\x89\x8e\x85\x8b\ \x91\x81\x88\x8e\x81\x87\x8d\x80\x87\x8d\x7e\x86\x8c\x7d\x84\x88\ \x7c\x82\x88\x7c\x83\x88\x7b\x83\x87\x7a\x83\x86\x7a\x83\x89\x7b\ \x84\x89\x76\x7f\x83\x6f\x79\x7d\x5e\x69\x6d\x4a\x54\x5b\x28\x33\ \x3a\x02\x04\x05\x32\x34\x37\x78\x7c\x80\x70\x78\x7d\x5d\x64\x6b\ \x6c\x71\x76\x7b\x81\x85\x6c\x74\x79\x61\x69\x70\x78\x7f\x85\x7f\ \x85\x8c\x69\x73\x7a\x62\x6c\x74\x7b\x82\x89\x80\x89\x8e\x80\x89\ \x8e\x81\x8a\x8f\x83\x8b\x8f\x85\x8c\x91\x88\x8e\x93\x88\x8d\x92\ \x87\x8c\x91\x87\x8d\x92\x88\x8e\x93\x86\x8d\x92\x8d\x92\x97\x8d\ \x92\x97\x8e\x93\x98\x90\x94\x99\x8d\x91\x96\x92\x96\x9b\x93\x97\ \x9c\x94\x97\x9c\x92\x95\x9a\x91\x95\x99\x97\x9a\x9f\x98\x9c\xa1\ \x95\x99\x9d\x96\x99\x9d\x97\x9a\x9d\x9a\x9d\xa0\x9c\x9f\xa3\x9c\ \x9f\xa2\x9f\xa1\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x9f\xa2\xa5\xa0\xa2\ \xa5\xa2\xa5\xa9\xa0\xa3\xa7\x85\x89\x8d\x6b\x6f\x72\x98\x9a\x9c\ \xa1\xa2\xa5\xa4\xa6\xaa\x99\x9c\xa0\x6d\x71\x74\x7f\x81\x82\xa8\ \xab\xac\x75\x79\x7a\x44\x48\x4a\x76\x78\x7b\x78\x79\x7a\x8d\x8c\ \x8b\xaf\xae\xae\xb1\xb1\xb2\xae\xb0\xb1\x9e\x9f\xa2\x6d\x6d\x6f\ \x97\x97\x98\xba\xb9\xba\xb0\xaf\xb0\xb2\xb4\xb5\x9b\x9e\x9f\x74\ \x74\x75\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe1\xe6\xe1\ \xde\xe5\xe1\xde\xe5\xe2\xde\xe6\xe3\xdf\xe7\xe2\xdf\xe8\xe3\xe0\ \xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe3\xe0\xe9\ \xe4\xe1\xe9\xe4\xe2\xe9\xe5\xe4\xe9\xe5\xe4\xea\xe6\xe5\xea\xe5\ \xe4\xe9\xe5\xe3\xea\xe5\xe3\xeb\xe6\xe4\xea\xe5\xe3\xea\xe6\xe3\ \xe8\xe2\xdf\xe2\xdd\xda\xe0\xda\xd7\xe5\xde\xda\xe7\xe2\xdd\xe7\ \xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdb\xdf\xda\ \xd7\xdb\xd6\xd3\xd8\xd2\xd0\xd2\xcc\xc9\xca\xc2\xc1\xbd\xb7\xb6\ \xad\xa8\xa7\x95\x92\x92\x6d\x6f\x71\x3b\x45\x49\x1c\x26\x2d\x28\ \x2e\x35\x59\x58\x5d\x7f\x7b\x7c\x90\x8d\x8d\x9a\x98\x98\xa2\xa0\ \xa0\xa5\xa3\xa3\xa5\xa1\xa3\xa5\xa4\xa5\xa5\xa4\xa6\xa4\xa3\xa5\ \xa3\xa2\xa4\xa1\xa0\xa1\x9c\x9c\x9d\x98\x99\x9a\x94\x96\x97\x91\ \x94\x94\x91\x95\x97\x8f\x92\x95\x8c\x91\x94\x8a\x8f\x92\x86\x8b\ \x8f\x87\x8d\x93\x88\x8e\x95\x85\x8b\x92\x83\x89\x90\x82\x8a\x91\ \x82\x89\x8f\x83\x8a\x91\x81\x87\x8e\x80\x86\x8c\x7e\x84\x89\x7c\ \x82\x87\x7b\x81\x86\x78\x81\x85\x79\x82\x87\x78\x81\x85\x76\x7f\ \x83\x73\x7d\x81\x62\x6e\x74\x2a\x36\x41\x32\x3c\x46\x10\x15\x1a\ \x1b\x1d\x20\x63\x68\x6d\x77\x7e\x83\x6f\x75\x7b\x62\x69\x70\x73\ \x79\x7e\x7c\x82\x87\x65\x6f\x75\x61\x6a\x71\x7d\x84\x89\x7c\x84\ \x8b\x68\x73\x7a\x61\x6b\x73\x7d\x85\x89\x7d\x87\x8b\x80\x89\x8d\ \x81\x89\x8d\x87\x8c\x92\x89\x8f\x94\x87\x8d\x92\x86\x8c\x91\x89\ \x8f\x94\x8e\x93\x98\x88\x8d\x92\x8d\x91\x96\x8d\x91\x96\x8f\x95\ \x9a\x91\x96\x9b\x91\x95\x9a\x93\x98\x9c\x94\x97\x9c\x95\x99\x9d\ \x94\x99\x9d\x94\x98\x9c\x94\x98\x9c\x97\x9b\x9e\x98\x9c\x9f\x9a\ \x9d\xa1\x94\x97\x9a\x9e\xa1\xa5\x9e\xa1\xa5\x9e\xa1\xa4\x9f\xa3\ \xa6\x9c\xa0\xa2\x9f\xa2\xa3\x9e\xa0\xa1\xa2\xa4\xa7\xa3\xa5\xa9\ \xa1\xa4\xa8\xa2\xa4\xa8\x93\x96\x9b\x5f\x62\x67\x9a\x9a\x9e\xa6\ \xa7\xab\xa5\xa8\xac\xa1\xa4\xa9\x82\x84\x88\x6a\x6b\x6c\x9b\x9d\ \x9e\x59\x5c\x5e\xb7\xb8\xbb\xaa\xaa\xac\x7c\x7b\x7d\x7b\x7a\x7d\ \xab\xab\xac\xaf\xaf\xb0\xb2\xb2\xb3\xab\xab\xac\x76\x77\x7b\x7f\ \x7f\x82\xb8\xb8\xb8\xb2\xb3\xb4\xb5\xb7\xb7\xab\xad\xae\x00\x00\ \x00\xe8\xe3\xe2\xe8\xe4\xe3\xe7\xe3\xe2\xe6\xe2\xe1\xe7\xe3\xe2\ \xe7\xe4\xe2\xe7\xe4\xe2\xe7\xe3\xe0\xe8\xe4\xe3\xe8\xe4\xe3\xe9\ \xe5\xe3\xe8\xe4\xe3\xe9\xe5\xe3\xe9\xe5\xe4\xe9\xe5\xe3\xe9\xe5\ \xe4\xea\xe6\xe5\xeb\xe6\xe5\xea\xe5\xe4\xea\xe5\xe5\xea\xe6\xe4\ \xea\xe6\xe4\xeb\xe6\xe5\xeb\xe7\xe4\xea\xe5\xe3\xe5\xe0\xdd\xe1\ \xdb\xd8\xe2\xdc\xd9\xe6\xe0\xdd\xe7\xe3\xdf\xe6\xe1\xde\xe6\xe1\ \xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xdb\xde\xd8\xd6\xda\xd3\xd0\ \xd6\xcf\xcc\xce\xc7\xc4\xc4\xbd\xba\xb9\xb4\xb2\xa3\x9f\x9e\x87\ \x86\x86\x5e\x61\x64\x30\x37\x3f\x1e\x27\x2f\x39\x3d\x42\x6b\x68\ \x6a\x88\x83\x83\x94\x90\x8f\x9c\x98\x99\xa1\x9e\x9e\xa4\xa2\xa2\ \xa6\xa4\xa4\xa3\xa2\xa3\xa2\xa1\xa3\xa2\xa1\xa3\xa1\xa0\xa1\xa0\ \xa0\xa2\x9b\x9c\x9d\x95\x97\x98\x92\x94\x95\x90\x94\x94\x8f\x93\ \x95\x8e\x92\x96\x8e\x93\x96\x8b\x90\x93\x88\x8c\x90\x88\x8d\x93\ \x87\x8d\x93\x86\x8c\x93\x85\x8b\x92\x81\x89\x90\x7f\x87\x8e\x7f\ \x86\x8d\x7e\x84\x8b\x7e\x84\x89\x7c\x82\x87\x7b\x81\x86\x79\x7f\ \x84\x78\x7e\x83\x79\x81\x85\x78\x80\x85\x77\x80\x84\x79\x82\x86\ \x64\x6e\x75\x1d\x2a\x36\x32\x3d\x47\x1b\x25\x2b\x23\x2a\x30\x5c\ \x63\x69\x6b\x73\x78\x79\x7e\x81\x69\x70\x76\x62\x6a\x71\x75\x7c\ \x81\x79\x80\x85\x63\x6e\x73\x64\x6d\x74\x81\x88\x8e\x7a\x83\x89\ \x62\x6c\x74\x5f\x67\x6f\x81\x89\x8d\x81\x89\x8f\x82\x89\x8d\x85\ \x8b\x8f\x86\x8c\x91\x87\x8c\x91\x88\x8c\x91\x88\x8d\x92\x8c\x90\ \x95\x8d\x91\x96\x8e\x92\x97\x8c\x91\x95\x91\x95\x9a\x90\x94\x99\ \x92\x97\x9a\x95\x9a\x9d\x96\x9a\x9d\x97\x9a\x9f\x98\x9b\xa0\x99\ \x9c\xa0\x95\x98\x9d\x94\x97\x9a\x93\x96\x9a\x97\x9a\x9e\x97\x9a\ \x9e\x9a\x9d\xa2\xa1\xa3\xa7\x9e\xa0\xa3\xa1\xa2\xa6\x9f\xa0\xa2\ \xa0\xa4\xa5\x9c\x9e\xa1\x9f\xa2\xa6\xa5\xa8\xac\xa3\xa5\xa9\xa8\ \xa9\xad\xa5\xa8\xac\x9a\x9e\xa2\x64\x65\x6b\x8a\x8b\x8f\xa3\xa3\ \xa6\xaa\xad\xaf\xa7\xa9\xac\x92\x94\x96\x51\x54\x56\x6c\x6c\x6e\ \xba\xba\xbb\xa4\xa3\xa5\xa3\xa2\xa3\x81\x80\x83\x6f\x6f\x73\xa7\ \xa6\xa8\xb3\xb3\xb4\xb2\xb1\xb3\xac\xac\xae\x8e\x90\x92\x6b\x69\ \x6c\xb3\xb2\xb3\xb4\xb6\xb6\xb5\xb6\xb6\x00\x00\x00\xe8\xe4\xe3\ \xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe7\xe3\xe2\xe8\ \xe4\xe3\xe9\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\xe4\ \xe3\xea\xe6\xe5\xea\xe6\xe5\xeb\xe7\xe6\xea\xe6\xe5\xea\xe7\xe6\ \xeb\xe6\xe5\xea\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe3\xeb\xe6\xe4\xeb\ \xe6\xe5\xea\xe5\xe3\xe8\xe3\xe0\xe3\xde\xdb\xe2\xdb\xd7\xe4\xdd\ \xda\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\ \xe4\xdf\xdc\xe0\xdc\xd9\xdd\xd7\xd4\xd8\xd1\xce\xd3\xca\xc9\xcd\ \xc5\xc1\xc1\xba\xb8\xb3\xae\xac\x9d\x9b\x9a\x79\x7a\x7b\x4c\x51\ \x56\x20\x29\x30\x20\x28\x2f\x49\x4c\x50\x77\x74\x74\x8d\x88\x89\ \x9a\x96\x97\xa0\x9f\x9f\xa3\xa1\xa1\xa5\xa4\xa4\xa6\xa5\xa5\xa6\ \xa5\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9e\xa0\xa0\x9f\xa1\x9b\x9d\ \x9e\x96\x98\x99\x91\x94\x95\x8e\x91\x93\x8e\x91\x94\x8f\x92\x96\ \x8c\x91\x94\x89\x8e\x92\x86\x8c\x91\x86\x8c\x91\x88\x8e\x93\x86\ \x8c\x92\x84\x8a\x91\x83\x89\x8f\x82\x88\x8f\x81\x87\x8e\x80\x86\ \x8c\x7e\x84\x89\x7c\x82\x87\x7a\x80\x85\x7a\x80\x86\x79\x81\x86\ \x78\x81\x85\x78\x81\x85\x78\x81\x85\x79\x82\x86\x56\x63\x69\x1c\ \x29\x34\x47\x50\x59\x12\x1d\x25\x35\x3f\x47\x6a\x72\x79\x5c\x66\ \x6e\x70\x76\x7c\x77\x7e\x82\x65\x6e\x74\x66\x6e\x75\x7a\x81\x85\ \x79\x81\x85\x61\x6b\x73\x6a\x73\x79\x80\x86\x8b\x7a\x84\x88\x61\ \x6b\x72\x68\x72\x77\x83\x8a\x8f\x85\x8b\x90\x87\x8d\x92\x88\x8e\ \x93\x88\x8d\x92\x87\x8c\x91\x88\x8e\x93\x8d\x91\x96\x90\x94\x99\ \x8c\x90\x95\x8d\x92\x96\x8f\x93\x97\x8e\x93\x96\x92\x97\x99\x94\ \x99\x9c\x91\x95\x98\x96\x98\x9c\x97\x9a\x9d\x94\x97\x9b\x95\x98\ \x9c\x90\x94\x96\x93\x98\x99\x99\x9b\x9d\x9a\x9b\x9e\x9b\x9e\x9f\ \x9d\x9f\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa5\xa6\xa0\xa5\xa6\x9f\ \xa2\xa6\x9d\xa0\xa4\xa0\xa3\xa7\xa5\xa6\xaa\xa9\xaa\xae\xa1\xa3\ \xa7\xa2\xa5\xa9\xa5\xa8\xac\x6f\x72\x77\x7c\x7e\x80\xa7\xa9\xaa\ \xa6\xa9\xac\xa1\xa3\xa4\x4a\x4d\x4f\x6f\x73\x75\x9a\x9a\x9c\x8b\ \x8a\x8c\x35\x36\x39\x88\x89\x8b\x94\x97\x9b\x66\x68\x6c\xa4\xa6\ \xa6\xb2\xb2\xb3\xb1\xb0\xb2\xb5\xb7\xb7\xa8\xa9\xaa\x70\x70\x73\ \x99\x9a\x9b\xbd\xbd\xbd\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\ \xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe8\xe4\ \xe3\xe9\xe5\xe4\xea\xe6\xe5\xe9\xe6\xe4\xe9\xe4\xe3\xe9\xe5\xe4\ \xe9\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe4\xea\xe6\xe4\xea\xe5\xe3\xeb\ \xe5\xe3\xea\xe5\xe2\xe9\xe5\xe2\xea\xe6\xe4\xea\xe5\xe4\xea\xe5\ \xe4\xe6\xe1\xde\xe4\xdd\xda\xe2\xdb\xd9\xe6\xdf\xdc\xe6\xe2\xdf\ \xe6\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xda\xdf\ \xda\xd8\xdc\xd6\xd4\xd8\xd0\xce\xd2\xc9\xc5\xca\xc3\xbf\xbc\xb6\ \xb2\xaa\xa7\xa5\x90\x91\x8f\x69\x6d\x6f\x39\x40\x47\x1c\x25\x2d\ \x2c\x33\x3a\x5d\x5d\x5f\x81\x7c\x7d\x90\x8c\x8d\x9b\x98\x98\xa1\ \x9f\x9f\xa4\xa3\xa3\xa7\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa4\xa4\xa3\ \xa4\xa0\x9f\xa2\xa0\x9f\xa1\x9d\x9c\x9e\x99\x9b\x9c\x96\x97\x9a\ \x8e\x92\x93\x8d\x91\x93\x8f\x92\x95\x8d\x90\x94\x89\x8e\x91\x88\ \x8c\x90\x85\x8a\x90\x87\x8d\x92\x83\x8a\x8e\x83\x89\x8f\x83\x89\ \x90\x82\x8a\x90\x84\x8a\x91\x83\x89\x8f\x7f\x85\x8a\x7e\x84\x89\ \x7d\x83\x88\x7b\x81\x86\x7a\x80\x85\x7c\x81\x87\x7b\x83\x88\x7b\ \x85\x89\x7a\x83\x87\x78\x81\x84\x4d\x5a\x60\x21\x2e\x36\x5c\x63\ \x6b\x23\x31\x3b\x3f\x49\x50\x75\x7a\x80\x63\x6c\x74\x65\x6b\x73\ \x79\x7f\x84\x77\x7f\x83\x61\x6b\x71\x6d\x74\x7a\x7e\x84\x88\x7a\ \x81\x85\x5f\x69\x70\x70\x77\x7c\x86\x8c\x90\x78\x80\x84\x5d\x67\ \x6d\x71\x78\x7d\x87\x8c\x91\x88\x8e\x93\x88\x8e\x93\x86\x8c\x91\ \x88\x8e\x93\x89\x8d\x93\x8d\x92\x96\x8b\x90\x94\x8e\x92\x97\x8f\ \x94\x98\x93\x97\x9b\x8a\x90\x92\x90\x95\x98\x94\x99\x9b\x97\x9b\ \x9e\x93\x97\x99\x90\x94\x96\x91\x95\x97\x99\x9c\x9f\x98\x9b\x9d\ \x96\x9a\x9b\x99\x9c\x9d\x9b\x9d\x9f\x9e\x9f\xa3\xa0\xa2\xa3\x9f\ \xa0\xa2\x9c\x9e\x9f\x9d\x9f\xa0\xa4\xa6\xa8\xa6\xaa\xac\xa1\xa3\ \xa7\xa0\xa2\xa6\xa8\xa9\xad\xa5\xa7\xab\xa8\xa9\xad\xa6\xa7\xab\ \xa6\xa7\xab\xa5\xa7\xab\x87\x89\x8c\x62\x63\x65\xa4\xa5\xa6\x94\ \x94\x96\x65\x69\x6a\xb1\xb3\xb3\x79\x78\x7a\x87\x87\x8a\x9d\x9f\ \xa4\xa3\xa5\xa9\xb0\xb1\xb3\xaa\xac\xad\x6a\x6c\x6f\x93\x93\x95\ \xb1\xb0\xb1\xaf\xaf\xaf\xb3\xb4\xb4\xaf\xb0\xb1\x7e\x7e\x80\x86\ \x84\x84\x00\x00\x00\xe7\xe3\xe1\xe8\xe3\xe1\xe7\xe3\xe2\xe8\xe4\ \xe3\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\ \xe9\xe5\xe4\xea\xe6\xe5\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe6\xe5\xea\ \xe6\xe4\xe9\xe5\xe3\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe0\xe8\xe3\ \xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xea\xe5\xe3\xe4\xde\xdb\ \xe1\xda\xd7\xe2\xdb\xd8\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe5\ \xe0\xdd\xe5\xdf\xdc\xe4\xde\xdb\xe1\xdb\xd9\xdd\xd8\xd5\xda\xd4\ \xd1\xd6\xce\xca\xcd\xc5\xbf\xc3\xbc\xb7\xb6\xb0\xac\xa2\x9f\x9d\ \x82\x84\x84\x58\x5e\x62\x26\x31\x38\x1d\x25\x2e\x3e\x43\x4a\x70\ \x6d\x6f\x89\x85\x85\x97\x94\x94\x9e\x9d\x9b\xa1\x9f\x9f\xa6\xa4\ \xa4\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa3\xa3\xa4\xa4\xa5\xa2\xa1\xa3\ \x9c\x9d\x9e\x9a\x99\x9b\x96\x99\x9a\x92\x94\x95\x8f\x93\x94\x90\ \x94\x95\x8d\x8f\x93\x8b\x8f\x92\x8a\x8f\x92\x88\x8c\x91\x87\x8c\ \x91\x86\x8d\x92\x83\x89\x8e\x83\x89\x8e\x80\x89\x8d\x81\x8a\x8e\ \x81\x87\x8c\x80\x86\x8d\x80\x86\x8b\x7e\x85\x8b\x7d\x85\x8b\x7c\ \x83\x88\x7d\x83\x88\x7a\x80\x85\x79\x82\x86\x7b\x84\x88\x79\x80\ \x85\x78\x81\x85\x4f\x5c\x61\x10\x1e\x21\x47\x50\x58\x31\x3e\x49\ \x48\x51\x5a\x71\x77\x7b\x75\x7c\x81\x66\x6f\x74\x67\x6f\x74\x7b\ \x82\x85\x76\x7e\x80\x61\x6b\x6e\x70\x78\x7c\x81\x88\x8b\x75\x7e\ \x82\x5f\x69\x6f\x75\x7c\x81\x83\x8a\x8d\x75\x7d\x82\x60\x6a\x71\ \x74\x7c\x81\x86\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8b\ \x8f\x94\x8b\x8f\x94\x8a\x8e\x93\x8d\x91\x96\x8e\x92\x97\x8f\x93\ \x97\x8d\x92\x96\x92\x97\x9b\x92\x96\x9a\x95\x99\x9c\x95\x98\x9b\ \x94\x96\x99\x94\x97\x9b\x99\x9c\xa0\x9d\xa0\xa4\x99\x9c\xa0\x94\ \x97\x9b\x99\x9b\x9c\x9e\xa0\xa2\x9c\x9d\xa0\xa4\xa5\xa8\xa0\xa2\ \xa3\x9d\x9f\xa0\xa1\xa3\xa4\xa3\xa7\xa9\xa6\xa8\xaa\xa3\xa5\xa6\ \xa6\xa7\xa9\xa8\xa9\xac\xa6\xa7\xaa\xa8\xaa\xad\xa4\xa4\xa8\xaa\ \xab\xad\xac\xad\xb0\x95\x98\x9c\x5d\x5f\x62\x4a\x4a\x4b\xa9\xaa\ \xaa\xaf\xaf\xae\xb0\xaf\xb0\x87\x88\x89\x77\x79\x7b\xa7\xa7\xa9\ \xb2\xb3\xb4\xb0\xb1\xb2\xb3\xb5\xb6\x7c\x7d\x7e\x73\x73\x75\xaf\ \xaf\xaf\xad\xad\xad\xb4\xb4\xb4\xbd\xbd\xbe\x95\x95\x97\x00\x00\ \x00\xe7\xe3\xe2\xe7\xe2\xe1\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ \xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe8\ \xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe4\xea\xe6\xe2\xe9\xe6\ \xe2\xe9\xe4\xe1\xe8\xe3\xe0\xe7\xe3\xdf\xe8\xe3\xe0\xe9\xe3\xe0\ \xe8\xe3\xe1\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xdf\xdb\xe1\xdb\xd7\xe3\ \xdc\xd9\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xde\ \xdb\xe3\xdc\xd9\xe0\xd9\xd7\xdc\xd7\xd5\xd9\xd3\xd0\xd3\xcc\xc7\ \xcb\xc3\xbc\xc1\xbc\xb5\xb0\xab\xa9\x9a\x97\x97\x76\x79\x7b\x45\ \x4e\x54\x1f\x2a\x32\x28\x30\x37\x52\x53\x57\x7c\x77\x78\x8e\x8a\ \x8a\x9a\x97\x97\x9f\x9e\x9d\xa3\xa2\xa2\xa4\xa4\xa4\xa4\xa4\xa4\ \xa5\xa5\xa5\xa4\xa4\xa4\xa3\xa2\xa4\x9b\x9b\x9d\x93\x94\x95\x96\ \x97\x98\x95\x97\x98\x93\x94\x97\x90\x93\x96\x8e\x92\x95\x8b\x8e\ \x92\x8a\x8e\x91\x89\x8e\x92\x86\x8b\x8f\x85\x89\x8e\x84\x8a\x8f\ \x85\x8b\x90\x83\x8b\x90\x81\x89\x8e\x80\x87\x8c\x7f\x86\x8b\x7e\ \x87\x8b\x7e\x85\x8b\x7c\x84\x8a\x7c\x84\x89\x7c\x84\x89\x7c\x85\ \x8a\x7a\x83\x87\x79\x82\x86\x7c\x85\x89\x7a\x83\x87\x77\x7f\x83\ \x57\x63\x68\x08\x0f\x13\x10\x19\x1f\x4a\x57\x60\x60\x6a\x6f\x61\ \x6a\x71\x74\x7c\x81\x74\x7b\x7f\x62\x6b\x6f\x6b\x72\x75\x74\x78\ \x7b\x6d\x74\x76\x5b\x64\x69\x73\x7b\x7e\x7f\x87\x8a\x71\x79\x7c\ \x4c\x56\x5b\x7a\x80\x84\x84\x8a\x8f\x76\x7e\x83\x64\x6b\x71\x79\ \x7e\x84\x88\x8c\x91\x8b\x8f\x94\x8c\x8f\x95\x8a\x8e\x93\x89\x8e\ \x92\x8b\x90\x94\x8a\x8e\x91\x8c\x90\x95\x8f\x93\x98\x92\x97\x99\ \x95\x9a\x9d\x94\x99\x9c\x92\x97\x9a\x94\x98\x9b\x95\x98\x9c\x94\ \x98\x9b\x96\x99\x9d\x9b\x9e\xa2\x99\x9c\xa0\x97\x9b\x9c\x9c\xa0\ \xa1\x98\x9a\x9c\x9e\x9f\xa1\xa5\xa7\xa8\xa2\xa4\xa5\xa1\xa3\xa4\ \x9e\xa1\xa2\xa2\xa6\xa7\xa4\xa6\xa8\xa6\xa8\xab\xa3\xa4\xa8\xa3\ \xa5\xa8\xa5\xa7\xa8\xa6\xa8\xaa\xaa\xab\xad\xab\xab\xae\xaa\xab\ \xad\xab\xad\xb0\x97\x99\x9b\x31\x33\x35\x95\x97\x97\xb1\xb2\xb2\ \xaf\xb0\xb1\xae\xb0\xb1\x97\x99\x9b\x79\x79\x7c\x96\x95\x98\xb0\ \xb0\xb2\xb3\xb2\xb4\xb3\xb4\xb5\x9c\x9e\x9f\x6e\x6f\x71\x9d\x9f\ \x9f\xb3\xb3\xb3\xb8\xb9\xb9\xb8\xb9\xb8\x00\x00\x00\xe8\xe3\xe2\ \xe7\xe2\xe1\xe8\xe3\xe2\xe7\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\ \xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\ \xe4\xe8\xe3\xe2\xe9\xe4\xe1\xe9\xe5\xe2\xe9\xe4\xe1\xe8\xe3\xe0\ \xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xe0\xe9\ \xe4\xe1\xe6\xe1\xde\xe3\xdd\xd8\xe1\xdb\xd6\xe5\xde\xdb\xe7\xe1\ \xde\xe7\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xde\xdb\xe2\xdc\xd9\ \xe0\xd9\xd6\xdc\xd5\xd1\xd7\xd1\xce\xd0\xc9\xc5\xc7\xc0\xbb\xbc\ \xb8\xb3\xab\xa8\xa4\x8d\x8e\x8d\x65\x6a\x6e\x33\x3f\x47\x1d\x29\ \x31\x31\x38\x40\x62\x62\x64\x83\x81\x7f\x94\x90\x8f\x9c\x9a\x99\ \xa2\xa2\xa1\xa3\xa4\xa3\xa5\xa5\xa4\xa5\xa5\xa5\xa6\xa6\xa6\xa3\ \xa3\xa3\x9c\x9c\x9d\x87\x89\x8a\x84\x87\x87\x8a\x8c\x8d\x91\x93\ \x95\x93\x95\x99\x8d\x8f\x93\x8c\x8f\x92\x8b\x8e\x92\x89\x8d\x91\ \x89\x8d\x92\x88\x8c\x91\x87\x8b\x90\x84\x89\x8e\x81\x87\x8c\x82\ \x88\x8d\x81\x87\x8c\x7f\x86\x8a\x7f\x87\x8b\x7f\x88\x8c\x7f\x88\ \x8b\x7d\x86\x8a\x7c\x84\x89\x7b\x83\x87\x7b\x84\x88\x7b\x84\x88\ \x7b\x84\x88\x7b\x84\x88\x7b\x84\x88\x78\x7e\x85\x6a\x73\x7a\x36\ \x44\x4c\x34\x3f\x47\x67\x71\x78\x73\x7c\x80\x65\x6e\x73\x63\x6c\ \x71\x77\x7e\x81\x71\x79\x7c\x52\x5b\x5f\x48\x4e\x52\x6b\x6e\x71\ \x6c\x72\x76\x64\x6b\x70\x71\x76\x7a\x56\x5a\x60\x37\x3f\x43\x59\ \x60\x63\x7a\x7f\x82\x87\x8c\x91\x77\x7e\x83\x66\x6d\x73\x7b\x80\ \x85\x8a\x8f\x93\x8a\x8e\x93\x86\x8c\x90\x89\x8f\x92\x8a\x8f\x93\ \x8b\x91\x93\x8c\x90\x95\x8f\x93\x98\x94\x99\x9c\x94\x99\x9c\x94\ \x99\x9c\x95\x99\x9c\x96\x99\x9d\x96\x9a\x9d\x99\x9d\xa0\x97\x9a\ \x9e\x9a\x9d\xa1\x96\x9a\x9b\x98\x9d\x9d\x9a\x9e\x9f\x9c\x9f\xa2\ \x9c\x9f\xa0\xa2\xa5\xa6\x9d\x9f\xa0\xa1\xa3\xa4\xa2\xa4\xa5\xa0\ \xa3\xa4\xa2\xa4\xa5\xa6\xa8\xa8\xa7\xa8\xa9\xa7\xa8\xa9\xa6\xa7\ \xa8\xa5\xa7\xa8\xab\xac\xad\xa7\xa8\xaa\xaa\xab\xac\xa7\xa8\xa9\ \x5c\x5f\x61\xa0\xa5\xa7\x7a\x7d\x7f\x80\x81\x82\xa5\xa5\xa6\xb0\ \xaf\xb1\xb5\xb4\xb6\xa5\xa5\xa7\x76\x75\x78\x91\x91\x92\xae\xae\ \xae\xb1\xb2\xb2\xb6\xb6\xb7\xb0\xb2\xb3\x6e\x71\x72\x8a\x8b\x8a\ \xae\xaf\xad\xb9\xba\xb8\x00\x00\x00\xe7\xe2\xdf\xe7\xe2\xdf\xe7\ \xe3\xe1\xe7\xe4\xe2\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\ \xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe4\xe3\xe8\xe4\xe3\ \xe9\xe4\xe1\xe9\xe5\xe2\xe8\xe3\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\ \xe4\xe1\xe9\xe4\xe1\xe8\xe4\xe0\xe9\xe4\xe1\xe9\xe3\xe0\xe5\xe0\ \xdb\xe2\xdc\xd7\xe2\xdc\xd7\xe6\xe0\xdc\xe7\xe0\xdd\xe7\xe0\xdd\ \xe5\xe0\xdd\xe4\xdf\xdc\xe4\xde\xdb\xe0\xdb\xd8\xde\xd8\xd5\xda\ \xd4\xd0\xd5\xcf\xcc\xce\xc7\xc3\xc5\xbf\xbb\xb5\xb1\xac\xa1\xa1\ \x9c\x80\x82\x82\x53\x5b\x5f\x27\x33\x3d\x1e\x2b\x32\x40\x45\x4b\ \x71\x70\x71\x8b\x89\x89\x96\x94\x94\x9f\x9d\x9d\xa3\xa2\xa2\xa4\ \xa4\xa3\xa4\xa4\xa4\xa6\xa6\xa6\xa3\xa3\xa3\xa0\xa0\xa0\x8a\x8c\ \x8d\x7b\x7f\x80\x7b\x7e\x7f\x89\x8b\x8c\x90\x92\x93\x8f\x91\x93\ \x8d\x90\x93\x8c\x8f\x93\x89\x8c\x90\x87\x8b\x90\x87\x8b\x90\x88\ \x8c\x91\x87\x8b\x92\x83\x88\x8e\x83\x88\x8d\x83\x89\x8f\x81\x89\ \x8e\x7f\x87\x8b\x80\x86\x8c\x7e\x87\x8b\x7d\x85\x8a\x7c\x84\x89\ \x7c\x85\x8a\x7c\x85\x8a\x7a\x83\x87\x7b\x83\x88\x7a\x83\x87\x79\ \x82\x86\x79\x82\x86\x79\x81\x87\x75\x7d\x84\x72\x7a\x81\x71\x79\ \x80\x78\x7f\x85\x78\x80\x84\x71\x78\x7e\x61\x6a\x70\x6b\x72\x78\ \x74\x7a\x7e\x2e\x35\x39\x14\x1a\x1e\x53\x55\x59\x79\x7c\x7f\x6e\ \x73\x77\x45\x4c\x51\x0d\x0f\x13\x4a\x4e\x52\x48\x4f\x52\x63\x69\ \x6d\x80\x84\x88\x87\x8c\x91\x72\x78\x7d\x67\x6d\x72\x7d\x81\x85\ \x8a\x8d\x92\x8b\x8f\x93\x8d\x92\x95\x8d\x92\x96\x8c\x91\x95\x8c\ \x91\x94\x90\x95\x98\x94\x97\x9c\x93\x98\x9b\x97\x9b\x9f\x98\x9c\ \xa0\x95\x98\x9c\x96\x99\x9d\x99\x9c\xa0\x9a\x9c\xa0\x9d\xa0\xa2\ \x9a\x9e\x9f\x9b\x9f\xa0\x9f\xa2\xa3\x9e\xa2\xa3\x9d\xa0\xa2\xa0\ \xa4\xa5\x9e\x9f\xa0\xa0\xa2\xa3\xa6\xa8\xa9\xa3\xa5\xa6\xa4\xa7\ \xa8\xa4\xa6\xa7\xa8\xa9\xaa\xaa\xaa\xac\xa9\xa8\xaa\xa6\xa5\xa6\ \xaa\xaa\xac\xa7\xa6\xa8\xa8\xa9\xaa\x9b\x9d\x9e\x51\x56\x57\xb3\ \xb8\xb8\xad\xaf\xb0\x8b\x8b\x8d\x75\x75\x76\x9d\x9d\x9e\xb1\xb1\ \xb2\xb5\xb4\xb5\xb1\xb1\xb1\x7f\x7f\x80\x83\x83\x85\xa1\xa1\xa2\ \xb5\xb6\xb7\xb2\xb4\xb5\xb7\xba\xba\x88\x89\x89\x7c\x7d\x7d\xa2\ \xa3\xa1\x00\x00\x00\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xde\xe8\xe3\ \xe1\xe8\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ \xe8\xe4\xe3\xe9\xe5\xe4\xea\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xe9\ \xe4\xe2\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xe9\xe4\ \xe1\xe9\xe4\xe0\xe8\xe3\xe0\xe7\xe1\xdc\xe2\xdc\xd7\xe1\xdb\xd6\ \xe3\xdd\xd8\xe7\xe1\xdd\xe7\xe1\xde\xe7\xe1\xde\xe5\xe0\xdd\xe4\ \xde\xdb\xe3\xdd\xda\xe0\xdb\xd9\xdd\xd6\xd4\xda\xd3\xcf\xd4\xcd\ \xca\xca\xc4\xbf\xbf\xba\xb6\xaf\xad\xa8\x95\x95\x93\x72\x74\x76\ \x43\x4b\x52\x20\x2a\x34\x2a\x33\x3b\x55\x57\x5b\x7d\x7b\x7b\x8f\ \x8d\x8c\x99\x96\x95\xa2\xa0\x9f\xa5\xa3\xa3\xa3\xa3\xa3\xa5\xa5\ \xa5\xa5\xa4\xa5\xa3\xa3\xa3\x95\x96\x97\x7e\x81\x83\x75\x79\x7b\ \x7c\x7f\x80\x87\x89\x8a\x8b\x8d\x8e\x8c\x8e\x90\x8e\x91\x95\x8d\ \x8f\x93\x89\x8d\x91\x87\x8b\x90\x87\x8b\x90\x86\x8a\x90\x87\x8c\ \x93\x83\x89\x8f\x83\x89\x8e\x82\x89\x8e\x81\x88\x8d\x7f\x86\x8b\ \x7e\x86\x8c\x7c\x85\x89\x7d\x86\x8b\x7d\x85\x8a\x7c\x84\x8a\x7c\ \x84\x8b\x7b\x83\x88\x79\x82\x86\x79\x81\x85\x7a\x82\x86\x7a\x82\ \x87\x7a\x82\x88\x77\x7f\x85\x77\x7f\x85\x78\x80\x86\x78\x7f\x86\ \x79\x80\x85\x79\x7f\x84\x6f\x76\x7c\x64\x6c\x71\x66\x6d\x71\x21\ \x26\x29\x00\x03\x05\x26\x2a\x2e\x6a\x6d\x71\x7f\x83\x85\x45\x4c\ \x51\x00\x00\x00\x24\x26\x29\x4e\x52\x56\x6d\x74\x77\x67\x6d\x71\ \x83\x87\x8b\x88\x8d\x91\x75\x7b\x80\x6b\x70\x76\x7f\x82\x86\x8c\ \x90\x94\x90\x94\x98\x93\x98\x9b\x8e\x93\x96\x8d\x92\x95\x92\x97\ \x9a\x94\x98\x9c\x95\x99\x9d\x96\x9a\x9e\x96\x9b\x9f\x98\x9b\x9f\ \x96\x99\x9d\x97\x9a\x9e\x9b\x9e\xa2\x9b\x9f\xa1\x9c\xa0\xa1\x9b\ \x9f\xa0\x9e\xa2\xa3\x9e\xa1\xa3\xa0\xa3\xa5\xa1\xa3\xa4\x9d\x9f\ \xa0\x9e\xa0\xa2\xa5\xa7\xa8\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa8\ \xa6\xa8\xa9\xa6\xa9\xaa\xa9\xaa\xab\xa4\xa4\xa5\xa7\xa8\xa9\xa9\ \xa8\xaa\xa7\xa8\xa9\x5d\x60\x63\x94\x98\x99\xac\xaf\xaf\xb1\xb1\ \xb1\xb3\xb4\xb4\x9b\x9c\x9d\x7d\x7e\x7f\x8f\x90\x90\xa6\xa7\xa7\ \xb2\xb3\xb2\xb4\xb5\xb5\x90\x91\x93\x82\x81\x83\x96\x95\x96\xac\ \xae\xae\xb5\xb6\xb6\xba\xbb\xbb\xa0\xa1\xa1\x7b\x7c\x7c\x00\x00\ \x00\xe7\xe1\xde\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe7\xe2\xe0\ \xe7\xe3\xe1\xe8\xe4\xe3\xe9\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\ \xe4\xe3\xea\xe5\xe5\xe9\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe3\xe9\xe4\ \xe1\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe2\xdf\xe8\xe2\xde\xe7\xe1\xdd\ \xe5\xe0\xdb\xe2\xdb\xd6\xdf\xd7\xd2\xdf\xd8\xd3\xe4\xde\xd8\xe8\ \xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\xe5\xe0\xdd\xe4\xde\xdb\xe1\xdc\ \xdb\xdf\xda\xd8\xdc\xd6\xd5\xd8\xd1\xce\xd1\xcb\xc8\xc7\xc1\xbe\ \xb9\xb4\xb1\xa7\xa4\xa2\x8b\x8b\x8b\x62\x66\x69\x33\x3c\x44\x21\ \x2a\x33\x3a\x40\x47\x67\x66\x67\x85\x81\x81\x94\x90\x90\x9d\x9a\ \x99\xa2\xa0\x9f\xa4\xa3\xa3\xa5\xa5\xa5\xa4\xa5\xa5\xa5\xa5\xa5\ \xa2\xa2\xa2\x8b\x8c\x8d\x77\x7a\x7c\x74\x78\x7a\x80\x83\x84\x86\ \x88\x89\x81\x83\x84\x87\x8a\x8c\x8d\x90\x93\x8b\x8d\x92\x88\x8c\ \x90\x88\x8c\x90\x89\x8d\x91\x85\x8a\x8f\x85\x8a\x90\x83\x88\x8d\ \x82\x88\x8d\x81\x87\x8c\x81\x87\x8c\x81\x87\x8d\x7f\x87\x8c\x7d\ \x86\x8b\x7d\x86\x8c\x7c\x85\x8a\x7c\x84\x8a\x7c\x84\x8a\x7c\x84\ \x8a\x7a\x83\x89\x7a\x82\x88\x7a\x83\x87\x79\x81\x87\x78\x80\x87\ \x77\x7f\x86\x76\x7d\x84\x77\x7f\x86\x79\x80\x87\x7d\x82\x88\x7d\ \x83\x8a\x7b\x82\x88\x6f\x77\x7c\x52\x5b\x5f\x18\x1d\x1f\x00\x00\ \x00\x19\x1c\x20\x5a\x5e\x61\x72\x77\x7b\x47\x50\x55\x0b\x0f\x12\ \x03\x03\x04\x61\x63\x66\x82\x87\x89\x6e\x74\x78\x6b\x6f\x73\x83\ \x86\x8a\x89\x8e\x91\x73\x79\x7d\x69\x6e\x72\x81\x84\x87\x91\x95\ \x99\x92\x96\x9a\x8f\x94\x97\x91\x96\x99\x92\x97\x9a\x94\x99\x9c\ \x96\x99\x9d\x95\x98\x9c\x99\x9d\xa0\x9b\x9d\xa1\x97\x9a\x9e\x98\ \x9b\x9f\x9a\x9d\xa1\x99\x9c\x9e\x9b\x9f\xa0\x9c\x9f\xa0\x9c\xa0\ \xa1\x9d\xa1\xa2\x9f\xa2\xa4\x9e\xa0\xa1\xa1\xa3\xa3\xa6\xa8\xa8\ \xa5\xa7\xa8\xa4\xa6\xa7\xa4\xa6\xa7\xa2\xa4\xa5\xa2\xa4\xa5\xa4\ \xa6\xa7\xa5\xa7\xa8\xa6\xa6\xa7\xa7\xa8\xa9\xaa\xaa\xab\xa3\xa4\ \xa5\x5c\x5f\x63\xb0\xb2\xb3\xb0\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\ \xb4\xb3\xb4\xa7\xa7\xa8\x80\x82\x84\x7e\x80\x82\xa4\xa4\xa5\xb2\ \xb2\xb3\xb9\xb9\xba\xa9\xa8\xaa\x85\x85\x87\x83\x84\x85\xa6\xa5\ \xa6\xba\xba\xb8\xba\xba\xb9\xac\xad\xac\x00\x00\x00\xe7\xe1\xde\ \xe7\xe1\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\ \xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe2\xe0\xe8\xe2\ \xe0\xe8\xe2\xe1\xe8\xe2\xe0\xe7\xe1\xdf\xe6\xe0\xdd\xe5\xdf\xdc\ \xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xda\xe4\xde\xda\xe2\xdc\xd7\xde\ \xd6\xd2\xdd\xd5\xd1\xe0\xd7\xd3\xe5\xdf\xda\xe8\xe1\xde\xe6\xe0\ \xdd\xe7\xe0\xdd\xe6\xdf\xdc\xe2\xde\xdb\xe1\xdb\xda\xde\xd8\xd7\ \xda\xd5\xd4\xd6\xcf\xcd\xce\xc8\xc5\xc3\xbe\xbc\xb3\xad\xac\x9e\ \x9b\x9c\x7c\x7e\x7e\x4f\x56\x5c\x26\x32\x3b\x25\x30\x38\x47\x4a\ \x50\x77\x73\x73\x8c\x87\x88\x9a\x96\x96\x9f\x9d\x9c\xa2\xa0\xa0\ \xa6\xa4\xa5\xa6\xa6\xa7\xa4\xa5\xa5\xa5\xa4\xa4\x9d\x9d\x9d\x81\ \x83\x84\x71\x75\x76\x77\x7b\x7c\x86\x88\x88\x83\x86\x87\x7c\x80\ \x81\x81\x85\x86\x89\x8c\x8f\x89\x8c\x90\x87\x8b\x8f\x87\x8c\x90\ \x88\x8c\x8f\x85\x8b\x8e\x82\x88\x8c\x81\x88\x8c\x81\x88\x8c\x80\ \x86\x8b\x80\x86\x8a\x80\x86\x8d\x7e\x85\x8c\x7e\x85\x8b\x7d\x85\ \x8b\x7c\x84\x8b\x7c\x84\x89\x7b\x84\x88\x7c\x85\x8a\x7c\x85\x8c\ \x7a\x83\x89\x79\x82\x86\x77\x81\x86\x78\x81\x87\x78\x81\x86\x77\ \x7f\x86\x78\x7e\x85\x7b\x81\x88\x7e\x85\x8a\x7e\x85\x8c\x7b\x84\ \x8b\x6d\x76\x7c\x34\x3c\x40\x0c\x12\x14\x00\x00\x00\x2c\x30\x34\ \x5f\x64\x67\x34\x3a\x3e\x26\x2e\x35\x2d\x36\x3d\x01\x04\x07\x4f\ \x54\x59\x85\x89\x8b\x82\x88\x8c\x6d\x72\x76\x6c\x71\x75\x84\x88\ \x8b\x87\x8b\x8f\x74\x79\x7c\x6d\x72\x75\x85\x89\x8b\x91\x95\x98\ \x93\x97\x9b\x95\x9a\x9d\x91\x96\x99\x95\x99\x9c\x97\x9a\x9e\x98\ \x9b\x9f\x99\x9c\xa0\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x99\x9d\ \xa0\x98\x9c\x9d\x9b\x9e\x9f\x9f\xa1\xa2\x9c\xa0\xa1\x9d\xa1\xa2\ \x9d\xa0\xa1\xa0\xa1\xa2\xa0\xa0\xa0\x7a\x7c\x7c\x77\x79\x7a\x96\ \x98\x99\xa5\xa6\xa7\xa2\xa5\xa5\xa4\xa7\xa7\xa6\xa8\xa9\xa6\xa7\ \xa8\xa7\xa7\xa8\xa9\xa9\xab\xa8\xa9\xaa\xa6\xa8\xa9\x9b\x9d\x9e\ \xab\xad\xae\xaf\xaf\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb3\xb2\xb4\xb1\ \xb1\xb3\xaa\xac\xad\x92\x94\x97\x83\x84\x85\x92\x93\x94\xb6\xb6\ \xb6\xb8\xb7\xb8\xb4\xb4\xb6\x8f\x90\x91\x88\x88\x89\x94\x94\x94\ \xbb\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xdd\xda\xe4\xdd\xda\xe5\ \xdd\xda\xe5\xde\xda\xe5\xde\xdb\xe4\xde\xdc\xe4\xde\xdb\xe5\xde\ \xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe3\xdd\xda\xe3\xdd\xda\ \xe3\xdc\xda\xe3\xdc\xda\xe2\xdb\xd8\xe3\xdc\xd9\xe4\xdd\xda\xe4\ \xde\xda\xe4\xdd\xd9\xe2\xdb\xd7\xde\xd6\xd2\xda\xd0\xcc\xde\xd4\ \xd0\xe2\xd9\xd5\xe7\xe1\xdc\xe7\xe0\xdd\xe7\xe1\xde\xe8\xe0\xdd\ \xe5\xdf\xdb\xe2\xdd\xda\xe0\xdb\xd9\xde\xd7\xd6\xd9\xd4\xd3\xd4\ \xcf\xcd\xcb\xc6\xc3\xbe\xb9\xb7\xaf\xaa\xa8\x94\x93\x92\x6e\x72\ \x72\x40\x48\x4f\x20\x2b\x33\x2e\x35\x3d\x5c\x5b\x5f\x80\x7d\x7d\ \x91\x8d\x8d\x9c\x98\x98\xa1\x9f\x9f\xa5\xa3\xa3\xa6\xa5\xa5\xa6\ \xa6\xa6\xa4\xa4\xa4\xa4\xa3\xa4\x95\x95\x96\x7b\x7e\x7f\x70\x74\ \x75\x7c\x7f\x80\x86\x88\x89\x82\x84\x85\x7c\x80\x81\x7f\x83\x84\ \x86\x89\x8c\x8a\x8d\x91\x86\x8a\x8d\x85\x8a\x8d\x85\x8a\x8d\x84\ \x8a\x8e\x82\x88\x8c\x81\x87\x8c\x81\x87\x8d\x81\x87\x8b\x80\x86\ \x8b\x81\x88\x8e\x7e\x85\x8b\x80\x88\x8d\x7d\x86\x8b\x7e\x86\x8b\ \x7d\x86\x8a\x7b\x85\x89\x7c\x85\x8a\x7b\x84\x89\x7b\x83\x88\x79\ \x81\x87\x78\x80\x87\x78\x80\x87\x78\x80\x87\x77\x7f\x86\x7a\x81\ \x88\x79\x81\x87\x7b\x83\x88\x7e\x85\x8c\x7c\x84\x8b\x5d\x67\x6d\ \x1a\x21\x25\x0a\x0f\x12\x06\x0a\x0d\x47\x4a\x4e\x77\x7a\x7c\x1e\ \x23\x28\x0b\x0e\x10\x32\x3a\x40\x37\x3d\x42\x5a\x60\x65\x6f\x75\ \x79\x83\x88\x8b\x83\x87\x8b\x6e\x73\x78\x6c\x71\x76\x83\x87\x8b\ \x8c\x90\x93\x79\x7f\x82\x6b\x71\x74\x87\x8b\x8f\x93\x96\x9b\x96\ \x99\x9d\x93\x97\x9a\x94\x97\x9b\x97\x9a\x9e\x99\x9c\xa0\x97\x9a\ \x9e\x96\x99\x9d\x9a\x9d\xa1\x9c\x9e\xa2\x9a\x9d\xa1\x99\x9d\x9f\ \x9b\xa0\xa0\x9f\xa3\xa3\x9f\xa3\xa4\x9e\xa1\xa2\xa1\xa2\xa3\xa1\ \xa2\xa3\x66\x67\x68\x3c\x3f\x40\x86\x8a\x8b\xa0\xa1\xa2\xa6\xa7\ \xa8\xa5\xa6\xa6\xa7\xa8\xa8\xa7\xa8\xa9\xab\xac\xad\xa9\xaa\xab\ \xa8\xa9\xaa\xaa\xab\xac\xad\xaf\xb0\xac\xad\xaf\xad\xac\xae\xae\ \xad\xaf\xae\xae\xaf\xaf\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xb0\xae\xaf\ \xb0\xb6\xb7\xb9\xa1\xa4\xa5\x81\x83\x85\x84\x84\x86\xb2\xb2\xb3\ \xb5\xb2\xb4\xbb\xba\xba\xa3\xa2\xa4\x84\x85\x86\x86\x85\x85\xb3\ \xb2\xb2\x00\x00\x00\xd7\xbc\xb1\xe1\xd6\xd1\xe1\xd8\xd5\xe1\xda\ \xd7\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe2\xdb\xd8\ \xe2\xdb\xd8\xe2\xdc\xda\xe2\xdc\xda\xe3\xdc\xd9\xe2\xdb\xd8\xe3\ \xdc\xd9\xe3\xdb\xd8\xe3\xda\xd6\xe0\xd7\xd2\xdf\xd6\xd1\xe0\xd8\ \xd5\xe0\xd8\xd4\xda\xd1\xcd\xd9\xcf\xcb\xdc\xd3\xd0\xe4\xdc\xd9\ \xe8\xe1\xdd\xe6\xdf\xdc\xe8\xe1\xde\xe6\xe0\xdd\xe4\xde\xdc\xe1\ \xdc\xdb\xe0\xd9\xd9\xdb\xd6\xd4\xd6\xd1\xcf\xd1\xcb\xc9\xc7\xc2\ \xbf\xb8\xb4\xb0\xa6\xa3\x9f\x88\x88\x87\x60\x64\x66\x33\x39\x41\ \x23\x2a\x33\x3d\x41\x48\x6e\x6d\x6d\x86\x83\x82\x96\x92\x91\x9f\ \x9c\x9c\xa3\xa1\xa1\xa7\xa5\xa5\xa6\xa6\xa6\xa4\xa4\xa4\xa4\xa3\ \xa4\xa1\xa1\xa1\x8a\x8c\x8d\x73\x77\x79\x74\x77\x78\x82\x83\x85\ \x85\x87\x89\x7f\x82\x84\x7c\x80\x81\x80\x84\x85\x82\x85\x88\x87\ \x8b\x8e\x86\x8b\x8d\x84\x89\x8c\x83\x89\x8c\x82\x88\x8c\x81\x87\ \x8b\x81\x87\x8c\x80\x86\x8c\x7e\x84\x8a\x7c\x80\x85\x6f\x75\x7c\ \x6a\x71\x79\x73\x7b\x81\x7b\x84\x89\x7b\x84\x89\x7b\x84\x88\x7c\ \x85\x89\x7b\x84\x89\x7b\x84\x89\x7c\x85\x8c\x7b\x82\x89\x79\x83\ \x8b\x79\x80\x89\x7a\x82\x89\x7a\x82\x89\x7b\x82\x89\x79\x80\x86\ \x79\x7f\x85\x7d\x84\x8a\x80\x88\x8d\x5c\x66\x6c\x13\x18\x1c\x04\ \x07\x09\x26\x2b\x2f\x5c\x5f\x62\x7a\x7c\x7f\x25\x2e\x34\x00\x01\ \x01\x24\x26\x2a\x77\x79\x7d\x7c\x81\x86\x6c\x71\x77\x6d\x72\x76\ \x86\x8a\x8e\x85\x88\x8c\x6d\x72\x76\x6e\x72\x77\x88\x8c\x8f\x90\ \x94\x99\x7d\x82\x86\x6c\x71\x75\x87\x8a\x8e\x98\x9b\x9e\x96\x99\ \x9d\x98\x9b\x9f\x98\x9b\x9f\x9a\x9d\xa1\x9b\x9e\xa2\x99\x9c\xa0\ \x9b\x9e\xa2\x9d\x9f\xa3\x9f\xa2\xa6\x9d\xa0\xa3\x9c\xa0\xa1\x9c\ \x9f\xa1\xa2\xa6\xa8\x9f\xa2\xa4\xa2\xa3\xa4\x9b\x9e\x9f\x22\x25\ \x26\x79\x7e\x7f\xa4\xa6\xa6\x8d\x8d\x8f\x97\x97\x9a\xab\xaa\xab\ \xa4\xa4\xa5\xa6\xa7\xa8\xac\xad\xae\xac\xac\xae\xaa\xac\xad\xac\ \xae\xaf\xa9\xab\xac\xaa\xac\xac\xac\xad\xaf\xaf\xaf\xb0\xae\xae\ \xaf\xaf\xb0\xb1\xae\xae\xaf\xae\xaf\xb0\xaf\xae\xb0\xb2\xb2\xb4\ \xb5\xb6\xb7\xab\xae\xaf\x91\x93\x96\x76\x76\x79\xa4\xa1\xa3\xbc\ \xb9\xbb\xb7\xb6\xb6\xab\xab\xac\x98\x99\x9a\x82\x80\x82\x00\x00\ \x00\xa9\x87\x7e\xe0\xcc\xc4\xe3\xdb\xd7\xe1\xda\xd7\xe3\xdc\xd9\ \xe4\xdd\xda\xe4\xdd\xda\xe3\xdd\xda\xe5\xdd\xda\xe4\xdd\xdb\xe3\ \xdd\xda\xe5\xdd\xdb\xe2\xda\xd7\xe1\xd7\xd3\xdd\xd2\xcd\xda\xcf\ \xc9\xd9\xce\xc7\xd7\xcc\xc5\xd8\xcd\xc8\xdc\xd3\xcf\xde\xd6\xd2\ \xdb\xd2\xce\xd9\xd0\xcc\xdd\xd4\xd0\xe5\xdd\xd9\xe7\xe0\xdd\xe6\ \xdf\xdc\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xdb\xe0\xda\xda\xdf\xd7\ \xd7\xda\xd4\xd2\xd4\xce\xca\xcc\xc7\xc2\xc2\xbd\xba\xb3\xaf\xaa\ \x9c\x9a\x94\x7a\x7b\x7b\x4f\x54\x59\x29\x2f\x37\x29\x2e\x36\x50\ \x52\x56\x78\x77\x77\x8b\x86\x86\x98\x95\x95\xa1\x9f\x9f\xa5\xa3\ \xa3\xa7\xa6\xa6\xa6\xa6\xa6\xa3\xa3\xa3\xa3\xa3\xa3\x9d\x9e\x9e\ \x83\x86\x87\x71\x76\x77\x76\x79\x7a\x84\x85\x87\x83\x86\x87\x80\ \x83\x84\x7e\x81\x82\x7f\x83\x84\x7f\x82\x86\x85\x89\x8d\x87\x8c\ \x8f\x83\x88\x8b\x83\x88\x8c\x81\x87\x8c\x82\x88\x8c\x80\x86\x8a\ \x7e\x86\x8b\x7d\x83\x88\x6e\x74\x79\x44\x4c\x59\x37\x41\x4e\x4f\ \x56\x60\x70\x77\x7d\x7b\x84\x89\x7b\x84\x88\x7a\x83\x87\x7b\x84\ \x88\x7b\x85\x8a\x7c\x85\x8c\x79\x82\x89\x79\x82\x89\x7b\x83\x8a\ \x7a\x82\x89\x7b\x83\x8a\x7b\x82\x89\x7d\x83\x89\x7b\x80\x85\x7b\ \x82\x87\x7b\x82\x87\x56\x61\x67\x18\x21\x26\x03\x07\x0a\x47\x4b\ \x4d\x63\x67\x6b\x53\x5a\x61\x36\x43\x4b\x0d\x12\x16\x0a\x0b\x0d\ \x69\x6c\x72\x86\x8a\x8e\x7c\x81\x85\x67\x6e\x71\x71\x76\x7a\x89\ \x8c\x91\x86\x8b\x8f\x6d\x73\x77\x6e\x73\x77\x8c\x8f\x93\x8f\x94\ \x97\x7f\x85\x89\x6e\x73\x78\x89\x8c\x91\x9a\x9d\xa1\x97\x9a\x9e\ \x96\x99\x9d\x9a\x9d\xa0\x9b\x9e\xa1\x99\x9c\x9f\x9a\x9e\xa0\x9a\ \x9d\xa0\x9b\x9e\xa2\x9f\xa2\xa5\x98\x9c\x9e\x9d\xa0\xa3\xa0\xa4\ \xa6\x9e\xa1\xa4\xa2\xa5\xa7\x92\x97\x98\x27\x2d\x30\xa6\xa9\xa9\ \xa0\xa2\xa2\x6d\x6e\x72\x4a\x4c\x52\xa3\xa3\xa5\xa8\xa8\xa9\xa6\ \xa6\xa6\xab\xab\xab\xac\xad\xad\xad\xae\xaf\xae\xaf\xaf\xa9\xa8\ \xa9\xac\xab\xac\xac\xad\xad\xb1\xb1\xb1\xb1\xb1\xb1\xad\xad\xae\ \xac\xab\xac\xac\xac\xad\xb1\xb1\xb3\xaf\xaf\xb0\xb1\xb1\xb3\xb5\ \xb5\xb7\xaf\xb0\xb2\x9e\x9e\xa0\x7e\x7d\x7f\x91\x8e\x92\xbd\xbd\ \xbf\xb9\xb9\xb9\xb1\xb4\xb5\xa3\xa3\xa5\x00\x00\x00\x78\x62\x60\ \xd4\xb6\xae\xdf\xd6\xd2\xd9\xcf\xcb\xd9\xcf\xcb\xdb\xd2\xcf\xda\ \xd1\xce\xd8\xcf\xcc\xd9\xd1\xcd\xd9\xd0\xcb\xd8\xcf\xcb\xd6\xca\ \xc6\xd2\xc5\xbe\xd0\xc1\xba\xcf\xc0\xb7\xcf\xc1\xb9\xd1\xc6\xbe\ \xd4\xca\xc2\xd8\xce\xc7\xdc\xd3\xcf\xdb\xd2\xce\xdb\xd2\xce\xde\ \xd5\xd1\xe3\xda\xd6\xe6\xe0\xdc\xe7\xe1\xdd\xe7\xe0\xdd\xe6\xe0\ \xdd\xe3\xde\xdd\xe2\xdc\xdb\xdf\xda\xd9\xde\xd7\xd6\xd9\xd3\xd2\ \xd4\xce\xca\xca\xc5\xc0\xbf\xba\xb6\xae\xaa\xa6\x92\x91\x8d\x6b\ \x6e\x71\x3d\x43\x4a\x24\x2c\x34\x35\x39\x40\x60\x60\x63\x80\x7e\ \x80\x92\x8f\x8f\x9d\x9a\x9b\xa1\x9f\x9f\xa5\xa4\xa4\xa6\xa6\xa6\ \xa6\xa5\xa5\xa2\xa3\xa3\xa3\xa3\xa3\x96\x97\x97\x7b\x7e\x80\x6d\ \x71\x73\x74\x77\x78\x83\x85\x85\x80\x83\x84\x7e\x82\x83\x80\x84\ \x85\x7a\x7e\x7f\x7f\x82\x85\x82\x86\x8a\x85\x89\x8d\x83\x88\x8b\ \x82\x88\x8b\x82\x88\x8b\x81\x87\x8c\x80\x87\x8b\x7f\x89\x8c\x7f\ \x85\x89\x65\x6b\x73\x31\x3c\x48\x2a\x34\x3f\x3d\x45\x4f\x67\x6c\ \x73\x7d\x83\x89\x7b\x83\x88\x7a\x83\x87\x7b\x84\x88\x7a\x84\x89\ \x79\x81\x88\x79\x82\x88\x79\x81\x89\x7b\x83\x8a\x7b\x83\x8a\x7b\ \x82\x89\x7c\x84\x8b\x7e\x85\x8c\x7b\x82\x86\x7c\x82\x87\x77\x7d\ \x81\x62\x6a\x6e\x2e\x3a\x41\x0a\x16\x1d\x52\x59\x5d\x73\x7a\x7e\ \x51\x5c\x63\x46\x52\x5b\x26\x33\x3c\x26\x2f\x35\x57\x5e\x65\x75\ \x7a\x7f\x85\x89\x8d\x7b\x81\x83\x65\x6c\x70\x71\x75\x7a\x8f\x92\ \x96\x89\x8d\x91\x72\x76\x7b\x72\x76\x7b\x8f\x93\x96\x93\x97\x9a\ \x83\x88\x8c\x6c\x71\x76\x8b\x8e\x93\x98\x9a\x9e\x98\x9b\x9e\x9b\ \x9f\xa1\x9c\x9f\xa2\x9a\x9e\xa0\x99\x9d\x9f\x9a\x9e\xa1\x9c\x9f\ \xa3\x9f\xa2\xa6\x9d\xa0\xa4\x9e\xa1\xa5\xa0\xa3\xa7\x9b\x9e\xa1\ \xa1\xa5\xa6\x95\x9a\x9c\x4f\x57\x5b\xad\xae\xae\x94\x97\x96\x5e\ \x63\x66\x81\x84\x87\xa9\xa9\xaa\xa9\xa9\xab\xa6\xa7\xa8\xa9\xa9\ \xaa\xab\xab\xab\xac\xad\xad\xac\xab\xad\xad\xad\xad\xa5\xa5\xa5\ \xae\xae\xae\xaf\xaf\xaf\xb1\xb1\xb1\xad\xad\xad\xad\xac\xad\xac\ \xac\xad\xb0\xaf\xb1\xb0\xb0\xb2\xb2\xb3\xb4\xb2\xb4\xb5\xb2\xb3\ \xb5\xba\xb9\xbb\xaf\xaf\xb1\x87\x87\x8b\x6f\x70\x74\xb4\xb3\xb3\ \xb9\xba\xbb\xb4\xb6\xb6\x00\x00\x00\x97\x8a\x86\xd3\xbf\xba\xdd\ \xd5\xd1\xd3\xc9\xc5\xcc\xc1\xbd\xcf\xc5\xc3\xcb\xc2\xbf\xc5\xbc\ \xba\xc4\xbb\xb8\xc5\xbd\xb9\xc8\xc0\xbc\xc6\xbd\xb6\xc6\xbc\xb4\ \xc7\xbd\xb4\xc9\xbf\xb5\xce\xc3\xb9\xd3\xc8\xc0\xd7\xcd\xc5\xda\ \xd0\xc9\xdf\xd7\xd2\xdf\xd6\xd3\xdd\xd4\xd0\xdf\xd6\xd2\xe4\xdb\ \xd8\xe7\xe0\xdd\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe3\xdd\xdd\ \xe0\xdc\xdb\xdf\xdb\xd9\xdc\xd5\xd3\xd6\xd0\xcd\xd0\xc9\xc5\xc5\ \xc0\xba\xb8\xb4\xaf\xa5\xa1\x9f\x86\x86\x85\x5a\x5f\x62\x30\x39\ \x40\x25\x2e\x36\x44\x47\x4c\x71\x6e\x70\x89\x86\x88\x98\x94\x96\ \xa1\x9e\xa0\xa3\xa2\xa3\xa5\xa5\xa5\xa7\xa7\xa7\xa6\xa5\xa5\xa3\ \xa3\xa3\xa1\xa1\xa1\x8e\x8f\x90\x74\x77\x7a\x6e\x72\x74\x79\x7c\ \x7d\x83\x85\x85\x7f\x82\x83\x7e\x80\x81\x7f\x84\x85\x79\x7d\x7f\ \x7c\x80\x83\x7f\x82\x86\x84\x88\x8b\x85\x89\x8d\x83\x88\x8d\x83\ \x89\x8d\x81\x87\x8d\x7d\x83\x89\x7d\x84\x8a\x7c\x82\x89\x64\x6d\ \x75\x3c\x48\x52\x37\x3f\x4a\x48\x4f\x59\x60\x64\x6e\x7b\x7f\x85\ \x7d\x84\x89\x7a\x83\x87\x7a\x83\x88\x7b\x83\x89\x7b\x83\x8a\x79\ \x82\x89\x7c\x83\x8c\x7c\x85\x8c\x7d\x85\x8c\x7b\x82\x89\x7c\x82\ \x89\x7a\x81\x87\x79\x80\x85\x7a\x80\x85\x7a\x80\x84\x70\x77\x7b\ \x49\x55\x5d\x46\x54\x5b\x6c\x75\x7a\x7c\x83\x88\x73\x7a\x7f\x44\ \x51\x59\x3d\x4a\x54\x71\x77\x7a\x73\x79\x7c\x5b\x62\x66\x77\x7b\ \x7e\x88\x8c\x8d\x7a\x7f\x83\x69\x70\x73\x70\x74\x77\x72\x74\x77\ \x7b\x7f\x81\x6d\x73\x77\x72\x78\x7c\x92\x94\x98\x96\x9a\x9d\x85\ \x8a\x8d\x6a\x6f\x72\x87\x89\x8d\x9b\x9d\x9e\x99\x9c\x9f\x9a\x9d\ \xa1\x9a\x9d\xa1\x99\x9d\xa0\x9a\x9d\xa1\x9d\xa0\xa4\x9c\x9f\xa3\ \x9d\xa0\xa4\x9f\xa2\xa6\xa2\xa5\xa9\xa3\xa6\xaa\x9f\xa3\xa4\x9a\ \x9d\xa0\x74\x7a\x7d\xa4\xa6\xa7\x8a\x8c\x8d\x5c\x61\x63\xae\xad\ \xad\xae\xac\xad\xb1\xae\xaf\x9f\x9d\x9d\xa5\xa5\xa5\xa9\xa9\xa9\ \xac\xac\xae\xab\xaa\xad\xac\xac\xad\xac\xab\xac\xb1\xb1\xb1\xad\ \xad\xad\xb0\xb0\xb0\xb0\xb0\xb0\xb2\xb2\xb2\xb0\xaf\xb0\xae\xae\ \xaf\xb1\xb0\xb2\xb4\xb4\xb5\xb0\xb0\xb1\xb8\xb7\xba\xb7\xb9\xba\ \xb3\xb3\xb5\xb1\xb2\xb3\x9e\xa1\xa4\x6c\x6d\x71\xa2\xa2\xa4\xbb\ \xbb\xba\x00\x00\x00\xc9\xbc\xb8\xdd\xd2\xce\xe1\xda\xd7\xd8\xd0\ \xcd\xce\xc4\xc0\xd2\xca\xc6\xd4\xcc\xc9\xce\xc6\xc3\xcb\xc4\xc0\ \xcc\xc3\xbf\xcc\xc3\xbf\xcb\xc1\xbd\xcc\xc3\xbc\xd1\xc7\xbf\xd5\ \xcb\xc3\xda\xd0\xc9\xdd\xd4\xd0\xdf\xd6\xd3\xe2\xdb\xd7\xe2\xdb\ \xd7\xde\xd5\xd2\xdd\xd4\xd0\xe0\xd7\xd3\xe6\xe0\xdd\xe6\xe0\xdd\ \xe6\xdf\xdc\xe6\xe1\xde\xe4\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\ \xda\xd8\xda\xd4\xd2\xd5\xce\xcb\xcd\xc7\xc2\xc2\xbd\xb9\xb2\xad\ \xac\x9b\x98\x99\x78\x78\x7b\x47\x50\x55\x27\x32\x39\x2f\x36\x3e\ \x54\x56\x5a\x7c\x79\x7b\x8f\x8c\x8e\x9c\x99\x9b\xa2\x9f\xa1\xa4\ \xa3\xa3\xa8\xa8\xa8\xa7\xa7\xa7\xa5\xa5\xa5\xa5\xa4\xa5\xa0\x9f\ \xa1\x87\x89\x8a\x6f\x72\x74\x70\x74\x75\x7c\x7e\x7f\x83\x85\x87\ \x7e\x82\x84\x7c\x80\x81\x79\x7d\x7e\x76\x7a\x7c\x77\x7b\x7d\x7a\ \x7d\x81\x80\x83\x87\x84\x88\x8d\x84\x88\x8d\x81\x87\x8c\x81\x87\ \x8c\x80\x86\x8b\x7f\x85\x8b\x7c\x84\x8b\x64\x6f\x76\x44\x52\x5b\ \x3c\x47\x51\x3f\x47\x54\x57\x5c\x67\x75\x79\x80\x7d\x84\x88\x7b\ \x85\x88\x7c\x85\x8a\x7b\x84\x8a\x7b\x83\x8a\x7a\x82\x89\x79\x81\ \x88\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x83\x8b\x7c\x84\x8b\ \x7b\x84\x89\x7c\x84\x89\x7e\x84\x88\x76\x7d\x81\x66\x70\x75\x70\ \x77\x7d\x7b\x81\x86\x7f\x86\x8b\x7e\x84\x89\x6d\x76\x7c\x57\x61\ \x68\x79\x7d\x82\x7b\x7f\x82\x4d\x52\x57\x4e\x53\x58\x7e\x81\x84\ \x89\x8e\x90\x77\x7d\x7f\x33\x39\x3c\x3f\x41\x45\x7e\x81\x84\x8b\ \x91\x94\x72\x78\x7c\x74\x78\x7c\x94\x96\x99\x95\x99\x9a\x87\x8c\ \x8e\x65\x67\x69\x89\x88\x8a\x9b\x9e\x9f\x97\x9b\x9e\x99\x9c\xa0\ \x99\x9c\xa0\x9c\x9f\xa3\x9d\xa0\xa4\x9d\xa0\xa4\x99\x9c\xa0\x9d\ \xa0\xa4\xa0\xa3\xa7\xa4\xa7\xab\xa0\xa4\xa5\xa1\xa5\xa7\x95\x99\ \x9a\x84\x87\x89\x53\x54\x56\x4c\x4a\x4b\x5c\x58\x58\x30\x2d\x2e\ \x10\x0d\x0e\x41\x3f\x41\x9b\x9a\x9b\xae\xae\xaf\xa8\xa9\xa9\xae\ \xad\xae\xab\xab\xab\xb2\xb2\xb2\xb0\xb0\xb0\xaf\xaf\xaf\xae\xae\ \xae\xb3\xb3\xb3\xb3\xb3\xb3\xb2\xb2\xb2\xaf\xaf\xaf\xb3\xb3\xb4\ \xb2\xb1\xb3\xb3\xb2\xb4\xb7\xb7\xb8\xb2\xb1\xb3\xb4\xb3\xb5\xb5\ \xb6\xb7\xb7\xb7\xb9\xb2\xb4\xb5\x81\x81\x83\x89\x87\x87\x00\x00\ \x00\xd2\xc5\xc0\xdd\xd0\xcb\xe0\xd5\xd0\xd4\xc9\xc5\xcc\xc1\xbd\ \xd6\xcb\xc8\xdc\xd4\xd1\xdc\xd5\xd2\xda\xd2\xcf\xda\xd3\xcf\xdb\ \xd4\xd0\xdc\xd5\xd0\xdd\xd5\xd1\xdf\xd6\xd3\xe1\xd8\xd5\xe2\xda\ \xd7\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd6\xdf\xd7\xd3\xdc\xd3\xcf\ \xde\xd4\xd0\xe3\xdc\xd9\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe5\ \xe0\xdd\xe4\xde\xdb\xe1\xdc\xda\xe0\xdb\xda\xdd\xd8\xd4\xd9\xd3\ \xd0\xd3\xcc\xc8\xc9\xc4\xbf\xbd\xb9\xb6\xab\xa9\xa7\x8f\x8f\x8f\ \x69\x6d\x71\x37\x41\x48\x22\x2d\x35\x3a\x40\x48\x67\x66\x6a\x85\ \x81\x83\x94\x91\x93\x9d\x9b\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa5\xa5\ \xa5\xa6\xa6\xa6\xa6\xa6\xa6\xa4\xa3\xa3\x9c\x9c\x9d\x7f\x83\x84\ \x6c\x71\x72\x6d\x71\x74\x7e\x81\x83\x80\x84\x86\x7e\x83\x83\x7d\ \x81\x82\x72\x76\x79\x73\x76\x7a\x77\x7a\x7e\x7b\x7e\x82\x7c\x7f\ \x83\x81\x85\x88\x82\x87\x8a\x7f\x84\x89\x7d\x83\x87\x7d\x83\x8a\ \x80\x87\x8e\x7c\x84\x8b\x6b\x75\x7c\x4d\x59\x62\x44\x4f\x5a\x39\ \x44\x50\x47\x4e\x5a\x73\x77\x7f\x7d\x84\x88\x7c\x84\x88\x7a\x83\ \x87\x79\x82\x87\x7b\x84\x8a\x7b\x83\x8a\x7b\x82\x8a\x7a\x82\x89\ \x7c\x84\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7d\ \x85\x8b\x7c\x84\x89\x79\x81\x85\x77\x7f\x83\x7d\x85\x89\x80\x87\ \x8c\x7f\x87\x8b\x81\x87\x8c\x83\x89\x8e\x74\x7a\x7f\x53\x5b\x60\ \x31\x36\x3c\x2f\x33\x38\x53\x58\x5b\x57\x5c\x5f\x7d\x82\x83\x62\ \x67\x66\x12\x14\x15\x1d\x1e\x21\x4a\x4d\x51\x80\x83\x87\x8e\x92\ \x95\x70\x77\x7a\x72\x76\x79\x93\x97\x98\x96\x99\x9a\x3a\x3b\x3b\ \x1c\x1b\x1c\x81\x7e\x7f\x97\x9a\x9b\x97\x9b\x9e\x98\x9b\x9f\x9b\ \x9e\xa2\x9c\x9f\xa3\x9a\x9d\xa1\x9b\x9e\xa2\x9a\x9d\xa1\x9d\xa0\ \xa4\x9f\xa0\xa4\xa3\xa6\xa8\xa6\xa9\xaa\xa2\xa5\xa6\x8a\x8e\x90\ \x35\x3b\x3e\x1a\x20\x24\x3f\x47\x4a\x68\x70\x73\x3a\x40\x44\x6c\ \x70\x74\xa5\xa5\xa7\x99\x97\x9a\xa2\xa2\xa2\xac\xac\xac\xad\xad\ \xae\xb0\xb0\xb1\xae\xad\xae\xaa\xab\xaa\xad\xad\xad\xaf\xaf\xaf\ \xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xb4\xb4\xb5\xb2\xb1\xb3\xb3\ \xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\xb6\xbb\xba\ \xbc\xbc\xbb\xbd\xaf\xb2\xb3\x97\x99\x9a\x00\x00\x00\xd4\xc9\xc2\ \xdd\xd2\xcd\xd4\xc9\xc4\xc2\xb8\xb4\xc6\xbc\xb7\xd7\xcd\xc9\xe0\ \xd9\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe2\xdb\xd8\xe1\xda\xd7\xe2\xdb\ \xd8\xe2\xdb\xd8\xe3\xdb\xd8\xe2\xd9\xd6\xe2\xda\xd7\xe2\xda\xd7\ \xe3\xdc\xd9\xe3\xdc\xd9\xdf\xd7\xd3\xdd\xd4\xd0\xe0\xd7\xd3\xe5\ \xdd\xda\xe7\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdd\ \xda\xe1\xdc\xd9\xde\xd9\xd7\xdc\xd7\xd6\xd7\xd1\xd0\xd0\xc9\xc6\ \xc4\xbf\xbc\xb7\xb3\xb1\xa5\xa2\xa2\x83\x84\x86\x5a\x5f\x67\x2e\ \x39\x41\x25\x2f\x38\x49\x4d\x55\x74\x72\x74\x8a\x87\x88\x98\x95\ \x97\xa1\x9e\xa0\xa5\xa4\xa4\xa7\xa6\xa6\xa7\xa7\xa7\xa6\xa6\xa6\ \xa4\xa3\xa4\xa3\xa3\xa3\x93\x93\x94\x77\x7b\x7d\x6b\x70\x73\x72\ \x74\x78\x83\x84\x87\x82\x84\x87\x80\x82\x86\x82\x84\x87\x74\x78\ \x7b\x70\x74\x77\x75\x79\x7a\x7a\x7f\x81\x79\x7e\x82\x7e\x82\x85\ \x82\x86\x8a\x7f\x85\x89\x7e\x83\x88\x7e\x83\x89\x7c\x83\x8a\x7d\ \x84\x8b\x71\x7b\x82\x4b\x5b\x62\x2c\x39\x45\x22\x2e\x39\x39\x42\ \x4e\x6f\x74\x7b\x7e\x84\x89\x7d\x85\x89\x7b\x84\x87\x7a\x83\x88\ \x7c\x84\x8a\x7a\x82\x89\x7b\x83\x8a\x7b\x83\x8a\x7e\x86\x8d\x80\ \x87\x8f\x7f\x88\x8e\x7d\x86\x8c\x7c\x83\x8a\x7c\x85\x8b\x7b\x83\ \x88\x7b\x82\x88\x7b\x82\x88\x7c\x83\x88\x80\x86\x8b\x80\x87\x8c\ \x84\x8c\x91\x86\x8c\x91\x82\x88\x8d\x6a\x72\x79\x09\x10\x14\x1a\ \x1b\x1d\x45\x49\x4d\x5e\x61\x66\x6e\x70\x72\x5c\x60\x60\x18\x19\ \x19\x03\x04\x04\x29\x2b\x2e\x75\x78\x7b\x93\x97\x98\x92\x97\x98\ \x74\x7a\x7e\x73\x77\x7a\x84\x86\x87\x09\x09\x09\x00\x00\x00\x2b\ \x2e\x30\x86\x8a\x8c\x9a\x9d\xa0\x96\x99\x9c\x9a\x9c\xa0\x9c\x9f\ \xa2\x97\x9a\x9e\x98\x9b\x9f\x9a\x9c\x9f\x9c\x9e\xa2\x9d\x9e\xa2\ \xa2\xa4\xa6\xa9\xab\xac\xa5\xa7\xaa\xa5\xa8\xab\xa6\xab\xae\xa1\ \xa8\xac\xa5\xac\xb0\x9e\xa4\xa7\x63\x69\x6b\x8d\x90\x92\x3f\x3f\ \x42\x23\x25\x29\x5a\x5c\x5e\x9e\x9e\x9f\xb2\xb1\xb2\xaf\xaf\xb0\ \xaf\xae\xb0\xae\xae\xae\xad\xad\xae\xaf\xaf\xaf\xb2\xb2\xb2\xad\ \xad\xae\xaf\xaf\xaf\xb3\xb3\xb3\xb0\xb0\xb1\xb7\xb6\xb8\xb2\xb1\ \xb3\xb1\xb0\xb2\xb6\xb5\xb8\xb6\xb4\xb7\xb6\xb6\xb7\xbb\xba\xbb\ \xb7\xb8\xb9\xba\xbb\xbd\x00\x00\x00\xd4\xc8\xc0\xd4\xca\xc3\xc2\ \xb7\xb1\xbf\xb6\xb2\xcd\xc2\xbe\xdc\xd1\xce\xe0\xd8\xd5\xe1\xda\ \xd7\xe1\xda\xd7\xe1\xda\xd7\xe0\xd9\xd6\xe1\xda\xd7\xe2\xdb\xd8\ \xe3\xdb\xd8\xe3\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe5\xde\xdb\xe3\ \xdc\xd9\xdf\xd6\xd3\xde\xd6\xd2\xe1\xd9\xd6\xe6\xe0\xdd\xe7\xe1\ \xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe0\xda\xd7\ \xdd\xd8\xd5\xda\xd5\xd4\xd4\xcf\xcd\xcd\xc8\xc6\xc2\xbd\xbd\xb2\ \xae\xad\x98\x97\x97\x73\x77\x7a\x47\x50\x58\x27\x32\x39\x2f\x37\ \x3f\x5b\x5c\x62\x7d\x79\x7b\x91\x8c\x8d\x9b\x97\x98\xa2\xa0\xa0\ \xa5\xa3\xa3\xa6\xa4\xa5\xa7\xa7\xa7\xa5\xa5\xa5\xa3\xa3\xa3\xa1\ \xa0\xa1\x8c\x8c\x8d\x70\x74\x77\x6b\x70\x74\x77\x78\x7c\x83\x83\ \x85\x82\x84\x85\x80\x82\x83\x7e\x81\x82\x73\x77\x78\x6c\x70\x71\ \x73\x76\x78\x78\x7c\x7f\x77\x7b\x7f\x78\x7c\x80\x81\x85\x88\x82\ \x88\x8c\x7f\x85\x8a\x7e\x84\x89\x7e\x86\x8c\x7c\x84\x8b\x73\x7d\ \x84\x51\x61\x68\x21\x33\x3c\x15\x24\x2e\x3e\x4a\x55\x6e\x72\x79\ \x74\x78\x7d\x72\x78\x7d\x78\x7e\x83\x7a\x81\x86\x78\x80\x86\x78\ \x80\x87\x7b\x83\x8a\x7b\x83\x8a\x7d\x86\x8d\x7d\x87\x8e\x7c\x86\ \x8d\x7c\x84\x8b\x7b\x84\x8a\x7d\x86\x8c\x7e\x86\x8d\x7e\x86\x8d\ \x7c\x84\x8b\x7b\x82\x88\x7d\x83\x88\x81\x89\x8d\x85\x8c\x90\x84\ \x8c\x90\x81\x87\x8a\x77\x7d\x80\x1c\x25\x29\x01\x01\x02\x32\x35\ \x37\x85\x88\x89\x73\x77\x77\x3c\x40\x42\x10\x12\x15\x00\x00\x00\ \x43\x46\x47\x6b\x6f\x73\x85\x87\x88\x93\x96\x97\x92\x96\x99\x77\ \x7b\x7f\x2e\x31\x35\x00\x00\x00\x0f\x10\x11\x6c\x71\x74\x74\x78\ \x7a\x79\x7d\x7f\x97\x9b\x9c\x9b\x9e\x9f\x9e\xa0\xa1\x9c\x9e\xa1\ \x98\x9b\x9f\x9c\x9e\xa0\x9d\xa0\xa1\x9e\xa0\xa1\xa3\xa5\xa6\xa7\ \xa8\xaa\xa5\xa6\xa9\xa2\xa4\xa7\xa8\xaa\xab\xa3\xa6\xa7\x9b\x9e\ \x9f\x60\x64\x65\x6a\x6e\x6f\xa1\xa3\xa4\x33\x36\x37\x93\x98\x98\ \xb4\xb8\xb8\x5d\x5d\x60\xaa\xaa\xab\xa1\xa0\xa1\xa1\xa1\xa1\xac\ \xac\xae\xb1\xb1\xb3\xb0\xaf\xb0\xaf\xaf\xb0\xaf\xaf\xaf\xb1\xb1\ \xb1\xb2\xb2\xb2\xb5\xb5\xb5\xb9\xb8\xba\xb5\xb4\xb6\xb1\xb0\xb2\ \xb4\xb3\xb5\xb6\xb5\xb7\xb9\xb8\xb9\xbc\xbc\xbd\xb7\xb6\xb8\xba\ \xb8\xba\x00\x00\x00\xc0\xb0\xa9\xc5\xb9\xb2\xbd\xb1\xab\xc6\xb8\ \xb3\xd6\xc9\xc5\xdf\xd6\xd3\xe1\xd8\xd7\xe0\xd9\xd7\xe2\xdb\xd8\ \xe2\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdb\xd8\xe3\xdc\xd9\xe3\ \xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdc\xd9\xe1\xda\ \xd7\xe2\xda\xd6\xe4\xdd\xda\xe6\xe1\xde\xe6\xe1\xde\xe5\xe1\xde\ \xe5\xe1\xde\xe4\xde\xdb\xe2\xdd\xda\xdf\xda\xd7\xdd\xd8\xd5\xd8\ \xd3\xd2\xd2\xcd\xcb\xc8\xc3\xc2\xbc\xb6\xb7\xaa\xa5\xa6\x8c\x8c\ \x8d\x63\x6a\x6f\x37\x43\x4b\x28\x32\x3a\x40\x45\x4c\x6d\x6b\x6e\ \x85\x82\x83\x95\x90\x92\x9e\x9a\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa7\ \xa7\xa7\xa6\xa5\xa6\xa5\xa4\xa6\xa4\xa3\xa5\x9c\x9b\x9d\x81\x83\ \x85\x69\x70\x73\x68\x6d\x70\x7a\x7c\x7e\x83\x84\x85\x7c\x7e\x7f\ \x75\x78\x79\x72\x74\x75\x71\x74\x75\x68\x6d\x6d\x71\x74\x76\x78\ \x7c\x7f\x79\x7e\x81\x77\x7c\x7f\x7c\x80\x84\x7f\x85\x89\x80\x86\ \x8b\x7c\x82\x87\x7e\x84\x8b\x7f\x86\x8c\x78\x80\x86\x6e\x79\x7e\ \x5b\x6a\x72\x53\x62\x6a\x62\x6d\x72\x6b\x71\x76\x47\x4e\x56\x37\ \x3f\x49\x60\x64\x6b\x77\x7c\x82\x7b\x81\x88\x79\x81\x87\x7b\x83\ \x8a\x7e\x86\x8d\x7e\x87\x8e\x7d\x86\x8d\x7d\x85\x8c\x7e\x86\x8d\ \x80\x88\x8f\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8d\x7d\x86\x8c\x7c\ \x84\x88\x7e\x86\x8a\x81\x88\x8d\x82\x88\x8d\x84\x8a\x8e\x75\x7b\ \x7e\x45\x4b\x4e\x3c\x43\x46\x0e\x12\x15\x27\x29\x2c\x82\x84\x85\ \x5a\x5c\x5d\x16\x19\x1c\x18\x1c\x1f\x09\x0c\x0e\x52\x55\x55\x87\ \x8a\x8c\x71\x75\x78\x80\x84\x86\x95\x96\x98\x8f\x91\x93\x13\x15\ \x18\x00\x00\x00\x28\x2b\x2c\x98\x9d\x9e\x7a\x7f\x82\x4d\x54\x58\ \x7d\x81\x83\x99\x9b\x9d\xa1\xa2\xa3\xa0\xa4\xa4\x9d\xa0\xa2\xa0\ \xa2\xa3\xa1\xa3\xa4\x9f\xa1\xa2\xa5\xa7\xa8\xa8\xa9\xab\xa3\xa5\ \xa8\xa7\xa9\xaa\xa9\xab\xae\xa8\xaa\xad\xa3\xa5\xa9\x69\x6d\x6f\ \x6e\x72\x73\xa8\xaa\xac\x6a\x6f\x70\x8e\x92\x91\xa0\xa2\xa1\x1a\ \x1a\x1c\xa1\xa1\xa4\x6a\x6a\x6f\x77\x77\x7b\xaf\xb1\xb2\xb2\xb3\ \xb5\xad\xad\xaf\xb2\xb1\xb2\xb3\xb3\xb3\xb3\xb3\xb3\xb1\xb0\xb0\ \xb6\xb5\xb6\xb7\xb6\xb8\xb1\xb0\xb2\xb5\xb4\xb6\xb5\xb4\xb6\xb6\ \xb5\xb7\xb9\xb8\xba\xb9\xb7\xba\xb4\xb4\xb5\xb7\xb7\xb8\x00\x00\ \x00\xb0\xa7\xa2\xc9\xc0\xbb\xd0\xc7\xc2\xd7\xce\xc9\xdf\xd8\xd4\ \xe1\xda\xd8\xe0\xd8\xd5\xe1\xd9\xd5\xe2\xdb\xd7\xe3\xdc\xd9\xe3\ \xdc\xd9\xe3\xdc\xd9\xe2\xda\xd7\xe2\xd9\xd5\xe3\xda\xd7\xe2\xdb\ \xd8\xe3\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe4\xdd\xda\xe5\xde\xda\ \xe6\xdf\xdc\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe2\ \xdd\xda\xe1\xdc\xd9\xdd\xd8\xd4\xdb\xd6\xd3\xd6\xd1\xcf\xcf\xca\ \xc8\xc4\xbf\xbf\xb6\xb1\xb2\xa1\x9d\x9d\x80\x7f\x81\x55\x5b\x62\ \x2e\x3a\x42\x29\x33\x3b\x50\x53\x57\x77\x74\x75\x8c\x87\x88\x99\ \x94\x95\xa1\x9d\x9e\xa4\xa2\xa2\xa8\xa6\xa7\xa8\xa6\xa8\xa7\xa5\ \xa7\xa3\xa3\xa4\xa0\x9f\xa1\x90\x90\x92\x74\x79\x7c\x66\x6d\x70\ \x6b\x70\x72\x7d\x7f\x81\x81\x83\x85\x71\x73\x74\x5d\x61\x64\x5b\ \x5e\x60\x68\x6a\x6b\x6a\x6d\x6d\x70\x73\x75\x7a\x7d\x81\x79\x7d\ \x82\x78\x7c\x80\x77\x7c\x7f\x7d\x82\x85\x7d\x82\x87\x7c\x82\x87\ \x7d\x83\x89\x7d\x83\x89\x7d\x84\x8a\x7b\x83\x88\x79\x82\x87\x74\ \x7e\x83\x77\x80\x84\x60\x6a\x70\x20\x2d\x38\x0e\x1a\x26\x40\x46\ \x50\x6c\x70\x76\x79\x80\x84\x79\x82\x85\x7d\x85\x8c\x7f\x87\x8e\ \x7e\x86\x8c\x7d\x86\x8d\x7d\x85\x8c\x7c\x85\x8c\x7e\x87\x8e\x81\ \x88\x90\x80\x88\x8f\x7e\x86\x8d\x7d\x86\x8b\x7c\x85\x8a\x7d\x86\ \x8a\x7f\x88\x8c\x80\x8a\x8e\x84\x8c\x8f\x59\x64\x66\x03\x08\x0b\ \x3b\x3f\x42\x29\x30\x32\x37\x3b\x3f\x6b\x6e\x70\x44\x47\x48\x06\ \x08\x0a\x17\x1c\x1e\x24\x2c\x2f\x6a\x6e\x6f\x95\x97\x98\x89\x8e\ \x8f\x6a\x70\x73\x83\x85\x88\x5e\x60\x62\x00\x00\x00\x04\x05\x05\ \x48\x4c\x4e\x8b\x8d\x8f\x70\x75\x77\x75\x7c\x7e\x7e\x81\x84\x7b\ \x7d\x80\x99\x9b\x9c\xa1\xa4\xa5\x9f\xa2\xa3\xa5\xa7\xa8\xa4\xa6\ \xa7\xa3\xa5\xa6\xa8\xaa\xab\xa7\xa9\xaa\xa2\xa4\xa6\xab\xac\xaf\ \xaa\xab\xaf\xaa\xab\xaf\xab\xac\xb0\xab\xae\xb1\x9e\xa2\xa3\xa5\ \xa7\xa9\x9f\xa3\xa3\x82\x87\x86\x4c\x4f\x50\x33\x36\x39\xa5\xa7\ \xaa\x5a\x5c\x61\x80\x81\x86\xb3\xb4\xb6\xaf\xb1\xb3\xad\xae\xaf\ \xae\xae\xaf\xb3\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\xb6\xb5\xb7\xb4\ \xb4\xb5\xb2\xb1\xb3\xb8\xb7\xb8\xb6\xb5\xb7\xb3\xb2\xb4\xba\xb9\ \xbb\xb3\xb2\xb4\xb6\xb5\xb7\xbc\xbb\xbd\x00\x00\x00\xc2\xb8\xb1\ \xd9\xcf\xc9\xdf\xd7\xd2\xe2\xdb\xd6\xe3\xdd\xd8\xe2\xdb\xd8\xe0\ \xd8\xd4\xe0\xd7\xd2\xdf\xd8\xd4\xe0\xd9\xd5\xe0\xd9\xd5\xe2\xdb\ \xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xde\xdb\ \xe5\xdf\xdc\xe5\xdf\xdc\xe6\xdf\xdc\xe6\xe0\xdc\xe6\xe0\xdd\xe7\ \xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe1\xdc\ \xd9\xdc\xd7\xd4\xd9\xd4\xd2\xd4\xce\xcc\xcb\xc6\xc5\xc0\xbb\xbb\ \xb0\xab\xac\x97\x94\x94\x71\x73\x75\x44\x4c\x53\x28\x33\x3c\x30\ \x39\x3f\x61\x61\x63\x7f\x7b\x79\x91\x8c\x8c\x9d\x99\x9a\xa3\x9f\ \xa1\xa6\xa2\xa3\xa7\xa5\xa6\xa8\xa6\xa6\xa5\xa4\xa5\xa2\xa2\xa3\ \x96\x97\x98\x7c\x80\x82\x69\x6f\x73\x66\x6d\x70\x73\x77\x79\x82\ \x84\x85\x7e\x80\x81\x6a\x6d\x6f\x45\x4e\x52\x3f\x45\x49\x58\x5b\ \x5d\x66\x6a\x6b\x6f\x72\x75\x7a\x7e\x82\x79\x7d\x82\x78\x7c\x80\ \x74\x78\x7c\x79\x7d\x82\x7d\x82\x87\x7c\x82\x87\x7c\x82\x87\x7d\ \x83\x88\x7b\x82\x87\x7d\x85\x8a\x7b\x84\x89\x7b\x83\x89\x78\x81\ \x87\x58\x65\x6e\x21\x34\x41\x33\x3e\x4a\x57\x5e\x66\x63\x69\x70\ \x76\x7c\x81\x7a\x82\x86\x7d\x85\x8c\x80\x88\x8e\x7f\x88\x8d\x7e\ \x86\x8d\x7b\x83\x89\x7d\x85\x8c\x7c\x84\x8b\x7f\x87\x8f\x81\x89\ \x91\x82\x8a\x91\x7f\x87\x8d\x7e\x86\x8b\x80\x87\x8c\x81\x88\x8c\ \x82\x8a\x8e\x85\x8d\x91\x5b\x68\x6b\x02\x06\x0a\x0c\x0f\x12\x4d\ \x54\x57\x7f\x82\x83\x70\x74\x75\x30\x37\x3a\x00\x00\x00\x0e\x12\ \x14\x50\x56\x59\x72\x76\x79\x86\x88\x89\x97\x99\x9a\x90\x94\x95\ \x6e\x73\x77\x19\x1b\x1d\x00\x00\x00\x1a\x1c\x1d\x7d\x80\x84\x60\ \x65\x68\x54\x5b\x5d\x98\x9b\x9c\x9a\x9d\x9e\x7c\x7f\x82\x7a\x7d\ \x7f\x93\x96\x96\xa0\xa2\xa3\xa3\xa5\xa6\xa5\xa7\xa8\xa8\xaa\xab\ \xa6\xa8\xa9\xa5\xa7\xa9\xa5\xa7\xa9\xaa\xac\xae\xab\xac\xb0\xad\ \xae\xb2\xad\xae\xb2\xa9\xab\xad\xa8\xaa\xab\xa8\xa9\xab\xaa\xab\ \xad\xa7\xa9\xaa\x8f\x94\x98\xa4\xa7\xab\xac\xad\xaf\xb3\xb5\xb7\ \xab\xad\xb0\xb0\xb0\xb2\xae\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xaf\xb0\ \xb0\xaf\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb5\xb3\xb2\xb3\xb3\xb2\ \xb4\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb8\xb7\xb9\xb8\xb7\xb9\ \xb6\xb5\xb7\xb9\xb8\xba\x00\x00\x00\xd6\xcb\xc5\xdf\xd6\xd2\xe1\ \xd9\xd6\xe2\xdb\xd7\xe2\xdc\xd8\xe1\xdb\xd8\xe1\xda\xd6\xe1\xda\ \xd5\xe1\xda\xd7\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdb\xd8\xe4\xdd\xda\ \xe5\xde\xdc\xe5\xe0\xdd\xe7\xe0\xde\xe7\xe1\xdf\xe6\xe2\xe0\xe6\ \xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ \xde\xe6\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xd9\xe0\xdb\xd8\xdc\xd7\xd5\ \xd8\xd2\xcf\xd2\xcb\xc8\xc8\xc2\xc1\xbb\xb6\xb5\xa8\xa5\xa4\x89\ \x8a\x89\x5f\x65\x68\x36\x3f\x48\x28\x32\x3b\x40\x47\x4d\x6c\x6b\ \x6b\x85\x81\x7e\x97\x92\x91\xa0\x9b\x9c\xa4\x9f\xa0\xa8\xa4\xa5\ \xa7\xa5\xa5\xa8\xa5\xa5\xa5\xa3\xa3\x9e\x9e\x9f\x8f\x91\x92\x77\ \x7c\x7e\x6a\x70\x73\x6d\x72\x74\x7d\x80\x81\x87\x89\x8a\x82\x84\ \x85\x6d\x72\x73\x44\x4f\x52\x43\x4b\x4e\x4d\x52\x55\x58\x5c\x5f\ \x66\x69\x6d\x77\x7b\x80\x78\x7c\x81\x77\x7b\x80\x74\x78\x7d\x74\ \x79\x7e\x7c\x81\x84\x7d\x83\x88\x7d\x83\x88\x7b\x82\x86\x7a\x80\ \x85\x7c\x83\x88\x79\x82\x86\x7c\x83\x8a\x78\x80\x87\x59\x66\x6f\ \x2a\x3d\x4a\x4d\x56\x5f\x6b\x71\x77\x66\x6c\x74\x74\x7a\x7f\x7c\ \x81\x86\x7e\x85\x8d\x7e\x86\x8d\x7e\x87\x8c\x7e\x86\x8c\x7d\x85\ \x8c\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8e\x7f\x87\x8e\x82\x89\x91\ \x7f\x88\x8e\x80\x88\x8d\x82\x89\x8c\x83\x89\x8d\x83\x89\x8e\x82\ \x87\x8b\x4f\x5c\x61\x1c\x27\x2d\x03\x05\x08\x5c\x62\x66\x8e\x8f\ \x90\x7a\x7e\x81\x3b\x44\x4a\x0a\x11\x15\x11\x13\x15\x6b\x6d\x70\ \x81\x84\x88\x71\x73\x77\x86\x87\x89\x99\x9b\x9c\x6c\x70\x74\x00\ \x00\x01\x01\x01\x01\x4a\x4c\x4f\x9f\xa0\xa2\x62\x68\x6b\x4d\x54\ \x58\x8b\x8d\x90\x9b\x9d\x9f\x9b\x9e\xa0\x84\x88\x8b\x7a\x7d\x7e\ \x91\x94\x95\xa3\xa5\xa6\xa9\xaa\xab\xaa\xab\xac\xa5\xa7\xa8\xa8\ \xaa\xab\xa8\xaa\xab\xab\xac\xaf\xab\xac\xaf\xad\xaf\xb2\xac\xae\ \xb0\xaa\xab\xac\xaa\xac\xad\xa9\xaa\xac\xa8\xa7\xa9\xad\xac\xae\ \xaf\xb0\xb1\xae\xaf\xb0\xb0\xb1\xb2\xac\xad\xaf\xaa\xab\xad\xab\ \xab\xad\xb1\xb1\xb2\xb0\xaf\xb1\xb1\xb0\xb1\xaf\xaf\xaf\xaf\xae\ \xaf\xb1\xb1\xb1\xb4\xb4\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb4\xb5\ \xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xba\xb9\xba\xb6\ \xb5\xb7\x00\x00\x00\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe4\xdd\ \xda\xe3\xdd\xda\xe3\xdd\xd9\xe4\xdd\xd9\xe4\xde\xd9\xe4\xdd\xda\ \xe5\xde\xdb\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe7\ \xe2\xdf\xe8\xe3\xe2\xe8\xe3\xe2\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\ \xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xdf\xdc\ \xe3\xde\xdb\xe0\xdb\xd8\xde\xd9\xd6\xdb\xd6\xd3\xd6\xd0\xce\xcf\ \xc9\xc6\xc5\xbf\xbf\xb4\xb0\xb1\x9d\x9d\x9c\x7a\x7f\x7e\x4e\x57\ \x5a\x2d\x37\x3e\x2a\x33\x3c\x50\x55\x5a\x77\x76\x77\x8d\x89\x88\ \x9c\x97\x98\xa5\xa0\xa1\xa6\xa2\xa2\xa5\xa3\xa3\xa8\xa6\xa6\xa8\ \xa6\xa6\xa5\xa4\xa4\x9e\x9e\x9e\x8e\x91\x91\x80\x84\x85\x79\x7e\ \x7f\x7b\x7e\x7f\x87\x89\x89\x89\x8c\x8d\x86\x88\x8a\x76\x7b\x7c\ \x5c\x64\x68\x5b\x62\x66\x4b\x50\x56\x41\x48\x4e\x5e\x61\x66\x77\ \x7b\x7f\x77\x7b\x81\x75\x79\x7e\x75\x79\x7e\x71\x77\x7c\x77\x7d\ \x81\x7e\x84\x89\x7c\x82\x87\x7c\x83\x87\x7a\x80\x85\x7a\x81\x86\ \x79\x82\x86\x7a\x82\x89\x7a\x81\x88\x63\x70\x78\x3b\x4d\x58\x56\ \x5f\x67\x73\x78\x7e\x65\x6c\x72\x59\x5f\x66\x6b\x70\x76\x7b\x82\ \x89\x7f\x86\x8e\x7c\x85\x8a\x7e\x86\x8d\x7c\x84\x8b\x80\x88\x8f\ \x80\x88\x8f\x7f\x87\x8e\x7f\x87\x8e\x81\x89\x90\x7e\x87\x8d\x80\ \x88\x8d\x82\x89\x8d\x85\x8a\x8f\x83\x89\x8e\x7e\x84\x88\x60\x6b\ \x6f\x3e\x4c\x52\x18\x23\x27\x62\x67\x6c\x8d\x8f\x90\x85\x88\x8c\ \x6a\x72\x77\x2f\x3a\x41\x21\x29\x2f\x71\x74\x77\x93\x95\x97\x80\ \x82\x85\x73\x75\x79\x83\x84\x87\x38\x39\x3d\x00\x00\x00\x07\x08\ \x09\x64\x66\x6c\x87\x88\x8b\x6b\x6f\x71\x87\x8a\x8c\x7d\x80\x83\ \x85\x87\x8a\x9e\xa0\xa1\xa2\xa6\xa7\x8d\x91\x92\x7a\x7e\x80\x89\ \x8c\x8e\xa4\xa5\xa7\xa7\xa7\xa9\xa6\xa8\xa9\xa8\xaa\xab\xaa\xac\ \xae\xab\xad\xb0\xac\xae\xb0\xab\xac\xaf\xaa\xab\xad\xa9\xaa\xab\ \xa8\xa9\xaa\xac\xad\xae\xab\xab\xad\xac\xac\xad\xaa\xab\xac\xad\ \xaf\xb0\xb0\xb2\xb3\xae\xb0\xb1\xaf\xb0\xb1\xaa\xa9\xab\xaf\xae\ \xb0\xaf\xaf\xb0\xb4\xb4\xb4\xb1\xb1\xb1\xb0\xb0\xb0\xb1\xb1\xb1\ \xb4\xb4\xb4\xb7\xb6\xb8\xb7\xb7\xb8\xb6\xb6\xb6\xb9\xb8\xba\xba\ \xb9\xbb\xb6\xb5\xb7\xb8\xb7\xb9\xbd\xbc\xbd\xb7\xb6\xb7\x00\x00\ \x00\xe4\xdf\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\ \xe6\xe0\xdd\xe6\xe1\xdd\xe7\xe1\xdd\xe7\xe0\xdd\xe7\xe0\xdd\xe7\ \xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\ \xe2\xe8\xe3\xe1\xe7\xe2\xe0\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe1\xde\ \xe6\xe1\xde\xe6\xe1\xde\xe4\xdf\xdc\xe3\xde\xda\xe2\xdd\xda\xe0\ \xdb\xd9\xdd\xd8\xd5\xd8\xd3\xd1\xd3\xce\xcc\xcc\xc7\xc5\xc1\xbc\ \xbc\xb0\xac\xad\x92\x93\x93\x6b\x71\x72\x3f\x4a\x4e\x28\x32\x38\ \x38\x3f\x46\x63\x63\x67\x83\x7f\x82\x93\x8e\x8f\x9d\x98\x99\xa5\ \xa0\xa1\xa7\xa3\xa3\xa7\xa4\xa5\xa8\xa5\xa6\xa4\xa3\xa4\xa3\xa4\ \xa3\x9c\x9c\x9d\x8e\x90\x90\x88\x8c\x8c\x86\x89\x8a\x89\x8c\x8d\ \x8a\x8d\x8f\x8a\x8c\x8e\x8d\x8f\x92\x7d\x81\x83\x6c\x73\x76\x5d\ \x62\x68\x45\x4d\x54\x30\x38\x40\x54\x58\x5e\x76\x7a\x7e\x77\x7c\ \x80\x74\x78\x7e\x75\x79\x7e\x73\x78\x7d\x71\x77\x7d\x7c\x80\x86\ \x7a\x80\x85\x7b\x82\x86\x7b\x81\x86\x79\x81\x87\x79\x81\x88\x79\ \x81\x88\x7b\x83\x8a\x6e\x78\x80\x51\x5e\x68\x5c\x65\x6e\x75\x7a\ \x80\x5f\x65\x6d\x2e\x38\x41\x45\x4d\x54\x72\x77\x7d\x80\x87\x8e\ \x7d\x85\x8a\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x88\x8f\x7f\ \x87\x8e\x80\x88\x8e\x81\x88\x8f\x81\x89\x8f\x81\x88\x8e\x83\x89\ \x8e\x86\x8c\x91\x86\x8c\x91\x82\x89\x8d\x76\x7f\x82\x4b\x58\x5c\ \x54\x60\x65\x82\x86\x89\x8c\x90\x92\x8c\x90\x93\x7f\x85\x8a\x59\ \x66\x6d\x5a\x64\x6b\x73\x77\x7c\x8c\x8e\x90\x94\x97\x98\x86\x8a\ \x8d\x5a\x5d\x61\x0b\x0b\x0c\x00\x00\x00\x33\x39\x3a\x7e\x82\x84\ \x5c\x60\x63\x6a\x6d\x6f\x93\x93\x95\x77\x7a\x7c\x7b\x7e\x7f\x81\ \x83\x86\x9b\x9d\x9f\xa1\xa5\xa6\x94\x98\x9a\x7d\x80\x84\x86\x88\ \x8b\xa7\xa7\xa8\xa6\xa8\xa9\xa8\xaa\xac\xab\xac\xae\xac\xae\xb1\ \xae\xaf\xb2\xac\xae\xb0\xaa\xac\xad\xaa\xac\xad\xaa\xab\xac\xae\ \xaf\xb0\xb0\xb0\xb2\xae\xb0\xb1\xad\xae\xaf\xac\xab\xad\xae\xae\ \xb0\xb0\xb2\xb3\xb3\xb4\xb5\xb0\xaf\xb1\xaf\xae\xb0\xb1\xb0\xb1\ \xb2\xb2\xb2\xb1\xb0\xb1\xb3\xb3\xb4\xb4\xb4\xb5\xaf\xaf\xaf\xb3\ \xb2\xb3\xb5\xb5\xb5\xb5\xb5\xb5\xba\xba\xbb\xba\xba\xbb\xb5\xb4\ \xb5\xb9\xb8\xba\xbb\xba\xbc\xb9\xb8\xb9\x00\x00\x00\xe6\xe1\xde\ \xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\ \xe2\xdf\xe7\xe1\xde\xe8\xe1\xde\xe8\xe1\xde\xe7\xe2\xdf\xe7\xe1\ \xde\xe8\xe2\xdf\xe7\xe1\xde\xe6\xe0\xdd\xe6\xdf\xdd\xe6\xe0\xde\ \xe6\xe1\xde\xe7\xe1\xde\xe8\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe5\ \xe0\xdd\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\xda\xd9\xdc\xd7\ \xd5\xd8\xd3\xd2\xd2\xcd\xca\xc8\xc3\xc2\xbb\xb5\xb5\xa6\xa2\xa3\ \x86\x86\x87\x5c\x62\x65\x34\x3f\x44\x29\x33\x3a\x47\x4b\x51\x70\ \x6e\x70\x8a\x86\x88\x97\x92\x94\xa2\x9d\x9e\xa5\xa2\xa2\xa6\xa3\ \xa4\xaa\xa7\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa3\x99\x99\x9a\ \x8a\x8d\x8f\x87\x8a\x8c\x8a\x8c\x8e\x8b\x8d\x91\x8b\x8e\x91\x8a\ \x8d\x91\x8e\x92\x95\x80\x85\x88\x6c\x74\x78\x41\x49\x51\x20\x29\ \x32\x1e\x27\x30\x40\x44\x4b\x6f\x72\x77\x77\x7b\x80\x76\x7a\x7f\ \x73\x77\x7c\x74\x78\x7d\x70\x75\x7a\x76\x7b\x80\x7c\x81\x86\x7b\ \x81\x86\x7a\x82\x87\x79\x81\x86\x79\x81\x88\x79\x81\x88\x7a\x81\ \x88\x73\x7c\x83\x62\x6c\x76\x5d\x67\x71\x6b\x72\x79\x55\x5e\x65\ \x25\x31\x3a\x37\x42\x4a\x62\x67\x6d\x7e\x82\x89\x80\x86\x8c\x7f\ \x87\x8e\x7f\x87\x8e\x82\x8a\x91\x80\x88\x8f\x80\x88\x8f\x81\x89\ \x90\x84\x8c\x92\x83\x8b\x91\x84\x8a\x91\x84\x8a\x8f\x87\x8d\x92\ \x86\x8d\x92\x84\x8b\x8f\x81\x8a\x8d\x6c\x77\x7a\x7b\x81\x86\x8a\ \x8d\x91\x8c\x92\x95\x8e\x93\x97\x8a\x8f\x93\x83\x89\x8e\x86\x8c\ \x91\x7c\x81\x87\x76\x79\x7e\x8b\x8f\x90\x97\x9a\x9b\x41\x44\x45\ \x01\x01\x01\x04\x05\x05\x76\x7b\x7c\x92\x96\x95\x53\x59\x5a\x66\ \x6b\x6c\x68\x6c\x6e\x58\x5c\x5f\x92\x94\x96\x80\x82\x86\x7b\x7e\ \x81\x98\x9a\x9c\xa4\xa6\xa8\x9d\x9f\xa1\x84\x88\x8a\x7e\x82\x83\ \xa3\xa4\xa5\xa9\xaa\xac\xa9\xab\xac\xab\xae\xaf\xad\xaf\xb0\xad\ \xae\xaf\xab\xac\xad\xac\xad\xae\xad\xad\xae\xad\xad\xae\xaf\xaf\ \xb1\xaf\xaf\xb1\xb2\xb1\xb3\xae\xad\xaf\xab\xaa\xac\xac\xae\xaf\ \xb5\xb5\xb7\xb1\xb0\xb2\xaf\xae\xb1\xb2\xb1\xb3\xb2\xb2\xb2\xb0\ \xb0\xb0\xb3\xb3\xb4\xb3\xb3\xb3\xb0\xb0\xb0\xb3\xb3\xb3\xb4\xb4\ \xb4\xb3\xb3\xb3\xbb\xbc\xbb\xbb\xbb\xbb\xba\xba\xbb\xba\xb9\xba\ \xb8\xb7\xb9\xb7\xb6\xb7\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\ \xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe7\xe2\xde\xe6\xe0\xde\xe7\xe1\ \xde\xe7\xe1\xde\xe6\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xdc\xe6\xdf\xdc\ \xe5\xde\xdb\xe4\xdd\xda\xe4\xdd\xda\xe4\xde\xda\xe5\xe0\xdd\xe5\ \xe0\xdd\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\ \xdd\xe4\xdf\xdd\xe0\xdb\xda\xdf\xda\xd9\xdd\xd8\xd6\xd5\xd0\xce\ \xce\xc9\xc7\xc4\xbf\xbe\xb2\xad\xab\x9b\x97\x96\x78\x79\x79\x4b\ \x52\x55\x2b\x37\x3d\x2f\x38\x3e\x55\x56\x5a\x7a\x76\x77\x8e\x89\ \x8b\x9b\x96\x97\xa0\x9d\x9e\xa5\xa3\xa3\xaa\xa7\xa8\xa7\xa5\xa6\ \xa6\xa5\xa7\xa5\xa4\xa5\xa0\x9f\xa1\x90\x91\x93\x83\x84\x87\x83\ \x83\x87\x88\x8a\x8c\x88\x89\x8d\x8b\x8d\x91\x8d\x8f\x94\x8e\x93\ \x96\x87\x8c\x8f\x6c\x75\x78\x38\x48\x51\x0a\x17\x22\x12\x1a\x23\ \x34\x37\x3f\x5e\x60\x65\x73\x75\x79\x78\x7b\x80\x73\x76\x7b\x72\ \x76\x7b\x72\x76\x7b\x71\x77\x7c\x7a\x80\x85\x7b\x82\x87\x7a\x81\ \x87\x79\x7f\x86\x79\x81\x88\x7b\x81\x88\x7b\x82\x8a\x7a\x81\x89\ \x72\x7a\x82\x56\x63\x6d\x47\x56\x5f\x46\x53\x5c\x36\x44\x4d\x34\ \x42\x4a\x47\x50\x59\x75\x78\x7f\x83\x87\x8d\x80\x87\x8d\x7f\x88\ \x8f\x81\x89\x90\x81\x89\x90\x81\x89\x90\x81\x8a\x91\x82\x8b\x92\ \x84\x8c\x93\x85\x8d\x94\x86\x8d\x94\x89\x8f\x96\x88\x8d\x92\x87\ \x8e\x93\x85\x8c\x90\x84\x8b\x8f\x87\x8c\x91\x87\x8c\x8f\x8b\x90\ \x94\x8d\x92\x95\x8e\x93\x96\x90\x95\x99\x91\x95\x9a\x8e\x92\x97\ \x7e\x83\x88\x77\x7c\x7f\x85\x88\x89\x1d\x20\x20\x00\x00\x00\x13\ \x17\x18\x77\x7b\x7c\x83\x87\x89\x5e\x66\x67\x86\x8b\x8b\x6c\x73\ \x74\x72\x77\x7b\x9f\xa2\xa4\x9d\x9f\xa3\x82\x84\x89\x7a\x7d\x80\ \x95\x97\x9a\xa7\xa9\xaa\xa2\xa3\xa6\x88\x8b\x8f\x7a\x7d\x81\x9a\ \x9c\x9d\xad\xae\xaf\xac\xae\xaf\xaa\xab\xad\xad\xad\xaf\xb0\xaf\ \xb1\xae\xae\xaf\xac\xab\xad\xab\xab\xad\xad\xad\xaf\xaf\xae\xb0\ \xb2\xb1\xb3\xae\xaf\xb0\xb1\xb1\xb2\xae\xaf\xb1\xb1\xb0\xb1\xab\ \xab\xac\xaf\xae\xb0\xb2\xb1\xb3\xb4\xb4\xb5\xb3\xb3\xb4\xaf\xaf\ \xb0\xb3\xb3\xb4\xb6\xb6\xb6\xb6\xb6\xb6\xb8\xb8\xb8\xb6\xb6\xb6\ \xb8\xb8\xb8\xb8\xb8\xb8\xbc\xbc\xbc\xb9\xb8\xb9\xb9\xb9\xba\xb8\ \xb7\xb9\x00\x00\x00\xe6\xe1\xde\xe5\xe1\xde\xe5\xe0\xdd\xe5\xde\ \xdc\xe4\xdd\xda\xe4\xdd\xd9\xe4\xdb\xd8\xe3\xdd\xd9\xe3\xdd\xd9\ \xe3\xdc\xd8\xe3\xdd\xda\xe3\xdd\xda\xe4\xde\xdb\xe4\xdd\xda\xe3\ \xdd\xdb\xe4\xde\xdc\xe5\xde\xdc\xe6\xdf\xdc\xe6\xe0\xdd\xe6\xe2\ \xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdd\xe3\xde\xdd\ \xe1\xdc\xdb\xdc\xd7\xd6\xd9\xd4\xd3\xd4\xcf\xce\xcc\xc6\xc6\xbf\ \xb9\xb9\xae\xa9\xa6\x91\x8e\x8c\x69\x6c\x6c\x3d\x46\x4a\x2a\x36\ \x3c\x3d\x44\x4a\x65\x64\x67\x84\x7f\x81\x95\x90\x92\x9e\x9a\x9c\ \xa4\xa1\xa2\xa6\xa5\xa7\xaa\xa8\xa9\xa7\xa6\xa7\xa5\xa4\xa6\xa2\ \xa1\xa3\x9c\x9b\x9d\x89\x8a\x8b\x7b\x7e\x7f\x7c\x7e\x81\x86\x87\ \x8a\x8a\x8c\x8e\x8d\x8f\x93\x8e\x91\x95\x8d\x92\x95\x8b\x8f\x92\ \x78\x7f\x83\x51\x60\x67\x2c\x3c\x48\x29\x32\x3b\x43\x46\x4f\x5e\ \x61\x67\x70\x72\x76\x76\x79\x7d\x74\x77\x7c\x70\x74\x79\x74\x78\ \x7d\x72\x77\x7d\x71\x77\x7c\x79\x7f\x84\x7a\x80\x86\x77\x7e\x85\ \x78\x80\x86\x79\x80\x87\x79\x81\x88\x7a\x82\x89\x7a\x81\x88\x68\ \x71\x7a\x51\x5f\x69\x51\x5f\x68\x4a\x58\x60\x27\x34\x3c\x19\x24\ \x2a\x37\x3d\x44\x63\x67\x6c\x80\x86\x8b\x7f\x87\x8e\x80\x88\x8f\ \x81\x8a\x91\x83\x8b\x92\x82\x89\x90\x81\x89\x90\x84\x8c\x93\x86\ \x8e\x95\x85\x8d\x94\x86\x8e\x95\x87\x8e\x95\x85\x8b\x91\x87\x8d\ \x92\x8a\x90\x95\x8b\x8f\x94\x8b\x90\x94\x8b\x90\x93\x89\x8e\x91\ \x8b\x90\x94\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x90\x95\x99\x80\ \x86\x89\x4b\x51\x55\x04\x04\x04\x00\x00\x00\x5c\x61\x62\x72\x77\ \x77\x44\x4d\x51\x7c\x80\x81\x88\x8a\x89\x82\x85\x85\x7d\x80\x83\ \x8a\x8c\x8f\xa5\xa6\xa8\xa2\xa3\xa6\x8a\x8d\x90\x75\x79\x7c\x96\ \x97\x99\xa7\xa7\xa8\xa6\xa6\xa8\x94\x97\x99\x77\x7b\x7c\x93\x94\ \x96\xae\xae\xb0\xaa\xa9\xac\xad\xac\xae\xad\xac\xae\xad\xac\xae\ \xac\xab\xad\xad\xac\xae\xae\xae\xb0\xad\xad\xaf\xb4\xb2\xb5\xb3\ \xb2\xb3\xb3\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xae\xad\xaf\xad\xac\ \xae\xb2\xb1\xb3\xb3\xb2\xb4\xb6\xb5\xb7\xb2\xb1\xb3\xb3\xb3\xb4\ \xb6\xb6\xb6\xb3\xb4\xb3\xb9\xb8\xb9\xba\xba\xbb\xb4\xb4\xb4\xbb\ \xbb\xbb\xb9\xb9\xb9\xb9\xb9\xb9\xb8\xb8\xba\xb8\xb8\xb9\x00\x00\ \x00\xe5\xdf\xdc\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\xd9\xe1\xda\xd7\ \xe1\xd8\xd4\xe1\xd9\xd5\xe1\xda\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe2\ \xdd\xda\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\ \xdd\xe6\xe0\xdd\xe7\xe0\xdd\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\ \xe6\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdc\xe3\xde\xdd\xdf\xda\xd9\xdc\ \xd7\xd6\xd7\xd2\xd0\xd0\xcb\xcb\xc9\xc4\xc4\xb9\xb4\xb3\xa5\xa1\ \xa0\x83\x82\x82\x59\x5e\x60\x33\x3d\x43\x2a\x33\x39\x4a\x4f\x53\ \x73\x71\x74\x8b\x87\x8a\x9a\x97\x9a\xa2\x9e\xa0\xa5\xa1\xa3\xa6\ \xa5\xa6\xa8\xa7\xa9\xa6\xa5\xa6\xa5\xa4\xa6\xa3\xa2\xa4\x95\x96\ \x96\x7e\x80\x80\x74\x78\x79\x79\x7b\x7d\x86\x87\x89\x89\x8b\x8e\ \x8d\x8f\x93\x8e\x91\x95\x8d\x91\x94\x8a\x8f\x92\x83\x89\x8e\x6f\ \x79\x7f\x50\x5e\x66\x3f\x4b\x54\x4e\x55\x5d\x69\x6d\x72\x72\x75\ \x79\x6f\x71\x76\x70\x73\x78\x6f\x73\x78\x73\x77\x7b\x6c\x71\x76\ \x66\x6c\x73\x76\x7b\x80\x7b\x81\x88\x78\x7f\x86\x79\x81\x87\x79\ \x81\x89\x7a\x82\x89\x7a\x82\x89\x7a\x82\x89\x75\x7d\x86\x6f\x78\ \x80\x6e\x78\x7f\x5e\x69\x71\x21\x2f\x38\x06\x0e\x13\x0a\x12\x17\ \x38\x3f\x46\x75\x79\x7f\x85\x8c\x93\x82\x89\x90\x80\x88\x8f\x83\ \x8b\x91\x80\x88\x8d\x81\x89\x8f\x85\x8b\x92\x88\x8f\x96\x87\x8f\ \x96\x89\x8f\x96\x8a\x90\x97\x89\x8f\x96\x89\x8f\x94\x8c\x92\x97\ \x8a\x8e\x93\x8a\x8f\x92\x88\x8d\x90\x88\x8d\x90\x8c\x91\x94\x8f\ \x94\x97\x90\x94\x99\x94\x98\x9c\x93\x98\x9c\x91\x96\x99\x7c\x84\ \x88\x1e\x25\x28\x18\x1f\x21\x8b\x8f\x8f\x83\x87\x87\x3f\x4a\x4e\ \x68\x6d\x6f\x51\x56\x58\x61\x64\x67\x95\x97\x99\x7b\x7e\x82\x8a\ \x8b\x8e\xa1\xa1\xa4\xa4\xa6\xaa\x91\x94\x98\x74\x76\x7a\x8f\x8e\ \x91\xab\xaa\xac\xa8\xa9\xaa\x9b\x9d\x9e\x7f\x81\x82\x8a\x8b\x8d\ \xad\xac\xae\xaf\xae\xb0\xae\xad\xaf\xae\xad\xaf\xaf\xae\xb1\xb1\ \xb0\xb3\xae\xae\xb0\xae\xaf\xb0\xb3\xb2\xb4\xb0\xaf\xb1\xb4\xb3\ \xb5\xb4\xb5\xb6\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ \xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb6\xb3\ \xb2\xb3\xb7\xb6\xb8\xb6\xb6\xb6\xba\xb9\xb9\xb9\xb9\xb9\xbb\xbb\ \xbb\xb8\xb8\xb8\xba\xba\xba\xbb\xbc\xbb\x00\x00\x00\xe3\xdc\xd9\ \xe2\xdd\xda\xe0\xda\xd7\xdf\xda\xd7\xe0\xdb\xd7\xe0\xdb\xd6\xe2\ \xdb\xd7\xe3\xdc\xd8\xe4\xde\xdb\xe4\xde\xdb\xe5\xe0\xdd\xe6\xe1\ \xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xdf\xe7\xe2\xdf\ \xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe5\ \xe0\xdd\xe3\xde\xdc\xe2\xdd\xdc\xde\xd9\xd8\xdb\xd5\xd4\xd4\xcf\ \xce\xcf\xca\xc8\xc3\xbf\xbe\xb2\xaf\xae\x9b\x98\x98\x75\x78\x79\ \x46\x4f\x52\x2a\x35\x39\x34\x3c\x41\x5c\x5e\x62\x7d\x7c\x7f\x8f\ \x8c\x8f\x9b\x98\x9a\xa1\x9e\xa0\xa5\xa3\xa5\xa7\xa6\xa7\xa8\xa7\ \xa9\xa5\xa4\xa6\xa5\xa4\xa6\xa1\xa0\xa1\x8d\x8d\x8d\x74\x77\x77\ \x6e\x73\x73\x77\x7a\x7b\x86\x87\x8b\x89\x8c\x90\x8e\x91\x95\x8e\ \x91\x95\x8c\x90\x92\x8a\x8f\x92\x87\x8c\x91\x7c\x84\x8a\x66\x72\ \x7a\x4f\x5b\x63\x55\x5d\x65\x66\x6b\x70\x6a\x6e\x73\x58\x5b\x63\ \x5f\x62\x6a\x6c\x70\x76\x66\x6a\x70\x58\x5d\x65\x57\x5c\x65\x63\ \x68\x6f\x77\x7d\x82\x7a\x81\x88\x78\x81\x87\x77\x80\x85\x77\x7f\ \x86\x79\x80\x87\x7a\x81\x88\x79\x81\x88\x79\x81\x88\x7a\x82\x89\ \x72\x7b\x83\x59\x67\x70\x37\x43\x4c\x19\x24\x2b\x22\x29\x2f\x3b\ \x40\x46\x75\x79\x80\x84\x8a\x90\x84\x8b\x91\x84\x8b\x92\x83\x8a\ \x91\x85\x8b\x92\x85\x8c\x92\x88\x90\x96\x88\x8f\x96\x88\x8e\x95\ \x8c\x92\x99\x8a\x90\x97\x88\x8e\x93\x8b\x8f\x94\x8d\x91\x96\x8c\ \x90\x95\x8b\x8f\x92\x88\x8d\x90\x8a\x8f\x92\x8d\x92\x95\x91\x95\ \x99\x92\x96\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\x9f\x7d\x85\x88\ \x57\x62\x66\x87\x8a\x8b\x6f\x74\x76\x71\x77\x7a\x7b\x7f\x81\x6a\ \x6f\x73\x8a\x8c\x90\xa1\xa1\xa4\x96\x99\x9c\x7b\x7e\x82\x85\x86\ \x8a\xa2\xa2\xa5\xa7\xa9\xaa\x9c\x9f\xa0\x76\x79\x7c\x84\x86\x87\ \xab\xab\xab\xa7\xaa\xaa\xa2\xa4\xa6\x82\x86\x89\x80\x82\x85\xaa\ \xa9\xab\xb1\xb0\xb2\xac\xad\xae\xaf\xb0\xb2\xb1\xb0\xb4\xb1\xb0\ \xb4\xb2\xb2\xb4\xb0\xaf\xb1\xaf\xae\xb0\xaf\xae\xb1\xb1\xb0\xb2\ \xb1\xb0\xb2\xb5\xb4\xb6\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\xb3\ \xb2\xb4\xb3\xb2\xb3\xb6\xb5\xb6\xb5\xb5\xb5\xb3\xb3\xb4\xb2\xb2\ \xb2\xb8\xb7\xb9\xbc\xba\xbd\xb9\xb9\xb9\xb9\xb8\xb8\xb6\xb6\xb6\ \xb9\xb9\xb9\xbc\xbc\xbc\x00\x00\x00\xe3\xdb\xd8\xe4\xe0\xdd\xe3\ \xde\xdb\xe2\xdc\xd9\xe2\xdd\xd9\xe4\xde\xdb\xe3\xde\xdb\xe5\xdf\ \xdc\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\xe2\xe8\xe3\xe2\ \xe8\xe3\xe2\xe7\xe2\xe1\xe8\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xdf\xe7\ \xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xdd\xe4\xdf\xde\xe3\xde\ \xdd\xe0\xdb\xda\xdd\xd7\xd7\xd9\xd4\xd3\xd5\xcf\xce\xcb\xc6\xc3\ \xbe\xba\xba\xad\xaa\xaa\x8c\x8c\x8c\x64\x6b\x6b\x3b\x46\x49\x2b\ \x36\x3a\x45\x49\x4e\x6b\x6a\x6f\x83\x82\x85\x96\x92\x97\x9f\x9c\ \x9e\xa4\xa2\xa4\xa9\xa6\xa7\xa8\xa7\xaa\xa7\xa6\xa8\xa6\xa5\xa7\ \xa5\xa4\xa6\x98\x97\x99\x7e\x7f\x81\x6a\x6f\x6f\x6a\x6f\x6e\x7b\ \x7e\x7f\x87\x8a\x8e\x8b\x8e\x93\x8c\x8f\x94\x8b\x8e\x92\x8e\x91\ \x96\x87\x8b\x90\x87\x8b\x90\x81\x87\x8d\x73\x7b\x81\x64\x6c\x73\ \x66\x6a\x71\x6f\x72\x77\x5f\x64\x6a\x3a\x42\x4b\x45\x4a\x55\x68\ \x6b\x72\x5e\x62\x69\x37\x3e\x48\x39\x40\x4a\x57\x5b\x61\x70\x74\ \x79\x78\x7e\x84\x7c\x82\x87\x7a\x82\x87\x78\x80\x87\x7a\x80\x87\ \x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\x83\x8b\x7a\x81\x89\x76\ \x7e\x85\x65\x6f\x77\x41\x4b\x54\x23\x29\x31\x13\x1a\x23\x5b\x61\ \x69\x82\x86\x8d\x82\x88\x8c\x84\x8a\x90\x85\x8c\x92\x86\x8c\x92\ \x88\x8e\x94\x89\x8f\x94\x87\x8d\x94\x86\x8c\x93\x87\x8d\x94\x87\ \x8d\x95\x8a\x8f\x95\x8c\x91\x97\x8a\x8e\x92\x8d\x91\x96\x8c\x92\ \x95\x8c\x91\x94\x8b\x8f\x93\x8c\x8f\x93\x8e\x91\x95\x92\x95\x98\ \x94\x97\x9b\x94\x97\x9a\x97\x9b\x9e\x98\x9d\xa0\x87\x8d\x90\x6a\ \x70\x74\x53\x5d\x61\x8c\x91\x92\x96\x99\x9a\x81\x85\x88\x77\x7a\ \x7f\x96\x98\x9c\xa2\xa3\xa5\x9e\xa1\xa3\x7f\x82\x85\x83\x85\x89\ \x9e\xa0\xa1\xa6\xa8\xa9\xa4\xa7\xa7\x85\x87\x88\x7f\x7f\x7f\xa6\ \xa6\xa7\xa8\xa9\xa9\xa7\xaa\xab\x8e\x91\x92\x80\x81\x82\xa0\xa2\ \xa3\xb0\xb0\xb2\xae\xae\xb1\xaf\xaf\xb3\xaf\xae\xb1\xb1\xb0\xb3\ \xb1\xb0\xb2\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xaf\xae\xb0\xb3\ \xb2\xb5\xb1\xb0\xb3\xb3\xb2\xb5\xb5\xb4\xb6\xb3\xb2\xb4\xb4\xb3\ \xb5\xb7\xb7\xb8\xb6\xb5\xb7\xb7\xb6\xb8\xb3\xb3\xb3\xb6\xb5\xb6\ \xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xb7\xb7\xb7\xbb\xbb\xbb\xbc\ \xbb\xbc\x00\x00\x00\xe4\xde\xdb\xe6\xe1\xde\xe6\xdf\xdc\xe6\xe0\ \xdd\xe6\xe0\xdd\xe5\xdf\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\ \xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe2\xe9\xe4\xe2\xe8\xe3\xe2\xe7\ \xe2\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\ \xdf\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdc\xe0\xdb\xda\ \xdc\xd7\xd6\xd7\xcf\xcf\xd2\xca\xca\xc8\xc2\xc0\xb9\xb5\xb4\xa2\ \x9f\x9f\x80\x82\x82\x55\x5c\x5e\x30\x3c\x40\x31\x3a\x41\x53\x55\ \x5b\x75\x74\x77\x8d\x8a\x8c\x99\x96\x98\xa1\x9e\xa0\xa7\xa4\xa6\ \xa9\xa7\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa6\xa5\xa7\xa1\xa0\xa1\x8c\ \x8d\x8e\x70\x74\x75\x65\x6b\x6c\x6e\x72\x73\x81\x84\x88\x8c\x8f\ \x94\x8d\x90\x94\x8e\x90\x94\x8c\x90\x94\x89\x8d\x92\x88\x8c\x91\ \x86\x8a\x8f\x85\x89\x8e\x7c\x80\x85\x74\x79\x7c\x72\x76\x7a\x71\ \x75\x7a\x4b\x51\x59\x1d\x26\x30\x2c\x33\x3d\x63\x65\x6b\x5d\x60\ \x67\x1f\x28\x31\x21\x28\x30\x58\x5c\x61\x66\x6a\x6f\x71\x77\x7c\ \x7a\x80\x85\x7a\x82\x86\x7a\x81\x88\x7b\x81\x88\x7b\x82\x89\x7d\ \x84\x8b\x7e\x86\x8d\x7e\x86\x8d\x7d\x85\x8c\x7d\x85\x8c\x76\x7e\ \x85\x56\x61\x69\x1d\x27\x32\x1b\x25\x2f\x4d\x50\x5a\x65\x68\x6f\ \x7c\x7f\x85\x85\x89\x8e\x86\x8a\x8f\x88\x8c\x91\x88\x8e\x93\x88\ \x8d\x92\x89\x8e\x93\x88\x8e\x94\x87\x8d\x93\x89\x8f\x94\x89\x8f\ \x95\x8a\x8e\x94\x8d\x91\x96\x8f\x93\x98\x8e\x92\x97\x8c\x90\x96\ \x8c\x90\x95\x8d\x90\x94\x90\x93\x97\x92\x96\x99\x95\x99\x9b\x96\ \x9a\x9c\x97\x9a\x9d\x98\x9c\x9e\x99\x9e\xa1\x8c\x93\x94\x6a\x72\ \x74\x86\x8a\x8b\x9b\x9d\x9d\x9c\x9e\x9f\x89\x8d\x90\x79\x7c\x81\ \x93\x94\x97\xa4\xa3\xa4\xa1\xa2\xa3\x86\x88\x8b\x7e\x7f\x82\xa0\ \xa2\xa3\xaa\xab\xab\xa9\xa8\xa8\x8e\x8d\x8d\x79\x7a\x79\xa1\xa0\ \xa0\xab\xab\xab\xad\xae\xaf\x94\x96\x98\x7b\x7f\x80\x99\x9b\x9c\ \xad\xae\xaf\xaf\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb2\xad\xac\xae\xad\ \xac\xae\xad\xac\xae\xab\xaa\xac\xb2\xb1\xb3\xae\xad\xaf\xb1\xb0\ \xb3\xb5\xb4\xb7\xb6\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb2\xb1\xb3\ \xb4\xb3\xb5\xb9\xb8\xba\xb9\xb8\xba\xb8\xb7\xb9\xbb\xb9\xbc\xb6\ \xb5\xb7\xb5\xb4\xb5\xbc\xbc\xbc\xbc\xbb\xbc\xb9\xb9\xb9\x00\x00\ \x00\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe1\xde\ \xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\ \xe3\xe0\xe9\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\ \xe1\xe7\xe2\xe1\xe8\xe3\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ \xe4\xdf\xde\xe4\xdd\xdd\xe1\xdc\xdb\xde\xd9\xd8\xda\xd4\xd2\xd7\ \xcf\xcf\xcf\xc7\xc7\xc3\xbd\xbc\xb3\xaf\xae\x99\x97\x98\x73\x75\ \x77\x48\x4f\x53\x2b\x36\x3b\x37\x3e\x44\x61\x60\x66\x80\x7d\x81\ \x93\x90\x92\x9e\x9b\x9e\xa3\xa0\xa1\xa7\xa4\xa6\xaa\xa7\xa8\xa9\ \xa7\xa9\xa5\xa5\xa6\xa3\xa2\xa4\x99\x99\x99\x7b\x7e\x7e\x64\x6a\ \x6a\x64\x69\x6a\x72\x76\x79\x85\x88\x8c\x8b\x8e\x92\x8e\x91\x96\ \x8d\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8c\x91\x86\x8c\x91\x83\ \x89\x8e\x81\x86\x8a\x78\x7d\x81\x71\x76\x79\x67\x6d\x72\x3d\x46\ \x4e\x16\x1f\x2a\x2a\x31\x3b\x52\x55\x5b\x4f\x53\x5a\x1a\x24\x2c\ \x21\x29\x32\x5d\x61\x66\x6b\x6f\x74\x70\x74\x79\x77\x7c\x81\x78\ \x7f\x84\x7c\x82\x88\x7b\x81\x88\x7b\x81\x89\x7d\x84\x8b\x7c\x84\ \x8c\x7b\x83\x8b\x7a\x82\x89\x7d\x85\x8c\x7c\x85\x8c\x69\x73\x7c\ \x1d\x2c\x39\x1d\x28\x33\x31\x37\x3f\x21\x27\x31\x5f\x61\x68\x81\ \x85\x8a\x86\x8b\x90\x89\x8d\x92\x8a\x8e\x93\x89\x8f\x94\x88\x8e\ \x93\x89\x8e\x93\x8a\x8e\x95\x8b\x91\x97\x8e\x94\x9b\x8f\x92\x99\ \x8f\x92\x9a\x90\x94\x99\x93\x96\x9b\x91\x94\x99\x8f\x92\x97\x91\ \x94\x98\x93\x96\x9a\x90\x93\x96\x91\x94\x97\x96\x9a\x9b\x96\x99\ \x9c\x9a\x9e\xa1\x9d\xa0\xa3\x99\x9d\x9e\x91\x95\x96\x77\x7c\x7d\ \x82\x85\x86\x9b\x9e\x9f\xa1\xa4\xa5\x90\x92\x96\x7a\x7c\x80\x8d\ \x8e\x8f\x9f\xa1\xa1\xa5\xa7\xa8\x8a\x8d\x90\x7d\x80\x83\x85\x83\ \x85\x64\x5c\x5a\x96\x8b\x89\x9a\x96\x96\x74\x74\x75\x97\x96\x97\ \xb0\xb0\xb0\xac\xaf\xaf\x9b\x9e\xa0\x7c\x7f\x81\x92\x93\x95\xad\ \xad\xaf\xb0\xb0\xb3\xb0\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xb0\xaf\ \xb0\xb1\xb0\xb1\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb5\xb3\xb6\ \xb4\xb3\xb5\xb6\xb5\xb6\xb6\xb6\xb6\xb4\xb4\xb4\xb5\xb5\xb5\xb6\ \xb6\xb6\xb7\xb7\xb8\xb6\xb5\xb6\xb6\xb6\xb7\xb7\xb6\xb7\xb6\xb5\ \xb6\xbd\xbd\xbd\xbc\xbb\xbc\xba\xb9\xba\x00\x00\x00\xe5\xe0\xdd\ \xe5\xdf\xdc\xe6\xe0\xdd\xe5\xe0\xdc\xe5\xe1\xdd\xe7\xe2\xdf\xe8\ \xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\ \xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe7\xe2\xe0\ \xe7\xe2\xe0\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe4\xde\xdb\xe2\ \xdd\xd9\xe1\xdc\xda\xde\xd9\xd8\xd9\xd3\xd0\xd4\xcd\xcd\xc9\xc1\ \xc1\xbd\xb6\xb6\xaa\xa5\xa6\x8a\x89\x89\x63\x67\x6a\x3d\x43\x4a\ \x2d\x33\x3c\x47\x4a\x50\x70\x6d\x73\x89\x85\x88\x96\x93\x95\xa0\ \x9d\x9f\xa6\xa3\xa4\xa8\xa5\xa6\xaa\xa7\xa8\xa8\xa7\xa9\xa6\xa5\ \xa7\xa1\xa0\xa2\x8a\x8b\x8c\x6e\x74\x73\x64\x6a\x6a\x6b\x70\x71\ \x7d\x80\x81\x89\x8c\x8f\x8d\x90\x94\x8f\x92\x96\x8d\x90\x95\x8e\ \x91\x96\x8b\x8f\x94\x89\x8d\x92\x86\x8c\x92\x86\x8c\x90\x83\x89\ \x8d\x7b\x80\x83\x6f\x75\x79\x55\x5d\x64\x28\x31\x3b\x14\x1d\x27\ \x35\x3a\x44\x47\x4b\x53\x2d\x34\x3d\x1a\x23\x2c\x2c\x34\x3c\x5d\ \x60\x66\x72\x76\x7b\x6a\x70\x75\x70\x74\x79\x7b\x80\x85\x7a\x80\ \x85\x7a\x81\x88\x7a\x83\x8a\x7b\x84\x8b\x7c\x84\x8b\x7c\x83\x8b\ \x7b\x83\x8a\x7a\x82\x89\x80\x88\x8f\x71\x7b\x82\x26\x39\x46\x22\ \x30\x3e\x34\x3e\x47\x1a\x23\x2d\x3f\x46\x4f\x5f\x64\x6a\x84\x88\ \x8c\x8a\x8e\x93\x88\x8d\x92\x88\x8d\x92\x88\x8e\x93\x8a\x90\x96\ \x8c\x91\x98\x89\x8f\x96\x8d\x93\x98\x8d\x91\x97\x8f\x94\x99\x8f\ \x93\x98\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x8f\x92\x96\x90\x93\ \x97\x91\x94\x97\x93\x95\x99\x92\x95\x98\x96\x99\x9d\x97\x9a\x9e\ \x99\x9c\xa0\x98\x9b\x9d\x9b\x9e\x9f\x92\x96\x97\x79\x7e\x80\x81\ \x84\x86\x9c\x9d\x9e\xa8\xaa\xab\x97\x9a\x9c\x79\x7c\x7f\x89\x8a\ \x8c\xa0\xa0\xa0\xa6\xa6\xa6\x99\x9b\x9e\x3b\x3e\x40\x00\x00\x00\ \x0c\x07\x07\x79\x6d\x6c\xa4\xa2\xa1\x7e\x7f\x80\x90\x91\x91\xa9\ \xa9\xaa\xaf\xb2\xb3\xa6\xa9\xad\x83\x86\x8a\x89\x8a\x8c\xa4\xa4\ \xa7\xaf\xae\xb1\xb0\xaf\xb1\xb1\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\ \xae\xad\xaf\xac\xab\xad\xb2\xb1\xb3\xb3\xb2\xb5\xb6\xb5\xb7\xb6\ \xb5\xb7\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb7\xb7\xb5\xb5\xb5\xb4\xb4\ \xb4\xbb\xbb\xbb\xb9\xb8\xb8\xb8\xb8\xb8\xbb\xba\xbb\xb5\xb5\xb6\ \xb7\xb7\xb7\xb9\xb8\xb9\x00\x00\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe6\ \xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\ \xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xdf\xe7\xe2\xe0\xe7\xe2\xdf\ \xe6\xe1\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xdf\xe6\ \xe1\xde\xe6\xe0\xde\xe6\xe0\xde\xe3\xdf\xdc\xe2\xdd\xda\xdf\xda\ \xd9\xdb\xd6\xd5\xd9\xd3\xd2\xd1\xcb\xca\xc7\xbf\xbf\xb8\xb3\xb3\ \xa1\x9d\x9e\x7c\x7c\x7e\x51\x58\x5c\x31\x39\x42\x32\x37\x40\x56\ \x55\x5b\x79\x75\x7a\x8f\x8a\x8d\x9c\x97\x99\xa3\x9f\xa1\xa8\xa4\ \xa5\xa9\xa5\xa7\xa9\xa6\xa7\xa9\xa7\xa9\xa5\xa4\xa4\x99\x98\x9a\ \x7e\x81\x82\x69\x6f\x70\x66\x6b\x6c\x74\x78\x79\x84\x87\x89\x89\ \x8d\x90\x8e\x91\x95\x8f\x92\x97\x8c\x8f\x94\x8b\x8f\x94\x88\x8c\ \x91\x86\x8b\x8f\x87\x8c\x92\x85\x8b\x90\x85\x8a\x8f\x80\x86\x8b\ \x70\x76\x7a\x43\x4d\x55\x15\x20\x2b\x20\x28\x32\x49\x4c\x56\x49\ \x4e\x59\x1b\x25\x30\x1f\x27\x32\x4c\x51\x59\x5f\x65\x6c\x71\x75\ \x7b\x70\x75\x7a\x6a\x70\x75\x74\x79\x7e\x7a\x80\x85\x7a\x80\x87\ \x7b\x82\x89\x7c\x83\x8b\x7d\x85\x8c\x7c\x83\x8b\x7c\x84\x8b\x7e\ \x86\x8d\x7d\x85\x8c\x71\x7a\x82\x20\x34\x41\x2e\x40\x4d\x44\x51\ \x5b\x30\x3a\x44\x22\x2b\x35\x2d\x34\x3c\x79\x7c\x82\x8a\x8e\x93\ \x8a\x8e\x93\x89\x8f\x94\x8a\x90\x95\x8b\x91\x96\x8b\x90\x96\x89\ \x8f\x94\x8d\x93\x99\x92\x95\x9c\x8f\x93\x99\x90\x94\x99\x91\x95\ \x9a\x92\x96\x9b\x92\x97\x9a\x92\x96\x9a\x93\x96\x9a\x92\x95\x97\ \x91\x94\x97\x93\x96\x98\x97\x9a\x9e\x9a\x9d\xa1\x97\x9a\x9e\x9a\ \x9c\x9f\x9d\x9f\xa1\x9e\xa0\xa1\x97\x9b\x9c\x7e\x83\x85\x7e\x81\ \x83\x9b\x9c\x9d\xa6\xa6\xa8\x9a\x9b\x9d\x80\x82\x84\x89\x89\x8b\ \xa1\x9f\x9f\xae\xac\xab\x71\x74\x75\x05\x05\x06\x00\x00\x00\x11\ \x0e\x0d\x9a\x93\x91\xaa\xaa\xac\x89\x8b\x8c\x86\x87\x89\xa5\xa7\ \xa9\xae\xb0\xb3\xae\xaf\xb2\x8c\x8d\x8f\x7e\x7f\x83\x9f\x9d\xa1\ \xae\xad\xb0\xb6\xb5\xb7\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xb1\ \xb1\xb2\xb2\xb1\xb4\xb5\xb4\xb5\xb9\xb8\xbb\xb8\xb7\xb9\xb9\xb8\ \xb9\xb9\xb9\xb9\xb8\xb8\xb8\xb6\xb5\xb6\xb6\xb6\xb6\xb6\xb6\xb6\ \xb6\xb5\xb5\xb5\xb5\xb5\xbb\xbb\xbb\xba\xb9\xba\xb6\xb5\xb7\xb8\ \xb7\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ \xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ \xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xdf\xe7\ \xe2\xe0\xe7\xe2\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe5\xe0\xde\xe5\xe0\ \xde\xe5\xe0\xde\xe3\xde\xdb\xe1\xdc\xda\xde\xd9\xd8\xda\xd5\xd4\ \xd5\xd1\xcf\xce\xc9\xc9\xc1\xbc\xbb\xb1\xac\xab\x96\x92\x93\x6d\ \x71\x73\x44\x4e\x54\x2e\x39\x41\x40\x45\x4e\x67\x65\x6b\x84\x7f\ \x83\x93\x8e\x90\x9d\x98\x9a\xa4\xa0\xa2\xa8\xa4\xa6\xa7\xa4\xa6\ \xa8\xa5\xa7\xa7\xa5\xa7\xa1\xa1\xa2\x90\x92\x93\x76\x7a\x7b\x6b\ \x71\x72\x70\x74\x75\x80\x82\x84\x89\x8c\x8d\x8b\x8e\x91\x8d\x90\ \x95\x8e\x92\x97\x8b\x90\x94\x89\x8d\x92\x87\x8c\x90\x87\x8b\x8f\ \x87\x8b\x90\x84\x8a\x8f\x85\x8b\x8f\x7f\x85\x8a\x73\x7b\x7f\x45\ \x51\x5a\x15\x22\x2e\x2a\x34\x3e\x53\x59\x61\x48\x4f\x59\x17\x24\ \x31\x27\x2f\x3d\x60\x63\x6c\x6c\x72\x79\x6b\x70\x77\x74\x79\x7e\ \x6e\x74\x79\x6d\x72\x78\x76\x7c\x82\x7b\x81\x88\x7c\x82\x89\x7c\ \x83\x8a\x7c\x84\x8b\x7d\x84\x8d\x7e\x85\x8e\x7d\x84\x8c\x7e\x86\ \x8e\x78\x80\x87\x52\x63\x6e\x53\x62\x6d\x61\x6c\x74\x3d\x49\x52\ \x17\x22\x2c\x30\x39\x41\x79\x7c\x83\x89\x8e\x92\x89\x8f\x94\x8b\ \x91\x97\x8a\x90\x96\x8a\x90\x95\x8a\x8f\x94\x8a\x8f\x95\x8b\x91\ \x97\x8e\x93\x98\x92\x96\x9c\x90\x94\x9a\x92\x96\x9b\x92\x97\x9b\ \x95\x98\x9d\x96\x98\x9d\x94\x97\x9b\x92\x96\x9a\x93\x96\x9a\x94\ \x97\x9b\x99\x9c\xa0\x98\x9b\x9f\x9b\x9d\xa1\x9b\x9f\xa1\x9c\x9e\ \x9f\x9d\x9f\xa0\x9d\xa0\xa1\x9a\x9e\x9f\x88\x8d\x8f\x81\x84\x85\ \x94\x95\x96\xa5\xa6\xa7\xa2\xa4\xa5\x86\x88\x8a\x89\x89\x8a\x9e\ \x9b\x9a\x9f\xa0\xa1\x27\x2e\x31\x00\x00\x00\x01\x01\x01\x50\x4c\ \x4d\xb4\xb2\xb3\xb0\xaf\xb0\x92\x94\x96\x81\x83\x87\x9d\x9e\xa0\ \xb2\xb1\xb4\xb3\xb3\xb5\x96\x97\x9a\x7f\x80\x83\x95\x95\x97\xab\ \xaa\xac\xb8\xb7\xb9\xb4\xb3\xb5\xaf\xae\xb0\xb4\xb3\xb6\xb3\xb2\ \xb4\xb3\xb2\xb4\xb9\xb8\xba\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\xb9\ \xb7\xb7\xb8\xb9\xb9\xba\xb8\xb8\xb8\xb9\xb9\xb9\xb6\xb6\xb6\xb7\ \xb7\xb7\xba\xba\xba\xbb\xbb\xbb\xba\xb9\xba\xba\xba\xba\x00\x00\ \x00\xe7\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\xdf\ \xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe6\ \xe1\xde\xe8\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\ \xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\ \xe2\xdc\xd9\xe0\xdb\xd9\xdd\xd8\xd7\xd7\xd2\xd1\xd1\xcc\xcb\xca\ \xc5\xc4\xbb\xb6\xb5\xa7\xa4\xa1\x85\x85\x86\x5e\x64\x67\x36\x40\ \x48\x30\x3a\x43\x4b\x4f\x57\x72\x6f\x74\x8c\x87\x89\x99\x94\x96\ \xa2\x9d\x9f\xa7\xa3\xa5\xa9\xa6\xa8\xa9\xa6\xa8\xa8\xa6\xa8\xa7\ \xa6\xa8\x9f\x9e\x9f\x87\x89\x8a\x74\x78\x79\x70\x74\x75\x79\x7c\ \x7d\x86\x88\x89\x89\x8b\x8c\x8c\x8e\x90\x8e\x90\x95\x8e\x91\x96\ \x8c\x90\x95\x8a\x8d\x92\x86\x8a\x8f\x87\x8b\x90\x84\x89\x8e\x82\ \x88\x8d\x83\x88\x8c\x7f\x85\x8a\x77\x7e\x83\x50\x5c\x64\x25\x35\ \x41\x39\x44\x4f\x5d\x64\x6c\x49\x51\x5c\x22\x30\x3e\x2b\x36\x45\ \x61\x66\x6f\x75\x7a\x80\x6c\x72\x77\x70\x75\x7a\x73\x79\x7e\x6d\ \x73\x78\x6f\x75\x7a\x78\x7e\x84\x7b\x81\x87\x7c\x83\x89\x7d\x84\ \x8c\x7b\x83\x8b\x7d\x84\x8c\x7d\x84\x8b\x80\x87\x8f\x81\x87\x8e\ \x79\x82\x88\x77\x81\x85\x76\x7f\x85\x51\x5d\x65\x16\x24\x2d\x45\ \x4f\x59\x82\x85\x8c\x88\x8d\x92\x8a\x90\x95\x8b\x91\x96\x8b\x91\ \x97\x89\x8e\x94\x86\x8c\x91\x87\x8c\x91\x87\x8b\x90\x8b\x90\x94\ \x8e\x93\x99\x91\x96\x9b\x92\x96\x9b\x91\x96\x9a\x95\x99\x9e\x97\ \x9b\x9f\x97\x9a\x9e\x96\x9a\x9d\x95\x98\x9c\x95\x98\x9c\x98\x9b\ \x9e\x95\x98\x9c\x9a\x9c\xa0\x99\x9c\x9d\x9a\x9c\x9d\x9e\x9e\xa1\ \x9e\xa1\xa2\xa1\xa4\xa5\xa1\xa5\xa7\x8c\x90\x91\x7b\x7f\x80\x90\ \x92\x93\xa6\xa8\xaa\xa6\xa8\xaa\x8a\x8c\x8e\x81\x81\x83\x98\x99\ \x99\x7b\x84\x87\x1e\x23\x26\x01\x01\x01\x1b\x1b\x1c\x9e\x9b\x9e\ \xb1\xae\xaf\xb3\xb1\xb2\x98\x99\x9a\x86\x86\x8a\x97\x97\x9a\xac\ \xac\xae\xb1\xb1\xb3\xa2\xa3\xa5\x85\x86\x89\x8a\x8b\x8c\xac\xab\ \xad\xb4\xb2\xb4\xaf\xaf\xb1\xb4\xb4\xb7\xb5\xb4\xb6\xb9\xb8\xba\ \xb9\xb8\xba\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb8\xb8\xb7\xb9\xb8\ \xb8\xb9\xbb\xbb\xbd\xbb\xbb\xbb\xbb\xbb\xbb\xba\xba\xba\xb7\xb7\ \xb7\xbb\xba\xba\xbb\xbb\xbb\xbb\xbb\xbb\x00\x00\x00\xe7\xe2\xdf\ \xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\ \xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xe0\xe6\xe1\xde\xe7\xe3\ \xe0\xe8\xe3\xe2\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ \xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\ \xda\xd9\xdc\xd7\xd6\xd6\xd2\xd0\xd0\xcb\xca\xc5\xc0\xc0\xb4\xb0\ \xaf\x9e\x9d\x9a\x77\x7a\x79\x4e\x56\x5a\x30\x3a\x44\x36\x3e\x48\ \x59\x5a\x61\x7d\x79\x7b\x90\x8b\x8d\x9c\x97\x9a\xa4\xa0\xa3\xa8\ \xa5\xa7\xaa\xa7\xa9\xa9\xa7\xa9\xa9\xa7\xa9\xa6\xa5\xa7\x9a\x9a\ \x9c\x81\x83\x85\x76\x79\x7c\x79\x7c\x7d\x81\x83\x84\x86\x88\x89\ \x86\x88\x89\x8a\x8c\x8e\x89\x8b\x8f\x85\x88\x8c\x88\x8c\x90\x89\ \x8d\x92\x87\x8b\x90\x86\x8b\x8f\x83\x87\x8c\x82\x88\x8c\x83\x89\ \x8e\x82\x88\x8c\x7a\x81\x86\x60\x6b\x73\x46\x53\x5d\x4e\x58\x62\ \x67\x6d\x76\x57\x60\x6b\x3d\x4a\x57\x4a\x54\x60\x60\x67\x6f\x6f\ \x75\x7b\x71\x76\x7b\x6d\x72\x77\x72\x77\x7c\x6f\x75\x7a\x6c\x71\ \x76\x71\x77\x7c\x7a\x80\x85\x7d\x83\x88\x7c\x83\x89\x7b\x83\x8a\ \x7d\x84\x8b\x7e\x85\x8c\x81\x87\x8e\x80\x86\x8d\x80\x88\x8e\x80\ \x89\x8d\x82\x8b\x8f\x70\x7a\x80\x47\x57\x5e\x5b\x66\x6e\x84\x89\ \x8e\x87\x8d\x92\x89\x8f\x94\x8a\x90\x95\x8a\x90\x95\x8a\x90\x96\ \x89\x8f\x94\x86\x8b\x90\x86\x8a\x8f\x8a\x8e\x92\x8b\x8f\x94\x91\ \x95\x9a\x92\x96\x9b\x94\x98\x9b\x99\x9e\xa1\x97\x9c\x9f\x96\x9a\ \x9d\x98\x9c\xa0\x98\x9b\x9f\x96\x99\x9d\x97\x9a\x9e\x97\x9b\x9f\ \x9b\x9d\xa0\x99\x9b\x9c\x9a\x9b\x9c\x9c\x9d\x9f\x9d\x9f\xa0\xa0\ \xa2\xa3\xa3\xa6\xa7\xa0\xa4\xa5\x8e\x93\x94\x80\x85\x85\x8e\x91\ \x92\xa4\xa6\xa7\xa9\xab\xac\x90\x93\x94\x7f\x80\x81\x93\x95\x97\ \x80\x87\x8a\x40\x45\x45\x31\x36\x38\x86\x87\x89\x92\x91\x93\xac\ \xaa\xaa\xb5\xb3\xb4\xa6\xa5\xa8\x88\x89\x8e\x8c\x8d\x90\xa4\xa3\ \xa5\xb3\xb2\xb3\xae\xaf\xb1\x8e\x90\x90\x8b\x8a\x8c\x99\x97\x99\ \xb3\xb1\xb3\xb7\xb7\xb9\xb4\xb3\xb6\xb7\xb6\xb8\xb9\xb8\xba\xb8\ \xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xb8\xb8\xb9\xbb\xba\ \xbc\xbc\xbb\xbc\xbd\xbd\xbe\xbc\xbc\xbe\xb6\xb6\xb6\xb9\xb8\xb8\ \xb9\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe7\ \xe2\xdf\xe7\xe2\xdf\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ \xdf\xe7\xe2\xde\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\xe0\xe8\xe3\xe0\ \xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe5\xe0\xde\xe4\ \xdf\xdd\xe4\xdf\xdc\xe2\xdd\xda\xe0\xdc\xda\xde\xda\xd9\xda\xd7\ \xd6\xd5\xd0\xcf\xcc\xc7\xc6\xc1\xbc\xbd\xaf\xac\xac\x90\x90\x90\ \x69\x6d\x6e\x40\x49\x4f\x2e\x38\x41\x3f\x44\x4c\x67\x65\x69\x86\ \x81\x82\x95\x8f\x91\x9e\x99\x9d\xa4\xa1\xa3\xa8\xa6\xa8\xaa\xa6\ \xa8\xa8\xa7\xaa\xa7\xa5\xa7\xa4\xa3\xa5\x92\x93\x95\x80\x82\x85\ \x7a\x7d\x81\x80\x82\x85\x85\x87\x88\x83\x87\x88\x84\x86\x88\x83\ \x84\x87\x77\x7a\x7e\x6d\x70\x75\x79\x7b\x80\x86\x8a\x8f\x87\x8c\ \x91\x85\x8b\x8f\x83\x87\x8c\x83\x88\x8d\x83\x89\x8d\x81\x87\x8c\ \x7c\x83\x88\x71\x7b\x81\x63\x6e\x76\x63\x6c\x75\x6d\x73\x7c\x68\ \x70\x79\x5c\x66\x70\x5f\x67\x6f\x60\x67\x6e\x64\x6a\x70\x72\x77\ \x7c\x71\x75\x7a\x64\x6a\x6f\x66\x6b\x6f\x6a\x70\x75\x6c\x72\x77\ \x75\x7b\x80\x7c\x82\x86\x7c\x83\x89\x7c\x83\x8a\x7c\x84\x8b\x7e\ \x86\x8d\x80\x88\x8f\x7f\x86\x8e\x81\x8a\x8f\x81\x8a\x8e\x84\x8b\ \x90\x82\x88\x8e\x79\x81\x87\x7c\x83\x88\x86\x8c\x92\x88\x8e\x93\ \x87\x8d\x92\x89\x8f\x94\x87\x8d\x92\x8a\x91\x96\x8b\x92\x97\x89\ \x8e\x93\x88\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x91\x95\x99\x94\x98\ \x9d\x95\x9a\x9e\x99\x9d\xa1\x97\x9b\x9f\x96\x9a\x9e\x99\x9d\xa2\ \x9a\x9d\xa2\x99\x9c\xa1\x97\x9b\x9f\x98\x9b\x9f\x9a\x9c\x9f\x9a\ \x9d\x9f\x9b\x9c\x9d\x9c\x9e\x9f\xa0\xa1\xa2\xa1\xa2\xa4\xa3\xa3\ \xa5\xa3\xa5\xa6\xa4\xa7\xa8\x99\x9c\x9d\x85\x88\x89\x88\x8a\x8c\ \x9f\xa1\xa2\xab\xad\xad\x98\x9a\x9b\x82\x85\x85\x8c\x8e\x8e\x74\ \x7a\x7c\x78\x7f\x82\xa2\xa4\xa4\x8a\x8b\x8d\x8c\x8b\x8d\xa3\xa2\ \xa3\xb5\xb4\xb6\xa9\xaa\xad\x8d\x8f\x93\x85\x87\x8a\x9c\x9d\x9d\ \xb1\xb0\xb2\xb4\xb6\xb7\x9e\x9d\xa1\x8a\x89\x8d\x91\x91\x94\xb0\ \xaf\xb2\xb9\xb8\xba\xb6\xb5\xb8\xb7\xb6\xb9\xb7\xb6\xb8\xb9\xb7\ \xb9\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xbc\xbc\xbc\ \xba\xba\xbb\xbb\xba\xbb\xb8\xb8\xb7\xbc\xbc\xbc\xbd\xbc\xbc\xb8\ \xb8\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe3\ \xe0\xe7\xe3\xe0\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xe0\ \xe8\xe3\xe2\xe8\xe3\xe0\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe6\ \xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xdf\ \xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd8\xd7\xd8\xd4\xd3\xd1\xcd\xcc\ \xc7\xc2\xc1\xbb\xb6\xb7\xa4\xa2\xa2\x81\x81\x82\x5a\x60\x61\x36\ \x42\x46\x32\x3a\x41\x50\x52\x58\x75\x72\x75\x8d\x88\x89\x99\x95\ \x96\xa2\x9f\xa1\xa6\xa4\xa6\xa8\xa6\xa8\xa9\xa7\xa9\xa7\xa6\xa9\ \xa5\xa4\xa6\xa0\x9f\xa1\x8e\x8e\x90\x84\x86\x8a\x82\x84\x87\x85\ \x86\x88\x87\x89\x8b\x81\x84\x86\x83\x86\x89\x7c\x7d\x81\x65\x6a\ \x70\x4d\x55\x5e\x5f\x64\x6b\x7e\x81\x86\x85\x8a\x90\x86\x8c\x91\ \x85\x89\x8f\x82\x88\x8c\x81\x87\x8c\x7f\x85\x8a\x7e\x86\x8a\x7c\ \x84\x89\x74\x7d\x84\x6e\x77\x7f\x6d\x75\x7e\x6f\x76\x7f\x69\x71\ \x7a\x54\x5c\x65\x4a\x50\x57\x54\x5a\x61\x69\x6e\x73\x6c\x70\x75\ \x49\x50\x53\x47\x4d\x51\x64\x6b\x6e\x6c\x72\x77\x6d\x73\x78\x78\ \x7d\x82\x7e\x85\x8b\x7d\x84\x8b\x7d\x85\x8c\x7f\x87\x8f\x80\x88\ \x8f\x80\x89\x8e\x82\x8b\x8f\x82\x8a\x8f\x84\x8d\x91\x83\x8b\x90\ \x84\x8a\x8f\x84\x8a\x90\x87\x8d\x93\x86\x8c\x92\x86\x8c\x91\x89\ \x8f\x94\x88\x8e\x93\x8a\x90\x96\x8a\x90\x95\x8b\x91\x96\x8d\x91\ \x97\x8b\x8f\x94\x8d\x91\x96\x92\x97\x9a\x95\x9a\x9d\x95\x9a\x9e\ \x97\x9b\x9f\x98\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9d\xa0\xa5\x9c\ \x9f\xa4\x9a\x9d\xa2\x99\x9c\xa0\x98\x9b\x9e\x9c\x9e\xa1\x9d\x9f\ \xa0\x9c\x9d\x9e\xa0\xa0\xa2\xa1\xa0\xa2\xa2\xa2\xa4\xa3\xa4\xa6\ \xa4\xa6\xa7\xa7\xaa\xab\x9e\xa1\xa2\x89\x8b\x8e\x83\x85\x86\x9f\ \x9f\xa0\xa7\xa9\xa9\x9c\x9e\x9e\x80\x82\x84\x3e\x44\x47\x88\x8c\ \x8e\xa5\xa6\xa6\x88\x89\x89\x7b\x7c\x7e\x88\x89\x8a\x9d\x9c\x9e\ \xb0\xaf\xb1\xab\xac\xae\x98\x9b\x9c\x83\x85\x86\x91\x91\x93\xb2\ \xb3\xb4\xb5\xb6\xb7\xaa\xaa\xad\x91\x91\x95\x89\x88\x8c\xa4\xa2\ \xa4\xbc\xb9\xbc\xb8\xb7\xb9\xba\xb7\xb9\xb9\xb6\xb8\xb8\xb6\xb8\ \xbb\xba\xbc\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xb9\xb9\xb8\xb9\xbc\ \xbb\xbd\xb9\xb8\xba\xc0\xc0\xc0\xbd\xbc\xbd\xbb\xbb\xbb\x00\x00\ \x00\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe0\ \xe7\xe2\xe0\xe7\xe2\xde\xe7\xe2\xdf\xe8\xe3\xe2\xe7\xe2\xe1\xe7\ \xe2\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\ \xe1\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\ \xdf\xda\xda\xdb\xd5\xd6\xd7\xd2\xd1\xcf\xc9\xc8\xc5\xc0\xbf\xb3\ \xaf\xaf\x98\x97\x97\x71\x74\x74\x4a\x52\x53\x31\x3c\x40\x3a\x42\ \x46\x62\x61\x65\x80\x7b\x7d\x90\x8b\x8c\x9c\x98\x99\xa4\xa1\xa2\ \xa6\xa4\xa6\xa8\xa7\xa8\xa7\xa6\xa8\xa8\xa7\xa9\xa7\xa6\xa8\x9f\ \x9e\xa0\x8f\x8f\x91\x87\x8a\x8d\x85\x88\x89\x85\x87\x88\x87\x8b\ \x8c\x7f\x83\x86\x7f\x81\x84\x78\x7a\x7d\x5a\x61\x68\x39\x47\x52\ \x4e\x56\x60\x77\x7a\x7f\x82\x88\x8d\x86\x8c\x91\x83\x89\x8f\x80\ \x87\x8c\x80\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8a\x7b\x83\ \x89\x74\x7c\x83\x6d\x75\x7d\x6e\x75\x7d\x6c\x73\x79\x46\x4f\x58\ \x22\x2b\x33\x3d\x44\x4b\x60\x63\x68\x5f\x63\x67\x34\x3b\x40\x1f\ \x25\x2a\x51\x57\x5c\x70\x75\x7a\x6d\x72\x77\x6f\x75\x79\x7a\x80\ \x86\x7d\x83\x89\x7d\x85\x8c\x80\x88\x8e\x7f\x87\x8d\x80\x89\x8c\ \x81\x89\x8e\x84\x8a\x8f\x83\x8a\x8f\x84\x8b\x90\x85\x8b\x91\x85\ \x8b\x92\x89\x8f\x94\x88\x8e\x93\x87\x8d\x92\x87\x8d\x92\x89\x8f\ \x94\x8a\x90\x96\x8b\x91\x98\x8d\x93\x99\x90\x95\x9a\x8f\x93\x98\ \x90\x93\x98\x92\x96\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9b\x9e\x97\ \x9c\x9f\x98\x9c\xa0\x9b\x9e\xa3\x9e\xa1\xa6\x9d\xa0\xa5\x9a\x9d\ \xa2\x98\x9b\xa0\x98\x9b\x9f\x9e\xa1\xa3\xa0\xa2\xa3\x9f\x9f\xa0\ \x9f\x9e\xa1\xa1\xa0\xa2\xa2\xa4\xa5\xa5\xa7\xa8\xa4\xa6\xa7\xa5\ \xa6\xa9\xa7\xa9\xad\xa4\xa6\xaa\x91\x93\x96\x85\x88\x89\x95\x97\ \x98\xab\xab\xac\x82\x83\x85\x5f\x64\x66\x7a\x80\x82\x8c\x8f\x90\ \x6d\x70\x72\x66\x69\x6c\x9d\x9f\xa0\x86\x88\x8a\x90\x91\x93\xab\ \xab\xac\xb2\xb3\xb3\xa4\xa6\xa7\x8d\x8e\x91\x85\x87\x8a\xaa\xaa\ \xab\xb6\xb6\xb7\xaf\xaf\xb1\x9e\x9e\xa1\x89\x89\x8b\x93\x91\x95\ \xba\xb8\xb9\xbf\xbc\xbe\xb9\xb6\xb8\xb8\xb6\xb8\xba\xb9\xbb\xba\ \xb9\xbb\xbc\xbb\xbd\xba\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ \xbe\xc2\xc2\xc3\xbd\xbd\xbd\xbc\xbb\xbd\x00\x00\x00\xe6\xe1\xe0\ \xe6\xe1\xde\xe7\xe2\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe8\ \xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ \xe0\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe5\xdf\xdf\ \xe5\xe0\xdf\xe5\xe0\xde\xe2\xdd\xdc\xe0\xdb\xda\xde\xd8\xd8\xdb\ \xd5\xd5\xd3\xcc\xcc\xcc\xc4\xc5\xbf\xb9\xb8\xac\xa9\xa9\x8e\x8d\ \x8d\x64\x68\x68\x3c\x46\x48\x2f\x39\x3d\x45\x4b\x4e\x6c\x6c\x6d\ \x88\x84\x84\x97\x92\x92\xa0\x9c\x9c\xa5\xa3\xa3\xa7\xa6\xa6\xa8\ \xa6\xa7\xa7\xa6\xa8\xa6\xa5\xa7\xa5\xa5\xa6\x9e\x9d\x9f\x92\x94\ \x96\x89\x8b\x8f\x87\x89\x8b\x85\x88\x89\x83\x86\x88\x77\x7b\x7e\ \x6c\x70\x73\x68\x6b\x6f\x60\x66\x6b\x53\x5d\x66\x56\x5d\x65\x77\ \x7a\x80\x81\x86\x8b\x84\x89\x8e\x81\x88\x8d\x81\x87\x8e\x7f\x85\ \x8c\x7d\x84\x8b\x7b\x83\x88\x7c\x85\x89\x7c\x84\x8a\x79\x81\x88\ \x73\x7b\x82\x6e\x75\x7c\x69\x6f\x75\x42\x4c\x53\x0e\x1a\x20\x2f\ \x37\x3e\x63\x66\x6a\x53\x57\x5b\x1c\x24\x2b\x08\x0d\x13\x3c\x41\ \x47\x6f\x72\x77\x73\x77\x7d\x6a\x70\x76\x73\x78\x7e\x7e\x84\x88\ \x7c\x85\x8a\x7d\x86\x8b\x7e\x87\x8c\x80\x87\x8c\x82\x89\x8e\x84\ \x8a\x90\x83\x89\x8e\x86\x8c\x92\x87\x8d\x94\x87\x8d\x94\x87\x8d\ \x93\x88\x8e\x93\x88\x8e\x94\x87\x8c\x92\x89\x8e\x93\x8a\x90\x95\ \x8f\x95\x9c\x8e\x94\x99\x8e\x93\x98\x93\x97\x9c\x94\x98\x9d\x91\ \x93\x98\x94\x97\x9c\x98\x9b\x9f\x97\x9a\x9e\x97\x9b\x9f\x99\x9c\ \xa0\x9b\x9e\xa3\x9c\x9f\xa4\x9d\xa0\xa5\x9c\x9f\xa4\x9e\xa1\xa5\ \x9c\x9f\xa3\x9f\xa2\xa3\x94\x95\x96\x8f\x8f\x90\xa3\xa2\xa5\xa0\ \xa1\xa3\xa1\xa2\xa4\xa4\xa5\xa7\xa4\xa6\xa7\xa6\xa7\xaa\xa9\xaa\ \xae\xa9\xab\xaf\xa5\xa7\xa9\x98\x9b\x9e\x7f\x82\x86\x86\x87\x8a\ \x6a\x6b\x6e\x96\x98\x9a\x98\x9d\x9d\x84\x88\x8a\x79\x7c\x80\x97\ \x99\x9c\xad\xad\xaf\xa3\xa4\xa6\x88\x89\x8c\x87\x87\x8a\xaa\xaa\ \xaa\xb3\xb4\xb4\xad\xae\xaf\x96\x97\x99\x81\x80\x82\xa0\x9f\xa1\ \xb6\xb5\xb6\xb7\xb6\xb7\xa9\xa9\xaa\x91\x91\x95\x8c\x8b\x8f\xaf\ \xac\xaf\xbb\xb8\xba\xb9\xb8\xba\xbb\xb9\xbb\xbb\xb9\xbb\xbc\xbb\ \xbd\xbd\xbb\xbd\xb9\xb8\xba\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbf\xbf\ \xbd\xbd\xbe\xbd\xbd\xbd\x00\x00\x00\xe7\xe2\xe0\xe6\xe1\xdf\xe5\ \xe0\xdf\xe4\xdf\xdc\xe5\xe0\xde\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\ \xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe1\ \xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe1\xe5\xe0\xde\xe5\xe0\xde\xe4\ \xdf\xde\xe2\xdd\xdc\xe0\xdb\xda\xdd\xd8\xd7\xd9\xd3\xd3\xd2\xca\ \xcb\xc9\xc2\xc1\xb9\xb5\xb4\xa2\xa0\xa0\x7e\x7f\x7f\x59\x5e\x5f\ \x35\x3e\x42\x33\x3e\x42\x55\x59\x5a\x7a\x78\x78\x8f\x8a\x8b\x9b\ \x97\x98\xa2\xa0\xa0\xa5\xa3\xa4\xaa\xa8\xa9\xab\xa8\xa9\xa8\xa7\ \xa8\xa6\xa6\xa7\xa3\xa3\xa4\x9b\x9b\x9c\x92\x93\x95\x8d\x90\x94\ \x87\x8a\x8e\x84\x88\x8a\x77\x7a\x7c\x67\x6c\x6e\x5b\x60\x65\x5d\ \x61\x66\x62\x66\x6b\x6a\x6f\x73\x6c\x71\x75\x7a\x7e\x82\x7e\x83\ \x88\x82\x88\x8d\x82\x88\x8f\x80\x86\x8d\x7f\x85\x8c\x7b\x83\x8b\ \x7b\x83\x8a\x7d\x85\x8b\x7c\x84\x8a\x7c\x84\x8a\x77\x7f\x86\x6b\ \x74\x7a\x54\x5d\x65\x34\x40\x48\x0e\x1b\x22\x29\x32\x3a\x5e\x62\ \x66\x40\x48\x4d\x10\x18\x1e\x07\x0e\x13\x36\x3d\x44\x6a\x6e\x75\ \x75\x7a\x7f\x70\x76\x7b\x6d\x73\x79\x78\x7e\x83\x7d\x84\x8a\x7f\ \x86\x8c\x7f\x87\x8d\x80\x89\x8d\x84\x8c\x92\x85\x8b\x91\x84\x8a\ \x8f\x86\x8c\x91\x87\x8d\x94\x87\x8d\x93\x85\x8b\x91\x86\x8c\x91\ \x86\x8c\x91\x88\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8d\x93\x99\x8e\ \x94\x9a\x8c\x91\x98\x8f\x93\x98\x93\x97\x9c\x94\x98\x9c\x93\x98\ \x9b\x98\x9c\xa0\x99\x9c\xa0\x97\x9b\x9f\x9a\x9e\xa2\x9a\x9e\xa3\ \x99\x9e\xa2\x9c\x9f\xa3\x9c\x9f\xa3\x9d\xa0\xa5\xa2\xa5\xa9\x9f\ \xa0\xa3\x6f\x73\x75\x64\x65\x68\x84\x83\x86\xa2\xa1\xa4\xa4\xa3\ \xa5\xa4\xa3\xa5\xa4\xa6\xa7\xa9\xab\xad\xaa\xab\xb0\xa6\xa8\xaa\ \xa6\xa8\xa9\xa5\xa7\xa9\xa0\xa2\xa6\x68\x6b\x70\x59\x5d\x62\xa5\ \xa7\xa7\xab\xae\xad\xa4\xa6\xa8\x89\x8b\x8f\x84\x85\x88\xa3\xa2\ \xa3\xae\xad\xae\xa7\xa8\xaa\x93\x96\x99\x80\x82\x86\xa4\xa4\xa4\ \xb5\xb6\xb4\xb4\xb4\xb4\xa4\xa5\xa6\x88\x89\x8b\x90\x8f\x91\xb6\ \xb5\xb5\xb7\xb6\xb7\xb3\xb5\xb6\x9e\xa0\xa2\x86\x88\x8b\x9e\x9d\ \xa0\xbd\xbb\xbd\xbc\xba\xbc\xba\xb8\xbb\xbb\xba\xbc\xbc\xbb\xbd\ \xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\xbd\xbd\xbe\xb9\xb8\xba\xba\ \xb9\xbb\x00\x00\x00\xe6\xe1\xdf\xe6\xe1\xde\xe6\xe1\xdf\xe5\xe0\ \xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe0\xdf\xe6\xe1\xe0\ \xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe6\ \xe1\xdf\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdd\ \xdb\xdf\xda\xda\xdc\xd6\xd6\xd8\xd0\xcf\xcf\xc8\xc7\xc3\xbe\xbd\ \xb3\xae\xae\x97\x96\x97\x6f\x72\x74\x48\x50\x54\x30\x3a\x3f\x3b\ \x44\x46\x62\x64\x64\x84\x80\x81\x94\x8f\x90\x9d\x9a\x9a\xa4\xa1\ \xa2\xa8\xa5\xa6\xa8\xa6\xa8\xa9\xa7\xa7\xa6\xa6\xa7\xa6\xa6\xa6\ \xa4\xa4\xa4\x9d\x9d\x9d\x99\x99\x9a\x8d\x90\x93\x87\x8a\x8e\x82\ \x86\x88\x72\x77\x78\x5c\x61\x63\x4a\x50\x54\x52\x56\x5c\x64\x68\ \x6d\x6c\x70\x74\x76\x79\x7d\x7a\x7f\x83\x82\x87\x8c\x83\x89\x8e\ \x82\x89\x8f\x7d\x86\x8b\x7d\x84\x8b\x7c\x84\x8b\x7c\x84\x8b\x7c\ \x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x84\x8b\x70\x78\x80\x43\x51\ \x5a\x1c\x28\x30\x1b\x28\x2f\x36\x40\x48\x46\x4f\x56\x28\x32\x3a\ \x07\x10\x15\x19\x22\x29\x4d\x54\x5d\x6a\x71\x78\x71\x77\x7c\x74\ \x7a\x7f\x70\x77\x7c\x6e\x74\x7a\x7a\x7f\x84\x81\x87\x8c\x7e\x87\ \x8b\x80\x88\x8d\x86\x8c\x93\x83\x89\x8e\x85\x8b\x90\x87\x8d\x92\ \x87\x8d\x92\x88\x8e\x95\x88\x8d\x93\x87\x8c\x91\x87\x8d\x91\x8a\ \x8f\x93\x8c\x91\x96\x8c\x91\x96\x89\x8d\x92\x88\x8d\x92\x88\x8d\ \x92\x8e\x92\x97\x90\x94\x99\x94\x99\x9d\x95\x98\x9b\x96\x99\x9d\ \x97\x9b\xa0\x9a\x9d\xa2\x9c\xa0\xa4\x9a\x9e\xa3\x98\x9c\xa0\x9a\ \x9e\xa1\x9d\xa0\xa4\xa0\xa3\xa8\xa5\xa8\xac\x91\x94\x98\x64\x69\ \x6d\x89\x8c\x8d\x78\x7a\x7b\x7d\x7d\x7f\xa0\x9f\xa1\xa2\xa3\xa5\ \xa1\xa2\xa5\xa3\xa5\xa6\xa7\xa7\xaa\xa4\xa6\xa8\xa4\xa6\xa8\xa5\ \xa6\xa9\xa0\xa2\xa6\x6d\x71\x74\x7c\x7f\x82\x80\x83\x84\xa1\xa3\ \xa2\xb0\xb0\xb1\xab\xab\xad\x94\x95\x97\x87\x88\x89\x9c\x9c\x9d\ \xaf\xaf\xaf\xae\xb0\xb1\x9f\xa2\xa5\x7f\x82\x85\x94\x95\x95\xb5\ \xb6\xb4\xb5\xb5\xb5\xae\xaf\xb0\x93\x94\x95\x80\x80\x82\xab\xaa\ \xaa\xbc\xbc\xbd\xb6\xb7\xb8\xab\xac\xae\x8c\x8d\x8e\x96\x95\x96\ \xb5\xb2\xb2\xbb\xba\xbc\xbe\xbb\xbd\xbf\xbc\xbe\xbe\xbd\xbf\xbb\ \xba\xbc\xba\xb9\xbb\xb9\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xb9\x00\x00\ \x00\xe6\xe1\xdf\xe6\xe1\xdf\xe6\xe1\xdd\xe5\xe0\xdd\xe5\xe0\xdd\ \xe5\xe0\xde\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\xe0\xe7\ \xe2\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe6\xe1\xe1\xe6\xe1\xe0\xe5\xe0\ \xde\xe4\xdf\xde\xe4\xde\xde\xe3\xdd\xdb\xe1\xdb\xd9\xde\xd9\xd8\ \xd9\xd3\xd2\xd5\xcd\xcb\xcb\xc5\xc3\xbc\xb7\xb7\xa9\xa6\xa6\x88\ \x89\x8a\x62\x66\x6a\x3c\x46\x4d\x36\x3f\x45\x49\x4e\x52\x6e\x6e\ \x6e\x8a\x85\x86\x98\x92\x93\xa1\x9c\x9d\xa7\xa3\xa4\xaa\xa7\xa9\ \xa8\xa6\xa8\xa7\xa4\xa6\xa5\xa4\xa5\xa5\xa5\xa5\xa4\xa3\xa5\x9f\ \x9e\xa0\x98\x99\x9a\x8f\x92\x93\x85\x88\x8b\x7d\x80\x82\x6e\x73\ \x74\x55\x5c\x5d\x4a\x50\x53\x55\x59\x5d\x65\x68\x6c\x6a\x6d\x71\ \x75\x78\x7c\x7c\x81\x84\x82\x87\x8c\x82\x89\x8e\x80\x88\x8d\x7f\ \x87\x8e\x7f\x87\x8e\x7e\x86\x8c\x7c\x84\x8a\x7d\x85\x8c\x7c\x84\ \x8b\x7b\x83\x8a\x7e\x84\x8b\x72\x79\x81\x3a\x48\x53\x0e\x1c\x24\ \x2c\x38\x40\x54\x5d\x61\x40\x4b\x51\x0e\x1a\x20\x06\x0c\x11\x2e\ \x36\x3e\x60\x68\x70\x75\x7b\x82\x6e\x76\x7c\x71\x78\x7d\x77\x7d\ \x82\x6e\x75\x7a\x71\x77\x7c\x7c\x81\x87\x7e\x85\x8a\x82\x88\x8d\ \x82\x88\x8d\x81\x87\x8b\x83\x89\x8e\x86\x8c\x91\x89\x8e\x93\x89\ \x8e\x93\x8b\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8d\x92\x8a\x8f\ \x94\x8b\x91\x95\x8a\x8f\x94\x85\x8a\x8f\x84\x89\x8d\x89\x8e\x91\ \x8f\x94\x98\x92\x97\x9a\x95\x98\x9d\x97\x9b\xa0\x97\x9b\xa0\x9a\ \x9d\xa2\x9d\xa0\xa5\x9d\xa1\xa5\x9b\x9f\xa2\x9e\xa1\xa5\x9f\xa2\ \xa6\xa0\xa3\xa7\xa5\xa6\xaa\x78\x7d\x82\x4f\x55\x5c\x89\x8a\x8d\ \x99\x99\x9b\x68\x69\x6b\x65\x64\x67\x9b\x9b\x9d\xa3\xa4\xa6\xa5\ \xa4\xa6\xa7\xa7\xa9\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa9\x8d\x8e\ \x92\x76\x7a\x7c\xa5\xa6\xa7\x97\x99\x9a\x7f\x82\x83\x99\x9a\x9b\ \xaf\xae\xaf\xad\xae\xaf\x9d\x9f\xa0\x84\x86\x87\x92\x92\x93\xac\ \xab\xad\xb5\xb6\xb7\xa8\xab\xac\x8a\x8c\x8d\x89\x8a\x8a\xaf\xaf\ \xb0\xb4\xb4\xb4\xb3\xb3\xb4\xa2\xa4\xa5\x86\x87\x88\x9a\x99\x9b\ \xba\xba\xbb\xbb\xba\xbb\xba\xb8\xba\x9a\x99\x9b\x86\x84\x84\xaf\ \xad\xae\xbe\xbb\xbd\xbf\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\ \xbc\xb7\xb6\xb7\xb8\xb7\xb8\xb9\xb7\xb8\x00\x00\x00\xe5\xdf\xdd\ \xe5\xdf\xdc\xe7\xe0\xe0\xe6\xdf\xdf\xe5\xe0\xde\xe5\xe0\xdf\xe6\ \xe1\xe0\xe6\xe1\xe0\xe7\xe1\xdf\xe6\xe0\xdf\xe5\xdf\xde\xe6\xe1\ \xe0\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\ \xe3\xde\xdb\xe2\xdc\xda\xdf\xda\xd8\xdb\xd6\xd5\xd7\xd2\xd1\xd0\ \xc9\xc7\xc6\xc1\xbe\xb8\xb4\xb5\xa1\xa0\xa0\x7a\x7c\x7c\x52\x58\ \x5b\x37\x40\x47\x3d\x44\x4b\x5b\x5c\x61\x7b\x79\x7a\x8f\x8b\x8b\ \x9c\x98\x99\xa2\x9f\xa0\xa6\xa3\xa5\xa8\xa6\xa8\xa9\xa6\xa8\xa9\ \xa6\xa8\xa5\xa4\xa5\xa3\xa3\xa4\xa1\xa0\xa1\x9e\x9d\x9f\x97\x99\ \x9a\x8c\x8f\x91\x85\x89\x8c\x7c\x80\x81\x6c\x70\x71\x55\x5c\x5e\ \x48\x4f\x53\x5c\x5f\x63\x62\x65\x69\x64\x67\x6b\x71\x74\x78\x7d\ \x81\x85\x81\x86\x8b\x84\x8a\x8f\x82\x88\x8d\x7f\x87\x8c\x7d\x85\ \x8c\x7d\x85\x8c\x7e\x86\x8d\x7c\x84\x8b\x7c\x83\x8a\x7b\x82\x89\ \x7c\x82\x89\x72\x7a\x81\x3a\x49\x54\x0e\x1e\x26\x2d\x3b\x44\x61\ \x68\x6c\x4d\x57\x5d\x09\x17\x1d\x0b\x14\x1c\x41\x4a\x53\x6c\x72\ \x79\x76\x7c\x83\x75\x7c\x82\x6e\x74\x7b\x75\x7b\x81\x77\x7d\x82\ \x6b\x72\x78\x70\x76\x7c\x7e\x85\x89\x83\x8a\x8e\x81\x86\x8c\x84\ \x8a\x90\x87\x8d\x93\x87\x8c\x93\x89\x8d\x92\x89\x8e\x93\x8b\x90\ \x94\x8c\x91\x95\x8b\x90\x94\x8c\x91\x96\x8a\x90\x95\x8c\x91\x94\ \x8c\x91\x95\x8a\x8e\x92\x8b\x90\x94\x8f\x94\x98\x91\x96\x99\x96\ \x9a\x9e\x96\x99\x9e\x97\x9a\x9f\x99\x9c\xa1\x99\x9c\xa1\x9c\x9f\ \xa3\x9b\x9e\xa3\x9b\x9f\xa4\x9d\xa0\xa5\x9d\xa0\xa4\x9f\xa2\xa6\ \x96\x98\x9c\x67\x6d\x72\x82\x86\x89\x78\x7b\x7e\x73\x75\x78\x6b\ \x6d\x70\x6b\x6e\x70\x7a\x7c\x7d\x99\x99\x9b\xa7\xa7\xa8\xa5\xa5\ \xa6\xa7\xa7\xa9\xa8\xa8\xaa\xa7\xa7\xa9\x70\x74\x77\x8c\x8f\x91\ \xaa\xaa\xab\xaa\xad\xae\xa4\xa8\xa9\x89\x8b\x8c\x8d\x8e\x8d\xa5\ \xa5\xa5\xb0\xb0\xb1\xaa\xab\xac\x87\x88\x89\x8b\x8b\x8c\xa8\xa9\ \xab\xaf\xb0\xb0\xb1\xb3\xb3\x9a\x9b\x9b\x7d\x7d\x7d\xa4\xa2\xa2\ \xb3\xb2\xb3\xb7\xb6\xb8\xae\xaf\xb1\x8b\x8c\x8e\x8c\x8d\x8e\xb3\ \xb1\xb2\xbd\xb9\xbb\xbd\xbb\xbd\xae\xac\xac\x80\x7f\x80\x9c\x9b\ \x9d\xbb\xba\xbb\xbe\xbc\xbd\xba\xb8\xba\xbc\xba\xbc\xbe\xbc\xbd\ \xbb\xb8\xba\xb9\xb8\xb8\x00\x00\x00\xe6\xe1\xde\xe6\xe0\xde\xe6\ \xe0\xe0\xe5\xe0\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xde\xe6\xde\ \xdd\xe3\xdc\xd9\xe1\xd9\xd6\xe2\xdb\xd8\xe5\xde\xdb\xe6\xe1\xde\ \xe6\xe0\xde\xe6\xe0\xdd\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xdc\xdc\xe2\ \xda\xda\xdf\xd8\xd6\xda\xd3\xd0\xd4\xce\xcb\xcb\xc6\xc3\xc2\xbd\ \xbc\xaf\xac\xad\x91\x91\x91\x6c\x6f\x6f\x46\x4e\x53\x31\x3b\x42\ \x44\x4b\x52\x69\x68\x6d\x83\x81\x82\x94\x92\x92\xa0\x9e\x9e\xa4\ \xa1\xa2\xa6\xa4\xa6\xaa\xa8\xaa\xaa\xa8\xaa\xa8\xa7\xa9\xa6\xa5\ \xa7\xa2\xa1\xa3\xa0\x9f\xa1\x9d\x9e\x9f\x93\x95\x96\x89\x8c\x8f\ \x82\x85\x87\x7c\x80\x81\x6b\x70\x71\x52\x59\x5d\x45\x4b\x51\x55\ \x58\x5c\x59\x5d\x61\x61\x64\x68\x6c\x6f\x73\x80\x84\x88\x82\x88\ \x8d\x81\x87\x8c\x80\x86\x8b\x7d\x83\x88\x7c\x85\x8a\x7b\x84\x89\ \x7c\x84\x8a\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x84\x8a\x72\ \x7a\x81\x51\x5d\x68\x24\x37\x41\x39\x47\x52\x5f\x67\x6d\x63\x6b\ \x70\x28\x37\x41\x15\x22\x2d\x52\x5c\x64\x6f\x76\x7b\x70\x77\x7d\ \x76\x7c\x82\x71\x79\x7e\x6c\x75\x7a\x77\x7d\x82\x74\x7a\x80\x6d\ \x74\x7a\x78\x7c\x81\x7f\x84\x89\x83\x88\x8d\x82\x88\x8d\x86\x8c\ \x92\x88\x8c\x92\x88\x8c\x91\x88\x8c\x91\x8b\x8f\x94\x8a\x8f\x93\ \x8c\x91\x96\x8c\x92\x96\x8d\x92\x96\x8d\x92\x96\x8e\x92\x96\x89\ \x8d\x91\x8f\x94\x97\x93\x97\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\ \xa0\x9b\x9f\xa4\x99\x9d\xa2\x9b\x9f\xa4\x9c\x9f\xa4\x9b\x9e\xa3\ \x9d\x9f\xa5\x9d\xa0\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x81\x85\x88\x4b\ \x53\x5a\x8a\x8b\x8f\x94\x97\x99\x64\x67\x6c\x49\x4c\x51\x9a\x9b\ \x99\x8b\x8e\x8d\x74\x76\x77\x8e\x8d\x8f\xa3\xa2\xa4\xa8\xa6\xa8\ \xa7\xa6\xa8\x93\x94\x97\x76\x7a\x7d\xa1\xa3\xa5\xab\xac\xae\xac\ \xac\xad\xaf\xaf\xb0\xa9\xaa\xac\x89\x8c\x8d\x81\x83\x84\xa5\xa6\ \xa6\xb4\xb3\xb3\xb2\xb2\xb3\x91\x93\x94\x7f\x81\x83\x9e\x9e\xa0\ \xb3\xb3\xb3\xb3\xb4\xb4\xa8\xa8\xa8\x81\x7f\x7f\x92\x8e\x8f\xaf\ \xae\xae\xb7\xb6\xb8\xb7\xb8\xb9\x99\x9a\x9b\x83\x83\x84\xa2\xa1\ \xa1\xba\xb8\xb8\xbf\xbd\xbd\xb8\xb7\xb8\x8e\x8f\x92\x85\x85\x88\ \xb4\xb2\xb4\xba\xb7\xb8\xbd\xba\xbc\xbe\xbb\xbd\xbc\xbb\xbc\xbd\ \xbc\xbc\x00\x00\x00\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xdb\xe3\xdd\ \xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xda\xe2\xdc\xdb\xe0\xd9\xd7\ \xde\xd6\xd3\xdf\xd7\xd4\xe2\xdb\xd8\xe5\xdf\xdd\xe6\xe0\xdf\xe5\ \xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe2\xdc\xd9\xe0\xda\xd7\xdd\xd7\ \xd5\xd9\xd3\xd1\xd2\xcd\xcb\xca\xc5\xc4\xbd\xb8\xb7\xa9\xa5\xa5\ \x83\x85\x84\x5c\x62\x62\x3b\x44\x4b\x2f\x3a\x41\x4c\x51\x58\x76\ \x74\x77\x8c\x8a\x89\x97\x94\x94\xa2\xa0\xa0\xa5\xa3\xa4\xa8\xa5\ \xa7\xab\xa8\xaa\xa8\xa7\xa9\xa6\xa6\xa8\xa4\xa3\xa5\xa2\xa1\xa3\ \xa0\x9f\xa2\x9b\x9c\x9d\x8f\x92\x93\x84\x88\x8a\x7f\x83\x85\x7c\ \x80\x80\x6c\x71\x72\x4c\x54\x59\x31\x36\x3d\x47\x49\x4f\x5b\x5e\ \x62\x60\x63\x67\x67\x6a\x6e\x7a\x7e\x81\x81\x86\x8b\x81\x87\x8c\ \x80\x86\x8a\x7d\x84\x89\x7c\x85\x89\x7d\x85\x8a\x7c\x84\x8a\x7d\ \x85\x8b\x7d\x85\x8b\x7b\x83\x8a\x7b\x84\x8a\x77\x7f\x86\x67\x71\ \x78\x54\x5f\x68\x57\x63\x6a\x63\x6b\x72\x65\x6d\x71\x4d\x5a\x64\ \x3c\x4b\x56\x5e\x67\x6e\x75\x7b\x80\x6e\x76\x7d\x71\x78\x7f\x77\ \x7e\x85\x6f\x77\x7e\x70\x76\x7c\x7a\x80\x85\x75\x7b\x80\x6e\x73\ \x78\x79\x7e\x82\x84\x88\x8c\x86\x8a\x8f\x88\x8c\x91\x87\x8b\x90\ \x89\x8d\x92\x89\x8d\x92\x8b\x8f\x94\x8f\x93\x98\x8d\x91\x96\x8e\ \x92\x96\x8e\x93\x96\x8f\x94\x98\x8e\x92\x96\x8f\x93\x97\x90\x95\ \x99\x90\x95\x99\x93\x96\x9a\x94\x97\x9c\x99\x9c\xa0\x9a\x9d\xa2\ \x9b\x9e\xa3\x9d\xa0\xa5\x9c\x9f\xa4\x9b\x9e\xa2\x9c\x9f\xa3\x9b\ \x9e\xa2\xa0\xa3\xa7\x9c\x9f\xa3\x6e\x73\x77\x77\x7a\x7e\x6e\x71\ \x76\x7a\x7d\x7f\x68\x6c\x6f\x66\x69\x6c\x7f\x80\x81\x93\x94\x93\ \x62\x67\x69\x57\x59\x5d\x8f\x8c\x8d\xa5\xa3\xa3\xa8\xa7\xa8\xa2\ \xa3\xa4\x9e\xa1\xa3\xab\xab\xac\xb0\xb0\xb2\xae\xad\xaf\xab\xaa\ \xac\xb1\xb0\xb2\xad\xac\xae\x93\x94\x96\x83\x85\x86\x9f\x9f\x9f\ \xb2\xb1\xb2\xb1\xb1\xb3\x9d\x9f\xa0\x85\x88\x88\x9c\x9c\x9c\xa9\ \xaa\xaa\xb3\xb2\xb2\xb3\xb2\xb2\x90\x8e\x8e\x81\x7f\x7f\xaa\xab\ \xab\xb5\xb5\xb6\xbb\xbb\xbd\xa7\xa7\xa9\x82\x82\x82\x9a\x97\x97\ \xb7\xb4\xb4\xbb\xb9\xb9\xbf\xbe\xbf\xab\xac\xac\x81\x81\x82\x9b\ \x99\x98\xbc\xb9\xba\xbd\xba\xbc\xc1\xbf\xc1\xc1\xbf\xc2\x00\x00\ \x00\xe2\xdb\xd7\xe0\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\ \xe1\xda\xd6\xe1\xd9\xd6\xdf\xd8\xd4\xd9\xd0\xcd\xd9\xd0\xcd\xde\ \xd6\xd3\xe2\xdb\xda\xe5\xe0\xde\xe5\xe1\xde\xe5\xe0\xde\xe3\xde\ \xdd\xe2\xdd\xdb\xe2\xdb\xd8\xe0\xd9\xd6\xdb\xd5\xd2\xd7\xd2\xd0\ \xcf\xca\xc9\xc6\xc0\xc0\xb8\xb4\xb3\x9d\x99\x98\x77\x7a\x78\x51\ \x58\x5b\x35\x3f\x46\x37\x41\x46\x5f\x60\x64\x7d\x7b\x7c\x90\x8e\ \x8e\x9c\x99\x9a\xa2\xa0\xa1\xa5\xa4\xa4\xa7\xa5\xa7\xa8\xa5\xa7\ \xa7\xa5\xa7\xa5\xa4\xa6\xa2\xa1\xa3\xa2\xa2\xa3\x9f\x9f\xa2\x98\ \x9a\x9c\x8d\x91\x92\x86\x89\x8d\x7f\x82\x86\x7a\x7e\x7f\x69\x6e\ \x6f\x42\x4a\x51\x29\x2f\x38\x3e\x41\x48\x58\x5c\x60\x5a\x5e\x62\ \x66\x69\x6d\x76\x79\x7d\x81\x84\x89\x81\x87\x8c\x7f\x85\x8a\x80\ \x87\x8c\x7f\x86\x8d\x7e\x86\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ \x8b\x7a\x82\x89\x7b\x82\x89\x79\x81\x88\x77\x7e\x85\x72\x79\x7f\ \x71\x79\x80\x6e\x76\x7b\x65\x6d\x71\x67\x6f\x76\x64\x6e\x75\x68\ \x6e\x75\x74\x7a\x7f\x74\x7b\x81\x6e\x75\x7c\x74\x7b\x81\x77\x7e\ \x83\x6f\x77\x7c\x70\x78\x7d\x7b\x80\x85\x75\x7b\x7e\x70\x74\x79\ \x7b\x80\x84\x86\x8a\x8f\x88\x8d\x91\x87\x8b\x90\x88\x8c\x91\x88\ \x8d\x92\x8a\x90\x96\x8d\x92\x97\x8d\x93\x97\x8b\x92\x97\x8e\x94\ \x97\x8e\x93\x96\x90\x94\x99\x90\x95\x99\x8f\x93\x97\x90\x94\x97\ \x92\x95\x99\x93\x96\x9a\x97\x9a\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9b\ \x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa3\x9e\xa1\xa5\x9e\xa1\xa5\xa3\xa5\ \xa9\x89\x8c\x90\x5a\x61\x65\x86\x88\x8c\x92\x94\x98\x64\x68\x6c\ \x45\x4b\x4f\x93\x94\x95\x89\x8a\x8b\x5d\x60\x62\x55\x5c\x60\x83\ \x87\x89\x7b\x79\x78\x80\x7b\x7b\xa0\x9e\x9f\xab\xa9\xac\xac\xaa\ \xac\xac\xab\xad\xad\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xae\xad\xaf\ \xae\xae\xaf\xae\xae\xaf\x99\x9c\x9d\x85\x87\x88\x94\x94\x95\xaa\ \xa9\xab\xb0\xb2\xb3\xac\xad\xae\x84\x83\x85\x8e\x8d\x8d\xaa\xa8\ \xa8\xb1\xaf\xaf\xb2\xb0\xb0\x9b\x9b\x9b\x81\x82\x82\x99\x99\x9a\ \xb6\xb5\xb5\xba\xba\xba\xb7\xb6\xb7\x94\x94\x94\x8f\x8c\x8c\xa9\ \xa5\xa6\xb9\xb6\xb6\xc1\xbe\xbe\xb8\xb7\xb7\x8f\x8f\x8f\x90\x90\ \x92\xb1\xaf\xaf\xbe\xbc\xbe\xc4\xc3\xc5\x00\x00\x00\xe0\xd8\xd5\ \xe0\xd9\xd6\xe0\xd8\xd4\xde\xd5\xd0\xdc\xd3\xce\xdb\xd1\xcc\xdb\ \xd1\xcc\xdb\xd1\xcd\xd7\xce\xc9\xd7\xce\xcb\xdc\xd4\xd1\xe2\xdc\ \xda\xe6\xe2\xdf\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdc\xd9\ \xe0\xdb\xd8\xde\xd8\xd6\xda\xd5\xd3\xd5\xd0\xcf\xcd\xc8\xc7\xc1\ \xbb\xbc\xae\xa9\xa9\x8f\x8e\x8d\x67\x6d\x6c\x46\x4f\x53\x36\x40\ \x46\x4a\x4e\x55\x6d\x6b\x6e\x87\x83\x84\x95\x91\x92\x9e\x9b\x9c\ \xa4\xa1\xa3\xa6\xa5\xa6\xa6\xa6\xa7\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ \xa3\xa5\xa2\xa2\xa4\x9e\xa0\xa2\x9c\x9d\xa1\x95\x96\x99\x8b\x8e\ \x91\x84\x87\x8b\x80\x83\x87\x7b\x7e\x80\x6a\x6f\x71\x3f\x47\x4d\ \x22\x2a\x32\x2f\x34\x3c\x3e\x41\x4a\x55\x59\x5e\x66\x69\x6e\x73\ \x76\x7b\x7b\x7e\x82\x83\x87\x8c\x80\x87\x8c\x7f\x85\x8c\x7e\x85\ \x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x83\x8a\x7a\x82\x89\ \x7b\x83\x8a\x7b\x84\x8b\x7b\x82\x89\x7a\x82\x89\x7c\x84\x8b\x76\ \x7e\x84\x6e\x76\x7c\x6e\x76\x7b\x73\x7b\x82\x6f\x77\x7d\x6e\x75\ \x7c\x76\x7d\x83\x71\x7a\x7f\x6d\x75\x7b\x75\x7c\x81\x77\x80\x84\ \x6c\x74\x79\x76\x7a\x7e\x7c\x80\x83\x77\x7b\x7e\x70\x73\x78\x7d\ \x81\x86\x88\x8d\x91\x8b\x8f\x93\x8a\x8f\x93\x87\x8d\x91\x89\x8d\ \x92\x8b\x8f\x94\x8c\x91\x94\x8c\x92\x95\x8c\x91\x94\x8f\x93\x97\ \x92\x97\x9b\x93\x98\x9b\x8e\x93\x96\x91\x95\x98\x93\x97\x9a\x91\ \x95\x98\x96\x99\x9d\x9a\x9d\xa1\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\ \xa2\x9d\xa0\xa4\x9f\xa2\xa6\xa0\xa3\xa7\x9e\xa0\xa4\x74\x79\x7d\ \x71\x78\x7b\x77\x7b\x7f\x8e\x8f\x93\x6e\x72\x76\x58\x5c\x60\x80\ \x80\x82\x9a\x99\x9b\x68\x6b\x6e\x4b\x51\x54\x8d\x8f\x8e\x65\x63\ \x62\x25\x20\x1f\x65\x5d\x5d\x9e\x9a\x9c\xa9\xa8\xaa\xa8\xa7\xa9\ \xab\xaa\xac\xaf\xae\xb0\xb0\xaf\xb0\xae\xae\xaf\xae\xae\xae\xad\ \xac\xae\xb1\xb0\xb2\xa7\xa7\xa9\x8a\x8a\x8c\x8f\x8e\x90\xa7\xa5\ \xa7\xb5\xb4\xb5\xb3\xb3\xb3\x93\x93\x94\x84\x84\x85\xa0\x9f\x9f\ \xb1\xaf\xaf\xb5\xb4\xb4\xac\xad\xac\x91\x91\x91\x90\x90\x91\xa8\ \xa9\xa9\xb8\xb6\xb7\xba\xb8\xb8\xa1\x9e\x9d\x89\x87\x87\x9f\x9c\ \x9f\xb2\xaf\xb0\xb9\xb7\xb7\xc2\xc1\xc1\xa9\xa9\xab\x8a\x8a\x8c\ \x9f\x9d\x9f\xb8\xb6\xb8\x00\x00\x00\xdd\xd4\xd0\xdc\xd2\xce\xd8\ \xce\xc9\xd5\xca\xc3\xd3\xc7\xc0\xd3\xc8\xc1\xd8\xcd\xc8\xd9\xcf\ \xcb\xd9\xcf\xcb\xd9\xd1\xce\xdf\xd6\xd1\xe3\xdc\xd9\xe5\xe0\xdd\ \xe5\xe0\xdf\xe4\xdf\xde\xe4\xdf\xde\xe2\xdd\xdc\xdf\xda\xd9\xdc\ \xd7\xd5\xd7\xd2\xd0\xd1\xcc\xcb\xc9\xc4\xc3\xbb\xb5\xb6\xa5\xa2\ \xa2\x82\x83\x84\x59\x61\x63\x37\x42\x47\x39\x42\x48\x57\x59\x5d\ \x78\x75\x77\x8d\x89\x8a\x9a\x95\x96\xa1\x9d\x9d\xa7\xa3\xa5\xa6\ \xa5\xa6\xa6\xa5\xa6\xa7\xa6\xa8\xa6\xa5\xa6\xa4\xa3\xa5\xa1\xa0\ \xa2\x9d\x9e\xa1\x9c\x9d\xa1\x92\x94\x98\x89\x8c\x90\x86\x89\x8d\ \x83\x86\x8a\x7e\x82\x84\x6a\x6f\x72\x48\x51\x55\x2c\x33\x3c\x27\ \x2c\x36\x1c\x20\x2a\x3e\x43\x4b\x5e\x61\x65\x70\x74\x78\x77\x7a\ \x7e\x7e\x83\x87\x81\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8c\ \x7c\x84\x8c\x7d\x85\x8d\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\ \x84\x8b\x7e\x87\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x85\x8c\x73\x7b\ \x82\x71\x79\x80\x71\x78\x7e\x74\x7b\x81\x6e\x76\x7d\x6f\x76\x7d\ \x77\x7e\x85\x72\x7b\x82\x6f\x78\x7e\x76\x7f\x84\x67\x6f\x73\x53\ \x56\x5a\x70\x6f\x73\x7e\x81\x85\x72\x76\x7b\x71\x76\x79\x83\x87\ \x8b\x8c\x92\x94\x8b\x91\x94\x8a\x8f\x92\x89\x8e\x91\x88\x8d\x90\ \x89\x8e\x91\x8d\x92\x95\x8c\x92\x95\x8f\x94\x97\x92\x97\x9a\x94\ \x99\x9c\x92\x97\x9a\x90\x94\x98\x90\x94\x97\x95\x98\x9b\x97\x9a\ \x9e\x9c\x9f\xa3\x9b\x9f\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\xa5\ \xa0\xa2\xa6\x9f\xa1\xa3\x8f\x92\x94\x70\x75\x78\x86\x88\x8b\x93\ \x95\x98\x6f\x72\x75\x4f\x54\x58\x8d\x8f\x90\x84\x84\x84\x59\x58\ \x5b\x5b\x5c\x5f\x7f\x80\x81\x82\x83\x81\x33\x36\x36\x00\x00\x00\ \x19\x17\x19\x71\x6d\x70\x94\x92\x94\xa8\xa7\xa7\xac\xac\xad\xab\ \xab\xac\xae\xad\xaf\xaf\xae\xb0\xb2\xb2\xb2\xaf\xae\xb0\xaf\xae\ \xb0\xb5\xb4\xb6\xb2\xb1\xb3\x98\x97\x99\x90\x8f\x91\x9f\x9d\x9e\ \xb4\xb1\xb1\xb6\xb6\xb7\x9f\xa0\xa1\x8c\x8d\x8d\x9c\x9b\x9b\xaa\ \xa9\xa9\xba\xb9\xb9\xba\xba\xba\x9d\x9e\x9e\x8c\x8d\x8e\xa2\xa1\ \xa1\xb6\xb3\xb2\xbc\xb9\xb7\xae\xae\xad\x90\x90\x92\x8e\x8b\x8e\ \xa5\xa2\xa3\xba\xb8\xb8\xbf\xbe\xbf\xb6\xb6\xb7\x96\x97\x98\x8b\ \x8b\x8d\x00\x00\x00\xd4\xc9\xc2\xd1\xc5\xbf\xd0\xc4\xbd\xcf\xc5\ \xbe\xd0\xc5\xbf\xd1\xc7\xc1\xd5\xcb\xc7\xd7\xcd\xc9\xd8\xce\xca\ \xdb\xd3\xcf\xe1\xd8\xd5\xe5\xde\xdb\xe5\xe0\xdd\xe4\xdf\xdd\xe4\ \xdf\xde\xe4\xdf\xde\xe1\xdc\xdb\xdf\xda\xd8\xdb\xd6\xd4\xd6\xd0\ \xcd\xcf\xca\xc7\xc5\xc0\xbf\xb5\xb0\xb0\x99\x98\x98\x74\x77\x7a\ \x4e\x57\x5b\x31\x3d\x42\x41\x49\x50\x63\x62\x66\x82\x7d\x7f\x92\ \x8e\x8f\x9d\x9a\x9b\xa3\xa1\xa2\xa8\xa6\xa8\xa7\xa5\xa7\xa6\xa5\ \xa7\xa7\xa6\xa8\xa5\xa4\xa6\xa3\xa3\xa4\x9f\x9f\xa1\x9a\x9b\x9e\ \x97\x98\x9c\x90\x93\x97\x88\x8b\x8f\x88\x8b\x8f\x85\x88\x8c\x7f\ \x82\x86\x66\x6c\x6f\x50\x57\x5c\x41\x46\x4e\x40\x45\x4d\x34\x3a\ \x43\x3e\x45\x4f\x5e\x62\x68\x71\x75\x79\x76\x7a\x7e\x79\x7d\x82\ \x7f\x83\x88\x7e\x84\x89\x7e\x84\x8b\x7d\x85\x8d\x7b\x83\x8c\x7c\ \x84\x8c\x7d\x84\x8d\x7c\x84\x8d\x7c\x85\x8c\x7c\x84\x8b\x7e\x86\ \x8e\x7e\x86\x8d\x7d\x85\x8b\x7e\x86\x8d\x7b\x83\x8a\x74\x7c\x83\ \x6e\x76\x7d\x73\x7a\x81\x73\x7a\x81\x6c\x74\x7a\x73\x7a\x80\x79\ \x80\x86\x72\x7a\x7f\x6c\x75\x79\x4d\x57\x5d\x18\x1b\x20\x30\x2e\ \x31\x72\x70\x74\x7e\x82\x86\x76\x7b\x7e\x76\x7b\x7e\x85\x8a\x8d\ \x8c\x91\x94\x8b\x90\x93\x8a\x8f\x92\x88\x8e\x91\x8b\x90\x93\x8e\ \x93\x96\x8d\x92\x95\x8c\x91\x94\x90\x95\x98\x93\x98\x9b\x94\x99\ \x9c\x91\x95\x99\x91\x95\x97\x94\x98\x9a\x97\x9b\x9f\x9b\xa0\xa3\ \x9c\x9e\xa3\x9c\x9f\xa4\x9c\x9f\xa4\x9c\xa0\xa3\x9f\xa1\xa4\x95\ \x97\x99\x72\x77\x7a\x78\x7c\x7e\x79\x7d\x7e\x87\x89\x8a\x6e\x73\ \x75\x54\x59\x5c\x80\x83\x84\x62\x62\x64\x0f\x0e\x10\x27\x26\x27\ \x84\x83\x83\x9d\x9e\x9d\x50\x57\x58\x0f\x16\x17\x45\x49\x4d\x8d\ \x89\x8b\x7a\x77\x78\x86\x85\x86\xa6\xa4\xa5\xae\xad\xad\xad\xac\ \xad\xab\xaa\xac\xb0\xaf\xb0\xaf\xaf\xaf\xb0\xaf\xb1\xb1\xb0\xb2\ \xb1\xb0\xb2\xb3\xb3\xb5\xa4\xa4\xa6\x8b\x8a\x8d\x99\x98\x9a\xa9\ \xa9\xaa\xb3\xb2\xb4\xaf\xad\xb0\x98\x96\x98\x90\x90\x90\xa1\xa1\ \xa1\xb8\xb6\xb6\xb9\xb7\xb7\xaa\xa9\xaa\x95\x95\x96\x94\x94\x94\ \xaa\xa8\xa7\xbc\xbb\xba\xba\xb9\xb9\xa1\x9e\x9f\x91\x8f\x91\x98\ \x97\x98\xb3\xb2\xb3\xc1\xc1\xc1\xc0\xc0\xc1\xa8\xa9\xaa\x00\x00\ \x00\xcb\xbf\xb7\xcb\xc1\xba\xcc\xc2\xbb\xd0\xc6\xc0\xd2\xc8\xc3\ \xd5\xcc\xc7\xd9\xd0\xcc\xd9\xd0\xcc\xdb\xd2\xce\xdf\xd8\xd4\xe2\ \xdb\xd8\xe6\xe0\xdd\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\xdc\xe3\xde\ \xdd\xe0\xda\xd9\xde\xd8\xd7\xd9\xd4\xd2\xd4\xce\xcb\xcc\xc6\xc4\ \xbf\xba\xb8\xab\xa7\xa6\x8b\x8c\x8d\x67\x6b\x6f\x41\x4b\x50\x34\ \x3f\x46\x4a\x51\x58\x6e\x6b\x6e\x89\x84\x85\x97\x94\x95\xa0\x9e\ \x9f\xa5\xa3\xa4\xa7\xa5\xa8\xa7\xa5\xa8\xa7\xa6\xa8\xa6\xa5\xa7\ \xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9a\x9e\x91\x92\x96\x8b\ \x8e\x92\x86\x89\x8d\x89\x8c\x90\x88\x8b\x8f\x7c\x7f\x83\x63\x67\ \x6c\x4f\x55\x5b\x50\x55\x5c\x5f\x63\x68\x5e\x65\x6a\x5a\x62\x69\ \x6a\x6f\x75\x72\x76\x7b\x77\x7c\x7f\x73\x78\x7b\x79\x7d\x81\x7d\ \x81\x88\x7d\x83\x8a\x7e\x85\x8c\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ \x8c\x7c\x84\x8c\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8c\x7d\x85\x8b\ \x7b\x83\x8a\x7e\x86\x8d\x7e\x86\x8d\x79\x81\x88\x73\x7b\x82\x6f\ \x77\x7e\x75\x7c\x83\x75\x7d\x83\x6f\x78\x7d\x76\x7d\x82\x7a\x81\ \x85\x6f\x77\x7b\x3c\x49\x51\x04\x07\x0a\x01\x00\x01\x3d\x3b\x3f\ \x7b\x7c\x80\x82\x85\x89\x77\x7c\x7f\x76\x7b\x7f\x84\x89\x8c\x8a\ \x8f\x92\x8c\x91\x94\x8b\x91\x94\x8c\x91\x94\x8d\x91\x95\x8c\x91\ \x94\x8d\x91\x95\x8f\x94\x97\x90\x95\x98\x94\x99\x9c\x93\x96\x99\ \x92\x97\x99\x93\x97\x9a\x95\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\x99\ \x9c\xa1\x99\x9c\xa0\x95\x98\x9c\x87\x89\x8c\x89\x8b\x8c\x70\x76\ \x79\x7f\x83\x86\x89\x8d\x8e\x71\x75\x76\x5d\x64\x68\x81\x84\x86\ \x89\x8c\x8d\x43\x4a\x4d\x00\x00\x00\x1f\x20\x21\x6d\x6f\x70\x7b\ \x7e\x7e\x63\x6d\x6e\x5e\x68\x6c\x77\x7b\x7f\x98\x95\x95\x75\x72\ \x73\x6b\x6b\x6d\x86\x84\x85\xa5\xa2\xa2\xad\xab\xab\xa9\xa8\xaa\ \xab\xaa\xab\xad\xac\xad\xb1\xb0\xb2\xb0\xaf\xb1\xb0\xaf\xb1\xb2\ \xb1\xb3\xb5\xb5\xb6\xab\xac\xae\x97\x97\x9b\x8c\x8d\x8e\xa1\xa0\ \xa1\xb5\xb2\xb4\xb8\xb5\xb7\xa2\xa0\xa1\x8f\x8e\x8f\x9a\x97\x98\ \xae\xaa\xaa\xbe\xbc\xbd\xb5\xb5\xb6\x97\x98\x98\x8f\x8f\x8f\x9f\ \x9e\x9e\xb6\xb4\xb4\xc0\xbd\xbe\xb6\xb5\xb7\x99\x98\x9b\x92\x91\ \x93\xa5\xa3\xa4\xbc\xbb\xbb\xc3\xc2\xc4\x00\x00\x00\xcc\xc2\xbb\ \xd0\xc6\xc0\xd4\xca\xc4\xd8\xce\xca\xdb\xd2\xcf\xdd\xd5\xd1\xdd\ \xd4\xd1\xdc\xd4\xd0\xdd\xd5\xd1\xdf\xd8\xd5\xe4\xdd\xda\xe6\xe0\ \xdc\xe4\xdf\xdd\xe4\xde\xdb\xe3\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\ \xdc\xd6\xd5\xd8\xd2\xd1\xd2\xcc\xca\xc7\xc1\xbe\xba\xb4\xb0\xa1\ \x9f\x9c\x7e\x80\x80\x5a\x60\x64\x38\x42\x49\x38\x41\x48\x58\x5b\ \x60\x7a\x76\x78\x90\x8b\x8c\x9b\x99\x99\xa2\xa0\xa0\xa6\xa4\xa5\ \xa8\xa6\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa4\xa2\ \xa1\xa4\x9e\x9d\xa1\x98\x99\x9d\x91\x92\x96\x89\x8b\x8f\x89\x8b\ \x8f\x8c\x8e\x92\x89\x8c\x90\x79\x7c\x80\x5e\x63\x69\x48\x4f\x57\ \x51\x57\x5e\x67\x6c\x70\x73\x79\x7c\x70\x76\x7a\x76\x7a\x7f\x76\ \x7a\x7f\x75\x79\x7d\x72\x77\x7a\x73\x77\x7c\x7c\x80\x85\x7c\x81\ \x86\x7d\x83\x89\x7c\x83\x8a\x7b\x83\x8a\x7c\x84\x8c\x7a\x83\x8a\ \x7c\x83\x8a\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\ \x85\x8c\x7c\x85\x8d\x7f\x87\x90\x78\x81\x88\x70\x78\x80\x70\x78\ \x7f\x77\x7e\x84\x74\x7b\x80\x6f\x76\x7a\x77\x7d\x81\x79\x80\x83\ \x4d\x5e\x66\x08\x10\x15\x00\x00\x00\x14\x15\x17\x62\x62\x66\x7d\ \x80\x84\x83\x87\x8b\x76\x7c\x7f\x76\x7b\x7e\x84\x8a\x8d\x8c\x91\ \x94\x8d\x92\x95\x8c\x91\x94\x8a\x8f\x92\x8a\x8f\x92\x8e\x93\x96\ \x92\x97\x9b\x92\x97\x9a\x95\x98\x9c\x95\x98\x9c\x96\x99\x9d\x98\ \x9c\x9f\x98\x9c\xa0\x99\x9c\xa1\x99\x9c\xa0\x98\x9b\x9f\x98\x9b\ \x9f\x92\x95\x99\x72\x75\x79\x7e\x82\x84\x92\x96\x97\x93\x96\x97\ \x86\x89\x8b\x71\x77\x7a\x69\x6f\x73\x7c\x80\x83\x94\x98\x99\x6c\ \x75\x76\x1d\x29\x2c\x4b\x52\x55\x91\x94\x95\x63\x68\x6a\x4c\x53\ \x56\x8e\x91\x92\x99\x9b\x9d\x75\x75\x79\x50\x4f\x53\x94\x95\x95\ \x86\x85\x85\x64\x5f\x62\x98\x93\x94\xb1\xb0\xb0\xab\xab\xac\xad\ \xac\xae\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb1\xb0\ \xb2\xb3\xb3\xb5\xb4\xb4\xb6\x9d\x9f\xa0\x8b\x8c\x8c\x95\x93\x95\ \xb5\xb1\xb3\xb8\xb6\xb7\xaf\xaf\xaf\x96\x94\x96\x8e\x8b\x8e\xa6\ \xa2\xa4\xbb\xb8\xb9\xba\xb9\xb9\xa9\xa9\xa9\x93\x94\x94\x8d\x8e\ \x8e\xae\xac\xae\xc0\xbe\xbf\xbf\xbe\xbf\xa6\xa5\xa7\x96\x95\x95\ \x97\x95\x95\xb3\xb0\xb1\x00\x00\x00\xd8\xd1\xcd\xdb\xd2\xce\xdc\ \xd3\xcf\xdd\xd5\xd2\xde\xd7\xd4\xde\xd7\xd4\xdc\xd5\xd2\xdc\xd5\ \xd2\xdd\xd6\xd3\xe1\xda\xd7\xe5\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\ \xe4\xde\xdb\xe2\xdd\xdc\xe0\xdb\xda\xde\xd9\xd8\xda\xd4\xd4\xd7\ \xd0\xd0\xcf\xc8\xc7\xc2\xbc\xba\xb3\xae\xaa\x95\x94\x91\x6e\x71\ \x71\x4b\x53\x58\x37\x40\x46\x43\x48\x4e\x68\x66\x69\x83\x7e\x7f\ \x95\x90\x91\x9f\x9d\x9d\xa3\xa0\xa1\xa7\xa5\xa7\xa8\xa6\xa8\xa7\ \xa6\xa9\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa5\xa2\xa1\xa5\x9d\x9d\ \xa1\x95\x95\x99\x8e\x8f\x93\x8b\x8c\x90\x8a\x8b\x8f\x8c\x8e\x92\ \x88\x8a\x8e\x76\x79\x7d\x5e\x63\x69\x47\x4e\x56\x52\x57\x5e\x69\ \x6d\x72\x77\x7c\x7f\x78\x7e\x81\x75\x7a\x7d\x77\x7b\x80\x72\x76\ \x7b\x72\x76\x7b\x72\x76\x7b\x76\x7a\x7f\x7c\x80\x85\x7c\x82\x87\ \x7b\x81\x88\x7c\x83\x8b\x7d\x84\x8b\x7b\x83\x8a\x7b\x83\x8a\x7b\ \x82\x8a\x7c\x85\x8b\x7c\x85\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x85\ \x8c\x7e\x87\x90\x7e\x87\x90\x78\x81\x88\x70\x78\x7e\x71\x79\x7e\ \x77\x7e\x82\x73\x79\x7e\x70\x77\x7b\x79\x80\x84\x6e\x7b\x81\x2b\ \x44\x4e\x00\x04\x06\x09\x0d\x10\x59\x5c\x61\x75\x78\x7c\x7f\x83\ \x87\x84\x89\x8c\x77\x7d\x81\x76\x7c\x80\x85\x8a\x8d\x8f\x93\x97\ \x8f\x94\x98\x8c\x91\x94\x8c\x91\x95\x8e\x93\x96\x93\x97\x9b\x93\ \x98\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\x9e\x9b\x9e\xa3\x9e\xa1\ \xa5\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\xa2\x9b\x9d\xa1\x95\x97\x9b\ \x71\x77\x7a\x73\x77\x7a\x96\x99\x9a\x9a\x9c\x9c\x89\x8b\x8c\x73\ \x77\x7a\x71\x76\x78\x7e\x83\x87\x76\x7b\x7f\x5d\x65\x68\x6a\x73\ \x78\x7e\x84\x87\x82\x86\x87\x69\x6f\x70\x64\x6a\x6b\x7d\x7e\x7e\ \x9c\x9d\x9e\x77\x7a\x7d\x56\x59\x5c\x84\x83\x84\x75\x74\x73\x11\ \x0f\x11\x47\x44\x46\xa9\xa8\xaa\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\ \xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\ \xb1\xb1\xb2\xb3\xb5\xb6\xa7\xa9\xaa\x98\x98\x99\x8d\x8b\x8d\xa7\ \xa6\xa6\xba\xba\xb9\xb3\xb2\xb5\xa1\xa0\xa3\x8f\x8c\x90\x9b\x97\ \x99\xb8\xb5\xb6\xbf\xbd\xbd\xb3\xb2\xb2\x99\x9a\x9a\x8a\x89\x8b\ \x9a\x99\x9a\xbb\xb9\xba\xc1\xbf\xc1\xb5\xb5\xb5\xa2\xa0\xa0\x95\ \x92\x93\x00\x00\x00\xdd\xd6\xd3\xdd\xd5\xd2\xde\xd6\xd3\xdf\xd8\ \xd5\xdf\xd8\xd5\xde\xd7\xd4\xdc\xd6\xd3\xdd\xd5\xd2\xdf\xd8\xd5\ \xe2\xdb\xd8\xe5\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe3\xdd\xda\xe2\ \xdc\xda\xe0\xd9\xd9\xdd\xd6\xd6\xd9\xd2\xd1\xd4\xcd\xcc\xcc\xc4\ \xc4\xbf\xb8\xb8\xaa\xa5\xa3\x8a\x8a\x87\x63\x67\x6a\x3f\x47\x4f\ \x37\x40\x48\x51\x53\x58\x72\x6e\x70\x8a\x85\x84\x98\x95\x95\xa1\ \x9f\x9f\xa6\xa3\xa4\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa5\xa7\xa5\xa4\ \xa6\xa3\xa2\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9e\x9d\x9f\x93\x93\x96\ \x8c\x8d\x91\x8b\x8c\x90\x8b\x8c\x90\x8c\x8d\x91\x85\x88\x8c\x73\ \x77\x7a\x5f\x64\x6a\x51\x57\x5e\x5a\x5f\x64\x6c\x70\x74\x74\x79\ \x7c\x78\x7d\x80\x74\x79\x7b\x75\x79\x7d\x74\x78\x7d\x70\x74\x79\ \x71\x75\x7a\x71\x74\x79\x79\x7d\x83\x7b\x81\x86\x7c\x82\x88\x7e\ \x84\x8a\x7c\x84\x89\x7a\x83\x87\x7b\x83\x89\x7b\x82\x88\x7d\x84\ \x8a\x7d\x85\x8c\x7c\x85\x8c\x7e\x85\x8d\x7c\x83\x8b\x7f\x87\x90\ \x7f\x88\x91\x7c\x85\x8b\x75\x7e\x84\x6f\x78\x7e\x73\x7a\x7f\x79\ \x7f\x84\x74\x7a\x80\x71\x79\x7f\x7c\x83\x88\x67\x79\x81\x25\x3c\ \x44\x16\x27\x2f\x65\x6b\x6f\x7a\x7e\x81\x77\x7d\x7f\x80\x86\x89\ \x82\x88\x8d\x76\x7c\x81\x75\x7a\x7d\x87\x8b\x8e\x8e\x93\x96\x8f\ \x93\x96\x90\x95\x98\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x93\x98\ \x9b\x98\x9c\xa0\x98\x9b\x9e\x99\x9c\xa0\x9b\x9f\xa1\x99\x9d\x9f\ \x9a\x9d\xa0\x9b\x9e\xa2\x9a\x9d\xa0\x97\x99\x9b\x79\x7e\x7f\x6b\ \x6f\x71\x6b\x6e\x70\x56\x59\x5c\x7c\x7e\x80\x86\x88\x89\x7e\x82\ \x85\x97\x9a\x9f\x8a\x8f\x93\x68\x70\x73\x81\x84\x85\xa0\xa0\xa2\ \x6f\x73\x75\x51\x56\x58\x8b\x8e\x8e\x8b\x8d\x8c\x58\x57\x55\x56\ \x54\x54\x95\x96\x96\x8e\x8e\x8f\x5b\x60\x63\x00\x00\x00\x0d\x0e\ \x13\x8b\x8d\x93\xb1\xb0\xb2\xaf\xaf\xb0\xae\xae\xaf\xae\xae\xaf\ \xad\xac\xae\xaf\xae\xb0\xb4\xb3\xb4\xb5\xb4\xb5\xb2\xb1\xb2\xb3\ \xb4\xb5\xb4\xb6\xb7\xb4\xb6\xb6\x9b\x9d\x9e\x8e\x8f\x90\x99\x99\ \x99\xb5\xb3\xb4\xbb\xb8\xba\xae\xab\xae\x9a\x97\x99\x90\x8e\x90\ \xaa\xa7\xa6\xbc\xb9\xb8\xb8\xb6\xb6\xa7\xa5\xa6\x93\x92\x94\x8d\ \x8b\x8b\xb0\xad\xaf\xc1\xbe\xbf\xbf\xbc\xbe\xb1\xad\xae\x00\x00\ \x00\xdf\xd7\xd5\xdf\xd7\xd5\xdf\xd8\xd5\xde\xd7\xd5\xde\xd7\xd4\ \xdf\xd7\xd4\xde\xd7\xd4\xdd\xd5\xd2\xe0\xd8\xd5\xe4\xdc\xd9\xe5\ \xdf\xdc\xe5\xdf\xdc\xe3\xde\xdb\xe2\xdd\xda\xe1\xdb\xd9\xdf\xd8\ \xd7\xdc\xd5\xd5\xd8\xd1\xd1\xd2\xca\xca\xc7\xc0\xc0\xb8\xb2\xb0\ \xa0\x9c\x99\x7d\x7d\x7d\x57\x5b\x61\x3b\x42\x4b\x40\x47\x4f\x5c\ \x5d\x63\x7d\x78\x7a\x90\x8b\x8b\x9c\x99\x99\xa3\xa0\xa2\xa7\xa4\ \xa6\xa7\xa5\xa7\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa4\xa5\xa3\xa2\xa4\ \xa0\x9f\xa2\x9f\x9e\xa0\x99\x98\x9b\x90\x91\x95\x8d\x8e\x92\x8c\ \x8d\x91\x8c\x8d\x91\x8c\x8d\x91\x83\x86\x89\x6b\x71\x74\x51\x59\ \x5f\x52\x59\x60\x60\x66\x6b\x70\x75\x78\x75\x7a\x7d\x77\x7c\x7f\ \x75\x7a\x7d\x73\x77\x7b\x77\x7b\x80\x71\x75\x79\x70\x74\x79\x6f\ \x73\x78\x71\x76\x79\x79\x7f\x83\x7d\x83\x88\x7c\x82\x88\x7c\x83\ \x89\x7b\x82\x87\x7b\x81\x87\x7c\x84\x89\x7d\x85\x8b\x7c\x83\x8a\ \x7c\x84\x8b\x7f\x87\x8f\x7d\x84\x8d\x7e\x85\x8e\x7f\x86\x8f\x80\ \x87\x8e\x7c\x84\x8b\x74\x7d\x84\x6e\x76\x7c\x76\x7c\x82\x7a\x81\ \x87\x72\x7a\x80\x74\x7b\x7f\x7f\x86\x8b\x5d\x6c\x74\x3e\x50\x59\ \x6a\x70\x74\x78\x7e\x81\x6a\x71\x76\x74\x79\x7e\x80\x86\x8b\x84\ \x89\x8e\x76\x7c\x81\x77\x7c\x80\x85\x8a\x8d\x8e\x93\x96\x8f\x94\ \x97\x91\x95\x98\x90\x95\x99\x93\x97\x9a\x92\x96\x99\x97\x9b\x9e\ \x98\x9c\x9f\x99\x9c\x9f\x99\x9d\x9e\x99\x9d\x9e\x9a\x9e\xa1\x9b\ \x9e\xa2\x9b\x9e\xa1\x9c\x9f\xa0\x7b\x7e\x80\x42\x44\x48\x1f\x24\ \x29\x37\x3f\x44\x7e\x80\x82\x9c\x9d\x9e\x9f\xa0\xa4\xa9\xaa\xae\ \xa4\xa6\xaa\x96\x99\x9b\x84\x87\x88\x83\x85\x86\x6f\x73\x75\x67\ \x6c\x6e\x80\x85\x86\x62\x67\x68\x15\x16\x15\x10\x0f\x0f\x76\x74\ \x74\xa6\xa7\xa7\x80\x86\x88\x38\x47\x4d\x6d\x74\x7b\xa3\xa4\xa6\ \xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb0\xb1\xb1\xaf\xaf\xb0\xb2\ \xb2\xb2\xb3\xb3\xb3\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb4\xb5\xb5\xb6\ \xb5\xb3\xb3\xb3\xb3\xb4\xb4\xab\xac\xad\x91\x91\x93\x92\x8f\x91\ \xb1\xae\xaf\xbb\xba\xbb\xb6\xb5\xb7\xa5\xa4\xa5\x8c\x8a\x8b\x9c\ \x98\x99\xb5\xb0\xb1\xb9\xb5\xb6\xb5\xb1\xb2\xa5\xa3\xa4\x8a\x87\ \x88\x99\x94\x96\xc0\xbe\xbe\xc4\xc2\xc2\x00\x00\x00\xdd\xd6\xd3\ \xdc\xd5\xd2\xdd\xd6\xd3\xde\xd7\xd4\xdf\xd9\xd6\xe0\xd9\xd6\xe1\ \xda\xd7\xe2\xdb\xd8\xe2\xdc\xd9\xe4\xde\xdb\xe5\xe0\xdd\xe5\xdf\ \xdc\xe3\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xda\xd5\xd4\ \xd5\xcf\xce\xce\xc7\xc6\xc3\xbd\xbe\xb1\xac\xaa\x93\x90\x8c\x6e\ \x71\x72\x4b\x51\x58\x39\x41\x4b\x4b\x4f\x58\x6d\x6c\x70\x85\x83\ \x83\x95\x93\x93\x9f\x9a\x9c\xa4\xa1\xa3\xa6\xa3\xa5\xa6\xa4\xa6\ \xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9d\ \x9c\x9e\x95\x96\x98\x8d\x8e\x92\x8e\x8f\x93\x8b\x8c\x90\x8e\x8f\ \x93\x8c\x8f\x93\x82\x87\x8a\x68\x70\x74\x4e\x59\x60\x4f\x58\x5f\ \x66\x6d\x71\x71\x76\x79\x77\x7c\x7f\x73\x77\x7c\x76\x7a\x7f\x74\ \x78\x7c\x72\x76\x7b\x71\x75\x7a\x70\x74\x79\x71\x75\x7a\x71\x75\ \x7a\x76\x7b\x80\x7c\x81\x85\x7c\x82\x88\x7c\x82\x88\x7b\x81\x87\ \x7e\x84\x8b\x7b\x83\x88\x7c\x84\x8b\x7b\x82\x89\x7e\x85\x8d\x7e\ \x85\x8d\x7e\x85\x8e\x7f\x87\x8f\x7f\x86\x8f\x7e\x86\x8e\x7e\x86\ \x8d\x7d\x86\x8d\x74\x7c\x82\x6f\x78\x7d\x7c\x83\x8a\x7b\x83\x8a\ \x74\x7c\x81\x70\x75\x7a\x6c\x73\x79\x62\x6a\x72\x6d\x73\x79\x64\ \x6c\x73\x62\x6c\x73\x6e\x75\x7b\x77\x7c\x81\x82\x87\x8a\x83\x89\ \x8d\x75\x7b\x7e\x77\x7c\x7f\x86\x8b\x8e\x8e\x92\x95\x92\x96\x99\ \x92\x95\x99\x95\x98\x9c\x95\x99\x9c\x99\x9d\x9e\x9a\x9e\x9f\x98\ \x9b\x9d\x99\x9d\x9e\x99\x9d\x9e\x9c\x9f\xa2\x9e\xa1\xa5\x9c\x9f\ \xa3\x9c\x9f\xa2\x78\x7f\x81\x40\x4d\x52\x57\x62\x67\x82\x88\x8a\ \x9d\x9f\xa0\x97\x96\x97\x82\x80\x81\xa2\xa2\xa4\xac\xad\xb0\xa8\ \xa9\xac\x9e\xa1\xa4\x7c\x81\x85\x62\x67\x6b\x87\x8a\x8c\x9a\x9d\ \x9e\x53\x5b\x5e\x07\x07\x07\x00\x00\x01\x61\x63\x64\x78\x7b\x7b\ \x5b\x61\x64\x7a\x82\x87\xac\xad\xb2\xb4\xb3\xb5\xb1\xb0\xb2\xb0\ \xb0\xb1\xb1\xb1\xb2\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb4\xb1\xb1\ \xb1\xaf\xaf\xaf\xb6\xb6\xb6\xb6\xb5\xb6\xb6\xb6\xb7\xb4\xb3\xb5\ \xb3\xb2\xb4\xb3\xb4\xb5\xb1\xb2\xb2\x9e\x9d\x9e\x8a\x86\x88\xa2\ \x9f\xa0\xb9\xb7\xb8\xbc\xba\xba\xb2\xb2\xb2\x93\x91\x93\x87\x82\ \x84\xb0\xab\xac\xbd\xb8\xb9\xb9\xb6\xb7\xb1\xaf\xaf\x9a\x98\x99\ \x91\x8f\x90\xb4\xb2\xb2\x00\x00\x00\xdd\xd6\xd3\xdf\xd7\xd4\xdf\ \xd8\xd5\xe0\xda\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdd\xda\xe2\xdd\ \xda\xe5\xdf\xdc\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdb\xe3\xde\xdc\ \xe1\xdc\xdb\xdf\xda\xd9\xdc\xd6\xd6\xd9\xd1\xd1\xd3\xcd\xcc\xca\ \xc4\xc4\xbe\xb8\xb8\xa6\xa1\xa0\x84\x83\x81\x60\x63\x66\x42\x48\ \x51\x3a\x41\x4a\x54\x57\x5e\x76\x74\x76\x8d\x89\x8a\x99\x95\x96\ \xa1\x9d\x9f\xa4\xa0\xa2\xa7\xa4\xa6\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ \xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa3\xa0\x9e\xa1\x9a\x9a\x9c\x92\x93\ \x97\x8f\x90\x94\x8c\x8d\x91\x8a\x8b\x8f\x8d\x8f\x93\x8d\x90\x94\ \x85\x89\x8d\x70\x78\x7b\x64\x6e\x73\x60\x68\x6e\x6f\x74\x79\x73\ \x77\x7c\x75\x79\x7d\x70\x75\x79\x70\x75\x78\x74\x78\x7d\x6f\x74\ \x78\x72\x76\x7b\x6f\x73\x78\x6f\x73\x78\x70\x74\x79\x71\x75\x7a\ \x78\x7e\x83\x7d\x83\x88\x7c\x83\x89\x7c\x82\x89\x7d\x83\x89\x7d\ \x84\x8b\x7c\x84\x8b\x7d\x85\x8b\x7e\x85\x8c\x7f\x86\x8e\x7d\x84\ \x8d\x7f\x87\x8e\x7f\x88\x90\x80\x88\x90\x80\x88\x8f\x81\x89\x90\ \x7a\x82\x89\x71\x79\x7e\x70\x78\x7c\x7a\x81\x86\x7a\x80\x85\x65\ \x6d\x72\x5e\x65\x6b\x76\x7b\x80\x79\x7f\x83\x69\x71\x76\x70\x76\ \x7c\x7d\x84\x87\x75\x7c\x7f\x77\x7c\x81\x85\x8a\x8e\x84\x89\x8c\ \x76\x7b\x7e\x7a\x7f\x82\x8e\x91\x95\x92\x97\x9a\x95\x98\x9c\x94\ \x97\x9b\x95\x99\x9c\x9b\x9e\xa1\x99\x9d\x9e\x99\x9b\x9d\x98\x9b\ \x9d\x99\x9c\xa0\x9d\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\x9f\xa2\xa6\ \x96\x9b\x9e\x8a\x92\x95\x92\x97\x9a\x9c\x9e\xa0\xa3\xa5\xa6\x7b\ \x7d\x7e\x4e\x51\x53\x8e\x8c\x8d\xa3\xa1\xa3\xab\xab\xad\xa7\xa9\ \xaa\x9c\x9f\xa1\x87\x8b\x8f\x7c\x81\x83\x9b\x9d\x9e\x77\x7e\x81\ \x2f\x3c\x41\x3d\x48\x4c\x98\x9b\x9b\x87\x8b\x8c\x50\x5a\x5e\x9e\ \xa2\xa6\xb1\xb1\xb5\xb4\xb2\xb5\xb5\xb4\xb6\xb0\xaf\xb0\xb0\xaf\ \xb0\xaf\xae\xaf\xb0\xb0\xb0\xb3\xb3\xb3\xb2\xb3\xb2\xb0\xb0\xb1\ \xb5\xb4\xb6\xb2\xb1\xb3\xb7\xb6\xb8\xb7\xb6\xb8\xb5\xb4\xb6\xb2\ \xb2\xb3\xb4\xb4\xb5\xb8\xb8\xb9\xad\xab\xad\x93\x92\x94\x92\x91\ \x93\xb1\xb0\xb0\xb9\xb9\xb9\xbb\xba\xbb\xa5\xa3\xa4\x87\x85\x85\ \x9e\x9b\x9b\xbb\xb7\xb7\xbb\xba\xba\xb6\xb3\xb3\xa8\xa6\xa6\x8c\ \x8a\x8b\x00\x00\x00\xe1\xda\xd7\xe2\xdb\xd8\xe1\xdc\xda\xe1\xdc\ \xda\xe3\xdd\xdb\xe3\xde\xda\xe3\xde\xdb\xe4\xdf\xdc\xe5\xe0\xdd\ \xe5\xe0\xde\xe5\xe0\xde\xe3\xde\xdc\xe3\xde\xdc\xe0\xda\xd9\xdf\ \xd8\xd7\xdc\xd4\xd4\xd7\xd2\xd2\xcf\xc9\xc9\xc5\xbe\xbb\xb6\xb0\ \xac\x9b\x97\x95\x77\x78\x79\x53\x5a\x5f\x3c\x44\x4e\x42\x48\x51\ \x5e\x5f\x64\x7c\x79\x7a\x92\x8d\x8d\x9a\x97\x99\xa2\xa0\xa2\xa6\ \xa4\xa6\xa9\xa6\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa0\ \xa1\x9f\x9f\xa0\x9d\x9d\x9f\x98\x98\x99\x91\x92\x96\x8d\x8e\x92\ \x8b\x8d\x92\x8d\x8e\x94\x8d\x90\x94\x8c\x8f\x93\x86\x8b\x8e\x7c\ \x82\x85\x76\x7c\x7f\x72\x77\x7b\x75\x7a\x7e\x75\x7a\x7d\x73\x77\ \x7a\x6b\x70\x74\x67\x6b\x70\x6c\x71\x75\x72\x76\x7a\x6c\x71\x74\ \x6b\x6f\x74\x6b\x6f\x74\x6d\x73\x77\x6f\x76\x7a\x74\x79\x7f\x7a\ \x80\x86\x7a\x81\x87\x7d\x84\x89\x7f\x84\x8a\x7f\x86\x8d\x7d\x85\ \x8b\x7d\x85\x8c\x7e\x85\x8d\x7f\x87\x8e\x7d\x85\x8d\x7d\x85\x8c\ \x7e\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x90\x80\x88\x8f\x7b\ \x83\x89\x72\x7a\x7e\x72\x79\x7e\x7a\x80\x85\x68\x6f\x75\x5c\x64\ \x6b\x75\x7a\x80\x85\x8a\x8f\x7b\x81\x86\x74\x7a\x7f\x7f\x84\x88\ \x83\x89\x8c\x7a\x80\x84\x79\x7f\x83\x86\x8b\x8f\x85\x8a\x8d\x7b\ \x81\x83\x7e\x82\x86\x8d\x91\x94\x94\x97\x9b\x94\x97\x9b\x93\x96\ \x9a\x98\x9b\x9d\x96\x99\x9c\x96\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\ \x9b\x9e\xa2\x9b\x9e\xa2\x9e\xa1\xa5\xa2\xa4\xa9\xa0\xa4\xa6\xa1\ \xa4\xa5\xa0\xa1\xa3\x9f\xa2\xa3\x94\x97\x9a\x4b\x55\x59\x62\x67\ \x69\x80\x80\x81\x6b\x6d\x6d\xa1\x9f\xa1\xad\xac\xae\xac\xac\xad\ \xa7\xa9\xaa\x93\x97\x98\x79\x7d\x7f\x60\x67\x6b\x84\x8b\x8c\x87\ \x8b\x8c\x81\x83\x84\x69\x6f\x72\x75\x7c\x81\xae\xaf\xb2\xb2\xb2\ \xb5\xb4\xb3\xb5\xb5\xb4\xb6\xaf\xaf\xb0\xb2\xb1\xb2\xb2\xb2\xb2\ \xb1\xb1\xb1\xb4\xb4\xb4\xb3\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\ \xb3\xb5\xb3\xb2\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb5\xb6\xb3\xb3\ \xb3\xb8\xb8\xb8\xb9\xb9\xba\xb6\xb6\xb7\x9b\x9b\x9e\x8a\x88\x8a\ \xa5\xa3\xa4\xbc\xbb\xbb\xba\xb8\xb8\xb8\xb7\xb6\x91\x91\x91\x88\ \x85\x85\xb1\xad\xad\xbc\xb8\xb7\xba\xb8\xb7\xb9\xb7\xb7\x00\x00\ \x00\xe2\xdc\xd9\xe2\xdc\xd9\xe3\xdd\xdb\xe4\xde\xdc\xe3\xde\xdd\ \xe5\xe0\xdd\xe6\xe1\xde\xe6\xe1\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\ \xdf\xdd\xe4\xdf\xdd\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xdc\xd5\ \xd5\xd6\xcf\xcf\xcd\xc6\xc6\xc1\xbb\xb9\xaf\xaa\xa7\x90\x8f\x8f\ \x69\x6e\x71\x46\x51\x57\x3a\x43\x4b\x4d\x4f\x58\x6d\x6b\x6e\x86\ \x81\x84\x99\x95\x97\xa0\x9b\x9d\xa5\xa2\xa4\xa8\xa5\xa7\xa7\xa4\ \xa6\xa5\xa4\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9f\xa1\x9d\x9d\x9e\ \x9a\x9b\x9e\x93\x94\x97\x8c\x8e\x91\x89\x8c\x8e\x8a\x8d\x91\x8e\ \x92\x95\x8d\x90\x94\x8b\x8e\x92\x86\x8a\x8e\x84\x89\x8c\x80\x86\ \x89\x7f\x85\x88\x7d\x82\x85\x77\x7b\x80\x67\x6c\x71\x5a\x5f\x64\ \x52\x59\x5f\x61\x64\x69\x6b\x6e\x73\x5c\x5f\x64\x5b\x5e\x63\x61\ \x65\x6a\x6b\x70\x74\x6c\x72\x78\x6d\x73\x79\x76\x7c\x81\x7b\x81\ \x88\x7c\x82\x88\x7e\x84\x8a\x7c\x84\x8a\x7d\x86\x8b\x7e\x86\x8c\ \x7c\x85\x8a\x7c\x84\x8a\x7d\x86\x8b\x81\x89\x90\x81\x89\x90\x7e\ \x87\x8e\x7f\x87\x8e\x81\x89\x90\x80\x87\x8e\x81\x87\x8d\x7d\x83\ \x89\x74\x7a\x7f\x6c\x73\x77\x67\x6e\x73\x67\x6f\x73\x6f\x75\x7a\ \x7d\x82\x86\x86\x8b\x90\x7a\x80\x85\x76\x7b\x80\x83\x87\x8b\x85\ \x8b\x8e\x78\x7d\x81\x7a\x7e\x83\x86\x8a\x8f\x87\x8c\x8f\x7a\x7f\ \x81\x7d\x81\x85\x91\x94\x98\x93\x96\x9a\x96\x99\x9c\x98\x99\x9e\ \x96\x98\x9c\x97\x99\x9d\x97\x99\x9d\x9c\x9f\xa3\x9e\xa1\xa5\x9c\ \x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\xa0\xa3\xa7\x9e\xa1\xa4\x9f\xa2\ \xa5\xa0\xa3\xa4\x9c\xa0\xa2\x78\x80\x84\x6f\x74\x76\x57\x5c\x5d\ \x65\x67\x67\x8e\x89\x89\x93\x90\x91\xaa\xa9\xaa\xad\xae\xaf\xac\ \xad\xae\x9c\x9e\xa0\x76\x7b\x7f\x88\x8b\x8c\xa5\xa5\xa6\x82\x87\ \x87\x4e\x55\x5b\x9d\xa1\xa3\xb1\xb0\xb2\xb3\xb2\xb4\xb7\xb6\xb7\ \xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb2\xb1\xb2\xb1\xb2\xb2\xb2\xb3\ \xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\xb3\xb5\xb3\xb2\xb4\xb8\xb7\ \xb8\xb7\xb6\xb8\xb8\xb7\xb9\xb9\xb9\xba\xba\xb9\xbb\xb6\xb6\xb7\ \xba\xb9\xba\xba\xb9\xbb\xbe\xbd\xbe\xac\xab\xad\x8c\x8b\x8d\x9e\ \x9c\x9c\xb5\xb4\xb3\xbc\xbb\xba\xbd\xbb\xba\xa8\xa7\xa7\x87\x86\ \x84\x9b\x98\x94\xba\xb6\xb4\xbf\xbb\xba\x00\x00\x00\xe4\xde\xdb\ \xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\ \xe0\xde\xe6\xe1\xdf\xe5\xe0\xde\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\ \xdd\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd7\xd6\xd9\xd3\xd2\xd3\xcd\xcd\ \xca\xc5\xc4\xbb\xb7\xb6\xa5\xa2\xa2\x82\x83\x86\x5a\x61\x65\x3b\ \x47\x4d\x3c\x46\x4d\x59\x5c\x61\x79\x76\x78\x8d\x89\x8b\x9b\x98\ \x9a\xa1\x9f\xa1\xa6\xa3\xa6\xa8\xa5\xa7\xa8\xa5\xa7\xa7\xa4\xa6\ \xa6\xa4\xa6\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9b\x9d\x96\x96\x98\x8f\ \x91\x92\x89\x8d\x8f\x88\x8c\x8d\x8a\x8c\x90\x8d\x90\x95\x8d\x90\ \x95\x89\x8d\x91\x86\x8b\x8e\x85\x89\x8e\x85\x8a\x8e\x82\x87\x8c\ \x7f\x84\x89\x7b\x7f\x84\x65\x6a\x70\x41\x49\x51\x38\x40\x48\x50\ \x55\x5c\x63\x67\x6c\x4f\x54\x5b\x33\x38\x40\x54\x58\x5f\x6a\x6e\ \x73\x6f\x73\x78\x6b\x71\x77\x6e\x74\x7a\x78\x7e\x84\x7b\x81\x87\ \x7c\x82\x87\x7d\x84\x89\x7d\x85\x89\x7d\x86\x89\x7d\x86\x89\x7d\ \x85\x8b\x7d\x85\x8b\x82\x8a\x92\x81\x89\x90\x81\x89\x90\x7d\x85\ \x8b\x7d\x85\x8c\x7f\x86\x8d\x83\x88\x90\x82\x88\x90\x7c\x82\x88\ \x64\x6d\x72\x5b\x64\x69\x75\x7a\x7f\x7b\x81\x86\x75\x7b\x80\x7e\ \x83\x87\x89\x8e\x92\x7d\x83\x88\x77\x7d\x82\x82\x87\x8a\x87\x8c\ \x8f\x7c\x81\x85\x7c\x80\x84\x8a\x8e\x92\x89\x8d\x90\x7a\x7e\x82\ \x7d\x80\x84\x91\x94\x96\x96\x98\x9a\x9a\x9c\x9f\x98\x9b\x9d\x96\ \x99\x9d\x96\x99\x9d\x99\x9c\xa0\x9e\xa1\xa5\x9e\xa1\xa5\x9d\xa0\ \xa4\x9e\xa1\xa5\x9f\xa1\xa6\x9f\xa2\xa4\xa0\xa3\xa4\xa1\xa3\xa4\ \xa3\xa6\xa7\xa0\xa2\xa3\x80\x86\x88\x49\x55\x58\x77\x7a\x7b\x6d\ \x6c\x6f\x67\x66\x6a\x99\x98\x99\xa6\xa6\xa6\xaa\xaa\xab\xaa\xab\ \xac\xa2\xa3\xa5\x88\x8c\x8e\x82\x84\x87\x6f\x72\x76\x72\x76\x7a\ \xab\xac\xad\xb0\xb0\xb1\xb3\xb2\xb4\xb3\xb2\xb3\xb3\xb2\xb4\xb4\ \xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb3\xb2\ \xb3\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb9\xb8\xba\xb7\xb6\xb8\ \xb7\xb6\xb8\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xba\xbb\xba\xbc\xb9\ \xb9\xba\xb7\xb7\xb8\xbb\xba\xba\xbc\xbd\xbd\x9b\x9c\x9d\x8f\x8e\ \x8e\xac\xaa\xa8\xb9\xb6\xb4\xbd\xba\xba\xba\xb9\xb9\x96\x95\x93\ \x89\x87\x83\xb0\xac\xab\x00\x00\x00\xe4\xde\xdc\xe4\xde\xdc\xe5\ \xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xde\xe4\xdf\ \xde\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdd\xe0\xdb\xda\ \xde\xd9\xd8\xdc\xd4\xd4\xd7\xd0\xd0\xd1\xcb\xca\xc6\xc0\xc0\xb5\ \xb0\xb1\x98\x96\x97\x75\x77\x79\x50\x57\x5c\x37\x43\x49\x43\x4c\ \x52\x62\x63\x67\x83\x7e\x80\x91\x8c\x8e\x9c\x99\x9a\xa5\xa2\xa4\ \xa7\xa3\xa5\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa3\xa5\xa4\xa3\xa5\xa1\ \xa0\xa2\x9e\x9d\x9f\x9d\x9d\x9f\x93\x95\x96\x8c\x90\x93\x89\x8c\ \x90\x89\x8c\x8f\x8a\x8d\x91\x8a\x8e\x92\x8a\x8f\x92\x87\x8c\x8f\ \x84\x8a\x8e\x82\x88\x8c\x82\x87\x8c\x82\x87\x8b\x7f\x86\x8a\x79\ \x7e\x83\x63\x69\x70\x33\x3f\x49\x22\x2d\x36\x45\x49\x52\x57\x5a\ \x61\x3f\x44\x4e\x2a\x32\x3d\x3d\x43\x4b\x69\x6d\x72\x6e\x73\x79\ \x6d\x73\x79\x6c\x72\x78\x74\x7a\x80\x7a\x80\x86\x7d\x82\x87\x7e\ \x86\x8a\x7e\x84\x89\x7e\x86\x8a\x7c\x85\x89\x7c\x85\x8a\x7f\x87\ \x8c\x80\x88\x8f\x80\x88\x8f\x7f\x87\x8e\x7e\x86\x8c\x7e\x84\x8a\ \x80\x86\x8b\x84\x8a\x90\x86\x8c\x92\x7f\x85\x8a\x67\x70\x74\x60\ \x69\x70\x75\x7a\x7f\x84\x8a\x8f\x7d\x83\x88\x76\x7b\x80\x80\x85\ \x89\x89\x8f\x93\x7e\x85\x88\x7a\x80\x83\x84\x89\x8c\x87\x8c\x8f\ \x7b\x7f\x84\x7b\x7f\x83\x8d\x90\x94\x88\x8c\x8f\x79\x7c\x80\x7d\ \x81\x83\x92\x95\x96\x9a\x9c\x9d\x97\x99\x9c\x96\x98\x9c\x96\x99\ \x9c\x98\x9b\x9f\x9a\x9d\xa1\x9d\xa0\xa4\x9f\xa3\xa7\xa0\xa2\xa6\ \xa1\xa2\xa6\xa2\xa4\xa6\xa5\xa8\xa9\xa4\xa7\xa8\xa3\xa5\xa6\xa6\ \xa8\xa9\xa0\xa3\xa4\x90\x96\x98\x6d\x73\x74\x54\x57\x5a\x70\x70\ \x73\x68\x69\x6d\x7f\x7f\x82\x95\x94\x96\x93\x92\x94\xa5\xa6\xa6\ \xa8\xab\xab\x89\x8d\x8f\x61\x65\x6b\x95\x97\x9a\xac\xac\xae\xae\ \xae\xb0\xb2\xb2\xb3\xb0\xaf\xb1\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\ \xb5\xb5\xb5\xb6\xb8\xb7\xb8\xb7\xb6\xb8\xb7\xb5\xb8\xb4\xb4\xb5\ \xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xba\ \xb9\xbb\xb7\xb6\xb8\xba\xb9\xbb\xbb\xba\xbc\xb8\xb7\xb9\xb7\xb6\ \xb7\xb9\xb9\xb9\xbc\xbc\xbc\xc0\xc1\xc0\xae\xad\xae\x8a\x88\x88\ \xa2\x9e\x9d\xb7\xb4\xb4\xbd\xbb\xbb\xc2\xc0\xbf\xb2\xb1\xb0\x90\ \x8d\x8d\x00\x00\x00\xe5\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe4\xdf\ \xdc\xe4\xde\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xde\xe4\xdf\xde\ \xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd7\xd6\xdc\ \xd4\xd4\xd7\xcf\xcf\xcd\xc5\xc5\xc0\xb9\xb8\xab\xa7\xa4\x8a\x8a\ \x88\x68\x6c\x6c\x46\x4e\x52\x3a\x43\x4a\x4b\x52\x57\x6f\x6f\x71\ \x8b\x85\x87\x97\x92\x93\xa1\x9e\x9e\xa5\xa3\xa3\xa7\xa4\xa6\xa8\ \xa6\xa7\xa6\xa4\xa6\xa3\xa2\xa4\xa2\xa1\xa3\xa1\xa0\xa2\x9e\x9d\ \x9f\x98\x99\x9a\x93\x93\x96\x8b\x8e\x91\x8a\x8d\x91\x8a\x8d\x91\ \x8a\x8d\x91\x8d\x92\x95\x8a\x8e\x92\x87\x8c\x8f\x84\x89\x8c\x84\ \x8a\x8d\x80\x86\x8a\x81\x86\x89\x81\x86\x8a\x73\x79\x7e\x57\x5f\ \x67\x28\x36\x41\x20\x2b\x36\x3c\x42\x4e\x4b\x50\x5a\x2d\x36\x43\ \x2b\x34\x41\x47\x4e\x57\x69\x6d\x72\x6f\x75\x7b\x6d\x73\x7a\x6c\ \x72\x79\x6c\x72\x79\x74\x7a\x7f\x7b\x7f\x84\x7c\x83\x88\x80\x86\ \x8b\x7e\x86\x8a\x7c\x84\x89\x7c\x85\x89\x7d\x87\x8a\x7d\x86\x8a\ \x82\x8a\x90\x80\x88\x8f\x7f\x87\x8e\x80\x87\x8e\x82\x88\x8f\x84\ \x89\x90\x84\x89\x8e\x7b\x80\x85\x6f\x76\x7b\x6d\x76\x7b\x73\x7a\ \x7f\x7b\x80\x85\x86\x8a\x91\x7d\x83\x89\x78\x7e\x83\x81\x87\x8b\ \x89\x8f\x92\x7c\x82\x86\x77\x7d\x81\x86\x8a\x8e\x88\x8c\x8f\x7e\ \x83\x86\x7c\x7f\x83\x8c\x8f\x93\x8e\x92\x94\x7f\x83\x86\x80\x84\ \x87\x92\x94\x96\x97\x9a\x9c\x99\x9b\x9f\x97\x9a\x9c\x9b\x9d\xa1\ \x9b\x9d\xa1\x9c\x9f\xa3\xa0\xa3\xa7\xa2\xa5\xa8\xa1\xa4\xa7\xa3\ \xa7\xa8\xa6\xa9\xab\xa4\xa7\xa8\xa7\xa9\xaa\xa3\xa5\xa6\xa4\xa6\ \xa7\xa4\xa8\xa8\x96\x9c\x9c\x8f\x93\x94\x8a\x8c\x8e\x6a\x6e\x72\ \x5e\x61\x65\x6c\x6c\x6e\x74\x73\x75\x90\x90\x91\xad\xae\xae\xac\ \xae\xae\xa7\xab\xaa\xaa\xaa\xac\xae\xae\xae\xae\xaf\xaf\xae\xad\ \xaf\xae\xad\xaf\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ \xb5\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb9\xb8\xba\xb6\ \xb5\xb7\xb3\xb2\xb4\xb9\xb8\xba\xba\xb9\xbb\xb8\xb7\xb9\xb9\xb8\ \xba\xba\xb9\xbb\xbb\xba\xbc\xb9\xb8\xba\xba\xb9\xba\xbb\xb9\xbb\ \xbd\xbc\xbd\xbd\xbd\xbd\xbf\xbe\xbe\xb9\xb9\xb8\x9d\x9d\x9d\x95\ \x92\x93\xab\xa9\xa9\xbf\xbc\xbc\xc4\xc2\xc1\xbe\xbc\xbd\x00\x00\ \x00\xe4\xdd\xdb\xe4\xdd\xdb\xe5\xdf\xdc\xe5\xde\xdb\xe4\xdf\xdc\ \xe4\xdf\xdd\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdc\xe2\ \xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd6\xd5\xd9\xd2\xd1\xd3\xcc\ \xcb\xc9\xc1\xbf\xbb\xb4\xb0\xa2\x9e\x98\x7e\x7f\x7b\x5a\x60\x60\ \x3d\x46\x4c\x3c\x45\x4c\x59\x5c\x61\x79\x77\x79\x90\x8b\x8c\x9a\ \x96\x97\xa2\x9f\xa1\xa4\xa1\xa3\xa7\xa4\xa6\xa7\xa5\xa6\xa6\xa4\ \xa6\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9d\x9c\x9e\x97\x98\x99\ \x91\x92\x95\x89\x8c\x90\x86\x8a\x8e\x87\x8a\x8e\x8b\x8e\x92\x8b\ \x8f\x93\x8a\x8e\x92\x88\x8d\x90\x84\x8a\x8d\x84\x89\x8e\x81\x87\ \x8b\x81\x86\x89\x81\x87\x8b\x70\x79\x7f\x49\x57\x60\x1f\x2e\x3a\ \x2d\x38\x44\x3d\x46\x51\x40\x4a\x55\x21\x2c\x38\x2e\x36\x41\x51\ \x58\x5f\x6a\x6f\x74\x71\x77\x7d\x6c\x73\x79\x6b\x72\x78\x6b\x71\ \x77\x6f\x74\x7a\x78\x7d\x82\x7c\x82\x87\x7e\x84\x89\x7d\x82\x87\ \x7e\x85\x8a\x7e\x85\x8b\x7e\x87\x8a\x7d\x86\x8b\x7e\x87\x8d\x7f\ \x87\x8d\x7d\x84\x89\x7c\x82\x87\x81\x87\x8c\x84\x8a\x90\x84\x89\ \x8e\x7e\x83\x88\x7b\x81\x85\x7e\x83\x88\x7e\x84\x89\x75\x7b\x81\ \x7a\x7f\x84\x86\x8b\x90\x7d\x84\x89\x74\x79\x7e\x80\x85\x88\x88\ \x8e\x91\x7e\x84\x87\x7a\x7f\x82\x87\x8b\x8e\x89\x8d\x90\x7e\x83\ \x86\x7c\x80\x84\x8e\x90\x93\x8b\x8e\x8f\x81\x86\x86\x7f\x82\x83\ \x8f\x91\x92\x9a\x9d\x9e\x9c\x9e\xa0\x9b\x9c\x9f\x9d\x9f\xa2\x9e\ \xa1\xa4\xa1\xa2\xa6\xa1\xa3\xa6\xa2\xa4\xa7\xa5\xa7\xa9\xa4\xa6\ \xa9\xa4\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa4\xa6\xa6\xa7\xa9\xa9\ \xa9\xaa\xaa\xa6\xa8\xa9\x8f\x92\x95\x65\x6a\x6f\x44\x4a\x50\x65\ \x66\x6a\x62\x62\x66\x7e\x7f\x81\xad\xad\xad\xb2\xb1\xb1\xb0\xb1\ \xb1\xae\xad\xae\xae\xae\xad\xb0\xb0\xb0\xac\xac\xad\xaf\xaf\xb0\ \xb5\xb4\xb6\xb2\xb1\xb3\xb1\xb0\xb2\xb4\xb3\xb5\xb6\xb6\xb8\xb5\ \xb4\xb6\xb7\xb6\xb8\xb7\xb7\xb9\xbb\xba\xbc\xb7\xb6\xb8\xb5\xb4\ \xb6\xba\xb9\xbb\xbd\xbc\xbf\xba\xb9\xbb\xbc\xbb\xbd\xbb\xba\xbc\ \xb7\xb6\xb8\xba\xb9\xbb\xbd\xbc\xbd\xbc\xbb\xbb\xbd\xbd\xbd\xbd\ \xbd\xbd\xb9\xb8\xb8\xbb\xba\xba\xc1\xc0\xc1\xae\xad\xae\x90\x8f\ \x91\x9f\x9c\x9c\xb3\xaf\xae\xc3\xbf\xc0\x00\x00\x00\xe4\xde\xdb\ \xe4\xde\xdb\xe5\xde\xdb\xe5\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\ \xdf\xdd\xe4\xdf\xde\xe3\xde\xdb\xe3\xde\xdb\xe2\xdd\xdc\xe1\xda\ \xda\xde\xd9\xd8\xdb\xd5\xd4\xd6\xcf\xcc\xcf\xc7\xc4\xc5\xbd\xba\ \xb2\xac\xaa\x95\x92\x8e\x71\x73\x71\x4d\x55\x57\x3a\x42\x49\x45\ \x4a\x51\x66\x67\x6a\x80\x7d\x7f\x93\x8e\x90\x9e\x9b\x9e\xa3\xa2\ \xa1\xa4\xa2\xa2\xa7\xa6\xa6\xa7\xa5\xa6\xa4\xa4\xa4\xa3\xa2\xa4\ \xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9b\x9c\x94\x95\x97\x8f\x90\x94\x8a\ \x8c\x90\x88\x8b\x8f\x89\x8b\x8f\x89\x8d\x91\x88\x8b\x90\x88\x8b\ \x90\x86\x8a\x8f\x84\x88\x8c\x82\x87\x8c\x80\x87\x8b\x80\x86\x8a\ \x7f\x84\x89\x6d\x76\x7c\x44\x55\x5f\x24\x34\x40\x39\x44\x4f\x44\ \x4c\x56\x32\x3e\x4a\x23\x30\x3d\x38\x41\x4a\x63\x69\x6d\x6b\x70\ \x76\x70\x75\x7b\x70\x76\x7b\x6e\x74\x7a\x6e\x74\x79\x6c\x72\x77\ \x73\x79\x7d\x7c\x82\x85\x80\x86\x8b\x7e\x84\x89\x7f\x85\x8a\x7f\ \x85\x8a\x7f\x87\x8b\x7f\x87\x8e\x7e\x86\x8d\x7d\x85\x8a\x74\x79\ \x7e\x75\x7a\x7f\x7d\x81\x86\x84\x88\x8d\x85\x8a\x8e\x83\x89\x8e\ \x82\x88\x8c\x85\x8b\x90\x89\x8f\x95\x81\x89\x8f\x79\x7e\x83\x7e\ \x83\x88\x88\x8d\x92\x7d\x83\x88\x77\x7d\x80\x84\x89\x8c\x8c\x91\ \x94\x80\x85\x88\x7c\x81\x84\x88\x8c\x8d\x8b\x8f\x91\x7f\x82\x86\ \x7a\x7d\x80\x8b\x8d\x8f\x91\x94\x95\x86\x8a\x8b\x81\x85\x86\x8e\ \x91\x92\x9a\x9c\x9e\x9c\x9e\x9f\x9e\xa0\xa1\xa0\xa2\xa3\xa1\xa3\ \xa5\xa1\xa3\xa5\xa3\xa4\xa8\xa3\xa6\xa7\xa2\xa6\xa6\xa4\xa6\xa7\ \xa5\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa8\xaa\xaa\xa5\xa7\xa7\xa7\ \xa9\xaa\xa0\xa2\xa4\x7d\x84\x87\x6c\x73\x77\x6f\x71\x76\x52\x56\ \x5c\x86\x88\x8c\xad\xad\xad\xb1\xb1\xb1\xaf\xaf\xaf\xb0\xb0\xb0\ \xb1\xb1\xb1\xb1\xb1\xb2\xaf\xb0\xb1\xb2\xb1\xb3\xb3\xb3\xb5\xb0\ \xaf\xb1\xb3\xb2\xb4\xb7\xb6\xb8\xb9\xb9\xba\xb7\xb7\xb9\xb8\xb7\ \xb9\xba\xba\xbc\xbc\xbb\xbd\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\ \xb9\xb8\xbb\xb7\xb6\xb8\xba\xb9\xbb\xba\xb8\xba\xba\xba\xbc\xbd\ \xbc\xbe\xbd\xbc\xbe\xba\xba\xba\xbd\xbc\xbd\xbe\xbd\xbe\xbc\xbb\ \xbc\xbb\xba\xbc\xbd\xbc\xbe\xc1\xc0\xc1\xbc\xbb\xbc\xa3\xa2\xa4\ \x96\x95\x96\xa5\xa4\xa5\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe5\ \xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\ \xde\xe3\xde\xdc\xe3\xde\xdb\xe1\xdc\xdb\xe0\xda\xd9\xde\xd8\xd8\ \xda\xd3\xd0\xd5\xce\xcb\xcd\xc6\xc3\xbf\xb8\xb7\xa9\xa5\xa4\x89\ \x89\x87\x63\x69\x69\x43\x4c\x50\x3d\x44\x4b\x53\x55\x5b\x72\x70\ \x72\x8a\x85\x87\x99\x94\x96\xa0\x9d\x9f\xa4\xa2\xa2\xa6\xa4\xa4\ \xa8\xa8\xa8\xa6\xa6\xa6\xa5\xa5\xa6\xa3\xa2\xa4\xa1\xa0\xa2\x9e\ \x9d\x9f\x98\x98\x9a\x90\x92\x95\x8c\x8d\x91\x8a\x8b\x8f\x8a\x8b\ \x8f\x8a\x8d\x91\x89\x8b\x8f\x87\x8a\x8e\x87\x8a\x8f\x86\x8a\x8e\ \x84\x88\x8c\x83\x87\x8c\x82\x87\x8c\x7f\x84\x89\x7e\x83\x88\x71\ \x79\x7f\x4f\x5e\x67\x3a\x48\x54\x45\x4e\x58\x54\x5b\x65\x2f\x3c\ \x47\x28\x39\x45\x41\x4c\x55\x67\x6d\x73\x70\x75\x7c\x70\x75\x7a\ \x74\x79\x7e\x6f\x75\x7a\x6f\x75\x7a\x6e\x73\x78\x6d\x72\x77\x74\ \x79\x7d\x7d\x83\x87\x7e\x84\x89\x7f\x85\x8a\x80\x86\x8b\x80\x86\ \x8b\x81\x88\x8f\x80\x88\x8e\x7a\x80\x85\x6e\x74\x79\x70\x76\x7b\ \x7b\x80\x85\x83\x88\x8d\x86\x8c\x90\x86\x8c\x91\x85\x8b\x8f\x87\ \x8d\x92\x8a\x91\x96\x88\x90\x95\x80\x88\x8d\x7a\x81\x86\x81\x86\ \x8b\x87\x8c\x91\x81\x87\x8b\x7c\x82\x85\x85\x89\x8d\x8b\x90\x93\ \x83\x89\x8b\x7d\x82\x85\x88\x8b\x8e\x8b\x8e\x90\x7f\x83\x85\x7d\ \x81\x83\x8e\x91\x93\x96\x98\x9a\x89\x8d\x8f\x81\x85\x85\x8f\x92\ \x93\x9c\x9e\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa3\xa4\xa0\xa2\xa3\ \xa0\xa2\xa5\xa2\xa5\xa6\xa3\xa6\xa6\xa5\xa7\xa8\xa6\xa8\xa9\xa5\ \xa7\xa9\xa7\xa9\xaa\xa7\xa9\xaa\xa7\xa9\xaa\xa6\xa8\xa9\xa9\xab\ \xac\xaa\xac\xad\x9e\xa0\xa1\x69\x6e\x71\x6a\x70\x73\x9d\x9e\x9f\ \xa2\xa2\xa3\xad\xad\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb4\xb3\xb4\xb1\ \xb0\xb1\xb3\xb3\xb5\xb7\xb6\xb8\xb2\xb2\xb4\xb2\xb1\xb4\xb6\xb5\ \xb7\xb8\xb7\xb9\xb9\xb8\xbb\xb8\xb8\xba\xb7\xb7\xb9\xba\xb9\xbb\ \xba\xb9\xbb\xb8\xb7\xb9\xb8\xb7\xba\xbb\xba\xbc\xb9\xb8\xbb\xb9\ \xb8\xba\xba\xb9\xbb\xbb\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xba\xba\ \xba\xbb\xbb\xbb\xbc\xbc\xbc\xbc\xbb\xbc\xc0\xbe\xc0\xbf\xbe\xc0\ \xbe\xbc\xbe\xc0\xbe\xc0\xc1\xbf\xc1\xc2\xc0\xc2\xb5\xb4\xb6\x9d\ \x9c\x9e\x00\x00\x00\xe4\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe5\xdf\ \xdc\xe4\xdf\xdc\xe4\xde\xdb\xe4\xde\xdc\xe3\xde\xdc\xe3\xde\xdb\ \xe2\xdd\xdb\xe1\xdc\xda\xde\xda\xd8\xdd\xd7\xd6\xd9\xd2\xcf\xd3\ \xcc\xc8\xc8\xc1\xbf\xb9\xb4\xb4\x9f\x9d\x9c\x7b\x7d\x7d\x59\x5e\ \x61\x3f\x47\x4e\x41\x48\x50\x5f\x60\x65\x7e\x7c\x7e\x90\x8b\x8d\ \x9d\x97\x99\xa1\x9e\xa0\xa5\xa3\xa3\xa7\xa5\xa6\xa6\xa6\xa7\xa5\ \xa5\xa5\xa4\xa4\xa4\xa1\xa1\xa3\x9f\x9e\xa0\x9c\x9b\x9d\x94\x94\ \x97\x8e\x8f\x93\x87\x89\x8e\x86\x88\x8c\x89\x8b\x8f\x8b\x8d\x91\ \x88\x89\x8d\x86\x88\x8c\x86\x89\x8e\x86\x8a\x8f\x85\x89\x8d\x84\ \x87\x8c\x83\x87\x8c\x80\x86\x8a\x7e\x84\x88\x74\x7c\x81\x63\x6e\ \x75\x5a\x65\x6e\x5a\x63\x6b\x5f\x67\x6e\x43\x4f\x59\x39\x47\x51\ \x53\x5a\x63\x6b\x6e\x75\x72\x77\x7d\x71\x75\x7b\x73\x77\x7c\x70\ \x75\x7b\x6d\x73\x78\x6f\x74\x79\x6d\x71\x76\x6d\x71\x76\x79\x7e\ \x83\x7e\x84\x89\x7f\x85\x8a\x80\x87\x8c\x81\x88\x8c\x81\x86\x8c\ \x7f\x85\x8b\x75\x7b\x80\x6e\x74\x79\x73\x78\x7d\x7f\x84\x89\x83\ \x88\x8e\x84\x89\x8e\x85\x8b\x90\x87\x8d\x91\x88\x8e\x93\x87\x8d\ \x92\x8a\x8f\x95\x89\x90\x95\x81\x88\x8d\x7a\x7f\x84\x81\x85\x89\ \x8a\x8e\x93\x83\x88\x8c\x7a\x80\x83\x84\x87\x8b\x8e\x92\x94\x84\ \x89\x8b\x7d\x81\x85\x89\x8c\x8e\x90\x93\x95\x85\x89\x8c\x7c\x7f\ \x83\x89\x8c\x8d\x95\x97\x9a\x8b\x8f\x91\x82\x86\x88\x8d\x8f\x92\ \x9a\x9d\x9e\x9f\xa2\xa2\x9e\xa0\xa1\x9f\xa1\xa2\xa2\xa4\xa5\xa2\ \xa3\xa6\xa1\xa2\xa5\xa3\xa5\xa7\xa6\xa8\xa9\xa6\xa8\xa9\xa9\xab\ \xac\xa9\xab\xac\xa9\xaa\xab\xa8\xa9\xaa\xab\xac\xad\xb1\xb1\xb2\ \xa0\xa1\xa2\x84\x87\x89\x87\x8a\x8b\x83\x85\x85\x78\x79\x79\x96\ \x96\x96\xaf\xaf\xaf\xb0\xb0\xb0\xb1\xb0\xb2\xb0\xaf\xb0\xb4\xb3\ \xb5\xb6\xb6\xb8\xb1\xb1\xb4\xb3\xb1\xb4\xb5\xb4\xb7\xb2\xb1\xb5\ \xb6\xb5\xb9\xb9\xb9\xbc\xb9\xb9\xbb\xb9\xb8\xba\xb9\xb8\xba\xba\ \xb9\xbb\xba\xba\xbb\xbb\xba\xbc\xb9\xb8\xbb\xbb\xba\xbc\xbc\xbb\ \xbd\xbc\xbb\xbd\xba\xb9\xbb\xb9\xb8\xb9\xb9\xb9\xb9\xbe\xbe\xbe\ \xbe\xbe\xbe\xbb\xba\xbb\xbe\xbd\xbe\xc0\xbe\xc0\xc0\xbd\xbf\xc0\ \xbe\xbf\xc1\xbe\xc0\xbf\xbd\xbf\xc1\xbf\xc1\xc1\xc1\xc2\x00\x00\ \x00\xe4\xdd\xda\xe4\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe2\xde\xdb\ \xe4\xde\xdb\xe5\xde\xdb\xe3\xdd\xda\xe3\xde\xda\xe2\xdc\xd9\xe1\ \xdb\xd8\xdf\xd9\xd7\xdb\xd5\xd2\xd6\xcf\xca\xd0\xc9\xc7\xc3\xbc\ \xbc\xb0\xab\xac\x92\x91\x90\x6f\x72\x73\x50\x56\x5b\x3f\x46\x4e\ \x4b\x50\x57\x6a\x69\x6d\x85\x82\x84\x95\x91\x93\x9f\x9b\x9d\xa4\ \xa1\xa2\xa6\xa4\xa5\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa5\xa6\xa5\xa4\ \xa5\xa0\xa0\xa1\x9d\x9c\x9e\x9b\x9b\x9d\x91\x92\x95\x8a\x8c\x90\ \x85\x87\x8c\x85\x86\x8a\x82\x83\x87\x7e\x80\x84\x7e\x7f\x83\x82\ \x84\x88\x86\x89\x8d\x85\x88\x8c\x85\x89\x8e\x84\x88\x8d\x83\x88\ \x8d\x81\x87\x8c\x80\x85\x8b\x7a\x7f\x85\x71\x79\x7f\x6f\x77\x7d\ \x6f\x76\x7c\x6c\x74\x78\x5e\x68\x6e\x55\x5e\x65\x5d\x61\x68\x6b\ \x6e\x73\x6d\x70\x75\x73\x76\x7c\x6f\x72\x77\x6b\x70\x75\x6c\x72\ \x77\x6f\x73\x78\x71\x75\x7a\x6e\x72\x77\x72\x77\x7c\x7a\x80\x85\ \x7f\x85\x8a\x7e\x85\x8a\x82\x87\x8c\x80\x86\x8b\x7c\x82\x87\x71\ \x77\x7c\x6f\x75\x7a\x79\x7e\x82\x83\x88\x8d\x84\x89\x8f\x85\x89\ \x8e\x86\x8b\x90\x87\x8d\x92\x89\x8e\x93\x88\x8e\x92\x89\x8f\x94\ \x8b\x91\x96\x8b\x91\x96\x81\x87\x8c\x79\x7f\x84\x81\x86\x8a\x8a\ \x8f\x93\x83\x89\x8d\x7c\x81\x84\x87\x8b\x8d\x91\x94\x97\x88\x8d\ \x90\x7d\x81\x84\x85\x89\x8c\x90\x94\x96\x85\x88\x8d\x7d\x80\x83\ \x89\x8b\x8e\x99\x9c\x9d\x90\x93\x95\x82\x86\x88\x87\x8b\x8c\x98\ \x9a\x9b\x9f\xa1\xa2\xa2\xa4\xa5\xa5\xa7\xa7\xa2\xa3\xa7\xa0\xa0\ \xa5\xa3\xa5\xa6\xa5\xa7\xa8\xa4\xa6\xa7\xa8\xaa\xab\xaa\xac\xad\ \xaa\xab\xac\xa9\xa9\xab\xad\xac\xae\xaf\xaf\xb1\xa4\xa6\xa7\x99\ \x9c\x9d\x84\x88\x89\x6c\x70\x72\x5f\x63\x66\x75\x77\x78\xab\xac\ \xab\xb1\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb0\xb1\xb3\xb1\xb3\xb4\ \xb0\xb1\xb3\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb0\xb3\xb6\xb4\xb7\xb7\ \xb6\xb8\xba\xb9\xbb\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbc\ \xbe\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\ \xbd\xbc\xbe\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbe\xbf\xbe\xc0\xbe\ \xbd\xbf\xbc\xbc\xbd\xbe\xbd\xbf\xc0\xbe\xc1\xc3\xc2\xc3\xc3\xc0\ \xc2\xc1\xbf\xc1\xbf\xbd\xbf\xc2\xc2\xc3\x00\x00\x00\xe5\xde\xdb\ \xe5\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe5\ \xde\xdb\xe4\xde\xda\xe3\xde\xdb\xe2\xdb\xd8\xdf\xd9\xd6\xde\xd6\ \xd6\xd9\xd2\xce\xd3\xcd\xc8\xcb\xc5\xc3\xbe\xb7\xb7\xa7\xa2\xa3\ \x86\x85\x86\x62\x67\x6a\x46\x4d\x55\x40\x46\x4f\x57\x59\x5f\x76\ \x73\x76\x8b\x87\x89\x9a\x95\x97\x9f\x9b\x9d\xa5\xa2\xa4\xa6\xa3\ \xa6\xa7\xa4\xa6\xa7\xa5\xa7\xa3\xa3\xa4\xa3\xa2\xa4\xa2\xa1\xa3\ \x9f\x9d\x9f\x99\x9a\x9c\x8f\x91\x94\x88\x89\x8e\x83\x84\x89\x82\ \x83\x87\x77\x79\x7b\x6b\x6e\x72\x69\x6c\x6f\x76\x76\x7b\x82\x84\ \x88\x83\x87\x8c\x82\x86\x8b\x81\x85\x8a\x82\x87\x8c\x81\x87\x8c\ \x80\x86\x8c\x7c\x82\x88\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\x77\ \x7d\x82\x6d\x74\x79\x62\x68\x6e\x55\x5a\x61\x5e\x62\x68\x66\x69\ \x6e\x6c\x70\x74\x64\x67\x6c\x61\x64\x69\x68\x6c\x70\x6d\x72\x76\ \x70\x74\x79\x6f\x75\x7a\x6b\x72\x76\x71\x77\x7c\x7e\x83\x88\x7e\ \x83\x89\x81\x87\x8c\x7f\x85\x8a\x78\x7d\x82\x6f\x75\x7a\x72\x77\ \x7b\x7f\x83\x87\x86\x8a\x8f\x87\x8c\x91\x87\x8b\x90\x87\x8b\x90\ \x86\x8b\x90\x88\x8d\x91\x87\x8d\x90\x89\x8f\x93\x8d\x91\x96\x8f\ \x94\x99\x8a\x91\x96\x83\x8a\x8f\x7d\x82\x87\x83\x87\x8c\x8a\x90\ \x94\x84\x8a\x8d\x7e\x82\x85\x89\x8c\x90\x92\x96\x9a\x86\x8a\x8d\ \x7c\x81\x84\x85\x88\x8b\x91\x94\x96\x8c\x8f\x92\x81\x83\x87\x8a\ \x8c\x8e\x99\x9c\x9c\x92\x94\x96\x84\x88\x89\x87\x8a\x8b\x97\x9a\ \x9b\xa3\xa5\xa7\xa5\xa7\xa9\xa4\xa6\xa8\xa4\xa6\xa8\xa4\xa5\xa7\ \x9f\xa0\xa1\xa2\xa4\xa5\xa5\xa6\xa7\xa9\xaa\xac\xa9\xa9\xaa\xa9\ \xa9\xab\xad\xab\xad\xaf\xae\xb0\xae\xae\xb0\xaa\xab\xac\x95\x99\ \x9a\x7e\x83\x86\x5c\x63\x68\x70\x76\x78\xa9\xaa\xab\xaf\xb1\xb2\ \xb2\xb1\xb3\xb5\xb4\xb6\xb1\xb3\xb4\xb0\xb2\xb3\xb0\xb2\xb3\xb2\ \xb3\xb5\xb3\xb4\xb5\xb5\xb5\xb6\xb8\xb6\xb8\xb7\xb6\xb8\xba\xb9\ \xbb\xbb\xba\xbc\xb9\xb8\xba\xb9\xb8\xba\xbd\xbc\xbe\xbc\xbb\xbd\ \xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbc\ \xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbf\xbe\xc0\xc1\xc1\xc2\xbf\xbe\ \xc0\xc1\xc0\xc2\xc0\xbf\xc1\xc4\xc1\xc3\xc3\xc1\xc2\xc2\xc1\xc2\ \xbf\xbd\xbf\xbe\xbd\xbe\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe4\ \xde\xdb\xe4\xde\xdb\xe4\xdf\xdc\xe4\xde\xdc\xe3\xdd\xdb\xe3\xdd\ \xd9\xe3\xdc\xd9\xe1\xda\xd6\xde\xd8\xd5\xdb\xd6\xd3\xd9\xd2\xcf\ \xd0\xca\xc6\xc7\xc0\xbe\xb8\xb2\xb1\x9c\x98\x98\x78\x79\x7b\x55\ \x5c\x60\x3d\x44\x4c\x44\x47\x50\x61\x61\x66\x7f\x7a\x7d\x92\x8c\ \x8e\x9a\x95\x97\xa0\x9b\x9d\xa5\xa2\xa5\xa7\xa3\xa6\xa7\xa4\xa6\ \xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa1\xa2\xa0\xa0\xa1\x9d\x9c\x9e\x94\ \x94\x98\x8c\x8d\x91\x86\x87\x8c\x80\x81\x85\x80\x81\x84\x70\x72\ \x73\x58\x5d\x60\x4f\x55\x59\x5f\x61\x65\x7d\x7f\x83\x84\x87\x8c\ \x82\x85\x8a\x83\x87\x8c\x80\x85\x8a\x7f\x85\x8a\x7f\x86\x8b\x7d\ \x83\x89\x7d\x82\x87\x7b\x81\x86\x7b\x81\x86\x7b\x81\x86\x76\x7c\ \x81\x63\x68\x6d\x47\x4d\x55\x38\x3d\x45\x56\x5a\x61\x63\x65\x6a\ \x51\x53\x5b\x46\x4a\x52\x57\x5a\x62\x69\x6f\x74\x6d\x73\x79\x72\ \x78\x7d\x6e\x74\x7a\x6d\x72\x78\x75\x7a\x7f\x7c\x83\x87\x7e\x85\ \x89\x80\x85\x8a\x74\x78\x7e\x6e\x72\x77\x77\x7c\x80\x82\x87\x8b\ \x85\x8a\x8e\x86\x8a\x8f\x86\x8b\x90\x88\x8c\x90\x88\x8c\x91\x88\ \x8c\x91\x8a\x8f\x93\x8c\x90\x95\x8c\x90\x95\x90\x94\x99\x8d\x93\ \x98\x8d\x92\x96\x85\x89\x8f\x7d\x81\x86\x84\x88\x8c\x8d\x91\x95\ \x86\x8b\x8f\x7f\x83\x87\x89\x8c\x90\x94\x97\x9b\x88\x8d\x90\x7d\ \x81\x85\x84\x87\x8a\x93\x96\x99\x8d\x90\x94\x82\x85\x88\x88\x8a\ \x8b\x99\x9b\x9c\x98\x9b\x9b\x88\x8c\x8d\x87\x8b\x8c\x97\x9a\x9c\ \xa4\xa6\xa7\xa5\xa6\xa7\xa6\xa8\xa9\xa5\xa6\xa8\xa1\xa1\xa4\xa1\ \xa3\xa5\xa4\xa5\xa5\xa7\xa7\xaa\xa8\xa9\xaa\xa9\xab\xac\xad\xad\ \xaf\xaf\xaf\xb1\xb1\xb0\xb2\xad\xad\xaf\xa7\xaa\xaa\x9a\x9e\x9f\ \x88\x8e\x91\x9a\x9e\xa1\xaf\xaf\xb1\xaf\xb1\xb2\xb2\xb1\xb3\xb5\ \xb4\xb6\xb4\xb4\xb6\xb2\xb4\xb5\xb1\xb3\xb4\xb2\xb4\xb5\xb2\xb4\ \xb5\xb8\xb7\xb9\xb8\xb7\xb9\xb7\xb6\xb8\xb9\xb8\xba\xbc\xbb\xbd\ \xba\xb9\xbb\xb9\xb8\xba\xbb\xba\xbb\xbc\xbb\xbd\xb9\xb9\xba\xbb\ \xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc1\ \xc2\xbe\xbe\xbf\xbc\xbb\xbd\xc0\xbf\xc1\xc0\xbf\xc1\xc1\xc0\xc2\ \xbf\xbf\xc0\xc4\xc2\xc3\xbe\xbb\xbc\xbd\xbc\xbd\xbf\xbe\xbf\xbf\ \xbf\xbf\x00\x00\x00\xe5\xde\xdb\xe3\xde\xdb\xe4\xdf\xdb\xe3\xde\ \xdb\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe3\xdd\xda\xe1\xdc\xd9\ \xe0\xda\xd7\xdd\xd8\xd5\xdb\xd5\xd2\xd5\xce\xcb\xcc\xc6\xc1\xc2\ \xbb\xb8\xaf\xa8\xa6\x8e\x8b\x8a\x6a\x6e\x70\x4a\x53\x59\x3f\x46\ \x4f\x4f\x51\x59\x6f\x6c\x70\x87\x82\x83\x97\x92\x93\x9e\x99\x9a\ \xa4\x9f\xa1\xa5\xa2\xa4\xa7\xa4\xa5\xa5\xa3\xa5\xa3\xa3\xa5\xa2\ \xa1\xa3\xa1\xa0\xa2\x9d\x9d\xa0\x98\x98\x9c\x92\x92\x96\x8a\x8b\ \x8f\x83\x84\x88\x76\x77\x7a\x6e\x70\x72\x6a\x6b\x6d\x59\x5d\x60\ \x4e\x55\x58\x56\x5a\x5d\x77\x79\x7d\x81\x84\x89\x80\x84\x89\x81\ \x85\x8a\x80\x85\x8b\x81\x85\x8b\x7f\x84\x8a\x7e\x84\x89\x7c\x82\ \x87\x7c\x81\x86\x7b\x80\x85\x7c\x82\x87\x7a\x7f\x84\x5e\x64\x69\ \x39\x42\x4a\x25\x2e\x36\x46\x4b\x51\x59\x5b\x61\x35\x3c\x43\x1b\ \x26\x2d\x40\x46\x4e\x69\x6e\x75\x6f\x76\x7c\x70\x75\x7a\x71\x77\ \x7c\x6e\x74\x79\x6c\x73\x78\x76\x7c\x80\x7c\x81\x84\x75\x7a\x7e\ \x65\x69\x6d\x68\x6c\x70\x78\x7c\x80\x83\x88\x8b\x84\x89\x8d\x83\ \x87\x8d\x86\x8a\x8f\x88\x8c\x91\x88\x8c\x91\x86\x8a\x90\x8a\x8e\ \x93\x8b\x8f\x94\x8f\x93\x97\x8d\x91\x96\x8e\x92\x97\x8f\x93\x98\ \x8f\x93\x99\x86\x8b\x90\x80\x84\x89\x83\x86\x8b\x8d\x92\x96\x89\ \x8d\x91\x81\x85\x89\x89\x8c\x90\x94\x98\x9b\x8b\x8f\x92\x81\x84\ \x88\x84\x87\x89\x97\x99\x9c\x94\x97\x99\x85\x89\x8a\x88\x8a\x8b\ \x96\x98\x99\x9a\x9c\x9d\x8a\x8e\x8e\x83\x87\x88\x97\x99\x9a\xa6\ \xa6\xa8\xa5\xa7\xa9\xa4\xa6\xa8\xa2\xa2\xa3\xa0\xa1\xa3\xa5\xa5\ \xa6\xa7\xa6\xa8\xa8\xa9\xab\xab\xac\xae\xac\xac\xae\xab\xac\xae\ \xac\xac\xae\xae\xaf\xb0\xae\xb0\xb1\xac\xad\xaf\xac\xae\xaf\xaf\ \xb0\xb1\xb1\xb2\xb3\xaf\xaf\xb1\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb4\ \xb5\xb4\xb4\xb6\xb5\xb5\xb7\xb3\xb4\xb5\xb3\xb4\xb6\xb7\xb6\xb8\ \xb7\xb6\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xba\ \xba\xbb\xba\xba\xbb\xbb\xbb\xbc\xbb\xbb\xbc\xbc\xbc\xbe\xbd\xbc\ \xbe\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xbf\xbf\xbe\xbf\xbd\xbd\xbe\ \xbc\xbb\xbd\xba\xb8\xba\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xc2\xc2\xc3\ \xc2\xc2\xbd\xbc\xbd\xc0\xbf\xc0\xbe\xbe\xbe\xc1\xc0\xc2\x00\x00\ \x00\xe5\xdf\xdc\xe3\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xde\xdb\ \xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xda\xe1\xdc\xd9\xdf\xd9\xd6\xdd\ \xd6\xd3\xd8\xd2\xcf\xd4\xcc\xc9\xc8\xc1\xbe\xba\xb2\xaf\xa4\x9f\ \x9d\x82\x81\x83\x5d\x62\x69\x42\x4c\x54\x42\x4a\x52\x59\x59\x60\ \x77\x73\x76\x8e\x88\x89\x9a\x95\x96\xa1\x9c\x9c\xa4\xa0\xa2\xa5\ \xa2\xa3\xa6\xa5\xa6\xa4\xa3\xa5\xa2\xa1\xa3\xa2\xa1\xa3\x9e\x9e\ \xa1\x99\x9a\x9e\x94\x95\x99\x8d\x8e\x93\x86\x87\x8a\x76\x78\x7a\ \x6a\x6d\x6f\x61\x64\x68\x60\x63\x66\x5e\x62\x63\x60\x65\x66\x63\ \x66\x68\x74\x77\x7c\x7f\x83\x87\x7f\x82\x87\x80\x85\x8a\x7f\x85\ \x8b\x7e\x84\x8b\x7d\x83\x89\x7d\x83\x89\x7e\x84\x8a\x7b\x81\x86\ \x7a\x80\x85\x7b\x81\x86\x71\x76\x7b\x5a\x60\x66\x2a\x35\x3d\x23\ \x2d\x35\x40\x47\x4d\x4d\x51\x58\x27\x30\x37\x09\x17\x1c\x30\x37\ \x3f\x63\x68\x70\x73\x7a\x7f\x71\x77\x7b\x71\x77\x7c\x6f\x77\x7a\ \x6d\x75\x7c\x6c\x72\x78\x78\x7c\x7f\x6b\x6f\x73\x4d\x51\x56\x4f\ \x52\x57\x72\x74\x78\x82\x86\x89\x83\x87\x8b\x83\x88\x8c\x85\x8a\ \x8e\x88\x8c\x91\x8a\x8f\x93\x8a\x8f\x92\x8b\x8f\x93\x8b\x8f\x94\ \x8d\x92\x96\x8e\x92\x97\x8e\x92\x97\x8f\x94\x98\x90\x95\x98\x91\ \x96\x99\x88\x8c\x91\x7d\x82\x86\x82\x87\x8a\x8e\x93\x96\x8b\x8f\ \x94\x81\x85\x89\x86\x89\x8d\x99\x9c\xa0\x93\x97\x9b\x84\x87\x8b\ \x85\x88\x89\x94\x96\x98\x96\x9b\x9c\x88\x8c\x8d\x85\x88\x89\x98\ \x9a\x9a\x9d\xa0\xa0\x8a\x8d\x8f\x85\x88\x8a\x96\x98\x9a\xa7\xa7\ \xa9\xa8\xa8\xaa\xa5\xa4\xa6\xa3\xa4\xa5\xa6\xa5\xa7\xa5\xa4\xa6\ \xa7\xa7\xa9\xad\xac\xae\xae\xad\xb0\xac\xab\xae\xac\xab\xad\xaf\ \xae\xb0\xaf\xae\xb0\xb0\xaf\xb1\xb2\xb1\xb3\xb0\xaf\xb1\xb3\xb2\ \xb4\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb3\xb4\xaf\xb1\xb2\ \xb3\xb5\xb6\xb4\xb6\xb7\xb4\xb5\xb6\xb5\xb5\xb7\xb8\xb7\xb9\xb8\ \xb7\xb9\xba\xb9\xbb\xbc\xbc\xbd\xba\xba\xbb\xbc\xbb\xbd\xba\xba\ \xbb\xbc\xbc\xbd\xbb\xba\xbc\xbb\xba\xbc\xbe\xbe\xbf\xbe\xbc\xbf\ \xba\xb9\xbc\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbf\xbe\xbd\xbf\xbd\ \xbc\xbe\xbe\xbd\xbf\xc0\xbf\xc0\xc1\xc1\xc2\xc2\xc1\xc2\xbe\xbe\ \xbe\xc2\xc2\xc2\xc0\xbf\xc1\xc0\xc0\xc0\x00\x00\x00\xe3\xdd\xdb\ \xe4\xde\xdc\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdd\xe3\xde\xdb\xe2\ \xdd\xda\xe1\xdc\xd9\xe1\xdb\xd8\xde\xd8\xd5\xdb\xd5\xd2\xd7\xd1\ \xce\xcf\xc9\xc6\xc4\xbd\xba\xb5\xae\xab\x9a\x95\x96\x77\x78\x7b\ \x55\x5a\x61\x3f\x48\x52\x44\x4c\x55\x62\x63\x68\x81\x7d\x7e\x93\ \x8d\x8e\x9f\x9a\x9a\xa3\x9e\xa0\xa6\xa3\xa4\xa7\xa5\xa6\xa5\xa3\ \xa5\xa5\xa4\xa6\xa4\xa3\xa5\x9f\x9f\xa1\x9a\x9b\x9e\x99\x9a\x9e\ \x95\x96\x9a\x8d\x8e\x91\x81\x85\x86\x6d\x71\x72\x5d\x61\x65\x56\ \x59\x5d\x59\x5b\x5f\x62\x65\x66\x67\x69\x6c\x70\x73\x76\x78\x7b\ \x7f\x7e\x82\x87\x80\x85\x8a\x82\x87\x8d\x7f\x85\x8b\x7f\x84\x8a\ \x7d\x81\x87\x7e\x84\x8a\x7e\x84\x8b\x7d\x81\x86\x7b\x81\x86\x7b\ \x82\x86\x66\x6f\x75\x47\x52\x59\x1b\x27\x2f\x26\x31\x38\x3b\x41\ \x49\x38\x3e\x46\x1b\x25\x2c\x0b\x19\x20\x32\x3c\x44\x62\x68\x6f\ \x71\x76\x7d\x70\x76\x7c\x6e\x74\x79\x6f\x75\x7c\x70\x79\x7f\x6b\ \x72\x76\x6d\x72\x77\x5e\x64\x68\x36\x3d\x43\x2f\x33\x38\x5f\x5f\ \x63\x7b\x7c\x7e\x84\x88\x8c\x86\x8b\x8f\x87\x8c\x90\x89\x8d\x92\ \x89\x8e\x93\x89\x8e\x91\x88\x8d\x92\x8a\x8e\x92\x8d\x92\x96\x8d\ \x91\x96\x8e\x93\x96\x91\x95\x99\x91\x95\x9a\x95\x99\x9e\x94\x99\ \x9d\x8a\x8f\x93\x7f\x85\x88\x84\x88\x8c\x94\x98\x9c\x8d\x92\x96\ \x81\x86\x89\x88\x8b\x8f\x9d\x9f\xa3\x93\x97\x9a\x84\x87\x8a\x83\ \x86\x88\x96\x98\x99\x98\x9a\x9b\x8b\x8e\x8e\x85\x87\x89\x92\x94\ \x95\x9c\x9e\x9f\x90\x93\x94\x81\x85\x88\x92\x92\x94\xaa\xa8\xaa\ \xa8\xa8\xa9\xa4\xa6\xa7\xa6\xa6\xa7\xa6\xa5\xa7\xa9\xa8\xaa\xae\ \xad\xaf\xaf\xae\xb0\xae\xae\xb0\xb0\xb0\xb2\xaf\xae\xb0\xaf\xae\ \xb0\xb1\xb0\xb2\xb4\xb3\xb5\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\ \xb2\xb1\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb0\xaf\xb1\xb5\xb5\xb7\xb6\ \xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb7\xb7\xb8\xb7\xb6\ \xb8\xba\xb9\xba\xbc\xbb\xbc\xbd\xbc\xbd\xbb\xba\xbc\xbc\xbb\xbd\ \xbd\xbc\xbe\xbb\xba\xbc\xbe\xbd\xbf\xbc\xbc\xbd\xba\xb9\xbb\xb9\ \xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\ \xc2\xc3\xc2\xc4\xc2\xc2\xc3\xc0\xc0\xc0\xbf\xbf\xc0\xc1\xc0\xc1\ \xc2\xc2\xc2\xc2\xc2\xc3\x00\x00\x00\xe3\xde\xdb\xe4\xde\xdc\xe4\ \xdf\xdd\xe4\xdf\xde\xe3\xde\xdc\xe2\xdc\xda\xe2\xdd\xda\xe1\xdc\ \xd9\xdf\xda\xd9\xdc\xd6\xd5\xd9\xd4\xd2\xd3\xcc\xc9\xcd\xc6\xc3\ \xbe\xb7\xb4\xac\xa7\xa4\x8b\x89\x8a\x67\x6a\x6e\x48\x4e\x55\x3d\ \x44\x4e\x4f\x54\x5b\x6d\x6d\x70\x87\x83\x84\x97\x92\x93\x9e\x99\ \x9a\xa2\x9d\x9e\xa4\xa1\xa3\xa7\xa5\xa5\xa7\xa6\xa8\xa6\xa5\xa7\ \xa1\xa2\xa4\x9c\x9e\xa1\x9c\x9d\xa1\x96\x98\x9b\x8e\x90\x92\x86\ \x89\x8a\x7b\x7f\x80\x6c\x70\x72\x56\x5a\x60\x49\x4d\x53\x4c\x4f\ \x54\x5d\x60\x63\x6b\x6c\x70\x74\x76\x7a\x78\x7b\x7f\x7c\x81\x84\ \x7f\x84\x88\x7e\x83\x89\x7c\x82\x88\x7d\x83\x8a\x7c\x82\x88\x7d\ \x82\x88\x7e\x83\x88\x7a\x80\x85\x7c\x82\x87\x77\x80\x84\x5c\x69\ \x6e\x30\x40\x47\x1d\x2c\x32\x32\x3f\x47\x47\x4e\x57\x27\x31\x39\ \x0a\x17\x1e\x1b\x26\x2e\x4c\x53\x5e\x69\x6e\x77\x70\x76\x7d\x72\ \x79\x7e\x6f\x78\x7c\x6b\x74\x7a\x70\x76\x7d\x70\x76\x7b\x65\x6a\ \x6f\x48\x4f\x55\x27\x30\x37\x22\x27\x2c\x46\x47\x4c\x70\x6f\x73\ \x83\x86\x8b\x89\x8e\x93\x89\x8d\x92\x88\x8d\x92\x88\x8e\x93\x89\ \x8e\x91\x8b\x91\x96\x8a\x8e\x93\x8e\x92\x97\x8c\x90\x95\x8f\x93\ \x98\x91\x95\x9a\x95\x99\x9e\x97\x9b\x9f\x96\x9a\x9e\x94\x97\x9c\ \x8b\x90\x93\x80\x85\x89\x84\x88\x8c\x90\x95\x98\x8f\x94\x97\x83\ \x88\x8b\x8a\x8d\x91\x9a\x9d\xa1\x96\x99\x9d\x85\x89\x8b\x80\x84\ \x85\x92\x94\x95\x9b\x9e\x9e\x8d\x91\x92\x86\x89\x8a\x92\x94\x95\ \x9e\xa0\xa1\x94\x98\x98\x86\x88\x8a\x8f\x91\x92\xa3\xa2\xa4\xa6\ \xa5\xa7\xa4\xa3\xa5\xa6\xa7\xa8\xac\xaa\xac\xaa\xa9\xab\xac\xab\ \xad\xae\xae\xaf\xb1\xb1\xb3\xb2\xb1\xb3\xb1\xb0\xb2\xb1\xb0\xb2\ \xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb0\xaf\xb0\xb2\xb1\xb3\xb2\ \xb2\xb3\xb2\xb2\xb3\xb3\xb3\xb4\xb2\xb2\xb3\xb3\xb2\xb4\xb6\xb5\ \xb7\xb9\xb8\xba\xb9\xb8\xba\xb7\xb7\xb8\xb9\xb9\xba\xba\xba\xbc\ \xb9\xb8\xba\xbd\xbc\xbd\xbc\xbb\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\ \xbb\xbc\xbe\xbd\xbf\xbd\xbc\xbe\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\ \xbe\xbf\xbe\xc1\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\xc4\xc2\xc4\ \xc4\xc1\xc2\xc2\xc1\xc1\xbf\xbd\xbe\xbd\xbc\xbc\xc1\xc1\xc1\xc3\ \xc3\xc3\x00\x00\x00\xe4\xdf\xdd\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\ \xdb\xe3\xdd\xdc\xe2\xdc\xdb\xe2\xdd\xdc\xe0\xdb\xd9\xde\xd9\xd8\ \xdc\xd7\xd6\xd7\xd2\xd0\xd2\xcb\xc8\xc7\xc1\xbe\xba\xb3\xb0\xa0\ \x9b\x99\x7d\x7e\x7e\x5b\x60\x65\x41\x49\x50\x43\x49\x51\x5b\x5d\ \x63\x79\x76\x78\x8e\x89\x89\x99\x94\x95\xa2\x9d\x9e\xa3\x9f\xa1\ \xa5\xa2\xa2\xa3\xa1\xa3\xa5\xa4\xa6\xa3\xa2\xa4\xa0\xa2\xa2\x9e\ \xa1\xa1\x99\x9b\x9c\x93\x94\x97\x8b\x8e\x8f\x84\x88\x89\x7a\x7e\ \x7f\x68\x6d\x6f\x4f\x55\x59\x4a\x4f\x54\x51\x53\x57\x62\x63\x67\ \x67\x69\x6d\x72\x74\x78\x7b\x7f\x83\x7d\x83\x87\x81\x86\x8b\x7e\ \x84\x89\x7c\x82\x87\x7b\x80\x85\x7c\x80\x85\x7d\x81\x86\x7d\x81\ \x86\x7b\x80\x85\x7b\x80\x86\x77\x7e\x82\x60\x6d\x73\x2c\x42\x48\ \x23\x38\x3f\x40\x4f\x58\x4f\x5b\x63\x2b\x36\x3f\x0a\x17\x20\x2a\ \x34\x3c\x5d\x62\x6a\x71\x76\x7d\x72\x78\x7f\x70\x76\x7d\x75\x7b\ \x80\x72\x79\x80\x6d\x74\x7b\x6c\x72\x77\x5c\x63\x68\x33\x3c\x43\ \x19\x21\x26\x18\x1e\x23\x2b\x30\x35\x5c\x60\x65\x7d\x81\x86\x8a\ \x8f\x94\x89\x8e\x92\x88\x8e\x93\x8a\x90\x95\x8c\x92\x96\x8a\x8f\ \x93\x8e\x93\x98\x8c\x91\x96\x8d\x91\x96\x90\x94\x99\x92\x96\x9b\ \x94\x98\x9d\x95\x99\x9e\x95\x99\x9e\x96\x9a\x9f\x95\x9a\x9e\x8f\ \x94\x98\x83\x88\x8d\x82\x86\x8b\x93\x97\x9a\x91\x95\x9a\x86\x8a\ \x8d\x84\x87\x8b\x97\x9a\x9d\x9c\x9f\xa3\x8b\x8e\x91\x81\x84\x85\ \x91\x93\x94\x9c\x9e\x9f\x91\x95\x96\x89\x8c\x8d\x91\x93\x94\x9e\ \x9f\xa0\x9a\x9b\x9d\x8d\x8f\x8f\x8a\x8d\x8d\x9b\x9b\x9d\xa6\xa5\ \xa7\xa7\xa6\xa8\xab\xaa\xac\xa9\xa8\xaa\xab\xaa\xac\xae\xad\xaf\ \xaf\xae\xaf\xb1\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\xb0\xb1\ \xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb6\xb5\ \xb7\xb6\xb5\xb7\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ \xb9\xb8\xba\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xba\ \xb9\xba\xbd\xbd\xbd\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\ \xbd\xbd\xbc\xbe\xc0\xbf\xc1\xbe\xbd\xbf\xc0\xbf\xc1\xc0\xbf\xc1\ \xc0\xbf\xc1\xc3\xc2\xc4\xc4\xc2\xc4\xc1\xbe\xc0\xc1\xbe\xc0\xc3\ \xc2\xc4\xc2\xc2\xc3\xbc\xbb\xbd\xbf\xbf\xbf\xc2\xc2\xc2\x00\x00\ \x00\xe4\xdf\xdd\xe3\xde\xdd\xe2\xdd\xdc\xe2\xdd\xdb\xe3\xdc\xdc\ \xe2\xdd\xdc\xe0\xdb\xda\xdf\xda\xd9\xdd\xd6\xd5\xdb\xd3\xd3\xd6\ \xce\xcd\xce\xc7\xc5\xc3\xbd\xba\xb0\xa9\xa6\x95\x92\x8e\x72\x73\ \x74\x53\x58\x5f\x42\x48\x51\x49\x4d\x54\x67\x66\x6b\x82\x7d\x7e\ \x93\x8e\x8d\x9b\x97\x97\xa3\xa0\xa1\xa5\xa2\xa4\xa7\xa6\xa7\xa4\ \xa4\xa6\xa3\xa2\xa4\xa1\xa0\xa2\xa1\xa2\xa3\x9b\x9e\x9e\x99\x9b\ \x9c\x92\x94\x96\x8c\x8f\x90\x86\x8a\x8b\x7b\x7f\x80\x67\x6d\x70\ \x50\x59\x5d\x43\x48\x4d\x4f\x50\x55\x5b\x5b\x60\x63\x65\x69\x6d\ \x6f\x73\x7b\x7f\x83\x80\x86\x8a\x7d\x82\x86\x7b\x7f\x84\x7b\x80\ \x85\x7c\x82\x86\x7e\x82\x87\x7d\x82\x87\x7e\x83\x88\x7c\x81\x86\ \x7a\x80\x85\x77\x7c\x81\x6a\x73\x79\x48\x5a\x61\x39\x4c\x55\x55\ \x61\x6b\x63\x6e\x76\x40\x4f\x58\x1a\x2c\x37\x34\x40\x4b\x60\x66\ \x6f\x6f\x75\x7c\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x74\x7a\x80\ \x70\x78\x7e\x65\x6c\x73\x51\x59\x5f\x29\x33\x39\x11\x19\x1c\x1c\ \x23\x28\x2c\x33\x38\x55\x5a\x60\x77\x7c\x80\x88\x8c\x91\x89\x8e\ \x93\x88\x8d\x91\x8a\x8e\x93\x8b\x8f\x94\x8c\x90\x95\x8c\x90\x95\ \x8c\x90\x95\x8e\x92\x97\x91\x94\x9a\x90\x94\x99\x90\x94\x99\x94\ \x98\x9d\x95\x98\x9d\x96\x99\x9e\x96\x9b\x9e\x97\x9b\x9f\x90\x95\ \x9a\x84\x89\x8c\x87\x8b\x8e\x97\x9b\x9f\x95\x9a\x9d\x88\x8d\x90\ \x88\x8b\x8f\x96\x98\x9d\x9a\x9d\xa1\x8d\x91\x92\x86\x89\x8a\x90\ \x92\x93\x9b\x9d\x9e\x94\x97\x97\x85\x88\x89\x8e\x90\x91\xa2\xa2\ \xa3\xa0\xa2\xa2\x91\x93\x94\x8b\x8d\x8e\x98\x98\x9a\xa9\xa8\xaa\ \xaa\xa9\xab\xac\xab\xad\xaf\xae\xb0\xad\xad\xae\xac\xac\xad\xad\ \xad\xae\xb0\xaf\xb1\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xb0\xb2\xb1\xb0\ \xb2\xb4\xb3\xb5\xb6\xb5\xb7\xb4\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb7\ \xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb8\xb7\xb8\xb8\ \xb7\xb7\xba\xba\xbb\xb8\xb7\xb8\xb8\xb8\xb8\xba\xb9\xbb\xbc\xbb\ \xbd\xbd\xbc\xbe\xbb\xba\xbc\xbb\xba\xbc\xbd\xbc\xbe\xbd\xbc\xbe\ \xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc0\xc2\xbf\xbf\xc1\xc1\xbf\xc1\xc0\ \xbf\xc1\xc0\xbe\xc0\xbf\xbe\xc0\xc4\xc3\xc5\xc3\xc2\xc2\xc0\xbf\ \xc1\xc0\xbf\xc1\xc0\xbf\xc1\xbe\xbd\xbf\x00\x00\x00\xe2\xdd\xdb\ \xe3\xde\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe2\xdd\xdc\xe2\xdd\xdc\xe0\ \xda\xd9\xdf\xda\xd8\xdc\xd6\xd6\xd8\xd2\xd1\xd2\xcc\xcb\xcc\xc5\ \xc4\xbe\xb8\xb5\xa7\xa1\x9d\x88\x85\x83\x67\x6a\x6c\x4a\x50\x58\ \x42\x48\x51\x54\x55\x5c\x72\x6f\x72\x89\x84\x84\x96\x92\x91\xa0\ \x9b\x9c\xa3\x9f\x9f\xa5\xa3\xa4\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\ \xa4\xa2\xa2\xa3\x9d\x9f\xa0\x98\x9a\x9b\x96\x98\x99\x91\x93\x95\ \x8a\x8d\x8f\x84\x88\x89\x7a\x7e\x7f\x64\x6b\x6e\x49\x53\x57\x31\ \x37\x3c\x4d\x4e\x53\x57\x58\x5d\x62\x63\x68\x6a\x6b\x6f\x79\x7c\ \x80\x7e\x84\x86\x7e\x83\x86\x7c\x81\x85\x7c\x80\x84\x7b\x80\x84\ \x7b\x7f\x84\x7c\x80\x85\x7d\x80\x85\x7c\x82\x87\x7a\x80\x85\x7b\ \x81\x86\x6d\x77\x7b\x62\x6c\x74\x5e\x69\x72\x67\x70\x78\x6e\x76\ \x7e\x59\x65\x6e\x41\x53\x5f\x4d\x5b\x66\x66\x6e\x76\x71\x77\x7d\ \x6f\x75\x7c\x71\x77\x7e\x70\x76\x7d\x71\x77\x7e\x73\x7b\x80\x64\ \x6c\x73\x3b\x45\x4c\x1a\x22\x27\x15\x1d\x21\x23\x2b\x2f\x46\x4d\ \x53\x6f\x73\x79\x7e\x82\x87\x86\x8a\x8f\x89\x8d\x92\x89\x8d\x92\ \x8b\x8f\x94\x8b\x8f\x93\x8c\x90\x95\x8c\x90\x95\x8e\x92\x97\x8e\ \x92\x97\x90\x94\x98\x8f\x93\x98\x91\x95\x9a\x94\x97\x9b\x96\x9a\ \x9f\x97\x9b\x9f\x99\x9c\xa0\x98\x9c\xa1\x9b\x9e\xa4\x93\x98\x9c\ \x85\x8a\x8e\x86\x8a\x8e\x96\x99\x9d\x99\x9c\xa0\x8d\x90\x94\x85\ \x88\x8c\x93\x96\x98\x9d\xa0\xa2\x94\x98\x99\x87\x8b\x8c\x8e\x90\ \x91\x9c\x9f\x9f\x99\x9c\x9c\x8b\x8d\x8d\x8f\x90\x91\x9e\x9e\x9e\ \xa5\xa5\xa5\x96\x97\x99\x89\x8c\x8d\x94\x95\x96\xa8\xa8\xa9\xaf\ \xaf\xaf\xad\xad\xae\xae\xae\xaf\xae\xae\xaf\xad\xad\xad\xaf\xaf\ \xb0\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb2\xb1\xb3\ \xb5\xb5\xb6\xb6\xb5\xb7\xb7\xb7\xb8\xb6\xb6\xb7\xb2\xb2\xb3\xb0\ \xaf\xb2\xb4\xb3\xb5\xb7\xb6\xb7\xb7\xb6\xb8\xb5\xb5\xb7\xb8\xb8\ \xb8\xb8\xb7\xb9\xbb\xbb\xbb\xbd\xbc\xbe\xbd\xbc\xbe\xbd\xbd\xbd\ \xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\xbc\xbc\xbb\xbd\xbf\ \xbe\xc0\xc0\xbf\xc1\xbf\xbe\xc0\xc1\xbf\xc1\xc1\xbf\xc1\xc1\xbe\ \xc0\xc5\xc2\xc4\xc4\xc2\xc4\xc2\xc1\xc2\xc2\xc1\xc1\xc1\xc0\xc2\ \xc1\xc0\xc2\xc2\xc1\xc2\x00\x00\x00\xe4\xdf\xdb\xe4\xdf\xdc\xe4\ \xdf\xdd\xe2\xdd\xdb\xe1\xdc\xda\xe0\xdb\xda\xe0\xda\xda\xde\xd9\ \xd8\xdb\xd5\xd5\xd7\xcf\xcf\xd1\xca\xca\xc6\xbf\xbe\xb7\xb0\xac\ \x9e\x98\x95\x7a\x79\x77\x5a\x5d\x61\x45\x4c\x54\x44\x4b\x53\x5e\ \x5e\x63\x7b\x76\x79\x8e\x89\x88\x9b\x97\x96\xa0\x9d\x9d\xa3\xa1\ \xa1\xa4\xa2\xa2\xa3\xa2\xa3\xa5\xa4\xa6\xa2\xa1\xa3\x9f\xa0\xa2\ \x9a\x9c\x9d\x99\x9b\x9c\x97\x99\x9a\x92\x95\x97\x8b\x8f\x91\x86\ \x8a\x8b\x7a\x7e\x80\x65\x6c\x6f\x43\x4d\x52\x2c\x32\x37\x3b\x3f\ \x43\x50\x51\x57\x5e\x60\x65\x68\x6a\x6e\x73\x76\x7a\x7c\x81\x84\ \x7b\x80\x83\x7a\x80\x84\x79\x7e\x83\x7a\x7f\x83\x7b\x7f\x83\x7c\ \x80\x85\x7c\x80\x85\x7b\x80\x85\x7a\x81\x86\x7c\x82\x87\x78\x7e\ \x83\x72\x7a\x80\x72\x79\x80\x74\x7b\x82\x78\x80\x87\x70\x77\x7e\ \x61\x6d\x75\x62\x6d\x74\x6b\x72\x79\x70\x77\x7d\x6f\x76\x7b\x6f\ \x75\x7a\x73\x79\x7f\x6f\x76\x7d\x73\x79\x80\x6a\x71\x79\x43\x4e\ \x56\x19\x21\x27\x16\x1f\x24\x22\x29\x2d\x53\x5a\x5e\x76\x7a\x7e\ \x87\x8b\x8f\x88\x8c\x91\x88\x8c\x91\x8a\x8e\x93\x8c\x90\x95\x8b\ \x90\x94\x8a\x8e\x93\x8b\x8f\x94\x8f\x93\x98\x92\x96\x9b\x90\x94\ \x9a\x8f\x92\x97\x92\x96\x99\x92\x96\x9a\x96\x99\x9e\x9a\x9c\xa1\ \x9b\x9d\xa1\x98\x9b\xa0\x9a\x9d\xa2\x9e\xa1\xa5\x97\x9b\xa0\x89\ \x8e\x93\x85\x8a\x8f\x92\x95\x9a\x98\x9b\x9f\x8b\x90\x92\x83\x87\ \x89\x92\x95\x96\xa0\xa3\xa4\x96\x99\x9a\x8b\x8e\x8f\x90\x93\x93\ \xa0\xa1\xa1\x9e\xa0\xa0\x8e\x90\x91\x8a\x8c\x8d\x9c\x9d\x9d\xa3\ \xa3\xa3\x9d\x9f\x9f\x8c\x8f\x90\x91\x93\x94\xa6\xa6\xa6\xac\xab\ \xac\xad\xad\xad\xae\xae\xae\xae\xae\xae\xae\xae\xaf\xb1\xb0\xb2\ \xb2\xb0\xb2\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xaf\xb0\xb3\xb3\xb3\xb3\ \xb3\xb3\xb4\xb3\xb5\xb6\xb6\xb8\xb4\xb4\xb6\xb4\xb4\xb6\xb5\xb4\ \xb6\xb5\xb4\xb6\xb5\xb4\xb6\xb6\xb5\xb7\xba\xb9\xba\xbc\xbb\xbc\ \xbc\xbc\xbc\xbc\xbc\xbd\xbe\xbd\xbf\xbc\xbc\xbd\xbb\xbb\xbc\xba\ \xb9\xbb\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xbf\xbe\ \xc0\xbf\xbe\xc0\xc1\xc1\xc2\xc0\xbe\xc0\xc0\xbd\xbf\xc4\xc1\xc3\ \xc2\xc0\xc2\xc1\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xc2\xc1\xc3\xc1\ \xbf\xc1\x00\x00\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe2\xdd\ \xda\xe1\xdc\xda\xe0\xdb\xda\xdf\xda\xd9\xdc\xd7\xd6\xd8\xd2\xd2\ \xd5\xcd\xcd\xcd\xc5\xc4\xc1\xbb\xb8\xb1\xab\xa6\x91\x8d\x88\x6e\ \x6e\x6f\x53\x57\x5c\x41\x48\x50\x4f\x53\x5a\x6a\x69\x6c\x82\x7e\ \x7f\x93\x8f\x8e\x9d\x99\x99\xa2\x9f\x9e\xa2\xa0\xa0\xa4\xa2\xa2\ \xa4\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa2\xa0\x9f\xa1\x9c\x9d\x9e\x98\ \x9a\x9c\x96\x98\x9a\x92\x95\x98\x8c\x90\x93\x88\x8b\x8f\x7b\x7e\ \x82\x67\x6d\x71\x40\x49\x50\x28\x2f\x33\x28\x2e\x32\x35\x38\x3e\ \x53\x55\x5a\x64\x66\x6b\x6f\x72\x76\x7a\x7e\x82\x7b\x80\x83\x7a\ \x80\x84\x79\x7f\x83\x7a\x7f\x83\x7a\x7f\x84\x7a\x7f\x84\x7a\x7f\ \x84\x7b\x80\x85\x7b\x82\x87\x7d\x83\x89\x7c\x82\x87\x78\x80\x85\ \x78\x80\x87\x79\x80\x86\x78\x7f\x87\x76\x7d\x84\x74\x7b\x82\x6e\ \x75\x7c\x6d\x74\x7a\x71\x77\x7d\x71\x77\x7e\x71\x76\x7d\x73\x79\ \x80\x74\x7a\x80\x6b\x72\x78\x5b\x62\x69\x42\x4c\x55\x1f\x28\x31\ \x21\x2c\x33\x36\x40\x44\x5b\x62\x64\x74\x78\x7c\x83\x87\x8c\x89\ \x8d\x92\x89\x8d\x92\x8b\x8f\x93\x8b\x8f\x93\x8a\x8f\x93\x8b\x90\ \x94\x8a\x8e\x93\x8f\x93\x97\x91\x95\x9a\x92\x95\x9a\x91\x94\x99\ \x92\x95\x99\x95\x98\x9c\x97\x9a\x9e\x9a\x9d\xa1\x9b\x9e\xa2\x9a\ \x9d\xa1\x9e\xa1\xa5\x9f\xa2\xa6\x9f\xa3\xa7\x99\x9d\xa1\x8c\x91\ \x95\x85\x88\x8d\x90\x93\x97\x97\x9b\x9e\x91\x94\x97\x87\x8a\x8e\ \x90\x92\x94\x9d\x9f\xa0\x9c\x9f\xa0\x8c\x8f\x90\x8d\x8f\x8f\x9e\ \x9e\x9e\xa1\xa2\xa2\x93\x95\x95\x88\x8a\x8b\x95\x97\x98\xa4\xa5\ \xa5\xa2\xa3\xa4\x90\x91\x92\x8e\x8e\x90\x9d\x9c\x9d\xab\xab\xab\ \xb0\xb0\xb0\xaf\xaf\xaf\xad\xad\xad\xae\xae\xae\xb1\xb0\xb1\xb1\ \xb0\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xaf\xb0\xb1\xb0\xb2\xb4\xb3\ \xb5\xb6\xb6\xb7\xb6\xb5\xb7\xb6\xb5\xb8\xb7\xb6\xb8\xb6\xb5\xb7\ \xb8\xb7\xb9\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbb\xba\xba\xba\xba\ \xba\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xbe\xbd\ \xbf\xbc\xbb\xbd\xba\xb9\xba\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\ \xc3\xc3\xc4\xc2\xc1\xc2\xc1\xbf\xc1\xc2\xc1\xc3\xc2\xc1\xc3\xc0\ \xbf\xc0\xc2\xc1\xc3\xc3\xc2\xc4\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ \x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe1\xdc\xdb\xe0\xdc\xda\ \xe0\xdb\xda\xdd\xd8\xd7\xdb\xd5\xd5\xd7\xcf\xcf\xd2\xcb\xc9\xc8\ \xc0\xbd\xbb\xb5\xaf\xa6\xa0\x9b\x82\x81\x7e\x64\x69\x6b\x49\x51\ \x56\x42\x47\x4e\x58\x59\x5e\x75\x73\x74\x8c\x88\x87\x97\x94\x93\ \x9e\x9a\x9a\xa3\x9f\x9f\xa3\xa0\xa0\xa5\xa3\xa3\xa4\xa3\xa5\xa2\ \xa1\xa3\x9f\x9e\xa0\x9f\x9f\xa1\x9a\x9b\x9d\x97\x98\x9c\x94\x95\ \x99\x91\x93\x97\x8b\x8e\x92\x88\x8b\x8f\x7d\x80\x85\x65\x6a\x6f\ \x4d\x56\x5d\x2d\x37\x3d\x26\x30\x36\x20\x27\x2e\x41\x46\x4c\x5f\ \x62\x67\x6a\x6d\x72\x76\x7a\x80\x79\x7d\x82\x7c\x80\x85\x7a\x7f\ \x85\x7a\x7f\x84\x7a\x80\x85\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\ \x7c\x82\x87\x7c\x83\x88\x7a\x80\x85\x7a\x80\x86\x78\x80\x85\x78\ \x80\x87\x79\x81\x87\x79\x80\x87\x7a\x80\x87\x76\x7c\x83\x71\x77\ \x7d\x6f\x75\x7b\x71\x76\x7c\x72\x78\x7e\x6f\x75\x7c\x73\x79\x7e\ \x66\x6d\x73\x46\x51\x5a\x26\x32\x3c\x1a\x25\x2d\x23\x2d\x35\x4e\ \x56\x5d\x6f\x75\x77\x76\x7b\x7e\x7b\x7f\x83\x86\x89\x8e\x8b\x8f\ \x93\x8b\x90\x94\x8b\x90\x94\x8b\x90\x94\x8a\x90\x93\x8c\x90\x93\ \x8f\x93\x96\x91\x95\x99\x91\x94\x98\x90\x93\x97\x94\x97\x9b\x98\ \x9b\x9f\x98\x9b\x9f\x99\x9c\xa0\x9a\x9d\xa2\x9c\x9f\xa3\x9d\xa0\ \xa4\x9d\xa0\xa4\x9f\xa2\xa6\x9f\xa3\xa6\x9a\x9f\xa2\x8b\x90\x93\ \x86\x8a\x8e\x8f\x91\x95\x9a\x9d\x9e\x93\x95\x9a\x86\x89\x8d\x8d\ \x8f\x90\x9d\x9f\x9f\x9d\x9f\xa0\x8f\x92\x93\x8d\x8f\x90\x98\x98\ \x97\xa0\xa0\xa0\x99\x9b\x9c\x8e\x91\x92\x90\x91\x92\xa2\xa2\xa3\ \xa4\xa5\xa6\x97\x98\x99\x8d\x8e\x8e\x9a\x9b\x9b\xac\xab\xab\xb1\ \xb0\xb0\xae\xae\xae\xb0\xb0\xb0\xb1\xb1\xb2\xb0\xaf\xb1\xae\xad\ \xae\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\ \xb6\xb5\xb8\xb8\xb7\xb9\xb7\xb8\xb9\xb8\xb8\xba\xb8\xb7\xb9\xb8\ \xb7\xb9\xba\xb9\xba\xb9\xb9\xb9\xb5\xb5\xb5\xb9\xb9\xb9\xbc\xbc\ \xbc\xbc\xbb\xbd\xbf\xbe\xbe\xbe\xbd\xbe\xba\xb9\xbb\xbc\xbc\xbd\ \xbd\xbc\xbd\xbc\xbc\xbd\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc1\xc2\xc0\ \xbf\xc1\xc1\xc0\xc1\xc3\xc1\xc3\xc2\xbf\xc1\xc1\xbe\xc0\xc3\xc2\ \xc4\xc2\xc1\xc3\xc1\xc0\xc2\xc1\xbf\xc1\x00\x00\x00\xe3\xdd\xdb\ \xe3\xdc\xd9\xe2\xdd\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xdf\xda\xd9\xdc\ \xd7\xd6\xd9\xd4\xd3\xd6\xd0\xcf\xce\xc7\xc4\xc4\xbc\xb6\xb6\xaf\ \xa9\x9a\x96\x91\x77\x79\x78\x58\x5f\x63\x43\x4b\x51\x48\x4c\x53\ \x63\x64\x67\x7e\x7b\x7c\x90\x8d\x8c\x9a\x98\x97\x9f\x9d\x9d\xa3\ \xa0\xa0\xa2\xa0\xa0\xa5\xa3\xa5\xa3\xa1\xa3\xa2\xa1\xa3\xa1\xa0\ \xa2\x9d\x9c\x9e\x98\x9a\x9c\x94\x96\x9a\x91\x93\x97\x90\x93\x97\ \x8e\x91\x95\x88\x8b\x90\x7d\x80\x85\x61\x66\x6b\x4f\x58\x5f\x3b\ \x46\x4d\x37\x43\x4c\x3b\x46\x50\x40\x4a\x52\x5c\x61\x67\x6b\x6e\ \x73\x74\x78\x7d\x76\x7a\x7f\x7c\x80\x85\x7b\x7f\x84\x7b\x80\x85\ \x7a\x80\x85\x79\x7f\x84\x79\x7f\x84\x79\x7f\x84\x7b\x81\x86\x7a\ \x82\x86\x7a\x82\x86\x7b\x82\x88\x78\x80\x85\x79\x81\x87\x79\x81\ \x86\x79\x81\x87\x7b\x82\x89\x7b\x82\x88\x76\x7e\x83\x71\x78\x7d\ \x70\x75\x7a\x71\x77\x7c\x6d\x73\x79\x6d\x73\x79\x67\x6d\x73\x4b\ \x57\x60\x1a\x28\x33\x19\x25\x30\x27\x33\x3e\x56\x5e\x66\x72\x77\ \x7c\x7d\x81\x84\x79\x7d\x81\x7b\x80\x84\x86\x8a\x8e\x8d\x91\x95\ \x8b\x90\x93\x8a\x8f\x93\x8b\x8f\x93\x8d\x91\x96\x8e\x92\x96\x8f\ \x93\x97\x91\x94\x98\x91\x94\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9a\ \x9f\x97\x9a\x9f\x98\x9b\xa0\x9c\x9f\xa4\x9d\xa0\xa4\x9c\x9f\xa3\ \x9b\x9e\xa2\x9c\xa0\xa4\x9d\xa0\xa4\x99\x9e\xa1\x91\x95\x99\x87\ \x8b\x8e\x8c\x8e\x91\x99\x9b\x9d\x96\x99\x9c\x8a\x8d\x8e\x8d\x8f\ \x90\x9b\x9c\x9d\xa1\xa2\xa2\x94\x96\x96\x8b\x8d\x8e\x95\x96\x96\ \xa3\xa4\xa5\xa1\xa3\xa4\x91\x94\x95\x8f\x91\x92\x9f\x9f\xa0\xab\ \xab\xab\x9f\xa0\xa1\x93\x93\x94\x98\x97\x98\xa6\xa5\xa6\xaf\xae\ \xae\xb0\xb0\xb0\xb0\xb0\xaf\xb0\xb0\xaf\xad\xad\xad\xb0\xb0\xb0\ \xb2\xb2\xb2\xb0\xaf\xb0\xb1\xb0\xb3\xb2\xb1\xb3\xb4\xb3\xb5\xb7\ \xb5\xb7\xb8\xb8\xba\xba\xba\xbc\xb8\xb8\xb9\xb8\xb7\xb9\xba\xb9\ \xba\xb7\xb6\xb7\xb7\xb7\xb7\xba\xba\xba\xba\xba\xba\xba\xba\xbb\ \xbd\xbd\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbd\ \xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbd\xbc\xbe\xbe\xbd\xbf\xc2\xc1\ \xc3\xc1\xc0\xc2\xc0\xbe\xc0\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc2\xc4\ \xc3\xc1\xc3\xc0\xbe\xc0\x00\x00\x00\xe3\xdb\xdb\xe3\xdd\xda\xe1\ \xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xde\xd9\xd7\xdb\xd6\xd5\xd8\xd2\ \xd1\xd3\xcd\xcb\xcb\xc4\xbf\xc0\xb8\xb2\xae\xa8\xa2\x8d\x8a\x88\ \x6e\x70\x71\x50\x56\x5c\x41\x48\x4f\x50\x54\x59\x6d\x6c\x6f\x86\ \x81\x82\x94\x91\x91\x9c\x9a\x9a\xa1\x9f\x9f\xa4\xa3\xa2\xa3\xa0\ \xa1\xa4\xa3\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9f\x9e\xa0\x9b\x9a\x9c\ \x98\x99\x9b\x94\x96\x99\x92\x94\x98\x8f\x92\x96\x8e\x91\x95\x87\ \x8b\x8f\x79\x7d\x81\x60\x66\x6b\x4d\x56\x5d\x4b\x53\x5c\x4f\x58\ \x5f\x5c\x64\x6a\x57\x60\x66\x65\x69\x6e\x6b\x6f\x74\x73\x77\x7c\ \x75\x79\x7e\x79\x7d\x82\x7c\x80\x85\x7a\x7e\x83\x79\x7e\x83\x78\ \x7e\x83\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x7a\x7f\x84\x7c\x84\ \x88\x7a\x83\x89\x79\x82\x86\x78\x80\x86\x78\x7f\x85\x79\x80\x86\ \x7c\x82\x8a\x7d\x84\x8a\x7a\x82\x88\x75\x7c\x81\x6f\x75\x7a\x6e\ \x74\x79\x6f\x75\x7a\x6e\x74\x79\x66\x6c\x73\x59\x63\x6c\x30\x3e\ \x49\x28\x36\x42\x47\x51\x5c\x64\x6b\x71\x73\x77\x7c\x7d\x81\x85\ \x7d\x82\x85\x79\x7e\x81\x7d\x82\x85\x88\x8c\x8f\x8c\x90\x94\x8c\ \x90\x94\x8d\x91\x95\x8f\x93\x97\x92\x95\x9a\x8f\x93\x98\x91\x94\ \x99\x94\x97\x9c\x95\x98\x9d\x96\x9a\x9e\x99\x9c\xa0\x97\x9a\x9f\ \x98\x9b\xa0\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\x9b\x9e\xa2\x9c\ \x9f\xa3\x9e\xa1\xa5\xa0\xa4\xa7\x9d\xa2\xa5\x95\x9a\x9d\x89\x8d\ \x90\x8c\x8e\x92\x98\x9a\x9d\x9a\x9c\x9d\x90\x92\x94\x8c\x8e\x90\ \x99\x9a\x9a\xa4\xa3\xa5\x9c\x9e\x9f\x8e\x90\x91\x94\x95\x96\xa2\ \xa4\xa5\xa3\xa6\xa6\x94\x97\x98\x8e\x8f\x90\x9c\x9b\x9c\xa9\xa8\ \xaa\xa6\xa6\xa8\x98\x98\x9a\x94\x93\x95\xa1\xa0\xa1\xaf\xad\xad\ \xb1\xb0\xb0\xaf\xaf\xaf\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\ \xb0\xb0\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb4\xb3\xb5\xb7\xb6\ \xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xb9\xbc\xb8\xb7\xb9\ \xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xbc\xbb\xbc\xbd\xbd\xbe\xbd\ \xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbf\ \xc1\xbf\xbe\xc0\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\ \xc0\xbf\xc1\xc2\xc1\xc3\xc5\xc4\xc6\xc6\xc4\xc6\xc3\xc1\xc3\xc0\ \xbe\xc0\x00\x00\x00\xe2\xdb\xda\xe2\xdc\xda\xe1\xdb\xd8\xe0\xdb\ \xd8\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\xcf\xce\xd0\xc9\xc6\ \xc6\xbf\xba\xba\xb3\xad\xa2\x9d\x99\x7e\x7e\x7e\x62\x64\x67\x48\ \x4f\x55\x43\x4a\x50\x57\x5a\x5e\x77\x75\x76\x8a\x86\x85\x96\x92\ \x91\x9e\x9a\x9a\xa2\x9f\xa0\xa5\xa3\xa4\xa4\xa2\xa3\xa3\xa2\xa4\ \xa0\xa0\xa1\x9e\x9d\x9f\x9d\x9b\x9d\x99\x99\x9b\x98\x99\x9b\x93\ \x94\x99\x92\x94\x98\x90\x93\x97\x8e\x91\x96\x86\x89\x8d\x75\x7a\ \x7e\x5d\x64\x68\x46\x50\x55\x50\x58\x5e\x5e\x64\x68\x6d\x72\x75\ \x68\x6d\x71\x6f\x71\x76\x70\x74\x78\x6f\x73\x78\x73\x77\x7b\x76\ \x7a\x7f\x79\x7e\x82\x78\x7c\x81\x78\x7e\x83\x78\x7e\x83\x78\x7e\ \x83\x79\x7f\x84\x79\x7f\x84\x78\x7e\x83\x7b\x83\x88\x79\x83\x87\ \x7a\x83\x88\x78\x81\x85\x78\x80\x86\x7a\x81\x87\x7b\x82\x89\x7d\ \x83\x89\x7c\x83\x89\x79\x80\x86\x71\x77\x7c\x6f\x75\x79\x70\x76\ \x7b\x73\x77\x7c\x6c\x72\x78\x5d\x66\x6d\x4b\x55\x5f\x32\x3d\x4a\ \x50\x58\x61\x71\x76\x79\x7a\x7f\x82\x79\x7e\x81\x7e\x82\x85\x7f\ \x83\x87\x7b\x7f\x83\x7d\x82\x85\x87\x8b\x8f\x8d\x90\x94\x8f\x92\ \x96\x91\x95\x99\x94\x98\x9d\x93\x96\x9b\x91\x94\x99\x94\x96\x9b\ \x95\x98\x9d\x97\x9a\x9f\x98\x9b\x9f\x96\x9a\x9e\x99\x9c\xa0\x9e\ \xa0\xa5\x9d\xa0\xa5\x9d\xa0\xa4\x9e\xa1\xa5\x9b\x9e\xa2\x9d\xa0\ \xa4\xa0\xa3\xa7\xa0\xa4\xa8\xa0\xa4\xa5\x98\x9c\x9e\x8d\x90\x94\ \x88\x8b\x8e\x94\x96\x97\x9f\xa1\xa2\x96\x98\x99\x8f\x91\x92\x96\ \x97\x98\xa5\xa6\xa7\x9f\xa1\xa2\x92\x95\x96\x90\x92\x93\x9a\x9c\ \x9c\xa2\xa4\xa4\x9c\x9e\x9f\x8f\x90\x91\x94\x93\x94\xa5\xa5\xa7\ \xaa\xaa\xac\x9c\x9b\x9d\x93\x91\x93\x9b\x99\x9a\xaa\xa9\xa9\xb2\ \xb0\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb0\xb0\ \xb1\xb2\xb1\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb2\xb4\ \xb4\xb3\xb5\xb9\xb9\xba\xba\xb9\xbb\xb9\xb9\xb9\xb8\xb8\xb8\xb9\ \xb9\xb9\xb9\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbf\xbf\xbe\xc0\xbe\xbd\ \xbf\xbc\xbb\xbd\xbd\xbc\xbd\xbd\xbd\xbd\xbe\xbd\xbf\xc1\xc0\xc2\ \xc1\xc0\xc1\xbf\xbe\xc0\xc0\xbf\xc1\xc3\xc2\xc4\xc2\xc1\xc3\xc0\ \xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xbf\xbd\xbf\xbf\xbe\xc0\x00\x00\ \x00\xe1\xdc\xdb\xe1\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xde\xd9\xd8\ \xdb\xd6\xd5\xd8\xd2\xd2\xd6\xce\xcd\xcd\xc6\xc3\xc3\xbc\xb9\xb4\ \xae\xac\x96\x91\x90\x73\x75\x76\x56\x5b\x5f\x42\x49\x4e\x4a\x50\ \x56\x63\x65\x68\x80\x7d\x7e\x90\x8c\x8d\x9a\x97\x97\x9f\x9c\x9d\ \xa2\x9f\xa0\xa4\xa1\xa3\xa3\xa2\xa3\xa1\xa0\xa2\x9f\x9e\xa0\x9d\ \x9d\x9f\x9c\x9c\x9e\x98\x99\x9a\x96\x97\x98\x93\x94\x98\x91\x93\ \x97\x8d\x90\x94\x8d\x90\x94\x84\x88\x8c\x73\x78\x7c\x5c\x63\x68\ \x48\x51\x55\x53\x5a\x5f\x63\x68\x6c\x71\x75\x79\x76\x79\x7d\x6f\ \x73\x78\x72\x76\x7b\x6e\x71\x76\x72\x75\x79\x73\x77\x7c\x74\x78\ \x7d\x79\x7d\x82\x7a\x7e\x82\x78\x7d\x82\x76\x7c\x81\x77\x7d\x82\ \x77\x7d\x81\x77\x7d\x82\x7b\x83\x88\x7a\x81\x86\x7b\x82\x88\x79\ \x80\x86\x7a\x81\x88\x7c\x82\x89\x7b\x82\x88\x7c\x82\x88\x7d\x82\ \x89\x7b\x81\x87\x79\x7f\x84\x73\x7a\x7e\x70\x76\x7c\x72\x76\x7b\ \x74\x79\x7e\x68\x6f\x75\x57\x61\x68\x49\x52\x5b\x52\x5a\x62\x70\ \x74\x78\x7f\x84\x87\x7c\x80\x84\x7a\x7f\x82\x7e\x82\x86\x7f\x83\ \x87\x7b\x81\x83\x80\x84\x87\x8b\x8e\x92\x90\x93\x98\x91\x94\x99\ \x93\x96\x9b\x95\x98\x9d\x93\x96\x9b\x91\x94\x99\x95\x99\x9e\x97\ \x9a\x9f\x97\x9b\xa0\x96\x9b\x9f\x99\x9d\xa1\x9d\xa0\xa5\x9d\xa0\ \xa5\x9d\xa0\xa4\x9d\xa0\xa4\x9c\x9f\xa3\x9d\xa0\xa4\x9e\xa0\xa4\ \xa2\xa5\xa9\xa3\xa6\xa9\xa1\xa4\xa7\x98\x9c\xa0\x8c\x90\x93\x88\ \x8b\x8d\x96\x98\x9a\xa1\xa2\xa4\x99\x9c\x9e\x8c\x8e\x91\x92\x93\ \x95\xa3\xa3\xa4\xa5\xa7\xa8\x96\x99\x9a\x8b\x8d\x8d\x95\x96\x96\ \xa5\xa5\xa5\xa1\xa3\xa3\x92\x92\x93\x93\x91\x94\xa1\xa0\xa2\xaa\ \xa9\xaa\xa2\xa1\xa2\x93\x93\x94\x93\x93\x93\xa5\xa3\xa3\xb2\xb0\ \xb0\xb2\xb2\xb2\xb1\xb0\xb0\xb3\xb3\xb4\xb3\xb2\xb3\xb3\xb2\xb4\ \xb3\xb2\xb3\xb4\xb3\xb6\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb6\ \xb5\xb6\xb8\xb8\xb9\xba\xb9\xba\xbb\xbb\xbc\xbb\xbb\xbb\xba\xba\ \xba\xba\xba\xba\xbd\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbe\xbd\xbe\ \xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbe\xbe\xbf\xc1\xc0\xc2\xc1\ \xc0\xc2\xc0\xbf\xc1\xc1\xc0\xc1\xc1\xc0\xc2\xbf\xbe\xc0\xc0\xbf\ \xc1\xbf\xbe\xc0\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\ \xe0\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\ \xd0\xce\xd1\xcb\xc8\xcb\xc5\xc2\xc0\xb9\xb8\xaa\xa4\xa3\x8c\x8a\ \x8a\x68\x6c\x6e\x4c\x52\x55\x43\x49\x50\x54\x58\x5d\x71\x70\x74\ \x88\x83\x85\x95\x91\x92\x9d\x9a\x9c\xa2\x9f\xa1\xa3\xa0\xa2\xa4\ \xa1\xa3\xa3\xa2\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9a\x99\x9b\x9b\x9a\ \x9c\x97\x98\x99\x94\x96\x97\x93\x94\x97\x8e\x90\x93\x8c\x8f\x93\ \x8a\x8d\x91\x81\x84\x88\x6e\x73\x78\x57\x5f\x63\x4d\x56\x5a\x58\ \x60\x65\x66\x6c\x70\x71\x75\x79\x76\x79\x7d\x71\x76\x7a\x71\x75\ \x79\x73\x76\x7a\x6e\x72\x76\x71\x74\x7a\x72\x76\x7b\x79\x7d\x81\ \x79\x7e\x82\x77\x7d\x81\x77\x7d\x82\x77\x7e\x82\x75\x7b\x80\x7a\ \x80\x85\x79\x7f\x84\x7b\x81\x86\x7c\x83\x89\x79\x80\x85\x7b\x81\ \x86\x7c\x82\x87\x7b\x81\x87\x7d\x83\x89\x7d\x84\x8a\x7d\x84\x8b\ \x7e\x84\x89\x7a\x81\x86\x74\x7b\x7f\x71\x76\x7b\x75\x79\x7e\x76\ \x7a\x7f\x65\x6c\x72\x5b\x63\x69\x64\x6b\x70\x72\x77\x7b\x7b\x80\ \x84\x7e\x83\x87\x7b\x80\x83\x79\x7e\x81\x7f\x82\x86\x80\x85\x88\ \x7d\x83\x86\x80\x83\x88\x8b\x8e\x93\x92\x95\x99\x91\x94\x99\x94\ \x97\x9c\x92\x96\x9c\x91\x95\x9b\x94\x98\x9d\x97\x9b\xa0\x98\x9c\ \xa1\x99\x9d\xa1\x98\x9c\xa0\x9b\x9e\xa3\x9f\xa2\xa6\x9c\x9f\xa4\ \x9b\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\xa1\xa4\xa8\xa0\ \xa3\xa7\xa1\xa5\xa8\x9f\xa3\xa7\x9c\x9f\xa3\x92\x96\x99\x8a\x8d\ \x90\x94\x94\x97\xa4\xa4\xa6\x9f\xa0\xa2\x90\x92\x94\x91\x91\x93\ \xa2\xa3\xa4\xa9\xab\xac\x9b\x9d\x9d\x8f\x91\x91\x93\x93\x94\xa6\ \xa5\xa6\xaa\xaa\xaa\x9c\x9d\x9e\x91\x92\x94\x99\x98\x9a\xac\xa9\ \xaa\xa9\xa8\xa8\x99\x9a\x9a\x95\x95\x95\xa4\xa3\xa3\xb2\xb2\xb2\ \xb6\xb5\xb5\xb2\xb2\xb3\xb4\xb3\xb4\xb6\xb5\xb6\xb5\xb5\xb6\xb6\ \xb5\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb5\xb4\ \xb6\xbb\xba\xbb\xbc\xbb\xbc\xba\xba\xba\xbb\xbb\xbb\xba\xba\xba\ \xba\xb9\xbb\xbe\xbd\xbf\xc1\xbf\xc1\xc0\xbf\xc1\xbd\xbc\xbe\xbc\ \xbb\xbd\xbe\xbc\xbe\xc1\xbf\xc1\xc1\xc0\xc2\xc0\xbf\xc1\xc0\xbf\ \xc1\xc1\xc0\xc2\xc0\xbf\xc2\xc2\xc0\xc2\xc1\xc0\xc2\xc0\xbf\xc1\ \xc1\xc0\xc2\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\xe1\xdc\xdb\xe0\ \xdb\xda\xde\xd9\xd8\xdc\xd6\xd5\xd9\xd3\xd0\xd5\xce\xcb\xce\xc7\ \xc3\xc6\xbf\xbd\xba\xb4\xb4\xa0\x9a\x9b\x7f\x80\x80\x5d\x63\x63\ \x48\x4f\x52\x49\x4e\x54\x5d\x5e\x64\x7a\x76\x7a\x8e\x89\x8b\x98\ \x94\x96\x9d\x9b\x9c\xa1\x9f\xa0\xa5\xa2\xa4\xa3\xa0\xa2\xa4\xa2\ \xa3\x9f\x9d\x9f\x9d\x9c\x9e\x9b\x9a\x9c\x98\x97\x99\x97\x98\x9a\ \x91\x93\x97\x90\x93\x96\x8e\x90\x94\x8b\x8e\x92\x88\x8c\x8f\x80\ \x83\x87\x6c\x71\x75\x55\x5d\x61\x4e\x57\x5c\x5d\x64\x69\x69\x6d\ \x72\x75\x79\x7d\x70\x73\x78\x75\x78\x7d\x6e\x72\x77\x71\x74\x79\ \x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x75\x79\x7e\x77\x7c\x81\x78\ \x7d\x82\x76\x7b\x80\x76\x7c\x81\x78\x7e\x83\x7c\x82\x87\x79\x7f\ \x84\x7a\x81\x86\x7c\x83\x88\x7a\x82\x87\x7b\x81\x86\x7b\x81\x86\ \x7c\x82\x88\x7c\x82\x89\x7c\x83\x88\x7e\x85\x8a\x7e\x84\x8a\x7e\ \x85\x8a\x79\x7f\x84\x71\x77\x7c\x74\x78\x7d\x73\x78\x7d\x69\x6f\ \x74\x60\x68\x6d\x6e\x74\x79\x7c\x80\x85\x7b\x7f\x83\x7b\x7f\x84\ \x7f\x84\x87\x7c\x81\x84\x7b\x7f\x83\x81\x86\x89\x83\x88\x8b\x7e\ \x83\x86\x80\x83\x87\x8c\x8f\x93\x91\x94\x98\x94\x97\x9c\x94\x98\ \x9d\x95\x99\x9f\x96\x9a\x9f\x96\x9a\x9f\x97\x9b\xa0\x99\x9c\xa1\ \x9b\x9e\xa3\x9d\xa0\xa5\x9d\xa0\xa5\x9e\xa1\xa6\x9c\x9f\xa4\x9e\ \xa1\xa5\x9f\xa2\xa6\xa0\xa3\xa7\xa0\xa3\xa7\x9f\xa2\xa6\xa0\xa4\ \xa7\xa1\xa3\xa7\xa3\xa5\xa9\xa3\xa5\xa8\x9a\x9a\x9f\x8f\x8f\x93\ \x90\x91\x93\xa4\xa4\xa6\xa5\xa7\xa8\x96\x98\x9a\x90\x93\x94\x9d\ \x9f\xa0\xa9\xaa\xaa\xa3\xa3\xa4\x8f\x90\x91\x93\x93\x95\xa4\xa4\ \xa5\xab\xab\xac\x9f\xa0\xa2\x8e\x90\x91\x94\x93\x94\xa6\xa5\xa5\ \xae\xad\xad\xa5\xa5\xa5\x95\x95\x95\x99\x98\x98\xad\xab\xab\xb7\ \xb5\xb7\xb5\xb4\xb5\xb4\xb4\xb4\xb7\xb7\xb7\xb5\xb5\xb6\xb4\xb4\ \xb5\xb4\xb3\xb5\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb8\xba\xbb\xba\xbb\ \xb8\xb8\xb8\xba\xba\xba\xbd\xbd\xbd\xbc\xbb\xbb\xba\xba\xba\xbd\ \xbc\xbe\xc0\xbf\xc1\xc1\xc0\xc1\xbd\xbc\xbe\xbc\xbb\xbd\xbe\xbe\ \xbf\xc1\xc0\xc1\xc1\xbf\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc1\ \xc1\xc0\xc1\xbf\xbe\xc0\xc2\xbf\xc1\xc3\xc2\xc4\xc4\xc3\xc5\xc0\ \xc0\xc2\x00\x00\x00\xdf\xdb\xda\xe0\xdb\xda\xdf\xda\xd9\xdd\xd7\ \xd7\xdb\xd5\xd5\xd8\xd2\xd2\xd5\xce\xcb\xcc\xc5\xc2\xc1\xbb\xb8\ \xb0\xaa\xa8\x92\x8e\x8e\x70\x72\x71\x53\x5a\x5c\x46\x4d\x50\x4d\ \x50\x55\x68\x68\x6a\x81\x7d\x7e\x90\x8c\x8d\x9c\x99\x9a\xa1\x9f\ \xa0\xa1\x9f\xa0\xa3\xa0\xa2\xa4\xa1\xa3\xa0\x9e\xa0\x9e\x9d\x9f\ \x9c\x9b\x9d\x9d\x9c\x9e\x97\x96\x99\x93\x93\x97\x8f\x91\x93\x8e\ \x90\x94\x8c\x8f\x93\x89\x8c\x8f\x87\x8b\x8e\x7e\x83\x86\x71\x77\ \x7c\x64\x6c\x71\x55\x5e\x62\x63\x69\x6d\x6b\x6f\x75\x75\x78\x7c\ \x6f\x72\x77\x72\x75\x7a\x70\x73\x78\x6e\x71\x76\x70\x73\x78\x6c\ \x71\x76\x6f\x74\x78\x71\x75\x79\x75\x7b\x7f\x79\x7e\x83\x77\x7d\ \x82\x77\x7d\x82\x77\x7d\x82\x78\x7d\x82\x78\x7e\x83\x7c\x81\x86\ \x7b\x80\x85\x7c\x82\x88\x7c\x82\x87\x79\x7f\x84\x7a\x80\x85\x7b\ \x81\x86\x7b\x81\x86\x7d\x83\x88\x80\x86\x8b\x81\x87\x8c\x80\x86\ \x8b\x76\x7c\x81\x73\x79\x7e\x6a\x70\x75\x67\x6d\x72\x6a\x71\x76\ \x6e\x73\x78\x7a\x7e\x81\x7c\x81\x85\x79\x7e\x82\x7b\x80\x83\x82\ \x87\x8a\x7e\x82\x86\x7b\x7f\x84\x85\x88\x8c\x87\x8b\x8f\x7f\x83\ \x86\x82\x85\x89\x8f\x92\x97\x93\x96\x9a\x93\x96\x9b\x96\x9a\x9f\ \x94\x97\x9c\x95\x99\x9e\x97\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9c\ \x9f\xa4\x9e\xa1\xa5\x9e\xa1\xa5\x9b\x9e\xa3\x9e\xa1\xa5\x9f\xa2\ \xa6\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa2\xa5\xa9\xa4\xa7\xab\ \xa7\xa8\xac\xa8\xa9\xad\xa6\xa7\xab\x9e\x9f\xa3\x94\x95\x99\x92\ \x93\x97\xa2\xa3\xa5\xa8\xaa\xab\x9d\x9f\xa0\x91\x93\x94\x99\x99\ \x9b\xa8\xa8\xa9\xa7\xa8\xa8\x96\x97\x98\x90\x91\x92\x9b\x9a\x9b\ \xac\xac\xac\xa8\xa8\xaa\x97\x99\x9a\x93\x93\x95\xa5\xa4\xa4\xb0\ \xae\xae\xac\xab\xab\x95\x95\x95\x91\x91\x91\xa8\xa6\xa6\xb7\xb7\ \xb7\xb3\xb3\xb3\xb5\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb6\xb4\xb4\xb5\ \xb5\xb5\xb6\xb8\xb6\xb7\xb9\xb9\xba\xba\xba\xba\xb9\xb9\xb9\xb9\ \xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbc\xbd\xbd\xbd\xbd\xbc\xbe\xbe\xbd\ \xbe\xbf\xbe\xbf\xbb\xb9\xbb\xb9\xb8\xba\xbc\xbb\xbd\xc0\xbf\xc1\ \xc0\xbf\xc1\xc2\xc0\xc1\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbe\xbd\ \xbb\xbc\xbe\xbc\xbc\xbe\xbd\xbe\xbe\xbc\xbe\xbf\xbd\xbf\x00\x00\ \x00\xe0\xd9\xd7\xdf\xd9\xd7\xdf\xda\xd9\xdd\xd7\xd6\xda\xd4\xd4\ \xd6\xd0\xd0\xd2\xcb\xca\xcb\xc4\xc1\xbf\xb8\xb4\xa7\xa1\x9d\x86\ \x86\x82\x67\x6b\x6a\x4e\x55\x59\x46\x4e\x52\x56\x5a\x5c\x72\x6f\ \x70\x89\x84\x85\x95\x90\x91\x9c\x9a\x9a\xa1\x9f\xa0\xa3\xa0\xa1\ \xa2\x9f\xa1\xa3\xa0\xa2\xa0\x9f\xa1\x9c\x9b\x9d\x9b\x9a\x9c\x99\ \x98\x9b\x93\x93\x96\x93\x94\x98\x92\x93\x96\x90\x91\x95\x8d\x90\ \x93\x88\x8c\x8e\x85\x89\x8b\x81\x86\x89\x79\x7f\x82\x70\x77\x7a\ \x68\x6e\x73\x6b\x6f\x74\x70\x75\x78\x71\x75\x79\x70\x74\x78\x6b\ \x6f\x73\x6e\x71\x76\x6e\x71\x76\x70\x72\x77\x6d\x71\x76\x6f\x73\ \x78\x72\x76\x79\x74\x78\x7c\x78\x7c\x81\x77\x7d\x82\x76\x7d\x82\ \x76\x7b\x80\x78\x7d\x82\x7a\x7f\x84\x7a\x7f\x84\x7b\x81\x86\x7c\ \x82\x87\x7c\x82\x87\x7b\x81\x86\x7d\x83\x87\x7c\x82\x88\x7c\x82\ \x87\x7d\x83\x88\x7d\x83\x88\x7d\x83\x87\x7e\x86\x8a\x7e\x87\x8b\ \x79\x80\x85\x68\x71\x75\x61\x6a\x6e\x6c\x71\x76\x72\x78\x7c\x76\ \x7c\x7f\x7c\x81\x85\x7d\x81\x86\x79\x7d\x81\x7e\x83\x85\x81\x86\ \x89\x7e\x83\x86\x7c\x80\x83\x84\x89\x8c\x85\x88\x8c\x7f\x83\x87\ \x84\x87\x8c\x8f\x92\x96\x93\x96\x9b\x95\x98\x9d\x95\x98\x9d\x93\ \x97\x9c\x96\x9a\x9e\x99\x9d\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\ \xa5\xa0\xa3\xa7\x9f\xa2\xa6\x9f\xa2\xa6\x9e\xa1\xa5\x9d\xa0\xa5\ \x9f\xa2\xa6\xa1\xa4\xa8\xa2\xa5\xaa\xa5\xa8\xac\xa4\xa6\xaa\xa4\ \xa5\xa8\xa9\xaa\xad\xac\xad\xb0\xa2\xa4\xa7\x96\x97\x9b\x92\x93\ \x96\x9f\x9f\xa2\xab\xac\xad\xa2\xa4\xa5\x94\x94\x97\x92\x92\x94\ \xa6\xa7\xa7\xa9\xab\xac\x9d\x9f\xa0\x90\x91\x92\x96\x96\x98\xaa\ \xa9\xab\xac\xac\xae\x9e\x9f\xa0\x93\x93\x93\x9e\x9d\x9d\xb0\xad\ \xae\xac\xac\xac\x9e\x9e\x9e\x96\x95\x95\xa1\xa0\xa0\xb1\xb1\xb1\ \xb4\xb4\xb5\xb5\xb5\xb6\xb6\xb5\xb6\xb5\xb5\xb6\xb6\xb6\xb7\xb7\ \xb5\xb7\xb6\xb5\xb7\xb7\xb6\xb8\xb9\xb8\xba\xbb\xbb\xbb\xba\xba\ \xba\xbd\xbd\xbd\xbf\xbf\xbf\xbc\xbc\xbd\xbc\xbb\xbd\xbb\xba\xbc\ \xb9\xb8\xba\xb9\xb8\xba\xbd\xbb\xbd\xbf\xbd\xbf\xbf\xbd\xbf\xc3\ \xc1\xc3\xc2\xbf\xc0\xc0\xbd\xbe\xbb\xb7\xb8\xba\xb8\xb8\xbd\xbb\ \xbb\xbd\xbc\xbc\xbb\xbb\xbb\xbf\xbd\xc0\x00\x00\x00\xe1\xd9\xd9\ \xdf\xd7\xd7\xdd\xd6\xd6\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\xcc\xce\ \xc7\xc4\xc5\xbe\xbb\xb7\xb1\xad\x9c\x98\x94\x7b\x7e\x7c\x5b\x61\ \x61\x45\x4b\x50\x49\x4f\x51\x5f\x61\x63\x7b\x77\x78\x8d\x88\x89\ \x99\x94\x95\x9f\x9b\x9b\xa2\xa0\xa0\xa4\xa2\xa2\xa2\x9f\xa1\xa2\ \x9e\xa0\x9f\x9e\xa0\x9c\x9b\x9d\x9c\x9b\x9d\x98\x98\x9c\x92\x92\ \x96\x91\x92\x96\x90\x91\x95\x90\x92\x96\x8b\x8e\x92\x88\x8b\x8f\ \x86\x89\x8d\x83\x88\x8b\x7f\x84\x87\x7c\x82\x85\x76\x7c\x7f\x75\ \x7b\x7e\x75\x79\x7c\x69\x6e\x72\x67\x6b\x70\x63\x66\x6b\x66\x69\ \x6e\x69\x6d\x71\x61\x65\x6a\x68\x6c\x71\x6a\x6e\x73\x6f\x74\x77\ \x6f\x73\x78\x73\x77\x7c\x76\x7b\x80\x76\x7c\x80\x78\x7e\x83\x79\ \x7f\x84\x78\x7e\x83\x7b\x7f\x84\x79\x80\x85\x79\x7f\x84\x79\x7f\ \x84\x7c\x82\x87\x7d\x83\x88\x7c\x82\x87\x7c\x82\x87\x7e\x84\x89\ \x7e\x84\x89\x7d\x84\x88\x7f\x85\x8a\x80\x86\x8b\x7c\x82\x87\x69\ \x71\x76\x64\x6d\x71\x6c\x72\x77\x7b\x80\x84\x78\x7e\x82\x77\x7d\ \x81\x7d\x81\x85\x7f\x84\x87\x7b\x80\x83\x7f\x84\x86\x84\x89\x8b\ \x80\x85\x87\x80\x85\x86\x87\x8b\x8c\x87\x8b\x8e\x81\x85\x89\x82\ \x86\x8a\x8e\x91\x95\x94\x97\x9c\x94\x98\x9d\x92\x96\x9b\x97\x9a\ \x9e\x99\x9c\xa0\x9c\x9f\xa3\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\ \x9e\xa1\xa5\x9e\xa1\xa5\xa1\xa4\xa8\xa0\xa3\xa7\xa0\xa3\xa7\xa2\ \xa4\xa8\xa3\xa5\xa9\xa4\xa5\xa9\xa4\xa6\xa9\xa4\xa5\xa9\xa9\xaa\ \xad\xaa\xaa\xad\xa8\xa9\xac\xa6\xa8\xac\x99\x9b\xa0\x8f\x92\x95\ \x9a\x9a\x9c\xa9\xaa\xab\xa9\xa9\xab\x9a\x9c\x9d\x90\x92\x93\xa1\ \xa2\xa3\xab\xab\xab\xa6\xa7\xa7\x96\x98\x99\x94\x94\x95\xa7\xa6\ \xa7\xaf\xae\xae\xa5\xa5\xa5\x94\x94\x94\x99\x98\x98\xa9\xa8\xa8\ \xb3\xb3\xb3\xa7\xa8\xa8\x96\x97\x97\x94\x94\x94\xa9\xa8\xa8\xb4\ \xb2\xb2\xb6\xb5\xb5\xb5\xb5\xb5\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\ \xb9\xb7\xb6\xb8\xb4\xb3\xb5\xb7\xb5\xb5\xb8\xb8\xb8\xbc\xbc\xbc\ \xbb\xbb\xbb\xba\xb9\xb9\xbc\xbb\xbb\xbb\xbb\xbc\xbb\xba\xbc\xbe\ \xbc\xbe\xbd\xbb\xbd\xbc\xba\xbc\xbe\xbc\xbe\xc2\xc0\xc1\xc3\xc0\ \xc1\xc0\xbe\xbe\xbd\xbb\xbb\xba\xb8\xb8\xbb\xb9\xb9\xbb\xb9\xb9\ \xbc\xbc\xbc\xbf\xbe\xc0\x00\x00\x00\xdf\xd7\xd7\xde\xd7\xd5\xdd\ \xd5\xd5\xda\xd3\xd2\xd7\xcf\xcf\xd3\xcb\xcb\xcb\xc3\xc1\xc1\xb9\ \xb8\xaf\xa7\xa7\x90\x8c\x8b\x6d\x71\x70\x52\x59\x5b\x44\x4a\x4f\ \x51\x56\x59\x6a\x6b\x6d\x82\x7e\x7f\x94\x8f\x90\x9b\x97\x98\x9f\ \x9c\x9d\xa0\x9f\x9e\xa2\xa0\xa1\xa2\xa0\xa2\x9f\x9d\x9f\x9c\x9b\ \x9d\x9b\x9a\x9c\x99\x98\x9a\x96\x95\x98\x93\x92\x96\x8c\x8e\x91\ \x8d\x8e\x92\x8c\x8e\x92\x89\x8c\x90\x88\x8c\x8f\x87\x8a\x8d\x83\ \x88\x8b\x83\x88\x8b\x81\x86\x89\x7d\x83\x86\x77\x7c\x7f\x75\x7a\ \x7d\x65\x69\x6d\x50\x54\x59\x50\x54\x59\x58\x5b\x5f\x5c\x60\x63\ \x55\x59\x5d\x53\x58\x5c\x62\x66\x6a\x6b\x70\x73\x6d\x72\x76\x6f\ \x74\x78\x76\x7a\x7f\x79\x7c\x81\x79\x7d\x82\x79\x7d\x82\x77\x7c\ \x81\x79\x7e\x83\x7a\x80\x85\x77\x7d\x82\x78\x7e\x83\x7c\x82\x88\ \x7d\x83\x89\x7b\x81\x86\x7b\x81\x86\x7e\x83\x88\x80\x86\x8a\x7e\ \x85\x8a\x80\x87\x8c\x81\x87\x8b\x76\x7c\x81\x6e\x77\x7b\x69\x72\ \x76\x6f\x76\x7a\x7a\x7f\x84\x7c\x81\x85\x77\x7c\x81\x77\x7c\x7f\ \x80\x84\x88\x80\x85\x88\x7c\x80\x83\x80\x84\x86\x85\x89\x8a\x81\ \x86\x88\x80\x84\x87\x89\x8c\x90\x89\x8d\x91\x82\x87\x8b\x81\x84\ \x88\x90\x93\x97\x96\x99\x9d\x96\x9a\x9e\x95\x99\x9d\x97\x9a\x9e\ \x9b\x9e\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\xa0\ \xa3\xa7\xa3\xa4\xa8\xa1\xa4\xa8\xa0\xa3\xa7\xa2\xa4\xa8\xa3\xa5\ \xa9\xa6\xa8\xaa\xa7\xa8\xab\xa8\xaa\xad\xa7\xa8\xac\xa8\xa9\xac\ \xa8\xa9\xac\xac\xad\xb1\xab\xac\xb0\xa1\xa2\xa7\x92\x93\x97\x94\ \x95\x99\xa5\xa6\xa8\xa7\xa9\xaa\x9a\x9b\x9c\x92\x93\x94\x9d\x9c\ \x9c\xac\xad\xac\xac\xad\xad\x9c\x9c\x9d\x94\x92\x94\xa0\x9f\xa0\ \xb0\xaf\xaf\xad\xae\xae\x9b\x9c\x9c\x93\x92\x92\xa1\xa1\xa1\xae\ \xae\xae\xab\xab\xab\xa0\xa0\xa0\x95\x94\x94\xa1\x9e\x9e\xb3\xb2\ \xb1\xb9\xb8\xb8\xb8\xb6\xb8\xb9\xb7\xb9\xba\xb8\xba\xb8\xb6\xb7\ \xb4\xb2\xb3\xb3\xb0\xb3\xb4\xb4\xb4\xbe\xbd\xbd\xbc\xbc\xbc\xbc\ \xbc\xbc\xbc\xbc\xbc\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbd\xbf\xbf\xbe\ \xbf\xbf\xbd\xbf\xc1\xbe\xbf\xc1\xbf\xc0\xc1\xbf\xbf\xbe\xbb\xbd\ \xbd\xbb\xbc\xbc\xba\xba\xbd\xbb\xbc\xbc\xba\xba\xbf\xbc\xbd\xbf\ \xbd\xbf\x00\x00\x00\xdf\xd7\xd7\xdf\xd7\xd7\xdc\xd5\xd5\xd9\xd4\ \xd3\xd7\xcf\xcf\xd2\xca\xca\xc8\xc0\xbe\xba\xb1\xb1\xa6\x9f\x9f\ \x82\x81\x81\x60\x65\x67\x4b\x53\x58\x46\x4c\x50\x57\x5b\x5d\x73\ \x74\x75\x88\x85\x86\x96\x92\x94\x9d\x98\x9a\xa0\x9e\x9e\xa1\x9f\ \x9f\xa0\x9e\x9f\xa1\x9e\xa0\x9e\x9c\x9e\x9c\x9c\x9d\x99\x98\x9a\ \x98\x97\x99\x92\x93\x96\x8f\x91\x93\x8d\x8d\x90\x8c\x8d\x91\x8a\ \x8b\x8f\x87\x89\x8c\x85\x87\x8a\x83\x87\x8a\x84\x89\x8c\x82\x87\ \x8a\x80\x85\x88\x7c\x81\x84\x7b\x81\x84\x76\x7b\x7e\x60\x65\x69\ \x3d\x44\x4c\x39\x41\x48\x49\x4d\x52\x4f\x52\x55\x45\x4b\x4e\x3c\ \x42\x48\x55\x59\x5e\x67\x6c\x6f\x6c\x70\x75\x6c\x71\x77\x73\x78\ \x7c\x78\x7c\x81\x7a\x7e\x83\x7b\x7f\x84\x77\x7c\x80\x79\x7d\x82\ \x79\x7f\x84\x78\x7e\x83\x7a\x80\x85\x7c\x82\x87\x7d\x83\x89\x7d\ \x83\x88\x7b\x81\x85\x7b\x7f\x83\x7d\x82\x85\x80\x86\x8b\x82\x88\ \x8d\x7e\x85\x89\x74\x7b\x80\x6d\x76\x7a\x73\x7c\x7f\x7a\x81\x85\ \x77\x7e\x82\x79\x7e\x82\x7e\x84\x87\x78\x7e\x83\x7a\x7f\x82\x82\ \x87\x8a\x81\x86\x89\x7c\x80\x83\x82\x86\x88\x86\x8b\x8d\x82\x87\ \x8a\x7f\x82\x86\x89\x8c\x90\x89\x8e\x91\x7f\x84\x87\x80\x83\x87\ \x8f\x92\x96\x96\x99\x9d\x96\x99\x9d\x98\x9b\x9f\x99\x9d\xa0\x9b\ \x9f\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\xa0\xa3\xa7\xa3\xa3\ \xa7\xa1\xa3\xa7\xa1\xa4\xa8\xa2\xa4\xa8\xa4\xa6\xaa\xa2\xa3\xa7\ \xa7\xa8\xab\xa8\xaa\xac\xa6\xa8\xaa\xa7\xa8\xaa\xa9\xa9\xab\xad\ \xad\xb0\xad\xae\xb1\xad\xae\xb3\xa4\xa4\xa9\x97\x98\x9c\x8f\x90\ \x93\x9e\x9d\x9e\xab\xab\xab\xa2\xa3\xa4\x93\x95\x96\x9b\x9b\x9b\ \xac\xac\xac\xb0\xaf\xb1\xa3\xa2\xa4\x95\x94\x96\x9c\x9a\x9c\xab\ \xab\xab\xb1\xb2\xb2\xa2\xa5\xa4\x95\x95\x97\x98\x97\x97\xad\xac\ \xac\xb3\xb2\xb1\xa9\xa8\xa9\x98\x97\x98\x9e\x9c\x9d\xae\xac\xad\ \xb7\xb5\xb6\xb9\xb6\xb8\xb8\xb5\xb8\xba\xb7\xb9\xb7\xb4\xb7\xb7\ \xb5\xb7\xb5\xb4\xb4\xb9\xb8\xb9\xbd\xbb\xbd\xbd\xbc\xbe\xba\xba\ \xbb\xb9\xb8\xb9\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbc\xbf\xbe\xbd\xbe\ \xbf\xbd\xbe\xbc\xba\xbc\xbc\xba\xba\xbb\xb8\xb9\xbc\xba\xba\xbc\ \xba\xba\xbc\xba\xbb\xbd\xbb\xbc\xbf\xbc\xbe\xc1\xbf\xc1\x00\x00\ \x00\xde\xd6\xd5\xde\xd6\xd6\xdb\xd4\xd4\xd8\xd2\xd1\xd4\xcd\xcd\ \xce\xc6\xc6\xc5\xbd\xbc\xb6\xad\xac\x9a\x94\x94\x77\x77\x78\x5a\ \x5f\x64\x48\x50\x58\x4d\x52\x56\x62\x63\x65\x7b\x7a\x7a\x8d\x8a\ \x8a\x99\x93\x95\x9e\x99\x9a\xa2\x9d\x9e\xa1\x9f\xa0\xa0\x9e\x9e\ \xa0\x9e\x9e\x9e\x9d\x9e\x9b\x9a\x9c\x9a\x99\x9b\x96\x95\x97\x93\ \x93\x95\x8f\x92\x93\x8d\x8f\x91\x8a\x8c\x8f\x87\x89\x8c\x85\x88\ \x8a\x85\x88\x8c\x84\x87\x8c\x82\x86\x8a\x81\x85\x88\x80\x86\x89\ \x7d\x83\x86\x7d\x82\x85\x71\x76\x78\x58\x5f\x63\x2f\x39\x41\x2b\ \x35\x3e\x38\x3e\x45\x3e\x43\x47\x38\x3e\x43\x34\x3c\x44\x47\x4d\ \x53\x68\x6c\x6f\x6c\x72\x76\x6f\x75\x7a\x71\x75\x7a\x75\x79\x7e\ \x7a\x7e\x83\x77\x7b\x80\x77\x7d\x81\x79\x7d\x82\x78\x7e\x83\x78\ \x7e\x83\x7a\x80\x85\x7b\x81\x86\x7d\x83\x88\x7e\x84\x89\x75\x7a\ \x7e\x6c\x71\x75\x75\x79\x7c\x7f\x84\x89\x83\x88\x8d\x7e\x84\x89\ \x78\x80\x85\x73\x7c\x80\x7b\x82\x85\x83\x8a\x8d\x7c\x82\x86\x76\ \x7c\x81\x7a\x7f\x84\x80\x85\x8a\x7c\x81\x84\x7d\x82\x85\x84\x89\ \x8b\x82\x87\x8a\x7c\x81\x82\x82\x86\x86\x8a\x8e\x8f\x85\x8a\x8d\ \x81\x85\x89\x8a\x8d\x91\x8b\x8f\x92\x84\x89\x8c\x83\x86\x8a\x8e\ \x90\x94\x97\x9a\x9e\x98\x9b\x9f\x98\x9b\x9d\x9b\x9e\xa1\x9e\xa0\ \xa4\xa0\xa2\xa6\x9f\xa1\xa4\xa2\xa3\xa7\xa2\xa3\xa7\xa2\xa5\xa9\ \xa3\xa4\xa8\xa1\xa3\xa7\xa2\xa3\xa7\xa1\xa2\xa6\xa3\xa5\xa7\xa8\ \xab\xab\xa8\xa9\xaa\xa9\xa8\xaa\xac\xab\xae\xac\xad\xaf\xac\xad\ \xae\xac\xad\xb0\xab\xac\xaf\xaa\xab\xad\x9c\x9d\xa1\x92\x92\x94\ \x9d\x9d\x9d\xad\xad\xad\xa7\xa8\xa8\x9a\x9c\x9c\x96\x97\x98\xa5\ \xa5\xa6\xb0\xaf\xb1\xab\xaa\xac\x98\x99\x9a\x96\x95\x97\xa6\xa6\ \xa6\xb4\xb5\xb5\xb0\xb0\xb0\x9b\x9a\x9b\x97\x96\x96\xa8\xa4\xa4\ \xb3\xb2\xb2\xb1\xb1\xb2\x9d\x9d\x9e\x95\x94\x96\xa2\xa0\xa2\xaf\ \xad\xae\xb7\xb4\xb6\xba\xb9\xbb\xba\xb9\xbb\xba\xb8\xba\xb7\xb5\ \xb6\xb9\xb9\xb9\xba\xb9\xbb\xbc\xbc\xbd\xbb\xbb\xbc\xb9\xb8\xba\ \xbb\xbb\xbc\xbd\xbc\xbd\xbe\xbd\xbf\xbe\xbd\xbf\xbf\xbe\xc0\xc1\ \xc0\xc2\xbf\xbd\xbe\xbb\xb8\xb9\xbb\xb8\xba\xc0\xbd\xbf\xbd\xba\ \xbc\xc0\xbe\xc0\xbf\xbd\xbf\xc2\xc0\xc2\x00\x00\x00\xde\xd7\xd5\ \xde\xd6\xd6\xda\xd2\xd2\xd8\xd0\xd0\xd3\xcb\xcb\xcb\xc3\xc3\xc0\ \xb8\xb8\xab\xa4\xa4\x8d\x8a\x89\x6d\x6e\x71\x50\x56\x5c\x46\x4e\ \x55\x54\x58\x5d\x6e\x6d\x6f\x86\x82\x83\x92\x8d\x8e\x9a\x95\x96\ \x9e\x99\x9a\xa2\x9f\xa0\xa2\x9f\xa0\x9f\x9c\x9e\x9d\x9a\x9c\x9d\ \x9b\x9d\x9a\x99\x9b\x97\x96\x98\x94\x93\x95\x91\x93\x94\x8c\x8e\ \x90\x8c\x8d\x91\x89\x8d\x91\x86\x89\x8d\x84\x87\x8a\x83\x86\x8a\ \x80\x84\x88\x7f\x84\x87\x7f\x84\x87\x7e\x84\x87\x7b\x81\x86\x7a\ \x7f\x83\x6c\x72\x76\x4e\x57\x5b\x26\x32\x3b\x26\x31\x38\x30\x39\ \x40\x34\x3a\x40\x29\x30\x37\x31\x3a\x41\x4c\x52\x59\x67\x6b\x70\ \x6d\x72\x77\x6d\x73\x78\x70\x74\x7a\x71\x76\x7b\x76\x7b\x80\x79\ \x7d\x82\x7a\x7e\x83\x77\x7c\x80\x78\x7e\x83\x78\x7e\x83\x7a\x80\ \x85\x7b\x82\x87\x7d\x84\x88\x78\x7e\x83\x66\x6d\x72\x5c\x62\x68\ \x63\x67\x6c\x76\x79\x7e\x82\x86\x8a\x81\x86\x8b\x7f\x85\x89\x7d\ \x85\x88\x82\x88\x8c\x86\x8c\x8f\x83\x8a\x8d\x7c\x82\x86\x78\x7e\ \x82\x7e\x82\x86\x82\x86\x89\x7e\x83\x85\x80\x85\x87\x85\x8a\x8c\ \x83\x88\x89\x7e\x82\x83\x85\x89\x8a\x8c\x8f\x91\x86\x8b\x8d\x82\ \x86\x89\x8c\x90\x94\x8e\x91\x95\x86\x8a\x8e\x84\x87\x8b\x8e\x90\ \x94\x99\x9b\x9e\x9d\xa0\xa2\x9e\xa0\xa4\x9f\xa0\xa4\x9f\xa0\xa2\ \xa1\xa2\xa5\x9e\x9f\xa3\xa0\xa2\xa6\xa3\xa4\xa8\xa2\xa3\xa7\xa1\ \xa2\xa5\xa2\xa4\xa8\xa2\xa3\xa6\xa2\xa4\xa5\xa5\xa6\xa7\xab\xab\ \xac\xae\xac\xae\xac\xab\xac\xab\xab\xad\xac\xac\xae\xac\xac\xb0\ \xab\xad\xae\xac\xac\xae\xaa\xac\xad\xa2\xa4\xa5\x94\x96\x97\x95\ \x95\x96\xa6\xa5\xa6\xac\xac\xad\x9f\xa0\xa1\x97\x96\x98\x9e\x9e\ \x9f\xad\xad\xad\xaf\xaf\xaf\xa1\xa0\xa2\x96\x95\x98\xa3\xa2\xa2\ \xb0\xb0\xaf\xb3\xb2\xb3\xa5\xa5\xa5\x98\x97\x97\x9e\x9c\x9b\xae\ \xad\xac\xb0\xb0\xb0\xa3\xa3\xa4\x96\x95\x97\x9d\x9b\x9d\xad\xaa\ \xac\xb7\xb5\xb7\xb9\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb8\xb7\xb7\ \xb8\xb7\xb7\xb6\xb6\xb6\xba\xba\xbb\xbb\xbb\xbb\xbc\xbb\xbc\xbd\ \xbc\xbd\xbc\xbb\xbd\xbd\xbd\xbe\xc0\xbf\xc1\xc2\xc1\xc3\xbf\xbe\ \xc0\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbc\xbd\xba\xbc\xc1\xbe\xc0\ \xc3\xc0\xc2\xc1\xc0\xc2\x00\x00\x00\xdd\xd6\xd4\xdd\xd5\xd5\xd9\ \xd2\xd1\xd5\xcd\xcd\xcf\xc7\xc7\xc7\xbe\xbd\xb9\xb0\xaf\xa0\x99\ \x98\x81\x7f\x7e\x62\x64\x67\x48\x4e\x55\x46\x4c\x53\x5b\x5e\x62\ \x76\x73\x74\x8a\x84\x85\x95\x8f\x90\x9b\x97\x98\xa0\x9d\x9f\xa1\ \x9e\xa0\xa1\x9f\xa1\x9f\x9d\x9f\x9c\x9a\x9c\x9d\x9b\x9d\x98\x97\ \x99\x95\x94\x96\x95\x95\x98\x8e\x90\x92\x8d\x8f\x92\x8a\x8c\x90\ \x88\x8b\x8f\x87\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x82\x86\x89\x7f\ \x84\x87\x7e\x82\x86\x7d\x81\x85\x7c\x81\x85\x79\x7f\x83\x68\x70\ \x75\x45\x53\x59\x2b\x3a\x42\x2d\x37\x3e\x36\x3e\x45\x2d\x36\x3c\ \x26\x30\x37\x37\x40\x47\x59\x5e\x66\x67\x6c\x72\x6e\x73\x78\x6b\ \x71\x76\x6d\x73\x79\x6e\x73\x79\x70\x76\x7a\x7a\x7e\x83\x78\x7d\ \x82\x78\x7d\x81\x79\x7f\x84\x7a\x80\x85\x79\x7f\x84\x7b\x81\x86\ \x7b\x81\x86\x75\x7c\x81\x64\x6e\x74\x4d\x57\x5f\x4b\x52\x5b\x63\ \x66\x6d\x78\x7c\x80\x81\x87\x8b\x85\x8a\x8f\x83\x89\x8d\x85\x8c\ \x90\x84\x8a\x8e\x85\x8c\x8f\x83\x8a\x8d\x7d\x83\x87\x7c\x81\x85\ \x7e\x83\x86\x83\x88\x8b\x7f\x84\x88\x80\x84\x86\x87\x8b\x8d\x84\ \x88\x89\x81\x84\x87\x88\x8c\x8d\x8b\x8e\x90\x89\x8e\x90\x81\x86\ \x89\x89\x8c\x90\x8f\x92\x97\x88\x8b\x8f\x84\x87\x8b\x91\x93\x96\ \x9c\x9e\xa0\x9d\xa0\xa3\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa2\xa6\x9e\ \x9f\xa3\x9f\xa0\xa4\xa1\xa3\xa7\xa1\xa2\xa7\xa2\xa3\xa7\xa4\xa5\ \xa8\xa3\xa5\xa7\xa1\xa2\xa3\xa5\xa5\xa7\xab\xaa\xab\xab\xaa\xac\ \xac\xab\xad\xac\xab\xad\xac\xab\xad\xad\xae\xaf\xac\xae\xb0\xab\ \xac\xae\xad\xae\xb0\xae\xae\xb0\xa5\xa7\xa8\x98\x9a\x9b\x97\x96\ \x98\xa5\xa4\xa6\xae\xae\xaf\xa8\xa8\xa9\x9a\x99\x9a\x9c\x9b\x9c\ \xa9\xa7\xa9\xb2\xb1\xb1\xa8\xa7\xa9\x9b\x9a\x9c\x9c\x9c\x9d\xab\ \xaa\xab\xb2\xb2\xb2\xaa\xaa\xa9\x9b\x9a\x9a\x97\x96\x97\xa4\xa3\ \xa4\xb0\xb0\xb0\xad\xac\xae\x9d\x9c\x9d\x9b\x99\x9b\xa8\xa6\xa8\ \xb4\xb1\xb3\xb9\xb7\xb9\xb8\xb7\xb9\xba\xb8\xba\xb8\xb8\xb9\xb7\ \xb6\xb8\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xbd\xbc\ \xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xbf\xc1\xbf\xbd\xbf\ \xc0\xbe\xc1\xbd\xbb\xbe\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xbf\xc1\xbf\ \xbd\xbf\x00\x00\x00\xdd\xd6\xd3\xdb\xd3\xd4\xd8\xd1\xd1\xd4\xcc\ \xcc\xcd\xc4\xc3\xc3\xb9\xb6\xb2\xa9\xa6\x94\x90\x8e\x73\x75\x73\ \x57\x5c\x5e\x48\x4e\x53\x4f\x52\x58\x67\x67\x6a\x7d\x7a\x7a\x8f\ \x8a\x8a\x98\x93\x94\x9d\x99\x9a\x9f\x9c\x9e\xa1\x9e\x9f\xa1\x9e\ \xa0\x9e\x9c\x9f\x9b\x9a\x9c\x9b\x9a\x9c\x98\x97\x99\x94\x95\x96\ \x91\x92\x95\x8d\x8e\x92\x8a\x8d\x92\x87\x8a\x8e\x85\x88\x8c\x86\ \x89\x8d\x83\x87\x8b\x83\x87\x8a\x82\x86\x89\x7f\x83\x86\x7d\x81\ \x84\x7c\x80\x85\x7b\x7f\x84\x78\x7e\x82\x6b\x73\x79\x4a\x5b\x62\ \x3d\x4e\x55\x39\x44\x4c\x3e\x48\x4f\x2c\x38\x3e\x2d\x39\x40\x3c\ \x45\x4d\x61\x67\x6d\x6b\x70\x75\x6d\x72\x77\x6d\x73\x79\x6a\x70\ \x75\x6e\x73\x78\x6d\x73\x78\x75\x7a\x7f\x79\x7e\x82\x79\x7e\x83\ \x79\x7f\x84\x78\x7d\x82\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x79\ \x81\x87\x6d\x78\x7e\x55\x61\x69\x41\x4a\x54\x49\x4e\x57\x63\x66\ \x6e\x7b\x7e\x84\x85\x89\x8f\x86\x8c\x90\x85\x8b\x8f\x85\x8b\x90\ \x89\x8f\x92\x87\x8e\x91\x85\x8b\x8e\x7e\x85\x88\x79\x7f\x82\x7e\ \x83\x86\x83\x89\x8b\x81\x86\x89\x82\x85\x88\x84\x88\x8a\x87\x8b\ \x8e\x81\x85\x86\x86\x89\x8c\x8a\x8f\x92\x87\x8b\x8f\x84\x87\x8b\ \x8b\x8e\x92\x8f\x92\x96\x8b\x8e\x91\x86\x89\x8d\x8f\x91\x93\x9a\ \x9c\x9e\x9f\xa1\xa4\xa1\xa2\xa6\xa0\xa1\xa5\xa1\xa2\xa5\xa0\xa2\ \xa6\x9e\xa0\xa4\xa0\xa2\xa6\xa2\xa4\xa8\xa4\xa5\xa9\xa5\xa7\xa9\ \xa4\xa6\xa7\xa8\xa9\xaa\xac\xab\xae\xab\xaa\xac\xac\xab\xad\xae\ \xae\xb0\xad\xae\xb0\xb0\xb0\xb2\xae\xae\xb0\xad\xae\xaf\xaf\xb0\ \xb2\xaf\xaf\xb1\xb0\xb2\xb2\xac\xae\xaf\xa2\xa3\xa4\x98\x98\x9b\ \x9d\x9d\x9f\xab\xaa\xac\xaa\xa9\xaa\x9f\x9e\xa0\x9a\x99\x9b\xa6\ \xa4\xa5\xb1\xaf\xaf\xb1\xaf\xb0\xa2\xa1\xa2\x99\x98\x9a\xa1\x9f\ \x9f\xad\xab\xab\xaf\xae\xae\xa3\xa4\xa4\x98\x98\x99\x9d\x9b\x9d\ \xaf\xad\xae\xb7\xb4\xb5\xaa\xa8\xaa\x9b\x99\x9b\x9e\x9c\x9e\xab\ \xa8\xaa\xb7\xb4\xb6\xb9\xb7\xb9\xba\xba\xbb\xbb\xba\xbb\xba\xb9\ \xbb\xbb\xbb\xbc\xba\xb9\xbb\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbd\xbf\ \xbe\xbd\xbf\xbe\xbd\xbf\xc0\xbe\xc0\xbe\xbc\xbe\xbf\xbe\xc1\xbe\ \xbd\xc1\xc0\xbe\xc1\xbe\xbc\xbe\xbc\xb9\xbb\xbe\xbb\xbd\x00\x00\ \x00\xdb\xd4\xd2\xd9\xd1\xd0\xd6\xce\xcc\xd2\xca\xc8\xca\xc1\xbf\ \xbf\xb5\xb3\xaa\xa2\xa0\x89\x88\x86\x67\x6b\x6a\x4c\x53\x57\x49\ \x4e\x53\x55\x57\x5c\x71\x6f\x71\x84\x80\x80\x93\x8e\x8f\x9a\x96\ \x97\x9d\x9a\x9c\x9f\x9c\x9e\xa1\x9e\x9f\xa0\x9d\x9f\x9d\x9b\x9d\ \x9b\x9a\x9c\x9a\x99\x9b\x97\x96\x98\x94\x95\x98\x8d\x8f\x93\x8c\ \x8e\x92\x89\x8c\x91\x86\x89\x8d\x85\x88\x8c\x84\x87\x8b\x83\x86\ \x8a\x81\x87\x8a\x80\x85\x88\x7e\x82\x86\x7c\x81\x85\x7c\x81\x84\ \x7a\x7f\x83\x79\x7d\x82\x6f\x76\x7c\x5c\x68\x6e\x55\x63\x6a\x4f\ \x5a\x62\x4d\x58\x60\x3d\x4a\x52\x39\x46\x4d\x49\x52\x59\x62\x67\ \x6d\x6f\x74\x78\x6c\x71\x76\x6d\x72\x78\x6d\x72\x77\x6d\x71\x76\ \x6f\x74\x7a\x6f\x74\x79\x76\x7a\x7e\x7a\x7e\x83\x78\x7e\x83\x77\ \x7c\x81\x79\x7f\x84\x79\x7f\x84\x7a\x80\x85\x7b\x81\x86\x76\x7f\ \x85\x6a\x75\x7c\x53\x5e\x66\x3e\x47\x51\x53\x58\x62\x6c\x70\x77\ \x80\x84\x89\x87\x8c\x90\x86\x8a\x8f\x89\x8e\x92\x8b\x90\x93\x89\ \x8e\x91\x8a\x8f\x92\x86\x8c\x8f\x7f\x85\x88\x7b\x7f\x82\x80\x84\ \x88\x85\x89\x8c\x81\x85\x88\x7d\x81\x83\x86\x8a\x8c\x85\x89\x8b\ \x80\x84\x87\x82\x85\x89\x8b\x8e\x92\x8a\x8e\x91\x86\x89\x8d\x8c\ \x8e\x92\x92\x94\x97\x8c\x8f\x91\x85\x89\x8b\x8d\x90\x92\x99\x9b\ \x9d\x9f\xa1\xa4\xa1\xa2\xa6\xa1\xa2\xa6\xa0\xa1\xa7\x9f\xa1\xa5\ \xa0\xa2\xa6\xa3\xa5\xa9\xa6\xa7\xaa\xa5\xa6\xa8\xa6\xa6\xa8\xa8\ \xa8\xaa\xab\xaa\xac\xab\xaa\xac\xac\xab\xad\xad\xac\xae\xad\xae\ \xaf\xaf\xae\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb1\xb0\xb2\xb0\xb0\xb2\ \xb2\xb2\xb4\xb3\xb3\xb5\xb0\xb0\xb2\xa7\xa7\xa9\x99\x9a\x9c\x97\ \x97\x99\xa5\xa4\xa5\xae\xac\xad\xa6\xa6\xa7\x9c\x9b\x9d\x9f\x9d\ \x9d\xad\xab\xab\xb7\xb6\xb6\xac\xac\xac\x9e\x9d\x9c\x9a\x9a\x99\ \xa7\xa6\xa6\xb0\xb0\xb0\xab\xab\xac\x9c\x9b\x9d\x9b\x9a\x9c\xab\ \xa9\xaa\xb6\xb4\xb4\xb0\xae\xaf\xa0\x9f\xa0\x9c\x9c\x9d\xa7\xa4\ \xa6\xb3\xb2\xb3\xbb\xba\xbb\xbc\xbb\xbb\xbc\xbb\xbc\xbd\xbd\xbd\ \xbb\xba\xbc\xbb\xba\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbc\ \xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xc0\xbf\xbe\xc0\xc0\xbf\ \xc2\xbc\xbb\xbd\xb8\xb6\xb8\xc0\xbd\xbf\x00\x00\x00\xdb\xd4\xd2\ \xd8\xd1\xce\xd5\xcd\xca\xcf\xc6\xc3\xc6\xbd\xba\xb8\xaf\xad\x9d\ \x97\x95\x7c\x7d\x7c\x5f\x64\x66\x47\x50\x54\x4c\x51\x57\x5d\x5e\ \x62\x79\x76\x78\x8a\x85\x86\x96\x91\x91\x9a\x97\x97\x9f\x9c\x9e\ \x9f\x9c\x9e\x9f\x9d\x9f\x9e\x9c\x9e\x9b\x9a\x9c\x9a\x99\x9c\x98\ \x97\x99\x95\x96\x97\x91\x92\x95\x8e\x8f\x93\x8a\x8d\x91\x88\x8b\ \x90\x88\x8b\x8f\x85\x89\x8c\x84\x88\x8b\x81\x85\x89\x7f\x84\x88\ \x7f\x83\x87\x7e\x82\x87\x7e\x82\x87\x7d\x81\x85\x7b\x80\x83\x7a\ \x7e\x83\x76\x7b\x80\x6d\x74\x79\x68\x71\x78\x66\x6f\x76\x5e\x68\ \x6e\x58\x62\x6a\x4d\x57\x5f\x56\x5d\x64\x64\x69\x6f\x6e\x72\x77\ \x6e\x73\x78\x6b\x70\x75\x6e\x72\x77\x6d\x70\x75\x6e\x72\x77\x6f\ \x74\x79\x70\x74\x79\x78\x7c\x81\x79\x7e\x83\x78\x7c\x81\x79\x7f\ \x84\x79\x7f\x84\x7c\x81\x86\x7b\x82\x87\x7c\x83\x88\x77\x80\x85\ \x6b\x76\x7c\x59\x64\x6c\x52\x5b\x65\x66\x6a\x73\x7d\x81\x86\x85\ \x89\x8d\x86\x8b\x8e\x88\x8c\x91\x8a\x8f\x91\x8a\x8e\x91\x8a\x8f\ \x92\x8b\x90\x93\x88\x8d\x90\x81\x86\x89\x7d\x82\x85\x82\x85\x89\ \x86\x8a\x8c\x82\x86\x88\x80\x84\x86\x88\x8c\x8d\x85\x89\x8c\x80\ \x84\x87\x83\x86\x8a\x8b\x8f\x91\x8c\x90\x94\x86\x89\x8d\x89\x8c\ \x8f\x90\x93\x95\x8e\x92\x94\x88\x8b\x8e\x8b\x8d\x8e\x98\x99\x9c\ \x9f\xa0\xa4\xa1\xa2\xa7\xa1\xa2\xa7\xa4\xa5\xa9\xa2\xa4\xa8\xa5\ \xa7\xab\xa6\xa8\xab\xa5\xa7\xa9\xa7\xa6\xa8\xa8\xa7\xa9\xab\xaa\ \xac\xab\xaa\xac\xab\xaa\xac\xab\xaa\xac\xad\xae\xaf\xaf\xae\xb0\ \xaf\xae\xb0\xaf\xae\xb0\xaf\xae\xb0\xb1\xb1\xb3\xb2\xb2\xb4\xb2\ \xb1\xb3\xb2\xb2\xb4\xb2\xb1\xb3\xab\xac\xae\x9d\x9d\x9e\x96\x95\ \x96\x9f\x9d\x9d\xad\xab\xac\xae\xad\xad\xa0\x9e\x9e\x9c\x9a\x99\ \xa6\xa3\xa3\xb4\xb2\xb2\xb2\xb3\xb2\xa4\xa3\xa3\x9b\x9a\x9a\x9e\ \x9d\x9d\xaf\xae\xaf\xb2\xb2\xb2\xa5\xa5\xa6\x9b\x9a\x9c\xa0\x9e\ \x9f\xb2\xaf\xb0\xb4\xb3\xb3\xad\xac\xad\xa1\x9f\xa1\x9f\x9c\x9e\ \xad\xab\xac\xbc\xbb\xba\xbc\xba\xba\xbc\xbb\xbb\xbc\xba\xbb\xbd\ \xbc\xbd\xbe\xbc\xbe\xbb\xba\xbc\xba\xb9\xbb\xba\xb9\xbb\xbb\xba\ \xbc\xbf\xbd\xbf\xbc\xba\xbd\xbd\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\ \xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xda\xd4\xd3\xd8\xd1\xce\xd3\ \xcb\xc8\xcc\xc3\xbf\xc0\xb7\xb4\xaf\xa6\xa2\x91\x8d\x8a\x6f\x71\ \x71\x56\x5e\x60\x45\x4e\x52\x4f\x54\x58\x68\x67\x6b\x80\x7e\x7e\ \x8f\x89\x8a\x98\x94\x94\x9b\x98\x99\x9e\x9c\x9d\x9f\x9d\x9e\x9e\ \x9d\x9e\x9c\x9b\x9c\x9a\x9a\x9c\x98\x97\x98\x95\x95\x96\x91\x93\ \x94\x8e\x8f\x93\x8c\x8e\x92\x8a\x8d\x91\x88\x8b\x8f\x87\x8a\x8e\ \x85\x88\x8c\x84\x88\x8c\x80\x84\x88\x80\x84\x89\x7e\x83\x86\x7c\ \x81\x84\x7d\x81\x86\x7c\x81\x85\x7b\x7f\x83\x7b\x7f\x84\x79\x7c\ \x81\x77\x7d\x82\x73\x79\x7e\x72\x78\x7d\x70\x76\x7c\x68\x6f\x76\ \x59\x61\x69\x53\x59\x61\x61\x65\x6c\x6a\x6d\x72\x6b\x6f\x74\x66\ \x6b\x6f\x66\x6a\x70\x6a\x6e\x74\x6b\x70\x74\x6f\x74\x77\x6e\x73\ \x78\x71\x75\x7a\x7a\x7e\x82\x7b\x80\x84\x79\x7f\x84\x7a\x80\x85\ \x7a\x80\x85\x7b\x81\x86\x7c\x82\x87\x7c\x83\x88\x78\x81\x86\x6d\ \x77\x7d\x5e\x68\x70\x67\x6c\x75\x7b\x7f\x84\x85\x8a\x8e\x86\x8a\ \x8f\x87\x8c\x90\x88\x8e\x91\x8a\x8f\x92\x8a\x8f\x92\x8b\x90\x93\ \x8c\x91\x94\x8b\x90\x93\x84\x89\x8c\x7e\x83\x86\x81\x85\x88\x88\ \x8c\x8f\x82\x87\x8a\x80\x84\x87\x84\x88\x8b\x88\x8c\x90\x80\x85\ \x88\x81\x85\x88\x8b\x8d\x91\x8c\x90\x93\x87\x8a\x8d\x8b\x8e\x90\ \x93\x96\x98\x90\x94\x95\x88\x8b\x8c\x8a\x8c\x8d\x99\x9a\x9d\xa2\ \xa3\xa8\xa1\xa2\xa6\xa4\xa5\xa9\xa6\xa7\xab\xa6\xa7\xab\xa6\xa7\ \xab\xa4\xa5\xa6\xa8\xa7\xa9\xaa\xa9\xab\xa9\xa8\xaa\xa9\xa8\xaa\ \xaa\xa9\xab\xab\xaa\xac\xad\xac\xaf\xb1\xb0\xb2\xae\xad\xaf\xad\ \xac\xae\xaf\xb0\xb1\xb0\xb1\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb2\xb2\ \xb3\xb3\xb2\xb4\xb3\xb2\xb4\xae\xad\xaf\xa3\xa3\xa5\x99\x99\x99\ \x9b\x9a\x9a\xa5\xa3\xa3\xb0\xae\xad\xa7\xa5\xa5\x9c\x99\x9a\x9e\ \x9d\x9d\xac\xaa\xa9\xb4\xb2\xb1\xab\xab\xab\x9a\x99\x9a\x98\x97\ \x98\xa9\xa8\xa9\xb6\xb4\xb4\xaf\xad\xae\xa2\xa1\xa2\x9e\x9c\x9d\ \xa6\xa4\xa5\xb6\xb4\xb4\xb5\xb3\xb6\xa4\xa2\xa4\x9a\x99\x9a\xa3\ \xa2\xa1\xb3\xb0\xb0\xba\xb8\xb9\xbd\xbb\xbc\xbf\xbd\xbd\xbe\xbd\ \xbe\xba\xb9\xbb\xb9\xb8\xba\xb8\xb7\xb9\xb7\xb6\xb8\xba\xb8\xba\ \xbc\xba\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\xc2\xc3\ \xc2\xc4\x00\x00\x00\xd9\xd4\xd2\xd7\xcf\xcd\xd0\xc8\xc5\xc8\xbf\ \xbb\xbd\xb3\xb0\xa5\x9e\x9a\x84\x83\x80\x65\x68\x6a\x4d\x54\x59\ \x46\x50\x54\x56\x5a\x5f\x73\x71\x74\x87\x84\x84\x90\x8b\x8c\x99\ \x94\x95\x9e\x9a\x9b\x9f\x9d\x9e\x9f\x9d\x9e\x9e\x9c\x9c\x9c\x9a\ \x9c\x99\x98\x9a\x98\x97\x98\x94\x93\x95\x90\x91\x93\x8d\x8f\x93\ \x8b\x8d\x91\x88\x8b\x90\x85\x88\x8d\x86\x89\x8d\x82\x86\x8a\x83\ \x86\x8b\x80\x83\x88\x7f\x83\x87\x7e\x82\x86\x7b\x80\x84\x7a\x7f\ \x82\x79\x7d\x81\x79\x7d\x81\x78\x7c\x81\x79\x7d\x82\x79\x7f\x84\ \x76\x7c\x81\x76\x7c\x82\x76\x7c\x81\x6b\x72\x78\x5c\x63\x6c\x4a\ \x50\x5a\x4c\x50\x59\x60\x62\x6a\x60\x63\x69\x59\x5c\x63\x57\x5a\ \x61\x63\x66\x6c\x6c\x70\x74\x6c\x71\x74\x6f\x73\x78\x6e\x72\x77\ \x73\x77\x7b\x7a\x80\x83\x7b\x80\x86\x7b\x81\x86\x7b\x80\x85\x7b\ \x81\x86\x7d\x82\x87\x7f\x85\x8a\x7d\x84\x89\x77\x7f\x84\x6f\x78\ \x7d\x74\x7a\x80\x7e\x82\x87\x86\x8a\x8f\x88\x8b\x91\x87\x8b\x8f\ \x88\x8b\x8f\x88\x8d\x90\x89\x8e\x91\x89\x8e\x91\x8d\x92\x95\x8e\ \x93\x96\x8c\x91\x94\x84\x8a\x8d\x7e\x83\x86\x81\x85\x89\x8a\x8f\ \x92\x84\x89\x8c\x7f\x84\x87\x85\x88\x8c\x89\x8d\x90\x85\x88\x8c\ \x84\x87\x8b\x8c\x8f\x92\x90\x94\x97\x8a\x8d\x91\x88\x8c\x8f\x91\ \x94\x96\x91\x93\x95\x89\x8d\x8e\x8c\x8e\x8f\x97\x99\x9b\x9f\xa0\ \xa4\xa3\xa4\xa8\xa2\xa4\xa8\xa5\xa6\xa9\xa8\xa7\xa9\xa5\xa4\xa6\ \xa5\xa4\xa6\xa8\xa7\xa9\xa9\xa8\xab\xaa\xa9\xab\xab\xaa\xab\xab\ \xaa\xac\xad\xac\xae\xae\xad\xaf\xac\xad\xae\xad\xac\xae\xae\xad\ \xaf\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb2\xb4\ \xb3\xb2\xb3\xb1\xb1\xb3\xb1\xb0\xb2\xab\xab\xac\x9c\x9d\x9d\x93\ \x92\x92\xa0\x9e\x9d\xaf\xad\xac\xae\xae\xac\xa0\xa0\xa0\x9a\x97\ \x97\xa1\xa0\x9f\xb1\xaf\xb0\xb1\xaf\xb0\xa5\xa4\xa5\x9b\x9a\x9c\ \xa2\xa0\xa1\xb4\xb2\xb2\xb8\xb7\xb7\xab\xaa\xab\x9c\x99\x9b\xa0\ \x9e\x9f\xaf\xad\xad\xb6\xb5\xb6\xae\xae\xae\xa1\xa1\xa0\x98\x96\ \x96\xa7\xa4\xa4\xbb\xb8\xb8\xbe\xbd\xbd\xbd\xbb\xbc\xbd\xba\xbc\ \xbc\xba\xbc\xba\xb8\xba\xb7\xb6\xb8\xb7\xb6\xb8\xba\xb9\xbb\xc0\ \xbf\xc1\xc0\xbe\xc0\xc2\xc1\xc3\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ \x00\xd7\xd1\xce\xd5\xce\xcb\xce\xc7\xc3\xc5\xbd\xb9\xb6\xaf\xab\ \x9b\x96\x94\x7a\x7a\x7c\x5d\x60\x64\x49\x4f\x56\x49\x4f\x55\x5f\ \x61\x65\x79\x76\x77\x8d\x88\x89\x94\x8f\x90\x9c\x97\x98\x9f\x9b\ \x9d\x9f\x9d\x9e\x9f\x9c\x9e\x9c\x9a\x9c\x99\x98\x9a\x95\x94\x96\ \x91\x90\x92\x8f\x90\x91\x8e\x90\x92\x8d\x8e\x91\x8a\x8c\x8e\x87\ \x89\x8b\x84\x86\x8a\x83\x85\x89\x81\x85\x89\x81\x84\x88\x80\x83\ \x87\x7d\x82\x85\x7c\x81\x85\x7c\x80\x85\x7b\x7f\x84\x79\x7d\x82\ \x78\x7c\x81\x77\x7b\x80\x7a\x7e\x83\x78\x7c\x81\x77\x7c\x81\x76\ \x7d\x82\x74\x7a\x7f\x6f\x74\x7a\x55\x5c\x64\x3c\x45\x4f\x32\x3a\ \x43\x4b\x4e\x57\x52\x54\x5d\x3d\x40\x49\x3c\x3f\x49\x53\x55\x5c\ \x6a\x6d\x72\x6f\x73\x77\x6d\x71\x76\x70\x74\x79\x6e\x73\x77\x74\ \x79\x7c\x7b\x80\x83\x7b\x7f\x83\x7c\x81\x85\x7e\x83\x87\x7d\x82\ \x87\x7e\x83\x88\x80\x85\x8a\x80\x85\x8a\x7e\x85\x89\x82\x87\x8c\ \x85\x89\x8e\x86\x8a\x8f\x85\x89\x8e\x87\x8b\x8f\x86\x89\x8d\x89\ \x8c\x90\x8b\x8e\x92\x8d\x91\x95\x8d\x92\x95\x8d\x92\x95\x8f\x94\ \x97\x8d\x92\x95\x85\x8a\x8d\x80\x85\x88\x84\x89\x8c\x8a\x8f\x92\ \x84\x89\x8c\x80\x85\x88\x87\x8a\x8e\x8e\x91\x95\x88\x8b\x8f\x85\ \x88\x8c\x8d\x90\x93\x91\x95\x97\x8a\x8d\x92\x89\x8b\x90\x90\x93\ \x95\x95\x99\x9a\x8f\x91\x92\x89\x8b\x8c\x92\x94\x95\xa1\xa2\xa4\ \xa4\xa4\xa7\xa6\xa7\xaa\xa9\xa8\xab\xa9\xa8\xaa\xaa\xa9\xab\xa9\ \xa8\xaa\xa9\xa8\xaa\xaa\xa9\xac\xab\xaa\xad\xaa\xa9\xab\xac\xad\ \xae\xac\xab\xad\xac\xab\xad\xab\xaa\xac\xad\xac\xae\xaf\xae\xb0\ \xaf\xae\xb0\xb1\xb0\xb2\xb1\xb2\xb3\xb3\xb4\xb5\xb3\xb3\xb5\xb2\ \xb1\xb3\xb2\xb1\xb3\xb3\xb2\xb4\xac\xac\xad\x9f\xa0\xa0\x94\x96\ \x96\x99\x97\x98\xab\xaa\xaa\xb3\xb1\xb1\xa8\xa8\xa8\x9b\x9a\x9c\ \x9b\x9a\x9c\xac\xab\xac\xb7\xb6\xb7\xae\xae\xaf\x9f\x9e\x9f\x9c\ \x9a\x9c\xab\xa8\xa9\xb5\xb3\xb3\xb3\xb0\xb1\xa7\xa5\xa6\x99\x97\ \x99\xa6\xa3\xa5\xb6\xb4\xb4\xb7\xb6\xb8\xab\xaa\xac\x9e\x9c\x9d\ \x9f\x9b\x9c\xb1\xad\xae\xbf\xbd\xbe\xbe\xbb\xbd\xbe\xbb\xbd\xbf\ \xbd\xbf\xbe\xbd\xbf\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbd\xbf\xc0\xbe\ \xbf\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc0\xc2\x00\x00\x00\xd6\xcf\xcc\ \xd3\xcb\xc7\xcc\xc3\xbf\xc0\xb8\xb4\xad\xa6\xa5\x8f\x8c\x8d\x6f\ \x71\x72\x56\x5c\x60\x49\x4e\x54\x50\x54\x5a\x68\x67\x6b\x82\x7e\ \x7f\x8f\x8a\x8b\x98\x93\x94\x9e\x99\x9b\x9f\x9b\x9d\x9f\x9c\x9e\ \x9e\x9b\x9d\x9c\x9a\x9c\x98\x97\x99\x8d\x8c\x8e\x88\x88\x89\x84\ \x86\x86\x89\x8b\x8d\x8b\x8c\x90\x87\x88\x8c\x87\x88\x8a\x82\x84\ \x88\x81\x83\x87\x80\x83\x87\x80\x83\x87\x7f\x83\x86\x7c\x7f\x83\ \x7c\x7f\x83\x7b\x7f\x82\x7b\x7f\x83\x7b\x7f\x84\x79\x7d\x82\x77\ \x7b\x80\x77\x7b\x80\x78\x7d\x82\x77\x7a\x80\x76\x7b\x81\x74\x7a\ \x7f\x68\x6d\x73\x4f\x56\x5e\x31\x3d\x45\x2a\x36\x3f\x3c\x42\x4b\ \x42\x46\x4f\x23\x2a\x33\x20\x26\x2f\x49\x4c\x54\x65\x68\x6d\x70\ \x74\x79\x6f\x72\x77\x6e\x72\x77\x6e\x72\x77\x70\x74\x78\x77\x7a\ \x7e\x74\x77\x7b\x6b\x6e\x73\x70\x72\x76\x7a\x7e\x82\x7d\x83\x87\ \x7f\x85\x89\x80\x86\x8b\x81\x87\x8c\x83\x88\x8d\x86\x8a\x8f\x86\ \x8a\x8e\x84\x89\x8d\x85\x89\x8c\x86\x89\x8d\x8c\x8f\x93\x8c\x8f\ \x93\x8c\x8f\x93\x8d\x91\x94\x8e\x93\x96\x91\x96\x99\x92\x97\x9a\ \x8e\x93\x96\x85\x8a\x8d\x81\x86\x89\x81\x86\x89\x8a\x8f\x91\x85\ \x8a\x8d\x83\x88\x8c\x88\x8b\x8f\x8e\x92\x96\x89\x8c\x90\x87\x89\ \x8d\x8d\x8f\x93\x92\x96\x99\x8c\x8f\x93\x87\x8a\x8e\x96\x98\x9b\ \x9a\x9c\x9d\x8f\x91\x92\x8b\x8d\x8e\x92\x92\x95\xa4\xa3\xa5\xa8\ \xa7\xaa\xa8\xa7\xaa\xa9\xa8\xaa\xa8\xa7\xa9\xa6\xa5\xa7\xa7\xa6\ \xa8\xaa\xa9\xab\xab\xaa\xac\xac\xab\xad\xad\xad\xae\xad\xac\xae\ \xab\xaa\xac\xab\xaa\xac\xaf\xb0\xb1\xb1\xb0\xb2\xb0\xaf\xb1\xb0\ \xb0\xb1\xb1\xb0\xb2\xb1\xb2\xb4\xb1\xb1\xb3\xb0\xaf\xb1\xb0\xaf\ \xb1\xb4\xb3\xb5\xb6\xb5\xb7\xb0\xb1\xb2\xaa\xac\xad\x9a\x9d\x9e\ \x97\x96\x96\xa5\xa3\xa4\xb2\xb1\xb1\xae\xae\xaf\x9f\x9e\xa1\x99\ \x98\x9a\xa5\xa3\xa5\xb5\xb4\xb5\xb4\xb4\xb5\xa7\xa6\xa7\x99\x97\ \x99\xa1\x9e\x9f\xb1\xaf\xb0\xbb\xb9\xb9\xb0\xb0\xb1\xa0\x9f\xa0\ \x9e\x9c\x9e\xb0\xaf\xb0\xb9\xb8\xb9\xb6\xb5\xb5\xa6\xa4\xa4\x9c\ \x99\x99\xab\xa6\xa7\xbb\xb8\xb9\xbf\xbc\xbe\xbf\xbd\xbf\xc0\xbf\ \xc1\xc1\xbf\xc1\xbf\xbd\xbf\xbe\xbb\xbc\xbf\xbd\xbe\xc1\xbe\xc0\ \xc0\xbf\xc1\xc1\xc1\xc2\x00\x00\x00\xd6\xcf\xcc\xd1\xc8\xc5\xc8\ \xc0\xbc\xbb\xb3\xb1\xa2\x9c\x9d\x83\x80\x82\x66\x69\x6c\x51\x56\ \x5b\x49\x4e\x53\x59\x5a\x5d\x73\x71\x72\x88\x82\x83\x92\x8e\x8f\ \x9a\x95\x96\x9c\x97\x99\x9e\x9a\x9c\x9e\x9c\x9e\x9c\x9a\x9c\x99\ \x98\x99\x90\x90\x91\x87\x86\x88\x7f\x80\x82\x81\x83\x84\x85\x86\ \x89\x87\x87\x8a\x89\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x80\x83\x87\ \x80\x84\x88\x7d\x81\x85\x7e\x81\x84\x7e\x81\x85\x7c\x7f\x84\x79\ \x7d\x82\x7a\x7e\x83\x79\x7d\x82\x77\x7b\x80\x77\x7b\x80\x78\x7c\ \x81\x77\x7c\x80\x79\x7c\x81\x78\x7e\x83\x74\x7a\x7f\x63\x69\x70\ \x44\x4d\x57\x23\x32\x3c\x2a\x37\x42\x33\x3b\x45\x32\x38\x41\x18\ \x21\x2a\x19\x22\x2b\x40\x44\x4c\x63\x66\x6b\x6d\x71\x76\x70\x75\ \x79\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x6f\x73\x78\x6b\x6e\x73\ \x4e\x51\x59\x43\x43\x4b\x60\x5e\x64\x7c\x7e\x82\x7e\x82\x86\x7f\ \x84\x88\x83\x89\x8d\x83\x88\x8c\x84\x89\x8d\x85\x89\x8e\x84\x89\ \x8c\x82\x87\x8a\x85\x87\x8b\x89\x8c\x90\x8d\x90\x94\x8d\x90\x94\ \x90\x94\x97\x8f\x94\x97\x90\x95\x98\x91\x96\x99\x90\x95\x98\x90\ \x95\x98\x8a\x8f\x92\x80\x85\x88\x83\x87\x8a\x8d\x90\x94\x8a\x8d\ \x91\x84\x87\x8b\x87\x89\x8d\x90\x91\x95\x8d\x8f\x93\x87\x8a\x8e\ \x8c\x8e\x92\x95\x97\x9b\x8f\x90\x94\x8e\x8f\x93\x92\x94\x97\x9b\ \x9d\x9e\x93\x95\x96\x8a\x8b\x8e\x8e\x90\x91\xa1\xa0\xa2\xa8\xa7\ \xa9\xa6\xa7\xa7\xa9\xa9\xaa\xa9\xa8\xaa\xaa\xa9\xab\xac\xab\xad\ \xac\xac\xae\xae\xaf\xb0\xae\xae\xb0\xae\xad\xaf\xab\xaa\xac\xae\ \xad\xaf\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\ \xb2\xb2\xb1\xb3\xb1\xb1\xb2\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\ \xb6\xb5\xb7\xb5\xb4\xb6\xb2\xb3\xb4\xad\xb0\xb1\xa4\xa4\xa6\x97\ \x95\x97\x96\x95\x97\xa9\xa7\xa8\xb2\xb1\xb2\xa7\xa6\xa8\x9b\x9a\ \x9c\x9e\x9c\x9e\xae\xad\xac\xb7\xb6\xb8\xae\xae\xb0\x9d\x9c\x9f\ \x9b\x9a\x9c\xac\xab\xab\xb9\xb8\xb7\xb7\xb7\xb7\xab\xab\xac\x9a\ \x9a\x9a\xa1\xa0\xa1\xb6\xb2\xb2\xbe\xba\xbb\xb6\xb3\xb4\xa3\xa0\ \xa1\xa0\x9b\x9d\xb1\xad\xaf\xbe\xba\xbb\xc0\xbd\xbe\xc2\xc0\xc2\ \xbf\xbc\xbe\xbe\xbb\xbd\xbd\xbc\xbd\xbd\xbb\xbd\xc0\xbd\xbf\xc3\ \xc1\xc2\x00\x00\x00\xd6\xcd\xca\xce\xc6\xc2\xc4\xbc\xb8\xb3\xac\ \xa9\x97\x92\x91\x76\x76\x77\x5d\x60\x65\x4b\x51\x58\x4d\x51\x57\ \x62\x62\x65\x7b\x76\x76\x89\x84\x84\x96\x90\x91\x9c\x96\x98\x9f\ \x9a\x9c\x9e\x9b\x9d\x9c\x99\x9b\x9d\x9a\x9c\x98\x96\x98\x88\x88\ \x89\x7e\x7f\x80\x7c\x7d\x7f\x7c\x7d\x7f\x7c\x7e\x7f\x85\x86\x88\ \x87\x89\x8c\x85\x88\x8c\x82\x85\x89\x80\x83\x87\x7e\x82\x85\x7e\ \x82\x85\x7d\x80\x84\x7b\x7f\x82\x7b\x7e\x83\x7b\x7f\x83\x79\x7d\ \x82\x78\x7c\x81\x76\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\x77\x7a\x80\ \x76\x7b\x7e\x76\x7a\x80\x71\x76\x7b\x59\x61\x69\x39\x45\x50\x26\ \x35\x42\x2f\x3c\x47\x3b\x44\x4d\x23\x2b\x34\x11\x1b\x25\x22\x2b\ \x35\x49\x4f\x56\x66\x69\x6e\x6d\x71\x76\x71\x75\x7a\x6f\x73\x78\ \x6e\x72\x77\x72\x76\x7b\x72\x76\x7b\x68\x6c\x71\x3c\x43\x4b\x0d\ \x13\x1c\x2f\x2e\x36\x6c\x6a\x6f\x80\x83\x87\x80\x85\x89\x83\x88\ \x8d\x86\x8b\x8f\x85\x8a\x8d\x84\x89\x8c\x84\x88\x8c\x7e\x82\x86\ \x79\x7c\x80\x7d\x81\x83\x89\x8c\x90\x8e\x91\x95\x90\x93\x97\x90\ \x95\x98\x90\x95\x98\x8f\x94\x97\x8f\x94\x97\x90\x94\x98\x92\x97\ \x9a\x89\x8e\x91\x83\x86\x8a\x82\x86\x8a\x8e\x91\x95\x8c\x8f\x93\ \x84\x87\x8b\x87\x88\x8d\x90\x93\x97\x8c\x8f\x93\x86\x89\x8d\x8d\ \x8f\x92\x9b\x9c\x9f\x95\x96\x99\x8c\x8d\x91\x90\x90\x92\x9b\x9a\ \x9c\x96\x97\x9a\x8b\x8d\x8f\x8e\x8f\x91\x9e\x9e\x9f\xa9\xa9\xaa\ \xa9\xa9\xaa\xaa\xa9\xab\xa9\xa8\xaa\xab\xaa\xac\xad\xac\xae\xad\ \xad\xaf\xad\xad\xaf\xad\xab\xad\xae\xad\xaf\xb0\xaf\xb1\xb1\xb0\ \xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb2\xb0\xb2\xb1\xb1\xb3\xb2\xb2\xb4\ \xb2\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb5\xb5\xb6\xb6\ \xb5\xb7\xb3\xb3\xb5\xb6\xb5\xb7\xb4\xb3\xb4\xac\xab\xad\x9d\x9c\ \x9e\x99\x97\x99\xa3\xa2\xa4\xb5\xb4\xb6\xb5\xb4\xb6\xa3\xa2\xa4\ \x9a\x99\x9b\xa6\xa5\xa6\xb5\xb4\xb5\xb4\xb4\xb4\xa4\xa4\xa6\x97\ \x97\x97\xa3\xa1\xa1\xb6\xb4\xb4\xbe\xbc\xbc\xb2\xb0\xb1\xa0\x9e\ \x9e\x9d\x99\x99\xb2\xad\xae\xbe\xbc\xbb\xbc\xba\xba\xac\xa9\xaa\ \x9d\x99\x9b\xa7\xa2\xa3\xbb\xb8\xb9\xc0\xbd\xbe\xbd\xba\xbc\xbe\ \xbb\xbd\xc0\xbe\xbf\xbd\xba\xbd\xc0\xbd\xbf\xc0\xbe\xbf\x00\x00\ \x00\xd3\xca\xc6\xcb\xc2\xbf\xc0\xb7\xb3\xaa\xa3\xa0\x8a\x88\x86\ \x6b\x6d\x6e\x56\x59\x60\x49\x4c\x56\x52\x54\x5b\x6b\x68\x6a\x82\ \x7d\x7b\x8f\x8a\x89\x97\x91\x92\x9d\x98\x9a\x9e\x9b\x9d\x9f\x9c\ \x9e\x9d\x9a\x9c\x9b\x9a\x9c\x92\x91\x93\x83\x84\x86\x79\x7b\x7c\ \x76\x78\x79\x73\x75\x76\x7b\x7d\x7d\x82\x83\x87\x83\x85\x89\x80\ \x83\x87\x82\x83\x87\x7f\x82\x86\x7a\x7d\x81\x7c\x7f\x83\x7d\x81\ \x85\x7c\x81\x84\x7a\x7f\x82\x78\x7c\x80\x77\x7c\x80\x77\x7c\x80\ \x77\x7b\x80\x76\x7b\x80\x77\x7b\x7f\x75\x7a\x7d\x76\x79\x7f\x76\ \x7b\x80\x73\x78\x7e\x5e\x67\x6e\x3b\x4a\x53\x31\x40\x4b\x3b\x48\ \x50\x40\x4b\x53\x23\x31\x3b\x0f\x1d\x27\x2b\x36\x40\x56\x5b\x63\ \x6a\x6e\x73\x6f\x73\x78\x6b\x6f\x74\x6f\x73\x78\x71\x75\x7a\x6f\ \x74\x78\x72\x77\x79\x6a\x6f\x73\x44\x4c\x55\x0f\x18\x21\x0d\x10\ \x17\x4c\x4c\x52\x7a\x7b\x7f\x80\x84\x88\x83\x88\x8c\x85\x8a\x8e\ \x85\x89\x8e\x84\x88\x8c\x87\x8c\x90\x85\x8a\x8d\x7b\x80\x83\x7d\ \x81\x84\x83\x86\x8a\x8c\x90\x93\x8f\x93\x97\x90\x94\x98\x90\x95\ \x99\x8f\x93\x96\x92\x97\x9a\x92\x95\x99\x93\x97\x9a\x92\x96\x9a\ \x8c\x91\x94\x84\x88\x8d\x83\x86\x8a\x8b\x8e\x92\x8a\x8d\x91\x84\ \x87\x8b\x87\x89\x8d\x92\x93\x97\x93\x95\x98\x8a\x8c\x8f\x8c\x8d\ \x90\x99\x9a\x9d\x97\x98\x9b\x8e\x8f\x90\x8f\x8e\x90\x9a\x99\x9b\ \x9a\x9c\x9d\x91\x93\x94\x90\x91\x94\x9b\x9b\x9c\xa8\xa8\xa8\xa7\ \xa7\xa8\xa8\xa7\xa9\xaa\xa9\xab\xab\xaa\xac\xaa\xa9\xab\xae\xad\ \xaf\xae\xad\xaf\xae\xad\xaf\xac\xab\xad\xb0\xaf\xb1\xb3\xb2\xb4\ \xb2\xb1\xb3\xaf\xae\xb0\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb2\xb3\ \xb2\xb3\xb4\xb3\xb4\xb3\xb2\xb3\xb5\xb4\xb6\xb6\xb5\xb7\xb5\xb4\ \xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb3\xb3\xb3\xa3\xa3\xa4\ \x97\x96\x98\xa0\x9f\xa1\xb2\xb1\xb3\xb6\xb6\xb7\xaa\xab\xad\x98\ \x99\x99\x9c\x9a\x9a\xae\xaa\xaa\xb7\xb6\xb7\xb1\xb0\xb1\xa3\xa2\ \xa2\x9c\x99\x9a\xac\xa9\xa9\xbd\xb9\xba\xbb\xb9\xb9\xae\xac\xac\ \x9e\x9b\x9c\xa5\xa1\xa3\xb6\xb3\xb4\xbd\xba\xbb\xb7\xb4\xb6\xa7\ \xa4\xa6\x9e\x9b\x9c\xab\xa7\xa9\xba\xb7\xb9\xc2\xbf\xc1\xbd\xbb\ \xbc\xc0\xbd\xbf\xbf\xbd\xbf\xc0\xbe\xbf\x00\x00\x00\xcf\xc6\xc2\ \xc5\xbb\xb9\xb8\xaf\xac\xa1\x9b\x98\x80\x80\x7e\x63\x66\x68\x4f\ \x53\x5a\x4c\x50\x59\x5a\x5a\x60\x75\x71\x73\x87\x82\x80\x93\x8c\ \x8e\x9a\x95\x96\x9e\x99\x9b\xa0\x9e\x9f\x9e\x9b\x9d\x9d\x9a\x9c\ \x98\x97\x99\x8c\x8c\x8e\x7e\x7f\x80\x78\x7a\x7b\x74\x76\x77\x72\ \x74\x75\x7b\x7d\x7e\x7f\x81\x83\x7e\x80\x84\x81\x84\x88\x80\x83\ \x87\x7e\x81\x85\x7e\x81\x85\x7d\x81\x84\x7c\x81\x84\x7b\x7f\x83\ \x7a\x7f\x82\x79\x7e\x81\x77\x7c\x7f\x77\x7c\x80\x77\x7b\x80\x78\ \x7c\x80\x76\x7b\x7e\x76\x7b\x7e\x76\x7a\x7f\x76\x7a\x7f\x72\x78\ \x7d\x62\x6b\x71\x4c\x59\x61\x48\x57\x5f\x54\x60\x65\x54\x5e\x64\ \x3b\x49\x54\x21\x32\x3f\x36\x45\x4f\x5e\x65\x6d\x6a\x6d\x73\x6e\ \x72\x77\x6e\x72\x77\x6e\x72\x77\x71\x76\x7b\x6e\x73\x77\x6e\x73\ \x77\x6f\x74\x77\x54\x5e\x63\x23\x31\x39\x05\x13\x19\x31\x3a\x41\ \x6d\x71\x77\x7f\x84\x89\x80\x85\x89\x84\x89\x8c\x85\x89\x8d\x84\ \x88\x8c\x86\x8b\x8f\x87\x8b\x8e\x85\x8a\x8d\x84\x89\x8c\x87\x8c\ \x90\x8e\x91\x95\x8e\x93\x96\x91\x95\x99\x92\x96\x9a\x91\x95\x99\ \x90\x94\x98\x92\x95\x99\x94\x97\x9b\x94\x99\x9c\x95\x9a\x9e\x8f\ \x93\x98\x87\x8a\x8e\x85\x88\x8d\x8e\x91\x95\x8d\x90\x94\x87\x8a\ \x8d\x89\x8b\x8e\x94\x96\x99\x93\x95\x97\x8e\x90\x92\x8f\x8f\x91\ \x97\x96\x98\x98\x99\x9b\x90\x92\x96\x90\x91\x94\x98\x98\x9a\x9e\ \x9d\x9f\x93\x94\x95\x8d\x8e\x8f\x98\x97\x99\xa6\xa5\xa7\xac\xab\ \xad\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xac\xab\xad\xae\xad\xae\ \xae\xad\xaf\xae\xad\xaf\xae\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\xaf\ \xb0\xb2\xb0\xaf\xb1\xb3\xb2\xb4\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\ \xb4\xb5\xb4\xb5\xb6\xb5\xb6\xb6\xb5\xb6\xb5\xb3\xb5\xb3\xb2\xb4\ \xb4\xb3\xb4\xb8\xb7\xb9\xb4\xb3\xb5\xb3\xb3\xb3\xab\xab\xac\x9d\ \x9e\x9f\x9d\x9b\x9d\xae\xac\xae\xb9\xb8\xb9\xb0\xb0\xb0\xa1\x9f\ \x9f\x9b\x99\x99\xa8\xa5\xa6\xb8\xb5\xb7\xbb\xb9\xb9\xaa\xaa\xaa\ \x9c\x99\x9b\xa1\x9e\x9e\xb3\xb0\xb0\xbe\xbc\xbc\xb7\xb6\xb6\xa7\ \xa5\xa5\xa2\x9e\xa0\xaa\xa6\xa8\xbb\xb8\xb9\xbe\xbc\xbc\xb6\xb4\ \xb5\xa1\x9f\xa1\xa0\x9d\x9f\xb4\xb0\xb2\xbd\xba\xbb\xc0\xbd\xbf\ \xbd\xbb\xbc\xc1\xbf\xbe\x00\x00\x00\xcd\xc4\xc1\xc2\xb9\xb6\xb1\ \xa9\xa6\x93\x90\x8e\x72\x76\x75\x58\x5e\x60\x49\x50\x56\x4d\x50\ \x58\x61\x61\x67\x7e\x79\x7b\x8c\x86\x87\x96\x90\x91\x99\x94\x96\ \x9b\x97\x99\x9e\x9b\x9c\x9c\x99\x9b\x9c\x9a\x9c\x95\x94\x96\x89\ \x88\x8a\x7b\x7d\x7e\x75\x78\x79\x73\x76\x77\x73\x76\x77\x77\x79\ \x7a\x7b\x7d\x7f\x7c\x7e\x82\x7f\x82\x86\x7f\x82\x86\x7e\x82\x86\ \x7b\x80\x83\x7c\x80\x83\x79\x7d\x81\x7a\x7e\x82\x7a\x7e\x81\x78\ \x7c\x7f\x77\x7c\x7f\x76\x7b\x7e\x75\x79\x7e\x76\x7a\x7e\x78\x7d\ \x81\x75\x79\x7f\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x6c\x73\x79\ \x67\x6f\x76\x60\x6a\x70\x65\x6e\x74\x64\x6e\x71\x55\x63\x69\x44\ \x55\x60\x49\x56\x60\x63\x69\x71\x69\x70\x77\x69\x6f\x74\x6d\x72\ \x77\x71\x75\x7a\x6e\x73\x78\x72\x77\x7c\x6e\x73\x77\x6f\x75\x78\ \x6b\x71\x77\x4a\x57\x60\x2d\x43\x4c\x3e\x4f\x57\x66\x6e\x74\x7d\ \x83\x87\x82\x87\x8a\x85\x88\x8d\x86\x8a\x8f\x84\x87\x8c\x86\x8b\ \x8f\x88\x8c\x90\x89\x8d\x92\x8a\x8e\x92\x8d\x91\x95\x91\x94\x98\ \x8e\x92\x96\x90\x95\x98\x91\x95\x9a\x90\x94\x99\x91\x96\x9b\x91\ \x94\x98\x93\x96\x9a\x97\x9a\x9d\x95\x98\x9c\x96\x99\x9e\x91\x95\ \x98\x88\x8c\x8f\x83\x86\x8a\x88\x8b\x8f\x8e\x91\x94\x89\x8c\x8e\ \x87\x89\x8c\x93\x95\x96\x97\x98\x9a\x92\x93\x96\x8d\x8d\x8f\x96\ \x96\x98\x9a\x9c\x9e\x95\x96\x9a\x91\x92\x94\x98\x97\x99\x9c\x9b\ \x9d\x96\x97\x98\x91\x92\x95\x96\x96\x99\xa2\xa1\xa4\xa9\xa9\xaa\ \xac\xab\xad\xad\xac\xae\xad\xac\xad\xaf\xae\xaf\xaf\xae\xb0\xac\ \xac\xae\xad\xaf\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb1\xaf\xae\ \xb0\xb1\xb0\xb2\xb2\xb2\xb3\xb4\xb4\xb4\xb3\xb3\xb3\xb4\xb5\xb4\ \xb6\xb6\xb7\xb5\xb5\xb5\xb3\xb2\xb3\xb3\xb2\xb4\xb2\xb2\xb3\xb7\ \xb6\xb7\xb5\xb4\xb6\xb5\xb5\xb5\xb7\xb7\xb7\xb3\xb4\xb5\xa6\xa7\ \xa8\x9d\x9d\x9e\xa6\xa5\xa7\xb1\xaf\xb0\xb6\xb4\xb4\xab\xaa\xa9\ \x9c\x9a\x9b\xa2\xa0\xa2\xb4\xb1\xb2\xbb\xba\xba\xb3\xb3\xb3\xa4\ \xa3\xa4\x9a\x97\x98\xa9\xa5\xa6\xba\xb8\xb8\xbc\xbc\xba\xb1\xb0\ \xaf\xa2\xa0\xa1\xa5\xa1\xa3\xb3\xb0\xb1\xc0\xbd\xbe\xba\xb9\xbb\ \xa7\xa6\xa8\x9e\x9b\x9d\xa5\xa2\xa5\xb6\xb3\xb5\xbe\xbb\xbd\xc0\ \xbc\xbd\x00\x00\x00\xc9\xc0\xbc\xbc\xb4\xb0\xa7\xa1\x9f\x88\x86\ \x86\x69\x6e\x6f\x4f\x57\x5a\x49\x50\x56\x57\x58\x5f\x6e\x6b\x6f\ \x83\x7e\x80\x90\x8a\x8c\x99\x94\x96\x9b\x97\x99\x9b\x97\x99\x9e\ \x9b\x9d\x9b\x98\x9a\x99\x97\x99\x92\x90\x93\x82\x82\x84\x78\x7a\ \x7b\x73\x75\x76\x6f\x72\x73\x76\x78\x79\x79\x7b\x7c\x77\x79\x7a\ \x7a\x7d\x80\x7d\x80\x84\x7e\x81\x85\x7d\x80\x84\x7c\x80\x84\x7b\ \x7f\x83\x7a\x7f\x82\x78\x7d\x80\x77\x7c\x7f\x77\x7c\x7f\x76\x7c\ \x7e\x76\x7b\x7f\x76\x7a\x7e\x76\x7a\x7f\x76\x7b\x7f\x75\x79\x7d\ \x75\x7a\x7e\x74\x79\x7e\x75\x7a\x7f\x74\x79\x7e\x71\x77\x7d\x70\ \x77\x7b\x70\x77\x7b\x71\x79\x7c\x6b\x75\x79\x61\x6c\x72\x5e\x67\ \x6e\x68\x6e\x74\x70\x76\x7c\x6d\x73\x78\x6d\x73\x78\x70\x75\x7a\ \x6f\x73\x78\x6e\x73\x78\x6f\x74\x78\x6f\x75\x78\x70\x76\x78\x63\ \x6b\x70\x54\x60\x66\x5e\x68\x6e\x76\x7c\x80\x7f\x84\x87\x81\x86\ \x8a\x85\x88\x8d\x84\x89\x8d\x89\x8d\x92\x88\x8c\x90\x87\x8b\x8f\ \x8a\x8e\x93\x8a\x8f\x93\x8c\x91\x95\x8f\x92\x97\x8e\x92\x96\x8f\ \x94\x97\x90\x94\x98\x91\x95\x99\x92\x95\x9a\x90\x94\x98\x94\x98\ \x9b\x95\x98\x9c\x95\x99\x9d\x96\x9a\x9d\x96\x99\x9d\x93\x96\x9b\ \x88\x8b\x90\x83\x86\x8a\x8a\x8d\x8f\x90\x93\x94\x8d\x8f\x91\x88\ \x8b\x8c\x91\x91\x93\x98\x98\x9a\x93\x93\x95\x8d\x8f\x90\x97\x97\ \x98\x9e\x9e\x9f\x97\x99\x9b\x90\x91\x95\x92\x92\x94\x9a\x9c\x9d\ \x9b\x9c\x9e\x90\x91\x96\x92\x94\x97\xa0\xa0\xa2\xa9\xa8\xaa\xae\ \xad\xaf\xad\xad\xae\xab\xab\xac\xae\xad\xaf\xaf\xae\xb0\xad\xab\ \xae\xae\xae\xb0\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\ \xb2\xb2\xb2\xb3\xb3\xb3\xb2\xb2\xb2\xb3\xb3\xb3\xb5\xb5\xb6\xb4\ \xb3\xb4\xb2\xb2\xb2\xb4\xb3\xb4\xb4\xb3\xb4\xb5\xb4\xb5\xb5\xb4\ \xb6\xb8\xb7\xb9\xb6\xb6\xb6\xb7\xb6\xb8\xb6\xb5\xb7\xb1\xb0\xb2\ \xa5\xa4\xa4\xa3\xa1\xa1\xad\xab\xab\xb8\xb6\xb6\xb3\xb2\xb2\xa6\ \xa4\xa5\xa1\x9e\xa0\xab\xa8\xa9\xb8\xb7\xb7\xbb\xba\xba\xb2\xb1\ \xb1\xa0\x9d\x9e\xa0\x9d\x9d\xae\xac\xab\xbb\xb9\xb8\xba\xb8\xb9\ \xab\xa9\xab\xa1\x9e\xa0\xa9\xa6\xa8\xb6\xb3\xb6\xbf\xbd\xbf\xb6\ \xb4\xb6\xa5\xa2\xa4\xa1\x9d\x9f\xae\xa9\xab\xb8\xb3\xb5\x00\x00\ \x00\xc5\xbc\xb8\xb6\xae\xab\x9b\x97\x95\x7c\x7b\x7c\x5e\x64\x65\ \x49\x51\x54\x4a\x50\x55\x5c\x5d\x61\x76\x73\x75\x89\x84\x86\x93\ \x8e\x90\x99\x96\x97\x9a\x97\x98\x9c\x99\x9a\x9d\x9a\x9c\x99\x96\ \x98\x97\x95\x97\x8e\x8d\x8f\x7d\x7e\x7f\x74\x76\x77\x6d\x71\x72\ \x6c\x6f\x70\x76\x78\x79\x76\x79\x7a\x74\x77\x78\x79\x7a\x7d\x79\ \x7b\x7f\x7c\x7f\x81\x7c\x7f\x83\x7c\x7f\x83\x7b\x7e\x82\x7a\x7e\ \x82\x78\x7d\x81\x77\x7c\x7f\x77\x7c\x7f\x75\x7a\x7e\x76\x7b\x7e\ \x76\x7b\x7f\x76\x7a\x7e\x75\x79\x7d\x74\x78\x7c\x73\x78\x7d\x75\ \x7a\x7f\x75\x7a\x7f\x73\x79\x7e\x74\x79\x7d\x76\x7b\x7f\x75\x7a\ \x7f\x76\x7c\x7f\x75\x7c\x80\x6f\x77\x7c\x6c\x73\x79\x6b\x71\x77\ \x6d\x73\x78\x6f\x75\x7b\x6c\x72\x77\x6e\x73\x78\x70\x76\x7b\x6d\ \x72\x76\x70\x76\x79\x70\x75\x79\x6e\x73\x76\x66\x6c\x70\x63\x6b\ \x6f\x6a\x71\x74\x7a\x7e\x82\x83\x86\x8a\x84\x88\x8c\x84\x87\x8c\ \x86\x89\x8d\x87\x8b\x8f\x89\x8d\x93\x8a\x8e\x93\x89\x8d\x92\x8c\ \x90\x95\x8e\x91\x95\x8e\x92\x96\x90\x94\x98\x92\x96\x99\x90\x93\ \x97\x91\x93\x97\x91\x93\x97\x92\x95\x99\x93\x96\x9a\x94\x97\x9a\ \x94\x98\x9c\x95\x98\x9c\x99\x9c\xa0\x97\x9a\x9f\x93\x96\x9b\x8c\ \x8f\x93\x86\x89\x8d\x8a\x8c\x8f\x91\x94\x95\x8e\x90\x92\x88\x8a\ \x8c\x91\x92\x93\x9b\x9c\x9d\x97\x98\x99\x92\x92\x94\x95\x95\x97\ \xa0\xa1\xa3\x9e\x9f\xa3\x91\x94\x96\x91\x92\x95\x99\x9b\x9d\x9b\ \x9d\xa0\x93\x95\x98\x92\x93\x95\x9e\x9e\xa0\xaa\xa9\xab\xad\xac\ \xae\xad\xac\xae\xae\xad\xaf\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\ \xae\xad\xaf\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\xb1\xb1\xb1\xb0\ \xb0\xb0\xb2\xb2\xb2\xb2\xb2\xb2\xb1\xb1\xb2\xb2\xb1\xb2\xb1\xb0\ \xb2\xb3\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb8\xb7\xb9\ \xb8\xb7\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb8\xb7\xb8\xb5\xb5\xb5\xaa\ \xaa\xaa\x9e\x9d\x9e\xa3\xa1\xa3\xb2\xae\xb0\xba\xb7\xb8\xb2\xb1\ \xb2\xa6\xa4\xa5\xa2\xa0\xa0\xad\xab\xab\xbf\xbc\xbc\xbb\xb9\xba\ \xa9\xa9\xa9\x9f\x9e\x9f\xa5\xa3\xa5\xb6\xb3\xb4\xbe\xbc\xbe\xb5\ \xb3\xb5\xa6\xa3\xa5\xa3\xa0\xa2\xb1\xae\xb1\xb9\xb6\xb8\xbe\xbb\ \xbd\xb4\xb3\xb4\xa3\xa0\xa3\xa5\xa1\xa3\x00\x00\x00\xc0\xb7\xb3\ \xad\xa6\xa2\x8e\x8c\x8a\x71\x72\x73\x55\x5b\x5c\x46\x4e\x50\x4e\ \x53\x57\x65\x66\x68\x7d\x79\x7b\x8c\x88\x89\x95\x91\x93\x99\x96\ \x98\x9b\x98\x99\x9a\x98\x98\x9b\x98\x9a\x99\x98\x9a\x96\x94\x96\ \x8a\x8a\x8c\x7b\x7c\x7f\x71\x74\x75\x6c\x70\x70\x6e\x71\x72\x76\ \x78\x79\x74\x77\x78\x72\x75\x76\x74\x76\x78\x77\x79\x7d\x78\x79\ \x7c\x7b\x7e\x81\x7b\x7e\x82\x7a\x7d\x81\x7a\x7e\x82\x78\x7d\x81\ \x76\x7b\x7f\x74\x79\x7d\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7e\x75\ \x7a\x7e\x75\x79\x7e\x74\x78\x7c\x75\x79\x7e\x75\x7a\x7f\x75\x7a\ \x7f\x75\x7a\x80\x73\x7a\x7f\x74\x7b\x7f\x75\x7b\x7f\x77\x7d\x81\ \x7a\x80\x85\x78\x7e\x83\x71\x78\x7d\x6d\x75\x7c\x6b\x71\x78\x6d\ \x73\x79\x6f\x75\x79\x6c\x72\x77\x70\x75\x7a\x73\x78\x7b\x70\x75\ \x78\x70\x74\x78\x6b\x71\x75\x62\x69\x6e\x64\x6b\x70\x6a\x71\x74\ \x78\x7c\x80\x84\x87\x8a\x87\x8a\x8e\x88\x8b\x8e\x87\x8a\x8e\x87\ \x8b\x8f\x89\x8d\x92\x8b\x8f\x94\x8c\x8f\x94\x90\x93\x98\x90\x93\ \x97\x90\x93\x97\x8e\x92\x95\x8e\x91\x94\x83\x85\x88\x7c\x7e\x80\ \x82\x83\x86\x8d\x90\x94\x93\x97\x9a\x95\x98\x9d\x94\x97\x9b\x96\ \x98\x9c\x96\x99\x9d\x97\x9a\x9e\x97\x9a\x9e\x98\x9a\x9e\x8f\x92\ \x96\x89\x8c\x8f\x8b\x8d\x8f\x92\x94\x95\x92\x94\x95\x8d\x8f\x90\ \x92\x93\x94\x9b\x9a\x9c\x9a\x9b\x9d\x95\x96\x99\x95\x95\x99\x9e\ \x9f\xa3\x9d\x9e\xa1\x94\x96\x9a\x8e\x90\x93\x97\x99\x9b\x9c\x9e\ \x9f\x98\x9a\x9b\x94\x95\x98\x9a\x9a\x9d\xa6\xa5\xa7\xac\xab\xad\ \xae\xad\xae\xaf\xae\xb0\xad\xac\xae\xae\xad\xaf\xad\xad\xae\xb1\ \xaf\xb2\xae\xad\xaf\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\ \xb0\xb3\xb3\xb3\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\ \xb6\xb4\xb6\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb8\ \xb7\xb9\xb5\xb4\xb7\xb5\xb4\xb6\xba\xb9\xba\xbb\xbb\xbb\xb1\xb0\ \xb2\xa2\xa1\xa3\x9f\x9d\x9f\xad\xab\xad\xb8\xb7\xb7\xb9\xb9\xb9\ \xa8\xa8\xa9\x9f\x9e\x9e\xa7\xa5\xa5\xb5\xb2\xb3\xbb\xba\xba\xb3\ \xb2\xb3\xa2\xa1\xa3\xa0\x9e\xa0\xac\xa9\xab\xba\xb7\xb9\xbd\xbc\ \xbe\xb2\xb0\xb2\xa7\xa4\xa8\xa4\xa1\xa2\xb2\xaf\xb1\xbb\xb9\xba\ \xbd\xba\xbc\xb1\xae\xb0\x00\x00\x00\xba\xb2\xae\xa4\x9d\x9b\x82\ \x80\x80\x67\x6a\x6b\x4e\x55\x55\x44\x4c\x4d\x54\x5a\x5a\x6e\x6f\ \x6f\x83\x7f\x80\x8e\x8c\x8c\x98\x95\x97\x9b\x98\x9a\x9a\x98\x99\ \x9b\x99\x9a\x9a\x98\x9a\x97\x96\x98\x93\x93\x94\x85\x85\x88\x77\ \x79\x7c\x6e\x71\x73\x69\x6d\x6e\x6e\x71\x72\x77\x79\x7a\x71\x74\ \x75\x70\x73\x76\x71\x74\x77\x74\x77\x7b\x77\x79\x7d\x7b\x7e\x82\ \x7b\x7e\x82\x79\x7d\x80\x78\x7c\x80\x79\x7e\x81\x77\x7c\x7f\x75\ \x7a\x7d\x75\x7a\x7e\x76\x7a\x7f\x75\x78\x7e\x74\x78\x7d\x74\x78\ \x7d\x75\x79\x7d\x74\x78\x7d\x75\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\ \x76\x7b\x81\x77\x7c\x81\x76\x7a\x7f\x76\x7b\x80\x77\x7d\x82\x79\ \x7f\x84\x77\x7d\x82\x71\x78\x7f\x6d\x73\x7a\x6a\x70\x77\x6f\x75\ \x7a\x6f\x75\x7a\x6e\x74\x78\x6f\x76\x79\x70\x75\x78\x6d\x73\x75\ \x68\x6f\x72\x64\x6b\x6f\x66\x6e\x71\x70\x76\x78\x76\x7a\x7d\x7c\ \x7f\x83\x85\x88\x8c\x88\x8b\x8f\x87\x8a\x8e\x89\x8b\x91\x89\x8d\ \x92\x8b\x8e\x92\x8c\x8f\x95\x8d\x90\x95\x90\x93\x97\x8e\x92\x96\ \x8d\x91\x94\x85\x89\x8c\x6f\x73\x76\x5c\x62\x65\x6b\x6e\x71\x85\ \x86\x8a\x93\x96\x99\x96\x98\x9c\x95\x97\x9b\x96\x97\x9b\x95\x97\ \x9b\x96\x98\x9c\x98\x9b\x9f\x99\x9b\x9f\x98\x9a\x9e\x92\x95\x99\ \x8b\x8e\x91\x8a\x8d\x8e\x94\x95\x96\x98\x9a\x9b\x93\x95\x96\x92\ \x92\x94\x9c\x9b\x9d\x9c\x9c\x9f\x95\x96\x9a\x91\x93\x97\x96\x97\ \x9b\xa0\xa1\xa4\x98\x9b\x9d\x90\x92\x95\x93\x95\x97\x9d\x9e\xa0\ \x9e\x9e\xa1\x97\x98\x9c\x98\x98\x9a\xa2\xa1\xa3\xa9\xa8\xa8\xb0\ \xaf\xb0\xae\xaf\xaf\xaf\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xb0\xaf\ \xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\xb0\xb3\xb3\xb3\ \xb3\xb3\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb1\xb0\xb2\xb3\xb2\xb4\xb7\ \xb6\xb8\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb9\xb8\xba\xb5\xb4\ \xb6\xb6\xb5\xb7\xbb\xba\xbc\xbc\xbb\xbc\xb9\xb8\xbb\xb4\xb3\xb6\ \xac\xac\xad\xa3\xa2\xa3\xa3\xa1\xa1\xb1\xb0\xb0\xb7\xb5\xb5\xb1\ \xb0\xb0\xa4\xa4\xa4\xa1\x9f\x9f\xa8\xa5\xa5\xb4\xb2\xb2\xbb\xba\ \xba\xae\xae\xaf\xa4\xa2\xa4\xa4\xa1\xa2\xb1\xae\xaf\xbe\xbc\xbd\ \xbb\xb8\xb9\xad\xac\xab\xa6\xa3\xa4\xa9\xa4\xa6\xb3\xaf\xb0\xbe\ \xba\xbb\x00\x00\x00\xb5\xad\xab\x99\x94\x93\x79\x79\x79\x5e\x63\ \x64\x4a\x52\x53\x4a\x50\x51\x5d\x60\x60\x75\x74\x74\x88\x84\x84\ \x91\x8e\x8e\x97\x95\x95\x9a\x97\x98\x99\x99\x99\x9a\x99\x9a\x97\ \x96\x98\x96\x95\x96\x8f\x8e\x90\x7f\x7f\x82\x73\x76\x7a\x6d\x70\ \x73\x68\x6b\x6d\x6f\x71\x72\x75\x77\x78\x70\x73\x75\x6f\x71\x75\ \x71\x74\x77\x70\x73\x77\x76\x79\x7d\x78\x7b\x7f\x7b\x7e\x82\x79\ \x7d\x81\x77\x7b\x7f\x79\x7d\x81\x77\x7b\x7f\x76\x7a\x7f\x74\x79\ \x7c\x76\x7a\x7f\x76\x7a\x7f\x77\x7b\x7f\x74\x79\x7e\x73\x77\x7c\ \x73\x77\x7c\x75\x79\x7e\x75\x79\x7e\x76\x7a\x7f\x77\x7b\x80\x77\ \x7b\x80\x76\x7a\x7f\x77\x7b\x80\x77\x7c\x80\x78\x7d\x82\x79\x7d\ \x83\x77\x7c\x82\x6f\x75\x7b\x6e\x74\x79\x6d\x73\x78\x6f\x75\x7a\ \x71\x77\x7a\x6f\x74\x77\x70\x75\x78\x6d\x74\x77\x64\x6b\x6e\x65\ \x6b\x6f\x6b\x70\x73\x73\x77\x7a\x78\x7b\x7f\x78\x7b\x7f\x7d\x80\ \x84\x87\x8a\x8e\x88\x8b\x8f\x89\x8c\x90\x89\x8c\x90\x8a\x8d\x90\ \x8b\x8e\x92\x8c\x8f\x94\x8d\x92\x96\x8c\x91\x94\x8c\x91\x95\x88\ \x8c\x90\x77\x7c\x80\x64\x6a\x6f\x69\x6e\x72\x73\x76\x79\x7d\x80\ \x83\x85\x87\x8a\x93\x94\x98\x96\x97\x9c\x97\x98\x9c\x98\x99\x9d\ \x99\x9a\x9e\x99\x9b\x9f\x99\x9c\x9f\x99\x9c\x9e\x95\x99\x9b\x8e\ \x91\x93\x8c\x8d\x8e\x95\x97\x98\x99\x9b\x9c\x95\x97\x98\x91\x91\ \x94\x95\x96\x99\x9b\x9c\xa0\x99\x9c\x9e\x90\x91\x93\x98\x9a\x9b\ \xa0\xa2\xa3\x9a\x9c\x9d\x8f\x91\x93\x93\x94\x95\x9f\x9f\xa0\xa6\ \xa6\xa8\x9d\x9d\x9f\x96\x97\x98\x9c\x9c\x9d\xaa\xaa\xa9\xb0\xb0\ \xb0\xaf\xac\xaf\xaf\xae\xb0\xb1\xb0\xb1\xb0\xaf\xb1\xb0\xaf\xb1\ \xb0\xaf\xb1\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb2\xb3\xb1\xb1\xb1\xb3\ \xb2\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb5\xb4\xb6\xb6\xb5\ \xb7\xb6\xb5\xb7\xb8\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb9\xb8\xba\ \xbb\xba\xbc\xba\xb9\xbb\xb8\xb7\xba\xb8\xb7\xb9\xba\xb9\xbb\xb6\ \xb6\xb6\xa8\xa8\xa8\xa2\xa1\xa1\xa4\xa2\xa2\xaf\xae\xae\xb9\xb8\ \xb8\xb1\xb0\xb0\xa2\xa1\xa1\x9f\x9e\x9e\xae\xac\xac\xbd\xbc\xbc\ \xbb\xb9\xb9\xac\xaa\xaa\xa4\xa2\xa2\xaa\xa6\xa7\xb4\xb1\xb2\xbf\ \xbb\xbb\xba\xb6\xb7\xb0\xab\xad\xa4\x9f\xa1\xa5\xa1\xa2\x00\x00\ \x00\xac\xa5\xa2\x8d\x8a\x8a\x6e\x71\x71\x54\x5a\x5c\x48\x4f\x51\ \x50\x53\x55\x66\x65\x65\x7c\x79\x78\x8c\x88\x88\x93\x91\x91\x98\ \x96\x96\x99\x97\x98\x99\x99\x9a\x98\x97\x98\x95\x95\x95\x93\x92\ \x93\x8a\x8a\x8b\x7a\x7b\x7f\x70\x73\x77\x69\x6d\x71\x67\x6a\x6d\ \x71\x73\x75\x73\x75\x76\x6f\x71\x73\x6f\x71\x75\x6c\x6f\x73\x6d\ \x70\x74\x73\x76\x7a\x76\x79\x7d\x79\x7c\x80\x78\x7b\x7f\x78\x7c\ \x80\x77\x7b\x80\x75\x7a\x7e\x74\x78\x7d\x74\x79\x7d\x76\x7a\x7e\ \x75\x79\x7e\x76\x7a\x7f\x75\x79\x7e\x73\x78\x7d\x76\x7a\x7f\x75\ \x79\x7e\x72\x76\x7b\x70\x74\x79\x73\x77\x7c\x76\x7a\x7e\x77\x7b\ \x80\x78\x7c\x81\x77\x7b\x80\x75\x78\x7c\x76\x7a\x7e\x78\x7d\x82\ \x75\x7a\x7f\x70\x75\x7b\x6e\x74\x79\x6e\x73\x78\x73\x78\x7b\x70\ \x75\x78\x6f\x74\x78\x69\x70\x73\x63\x6a\x6e\x66\x6b\x6e\x70\x74\ \x78\x75\x79\x7d\x79\x7c\x80\x7a\x7e\x81\x79\x7c\x80\x7f\x82\x86\ \x87\x8a\x8e\x8a\x8d\x91\x89\x8c\x90\x88\x8b\x8f\x8a\x8d\x91\x8a\ \x8d\x90\x8b\x8f\x93\x8c\x91\x94\x8d\x91\x94\x8c\x8f\x94\x87\x8b\ \x90\x7e\x83\x87\x71\x76\x7a\x61\x66\x6b\x5c\x61\x66\x6f\x70\x74\ \x88\x88\x8a\x94\x95\x98\x96\x98\x9c\x98\x99\x9e\x99\x9a\x9e\x99\ \x9b\x9e\x9a\x9c\x9f\x9a\x9d\x9e\x9d\xa1\xa1\x9c\xa0\xa1\x90\x94\ \x94\x8d\x90\x90\x91\x93\x95\x9b\x9e\x9f\x94\x96\x99\x8e\x8f\x92\ \x93\x94\x98\x9e\x9f\xa0\x9e\x9f\xa0\x95\x98\x98\x95\x97\x98\x9b\ \x9d\x9e\x9a\x9c\x9d\x94\x95\x96\x94\x95\x96\x9f\x9f\xa1\xa7\xa6\ \xa8\xa0\xa1\xa3\x95\x97\x98\x99\x98\x99\xa5\xa4\xa4\xad\xab\xad\ \xb0\xae\xb0\xaf\xae\xaf\xaf\xaf\xb0\xaf\xaf\xb0\xb1\xb0\xb2\xb3\ \xb2\xb4\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb2\xb3\xb3\xb4\xb4\xb3\ \xb5\xb4\xb3\xb5\xb4\xb3\xb5\xb5\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\ \xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\xb9\xbb\xba\xbc\xbb\xba\xbc\xbd\ \xbc\xbe\xba\xb9\xbb\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xba\xba\ \xbb\xb1\xb0\xb2\xa4\xa3\xa4\x9f\x9d\x9d\xaa\xa8\xa8\xb6\xb5\xb5\ \xb8\xb8\xb8\xac\xad\xad\xa4\xa3\xa3\xa5\xa3\xa3\xb5\xb2\xb2\xc0\ \xbd\xbe\xba\xb9\xb9\xad\xa9\xab\xa5\xa0\xa1\xab\xa6\xa8\xba\xb4\ \xb5\xc4\xc1\xc2\xb8\xb4\xb5\xa8\xa5\xa6\x00\x00\x00\xa0\x9a\x96\ \x80\x80\x7f\x64\x69\x6a\x4e\x55\x58\x48\x4f\x51\x58\x5b\x5b\x71\ \x6f\x6f\x84\x7f\x7f\x90\x8b\x8c\x95\x90\x91\x97\x95\x96\x9b\x98\ \x9a\x9a\x99\x9b\x98\x97\x98\x94\x93\x94\x8b\x8b\x8d\x7c\x7e\x81\ \x6f\x72\x76\x6b\x6e\x72\x67\x6a\x6d\x68\x6b\x6d\x6e\x70\x71\x6d\ \x6f\x6f\x6a\x6c\x6d\x68\x6c\x6d\x68\x6b\x6f\x6b\x6e\x72\x70\x73\ \x77\x75\x78\x7c\x75\x78\x7c\x79\x7d\x81\x78\x7c\x81\x75\x79\x7d\ \x74\x79\x7c\x74\x79\x7d\x74\x79\x7d\x75\x7a\x7e\x74\x78\x7c\x74\ \x78\x7d\x74\x78\x7d\x73\x78\x7d\x75\x79\x7e\x72\x77\x7c\x6c\x71\ \x76\x68\x6e\x73\x6c\x70\x75\x72\x76\x7b\x78\x7b\x80\x78\x7c\x81\ \x74\x77\x7c\x6e\x72\x76\x6c\x71\x76\x70\x74\x79\x79\x7e\x82\x75\ \x7b\x7e\x70\x76\x7b\x6d\x72\x78\x6e\x74\x78\x71\x77\x7a\x6e\x73\ \x76\x65\x6a\x6e\x65\x6b\x6e\x69\x6e\x71\x72\x75\x79\x79\x7c\x80\ \x7a\x7d\x81\x7b\x7e\x81\x7a\x7e\x80\x7b\x7f\x81\x80\x83\x87\x89\ \x8b\x8f\x8b\x8e\x92\x8a\x8d\x91\x8a\x8d\x90\x8a\x8d\x91\x8a\x8d\ \x91\x8c\x8f\x93\x8d\x90\x94\x8e\x92\x95\x8e\x92\x96\x8b\x8e\x92\ \x7f\x84\x87\x68\x6f\x73\x5d\x64\x68\x64\x67\x6a\x7a\x7b\x7b\x86\ \x85\x88\x90\x91\x94\x9a\x9b\x9f\x99\x9b\x9e\x98\x9a\x9e\x9b\x9d\ \xa1\x9d\xa0\xa2\x9f\xa2\xa4\xa0\xa4\xa5\x9c\xa1\xa1\x96\x9a\x9a\ \x8e\x91\x93\x91\x92\x93\x99\x9b\x9c\x99\x9a\x9c\x91\x92\x95\x94\ \x94\x96\x9c\x9c\x9e\xa0\xa2\xa2\x99\x9b\x9c\x93\x95\x96\x97\x98\ \x99\x9e\x9d\x9f\x99\x9a\x9b\x93\x95\x97\x9a\x9b\x9e\xa6\xa5\xa8\ \xa5\xa6\xa8\x9d\x9c\x9f\x97\x96\x98\xa1\xa0\xa1\xad\xab\xac\xaf\ \xad\xad\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb1\xb0\ \xb2\xb2\xb1\xb3\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb4\xb5\ \xb6\xb5\xb7\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb3\xb5\xb5\ \xb4\xb6\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ \xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\ \xb8\xb7\xb9\xac\xac\xad\xa0\xa0\xa0\xa4\xa3\xa3\xb2\xaf\xae\xbc\ \xbb\xbb\xb7\xb7\xb8\xa9\xa7\xa7\xa1\x9d\x9e\xad\xa8\xa9\xbb\xb6\ \xb7\xc2\xbe\xbf\xb8\xb5\xb5\xa9\xa7\xa8\xa1\x9e\x9e\xac\xa7\xa8\ \xbc\xb7\xb8\xbe\xba\xbb\x00\x00\x00\x94\x8f\x8b\x76\x77\x77\x5c\ \x61\x62\x4a\x52\x55\x4a\x51\x54\x5f\x61\x62\x79\x75\x76\x88\x83\ \x84\x93\x8e\x8f\x98\x93\x94\x98\x96\x97\x9c\x99\x9a\x98\x98\x99\ \x97\x96\x98\x93\x92\x94\x87\x87\x89\x78\x7a\x7e\x6f\x73\x76\x67\ \x6c\x6f\x65\x69\x6c\x6a\x6c\x6e\x6a\x6c\x6e\x60\x63\x66\x5e\x60\ \x64\x5e\x61\x64\x65\x68\x6c\x67\x6a\x6e\x6d\x71\x75\x72\x76\x7a\ \x74\x78\x7c\x76\x7b\x7e\x76\x7b\x7f\x77\x7c\x80\x75\x7a\x7d\x74\ \x7a\x7d\x74\x79\x7d\x73\x78\x7b\x72\x77\x7b\x71\x77\x7c\x74\x78\ \x7d\x74\x79\x7e\x74\x78\x7e\x70\x76\x7a\x66\x6d\x72\x61\x66\x6d\ \x5d\x63\x69\x67\x6b\x70\x73\x76\x7b\x78\x7b\x80\x71\x75\x7a\x68\ \x6d\x72\x64\x6a\x6f\x67\x6c\x71\x70\x74\x79\x79\x7e\x82\x75\x7b\ \x80\x71\x77\x7b\x70\x76\x79\x6f\x75\x79\x6a\x70\x73\x65\x69\x6e\ \x66\x6b\x6f\x6e\x74\x77\x73\x77\x7b\x79\x7d\x80\x7a\x7d\x81\x79\ \x7c\x7f\x7b\x7f\x80\x7c\x80\x83\x7a\x7d\x81\x80\x83\x85\x8b\x8f\ \x91\x8d\x8f\x93\x8b\x8e\x91\x8a\x8e\x90\x89\x8c\x8f\x8c\x90\x92\ \x8d\x90\x94\x8e\x92\x95\x90\x93\x97\x90\x93\x97\x8f\x93\x97\x80\ \x85\x8a\x69\x73\x77\x65\x6b\x6f\x5f\x62\x64\x6f\x70\x72\x83\x82\ \x84\x94\x94\x98\x99\x9b\x9f\x9a\x9b\xa0\x9b\x9d\xa1\x9c\x9f\xa2\ \x9e\xa1\xa3\xa0\xa4\xa5\xa0\xa3\xa4\x9f\xa2\xa4\x96\x99\x9b\x8e\ \x91\x92\x8c\x8e\x8f\x97\x98\x9a\x9e\x9e\xa0\x98\x99\x9b\x93\x93\ \x96\x9a\x9a\x9c\xa3\xa4\xa4\x9b\x9c\x9d\x92\x93\x95\x96\x96\x98\ \xa1\xa1\xa2\xa1\xa1\xa3\x97\x98\x9a\x96\x96\x98\xa1\xa1\xa3\xab\ \xaa\xac\xa0\x9f\xa0\x98\x97\x99\x9b\x99\x99\xa9\xa7\xa8\xb2\xb0\ \xb1\xb0\xae\xb0\xae\xad\xaf\xb1\xb0\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ \xb2\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb6\xb5\xb7\xb6\xb5\xb7\xb5\ \xb4\xb6\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\ \xb9\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbc\xbb\xbd\ \xbd\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xc0\xbf\xc1\xb9\ \xb9\xba\xb6\xb6\xb7\xad\xad\xad\xa2\x9f\x9e\xa4\xa1\xa1\xb5\xb3\ \xb3\xbc\xbb\xbb\xb6\xb3\xb2\xa9\xa6\xa6\xa3\xa0\xa1\xb2\xae\xaf\ \xbf\xbb\xbc\xbf\xbd\xbd\xb1\xaf\xb0\xa4\xa0\xa2\xa3\x9e\x9f\xb1\ \xac\xad\x00\x00\x00\x89\x85\x83\x6c\x6e\x6e\x55\x5b\x5d\x4a\x50\ \x53\x52\x57\x59\x68\x68\x69\x80\x7c\x7d\x8c\x87\x88\x93\x8f\x90\ \x99\x95\x95\x99\x97\x97\x99\x96\x97\x98\x97\x98\x96\x95\x97\x91\ \x91\x93\x84\x87\x88\x7a\x7e\x80\x73\x77\x7a\x6b\x6f\x72\x68\x6c\ \x70\x6c\x6e\x70\x62\x66\x68\x56\x5b\x5e\x4f\x53\x57\x4e\x51\x55\ \x5e\x61\x65\x66\x6b\x6e\x69\x6d\x70\x6b\x70\x73\x71\x76\x79\x73\ \x78\x7b\x77\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x74\x79\x7e\x75\x7a\ \x7e\x73\x78\x7b\x71\x76\x7a\x70\x75\x7b\x70\x76\x7b\x73\x79\x7e\ \x73\x78\x7d\x72\x78\x7c\x68\x6f\x74\x5b\x63\x68\x58\x5f\x64\x5f\ \x64\x69\x70\x74\x79\x75\x79\x7d\x6b\x6f\x74\x62\x68\x6d\x59\x5f\ \x63\x5c\x60\x65\x69\x6c\x71\x73\x78\x7b\x79\x7e\x82\x76\x7b\x7e\ \x73\x79\x7c\x6a\x6f\x72\x60\x66\x69\x56\x5c\x60\x5a\x5d\x61\x71\ \x72\x75\x7b\x7d\x82\x7b\x7e\x81\x7c\x7f\x83\x7a\x7d\x81\x79\x7d\ \x7e\x7c\x7f\x83\x7b\x7e\x82\x7b\x7e\x80\x7e\x82\x85\x89\x8c\x8e\ \x8c\x90\x91\x8a\x8e\x8f\x8a\x8e\x90\x8b\x8f\x92\x8f\x92\x96\x90\ \x93\x97\x90\x93\x97\x90\x93\x98\x92\x95\x9a\x8e\x91\x96\x80\x87\ \x8c\x6d\x75\x7a\x55\x5f\x63\x5e\x65\x68\x7b\x7e\x80\x94\x95\x99\ \x98\x99\x9c\x99\x9a\x9d\x9a\x9c\x9f\x9d\x9f\xa2\x9e\xa1\xa3\xa0\ \xa4\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x9b\x9e\x9f\x97\x9b\x9c\x8f\x92\ \x93\x8e\x8f\x93\x93\x94\x96\x9e\xa0\xa1\x98\x9a\x9b\x91\x92\x93\ \x94\x95\x95\xa0\xa0\xa1\x9c\x9d\x9e\x93\x95\x96\x95\x97\x99\xa0\ \xa0\xa2\xa3\xa5\xa6\x9a\x9c\x9d\x94\x95\x96\x9d\x9d\x9f\xa9\xa8\ \xa9\xa6\xa6\xa7\x9b\x99\x9b\x9b\x99\x9b\xa5\xa3\xa4\xaf\xae\xaf\ \xb1\xb1\xb1\xb2\xb1\xb2\xb0\xaf\xb1\xb3\xb1\xb3\xb3\xb2\xb4\xb3\ \xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb5\xb4\xb6\xb6\xb5\xb7\xb4\xb3\ \xb5\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb7\xb8\xb7\xb9\ \xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xbe\xbd\xbf\xbb\ \xba\xbc\xbd\xbc\xbe\xc0\xbf\xc1\xbf\xbe\xc0\xbb\xba\xbc\xbe\xbd\ \xbf\xbb\xba\xbb\xb1\xb1\xb1\xa3\xa3\xa3\xa1\xa0\xa0\xab\xa9\xa8\ \xbb\xb8\xb7\xbf\xbc\xbc\xb4\xb3\xb3\xa7\xa5\xa6\xa4\xa1\xa1\xb5\ \xb3\xb3\xc1\xbf\xbf\xbd\xbb\xbb\xb3\xb1\xb1\xa7\xa4\xa5\x00\x00\ \x00\x7b\x7a\x77\x61\x64\x65\x4f\x55\x58\x4c\x50\x54\x59\x5b\x5d\ \x71\x70\x70\x84\x81\x81\x8e\x89\x8a\x96\x92\x92\x98\x94\x94\x99\ \x96\x97\x99\x96\x98\x96\x96\x97\x95\x94\x96\x8e\x8d\x8f\x83\x85\ \x86\x7a\x7d\x7e\x74\x77\x79\x6f\x72\x76\x70\x73\x77\x72\x76\x78\ \x68\x6c\x6e\x5c\x60\x64\x4d\x52\x56\x40\x43\x48\x53\x55\x5a\x61\ \x65\x68\x67\x6c\x6f\x6b\x70\x73\x6c\x71\x75\x70\x74\x79\x73\x77\ \x7c\x76\x7b\x7f\x75\x7a\x7f\x73\x77\x7c\x75\x79\x7d\x72\x78\x7d\ \x71\x76\x7b\x70\x77\x7b\x70\x76\x7a\x73\x79\x7e\x71\x78\x7c\x71\ \x77\x7b\x6d\x74\x79\x67\x6d\x72\x5c\x63\x68\x5a\x60\x65\x66\x6a\ \x6f\x6e\x73\x75\x66\x6c\x6f\x5e\x64\x69\x55\x5a\x5e\x55\x59\x5e\ \x5b\x5f\x65\x68\x6b\x6f\x77\x7a\x7e\x79\x7e\x81\x75\x7b\x7e\x70\ \x75\x78\x5a\x61\x65\x3d\x46\x4d\x3b\x40\x47\x5b\x58\x5d\x7b\x79\ \x7d\x7b\x7e\x82\x79\x7c\x81\x7b\x7e\x81\x7c\x7f\x82\x7c\x7f\x82\ \x7c\x7f\x83\x7d\x80\x82\x7b\x7e\x82\x7f\x83\x84\x89\x8c\x8e\x8a\ \x8e\x90\x8b\x8e\x91\x8c\x8f\x93\x8e\x91\x95\x90\x93\x97\x91\x94\ \x98\x92\x95\x99\x93\x96\x9a\x91\x94\x99\x90\x94\x98\x85\x8a\x8f\ \x6d\x76\x7b\x65\x6e\x71\x7b\x7e\x80\x98\x99\x9d\x97\x98\x9b\x98\ \x99\x9d\x9b\x9c\x9f\x9c\x9e\xa2\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa3\ \xa5\x9f\xa1\xa3\x9f\xa0\xa3\x9f\xa1\xa3\x9b\x9e\x9f\x94\x96\x9a\ \x8c\x8e\x90\x92\x94\x95\x9a\x9c\x9d\x99\x9b\x9c\x93\x94\x95\x94\ \x93\x95\x9e\x9d\x9f\x9f\x9f\xa2\x97\x98\x9a\x95\x95\x97\x9f\x9f\ \xa1\xa9\xa8\xaa\xa2\xa3\xa4\x95\x96\x97\x98\x96\x97\xa6\xa5\xa7\ \xac\xaa\xad\xa2\xa1\xa3\x9b\x9a\x9c\xa1\xa0\xa1\xac\xaa\xab\xb0\ \xaf\xb1\xaf\xae\xb0\xaf\xad\xaf\xb2\xb1\xb2\xb4\xb2\xb4\xb4\xb2\ \xb4\xb3\xb2\xb4\xb6\xb5\xb7\xb3\xb2\xb4\xb4\xb3\xb6\xb5\xb4\xb6\ \xb7\xb5\xb7\xb7\xb5\xb7\xb8\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb8\ \xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\ \xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbd\xbc\xbe\xbc\xba\xbb\xbb\xbb\xbb\ \xba\xba\xba\xb9\xb9\xb9\xb2\xb1\xb1\xa3\xa0\xa0\xa3\x9f\x9e\xb3\ \xb0\xb0\xbd\xbc\xbc\xbc\xba\xba\xb3\xb2\xb2\xa3\xa1\xa1\xa9\xa4\ \xa5\xb9\xb5\xb6\xc3\xc1\xc1\xbc\xb9\xb8\x00\x00\x00\x73\x73\x72\ \x57\x5c\x5e\x4b\x51\x53\x4e\x52\x54\x61\x62\x63\x78\x76\x76\x88\ \x84\x85\x91\x8c\x8d\x97\x93\x93\x97\x95\x95\x9a\x98\x98\x99\x98\ \x99\x95\x95\x96\x92\x91\x93\x8b\x8a\x8d\x82\x84\x86\x7c\x7e\x80\ \x76\x79\x7b\x77\x7a\x7f\x7a\x7e\x80\x78\x7c\x7d\x6e\x72\x74\x62\ \x67\x69\x51\x56\x5a\x3b\x3f\x44\x49\x4c\x51\x59\x5c\x60\x65\x69\ \x6d\x6e\x72\x76\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x75\x7a\x7e\ \x75\x79\x7d\x73\x77\x7b\x72\x76\x7b\x73\x79\x7d\x73\x79\x7e\x73\ \x79\x7e\x71\x77\x7c\x70\x76\x7b\x74\x7a\x7f\x73\x7a\x7e\x72\x77\ \x7c\x6f\x75\x7a\x64\x6a\x6e\x5a\x61\x65\x5c\x63\x67\x60\x65\x69\ \x60\x66\x6a\x5a\x60\x65\x4b\x4f\x54\x4f\x53\x58\x55\x59\x5e\x61\ \x64\x69\x6d\x70\x74\x77\x7b\x7e\x7c\x81\x84\x75\x7b\x7f\x66\x6f\ \x72\x3c\x49\x50\x1f\x2c\x35\x30\x30\x38\x63\x5c\x60\x7b\x7a\x7d\ \x7c\x7e\x81\x7c\x7e\x82\x7d\x80\x84\x7e\x81\x85\x7a\x7d\x81\x7e\ \x81\x85\x80\x83\x87\x7c\x7f\x83\x7f\x83\x85\x88\x8c\x8d\x8c\x90\ \x92\x8d\x90\x94\x8d\x90\x94\x8f\x92\x96\x91\x95\x98\x92\x95\x99\ \x91\x94\x99\x93\x97\x99\x92\x96\x97\x92\x96\x99\x86\x8c\x90\x7d\ \x84\x87\x86\x89\x8c\x94\x95\x99\x9a\x9c\x9e\x9a\x9b\x9f\x9b\x9b\ \x9f\x9c\x9d\xa1\x9f\xa0\xa3\xa1\xa2\xa6\xa0\xa2\xa3\xa1\xa3\xa6\ \xa2\xa4\xa8\xa1\xa2\xa6\x9f\xa1\xa2\xa1\xa3\xa5\x98\x9a\x9c\x8c\ \x8e\x8f\x8d\x8b\x8e\x99\x98\x9a\x9d\x9d\x9e\x95\x96\x98\x90\x90\ \x93\x9a\x9a\x9b\xa5\xa6\xa7\x9f\xa0\xa1\x98\x97\x99\x9a\x99\x9b\ \xa9\xa8\xaa\xa3\xa3\xa4\x98\x98\x9a\x98\x99\x9a\xa2\xa0\xa2\xad\ \xac\xad\xa9\xa8\xaa\x9e\x9e\x9f\x9c\x9a\x9d\xa8\xa6\xa8\xb0\xae\ \xb0\xb3\xb0\xb2\xb5\xb3\xb5\xb6\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\ \xb3\xb1\xb3\xb2\xb0\xb2\xb5\xb4\xb5\xb6\xb5\xb7\xb7\xb6\xb7\xb6\ \xb6\xb7\xb7\xb6\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xba\xba\ \xbc\xba\xba\xbb\xbb\xba\xbc\xbd\xbc\xbd\xbc\xba\xbc\xbc\xb9\xbb\ \xbe\xbd\xbf\xbd\xbb\xbd\xbb\xba\xbc\xb9\xb9\xba\xbe\xbd\xbe\xc0\ \xbf\xc0\xbf\xbe\xc0\xb9\xb8\xb9\xae\xad\xad\xa0\x9f\x9f\xa4\xa1\ \xa1\xb5\xb1\xb0\xbe\xbc\xbb\xb9\xb8\xb8\xa9\xa8\xa8\x9f\x9a\x9a\ \xac\xa7\xa6\xbe\xb9\xb8\x00\x00\x00\x6a\x6b\x6b\x51\x56\x58\x47\ \x4d\x4f\x52\x55\x57\x6b\x6a\x6a\x80\x7c\x7d\x8e\x89\x8a\x92\x8e\ \x8e\x97\x93\x94\x97\x94\x95\x97\x96\x97\x96\x95\x97\x93\x91\x93\ \x92\x91\x93\x88\x87\x89\x7c\x7d\x80\x78\x7a\x7b\x74\x78\x79\x77\ \x7a\x7b\x7b\x7f\x81\x7a\x7d\x80\x74\x77\x7b\x6a\x6e\x72\x4e\x54\ \x59\x35\x3b\x41\x40\x45\x4c\x51\x53\x58\x5d\x60\x64\x6b\x6e\x73\ \x6b\x6f\x74\x6b\x6f\x74\x6f\x73\x78\x73\x77\x7c\x74\x78\x7d\x74\ \x78\x7d\x73\x78\x7d\x71\x76\x7b\x71\x77\x7c\x72\x78\x7d\x70\x76\ \x7b\x71\x77\x7c\x74\x7a\x7e\x73\x79\x7c\x71\x78\x7b\x70\x77\x7a\ \x6c\x71\x74\x61\x68\x6c\x5b\x62\x66\x56\x5c\x60\x57\x5e\x61\x51\ \x58\x5c\x4d\x52\x57\x4c\x50\x55\x52\x56\x5b\x53\x56\x5a\x63\x65\ \x69\x6c\x6f\x73\x7a\x7e\x82\x7d\x82\x86\x74\x7b\x7e\x5c\x68\x6d\ \x36\x45\x4e\x1d\x2a\x35\x37\x36\x3f\x6a\x64\x68\x7e\x7e\x80\x7e\ \x80\x84\x7c\x7f\x83\x7f\x82\x86\x7f\x82\x86\x7d\x80\x84\x7e\x81\ \x85\x7f\x82\x86\x7d\x80\x84\x80\x83\x85\x8a\x8c\x8d\x8d\x91\x93\ \x8f\x93\x97\x90\x94\x98\x90\x93\x97\x92\x95\x99\x92\x95\x98\x91\ \x95\x97\x92\x96\x96\x93\x95\x96\x93\x96\x97\x90\x92\x96\x92\x94\ \x97\x94\x95\x99\x98\x9a\x9d\x9c\x9d\xa1\x9e\x9f\xa3\x9d\x9e\xa2\ \x9e\x9f\xa2\xa0\xa0\xa4\xa1\xa2\xa4\xa0\xa1\xa4\xa1\xa2\xa5\xa0\ \xa2\xa5\xa2\xa4\xa5\xa3\xa5\xa6\xa1\xa2\xa4\x9a\x9c\x9d\x91\x92\ \x94\x8f\x8e\x91\x95\x94\x97\x9e\x9e\xa0\x97\x99\x9b\x92\x92\x94\ \x9a\x99\x9b\xa5\xa5\xa7\xa2\xa3\xa4\x97\x97\x98\x96\x95\x97\xa0\ \x9e\xa0\xa9\xa9\xab\xa0\xa1\xa2\x99\x98\x9a\x9c\x9b\x9d\xac\xab\ \xad\xac\xab\xad\x9e\x9e\xa0\x97\x96\x99\xa0\x9f\x9f\xb0\xaf\xaf\ \xb5\xb4\xb5\xb6\xb4\xb7\xb6\xb3\xb5\xb2\xaf\xb1\xb2\xb1\xb2\xb3\ \xb1\xb2\xb4\xb3\xb4\xb7\xb6\xb7\xb8\xb7\xb9\xb8\xb7\xb7\xba\xb9\ \xb9\xb9\xba\xba\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbc\xbb\xba\ \xbc\xba\xbc\xbe\xbc\xbd\xbc\xb9\xbb\xbc\xb9\xbb\xbd\xbb\xbc\xbb\ \xb9\xbb\xba\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xc0\xbf\xc1\xc1\xc0\ \xc2\xc0\xbf\xc1\xc1\xc1\xc2\xb9\xb9\xba\xa6\xa6\xa7\xa0\x9c\x9b\ \xae\xaa\xaa\xbd\xbb\xbb\xbd\xbb\xbb\xb5\xb2\xb3\xa8\xa3\xa3\xa1\ \x9c\x9b\x00\x00\x00\x5e\x60\x62\x4d\x52\x56\x4d\x51\x56\x5b\x5b\ \x5e\x72\x6e\x6f\x84\x7f\x80\x91\x8c\x8d\x94\x91\x91\x98\x95\x96\ \x9a\x97\x99\x95\x94\x96\x95\x93\x95\x92\x91\x93\x8d\x8c\x8f\x80\ \x7f\x82\x76\x78\x7a\x72\x74\x75\x71\x73\x74\x76\x78\x7a\x7a\x7d\ \x81\x7a\x7d\x81\x77\x7a\x7e\x69\x6e\x72\x49\x52\x57\x2b\x33\x39\ \x27\x2c\x34\x41\x43\x49\x5a\x5a\x5e\x66\x69\x6d\x68\x6b\x70\x6a\ \x6e\x73\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x74\x78\x7d\x73\x77\ \x7c\x72\x76\x7b\x70\x76\x7b\x70\x76\x7b\x70\x75\x7a\x6f\x75\x7a\ \x74\x79\x7d\x74\x79\x7c\x71\x76\x79\x74\x79\x7c\x73\x78\x7b\x69\ \x6f\x73\x61\x67\x6b\x58\x5f\x63\x55\x5d\x60\x48\x4e\x53\x49\x4d\ \x53\x49\x4d\x52\x3e\x42\x47\x46\x48\x4c\x52\x54\x56\x63\x65\x66\ \x72\x73\x77\x80\x82\x85\x7c\x81\x84\x73\x7a\x7d\x5a\x66\x6b\x32\ \x45\x4e\x1e\x2a\x36\x3b\x39\x43\x6e\x68\x6c\x80\x81\x84\x7f\x80\ \x84\x7e\x80\x84\x7f\x81\x85\x7f\x82\x86\x7b\x7e\x82\x80\x82\x86\ \x7e\x81\x85\x7d\x80\x83\x82\x83\x87\x89\x8a\x8e\x8e\x90\x94\x8f\ \x92\x96\x90\x94\x96\x91\x94\x95\x93\x96\x97\x93\x96\x97\x91\x94\ \x95\x94\x96\x97\x96\x97\x98\x97\x99\x9a\x97\x98\x9b\x98\x99\x9c\ \x99\x9a\x9d\x9d\x9e\xa2\x9e\x9f\xa3\x9c\x9d\xa1\x9d\x9d\xa1\x9f\ \xa0\xa3\xa0\xa1\xa5\xa2\xa3\xa5\xa0\xa2\xa3\xa1\xa3\xa5\xa3\xa5\ \xa6\xa4\xa5\xa7\xa4\xa6\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x96\x97\x9b\ \x8f\x8f\x93\x96\x94\x97\x9f\x9f\xa1\x9a\x9a\x9b\x93\x92\x94\x97\ \x96\x98\xa1\xa0\xa2\xa2\xa0\xa2\x98\x97\x99\x95\x94\x96\x9f\x9e\ \xa0\xa9\xa8\xaa\xa4\xa3\xa5\x9a\x99\x9b\x9b\x9a\x9c\xa9\xa7\xa9\ \xad\xac\xae\xa3\xa2\xa4\x98\x96\x97\x9c\x99\x98\xa9\xa7\xa8\xb2\ \xb0\xb1\xb2\xaf\xb1\xb0\xad\xae\xb0\xaf\xb1\xb0\xae\xae\xb2\xb0\ \xb0\xb6\xb4\xb4\xb8\xb6\xb7\xb7\xb6\xb6\xb7\xb6\xb7\xb8\xb8\xb9\ \xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbf\xbd\xbd\xbc\xb9\xbb\xbc\ \xb9\xbb\xbb\xb8\xba\xbb\xb8\xba\xbb\xb9\xb9\xba\xb9\xb9\xbb\xba\ \xba\xb9\xb8\xba\xbf\xbe\xc0\xbf\xbf\xc0\xbf\xbd\xbf\xbe\xbd\xbf\ \xbe\xbd\xbf\xbf\xbd\xbf\xbf\xbe\xbf\xb6\xb6\xb7\xa4\xa4\xa4\xa1\ \x9f\x9f\xb1\xae\xaf\xb9\xb4\xb5\xbd\xb8\xb8\xb0\xad\xad\x00\x00\ \x00\x58\x5c\x5e\x4c\x52\x55\x51\x55\x59\x64\x65\x67\x7c\x77\x78\ \x8a\x85\x86\x92\x8f\x8f\x95\x92\x93\x97\x95\x97\x97\x96\x97\x97\ \x95\x96\x93\x92\x94\x91\x90\x92\x86\x85\x87\x76\x77\x7b\x6e\x6f\ \x73\x6a\x6b\x6f\x6e\x70\x72\x74\x76\x77\x79\x7c\x7f\x7a\x7d\x81\ \x7a\x7e\x81\x6a\x71\x75\x56\x61\x67\x38\x45\x4c\x22\x29\x34\x2d\ \x30\x3a\x4b\x4c\x54\x65\x67\x6b\x68\x6b\x70\x69\x6c\x71\x6a\x6e\ \x73\x6c\x70\x75\x6f\x74\x78\x72\x77\x7b\x72\x76\x7b\x71\x75\x7a\ \x71\x75\x7a\x72\x77\x7c\x72\x77\x7c\x72\x77\x7c\x71\x76\x7a\x73\ \x78\x7b\x76\x7b\x7e\x73\x78\x7b\x73\x78\x7b\x6f\x74\x78\x64\x6b\ \x6f\x5b\x61\x66\x4b\x51\x57\x3a\x40\x46\x37\x3e\x44\x3c\x43\x48\ \x29\x2f\x35\x23\x27\x2b\x38\x3a\x3d\x53\x54\x56\x6b\x6c\x6e\x75\ \x76\x7a\x7e\x81\x85\x7c\x80\x83\x74\x7b\x7f\x5a\x68\x6d\x34\x45\ \x4f\x1f\x2b\x37\x3f\x3e\x46\x70\x6b\x70\x7f\x7f\x82\x7f\x81\x85\ \x80\x81\x85\x80\x83\x87\x80\x83\x87\x7e\x81\x85\x81\x84\x88\x7f\ \x82\x86\x7e\x81\x84\x80\x82\x84\x85\x88\x8b\x8c\x8e\x91\x90\x91\ \x93\x93\x95\x96\x93\x94\x95\x93\x94\x95\x93\x95\x96\x95\x97\x98\ \x93\x95\x96\x97\x99\x9a\x97\x99\x9c\x97\x99\x9d\x97\x98\x9c\x9b\ \x9c\xa0\x9d\x9f\xa2\x9f\xa0\xa3\x9f\x9e\xa2\x9e\x9e\xa1\x9f\xa1\ \xa3\xa2\xa3\xa5\xa1\xa2\xa3\xa1\xa3\xa4\xa3\xa5\xa6\xa5\xa4\xa6\ \xa6\xa6\xa8\xa3\xa4\xa5\xa5\xa6\xa7\xa4\xa5\xa6\x9b\x9c\x9e\x90\ \x91\x92\x93\x93\x94\x9f\x9e\xa0\x9e\x9d\x9f\x97\x96\x98\x94\x93\ \x95\x9c\x9a\x9c\xa5\xa4\xa6\x9d\x9c\x9e\x96\x95\x97\x99\x99\x9b\ \xa5\xa4\xa6\xa7\xa6\xa8\x9e\x9d\x9f\x99\x97\x99\xa2\xa0\xa1\xab\ \xa9\xaa\xa8\xa7\xa6\x9c\x9c\x9b\x9a\x99\x99\xa7\xa4\xa5\xad\xab\ \xad\xb0\xaf\xaf\xb3\xb2\xb3\xb3\xb1\xb1\xb4\xb2\xb2\xb3\xb1\xb1\ \xb7\xb4\xb4\xb7\xb6\xb6\xb8\xb8\xb8\xbb\xba\xbb\xbb\xb9\xbb\xba\ \xb9\xbb\xba\xb8\xb9\xba\xb8\xb8\xbc\xb9\xba\xbd\xba\xbb\xbe\xbc\ \xbc\xbd\xba\xbb\xbc\xba\xba\xba\xb8\xb8\xbd\xbc\xbc\xbd\xbb\xbb\ \xbf\xbc\xbd\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ \xbe\xc0\xc1\xc0\xc2\xc2\xc1\xc3\xbe\xbd\xbf\xac\xaa\xac\x9f\x9b\ \x9e\xa2\x9e\xa0\xb3\xae\xaf\xbd\xb9\xb8\x00\x00\x00\x52\x55\x5a\ \x49\x4e\x51\x55\x57\x5a\x6d\x6a\x6b\x80\x7b\x7c\x8d\x88\x89\x94\ \x92\x93\x98\x96\x97\x97\x95\x97\x97\x95\x96\x95\x94\x96\x95\x94\ \x96\x90\x8f\x91\x7c\x7d\x80\x6e\x70\x74\x68\x6a\x6e\x66\x67\x6b\ \x6c\x6d\x70\x76\x78\x78\x7a\x7c\x7f\x7a\x7d\x7f\x7a\x7e\x80\x72\ \x78\x7b\x62\x6b\x71\x49\x57\x5e\x2f\x3c\x48\x30\x39\x43\x4b\x50\ \x58\x5d\x61\x65\x63\x66\x6b\x68\x6b\x6f\x69\x6c\x71\x6b\x6f\x74\ \x6e\x71\x76\x71\x75\x79\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x72\ \x77\x7c\x71\x76\x7b\x73\x76\x7c\x71\x76\x7a\x72\x77\x7a\x72\x77\ \x7a\x74\x79\x7c\x74\x79\x7b\x72\x77\x7b\x6b\x72\x76\x5f\x67\x6b\ \x45\x4d\x54\x27\x30\x37\x28\x30\x37\x2c\x32\x37\x26\x2c\x32\x20\ \x28\x2d\x28\x2d\x32\x3f\x41\x46\x5c\x5e\x61\x6b\x6b\x6f\x76\x77\ \x7b\x81\x83\x87\x7e\x84\x87\x75\x7d\x80\x58\x65\x6b\x2f\x41\x4b\ \x1c\x27\x31\x40\x3c\x44\x6e\x67\x6a\x80\x7f\x82\x7f\x81\x83\x7d\ \x7f\x82\x81\x84\x87\x80\x84\x87\x7f\x81\x85\x82\x84\x88\x81\x83\ \x86\x73\x75\x77\x62\x60\x63\x6a\x63\x66\x82\x7c\x7d\x8f\x8e\x8e\ \x93\x93\x95\x93\x94\x94\x93\x93\x94\x94\x96\x97\x95\x97\x98\x96\ \x98\x99\x98\x9b\x9c\x95\x98\x9b\x98\x99\x9d\x9a\x9b\x9f\x9d\x9f\ \xa2\x9e\x9f\xa1\xa0\xa0\xa2\xa1\xa0\xa2\xa1\xa2\xa3\xa1\xa2\xa3\ \xa1\xa0\xa2\xa2\xa4\xa5\xa0\xa1\xa2\xa5\xa3\xa6\xa7\xa6\xa8\xa6\ \xa5\xa7\xa5\xa4\xa6\xa8\xa6\xa9\xa6\xa5\xa7\x9c\x9c\x9e\x92\x93\ \x94\x92\x92\x93\x9b\x9a\x9b\xa0\x9f\xa0\x9b\x9a\x9c\x93\x92\x94\ \x98\x97\x99\xa7\xa6\xa8\xa5\xa5\xa6\x9a\x9b\x9c\x97\x96\x98\x9f\ \x9e\xa0\xaa\xaa\xab\xa3\xa2\xa3\x9b\x9b\x9b\x9b\x9a\x9a\xa7\xa5\ \xa4\xae\xac\xab\xa4\xa4\xa4\x9a\x99\x9a\x9e\x9c\x9e\xac\xa9\xab\ \xb2\xaf\xb1\xb5\xb3\xb3\xb3\xb1\xb1\xb6\xb4\xb4\xb4\xb2\xb2\xb5\ \xb2\xb2\xb6\xb4\xb3\xb8\xb7\xb7\xbc\xba\xbb\xbc\xb9\xbc\xba\xb7\ \xba\xbb\xb7\xba\xbb\xb9\xba\xbc\xba\xba\xbc\xba\xba\xbe\xbc\xbc\ \xbc\xb9\xba\xbd\xbc\xbc\xbe\xbc\xbc\xbe\xbc\xbc\xbf\xbc\xbe\xc0\ \xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc2\xbe\xc0\xc0\xbe\ \xc0\xc1\xc0\xc2\xc0\xbf\xc1\xbe\xbd\xbf\xb6\xb3\xb5\xa6\xa3\xa6\ \x9f\x9a\x9b\xa5\xa0\xa1\x00\x00\x00\x4e\x52\x56\x4f\x51\x56\x60\ \x5f\x61\x76\x71\x72\x87\x81\x81\x90\x8b\x8d\x95\x91\x94\x98\x95\ \x97\x98\x96\x98\x96\x95\x97\x93\x92\x94\x91\x90\x92\x85\x84\x86\ \x73\x73\x76\x68\x6b\x6e\x61\x64\x68\x61\x64\x68\x6c\x6d\x70\x77\ \x79\x7b\x7a\x7d\x80\x7a\x7d\x81\x79\x7c\x80\x77\x7b\x7e\x6d\x74\ \x77\x54\x5d\x64\x44\x50\x5b\x3f\x49\x53\x50\x56\x5c\x59\x5d\x62\ \x5d\x60\x65\x64\x68\x6c\x68\x6b\x70\x68\x6b\x70\x6c\x6f\x74\x6e\ \x72\x77\x72\x76\x7b\x71\x75\x7b\x71\x75\x7b\x73\x76\x7c\x71\x76\ \x7b\x72\x76\x7b\x72\x77\x7b\x73\x78\x7c\x72\x77\x7a\x74\x79\x7c\ \x74\x79\x7c\x73\x78\x7b\x6f\x75\x78\x69\x6e\x73\x54\x5c\x63\x38\ \x43\x49\x2d\x36\x3c\x29\x2f\x34\x32\x39\x3f\x35\x3d\x41\x32\x38\ \x3e\x3f\x42\x48\x52\x54\x59\x5e\x5f\x64\x6d\x6e\x72\x7a\x7d\x80\ \x7f\x83\x86\x7d\x82\x85\x72\x7a\x7e\x57\x66\x6c\x2e\x41\x4b\x1c\ \x26\x32\x3e\x3a\x43\x6f\x68\x6c\x81\x80\x82\x82\x83\x85\x81\x82\ \x85\x82\x84\x87\x81\x83\x87\x81\x83\x87\x7e\x80\x84\x70\x74\x76\ \x41\x43\x49\x26\x20\x27\x55\x44\x47\x84\x7b\x7b\x92\x91\x92\x93\ \x91\x94\x93\x93\x95\x94\x95\x97\x96\x98\x99\x95\x97\x98\x98\x9a\ \x9c\x99\x9a\x9e\x97\x98\x9c\x9a\x9b\x9f\x9b\x9c\x9e\x9d\x9e\x9f\ \xa1\xa2\xa3\xa2\xa1\xa3\xa2\xa2\xa3\xa1\xa1\xa3\xa2\xa2\xa4\xa4\ \xa4\xa6\xa5\xa6\xa6\xa5\xa4\xa6\xa6\xa5\xa6\xa8\xa7\xa9\xa9\xa8\ \xaa\xaa\xa9\xab\xa9\xa8\xaa\xa4\xa3\xa5\xa2\xa0\xa2\x9a\x99\x9b\ \x93\x92\x94\x9a\x99\x9a\xa1\xa0\xa1\x9c\x9c\x9d\x97\x96\x98\x96\ \x95\x97\xa2\xa1\xa3\xa7\xa6\xa8\x9f\x9e\x9f\x9a\x98\x9a\x9f\x9d\ \x9e\xaa\xa8\xa8\xa9\xa7\xa7\xa0\x9f\x9f\x9b\x9a\x99\xa4\xa2\xa1\ \xae\xac\xac\xa7\xa6\xa6\x9b\x9a\x9c\x9c\x9a\x9a\xa7\xa3\xa3\xae\ \xab\xab\xb1\xaf\xaf\xb4\xb2\xb2\xb6\xb4\xb4\xb4\xb1\xb1\xb2\xaf\ \xaf\xb5\xb4\xb3\xb9\xb7\xb8\xbb\xb8\xba\xbd\xbb\xbc\xbc\xb9\xbb\ \xbd\xba\xbb\xbb\xb8\xb8\xbc\xba\xba\xbb\xb9\xb9\xbb\xb9\xb9\xbd\ \xbb\xbc\xbd\xbc\xbc\xc0\xbd\xbf\xc0\xbd\xbf\xbe\xbb\xbd\xbf\xbb\ \xbd\xc1\xbd\xbf\xc1\xbd\xc0\xc1\xbe\xc0\xc0\xbd\xbf\xc0\xbe\xc0\ \xbe\xbc\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbe\xbc\xbd\xb5\xb1\xb3\xa8\ \xa3\xa4\x00\x00\x00\x4e\x53\x57\x54\x57\x5a\x66\x63\x65\x7d\x77\ \x78\x8a\x84\x84\x92\x8c\x8e\x95\x92\x94\x97\x94\x96\x97\x94\x96\ \x95\x94\x96\x93\x92\x94\x8d\x8c\x8e\x7b\x7b\x7d\x6c\x6e\x72\x64\ \x68\x6c\x5e\x62\x67\x64\x67\x6b\x6e\x70\x73\x79\x7a\x7e\x7a\x7d\ \x81\x79\x7c\x80\x78\x7b\x80\x77\x7a\x7e\x74\x77\x7b\x66\x6b\x6f\ \x5c\x64\x6b\x54\x5d\x65\x50\x55\x5b\x4f\x52\x58\x58\x5b\x60\x5c\ \x5f\x63\x61\x63\x68\x60\x62\x65\x64\x66\x6b\x69\x6c\x71\x6f\x72\ \x77\x71\x75\x7a\x72\x76\x7c\x73\x77\x7c\x71\x76\x79\x72\x76\x7b\ \x72\x77\x7b\x72\x77\x7b\x73\x78\x7c\x73\x77\x7b\x73\x78\x7b\x6d\ \x72\x76\x66\x6b\x6f\x65\x6a\x6e\x63\x69\x6e\x58\x5f\x64\x42\x4a\ \x51\x34\x3b\x42\x45\x4c\x53\x46\x4e\x54\x44\x4b\x51\x48\x4c\x54\ \x55\x57\x5e\x59\x5a\x60\x65\x65\x6a\x6e\x6f\x73\x7b\x7d\x81\x81\ \x85\x89\x7e\x84\x87\x74\x7d\x80\x5a\x69\x70\x31\x44\x4e\x1c\x27\ \x33\x3f\x3a\x44\x6d\x65\x69\x84\x82\x84\x81\x82\x85\x81\x83\x86\ \x81\x84\x88\x80\x83\x87\x7d\x80\x84\x73\x77\x7b\x41\x4d\x52\x06\ \x0f\x14\x19\x11\x16\x61\x56\x58\x8c\x88\x88\x92\x91\x92\x94\x94\ \x96\x95\x95\x97\x95\x97\x98\x95\x96\x98\x94\x96\x99\x98\x9a\x9b\ \x9a\x9b\x9d\x9a\x9b\x9d\x9b\x9c\x9e\x9d\x9f\xa0\x9e\xa0\xa1\xa1\ \xa1\xa3\xa1\xa1\xa3\xa2\xa1\xa3\x9f\x9f\x9f\x99\x98\x98\xa2\xa0\ \xa0\xa8\xa5\xa5\xa8\xa6\xa6\xa8\xa5\xa7\xaa\xa8\xaa\xaa\xa7\xa9\ \xa8\xa7\xa9\xa9\xa8\xaa\xa9\xa8\xab\xa8\xa7\xa9\x9f\x9e\xa0\x95\ \x94\x96\x96\x95\x97\x9e\x9e\x9f\xa1\xa1\xa2\x9c\x9b\x9d\x94\x93\ \x95\x9b\x99\x9a\xa5\xa3\xa3\xa6\xa4\xa5\x9c\x9a\x9a\x9c\x99\x99\ \xa7\xa4\xa4\xab\xa9\xa9\xa6\xa5\xa5\x9e\x9c\x9d\x9e\x9b\x9d\xab\ \xa8\xaa\xab\xa9\xaa\xa8\xa6\xa6\x9f\x9b\x9b\xa1\x9e\x9d\xa9\xa7\ \xa7\xb0\xae\xaf\xb4\xb2\xb2\xb3\xb1\xb1\xb2\xb0\xb0\xb4\xb2\xb2\ \xb5\xb3\xb3\xb7\xb6\xb5\xbc\xb9\xba\xbd\xba\xbc\xba\xb8\xb8\xbb\ \xb8\xb8\xbc\xba\xba\xbb\xb8\xb8\xbb\xb9\xba\xbb\xb8\xba\xbb\xb9\ \xba\xbf\xbc\xbd\xbf\xbc\xbd\xbe\xba\xbc\xbf\xbb\xbd\xc1\xbe\xc0\ \xbf\xbc\xbe\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ \xbe\xc0\xc0\xbe\xc0\xc0\xbf\xbf\xbe\xbc\xbc\xbf\xbd\xbe\x00\x00\ \x00\x4d\x52\x54\x58\x59\x5b\x6f\x6b\x6c\x81\x7b\x7c\x8b\x86\x87\ \x93\x8d\x8f\x95\x91\x93\x97\x94\x96\x94\x92\x94\x96\x94\x96\x91\ \x8f\x91\x84\x83\x85\x73\x75\x77\x69\x6c\x6f\x60\x64\x68\x61\x64\ \x69\x68\x6a\x6e\x74\x75\x79\x7a\x7c\x80\x79\x7c\x80\x79\x7c\x80\ \x78\x7c\x80\x76\x7a\x7e\x73\x77\x7a\x6e\x72\x76\x63\x69\x6f\x61\ \x68\x6d\x53\x56\x5c\x4c\x4f\x55\x49\x4c\x53\x4d\x4f\x54\x52\x53\ \x58\x54\x54\x5a\x55\x55\x5b\x5f\x60\x65\x6a\x6d\x71\x6e\x72\x77\ \x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x73\x77\x7c\x74\x78\x7d\x72\ \x77\x7b\x72\x77\x7b\x72\x76\x7b\x70\x75\x78\x66\x6b\x70\x59\x5f\ \x64\x56\x5d\x64\x5c\x63\x68\x60\x66\x6b\x56\x5d\x63\x45\x4d\x55\ \x48\x4f\x57\x49\x4f\x56\x48\x4e\x54\x53\x57\x5d\x56\x58\x5e\x57\ \x57\x5d\x60\x5f\x65\x65\x65\x6a\x72\x72\x77\x7c\x7f\x83\x82\x86\ \x89\x81\x86\x89\x77\x7f\x83\x5b\x6a\x71\x33\x45\x4f\x1e\x29\x33\ \x39\x35\x3d\x6f\x65\x69\x83\x80\x82\x82\x83\x86\x7f\x81\x85\x82\ \x84\x88\x81\x84\x88\x79\x7d\x81\x5b\x69\x6d\x21\x34\x39\x02\x0d\ \x12\x34\x38\x3d\x7a\x79\x79\x90\x90\x90\x95\x94\x96\x96\x95\x97\ \x96\x97\x99\x96\x96\x9b\x96\x96\x9a\x99\x9a\x9c\x9a\x9b\x9d\x9d\ \x9d\xa0\x9c\x9c\x9f\x9d\x9e\xa0\x9e\x9f\xa0\x9f\xa0\xa1\xa1\xa1\ \xa3\x9e\x9d\x9f\x8d\x8b\x8b\x7c\x7a\x7a\x8a\x84\x85\x9c\x95\x96\ \xa7\xa2\xa3\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xaa\ \xa8\xaa\xaa\xa9\xab\xac\xab\xae\xab\xaa\xac\xa1\xa0\xa3\x98\x97\ \x99\x95\x96\x98\x9c\x9c\x9e\xa5\xa3\xa5\x9e\x9d\x9f\x96\x95\x97\ \x97\x96\x96\xa2\xa0\xa1\xa6\xa4\xa4\xa2\xa0\xa0\x9e\x9c\x9c\xa2\ \x9f\x9f\xaa\xa8\xa8\xaa\xa8\xa9\x9f\x9d\x9e\x9a\x97\x99\xa3\xa0\ \xa2\xaf\xac\xac\xad\xaa\xaa\xa3\xa3\xa3\x9b\x9a\x9a\xa2\xa0\xa1\ \xab\xa9\xaa\xb3\xb0\xaf\xb5\xb3\xb3\xb4\xb3\xb3\xb4\xb2\xb2\xb6\ \xb4\xb4\xb8\xb6\xb7\xba\xb7\xb9\xb9\xb5\xb6\xba\xb7\xb7\xba\xb7\ \xb7\xbb\xba\xba\xb9\xb6\xb9\xb9\xb6\xb8\xbb\xb8\xba\xbb\xb8\xba\ \xbe\xbb\xbd\xbe\xbb\xbc\xbf\xbc\xbe\xc0\xbc\xbf\xbe\xbb\xbd\xbf\ \xbc\xbe\xbf\xbc\xbe\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc1\xbe\ \xc0\xc2\xbf\xc1\xc2\xbf\xc1\xc2\xbf\xc1\x00\x00\x00\x4e\x53\x56\ \x5e\x5e\x5f\x77\x72\x73\x87\x81\x83\x8e\x89\x8b\x94\x8f\x91\x96\ \x92\x94\x96\x93\x95\x94\x91\x93\x94\x93\x95\x8f\x8e\x90\x7d\x7d\ \x7d\x70\x72\x74\x67\x6a\x6e\x61\x64\x68\x64\x67\x6b\x6e\x70\x74\ \x79\x7a\x7e\x79\x7b\x7f\x79\x7c\x80\x79\x7c\x81\x79\x7c\x80\x77\ \x7a\x7e\x74\x78\x7c\x6f\x74\x77\x6a\x6e\x73\x64\x6a\x6f\x54\x59\ \x5e\x42\x46\x4d\x37\x3b\x45\x3b\x3d\x46\x3b\x3c\x45\x46\x46\x4f\ \x44\x45\x4f\x50\x50\x58\x61\x63\x68\x6d\x70\x75\x6f\x73\x78\x70\ \x74\x79\x71\x75\x7a\x73\x77\x7c\x74\x78\x7d\x74\x78\x7c\x72\x76\ \x7b\x71\x76\x7b\x70\x75\x79\x65\x6a\x6f\x59\x61\x66\x51\x59\x5f\ \x57\x5f\x64\x61\x67\x6c\x5e\x64\x69\x54\x5c\x64\x42\x48\x51\x39\ \x3d\x45\x3c\x40\x47\x44\x48\x4e\x4d\x50\x56\x53\x53\x58\x5c\x5d\ \x61\x60\x61\x66\x66\x67\x6d\x76\x77\x7c\x81\x83\x87\x84\x89\x8b\ \x7f\x85\x89\x76\x7e\x82\x5d\x6a\x70\x37\x49\x52\x1d\x28\x30\x35\ \x30\x38\x6b\x62\x65\x85\x82\x83\x82\x82\x86\x80\x82\x85\x82\x85\ \x89\x82\x85\x89\x75\x7b\x7f\x4e\x5f\x64\x2b\x3e\x45\x38\x46\x4c\ \x68\x6c\x6e\x88\x89\x8a\x93\x92\x95\x97\x96\x98\x97\x97\x99\x98\ \x98\x9b\x9a\x99\x9d\x9a\x9b\x9c\x9a\x9a\x9d\x9d\x9d\xa0\x9f\x9e\ \xa1\x9d\x9c\x9f\x9b\x9b\x9e\x9f\x9f\xa1\xa2\xa1\xa3\x9c\x9b\x9d\ \x84\x85\x86\x71\x71\x72\x6e\x6b\x6d\x81\x7b\x7c\x95\x8c\x8e\xa6\ \xa0\xa2\xab\xa7\xa9\xa9\xa6\xa8\xa9\xa6\xa8\xaa\xa8\xaa\xaa\xa9\ \xab\xac\xaa\xad\xad\xac\xae\xab\xaa\xac\xa6\xa5\xa7\x9f\x9f\xa1\ \x97\x96\x98\x9b\x99\x9a\xa2\xa0\xa1\xa2\xa1\xa3\x9c\x9b\x9b\x98\ \x96\x96\xa1\x9e\x9f\xaa\xa7\xa8\xa9\xa6\xa6\xa0\x9d\x9e\x9d\x9b\ \x9c\xa6\xa3\xa4\xac\xa9\xaa\xa4\xa3\xa4\x9e\x9d\x9e\x9e\x9b\x9b\ \xa9\xa4\xa6\xb1\xb0\xb0\xa9\xa8\xa8\xa1\x9e\xa0\xa2\x9e\xa0\xaa\ \xa5\xa5\xb2\xad\xae\xb5\xb1\xb2\xb5\xb2\xb3\xb5\xb2\xb3\xb6\xb2\ \xb3\xb6\xb2\xb4\xb7\xb2\xb3\xb8\xb4\xb5\xb8\xb4\xb5\xb9\xb7\xb7\ \xb8\xb5\xb7\xb9\xb6\xb8\xbb\xb8\xba\xba\xb7\xb9\xbe\xbb\xbd\xbf\ \xbc\xbe\xbf\xbc\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xc1\xbe\xbf\xc0\xbd\ \xc0\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbf\xc0\xbd\xbf\xc1\xbe\xc0\ \xc2\xbf\xc1\xc3\xc0\xc2\x00\x00\x00\x52\x56\x5a\x66\x65\x67\x7d\ \x78\x7a\x8a\x85\x87\x90\x8c\x8e\x94\x90\x92\x95\x92\x94\x96\x94\ \x96\x94\x92\x94\x91\x90\x93\x8b\x8a\x8c\x7a\x7a\x7d\x71\x73\x76\ \x6a\x6d\x71\x65\x68\x6c\x66\x69\x6d\x74\x75\x79\x7a\x7b\x7f\x79\ \x7a\x7e\x79\x7b\x7f\x78\x7c\x80\x77\x7b\x80\x76\x79\x7e\x76\x7a\ \x7e\x71\x75\x79\x70\x74\x78\x64\x6a\x6f\x4e\x56\x5c\x30\x36\x3d\ \x2c\x31\x3a\x2b\x2f\x39\x29\x2b\x35\x32\x33\x3e\x37\x39\x45\x43\ \x45\x50\x5a\x5c\x64\x6a\x6d\x72\x6e\x72\x77\x70\x74\x79\x70\x74\ \x79\x72\x76\x7b\x72\x76\x7b\x74\x77\x7d\x73\x77\x7c\x73\x77\x7c\ \x71\x75\x7a\x68\x6e\x73\x61\x67\x6c\x58\x5f\x64\x5e\x64\x68\x6b\ \x6f\x73\x66\x6b\x6f\x5e\x64\x6a\x41\x49\x51\x25\x2d\x36\x22\x2b\ \x32\x1e\x25\x2c\x26\x29\x2f\x3c\x3d\x41\x4c\x4c\x52\x5e\x5e\x63\ \x64\x66\x6a\x72\x74\x79\x7f\x82\x86\x86\x8a\x8e\x85\x89\x8d\x80\ \x84\x88\x77\x7f\x84\x5f\x6d\x74\x38\x49\x52\x1f\x2a\x33\x35\x32\ \x3a\x6a\x60\x64\x82\x7f\x80\x82\x84\x87\x81\x82\x86\x84\x86\x8a\ \x83\x85\x89\x71\x77\x7b\x5d\x68\x6d\x60\x6a\x6d\x72\x77\x79\x81\ \x83\x86\x8a\x8a\x8e\x94\x93\x96\x96\x97\x98\x9a\x99\x9b\x9b\x9a\ \x9d\x9a\x99\x9b\x9b\x9a\x9c\x9c\x9c\x9f\x9d\x9d\xa0\x9d\x9d\xa0\ \x9c\x9c\x9f\x9e\x9f\xa1\xa1\xa0\xa2\x9e\x9e\xa1\x90\x91\x94\x7e\ \x81\x82\x67\x67\x68\x6a\x67\x69\x76\x6f\x71\x8d\x86\x87\x9f\x9a\ \x9c\xa9\xa5\xa6\xa8\xa6\xa8\xaa\xa7\xaa\xa9\xa6\xa9\xaa\xa8\xaa\ \xab\xa9\xab\xac\xaa\xac\xaa\xa9\xac\xa9\xa8\xaa\xa2\xa1\xa2\x9a\ \x99\x9a\x96\x95\x97\x9c\x9b\x9d\xa4\xa3\xa3\xa3\xa2\xa3\x9d\x9b\ \x9d\x9e\x9b\x9c\xa8\xa5\xa5\xac\xa9\xaa\xa4\xa2\xa4\x9b\x98\x9a\ \xa0\x9d\x9e\xaa\xa7\xa8\xac\xab\xab\xa6\xa3\xa3\x9c\x98\x99\xa4\ \xa1\xa2\xaf\xad\xad\xb1\xb0\xb0\xaa\xa6\xa8\xa1\x9d\x9f\xa5\xa1\ \xa2\xad\xaa\xab\xb5\xb1\xb3\xb7\xb3\xb4\xb5\xb1\xb3\xb3\xaf\xb1\ \xb5\xb1\xb3\xb4\xb1\xb2\xb7\xb3\xb5\xb9\xb6\xb7\xb9\xb6\xb8\xbb\ \xb8\xba\xbc\xb9\xba\xbd\xba\xbc\xbe\xbb\xbd\xbe\xbb\xbd\xbf\xbc\ \xbe\xbf\xbc\xbe\xbd\xba\xbc\xc0\xbd\xbe\xbf\xbc\xbf\xbf\xbb\xbf\ \xc2\xbe\xc1\xc1\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc2\xc1\xbe\xc0\xc1\ \xbe\xc0\x00\x00\x00\x5a\x5a\x5d\x70\x6d\x6f\x84\x7f\x81\x8d\x88\ \x8b\x91\x8c\x90\x94\x91\x94\x95\x91\x95\x95\x93\x96\x92\x91\x93\ \x91\x90\x93\x87\x86\x89\x7d\x7e\x82\x73\x76\x7a\x6c\x6f\x72\x69\ \x6a\x6e\x6c\x6d\x71\x76\x78\x7a\x76\x77\x7b\x77\x78\x7c\x78\x7a\ \x7e\x78\x7b\x80\x77\x7b\x80\x76\x7a\x7f\x74\x78\x7c\x74\x77\x7c\ \x6f\x73\x78\x61\x68\x6d\x49\x52\x59\x2c\x33\x3b\x27\x2c\x35\x21\ \x26\x30\x26\x29\x33\x26\x28\x33\x31\x34\x40\x40\x44\x4f\x57\x5a\ \x63\x66\x69\x70\x6a\x6e\x74\x6f\x73\x78\x71\x75\x7a\x71\x75\x7a\ \x73\x77\x7c\x74\x78\x7c\x74\x78\x7d\x74\x79\x7e\x73\x77\x7c\x6d\ \x73\x78\x66\x6c\x71\x5f\x65\x6a\x5e\x63\x67\x67\x6b\x6e\x68\x6c\ \x71\x65\x69\x6e\x54\x5c\x63\x2b\x39\x42\x21\x2f\x39\x1b\x24\x2c\ \x11\x16\x1a\x1e\x22\x26\x34\x36\x3b\x4f\x4f\x53\x66\x67\x6b\x71\ \x72\x77\x7e\x81\x86\x88\x8b\x8f\x88\x8b\x8f\x85\x89\x8e\x82\x88\ \x8d\x7a\x81\x88\x64\x71\x79\x3c\x4d\x56\x20\x2b\x35\x30\x2d\x36\ \x61\x58\x5c\x82\x7f\x80\x84\x85\x88\x82\x84\x88\x81\x82\x85\x79\ \x7b\x7d\x6d\x72\x74\x6f\x74\x75\x7e\x80\x82\x83\x85\x88\x83\x84\ \x88\x8b\x89\x8d\x93\x93\x94\x98\x97\x99\x9a\x99\x9b\x9a\x99\x9b\ \x9a\x99\x9b\x98\x98\x9b\x9b\x9b\x9f\x9e\x9f\xa3\x9f\x9e\xa2\x9f\ \x9e\xa2\x9f\x9f\xa2\x9f\xa1\xa4\x9b\x9b\xa0\x80\x82\x86\x65\x67\ \x69\x5d\x5d\x5e\x5f\x5c\x60\x72\x70\x71\x8d\x8a\x8b\xa4\xa0\xa2\ \xaa\xa7\xa9\xab\xa8\xaa\xaa\xa7\xaa\xaa\xa8\xaa\xaa\xa7\xa9\xac\ \xa8\xaa\xab\xa9\xad\xab\xaa\xae\xaa\xa9\xac\xa8\xa7\xaa\x9e\x9d\ \xa1\x96\x95\x97\x9a\x98\x99\xa3\xa0\xa2\xa5\xa2\xa4\x9d\x9c\x9d\ \x9b\x98\x9a\xa2\x9f\xa0\xa7\xa4\xa6\xa5\xa3\xa5\x9b\x99\x9b\x9e\ \x9c\x9d\xa8\xa5\xa6\xb0\xad\xae\xab\xa9\xaa\xa2\x9e\xa0\xa1\x9e\ \x9f\xaa\xa6\xa7\xb0\xad\xaf\xb0\xad\xaf\xa6\xa3\xa5\xa1\x9e\xa0\ \xa7\xa3\xa5\xaf\xaa\xac\xb5\xb0\xb2\xb5\xb2\xb4\xb6\xb3\xb5\xb3\ \xb1\xb2\xb5\xb1\xb4\xb6\xb2\xb4\xb6\xb3\xb6\xb8\xb4\xb8\xbb\xb8\ \xbc\xbe\xba\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xbf\xbc\xbe\xbf\xbc\xbd\ \xbe\xb9\xbd\xc0\xbc\xc0\xbe\xbb\xbf\xbe\xba\xbf\xc0\xbc\xc1\xc2\ \xbe\xc1\xc0\xbc\xc0\xc2\xbe\xc2\xc1\xbd\xc1\xbf\xbc\xc0\x00\x00\ \x00\x62\x60\x63\x78\x73\x75\x87\x82\x84\x8f\x8a\x8e\x93\x8f\x93\ \x96\x93\x98\x94\x91\x96\x93\x91\x95\x91\x90\x94\x90\x8f\x93\x83\ \x82\x87\x7e\x7e\x84\x76\x78\x7c\x6e\x70\x72\x6b\x6c\x70\x71\x72\ \x75\x74\x75\x77\x6f\x70\x74\x6c\x6d\x72\x70\x71\x76\x74\x76\x7c\ \x76\x79\x7e\x75\x78\x7d\x72\x77\x7b\x71\x76\x7a\x6f\x73\x79\x63\ \x6a\x6f\x4a\x53\x5b\x33\x3c\x44\x29\x30\x39\x20\x25\x2f\x27\x2c\ \x35\x2a\x2d\x38\x2f\x35\x40\x44\x48\x52\x59\x5b\x64\x67\x69\x71\ \x6a\x6c\x74\x6d\x70\x75\x71\x75\x79\x71\x75\x7a\x73\x76\x7c\x74\ \x77\x7d\x74\x78\x7e\x74\x77\x7e\x73\x77\x7e\x72\x77\x7c\x6b\x71\ \x76\x66\x6c\x71\x5d\x63\x67\x54\x5a\x5f\x5c\x60\x66\x64\x67\x6c\ \x61\x66\x6b\x4c\x57\x5f\x34\x42\x4d\x2f\x39\x42\x2a\x32\x38\x2e\ \x35\x3c\x34\x39\x3f\x4d\x4e\x54\x66\x67\x6b\x74\x75\x79\x80\x81\ \x87\x86\x89\x8e\x86\x89\x8e\x87\x8b\x90\x87\x8b\x90\x82\x87\x8d\ \x7a\x82\x89\x66\x74\x7c\x3f\x50\x59\x20\x2e\x3a\x2b\x2c\x38\x5a\ \x55\x5b\x81\x7e\x81\x85\x86\x89\x7c\x7d\x7f\x74\x75\x75\x72\x74\ \x74\x75\x76\x77\x7e\x80\x81\x85\x85\x87\x88\x89\x8d\x85\x85\x89\ \x87\x88\x8a\x93\x92\x94\x96\x95\x97\x99\x98\x9b\x98\x99\x9c\x98\ \x98\x9c\x9b\x9b\x9f\x9f\x9f\xa3\xa0\xa0\xa4\xa0\x9f\xa3\x9f\xa0\ \xa3\x9e\x9f\xa3\x9d\x9d\xa3\x86\x88\x8d\x6d\x71\x76\x5e\x62\x66\ \x62\x64\x67\x6a\x6b\x6c\x7c\x7b\x7b\x8c\x88\x8a\x96\x92\x94\xa4\ \xa0\xa2\xad\xaa\xac\xac\xaa\xab\xaa\xa6\xa9\xa9\xa7\xa9\xac\xaa\ \xac\xad\xac\xb0\xab\xaa\xad\xab\xaa\xad\xab\xaa\xac\xa4\xa3\xa6\ \x9d\x9c\x9e\x96\x94\x96\x9c\x99\x9b\xa3\xa1\xa3\xa2\x9f\xa1\x9a\ \x97\x99\x99\x96\x98\xa4\xa1\xa3\xaa\xa7\xa9\xa6\xa4\xa6\x9f\x9c\ \x9e\xa4\xa1\xa3\xab\xa8\xa9\xb2\xaf\xb1\xa9\xa5\xa7\xa0\x9c\x9f\ \xa2\x9e\xa2\xad\xa9\xad\xb5\xb1\xb3\xad\xab\xac\xa3\x9f\xa2\xa0\ \x9c\xa0\xa9\xa4\xa8\xb6\xb1\xb3\xb7\xb3\xb5\xb7\xb4\xb6\xb7\xb3\ \xb5\xb5\xb2\xb3\xb6\xb3\xb6\xb7\xb3\xb7\xb9\xb5\xba\xbd\xb9\xbd\ \xbd\xb9\xbd\xbd\xba\xbe\xbf\xbb\xbe\xbf\xbc\xbd\xbe\xba\xbe\xc0\ \xbc\xc0\xc0\xbc\xc0\xbf\xbc\xc1\xc0\xbc\xc1\xc0\xbc\xc1\xbf\xbb\ \xc0\xc0\xbb\xc0\xbe\xba\xbf\xbe\xba\xbf\x00\x00\x00\x6a\x67\x6b\ \x7e\x79\x7c\x8a\x84\x88\x90\x8c\x90\x94\x90\x95\x95\x92\x97\x95\ \x93\x98\x93\x92\x97\x90\x8f\x93\x8d\x8c\x90\x87\x86\x8b\x7d\x7e\ \x83\x77\x79\x7d\x70\x71\x74\x6f\x70\x74\x74\x75\x79\x6d\x6f\x73\ \x64\x66\x6b\x60\x61\x67\x62\x62\x6a\x67\x69\x6f\x72\x74\x79\x75\ \x79\x7e\x74\x78\x7d\x71\x75\x7a\x72\x76\x7c\x68\x6e\x75\x50\x59\ \x62\x3f\x4a\x54\x34\x3f\x4a\x2b\x34\x3f\x2a\x32\x3c\x2f\x36\x42\ \x32\x39\x44\x4a\x4e\x58\x5f\x61\x6a\x65\x68\x70\x69\x6c\x74\x6b\ \x6e\x75\x70\x74\x79\x70\x75\x7c\x73\x76\x7e\x73\x76\x7e\x76\x79\ \x80\x74\x78\x80\x74\x78\x7f\x74\x79\x80\x70\x76\x7d\x6c\x72\x78\ \x60\x66\x6c\x4a\x51\x59\x4a\x4f\x58\x52\x57\x5f\x5d\x62\x67\x5c\ \x64\x6a\x4d\x56\x5f\x44\x4e\x57\x44\x4e\x56\x44\x4b\x54\x43\x49\ \x51\x56\x59\x5d\x6b\x6d\x71\x77\x79\x7d\x83\x86\x8b\x88\x8b\x91\ \x89\x8c\x91\x88\x8b\x91\x87\x8a\x92\x88\x8b\x92\x84\x89\x90\x7c\ \x85\x8c\x68\x74\x7c\x45\x55\x60\x25\x34\x43\x27\x2e\x3a\x53\x54\ \x5c\x7c\x7c\x7f\x7a\x7c\x7d\x6b\x6d\x6e\x72\x72\x73\x7f\x7e\x81\ \x84\x84\x86\x83\x85\x86\x87\x87\x8b\x89\x8a\x8e\x86\x87\x8b\x89\ \x8a\x8e\x90\x91\x94\x96\x96\x9a\x97\x98\x9c\x99\x9a\x9e\x9c\x9b\ \x9f\x9e\x9c\xa1\x9e\x9e\xa2\x9e\x9e\xa3\x9f\x9f\xa4\x9f\x9d\xa3\ \x9d\x9d\xa3\x93\x95\x9b\x87\x8b\x91\x81\x85\x8b\x7c\x7f\x82\x72\ \x74\x75\x6a\x68\x6a\x69\x67\x6a\x76\x72\x75\x91\x8c\x8e\xa7\xa3\ \xa4\xae\xac\xad\xab\xa8\xaa\xad\xaa\xac\xb0\xac\xaf\xaf\xad\xb0\ \xac\xab\xad\xab\xaa\xae\xaa\xa9\xad\xaf\xae\xb2\xac\xab\xae\xa0\ \x9f\xa1\x96\x94\x96\x99\x95\x97\xa3\xa0\xa2\xa6\xa4\xa6\x9c\x9b\ \x9d\x9a\x99\x9c\x9f\x9d\xa1\xad\xaa\xac\xac\xa9\xab\xa4\xa2\xa4\ \xa0\x9d\x9f\xa4\xa1\xa3\xb2\xaf\xb1\xb1\xae\xb1\xa4\xa1\xa5\x9d\ \x99\x9e\xa7\xa3\xa8\xb3\xb0\xb4\xb1\xaf\xb2\xa6\xa4\xa6\x9d\x99\ \x9c\xa1\x9d\x9f\xad\xaa\xac\xba\xb7\xb9\xba\xb7\xb9\xb9\xb5\xb9\ \xb8\xb4\xb8\xb8\xb4\xb9\xb8\xb4\xb9\xba\xb6\xbb\xbb\xb7\xbc\xba\ \xb6\xbb\xbe\xba\xbe\xc1\xbd\xc1\xc0\xbc\xc1\xc0\xbc\xc0\xc0\xbc\ \xc1\xc0\xbc\xc1\xbe\xba\xbf\xc0\xbc\xc1\xbf\xbb\xc0\xbe\xba\xbf\ \xbf\xbb\xc0\xbd\xb9\xbe\x00\x00\x00\x73\x6f\x74\x84\x7f\x82\x8c\ \x87\x8c\x91\x8d\x93\x94\x90\x95\x94\x92\x97\x92\x91\x95\x91\x90\ \x94\x8f\x8e\x92\x8b\x8a\x8e\x86\x86\x8b\x80\x81\x87\x79\x7b\x80\ \x72\x73\x77\x6e\x6f\x73\x6d\x6e\x72\x67\x68\x6d\x5c\x5d\x63\x55\ \x58\x5f\x56\x59\x61\x5b\x5d\x66\x69\x6c\x73\x72\x75\x7b\x73\x77\ \x7c\x72\x76\x7b\x70\x73\x7a\x69\x6f\x77\x5f\x68\x71\x51\x5c\x66\ \x47\x53\x5f\x3f\x4b\x57\x3c\x46\x51\x3f\x49\x55\x42\x49\x56\x52\ \x57\x61\x60\x63\x6b\x63\x66\x6e\x65\x68\x70\x69\x6c\x74\x6b\x6e\ \x76\x70\x74\x7b\x73\x76\x7d\x71\x75\x7d\x73\x79\x7f\x73\x79\x80\ \x73\x79\x80\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x66\x6c\x74\x55\ \x5d\x67\x43\x4b\x57\x3e\x44\x50\x51\x57\x5f\x59\x5e\x66\x58\x60\ \x67\x52\x5b\x63\x46\x50\x59\x3b\x44\x50\x38\x3f\x4a\x4e\x52\x59\ \x6b\x6c\x71\x7d\x7f\x83\x85\x88\x8d\x88\x8b\x90\x88\x8c\x93\x89\ \x8c\x94\x88\x8b\x93\x8a\x8d\x95\x89\x8c\x94\x88\x8f\x95\x7f\x87\ \x8e\x6d\x78\x80\x49\x5a\x65\x24\x35\x41\x1f\x27\x32\x41\x3e\x47\ \x5b\x55\x57\x57\x50\x52\x5f\x57\x5b\x7b\x76\x7a\x88\x86\x8a\x86\ \x86\x8a\x82\x83\x87\x8b\x8a\x8e\x8c\x8c\x90\x89\x89\x8e\x86\x87\ \x8a\x8e\x8f\x92\x98\x99\x9d\x9c\x9b\xa0\x9d\x9c\xa2\x9e\x9c\xa2\ \x9e\x9d\xa3\x9d\x9d\xa2\x9d\x9d\xa3\x9c\x9b\xa1\x9f\x9e\xa4\xa1\ \xa1\xa7\x9e\x9f\xa5\xa0\x9f\xa5\x9a\x9b\x9f\x8c\x8d\x90\x77\x79\ \x7d\x68\x6b\x6f\x6d\x6e\x72\x84\x81\x85\x92\x8e\x91\x9f\x9a\x9e\ \xaa\xa7\xaa\xad\xab\xad\xb0\xac\xb0\xad\xac\xaf\xae\xad\xb0\xad\ \xac\xb0\xad\xac\xb0\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xaf\xa5\xa4\ \xa8\x9a\x99\x9c\x97\x94\x97\x9d\x9a\x9d\xa9\xa7\xaa\xa7\xa6\xaa\ \x9b\x9a\x9e\x9d\x9a\x9f\xa5\xa1\xa4\xae\xab\xae\xab\xa8\xaa\xa0\ \x9c\xa0\xa2\x9f\xa2\xad\xa9\xad\xb2\xae\xb2\xac\xa8\xab\x9e\x9d\ \xa0\x9f\x9d\xa0\xa9\xa7\xaa\xb4\xb2\xb4\xac\xaa\xac\x9f\x9c\x9e\ \x9e\x9c\x9f\xa9\xa6\xa8\xb6\xb2\xb4\xba\xb7\xba\xbc\xb8\xbd\xbb\ \xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xba\xb7\xbb\xb8\xb4\xb9\xbb\xb7\ \xbc\xbf\xbc\xc1\xc0\xbc\xc1\xbd\xbb\xbf\xbd\xba\xbf\xbc\xba\xbf\ \xbd\xb9\xbf\xbe\xbb\xc1\xc0\xbc\xc2\xc2\xbe\xc3\xc0\xbc\xc1\xc1\ \xbd\xc2\x00\x00\x00\x7b\x77\x7a\x86\x81\x84\x8f\x8b\x8f\x91\x8f\ \x94\x92\x91\x95\x92\x90\x95\x92\x91\x95\x90\x8f\x93\x90\x8f\x94\ \x8c\x8b\x90\x84\x84\x8a\x84\x84\x8a\x78\x7b\x80\x74\x75\x78\x6b\ \x6c\x71\x62\x62\x68\x59\x5b\x60\x53\x55\x5b\x4b\x4e\x57\x51\x54\ \x5c\x56\x59\x61\x63\x66\x6e\x6f\x71\x78\x71\x75\x7a\x71\x74\x7b\ \x72\x74\x7c\x6c\x72\x78\x6a\x72\x7a\x60\x69\x72\x58\x62\x6b\x52\ \x5c\x66\x50\x59\x63\x4e\x55\x60\x4d\x52\x5d\x54\x58\x61\x5f\x62\ \x6a\x68\x6b\x73\x65\x67\x70\x68\x6b\x73\x6a\x6e\x75\x6d\x72\x79\ \x72\x78\x7e\x71\x77\x7e\x71\x77\x7e\x75\x7b\x82\x74\x7a\x81\x75\ \x7b\x82\x74\x79\x80\x72\x78\x7f\x6d\x74\x7c\x62\x6b\x74\x58\x62\ \x6d\x4f\x59\x62\x47\x4d\x56\x4f\x56\x5f\x5a\x61\x68\x5c\x66\x6d\ \x57\x62\x6b\x35\x40\x4d\x23\x2b\x37\x3a\x41\x4b\x63\x65\x6d\x7f\ \x81\x88\x87\x89\x90\x87\x89\x90\x88\x8a\x92\x89\x8b\x94\x89\x8c\ \x95\x8b\x8e\x97\x8b\x8e\x96\x8b\x8f\x97\x89\x8e\x95\x7f\x85\x8d\ \x6e\x77\x80\x4d\x5b\x65\x28\x34\x40\x19\x1a\x25\x19\x13\x1b\x1f\ \x19\x1f\x29\x20\x27\x57\x4c\x52\x81\x7c\x7f\x89\x88\x8b\x89\x89\ \x8d\x86\x85\x8a\x8b\x8b\x8f\x8d\x8d\x92\x8a\x8b\x8f\x89\x8a\x8e\ \x8c\x8d\x91\x99\x9a\x9e\x9e\x9e\xa4\xa0\x9e\xa4\xa0\x9f\xa5\xa0\ \x9f\xa5\x9f\x9e\xa4\xa2\xa2\xa8\xa1\xa1\xa7\xa2\xa2\xa8\xa0\xa0\ \xa6\xa1\xa2\xa5\xa1\xa2\xa6\x9d\x9e\xa2\x92\x95\x99\x7b\x7f\x83\ \x72\x76\x7b\x74\x74\x79\x76\x72\x77\x81\x7c\x81\x94\x90\x94\xa6\ \xa4\xa7\xad\xab\xaf\xad\xab\xb0\xaf\xae\xb2\xaf\xae\xb2\xaf\xae\ \xb2\xb0\xaf\xb3\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xb0\xad\xac\xaf\ \xa3\xa2\xa6\x9a\x99\x9d\x9e\x9d\xa0\xa9\xa8\xac\xae\xac\xb0\xa4\ \xa3\xa7\x9e\x9a\x9e\xa2\x9e\xa3\xad\xaa\xad\xb2\xaf\xb3\xa4\xa2\ \xa6\x9e\x9d\xa1\xa3\xa1\xa5\xad\xac\xae\xaf\xae\xb0\xa5\xa4\xa7\ \x9f\x9d\xa1\xa4\xa0\xa5\xae\xaa\xae\xb3\xb0\xb2\xa9\xa8\xaa\xa0\ \x9f\xa3\xa2\x9f\xa2\xae\xa9\xae\xbc\xb8\xbd\xc0\xbc\xc1\xbd\xb9\ \xbe\xbb\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xb9\xb6\xbb\xbc\xb9\xbd\ \xc0\xbc\xc1\xbf\xbd\xc2\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbd\ \xbb\xc0\xc2\xbf\xc4\xc1\xbd\xc2\xc0\xbc\xc1\xc2\xbe\xc3\x00\x00\ \x00\x80\x7b\x7e\x89\x86\x89\x8e\x8b\x90\x92\x90\x95\x93\x92\x96\ \x94\x93\x97\x93\x93\x96\x90\x8e\x93\x8d\x8c\x92\x8c\x8c\x92\x89\ \x89\x8f\x81\x84\x89\x77\x7a\x7f\x74\x76\x7b\x66\x67\x6b\x59\x5a\ \x60\x4e\x51\x58\x4b\x4e\x56\x4b\x4e\x56\x53\x55\x5d\x5b\x5e\x66\ \x64\x67\x6f\x6e\x71\x79\x72\x74\x7c\x71\x74\x7c\x70\x73\x7b\x6e\ \x74\x7a\x6d\x74\x7b\x68\x70\x77\x63\x6c\x74\x5e\x68\x71\x59\x62\ \x6b\x53\x59\x63\x49\x4e\x59\x51\x54\x5e\x5b\x5e\x66\x5e\x61\x69\ \x5c\x60\x66\x5e\x61\x68\x65\x69\x71\x6a\x70\x77\x70\x76\x7d\x71\ \x77\x7e\x73\x79\x80\x74\x7a\x81\x76\x7c\x83\x75\x7b\x82\x75\x7b\ \x81\x74\x7a\x80\x72\x79\x80\x6e\x76\x7e\x69\x73\x7b\x61\x6a\x73\ \x56\x61\x69\x4a\x55\x5e\x4f\x56\x5e\x5a\x64\x6b\x60\x6b\x72\x58\ \x65\x6e\x42\x52\x5f\x4b\x59\x65\x68\x6e\x77\x7e\x81\x88\x86\x88\ \x90\x87\x8a\x92\x89\x8c\x94\x88\x8b\x94\x88\x8d\x96\x8a\x8e\x97\ \x8b\x8d\x97\x8d\x8f\x98\x8e\x91\x99\x8a\x8f\x95\x80\x88\x8e\x71\ \x7c\x81\x58\x64\x6b\x2b\x38\x46\x0b\x11\x1b\x01\x01\x04\x06\x04\ \x08\x19\x13\x18\x50\x45\x4a\x7c\x75\x7a\x89\x88\x8c\x8b\x8c\x90\ \x89\x89\x8f\x8c\x8c\x91\x8e\x90\x94\x8c\x8e\x93\x88\x89\x8e\x8e\ \x8e\x94\x9a\x99\x9f\x9f\x9d\xa4\xa1\x9f\xa5\xa1\x9f\xa5\xa0\x9e\ \xa4\xa0\x9f\xa5\xa0\xa0\xa6\xa2\xa2\xa8\xa3\xa4\xa9\xa4\xa4\xaa\ \xa2\xa4\xa8\xa4\xa4\xa8\xa2\xa4\xa8\x98\x9c\xa0\x8a\x90\x95\x80\ \x84\x89\x75\x74\x79\x64\x61\x66\x70\x6b\x6e\x88\x81\x84\xa0\x9a\ \x9f\xac\xa8\xad\xae\xac\xaf\xaf\xae\xb0\xae\xad\xb1\xb0\xaf\xb3\ \xb1\xb0\xb4\xb1\xb0\xb4\xb3\xb0\xb7\xb3\xb1\xb7\xb1\xb0\xb6\xa9\ \xa9\xae\x9f\x9f\xa3\x9b\x9b\x9f\xa6\xa4\xa9\xb0\xad\xb2\xaa\xa8\ \xad\xa0\x9e\xa2\x9f\x9b\xa0\xa7\xa3\xa7\xb1\xaf\xb1\xaa\xa9\xac\ \xa0\x9f\xa3\x9b\x9a\x9e\xa5\xa4\xa7\xb0\xaf\xb1\xad\xac\xaf\xa2\ \x9f\xa4\x9e\x9a\x9f\xa8\xa4\xa9\xb5\xb1\xb6\xb2\xb1\xb5\xab\xaa\ \xad\xa4\xa2\xa7\xa8\xa4\xa9\xb5\xaf\xb5\xbd\xb9\xbe\xbc\xb8\xbe\ \xbe\xba\xbf\xbd\xba\xbf\xbb\xba\xbe\xbb\xba\xbe\xbb\xb9\xbd\xbd\ \xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbe\xbd\xc1\xbf\xbb\ \xc0\xc1\xbd\xc2\xc1\xbe\xc3\xc3\xc0\xc5\x00\x00\x00\ \x00\x02\xa0\xde\ \x42\ \x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ \x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ \x00\xa8\xa0\x02\x00\xe9\x24\x00\x00\xe9\x24\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\xe6\xd8\xdc\xe7\xd9\xdd\xe9\xdb\xde\xe9\xdc\ \xde\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\ \xec\xdf\xe1\xed\xe0\xe2\xee\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\ \xe2\xe3\xef\xe3\xe4\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe5\xef\xe4\ \xe4\xef\xe3\xe3\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe4\xf0\xe4\xe4\ \xf0\xe4\xe4\xef\xe3\xe3\xf0\xe4\xe2\xef\xe4\xe2\xf0\xe3\xe1\xee\ \xe1\xdf\xee\xe1\xdf\xee\xe0\xde\xed\xdf\xdd\xee\xdf\xdd\xee\xdf\ \xdd\xed\xde\xdb\xed\xdd\xda\xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\ \xed\xdc\xd9\xed\xdc\xd9\xee\xde\xd8\xee\xde\xd8\xef\xde\xd8\xef\ \xde\xd8\xee\xde\xd8\xee\xde\xd8\xee\xdd\xd7\xed\xdd\xd7\xee\xde\ \xd8\xee\xde\xd8\xef\xdf\xd9\xef\xe0\xda\xef\xe0\xda\xef\xdf\xd9\ \xef\xdf\xd9\xef\xdf\xd9\xee\xde\xd8\xed\xdd\xd7\xed\xdd\xd7\xee\ \xdc\xd6\xed\xdb\xd6\xed\xda\xd5\xed\xda\xd5\xed\xda\xd5\xed\xda\ \xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xda\xd4\xeb\xd9\xd6\ \xeb\xda\xd7\xec\xdb\xd8\xeb\xdb\xd8\xeb\xdc\xd9\xea\xdb\xd9\xea\ \xdb\xd9\xe8\xda\xd8\xe8\xdb\xd9\xe8\xdb\xd9\xe9\xdb\xd9\xe9\xdc\ \xda\xe9\xdc\xda\xe9\xdd\xdb\xea\xdd\xdb\xeb\xdd\xdb\xeb\xdd\xdb\ \xec\xde\xdc\xef\xe0\xdd\xee\xe2\xde\xf0\xe4\xdf\xf2\xe6\xe0\xf2\ \xe7\xe1\xf3\xe8\xe2\xf4\xea\xe3\xf4\xe9\xe2\xf2\xe7\xe0\xf1\xe3\ \xdd\xee\xdd\xd8\xeb\xd8\xd5\xe7\xd4\xd1\xe2\xcf\xcd\xdd\xca\xca\ \xd8\xc5\xc6\xd2\xc1\xc4\xce\xbd\xc0\xca\xbb\xbf\xc8\xba\xbf\xc7\ \xb9\xbf\xc6\xb9\xbe\xc6\xb8\xbe\xc7\xb9\xbe\xc5\xb8\xbc\xc1\xb5\ \xbb\xbc\xb0\xb9\xb4\xaa\xb6\xab\xa4\xb2\x9f\x9c\xae\x93\x95\xaa\ \x86\x8c\xa7\x7c\x87\xa2\x74\x80\x9d\x6f\x7c\x9a\x6d\x7a\x97\x70\ \x7b\x98\x77\x7f\x9c\x7f\x84\x9f\x88\x89\xa2\x91\x8f\xa6\x98\x95\ \xaa\x9e\x99\xae\xa2\x9d\xb1\xa5\x9f\xb2\xa7\xa1\xb3\xa9\xa1\xb4\ \xab\xa3\xb5\xab\xa3\xb4\xac\xa4\xb5\xae\xa5\xb6\xaf\xa5\xb6\xaf\ \xa5\xb6\xaf\xa6\xb6\xaf\xa7\xb6\xae\xa6\xb6\xad\xa5\xb6\xad\xa5\ \xb6\xad\xa5\xb6\xad\xa5\xb6\xae\xa6\xb7\xae\xa6\xb7\xae\xa6\xb7\ \xaf\xa8\xb8\xb0\xa9\xb8\xb1\xaa\xb8\xb0\xa9\xb8\xb1\xaa\xb7\xb2\ \xaa\xb7\xb6\xae\xb9\xbd\xb2\xbc\xc5\xb8\xbe\xcc\xbe\xc1\x00\x00\ \x00\xe6\xd8\xdc\xe7\xda\xdc\xe8\xdb\xdd\xe9\xdc\xde\xea\xdd\xdf\ \xea\xdd\xdf\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xed\ \xdf\xe1\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\xe3\xee\xe1\xe3\xef\xe3\ \xe3\xef\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\ \xee\xe1\xe2\xee\xe1\xe2\xee\xe0\xe2\xef\xe2\xe2\xee\xe2\xe1\xee\ \xe2\xe0\xf0\xe3\xe1\xf0\xe3\xe1\xef\xe2\xe0\xee\xe1\xdf\xee\xe0\ \xde\xee\xdf\xdc\xec\xdd\xdb\xed\xdd\xdb\xee\xdd\xdb\xee\xdd\xda\ \xed\xdd\xda\xed\xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xec\xdb\xd8\xed\ \xdc\xd8\xed\xdd\xd8\xee\xdd\xd7\xee\xdc\xd7\xef\xdc\xd7\xee\xdc\ \xd7\xee\xdc\xd6\xed\xdb\xd6\xed\xdb\xd6\xee\xdb\xd6\xee\xdc\xd7\ \xed\xdd\xd7\xef\xde\xd8\xef\xdf\xd9\xee\xdf\xd8\xed\xdd\xd8\xee\ \xde\xd8\xed\xdd\xd7\xee\xdc\xd6\xee\xdb\xd6\xed\xdb\xd6\xee\xda\ \xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\ \xec\xd9\xd4\xeb\xd9\xd4\xeb\xd9\xd4\xea\xda\xd6\xeb\xda\xd7\xeb\ \xdb\xd8\xea\xda\xd7\xeb\xdc\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xda\ \xd8\xe9\xdc\xda\xe9\xdc\xda\xea\xdc\xda\xea\xdd\xdb\xec\xdd\xdb\ \xeb\xdd\xdb\xec\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xe0\xdd\xef\ \xe1\xde\xf0\xe4\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe9\xe2\xf4\xea\ \xe3\xf5\xeb\xe4\xf5\xec\xe4\xf5\xea\xe2\xf3\xe6\xdf\xf1\xe3\xdc\ \xef\xde\xd9\xec\xda\xd5\xe8\xd5\xd1\xe5\xd2\xce\xe1\xcd\xcb\xdd\ \xc9\xc8\xd9\xc7\xc6\xd6\xc4\xc4\xd5\xc3\xc3\xd3\xc2\xc3\xd3\xc2\ \xc3\xd3\xc2\xc3\xd3\xc2\xc3\xcd\xbe\xc0\xc9\xba\xbe\xc3\xb5\xba\ \xbb\xaf\xb7\xb2\xa8\xb4\xa8\xa1\xb0\x9a\x99\xac\x8d\x90\xa7\x84\ \x8a\xa4\x7e\x86\xa1\x7a\x82\x9f\x7b\x82\x9f\x7d\x82\x9e\x81\x84\ \x9f\x86\x87\xa1\x8d\x8c\xa5\x93\x90\xa7\x9a\x95\xab\xa0\x9b\xaf\ \xa3\x9d\xb0\xa5\x9f\xb1\xa7\x9f\xb3\xa9\xa0\xb4\xaa\xa1\xb5\xaa\ \xa2\xb4\xaa\xa2\xb3\xac\xa4\xb5\xae\xa4\xb5\xae\xa4\xb6\xae\xa5\ \xb6\xad\xa5\xb5\xad\xa5\xb6\xac\xa4\xb5\xab\xa3\xb5\xaa\xa3\xb5\ \xab\xa3\xb5\xab\xa3\xb6\xab\xa4\xb6\xad\xa5\xb6\xae\xa7\xb7\xaf\ \xa8\xb7\xb0\xa9\xb8\xb1\xaa\xb8\xb1\xaa\xb8\xb1\xaa\xb8\xb4\xac\ \xb9\xb8\xaf\xba\xbd\xb3\xbc\xc4\xb8\xbd\x00\x00\x00\xe6\xd8\xdc\ \xe7\xda\xdc\xe8\xdb\xdd\xe9\xdc\xde\xea\xdd\xde\xea\xdd\xde\xeb\ \xde\xe0\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xed\xe0\ \xe2\xed\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\xe3\xee\xe1\xe2\ \xed\xe0\xe1\xed\xe0\xe1\xec\xdf\xe1\xec\xe0\xe0\xec\xde\xdf\xed\ \xdf\xe0\xed\xdf\xe0\xed\xdf\xe0\xee\xe0\xdf\xee\xe1\xdf\xee\xe1\ \xdf\xef\xe2\xe0\xef\xe2\xde\xee\xe0\xdd\xee\xde\xdb\xee\xde\xdb\ \xed\xdd\xda\xee\xdc\xda\xee\xdc\xd9\xee\xdc\xda\xed\xdd\xda\xee\ \xdd\xda\xec\xdb\xd8\xed\xdc\xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\ \xd8\xed\xdd\xd7\xee\xdb\xd6\xee\xdb\xd6\xed\xda\xd5\xed\xda\xd5\ \xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xed\xda\xd5\xee\xdb\xd6\xee\ \xdc\xd6\xee\xdc\xd7\xef\xdd\xd8\xed\xdc\xd7\xee\xdb\xd6\xee\xdb\ \xd6\xed\xda\xd5\xed\xda\xd5\xec\xda\xd5\xed\xda\xd5\xec\xd9\xd4\ \xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd8\xd3\xea\ \xd8\xd4\xe9\xd8\xd4\xe9\xd9\xd5\xeb\xda\xd7\xeb\xda\xd7\xea\xdb\ \xd8\xeb\xdb\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\ \xeb\xdc\xda\xeb\xdd\xdb\xec\xde\xdc\xed\xde\xdc\xee\xdf\xdc\xee\ \xdf\xdc\xee\xdf\xdc\xee\xe0\xdd\xee\xe2\xde\xef\xe3\xe0\xf1\xe5\ \xe1\xf2\xe6\xe0\xf3\xe8\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf6\xed\xe4\ \xf6\xee\xe5\xf6\xee\xe5\xf5\xec\xe3\xf4\xe9\xe0\xf2\xe5\xde\xf1\ \xe1\xda\xee\xdc\xd7\xeb\xd8\xd3\xe8\xd4\xd0\xe5\xd1\xce\xe2\xce\ \xcb\xe0\xcd\xca\xdf\xcb\xc9\xdf\xcc\xc8\xde\xcb\xc8\xdd\xcb\xc8\ \xd9\xc6\xc6\xd4\xc3\xc3\xce\xbe\xc0\xc8\xba\xbd\xc1\xb3\xba\xb8\ \xac\xb6\xad\xa5\xb2\xa2\x9d\xae\x95\x95\xaa\x8d\x8f\xa7\x88\x8b\ \xa4\x85\x89\xa3\x87\x89\xa3\x89\x89\xa3\x8b\x8b\xa4\x8e\x8d\xa5\ \x92\x90\xa7\x97\x93\xa9\x9c\x97\xac\xa2\x9c\xaf\xa4\x9e\xb1\xa5\ \x9f\xb2\xa7\x9f\xb3\xa8\xa0\xb4\xa8\x9f\xb3\xa9\xa0\xb4\xaa\xa2\ \xb3\xaa\xa2\xb4\xab\xa3\xb4\xac\xa4\xb5\xac\xa4\xb5\xad\xa4\xb5\ \xab\xa3\xb4\xab\xa3\xb4\xa8\xa2\xb3\xa8\xa2\xb5\xa8\xa2\xb5\xa8\ \xa2\xb5\xa9\xa3\xb5\xab\xa5\xb6\xad\xa7\xb7\xaf\xa7\xb7\xaf\xa8\ \xb8\xb1\xaa\xb9\xb1\xaa\xb9\xb1\xaa\xb9\xb2\xab\xb8\xb4\xac\xb9\ \xb8\xaf\xba\xbd\xb3\xbb\x00\x00\x00\xe5\xd7\xdb\xe6\xd8\xdb\xe7\ \xda\xdc\xe8\xdb\xdd\xe9\xdb\xdd\xea\xdc\xde\xe9\xdc\xde\xea\xdd\ \xdf\xeb\xde\xe0\xea\xdd\xdf\xec\xdf\xe1\xeb\xde\xe0\xec\xdf\xe1\ \xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe2\xec\xdf\xe0\xec\xdf\xe0\xeb\ \xde\xe1\xeb\xde\xe0\xea\xde\xdf\xea\xdd\xde\xea\xdc\xdd\xeb\xdd\ \xde\xeb\xde\xde\xec\xdf\xde\xed\xdf\xdd\xef\xe0\xde\xee\xe1\xde\ \xee\xe0\xdd\xed\xde\xdb\xee\xde\xdb\xed\xdd\xdb\xee\xdd\xd9\xee\ \xdd\xda\xee\xdd\xda\xed\xdc\xd9\xee\xdd\xda\xed\xdc\xd9\xee\xdd\ \xda\xec\xdb\xd8\xec\xdc\xd9\xee\xdb\xd9\xed\xdc\xd8\xee\xdb\xd6\ \xee\xdb\xd6\xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\xea\xd7\xd2\xec\ \xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xed\xda\xd5\xee\xdb\xd6\xee\xdb\ \xd6\xed\xdb\xd6\xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\ \xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xeb\ \xd8\xd3\xe9\xd6\xd2\xe9\xd6\xd3\xe9\xd6\xd3\xe8\xd8\xd5\xe8\xd7\ \xd4\xe9\xd8\xd5\xeb\xda\xd7\xea\xda\xd7\xeb\xdb\xd8\xea\xda\xd7\ \xea\xdc\xd9\xeb\xdc\xd9\xea\xdb\xd9\xec\xdd\xdb\xec\xde\xdc\xed\ \xde\xdc\xee\xdf\xdd\xef\xe0\xdd\xef\xe1\xde\xf0\xe1\xde\xf0\xe2\ \xdf\xef\xe3\xdf\xf1\xe4\xe0\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\xe1\ \xf4\xea\xe3\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xef\xe6\xf7\ \xef\xe6\xf7\xef\xe6\xf6\xed\xe4\xf5\xeb\xe3\xf4\xe8\xe0\xf2\xe3\ \xdd\xf0\xe0\xda\xee\xdb\xd6\xec\xd8\xd3\xe9\xd6\xd1\xe8\xd4\xcf\ \xe8\xd4\xcf\xe7\xd3\xce\xe5\xd2\xcd\xe2\xcf\xcc\xdf\xcc\xc9\xda\ \xc7\xc5\xd4\xc3\xc3\xce\xbd\xc0\xc6\xb8\xbc\xbe\xb0\xb8\xb3\xa8\ \xb5\xaa\xa2\xb1\x9e\x9b\xac\x98\x97\xab\x95\x94\xaa\x93\x91\xa8\ \x91\x90\xa8\x93\x90\xa8\x93\x90\xa8\x95\x92\xa9\x99\x94\xaa\x9b\ \x95\xab\x9f\x99\xae\xa3\x9d\xb0\xa3\x9e\xb1\xa4\x9e\xb1\xa4\x9e\ \xb1\xa5\x9f\xb2\xa7\x9e\xb2\xa8\x9f\xb2\xa8\x9f\xb3\xa9\xa1\xb5\ \xab\xa3\xb5\xab\xa3\xb4\xab\xa3\xb5\xaa\xa2\xb4\xaa\xa2\xb4\xa6\ \xa0\xb3\xa5\x9f\xb2\xa4\x9f\xb2\xa5\x9f\xb2\xa6\xa0\xb3\xa7\xa1\ \xb4\xa9\xa3\xb4\xac\xa6\xb7\xad\xa7\xb8\xaf\xa8\xb7\xaf\xa8\xb7\ \xb0\xaa\xb9\xaf\xa9\xb8\xb0\xa9\xb9\xb1\xaa\xb8\xb4\xac\xb9\xbb\ \xb1\xbb\x00\x00\x00\xe2\xd7\xda\xe5\xd8\xdb\xe6\xd9\xdc\xe8\xda\ \xdd\xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xde\xea\xdc\xdf\xea\xdd\xdf\ \xea\xdd\xdf\xea\xdd\xdf\xea\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xeb\ \xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\ \xde\xe9\xdc\xde\xe9\xdc\xdd\xe9\xdc\xdd\xea\xdc\xdd\xea\xdc\xdd\ \xec\xde\xdc\xec\xde\xdc\xed\xde\xdc\xed\xde\xdc\xed\xde\xdb\xed\ \xdd\xda\xed\xdd\xdb\xed\xdd\xda\xee\xdd\xd9\xed\xdc\xd9\xed\xdc\ \xd9\xee\xdd\xda\xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\xec\xdb\xd8\ \xed\xdc\xd9\xed\xdc\xd9\xee\xdb\xd7\xed\xdb\xd6\xed\xda\xd5\xeb\ \xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\ \xd2\xeb\xd8\xd3\xeb\xd8\xd3\xec\xda\xd4\xed\xda\xd5\xed\xda\xd5\ \xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd3\xea\ \xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xeb\xd8\xd2\xe9\xd7\ \xd2\xe8\xd6\xd3\xe7\xd7\xd3\xe7\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\ \xe9\xd8\xd5\xeb\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xea\xdb\xd8\xeb\ \xdc\xd9\xeb\xdc\xda\xed\xde\xdb\xed\xde\xdc\xee\xe0\xdd\xee\xe0\ \xdd\xee\xe3\xdf\xef\xe3\xdf\xf0\xe4\xdf\xf0\xe4\xdf\xf1\xe5\xe0\ \xf2\xe6\xe1\xf2\xe6\xe0\xf3\xe8\xe1\xf4\xea\xe3\xf5\xeb\xe4\xf6\ \xec\xe5\xf7\xee\xe5\xf7\xef\xe6\xf7\xef\xe6\xf7\xf0\xe7\xf7\xf1\ \xe8\xf7\xf0\xe7\xf7\xef\xe6\xf7\xec\xe4\xf5\xeb\xe3\xf4\xe8\xdf\ \xf3\xe5\xdd\xf1\xe1\xda\xf0\xde\xd7\xee\xdc\xd6\xed\xdb\xd4\xec\ \xd9\xd3\xea\xd7\xd2\xe7\xd4\xcf\xe3\xd0\xcc\xde\xcb\xc9\xd8\xc5\ \xc5\xd1\xc1\xc1\xca\xbb\xbd\xc2\xb4\xba\xb9\xad\xb7\xb0\xa6\xb3\ \xa8\xa0\xb0\xa3\x9d\xae\xa0\x9a\xae\x9c\x97\xac\x9a\x96\xab\x9a\ \x95\xaa\x9a\x95\xaa\x9c\x95\xab\x9c\x96\xac\x9f\x98\xad\xa1\x9a\ \xaf\xa3\x9d\xb0\xa4\x9e\xb1\xa3\x9d\xb0\xa4\x9d\xb1\xa5\x9e\xb1\ \xa6\x9d\xb1\xa6\x9e\xb1\xa7\x9e\xb2\xa8\xa0\xb3\xa9\xa1\xb4\xa9\ \xa1\xb4\xa8\xa0\xb4\xa8\xa1\xb4\xa7\xa1\xb4\xa5\xa0\xb2\xa2\x9d\ \xb1\xa0\x9c\xb1\xa1\x9d\xb1\xa2\x9e\xb2\xa4\x9f\xb3\xa6\xa2\xb3\ \xa9\xa4\xb4\xac\xa6\xb6\xac\xa7\xb6\xaf\xa8\xb7\xae\xa8\xb7\xad\ \xa8\xb7\xaf\xa9\xb8\xb0\xa9\xb7\xb4\xac\xb8\xc0\xb4\xbb\x00\x00\ \x00\xe1\xd6\xd9\xe4\xd8\xdb\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\ \xe7\xdb\xde\xe7\xdb\xde\xe7\xdc\xdf\xe7\xdc\xde\xe8\xdc\xde\xe8\ \xdd\xdf\xe8\xdd\xe0\xe9\xde\xe0\xe9\xde\xe0\xe9\xdd\xdf\xe8\xdd\ \xe0\xe8\xdc\xde\xe8\xdd\xdf\xe8\xdc\xde\xe8\xdb\xdd\xe8\xdb\xdd\ \xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xdd\xea\xdc\xdd\xeb\xdd\xdb\xec\ \xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xec\xdd\xda\xed\xdc\ \xdb\xed\xdd\xdb\xed\xdc\xda\xed\xdc\xda\xed\xdc\xd9\xee\xdd\xda\ \xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\xec\xdc\xd9\xed\xdc\xd9\xee\ \xdc\xd9\xee\xda\xd6\xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xea\xd7\ \xd2\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xeb\xd8\xd3\xeb\xd8\xd3\ \xeb\xd8\xd3\xeb\xd8\xd3\xec\xd9\xd4\xec\xd9\xd5\xeb\xd8\xd3\xeb\ \xd8\xd4\xeb\xd8\xd4\xea\xd7\xd3\xe9\xd6\xd2\xe9\xd6\xd1\xe9\xd6\ \xd3\xea\xd7\xd2\xe9\xd7\xd2\xe9\xd8\xd4\xe8\xd7\xd3\xe7\xd6\xd3\ \xe7\xd6\xd4\xe6\xd7\xd5\xe7\xd8\xd5\xe9\xd8\xd5\xe9\xd8\xd5\xea\ \xd9\xd6\xeb\xda\xd7\xec\xda\xd7\xeb\xdc\xd9\xeb\xdc\xd9\xec\xdd\ \xda\xed\xde\xdb\xee\xe0\xde\xee\xe2\xde\xef\xe3\xdf\xf0\xe5\xe0\ \xf1\xe5\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe7\xe1\xf2\xe7\xe1\xf3\ \xe7\xe1\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf7\xee\xe6\xf6\xef\ \xe6\xf6\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf2\xe9\ \xf7\xf1\xe8\xf7\xf1\xe8\xf7\xef\xe6\xf7\xee\xe4\xf6\xeb\xe3\xf5\ \xe9\xe1\xf4\xe7\xde\xf3\xe5\xdd\xf2\xe4\xdc\xf0\xe0\xd9\xed\xdb\ \xd5\xe9\xd6\xd1\xe6\xd3\xcd\xe1\xce\xca\xdb\xc8\xc6\xd5\xc3\xc3\ \xcd\xbd\xbf\xc4\xb6\xbc\xbc\xaf\xb8\xb3\xa9\xb5\xae\xa6\xb3\xab\ \xa4\xb2\xa8\xa0\xb1\xa4\x9d\xae\xa2\x9a\xae\xa0\x99\xad\xa0\x98\ \xad\xa0\x98\xad\x9f\x98\xad\xa0\x99\xae\xa1\x9a\xaf\xa3\x9d\xb0\ \xa4\x9d\xb0\xa4\x9e\xb1\xa3\x9d\xb0\xa3\x9d\xb0\xa3\x9d\xb0\xa4\ \x9d\xb0\xa4\x9e\xb1\xa5\x9f\xb2\xa6\x9f\xb3\xa6\xa0\xb3\xa6\xa0\ \xb3\xa4\x9f\xb3\xa3\x9e\xb2\xa0\x9d\xb1\x9d\x9b\xb0\x9d\x9a\xb0\ \x9c\x9a\xaf\x9d\x9c\xb0\xa0\x9d\xb1\xa4\xa0\xb3\xa7\xa3\xb4\xaa\ \xa5\xb5\xab\xa6\xb6\xac\xa7\xb6\xad\xa8\xb7\xad\xa8\xb7\xad\xa8\ \xb7\xb1\xaa\xb7\xba\xb0\xb9\xc6\xb8\xbc\x00\x00\x00\xe1\xd6\xd9\ \xe2\xd7\xda\xe4\xd9\xdc\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\xe6\ \xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdd\ \xe0\xe6\xdc\xdf\xe9\xde\xe1\xe7\xdc\xdf\xe7\xdc\xdf\xe8\xdd\xdf\ \xe6\xdb\xde\xe5\xda\xdd\xe6\xdb\xdd\xe6\xda\xdc\xe7\xdb\xdd\xe7\ \xdb\xdc\xe8\xdb\xdc\xe8\xda\xdc\xea\xdb\xdb\xec\xdd\xda\xec\xdd\ \xda\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\ \xec\xdb\xda\xed\xdc\xda\xed\xdd\xd9\xed\xdc\xd9\xed\xdc\xd9\xed\ \xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xed\xda\xd8\xee\xdb\xd7\xee\xdb\ \xd5\xed\xda\xd5\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\ \xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\ \xd7\xd2\xeb\xd8\xd3\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd4\xe9\xd7\ \xd4\xe9\xd5\xd2\xe9\xd6\xd3\xe8\xd6\xd2\xe9\xd6\xd3\xe9\xd7\xd4\ \xea\xd7\xd4\xe8\xd6\xd4\xe9\xd8\xd5\xe9\xd8\xd4\xe6\xd7\xd4\xe7\ \xd8\xd6\xe7\xd8\xd6\xe8\xd9\xd6\xeb\xda\xd7\xea\xdb\xd8\xeb\xda\ \xd7\xeb\xda\xd7\xeb\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xef\xe1\xdd\ \xee\xe2\xde\xef\xe3\xdf\xf1\xe5\xe1\xf1\xe6\xe2\xf2\xe6\xe1\xf3\ \xe7\xe0\xf4\xe7\xe2\xf3\xe8\xe1\xf3\xe9\xe2\xf3\xe9\xe2\xf4\xea\ \xe3\xf5\xeb\xe4\xf7\xed\xe6\xf7\xee\xe7\xf6\xef\xe6\xf7\xef\xe6\ \xf8\xf1\xe8\xf8\xf0\xe7\xf7\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\ \xf2\xe9\xf6\xf2\xe9\xf6\xf1\xe8\xf7\xf0\xe7\xf6\xee\xe5\xf6\xed\ \xe5\xf6\xec\xe3\xf5\xe9\xe1\xf2\xe5\xdd\xf0\xdf\xd8\xec\xd9\xd4\ \xe8\xd5\xd0\xe3\xd0\xcc\xdc\xca\xc8\xd6\xc4\xc4\xcd\xbe\xc0\xc5\ \xb8\xbc\xbc\xb0\xba\xb4\xab\xb7\xb2\xa9\xb6\xb0\xa7\xb5\xae\xa4\ \xb3\xa9\xa0\xb1\xa7\x9f\xb0\xa5\x9c\xaf\xa4\x9b\xaf\xa3\x9a\xae\ \xa2\x99\xaf\xa1\x9a\xae\xa2\x9b\xaf\xa2\x9c\xaf\xa3\x9d\xb0\xa2\ \x9c\xaf\xa3\x9d\xb0\xa2\x9c\xaf\xa2\x9c\xaf\xa3\x9d\xb0\xa2\x9c\ \xb0\xa4\x9d\xb2\xa4\x9e\xb1\xa4\x9e\xb2\xa2\x9e\xb1\xa0\x9e\xb2\ \x9d\x9c\xb0\x9b\x99\xaf\x98\x98\xae\x96\x98\xad\x98\x98\xad\x99\ \x9a\xaf\x9c\x9c\xb0\xa0\x9e\xb1\xa3\xa1\xb4\xa6\xa2\xb3\xa9\xa4\ \xb5\xac\xa7\xb6\xad\xa8\xb7\xac\xa7\xb7\xae\xa8\xb6\xb4\xac\xb8\ \xc2\xb5\xbb\xce\xbd\xc0\x00\x00\x00\xdf\xd5\xda\xe1\xd7\xdb\xe2\ \xd8\xdc\xe3\xd9\xdc\xe4\xda\xdd\xe4\xda\xdd\xe6\xdb\xde\xe5\xda\ \xdd\xe4\xda\xdd\xe5\xda\xdd\xe4\xda\xde\xe4\xda\xdf\xe5\xdc\xdf\ \xe5\xdc\xe0\xe6\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe5\xda\xdd\xe5\ \xda\xdd\xe4\xd9\xdc\xe4\xd9\xdc\xe5\xd9\xdb\xe7\xda\xdc\xe7\xdb\ \xdb\xe8\xda\xdb\xe8\xda\xdb\xe8\xda\xdb\xe9\xda\xdb\xeb\xdc\xda\ \xeb\xdc\xda\xea\xdb\xd9\xea\xdb\xd9\xea\xdc\xda\xeb\xdb\xd9\xed\ \xdc\xd9\xed\xdd\xda\xee\xdd\xda\xec\xdb\xd8\xec\xdb\xd8\xeb\xda\ \xd7\xec\xda\xd7\xec\xda\xd7\xed\xda\xd7\xed\xda\xd5\xec\xd9\xd4\ \xec\xd9\xd4\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xe9\xd6\xd1\xe9\ \xd6\xd1\xe9\xd5\xd0\xe8\xd5\xd0\xe8\xd5\xd0\xe8\xd5\xd0\xe8\xd5\ \xd0\xe9\xd6\xd1\xe9\xd6\xd3\xe8\xd5\xd2\xe7\xd5\xd2\xe6\xd4\xd1\ \xe7\xd4\xd1\xe6\xd5\xd2\xe6\xd5\xd2\xe8\xd7\xd4\xe8\xd7\xd4\xe8\ \xd7\xd4\xe8\xd7\xd4\xe8\xd8\xd4\xe7\xd8\xd5\xe7\xd8\xd6\xe8\xd8\ \xd6\xe9\xd9\xd6\xea\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\ \xec\xdc\xd9\xed\xde\xdb\xef\xe1\xdd\xef\xe3\xdf\xf0\xe4\xe0\xf1\ \xe5\xe1\xf2\xe6\xe2\xf1\xe6\xe2\xf2\xe8\xe1\xf3\xe9\xe2\xf4\xea\ \xe3\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\ \xf5\xed\xe6\xf6\xee\xe7\xf7\xef\xe8\xf7\xf1\xe8\xf8\xf0\xe7\xf7\ \xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf2\ \xea\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf7\xf0\xe7\ \xf6\xec\xe3\xf3\xe8\xe0\xf1\xe1\xda\xec\xda\xd4\xe8\xd5\xd0\xe3\ \xd0\xcc\xdc\xca\xc8\xd6\xc4\xc4\xcc\xbd\xc0\xc3\xb5\xbc\xba\xaf\ \xb9\xb5\xab\xb7\xb4\xaa\xb7\xb2\xa9\xb6\xb0\xa7\xb4\xad\xa3\xb3\ \xab\xa1\xb2\xaa\xa0\xb1\xa9\x9f\xb0\xa6\x9d\xb0\xa5\x9c\xb0\xa4\ \x9b\xaf\xa3\x9c\xaf\xa3\x9d\xb0\xa3\x9d\xb0\xa2\x9c\xaf\xa2\x9c\ \xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa1\x9b\xaf\xa1\x9b\xb0\ \xa1\x9b\xb0\xa1\x9c\xb1\x9f\x9c\xb1\x9c\x9b\xaf\x9a\x99\xaf\x95\ \x96\xad\x93\x94\xac\x92\x94\xac\x91\x94\xac\x94\x96\xad\x97\x99\ \xae\x9c\x9b\xaf\x9f\x9e\xb1\xa2\xa0\xb2\xa6\xa4\xb4\xa9\xa4\xb5\ \xab\xa6\xb5\xad\xa7\xb6\xb1\xaa\xb7\xbe\xb2\xba\xca\xba\xbd\xd5\ \xc3\xc2\x00\x00\x00\xde\xd5\xdb\xe0\xd6\xdd\xe1\xd7\xdd\xe1\xd7\ \xdc\xe1\xd8\xdc\xe2\xd9\xdc\xe2\xd8\xdd\xe3\xd9\xde\xe3\xd9\xde\ \xe2\xd9\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe4\xdb\xe0\xe5\xda\xe1\xe5\ \xdc\xdf\xe5\xdb\xdf\xe4\xdc\xde\xe4\xda\xdd\xe3\xda\xdd\xe4\xd9\ \xdc\xe4\xd9\xdc\xe5\xda\xdc\xe6\xd9\xdc\xe6\xda\xdb\xe6\xd9\xda\ \xe7\xd9\xda\xe7\xd9\xda\xe7\xda\xda\xe8\xda\xdb\xe9\xda\xda\xe9\ \xda\xda\xea\xdb\xd9\xea\xdb\xd9\xeb\xdc\xd9\xee\xdc\xd9\xed\xdc\ \xd9\xed\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xeb\xd9\xd6\xec\xda\xd7\ \xed\xda\xd5\xec\xd9\xd4\xed\xda\xd5\xec\xd9\xd4\xeb\xd8\xd3\xeb\ \xd7\xd2\xea\xd6\xd1\xe9\xd5\xd0\xe8\xd5\xcf\xe8\xd4\xcf\xe7\xd4\ \xce\xe7\xd3\xce\xe6\xd3\xce\xe6\xd3\xce\xe6\xd3\xcf\xe7\xd4\xd0\ \xe7\xd4\xd1\xe7\xd4\xd1\xe4\xd3\xd0\xe5\xd2\xcf\xe4\xd3\xd0\xe4\ \xd3\xd0\xe5\xd4\xd1\xe6\xd5\xd2\xe7\xd6\xd3\xe8\xd7\xd4\xe8\xd7\ \xd4\xe7\xd7\xd5\xe6\xd8\xd6\xe7\xd8\xd6\xe8\xd8\xd6\xea\xd9\xd6\ \xeb\xda\xd7\xec\xdb\xd8\xed\xdc\xd9\xec\xdc\xd9\xed\xdd\xda\xee\ \xdf\xdc\xee\xe2\xde\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf2\xe5\ \xe1\xf2\xe7\xe3\xf2\xe8\xe3\xf4\xe9\xe2\xf4\xea\xe3\xf4\xea\xe3\ \xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf5\xec\xe5\xf6\xed\xe6\xf6\ \xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe7\xf7\xf1\xe7\xf6\xf0\ \xe7\xf7\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\ \xf7\xf3\xe9\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf0\xe7\xf6\xec\xe3\xf3\ \xe7\xdf\xf0\xe0\xd9\xeb\xd8\xd3\xe6\xd3\xce\xe0\xcd\xca\xd8\xc7\ \xc5\xcf\xbf\xc1\xc5\xb7\xbd\xbd\xb2\xba\xb8\xae\xb9\xb6\xac\xb8\ \xb5\xab\xb7\xb4\xaa\xb6\xb1\xa7\xb4\xb0\xa5\xb3\xad\xa2\xb2\xac\ \xa1\xb1\xab\xa0\xb2\xa9\x9f\xb0\xa6\x9d\xb1\xa4\x9b\xaf\xa4\x9b\ \xb0\xa3\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa1\x9b\xae\ \xa2\x9c\xaf\xa1\x9b\xae\x9f\x9a\xaf\x9f\x9a\xaf\x9e\x9a\xaf\x9d\ \x99\xaf\x9b\x99\xae\x98\x97\xae\x94\x95\xad\x90\x93\xab\x8d\x92\ \xab\x8c\x91\xaa\x8c\x91\xaa\x8e\x92\xab\x92\x95\xac\x94\x97\xac\ \x99\x99\xae\x9f\x9d\xb0\xa4\xa1\xb2\xa6\xa3\xb3\xaa\xa4\xb4\xae\ \xa7\xb5\xb9\xae\xb8\xc6\xb7\xbc\xd2\xc0\xc0\xdb\xc8\xc5\x00\x00\ \x00\xdd\xd5\xdb\xdf\xd6\xdc\xe0\xd6\xdc\xe1\xd6\xdd\xe1\xd7\xdc\ \xe1\xd7\xdd\xe2\xd8\xdd\xe3\xd9\xdf\xe2\xd8\xde\xe2\xd8\xde\xe1\ \xd9\xdf\xe1\xd9\xde\xe1\xda\xdf\xe3\xda\xe0\xe5\xdb\xe1\xe5\xdb\ \xe0\xe5\xdb\xe0\xe3\xda\xde\xe2\xd9\xdd\xe3\xda\xdc\xe4\xda\xdd\ \xe4\xd9\xdc\xe4\xd9\xdb\xe5\xd9\xdb\xe6\xd9\xdb\xe6\xd9\xdb\xe6\ \xd9\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe8\xd9\xda\xe9\xda\xda\xea\xda\ \xd9\xea\xdb\xd9\xeb\xdb\xd9\xec\xdc\xda\xed\xdc\xd9\xec\xdb\xd8\ \xeb\xda\xd7\xeb\xd9\xd6\xec\xd9\xd6\xeb\xd9\xd5\xeb\xd8\xd3\xeb\ \xd8\xd3\xec\xd8\xd3\xeb\xd7\xd2\xea\xd7\xd1\xea\xd6\xd0\xe8\xd4\ \xcf\xe8\xd4\xcf\xe8\xd4\xcf\xe6\xd2\xcd\xe6\xd2\xcc\xe6\xd2\xcd\ \xe5\xd1\xcc\xe4\xd1\xcc\xe4\xd1\xcd\xe5\xd2\xcf\xe4\xd2\xcf\xe3\ \xd2\xcf\xe2\xd1\xcf\xe2\xd0\xce\xe3\xd1\xcf\xe3\xd2\xcf\xe3\xd2\ \xcf\xe4\xd3\xd0\xe5\xd4\xd1\xe7\xd6\xd3\xe7\xd6\xd3\xe6\xd7\xd4\ \xe6\xd7\xd5\xe7\xd8\xd6\xe9\xd8\xd6\xe9\xd9\xd6\xeb\xda\xd7\xec\ \xdb\xd8\xec\xdb\xd8\xed\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xee\xe2\ \xde\xf0\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf2\xe6\xe2\xf2\xe7\xe3\ \xf3\xe8\xe4\xf4\xe8\xe4\xf4\xea\xe3\xf5\xeb\xe3\xf4\xea\xe3\xf6\ \xec\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf5\xed\xe6\xf6\xee\xe7\xf7\xef\ \xe8\xf6\xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\xf7\xf0\xe9\xf8\xf1\xe7\ \xf7\xf0\xe8\xf7\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf6\xf2\xe9\xf6\ \xf2\xe9\xf6\xf1\xe8\xf7\xef\xe6\xf5\xea\xe2\xf2\xe5\xdd\xee\xdc\ \xd6\xe9\xd6\xd0\xe2\xcf\xcc\xdb\xc9\xc7\xd1\xc1\xc2\xc7\xb9\xbe\ \xbe\xb3\xba\xbb\xb0\xba\xb8\xae\xb9\xb6\xac\xb7\xb5\xab\xb7\xb3\ \xaa\xb6\xb3\xa8\xb5\xb1\xa7\xb4\xaf\xa5\xb3\xad\xa2\xb2\xac\xa1\ \xb2\xaa\x9f\xb0\xa8\x9d\xb0\xa4\x9b\xaf\xa3\x9b\xaf\xa3\x9c\xaf\ \xa3\x9d\xb0\xa2\x9c\xaf\xa1\x9b\xae\xa0\x9b\xae\xa1\x9b\xad\x9f\ \x9a\xae\x9e\x99\xae\x9c\x99\xae\x9b\x98\xae\x9a\x97\xad\x98\x96\ \xad\x93\x94\xab\x8f\x92\xaa\x8b\x90\xa9\x88\x8f\xa8\x87\x8d\xa8\ \x85\x8d\xa7\x87\x8e\xa7\x8a\x8f\xa8\x8e\x92\xa9\x94\x95\xab\x9b\ \x9a\xaf\xa1\x9e\xb1\xa6\xa2\xb2\xaa\xa4\xb4\xb6\xab\xb7\xc2\xb4\ \xba\xcf\xbe\xbe\xd9\xc6\xc3\xe1\xcd\xc8\x00\x00\x00\xdc\xd5\xdb\ \xdd\xd6\xdb\xde\xd7\xdb\xde\xd6\xdb\xdf\xd6\xdc\xdf\xd8\xdc\xe0\ \xd8\xdd\xe0\xd9\xde\xe0\xd8\xdd\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\ \xde\xe0\xd9\xde\xe2\xdb\xe0\xe2\xdc\xe1\xe2\xdc\xe1\xe3\xdc\xe1\ \xe2\xda\xe0\xe2\xd9\xdf\xe1\xd8\xdd\xe2\xd9\xdc\xe3\xd8\xdb\xe4\ \xd9\xdb\xe3\xd8\xda\xe4\xd7\xd9\xe4\xd8\xd9\xe4\xd7\xd9\xe5\xd7\ \xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe8\xda\xda\xe9\xda\xd9\xe9\xda\xd8\ \xeb\xdb\xd9\xec\xdb\xd9\xec\xdb\xd8\xed\xdc\xd9\xec\xda\xd7\xec\ \xd9\xd6\xeb\xd7\xd3\xea\xd7\xd2\xea\xd6\xd1\xe9\xd5\xd1\xe9\xd5\ \xcf\xe9\xd5\xcf\xe8\xd5\xcf\xe8\xd4\xce\xe7\xd3\xce\xe6\xd2\xcd\ \xe5\xd1\xcc\xe5\xd1\xcc\xe4\xd0\xcb\xe3\xcf\xca\xe3\xcf\xca\xe2\ \xcf\xcb\xe1\xce\xcb\xe2\xcf\xcc\xe1\xcf\xcc\xe0\xcf\xcd\xe0\xce\ \xcd\xe0\xcf\xce\xe0\xcf\xce\xe0\xcf\xce\xe1\xcf\xce\xe3\xd2\xcf\ \xe5\xd4\xd1\xe5\xd4\xd1\xe5\xd5\xd2\xe5\xd6\xd4\xe6\xd7\xd5\xe8\ \xd8\xd6\xe8\xd9\xd6\xe9\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\ \xd9\xed\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe1\xdd\xee\xe2\xdf\ \xef\xe3\xdf\xf0\xe5\xe1\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ \xe9\xe4\xf4\xe9\xe5\xf4\xe9\xe4\xf4\xea\xe5\xf4\xea\xe5\xf5\xeb\ \xe5\xf6\xec\xe5\xf6\xed\xe6\xf6\xed\xe6\xf6\xed\xe6\xf7\xed\xe6\ \xf6\xee\xe7\xf6\xee\xe7\xf6\xef\xe7\xf6\xef\xe7\xf7\xf0\xe7\xf8\ \xf0\xe7\xf7\xf0\xe7\xf7\xf1\xe8\xf6\xf2\xe9\xf6\xf2\xe9\xf7\xf1\ \xe8\xf6\xed\xe4\xf3\xe8\xe0\xf1\xe1\xda\xec\xd8\xd4\xe5\xd2\xce\ \xdd\xca\xc8\xd4\xc3\xc3\xca\xbb\xbe\xc1\xb4\xbb\xbb\xb0\xba\xba\ \xb0\xb9\xb9\xae\xb8\xb6\xac\xb8\xb6\xac\xb7\xb7\xab\xb7\xb6\xaa\ \xb6\xb3\xa7\xb5\xb1\xa6\xb4\xb0\xa5\xb4\xae\xa3\xb3\xab\xa0\xb1\ \xaa\x9f\xb0\xa6\x9d\xb1\xa4\x9b\xb0\xa2\x9c\xaf\xa3\x9d\xb0\xa2\ \x9c\xaf\xa1\x9c\xaf\xa0\x9a\xad\xa0\x9b\xaf\x9e\x99\xae\x9e\x99\ \xae\x9c\x98\xac\x99\x96\xac\x98\x95\xab\x94\x92\xab\x8e\x90\xa9\ \x8a\x8e\xa7\x86\x8b\xa6\x80\x89\xa5\x7e\x89\xa5\x7d\x88\xa3\x7f\ \x89\xa4\x83\x8a\xa5\x8a\x8f\xa8\x92\x95\xaa\x99\x99\xad\xa0\x9e\ \xb1\xa6\xa1\xb1\xb0\xa7\xb4\xbf\xb1\xb8\xcb\xbb\xbd\xd6\xc3\xc2\ \xde\xcb\xc7\xe6\xd2\xcc\x00\x00\x00\xdb\xd4\xdb\xdc\xd5\xdc\xdd\ \xd6\xdc\xdd\xd7\xdb\xde\xd7\xdc\xde\xd7\xdc\xdf\xd9\xdd\xe0\xd9\ \xde\xdf\xd8\xde\xe0\xd9\xdf\xe0\xd9\xdf\xdf\xd9\xde\xe0\xd9\xdf\ \xe1\xda\xe0\xe2\xdb\xe1\xe2\xdb\xe1\xe2\xdb\xe1\xe1\xda\xdf\xe1\ \xd9\xdf\xe1\xd9\xde\xe1\xd8\xdd\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\ \xda\xe3\xd7\xd9\xe4\xd7\xd9\xe4\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\ \xe6\xd8\xda\xe8\xda\xd9\xe9\xda\xd8\xe9\xdb\xd9\xeb\xdb\xd9\xec\ \xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xec\xda\xd6\xeb\xd9\xd4\xea\xd6\ \xd1\xe9\xd5\xd0\xe9\xd5\xcf\xe9\xd4\xcf\xe8\xd5\xce\xe8\xd5\xce\ \xe8\xd4\xce\xe7\xd4\xce\xe6\xd2\xcd\xe6\xd2\xcd\xe4\xd0\xcb\xe3\ \xcf\xca\xe3\xcf\xca\xe2\xce\xc9\xe1\xce\xc9\xe0\xcd\xca\xe0\xcd\ \xca\xdf\xce\xcb\xdf\xcd\xcc\xdf\xce\xcd\xdf\xcf\xcd\xdd\xce\xcd\ \xde\xce\xcd\xdf\xcf\xcd\xe0\xd0\xcf\xe2\xd1\xcf\xe3\xd2\xcf\xe4\ \xd4\xd1\xe5\xd5\xd2\xe5\xd6\xd3\xe6\xd7\xd4\xe7\xd8\xd5\xe9\xd9\ \xd6\xea\xda\xd7\xec\xdb\xd8\xec\xdc\xd9\xed\xdc\xd9\xee\xde\xdb\ \xed\xdf\xdc\xee\xdf\xdc\xee\xe1\xde\xef\xe2\xde\xef\xe3\xe0\xf0\ \xe5\xe1\xf1\xe6\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\ \xe5\xf3\xe8\xe5\xf4\xe9\xe5\xf4\xea\xe6\xf5\xea\xe6\xf5\xeb\xe6\ \xf6\xec\xe6\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe6\xf7\xed\xe6\xf6\ \xee\xe7\xf6\xee\xe7\xf7\xef\xe7\xf6\xef\xe7\xf7\xf0\xe7\xf8\xf1\ \xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xef\xe6\xf5\xeb\xe2\ \xf3\xe5\xde\xef\xde\xd8\xe9\xd6\xd1\xe2\xcf\xcb\xd8\xc6\xc5\xcd\ \xbe\xc1\xc2\xb5\xbc\xbc\xb1\xba\xbb\xb0\xba\xb9\xae\xb8\xb8\xae\ \xb8\xb7\xad\xb7\xb8\xad\xb7\xb8\xac\xb7\xb6\xaa\xb6\xb5\xa9\xb5\ \xb4\xa6\xb4\xb0\xa6\xb4\xaf\xa3\xb3\xac\xa1\xb2\xaa\xa0\xb0\xa7\ \x9d\xb1\xa5\x9c\xb0\xa3\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\ \xaf\x9f\x9b\xae\x9f\x9b\xae\x9e\x9a\xad\x9d\x98\xad\x9b\x97\xac\ \x98\x96\xab\x96\x93\xac\x93\x91\xaa\x8d\x8e\xa8\x87\x8b\xa5\x80\ \x88\xa3\x7b\x85\xa1\x79\x85\xa1\x79\x85\xa1\x7c\x87\xa2\x82\x8a\ \xa4\x8a\x8f\xa7\x92\x94\xaa\x9a\x99\xad\xa2\x9e\xaf\xae\xa5\xb2\ \xbc\xae\xb5\xc9\xb8\xba\xd3\xc0\xbf\xdc\xc8\xc5\xe3\xcf\xca\xea\ \xd6\xd0\x00\x00\x00\xdb\xd4\xdb\xdc\xd5\xdc\xdd\xd6\xdd\xdd\xd6\ \xdc\xdd\xd6\xdc\xde\xd6\xdc\xdf\xd8\xdd\xe0\xd9\xdf\xdf\xd8\xdf\ \xe0\xd9\xdf\xdf\xd7\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe0\xe0\ \xd9\xe0\xe1\xda\xe0\xe0\xd9\xe0\xe0\xd8\xdf\xe0\xd8\xde\xdf\xd8\ \xdd\xe1\xd9\xde\xe1\xd8\xdc\xe1\xd7\xdb\xe3\xd7\xda\xe3\xd7\xda\ \xe3\xd7\xd9\xe4\xd7\xd9\xe5\xd8\xd8\xe6\xd7\xd8\xe6\xd8\xd9\xe8\ \xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xeb\xda\xd7\xeb\xda\xd7\xec\xdb\ \xd8\xed\xdb\xd6\xec\xd9\xd4\xeb\xd8\xd2\xea\xd6\xd0\xe9\xd6\xcf\ \xe8\xd5\xce\xe8\xd4\xce\xe7\xd5\xcd\xe7\xd4\xcd\xe7\xd3\xce\xe6\ \xd2\xcd\xe5\xd1\xcc\xe4\xd0\xcb\xe4\xd0\xcb\xe2\xcf\xca\xe2\xce\ \xc9\xe1\xcd\xc8\xe0\xcc\xc7\xdf\xcc\xc9\xde\xcb\xc9\xde\xcd\xca\ \xdd\xcc\xcb\xdd\xcd\xcc\xdd\xce\xcc\xdd\xce\xcd\xde\xce\xcd\xdd\ \xce\xcd\xe0\xd0\xcf\xe1\xd1\xcf\xe4\xd2\xd1\xe5\xd4\xd1\xe6\xd5\ \xd2\xe6\xd6\xd3\xe6\xd7\xd4\xe8\xd8\xd6\xea\xd9\xd6\xea\xda\xd7\ \xec\xdb\xd8\xed\xdb\xd8\xed\xdc\xd9\xee\xdd\xda\xed\xde\xdb\xee\ \xdf\xdc\xef\xe0\xdd\xee\xe2\xde\xef\xe2\xe0\xf0\xe4\xe1\xf1\xe5\ \xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe5\ \xf3\xe9\xe4\xf4\xe9\xe5\xf5\xea\xe6\xf5\xea\xe6\xf5\xea\xe6\xf5\ \xea\xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\ \xe7\xf6\xee\xe7\xf7\xef\xe8\xf6\xef\xe7\xf7\xf0\xe7\xf8\xf0\xe8\ \xf8\xf1\xe7\xf8\xf1\xe8\xf7\xee\xe5\xf4\xe9\xe1\xf2\xe3\xdc\xee\ \xdc\xd6\xe7\xd4\xcf\xdf\xcc\xc9\xd5\xc3\xc3\xc8\xba\xbe\xbe\xb2\ \xbb\xbc\xb1\xbb\xba\xaf\xb9\xb9\xae\xb8\xb9\xaf\xb9\xb8\xad\xb7\ \xb8\xad\xb7\xb7\xac\xb6\xb7\xab\xb7\xb6\xaa\xb6\xb5\xa8\xb6\xb3\ \xa6\xb4\xb1\xa4\xb3\xae\xa3\xb3\xab\xa1\xb1\xa9\x9f\xb0\xa5\x9c\ \xb0\xa3\x9b\xaf\xa1\x9b\xae\xa2\x9c\xaf\xa1\x9b\xae\xa0\x9c\xaf\ \x9f\x9b\xae\x9f\x9a\xae\x9d\x98\xad\x9c\x97\xac\x99\x95\xac\x95\ \x92\xab\x92\x91\xaa\x8c\x8d\xa7\x87\x8b\xa5\x81\x87\xa3\x7b\x85\ \xa1\x7a\x85\xa1\x7b\x86\xa1\x7f\x88\xa3\x83\x8b\xa4\x8a\x8e\xa7\ \x93\x94\xa9\x9f\x9b\xad\xad\xa4\xb0\xbc\xae\xb5\xc8\xb7\xba\xd2\ \xbf\xbe\xdb\xc6\xc2\xe2\xce\xc9\xe7\xd4\xcd\xec\xd9\xd2\x00\x00\ \x00\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdd\xd6\xdd\ \xdd\xd6\xdd\xde\xd7\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xe0\ \xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xdf\xd8\xdf\xdf\xd9\xe0\xdf\xd8\ \xe0\xdf\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\xdd\xe0\xd9\xde\ \xe1\xd9\xdd\xe1\xd9\xdc\xe2\xd8\xdb\xe3\xd8\xdb\xe4\xd8\xda\xe6\ \xd9\xda\xe6\xd8\xd8\xe5\xd7\xd9\xe6\xd7\xd8\xe7\xd8\xd6\xe8\xd8\ \xd6\xe9\xd8\xd6\xea\xd8\xd5\xeb\xd9\xd5\xec\xd9\xd5\xec\xd9\xd4\ \xec\xd9\xd4\xec\xd8\xd2\xeb\xd8\xd1\xe8\xd5\xce\xe8\xd5\xce\xe8\ \xd5\xce\xe6\xd3\xcc\xe5\xd2\xcc\xe5\xd1\xcb\xe4\xd0\xcb\xe3\xcf\ \xca\xe3\xd0\xcb\xe2\xcf\xca\xe2\xce\xc9\xe0\xcd\xc8\xe1\xcc\xc8\ \xdf\xcd\xc8\xe0\xcd\xc9\xdf\xcd\xca\xdd\xca\xca\xdd\xcc\xcb\xdc\ \xce\xcc\xdd\xcd\xcd\xdc\xcd\xcd\xdd\xcd\xcd\xde\xcf\xcf\xe0\xd1\ \xcf\xe2\xd2\xd0\xe5\xd3\xd0\xe5\xd5\xd2\xe6\xd6\xd3\xe7\xd7\xd4\ \xe7\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xec\ \xdc\xd9\xee\xdd\xda\xeb\xdc\xd9\xed\xde\xdb\xee\xdf\xdc\xef\xe0\ \xdd\xee\xe2\xdf\xef\xe1\xe0\xee\xe1\xdf\xf0\xe2\xe1\xf1\xe4\xe2\ \xf0\xe5\xe2\xf0\xe5\xe3\xf2\xe7\xe3\xf3\xe7\xe3\xf2\xe7\xe4\xf4\ \xe9\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\ \xe5\xf3\xe8\xe4\xf4\xea\xe5\xf5\xeb\xe4\xf5\xec\xe5\xf7\xed\xe6\ \xf5\xed\xe6\xf6\xee\xe7\xf7\xef\xe8\xf8\xf1\xe7\xf8\xf1\xe8\xf6\ \xef\xe6\xf7\xed\xe5\xf4\xe9\xe1\xf1\xe2\xdb\xed\xd9\xd4\xe6\xd3\ \xce\xde\xcb\xc8\xd2\xc2\xc1\xc5\xb7\xbc\xbc\xb1\xba\xbb\xb0\xba\ \xbb\xb0\xba\xba\xaf\xb9\xba\xaf\xb9\xb8\xad\xb7\xb9\xae\xb8\xb9\ \xad\xb8\xb8\xad\xb7\xb7\xab\xb7\xb6\xaa\xb6\xb6\xa8\xb6\xb2\xa5\ \xb3\xaf\xa3\xb3\xad\xa2\xb2\xa9\x9f\xb0\xa7\x9d\xb1\xa4\x9d\xb0\ \xa2\x9d\xb0\xa2\x9c\xaf\xa0\x9b\xae\xa0\x9c\xaf\xa0\x9c\xb0\x9f\ \x9a\xaf\x9e\x99\xae\x9d\x97\xad\x9b\x96\xac\x98\x95\xab\x94\x91\ \xaa\x90\x90\xa8\x8a\x8c\xa6\x86\x8b\xa5\x81\x88\xa3\x7f\x87\xa2\ \x7e\x86\xa1\x7e\x86\xa1\x82\x88\xa2\x89\x8d\xa4\x97\x95\xa8\xa9\ \xa0\xad\xba\xac\xb2\xc6\xb5\xb8\xd2\xbe\xbd\xda\xc6\xc2\xe0\xcc\ \xc7\xe6\xd3\xcc\xeb\xd8\xd1\xf0\xde\xd6\x00\x00\x00\xda\xd4\xdc\ \xdc\xd5\xdd\xdb\xd5\xdd\xdc\xd4\xdd\xdd\xd5\xdd\xdd\xd6\xde\xdd\ \xd8\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xdb\xe1\xe0\xda\ \xe1\xdf\xd9\xe0\xe0\xd8\xe0\xde\xd9\xe0\xdd\xd7\xe0\xde\xd7\xde\ \xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xe0\xd9\xde\xe1\xd9\xdf\xe2\ \xd9\xdd\xe1\xd8\xdb\xe4\xd9\xdb\xe4\xd9\xdb\xe5\xd9\xdb\xe6\xd8\ \xda\xe5\xd7\xd8\xe6\xd8\xd7\xe7\xd7\xd5\xe8\xd7\xd5\xe8\xd7\xd4\ \xe9\xd7\xd4\xeb\xd8\xd4\xeb\xd8\xd3\xec\xd8\xd4\xed\xd9\xd3\xec\ \xd8\xd1\xeb\xd8\xd1\xe9\xd6\xcf\xe8\xd5\xce\xe7\xd4\xcd\xe6\xd2\ \xcc\xe5\xd1\xcc\xe4\xd0\xcb\xe3\xcf\xca\xe2\xce\xc9\xe1\xce\xc9\ \xe1\xcf\xca\xe0\xcd\xc8\xe1\xce\xc9\xe0\xcd\xc8\xe0\xcd\xca\xe0\ \xcd\xca\xdf\xcd\xc9\xde\xcc\xcb\xde\xcc\xcb\xdd\xcd\xcb\xdc\xcd\ \xcd\xdd\xce\xcd\xde\xcf\xce\xdf\xd0\xce\xe1\xd2\xd0\xe3\xd3\xd1\ \xe5\xd4\xd2\xe6\xd6\xd3\xe8\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\xe9\ \xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\ \xd9\xec\xdd\xda\xed\xde\xdb\xef\xe1\xdd\xef\xe2\xde\xee\xe2\xdf\ \xef\xe1\xe0\xef\xe1\xe0\xee\xe2\xdf\xef\xe2\xe0\xef\xe3\xe1\xf0\ \xe4\xe2\xf1\xe5\xe3\xf2\xe6\xe4\xf2\xe7\xe3\xf2\xe7\xe4\xf2\xe7\ \xe4\xf2\xe7\xe3\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe4\ \xf3\xe8\xe5\xf4\xea\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf7\ \xed\xe6\xf6\xee\xe7\xf7\xf0\xe8\xf7\xf0\xe7\xf7\xef\xe6\xf6\xec\ \xe4\xf4\xe8\xe0\xf1\xe1\xdb\xed\xd9\xd4\xe6\xd3\xce\xdd\xcb\xc8\ \xd3\xc1\xc1\xc5\xb7\xbc\xbc\xb1\xbb\xbc\xb1\xbb\xbb\xb0\xba\xba\ \xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xba\xad\ \xb7\xbb\xae\xb7\xbc\xad\xb7\xba\xac\xb7\xb8\xaa\xb5\xb4\xa7\xb4\ \xaf\xa3\xb3\xab\xa1\xb2\xa8\x9f\xb2\xa5\x9d\xb1\xa2\x9c\xaf\xa2\ \x9c\xaf\xa2\x9c\xaf\xa2\x9d\xb0\xa1\x9d\xb0\xa2\x9c\xb0\xa1\x9b\ \xb0\x9f\x9a\xaf\x9f\x99\xae\x9c\x96\xad\x99\x95\xab\x95\x93\xaa\ \x91\x91\xa8\x8d\x8e\xa7\x89\x8d\xa4\x87\x8b\xa3\x84\x88\xa0\x81\ \x86\x9f\x83\x86\x9f\x8e\x8d\xa2\x9f\x98\xa8\xb3\xa4\xad\xc2\xb1\ \xb4\xce\xbb\xb9\xd7\xc2\xbf\xde\xca\xc5\xe3\xcf\xc9\xe7\xd4\xcd\ \xec\xd9\xd2\xf1\xe0\xd9\x00\x00\x00\xd8\xd3\xdc\xda\xd5\xde\xdb\ \xd5\xde\xda\xd4\xde\xdb\xd5\xde\xdb\xd6\xde\xdd\xd7\xe0\xdf\xd8\ \xe0\xdf\xda\xe0\xe1\xd9\xe0\xdf\xdb\xe2\xe0\xdc\xe1\xde\xda\xe0\ \xde\xd9\xdf\xdd\xd9\xe0\xdc\xd8\xdf\xdc\xd8\xdf\xde\xd7\xdd\xde\ \xd7\xde\xde\xd7\xde\xe0\xd9\xdd\xe1\xd9\xde\xe2\xd9\xdd\xe2\xd9\ \xdc\xe4\xd8\xdb\xe4\xd8\xda\xe6\xd9\xdb\xe5\xd7\xd9\xe5\xd7\xd7\ \xe6\xd7\xd6\xe6\xd7\xd5\xe7\xd6\xd4\xe7\xd6\xd3\xe9\xd7\xd3\xea\ \xd7\xd3\xeb\xd8\xd3\xec\xd9\xd2\xec\xd9\xd2\xeb\xd8\xd1\xea\xd7\ \xd0\xe9\xd6\xcf\xe8\xd5\xce\xe7\xd4\xcd\xe7\xd2\xce\xe5\xd1\xcc\ \xe4\xd0\xcb\xe3\xd0\xcb\xe2\xce\xc9\xe1\xce\xc9\xe1\xce\xc9\xe1\ \xce\xca\xe1\xce\xcb\xe0\xcd\xc9\xdf\xcc\xc9\xe0\xcd\xc9\xe0\xcc\ \xc9\xde\xcc\xca\xdd\xcc\xcb\xdd\xcd\xcc\xdc\xcd\xcb\xde\xce\xcd\ \xdf\xd0\xce\xe0\xd1\xcf\xe1\xd2\xd0\xe4\xd4\xd1\xe6\xd5\xd2\xe7\ \xd7\xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xea\xda\xd7\xeb\xda\ \xd7\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdd\xda\xed\xde\xdb\ \xee\xe0\xdd\xee\xe2\xde\xef\xe3\xdf\xee\xe2\xde\xef\xe2\xdf\xef\ \xe2\xe0\xef\xe2\xe0\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe4\ \xe2\xf1\xe5\xe3\xf1\xe6\xe4\xf2\xe6\xe4\xf2\xe6\xe4\xf2\xe7\xe3\ \xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ \xe9\xe4\xf4\xe9\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\ \xe7\xf6\xef\xe7\xf6\xef\xe7\xf6\xef\xe6\xf6\xed\xe4\xf4\xe8\xe0\ \xf1\xe2\xdb\xed\xda\xd5\xe7\xd4\xce\xdf\xcc\xc9\xd5\xc3\xc3\xc9\ \xba\xbe\xbf\xb3\xba\xbb\xb0\xba\xbb\xb0\xba\xba\xaf\xb9\xba\xaf\ \xb9\xba\xae\xb8\xba\xae\xb9\xbb\xae\xb8\xbe\xb1\xb9\xc1\xb2\xb9\ \xc1\xb2\xb9\xc1\xb2\xb8\xbf\xaf\xb7\xbc\xac\xb6\xb6\xa8\xb4\xaf\ \xa3\xb3\xaa\xa0\xb2\xa7\x9e\xb1\xa4\x9e\xb0\xa3\x9d\xb0\xa3\x9d\ \xb0\xa4\x9e\xb1\xa4\x9e\xb1\xa5\x9e\xb1\xa5\x9f\xb2\xa3\x9e\xb1\ \xa2\x9c\xb0\x9f\x9a\xae\x9d\x98\xad\x99\x96\xac\x96\x93\xa9\x94\ \x92\xa8\x96\x93\xa7\x93\x90\xa5\x8f\x8e\xa2\x8c\x8a\xa0\x8e\x8b\ \x9f\x97\x90\xa1\xa7\x9a\xa6\xb9\xa8\xad\xc7\xb3\xb4\xd0\xbc\xba\ \xd7\xc3\xc0\xdf\xca\xc5\xe5\xcf\xc9\xe8\xd4\xcd\xec\xd8\xd2\xf0\ \xe0\xd7\x00\x00\x00\xd8\xd3\xdc\xd9\xd4\xdd\xd9\xd5\xdd\xda\xd3\ \xdd\xda\xd4\xde\xda\xd5\xde\xdc\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\ \xde\xd9\xe1\xde\xdb\xe2\xdf\xda\xe2\xde\xd9\xe2\xdd\xd8\xe0\xdc\ \xd7\xe1\xdd\xd8\xdf\xdd\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\ \xde\xe0\xd9\xdd\xe0\xd8\xde\xe1\xd9\xdd\xe3\xd9\xdb\xe3\xd9\xdc\ \xe4\xd9\xdb\xe5\xd8\xda\xe5\xd7\xd8\xe4\xd6\xd7\xe5\xd6\xd6\xe6\ \xd6\xd4\xe7\xd5\xd3\xe6\xd5\xd2\xe9\xd7\xd3\xea\xd7\xd1\xea\xd6\ \xd2\xeb\xd7\xd1\xeb\xd8\xd1\xea\xd7\xd1\xea\xd7\xd0\xe8\xd5\xce\ \xe8\xd5\xce\xe7\xd4\xcd\xe5\xd2\xcd\xe5\xd1\xcc\xe4\xd1\xcc\xe3\ \xd0\xcb\xe2\xcf\xca\xe1\xce\xcb\xe1\xce\xcc\xe2\xcf\xcc\xe1\xce\ \xcb\xe0\xcd\xca\xe0\xcd\xca\xdf\xcc\xc9\xe0\xcd\xca\xdf\xcd\xca\ \xdf\xcd\xcb\xde\xcd\xcc\xdd\xce\xcc\xdf\xd0\xce\xe0\xd1\xcf\xe1\ \xd2\xd0\xe3\xd4\xd2\xe5\xd4\xd2\xe6\xd6\xd3\xe7\xd6\xd3\xe9\xd8\ \xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xda\xd7\xeb\xda\xd7\xeb\xda\xd7\ \xed\xdc\xd9\xec\xdc\xd9\xec\xdd\xda\xee\xdf\xdc\xef\xe1\xde\xef\ \xe3\xdf\xef\xe3\xdf\xef\xe3\xdf\xee\xe2\xde\xed\xe1\xde\xed\xe0\ \xde\xee\xe1\xdf\xef\xe1\xe0\xef\xe3\xe0\xf0\xe3\xe1\xf0\xe3\xe1\ \xf0\xe4\xe2\xf1\xe5\xe3\xf2\xe6\xe4\xf1\xe5\xe3\xf2\xe6\xe4\xf2\ \xe5\xe4\xf1\xe6\xe3\xf1\xe6\xe3\xf2\xe7\xe3\xf4\xe9\xe5\xf3\xe8\ \xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf6\xef\xe6\ \xf7\xef\xe6\xf7\xef\xe6\xf7\xee\xe5\xf4\xe9\xe1\xf2\xe3\xdc\xee\ \xdc\xd7\xe9\xd6\xd1\xe2\xcf\xcb\xdb\xc8\xc6\xd0\xbf\xc0\xc6\xb8\ \xbc\xbd\xb2\xb9\xbb\xb0\xb9\xbb\xb0\xba\xba\xaf\xba\xba\xaf\xb8\ \xbb\xaf\xb8\xc0\xb2\xb9\xc5\xb6\xbb\xc8\xb8\xbc\xc9\xb7\xbb\xc8\ \xb7\xbb\xc7\xb6\xb9\xc3\xb2\xb8\xbf\xaf\xb7\xb6\xa9\xb5\xae\xa3\ \xb3\xa9\xa1\xb2\xa6\x9e\xb0\xa4\x9e\xb0\xa4\x9e\xb1\xa5\x9f\xb1\ \xa6\xa0\xb2\xa7\xa1\xb3\xa6\xa0\xb2\xa6\xa0\xb2\xa5\x9f\xb2\xa4\ \x9e\xb1\xa1\x9b\xae\x9e\x99\xad\x9e\x98\xac\xa3\x9a\xab\xa5\x9b\ \xaa\xa3\x99\xa8\x9f\x95\xa4\x9a\x90\xa1\x9d\x92\xa1\xa4\x97\xa2\ \xaf\x9e\xa6\xbd\xa9\xad\xc8\xb3\xb3\xd0\xbb\xb9\xd7\xc1\xbe\xde\ \xc8\xc3\xe3\xcd\xc7\xe7\xd1\xcb\xeb\xd6\xd0\xee\xdc\xd5\x00\x00\ \x00\xd6\xd1\xda\xd7\xd2\xdb\xd9\xd3\xdc\xda\xd2\xdc\xda\xd3\xdc\ \xdb\xd4\xdd\xda\xd5\xde\xdb\xd5\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xde\ \xd9\xe2\xde\xd9\xe2\xdd\xd8\xe1\xdc\xd8\xe0\xdd\xd7\xe0\xdd\xd7\ \xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd6\xde\xdf\xd8\xdd\ \xe0\xd9\xde\xe1\xd7\xdc\xe2\xd9\xdc\xe3\xd8\xdb\xe3\xd7\xda\xe4\ \xd7\xd9\xe4\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd6\xe5\xd5\xd4\xe7\xd5\ \xd4\xe7\xd6\xd3\xe8\xd6\xd3\xe8\xd5\xd2\xe9\xd6\xd1\xe9\xd6\xd1\ \xea\xd6\xd0\xe9\xd5\xd0\xe9\xd4\xd0\xe8\xd5\xce\xe7\xd4\xce\xe7\ \xd4\xce\xe7\xd2\xcd\xe5\xd2\xcd\xe5\xd2\xcd\xe4\xd1\xcc\xe3\xd0\ \xcb\xe3\xd0\xcc\xe3\xd0\xcc\xe2\xcf\xcc\xe2\xcf\xcc\xe1\xcf\xcc\ \xe1\xce\xcb\xe0\xcd\xca\xdf\xcd\xca\xdf\xce\xcb\xe0\xce\xcc\xe0\ \xce\xcd\xdf\xce\xcd\xe0\xd0\xce\xe1\xd1\xcf\xe3\xd3\xd1\xe3\xd4\ \xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe7\xd6\xd3\xe9\xd8\xd5\xea\xd9\xd6\ \xeb\xda\xd7\xeb\xda\xd7\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\ \xdd\xda\xee\xdf\xdc\xef\xe0\xdd\xef\xe1\xde\xef\xe3\xdf\xef\xe3\ \xdf\xef\xe2\xde\xee\xe3\xde\xef\xe1\xde\xee\xe0\xde\xee\xe0\xde\ \xee\xe1\xdf\xef\xe1\xe0\xef\xe2\xe0\xf0\xe2\xe0\xef\xe3\xe1\xf0\ \xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\ \xe3\xf2\xe7\xe2\xf3\xe8\xe4\xf3\xe8\xe4\xf4\xe9\xe4\xf5\xea\xe5\ \xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf7\xee\xe6\xf8\xef\xe7\xf6\ \xee\xe5\xf7\xee\xe5\xf5\xeb\xe3\xf3\xe6\xde\xf0\xdf\xd9\xec\xd8\ \xd3\xe6\xd3\xce\xdf\xcc\xc8\xd6\xc4\xc3\xcd\xbc\xbf\xc5\xb7\xbc\ \xbf\xb2\xba\xbc\xb0\xb9\xbc\xb0\xb8\xbc\xaf\xb9\xbf\xb1\xb9\xc6\ \xb7\xbb\xcc\xbb\xbc\xd0\xbe\xbf\xd1\xbf\xc0\xd0\xbd\xbe\xd0\xbc\ \xbe\xcc\xb9\xbc\xc8\xb6\xb9\xc0\xb0\xb6\xb5\xa8\xb4\xad\xa3\xb3\ \xa9\xa1\xb2\xa8\xa0\xb1\xa8\xa1\xb2\xa9\xa1\xb2\xa9\xa2\xb3\xaa\ \xa3\xb3\xaa\xa3\xb4\xaa\xa2\xb3\xab\xa3\xb4\xa9\xa1\xb1\xa6\x9e\ \xb1\xa5\x9e\xb0\xaa\xa0\xaf\xae\xa2\xae\xae\xa1\xac\xad\x9f\xaa\ \xab\x9c\xa7\xa8\x99\xa3\xab\x9b\xa3\xb1\x9f\xa5\xb8\xa3\xa7\xbf\ \xaa\xac\xc6\xb1\xb1\xce\xb8\xb6\xd5\xbe\xbc\xdb\xc4\xc0\xe0\xca\ \xc5\xe5\xcf\xc9\xe8\xd2\xcc\xeb\xd4\xce\x00\x00\x00\xd5\xd0\xd9\ \xd6\xd1\xda\xd7\xd2\xdb\xd8\xd1\xda\xd9\xd1\xdb\xd8\xd2\xdb\xd9\ \xd4\xdd\xda\xd5\xde\xdb\xd5\xde\xdc\xd7\xe0\xdc\xd7\xe0\xdd\xd8\ \xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd7\xe0\xde\xd7\xde\xdd\xd6\xdd\ \xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xdf\xd8\xdd\xe0\xd8\xdd\xe0\ \xd7\xdc\xe2\xd8\xdb\xe2\xd7\xda\xe4\xd8\xda\xe4\xd7\xd9\xe4\xd7\ \xd8\xe4\xd6\xd7\xe3\xd5\xd6\xe5\xd6\xd4\xe5\xd6\xd3\xe6\xd5\xd3\ \xe7\xd5\xd2\xe8\xd5\xd2\xe8\xd5\xd1\xe8\xd5\xd0\xe9\xd5\xd0\xe8\ \xd5\xd0\xe8\xd4\xcf\xe8\xd4\xce\xe8\xd4\xce\xe7\xd4\xce\xe6\xd2\ \xce\xe5\xd3\xce\xe5\xd2\xcd\xe5\xd2\xcd\xe5\xd2\xcd\xe4\xd1\xcc\ \xe3\xd1\xce\xe3\xd0\xcd\xe3\xd0\xcc\xe2\xcf\xcc\xe1\xcf\xcc\xe0\ \xce\xcb\xe0\xce\xcb\xe1\xd0\xcd\xe1\xd0\xcd\xe0\xd0\xcd\xe1\xd0\ \xcd\xe2\xd1\xcf\xe3\xd2\xd0\xe4\xd3\xd1\xe5\xd4\xd2\xe6\xd5\xd2\ \xe8\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xec\ \xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\xdd\xda\xed\xde\ \xdb\xee\xdf\xdc\xef\xe1\xdd\xef\xe3\xde\xef\xe1\xde\xef\xe1\xde\ \xef\xe1\xde\xef\xe1\xde\xf0\xe1\xde\xee\xe0\xde\xee\xe0\xdf\xef\ \xe1\xdf\xee\xe1\xdf\xef\xe2\xe0\xef\xe2\xe0\xf0\xe4\xe2\xf0\xe4\ \xe2\xf1\xe5\xe3\xf0\xe4\xe2\xf1\xe5\xe3\xf0\xe4\xe2\xf2\xe7\xe3\ \xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\ \xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xee\xe6\xf8\xef\xe6\xf7\xee\ \xe5\xf6\xed\xe4\xf4\xe9\xe1\xf2\xe3\xdc\xee\xdd\xd6\xe9\xd6\xd0\ \xe3\xcf\xca\xdb\xc8\xc6\xd2\xc1\xc2\xca\xbb\xbe\xc3\xb6\xbb\xbf\ \xb2\xb9\xbe\xb1\xb9\xbf\xb1\xb9\xc5\xb6\xba\xcd\xbd\xbf\xd5\xc2\ \xc0\xd8\xc4\xc2\xd8\xc4\xc3\xd8\xc4\xc2\xd7\xc3\xc2\xd5\xc1\xc0\ \xd1\xbd\xbd\xca\xb8\xba\xbf\xaf\xb7\xb3\xa7\xb4\xad\xa3\xb3\xab\ \xa2\xb3\xac\xa4\xb4\xab\xa3\xb4\xac\xa4\xb4\xad\xa5\xb5\xad\xa5\ \xb4\xae\xa5\xb5\xaf\xa5\xb6\xae\xa5\xb5\xac\xa3\xb4\xad\xa2\xb1\ \xb1\xa4\xb1\xb4\xa5\xb0\xb4\xa4\xae\xb2\xa2\xab\xaf\x9e\xa8\xae\ \x9d\xa4\xb3\xa0\xa5\xbb\xa6\xa9\xbf\xa9\xaa\xbe\xa8\xaa\xc3\xac\ \xad\xca\xb2\xb2\xd0\xb9\xb8\xd6\xbf\xbc\xdd\xc5\xc0\xe1\xc9\xc4\ \xe2\xca\xc5\xe4\xcc\xc7\x00\x00\x00\xd4\xcf\xd8\xd7\xcf\xd9\xd7\ \xcf\xd9\xd7\xcf\xd9\xd7\xcf\xd9\xd7\xd1\xda\xd8\xd3\xdc\xd9\xd4\ \xdd\xda\xd5\xde\xdb\xd6\xdf\xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\ \xdc\xd7\xe0\xdc\xd7\xde\xde\xd7\xdd\xdd\xd6\xdd\xde\xd7\xde\xde\ \xd7\xde\xdf\xd7\xde\xdf\xd8\xdc\xdf\xd7\xdd\xe1\xd7\xdb\xe1\xd8\ \xdb\xe3\xd7\xdb\xe3\xd7\xda\xe5\xd8\xda\xe3\xd6\xd8\xe3\xd5\xd7\ \xe3\xd6\xd7\xe5\xd5\xd5\xe4\xd6\xd3\xe5\xd4\xd3\xe6\xd4\xd2\xe6\ \xd5\xd1\xe7\xd5\xd1\xe8\xd5\xd0\xe7\xd4\xcf\xe8\xd4\xcf\xe8\xd3\ \xce\xe8\xd3\xcf\xe7\xd3\xcf\xe7\xd4\xcf\xe6\xd2\xcd\xe6\xd3\xce\ \xe5\xd2\xcd\xe6\xd3\xce\xe6\xd3\xce\xe5\xd2\xcd\xe5\xd2\xcd\xe4\ \xd1\xce\xe3\xd0\xcd\xe3\xd0\xcd\xe1\xcf\xcc\xe1\xd0\xcd\xe1\xd0\ \xcd\xe2\xd1\xce\xe2\xd1\xce\xe3\xd1\xce\xe3\xd2\xcf\xe3\xd2\xcf\ \xe4\xd3\xd0\xe5\xd4\xd1\xe7\xd5\xd2\xe8\xd7\xd4\xe9\xd8\xd5\xe9\ \xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xeb\xda\xd7\xec\xdb\xd8\xed\xdc\ \xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\xda\xee\xdd\xda\xee\xdf\xdc\ \xee\xdf\xdc\xef\xe0\xdd\xef\xe1\xde\xef\xe0\xdd\xef\xe0\xdd\xef\ \xe1\xdd\xef\xe0\xdd\xee\xdf\xde\xef\xe0\xdd\xee\xe0\xdf\xee\xe1\ \xdf\xee\xe1\xdf\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe2\ \xef\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe3\xf2\xe6\xe3\xf2\xe7\xe3\xf3\ \xe8\xe4\xf3\xe8\xe5\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\ \xe6\xf7\xed\xe6\xf7\xee\xe5\xf9\xf0\xe7\xf7\xef\xe6\xf7\xee\xe5\ \xf5\xec\xe3\xf4\xe7\xe0\xf1\xe1\xda\xec\xd9\xd4\xe8\xd4\xcf\xe0\ \xcc\xc8\xd8\xc6\xc4\xd1\xbf\xc0\xc9\xba\xbd\xc2\xb4\xbb\xc1\xb3\ \xb9\xc5\xb6\xbb\xcd\xbc\xbe\xd6\xc3\xc2\xdb\xc7\xc4\xdf\xca\xc6\ \xe0\xcc\xc7\xdf\xcb\xc6\xde\xca\xc5\xdc\xc8\xc4\xd9\xc4\xc1\xd3\ \xbf\xbf\xca\xb8\xbb\xbe\xaf\xb7\xb3\xa8\xb4\xaf\xa6\xb4\xaf\xa6\ \xb4\xaf\xa5\xb5\xb0\xa6\xb6\xb0\xa6\xb6\xb0\xa6\xb6\xb1\xa7\xb7\ \xb1\xa7\xb6\xb1\xa7\xb5\xaf\xa3\xb3\xaf\xa2\xb1\xb4\xa5\xb1\xb7\ \xa6\xb0\xb7\xa5\xad\xb5\xa3\xaa\xb4\xa2\xa8\xb2\x9e\xa3\xb5\xa0\ \xa3\xbf\xa9\xa9\xc4\xad\xac\xbf\xa7\xa7\xbe\xa7\xa9\xc3\xab\xad\ \xca\xb2\xb1\xd0\xb7\xb6\xd4\xba\xba\xd7\xbe\xbc\xd8\xbf\xbe\xdb\ \xc2\xc0\x00\x00\x00\xd6\xcd\xd7\xd5\xcd\xd7\xd6\xce\xd8\xd5\xcf\ \xd7\xd7\xcf\xd9\xd8\xd0\xda\xd7\xd2\xdb\xd9\xd3\xdc\xdb\xd4\xde\ \xdb\xd5\xde\xdb\xd6\xdf\xdb\xd6\xdf\xdc\xd6\xdf\xdb\xd5\xde\xdd\ \xd4\xde\xdd\xd6\xde\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd6\xdd\xdf\xd6\ \xdd\xde\xd7\xdc\xdf\xd7\xdc\xe1\xd6\xdc\xe0\xd7\xda\xe2\xd7\xda\ \xe2\xd7\xda\xe4\xd8\xda\xe4\xd6\xd8\xe4\xd6\xd7\xe3\xd5\xd7\xe4\ \xd6\xd6\xe5\xd5\xd4\xe4\xd6\xd3\xe5\xd3\xd2\xe5\xd3\xd1\xe4\xd3\ \xd0\xe5\xd3\xd0\xe6\xd3\xd0\xe6\xd4\xcf\xe6\xd3\xce\xe6\xd4\xce\ \xe6\xd4\xce\xe7\xd3\xce\xe6\xd3\xce\xe5\xd2\xcd\xe6\xd3\xce\xe6\ \xd3\xce\xe7\xd4\xcf\xe7\xd4\xcf\xe7\xd4\xcf\xe6\xd3\xcf\xe4\xd2\ \xcf\xe2\xd2\xcf\xe3\xd2\xcf\xe3\xd2\xcf\xe3\xd2\xcf\xe4\xd3\xd0\ \xe4\xd3\xd0\xe6\xd3\xd0\xe5\xd4\xd0\xe6\xd4\xd1\xe6\xd5\xd2\xe7\ \xd6\xd3\xe8\xd7\xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\ \xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdc\xd9\xec\xdb\xd8\xec\xdb\xd8\ \xec\xdb\xd8\xec\xdc\xd9\xed\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xee\ \xdf\xdc\xee\xe0\xdc\xee\xdf\xdc\xed\xde\xdb\xee\xdf\xdc\xef\xe0\ \xde\xee\xdf\xdd\xef\xdf\xde\xee\xe1\xde\xee\xe1\xe0\xef\xe2\xe0\ \xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\ \xe3\xe1\xf0\xe4\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\ \xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\ \xf7\xee\xe5\xf7\xee\xe5\xf8\xf0\xe7\xf7\xef\xe6\xf7\xee\xe5\xf5\ \xeb\xe2\xf3\xe6\xde\xf0\xde\xd7\xeb\xd7\xd1\xe5\xd1\xcc\xdf\xcc\ \xc8\xd8\xc5\xc3\xd1\xc0\xc0\xca\xba\xbd\xc9\xb9\xbc\xcf\xbe\xbf\ \xd6\xc3\xc2\xdd\xc9\xc6\xe2\xce\xc9\xe4\xd1\xcb\xe5\xd2\xcc\xe6\ \xd3\xcc\xe5\xd1\xcb\xe4\xce\xc9\xe0\xcc\xc7\xdb\xc6\xc2\xd4\xc0\ \xbf\xcb\xb9\xbb\xc2\xb2\xb8\xba\xac\xb6\xb5\xaa\xb6\xb2\xa8\xb5\ \xb1\xa7\xb6\xb2\xa8\xb6\xb3\xa8\xb6\xb4\xaa\xb6\xb5\xa9\xb6\xb5\ \xa9\xb5\xb3\xa6\xb2\xb4\xa4\xb0\xb7\xa6\xb0\xba\xa7\xad\xb9\xa6\ \xab\xb7\xa2\xa7\xb5\x9e\xa3\xb3\x9d\xa0\xb3\x9c\x9f\xbc\xa5\xa6\ \xc4\xad\xab\xc2\xaa\xa9\xbc\xa3\xa5\xbb\xa3\xa6\xbe\xa6\xaa\xc2\ \xa9\xae\xc3\xaa\xb1\xc8\xad\xb3\xc8\xad\xb4\xcc\xb3\xb6\x00\x00\ \x00\xd6\xcd\xd8\xd5\xcd\xd7\xd5\xce\xd8\xd5\xce\xd8\xd6\xce\xd9\ \xd7\xcf\xd9\xd8\xd1\xdb\xda\xd2\xdc\xdb\xd3\xdd\xdb\xd3\xdd\xdb\ \xd4\xdd\xdb\xd3\xdd\xdc\xd4\xde\xdc\xd4\xde\xdc\xd5\xde\xdc\xd5\ \xdc\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdc\xde\xd6\xdc\ \xde\xd6\xdb\xe0\xd6\xdc\xe0\xd7\xda\xe0\xd6\xd9\xe2\xd7\xda\xe3\ \xd8\xda\xe4\xd6\xd8\xe4\xd6\xd7\xe4\xd5\xd6\xe4\xd5\xd6\xe4\xd4\ \xd5\xe3\xd4\xd3\xe3\xd3\xd1\xe3\xd2\xd1\xe4\xd2\xd1\xe4\xd2\xd0\ \xe5\xd3\xd0\xe6\xd3\xd0\xe6\xd2\xcf\xe6\xd3\xcf\xe7\xd4\xcf\xe7\ \xd3\xce\xe5\xd2\xcd\xe6\xd3\xce\xe6\xd3\xce\xe6\xd3\xce\xe7\xd4\ \xcf\xe7\xd4\xcf\xe7\xd5\xcf\xe6\xd4\xd1\xe4\xd4\xd1\xe4\xd2\xd0\ \xe4\xd3\xd0\xe4\xd3\xd0\xe5\xd4\xd1\xe5\xd4\xd1\xe5\xd4\xd1\xe8\ \xd5\xd1\xe8\xd5\xd0\xe9\xd6\xd1\xe9\xd7\xd3\xe9\xd8\xd5\xe9\xd8\ \xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\ \xec\xdc\xd9\xeb\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xea\xda\xd7\xeb\ \xdb\xd8\xec\xdc\xd9\xeb\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xed\xde\ \xdb\xed\xde\xdb\xee\xdf\xdc\xed\xde\xdc\xee\xdf\xdd\xee\xdf\xdd\ \xef\xe0\xdd\xee\xe0\xde\xee\xe1\xdf\xef\xe2\xe0\xef\xe2\xe0\xf0\ \xe3\xe1\xf0\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe4\ \xe2\xf1\xe5\xe1\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe4\xf5\xeb\xe4\ \xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xee\xe5\xf8\ \xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xee\xe5\xf5\xea\ \xe2\xf3\xe4\xdc\xef\xdc\xd5\xea\xd6\xd1\xe5\xd2\xcc\xe0\xcd\xc9\ \xdb\xc8\xc6\xd7\xc4\xc3\xd6\xc3\xc2\xd9\xc6\xc4\xde\xca\xc7\xe3\ \xcf\xca\xe7\xd3\xcd\xea\xd8\xd0\xeb\xd9\xd2\xed\xda\xd2\xec\xd8\ \xd1\xeb\xd5\xcf\xe6\xd2\xcc\xe1\xcd\xc7\xdc\xc7\xc3\xd6\xc1\xc0\ \xcf\xbc\xbc\xc7\xb6\xba\xc0\xb1\xb7\xba\xac\xb7\xb4\xa9\xb5\xb2\ \xa7\xb3\xb3\xa8\xb5\xb7\xa9\xb5\xb9\xaa\xb5\xba\xaa\xb4\xb9\xa8\ \xb2\xbb\xa8\xb0\xbf\xaa\xaf\xc0\xab\xae\xbc\xa5\xa9\xb7\xa1\xa4\ \xb5\x9e\xa0\xb4\x9c\x9d\xb3\x9b\x9b\xb8\xa1\xa1\xbe\xa8\xa6\xbe\ \xa8\xa7\xb9\xa2\xa4\xb3\x9b\xa1\xaf\x98\xa3\xae\x97\xa5\xae\x96\ \xa7\xad\x94\xa8\xaf\x95\xa8\xb8\x9e\xab\x00\x00\x00\xd6\xce\xd6\ \xd6\xce\xd6\xd6\xcf\xd6\xd6\xce\xd7\xd6\xcf\xd7\xd7\xd0\xd8\xd9\ \xd1\xd9\xda\xd3\xda\xda\xd2\xda\xda\xd3\xdb\xdb\xd4\xdb\xdb\xd3\ \xdb\xdb\xd4\xdb\xdb\xd3\xdb\xdc\xd4\xdc\xdc\xd5\xdc\xdc\xd5\xdc\ \xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdd\xde\xd6\xdc\xde\xd6\xdc\xdf\ \xd6\xdc\xe0\xd6\xdb\xe0\xd6\xdb\xe2\xd7\xda\xe3\xd7\xd9\xe4\xd7\ \xd9\xe5\xd7\xd9\xe4\xd6\xd7\xe3\xd5\xd6\xe3\xd4\xd5\xe3\xd4\xd4\ \xe3\xd3\xd2\xe2\xd2\xd1\xe2\xd2\xd0\xe4\xd2\xd0\xe4\xd3\xd0\xe4\ \xd3\xcf\xe5\xd2\xd0\xe5\xd2\xcf\xe6\xd3\xcf\xe7\xd4\xd0\xe5\xd2\ \xcd\xe6\xd3\xce\xe6\xd3\xce\xe7\xd4\xcf\xe8\xd6\xd2\xe8\xd6\xd1\ \xe8\xd6\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe5\xd4\xd1\xe5\xd3\xd1\xe5\ \xd5\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe7\xd5\xd2\xe9\xd6\xd3\xea\xd7\ \xd2\xea\xd8\xd2\xea\xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xeb\xda\xd7\ \xeb\xda\xd7\xec\xda\xd7\xeb\xdb\xd8\xeb\xdc\xd9\xea\xdc\xd9\xea\ \xdb\xd8\xeb\xdb\xd8\xea\xda\xd7\xea\xda\xd8\xea\xda\xd8\xeb\xdc\ \xd9\xeb\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdc\xee\xde\xdc\ \xee\xde\xdc\xee\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdc\xef\ \xe0\xdd\xee\xe1\xdf\xef\xe2\xdf\xef\xe3\xe0\xf0\xe3\xe1\xf0\xe3\ \xe2\xef\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf2\xe6\xe2\ \xf2\xe7\xe3\xf3\xe8\xe3\xf3\xe9\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf6\ \xec\xe5\xf6\xec\xe5\xf7\xed\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf7\xf0\ \xe7\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe7\xf6\xee\xe4\xf4\xe9\xe0\ \xf3\xe2\xdb\xef\xdd\xd6\xeb\xd8\xd2\xe7\xd4\xce\xe4\xd0\xcb\xe1\ \xcd\xc9\xe0\xcc\xc8\xe2\xce\xca\xe5\xd1\xcc\xe8\xd5\xce\xec\xd9\ \xd2\xf0\xde\xd7\xf2\xe2\xda\xf2\xe3\xda\xf2\xe2\xd9\xf0\xde\xd6\ \xec\xd8\xd2\xe8\xd2\xcc\xe3\xcf\xc9\xdd\xc9\xc4\xd8\xc3\xc2\xd2\ \xbf\xbe\xcb\xb8\xba\xc3\xb2\xb7\xbd\xac\xb5\xb7\xa7\xb2\xb5\xa6\ \xb1\xb7\xa7\xb1\xbb\xa9\xb2\xbc\xaa\xb1\xbd\xa9\xb0\xbe\xaa\xae\ \xc2\xae\xb0\xc5\xae\xaf\xc3\xaa\xaa\xbd\xa4\xa5\xb8\x9e\xa0\xb5\ \x9c\x9c\xb3\x9b\x9b\xb3\x9d\x9d\xb7\xa2\xa2\xb8\xa3\xa5\xb6\xa1\ \xa4\xaf\x99\xa0\xa5\x91\x9e\x9c\x8a\x9e\x97\x85\x9f\x93\x81\x9f\ \x90\x7d\x9e\x9f\x87\xa3\x00\x00\x00\xd7\xcf\xd6\xd6\xce\xd5\xd7\ \xce\xd5\xd7\xcf\xd6\xd8\xcf\xd6\xd8\xd0\xd7\xd7\xd0\xd7\xd9\xd1\ \xd8\xda\xd1\xd8\xd9\xd2\xd9\xd9\xd2\xd9\xd9\xd2\xd9\xda\xd2\xd9\ \xda\xd4\xdb\xdb\xd3\xda\xdb\xd3\xda\xdc\xd4\xdb\xdc\xd4\xdb\xdc\ \xd4\xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdc\xd4\xda\xdd\xd4\xd9\xde\xd4\ \xda\xdf\xd5\xda\xe1\xd6\xd9\xe1\xd6\xda\xe4\xd8\xda\xe5\xd8\xda\ \xe4\xd7\xd9\xe3\xd5\xd7\xe2\xd4\xd5\xe1\xd3\xd4\xe1\xd3\xd4\xe1\ \xd2\xd3\xe2\xd3\xd2\xe2\xd4\xd2\xe4\xd2\xd0\xe5\xd2\xd1\xe4\xd2\ \xd0\xe3\xd2\xcf\xe4\xd3\xd0\xe5\xd3\xd0\xe6\xd3\xd0\xe5\xd4\xd1\ \xe6\xd4\xd1\xe7\xd6\xd3\xe8\xd6\xd3\xe8\xd7\xd4\xe8\xd8\xd4\xe8\ \xd7\xd4\xe7\xd6\xd3\xe7\xd7\xd4\xe5\xd6\xd3\xe6\xd6\xd4\xe8\xd7\ \xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xe9\xd9\xd4\xeb\xda\xd4\ \xea\xda\xd5\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xec\ \xdc\xd9\xeb\xdc\xd9\xec\xdd\xda\xec\xdd\xda\xeb\xdc\xd9\xea\xdb\ \xd9\xea\xdb\xd9\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\ \xed\xde\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xdf\xdd\xee\xe0\xde\xed\ \xdf\xdd\xee\xdf\xdd\xef\xe0\xdd\xef\xe0\xdd\xee\xe2\xdd\xef\xe3\ \xdf\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\xe1\ \xf0\xe4\xe0\xf1\xe4\xe1\xf1\xe5\xe0\xf1\xe5\xe2\xf3\xe7\xe3\xf3\ \xe9\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xed\ \xe6\xf8\xef\xe5\xf8\xef\xe6\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf0\xe7\ \xf9\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xed\xe3\xf4\xe8\xdf\xf2\ \xe2\xdb\xf0\xde\xd7\xec\xd9\xd4\xea\xd6\xd1\xe8\xd4\xcf\xe8\xd4\ \xce\xe9\xd5\xcf\xeb\xd8\xd1\xee\xdb\xd4\xf1\xe1\xd9\xf3\xe5\xdc\ \xf5\xea\xdf\xf5\xeb\xe1\xf4\xea\xdf\xf3\xe5\xdc\xf1\xdf\xd7\xed\ \xda\xd3\xe9\xd5\xce\xe4\xcf\xc9\xe0\xcb\xc6\xda\xc5\xc2\xd4\xbe\ \xbe\xcd\xb9\xba\xc6\xb2\xb6\xbf\xad\xb2\xba\xa8\xb0\xb9\xa6\xae\ \xbb\xa7\xae\xbe\xa9\xae\xc0\xa9\xad\xc0\xaa\xad\xc4\xad\xaf\xca\ \xb1\xb0\xca\xb0\xae\xc6\xaa\xa9\xbe\xa2\xa1\xb5\x9c\x9b\xb0\x99\ \x98\xae\x98\x9a\xb0\x9d\x9f\xb3\xa0\xa2\xb3\x9f\xa3\xac\x9a\xa2\ \xa2\x90\x9f\x96\x86\x9c\x91\x82\x9c\x8d\x7d\x9c\x87\x77\x9b\x8b\ \x78\x9c\x00\x00\x00\xd5\xcd\xd4\xd6\xce\xd5\xd7\xcf\xd5\xd8\xce\ \xd5\xd8\xcf\xd5\xd8\xcf\xd6\xd8\xcf\xd6\xd9\xd1\xd7\xda\xd1\xd8\ \xd9\xd1\xd9\xd9\xd1\xd9\xd9\xd1\xd8\xda\xd2\xd9\xdb\xd3\xda\xdb\ \xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\ \xda\xdb\xd3\xda\xda\xd2\xd9\xdb\xd3\xd9\xdc\xd3\xd9\xde\xd4\xda\ \xe0\xd5\xda\xe1\xd6\xda\xe3\xd8\xda\xe3\xd7\xd9\xe4\xd7\xd8\xe3\ \xd6\xd8\xe3\xd5\xd6\xe2\xd4\xd5\xe2\xd4\xd5\xe1\xd3\xd4\xe2\xd3\ \xd4\xe2\xd3\xd3\xe2\xd3\xd2\xe2\xd3\xd1\xe3\xd3\xd1\xe3\xd2\xd0\ \xe4\xd3\xd1\xe4\xd4\xd1\xe6\xd4\xd1\xe6\xd4\xd1\xe6\xd6\xd3\xe8\ \xd7\xd4\xe8\xd7\xd4\xe9\xd9\xd6\xea\xd9\xd6\xea\xd9\xd6\xe9\xd9\ \xd6\xe7\xd8\xd5\xe8\xd9\xd6\xe8\xd9\xd6\xe9\xda\xd7\xeb\xda\xd7\ \xeb\xda\xd7\xeb\xdb\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\ \xdc\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xec\xdd\ \xda\xec\xdd\xda\xed\xde\xdb\xec\xdd\xda\xeb\xdc\xda\xeb\xdc\xda\ \xe9\xdb\xd9\xe9\xdc\xda\xea\xdd\xdb\xeb\xde\xdc\xeb\xde\xdc\xec\ \xde\xdc\xed\xdf\xdd\xed\xdf\xdd\xee\xe0\xde\xed\xe0\xde\xee\xe1\ \xde\xee\xe1\xde\xef\xe1\xde\xef\xe2\xde\xef\xe3\xdf\xf0\xe4\xe0\ \xf1\xe5\xe2\xf2\xe6\xe2\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe5\xe1\xf1\ \xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe9\xe2\xf4\xea\ \xe3\xf5\xeb\xe4\xf6\xec\xe4\xf6\xec\xe5\xf7\xee\xe5\xf8\xef\xe6\ \xf7\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf6\ \xf2\xe9\xf8\xf1\xe8\xf8\xef\xe5\xf6\xec\xe2\xf5\xe8\xe0\xf3\xe4\ \xdc\xf1\xe0\xd9\xef\xdd\xd6\xee\xdb\xd4\xee\xdb\xd4\xee\xdc\xd5\ \xf1\xdf\xd9\xf2\xe2\xdb\xf4\xe7\xde\xf6\xeb\xe1\xf7\xed\xe4\xf8\ \xef\xe5\xf7\xed\xe3\xf5\xea\xe0\xf3\xe6\xdc\xf1\xe1\xd9\xee\xdc\ \xd5\xeb\xd6\xcf\xe7\xd1\xcb\xe1\xcc\xc6\xdb\xc6\xc2\xd5\xbf\xbd\ \xce\xb9\xb8\xc9\xb3\xb4\xc3\xae\xb1\xbe\xa9\xad\xbd\xa8\xac\xc0\ \xa9\xab\xc2\xaa\xac\xc4\xab\xab\xc6\xac\xaa\xcb\xb1\xae\xce\xb3\ \xaf\xcb\xaf\xab\xc2\xa7\xa4\xb7\x9d\x9c\xae\x96\x98\xa9\x94\x97\ \xab\x99\x9b\xae\x9d\x9f\xae\x9e\xa2\xab\x9c\xa3\xa5\x95\xa2\x99\ \x8b\x9e\x92\x84\x9c\x8d\x80\x9d\x8a\x7a\x9b\x8b\x79\x9b\x00\x00\ \x00\xd2\xca\xd1\xd7\xce\xd4\xd8\xce\xd4\xd8\xcf\xd5\xd8\xce\xd4\ \xd9\xcf\xd5\xd8\xcf\xd5\xd9\xcf\xd5\xda\xcf\xd6\xda\xd0\xd6\xd9\ \xd0\xd6\xd9\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd2\xd8\xda\xd1\ \xd8\xda\xd1\xd9\xda\xd2\xd9\xd9\xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\ \xd9\xd1\xd8\xd9\xd1\xd9\xdb\xd3\xda\xdd\xd4\xda\xde\xd5\xda\xe0\ \xd7\xdb\xe2\xd8\xda\xe3\xd8\xdb\xe3\xd7\xd9\xe3\xd6\xd8\xe3\xd5\ \xd7\xe2\xd5\xd6\xe3\xd5\xd6\xe2\xd5\xd5\xe2\xd4\xd5\xe2\xd4\xd5\ \xe2\xd4\xd3\xe2\xd4\xd2\xe3\xd4\xd2\xe3\xd4\xd2\xe4\xd4\xd2\xe4\ \xd5\xd3\xe5\xd5\xd3\xe6\xd6\xd4\xe7\xd7\xd4\xe9\xd8\xd5\xea\xda\ \xd6\xea\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xeb\xdc\xd9\xeb\xdc\xd9\ \xeb\xdc\xd9\xeb\xdc\xda\xeb\xdc\xd9\xec\xdd\xda\xec\xdd\xda\xed\ \xde\xdb\xed\xde\xdb\xee\xde\xdb\xee\xdd\xda\xee\xdd\xda\xee\xdd\ \xda\xed\xdd\xda\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xee\xdf\xdc\ \xed\xdf\xdc\xed\xde\xdb\xec\xdd\xdb\xeb\xdd\xdb\xea\xdd\xdb\xea\ \xdd\xdb\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xec\xdf\xdd\xec\xdf\ \xdd\xed\xe0\xde\xed\xe1\xde\xee\xe2\xde\xee\xe2\xde\xef\xe2\xdf\ \xef\xe3\xdf\xf0\xe4\xe0\xf0\xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe1\xf2\ \xe6\xe2\xf2\xe6\xe1\xf2\xe6\xe2\xf2\xe6\xe2\xf2\xe6\xe2\xf2\xe6\ \xe2\xf2\xe6\xe1\xf3\xe8\xe2\xf4\xe9\xe2\xf5\xea\xe3\xf5\xeb\xe4\ \xf6\xed\xe5\xf7\xee\xe5\xf8\xef\xe5\xf7\xef\xe6\xf8\xf0\xe7\xf7\ \xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf2\xe9\xf6\xf1\xe9\xf8\xf2\ \xe9\xf8\xf0\xe7\xf7\xef\xe5\xf6\xec\xe2\xf5\xe9\xe0\xf4\xe6\xde\ \xf3\xe4\xdc\xf2\xe2\xdb\xf3\xe3\xdb\xf3\xe4\xdc\xf4\xe7\xde\xf5\ \xea\xe0\xf6\xec\xe2\xf7\xef\xe5\xf7\xf1\xe6\xf7\xf1\xe6\xf7\xf0\ \xe7\xf7\xee\xe4\xf5\xeb\xe1\xf5\xe8\xde\xf3\xe5\xdb\xf0\xde\xd6\ \xeb\xd8\xd1\xe8\xd1\xcc\xe2\xcc\xc6\xdc\xc6\xc1\xd6\xbf\xbb\xd0\ \xba\xb6\xcb\xb5\xb3\xc7\xb0\xaf\xc4\xad\xac\xc3\xab\xab\xc6\xad\ \xab\xc8\xae\xab\xc9\xae\xaa\xcb\xaf\xab\xcc\xb1\xac\xcc\xb1\xac\ \xc6\xab\xa7\xbc\xa4\xa1\xb0\x9a\x9b\xa7\x94\x97\xa4\x95\x98\xa9\ \x9a\x9d\xac\x9d\xa1\xaa\x9c\xa4\xa6\x9a\xa5\x9e\x92\xa2\x95\x89\ \x9e\x8f\x84\x9d\x8c\x7f\x9c\x90\x80\x9d\x00\x00\x00\xcf\xc4\xcc\ \xd4\xcb\xd1\xd8\xcd\xd3\xda\xcf\xd2\xda\xcf\xd4\xdb\xce\xd4\xda\ \xd0\xd6\xda\xd0\xd6\xd9\xcf\xd5\xd8\xcf\xd4\xd8\xcd\xd4\xd8\xce\ \xd4\xd9\xcf\xd5\xda\xd0\xd6\xd9\xce\xd6\xd9\xce\xd6\xd9\xce\xd6\ \xd7\xd0\xd6\xd7\xcf\xd6\xd7\xcf\xd6\xd8\xd0\xd7\xd8\xd0\xd7\xd9\ \xd1\xd8\xdb\xd3\xda\xdc\xd4\xd9\xde\xd4\xda\xdf\xd5\xdb\xe1\xd7\ \xda\xe2\xd7\xda\xe1\xd6\xd9\xe1\xd6\xd9\xe2\xd5\xd8\xe3\xd6\xd8\ \xe3\xd6\xd8\xe3\xd6\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe4\xd6\xd7\xe4\ \xd5\xd6\xe3\xd6\xd5\xe4\xd6\xd3\xe4\xd6\xd4\xe5\xd6\xd4\xe7\xd8\ \xd6\xe7\xd8\xd6\xe7\xd8\xd7\xe9\xda\xd7\xea\xdb\xd9\xeb\xdc\xd9\ \xec\xdd\xda\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xed\ \xde\xdc\xee\xdf\xdc\xee\xe1\xde\xef\xe2\xde\xef\xe1\xde\xf0\xe1\ \xde\xf0\xe1\xde\xef\xe0\xdd\xef\xe0\xdd\xee\xe0\xdd\xee\xe0\xdd\ \xef\xe1\xde\xf0\xe1\xde\xee\xe1\xde\xef\xe2\xde\xef\xe2\xde\xee\ \xe0\xdd\xed\xdf\xde\xed\xe0\xde\xed\xe0\xde\xed\xe0\xde\xec\xdf\ \xdd\xed\xe0\xde\xec\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xee\xe2\xde\ \xef\xe3\xdf\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf2\ \xe6\xe2\xf2\xe6\xe1\xf3\xe7\xe2\xf4\xe9\xe2\xf3\xe7\xe1\xf2\xe6\ \xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe2\xf4\xe8\xe2\xf4\xe8\xe2\ \xf4\xe8\xe2\xf5\xe9\xe3\xf6\xea\xe3\xf5\xed\xe5\xf6\xed\xe5\xf8\ \xef\xe6\xf7\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe9\xf7\xf1\xe9\xf9\xf2\xe8\ \xf9\xf1\xe6\xf8\xef\xe5\xf7\xed\xe4\xf7\xec\xe2\xf5\xeb\xe1\xf6\ \xeb\xe1\xf6\xeb\xe1\xf6\xeb\xe1\xf6\xec\xe2\xf7\xed\xe3\xf8\xf0\ \xe6\xf7\xf1\xe6\xf7\xf2\xe8\xf9\xf1\xe9\xf7\xf2\xe7\xf8\xf1\xe6\ \xf8\xef\xe5\xf6\xed\xe3\xf5\xea\xe0\xf4\xe6\xdc\xf1\xe0\xd7\xec\ \xd8\xd1\xe9\xd3\xcc\xe3\xcd\xc5\xdd\xc5\xbf\xd7\xbf\xba\xd3\xbc\ \xb7\xd0\xb8\xb3\xcf\xb6\xb1\xcd\xb3\xaf\xcc\xb2\xae\xcd\xb3\xad\ \xcd\xb1\xac\xcc\xb0\xab\xca\xb0\xaa\xcb\xb1\xac\xc9\xaf\xab\xc1\ \xa9\xa7\xb5\xa0\xa1\xaa\x99\x9d\xa4\x96\x9a\xa6\x99\x9d\xa8\x9c\ \xa1\xa7\x9c\xa4\xa6\x9b\xa6\xa1\x97\xa4\x9a\x8f\xa1\x92\x87\x9d\ \x8f\x84\x9c\x93\x85\x9e\x00\x00\x00\xca\xbf\xc6\xd2\xc7\xcc\xd7\ \xcc\xd0\xd9\xce\xd0\xda\xcf\xd2\xdc\xd0\xd5\xdc\xd0\xd6\xdb\xcf\ \xd5\xdb\xcf\xd5\xda\xcd\xd3\xd9\xcd\xd3\xd8\xcd\xd3\xd9\xce\xd4\ \xd8\xce\xd4\xd8\xce\xd4\xd8\xcd\xd4\xd6\xcc\xd4\xd5\xcd\xd4\xd5\ \xcd\xd4\xd6\xce\xd5\xd6\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xdb\xd3\ \xda\xdc\xd4\xdb\xdd\xd5\xdb\xdf\xd5\xdb\xe0\xd6\xdc\xe0\xd6\xdb\ \xe0\xd6\xda\xe1\xd7\xd9\xe1\xd7\xd9\xe2\xd7\xd9\xe3\xd7\xd9\xe4\ \xd7\xd9\xe4\xd8\xd8\xe5\xd7\xd8\xe5\xd7\xd8\xe5\xd7\xd8\xe5\xd7\ \xd8\xe4\xd7\xd6\xe4\xd7\xd6\xe6\xd8\xd6\xe7\xd9\xd7\xe8\xda\xd8\ \xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdb\xee\xdf\xdc\xee\ \xdf\xdc\xee\xe0\xdc\xee\xdf\xdc\xee\xe1\xdd\xee\xe2\xde\xef\xe3\ \xdf\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\ \xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\ \xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe3\xdf\xee\xe3\ \xdf\xee\xe1\xdf\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\ \xee\xe1\xdf\xee\xe2\xdf\xef\xe2\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\ \xe4\xe0\xf1\xe5\xe0\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe8\ \xe2\xf3\xe8\xe2\xf5\xe9\xe3\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\ \xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\xe9\xe3\xf5\ \xe9\xe3\xf6\xeb\xe3\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xf1\ \xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf9\xf2\xe9\ \xf7\xf1\xe8\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf2\xe9\xf8\xf1\xe9\xf8\ \xf1\xe7\xf9\xf1\xe6\xf9\xef\xe5\xf8\xef\xe5\xf8\xef\xe4\xf8\xef\ \xe5\xf8\xef\xe5\xf8\xf0\xe6\xf8\xf1\xe7\xf8\xf2\xe7\xf8\xf2\xe8\ \xf8\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe7\xf9\ \xf0\xe6\xf7\xef\xe4\xf6\xec\xe2\xf5\xe8\xdf\xf2\xe1\xd8\xee\xda\ \xd2\xea\xd3\xcb\xe4\xcc\xc4\xde\xc5\xbe\xd9\xc1\xba\xd9\xc0\xb8\ \xd9\xbf\xb8\xd8\xbe\xb8\xd7\xbd\xb5\xd5\xbb\xb3\xd3\xb8\xb1\xcf\ \xb5\xaf\xcc\xb2\xac\xca\xb1\xac\xc8\xb0\xad\xc3\xac\xac\xba\xa7\ \xa8\xae\x9f\xa2\xa6\x99\x9f\xa4\x99\x9f\xa5\x9c\xa2\xa5\x9b\xa2\ \xa4\x9b\xa5\xa3\x9a\xa6\x9f\x96\xa4\x98\x8e\x9f\x93\x87\x9d\x95\ \x89\x9f\x00\x00\x00\xc3\xb7\xbe\xce\xc3\xc8\xd5\xc9\xcd\xd8\xcd\ \xd0\xd9\xcf\xd1\xdb\xcf\xd4\xdc\xd0\xd6\xdb\xd0\xd6\xdb\xcf\xd5\ \xda\xce\xd4\xd9\xcd\xd3\xd9\xcd\xd3\xd9\xcd\xd3\xd8\xcc\xd2\xd7\ \xcc\xd2\xd6\xcb\xd2\xd6\xcb\xd2\xd5\xcb\xd3\xd4\xcd\xd3\xd5\xcd\ \xd4\xd5\xce\xd5\xd7\xcf\xd6\xd9\xd1\xd8\xdb\xd3\xda\xdb\xd4\xdb\ \xdc\xd4\xdb\xdd\xd5\xdc\xdf\xd6\xdc\xdf\xd6\xdb\xdf\xd6\xdb\xe0\ \xd7\xda\xe1\xd7\xda\xe3\xd8\xdb\xe2\xd7\xda\xe4\xd8\xda\xe5\xd8\ \xda\xe5\xd9\xd9\xe5\xd9\xd9\xe6\xd9\xd9\xe6\xd9\xda\xe7\xd9\xda\ \xe7\xd9\xda\xe8\xda\xda\xe8\xdb\xd9\xe9\xdb\xda\xea\xdd\xdb\xeb\ \xde\xdc\xee\xdf\xdc\xef\xdf\xdc\xef\xe0\xdd\xee\xe0\xdd\xee\xe1\ \xde\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe5\xe1\xf1\xe6\xe2\xf1\xe6\xe2\ \xf2\xe7\xe3\xf2\xe7\xe2\xf2\xe7\xe1\xf1\xe7\xe2\xf2\xe6\xe3\xf2\ \xe6\xe2\xf2\xe6\xe2\xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf1\xe6\ \xe2\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe3\xe1\ \xef\xe3\xe1\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xef\xe2\xe0\xf0\ \xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\ \xe2\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe9\xe1\xf4\xe9\xe2\xf5\xeb\xe3\ \xf4\xeb\xe2\xf5\xea\xe2\xf4\xe9\xe2\xf4\xe9\xe2\xf4\xe9\xe2\xf4\ \xe9\xe2\xf5\xe9\xe3\xf4\xe9\xe3\xf5\xea\xe3\xf6\xed\xe4\xf6\xed\ \xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\ \xf9\xf2\xe9\xf8\xf1\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf7\xf2\xe9\xf9\ \xf2\xe9\xf8\xf2\xe8\xf8\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf1\xe8\xf9\xf2\xe8\xf9\xf1\xe8\xf9\xf2\xe7\xf8\xf2\xe7\ \xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe8\xf8\ \xf2\xe9\xf8\xf1\xe9\xf8\xf1\xe9\xf7\xf1\xe8\xf9\xf2\xe8\xf8\xf1\ \xe7\xf8\xf1\xe6\xf7\xee\xe3\xf5\xe9\xdf\xf2\xe2\xd9\xee\xda\xd2\ \xe9\xd2\xca\xe4\xcb\xc3\xdf\xc5\xbd\xde\xc4\xbc\xdf\xc5\xbd\xe0\ \xc6\xbf\xdf\xc7\xbd\xde\xc4\xbc\xd9\xc1\xb9\xd4\xbc\xb5\xcf\xb6\ \xb1\xca\xb2\xae\xc6\xaf\xad\xc2\xad\xad\xbc\xa9\xab\xb2\xa3\xa8\ \xa8\x9c\xa3\xa2\x99\xa1\xa3\x9b\xa3\xa4\x9c\xa4\xa4\x9c\xa6\xa4\ \x9c\xa7\xa3\x9b\xa6\x9e\x96\xa3\x97\x8d\x9f\x96\x8b\x9f\x00\x00\ \x00\xbe\xb2\xb8\xcb\xbf\xc3\xd3\xc8\xcc\xd8\xcc\xd0\xd9\xcd\xd1\ \xd9\xcd\xd3\xdb\xcf\xd5\xdb\xcf\xd5\xda\xcf\xd5\xdb\xcf\xd4\xd9\ \xcd\xd3\xd8\xcd\xd3\xd9\xcd\xd2\xd7\xcb\xd1\xd7\xcb\xd1\xd5\xca\ \xd1\xd5\xcb\xd1\xd3\xcb\xd2\xd3\xcc\xd3\xd4\xcc\xd3\xd6\xcf\xd6\ \xd7\xd0\xd7\xd9\xd1\xd9\xdb\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdd\ \xd5\xdd\xde\xd7\xdc\xde\xd7\xdc\xdf\xd7\xdc\xe0\xd7\xdc\xe1\xd8\ \xdb\xe1\xd7\xda\xe4\xd8\xdb\xe4\xd8\xda\xe5\xd8\xda\xe6\xd9\xdb\ \xe7\xdb\xdb\xe7\xdb\xdb\xe8\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xdc\xe9\ \xdb\xdc\xea\xdc\xdd\xeb\xdd\xdd\xeb\xde\xdc\xec\xde\xdc\xee\xde\ \xdc\xee\xe0\xdd\xee\xe1\xdd\xf0\xe3\xe0\xef\xe4\xe0\xf0\xe5\xe1\ \xf2\xe6\xe2\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe9\xe3\xf3\ \xea\xe2\xf3\xe8\xe2\xf3\xe9\xe2\xf3\xe8\xe3\xf3\xe8\xe4\xf2\xe7\ \xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf2\xe8\xe1\ \xf2\xe7\xe3\xf2\xe6\xe2\xf0\xe5\xe1\xf0\xe5\xe1\xf0\xe4\xe2\xf0\ \xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe5\xe1\xf1\xe6\xe2\xf1\xe6\ \xe2\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe3\xf3\xe7\xe1\xf3\xe7\xe2\ \xf4\xe9\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf4\xeb\xe3\xf5\xec\xe3\xf6\ \xec\xe3\xf6\xeb\xe3\xf6\xeb\xe4\xf5\xeb\xe2\xf5\xeb\xe2\xf5\xeb\ \xe2\xf5\xec\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\ \xf8\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ \xf2\xe9\xf8\xf2\xe8\xf8\xf3\xe9\xf8\xf2\xe9\xf7\xf1\xe8\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf3\xe9\xf9\xf2\xe9\xf8\xf2\xe8\ \xf8\xf2\xe8\xf9\xf3\xe9\xf8\xf2\xe8\xf9\xf3\xea\xf8\xf2\xe9\xf8\ \xf1\xe8\xf7\xf3\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf9\xf1\xe9\xf8\xf2\ \xe9\xf6\xf1\xe8\xf7\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\ \xf7\xf1\xe6\xf7\xee\xe4\xf5\xe9\xdf\xf2\xe3\xd9\xee\xda\xd2\xea\ \xd3\xcb\xe5\xcc\xc5\xe3\xc9\xc0\xe2\xc9\xc1\xe3\xcb\xc2\xe4\xcd\ \xc4\xe3\xcc\xc4\xde\xc7\xbf\xda\xc2\xbb\xd4\xbd\xb7\xcd\xb6\xb2\ \xc5\xb0\xae\xc1\xac\xae\xba\xa8\xad\xb0\xa3\xab\xa7\x9d\xa7\xa2\ \x9b\xa5\xa0\x9a\xa4\xa2\x9d\xa5\xa4\x9e\xa8\xa6\x9d\xa7\xa5\x9d\ \xa7\xa3\x9b\xa6\x9d\x94\xa3\x97\x8f\xa0\x00\x00\x00\xbc\xaf\xb5\ \xc8\xbc\xc1\xd1\xc6\xca\xd5\xca\xd0\xd7\xcc\xd2\xd8\xcc\xd2\xd9\ \xcd\xd3\xdb\xcf\xd4\xda\xcf\xd4\xda\xce\xd3\xd9\xcf\xd1\xd9\xcd\ \xd1\xd8\xcd\xd0\xd7\xcb\xd1\xd7\xcb\xd0\xd4\xca\xd0\xd3\xc9\xcf\ \xd3\xca\xd2\xd3\xcc\xd3\xd5\xce\xd5\xd6\xcf\xd6\xd8\xd1\xd8\xd9\ \xd2\xd9\xdb\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd6\ \xdd\xde\xd7\xdd\xdf\xd8\xdd\xe0\xd8\xde\xe1\xd8\xdc\xe1\xd9\xdc\ \xe3\xd8\xdb\xe4\xd9\xdb\xe5\xd9\xdb\xe8\xdb\xdd\xe8\xdb\xdc\xe9\ \xdd\xdd\xea\xdd\xde\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\xdd\xeb\xde\ \xdc\xeb\xde\xde\xed\xe0\xde\xed\xe0\xde\xee\xe0\xde\xee\xe1\xde\ \xef\xe3\xdf\xf1\xe5\xe1\xf1\xe6\xe2\xf3\xe8\xe4\xf3\xe8\xe4\xf4\ \xe9\xe4\xf4\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf4\xea\ \xe3\xf5\xeb\xe4\xf5\xeb\xe3\xf5\xea\xe5\xf4\xe9\xe5\xf4\xe9\xe5\ \xf4\xe9\xe5\xf4\xe9\xe5\xf4\xea\xe5\xf4\xe9\xe3\xf4\xe9\xe3\xf3\ \xe8\xe3\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe4\xf2\xe7\xe4\xf2\xe7\ \xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe3\ \xf3\xe8\xe4\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\ \xeb\xe4\xf5\xeb\xe4\xf6\xec\xe4\xf6\xed\xe4\xf6\xec\xe3\xf5\xed\ \xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xed\xe4\xf7\xed\xe5\xf6\xed\xe4\ \xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf8\xf0\xe7\xf8\ \xf0\xe7\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf2\xe9\xf9\xf2\xe9\ \xfa\xf3\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xea\xf9\xf2\xe9\xf8\ \xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf8\xf2\ \xea\xf7\xf2\xe9\xf8\xf2\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\ \xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe8\xf8\ \xf2\xe7\xf7\xee\xe4\xf5\xe9\xdf\xf3\xe4\xda\xf0\xdc\xd3\xeb\xd5\ \xcc\xe8\xd0\xc6\xe7\xce\xc6\xe6\xcf\xc6\xe7\xd0\xc8\xe5\xcf\xc7\ \xe2\xcc\xc4\xdd\xc7\xc1\xd7\xc2\xbc\xd0\xbb\xb7\xc8\xb3\xb2\xbf\ \xad\xaf\xb8\xa9\xae\xb0\xa3\xad\xa7\x9f\xaa\xa4\x9c\xa8\x9f\x9b\ \xa6\x9f\x9b\xa7\xa3\x9e\xa8\xa6\xa0\xaa\xa6\x9e\xa8\xa3\x9d\xa7\ \xa0\x9a\xa5\x9d\x95\xa3\x00\x00\x00\xbd\xb0\xb7\xc9\xbd\xc3\xd1\ \xc6\xcb\xd6\xca\xd0\xd7\xcb\xd0\xd8\xcc\xd2\xd9\xcd\xd3\xda\xce\ \xd3\xd9\xce\xd2\xd9\xce\xd1\xd9\xcf\xd2\xd9\xcd\xd0\xd8\xcd\xd0\ \xd6\xcb\xcf\xd7\xcb\xcf\xd5\xca\xd0\xd4\xca\xd0\xd4\xcb\xd1\xd5\ \xcd\xd4\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd4\ \xdb\xdb\xd5\xdc\xdc\xd5\xdc\xdd\xd6\xdd\xdf\xd7\xde\xdf\xd8\xdd\ \xdf\xd8\xdd\xe1\xd9\xde\xe2\xd8\xdd\xe2\xd9\xdc\xe3\xda\xdd\xe5\ \xda\xdc\xe7\xdb\xdd\xe7\xdb\xdd\xe9\xdd\xde\xea\xde\xde\xeb\xde\ \xdf\xec\xde\xdd\xeb\xde\xdd\xeb\xdf\xdc\xec\xdf\xdd\xec\xdf\xde\ \xee\xe1\xdf\xee\xe1\xdf\xef\xe2\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf1\ \xe6\xe2\xf2\xe7\xe3\xf3\xe9\xe5\xf5\xea\xe5\xf5\xeb\xe5\xf5\xeb\ \xe4\xf6\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf5\xeb\xe4\ \xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe5\xf5\xea\xe5\xf5\xea\xe6\xf6\ \xeb\xe6\xf5\xeb\xe5\xf5\xeb\xe5\xf4\xea\xe4\xf4\xe9\xe5\xf4\xe9\ \xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\ \xf4\xe9\xe5\xf4\xe9\xe6\xf5\xeb\xe5\xf5\xeb\xe4\xf5\xeb\xe4\xf5\ \xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\ \xe5\xf6\xed\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\ \xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\ \xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf9\xf2\ \xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ \xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf8\ \xf3\xe9\xf9\xf3\xe9\xf7\xf3\xea\xf9\xf3\xea\xf8\xf3\xea\xf9\xf2\ \xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf2\xe9\ \xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\ \xf3\xea\xf8\xf2\xe9\xf9\xf1\xe8\xf7\xf2\xe9\xf8\xf2\xe8\xf8\xf1\ \xe7\xf7\xee\xe4\xf6\xeb\xe1\xf3\xe6\xdb\xf1\xdf\xd7\xed\xd9\xcf\ \xeb\xd4\xcb\xea\xd3\xcb\xe8\xd2\xca\xe5\xcf\xc7\xe2\xcc\xc5\xdf\ \xc9\xc3\xd8\xc3\xbe\xd2\xbd\xba\xca\xb6\xb7\xbf\xad\xb1\xb7\xa8\ \xaf\xae\xa3\xae\xaa\xa0\xad\xa7\x9f\xac\xa1\x9c\xa8\x9f\x9b\xa6\ \x9f\x9c\xa8\xa3\xa0\xaa\xa6\xa1\xab\xa5\x9f\xaa\xa2\x9c\xa7\x9e\ \x99\xa5\x00\x00\x00\xbe\xb1\xb8\xcb\xc0\xc4\xd3\xc9\xcc\xd6\xcb\ \xcf\xd7\xcc\xd0\xd8\xcc\xd1\xd8\xcd\xd2\xd9\xcd\xd1\xd9\xce\xd1\ \xda\xcd\xd0\xd9\xcd\xd1\xd8\xce\xd1\xd9\xcc\xd0\xd7\xcb\xce\xd6\ \xcb\xcf\xd6\xcb\xd1\xd5\xcb\xd1\xd6\xcd\xd3\xd7\xd0\xd5\xd8\xd0\ \xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd3\xd9\xdb\xd3\xdb\xdd\xd5\xdc\ \xdd\xd6\xdd\xde\xd6\xde\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xde\xe2\ \xda\xe0\xe3\xda\xde\xe3\xda\xdd\xe3\xda\xdd\xe6\xdb\xdd\xe7\xdb\ \xdd\xe8\xdb\xde\xea\xde\xde\xeb\xde\xde\xec\xdd\xdf\xec\xdf\xdd\ \xec\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\ \xe3\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe6\xe2\xf3\xe8\xe4\xf4\xe9\ \xe5\xf5\xea\xe6\xf6\xea\xe4\xf5\xec\xe5\xf5\xec\xe5\xf5\xec\xe5\ \xf6\xed\xe6\xf6\xed\xe6\xf6\xed\xe6\xf6\xec\xe5\xf7\xec\xe5\xf7\ \xec\xe5\xf5\xec\xe5\xf6\xec\xe5\xf6\xeb\xe4\xf5\xec\xe5\xf5\xec\ \xe5\xf6\xec\xe5\xf5\xec\xe4\xf5\xea\xe7\xf6\xea\xe6\xf4\xea\xe5\ \xf4\xea\xe6\xf4\xea\xe6\xf4\xea\xe6\xf3\xea\xe6\xf4\xea\xe6\xf5\ \xec\xe6\xf5\xec\xe5\xf6\xec\xe5\xf5\xec\xe5\xf6\xec\xe5\xf6\xec\ \xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe4\xf6\xee\xe4\ \xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\ \xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\ \xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\ \xf9\xf1\xe8\xf9\xf2\xe9\xfa\xf3\xea\xf9\xf3\xea\xfa\xf3\xea\xf9\ \xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\xf9\xf2\xea\xfa\xf3\xea\xf8\xf3\ \xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf3\xea\xf9\xf3\xea\ \xf8\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf7\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf2\xe8\xf7\xf3\ \xe9\xf8\xf2\xe9\xf6\xf2\xe8\xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe6\ \xf7\xef\xe5\xf6\xec\xe2\xf4\xe8\xdd\xf2\xe2\xd9\xef\xdc\xd3\xec\ \xd6\xce\xe9\xd2\xca\xe4\xcf\xc8\xe0\xcb\xc4\xdd\xc7\xc2\xd7\xc3\ \xbe\xd1\xbd\xbc\xc9\xb6\xb9\xbe\xae\xb4\xb4\xa7\xb1\xad\xa3\xaf\ \xab\xa2\xaf\xa9\xa1\xae\xa3\x9d\xaa\x9f\x9b\xa7\x9e\x9b\xa7\xa1\ \x9d\xa9\xa4\x9f\xaa\xa7\xa1\xac\xa3\x9e\xa8\x9f\x9b\xa6\x00\x00\ \x00\xbe\xb0\xb5\xcb\xc0\xc3\xd6\xcb\xce\xd8\xcd\xd0\xd9\xce\xd1\ \xd9\xce\xd0\xda\xcf\xd1\xda\xcf\xd2\xda\xce\xd1\xdb\xcd\xd1\xda\ \xcc\xd0\xd9\xcc\xd0\xda\xcd\xd1\xd8\xcd\xd0\xd8\xcd\xd0\xd7\xcd\ \xd1\xd7\xcd\xd3\xd8\xcf\xd5\xd8\xd1\xd6\xda\xd3\xd7\xdb\xd4\xd9\ \xdb\xd4\xd9\xdb\xd4\xd9\xdd\xd6\xdb\xdd\xd6\xdc\xde\xd7\xdd\xe0\ \xd9\xde\xe0\xd9\xde\xe1\xda\xdf\xe3\xdb\xdf\xe5\xdc\xdf\xe5\xdc\ \xdf\xe5\xdc\xdf\xe6\xdc\xdf\xe7\xdc\xdf\xe8\xdc\xde\xe8\xdc\xde\ \xe9\xdd\xdd\xeb\xdd\xde\xeb\xde\xdc\xed\xe0\xde\xec\xdf\xdd\xed\ \xe0\xde\xee\xe1\xdf\xef\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf0\xe6\ \xe2\xf1\xe6\xe2\xf2\xe6\xe2\xf3\xe8\xe4\xf4\xe9\xe5\xf5\xeb\xe6\ \xf4\xec\xe5\xf5\xed\xe6\xf5\xed\xe6\xf6\xee\xe7\xf5\xee\xe7\xf6\ \xee\xe7\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf5\xed\ \xe6\xf5\xed\xe6\xf5\xed\xe6\xf6\xee\xe7\xf6\xee\xe7\xf5\xed\xe6\ \xf6\xec\xe5\xf6\xed\xe6\xf5\xec\xe7\xf4\xeb\xe7\xf5\xeb\xe7\xf4\ \xeb\xe7\xf4\xeb\xe7\xf5\xec\xe8\xf5\xec\xe7\xf5\xed\xe5\xf6\xed\ \xe6\xf6\xed\xe6\xf7\xee\xe7\xf7\xee\xe7\xf6\xed\xe6\xf7\xed\xe6\ \xf7\xec\xe5\xf7\xee\xe7\xf8\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\ \xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\ \xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf1\xe8\ \xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\ \xf3\xe9\xf9\xf3\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xfa\xf3\xe9\xf9\xf3\ \xe9\xf9\xf3\xea\xf8\xf3\xe9\xf9\xf3\xe9\xfa\xf3\xea\xf7\xf2\xe9\ \xf7\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf3\xea\xf7\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\ \xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xe9\xf7\xf2\xe9\ \xf7\xf1\xe8\xf7\xf1\xe9\xf8\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe6\xf7\ \xf0\xe5\xf7\xed\xe3\xf5\xea\xdf\xf2\xe4\xda\xed\xda\xd2\xe9\xd3\ \xcb\xe4\xcf\xc8\xe0\xc9\xc4\xd9\xc4\xc0\xd3\xbf\xbd\xcd\xb9\xba\ \xc4\xb3\xb7\xbd\xad\xb6\xb3\xa7\xb3\xad\xa3\xb0\xab\xa2\xb0\xaa\ \xa2\xaf\xa7\xa0\xad\xa1\x9c\xa9\x9e\x9a\xa6\x9e\x9c\xa8\xa3\x9f\ \xab\xa5\xa2\xae\xa5\xa1\xac\xa1\x9d\xa9\x00\x00\x00\xbe\xb0\xb5\ \xca\xbc\xc0\xd3\xc8\xcb\xd8\xcd\xd0\xd9\xce\xd1\xd9\xce\xd1\xd9\ \xcf\xd1\xda\xcf\xd2\xdb\xce\xd2\xdb\xce\xd1\xda\xcd\xd0\xda\xcc\ \xd0\xda\xcd\xd0\xda\xce\xd1\xd9\xce\xd1\xd8\xce\xd2\xd9\xcf\xd5\ \xda\xd0\xd6\xdb\xd2\xd8\xdd\xd4\xd9\xde\xd4\xda\xde\xd5\xda\xde\ \xd5\xdb\xdd\xd6\xdb\xdf\xd8\xdd\xdf\xd8\xdd\xe0\xda\xdf\xe2\xdb\ \xdf\xe3\xdb\xdf\xe5\xdc\xde\xe6\xdd\xe0\xe7\xdd\xdf\xe7\xdc\xdf\ \xe7\xdc\xdf\xe8\xdc\xde\xe9\xdc\xde\xe8\xdd\xde\xe9\xdc\xdd\xeb\ \xdd\xde\xeb\xde\xdd\xed\xe0\xde\xed\xe0\xde\xee\xe1\xde\xef\xe3\ \xe0\xf0\xe4\xe1\xf1\xe5\xe1\xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\ \xf2\xe7\xe3\xf4\xe9\xe5\xf5\xea\xe6\xf5\xec\xe6\xf5\xed\xe6\xf6\ \xee\xe7\xf5\xed\xe6\xf6\xee\xe7\xf6\xee\xe7\xf6\xef\xe8\xf7\xef\ \xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\ \xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf5\xee\xe7\xf5\ \xed\xe6\xf5\xec\xe7\xf5\xec\xe8\xf4\xeb\xe8\xf4\xec\xe8\xf5\xec\ \xe7\xf4\xec\xe7\xf5\xed\xe6\xf6\xed\xe6\xf5\xee\xe7\xf7\xee\xe7\ \xf6\xee\xe7\xf6\xee\xe7\xf7\xee\xe7\xf6\xee\xe7\xf7\xee\xe7\xf8\ \xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\ \xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ \xf9\xf0\xe7\xf8\xef\xe6\xfa\xf1\xe8\xf9\xf0\xe7\xf8\xf1\xe8\xf8\ \xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf3\ \xea\xf8\xf3\xe9\xfa\xf3\xe9\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf3\xe9\ \xf8\xf3\xea\xf8\xf3\xea\xfa\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\ \xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf7\xf3\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\ \xf1\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf7\xf1\xe6\xf7\xf1\xe6\xf7\xf0\ \xe5\xf6\xee\xe4\xf4\xe8\xde\xf0\xde\xd5\xe9\xd4\xcd\xe4\xce\xc8\ \xdd\xc8\xc2\xd6\xc1\xbe\xce\xb9\xba\xc5\xb3\xb7\xbd\xad\xb6\xb6\ \xa9\xb6\xb1\xa6\xb5\xae\xa5\xb3\xab\xa1\xb1\xaa\xa1\xaf\xa7\xa0\ \xae\xa2\x9d\xab\x9f\x9b\xa9\x9e\x9c\xa8\xa0\x9e\xaa\xa4\xa1\xac\ \xa6\xa2\xaf\xa3\xa0\xac\x00\x00\x00\xbb\xad\xb3\xc5\xb8\xbe\xce\ \xc2\xc5\xd4\xc9\xcc\xd8\xcd\xd0\xda\xcf\xd2\xd9\xcf\xd1\xdb\xcf\ \xd3\xdc\xce\xd2\xdc\xcf\xd1\xdb\xce\xd0\xda\xcd\xd0\xda\xcd\xd0\ \xd9\xce\xd2\xda\xcf\xd2\xda\xd0\xd3\xda\xd0\xd6\xdc\xd2\xd7\xdd\ \xd3\xd8\xde\xd5\xd9\xde\xd5\xd9\xdf\xd6\xda\xdf\xd6\xda\xe0\xd6\ \xdc\xe0\xd8\xdd\xe1\xd8\xdd\xe1\xd9\xde\xe3\xda\xde\xe4\xdb\xde\ \xe6\xdc\xde\xe7\xdc\xdf\xe8\xdc\xdf\xe9\xdd\xde\xea\xdd\xde\xe9\ \xdd\xde\xe9\xdd\xde\xe9\xdd\xde\xea\xdc\xdd\xeb\xdd\xdd\xeb\xde\ \xdc\xed\xe0\xde\xee\xe1\xde\xef\xe3\xdf\xf0\xe4\xe0\xf1\xe6\xe2\ \xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ \xe9\xe5\xf4\xea\xe6\xf5\xec\xe5\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\ \xe7\xf6\xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe8\xf8\xef\xe8\ \xf8\xef\xe8\xf8\xf0\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\ \xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\ \xe7\xf6\xee\xe8\xf5\xed\xe7\xf6\xee\xe8\xf5\xed\xe7\xf6\xee\xe7\ \xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf7\xef\xe8\xf7\ \xef\xe8\xf7\xef\xe7\xf7\xef\xe8\xf7\xef\xe8\xf7\xf0\xe6\xf8\xef\ \xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\ \xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\ \xf0\xe7\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ \xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf3\xe9\xf9\xf3\xe9\ \xf9\xf3\xea\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf9\ \xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\ \xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf2\ \xe9\xf8\xf2\xe7\xf7\xf0\xe6\xf7\xf0\xe6\xf7\xef\xe5\xf6\xed\xe3\ \xf4\xe7\xdd\xf0\xdf\xd7\xea\xd4\xce\xe3\xcd\xc7\xdb\xc6\xc0\xd2\ \xbd\xbc\xc8\xb5\xb8\xbd\xad\xb5\xb4\xa6\xb3\xad\xa2\xb2\xad\xa3\ \xb3\xae\xa4\xb4\xac\xa3\xb2\xa9\xa1\xb0\xa7\xa1\xaf\xa5\x9f\xae\ \xa1\x9d\xab\x9f\x9c\xab\xa0\x9d\xab\xa2\xa0\xac\xa4\xa1\xad\xa3\ \xa1\xad\x00\x00\x00\xb3\xa4\xac\xbd\xaf\xb5\xc7\xb9\xbf\xce\xc2\ \xc6\xd4\xc9\xcc\xd7\xcc\xcf\xd9\xce\xd1\xdd\xce\xd3\xdd\xcf\xd2\ \xdd\xd0\xd2\xdb\xce\xd0\xda\xcd\xcf\xda\xce\xcf\xda\xce\xd1\xda\ \xcf\xd2\xda\xd0\xd3\xdb\xd2\xd4\xdc\xd3\xd6\xde\xd4\xd7\xe0\xd5\ \xd8\xe2\xd7\xda\xe2\xd7\xda\xe2\xd7\xda\xe3\xd9\xdc\xe1\xd8\xdb\ \xe2\xd9\xdc\xe4\xdb\xdd\xe5\xdc\xdf\xe6\xdb\xdf\xe7\xdc\xde\xe9\ \xdd\xdf\xeb\xde\xde\xeb\xdf\xdf\xeb\xde\xde\xea\xdd\xdd\xea\xdd\ \xdd\xeb\xdd\xdd\xea\xdd\xdc\xeb\xde\xdc\xec\xdf\xdd\xee\xe1\xde\ \xef\xe3\xde\xf0\xe4\xe0\xf2\xe6\xe2\xf1\xe7\xe3\xf2\xe7\xe2\xf3\ \xe8\xe3\xf3\xe8\xe3\xf4\xe9\xe4\xf3\xe9\xe4\xf5\xeb\xe4\xf6\xec\ \xe6\xf5\xec\xe6\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe8\xf7\xef\xe8\ \xf7\xef\xe9\xf8\xf0\xe9\xf8\xf0\xe8\xf8\xf1\xe8\xf8\xf0\xe8\xf8\ \xef\xe9\xf7\xef\xe8\xf7\xef\xe8\xf6\xf0\xe9\xf6\xf0\xe9\xf6\xf0\ \xe9\xf8\xf0\xe9\xf8\xf0\xe9\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\ \xf6\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xef\xe8\xf8\xf0\xe9\xf8\ \xf0\xe9\xf8\xf0\xe9\xf8\xf0\xe9\xf7\xef\xe8\xf7\xf0\xe9\xf7\xf0\ \xe9\xf7\xef\xe8\xf8\xf0\xe8\xf8\xf0\xe8\xf8\xf0\xe6\xf8\xf0\xe7\ \xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf8\ \xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf9\xf0\xe7\xf8\xf1\xe8\xf7\xf0\ \xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf2\xe8\xf9\xf1\xe9\ \xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xea\xfa\xf2\xea\xfa\xf3\xe9\xf9\ \xf2\xe9\xfa\xf2\xe9\xfa\xf2\xe9\xf9\xf3\xea\xfa\xf3\xea\xf9\xf2\ \xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ \xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\ \xea\xf7\xf2\xea\xf8\xf2\xe9\xf7\xf1\xe8\xf7\xf1\xe7\xf8\xef\xe5\ \xf7\xee\xe4\xf6\xec\xe2\xf5\xea\xe0\xf3\xe6\xdd\xf0\xe1\xd8\xed\ \xd9\xd2\xe9\xd3\xcd\xe2\xcc\xc6\xd8\xc3\xbf\xce\xb9\xb9\xc2\xb0\ \xb5\xb5\xa6\xb2\xac\xa0\xb0\xa9\x9e\xb0\xa9\xa0\xb1\xaa\xa1\xb2\ \xab\xa3\xb2\xab\xa3\xb2\xa9\xa2\xb1\xa7\xa1\xb0\xa4\x9e\xad\xa0\ \x9d\xac\xa0\x9c\xab\xa2\x9f\xae\xa3\xa0\xae\xa4\xa1\xaf\x00\x00\ \x00\xa5\x93\x9d\xb3\xa2\xaa\xbe\xaf\xb6\xc8\xba\xbf\xd0\xc2\xc6\ \xd5\xc9\xcd\xda\xcc\xd0\xdc\xcf\xd2\xdd\xd0\xd1\xdd\xd0\xd2\xdb\ \xce\xd0\xdb\xce\xd0\xdb\xce\xd0\xda\xcd\xd0\xda\xce\xd1\xda\xd0\ \xd3\xdc\xd1\xd4\xde\xd2\xd5\xdf\xd4\xd7\xe0\xd5\xd7\xe2\xd6\xd9\ \xe2\xd7\xda\xe2\xd7\xda\xe4\xd9\xdb\xe4\xd9\xdc\xe4\xd9\xdd\xe5\ \xda\xde\xe6\xdc\xde\xe8\xdc\xdf\xea\xdd\xde\xeb\xdf\xdf\xeb\xdf\ \xdf\xed\xe0\xdf\xec\xdf\xde\xec\xdf\xdd\xeb\xde\xdd\xeb\xde\xdb\ \xeb\xde\xdb\xec\xde\xdc\xed\xe0\xdd\xee\xe3\xde\xf0\xe4\xe0\xf1\ \xe5\xe1\xf2\xe7\xe2\xf3\xe7\xe1\xf3\xe9\xe2\xf3\xe9\xe2\xf3\xe9\ \xe2\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\ \xf6\xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xf0\xe9\xf8\ \xef\xe9\xf8\xf0\xe8\xf8\xf0\xe7\xf7\xf1\xe8\xf8\xf0\xe8\xf6\xf0\ \xe9\xf6\xf0\xe9\xf7\xf1\xea\xf7\xf1\xea\xf7\xf1\xe9\xf7\xf1\xe9\ \xf7\xf1\xe9\xf8\xf0\xe8\xf8\xf0\xe8\xf8\xf0\xe9\xf6\xf0\xe9\xf7\ \xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\ \xe9\xf7\xf1\xe9\xf7\xf1\xe8\xf6\xf0\xe9\xf6\xf0\xe9\xf6\xf1\xe9\ \xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xef\xe6\xf8\ \xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\ \xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ \xf8\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf2\xe9\xf9\xf2\xe8\xf8\ \xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf3\xe9\xfa\xf3\xea\ \xf8\xf3\xea\xf9\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ \xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\ \xf7\xf2\xe8\xf8\xf0\xe6\xf7\xee\xe4\xf6\xeb\xe1\xf5\xe9\xe0\xf4\ \xe7\xdd\xf2\xe2\xda\xef\xdb\xd4\xeb\xd6\xd0\xe7\xd1\xcb\xe3\xcd\ \xc7\xdc\xc6\xc2\xd5\xbf\xbd\xc9\xb5\xb8\xba\xa9\xb2\xac\xa0\xb0\ \xa7\x9d\xae\xa7\x9d\xaf\xa6\x9d\xb1\xa7\x9f\xb0\xa9\xa1\xb1\xaa\ \xa3\xb2\xaa\xa3\xb2\xa9\xa2\xb1\xa6\xa0\xaf\xa4\x9e\xad\xa3\x9e\ \xad\xa2\x9f\xae\xa4\xa0\xaf\xa4\xa1\xb0\x00\x00\x00\x8d\x7a\x87\ \x9f\x8d\x98\xb2\xa1\xa9\xc0\xb1\xb7\xcb\xbc\xc0\xd3\xc4\xc8\xd8\ \xcb\xcd\xdc\xcf\xd1\xdc\xcf\xd1\xdd\xd0\xd2\xdb\xce\xd0\xdb\xce\ \xd0\xdb\xce\xd0\xda\xce\xd1\xda\xcf\xd2\xdb\xd0\xd3\xdb\xd0\xd3\ \xdd\xd2\xd5\xde\xd3\xd5\xe0\xd5\xd7\xe1\xd6\xd8\xe3\xd7\xd9\xe4\ \xd8\xda\xe3\xd9\xdb\xe3\xd9\xdb\xe4\xd9\xdc\xe6\xda\xdd\xe8\xdc\ \xde\xea\xde\xde\xeb\xdf\xdf\xec\xdf\xde\xec\xdf\xde\xed\xe0\xde\ \xed\xe0\xde\xec\xdf\xdd\xed\xdf\xdd\xed\xde\xdb\xed\xde\xdc\xee\ \xdf\xdd\xed\xe1\xdd\xf0\xe4\xe0\xf1\xe5\xe0\xf2\xe6\xe0\xf3\xe7\ \xe1\xf3\xe9\xe2\xf3\xe8\xe2\xf3\xe9\xe3\xf4\xea\xe3\xf4\xea\xe3\ \xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe6\xf5\xee\xe7\xf7\ \xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\xf8\xf0\xe8\xf7\xf0\xe8\xf8\xf0\ \xe8\xf8\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf1\xe9\xf6\xf0\xea\ \xf7\xf1\xea\xf6\xf1\xe9\xf6\xf1\xe9\xf7\xf1\xe9\xf8\xf1\xe9\xf8\ \xf1\xe8\xf7\xf1\xe9\xf7\xf0\xea\xf6\xf0\xea\xf6\xf0\xe9\xf6\xf0\ \xea\xf6\xf0\xea\xf6\xf0\xea\xf7\xf1\xe9\xf6\xf1\xe9\xf6\xf1\xe9\ \xf6\xf2\xe8\xf6\xf1\xe9\xf6\xf1\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf7\ \xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xef\xe6\xf9\xef\xe6\xf9\xef\ \xe6\xf9\xef\xe6\xf9\xef\xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\ \xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf9\xf1\xe8\xf8\ \xf1\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ \xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf9\xf3\xea\xf9\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ \xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\ \xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf1\xe7\xf7\ \xee\xe4\xf5\xeb\xe1\xf4\xe6\xdd\xf3\xe1\xda\xf0\xdd\xd6\xec\xd7\ \xd1\xe9\xd3\xcd\xe4\xce\xc8\xe0\xca\xc4\xdb\xc5\xc1\xd4\xbe\xbd\ \xcb\xb7\xb9\xbf\xad\xb5\xaf\xa2\xb0\xa6\x9c\xae\xa5\x9c\xaf\xa5\ \x9d\xaf\xa6\x9e\xaf\xa7\x9f\xb0\xa8\xa0\xb1\xa9\xa1\xb2\xab\xa4\ \xb3\xaa\xa3\xb2\xa9\xa2\xb1\xa6\xa0\xaf\xa5\xa0\xaf\xa5\xa0\xaf\ \xa5\xa0\xb0\xa5\xa1\xb0\x00\x00\x00\x75\x67\x75\x81\x71\x80\x9e\ \x8d\x97\xb4\xa3\xaa\xc4\xb5\xb9\xcf\xc0\xc4\xd6\xc8\xcb\xdb\xce\ \xd0\xdc\xcf\xd1\xdb\xce\xd1\xdd\xd0\xd2\xdd\xcf\xd1\xdc\xcf\xd1\ \xda\xcf\xd3\xda\xcf\xd2\xda\xd0\xd3\xdb\xd0\xd3\xdc\xd1\xd3\xde\ \xd2\xd4\xe0\xd3\xd5\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd8\xe5\xd8\ \xda\xe5\xd9\xdb\xe6\xd9\xdb\xe7\xda\xdd\xe9\xdd\xdd\xeb\xde\xde\ \xeb\xde\xde\xed\xe0\xde\xee\xe0\xdf\xed\xe1\xdf\xee\xe1\xdd\xee\ \xdf\xdc\xed\xde\xdc\xee\xdf\xdc\xee\xe0\xdc\xee\xe1\xdd\xee\xe2\ \xde\xf0\xe4\xe0\xf2\xe6\xe1\xf2\xe6\xe0\xf4\xe8\xe2\xf4\xe7\xe2\ \xf3\xe8\xe1\xf4\xe8\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf6\ \xec\xe5\xf7\xed\xe6\xf7\xee\xe7\xf5\xee\xe7\xf7\xef\xe7\xf6\xee\ \xe7\xf6\xef\xe7\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe8\ \xf8\xf1\xe8\xf8\xf0\xe7\xf7\xf2\xe9\xf7\xf2\xe9\xf6\xf1\xe8\xf7\ \xf2\xe9\xf6\xf1\xe8\xf7\xf2\xe8\xf6\xf2\xe9\xf8\xf1\xe8\xf6\xf1\ \xe9\xf6\xf1\xe8\xf7\xf1\xea\xf7\xf1\xea\xf7\xf2\xe9\xf7\xf2\xea\ \xf8\xf2\xea\xf7\xf2\xe9\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\ \xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf0\ \xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf9\xf0\xe7\ \xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\ \xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf2\ \xe8\xf9\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ \xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\ \xe9\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ \xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xef\xe5\xf6\xeb\xe1\xf4\xe6\ \xdd\xf2\xe0\xd8\xee\xd9\xd3\xea\xd4\xce\xe7\xcf\xc9\xe1\xc9\xc5\ \xdc\xc4\xc1\xd7\xc0\xbe\xd1\xbb\xbb\xc9\xb4\xb7\xbf\xad\xb4\xb4\ \xa5\xb1\xa7\x9d\xae\xa4\x9b\xae\xa4\x9c\xae\xa5\x9d\xaf\xa6\x9e\ \xaf\xa6\x9e\xb0\xa8\xa0\xb0\xa9\xa2\xb1\xaa\xa3\xb2\xab\xa4\xb3\ \xab\xa4\xb3\xa9\xa2\xb1\xa8\xa2\xb1\xa7\xa2\xb1\xa7\xa2\xb1\xa7\ \xa2\xb1\x00\x00\x00\x74\x66\x74\x6a\x5e\x6d\x86\x77\x85\xa5\x94\ \x9d\xba\xaa\xb0\xc7\xb9\xbd\xd1\xc3\xc7\xd7\xcb\xcf\xdb\xcd\xd1\ \xdb\xce\xd1\xdb\xcf\xd1\xdc\xcf\xd1\xda\xcf\xd1\xda\xcf\xd2\xdb\ \xd0\xd3\xdb\xd0\xd3\xda\xcf\xd2\xdc\xd1\xd3\xde\xd1\xd3\xe0\xd3\ \xd5\xe1\xd4\xd6\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd7\xe4\xd7\xd9\ \xe6\xd9\xda\xe8\xdb\xda\xe9\xdb\xdc\xea\xdd\xdc\xeb\xde\xdd\xed\ \xdf\xdd\xed\xe0\xdd\xee\xe0\xdd\xef\xdf\xdc\xef\xe0\xdd\xef\xe0\ \xdd\xef\xe0\xdd\xef\xe0\xdd\xef\xe2\xde\xf0\xe4\xe0\xf1\xe5\xe0\ \xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf4\ \xe8\xe2\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xed\ \xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xee\xe6\xf8\xef\xe6\xf8\xf0\xe7\ \xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf8\ \xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf2\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\ \xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xea\xf7\xf2\xea\xf7\xf3\xea\xf7\ \xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf1\ \xe8\xf7\xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\ \xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ \xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf2\ \xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\ \xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf8\ \xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf8\xf1\xe7\xf8\xf1\ \xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\ \xf9\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ \xe9\xf8\xf1\xe8\xf7\xee\xe4\xf5\xe7\xdf\xf2\xe1\xd9\xee\xd9\xd2\ \xe9\xd2\xcc\xe4\xcc\xc7\xde\xc5\xc1\xd7\xbe\xbd\xd1\xb9\xba\xcc\ \xb6\xb7\xc7\xb1\xb5\xbe\xaa\xb2\xb4\xa4\xb0\xaa\x9d\xae\xa5\x9a\ \xad\xa3\x9a\xae\xa3\x9a\xae\xa5\x9d\xad\xa5\x9d\xae\xa6\x9e\xae\ \xa7\xa0\xb0\xa8\xa1\xb0\xa9\xa2\xb1\xa9\xa2\xb1\xaa\xa3\xb2\xa9\ \xa3\xb3\xa8\xa3\xb2\xa9\xa4\xb3\xa9\xa4\xb3\xaa\xa4\xb4\x00\x00\ \x00\x82\x73\x7f\x67\x5c\x6b\x75\x69\x78\x96\x86\x92\xad\x9e\xa6\ \xbd\xae\xb5\xc7\xbb\xc0\xd0\xc5\xc9\xd6\xca\xcd\xd7\xcc\xcf\xd9\ \xce\xd0\xda\xcf\xd1\xda\xcf\xd2\xd9\xcf\xd2\xd8\xcf\xd2\xd9\xcf\ \xd2\xda\xd0\xd3\xdb\xd0\xd2\xdc\xd1\xd3\xdf\xd2\xd4\xe1\xd4\xd5\ \xe1\xd4\xd6\xe1\xd5\xd6\xe2\xd6\xd6\xe4\xd8\xd8\xe5\xd9\xd9\xe7\ \xd9\xda\xe8\xda\xdb\xea\xdc\xdb\xeb\xdd\xdb\xec\xdd\xdb\xee\xdf\ \xdc\xee\xdf\xdc\xee\xdf\xdb\xee\xdf\xdc\xee\xdf\xdc\xf0\xe1\xde\ \xf0\xe1\xde\xef\xe3\xdf\xf0\xe4\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\ \xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe8\ \xe2\xf4\xe9\xe2\xf5\xeb\xe3\xf5\xec\xe3\xf6\xed\xe4\xf7\xee\xe5\ \xf8\xef\xe5\xf8\xef\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\ \xef\xe6\xf7\xf0\xe7\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf2\ \xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\ \xf8\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf8\ \xf2\xe9\xf8\xf2\xe9\xf8\xf2\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\ \xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\ \xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe7\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\ \xe8\xf8\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\ \xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\ \xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf0\xe8\xf9\xf1\ \xe8\xf8\xf0\xe7\xf9\xf1\xe8\xf9\xf0\xe7\xf8\xf0\xe8\xf7\xf0\xe7\ \xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\ \xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf3\xea\xf8\xf2\xe9\xf8\xf0\xe7\ \xf7\xec\xe3\xf4\xe5\xdd\xef\xdc\xd5\xea\xd4\xce\xe4\xcc\xc7\xdd\ \xc3\xc1\xd4\xba\xba\xca\xb1\xb5\xc3\xac\xb2\xbf\xa9\xb1\xb8\xa4\ \xaf\xb1\xa0\xae\xa9\x9c\xad\xa3\x99\xac\xa3\x99\xad\xa3\x9a\xae\ \xa3\x9a\xae\xa4\x9c\xae\xa5\x9d\xae\xa6\x9e\xaf\xa7\xa0\xb0\xa8\ \xa1\xb0\xa8\xa1\xb0\xa8\xa1\xb1\xa9\xa1\xb1\xa8\xa1\xb2\xa8\xa2\ \xb3\xa9\xa4\xb3\xab\xa5\xb4\xac\xa6\xb4\x00\x00\x00\x91\x83\x8e\ \x6e\x63\x71\x6b\x60\x71\x86\x7a\x86\xa1\x92\x9b\xb1\xa2\xaa\xbd\ \xb0\xb7\xc7\xbb\xc1\xce\xc2\xc8\xd3\xc8\xcb\xd5\xca\xcd\xd8\xcd\ \xd0\xd9\xce\xd1\xd8\xce\xd1\xd7\xce\xd1\xd7\xce\xd1\xd8\xcf\xd2\ \xdb\xd0\xd3\xdc\xd1\xd3\xde\xd2\xd4\xe0\xd3\xd5\xe0\xd4\xd5\xe1\ \xd5\xd5\xe3\xd6\xd6\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe8\xda\ \xda\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xdd\xda\xed\xdd\xda\ \xee\xde\xdb\xee\xde\xdb\xee\xdf\xdc\xf0\xe0\xdd\xf0\xe2\xdd\xf1\ \xe3\xdd\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\xe6\ \xe0\xf2\xe6\xdf\xf3\xe7\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\ \xf5\xe9\xe3\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf8\ \xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf9\xef\xe6\xf7\xf0\ \xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ \xf9\xf1\xe9\xf9\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf8\ \xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf1\ \xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf8\xf2\xe8\ \xf8\xf1\xe8\xf9\xf1\xe9\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf1\xe9\xf9\ \xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\ \xe8\xf9\xf2\xe8\xf7\xf1\xe7\xf8\xf1\xe8\xf7\xf0\xe8\xf9\xf2\xe8\ \xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe7\xf8\xf2\xe7\xf7\ \xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\ \xe8\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\ \xf9\xf0\xe7\xfa\xf1\xe8\xf9\xf1\xe8\xf9\xf1\xe8\xf9\xf1\xe8\xf7\ \xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf6\xf2\ \xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\ \xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf0\xe6\xf5\xeb\xe2\xf3\ \xe2\xdb\xed\xd9\xd2\xe7\xd0\xcb\xdf\xc6\xc2\xd4\xba\xbb\xc9\xae\ \xb4\xb9\xa0\xae\xb3\x9c\xad\xaf\x9b\xad\xa9\x98\xac\xa4\x96\xab\ \xa1\x95\xab\x9f\x96\xab\xa1\x98\xac\xa1\x99\xad\xa3\x9b\xad\xa4\ \x9c\xad\xa5\x9d\xae\xa5\x9d\xaf\xa7\xa0\xb0\xa8\xa1\xb0\xa8\xa0\ \xb0\xa6\x9f\xb0\xa6\xa0\xb1\xa6\xa0\xb1\xa7\xa2\xb2\xa9\xa4\xb3\ \xa9\xa3\xb2\xab\xa5\xb4\x00\x00\x00\xa1\x93\x9d\x82\x75\x83\x6f\ \x65\x74\x7b\x70\x80\x90\x83\x91\xa2\x94\x9f\xb1\xa3\xae\xbd\xb1\ \xb8\xc6\xba\xc0\xcb\xc0\xc5\xd2\xc7\xca\xd6\xcb\xce\xd8\xcd\xd0\ \xd6\xcd\xd0\xd6\xcd\xd0\xd6\xcd\xd0\xd9\xce\xd1\xda\xcf\xd2\xdc\ \xd1\xd3\xde\xd3\xd5\xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd5\xd6\xe3\xd6\ \xd7\xe4\xd6\xd7\xe6\xd8\xd9\xe6\xd9\xd9\xe7\xda\xd8\xe9\xdb\xd8\ \xe9\xda\xd8\xeb\xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xee\ \xdd\xda\xee\xde\xdb\xee\xe0\xda\xef\xe1\xda\xf0\xe2\xdc\xf0\xe2\ \xdc\xf2\xe4\xde\xf2\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf1\xe5\xdf\ \xf2\xe6\xe0\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xea\xe3\xf6\ \xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\ \xe4\xf7\xee\xe5\xf7\xef\xe6\xf8\xef\xe6\xfa\xf0\xe7\xf8\xf0\xe7\ \xf8\xf0\xe7\xf9\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe8\xf8\ \xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf2\ \xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe8\ \xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf9\xf2\xe9\xf9\xf3\xe9\xf8\ \xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf1\ \xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\ \xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe8\xf8\xf1\xe8\xf8\ \xf0\xe7\xf7\xf1\xe8\xf8\xf0\xe7\xf8\xf0\xe8\xf8\xf1\xe8\xf7\xf0\ \xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf9\xf0\xe7\ \xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\ \xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf0\ \xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf7\xf2\xe9\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf7\xf2\xe9\xf9\xf0\xe6\xf5\xeb\xe1\xf2\xe2\xda\xec\xd7\ \xd0\xe4\xcc\xc8\xda\xc1\xbf\xcd\xb3\xb7\xbc\xa2\xaf\xa8\x92\xaa\ \xa2\x8f\xaa\x9f\x90\xaa\x9d\x90\xa8\x9d\x92\xa9\x9d\x94\xa9\x9f\ \x96\xab\xa1\x98\xac\xa2\x99\xac\xa2\x9a\xac\xa4\x9c\xad\xa5\x9d\ \xae\xa6\x9e\xae\xa6\xa0\xae\xa6\x9f\xae\xa4\x9f\xaf\xa4\x9e\xaf\ \xa4\x9e\xaf\xa5\x9f\xb0\xa6\xa0\xb1\xa7\xa3\xb1\xa8\xa3\xb2\xaa\ \xa5\xb4\x00\x00\x00\xae\xa1\xa8\x99\x8a\x95\x82\x75\x84\x7b\x71\ \x80\x82\x77\x86\x8c\x80\x8f\x9d\x93\xa0\xb0\xa5\xaf\xba\xae\xb7\ \xc3\xb9\xbf\xcc\xc1\xc7\xd3\xc9\xcc\xd6\xcc\xcf\xd5\xcd\xd0\xd6\ \xcd\xd0\xd5\xcc\xcf\xd7\xce\xd1\xd9\xcf\xd2\xdc\xd1\xd4\xdf\xd3\ \xd5\xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd5\xd6\xe3\xd6\xd7\xe4\xd6\xd7\ \xe5\xd7\xd8\xe5\xd8\xd8\xe7\xda\xd7\xe9\xda\xd8\xe9\xda\xd8\xe9\ \xda\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\ \xd8\xee\xde\xd8\xef\xe0\xda\xef\xe1\xdb\xf0\xe2\xdc\xf2\xe4\xde\ \xf2\xe4\xde\xf3\xe4\xde\xf2\xe6\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\ \xe9\xe1\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xe9\xe2\xf5\xeb\xe2\xf6\xeb\ \xe3\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\ \xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf8\xf0\xe6\xf9\ \xf0\xe7\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xf1\xe7\xf8\xf1\xe8\xf9\xf2\ \xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ \xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\ \xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf3\xe8\xf9\xf3\ \xe7\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ \xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf2\xe7\xf8\xf0\xe7\xf9\ \xf1\xe7\xf9\xf0\xe7\xf9\xf1\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xf0\ \xe7\xf9\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf0\xe7\ \xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\ \xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\ \xe6\xf9\xef\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\ \xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\ \xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf3\xea\xf8\xf2\ \xe9\xf8\xf0\xe7\xf6\xeb\xe1\xf1\xe0\xd8\xea\xd5\xcf\xe1\xca\xc6\ \xd6\xbe\xbd\xc8\xb0\xb5\xb6\x9e\xae\xa1\x8f\xa9\x9a\x8b\xa7\x9b\ \x8d\xa8\x9b\x8f\xa9\x9c\x92\xa9\x9d\x94\xaa\x9f\x96\xab\xa0\x97\ \xac\xa2\x99\xad\xa3\x9a\xab\xa3\x9b\xac\xa3\x9c\xac\xa3\x9d\xad\ \xa4\x9f\xae\xa3\x9e\xae\xa2\x9d\xad\xa0\x9c\xac\xa0\x9d\xad\xa1\ \x9e\xae\xa3\x9f\xaf\xa5\xa1\xb1\xa7\xa2\xb2\xa9\xa4\xb3\x00\x00\ \x00\xbd\xaf\xb5\xac\x9d\xa4\x9c\x8d\x96\x8c\x7e\x8a\x81\x75\x85\ \x7a\x6f\x81\x85\x7d\x8d\x9d\x94\xa3\xad\xa3\xaf\xbb\xb1\xb9\xc7\ \xbc\xc2\xd2\xc7\xca\xd5\xca\xcd\xd6\xcc\xcf\xd5\xcc\xcf\xd5\xcc\ \xcf\xd7\xce\xd1\xd8\xcf\xd2\xdc\xd2\xd4\xde\xd2\xd4\xe1\xd4\xd6\ \xe2\xd5\xd7\xe2\xd5\xd6\xe3\xd7\xd7\xe4\xd7\xd7\xe5\xd7\xd8\xe5\ \xd8\xd8\xe7\xd9\xd8\xe7\xda\xd8\xe8\xd9\xd7\xe9\xda\xd7\xeb\xda\ \xd7\xec\xda\xd7\xed\xdc\xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\xd9\ \xef\xdf\xd9\xf0\xe1\xdb\xf0\xe2\xdc\xf2\xe4\xde\xf2\xe4\xde\xf2\ \xe4\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\xf4\xe8\ \xe1\xf4\xe9\xe2\xf4\xe9\xe1\xf5\xea\xe2\xf5\xea\xe2\xf5\xeb\xe3\ \xf6\xeb\xe3\xf6\xec\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf8\ \xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\xe7\xf8\xef\xe6\xf8\xef\ \xe5\xf9\xf0\xe6\xfa\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ \xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\ \xf2\xe9\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf2\ \xe8\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf1\xe8\ \xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf3\xe7\xf9\xf3\xe7\xf9\xf2\xe8\xf8\ \xf2\xe8\xf8\xf2\xe6\xf8\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf9\xf0\ \xe7\xf9\xf0\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\xe6\xf9\xf0\xe7\ \xf9\xf0\xe7\xf7\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf8\ \xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ \xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ \xf8\xef\xe6\xf8\xf0\xe7\xf9\xf1\xe8\xf7\xf0\xe7\xf7\xf0\xe7\xf8\ \xf1\xe8\xf8\xf2\xe9\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ \xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf0\xe7\ \xf5\xe8\xe0\xf0\xde\xd7\xe8\xd3\xce\xe0\xc9\xc5\xd5\xbd\xbd\xc8\ \xb1\xb5\xb7\xa2\xb0\xa7\x96\xab\x9e\x8f\xa9\x9d\x90\xa9\x9e\x91\ \xa9\x9f\x93\xaa\xa0\x96\xaa\xa0\x96\xab\xa1\x98\xac\xa2\x99\xac\ \xa2\x9a\xac\xa2\x99\xac\xa1\x9a\xab\xa1\x9b\xac\xa0\x9b\xac\xa0\ \x9c\xac\x9f\x9b\xab\x9c\x9a\xab\x9d\x9a\xac\x9d\x9b\xad\x9f\x9d\ \xae\xa3\x9f\xaf\xa4\xa1\xb1\xa8\xa3\xb2\x00\x00\x00\xc9\xbb\xbf\ \xbc\xae\xb3\xaf\xa1\xa7\xa1\x91\x9a\x8d\x7d\x89\x78\x6b\x7b\x75\ \x6b\x7b\x88\x81\x91\x9f\x97\xa4\xb3\xa9\xb3\xc3\xb8\xbe\xd0\xc5\ \xc8\xd4\xca\xcd\xd5\xca\xcd\xd6\xca\xcd\xd5\xcb\xce\xd5\xcc\xcf\ \xd9\xcf\xd2\xdc\xd1\xd3\xdd\xd2\xd4\xe0\xd4\xd6\xe2\xd4\xd7\xe1\ \xd5\xd6\xe3\xd6\xd6\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd7\xd9\xe6\xd8\ \xd8\xe7\xd9\xd7\xe8\xda\xd8\xe9\xda\xd8\xe9\xdb\xd8\xea\xdb\xd8\ \xec\xdc\xd9\xee\xdd\xda\xee\xdd\xda\xee\xdd\xda\xef\xe0\xda\xef\ \xe1\xdb\xf0\xe2\xdc\xf1\xe3\xdd\xf2\xe4\xde\xf1\xe3\xdd\xf3\xe5\ \xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe8\xe1\xf4\xe9\xe2\xf4\xe8\xe1\ \xf4\xe8\xe2\xf3\xe8\xe1\xf4\xe8\xe1\xf4\xe9\xe1\xf5\xea\xe2\xf6\ \xec\xe4\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\ \xe5\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe6\xf9\xf0\xe6\xf8\xef\xe6\ \xf9\xf0\xe6\xf8\xf0\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ \xf2\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf3\ \xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\ \xf9\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf1\xe9\xf8\ \xf2\xe7\xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf1\xe7\xf9\xf0\ \xe7\xf9\xf1\xe8\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\ \xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\ \xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xef\xe6\xf7\xee\ \xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\ \xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf9\ \xef\xe6\xf8\xef\xe6\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf1\xe7\xf9\xf1\ \xe8\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf1\xe7\xf7\xed\xe4\xf4\xe6\xdf\xee\ \xdb\xd4\xe7\xd1\xcc\xde\xc7\xc4\xd4\xbd\xbd\xc8\xb1\xb6\xb9\xa4\ \xb1\xac\x99\xad\xa3\x94\xab\xa1\x94\xab\xa1\x95\xab\xa2\x96\xab\ \xa2\x97\xab\xa3\x98\xac\xa2\x9a\xab\xa2\x9a\xab\xa1\x9a\xab\xa0\ \x99\xaa\x9e\x98\xa9\x9d\x98\xa9\x9c\x98\xaa\x9b\x98\xa9\x98\x96\ \xa9\x98\x96\xa8\x98\x98\xaa\x9a\x98\xab\x9b\x99\xac\x9e\x9d\xae\ \xa2\x9f\xaf\xa5\xa2\xb1\x00\x00\x00\xd1\xc4\xc6\xc9\xbb\xbe\xbe\ \xb0\xb4\xb2\xa4\xaa\xa1\x90\x99\x89\x7a\x86\x7d\x70\x7e\x85\x7c\ \x8a\x96\x8e\x9b\xad\xa3\xad\xbf\xb4\xbb\xcd\xc2\xc5\xd5\xca\xcd\ \xd6\xcb\xce\xd5\xca\xcd\xd6\xcb\xce\xd5\xcc\xcf\xd9\xce\xd1\xdb\ \xd0\xd2\xdc\xd1\xd3\xdf\xd3\xd5\xe1\xd4\xd6\xe1\xd5\xd6\xe2\xd6\ \xd5\xe3\xd6\xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd7\ \xe7\xd9\xd7\xe8\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdd\xda\xec\ \xdc\xda\xed\xdc\xd9\xee\xde\xdb\xef\xe0\xdc\xf0\xe1\xdc\xef\xe1\ \xdb\xf0\xe2\xdc\xf0\xe2\xdc\xf1\xe3\xdd\xf2\xe5\xdf\xf1\xe5\xdf\ \xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf3\ \xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf5\xe9\xe2\xf5\xea\xe2\xf5\xec\ \xe3\xf5\xec\xe3\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe6\ \xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe5\xf8\xef\xe6\xf9\xf0\xe6\xf9\ \xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\ \xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe9\xf9\xf2\xe9\ \xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf3\xe7\xf9\ \xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf1\xe8\xf8\xf2\ \xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf9\xf0\xe8\xf8\xf0\xe7\xf8\xef\xe6\ \xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\ \xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xee\xe5\xf8\xef\xe6\xf8\xee\ \xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\ \xf5\xed\xe3\xf6\xed\xe4\xf6\xed\xe5\xf6\xee\xe4\xf7\xed\xe5\xf6\ \xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\ \xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\ \xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\xf8\ \xf1\xe8\xf7\xef\xe5\xf5\xeb\xe2\xf2\xe2\xdb\xec\xd8\xd2\xe5\xcf\ \xca\xdc\xc7\xc4\xd2\xbd\xbd\xc8\xb2\xb8\xba\xa7\xb3\xae\x9e\xaf\ \xa7\x99\xad\xa6\x99\xad\xa5\x99\xad\xa5\x99\xad\xa5\x9a\xad\xa4\ \x9a\xac\xa4\x9a\xac\xa2\x9a\xac\xa2\x9a\xaa\x9f\x98\xaa\x9d\x97\ \xa9\x9a\x96\xa9\x98\x95\xa8\x95\x94\xa7\x92\x92\xa6\x90\x91\xa4\ \x92\x93\xa7\x94\x96\xa8\x97\x97\xaa\x9a\x9a\xac\x9e\x9d\xad\xa3\ \xa0\xb0\x00\x00\x00\xd9\xcc\xce\xd3\xc6\xc8\xcb\xbd\xc0\xc0\xb2\ \xb5\xb2\xa3\xa8\x9f\x90\x97\x90\x81\x8b\x8e\x82\x90\x93\x8a\x98\ \xa6\x9d\xa8\xba\xae\xb5\xc9\xbe\xc1\xd2\xc7\xca\xd6\xcb\xce\xd6\ \xca\xcd\xd6\xcb\xce\xd5\xcc\xcf\xd7\xce\xd1\xda\xcf\xd2\xdb\xd0\ \xd3\xdc\xd1\xd3\xdf\xd3\xd5\xe0\xd3\xd6\xe1\xd4\xd6\xe2\xd6\xd6\ \xe4\xd6\xd7\xe4\xd7\xd7\xe6\xd8\xd8\xe5\xd8\xd7\xe6\xd9\xd7\xe8\ \xda\xd8\xe8\xdb\xd9\xea\xdc\xda\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\ \xda\xed\xde\xdb\xef\xe0\xdc\xef\xe1\xdc\xf0\xe2\xdc\xf0\xe2\xdc\ \xf0\xe2\xdc\xf0\xe3\xdd\xf1\xe4\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\ \xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\ \xe0\xf3\xe7\xe1\xf4\xe8\xe2\xf5\xe9\xe3\xf5\xeb\xe2\xf6\xec\xe4\ \xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf9\xf0\xe7\xf9\ \xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf8\xf0\ \xe7\xf8\xf1\xe8\xf9\xf3\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\ \xf8\xf3\xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\ \xf2\xe8\xf9\xf3\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\ \xe9\xf9\xf3\xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe7\ \xf8\xf1\xe8\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\ \xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf6\xed\xe4\xf7\xee\xe5\xf6\xed\ \xe4\xf7\xed\xe5\xf7\xee\xe5\xf7\xee\xe6\xf7\xed\xe6\xf7\xed\xe5\ \xf7\xed\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xed\xe4\xf5\xec\xe4\xf6\ \xec\xe5\xf6\xec\xe5\xf6\xed\xe4\xf6\xed\xe5\xf7\xee\xe5\xf7\xee\ \xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ \xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf7\xf2\xe9\xf8\ \xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf0\xe6\xf6\xec\ \xe2\xf3\xe6\xdd\xf0\xde\xd7\xe9\xd5\xcf\xe1\xcd\xc8\xd9\xc4\xc2\ \xd0\xbb\xbd\xc6\xb2\xb8\xba\xa9\xb5\xb0\xa1\xb1\xab\x9e\xb0\xaa\ \x9e\xaf\xa9\x9d\xaf\xa9\x9e\xae\xa8\x9d\xad\xa7\x9d\xad\xa6\x9c\ \xac\xa3\x9b\xac\xa1\x99\xab\x9d\x97\xaa\x9a\x95\xa8\x95\x93\xa6\ \x92\x91\xa5\x8d\x8e\xa3\x88\x8b\xa2\x87\x8c\xa1\x88\x8e\xa3\x8c\ \x91\xa5\x8f\x93\xa7\x93\x95\xa9\x99\x9a\xab\x9f\x9e\xae\x00\x00\ \x00\xdc\xd1\xd3\xda\xcd\xcf\xd4\xc7\xc9\xcb\xbd\xc0\xc0\xb1\xb4\ \xb1\xa1\xa5\xa3\x91\x99\x9a\x8b\x96\x95\x8b\x97\x9e\x96\xa2\xb1\ \xa8\xb1\xc3\xb8\xbd\xcf\xc4\xc7\xd5\xca\xcd\xd4\xcb\xce\xd4\xcb\ \xce\xd5\xcc\xcf\xd6\xcd\xd0\xd8\xcf\xd2\xd9\xcf\xd2\xdc\xd1\xd4\ \xdd\xd2\xd3\xdf\xd2\xd4\xe0\xd3\xd4\xe1\xd5\xd5\xe3\xd6\xd6\xe4\ \xd7\xd7\xe5\xd7\xd8\xe5\xd7\xd9\xe6\xd8\xd8\xe8\xda\xda\xe8\xdb\ \xd9\xe9\xdc\xda\xea\xdd\xdb\xec\xde\xdc\xed\xde\xdb\xed\xde\xdb\ \xef\xe0\xdd\xef\xe1\xdd\xf0\xe2\xdd\xf0\xe2\xdc\xf1\xe3\xdd\xf0\ \xe2\xdc\xf1\xe4\xde\xf0\xe5\xdf\xf1\xe5\xdf\xf1\xe5\xdf\xf3\xe7\ \xe1\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\ \xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe3\xf5\xea\xe2\xf6\xec\xe4\xf6\ \xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\ \xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf1\xe8\xf9\xf1\xe7\xf8\xf2\xe8\ \xf9\xf2\xe9\xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf3\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\ \xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe7\xf9\xf2\xe8\ \xf9\xf1\xe9\xf8\xf2\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf9\xf0\xe7\xf7\ \xee\xe5\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ \xe5\xf7\xee\xe5\xf5\xec\xe4\xf6\xec\xe4\xf6\xec\xe4\xf6\xec\xe5\ \xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\ \xec\xe5\xf6\xec\xe5\xf5\xec\xe4\xf6\xec\xe3\xf6\xec\xe5\xf6\xeb\ \xe5\xf6\xec\xe5\xf6\xeb\xe4\xf6\xec\xe3\xf5\xec\xe3\xf7\xee\xe5\ \xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\ \xef\xe6\xf7\xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\ \xea\xf8\xf2\xe9\xf8\xf1\xe7\xf6\xed\xe3\xf5\xe8\xe0\xf1\xe1\xda\ \xec\xd9\xd2\xe6\xd2\xcc\xdd\xc9\xc6\xd5\xc1\xc0\xcc\xb7\xba\xc1\ \xb0\xb7\xb8\xa9\xb4\xb2\xa3\xb1\xaf\xa2\xb1\xaf\xa2\xb1\xac\xa1\ \xb0\xab\xa1\xaf\xab\xa1\xae\xa9\x9e\xae\xa7\x9d\xad\xa4\x9b\xac\ \xa0\x99\xab\x9c\x96\xa9\x97\x94\xa7\x91\x90\xa5\x8b\x8d\xa2\x84\ \x89\xa0\x7e\x86\x9d\x7c\x86\x9e\x7d\x87\x9e\x80\x8a\xa0\x85\x8d\ \xa2\x8c\x90\xa5\x92\x94\xa8\x9a\x9a\xab\x00\x00\x00\xdc\xd1\xd3\ \xdc\xd0\xd2\xd9\xcd\xcf\xd2\xc5\xc7\xc9\xbb\xbd\xbe\xad\xb1\xb0\ \x9d\xa1\xa6\x94\x9a\x9e\x90\x9a\x9c\x92\x9e\xab\xa3\xae\xbd\xb3\ \xbb\xc9\xc0\xc6\xd2\xc7\xca\xd4\xca\xcd\xd4\xcb\xce\xd4\xcb\xce\ \xd5\xcd\xd0\xd7\xce\xd1\xd7\xce\xd1\xd9\xcf\xd2\xdc\xd1\xd3\xdd\ \xd1\xd3\xdf\xd3\xd5\xe1\xd4\xd6\xe2\xd6\xd6\xe3\xd5\xd6\xe4\xd7\ \xd8\xe5\xd8\xd8\xe5\xd8\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdc\xdb\ \xea\xdd\xdb\xeb\xdd\xdb\xec\xde\xdc\xed\xdf\xdd\xee\xe0\xdd\xef\ \xe1\xde\xf0\xe1\xdd\xf0\xe3\xdc\xf0\xe2\xdc\xf1\xe2\xdc\xf0\xe2\ \xdc\xf0\xe4\xde\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\ \xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf4\xe8\xe2\xf4\ \xe8\xe2\xf5\xe9\xe2\xf4\xea\xe4\xf5\xeb\xe4\xf6\xed\xe4\xf7\xee\ \xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\ \xf8\xef\xe6\xf9\xf0\xe7\xf9\xf1\xe7\xf8\xf1\xe8\xf9\xf1\xe8\xf9\ \xf1\xe9\xf9\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\ \xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\ \xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf3\xe8\xf9\xf2\xe9\xf9\ \xf1\xe8\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xee\xe6\xf7\xee\xe5\xf6\xed\ \xe4\xf7\xed\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xec\xe4\xf5\xec\xe4\ \xf5\xeb\xe4\xf5\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf4\ \xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xe9\xe3\xf5\xeb\ \xe4\xf5\xeb\xe4\xf4\xeb\xe3\xf5\xeb\xe3\xf5\xea\xe3\xf5\xeb\xe4\ \xf5\xeb\xe4\xf5\xea\xe3\xf6\xeb\xe3\xf5\xeb\xe3\xf6\xec\xe3\xf7\ \xec\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\ \xe6\xf8\xf1\xe8\xf9\xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe8\ \xf8\xee\xe5\xf5\xeb\xe1\xf2\xe4\xdc\xee\xdc\xd5\xe8\xd5\xce\xe0\ \xcd\xc8\xd8\xc4\xc2\xcf\xbb\xbd\xc4\xb3\xb8\xbc\xac\xb6\xb5\xa8\ \xb4\xb2\xa5\xb3\xb2\xa5\xb3\xb0\xa4\xb2\xaf\xa4\xb1\xae\xa4\xb1\ \xad\xa3\xaf\xab\xa1\xaf\xa8\x9e\xae\xa5\x9c\xad\x9f\x99\xaa\x99\ \x95\xa8\x93\x92\xa5\x8c\x8e\xa3\x82\x87\x9f\x7a\x83\x9c\x73\x80\ \x9a\x70\x7e\x98\x71\x80\x9a\x74\x83\x9b\x7b\x86\x9d\x83\x8b\xa1\ \x8b\x90\xa5\x95\x96\xa9\x00\x00\x00\xdd\xd2\xd4\xde\xd2\xd4\xdc\ \xd0\xd1\xd8\xcb\xcd\xd1\xc3\xc5\xc8\xb7\xb9\xbc\xa8\xaa\xb0\x9c\ \xa0\xa7\x97\x9d\xa1\x94\x9e\xa5\x9e\xaa\xb6\xaf\xb8\xc4\xbb\xc2\ \xce\xc4\xc9\xd2\xc9\xcc\xd3\xc9\xce\xd4\xca\xcf\xd5\xcb\xd0\xd6\ \xcd\xd0\xd7\xce\xd1\xd7\xce\xd2\xd9\xcf\xd2\xdc\xd1\xd3\xdd\xd2\ \xd4\xe0\xd3\xd5\xe1\xd5\xd5\xe2\xd6\xd6\xe3\xd6\xd7\xe4\xd8\xd7\ \xe5\xd8\xd8\xe6\xd9\xda\xe8\xda\xdb\xe9\xdc\xdb\xea\xdd\xdb\xea\ \xdd\xdb\xeb\xde\xdc\xec\xdf\xdc\xee\xe0\xdd\xee\xe1\xde\xef\xe2\ \xde\xf0\xe2\xdd\xf0\xe3\xdd\xf0\xe3\xdd\xf1\xe3\xdd\xf1\xe4\xde\ \xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf2\ \xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf4\xe8\xe2\xf5\xe9\xe3\xf4\xe8\ \xe2\xf4\xe9\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xee\xe5\xf8\xef\xe6\ \xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe7\xf8\xf0\xe6\xf9\ \xf0\xe8\xf9\xf1\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\ \xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ \xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf9\ \xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe8\xf8\xf2\xe7\xf8\xf0\xe8\xf9\xf0\ \xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xeb\xe4\ \xf5\xeb\xe5\xf5\xeb\xe3\xf5\xea\xe4\xf4\xe9\xe3\xf4\xe9\xe2\xf4\ \xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf3\xe9\xe2\xf4\xe9\xe2\xf4\xe8\ \xe2\xf3\xe9\xe2\xf4\xe9\xe3\xf4\xe9\xe3\xf4\xea\xe3\xf5\xeb\xe4\ \xf5\xea\xe4\xf5\xe9\xe3\xf5\xea\xe3\xf5\xe9\xe3\xf5\xe9\xe3\xf5\ \xe9\xe3\xf4\xe9\xe3\xf5\xea\xe2\xf5\xeb\xe2\xf6\xeb\xe3\xf7\xec\ \xe4\xf6\xec\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf1\xe8\ \xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf1\xe7\xf7\xed\xe3\xf4\ \xe8\xdf\xf1\xe0\xd8\xeb\xd8\xd2\xe4\xd0\xcb\xdc\xc7\xc4\xd2\xbe\ \xbe\xc6\xb5\xb9\xbc\xad\xb6\xb7\xa9\xb5\xb4\xa8\xb4\xb2\xa6\xb2\ \xb2\xa5\xb3\xb2\xa5\xb2\xb0\xa5\xb2\xb0\xa4\xb1\xae\xa4\xb1\xac\ \xa2\xaf\xaa\x9f\xaf\xa5\x9d\xad\x9f\x99\xaa\x99\x95\xa7\x92\x91\ \xa5\x89\x8c\xa1\x7d\x86\x9d\x73\x80\x9a\x6b\x7c\x97\x65\x79\x94\ \x65\x7a\x95\x68\x7b\x96\x71\x80\x99\x7c\x86\x9d\x87\x8d\xa3\x92\ \x95\xa8\x00\x00\x00\xde\xd3\xd5\xde\xd2\xd4\xdf\xd1\xd4\xdc\xd0\ \xd0\xd7\xca\xca\xd0\xc0\xc1\xc6\xb3\xb3\xb9\xa4\xa5\xb0\x9c\x9f\ \xa8\x99\xa1\xa4\x9a\xa5\xaf\xa7\xb2\xbd\xb5\xbd\xc9\xc0\xc6\xd0\ \xc7\xcc\xd2\xc8\xce\xd3\xc9\xce\xd4\xca\xcf\xd5\xcb\xd1\xd6\xcc\ \xd1\xd6\xcd\xd1\xd7\xce\xd2\xd9\xcf\xd3\xdc\xd2\xd4\xdd\xd2\xd4\ \xdf\xd3\xd5\xe1\xd5\xd5\xe2\xd6\xd7\xe3\xd6\xd7\xe4\xd8\xd8\xe6\ \xda\xda\xe7\xda\xdb\xe8\xdb\xdb\xe9\xdc\xda\xea\xdd\xdb\xeb\xde\ \xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe2\xdf\xee\xe2\xde\xf0\xe3\xe0\ \xf0\xe3\xde\xf0\xe4\xde\xf1\xe3\xdd\xf1\xe4\xde\xf1\xe5\xdf\xf1\ \xe5\xdf\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\ \xe1\xf3\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\xe9\xe3\xf5\xea\xe3\ \xf5\xeb\xe5\xf6\xed\xe5\xf6\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\xf9\ \xf0\xe7\xf8\xef\xe6\xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xf1\ \xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ \xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\ \xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf3\xe8\xf8\xf2\xe9\xf9\xf2\ \xe8\xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf1\xe7\xf9\xef\xe7\xf8\xef\xe6\ \xf7\xee\xe5\xf5\xed\xe4\xf6\xec\xe4\xf6\xeb\xe3\xf4\xea\xe3\xf4\ \xea\xe3\xf4\xe9\xe3\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf3\xe8\ \xe3\xf3\xe8\xe3\xf3\xe7\xe3\xf3\xe7\xe3\xf3\xe7\xe1\xf3\xe7\xe1\ \xf3\xe7\xe1\xf4\xe9\xe2\xf4\xea\xe3\xf3\xea\xe3\xf4\xe9\xe3\xf4\ \xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf3\xe8\ \xe1\xf5\xe9\xe3\xf4\xe9\xe1\xf5\xe9\xe2\xf6\xeb\xe3\xf7\xec\xe4\ \xf6\xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf8\ \xf2\xe9\xf7\xf1\xe8\xf8\xf0\xe7\xf6\xec\xe2\xf3\xe5\xdd\xef\xdd\ \xd6\xe9\xd4\xcf\xe1\xcc\xc8\xd7\xc3\xc1\xcb\xb9\xbb\xbd\xae\xb6\ \xb7\xa9\xb4\xb5\xa9\xb5\xb4\xa8\xb4\xb3\xa7\xb3\xb3\xa7\xb4\xb2\ \xa7\xb3\xb1\xa5\xb1\xb0\xa5\xb1\xaf\xa5\xb2\xad\xa3\xb0\xab\xa1\ \xaf\xa6\x9e\xad\xa0\x9b\xab\x97\x95\xa7\x8f\x90\xa3\x85\x8a\xa0\ \x77\x82\x9b\x6e\x7d\x97\x65\x78\x94\x5d\x74\x90\x5b\x73\x8e\x60\ \x76\x92\x69\x7b\x96\x77\x83\x9d\x85\x8b\xa2\x90\x93\xa8\x00\x00\ \x00\xe0\xd5\xd7\xe0\xd4\xd6\xe0\xd3\xd5\xdf\xd3\xd3\xdc\xcf\xcf\ \xd6\xc6\xc7\xcd\xbb\xba\xc2\xad\xac\xb7\xa1\xa3\xb0\x9e\xa2\xa8\ \x9c\xa5\xaa\xa2\xad\xb8\xb0\xba\xc3\xbb\xc2\xcd\xc4\xca\xd0\xc6\ \xcc\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\xd4\xca\xd0\xd4\xcb\xd0\ \xd6\xcd\xd2\xd8\xcf\xd2\xd9\xd0\xd3\xdd\xd2\xd4\xde\xd2\xd4\xdf\ \xd3\xd5\xe1\xd5\xd7\xe3\xd6\xd8\xe4\xd7\xd9\xe5\xd9\xda\xe7\xdb\ \xdb\xe8\xdb\xdc\xe9\xdc\xdb\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\ \xed\xe0\xde\xee\xe2\xdf\xef\xe3\xdf\xf0\xe4\xdf\xf0\xe4\xdf\xf1\ \xe5\xdf\xf2\xe6\xe0\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\ \xe1\xf3\xe7\xe1\xf4\xe7\xe1\xf4\xe8\xe2\xf3\xe8\xe2\xf4\xe9\xe2\ \xf5\xe8\xe2\xf5\xe9\xe3\xf4\xea\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\ \xed\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\ \xe7\xf9\xf1\xe8\xfa\xf1\xe8\xf9\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\ \xf8\xf1\xe8\xfa\xf3\xea\xfa\xf2\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf8\ \xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\ \xe9\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf0\xe7\xf9\xf0\xe7\ \xf9\xf0\xe7\xf8\xef\xe7\xf7\xef\xe6\xf7\xee\xe6\xf6\xed\xe5\xf5\ \xec\xe4\xf4\xea\xe4\xf4\xea\xe4\xf4\xea\xe4\xf3\xe9\xe3\xf3\xe9\ \xe2\xf3\xe7\xe1\xf2\xe7\xe3\xf3\xe7\xe3\xf3\xe7\xe3\xf2\xe6\xe2\ \xf1\xe5\xe1\xf1\xe5\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe1\xf2\ \xe7\xe1\xf4\xe9\xe2\xf4\xe9\xe2\xf3\xe9\xe2\xf3\xe8\xe2\xf4\xe7\ \xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe7\xe2\xf3\xe7\xe1\ \xf3\xe9\xe0\xf4\xe9\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf7\xec\xe4\xf7\ \xed\xe4\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf1\ \xe7\xf8\xef\xe5\xf6\xeb\xe1\xf2\xe4\xdb\xed\xda\xd3\xe5\xd1\xcc\ \xdd\xc8\xc5\xd2\xbf\xbe\xc4\xb3\xb9\xb9\xaa\xb5\xb6\xa9\xb5\xb5\ \xa9\xb5\xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb3\xb3\xa7\ \xb3\xb0\xa6\xb2\xb0\xa6\xb2\xaf\xa5\xb2\xab\xa2\xb0\xa9\xa0\xaf\ \xa3\x9c\xac\x9a\x97\xa9\x8e\x8f\xa3\x82\x87\x9f\x74\x80\x9b\x69\ \x79\x95\x61\x75\x91\x59\x71\x8e\x55\x70\x8c\x5b\x72\x8e\x66\x79\ \x94\x74\x80\x9b\x82\x8a\xa1\x8f\x92\xa6\x00\x00\x00\xe1\xd8\xd9\ \xe0\xd5\xd7\xe0\xd4\xd6\xe0\xd3\xd4\xde\xd1\xd2\xda\xcb\xcc\xd2\ \xc2\xc3\xc8\xb5\xb4\xbc\xa7\xa6\xb4\xa0\xa2\xae\x9f\xa6\xaa\xa0\ \xab\xb4\xac\xb7\xbe\xb7\xc0\xc9\xc1\xc7\xd0\xc6\xcc\xd1\xc7\xcd\ \xd1\xc8\xce\xd2\xc8\xce\xd2\xc9\xcf\xd1\xca\xcf\xd4\xcc\xd2\xd6\ \xce\xd2\xd9\xd0\xd2\xda\xd1\xd4\xdc\xd2\xd4\xde\xd3\xd5\xdf\xd4\ \xd6\xe2\xd6\xd8\xe4\xd7\xd9\xe6\xda\xd9\xe6\xda\xda\xe8\xdb\xdc\ \xe9\xdc\xda\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xee\xe1\xdf\xef\ \xe3\xdf\xef\xe3\xdf\xf0\xe4\xe0\xf1\xe5\xe0\xf1\xe5\xdf\xf2\xe6\ \xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe8\xe1\xf4\xe8\xe2\ \xf3\xe8\xe2\xf3\xe9\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xe9\xe3\xf5\ \xea\xe3\xf5\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe5\xf6\xed\ \xe4\xf8\xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf8\xf0\xe7\xf9\xf1\xe8\ \xf9\xf1\xe8\xf7\xf0\xe7\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\ \xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ \xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf2\xe8\ \xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf1\xe7\xf8\xf0\xe7\xf9\xf0\xe7\xf8\ \xef\xe6\xf8\xee\xe6\xf7\xed\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xea\ \xe3\xf4\xe9\xe4\xf3\xe8\xe5\xf3\xe8\xe4\xf2\xe7\xe3\xf3\xe7\xe3\ \xf2\xe6\xe2\xf1\xe6\xe2\xf2\xe6\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xf0\ \xe3\xe0\xf0\xe3\xdf\xf1\xe3\xdf\xf1\xe4\xe1\xf2\xe6\xe0\xf3\xe7\ \xe1\xf3\xe7\xe1\xf4\xe8\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf1\xe5\xdf\ \xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe8\xe2\xf4\xe8\xe1\xf4\ \xe9\xe1\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xec\xe4\xf7\xed\xe4\xf8\xef\ \xe6\xf8\xf0\xe7\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf0\xe7\xf7\xef\xe5\ \xf5\xea\xe0\xf3\xe2\xdb\xed\xd9\xd2\xe5\xd1\xcb\xdb\xc7\xc4\xd0\ \xbd\xbd\xc2\xb2\xb8\xb8\xaa\xb6\xb7\xaa\xb5\xb6\xaa\xb6\xb5\xa9\ \xb5\xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb4\xb3\xa7\xb3\ \xb0\xa6\xb3\xae\xa4\xb1\xad\xa4\xb1\xaa\xa2\xb0\xa4\x9e\xad\x9c\ \x97\xa9\x90\x90\xa4\x83\x87\xa0\x75\x80\x9b\x6b\x79\x95\x62\x75\ \x92\x59\x70\x8e\x57\x6e\x8d\x5c\x71\x8e\x68\x78\x95\x74\x7f\x9b\ \x82\x88\xa1\x8e\x91\xa5\x00\x00\x00\xe0\xd8\xda\xe1\xd6\xd8\xe1\ \xd5\xd7\xe0\xd3\xd5\xdf\xd2\xd2\xdc\xcd\xce\xd5\xc5\xc6\xcc\xba\ \xba\xc1\xad\xad\xb6\xa2\xa3\xb1\xa0\xa5\xac\x9f\xa8\xaf\xa6\xb0\ \xbb\xb3\xbc\xc5\xbe\xc3\xcf\xc5\xc9\xd1\xc8\xcc\xd2\xc8\xcd\xd2\ \xc8\xcf\xd2\xc9\xcf\xd3\xca\xcf\xd4\xcc\xd1\xd6\xcd\xd3\xd9\xd0\ \xd3\xda\xd1\xd4\xdc\xd1\xd4\xde\xd4\xd6\xe0\xd5\xd7\xe1\xd6\xd8\ \xe3\xd7\xd9\xe6\xd9\xd9\xe6\xda\xda\xe7\xda\xdb\xe9\xdb\xdb\xea\ \xdd\xdb\xeb\xde\xdc\xed\xe0\xde\xef\xe2\xdf\xef\xe4\xe0\xf0\xe4\ \xe0\xf0\xe4\xe0\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\ \xf3\xe7\xe1\xf3\xe8\xe2\xf3\xe9\xe2\xf4\xe9\xe2\xf4\xea\xe3\xf4\ \xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\ \xe4\xf6\xec\xe5\xf6\xed\xe5\xf6\xed\xe4\xf7\xee\xe5\xf7\xef\xe5\ \xf8\xef\xe6\xf9\xef\xe6\xf9\xf1\xe8\xf9\xf0\xe7\xf8\xf0\xe7\xf8\ \xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf2\ \xe8\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\ \xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf1\xe8\xf8\xf2\xe8\xf7\ \xf1\xe7\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe5\xf7\xed\ \xe6\xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf3\xe8\xe4\xf3\xe8\xe4\ \xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe5\xe3\xf1\ \xe4\xe1\xf0\xe3\xe1\xf0\xe4\xe0\xef\xe3\xe0\xef\xe3\xdf\xf0\xe2\ \xdf\xf0\xe1\xdf\xf0\xe2\xdf\xf1\xe5\xe1\xf2\xe6\xe1\xf3\xe7\xe1\ \xf2\xe6\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf3\ \xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf4\xe9\xe1\xf5\xea\ \xe2\xf6\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf9\xf0\xe7\ \xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe6\xf7\xee\xe4\xf5\xea\xe0\xf2\ \xe2\xda\xed\xd9\xd2\xe4\xd1\xcb\xdd\xc8\xc5\xd2\xbe\xbe\xc3\xb2\ \xb8\xb9\xab\xb5\xb8\xaa\xb5\xb6\xaa\xb5\xb5\xa9\xb5\xb6\xaa\xb6\ \xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb3\xb2\xa7\xb3\xaf\ \xa5\xb2\xae\xa4\xb1\xaa\xa1\xb0\xa4\x9e\xae\x9b\x97\xaa\x90\x90\ \xa4\x84\x88\xa1\x7a\x81\x9d\x71\x7d\x99\x68\x77\x95\x60\x73\x90\ \x60\x72\x90\x64\x74\x92\x6d\x7a\x96\x79\x81\x9c\x84\x88\xa1\x8f\ \x90\xa6\x00\x00\x00\xe1\xd7\xd9\xe1\xd6\xd8\xe0\xd4\xd6\xe0\xd3\ \xd5\xde\xd1\xd2\xdc\xce\xcf\xd7\xc8\xc9\xd0\xc0\xbf\xc7\xb3\xb3\ \xba\xa6\xa6\xb3\x9f\xa3\xac\x9f\xa5\xaa\xa0\xab\xb5\xad\xb7\xc1\ \xb9\xc0\xcc\xc2\xc7\xd2\xc8\xcb\xd2\xc9\xcc\xd2\xc9\xcd\xd3\xc9\ \xcd\xd4\xcb\xd1\xd6\xcc\xd1\xd7\xcd\xd2\xd9\xd0\xd3\xda\xd0\xd3\ \xdd\xd2\xd5\xde\xd3\xd6\xe0\xd5\xd7\xe1\xd6\xd8\xe2\xd7\xd9\xe5\ \xd9\xd9\xe5\xd9\xd9\xe6\xda\xda\xe9\xdb\xdb\xea\xdd\xdb\xec\xdf\ \xdd\xee\xe1\xdf\xef\xe2\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf2\xe6\xe0\ \xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe9\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\ \xe9\xe2\xf5\xeb\xe3\xf5\xeb\xe4\xf5\xec\xe4\xf6\xec\xe5\xf6\xec\ \xe5\xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\xf7\xed\xe6\xf7\xee\xe6\ \xf7\xee\xe4\xf6\xed\xe4\xf6\xee\xe4\xf8\xee\xe6\xf9\xf0\xe7\xf9\ \xf0\xe7\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf1\ \xe8\xf8\xf1\xe8\xfa\xf2\xe9\xf8\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\ \xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf8\xf1\xe8\xf8\xf2\xe7\xf7\xf1\xe8\xf8\xf0\xe7\xf8\xef\ \xe6\xf8\xef\xe6\xf8\xef\xe6\xf6\xec\xe5\xf6\xec\xe5\xf5\xeb\xe4\ \xf4\xea\xe3\xf2\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\ \xe5\xe1\xf0\xe4\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xef\xe3\xe0\xee\xe2\ \xdf\xee\xe1\xe0\xee\xe1\xdf\xee\xe1\xde\xee\xdf\xdd\xef\xe0\xdd\ \xef\xe1\xdd\xef\xe2\xdf\xf1\xe5\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xf0\ \xe4\xdf\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe6\ \xe1\xf3\xe7\xe1\xf4\xe8\xe1\xf4\xe9\xe1\xf5\xea\xe2\xf7\xec\xe4\ \xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\ \xf0\xe6\xf8\xef\xe5\xf7\xee\xe4\xf5\xea\xe0\xf2\xe3\xdc\xed\xda\ \xd4\xe7\xd3\xcd\xde\xca\xc5\xd5\xc1\xc0\xc7\xb6\xba\xbd\xae\xb6\ \xb9\xaa\xb6\xb8\xab\xb5\xb7\xab\xb7\xb5\xa9\xb5\xb4\xa8\xb4\xb5\ \xa9\xb5\xb3\xa7\xb3\xb3\xa7\xb3\xb2\xa7\xb2\xaf\xa5\xb2\xae\xa4\ \xb1\xaa\xa1\xb0\xa4\x9d\xad\x9b\x97\xaa\x93\x92\xa6\x8a\x8d\xa3\ \x81\x87\x9f\x7a\x82\x9d\x72\x7d\x99\x6b\x78\x95\x6b\x78\x94\x6f\ \x7a\x97\x77\x7f\x9b\x80\x85\x9e\x88\x8b\xa2\x91\x92\xa6\x00\x00\ \x00\xe1\xd7\xd9\xe1\xd6\xd8\xe1\xd5\xd7\xe0\xd3\xd5\xde\xd2\xd1\ \xdc\xcf\xcf\xd8\xca\xcb\xd3\xc3\xc4\xcb\xba\xb9\xc0\xac\xad\xb5\ \xa2\xa4\xad\x9d\xa3\xa9\x9d\xa7\xae\xa5\xb0\xbd\xb4\xbb\xc8\xbf\ \xc4\xd1\xc7\xca\xd5\xca\xcd\xd4\xca\xcd\xd4\xcb\xce\xd6\xcd\xd0\ \xd7\xce\xd1\xd8\xcf\xd2\xd9\xd1\xd4\xda\xd1\xd4\xdc\xd3\xd6\xde\ \xd4\xd7\xe0\xd5\xd7\xe1\xd6\xd8\xe3\xd7\xd9\xe5\xd9\xda\xe5\xd9\ \xd9\xe7\xda\xda\xe9\xdb\xdb\xea\xdd\xdb\xeb\xde\xdc\xef\xe2\xe0\ \xf1\xe5\xe1\xf1\xe6\xe2\xf2\xe6\xe1\xf3\xe7\xe1\xf3\xe8\xe2\xf4\ \xea\xe3\xf4\xea\xe3\xf5\xeb\xe3\xf5\xeb\xe3\xf6\xeb\xe3\xf5\xeb\ \xe4\xf6\xed\xe4\xf6\xed\xe5\xf7\xed\xe6\xf7\xed\xe6\xf7\xed\xe5\ \xf6\xed\xe5\xf7\xed\xe5\xf7\xee\xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\ \xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf7\xf0\ \xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ \xf9\xf2\xe9\xfa\xf3\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf3\xe9\xf8\ \xf2\xe8\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\ \xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\ \xf7\xee\xe6\xf7\xec\xe5\xf6\xec\xe5\xf5\xeb\xe5\xf4\xe9\xe4\xf3\ \xe8\xe4\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\xe2\xf0\xe3\xe1\xef\xe2\ \xe0\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\ \xee\xe0\xde\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xef\ \xe1\xdd\xef\xe2\xde\xef\xe3\xdf\xef\xe3\xdf\xf0\xe3\xdf\xf0\xe4\ \xe0\xf1\xe5\xe2\xf1\xe6\xdf\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe6\xe1\ \xf3\xe8\xe1\xf4\xe9\xe1\xf5\xeb\xe3\xf6\xec\xe4\xf6\xee\xe5\xf7\ \xee\xe5\xf8\xef\xe6\xf7\xee\xe6\xf8\xef\xe5\xf8\xf0\xe7\xf8\xef\ \xe6\xf7\xee\xe4\xf6\xeb\xe1\xf3\xe5\xdd\xef\xdc\xd6\xe8\xd5\xcf\ \xe2\xce\xc9\xda\xc5\xc3\xd0\xbc\xbd\xc6\xb5\xb9\xbe\xb0\xb7\xba\ \xac\xb6\xb9\xab\xb6\xb7\xaa\xb5\xb6\xa9\xb5\xb5\xa9\xb4\xb4\xa8\ \xb4\xb3\xa7\xb3\xb2\xa6\xb3\xaf\xa6\xb3\xad\xa3\xb0\xaa\xa0\xaf\ \xa4\x9d\xae\x9f\x9a\xac\x99\x95\xa9\x93\x91\xa6\x8c\x8d\xa4\x85\ \x88\xa1\x7e\x83\x9d\x78\x80\x9c\x79\x7f\x9c\x7c\x82\x9d\x83\x86\ \xa0\x89\x8b\xa3\x8f\x90\xa5\x96\x95\xa9\x00\x00\x00\xe1\xd7\xd9\ \xe1\xd6\xd8\xe0\xd5\xd7\xe0\xd3\xd5\xdd\xd1\xd1\xdc\xce\xcf\xd9\ \xcb\xcc\xd5\xc6\xc7\xcf\xbf\xbf\xc5\xb2\xb3\xb9\xa6\xa7\xaf\x9f\ \xa3\xaa\x9c\xa5\xaa\x9f\xaa\xb7\xae\xb6\xc5\xbc\xc1\xd0\xc5\xc8\ \xd4\xc9\xcc\xd6\xcb\xce\xd6\xcb\xce\xd6\xcd\xd0\xd8\xce\xd1\xda\ \xd0\xd3\xdb\xd1\xd4\xdc\xd2\xd5\xdd\xd3\xd6\xdf\xd4\xd7\xe1\xd6\ \xd7\xe2\xd6\xd8\xe3\xd7\xd9\xe6\xd9\xda\xe6\xda\xda\xe8\xda\xda\ \xe9\xdb\xdc\xea\xdd\xdb\xec\xdf\xdd\xee\xe2\xdf\xf1\xe5\xe1\xf2\ \xe6\xe1\xf2\xe7\xe1\xf4\xea\xe2\xf4\xeb\xe3\xf4\xeb\xe3\xf5\xec\ \xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\ \xf7\xee\xe5\xf8\xee\xe7\xf7\xee\xe6\xf7\xee\xe5\xf8\xee\xe6\xf7\ \xee\xe5\xf8\xee\xe6\xf7\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\ \xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\ \xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf3\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\ \xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf1\ \xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf0\xe7\ \xf9\xf0\xe7\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf7\xed\xe5\xf6\ \xed\xe6\xf6\xec\xe5\xf5\xea\xe5\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe6\ \xe2\xf1\xe4\xe2\xf0\xe3\xe1\xee\xe1\xdf\xee\xe1\xdf\xee\xe0\xe0\ \xee\xe0\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\xed\ \xdf\xdd\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdd\xee\xdf\xdd\xee\xe0\ \xdd\xef\xe1\xde\xef\xe2\xde\xf0\xe1\xde\xf0\xe2\xdf\xf1\xe5\xe0\ \xf2\xe5\xdf\xf2\xe6\xe0\xf2\xe6\xdf\xf3\xe7\xe1\xf3\xe8\xe0\xf5\ \xea\xe2\xf5\xeb\xe3\xf6\xed\xe4\xf7\xee\xe4\xf7\xee\xe5\xf7\xee\ \xe5\xf8\xef\xe6\xf7\xee\xe5\xf9\xf0\xe7\xf8\xef\xe6\xf7\xef\xe5\ \xf6\xeb\xe1\xf4\xe7\xde\xf1\xdf\xd7\xeb\xd8\xd1\xe5\xd1\xcb\xde\ \xca\xc6\xd7\xc3\xc1\xd1\xbd\xbe\xc9\xb7\xba\xc3\xb3\xb8\xbf\xaf\ \xb7\xbb\xac\xb6\xb9\xaa\xb5\xb7\xa9\xb5\xb6\xa8\xb4\xb4\xa8\xb3\ \xb2\xa6\xb3\xb0\xa4\xb2\xae\xa3\xb1\xab\xa0\xb0\xa8\x9e\xae\xa3\ \x9c\xad\x9f\x9a\xac\x9a\x97\xaa\x94\x93\xa7\x90\x8e\xa5\x89\x8a\ \xa2\x84\x87\xa0\x85\x87\xa1\x88\x89\xa2\x8d\x8d\xa4\x91\x91\xa7\ \x96\x94\xa9\x9b\x98\xac\x00\x00\x00\xe2\xd7\xd9\xe1\xd6\xd8\xe0\ \xd5\xd7\xe0\xd3\xd5\xde\xd1\xd1\xdc\xce\xcf\xdb\xcd\xce\xd7\xc9\ \xca\xd2\xc2\xc3\xca\xba\xbb\xbf\xad\xae\xb3\xa2\xa6\xab\x9d\xa6\ \xa7\x9d\xa7\xb1\xa8\xb2\xc0\xb6\xbd\xcd\xc1\xc5\xd3\xc8\xcb\xd5\ \xca\xcd\xd6\xcb\xce\xd8\xcd\xcf\xd9\xce\xd1\xdb\xd0\xd3\xde\xd3\ \xd5\xdd\xd2\xd4\xde\xd3\xd5\xdf\xd4\xd6\xe1\xd6\xd8\xe3\xd6\xd8\ \xe4\xd7\xd9\xe6\xda\xda\xe7\xdb\xdb\xe9\xdb\xdc\xea\xdd\xdb\xeb\ \xde\xdc\xee\xdf\xdd\xee\xe2\xde\xf1\xe5\xe1\xf2\xe6\xe0\xf3\xe8\ \xe1\xf4\xea\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xee\xe5\xf7\xee\xe5\ \xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xee\xe6\xf8\ \xef\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ \xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\xf0\xe7\ \xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\ \xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xfa\xf3\ \xea\xfa\xf3\xe9\xf8\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe8\ \xf8\xf1\xe7\xf8\xf0\xe8\xf9\xf1\xe8\xf9\xef\xe6\xf8\xef\xe6\xf7\ \xee\xe5\xf8\xef\xe5\xf7\xee\xe5\xf7\xed\xe6\xf5\xeb\xe4\xf5\xeb\ \xe4\xf4\xea\xe3\xf4\xe9\xe5\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe4\xe2\ \xee\xe1\xdf\xed\xe0\xde\xec\xe0\xdf\xec\xde\xdf\xec\xdf\xe0\xec\ \xdf\xdf\xed\xde\xdf\xec\xde\xdd\xec\xde\xdc\xed\xdf\xdd\xec\xdd\ \xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdd\ \xee\xdf\xde\xef\xe0\xdd\xf0\xe2\xdf\xef\xe3\xde\xf1\xe5\xde\xf1\ \xe5\xdf\xf1\xe5\xdf\xf3\xe7\xe1\xf4\xe8\xe2\xf4\xea\xe2\xf5\xea\ \xe2\xf7\xed\xe4\xf6\xed\xe5\xf7\xee\xe4\xf7\xed\xe4\xf8\xee\xe4\ \xf7\xef\xe5\xf7\xee\xe4\xf8\xef\xe5\xf8\xef\xe5\xf7\xed\xe3\xf4\ \xe9\xdf\xf2\xe1\xda\xed\xda\xd3\xe8\xd5\xcf\xe4\xcf\xca\xde\xca\ \xc5\xd9\xc4\xc3\xd4\xc0\xbf\xcf\xbc\xbd\xca\xb8\xbb\xc6\xb4\xb9\ \xc1\xb1\xb7\xbe\xad\xb6\xbb\xad\xb7\xba\xab\xb6\xb7\xa9\xb5\xb4\ \xa8\xb4\xb1\xa4\xb2\xad\xa3\xb1\xab\xa1\xb1\xa7\x9e\xae\xa3\x9d\ \xae\xa0\x9a\xad\x9c\x98\xab\x97\x93\xa8\x93\x90\xa6\x8f\x8e\xa5\ \x90\x8f\xa6\x93\x90\xa6\x94\x92\xa8\x98\x96\xaa\x9b\x98\xac\x9f\ \x9b\xad\x00\x00\x00\xe1\xd6\xd9\xe0\xd5\xd7\xe0\xd4\xd6\xdf\xd3\ \xd4\xde\xd1\xd2\xdc\xce\xcf\xdb\xcd\xce\xd9\xcb\xcc\xd5\xc6\xc7\ \xce\xbf\xc0\xc5\xb3\xb5\xb8\xa7\xaa\xad\x9f\xa6\xa7\x9d\xa8\xaa\ \xa1\xac\xb9\xaf\xb6\xc8\xbc\xc1\xd0\xc5\xc8\xd5\xca\xcd\xd7\xcc\ \xce\xd8\xcd\xcf\xd9\xce\xd1\xdb\xd0\xd2\xdd\xd2\xd4\xde\xd3\xd5\ \xde\xd3\xd5\xe0\xd5\xd7\xe1\xd6\xd8\xe4\xd7\xd8\xe6\xda\xd9\xe7\ \xdb\xdb\xe9\xdb\xdc\xea\xdd\xdc\xeb\xde\xdc\xee\xde\xdc\xef\xe1\ \xdd\xf0\xe4\xe0\xf1\xe5\xdf\xf2\xe7\xe0\xf4\xe8\xe2\xf5\xea\xe3\ \xf6\xec\xe4\xf8\xee\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\ \xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\ \xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\ \xf8\xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\ \xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ \xf9\xf1\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\ \xf1\xe8\xf9\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\ \xe5\xf6\xed\xe5\xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe9\xe4\ \xf3\xe8\xe4\xf1\xe6\xe2\xf1\xe5\xe1\xf0\xe3\xe1\xed\xe0\xde\xec\ \xdf\xde\xec\xde\xdf\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\ \xdd\xeb\xdd\xde\xeb\xdd\xdc\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\ \xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xef\ \xe0\xdd\xef\xe0\xdd\xf0\xe1\xde\xf1\xe2\xde\xf2\xe4\xde\xf1\xe5\ \xdf\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xea\xe2\xf5\xea\xe2\xf6\xec\xe4\ \xf6\xed\xe4\xf7\xed\xe4\xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe4\xf8\ \xef\xe5\xf9\xf0\xe6\xf8\xef\xe6\xf7\xee\xe4\xf5\xea\xe0\xf2\xe5\ \xdc\xf0\xde\xd7\xeb\xd8\xd2\xe8\xd3\xcf\xe3\xcf\xca\xdf\xcb\xc7\ \xdb\xc6\xc4\xd8\xc3\xc2\xd4\xc0\xbf\xd0\xbc\xbd\xcc\xba\xbc\xc9\ \xb7\xbb\xc7\xb6\xba\xc2\xb2\xb8\xbe\xaf\xb7\xbb\xac\xb6\xb7\xa9\ \xb5\xb2\xa6\xb2\xae\xa3\xb1\xab\xa0\xb1\xa7\x9f\xaf\xa5\x9d\xae\ \xa2\x9a\xad\x9f\x99\xab\x9d\x97\xaa\x9a\x95\xaa\x9a\x95\xaa\x9b\ \x97\xab\x9d\x97\xab\x9e\x99\xad\xa0\x9b\xae\xa2\x9e\xaf\x00\x00\ \x00\xe1\xd6\xd9\xe1\xd6\xd8\xe0\xd4\xd6\xdf\xd2\xd4\xde\xd1\xd2\ \xdc\xce\xcf\xdc\xce\xcf\xdb\xcd\xce\xd8\xca\xcb\xd3\xc4\xc5\xca\ \xba\xbb\xbd\xad\xaf\xb1\xa3\xa9\xa8\x9d\xa8\xa6\x9d\xa9\xb2\xa8\ \xb2\xc3\xb7\xbd\xcd\xc3\xc5\xd4\xc9\xcc\xd7\xcc\xce\xd8\xcd\xcf\ \xdb\xd0\xd2\xdd\xd1\xd3\xdf\xd3\xd5\xdf\xd3\xd5\xe0\xd4\xd6\xe1\ \xd4\xd6\xe2\xd5\xd7\xe4\xd8\xd8\xe6\xd9\xd9\xe8\xdb\xda\xea\xdc\ \xdb\xeb\xdd\xdb\xed\xdf\xdd\xee\xe1\xde\xef\xe2\xde\xf0\xe4\xdf\ \xf1\xe5\xdf\xf2\xe7\xe0\xf4\xe8\xe1\xf5\xeb\xe3\xf6\xec\xe4\xf7\ \xee\xe5\xf8\xef\xe6\xf8\xee\xe5\xf8\xee\xe5\xf8\xef\xe6\xf7\xee\ \xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\ \xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xef\xe6\xf8\xf0\xe7\xf8\ \xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xfa\xf3\ \xea\xf9\xf3\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ \xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf8\xf2\xe9\xf9\xf1\xe9\xf9\ \xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe7\xf9\xf0\xe7\xf8\xf0\ \xe7\xf9\xef\xe7\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe5\ \xf5\xeb\xe4\xf6\xec\xe5\xf5\xeb\xe4\xf4\xe9\xe4\xf3\xe8\xe4\xf1\ \xe6\xe2\xf1\xe5\xe1\xf0\xe3\xe1\xed\xe0\xde\xec\xde\xdf\xeb\xdd\ \xde\xeb\xde\xdf\xea\xdd\xde\xea\xdd\xde\xea\xdc\xdd\xea\xdc\xdd\ \xeb\xdc\xdc\xeb\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xec\ \xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xee\xdf\xdc\xef\xe0\ \xdd\xf0\xe1\xde\xf0\xe2\xdf\xf1\xe4\xde\xf2\xe5\xdf\xf3\xe7\xe1\ \xf4\xe8\xe2\xf5\xea\xe2\xf5\xeb\xe2\xf6\xec\xe4\xf7\xed\xe4\xf7\ \xed\xe4\xf8\xed\xe4\xf7\xee\xe4\xf7\xee\xe4\xf8\xef\xe5\xf8\xef\ \xe6\xf8\xef\xe6\xf8\xef\xe5\xf6\xec\xe2\xf4\xe8\xde\xf2\xe2\xdb\ \xef\xdd\xd7\xec\xd8\xd3\xe9\xd4\xcf\xe5\xd1\xcc\xe2\xce\xc9\xdf\ \xca\xc6\xdb\xc7\xc5\xd9\xc4\xc2\xd6\xc2\xc1\xd4\xc0\xc0\xcf\xbc\ \xbe\xca\xb8\xbb\xc6\xb5\xb9\xc1\xb1\xb8\xbc\xad\xb6\xb6\xa9\xb5\ \xb1\xa5\xb3\xad\xa2\xb2\xab\xa1\xb1\xa9\x9f\xb0\xa7\x9e\xaf\xa6\ \x9e\xaf\xa5\x9d\xaf\xa3\x9d\xad\xa3\x9b\xae\xa3\x9c\xae\xa2\x9c\ \xae\xa2\x9c\xae\xa4\x9e\xaf\xa5\x9f\xb0\x00\x00\x00\xe1\xd6\xd9\ \xe1\xd6\xd8\xe0\xd5\xd7\xe0\xd3\xd5\xde\xd1\xd2\xdd\xcf\xd0\xdd\ \xcf\xd0\xdc\xcd\xce\xdb\xcd\xce\xd7\xc9\xca\xcf\xc0\xc1\xc3\xb4\ \xb7\xb6\xa7\xac\xac\xa0\xa9\xa4\x9b\xa8\xa9\xa1\xac\xbc\xb1\xb8\ \xca\xbf\xc2\xd3\xc8\xca\xd7\xcc\xce\xda\xcf\xd1\xdc\xd0\xd2\xde\ \xd1\xd3\xdf\xd3\xd5\xe0\xd3\xd5\xe0\xd3\xd4\xe0\xd4\xd6\xe2\xd6\ \xd6\xe5\xd7\xd8\xe6\xd9\xd9\xe9\xdc\xda\xeb\xdd\xdb\xed\xde\xdc\ \xee\xe0\xdd\xef\xe2\xde\xf0\xe3\xdf\xf0\xe4\xde\xf1\xe5\xdf\xf3\ \xe6\xe0\xf3\xe8\xe0\xf5\xea\xe2\xf6\xec\xe3\xf6\xed\xe4\xf8\xef\ \xe6\xf8\xef\xe5\xf8\xef\xe4\xf7\xee\xe5\xf7\xee\xe6\xf7\xee\xe5\ \xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\ \xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf1\ \xe8\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\ \xf9\xf3\xea\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ \xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf1\xe8\xf9\xf2\xe8\xf9\xf1\ \xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf0\xe7\xf8\xef\xe7\xf8\xef\xe5\ \xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf5\xec\xe4\xf6\xec\xe5\xf5\ \xeb\xe4\xf5\xea\xe4\xf4\xe9\xe4\xf4\xe9\xe5\xf1\xe6\xe2\xf1\xe5\ \xe1\xf0\xe3\xe1\xed\xe0\xde\xec\xde\xdf\xec\xde\xdf\xea\xde\xde\ \xe9\xde\xdd\xea\xde\xdd\xeb\xdd\xde\xea\xdc\xdd\xe9\xdc\xdb\xea\ \xdc\xdb\xeb\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\ \xda\xeb\xdc\xdb\xec\xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xef\xe0\xdd\ \xf0\xe1\xde\xf1\xe3\xde\xf2\xe5\xdf\xf3\xe7\xe1\xf4\xe8\xe2\xf5\ \xe9\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf6\xec\xe3\xf7\xec\xe4\xf7\xee\ \xe3\xf7\xee\xe4\xf6\xed\xe4\xf8\xef\xe5\xf7\xf0\xe6\xf8\xef\xe6\ \xf7\xee\xe5\xf6\xec\xe2\xf5\xea\xe0\xf4\xe7\xdf\xf1\xe2\xdb\xf0\ \xde\xd7\xec\xd9\xd4\xe9\xd6\xd1\xe7\xd3\xce\xe4\xd0\xcb\xe1\xcd\ \xc8\xdf\xcc\xc8\xde\xcb\xc8\xdb\xc7\xc6\xd6\xc3\xc2\xd1\xbe\xbf\ \xcb\xb9\xbd\xc6\xb6\xba\xc0\xb0\xb9\xb9\xab\xb7\xb3\xa8\xb5\xae\ \xa4\xb2\xad\xa2\xb2\xab\xa1\xb1\xac\xa2\xb2\xac\xa2\xb2\xab\xa2\ \xb2\xab\xa1\xb1\xaa\xa1\xb0\xa8\xa0\xb0\xa7\x9f\xb0\xa6\x9f\xb0\ \xa7\xa0\xb1\xa6\xa0\xb1\x00\x00\x00\xe0\xd6\xd9\xe1\xd5\xd7\xe1\ \xd5\xd7\xe0\xd3\xd4\xdf\xd1\xd2\xde\xd0\xd1\xdd\xcf\xd0\xde\xd0\ \xd0\xdd\xcf\xd0\xdb\xcc\xcd\xd4\xc6\xc7\xc9\xbb\xbe\xbd\xae\xb2\ \xb0\xa4\xac\xa7\x9d\xa9\xa7\x9e\xab\xb4\xab\xb5\xc5\xba\xbf\xd1\ \xc5\xc8\xd7\xcc\xce\xda\xcf\xd1\xdd\xd0\xd2\xdd\xd1\xd2\xdf\xd1\ \xd3\xe0\xd3\xd3\xe0\xd4\xd4\xe2\xd4\xd5\xe4\xd6\xd7\xe5\xd7\xd8\ \xe7\xd9\xd8\xea\xdc\xda\xec\xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xf0\ \xe1\xdd\xf0\xe2\xdd\xf1\xe3\xdd\xf3\xe5\xdf\xf3\xe6\xdf\xf3\xe8\ \xe0\xf5\xea\xe2\xf6\xeb\xe3\xf6\xed\xe4\xf8\xef\xe5\xf7\xee\xe5\ \xf8\xef\xe5\xf9\xf0\xe6\xf8\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\ \xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf1\ \xe8\xf7\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\ \xf9\xf2\xe9\xfa\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\ \xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\ \xe8\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe7\xf8\xf2\xe7\xf8\xf1\xe6\ \xf9\xf0\xe7\xf8\xf0\xe6\xf9\xf0\xe5\xf7\xee\xe6\xf7\xee\xe5\xf6\ \xed\xe4\xf5\xec\xe3\xf5\xeb\xe3\xf4\xea\xe3\xf5\xea\xe3\xf4\xea\ \xe3\xf3\xe9\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf0\xe4\xe1\xef\xe2\xe0\ \xed\xe0\xdf\xec\xde\xdf\xeb\xdd\xde\xeb\xdd\xdd\xe9\xdd\xdd\xea\ \xdc\xdd\xe9\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xdb\xe9\xdc\xd9\xe9\xdb\ \xd9\xea\xdb\xd9\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\ \xeb\xdc\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdd\xf0\xe1\xde\xf1\ \xe2\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xea\ \xe2\xf5\xea\xe2\xf5\xea\xe2\xf6\xeb\xe3\xf6\xec\xe4\xf7\xed\xe4\ \xf6\xed\xe4\xf7\xee\xe5\xf8\xee\xe6\xf7\xee\xe6\xf7\xee\xe4\xf7\ \xec\xe3\xf6\xeb\xe3\xf4\xea\xe1\xf3\xe7\xdf\xf1\xe3\xdc\xf0\xdf\ \xd9\xee\xdb\xd6\xeb\xd8\xd3\xe9\xd5\xd0\xe6\xd3\xce\xe5\xd1\xce\ \xe2\xd0\xcc\xdf\xcc\xc9\xdb\xc7\xc5\xd5\xc2\xc1\xce\xbd\xbe\xc9\ \xb9\xbc\xc2\xb3\xba\xba\xad\xb8\xb5\xa9\xb6\xaf\xa5\xb2\xaf\xa4\ \xb2\xaf\xa4\xb3\xae\xa4\xb2\xae\xa5\xb3\xae\xa5\xb3\xad\xa4\xb2\ \xac\xa3\xb2\xaa\xa2\xb2\xa9\xa2\xb1\xa9\xa1\xb2\xaa\xa2\xb3\xa9\ \xa3\xb3\x00\x00\x00\xdf\xd5\xd8\xe1\xd6\xd8\xe1\xd5\xd7\xe1\xd4\ \xd6\xe0\xd2\xd3\xdf\xd1\xd2\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd0\xd1\ \xdc\xcf\xd0\xd8\xcb\xcc\xcf\xc2\xc5\xc4\xb7\xbb\xb7\xab\xb2\xab\ \xa1\xad\xaa\xa2\xae\xb0\xa8\xb3\xc1\xb6\xbb\xce\xc2\xc5\xd6\xcc\ \xce\xdc\xd0\xd3\xde\xd1\xd3\xde\xd1\xd3\xdf\xd1\xd3\xe0\xd2\xd3\ \xe1\xd3\xd4\xe3\xd4\xd6\xe4\xd6\xd7\xe5\xd8\xd7\xe8\xda\xd8\xeb\ \xdc\xda\xec\xdc\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdc\xf0\xe2\ \xdc\xf1\xe3\xdd\xf2\xe4\xde\xf3\xe7\xdf\xf3\xe8\xe0\xf5\xea\xe2\ \xf6\xeb\xe3\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe5\xf8\xef\xe5\xf9\ \xef\xe5\xf8\xf0\xe6\xf8\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xf0\ \xe7\xf9\xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\ \xf9\xf1\xe8\xf8\xf2\xe9\xf8\xf3\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ \xf3\xea\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\ \xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\ \xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf9\xf0\xe7\xf9\ \xf0\xe7\xf8\xef\xe6\xf8\xee\xe6\xf7\xee\xe5\xf5\xec\xe4\xf5\xeb\ \xe3\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe9\xe2\xf3\xe8\xe2\xf2\xe7\xe3\ \xf2\xe7\xe3\xf1\xe6\xe2\xf0\xe4\xe1\xee\xe1\xdf\xec\xdf\xdf\xec\ \xde\xdf\xeb\xdd\xde\xeb\xdd\xde\xe9\xdc\xdd\xea\xdb\xdc\xea\xdc\ \xdd\xe9\xdb\xdc\xe9\xdb\xdb\xea\xdb\xd9\xea\xda\xd8\xe9\xda\xd8\ \xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xea\xdb\xd9\xeb\xdc\xda\xec\ \xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xf0\xe1\xde\xf1\xe2\xdf\xf1\xe3\ \xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe1\xf5\xea\xe1\ \xf5\xea\xe2\xf5\xea\xe2\xf6\xec\xe4\xf7\xed\xe4\xf7\xed\xe5\xf7\ \xee\xe5\xf7\xee\xe5\xf7\xed\xe4\xf7\xec\xe4\xf6\xec\xe2\xf6\xeb\ \xe3\xf5\xea\xe2\xf4\xe9\xe1\xf3\xe7\xdf\xf2\xe4\xdd\xf0\xe1\xda\ \xee\xdd\xd7\xec\xda\xd5\xeb\xd8\xd3\xe9\xd6\xd3\xe7\xd4\xd0\xe3\ \xd0\xcd\xde\xcb\xc8\xd9\xc6\xc5\xd2\xc0\xc1\xcb\xba\xbd\xc3\xb4\ \xbb\xbc\xae\xb8\xb6\xaa\xb5\xb2\xa7\xb4\xb1\xa7\xb4\xb0\xa6\xb3\ \xb1\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xaf\xa5\xb3\xad\xa4\xb3\xad\ \xa3\xb3\xac\xa3\xb3\xab\xa4\xb3\xab\xa4\xb3\xaa\xa4\xb3\x00\x00\ \x00\xde\xd5\xd8\xe0\xd5\xd7\xe1\xd5\xd7\xe1\xd4\xd5\xe2\xd3\xd5\ \xe1\xd3\xd4\xdf\xd1\xd2\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd1\xd2\xdb\ \xcf\xd1\xd5\xc8\xcb\xcb\xbf\xc2\xc0\xb4\xb9\xb1\xa8\xb3\xad\xa4\ \xb0\xb0\xa7\xb2\xbd\xb1\xb8\xcb\xbe\xc1\xd5\xc8\xca\xdb\xd0\xd1\ \xdf\xd2\xd4\xde\xd2\xd3\xe0\xd2\xd3\xe0\xd2\xd3\xe1\xd3\xd4\xe2\ \xd5\xd6\xe5\xd8\xd6\xe7\xd9\xd7\xe9\xda\xd8\xeb\xdc\xda\xeb\xdc\ \xd9\xec\xdd\xda\xee\xdf\xdb\xef\xe0\xdb\xf0\xe2\xdc\xf1\xe3\xdd\ \xf3\xe5\xdf\xf2\xe6\xdf\xf3\xe8\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf7\ \xed\xe4\xf8\xef\xe5\xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf9\xf0\ \xe6\xf9\xf0\xe7\xf9\xf0\xe8\xf9\xf0\xe8\xf8\xf0\xe7\xf7\xf0\xe7\ \xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf9\xf1\xe8\xf8\xf2\xe9\xfa\ \xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\ \xf8\xf1\xe9\xf9\xf3\xe9\xf8\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\ \xf1\xe8\xf9\xf2\xe9\xf7\xf1\xe8\xf9\xf0\xe7\xf9\xf0\xe6\xf8\xef\ \xe6\xf7\xee\xe5\xf6\xed\xe4\xf5\xeb\xe3\xf6\xea\xe4\xf5\xe9\xe3\ \xf5\xe9\xe3\xf3\xe8\xe1\xf2\xe6\xe2\xf2\xe6\xe2\xf1\xe6\xe2\xf0\ \xe5\xe1\xef\xe3\xe0\xed\xdf\xdf\xec\xde\xe0\xeb\xdd\xde\xeb\xdd\ \xde\xea\xdc\xdd\xea\xdc\xdd\xe9\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xda\ \xea\xdb\xd9\xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd7\xe9\ \xda\xd8\xea\xdb\xd9\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\ \xdb\xee\xdf\xdc\xf0\xe1\xde\xf0\xe1\xde\xf1\xe2\xde\xf1\xe3\xe0\ \xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\xe2\xf4\xe9\xe1\xf4\xe8\xe1\xf5\ \xe9\xe1\xf6\xeb\xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xec\ \xe4\xf6\xec\xe3\xf6\xec\xe3\xf6\xeb\xe3\xf5\xea\xe2\xf5\xea\xe2\ \xf4\xe9\xe1\xf3\xe8\xe0\xf2\xe7\xdf\xf1\xe5\xdd\xf0\xe2\xdc\xef\ \xe0\xda\xee\xde\xd8\xed\xdb\xd7\xea\xd7\xd3\xe6\xd3\xd0\xe1\xce\ \xcb\xdc\xc8\xc7\xd4\xc2\xc2\xcc\xbb\xbe\xc5\xb6\xbb\xbe\xaf\xb9\ \xb7\xab\xb6\xb3\xa8\xb4\xb2\xa7\xb4\xb1\xa7\xb5\xb0\xa7\xb4\xb1\ \xa7\xb4\xb0\xa6\xb3\xaf\xa5\xb3\xae\xa5\xb4\xae\xa4\xb4\xae\xa4\ \xb3\xae\xa6\xb5\xad\xa6\xb3\xab\xa4\xb3\x00\x00\x00\xdd\xd2\xd5\ \xde\xd3\xd5\xe0\xd4\xd5\xe0\xd3\xd3\xe1\xd4\xd5\xe0\xd4\xd4\xe0\ \xd3\xd4\xe0\xd3\xd3\xdf\xd3\xd3\xe0\xd3\xd4\xde\xd1\xd3\xd9\xcd\ \xcf\xd1\xc6\xc8\xc6\xbb\xc1\xb9\xae\xb7\xb0\xa6\xb1\xb1\xa6\xb1\ \xb9\xac\xb3\xc7\xba\xbc\xd1\xc4\xc6\xda\xce\xce\xdf\xd3\xd3\xe1\ \xd4\xd4\xe1\xd3\xd4\xe2\xd4\xd5\xe2\xd4\xd5\xe4\xd7\xd5\xe5\xd8\ \xd6\xe7\xd9\xd7\xe9\xda\xd8\xeb\xdb\xd9\xeb\xdc\xda\xec\xdd\xda\ \xef\xe0\xdd\xf0\xe1\xde\xf0\xe2\xde\xf1\xe3\xdd\xf2\xe5\xdf\xf3\ \xe7\xe0\xf3\xe8\xe0\xf5\xea\xe2\xf7\xec\xe4\xf7\xee\xe5\xf8\xef\ \xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf7\xf2\xe6\xf7\xf0\xe8\xf7\xf1\xe8\ \xf7\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\ \xf2\xe9\xf9\xf2\xe8\xf8\xf3\xea\xf8\xf3\xe9\xf9\xf2\xea\xf9\xf3\ \xea\xf9\xf3\xea\xf9\xf3\xea\xf9\xf3\xea\xfa\xf3\xea\xfa\xf3\xea\ \xfa\xf2\xea\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf3\xe9\xf9\xf2\xe9\xf9\ \xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf2\ \xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe5\xf8\xee\xe6\xf6\xed\xe4\ \xf6\xeb\xe3\xf5\xea\xe2\xf4\xe9\xe2\xf4\xe8\xe2\xf3\xe7\xe1\xf2\ \xe6\xe1\xf2\xe6\xe2\xf1\xe5\xe1\xf0\xe4\xe0\xef\xe2\xe1\xee\xe1\ \xe0\xed\xdf\xdf\xeb\xdd\xde\xeb\xdd\xde\xea\xdc\xdd\xe9\xdb\xdc\ \xe8\xdb\xdb\xe8\xda\xdb\xe8\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe8\ \xd9\xd7\xe8\xd9\xd8\xe8\xd9\xd7\xe8\xd9\xd9\xe8\xd9\xd8\xe9\xd9\ \xd8\xe9\xda\xd8\xea\xdb\xd9\xec\xdd\xdb\xed\xde\xdc\xee\xdf\xdc\ \xef\xe1\xde\xef\xe0\xde\xef\xe2\xde\xf0\xe4\xe0\xf1\xe5\xe1\xf2\ \xe6\xe2\xf2\xe6\xe1\xf3\xe8\xe2\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xec\ \xe3\xf5\xec\xe4\xf5\xec\xe4\xf5\xec\xe3\xf5\xeb\xe2\xf5\xeb\xe3\ \xf5\xe9\xe2\xf4\xe9\xe1\xf4\xe9\xe1\xf4\xe8\xe1\xf3\xe8\xe0\xf2\ \xe7\xdf\xf1\xe6\xdf\xf1\xe4\xde\xf0\xe4\xde\xf0\xe3\xdd\xf0\xe3\ \xdd\xee\xe0\xda\xec\xd9\xd6\xe8\xd5\xd1\xe3\xd0\xcd\xde\xcb\xc9\ \xd5\xc4\xc3\xce\xbd\xc0\xc6\xb7\xbc\xbd\xae\xb7\xb6\xa9\xb5\xb4\ \xa8\xb4\xb2\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\ \xb4\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa6\xb4\xb1\xa7\xb4\xb0\xa7\xb4\ \xb0\xa7\xb4\xac\xa4\xb1\x00\x00\x00\xdb\xd1\xd4\xdc\xd1\xd4\xde\ \xd1\xd4\xdf\xd2\xd4\xdf\xd3\xd3\xdf\xd3\xd3\xdf\xd3\xd4\xdf\xd3\ \xd4\xe0\xd3\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xdb\xd0\xd2\xd5\xca\xcc\ \xcc\xc1\xc6\xc1\xb6\xbd\xb6\xab\xb5\xb4\xa7\xb2\xb9\xaa\xb2\xc2\ \xb3\xb6\xce\xc0\xc1\xd7\xca\xcb\xdf\xd2\xd2\xe2\xd4\xd5\xe2\xd5\ \xd5\xe3\xd5\xd6\xe4\xd6\xd6\xe5\xd8\xd6\xe7\xd9\xd7\xe9\xda\xd8\ \xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xda\xed\xde\xdb\xef\xe0\xdd\xef\ \xe0\xdd\xf0\xe1\xde\xf1\xe3\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\ \xe0\xf5\xea\xe2\xf6\xeb\xe3\xf6\xed\xe4\xf8\xef\xe6\xf9\xf0\xe6\ \xf9\xf0\xe7\xf7\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf1\xe9\xf8\ \xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\xf8\xf3\ \xe9\xf7\xf2\xea\xf9\xf3\xe9\xf9\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\ \xf9\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf2\xe9\xf8\ \xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\ \xe9\xf9\xf2\xe8\xf8\xf1\xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf1\xe6\ \xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xec\xe4\xf6\xeb\xe3\xf5\ \xe9\xe3\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe2\xf3\xe7\xe2\xf1\xe5\ \xe1\xf0\xe4\xe0\xf0\xe3\xe0\xef\xe2\xe0\xed\xe0\xde\xec\xde\xde\ \xeb\xdd\xde\xea\xdd\xdd\xea\xdc\xdc\xe8\xdb\xdb\xe8\xda\xda\xe8\ \xda\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe7\xd8\xd6\xe7\xd8\xd6\xe8\xd9\ \xd7\xe7\xd9\xd9\xe7\xd7\xd8\xe8\xd8\xd9\xe8\xd8\xd9\xe9\xda\xd9\ \xea\xdb\xd9\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xee\xe0\xde\xee\ \xe1\xdf\xef\xe3\xe0\xf1\xe4\xe1\xf1\xe5\xe2\xf1\xe6\xe2\xf2\xe7\ \xe3\xf2\xe8\xe3\xf3\xe8\xe2\xf4\xea\xe3\xf4\xeb\xe4\xf4\xeb\xe3\ \xf4\xeb\xe4\xf4\xeb\xe3\xf4\xeb\xe2\xf5\xe9\xe3\xf4\xe9\xe2\xf4\ \xe9\xe1\xf3\xe8\xe1\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf1\xe5\ \xdf\xf0\xe4\xdd\xf0\xe3\xdd\xf0\xe3\xdd\xef\xe3\xdd\xee\xe0\xdb\ \xeb\xda\xd7\xe9\xd6\xd3\xe4\xd1\xce\xde\xcb\xca\xd6\xc4\xc5\xce\ \xbd\xc0\xc4\xb4\xba\xb9\xac\xb6\xb5\xa9\xb4\xb3\xa7\xb4\xb2\xa8\ \xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\ \xb1\xa7\xb4\xb3\xa8\xb5\xb3\xa9\xb5\xb3\xa8\xb4\xb2\xa8\xb3\xaf\ \xa6\xb2\x00\x00\x00\xd8\xcf\xd2\xda\xcf\xd2\xdb\xd0\xd2\xdc\xd0\ \xd2\xdd\xd0\xd2\xde\xd1\xd2\xde\xd1\xd3\xde\xd1\xd3\xdf\xd2\xd4\ \xde\xd3\xd5\xde\xd2\xd4\xdc\xd1\xd3\xd9\xce\xd1\xd1\xc7\xca\xc7\ \xbd\xc2\xbc\xb1\xba\xb9\xac\xb4\xb8\xaa\xb1\xbd\xae\xb3\xca\xba\ \xbc\xd4\xc6\xc7\xdd\xd0\xd1\xe3\xd5\xd6\xe4\xd6\xd7\xe5\xd7\xd7\ \xe7\xd9\xd7\xe8\xd9\xd7\xe8\xd9\xd7\xea\xdb\xd9\xeb\xdc\xda\xec\ \xdd\xdb\xec\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdd\xf0\xe2\ \xdf\xf1\xe3\xde\xf1\xe5\xdf\xf3\xe7\xe1\xf3\xe8\xe1\xf5\xea\xe2\ \xf6\xec\xe3\xf7\xed\xe5\xf8\xef\xe6\xf9\xf0\xe6\xf8\xf0\xe7\xf8\ \xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\ \xe9\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf3\xe9\xf7\xf3\xea\xf8\xf3\xea\ \xf7\xf3\xea\xf7\xf3\xe9\xf7\xf3\xea\xf8\xf3\xea\xf9\xf3\xea\xf8\ \xf3\xea\xfa\xf3\xea\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\ \xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe8\ \xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xef\xe6\xf7\ \xef\xe5\xf7\xed\xe5\xf6\xec\xe4\xf5\xeb\xe3\xf5\xe9\xe3\xf3\xe7\ \xe1\xf3\xe7\xe1\xf2\xe6\xe1\xf2\xe6\xe2\xf1\xe5\xe1\xf0\xe4\xe0\ \xef\xe2\xe0\xee\xe1\xdf\xed\xe0\xdf\xec\xde\xdf\xeb\xdd\xdd\xea\ \xdd\xdc\xea\xdd\xdb\xe9\xdc\xd9\xe9\xda\xd8\xe9\xda\xd8\xe7\xd8\ \xd6\xe7\xd8\xd6\xe6\xd7\xd5\xe6\xd7\xd5\xe7\xd7\xd7\xe6\xd7\xd8\ \xe5\xd7\xd8\xe6\xd8\xd9\xe6\xd7\xd9\xe7\xd9\xd9\xea\xdb\xd9\xec\ \xdd\xdb\xed\xde\xdc\xed\xde\xdc\xee\xe0\xde\xee\xe1\xdf\xf0\xe3\ \xe1\xf1\xe5\xe3\xf2\xe6\xe3\xf2\xe7\xe4\xf2\xe8\xe4\xf3\xe8\xe4\ \xf4\xe9\xe5\xf5\xea\xe5\xf5\xeb\xe4\xf5\xeb\xe3\xf5\xeb\xe4\xf4\ \xea\xe3\xf3\xe9\xe3\xf2\xe8\xe1\xf2\xe7\xe0\xf2\xe5\xdf\xf1\xe5\ \xde\xf1\xe4\xde\xf1\xe4\xde\xf0\xe4\xde\xf1\xe4\xde\xf0\xe2\xdd\ \xef\xe0\xdd\xee\xdf\xdc\xed\xdf\xda\xec\xdb\xd8\xe9\xd8\xd5\xe6\ \xd4\xd1\xe1\xd0\xcd\xdb\xc9\xc8\xd3\xc2\xc4\xcb\xbb\xbe\xc0\xb1\ \xb9\xb8\xaa\xb6\xb5\xa9\xb5\xb2\xa8\xb5\xb2\xa7\xb5\xb2\xa8\xb5\ \xb2\xa8\xb5\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb5\xb4\xa9\xb6\xb6\ \xab\xb5\xb6\xab\xb5\xb7\xac\xb5\xb7\xab\xb5\xb6\xab\xb3\x00\x00\ \x00\xd8\xcd\xd0\xd8\xcd\xd0\xd9\xce\xd0\xdb\xce\xd0\xdb\xce\xd0\ \xdb\xce\xd0\xdc\xcf\xd1\xdd\xd1\xd3\xde\xd1\xd3\xde\xd2\xd4\xdd\ \xd2\xd4\xde\xd3\xd5\xdb\xd0\xd3\xd6\xcb\xce\xcc\xc3\xc7\xc1\xb6\ \xbd\xbb\xaf\xb7\xba\xab\xb2\xbb\xab\xb1\xc5\xb4\xb7\xd1\xc2\xc3\ \xdb\xcd\xce\xe3\xd5\xd6\xe6\xd8\xd9\xe7\xd9\xd9\xe9\xdb\xd9\xea\ \xdb\xd9\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdc\xec\xdd\ \xdb\xed\xde\xdb\xee\xdf\xdc\xf0\xe1\xde\xef\xe3\xdf\xf0\xe5\xe0\ \xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe8\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf6\ \xed\xe4\xf8\xef\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf1\ \xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\ \xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf2\ \xe9\xfa\xf3\xea\xf9\xf3\xe9\xf8\xf3\xe9\xf9\xf2\xe9\xf9\xf3\xe9\ \xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf2\xe9\xf8\ \xf1\xe8\xf9\xf1\xe8\xf9\xef\xe6\xf8\xef\xe6\xf8\xee\xe5\xf7\xee\ \xe5\xf6\xeb\xe3\xf6\xeb\xe3\xf5\xe9\xe3\xf3\xe7\xe1\xf3\xe7\xe1\ \xf2\xe6\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe2\xdf\xee\xe1\xdf\xec\ \xdf\xdd\xec\xdf\xdd\xeb\xde\xdc\xeb\xde\xdc\xea\xdd\xdb\xeb\xdd\ \xdb\xeb\xdb\xd9\xe9\xda\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe6\xd6\xd4\ \xe4\xd5\xd3\xe4\xd6\xd4\xe5\xd4\xd6\xe5\xd6\xd7\xe3\xd5\xd6\xe4\ \xd6\xd7\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xea\xdc\xda\xec\xdd\ \xdb\xed\xde\xdc\xed\xe0\xde\xef\xe2\xe0\xf0\xe4\xe2\xf0\xe5\xe3\ \xf1\xe7\xe4\xf1\xe8\xe5\xf2\xe9\xe6\xf3\xe9\xe5\xf3\xea\xe6\xf3\ \xe9\xe5\xf4\xe9\xe5\xf3\xe9\xe3\xf3\xe8\xe3\xf2\xe7\xe1\xf1\xe5\ \xdf\xf0\xe2\xdd\xef\xe0\xda\xee\xdf\xd9\xef\xde\xd8\xef\xde\xd8\ \xee\xdf\xd9\xee\xdf\xda\xed\xde\xda\xec\xdc\xd9\xec\xdb\xd8\xea\ \xd9\xd6\xe9\xd8\xd5\xe7\xd6\xd3\xe5\xd3\xd0\xe1\xcf\xcc\xdc\xca\ \xc8\xd6\xc4\xc4\xd0\xbf\xc1\xc7\xb8\xbc\xbf\xb1\xb8\xb7\xaa\xb6\ \xb5\xa9\xb5\xb3\xa8\xb5\xb1\xa7\xb4\xb1\xa7\xb4\xb2\xa8\xb5\xb1\ \xa8\xb5\xb2\xa7\xb5\xb4\xa9\xb5\xb7\xac\xb6\xb6\xab\xb5\xba\xae\ \xb6\xbc\xaf\xb7\xc0\xb2\xb8\xc2\xb4\xb7\x00\x00\x00\xd7\xcd\xcf\ \xd8\xcd\xcf\xd7\xcc\xcf\xd8\xcd\xcf\xda\xcd\xcf\xda\xcd\xcf\xda\ \xce\xd0\xdb\xcf\xd1\xdc\xd0\xd2\xdc\xd1\xd3\xdd\xd2\xd4\xde\xd3\ \xd5\xdd\xd2\xd5\xda\xcf\xd2\xd2\xc8\xcc\xc7\xbd\xc3\xbe\xb3\xbb\ \xbb\xad\xb5\xb9\xaa\xb1\xbf\xaf\xb2\xcd\xbd\xbe\xd9\xca\xcb\xe1\ \xd3\xd4\xe7\xd9\xda\xe8\xda\xda\xe8\xdb\xd9\xeb\xdc\xda\xeb\xdc\ \xda\xec\xdd\xdb\xee\xde\xdc\xee\xdf\xdc\xee\xdf\xdc\xef\xe0\xdd\ \xef\xe0\xdd\xef\xe1\xde\xef\xe3\xdf\xf0\xe4\xe1\xf3\xe7\xe0\xf3\ \xe7\xe1\xf4\xe8\xe2\xf5\xea\xe4\xf6\xec\xe3\xf7\xee\xe5\xf8\xef\ \xe6\xf8\xf0\xe6\xf8\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe8\ \xf7\xf2\xe9\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\ \xf2\xe9\xf7\xf2\xe9\xf9\xf4\xeb\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ \xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xe9\ \xf9\xf3\xea\xf8\xf2\xea\xf9\xf3\xea\xfa\xf3\xe9\xf9\xf1\xe8\xf9\ \xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\ \xe8\xf8\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xec\xe3\ \xf6\xea\xe3\xf5\xe8\xe3\xf3\xe8\xe1\xf2\xe6\xe0\xf1\xe5\xe1\xf0\ \xe4\xe0\xef\xe3\xdf\xee\xe2\xde\xee\xe0\xde\xec\xdf\xdd\xec\xde\ \xdd\xec\xde\xdc\xeb\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xea\xdb\xd9\ \xea\xdb\xd9\xe8\xd9\xd7\xe8\xd7\xd6\xe6\xd5\xd4\xe4\xd5\xd3\xe4\ \xd4\xd4\xe3\xd4\xd5\xe3\xd5\xd6\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd9\ \xda\xe7\xd9\xda\xe7\xda\xda\xe9\xdb\xdc\xe9\xdc\xdc\xeb\xde\xdd\ \xed\xdf\xde\xee\xe1\xe0\xf0\xe4\xe2\xf1\xe6\xe4\xf1\xe8\xe5\xf1\ \xe8\xe5\xf1\xe8\xe5\xf2\xe9\xe6\xf2\xe9\xe5\xf4\xe9\xe5\xf3\xe9\ \xe5\xf1\xe6\xe2\xf0\xe4\xe0\xef\xe0\xdd\xee\xde\xdb\xed\xdb\xd8\ \xec\xda\xd6\xeb\xd8\xd3\xea\xd7\xd2\xea\xd6\xd2\xea\xd6\xd1\xea\ \xd6\xd2\xe9\xd6\xd3\xe8\xd6\xd2\xe7\xd4\xd1\xe5\xd3\xd0\xe4\xd3\ \xd0\xe2\xd0\xcd\xde\xcc\xc9\xdb\xc8\xc6\xd6\xc4\xc4\xd2\xc1\xc3\ \xcd\xbe\xc1\xc7\xb9\xbd\xc1\xb3\xbb\xbb\xaf\xb9\xb8\xad\xb8\xb6\ \xaa\xb6\xb3\xa9\xb5\xb2\xa8\xb5\xb3\xa9\xb5\xb2\xa8\xb5\xb2\xa8\ \xb5\xb4\xaa\xb6\xb6\xaa\xb5\xb8\xac\xb5\xbd\xb0\xb7\xc2\xb3\xb8\ \xc6\xb7\xba\xcb\xbc\xbe\x00\x00\x00\xd7\xcc\xcf\xd7\xcc\xcf\xd7\ \xcc\xd0\xd8\xcc\xce\xd8\xcc\xcf\xd9\xcd\xd0\xd9\xce\xd0\xda\xd0\ \xd2\xdb\xd0\xd3\xdc\xd1\xd4\xde\xd3\xd5\xdf\xd4\xd6\xe0\xd5\xd8\ \xde\xd3\xd6\xd7\xcd\xd1\xcd\xc3\xc9\xc1\xb6\xbe\xba\xad\xb6\xb8\ \xa8\xb0\xbb\xa9\xae\xc8\xb8\xb8\xd6\xc6\xc6\xdf\xd1\xd0\xe5\xd8\ \xd8\xe9\xdc\xdb\xea\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xec\xde\xdc\ \xed\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xee\xe0\xdd\xef\xe0\xdd\xef\ \xe2\xde\xf0\xe4\xe0\xf1\xe5\xe1\xf3\xe8\xe2\xf3\xe9\xe2\xf4\xe9\ \xe2\xf5\xeb\xe4\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\ \xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf3\xea\xf7\ \xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ \xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\ \xf3\xea\xf8\xf3\xe9\xf9\xf3\xea\xf8\xf2\xe9\xf9\xf1\xe8\xf9\xf2\ \xe9\xf9\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe7\ \xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xec\xe3\xf5\xeb\xe4\xf5\ \xea\xe3\xf4\xe8\xe2\xf3\xe6\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xef\xe3\ \xdf\xef\xe0\xde\xef\xe0\xde\xed\xdf\xdd\xed\xdf\xdd\xed\xde\xdc\ \xec\xdd\xdb\xec\xde\xdc\xec\xdd\xdb\xea\xdb\xd9\xe9\xda\xd8\xe8\ \xd8\xd6\xe7\xd7\xd6\xe7\xd5\xd4\xe5\xd5\xd3\xe4\xd5\xd5\xe3\xd4\ \xd5\xe4\xd6\xd7\xe4\xd7\xd9\xe5\xd7\xd9\xe6\xd9\xda\xe6\xd9\xd9\ \xe8\xd9\xda\xe8\xda\xdb\xe9\xdb\xdc\xeb\xdc\xdd\xec\xde\xdf\xee\ \xe1\xe1\xf0\xe3\xe3\xf0\xe6\xe5\xf0\xe7\xe4\xf1\xe8\xe5\xf2\xe9\ \xe6\xf2\xe8\xe5\xf2\xe7\xe4\xf1\xe6\xe3\xef\xe4\xe0\xee\xe0\xdd\ \xed\xdc\xd9\xeb\xda\xd7\xe9\xd7\xd4\xe8\xd4\xd2\xe7\xd3\xce\xe5\ \xd1\xcc\xe4\xcf\xca\xe3\xce\xc9\xe3\xcd\xc8\xe2\xcd\xc8\xe1\xcc\ \xc8\xe0\xcc\xc7\xdf\xcb\xc8\xde\xcb\xc8\xdd\xca\xc8\xdc\xca\xc7\ \xd9\xc7\xc5\xd7\xc5\xc4\xd5\xc4\xc5\xd3\xc3\xc5\xd0\xc2\xc4\xcc\ \xbf\xc2\xc6\xba\xc1\xc2\xb7\xbf\xc0\xb4\xbf\xbe\xb2\xbc\xba\xaf\ \xba\xb7\xac\xb7\xb4\xaa\xb7\xb3\xa9\xb6\xb1\xa7\xb4\xb2\xa7\xb3\ \xb3\xa7\xb2\xb7\xa9\xb3\xbf\xb1\xb6\xc5\xb6\xb9\xcb\xbb\xbe\xd1\ \xc1\xc1\x00\x00\x00\xd8\xcd\xcf\xd8\xcd\xcf\xd8\xcc\xcf\xd8\xcd\ \xcf\xd9\xce\xd1\xd9\xce\xd1\xd9\xce\xd1\xdb\xd0\xd3\xdc\xd1\xd4\ \xdc\xd1\xd4\xde\xd3\xd6\xdf\xd4\xd6\xdf\xd4\xd7\xde\xd5\xd8\xda\ \xd1\xd4\xd2\xc7\xce\xc5\xbb\xc3\xb8\xad\xb7\xb3\xa5\xae\xb5\xa3\ \xaa\xc2\xae\xb1\xd1\xc0\xbf\xdd\xce\xcc\xe5\xd6\xd4\xe9\xdd\xdb\ \xeb\xde\xdc\xea\xdd\xdb\xed\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xec\ \xe0\xdd\xed\xdf\xde\xef\xdf\xdd\xee\xe1\xdf\xef\xe2\xdf\xf0\xe4\ \xe0\xf1\xe5\xe1\xf3\xe8\xe3\xf3\xe9\xe2\xf4\xea\xe3\xf5\xeb\xe4\ \xf6\xec\xe5\xf6\xed\xe5\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\ \xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\ \xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\ \xf9\xf4\xeb\xf9\xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ \xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf9\xf3\ \xea\xf9\xf2\xe9\xfa\xf3\xea\xf8\xf1\xe8\xf9\xf1\xe9\xf9\xf1\xe9\ \xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf0\xe7\xf7\xee\xe5\xf7\ \xee\xe5\xf7\xee\xe5\xf5\xec\xe3\xf6\xec\xe3\xf5\xeb\xe4\xf3\xe9\ \xe2\xf2\xe7\xe1\xf2\xe6\xe1\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xdf\ \xef\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xed\xde\xdc\xed\xde\xdc\xed\ \xde\xdc\xec\xdd\xdb\xea\xdb\xd9\xe9\xd9\xd7\xe9\xd8\xd6\xe8\xd7\ \xd6\xe6\xd5\xd4\xe5\xd5\xd4\xe4\xd4\xd6\xe3\xd5\xd6\xe4\xd6\xd8\ \xe4\xd7\xd9\xe5\xd9\xdb\xe5\xd9\xdb\xe5\xd8\xda\xe6\xda\xda\xe7\ \xdb\xdb\xe8\xdc\xdc\xe9\xdd\xdd\xec\xdf\xe0\xec\xe0\xe0\xee\xe3\ \xe3\xf0\xe5\xe5\xf0\xe7\xe4\xf1\xe8\xe5\xf1\xe7\xe5\xf1\xe5\xe3\ \xef\xe3\xe1\xee\xe0\xde\xec\xdc\xdb\xeb\xda\xd8\xe8\xd5\xd4\xe5\ \xd3\xd0\xe2\xcf\xcc\xe0\xcb\xc8\xde\xc9\xc7\xdd\xc8\xc2\xdc\xc6\ \xc1\xdb\xc4\xbf\xda\xc4\xbf\xd9\xc2\xbd\xd9\xc2\xbd\xd9\xc3\xbf\ \xd8\xc3\xc0\xd8\xc3\xc1\xd8\xc5\xc4\xd8\xc7\xc6\xd8\xc6\xc6\xd8\ \xc7\xc8\xd5\xc6\xc7\xd5\xc7\xc9\xd4\xc7\xc9\xd1\xc5\xc8\xcc\xc1\ \xc8\xca\xc0\xc7\xc7\xbd\xc5\xc6\xbc\xc4\xc4\xb9\xc2\xc0\xb5\xbf\ \xba\xb0\xba\xb4\xaa\xb7\xb0\xa5\xb3\xaf\xa3\xb0\xaf\xa3\xaf\xb5\ \xa8\xb1\xbf\xb0\xb5\xc9\xb8\xba\xd1\xc0\xc0\xd7\xc6\xc4\x00\x00\ \x00\xd9\xce\xd1\xda\xcf\xd1\xdb\xcf\xd2\xda\xcf\xd2\xdb\xd0\xd3\ \xdb\xd0\xd3\xdb\xd1\xd4\xdc\xd2\xd5\xdd\xd2\xd5\xdd\xd3\xd6\xde\ \xd3\xd6\xdd\xd3\xd6\xde\xd5\xd8\xdf\xd6\xd9\xdd\xd3\xd7\xd5\xcc\ \xd1\xc7\xbe\xc6\xb6\xac\xb7\xad\xa0\xab\xab\x99\xa3\xb8\xa4\xa8\ \xcb\xb7\xb8\xda\xc7\xc6\xe3\xd3\xd1\xe8\xdb\xd8\xeb\xde\xdc\xed\ \xe0\xde\xee\xe1\xdf\xee\xe1\xdf\xee\xe1\xdf\xee\xe0\xde\xee\xe1\ \xdf\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe0\xf0\xe4\xe1\xf1\xe7\xe3\ \xf3\xe8\xe4\xf4\xea\xe3\xf4\xea\xe3\xf6\xec\xe5\xf6\xec\xe5\xf7\ \xee\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\ \xe9\xf7\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf9\ \xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\ \xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf3\xea\ \xf8\xf3\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf1\xe8\xf8\ \xf1\xe8\xf9\xf0\xe8\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\ \xe4\xf7\xed\xe5\xf6\xec\xe5\xf6\xec\xe5\xf4\xea\xe3\xf3\xe8\xe2\ \xf3\xe7\xe2\xf2\xe6\xe1\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xdf\xee\ \xe0\xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xed\xde\xdc\xec\xdd\ \xdb\xeb\xdb\xd9\xeb\xd9\xd8\xe9\xd7\xd6\xe8\xd6\xd4\xe5\xd6\xd4\ \xe4\xd5\xd3\xe4\xd4\xd5\xe4\xd6\xd7\xe3\xd6\xd8\xe4\xd7\xd9\xe4\ \xd7\xd9\xe5\xd8\xda\xe5\xd9\xda\xe6\xd9\xdb\xe8\xdb\xdd\xe8\xdb\ \xdd\xe9\xdc\xde\xeb\xde\xe0\xed\xe0\xe2\xee\xe3\xe3\xef\xe4\xe4\ \xef\xe5\xe5\xef\xe4\xe4\xef\xe3\xe2\xed\xe0\xe0\xec\xdd\xdc\xea\ \xdb\xd9\xe8\xd6\xd5\xe4\xd2\xd2\xe0\xcd\xcc\xdd\xc7\xc7\xd8\xc3\ \xc3\xd5\xbf\xbf\xd3\xbc\xba\xd2\xba\xb8\xd0\xb8\xb5\xd0\xb7\xb4\ \xcf\xb7\xb4\xd0\xb8\xb6\xd2\xbb\xb7\xd4\xbd\xbb\xd3\xbd\xbb\xd4\ \xc0\xbf\xd6\xc3\xc2\xd6\xc6\xc6\xd7\xc8\xc9\xd8\xca\xcb\xd9\xcc\ \xce\xd8\xcc\xce\xd7\xcb\xce\xd5\xcc\xcf\xd3\xca\xcf\xd2\xc8\xce\ \xd0\xc5\xcd\xcf\xc4\xcb\xcb\xc1\xc8\xc6\xbb\xc4\xbe\xb5\xbf\xb7\ \xad\xb9\xb0\xa6\xb3\xab\x9f\xae\xab\x9d\xac\xb3\xa4\xb0\xc0\xaf\ \xb5\xcc\xba\xbc\xd5\xc3\xc3\xdb\xca\xc7\x00\x00\x00\xd9\xce\xd1\ \xda\xcf\xd2\xdb\xd0\xd3\xdc\xd1\xd4\xdb\xd1\xd4\xdb\xd2\xd5\xdb\ \xd2\xd5\xdc\xd2\xd5\xdd\xd3\xd6\xdf\xd4\xd7\xde\xd4\xd7\xdd\xd4\ \xd7\xde\xd5\xd8\xe0\xd7\xda\xde\xd5\xd8\xd5\xcd\xd2\xc8\xbf\xc7\ \xb6\xac\xb8\xa5\x99\xa6\x9f\x90\x9c\xab\x96\x9d\xc2\xad\xad\xd3\ \xc0\xbe\xe0\xce\xcb\xe7\xd8\xd5\xeb\xdd\xdb\xed\xe0\xde\xee\xe1\ \xdf\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\ \xef\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf2\xe8\xe3\xf3\xe9\xe3\xf4\ \xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf8\xef\ \xe5\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf7\xf3\xea\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\ \xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf7\xf2\ \xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ \xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xe9\xf9\ \xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf1\ \xe8\xf8\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe5\ \xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe8\xe2\xf3\xe7\xe2\xf1\ \xe5\xe2\xf0\xe4\xe0\xef\xe3\xdf\xef\xe2\xde\xee\xe1\xdf\xee\xe0\ \xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xec\xdb\xda\ \xeb\xd8\xd7\xe9\xd7\xd5\xe8\xd6\xd5\xe6\xd6\xd4\xe5\xd5\xd4\xe4\ \xd5\xd5\xe3\xd5\xd6\xe3\xd5\xd6\xe3\xd6\xd8\xe3\xd6\xd8\xe5\xd8\ \xda\xe6\xd9\xdb\xe6\xd9\xdb\xe8\xdb\xdd\xe8\xdb\xdd\xea\xdd\xdf\ \xec\xdf\xe1\xec\xe0\xe2\xed\xe2\xe3\xed\xe4\xe3\xee\xe4\xe4\xee\ \xe1\xe1\xec\xde\xdf\xea\xdb\xdc\xe8\xd8\xd9\xe4\xd4\xd5\xe1\xcf\ \xcf\xdd\xc9\xcb\xd8\xc3\xc4\xd2\xbd\xbf\xcc\xb7\xb8\xc8\xb1\xb3\ \xc4\xac\xae\xc1\xa7\xaa\xbf\xa6\xa8\xc0\xa8\xa9\xc4\xac\xae\xc8\ \xb1\xb1\xcd\xb6\xb4\xcf\xb9\xb7\xd1\xbc\xba\xd3\xbf\xbe\xd4\xc2\ \xc3\xd6\xc6\xc7\xd7\xc9\xca\xd9\xcc\xcd\xdb\xce\xd0\xdb\xd0\xd3\ \xda\xd1\xd4\xda\xd1\xd5\xd8\xd0\xd5\xd8\xcf\xd5\xd8\xce\xd4\xd6\ \xcb\xd2\xd0\xc8\xcf\xcb\xc1\xca\xc2\xb9\xc3\xb9\xb0\xbc\xb1\xa7\ \xb6\xaa\x9d\xaf\xa7\x9a\xab\xb0\xa1\xae\xbe\xad\xb5\xcc\xbb\xbd\ \xd7\xc5\xc5\xdf\xcd\xca\x00\x00\x00\xd9\xce\xd1\xda\xcf\xd2\xdb\ \xd0\xd3\xdc\xd2\xd5\xdc\xd2\xd5\xdb\xd2\xd5\xdb\xd2\xd5\xdd\xd4\ \xd7\xdd\xd4\xd7\xdf\xd4\xd7\xde\xd5\xd8\xde\xd5\xd8\xde\xd5\xd8\ \xdf\xd6\xd9\xdd\xd4\xd8\xd3\xcc\xd2\xc9\xc1\xc9\xb7\xae\xba\x9f\ \x97\xa6\x8f\x83\x93\x98\x85\x90\xb4\x9e\xa1\xcb\xb6\xb5\xd9\xc6\ \xc3\xe3\xd2\xd0\xe9\xda\xd8\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\ \xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe1\xf0\ \xe4\xe1\xf0\xe5\xe1\xf3\xe8\xe4\xf4\xe9\xe4\xf4\xea\xe3\xf5\xeb\ \xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xef\xe6\xf6\xf0\xe7\ \xf7\xf0\xe7\xf9\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\ \xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf9\xf4\xeb\xf9\xf4\ \xeb\xf9\xf4\xeb\xf9\xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\ \xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf7\xf3\xea\xf7\xf3\xe9\xf7\xf2\xea\xf8\xf3\xe9\xf9\xf3\ \xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf1\xe8\xf9\xef\xe6\ \xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xeb\xe5\xf5\ \xeb\xe4\xf5\xe9\xe3\xf4\xe8\xe2\xf3\xe7\xe2\xf2\xe6\xe2\xf0\xe4\ \xe0\xee\xe3\xde\xee\xe2\xdf\xee\xe1\xdf\xee\xe0\xde\xef\xe0\xdd\ \xee\xdf\xdd\xed\xde\xdc\xed\xdc\xdb\xeb\xda\xd9\xe9\xd7\xd6\xe8\ \xd6\xd5\xe7\xd5\xd4\xe5\xd5\xd3\xe4\xd5\xd4\xe3\xd5\xd6\xe2\xd4\ \xd5\xe3\xd5\xd6\xe3\xd5\xd7\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd9\xdb\ \xe6\xd9\xdb\xe7\xdb\xdd\xe7\xdc\xde\xe9\xdd\xdf\xea\xdf\xe1\xeb\ \xe0\xe2\xec\xe1\xe3\xee\xe2\xe4\xed\xe1\xe2\xec\xdf\xe0\xe9\xdb\ \xdc\xe5\xd7\xd8\xe2\xd1\xd4\xde\xcc\xcf\xd9\xc7\xca\xd4\xbf\xc3\ \xcd\xb7\xbc\xc5\xaf\xb4\xbb\xa4\xad\xb4\x9b\xa5\xad\x94\xa0\xa8\ \x90\x9c\xa8\x92\x9e\xb0\x9a\xa2\xb9\xa3\xa8\xc1\xab\xad\xc7\xb1\ \xb2\xcd\xb8\xb7\xd0\xbc\xbb\xd2\xc0\xc1\xd4\xc4\xc5\xd7\xc8\xc9\ \xd9\xcb\xcd\xdc\xcf\xd1\xdd\xd2\xd4\xdf\xd5\xd7\xdf\xd6\xd9\xdf\ \xd6\xdb\xdd\xd6\xdb\xde\xd7\xdb\xdf\xd6\xda\xdc\xd2\xd8\xd6\xcd\ \xd4\xd0\xc8\xcf\xc7\xbe\xc8\xbe\xb4\xc1\xb5\xaa\xba\xa9\x9d\xb0\ \xa4\x95\xab\xac\x9c\xad\xbc\xab\xb5\xcb\xba\xbe\xd8\xc6\xc8\xe1\ \xd0\xce\x00\x00\x00\xd9\xce\xd2\xda\xcf\xd2\xdb\xd0\xd3\xdc\xd2\ \xd5\xdb\xd3\xd6\xdc\xd3\xd6\xde\xd5\xd8\xde\xd5\xd8\xe0\xd6\xd9\ \xe1\xd6\xd9\xe0\xd5\xd8\xde\xd5\xd8\xde\xd5\xd8\xde\xd5\xd9\xdb\ \xd2\xd7\xd3\xcc\xd1\xca\xc2\xca\xbb\xb2\xbe\xa1\x9a\xa9\x83\x7a\ \x8d\x80\x72\x82\xa0\x8c\x93\xbf\xaa\xaa\xd1\xbd\xba\xde\xcb\xc8\ \xe5\xd4\xd2\xe9\xdb\xd9\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xed\ \xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe1\xf0\xe4\xe2\xf1\xe6\ \xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe4\xf4\xea\xe4\xf5\xeb\xe3\ \xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xf0\xe6\xf7\xf0\xe7\xf7\ \xf0\xe7\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\ \xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\ \xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\ \xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf1\xe8\xf8\xf2\xe8\ \xf9\xf1\xe9\xf8\xf1\xe8\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xef\xe6\xf7\ \xee\xe5\xf7\xee\xe5\xf6\xec\xe4\xf5\xec\xe4\xf4\xea\xe3\xf3\xe7\ \xe1\xf2\xe7\xe2\xf2\xe6\xe2\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xde\ \xef\xdf\xde\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xde\xed\xe0\xde\xed\ \xde\xdc\xed\xdd\xda\xeb\xd9\xd9\xe9\xd8\xd6\xe8\xd6\xd5\xe6\xd5\ \xd4\xe3\xd4\xd3\xe4\xd4\xd4\xe2\xd3\xd4\xe2\xd4\xd5\xe3\xd5\xd6\ \xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe5\xd9\xdb\xe5\xda\xdc\xe7\ \xdc\xde\xe7\xdc\xdf\xe8\xdd\xdf\xea\xdf\xe1\xeb\xe0\xe2\xec\xe1\ \xe3\xec\xe0\xe2\xec\xdf\xe1\xe9\xdc\xde\xe6\xd8\xdb\xe1\xd3\xd6\ \xdc\xce\xd0\xd8\xc6\xca\xd1\xbe\xc3\xc8\xb3\xbc\xbe\xa9\xb4\xb3\ \x9e\xad\xa8\x92\xa6\x9a\x87\x9e\x8c\x7b\x95\x85\x77\x91\x92\x81\ \x97\xa5\x91\x9f\xb2\x9e\xa6\xbe\xa9\xad\xc6\xb2\xb5\xcd\xb9\xbb\ \xd1\xc0\xc1\xd4\xc4\xc5\xd7\xc9\xca\xdb\xcd\xcf\xdd\xd0\xd2\xde\ \xd3\xd5\xe1\xd6\xd8\xe2\xd9\xdc\xe4\xdb\xde\xe4\xdb\xdf\xe5\xdc\ \xdf\xe5\xdc\xdf\xe4\xdb\xde\xe1\xd7\xdc\xdc\xd2\xd8\xd5\xcc\xd3\ \xcc\xc3\xce\xc3\xb9\xc5\xba\xaf\xbe\xae\xa3\xb5\xa7\x99\xae\xad\ \x9e\xb0\xbd\xad\xb8\xcb\xbb\xc1\xd7\xc7\xc9\xe1\xd0\xcf\x00\x00\ \x00\xd7\xce\xd3\xda\xcf\xd2\xdb\xd1\xd4\xdd\xd3\xd6\xdc\xd3\xd6\ \xde\xd5\xd8\xdf\xd6\xd9\xe0\xd7\xda\xe1\xd6\xd9\xe0\xd6\xd9\xe0\ \xd5\xd8\xdf\xd6\xd9\xdf\xd6\xd9\xde\xd5\xd9\xdc\xd3\xd8\xd4\xcd\ \xd2\xcc\xc4\xcc\xbf\xb8\xc3\xa9\xa4\xb2\x87\x81\x95\x71\x67\x7a\ \x89\x79\x86\xaf\x9a\x9e\xc6\xb1\xb0\xd5\xc2\xbf\xde\xcd\xcb\xe5\ \xd5\xd3\xe8\xda\xd8\xe9\xdc\xdb\xea\xdc\xdb\xeb\xde\xdd\xec\xde\ \xde\xed\xe0\xde\xee\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf2\xe7\xe3\ \xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\xe4\xf4\xe9\xe3\xf5\xeb\xe4\xf5\ \xec\xe4\xf7\xed\xe6\xf7\xee\xe6\xf7\xf0\xe7\xf8\xf0\xe7\xf6\xf2\ \xe9\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\ \xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\ \xf2\xe9\xf9\xf4\xeb\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\ \xea\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\ \xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf7\xf1\xe8\xf9\xf2\xe9\xf8\ \xf1\xe8\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\ \xe5\xf5\xec\xe4\xf5\xeb\xe4\xf4\xe8\xe2\xf3\xe7\xe1\xf2\xe6\xe1\ \xf1\xe5\xe1\xef\xe4\xdf\xef\xe1\xdf\xef\xe0\xde\xee\xdf\xdd\xed\ \xdf\xdd\xed\xde\xdc\xed\xdf\xdd\xee\xdf\xdd\xec\xdd\xdb\xeb\xda\ \xd9\xea\xd9\xd8\xe8\xd8\xd7\xe6\xd6\xd5\xe4\xd5\xd3\xe3\xd5\xd3\ \xe3\xd4\xd5\xe2\xd3\xd4\xe2\xd4\xd5\xe2\xd5\xd7\xe3\xd6\xd8\xe5\ \xd8\xda\xe5\xd9\xdb\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\ \xde\xe8\xdd\xe0\xe9\xde\xe1\xea\xdf\xe1\xeb\xe0\xe2\xea\xdf\xe1\ \xe9\xdd\xdf\xe7\xda\xdc\xe4\xd6\xd9\xdf\xd1\xd5\xd9\xcb\xd0\xd2\ \xc2\xca\xc9\xb7\xc2\xbf\xac\xb9\xb4\xa1\xb3\xa8\x96\xab\x9a\x89\ \xa3\x88\x7b\x9a\x7b\x72\x92\x83\x78\x93\x98\x89\x9c\xaa\x99\xa5\ \xb8\xa6\xae\xc2\xb1\xb5\xca\xb8\xbb\xd1\xc1\xc3\xd6\xc7\xc9\xdb\ \xcd\xce\xdf\xd1\xd2\xe2\xd5\xd5\xe4\xd7\xd8\xe5\xda\xdc\xe6\xdc\ \xde\xe7\xde\xe0\xe9\xdf\xe3\xe9\xe0\xe3\xea\xe1\xe4\xea\xe1\xe3\ \xea\xe0\xe3\xe6\xdd\xe0\xe1\xd7\xdc\xdb\xd1\xd7\xd3\xca\xd2\xcb\ \xc1\xcc\xc2\xb7\xc4\xb7\xad\xbd\xb1\xa5\xb6\xb3\xa5\xb7\xbf\xb0\ \xbd\xcd\xbe\xc5\xd8\xc8\xcb\xe1\xd1\xd1\x00\x00\x00\xd7\xce\xd4\ \xda\xd0\xd5\xda\xd1\xd5\xdc\xd3\xd6\xdc\xd3\xd6\xde\xd5\xd8\xde\ \xd5\xd8\xe0\xd7\xda\xe2\xd7\xda\xe1\xd6\xd9\xe0\xd5\xd8\xdf\xd6\ \xd9\xdf\xd6\xd9\xde\xd5\xda\xdb\xd3\xd8\xd6\xce\xd4\xce\xc7\xce\ \xc3\xbc\xc7\xaf\xaa\xb8\x95\x90\xa2\x7e\x76\x89\x7f\x74\x85\x99\ \x87\x93\xb6\xa1\xa3\xc9\xb4\xb5\xd5\xc3\xc1\xde\xcd\xcc\xe3\xd5\ \xd3\xe5\xd8\xd8\xe8\xdb\xda\xe9\xdb\xdc\xea\xdc\xdd\xec\xde\xdd\ \xec\xdf\xdd\xee\xe1\xdf\xef\xe3\xe1\xf0\xe4\xe2\xf1\xe5\xe2\xf2\ \xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe3\xf4\xea\xe4\xf6\xec\ \xe5\xf7\xed\xe6\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf2\xe9\ \xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ \xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\ \xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\ \xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf7\ \xf2\xe8\xf7\xf2\xe8\xf7\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf0\ \xe7\xf8\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe5\xf5\xeb\xe4\ \xf4\xe9\xe3\xf3\xe7\xe1\xf2\xe6\xe0\xf0\xe4\xe1\xf0\xe4\xe0\xf0\ \xe2\xdf\xee\xe0\xde\xee\xdf\xdd\xee\xdf\xdd\xed\xde\xdc\xec\xdd\ \xdb\xec\xdd\xdb\xeb\xdc\xda\xeb\xdb\xd9\xe9\xda\xd8\xe8\xd8\xd7\ \xe7\xd8\xd6\xe6\xd7\xd5\xe5\xd5\xd4\xe3\xd4\xd4\xe2\xd4\xd5\xe2\ \xd4\xd5\xe1\xd3\xd5\xe2\xd4\xd6\xe4\xd7\xd9\xe5\xd8\xda\xe5\xd8\ \xda\xe5\xd9\xdb\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe7\xdc\xdf\ \xe9\xde\xe1\xe9\xdf\xe2\xea\xdf\xe2\xe9\xde\xe1\xe7\xdc\xdf\xe4\ \xd9\xdc\xe1\xd5\xd9\xdd\xd0\xd5\xd7\xc8\xcf\xce\xbe\xc9\xc4\xb4\ \xc2\xba\xa9\xbd\xb0\xa0\xb7\xa6\x99\xb1\x9e\x90\xab\x95\x89\xa4\ \x95\x89\xa2\xa0\x94\xa7\xae\x9f\xac\xba\xab\xb3\xc4\xb4\xb9\xcb\ \xbc\xbf\xd3\xc4\xc6\xd9\xcb\xcd\xde\xd0\xd2\xe4\xd6\xd7\xe6\xda\ \xda\xe9\xdc\xdd\xe9\xde\xdf\xea\xdf\xe1\xec\xe1\xe3\xec\xe2\xe4\ \xed\xe5\xe6\xee\xe7\xe8\xee\xe8\xe9\xee\xe7\xe8\xee\xe6\xe7\xea\ \xe1\xe3\xe6\xdc\xdf\xe0\xd6\xdc\xda\xd0\xd7\xd3\xc9\xd2\xcb\xc0\ \xcb\xc2\xb7\xc3\xbb\xaf\xbe\xbc\xaf\xbe\xc6\xb8\xc3\xd0\xc2\xc9\ \xda\xcb\xce\xe2\xd2\xd4\x00\x00\x00\xd7\xcf\xd5\xda\xd1\xd6\xda\ \xd1\xd7\xdb\xd2\xd6\xdc\xd3\xd7\xdd\xd4\xd7\xde\xd5\xd8\xdf\xd5\ \xd8\xe1\xd5\xd8\xe0\xd5\xd8\xe0\xd5\xd8\xdf\xd5\xd8\xde\xd5\xd8\ \xde\xd6\xda\xdc\xd5\xda\xd8\xd1\xd7\xd2\xcb\xd2\xc8\xc1\xcb\xb8\ \xb1\xbe\xa5\x9f\xaf\x94\x90\xa1\x8c\x84\x95\x94\x87\x96\xa5\x93\ \x9d\xba\xa6\xa9\xcb\xb7\xb7\xd6\xc4\xc3\xdd\xce\xcc\xe1\xd3\xd2\ \xe5\xd7\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdc\xdc\xea\xdc\xdd\xeb\ \xde\xdc\xec\xdf\xdd\xee\xe1\xdf\xef\xe2\xe0\xef\xe3\xe0\xf0\xe5\ \xe1\xf1\xe5\xe2\xf2\xe7\xe3\xf4\xea\xe3\xf4\xea\xe3\xf6\xec\xe5\ \xf7\xee\xe7\xf6\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ \xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf6\xf1\xe8\xf7\xf1\ \xe8\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf9\xf1\xe8\ \xf9\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ \xf0\xe7\xf9\xf2\xe9\xf9\xf1\xe8\xf8\xf1\xe8\xf9\xf1\xe8\xf9\xf2\ \xe9\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xee\xe5\ \xf7\xee\xe5\xf6\xed\xe4\xf6\xeb\xe3\xf4\xea\xe3\xf4\xe8\xe2\xf3\ \xe7\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xef\xe3\xdf\xee\xe1\xde\xee\xdf\ \xdd\xee\xdf\xdd\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\xe9\xda\xd8\ \xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe7\xd8\xd6\xe6\xd7\xd5\xe5\ \xd6\xd4\xe4\xd4\xd4\xe2\xd4\xd5\xe1\xd3\xd4\xe0\xd2\xd4\xe2\xd4\ \xd5\xe3\xd5\xd7\xe3\xd7\xd9\xe5\xd7\xd9\xe4\xd9\xdb\xe3\xd8\xdb\ \xe3\xd8\xdb\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe7\xdd\xe0\xe6\ \xde\xe1\xe7\xdd\xe0\xe6\xdd\xe0\xe6\xdc\xdf\xe4\xd9\xdc\xe0\xd4\ \xda\xdc\xd0\xd6\xd6\xc8\xcf\xce\xbf\xca\xc4\xb5\xc4\xbc\xae\xc0\ \xb6\xa9\xbe\xb1\xa4\xbb\xad\xa1\xb7\xad\xa1\xb5\xb1\xa3\xb3\xb8\ \xaa\xb6\xc0\xb1\xb9\xc7\xb8\xbd\xcf\xc0\xc3\xd4\xc7\xc9\xdc\xce\ \xcf\xe1\xd4\xd6\xe6\xd9\xdb\xea\xde\xdf\xed\xe1\xe1\xed\xe2\xe2\ \xed\xe2\xe4\xef\xe4\xe6\xee\xe4\xe6\xee\xe6\xe7\xef\xe7\xe8\xef\ \xe8\xe9\xf0\xe8\xe9\xf0\xe8\xe9\xf0\xe8\xe9\xec\xe4\xe5\xe9\xdf\ \xe2\xe4\xdb\xdf\xe0\xd6\xdc\xda\xcf\xd7\xd3\xc8\xd0\xcb\xc0\xcb\ \xc5\xba\xc6\xc6\xbb\xc6\xcc\xc0\xc9\xd3\xc6\xcc\xdb\xcd\xd1\xe2\ \xd4\xd5\x00\x00\x00\xd6\xce\xd6\xd8\xd0\xd7\xd9\xd1\xd6\xda\xd2\ \xd7\xdd\xd3\xd9\xde\xd4\xd8\xdd\xd4\xd7\xde\xd5\xd7\xdf\xd4\xd7\ \xe0\xd5\xd8\xde\xd4\xd7\xdd\xd4\xd7\xde\xd4\xd9\xde\xd5\xdb\xde\ \xd5\xdb\xdc\xd5\xd9\xd8\xd1\xd6\xd1\xc9\xd0\xc6\xbe\xc8\xb8\xb1\ \xbd\xa9\xa4\xb3\x9c\x98\xa9\x9a\x91\xa1\xa0\x92\xa0\xac\x9b\xa3\ \xbc\xa9\xac\xca\xb8\xb9\xd5\xc4\xc3\xdc\xcd\xcb\xe1\xd2\xd3\xe4\ \xd6\xd7\xe5\xd8\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdb\xdb\xea\xdd\ \xdb\xeb\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe0\ \xf0\xe4\xe0\xf2\xe6\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf6\xec\xe5\xf7\ \xee\xe7\xf6\xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf1\ \xe8\xf8\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\ \xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf8\ \xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\ \xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\ \xf7\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf5\ \xeb\xe3\xf5\xea\xe3\xf4\xe8\xe2\xf3\xe7\xe1\xf2\xe6\xe1\xf1\xe5\ \xe0\xf0\xe4\xe0\xef\xe2\xdf\xee\xe0\xde\xed\xde\xdc\xec\xdd\xdb\ \xeb\xdc\xdb\xea\xdb\xda\xea\xdb\xd9\xe9\xd9\xd8\xe9\xda\xd8\xe8\ \xd9\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe6\xd7\xd5\xe4\xd5\xd4\xe3\xd4\ \xd4\xe3\xd4\xd5\xe1\xd3\xd5\xe1\xd3\xd5\xe2\xd4\xd6\xe3\xd6\xd8\ \xe4\xd7\xd9\xe4\xd8\xda\xe3\xd7\xda\xe3\xd7\xda\xe3\xd8\xdb\xe5\ \xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe6\xdd\xe0\xe6\xdd\xe1\xe6\xdd\ \xe0\xe5\xdc\xdf\xe5\xdb\xde\xe3\xd8\xdc\xe0\xd4\xda\xdc\xd0\xd6\ \xd8\xca\xd2\xd2\xc3\xce\xcb\xbd\xc9\xc7\xba\xc8\xc3\xb7\xc6\xc0\ \xb4\xc3\xc0\xb3\xc1\xc1\xb3\xc0\xc3\xb5\xc0\xc9\xb9\xc2\xcd\xbe\ \xc4\xd2\xc3\xc7\xd8\xca\xcc\xde\xd0\xd2\xe3\xd6\xd8\xe8\xdc\xdd\ \xec\xe0\xe1\xee\xe4\xe4\xef\xe6\xe6\xef\xe6\xe6\xf0\xe5\xe7\xee\ \xe6\xe7\xee\xe4\xe6\xee\xe6\xe7\xee\xe7\xe8\xef\xe7\xe8\xef\xe7\ \xe8\xef\xe7\xe8\xee\xe6\xe7\xec\xe4\xe6\xea\xe1\xe4\xe7\xde\xe1\ \xe3\xd9\xde\xdf\xd4\xdb\xd9\xce\xd6\xd3\xc8\xd1\xd0\xc5\xcf\xd0\ \xc4\xcd\xd3\xc6\xce\xd8\xcb\xd1\xdf\xd1\xd4\xe4\xd7\xd9\x00\x00\ \x00\xd6\xcf\xd8\xd7\xd0\xd7\xd8\xd1\xd7\xda\xd3\xd8\xdb\xd4\xd8\ \xdd\xd3\xd9\xdd\xd4\xd7\xdd\xd3\xd8\xdd\xd4\xd8\xdd\xd4\xd7\xdd\ \xd4\xd7\xdd\xd4\xd8\xde\xd4\xda\xdf\xd5\xdb\xdf\xd5\xdc\xdf\xd7\ \xdc\xdd\xd6\xdb\xd9\xd2\xd7\xd3\xcc\xd2\xc9\xc2\xca\xbd\xb7\xc2\ \xb0\xab\xb9\xa4\x9e\xaf\xa3\x9a\xa8\xa8\x9b\xa7\xb1\xa2\xa9\xbe\ \xad\xb0\xcb\xb9\xba\xd4\xc4\xc4\xdc\xcc\xcc\xdf\xd2\xd3\xe3\xd5\ \xd6\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xda\xe9\xdb\xdb\ \xe9\xdc\xdb\xeb\xdd\xdb\xec\xdf\xdd\xee\xdf\xdd\xef\xe1\xde\xf0\ \xe4\xe0\xf2\xe7\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf7\xed\xe6\xf7\xee\ \xe6\xf8\xef\xe6\xf7\xef\xe6\xf6\xef\xe7\xf7\xf0\xe7\xf7\xf0\xe7\ \xf7\xf0\xe7\xf7\xf0\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf7\xf0\xe7\xf8\ \xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\ \xe5\xf7\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xef\xe6\xf7\xee\xe5\ \xf8\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe5\xf7\ \xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf5\xec\xe3\xf5\xea\xe2\xf4\xe8\ \xe2\xf3\xe7\xe1\xf2\xe6\xe1\xf2\xe6\xe2\xf0\xe4\xe0\xef\xe3\xdf\ \xef\xe2\xdf\xee\xe1\xdf\xed\xdf\xdd\xec\xdd\xdb\xeb\xdc\xda\xe9\ \xdb\xdb\xe8\xd9\xda\xe8\xd9\xda\xe7\xd9\xd9\xe7\xd8\xd8\xe7\xd8\ \xd7\xe6\xd7\xd5\xe6\xd6\xd5\xe4\xd5\xd5\xe3\xd3\xd4\xe2\xd4\xd5\ \xe2\xd4\xd6\xe2\xd5\xd7\xe3\xd6\xd8\xe3\xd7\xd9\xe4\xd7\xd9\xe2\ \xd7\xda\xe2\xd7\xda\xe2\xd7\xda\xe3\xd8\xdb\xe3\xd9\xdc\xe4\xda\ \xdd\xe4\xdb\xde\xe6\xdd\xdf\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\ \xe5\xdb\xdf\xe4\xd8\xde\xe1\xd6\xdb\xde\xd2\xd8\xdc\xcf\xd5\xd8\ \xcc\xd3\xd5\xc8\xd1\xd2\xc5\xcf\xd0\xc2\xcd\xcf\xc1\xcb\xce\xc0\ \xca\xcf\xc1\xc9\xd2\xc3\xc9\xd4\xc5\xcb\xd7\xca\xcd\xdb\xcd\xcf\ \xe0\xd2\xd4\xe5\xd8\xd9\xe9\xdd\xde\xed\xe1\xe1\xef\xe5\xe6\xf0\ \xe8\xe8\xf0\xe8\xe8\xef\xe7\xe7\xee\xe6\xe7\xed\xe5\xe7\xee\xe6\ \xe7\xee\xe6\xe8\xef\xe7\xe8\xef\xe6\xe8\xee\xe6\xe7\xee\xe5\xe8\ \xee\xe5\xe7\xed\xe4\xe6\xeb\xe2\xe5\xe9\xe0\xe3\xe6\xdd\xe0\xe2\ \xd8\xdf\xde\xd4\xda\xdb\xd1\xd7\xd9\xce\xd4\xd8\xcc\xd3\xdb\xce\ \xd4\xde\xd2\xd6\xe2\xd5\xd8\xe6\xd9\xdb\x00\x00\x00\xd6\xd1\xd9\ \xd6\xd0\xd8\xd9\xd2\xd9\xda\xd3\xd9\xdb\xd4\xd9\xdb\xd4\xda\xdc\ \xd4\xd9\xdd\xd2\xd9\xdc\xd3\xd7\xdc\xd3\xd6\xdd\xd3\xd8\xde\xd4\ \xda\xdf\xd5\xda\xdf\xd5\xdb\xe0\xd6\xdc\xe0\xd5\xdb\xde\xd7\xdc\ \xdf\xd6\xdb\xdd\xd3\xd9\xd7\xcf\xd5\xce\xc7\xcf\xc3\xbc\xc7\xb5\ \xaf\xbd\xab\xa5\xb3\xa9\xa0\xac\xad\xa0\xab\xb4\xa6\xad\xc0\xb1\ \xb4\xca\xba\xbc\xd4\xc4\xc4\xda\xcb\xcc\xde\xd0\xd1\xe2\xd4\xd5\ \xe5\xd7\xd8\xe5\xd8\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\xe8\ \xda\xda\xe9\xdc\xda\xec\xde\xdc\xee\xdf\xdc\xef\xe3\xdf\xf2\xe6\ \xe1\xf3\xe7\xe2\xf3\xe9\xe2\xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\ \xf6\xec\xe6\xf7\xee\xe6\xf7\xee\xe5\xf7\xee\xe6\xf8\xee\xe5\xf8\ \xef\xe6\xf8\xef\xe6\xf7\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xed\ \xe4\xf5\xec\xe4\xf6\xeb\xe4\xf6\xec\xe4\xf6\xea\xe2\xf6\xeb\xe3\ \xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xea\xe2\xf6\xeb\xe3\xf5\ \xe9\xe1\xf6\xea\xe2\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\ \xe3\xf6\xeb\xe3\xf4\xe9\xe1\xf3\xe7\xe0\xf3\xe7\xe1\xf1\xe5\xdf\ \xf1\xe5\xdf\xf1\xe5\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe4\xe0\xee\ \xe1\xdf\xed\xde\xdc\xec\xdd\xdb\xea\xdc\xdc\xe8\xda\xdb\xe7\xda\ \xdb\xe7\xd9\xda\xe6\xd8\xd9\xe7\xd7\xd9\xe7\xd8\xd7\xe5\xd5\xd6\ \xe5\xd6\xd5\xe4\xd5\xd6\xe3\xd4\xd5\xe2\xd5\xd6\xe2\xd5\xd6\xe2\ \xd5\xd7\xe3\xd6\xd8\xe3\xd7\xd9\xe2\xd7\xda\xe2\xd7\xda\xe2\xd7\ \xda\xe1\xd6\xd9\xe1\xd5\xdb\xe1\xd8\xdc\xe2\xd9\xdc\xe4\xda\xde\ \xe5\xdb\xe1\xe6\xdc\xe2\xe6\xdd\xe2\xe7\xde\xe3\xe6\xdd\xe1\xe6\ \xda\xe1\xe4\xd9\xdc\xe2\xd7\xdb\xe0\xd4\xda\xdf\xd3\xd9\xdc\xd0\ \xd6\xda\xce\xd4\xd9\xcd\xd3\xd8\xcc\xd2\xd9\xcb\xd1\xd9\xcc\xd1\ \xda\xcc\xd0\xdd\xcf\xd3\xdf\xd3\xd4\xe3\xd5\xd6\xe6\xd9\xd9\xea\ \xdd\xdd\xee\xe2\xe2\xf0\xe6\xe6\xf1\xe8\xe8\xef\xe8\xe8\xf0\xe8\ \xe8\xef\xe6\xe6\xf0\xe5\xe7\xef\xe5\xe6\xed\xe6\xe6\xee\xe6\xe7\ \xef\xe6\xe9\xed\xe4\xe7\xee\xe5\xe8\xed\xe4\xe7\xed\xe4\xe7\xec\ \xe3\xe6\xec\xe3\xe6\xea\xe1\xe4\xe8\xdf\xe2\xe6\xdd\xe0\xe2\xd9\ \xdd\xe1\xd6\xda\xdf\xd4\xd8\xdf\xd4\xd7\xe0\xd5\xd8\xe1\xd6\xd9\ \xe4\xd7\xda\xe7\xda\xdc\x00\x00\x00\xd7\xd2\xdb\xd7\xd2\xdb\xd9\ \xd3\xda\xda\xd3\xda\xdb\xd4\xda\xdc\xd4\xda\xdb\xd5\xda\xdb\xd3\ \xd8\xdc\xd2\xd8\xdc\xd2\xd8\xdc\xd2\xd9\xdd\xd3\xd9\xde\xd5\xda\ \xe0\xd6\xdc\xe1\xd7\xdd\xe1\xd7\xdd\xe1\xd7\xdd\xe1\xd7\xdd\xe0\ \xd7\xdc\xdf\xd5\xda\xda\xd1\xd7\xd1\xc9\xd0\xc6\xbe\xc7\xbc\xb5\ \xc0\xb3\xaa\xb7\xaf\xa5\xb0\xb1\xa4\xaf\xb9\xaa\xb1\xc0\xb0\xb5\ \xc9\xb8\xbb\xd2\xc2\xc4\xd8\xc9\xca\xdd\xcf\xd0\xe1\xd3\xd4\xe3\ \xd5\xd6\xe4\xd6\xd7\xe3\xd7\xd7\xe4\xd7\xd7\xe6\xd8\xd9\xe7\xda\ \xda\xe9\xdc\xda\xeb\xde\xdc\xee\xe0\xde\xef\xe3\xdf\xf1\xe5\xe1\ \xf2\xe7\xe3\xf3\xe9\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf5\ \xeb\xe4\xf6\xec\xe5\xf6\xeb\xe4\xf6\xec\xe4\xf6\xec\xe5\xf6\xec\ \xe5\xf6\xec\xe4\xf5\xea\xe3\xf4\xe9\xe2\xf5\xe9\xe2\xf4\xe9\xe1\ \xf4\xe8\xe1\xf3\xe8\xe0\xf3\xe8\xe0\xf3\xe7\xdf\xf4\xe8\xe0\xf4\ \xe8\xe0\xf4\xe8\xdf\xf4\xe7\xdf\xf4\xe6\xdf\xf3\xe6\xde\xf3\xe6\ \xde\xf3\xe7\xdf\xf3\xe8\xe0\xf4\xe9\xe0\xf3\xe8\xe0\xf2\xe7\xdf\ \xf2\xe6\xdf\xf2\xe5\xde\xf2\xe4\xde\xf1\xe4\xde\xf0\xe3\xdf\xef\ \xe3\xdf\xf0\xe4\xe0\xef\xe3\xdf\xef\xe2\xdf\xee\xe0\xdd\xed\xde\ \xdc\xec\xdd\xda\xeb\xdb\xda\xe7\xd9\xda\xe7\xd9\xda\xe7\xd9\xda\ \xe6\xd8\xd9\xe6\xd8\xd9\xe6\xd7\xd8\xe5\xd6\xd6\xe5\xd5\xd6\xe3\ \xd5\xd6\xe2\xd4\xd6\xe3\xd5\xd7\xe2\xd6\xd8\xe3\xd6\xd8\xe1\xd5\ \xd9\xe1\xd6\xd9\xe1\xd6\xd9\xe0\xd5\xd9\xdf\xd5\xd9\xde\xd5\xda\ \xdf\xd5\xdb\xe0\xd6\xdc\xe2\xd8\xdd\xe4\xda\xdf\xe5\xdc\xe1\xe6\ \xdc\xe2\xe7\xdd\xe2\xe8\xde\xe3\xe7\xdd\xe3\xe6\xdd\xe2\xe6\xdc\ \xdf\xe5\xda\xdd\xe5\xda\xdd\xe3\xd8\xdb\xe2\xd6\xda\xe1\xd5\xda\ \xe0\xd5\xd9\xe0\xd3\xd8\xe1\xd3\xd7\xe1\xd3\xd7\xe2\xd4\xd7\xe3\ \xd6\xd8\xe6\xd9\xda\xe8\xda\xdb\xeb\xdd\xde\xed\xe1\xe1\xf0\xe5\ \xe5\xf1\xe8\xe7\xf1\xe9\xe7\xf1\xe8\xe7\xf0\xe7\xe7\xf0\xe6\xe7\ \xf0\xe5\xe7\xef\xe6\xe7\xee\xe6\xe7\xed\xe5\xe7\xed\xe4\xe7\xed\ \xe4\xe7\xed\xe4\xe7\xec\xe3\xe6\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\ \xe4\xea\xe1\xe4\xea\xe1\xe4\xe8\xdf\xe2\xe6\xdd\xe0\xe4\xda\xdd\ \xe5\xda\xdc\xe5\xd9\xdb\xe4\xd9\xdb\xe5\xda\xdc\xe5\xda\xdc\xe6\ \xdb\xdc\x00\x00\x00\xd9\xd4\xdd\xda\xd4\xdd\xdb\xd4\xdc\xdc\xd5\ \xdc\xdc\xd5\xdc\xdc\xd4\xdb\xdc\xd5\xda\xdb\xd4\xda\xdb\xd3\xd9\ \xdc\xd4\xd9\xdd\xd4\xd9\xdd\xd4\xd9\xdf\xd5\xdb\xe1\xd7\xdc\xe2\ \xd8\xdd\xe2\xd8\xde\xe2\xd9\xde\xe2\xd9\xdd\xe2\xd9\xdc\xe0\xd7\ \xdb\xdf\xd6\xd9\xda\xd1\xd6\xd3\xcb\xd0\xc9\xc1\xc9\xc0\xb7\xc1\ \xb8\xaf\xb9\xb2\xa7\xb2\xb5\xa8\xb2\xb9\xab\xb2\xc1\xb1\xb6\xc8\ \xb8\xbb\xcf\xc0\xc2\xd7\xc8\xca\xdb\xce\xcf\xde\xd1\xd3\xe0\xd3\ \xd5\xe1\xd5\xd6\xe2\xd6\xd7\xe4\xd8\xd8\xe7\xd9\xda\xe9\xdb\xdb\ \xea\xdd\xdc\xec\xdf\xdd\xed\xe1\xde\xef\xe3\xdf\xf1\xe4\xe1\xf2\ \xe6\xe2\xf2\xe7\xe2\xf3\xe8\xe3\xf3\xe9\xe4\xf3\xe9\xe3\xf3\xe9\ \xe4\xf4\xea\xe4\xf5\xea\xe4\xf4\xea\xe3\xf4\xea\xe3\xf4\xe8\xe2\ \xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xdf\xf2\xe5\xdf\xf3\xe5\xdf\xf3\ \xe5\xde\xf2\xe5\xdd\xf1\xe4\xdd\xf3\xe4\xdc\xf2\xe4\xdc\xf2\xe3\ \xdc\xf2\xe2\xdb\xf1\xe2\xdb\xf1\xe2\xdb\xf1\xe2\xdb\xf2\xe3\xdc\ \xf2\xe4\xdd\xf2\xe5\xdd\xf2\xe6\xdd\xf2\xe5\xdd\xf1\xe3\xdc\xf1\ \xe2\xdc\xf0\xe2\xdc\xf0\xe1\xdd\xf0\xe1\xde\xf0\xe1\xde\xef\xe2\ \xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xeb\xdc\xda\ \xe9\xdb\xd9\xe7\xd9\xdb\xe7\xd9\xda\xe7\xd9\xda\xe7\xd9\xda\xe5\ \xd7\xd8\xe5\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe4\xd6\xd7\xe3\xd6\ \xd7\xe3\xd6\xd8\xe3\xd6\xd8\xe2\xd6\xd9\xe0\xd6\xd9\xe0\xd6\xd9\ \xe0\xd5\xda\xdf\xd5\xda\xde\xd5\xdb\xdd\xd5\xda\xdd\xd5\xda\xde\ \xd6\xdc\xe0\xd8\xde\xe2\xda\xdf\xe3\xdc\xe1\xe5\xdc\xe1\xe6\xdc\ \xe2\xe7\xde\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xde\xe3\xe6\xdd\xe1\ \xe6\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe6\xdb\xde\xe6\xdb\xde\xe5\ \xda\xdc\xe6\xd9\xdb\xe6\xd9\xdb\xe7\xda\xdc\xe9\xdc\xde\xea\xde\ \xde\xec\xe0\xe0\xee\xe3\xe2\xf0\xe6\xe4\xf1\xe8\xe5\xf3\xea\xe7\ \xf1\xe9\xe6\xf2\xe8\xe7\xf1\xe7\xe7\xf1\xe6\xe6\xf0\xe5\xe6\xef\ \xe4\xe6\xef\xe5\xe7\xed\xe4\xe6\xed\xe3\xe6\xed\xe3\xe6\xec\xe3\ \xe6\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\xe4\xeb\xe2\xe5\xea\xe1\xe4\ \xe9\xe0\xe3\xe8\xdf\xe2\xe7\xde\xe1\xe6\xdd\xe0\xe7\xdd\xe0\xe7\ \xdc\xdf\xe7\xdc\xde\xe6\xdb\xdd\xe6\xdb\xdd\xe5\xda\xdc\x00\x00\ \x00\xdb\xd5\xde\xdc\xd6\xde\xdd\xd6\xdd\xde\xd7\xde\xdd\xd6\xdd\ \xdd\xd6\xdd\xdd\xd5\xdc\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd6\xdb\xde\ \xd5\xda\xdf\xd5\xdb\xe0\xd6\xdb\xe1\xd8\xdc\xe3\xda\xdd\xe2\xd9\ \xdd\xe3\xda\xde\xe3\xda\xdd\xe2\xd9\xdd\xe2\xd9\xdc\xe0\xd6\xd9\ \xe0\xd5\xd8\xdd\xd3\xd6\xd6\xcc\xd1\xcd\xc3\xca\xc4\xb9\xc2\xb9\ \xb0\xba\xb4\xa8\xb2\xb6\xa8\xb2\xba\xac\xb3\xc0\xb0\xb5\xc5\xb6\ \xb9\xcf\xc1\xc3\xd4\xc7\xc8\xd9\xcc\xce\xdd\xd0\xd2\xe0\xd3\xd5\ \xe1\xd4\xd6\xe3\xd6\xd8\xe5\xd8\xd9\xe7\xda\xdb\xea\xdc\xdc\xeb\ \xde\xdd\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xf0\xe4\xe0\xf1\xe5\ \xe1\xf1\xe5\xe1\xf2\xe6\xe2\xf1\xe6\xe2\xf1\xe6\xe3\xf2\xe7\xe3\ \xf3\xe8\xe4\xf3\xe7\xe3\xf2\xe6\xe1\xf1\xe5\xe0\xf1\xe4\xe0\xf1\ \xe2\xdf\xf1\xe2\xde\xf1\xe3\xdd\xf1\xe3\xdd\xf1\xe2\xdc\xf1\xe2\ \xdc\xf0\xe0\xda\xf0\xe0\xda\xf0\xdf\xd9\xf0\xdf\xd9\xf0\xde\xd8\ \xf0\xdd\xd7\xef\xdd\xd7\xef\xdd\xd7\xef\xde\xd8\xf0\xdf\xd8\xf1\ \xe0\xd9\xf0\xe0\xda\xf0\xe0\xda\xef\xe0\xd9\xef\xdf\xd9\xef\xdf\ \xdb\xee\xdf\xdc\xee\xdf\xdc\xed\xde\xdc\xed\xde\xdc\xec\xdd\xdb\ \xec\xdd\xdb\xec\xdd\xdb\xea\xdb\xd9\xea\xda\xd9\xe8\xd9\xda\xe7\ \xd9\xda\xe6\xd8\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe5\xd7\xd8\xe5\xd7\ \xd8\xe5\xd7\xd8\xe4\xd6\xd8\xe3\xd5\xd8\xe3\xd6\xd8\xe2\xd5\xd7\ \xe2\xd5\xd7\xe1\xd6\xd8\xdf\xd5\xd8\xdf\xd5\xd9\xde\xd4\xda\xde\ \xd5\xdb\xdd\xd5\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xde\xd7\xde\xe0\xd8\ \xdf\xe1\xd9\xdf\xe2\xdb\xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe5\xdd\xe2\ \xe4\xdd\xe2\xe6\xdd\xe3\xe6\xde\xe3\xe7\xdd\xe2\xe6\xdd\xe1\xe6\ \xdd\xe0\xe8\xdd\xe0\xe9\xdd\xe1\xe8\xdd\xe0\xe8\xdd\xdf\xea\xdd\ \xdf\xea\xdd\xdf\xea\xdd\xdf\xec\xe0\xe0\xee\xe3\xe2\xef\xe4\xe3\ \xf0\xe7\xe4\xf1\xe8\xe5\xf2\xe9\xe6\xf2\xe9\xe6\xf1\xe8\xe6\xf0\ \xe6\xe6\xf0\xe6\xe6\xef\xe5\xe5\xee\xe4\xe5\xee\xe3\xe5\xee\xe3\ \xe5\xed\xe2\xe4\xed\xe2\xe4\xec\xe2\xe5\xec\xe3\xe5\xeb\xe2\xe5\ \xeb\xe2\xe5\xea\xe1\xe4\xea\xe1\xe4\xe9\xe0\xe3\xe8\xdf\xe2\xe7\ \xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\xe7\xdd\xe0\xe7\xdc\xdf\xe7\xdc\ \xdf\xe6\xdb\xdd\xe6\xdb\xdd\xe5\xda\xdd\x00\x00\x00\xdc\xd7\xe0\ \xdd\xd8\xdf\xdf\xd8\xdf\xdf\xd8\xdf\xdf\xd8\xdf\xdf\xd7\xde\xdf\ \xd7\xde\xdf\xd7\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xe0\xd7\ \xdc\xe1\xd7\xdb\xe2\xd9\xdc\xe2\xd9\xdc\xe3\xda\xdd\xe4\xda\xdd\ \xe3\xda\xdd\xe3\xda\xdd\xe3\xda\xdd\xe2\xd7\xda\xe1\xd6\xd9\xe1\ \xd6\xd9\xde\xd3\xd6\xd7\xcd\xd1\xce\xc4\xca\xc5\xba\xc3\xbb\xb1\ \xbb\xb6\xaa\xb5\xb7\xaa\xb4\xbb\xac\xb5\xbe\xaf\xb5\xc3\xb4\xb8\ \xcb\xbd\xc1\xd2\xc4\xc7\xd5\xc9\xcc\xdb\xcf\xd1\xde\xd3\xd5\xe0\ \xd4\xd6\xe3\xd7\xd9\xe7\xda\xdb\xe7\xda\xdb\xe9\xdc\xdc\xea\xdc\ \xdc\xeb\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xef\xe2\xe0\ \xef\xe2\xe0\xef\xe2\xe0\xf0\xe4\xe1\xf0\xe4\xe1\xf0\xe5\xe1\xf1\ \xe5\xe1\xef\xe3\xe0\xef\xe2\xde\xef\xe0\xdd\xee\xdf\xdd\xed\xde\ \xdb\xee\xde\xdb\xee\xde\xdb\xee\xdf\xda\xee\xde\xd9\xee\xde\xd9\ \xed\xdc\xd7\xee\xdb\xd6\xee\xdb\xd6\xec\xd9\xd4\xec\xd9\xd4\xec\ \xd9\xd4\xed\xda\xd5\xec\xd9\xd4\xed\xda\xd5\xee\xdb\xd6\xee\xdb\ \xd6\xee\xdb\xd6\xed\xdb\xd6\xed\xdb\xd7\xed\xdc\xd9\xec\xdc\xd9\ \xeb\xdb\xda\xeb\xdc\xda\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xe9\ \xdb\xd9\xe9\xda\xd8\xe7\xd9\xd9\xe5\xd8\xd9\xe5\xd7\xd8\xe5\xd7\ \xd8\xe4\xd6\xd8\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd6\xd7\xe3\xd5\xd6\ \xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd4\xd6\xe0\xd3\xd6\xe0\xd3\xd6\xdf\ \xd4\xd7\xde\xd3\xd8\xdd\xd3\xd8\xdc\xd4\xda\xdc\xd5\xdc\xdc\xd5\ \xdc\xdc\xd6\xdd\xdd\xd6\xdd\xdf\xd8\xdf\xde\xd7\xdf\xdf\xd8\xdf\ \xe1\xd9\xe0\xe3\xdb\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\ \xdc\xe1\xe3\xdc\xe1\xe5\xdc\xe1\xe6\xdc\xe2\xe6\xdd\xe1\xe7\xde\ \xe0\xe9\xde\xe1\xe9\xde\xe0\xea\xdf\xe1\xec\xdf\xe1\xed\xe0\xe2\ \xed\xe1\xe1\xee\xe3\xe3\xef\xe4\xe4\xee\xe4\xe4\xef\xe5\xe3\xef\ \xe4\xe3\xef\xe5\xe3\xef\xe5\xe3\xef\xe4\xe3\xed\xe1\xe1\xec\xe0\ \xe1\xec\xdf\xe1\xec\xdf\xe1\xeb\xe0\xe2\xec\xe1\xe3\xec\xe1\xe3\ \xec\xe1\xe3\xec\xe0\xe2\xec\xe1\xe3\xea\xe0\xe3\xe9\xe0\xe3\xe9\ \xe0\xe3\xe8\xdf\xe2\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdc\xdf\xe5\xdb\ \xde\xe4\xdb\xde\xe5\xdb\xde\xe6\xdb\xde\xe4\xda\xdd\xe4\xda\xdd\ \xe3\xda\xdd\xe3\xda\xdd\x00\x00\x00\xdc\xd7\xe0\xde\xd7\xdf\xdf\ \xd8\xdf\xdf\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdf\xe0\xd9\xde\xe1\xda\ \xde\xe1\xd9\xdf\xe1\xda\xdf\xe0\xd9\xde\xe2\xd8\xde\xe2\xd9\xdc\ \xe2\xd9\xdc\xe3\xd9\xdc\xe4\xda\xdd\xe5\xda\xdd\xe5\xda\xdd\xe5\ \xda\xdd\xe4\xd9\xdc\xe2\xd8\xdb\xe2\xd7\xda\xe2\xd7\xda\xe1\xd6\ \xd9\xde\xd3\xd6\xd8\xcd\xd1\xcf\xc5\xcb\xc7\xbc\xc3\xbd\xb2\xbc\ \xb7\xac\xb6\xb7\xab\xb5\xb9\xab\xb5\xba\xac\xb3\xbe\xb0\xb7\xc7\ \xba\xbe\xcd\xc2\xc5\xd4\xc9\xcc\xda\xcf\xd2\xde\xd3\xd6\xe2\xd6\ \xd8\xe5\xd8\xda\xe6\xda\xda\xe6\xda\xda\xe8\xdb\xdb\xe9\xdc\xdc\ \xea\xdc\xdd\xeb\xde\xdc\xec\xdf\xde\xed\xe0\xdf\xed\xe0\xe0\xee\ \xe0\xe0\xef\xe1\xe1\xee\xe2\xe0\xf0\xe2\xe1\xef\xe2\xe0\xee\xe1\ \xdf\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\ \xec\xdc\xd9\xec\xdb\xd9\xed\xdb\xd8\xec\xdb\xd8\xec\xda\xd7\xeb\ \xd8\xd4\xeb\xd8\xd4\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xeb\xd8\ \xd3\xeb\xd8\xd3\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd5\ \xeb\xd9\xd6\xea\xd9\xd6\xea\xd9\xd6\xea\xd9\xd7\xe8\xda\xd7\xe8\ \xda\xd8\xe7\xd9\xd8\xe7\xd9\xd9\xe7\xd9\xd9\xe6\xd8\xd9\xe6\xd8\ \xd9\xe5\xd7\xd8\xe5\xd7\xd8\xe4\xd6\xd8\xe3\xd6\xd8\xe3\xd6\xd7\ \xe2\xd4\xd7\xe2\xd5\xd6\xe2\xd4\xd6\xe0\xd4\xd6\xe0\xd3\xd5\xe0\ \xd3\xd5\xe0\xd3\xd5\xde\xd2\xd5\xdd\xd2\xd5\xdc\xd1\xd6\xdb\xd2\ \xd8\xdb\xd2\xd8\xdb\xd3\xd9\xdc\xd4\xdc\xdc\xd5\xdc\xdd\xd6\xdd\ \xde\xd6\xdf\xde\xd6\xe0\xde\xd7\xe0\xdf\xd8\xe1\xdf\xd8\xdf\xe0\ \xd9\xe0\xe1\xda\xe0\xe1\xda\xe0\xe1\xda\xe1\xe2\xda\xe0\xe2\xdb\ \xe1\xe2\xdb\xe0\xe4\xdc\xe1\xe5\xdb\xe1\xe6\xdd\xe0\xe7\xde\xe1\ \xe8\xdd\xe0\xea\xdf\xe1\xeb\xdf\xe1\xec\xdf\xe1\xed\xe1\xe2\xed\ \xe2\xe2\xed\xe1\xe1\xec\xe0\xe0\xeb\xdf\xdf\xec\xdf\xe0\xeb\xde\ \xde\xeb\xdd\xde\xe9\xdd\xdd\xe8\xdc\xdc\xe8\xdb\xdd\xe7\xda\xdc\ \xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xea\xdf\xe1\xeb\xe0\xe2\xeb\ \xe0\xe2\xeb\xe0\xe2\xea\xe0\xe2\xea\xe0\xe3\xe9\xdf\xe2\xe8\xde\ \xe1\xe7\xdc\xdf\xe6\xdb\xde\xe5\xda\xdd\xe4\xda\xdd\xe4\xda\xdd\ \xe3\xda\xdd\xe3\xda\xdd\xe3\xda\xdd\xe3\xd9\xdc\xe3\xd9\xdd\xe2\ \xd9\xde\x00\x00\x00\xdb\xd6\xdf\xdd\xd7\xde\xde\xd7\xde\xdf\xd8\ \xdf\xdf\xd7\xde\xe0\xd8\xdf\xe1\xd9\xe0\xe2\xdb\xe0\xe2\xdb\xe0\ \xe2\xdb\xe0\xe1\xda\xdf\xe3\xda\xde\xe3\xda\xdd\xe4\xdb\xde\xe6\ \xdb\xde\xe6\xdb\xdd\xe6\xdb\xde\xe6\xdb\xde\xe5\xda\xdd\xe4\xd9\ \xdc\xe2\xd8\xdb\xe3\xd8\xdb\xe2\xd8\xda\xe1\xd6\xd9\xe0\xd5\xd8\ \xdd\xd3\xd6\xd7\xce\xd2\xd0\xc6\xcc\xc7\xbd\xc4\xbe\xb3\xbd\xb7\ \xad\xb7\xb7\xac\xb6\xb8\xab\xb5\xb8\xab\xb3\xbb\xae\xb6\xc3\xb7\ \xbd\xcb\xbf\xc4\xd3\xc9\xcc\xdb\xd1\xd4\xe0\xd6\xd8\xe3\xd8\xda\ \xe5\xd8\xda\xe6\xda\xda\xe6\xda\xda\xe7\xdb\xdb\xe8\xdc\xdc\xe9\ \xdc\xdd\xe9\xdd\xdd\xea\xdd\xde\xec\xdf\xe0\xec\xe0\xe0\xed\xe1\ \xe1\xed\xe1\xe1\xed\xe0\xe0\xed\xe0\xe0\xec\xdf\xdf\xeb\xdd\xdc\ \xea\xdc\xdb\xea\xdc\xda\xe9\xdb\xd9\xe9\xdb\xd9\xe9\xda\xd8\xe9\ \xda\xd8\xe9\xda\xd7\xea\xda\xd7\xe9\xd9\xd6\xe9\xd8\xd5\xe8\xd6\ \xd3\xe8\xd5\xd2\xe7\xd5\xd2\xe7\xd5\xd2\xe8\xd6\xd3\xe8\xd6\xd3\ \xe9\xd7\xd4\xea\xd8\xd3\xea\xd8\xd4\xea\xd9\xd6\xe9\xd8\xd5\xe9\ \xd8\xd5\xe8\xd7\xd5\xe7\xd8\xd6\xe6\xd6\xd6\xe4\xd6\xd7\xe4\xd6\ \xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe2\xd5\xd6\ \xe2\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\ \xd4\xd6\xe0\xd2\xd5\xde\xd1\xd4\xde\xd1\xd4\xdc\xd1\xd4\xdc\xd1\ \xd4\xdc\xd1\xd4\xdb\xd0\xd5\xda\xd0\xd6\xda\xd1\xd7\xda\xd2\xd8\ \xdb\xd3\xda\xdb\xd5\xdc\xdd\xd6\xdd\xde\xd6\xdf\xde\xd5\xdf\xde\ \xd7\xe0\xdd\xd8\xe1\xde\xd8\xe1\xdf\xd8\xe1\xe0\xd9\xe0\xe1\xda\ \xe1\xe0\xd9\xe0\xe0\xda\xe1\xe1\xd9\xe0\xe1\xd9\xe0\xe2\xda\xdf\ \xe2\xdb\xe0\xe4\xda\xe0\xe6\xdc\xe0\xe6\xdd\xe0\xe8\xdd\xe0\xe9\ \xde\xe0\xe9\xde\xe0\xec\xdf\xe1\xeb\xde\xe0\xea\xde\xdf\xe9\xdd\ \xde\xe8\xdb\xdc\xe6\xd9\xda\xe6\xd8\xd9\xe5\xd7\xd8\xe4\xd6\xd7\ \xe3\xd6\xd7\xe2\xd5\xd7\xe2\xd5\xd7\xe1\xd3\xd6\xe0\xd4\xd7\xe2\ \xd7\xda\xe4\xd9\xdb\xe7\xdc\xde\xe9\xde\xe0\xea\xdf\xe1\xea\xdf\ \xe1\xea\xdf\xe1\xe9\xde\xe0\xe8\xdd\xe0\xe6\xdb\xde\xe5\xda\xdd\ \xe4\xd9\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe4\xd9\xdc\xe1\xd9\xdb\xe2\ \xd9\xdd\xe2\xd9\xde\xe2\xd9\xdd\xe2\xd9\xde\xe1\xd9\xdf\x00\x00\ \x00\xd8\xd3\xdc\xda\xd4\xdd\xdc\xd5\xdd\xdc\xd5\xdc\xdf\xd8\xdf\ \xe1\xd9\xe0\xe0\xda\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe4\ \xdc\xe0\xe5\xdc\xde\xe5\xdc\xdf\xe5\xdc\xdf\xe6\xdd\xe0\xe7\xdd\ \xe0\xe8\xdd\xe0\xe7\xdd\xdf\xe7\xdc\xde\xe5\xda\xdd\xe5\xda\xdd\ \xe4\xd9\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe1\xd6\xd9\xe0\xd5\xd8\xdc\ \xd2\xd5\xd7\xcd\xd2\xcf\xc5\xcb\xc7\xbc\xc4\xbe\xb3\xbd\xb9\xad\ \xb9\xb7\xab\xb7\xb4\xa9\xb4\xb3\xa8\xb2\xb8\xad\xb5\xc1\xb6\xbe\ \xcb\xc1\xc7\xd5\xcb\xd0\xdd\xd3\xd6\xe1\xd6\xd9\xe3\xd8\xda\xe3\ \xd7\xda\xe4\xd8\xda\xe6\xd9\xda\xe6\xd9\xdb\xe6\xda\xdb\xe7\xdb\ \xdd\xe8\xdc\xde\xe9\xdd\xdf\xe9\xde\xe1\xeb\xdf\xe1\xec\xe0\xe2\ \xec\xe0\xe1\xec\xdf\xe0\xeb\xde\xdf\xe9\xdd\xdd\xe8\xdb\xdb\xe7\ \xda\xdb\xe6\xd9\xdb\xe6\xd8\xda\xe6\xd8\xda\xe6\xd8\xd8\xe6\xd8\ \xd8\xe6\xd7\xd6\xe6\xd7\xd6\xe6\xd5\xd3\xe5\xd4\xd2\xe4\xd3\xd1\ \xe3\xd2\xcf\xe3\xd2\xd0\xe4\xd3\xd0\xe5\xd4\xd1\xe5\xd4\xd1\xe7\ \xd6\xd3\xe7\xd6\xd3\xe7\xd6\xd3\xe6\xd5\xd3\xe6\xd5\xd4\xe5\xd6\ \xd4\xe4\xd5\xd4\xe2\xd3\xd4\xe1\xd3\xd4\xe1\xd3\xd4\xe1\xd3\xd5\ \xe1\xd4\xd5\xe1\xd3\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xde\xd2\xd4\xde\ \xd2\xd5\xdf\xd3\xd6\xde\xd4\xd5\xde\xd2\xd5\xdd\xd2\xd5\xdd\xd2\ \xd5\xdb\xd0\xd4\xda\xcf\xd2\xdb\xd0\xd3\xd9\xcf\xd4\xd9\xcf\xd3\ \xd8\xce\xd4\xd8\xce\xd5\xd7\xcf\xd7\xd9\xd1\xd8\xdb\xd3\xda\xdc\ \xd5\xdc\xdd\xd6\xdd\xde\xd7\xdd\xde\xd6\xdf\xde\xd8\xe0\xdd\xd9\ \xe2\xde\xd9\xe2\xdf\xda\xe2\xe0\xda\xe1\xe0\xda\xe0\xe0\xd9\xe1\ \xe0\xd9\xe1\xe0\xd9\xe0\xdf\xd8\xe0\xe1\xd9\xe0\xe1\xda\xe0\xe2\ \xdb\xdf\xe4\xdb\xe0\xe5\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xe0\xe9\xde\ \xe0\xe9\xdd\xdf\xe8\xdb\xdd\xe6\xd9\xdb\xe4\xd7\xd9\xe1\xd4\xd6\ \xe0\xd3\xd5\xdd\xd0\xd2\xdc\xce\xd0\xdc\xce\xd0\xda\xcc\xce\xd8\ \xcb\xcd\xd8\xcb\xce\xd8\xcb\xce\xd9\xca\xce\xdb\xce\xd1\xde\xd2\ \xd5\xe2\xd7\xd9\xe6\xdb\xdd\xea\xdd\xdf\xeb\xde\xe0\xe9\xdd\xdf\ \xe8\xdc\xde\xe6\xdb\xdd\xe5\xda\xdc\xe4\xd9\xdc\xe2\xd7\xda\xe1\ \xd7\xda\xe2\xd7\xda\xe1\xd7\xda\xe0\xd7\xdb\xe1\xd7\xdd\xe2\xd8\ \xde\xe2\xd9\xde\xe1\xda\xde\xe0\xd9\xde\x00\x00\x00\xd6\xd2\xdb\ \xd8\xd2\xdb\xdb\xd4\xdc\xdd\xd6\xdd\xde\xd7\xde\xe0\xd9\xe0\xe2\ \xda\xe1\xe3\xdc\xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdd\xe0\xe5\xdd\ \xe0\xe5\xdc\xdf\xe5\xdc\xdf\xe7\xdd\xdf\xe8\xdd\xe0\xe9\xde\xe0\ \xe8\xdd\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe6\xdb\xde\xe4\xda\xdd\xe4\ \xd9\xdc\xe3\xd8\xdb\xe1\xd7\xda\xe1\xd6\xd9\xde\xd4\xd7\xdb\xd1\ \xd5\xd5\xcb\xd1\xce\xc4\xcb\xc7\xbd\xc5\xbf\xb4\xbe\xb9\xae\xba\ \xb4\xa8\xb4\xb2\xa7\xb3\xb2\xa7\xb2\xb7\xac\xb6\xc2\xb7\xbf\xcd\ \xc3\xc9\xd5\xcd\xd1\xdd\xd2\xd6\xe1\xd6\xd9\xe1\xd6\xd9\xe2\xd7\ \xd9\xe2\xd7\xda\xe3\xd8\xdb\xe4\xd9\xdb\xe4\xda\xdc\xe6\xdb\xdd\ \xe6\xdc\xdf\xe8\xde\xe1\xe9\xde\xe0\xe9\xdf\xe1\xea\xdf\xe1\xea\ \xdf\xe1\xe9\xde\xdf\xe9\xdc\xde\xe6\xdb\xdc\xe6\xd9\xdb\xe5\xd9\ \xda\xe5\xd9\xda\xe5\xd8\xd9\xe5\xd8\xd9\xe4\xd7\xd9\xe4\xd6\xd7\ \xe4\xd5\xd6\xe4\xd5\xd4\xe2\xd3\xd1\xe1\xd1\xd1\xe0\xd1\xd0\xe0\ \xd1\xd0\xe0\xd1\xd0\xe1\xd1\xd0\xe3\xd3\xd1\xe4\xd4\xd2\xe4\xd4\ \xd2\xe4\xd4\xd3\xe3\xd3\xd2\xe2\xd4\xd2\xe2\xd3\xd3\xe0\xd2\xd3\ \xdf\xd1\xd3\xde\xd1\xd3\xde\xd1\xd3\xdd\xd1\xd3\xdd\xd1\xd4\xde\ \xd2\xd4\xdc\xd1\xd4\xda\xd0\xd3\xda\xcf\xd3\xda\xd0\xd4\xdb\xd0\ \xd5\xdc\xd2\xd6\xdc\xd1\xd6\xdb\xd1\xd6\xda\xd0\xd5\xd9\xce\xd5\ \xd7\xce\xd3\xd7\xce\xd3\xd6\xce\xd4\xd5\xcd\xd3\xd5\xce\xd4\xd5\ \xcd\xd4\xd7\xcf\xd6\xd8\xd1\xd8\xdb\xd4\xdb\xdb\xd5\xdc\xdd\xd6\ \xdd\xde\xd7\xde\xde\xd8\xdf\xdf\xd8\xe2\xde\xd9\xe2\xde\xd9\xe2\ \xdf\xda\xe2\xe0\xda\xe2\xdf\xdb\xe1\xe0\xd8\xe2\xdf\xd8\xe1\xdf\ \xd8\xe1\xdf\xd9\xe0\xe0\xd9\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe4\xdb\ \xdf\xe4\xdb\xdf\xe6\xdc\xdf\xe7\xdc\xdf\xe8\xdd\xdf\xe7\xdc\xde\ \xe5\xd9\xdb\xe1\xd5\xd7\xdd\xd1\xd4\xda\xce\xd1\xd7\xcb\xce\xd5\ \xc7\xcb\xd2\xc4\xc7\xcf\xc1\xc4\xce\xc0\xc3\xce\xc0\xc4\xce\xc0\ \xc5\xce\xc0\xc4\xcf\xc1\xc6\xd3\xc5\xc9\xd9\xcb\xcf\xde\xd1\xd4\ \xe2\xd6\xd8\xe7\xda\xdc\xe8\xdc\xde\xe9\xdc\xde\xe8\xdb\xdd\xe5\ \xda\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe2\xd7\xda\xe1\xd7\xda\xe0\xd7\ \xda\xdf\xd5\xd9\xdf\xd5\xdc\xe0\xd6\xdc\xe0\xd6\xdc\xdf\xd7\xdc\ \xde\xd7\xdc\xdf\xd8\xdd\x00\x00\x00\xd5\xd1\xdb\xd7\xd2\xdb\xda\ \xd3\xdc\xdc\xd5\xdc\xdd\xd6\xdd\xe0\xd8\xdf\xe1\xda\xe0\xe3\xdc\ \xe1\xe3\xdd\xe2\xe4\xdc\xe2\xe5\xdd\xe0\xe6\xdd\xe0\xe6\xdd\xe0\ \xe8\xdd\xdf\xe8\xdd\xe0\xe9\xde\xe1\xe9\xde\xe0\xe9\xde\xe0\xe8\ \xdd\xdf\xe7\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe5\xd9\xdc\xe3\xd8\ \xdb\xe2\xd7\xda\xdf\xd6\xd9\xde\xd4\xd8\xdc\xd2\xd8\xd9\xcf\xd5\ \xd4\xca\xd0\xce\xc4\xcb\xc6\xbd\xc5\xbd\xb4\xbe\xb6\xac\xb8\xb2\ \xa8\xb4\xb1\xa7\xb4\xb1\xa8\xb3\xb7\xae\xb8\xc2\xb9\xc1\xcc\xc4\ \xcb\xd4\xcc\xd2\xdb\xd2\xd7\xdf\xd5\xd9\xdf\xd6\xd9\xdf\xd6\xdb\ \xe1\xd7\xdc\xe1\xd8\xdb\xe3\xd9\xdd\xe4\xdb\xde\xe6\xdc\xdf\xe6\ \xdd\xe0\xe7\xde\xe0\xe8\xde\xe1\xe8\xdf\xe2\xe8\xdf\xe0\xe8\xdd\ \xe0\xe6\xdb\xde\xe5\xda\xdc\xe4\xd9\xdb\xe3\xd8\xda\xe3\xd8\xdb\ \xe4\xd8\xda\xe3\xd8\xda\xe2\xd7\xd8\xe2\xd5\xd7\xe1\xd4\xd6\xe1\ \xd4\xd5\xdf\xd1\xd2\xde\xd0\xd1\xdd\xcf\xd1\xdd\xcf\xd0\xdd\xcf\ \xd0\xde\xd0\xd0\xdf\xd1\xd1\xe0\xd1\xd2\xe0\xd2\xd2\xe0\xd2\xd2\ \xdf\xd1\xd1\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd1\xd2\xdc\xd0\xd3\xda\ \xcf\xd2\xdb\xd0\xd3\xda\xcf\xd3\xd9\xcf\xd3\xda\xce\xd4\xd8\xce\ \xd3\xd8\xce\xd4\xd7\xcd\xd3\xd7\xcf\xd5\xd8\xcf\xd5\xd8\xd0\xd6\ \xd9\xd1\xd6\xd9\xd0\xd6\xd8\xd0\xd6\xd7\xce\xd4\xd5\xcd\xd3\xd5\ \xce\xd3\xd4\xcc\xd3\xd5\xcd\xd4\xd5\xcd\xd3\xd5\xcd\xd4\xd7\xcf\ \xd6\xd8\xd1\xd8\xda\xd3\xda\xdc\xd5\xdc\xdd\xd6\xdd\xde\xd7\xde\ \xdf\xd8\xe0\xdf\xd9\xe1\xdf\xd9\xe2\xdf\xda\xe3\xe0\xdb\xe3\xdf\ \xdb\xe2\xdf\xd9\xe2\xdd\xd7\xe1\xdd\xd7\xe1\xdf\xd7\xe1\xdf\xd8\ \xdf\xe0\xd9\xe0\xe1\xda\xe0\xe2\xda\xdf\xe4\xda\xe0\xe4\xda\xdf\ \xe5\xdb\xde\xe7\xdc\xdf\xe6\xdb\xde\xe4\xd9\xdc\xe1\xd6\xd8\xdc\ \xd1\xd3\xd6\xcb\xcf\xd0\xc5\xcb\xcc\xc0\xc6\xc9\xbc\xc2\xc3\xb5\ \xbc\xc1\xb3\xba\xc1\xb3\xba\xc0\xb3\xba\xbe\xb2\xba\xc0\xb3\xbc\ \xc3\xb6\xbe\xc8\xbc\xc1\xd0\xc1\xc6\xd7\xc9\xcd\xde\xd0\xd3\xe3\ \xd6\xd8\xe6\xd9\xdb\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd9\xdb\xe2\xd7\ \xdb\xe2\xd7\xda\xe0\xd6\xda\xdf\xd5\xd8\xdf\xd5\xd8\xdf\xd4\xd7\ \xdd\xd3\xd8\xdc\xd2\xd8\xdc\xd2\xd8\xdb\xd3\xd8\xdb\xd4\xd9\xdc\ \xd5\xda\x00\x00\x00\xd4\xd0\xdb\xd6\xd1\xda\xd8\xd2\xdb\xdb\xd4\ \xdc\xdd\xd6\xdd\xde\xd8\xde\xe1\xd9\xe0\xe3\xdc\xe1\xe4\xdd\xe2\ \xe5\xdc\xe1\xe7\xde\xe0\xe7\xde\xe1\xe7\xde\xe1\xe8\xdf\xe2\xea\ \xde\xe1\xea\xdf\xe2\xeb\xe0\xe3\xe9\xdf\xe1\xea\xdf\xe1\xe9\xde\ \xe1\xe7\xdd\xe0\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xda\xdd\xe1\xd8\xdb\ \xe0\xd6\xdb\xde\xd4\xda\xdd\xd3\xd9\xdc\xd2\xd8\xda\xd0\xd6\xd4\ \xcb\xd1\xcd\xc5\xcc\xc5\xbc\xc6\xbc\xb2\xbe\xb5\xab\xb7\xb2\xa9\ \xb7\xb1\xa9\xb6\xb1\xa8\xb4\xb6\xae\xb9\xc0\xb8\xc2\xcb\xc3\xcb\ \xd4\xcc\xd2\xd9\xd2\xd8\xdd\xd6\xdb\xdd\xd6\xdb\xde\xd6\xdb\xdf\ \xd8\xde\xe0\xd9\xde\xe2\xdb\xe0\xe3\xdc\xe0\xe5\xdc\xe2\xe5\xdd\ \xe1\xe5\xde\xe0\xe7\xdd\xe0\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xdb\xde\ \xe3\xd9\xdc\xe1\xd8\xdb\xe1\xd7\xdb\xe1\xd7\xdb\xe0\xd8\xdb\xe1\ \xd7\xda\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd4\xd6\xde\xd3\xd5\xdd\xd0\ \xd2\xdb\xcf\xd1\xdb\xce\xd1\xda\xcd\xd0\xda\xcd\xd1\xdb\xce\xd0\ \xdc\xd0\xd2\xdd\xd0\xd2\xde\xd0\xd3\xde\xd1\xd2\xdd\xd0\xd2\xdd\ \xcf\xd1\xdd\xcf\xd2\xdb\xd0\xd3\xd9\xcf\xd2\xd8\xce\xd3\xd7\xcd\ \xd3\xd6\xcc\xd3\xd6\xcc\xd2\xd5\xcd\xd4\xd6\xce\xd3\xd5\xcd\xd4\ \xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd7\xcf\xd6\xd7\xcf\xd6\xd8\ \xd0\xd7\xd7\xcf\xd6\xd6\xce\xd5\xd5\xcd\xd4\xd3\xcc\xd3\xd3\xcc\ \xd4\xd3\xcc\xd4\xd4\xcc\xd5\xd5\xce\xd5\xd7\xd0\xd7\xd8\xd1\xd9\ \xda\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xde\xd6\xdf\xdf\xd8\xe0\xde\ \xd9\xe2\xdf\xda\xe3\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\ \xe3\xdf\xd9\xe2\xdd\xd8\xe1\xde\xd8\xe0\xe0\xd9\xe1\xe1\xda\xe1\ \xe2\xdb\xe0\xe1\xdb\xdf\xe4\xd9\xdf\xe3\xda\xde\xe5\xdb\xdd\xe5\ \xda\xdd\xe5\xda\xdd\xe2\xd7\xda\xde\xd3\xd6\xd6\xcb\xd1\xcf\xc4\ \xcb\xc7\xbc\xc6\xc0\xb7\xc1\xb8\xae\xb9\xb3\xa9\xb5\xb2\xa7\xb3\ \xb2\xa7\xb3\xb0\xa7\xb3\xaf\xa5\xb2\xb0\xa6\xb3\xb5\xab\xb7\xbd\ \xb1\xbc\xc6\xb9\xc0\xce\xc1\xc5\xd7\xc9\xcc\xdd\xd0\xd2\xe1\xd4\ \xd6\xe3\xd6\xd8\xe3\xd7\xd9\xe3\xd8\xda\xe2\xd7\xda\xe1\xd6\xd9\ \xdf\xd4\xd7\xde\xd4\xd6\xdd\xd2\xd5\xda\xd0\xd3\xda\xcf\xd3\xd8\ \xce\xd4\xd9\xce\xd4\xd6\xcf\xd5\xd8\xd0\xd6\xda\xd2\xd9\x00\x00\ \x00\xd3\xcf\xda\xd4\xd0\xda\xd6\xd1\xda\xd9\xd2\xdb\xdc\xd4\xdc\ \xde\xd7\xde\xdf\xd8\xdf\xe2\xdb\xe0\xe3\xdc\xe1\xe5\xdc\xe1\xe6\ \xdd\xe1\xe7\xde\xe1\xe8\xdf\xe2\xe8\xdf\xe2\xe9\xe0\xe3\xea\xe0\ \xe3\xe9\xe0\xe3\xe9\xdf\xe2\xe9\xdf\xe2\xe8\xdf\xe2\xe8\xdf\xe2\ \xe7\xde\xe1\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xda\xdd\xe1\xd8\xdd\xe0\ \xd6\xdc\xdf\xd5\xdb\xdd\xd4\xda\xdc\xd3\xd8\xd8\xd0\xd6\xd3\xcc\ \xd2\xcd\xc5\xcd\xc5\xbd\xc7\xbb\xb3\xbf\xb4\xad\xb9\xb1\xaa\xb8\ \xae\xa8\xb7\xae\xa7\xb5\xb4\xad\xb9\xbf\xb8\xc3\xca\xc2\xcc\xd3\ \xcc\xd4\xda\xd2\xd9\xdc\xd5\xdc\xdd\xd6\xdd\xde\xd7\xdd\xe0\xd8\ \xde\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdd\xe2\xe3\xdc\xe2\xe3\xdc\xe2\ \xe3\xdc\xe1\xe3\xdb\xdf\xe3\xda\xdf\xe2\xd9\xde\xe1\xd8\xde\xe0\ \xd8\xdd\xe0\xd8\xdd\xdf\xd7\xdc\xde\xd7\xdc\xdd\xd6\xdb\xde\xd6\ \xdb\xde\xd4\xd9\xdd\xd4\xd8\xdc\xd2\xd6\xdb\xd0\xd4\xd9\xcf\xd2\ \xd8\xcd\xd1\xd7\xcc\xd2\xd7\xcd\xd1\xd9\xce\xd2\xd9\xcd\xd2\xda\ \xcf\xd2\xdb\xcf\xd2\xdb\xcf\xd2\xdb\xcf\xd2\xda\xce\xd2\xd9\xcf\ \xd3\xd9\xcf\xd3\xd6\xcd\xd3\xd6\xcd\xd3\xd5\xcd\xd3\xd5\xcd\xd4\ \xd4\xcd\xd4\xd4\xcd\xd4\xd4\xcd\xd4\xd5\xcd\xd5\xd5\xce\xd5\xd5\ \xcd\xd5\xd5\xce\xd5\xd5\xce\xd5\xd6\xce\xd5\xd6\xce\xd5\xd5\xce\ \xd6\xd4\xcd\xd5\xd3\xcc\xd5\xd2\xcb\xd4\xd3\xcb\xd5\xd4\xcc\xd6\ \xd5\xcd\xd7\xd6\xce\xd8\xd8\xd1\xd8\xd8\xd1\xd8\xda\xd3\xda\xda\ \xd3\xda\xdb\xd4\xdc\xdc\xd4\xde\xdd\xd6\xe0\xdd\xd9\xe1\xde\xd9\ \xe2\xde\xd9\xe2\xe0\xda\xe3\xe0\xda\xe3\xe0\xd9\xe3\xdf\xda\xe2\ \xdf\xda\xe1\xe0\xda\xe1\xe1\xda\xe1\xe2\xdb\xe1\xe2\xdb\xe0\xe3\ \xda\xe0\xe2\xd9\xde\xe3\xd9\xde\xe4\xda\xdc\xe4\xd9\xdc\xe2\xd7\ \xda\xde\xd4\xd7\xd7\xcd\xd2\xd1\xc7\xcd\xc7\xbd\xc7\xbf\xb5\xc1\ \xb6\xad\xb9\xaf\xa5\xb2\xac\xa3\xb0\xac\xa3\xb1\xab\xa2\xb0\xaa\ \xa2\xaf\xaa\xa2\xaf\xab\xa2\xaf\xac\xa4\xb1\xb2\xa9\xb5\xbc\xb0\ \xbb\xc5\xb9\xc0\xcf\xc1\xc6\xd6\xc8\xcb\xdb\xce\xd1\xdf\xd2\xd5\ \xe2\xd5\xd8\xe2\xd7\xda\xe1\xd6\xd9\xde\xd3\xd6\xdc\xd1\xd4\xda\ \xcf\xd2\xd9\xce\xd1\xd7\xcb\xd0\xd4\xc9\xcf\xd3\xc9\xcf\xd2\xc9\ \xd0\xd2\xca\xd2\xd4\xcc\xd3\xd7\xcf\xd7\x00\x00\x00\xd2\xce\xd9\ \xd3\xcf\xda\xd5\xcf\xd9\xd7\xd1\xdb\xda\xd3\xdb\xdc\xd5\xdc\xde\ \xd7\xde\xe0\xd9\xdf\xe1\xda\xdf\xe4\xda\xe0\xe5\xdc\xe0\xe6\xdd\ \xe0\xe8\xdf\xe2\xe9\xe0\xe3\xea\xe1\xe4\xe9\xe0\xe3\xea\xe1\xe4\ \xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe3\xe8\xdf\xe2\xe8\ \xdf\xe2\xe7\xde\xe2\xe5\xdc\xe0\xe4\xdb\xe0\xe2\xd9\xdf\xe0\xd8\ \xdd\xde\xd6\xdb\xdd\xd6\xdb\xda\xd3\xd8\xd8\xd0\xd6\xd3\xcb\xd3\ \xcd\xc5\xcf\xc5\xbe\xc8\xbd\xb6\xc2\xb4\xae\xbd\xaf\xaa\xba\xac\ \xa8\xb8\xac\xa6\xb5\xb3\xad\xba\xbf\xb9\xc4\xcb\xc5\xcf\xd3\xcd\ \xd6\xda\xd3\xdb\xdd\xd6\xdd\xdd\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xe0\ \xe2\xdb\xe1\xe3\xdc\xe2\xe3\xdc\xe2\xe2\xdc\xe2\xe2\xdc\xe1\xe0\ \xd9\xdf\xe0\xd8\xde\xdf\xd8\xde\xdf\xd8\xdd\xdf\xd8\xde\xdf\xd7\ \xdd\xde\xd7\xdc\xdd\xd5\xdb\xdc\xd5\xdb\xdc\xd4\xda\xdc\xd4\xda\ \xdb\xd3\xda\xda\xd1\xd8\xd9\xd0\xd6\xd7\xcf\xd5\xd5\xcc\xd3\xd5\ \xcc\xd3\xd5\xcd\xd3\xd6\xce\xd4\xd6\xcd\xd3\xd7\xce\xd3\xd8\xcf\ \xd4\xd8\xcf\xd4\xd8\xce\xd4\xd7\xce\xd3\xd7\xce\xd4\xd7\xce\xd4\ \xd6\xce\xd4\xd4\xce\xd4\xd4\xcd\xd3\xd4\xcc\xd4\xd4\xcd\xd5\xd4\ \xcd\xd6\xd5\xce\xd6\xd5\xce\xd8\xd5\xce\xd8\xd5\xcf\xd8\xd5\xce\ \xd7\xd4\xcd\xd6\xd5\xcd\xd5\xd5\xcd\xd6\xd5\xcd\xd6\xd4\xcc\xd5\ \xd3\xcb\xd5\xd3\xcb\xd5\xd4\xcc\xd6\xd5\xcd\xd7\xd6\xce\xd7\xd6\ \xcf\xd6\xd8\xd1\xd8\xd8\xd1\xd8\xd8\xd1\xd8\xda\xd3\xda\xdb\xd3\ \xdc\xdb\xd4\xde\xdb\xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\ \xdf\xd9\xe3\xe0\xd9\xe3\xe0\xd9\xe3\xe0\xda\xe1\xe1\xda\xe2\xe2\ \xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe2\xe3\xdc\xe1\xe3\xda\xe0\xe2\xd9\ \xdd\xe3\xd9\xdc\xe4\xd9\xdc\xe3\xd8\xdb\xe0\xd5\xd8\xda\xd0\xd4\ \xd3\xc9\xcf\xc9\xc0\xc9\xbf\xb6\xc2\xb7\xad\xbb\xaf\xa6\xb5\xab\ \xa2\xb0\xa9\xa1\xaf\xa8\xa1\xaf\xa8\xa1\xaf\xa8\xa0\xae\xa7\xa0\ \xaf\xa7\xa0\xae\xa7\xa1\xaf\xaa\xa2\xb1\xb2\xa8\xb5\xbc\xb1\xbb\ \xc6\xb9\xc0\xcf\xc1\xc6\xd6\xc9\xcc\xdb\xce\xd1\xdf\xd3\xd6\xe0\ \xd5\xd8\xde\xd3\xd6\xdc\xd1\xd4\xd9\xce\xd1\xd7\xcb\xce\xd3\xc8\ \xcb\xd1\xc5\xcb\xcd\xc2\xc8\xca\xc1\xc9\xc9\xc1\xca\xcb\xc4\xcf\ \xcf\xc8\xd2\xd5\xcd\xd6\x00\x00\x00\xd2\xce\xd9\xd2\xce\xd9\xd2\ \xce\xd8\xd5\xd0\xd9\xd7\xd1\xda\xda\xd3\xda\xdc\xd5\xdc\xdf\xd7\ \xdd\xdf\xd8\xdd\xe1\xd9\xde\xe5\xdb\xe0\xe6\xdd\xe0\xe7\xde\xe1\ \xea\xe1\xe4\xea\xe1\xe4\xea\xe1\xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\ \xe0\xe3\xe9\xe1\xe4\xea\xe0\xe4\xea\xdf\xe5\xe8\xe0\xe5\xe7\xdf\ \xe4\xe7\xdd\xe3\xe5\xdc\xe2\xe3\xdb\xe0\xe1\xda\xdf\xdf\xd8\xdd\ \xdf\xd8\xdc\xdc\xd5\xdb\xda\xd2\xd9\xd8\xd1\xd7\xd4\xcc\xd6\xce\ \xc9\xd2\xc7\xc1\xcd\xbd\xb8\xc4\xb4\xb0\xbe\xaf\xac\xbc\xad\xa9\ \xb9\xac\xa7\xb7\xb4\xaf\xbc\xc1\xbb\xc6\xcd\xc7\xd0\xd4\xce\xd7\ \xdb\xd5\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe3\ \xdc\xe3\xe3\xdc\xe2\xe2\xdb\xe2\xe0\xda\xe0\xdf\xd8\xdf\xde\xd6\ \xdd\xde\xd7\xdd\xde\xd7\xde\xde\xd7\xdd\xde\xd7\xde\xdc\xd5\xdc\ \xdc\xd5\xdc\xdc\xd5\xdb\xdb\xd3\xdb\xdb\xd4\xdb\xda\xd3\xda\xd9\ \xd2\xd8\xd8\xd0\xd8\xd6\xcf\xd6\xd6\xcd\xd4\xd4\xcd\xd4\xd5\xcd\ \xd4\xd5\xce\xd4\xd5\xcd\xd4\xd5\xce\xd4\xd5\xce\xd4\xd6\xce\xd4\ \xd6\xcf\xd5\xd6\xce\xd5\xd5\xce\xd5\xd7\xce\xd5\xd6\xce\xd5\xd5\ \xce\xd5\xd4\xcd\xd5\xd5\xce\xd5\xd5\xce\xd7\xd5\xce\xd7\xd4\xce\ \xd7\xd4\xcf\xd8\xd5\xcf\xd8\xd4\xcf\xd8\xd3\xce\xd7\xd3\xce\xd7\ \xd3\xcc\xd5\xd3\xcc\xd6\xd4\xcd\xd7\xd4\xcc\xd6\xd4\xcc\xd6\xd4\ \xcc\xd6\xd5\xcd\xd7\xd5\xce\xd8\xd5\xcd\xd7\xd6\xce\xd8\xd7\xd0\ \xd7\xd8\xd0\xda\xd9\xd0\xda\xd9\xd2\xda\xd9\xd3\xdc\xd9\xd4\xdd\ \xda\xd5\xde\xdc\xd7\xe0\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\ \xd8\xe2\xde\xd8\xe1\xdf\xd8\xe0\xdf\xd8\xe0\xe0\xd9\xe0\xe1\xd9\ \xe0\xe2\xda\xe0\xe2\xdb\xdf\xe3\xdb\xdf\xe3\xd9\xdc\xe4\xd9\xdc\ \xe3\xd8\xdb\xe1\xd6\xd9\xdc\xd1\xd4\xd5\xca\xd0\xcd\xc2\xca\xc3\ \xba\xc4\xb7\xae\xbb\xb0\xa6\xb6\xa9\xa2\xb1\xa8\xa1\xaf\xa7\xa0\ \xaf\xa8\xa1\xb0\xa5\x9f\xae\xa6\x9f\xae\xa6\x9f\xad\xa6\x9f\xae\ \xa6\x9f\xad\xa7\xa0\xae\xab\xa3\xb1\xb4\xab\xb7\xbf\xb3\xbc\xc7\ \xbb\xc2\xd0\xc4\xc9\xd6\xcb\xcf\xdb\xd0\xd3\xdb\xd0\xd3\xdb\xcf\ \xd2\xda\xcc\xd0\xd7\xc9\xcd\xd2\xc6\xc9\xcd\xc2\xc7\xc8\xbe\xc5\ \xc2\xb9\xc2\xbf\xb6\xc1\xbe\xb7\xc3\xc4\xbe\xca\xcb\xc5\xcf\xd4\ \xcd\xd6\x00\x00\x00\xd2\xce\xd9\xd2\xce\xd9\xd2\xcd\xd8\xd3\xce\ \xd9\xd5\xcf\xd9\xd8\xd1\xd9\xda\xd3\xda\xdd\xd6\xdc\xde\xd7\xdc\ \xe0\xd9\xde\xe3\xdb\xe1\xe5\xdc\xe1\xe7\xdd\xe3\xe9\xe0\xe4\xeb\ \xe1\xe4\xea\xe1\xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe1\ \xe3\xe7\xe1\xe4\xe7\xe1\xe5\xe7\xe1\xe5\xe8\xe0\xe5\xe6\xdf\xe4\ \xe5\xde\xe3\xe4\xdd\xe2\xe2\xdb\xe0\xe1\xda\xdf\xe0\xd9\xde\xde\ \xd6\xdd\xdc\xd4\xdb\xdb\xd4\xdb\xd9\xd2\xdb\xd6\xd1\xda\xd0\xcb\ \xd5\xc6\xc2\xcd\xbc\xb8\xc5\xb5\xb1\xc0\xb1\xac\xbb\xad\xa8\xb8\ \xae\xa9\xb8\xb6\xb1\xbe\xc3\xbd\xc8\xcd\xc8\xd1\xd7\xd0\xd8\xdc\ \xd5\xdc\xe0\xd9\xe0\xe1\xda\xe1\xe0\xd9\xe0\xe2\xdb\xe2\xe2\xdb\ \xe2\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\xdf\xde\xd7\xde\xdd\xd6\xdd\ \xdd\xd6\xde\xdd\xd7\xde\xdd\xd7\xde\xdd\xd8\xdf\xdd\xd6\xdd\xdb\ \xd5\xdd\xd9\xd4\xdd\xda\xd3\xdd\xda\xd2\xdc\xd8\xd2\xdc\xd8\xd1\ \xda\xd7\xd0\xd9\xd7\xcf\xd8\xd6\xcf\xd8\xd6\xce\xd8\xd7\xcf\xd8\ \xd5\xcf\xd8\xd5\xcf\xd7\xd5\xce\xd7\xd5\xcf\xd7\xd6\xcf\xd7\xd6\ \xcf\xd7\xd8\xd0\xd8\xd8\xd0\xd8\xd8\xd1\xd8\xd7\xd0\xd7\xd7\xd0\ \xd7\xd6\xcf\xd8\xd5\xd0\xd9\xd5\xd0\xd9\xd4\xd0\xd9\xd5\xd0\xd9\ \xd4\xd0\xd9\xd4\xd0\xd9\xd4\xcf\xd8\xd2\xcc\xd6\xd1\xcd\xd5\xd1\ \xcc\xd5\xd3\xcc\xd5\xd4\xcd\xd6\xd4\xcc\xd6\xd4\xce\xd7\xd5\xce\ \xd7\xd5\xcd\xd7\xd6\xce\xd8\xd7\xcf\xd9\xd7\xcf\xd9\xd7\xcf\xd9\ \xd8\xd1\xda\xd8\xd2\xdc\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd6\xdf\xdd\ \xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd6\ \xdf\xdc\xd4\xde\xdc\xd4\xdd\xdc\xd5\xdd\xdc\xd5\xdc\xdd\xd5\xdc\ \xdf\xd7\xdc\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe3\xd7\xd9\xdf\ \xd3\xd5\xd9\xce\xd1\xd1\xc6\xcc\xc8\xbe\xc6\xbd\xb3\xbe\xb2\xa8\ \xb6\xab\xa3\xb1\xa8\xa1\xb0\xa6\x9f\xaf\xa6\x9f\xae\xa5\x9e\xad\ \xa5\x9f\xae\xa5\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa6\ \x9f\xae\xa6\x9f\xae\xae\xa5\xb2\xb7\xae\xb9\xc2\xb6\xbf\xca\xbf\ \xc6\xd1\xc6\xcb\xd3\xc7\xcd\xd5\xca\xcd\xd8\xca\xce\xd6\xc8\xcc\ \xd2\xc6\xc9\xcc\xc0\xc6\xc5\xbb\xc3\xbe\xb5\xbf\xb6\xad\xba\xb3\ \xac\xba\xb6\xaf\xbd\xc0\xb9\xc6\xca\xc3\xce\xd2\xca\xd3\x00\x00\ \x00\xd3\xcf\xda\xd2\xce\xd9\xd2\xcd\xd9\xd4\xcd\xd8\xd4\xcf\xd8\ \xd7\xd0\xd9\xd9\xd1\xd9\xdb\xd4\xdb\xdd\xd6\xdc\xdf\xd8\xdd\xe1\ \xda\xdf\xe3\xdc\xe1\xe6\xdd\xe3\xe8\xde\xe4\xe9\xe0\xe3\xea\xe1\ \xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe5\xe8\xe1\xe6\ \xe8\xe1\xe6\xe8\xe1\xe6\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe4\xe5\ \xde\xe2\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xda\xe0\xe0\xd8\xdf\xde\xd7\ \xde\xdd\xd8\xdf\xdc\xd7\xdf\xdb\xd6\xdf\xd6\xd3\xdc\xcf\xcd\xd6\ \xc8\xc3\xcf\xbe\xba\xc7\xb6\xb1\xc0\xb1\xac\xbb\xaf\xaa\xba\xb0\ \xab\xba\xb8\xb2\xbf\xc5\xbf\xca\xcf\xc9\xd3\xd8\xd1\xd9\xdd\xd6\ \xdd\xe0\xd9\xe0\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\ \xe0\xd9\xe0\xe0\xd9\xe0\xde\xd7\xde\xde\xd7\xdf\xdd\xd7\xe0\xdd\ \xd7\xe0\xdc\xd7\xe0\xdc\xd8\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd5\ \xde\xda\xd5\xde\xd9\xd4\xdd\xd9\xd5\xdd\xd8\xd4\xdd\xd8\xd3\xdc\ \xd7\xd2\xdb\xd7\xd1\xdb\xd7\xd1\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd6\ \xd1\xda\xd6\xd1\xda\xd5\xd1\xda\xd6\xd2\xdb\xd6\xd1\xda\xd7\xd3\ \xdb\xd9\xd2\xdb\xda\xd2\xda\xda\xd2\xd9\xd8\xd3\xdb\xd8\xd2\xda\ \xd6\xd1\xda\xd5\xd0\xd9\xd5\xd0\xd9\xd5\xd1\xda\xd4\xd0\xda\xd3\ \xcf\xd9\xd2\xcd\xd8\xd1\xcc\xd6\xd0\xcc\xd5\xd0\xcb\xd4\xd1\xcb\ \xd5\xd1\xcc\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd5\xcd\xd7\ \xd6\xce\xd8\xd6\xce\xd8\xd7\xce\xd9\xd6\xd0\xda\xd7\xd2\xdb\xd7\ \xd2\xdb\xd9\xd4\xdd\xda\xd5\xde\xdb\xd6\xdf\xdd\xd8\xe1\xdc\xd7\ \xe0\xdd\xd8\xe1\xdc\xd7\xe0\xda\xd5\xde\xd8\xd3\xdc\xd8\xd0\xda\ \xd7\xcf\xd9\xd6\xce\xd8\xd6\xcf\xd7\xd7\xcf\xd6\xda\xd1\xd7\xdd\ \xd3\xd7\xe0\xd5\xd8\xe1\xd5\xd8\xe1\xd5\xd7\xdc\xd0\xd2\xd6\xcb\ \xce\xce\xc2\xc9\xc4\xb9\xc2\xb8\xae\xba\xaf\xa5\xb3\xa8\xa1\xb0\ \xa6\x9f\xaf\xa5\x9d\xae\xa4\x9d\xae\xa2\x9c\xad\xa2\x9d\xad\xa3\ \x9d\xac\xa3\x9d\xac\xa4\x9d\xac\xa4\x9d\xac\xa4\x9d\xac\xa5\x9e\ \xad\xa8\xa1\xaf\xb2\xa9\xb5\xbd\xb3\xbd\xc4\xb9\xc2\xc9\xbe\xc5\ \xcd\xc1\xc7\xd0\xc4\xc8\xd2\xc5\xc9\xd0\xc4\xc8\xcb\xbf\xc5\xc3\ \xb8\xc1\xba\xb1\xbb\xb2\xaa\xb8\xad\xa6\xb4\xad\xa7\xb6\xb6\xaf\ \xbc\xc2\xba\xc5\xcc\xc3\xcd\xd4\xca\xd2\x00\x00\x00\xd3\xcf\xda\ \xd4\xd0\xda\xd4\xcf\xda\xd3\xce\xd8\xd4\xcf\xd8\xd6\xcf\xd9\xd8\ \xd0\xda\xda\xd3\xda\xdc\xd4\xdb\xdf\xd8\xdd\xe0\xd9\xde\xe2\xdb\ \xe0\xe3\xdc\xe1\xe8\xde\xe3\xe8\xdf\xe3\xe9\xe0\xe3\xea\xe1\xe4\ \xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe4\xe7\xe1\xe6\xe7\xe0\xe5\xe7\ \xe0\xe5\xe7\xe0\xe5\xe7\xe0\xe5\xe6\xdf\xe4\xe5\xdd\xe4\xe4\xdd\ \xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe1\xdf\xd9\xe2\ \xdd\xd9\xe2\xdb\xd8\xe1\xdb\xd8\xe1\xd6\xd3\xdd\xd0\xcc\xd7\xc9\ \xc5\xd0\xbd\xb9\xc6\xb6\xb1\xc0\xb3\xad\xbd\xb0\xac\xbb\xb2\xad\ \xbc\xbb\xb5\xc1\xc6\xc0\xca\xd1\xca\xd3\xd9\xd2\xd8\xdd\xd6\xdd\ \xe0\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe0\xe0\ \xd9\xe0\xdf\xd8\xdf\xde\xd7\xe0\xdc\xd8\xe1\xdd\xd8\xe1\xdd\xd8\ \xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xe0\ \xdb\xd6\xdf\xdc\xd7\xe0\xda\xd6\xdf\xdb\xd6\xdf\xd9\xd5\xde\xd9\ \xd5\xde\xd9\xd4\xdd\xd7\xd4\xdd\xd7\xd3\xdd\xd6\xd2\xdd\xd6\xd3\ \xdc\xd6\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xda\xd5\xde\ \xda\xd5\xde\xdb\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd8\ \xd3\xdc\xd7\xd2\xdb\xd6\xd2\xdb\xd4\xd0\xda\xd2\xce\xd9\xd1\xcd\ \xd8\xd0\xcc\xd7\xcf\xcb\xd6\xd0\xcb\xd6\xd1\xcb\xd6\xd1\xcb\xd6\ \xd1\xcc\xd5\xd2\xcb\xd5\xd2\xcd\xd6\xd4\xce\xd8\xd5\xce\xd8\xd6\ \xcf\xd8\xd6\xd0\xd9\xd6\xd1\xda\xd7\xd2\xdb\xd8\xd3\xdc\xd9\xd4\ \xdd\xda\xd5\xde\xdb\xd6\xdf\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\xe0\ \xdb\xd6\xdf\xd8\xd3\xdc\xd5\xcf\xd9\xd3\xcb\xd5\xcf\xc7\xd2\xcd\ \xc5\xcf\xcd\xc3\xcf\xce\xc4\xce\xd2\xc7\xce\xd6\xca\xcf\xda\xcd\ \xd1\xdc\xce\xd2\xdd\xd0\xd1\xd9\xcd\xd0\xd2\xc7\xcb\xcb\xbf\xc6\ \xc1\xb6\xbe\xb6\xac\xb8\xac\xa3\xb2\xa6\x9e\xaf\xa4\x9d\xae\xa2\ \x9c\xad\xa2\x9c\xad\xa2\x9c\xad\xa2\x9c\xac\xa2\x9d\xac\xa3\x9d\ \xab\xa3\x9c\xab\xa3\x9c\xab\xa3\x9c\xab\xa5\x9e\xad\xa6\x9f\xae\ \xac\xa3\xb1\xb7\xad\xb7\xbe\xb4\xbc\xc4\xb9\xc0\xc7\xbb\xc1\xcb\ \xbf\xc4\xca\xbe\xc4\xc7\xbc\xc3\xc1\xb6\xbf\xb8\xae\xba\xaf\xa8\ \xb5\xa9\xa2\xb2\xa9\xa3\xb2\xb0\xa9\xb8\xbc\xb3\xc0\xc7\xbd\xc7\ \xd1\xc7\xce\xd8\xce\xd4\x00\x00\x00\xd4\xd0\xdb\xd7\xd2\xdc\xd7\ \xd2\xdb\xd6\xd1\xda\xd5\xd0\xd8\xd7\xcf\xd9\xd7\xcf\xd8\xda\xd3\ \xda\xdc\xd5\xdb\xde\xd6\xdc\xe0\xd8\xde\xe1\xda\xdf\xe2\xdb\xe0\ \xe3\xdc\xe1\xe6\xdf\xe4\xe8\xdf\xe4\xe8\xdf\xe3\xe8\xdf\xe2\xe7\ \xde\xe1\xe7\xdd\xe3\xe6\xdd\xe3\xe5\xde\xe3\xe6\xdf\xe4\xe6\xdf\ \xe4\xe6\xde\xe4\xe6\xde\xe5\xe4\xde\xe5\xe5\xdd\xe5\xe5\xde\xe5\ \xe4\xdd\xe4\xe2\xdd\xe4\xe1\xdc\xe4\xe0\xdb\xe4\xdf\xdb\xe4\xdd\ \xda\xe3\xdc\xd9\xe2\xdb\xd8\xe1\xd8\xd3\xde\xd3\xce\xd9\xc8\xc4\ \xcf\xbc\xb8\xc5\xb7\xb2\xc1\xb3\xaf\xbe\xb3\xae\xbd\xb4\xaf\xbd\ \xbc\xb5\xc2\xc6\xbf\xc9\xd1\xc9\xd2\xd9\xd1\xd8\xdf\xd7\xde\xe1\ \xda\xe0\xe1\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\ \xe1\xe0\xd9\xe0\xde\xd9\xe2\xdf\xda\xe2\xdf\xda\xe2\xdf\xda\xe3\ \xdf\xda\xe3\xe0\xdb\xe4\xdf\xda\xe3\xde\xd9\xe2\xdf\xda\xe3\xdf\ \xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\xe1\xde\xd9\xe2\xdc\xd8\ \xe1\xdb\xd7\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd6\xdf\ \xd9\xd3\xdd\xd9\xd4\xdd\xda\xd5\xde\xdb\xd6\xdf\xdb\xd6\xdf\xdc\ \xd7\xe0\xdc\xd7\xe0\xda\xd5\xde\xd9\xd4\xdd\xda\xd5\xde\xd8\xd3\ \xdc\xd7\xd1\xdb\xd4\xcf\xda\xd2\xce\xd9\xd2\xce\xd9\xd0\xcc\xd7\ \xd0\xcc\xd7\xd0\xcc\xd7\xd0\xcc\xd7\xd0\xcb\xd6\xd0\xca\xd5\xd0\ \xcb\xd6\xd1\xcc\xd6\xd3\xce\xd7\xd4\xcf\xd8\xd4\xd0\xd9\xd6\xd1\ \xda\xd5\xd0\xda\xd7\xd1\xdc\xd6\xd3\xdd\xd8\xd5\xde\xdb\xd5\xde\ \xdb\xd6\xdf\xdd\xd8\xe1\xdd\xd8\xe1\xdb\xd6\xdf\xd8\xd3\xdc\xd5\ \xd0\xd9\xd2\xcb\xd4\xcd\xc5\xcf\xc5\xbd\xc9\xc1\xb8\xc5\xbf\xb5\ \xc2\xc2\xb7\xc3\xc6\xb9\xc3\xcc\xbe\xc5\xd2\xc4\xc8\xd4\xc6\xca\ \xd6\xc8\xcc\xd4\xc6\xca\xcf\xc3\xc7\xc8\xbc\xc3\xbe\xb3\xbc\xb2\ \xa9\xb4\xaa\xa1\xb1\xa4\x9d\xae\xa1\x9b\xac\xa0\x9a\xac\xa0\x9a\ \xab\xa0\x9a\xab\xa0\x9b\xac\xa0\x9a\xab\xa1\x9b\xac\xa1\x9c\xac\ \xa1\x9c\xac\xa2\x9c\xab\xa3\x9d\xac\xa5\x9e\xad\xa8\x9f\xaf\xaf\ \xa6\xb3\xb8\xad\xb8\xbe\xb2\xbb\xc3\xb6\xbd\xc3\xb7\xbd\xc2\xb6\ \xbd\xbd\xb2\xbc\xb6\xac\xb8\xae\xa7\xb4\xa8\xa1\xb1\xa7\xa0\xb0\ \xad\xa6\xb5\xb8\xaf\xbc\xc4\xba\xc4\xce\xc3\xca\xd6\xcb\xd1\xdd\ \xd1\xd6\x00\x00\x00\xd5\xd0\xda\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd1\ \xdb\xd7\xd0\xda\xd8\xd0\xda\xd8\xd0\xd9\xd9\xd2\xda\xda\xd4\xdb\ \xdd\xd5\xdc\xde\xd6\xdd\xdf\xd8\xde\xe1\xda\xe0\xe3\xdb\xe1\xe4\ \xdd\xe2\xe5\xde\xe3\xe6\xdd\xe3\xe6\xdd\xe2\xe6\xdd\xe2\xe6\xdc\ \xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe5\xde\xe3\xe4\xdd\xe4\xe4\xdd\xe4\ \xe4\xdd\xe4\xe4\xdd\xe4\xe4\xde\xe5\xe3\xde\xe5\xe3\xdf\xe5\xe3\ \xdf\xe7\xe1\xdd\xe6\xe0\xdc\xe5\xde\xdc\xe5\xde\xdb\xe5\xde\xda\ \xe4\xdd\xda\xe3\xdd\xd9\xe2\xda\xd4\xde\xd3\xce\xd8\xc8\xc3\xcf\ \xbe\xba\xc7\xb9\xb4\xc2\xb6\xb1\xc0\xb3\xaf\xbd\xb4\xad\xba\xbc\ \xb4\xc0\xc6\xbe\xc8\xd1\xc9\xd1\xd8\xd1\xd8\xde\xd7\xdd\xe1\xd9\ \xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xdf\xdb\xe2\ \xe0\xda\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\ \xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe2\xdc\xe5\xe1\xdc\ \xe5\xdf\xdc\xe5\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe4\xdd\xd9\xe3\ \xdc\xd8\xe2\xdb\xd8\xe2\xdc\xd9\xe1\xdc\xd7\xe0\xdb\xd6\xdf\xdb\ \xd6\xdf\xdb\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\ \xe1\xdb\xd6\xdf\xda\xd5\xde\xd9\xd5\xde\xd8\xd4\xdd\xd7\xd2\xdb\ \xd5\xd0\xda\xd5\xd0\xda\xd3\xcf\xda\xd2\xce\xd9\xd1\xcd\xd8\xd1\ \xcd\xd8\xd0\xcc\xd7\xd0\xcc\xd7\xcf\xcb\xd6\xcf\xcb\xd6\xd1\xcc\ \xd7\xd3\xcd\xd8\xd4\xcf\xd9\xd6\xd1\xda\xd6\xd0\xda\xd5\xd0\xdb\ \xd4\xd0\xdb\xd4\xd0\xdb\xd6\xd2\xdd\xd8\xd2\xdd\xd9\xd4\xdd\xda\ \xd5\xde\xda\xd5\xde\xd8\xd3\xdc\xd6\xd1\xda\xd2\xcd\xd6\xcd\xc6\ \xd0\xc5\xbd\xc9\xbb\xb1\xc0\xb1\xa7\xba\xaf\xa4\xb9\xb1\xa6\xb8\ \xb7\xaa\xb9\xbd\xaf\xbb\xc5\xb5\xbf\xca\xbb\xc1\xce\xbf\xc4\xce\ \xc1\xc5\xc9\xbd\xc3\xc3\xb7\xbf\xb9\xae\xb9\xaf\xa5\xb3\xa5\x9d\ \xaf\xa0\x99\xac\x9e\x98\xac\x9c\x98\xab\x9c\x98\xab\x9e\x9a\xaa\ \x9f\x9a\xab\xa0\x9a\xab\xa0\x9a\xab\xa1\x9c\xac\xa1\x9c\xab\xa1\ \x9c\xaa\xa3\x9d\xac\xa4\x9d\xac\xa4\x9e\xad\xa9\xa2\xb0\xb2\xa7\ \xb3\xb7\xab\xb6\xbc\xaf\xb9\xbb\xaf\xb9\xb8\xae\xb9\xb4\xab\xb7\ \xae\xa6\xb4\xa7\xa0\xb0\xa5\x9e\xaf\xa9\xa2\xb2\xb5\xab\xb9\xc0\ \xb6\xc0\xcb\xbf\xc7\xd4\xc8\xce\xda\xcf\xd4\xe0\xd5\xd8\x00\x00\ \x00\xd6\xd2\xdb\xd8\xd3\xdc\xda\xd3\xdd\xda\xd2\xdc\xda\xd3\xda\ \xda\xd2\xda\xd9\xd2\xda\xda\xd3\xda\xdb\xd4\xdb\xdd\xd5\xdc\xde\ \xd6\xdd\xdf\xd7\xde\xe1\xd8\xdf\xe1\xda\xe1\xe4\xdc\xe3\xe5\xde\ \xe3\xe5\xde\xe2\xe4\xdd\xe2\xe4\xdc\xe1\xe4\xdd\xe1\xe4\xdc\xe1\ \xe4\xdc\xe2\xe3\xdc\xe3\xe3\xdc\xe3\xe3\xdd\xe4\xe2\xdd\xe5\xe2\ \xde\xe5\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\xe6\xe2\xde\xe7\xe1\xdd\ \xe6\xe0\xdd\xe6\xdf\xdc\xe5\xdf\xdb\xe6\xde\xda\xe5\xde\xdb\xe4\ \xde\xda\xe3\xdf\xd9\xe2\xda\xd5\xdf\xd4\xcf\xd9\xcc\xc6\xd2\xc1\ \xbd\xc9\xba\xb5\xc3\xb7\xb2\xc1\xb4\xae\xbd\xb5\xad\xba\xbc\xb3\ \xbf\xc6\xbe\xc8\xd1\xc9\xd1\xda\xd1\xd9\xde\xd6\xdd\xe0\xd9\xe0\ \xe0\xd9\xe0\xe1\xda\xe1\xe1\xdb\xe3\xe0\xdb\xe4\xe1\xdc\xe5\xe1\ \xdc\xe5\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\ \xe7\xe3\xde\xe7\xe2\xde\xe7\xe2\xde\xe7\xe1\xde\xe7\xe1\xde\xe7\ \xe1\xde\xe7\xe1\xde\xe7\xe0\xdd\xe6\xdf\xdc\xe5\xdf\xdb\xe4\xe0\ \xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\ \xe1\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\ \xdd\xd8\xe1\xdb\xd6\xdf\xda\xd5\xde\xd9\xd4\xdd\xd8\xd3\xdc\xd7\ \xd2\xdb\xd6\xd0\xdb\xd3\xd0\xda\xd3\xcf\xda\xd2\xce\xd9\xd1\xce\ \xd8\xd1\xcd\xd8\xd1\xcd\xd8\xd0\xcc\xd7\xd1\xcd\xd8\xd1\xcd\xd8\ \xd2\xcd\xd8\xd3\xce\xd9\xd3\xcd\xd8\xd1\xcd\xd8\xd0\xcc\xd7\xd0\ \xcc\xd7\xd0\xcc\xd7\xd3\xcd\xd8\xd4\xce\xd9\xd5\xd0\xd9\xd4\xcf\ \xd8\xd3\xcd\xd7\xd2\xcc\xd6\xcd\xc7\xd2\xc7\xbf\xcb\xbd\xb3\xc2\ \xad\xa3\xb6\x9e\x95\xae\x98\x8f\xac\x9a\x90\xac\xa1\x95\xae\xaa\ \x9d\xb1\xb3\xa5\xb5\xbd\xaf\xba\xc3\xb6\xbd\xc4\xb8\xbe\xc3\xb6\ \xbd\xbc\xb0\xbb\xb3\xa8\xb5\xa9\xa1\xb0\xa0\x99\xac\x9a\x95\xaa\ \x98\x94\xa8\x9a\x95\xa9\x9a\x96\xaa\x9b\x97\xaa\x9d\x99\xab\x9e\ \x99\xaa\xa0\x9a\xab\xa0\x9a\xab\xa0\x9b\xab\xa1\x9b\xaa\xa1\x9c\ \xab\xa2\x9c\xac\xa2\x9c\xac\xa3\x9d\xad\xa9\xa1\xaf\xae\xa4\xb2\ \xb2\xa7\xb3\xb2\xa7\xb5\xaf\xa6\xb4\xaa\xa2\xb2\xa6\x9f\xaf\xa3\ \x9d\xae\xa4\x9f\xb0\xad\xa6\xb4\xb8\xaf\xbc\xc3\xb9\xc3\xcf\xc2\ \xc9\xd7\xcb\xd1\xdd\xd2\xd6\xe2\xd7\xda\x00\x00\x00\xd8\xd2\xdb\ \xd9\xd3\xdc\xda\xd3\xdc\xda\xd4\xda\xdb\xd4\xdb\xdb\xd4\xdb\xdb\ \xd4\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xdd\xd5\xdc\xdf\xd7\xde\xdf\xd8\ \xdf\xdf\xd8\xdf\xe2\xdb\xe2\xe2\xdb\xe2\xe4\xdc\xe3\xe2\xdb\xe2\ \xe4\xdb\xe2\xe4\xdc\xe2\xe3\xdc\xe3\xe2\xdb\xe3\xe2\xdb\xe3\xe3\ \xdb\xe2\xe1\xdc\xe4\xe1\xdc\xe6\xe1\xdd\xe5\xe0\xdc\xe5\xe0\xdd\ \xe6\xe1\xde\xe7\xe1\xdd\xe6\xe0\xde\xe7\xe0\xdd\xe7\xdf\xdd\xe6\ \xe0\xdb\xe7\xdf\xdb\xe6\xdf\xdb\xe6\xdf\xdc\xe5\xe1\xdc\xe5\xe1\ \xdc\xe5\xe0\xdb\xe4\xdc\xd7\xe0\xd6\xd1\xda\xcc\xc7\xd2\xc2\xbe\ \xca\xba\xb5\xc4\xb7\xb2\xc1\xb6\xb0\xbd\xb5\xae\xbb\xbd\xb4\xbf\ \xc7\xbe\xc8\xd1\xca\xd1\xd9\xd1\xd8\xdf\xd8\xdf\xe2\xdb\xe2\xe3\ \xdc\xe3\xe1\xdc\xe3\xe2\xdd\xe4\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\ \xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xe3\xdf\xe8\ \xe1\xde\xe7\xe2\xdf\xe8\xe2\xdf\xe8\xe3\xe0\xe9\xe3\xe0\xe9\xe3\ \xe0\xe9\xe3\xe0\xe9\xe3\xdf\xe8\xe3\xde\xe7\xe1\xdd\xe6\xe2\xdd\ \xe6\xe1\xdc\xe5\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe3\xe0\xdb\xe4\ \xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdd\xd9\xe2\xdc\ \xd7\xe0\xdb\xd6\xdf\xda\xd6\xdf\xda\xd5\xde\xd8\xd3\xdc\xd7\xd2\ \xdb\xd7\xd2\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\ \xd2\xce\xd9\xd2\xce\xd9\xd1\xcd\xd8\xcf\xcb\xd6\xce\xca\xd5\xcc\ \xc8\xd3\xcc\xc8\xd4\xca\xc6\xd2\xcb\xc4\xd0\xca\xc4\xd0\xcc\xc6\ \xd1\xce\xc8\xd3\xce\xc8\xd3\xcf\xc9\xd3\xcd\xc8\xd2\xcc\xc6\xd1\ \xc9\xc3\xce\xc7\xc0\xcb\xbf\xb7\xc3\xb4\xaa\xbb\xa1\x99\xb0\x91\ \x88\xa6\x85\x7d\xa0\x80\x78\x9f\x83\x7c\xa1\x8f\x86\xa5\x9e\x93\ \xab\xaa\xa0\xb1\xb4\xa9\xb6\xb8\xad\xb8\xb8\xad\xb8\xb2\xa8\xb6\ \xab\xa2\xb1\xa3\x9a\xad\x99\x93\xa9\x96\x90\xa7\x94\x8f\xa5\x94\ \x91\xa6\x96\x93\xa8\x99\x94\xa9\x9b\x97\xaa\x9b\x98\xa9\x9c\x98\ \xa8\x9f\x98\xaa\x9f\x9a\xa9\x9f\x9a\xaa\xa0\x9b\xaa\xa0\x9c\xaa\ \xa1\x9c\xab\xa0\x9a\xab\xa3\x9d\xad\xa6\x9e\xae\xa7\x9f\xaf\xa6\ \x9f\xaf\xa4\x9d\xaf\xa2\x9c\xae\xa1\x9c\xac\xa2\x9d\xae\xa5\x9f\ \xb0\xae\xa7\xb7\xba\xb1\xbd\xc5\xba\xc3\xcf\xc2\xc9\xd6\xca\xd0\ \xdd\xd2\xd6\xe3\xd8\xdb\x00\x00\x00\xd8\xd2\xdb\xda\xd3\xdc\xdb\ \xd4\xdb\xdb\xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdd\xd5\ \xdb\xdd\xd5\xdc\xde\xd6\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\ \xe0\xd9\xe0\xe2\xda\xe2\xe2\xdb\xe3\xe2\xda\xe3\xe2\xda\xe2\xe2\ \xdb\xe3\xe1\xdb\xe2\xe1\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xe0\xdb\ \xe4\xe0\xdb\xe4\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\xe0\xdd\xe6\ \xe0\xdc\xe6\xe0\xdd\xe7\xdf\xdc\xe6\xe0\xdb\xe7\xdf\xdc\xe7\xe0\ \xdb\xe7\xdf\xdb\xe6\xe0\xdc\xe6\xe0\xdd\xe5\xe2\xdd\xe6\xe2\xdd\ \xe6\xe1\xdc\xe5\xdd\xd8\xe1\xd6\xd0\xda\xcd\xc8\xd3\xc3\xbf\xcb\ \xbb\xb6\xc4\xb8\xb3\xc1\xb6\xae\xbb\xb6\xad\xba\xbe\xb5\xc0\xc8\ \xbf\xc9\xd1\xc9\xd2\xd9\xd2\xd9\xdf\xd8\xdf\xe3\xdc\xe3\xe4\xde\ \xe4\xe2\xde\xe4\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\ \xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\xe9\xe3\xdf\xe8\xe1\xdf\xe8\xe2\ \xdf\xe8\xe2\xdf\xe8\xe2\xdf\xe8\xe4\xe1\xea\xe6\xe1\xea\xe6\xe1\ \xea\xe5\xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe7\xe2\xde\xe5\xe3\xdf\xe5\ \xe2\xde\xe4\xe3\xde\xe4\xe2\xdd\xe5\xe1\xdd\xe4\xe1\xdc\xe5\xe0\ \xdb\xe4\xe1\xdc\xe5\xe0\xdb\xe4\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\ \xe1\xdc\xd7\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xd9\xd4\xde\ \xd8\xd3\xdd\xd6\xd1\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd3\xcf\xda\xd2\ \xce\xd9\xce\xca\xd5\xca\xc6\xd2\xc6\xc2\xcf\xc4\xc0\xcd\xc3\xbf\ \xcc\xc3\xbd\xca\xc3\xbd\xca\xc5\xbe\xca\xc5\xbf\xcb\xc8\xc2\xcd\ \xc9\xc2\xcd\xc9\xc3\xce\xc8\xc1\xcc\xc6\xbf\xca\xc3\xbb\xc6\xbf\ \xb6\xc3\xb7\xad\xbc\xaa\xa0\xb4\x9a\x91\xab\x88\x80\xa2\x79\x70\ \x99\x6e\x67\x93\x71\x6a\x95\x7d\x76\x9c\x8d\x85\xa3\x9a\x91\xa8\ \xa4\x9b\xae\xa9\xa0\xb1\xab\xa2\xb2\xa8\xa0\xb1\xa2\x9a\xac\x9a\ \x93\xa8\x93\x8d\xa4\x8e\x8b\xa3\x8d\x89\xa2\x8f\x8c\xa4\x92\x8f\ \xa5\x94\x92\xa6\x97\x94\xa8\x99\x95\xa8\x9a\x97\xa8\x9c\x97\xa7\ \x9d\x98\xa8\x9f\x99\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa0\x9a\xab\xa1\ \x9b\xac\xa0\x9a\xac\xa0\x9a\xac\xa0\x9a\xac\xa0\x9b\xad\x9f\x9a\ \xad\x9f\x9a\xae\xa0\x9d\xac\xa0\x9d\xad\xa5\x9f\xb0\xae\xa7\xb5\ \xba\xb1\xbc\xc3\xb9\xc3\xcc\xc0\xc8\xd3\xc7\xcd\xdb\xd0\xd4\xe1\ \xd6\xd9\x00\x00\x00\xda\xd3\xdb\xdb\xd4\xdb\xdc\xd5\xdc\xdd\xd5\ \xdc\xdc\xd4\xdb\xdd\xd5\xdb\xdd\xd6\xdb\xdd\xd6\xdb\xdd\xd6\xdb\ \xde\xd6\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe1\xe1\xda\xe3\xe2\ \xd9\xe4\xe0\xda\xe3\xdf\xd9\xe3\xe0\xda\xe3\xe0\xdb\xe4\xdf\xda\ \xe3\xe0\xdb\xe3\xdf\xda\xe4\xdf\xdb\xe4\xdf\xdb\xe3\xde\xdb\xe4\ \xdd\xd9\xe3\xde\xda\xe5\xde\xda\xe4\xde\xdb\xe5\xde\xdb\xe6\xde\ \xdc\xe6\xdd\xdc\xe6\xdd\xdb\xe6\xdd\xdc\xe6\xde\xdc\xe6\xde\xdb\ \xe5\xdf\xdb\xe7\xe1\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe2\xdd\xe6\ \xe0\xdb\xe4\xdc\xd7\xe0\xd6\xd1\xda\xcd\xc8\xd3\xc2\xbe\xca\xba\ \xb5\xc4\xb7\xb1\xbf\xb5\xae\xbb\xb6\xad\xba\xbd\xb4\xbf\xc7\xbe\ \xc8\xd1\xc9\xd3\xda\xd3\xdb\xe0\xda\xe0\xe2\xde\xe4\xe2\xde\xe5\ \xe3\xde\xe6\xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\xe5\xe0\xe9\xe5\ \xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xdf\xe8\xe1\xde\xe7\xe2\xdf\ \xe8\xe2\xdf\xe8\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe2\xeb\xe6\xe1\xea\ \xe5\xe0\xe9\xe4\xe0\xe7\xe4\xe0\xe6\xe2\xdf\xe4\xe4\xdf\xe5\xe5\ \xde\xe5\xe4\xde\xe4\xe4\xdd\xe4\xe2\xdc\xe4\xe0\xdb\xe4\xe1\xdc\ \xe5\xe0\xdb\xe4\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe1\ \xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd5\xde\xd9\ \xd4\xde\xd6\xd2\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd0\xcc\xd7\xcb\xc7\ \xd3\xc5\xc1\xce\xbf\xb9\xc9\xba\xb5\xc5\xb9\xb4\xc3\xb8\xb1\xc1\ \xb9\xb2\xc0\xba\xb3\xc1\xbb\xb5\xc3\xc0\xb8\xc5\xc3\xbb\xc7\xc7\ \xbe\xca\xc6\xbe\xc9\xc3\xbb\xc6\xbe\xb5\xc1\xb8\xae\xbd\xae\xa5\ \xb5\xa0\x97\xae\x92\x89\xa6\x83\x7b\x9e\x74\x6c\x96\x68\x62\x8e\ \x67\x61\x8e\x71\x6a\x93\x80\x79\x9c\x8d\x86\xa3\x97\x90\xa7\x9d\ \x96\xaa\xa0\x99\xad\x9e\x98\xac\x99\x93\xa8\x91\x8c\xa3\x8b\x87\ \xa1\x88\x85\x9f\x88\x86\x9f\x8b\x88\xa1\x8d\x8a\xa3\x91\x8e\xa4\ \x94\x91\xa6\x95\x93\xa6\x98\x94\xa7\x99\x96\xa8\x9b\x97\xa8\x9d\ \x97\xa8\xa0\x9a\xaa\x9f\x9a\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa0\x99\ \xac\x9f\x99\xac\x9e\x99\xac\x9e\x9a\xad\x9d\x9a\xac\x9e\x9b\xad\ \x9f\x9c\xac\x9f\x9d\xac\xa4\x9f\xaf\xae\xa6\xb4\xb8\xaf\xbb\xc1\ \xb6\xc0\xc9\xbd\xc5\xd0\xc5\xcb\xd7\xcc\xd2\xde\xd3\xd8\x00\x00\ \x00\xdd\xd6\xde\xdd\xd6\xdd\xdc\xd5\xdc\xde\xd7\xdc\xdd\xd6\xdb\ \xdd\xd6\xdb\xdc\xd5\xda\xde\xd7\xdc\xde\xd7\xdb\xdd\xd6\xdc\xdf\ \xd7\xde\xdf\xd7\xde\xdf\xd8\xe0\xe1\xd9\xe3\xe1\xda\xe4\xdf\xda\ \xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\ \xe0\xdb\xe4\xdf\xdb\xe3\xdd\xd9\xe4\xdc\xd8\xe3\xdd\xd9\xe4\xdd\ \xd9\xe4\xdd\xda\xe5\xdc\xdb\xe5\xdb\xda\xe4\xdd\xdc\xe6\xdc\xdb\ \xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdd\xdc\xe6\xdf\xdb\xe7\xe0\xdc\xe7\ \xe1\xde\xe6\xe0\xde\xe6\xe2\xde\xe7\xe2\xdd\xe6\xe2\xdd\xe6\xe0\ \xdb\xe4\xdc\xd7\xe0\xd5\xd0\xda\xcd\xc7\xd3\xc2\xbe\xca\xba\xb5\ \xc3\xb7\xb1\xc0\xb5\xae\xbc\xb5\xae\xba\xbe\xb4\xc0\xc7\xbf\xc9\ \xd2\xca\xd4\xdb\xd4\xdc\xe0\xda\xe2\xe2\xde\xe4\xe2\xde\xe5\xe2\ \xdd\xe7\xe3\xde\xe7\xe5\xe0\xe9\xe5\xe0\xe9\xe6\xe1\xea\xe6\xe1\ \xea\xe4\xe0\xe9\xe3\xdf\xe8\xe2\xdd\xe6\xe4\xdf\xe8\xe4\xdf\xe8\ \xe5\xe0\xe9\xe7\xe2\xeb\xe7\xe2\xea\xe7\xe2\xea\xe5\xe0\xe9\xe5\ \xe0\xe8\xe3\xdf\xe8\xe5\xde\xe5\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\ \xe6\xe4\xdd\xe4\xe4\xdd\xe4\xe2\xdd\xe5\xe0\xdb\xe4\xe0\xdb\xe4\ \xe1\xdc\xe5\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xde\xd9\xe2\xde\ \xd9\xe2\xde\xda\xe3\xde\xd9\xe2\xdd\xd7\xe0\xdb\xd6\xdf\xd9\xd4\ \xdf\xd6\xd1\xdc\xd3\xce\xd9\xce\xca\xd5\xc8\xc3\xd0\xc0\xbb\xcb\ \xb8\xb2\xc2\xb1\xab\xbd\xad\xa7\xba\xab\xa5\xb7\xaa\xa3\xb6\xaa\ \xa4\xb6\xac\xa6\xb7\xae\xa8\xb8\xb3\xac\xbb\xb8\xb1\xbf\xbe\xb5\ \xc2\xbd\xb5\xc1\xba\xb1\xbe\xb2\xaa\xb9\xa9\xa1\xb3\x9b\x93\xaa\ \x8c\x84\xa2\x7f\x77\x9b\x72\x6a\x93\x67\x61\x8d\x63\x5e\x89\x6a\ \x64\x8e\x76\x70\x95\x83\x7d\x9d\x8c\x87\xa2\x92\x8d\xa5\x96\x90\ \xa7\x96\x90\xa6\x91\x8d\xa3\x8a\x86\x9f\x85\x81\x9c\x82\x7f\x9c\ \x83\x81\x9d\x87\x84\x9d\x89\x86\xa0\x8d\x8a\xa3\x91\x8e\xa4\x93\ \x91\xa5\x95\x92\xa6\x97\x93\xa6\x99\x96\xa8\x9c\x96\xa7\x9e\x99\ \xa9\x9f\x99\xaa\x9f\x99\xaa\x9e\x99\xaa\x9e\x9a\xab\x9d\x9a\xac\ \x9e\x9a\xad\x9d\x99\xac\x9e\x9a\xad\x9e\x9b\xad\xa0\x9c\xac\xa0\ \x9c\xad\xa3\x9e\xae\xab\xa4\xb3\xb6\xac\xb8\xbf\xb4\xbe\xc4\xb9\ \xc2\xcb\xc0\xc9\xd2\xc8\xcf\xd8\xce\xd4\x00\x00\x00\xde\xd7\xde\ \xde\xd7\xde\xde\xd7\xde\xdf\xd7\xde\xdf\xd7\xdd\xde\xd7\xdc\xde\ \xd7\xdc\xde\xd6\xdb\xde\xd7\xdc\xde\xd6\xdb\xde\xd6\xdd\xdf\xd7\ \xde\xdf\xd8\xdf\xe0\xd8\xe2\xdf\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe1\ \xdd\xd8\xe1\xdd\xd8\xe2\xdd\xd7\xe2\xdd\xd8\xe3\xde\xd9\xe3\xdd\ \xd9\xe4\xdc\xd8\xe3\xdb\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe4\xdb\xdb\ \xe5\xdb\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xda\xe4\ \xdc\xdb\xe5\xdc\xdc\xe6\xdd\xdb\xe5\xde\xdb\xe5\xdf\xdb\xe6\xdf\ \xdb\xe6\xdf\xdc\xe5\xe2\xdd\xe6\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xda\ \xe3\xdb\xd6\xdf\xd6\xd0\xda\xcc\xc7\xd3\xc1\xbd\xca\xba\xb6\xc3\ \xb7\xb2\xc1\xb3\xad\xbb\xb4\xad\xba\xbc\xb4\xbe\xc7\xbf\xc9\xd2\ \xca\xd4\xd8\xd2\xdb\xde\xd9\xe2\xe1\xdd\xe4\xe2\xdd\xe6\xe2\xdd\ \xe6\xe5\xe0\xe8\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\ \xe4\xdf\xe8\xe4\xdf\xe8\xe3\xde\xe7\xe5\xe0\xe9\xe4\xdf\xe8\xe6\ \xe1\xea\xe6\xe1\xeb\xe7\xe2\xeb\xe5\xe0\xe9\xe5\xe0\xe9\xe4\xdf\ \xe8\xe5\xdf\xe6\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\ \xe4\xdd\xe4\xe4\xdd\xe3\xe2\xdd\xe5\xe2\xdd\xe5\xe1\xdc\xe5\xe0\ \xdb\xe4\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xe0\xd9\ \xe2\xe1\xd9\xe2\xdf\xd8\xe1\xdc\xd7\xe0\xda\xd4\xdf\xd9\xd3\xdd\ \xd4\xce\xd9\xce\xc7\xd3\xc5\xc0\xce\xbc\xb6\xc6\xb1\xaa\xbe\xa5\ \x9e\xb5\x9f\x99\xb0\x9d\x97\xad\x9d\x96\xac\x9d\x97\xac\x9d\x97\ \xab\x9e\x97\xaa\xa0\x9a\xac\xa4\x9d\xaf\xa8\xa2\xb3\xac\xa5\xb6\ \xac\xa5\xb6\xa9\xa1\xb3\xa2\x9b\xae\x98\x90\xa7\x8a\x83\x9f\x7e\ \x77\x99\x72\x6c\x93\x69\x64\x8d\x63\x5f\x89\x65\x61\x8a\x6e\x6b\ \x90\x79\x76\x97\x82\x7e\x9c\x89\x85\xa0\x8c\x88\xa2\x8c\x89\xa1\ \x89\x86\x9f\x83\x80\x9a\x7d\x7a\x97\x7b\x7a\x96\x7d\x7c\x99\x80\ \x7f\x9a\x84\x83\x9c\x8a\x87\xa0\x8d\x8b\xa1\x90\x8e\xa3\x93\x91\ \xa4\x96\x92\xa5\x98\x94\xa6\x9c\x96\xa7\x9e\x98\xa8\x9f\x99\xa9\ \x9e\x99\xa9\x9f\x99\xaa\x9d\x99\xab\x9d\x99\xac\x9d\x99\xac\x9e\ \x9a\xad\x9d\x9a\xad\x9e\x9c\xad\xa0\x9d\xad\xa0\x9d\xad\xa3\x9d\ \xae\xa8\xa1\xb1\xb1\xa7\xb5\xb8\xae\xba\xc0\xb5\xbf\xc7\xbb\xc4\ \xcc\xc2\xca\xd1\xc7\xcf\x00\x00\x00\xdf\xd8\xdf\xdf\xd8\xdf\xdf\ \xd7\xde\xde\xd7\xdd\xde\xd7\xdd\xde\xd8\xdc\xdf\xd8\xdd\xde\xd6\ \xdb\xde\xd7\xdb\xde\xd7\xdb\xdd\xd5\xdc\xde\xd6\xdd\xde\xd7\xdf\ \xde\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd7\xe2\xdc\xd6\xe1\xdc\ \xd6\xe2\xdb\xd6\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe3\xdc\xd8\ \xe3\xdb\xd8\xe3\xdb\xd9\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\ \xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xda\xe4\xdb\xda\xe4\xdc\ \xdb\xe5\xdd\xdb\xe5\xde\xdb\xe6\xde\xda\xe5\xde\xda\xe5\xde\xda\ \xe6\xe0\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xdf\xda\xe3\ \xdb\xd6\xdf\xd6\xd1\xdb\xcc\xc9\xd4\xc3\xbf\xcb\xbb\xb7\xc5\xb7\ \xb2\xc1\xb3\xac\xbc\xb3\xab\xba\xb9\xb1\xbe\xc3\xbc\xc8\xcd\xc8\ \xd2\xd7\xd2\xdb\xdd\xd8\xe1\xe1\xdc\xe5\xe2\xde\xe7\xe2\xde\xe7\ \xe3\xdf\xe8\xe3\xdf\xe8\xe3\xdf\xe8\xe3\xdf\xe8\xe4\xdf\xe8\xe3\ \xde\xe7\xe4\xdf\xe8\xe3\xde\xe7\xe4\xdf\xe8\xe5\xe0\xe9\xe5\xe0\ \xe9\xe6\xe1\xea\xe5\xe1\xe9\xe6\xe1\xe9\xe5\xe0\xe9\xe6\xe0\xe7\ \xe6\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe4\ \xdd\xe4\xe4\xde\xe4\xe3\xde\xe4\xe3\xdd\xe5\xe3\xdc\xe4\xe1\xdc\ \xe5\xe1\xdc\xe5\xe1\xdb\xe4\xe1\xda\xe3\xe1\xd9\xe2\xe0\xd9\xe1\ \xdf\xd8\xe1\xde\xd7\xe1\xdb\xd6\xdf\xd8\xd2\xdd\xd3\xcd\xd8\xcc\ \xc6\xd2\xc1\xbc\xcb\xb7\xb1\xc3\xaa\xa3\xb9\x9b\x94\xaf\x92\x8b\ \xa8\x92\x8b\xa5\x94\x8e\xa6\x96\x90\xa6\x98\x92\xa7\x98\x92\xa6\ \x97\x92\xa6\x97\x92\xa7\x9a\x95\xa9\x9c\x97\xaa\x9d\x98\xab\x9b\ \x96\xaa\x98\x91\xa6\x92\x8b\xa2\x88\x82\x9e\x7e\x79\x98\x74\x6e\ \x92\x6c\x67\x8d\x66\x61\x89\x64\x5f\x88\x68\x66\x8b\x71\x6f\x92\ \x79\x78\x97\x7f\x7d\x9a\x83\x81\x9b\x82\x81\x9b\x81\x7f\x99\x7b\ \x7a\x96\x76\x76\x93\x77\x77\x93\x78\x79\x96\x7c\x7c\x98\x80\x80\ \x99\x84\x83\x9b\x8b\x88\x9f\x8e\x8c\xa1\x90\x8e\xa2\x94\x90\xa4\ \x97\x94\xa5\x9a\x96\xa7\x9e\x98\xa8\x9e\x99\xa9\x9f\x99\xa9\x9f\ \x99\xaa\x9e\x99\xaa\x9d\x9a\xab\x9d\x99\xad\x9d\x9a\xad\x9e\x9b\ \xad\xa0\x9d\xad\xa1\x9e\xae\xa2\x9e\xae\xa4\x9f\xae\xa8\xa1\xb0\ \xae\xa5\xb3\xb4\xaa\xb7\xb9\xaf\xbb\xbf\xb5\xbf\xc4\xbb\xc5\xc8\ \xbf\xc9\x00\x00\x00\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd7\ \xde\xdf\xd7\xde\xe0\xd8\xde\xdf\xd8\xdc\xde\xd7\xdc\xdd\xd6\xdc\ \xde\xd6\xdc\xdd\xd5\xdc\xdd\xd6\xdc\xdd\xd6\xde\xdd\xd7\xe0\xdc\ \xd7\xe0\xdc\xd6\xe0\xdc\xd6\xe1\xdb\xd6\xe1\xda\xd6\xe1\xda\xd6\ \xe1\xda\xd6\xe1\xdb\xd7\xe2\xdb\xd7\xe2\xdc\xd8\xe3\xda\xd9\xe3\ \xdb\xda\xe4\xdb\xda\xe4\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\xe4\xdb\ \xda\xe4\xdb\xda\xe4\xda\xd9\xe3\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xdb\ \xe5\xdf\xdb\xe6\xdd\xda\xe5\xdd\xd9\xe4\xde\xda\xe5\xde\xda\xe5\ \xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xdf\xda\xe3\xdf\xda\xe3\xdb\ \xd6\xdf\xd6\xd0\xdb\xce\xca\xd5\xc6\xc2\xce\xbd\xb8\xc6\xb7\xb2\ \xc1\xb1\xac\xbb\xaf\xa9\xb8\xb6\xb0\xbd\xc2\xbc\xc7\xce\xc8\xd2\ \xd5\xd1\xdb\xdc\xd8\xe1\xe0\xdd\xe6\xe1\xde\xe7\xe1\xde\xe6\xe1\ \xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xde\xe7\xe4\xdf\xe8\xe3\xde\ \xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\ \xe6\xe1\xea\xe5\xe1\xe8\xe5\xe0\xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe6\ \xde\xe6\xe6\xdf\xe6\xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\xe4\xde\ \xe5\xe4\xdf\xe4\xe4\xde\xe5\xe4\xdd\xe4\xe4\xdc\xe5\xe2\xdc\xe5\ \xe3\xdb\xe4\xe1\xda\xe3\xe0\xd9\xe1\xdf\xd7\xe0\xdf\xd7\xe1\xdd\ \xd7\xe0\xdb\xd6\xdf\xd8\xd2\xdd\xd3\xcd\xd8\xcd\xc6\xd3\xc3\xbb\ \xcb\xb5\xae\xc2\xa8\xa0\xb7\x98\x8f\xac\x8d\x84\xa2\x8d\x86\xa2\ \x90\x8a\xa3\x96\x90\xa5\x97\x92\xa6\x96\x91\xa5\x96\x91\xa6\x95\ \x90\xa5\x96\x91\xa6\x97\x92\xa6\x97\x92\xa6\x96\x91\xa6\x94\x8e\ \xa3\x8f\x88\xa1\x89\x83\x9d\x80\x7b\x99\x78\x73\x93\x6f\x6a\x8e\ \x68\x64\x8a\x64\x61\x88\x65\x65\x89\x6b\x6b\x8d\x71\x72\x90\x75\ \x77\x94\x78\x7a\x95\x7b\x7b\x96\x79\x79\x94\x75\x75\x91\x73\x74\ \x90\x74\x75\x90\x76\x78\x94\x79\x79\x95\x7c\x7d\x97\x81\x82\x9a\ \x87\x86\x9d\x8b\x8a\x9f\x8f\x8d\xa1\x92\x8f\xa3\x97\x93\xa5\x9b\ \x95\xa6\x9d\x97\xa8\x9e\x98\xa9\x9f\x99\xa9\x9e\x98\xa9\x9e\x99\ \xaa\x9d\x9a\xab\x9d\x9a\xac\x9d\x9a\xac\x9f\x9c\xad\xa0\x9d\xad\ \xa2\x9f\xae\xa4\x9f\xae\xa7\xa1\xb0\xab\xa2\xb1\xae\xa5\xb3\xb1\ \xa8\xb5\xb4\xaa\xb7\xb6\xac\xb9\xba\xb1\xbd\xbf\xb5\xc2\x00\x00\ \x00\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xe0\xd8\xdf\xe0\xd8\xdf\ \xdf\xd7\xde\xde\xd8\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdd\xdd\ \xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdd\xdb\xd4\xde\xda\xd4\xdf\xda\xd4\ \xdf\xda\xd4\xdf\xd8\xd4\xdf\xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd5\xe0\ \xd9\xd5\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\xd9\ \xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xda\xd9\xe3\xd9\xd8\ \xe2\xda\xd9\xe3\xda\xd9\xe3\xdb\xd9\xe3\xdb\xd9\xe3\xdd\xd9\xe4\ \xdd\xd9\xe4\xdd\xd9\xe4\xdc\xd8\xe3\xdc\xd8\xe3\xde\xd9\xe3\xdf\ \xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdb\xd6\ \xe0\xd7\xd3\xdd\xd0\xcc\xd7\xc7\xc3\xd0\xbd\xba\xc7\xb5\xb2\xc0\ \xae\xaa\xba\xae\xa9\xb8\xb7\xb1\xbf\xc2\xbd\xc9\xcc\xc9\xd4\xd5\ \xd1\xdc\xdb\xd7\xe2\xdf\xdb\xe6\xe1\xdd\xe8\xe1\xdd\xe7\xe2\xde\ \xe8\xe1\xdf\xe8\xe2\xdf\xe8\xe3\xdf\xe8\xe3\xde\xe7\xe3\xde\xe7\ \xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe1\xe6\xe6\ \xe1\xe7\xe7\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe5\xe5\xde\ \xe5\xe4\xdd\xe4\xe5\xde\xe5\xe4\xdd\xe4\xe5\xde\xe5\xe5\xde\xe5\ \xe4\xdd\xe4\xe5\xde\xe5\xe3\xdc\xe4\xe3\xdb\xe5\xe0\xdb\xe4\xe0\ \xda\xe3\xe0\xd8\xe2\xe0\xd8\xe2\xde\xd6\xe0\xdd\xd6\xe0\xda\xd5\ \xde\xd8\xd2\xdd\xd2\xcc\xd8\xcc\xc5\xd3\xc3\xbb\xcb\xb7\xad\xc2\ \xa8\x9e\xb7\x99\x8f\xad\x8f\x86\xa4\x8f\x88\xa2\x93\x8c\xa2\x96\ \x90\xa5\x97\x91\xa5\x95\x90\xa5\x93\x8e\xa3\x93\x8f\xa3\x94\x8f\ \xa4\x94\x90\xa4\x94\x90\xa4\x94\x90\xa3\x92\x8d\xa2\x8e\x89\x9f\ \x87\x83\x9d\x81\x7c\x98\x79\x74\x94\x72\x6e\x8f\x6b\x68\x8a\x64\ \x64\x88\x64\x65\x86\x67\x68\x89\x6b\x6e\x8d\x6f\x72\x90\x70\x74\ \x91\x71\x74\x90\x70\x74\x8f\x6e\x72\x8d\x6d\x71\x8d\x71\x73\x8f\ \x73\x76\x91\x75\x78\x93\x7a\x7c\x96\x7e\x80\x99\x84\x84\x9b\x89\ \x88\x9e\x8d\x8b\x9f\x92\x8f\xa3\x97\x93\xa5\x9b\x95\xa6\x9d\x97\ \xa8\x9e\x98\xa8\x9e\x98\xa9\x9e\x99\xa9\x9d\x99\xaa\x9d\x9a\xaa\ \x9e\x9b\xab\x9c\x9b\xac\x9f\x9d\xad\xa0\x9e\xae\xa3\x9f\xaf\xa6\ \xa1\xb0\xaa\xa3\xb1\xad\xa4\xb1\xaf\xa6\xb3\xb0\xa7\xb4\xae\xa5\ \xb2\xaf\xa6\xb3\xb4\xab\xb8\xba\xb0\xbd\x00\x00\x00\xde\xd7\xde\ \xe0\xd9\xe0\xe0\xd9\xe0\xdf\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xdf\xdf\ \xd8\xde\xdf\xd7\xde\xde\xd7\xdd\xde\xd6\xdd\xdc\xd4\xdb\xdc\xd5\ \xdc\xdb\xd4\xde\xd9\xd3\xdc\xd8\xd3\xde\xd8\xd3\xde\xd7\xd3\xde\ \xd7\xd3\xde\xd8\xd4\xdf\xd8\xd4\xdf\xd8\xd4\xdf\xd7\xd5\xdf\xd6\ \xd5\xdf\xd7\xd5\xe0\xd6\xd5\xdf\xd8\xd6\xe1\xd8\xd7\xe1\xd8\xd7\ \xe1\xd9\xd8\xe2\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe2\xd9\xd7\xe2\ \xd9\xd8\xe2\xda\xd9\xe3\xdb\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe3\xdb\ \xd7\xe2\xda\xd6\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdd\xd8\xe3\xde\xda\ \xe3\xdd\xd9\xe2\xde\xd9\xe2\xde\xda\xe3\xdf\xd9\xe2\xdc\xd8\xe1\ \xd7\xd3\xde\xd0\xcc\xd8\xc7\xc3\xcf\xbb\xb9\xc7\xb2\xaf\xbf\xae\ \xab\xbb\xb0\xac\xbc\xb8\xb3\xc1\xc2\xbe\xca\xcd\xc8\xd4\xd3\xd1\ \xdc\xda\xd8\xe2\xdf\xdc\xe6\xe1\xde\xe8\xe1\xdd\xe7\xe2\xdf\xe8\ \xe1\xdf\xe8\xe4\xdf\xe8\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe2\ \xdd\xe6\xe2\xde\xe6\xe3\xdf\xe5\xe4\xdf\xe6\xe6\xdf\xe6\xe5\xdf\ \xe6\xe5\xde\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\ \xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\xe5\xde\xe5\xe4\xdd\xe4\xe4\ \xdd\xe4\xe3\xdb\xe4\xe1\xdb\xe5\xdf\xdb\xe4\xe0\xd8\xe2\xdf\xd8\ \xe2\xdf\xd7\xe1\xde\xd6\xe0\xdc\xd5\xdf\xda\xd5\xde\xd7\xd1\xdc\ \xd3\xcd\xd9\xcd\xc6\xd3\xc3\xbc\xcb\xb8\xaf\xc2\xaa\xa0\xb7\x9a\ \x91\xad\x92\x88\xa6\x92\x88\xa3\x93\x8b\xa3\x96\x8f\xa4\x96\x90\ \xa4\x94\x8f\xa4\x93\x8e\xa3\x92\x8e\xa2\x92\x8e\xa3\x94\x8f\xa4\ \x93\x8e\xa3\x93\x8e\xa2\x91\x8c\xa1\x8d\x88\x9f\x88\x84\x9d\x82\ \x7e\x99\x7b\x76\x94\x73\x70\x8f\x6c\x6b\x8b\x66\x68\x88\x64\x66\ \x87\x64\x68\x87\x66\x6b\x89\x68\x6e\x8b\x6a\x6f\x8c\x6c\x71\x8c\ \x6d\x71\x8d\x6b\x70\x8a\x6d\x71\x8c\x70\x74\x8f\x73\x77\x91\x75\ \x78\x93\x78\x7c\x95\x7d\x7e\x99\x83\x84\x9b\x88\x87\x9d\x8c\x8b\ \x9f\x93\x8f\xa3\x97\x93\xa5\x9b\x95\xa6\x9d\x97\xa8\x9d\x97\xa8\ \x9e\x97\xa8\x9d\x99\xaa\x9d\x99\xaa\x9e\x9a\xaa\x9d\x9a\xab\x9e\ \x9c\xac\xa0\x9d\xad\xa2\x9f\xae\xa5\xa0\xaf\xa8\xa2\xb1\xac\xa4\ \xb2\xaf\xa5\xb3\xaf\xa5\xb3\xaf\xa6\xb3\xaf\xa5\xb3\xaf\xa6\xb3\ \xb1\xa8\xb5\xb6\xad\xba\x00\x00\x00\xdd\xd6\xdd\xdf\xd8\xdf\xe0\ \xd9\xe0\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd9\xe0\xdf\xd8\xdf\xdf\xd7\ \xde\xde\xd6\xdd\xde\xd6\xdd\xdc\xd4\xdc\xdc\xd4\xde\xda\xd4\xdd\ \xd8\xd3\xdd\xd8\xd2\xdd\xd6\xd2\xdd\xd6\xd2\xdd\xd7\xd3\xde\xd7\ \xd3\xde\xd7\xd3\xde\xd7\xd4\xde\xd6\xd4\xde\xd5\xd3\xdf\xd4\xd3\ \xde\xd5\xd3\xdf\xd7\xd5\xe0\xd7\xd6\xe0\xd8\xd7\xe1\xd8\xd7\xe1\ \xd8\xd6\xe2\xd8\xd6\xe1\xd8\xd6\xe1\xd8\xd6\xe2\xd8\xd6\xe2\xd8\ \xd8\xe1\xda\xd9\xe3\xda\xd9\xe3\xd9\xd7\xe2\xda\xd6\xe1\xda\xd6\ \xe1\xda\xd6\xe1\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd8\xe2\ \xdc\xd8\xe1\xde\xda\xe3\xde\xda\xe3\xdf\xda\xe3\xdc\xd9\xe2\xd7\ \xd4\xde\xd0\xcc\xd7\xc5\xc2\xcf\xb9\xb6\xc6\xb1\xae\xbe\xae\xab\ \xbb\xb2\xaf\xbe\xb8\xb3\xc2\xc2\xbe\xca\xca\xc8\xd4\xd3\xd2\xdc\ \xd9\xd8\xe2\xde\xdc\xe6\xe1\xdd\xe8\xe1\xde\xe7\xe1\xde\xe7\xe1\ \xde\xe7\xe2\xde\xe7\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe5\xe2\xdd\ \xe5\xe4\xde\xe5\xe4\xde\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\ \xe3\xdc\xe3\xe3\xdc\xe3\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe4\ \xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdb\xe4\xe1\xda\ \xe4\xdf\xda\xe3\xdf\xda\xe3\xde\xd8\xe1\xde\xd7\xe1\xdf\xd7\xe0\ \xdd\xd7\xe0\xdb\xd5\xde\xda\xd5\xde\xd7\xd2\xdc\xd4\xce\xd9\xce\ \xc7\xd3\xc4\xbd\xcc\xb9\xb1\xc4\xab\xa1\xb8\x9c\x92\xae\x92\x88\ \xa6\x92\x89\xa4\x94\x8c\xa4\x96\x8f\xa4\x96\x90\xa4\x94\x8f\xa4\ \x92\x8d\xa2\x91\x8d\xa2\x91\x8c\xa1\x92\x8d\xa2\x91\x8e\xa2\x91\ \x8d\xa2\x8f\x8c\xa0\x8d\x88\x9e\x88\x85\x9c\x82\x7f\x99\x7c\x78\ \x95\x75\x73\x91\x6e\x6f\x8d\x6a\x6c\x8a\x67\x6b\x89\x65\x6a\x89\ \x65\x6c\x89\x63\x6c\x89\x65\x6d\x8a\x68\x70\x8c\x6a\x71\x8b\x6a\ \x70\x8b\x6d\x73\x8d\x71\x76\x90\x73\x77\x92\x74\x78\x93\x77\x7b\ \x94\x7c\x7f\x98\x82\x83\x9a\x88\x87\x9c\x8c\x8a\x9e\x92\x8f\xa2\ \x96\x92\xa4\x99\x94\xa5\x9c\x96\xa7\x9c\x96\xa7\x9d\x97\xa8\x9d\ \x99\xaa\x9d\x99\xab\x9e\x9b\xab\x9e\x9a\xab\x9e\x9c\xac\xa0\x9d\ \xae\xa3\x9f\xae\xa6\xa1\xb1\xa9\xa2\xb1\xac\xa4\xb1\xae\xa4\xb2\ \xb0\xa6\xb4\xb0\xa6\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa8\xb4\xb3\ \xa9\xb7\x00\x00\x00\xdc\xd5\xdc\xde\xd7\xde\xde\xd7\xde\xe0\xd9\ \xe0\xdf\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\xd6\xdd\ \xdd\xd5\xdc\xdb\xd3\xdd\xdb\xd4\xdd\xd8\xd3\xdc\xd6\xd0\xdb\xd5\ \xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd5\xd1\xdc\xd6\xd2\ \xdd\xd6\xd2\xde\xd4\xd2\xde\xd3\xd1\xdd\xd3\xd1\xdd\xd3\xd1\xdd\ \xd4\xd3\xdd\xd5\xd4\xde\xd5\xd4\xdf\xd5\xd4\xe0\xd5\xd3\xde\xd6\ \xd4\xe0\xd6\xd4\xe0\xd6\xd4\xe0\xd6\xd4\xdf\xd7\xd6\xe1\xd7\xd6\ \xe0\xd8\xd6\xe1\xd7\xd6\xe0\xd6\xd5\xe0\xd7\xd4\xdf\xd9\xd5\xe0\ \xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd5\xe0\xda\xd6\xe1\xdb\xd7\xe2\xdb\ \xd8\xe2\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdc\xd9\xe2\xd7\xd3\ \xde\xce\xcb\xd6\xc3\xc1\xce\xb9\xb6\xc5\xb2\xaf\xbf\xb1\xae\xbe\ \xb2\xaf\xbf\xb8\xb3\xc2\xc0\xbd\xca\xca\xc8\xd4\xd2\xd1\xdb\xd7\ \xd6\xe0\xdd\xdb\xe6\xe1\xdd\xe7\xe1\xde\xe7\xe0\xde\xe7\xe2\xdd\ \xe6\xe2\xdd\xe6\xe1\xdc\xe5\xe0\xdc\xe4\xe0\xdd\xe5\xe2\xdc\xe4\ \xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe2\xe1\xda\xe1\xe2\ \xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\ \xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xd9\xe3\xdf\xd8\xe2\xdd\xd8\xe1\ \xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xdf\xdd\xd6\xe0\xdc\xd5\xde\xda\ \xd5\xde\xda\xd5\xde\xd9\xd4\xdc\xd4\xce\xd9\xcf\xc8\xd4\xc6\xbf\ \xcd\xbc\xb3\xc5\xad\xa4\xba\x9d\x93\xae\x93\x89\xa7\x92\x89\xa4\ \x94\x8b\xa4\x96\x8e\xa5\x97\x90\xa5\x95\x90\xa5\x94\x8f\xa4\x92\ \x8d\xa2\x91\x8c\xa1\x91\x8c\xa1\x91\x8c\xa2\x91\x8d\xa1\x8e\x8c\ \xa0\x8c\x8a\x9e\x89\x86\x9c\x84\x81\x99\x7e\x7b\x96\x78\x77\x93\ \x72\x73\x90\x6d\x6f\x8d\x6a\x6e\x8b\x68\x6e\x8b\x65\x6e\x8a\x64\ \x6e\x8a\x65\x6f\x8b\x68\x71\x8c\x6a\x73\x8d\x6c\x74\x8d\x6e\x76\ \x8f\x70\x76\x90\x72\x78\x91\x73\x79\x93\x77\x7d\x95\x7c\x80\x98\ \x82\x84\x9a\x88\x87\x9c\x8c\x8b\x9f\x92\x8f\xa2\x96\x92\xa5\x98\ \x94\xa5\x9b\x97\xa7\x9c\x97\xa8\x9b\x98\xa9\x9c\x99\xa9\x9d\x9a\ \xaa\x9e\x9a\xaa\x9d\x9b\xab\x9f\x9d\xad\xa2\x9f\xae\xa5\xa0\xaf\ \xa8\xa2\xb1\xab\xa4\xb3\xad\xa4\xb2\xaf\xa6\xb3\xb0\xa7\xb4\xb1\ \xa8\xb5\xb1\xa7\xb4\xb0\xa7\xb4\xaf\xa6\xb3\xb1\xa7\xb6\x00\x00\ \x00\xda\xd2\xdb\xdd\xd6\xdc\xde\xd7\xde\xdf\xd8\xdf\xdf\xd8\xdf\ \xde\xd7\xde\xde\xd7\xdd\xdc\xd5\xdc\xdc\xd4\xdc\xda\xd2\xdc\xd9\ \xd2\xdc\xd8\xd2\xdb\xd6\xd1\xdb\xd4\xcf\xda\xd4\xd0\xdb\xd4\xd0\ \xdb\xd3\xcf\xdb\xd3\xcf\xdc\xd3\xcf\xdb\xd4\xd1\xdc\xd3\xd1\xdd\ \xd3\xd1\xdd\xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd3\xd1\xdd\xd3\ \xd1\xdc\xd2\xd1\xdd\xd3\xd1\xdd\xd3\xd1\xdd\xd4\xd2\xde\xd4\xd2\ \xde\xd4\xd2\xde\xd4\xd2\xde\xd5\xd3\xdf\xd5\xd4\xde\xd5\xd4\xdf\ \xd5\xd3\xde\xd4\xd2\xde\xd5\xd3\xde\xd6\xd4\xde\xd5\xd3\xde\xd4\ \xd3\xdd\xd6\xd3\xde\xd7\xd5\xdf\xda\xd6\xe1\xda\xd7\xe1\xdc\xd8\ \xe3\xdd\xd9\xe4\xdd\xda\xe4\xdf\xda\xe5\xdb\xd7\xe2\xd4\xd3\xdd\ \xcd\xcb\xd7\xc3\xc1\xcd\xba\xb7\xc5\xb4\xb1\xc1\xb2\xaf\xbe\xb1\ \xae\xbe\xb6\xb3\xc1\xbd\xba\xc9\xc8\xc6\xd2\xd0\xce\xd9\xd7\xd6\ \xe0\xde\xdc\xe5\xe0\xdd\xe6\xe1\xdd\xe6\xe1\xdd\xe6\xe2\xdd\xe6\ \xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xda\xe3\xe1\xda\xe2\xe1\ \xda\xe1\xe1\xda\xe1\xe0\xd9\xe1\xe0\xd8\xe0\xe0\xd9\xe0\xe1\xda\ \xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\ \xdf\xd8\xe1\xde\xd7\xe1\xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xe0\xdb\ \xd6\xdf\xdb\xd6\xdf\xda\xd6\xdf\xda\xd5\xde\xda\xd4\xde\xda\xd5\ \xde\xd9\xd4\xdd\xd5\xcf\xda\xd0\xc9\xd5\xc8\xc1\xce\xbe\xb6\xc6\ \xaf\xa6\xbc\xa1\x94\xb0\x93\x89\xa7\x91\x88\xa4\x94\x8b\xa4\x96\ \x8e\xa5\x97\x90\xa5\x98\x91\xa5\x96\x90\xa5\x95\x8f\xa4\x94\x8e\ \xa3\x92\x8d\xa2\x92\x8d\xa2\x91\x8d\xa1\x90\x8b\xa0\x8d\x8a\x9e\ \x8a\x88\x9c\x87\x84\x99\x82\x7f\x97\x7c\x7a\x95\x77\x77\x92\x72\ \x74\x8f\x6f\x72\x8e\x6c\x73\x8e\x69\x72\x8c\x68\x72\x8c\x69\x72\ \x8c\x6b\x74\x8e\x6c\x75\x8e\x6c\x76\x8f\x6b\x76\x8e\x6d\x77\x90\ \x70\x79\x92\x74\x7b\x95\x78\x7e\x96\x7d\x81\x99\x83\x85\x9b\x89\ \x88\x9d\x8e\x8c\x9f\x92\x8f\xa2\x96\x91\xa5\x98\x94\xa6\x9a\x97\ \xa7\x9b\x98\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9b\xab\x9e\x9c\xac\ \x9f\x9c\xac\xa0\x9e\xae\xa3\x9f\xaf\xa7\xa2\xb1\xaa\xa3\xb2\xac\ \xa4\xb3\xaf\xa6\xb3\xaf\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa8\ \xb5\xb1\xa8\xb5\xb1\xa7\xb4\xb0\xa7\xb4\x00\x00\x00\xd8\xd1\xdb\ \xda\xd4\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xdd\xd6\xde\xdd\xd5\xde\xdc\ \xd5\xdd\xdb\xd3\xdc\xda\xd2\xdb\xd8\xd1\xdb\xd6\xd1\xdb\xd5\xd0\ \xdb\xd3\xcf\xda\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\xd3\xcf\xdb\ \xd2\xcf\xdb\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\ \xce\xda\xcf\xcd\xd9\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\xce\ \xda\xd0\xce\xda\xd1\xcf\xdb\xd2\xd0\xdc\xd2\xd0\xdc\xd1\xcf\xdb\ \xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd3\xd1\xdd\xd3\ \xd1\xdd\xd3\xd2\xdd\xd3\xd1\xdd\xd2\xd1\xdc\xd3\xd1\xdd\xd4\xd2\ \xde\xd5\xd3\xdf\xd7\xd5\xe0\xda\xd8\xe2\xda\xd8\xe2\xdc\xd9\xe4\ \xdd\xda\xe4\xdf\xdb\xe6\xde\xda\xe5\xda\xd8\xe2\xd4\xd2\xdd\xcd\ \xcb\xd7\xc3\xc0\xce\xba\xb8\xc7\xb5\xb2\xc1\xb1\xae\xbd\xb1\xae\ \xbd\xb3\xaf\xbe\xbc\xb9\xc7\xc7\xc4\xd1\xcf\xce\xd9\xd7\xd5\xdf\ \xdc\xd9\xe3\xde\xda\xe4\xde\xdb\xe4\xe0\xda\xe3\xdf\xda\xe3\xdf\ \xda\xe3\xde\xd9\xe2\xe0\xd8\xe1\xe0\xd9\xe3\xe0\xd9\xe1\xe1\xd9\ \xe2\xdf\xd7\xe1\xe0\xd8\xe1\xdf\xd8\xe1\xe0\xd8\xe1\xe0\xd9\xe0\ \xe0\xd9\xe0\xe0\xd8\xe0\xdf\xd8\xe0\xde\xd7\xe0\xdd\xd7\xe0\xdc\ \xd7\xe0\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\xd4\xdf\xda\xd5\ \xde\xda\xd5\xde\xd9\xd5\xdd\xda\xd5\xdd\xd9\xd5\xdd\xd9\xd4\xde\ \xd7\xd1\xdb\xd1\xca\xd5\xc9\xc2\xd0\xbe\xb7\xc7\xb1\xa8\xbd\xa2\ \x98\xb2\x93\x89\xa8\x91\x88\xa4\x93\x8a\xa4\x96\x8e\xa5\x98\x91\ \xa6\x99\x93\xa7\x99\x93\xa6\x98\x91\xa5\x96\x91\xa4\x95\x90\xa4\ \x94\x8f\xa4\x94\x8f\xa2\x91\x8e\xa1\x91\x8c\xa1\x8e\x8a\x9e\x89\ \x87\x9c\x86\x83\x99\x82\x80\x98\x7d\x7c\x96\x79\x7a\x93\x74\x78\ \x91\x71\x77\x90\x6e\x76\x8f\x6c\x76\x8f\x6a\x76\x8e\x6b\x76\x90\ \x6d\x78\x91\x6c\x77\x91\x6c\x77\x91\x6e\x7a\x93\x72\x7c\x94\x77\ \x7e\x97\x7a\x7f\x98\x7f\x82\x9b\x85\x87\x9c\x8a\x89\x9d\x8e\x8c\ \xa0\x91\x8f\xa2\x95\x92\xa5\x98\x95\xa7\x99\x97\xa7\x9a\x98\xa8\ \x9c\x99\xa9\x9c\x9a\xaa\x9d\x9c\xac\x9d\x9c\xac\x9f\x9d\xad\xa2\ \x9e\xae\xa5\xa1\xb0\xa9\xa3\xb1\xab\xa4\xb3\xae\xa5\xb3\xb0\xa7\ \xb4\xb2\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb1\xa8\xb5\xb2\xa9\xb6\ \xb2\xa8\xb5\xb1\xa8\xb4\x00\x00\x00\xd7\xcf\xd9\xd9\xd1\xdb\xda\ \xd2\xdc\xdb\xd4\xde\xdb\xd3\xdc\xdb\xd3\xdd\xd9\xd2\xdc\xd8\xd0\ \xda\xd5\xcf\xd9\xd5\xcf\xd9\xd2\xcd\xd8\xd1\xce\xd9\xd1\xcd\xd8\ \xd3\xcf\xda\xd2\xcf\xda\xd1\xce\xda\xd0\xce\xda\xd0\xce\xda\xcf\ \xcd\xd9\xce\xcc\xd8\xce\xcc\xd8\xcd\xcb\xd7\xce\xcc\xd8\xce\xcc\ \xd8\xce\xcc\xd8\xce\xcc\xd8\xcd\xcb\xd7\xcd\xcb\xd7\xcd\xcb\xd7\ \xce\xcc\xd8\xcf\xcd\xd9\xcf\xcd\xd9\xcf\xcd\xd9\xcf\xcd\xd9\xd0\ \xce\xda\xd0\xce\xda\xd0\xce\xda\xd1\xcf\xdb\xd2\xd0\xdc\xd2\xd0\ \xdc\xd0\xce\xda\xd0\xce\xda\xd1\xcf\xdb\xd3\xd1\xdd\xd4\xd2\xde\ \xd6\xd5\xdf\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\xda\xd9\xe3\xdd\ \xd9\xe4\xdb\xdb\xe5\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\ \xd6\xc1\xc1\xcd\xba\xb7\xc6\xb3\xb0\xbf\xaf\xac\xbc\xad\xaa\xb9\ \xb0\xad\xbc\xba\xb7\xc6\xc4\xc2\xce\xcb\xc9\xd5\xd0\xcd\xd8\xd5\ \xd1\xdc\xd9\xd4\xde\xdb\xd6\xdf\xdc\xd7\xe0\xde\xd9\xe2\xdd\xd8\ \xe1\xdd\xd7\xe1\xdd\xd8\xe1\xdd\xd7\xe1\xde\xd8\xe2\xde\xd8\xe1\ \xdf\xd7\xe1\xdf\xd7\xe0\xe0\xd8\xe1\xde\xd6\xe0\xde\xd7\xdf\xde\ \xd7\xdf\xdd\xd5\xe0\xdc\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd3\ \xde\xd9\xd4\xdd\xd8\xd4\xdd\xda\xd4\xdf\xda\xd4\xdf\xd9\xd4\xde\ \xda\xd4\xde\xda\xd4\xde\xd9\xd4\xde\xda\xd6\xdf\xd7\xd1\xdc\xd1\ \xcc\xd7\xc9\xc3\xd1\xbe\xb8\xc8\xb1\xab\xbe\xa5\x9b\xb4\x96\x8c\ \xa9\x90\x86\xa4\x92\x8a\xa4\x95\x8e\xa4\x98\x90\xa6\x9a\x93\xa8\ \x9b\x95\xa9\x9a\x94\xa7\x9a\x92\xa6\x97\x92\xa7\x96\x90\xa5\x95\ \x91\xa5\x95\x90\xa4\x92\x8e\xa2\x91\x8c\xa0\x8d\x8a\x9e\x8a\x88\ \x9c\x87\x85\x9a\x84\x83\x99\x80\x81\x97\x7b\x7d\x95\x77\x7b\x93\ \x74\x7a\x92\x6f\x79\x91\x6d\x79\x90\x6c\x77\x91\x6d\x79\x92\x6c\ \x79\x94\x6d\x79\x93\x71\x7b\x96\x75\x7f\x96\x78\x7e\x98\x7c\x82\ \x9a\x81\x85\x9b\x85\x87\x9c\x8a\x8a\x9e\x8e\x8c\xa0\x92\x90\xa3\ \x94\x92\xa5\x96\x94\xa7\x99\x97\xa7\x99\x98\xa8\x9a\x99\xa9\x9d\ \x9c\xac\x9d\x9c\xac\x9f\x9d\xad\xa1\x9e\xae\xa4\xa1\xb0\xa8\xa2\ \xb1\xab\xa4\xb2\xad\xa6\xb3\xb0\xa6\xb3\xb1\xa8\xb5\xb3\xa9\xb6\ \xb3\xa9\xb6\xb3\xa8\xb5\xb2\xa9\xb6\xb3\xa9\xb6\xb2\xa8\xb5\xb1\ \xa8\xb5\x00\x00\x00\xd2\xcd\xd6\xd4\xce\xd8\xd6\xd1\xda\xd8\xd0\ \xda\xd8\xd0\xda\xd7\xcf\xd9\xd6\xcf\xd8\xd4\xce\xd8\xd1\xcc\xd6\ \xcf\xcb\xd6\xcf\xcb\xd7\xd0\xcc\xd7\xd0\xcc\xd8\xd0\xcc\xd8\xd1\ \xcd\xd9\xd0\xce\xda\xd0\xce\xda\xcf\xcd\xd9\xce\xcc\xd8\xcd\xcb\ \xd8\xcc\xca\xd6\xcc\xca\xd7\xcc\xc9\xd7\xcb\xc9\xd5\xcc\xca\xd6\ \xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xca\xc8\xd4\xcc\xca\xd6\xcc\ \xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\ \xd7\xcd\xcb\xd7\xce\xcc\xd8\xd0\xce\xda\xd0\xce\xda\xcf\xcd\xd9\ \xcf\xcd\xd9\xcf\xcd\xd9\xd1\xcf\xdb\xd3\xd1\xdd\xd4\xd2\xdd\xd5\ \xd3\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xda\xd9\ \xe3\xdb\xda\xe4\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\ \xc3\xc1\xcf\xba\xb7\xc5\xb1\xae\xbe\xaa\xa7\xb7\xa8\xa5\xb5\xaa\ \xa7\xb7\xb2\xae\xbe\xba\xb7\xc5\xc0\xbd\xc9\xc7\xc3\xce\xcd\xc9\ \xd4\xd4\xcd\xd8\xd7\xd2\xdb\xd9\xd4\xdd\xdb\xd6\xdf\xdb\xd6\xdf\ \xdb\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd9\xe2\xdd\ \xd9\xe2\xdd\xd9\xe2\xdd\xd8\xe1\xdd\xd6\xe0\xdc\xd7\xe0\xdb\xd6\ \xdf\xda\xd5\xdf\xda\xd4\xdf\xd8\xd2\xdd\xd8\xd2\xdd\xd8\xd3\xdd\ \xd8\xd2\xdc\xd8\xd2\xdc\xd8\xd2\xdd\xd6\xd1\xdc\xd7\xd1\xdc\xd8\ \xd2\xdd\xd8\xd3\xdd\xd9\xd3\xdf\xd8\xd2\xdc\xd2\xcc\xd7\xca\xc3\ \xd1\xbf\xb9\xc9\xb1\xaa\xbe\xa3\x9a\xb3\x97\x8d\xa9\x8f\x86\xa3\ \x8f\x89\xa3\x95\x8d\xa6\x99\x92\xa7\x9c\x95\xa9\x9d\x97\xaa\x9c\ \x96\xa9\x9c\x96\xa8\x9b\x94\xa8\x99\x94\xa8\x98\x93\xa7\x96\x92\ \xa5\x95\x91\xa4\x94\x8f\xa3\x91\x8e\xa1\x8f\x8c\x9f\x8c\x8a\x9d\ \x8a\x89\x9d\x87\x87\x9b\x82\x83\x98\x7d\x80\x97\x7a\x80\x96\x76\ \x7e\x95\x72\x7d\x94\x6e\x7a\x93\x6e\x7b\x94\x70\x7a\x95\x72\x7e\ \x97\x75\x7f\x97\x79\x80\x9a\x7d\x83\x9c\x80\x84\x9c\x82\x85\x9d\ \x87\x89\x9d\x8b\x8b\x9f\x90\x8f\xa3\x92\x90\xa4\x95\x93\xa6\x96\ \x94\xa7\x98\x96\xa9\x9a\x98\xaa\x9b\x99\xab\x9d\x9c\xac\x9e\x9d\ \xad\xa2\x9f\xae\xa5\xa0\xb0\xa8\xa2\xb1\xab\xa4\xb3\xad\xa6\xb3\ \xaf\xa7\xb4\xb0\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb2\ \xa9\xb6\xb2\xaa\xb6\xb3\xaa\xb6\xb2\xa9\xb6\xb2\xa9\xb6\x00\x00\ \x00\xcf\xca\xd4\xd1\xcc\xd5\xd2\xcd\xd6\xd3\xcd\xd7\xd2\xcd\xd7\ \xd2\xcd\xd7\xd2\xcc\xd6\xd0\xcb\xd6\xce\xc9\xd4\xcc\xc9\xd5\xcc\ \xca\xd6\xcd\xca\xd6\xce\xcb\xd7\xcf\xcc\xd8\xce\xcc\xd8\xce\xcc\ \xd8\xcf\xcd\xd9\xcf\xcd\xd9\xcd\xcb\xd7\xcd\xcb\xd7\xcc\xc9\xd6\ \xcc\xc9\xd6\xcc\xc9\xd6\xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xc9\ \xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\ \xd4\xc9\xc6\xd4\xc9\xc6\xd4\xc9\xc6\xd5\xca\xc7\xd5\xcb\xc9\xd5\ \xcc\xca\xd6\xce\xcc\xd8\xce\xcc\xd8\xce\xcc\xd8\xce\xcc\xd8\xce\ \xcc\xd8\xcf\xcd\xd9\xd0\xce\xda\xd1\xd0\xdb\xd3\xd2\xdc\xd5\xd4\ \xde\xd6\xd5\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xda\xd9\xe3\ \xdb\xda\xe4\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\xc2\ \xc1\xce\xb9\xb7\xc5\xaf\xac\xbc\xa6\xa3\xb5\x9f\x9b\xad\x9d\x99\ \xab\xa4\x9f\xaf\xad\xa7\xb7\xb4\xaf\xbe\xbe\xb9\xc5\xc8\xc2\xcd\ \xcf\xc9\xd4\xd4\xcf\xd9\xd8\xd3\xdb\xda\xd5\xde\xdb\xd6\xdf\xdb\ \xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\ \xe1\xdd\xd7\xe1\xdb\xd6\xe0\xda\xd6\xdf\xdb\xd6\xe0\xda\xd4\xdf\ \xda\xd4\xdf\xd9\xd2\xdd\xd7\xd3\xde\xd7\xd2\xdd\xd6\xd1\xdc\xd5\ \xd1\xdc\xd5\xd1\xdc\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd1\xdc\xd7\xd2\ \xdd\xd8\xd3\xdd\xd7\xd1\xdc\xd3\xcc\xd7\xca\xc4\xd1\xbe\xb9\xc8\ \xb1\xaa\xbe\xa3\x9c\xb3\x96\x8e\xa9\x8c\x85\xa2\x8f\x88\xa3\x95\ \x8e\xa6\x99\x92\xa8\x9d\x97\xaa\x9f\x98\xab\x9f\x99\xac\x9f\x99\ \xab\x9e\x98\xaa\x9c\x96\xaa\x9a\x96\xa9\x98\x94\xa7\x98\x93\xa6\ \x96\x93\xa5\x95\x91\xa4\x94\x91\xa4\x91\x8e\xa1\x8f\x8e\xa1\x8c\ \x8b\x9f\x89\x89\x9d\x84\x86\x9b\x7f\x85\x99\x7b\x82\x98\x76\x7f\ \x97\x72\x7c\x95\x72\x7e\x96\x75\x7f\x98\x79\x82\x9a\x7c\x84\x9d\ \x7e\x84\x9d\x82\x86\x9e\x85\x88\xa0\x87\x8a\x9f\x8c\x8d\xa1\x8f\ \x8e\xa2\x91\x90\xa4\x94\x92\xa5\x95\x93\xa7\x96\x94\xa8\x99\x97\ \xaa\x9a\x98\xab\x9d\x9b\xac\xa1\x9e\xae\xa5\xa1\xb0\xa7\xa2\xb1\ \xa8\xa2\xb1\xab\xa4\xb3\xad\xa6\xb4\xaf\xa6\xb4\xb1\xa8\xb4\xb1\ \xa8\xb5\xb2\xa9\xb6\xb1\xa9\xb6\xb2\xa9\xb6\xb1\xa8\xb5\xb1\xa9\ \xb5\xb2\xa9\xb6\xb3\xaa\xb7\xb2\xa9\xb6\x00\x00\x00\xcb\xc7\xd2\ \xcd\xc8\xd3\xcd\xc8\xd3\xce\xc8\xd3\xce\xc8\xd3\xcd\xc8\xd3\xcc\ \xc8\xd3\xcc\xc8\xd3\xca\xc7\xd3\xca\xc7\xd3\xca\xc8\xd4\xcb\xc9\ \xd5\xcd\xcb\xd7\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\xd7\xce\xcc\xd8\ \xce\xcc\xd8\xcd\xcb\xd7\xcc\xca\xd6\xcb\xc9\xd5\xcb\xc9\xd5\xcb\ \xc8\xd5\xcb\xc9\xd5\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc8\xc6\ \xd2\xc8\xc6\xd2\xc8\xc6\xd2\xc7\xc5\xd1\xc7\xc4\xd1\xc6\xc3\xd2\ \xc6\xc4\xd2\xc7\xc4\xd2\xc8\xc6\xd3\xca\xc8\xd4\xcb\xc9\xd5\xcc\ \xca\xd6\xcd\xcb\xd7\xcc\xca\xd6\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\ \xd7\xce\xcc\xd8\xcf\xcd\xd9\xd2\xd0\xdb\xd3\xd2\xdc\xd4\xd3\xdd\ \xd5\xd4\xde\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xdb\xda\xe4\xdc\ \xdb\xe5\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\xc3\xc2\ \xce\xb9\xb6\xc5\xac\xa9\xb9\x9e\x9a\xac\x91\x8c\xa1\x8b\x86\x9b\ \x90\x8a\x9d\x9e\x98\xa9\xab\xa6\xb5\xb9\xb3\xc0\xc6\xbf\xca\xce\ \xc8\xd3\xd4\xcf\xd9\xd8\xd3\xdc\xda\xd5\xde\xdb\xd6\xdf\xdc\xd7\ \xe0\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe2\xdc\xd8\xe2\xdc\xd6\xe0\ \xda\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd8\xd4\xdf\xd8\xd3\xde\xd7\ \xd3\xde\xd6\xd2\xdd\xd5\xd1\xdc\xd5\xd1\xdc\xd4\xd0\xdb\xd4\xd0\ \xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd5\xd1\xdc\xd5\xd1\xdc\xd5\xd1\xdc\ \xd5\xd0\xdb\xd0\xcc\xd7\xc7\xc3\xcf\xbd\xb8\xc6\xb0\xab\xbe\xa4\ \x9d\xb3\x97\x8e\xa9\x8d\x86\xa2\x8e\x88\xa3\x95\x8e\xa6\x9a\x94\ \xa8\x9e\x98\xab\xa0\x9a\xab\xa1\x9b\xad\xa0\x9a\xac\xa0\x9a\xab\ \x9d\x97\xa9\x9d\x97\xa8\x9b\x96\xa9\x99\x94\xa7\x99\x94\xa7\x98\ \x94\xa6\x96\x92\xa5\x96\x92\xa4\x94\x90\xa3\x91\x8f\xa2\x8f\x8e\ \xa0\x88\x8b\x9e\x83\x88\x9c\x7f\x85\x99\x7b\x82\x9a\x79\x81\x99\ \x79\x81\x99\x7c\x84\x9c\x7f\x86\x9e\x82\x87\x9f\x83\x88\xa0\x87\ \x8b\xa2\x8b\x8d\xa2\x8f\x8f\xa3\x90\x90\xa4\x92\x91\xa5\x94\x92\ \xa6\x96\x94\xa8\x96\x94\xa8\x97\x95\xa9\x9a\x98\xab\x9c\x99\xac\ \xa2\x9d\xaf\xa7\xa2\xb1\xac\xa5\xb3\xad\xa6\xb4\xad\xa7\xb5\xaf\ \xa8\xb6\xb0\xa8\xb6\xb1\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\xb2\xa9\ \xb6\xb2\xa9\xb6\xb2\xa9\xb6\xb2\xa9\xb6\xb2\xa8\xb6\xb2\xa9\xb6\ \xb3\xaa\xb7\xb2\xa9\xb6\x00\x00\x00\xc9\xc5\xd0\xc9\xc5\xd0\xc8\ \xc4\xcf\xc8\xc3\xce\xc8\xc4\xcf\xc9\xc5\xd0\xc8\xc5\xd1\xc9\xc6\ \xd1\xc8\xc5\xd1\xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xca\xc8\xd4\ \xcb\xc9\xd5\xcb\xc9\xd5\xcc\xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcb\ \xc9\xd5\xca\xc8\xd4\xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xcb\xc9\ \xd5\xca\xc8\xd4\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\xd3\xc8\xc6\xd2\ \xc8\xc6\xd2\xc5\xc3\xcf\xc4\xc2\xd0\xc4\xc1\xd0\xc5\xc2\xd1\xc5\ \xc2\xd1\xc7\xc4\xd2\xc8\xc6\xd2\xc9\xc7\xd4\xcb\xc9\xd5\xca\xc8\ \xd4\xca\xc8\xd4\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcd\xcb\xd7\ \xce\xcc\xd8\xcf\xcd\xd9\xd2\xd0\xdb\xd3\xd2\xdc\xd4\xd3\xdd\xd6\ \xd5\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\ \xe3\xdc\xdb\xe5\xd8\xd7\xe1\xd3\xd1\xdd\xcc\xc9\xd6\xc5\xc2\xcf\ \xb8\xb5\xc4\xa6\xa3\xb5\x92\x8f\xa3\x80\x7b\x92\x73\x6e\x85\x7d\ \x79\x8f\x96\x90\xa4\xaa\xa5\xb5\xba\xb6\xc3\xc6\xc3\xce\xd0\xcc\ \xd7\xd6\xd2\xdc\xd9\xd4\xdf\xda\xd6\xdf\xdb\xd7\xe0\xdc\xd7\xe1\ \xdc\xd8\xe2\xdb\xd7\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd9\ \xd5\xe0\xd7\xd3\xde\xd7\xd3\xde\xd6\xd2\xdd\xd4\xd0\xdb\xd4\xd0\ \xdb\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\xd4\xd0\xdb\xd4\xd0\xdb\ \xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd3\xcf\xda\xd0\ \xcc\xd7\xc6\xc2\xce\xbc\xb7\xc5\xb0\xac\xbe\xa7\xa1\xb5\x9b\x94\ \xaa\x92\x8c\xa4\x90\x8a\xa3\x96\x8f\xa6\x9b\x94\xa9\x9f\x98\xab\ \xa2\x9b\xad\xa4\x9c\xad\xa3\x9b\xac\xa0\x9a\xab\x9f\x99\xaa\x9d\ \x97\xa8\x9c\x96\xa8\x9d\x96\xa7\x9b\x95\xa7\x9a\x95\xa6\x99\x95\ \xa5\x97\x94\xa5\x97\x93\xa5\x95\x93\xa3\x92\x91\xa3\x8d\x8e\xa0\ \x85\x8a\x9d\x82\x87\x9c\x7f\x86\x9c\x80\x86\x9d\x80\x86\x9d\x83\ \x89\x9f\x86\x8a\xa0\x88\x8c\xa3\x8c\x8f\xa4\x90\x90\xa4\x94\x93\ \xa7\x94\x93\xa7\x95\x93\xa7\x96\x94\xa8\x96\x94\xa8\x97\x95\xa9\ \x98\x96\xaa\x99\x97\xab\x9c\x99\xac\x9f\x9c\xae\xa5\xa0\xb1\xaa\ \xa4\xb3\xaf\xa8\xb6\xb1\xab\xb7\xb3\xac\xb9\xb4\xad\xba\xb5\xad\ \xba\xb3\xaa\xb7\xb2\xa8\xb5\xb2\xa9\xb6\xb1\xa8\xb5\xb0\xa7\xb4\ \xb0\xa7\xb4\xb0\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb2\ \xa9\xb6\x00\x00\x00\xc6\xc2\xcd\xc6\xc2\xcd\xc4\xc1\xcc\xc4\xc0\ \xcc\xc4\xc1\xcd\xc4\xc2\xce\xc4\xc2\xcf\xc6\xc4\xd0\xc6\xc4\xd0\ \xc7\xc5\xd1\xc8\xc6\xd3\xc9\xc7\xd3\xca\xc8\xd4\xcb\xca\xd6\xcc\ \xca\xd6\xcc\xca\xd6\xcc\xc9\xd6\xcc\xca\xd6\xcb\xc9\xd5\xcb\xc9\ \xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xca\xc8\xd4\ \xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xc8\xc6\xd2\xc5\ \xc3\xcf\xc4\xc1\xce\xc3\xc1\xcd\xc5\xc1\xd0\xc4\xc2\xd0\xc5\xc3\ \xd0\xc7\xc5\xd1\xc8\xc6\xd2\xc9\xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\ \xc9\xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\xcb\xc9\xd5\xcc\xca\xd6\xce\ \xcc\xd8\xd0\xce\xda\xd2\xd1\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd7\xd6\ \xe0\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xdb\xda\xe4\xdb\xda\xe4\ \xda\xd9\xe3\xd8\xd7\xe1\xd4\xd2\xde\xcd\xcc\xd7\xc4\xc2\xcf\xb4\ \xb1\xc0\xa0\x9d\xaf\x8a\x88\x9c\x6f\x6d\x84\x63\x60\x79\x7c\x78\ \x8f\x9a\x97\xab\xb1\xae\xbe\xc2\xbf\xcc\xcc\xc9\xd5\xd4\xd1\xdc\ \xd8\xd4\xdf\xd9\xd5\xdf\xd9\xd6\xe0\xda\xd6\xe1\xda\xd6\xe1\xd9\ \xd5\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd8\xd4\xdf\xd6\xd2\ \xdd\xd6\xd2\xdd\xd4\xd0\xdc\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\ \xd4\xcf\xdc\xd4\xd0\xdc\xd5\xd1\xdc\xd5\xd1\xdc\xd6\xd2\xdd\xd4\ \xd0\xdb\xd5\xd1\xdc\xd4\xd0\xdb\xd4\xd0\xdb\xcf\xcc\xd6\xc7\xc3\ \xcf\xbd\xb8\xc7\xb3\xae\xbf\xaa\xa4\xb6\x9f\x99\xad\x96\x90\xa7\ \x94\x8e\xa5\x96\x90\xa7\x9c\x96\xaa\xa0\x99\xab\xa3\x9c\xac\xa3\ \x9c\xad\xa3\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\x9f\x99\xaa\x9e\x98\ \xa9\x9c\x96\xa7\x9c\x96\xa7\x9b\x95\xa6\x9a\x96\xa7\x99\x96\xa6\ \x98\x95\xa5\x97\x94\xa4\x94\x93\xa3\x90\x90\xa1\x89\x8c\x9e\x85\ \x89\x9d\x84\x88\x9d\x84\x8a\x9f\x86\x8a\xa0\x8a\x8d\xa2\x8d\x90\ \xa4\x91\x91\xa6\x94\x93\xa7\x96\x95\xa8\x97\x95\xa9\x98\x95\xa8\ \x99\x96\xa9\x99\x97\xab\x9a\x97\xaa\x9b\x97\xaa\x9b\x98\xab\x9d\ \x99\xad\x9f\x9b\xae\xa3\x9e\xb1\xa8\xa2\xb3\xac\xa5\xb6\xb1\xaa\ \xb8\xb5\xad\xba\xb5\xae\xbb\xb6\xaf\xbc\xb8\xaf\xbc\xb4\xac\xb8\ \xb1\xa8\xb5\xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb5\xb0\xa7\xb5\xb0\ \xa7\xb5\xb1\xa7\xb4\xb1\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\x00\x00\ \x00\xc3\xbf\xcb\xc3\xbe\xca\xc0\xbe\xca\xc0\xbd\xca\xc1\xbe\xcc\ \xc1\xbf\xcd\xc3\xc1\xce\xc5\xc3\xcf\xc5\xc3\xd0\xc7\xc5\xd2\xc9\ \xc7\xd3\xc9\xc7\xd3\xca\xc8\xd4\xcb\xca\xd6\xcc\xca\xd6\xcd\xcb\ \xd7\xcc\xca\xd6\xcc\xca\xd6\xcb\xc9\xd5\xcc\xca\xd6\xca\xc8\xd4\ \xcb\xc9\xd5\xcb\xc9\xd5\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\xd3\xc9\ \xc7\xd3\xc9\xc8\xd4\xc9\xc7\xd3\xc7\xc6\xd2\xc7\xc3\xcf\xc5\xc3\ \xcf\xc4\xc2\xce\xc4\xc1\xce\xc4\xc2\xce\xc4\xc2\xce\xc6\xc4\xd0\ \xc7\xc5\xd1\xc8\xc6\xd2\xc9\xc7\xd3\xc8\xc6\xd2\xc8\xc6\xd2\xc7\ \xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xca\xd6\xcd\xcb\xd7\xcf\xcd\ \xd9\xd0\xce\xda\xd3\xd1\xdc\xd5\xd4\xde\xd6\xd5\xdf\xd7\xd6\xe0\ \xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xdb\xda\xe4\xda\xd9\xe4\xd9\ \xd9\xe3\xd8\xd7\xe1\xd4\xd2\xdd\xcc\xca\xd6\xc2\xc0\xcc\xb2\xae\ \xbe\x9d\x9b\xac\x85\x82\x98\x69\x66\x7e\x6f\x6c\x85\x8e\x8c\xa2\ \xaa\xa9\xbb\xbe\xbc\xca\xca\xc8\xd4\xd2\xd1\xdc\xd7\xd5\xe0\xd8\ \xd6\xe0\xd9\xd6\xe0\xda\xd7\xe1\xda\xd7\xe1\xdb\xd7\xe2\xda\xd6\ \xe1\xd8\xd5\xe0\xd8\xd5\xdf\xd7\xd4\xdf\xd7\xd2\xdd\xd5\xd1\xdc\ \xd4\xd0\xdb\xd3\xd0\xda\xd1\xce\xda\xd1\xce\xdb\xd3\xcf\xdb\xd4\ \xd1\xdb\xd4\xd1\xdc\xd6\xd1\xdd\xd6\xd2\xdd\xd5\xd1\xdc\xd5\xd1\ \xdc\xd5\xd1\xdc\xd3\xcf\xda\xd0\xcc\xd7\xc7\xc4\xd0\xbd\xba\xc8\ \xb4\xb1\xc0\xab\xa6\xb7\xa1\x9c\xaf\x9a\x94\xa9\x99\x92\xa7\x9a\ \x94\xa8\x9e\x98\xab\xa2\x9b\xac\xa3\x9d\xad\xa3\x9c\xac\xa3\x9c\ \xac\xa1\x9b\xab\x9f\x99\xab\x9f\x99\xaa\x9e\x98\xa9\x9d\x97\xa8\ \x9c\x96\xa7\x9c\x96\xa7\x9a\x97\xa6\x99\x97\xa7\x99\x96\xa6\x98\ \x95\xa5\x95\x94\xa4\x91\x91\xa2\x8e\x8f\xa1\x8c\x8d\xa1\x8b\x8d\ \xa1\x8b\x8f\xa2\x8d\x8f\xa3\x8f\x90\xa4\x94\x93\xa7\x96\x96\xa8\ \x99\x97\xa9\x9a\x97\xaa\x9b\x97\xaa\x9b\x98\xaa\x9c\x99\xaa\x9c\ \x99\xab\x9d\x99\xac\x9d\x99\xac\x9e\x9a\xad\x9f\x9a\xad\xa1\x9c\ \xaf\xa6\xa0\xb2\xaa\xa4\xb6\xad\xa6\xb7\xaf\xa7\xb8\xb3\xac\xb9\ \xb5\xae\xbb\xb7\xb0\xbd\xb7\xaf\xbc\xb3\xaa\xb7\xb1\xa8\xb5\xaf\ \xa7\xb4\xaf\xa7\xb4\xae\xa6\xb4\xae\xa6\xb3\xad\xa6\xb3\xaf\xa7\ \xb4\xaf\xa7\xb4\xb1\xa8\xb5\xb1\xa8\xb5\x00\x00\x00\xbf\xbb\xc7\ \xc0\xbc\xc8\xbd\xba\xc7\xbd\xba\xc9\xbf\xbc\xca\xc1\xbe\xcd\xc2\ \xbf\xce\xc4\xc1\xcf\xc6\xc4\xd1\xc7\xc5\xd2\xc9\xc7\xd3\xc9\xc8\ \xd4\xcb\xc9\xd5\xcc\xca\xd6\xcc\xcb\xd7\xcd\xcb\xd6\xcc\xcb\xd6\ \xcc\xca\xd6\xcb\xc9\xd5\xca\xc8\xd4\xcb\xc9\xd5\xca\xc8\xd4\xca\ \xc8\xd4\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\ \xd4\xca\xc7\xd3\xca\xc6\xd2\xc7\xc3\xcf\xc5\xc3\xcf\xc4\xc2\xce\ \xc4\xc1\xcd\xc4\xc1\xcd\xc3\xc1\xcd\xc4\xc3\xcf\xc6\xc4\xd0\xc7\ \xc5\xd1\xc7\xc5\xd1\xc8\xc6\xd2\xc7\xc5\xd1\xc7\xc5\xd1\xc8\xc6\ \xd2\xca\xc8\xd4\xcb\xc9\xd5\xcd\xcb\xd7\xcf\xcd\xd9\xd0\xce\xda\ \xd2\xd0\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd6\xd5\xdf\xd7\xd6\xe0\xd7\ \xd6\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd7\xe2\xd9\xd9\xe3\xda\xd9\ \xe3\xd7\xd6\xe0\xd2\xd0\xdc\xca\xc8\xd4\xbf\xbd\xc9\xb0\xab\xbb\ \x9b\x97\xa9\x81\x7d\x93\x76\x73\x8b\x89\x86\x9d\xa4\xa4\xb5\xb9\ \xb8\xc7\xc8\xc6\xd3\xd0\xcf\xdb\xd6\xd5\xdf\xd7\xd6\xe0\xd7\xd7\ \xe1\xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xd8\xd8\xe1\xd8\xd6\xe1\ \xd7\xd5\xdf\xd8\xd4\xdf\xd5\xd3\xde\xd4\xd1\xdd\xd1\xcf\xdb\xd0\ \xce\xda\xd0\xce\xdb\xd1\xcf\xdb\xd1\xd0\xdb\xd3\xd1\xdd\xd4\xd2\ \xdc\xd4\xd2\xdd\xd4\xd2\xdc\xd5\xd2\xdd\xd6\xd2\xdd\xd4\xd1\xdb\ \xd2\xcf\xda\xce\xcc\xd7\xc7\xc5\xd1\xbe\xbb\xc8\xb6\xb3\xc2\xad\ \xa8\xb9\xa4\x9e\xb0\x9e\x99\xac\x9e\x97\xab\x9e\x98\xab\xa0\x9a\ \xac\xa3\x9d\xac\xa4\x9d\xac\xa3\x9c\xab\xa1\x9c\xab\xa1\x9b\xab\ \x9f\x99\xaa\x9e\x98\xa9\x9e\x98\xa9\x9d\x97\xa8\x9d\x97\xa7\x9c\ \x96\xa8\x9b\x96\xa7\x99\x97\xa7\x99\x96\xa6\x98\x95\xa5\x95\x94\ \xa4\x93\x93\xa3\x91\x91\xa3\x91\x91\xa4\x90\x91\xa4\x90\x91\xa4\ \x92\x93\xa5\x95\x94\xa7\x98\x97\xa9\x9c\x99\xaa\x9c\x99\xab\x9d\ \x99\xab\x9d\x99\xaa\x9e\x9b\xaa\x9e\x9b\xab\x9e\x9b\xac\xa0\x9d\ \xac\xa0\x9c\xae\xa0\x9c\xae\xa0\x9b\xae\xa3\x9d\xb0\xa5\x9f\xb1\ \xac\xa5\xb7\xaf\xa8\xb8\xb1\xaa\xb9\xb1\xaa\xb8\xb4\xad\xba\xb4\ \xad\xba\xb2\xab\xb8\xae\xa7\xb4\xab\xa4\xb3\xad\xa4\xb2\xac\xa4\ \xb3\xab\xa3\xb3\xab\xa4\xb3\xac\xa5\xb3\xac\xa5\xb4\xad\xa7\xb3\ \xad\xa6\xb3\xae\xa6\xb4\x00\x00\x00\xbd\xb9\xc5\xbd\xba\xc6\xbc\ \xb8\xc7\xbc\xb9\xc6\xbc\xb9\xc8\xbf\xbc\xcb\xc2\xbf\xcd\xc5\xc3\ \xcf\xc7\xc5\xd1\xc8\xc6\xd2\xca\xc8\xd4\xcb\xc9\xd5\xcc\xca\xd6\ \xcd\xcb\xd7\xcd\xcb\xd7\xce\xcc\xd7\xcd\xca\xd7\xcc\xca\xd6\xcb\ \xc9\xd5\xcb\xc8\xd4\xcb\xc9\xd5\xca\xc9\xd4\xca\xc9\xd5\xca\xc7\ \xd3\xca\xc8\xd3\xca\xc8\xd3\xca\xc8\xd4\xca\xc7\xd3\xca\xc7\xd3\ \xca\xc6\xd2\xc9\xc5\xd1\xc7\xc4\xd0\xc6\xc3\xcf\xc5\xc1\xcd\xc5\ \xc1\xcd\xc6\xc2\xce\xc6\xc4\xd0\xc7\xc3\xd0\xc7\xc4\xd0\xc6\xc5\ \xd0\xc7\xc5\xd1\xc8\xc6\xd2\xc7\xc5\xd1\xc8\xc6\xd2\xcb\xc9\xd5\ \xcc\xca\xd6\xcd\xcb\xd7\xce\xcc\xd8\xd0\xce\xda\xd2\xd0\xdb\xd3\ \xd1\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd5\xd4\xde\xd6\xd5\xdf\xd6\xd5\ \xdf\xd7\xd6\xe0\xd7\xd6\xe1\xd8\xd7\xe2\xd9\xd7\xe2\xda\xd7\xe1\ \xd7\xd3\xde\xd1\xcd\xd8\xca\xc5\xd1\xbe\xba\xc7\xad\xa8\xb7\x98\ \x91\xa4\x88\x82\x97\x8c\x88\x9c\x9d\x9c\xaf\xb4\xb3\xc2\xc4\xc4\ \xd1\xcf\xce\xd9\xd5\xd4\xde\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\ \xda\xd9\xe3\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd7\xd6\xe0\xd6\ \xd6\xe0\xd6\xd4\xdf\xd4\xd2\xdd\xd2\xd1\xdd\xd1\xcf\xdb\xd1\xcf\ \xdb\xd2\xd0\xdc\xd2\xd0\xdd\xd2\xd1\xdc\xd3\xd0\xdd\xd3\xd1\xde\ \xd3\xd2\xdd\xd4\xd2\xdd\xd5\xd2\xdd\xd3\xd1\xdb\xd1\xd0\xda\xcd\ \xcb\xd6\xc5\xc3\xcf\xbf\xbb\xc8\xb7\xb2\xc1\xae\xa8\xb8\xa5\x9f\ \xb0\xa0\x9a\xac\x9f\x99\xac\x9f\x99\xac\xa3\x9c\xac\xa4\x9d\xac\ \xa3\x9c\xab\xa3\x9c\xab\xa2\x9b\xaa\xa1\x9c\xaa\xa0\x99\xaa\x9f\ \x99\xa9\x9f\x99\xa9\x9d\x97\xa8\x9e\x98\xa9\x9d\x97\xa8\x9c\x96\ \xa8\x9a\x97\xa7\x9a\x97\xa6\x9a\x97\xa7\x98\x95\xa5\x95\x94\xa4\ \x95\x93\xa5\x94\x93\xa5\x94\x93\xa5\x96\x94\xa7\x97\x95\xa7\x99\ \x98\xa9\x9c\x99\xaa\x9d\x9a\xa9\x9c\x99\xaa\x9d\x9a\xab\x9e\x9a\ \xab\x9e\x9b\xab\x9f\x9c\xac\xa1\x9c\xad\xa1\x9d\xad\xa1\x9e\xae\ \xa2\x9d\xae\xa2\x9c\xad\xa3\x9d\xae\xa6\x9e\xaf\xac\xa4\xb5\xb1\ \xaa\xb9\xb3\xac\xba\xb2\xab\xb9\xb2\xab\xb7\xb0\xa9\xb6\xac\xa5\ \xb4\xa9\xa3\xb1\xa7\xa0\xaf\xa8\xa1\xb0\xa9\xa2\xb0\xa9\xa2\xb1\ \xa9\xa2\xb1\xaa\xa3\xb1\xab\xa4\xb3\xac\xa4\xb2\xac\xa5\xb2\xad\ \xa5\xb3\x00\x00\x00\xbd\xb9\xc5\xbc\xb8\xc4\xbd\xb8\xc5\xbc\xb7\ \xc6\xbc\xb8\xc7\xbf\xbd\xca\xc2\xc1\xcc\xc5\xc3\xcf\xc7\xc5\xd1\ \xc8\xc6\xd2\xca\xc8\xd4\xcc\xca\xd6\xcd\xcb\xd6\xce\xcc\xd8\xcf\ \xcc\xd7\xcf\xcc\xd7\xcf\xcb\xd6\xcc\xca\xd5\xcc\xca\xd6\xcb\xc9\ \xd5\xcb\xc9\xd5\xcb\xca\xd4\xcc\xc9\xd5\xcc\xc8\xd4\xcb\xc7\xd2\ \xcb\xc7\xd3\xcc\xc7\xd4\xcb\xc7\xd3\xcb\xc7\xd2\xca\xc6\xd2\xca\ \xc6\xd2\xca\xc5\xd1\xc9\xc5\xd0\xc7\xc4\xd0\xc8\xc4\xcf\xc7\xc3\ \xcf\xc8\xc4\xcf\xc8\xc4\xd0\xc8\xc4\xd0\xc8\xc5\xd0\xc9\xc5\xd0\ \xc7\xc6\xd1\xc9\xc7\xd3\xc9\xc7\xd3\xcb\xc9\xd5\xcc\xca\xd6\xce\ \xcc\xd8\xce\xcc\xd8\xcf\xce\xd9\xd0\xce\xd9\xd1\xd0\xda\xd4\xd1\ \xdb\xd5\xd1\xdc\xd4\xd2\xdd\xd4\xd3\xdd\xd5\xd4\xde\xd7\xd4\xdf\ \xd8\xd5\xe0\xd8\xd5\xe0\xda\xd6\xe1\xda\xd6\xe0\xd9\xd5\xe0\xd6\ \xd1\xdd\xd0\xcc\xd7\xc7\xc3\xcf\xbb\xb6\xc2\xa9\xa2\xb1\x98\x8f\ \xa2\x93\x8b\x9e\x9b\x98\xab\xae\xad\xbe\xc0\xbf\xcd\xcb\xcb\xd7\ \xd3\xd2\xdd\xd8\xd7\xe1\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\xe3\xda\ \xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd8\xd7\xe1\xd7\xd6\xe0\xd6\xd5\ \xdf\xd5\xd4\xdf\xd4\xd3\xde\xd4\xd3\xde\xd4\xd2\xdd\xd3\xd1\xdd\ \xd4\xd2\xdd\xd4\xd2\xde\xd3\xd2\xdd\xd3\xd2\xdd\xd3\xd1\xde\xd4\ \xd3\xdd\xd3\xd3\xdd\xd4\xd1\xdc\xd0\xcf\xd9\xcb\xca\xd5\xc5\xc3\ \xce\xbd\xba\xc6\xb5\xb0\xbf\xac\xa7\xb7\xa5\x9f\xb0\xa1\x9b\xad\ \xa1\x9b\xad\xa0\x9a\xab\xa3\x9c\xad\xa3\x9c\xac\xa4\x9d\xab\xa3\ \x9c\xab\xa2\x9c\xaa\xa1\x9b\xab\xa0\x9a\xa9\x9f\x9a\xa9\x9e\x99\ \xa9\x9e\x98\xa9\x9d\x97\xa8\x9d\x97\xa8\x9c\x96\xa7\x9c\x96\xa7\ \x9c\x97\xa7\x9a\x96\xa7\x98\x95\xa5\x97\x95\xa5\x97\x95\xa5\x97\ \x95\xa6\x97\x95\xa6\x99\x97\xa7\x9a\x98\xa8\x9c\x99\xa9\x9d\x9a\ \xaa\x9c\x9a\xaa\x9d\x99\xaa\x9e\x9a\xab\x9f\x9a\xab\xa0\x9b\xac\ \xa0\x9b\xac\xa1\x9b\xac\xa1\x9d\xad\xa3\x9e\xae\xa3\x9e\xad\xa4\ \x9f\xae\xa5\x9f\xaf\xa6\xa0\xb0\xaa\xa3\xb2\xae\xa7\xb6\xaf\xa8\ \xb7\xae\xa7\xb6\xab\xa5\xb4\xa9\xa3\xb1\xa7\xa2\xb0\xa3\x9e\xad\ \xa1\x9c\xab\xa4\x9e\xad\xa5\x9e\xad\xa5\x9f\xae\xa6\x9f\xae\xa7\ \xa1\xb0\xa9\xa1\xb0\xa7\xa1\xb0\xa8\xa2\xb0\xa6\xa1\xb1\x00\x00\ \x00\xbc\xb8\xc5\xbc\xb8\xc6\xbd\xb9\xc6\xbd\xb9\xc6\xbd\xb9\xc8\ \xbf\xbd\xc9\xc2\xc0\xcc\xc5\xc3\xcf\xc7\xc5\xd1\xc8\xc6\xd2\xca\ \xc8\xd4\xcb\xc9\xd5\xcc\xcb\xd5\xce\xcc\xd8\xce\xce\xd7\xd0\xce\ \xd8\xd1\xcd\xd8\xcf\xcb\xd6\xcd\xcb\xd6\xcd\xcb\xd5\xcd\xcb\xd5\ \xce\xca\xd5\xce\xca\xd4\xcc\xc8\xd5\xcd\xc9\xd4\xcc\xc8\xd3\xcc\ \xc8\xd2\xcc\xc8\xd3\xcb\xc7\xd2\xcc\xc8\xd3\xcd\xc9\xd4\xcc\xc9\ \xd3\xcd\xc8\xd3\xcc\xc6\xd1\xcb\xc5\xd0\xca\xc5\xd0\xca\xc4\xcf\ \xc8\xc4\xcf\xc9\xc5\xd0\xca\xc5\xd1\xca\xc7\xd1\xcc\xc8\xd3\xcb\ \xc9\xd3\xcc\xcb\xd5\xcb\xcb\xd6\xcc\xca\xd6\xcd\xcb\xd7\xce\xcd\ \xd7\xcf\xcc\xd8\xce\xcd\xd8\xd0\xcf\xd9\xd3\xcf\xda\xd4\xd0\xdb\ \xd3\xcf\xdb\xd4\xd0\xdc\xd5\xd1\xdc\xd6\xd2\xdd\xd8\xd4\xdf\xd8\ \xd4\xdf\xd8\xd4\xdf\xda\xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdf\xd3\xcf\ \xda\xcd\xc8\xd3\xc5\xbf\xca\xb7\xb0\xbd\xa7\x9e\xab\x9d\x93\xa3\ \x9f\x98\xa9\xab\xa8\xb8\xbb\xba\xc9\xc8\xc8\xd4\xd0\xd0\xdc\xd8\ \xd7\xe1\xda\xd9\xe3\xdb\xda\xe4\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\ \xe4\xd9\xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xd7\xd6\xe0\xd6\xd5\xdf\ \xd6\xd5\xdf\xd6\xd5\xdf\xd6\xd4\xdf\xd6\xd3\xdf\xd6\xd4\xde\xd6\ \xd4\xdf\xd5\xd4\xdf\xd4\xd2\xde\xd5\xd4\xdd\xd5\xd4\xde\xd6\xd4\ \xde\xd1\xd0\xda\xce\xcc\xd8\xc9\xc7\xd3\xc1\xbe\xcc\xba\xb6\xc4\ \xb2\xad\xbc\xab\xa5\xb5\xa5\x9f\xb0\xa2\x9c\xad\xa1\x9b\xac\xa1\ \x9b\xac\xa1\x9b\xab\xa3\x9c\xac\xa3\x9c\xac\xa1\x9c\xaa\xa2\x9b\ \xaa\xa2\x9a\xaa\xa0\x9b\xa9\xa0\x9a\xa9\x9f\x9a\xa8\x9d\x98\xa8\ \x9e\x98\xa9\x9d\x97\xa9\x9d\x98\xa9\x9c\x96\xa7\x9c\x97\xa7\x9b\ \x96\xa6\x9a\x97\xa7\x99\x97\xa7\x9a\x98\xa8\x9a\x98\xa8\x9b\x98\ \xa8\x9b\x98\xa9\x9c\x99\xa8\x9e\x9a\xaa\x9e\x99\xa9\x9f\x9a\xaa\ \x9f\x98\xa9\x9e\x98\xa9\x9f\x9a\xaa\xa1\x9a\xac\xa0\x9b\xac\xa1\ \x9d\xad\xa2\x9d\xad\xa4\x9e\xaf\xa4\xa0\xae\xa5\xa0\xaf\xa8\xa1\ \xb0\xa9\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb4\xac\xa6\xb5\xaa\xa4\xb3\ \xa6\xa1\xb0\xa3\x9f\xad\xa0\x9c\xab\x9d\x9a\xa9\x9c\x97\xa8\x9f\ \x9a\xa9\xa1\x9c\xab\xa2\x9d\xad\xa3\x9d\xad\xa3\x9d\xae\xa2\x9e\ \xac\xa2\x9c\xad\xa0\x9c\xab\xa0\x9b\xab\x00\x00\x00\xbe\xba\xc6\ \xbe\xba\xc6\xbe\xba\xc6\xbf\xbb\xc7\xbd\xbb\xc7\xc0\xbe\xca\xc2\ \xc0\xcc\xc4\xc2\xce\xc5\xc3\xd0\xc7\xc5\xd1\xc9\xc7\xd3\xcb\xc9\ \xd5\xcc\xcb\xd6\xce\xcd\xd6\xcf\xce\xd8\xd0\xcd\xd8\xd1\xce\xd9\ \xd1\xcd\xd8\xd0\xcc\xd7\xcf\xcc\xd7\xd0\xcd\xd7\xd1\xcd\xd8\xd0\ \xcc\xd7\xcf\xcb\xd6\xce\xcb\xd6\xce\xca\xd5\xcd\xc9\xd4\xce\xc9\ \xd4\xcf\xca\xd4\xd0\xca\xd5\xd0\xca\xd4\xd0\xcb\xd4\xcf\xca\xd3\ \xcf\xc9\xd2\xce\xc8\xd2\xcc\xc6\xd1\xcb\xc5\xd0\xcb\xc5\xcf\xca\ \xc5\xd0\xca\xc6\xd1\xcb\xc7\xd2\xcd\xc9\xd4\xce\xca\xd5\xcd\xcc\ \xd6\xcd\xcc\xd6\xcd\xcc\xd6\xce\xcc\xd7\xce\xcd\xd8\xce\xcc\xd8\ \xcf\xcc\xd8\xce\xcc\xd8\xd0\xce\xd9\xd0\xcf\xd9\xd0\xcf\xda\xd3\ \xcf\xda\xd4\xd0\xdb\xd5\xd1\xdc\xd7\xd3\xde\xd7\xd3\xde\xd7\xd3\ \xde\xd7\xd3\xde\xd8\xd4\xde\xd8\xd4\xde\xd7\xd2\xdd\xd2\xcd\xd8\ \xcb\xc5\xd0\xc1\xba\xc5\xb3\xaa\xb6\xa6\x9b\xaa\xa4\x9a\xa9\xab\ \xa4\xb4\xb5\xb5\xc3\xc3\xc3\xd0\xcc\xcc\xd8\xd5\xd4\xde\xda\xd9\ \xe3\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xda\xd9\xe3\ \xda\xd9\xe3\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd8\xd6\xe1\xd7\ \xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\ \xe0\xd7\xd6\xe0\xd5\xd5\xdf\xd5\xd4\xde\xd2\xd1\xdb\xce\xcc\xd8\ \xc9\xc7\xd3\xc4\xc2\xce\xbd\xba\xc8\xb4\xb1\xc0\xae\xa8\xb8\xa7\ \xa1\xb2\xa3\x9d\xae\xa1\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\xa0\x9b\ \xac\xa1\x9c\xac\xa1\x9b\xaa\xa3\x9d\xac\xa2\x9c\xab\xa1\x9b\xaa\ \xa1\x9a\xaa\xa0\x9a\xa9\x9f\x99\xa8\x9f\x98\xa9\x9d\x97\xa9\x9e\ \x98\xa9\x9d\x97\xa8\x9d\x98\xa9\x9c\x97\xa8\x9b\x98\xa8\x9b\x98\ \xa8\x9b\x98\xa8\x9c\x99\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9a\xaa\ \x9e\x9b\xaa\x9f\x9b\xaa\x9f\x99\xa9\x9f\x9a\xaa\x9f\x99\xaa\x9f\ \x99\xaa\xa0\x9a\xab\xa0\x9b\xab\xa1\x9c\xac\xa1\x9c\xac\xa2\x9e\ \xad\xa4\x9f\xad\xa4\x9f\xae\xa6\xa1\xb0\xaa\xa3\xb1\xab\xa4\xb3\ \xab\xa4\xb3\xac\xa5\xb2\xab\xa4\xb2\xa7\xa2\xb0\xa2\x9e\xad\x9e\ \x9b\xaa\x9a\x98\xa7\x96\x95\xa5\x97\x95\xa5\x99\x95\xa5\x9e\x99\ \xa9\x9f\x9a\xaa\xa0\x9a\xab\xa0\x9a\xab\x9d\x99\xaa\x9b\x98\xa8\ \x9a\x96\xa8\x9b\x98\xa9\x00\x00\x00\xbf\xbb\xc7\xbf\xbb\xc7\xbf\ \xbb\xc7\xbe\xbb\xc7\xbe\xbc\xc8\xc0\xbe\xca\xc1\xbf\xcb\xc3\xc1\ \xcd\xc5\xc3\xcf\xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xca\xd6\ \xce\xcd\xd7\xd0\xce\xd8\xd0\xcf\xd9\xd0\xcf\xd9\xd1\xd0\xda\xd2\ \xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd2\xce\xd9\xd2\xcf\xd9\xd2\xce\ \xd9\xd2\xcd\xd7\xd1\xcc\xd7\xd0\xca\xd4\xcf\xcb\xd4\xd0\xca\xd4\ \xd3\xcb\xd4\xd3\xcb\xd5\xd2\xcb\xd3\xd2\xca\xd3\xd1\xca\xd3\xd0\ \xc8\xd2\xce\xc7\xd1\xcc\xc7\xd0\xcd\xc7\xd1\xcc\xc7\xd1\xcb\xc7\ \xd2\xcc\xc8\xd3\xce\xca\xd5\xce\xca\xd5\xd0\xcc\xd7\xcf\xcc\xd7\ \xcf\xcd\xd7\xd0\xcc\xd7\xce\xcd\xd7\xce\xcd\xd8\xcf\xcc\xd8\xce\ \xcc\xd9\xcf\xcd\xd9\xcf\xce\xd8\xd0\xce\xda\xd2\xcf\xd9\xd3\xcf\ \xda\xd4\xd0\xdb\xd5\xd1\xdc\xd6\xd2\xdd\xd8\xd3\xdd\xd7\xd3\xdc\ \xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd5\xd0\xda\xd0\xca\xd5\xc8\ \xc1\xcc\xbd\xb5\xbf\xae\xa4\xb0\xa7\x9d\xaa\xab\xa3\xb0\xb3\xae\ \xbd\xbd\xbc\xcb\xc8\xc8\xd4\xd0\xd0\xdb\xd8\xd7\xe1\xda\xd9\xe3\ \xdc\xdb\xe5\xdb\xda\xe4\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\xe3\xda\ \xd9\xe3\xd9\xd8\xe2\xd9\xd7\xe1\xd9\xd6\xe1\xda\xd7\xe1\xd8\xd6\ \xe0\xd8\xd6\xe0\xd7\xd7\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd7\xd6\xe0\ \xd6\xd3\xde\xd2\xd1\xdc\xce\xcc\xd7\xc9\xc7\xd2\xc3\xc1\xce\xbd\ \xba\xc8\xb7\xb3\xc2\xaf\xa9\xba\xa9\xa2\xb4\xa3\x9d\xae\xa1\x9b\ \xad\xa0\x9a\xab\xa0\x99\xaa\xa1\x9a\xab\xa0\x9b\xab\xa0\x9b\xab\ \xa1\x9c\xab\xa1\x9c\xab\xa1\x9b\xaa\xa2\x9b\xaa\x9f\x9a\xa9\xa0\ \x9a\xa9\x9f\x99\xa8\x9e\x98\xa9\x9d\x98\xa9\x9e\x97\xa9\x9d\x98\ \xa7\x9d\x98\xa8\x9d\x98\xa9\x9d\x99\xa9\x9c\x99\xa9\x9d\x9a\xa9\ \x9d\x9a\xa9\x9d\x9a\xa9\x9d\x9a\xa9\x9e\x9b\xaa\x9f\x9b\xaa\x9f\ \x9a\xa9\x9f\x9a\xaa\x9f\x99\xa9\x9f\x9a\xaa\xa0\x99\xab\xa0\x9a\ \xab\xa0\x9b\xaa\xa1\x9b\xac\xa2\x9c\xad\xa2\x9d\xac\xa4\x9f\xae\ \xa6\xa1\xb0\xa8\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb2\xac\xa5\xb2\xae\ \xa7\xb4\xad\xa6\xb3\xa5\xa0\xae\x9e\x9b\xaa\x98\x97\xa7\x94\x93\ \xa3\x92\x91\xa2\x92\x91\xa2\x95\x93\xa4\x9c\x97\xa7\x9e\x98\xa9\ \x9d\x97\xa8\x9c\x97\xa8\x99\x95\xa7\x97\x93\xa6\x98\x94\xa7\x9b\ \x97\xa9\x00\x00\x00\xbf\xbb\xc7\xc0\xbc\xc8\xc0\xbc\xc8\xc0\xbc\ \xc8\xbe\xbc\xc8\xc0\xbe\xca\xc1\xbf\xcb\xc3\xc1\xcd\xc5\xc3\xcf\ \xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xcb\xd6\xcf\xce\xd8\xd2\ \xcf\xda\xd1\xd0\xda\xd2\xd1\xdb\xd4\xd1\xdb\xd4\xd0\xdb\xd4\xd0\ \xdb\xd5\xd1\xdc\xd4\xd1\xdb\xd5\xd1\xdb\xd6\xd1\xda\xd5\xd0\xd9\ \xd4\xcf\xd8\xd1\xcc\xd5\xd3\xcb\xd5\xd3\xcb\xd5\xd4\xcc\xd5\xd3\ \xcc\xd3\xd2\xcb\xd2\xd2\xcb\xd2\xd2\xca\xd2\xd1\xca\xd2\xd1\xc9\ \xd2\xcf\xc8\xd2\xce\xc8\xd2\xcf\xc9\xd3\xcf\xc9\xd4\xce\xc9\xd5\ \xcf\xcb\xd6\xcf\xcb\xd6\xd0\xcc\xd7\xd1\xcd\xd8\xd2\xcd\xd8\xd0\ \xcd\xd8\xd1\xcd\xd8\xcf\xce\xd8\xce\xcc\xd9\xcf\xcd\xd8\xcf\xcc\ \xd8\xcf\xcd\xd9\xd0\xce\xd9\xd3\xcf\xda\xd3\xcf\xda\xd4\xd0\xdb\ \xd5\xd2\xdc\xd8\xd3\xdd\xd9\xd4\xdd\xd7\xd2\xdb\xd7\xd2\xdb\xd7\ \xd2\xdb\xd9\xd4\xdd\xd8\xd3\xdc\xd4\xcf\xd9\xce\xc9\xd2\xc7\xbf\ \xca\xb9\xb0\xbb\xad\xa0\xad\xab\xa1\xad\xaf\xa8\xb6\xb6\xb5\xc3\ \xc2\xc2\xcf\xcc\xcc\xd7\xd4\xd3\xde\xdb\xda\xe4\xdb\xda\xe4\xdc\ \xdb\xe5\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xd9\xd8\ \xe2\xda\xd8\xe2\xdb\xd8\xe3\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd6\xe0\ \xd9\xd6\xe0\xd9\xd7\xe2\xd9\xd7\xe1\xd7\xd4\xdf\xd3\xd1\xdb\xce\ \xcc\xd7\xc9\xc7\xd2\xc1\xbe\xcd\xbb\xb8\xc6\xb5\xb1\xc1\xb0\xab\ \xba\xa9\xa3\xb4\xa5\x9e\xaf\xa2\x9c\xad\x9f\x99\xab\x9f\x99\xaa\ \xa0\x9a\xab\x9f\x99\xaa\xa1\x9a\xab\xa2\x9b\xaa\xa1\x9b\xaa\xa2\ \x9b\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa0\x9a\xa9\xa1\x99\xa8\xa0\x99\ \xa8\x9e\x99\xa9\x9d\x98\xa9\x9e\x98\xa9\x9d\x97\xa8\x9e\x97\xa8\ \x9d\x98\xa8\x9d\x99\xa9\x9d\x9a\xa9\x9e\x9b\xaa\x9d\x9a\xaa\x9d\ \x9a\xa9\x9e\x9b\xab\x9d\x9b\xaa\x9f\x9b\xaa\x9f\x9a\xa9\x9f\x99\ \xa9\x9f\x9a\xa9\x9e\x99\xa9\x9f\x9a\xaa\x9f\x99\xab\xa1\x9b\xab\ \xa2\x9c\xad\xa2\x9c\xac\xa3\x9d\xad\xa4\x9f\xae\xa7\xa2\xb0\xaa\ \xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xae\xa7\xb4\xb1\xaa\xb7\xae\xa7\ \xb4\xa4\xa0\xad\x98\x97\xa7\x93\x93\xa4\x91\x90\xa2\x8f\x8f\xa0\ \x8f\x8f\xa0\x94\x91\xa2\x9a\x96\xa6\x9e\x98\xa9\x9d\x97\xa8\x9a\ \x94\xa6\x96\x92\xa5\x96\x92\xa5\x97\x93\xa6\x98\x95\xa8\x00\x00\ \x00\xc0\xbc\xc8\xc0\xbc\xc8\xc1\xbd\xc9\xc0\xbc\xc8\xc1\xbd\xc9\ \xc0\xbe\xca\xc2\xc0\xcc\xc3\xc1\xcd\xc5\xc3\xcf\xc6\xc4\xd0\xc9\ \xc7\xd3\xcc\xca\xd5\xce\xcd\xd6\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd1\ \xdc\xd6\xd3\xde\xd7\xd3\xde\xd7\xd3\xde\xd7\xd3\xde\xd8\xd4\xde\ \xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd7\xd1\xda\xd6\ \xce\xd8\xd6\xce\xd7\xd5\xce\xd6\xd6\xcf\xd6\xd7\xcf\xd6\xd5\xcd\ \xd4\xd4\xcc\xd3\xd3\xcc\xd3\xd2\xcb\xd3\xd3\xcb\xd4\xd2\xca\xd4\ \xd1\xcb\xd4\xd1\xcb\xd5\xd1\xcc\xd7\xd2\xcd\xd7\xd0\xcc\xd7\xd1\ \xcd\xd8\xd1\xcd\xd8\xd2\xce\xd9\xd3\xcf\xda\xd2\xce\xd9\xd3\xcf\ \xda\xd2\xce\xd9\xd1\xce\xd8\xd1\xce\xda\xd0\xcd\xd9\xd0\xcc\xd8\ \xd1\xcc\xd8\xd2\xce\xd9\xd3\xcf\xda\xd5\xd0\xdb\xd7\xd1\xdb\xd7\ \xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd8\xd3\ \xdc\xd9\xd4\xdd\xd7\xd2\xdb\xd3\xce\xd7\xcc\xc6\xcf\xc1\xb9\xc3\ \xb3\xa7\xb3\xad\xa1\xad\xad\xa4\xb1\xb2\xad\xbb\xb9\xb9\xc7\xc6\ \xc5\xd1\xd0\xcf\xdb\xd8\xd7\xe1\xdb\xda\xe4\xdc\xdb\xe5\xdc\xdb\ \xe5\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xd9\xe3\ \xdb\xd8\xe3\xdc\xd8\xe3\xda\xd7\xe1\xd9\xd5\xe0\xdb\xd7\xe2\xd8\ \xd7\xe1\xd7\xd4\xdf\xd4\xd0\xdb\xcd\xcc\xd7\xc7\xc5\xd1\xc0\xbd\ \xca\xb9\xb6\xc5\xb4\xb0\xbf\xaf\xa9\xb9\xa9\xa3\xb4\xa7\x9f\xb0\ \xa4\x9d\xae\xa4\x9c\xad\xa2\x9b\xac\xa0\x9b\xac\xa0\x9b\xab\xa2\ \x9a\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa3\x9c\xab\xa1\x9b\xa9\xa1\x9b\ \xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa0\x99\xa8\xa0\x9a\xa8\xa1\x9a\xa8\ \x9e\x99\xa8\x9e\x98\xa9\x9e\x98\xa8\x9d\x9a\xa9\x9e\x9a\xa9\x9d\ \x9a\xaa\x9e\x9b\xaa\x9d\x9a\xab\x9e\x9b\xab\x9e\x9b\xab\x9e\x9b\ \xab\x9e\x9a\xaa\x9e\x99\xa8\x9e\x99\xa8\x9f\x99\xa8\x9f\x98\xa9\ \x9f\x9a\xa9\x9f\x99\xab\x9f\x99\xaa\xa1\x9b\xac\xa0\x9a\xab\xa2\ \x9c\xad\xa2\x9d\xae\xa4\x9f\xae\xa6\xa0\xb0\xaa\xa4\xb2\xac\xa5\ \xb3\xad\xa6\xb3\xae\xa7\xb4\xaf\xa8\xb5\xaa\xa4\xb3\x9f\x9c\xac\ \x94\x94\xa5\x8d\x8e\xa0\x8b\x8c\x9e\x8c\x8c\x9e\x8d\x8d\x9f\x92\ \x90\xa2\x99\x95\xa6\x9d\x97\xa8\x9c\x96\xa7\x9a\x94\xa5\x96\x91\ \xa4\x94\x90\xa3\x95\x91\xa4\x97\x94\xa7\x00\x00\x00\xc2\xbd\xc9\ \xc2\xbe\xc9\xc2\xbe\xca\xc1\xbd\xc9\xc1\xbe\xca\xc1\xbf\xcc\xc1\ \xbf\xcb\xc3\xc1\xcd\xc5\xc3\xcf\xc7\xc5\xd0\xca\xc8\xd3\xce\xca\ \xd6\xd0\xcd\xd8\xd3\xcf\xda\xd6\xd1\xdd\xd7\xd3\xde\xd9\xd5\xe0\ \xda\xd6\xe0\xda\xd7\xe0\xdb\xd7\xe0\xda\xd6\xdf\xdb\xd6\xdf\xda\ \xd5\xde\xd9\xd5\xdd\xda\xd4\xdc\xdb\xd4\xdb\xd9\xd2\xd9\xd8\xd1\ \xd8\xd8\xd1\xd8\xd8\xd0\xd7\xd8\xd0\xd7\xd7\xcf\xd6\xd7\xcf\xd6\ \xd7\xcf\xd6\xd5\xcd\xd4\xd4\xcc\xd5\xd4\xcc\xd6\xd4\xcc\xd6\xd3\ \xcd\xd7\xd4\xcf\xd8\xd5\xd0\xd9\xd4\xcf\xd8\xd4\xd0\xd9\xd4\xd0\ \xd9\xd5\xd1\xdb\xd6\xd1\xdb\xd5\xd1\xdb\xd4\xd0\xdb\xd4\xd0\xdb\ \xd3\xcf\xda\xd2\xce\xd9\xd2\xce\xd9\xd1\xcd\xd9\xd2\xce\xd9\xd2\ \xce\xd9\xd4\xd0\xdb\xd6\xd0\xdb\xd6\xd1\xdb\xd7\xd2\xdb\xd7\xd2\ \xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd7\xd2\xdb\xd8\xd3\xdc\ \xd9\xd4\xdd\xd7\xd2\xdb\xd1\xcb\xd4\xc8\xc1\xcb\xbb\xb1\xbc\xaf\ \xa3\xaf\xac\xa1\xad\xaf\xa7\xb4\xb2\xb0\xbf\xbf\xbe\xcc\xcb\xcb\ \xd7\xd5\xd4\xde\xda\xd9\xe3\xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\ \xdc\xdb\xe5\xdb\xdb\xe5\xdd\xda\xe5\xde\xd9\xe4\xdd\xd9\xe4\xdb\ \xd8\xe2\xda\xd6\xe1\xda\xd7\xe2\xda\xd6\xe1\xd8\xd4\xdf\xd5\xd1\ \xdc\xcf\xcb\xd6\xc7\xc4\xd0\xbe\xbc\xc9\xb7\xb3\xc2\xb3\xae\xbe\ \xae\xa8\xb9\xaa\xa3\xb4\xa8\xa0\xb0\xa6\x9e\xaf\xa5\x9d\xae\xa4\ \x9c\xad\xa3\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\xa2\x9a\xab\xa1\x9b\ \xa9\xa1\x9a\xa9\xa2\x9b\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa2\x9b\xa8\ \xa1\x9a\xa8\xa1\x9a\xa9\xa1\x9a\xa9\xa0\x99\xa8\x9f\x9a\xa9\x9f\ \x99\xa9\x9d\x99\xa8\x9d\x9a\xa9\x9d\x9a\xaa\x9e\x9b\xa9\x9d\x9a\ \xa9\x9e\x9b\xaa\x9e\x9b\xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9e\x9a\xa9\ \x9f\x99\xa8\x9f\x9a\xa9\x9e\x99\xa8\x9f\x99\xa9\x9e\x98\xa8\x9f\ \x99\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa1\x9b\xac\xa2\x9c\xad\xa2\x9c\ \xac\xa3\x9e\xad\xa5\xa0\xaf\xa8\xa2\xb1\xaa\xa3\xb2\xa9\xa4\xb2\ \xa8\xa3\xb2\xa7\xa2\xb1\xa2\x9e\xae\x97\x95\xa7\x8c\x8c\xa0\x85\ \x87\x9b\x86\x87\x9b\x89\x89\x9c\x8c\x8c\x9e\x92\x90\xa2\x9a\x96\ \xa7\x9e\x98\xa9\x9e\x98\xa9\x9a\x94\xa6\x98\x92\xa5\x95\x90\xa3\ \x95\x91\xa4\x97\x93\xa7\x00\x00\x00\xc5\xbf\xca\xc4\xbf\xcb\xc3\ \xbf\xcb\xc4\xc0\xcc\xc3\xbf\xcc\xc2\xbf\xcd\xc1\xbf\xcc\xc3\xc0\ \xce\xc5\xc3\xce\xc7\xc5\xd1\xcc\xc8\xd3\xce\xca\xd5\xd1\xcd\xd8\ \xd5\xd1\xdc\xd6\xd2\xdd\xd9\xd6\xdf\xd9\xd6\xe0\xdb\xd8\xe1\xdd\ \xd9\xe2\xdd\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe0\xdc\xd7\xe0\xdd\xd6\ \xdd\xdd\xd6\xdd\xdd\xd6\xdd\xdb\xd4\xdb\xdb\xd4\xdb\xda\xd3\xda\ \xd9\xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\xd8\xd0\xd7\xd8\xd0\xd7\xd7\ \xd0\xd7\xd6\xcf\xd6\xd6\xce\xd6\xd5\xce\xd7\xd6\xcf\xd8\xd6\xd0\ \xd9\xd6\xd1\xda\xd7\xd1\xda\xd6\xd1\xda\xd6\xd1\xda\xd7\xd2\xdb\ \xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xdb\xd5\xd0\xda\xd4\ \xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd5\xd0\xdb\xd5\xd0\ \xdb\xd6\xd1\xdb\xd7\xd1\xdb\xd6\xd1\xda\xd6\xd1\xda\xd5\xd0\xd9\ \xd6\xd1\xda\xd6\xd1\xda\xd7\xd1\xda\xd7\xd3\xdc\xd8\xd3\xdc\xd8\ \xd3\xdc\xd5\xd0\xd9\xce\xc7\xd0\xc4\xbc\xc5\xb5\xab\xb5\xad\xa2\ \xad\xad\xa3\xb1\xaf\xaa\xb9\xb7\xb5\xc5\xc4\xc4\xd1\xcf\xcd\xd8\ \xd6\xd5\xdf\xda\xd9\xe3\xdb\xda\xe4\xdc\xdb\xe5\xdc\xdc\xe6\xdd\ \xdb\xe5\xde\xd9\xe4\xde\xda\xe5\xdd\xd9\xe4\xdc\xd8\xe3\xdb\xd7\ \xe2\xdc\xd8\xe3\xda\xd6\xe1\xd6\xd2\xdd\xd2\xce\xd9\xca\xc6\xd1\ \xc2\xbe\xcb\xb8\xb4\xc2\xb0\xab\xbb\xad\xa7\xb8\xaa\xa4\xb5\xa8\ \xa1\xb1\xa8\xa0\xb0\xa6\x9f\xaf\xa6\x9e\xaf\xa4\x9d\xae\xa3\x9b\ \xac\xa1\x9b\xac\xa0\x9a\xab\xa1\x9b\xab\xa0\x9a\xa9\xa2\x9b\xaa\ \xa2\x9c\xaa\xa2\x9b\xa9\xa2\x9b\xa9\xa2\x9b\xa9\xa1\x9a\xa9\xa1\ \x9a\xa9\xa1\x9a\xa9\xa0\x9a\xa9\x9f\x9a\xa9\x9f\x99\xa8\x9f\x9a\ \xa9\x9f\x9a\xa9\x9e\x9b\xaa\x9d\x9a\xa9\x9e\x9b\xaa\x9e\x9b\xa9\ \x9e\x9a\xaa\x9e\x9b\xab\x9d\x99\xa9\x9d\x99\xa8\x9e\x99\xa9\x9e\ \x98\xa8\x9e\x98\xa7\x9e\x98\xa8\x9e\x98\xa8\x9f\x99\xa9\x9f\x99\ \xaa\x9f\x99\xaa\xa0\x9a\xab\xa1\x9b\xac\xa1\x9d\xac\xa3\x9d\xad\ \xa4\x9f\xae\xa5\xa0\xaf\xa6\xa1\xb0\xa5\x9f\xb0\xa3\x9d\xad\x9e\ \x9a\xad\x97\x94\xa8\x8d\x8b\xa0\x81\x83\x99\x7c\x7e\x95\x7f\x81\ \x97\x85\x86\x9a\x8b\x8a\x9d\x92\x90\xa2\x9b\x97\xa7\x9e\x99\xa9\ \x9f\x99\xa9\x9c\x96\xa7\x99\x93\xa5\x98\x92\xa5\x96\x92\xa5\x98\ \x94\xa7\x00\x00\x00\xc7\xc1\xcc\xc7\xc1\xcc\xc6\xc2\xce\xc6\xc2\ \xce\xc5\xc2\xce\xc4\xc1\xce\xc3\xc1\xcd\xc4\xc1\xce\xc5\xc3\xcf\ \xc7\xc5\xd0\xca\xc9\xd3\xcf\xca\xd5\xd1\xcd\xd8\xd5\xd1\xdc\xd7\ \xd3\xde\xd8\xd5\xdf\xdb\xd8\xe1\xdc\xd9\xe2\xdd\xda\xe3\xde\xdb\ \xe4\xdf\xda\xe3\xdf\xda\xe2\xdf\xda\xe0\xdf\xd8\xdf\xdf\xd8\xdf\ \xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\xd5\xdc\xdb\xd4\xdb\xdb\ \xd3\xda\xdc\xd4\xdb\xdb\xd3\xda\xda\xd2\xd9\xda\xd2\xd9\xda\xd2\ \xd9\xd9\xd2\xd9\xd8\xd1\xd8\xd9\xd2\xd9\xd9\xd2\xda\xda\xd4\xdb\ \xda\xd3\xdb\xda\xd4\xdc\xda\xd4\xdc\xdb\xd3\xdb\xdb\xd3\xdc\xda\ \xd4\xdc\xda\xd4\xdd\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd2\xdc\xd7\xd2\ \xdc\xd6\xd2\xdc\xd6\xd2\xdd\xd7\xd3\xdd\xd7\xd2\xdc\xd8\xd3\xdc\ \xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd8\ \xd2\xdb\xd7\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd7\xd2\ \xdb\xd2\xcc\xd5\xca\xc2\xcc\xbe\xb5\xbf\xb1\xa6\xb2\xac\xa2\xaf\ \xac\xa6\xb4\xaf\xad\xbc\xba\xba\xc9\xc8\xc7\xd3\xd2\xd1\xdc\xd8\ \xd7\xe1\xdb\xda\xe4\xdc\xda\xe5\xdf\xdb\xe6\xde\xda\xe5\xde\xd9\ \xe5\xde\xd9\xe4\xde\xda\xe5\xdc\xda\xe4\xdd\xd9\xe3\xdc\xd8\xe2\ \xda\xd6\xe1\xd4\xd0\xdb\xcd\xc9\xd4\xc5\xc1\xcd\xbc\xb8\xc4\xb2\ \xad\xbc\xac\xa6\xb7\xaa\xa4\xb4\xaa\xa2\xb3\xa8\xa0\xb1\xa8\xa1\ \xb0\xa6\x9f\xae\xa6\x9e\xaf\xa5\x9e\xaf\xa2\x9c\xad\xa1\x9b\xac\ \xa0\x9a\xab\x9f\x9a\xa9\xa0\x9b\xa9\xa2\x9c\xaa\xa2\x9b\xaa\xa4\ \x9d\xa9\xa3\x9c\xaa\xa3\x9c\xa9\xa3\x9c\xab\xa2\x9b\xaa\xa2\x9a\ \xa8\xa2\x9c\xa9\xa0\x9b\xaa\x9f\x9b\xaa\xa0\x9a\xa9\x9e\x9b\xaa\ \x9e\x9a\xa9\x9d\x9b\xaa\x9d\x9a\xa9\x9c\x9a\xaa\x9d\x9b\xab\x9c\ \x99\xa9\x9b\x98\xa8\x9c\x98\xa8\x9d\x98\xa8\x9d\x97\xa8\x9e\x97\ \xa9\x9e\x97\xa8\x9e\x98\xa9\x9f\x99\xaa\x9e\x98\xa9\xa0\x9a\xab\ \xa1\x9b\xac\xa0\x9a\xab\xa1\x9b\xac\xa2\x9d\xad\xa4\x9e\xae\xa3\ \x9e\xad\xa6\xa1\xb0\xa7\xa1\xb1\xa4\x9f\xaf\x9e\x9a\xad\x93\x90\ \xa5\x87\x86\x9c\x7b\x7c\x95\x75\x77\x90\x79\x7a\x94\x81\x81\x98\ \x8a\x89\x9d\x92\x90\xa2\x9c\x96\xa8\xa1\x9b\xab\x9f\x99\xaa\x9d\ \x97\xa8\x9c\x96\xa7\x9a\x94\xa6\x9a\x95\xa7\x9b\x97\xa8\x00\x00\ \x00\xc8\xc2\xcd\xc8\xc2\xcd\xc8\xc3\xce\xc7\xc3\xcf\xc7\xc3\xcf\ \xc4\xc2\xce\xc5\xc3\xcf\xc4\xc2\xce\xc5\xc3\xcf\xc6\xc5\xd0\xca\ \xc8\xd3\xce\xcb\xd6\xd2\xce\xd9\xd4\xd0\xdb\xd7\xd3\xdd\xd9\xd6\ \xdf\xdb\xd8\xe1\xdd\xda\xe3\xde\xdb\xe4\xdf\xdb\xe4\xe0\xdb\xe4\ \xe1\xdc\xe4\xe1\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xe0\ \xd8\xdf\xdf\xd7\xde\xde\xd6\xdd\xdd\xd5\xdc\xdc\xd5\xdc\xdc\xd4\ \xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdc\xd5\xdb\xdc\xd4\xdb\ \xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdc\ \xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdb\xdb\xd4\xdb\xdc\xd4\ \xdc\xdb\xd4\xdc\xdb\xd4\xdc\xdb\xd4\xdd\xdb\xd5\xdd\xda\xd4\xdd\ \xda\xd4\xde\xda\xd5\xde\xda\xd4\xde\xda\xd5\xde\xda\xd5\xde\xda\ \xd5\xde\xda\xd5\xde\xda\xd5\xde\xda\xd4\xdd\xda\xd3\xdd\xd8\xd3\ \xdc\xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd4\xcf\xd8\ \xcf\xc7\xd1\xc5\xbd\xc7\xb7\xae\xb8\xac\xa2\xaf\xab\xa3\xb2\xab\ \xa7\xb7\xb2\xb1\xc1\xc0\xc1\xce\xcc\xcb\xd6\xd5\xd4\xde\xda\xda\ \xe4\xdf\xda\xe5\xde\xda\xe5\xde\xda\xe5\xde\xda\xe5\xde\xda\xe4\ \xde\xda\xe4\xdc\xd9\xe3\xdd\xd9\xe3\xdb\xd7\xe2\xd8\xd3\xde\xd2\ \xcd\xd8\xcb\xc5\xd0\xc2\xbd\xc9\xb8\xb2\xc0\xaf\xa8\xb7\xab\xa4\ \xb3\xa9\xa2\xb1\xa8\xa1\xb1\xa8\xa0\xb0\xa8\xa0\xb0\xa6\x9f\xaf\ \xa7\x9e\xaf\xa5\x9e\xaf\xa2\x9c\xad\xa0\x99\xab\x9f\x99\xa9\x9f\ \x9a\xa9\x9f\x9a\xa9\xa1\x9b\xa9\xa2\x9c\xa9\xa3\x9c\xa9\xa4\x9d\ \xaa\xa4\x9d\xaa\xa3\x9c\xa9\xa3\x9c\xaa\xa3\x9c\xa9\xa2\x9c\xa9\ \xa1\x9b\xaa\xa0\x9b\xaa\xa0\x9b\xaa\x9e\x9b\xab\x9e\x9b\xaa\x9d\ \x9a\xa9\x9c\x99\xaa\x9b\x99\xa9\x9b\x99\xa9\x9b\x99\xa9\x9a\x97\ \xa7\x9a\x98\xa8\x9b\x97\xa7\x9d\x97\xa7\x9d\x97\xa7\x9d\x96\xa7\ \x9e\x98\xa9\x9e\x98\xa9\x9e\x98\xa9\x9f\x9a\xaa\x9f\x9a\xab\xa1\ \x9a\xab\xa1\x9b\xac\xa2\x9c\xad\xa3\x9e\xae\xa7\xa2\xb1\xaa\xa5\ \xb4\xab\xa6\xb5\xa9\xa4\xb3\xa3\x9e\xb0\x98\x94\xa8\x8b\x88\x9f\ \x7c\x7c\x96\x76\x77\x91\x78\x79\x93\x80\x7f\x97\x8c\x89\x9e\x95\ \x91\xa4\x9c\x97\xa8\xa2\x9c\xab\xa2\x9b\xab\xa0\x99\xaa\x9e\x97\ \xa8\x9c\x96\xa7\x9d\x97\xa8\x9d\x99\xa9\x00\x00\x00\xc8\xc2\xcd\ \xc8\xc2\xcd\xc9\xc3\xce\xc9\xc4\xd0\xc7\xc3\xd0\xc7\xc3\xcf\xc5\ \xc3\xcf\xc5\xc3\xcf\xc5\xc3\xcf\xc6\xc4\xd0\xc9\xc7\xd3\xcf\xcb\ \xd6\xd1\xcd\xd8\xd4\xd0\xdb\xd7\xd3\xdc\xd9\xd6\xdf\xdb\xd8\xe1\ \xdd\xda\xe3\xdf\xdb\xe4\xe1\xdc\xe5\xe2\xdd\xe6\xe1\xdd\xe5\xe1\ \xdd\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe1\xe1\xd9\ \xe0\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdc\ \xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\ \xd7\xdc\xde\xd7\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xde\xd7\xdc\xde\xd7\ \xdc\xde\xd7\xdc\xdd\xd6\xdc\xdd\xd6\xdb\xdd\xd6\xdc\xde\xd7\xdc\ \xde\xd6\xdc\xde\xd7\xdd\xde\xd6\xdd\xdc\xd5\xdd\xdc\xd4\xde\xdc\ \xd6\xdf\xdd\xd6\xe0\xde\xd6\xe0\xdd\xd6\xe0\xdd\xd5\xdf\xdd\xd6\ \xdf\xdc\xd6\xdf\xdb\xd5\xde\xda\xd5\xde\xda\xd5\xde\xd9\xd4\xdd\ \xd9\xd4\xdd\xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd2\xcd\xd6\xcb\ \xc4\xce\xbf\xb6\xc0\xaf\xa7\xb3\xa8\xa0\xb0\xa8\xa4\xb4\xad\xab\ \xbb\xb8\xb7\xc5\xc5\xc5\xd1\xd1\xd0\xda\xd8\xd7\xe1\xdd\xda\xe4\ \xde\xda\xe5\xdd\xda\xe5\xdd\xda\xe4\xde\xdb\xe4\xde\xda\xe4\xdc\ \xd9\xe3\xdd\xd9\xe2\xdc\xd8\xe1\xd8\xd2\xdd\xd1\xcb\xd6\xca\xc3\ \xce\xc1\xb9\xc6\xb5\xae\xbb\xad\xa6\xb4\xa9\xa2\xb1\xa9\xa1\xb1\ \xa8\xa1\xb0\xa7\xa0\xaf\xa8\xa1\xb0\xa7\xa0\xaf\xa6\x9f\xaf\xa5\ \x9f\xae\xa0\x9b\xab\x9e\x99\xa9\x9e\x98\xa8\x9d\x98\xa7\x9e\x99\ \xa8\x9f\x9a\xa8\xa2\x9c\xa8\xa5\x9d\xaa\xa4\x9d\xaa\xa4\x9d\xaa\ \xa4\x9d\xaa\xa3\x9c\xa9\xa4\x9d\xa9\xa3\x9b\xaa\xa1\x9c\xab\xa0\ \x9b\xaa\x9e\x9b\xaa\x9e\x9b\xaa\x9e\x9b\xaa\x9c\x9a\xaa\x9a\x99\ \xa9\x99\x98\xa8\x98\x97\xa7\x99\x97\xa7\x9a\x97\xa7\x9a\x97\xa7\ \x9b\x96\xa6\x9c\x97\xa7\x9c\x96\xa7\x9c\x96\xa7\x9d\x97\xa8\x9e\ \x98\xa9\x9e\x98\xa9\x9e\x9a\xa9\x9f\x9a\xaa\xa0\x9a\xab\xa1\x9b\ \xac\xa2\x9d\xad\xa7\xa2\xb1\xab\xa6\xb4\xab\xa6\xb5\xac\xa7\xb6\ \xac\xa7\xb6\xa9\xa4\xb3\xa0\x9a\xad\x92\x8e\xa4\x85\x82\x9b\x7e\ \x7c\x97\x84\x82\x9a\x98\x91\xa4\xa4\x9c\xab\xa6\x9e\xad\xa2\x9c\ \xab\xa5\x9e\xad\xa8\x9f\xaf\xa8\x9e\xae\xa3\x9a\xaa\x9d\x96\xa7\ \x9d\x97\xa8\x9e\x99\xaa\x00\x00\x00\xc8\xc2\xcd\xc7\xc1\xcc\xc8\ \xc2\xcd\xc9\xc4\xcf\xc8\xc3\xcf\xc8\xc4\xd0\xc7\xc4\xd0\xc5\xc3\ \xcf\xc5\xc3\xcf\xc6\xc4\xd0\xc9\xc7\xd3\xce\xc9\xd4\xd0\xcc\xd7\ \xd3\xd0\xda\xd5\xd1\xdc\xd8\xd5\xde\xd9\xd6\xdf\xdc\xd9\xe2\xde\ \xdb\xe4\xe1\xdd\xe6\xe3\xde\xe7\xe2\xde\xe6\xe3\xde\xe5\xe3\xdc\ \xe3\xe2\xdc\xe2\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xd9\xe0\ \xe1\xd9\xe0\xdf\xd7\xde\xdf\xd7\xdf\xe0\xd9\xdf\xe1\xda\xdf\xe0\ \xd9\xde\xdf\xd9\xde\xe1\xd9\xde\xe1\xd8\xde\xdf\xd8\xde\xe0\xd8\ \xdd\xe1\xd8\xde\xe0\xd8\xde\xe1\xd7\xde\xe1\xd8\xde\xe0\xd7\xdd\ \xe0\xd8\xdc\xe0\xd8\xdd\xe0\xd7\xdd\xdf\xd8\xdd\xe1\xd8\xde\xe0\ \xd8\xde\xdf\xd8\xde\xde\xd6\xdd\xde\xd7\xde\xde\xd7\xdf\xde\xd6\ \xe1\xe0\xd8\xe0\xdf\xd7\xe1\xde\xd6\xe0\xde\xd6\xe0\xde\xd6\xe0\ \xde\xd5\xe0\xdd\xd6\xe0\xdb\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xd8\ \xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd6\xd1\xda\xce\xc9\xd2\xc6\xbe\ \xc9\xb7\xaf\xbb\xa8\xa1\xb0\xa5\xa0\xb0\xa7\xa6\xb6\xaf\xaf\xbe\ \xbe\xbd\xcb\xcb\xca\xd5\xd4\xd3\xdd\xdb\xd8\xe2\xde\xda\xe5\xde\ \xda\xe4\xde\xdb\xe4\xdd\xda\xe3\xde\xda\xe3\xdd\xd8\xe1\xde\xd9\ \xe2\xdd\xd7\xe0\xd7\xd1\xdc\xd0\xca\xd5\xc9\xc3\xce\xc0\xb8\xc4\ \xb5\xac\xba\xaa\xa3\xb3\xa8\xa1\xb0\xa8\xa1\xb1\xa9\xa2\xb1\xa9\ \xa2\xb1\xa9\xa2\xb1\xa7\xa0\xaf\xa7\xa0\xaf\xa6\xa0\xaf\xa1\x9c\ \xab\x9f\x9a\xa9\x9f\x9a\xa9\x9f\x9a\xa9\x9e\x9a\xa8\x9f\x9b\xa7\ \xa1\x9a\xa7\xa4\x9d\xaa\xa5\x9e\xab\xa5\x9e\xab\xa5\x9e\xab\xa4\ \x9d\xab\xa3\x9d\xab\xa1\x9b\xaa\xa0\x9c\xab\xa0\x9b\xaa\x9e\x9b\ \xa9\x9d\x9a\xa9\x9d\x9a\xa9\x9b\x99\xaa\x99\x98\xa8\x97\x96\xa7\ \x96\x95\xa6\x96\x95\xa5\x98\x95\xa5\x99\x96\xa6\x99\x97\xa7\x9c\ \x95\xa7\x9b\x95\xa6\x9c\x96\xa7\x9d\x97\xa8\x9e\x98\xa9\x9e\x98\ \xa9\x9e\x9a\xaa\x9f\x9a\xab\x9f\x9a\xaa\xa1\x9b\xab\xa4\x9f\xad\ \xaa\xa6\xb3\xac\xa8\xb5\xaf\xaa\xb8\xb0\xab\xb9\xb0\xac\xba\xb1\ \xac\xba\xaa\xa5\xb5\xa0\x9a\xad\x93\x8e\xa3\x8c\x88\x9f\xa1\x99\ \xaa\xad\xa4\xb1\xab\xa1\xae\xab\xa2\xaf\xa8\x9f\xae\xa9\xa0\xaf\ \xaa\x9f\xb0\xaa\xa0\xb0\xa9\x9f\xaf\xa2\x9a\xaa\x9d\x96\xa7\x9e\ \x98\xa9\x00\x00\x00\xc8\xc2\xcd\xc7\xc1\xcc\xc7\xc1\xcc\xc9\xc3\ \xce\xc8\xc4\xcf\xc8\xc4\xd0\xc7\xc5\xd1\xc5\xc3\xcf\xc5\xc3\xcf\ \xc6\xc4\xd0\xcb\xc7\xd3\xcd\xc9\xd5\xd0\xcc\xd7\xd2\xce\xd9\xd4\ \xd0\xdb\xd6\xd2\xdd\xd9\xd5\xe0\xdc\xd9\xe2\xdd\xda\xe3\xe1\xdd\ \xe6\xe4\xdf\xe8\xe4\xdf\xe7\xe4\xdf\xe5\xe4\xde\xe5\xe4\xdd\xe4\ \xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdc\xe3\xe3\xdb\xe1\xe2\xdb\xe1\xe2\ \xdb\xe1\xe2\xda\xe0\xe2\xdb\xe0\xe3\xdc\xe1\xe2\xdb\xe0\xe2\xdb\ \xe0\xe3\xd8\xdf\xe2\xd8\xde\xe2\xd9\xde\xe3\xd9\xdf\xe3\xd9\xdf\ \xe2\xd8\xde\xe2\xd8\xdd\xe2\xd8\xde\xe2\xd8\xde\xe2\xd8\xde\xe2\ \xd8\xde\xe2\xd8\xde\xe3\xd8\xde\xe3\xd9\xde\xe3\xd9\xde\xe1\xd9\ \xde\xdf\xd8\xde\xdf\xd7\xde\xdf\xd8\xdf\xdf\xd8\xe0\xe0\xd9\xe0\ \xe0\xd8\xe1\xe0\xd8\xe1\xe0\xd8\xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdf\ \xd7\xe1\xdd\xd5\xdf\xdc\xd5\xde\xda\xd5\xde\xda\xd5\xde\xda\xd5\ \xde\xda\xd5\xde\xd8\xd3\xdc\xd4\xcf\xd8\xcb\xc5\xcf\xbf\xb8\xc3\ \xad\xa8\xb6\xa3\x9f\xb0\xa4\xa1\xb3\xa9\xa7\xb9\xb7\xb6\xc5\xc5\ \xc3\xd0\xd0\xd0\xda\xda\xd6\xe1\xde\xdb\xe4\xde\xdb\xe4\xde\xda\ \xe3\xdc\xd9\xe2\xdd\xd8\xe1\xdc\xd6\xe0\xda\xd5\xdf\xd9\xd4\xde\ \xd4\xcf\xda\xcd\xc7\xd2\xc7\xc0\xcb\xc0\xb8\xc3\xb5\xae\xbb\xac\ \xa5\xb2\xa9\xa2\xb0\xa8\xa1\xb0\xa9\xa2\xb0\xaa\xa3\xb1\xa9\xa2\ \xb1\xa9\xa2\xaf\xa9\xa2\xaf\xa7\xa0\xae\xa4\x9e\xac\xa1\x9b\xaa\ \xa1\x9b\xaa\xa1\x9b\xa9\xa0\x9b\xa9\xa1\x9b\xa8\xa2\x9b\xa8\xa4\ \x9d\xaa\xa4\x9d\xaa\xa5\x9e\xaa\xa4\x9d\xaa\xa3\x9c\xab\xa1\x9c\ \xab\x9f\x9a\xa9\x9f\x9b\xaa\x9f\x9c\xab\x9e\x9b\xaa\x9c\x99\xa9\ \x9a\x99\xa9\x99\x98\xa9\x97\x96\xa7\x94\x95\xa6\x94\x93\xa4\x94\ \x93\xa4\x95\x94\xa4\x98\x95\xa5\x99\x95\xa6\x9b\x96\xa7\x9c\x96\ \xa7\x9c\x97\xa8\x9c\x97\xa8\x9d\x98\xa9\x9e\x98\xa9\x9e\x99\xaa\ \x9f\x9a\xaa\xa0\x9a\xaa\xa1\x9c\xab\xa6\xa1\xaf\xae\xa7\xb5\xb2\ \xac\xb8\xb4\xae\xbb\xb7\xb0\xbd\xbb\xb4\xc0\xbe\xb8\xc3\xbc\xb7\ \xc2\xb6\xb0\xbd\xaa\xa3\xb2\xa3\x9b\xab\xad\xa4\xb1\xac\xa3\xaf\ \xab\xa1\xae\xa9\xa0\xad\xaa\xa1\xaf\xaa\xa1\xaf\xa8\x9e\xae\xa7\ \x9d\xad\xa9\x9f\xaf\xa9\x9f\xaf\xa3\x9a\xab\x9d\x97\xa8\x00\x00\ \x00\xc6\xc0\xcb\xc6\xc0\xcb\xc6\xc0\xcb\xc7\xc1\xcc\xc9\xc3\xce\ \xc9\xc4\xd0\xca\xc6\xd1\xc7\xc5\xd0\xc7\xc4\xd0\xc6\xc4\xd0\xca\ \xc6\xd2\xcd\xc9\xd4\xcf\xcb\xd6\xd1\xcd\xd8\xd2\xce\xd9\xd5\xd1\ \xdc\xd8\xd4\xdf\xdb\xd8\xe2\xdd\xda\xe3\xe1\xdd\xe6\xe4\xdf\xe7\ \xe4\xe0\xe7\xe5\xe0\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe5\xdf\xe5\xe5\ \xdf\xe4\xe6\xdf\xe4\xe4\xde\xe2\xe4\xdd\xe2\xe3\xdc\xe1\xe3\xdc\ \xe1\xe3\xdc\xe1\xe3\xdb\xe1\xe2\xdc\xe0\xe3\xdb\xe0\xe3\xd9\xdf\ \xe3\xd9\xdf\xe3\xd9\xdf\xe3\xda\xde\xe4\xda\xe0\xe3\xd9\xde\xe3\ \xda\xdd\xe3\xda\xde\xe2\xd9\xdd\xe2\xd8\xde\xe3\xd9\xdf\xe4\xda\ \xdf\xe4\xda\xe0\xe3\xda\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe1\xd8\xde\ \xdf\xd9\xdf\xe0\xd8\xe0\xdf\xd8\xdf\xe0\xd9\xe1\xe1\xda\xe0\xe1\ \xd9\xe1\xe0\xd8\xe2\xe0\xd8\xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdd\xd7\ \xe0\xdd\xd6\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\ \xda\xd5\xde\xd7\xd2\xdb\xd1\xcc\xd6\xc6\xc1\xcc\xb7\xb3\xc0\xa8\ \xa4\xb4\xa1\x9f\xb2\xa5\xa3\xb6\xb0\xae\xbf\xc0\xbc\xcb\xcc\xc9\ \xd5\xd7\xd3\xde\xdc\xd8\xe2\xdd\xda\xe3\xdc\xd9\xe2\xdb\xd6\xdf\ \xda\xd4\xde\xd7\xd1\xdd\xd7\xd1\xdc\xd4\xd0\xdb\xd0\xcc\xd7\xc9\ \xc4\xcf\xc3\xbd\xc8\xbc\xb5\xc1\xb4\xad\xba\xad\xa5\xb3\xa9\xa2\ \xb0\xab\xa2\xaf\xaa\xa3\xb0\xaa\xa2\xb0\xaa\xa3\xb0\xab\xa2\xaf\ \xa9\xa2\xaf\xa8\xa1\xae\xa6\x9f\xac\xa3\x9c\xab\xa3\x9d\xaa\xa2\ \x9c\xa8\xa2\x9c\xa8\xa2\x9b\xa8\xa3\x9c\xa9\xa4\x9d\xaa\xa4\x9d\ \xaa\xa3\x9d\xaa\xa1\x9c\xaa\xa1\x9c\xab\xa0\x9b\xaa\x9f\x9b\xaa\ \x9e\x9b\xaa\x9e\x9b\xab\x9e\x9b\xaa\x9c\x99\xa9\x98\x97\xa8\x96\ \x95\xa7\x94\x94\xa6\x93\x93\xa5\x91\x91\xa3\x92\x91\xa2\x94\x92\ \xa4\x96\x94\xa4\x99\x95\xa5\x9b\x95\xa6\x9c\x96\xa7\x9d\x97\xa8\ \x9c\x97\xa8\x9c\x97\xa9\x9c\x98\xa9\x9d\x99\xa9\x9d\x9a\xaa\x9f\ \x9b\xaa\xa1\x9c\xab\xa7\xa2\xb0\xb0\xa9\xb6\xb6\xaf\xbb\xba\xb4\ \xbf\xbe\xb9\xc3\xc4\xbf\xc8\xc8\xc2\xcc\xc9\xc3\xcc\xc6\xc0\xca\ \xb2\xa9\xb5\xaa\xa1\xae\xac\xa4\xb0\xac\xa3\xaf\xaa\xa1\xae\xa8\ \x9f\xac\xa8\x9e\xad\xa7\x9f\xac\xa7\x9d\xad\xa7\x9d\xad\xa7\x9d\ \xad\xa9\x9f\xae\xaa\xa1\xaf\xa1\x9a\xaa\x00\x00\x00\xc6\xc0\xcb\ \xc5\xbf\xca\xc6\xc1\xcb\xca\xc3\xce\xcb\xc5\xd0\xcc\xc6\xd1\xcb\ \xc7\xd2\xca\xc6\xd2\xcb\xc7\xd2\xcc\xc8\xd3\xcd\xc9\xd3\xcd\xc9\ \xd4\xcf\xcb\xd6\xd1\xcd\xd8\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd2\xdd\ \xda\xd7\xe0\xdd\xda\xe3\xe1\xdd\xe5\xe4\xdf\xe7\xe5\xe1\xe7\xe6\ \xe1\xe7\xe7\xe0\xe7\xe6\xe0\xe6\xe6\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ \xe5\xe6\xdf\xe4\xe6\xdf\xe4\xe4\xdd\xe2\xe5\xdc\xe2\xe5\xdc\xe1\ \xe5\xdb\xe1\xe4\xdc\xe1\xe6\xdc\xe2\xe5\xdb\xe1\xe4\xda\xe0\xe5\ \xdb\xe0\xe5\xda\xe1\xe5\xdc\xdf\xe6\xdd\xe0\xe5\xdc\xdf\xe4\xdb\ \xde\xe4\xdb\xde\xe4\xdb\xde\xe4\xdb\xdf\xe6\xdd\xe0\xe6\xdc\xe2\ \xe5\xdb\xe1\xe4\xda\xe1\xe4\xda\xe0\xe3\xd9\xdf\xe1\xda\xdf\xe0\ \xd9\xe0\xe0\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xd9\ \xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdf\xd7\xe2\xdf\xd8\xe0\xde\xd7\xe0\ \xdc\xd8\xe1\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\ \xd5\xde\xd5\xd1\xdb\xcd\xc9\xd4\xc2\xbe\xc9\xb3\xaf\xbe\xa5\xa3\ \xb5\xa4\xa2\xb5\xab\xa9\xbb\xb7\xb4\xc4\xc6\xc3\xcf\xd2\xce\xd9\ \xd8\xd4\xdf\xdb\xd8\xe2\xda\xd7\xe0\xd9\xd5\xde\xd8\xd2\xdc\xd5\ \xd0\xda\xd2\xcd\xd8\xd1\xcc\xd7\xcd\xc7\xd2\xc6\xc1\xcc\xbf\xb9\ \xc4\xb9\xb2\xbe\xb2\xab\xb8\xac\xa5\xb2\xab\xa3\xb0\xac\xa3\xb0\ \xab\xa2\xaf\xab\xa3\xaf\xab\xa2\xaf\xac\xa3\xaf\xab\xa2\xb0\xab\ \xa2\xaf\xa9\xa0\xad\xa6\x9f\xac\xa5\x9e\xab\xa4\x9d\xaa\xa4\x9d\ \xaa\xa4\x9d\xaa\xa4\x9d\xaa\xa3\x9c\xaa\xa3\x9d\xab\xa0\x9c\xab\ \xa0\x9b\xaa\x9f\x9b\xaa\x9e\x9a\xa9\x9d\x9a\xa9\x9c\x9a\xaa\x9a\ \x99\xa9\x9b\x9a\xaa\x98\x96\xa8\x95\x95\xa7\x92\x93\xa6\x8f\x90\ \xa3\x8d\x8f\xa2\x8e\x8f\xa1\x8f\x90\xa2\x91\x91\xa3\x95\x93\xa4\ \x98\x95\xa5\x9b\x96\xa7\x9c\x97\xa7\x9c\x96\xa7\x9d\x98\xa8\x9c\ \x98\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9a\xaa\xa0\x9a\xaa\xa1\x9c\ \xab\xa6\xa1\xb0\xaf\xaa\xb6\xb7\xb1\xbd\xbf\xb9\xc3\xc6\xbf\xc8\ \xcb\xc5\xce\xd0\xc8\xd2\xd0\xc9\xd2\xc9\xc1\xcb\xaf\xa6\xb2\xaa\ \xa1\xae\xab\xa1\xae\xac\xa3\xaf\xab\xa3\xaf\xa9\xa0\xad\xa7\x9d\ \xab\xa6\x9d\xac\xa8\x9e\xad\xa7\x9d\xad\xa6\x9c\xac\xa7\x9d\xad\ \xab\xa1\xb0\xa8\x9f\xae\x00\x00\x00\xc6\xc0\xcb\xc7\xc1\xcb\xc9\ \xc3\xcd\xcb\xc6\xcf\xcd\xc8\xd1\xcf\xc9\xd2\xce\xc9\xd4\xd0\xcd\ \xd7\xd2\xce\xd8\xd1\xcd\xd7\xd0\xcc\xd7\xd0\xcc\xd7\xd1\xcd\xd8\ \xd1\xcd\xd8\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd2\xdd\xd9\xd6\xdf\xdd\ \xda\xe3\xe1\xdd\xe5\xe4\xdf\xe6\xe6\xe1\xe7\xe7\xe1\xe8\xe8\xe1\ \xe8\xe8\xe1\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe8\xe1\xe5\ \xe8\xdf\xe5\xe8\xde\xe4\xe7\xdd\xe3\xe7\xdc\xe3\xe7\xdd\xe3\xe7\ \xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe6\xdd\xe2\xe6\xdd\ \xe0\xe7\xde\xe1\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\ \xe6\xdd\xe0\xe6\xdd\xe0\xe7\xdd\xe1\xe7\xdd\xe1\xe6\xdd\xe1\xe6\ \xdd\xdf\xe5\xdb\xdf\xe4\xda\xe0\xe3\xda\xdf\xe1\xda\xe0\xe1\xda\ \xe0\xe1\xda\xe1\xe0\xd9\xe0\xe1\xd9\xe2\xe1\xd9\xe3\xe0\xd8\xe2\ \xe1\xd9\xe3\xe0\xd8\xe2\xe1\xd8\xe3\xde\xd8\xe1\xdc\xd8\xe1\xdc\ \xd7\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd6\xdf\xd8\xd5\xdf\xd8\xd5\ \xdf\xd3\xcf\xda\xca\xc6\xd2\xbc\xb9\xc7\xaa\xa9\xba\xa1\x9f\xb3\ \xa6\xa4\xb7\xae\xab\xbc\xbd\xb9\xc8\xcb\xc7\xd2\xd3\xcf\xda\xd7\ \xd3\xdd\xd9\xd6\xdf\xd8\xd3\xdc\xd5\xd0\xd9\xd2\xcd\xd6\xcf\xca\ \xd3\xce\xc8\xd2\xc9\xc3\xce\xc2\xbc\xc7\xbc\xb5\xc0\xb7\xb0\xbb\ \xb0\xa9\xb5\xad\xa4\xb1\xac\xa4\xb0\xab\xa2\xb0\xac\xa3\xb0\xad\ \xa4\xb0\xad\xa4\xb0\xac\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\xab\xa3\ \xad\xa9\xa1\xac\xa7\xa0\xac\xa6\x9f\xab\xa5\x9e\xab\xa6\x9f\xac\ \xa5\x9e\xab\xa3\x9d\xab\xa1\x9c\xaa\x9d\x9a\xa9\x9b\x98\xa7\x9b\ \x98\xa8\x9b\x98\xa8\x9a\x97\xa7\x97\x97\xa8\x96\x96\xa8\x95\x96\ \xa6\x93\x93\xa6\x90\x91\xa4\x8d\x90\xa3\x8b\x8e\xa2\x87\x8c\x9f\ \x87\x8b\x9f\x8b\x8c\x9f\x90\x8f\xa2\x94\x92\xa3\x98\x94\xa4\x9c\ \x96\xa7\x9d\x97\xa7\x9d\x96\xa7\x9c\x97\xa8\x9d\x99\xa9\x9c\x99\ \xa9\x9d\x9a\xaa\x9f\x9b\xab\xa0\x9b\xab\xa3\x9e\xad\xa6\xa1\xaf\ \xb0\xa9\xb6\xb9\xb3\xbe\xc0\xbb\xc4\xc7\xc2\xcb\xcf\xc9\xd1\xd4\ \xcd\xd4\xd4\xcd\xd4\xc4\xbb\xc4\xad\xa3\xb0\xaa\xa0\xad\xa9\xa0\ \xad\xaa\xa2\xae\xab\xa2\xaf\xa9\xa0\xad\xa8\x9f\xac\xa4\x9a\xaa\ \xa6\x9d\xac\xa6\x9c\xac\xa3\x99\xa9\xa6\x9e\xad\xaa\xa0\xaf\xab\ \xa1\xb1\x00\x00\x00\xc9\xc3\xcd\xca\xc4\xcd\xcc\xc6\xcf\xd0\xc8\ \xd2\xd0\xcb\xd3\xd1\xcc\xd5\xd4\xd0\xd8\xd7\xd3\xdc\xd6\xd3\xdc\ \xd5\xd2\xdb\xd4\xd1\xda\xd3\xd0\xd9\xd3\xcf\xda\xd4\xd0\xda\xd4\ \xcf\xda\xd4\xd0\xdb\xd6\xd2\xdd\xd9\xd6\xdf\xde\xd9\xe2\xe2\xdd\ \xe4\xe4\xe0\xe6\xe6\xe0\xe6\xe7\xe0\xe7\xe9\xe2\xe8\xe8\xe2\xe7\ \xea\xe3\xe8\xe9\xe2\xe7\xe9\xe3\xe7\xea\xe1\xe6\xea\xe0\xe6\xe9\ \xdf\xe4\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xde\ \xe3\xe7\xdd\xe4\xe7\xdd\xe3\xe8\xde\xe2\xe7\xde\xe1\xe8\xde\xe1\ \xe9\xdf\xe2\xe9\xde\xe1\xe9\xde\xe1\xe9\xde\xe1\xe8\xde\xe1\xe8\ \xde\xe1\xe7\xdd\xe1\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\xe5\xdc\ \xe0\xe5\xdb\xe0\xe3\xda\xe0\xe2\xda\xe0\xe2\xda\xe1\xe1\xda\xe1\ \xe1\xda\xe1\xe1\xd9\xe2\xe0\xd8\xe2\xe1\xd9\xe3\xe0\xd9\xe3\xdf\ \xd9\xe3\xe0\xd9\xe2\xde\xda\xe2\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\ \xe0\xda\xd7\xe0\xd9\xd5\xdf\xd9\xd5\xe0\xd9\xd5\xe0\xd7\xd3\xdd\ \xd0\xcc\xd7\xc4\xc1\xce\xb4\xb2\xc2\xa4\xa2\xb6\xa1\x9f\xb3\xa7\ \xa4\xb7\xb3\xaf\xc0\xc2\xbe\xcb\xcb\xc8\xd3\xd2\xce\xd8\xd7\xd2\ \xdb\xd6\xd1\xda\xd3\xce\xd7\xcf\xca\xd3\xcc\xc5\xce\xc8\xc1\xcb\ \xc5\xbe\xc8\xc0\xb9\xc4\xbb\xb3\xbe\xb6\xae\xb9\xb0\xa9\xb4\xad\ \xa5\xb1\xab\xa4\xaf\xac\xa2\xaf\xad\xa4\xaf\xac\xa4\xaf\xad\xa3\ \xaf\xad\xa4\xaf\xad\xa3\xaf\xad\xa4\xaf\xac\xa3\xae\xab\xa4\xae\ \xab\xa3\xae\xab\xa2\xae\xa8\xa0\xae\xa6\x9f\xac\xa5\x9e\xac\xa2\ \x9c\xab\x9f\x9b\xaa\x9c\x99\xa9\x99\x96\xa6\x96\x95\xa5\x96\x95\ \xa6\x95\x94\xa5\x91\x91\xa5\x90\x91\xa4\x8e\x91\xa4\x8c\x90\xa3\ \x88\x8d\xa1\x83\x8a\x9f\x82\x89\x9e\x82\x88\x9c\x80\x86\x9b\x86\ \x89\x9d\x8d\x8d\xa0\x92\x90\xa2\x97\x94\xa4\x9a\x95\xa6\x9c\x96\ \xa6\x9c\x96\xa7\x9d\x97\xa8\x9d\x98\xa9\x9c\x99\xa9\x9d\x99\xaa\ \xa0\x9b\xab\xa3\x9d\xad\xa5\xa1\xae\xad\xa6\xb2\xb4\xae\xb9\xba\ \xb4\xbe\xc0\xbb\xc4\xc9\xc2\xcb\xcf\xc8\xd0\xd3\xcc\xd3\xd4\xcd\ \xd4\xc0\xb8\xc1\xaa\xa0\xad\xaa\xa2\xae\xa9\xa0\xad\xaa\xa0\xad\ \xaa\xa1\xae\xa9\xa1\xae\xa8\x9f\xac\xa3\x99\xa9\xa4\x9b\xab\xa4\ \x9b\xab\xa2\x98\xa9\xa7\x9d\xad\xaa\xa0\xaf\xac\xa3\xb0\x00\x00\ \x00\xcc\xc7\xd0\xcd\xc8\xd1\xd0\xc8\xd2\xd2\xcc\xd2\xd5\xce\xd6\ \xd6\xd1\xd8\xdb\xd7\xdd\xdc\xd8\xdf\xda\xd7\xdf\xd8\xd5\xdd\xd7\ \xd4\xdd\xd7\xd4\xdd\xd6\xd3\xdc\xd6\xd3\xdc\xd5\xd2\xdb\xd6\xd3\ \xdc\xd6\xd3\xdc\xdb\xd6\xdf\xde\xd9\xe2\xe1\xdc\xe4\xe3\xdf\xe5\ \xe6\xe0\xe6\xe7\xe0\xe7\xe9\xe3\xe8\xea\xe3\xe8\xeb\xe3\xe8\xea\ \xe3\xe8\xe9\xe3\xe7\xea\xe1\xe6\xea\xe0\xe7\xe9\xe0\xe3\xe8\xdf\ \xe3\xe8\xdf\xe3\xe8\xde\xe4\xe8\xde\xe4\xe8\xde\xe5\xe8\xde\xe4\ \xe8\xdf\xe2\xe8\xdf\xe2\xeb\xe0\xe3\xea\xdf\xe2\xea\xdf\xe2\xea\ \xdf\xe2\xea\xdf\xe1\xea\xdf\xe2\xea\xdf\xe2\xea\xdf\xe2\xe8\xdd\ \xe0\xe6\xdd\xe0\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdc\xe1\ \xe3\xd9\xdf\xe2\xdc\xe1\xe2\xdb\xe1\xe2\xdb\xe2\xe1\xda\xe2\xe0\ \xd8\xe2\xe2\xd9\xe3\xdf\xd9\xe3\xde\xd9\xe2\xdf\xda\xe3\xdf\xda\ \xe3\xde\xda\xe2\xde\xd9\xe2\xde\xd8\xe1\xda\xd7\xe1\xda\xd6\xe0\ \xd9\xd5\xe0\xda\xd6\xe1\xda\xd6\xe1\xd8\xd4\xdf\xd5\xd1\xdc\xcb\ \xc8\xd4\xbf\xbc\xca\xae\xac\xbc\xa4\xa0\xb4\xa5\xa0\xb4\xad\xa7\ \xb9\xb7\xb2\xc2\xc2\xbe\xca\xcd\xc7\xd2\xd2\xce\xd7\xd4\xcf\xd8\ \xd2\xcd\xd6\xcd\xc7\xd0\xc9\xc0\xca\xc3\xbb\xc5\xc0\xb8\xc2\xbd\ \xb5\xbf\xb8\xb0\xbb\xb3\xab\xb6\xaf\xa7\xb2\xac\xa4\xb0\xac\xa4\ \xaf\xad\xa3\xaf\xac\xa2\xae\xac\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\ \xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa4\xaf\xab\xa4\xaf\xac\ \xa2\xaf\xa9\xa2\xae\xa7\xa0\xad\xa5\x9f\xac\xa1\x9c\xaa\xa0\x9a\ \xa9\x9c\x99\xa9\x97\x96\xa5\x93\x92\xa4\x92\x92\xa5\x90\x90\xa3\ \x8a\x8d\xa0\x89\x8e\xa1\x88\x8d\xa1\x86\x8c\xa0\x7f\x88\x9e\x77\ \x83\x9b\x77\x82\x9b\x79\x82\x9a\x7d\x84\x9a\x83\x87\x9c\x8a\x8c\ \x9f\x91\x90\xa2\x96\x93\xa3\x99\x96\xa6\x9d\x96\xa7\x9c\x97\xa7\ \x9c\x97\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9f\x9a\xab\xa2\x9f\xae\xa3\ \x9f\xae\xa8\xa3\xb0\xb1\xaa\xb5\xb7\xb2\xbd\xbc\xb7\xc0\xc0\xbb\ \xc5\xc6\xc1\xca\xcf\xc8\xd0\xd4\xcd\xd4\xd5\xce\xd5\xbd\xb4\xbe\ \xa8\x9f\xac\xaa\xa1\xae\xaa\xa1\xae\xa9\xa0\xad\xab\xa1\xae\xab\ \xa2\xaf\xa8\x9f\xac\xa4\x9a\xaa\xa2\x99\xa9\xa3\x9a\xa9\xa2\x99\ \xa9\xa8\x9f\xae\xaa\xa1\xae\xab\xa2\xaf\x00\x00\x00\xcf\xca\xd3\ \xd0\xcb\xd4\xd2\xcd\xd4\xd6\xcf\xd6\xd8\xd2\xd9\xdb\xd7\xdd\xdf\ \xdb\xe1\xdf\xdc\xe2\xdd\xda\xe0\xdb\xd8\xe0\xdb\xd8\xe0\xdb\xd8\ \xe0\xd9\xd6\xdf\xd8\xd5\xde\xd7\xd4\xdd\xd7\xd4\xdd\xda\xd5\xde\ \xdb\xd6\xdf\xdd\xd8\xe0\xe0\xdc\xe2\xe4\xdc\xe4\xe5\xde\xe5\xe6\ \xdf\xe6\xe9\xe3\xe7\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe9\xea\xe2\ \xe8\xeb\xe2\xe7\xeb\xe1\xe7\xea\xe1\xe4\xea\xe1\xe4\xea\xe0\xe3\ \xe8\xdf\xe3\xe9\xdf\xe3\xe9\xe0\xe4\xe9\xe0\xe3\xe9\xe0\xe3\xea\ \xe0\xe3\xec\xe1\xe4\xeb\xe0\xe3\xea\xdf\xe2\xec\xe0\xe3\xeb\xe0\ \xe2\xeb\xe0\xe2\xea\xdf\xe1\xea\xdf\xe1\xea\xdf\xe2\xe8\xde\xe1\ \xe7\xdd\xe0\xe7\xde\xe1\xe7\xdd\xe1\xe6\xdc\xe1\xe4\xdc\xe2\xe3\ \xdc\xe2\xe4\xdc\xe2\xe3\xdc\xe3\xe1\xda\xe2\xe0\xda\xe3\xdf\xda\ \xe4\xdf\xda\xe3\xde\xd9\xe2\xde\xd9\xe2\xde\xda\xe3\xde\xd9\xe2\ \xdf\xda\xe3\xde\xda\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xdb\ \xd7\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd6\xd2\xdd\xd1\xce\xd9\xc6\xc4\ \xd0\xb7\xb4\xc3\xa9\xa6\xb7\xa4\xa0\xb3\xab\xa4\xb6\xb3\xab\xbb\ \xbb\xb5\xc3\xc5\xbe\xcb\xcc\xc6\xd1\xd1\xcb\xd5\xce\xc9\xd2\xca\ \xc3\xcd\xc4\xbd\xc6\xbd\xb4\xbf\xb7\xaf\xba\xb3\xab\xb6\xb0\xa8\ \xb3\xad\xa5\xb1\xac\xa3\xb0\xac\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\ \xac\xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xae\xad\xa3\xaf\xad\ \xa3\xaf\xad\xa3\xae\xac\xa3\xae\xac\xa3\xae\xab\xa3\xae\xaa\xa2\ \xaf\xa8\xa0\xad\xa6\x9f\xac\xa2\x9c\xab\x9f\x9a\xa9\x9b\x98\xa8\ \x96\x95\xa6\x92\x91\xa3\x90\x8f\xa3\x8c\x8d\xa0\x84\x89\x9e\x81\ \x87\x9c\x7f\x88\x9d\x7b\x85\x9c\x74\x82\x9b\x6c\x7c\x97\x6c\x7c\ \x96\x70\x7d\x96\x77\x80\x98\x7f\x85\x99\x87\x89\x9d\x8f\x8f\xa1\ \x95\x93\xa3\x99\x96\xa6\x9a\x97\xa7\x9b\x98\xa8\x9b\x98\xa8\x9b\ \x98\xa8\x9d\x9a\xaa\xa3\x9d\xad\xa4\xa0\xb0\xa3\x9f\xae\xaa\xa5\ \xb1\xb4\xae\xb9\xba\xb4\xbf\xbe\xb9\xc3\xc1\xbc\xc6\xc6\xc1\xca\ \xd0\xca\xd2\xd4\xcf\xd7\xd6\xcf\xd6\xb7\xae\xb9\xaa\xa1\xae\xa9\ \xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xab\xa1\xae\xac\xa2\xad\xa9\xa0\ \xac\xa4\x9b\xaa\xa1\x98\xa8\xa1\x99\xa9\xa2\x9a\xa9\xa8\x9e\xad\ \xaa\xa1\xae\xab\xa1\xae\x00\x00\x00\xd2\xce\xd6\xd3\xcf\xd6\xd5\ \xd1\xd7\xda\xd3\xda\xde\xd7\xde\xe0\xdb\xe1\xe2\xde\xe5\xe2\xde\ \xe4\xe1\xde\xe4\xe2\xdd\xe3\xe0\xdd\xe3\xde\xdb\xe2\xdc\xd9\xe2\ \xdb\xd8\xe1\xd9\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd6\xde\xdd\ \xd7\xdf\xdf\xd9\xe0\xe1\xdb\xe2\xe4\xdd\xe4\xe6\xdf\xe6\xe8\xe1\ \xe6\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xea\xe3\xe8\xeb\xe3\xe7\ \xec\xe2\xe8\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\xe4\xe9\xe0\xe3\xe9\ \xe0\xe3\xea\xe1\xe4\xea\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe3\xed\xe2\ \xe4\xec\xe1\xe3\xec\xe1\xe3\xed\xe1\xe3\xed\xe1\xe2\xed\xe0\xe2\ \xec\xe0\xe2\xeb\xe0\xe2\xea\xde\xe1\xe9\xde\xe1\xe9\xde\xe1\xe8\ \xdf\xe2\xe7\xde\xe1\xe7\xdd\xe2\xe5\xdd\xe2\xe4\xdd\xe2\xe4\xdc\ \xe3\xe2\xdc\xe2\xe1\xda\xe3\xe0\xda\xe3\xdf\xdb\xe3\xdf\xda\xe3\ \xdf\xda\xe3\xdf\xd9\xe3\xde\xdb\xe4\xdd\xd9\xe3\xde\xda\xe3\xde\ \xda\xe3\xdd\xd9\xe4\xdc\xd8\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xda\xd6\ \xe1\xd8\xd4\xdf\xd8\xd4\xdf\xd5\xd1\xdc\xce\xca\xd6\xc1\xbd\xca\ \xb3\xae\xbe\xa9\xa2\xb5\xab\xa3\xb4\xb2\xa9\xb9\xb8\xaf\xbd\xbf\ \xb8\xc5\xc8\xc2\xcd\xce\xc8\xd3\xd0\xc9\xd4\xcb\xc5\xcf\xc5\xbe\ \xc8\xbd\xb5\xc0\xb5\xad\xb8\xb0\xa8\xb3\xad\xa5\xb0\xac\xa4\xaf\ \xac\xa3\xaf\xac\xa3\xae\xac\xa3\xae\xad\xa2\xae\xab\xa1\xad\xac\ \xa2\xae\xad\xa3\xaf\xab\xa1\xad\xad\xa3\xaf\xac\xa2\xae\xac\xa2\ \xaf\xad\xa2\xae\xac\xa3\xaf\xab\xa2\xae\xab\xa3\xaf\xa9\xa1\xae\ \xa7\xa0\xad\xa3\x9d\xab\x9e\x9a\xa9\x9a\x97\xa7\x93\x93\xa5\x8f\ \x8f\xa2\x8b\x8c\xa0\x85\x8a\x9e\x7c\x84\x9b\x76\x81\x99\x72\x80\ \x98\x6e\x7e\x97\x67\x79\x95\x64\x77\x93\x63\x76\x91\x69\x79\x94\ \x72\x7d\x96\x7a\x81\x98\x85\x88\x9c\x8d\x8e\xa0\x93\x92\xa2\x97\ \x95\xa5\x99\x96\xa7\x99\x96\xa7\x9a\x97\xa8\x9b\x98\xa9\x9d\x9a\ \xaa\xa2\x9f\xae\xa4\xa0\xb0\xa3\xa1\xb0\xac\xa9\xb5\xb7\xb2\xbd\ \xbe\xb9\xc4\xc2\xbd\xc8\xc5\xc1\xcb\xc9\xc3\xce\xcf\xca\xd3\xd3\ \xcf\xd7\xd2\xcb\xd3\xb2\xa9\xb4\xa8\x9f\xac\xa8\x9f\xac\xa9\xa0\ \xad\xaa\xa1\xae\xaa\xa1\xae\xaa\xa1\xad\xa9\xa0\xad\xa6\x9d\xab\ \xa1\x99\xa8\x9e\x96\xa6\xa1\x9a\xa9\xa9\xa0\xad\xab\xa2\xaf\xab\ \xa2\xaf\x00\x00\x00\xd5\xd1\xd8\xd7\xd3\xd9\xd9\xd5\xdb\xdc\xd8\ \xde\xe0\xdc\xe2\xe3\xdf\xe5\xe5\xe1\xe6\xe6\xe2\xe7\xe6\xe2\xe7\ \xe6\xe2\xe8\xe5\xe1\xe7\xe3\xe0\xe5\xe0\xdd\xe5\xdd\xda\xe2\xda\ \xd5\xdf\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd5\xdd\xdd\xd6\xdd\xdf\xd8\ \xdf\xe0\xd9\xe0\xe2\xdc\xe2\xe5\xde\xe3\xe7\xe0\xe5\xe8\xe1\xe6\ \xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xeb\xe3\xe8\xeb\xe2\xe6\xeb\ \xe2\xe5\xea\xe1\xe4\xeb\xe2\xe5\xea\xe1\xe4\xeb\xe0\xe3\xeb\xe1\ \xe4\xeb\xe1\xe4\xec\xe0\xe4\xec\xe1\xe4\xec\xe1\xe3\xed\xe2\xe4\ \xee\xe2\xe4\xee\xe2\xe4\xee\xe2\xe2\xee\xe2\xe2\xee\xe1\xe2\xec\ \xdf\xe1\xec\xdf\xe1\xea\xdf\xe2\xea\xdf\xe2\xe9\xdf\xe2\xe8\xdf\ \xe1\xe7\xde\xe2\xe6\xdd\xe3\xe5\xde\xe3\xe4\xdd\xe3\xe3\xdc\xe3\ \xe1\xda\xe2\xe0\xda\xe3\xdf\xda\xe3\xe0\xdb\xe4\xdf\xda\xe3\xde\ \xda\xe3\xdd\xdb\xe3\xdd\xda\xe3\xdd\xdb\xe4\xdd\xda\xe5\xdd\xd9\ \xe4\xdc\xd8\xe3\xdd\xd9\xe4\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe1\ \xda\xd6\xe0\xd8\xd4\xdf\xd5\xd0\xdb\xca\xc5\xd1\xbc\xb8\xc5\xb1\ \xaa\xba\xad\xa4\xb4\xb2\xa8\xb7\xb8\xae\xbb\xbc\xb3\xc0\xc4\xbd\ \xc9\xcc\xc6\xd1\xd0\xca\xd5\xcf\xc9\xd4\xc8\xc2\xcd\xc1\xba\xc5\ \xb9\xb1\xbc\xb1\xa9\xb4\xad\xa4\xb0\xac\xa2\xae\xac\xa2\xae\xab\ \xa2\xad\xab\xa2\xad\xac\xa2\xae\xac\xa2\xae\xac\xa2\xae\xac\xa2\ \xae\xac\xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xaf\xac\xa3\xaf\ \xab\xa2\xae\xac\xa3\xaf\xaa\xa3\xae\xaa\xa1\xae\xa7\xa0\xad\xa4\ \x9d\xac\xa1\x9c\xab\x9a\x97\xa9\x93\x92\xa5\x8c\x8d\xa1\x86\x8a\ \x9f\x7e\x85\x9c\x75\x80\x99\x6c\x7b\x94\x66\x78\x92\x60\x75\x91\ \x5d\x72\x90\x5d\x73\x90\x5d\x72\x8f\x62\x73\x90\x6c\x78\x93\x76\ \x7e\x97\x81\x86\x9b\x88\x8a\x9d\x90\x8f\xa2\x93\x92\xa4\x94\x93\ \xa5\x95\x94\xa6\x97\x95\xa8\x9a\x97\xa8\x9d\x9a\xaa\xa2\x9f\xaf\ \xa4\xa1\xb1\xa5\xa2\xb1\xae\xab\xb7\xb9\xb5\xc1\xc2\xbe\xc9\xc6\ \xc2\xcd\xc9\xc5\xd0\xce\xc9\xd3\xd3\xce\xd7\xd4\xce\xd8\xcc\xc5\ \xcf\xac\xa3\xb0\xa7\x9e\xab\xa9\xa0\xad\xa8\x9f\xac\xaa\xa0\xad\ \xab\xa2\xaf\xaa\xa2\xae\xa9\xa0\xad\xa7\x9f\xab\xa1\x9a\xa9\x9d\ \x95\xa6\xa0\x99\xa9\xa9\xa0\xad\xab\xa2\xae\xab\xa2\xae\x00\x00\ \x00\xd9\xd5\xdb\xdb\xd7\xdd\xdd\xd9\xdf\xe0\xdc\xe2\xe3\xdf\xe4\ \xe5\xe1\xe6\xe8\xe4\xe9\xe9\xe5\xea\xea\xe6\xeb\xe9\xe5\xea\xe8\ \xe4\xea\xe6\xe2\xe8\xe3\xe0\xe6\xdd\xda\xe3\xdb\xd7\xe0\xd9\xd6\ \xde\xd9\xd5\xde\xdc\xd4\xdb\xdc\xd5\xdc\xdd\xd6\xdd\xdf\xd7\xde\ \xe0\xd9\xdf\xe3\xdc\xe1\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xe1\xe6\xea\ \xe3\xe8\xeb\xe4\xe9\xeb\xe3\xe7\xec\xe4\xe7\xeb\xe2\xe5\xec\xe3\ \xe6\xeb\xe2\xe5\xed\xe1\xe4\xeb\xe0\xe3\xeb\xe0\xe2\xeb\xdf\xe2\ \xec\xe1\xe2\xeb\xe0\xe2\xed\xe1\xe3\xee\xe3\xe3\xee\xe4\xe3\xf0\ \xe4\xe3\xef\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\xee\xe1\xe3\xec\xdf\ \xe1\xeb\xdf\xe1\xea\xde\xe0\xea\xdf\xe2\xea\xde\xe2\xe7\xde\xe1\ \xe6\xdd\xe2\xe5\xdc\xe1\xe3\xdc\xe2\xe4\xdc\xe3\xe2\xdb\xe2\xe1\ \xdb\xe3\xe0\xdb\xe4\xdf\xda\xe3\xe0\xdb\xe4\xde\xda\xe5\xdd\xda\ \xe4\xdd\xdb\xe3\xdd\xda\xe4\xde\xdb\xe4\xde\xda\xe5\xdd\xd9\xe4\ \xdd\xd9\xe4\xdb\xd8\xe2\xdb\xd7\xe1\xdd\xd8\xe1\xdb\xd7\xdf\xdc\ \xd7\xe0\xda\xd4\xde\xd3\xcd\xd8\xc7\xc2\xce\xba\xb5\xc3\xb2\xa9\ \xb9\xb2\xa8\xb6\xb7\xac\xb9\xbc\xb1\xbd\xc1\xb9\xc5\xc9\xc3\xce\ \xcf\xca\xd5\xd1\xcc\xd6\xcc\xc6\xd1\xc5\xbf\xca\xbc\xb5\xc0\xb5\ \xad\xb8\xad\xa4\xb0\xab\xa2\xae\xaa\xa0\xac\xac\xa2\xae\xab\xa1\ \xad\xac\xa2\xae\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xad\xa3\xaf\ \xad\xa3\xaf\xac\xa2\xae\xae\xa4\xb0\xad\xa3\xb0\xad\xa3\xaf\xab\ \xa1\xae\xac\xa3\xaf\xab\xa2\xaf\xa8\xa0\xad\xa6\x9e\xac\xa3\x9d\ \xab\x9d\x99\xa9\x95\x93\xa6\x8b\x8d\xa2\x82\x87\x9e\x7a\x81\x9a\ \x70\x7c\x96\x64\x75\x91\x5b\x70\x8e\x54\x6d\x8d\x52\x6c\x8c\x54\ \x6b\x8b\x55\x6b\x8b\x5b\x6d\x8c\x65\x72\x8e\x6e\x78\x92\x78\x80\ \x96\x81\x85\x99\x88\x89\x9d\x8d\x8e\xa0\x90\x90\xa2\x93\x92\xa4\ \x96\x94\xa7\x98\x95\xa8\x9b\x99\xa9\x9f\x9c\xac\xa4\xa1\xb0\xa6\ \xa3\xb3\xaf\xaa\xb8\xb9\xb6\xc2\xc4\xc0\xcb\xca\xc6\xd1\xcc\xc8\ \xd3\xd1\xce\xd7\xd7\xd2\xdb\xd8\xd3\xdc\xca\xc3\xcb\xaa\x9f\xad\ \xa7\x9e\xab\xa9\xa0\xad\xa8\x9f\xac\xaa\xa2\xae\xac\xa3\xaf\xab\ \xa2\xaf\xaa\xa2\xae\xa8\x9f\xac\xa3\x9a\xa9\x9e\x96\xa7\x9f\x98\ \xa7\xa6\x9d\xab\xa9\xa0\xad\xab\xa1\xae\x00\x00\x00\xdd\xd9\xdf\ \xdf\xdb\xe1\xe0\xdc\xe2\xe2\xde\xe4\xe4\xe0\xe5\xe7\xe3\xe8\xe9\ \xe5\xea\xea\xe6\xeb\xeb\xe7\xec\xeb\xe7\xec\xe9\xe5\xea\xe8\xe4\ \xe9\xe3\xdf\xe5\xdc\xda\xe2\xdb\xd6\xdf\xd9\xd5\xde\xd9\xd4\xdd\ \xdb\xd4\xdb\xdb\xd4\xdb\xdd\xd6\xdd\xde\xd7\xde\xe0\xd8\xde\xe1\ \xda\xdf\xe3\xdc\xe1\xe6\xdf\xe4\xe7\xe0\xe5\xe9\xe2\xe7\xeb\xe3\ \xe8\xed\xe4\xe7\xec\xe3\xe6\xec\xe2\xe5\xec\xe3\xe6\xed\xe2\xe5\ \xeb\xe0\xe3\xec\xe1\xe2\xeb\xe0\xe2\xec\xdf\xe1\xed\xe0\xe2\xed\ \xe0\xe2\xee\xe1\xe3\xef\xe2\xe3\xef\xe3\xe3\xef\xe4\xe4\xef\xe3\ \xe3\xef\xe3\xe3\xef\xe3\xe3\xef\xe2\xe3\xec\xe0\xe1\xec\xdf\xe1\ \xeb\xdf\xe1\xea\xde\xe1\xe9\xde\xe1\xe7\xdd\xe0\xe6\xdc\xe1\xe5\ \xdc\xe2\xe3\xdc\xe2\xe3\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe3\xe1\xdc\ \xe4\xe0\xdb\xe4\xe0\xda\xe3\xde\xdb\xe3\xde\xda\xe4\xde\xda\xe3\ \xde\xdb\xe4\xdf\xdb\xe5\xde\xda\xe5\xdd\xd9\xe4\xdd\xda\xe3\xdd\ \xd9\xe2\xdd\xd8\xe1\xdc\xd7\xe0\xdd\xd8\xe1\xdc\xd8\xe1\xdc\xd8\ \xe0\xd8\xd3\xdd\xce\xca\xd5\xc4\xbf\xcb\xb9\xb3\xc0\xb4\xab\xb8\ \xb7\xac\xb8\xbd\xb1\xbd\xc0\xb6\xc2\xc6\xbf\xca\xce\xc8\xd3\xd1\ \xcb\xd6\xcf\xc9\xd4\xc9\xc3\xce\xbf\xba\xc5\xb9\xb0\xbc\xb0\xa7\ \xb2\xab\xa1\xad\xaa\xa1\xad\xab\xa1\xad\xab\xa1\xad\xac\xa2\xae\ \xac\xa2\xae\xab\xa1\xad\xac\xa2\xae\xad\xa3\xaf\xad\xa3\xaf\xad\ \xa3\xaf\xad\xa3\xaf\xac\xa2\xae\xad\xa3\xae\xac\xa2\xaf\xab\xa2\ \xae\xaa\xa1\xae\xa9\xa0\xad\xa7\x9f\xac\xa4\x9e\xac\x9d\x99\xaa\ \x96\x94\xa8\x8c\x8d\xa2\x81\x86\x9e\x77\x80\x9b\x6c\x79\x95\x61\ \x73\x92\x56\x6c\x8c\x4d\x68\x89\x4b\x65\x88\x4b\x66\x87\x4f\x66\ \x86\x54\x68\x88\x5d\x6b\x89\x67\x72\x8d\x70\x78\x91\x77\x7e\x95\ \x7f\x84\x98\x86\x89\x9c\x8b\x8d\xa0\x90\x91\xa3\x94\x94\xa6\x97\ \x96\xa8\x9a\x98\xa9\x9d\x9a\xab\xa2\x9f\xae\xa5\xa1\xb1\xa9\xa6\ \xb5\xb3\xb1\xbf\xbf\xbd\xc9\xc8\xc4\xcf\xce\xca\xd5\xd3\xd0\xd9\ \xd9\xd4\xdd\xda\xd5\xde\xca\xc2\xcb\xa9\x9e\xab\xa7\x9d\xac\xa9\ \xa0\xad\xa9\x9f\xac\xa9\xa0\xad\xac\xa2\xaf\xab\xa2\xae\xaa\xa1\ \xae\xa7\x9e\xab\xa3\x9a\xa9\x9e\x96\xa7\x9e\x97\xa6\xa4\x9b\xaa\ \xa8\x9f\xac\xaa\xa1\xae\x00\x00\x00\xdf\xdb\xe1\xe1\xdd\xe3\xe2\ \xde\xe4\xe2\xde\xe4\xe4\xe0\xe5\xe8\xe4\xe9\xea\xe6\xeb\xeb\xe7\ \xec\xeb\xe7\xec\xeb\xe7\xec\xe9\xe5\xea\xe5\xe2\xe8\xe1\xdd\xe4\ \xda\xd7\xe0\xd9\xd6\xdf\xd9\xd4\xdd\xd8\xd3\xdc\xd8\xd2\xdb\xdb\ \xd3\xda\xdc\xd5\xdc\xdd\xd6\xdc\xde\xd7\xdc\xdf\xd8\xdd\xe2\xdb\ \xe0\xe4\xdd\xe2\xe7\xdf\xe4\xe9\xe1\xe4\xec\xe3\xe6\xed\xe4\xe7\ \xec\xe3\xe6\xec\xe2\xe5\xed\xe2\xe5\xec\xe1\xe3\xeb\xe0\xe2\xec\ \xe1\xe3\xed\xe0\xe2\xec\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\ \xe3\xee\xe2\xe2\xee\xe2\xe2\xee\xe3\xe3\xee\xe2\xe2\xee\xe2\xe2\ \xee\xe2\xe2\xee\xe2\xe2\xec\xe0\xe0\xec\xdf\xe1\xeb\xde\xe0\xea\ \xde\xe0\xe9\xdd\xdf\xe7\xdd\xe0\xe5\xdc\xe0\xe4\xdb\xe1\xe2\xdb\ \xe0\xe2\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xdb\xe3\xe0\xdb\xe4\ \xdf\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xdf\xdb\xe4\xdf\ \xdb\xe4\xdf\xda\xe4\xde\xd9\xe3\xde\xda\xe3\xdd\xd8\xe1\xdd\xd9\ \xe2\xdd\xd8\xe1\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd6\xe0\ \xd5\xd1\xdb\xcc\xc8\xd4\xc2\xbb\xc8\xb9\xb1\xbe\xb6\xac\xb9\xbb\ \xb0\xbb\xbf\xb4\xbf\xc3\xbb\xc6\xcb\xc4\xcf\xce\xc9\xd4\xcf\xc9\ \xd4\xcd\xc7\xd2\xc6\xc0\xcb\xbc\xb6\xc1\xb5\xad\xb8\xad\xa5\xb0\ \xab\xa2\xad\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xac\ \xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xae\xac\xa2\xae\xac\xa2\ \xae\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xb0\xab\xa3\xaf\xab\xa1\xaf\ \xaa\xa1\xae\xa7\x9f\xad\xa4\x9d\xac\x9e\x9a\xa9\x99\x96\xa8\x90\ \x90\xa5\x86\x89\xa1\x78\x80\x9b\x6b\x78\x95\x5f\x70\x90\x53\x6a\ \x8b\x4a\x64\x87\x46\x61\x85\x45\x60\x83\x49\x60\x82\x4c\x61\x82\ \x55\x65\x84\x5f\x6c\x88\x69\x73\x8d\x72\x7a\x91\x7b\x81\x96\x82\ \x87\x9a\x89\x8c\x9f\x8f\x90\xa2\x94\x94\xa6\x98\x96\xa8\x9a\x99\ \xa9\x9e\x9b\xab\xa0\x9d\xad\xa1\x9e\xae\xa3\xa0\xb0\xab\xa8\xb7\ \xb8\xb6\xc4\xc3\xc1\xcd\xcd\xc9\xd4\xd3\xcf\xd9\xd7\xd4\xdd\xdb\ \xd6\xdf\xcb\xc5\xcd\xa8\x9e\xac\xa5\x9b\xaa\xa7\x9e\xac\xa9\xa0\ \xac\xa8\x9f\xac\xaa\xa1\xae\xab\xa1\xad\xab\xa2\xae\xa8\x9f\xac\ \xa5\x9c\xaa\x9f\x97\xa7\x9d\x95\xa5\xa2\x99\xa9\xa7\x9d\xac\xaa\ \xa0\xad\x00\x00\x00\xe0\xdc\xe2\xe2\xde\xe4\xe3\xdf\xe5\xe4\xe0\ \xe5\xe5\xe1\xe6\xe9\xe5\xea\xea\xe6\xeb\xec\xe8\xed\xeb\xe7\xec\ \xea\xe6\xeb\xe7\xe3\xe9\xe4\xe0\xe6\xe0\xdc\xe2\xdc\xd7\xe0\xd9\ \xd5\xde\xd8\xd3\xdc\xd7\xd2\xdb\xd7\xd1\xda\xd9\xd3\xd9\xda\xd3\ \xda\xdb\xd4\xdb\xdd\xd6\xdc\xde\xd7\xdc\xe1\xda\xdf\xe4\xdb\xe0\ \xe7\xde\xe1\xe9\xe0\xe3\xeb\xe2\xe5\xed\xe4\xe7\xec\xe3\xe6\xed\ \xe3\xe6\xed\xe2\xe5\xec\xe1\xe3\xec\xe0\xe2\xed\xdf\xe1\xed\xe0\ \xe2\xed\xe0\xe2\xec\xdf\xe1\xed\xe0\xe2\xed\xe0\xe1\xed\xe1\xe1\ \xed\xe1\xe1\xee\xe2\xe2\xed\xe1\xe1\xed\xe1\xe1\xec\xe0\xe1\xed\ \xe1\xe1\xec\xe0\xe0\xeb\xdf\xdf\xeb\xde\xe0\xe9\xdc\xde\xe8\xdc\ \xdf\xe6\xdb\xde\xe3\xda\xde\xe3\xd9\xe0\xe1\xda\xe0\xe2\xda\xe0\ \xe2\xda\xe1\xe2\xdb\xe1\xe1\xda\xe2\xe0\xdc\xe5\xe1\xdc\xe5\xe0\ \xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdf\xdb\xe4\xe0\xdb\xe4\xde\xd9\ \xe2\xde\xda\xe3\xde\xda\xe3\xdf\xd9\xe2\xdf\xd8\xe2\xde\xd7\xe1\ \xdc\xd8\xe1\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe1\xda\xd5\xdf\xd5\ \xcf\xda\xca\xc5\xd0\xbf\xb7\xc4\xb8\xae\xbb\xbb\xaf\xba\xbe\xb2\ \xbc\xc1\xb6\xc1\xc7\xbf\xca\xcc\xc5\xd0\xcd\xc7\xd2\xcd\xc7\xd2\ \xca\xc4\xcf\xc3\xbd\xc8\xbd\xb5\xc0\xb6\xae\xb9\xb0\xa8\xb3\xac\ \xa3\xae\xab\xa2\xae\xab\xa2\xae\xac\xa2\xae\xad\xa3\xaf\xad\xa3\ \xaf\xad\xa2\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa2\xae\xad\xa3\xaf\ \xad\xa3\xaf\xad\xa3\xaf\xac\xa4\xb0\xac\xa3\xaf\xab\xa2\xaf\xa8\ \xa0\xad\xa4\x9e\xad\xa0\x9b\xab\x9b\x98\xa8\x93\x92\xa6\x8b\x8d\ \xa4\x7a\x80\x9c\x6b\x77\x95\x5f\x6f\x90\x52\x67\x8a\x48\x61\x85\ \x44\x5e\x82\x43\x5d\x81\x44\x5d\x7f\x47\x5c\x7e\x50\x61\x80\x5c\ \x69\x85\x66\x70\x8b\x70\x78\x91\x7a\x81\x96\x82\x87\x9b\x8a\x8d\ \xa0\x91\x91\xa4\x95\x95\xa7\x99\x97\xa9\x9d\x9a\xaa\x9e\x9b\xab\ \xa0\x9d\xad\xa1\x9e\xae\xa1\x9e\xae\xa5\xa2\xb2\xb1\xae\xbd\xbe\ \xbc\xc9\xca\xc7\xd2\xd2\xce\xd9\xd7\xd4\xdd\xdb\xd7\xdf\xd0\xc9\ \xd1\xab\xa0\xad\xa5\x9a\xa9\xa6\x9c\xab\xa7\x9e\xac\xa8\xa0\xad\ \xaa\xa0\xad\xaa\xa2\xae\xab\xa3\xae\xa9\xa0\xac\xa7\x9e\xac\xa0\ \x99\xa7\x9d\x95\xa6\x9f\x97\xa7\xa7\x9d\xab\xa9\xa1\xad\x00\x00\ \x00\xe0\xdc\xe2\xe1\xdd\xe2\xe2\xde\xe3\xe4\xe0\xe5\xe7\xe3\xe8\ \xe9\xe5\xea\xec\xe8\xed\xec\xe8\xed\xeb\xe7\xec\xe8\xe4\xe9\xe6\ \xe2\xe7\xe2\xde\xe4\xdf\xdb\xe2\xdb\xd7\xe0\xd6\xd3\xdc\xd6\xd1\ \xda\xd5\xd0\xd9\xd5\xd0\xd9\xd7\xd1\xd9\xd9\xd2\xd9\xda\xd3\xda\ \xdc\xd5\xda\xdf\xd6\xdc\xe1\xd8\xdc\xe3\xda\xdd\xe6\xdd\xdf\xe8\ \xde\xe1\xeb\xe0\xe3\xec\xe2\xe5\xed\xe2\xe5\xec\xe1\xe4\xec\xe1\ \xe3\xeb\xe0\xe2\xed\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xec\xdf\xe1\ \xec\xe0\xe1\xec\xe0\xe1\xec\xe0\xe1\xeb\xdf\xe0\xec\xe0\xe1\xec\ \xe0\xe1\xed\xe0\xe1\xec\xe0\xe0\xec\xe0\xe0\xed\xdf\xe0\xec\xdf\ \xdf\xec\xdd\xdf\xe9\xdd\xde\xe9\xdc\xde\xe7\xdb\xdd\xe5\xd9\xdc\ \xe2\xd8\xdb\xe1\xd7\xdd\xe0\xd8\xde\xdf\xd7\xde\xdf\xd9\xe0\xe0\ \xd9\xe0\xe1\xda\xe1\xe1\xdb\xe4\xe1\xdb\xe4\xe2\xdc\xe4\xe1\xdb\ \xe3\xe1\xdb\xe3\xe0\xda\xe3\xdf\xd9\xe2\xe0\xd9\xe2\xe0\xd9\xe1\ \xe1\xd9\xe2\xe0\xd9\xe1\xe0\xd8\xe0\xe0\xd8\xe0\xdf\xd8\xe1\xde\ \xd9\xe2\xdd\xd9\xe2\xde\xd9\xe2\xdc\xd8\xe1\xd9\xd4\xde\xd2\xcc\ \xd7\xc7\xc1\xcc\xbb\xb3\xc0\xb7\xac\xb8\xb8\xad\xb8\xbb\xaf\xba\ \xbf\xb5\xc1\xc6\xbe\xc9\xcc\xc4\xcf\xcd\xc7\xd2\xcd\xc7\xd2\xc9\ \xc3\xce\xc6\xbe\xc9\xc1\xb9\xc4\xbb\xb3\xbe\xb5\xad\xb8\xb0\xa8\ \xb3\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa3\xae\ \xad\xa3\xaf\xad\xa3\xaf\xad\xa2\xae\xad\xa2\xae\xac\xa2\xae\xac\ \xa3\xaf\xab\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\xaa\xa2\xaf\xa7\xa0\ \xae\xa4\x9e\xad\x9f\x9b\xab\x97\x95\xa7\x8d\x8d\xa3\x7c\x81\x9c\ \x6d\x76\x95\x60\x6f\x8f\x55\x67\x8a\x4c\x62\x86\x44\x5d\x81\x42\ \x5a\x7e\x42\x58\x7c\x46\x5a\x7d\x50\x60\x80\x5c\x67\x84\x68\x71\ \x8c\x72\x79\x91\x7c\x81\x96\x84\x88\x9d\x8c\x8f\xa2\x93\x94\xa5\ \x97\x96\xa8\x9c\x9a\xaa\x9f\x9c\xac\xa1\x9e\xae\xa1\x9e\xae\xa2\ \x9f\xaf\xa3\xa0\xb0\xa2\x9f\xaf\xa3\x9d\xae\xb4\xb0\xc0\xc6\xc4\ \xd0\xd0\xcd\xd7\xd6\xd3\xdd\xdb\xd6\xdf\xd4\xce\xd7\xaf\xa5\xb1\ \xa6\x9c\xab\xa6\x9c\xab\xa8\x9e\xac\xaa\xa1\xad\xaa\xa1\xae\xaa\ \xa2\xae\xaa\xa2\xad\xa8\xa0\xac\xa8\x9f\xac\xa4\x9c\xaa\x9d\x95\ \xa6\x9d\x95\xa6\xa4\x9b\xaa\xa8\x9f\xac\x00\x00\x00\xdd\xda\xe0\ \xdf\xdb\xe1\xdf\xdb\xe2\xe4\xe0\xe5\xe8\xe4\xe9\xeb\xe7\xec\xed\ \xe9\xee\xec\xe8\xed\xea\xe6\xeb\xe8\xe4\xe9\xe5\xe1\xe7\xe2\xde\ \xe4\xdd\xd9\xe1\xd9\xd4\xdd\xd5\xd0\xd9\xd4\xcf\xd8\xd4\xcf\xd8\ \xd4\xcf\xd8\xd6\xcf\xd8\xd7\xd0\xd7\xd9\xd2\xd8\xdc\xd4\xda\xde\ \xd4\xd9\xdf\xd6\xd9\xe2\xd8\xda\xe5\xda\xdc\xe7\xdc\xdf\xe9\xde\ \xe1\xea\xdf\xe1\xeb\xe0\xe2\xeb\xe0\xe2\xec\xe0\xe2\xec\xe0\xe2\ \xec\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xec\ \xdf\xe1\xeb\xde\xe1\xeb\xdf\xe1\xec\xdf\xe1\xed\xdf\xe2\xec\xdf\ \xe1\xeb\xde\xe0\xeb\xdf\xdf\xeb\xdf\xdf\xec\xde\xdf\xea\xde\xde\ \xe9\xdc\xde\xe8\xdb\xdd\xe6\xd9\xdc\xe3\xd9\xdc\xe2\xd7\xdc\xdf\ \xd6\xdc\xde\xd6\xdd\xde\xd7\xde\xde\xd7\xde\xdf\xd8\xdf\xe1\xd9\ \xe1\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\xe2\xdc\xe2\xe2\xda\xe2\ \xe1\xd9\xe1\xe1\xd9\xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\ \xd9\xe0\xe0\xda\xe0\xe0\xd9\xe0\xe1\xd9\xe0\xe0\xd9\xe1\xde\xd8\ \xe1\xde\xd9\xe2\xdd\xd8\xe1\xda\xd5\xde\xd5\xcf\xda\xca\xc4\xcf\ \xbd\xb5\xc2\xb3\xa9\xb6\xb0\xa6\xb2\xb4\xa7\xb2\xb7\xab\xb7\xbf\ \xb6\xc2\xca\xc2\xcd\xce\xc8\xd3\xd0\xca\xd5\xcf\xc9\xd3\xcd\xc6\ \xd1\xc9\xc2\xcd\xc5\xbe\xc9\xbf\xb8\xc3\xb9\xb1\xbc\xb3\xaa\xb6\ \xaf\xa6\xb1\xad\xa4\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\ \xa3\xaf\xac\xa2\xae\xad\xa3\xaf\xac\xa3\xae\xac\xa3\xaf\xab\xa3\ \xae\xab\xa3\xae\xac\xa3\xaf\xab\xa2\xaf\xa9\xa1\xaf\xa6\xa0\xaf\ \xa0\x9c\xab\x98\x95\xa7\x8b\x8c\xa1\x7d\x81\x9c\x6f\x78\x95\x63\ \x6f\x8f\x57\x66\x89\x4d\x61\x86\x47\x5c\x81\x44\x5a\x7e\x45\x59\ \x7c\x4a\x5c\x7d\x55\x62\x81\x60\x6b\x87\x6d\x74\x8f\x77\x7d\x95\ \x82\x86\x9b\x8b\x8e\xa1\x92\x93\xa5\x98\x97\xa9\x9b\x9a\xaa\xa0\ \x9d\xac\xa1\x9e\xae\xa2\x9f\xaf\xa3\x9f\xae\xa3\xa0\xaf\xa2\x9f\ \xb0\xa4\xa0\xaf\xa1\x9b\xac\xa3\x9d\xae\xc0\xbd\xcb\xcf\xcc\xd6\ \xd6\xd2\xdb\xda\xd6\xdf\xd8\xd3\xda\xb5\xaa\xb6\xa6\x9d\xaa\xa6\ \x9d\xab\xa7\x9e\xab\xaa\xa1\xae\xaa\xa1\xad\xaa\xa2\xae\xaa\xa1\ \xad\xa9\xa1\xac\xa9\xa0\xad\xa7\x9e\xab\x9f\x97\xa7\x9c\x94\xa5\ \xa1\x98\xa8\xa8\x9f\xad\x00\x00\x00\xda\xd6\xdc\xdb\xd8\xde\xde\ \xda\xe0\xe3\xdf\xe4\xe6\xe2\xe7\xe9\xe5\xea\xec\xe7\xec\xeb\xe8\ \xed\xea\xe6\xeb\xe7\xe3\xe8\xe3\xdf\xe5\xdf\xdb\xe1\xdb\xd6\xdd\ \xd7\xd2\xdb\xd3\xce\xd7\xd3\xce\xd7\xd4\xcf\xd8\xd4\xcf\xd8\xd6\ \xce\xd8\xd7\xd0\xd7\xd8\xd0\xd7\xdb\xd2\xd7\xdc\xd3\xd7\xdf\xd4\ \xd7\xe0\xd4\xd6\xe3\xd6\xd8\xe6\xd9\xdb\xe7\xdb\xdd\xe9\xdc\xde\ \xe9\xde\xe0\xeb\xde\xe0\xeb\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xec\ \xdf\xe1\xeb\xde\xe0\xeb\xdf\xe0\xec\xdf\xe0\xeb\xdf\xe1\xeb\xdf\ \xe0\xeb\xdf\xe0\xec\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xeb\xde\xe0\ \xea\xdd\xdf\xea\xde\xde\xea\xde\xde\xe9\xdd\xdd\xe8\xdb\xdd\xe7\ \xd9\xdc\xe5\xd9\xdb\xe3\xd8\xdb\xe1\xd7\xdb\xde\xd4\xdc\xdd\xd5\ \xdc\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd7\xde\xdf\xd8\xdf\xe1\xda\xe1\ \xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe0\ \xda\xe0\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe1\xe1\xda\ \xe1\xe1\xda\xe0\xe0\xd9\xe0\xe0\xd9\xe0\xde\xd7\xe0\xdd\xd7\xe0\ \xda\xd5\xde\xd8\xd3\xdc\xd4\xce\xd8\xcb\xc5\xd0\xbd\xb6\xc2\xb0\ \xa7\xb4\xaa\x9e\xaa\xaa\x9c\xa8\xae\xa1\xad\xb8\xae\xba\xc5\xbd\ \xc8\xcd\xc7\xd2\xd1\xcb\xd6\xd3\xcd\xd7\xd3\xcd\xd8\xd0\xca\xd5\ \xcc\xc6\xd1\xc7\xc1\xcc\xc3\xbb\xc6\xbd\xb4\xbf\xb6\xad\xb8\xb2\ \xa8\xb4\xaf\xa5\xb1\xad\xa4\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\ \xaf\xac\xa3\xaf\xac\xa2\xaf\xac\xa2\xae\xab\xa4\xaf\xac\xa4\xaf\ \xab\xa2\xaf\xab\xa1\xae\xa8\xa0\xae\xa4\x9e\xad\x9d\x98\xa9\x95\ \x92\xa5\x8a\x8a\xa1\x7d\x81\x9b\x72\x79\x95\x68\x72\x90\x5d\x6a\ \x8b\x54\x63\x87\x4d\x5e\x83\x4b\x5c\x80\x4c\x5c\x7f\x53\x61\x82\ \x5d\x68\x86\x69\x71\x8d\x75\x7a\x94\x80\x83\x9a\x89\x8c\xa0\x92\ \x92\xa6\x98\x97\xa9\x9c\x9b\xab\x9f\x9d\xad\xa1\x9e\xae\xa2\x9f\ \xaf\xa2\x9f\xae\xa3\xa0\xaf\xa3\xa1\xaf\xa4\xa0\xaf\xa6\xa1\xb0\ \xa4\x9e\xae\xa0\x9a\xab\xab\xa6\xb7\xce\xca\xd4\xd6\xd2\xdb\xdb\ \xd7\xde\xdd\xd6\xdd\xbe\xb3\xbd\xa6\x9d\xab\xa4\x9b\xaa\xa5\x9c\ \xab\xa9\xa0\xad\xab\xa2\xae\xa9\xa0\xad\xaa\xa1\xad\xa9\xa0\xad\ \xaa\xa1\xae\xa8\x9f\xac\xa3\x9b\xaa\x9c\x95\xa4\x9d\x96\xa6\xa5\ \x9c\xab\x00\x00\x00\xd5\xd2\xd8\xd8\xd4\xda\xdb\xd7\xdd\xe0\xdc\ \xe1\xe5\xdf\xe4\xe9\xe2\xe7\xea\xe4\xe9\xeb\xe5\xea\xe9\xe4\xe9\ \xe7\xe2\xe7\xe2\xde\xe4\xdd\xd8\xdf\xd8\xd3\xdb\xd4\xcf\xd8\xd2\ \xcd\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd3\xcd\xd7\xd5\xce\xd7\xd5\xce\ \xd5\xd7\xd0\xd5\xd8\xd0\xd5\xdb\xd1\xd4\xdd\xd2\xd4\xdf\xd2\xd4\ \xe0\xd3\xd5\xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\xdd\xe8\ \xdb\xdd\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xeb\xde\xe0\xec\xde\ \xe1\xeb\xdf\xdf\xeb\xdf\xdf\xec\xdf\xe0\xeb\xde\xe0\xec\xdf\xe1\ \xec\xdf\xe1\xec\xde\xe1\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\xde\xe9\ \xdd\xde\xe8\xdc\xdc\xe8\xdc\xdd\xe7\xdb\xdc\xe6\xda\xdb\xe3\xd8\ \xda\xe1\xd7\xda\xde\xd4\xdb\xdd\xd5\xda\xdb\xd4\xda\xdb\xd4\xdb\ \xdd\xd5\xdd\xdd\xd6\xdd\xdf\xd7\xde\xe0\xd8\xdf\xe1\xd9\xe0\xe2\ \xda\xe1\xe1\xda\xe2\xe1\xda\xe1\xe1\xd9\xe0\xe2\xd9\xe0\xe2\xda\ \xe1\xe3\xda\xe2\xe2\xda\xe2\xe2\xda\xe1\xe3\xda\xe2\xe2\xdb\xe1\ \xe1\xd9\xe0\xe0\xd7\xde\xde\xd6\xdd\xdc\xd4\xdd\xda\xd3\xdd\xd7\ \xd1\xda\xd2\xcd\xd6\xca\xc5\xcf\xc0\xb8\xc4\xb1\xa8\xb4\xa3\x97\ \xa5\x9d\x91\x9f\xa4\x97\xa6\xaf\xa6\xb3\xbc\xb3\xc0\xc7\xc1\xcc\ \xd0\xca\xd5\xd4\xce\xd9\xd7\xd3\xdc\xd7\xd2\xdb\xd3\xcd\xd8\xcf\ \xca\xd4\xcb\xc5\xcf\xc6\xc0\xc9\xc1\xb9\xc3\xbc\xb4\xbe\xb6\xae\ \xb7\xb1\xa8\xb3\xb0\xa6\xb2\xaf\xa5\xb1\xae\xa4\xb0\xae\xa4\xb0\ \xae\xa4\xb0\xac\xa4\xb0\xac\xa3\xb0\xac\xa2\xb0\xaa\xa2\xaf\xa9\ \xa0\xad\xa5\x9f\xad\xa0\x9b\xab\x98\x96\xa7\x91\x90\xa4\x89\x8b\ \x9f\x80\x83\x9b\x78\x7d\x97\x6e\x76\x93\x68\x70\x8e\x61\x6b\x8b\ \x59\x65\x86\x57\x63\x83\x59\x64\x84\x5e\x68\x87\x66\x6e\x8b\x71\ \x78\x93\x7e\x81\x9a\x89\x8b\xa1\x91\x92\xa6\x97\x96\xaa\x9c\x9b\ \xac\x9e\x9d\xae\xa2\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xb0\xa5\xa1\xb0\ \xa5\xa0\xb1\xa6\xa1\xb1\xa6\xa1\xb0\xa7\xa2\xb1\xa5\xa1\xb0\xa0\ \x9a\xab\x9f\x99\xaa\xb4\xb0\xbf\xd5\xd1\xda\xde\xd7\xde\xe0\xda\ \xe0\xc8\xbf\xc8\xaa\xa0\xad\xa5\x9c\xaa\xa4\x9a\xaa\xa7\x9e\xab\ \xab\xa2\xaf\xaa\xa1\xae\xaa\xa1\xae\xa9\xa1\xad\xaa\xa1\xae\xaa\ \xa1\xae\xa6\x9d\xaa\x9e\x96\xa5\x9c\x94\xa5\xa1\x99\xa9\x00\x00\ \x00\xd0\xcd\xd3\xd4\xd0\xd6\xd7\xd3\xd9\xdc\xd8\xdd\xe0\xdb\xe1\ \xe4\xde\xe3\xe5\xe0\xe5\xe8\xe2\xe7\xe8\xe2\xe7\xe6\xe0\xe5\xe2\ \xdb\xe1\xdc\xd5\xdc\xd7\xd0\xd8\xd5\xce\xd7\xd4\xcd\xd6\xd3\xcd\ \xd6\xd3\xcd\xd5\xd4\xcd\xd6\xd5\xcd\xd6\xd5\xcd\xd4\xd7\xcf\xd4\ \xd7\xce\xd3\xd9\xce\xd2\xdb\xce\xd1\xdc\xcf\xd1\xdd\xd0\xd1\xe0\ \xd2\xd3\xe2\xd4\xd5\xe3\xd6\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\ \xdd\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xeb\xde\xe0\xea\xdf\xdf\ \xeb\xde\xdf\xec\xdf\xdf\xeb\xdf\xe0\xed\xe0\xe1\xed\xe0\xe2\xec\ \xdf\xe1\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\xde\xe8\xdc\xdd\xe9\xdd\ \xdd\xe8\xdb\xdc\xe7\xda\xdc\xe5\xd8\xda\xe2\xd7\xda\xe1\xd6\xd9\ \xde\xd4\xda\xdc\xd3\xd9\xdb\xd3\xda\xdb\xd4\xdb\xdd\xd6\xdd\xdd\ \xd6\xdd\xdf\xd7\xde\xe0\xd8\xdf\xe1\xda\xdf\xe1\xda\xe0\xe1\xda\ \xe1\xe2\xd9\xe0\xe2\xda\xe1\xe1\xd9\xe0\xe2\xda\xe1\xe2\xda\xe2\ \xe3\xdb\xe1\xe3\xdb\xe2\xe3\xdb\xe2\xe3\xdb\xe1\xe1\xd9\xe0\xdf\ \xd7\xde\xdd\xd6\xdd\xdc\xd5\xdb\xd9\xd2\xdb\xd6\xce\xd8\xd1\xc9\ \xd3\xc9\xc2\xcd\xc0\xb9\xc4\xb2\xa9\xb5\xa1\x97\xa6\x93\x8a\x9b\ \x96\x8c\x9d\xa4\x9a\xab\xb1\xaa\xb9\xbd\xb8\xc5\xc9\xc5\xd0\xd3\ \xcf\xd9\xda\xd6\xdf\xdb\xd6\xdf\xd8\xd3\xdc\xd6\xd1\xda\xd3\xce\ \xd7\xcf\xca\xd3\xca\xc4\xcd\xc7\xbf\xc8\xc2\xbb\xc3\xbd\xb5\xbe\ \xb9\xb0\xba\xb5\xac\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xaf\xa5\xb1\xad\ \xa4\xb0\xad\xa3\xb0\xab\xa2\xaf\xa9\xa1\xae\xa6\x9f\xac\xa2\x9c\ \xab\x9c\x98\xa8\x96\x95\xa6\x90\x90\xa2\x8a\x8a\x9f\x83\x85\x9c\ \x7e\x81\x99\x79\x7c\x97\x74\x77\x94\x6e\x73\x91\x69\x6f\x8d\x64\ \x6c\x8a\x64\x6d\x8b\x69\x70\x8d\x71\x76\x93\x7c\x80\x99\x87\x88\ \xa0\x91\x91\xa6\x98\x96\xa9\x9b\x99\xac\x9e\x9c\xae\xa1\x9e\xae\ \xa2\x9f\xaf\xa3\xa0\xb0\xa4\xa1\xb0\xa6\xa1\xb0\xa7\xa2\xb1\xa6\ \xa2\xb1\xa7\xa2\xb1\xa6\xa1\xb0\xa6\xa1\xb0\xa4\x9f\xae\x9f\x99\ \xaa\x9f\x9a\xab\xbb\xb7\xc6\xdc\xd6\xde\xe2\xda\xe1\xd4\xcb\xd3\ \xac\xa1\xae\xa7\x9e\xac\xa6\x9d\xab\xa7\x9d\xab\xa9\xa0\xad\xa9\ \xa0\xad\xa9\xa0\xad\xa9\xa0\xad\xa9\xa0\xad\xaa\xa2\xae\xa8\x9f\ \xac\xa1\x9a\xa8\x9c\x94\xa5\x9f\x97\xa8\x00\x00\x00\xcb\xc6\xce\ \xce\xca\xd0\xd2\xcf\xd4\xd7\xd3\xd9\xdc\xd7\xdd\xe0\xda\xdf\xe3\ \xdc\xe2\xe5\xdf\xe4\xe6\xe0\xe5\xe4\xde\xe4\xe0\xd9\xe0\xdc\xd4\ \xdb\xd7\xd0\xd7\xd5\xce\xd5\xd5\xce\xd4\xd4\xce\xd4\xd4\xcc\xd4\ \xd4\xcd\xd4\xd4\xce\xd4\xd5\xcd\xd3\xd6\xcd\xd3\xd7\xcd\xd0\xd8\ \xcc\xcf\xd9\xcb\xcd\xd9\xcb\xcd\xdb\xcd\xce\xdb\xcd\xce\xdd\xcf\ \xd0\xe0\xd2\xd3\xe2\xd5\xd6\xe4\xd7\xd9\xe6\xd9\xdb\xe9\xdc\xde\ \xe9\xdc\xde\xe9\xdc\xde\xea\xdd\xdd\xeb\xdd\xde\xeb\xde\xdf\xeb\ \xdf\xe0\xec\xdf\xe0\xed\xe0\xe1\xed\xe1\xe1\xec\xe0\xe1\xec\xdf\ \xe0\xea\xde\xde\xe9\xdd\xdd\xe9\xdd\xdd\xe8\xdb\xdc\xe7\xda\xdc\ \xe6\xd9\xdb\xe4\xd8\xda\xe2\xd7\xd9\xe0\xd5\xd8\xdd\xd3\xd9\xdc\ \xd3\xd9\xdb\xd3\xda\xdc\xd4\xdb\xdd\xd6\xdd\xdd\xd5\xdc\xdf\xd7\ \xde\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xdf\xe2\xda\xe0\xe2\xd9\xe1\ \xe2\xda\xe1\xe1\xd9\xe0\xe2\xda\xe1\xe2\xda\xe1\xe3\xdb\xe2\xe4\ \xdc\xe2\xe4\xdd\xe2\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xd9\xdf\xde\xd6\ \xdd\xdc\xd4\xdb\xd7\xd0\xd8\xd2\xca\xd4\xcc\xc4\xce\xc7\xbf\xca\ \xc0\xb9\xc4\xb2\xaa\xb7\xa3\x9b\xaa\x94\x8e\x9f\x90\x89\x9c\x99\ \x93\xa6\xa9\xa2\xb3\xb6\xb1\xbf\xc3\xbf\xcb\xcf\xcb\xd6\xd7\xd3\ \xdd\xdb\xd8\xe1\xdd\xd8\xe1\xdc\xd6\xdf\xd9\xd4\xdd\xd6\xd1\xda\ \xd1\xcc\xd5\xce\xc7\xd1\xcb\xc4\xcd\xc8\xc0\xc7\xc4\xbc\xc4\xc1\ \xb7\xc2\xbd\xb3\xbe\xb9\xb0\xba\xb5\xac\xb6\xb3\xa9\xb4\xae\xa5\ \xb2\xac\xa3\xb0\xa8\xa1\xae\xa5\x9e\xac\xa1\x9a\xaa\x9b\x97\xa8\ \x97\x95\xa5\x92\x90\xa3\x8d\x8d\xa0\x88\x89\x9d\x84\x86\x9c\x81\ \x83\x9b\x80\x81\x9a\x7c\x7d\x97\x76\x79\x94\x71\x75\x91\x71\x76\ \x92\x73\x78\x94\x79\x7e\x97\x83\x87\x9e\x8e\x8e\xa3\x96\x95\xa8\ \x9a\x98\xab\x9d\x9a\xad\x9f\x9c\xae\xa2\x9f\xaf\xa3\xa0\xb0\xa3\ \xa0\xb0\xa4\xa1\xb1\xa6\xa1\xb0\xa8\xa3\xb1\xa8\xa2\xb1\xa7\xa3\ \xb2\xa5\xa1\xb0\xa3\x9e\xad\xa8\xa3\xb1\xa4\x9f\xae\xa0\x9a\xab\ \xa0\x9a\xac\xba\xb7\xc6\xe1\xdb\xe1\xde\xd7\xdc\xb0\xa6\xb3\xa8\ \x9f\xac\xa8\x9f\xac\xa8\x9e\xab\xa6\x9d\xab\xa7\x9e\xab\xa8\x9f\ \xac\xa9\xa0\xad\xa9\xa0\xae\xa9\xa0\xad\xa9\xa0\xad\xa6\x9d\xaa\ \x9c\x94\xa5\x9c\x94\xa5\x00\x00\x00\xc5\xc1\xc9\xc9\xc4\xcb\xcf\ \xc8\xcf\xd3\xcc\xd3\xd5\xd1\xd7\xda\xd4\xdb\xdf\xd8\xdf\xe2\xdb\ \xe2\xe3\xdc\xe3\xe2\xdc\xe1\xdf\xd8\xde\xdc\xd4\xd9\xd9\xd1\xd7\ \xd7\xce\xd3\xd7\xcd\xd2\xd6\xcd\xd2\xd6\xcd\xd2\xd6\xcd\xd1\xd6\ \xcc\xd1\xd5\xcb\xd1\xd6\xcb\xd1\xd6\xca\xce\xd6\xc9\xcd\xd6\xc8\ \xca\xd7\xc9\xca\xd7\xc9\xca\xda\xca\xcb\xda\xcc\xcd\xdc\xce\xd0\ \xe0\xd2\xd3\xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe7\xda\xdc\xe8\ \xda\xdc\xe9\xdc\xdc\xe9\xdb\xdc\xeb\xdd\xde\xeb\xde\xde\xec\xde\ \xdf\xed\xdf\xe0\xed\xdf\xe1\xec\xdf\xe0\xea\xde\xde\xe9\xdd\xdd\ \xe9\xdd\xdd\xe8\xda\xdb\xe7\xdb\xdc\xe7\xda\xdb\xe6\xd9\xdb\xe3\ \xd7\xd9\xe1\xd6\xd8\xe0\xd5\xd8\xdd\xd3\xda\xdc\xd4\xda\xdb\xd3\ \xda\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd5\xdc\xde\xd6\xdd\xdf\xd8\xdd\ \xe0\xd9\xde\xe1\xda\xdf\xe2\xdb\xe0\xe2\xda\xdf\xe2\xda\xe0\xe2\ \xda\xe1\xe2\xdb\xe2\xe3\xda\xe1\xe3\xdb\xe2\xe4\xdd\xe1\xe4\xdc\ \xe2\xe3\xdc\xe1\xe3\xdc\xe1\xe1\xda\xdf\xdd\xd6\xdc\xd9\xd1\xd8\ \xd4\xcb\xd5\xcd\xc5\xcf\xc9\xc1\xcb\xc4\xbc\xc7\xbe\xb7\xc1\xb6\ \xaf\xbb\xae\xa8\xb5\xa1\x9c\xac\x98\x93\xa6\x9a\x95\xa8\xa5\x9f\ \xb2\xb1\xac\xbb\xbc\xb8\xc6\xc8\xc4\xd0\xd2\xce\xd9\xd9\xd5\xe0\ \xdd\xda\xe3\xdd\xda\xe3\xdb\xd8\xe1\xda\xd6\xdf\xd8\xd3\xdc\xd4\ \xcf\xd8\xd1\xca\xd4\xcf\xc7\xd0\xcc\xc5\xcb\xc9\xc1\xc8\xc6\xbd\ \xc5\xc1\xb8\xc0\xbb\xb2\xbc\xb5\xac\xb6\xb1\xa7\xb3\xad\xa4\xb0\ \xa8\xa1\xae\xa5\x9e\xad\xa1\x9c\xab\x9d\x98\xa9\x98\x96\xa6\x95\ \x92\xa5\x91\x8f\xa3\x8e\x8d\xa1\x8d\x8d\xa1\x8d\x8c\xa0\x8c\x8a\ \x9f\x88\x87\x9d\x82\x82\x9b\x7c\x7f\x97\x7b\x7f\x98\x7d\x81\x99\ \x81\x85\x9c\x8a\x8c\xa1\x93\x92\xa6\x98\x97\xab\x9b\x99\xac\x9e\ \x9b\xae\xa0\x9d\xae\xa1\x9e\xaf\xa3\xa0\xb0\xa4\xa1\xb1\xa3\xa0\ \xb0\xa7\xa3\xb1\xa7\xa2\xb1\xa7\xa3\xb1\xa4\xa0\xaf\xa5\xa2\xb1\ \xab\xa7\xb4\xab\xa7\xb3\xac\xa8\xb3\xa6\xa1\xaf\xa3\x9e\xad\xa0\ \x9b\xab\xbc\xb8\xc5\xde\xd8\xde\xbb\xb1\xbb\xa6\x9d\xac\xa9\xa0\ \xae\xa9\xa0\xad\xa8\x9f\xac\xa8\x9f\xac\xa6\x9d\xaa\xa8\x9f\xac\ \xa8\xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xa7\x9e\xab\x9f\x98\xa7\x9b\ \x94\xa4\x00\x00\x00\xc1\xbc\xc5\xc3\xbd\xc5\xc7\xc3\xca\xcd\xc6\ \xce\xd0\xcc\xd3\xd4\xd0\xd6\xda\xd4\xdb\xdf\xd8\xdf\xe0\xd9\xe0\ \xdf\xd9\xde\xdd\xd5\xda\xdd\xd4\xd9\xdc\xd2\xd6\xdb\xd0\xd4\xd8\ \xce\xd1\xd7\xcc\xd0\xd7\xcc\xd0\xd7\xcd\xd0\xd6\xcc\xd0\xd5\xcb\ \xcf\xd6\xca\xce\xd5\xc9\xcc\xd5\xc7\xc9\xd4\xc6\xc8\xd5\xc5\xc8\ \xd6\xc6\xc8\xd8\xc7\xca\xd7\xc9\xcb\xda\xcc\xcd\xdd\xcf\xd1\xdf\ \xd2\xd4\xe1\xd4\xd6\xe3\xd6\xd8\xe5\xd8\xda\xe6\xda\xdb\xe8\xda\ \xdb\xe9\xdb\xdc\xe9\xdc\xdc\xeb\xdd\xdc\xeb\xdd\xdd\xec\xde\xde\ \xec\xde\xdf\xeb\xdd\xde\xea\xdc\xdd\xea\xdd\xdd\xe9\xdc\xdc\xe7\ \xdc\xdc\xe7\xdb\xdc\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd7\xd9\xe1\xd6\ \xd9\xe0\xd6\xd9\xde\xd4\xd9\xdc\xd5\xda\xdd\xd5\xdb\xdc\xd5\xdc\ \xde\xd6\xdd\xde\xd6\xdd\xdf\xd7\xdd\xe0\xd9\xde\xe1\xda\xdf\xe1\ \xda\xdf\xe2\xdb\xe0\xe2\xdb\xe0\xe3\xdb\xe1\xe2\xdb\xe2\xe2\xdb\ \xe2\xe3\xdc\xe3\xe4\xdc\xe3\xe3\xdc\xe2\xe3\xdc\xe1\xe4\xdd\xe2\ \xe3\xdc\xe1\xe2\xdb\xe0\xdf\xd8\xdd\xda\xd2\xd9\xd4\xcc\xd4\xce\ \xc6\xd0\xca\xc1\xcb\xc4\xbc\xc7\xc2\xba\xc4\xbf\xb8\xc3\xb9\xb4\ \xc1\xb0\xac\xbb\xa4\xa0\xb2\x9e\x9a\xae\xa3\x9f\xb1\xad\xa7\xb8\ \xb3\xaf\xbe\xbe\xba\xc8\xca\xc7\xd2\xd5\xd1\xdc\xdc\xd8\xe2\xde\ \xdb\xe4\xde\xdb\xe4\xdc\xd9\xe2\xdc\xd8\xe1\xd9\xd4\xdd\xd7\xd2\ \xdb\xd5\xd0\xd8\xd3\xcc\xd3\xcf\xc8\xcf\xcb\xc3\xca\xc5\xbc\xc4\ \xbe\xb6\xbf\xb8\xaf\xb9\xb2\xa9\xb4\xad\xa4\xb1\xa9\xa1\xaf\xa6\ \x9f\xad\xa3\x9d\xac\x9f\x9a\xaa\x9c\x98\xa8\x98\x96\xa7\x98\x94\ \xa7\x98\x95\xa6\x99\x95\xa7\x9a\x96\xa8\x98\x94\xa6\x94\x91\xa4\ \x8e\x8d\xa1\x89\x89\x9f\x85\x87\x9d\x86\x89\x9e\x89\x8b\xa0\x90\ \x90\xa4\x96\x96\xa9\x9a\x98\xab\x9c\x9a\xac\x9f\x9c\xae\xa1\x9e\ \xaf\xa2\x9f\xaf\xa4\xa1\xb1\xa4\xa0\xb0\xa5\xa1\xb1\xa7\xa1\xb0\ \xa7\xa2\xb1\xa5\xa1\xb0\x9f\x9d\xac\x99\x98\xa8\xa1\x9e\xae\xa7\ \xa2\xb1\xa6\xa1\xb0\xa4\x9f\xae\xa2\x9d\xad\xa3\x9e\xae\xa3\x9e\ \xae\xba\xb6\xc2\xbf\xb9\xc3\xa6\x9d\xad\xa9\xa0\xae\xa9\xa0\xad\ \xa8\x9f\xac\xa8\x9e\xac\xa6\x9d\xaa\xa5\x9c\xac\xa8\xa0\xae\xa9\ \xa0\xae\xaa\xa1\xae\xa9\xa0\xad\xa3\x9a\xa9\x9c\x94\xa5\x00\x00\ \x00\xbe\xb7\xc1\xc0\xb8\xc1\xc2\xbb\xc4\xc7\xbf\xc9\xcc\xc6\xcf\ \xd0\xcb\xd3\xd5\xd0\xd7\xd9\xd2\xda\xdc\xd5\xdb\xdc\xd4\xda\xdd\ \xd4\xd9\xde\xd5\xd8\xdf\xd4\xd7\xde\xd2\xd4\xdb\xce\xd1\xd9\xcc\ \xce\xd9\xcc\xcf\xd8\xcc\xce\xd8\xca\xcd\xd6\xca\xcd\xd5\xc9\xcc\ \xd4\xc7\xca\xd3\xc5\xc7\xd3\xc3\xc6\xd3\xc2\xc5\xd4\xc4\xc6\xd6\ \xc5\xc8\xd7\xc8\xca\xd9\xca\xcc\xda\xcc\xce\xdd\xcf\xd1\xe0\xd2\ \xd3\xe1\xd4\xd6\xe3\xd5\xd7\xe5\xd8\xd9\xe6\xd9\xd9\xe8\xda\xdb\ \xe8\xdb\xda\xeb\xdc\xda\xec\xdd\xdb\xea\xde\xdc\xeb\xdd\xde\xea\ \xdc\xdd\xea\xdc\xdc\xe9\xdd\xdd\xe9\xdc\xdc\xe8\xdc\xdc\xe8\xdb\ \xdc\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd8\xda\xe3\xd8\xdb\xe0\xd6\xd9\ \xdf\xd5\xdb\xdd\xd6\xdb\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdd\xde\ \xd6\xdd\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xde\xe1\xda\ \xdf\xe2\xdb\xe0\xe3\xdb\xe2\xe2\xdb\xe2\xe3\xdb\xe2\xe3\xdb\xe2\ \xe4\xdb\xe2\xe3\xdb\xe2\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdc\xe1\xe2\ \xdb\xe0\xdf\xd8\xdd\xda\xd2\xd9\xd6\xce\xd5\xd1\xc8\xd2\xcf\xc6\ \xd0\xcb\xc3\xcd\xc8\xc1\xcc\xc6\xc0\xca\xc0\xbc\xc8\xba\xb6\xc3\ \xb0\xad\xbd\xa8\xa3\xb5\xa5\xa1\xb3\xaa\xa6\xb6\xad\xa8\xb8\xb4\ \xb0\xc0\xc1\xbf\xcc\xd0\xcc\xd7\xd8\xd4\xdf\xdc\xd9\xe2\xdc\xd9\ \xe2\xde\xdb\xe4\xde\xdb\xe4\xde\xda\xe3\xde\xd9\xe1\xdc\xd7\xdf\ \xd8\xd3\xda\xd5\xcd\xd5\xcd\xc6\xcd\xc8\xc0\xc9\xc1\xb8\xc2\xba\ \xb1\xbb\xb3\xab\xb6\xae\xa5\xb2\xaa\xa2\xaf\xa7\xa0\xad\xa5\x9f\ \xad\xa2\x9d\xac\xa0\x9b\xab\x9f\x9a\xaa\xa0\x9b\xab\x9f\x9a\xab\ \xa1\x9c\xab\xa1\x9c\xac\xa0\x9b\xab\x9b\x97\xa8\x96\x93\xa6\x93\ \x91\xa5\x90\x90\xa3\x90\x8f\xa3\x90\x91\xa4\x95\x94\xa7\x99\x98\ \xab\x9c\x9a\xad\x9f\x9c\xac\xa0\x9d\xae\xa1\x9e\xae\xa2\x9f\xaf\ \xa4\xa1\xb1\xa4\xa1\xb0\xa5\xa1\xb0\xa6\xa2\xb1\xa5\xa1\xb0\x9f\ \x9d\xad\x97\x96\xa6\x8c\x8c\x9e\x81\x85\x98\x91\x91\xa3\xa9\xa2\ \xb1\xa5\x9e\xad\x9f\x99\xaa\xa0\x9a\xab\xa0\x9b\xab\xa1\x9c\xac\ \xa7\xa1\xaf\xa5\x9d\xac\xa7\x9f\xac\xa8\xa0\xad\xa7\x9e\xac\xa5\ \x9d\xab\xa5\x9d\xab\xa3\x9c\xab\xa5\x9e\xac\xaa\xa1\xae\xa9\xa1\ \xae\xaa\xa1\xae\xa6\x9e\xac\x9d\x96\xa6\x00\x00\x00\xbd\xb5\xbf\ \xbe\xb6\xc0\xc0\xb8\xc2\xc3\xbc\xc4\xc7\xc0\xc9\xcc\xc5\xcf\xcf\ \xc9\xd1\xd4\xcd\xd4\xd7\xd0\xd6\xda\xd1\xd7\xdd\xd3\xd6\xdf\xd4\ \xd7\xe0\xd5\xd7\xe0\xd3\xd5\xdf\xd1\xd2\xdb\xce\xcf\xdb\xcd\xce\ \xd9\xcb\xcc\xd7\xc9\xcb\xd7\xca\xcc\xd4\xc7\xca\xd4\xc6\xc8\xd2\ \xc4\xc6\xd1\xc1\xc3\xd1\xc1\xc3\xd3\xc2\xc5\xd5\xc4\xc6\xd6\xc7\ \xc9\xd7\xc9\xcb\xd9\xca\xcc\xdb\xcd\xcf\xdc\xce\xd0\xdf\xd1\xd2\ \xe2\xd4\xd5\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd8\xd8\xe9\xd8\xd9\xe9\ \xda\xd9\xe9\xdb\xd9\xea\xdb\xda\xe9\xdb\xdc\xea\xdb\xdc\xe8\xdb\ \xdc\xe8\xdc\xdd\xe9\xdd\xdd\xe8\xdc\xdc\xe7\xda\xdc\xe6\xdb\xdc\ \xe5\xda\xdc\xe4\xd9\xdc\xe3\xd8\xdc\xe1\xd8\xdb\xe0\xd7\xdc\xde\ \xd8\xdd\xdf\xd8\xdd\xde\xd7\xdc\xe0\xd9\xde\xdf\xd8\xdf\xe0\xd8\ \xe0\xe1\xda\xde\xe1\xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\ \xe3\xdb\xe2\xe2\xdb\xe1\xe2\xda\xe1\xe2\xda\xe1\xe3\xda\xe2\xe1\ \xda\xe0\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe1\xda\xdf\xdf\xd7\ \xdd\xdc\xd5\xdb\xd9\xd1\xd8\xd6\xce\xd5\xd3\xcb\xd5\xcf\xc7\xd1\ \xcc\xc4\xcf\xca\xc3\xce\xc9\xc3\xcf\xc4\xc0\xcb\xbe\xb9\xc7\xb6\ \xb3\xc2\xad\xaa\xba\xa8\xa4\xb5\xa7\xa2\xb3\xab\xa7\xb7\xb8\xb6\ \xc4\xc7\xc5\xd1\xd3\xcf\xda\xd8\xd5\xdf\xdc\xd9\xe2\xde\xdb\xe4\ \xdf\xdc\xe5\xe0\xdc\xe5\xe1\xdc\xe5\xdf\xda\xe1\xdb\xd7\xdd\xd5\ \xcf\xd6\xcf\xc9\xd0\xc9\xc1\xca\xc0\xb8\xc2\xb9\xb1\xbc\xb2\xaa\ \xb5\xad\xa4\xb1\xac\xa3\xb0\xa8\xa0\xad\xa7\xa0\xae\xa7\xa0\xae\ \xa5\x9e\xae\xa4\x9e\xad\xa5\x9f\xad\xa7\xa0\xae\xa5\x9e\xae\xa6\ \x9f\xae\xa5\x9f\xae\xa1\x9c\xab\x9d\x99\xa9\x9a\x97\xa9\x98\x95\ \xa7\x96\x95\xa7\x96\x96\xa8\x99\x98\xab\x9c\x9a\xac\x9e\x9c\xac\ \xa0\x9d\xad\xa2\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa4\ \xa1\xb1\xa5\xa2\xb1\xa4\xa1\xb0\xa1\x9e\xae\x98\x97\xa7\x8d\x8e\ \x9e\x7e\x82\x94\x6f\x77\x8b\x69\x73\x87\x84\x86\x9b\xa4\x9e\xae\ \xa0\x98\xa9\xa0\x99\xaa\x9f\x9a\xab\xa0\x9a\xaa\x9e\x98\xa7\xa2\ \x9c\xab\xa4\x9d\xac\xa4\x9d\xad\xa6\x9f\xac\xa5\x9e\xab\xa4\x9d\ \xac\xa3\x9b\xaa\xa5\x9b\xab\xa8\xa0\xae\xa8\xa0\xad\xa8\xa0\xad\ \xa8\xa0\xad\xa1\x9a\xa8\x00\x00\x00\xbd\xb5\xbf\xbe\xb6\xbf\xbf\ \xb7\xc1\xc2\xba\xc1\xc4\xbd\xc4\xc7\xc0\xc8\xcc\xc5\xcc\xd1\xc9\ \xd0\xd6\xce\xd2\xda\xd0\xd3\xde\xd3\xd4\xe1\xd4\xd6\xe2\xd5\xd6\ \xe2\xd4\xd5\xe1\xd2\xd3\xde\xd0\xd1\xdc\xcd\xce\xda\xcb\xcc\xd7\ \xc9\xca\xd6\xc7\xc9\xd4\xc7\xc9\xd2\xc4\xc6\xd1\xc2\xc4\xd1\xc0\ \xc3\xd0\xc0\xc2\xd2\xc2\xc4\xd3\xc4\xc6\xd4\xc6\xc8\xd7\xc7\xca\ \xd9\xc9\xca\xda\xca\xcb\xdb\xcb\xcc\xdd\xce\xcf\xdf\xd1\xd2\xe1\ \xd3\xd4\xe3\xd5\xd6\xe4\xd6\xd7\xe7\xd7\xd8\xe7\xd8\xd9\xe7\xd9\ \xd8\xe7\xda\xda\xe8\xda\xdb\xe8\xdb\xdb\xe8\xdc\xdb\xe8\xdc\xdc\ \xe8\xdc\xdc\xe7\xda\xdc\xe6\xda\xdc\xe5\xda\xdc\xe5\xda\xdc\xe3\ \xd9\xdc\xe2\xd8\xdb\xe1\xd9\xdc\xdf\xd8\xdc\xe0\xd8\xde\xe0\xd9\ \xde\xe0\xd9\xde\xe0\xda\xdf\xe0\xda\xdf\xe1\xda\xe1\xe2\xdb\xe0\ \xe2\xdb\xe0\xe1\xda\xdf\xe1\xd9\xdf\xe2\xd9\xe1\xe1\xda\xe1\xe2\ \xda\xe1\xe2\xda\xe1\xe2\xda\xe1\xe1\xd9\xe0\xe1\xda\xdf\xe0\xd9\ \xdf\xe1\xd9\xe0\xe0\xd9\xdf\xe0\xd8\xde\xdf\xd7\xde\xde\xd6\xdd\ \xdb\xd3\xda\xd8\xd0\xd8\xd4\xcc\xd6\xd3\xcb\xd5\xd1\xc9\xd4\xcf\ \xca\xd4\xd0\xca\xd5\xce\xc9\xd4\xca\xc5\xd1\xc2\xbe\xca\xb5\xb1\ \xc1\xa8\xa4\xb7\x9f\x9b\xae\xa1\x9d\xae\xae\xab\xb9\xbf\xbd\xc8\ \xcb\xc8\xd3\xd4\xd1\xdb\xd9\xd6\xdf\xdd\xda\xe3\xdf\xdc\xe5\xe1\ \xdd\xe6\xe1\xdd\xe3\xde\xda\xe0\xda\xd5\xdb\xd5\xcd\xd6\xcf\xc7\ \xd1\xc6\xbf\xc9\xbd\xb5\xc0\xb4\xad\xb8\xaf\xa5\xb3\xad\xa4\xb1\ \xac\xa3\xb0\xaa\xa3\xb0\xa9\xa2\xaf\xa8\xa1\xaf\xa8\xa1\xaf\xa8\ \xa1\xae\xa8\xa1\xae\xa8\xa1\xaf\xa7\xa0\xae\xa7\xa0\xae\xa6\x9f\ \xad\xa5\x9f\xae\xa2\x9d\xac\x9e\x9b\xaa\x9e\x99\xaa\x9b\x98\xaa\ \x9b\x98\xaa\x9b\x9a\xab\x9e\x9c\xac\xa0\x9d\xad\xa1\x9e\xae\xa2\ \x9f\xaf\xa3\xa0\xb0\xa4\xa1\xb0\xa5\xa2\xb2\xa7\xa4\xb3\xa6\xa3\ \xb3\xa2\xa0\xaf\x9a\x99\xa9\x8f\x8f\x9f\x80\x84\x95\x70\x77\x8a\ \x5e\x6a\x7d\x4e\x5e\x73\x4e\x5c\x73\x80\x82\x97\xa0\x9a\xab\xa1\ \x9b\xab\xa0\x9a\xab\xa0\x99\xab\xa0\x9b\xaa\xa0\x9a\xa9\xa1\x9c\ \xab\xa3\x9d\xac\xa3\x9c\xac\xa4\x9d\xac\xa3\x9b\xaa\xa3\x9b\xab\ \xa5\x9d\xac\xa6\x9e\xac\xa6\x9e\xab\xa7\x9f\xac\xa7\xa0\xad\xa5\ \x9d\xac\x00\x00\x00\xbe\xb6\xbe\xc0\xb8\xbf\xc0\xb8\xbf\xc2\xba\ \xc1\xc3\xbb\xc2\xc5\xbd\xc4\xc9\xc1\xc8\xd0\xc7\xcd\xd7\xcc\xcf\ \xdb\xcf\xd2\xdf\xd2\xd3\xe2\xd4\xd6\xe4\xd6\xd6\xe3\xd5\xd6\xe3\ \xd4\xd4\xe1\xd1\xd1\xdd\xce\xcd\xdb\xca\xcc\xd8\xc9\xca\xd6\xc8\ \xc9\xd4\xc6\xc8\xd2\xc3\xc6\xd1\xc1\xc4\xd1\xc0\xc3\xd1\xc0\xc2\ \xd2\xc1\xc4\xd2\xc5\xc7\xd3\xc5\xc7\xd6\xc7\xc8\xd7\xc7\xc8\xd7\ \xc7\xc8\xd9\xc9\xca\xdc\xcc\xcd\xdd\xcf\xd0\xdf\xd1\xd2\xe1\xd3\ \xd4\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd8\xd9\ \xe6\xda\xda\xe7\xdb\xdb\xe8\xdb\xdc\xe7\xdb\xdc\xe6\xdb\xdd\xe6\ \xdb\xdd\xe6\xda\xdc\xe5\xdb\xdc\xe4\xda\xdd\xe2\xd9\xdc\xe2\xd9\ \xdc\xe1\xd9\xdc\xe0\xd9\xdd\xe0\xd9\xde\xe0\xd9\xde\xdf\xda\xde\ \xe0\xda\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe1\xe2\xdb\xe1\xe2\ \xdb\xe1\xe1\xd9\xe0\xe1\xda\xe1\xe2\xd9\xe0\xe1\xd9\xe0\xe1\xd9\ \xe0\xe1\xd9\xe0\xe1\xd9\xe0\xe1\xd9\xdf\xe0\xd9\xdf\xe0\xd8\xdf\ \xe1\xd8\xe0\xdf\xd7\xde\xdf\xd8\xdf\xde\xd7\xde\xdd\xd5\xdc\xda\ \xd3\xdb\xd7\xcf\xd9\xd7\xd0\xda\xd6\xd1\xda\xd6\xd1\xda\xd7\xd2\ \xdb\xd7\xd2\xdc\xd4\xce\xd9\xca\xc6\xd1\xbc\xb8\xc6\xa9\xa5\xb7\ \x98\x94\xa7\x93\x8f\xa3\xa2\x9e\xaf\xb6\xb2\xbf\xc4\xc2\xcd\xd0\ \xcd\xd7\xd8\xd5\xde\xdd\xda\xe4\xe1\xdd\xe6\xe3\xde\xe6\xe0\xdc\ \xe2\xdb\xd7\xdd\xd7\xd1\xd7\xd0\xc9\xd1\xc7\xc1\xca\xbd\xb6\xc1\ \xb4\xac\xb7\xae\xa6\xb1\xad\xa4\xb1\xac\xa3\xb0\xab\xa3\xb0\xaa\ \xa3\xb0\xa9\xa2\xaf\xa9\xa2\xae\xa9\xa2\xae\xa8\xa1\xaf\xa8\xa1\ \xaf\xa7\xa0\xaf\xa7\xa0\xae\xa7\xa0\xaf\xa7\xa0\xaf\xa8\xa1\xaf\ \xa6\x9f\xae\xa4\x9e\xad\xa2\x9d\xad\xa0\x9c\xac\x9e\x9b\xab\x9e\ \x9b\xab\x9f\x9d\xad\xa1\x9e\xae\xa3\xa0\xb0\xa4\xa1\xb1\xa4\xa1\ \xb1\xa6\xa4\xb3\xaa\xa7\xb7\xaa\xa8\xb8\xa7\xa6\xb6\xa2\xa1\xb1\ \x99\x98\xa8\x87\x89\x9b\x74\x79\x8d\x61\x6c\x7f\x4d\x5c\x71\x39\ \x4d\x64\x34\x48\x61\x50\x5a\x73\x86\x85\x9a\xa1\x9c\xad\xa0\x9b\ \xab\xa1\x9b\xab\xa0\x9b\xab\xa1\x9c\xab\xa2\x9d\xac\xa5\xa0\xaf\ \xa9\xa3\xb0\xa6\x9f\xad\xa2\x9b\xaa\xa1\x9a\xa9\xa4\x9d\xab\xa6\ \x9f\xac\xa6\x9f\xac\xa6\x9f\xac\xa6\x9f\xad\xa6\x9f\xad\x00\x00\ \x00\xbf\xb7\xbd\xbf\xb7\xbe\xc0\xb8\xbf\xc1\xb9\xc0\xc2\xba\xc1\ \xc4\xbc\xc3\xc9\xc0\xc6\xd1\xc6\xca\xd8\xcb\xce\xdc\xcf\xd0\xdf\ \xd2\xd3\xe2\xd3\xd5\xe4\xd6\xd7\xe4\xd6\xd6\xe4\xd5\xd3\xe1\xd2\ \xd0\xdc\xcd\xcb\xd8\xc9\xc9\xd8\xc8\xc9\xd4\xc6\xc8\xd2\xc4\xc6\ \xd1\xc3\xc5\xd1\xc2\xc4\xd1\xc2\xc3\xd1\xc1\xc2\xd1\xc1\xc3\xd2\ \xc4\xc6\xd4\xc5\xc6\xd4\xc5\xc6\xd5\xc5\xc6\xd5\xc5\xc6\xd7\xc7\ \xc8\xd9\xc9\xca\xdb\xcc\xcd\xdd\xd0\xd0\xdf\xd1\xd3\xe2\xd4\xd5\ \xe3\xd5\xd7\xe3\xd6\xd7\xe4\xd6\xd7\xe5\xd8\xda\xe6\xd9\xda\xe7\ \xda\xdc\xe7\xda\xdd\xe6\xda\xdd\xe6\xda\xdc\xe6\xda\xdd\xe4\xdb\ \xdd\xe4\xdb\xde\xe3\xdb\xdd\xe3\xd9\xdc\xe2\xda\xdd\xe1\xd9\xde\ \xe0\xd9\xde\xe0\xda\xdf\xe0\xdb\xdf\xe0\xd9\xdf\xe1\xda\xe1\xe2\ \xdb\xe2\xe1\xda\xe1\xe1\xdb\xe1\xe2\xda\xe1\xe2\xdb\xe2\xe1\xda\ \xe1\xe1\xd9\xe0\xe2\xd9\xe0\xe2\xda\xe1\xe1\xd9\xe0\xe1\xd9\xe0\ \xe1\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xde\xe0\xd8\xdf\xe0\xd8\xdf\xde\ \xd7\xde\xdf\xd8\xdf\xdf\xd8\xdf\xde\xd8\xdf\xdd\xd5\xdf\xdb\xd4\ \xde\xdb\xd6\xdf\xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\xdd\xd8\xe1\ \xda\xd4\xde\xcf\xca\xd5\xbf\xbb\xc8\xaa\xa6\xb8\x91\x8d\xa1\x83\ \x80\x95\x92\x8f\xa1\xaa\xa7\xb6\xbd\xb9\xc5\xcc\xc9\xd2\xd7\xd4\ \xdd\xdf\xdc\xe3\xe3\xdf\xe6\xe3\xdf\xe5\xe0\xdc\xe2\xd9\xd5\xdb\ \xd1\xcc\xd4\xc7\xc2\xcb\xbc\xb6\xc0\xb3\xab\xb6\xad\xa5\xb1\xad\ \xa4\xb0\xac\xa3\xb0\xab\xa3\xb0\xab\xa2\xaf\xa8\xa2\xaf\xa9\xa2\ \xaf\xa9\xa1\xae\xa9\xa2\xaf\xa9\xa2\xb1\xa8\xa1\xb0\xa8\xa1\xaf\ \xa8\xa1\xae\xa8\xa1\xaf\xa8\xa1\xb0\xa8\xa1\xaf\xa8\xa1\xaf\xa7\ \xa0\xaf\xa6\xa0\xae\xa4\x9f\xae\xa2\x9e\xae\xa1\x9e\xad\xa0\x9e\ \xae\xa1\xa1\xb1\xa5\xa2\xb1\xa6\xa4\xb4\xa8\xa5\xb5\xa9\xa8\xb8\ \xab\xaa\xba\xae\xad\xbc\xae\xae\xbc\xa9\xaa\xb9\x9f\x9f\xaf\x88\ \x8b\x9e\x6a\x72\x86\x54\x61\x75\x3f\x51\x66\x2f\x43\x5c\x2d\x3e\ \x59\x3d\x48\x62\x62\x63\x7b\x91\x8e\xa1\xa4\x9f\xae\xa3\x9d\xac\ \xa2\x9d\xac\xa2\x9d\xac\xa3\x9d\xac\xa9\xa5\xb2\xb1\xad\xb9\xae\ \xaa\xb6\xa8\xa4\xaf\xa1\x9b\xaa\xa2\x9c\xab\xa5\x9e\xad\xa7\xa0\ \xad\xa6\x9f\xac\xa7\xa0\xad\xa5\x9f\xad\x00\x00\x00\xbe\xb5\xbd\ \xbf\xb7\xbe\xbf\xb8\xbf\xc1\xb9\xc0\xc2\xba\xc1\xc4\xbb\xc2\xcb\ \xbf\xc5\xd2\xc6\xc9\xd9\xcc\xcd\xdc\xce\xcf\xde\xd0\xd1\xe0\xd2\ \xd3\xe3\xd4\xd5\xe3\xd4\xd4\xe1\xd2\xd0\xdf\xd0\xce\xda\xca\xcb\ \xd7\xc7\xc8\xd3\xc4\xc5\xd1\xc3\xc5\xd1\xc3\xc5\xd2\xc4\xc5\xd2\ \xc3\xc3\xd2\xc3\xc4\xd1\xc2\xc3\xd1\xc1\xc2\xd2\xc2\xc3\xd2\xc3\ \xc4\xd2\xc2\xc3\xd2\xc2\xc3\xd3\xc3\xc4\xd4\xc4\xc5\xd7\xc7\xc8\ \xd8\xca\xcb\xdb\xcd\xcf\xdd\xd0\xd2\xdf\xd2\xd4\xe1\xd4\xd6\xe1\ \xd4\xd6\xe2\xd5\xd7\xe4\xd7\xd9\xe5\xd9\xdb\xe5\xda\xdc\xe5\xda\ \xdc\xe6\xdb\xdd\xe6\xda\xdd\xe5\xdb\xdc\xe3\xda\xdd\xe2\xd9\xdc\ \xe2\xda\xde\xe1\xda\xdd\xe0\xda\xde\xe1\xdb\xe0\xe2\xdb\xe0\xe1\ \xdb\xe1\xe1\xda\xe1\xe0\xdb\xe2\xe0\xdc\xe2\xe0\xdc\xe2\xe2\xdc\ \xe2\xe2\xdc\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe0\xda\xe1\ \xe1\xda\xe1\xe0\xd8\xdf\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd7\xde\xdf\ \xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdd\xde\xd7\xde\xdf\xd7\ \xe0\xe0\xd8\xe2\xe0\xd9\xe3\xdf\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\ \xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xdb\xd7\xdf\xd3\ \xcd\xd8\xc5\xc0\xcc\xb0\xac\xbb\x91\x8c\xa1\x73\x6f\x86\x7d\x79\ \x8d\x9b\x98\xa8\xb6\xb2\xbd\xc7\xc3\xcd\xd3\xd0\xd9\xdc\xda\xe0\ \xe3\xdf\xe5\xe3\xdf\xe5\xdf\xdb\xe1\xd9\xd5\xdb\xcf\xcb\xd2\xc2\ \xbc\xc5\xb5\xad\xb9\xad\xa5\xb1\xad\xa3\xb0\xaa\xa3\xb0\xaa\xa1\ \xae\xab\xa2\xaf\xaa\xa2\xaf\xa9\xa1\xae\xa8\xa2\xaf\xa9\xa2\xaf\ \xa8\xa1\xae\xa8\xa1\xaf\xa9\xa2\xaf\xa8\xa1\xaf\xa9\xa2\xaf\xa9\ \xa2\xb0\xaa\xa3\xb0\xaa\xa3\xaf\xaa\xa3\xaf\xab\xa4\xb1\xa9\xa2\ \xb1\xa7\xa2\xb1\xa7\xa3\xb2\xa7\xa4\xb3\xa6\xa4\xb3\xa6\xa6\xb4\ \xa6\xa7\xb5\xa9\xa9\xb8\xad\xae\xbc\xae\xae\xbc\xae\xae\xbc\xb3\ \xb3\xc1\xb6\xb7\xc5\xb3\xb4\xc2\xa8\xa8\xb8\x8f\x92\xa5\x6b\x73\ \x87\x4b\x5a\x6d\x38\x48\x5f\x2d\x3c\x56\x2a\x38\x52\x36\x40\x59\ \x55\x56\x6e\x73\x71\x88\x9b\x98\xaa\xa7\xa1\xb1\xaa\xa6\xb2\xab\ \xa5\xb2\xac\xa6\xb2\xab\xa6\xb2\xac\xa7\xb4\xab\xa6\xb4\xab\xa7\ \xb3\xa6\xa1\xaf\xa3\x9c\xac\xa5\x9e\xad\xa6\x9f\xad\xa6\x9f\xad\ \xa6\x9f\xac\xa5\x9e\xac\x00\x00\x00\xbe\xb6\xbe\xbf\xb6\xbe\xbf\ \xb7\xbe\xc1\xb9\xc0\xc2\xb9\xc1\xc6\xbb\xc2\xcd\xc1\xc4\xd3\xc6\ \xc9\xd8\xcb\xcd\xda\xcc\xcd\xdc\xce\xcf\xdf\xd0\xd1\xe1\xd2\xd2\ \xe1\xd1\xd2\xdf\xcf\xcf\xdb\xcc\xcd\xd7\xc8\xc9\xd4\xc5\xc6\xd0\ \xc3\xc5\xcf\xc1\xc4\xce\xc0\xc2\xcf\xc1\xc3\xd0\xc1\xc3\xd2\xc2\ \xc3\xd1\xc0\xc1\xd0\xc0\xc1\xd0\xc0\xc1\xd1\xc0\xc1\xd0\xc0\xc1\ \xd0\xc0\xc1\xd2\xc2\xc3\xd2\xc2\xc3\xd4\xc5\xc6\xd6\xc8\xc9\xd9\ \xcb\xcd\xdb\xce\xd0\xdd\xd0\xd2\xdf\xd2\xd4\xe1\xd4\xd6\xe3\xd5\ \xd7\xe3\xd7\xd9\xe4\xd9\xdb\xe4\xd9\xdb\xe5\xda\xdb\xe5\xda\xdc\ \xe5\xdb\xdd\xe4\xdc\xde\xe3\xdb\xde\xe2\xda\xdd\xe1\xda\xdd\xe2\ \xdb\xdf\xe1\xdb\xdf\xe2\xdc\xe1\xe2\xdc\xe1\xe2\xdc\xe2\xe1\xdc\ \xe2\xe0\xdb\xe2\xe0\xdc\xe2\xdf\xdb\xe1\xdf\xdc\xe1\xe1\xdc\xe2\ \xe2\xdc\xe3\xe3\xdd\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe0\ \xd9\xe0\xe0\xd9\xe0\xe0\xd9\xdf\xdf\xd7\xde\xdf\xd6\xdd\xde\xd6\ \xdd\xdf\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdf\xd7\xe0\xe1\xd9\xe3\ \xe0\xd9\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe2\xdd\xe6\xe1\ \xdc\xe5\xe2\xde\xe6\xe0\xdb\xe4\xdc\xd7\xe0\xd5\xd0\xd9\xca\xc4\ \xd0\xb7\xb2\xbf\x9d\x99\xab\x79\x75\x8b\x6c\x68\x7e\x88\x84\x96\ \xa9\xa6\xb2\xc0\xbc\xc6\xcf\xcc\xd4\xd8\xd5\xdb\xdf\xdc\xe2\xe1\ \xdd\xe3\xdf\xdb\xe1\xd8\xd4\xda\xd0\xcb\xd2\xc2\xba\xc3\xb3\xaa\ \xb5\xac\xa4\xb0\xac\xa3\xb0\xab\xa2\xaf\xab\xa3\xb0\xab\xa3\xb0\ \xaa\xa1\xae\xaa\xa2\xaf\xa8\xa2\xaf\xa8\xa1\xae\xa8\xa2\xaf\xa9\ \xa1\xaf\xa9\xa1\xaf\xa9\xa1\xaf\xaa\xa2\xaf\xa9\xa2\xb1\xaa\xa2\ \xaf\xaa\xa3\xb0\xaa\xa3\xb0\xab\xa4\xb1\xac\xa6\xb3\xad\xa9\xb6\ \xaf\xac\xbb\xb0\xad\xbc\xae\xae\xbc\xac\xac\xba\xa7\xa8\xb6\xa9\ \xa9\xb8\xaf\xaf\xbd\xb3\xb3\xc1\xb5\xb5\xc3\xb7\xb7\xc6\xbb\xbc\ \xca\xbb\xbc\xc9\xb1\xb2\xc0\x99\x9b\xad\x73\x7b\x8f\x4f\x5a\x6f\ \x39\x46\x5c\x2f\x3a\x52\x29\x32\x4c\x33\x39\x52\x4d\x4e\x67\x6b\ \x67\x7f\x84\x80\x95\x9b\x95\xa7\xac\xa8\xb6\xae\xa9\xb5\xac\xa6\ \xb3\xae\xaa\xb6\xae\xaa\xb6\xb0\xac\xb8\xb1\xad\xb9\xac\xa7\xb3\ \xa4\x9f\xad\xa1\x9c\xab\xa7\xa0\xae\xa7\xa0\xad\xa4\x9d\xab\xa6\ \x9f\xad\x00\x00\x00\xbe\xb5\xbe\xbe\xb6\xbd\xbf\xb7\xbe\xc1\xb9\ \xc0\xc2\xb9\xc0\xc8\xbd\xc2\xcd\xc1\xc5\xd2\xc5\xc7\xd6\xc8\xca\ \xd9\xcb\xcc\xd9\xcb\xcc\xdc\xce\xcf\xdd\xcf\xd0\xdd\xcf\xd0\xd9\ \xcb\xcc\xd7\xc9\xca\xd4\xc6\xc8\xd1\xc3\xc6\xcf\xc1\xc4\xcc\xbf\ \xc2\xcb\xbe\xc1\xcd\xbf\xc2\xcf\xc1\xc2\xd0\xc0\xc1\xd0\xc0\xc1\ \xcf\xbf\xc0\xcf\xbf\xc0\xce\xbe\xbf\xcd\xbd\xbe\xce\xbd\xbe\xce\ \xbe\xbf\xcf\xbf\xc0\xd1\xc2\xc4\xd4\xc6\xc8\xd7\xc9\xcb\xd9\xcc\ \xce\xdc\xcf\xd1\xde\xd1\xd3\xe0\xd3\xd5\xe1\xd5\xd7\xe1\xd6\xd8\ \xe3\xd8\xda\xe4\xd9\xdb\xe4\xd9\xdc\xe4\xda\xdd\xe4\xdb\xde\xe5\ \xdc\xdf\xe3\xdb\xde\xe2\xdb\xde\xe2\xdb\xdf\xe2\xdc\xe1\xe3\xdd\ \xe2\xe3\xdd\xe2\xe2\xde\xe3\xe2\xde\xe4\xe2\xde\xe4\xe1\xdd\xe3\ \xe1\xdd\xe3\xe0\xdb\xe2\xe0\xdb\xe3\xdf\xdc\xe2\xe0\xdc\xe2\xe2\ \xde\xe4\xe2\xde\xe3\xe1\xdb\xe2\xdd\xd6\xdd\xda\xd3\xdb\xd9\xd1\ \xd9\xd7\xcf\xd8\xdc\xd5\xdd\xdf\xd8\xde\xdf\xd7\xde\xdf\xd7\xde\ \xdf\xd7\xde\xde\xd7\xde\xdf\xd7\xe1\xe0\xd8\xe2\xe0\xdb\xe4\xe0\ \xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdd\ \xe5\xe0\xdb\xe4\xdc\xd7\xe0\xd5\xd0\xd9\xce\xc8\xd2\xbf\xb8\xc5\ \xa9\xa4\xb4\x8d\x89\x9d\x76\x72\x88\x7d\x7a\x8e\x98\x95\xa5\xb5\ \xb2\xbe\xc7\xc4\xcd\xd2\xce\xd6\xdb\xd7\xdd\xde\xda\xe0\xde\xda\ \xe0\xda\xd5\xdc\xd3\xcd\xd4\xc6\xbe\xc8\xb8\xb0\xba\xae\xa6\xb1\ \xac\xa4\xaf\xac\xa3\xb0\xab\xa3\xaf\xac\xa3\xaf\xab\xa2\xaf\xaa\ \xa1\xae\xaa\xa1\xae\xa9\xa1\xae\xaa\xa1\xae\xaa\xa1\xaf\xaa\xa2\ \xaf\xaa\xa2\xaf\xaa\xa2\xaf\xaa\xa2\xb0\xaa\xa3\xb0\xab\xa4\xb1\ \xac\xa4\xb1\xb0\xa9\xb6\xb4\xaf\xbc\xb4\xb0\xbd\xb5\xb3\xc2\xb8\ \xb6\xc3\xb7\xb7\xc4\xb4\xb4\xc1\xad\xae\xbc\xab\xac\xba\xb0\xb1\ \xbe\xb6\xb6\xc4\xba\xba\xc8\xbc\xbc\xcb\xbf\xc0\xcc\xc0\xc2\xcd\ \xba\xbb\xc8\xa4\xa7\xb8\x85\x8a\x9d\x61\x6a\x7d\x4a\x53\x67\x3d\ \x43\x58\x30\x35\x4e\x33\x38\x51\x4c\x4d\x66\x67\x64\x7b\x81\x7b\ \x91\x96\x90\xa3\xa4\x9f\xaf\xac\xa6\xb4\xa4\x9d\xad\xa2\x9c\xac\ \xa6\xa1\xb0\xab\xa7\xb5\xb4\xb1\xbc\xb3\xae\xb9\xaa\xa6\xb3\x9f\ \x9a\xa9\xa1\x9b\xaa\xa7\xa0\xae\xa6\x9f\xac\xa4\x9e\xad\x00\x00\ \x00\xbe\xb5\xbe\xbe\xb7\xbd\xbf\xb7\xbe\xc1\xb9\xc0\xc2\xb9\xc0\ \xc7\xbc\xc2\xcc\xc0\xc3\xd0\xc3\xc6\xd4\xc7\xc8\xd5\xc8\xc9\xd7\ \xc9\xca\xd8\xca\xcb\xd9\xcb\xcc\xd8\xca\xcc\xd5\xc9\xca\xd3\xc6\ \xc9\xd1\xc4\xc7\xcd\xc3\xc6\xcb\xc0\xc3\xc9\xbe\xc2\xc9\xbd\xc0\ \xcb\xbe\xc1\xcd\xbf\xc1\xce\xbe\xbf\xce\xbe\xbf\xcd\xbd\xbe\xcb\ \xbb\xbc\xcb\xbb\xbc\xca\xba\xbb\xca\xba\xbc\xcb\xba\xbd\xcd\xbd\ \xbf\xcf\xc0\xc2\xd1\xc3\xc5\xd5\xc7\xc9\xd8\xca\xcc\xda\xcd\xcf\ \xde\xd1\xd3\xdf\xd2\xd4\xe0\xd4\xd6\xe1\xd6\xd8\xe2\xd7\xd9\xe3\ \xd8\xdb\xe3\xd9\xdc\xe3\xda\xdd\xe4\xdb\xde\xe4\xdc\xdf\xe4\xdd\ \xe0\xe4\xdd\xe0\xe3\xdd\xe1\xe3\xdc\xe1\xe4\xde\xe3\xe4\xe0\xe5\ \xe4\xe0\xe6\xe4\xe0\xe6\xe3\xdf\xe5\xe3\xdf\xe5\xe1\xdd\xe3\xdf\ \xdb\xe3\xdf\xda\xe3\xe0\xdb\xe4\xdf\xdb\xe3\xd8\xd3\xdb\xba\xb3\ \xc1\xb5\xaf\xbd\xa9\xa2\xb4\xa8\xa0\xb2\xa6\x9e\xb0\xa5\x9e\xb1\ \xaf\xa5\xb7\xc1\xb7\xc5\xd2\xca\xd4\xdc\xd4\xdc\xdd\xd5\xdc\xdd\ \xd6\xdd\xdf\xd7\xe0\xe0\xda\xe3\xe1\xdc\xe5\xe1\xdc\xe5\xe2\xdd\ \xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe6\xe1\xdc\xe5\ \xde\xd9\xe2\xd8\xd3\xdc\xd1\xcb\xd5\xc7\xc1\xcc\xb7\xb1\xbf\xa2\ \x9d\xaf\x8c\x8a\x9e\x80\x7e\x93\x8d\x8b\x9e\xa6\xa3\xb2\xbc\xb9\ \xc4\xcb\xc8\xd1\xd6\xd2\xd9\xdb\xd7\xdd\xdc\xd7\xde\xdc\xd6\xdd\ \xd7\xd1\xd7\xce\xc6\xce\xc0\xb9\xc2\xb5\xad\xb7\xae\xa6\xb1\xae\ \xa6\xb1\xae\xa6\xb2\xb0\xa7\xb3\xaf\xa6\xb2\xae\xa5\xb1\xad\xa4\ \xb0\xab\xa2\xaf\xab\xa3\xb0\xa9\xa2\xb0\xaa\xa2\xb0\xaa\xa3\xb0\ \xa9\xa3\xb0\xaa\xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xb2\xac\xb9\xb8\ \xb4\xc1\xbb\xb8\xc4\xbb\xb8\xc5\xbc\xba\xc6\xbc\xbc\xc8\xbf\xbf\ \xcb\xbf\xbf\xcb\xb6\xb8\xc4\xb1\xb2\xbf\xb1\xb3\xbe\xb6\xb7\xc3\ \xbd\xbd\xc9\xc1\xc1\xcd\xc0\xc1\xcc\xc0\xc2\xcd\xbc\xbe\xca\xb0\ \xb3\xc0\x99\x9d\xad\x7c\x82\x95\x64\x6b\x7e\x5e\x60\x74\x48\x4a\ \x5e\x3a\x3d\x54\x4c\x4e\x64\x66\x64\x7a\x7d\x79\x8e\x92\x8c\xa0\ \xa0\x9b\xac\xa8\xa3\xb2\xab\xa5\xb4\xab\xa4\xb2\xa7\xa0\xb0\xa4\ \x9f\xae\xa9\xa5\xb2\xab\xa7\xb3\xa6\xa2\xaf\x9d\x97\xa8\x9b\x96\ \xa6\xa1\x9b\xaa\xa8\xa1\xaf\xa6\x9f\xae\x00\x00\x00\xbb\xb3\xbd\ \xbe\xb6\xbd\xbe\xb6\xbd\xc0\xb8\xbf\xc2\xb9\xc0\xc6\xbc\xc1\xca\ \xbf\xc3\xce\xc2\xc5\xd1\xc4\xc6\xd3\xc6\xc8\xd4\xc6\xc8\xd5\xc8\ \xca\xd4\xc7\xca\xd2\xc6\xc9\xd1\xc5\xc8\xcd\xc3\xc8\xcc\xc2\xc6\ \xc9\xc0\xc6\xc8\xbf\xc5\xc8\xbc\xc2\xc7\xbb\xc0\xca\xbc\xbf\xcc\ \xbd\xbf\xcd\xbd\xbe\xcb\xbb\xbc\xc9\xb9\xbb\xc9\xb8\xba\xc8\xb7\ \xba\xc8\xb7\xb9\xc7\xb6\xb9\xc9\xb8\xbb\xcb\xba\xbd\xcd\xbf\xc1\ \xd0\xc1\xc3\xd3\xc5\xc7\xd6\xc9\xcb\xda\xcd\xcf\xdd\xd0\xd2\xdf\ \xd2\xd4\xdf\xd4\xd6\xe1\xd6\xd8\xe2\xd7\xd9\xe3\xd8\xdb\xe2\xda\ \xdc\xe4\xdb\xde\xe4\xdc\xdf\xe4\xdd\xe0\xe4\xdd\xe1\xe3\xdd\xe2\ \xe3\xdd\xe2\xe4\xde\xe3\xe4\xe0\xe5\xe5\xe1\xe7\xe5\xe1\xe7\xe5\ \xe1\xe7\xe4\xe0\xe6\xe3\xdf\xe5\xe1\xdd\xe3\xe0\xdc\xe3\xdd\xdb\ \xe4\xdd\xd9\xe2\xca\xc6\xd2\xa9\xa4\xb6\x9a\x96\xa9\x98\x93\xa9\ \x95\x90\xa6\x93\x8e\xa5\x95\x90\xa6\x99\x96\xab\x9c\x96\xac\x9a\ \x93\xab\xa0\x97\xaf\xbb\xb2\xc3\xd6\xcf\xd8\xdf\xd7\xde\xdf\xd8\ \xdf\xe0\xd9\xe0\xe2\xdb\xe3\xe2\xdc\xe5\xe2\xdd\xe5\xe2\xdd\xe5\ \xe2\xdd\xe5\xe2\xdd\xe6\xe2\xdd\xe6\xe1\xdc\xe5\xdf\xda\xe3\xdb\ \xd6\xdf\xd6\xd2\xda\xd0\xcb\xd5\xc5\xbf\xca\xb7\xb2\xbf\xa6\xa3\ \xb4\x93\x91\xa6\x8c\x8a\x9f\x9a\x97\xa8\xae\xaa\xb7\xc1\xbe\xc8\ \xd0\xcc\xd3\xd9\xd4\xda\xdd\xd7\xdc\xdd\xd7\xdc\xdb\xd5\xda\xd4\ \xcd\xd4\xcb\xc4\xcc\xc0\xb8\xc0\xb6\xae\xb8\xb7\xae\xb9\xba\xb2\ \xbc\xbc\xb4\xbd\xbd\xb4\xbc\xbd\xb2\xbc\xb8\xaf\xb9\xb3\xab\xb6\ \xb0\xa7\xb3\xad\xa5\xb2\xad\xa5\xb2\xae\xa5\xb2\xae\xa7\xb3\xb1\ \xaa\xb7\xb5\xaf\xbb\xb9\xb4\xc0\xbd\xb9\xc5\xc0\xbe\xca\xc4\xc2\ \xce\xc5\xc3\xcf\xc4\xc3\xcf\xc4\xc3\xcf\xc8\xc9\xd3\xc8\xc9\xd4\ \xc1\xc2\xcd\xb7\xb9\xc4\xb3\xb5\xc0\xb3\xb4\xc1\xba\xbb\xc7\xc1\ \xc1\xcd\xc0\xc1\xcd\xbd\xbf\xcb\xbb\xbc\xc9\xb6\xb8\xc5\xa9\xac\ \xba\x91\x96\xa7\x7b\x81\x94\x76\x7c\x90\x6d\x6f\x82\x52\x54\x67\ \x4e\x52\x66\x62\x63\x77\x79\x77\x8b\x8e\x8a\x9c\x9b\x96\xa7\xa1\ \x9d\xad\xa4\xa1\xb0\xb3\xae\xba\xaf\xa8\xb5\xa4\x9d\xad\xa3\x9d\ \xad\xa4\x9f\xaf\xa6\xa1\xb0\x9d\x97\xa7\x99\x93\xa4\x9a\x94\xa6\ \xa3\x9d\xac\xa6\x9f\xae\x00\x00\x00\xbc\xb3\xbd\xbd\xb5\xbe\xbe\ \xb6\xbe\xc0\xb8\xbf\xc1\xb9\xc0\xc5\xbb\xc1\xc8\xbd\xc3\xcb\xc0\ \xc4\xcd\xc1\xc4\xcf\xc3\xc6\xd1\xc3\xc6\xd1\xc4\xc7\xcf\xc4\xc7\ \xcc\xc1\xc6\xca\xc0\xc6\xc8\xbf\xc6\xc7\xbf\xc6\xc6\xbf\xc5\xc6\ \xbd\xc3\xc7\xbc\xc2\xc7\xba\xbe\xc9\xba\xbd\xcb\xbc\xbe\xcc\xbb\ \xbe\xca\xb9\xbb\xc8\xb7\xba\xc6\xb6\xb9\xc5\xb6\xb8\xc4\xb5\xb9\ \xc4\xb5\xb8\xc6\xb7\xb9\xc9\xb9\xbb\xcb\xbc\xbe\xcf\xbf\xc1\xd2\ \xc3\xc5\xd5\xc7\xc9\xd8\xca\xcc\xdb\xce\xd0\xde\xd1\xd3\xdf\xd3\ \xd5\xe0\xd5\xd7\xe1\xd6\xd9\xe2\xd7\xda\xe3\xda\xdd\xe3\xdb\xde\ \xe3\xdc\xdf\xe4\xdd\xe0\xe4\xde\xe2\xe3\xdd\xe2\xe4\xdd\xe2\xe4\ \xe0\xe5\xe5\xe1\xe7\xe6\xe2\xe8\xe5\xe1\xe7\xe5\xe1\xe7\xe3\xdf\ \xe5\xe2\xdf\xe5\xe1\xdd\xe3\xdf\xdc\xe4\xde\xdb\xe4\xd6\xd2\xdd\ \xab\xa6\xb8\x9e\x99\xac\x9b\x97\xaa\x98\x94\xa8\x96\x91\xa6\x93\ \x8e\xa4\x92\x8e\xa4\x94\x8f\xa4\x98\x94\xa9\x9e\x99\xae\x9d\x97\ \xae\x98\x90\xab\xa5\x9a\xb3\xd1\xc9\xd4\xe0\xd9\xe0\xe0\xd9\xe0\ \xe2\xdb\xe2\xe3\xdc\xe3\xe3\xdc\xe4\xe3\xdd\xe4\xe3\xde\xe4\xe2\ \xdc\xe5\xe1\xdc\xe6\xe1\xdc\xe5\xe0\xdb\xe4\xdf\xda\xe3\xdc\xd7\ \xe0\xd8\xd3\xdc\xd1\xcc\xd5\xc6\xc2\xcd\xba\xb7\xc5\xab\xa9\xb8\ \x99\x97\xaa\x95\x92\xa6\xa3\xa0\xaf\xb8\xb3\xbe\xc9\xc4\xcc\xd4\ \xcf\xd4\xdb\xd5\xda\xde\xd8\xdd\xdf\xd9\xdd\xdc\xd6\xdb\xd7\xd0\ \xd7\xd1\xc9\xd0\xca\xc3\xca\xca\xc2\xc9\xcb\xc3\xcb\xcd\xc5\xcc\ \xcd\xc5\xcb\xcd\xc3\xc9\xca\xc0\xc7\xc4\xbc\xc4\xc0\xb7\xc1\xbd\ \xb5\xbf\xbb\xb3\xbf\xbb\xb4\xbf\xbd\xb7\xc2\xbe\xb9\xc5\xbf\xbb\ \xc6\xc3\xbf\xcb\xc6\xc3\xce\xcb\xc7\xd2\xcd\xcc\xd6\xd1\xcf\xda\ \xd0\xcf\xd9\xd0\xcf\xd9\xd0\xcf\xd9\xcc\xcd\xd7\xc8\xc8\xd4\xbf\ \xc1\xcc\xb7\xb9\xc4\xb2\xb4\xc0\xb5\xb7\xc2\xbc\xbe\xc9\xbf\xc1\ \xcc\xbd\xbe\xca\xb9\xbb\xc7\xb5\xb8\xc5\xaf\xb2\xc0\x9f\xa3\xb3\ \x87\x8f\xa1\x7f\x87\x9a\x7c\x83\x96\x6b\x6f\x82\x5f\x62\x74\x61\ \x63\x76\x76\x75\x89\x8a\x86\x99\x94\x90\xa2\x98\x95\xa6\x98\x96\ \xa8\xa7\xa3\xb3\xaf\xa8\xb5\xa2\x9b\xab\x9d\x97\xa8\x9c\x97\xa7\ \x9e\x99\xa9\x9c\x96\xa6\x9a\x94\xa5\x9a\x94\xa5\x9c\x96\xa7\xa6\ \xa0\xae\x00\x00\x00\xba\xb2\xbc\xbc\xb3\xbd\xbe\xb6\xbe\xc0\xb8\ \xbf\xc1\xb9\xc0\xc4\xba\xc0\xc5\xbb\xc1\xc8\xbd\xc3\xca\xbf\xc3\ \xcb\xc0\xc3\xcb\xc0\xc5\xca\xbf\xc4\xc9\xbf\xc4\xc6\xbd\xc3\xc4\ \xbc\xc3\xc5\xbd\xc4\xc3\xbb\xc2\xc5\xbd\xc3\xc5\xbc\xc2\xc6\xbc\ \xc1\xc6\xb9\xbd\xc7\xb9\xbb\xca\xba\xbd\xca\xba\xbd\xc9\xb9\xbc\ \xc7\xb8\xba\xc6\xb7\xba\xc4\xb5\xb8\xc3\xb4\xb8\xc3\xb4\xb9\xc4\ \xb5\xb9\xc7\xb7\xba\xcb\xba\xbd\xce\xbd\xc0\xd0\xc0\xc3\xd2\xc5\ \xc6\xd6\xc8\xca\xd9\xcc\xce\xdc\xcf\xd1\xdf\xd2\xd4\xe0\xd4\xd6\ \xe2\xd7\xda\xe2\xd8\xdb\xe3\xda\xdd\xe3\xdb\xde\xe3\xdd\xdf\xe4\ \xdd\xe2\xe3\xdd\xe3\xe4\xdd\xe2\xe2\xde\xe3\xe4\xe0\xe5\xe4\xe0\ \xe6\xe5\xe1\xe7\xe5\xe1\xe7\xe4\xe0\xe6\xe3\xe0\xe6\xe3\xdf\xe5\ \xdf\xdd\xe4\xdf\xdd\xe5\xde\xdb\xe4\xd3\xd0\xd9\xa8\xa2\xb4\xa1\ \x9b\xae\x9d\x98\xab\x99\x94\xa8\x97\x91\xa6\x94\x8f\xa4\x94\x8f\ \xa4\x92\x8d\xa3\x91\x8b\xa2\x95\x8f\xa6\x9d\x97\xad\x9f\x9a\xb0\ \x97\x90\xaa\x9f\x95\xb0\xd2\xca\xd6\xe0\xd9\xe0\xe3\xdb\xe2\xe4\ \xdc\xe3\xe3\xdd\xe4\xe4\xdc\xe4\xe4\xdc\xe4\xe4\xdd\xe3\xe1\xdd\ \xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xda\xe3\xde\xd9\xe2\ \xda\xd5\xde\xd2\xce\xd8\xc7\xc4\xcf\xbc\xb9\xc7\xad\xab\xbb\x9c\ \x9a\xae\x9c\x99\xac\xad\xa9\xb6\xbe\xb9\xc2\xcd\xc6\xcd\xd7\xd1\ \xd7\xdd\xd7\xdc\xe1\xdb\xe0\xe3\xdd\xe2\xe2\xdb\xe0\xdf\xd8\xdc\ \xdb\xd4\xd9\xd8\xd2\xd8\xd9\xd2\xd9\xdb\xd4\xda\xdb\xd4\xd9\xd9\ \xd2\xd7\xd6\xce\xd5\xd2\xca\xd1\xcf\xc7\xd0\xcc\xc4\xce\xcb\xc4\ \xce\xca\xc4\xcf\xca\xc5\xd0\xca\xc5\xd0\xcb\xc7\xd2\xcd\xc9\xd5\ \xd1\xcd\xd8\xd4\xd0\xdb\xd9\xd5\xe0\xda\xd9\xe3\xdc\xdb\xe5\xdb\ \xda\xe4\xd6\xd5\xdf\xd0\xd0\xdb\xcb\xcb\xd7\xc7\xc7\xd3\xbe\xc0\ \xca\xb5\xb7\xc2\xb2\xb5\xc2\xb5\xb8\xc4\xbb\xbd\xc8\xba\xbd\xc8\ \xb6\xb9\xc5\xb2\xb6\xc3\xae\xb2\xc0\xa0\xa6\xb5\x8b\x93\xa5\x7d\ \x88\x9a\x7b\x86\x98\x71\x79\x8c\x65\x6c\x7f\x65\x69\x7c\x72\x73\ \x86\x84\x81\x95\x8b\x88\x9b\x8c\x8a\x9e\x8b\x8b\x9e\x91\x90\xa2\ \xae\xa8\xb6\xa3\x9b\xac\x9f\x99\xaa\x9d\x97\xa8\x9d\x97\xa8\x9c\ \x96\xa7\x9b\x95\xa6\x98\x92\xa4\x99\x93\xa5\x9d\x98\xa9\x00\x00\ \x00\xb8\xb0\xbb\xbb\xb2\xbc\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb8\xbf\ \xc1\xb8\xc0\xc4\xba\xc1\xc5\xba\xc1\xc5\xbc\xc2\xc6\xbc\xc2\xc5\ \xbc\xc2\xc4\xbc\xc2\xc3\xbb\xc1\xc2\xba\xc1\xc1\xb9\xc0\xc3\xbb\ \xc2\xc3\xbb\xc2\xc5\xbb\xc2\xc6\xbb\xc1\xc6\xbb\xc1\xc6\xb9\xbd\ \xc7\xb8\xbc\xc7\xb9\xbb\xc9\xbb\xbc\xc8\xba\xbc\xc6\xb7\xba\xc4\ \xb5\xb9\xc3\xb4\xb9\xc1\xb4\xb8\xc2\xb3\xb8\xc4\xb5\xb9\xc6\xb8\ \xba\xca\xb9\xbc\xcc\xbc\xbe\xcf\xbf\xc0\xd1\xc1\xc3\xd3\xc5\xc6\ \xd8\xca\xcc\xda\xcd\xcf\xdd\xd0\xd2\xdf\xd3\xd5\xe2\xd6\xd8\xe2\ \xd8\xdb\xe3\xda\xdd\xe3\xdc\xdf\xe4\xdd\xe2\xe3\xdd\xe3\xe4\xde\ \xe3\xe3\xde\xe3\xe1\xdd\xe3\xe2\xde\xe4\xe3\xdf\xe5\xe4\xe0\xe6\ \xe4\xe0\xe6\xe4\xe0\xe6\xe4\xe0\xe6\xe2\xdf\xe5\xe1\xde\xe4\xdf\ \xdc\xe4\xdf\xdc\xe5\xd5\xd2\xdc\xac\xa6\xb7\xa0\x9a\xad\x9d\x97\ \xaa\x9b\x94\xa8\x99\x92\xa7\x96\x91\xa6\x94\x8f\xa4\x92\x8d\xa3\ \x8f\x8a\xa0\x8f\x89\xa0\x93\x8e\xa5\x9e\x99\xae\x9e\x9a\xaf\x95\ \x8d\xa9\xa6\x9d\xb6\xd8\xd0\xd9\xe3\xdc\xe1\xe4\xdd\xe2\xe4\xdd\ \xe3\xe4\xdd\xe3\xe4\xdd\xe4\xe4\xdd\xe4\xe3\xdd\xe4\xe1\xdd\xe4\ \xe2\xdd\xe5\xe2\xdd\xe6\xe0\xdb\xe5\xe0\xdb\xe4\xdf\xda\xe2\xd9\ \xd6\xdf\xd0\xcd\xd8\xc5\xc3\xcf\xbb\xb8\xc7\xad\xab\xbc\xa0\x9e\ \xb1\xa4\xa0\xb1\xb4\xae\xba\xc3\xbb\xc4\xcf\xc8\xcf\xda\xd4\xd9\ \xe1\xdb\xe0\xe6\xe0\xe5\xe8\xe2\xe7\xe6\xe0\xe5\xe5\xdf\xe4\xe4\ \xde\xe3\xe5\xdf\xe4\xe6\xdf\xe4\xe5\xdf\xe4\xe4\xdd\xe2\xe0\xda\ \xe0\xdd\xd6\xdd\xda\xd3\xdb\xd9\xd2\xdb\xd7\xd2\xdb\xd6\xd0\xda\ \xd4\xd0\xda\xd4\xd0\xdb\xd6\xd2\xdd\xd8\xd4\xdf\xda\xd7\xe1\xdc\ \xd8\xe3\xde\xda\xe5\xe0\xdd\xe7\xe0\xdf\xe9\xdf\xde\xe8\xda\xd9\ \xe2\xd2\xd2\xdd\xcc\xcc\xd8\xca\xca\xd6\xc4\xc5\xd0\xb7\xb9\xc6\ \xb0\xb3\xc1\xb0\xb4\xc2\xb1\xb5\xc3\xb0\xb4\xc2\xae\xb3\xc0\xaa\ \xaf\xbd\xa4\xab\xba\x9d\xa5\xb4\x8d\x97\xa8\x7c\x89\x9b\x77\x85\ \x98\x6f\x7b\x8e\x64\x6c\x7f\x65\x6b\x7e\x6e\x70\x83\x7b\x79\x8d\ \x7d\x7b\x8f\x7e\x7b\x90\x7d\x7c\x92\x76\x78\x8e\x97\x93\xa6\xab\ \xa4\xb3\xa6\x9f\xad\xa0\x9b\xab\xa0\x99\xaa\x9e\x98\xa9\x9d\x96\ \xa7\x9b\x95\xa6\x99\x93\xa5\x98\x94\xa4\x00\x00\x00\xb4\xae\xb8\ \xb8\xb0\xba\xba\xb2\xbc\xbd\xb4\xbe\xbf\xb6\xbf\xc0\xb7\xbf\xc0\ \xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc1\xc1\xb9\xc0\xc1\xba\xc0\xc0\xb8\ \xbf\xc0\xb9\xc0\xc0\xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc2\xba\xc1\ \xc5\xba\xc1\xc5\xbb\xc1\xc7\xbb\xc1\xc7\xba\xbf\xc6\xb9\xbc\xc7\ \xb9\xbc\xc8\xba\xbd\xc7\xb9\xbc\xc5\xb7\xbb\xc3\xb6\xba\xc1\xb4\ \xb9\xc0\xb3\xb9\xc1\xb3\xb9\xc3\xb5\xba\xc6\xb8\xbb\xc9\xb9\xbc\ \xcc\xbb\xbe\xce\xbd\xc0\xd0\xc0\xc1\xd2\xc3\xc5\xd5\xc7\xc9\xd8\ \xcb\xcd\xdc\xcf\xd1\xde\xd2\xd4\xe0\xd5\xd8\xe1\xd8\xdb\xe3\xdb\ \xde\xe3\xdc\xe0\xe3\xdd\xe2\xe4\xdd\xe2\xe3\xde\xe3\xe2\xde\xe3\ \xe1\xdd\xe2\xe1\xdd\xe3\xe1\xdd\xe3\xe3\xdf\xe5\xe4\xe0\xe6\xe2\ \xdf\xe5\xe2\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdc\ \xe4\xdb\xd8\xe1\xb4\xae\xbe\x9f\x99\xac\x9d\x97\xab\x9b\x94\xa9\ \x99\x92\xa7\x97\x91\xa6\x96\x90\xa5\x93\x8e\xa3\x91\x8c\xa1\x8e\ \x89\xa0\x8d\x89\xa0\x94\x8f\xa6\x9c\x98\xad\x9d\x98\xae\x95\x8d\ \xa9\xae\xa3\xba\xdf\xd8\xde\xe4\xdd\xe2\xe5\xde\xe2\xe5\xde\xe3\ \xe4\xdd\xe3\xe3\xdc\xe3\xe3\xdd\xe3\xe1\xdd\xe3\xe1\xdc\xe4\xe1\ \xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xde\xd9\xe3\xd8\xd4\ \xdf\xd0\xcc\xd8\xc5\xc3\xd0\xbc\xb9\xc8\xb0\xad\xbd\xa7\xa4\xb4\ \xad\xa7\xb6\xba\xb3\xbe\xc6\xbe\xc6\xd4\xcd\xd3\xde\xd8\xdd\xe5\ \xdf\xe4\xe9\xe3\xe8\xeb\xe5\xea\xeb\xe5\xea\xec\xe6\xeb\xec\xe6\ \xeb\xec\xe6\xeb\xec\xe6\xeb\xec\xe5\xeb\xe9\xe1\xe8\xe7\xdf\xe6\ \xe5\xde\xe5\xe1\xdd\xe4\xe0\xdb\xe4\xde\xd9\xe2\xdc\xd9\xe2\xdd\ \xda\xe3\xdf\xdb\xe5\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe4\xe0\ \xea\xe3\xe0\xea\xe1\xe0\xe9\xe0\xdf\xe9\xdd\xdc\xe6\xd7\xd7\xe1\ \xd0\xd0\xdb\xcd\xcd\xd8\xc8\xc9\xd4\xbe\xc0\xcc\xaf\xb3\xc1\xaa\ \xb0\xbd\xa8\xaf\xbd\xa3\xab\xb9\xa0\xa8\xb6\x9d\xa6\xb4\x9a\xa2\ \xb2\x96\x9f\xaf\x8d\x98\xa8\x7b\x89\x9b\x73\x82\x95\x6a\x79\x8c\ \x5b\x68\x7b\x5d\x65\x78\x70\x72\x86\x8d\x8a\x9c\x82\x7e\x91\x6d\ \x6a\x81\x6c\x6b\x82\x66\x69\x80\x66\x69\x82\xa0\x9c\xae\xaa\xa3\ \xb1\xa5\x9d\xad\xa4\x9d\xad\xa1\x9a\xab\x9e\x97\xa8\x9d\x96\xa7\ \x9c\x96\xa7\x9a\x95\xa6\x00\x00\x00\xb2\xab\xb7\xb5\xae\xba\xb9\ \xb1\xbb\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb6\xc0\xc0\xb7\xbf\xc0\xb8\ \xc0\xc0\xb7\xc1\xc0\xb8\xc0\xc0\xb9\xc0\xbf\xb8\xc0\xbf\xb7\xbf\ \xc0\xb9\xc0\xc1\xb8\xbf\xc0\xb9\xbf\xc1\xb8\xc1\xc5\xbb\xc0\xc5\ \xbb\xc1\xc6\xbb\xc1\xc6\xbb\xc0\xc6\xba\xc0\xc6\xb9\xbe\xc8\xba\ \xbf\xc6\xb9\xbe\xc3\xb7\xbd\xc2\xb6\xbb\xc0\xb3\xbb\xbf\xb3\xb9\ \xc0\xb3\xb9\xc3\xb5\xba\xc6\xb7\xbb\xc8\xba\xbc\xca\xbc\xbe\xcc\ \xbe\xc0\xcf\xc0\xc3\xd1\xc2\xc5\xd2\xc4\xc6\xd6\xc8\xca\xd9\xcd\ \xcf\xdc\xd1\xd3\xdf\xd5\xd8\xe1\xd8\xdb\xe1\xda\xdd\xe2\xdc\xe1\ \xe3\xdc\xe1\xe3\xde\xe2\xe1\xdd\xe2\xe0\xdc\xe3\xe1\xdd\xe3\xe0\ \xdb\xe1\xdf\xdc\xe2\xdf\xdd\xe3\xe0\xde\xe4\xe0\xde\xe4\xdf\xdc\ \xe4\xdf\xdc\xe5\xde\xdb\xe4\xda\xd7\xe0\xc8\xc3\xd0\xb5\xaf\xbf\ \xa4\x9d\xb0\x9b\x94\xa9\x9a\x93\xa8\x9a\x94\xa9\x9a\x94\xa9\x96\ \x91\xa6\x95\x90\xa5\x94\x8f\xa4\x93\x8e\xa4\x8f\x8b\xa1\x8c\x89\ \xa0\x8e\x88\xa1\x94\x8f\xa6\x9b\x97\xad\x9d\x98\xad\x92\x89\xa8\ \xba\xae\xc2\xe1\xda\xe0\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdc\xe2\xe3\ \xdb\xe3\xe3\xdc\xe3\xe1\xdc\xe2\xdf\xdc\xe2\xe0\xdb\xe4\xe1\xdc\ \xe5\xe2\xdd\xe6\xe2\xdc\xe5\xde\xdb\xe4\xde\xdb\xe4\xd9\xd5\xe0\ \xd2\xce\xd9\xca\xc6\xd2\xc0\xbc\xc9\xb4\xb0\xbf\xad\xa8\xb7\xb2\ \xab\xb9\xbd\xb5\xbe\xca\xc2\xc9\xd7\xd0\xd6\xe1\xdb\xe0\xe7\xe1\ \xe6\xec\xe6\xeb\xee\xea\xed\xef\xec\xee\xef\xed\xee\xef\xed\xee\ \xef\xed\xee\xee\xeb\xee\xee\xe9\xed\xec\xe6\xec\xea\xe5\xec\xe7\ \xe3\xe9\xe6\xe2\xea\xe5\xe0\xe9\xe1\xde\xe7\xe0\xdc\xe6\xe1\xde\ \xe8\xe5\xe2\xec\xe7\xe4\xed\xe6\xe3\xec\xe5\xe2\xeb\xe5\xe2\xec\ \xe5\xe2\xeb\xe1\xe0\xe9\xdf\xde\xe8\xdd\xdc\xe6\xd9\xd8\xe2\xd0\ \xd1\xdb\xcb\xcc\xd7\xc1\xc4\xcf\xb0\xb5\xc2\xa4\xab\xba\x9d\xa7\ \xb5\x94\xa1\xaf\x8e\x9c\xaa\x8a\x98\xa7\x88\x97\xa7\x8a\x98\xa8\ \x83\x92\xa2\x72\x84\x96\x6e\x7e\x91\x66\x76\x88\x65\x71\x85\x7b\ \x7e\x91\x92\x90\xa3\xaa\xa4\xb5\x94\x8d\x9e\x61\x5e\x75\x5b\x5b\ \x73\x55\x59\x71\x49\x4f\x6a\x5e\x64\x7d\xa9\xa4\xb4\xb4\xae\xba\ \xb2\xab\xb8\xac\xa4\xb3\xa5\x9e\xad\xa1\x99\xa9\x9e\x97\xa7\x9c\ \x96\xa6\x00\x00\x00\xaf\xa9\xb6\xb3\xad\xb8\xb8\xb0\xbb\xba\xb2\ \xbc\xbc\xb4\xbe\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\ \xbf\xb8\xc0\xbf\xb7\xc1\xbf\xb8\xbf\xbe\xb7\xbe\xc0\xb9\xc0\xc1\ \xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc4\xbb\xc2\xc4\xbb\xc2\xc5\xbc\ \xc3\xc6\xbb\xc2\xc6\xbc\xc3\xc6\xbb\xc1\xc6\xbb\xc2\xc4\xb8\xc0\ \xc1\xb6\xbd\xc0\xb4\xbd\xc0\xb4\xbc\xc1\xb4\xbc\xc2\xb6\xbc\xc4\ \xb6\xbc\xc5\xb7\xbb\xc7\xb9\xbd\xc9\xbb\xbe\xcc\xbe\xc0\xcf\xc1\ \xc3\xd0\xc2\xc4\xd3\xc5\xc7\xd6\xc8\xca\xd8\xcc\xce\xdb\xd1\xd4\ \xdd\xd4\xd7\xe0\xd8\xdb\xe1\xdb\xdf\xe2\xdc\xe1\xe2\xdc\xe1\xe1\ \xdd\xe3\xe1\xdd\xe3\xe1\xdd\xe3\xe0\xdc\xe2\xde\xda\xe0\xdd\xda\ \xe0\xdd\xdb\xe1\xdd\xda\xe2\xdd\xda\xe2\xda\xd6\xe0\xd3\xd0\xda\ \xc0\xbc\xca\xaa\xa3\xb6\xa2\x99\xac\xa1\x98\xab\x9e\x98\xab\x9b\ \x94\xa8\x98\x92\xa7\x95\x90\xa6\x93\x8e\xa4\x93\x8f\xa5\x95\x8f\ \xa5\x95\x91\xa5\x93\x90\xa4\x91\x8c\xa3\x8d\x89\xa0\x8b\x88\xa0\ \x8c\x88\xa1\x94\x90\xa8\x9b\x98\xad\x99\x93\xac\x91\x85\xa7\xc9\ \xbf\xcd\xe2\xdb\xe0\xe2\xdb\xe0\xe2\xdc\xe1\xe2\xdb\xe2\xe2\xdb\ \xe2\xe1\xdc\xe2\xe0\xdc\xe2\xe0\xdb\xe4\xe1\xdc\xe4\xe1\xdc\xe5\ \xe0\xde\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdc\xe5\xdd\xd7\xe1\xd6\ \xd1\xdb\xcc\xc8\xd3\xc4\xbe\xca\xb8\xb1\xbf\xb1\xaa\xb9\xb5\xad\ \xb9\xc0\xb7\xc2\xcc\xc5\xcc\xd7\xd1\xd7\xe2\xdc\xe1\xe9\xe3\xe8\ \xed\xe8\xec\xef\xed\xee\xf0\xf0\xf0\xf0\xf0\xf0\xef\xec\xef\xee\ \xea\xee\xef\xed\xee\xef\xed\xef\xee\xea\xef\xec\xe8\xee\xea\xe6\ \xec\xe2\xde\xe7\xd3\xce\xd7\xc6\xc0\xcb\xc6\xc2\xcd\xd5\xd2\xdd\ \xe1\xdf\xe8\xe6\xe3\xec\xe7\xe4\xed\xe6\xe3\xec\xe5\xe2\xeb\xe3\ \xe2\xeb\xe1\xe0\xe9\xe0\xdf\xea\xde\xdd\xe6\xd6\xd6\xe0\xcf\xcf\ \xda\xc5\xc7\xd1\xb3\xb7\xc5\xa0\xa9\xb7\x93\x9f\xae\x83\x94\xa3\ \x79\x8e\x9c\x74\x8a\x98\x76\x8a\x99\x77\x8a\x9a\x6f\x84\x94\x63\ \x7a\x8b\x62\x78\x8a\x5f\x71\x84\x74\x7e\x92\xa1\xa0\xb0\xa5\xa2\ \xb3\xac\xa7\xb7\x90\x89\x9a\x56\x54\x6a\x4e\x4e\x65\x47\x4a\x62\ \x39\x40\x5a\x2c\x38\x55\x7a\x7d\x94\xb7\xb1\xbd\xb8\xb2\xbd\xb1\ \xab\xb7\xab\xa4\xb2\xa9\xa2\xb1\xa8\xa1\xaf\xa1\x9a\xab\x00\x00\ \x00\xac\xa7\xb5\xb1\xab\xb7\xb6\xaf\xba\xb9\xb1\xbc\xbb\xb3\xbd\ \xbc\xb4\xbe\xbd\xb5\xc0\xbe\xb6\xbf\xbf\xb7\xc1\xbe\xb6\xc1\xbf\ \xb7\xbf\xbf\xb7\xc0\xbf\xb7\xbf\xc0\xb8\xbf\xc1\xb9\xc0\xc1\xb9\ \xc0\xc1\xb9\xc0\xc3\xbb\xc2\xc4\xbc\xc3\xc5\xbd\xc4\xc6\xbd\xc5\ \xc7\xbd\xc5\xc7\xbc\xc4\xc5\xbb\xc2\xc1\xb7\xc0\xbe\xb5\xbe\xbe\ \xb4\xbe\xc0\xb6\xbe\xc2\xb7\xbf\xc5\xb9\xbf\xc5\xb8\xbe\xc7\xb9\ \xbe\xc8\xba\xbe\xca\xbc\xc0\xcc\xbd\xc0\xce\xc0\xc2\xd0\xc2\xc4\ \xd3\xc6\xc9\xd5\xca\xcd\xd7\xce\xd0\xda\xd1\xd4\xdc\xd5\xd8\xdf\ \xd7\xdc\xe1\xdb\xe0\xe2\xdc\xe1\xe3\xdd\xe2\xe3\xdd\xe4\xe1\xdd\ \xe3\xe1\xdd\xe3\xe0\xdc\xe2\xde\xdb\xe1\xdd\xd9\xe0\xdb\xd8\xe1\ \xdb\xd8\xe1\xcf\xcc\xd7\xb3\xaf\xbf\xa5\xa1\xb3\x9f\x98\xac\xa3\ \x9b\xad\xa3\x9b\xac\xa0\x98\xac\x9d\x97\xaa\x9a\x94\xa8\x99\x92\ \xa7\x96\x90\xa5\x93\x8e\xa4\x8f\x8c\xa2\x8e\x8b\xa1\x8e\x8b\xa2\ \x90\x8d\xa3\x90\x8d\xa3\x8d\x8a\xa1\x8c\x88\xa1\x8b\x87\xa0\x8c\ \x87\xa2\x94\x90\xa9\x99\x97\xac\x93\x8d\xa9\x97\x8d\xac\xd0\xc8\ \xd2\xe0\xd9\xde\xdf\xd8\xdd\xdf\xd8\xdf\xe0\xd9\xe0\xe0\xda\xe1\ \xdf\xda\xe2\xdf\xda\xe4\xe0\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe1\ \xde\xe7\xe2\xde\xe7\xe3\xdf\xe7\xe2\xdd\xe5\xde\xd9\xe2\xd8\xd3\ \xdd\xd0\xca\xd5\xc6\xc0\xcc\xba\xb3\xc0\xb2\xa9\xb6\xb7\xad\xb9\ \xc1\xb8\xc1\xca\xc2\xc9\xd6\xcf\xd5\xe0\xda\xdf\xe8\xe1\xe7\xed\ \xe8\xeb\xf0\xee\xef\xf0\xed\xee\xe5\xde\xe3\xdb\xd4\xde\xe8\xe4\ \xea\xef\xec\xef\xef\xec\xef\xed\xe9\xef\xe6\xe1\xe7\xca\xc3\xcd\ \xb7\xaf\xba\xb2\xaa\xb5\xb4\xac\xb7\xb9\xb2\xbd\xc3\xbe\xc9\xd1\ \xce\xd8\xdf\xdd\xe7\xe6\xe3\xec\xe6\xe3\xec\xe3\xe2\xeb\xe2\xe1\ \xea\xe2\xe1\xea\xe1\xe0\xe9\xdb\xdb\xe5\xd2\xd3\xdd\xc8\xca\xd4\ \xb7\xbb\xc8\xa1\xa9\xb7\x8b\x99\xa8\x71\x88\x96\x63\x7e\x8c\x5d\ \x7a\x87\x5b\x78\x85\x59\x77\x86\x52\x71\x81\x52\x6f\x81\x57\x6f\ \x83\x5c\x6f\x83\x83\x8a\x9e\xa2\xa1\xb1\xa4\xa2\xb2\xa7\xa5\xb4\ \x79\x73\x85\x47\x45\x5c\x41\x40\x58\x36\x37\x51\x29\x30\x4a\x24\ \x30\x4c\x36\x40\x5d\x8e\x8c\xa1\xb2\xab\xb9\xad\xa6\xb3\xb1\xaa\ \xb6\xae\xa7\xb4\xa7\xa0\xaf\xa4\x9d\xac\x00\x00\x00\xaa\xa5\xb4\ \xb0\xaa\xb7\xb4\xae\xb9\xb8\xb1\xbb\xbb\xb3\xbd\xbc\xb4\xbe\xbd\ \xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\xbf\xb6\xc1\xbe\xb8\xbe\xbe\xb7\ \xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc0\xb8\xbf\xc0\xb8\xbf\xc2\xba\xc1\ \xc4\xbc\xc3\xc5\xbd\xc4\xc6\xbe\xc5\xc9\xbf\xc7\xc9\xc0\xc7\xc8\ \xc0\xc7\xc4\xbc\xc5\xc0\xb7\xc2\xbe\xb5\xc0\xbe\xb6\xc0\xc0\xb7\ \xbf\xc3\xb8\xbf\xc5\xba\xc0\xc7\xbb\xc0\xc8\xbc\xbf\xca\xbc\xc0\ \xcb\xbd\xc1\xcc\xbe\xc2\xcf\xc0\xc4\xd2\xc4\xc8\xd5\xca\xcd\xd6\ \xcc\xcf\xd8\xd0\xd3\xdb\xd3\xd6\xdd\xd6\xda\xdf\xd9\xde\xe1\xdb\ \xe0\xe2\xdc\xe1\xe3\xdd\xe2\xe3\xdd\xe3\xe2\xdd\xe3\xe1\xdd\xe3\ \xe0\xdc\xe2\xde\xda\xe0\xdd\xd9\xdf\xda\xd6\xde\xb9\xb8\xc6\x9f\ \x9c\xb1\x9b\x97\xac\x9f\x9a\xad\xa0\x9a\xad\xa1\x9a\xac\xa2\x9a\ \xac\x9f\x97\xab\x9d\x97\xaa\x9b\x94\xa8\x98\x92\xa7\x95\x90\xa5\ \x94\x90\xa5\x90\x8d\xa3\x8e\x8c\xa2\x8d\x8a\xa2\x8d\x89\xa2\x8e\ \x8b\xa1\x8e\x8b\xa1\x8d\x89\xa1\x8c\x87\xa1\x8b\x86\xa1\x8b\x87\ \xa2\x93\x8f\xa8\x97\x94\xac\x90\x8a\xa7\x9e\x93\xaf\xd7\xd0\xd7\ \xde\xd7\xdb\xde\xd7\xdc\xdf\xd8\xdf\xde\xda\xe0\xdf\xda\xe3\xe0\ \xdb\xe3\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe1\xdd\xe6\xe3\xde\ \xe7\xe4\xdf\xe7\xe3\xdf\xe7\xe3\xdf\xe6\xe1\xdc\xe5\xdd\xd5\xdf\ \xd3\xcc\xd6\xc9\xc2\xcc\xbc\xb4\xc0\xb3\xaa\xb7\xb6\xac\xb8\xbf\ \xb6\xc0\xca\xc1\xc9\xd6\xcf\xd5\xe1\xda\xdf\xe9\xe2\xe7\xee\xe9\ \xeb\xf0\xeb\xec\xdc\xd3\xd7\xbe\xb4\xc2\xce\xc7\xd2\xdb\xd7\xde\ \xe8\xe3\xea\xed\xe9\xee\xd7\xd1\xd8\xb7\xaf\xb9\xb3\xab\xb6\xb2\ \xaa\xb5\xb3\xab\xb5\xb3\xab\xb6\xb3\xab\xb6\xb6\xaf\xba\xc4\xbf\ \xcc\xdc\xdb\xe5\xe6\xe3\xec\xe5\xe2\xeb\xe4\xe3\xec\xe3\xe2\xeb\ \xe2\xe1\xea\xdf\xde\xe8\xd8\xd7\xe1\xcc\xcd\xd8\xbc\xc0\xcc\xa9\ \xaf\xbd\x8e\x9b\xa9\x67\x7f\x8d\x52\x71\x7e\x4c\x6d\x7b\x47\x6b\ \x79\x43\x67\x76\x3d\x63\x74\x48\x68\x7a\x56\x6f\x83\x62\x76\x8b\ \x8f\x95\xa7\xa2\xa1\xb0\xa4\xa3\xb2\x96\x93\xa3\x57\x55\x69\x3a\ \x39\x52\x31\x31\x4a\x27\x28\x42\x21\x26\x41\x24\x2b\x47\x28\x33\ \x4f\x3c\x46\x62\x8d\x8b\xa1\xaf\xa8\xb7\xad\xa6\xb5\xab\xa4\xb2\ \xa9\xa1\xb0\xa7\xa0\xaf\x00\x00\x00\xa8\xa4\xb3\xaf\xa9\xb6\xb4\ \xad\xb9\xb7\xb1\xbc\xba\xb2\xbc\xbc\xb4\xbe\xbd\xb5\xbf\xbe\xb6\ \xc0\xbf\xb7\xc0\xbe\xb6\xc0\xbf\xb8\xbf\xc0\xb9\xc0\xc2\xba\xc1\ \xc3\xbb\xc2\xc2\xba\xc1\xc2\xba\xc1\xc4\xbc\xc3\xc5\xbd\xc4\xc7\ \xbf\xc6\xc9\xc0\xc7\xcb\xc0\xc8\xca\xc1\xc9\xc9\xc1\xc8\xc4\xbc\ \xc7\xc0\xb9\xc4\xbe\xb8\xc3\xbf\xb8\xc3\xc0\xb7\xc1\xc2\xb8\xc1\ \xc4\xba\xc1\xc7\xbb\xc1\xc8\xbc\xc2\xc9\xbd\xc2\xcc\xbe\xc4\xcd\ \xc1\xc5\xd1\xc5\xc8\xd5\xca\xcd\xd7\xcc\xcf\xd8\xcf\xd2\xd9\xd2\ \xd5\xdb\xd4\xd8\xde\xd7\xdc\xdf\xd9\xde\xe2\xdc\xe1\xe3\xdd\xe2\ \xe5\xdf\xe4\xe5\xdf\xe4\xe4\xde\xe3\xe3\xde\xe4\xe2\xdd\xe3\xdf\ \xdb\xe1\xdc\xd8\xdf\xb3\xb0\xc1\x94\x92\xa8\x95\x91\xa7\x9c\x96\ \xaa\x9e\x98\xaa\x9e\x98\xaa\x9f\x99\xab\xa0\x9a\xab\x9f\x98\xab\ \x9d\x95\xa8\x9b\x95\xa8\x98\x92\xa6\x95\x90\xa5\x94\x8f\xa4\x91\ \x8e\xa4\x8f\x8c\xa2\x8d\x89\xa2\x8d\x8a\xa3\x8c\x89\xa2\x8d\x89\ \xa2\x8d\x89\xa2\x8a\x86\x9f\x89\x86\xa0\x89\x86\xa0\x8b\x87\xa2\ \x93\x90\xa8\x96\x92\xab\x89\x82\xa3\xb4\xac\xbf\xdd\xd6\xdb\xdc\ \xd5\xdc\xdf\xd8\xdf\xde\xd9\xdf\xde\xda\xe2\xe0\xdc\xe4\xe1\xdc\ \xe5\xe1\xdd\xe6\xe1\xdd\xe6\xe2\xdd\xe6\xe2\xde\xe7\xe3\xde\xe7\ \xe3\xde\xe7\xe4\xe0\xe7\xe6\xe1\xe8\xe3\xde\xe5\xde\xd6\xe0\xd5\ \xce\xd8\xcc\xc4\xce\xbd\xb4\xc0\xb6\xac\xb8\xb7\xae\xb9\xc1\xb8\ \xc2\xcb\xc3\xcb\xd7\xd0\xd5\xe2\xdb\xe0\xe9\xe3\xe7\xe9\xe3\xe6\ \xd3\xc9\xcf\xb5\xab\xb8\xb1\xa8\xb5\xb4\xac\xb9\xce\xca\xd5\xe4\ \xe0\xe7\xca\xc2\xca\xb3\xab\xb6\xb3\xab\xb6\xb3\xab\xb6\xb0\xaa\ \xb5\xb0\xaa\xb5\xb1\xaa\xb5\xb2\xaa\xb5\xb4\xad\xb8\xc8\xc5\xd1\ \xe1\xdf\xe9\xe8\xe5\xee\xe6\xe4\xed\xe5\xe4\xed\xe5\xe4\xed\xe1\ \xe0\xea\xdb\xdb\xe4\xd1\xd2\xdd\xc3\xc5\xd0\xb3\xb8\xc4\x9b\xa5\ \xb2\x73\x87\x94\x4e\x6e\x7b\x44\x67\x76\x3e\x63\x72\x39\x62\x71\ \x38\x60\x72\x48\x69\x7d\x5c\x74\x89\x6d\x7f\x94\x97\x99\xab\xa3\ \xa2\xb2\xa5\xa3\xb2\x81\x7e\x90\x4f\x4f\x65\x30\x31\x49\x27\x28\ \x40\x22\x24\x3d\x23\x24\x3e\x28\x2a\x45\x2b\x31\x4c\x32\x3c\x5a\ \x44\x4e\x6a\x84\x85\x9c\xa9\xa4\xb3\xad\xa6\xb5\xac\xa5\xb4\xac\ \xa5\xb3\x00\x00\x00\xa6\xa3\xb2\xad\xa9\xb5\xb3\xad\xb8\xb7\xb1\ \xbb\xbb\xb3\xbd\xbd\xb5\xbf\xbd\xb5\xbf\xbe\xb6\xc0\xbe\xb6\xc0\ \xbf\xb7\xc0\xc0\xb9\xc1\xc2\xba\xc1\xc3\xbc\xc3\xc4\xbc\xc3\xc3\ \xbb\xc2\xc4\xbc\xc3\xc5\xbd\xc4\xc7\xbe\xc5\xca\xbf\xc7\xcb\xc1\ \xc8\xcc\xc2\xc9\xcc\xc3\xca\xc9\xc0\xca\xc5\xbe\xc8\xc1\xbb\xc6\ \xc0\xb9\xc5\xbe\xb8\xc3\xc1\xb8\xc3\xc2\xb8\xc2\xc4\xba\xc1\xc6\ \xbb\xc2\xc7\xbc\xc2\xca\xbe\xc4\xcb\xbf\xc5\xce\xc3\xc8\xd3\xc8\ \xcb\xd6\xcc\xcf\xd8\xcf\xd2\xda\xd2\xd6\xdb\xd4\xd8\xde\xd7\xdc\ \xe0\xd9\xdf\xe2\xdc\xe1\xe3\xdd\xe2\xe4\xde\xe3\xe5\xdf\xe4\xe6\ \xe0\xe5\xe5\xdf\xe4\xe4\xdf\xe4\xe3\xde\xe3\xe2\xdd\xe2\xcf\xca\ \xd4\xa4\x9f\xb2\x98\x94\xa9\x96\x92\xa6\x9c\x96\xa9\x9e\x98\xa9\ \x9e\x98\xaa\x9e\x98\xaa\x9f\x9a\xac\x9f\x98\xab\x9e\x97\xaa\x9b\ \x95\xa8\x98\x92\xa6\x95\x91\xa5\x93\x8f\xa4\x90\x8d\xa4\x8f\x8c\ \xa2\x8d\x8a\xa2\x8d\x8a\xa3\x8d\x8a\xa3\x8c\x89\xa2\x8a\x87\xa1\ \x89\x86\x9f\x88\x85\x9e\x88\x85\x9f\x87\x84\xa1\x8a\x87\xa3\x92\ \x8f\xa8\x91\x8d\xa8\x93\x8c\xaa\xd0\xca\xd3\xdd\xd6\xdd\xdf\xd8\ \xdf\xde\xd9\xe0\xdf\xdc\xe1\xe0\xdc\xe3\xe1\xdc\xe5\xe2\xdd\xe5\ \xe2\xdd\xe5\xe3\xde\xe6\xe3\xde\xe7\xe3\xde\xe6\xe3\xde\xe7\xe4\ \xe0\xe8\xe6\xe2\xe8\xe8\xe2\xe9\xe6\xdf\xe6\xdf\xd8\xdf\xd7\xcf\ \xd7\xcc\xc3\xcd\xbf\xb5\xbf\xb9\xad\xb9\xbd\xb3\xbd\xc3\xba\xc4\ \xcc\xc4\xcc\xd8\xd1\xd6\xde\xd7\xdc\xd1\xc8\xcf\xb9\xb0\xba\xb1\ \xa8\xb4\xb0\xa8\xb3\xad\xa6\xb3\xb5\xae\xbb\xcd\xc8\xd2\xbc\xb5\ \xbf\xaf\xa9\xb4\xb0\xa9\xb4\xb1\xaa\xb5\xb0\xa9\xb4\xb0\xa9\xb4\ \xb0\xa9\xb4\xaf\xa8\xb3\xaf\xa7\xb2\xb7\xb1\xbd\xd1\xd0\xdb\xe6\ \xe3\xed\xe8\xe5\xee\xe7\xe5\xee\xe5\xe4\xed\xe3\xe2\xeb\xdf\xde\ \xe7\xd7\xd8\xe2\xcb\xcc\xd7\xbf\xc2\xcd\xae\xb3\xc0\x91\x9d\xaa\ \x69\x7e\x8e\x4a\x6a\x7a\x3f\x64\x74\x3a\x60\x73\x38\x5f\x73\x46\ \x68\x7d\x64\x7b\x90\x79\x87\x9c\x9d\x9e\xaf\xa4\xa3\xb2\xa6\xa5\ \xb3\x81\x80\x91\x5a\x5b\x72\x34\x36\x4e\x2b\x2c\x44\x30\x2f\x46\ \x39\x35\x4c\x40\x3c\x54\x45\x43\x5b\x49\x4a\x64\x4e\x52\x6d\x52\ \x58\x74\x74\x76\x8d\x9d\x99\xab\xb1\xaa\xb8\xb5\xae\xbc\x00\x00\ \x00\xa5\xa4\xb2\xad\xa9\xb5\xb3\xae\xb9\xb7\xb2\xbc\xbc\xb4\xbe\ \xbd\xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\xc0\xb8\xc2\xc1\xb9\xc3\xc2\ \xba\xc4\xc5\xbd\xc5\xc5\xbd\xc5\xc5\xbd\xc4\xc6\xbe\xc5\xc6\xbe\ \xc5\xc8\xbe\xc6\xca\xc0\xc7\xcc\xc2\xc8\xce\xc4\xca\xcf\xc4\xcb\ \xcd\xc5\xcc\xcb\xc3\xcc\xc7\xc1\xcb\xc4\xbe\xca\xc2\xbc\xc8\xc1\ \xbb\xc6\xc1\xba\xc5\xc2\xba\xc4\xc3\xbb\xc3\xc6\xbb\xc3\xc8\xbc\ \xc3\xca\xbf\xc5\xcc\xc1\xc7\xd1\xc6\xcb\xd5\xca\xce\xd8\xcf\xd2\ \xdb\xd3\xd5\xdc\xd4\xd9\xde\xd7\xda\xe0\xd9\xdc\xe2\xdb\xe0\xe3\ \xdd\xe2\xe4\xde\xe3\xe5\xdf\xe4\xe6\xe0\xe5\xe6\xe1\xe6\xe6\xe0\ \xe5\xe5\xdf\xe4\xe4\xde\xe3\xde\xd9\xe0\xc0\xb9\xc7\xa3\x9d\xb1\ \xa0\x9a\xad\x9b\x95\xa8\x99\x93\xa6\x9a\x94\xa7\x9d\x97\xa9\x9e\ \x99\xab\x9e\x99\xac\x9f\x99\xac\x9e\x98\xab\x9c\x96\xa9\x99\x93\ \xa7\x96\x91\xa6\x93\x8f\xa4\x90\x8e\xa4\x8e\x8c\xa2\x8f\x8c\xa4\ \x8f\x8c\xa5\x8d\x8a\xa3\x8d\x8a\xa3\x8a\x88\xa1\x88\x86\x9f\x88\ \x85\x9f\x85\x84\x9e\x85\x84\xa0\x86\x84\xa1\x8b\x88\xa5\x91\x8f\ \xa9\x8c\x87\xa7\xb3\xac\xc0\xdc\xd6\xdb\xdf\xd8\xde\xe0\xda\xe0\ \xda\xd5\xdc\xd0\xca\xd3\xda\xd7\xdf\xe1\xdc\xe5\xe2\xdd\xe4\xe3\ \xdf\xe5\xe4\xe0\xe7\xe4\xe0\xe7\xe4\xdf\xe8\xe6\xe1\xe8\xe9\xe2\ \xe9\xea\xe3\xea\xea\xe4\xea\xe7\xe0\xe5\xe0\xd9\xde\xd8\xce\xd5\ \xcd\xc2\xc9\xc2\xb5\xbe\xbe\xb2\xba\xc0\xb5\xbf\xc4\xbb\xc5\xcd\ \xc5\xcc\xc9\xc1\xc8\xb7\xaf\xb8\xb0\xa9\xb4\xb0\xa8\xb3\xae\xa8\ \xb3\xad\xa6\xb3\xae\xa7\xb4\xb2\xac\xb8\xb0\xaa\xb5\xae\xa9\xb3\ \xae\xa7\xb2\xaf\xa9\xb4\xb0\xaa\xb5\xb0\xaa\xb5\xaf\xa9\xb4\xae\ \xa8\xb3\xaf\xa7\xb2\xb1\xaa\xb5\xbd\xb8\xc4\xdb\xd9\xe4\xe9\xe6\ \xef\xe9\xe6\xf0\xe8\xe5\xee\xe6\xe5\xee\xe3\xe1\xea\xdd\xdd\xe6\ \xd3\xd3\xde\xc9\xca\xd5\xba\xbd\xc9\xa7\xae\xbb\x8b\x96\xa6\x65\ \x7b\x8d\x46\x67\x7a\x3d\x60\x75\x3a\x5e\x74\x45\x65\x7d\x68\x7d\ \x93\x8b\x92\xa6\xa2\xa1\xb2\xa5\xa4\xb3\xa6\xa3\xb1\x7d\x7d\x91\ \x60\x63\x7c\x43\x42\x5b\x44\x41\x58\x59\x53\x65\x6c\x62\x71\x76\ \x6b\x7b\x7a\x6f\x80\x7d\x72\x87\x7f\x79\x8d\x7b\x78\x8c\x72\x73\ \x87\x78\x7a\x8e\x94\x91\xa4\xb2\xad\xba\x00\x00\x00\xa7\xa4\xb3\ \xae\xab\xb6\xb5\xaf\xba\xb9\xb4\xbd\xbc\xb6\xbf\xbe\xb6\xc0\xbf\ \xb7\xc1\xc1\xb9\xc3\xc2\xba\xc4\xc4\xbc\xc6\xc6\xbe\xc8\xc6\xbe\ \xc8\xc7\xbf\xc9\xc8\xc0\xc7\xc7\xbf\xc6\xc8\xbf\xc6\xcb\xc0\xc8\ \xcd\xc2\xc9\xcf\xc5\xcb\xd0\xc6\xcc\xcf\xc5\xcd\xcd\xc5\xcc\xcc\ \xc4\xcd\xc9\xc4\xce\xc8\xc2\xcd\xc6\xc0\xcb\xc4\xbe\xc9\xc4\xbc\ \xc7\xc3\xbc\xc6\xc4\xbc\xc6\xc6\xbc\xc4\xc9\xbd\xc6\xcb\xc1\xc7\ \xcf\xc5\xcb\xd2\xc8\xce\xd6\xcd\xd1\xda\xd1\xd4\xdd\xd4\xd8\xde\ \xd6\xdb\xdf\xd8\xdb\xe1\xda\xdd\xe3\xdc\xe1\xe3\xdd\xe2\xe5\xdf\ \xe4\xe6\xe0\xe5\xe7\xe0\xe5\xe8\xe1\xe5\xe7\xe1\xe6\xe6\xe0\xe5\ \xe1\xdc\xe1\xc5\xbd\xcc\xa7\xa0\xb4\xa3\x9d\xaf\xa1\x9b\xac\x9f\ \x99\xaa\x9b\x95\xa8\x9a\x94\xa7\x99\x94\xa7\x9b\x96\xa9\x9b\x96\ \xa9\x9e\x98\xab\x9d\x97\xaa\x9d\x97\xaa\x98\x93\xa7\x96\x91\xa6\ \x94\x91\xa5\x92\x8f\xa4\x8f\x8c\xa2\x8f\x8c\xa3\x8e\x8b\xa3\x8b\ \x88\xa1\x8b\x88\xa1\x8b\x88\xa2\x87\x85\x9f\x86\x84\x9e\x85\x83\ \x9e\x82\x82\x9d\x82\x82\x9f\x84\x83\xa0\x8b\x89\xa6\x8b\x89\xa6\ \x9b\x95\xb0\xd5\xcf\xd5\xe0\xd9\xde\xe0\xda\xdf\xd5\xcc\xd3\xaf\ \xa7\xb5\xb1\xac\xba\xd1\xcc\xd6\xe0\xdc\xe3\xe3\xde\xe5\xe4\xe0\ \xe6\xe5\xe1\xe7\xe7\xe2\xe8\xe8\xe2\xe9\xea\xe3\xea\xeb\xe5\xea\ \xed\xe6\xeb\xec\xe5\xea\xe9\xdf\xe4\xe3\xd8\xda\xda\xce\xd1\xd0\ \xc2\xc7\xc4\xb6\xbd\xc1\xb4\xbb\xc2\xb7\xbf\xc1\xb8\xc2\xb6\xad\ \xb7\xb1\xa8\xb4\xb0\xa9\xb4\xaf\xa8\xb3\xad\xa8\xb3\xac\xa6\xb2\ \xad\xa7\xb3\xaf\xa8\xb4\xae\xa9\xb3\xaf\xa7\xb3\xaf\xa7\xb3\xaf\ \xa9\xb4\xb0\xaa\xb5\xb0\xaa\xb5\xaf\xa9\xb4\xae\xa9\xb3\xaf\xa9\ \xb4\xb0\xa9\xb4\xb1\xaa\xb5\xc8\xc5\xd0\xe4\xe2\xeb\xea\xe8\xef\ \xea\xe8\xee\xe9\xe6\xee\xe6\xe4\xed\xe1\xe0\xe9\xdb\xda\xe4\xd1\ \xd1\xda\xc4\xc5\xd0\xb5\xb8\xc5\xa1\xa7\xb7\x83\x8f\xa3\x5a\x71\ \x87\x40\x5f\x76\x3c\x5c\x75\x43\x60\x78\x6f\x7e\x96\x9f\x9f\xb1\ \xa3\xa2\xb2\xa7\xa4\xb3\xa5\xa3\xb2\x79\x79\x8e\x60\x62\x7b\x58\ \x55\x6d\x6b\x63\x76\x83\x76\x85\x93\x86\x92\x9e\x90\x9c\xa5\x97\ \xa4\xa6\x9b\xa7\xa5\x9a\xa8\x9c\x95\xa3\x91\x8e\x9d\x8b\x8b\x9b\ \x88\x88\x9c\x89\x8b\x9e\x00\x00\x00\xab\xa9\xb6\xb2\xae\xba\xb8\ \xb2\xbe\xbb\xb5\xbf\xbd\xb7\xc1\xbf\xb9\xc2\xc1\xbc\xc5\xc4\xbd\ \xc7\xc7\xbf\xc9\xc8\xc0\xca\xca\xc2\xcc\xc9\xc1\xcc\xc9\xc1\xcb\ \xc9\xc1\xc8\xca\xc1\xc8\xcc\xc2\xc9\xcd\xc4\xca\xd0\xc6\xcb\xd1\ \xc6\xcc\xd1\xc7\xcd\xcf\xc6\xcd\xce\xc6\xcd\xcd\xc5\xcf\xcb\xc5\ \xce\xca\xc4\xce\xca\xc4\xcf\xc9\xc3\xce\xc7\xc2\xcc\xc7\xbf\xc9\ \xc7\xbe\xc8\xc9\xc0\xc8\xcb\xc2\xc9\xcf\xc5\xcb\xd2\xc8\xce\xd5\ \xcb\xd0\xd7\xce\xd1\xdb\xd2\xd5\xde\xd5\xd8\xdf\xd8\xdb\xe2\xdb\ \xde\xe3\xdc\xdf\xe4\xdd\xe1\xe5\xde\xe2\xe6\xdf\xe3\xe7\xe0\xe4\ \xe8\xe0\xe4\xe7\xe1\xe3\xe8\xe1\xe5\xe7\xe0\xe5\xd2\xcb\xd5\xac\ \xa2\xb6\xa6\x9c\xb1\xa4\x9c\xae\xa4\x9d\xae\xa2\x9a\xab\x9e\x97\ \xa8\x9b\x95\xa7\x99\x93\xa7\x98\x94\xa8\x9a\x96\xa9\x9c\x97\xaa\ \x9c\x97\xaa\x9b\x96\xaa\x98\x93\xa7\x96\x91\xa6\x93\x90\xa5\x92\ \x90\xa5\x90\x8e\xa3\x8e\x8b\xa2\x8c\x89\xa1\x89\x86\x9f\x87\x85\ \x9e\x87\x87\x9f\x88\x86\x9f\x85\x83\x9e\x83\x82\x9d\x81\x82\x9e\ \x80\x81\x9d\x80\x80\x9e\x81\x82\xa0\x87\x86\xa4\x8c\x89\xa6\xc4\ \xbe\xc9\xdf\xd7\xdb\xd9\xd2\xd8\xc8\xc0\xc9\xb0\xa9\xb6\xa3\x9b\ \xad\xab\xa5\xb5\xd5\xd0\xd9\xe3\xdf\xe5\xe6\xe0\xe7\xe8\xe2\xe9\ \xea\xe3\xea\xea\xe4\xea\xec\xe5\xeb\xec\xe6\xeb\xed\xe6\xeb\xee\ \xe7\xeb\xee\xe6\xe9\xea\xe0\xe3\xe4\xd7\xda\xdb\xcd\xd1\xd0\xc2\ \xc6\xc6\xb7\xbd\xc3\xb6\xbd\xb6\xac\xb7\xb0\xa6\xb2\xb0\xa8\xb3\ \xaf\xa7\xb2\xae\xa6\xb2\xae\xa8\xb3\xad\xa6\xb3\xad\xa6\xb3\xaf\ \xa8\xb4\xaf\xa9\xb4\xb0\xa7\xb3\xaf\xa7\xb3\xaf\xa8\xb4\xb0\xa9\ \xb5\xb0\xaa\xb5\xaf\xa7\xb4\xaf\xa8\xb3\xb0\xa8\xb3\xae\xa8\xb3\ \xae\xa7\xb2\xb5\xb0\xbc\xd7\xd6\xe0\xea\xe8\xee\xea\xe8\xed\xe9\ \xe6\xef\xe9\xe6\xee\xe6\xe3\xec\xe0\xde\xe8\xd7\xd7\xe1\xcd\xcc\ \xd7\xc0\xc1\xce\xb1\xb4\xc3\x9a\xa0\xb3\x76\x83\x99\x4b\x63\x7c\ \x3b\x59\x73\x4b\x63\x7d\x8d\x92\xa7\xa3\xa2\xb2\xa4\xa2\xb2\xa8\ \xa5\xb4\xa5\xa1\xb0\x77\x76\x8c\x63\x62\x7c\x75\x6d\x82\x91\x83\ \x91\xa5\x95\x9f\xb1\xa2\xa9\xb9\xab\xb2\xbd\xb1\xb9\xbf\xb4\xbc\ \xb9\xaf\xb9\xae\xa7\xb1\xa8\xa1\xae\xa2\x9e\xac\x9b\x99\xa9\x96\ \x95\xa7\x00\x00\x00\xb1\xae\xba\xb5\xb1\xbd\xb8\xb4\xbf\xbc\xb6\ \xc1\xbe\xb8\xc3\xc0\xba\xc5\xc4\xbf\xc9\xc7\xc2\xcb\xca\xc3\xcd\ \xcc\xc5\xcf\xce\xc6\xd0\xcc\xc5\xcd\xcc\xc5\xcc\xcc\xc4\xcb\xce\ \xc5\xcb\xcf\xc5\xcb\xd2\xc6\xcc\xd3\xc7\xcd\xd2\xc8\xce\xd2\xc8\ \xce\xd0\xc6\xce\xcf\xc7\xce\xce\xc6\xcf\xcf\xc7\xd1\xce\xc7\xd1\ \xce\xc7\xd1\xce\xc7\xd1\xcd\xc5\xcf\xcb\xc3\xcd\xcb\xc3\xcd\xcd\ \xc5\xcc\xce\xc6\xcd\xd1\xc7\xce\xd5\xcb\xd1\xd7\xce\xd2\xd9\xd0\ \xd3\xdc\xd3\xd6\xde\xd5\xd8\xe2\xd9\xdc\xe3\xdc\xdf\xe5\xde\xe1\ \xe6\xdf\xe2\xe7\xe0\xe3\xe7\xe0\xe4\xe7\xe1\xe3\xe8\xe1\xe3\xe8\ \xe0\xe4\xe8\xe1\xe4\xe3\xdd\xe2\xbc\xb2\xc2\xad\xa3\xb4\xa8\x9e\ \xb1\xa4\x9c\xae\xa6\x9e\xae\xa4\x9c\xac\xa0\x99\xa9\x9d\x97\xa9\ \x9a\x95\xa8\x98\x93\xa7\x98\x93\xa8\x98\x94\xa8\x9a\x96\xaa\x9a\ \x97\xaa\x99\x94\xa8\x97\x91\xa7\x95\x90\xa5\x92\x8f\xa5\x8f\x8d\ \xa3\x8c\x89\xa1\x8a\x88\xa0\x87\x86\x9f\x85\x84\x9d\x84\x84\x9e\ \x85\x84\x9e\x85\x84\x9e\x84\x82\x9d\x81\x80\x9d\x80\x81\x9e\x7d\ \x7f\x9d\x7d\x7f\x9d\x80\x82\xa1\x84\x83\xa2\xac\xa8\xbb\xd7\xcf\ \xd4\xb5\xac\xba\xa2\x9a\xad\xa5\x9f\xb0\xa2\x9c\xad\x9e\x98\xaa\ \xb7\xb0\xbe\xe2\xdd\xe4\xe7\xe0\xe6\xe9\xe3\xe9\xeb\xe4\xea\xec\ \xe5\xea\xed\xe6\xeb\xed\xe6\xea\xef\xe8\xeb\xf0\xe9\xec\xf1\xeb\ \xec\xf0\xe9\xea\xec\xe1\xe2\xe5\xd8\xda\xdc\xcf\xd1\xd1\xc3\xc6\ \xc8\xbb\xc0\xb5\xab\xb5\xaf\xa7\xb2\xaf\xa7\xb2\xad\xa5\xb0\xad\ \xa5\xb2\xad\xa6\xb3\xad\xa6\xb3\xad\xa6\xb2\xae\xa7\xb3\xb1\xa9\ \xb4\xb0\xa8\xb4\xae\xa6\xb3\xad\xa7\xb3\xae\xa7\xb4\xaf\xa8\xb4\ \xae\xa6\xb3\xad\xa7\xb2\xae\xa8\xb3\xad\xa7\xb2\xae\xa6\xb2\xaf\ \xa8\xb4\xc7\xc4\xcf\xe6\xe4\xec\xea\xe8\xee\xea\xe7\xee\xea\xe8\ \xee\xe9\xe6\xee\xe5\xe3\xec\xde\xdc\xe5\xd5\xd4\xde\xca\xca\xd5\ \xbc\xbd\xcb\xaa\xae\xbe\x8e\x93\xa9\x64\x71\x8b\x5d\x6e\x87\x85\ \x8c\xa0\xa0\x9f\xb0\xa3\xa2\xb1\xa6\xa3\xb2\xa6\xa5\xb3\xa1\x9e\ \xad\x74\x71\x88\x78\x71\x86\x95\x88\x95\xad\x9d\xa6\xba\xab\xb1\ \xc5\xb5\xb9\xcb\xbd\xc2\xcd\xc2\xc7\xcd\xc2\xc6\xc7\xbc\xc3\xbd\ \xb5\xbd\xb9\xb0\xb9\xb4\xac\xb8\xa9\xa6\xb3\xa3\x9f\xae\x00\x00\ \x00\xb6\xb2\xbe\xb7\xb3\xbf\xb8\xb4\xc0\xba\xb6\xc1\xbc\xb8\xc3\ \xc1\xbb\xc7\xc5\xbf\xc9\xc9\xc4\xcd\xcd\xc6\xd0\xcf\xc7\xd1\xcf\ \xc7\xd0\xcf\xc7\xcf\xcf\xc7\xce\xd0\xc7\xcd\xd2\xc7\xcd\xd3\xc7\ \xcd\xd3\xc7\xcd\xd3\xc8\xce\xd2\xc8\xce\xd1\xc7\xcd\xd1\xc8\xcf\ \xd0\xc8\xcf\xd1\xc9\xd0\xd0\xc8\xd1\xd1\xca\xd2\xd2\xcb\xd1\xd0\ \xc9\xd1\xcf\xc7\xd0\xce\xc7\xd0\xcf\xc7\xcf\xd1\xc9\xd0\xd3\xca\ \xd0\xd5\xcb\xd1\xd7\xce\xd3\xd9\xcf\xd5\xdb\xd2\xd5\xdd\xd4\xd7\ \xe0\xd7\xda\xe4\xdb\xde\xe6\xdd\xe0\xe7\xe0\xe3\xe8\xe0\xe3\xe7\ \xe1\xe4\xe7\xe1\xe4\xe8\xe1\xe4\xe8\xe1\xe4\xe8\xe1\xe4\xe8\xe0\ \xe3\xde\xd7\xdd\xb6\xab\xbb\xaf\xa5\xb5\xa9\x9f\xb1\xa6\x9d\xaf\ \xa6\x9d\xae\xa6\x9e\xae\xa4\x9c\xac\x9e\x98\xa9\x9b\x95\xa8\x98\ \x94\xa7\x98\x94\xa8\x97\x91\xa7\x98\x93\xa8\x9a\x96\xa9\x99\x95\ \xa9\x97\x93\xa8\x95\x91\xa7\x93\x8f\xa5\x8f\x8c\xa3\x8b\x88\xa0\ \x88\x87\x9f\x85\x84\x9f\x86\x85\x9f\x85\x84\x9e\x84\x84\x9e\x84\ \x83\x9d\x84\x84\x9e\x82\x82\x9e\x80\x81\x9d\x7c\x7f\x9d\x7b\x7d\ \x9c\x7c\x7e\x9d\x7f\x80\xa0\x95\x92\xad\xc2\xb9\xc2\x97\x91\xa5\ \x95\x90\xa6\x9c\x97\xaa\xa1\x9b\xac\xa0\x9a\xab\xa0\x9a\xac\xc8\ \xc2\xcc\xe6\xe1\xe6\xea\xe3\xe8\xec\xe5\xea\xed\xe6\xeb\xee\xe7\ \xeb\xee\xe7\xea\xef\xe8\xeb\xf1\xeb\xec\xf1\xec\xed\xf2\xed\xee\ \xf1\xea\xea\xed\xe3\xe3\xe7\xd9\xda\xdc\xcf\xd1\xcc\xbf\xc4\xb3\ \xa9\xb4\xaf\xa6\xb1\xad\xa5\xb0\xad\xa6\xb1\xac\xa5\xb2\xad\xa6\ \xb3\xad\xa6\xb3\xae\xa7\xb4\xad\xa7\xb3\xae\xa8\xb3\xaf\xa9\xb4\ \xac\xa6\xb2\xac\xa6\xb2\xad\xa6\xb2\xaf\xa8\xb5\xae\xa7\xb4\xad\ \xa7\xb3\xae\xa7\xb3\xad\xa6\xb2\xac\xa6\xb2\xad\xa6\xb3\xb9\xb4\ \xc0\xdf\xdd\xe6\xea\xe8\xef\xe9\xe7\xee\xe6\xe4\xeb\xe9\xe7\xed\ \xe8\xe6\xee\xe4\xe0\xe9\xdb\xd8\xe3\xd3\xd1\xdb\xc5\xc5\xd2\xb6\ \xb6\xc5\xa2\xa4\xb6\x94\x97\xab\x99\x9a\xab\xa0\x9f\xaf\xa2\xa0\ \xb0\xa5\xa2\xb1\xa7\xa4\xb3\xa7\xa4\xb3\xa0\x9d\xad\x78\x72\x89\ \x8c\x81\x92\xab\x9a\xa4\xbe\xae\xb4\xc8\xba\xbd\xd2\xc4\xc6\xd7\ \xcb\xce\xd9\xce\xd1\xd8\xcd\xd0\xd1\xc7\xcb\xca\xbf\xc5\xc5\xbc\ \xc2\xbe\xb7\xc0\xb4\xaf\xb9\xac\xa6\xb3\x00\x00\x00\xb7\xb3\xbe\ \xb9\xb5\xc1\xb9\xb5\xc1\xba\xb6\xc2\xbc\xb8\xc3\xc1\xbc\xc7\xc6\ \xc0\xcb\xca\xc4\xcd\xce\xc6\xd0\xd0\xc9\xd1\xd1\xca\xd1\xd2\xcb\ \xd1\xd2\xc9\xd0\xd3\xc9\xcf\xd5\xca\xd0\xd5\xc9\xcf\xd5\xc9\xcf\ \xd3\xc8\xce\xd3\xc8\xce\xd2\xc8\xce\xd3\xc9\xd0\xd2\xca\xd1\xd3\ \xcb\xd2\xd3\xcb\xd2\xd3\xcb\xd2\xd5\xcd\xd4\xd4\xcc\xd3\xd3\xcb\ \xd2\xd3\xcb\xd2\xd3\xcb\xd2\xd4\xcc\xd3\xd6\xcd\xd4\xd9\xcf\xd5\ \xda\xd0\xd6\xdb\xd2\xd6\xdd\xd3\xd6\xdf\xd6\xd9\xe2\xd9\xdc\xe5\ \xdc\xdf\xe7\xde\xe1\xe8\xe0\xe2\xe9\xe0\xe3\xe8\xe0\xe3\xe9\xe1\ \xe4\xe6\xdf\xe2\xe6\xdf\xe2\xe7\xe0\xe3\xe6\xdf\xe2\xdb\xd3\xd9\ \xb5\xab\xb8\xb1\xa6\xb5\xab\xa1\xb2\xa5\x9d\xaf\xa5\x9d\xae\xa7\ \x9f\xaf\xa6\x9f\xae\xa2\x9c\xad\x9d\x98\xab\x9a\x95\xa9\x99\x94\ \xa7\x97\x93\xa7\x95\x92\xa7\x96\x94\xa8\x98\x96\xa9\x98\x95\xa9\ \x94\x90\xa6\x91\x8e\xa4\x8f\x8c\xa4\x8b\x88\xa1\x87\x86\x9f\x84\ \x83\x9d\x84\x83\x9d\x82\x83\x9d\x82\x82\x9c\x82\x82\x9c\x82\x82\ \x9c\x82\x83\x9d\x7f\x80\x9d\x7d\x7e\x9c\x7b\x7e\x9b\x7a\x7d\x9c\ \x7c\x7d\x9e\x84\x83\xa2\x9f\x9a\xaf\x8e\x8b\xa0\x90\x8e\xa2\x93\ \x90\xa4\x9b\x96\xa8\x9f\x99\xaa\xa0\x9a\xab\xab\xa3\xb3\xdc\xd4\ \xdb\xe9\xe2\xe7\xeb\xe4\xe8\xed\xe6\xe9\xef\xe7\xea\xf0\xe9\xeb\ \xf1\xea\xec\xf1\xeb\xec\xf2\xec\xed\xf2\xed\xed\xf2\xee\xed\xf1\ \xe9\xe8\xed\xe1\xe1\xe4\xd7\xd7\xc8\xbc\xc2\xb0\xa6\xb1\xae\xa6\ \xb1\xac\xa5\xb0\xab\xa5\xb1\xab\xa5\xb1\xab\xa5\xb1\xab\xa4\xb1\ \xad\xa6\xb3\xad\xa7\xb3\xad\xa6\xb3\xad\xa7\xb2\xac\xa5\xb3\xad\ \xa6\xb2\xad\xa6\xb4\xae\xa6\xb3\xad\xa6\xb3\xac\xa5\xb2\xae\xa7\ \xb3\xad\xa7\xb3\xad\xa6\xb3\xab\xa4\xb1\xb1\xab\xb8\xd1\xcf\xd9\ \xdc\xda\xe1\xbd\xb7\xc3\xac\xa5\xb3\xc2\xbe\xcb\xe6\xe3\xeb\xe6\ \xe3\xec\xe0\xdd\xe6\xd8\xd4\xdf\xcd\xcb\xd6\xc1\xc0\xcc\xb6\xb5\ \xc3\xa6\xa5\xb4\xa2\xa1\xb1\xa1\x9f\xb0\xa5\xa2\xb1\xa6\xa3\xb2\ \xa6\xa4\xb3\xa6\xa4\xb2\x9e\x9b\xaa\x7e\x76\x8a\x98\x8b\x9a\xb7\ \xa7\xaf\xc7\xb8\xbc\xd2\xc4\xc6\xda\xcd\xcf\xe0\xd4\xd8\xe2\xd7\ \xda\xe0\xd5\xd8\xd9\xce\xd1\xd2\xc8\xcb\xcc\xc4\xc8\xc4\xbd\xc4\ \xba\xb2\xbd\xb0\xa9\xb6\x00\x00\x00\xbb\xb5\xc0\xbd\xb8\xc3\xbd\ \xb9\xc5\xbe\xba\xc6\xbf\xbb\xc7\xc5\xc0\xcb\xca\xc5\xcf\xcd\xc7\ \xd1\xd0\xc8\xd2\xd1\xc9\xd2\xd3\xcb\xd2\xd3\xcb\xd1\xd4\xcb\xd1\ \xd5\xcb\xd1\xd5\xca\xd0\xd6\xca\xd0\xd5\xca\xd0\xd5\xc9\xcf\xd3\ \xc9\xcf\xd3\xc9\xcf\xd4\xca\xd0\xd5\xcb\xd1\xd5\xcb\xd1\xd5\xcc\ \xd3\xd6\xcd\xd3\xd7\xce\xd4\xd8\xcf\xd5\xd8\xcf\xd5\xd8\xd0\xd6\ \xd9\xd0\xd6\xda\xd0\xd6\xdb\xd0\xd6\xdb\xd2\xd7\xdc\xd3\xd7\xdd\ \xd3\xd7\xdf\xd5\xd8\xe0\xd7\xda\xe3\xda\xdd\xe5\xdd\xde\xe7\xde\ \xe0\xe9\xe1\xe2\xe8\xe0\xe2\xe9\xe1\xe3\xe9\xe1\xe3\xe6\xdf\xe2\ \xe7\xe0\xe3\xe7\xe0\xe3\xe5\xde\xe1\xd9\xd1\xd7\xb6\xac\xb8\xb1\ \xa7\xb4\xae\xa4\xb4\xa4\x9d\xb0\xa5\x9d\xaf\xa6\x9e\xb0\xa7\x9f\ \xb0\xa5\x9d\xae\xa1\x9b\xad\x9d\x98\xab\x99\x94\xa8\x96\x94\xa8\ \x95\x93\xa7\x94\x92\xa7\x95\x93\xa7\x98\x96\xa9\x95\x92\xa7\x92\ \x8f\xa5\x90\x8e\xa5\x8c\x8a\xa3\x87\x86\x9f\x85\x84\x9e\x82\x82\ \x9d\x81\x82\x9d\x81\x83\x9c\x81\x82\x9d\x80\x81\x9c\x80\x81\x9d\ \x80\x80\x9d\x7e\x7f\x9d\x7a\x7d\x9a\x7a\x7e\x9c\x79\x7b\x9c\x7c\ \x7d\x9e\x82\x81\x9e\x86\x84\x9d\x8a\x89\x9e\x8f\x8e\xa1\x97\x94\ \xa6\x9b\x97\xa7\x9e\x99\xa9\x9f\x9a\xaa\xb9\xb2\xbe\xe4\xdd\xe2\ \xec\xe4\xe6\xee\xe4\xe7\xef\xe7\xea\xf0\xea\xeb\xf1\xec\xec\xf2\ \xec\xed\xf3\xec\xee\xf2\xed\xec\xf2\xed\xec\xf2\xec\xeb\xf1\xe7\ \xe7\xe5\xd8\xd9\xc0\xb4\xbc\xaf\xa7\xb2\xad\xa5\xb1\xac\xa5\xb1\ \xac\xa6\xb0\xab\xa5\xb1\xac\xa5\xb1\xac\xa5\xb1\xac\xa5\xb2\xad\ \xa6\xb3\xad\xa6\xb3\xac\xa6\xb2\xac\xa6\xb3\xac\xa6\xb2\xad\xa6\ \xb3\xac\xa7\xb3\xac\xa7\xb3\xac\xa6\xb3\xad\xa7\xb3\xad\xa6\xb3\ \xad\xa6\xb3\xab\xa4\xb1\xa7\xa1\xb0\xaf\xab\xb9\xb0\xaa\xb7\xad\ \xa6\xb2\xb4\xae\xb9\xb1\xab\xb6\xcb\xc7\xd3\xe7\xe5\xee\xe3\xe0\ \xe9\xdd\xda\xe3\xd5\xd1\xdc\xcb\xc9\xd4\xb5\xb2\xbf\xa3\xa1\xb1\ \xa2\x9f\xaf\xa3\xa0\xb0\xa5\xa2\xb1\xa7\xa4\xb3\xa7\xa4\xb3\xa7\ \xa4\xb3\xa1\x9d\xab\x85\x7b\x8d\xa2\x94\xa2\xbd\xaf\xb5\xcd\xbf\ \xc2\xd8\xcb\xcf\xe0\xd5\xd8\xe5\xdb\xde\xe6\xdc\xdf\xe3\xd9\xdb\ \xdd\xd2\xd4\xd6\xcc\xce\xd0\xc6\xca\xc6\xbf\xc6\xbb\xb5\xbf\xb2\ \xab\xb7\x00\x00\x00\xbf\xba\xc4\xc2\xbc\xc7\xc2\xbe\xca\xc4\xc0\ \xcb\xc7\xc3\xce\xcb\xc6\xd0\xce\xc9\xd3\xcf\xc9\xd2\xd1\xc9\xd3\ \xd2\xc9\xd2\xd2\xca\xd1\xd2\xca\xd1\xd4\xca\xd1\xd4\xca\xd0\xd4\ \xca\xd0\xd3\xc9\xcf\xd5\xca\xcf\xd6\xc9\xcf\xd5\xc9\xcf\xd5\xca\ \xd0\xd5\xcb\xd1\xd6\xcc\xd2\xd7\xcc\xd2\xd7\xcd\xd3\xd8\xce\xd4\ \xd9\xcf\xd4\xda\xd1\xd5\xdc\xd2\xd6\xdd\xd3\xd8\xde\xd4\xd9\xde\ \xd4\xd9\xdd\xd3\xd8\xdd\xd2\xd7\xde\xd4\xd7\xdf\xd4\xd8\xe0\xd5\ \xd8\xe1\xd7\xda\xe5\xda\xdd\xe6\xdd\xde\xe6\xde\xdf\xe8\xe0\xe1\ \xe9\xe0\xe1\xea\xe1\xe2\xd7\xcc\xd2\xd4\xc9\xd1\xe7\xe0\xe3\xe6\ \xdf\xe2\xe5\xdd\xe0\xdd\xd5\xd9\xbb\xb1\xbc\xb2\xa8\xb5\xb0\xa6\ \xb5\xa5\x9d\xb0\xa1\x9b\xae\xa5\x9d\xb0\xa7\x9e\xb0\xa6\x9f\xb0\ \xa3\x9d\xaf\x9f\x9a\xad\x9a\x97\xaa\x95\x93\xa7\x95\x93\xa7\x94\ \x92\xa6\x94\x92\xa6\x96\x94\xa7\x97\x95\xa9\x93\x90\xa6\x91\x8e\ \xa5\x8d\x8b\xa3\x89\x88\xa1\x84\x84\x9e\x81\x82\x9d\x7f\x80\x9c\ \x7e\x81\x9d\x7f\x81\x9d\x80\x81\x9d\x80\x81\x9d\x80\x80\x9e\x7e\ \x7e\x9c\x7b\x7e\x9c\x7a\x7e\x9c\x79\x7c\x9c\x79\x7b\x9d\x7b\x7b\ \x9b\x7e\x7f\x9b\x80\x81\x9a\x8b\x8b\x9f\x96\x94\xa4\x9b\x97\xa7\ \x9b\x98\xa8\x9b\x97\xa7\x9c\x97\xa7\xbf\xb7\xc1\xe7\xdf\xe2\xed\ \xe3\xe6\xee\xe5\xe8\xf1\xe9\xeb\xf2\xec\xed\xf2\xed\xee\xf2\xed\ \xee\xf1\xec\xec\xf1\xec\xeb\xf2\xed\xeb\xf2\xeb\xeb\xe1\xd5\xd6\ \xb8\xad\xb6\xad\xa6\xb1\xab\xa4\xb0\xaa\xa5\xaf\xac\xa5\xb1\xaa\ \xa3\xb0\xab\xa4\xb1\xab\xa5\xb2\xac\xa5\xb2\xac\xa5\xb2\xab\xa4\ \xb1\xab\xa5\xb1\xaa\xa5\xb1\xa9\xa5\xb1\xaa\xa5\xb1\xab\xa6\xb3\ \xac\xa6\xb2\xab\xa5\xb2\xac\xa6\xb2\xad\xa6\xb3\xac\xa6\xb2\xa7\ \xa1\xae\xa8\xa3\xb1\xbb\xb6\xbf\xbd\xb8\xc1\xb6\xb0\xba\xb5\xae\ \xb9\xb2\xac\xb7\xb3\xac\xb9\xd9\xd6\xe0\xe6\xe3\xec\xe2\xdf\xe8\ \xdb\xd8\xe2\xcf\xcb\xd4\xaa\xa7\xb5\xa2\x9f\xaf\xa2\x9f\xaf\xa4\ \xa1\xb0\xa6\xa3\xb2\xa7\xa4\xb3\xa7\xa4\xb4\xa8\xa5\xb4\xa2\x9c\ \xaa\x8b\x80\x91\xa9\x9b\xa7\xc1\xb2\xb9\xd0\xc2\xc6\xda\xcf\xd2\ \xe2\xd7\xda\xe6\xdb\xde\xe5\xdb\xde\xe2\xd7\xd9\xdb\xd0\xd2\xd6\ \xcb\xce\xcf\xc6\xca\xc5\xbe\xc6\xba\xb4\xbe\xb5\xae\xb8\x00\x00\ \x00\xc6\xbe\xc8\xc7\xc1\xcb\xc9\xc4\xcd\xcb\xc6\xd1\xcc\xc8\xd3\ \xcf\xc9\xd5\xd1\xcb\xd5\xd0\xcb\xd4\xcf\xc8\xd2\xcf\xc7\xd0\xcf\ \xc7\xcf\xcf\xc7\xce\xd1\xc8\xcf\xd2\xc7\xce\xd3\xc9\xcf\xd4\xc9\ \xcf\xd4\xc9\xd0\xd5\xcb\xcf\xd6\xcb\xd0\xd7\xcc\xd0\xd8\xcd\xd0\ \xd9\xce\xd1\xd9\xce\xd1\xda\xcf\xd2\xdb\xd0\xd3\xdb\xd1\xd4\xde\ \xd3\xd6\xe0\xd5\xd8\xe2\xd8\xda\xe2\xd8\xdb\xe2\xd7\xda\xe1\xd6\ \xd9\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd6\xd8\xe3\xd8\xda\ \xe5\xda\xdc\xe7\xdc\xde\xe8\xdd\xdf\xe8\xdd\xdf\xe9\xde\xe0\xea\ \xe1\xe2\xd6\xc9\xd0\xb0\xa0\xb4\xbe\xb2\xc1\xd2\xc7\xcf\xe2\xd9\ \xdc\xe1\xd8\xdb\xc5\xba\xc3\xb2\xa8\xb5\xb2\xa8\xb5\xa8\x9f\xb1\ \x9c\x96\xab\xa1\x9b\xaf\xa3\x9d\xaf\xa4\x9e\xaf\xa4\x9e\xaf\xa1\ \x9c\xae\x9d\x99\xac\x97\x94\xa7\x95\x93\xa7\x96\x94\xa8\x95\x92\ \xa8\x94\x91\xa6\x95\x92\xa8\x95\x92\xa8\x91\x8e\xa5\x8e\x8b\xa4\ \x8a\x89\xa2\x84\x84\x9e\x81\x82\x9d\x80\x81\x9d\x7d\x80\x9c\x7e\ \x80\x9c\x7e\x7f\x9b\x7e\x7e\x9b\x7f\x7f\x9c\x7e\x7e\x9c\x7e\x7f\ \x9e\x7c\x80\x9d\x7a\x7c\x9c\x78\x7a\x9b\x77\x78\x9a\x7a\x7a\x99\ \x79\x7a\x95\x88\x87\x9b\x97\x94\xa4\x9a\x96\xa6\x9c\x98\xa9\x99\ \x96\xa6\x99\x95\xa5\x98\x93\xa4\xbd\xb5\xbf\xe7\xde\xe1\xed\xe5\ \xe7\xef\xe7\xe8\xf1\xeb\xec\xf1\xec\xed\xf2\xed\xee\xf3\xee\xec\ \xf3\xee\xec\xf2\xed\xeb\xf2\xeb\xea\xdb\xce\xd1\xb3\xaa\xb4\xac\ \xa4\xaf\xa9\xa3\xaf\xaa\xa3\xaf\xa9\xa2\xaf\xaa\xa3\xb0\xaa\xa3\ \xb0\xa9\xa4\xb0\xab\xa4\xb1\xac\xa4\xb1\xab\xa5\xb2\xa9\xa4\xb1\ \xab\xa5\xb1\xa9\xa6\xb1\xaa\xa6\xb2\xaa\xa6\xb2\xab\xa6\xb3\xab\ \xa5\xb2\xab\xa5\xb1\xab\xa5\xb2\xab\xa5\xb2\xac\xa7\xb3\xb9\xb4\ \xbe\xc1\xbc\xc4\xbb\xb3\xbd\xb8\xb1\xbc\xb1\xab\xb6\xad\xa6\xb3\ \xad\xa7\xb4\xc7\xc2\xce\xe8\xe6\xed\xe8\xe3\xec\xe1\xdd\xe6\xc7\ \xc3\xcd\xa5\xa2\xb1\xa1\x9e\xaf\xa3\xa0\xb0\xa4\xa1\xb1\xa6\xa3\ \xb2\xa7\xa4\xb3\xa7\xa5\xb3\xab\xa7\xb4\xa0\x98\xa5\x8e\x82\x91\ \xae\xa0\xab\xc4\xb6\xbb\xd2\xc4\xc8\xdb\xcf\xd1\xe1\xd6\xd9\xe3\ \xd8\xdb\xe1\xd6\xd9\xdc\xd1\xd3\xd7\xcc\xce\xd0\xc7\xca\xca\xc2\ \xc7\xc2\xba\xc3\xb9\xb2\xbc\xb6\xad\xb7\x00\x00\x00\xc8\xc0\xc9\ \xca\xc3\xcd\xcc\xc7\xd0\xcf\xc9\xd3\xcf\xc9\xd4\xd0\xca\xd5\xd0\ \xca\xd6\xcf\xca\xd4\xcd\xc7\xd1\xcd\xc5\xcf\xce\xc6\xce\xce\xc6\ \xcd\xce\xc6\xcd\xd1\xc6\xce\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\ \xd6\xcb\xce\xd6\xcb\xcf\xd8\xcc\xcf\xd9\xcd\xcf\xdb\xce\xd1\xdb\ \xcf\xd1\xdd\xd0\xd3\xdd\xd1\xd3\xdf\xd3\xd5\xe1\xd5\xd7\xe3\xd7\ \xda\xe5\xd9\xdc\xe6\xda\xdc\xe5\xd9\xdc\xe4\xd8\xdb\xe2\xd7\xda\ \xe1\xd5\xd8\xe1\xd5\xd7\xe2\xd6\xd8\xe4\xd8\xda\xe4\xd9\xdb\xe6\ \xdb\xdd\xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xe9\xde\xe0\xdf\xd4\ \xd7\xb8\xa7\xb6\xa7\x97\xb0\xa4\x92\xaf\xbb\xac\xbe\xdb\xd1\xd6\ \xd0\xc6\xcb\xb4\xa9\xb6\xb1\xa7\xb4\xaf\xa6\xb4\x99\x93\xa9\x99\ \x93\xa9\x9d\x97\xad\xa1\x9b\xaf\xa2\x9d\xaf\xa2\x9d\xaf\xa1\x9c\ \xaf\x9d\x99\xac\x97\x95\xa9\x97\x94\xa8\x95\x94\xa9\x93\x92\xa7\ \x94\x91\xa7\x96\x93\xa8\x93\x91\xa6\x8e\x8d\xa4\x8a\x8a\xa2\x86\ \x85\x9f\x83\x83\x9e\x81\x83\x9e\x7e\x81\x9d\x7d\x7f\x9c\x7d\x7e\ \x9b\x7b\x7d\x9b\x7b\x7c\x9a\x7d\x7e\x9c\x7e\x7f\x9d\x7d\x81\x9f\ \x7c\x80\x9d\x79\x7a\x9b\x76\x78\x9a\x77\x77\x97\x74\x74\x91\x7f\ \x7e\x96\x95\x91\xa3\x9b\x96\xa7\x9d\x97\xa8\x9c\x96\xa7\x9b\x96\ \xa7\x98\x95\xa6\x9a\x95\xa6\xc1\xb8\xc2\xea\xe1\xe3\xf0\xe6\xe8\ \xf0\xe9\xe9\xf1\xeb\xeb\xf2\xed\xed\xf2\xed\xec\xf2\xee\xec\xf4\ \xed\xea\xf2\xea\xe7\xd5\xc8\xcb\xb2\xa9\xb3\xab\xa4\xb0\xa9\xa2\ \xb0\xa9\xa2\xaf\xa9\xa3\xb0\xa9\xa3\xb0\xa8\xa3\xaf\xa9\xa3\xaf\ \xaa\xa4\xb1\xaa\xa4\xb1\xaa\xa6\xb2\xa9\xa5\xb0\xaa\xa4\xb1\xaa\ \xa6\xb2\xa9\xa5\xb1\xaa\xa6\xb2\xab\xa5\xb2\xaa\xa4\xb1\xac\xa6\ \xb3\xac\xa7\xb3\xae\xa8\xb4\xb8\xb2\xbc\xc1\xbc\xc5\xbd\xb6\xc0\ \xb8\xb1\xbc\xb5\xae\xb9\xb1\xab\xb6\xab\xa6\xb2\xaa\xa4\xb1\xb3\ \xae\xbc\xe1\xde\xe6\xeb\xe7\xec\xe0\xdb\xe3\xb6\xb1\xbf\xa2\x9f\ \xaf\xa2\x9f\xaf\xa5\xa0\xaf\xa6\xa2\xb1\xa6\xa3\xb2\xa6\xa3\xb2\ \xa9\xa5\xb3\xac\xa8\xb4\x9a\x90\x9c\x90\x81\x90\xb1\xa3\xab\xc6\ \xb8\xbd\xd2\xc4\xc8\xd8\xcd\xd0\xdd\xd2\xd5\xde\xd3\xd6\xd9\xcf\ \xd1\xd3\xc8\xcb\xce\xc4\xc7\xc9\xc0\xc4\xc4\xbc\xc3\xbd\xb6\xbf\ \xb6\xaf\xb8\xb5\xac\xb5\x00\x00\x00\xc6\xbe\xc8\xca\xc3\xcc\xcb\ \xc6\xcf\xcf\xca\xd3\xd0\xcb\xd6\xd0\xcb\xd6\xcf\xcb\xd6\xce\xc9\ \xd4\xcc\xc7\xd1\xcc\xc5\xcf\xcc\xc4\xce\xcc\xc4\xcb\xcc\xc4\xcb\ \xcf\xc4\xcb\xd1\xc7\xcd\xd2\xc6\xcd\xd4\xc9\xcd\xd6\xca\xce\xd7\ \xcb\xce\xda\xcd\xcf\xdb\xce\xd0\xdd\xd0\xd2\xdd\xd0\xd2\xdd\xd0\ \xd2\xdf\xd2\xd4\xe2\xd5\xd6\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\xdd\ \xe8\xdb\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe5\xd9\xdb\xe4\xd7\xd9\xe3\ \xd6\xd8\xe2\xd5\xd7\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd9\xda\xe6\xda\ \xdc\xe6\xdb\xdd\xe7\xdb\xdd\xe8\xdd\xdd\xe7\xdc\xdc\xd9\xcb\xcf\ \xb7\xa7\xb7\xa7\x97\xb0\xa0\x8f\xae\xb1\x9f\xb7\xd1\xc6\xcc\xba\ \xaf\xbb\xb1\xa7\xb4\xb3\xa9\xb6\xa1\x9a\xae\x94\x90\xa7\x95\x92\ \xa9\x9a\x95\xab\x9d\x98\xad\x9f\x9b\xaf\x9f\x9a\xae\x9e\x9a\xae\ \x9b\x99\xac\x97\x96\xaa\x95\x93\xa8\x94\x92\xa8\x93\x91\xa7\x93\ \x91\xa7\x93\x92\xa8\x8e\x8f\xa6\x8b\x8b\xa3\x89\x88\xa2\x85\x86\ \xa1\x82\x83\xa0\x80\x81\x9d\x7e\x80\x9c\x7c\x7d\x9b\x77\x7b\x98\ \x71\x76\x94\x79\x7c\x99\x7e\x7f\x9d\x7e\x82\x9f\x7d\x81\x9e\x78\ \x7c\x9c\x75\x76\x99\x75\x75\x96\x73\x72\x91\x79\x79\x91\x90\x8d\ \xa0\x9b\x95\xa6\x9d\x97\xa8\x9c\x96\xa7\x9c\x97\xa7\x99\x96\xa6\ \x97\x93\xa5\x9c\x96\xa7\xd1\xc6\xcd\xf0\xe5\xe6\xf0\xe7\xe8\xf1\ \xe9\xe9\xf1\xea\xea\xf2\xeb\xeb\xf2\xec\xeb\xf4\xed\xea\xf0\xe6\ \xe4\xcd\xc0\xc5\xb0\xa7\xb2\xab\xa3\xb1\xa9\xa2\xaf\xa9\xa2\xaf\ \xa8\xa2\xaf\xaa\xa3\xb0\xa8\xa3\xaf\xa8\xa2\xaf\xa9\xa4\xb0\xa9\ \xa5\xb1\xa8\xa4\xb3\xa7\xa3\xb0\xa8\xa4\xb1\xaa\xa5\xb2\xa9\xa5\ \xb2\xa9\xa5\xb1\xaa\xa5\xb2\xb4\xaf\xba\xbe\xb9\xc3\xc0\xbc\xc4\ \xbd\xb8\xc1\xbf\xb9\xc3\xc1\xbc\xc5\xba\xb3\xbc\xb6\xae\xb9\xb1\ \xac\xb6\xb0\xa9\xb5\xa8\xa2\xb0\xa6\xa1\xb0\xa6\xa1\xb0\xcf\xca\ \xd5\xeb\xe7\xed\xd1\xcc\xd5\xa7\xa4\xb3\xa2\x9f\xaf\xa4\xa0\xb0\ \xa6\xa2\xb1\xa6\xa3\xb2\xa5\xa2\xb1\xa8\xa4\xb2\xaa\xa6\xb2\xad\ \xa8\xb4\x90\x83\x90\x93\x82\x8e\xb5\xa5\xac\xc6\xb8\xbc\xcf\xc3\ \xc6\xd5\xca\xcd\xd7\xcd\xd0\xd5\xcb\xcf\xce\xc5\xc9\xc7\xbe\xc2\ \xc2\xba\xbe\xbd\xb6\xbd\xba\xb4\xbd\xb5\xb0\xb9\xad\xa8\xb2\xb0\ \xa8\xb2\x00\x00\x00\xc3\xbb\xc5\xc8\xc1\xcb\xcb\xc5\xcf\xcf\xca\ \xd3\xd1\xcc\xd7\xd0\xcc\xd7\xd0\xcb\xd6\xcd\xc9\xd4\xcc\xc6\xd1\ \xcb\xc6\xd0\xcb\xc3\xcd\xca\xc2\xc9\xca\xc1\xc8\xcd\xc2\xc9\xcf\ \xc5\xcb\xd2\xc6\xcb\xd4\xc8\xcb\xd7\xca\xcd\xda\xcc\xcf\xdb\xce\ \xd0\xdd\xd0\xd2\xde\xd2\xd3\xdf\xd3\xd4\xe0\xd3\xd5\xe1\xd5\xd6\ \xe3\xd6\xd8\xe6\xd9\xdb\xe8\xdb\xdc\xe9\xdc\xdd\xea\xdd\xde\xe9\ \xdd\xde\xe9\xdc\xde\xe7\xda\xdc\xe5\xd8\xda\xe3\xd6\xd8\xe2\xd5\ \xd7\xe2\xd6\xd7\xe3\xd7\xd8\xe4\xd8\xd8\xe4\xd9\xd9\xe6\xd9\xd9\ \xe6\xda\xda\xe6\xda\xda\xe8\xdb\xdb\xe7\xdb\xdb\xd7\xca\xcb\xb4\ \xa4\xb6\xa8\x99\xb2\xa1\x8f\xaf\xa9\x97\xb2\xb7\xa9\xba\xb1\xa6\ \xb4\xb1\xa8\xb4\xae\xa4\xb3\x98\x93\xa9\x94\x90\xa8\x94\x91\xa9\ \x97\x93\xaa\x9a\x96\xac\x9b\x98\xad\x9a\x99\xad\x9c\x9a\xae\x9a\ \x98\xac\x96\x94\xaa\x95\x93\xa9\x92\x92\xa7\x8f\x90\xa5\x90\x91\ \xa7\x8f\x90\xa6\x8d\x8d\xa5\x8c\x8c\xa4\x87\x87\xa1\x85\x86\xa1\ \x82\x83\x9f\x80\x81\x9e\x7a\x7e\x9b\x72\x78\x95\x4d\x63\x79\x5b\ \x6a\x83\x7a\x7e\x9c\x7e\x82\x9f\x7e\x82\x9f\x79\x7e\x9d\x74\x77\ \x99\x72\x73\x95\x72\x71\x90\x76\x75\x8e\x8c\x89\x9d\x9a\x95\xa6\ \x9d\x97\xa8\x9d\x98\xa9\x9c\x98\xa8\x99\x96\xa6\x96\x94\xa4\x94\ \x91\xa4\xa8\xa0\xaf\xdf\xd4\xd8\xec\xe1\xe3\xef\xe5\xe6\xf0\xe7\ \xe7\xf1\xe9\xe9\xf2\xea\xe9\xf3\xec\xe9\xec\xe2\xe1\xc4\xb8\xbe\ \xac\xa4\xb1\xaa\xa3\xb0\xa9\xa3\xaf\xa7\xa0\xae\xa8\xa2\xae\xa8\ \xa2\xaf\xa7\xa3\xaf\xa6\xa2\xaf\x99\x99\xaa\x7e\x86\xa1\x9b\x9c\ \xae\xa4\xa1\xb0\x9f\x9d\xad\xa5\xa2\xb0\xa7\xa3\xb2\xa9\xa5\xb2\ \xb2\xae\xb9\xbf\xba\xc3\xbf\xba\xc3\xc0\xbb\xc4\xc1\xbc\xc5\xbf\ \xba\xc3\xbc\xb6\xc0\xb5\xaf\xba\xb5\xaf\xba\xb2\xac\xb7\xaf\xa8\ \xb5\xa9\xa4\xb0\xa4\x9f\xae\xa1\x9d\xad\xc5\xc1\xce\xe6\xe2\xe8\ \xba\xb4\xc1\xa2\x9e\xaf\xa3\xa0\xaf\xa3\xa0\xaf\xa5\xa2\xb1\xa5\ \xa1\xb1\xa5\xa2\xb1\xa6\xa3\xb1\xaa\xa6\xb2\xac\xa7\xb3\x82\x73\ \x81\x96\x85\x91\xb5\xa5\xab\xc3\xb5\xb9\xca\xbe\xc1\xcf\xc5\xc8\ \xcf\xc6\xca\xca\xc1\xc7\xc0\xb9\xbe\xb8\xb1\xb6\xb1\xab\xb3\xad\ \xaa\xb4\xab\xa9\xb4\xa7\xa4\xae\xa4\xa0\xab\xab\xa6\xb0\x00\x00\ \x00\xc2\xba\xc4\xc6\xbe\xc8\xcb\xc3\xcd\xcf\xc8\xd2\xd1\xcc\xd5\ \xd2\xcd\xd6\xd1\xcc\xd6\xcf\xc9\xd4\xcd\xc7\xd2\xcc\xc5\xcf\xca\ \xc2\xcc\xc9\xc1\xc9\xca\xc0\xc8\xcc\xc0\xc7\xce\xc3\xc9\xd1\xc6\ \xc9\xd5\xc7\xcb\xd7\xca\xcc\xda\xcd\xcf\xdd\xcf\xd0\xde\xd1\xd3\ \xe0\xd2\xd3\xe1\xd4\xd5\xe2\xd4\xd6\xe4\xd6\xd7\xe6\xd8\xda\xe8\ \xdb\xdb\xea\xdc\xdd\xea\xdd\xde\xea\xde\xde\xea\xde\xde\xe9\xdd\ \xdd\xe8\xdc\xdc\xe7\xda\xdb\xe5\xd7\xd8\xe3\xd5\xd6\xe2\xd4\xd5\ \xe2\xd5\xd6\xe3\xd5\xd6\xe3\xd7\xd7\xe4\xd7\xd7\xe5\xd8\xd8\xe6\ \xd9\xda\xe6\xd9\xda\xe7\xda\xda\xe5\xd8\xd8\xcd\xbc\xc2\xb1\xa1\ \xb3\xaa\x9a\xb3\xa4\x93\xb0\x9e\x8c\xae\xa4\x95\xb0\xad\xa1\xb2\ \xb0\xa7\xb6\xa3\x9c\xb0\x96\x93\xaa\x95\x91\xaa\x94\x91\xaa\x95\ \x92\xaa\x97\x94\xab\x98\x96\xac\x98\x96\xab\x97\x96\xab\x96\x94\ \xaa\x93\x93\xa8\x92\x93\xa8\x90\x91\xa6\x8f\x90\xa7\x8f\x90\xa7\ \x8f\x8f\xa7\x8d\x8d\xa6\x8c\x8a\xa4\x87\x87\xa2\x84\x85\xa1\x82\ \x84\xa0\x7d\x80\x9d\x72\x79\x96\x49\x64\x77\x46\x62\x73\x70\x77\ \x93\x7c\x7f\x9e\x7c\x81\x9e\x78\x7e\x9c\x73\x78\x98\x6c\x6d\x90\ \x6d\x6e\x8d\x70\x70\x8c\x86\x83\x99\x98\x93\xa4\x9d\x97\xa8\x9d\ \x98\xa9\x9b\x98\xa8\x99\x96\xa7\x97\x94\xa6\x95\x93\xa6\x97\x92\ \xa5\xae\xa5\xb3\xc8\xbb\xc6\xd8\xcb\xd2\xe7\xdc\xde\xef\xe5\xe5\ \xf1\xe7\xe7\xf2\xe8\xe6\xe2\xd5\xd5\xb8\xae\xb7\xa8\xa3\xb0\xa8\ \xa2\xaf\xa5\xa1\xad\x9e\x9c\xab\xa6\xa1\xae\xa6\xa2\xb0\xa6\xa2\ \xaf\xa6\xa1\xaf\x8d\x91\xa6\x67\x77\x96\x93\x95\xa9\xa2\x9f\xaf\ \x7d\x82\x99\x93\x94\xa7\xa2\xa0\xb0\xa8\xa6\xb3\xbb\xb6\xc0\xbe\ \xb9\xc2\xbc\xb7\xc1\xbe\xba\xc2\xbc\xb7\xc1\xb9\xb3\xbe\xb7\xb0\ \xbb\xb4\xae\xb9\xb3\xad\xb8\xb0\xaa\xb5\xb0\xa9\xb5\xab\xa6\xb2\ \xa3\x9e\xad\x9e\x9b\xab\xc0\xbd\xca\xcf\xca\xd3\xa4\xa1\xb0\xa2\ \x9d\xae\xa3\x9f\xaf\xa6\xa1\xb1\xa4\xa1\xb1\xa4\xa1\xb0\xa6\xa3\ \xb2\xa9\xa5\xb2\xab\xa8\xb3\x9d\x95\xa3\x80\x71\x7f\x9b\x89\x95\ \xb3\xa3\xaa\xbf\xb1\xb6\xc5\xb9\xbd\xc8\xbd\xc3\xc6\xbe\xc4\xbc\ \xb5\xbb\xad\xa7\xaf\x9d\x9c\xa5\x97\x98\xa3\x98\x9b\xa6\x97\x9a\ \xa7\x93\x95\xa1\x98\x96\xa3\xa2\x9f\xaa\x00\x00\x00\xc2\xba\xc4\ \xc7\xbf\xc9\xcb\xc4\xcd\xcf\xc8\xd2\xd1\xcb\xd5\xd1\xcc\xd5\xd0\ \xcb\xd5\xd0\xcb\xd4\xcf\xc8\xd2\xce\xc7\xd0\xcc\xc4\xcd\xca\xc2\ \xc9\xca\xbf\xc8\xcb\xc1\xc7\xcf\xc3\xc8\xd2\xc5\xc9\xd4\xc7\xca\ \xd7\xc9\xcb\xda\xcd\xce\xdd\xcf\xd0\xe0\xd2\xd3\xe1\xd3\xd4\xe2\ \xd4\xd5\xe4\xd6\xd7\xe6\xd7\xd8\xe7\xda\xda\xe8\xda\xdb\xea\xdc\ \xdd\xeb\xdd\xde\xeb\xdd\xde\xeb\xde\xde\xea\xdc\xdd\xe9\xdc\xdd\ \xe8\xda\xdb\xe6\xd8\xd9\xe4\xd6\xd7\xe3\xd4\xd5\xe3\xd4\xd5\xe2\ \xd4\xd5\xe3\xd4\xd5\xe3\xd5\xd5\xe3\xd6\xd6\xe5\xd7\xd6\xe5\xd8\ \xd6\xe6\xd8\xd6\xe6\xd8\xd7\xe1\xd2\xd0\xcb\xba\xc0\xb4\xa4\xb5\ \xac\x9e\xb4\xa7\x98\xb2\xa2\x91\xaf\x9d\x8d\xad\xa1\x93\xaf\xa6\ \x9d\xb2\x9d\x96\xae\x98\x94\xab\x95\x92\xab\x95\x91\xaa\x94\x91\ \xaa\x96\x92\xab\x95\x93\xab\x95\x93\xaa\x93\x93\xa8\x93\x94\xa9\ \x92\x93\xa8\x91\x93\xa7\x90\x91\xa8\x8f\x90\xa8\x91\x92\xa9\x90\ \x90\xa8\x8e\x8d\xa6\x8b\x8a\xa4\x88\x87\xa4\x84\x85\xa1\x81\x83\ \xa0\x75\x7c\x99\x4d\x68\x7c\x3d\x5f\x6e\x53\x69\x7d\x72\x77\x96\ \x7a\x7e\x9c\x76\x7d\x9a\x71\x79\x96\x5f\x63\x87\x63\x65\x84\x71\ \x72\x8d\x80\x7e\x96\x94\x90\xa3\x9b\x96\xa8\x9e\x99\xaa\x9c\x98\ \xa9\x9a\x97\xa8\x98\x95\xa6\x98\x95\xa7\x97\x94\xa7\x99\x93\xa6\ \xa5\x9c\xb0\xb0\xa4\xb7\xbf\xb1\xc0\xd9\xcb\xd1\xeb\xdf\xe0\xef\ \xe4\xe3\xd6\xc8\xca\xac\xa5\xb1\xa5\xa0\xaf\xa5\xa1\xb0\x94\x94\ \xa5\x6b\x75\x8f\x99\x98\xa9\xa6\xa1\xaf\xa5\xa1\xb0\xa5\xa1\xb0\ \xa1\x9f\xae\x9f\x9e\xae\x9c\x9a\xab\xa0\x9e\xad\x98\x98\xaa\x99\ \x99\xaa\x8e\x90\xa6\xb2\xaf\xbb\xba\xb4\xbf\xbc\xb7\xc0\xbe\xb8\ \xc2\xbb\xb5\xbf\xb9\xb3\xbe\xb9\xb3\xbe\xb8\xb1\xbc\xb4\xae\xb9\ \xb3\xad\xb8\xb0\xaa\xb6\xb1\xaa\xb6\xad\xa7\xb3\xa9\xa5\xb2\xab\ \xa6\xb3\xb0\xab\xb9\xad\xa8\xb6\xa0\x9d\xad\xa2\x9e\xae\xa4\x9f\ \xaf\xa5\xa1\xb2\xa3\xa0\xb0\xa4\xa1\xb1\xa8\xa5\xb3\xaa\xa6\xb2\ \xab\xa7\xb3\x90\x88\x97\x8e\x80\x8e\x9c\x8b\x96\xb0\xa1\xa7\xb9\ \xad\xb2\xbf\xb4\xba\xc0\xb6\xbd\xbb\xb3\xb9\xa8\xa2\xaa\x8a\x8d\ \x98\x74\x7e\x8c\x75\x81\x8f\x7d\x88\x97\x7e\x88\x96\x7f\x87\x94\ \x8d\x8f\x9d\x98\x97\xa5\x00\x00\x00\xc2\xba\xc4\xc7\xbf\xc9\xcc\ \xc4\xce\xcf\xc7\xd1\xd1\xca\xd4\xd1\xcc\xd5\xd2\xcd\xd6\xd1\xcb\ \xd4\xd1\xc9\xd3\xcf\xc7\xd1\xcd\xc4\xcd\xcc\xc3\xca\xcc\xc2\xc9\ \xcf\xc3\xc8\xd1\xc5\xc8\xd3\xc6\xc8\xd5\xc7\xc9\xd8\xca\xcc\xdb\ \xcd\xce\xdc\xce\xcf\xdf\xd1\xd2\xe1\xd4\xd5\xe4\xd5\xd6\xe6\xd8\ \xd9\xe8\xda\xdb\xe9\xdb\xdc\xe9\xdb\xdc\xeb\xdd\xde\xeb\xdc\xde\ \xea\xdc\xdd\xeb\xdd\xde\xea\xdc\xdd\xea\xdd\xdb\xe9\xda\xdb\xe9\ \xd9\xd9\xe6\xd7\xd7\xe5\xd6\xd4\xe4\xd5\xd4\xe4\xd5\xd2\xe3\xd4\ \xd3\xe4\xd5\xd2\xe3\xd5\xd3\xe4\xd6\xd4\xe5\xd6\xd4\xe6\xd7\xd5\ \xe6\xd7\xd5\xe6\xd7\xd5\xe2\xd2\xd1\xd0\xbe\xc2\xb7\xa8\xb6\xaf\ \xa2\xb4\xaa\x9d\xb4\xa6\x97\xb2\xa0\x90\xaf\x99\x8a\xab\x95\x8b\ \xaa\x97\x92\xac\x98\x95\xad\x98\x94\xac\x97\x94\xad\x95\x92\xab\ \x95\x93\xab\x95\x94\xac\x96\x94\xab\x96\x95\xab\x93\x95\xaa\x92\ \x94\xa8\x92\x94\xaa\x90\x92\xaa\x8f\x92\xaa\x90\x90\xa8\x8f\x8f\ \xa7\x8e\x8d\xa7\x8b\x8b\xa5\x88\x89\xa4\x86\x87\xa3\x7c\x80\x9d\ \x53\x6b\x80\x40\x63\x71\x40\x60\x70\x53\x65\x7e\x72\x79\x98\x75\ \x7c\x99\x6f\x7a\x96\x5a\x61\x83\x56\x59\x7a\x72\x73\x8f\x7f\x7d\ \x95\x91\x8e\xa2\x9b\x97\xa8\x9e\x98\xa9\x9e\x9a\xaa\x9d\x9a\xaa\ \x9b\x98\xa8\x9a\x98\xa9\x9a\x96\xa8\x97\x93\xa6\x9b\x97\xa9\xa8\ \xa0\xb2\xab\xa1\xb5\xb1\xa5\xb8\xcd\xbf\xc7\xe2\xd5\xd7\xcc\xbf\ \xc1\xa6\xa0\xaf\xa5\xa0\xaf\xa4\x9f\xae\x9d\x9b\xab\x89\x8c\xa1\ \x9b\x99\xaa\xa2\x9f\xae\xa4\xa0\xaf\xa4\xa0\xaf\xa4\xa1\xb0\xa5\ \xa1\xb1\x9d\x9c\xad\x9b\x9a\xab\xa0\x9e\xae\x9b\x9a\xab\xa4\xa1\ \xb1\xb8\xb3\xbe\xb7\xb1\xbc\xb9\xb2\xbe\xbb\xb6\xc0\xb7\xb1\xbd\ \xb9\xb3\xbe\xb7\xb1\xbc\xb6\xb0\xbb\xb1\xab\xb7\xb0\xa9\xb6\xb1\ \xaa\xb7\xb0\xa9\xb6\xae\xa7\xb3\xb1\xab\xb7\xb6\xb0\xba\xb0\xab\ \xb7\xa6\xa2\xb1\xa2\x9d\xae\xa3\x9f\xae\xa4\xa0\xb0\xa2\x9f\xaf\ \xa3\xa0\xb0\xa6\xa3\xb2\xa8\xa5\xb3\xab\xa7\xb3\xa1\x9c\xaa\xa3\ \x9b\xa7\x9e\x90\x9c\x9f\x8e\x98\xab\x9c\xa3\xb5\xa7\xad\xb7\xac\ \xb3\xb3\xab\xb2\xab\xa4\xab\x8b\x8b\x96\x5e\x6d\x7d\x52\x69\x79\ \x5b\x70\x80\x63\x74\x84\x67\x76\x86\x70\x7c\x8c\x81\x88\x98\x8b\ \x8f\x9e\x00\x00\x00\xc2\xba\xc4\xc7\xbf\xc9\xca\xc3\xcd\xcd\xc5\ \xcf\xcf\xc8\xd2\xd0\xca\xd3\xd0\xcb\xd4\xd2\xca\xd4\xd1\xc9\xd2\ \xcf\xc7\xd0\xce\xc6\xcd\xce\xc4\xcb\xce\xc3\xca\xd0\xc4\xc8\xd2\ \xc4\xc8\xd4\xc6\xc9\xd8\xca\xcc\xd9\xcb\xcd\xdb\xcd\xce\xdd\xcf\ \xd0\xdf\xd1\xd2\xe1\xd2\xd3\xe4\xd6\xd7\xe7\xd9\xda\xe9\xdb\xdc\ \xea\xdc\xdd\xeb\xdd\xde\xea\xdd\xdd\xea\xdd\xdd\xea\xdc\xdd\xeb\ \xdd\xdc\xeb\xdc\xda\xeb\xdd\xda\xea\xdc\xda\xea\xdb\xd9\xe8\xd9\ \xd7\xe6\xd7\xd5\xe5\xd6\xd4\xe5\xd6\xd4\xe4\xd5\xd3\xe4\xd5\xd4\ \xe4\xd4\xd2\xe5\xd5\xd3\xe5\xd6\xd3\xe6\xd6\xd4\xe6\xd6\xd4\xe5\ \xd5\xd3\xe5\xd4\xd2\xe3\xd2\xd0\xd4\xc3\xc4\xbd\xad\xb7\xb2\xa5\ \xb5\xad\xa2\xb5\xab\x9e\xb5\xa4\x96\xb1\x9d\x8f\xad\x96\x8b\xab\ \x97\x8f\xac\x98\x92\xad\x99\x95\xae\x98\x95\xae\x98\x95\xad\x97\ \x95\xae\x95\x95\xac\x94\x95\xad\x94\x95\xab\x93\x93\xaa\x90\x91\ \xa9\x8f\x91\xa9\x8f\x91\xa9\x8f\x91\xa9\x91\x91\xa9\x91\x91\xa8\ \x90\x8f\xa7\x8e\x8d\xa7\x8a\x8a\xa4\x82\x84\xa0\x5c\x6f\x87\x40\ \x61\x71\x3c\x5e\x6d\x40\x5d\x70\x57\x67\x82\x70\x7a\x96\x71\x7b\ \x98\x5b\x65\x85\x49\x4f\x70\x71\x72\x8d\x7d\x7d\x95\x8f\x8c\xa0\ \x98\x95\xa7\x9d\x98\xa8\x9e\x99\xa9\x9c\x99\xa9\x9d\x9a\xaa\x9b\ \x98\xa8\x99\x97\xa7\x97\x94\xa6\x97\x93\xa6\xa0\x9a\xac\xa9\xa1\ \xb4\xab\xa1\xb4\xae\xa2\xb5\xc0\xb3\xbe\xb4\xab\xb7\xa3\x9f\xae\ \xa5\xa1\xb0\xa8\xa2\xb1\xaf\xaa\xb7\xad\xa8\xb6\xa3\x9f\xaf\xa1\ \x9e\xae\xa2\x9f\xae\xa1\x9e\xae\xa1\x9e\xae\xa4\xa1\xb0\xa3\xa1\ \xb0\x97\x95\xa8\x8d\x8d\xa0\x93\x93\xa6\xad\xaa\xb7\xb3\xae\xb9\ \xb3\xad\xb9\xb6\xb0\xbb\xb9\xb3\xbe\xb5\xaf\xbb\xb7\xb1\xbc\xb8\ \xb2\xbd\xb5\xaf\xba\xb2\xac\xb8\xb2\xab\xb7\xb2\xab\xb7\xb2\xac\ \xb7\xb1\xac\xb7\xb6\xb0\xbb\xb8\xb2\xbd\xb4\xad\xb9\xad\xa7\xb6\ \xa4\x9f\xaf\xa4\x9f\xae\xa4\xa0\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa5\ \xa2\xb1\xa8\xa5\xb3\xa9\xa4\xb2\xaf\xa8\xb5\xb5\xab\xb5\xa9\x9c\ \xa7\xa3\x93\x9d\xa4\x94\x9d\xaa\x9c\xa3\xab\x9f\xa6\xa6\x9d\xa6\ \x9a\x93\x9e\x71\x77\x85\x43\x5d\x70\x3c\x5b\x6e\x42\x60\x72\x4b\ \x66\x78\x54\x6a\x7c\x62\x73\x84\x74\x7f\x90\x81\x88\x9a\x00\x00\ \x00\xc4\xbc\xc6\xc7\xbf\xc9\xca\xc2\xcc\xcd\xc5\xcf\xcf\xc7\xd1\ \xcf\xc9\xd2\xd0\xca\xd3\xd1\xca\xd3\xd0\xc8\xd2\xd0\xc8\xcf\xcf\ \xc7\xce\xcf\xc5\xcc\xd0\xc5\xca\xd2\xc6\xca\xd4\xc6\xca\xd6\xc8\ \xca\xd8\xca\xcc\xda\xcb\xcd\xdb\xcd\xce\xde\xcf\xd0\xe0\xd1\xd1\ \xe2\xd3\xd4\xe4\xd6\xd8\xe8\xda\xdb\xea\xdc\xdd\xeb\xdd\xde\xea\ \xdc\xde\xea\xdc\xdd\xeb\xdc\xdb\xeb\xdd\xdb\xeb\xdc\xda\xeb\xdd\ \xdb\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\xea\xda\xd8\xe9\xd9\xd7\ \xe8\xd8\xd6\xe7\xd7\xd5\xe7\xd6\xd4\xe7\xd6\xd4\xe5\xd5\xd2\xe5\ \xd5\xd2\xe5\xd5\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe5\xd4\xd1\xe5\xd4\ \xd1\xe5\xd5\xd2\xe4\xd5\xd3\xdb\xcd\xcc\xc7\xb7\xbe\xb4\xa7\xb6\ \xb0\xa4\xb5\xae\xa1\xb5\xab\x9e\xb5\xa8\x9c\xb4\xa5\x99\xb3\xa9\ \x9f\xb8\xa0\x97\xb3\x9a\x94\xaf\x9a\x96\xaf\x9a\x97\xb0\x9a\x97\ \xb0\x98\x97\xae\x96\x95\xad\x95\x95\xac\x91\x92\xaa\x8e\x90\xa8\ \x8f\x91\xa9\x8f\x91\xa9\x94\x95\xaa\x96\x96\xac\x94\x95\xab\x92\ \x91\xa9\x8e\x8d\xa7\x89\x89\xa4\x6c\x78\x93\x46\x64\x77\x40\x61\ \x71\x3b\x59\x6c\x40\x59\x70\x5b\x69\x85\x71\x7d\x99\x5f\x6b\x89\ \x41\x47\x6a\x6d\x6d\x89\x7d\x7c\x94\x8c\x89\x9e\x98\x94\xa6\x9d\ \x98\xa8\x9e\x99\xaa\x9e\x9b\xab\x9d\x9a\xaa\x9c\x99\xa9\x9c\x99\ \xa9\x9a\x97\xa7\x98\x94\xa6\x98\x94\xa7\xa4\x9d\xb0\xa9\xa1\xb5\ \xaa\xa1\xb3\xa8\x9f\xb2\xa4\x9e\xb0\xa4\xa1\xb0\xad\xa9\xb7\xb1\ \xab\xb7\xb4\xad\xba\xb2\xac\xb8\xac\xa7\xb5\xa6\xa1\xb0\x9f\x9d\ \xad\x77\x84\x9e\x7d\x87\xa0\xa1\xa0\xaf\xa3\xa2\xb0\x9b\x9a\xac\ \x6f\x76\x90\x81\x85\x9d\xac\xa9\xb6\xb2\xac\xb8\xb2\xad\xb9\xb4\ \xad\xb9\xb6\xb0\xbc\xb4\xae\xba\xb5\xaf\xba\xb7\xb0\xbb\xb4\xae\ \xba\xb2\xac\xb8\xb3\xad\xb9\xb3\xad\xb9\xb5\xae\xb9\xb6\xaf\xba\ \xb7\xb1\xbc\xba\xb5\xbf\xba\xb5\xbf\xb5\xae\xba\xa9\xa5\xb3\xa4\ \xa0\xaf\xa3\xa0\xaf\xa2\x9e\xaf\xa4\xa1\xb0\xa7\xa4\xb2\xaa\xa6\ \xb2\xb4\xae\xb9\xc9\xbf\xc5\xbf\xb3\xba\xb1\xa3\xae\xa5\x96\xa1\ \x9e\x8e\x97\x9e\x8f\x97\x9b\x8f\x99\x94\x8b\x97\x8b\x87\x94\x64\ \x6d\x7e\x3b\x58\x6c\x32\x54\x68\x35\x58\x6b\x3d\x5d\x70\x46\x62\ \x75\x58\x6c\x80\x6d\x7a\x8c\x7e\x85\x97\x00\x00\x00\xc5\xbc\xc6\ \xc7\xbf\xc9\xc9\xc1\xcb\xcc\xc4\xce\xce\xc6\xd0\xd1\xc9\xd3\xd2\ \xca\xd4\xd2\xca\xd4\xd1\xca\xd2\xd1\xc9\xd0\xd0\xc7\xce\xd1\xc6\ \xcc\xd2\xc6\xcc\xd4\xc7\xcb\xd6\xc8\xcc\xd7\xca\xcc\xd8\xca\xcc\ \xda\xcc\xcd\xdd\xcd\xce\xde\xce\xcf\xe0\xd1\xd0\xe3\xd3\xd3\xe6\ \xd7\xd7\xe9\xdb\xd9\xeb\xdc\xda\xea\xdc\xdc\xea\xdd\xdc\xeb\xdc\ \xdb\xec\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xea\xdc\xda\ \xec\xdd\xdb\xeb\xdd\xda\xec\xdc\xda\xec\xdb\xd8\xeb\xda\xd7\xea\ \xd9\xd6\xe9\xd8\xd5\xe7\xd6\xd3\xe6\xd5\xd2\xe6\xd5\xd2\xe6\xd4\ \xd1\xe5\xd4\xd1\xe6\xd4\xd1\xe5\xd4\xd1\xe5\xd5\xd2\xe5\xd5\xd2\ \xe6\xd7\xd5\xe5\xd8\xd7\xe1\xd4\xd4\xd1\xc1\xc5\xbb\xac\xb7\xb0\ \xa4\xb5\xaf\xa4\xb5\xae\xa3\xb6\xaf\xa4\xb7\xbb\xb0\xc1\xc2\xba\ \xca\xbb\xb1\xc5\xad\xa5\xbc\xa3\x9d\xb5\x9e\x9a\xb2\x9b\x99\xb0\ \x99\x98\xaf\x97\x97\xae\x96\x96\xae\x94\x95\xac\x90\x92\xaa\x91\ \x93\xaa\x93\x95\xaa\x97\x97\xad\x96\x97\xac\x96\x95\xab\x93\x92\ \xab\x90\x90\xa8\x74\x7c\x99\x48\x63\x7a\x43\x64\x75\x3e\x5c\x70\ \x3d\x55\x6d\x46\x5b\x75\x6a\x79\x95\x5f\x6c\x8b\x52\x55\x79\x80\ \x7e\x97\x81\x7e\x96\x8b\x88\x9e\x95\x91\xa4\x9b\x97\xa8\x9d\x99\ \xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9b\x98\xa8\x9c\x99\xa9\ \x99\x96\xa6\x97\x93\xa6\x9c\x97\xaa\xa7\xa0\xb3\xa9\xa0\xb3\xa8\ \xa0\xb2\xa3\x9e\xaf\xa5\xa2\xb1\xae\xaa\xb7\xb1\xaa\xb7\xb2\xae\ \xba\xb3\xae\xba\xb0\xab\xb7\xa9\xa5\xb3\x9f\x9c\xad\x4c\x6a\x8d\ \x59\x73\x94\xa0\x9f\xae\xa1\xa0\xaf\x9c\x9b\xac\x67\x76\x94\x79\ \x83\x9e\xac\xa8\xb6\xaf\xa8\xb6\xb1\xac\xb9\xb3\xad\xb9\xb5\xae\ \xbb\xb4\xad\xb9\xb4\xad\xb9\xb7\xb1\xbc\xb6\xb0\xbb\xb5\xaf\xba\ \xb5\xaf\xba\xb5\xaf\xba\xb7\xb0\xbb\xba\xb4\xbe\xbd\xb8\xc1\xc2\ \xbd\xc5\xc0\xbb\xc4\xbc\xb7\xc0\xb2\xac\xb9\xa4\xa0\xaf\xa2\x9f\ \xae\xa2\xa0\xaf\xa6\xa3\xb2\xaa\xa6\xb2\xb3\xac\xb7\xd3\xca\xcf\ \xd4\xc9\xcc\xc6\xba\xc0\xb5\xa8\xb1\xa7\x98\xa2\x97\x88\x92\x91\ \x82\x8e\x8a\x80\x8c\x7e\x7a\x8a\x78\x78\x8a\x5a\x66\x79\x37\x53\ \x6b\x30\x50\x67\x31\x53\x69\x37\x57\x6d\x45\x61\x76\x59\x6c\x81\ \x6c\x78\x8d\x7e\x84\x98\x00\x00\x00\xc6\xbe\xc8\xc8\xc0\xca\xc8\ \xc0\xca\xcc\xc4\xce\xcf\xc7\xd1\xd2\xca\xd4\xd3\xcb\xd5\xd2\xcb\ \xd3\xd2\xcb\xd1\xd2\xca\xd1\xd1\xc9\xcf\xd2\xc8\xce\xd3\xc8\xce\ \xd6\xc9\xcc\xd7\xc9\xcd\xd8\xcb\xce\xd9\xcb\xcc\xda\xcb\xcd\xdc\ \xcc\xcd\xdd\xce\xce\xe2\xd0\xcf\xe3\xd4\xd1\xe6\xd7\xd5\xe9\xd9\ \xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xea\xdb\xd9\ \xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xea\xda\xd9\xeb\xdb\xd8\xec\ \xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xeb\xd9\ \xd5\xeb\xd7\xd3\xe8\xd6\xd2\xe8\xd5\xd2\xe7\xd4\xd0\xe5\xd2\xce\ \xe5\xd2\xcf\xe5\xd2\xce\xe7\xd5\xd1\xe7\xd6\xd3\xe7\xd7\xd5\xe7\ \xda\xd8\xe6\xd9\xd8\xe7\xdb\xdb\xdc\xd0\xd0\xc3\xb6\xbe\xb5\xa9\ \xb7\xb0\xa6\xb6\xaf\xa5\xb6\xb0\xa6\xb7\xbc\xb3\xc1\xcb\xc3\xce\ \xcd\xc6\xd1\xc8\xc1\xd0\xbe\xb7\xc7\xac\xa8\xbc\xa0\x9c\xb3\x99\ \x98\xb1\x98\x98\xaf\x99\x99\xae\x96\x96\xab\x94\x96\xac\x94\x95\ \xab\x95\x96\xab\x9a\x99\xae\x9b\x9a\xaf\x98\x97\xad\x93\x93\xab\ \x7f\x85\xa0\x4c\x66\x7d\x42\x61\x74\x40\x5e\x72\x3c\x51\x6b\x3c\ \x4d\x6b\x53\x61\x83\x52\x5e\x81\x78\x76\x93\x9e\x9a\xad\x84\x82\ \x98\x8b\x89\x9e\x93\x8f\xa3\x99\x95\xa7\x9d\x98\xa9\x9d\x99\xaa\ \x9e\x9b\xab\x9e\x9a\xab\x9d\x9a\xaa\x9c\x99\xa9\x9a\x97\xa7\x98\ \x94\xa6\x95\x93\xa6\xa0\x9b\xad\xa7\xa0\xb1\xa6\xa0\xb2\xa4\xa0\ \xb0\xaa\xa5\xb4\xae\xaa\xb6\xad\xa9\xb5\xb2\xae\xb9\xb5\xaf\xbb\ \xaf\xa9\xb6\xa9\xa5\xb2\xa5\xa2\xb1\x87\x8d\xa4\xa8\xa8\xb8\xb2\ \xae\xbb\xa7\xa5\xb3\x9d\x9d\xad\x78\x82\x9c\x88\x8d\xa4\xaf\xab\ \xb7\xad\xa8\xb5\xae\xaa\xb6\xb2\xab\xb8\xb3\xac\xb9\xb4\xad\xba\ \xb6\xb0\xbb\xb7\xb1\xbc\xb5\xae\xb9\xb4\xae\xb9\xb4\xae\xb9\xb5\ \xaf\xba\xb8\xb2\xbd\xbc\xb6\xc0\xbf\xba\xc3\xbc\xb7\xc0\xbb\xb5\ \xbf\xbc\xb7\xc0\xb5\xb0\xbb\xa5\xa1\xb0\xa2\x9f\xaf\xa2\xa0\xb0\ \xa7\xa3\xb2\xae\xa9\xb6\xd6\xcb\xd0\xe3\xd7\xd8\xd9\xcc\xce\xca\ \xbf\xc3\xba\xad\xb4\xa8\x99\xa3\x90\x81\x8e\x81\x76\x83\x76\x70\ \x81\x6b\x6a\x7f\x62\x67\x7d\x4b\x5a\x73\x35\x4e\x69\x30\x4d\x68\ \x33\x51\x6a\x3d\x59\x72\x4d\x64\x7b\x60\x6e\x85\x72\x7c\x91\x83\ \x87\x9b\x00\x00\x00\xc9\xc1\xcb\xc9\xc1\xcb\xca\xc2\xcc\xcc\xc4\ \xce\xd0\xc8\xd2\xd2\xca\xd4\xd3\xcb\xd5\xd3\xcb\xd4\xd3\xcb\xd2\ \xd3\xcb\xd2\xd2\xc9\xd0\xd3\xc8\xce\xd5\xc9\xce\xd6\xca\xce\xd7\ \xca\xcd\xd7\xca\xcc\xd8\xcb\xcd\xda\xcc\xcd\xde\xce\xcf\xdf\xd0\ \xd0\xe2\xd3\xd1\xe4\xd4\xd2\xe8\xd7\xd5\xe9\xd8\xd7\xe9\xda\xd8\ \xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xe9\xdb\xd8\xea\ \xda\xd9\xea\xda\xd8\xea\xd9\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\ \xd8\xee\xdd\xda\xee\xdd\xd9\xed\xdd\xd8\xed\xdb\xd6\xec\xd9\xd4\ \xea\xd7\xd2\xe8\xd5\xd0\xe7\xd3\xcf\xe7\xd3\xce\xe6\xd3\xce\xe6\ \xd2\xcd\xe7\xd5\xd1\xe8\xd7\xd4\xe8\xd9\xd6\xe9\xda\xd8\xe8\xdb\ \xd9\xe9\xdc\xdb\xea\xde\xde\xe4\xd9\xd9\xd3\xc6\xc9\xbc\xae\xb9\ \xb3\xa7\xb6\xb0\xa5\xb6\xb0\xa6\xb7\xb9\xb0\xbe\xc6\xbd\xca\xd1\ \xcb\xd5\xd4\xcf\xd8\xcd\xc7\xd3\xc0\xbb\xca\xac\xa8\xbd\x9c\x99\ \xb1\x98\x97\xae\x9b\x99\xaf\x98\x98\xae\x99\x99\xad\x9a\x9b\xae\ \x9c\x9c\xb0\x9e\x9e\xb1\x9c\x9c\xb0\x98\x99\xae\x89\x8d\xa7\x55\ \x6b\x84\x43\x63\x75\x41\x5e\x72\x3d\x50\x6d\x36\x44\x67\x39\x42\ \x6b\x45\x4a\x73\x8c\x88\xa0\xa8\xa1\xb2\x89\x86\x9c\x8c\x89\x9e\ \x94\x90\xa3\x98\x94\xa7\x9b\x97\xa9\x9d\x9a\xaa\x9e\x9b\xab\x9d\ \x9a\xaa\x9d\x9a\xaa\x9b\x98\xa8\x9b\x98\xa8\x98\x95\xa7\x93\x91\ \xa4\x97\x94\xa7\xa2\x9d\xae\xa2\x9d\xb0\x9a\x98\xac\xae\xa9\xb6\ \xad\xa9\xb5\xae\xaa\xb6\xb1\xad\xb9\xb3\xae\xba\xad\xa7\xb4\xaa\ \xa6\xb2\xa9\xa4\xb2\xb4\xb0\xbc\xb7\xb3\xbd\xb6\xb2\xbd\xb5\xb1\ \xbc\xa4\xa4\xb2\x90\x90\xa6\x9b\x9a\xac\xb1\xab\xb8\xb2\xac\xb9\ \xaf\xaa\xb7\xb0\xab\xb7\xb1\xac\xb8\xb4\xae\xba\xb5\xaf\xbb\xb6\ \xb0\xbb\xb3\xac\xb8\xb4\xae\xb9\xb5\xaf\xb9\xb6\xb0\xbb\xb8\xb2\ \xbd\xba\xb2\xbd\xb9\xb3\xbe\xb8\xb2\xbd\xb6\xb0\xba\xb7\xb2\xbb\ \xb4\xae\xba\xa6\xa3\xb1\xa3\xa0\xaf\xa5\xa2\xb1\xac\xa7\xb5\xd1\ \xc6\xcd\xea\xde\xdf\xe6\xd9\xda\xdd\xd0\xd2\xd0\xc2\xc5\xbf\xb1\ \xb7\xaa\x9b\xa4\x8c\x7d\x8a\x74\x69\x7a\x66\x60\x75\x59\x5b\x72\ \x4a\x55\x6f\x3b\x4e\x69\x32\x49\x66\x31\x4a\x67\x3a\x52\x6f\x4a\ \x5e\x79\x5b\x6a\x83\x6d\x76\x8d\x7c\x80\x97\x8b\x8b\x9f\x00\x00\ \x00\xca\xc2\xcc\xcc\xc4\xce\xcd\xc5\xcf\xd0\xc8\xd2\xd1\xc9\xd3\ \xd1\xc9\xd3\xd2\xca\xd4\xd3\xcb\xd4\xd4\xcd\xd3\xd3\xcc\xd3\xd4\ \xca\xd0\xd4\xca\xd0\xd5\xca\xcf\xd5\xca\xce\xd7\xca\xcd\xd8\xcb\ \xcd\xd9\xcc\xce\xdc\xce\xcf\xde\xcf\xd0\xe1\xd2\xd2\xe4\xd5\xd3\ \xe5\xd5\xd3\xe7\xd6\xd4\xe9\xd7\xd5\xe9\xd7\xd6\xea\xd9\xd7\xea\ \xd9\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xda\xd9\xe9\xda\xd8\xe9\xd9\ \xd8\xea\xda\xd8\xeb\xda\xd6\xec\xdb\xd8\xed\xdc\xd8\xed\xdc\xd9\ \xef\xdf\xd8\xee\xde\xd8\xee\xde\xd8\xed\xdb\xd6\xeb\xd8\xd3\xe9\ \xd6\xd1\xe8\xd4\xcf\xe8\xd4\xcf\xe7\xd3\xce\xe7\xd3\xce\xe9\xd6\ \xd1\xe9\xd8\xd4\xea\xd9\xd6\xe9\xdb\xd8\xe9\xdb\xd8\xe9\xdd\xdb\ \xea\xde\xdf\xea\xdf\xdf\xea\xdf\xdf\xe2\xd7\xd8\xca\xbd\xc3\xb8\ \xac\xb9\xb0\xa6\xb6\xb0\xa7\xb8\xb5\xab\xbb\xbd\xb5\xc2\xc9\xc2\ \xcd\xcf\xc9\xd3\xd3\xce\xd8\xd0\xca\xd6\xc0\xbc\xcb\xa7\xa4\xba\ \x9a\x97\xb0\x9e\x9c\xb1\x9f\x9e\xb2\x9f\x9e\xb1\x9f\x9f\xb1\x9e\ \x9f\xb1\x9c\x9e\xb1\x9a\x9d\xb0\x91\x95\xac\x63\x77\x90\x48\x68\ \x7b\x40\x59\x73\x3f\x53\x71\x3b\x4d\x6f\x34\x42\x6a\x44\x49\x71\ \x95\x90\xa5\xaa\xa3\xb4\x8e\x8a\x9f\x8c\x89\x9e\x92\x8e\xa2\x95\ \x92\xa4\x99\x96\xa7\x9c\x99\xa9\x9d\x9a\xaa\x9c\x99\xa9\x9d\x9a\ \xaa\x9c\x99\xa9\x9b\x98\xa8\x9a\x97\xa7\x96\x94\xa5\x94\x92\xa5\ \x9a\x97\xaa\x99\x97\xab\xa5\xa2\xb2\xac\xa7\xb5\xac\xa8\xb5\xaf\ \xab\xb7\xb1\xad\xb9\xb1\xac\xb8\xad\xa8\xb4\xaa\xa6\xb2\xad\xa9\ \xb6\xb2\xae\xba\xb5\xb1\xbc\xb5\xb1\xbc\xb6\xb2\xbd\xb4\xb1\xbc\ \xa3\xa1\xb1\xa1\x9f\xaf\xb0\xab\xb7\xb1\xab\xb8\xae\xaa\xb6\xb0\ \xab\xb8\xb0\xab\xb7\xb3\xac\xb9\xb4\xae\xba\xb4\xad\xb9\xb3\xac\ \xb9\xb4\xae\xb9\xb4\xae\xb9\xb7\xb1\xbc\xb8\xb1\xbc\xb7\xb1\xbc\ \xb7\xb1\xbc\xb7\xb1\xbc\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\xa8\ \xa4\xb2\xa5\xa2\xb0\xaa\xa5\xb4\xca\xc0\xc8\xea\xdf\xdf\xec\xe0\ \xe0\xe7\xda\xdb\xdf\xd2\xd4\xd3\xc6\xc8\xc1\xb3\xb8\xab\x9b\xa4\ \x8a\x79\x86\x68\x5e\x72\x54\x51\x69\x44\x49\x65\x3a\x45\x62\x32\ \x42\x60\x30\x44\x63\x38\x4b\x69\x47\x56\x73\x58\x64\x7f\x69\x71\ \x8a\x79\x7d\x95\x88\x88\x9d\x92\x91\xa4\x00\x00\x00\xcd\xc5\xcf\ \xcf\xc7\xd1\xd1\xc9\xd3\xd3\xcb\xd5\xd4\xcc\xd6\xd4\xcc\xd6\xd3\ \xcb\xd5\xd4\xcc\xd4\xd5\xcd\xd4\xd5\xcd\xd4\xd5\xca\xd0\xd5\xcb\ \xd1\xd7\xcc\xd2\xd7\xcc\xd0\xd8\xcc\xd0\xd9\xcc\xcf\xdb\xce\xd0\ \xdd\xcf\xd1\xde\xd0\xd2\xe1\xd2\xd3\xe5\xd5\xd5\xe5\xd5\xd4\xe6\ \xd5\xd3\xe8\xd6\xd5\xe8\xd6\xd5\xe8\xd7\xd6\xe8\xd8\xd6\xe8\xd8\ \xd7\xe8\xd8\xd7\xe7\xd8\xd6\xe8\xd8\xd7\xea\xd8\xd7\xe9\xd8\xd7\ \xeb\xda\xd7\xec\xdb\xd7\xec\xdb\xd8\xed\xdc\xd9\xee\xde\xd8\xee\ \xde\xd8\xee\xdf\xd8\xed\xdc\xd7\xec\xd9\xd4\xeb\xd8\xd3\xea\xd6\ \xd1\xe9\xd6\xd0\xe9\xd5\xd0\xe9\xd5\xcf\xe9\xd6\xd0\xeb\xd8\xd3\ \xeb\xda\xd6\xec\xdb\xd8\xea\xdb\xd8\xea\xdc\xd9\xeb\xde\xdd\xec\ \xe0\xe0\xec\xe0\xe0\xec\xe1\xe1\xeb\xe1\xe1\xe0\xd3\xd4\xc8\xbb\ \xc1\xb9\xad\xb9\xb3\xa9\xb8\xb2\xa9\xb9\xb4\xac\xba\xbb\xb4\xc2\ \xbf\xb8\xc6\xc2\xbb\xc9\xc6\xc0\xcd\xc6\xc1\xce\xb4\xb0\xc2\x9e\ \x9b\xb2\xa1\x9f\xb3\xa2\xa1\xb3\xa0\xa0\xb2\x9e\x9e\xb1\x9b\x9e\ \xb0\x98\x9d\xaf\x95\x9b\xaf\x7b\x8a\xa3\x54\x70\x89\x41\x58\x77\ \x38\x4e\x6f\x33\x47\x6c\x34\x47\x6b\x3c\x44\x69\x87\x83\x9b\xa8\ \xa2\xb1\x93\x90\xa4\x8b\x88\x9d\x90\x8c\xa1\x93\x8e\xa3\x97\x94\ \xa6\x9a\x97\xa8\x9c\x99\xa9\x9e\x9b\xab\x9d\x9a\xaa\x9c\x99\xa9\ \x9c\x99\xa8\x9a\x97\xa7\x99\x97\xa8\x97\x95\xa7\x98\x95\xa7\xa8\ \xa3\xb2\xac\xa7\xb6\xaa\xa6\xb3\xac\xa8\xb4\xad\xa9\xb5\xb0\xac\ \xb8\xaf\xaa\xb7\xab\xa7\xb3\xac\xa8\xb4\xaf\xab\xb7\xb0\xac\xb8\ \xb0\xac\xb9\xb3\xaf\xbb\xb4\xb0\xbb\xb4\xb0\xbc\xb6\xb2\xbd\xae\ \xa9\xb6\xad\xa9\xb5\xb0\xac\xb8\xad\xa9\xb5\xad\xa8\xb5\xad\xa8\ \xb6\xae\xa9\xb7\xb1\xaa\xb7\xb1\xaa\xb7\xb3\xac\xb9\xb3\xad\xb9\ \xb4\xae\xb9\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb5\ \xaf\xba\xb4\xae\xb9\xb3\xad\xb8\xb2\xad\xb8\xaa\xa5\xb2\xaa\xa4\ \xb2\xc2\xb8\xc2\xea\xdf\xdf\xee\xe3\xe3\xed\xe1\xe1\xe8\xdb\xdc\ \xe1\xd3\xd5\xd5\xc7\xc9\xc4\xb6\xb9\xae\x9c\xa3\x85\x74\x7f\x55\ \x4e\x64\x3f\x40\x5b\x34\x39\x57\x2d\x37\x56\x2d\x39\x59\x35\x41\ \x61\x43\x4e\x6c\x55\x5d\x79\x65\x6b\x87\x76\x77\x92\x84\x84\x9a\ \x91\x8e\xa2\x9b\x96\xa7\x00\x00\x00\xd0\xc8\xcf\xd1\xc9\xd2\xd4\ \xcc\xd5\xd6\xcf\xd8\xd6\xcf\xd8\xd6\xce\xd7\xd5\xcd\xd6\xd5\xce\ \xd5\xd5\xce\xd5\xd5\xce\xd4\xd6\xcc\xd2\xd8\xce\xd3\xd9\xce\xd2\ \xd9\xce\xd1\xd9\xce\xd1\xdb\xcf\xd2\xdc\xcf\xd2\xde\xd1\xd3\xdf\ \xd2\xd4\xe2\xd4\xd5\xe4\xd5\xd6\xe5\xd6\xd5\xe6\xd5\xd3\xe7\xd5\ \xd4\xe7\xd5\xd4\xe8\xd5\xd4\xe8\xd6\xd5\xe7\xd8\xd5\xe7\xd7\xd5\ \xe7\xd7\xd5\xe8\xd8\xd6\xe8\xd8\xd7\xe9\xd9\xd7\xea\xd9\xd7\xeb\ \xda\xd7\xec\xdb\xd8\xec\xdc\xd8\xed\xdc\xd7\xee\xdd\xd7\xed\xdd\ \xd7\xee\xdd\xd6\xee\xdb\xd6\xec\xd9\xd5\xec\xd8\xd3\xeb\xd8\xd2\ \xea\xd7\xd0\xea\xd7\xd0\xea\xd7\xd1\xeb\xd8\xd3\xec\xda\xd5\xec\ \xdc\xd8\xec\xdc\xd9\xec\xdd\xda\xeb\xdd\xdb\xeb\xdf\xdd\xec\xe0\ \xe0\xec\xe1\xe0\xec\xe2\xe2\xed\xe4\xe3\xed\xe3\xe1\xe2\xd6\xd5\ \xcf\xc2\xc8\xbe\xb2\xbd\xb2\xa9\xb9\xb2\xa9\xba\xa9\xa3\xb6\x7c\ \x7c\x9b\x78\x78\x98\x8e\x8b\xa7\x9b\x98\xb1\x9a\x96\xb1\x98\x95\ \xaf\x9b\x99\xb0\x9d\x9d\xb1\x9e\x9e\xb1\x9c\x9f\xb1\x9a\x9f\xb1\ \x96\x9d\xb0\x87\x92\xab\x54\x69\x8d\x41\x5a\x7d\x37\x50\x72\x31\ \x45\x6a\x2e\x40\x66\x32\x3c\x62\x62\x61\x81\xa0\x9a\xad\x9a\x95\ \xa8\x88\x85\x9a\x8e\x8b\x9f\x91\x8d\xa1\x93\x8f\xa3\x98\x94\xa6\ \x9c\x98\xa9\x9c\x99\xa9\x9b\x98\xa9\x9a\x98\xa8\x9c\x99\xa9\x9b\ \x98\xa8\x9a\x97\xa7\x9b\x98\xa8\xa2\x9e\xae\xa6\xa1\xb0\xaa\xa6\ \xb5\xaa\xa5\xb3\xab\xa6\xb3\xac\xa8\xb4\xb0\xac\xb8\xae\xa9\xb6\ \xac\xa8\xb4\xaf\xab\xb7\xb1\xad\xb9\xb0\xac\xb8\xb0\xac\xb8\xb2\ \xae\xba\xb4\xb0\xbc\xb4\xb0\xbc\xb7\xb2\xbd\xb6\xb1\xbc\xad\xa9\ \xb6\xac\xa8\xb5\xae\xaa\xb6\xab\xa6\xb5\xac\xa7\xb6\xac\xa8\xb6\ \xad\xa8\xb5\xaf\xa8\xb5\xb1\xab\xb7\xb1\xaa\xb7\xb2\xab\xb7\xb5\ \xaf\xba\xb5\xaf\xba\xb5\xaf\xba\xb4\xae\xb9\xb4\xae\xb8\xb2\xac\ \xb7\xb1\xab\xb6\xae\xa8\xb5\xa9\xa3\xb1\xc0\xb6\xbf\xe8\xdc\xdc\ \xee\xe3\xe3\xed\xe2\xe2\xed\xe1\xe1\xe9\xdc\xdd\xe2\xd4\xd5\xd7\ \xc9\xca\xc7\xb7\xba\xb2\x9e\xa3\x88\x74\x7e\x4b\x44\x5b\x30\x33\ \x4f\x2a\x30\x4d\x28\x2f\x4f\x31\x38\x57\x40\x46\x64\x51\x56\x74\ \x62\x65\x81\x71\x72\x8d\x80\x7f\x96\x8d\x8a\x9e\x98\x93\xa6\xa0\ \x99\xaa\x00\x00\x00\xd2\xca\xd1\xd4\xcc\xd4\xd7\xcf\xd6\xd8\xd0\ \xd8\xd8\xd1\xd8\xd8\xd1\xd8\xd7\xd0\xd7\xd6\xcf\xd6\xd7\xcf\xd6\ \xd8\xce\xd4\xd9\xcf\xd5\xda\xd1\xd4\xdb\xd0\xd3\xdb\xd0\xd3\xdb\ \xd0\xd3\xdd\xd2\xd5\xdd\xd2\xd5\xe0\xd3\xd5\xe2\xd5\xd7\xe3\xd5\ \xd7\xe3\xd5\xd6\xe5\xd5\xd6\xe6\xd6\xd5\xe6\xd6\xd5\xe6\xd6\xd4\ \xe6\xd6\xd4\xe6\xd7\xd5\xe6\xd7\xd6\xe6\xd7\xd5\xe6\xd7\xd5\xe6\ \xd7\xd5\xe6\xd7\xd5\xe8\xd8\xd6\xea\xd8\xd7\xea\xd9\xd6\xeb\xda\ \xd7\xec\xdb\xd8\xec\xda\xd7\xed\xdb\xd7\xee\xdb\xd6\xee\xdb\xd6\ \xee\xdd\xd7\xee\xdc\xd7\xee\xdb\xd5\xed\xda\xd3\xec\xd8\xd2\xea\ \xd7\xd0\xeb\xd8\xd1\xec\xd9\xd3\xed\xda\xd5\xed\xdb\xd6\xed\xdd\ \xd9\xed\xde\xdb\xec\xdf\xdc\xec\xdf\xdc\xeb\xde\xdc\xec\xdf\xdd\ \xed\xe2\xe1\xee\xe3\xe1\xee\xe4\xe1\xee\xe4\xe1\xe9\xdd\xdd\xda\ \xd0\xd2\xc4\xbc\xc4\xb5\xac\xba\xae\xa7\xb8\x91\x8f\xa8\x5a\x62\ \x87\x44\x4a\x78\x49\x4b\x7b\x55\x56\x84\x5c\x5f\x8b\x60\x64\x8d\ \x68\x6e\x93\x76\x7d\x9b\x8a\x90\xa8\x96\x9d\xaf\x8c\x97\xac\x6a\ \x7d\x9e\x45\x5c\x84\x3f\x5b\x7e\x3b\x56\x79\x34\x4b\x6f\x2e\x3f\ \x65\x31\x3d\x64\x38\x3e\x64\x77\x73\x8f\x9f\x99\xac\x89\x85\x9b\ \x88\x85\x9a\x8d\x8b\x9f\x92\x90\xa4\x98\x94\xa8\x9b\x97\xa9\x9d\ \x9a\xaa\x9d\x9a\xaa\x99\x97\xa8\x99\x98\xa9\x9c\x9a\xaa\x9c\x99\ \xa9\x9f\x9b\xab\xa7\xa3\xb2\xa3\x9f\xae\xa8\xa2\xb1\xa9\xa5\xb3\ \xab\xa7\xb4\xad\xa9\xb5\xaf\xab\xb7\xad\xa9\xb5\xb1\xad\xb9\xb3\ \xaf\xbb\xb2\xae\xba\xb0\xac\xb7\xb1\xad\xb8\xb3\xaf\xbb\xb4\xb0\ \xbc\xb4\xb0\xbc\xb7\xb3\xbe\xb8\xb4\xbf\xb4\xb0\xbc\xac\xa7\xb4\ \xad\xa9\xb5\xab\xa6\xb4\xaa\xa5\xb5\xac\xa7\xb6\xac\xa8\xb5\xab\ \xa7\xb4\xac\xa7\xb5\xac\xa7\xb4\xb1\xaa\xb6\xb4\xae\xb9\xb4\xae\ \xb9\xb3\xad\xb8\xb1\xac\xb7\xb1\xab\xb7\xaf\xa9\xb6\xad\xa8\xb4\ \xaa\xa5\xb3\xbf\xb6\xbf\xe1\xd4\xd6\xe9\xdc\xdc\xeb\xdd\xde\xea\ \xde\xde\xeb\xdf\xdf\xe9\xdc\xdd\xe3\xd5\xd6\xd8\xca\xcb\xc9\xb9\ \xbc\xb5\xa1\xa3\x8e\x78\x7f\x4e\x45\x59\x2c\x2f\x4c\x29\x2e\x4b\ \x2e\x33\x50\x3d\x40\x5d\x4d\x4f\x6b\x5e\x5f\x7b\x6d\x6c\x87\x7b\ \x79\x91\x89\x86\x9b\x94\x8e\xa2\x9d\x96\xa8\xa3\x9b\xac\x00\x00\ \x00\xd4\xcc\xd3\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\ \xda\xd2\xd9\xda\xd2\xd9\xd9\xd1\xd7\xd8\xd0\xd7\xd9\xd1\xd6\xdb\ \xd1\xd5\xdc\xd2\xd4\xdd\xd2\xd5\xdd\xd2\xd5\xde\xd3\xd4\xdd\xd2\ \xd5\xe0\xd4\xd6\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd8\xe4\xd6\xd8\ \xe4\xd6\xd7\xe5\xd6\xd7\xe5\xd7\xd6\xe6\xd6\xd5\xe5\xd7\xd6\xe5\ \xd5\xd6\xe5\xd5\xd6\xe4\xd4\xd5\xe4\xd4\xd4\xe5\xd5\xd5\xe4\xd5\ \xd3\xe6\xd6\xd4\xe8\xd7\xd5\xea\xd8\xd6\xe9\xd8\xd5\xea\xd9\xd6\ \xeb\xd9\xd6\xec\xd9\xd6\xec\xd9\xd7\xee\xdb\xd6\xee\xdb\xd7\xef\ \xdc\xd7\xee\xdd\xd7\xee\xdc\xd5\xed\xda\xd3\xed\xda\xd3\xeb\xd8\ \xd1\xec\xd9\xd2\xed\xda\xd3\xec\xda\xd5\xec\xdc\xd6\xec\xdc\xd8\ \xec\xde\xda\xec\xdf\xdc\xed\xe0\xdd\xeb\xde\xdc\xec\xdf\xdd\xed\ \xe1\xdf\xee\xe2\xdf\xeb\xdf\xde\xda\xcf\xd1\xbd\xb2\xbc\xb3\xaa\ \xb6\xb2\xaa\xb6\xa6\x9e\xb0\x93\x8e\xa5\x7f\x80\x9c\x56\x5b\x85\ \x55\x5c\x88\x4c\x51\x80\x48\x4f\x7d\x4b\x55\x7e\x4d\x5c\x7f\x4e\ \x61\x80\x53\x65\x85\x64\x71\x94\x60\x6f\x95\x4d\x5e\x8a\x3e\x54\ \x7e\x3f\x57\x7d\x40\x59\x7c\x3b\x55\x77\x34\x46\x6b\x32\x3e\x65\ \x34\x3c\x63\x3f\x41\x68\x7a\x75\x91\x8d\x8a\x9f\x83\x7f\x97\x88\ \x85\x9a\x8e\x8c\x9f\x99\x96\xa7\x9a\x97\xa8\x9c\x99\xa9\x9e\x9b\ \xaa\x9d\x9a\xaa\x9c\x99\xa9\x9b\x98\xa8\x9c\x99\xa9\xa7\xa4\xb2\ \xa8\xa3\xb2\xa5\xa0\xae\xa6\xa1\xb1\xaa\xa5\xb3\xaa\xa7\xb3\xad\ \xa8\xb5\xad\xaa\xb7\xaf\xab\xb6\xb1\xad\xb9\xb5\xb1\xbc\xb4\xb0\ \xbc\xb1\xad\xb9\xb2\xae\xba\xb2\xae\xba\xb4\xb0\xbc\xb5\xb1\xbc\ \xb5\xb1\xbc\xb6\xb2\xbd\xb8\xb4\xbf\xaf\xac\xb9\xac\xa8\xb5\xaa\ \xa5\xb4\xa8\xa3\xb2\xaa\xa5\xb4\xaa\xa6\xb4\xa9\xa4\xb3\xaa\xa5\ \xb4\xac\xa7\xb4\xb1\xab\xb7\xb2\xab\xb8\xb2\xac\xb7\xb0\xac\xb7\ \xae\xa9\xb5\xae\xa9\xb5\xab\xa6\xb4\xaa\xa4\xb3\xc0\xb6\xbf\xdd\ \xcf\xd0\xe2\xd3\xd4\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xda\ \xda\xe5\xd9\xd9\xdf\xd2\xd2\xd4\xc6\xc7\xc8\xb8\xba\xb7\xa1\xa3\ \x92\x7a\x7f\x52\x47\x59\x2f\x31\x4b\x32\x34\x50\x3b\x3e\x59\x4c\ \x4c\x66\x5c\x5b\x76\x6a\x68\x82\x78\x74\x8d\x83\x7f\x95\x8e\x89\ \x9d\x98\x92\xa5\x9d\x97\xa9\xa2\x9a\xab\x00\x00\x00\xd6\xce\xd5\ \xd8\xd0\xd6\xda\xd1\xd7\xda\xd2\xd8\xda\xd3\xd9\xdb\xd4\xd9\xdb\ \xd4\xd8\xdb\xd3\xd8\xdb\xd2\xd7\xdc\xd2\xd6\xdc\xd3\xd5\xde\xd3\ \xd5\xdf\xd3\xd5\xe0\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe2\xd6\xd8\ \xe4\xd7\xd9\xe3\xd7\xd9\xe4\xd7\xd9\xe3\xd6\xd8\xe4\xd7\xd8\xe4\ \xd7\xd8\xe4\xd6\xd8\xe5\xd6\xd7\xe4\xd5\xd7\xe4\xd5\xd6\xe3\xd4\ \xd5\xe2\xd4\xd5\xe3\xd3\xd4\xe3\xd3\xd4\xe4\xd5\xd3\xe5\xd6\xd4\ \xe6\xd6\xd4\xe8\xd6\xd5\xe9\xd8\xd6\xe9\xd8\xd5\xea\xd8\xd5\xea\ \xd9\xd6\xeb\xd9\xd7\xee\xdb\xd6\xee\xdc\xd7\xee\xdd\xd8\xef\xdf\ \xd9\xf0\xde\xd8\xef\xdd\xd6\xee\xdb\xd4\xed\xda\xd3\xed\xd9\xd2\ \xec\xd9\xd2\xed\xda\xd3\xec\xd9\xd4\xec\xda\xd5\xec\xdb\xd6\xec\ \xdc\xd9\xeb\xdd\xda\xeb\xde\xdb\xea\xdb\xd8\xec\xde\xdb\xec\xdf\ \xdc\xe5\xd8\xd6\xc8\xbc\xc3\xb1\xa8\xb5\xb0\xa7\xb4\xae\xa5\xb3\ \xad\xa6\xb2\xa3\x9c\xad\x9c\x97\xaa\x91\x90\xa7\x7d\x7f\xa1\x70\ \x74\x98\x62\x69\x8e\x57\x64\x86\x50\x63\x83\x4f\x63\x81\x53\x64\ \x86\x59\x65\x8c\x53\x60\x8b\x4e\x5d\x89\x4d\x5c\x87\x5f\x6d\x91\ \x72\x7d\x99\x78\x83\x9b\x6e\x76\x91\x61\x65\x87\x86\x83\xa1\x92\ \x8d\xa8\x86\x7f\x9c\x91\x8b\xa4\x8b\x87\xa0\x85\x82\x9a\x8a\x88\ \x9c\x94\x90\xa3\x9a\x97\xa8\x9c\x99\xa9\x9e\x9a\xaa\x9f\x9b\xab\ \x9f\x9b\xaa\x9e\x9a\xaa\xa0\x9c\xac\xac\xa9\xb7\xa7\xa3\xb2\xa6\ \xa1\xb0\xa7\xa2\xb1\xa9\xa5\xb3\xac\xa8\xb5\xac\xa8\xb5\xae\xa9\ \xb7\xaf\xab\xb7\xb4\xb0\xbb\xb6\xb2\xbd\xb5\xb1\xbd\xb2\xae\xba\ \xb2\xae\xba\xb2\xae\xba\xb5\xb1\xbc\xb6\xb2\xbd\xb5\xb1\xbd\xb6\ \xb2\xbd\xb6\xb2\xbe\xb5\xb1\xbd\xad\xa9\xb5\xa8\xa3\xb1\xa6\xa1\ \xb1\xaa\xa5\xb4\xa9\xa4\xb3\xa8\xa3\xb2\xa8\xa4\xb1\xab\xa6\xb3\ \xb0\xa9\xb6\xb1\xab\xb6\xaf\xaa\xb5\xad\xa8\xb4\xac\xa8\xb4\xa9\ \xa4\xb2\xaf\xa8\xb4\xc7\xba\xc0\xd8\xc9\xc9\xd9\xc9\xca\xda\xcb\ \xcc\xdb\xcd\xcf\xdd\xcf\xd1\xdf\xd1\xd3\xe0\xd3\xd5\xdf\xd2\xd3\ \xd9\xcc\xcd\xcf\xc0\xc3\xc2\xb2\xb5\xb1\x9d\x9f\x91\x7a\x7f\x5a\ \x4f\x60\x40\x3f\x56\x47\x47\x5f\x51\x4f\x68\x5d\x5a\x73\x6a\x66\ \x7f\x74\x71\x8a\x7e\x7a\x91\x88\x83\x98\x92\x8d\xa0\x99\x93\xa5\ \x9d\x97\xa8\xa0\x9a\xaa\x00\x00\x00\xd6\xce\xd5\xd9\xcf\xd6\xda\ \xd0\xd6\xda\xd1\xd7\xdb\xd2\xd7\xdc\xd3\xd8\xdc\xd3\xd9\xdd\xd2\ \xd8\xdd\xd4\xd7\xdf\xd4\xd6\xdf\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\ \xe2\xd5\xd6\xe2\xd5\xd7\xe3\xd6\xd8\xe5\xd8\xda\xe5\xd8\xda\xe5\ \xd8\xda\xe4\xd8\xda\xe4\xd7\xd9\xe4\xd7\xd9\xe4\xd7\xd9\xe4\xd6\ \xd8\xe3\xd5\xd7\xe4\xd6\xd7\xe2\xd4\xd7\xe2\xd4\xd6\xe1\xd3\xd5\ \xe0\xd3\xd4\xe1\xd3\xd3\xe2\xd3\xd4\xe4\xd4\xd4\xe4\xd5\xd3\xe6\ \xd6\xd4\xe8\xd7\xd5\xe9\xd7\xd4\xe9\xd8\xd6\xea\xd9\xd6\xeb\xd9\ \xd6\xed\xdb\xd7\xee\xdb\xd7\xee\xdd\xd7\xef\xdf\xd9\xf0\xdf\xd8\ \xf0\xdf\xd8\xf0\xde\xd7\xee\xdc\xd5\xed\xda\xd3\xec\xd8\xd2\xec\ \xd8\xd1\xeb\xd8\xd2\xeb\xd7\xd2\xea\xd8\xd3\xeb\xd9\xd4\xea\xd9\ \xd6\xea\xda\xd7\xe9\xd9\xd6\xea\xdb\xd8\xe9\xdb\xd8\xdf\xd0\xcf\ \xbe\xb1\xbb\xaf\xa5\xb3\xac\xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xad\ \xa6\xb3\xad\xa6\xb3\xad\xa6\xb3\xa8\xa2\xb2\xa4\x9f\xb0\x9b\x98\ \xac\x8e\x8e\xa4\x81\x85\x9d\x7d\x82\x9b\x82\x84\x9f\x84\x85\xa1\ \x7e\x7d\x9e\x66\x6c\x93\x80\x85\xa4\xc4\xc3\xcd\xc9\xc7\xce\xc7\ \xc4\xcc\xc1\xbe\xc8\xb7\xb6\xc4\xc0\xbd\xca\xc9\xc4\xcf\xc2\xbd\ \xc9\xb9\xb3\xc3\xaf\xa9\xbc\xa3\x9e\xb1\x92\x8e\xa2\x90\x8c\xa1\ \x97\x92\xa5\x9b\x98\xa9\x9d\x9a\xaa\x9e\x9a\xaa\xa0\x9b\xab\x9f\ \x9a\xab\xaa\xa6\xb4\xac\xa8\xb5\xa7\xa2\xb1\xa5\xa1\xb0\xa7\xa2\ \xb1\xa7\xa2\xb1\xa9\xa4\xb2\xa9\xa6\xb5\xae\xa9\xb6\xaf\xac\xb8\ \xb3\xaf\xbb\xb5\xb1\xbc\xb3\xaf\xbb\xb4\xaf\xba\xb4\xb0\xbc\xb2\ \xae\xba\xb4\xb0\xbc\xb5\xb1\xbd\xb6\xb1\xbd\xb7\xb3\xbe\xb6\xb2\ \xbe\xb7\xb3\xbe\xaf\xaa\xb6\xa6\xa1\xb1\xa6\xa1\xb1\xaa\xa5\xb4\ \xa8\xa3\xb2\xa7\xa2\xb1\xa7\xa2\xb1\xa9\xa5\xb2\xae\xa9\xb5\xad\ \xa9\xb5\xaa\xa6\xb2\xa5\xa2\xb1\xa5\x9f\xaf\xb4\xaa\xb4\xc8\xb8\ \xbb\xce\xbc\xbd\xcc\xbb\xbe\xcc\xbd\xc0\xce\xbf\xc3\xd0\xc2\xc6\ \xd3\xc5\xc9\xd6\xc8\xcc\xd7\xca\xcd\xd7\xc9\xcc\xd0\xc3\xc6\xc6\ \xb8\xbd\xb9\xa9\xaf\xa7\x94\x9b\x8c\x78\x82\x66\x5d\x6f\x5b\x58\ \x6e\x60\x5d\x76\x68\x66\x7c\x71\x6c\x83\x79\x74\x8b\x82\x7e\x93\ \x8b\x85\x9a\x90\x8b\x9f\x96\x91\xa3\x9a\x94\xa6\x9f\x99\xa9\xa5\ \x9e\xae\x00\x00\x00\xd3\xca\xd1\xd8\xce\xd4\xd9\xcf\xd5\xda\xd0\ \xd6\xda\xd0\xd6\xdb\xd1\xd7\xdc\xd3\xd8\xdd\xd4\xd7\xe0\xd5\xd8\ \xe0\xd5\xd8\xe2\xd5\xd7\xe2\xd5\xd6\xe3\xd5\xd6\xe4\xd6\xd7\xe5\ \xd7\xd8\xe5\xd8\xda\xe6\xd9\xdb\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\ \xdb\xe4\xd7\xd9\xe5\xd8\xda\xe5\xd8\xda\xe4\xd7\xd9\xe3\xd6\xd8\ \xe2\xd5\xd7\xe2\xd5\xd7\xe1\xd3\xd5\xe0\xd3\xd5\xe0\xd2\xd4\xe0\ \xd2\xd3\xe1\xd3\xd4\xe2\xd2\xd3\xe4\xd4\xd4\xe5\xd6\xd4\xe6\xd7\ \xd4\xe8\xd6\xd5\xe9\xd7\xd6\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\ \xed\xdb\xd8\xed\xdd\xd7\xef\xdf\xd9\xf0\xe0\xd9\xef\xdf\xd8\xef\ \xdf\xd8\xef\xdd\xd6\xec\xda\xd3\xec\xd7\xd0\xea\xd6\xd0\xe9\xd6\ \xcf\xe9\xd5\xcf\xe9\xd6\xd1\xe9\xd6\xd1\xe9\xd7\xd2\xe8\xd7\xd4\ \xe7\xd5\xd2\xe8\xd7\xd3\xe9\xd7\xd3\xdd\xcc\xcb\xbc\xae\xb7\xac\ \xa1\xb1\xaa\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb2\xad\xa5\xb2\xab\xa4\ \xb1\xac\xa5\xb3\xac\xa5\xb3\xad\xa6\xb4\xac\xa6\xb3\xac\xa5\xb4\ \xab\xa4\xb3\xac\xa5\xb4\xab\xa4\xb3\xad\xa6\xb5\xae\xa7\xb5\xa8\ \xa1\xb3\xc2\xbe\xca\xd3\xcf\xd5\xcf\xcc\xd2\xcf\xcc\xd3\xce\xcb\ \xd4\xcb\xc9\xd2\xcc\xca\xd3\xc8\xc5\xcf\xc4\xc0\xcb\xbf\xba\xc6\ \xb0\xab\xbb\xae\xa9\xb9\xb1\xac\xbc\x9e\x99\xab\x93\x8f\xa3\x98\ \x95\xa7\x9d\x9b\xab\xa1\x9b\xac\xa0\x9c\xac\xa5\xa0\xb0\xac\xa8\ \xb6\xa9\xa5\xb4\xa8\xa4\xb3\xa3\xa0\xaf\xa4\xa1\xb0\xa5\xa1\xb0\ \xa7\xa3\xb2\xa9\xa6\xb5\xab\xa8\xb7\xb0\xac\xb9\xb4\xb0\xbc\xb2\ \xae\xba\xb1\xad\xb9\xb0\xad\xb9\xb3\xaf\xbb\xb2\xaf\xbb\xb4\xb0\ \xbc\xb2\xaf\xbb\xb4\xb1\xbd\xb7\xb3\xbe\xb7\xb3\xbe\xb8\xb4\xbf\ \xb2\xad\xb9\xa5\x9f\xb0\xa5\xa0\xb0\xa7\xa2\xb1\xa6\xa1\xb0\xa5\ \xa0\xb0\xa7\xa2\xb1\xa9\xa4\xb1\xa9\xa5\xb2\x9f\x9e\xad\x94\x95\ \xa7\x8f\x8e\xa2\xab\xa0\xad\xbc\xab\xb2\xba\xaa\xb1\xb8\xa9\xb1\ \xb9\xab\xb4\xbd\xaf\xb7\xbf\xb2\xba\xc2\xb5\xbc\xc5\xb8\xc0\xc7\ \xbb\xc2\xca\xbe\xc4\xcb\xbe\xc4\xc7\xb8\xbe\xbc\xad\xb6\xac\x9e\ \xa9\x9c\x8c\x98\x8a\x7b\x8b\x70\x6a\x7f\x65\x64\x7b\x69\x68\x80\ \x78\x74\x8b\x87\x84\x98\x91\x8d\x9f\x9a\x95\xa6\xa0\x9b\xab\xa2\ \x9d\xad\xa4\x9f\xae\xa6\xa0\xae\xa9\xa3\xb0\xad\xa6\xb2\x00\x00\ \x00\xcf\xc7\xce\xd5\xcc\xd3\xd8\xce\xd4\xda\xd0\xd6\xda\xd0\xd6\ \xdb\xd2\xd7\xdd\xd4\xd8\xe0\xd6\xd9\xe2\xd7\xd9\xe3\xd6\xd9\xe3\ \xd7\xd8\xe4\xd7\xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\xe8\xdb\ \xdb\xe8\xdb\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe7\xda\xdc\xe6\xd9\xdb\ \xe5\xd8\xda\xe5\xd8\xda\xe3\xd6\xd8\xe3\xd6\xd8\xe2\xd5\xd8\xe0\ \xd3\xd7\xdf\xd2\xd5\xdf\xd2\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xdf\xd1\ \xd4\xe0\xd2\xd4\xe2\xd4\xd5\xe4\xd5\xd5\xe5\xd6\xd5\xe6\xd7\xd6\ \xe7\xd8\xd6\xe8\xd8\xd6\xea\xd9\xd7\xeb\xda\xd7\xec\xdb\xd8\xed\ \xdb\xd8\xed\xde\xd7\xee\xde\xd8\xee\xde\xd8\xef\xde\xd8\xef\xdd\ \xd6\xec\xda\xd3\xeb\xd7\xd1\xea\xd4\xce\xe8\xd3\xcc\xe7\xd3\xcc\ \xe7\xd3\xcd\xe7\xd3\xce\xe6\xd3\xce\xde\xca\xc8\xd4\xc0\xc1\xe4\ \xd0\xcc\xe5\xd2\xcd\xd6\xc5\xc4\xb9\xac\xb6\xac\xa2\xb2\xa9\xa1\ \xb0\xa9\xa2\xb1\xab\xa4\xb3\xab\xa4\xb2\xab\xa3\xb2\xab\xa4\xb3\ \xab\xa4\xb3\xab\xa4\xb3\xac\xa5\xb3\xab\xa4\xb3\xab\xa4\xb3\xab\ \xa4\xb3\xab\xa4\xb4\xac\xa3\xb3\xbc\xb7\xc3\xc6\xc1\xcd\xd3\xcf\ \xd7\xd3\xd0\xd6\xd2\xcf\xd5\xd2\xd0\xd7\xd2\xcf\xd6\xd2\xcf\xd8\ \xce\xcb\xd5\xc6\xc2\xcd\xc5\xc1\xcc\xbd\xb9\xc4\xad\xa8\xb7\xa9\ \xa4\xb3\xa9\xa3\xb4\xb1\xac\xba\xa5\xa0\xb2\x9a\x95\xa8\x9b\x97\ \xa9\xa0\x9a\xab\xa2\x9d\xae\xab\xa6\xb6\xac\xa7\xb6\xa8\xa4\xb3\ \xa5\xa1\xb0\xa1\x9e\xae\xa3\xa0\xb0\xa3\xa0\xb0\xa5\xa2\xb2\xa7\ \xa4\xb3\xa9\xa6\xb5\xae\xab\xb8\xae\xac\xb8\xae\xab\xb8\xae\xab\ \xb8\xb1\xad\xb9\xaf\xad\xb9\xb0\xae\xba\xb2\xaf\xbb\xb3\xb0\xbc\ \xb4\xb1\xbd\xb6\xb2\xbe\xb8\xb4\xbf\xb8\xb4\xbf\xb5\xb1\xbd\xa4\ \x9f\xb0\xa0\x9c\xad\xa4\x9e\xaf\xa3\x9d\xae\xa4\x9f\xaf\xa4\xa0\ \xaf\x98\x99\xa8\x86\x8e\x9f\x78\x84\x98\x7e\x84\x99\x9c\x94\xa4\ \xa7\x9a\xa7\xa6\x9a\xa8\xa3\x99\xa8\xa1\x99\xaa\xa3\x9b\xab\xa8\ \x9e\xae\xac\xa2\xb0\xb1\xa6\xb3\xb4\xa9\xb6\xb7\xac\xb8\xbb\xaf\ \xba\xbc\xb0\xba\xb7\xab\xb6\xad\xa1\xad\x9f\x94\xa4\x92\x86\x97\ \x89\x7d\x90\x79\x73\x89\x6d\x6c\x83\x71\x71\x8a\x86\x83\x99\x9a\ \x99\xa9\xa7\xa4\xb2\xae\xaa\xb5\xae\xaa\xb6\xae\xaa\xb6\xaf\xab\ \xb7\xae\xaa\xb6\xb0\xaa\xb6\xb3\xad\xb8\x00\x00\x00\xcb\xc2\xca\ \xd2\xc9\xcf\xd7\xcd\xd4\xda\xd0\xd6\xda\xd0\xd6\xdc\xd2\xd6\xdf\ \xd5\xd7\xe1\xd6\xd9\xe3\xd7\xd9\xe4\xd8\xd9\xe6\xd8\xd9\xe7\xd9\ \xd9\xe8\xda\xd9\xe8\xda\xda\xe9\xdb\xdc\xea\xdd\xdd\xea\xde\xde\ \xe9\xdc\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe5\ \xd8\xda\xe3\xd6\xd8\xe3\xd5\xd9\xe1\xd4\xd8\xe0\xd2\xd6\xdf\xd2\ \xd5\xdf\xd2\xd6\xe0\xd2\xd5\xe0\xd2\xd4\xe0\xd2\xd4\xe1\xd3\xd4\ \xe1\xd3\xd5\xe3\xd4\xd6\xe4\xd6\xd7\xe6\xd6\xd7\xe7\xd8\xd8\xe7\ \xd8\xd7\xe8\xd8\xd7\xea\xd9\xd8\xeb\xda\xd7\xec\xdb\xd8\xed\xdd\ \xd8\xee\xdd\xd7\xee\xdd\xd7\xef\xdd\xd7\xed\xdb\xd6\xec\xd9\xd4\ \xeb\xd7\xd1\xe8\xd4\xcf\xe6\xd2\xcc\xe6\xd1\xcb\xe5\xcf\xca\xe4\ \xcf\xca\xe5\xd1\xcb\xc6\xb4\xba\xb2\xa3\xb1\xd5\xc2\xc1\xe3\xcf\ \xca\xd3\xc1\xc2\xbc\xae\xb7\xaf\xa6\xb3\xab\xa2\xb2\xa9\xa1\xb1\ \xaa\xa3\xb2\xaa\xa3\xb2\xaa\xa3\xb2\xaa\xa3\xb2\xab\xa4\xb3\xab\ \xa4\xb3\xab\xa4\xb3\xaa\xa3\xb1\xa7\xa1\xb0\xa5\x9f\xaf\xa2\x9c\ \xaf\xb5\xad\xbd\xd7\xd4\xdb\xd3\xd0\xd8\xd5\xd1\xda\xd5\xd1\xd7\ \xd4\xd0\xd7\xd3\xcf\xd6\xd3\xcf\xd7\xd1\xcd\xd5\xcb\xc8\xd1\xc7\ \xc2\xcd\xc2\xbe\xc9\xb9\xb5\xc1\xa9\xa4\xb4\xa6\xa1\xb1\xa7\xa1\ \xb2\xaa\xa4\xb5\xb1\xac\xbb\xa8\xa2\xb3\x9d\x99\xa9\x9e\x98\xa9\ \xa4\x9f\xaf\xae\xa9\xb7\xaa\xa6\xb5\xa6\xa2\xb1\xa4\xa1\xb0\xa1\ \x9e\xae\xa2\x9f\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa5\xa2\xb2\xa7\xa4\ \xb4\xaa\xa7\xb6\xab\xa8\xb7\xaa\xa7\xb6\xab\xa8\xb6\xae\xab\xb7\ \xad\xab\xb8\xaf\xad\xb9\xb1\xaf\xbb\xb3\xb1\xbd\xb4\xb1\xbc\xb7\ \xb3\xbe\xb8\xb4\xc0\xb8\xb4\xbf\xb8\xb3\xbf\xa6\xa1\xb1\x9f\x9a\ \xad\xa0\x9b\xad\xa3\x9d\xae\x95\x95\xa6\x7a\x85\x97\x61\x76\x88\ \x5c\x75\x87\x72\x80\x92\x8c\x8b\x9c\x95\x8e\x9e\x96\x8f\xa0\x96\ \x8f\xa2\x95\x90\xa3\x97\x93\xa6\x9a\x95\xa9\x9c\x97\xaa\xa1\x9a\ \xab\xa4\x9b\xac\xa7\x9e\xaf\xaa\xa0\xb0\xac\xa3\xb1\xae\xa3\xb1\ \xaa\xa0\xae\xa1\x98\xa8\x96\x8c\x9e\x8c\x82\x97\x88\x7f\x93\x7f\ \x79\x8f\x77\x74\x8d\x7a\x7a\x93\x8e\x8e\xa2\xa8\xa6\xb4\xb2\xae\ \xb9\xb2\xae\xb9\xb1\xad\xb9\xb1\xad\xb9\xb1\xad\xb9\xb1\xad\xb8\ \xb1\xad\xb8\xb3\xad\xb8\x00\x00\x00\xc7\xbf\xc6\xcf\xc5\xcc\xd6\ \xcc\xd2\xda\xd0\xd5\xdb\xd2\xd5\xdd\xd2\xd5\xdf\xd5\xd7\xe2\xd6\ \xd8\xe5\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xe8\xdb\xd9\xea\xdc\xda\ \xea\xdd\xdb\xec\xde\xde\xec\xdf\xdf\xeb\xdf\xdf\xea\xde\xde\xe9\ \xdc\xde\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe3\xd6\ \xd8\xe2\xd4\xd8\xe0\xd4\xd7\xdf\xd2\xd5\xde\xd2\xd6\xde\xd2\xd6\ \xde\xd2\xd5\xde\xd2\xd5\xe0\xd2\xd6\xe0\xd3\xd6\xe2\xd5\xd6\xe4\ \xd6\xd8\xe4\xd7\xd9\xe5\xd7\xd9\xe6\xd7\xd8\xe6\xd7\xd8\xe7\xd8\ \xd7\xe9\xd9\xd7\xeb\xd9\xd8\xec\xda\xd8\xed\xdc\xd9\xed\xdc\xd8\ \xee\xdd\xd7\xed\xdd\xd6\xee\xdb\xd6\xed\xda\xd5\xeb\xd8\xd3\xe8\ \xd5\xd0\xe6\xd2\xcd\xe5\xd1\xcc\xe4\xcf\xca\xe2\xce\xc9\xe4\xcf\ \xca\xc7\xb6\xbc\xa9\x9d\xaf\xbc\xab\xb3\xdf\xcc\xc7\xd9\xc7\xc4\ \xc2\xb4\xba\xb2\xa8\xb5\xaf\xa6\xb3\xab\xa3\xb2\xaa\xa3\xb2\xa9\ \xa2\xb1\xa9\xa2\xb1\xa9\xa2\xb1\xaa\xa3\xb3\xab\xa4\xb2\xab\xa4\ \xb2\xaa\xa3\xb1\xa7\xa1\xb0\xa4\x9f\xb0\xa3\x9d\xb1\xcc\xc9\xd1\ \xd7\xd3\xd9\xd7\xd2\xd9\xd7\xd2\xdb\xd5\xd1\xd7\xd4\xd0\xd7\xd5\ \xd0\xd9\xd1\xcd\xd5\xce\xc9\xd2\xc8\xc4\xcf\xc5\xc1\xcc\xc1\xbd\ \xc8\xb7\xb2\xbf\xa9\xa3\xb4\xa4\x9e\xaf\xa5\x9f\xb0\xab\xa6\xb5\ \xb3\xae\xbc\xb1\xac\xbc\xa9\xa3\xb4\x9e\x99\xab\xa9\xa3\xb3\xae\ \xa8\xb7\xa9\xa5\xb4\xa6\xa3\xb2\xa4\xa1\xaf\xa1\x9e\xae\xa2\x9f\ \xaf\xa3\xa0\xaf\xa2\x9f\xaf\xa5\xa2\xb2\xa6\xa3\xb3\xa5\xa2\xb2\ \xaa\xa7\xb6\xab\xa8\xb7\xa7\xa4\xb3\xaa\xa7\xb5\xad\xab\xb8\xb1\ \xae\xbb\xb1\xaf\xbb\xb2\xb0\xbc\xb2\xb0\xbc\xb7\xb3\xbf\xb6\xb2\ \xbe\xb9\xb5\xbf\xb8\xb4\xbe\xad\xa9\xb6\x9b\x97\xaa\x96\x93\xa6\ \x7b\x83\x94\x5b\x71\x82\x51\x6f\x7f\x58\x73\x84\x7a\x85\x97\x8e\ \x8d\x9f\x8f\x8b\x9d\x90\x8a\x9d\x8f\x8b\x9e\x90\x8c\x9f\x91\x8c\ \xa1\x93\x8f\xa3\x94\x90\xa5\x97\x92\xa7\x9c\x96\xa9\x9f\x98\xaa\ \xa1\x9a\xab\xa4\x9c\xac\xa4\x9c\xad\xa4\x9a\xab\xa0\x98\xa9\x9a\ \x92\xa3\x91\x8a\x9d\x89\x82\x97\x89\x82\x97\x87\x82\x97\x85\x82\ \x98\x89\x88\x9e\x96\x96\xaa\xa9\xa8\xb5\xb3\xaf\xba\xb2\xae\xb9\ \xb1\xad\xb8\xb1\xad\xb8\xae\xaa\xb6\xaa\xa6\xb3\xaf\xab\xb7\xb2\ \xad\xb8\x00\x00\x00\xc4\xbc\xc3\xcc\xc2\xc9\xd5\xca\xcf\xdb\xd0\ \xd2\xdc\xd1\xd4\xde\xd2\xd4\xe0\xd3\xd5\xe3\xd6\xd8\xe5\xd8\xd8\ \xe7\xd9\xda\xe9\xdb\xdb\xe9\xdc\xda\xea\xdd\xdb\xed\xe0\xde\xef\ \xe2\xe1\xee\xe2\xe2\xed\xe1\xe1\xeb\xdf\xe0\xea\xdd\xdf\xe9\xdc\ \xde\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe3\xd5\xd9\xe2\xd5\xd8\ \xe0\xd5\xd8\xde\xd3\xd7\xdd\xd2\xd8\xdd\xd3\xd9\xdd\xd2\xd9\xde\ \xd3\xd8\xde\xd4\xd7\xe0\xd4\xd7\xe2\xd5\xd8\xe4\xd7\xda\xe5\xd8\ \xda\xe6\xd9\xdb\xe6\xd9\xda\xe6\xd8\xd9\xe6\xd7\xd9\xe8\xd9\xd9\ \xe9\xd9\xd7\xea\xda\xd8\xeb\xdb\xd9\xec\xdc\xd9\xec\xdb\xd8\xec\ \xda\xd8\xec\xda\xd8\xec\xda\xd7\xeb\xd8\xd5\xe9\xd6\xd2\xe6\xd4\ \xcf\xe5\xd1\xcd\xe3\xcf\xcb\xe3\xcf\xca\xe3\xcf\xca\xd3\xc2\xc2\ \xa9\x9e\xae\xa9\x9e\xae\xcd\xb9\xba\xdd\xcb\xc6\xcb\xbb\xbe\xb8\ \xac\xb7\xb0\xa6\xb3\xad\xa4\xb2\xab\xa4\xb3\xaa\xa3\xb1\xaa\xa3\ \xb2\xa9\xa2\xb1\xab\xa4\xb2\xaa\xa3\xb1\xa9\xa2\xb2\xaa\xa3\xb2\ \xa8\xa1\xb0\xa5\x9f\xaf\xa9\xa5\xb4\xc0\xbb\xc5\xd1\xcd\xd4\xd6\ \xd2\xd8\xd4\xd0\xd7\xd5\xd0\xd9\xd5\xd1\xd8\xd2\xcd\xd6\xcf\xca\ \xd3\xcd\xc8\xd2\xc8\xc4\xce\xc4\xbf\xca\xc1\xbd\xc8\xb7\xb2\xc0\ \xa8\xa2\xb3\xa4\x9e\xae\xa3\x9d\xae\xaa\xa5\xb4\xb4\xb0\xbd\xb4\ \xb0\xbc\xb1\xae\xbb\xab\xa5\xb5\xac\xa7\xb7\xae\xa9\xb7\xa9\xa6\ \xb5\xa5\xa2\xb1\xa2\x9f\xaf\x9f\x9d\xad\xa0\x9d\xad\xa0\x9d\xad\ \xa2\x9f\xaf\xa7\xa4\xb4\xa5\xa2\xb2\xa4\xa1\xb1\xa9\xa6\xb5\xa9\ \xa6\xb5\xa6\xa3\xb3\xa9\xa6\xb4\xac\xa9\xb8\xae\xac\xb9\xb1\xaf\ \xbb\xb3\xb0\xbc\xb4\xb1\xbd\xb8\xb4\xc0\xb8\xb4\xc0\xb9\xb5\xc0\ \xb8\xb4\xbf\xb8\xb3\xbe\x7d\x7b\x94\x62\x6e\x82\x51\x67\x79\x53\ \x6a\x7b\x6a\x79\x8b\x8b\x8e\x9e\x9b\x96\xa6\x95\x90\xa1\x92\x8d\ \x9f\x90\x8b\x9e\x8f\x8b\x9e\x8f\x8b\x9e\x90\x8c\xa0\x90\x8b\xa0\ \x92\x8d\xa2\x93\x8f\xa3\x96\x91\xa5\x9a\x94\xa6\x9e\x97\xa8\x9f\ \x98\xa9\xa0\x98\xa9\x9e\x97\xa8\x9c\x94\xa6\x96\x8e\xa1\x90\x8a\ \x9d\x8e\x88\x9b\x95\x8e\xa2\x9d\x97\xa8\xa0\x9c\xac\xa1\x9f\xb0\ \xa4\xa3\xb3\xac\xaa\xb7\xb2\xae\xb9\xb2\xae\xb9\xab\xa7\xb4\xa7\ \xa3\xb0\x9e\x9b\xaa\x9b\x99\xa9\xad\xa8\xb5\xb3\xad\xb8\x00\x00\ \x00\xc1\xb8\xc0\xcb\xc1\xc7\xd4\xc8\xcc\xdb\xce\xd1\xdd\xd1\xd3\ \xe0\xd3\xd5\xe0\xd3\xd6\xe3\xd7\xd7\xe6\xd8\xd9\xe7\xda\xda\xe9\ \xdb\xdb\xea\xdd\xdc\xed\xdf\xdd\xef\xe3\xe1\xef\xe5\xe3\xef\xe4\ \xe4\xee\xe2\xe2\xed\xe1\xe1\xeb\xdf\xe0\xea\xdd\xdf\xe9\xdc\xde\ \xe8\xdb\xdd\xe6\xd9\xdb\xe3\xd7\xda\xe1\xd5\xd8\xdf\xd4\xd8\xde\ \xd3\xd9\xdd\xd3\xd9\xdd\xd4\xda\xdc\xd3\xda\xdd\xd3\xd9\xdf\xd4\ \xda\xe0\xd5\xda\xe2\xd7\xda\xe3\xd8\xdb\xe4\xd9\xdc\xe5\xd9\xdc\ \xe5\xd9\xdb\xe6\xd9\xda\xe5\xd8\xd9\xe7\xd9\xd9\xe7\xd9\xd9\xe8\ \xda\xd9\xea\xdb\xd8\xeb\xdb\xd8\xeb\xda\xd8\xeb\xda\xd8\xeb\xda\ \xd7\xeb\xda\xd7\xea\xd9\xd7\xe8\xd6\xd4\xe6\xd4\xd1\xe4\xd1\xce\ \xe4\xd0\xcd\xe2\xcf\xcb\xe0\xce\xca\xde\xcc\xc8\xb9\xab\xb5\xa8\ \x9d\xae\xaf\xa0\xad\xd7\xc3\xbf\xd2\xc1\xc2\xc1\xb4\xbc\xb2\xa8\ \xb5\xaf\xa6\xb3\xad\xa4\xb3\xab\xa2\xb2\xab\xa4\xb2\xab\xa4\xb2\ \xac\xa4\xb2\xab\xa4\xb2\xab\xa4\xb2\xab\xa4\xb2\xaa\xa3\xb1\xa7\ \xa1\xb0\xa8\xa3\xb2\xb2\xae\xbb\xc8\xc3\xcb\xd5\xd1\xd7\xd5\xd1\ \xd7\xd4\xcf\xd7\xd4\xcf\xd8\xd2\xcd\xd6\xce\xc9\xd2\xcb\xc6\xd0\ \xc7\xc2\xcd\xc4\xbf\xca\xc0\xbc\xc8\xb6\xb1\xbe\xa6\xa0\xb1\xa3\ \x9d\xae\xa2\x9c\xad\xa9\xa2\xb1\xb2\xad\xba\xb3\xaf\xbb\xb3\xaf\ \xbb\xaf\xab\xb8\xab\xa6\xb5\xad\xa8\xb7\xac\xa7\xb5\xa5\xa2\xb2\ \xa1\x9f\xaf\x9f\x9d\xad\xa0\x9d\xad\xa1\x9e\xae\xa2\x9e\xaf\xa7\ \xa4\xb4\xa3\xa0\xb0\xa3\xa0\xb0\xa9\xa6\xb5\xa8\xa5\xb3\xa7\xa4\ \xb3\xaa\xa7\xb6\xae\xab\xb9\xae\xac\xba\xb0\xae\xbb\xb1\xaf\xbb\ \xb5\xb1\xbe\xb8\xb4\xc0\xb9\xb6\xc2\xbb\xb7\xc1\xb8\xb4\xbf\xbc\ \xb7\xc2\x90\x85\x99\x93\x8e\x98\x8f\x8d\x99\xa1\x9a\xa6\xaf\xa5\ \xb1\xab\xa2\xaf\xa1\x9a\xa9\x9b\x95\xa5\x97\x91\xa2\x94\x8f\xa0\ \x92\x8e\xa0\x91\x8d\xa0\x90\x8c\x9f\x90\x8b\xa0\x90\x8b\xa0\x90\ \x8c\xa1\x92\x8d\xa1\x95\x8f\xa2\x98\x93\xa5\x9b\x96\xa7\x9b\x95\ \xa8\x9a\x94\xa6\x97\x91\xa4\x93\x8d\xa0\x95\x8f\xa2\x9e\x99\xaa\ \xa7\xa3\xb1\xac\xa8\xb5\xb0\xac\xb8\xb0\xac\xb9\xae\xac\xb8\xad\ \xab\xb7\xae\xac\xb7\xad\xaa\xb5\xa4\xa1\xaf\xa0\x9e\xad\xa5\xa1\ \xb0\xa4\xa0\xae\xaf\xaa\xb5\xb4\xae\xb8\x00\x00\x00\xc0\xb5\xbd\ \xcb\xbf\xc4\xd3\xc6\xca\xdb\xce\xd0\xde\xd1\xd3\xe0\xd3\xd5\xe1\ \xd4\xd5\xe3\xd5\xd6\xe5\xd8\xd9\xe7\xda\xda\xea\xdc\xdd\xeb\xde\ \xde\xee\xe1\xdf\xf0\xe4\xe3\xef\xe6\xe5\xef\xe6\xe5\xef\xe4\xe4\ \xed\xe2\xe3\xed\xe0\xe2\xeb\xde\xe0\xe9\xdc\xde\xe8\xdb\xdd\xe5\ \xd9\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe0\xd5\xdb\xdf\xd5\xdb\xdd\xd5\ \xdc\xdd\xd5\xdc\xdd\xd5\xdc\xdc\xd4\xdb\xde\xd5\xdb\xe0\xd6\xdb\ \xe1\xd6\xdc\xe2\xd8\xdd\xe3\xd9\xdd\xe5\xda\xdc\xe5\xd9\xdc\xe5\ \xd9\xdc\xe6\xd9\xda\xe6\xd8\xda\xe6\xd8\xda\xe7\xd9\xda\xe7\xd9\ \xd9\xe8\xda\xd9\xe9\xda\xd9\xea\xda\xd7\xe9\xda\xd7\xe9\xd9\xd7\ \xe9\xd8\xd7\xe8\xd6\xd5\xe6\xd5\xd3\xe4\xd3\xd1\xe2\xd0\xce\xe0\ \xcd\xcb\xdf\xcc\xcb\xdd\xcb\xc8\xc9\xba\xbe\xaa\xa0\xaf\xa7\x9c\ \xac\xbc\xaa\xb1\xd7\xc4\xc2\xc6\xb8\xbe\xb9\xaf\xbb\xb1\xa8\xb5\ \xb0\xa7\xb4\xae\xa5\xb2\xad\xa3\xb3\xae\xa4\xb3\xad\xa5\xb3\xae\ \xa6\xb3\xac\xa5\xb2\xac\xa5\xb2\xac\xa5\xb2\xa9\xa3\xb1\xa7\xa2\ \xb1\xaf\xab\xb8\xc0\xbb\xc5\xd5\xd1\xd7\xd4\xd0\xd7\xd2\xcd\xd6\ \xd4\xcf\xd8\xd2\xcd\xd6\xcd\xc8\xd1\xc9\xc4\xce\xc6\xc1\xcc\xc4\ \xc0\xcb\xbf\xbb\xc7\xb7\xb2\xbf\xa8\xa2\xb2\xa2\x9c\xac\xa1\x9b\ \xac\xa7\xa1\xb1\xaf\xab\xb8\xb2\xae\xba\xb3\xae\xbb\xaf\xab\xb8\ \xa8\xa3\xb2\xab\xa7\xb6\xaa\xa7\xb5\xa7\xa4\xb3\xa2\x9f\xb0\xa0\ \x9d\xae\xa1\x9d\xad\xa1\x9e\xad\xa1\x9e\xaf\xa6\xa3\xb3\xa4\xa1\ \xb1\xa3\xa0\xb0\xaa\xa7\xb6\xa6\xa3\xb3\xa7\xa5\xb4\xa9\xa7\xb5\ \xac\xa9\xb8\xaf\xac\xba\xb2\xaf\xbc\xb1\xaf\xbb\xb5\xb2\xbe\xba\ \xb6\xc1\xba\xb6\xc1\xbd\xb9\xc4\xb7\xb3\xbf\xb9\xb4\xc0\xc9\xba\ \xbd\xd8\xc4\xc1\xd0\xbd\xbc\xc6\xb6\xb9\xb8\xac\xb5\xac\xa3\xaf\ \xa5\x9e\xac\xa1\x9a\xa9\x9a\x96\xa5\x98\x92\xa3\x95\x90\xa2\x93\ \x8f\xa1\x92\x8e\xa1\x8f\x8b\x9f\x90\x8b\x9f\x8f\x8a\x9f\x8f\x8a\ \x9f\x90\x8c\xa0\x91\x8d\xa0\x96\x92\xa5\x99\x94\xa7\x97\x92\xa5\ \x96\x90\xa4\x99\x94\xa6\xa2\x9f\xaf\xac\xa9\xb6\xb2\xae\xba\xb3\ \xaf\xba\xb2\xaf\xbb\xb2\xaf\xbb\xb0\xad\xb9\x9f\xa2\xb0\x89\x93\ \xa5\x7f\x8d\x9f\x97\x99\xaa\xa8\xa4\xb3\xae\xaa\xb6\xae\xaa\xb6\ \xad\xa8\xb5\xb3\xad\xb8\x00\x00\x00\xbd\xb1\xb8\xc9\xbc\xc1\xd2\ \xc4\xc7\xd9\xcc\xce\xdd\xd0\xd1\xdf\xd2\xd3\xe0\xd2\xd3\xe3\xd5\ \xd6\xe5\xd7\xd8\xe6\xd9\xda\xe9\xdb\xdc\xeb\xde\xdf\xee\xe2\xe2\ \xf0\xe5\xe4\xf1\xe7\xe6\xf0\xe6\xe6\xef\xe5\xe5\xed\xe2\xe4\xec\ \xe0\xe2\xec\xdf\xe1\xea\xdd\xdf\xe7\xdc\xde\xe6\xdb\xde\xe4\xd9\ \xdd\xe2\xd8\xdd\xe2\xd8\xde\xe0\xd8\xde\xde\xd6\xde\xdf\xd7\xde\ \xde\xd6\xdd\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdc\xe1\xd8\xde\xe2\ \xd8\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe5\xda\xdd\xe4\xd9\xdd\xe4\xda\ \xdd\xe6\xda\xdb\xe6\xda\xdc\xe6\xd9\xdb\xe6\xd9\xd9\xe6\xd8\xda\ \xe7\xd8\xda\xe7\xd8\xd9\xe7\xd8\xd7\xe7\xd9\xd7\xe6\xd8\xd6\xe6\ \xd7\xd5\xe4\xd5\xd4\xe3\xd2\xd1\xe0\xd0\xce\xde\xcd\xcc\xdc\xcb\ \xcb\xdb\xc9\xc9\xc0\xb1\xb9\xac\xa2\xb1\xa8\x9e\xaf\xa9\x9c\xab\ \xc9\xb6\xb8\xcd\xbe\xbf\xbf\xb5\xbf\xb5\xab\xb8\xb3\xa8\xb5\xb1\ \xa9\xb5\xb0\xa7\xb4\xb0\xa6\xb5\xaf\xa5\xb4\xae\xa7\xb4\xae\xa7\ \xb4\xad\xa6\xb3\xae\xa7\xb4\xab\xa5\xb2\xa9\xa3\xb2\xb3\xaf\xbb\ \xc7\xc2\xcb\xd2\xcd\xd4\xd6\xd2\xd8\xd3\xce\xd6\xd1\xcc\xd6\xcf\ \xca\xd3\xcb\xc6\xcf\xc8\xc3\xcd\xc3\xbf\xca\xc2\xbe\xc9\xc0\xbc\ \xc7\xb6\xb2\xbf\xa6\xa1\xb0\xa0\x9a\xab\xa1\x9b\xab\xa2\x9d\xad\ \xac\xa8\xb5\xb2\xae\xba\xb2\xae\xba\xab\xa7\xb5\xa5\xa2\xb1\xaa\ \xa7\xb6\xaa\xa7\xb6\xa8\xa5\xb4\xa3\xa0\xb0\xa1\x9e\xae\xa1\x9f\ \xaf\xa0\x9e\xae\xa1\x9e\xae\xa3\xa0\xb0\xa3\xa0\xb0\xa4\xa0\xb1\ \xa8\xa5\xb6\xa3\xa0\xb0\xa6\xa3\xb2\xa9\xa7\xb5\xad\xaa\xb8\xb0\ \xae\xbb\xb3\xb1\xbe\xb3\xb1\xbe\xb8\xb6\xc2\xb9\xb9\xc3\xbc\xb9\ \xc3\xbd\xb9\xc4\xb6\xb2\xbd\xb8\xb3\xc0\xce\xc0\xc3\xd7\xc3\xc0\ \xcc\xba\xbb\xc1\xb2\xb7\xb4\xaa\xb3\xae\xa5\xb1\xa9\xa1\xae\xa5\ \x9e\xac\x9e\x9a\xa8\x9b\x95\xa6\x99\x93\xa4\x97\x91\xa3\x94\x8f\ \xa2\x92\x8c\x9f\x8f\x8a\x9d\x8f\x8a\x9d\x8e\x88\x9c\x8d\x89\x9d\ \x8e\x89\x9e\x92\x8e\xa2\x95\x91\xa5\x97\x93\xa6\x9d\x99\xaa\xa6\ \xa2\xb2\xae\xab\xb8\xb3\xaf\xba\xb4\xb0\xbb\xb3\xaf\xba\xae\xaa\ \xb7\xb0\xac\xb8\xb2\xae\xb9\x9e\xa1\xae\x69\x83\x98\x53\x79\x8f\ \x8b\x95\xa7\xaa\xa5\xb4\xad\xa9\xb6\xad\xa9\xb6\xa8\xa4\xb4\xb0\ \xaa\xb7\x00\x00\x00\xba\xad\xb3\xc6\xb8\xbc\xcf\xc1\xc3\xd7\xca\ \xcc\xdc\xce\xd0\xde\xd1\xd1\xe0\xd2\xd3\xe2\xd4\xd5\xe5\xd7\xd8\ \xe7\xda\xda\xe9\xdc\xdc\xec\xdf\xe0\xee\xe3\xe3\xef\xe5\xe5\xf1\ \xe7\xe7\xf0\xe7\xe7\xf0\xe5\xe6\xee\xe3\xe5\xec\xe1\xe3\xeb\xdf\ \xe2\xe8\xdd\xe0\xe7\xdc\xdf\xe6\xdc\xdf\xe4\xda\xdf\xe3\xda\xdf\ \xe2\xda\xe0\xe1\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xdf\xde\xd6\xe0\xde\ \xd6\xdd\xdd\xd6\xde\xde\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xdf\xe2\xda\ \xdf\xe3\xda\xe0\xe3\xda\xdf\xe3\xda\xdf\xe4\xda\xde\xe4\xd9\xdd\ \xe4\xda\xdc\xe5\xd9\xdb\xe5\xd9\xdb\xe6\xd9\xdb\xe6\xd9\xda\xe5\ \xd9\xda\xe6\xd8\xd9\xe5\xd7\xd9\xe5\xd6\xd8\xe5\xd6\xd8\xe4\xd5\ \xd6\xe2\xd4\xd4\xdf\xd0\xd2\xdd\xce\xcf\xdb\xcb\xcd\xd1\xc1\xc5\ \xb1\xa6\xb3\xad\xa4\xb3\xab\xa1\xb1\xa6\x9c\xad\xae\xa0\xad\xd0\ \xbd\xbe\xc5\xb8\xbe\xbb\xb2\xbd\xb4\xab\xb7\xb3\xaa\xb5\xb1\xa8\ \xb6\xb0\xa7\xb4\xb0\xa7\xb5\xb0\xa8\xb4\xaf\xa7\xb4\xb0\xa7\xb4\ \xad\xa6\xb3\xac\xa5\xb2\xaa\xa4\xb2\xba\xb6\xc1\xce\xc9\xd1\xd1\ \xcc\xd3\xd5\xd2\xd8\xd4\xd0\xd6\xcf\xca\xd3\xcf\xcb\xd1\xca\xc7\ \xd0\xc7\xc4\xcd\xc3\xc0\xc9\xc0\xbc\xc7\xc0\xbc\xc6\xb9\xb5\xc0\ \xaa\xa5\xb2\xa1\x9c\xab\xa1\x9c\xab\xa2\x9d\xad\xab\xa6\xb4\xb2\ \xae\xba\xb3\xaf\xbb\xac\xa8\xb5\xa3\xa1\xb1\xa8\xa5\xb4\xaa\xa7\ \xb6\xa9\xa6\xb5\xa4\xa1\xb1\xa2\x9f\xaf\xa0\x9f\xaf\xa1\x9f\xaf\ \xa2\x9f\xaf\xa4\xa1\xb1\xa3\xa0\xb1\xa5\xa2\xb2\xa9\xa6\xb6\xa4\ \xa1\xb1\xa5\xa2\xb1\xa9\xa6\xb4\xad\xab\xb9\xb1\xae\xbc\xb2\xb0\ \xbd\xb5\xb3\xbf\xbb\xb9\xc4\xbc\xba\xc5\xbf\xbc\xc6\xbd\xb9\xc4\ \xb8\xb4\xbf\xba\xb6\xc1\xca\xbd\xc1\xd2\xbe\xbd\xc7\xb6\xb9\xba\ \xae\xb6\xb2\xa8\xb4\xae\xa5\xb2\xac\xa3\xb0\xa7\xa0\xad\xa3\x9d\ \xac\x9e\x99\xa9\x9b\x95\xa6\x99\x93\xa5\x97\x91\xa3\x92\x8d\xa0\ \x90\x8a\x9d\x8f\x89\x9c\x8e\x88\x9c\x8d\x88\x9c\x8c\x88\x9c\x8f\ \x8b\x9f\x95\x91\xa5\x9f\x9b\xad\xa8\xa6\xb4\xb1\xad\xb9\xb4\xb0\ \xbc\xb4\xb0\xbb\xb4\xb0\xbb\xb0\xac\xb9\xa0\x9d\xad\xa3\xa1\xb0\ \xb2\xae\xba\xae\xab\xb6\x7e\x90\xa2\x60\x82\x96\x7b\x8a\x9f\x98\ \x99\xac\xa1\x9f\xb0\x9b\x9a\xad\x9f\x9e\xb0\xaa\xa7\xb5\x00\x00\ \x00\xb7\xa8\xae\xc3\xb4\xb7\xcd\xbd\xbf\xd5\xc7\xc8\xda\xcc\xce\ \xdc\xce\xcf\xdf\xd1\xd2\xe2\xd4\xd5\xe4\xd7\xd7\xe6\xda\xda\xea\ \xde\xde\xec\xe0\xe1\xee\xe3\xe3\xef\xe5\xe5\xf0\xe6\xe7\xf0\xe6\ \xe6\xf0\xe4\xe6\xef\xe4\xe6\xed\xe2\xe5\xeb\xe0\xe2\xe9\xde\xe1\ \xe7\xdd\xe0\xe6\xdb\xe1\xe4\xdb\xe1\xe3\xdc\xe1\xe2\xda\xe1\xe2\ \xd9\xe0\xe0\xd9\xe1\xe0\xd8\xe1\xdf\xd7\xe1\xdf\xd7\xe1\xde\xd6\ \xe0\xde\xd6\xe0\xde\xd8\xdf\xdf\xd8\xdf\xe1\xd9\xdf\xe1\xdb\xe0\ \xe2\xda\xdf\xe2\xda\xe0\xe3\xda\xdf\xe4\xda\xdf\xe3\xd9\xdd\xe3\ \xda\xdd\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe4\xd8\xda\xe5\xd8\ \xd9\xe4\xd7\xd8\xe4\xd7\xd8\xe3\xd6\xd7\xe2\xd5\xd7\xe1\xd3\xd5\ \xdf\xd1\xd3\xdc\xcf\xd1\xdb\xcd\xcf\xc6\xb9\xc0\xad\xa3\xb3\xae\ \xa4\xb2\xaa\xa1\xb1\xa6\x9f\xae\xa4\x9a\xab\xbb\xa9\xb1\xd0\xc0\ \xc2\xc2\xb7\xbf\xba\xb1\xbd\xb3\xaa\xb6\xb1\xa8\xb5\xb1\xa8\xb5\ \xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xaf\xa6\xb3\xac\ \xa5\xb2\xab\xa4\xb2\xc4\xc0\xc9\xcf\xcb\xd2\xce\xc9\xd1\xd3\xcf\ \xd5\xd4\xd0\xd6\xce\xc9\xd2\xcb\xc7\xd0\xca\xc6\xcf\xc7\xc3\xcc\ \xc2\xbf\xc8\xc0\xbc\xc6\xbe\xba\xc5\xb8\xb4\xbf\xac\xa8\xb4\xa2\ \x9d\xad\xa1\x9c\xab\xa2\x9d\xac\xa8\xa3\xb2\xb0\xac\xb8\xb2\xad\ \xba\xac\xa9\xb6\xa3\xa0\xb0\xa7\xa4\xb3\xa9\xa6\xb5\xa9\xa6\xb5\ \xa5\xa3\xb2\xa2\xa1\xb1\xa0\x9e\xae\xa3\x9f\xaf\xa2\x9f\xaf\xa4\ \xa1\xb1\xa3\xa0\xb0\xa6\xa3\xb2\xa9\xa6\xb5\xa3\xa0\xb1\xa4\xa2\ \xb1\xab\xa8\xb6\xae\xac\xba\xb1\xaf\xbc\xb3\xb0\xbd\xb6\xb4\xc0\ \xbb\xb9\xc5\xbe\xbd\xc7\xc1\xbe\xc8\xbc\xb8\xc3\xba\xb6\xc2\xbd\ \xb9\xc3\xc4\xba\xc0\xcc\xba\xbb\xc1\xb2\xb7\xb5\xab\xb5\xb1\xa7\ \xb3\xaf\xa7\xb2\xad\xa4\xb1\xa9\xa2\xb0\xa5\x9e\xad\xa1\x9b\xab\ \x9e\x98\xa8\x9b\x95\xa7\x9a\x94\xa5\x94\x8e\xa0\x8f\x89\x9c\x8e\ \x88\x9b\x8f\x88\x9c\x8f\x8a\x9c\x8d\x89\x9d\x8f\x8b\x9f\x99\x96\ \xa8\xa9\xa6\xb4\xb1\xae\xbb\xb3\xaf\xbb\xb4\xb0\xbb\xb3\xaf\xbb\ \xb3\xaf\xba\xb2\xae\xba\xa8\xa5\xb2\xa8\xa5\xb3\xaf\xac\xb8\xa1\ \xa2\xb0\x73\x87\x9d\x5f\x80\x96\x66\x7d\x97\x84\x8a\xa3\x90\x93\ \xaa\x89\x8c\xa5\x97\x97\xac\xa5\xa3\xb3\x00\x00\x00\xb5\xa6\xab\ \xbf\xae\xb1\xc8\xb8\xb9\xd1\xc2\xc3\xd8\xca\xcc\xdc\xce\xd0\xde\ \xd0\xd1\xe1\xd3\xd4\xe4\xd6\xd7\xe6\xd9\xdb\xea\xdd\xdf\xec\xe0\ \xe2\xee\xe3\xe5\xef\xe4\xe5\xf0\xe5\xe6\xef\xe6\xe7\xef\xe6\xe8\ \xef\xe4\xe6\xed\xe2\xe5\xec\xe1\xe4\xe8\xde\xe1\xe8\xdd\xe3\xe6\ \xdd\xe3\xe5\xdd\xe3\xe4\xdc\xe3\xe4\xdc\xe3\xe1\xda\xe1\xe1\xd9\ \xe3\xe0\xda\xe2\xe1\xd8\xe2\xde\xd9\xe2\xde\xd8\xe2\xde\xd9\xe2\ \xdf\xd7\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe2\xda\xe1\xe2\xdb\xe1\xe3\ \xda\xe2\xe3\xdb\xe1\xe2\xda\xdf\xe2\xda\xdf\xe2\xd9\xde\xe1\xd8\ \xde\xe1\xd7\xdc\xe2\xd7\xdb\xe2\xd7\xd9\xe2\xd7\xd9\xe2\xd7\xd8\ \xe2\xd6\xd8\xe2\xd6\xd8\xe1\xd5\xd7\xdf\xd4\xd7\xdd\xd2\xd5\xdb\ \xd1\xd3\xda\xcd\xd0\xbd\xb2\xbc\xac\xa3\xb2\xae\xa4\xb2\xab\xa2\ \xb1\xa8\xa0\xaf\xa5\x9c\xac\xa6\x9b\xac\xc6\xb4\xb8\xcf\xc0\xc2\ \xbf\xb4\xbe\xb9\xaf\xbb\xb4\xaa\xb6\xb3\xa8\xb6\xb1\xa7\xb4\xb1\ \xa8\xb5\xb0\xa7\xb4\xb1\xa8\xb5\xaf\xa6\xb3\xac\xa5\xb2\xae\xa7\ \xb5\xc8\xc3\xcc\xd0\xcc\xd3\xce\xc9\xd2\xcd\xc9\xd0\xd2\xce\xd4\ \xce\xc9\xd0\xc8\xc3\xcc\xca\xc5\xcd\xc8\xc4\xcd\xc3\xc0\xc9\xbe\ \xbb\xc5\xbc\xb8\xc3\xb9\xb5\xc0\xae\xaa\xb5\xa2\x9e\xac\xa1\x9c\ \xab\xa2\x9d\xac\xa5\xa1\xaf\xaf\xab\xb6\xb2\xae\xba\xab\xa7\xb5\ \xa3\xa0\xb0\xa5\xa2\xb2\xa7\xa4\xb3\xaa\xa6\xb5\xa7\xa4\xb4\xa4\ \xa3\xb3\xa2\xa1\xb0\xa3\xa2\xb1\xa2\x9f\xaf\xa3\xa0\xb0\xa4\xa1\ \xb1\xa7\xa4\xb3\xa8\xa5\xb4\xa5\xa2\xb1\xa7\xa4\xb3\xab\xa9\xb7\ \xae\xad\xba\xb0\xae\xbc\xb5\xb3\xbf\xba\xb9\xc4\xbe\xbd\xc7\xc0\ \xbe\xc9\xc0\xbc\xc6\xbc\xb9\xc4\xbd\xb9\xc4\xbe\xba\xc5\xb7\xad\ \xb8\xc1\xb1\xb4\xbd\xb0\xb6\xb3\xa9\xb4\xb1\xa8\xb4\xaf\xa6\xb2\ \xac\xa5\xb2\xa9\xa2\xaf\xa6\xa0\xae\xa1\x9c\xab\x9e\x99\xa9\x9d\ \x97\xa8\x9c\x96\xa7\x96\x90\xa1\x90\x8a\x9d\x92\x8b\x9d\x94\x8c\ \x9e\x93\x8c\x9d\x91\x8b\x9e\x92\x8e\xa1\xa1\x9f\xae\xae\xac\xb8\ \xae\xac\xb8\xa4\xa2\xb1\xad\xa9\xb6\xb3\xaf\xbb\xb1\xad\xb8\xad\ \xa9\xb6\xb1\xae\xb9\xae\xa9\xb8\xac\xa7\xb5\x8d\x92\xa6\x64\x7c\ \x96\x66\x85\x9d\x7f\x90\xa7\x93\x97\xad\x95\x96\xac\x94\x94\xac\ \x99\x97\xac\x9e\x9c\xb0\x00\x00\x00\xaa\x98\x9d\xbc\xaa\xad\xc5\ \xb3\xb5\xce\xbf\xc0\xd6\xc8\xca\xda\xcd\xcf\xdd\xcf\xd1\xde\xd2\ \xd3\xe2\xd5\xd7\xe7\xda\xdc\xeb\xde\xe0\xed\xe0\xe2\xed\xe2\xe4\ \xef\xe4\xe6\xef\xe5\xe6\xef\xe5\xe6\xee\xe3\xe5\xed\xe3\xe5\xec\ \xe2\xe5\xea\xe1\xe5\xe8\xdf\xe4\xe8\xdf\xe5\xe7\xe0\xe5\xe6\xdf\ \xe5\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdc\xe6\xe2\xdc\xe5\xe1\xdb\xe5\ \xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xdb\xe4\xdd\xd8\xe1\xda\ \xd4\xde\xda\xd3\xdc\xdd\xd7\xde\xe1\xdb\xe2\xe3\xdc\xe3\xe3\xdc\ \xe3\xe3\xdb\xe2\xe2\xdb\xe0\xe2\xdb\xe0\xe0\xd8\xdf\xdf\xd8\xdd\ \xe0\xd6\xdd\xdf\xd7\xdb\xe0\xd5\xda\xdf\xd5\xd9\xe0\xd5\xda\xdf\ \xd4\xd9\xdf\xd4\xd8\xdd\xd3\xd7\xdc\xd1\xd7\xda\xd0\xd7\xd5\xcb\ \xd1\xb4\xaa\xb7\xac\xa5\xb2\xab\xa4\xb1\xad\xa5\xb2\xa9\xa0\xb0\ \xa7\x9e\xad\xa6\x9d\xad\xad\xa1\xad\xcc\xbd\xbf\xc6\xb9\xbe\xb9\ \xae\xba\xb5\xab\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb2\xa9\xb6\xb2\xa9\ \xb6\xb1\xa8\xb5\xb0\xa7\xb4\xae\xa6\xb3\xb2\xaa\xb7\xcb\xc6\xce\ \xc9\xc4\xcd\xcd\xc8\xd0\xce\xc9\xd0\xcf\xcb\xd1\xce\xca\xd0\xca\ \xc5\xce\xc5\xc1\xca\xc4\xc1\xca\xc3\xc0\xc9\xc0\xbd\xc5\xbb\xb8\ \xc2\xb9\xb5\xc0\xaf\xab\xb6\xa5\xa1\xae\xa1\x9d\xac\xa1\x9d\xac\ \xa4\x9f\xae\xac\xa8\xb5\xb2\xae\xba\xaa\xa7\xb5\xa2\x9f\xaf\xa3\ \xa0\xb0\xa7\xa4\xb3\xa9\xa6\xb5\xa8\xa6\xb5\xa4\xa3\xb2\xa3\xa2\ \xb2\xa4\xa2\xb2\xa1\x9e\xae\xa2\x9f\xaf\xa4\xa1\xb1\xa7\xa4\xb4\ \xa5\xa3\xb2\xa5\xa3\xb2\xa8\xa5\xb4\xad\xaa\xb7\xb0\xad\xb9\xb2\ \xb0\xbc\xb7\xb5\xc1\xbe\xbd\xc6\xbd\xbc\xc6\xbf\xbe\xc8\xbf\xbc\ \xc7\xbf\xbb\xc5\xc1\xbd\xc7\xbf\xbc\xc5\xac\xa3\xb2\xae\xa0\xab\ \xbb\xae\xb6\xb2\xa8\xb4\xb0\xa8\xb3\xad\xa6\xb3\xab\xa4\xb1\xa7\ \xa1\xb0\xa4\x9f\xae\xa2\x9d\xac\xa0\x99\xaa\x9f\x99\xa9\x9d\x97\ \xa8\x9a\x94\xa5\x96\x90\xa1\x96\x8f\xa0\x97\x8f\xa0\x97\x8f\xa0\ \x94\x8e\xa0\x97\x94\xa6\xa6\xa4\xb2\xb1\xae\xb9\xaa\xa8\xb5\x97\ \x97\xa8\xa2\xa2\xb2\xb2\xae\xba\xa7\xa4\xb3\x9d\x9a\xac\xac\xa9\ \xb6\xaf\xab\xb7\xa8\xa4\xb4\x8f\x93\xa9\x75\x86\xa1\x6b\x84\x9f\ \x79\x8b\xa4\x94\x99\xad\x8e\x91\xaa\x93\x92\xaa\x97\x95\xac\x98\ \x96\xab\x00\x00\x00\x69\x5e\x6d\xa7\x91\x96\xc3\xb0\xb2\xcc\xbd\ \xbf\xd2\xc4\xc6\xd7\xca\xcc\xdb\xce\xcf\xdd\xd0\xd2\xe2\xd5\xd7\ \xe6\xd9\xdb\xe9\xdd\xdf\xeb\xdf\xe1\xec\xe1\xe3\xed\xe2\xe4\xed\ \xe2\xe4\xee\xe3\xe5\xec\xe2\xe5\xec\xe2\xe6\xeb\xe2\xe6\xea\xe1\ \xe6\xe8\xe0\xe6\xe8\xe1\xe7\xe8\xe0\xe7\xe8\xe1\xe8\xe8\xe1\xe8\ \xe7\xdf\xe9\xe6\xdf\xe8\xe4\xde\xe8\xe2\xdd\xe6\xe2\xdd\xe6\xe3\ \xde\xe7\xe3\xde\xe7\xd4\xd0\xda\xc2\xbb\xc7\xbb\xb4\xbf\xb9\xb2\ \xbd\xc0\xb8\xc3\xcc\xc5\xce\xd9\xd3\xdb\xe1\xdb\xe2\xe3\xdc\xe3\ \xe2\xdb\xe2\xe1\xda\xe1\xe0\xd8\xdf\xdf\xd7\xde\xde\xd7\xdd\xde\ \xd6\xdc\xde\xd5\xdb\xdd\xd4\xdb\xdc\xd4\xda\xdc\xd3\xda\xdc\xd3\ \xd9\xdc\xd3\xd9\xdb\xd2\xd9\xda\xd2\xd9\xd2\xc9\xd1\xaf\xa7\xb6\ \xab\xa4\xb2\xaa\xa3\xb1\xaa\xa3\xb1\xaa\xa2\xb1\xa8\x9f\xaf\xa6\ \x9f\xae\xa5\x9d\xad\xb6\xac\xb7\xbb\xb1\xba\xb7\xae\xb9\xb5\xac\ \xb8\xb4\xab\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb3\xaa\xb7\ \xb2\xa9\xb6\xb0\xa8\xb5\xb0\xa9\xb6\xbb\xb6\xc0\xb6\xb1\xbd\xbf\ \xba\xc3\xc7\xc2\xcb\xce\xc9\xd0\xce\xca\xd0\xc9\xc5\xce\xc6\xc2\ \xcb\xc3\xc0\xc9\xc2\xbf\xc8\xc0\xbd\xc5\xbb\xb7\xc2\xb9\xb5\xc0\ \xb1\xad\xb8\xa7\xa3\xb0\xa2\x9d\xac\xa1\x9d\xac\xa2\x9e\xad\xa9\ \xa4\xb2\xb0\xac\xb8\xab\xa7\xb6\xa1\x9e\xaf\xa2\xa0\xb0\xa6\xa3\ \xb3\xa9\xa6\xb5\xa9\xa6\xb5\xa4\xa3\xb2\xa4\xa3\xb2\xa3\xa3\xb2\ \x9f\x9e\xae\xa2\xa0\xb0\xa5\xa2\xb2\xa6\xa3\xb2\xa4\xa2\xb1\xa7\ \xa4\xb3\xa9\xa7\xb5\xab\xa8\xb7\xaf\xad\xb9\xb4\xb2\xbe\xb8\xb6\ \xc2\xbc\xbb\xc5\xbf\xbd\xc8\xc0\xc0\xc9\xbe\xba\xc5\xc1\xbd\xc8\ \xc1\xbd\xc7\xc0\xbd\xc7\x94\x8b\xa0\x99\x8e\xa1\xb8\xad\xb7\xb2\ \xa9\xb5\xb0\xa7\xb3\xad\xa5\xb2\xaa\xa3\xb2\xa6\xa0\xaf\xa3\x9d\ \xad\xa2\x9d\xad\xa0\x9b\xab\x9f\x9a\xab\x9f\x99\xaa\x9e\x98\xa9\ \x9a\x94\xa5\x9a\x92\xa3\x99\x91\xa2\x98\x90\xa1\x97\x91\xa2\x9d\ \x9a\xaa\xaa\xa7\xb5\xb0\xae\xba\xaa\xa8\xb5\x93\x93\xa7\x9d\x9d\ \xaf\xad\xaa\xb7\xab\xa8\xb6\xa3\xa0\xb1\xaa\xa6\xb5\xb1\xad\xb9\ \xa9\xa5\xb3\x94\x96\xaa\x89\x91\xa9\x7c\x8a\xa4\x65\x7e\x9b\x6b\ \x7e\x9c\x7e\x85\xa3\x8d\x8e\xa9\x93\x91\xaa\x93\x91\xaa\x00\x00\ \x00\x3a\x3b\x52\x5e\x54\x67\xa3\x8d\x8f\xc2\xb3\xb4\xcd\xc0\xc3\ \xd2\xc5\xc8\xd8\xcb\xce\xdd\xd0\xd2\xe1\xd3\xd6\xe4\xd8\xdb\xe7\ \xdc\xdf\xea\xdf\xe2\xeb\xe0\xe2\xec\xe1\xe4\xec\xe1\xe4\xec\xe2\ \xe5\xeb\xe1\xe4\xec\xe1\xe6\xea\xe2\xe8\xe9\xe2\xe7\xe9\xe1\xe8\ \xe8\xe1\xe8\xe8\xe1\xe8\xe8\xe2\xe8\xe9\xe1\xea\xe7\xe1\xea\xe6\ \xe0\xea\xe5\xe0\xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xdd\xd9\ \xe3\xbc\xb4\xc2\xb1\xa8\xb4\xb1\xa7\xb3\xb0\xa7\xb2\xb1\xa7\xb3\ \xb1\xa7\xb3\xb8\xaf\xba\xc0\xb7\xc3\xcd\xc4\xce\xd8\xd1\xda\xe0\ \xd8\xe0\xe0\xd9\xe0\xdf\xd8\xe0\xde\xd7\xdf\xdd\xd6\xdd\xdc\xd4\ \xdb\xdb\xd3\xda\xdb\xd3\xd9\xdb\xd3\xd9\xdb\xd2\xd9\xdb\xd3\xda\ \xda\xd3\xda\xdb\xd3\xdb\xd1\xc9\xd3\xae\xa7\xb5\xaa\xa3\xb2\xaa\ \xa3\xb2\xa9\xa2\xb1\xaa\xa3\xb2\xab\xa1\xb0\xa9\xa0\xb0\xa6\x9f\ \xae\xac\xa5\xb4\xb6\xae\xb9\xb6\xae\xb9\xb6\xae\xb9\xb5\xad\xb8\ \xb4\xac\xb7\xb4\xab\xb7\xb3\xaa\xb7\xb4\xab\xb8\xb2\xa9\xb6\xb1\ \xa8\xb5\xaf\xa8\xb5\xad\xa7\xb6\xaa\xa6\xb4\xac\xa7\xb5\xb7\xb2\ \xbd\xc5\xc0\xc8\xcb\xc7\xcd\xcb\xc6\xce\xc7\xc2\xcb\xc3\xc0\xc9\ \xc1\xbe\xc8\xbf\xbc\xc5\xbc\xb8\xc3\xb8\xb4\xbf\xb3\xaf\xbb\xa8\ \xa3\xb0\xa4\x9f\xae\xa2\x9e\xad\xa2\x9e\xad\xa3\x9f\xae\xad\xa9\ \xb5\xaa\xa8\xb6\xa1\x9f\xaf\xa0\x9f\xaf\xa5\xa2\xb1\xaa\xa7\xb6\ \xa9\xa6\xb6\xa6\xa6\xb4\xa5\xa4\xb3\xa2\xa1\xb1\x9e\x9d\xae\xa2\ \xa1\xb1\xa6\xa3\xb2\xa6\xa3\xb2\xa6\xa3\xb2\xa8\xa5\xb4\xa9\xa6\ \xb5\xad\xaa\xb9\xb2\xb0\xbc\xb6\xb4\xc0\xba\xb7\xc3\xbc\xbb\xc6\ \xc0\xbf\xc9\xbd\xbc\xc7\xbf\xbe\xca\xc5\xc2\xcb\xc3\xc0\xca\xc2\ \xbe\xc7\x7f\x78\x8f\x89\x81\x98\xb5\xac\xb7\xb1\xa8\xb4\xad\xa6\ \xb2\xaa\xa4\xb1\xa6\xa1\xb0\xa4\x9f\xae\xa2\x9d\xad\xa1\x9d\xad\ \xa5\xa0\xaf\xa8\xa2\xb0\xab\xa4\xb2\xaa\xa3\xb2\xa5\x9f\xae\xa2\ \x9b\xab\x9e\x97\xa8\x9b\x95\xa6\x9b\x95\xa6\xa1\x9e\xad\xa7\xa5\ \xb4\xa2\xa1\xb1\xa5\xa5\xb4\xa0\xa0\xb1\xa3\xa2\xb3\xa2\xa0\xb0\ \x9b\x99\xaa\xa7\xa3\xb2\xa8\xa5\xb4\xae\xa9\xb7\xa7\xa4\xb2\x84\ \x86\x9f\x89\x8d\xa6\x94\x99\xae\x7c\x8a\xa4\x60\x77\x97\x7b\x84\ \xa1\x8e\x8e\xa9\x8f\x8d\xa9\x8e\x8c\xa9\x00\x00\x00\x34\x39\x53\ \x35\x38\x53\x4d\x44\x59\x94\x7c\x7f\xc2\xb2\xb4\xce\xc0\xc4\xd3\ \xc7\xca\xd8\xcd\xd0\xde\xd3\xd6\xe3\xd8\xdb\xe7\xdc\xdf\xe8\xde\ \xe2\xea\xdf\xe3\xea\xe1\xe4\xea\xe1\xe4\xea\xe1\xe5\xea\xe2\xe8\ \xea\xe3\xe8\xe9\xe3\xe8\xea\xe3\xe9\xe8\xe2\xe9\xe8\xe1\xe8\xe9\ \xe2\xea\xe9\xe2\xeb\xe9\xe2\xec\xe8\xe3\xec\xe8\xe4\xea\xe6\xe1\ \xea\xe6\xe1\xea\xe5\xe0\xe9\xe5\xe0\xe9\xd7\xd2\xdd\xb4\xac\xb9\ \xb0\xa6\xb2\xb0\xa6\xb2\xae\xa5\xb1\xae\xa4\xb0\xad\xa4\xb0\xad\ \xa3\xb0\xad\xa4\xb0\xaf\xa5\xb2\xb5\xab\xb7\xc4\xbc\xc6\xd6\xcf\ \xd8\xdc\xd6\xdf\xdc\xd7\xe0\xda\xd5\xdf\xda\xd4\xdd\xda\xd3\xdd\ \xd9\xd3\xdd\xd9\xd2\xdc\xda\xd3\xdd\xdb\xd4\xde\xdb\xd4\xde\xdb\ \xd5\xdd\xd2\xcc\xd6\xae\xa7\xb6\xaa\xa3\xb2\xa9\xa2\xb1\xa8\xa2\ \xb0\xa8\xa1\xb0\xa9\xa2\xb1\xaa\xa2\xb1\xa8\xa1\xb0\xab\xa4\xb2\ \xb5\xae\xb9\xb5\xad\xb7\xb5\xad\xb7\xb4\xac\xb7\xb5\xad\xb8\xb5\ \xad\xb8\xb4\xac\xb8\xb4\xab\xb8\xb2\xa9\xb6\xb0\xa8\xb6\xae\xa7\ \xb6\xaa\xa5\xb4\xa9\xa4\xb3\xa8\xa3\xb2\xab\xa6\xb4\xb2\xad\xb9\ \xbc\xb7\xc1\xc8\xc3\xca\xc7\xc2\xcb\xc4\xc0\xc9\xc0\xbc\xc6\xbe\ \xbb\xc5\xbc\xb7\xc2\xb8\xb4\xbf\xb3\xaf\xba\xac\xa8\xb4\xa4\x9f\ \xae\xa3\x9e\xad\xa0\x9d\xac\xa1\x9d\xac\xa7\xa3\xb2\xa7\xa4\xb3\ \xa2\x9f\xaf\xa1\x9f\xaf\xa3\xa0\xb0\xa9\xa7\xb6\xa9\xa8\xb7\xa6\ \xa6\xb4\xa5\xa5\xb4\xa1\xa1\xb0\xa2\xa1\xb1\xa5\xa3\xb2\xa5\xa2\ \xb1\xa5\xa2\xb1\xa7\xa4\xb3\xa9\xa6\xb4\xac\xa9\xb6\xae\xac\xba\ \xb5\xb3\xbf\xb6\xb4\xc1\xbb\xba\xc4\xbe\xbd\xc7\xc1\xbf\xca\xc1\ \xbf\xca\xc8\xc6\xd0\xc4\xc0\xca\xc4\xc0\xca\xc3\xbf\xc9\x6c\x66\ \x81\x77\x73\x8d\xb1\xa9\xb4\xad\xa5\xb2\xaa\xa3\xb1\xa6\xa1\xb0\ \xa3\x9f\xae\xa1\x9e\xad\xa1\x9e\xae\xa8\xa4\xb3\xb0\xaa\xb7\xb3\ \xad\xb9\xb4\xae\xb9\xb2\xab\xb6\xab\xa6\xb3\xa6\xa1\xaf\xa2\x9d\ \xac\x9f\x9b\xab\x9f\x9c\xab\xa1\x9f\xaf\x9f\x9e\xaf\x95\x96\xab\ \x9f\x9f\xb2\xa9\xa9\xb7\xa7\xa7\xb6\x97\x97\xaa\x7f\x80\x9a\x9c\ \x9c\xad\xaa\xa6\xb6\xa9\xa4\xb3\x9c\x9a\xad\x77\x7d\x99\x80\x85\ \xa1\x92\x95\xad\x85\x8f\xa8\x76\x83\xa2\x86\x8b\xa7\x90\x8f\xaa\ \x8c\x8b\xa8\x87\x87\xa5\x00\x00\x00\x3b\x42\x5f\x33\x38\x54\x2f\ \x32\x4f\x41\x3b\x54\x8b\x76\x7e\xbc\xa9\xab\xcd\xc1\xc4\xd6\xcb\ \xcf\xda\xd1\xd5\xe0\xd6\xdb\xe4\xdb\xdf\xe7\xdd\xe3\xe8\xdf\xe4\ \xe9\xe1\xe5\xe9\xe1\xe6\xea\xe2\xe7\xe9\xe3\xe8\xea\xe3\xe9\xea\ \xe3\xea\xe9\xe2\xea\xe9\xe2\xe9\xe9\xe1\xea\xe8\xe1\xeb\xe7\xe3\ \xec\xe8\xe3\xec\xe9\xe5\xeb\xe9\xe5\xeb\xe8\xe3\xea\xe7\xe2\xeb\ \xe7\xe2\xea\xe6\xe1\xea\xd0\xcb\xd6\xb2\xa9\xb5\xaf\xa5\xb1\xaf\ \xa5\xb1\xae\xa4\xb0\xad\xa3\xb0\xac\xa2\xaf\xac\xa2\xaf\xac\xa2\ \xb0\xab\xa2\xaf\xac\xa3\xb0\xae\xa3\xb1\xb5\xab\xb9\xc5\xbc\xc8\ \xd0\xc9\xd3\xd4\xcf\xd8\xd8\xd3\xdc\xd9\xd4\xdd\xd9\xd4\xdd\xd8\ \xd3\xdc\xd9\xd4\xdd\xda\xd5\xde\xda\xd5\xde\xdb\xd6\xdf\xd4\xcf\ \xd9\xb0\xa9\xb8\xa8\xa1\xb0\xa8\xa1\xb0\xa7\xa1\xb1\xa8\xa1\xb1\ \xa9\xa2\xb1\xa9\xa3\xb2\xab\xa2\xb3\xaa\xa3\xb2\xb2\xaa\xb5\xb6\ \xae\xb8\xb6\xae\xb8\xb5\xad\xb8\xb4\xac\xb7\xb5\xad\xb7\xb4\xad\ \xb7\xb4\xac\xb8\xb3\xaa\xb6\xb0\xa8\xb5\xae\xa7\xb5\xab\xa6\xb4\ \xa8\xa3\xb2\xa8\xa3\xb2\xa8\xa3\xb2\xa7\xa2\xb1\xac\xa8\xb4\xb8\ \xb4\xbe\xc5\xc0\xc9\xc3\xbf\xc8\xbf\xbb\xc6\xbd\xb9\xc4\xbb\xb7\ \xc2\xb8\xb4\xbf\xb5\xb1\xbc\xaf\xab\xb7\xa6\xa2\xaf\xa2\x9e\xad\ \xa1\x9d\xac\xa0\x9d\xac\xa2\x9f\xae\xa5\xa2\xb1\xa1\x9f\xaf\xa1\ \x9f\xaf\xa1\x9f\xaf\xa9\xa6\xb5\xa9\xa9\xb7\xa6\xa6\xb4\xa5\xa5\ \xb3\x9f\x9e\xae\xa6\xa4\xb2\xa6\xa3\xb2\xa4\xa1\xb0\xa6\xa3\xb2\ \xa8\xa6\xb3\xaa\xa8\xb5\xad\xaa\xb7\xb3\xb0\xbc\xb5\xb3\xbf\xb8\ \xb6\xc2\xbe\xbc\xc7\xc1\xc0\xca\xc3\xc2\xcc\xc5\xc4\xcd\xc1\xbd\ \xc9\xc7\xc4\xcd\xc4\xc0\xc9\xc5\xc0\xc8\x50\x50\x6e\x69\x69\x85\ \xa8\xa2\xaf\xa7\xa2\xb0\xa4\xa0\xb0\xa2\x9f\xae\x9f\x9c\xad\x9f\ \x9c\xac\xa6\xa2\xb1\xad\xa9\xb5\xb1\xab\xb7\xaf\xa9\xb5\xac\xa6\ \xb2\xaa\xa4\xb1\xa7\xa3\xaf\xa5\xa1\xad\xa3\x9f\xab\xa2\x9e\xad\ \xa0\x9e\xac\x9f\x9f\xaf\x9f\x9f\xaf\x9b\x9c\xaf\x9d\x9e\xb1\xa3\ \xa4\xb4\xa5\xa5\xb5\x9a\x9a\xac\x7c\x81\x9c\x88\x8d\xa4\xa5\xa4\ \xb4\xa1\xa0\xb0\x8c\x8d\xa4\x7e\x83\x9f\x85\x88\xa5\x81\x86\xa3\ \x6c\x7d\x9d\x6c\x7d\x9c\x82\x87\xa4\x8d\x8d\xa8\x88\x89\xa5\x86\ \x87\xa5\x00\x00\x00\x3b\x42\x5f\x32\x38\x54\x30\x35\x52\x2f\x32\ \x50\x3c\x3b\x54\x66\x5a\x68\xa3\x8e\x92\xc7\xb7\xba\xd5\xcb\xd0\ \xdc\xd3\xd9\xe0\xd8\xdd\xe4\xdc\xe2\xe6\xdf\xe4\xe7\xe0\xe6\xe8\ \xe0\xe7\xe9\xe1\xe8\xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe3\ \xea\xe9\xe2\xeb\xea\xe2\xeb\xe7\xe1\xeb\xe8\xe3\xec\xe9\xe4\xed\ \xe9\xe4\xec\xe9\xe5\xea\xe8\xe4\xeb\xe8\xe4\xeb\xe8\xe3\xea\xe7\ \xe3\xea\xd8\xd3\xdd\xb5\xac\xb9\xaf\xa5\xb1\xae\xa4\xb0\xad\xa3\ \xb0\xad\xa3\xb0\xac\xa2\xaf\xab\xa1\xae\xab\xa1\xae\xaa\xa1\xae\ \xab\xa1\xaf\xaa\xa0\xb0\xaa\x9f\xb0\xab\xa0\xb1\xaf\xa5\xb5\xb5\ \xab\xba\xbf\xb6\xc2\xce\xc8\xd1\xd7\xd3\xdd\xd8\xd3\xde\xd9\xd5\ \xde\xdb\xd6\xdf\xda\xd6\xdf\xdb\xd6\xdf\xd7\xd3\xdd\xb3\xae\xbd\ \xa7\xa0\xb0\xa6\xa0\xaf\xa5\xa0\xb0\xa6\xa1\xb0\xa8\xa2\xb1\xaa\ \xa3\xb2\xac\xa5\xb4\xab\xa4\xb3\xb3\xab\xb7\xb8\xaf\xb9\xb7\xaf\ \xb9\xb6\xae\xb8\xb5\xad\xb7\xb5\xad\xb7\xb4\xac\xb7\xb5\xad\xb8\ \xb4\xac\xb7\xb3\xab\xb7\xaf\xa9\xb5\xac\xa8\xb4\xa9\xa4\xb3\xa8\ \xa3\xb2\xa8\xa3\xb1\xa6\xa1\xb0\xa5\xa1\xb0\xaa\xa5\xb2\xb8\xb2\ \xbd\xc4\xbe\xc7\xc0\xbc\xc6\xbd\xb9\xc4\xbb\xb7\xc2\xb9\xb5\xc0\ \xb7\xb3\xbe\xaf\xab\xb7\xa6\xa2\xaf\xa3\x9f\xae\x9f\x9d\xac\xa0\ \x9d\xac\xa1\x9e\xac\xa2\x9f\xaf\x9e\x9b\xac\x9e\x9d\xad\x9f\x9e\ \xae\xa7\xa4\xb4\xa9\xa9\xb7\xa7\xa6\xb6\xa5\xa4\xb3\xa0\xa0\xaf\ \xa6\xa5\xb3\xa5\xa2\xb1\xa4\xa1\xb0\xa7\xa4\xb2\xa9\xa7\xb3\xab\ \xa8\xb5\xad\xab\xb8\xb4\xb2\xbe\xb7\xb5\xc1\xbb\xb9\xc5\xbf\xbd\ \xc8\xc1\xc0\xca\xc7\xc6\xcf\xc6\xc3\xcd\xc9\xc5\xd0\xc7\xc4\xcd\ \xc4\xc0\xc9\xbb\xb5\xbd\x40\x48\x64\x5b\x60\x7b\x9d\x9a\xaa\x9f\ \x9d\xad\x9e\x9c\xac\x9e\x9d\xac\x9b\x99\xab\x9c\x9b\xab\xa2\x9f\ \xaf\xa6\xa1\xb0\xa5\xa1\xae\xa4\x9f\xae\xa4\xa0\xae\xa5\xa0\xae\ \xa5\xa1\xad\xa5\xa1\xad\xa4\xa0\xac\xa3\x9f\xad\xa1\x9d\xac\x9f\ \x9e\xad\x9e\x9e\xae\xa0\xa0\xb1\x9e\x9f\xb0\x9f\x9f\xb0\xa1\xa1\ \xb3\x9c\x9c\xaf\x7f\x85\x9f\x76\x7d\x9c\x92\x93\xab\x98\x98\xac\ \x8b\x8d\xa6\x88\x8b\xa6\x89\x8b\xa8\x7f\x83\xa2\x68\x78\x9a\x61\ \x76\x98\x6f\x7c\x9c\x7f\x82\xa2\x83\x84\xa2\x8f\x90\xa8\x00\x00\ \x00\x3a\x40\x5d\x35\x3b\x57\x31\x37\x54\x2e\x36\x50\x2e\x35\x4f\ \x33\x37\x50\x43\x40\x55\x78\x68\x72\xae\x9b\xa0\xc9\xbc\xc2\xd9\ \xd1\xd6\xdf\xd7\xde\xe3\xdb\xe2\xe4\xdd\xe4\xe6\xdf\xe6\xe8\xe1\ \xe8\xe9\xe4\xea\xeb\xe4\xeb\xea\xe3\xeb\xe9\xe4\xec\xea\xe2\xec\ \xe7\xe3\xeb\xe8\xe3\xec\xe8\xe3\xec\xe9\xe4\xec\xe8\xe4\xec\xe9\ \xe4\xec\xe9\xe5\xeb\xe8\xe4\xeb\xe7\xe3\xe9\xe7\xe1\xe8\xe6\xe1\ \xe8\xce\xc9\xd5\xb3\xa9\xb6\xad\xa2\xb0\xac\xa2\xaf\xab\xa1\xae\ \xab\xa1\xae\xab\xa1\xae\xaa\xa1\xae\xa9\xa0\xad\xaa\xa0\xaf\xa9\ \x9f\xae\xa9\x9e\xaf\xa6\x9c\xae\xa8\x9e\xaf\xa6\x9d\xae\xa6\x9e\ \xaf\xae\xa5\xb3\xc6\xbe\xc9\xd5\xd0\xda\xd8\xd5\xdf\xd9\xd5\xe0\ \xda\xd5\xdf\xda\xd5\xde\xd9\xd5\xdd\xb8\xb4\xc2\xa7\xa0\xb0\xa7\ \xa1\xb0\xa5\xa0\xae\xa5\x9f\xb0\xa6\xa0\xb0\xab\xa4\xb3\xb0\xa9\ \xb6\xae\xa7\xb5\xb6\xb0\xbd\xc2\xbc\xc7\xba\xb2\xbd\xb8\xb0\xba\ \xb7\xaf\xb9\xb7\xaf\xb9\xb6\xae\xb9\xb6\xae\xb9\xb5\xad\xb8\xb4\ \xad\xb8\xb0\xa9\xb5\xaf\xab\xb7\xa9\xa5\xb3\xa8\xa3\xb2\xa7\xa1\ \xb1\xa6\xa3\xb2\xa4\xa1\xb0\xa4\xa0\xae\xaa\xa6\xb2\xb8\xb5\xbe\ \xc0\xbc\xc6\xbd\xba\xc4\xbc\xb7\xc3\xbb\xb7\xc1\xb7\xb3\xbf\xae\ \xaa\xb6\xa5\xa0\xae\xa3\x9e\xad\xa0\x9e\xac\xa0\x9d\xac\xa0\x9d\ \xad\xa1\x9e\xad\x9b\x99\xac\x9e\x9d\xae\x9d\x9c\xad\xa6\xa4\xb3\ \xaa\xa8\xb7\xa8\xa7\xb7\xa3\xa2\xb2\xa0\xa0\xb0\xa6\xa5\xb4\xa7\ \xa4\xb3\xa7\xa4\xb3\xa8\xa5\xb4\xa9\xa6\xb4\xab\xa9\xb7\xaf\xad\ \xb8\xb4\xb2\xbe\xb8\xb6\xc2\xba\xb8\xc4\xc0\xbf\xca\xc7\xc5\xcf\ \xc9\xc8\xd1\xcb\xc9\xd2\xcc\xc8\xd2\xc9\xc6\xcf\xc6\xc3\xcc\x98\ \x98\xa6\x3d\x4c\x62\x55\x5e\x75\x95\x96\xa6\x9a\x99\xaa\x9b\x9b\ \xac\x9c\x9b\xac\x9b\x99\xac\x9c\x9b\xab\x9e\x9c\xab\xa0\x9d\xab\ \xa1\x9d\xac\xa2\x9e\xad\xa4\xa0\xb0\xa5\xa0\xaf\xa4\x9f\xad\xa5\ \xa0\xae\xa5\xa1\xae\xa3\x9e\xac\xa3\x9e\xad\xa1\x9d\xac\xa0\x9c\ \xac\xa0\x9d\xad\xa0\x9f\xae\x9d\x9c\xac\x9d\x9d\xae\x9b\x9c\xaf\ \x8e\x91\xa9\x84\x86\xa4\x86\x87\xa6\x81\x86\xa4\x77\x80\xa0\x82\ \x87\xa4\x88\x8b\xa7\x80\x85\xa3\x77\x7e\xa0\x67\x77\x9a\x62\x74\ \x97\x6e\x78\x9c\x7f\x83\xa3\x9a\x9b\xae\x00\x00\x00\x43\x4a\x65\ \x3f\x46\x61\x37\x3e\x5a\x31\x38\x53\x2f\x36\x51\x2e\x34\x4f\x30\ \x35\x4e\x34\x37\x4f\x4e\x48\x5b\x7c\x6d\x79\xae\xa0\xa8\xd0\xc6\ \xce\xdb\xd4\xdd\xe1\xda\xe3\xe2\xdd\xe5\xe5\xe0\xe9\xe8\xe3\xeb\ \xe9\xe4\xec\xe9\xe3\xed\xe8\xe3\xed\xe8\xe3\xec\xe8\xe3\xec\xe8\ \xe3\xec\xe8\xe3\xec\xe9\xe4\xec\xe9\xe4\xec\xe9\xe5\xea\xea\xe6\ \xec\xe0\xdb\xe3\xc8\xc0\xc9\xc3\xbb\xc4\xd2\xc9\xd0\xdf\xda\xe0\ \xcf\xc9\xd3\xb3\xaa\xb7\xab\xa2\xaf\xab\xa1\xae\xaa\xa0\xad\xaa\ \xa0\xad\xa9\xa0\xad\xa9\xa0\xae\xa8\xa0\xae\xa9\xa0\xaf\xa9\x9f\ \xaf\xa6\x9c\xae\xa4\x9c\xae\xa4\x9b\xad\xa4\x9d\xad\xa5\x9d\xad\ \xaa\xa1\xaf\xbb\xb4\xbf\xd0\xcb\xd5\xd8\xd4\xdf\xd8\xd4\xdf\xd8\ \xd4\xdf\xd8\xd4\xde\xc3\xbe\xcb\xa5\x9f\xb0\xa5\xa0\xaf\xa5\xa0\ \xaf\xa5\x9f\xb0\xa5\xa0\xaf\xa9\xa2\xb1\xb0\xa9\xb6\xaf\xa8\xb6\ \xb7\xb0\xbd\xc9\xc5\xd0\xc6\xc0\xcb\xbf\xb8\xc2\xba\xb2\xbd\xb8\ \xb0\xbb\xb7\xaf\xba\xb6\xae\xb9\xb6\xae\xb9\xb4\xae\xb9\xb0\xa9\ \xb5\xaf\xaa\xb7\xab\xa7\xb5\xa8\xa3\xb2\xa7\xa2\xb1\xa6\xa2\xb0\ \xa6\xa2\xb0\xa3\x9e\xad\xa2\x9e\xad\xaa\xa7\xb3\xba\xb6\xc0\xbe\ \xbb\xc4\xbd\xb9\xc4\xbb\xb7\xc2\xb8\xb4\xc0\xaf\xab\xb6\xa5\xa1\ \xae\xa2\x9f\xad\xa1\x9e\xad\xa0\x9d\xac\xa1\x9e\xad\x9f\x9c\xac\ \x99\x97\xaa\x9b\x99\xab\x9f\x9e\xae\xa5\xa4\xb3\xab\xaa\xb8\xa9\ \xa9\xb7\xa1\xa1\xb1\xa3\xa3\xb2\xa8\xa8\xb6\xa8\xa5\xb4\xa8\xa5\ \xb4\xa9\xa6\xb4\xaa\xa7\xb5\xad\xaa\xb7\xb1\xaf\xbb\xb8\xb6\xc1\ \xba\xb8\xc4\xc0\xbf\xc9\xc9\xc8\xd1\xcb\xca\xd3\xcd\xca\xd3\xca\ \xc8\xd1\xcc\xca\xd3\xc9\xc6\xcf\xc7\xc1\xcb\x6d\x75\x83\x3d\x53\ \x65\x54\x62\x76\x8f\x92\xa2\x98\x98\xaa\x98\x98\xaa\x9b\x99\xac\ \x9d\x9b\xad\x9c\x9a\xaa\x9d\x9a\xaa\x9e\x9b\xab\xa0\x9d\xac\xa3\ \xa0\xaf\xa7\xa3\xb2\xa8\xa3\xb2\xa7\xa2\xb1\xa6\xa1\xb0\xa5\xa0\ \xaf\xa4\x9f\xae\xa4\x9f\xad\xa4\x9f\xae\xa3\x9e\xad\xa2\x9f\xad\ \xa1\x9f\xad\xa0\x9d\xad\x9d\x9c\xad\x9a\x99\xac\x90\x90\xa8\x87\ \x8a\xa6\x83\x85\xa4\x6f\x79\x9e\x64\x74\x9a\x73\x7d\x9f\x82\x87\ \xa5\x7a\x7f\xa0\x6e\x77\x9b\x67\x74\x98\x5b\x6c\x91\x65\x72\x97\ \x8e\x90\xa9\xa4\xa2\xb2\x00\x00\x00\x63\x69\x85\x58\x5f\x7a\x47\ \x4d\x68\x3d\x43\x5e\x35\x3c\x56\x31\x38\x52\x32\x37\x50\x30\x35\ \x4e\x33\x37\x50\x37\x39\x51\x51\x4d\x61\x82\x78\x86\xb5\xaa\xb5\ \xd0\xc9\xd3\xde\xd9\xe3\xe4\xdf\xe8\xe6\xe1\xea\xe8\xe3\xec\xe9\ \xe4\xed\xe9\xe4\xed\xe9\xe3\xed\xe9\xe4\xec\xe8\xe3\xec\xe7\xe3\ \xeb\xe8\xe4\xea\xea\xe4\xea\xea\xe4\xea\xe8\xe3\xe9\xcb\xc5\xcf\ \xb1\xa9\xb4\xae\xa6\xb1\xb1\xa7\xb1\xc0\xb6\xbe\xd5\xce\xd5\xcf\ \xc9\xd3\xb7\xae\xba\xab\xa2\xaf\xaa\xa1\xae\xa9\xa0\xad\xaa\xa1\ \xae\xa9\xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xa9\x9f\xaf\xa6\x9d\xad\ \xa3\x9c\xac\xa2\x9b\xac\xa4\x9d\xad\xa5\x9e\xad\xa6\x9e\xae\xa7\ \x9f\xae\xb2\xa9\xb7\xc8\xc1\xcc\xcf\xca\xd4\xcf\xc9\xd3\xd0\xca\ \xd4\xc3\xbe\xca\xa7\xa1\xb1\xa6\xa1\xb0\xa5\xa0\xb0\xa4\x9f\xaf\ \xa4\xa0\xaf\xa8\xa2\xb1\xb1\xa9\xb6\xb0\xa9\xb7\xb6\xb0\xbe\xca\ \xc6\xd1\xca\xc6\xd1\xc8\xc3\xce\xc5\xbf\xca\xc3\xbc\xc7\xc1\xba\ \xc5\xbf\xb8\xc3\xbe\xb8\xc3\xbe\xb7\xc2\xb3\xac\xb8\xae\xaa\xb6\ \xae\xa9\xb7\xa8\xa3\xb2\xa8\xa3\xb2\xa5\xa0\xae\xa5\xa0\xaf\xa4\ \x9f\xae\xa1\x9e\xad\xa2\x9f\xae\xae\xaa\xb6\xbc\xb9\xc3\xbf\xbc\ \xc6\xbc\xb8\xc3\xba\xb6\xc1\xb2\xae\xb9\xa6\xa2\xaf\xa3\x9e\xad\ \xa0\x9d\xac\xa0\x9d\xac\xa1\x9e\xae\x9e\x9c\xac\x97\x96\xa9\x96\ \x96\xa8\x9c\x9b\xad\xa3\xa3\xb2\xaa\xaa\xb8\xa8\xa8\xb7\xa2\xa2\ \xb2\xa7\xa6\xb6\xa8\xa8\xb6\xa6\xa4\xb3\xa9\xa6\xb4\xa8\xa6\xb4\ \xab\xa9\xb5\xaf\xad\xb9\xb4\xb2\xbe\xbb\xb9\xc4\xc0\xbf\xc9\xc7\ \xc7\xd0\xc9\xc8\xd1\xcd\xcb\xd3\xcc\xca\xd3\xcd\xca\xd3\xcc\xc9\ \xd2\xca\xc7\xd0\xb6\xb2\xbc\x4e\x61\x6d\x44\x5d\x6b\x63\x73\x83\ \x95\x97\xa7\x96\x96\xa8\x99\x99\xab\x9d\x9b\xac\xa1\x9f\xae\x9f\ \x9d\xac\x9c\x9a\xaa\x9d\x9a\xaa\xa1\x9e\xae\xa3\xa0\xb0\xa6\xa2\ \xb1\xa7\xa2\xb0\xa8\xa2\xb1\xa8\xa3\xb2\xa7\xa2\xb2\xa6\xa1\xb0\ \xa6\xa1\xb0\xa5\xa0\xaf\xa6\xa1\xaf\xa5\xa0\xaf\xa4\x9f\xae\xa3\ \x9e\xad\xa1\x9e\xad\x9f\x9d\xad\x97\x97\xaa\x8d\x8d\xa6\x84\x85\ \xa3\x78\x7d\xa0\x6e\x77\x9d\x6c\x75\x9c\x71\x78\x9c\x69\x70\x96\ \x62\x6a\x92\x64\x6e\x94\x5a\x66\x8d\x69\x74\x97\x9d\x9c\xae\xa6\ \xa3\xb2\x00\x00\x00\xa1\xa0\xb4\x7a\x7d\x96\x60\x64\x7c\x55\x58\ \x6f\x45\x49\x62\x3c\x42\x5b\x37\x3b\x56\x30\x35\x50\x2f\x33\x4d\ \x30\x34\x4d\x32\x37\x50\x3c\x3f\x56\x51\x51\x64\x82\x7a\x8a\xb1\ \xab\xb7\xcf\xcb\xd5\xe0\xdb\xe4\xe6\xe1\xea\xe8\xe3\xec\xe9\xe3\ \xed\xe8\xe4\xeb\xe8\xe4\xeb\xe8\xe3\xeb\xe8\xe3\xeb\xe8\xe4\xe9\ \xea\xe3\xea\xea\xe5\xeb\xe3\xdd\xe6\xbe\xb6\xc2\xaf\xa7\xb2\xaf\ \xa6\xb2\xae\xa6\xb1\xad\xa4\xaf\xb4\xaa\xb4\xcb\xc3\xcb\xd4\xcf\ \xd8\xc4\xbe\xca\xae\xa5\xb2\xaa\xa1\xae\xa9\xa0\xad\xa8\x9f\xac\ \xa9\xa0\xad\xaa\xa1\xae\xaa\xa0\xae\xa9\xa0\xad\xa6\x9e\xae\xa4\ \x9c\xad\xa3\x9d\xad\xa4\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa6\x9f\ \xae\xaa\xa2\xb1\xb7\xae\xb9\xc0\xb6\xc0\xc1\xb8\xc2\xbd\xb5\xbf\ \xa8\xa2\xb1\xa5\x9f\xaf\xa5\x9f\xae\xa3\x9f\xae\xa3\xa0\xaf\xa8\ \xa3\xb1\xb1\xaa\xb7\xaf\xa8\xb6\xb8\xb1\xbf\xca\xc6\xd1\xcb\xc6\ \xd1\xc9\xc5\xd0\xc7\xc3\xce\xc1\xbc\xc7\xb8\xb2\xbf\xbb\xb5\xc1\ \xbf\xbb\xc7\xc1\xbd\xc8\xb2\xac\xbb\xae\xaa\xb6\xb1\xac\xb9\xa9\ \xa4\xb4\xaa\xa5\xb4\xa6\xa1\xb0\x9f\x9c\xac\xa2\x9f\xae\xa1\x9e\ \xad\xa1\x9e\xac\xa5\xa2\xaf\xb4\xb0\xba\xbd\xbb\xc4\xbd\xb9\xc4\ \xbb\xb7\xc2\xb5\xb1\xbc\xa6\xa2\xb0\xa2\x9e\xad\xa0\x9d\xac\xa0\ \x9d\xac\xa0\x9d\xad\x9c\x99\xaa\x8e\x8d\xa2\x8f\x8f\xa3\x97\x97\ \xa9\xa1\xa1\xb2\xa9\xa9\xb8\xa7\xa7\xb6\xa2\xa2\xb2\xa6\xa6\xb5\ \xa8\xa8\xb6\xa7\xa6\xb3\xa9\xa6\xb4\xa9\xa6\xb4\xab\xa9\xb6\xb1\ \xaf\xbb\xb8\xb6\xc2\xbd\xbc\xc7\xc6\xc5\xce\xc9\xc8\xd1\xc9\xc8\ \xd1\xcd\xcc\xd5\xcc\xc9\xd2\xcc\xc9\xd2\xce\xcb\xd4\xca\xc6\xcf\ \x93\x96\xa0\x47\x60\x6b\x4f\x69\x75\x7d\x87\x97\x99\x99\xa9\x9e\ \x9c\xac\xa3\xa0\xaf\xa4\xa0\xae\xa5\xa1\xaf\xa6\xa2\xb0\xa1\x9e\ \xad\x9f\x9c\xac\xa1\x9e\xae\xa2\x9e\xae\xa3\x9d\xad\xa3\x9d\xae\ \xa1\x9e\xaf\xa3\x9f\xaf\xa5\x9f\xb0\xa7\xa2\xb2\xa9\xa4\xb3\xa8\ \xa3\xb2\xa7\xa1\xb0\xa6\xa1\xb0\xa6\xa1\xb0\xa4\x9f\xae\xa4\x9f\ \xae\xa2\x9f\xae\xa2\x9f\xae\x9d\x9a\xab\x91\x8f\xa7\x81\x83\xa2\ \x74\x78\x9d\x6a\x6f\x98\x6a\x6e\x97\x63\x68\x91\x5f\x66\x91\x60\ \x67\x90\x5c\x66\x8d\x7e\x82\x9f\xa2\xa0\xb0\xa6\xa3\xb2\x00\x00\ \x00\xcd\xca\xd5\xbb\xb8\xc7\x9a\x97\xab\x76\x76\x8c\x5d\x5e\x74\ \x50\x53\x6a\x47\x4b\x64\x3b\x3f\x5b\x33\x38\x53\x31\x36\x4f\x31\ \x35\x4f\x33\x37\x50\x34\x39\x51\x39\x3e\x55\x51\x51\x65\x7f\x7a\ \x8c\xa8\xa2\xb1\xc7\xc2\xcd\xd4\xcf\xd9\xcf\xca\xd6\xc5\xc0\xce\ \xbd\xb9\xc9\xbb\xb7\xc8\xbe\xbb\xca\xc6\xc1\xcf\xd1\xcb\xd6\xe2\ \xdb\xe4\xe2\xdc\xe4\xbb\xb4\xbe\xad\xa5\xb0\xae\xa6\xb1\xae\xa6\ \xb1\xad\xa5\xb0\xac\xa3\xaf\xaf\xa5\xb0\xc5\xbc\xc4\xd7\xd2\xd9\ \xc2\xbb\xc6\xa8\x9f\xac\xa9\xa0\xad\xa8\x9f\xac\xa9\xa0\xad\xa9\ \xa0\xad\xaa\xa1\xae\xa9\xa1\xae\xa6\x9f\xad\xa5\x9f\xae\xa2\x9d\ \xac\xa2\x9d\xad\xa2\x9c\xab\xa4\x9d\xac\xa5\x9e\xad\xa5\x9f\xae\ \xa7\x9f\xaf\xb1\xa8\xb4\xba\xb2\xbb\xbb\xb3\xbc\xa8\xa3\xb3\xa4\ \x9f\xaf\xa3\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xaf\xa7\xa3\xb1\xb1\xaa\ \xb7\xae\xa7\xb5\xb7\xb1\xbe\xc8\xc3\xce\xca\xc6\xd1\xc4\xc0\xcc\ \xae\xa8\xb7\xa0\x9a\xab\x9c\x97\xa9\xa0\x9b\xac\xa4\x9e\xb0\xaa\ \xa4\xb4\xaf\xab\xb9\xb6\xb2\xbd\xb6\xb2\xbe\xab\xa6\xb5\xa9\xa4\ \xb3\xa8\xa3\xb2\xa3\x9f\xae\xa0\x9d\xac\xa1\x9e\xad\xa0\x9d\xac\ \x9f\x9d\xac\xa6\xa2\xb0\xb6\xb2\xbd\xbf\xbb\xc5\xbc\xb9\xc3\xb7\ \xb3\xbe\xa9\xa5\xb2\xa1\x9e\xad\xa0\x9d\xac\xa0\x9d\xac\x9f\x9c\ \xab\x9c\x9a\xaa\x8b\x8c\xa2\x83\x85\x9d\x8d\x8e\xa3\x9f\x9f\xb0\ \xa9\xa9\xb8\xa6\xa6\xb6\xa3\xa3\xb3\xa5\xa5\xb4\xa6\xa6\xb4\xa8\ \xa6\xb4\xa9\xa6\xb4\xa9\xa8\xb5\xad\xab\xb7\xb4\xb2\xbe\xbb\xb9\ \xc4\xc3\xc2\xcc\xc8\xc7\xd0\xc8\xc7\xd0\xcd\xcc\xd4\xcb\xc9\xd2\ \xcc\xc9\xd1\xcd\xca\xd3\xcd\xca\xd2\xc4\xc0\xc9\x70\x7e\x88\x47\ \x65\x6e\x5e\x75\x80\x91\x95\xa6\x98\x99\xab\xa0\x9e\xad\xa6\xa2\ \xb1\xa7\xa3\xb0\xa7\xa3\xaf\xa6\xa2\xae\xa4\xa0\xae\x9f\x9c\xac\ \x9e\x9b\xab\x9d\x9b\xab\x9d\x9a\xaa\x9c\x99\xaa\x9f\x9a\xab\xa0\ \x9b\xac\x9f\x9b\xad\xa1\x9d\xae\xa4\x9f\xb0\xa7\xa2\xb2\xa8\xa3\ \xb2\xa8\xa3\xb3\xa8\xa2\xb1\xa7\xa1\xb0\xa7\xa2\xb1\xa7\xa3\xb1\ \xa8\xa3\xb1\xa6\xa2\xb0\xa4\xa0\xaf\x9a\x96\xab\x89\x87\xa4\x78\ \x78\x9d\x71\x72\x98\x72\x74\x99\x77\x79\x9c\x79\x7c\x9e\x83\x85\ \xa2\x97\x96\xab\xa4\xa1\xb1\xa3\xa0\xaf\x00\x00\x00\xd4\xd0\xdb\ \xcf\xcb\xd7\xc7\xc2\xcf\xaf\xad\xbd\x8a\x88\x9c\x6f\x6f\x86\x5e\ \x60\x78\x52\x56\x6e\x47\x4c\x66\x3e\x43\x5c\x36\x3c\x57\x34\x3b\ \x55\x32\x38\x52\x31\x38\x51\x34\x39\x52\x42\x44\x5b\x51\x4d\x64\ \x61\x5a\x71\x6f\x66\x7d\x61\x58\x75\x52\x4c\x6e\x4a\x47\x6d\x48\ \x48\x71\x4c\x4e\x78\x53\x58\x81\x7d\x7a\x99\xcb\xc4\xd0\xe6\xdf\ \xe6\xc5\xbc\xc6\xad\xa4\xb0\xac\xa4\xaf\xac\xa4\xaf\xac\xa3\xae\ \xac\xa4\xaf\xab\xa3\xae\xac\xa4\xaf\xb8\xaf\xb8\xb6\xae\xb8\xa7\ \x9e\xab\xa5\x9b\xaa\xa7\x9e\xab\xa9\xa0\xad\xaa\xa1\xae\xaa\xa1\ \xae\xa9\xa1\xae\xa7\xa0\xad\xa6\xa0\xae\xa3\x9e\xad\xa2\x9d\xac\ \xa3\x9d\xac\xa2\x9d\xac\xa3\x9e\xad\xa4\x9e\xad\xa6\x9e\xad\xa7\ \x9f\xaf\xaf\xa6\xb3\xba\xb1\xbc\xaa\xa5\xb4\x9f\x9e\xb0\x9b\x9d\ \xb0\x9d\x9d\xaf\xa3\xa0\xb0\xa5\xa2\xb1\xb0\xaa\xb6\xaf\xa8\xb4\ \xb3\xac\xb9\xbb\xb5\xc0\xc0\xbb\xc6\xae\xaa\xb8\xa3\x9e\xae\xa2\ \x9c\xad\xa0\x9b\xac\x9f\x9b\xac\xa0\x9b\xac\xa3\x9d\xae\xaf\xaa\ \xb8\xc5\xc1\xcb\xc5\xc1\xcb\xad\xa8\xb6\xa9\xa5\xb3\xa7\xa2\xb1\ \xa5\xa0\xaf\xa1\x9d\xac\xa0\x9c\xab\xa1\x9e\xac\xa2\x9f\xad\xa2\ \x9f\xae\xa8\xa5\xb2\xb7\xb4\xbf\xbd\xb9\xc3\xb9\xb5\xc0\xac\xa9\ \xb5\xa1\x9f\xad\x9f\x9c\xab\xa1\x9e\xad\x9f\x9c\xab\x9d\x9b\xaa\ \x91\x91\xa4\x82\x85\x9d\x82\x86\x9d\x97\x98\xab\xa5\xa5\xb4\xa4\ \xa4\xb4\xa2\xa2\xb2\xa4\xa4\xb4\xa5\xa5\xb3\xa5\xa5\xb2\xa9\xa7\ \xb4\xa9\xa7\xb5\xb0\xae\xba\xb6\xb5\xc1\xbe\xbd\xc7\xc5\xc4\xce\ \xc8\xc7\xd0\xcc\xcb\xd4\xcc\xca\xd3\xcd\xcb\xd4\xd1\xce\xd5\xd1\ \xce\xd5\xce\xca\xd2\xa9\xa8\xb4\x50\x63\x73\x48\x62\x6e\x61\x76\ \x83\x94\x97\xa8\x96\x96\xa9\x97\x95\xa9\xa3\x9f\xaf\xa8\xa3\xb1\ \xa8\xa3\xb1\xa6\xa2\xb0\xa5\xa0\xaf\x9f\x9c\xab\x9c\x99\xa9\x9c\ \x99\xa9\x9c\x99\xa9\x9d\x9a\xa9\x9e\x9b\xab\x9e\x9a\xac\x9d\x99\ \xad\x9d\x99\xac\x9e\x9a\xad\xa0\x9b\xae\xa3\x9e\xaf\xa5\xa0\xb1\ \xa8\xa3\xb2\xa9\xa4\xb2\xaa\xa4\xb2\xac\xa5\xb3\xad\xa6\xb3\xad\ \xa6\xb3\xad\xa7\xb4\xab\xa5\xb3\xa5\xa0\xb1\xa0\x9b\xaf\x9b\x97\ \xad\x9e\x99\xad\x9c\x9a\xac\x8a\x8d\xa4\x80\x88\x9e\x88\x8c\xa3\ \x8e\x8f\xa5\x87\x84\x9d\x00\x00\x00\xd7\xd3\xde\xd0\xcc\xd8\xca\ \xc6\xd2\xc4\xc0\xcc\xb9\xb4\xc4\xaa\xa4\xb6\x8f\x8b\xa1\x70\x71\ \x89\x5c\x60\x79\x53\x58\x71\x45\x4b\x66\x3c\x43\x5d\x34\x3c\x57\ \x31\x38\x52\x31\x37\x51\x3c\x3e\x57\x3f\x40\x56\x3c\x38\x4f\x3c\ \x36\x4f\x38\x32\x4f\x33\x2e\x51\x2e\x2c\x54\x2c\x2e\x59\x2e\x35\ \x60\x33\x3b\x6a\x58\x58\x80\xc6\xbd\xc9\xe6\xdf\xe6\xcf\xc6\xd0\ \xad\xa4\xb0\xab\xa2\xaf\xab\xa2\xae\xab\xa3\xae\xab\xa3\xae\xab\ \xa3\xaf\xab\xa3\xaf\xab\xa2\xae\xa9\xa0\xac\xa7\x9e\xab\xa5\x9c\ \xaa\xa7\x9d\xac\xaa\xa1\xae\xa9\xa0\xad\xa9\xa1\xae\xa8\xa1\xae\ \xa7\xa0\xad\xa7\xa0\xad\xa3\x9d\xad\xa3\x9e\xad\xa2\x9d\xac\xa3\ \x9c\xac\xa3\x9d\xac\xa3\x9e\xad\xa4\x9f\xae\xa4\x9d\xae\xa4\x9e\ \xae\xae\xa5\xb3\xab\xa6\xb5\x9d\x9d\xb0\x8e\x97\xaf\x96\x9a\xaf\ \xa3\xa1\xb1\xa4\xa1\xb0\xaf\xa9\xb6\xaf\xa8\xb4\xb1\xa9\xb5\xb8\ \xb0\xbb\xb8\xb0\xbc\xa8\xa2\xb1\xa7\xa2\xb1\xa7\xa2\xb1\xa5\x9f\ \xaf\xa7\xa2\xb2\xa0\x9d\xad\x9e\x9a\xac\xa3\x9f\xaf\xb5\xb1\xbe\ \xc2\xbd\xc8\xae\xa9\xb7\xaa\xa5\xb4\xa7\xa3\xb2\xa4\xa0\xaf\xa4\ \x9f\xae\xa3\x9e\xad\xa1\x9d\xac\xa0\x9e\xac\xa2\x9f\xae\xa3\xa0\ \xaf\xab\xa8\xb5\xba\xb6\xc1\xba\xb7\xc2\xad\xaa\xb6\xa2\x9f\xae\ \x9f\x9c\xab\x9f\x9d\xac\x9f\x9d\xac\x9e\x9d\xab\x95\x94\xa7\x84\ \x86\x9e\x7f\x83\x9c\x8e\x91\xa5\x9e\xa0\xb1\xa3\xa4\xb4\xa0\xa1\ \xb2\xa4\xa4\xb3\xa5\xa5\xb3\xa5\xa5\xb3\xa8\xa7\xb5\xaa\xa9\xb6\ \xb3\xb1\xbd\xb9\xb8\xc3\xc1\xc1\xca\xc6\xc5\xcf\xca\xc9\xd3\xcc\ \xcb\xd5\xcc\xc9\xd3\xd1\xce\xd7\xd1\xcf\xd6\xcf\xca\xd3\xcf\xcb\ \xd4\x83\x83\x98\x4a\x5d\x71\x43\x5d\x6c\x58\x6f\x81\xab\xae\xc0\ \xcc\xcc\xd7\xcd\xcd\xd9\xad\xa8\xb9\xa5\xa2\xb1\xa6\xa2\xb1\xa6\ \xa2\xb1\xa7\xa2\xb1\xa4\xa0\xaf\xa0\x9d\xac\x9f\x9c\xac\x9d\x9a\ \xaa\x9c\x98\xab\x9c\x99\xab\x9d\x99\xac\x9c\x98\xab\x9e\x9a\xad\ \x9e\x9a\xad\x9e\x9a\xac\x9f\x9c\xad\xa0\x9c\xae\xa2\x9e\xaf\xa7\ \xa2\xb1\xa8\xa3\xb3\xaa\xa4\xb3\xad\xa6\xb4\xad\xa7\xb6\xae\xa7\ \xb6\xae\xa7\xb5\xac\xa5\xb3\xab\xa4\xb4\xaa\xa4\xb3\xa7\xa1\xb1\ \x94\x93\xa6\x73\x81\x97\x65\x7c\x90\x68\x7c\x92\x66\x73\x8d\x53\ \x59\x7b\x00\x00\x00\xd7\xd3\xde\xd4\xd0\xdb\xce\xca\xd5\xc7\xc3\ \xcf\xbf\xba\xc9\xba\xb4\xc3\xb8\xb1\xc0\xa6\xa0\xb3\x87\x85\x9c\ \x71\x74\x8d\x5f\x63\x7c\x4e\x53\x6e\x41\x49\x64\x39\x40\x5b\x34\ \x3b\x55\x32\x38\x52\x30\x33\x4c\x35\x34\x4a\x35\x32\x49\x36\x32\ \x49\x37\x35\x4d\x38\x36\x51\x37\x37\x56\x37\x3a\x5e\x3f\x43\x6a\ \x83\x7d\x98\xd2\xc9\xd3\xe9\xe3\xe7\xd7\xce\xd5\xaf\xa6\xb3\xaa\ \xa1\xae\xaa\xa1\xae\xaa\xa2\xae\xa9\xa2\xad\xab\xa2\xae\xab\xa2\ \xaf\xa9\xa1\xae\xa9\xa1\xad\xa8\x9f\xac\xa7\x9f\xac\xa8\x9f\xac\ \xa9\xa0\xad\xa9\xa0\xad\xa8\x9f\xac\xa7\x9f\xac\xa7\xa0\xad\xa6\ \x9f\xac\xa4\x9e\xad\xa3\x9e\xad\xa2\x9d\xac\xa1\x9c\xab\xa1\x9d\ \xac\xa2\x9d\xac\xa3\x9d\xac\xa3\x9f\xae\xa3\x9e\xad\xa2\x9d\xae\ \xa2\x9e\xb0\xa1\x9f\xaf\xa0\x9e\xb0\xa1\x9f\xaf\xa4\xa1\xb1\xa4\ \xa1\xb0\xaf\xaa\xb6\xaf\xa8\xb5\xaf\xa7\xb3\xb8\xb0\xbb\xb9\xb1\ \xbc\xa5\xa0\xaf\xa6\xa1\xb1\xaa\xa5\xb4\xaa\xa5\xb4\xaa\xa5\xb4\ \xaa\xa6\xb5\x9e\x9a\xad\xa0\x9c\xae\xaa\xa5\xb5\xb4\xb0\xbd\xae\ \xaa\xb7\xab\xa6\xb4\xa9\xa5\xb3\xa4\xa1\xaf\xa1\x9d\xac\xa3\x9e\ \xad\xa2\x9f\xae\xa2\x9f\xae\xa1\x9e\xad\xa2\x9f\xae\xa4\xa2\xb0\ \xb0\xad\xb9\xbb\xb8\xc2\xb0\xad\xb9\x9a\x9d\xad\x93\x98\xaa\x9e\ \x9d\xac\xa0\x9d\xac\x9f\x9c\xab\x98\x98\xa9\x87\x88\xa0\x7e\x82\ \x9b\x86\x8a\xa2\x97\x99\xac\xa1\xa4\xb3\x9d\x9e\xb0\xa3\xa3\xb3\ \xa3\xa3\xb2\xa4\xa4\xb3\xa7\xa7\xb5\xad\xad\xb9\xb5\xb4\xc0\xbf\ \xbf\xc9\xc6\xc5\xcf\xcb\xca\xd4\xcc\xcb\xd4\xcd\xcc\xd5\xd1\xce\ \xd7\xd2\xcf\xd6\xd0\xcd\xd4\xd1\xcd\xd5\xb5\xb0\xbc\x8e\x8f\xa4\ \x6e\x78\x93\x8d\x9c\xad\xdb\xe1\xe9\xfc\xfb\xfa\xf7\xf7\xf7\xf6\ \xf6\xf5\xe7\xe5\xe9\xba\xb5\xc4\xaa\xa7\xb7\xa6\xa2\xb3\xa5\xa1\ \xb1\xa7\xa2\xb1\xa5\xa2\xb1\xa5\xa2\xb1\xa3\xa0\xb0\xa1\x9e\xae\ \x9f\x9c\xad\x9f\x9b\xad\x9e\x9a\xad\x9f\x9c\xad\xa0\x9d\xae\xa1\ \x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa4\x9f\ \xb0\xa5\xa0\xb0\xa7\xa2\xb2\xa7\xa2\xb2\xa9\xa4\xb2\xac\xa6\xb5\ \xac\xa5\xb4\xab\xa4\xb3\xa9\xa3\xb2\x9d\x98\xaa\x81\x83\x9b\x6e\ \x7d\x93\x64\x78\x8f\x5d\x6f\x88\x52\x5c\x7b\x3a\x42\x69\x00\x00\ \x00\xd8\xd4\xdf\xd6\xd2\xdd\xd2\xce\xd9\xcd\xc9\xd5\xc6\xc1\xce\ \xbf\xba\xc9\xbc\xb5\xc4\xba\xb3\xc1\xb2\xab\xbb\x9c\x99\xab\x82\ \x82\x98\x6a\x6c\x85\x59\x5f\x7a\x4f\x55\x70\x44\x4b\x65\x3a\x40\ \x59\x33\x38\x51\x2e\x33\x4b\x2b\x2d\x45\x2a\x2a\x42\x2a\x29\x40\ \x2a\x2a\x43\x2b\x2c\x46\x2d\x30\x4b\x39\x3b\x56\x85\x80\x90\xcb\ \xc3\xcb\xe1\xda\xe0\xde\xd4\xda\xb6\xab\xb6\xab\xa2\xaf\xac\xa3\ \xaf\xab\xa2\xaf\xa9\xa0\xad\xa9\xa1\xad\xa8\xa1\xae\xa9\xa2\xae\ \xa8\xa1\xae\xa7\x9f\xac\xa6\x9f\xac\xa7\x9d\xab\xa7\x9f\xac\xa8\ \x9f\xac\xa9\xa0\xad\xa7\x9f\xac\xa6\x9f\xac\xa5\x9e\xab\xa5\x9f\ \xad\xa3\x9e\xad\xa2\x9d\xad\xa1\x9c\xab\xa1\x9d\xac\xa1\x9c\xab\ \xa2\x9e\xad\xa2\x9d\xad\xa2\x9d\xad\xa0\x9e\xaf\x9d\x9b\xae\xa2\ \x9f\xb0\xa2\xa0\xaf\xa2\xa0\xb0\xa4\xa1\xb1\xa4\xa1\xb0\xae\xa8\ \xb4\xae\xa8\xb4\xad\xa6\xb3\xb8\xb0\xbb\xb3\xac\xb8\xa2\x9e\xae\ \xa0\x9c\xac\xa6\xa2\xb1\xac\xa8\xb6\xb6\xb2\xbe\xbc\xb7\xc1\xab\ \xa6\xb6\xa1\x9e\xaf\xa9\xa5\xb5\xb1\xac\xba\xae\xa9\xb7\xac\xa7\ \xb6\xab\xa7\xb4\xa8\xa4\xb2\xa5\x9f\xae\xa2\x9e\xad\xa1\x9e\xad\ \xa2\x9f\xae\xa3\x9f\xae\x94\x97\xaa\xa2\xa0\xaf\xa6\xa5\xb2\xb2\ \xb0\xba\xb6\xb1\xbc\x58\x82\xa4\x2d\x69\x90\x91\x9a\xae\x9f\x9d\ \xac\x9e\x9b\xaa\x9a\x99\xaa\x88\x8a\xa0\x7d\x82\x9b\x82\x87\xa0\ \x8a\x8e\xa3\x99\x9b\xae\x9b\x9d\xaf\xa1\xa1\xb2\xa5\xa3\xb3\xa5\ \xa5\xb4\xaa\xaa\xb8\xb0\xb0\xbc\xba\xbb\xc6\xc2\xc1\xcb\xc8\xc7\ \xd1\xca\xc9\xd3\xcd\xcb\xd5\xd2\xd0\xd9\xd1\xce\xd6\xce\xcb\xd3\ \xd1\xcc\xd3\xbe\xba\xc5\x9f\x9f\xb4\xce\xce\xdb\xec\xeb\xf1\xf9\ \xf7\xf7\xf6\xf6\xf5\xf4\xf4\xf4\xf5\xf5\xf5\xf4\xf4\xf4\xf4\xf2\ \xf4\xf0\xed\xf1\xe2\xdf\xe5\xd5\xd3\xdc\xc9\xc7\xd2\xad\xa9\xb9\ \xa1\x9e\xae\xa4\xa1\xb0\xa7\xa2\xb1\xa6\xa2\xb1\xa6\xa2\xb1\xa5\ \xa1\xb0\xa3\xa0\xaf\xa2\x9f\xaf\xa2\x9f\xaf\xa1\x9e\xaf\xa0\x9d\ \xad\xa1\x9e\xae\xa0\x9d\xad\x9f\x9b\xac\x9e\x9b\xac\x9f\x9b\xac\ \xa1\x9c\xae\xa1\x9d\xae\xa3\x9e\xaf\xa5\x9f\xaf\xa5\x9f\xb0\xa1\ \x98\xac\x97\x8f\xa6\x7f\x79\x96\x65\x65\x86\x5d\x60\x81\x56\x5b\ \x7c\x48\x50\x73\x3a\x41\x69\x2e\x37\x62\x00\x00\x00\xd9\xd5\xe0\ \xd7\xd3\xde\xd3\xcf\xda\xcf\xcb\xd6\xca\xc6\xd2\xc6\xc2\xce\xc2\ \xbd\xca\xc0\xba\xc7\xbc\xb5\xc2\xb8\xb1\xbf\xb2\xab\xb9\xa1\x9b\ \xad\x84\x84\x9a\x6e\x70\x87\x5f\x61\x79\x4b\x51\x69\x3e\x43\x5c\ \x34\x39\x53\x30\x35\x4f\x2d\x32\x4b\x28\x2b\x46\x25\x27\x3f\x22\ \x25\x3c\x22\x26\x3f\x28\x2d\x46\x3d\x41\x57\x6b\x66\x7a\xb5\xab\ \xb6\xdb\xd3\xda\xbf\xb5\xbd\xaa\xa1\xae\xab\xa2\xaf\xab\xa2\xaf\ \xaa\xa1\xae\xa8\xa0\xad\xa6\xa0\xad\xa8\xa1\xae\xa7\xa0\xad\xa7\ \xa0\xad\xa5\x9f\xac\xa6\x9e\xab\xa7\x9f\xac\xa8\x9f\xac\xa8\xa1\ \xae\xa7\xa0\xad\xa7\xa0\xad\xa5\x9e\xac\xa6\x9f\xad\xa3\x9e\xad\ \xa2\x9d\xac\xa0\x9c\xab\x9f\x9c\xab\x9f\x9c\xac\xa1\x9e\xad\xa1\ \x9c\xac\xa1\x9d\xad\xa1\x9d\xae\xa0\x9c\xaf\xa1\x9e\xaf\xa2\x9f\ \xaf\xa3\xa0\xaf\xa4\xa1\xb0\xa3\xa0\xaf\xae\xa8\xb5\xaf\xa8\xb5\ \xad\xa6\xb3\xb5\xae\xbb\x9f\x9c\xad\x97\x95\xa7\x98\x96\xa9\x9e\ \x9b\xac\xa8\xa4\xb2\xbf\xba\xc4\xc7\xc2\xcb\xbd\xb7\xc2\xae\xaa\ \xb9\xa1\x9c\xaf\xab\xa6\xb6\xaf\xaa\xb9\xad\xa8\xb6\xad\xa6\xb4\ \xaa\xa5\xb3\xa6\xa1\xb0\xa4\x9f\xae\xa1\x9e\xad\xa3\x9e\xad\x6f\ \x88\xa7\x23\x69\x93\x90\x98\xac\xa3\xa1\xb0\xa9\xa7\xb3\xb2\xaf\ \xb8\x6e\x8e\xae\x13\x74\xa4\x7c\x9e\xb9\xa3\xa4\xb4\x9c\x9b\xab\ \x9a\x99\xaa\x84\x89\x9e\x7b\x81\x9b\x7e\x84\x9d\x81\x86\x9f\x8b\ \x90\xa5\x94\x98\xab\x87\x95\xac\x73\x8e\xab\xa6\xa7\xb7\xad\xad\ \xba\xb5\xb5\xc0\xbd\xbe\xc8\xc5\xc4\xce\xcc\xcb\xd4\xcc\xcb\xd4\ \xcf\xcd\xd6\xcf\xcc\xd5\xcd\xcb\xd2\xcc\xc9\xd2\xc7\xc4\xcd\xb0\ \xad\xc0\xda\xd8\xe3\xec\xeb\xf0\xef\xee\xf1\xef\xee\xf1\xf2\xf2\ \xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf3\xf3\xf3\xf3\xf3\xf4\ \xf6\xf6\xf6\xf8\xf8\xf8\xf7\xf7\xf7\xed\xed\xee\xd6\xd5\xdc\xae\ \xaa\xb9\xa3\xa0\xb0\xa6\xa2\xb0\xa8\xa2\xb2\xa8\xa4\xb2\xa7\xa3\ \xb2\xa6\xa3\xb2\xa6\xa3\xb2\xa5\xa1\xb0\xa3\xa0\xb0\xa2\x9f\xaf\ \xa1\x9e\xae\xa0\x9d\xad\x9f\x9b\xac\x9e\x9a\xab\x9d\x9a\xad\x9b\ \x98\xaa\x95\x91\xa6\x8d\x88\x9f\x84\x7e\x98\x79\x71\x90\x6e\x67\ \x89\x5e\x56\x7d\x4e\x46\x71\x44\x3e\x6a\x3e\x3c\x68\x36\x38\x65\ \x30\x35\x62\x2d\x35\x61\x00\x00\x00\xd9\xd5\xe0\xd7\xd3\xde\xd4\ \xd0\xdb\xd0\xcc\xd7\xce\xca\xd5\xca\xc6\xd2\xc8\xc4\xd0\xc9\xc2\ \xcf\xc5\xbe\xcb\xc1\xba\xc6\xbd\xb4\xc1\xba\xb1\xbe\xb9\xb0\xbc\ \xa3\x9c\xad\x7f\x7b\x90\x69\x68\x7f\x51\x52\x6a\x43\x47\x60\x3c\ \x43\x5d\x36\x3c\x57\x30\x36\x53\x2a\x2e\x4a\x25\x29\x42\x23\x28\ \x40\x26\x2c\x45\x2b\x31\x4a\x37\x3b\x53\x67\x64\x76\xb7\xaf\xb7\ \xbc\xb3\xbb\xa9\xa0\xac\xa8\xa0\xad\xaa\xa1\xae\xaa\xa2\xaf\xa9\ \xa1\xae\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\ \xad\xa5\x9e\xab\xa5\x9e\xab\xa6\x9f\xac\xa8\xa0\xad\xa9\xa1\xae\ \xa8\xa0\xad\xa6\x9f\xac\xa6\x9f\xac\xa6\x9e\xad\xa2\x9d\xac\xa1\ \x9c\xab\x9f\x9b\xab\x9f\x9c\xac\x9f\x9c\xac\xa0\x9c\xac\x9f\x9c\ \xac\xa0\x9d\xad\xa0\x9d\xae\xa1\x9e\xae\xa2\x9f\xaf\xa3\xa1\xb0\ \xa3\xa0\xb0\xa3\xa0\xaf\xad\xa8\xb4\xae\xa7\xb4\xad\xa6\xb3\xb4\ \xad\xb9\x9f\x9c\xae\x96\x95\xa8\x94\x93\xa7\x96\x94\xa8\x9f\x9c\ \xad\xad\xa8\xb6\xbe\xb9\xc3\xc4\xbe\xc8\xbf\xba\xc5\xad\xa9\xba\ \xae\xaa\xb9\xb4\xaf\xbe\xab\xa5\xb5\xab\xa5\xb3\xad\xa6\xb4\xa8\ \xa3\xb0\xa4\xa0\xaf\xa3\x9f\xae\xa2\x9e\xac\x6e\x90\xaf\x3e\x83\ \xaa\x9b\xa0\xb1\xa0\xa0\xad\xa3\xa0\xaf\xab\xa9\xb5\xa5\xa5\xb3\ \x8b\x9d\xb2\x9b\x9e\xaf\xa5\xac\xbb\xa2\xa6\xb6\x98\x99\xa9\x7f\ \x87\x9e\x72\x7f\x9a\x7b\x84\x9d\x7a\x82\x9b\x7d\x85\x9d\x8b\x92\ \xa7\x66\x89\xa8\x0e\x76\xab\x9c\xac\xc0\xaf\xaf\xbc\xb7\xb8\xc4\ \xbc\xbc\xc8\xc8\xc7\xd1\xcd\xcd\xd6\xd0\xcf\xd8\xcf\xcc\xd5\xcb\ \xc8\xd0\xca\xc7\xd0\xcb\xc7\xd0\xc2\xbc\xcb\xdd\xdb\xe5\xe7\xe5\ \xeb\xeb\xea\xef\xed\xec\xf1\xef\xee\xf1\xf3\xf2\xf3\xf3\xf3\xf3\ \xf4\xf4\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\ \xf8\xf8\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xed\xec\xee\xc0\xbd\ \xc8\xa7\xa2\xb2\xa9\xa4\xb3\xab\xa6\xb5\xad\xa9\xb5\xae\xaa\xb6\ \xae\xa9\xb5\xac\xa8\xb5\xac\xa8\xb4\xab\xa7\xb3\xa8\xa4\xb2\xa4\ \xa1\xb0\x9d\x9b\xab\x94\x92\xa6\x88\x87\x9d\x7d\x7b\x97\x72\x6f\ \x8f\x6d\x6b\x8a\x6b\x67\x85\x68\x64\x81\x61\x5e\x7c\x58\x54\x77\ \x4f\x47\x71\x41\x3a\x68\x37\x32\x64\x33\x32\x63\x30\x33\x64\x2d\ \x35\x63\x00\x00\x00\xda\xd5\xe0\xd6\xd2\xdd\xd4\xd0\xdb\xd1\xcc\ \xd7\xcf\xca\xd5\xcd\xc8\xd4\xce\xc8\xd3\xcd\xc7\xd2\xcd\xc7\xd2\ \xca\xc3\xcd\xc7\xbf\xca\xc2\xb9\xc4\xbf\xb5\xc0\xc0\xb5\xc0\xb7\ \xac\xb8\xa1\x98\xa7\x7b\x75\x8c\x5c\x5b\x74\x51\x55\x6d\x49\x50\ \x6a\x3d\x46\x63\x33\x3c\x59\x2b\x32\x4e\x27\x2f\x49\x27\x2f\x49\ \x28\x2f\x4a\x2c\x32\x4c\x35\x39\x51\x56\x53\x66\x82\x7a\x87\x9e\ \x94\xa1\xa8\x9f\xac\xa8\xa0\xad\xaa\xa2\xaf\xaa\xa2\xaf\xa9\xa2\ \xaf\xa8\xa1\xae\xa8\xa1\xae\xa8\xa1\xae\xa6\x9f\xac\xa6\x9f\xac\ \xa6\x9f\xac\xa6\x9f\xac\xa7\xa0\xad\xa8\xa1\xae\xa8\xa1\xae\xa4\ \x9e\xad\xa4\x9e\xad\xa5\x9f\xad\xa2\x9d\xac\xa1\x9c\xab\x9f\x9b\ \xab\x9f\x9c\xab\x9e\x9b\xab\x9f\x9c\xac\x9f\x9c\xac\xa0\x9d\xad\ \xa1\x9e\xaf\xa0\x9c\xae\xa1\x9f\xaf\xa1\xa0\xb0\xa0\x9f\xaf\xa2\ \x9f\xaf\xac\xa6\xb3\xaf\xa9\xb5\xaf\xa8\xb4\xb3\xac\xba\xa2\x9f\ \xaf\x98\x96\xa9\x96\x95\xa9\x94\x93\xa6\x99\x97\xa9\xa1\x9d\xad\ \xac\xa6\xb4\xb2\xac\xb9\xbb\xb6\xc2\xc4\xbf\xca\xbc\xb7\xc5\xb9\ \xb4\xc3\xb4\xb0\xbe\xa9\xa2\xb3\xae\xa6\xb4\xad\xa7\xb3\xa7\xa2\ \xb0\xa3\x9f\xaf\x9b\x99\xa9\x99\x97\xa9\x9e\x9f\xb1\xaa\xab\xb8\ \x9f\x9f\xad\xa1\xa1\xae\xa4\xa3\xb1\xaa\xa9\xb5\xa4\xa1\xaf\x9c\ \x9b\xab\x9a\x9b\xab\x9f\xa6\xb7\x9c\xa5\xb7\x72\x88\xa4\x2c\x6f\ \x98\x69\x83\xa3\x76\x80\x9a\x72\x7f\x98\x7d\x87\xa0\x81\x99\xb3\ \x72\xa4\xc4\xbf\xc5\xd2\xb0\xb2\xbf\xba\xbb\xc6\xc3\xc3\xce\xcb\ \xcc\xd5\xce\xce\xd7\xcd\xcb\xd4\xbd\xbb\xc5\xc1\xbe\xc7\xcb\xc7\ \xd1\xd2\xcc\xd8\xe0\xde\xe6\xe8\xe6\xec\xe8\xe5\xec\xeb\xe9\xef\ \xee\xed\xf1\xf1\xf0\xf2\xf3\xf2\xf3\xf2\xf2\xf3\xf6\xf6\xf6\xf7\ \xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\ \xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf6\xf5\xf6\xcd\xc9\xd3\ \xac\xa8\xb6\xac\xa7\xb4\xad\xa9\xb5\xb0\xaa\xb6\xb0\xaa\xb7\xae\ \xaa\xb6\xad\xa8\xb5\xa9\xa6\xb3\xa2\x9e\xae\x96\x93\xa7\x8b\x88\ \xa0\x80\x7e\x9a\x75\x74\x93\x75\x74\x93\x79\x78\x95\x7e\x7c\x97\ \x79\x79\x91\x6e\x6f\x87\x62\x63\x7d\x59\x5b\x77\x54\x52\x76\x47\ \x41\x6e\x38\x33\x66\x32\x30\x63\x2f\x31\x62\x2b\x33\x62\x00\x00\ \x00\xdb\xd5\xe0\xd6\xd2\xdc\xd4\xce\xd9\xd1\xcc\xd7\xcf\xc9\xd4\ \xce\xc8\xd3\xce\xc8\xd3\xce\xc8\xd3\xcf\xc9\xd4\xcf\xc8\xd2\xce\ \xc5\xcf\xcb\xc2\xcb\xc8\xbe\xc6\xc4\xb9\xc2\xc3\xb8\xc1\xc1\xb6\ \xbe\xb4\xa8\xb5\x9c\x93\xa3\x7a\x75\x8b\x60\x64\x7b\x56\x5d\x77\ \x46\x50\x6b\x36\x3f\x5c\x2e\x39\x55\x2c\x36\x52\x2a\x33\x4f\x29\ \x32\x4d\x29\x32\x4c\x30\x35\x4d\x3d\x3d\x52\x81\x76\x85\xa8\x9f\ \xab\xa9\xa0\xac\xa9\xa0\xad\xa9\xa1\xae\xa8\xa1\xae\xa9\xa2\xaf\ \xa9\xa2\xaf\xa8\xa1\xae\xa7\xa0\xad\xa7\xa0\xad\xa6\x9f\xad\xa6\ \x9f\xac\xa7\xa0\xad\xa7\xa0\xad\xa6\xa0\xae\x66\x7a\x98\x86\x8b\ \xa3\xa6\xa0\xaf\xa4\x9e\xad\xa1\x9c\xac\x9f\x9b\xac\x9e\x9b\xab\ \x9f\x9c\xac\x9f\x9c\xac\xa0\x9d\xad\xa1\x9e\xae\xa0\x9d\xae\x9d\ \x9b\xaf\xa0\x9e\xae\xa1\xa0\xb0\xa0\x9f\xaf\xa1\x9f\xaf\xaa\xa5\ \xb2\xaf\xa8\xb4\xac\xa5\xb3\xb3\xac\xba\xa6\xa2\xb2\xa0\x9d\xae\ \x9b\x98\xab\x99\x97\xaa\x97\x96\xa9\x9c\x99\xab\xa3\x9f\xaf\xae\ \xa8\xb7\xbd\xb7\xc3\xc8\xc4\xcd\xcb\xc8\xd2\xca\xc6\xd2\xc5\xc1\ \xcd\xb0\xaa\xb8\xaa\xa4\xb3\xaf\xa8\xb5\xaa\xa5\xb3\xa4\xa0\xaf\ \x9c\x9b\xaa\x93\x93\xa5\x8e\x8f\xa3\xa2\xa4\xb4\xa6\xa9\xb7\x9c\ \x9b\xab\xa3\xa2\xb0\x9b\xa0\xb1\x3c\x75\x9b\x8b\x96\xac\x8e\x99\ \xab\x7d\x99\xab\x95\xa3\xb6\x7d\x9a\xb6\x34\x82\xad\x79\x94\xb1\ \x6a\x7b\x96\x6e\x7e\x98\x72\x81\x9c\x8a\x92\xa8\x9e\xa2\xb3\xba\ \xc1\xce\xb6\xb9\xc5\xbb\xbc\xc7\xca\xcb\xd3\xc6\xc6\xd0\xba\xba\ \xc5\xae\xad\xba\xa9\xa7\xb5\xa9\xa7\xb6\xb4\xb2\xc3\xe3\xe1\xe8\ \xe8\xe6\xeb\xe6\xe4\xea\xea\xe8\xee\xea\xe9\xef\xea\xe8\xee\xf1\ \xf0\xf2\xf2\xf1\xf2\xf4\xf4\xf4\xf6\xf6\xf6\xf8\xf8\xf8\xf6\xf6\ \xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\ \xf8\xf8\xf8\xf7\xf7\xf7\xf6\xf6\xf6\xf1\xf0\xf1\xd7\xd2\xdb\xb3\ \xae\xbb\xb1\xac\xb8\xb3\xad\xb9\xb2\xac\xb8\xa9\xa4\xb3\xa3\x9d\ \xae\x9d\x99\xac\x9e\x99\xad\x9c\x99\xac\x9b\x98\xac\x9a\x96\xac\ \x9a\x97\xab\x9c\x99\xac\x9a\x97\xaa\x92\x91\xa4\x86\x86\x9a\x78\ \x78\x8e\x68\x6a\x82\x5d\x61\x7a\x58\x5b\x78\x4c\x4b\x73\x3c\x38\ \x69\x30\x2f\x62\x2b\x2f\x60\x28\x30\x60\x00\x00\x00\xda\xd5\xde\ \xd7\xd1\xdc\xd4\xce\xd9\xd1\xcb\xd6\xcf\xc9\xd4\xce\xc8\xd3\xcd\ \xc7\xd2\xcb\xc5\xd0\xcd\xc7\xd1\xd0\xc8\xd2\xd1\xc9\xd1\xd1\xc7\ \xcf\xce\xc4\xcb\xcb\xc0\xc8\xc8\xbc\xc4\xc8\xbb\xc3\xc7\xbb\xc3\ \xbd\xb1\xbc\xb1\xa4\xb1\x96\x8e\x9f\x75\x74\x8c\x60\x65\x80\x4a\ \x52\x6e\x3c\x45\x60\x37\x41\x5d\x32\x3d\x59\x2d\x37\x53\x2b\x34\ \x50\x2e\x35\x4e\x2e\x32\x48\x56\x4f\x5f\x9d\x92\x9e\xa9\xa0\xad\ \xa8\xa0\xad\xa9\xa1\xae\xaa\xa2\xaf\xa9\xa1\xae\xa9\xa2\xaf\xa9\ \xa2\xaf\xa8\xa1\xae\xa7\xa0\xad\xa7\xa0\xaf\xa5\x9f\xad\xa5\x9f\ \xae\xa6\xa0\xae\xa6\xa0\xaf\x79\x87\xa4\x8c\x91\xa7\xa6\xa0\xaf\ \xa4\x9f\xae\xa3\x9e\xad\x9e\x9b\xab\x9e\x9b\xab\x9f\x9c\xac\x9e\ \x9b\xab\x9e\x9b\xab\x9f\x9c\xac\xa0\x9d\xae\x9d\x9b\xad\x9d\x9b\ \xae\x9f\x9f\xaf\x9d\x9e\xae\xa0\x9f\xaf\xa8\xa4\xb2\xac\xa6\xb3\ \xa8\xa2\xb0\xaf\xa9\xb7\xaa\xa7\xb6\xac\xa9\xb6\xa8\xa5\xb4\xa5\ \xa2\xb1\xa0\x9c\xae\x9e\x9a\xac\x9c\x98\xab\xa6\xa2\xb2\xbb\xb7\ \xc3\xcc\xc6\xd0\xd3\xd0\xd9\xd6\xd3\xdc\xd9\xd6\xde\xbd\xba\xc6\ \xa8\xa3\xb3\xaf\xa8\xb5\xae\xa7\xb4\xa8\xa3\xb2\x9d\x9c\xab\x97\ \x97\xa8\x90\x91\xa4\x8b\x8f\xa2\xaa\xae\xbc\xa1\xa4\xb5\x9c\x9c\ \xac\x7f\x93\xae\x18\x6e\x9d\x6b\x92\xac\x23\x89\x9c\x29\x90\xa4\ \x78\x9c\xb1\x8d\x9d\xb2\x79\x8f\xa8\x75\x8b\xa5\x6d\x87\xa2\x58\ \x78\x97\x62\x7f\x9e\x82\x8c\xa5\x96\x9c\xb0\xae\xb7\xc6\xb0\xb2\ \xc0\xb2\xb4\xc1\x9b\xa1\xb2\x90\x99\xae\x92\x98\xae\x96\x9a\xaf\ \x96\x99\xae\x8e\x93\xad\xc1\xc3\xd3\xe8\xe6\xec\xe6\xe4\xea\xe6\ \xe4\xea\xea\xe8\xee\xea\xe8\xee\xe8\xe6\xec\xef\xee\xf1\xf4\xf4\ \xf4\xf3\xf3\xf3\xf4\xf3\xf4\xf1\xf0\xf2\xf3\xf2\xf4\xf6\xf6\xf6\ \xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf6\xf6\xf6\xf4\ \xf4\xf4\xf2\xf2\xf2\xf3\xf3\xf3\xf4\xf3\xf4\xde\xda\xe1\xb9\xb3\ \xbe\xb7\xb1\xbc\xad\xa7\xb4\x9e\x9a\xab\x97\x94\xa9\x9b\x98\xab\ \xa1\x9d\xaf\xa4\xa1\xb1\xa8\xa3\xb3\xaa\xa5\xb4\xab\xa6\xb6\xa9\ \xa5\xb4\xa3\xa0\xb0\x9a\x97\xaa\x8e\x8e\xa1\x82\x81\x96\x73\x74\ \x89\x64\x68\x7f\x5c\x61\x7a\x54\x56\x76\x44\x41\x6e\x30\x30\x62\ \x2a\x2e\x5f\x26\x2d\x5e\x00\x00\x00\xd9\xd3\xdd\xd6\xd0\xdb\xd3\ \xcd\xd8\xd0\xca\xd5\xcf\xc9\xd4\xcd\xc7\xd2\xcb\xc5\xd0\xcb\xc5\ \xd0\xcd\xc6\xd0\xcf\xc6\xd0\xd2\xc8\xd0\xd4\xca\xd0\xd4\xc9\xcf\ \xd3\xc7\xcc\xcf\xc3\xca\xcb\xbe\xc6\xc9\xbc\xc4\xc8\xbc\xc3\xc5\ \xb8\xbf\xba\xad\xb6\xa8\x9d\xaa\x88\x84\x98\x6d\x6f\x89\x5c\x60\ \x7b\x4f\x57\x71\x41\x49\x65\x37\x42\x5d\x3a\x42\x5d\x34\x3a\x54\ \x2a\x2e\x44\x35\x35\x48\x81\x77\x85\xa7\x9e\xab\xa9\xa1\xae\xa9\ \xa1\xae\xaa\xa1\xae\xaa\xa2\xaf\xa8\xa2\xaf\xa9\xa2\xaf\xa9\xa2\ \xaf\xa9\xa2\xaf\xa8\xa1\xae\xa6\xa0\xaf\xa3\x9e\xad\xa5\x9f\xae\ \xa6\xa0\xae\xa7\xa1\xaf\xa5\xa0\xaf\xa7\xa2\xb0\xa5\xa0\xaf\xa5\ \xa0\xaf\xa0\x9c\xac\x9e\x9b\xaa\x9f\x9c\xac\x9f\x9c\xac\x9f\x9b\ \xab\x9e\x9c\xac\x9b\x9a\xaa\x8f\x90\xa3\x97\x97\xa9\x9c\x9d\xaf\ \x99\x9b\xae\xa0\x9f\xaf\xa5\xa2\xb0\xac\xa7\xb3\xab\xa4\xb2\xb3\ \xad\xb9\xaf\xab\xb8\xaf\xab\xb7\xb1\xad\xb9\xaf\xab\xb9\xab\xa7\ \xb5\xa5\xa0\xb1\xa0\x9c\xae\xa2\x9d\xb0\xbd\xb8\xc4\xd6\xd2\xd9\ \xdc\xd9\xe0\xd5\xd0\xd9\xd7\xd2\xd9\xbe\xb8\xc4\xb0\xaa\xb9\xb3\ \xae\xbb\xaf\xa8\xb6\xaa\xa4\xb2\x94\x96\xa7\x8d\x91\xa3\x8d\x91\ \xa4\x85\x8b\xa0\x83\x89\xa0\xa2\xa7\xb8\x9d\xa2\xb3\x98\x9a\xad\ \x89\x9c\xb1\x67\x9a\xaf\x1c\x93\xa6\x2e\x98\xac\x70\x97\xae\x7c\ \x90\xa8\x7d\x91\xaa\x58\x7c\x9a\x21\x70\x9c\x15\x75\xa6\x39\x89\ \xb3\x86\x93\xab\x8a\x94\xab\xa5\xb0\xc2\x96\x9b\xaf\x88\x90\xa8\ \x80\x8e\xa8\x7c\x8b\xa5\x6d\x7c\x99\x59\x6f\x93\x71\x80\xa5\xbd\ \xc0\xd2\xe8\xe7\xee\xe8\xe6\xec\xe4\xe2\xe8\xeb\xe9\xef\xec\xeb\ \xf0\xeb\xe9\xef\xee\xee\xf1\xef\xee\xf1\xf2\xf2\xf3\xf2\xf2\xf3\ \xef\xed\xf1\xee\xec\xf1\xf2\xf0\xf2\xf4\xf4\xf4\xf7\xf7\xf7\xf9\ \xf9\xf9\xfa\xfa\xfa\xf8\xf8\xf8\xf5\xf5\xf5\xf2\xf1\xf2\xf4\xf4\ \xf4\xf6\xf6\xf6\xf7\xf7\xf7\xfa\xfa\xfa\xe1\xdd\xe3\xb7\xb0\xba\ \xa1\x9c\xac\x94\x92\xa6\x97\x95\xa9\x9e\x9b\xae\xa4\xa1\xb1\xa8\ \xa5\xb4\xab\xa7\xb6\xad\xa8\xb7\xad\xa8\xb7\xab\xa6\xb5\xa7\xa3\ \xb3\xa0\x9d\xad\x96\x95\xa7\x8b\x8a\x9e\x7d\x7e\x93\x6f\x72\x88\ \x63\x69\x80\x60\x65\x7e\x52\x51\x78\x37\x36\x66\x2c\x2f\x60\x27\ \x2e\x5d\x00\x00\x00\xd7\xd2\xdb\xd5\xcf\xd9\xd2\xcd\xd6\xd0\xca\ \xd4\xce\xc8\xd2\xcb\xc5\xd0\xc9\xc3\xce\xc9\xc3\xce\xcb\xc3\xce\ \xcd\xc4\xce\xd0\xc6\xcd\xd3\xc8\xce\xd6\xca\xd0\xd5\xc9\xcf\xd3\ \xc7\xcd\xd0\xc3\xca\xcc\xc0\xc6\xc9\xbd\xc4\xcb\xbe\xc4\xcc\xbe\ \xc3\xc6\xb8\xbe\xb2\xa6\xb1\x9a\x92\xa3\x83\x80\x95\x66\x68\x81\ \x52\x57\x6f\x48\x4f\x67\x47\x4e\x65\x39\x3e\x54\x2e\x30\x46\x31\ \x31\x45\x66\x5d\x6d\xa4\x9b\xa7\xaa\xa1\xae\xaa\xa2\xaf\xa9\xa1\ \xae\xac\xa3\xb0\xaa\xa2\xaf\xa9\xa1\xae\xa9\xa1\xae\xa9\xa2\xaf\ \xa8\xa1\xaf\xa7\xa0\xae\xa6\xa0\xae\xa3\x9f\xad\xa4\x9f\xad\xa5\ \xa0\xaf\xa5\xa0\xaf\xa5\xa0\xaf\xa6\xa2\xb1\xa5\xa1\xb0\xa2\x9f\ \xae\x9e\x9b\xab\x9e\x9c\xac\x9e\x9b\xab\x9e\x9c\xab\x9d\x9b\xac\ \x8f\x8e\xa2\x63\x67\x82\x8b\x8d\xa0\x9b\x9c\xad\x9b\x9c\xaf\x9f\ \x9e\xae\xa2\x9f\xaf\xac\xa6\xb4\xad\xa7\xb5\xb5\xae\xbb\xb0\xaa\ \xb8\xaf\xa9\xb7\xb1\xac\xb8\xb1\xac\xb8\xb1\xab\xb8\xb1\xab\xb7\ \xb0\xab\xb7\xaf\xaa\xb6\xb6\xb0\xbb\xbf\xb9\xc2\xbe\xb7\xc1\xb6\ \xae\xb8\xb0\xa9\xb5\xad\xa6\xb3\xae\xa7\xb5\xb0\xa9\xb6\xad\xa5\ \xb4\x9a\x9c\xae\x7a\x89\xa2\x85\x8c\xa2\x89\x8e\xa3\x86\x8b\xa2\ \x7d\x84\x9e\x7b\x84\x9d\x91\x9a\xaf\x99\xa2\xb4\x93\x99\xab\x7d\ \x97\xaa\x58\x9f\xb1\x64\xae\xbf\x40\x8b\xac\x5a\x85\xa6\x6a\x84\ \xa0\x5d\x7f\x9d\x38\x7c\xa4\x4f\x8d\xb5\x3f\x8d\xb8\x4f\x88\xad\ \x78\x8f\xad\x93\xa2\xba\x7b\x87\xa7\x74\x82\xa4\x69\x7c\xa0\x52\ \x6a\x90\x38\x57\x7f\x4d\x6b\x96\xba\xc0\xd5\xea\xea\xef\xe5\xe3\ \xea\xe8\xe6\xec\xed\xec\xf0\xf0\xef\xf1\xef\xee\xf2\xf2\xf1\xf3\ \xf0\xef\xf2\xf0\xef\xf2\xf6\xf6\xf6\xf6\xf6\xf6\xf4\xf4\xf4\xf4\ \xf4\xf5\xf6\xf6\xf6\xf8\xf7\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xf4\xf4\ \xf7\xf3\xf3\xf6\xf6\xf5\xf5\xf4\xf3\xf4\xf7\xf6\xf7\xf8\xf8\xf8\ \xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xd1\xcd\xd3\x90\x8f\xa2\x91\ \x90\xa4\x98\x96\xaa\x9f\x9d\xae\xa6\xa3\xb2\xab\xa7\xb6\xae\xa9\ \xb7\xaf\xaa\xb8\xad\xa8\xb7\xab\xa6\xb5\xa8\xa3\xb3\xa3\xa1\xb0\ \x9b\x9a\xab\x92\x91\xa4\x86\x86\x9a\x78\x7b\x90\x6d\x73\x88\x69\ \x6f\x85\x60\x62\x81\x46\x43\x6f\x33\x34\x63\x2a\x30\x5d\x00\x00\ \x00\xd7\xd2\xdb\xd3\xce\xd8\xd0\xca\xd5\xd1\xc8\xd3\xcd\xc6\xd1\ \xca\xc4\xcf\xc9\xc3\xce\xc9\xc2\xcd\xca\xc1\xcc\xca\xc2\xcc\xce\ \xc3\xcb\xd2\xc6\xcd\xd3\xc7\xcd\xd6\xca\xd0\xd6\xca\xd0\xd6\xca\ \xd0\xd2\xc6\xcc\xce\xc1\xc8\xcc\xc0\xc6\xcd\xbf\xc5\xce\xc0\xc4\ \xcd\xbf\xc3\xc4\xb6\xbc\xa9\x9d\xaa\x88\x82\x96\x67\x68\x7e\x51\ \x55\x6a\x47\x49\x5e\x37\x39\x4b\x2f\x30\x43\x31\x31\x45\x51\x4b\ \x5d\x9b\x91\x9f\xaa\xa1\xae\xaa\xa1\xae\xab\xa2\xaf\xaa\xa2\xaf\ \xaa\xa2\xaf\xab\xa3\xb0\xab\xa2\xaf\xa9\xa1\xae\xa9\xa1\xae\xa8\ \xa1\xae\xa8\xa1\xaf\xa6\xa0\xae\xa4\x9e\xad\xa3\x9e\xad\xa4\x9f\ \xae\xa5\xa0\xaf\xa3\x9f\xaf\xa2\xa0\xb0\xa1\xa0\xaf\xa0\x9d\xad\ \x9e\x9b\xab\x9f\x9c\xad\x9e\x9c\xac\x9c\x9b\xac\x99\x98\xaa\x77\ \x78\x91\x7d\x7f\x96\x9a\x9a\xab\x9c\x9c\xad\x9f\x9e\xae\xa2\x9f\ \xb0\xac\xa6\xb5\xb1\xaa\xb7\xb4\xad\xba\xb2\xab\xb8\xb1\xaa\xb8\ \xb2\xab\xb8\xb1\xab\xb7\xb1\xaa\xb7\xb1\xab\xb6\xb1\xab\xb6\xb0\ \xaa\xb5\xb0\xaa\xb5\xb1\xac\xb7\xb1\xab\xb6\xb3\xac\xb7\xb3\xad\ \xb8\xb2\xac\xb7\xb2\xac\xb8\xb2\xac\xb7\xb0\xab\xb8\x6a\x92\xb2\ \x25\x83\xb0\x94\x9a\xb0\x8b\x8e\xa5\x89\x8d\xa4\x86\x8b\xa4\x79\ \x84\x9f\x75\x82\x9d\x80\x8e\xa5\x90\x9c\xb0\x84\x91\xa8\x81\x92\ \xa7\x70\xac\xbd\x59\xa2\xb9\x54\x82\xa2\x6a\x88\xa4\x56\x79\x98\ \x4b\x74\x95\x5c\x81\xa2\x49\x8d\xb6\x2d\x9e\xd1\x9d\xb7\xcf\x72\ \x87\xa8\x56\x6e\x99\x55\x72\x9e\x47\x64\x90\x33\x54\x7f\x48\x6a\ \x94\xb9\xc3\xd8\xeb\xeb\xf0\xdc\xdc\xe4\xe4\xe3\xe9\xee\xed\xf0\ \xf2\xf1\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf4\xf5\xf6\xf6\xf6\xf7\ \xf7\xf7\xf6\xf6\xf6\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\ \xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf7\xf7\xf9\xee\xef\xf4\ \xf6\xf6\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\ \xfa\xfa\xfa\xfa\xfa\xee\xee\xef\xa1\xa2\xb1\x8c\x8d\xa2\x96\x95\ \xa7\x9e\x9c\xad\xa7\xa3\xb2\xae\xa9\xb6\xaf\xab\xb7\xaf\xab\xb8\ \xad\xa9\xb7\xaa\xa6\xb5\xa7\xa4\xb3\xa5\xa2\xb2\xa0\x9f\xaf\x98\ \x97\xa9\x8e\x8d\xa1\x82\x84\x98\x76\x7b\x90\x6d\x74\x89\x6a\x6f\ \x87\x59\x59\x7d\x3d\x3b\x67\x2f\x33\x5e\x00\x00\x00\xd6\xd1\xda\ \xd2\xcc\xd6\xcf\xc8\xd3\xcc\xc6\xd1\xca\xc4\xcf\xc8\xc2\xcd\xc7\ \xc1\xcc\xc9\xc2\xcd\xc9\xc1\xcc\xc9\xc1\xcb\xcd\xc2\xc9\xcf\xc4\ \xcb\xd2\xc6\xcc\xd6\xca\xd0\xd8\xcc\xd2\xd9\xcd\xd3\xd8\xcc\xd1\ \xd5\xc9\xcf\xd1\xc5\xcb\xcf\xc2\xc8\xcf\xc1\xc7\xd0\xc2\xc6\xd1\ \xc3\xc6\xcf\xc0\xc4\xb7\xaa\xb4\x96\x8d\x9f\x6b\x69\x7d\x48\x47\ \x58\x39\x38\x49\x32\x32\x43\x35\x36\x49\x3e\x3b\x51\x83\x7a\x89\ \xaa\xa1\xae\xab\xa2\xaf\xab\xa2\xaf\xaa\xa2\xaf\xac\xa3\xb0\xac\ \xa3\xb0\xac\xa4\xb1\xab\xa2\xaf\xab\xa2\xaf\xaa\xa2\xaf\xaa\xa2\ \xb0\xa9\xa3\xb1\xa6\xa2\xb0\xa0\x9d\xae\x78\x89\xa3\x94\x98\xab\ \x97\x99\xac\x5d\x76\x98\x98\x99\xab\x9e\x9e\xae\x9e\x9c\xad\x9d\ \x9c\xac\x9c\x9b\xab\x9d\x9c\xac\x9d\x9b\xad\x8d\x8b\xa3\x7c\x7b\ \x96\x9b\x99\xab\xa3\xa0\xb0\xa8\xa3\xb4\xa8\xa2\xb3\xad\xa6\xb5\ \xb1\xaa\xb7\xb2\xab\xb8\xb2\xab\xb8\xaf\xa9\xb6\xae\xa7\xb4\xaf\ \xa8\xb5\xaf\xa9\xb5\xae\xa8\xb4\xad\xa8\xb4\xad\xa7\xb3\xac\xa6\ \xb3\xad\xa7\xb3\xaf\xa9\xb4\xb1\xab\xb6\xb2\xac\xb7\xb4\xae\xb9\ \xb4\xae\xb9\xb3\xad\xb8\xb4\xae\xb9\xa2\xab\xbc\x9c\xaf\xc3\xbb\ \xbe\xc9\xa9\xa9\xba\x92\x93\xaa\x80\x84\xa2\x5e\x80\xa3\x56\x7f\ \xa2\x6b\x80\x9d\x6d\x81\x9c\x7b\x8d\xa5\x79\x89\xa3\x78\x8c\xa6\ \x64\xa5\xb8\x52\x91\xaa\x48\x74\x96\x41\x77\x9c\x38\x72\x99\x28\ \x6f\x9a\x50\x80\xa5\x60\x8d\xb1\xad\xbc\xcc\x72\x8a\xa5\x3f\x64\ \x8b\x4c\x76\x9d\x46\x6b\x99\x48\x6e\x99\x98\xaa\xc6\xdb\xdd\xe6\ \xd4\xd4\xde\xe3\xe2\xe9\xef\xee\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf6\ \xf6\xf6\xf6\xf6\xf6\xf8\xf8\xf8\xfa\xfa\xfa\xf8\xf8\xf8\xfa\xfa\ \xfa\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xfe\xfe\xfd\xfe\xfd\xfd\xfc\xfc\xfc\xfc\ \xfc\xfc\xfb\xfb\xfb\xfc\xfc\xfc\xf9\xf9\xf9\xf7\xf7\xf7\xf6\xf5\ \xf6\xf0\xef\xef\xae\xac\xb8\x85\x89\x9d\x8f\x91\xa3\x9b\x9a\xab\ \xa4\xa2\xb2\xac\xa9\xb7\xb0\xac\xb9\xae\xaa\xb8\xab\xa8\xb7\xa8\ \xa5\xb4\xa7\xa4\xb4\xa6\xa3\xb2\xa1\xa1\xb1\x9d\x9c\xad\x96\x94\ \xa7\x8c\x8d\xa1\x80\x84\x97\x73\x7a\x8d\x6f\x76\x8a\x67\x6b\x86\ \x50\x4d\x74\x38\x37\x61\x00\x00\x00\xd5\xd0\xd9\xd2\xcc\xd7\xce\ \xc8\xd3\xcb\xc5\xd0\xc8\xc2\xce\xc6\xc0\xcb\xc6\xbf\xca\xc7\xc0\ \xcb\xc9\xc0\xcb\xca\xc1\xcb\xcc\xc1\xc9\xce\xc3\xca\xd1\xc5\xcb\ \xd5\xc9\xcf\xd8\xcd\xd2\xda\xcf\xd2\xdb\xd0\xd4\xd9\xce\xd3\xd6\ \xcb\xd1\xd2\xc7\xcd\xd0\xc5\xcb\xd1\xc5\xca\xd1\xc4\xc8\xd2\xc4\ \xc8\xd0\xc2\xc6\xc6\xb8\xbf\x9f\x95\xa5\x66\x63\x77\x3f\x3e\x50\ \x36\x36\x48\x3b\x3d\x52\x3a\x3c\x55\x63\x5d\x72\xa0\x97\xa4\xac\ \xa3\xaf\xab\xa3\xaf\xab\xa2\xb0\xaa\xa2\xaf\xac\xa3\xb0\xad\xa3\ \xb0\xac\xa3\xb0\xab\xa3\xb0\xa9\xa2\xaf\xa2\x9f\xae\x80\x89\xa2\ \x9c\x9c\xad\x9f\x9e\xae\x46\x77\x9b\x73\x8b\xa5\x98\x9c\xae\x72\ \x83\x9d\x96\x99\xaa\x9b\x9c\xac\x9a\x9b\xac\x9b\x9b\xac\x9c\x9b\ \xac\x9b\x9a\xab\x9f\x9c\xaf\xa2\x9f\xb0\xa6\xa0\xb2\xad\xa7\xb5\ \xac\xa6\xb5\xaa\xa5\xb4\xa9\xa4\xb3\xaa\xa5\xb4\xae\xa8\xb5\xae\ \xa7\xb5\xae\xa7\xb5\xad\xa8\xb6\xac\xa7\xb5\xab\xa6\xb3\xab\xa6\ \xb3\xab\xa6\xb2\xab\xa6\xb2\xab\xa6\xb2\xab\xa7\xb3\xad\xa7\xb4\ \xac\xa7\xb3\xaf\xa9\xb4\xb5\xae\xba\xb6\xb0\xbb\xb2\xad\xb8\xb2\ \xac\xb7\xaf\xab\xb6\xad\xa8\xb5\xae\xa7\xb5\xad\xaa\xb7\xb6\xb6\ \xc3\xb3\xb6\xc4\x95\x9a\xb4\x49\x86\xb0\x40\x87\xb0\x6c\x88\xa4\ \x5b\x79\x95\x52\x73\x91\x55\x78\x9c\x5c\x7a\x9f\x51\x7d\x9e\x55\ \x9b\xb1\x44\x89\xa4\x10\x66\x93\x1c\x6f\x9d\x16\x77\xa7\x4a\x87\ \xb0\x68\x88\xa7\x7a\x96\xb1\x9d\xae\xc0\x37\x66\x8c\x4b\x7c\xa5\ \x5a\x89\xb2\x73\x96\xb9\xb4\xbf\xd3\xdc\xdd\xe6\xe7\xe6\xec\xef\ \xef\xf2\xf3\xf3\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\ \xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\ \xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\ \xfe\xfe\xfe\xfe\xfe\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ \xfc\xfb\xfb\xfb\xf8\xf8\xf8\xf5\xf5\xf5\xf1\xf0\xf1\xe6\xe2\xe7\ \xb2\xb2\xbe\x7c\x82\x97\x87\x8b\x9e\x96\x97\xa8\xa1\x9f\xaf\xaa\ \xa7\xb6\xac\xa9\xb8\xac\xa9\xb7\xaa\xa7\xb6\xa7\xa5\xb4\xa4\xa2\ \xb2\xa3\xa1\xb1\xa1\xa0\xb1\xa0\x9f\xb0\x9c\x9a\xac\x93\x94\xa6\ \x88\x8a\x9e\x7a\x80\x93\x6f\x76\x8a\x6d\x74\x89\x62\x64\x82\x46\ \x44\x6c\x00\x00\x00\xd7\xd1\xdc\xd2\xcc\xd7\xcd\xc7\xd2\xcb\xc5\ \xd0\xc8\xc2\xcd\xc6\xc0\xcb\xc6\xbe\xca\xc7\xbf\xca\xc8\xbf\xca\ \xca\xc0\xca\xcd\xc2\xc9\xcf\xc4\xca\xd3\xc7\xcd\xd5\xc9\xcf\xd8\ \xcc\xd2\xdb\xd0\xd3\xdc\xd1\xd4\xdc\xd1\xd4\xdb\xd0\xd3\xd8\xcc\ \xd2\xd4\xca\xcf\xd2\xc7\xcd\xd1\xc5\xcb\xd1\xc4\xca\xd0\xc3\xc8\ \xce\xc0\xc6\xc6\xba\xc1\x93\x89\x99\x51\x4e\x62\x45\x44\x58\x4c\ \x4d\x62\x52\x54\x6f\x54\x56\x72\x82\x79\x8d\xaa\xa0\xae\xac\xa3\ \xb0\xab\xa3\xaf\xab\xa2\xaf\xab\xa2\xaf\xac\xa3\xb0\xac\xa3\xb0\ \xaa\xa2\xaf\xaa\xa2\xaf\xa0\x9e\xae\x79\x88\xa4\x9a\x9b\xad\x94\ \x9a\xac\x3c\x7a\x92\x40\x79\x8f\x91\x9a\xac\x9f\xa1\xb1\x9f\xa0\ \xb0\x9d\x9f\xad\x9a\x9c\xad\x95\x97\xaa\x9d\x9c\xae\xab\xa7\xb7\ \xb5\xaf\xbc\xb6\xb0\xbc\xb3\xad\xba\xb1\xaa\xb7\xae\xa7\xb6\xab\ \xa6\xb5\xaa\xa5\xb4\xaa\xa5\xb4\xae\xaa\xb7\xae\xa9\xb7\xac\xa7\ \xb4\xaa\xa5\xb4\xaa\xa6\xb5\xab\xa7\xb3\xab\xa7\xb3\xaa\xa6\xb2\ \xaa\xa6\xb2\xaa\xa5\xb2\xaa\xa6\xb3\xac\xa6\xb3\xac\xa8\xb4\xad\ \xa8\xb5\xba\xb6\xc0\xbe\xba\xc3\xb0\xac\xb8\xa8\xa5\xb2\xa8\xa5\ \xb4\xa7\xa4\xb3\xa8\xa4\xb3\xa8\xa4\xb3\xa8\xa5\xb4\xa8\xa7\xb6\ \xae\xb1\xc0\xa5\xb0\xc2\x86\x97\xb3\x6f\x84\xa2\x76\x8e\xa9\x6e\ \x8c\xab\x22\x72\x9f\x1f\x74\xa1\x35\x74\x9d\x3e\x77\x99\x44\x8e\ \xa6\x34\x81\xa0\x1e\x6d\x99\x18\x76\xa8\x27\x69\x93\x5a\x81\xa2\ \x5d\x84\xa5\x9b\xae\xc3\x49\x79\x9d\x60\x92\xb4\x73\x9d\xbd\x9b\ \xaf\xca\xc3\xcb\xdb\xe5\xe5\xec\xec\xeb\xef\xf3\xf2\xf3\xf6\xf6\ \xf6\xf8\xf8\xf8\xf9\xf9\xf9\xf8\xf8\xf8\xfa\xfa\xfa\xfc\xfc\xfc\ \xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfe\xfe\xfe\xfe\xfe\xfe\xfe\ \xfe\xfe\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfc\xfc\ \xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\ \xfa\xfa\xfa\xfa\xfa\xfa\xf9\xf8\xf9\xf5\xf4\xf5\xa8\xa7\xb3\x71\ \x7a\x90\x7f\x85\x98\x8d\x91\xa3\x9c\x9b\xac\xa3\xa2\xb1\xa7\xa7\ \xb5\xa9\xa6\xb5\xa6\xa5\xb4\xa3\xa2\xb2\xa1\xa1\xb1\xa0\xa0\xb1\ \xa0\x9f\xb0\xa1\x9f\xb1\x9e\x9d\xb0\x98\x98\xaa\x8e\x91\xa3\x81\ \x86\x99\x73\x79\x8c\x6b\x72\x86\x6d\x73\x89\x5e\x63\x80\x00\x00\ \x00\xd7\xd1\xdc\xd2\xcc\xd7\xcf\xc9\xd4\xcb\xc5\xd0\xc9\xc3\xce\ \xc8\xc1\xcc\xc8\xc0\xcb\xc7\xbe\xca\xc8\xbf\xca\xca\xbf\xc9\xcd\ \xc1\xc9\xd1\xc6\xcc\xd3\xc7\xcd\xd5\xc9\xcf\xd7\xcc\xd0\xda\xcf\ \xd2\xdc\xd1\xd4\xdc\xd1\xd4\xdd\xd2\xd5\xdc\xd1\xd5\xd9\xcf\xd4\ \xd5\xcb\xd1\xd2\xc8\xce\xd2\xc7\xcd\xd1\xc5\xcb\xce\xc2\xc8\xcb\ \xbf\xc5\xaf\xa3\xaf\x75\x6e\x82\x67\x65\x7a\x70\x6e\x83\x76\x77\ \x8e\x66\x69\x82\x67\x67\x7e\x9c\x94\xa2\xad\xa4\xaf\xad\xa4\xb0\ \xac\xa3\xb0\xac\xa4\xb0\xad\xa4\xb0\xab\xa3\xaf\xac\xa3\xb0\xa9\ \xa2\xaf\xa9\xa3\xb0\xa8\xa2\xb0\xa7\xa2\xb1\x6b\x8a\x9d\x36\x7b\ \x8e\x45\x7f\x91\x8a\x99\xa9\x95\x9a\xac\x95\x9a\xac\x98\x9c\xad\ \x9c\x9e\xaf\xa8\xa7\xb5\xbb\xb6\xc2\xbe\xb8\xc3\xbc\xb6\xc1\xba\ \xb4\xbf\xb7\xb0\xbb\xb3\xad\xb9\xb0\xa9\xb6\xae\xa7\xb6\xab\xa5\ \xb4\xaa\xa5\xb5\xb0\xab\xb8\xb0\xab\xb7\xae\xaa\xb7\xac\xa7\xb5\ \xac\xa7\xb5\xab\xa7\xb3\xab\xa6\xb2\xaa\xa6\xb2\xab\xa6\xb2\xab\ \xa7\xb3\xaa\xa6\xb2\xaa\xa7\xb2\xaa\xa6\xb2\xab\xa7\xb3\xbc\xb8\ \xc1\xcb\xc9\xd0\xb4\xb0\xbc\xa9\xa6\xb4\xac\xa8\xb5\xaf\xab\xb8\ \xae\xab\xb9\xab\xa8\xb7\xa8\xa5\xb5\xa7\xa4\xb4\xa0\x9f\xb1\x9c\ \x9d\xb0\x9b\xa2\xb6\x96\xa1\xb6\x79\x8c\xa8\x66\x80\xa1\x4e\x87\ \xaf\x48\x85\xad\x49\x78\x9e\x4a\x76\x99\x32\x74\x98\x30\x7c\x9e\ \x1b\x82\xb3\x46\x98\xc5\x79\x9e\xba\x56\x80\xa1\x51\x7e\x9f\x76\ \x97\xb6\x51\x83\xa8\x64\x8f\xb5\x9d\xb1\xcc\xc9\xd1\xdf\xe6\xe6\ \xec\xed\xec\xf0\xf3\xf3\xf3\xf5\xf5\xf5\xf4\xf4\xf4\xf5\xf5\xf5\ \xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfc\xfc\xfc\xfc\ \xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xff\xff\ \xff\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\ \xfe\xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfa\xf9\xfa\xf8\xf8\xf8\xf9\ \xf9\xf9\xf6\xf6\xf6\xbd\xba\xc0\x6b\x72\x87\x68\x73\x89\x76\x7e\ \x92\x86\x8b\x9d\x94\x96\xa7\x9d\x9d\xad\xa3\xa2\xb2\xa4\xa4\xb3\ \xa3\xa2\xb2\xa1\xa1\xb1\x9f\x9f\xb0\x9d\x9e\xb0\x9d\x9e\xb0\x9f\ \x9f\xb1\xa0\xa0\xb1\x9c\x9c\xae\x94\x95\xa7\x88\x8c\x9e\x7a\x80\ \x93\x6b\x73\x85\x6a\x72\x87\x68\x74\x8a\x00\x00\x00\xd7\xd1\xdc\ \xd2\xcc\xd7\xce\xc8\xd3\xcb\xc5\xd0\xc9\xc3\xce\xc9\xc2\xcd\xc9\ \xc1\xcc\xc8\xbf\xca\xc9\xbf\xca\xcb\xc0\xc9\xcf\xc2\xc9\xd2\xc6\ \xcc\xd3\xc7\xcd\xd4\xc9\xcf\xd6\xcb\xd0\xd8\xcd\xd1\xda\xcf\xd3\ \xdc\xd1\xd4\xde\xd2\xd6\xdd\xd3\xd6\xdc\xd2\xd7\xda\xd0\xd6\xd6\ \xcc\xd2\xd3\xc8\xce\xd1\xc7\xcd\xcf\xc5\xcb\xcc\xc1\xc9\xc3\xb8\ \xc1\xae\xa5\xb3\xa3\x9b\xac\x9b\x96\xa8\x91\x8f\xa1\x79\x7a\x90\ \x68\x6a\x82\x84\x7f\x93\xa7\x9d\xab\xad\xa4\xb0\xae\xa5\xb1\xad\ \xa4\xb1\xad\xa4\xb0\xad\xa4\xb1\xac\xa3\xb0\xab\xa3\xb0\xa9\xa2\ \xb0\xa9\xa2\xb0\xa6\xa1\xaf\x86\x93\xa5\x64\x86\x9b\x53\x88\x9b\ \x56\x87\x9c\x82\x93\xa6\x95\x99\xac\x9d\x9f\xb0\xb6\xb2\xbe\xc0\ \xba\xc5\xbd\xb7\xc2\xbc\xb6\xc1\xba\xb4\xbf\xba\xb4\xbe\xb7\xb1\ \xbc\xb5\xae\xba\xb3\xac\xb9\xb0\xa9\xb7\xae\xa7\xb6\xae\xa7\xb7\ \xb2\xac\xb9\xb3\xac\xb9\xb3\xac\xb9\xb2\xac\xb8\xb1\xab\xb8\xb0\ \xab\xb7\xb0\xa9\xb6\xae\xa8\xb4\xad\xa6\xb4\xac\xa6\xb3\xac\xa8\ \xb4\xac\xa7\xb3\xaa\xa6\xb2\xa9\xa6\xb2\xb0\xab\xb8\xb8\xb3\xbe\ \xb5\xb1\xbd\xb6\xb2\xbe\xb3\xaf\xbb\xb0\xac\xb8\xae\xaa\xb7\xaa\ \xa8\xb7\xa8\xa5\xb5\x9d\x9f\xb2\xa3\xa2\xb3\x9f\x9f\xb1\x91\x91\ \xab\x85\x88\xa6\x7d\x87\xa6\x77\x86\xa6\x54\x79\xa0\x27\x75\xa5\ \x48\x7a\xa1\x44\x71\x96\x36\x69\x90\x2b\x6a\x94\x23\x85\xb8\x18\ \x76\xa7\x50\x7c\x97\x8c\xa4\xb5\x57\x83\x9f\x3c\x74\x96\x5c\x89\ \xb1\x92\xa8\xc7\xc2\xca\xd9\xdd\xdf\xe7\xeb\xea\xf0\xf0\xef\xf1\ \xef\xef\xf1\xf1\xf0\xf2\xf0\xf0\xf2\xf1\xf0\xf2\xf1\xf1\xf2\xf1\ \xf0\xf2\xf5\xf5\xf5\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\ \xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\ \xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfe\ \xfe\xfe\xfd\xfd\xfd\xf5\xf4\xf4\xcb\xc8\xce\xc1\xbf\xc7\x9d\x9a\ \xa7\x73\x77\x8d\x67\x70\x87\x66\x71\x87\x6f\x78\x8d\x7e\x85\x98\ \x8c\x90\xa2\x97\x98\xaa\x9e\x9e\xaf\xa1\xa0\xb2\x9f\x9f\xb1\x9c\ \x9d\xb1\x9b\x9c\xb0\x99\x9b\xaf\x99\x9b\xaf\x9c\x9e\xb1\xa0\xa0\ \xb2\x9f\x9e\xb0\x99\x9a\xab\x8b\x8f\xa0\x7c\x82\x93\x6c\x75\x86\ \x61\x6d\x81\x5e\x74\x8a\x00\x00\x00\xd7\xd1\xdc\xd3\xcd\xd8\xcf\ \xc9\xd4\xcb\xc5\xd0\xcb\xc3\xce\xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\ \xca\xca\xc0\xca\xcc\xc1\xc9\xce\xc4\xca\xd2\xc6\xcc\xd3\xc7\xcd\ \xd4\xc8\xce\xd3\xc9\xcf\xd5\xcb\xd1\xd8\xce\xd3\xda\xd0\xd6\xdb\ \xd1\xd7\xdd\xd3\xd8\xde\xd4\xda\xde\xd4\xda\xdb\xd1\xd7\xd7\xcd\ \xd3\xd4\xca\xd0\xd0\xc5\xcd\xcd\xc2\xca\xcb\xc0\xc8\xc8\xbd\xc5\ \xc4\xbb\xc5\xc0\xb8\xc3\xbb\xb5\xc1\xa9\xa6\xb6\x8d\x8b\xa1\x8e\ \x89\x9e\x9c\x92\xa3\xac\xa2\xaf\xae\xa5\xb1\xae\xa5\xb2\xae\xa5\ \xb1\xad\xa4\xb1\xad\xa4\xb1\xab\xa3\xb0\xaa\xa3\xb0\xa9\xa2\xaf\ \xa9\xa2\xb0\xa0\x9d\xae\x79\x85\x9e\x7a\x91\xa8\x1a\x6a\x8f\x6c\ \x8c\xa5\xae\xad\xbc\xbd\xb7\xc3\xbd\xb6\xc3\xbd\xb7\xc2\xbb\xb4\ \xbf\xba\xb4\xbf\xba\xb2\xbe\xb8\xb1\xbc\xb7\xae\xbb\xb7\xae\xbb\ \xb5\xae\xbb\xb4\xad\xba\xb4\xad\xba\xb3\xac\xb9\xb3\xac\xb9\xb3\ \xac\xb9\xb3\xad\xb9\xb3\xad\xb8\xb3\xad\xb8\xb4\xae\xb9\xb5\xaf\ \xba\xb4\xae\xb9\xb1\xab\xb8\xb0\xaa\xb6\xb0\xaa\xb5\xb0\xa9\xb5\ \xae\xaa\xb5\xb0\xab\xb6\xb2\xae\xba\xc0\xbc\xc6\xcb\xc8\xd1\xc2\ \xbf\xc9\xb6\xb2\xbd\xb1\xad\xb9\xaf\xab\xb7\xad\xa9\xb7\x95\xa0\ \xb5\x24\x73\xa1\x7b\x97\xb4\xaa\xa7\xb6\x97\x9d\xb3\x5a\x85\xab\ \x89\x8f\xad\x76\x84\xa8\x2e\x7d\xad\x11\x83\xba\x45\x79\xa1\x42\ \x6e\x93\x31\x66\x8f\x18\x64\x92\x15\x7d\xb1\x0b\x80\xb9\x37\x81\ \xaf\x3f\x70\x8e\x5e\x88\xa6\x48\x80\xa2\x6e\x96\xba\xaf\xbb\xd1\ \xc9\xce\xda\xde\xdf\xe6\xe4\xe5\xea\xe8\xe6\xeb\xe6\xe5\xea\xe6\ \xe4\xea\xe7\xe6\xeb\xe9\xe8\xec\xea\xe9\xee\xee\xed\xf0\xf4\xf4\ \xf4\xf9\xf9\xf9\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\ \xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\ \xfd\xfd\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfc\xfc\ \xfc\xf7\xf6\xf6\xbb\xb6\xbf\x8e\x8e\xa1\x8d\x8e\xa1\x7f\x83\x96\ \x6f\x77\x8c\x6b\x74\x8a\x6f\x78\x8c\x7a\x81\x94\x86\x8b\x9e\x90\ \x94\xa6\x98\x9a\xad\x9c\x9e\xb1\x9a\x9c\xaf\x97\x9a\xae\x96\x99\ \xae\x95\x98\xae\x95\x9a\xae\x99\x9b\xaf\x9e\x9f\xb1\x9e\x9d\xaf\ \x81\x82\x97\x61\x65\x7e\x4a\x4f\x6d\x3d\x45\x63\x3b\x4a\x67\x35\ \x57\x72\x00\x00\x00\xd7\xd1\xdc\xd4\xce\xd9\xcf\xc9\xd4\xcb\xc5\ \xd0\xcc\xc4\xcf\xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\xca\xc9\xc0\xc9\ \xcc\xc1\xc9\xce\xc4\xcb\xd1\xc5\xcb\xd1\xc6\xcc\xd2\xc8\xce\xd2\ \xc8\xce\xd4\xca\xd0\xd6\xcd\xd3\xd8\xcf\xd5\xdb\xd1\xd7\xdd\xd3\ \xd9\xdf\xd5\xdb\xe0\xd6\xdb\xde\xd4\xda\xdb\xd1\xd7\xd7\xcd\xd4\ \xd2\xc8\xd0\xce\xc5\xcc\xca\xc0\xc8\xc8\xbe\xc7\xc7\xbd\xc6\xc6\ \xbe\xc8\xc7\xbf\xc9\xca\xc2\xcc\xc7\xc0\xca\xc6\xbf\xcb\xbd\xb7\ \xc3\xad\xa4\xb1\xae\xa4\xb0\xad\xa6\xb2\xae\xa5\xb1\xab\xa3\xb1\ \xad\xa4\xb1\xad\xa4\xb1\xab\xa2\xb0\xab\xa2\xb0\xa9\xa1\xaf\xa8\ \xa1\xb0\xa6\xa0\xaf\x9b\x9d\xaf\x5d\x83\xa7\xa7\xab\xbd\xbf\xbb\ \xc5\xbd\xb8\xc4\xbc\xb6\xc1\xbb\xb4\xc0\xba\xb4\xbf\xba\xb2\xbd\ \xb9\xb1\xbc\xb8\xaf\xbb\xb8\xaf\xbc\xb4\xad\xba\xb4\xad\xba\xb4\ \xad\xba\xb4\xad\xba\xb3\xac\xb9\xb5\xaf\xbb\xb6\xb0\xbc\xb6\xb0\ \xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xb0\xba\ \xb8\xb2\xbd\xb6\xb0\xbb\xb5\xaf\xba\xb5\xaf\xba\xb4\xaf\xba\xb4\ \xb0\xbb\xb9\xb5\xbf\xcc\xc8\xd1\xe2\xe0\xe5\xdc\xda\xe1\xc7\xc3\ \xcd\xba\xb6\xc2\xb5\xb1\xbc\xb1\xaf\xbb\xac\xae\xbc\x66\xa3\xc7\ \x9d\xb5\xca\xb1\xb1\xc0\x88\xa3\xbf\x1b\x8c\xbf\x67\x9d\xc0\x8d\ \x95\xb1\x66\x83\xa8\x77\x98\xbb\x4c\x77\xa1\x42\x74\x9d\x27\x6c\ \x99\x04\x69\x9e\x14\x7d\xb1\x32\x8b\xb6\xc9\xd4\xdf\xa1\xb8\xcd\ \x54\x80\x9e\x44\x7e\xa2\x91\xac\xcc\xb4\xbe\xd0\xbf\xc5\xd1\xcd\ \xce\xd9\xd5\xd6\xde\xdf\xdf\xe5\xe1\xe0\xe6\xe4\xe2\xe8\xe4\xe3\ \xe8\xe5\xe3\xe8\xe8\xe7\xeb\xee\xed\xf0\xf7\xf7\xf7\xfb\xfb\xfc\ \xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\ \xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfd\xfd\xfd\xfe\xfe\ \xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\xf9\xf9\xf9\xd8\xd3\xd5\ \x96\x94\xa3\x94\x94\xa6\x93\x93\xa5\x89\x8c\x9e\x7b\x81\x94\x75\ \x7d\x91\x75\x7d\x91\x7b\x82\x95\x81\x88\x9b\x8b\x90\xa3\x92\x97\ \xaa\x97\x9b\xae\x95\x99\xae\x91\x96\xad\x92\x96\xad\x91\x96\xad\ \x93\x97\xaf\x97\x9a\xaf\x9d\x9e\xb1\x6d\x6e\x85\x2f\x35\x57\x20\ \x2a\x51\x1d\x27\x4f\x17\x22\x48\x16\x26\x4a\x1b\x40\x5d\x00\x00\ \x00\xd8\xd2\xdd\xd3\xcd\xd8\xd0\xca\xd5\xcd\xc6\xd1\xcb\xc3\xce\ \xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\xca\xc9\xc0\xc9\xcc\xc1\xc9\xce\ \xc4\xcb\xcf\xc5\xcb\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\xd3\xca\ \xd1\xd5\xcd\xd4\xd7\xd0\xd5\xda\xd2\xd8\xdc\xd4\xd9\xde\xd6\xdb\ \xe0\xd6\xdc\xe0\xd6\xdc\xdd\xd4\xda\xda\xd2\xd7\xd5\xce\xd4\xcf\ \xc8\xcf\xcb\xc2\xca\xc7\xbe\xc6\xc5\xbc\xc6\xc5\xbc\xc6\xc6\xbd\ \xc7\xc7\xbe\xc8\xca\xc2\xcc\xce\xc6\xcf\xd2\xcb\xd3\xc3\xbc\xc8\ \xb4\xab\xb8\xaf\xa7\xb3\xa7\xa0\xaf\x75\x7f\x9b\xa0\x9d\xae\xac\ \xa4\xb1\xac\xa4\xb1\xac\xa3\xb0\xaa\xa2\xb0\xa8\xa1\xb0\xa7\xa1\ \xb0\xa5\xa0\xaf\xb5\xb0\xbd\xc2\xbe\xc9\xbe\xba\xc6\xbc\xb8\xc4\ \xbb\xb5\xc0\xbb\xb6\xc0\xba\xb4\xbf\xbb\xb3\xbe\xba\xb2\xbd\xba\ \xb2\xbd\xba\xb2\xbd\xb9\xb1\xbd\xb8\xb2\xbd\xb7\xb1\xbc\xb7\xb1\ \xbc\xb6\xaf\xbb\xb6\xb0\xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb8\xb1\xbc\ \xb9\xb2\xbd\xb9\xb2\xbd\xb9\xb4\xbe\xb9\xb4\xbe\xba\xb5\xbf\xbb\ \xb6\xbf\xbc\xb7\xc0\xbc\xb7\xbf\xbe\xb9\xc3\xc2\xbe\xc7\xd0\xce\ \xd5\xe6\xe5\xe9\xf4\xf4\xf4\xf4\xf4\xf4\xeb\xea\xed\xdd\xda\xe0\ \x99\xaf\xc5\x2e\x80\xae\xac\xb8\xca\xc1\xb9\xc5\xb7\xb4\xc1\xa4\ \xad\xbe\xa5\xae\xc1\xa1\xbc\xd2\xa4\xb2\xc7\x92\x9f\xb8\x7b\x8f\ \xaf\x69\x82\xa8\x4f\x8a\xb6\x1d\x7e\xaf\x19\x83\xb9\x17\x7e\xb6\ \x38\x77\x9f\x21\x56\x77\x4a\x72\x8e\x8b\xa7\xbd\x82\xa9\xca\x6c\ \x9e\xc3\x81\xa3\xc5\xaa\xb6\xcb\xc6\xcc\xd7\xc9\xcb\xd6\xd3\xd2\ \xdb\xde\xdc\xe2\xe2\xe0\xe6\xe3\xe1\xe6\xe3\xe1\xe6\xe4\xe3\xe8\ \xe7\xe5\xeb\xeb\xe9\xee\xef\xee\xf1\xf4\xf3\xf5\xf7\xf8\xf7\xf9\ \xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\ \xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xff\xff\xff\ \xfe\xfe\xfe\xfc\xfd\xfc\xf2\xef\xef\xac\xa6\xb1\x95\x95\xa6\x95\ \x95\xa5\x95\x95\xa6\x93\x93\xa5\x87\x8a\x9c\x7f\x84\x97\x7d\x83\ \x96\x7f\x85\x98\x82\x88\x9c\x87\x8d\xa0\x8c\x92\xa6\x92\x97\xab\ \x90\x96\xac\x8d\x93\xab\x8c\x92\xaa\x8c\x92\xab\x8f\x94\xac\x95\ \x98\xaf\x9b\x9c\xb1\x6a\x6d\x87\x1a\x24\x49\x0f\x19\x3e\x0e\x18\ \x3d\x11\x1f\x44\x1a\x38\x57\x1e\x50\x67\x00\x00\x00\xd7\xd1\xdc\ \xd3\xcd\xd8\xcf\xc9\xd4\xce\xc6\xd1\xcc\xc3\xce\xca\xc2\xcd\xc9\ \xc1\xcc\xc8\xc0\xca\xca\xc1\xca\xcb\xc2\xc9\xce\xc3\xcb\xd0\xc5\ \xcd\xd2\xc8\xce\xd3\xc9\xcf\xd3\xc9\xd0\xd4\xcc\xd2\xd6\xcf\xd5\ \xd8\xd0\xd7\xda\xd2\xd9\xdc\xd5\xda\xdd\xd5\xda\xde\xd6\xdb\xde\ \xd7\xdc\xdd\xd7\xdc\xdc\xd5\xda\xd9\xd1\xd8\xd4\xcc\xd3\xcd\xc5\ \xcd\xc7\xbe\xc8\xc4\xbb\xc5\xc2\xb9\xc3\xc2\xb9\xc4\xc3\xba\xc5\ \xc3\xbb\xc5\xc6\xbe\xc8\xcc\xc4\xcc\xd0\xc8\xd2\xcf\xc7\xd1\xc2\ \xbb\xc6\xaa\xa5\xb4\x8d\x91\xa8\xa7\xa2\xb2\xab\xa5\xb2\xab\xa4\ \xb1\xab\xa4\xb1\xab\xa3\xb2\xab\xa5\xb2\xa6\xa1\xb1\xaa\xa5\xb5\ \xc7\xc3\xce\xc8\xc4\xcf\xc3\xc0\xca\xc1\xbe\xc9\xbe\xb9\xc4\xbb\ \xb5\xc0\xba\xb4\xbf\xbc\xb4\xbf\xbd\xb5\xc0\xbd\xb5\xc0\xbc\xb4\ \xbf\xba\xb3\xbe\xb9\xb3\xbe\xb9\xb3\xbe\xb8\xb2\xbd\xba\xb3\xbd\ \xb8\xb2\xbd\xb9\xb2\xbd\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb4\xbd\xba\ \xb4\xbf\xba\xb4\xbe\xba\xb4\xbe\xbb\xb5\xbf\xbc\xb6\xc0\xbe\xb9\ \xc3\xc2\xbf\xc8\xcf\xcc\xd5\xe1\xde\xe4\xef\xee\xf0\xf2\xf2\xf3\ \xf3\xf2\xf3\xf0\xf0\xf2\xef\xef\xf1\xed\xea\xee\xc3\xd0\xdf\x7e\ \xb1\xd1\xb4\xc1\xd0\xc9\xc7\xd1\xb7\xc1\xcf\x22\x79\xa7\x85\xac\ \xc9\xb4\xb7\xc6\xaf\xb6\xc6\xa3\xac\xc0\x92\x9f\xb9\x84\x99\xb8\ \x57\x8e\xb8\x03\x7a\xb2\x47\xa4\xd5\x6b\x94\xba\x6f\x90\xb5\x72\ \x98\xbc\x64\x8d\xb1\x53\x89\xb0\x65\x9e\xc4\x67\x9e\xc2\x6d\x97\ \xbb\x99\xac\xc4\xcb\xcf\xd9\xde\xdf\xe5\xde\xdd\xe4\xe2\xe0\xe6\ \xe3\xe1\xe7\xe6\xe4\xea\xe8\xe6\xec\xe8\xe7\xec\xe9\xe8\xed\xef\ \xee\xf1\xef\xef\xf1\xef\xed\xf1\xf1\xf0\xf2\xf3\xf2\xf3\xf6\xf6\ \xf6\xf7\xf7\xf7\xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfa\ \xf9\xf8\xc0\xba\xc0\x99\x97\xa7\x98\x98\xa8\x98\x97\xa7\x97\x97\ \xa7\x97\x97\xa8\x90\x91\xa3\x88\x8b\x9d\x84\x89\x9b\x83\x89\x9c\ \x84\x8a\x9d\x85\x8b\xa0\x87\x8e\xa2\x8b\x91\xa7\x8b\x91\xa9\x88\ \x8e\xa8\x85\x8d\xa7\x84\x8d\xa8\x8a\x8f\xa9\x90\x93\xac\x99\x9a\ \xaf\x8a\x8c\xa4\x30\x3d\x65\x13\x20\x48\x17\x26\x4f\x23\x3f\x60\ \x2d\x59\x71\x2a\x5c\x72\x00\x00\x00\xd7\xd1\xdc\xd3\xcd\xd8\xd0\ \xca\xd5\xcd\xc7\xd2\xcc\xc5\xd0\xca\xc3\xce\xc8\xc0\xcb\xc9\xc1\ \xcb\xca\xc1\xcb\xcd\xc4\xcb\xcf\xc5\xcd\xd1\xc7\xce\xd3\xc9\xcf\ \xd5\xcb\xd1\xd4\xcc\xd2\xd6\xce\xd4\xd8\xd0\xd7\xda\xd2\xd9\xdc\ \xd4\xda\xdc\xd4\xda\xde\xd7\xdc\xdd\xd6\xdb\xdd\xd7\xdb\xde\xd7\ \xdc\xdd\xd6\xdb\xdb\xd3\xda\xd7\xd0\xd7\xd2\xca\xd2\xc9\xc1\xca\ \xc3\xba\xc4\xc0\xb6\xc1\xbf\xb7\xc2\xc0\xb7\xc2\xbf\xb6\xc1\xc0\ \xb6\xc1\xc4\xbb\xc5\xcb\xc2\xcb\xd0\xc8\xcf\xd4\xcd\xd4\xc2\xbb\ \xc8\xad\xa6\xb5\xad\xa6\xb5\xaa\xa5\xb3\xac\xa5\xb3\xa9\xa3\xb2\ \xa8\xa2\xb1\x9c\x9d\xaf\x4f\x70\x97\x9c\xa4\xb9\xd1\xce\xd8\xcd\ \xc9\xd4\xcc\xc8\xd3\xcb\xc7\xd1\xc5\xc1\xcc\xbe\xb9\xc4\xba\xb4\ \xbf\xba\xb4\xbf\xb9\xb3\xbe\xbb\xb4\xbe\xbd\xb4\xbe\xbc\xb5\xbf\ \xbd\xb6\xc0\xbc\xb5\xbf\xba\xb5\xbf\xba\xb4\xbf\xb8\xb2\xbd\xb9\ \xb2\xbd\xb8\xb2\xbd\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb3\ \xbe\xb9\xb3\xbe\xb9\xb3\xbe\xbb\xb5\xc0\xc3\xbf\xc9\xce\xcb\xd4\ \xd8\xd5\xdd\xe3\xe1\xe6\xe7\xe5\xea\xe6\xe4\xe8\xe3\xe0\xe5\xdf\ \xdc\xe1\xdc\xd9\xe0\xde\xdc\xe2\xdf\xde\xe3\xd4\xd2\xdb\xc7\xc6\ \xcf\xbf\xbc\xc6\xa6\xb3\xc6\x52\xac\xdb\xad\xca\xdf\xd3\xd8\xe2\ \xc3\xca\xd9\xb7\xc1\xd3\xb1\xbd\xcf\xb0\xbc\xce\x8e\xb4\xd0\x2d\ \xa0\xd8\xb9\xd2\xe4\xda\xdf\xe7\xc1\xcb\xda\xad\xbf\xd3\x85\xa9\ \xcf\x78\xaa\xd0\x65\x9d\xc4\x50\x88\xb3\x67\x95\xb8\x91\xaa\xc2\ \xc9\xd0\xdb\xeb\xea\xef\xeb\xe9\xee\xed\xed\xef\xec\xeb\xef\xec\ \xeb\xef\xef\xee\xf1\xef\xef\xf1\xf2\xf1\xf3\xf5\xf5\xf5\xf8\xf8\ \xf8\xf8\xf8\xf8\xf5\xf5\xf5\xf3\xf3\xf3\xf4\xf4\xf4\xf7\xf7\xf7\ \xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xff\xff\xff\xfe\ \xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xe6\xe3\xe3\xb0\xac\xb6\x99\x98\ \xa8\x98\x98\xa8\x99\x99\xa9\x9a\x9a\xaa\x99\x99\xa9\x99\x99\xa9\ \x97\x97\xa8\x90\x92\xa4\x8a\x8e\xa0\x85\x8b\x9e\x86\x8c\xa0\x85\ \x8c\xa0\x82\x89\xa0\x84\x8b\xa3\x85\x8c\xa6\x80\x89\xa4\x7f\x86\ \xa4\x7e\x87\xa5\x83\x8a\xa7\x8b\x90\xaa\x96\x98\xae\x95\x96\xab\ \x73\x7a\x9a\x5f\x67\x8b\x67\x74\x90\x56\x6f\x87\x3a\x64\x7b\x35\ \x63\x7a\x00\x00\x00\xd9\xd4\xdf\xd6\xd0\xdb\xd3\xcd\xd8\xd0\xca\ \xd5\xce\xc8\xd3\xcb\xc6\xd1\xcb\xc3\xcf\xcb\xc3\xce\xcc\xc3\xce\ \xce\xc6\xce\xd0\xc8\xcf\xd3\xc8\xd0\xd4\xc9\xd0\xd5\xcc\xd2\xd7\ \xcd\xd3\xd7\xcf\xd6\xda\xd2\xd9\xdc\xd5\xda\xdd\xd6\xdb\xde\xd7\ \xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd6\xdc\xde\xd6\xdc\xdd\xd6\xdc\ \xdd\xd5\xdc\xda\xd3\xda\xd5\xce\xd5\xce\xc6\xce\xc5\xbc\xc6\xbf\ \xb7\xc1\xbf\xb6\xc0\xc0\xb7\xc1\xbf\xb5\xbf\xc0\xb5\xbf\xc2\xb8\ \xc1\xc7\xbe\xc6\xcc\xc2\xca\xd1\xc9\xd0\xd4\xcd\xd5\xbf\xb9\xc6\ \x89\x92\xad\x75\x85\xa5\xaf\xa8\xb6\xae\xa7\xb5\xac\xa6\xb6\x9c\ \x9e\xb3\x69\x81\xa3\xa6\xa9\xbc\xd5\xd2\xdb\xd3\xd0\xd8\xd0\xcc\ \xd6\xcf\xcc\xd5\xce\xca\xd3\xc0\xbc\xc7\xb9\xb4\xbe\xb6\xaf\xbb\ \xb4\xae\xb9\xb4\xad\xb8\xb8\xb0\xbb\xb8\xb1\xbd\xba\xb3\xbe\xba\ \xb3\xbe\xba\xb4\xbf\xbb\xb5\xbf\xba\xb4\xbf\xb9\xb3\xbe\xb9\xb3\ \xbe\xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb1\xbc\xb5\xaf\xba\xb4\xaf\xba\ \xb3\xaf\xba\xb3\xaf\xbb\xbc\xb8\xc3\xc7\xc4\xcd\xcd\xca\xd0\xcd\ \xc8\xd0\xcc\xc8\xd0\xcf\xcb\xd2\xd2\xcf\xd6\xd3\xd1\xd8\xdc\xd9\ \xe0\xde\xdb\xe2\xe2\xe0\xe6\xe2\xe0\xe5\xde\xdc\xe2\xd2\xd1\xd9\ \xc3\xc0\xcd\xbe\xb6\xc2\xb6\xb1\xbc\xaf\xac\xba\xa0\xa4\xb8\x90\ \x95\xb0\x72\x76\x9c\x63\x6e\x93\x4e\x60\x8c\x4e\x67\x94\x51\x6f\ \x9c\x88\x9a\xbd\xa3\xb2\xd3\x97\xad\xd6\x8c\xac\xd5\x75\xa3\xcc\ \x5d\x94\xbb\x4b\x83\xb1\x65\x94\xb7\x93\xad\xc3\xd1\xd6\xdf\xed\ \xec\xef\xf2\xf1\xf2\xf5\xf5\xf5\xf4\xf4\xf4\xf1\xf0\xf2\xf1\xf0\ \xf2\xf3\xf2\xf3\xf5\xf5\xf5\xf8\xf8\xf8\xfb\xfb\xfb\xfc\xfc\xfc\ \xfb\xfb\xfb\xfa\xfa\xfa\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\xfa\xfb\ \xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfd\xfc\xf1\xf1\xf0\xc9\xce\ \xcd\x87\x95\x97\x8d\x91\x9f\x99\x98\xa9\x93\x94\xa4\x90\x93\xa4\ \x96\x97\xa7\x9a\x9a\xaa\x9b\x9b\xab\x9c\x9b\xab\x9b\x9b\xab\x98\ \x98\xa9\x7c\x84\x99\x68\x77\x8e\x76\x81\x96\x7e\x87\x9c\x80\x87\ \x9f\x7e\x86\x9e\x7e\x86\xa2\x7d\x86\xa3\x7a\x84\xa1\x7a\x84\xa2\ \x81\x88\xa5\x8c\x90\xaa\x95\x97\xad\x9d\x9c\xb0\x9d\x9d\xaf\x9c\ \x9c\xad\x99\x9a\xab\x6b\x7a\x92\x41\x65\x7e\x39\x64\x7c\x00\x00\ \x00\xdc\xd6\xe0\xd9\xd3\xde\xd6\xd0\xdb\xd4\xcd\xd9\xd2\xcc\xd7\ \xcf\xc9\xd4\xcd\xc7\xd2\xce\xc6\xd0\xcf\xc7\xd0\xd1\xc8\xd1\xd1\ \xc9\xd0\xd3\xca\xd1\xd5\xcb\xd1\xd7\xcd\xd3\xd8\xcf\xd5\xd9\xd1\ \xd7\xdb\xd4\xd9\xdd\xd6\xdb\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd8\xdd\ \xdf\xd7\xdd\xde\xd6\xdd\xdd\xd5\xdd\xdd\xd5\xdc\xdc\xd5\xdc\xdb\ \xd4\xdb\xd7\xd0\xd7\xd2\xca\xd1\xcc\xc3\xca\xc6\xbb\xc4\xc2\xb8\ \xc1\xc3\xb7\xc0\xc2\xb6\xbf\xc1\xb5\xbe\xc1\xb6\xbe\xc6\xbb\xc3\ \xcb\xc1\xc8\xce\xc4\xcb\xcf\xc5\xcd\xcc\xc3\xcb\xa6\xa7\xbb\x8f\ \x97\xb0\xae\xa7\xb6\xac\xa5\xb4\xa9\xa3\xb3\xa6\xa1\xb3\xa9\xa3\ \xb4\xa8\xa4\xb5\xc0\xbc\xc6\xd4\xd0\xd7\xd6\xd2\xd9\xd7\xd1\xd6\ \xcc\xc7\xd0\xc3\xc0\xca\xbe\xba\xc4\xba\xb3\xbf\xb5\xae\xba\xb4\ \xae\xba\xb4\xad\xb9\xb4\xac\xb9\xb5\xae\xba\xb5\xae\xba\xb4\xad\ \xba\xb5\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\xb4\xad\xb9\xb4\xae\xb9\ \xb4\xae\xb9\xb3\xad\xb8\xb1\xac\xb8\xb2\xae\xb9\xb2\xae\xba\xb4\ \xb0\xbc\xb9\xb5\xc0\xc0\xbb\xc6\xc5\xc2\xcc\xc8\xc4\xce\xce\xcb\ \xd3\xd7\xd5\xdc\xdd\xdb\xe1\xe1\xe0\xe5\xe1\xe0\xe6\xe8\xe6\xeb\ \xe8\xe6\xeb\xea\xe9\xed\xef\xef\xf1\xef\xef\xf1\xe5\xe4\xea\xce\ \xcc\xd6\xba\xb7\xc4\x94\x98\xb0\x79\x85\xa6\x5c\x6a\x96\x3e\x4e\ \x84\x46\x5a\x8a\x4b\x61\x92\x62\x78\xa3\x7f\x90\xb4\xaa\xb4\xce\ \xc4\xcc\xde\xca\xd0\xe1\xaf\xb9\xd7\x85\x9e\xc9\x6a\x97\xc1\x55\ \x90\xb8\x63\x98\xbc\x92\xae\xc3\xb2\xbd\xcc\xe8\xe8\xec\xf2\xf1\ \xf2\xf2\xf2\xf3\xf4\xf4\xf4\xf2\xf2\xf2\xf4\xf3\xf4\xf6\xf6\xf6\ \xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\ \xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xf9\xf9\xf9\xfa\xfa\ \xfa\xfa\xf8\xf8\xa0\xab\xae\x6f\x87\x8c\x4a\x6f\x76\x3f\x68\x73\ \x6c\x7d\x8d\x7b\x83\x95\x58\x65\x7e\x54\x66\x82\x69\x7a\x92\x85\ \x8c\xa0\x98\x99\xa9\x9c\x9c\xab\x9e\x9e\xad\x99\x99\xab\x66\x76\ \x8a\x45\x65\x76\x4e\x6b\x7a\x61\x75\x86\x73\x7f\x95\x79\x82\x9c\ \x79\x82\x9e\x7a\x83\xa0\x7b\x83\xa2\x7d\x85\xa3\x82\x88\xa5\x8c\ \x8f\xaa\x95\x96\xad\x9c\x9b\xae\x9a\x9a\xad\x99\x9a\xab\x95\x96\ \xa8\x6c\x78\x93\x49\x65\x82\x3f\x65\x7e\x00\x00\x00\xdd\xd8\xe1\ \xda\xd5\xde\xd8\xd4\xdd\xd6\xd1\xdb\xd5\xcf\xda\xd2\xcc\xd7\xd1\ \xca\xd4\xd1\xc9\xd3\xd2\xca\xd3\xd4\xcc\xd3\xd3\xcb\xd2\xd4\xcb\ \xd1\xd6\xcc\xd2\xd8\xce\xd4\xd9\xd2\xd7\xda\xd3\xd8\xdc\xd5\xda\ \xdf\xd8\xdd\xe0\xd9\xde\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd7\xdd\xdf\ \xd7\xde\xdd\xd5\xdc\xdd\xd5\xdc\xdc\xd5\xdc\xdb\xd4\xdb\xda\xd3\ \xda\xd7\xce\xd6\xd0\xc8\xcf\xcd\xc3\xcb\xca\xbf\xc6\xc6\xba\xc1\ \xc0\xb3\xbc\xb9\xae\xb9\xbc\xb3\xbd\xbd\xb4\xbe\xbd\xb4\xbe\xbc\ \xb2\xbc\xba\xb1\xbb\xb9\xaf\xba\xb9\xaf\xba\xb7\xae\xba\xb5\xad\ \xb8\xb3\xab\xb9\xb0\xa9\xb6\xa8\xa5\xb5\x69\x82\xa3\x8d\x95\xac\ \xa1\x9f\xaf\x9e\x9e\xb1\x8e\x94\xad\x51\x78\x9d\x5a\x79\x9d\xaa\ \xab\xbd\xc9\xc5\xcf\xbd\xb9\xc4\xb8\xb2\xbd\xb4\xae\xba\xb3\xac\ \xb9\xb4\xad\xb9\xb4\xad\xba\xb3\xac\xb9\xb2\xac\xb8\xb3\xac\xb8\ \xb3\xac\xb8\xb2\xac\xb8\xb2\xac\xb7\xb2\xac\xb8\xb2\xac\xb8\xb4\ \xae\xb9\xb5\xaf\xba\xb5\xb1\xbc\xb6\xb2\xbd\xb7\xb3\xbf\xbe\xba\ \xc4\xc8\xc5\xce\xd2\xcf\xd8\xda\xd7\xdf\xe1\xde\xe5\xe6\xe2\xe7\ \xea\xe8\xec\xef\xef\xf1\xf0\xef\xf1\xef\xee\xf1\xf1\xef\xf2\xf4\ \xf4\xf4\xf5\xf5\xf5\xf4\xf4\xf4\xf4\xf4\xf4\xee\xed\xf0\xbd\xbf\ \xcf\x86\x93\xb1\x76\x86\xaa\x6c\x7e\xa4\x72\x87\xa9\x7e\x92\xaf\ \x89\x99\xb4\xa0\xa8\xbe\xbd\xc0\xd1\xd4\xd6\xe1\xd9\xdb\xe5\xdc\ \xdd\xe7\xd0\xd2\xdf\xac\xb5\xd0\x8e\xa5\xc9\x7f\xa5\xc6\x76\xa8\ \xc5\x90\xad\xc3\xaf\xbd\xce\xf0\xef\xf2\xef\xed\xf0\xef\xed\xf0\ \xf0\xed\xf0\xf1\xef\xf0\xf6\xf6\xf6\xf7\xf7\xf7\xf9\xf9\xf9\xf9\ \xf9\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\ \xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xfb\xfb\xfb\xf7\xf4\xf4\ \x53\x70\x7a\x30\x5e\x68\x37\x67\x71\x39\x68\x73\x3d\x66\x73\x3d\ \x5c\x71\x27\x44\x64\x31\x52\x72\x3f\x66\x81\x4d\x6f\x88\x6c\x7f\ \x95\x8e\x93\xa5\x9c\x9d\xad\x9a\x9b\xab\x65\x77\x87\x3e\x62\x6d\ \x3b\x5f\x6b\x41\x62\x6f\x4e\x67\x77\x61\x6f\x89\x76\x7f\x9c\x7a\ \x82\x9f\x7f\x86\xa3\x83\x88\xa5\x86\x8b\xa7\x8d\x90\xa9\x93\x95\ \xaa\x97\x98\xac\x95\x96\xaa\x95\x97\xa8\x8e\x92\xa4\x67\x72\x8f\ \x4d\x63\x82\x47\x64\x80\x00\x00\x00\xde\xd8\xe1\xdc\xd5\xdf\xdd\ \xd5\xdf\xda\xd4\xdd\xd7\xd1\xda\xd6\xcf\xd9\xd5\xcd\xd7\xd5\xcd\ \xd7\xd6\xcf\xd6\xd6\xce\xd5\xd6\xce\xd5\xd7\xcd\xd4\xd9\xcf\xd4\ \xd9\xd1\xd6\xda\xd3\xd8\xdc\xd5\xda\xde\xd7\xdc\xdf\xd8\xdd\xe0\ \xd9\xde\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xdf\xde\xd7\xde\xdd\xd7\ \xde\xdc\xd5\xdc\xdc\xd5\xdc\xdb\xd4\xdb\xda\xd3\xda\xd9\xd1\xd7\ \xd6\xce\xd4\xcf\xc6\xce\xc6\xbc\xc4\xbb\xb0\xba\xb6\xad\xb8\xb7\ \xaf\xba\xb8\xb0\xbb\xb8\xaf\xba\xb8\xaf\xba\xb9\xb0\xba\xb9\xb0\ \xba\xb9\xaf\xba\xb8\xaf\xb9\xb8\xae\xba\xb5\xad\xb8\xb3\xab\xb8\ \xaf\xa9\xb8\x90\x99\xaf\x44\x79\xa4\x80\x94\xae\xa9\xa8\xb7\xa5\ \xa6\xb6\x98\x9e\xb3\x66\x84\xa5\x70\x88\xa7\xc9\xc7\xd3\xd2\xcf\ \xd7\xc4\xc1\xca\xbb\xb5\xc0\xb7\xb1\xbc\xb4\xad\xba\xb3\xac\xb9\ \xb3\xac\xb9\xb4\xad\xb9\xb4\xad\xb9\xb3\xad\xb8\xb3\xae\xb8\xb4\ \xae\xb9\xb4\xae\xb9\xb4\xae\xb9\xb5\xae\xb9\xb6\xb0\xbb\xb6\xb0\ \xbb\xb7\xb0\xbb\xb6\xb2\xbd\xbd\xb9\xc4\xcb\xc7\xd0\xda\xd8\xde\ \xe3\xe1\xe7\xea\xe8\xec\xef\xed\xef\xf4\xf3\xf4\xf5\xf5\xf5\xf3\ \xf3\xf3\xf2\xf2\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\ \xf5\xf4\xf4\xf4\xf3\xf3\xf4\xe9\xea\xed\xb1\xb9\xce\x93\xa5\xc2\ \x8e\xa4\xbe\x8c\xa0\xb9\x8b\x9d\xb6\x92\xa0\xb8\xa5\xac\xc0\xbe\ \xc1\xcf\xdd\xde\xe6\xe2\xe2\xe9\xe0\xe1\xe8\xe3\xe3\xe8\xe0\xe0\ \xe7\xcf\xd1\xdf\xaa\xb7\xd1\x9a\xaf\xcd\x96\xb0\xcd\x9b\xb2\xc9\ \xcd\xd5\xde\xf0\xef\xf1\xec\xe9\xee\xf0\xed\xf0\xf2\xf0\xf2\xf6\ \xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\ \xf8\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\ \xfb\xfb\xfb\xfc\xfc\xfc\xff\xff\xff\xd5\xd7\xd5\x45\x6a\x6f\x2c\ \x5b\x66\x2e\x5e\x6a\x36\x66\x72\x35\x62\x70\x2c\x59\x6c\x2c\x54\ \x71\x34\x60\x7c\x3e\x68\x82\x40\x68\x83\x3f\x68\x81\x52\x70\x88\ \x7e\x89\x9d\x99\x9c\xab\x77\x84\x92\x41\x62\x6b\x32\x56\x62\x32\ \x54\x62\x36\x56\x66\x3c\x57\x6d\x5e\x6c\x88\x7d\x83\x9f\x84\x88\ \xa3\x85\x89\xa4\x87\x8c\xa6\x8e\x92\xaa\x92\x95\xab\x95\x96\xaa\ \x93\x95\xa8\x8f\x93\xa6\x8b\x90\xa3\x68\x72\x8e\x4f\x61\x7f\x46\ \x5e\x7a\x00\x00\x00\xe1\xd9\xe1\xde\xd7\xdf\xdd\xd6\xde\xdb\xd4\ \xdd\xda\xd2\xdc\xd9\xd1\xda\xd7\xd0\xd9\xd9\xd1\xd9\xd9\xd1\xd9\ \xd9\xd2\xd8\xd8\xd1\xd7\xd9\xd1\xd6\xd9\xd1\xd6\xda\xd3\xd8\xdc\ \xd5\xda\xdd\xd6\xdb\xde\xd8\xdd\xe0\xd9\xde\xe1\xda\xdf\xe1\xda\ \xdf\xe0\xd9\xdf\xe0\xd9\xdf\xdf\xd8\xdf\xdd\xd6\xdd\xdc\xd5\xdc\ \xdb\xd4\xdb\xda\xd3\xda\xd6\xcf\xd5\xcf\xc8\xce\xc8\xc0\xc7\xc1\ \xb8\xc1\xbc\xb3\xbd\xbb\xb2\xbc\xbb\xb2\xbd\xb9\xb1\xbc\xb9\xb1\ \xbc\xb9\xb0\xbb\xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb8\xae\xb9\ \xb8\xae\xb9\xb7\xad\xb9\xb5\xad\xb8\xb5\xad\xb8\x9f\xa0\xb4\x4c\ \x76\x9f\x83\x95\xb1\x9d\xa2\xb4\xa2\xa1\xb2\xa6\xa4\xb4\xa2\xa2\ \xb3\x9c\x9e\xb0\xaa\xaa\xba\xd5\xd2\xd9\xd0\xcd\xd5\xcc\xc9\xd1\ \xc7\xc4\xcd\xc0\xbc\xc6\xbb\xb6\xc2\xb8\xb1\xbd\xb6\xaf\xbb\xb5\ \xaf\xba\xb5\xad\xb9\xb3\xad\xb9\xb4\xae\xb9\xb5\xaf\xba\xb6\xb0\ \xbb\xb5\xaf\xbb\xb6\xb0\xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb9\xb3\xbe\ \xbf\xbc\xc6\xcc\xc9\xd1\xdd\xdb\xe1\xeb\xe9\xed\xf0\xef\xf2\xf4\ \xf4\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\ \xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf5\xf4\xf5\xef\xee\xf3\ \xe5\xe3\xeb\xca\xcd\xda\xae\xba\xcf\xa2\xb3\xcb\x9a\xae\xc6\x96\ \xa9\xc0\x9d\xaa\xbf\xae\xb4\xc5\xce\xce\xd9\xeb\xeb\xee\xee\xed\ \xf0\xe2\xe2\xe9\xe2\xe1\xe7\xe5\xe3\xe9\xe5\xe3\xe8\xe6\xe4\xea\ \xdb\xdb\xe6\xc4\xcb\xdf\xb0\xbe\xd9\xb1\xc0\xd7\xd1\xd4\xdf\xe5\ \xe3\xe9\xea\xe8\xed\xed\xe9\xee\xf1\xef\xf1\xf5\xf5\xf5\xf7\xf7\ \xf7\xf8\xf8\xf8\xf9\xf9\xf9\xf8\xf8\xf8\xf7\xf7\xf7\xf8\xf8\xf8\ \xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xff\ \xff\xff\xf5\xf4\xf3\x7d\x91\x8f\x2f\x5e\x61\x28\x5b\x62\x29\x5c\ \x66\x30\x61\x6e\x2d\x5f\x6d\x2d\x5e\x6f\x36\x63\x79\x3c\x67\x7f\ \x42\x6b\x84\x3f\x67\x81\x40\x68\x82\x3f\x67\x7f\x4a\x6a\x82\x89\ \x90\xa3\x90\x94\xa2\x53\x64\x73\x2d\x41\x58\x23\x39\x52\x25\x3c\ \x57\x2d\x44\x5e\x3e\x53\x6c\x64\x6e\x89\x79\x7d\x97\x57\x5c\x78\ \x5c\x62\x80\x80\x85\x9f\x91\x94\xa9\x93\x97\xaa\x8f\x93\xa6\x8a\ \x90\xa2\x8a\x8f\xa2\x6e\x77\x90\x50\x5e\x78\x3b\x49\x63\x00\x00\ \x00\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xdd\xd5\xdc\xdb\xd4\xdb\ \xdc\xd4\xdb\xda\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xda\ \xd3\xd8\xda\xd3\xd8\xdb\xd4\xd9\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd7\ \xdc\xdf\xd9\xde\xe0\xda\xdf\xe1\xda\xe0\xe0\xda\xe0\xdf\xd8\xe0\ \xdf\xd8\xdf\xdf\xd8\xdf\xdd\xd6\xdd\xdb\xd4\xdb\xd7\xd0\xd7\xcf\ \xc7\xce\xca\xc2\xc9\xc6\xbe\xc5\xc0\xb7\xbf\xbe\xb5\xbf\xbd\xb4\ \xbe\xbd\xb4\xbe\xbb\xb3\xbd\xba\xb2\xbc\xb8\xb0\xbb\xb8\xb0\xba\ \xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb7\xae\xb9\xb7\xad\xb8\xb6\ \xac\xb8\xb5\xac\xb7\xb4\xab\xb7\xb1\xaa\xb7\x90\x9b\xb4\x3d\x74\ \x9f\x83\x95\xae\x70\x85\xa6\x8d\x95\xac\x97\x9a\xae\x8c\x90\xa8\ \xc0\xbc\xc8\xd6\xd4\xda\xd3\xd1\xd7\xd6\xd4\xda\xd4\xd2\xd9\xcf\ \xcc\xd4\xc8\xc4\xce\xc1\xbd\xc7\xbe\xb8\xc3\xb9\xb3\xbf\xb9\xb3\ \xbf\xb7\xb1\xbc\xb7\xb1\xbc\xb8\xb2\xbd\xb7\xb1\xbc\xb9\xb3\xbe\ \xba\xb5\xbf\xbb\xb6\xc0\xbd\xb7\xc2\xc1\xbe\xc7\xce\xcc\xd4\xe3\ \xe1\xe6\xee\xed\xf0\xf2\xf2\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\ \xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\ \xf8\xf8\xf8\xf2\xf1\xf5\xee\xeb\xf2\xea\xe8\xf1\xe2\xe0\xea\xcd\ \xd0\xdc\xc2\xca\xdb\xba\xc7\xdb\xc4\xd0\xe0\xd2\xd8\xe3\xdb\xdc\ \xe5\xe8\xe9\xed\xf4\xf4\xf5\xf5\xf4\xf4\xe8\xe8\xec\xe5\xe5\xeb\ \xe3\xe2\xe8\xe6\xe5\xea\xe7\xe5\xeb\xe8\xe6\xeb\xea\xe8\xed\xea\ \xe8\xef\xe3\xe4\xed\xc5\xd0\xe2\xda\xdd\xe8\xe2\xe0\xe7\xeb\xe8\ \xed\xef\xeb\xf0\xf1\xef\xf1\xf3\xf3\xf4\xf7\xf7\xf6\xf8\xf8\xf8\ \xf9\xf9\xf9\xf8\xf8\xf8\xf7\xf7\xf7\xf9\xf9\xf9\xf9\xf9\xf9\xf9\ \xf9\xf9\xfc\xfc\xfc\xfc\xfd\xfc\xff\xff\xff\xec\xea\xe9\x95\xa5\ \xa7\x5b\x7e\x86\x40\x6d\x73\x29\x5c\x62\x23\x58\x62\x2a\x5c\x6c\ \x30\x62\x72\x2b\x5f\x70\x37\x64\x7a\x3e\x69\x7f\x43\x6c\x83\x42\ \x69\x81\x45\x6a\x84\x44\x69\x82\x3b\x5e\x77\x60\x70\x88\x98\x9a\ \xaa\x69\x6f\x82\x33\x3d\x58\x25\x32\x4f\x24\x33\x50\x25\x36\x53\ \x29\x38\x54\x38\x42\x5d\x59\x5e\x78\x47\x4b\x62\x28\x2e\x4b\x42\ \x48\x6a\x6a\x6d\x89\x85\x88\x9f\x8d\x92\xa5\x88\x8e\xa1\x89\x8f\ \xa1\x5f\x65\x7c\x37\x3d\x59\x2b\x32\x4f\x00\x00\x00\xe3\xdb\xe2\ \xe2\xda\xe1\xe1\xd9\xdf\xe0\xd8\xde\xde\xd6\xdd\xde\xd6\xdd\xde\ \xd6\xdd\xdd\xd5\xdc\xdd\xd5\xdc\xdd\xd6\xdc\xdc\xd5\xda\xdc\xd5\ \xda\xde\xd6\xdb\xdd\xd7\xdc\xdd\xd6\xdd\xde\xd8\xde\xdf\xd8\xe0\ \xe1\xdb\xe1\xe1\xdb\xe1\xe1\xda\xe1\xdf\xd8\xdf\xde\xd7\xde\xde\ \xd7\xde\xdb\xd4\xdb\xd5\xce\xd4\xcf\xc7\xcd\xcd\xc5\xcc\xcb\xc4\ \xcb\xc7\xc1\xc8\xc1\xb9\xc0\xbd\xb4\xbe\xbd\xb3\xbd\xbb\xb3\xbd\ \xb9\xb1\xbb\xb9\xb0\xbb\xb7\xaf\xb9\xb6\xad\xb7\xb3\xaa\xb6\xb5\ \xac\xb6\xb5\xac\xb6\xb5\xac\xb6\xb5\xac\xb6\xb6\xac\xb7\xb2\xab\ \xb6\xb3\xab\xb6\xb2\xaa\xb6\xaa\xa7\xb7\x6f\x91\xb4\x99\xa3\xb8\ \x80\x93\xae\x8e\x99\xaf\xa6\xa9\xb7\xa1\xa4\xb4\xcd\xc9\xd1\xd9\ \xd6\xdd\xd8\xd6\xdc\xda\xd8\xde\xd4\xd2\xd9\xd2\xcf\xd6\xcd\xca\ \xd3\xcb\xc8\xd0\xc7\xc4\xcd\xc9\xc5\xcf\xc8\xc4\xce\xc5\xc1\xca\ \xc1\xbe\xc8\xbe\xbb\xc4\xc2\xbf\xc8\xc6\xc2\xcb\xc8\xc5\xcd\xce\ \xca\xd2\xd1\xce\xd6\xd6\xd3\xdb\xe3\xe0\xe6\xee\xed\xef\xf4\xf4\ \xf4\xf6\xf6\xf5\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf5\xf5\xf5\ \xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf8\xf9\xf6\ \xf6\xf8\xf9\xf9\xfa\xf0\xef\xf3\xe3\xe3\xeb\xef\xef\xf4\xf9\xfa\ \xf9\xf8\xf7\xf8\xf9\xf9\xf8\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\ \xf6\xf6\xf6\xf3\xf2\xf3\xeb\xe9\xef\xe7\xe5\xeb\xe6\xe4\xea\xe7\ \xe6\xeb\xea\xe8\xed\xec\xe9\xee\xec\xea\xef\xee\xed\xf1\xf1\xf0\ \xf2\xe0\xe2\xed\xed\xed\xf1\xed\xeb\xf1\xeb\xe7\xee\xef\xeb\xf0\ \xf1\xee\xf1\xf3\xf3\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf8\xf8\xf8\xf7\ \xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\ \xfc\xfd\xfd\xfd\xd2\xd4\xd8\x77\x9c\xa6\x62\x8f\x98\x5a\x87\x8f\ \x50\x7a\x83\x3f\x6b\x79\x32\x5d\x74\x33\x62\x78\x38\x68\x7d\x37\ \x68\x7c\x39\x68\x7c\x3d\x6a\x7e\x3d\x6a\x7e\x3a\x65\x7b\x3f\x66\ \x7e\x43\x65\x7f\x38\x59\x74\x39\x4e\x6c\x71\x75\x8a\x74\x75\x89\ \x2c\x31\x4d\x1e\x23\x3f\x23\x2d\x48\x24\x31\x4e\x24\x2f\x4a\x2c\ \x35\x4c\x35\x3c\x53\x3b\x40\x55\x24\x29\x40\x1d\x20\x3c\x27\x2b\ \x4e\x48\x4c\x6d\x6e\x72\x8d\x82\x88\x9b\x6f\x73\x87\x31\x35\x53\ \x21\x28\x4a\x23\x2a\x4b\x00\x00\x00\xe5\xde\xe4\xe4\xdc\xe2\xe2\ \xdb\xe0\xe1\xda\xdf\xe0\xd9\xde\xdf\xd8\xde\xdf\xd7\xde\xdf\xd7\ \xdd\xdf\xd7\xdd\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdf\xd8\xdd\ \xde\xd7\xdd\xdd\xd7\xdd\xde\xd7\xde\xdf\xd8\xdf\xe1\xda\xe1\xe2\ \xdb\xe2\xe1\xda\xe1\xe0\xd9\xdf\xdc\xd4\xdb\xd6\xce\xd5\xd3\xcb\ \xd1\xd1\xcb\xd0\xd0\xc9\xd0\xce\xc8\xce\xcc\xc5\xcc\xc8\xc1\xc8\ \xc1\xba\xc1\xbe\xb5\xbf\xbe\xb4\xbe\xbc\xb3\xbd\xbb\xb2\xbc\xba\ \xb2\xbc\xba\xb1\xbb\xb8\xaf\xb9\xb6\xad\xb7\xb6\xac\xb7\xb5\xac\ \xb6\xb5\xac\xb6\xb5\xac\xb6\xae\xa8\xb6\x77\x8b\xa7\xa5\xa3\xb3\ \xb4\xae\xb8\xb3\xad\xb9\xb6\xae\xba\xb4\xaf\xba\x75\x90\xaf\x81\ \x92\xad\xa4\xa5\xb3\x9b\x9e\xaf\xbe\xba\xc5\xdb\xd7\xdd\xd9\xd7\ \xdc\xd8\xd5\xdd\xd2\xcf\xd7\xd3\xd0\xd8\xd3\xd0\xd8\xd4\xd1\xd8\ \xd1\xce\xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xce\xca\xd0\xce\ \xca\xd0\xd3\xd0\xd7\xd9\xd5\xdb\xdc\xd8\xde\xe2\xdf\xe4\xe8\xe5\ \xea\xec\xe9\xed\xef\xed\xf1\xf1\xf1\xf2\xf4\xf4\xf4\xf4\xf4\xf4\ \xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\ \xf9\xf9\xf8\xf8\xf8\xfb\xfb\xfb\xfe\xfe\xfe\xff\xff\xff\xff\xff\ \xff\xfc\xfc\xfd\xfe\xfe\xfd\xfc\xfc\xfc\xfa\xfa\xfa\xfa\xfa\xfa\ \xfa\xfa\xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xf6\xf6\xf6\xf0\ \xee\xf2\xec\xeb\xf0\xe5\xe3\xe9\xe6\xe5\xea\xeb\xe9\xee\xee\xea\ \xef\xee\xec\xf0\xef\xec\xf1\xf1\xef\xf2\xf1\xf0\xf2\xf2\xf0\xf2\ \xf3\xf2\xf3\xf3\xf3\xf4\xf0\xee\xf2\xf2\xf0\xf2\xf5\xf5\xf5\xf5\ \xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\ \xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfe\xfe\xfe\xf6\xf4\xf4\xca\xc8\xcf\ \x8e\x9a\xaf\x7e\xa0\xaf\x71\xa0\xab\x64\x97\xa0\x53\x85\x8e\x39\ \x65\x79\x31\x5b\x7c\x36\x61\x80\x35\x65\x7d\x34\x66\x7b\x30\x64\ \x76\x2f\x65\x75\x33\x66\x76\x31\x62\x75\x2f\x5c\x73\x35\x5a\x73\ \x30\x50\x6c\x2a\x40\x5f\x2a\x35\x52\x3c\x40\x5a\x24\x2a\x47\x1a\ \x1f\x3b\x1c\x20\x3b\x23\x2b\x44\x1e\x24\x3c\x26\x2c\x42\x2a\x31\ \x44\x27\x2d\x41\x23\x27\x39\x1a\x18\x2c\x18\x18\x31\x15\x1d\x40\ \x28\x32\x58\x48\x53\x72\x31\x3a\x5b\x1e\x29\x4c\x22\x2d\x50\x28\ \x33\x54\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe4\xe5\xdd\xe3\xe2\xdb\ \xe0\xe1\xda\xdf\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\xdd\ \xdf\xd7\xdd\xdf\xd8\xde\xdf\xd8\xde\xdf\xd8\xdf\xdf\xd8\xde\xdf\ \xd8\xdf\xdf\xd8\xdf\xdf\xda\xe0\xe1\xdb\xe2\xe2\xdc\xe3\xe1\xdb\ \xe2\xdc\xd6\xdb\xd7\xd0\xd5\xd5\xce\xd3\xd5\xcf\xd4\xd3\xcd\xd2\ \xd0\xca\xd0\xcf\xc9\xcf\xcd\xc6\xcd\xc6\xbf\xc6\xc0\xb9\xc0\xbe\ \xb6\xbf\xbe\xb5\xbe\xbc\xb4\xbd\xba\xb1\xbb\xb9\xb0\xba\xb8\xaf\ \xb9\xb9\xb0\xba\xb9\xb0\xba\xb8\xaf\xb9\xb8\xb0\xba\xb9\xaf\xba\ \xb8\xaf\xba\xaf\xab\xba\x5e\x84\xaa\xa5\xa6\xb7\xb4\xaf\xbb\xb2\ \xaf\xbb\xaf\xac\xb8\xaa\xa9\xb6\xa3\xa4\xb5\xa1\xa1\xb3\x9d\x9e\ \xb0\x98\x9a\xac\x99\x9a\xac\xb8\xb4\xc0\xd6\xd3\xd9\xd5\xd3\xd9\ \xd5\xd1\xd9\xd4\xd0\xd8\xd5\xd1\xd9\xd5\xd1\xd9\xd6\xd2\xd9\xd5\ \xd1\xd7\xd7\xd4\xda\xd5\xd3\xd9\xd8\xd5\xda\xdd\xdc\xe1\xe1\xde\ \xe4\xe5\xe2\xe7\xeb\xe8\xed\xec\xe8\xed\xee\xec\xf0\xef\xee\xf0\ \xef\xef\xf1\xf2\xf2\xf3\xf3\xf3\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf6\ \xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfc\xfc\ \xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\ \xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfa\ \xfa\xfa\xf9\xf9\xf9\xf8\xf8\xf8\xf6\xf6\xf6\xf2\xf1\xf3\xec\xeb\ \xef\xe7\xe5\xeb\xea\xe9\xed\xf0\xed\xf0\xf0\xec\xf1\xf1\xf1\xf2\ \xf1\xf0\xf1\xf0\xee\xf1\xf2\xf2\xf2\xf3\xf2\xf3\xf5\xf5\xf5\xf5\ \xf5\xf5\xf2\xf1\xf2\xd3\xcd\xd2\xe0\xda\xdc\xf6\xf3\xf3\xf9\xf8\ \xf8\xf5\xf6\xf5\xf4\xf4\xf4\xf3\xf2\xf3\xf5\xf5\xf5\xf8\xf9\xf9\ \xff\xff\xff\xe9\xe3\xe5\xa7\xa4\xb7\x86\x89\xa4\x72\x82\x9b\x67\ \x82\x93\x6a\x8d\x9c\x63\x93\x9d\x62\x96\x9e\x45\x6f\x8a\x39\x61\ \x87\x34\x60\x82\x2d\x60\x79\x2b\x61\x76\x29\x61\x74\x2a\x62\x74\ \x2e\x64\x75\x2f\x62\x75\x2f\x5e\x73\x29\x4e\x68\x20\x3c\x5c\x20\ \x31\x52\x21\x2a\x49\x20\x26\x44\x1d\x24\x40\x17\x1c\x36\x17\x1b\ \x34\x1b\x1e\x34\x1a\x1d\x31\x20\x25\x38\x21\x26\x38\x1c\x20\x31\ \x1b\x1b\x2c\x1a\x18\x2a\x17\x15\x2a\x13\x16\x31\x14\x1f\x43\x25\ \x37\x59\x25\x37\x57\x24\x34\x58\x26\x35\x58\x20\x32\x51\x00\x00\ \x00\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe3\xe3\xdc\xe1\xe2\xdb\xe0\ \xe1\xda\xdf\xe0\xd9\xde\xe0\xd9\xde\xe1\xda\xde\xe0\xd8\xde\xe0\ \xd8\xdf\xdf\xd9\xe0\xdf\xd8\xdf\xe0\xda\xe1\xdf\xd9\xe0\xdf\xda\ \xe0\xe0\xdc\xe2\xe0\xdd\xe3\xe1\xdb\xe2\xdc\xd6\xdb\xd9\xd3\xd8\ \xd9\xd3\xd8\xd7\xd1\xd6\xd6\xd0\xd5\xd4\xce\xd3\xd2\xcc\xd1\xd0\ \xca\xcf\xcd\xc6\xcd\xc7\xc0\xc7\xc2\xba\xc1\xbf\xb7\xbe\xbf\xb6\ \xbe\xbd\xb4\xbd\xbc\xb3\xbd\xba\xb1\xbb\xba\xb1\xbb\xb9\xb0\xba\ \xb9\xb1\xbb\xb9\xb1\xbb\xba\xb2\xbc\xbb\xb3\xbd\xbc\xb4\xbe\xb2\ \xaf\xbd\x3c\x73\x9c\x8f\x9c\xb2\xb5\xb0\xbc\xb3\xaf\xbb\xaf\xac\ \xb8\xab\xa9\xb7\xa8\xa7\xb5\xa6\xa5\xb3\xa4\xa2\xb1\xa4\xa1\xb0\ \xa5\xa0\xb1\xa5\xa0\xb0\xa7\xa0\xb0\xd5\xcf\xd6\xd8\xd5\xdb\xd7\ \xd2\xdb\xd8\xd5\xdc\xd9\xd6\xdf\xd9\xd5\xdc\xdc\xd8\xde\xdb\xd9\ \xdf\xdd\xda\xe0\xe1\xde\xe3\xe7\xe4\xe9\xe8\xe5\xea\xe9\xe6\xea\ \xec\xe9\xed\xef\xed\xf0\xef\xec\xf0\xf0\xef\xf1\xf2\xf2\xf1\xf2\ \xf2\xf2\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf6\xf6\xf6\xf5\xf5\ \xf5\xf6\xf6\xf6\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\ \xfd\xfd\xfd\xfd\xfd\xfd\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfc\ \xfc\xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\ \xfa\xf7\xf7\xf7\xf6\xf6\xf6\xf2\xf2\xf3\xec\xea\xee\xeb\xe9\xee\ \xef\xed\xf1\xf1\xf0\xf2\xf1\xf0\xf1\xf3\xf3\xf3\xf4\xf4\xf4\xf3\ \xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf4\xf4\xf4\xf7\xf7\xf7\xf9\xf8\ \xf8\x94\x9f\xa4\x85\x94\x9b\x9a\xa2\xa7\xc5\xc4\xc6\xee\xea\xeb\ \xf5\xf4\xf4\xf6\xf6\xf6\xf9\xf9\xf9\xf8\xf7\xf7\xc7\xc3\xcb\x8e\ \x8f\xa9\x7c\x85\xa1\x77\x84\x9e\x5d\x79\x8d\x45\x70\x7d\x46\x75\ \x7f\x49\x79\x84\x52\x80\x8c\x54\x78\x98\x50\x72\x9c\x43\x6d\x90\ \x36\x67\x82\x2f\x63\x7a\x2d\x63\x78\x2a\x62\x75\x31\x65\x78\x32\ \x63\x77\x31\x5d\x74\x27\x4a\x64\x1b\x32\x53\x1b\x2a\x4b\x1d\x25\ \x46\x1d\x24\x42\x1c\x22\x3e\x15\x1a\x33\x20\x25\x3a\x1a\x1d\x31\ \x17\x18\x2a\x18\x19\x2a\x1a\x1d\x2b\x17\x18\x27\x12\x12\x21\x14\ \x14\x23\x16\x15\x29\x15\x16\x30\x16\x1d\x3d\x1c\x2c\x4a\x1e\x35\ \x50\x21\x35\x55\x1b\x30\x4c\x15\x2b\x43\x00\x00\x00\xe6\xdf\xe6\ \xe6\xde\xe5\xe5\xde\xe3\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xda\xdf\xe1\ \xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe1\xd9\xdf\xe0\xd9\xe0\xe1\xda\ \xe1\xe1\xda\xe1\xe0\xdb\xe2\xe1\xdc\xe3\xe1\xdc\xe3\xe1\xdd\xe3\ \xe1\xdc\xe2\xd8\xd1\xd7\xd5\xcf\xd4\xd9\xd2\xd7\xd8\xd2\xd7\xd7\ \xd1\xd6\xd8\xd2\xd7\xd5\xcf\xd4\xd3\xcd\xd2\xd0\xca\xcf\xcd\xc6\ \xcd\xc9\xc3\xca\xc5\xbe\xc5\xc2\xba\xc1\xbf\xb7\xbf\xbf\xb6\xbe\ \xbf\xb7\xbe\xbe\xb6\xbe\xbe\xb5\xbf\xbe\xb5\xbf\xbd\xb5\xbf\xbd\ \xb5\xc0\xbc\xb6\xbf\xbb\xb4\xbf\xba\xb4\xbe\xb2\xb0\xbd\x75\x90\ \xad\xa9\xa9\xb9\xb5\xaf\xbb\xb2\xac\xb9\xb0\xab\xb7\xae\xaa\xb6\ \xac\xa7\xb4\xab\xa5\xb3\xaa\xa4\xb2\xaa\xa4\xb3\xa9\xa3\xb1\xa6\ \xa0\xb1\x93\x8d\xa4\xa8\xa0\xb3\xce\xc7\xd1\xd9\xd5\xdc\xdf\xdc\ \xe2\xde\xdc\xe2\xdf\xdb\xe1\xdc\xd9\xdf\xdf\xdb\xe1\xdf\xdb\xe1\ \xe1\xdd\xe2\xe4\xe0\xe6\xe6\xe2\xe7\xe6\xe3\xe8\xe9\xe6\xeb\xee\ \xea\xef\xef\xec\xef\xf0\xed\xf0\xf1\xef\xf1\xf1\xf0\xf1\xf0\xef\ \xf0\xf3\xf3\xf3\xf5\xf4\xf5\xf3\xf3\xf3\xf4\xf4\xf4\xf7\xf7\xf7\ \xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ \xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ \xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xf8\xf8\xf8\ \xf7\xf7\xf7\xf2\xf0\xf2\xee\xeb\xef\xed\xed\xf0\xf1\xf1\xf2\xf4\ \xf4\xf4\xf2\xf2\xf3\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf7\xf4\xf4\ \xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf1\xef\xf0\x63\x89\x90\ \x43\x7a\x82\x43\x7b\x83\x48\x7c\x84\x55\x83\x88\x8a\xa3\xa5\xa8\ \xb8\xb7\xa0\xb1\xb1\x76\x8b\x95\x5b\x79\x8d\x5e\x7b\x90\x63\x7f\ \x94\x60\x7f\x91\x4d\x78\x86\x47\x75\x81\x3c\x72\x7c\x36\x6d\x78\ \x37\x6b\x78\x50\x76\x96\x5e\x79\xa5\x58\x79\x9f\x4b\x74\x95\x40\ \x6e\x8c\x39\x6b\x83\x30\x67\x7c\x31\x64\x79\x33\x62\x78\x33\x5d\ \x74\x26\x48\x62\x16\x2e\x4e\x15\x27\x48\x16\x22\x43\x19\x21\x41\ \x18\x1f\x3c\x16\x1a\x33\x23\x27\x3b\x24\x27\x39\x1b\x1c\x2c\x10\ \x10\x1e\x12\x13\x1f\x14\x15\x23\x14\x14\x24\x16\x16\x26\x15\x15\ \x26\x14\x15\x2c\x2e\x34\x4e\x39\x40\x54\x1c\x2e\x41\x18\x30\x43\ \x16\x2a\x3e\x15\x1f\x35\x00\x00\x00\xe7\xe0\xe7\xe5\xde\xe5\xe5\ \xdd\xe3\xe4\xdd\xe2\xe3\xdb\xe2\xe2\xdb\xe1\xe2\xdb\xdf\xe2\xdb\ \xe0\xe1\xda\xdf\xe0\xd8\xdf\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\ \xe1\xdd\xe3\xe1\xde\xe4\xe2\xde\xe4\xe3\xde\xe6\xdb\xd6\xdd\xd0\ \xc9\xcf\xd3\xcd\xd2\xd8\xd2\xd7\xdb\xd5\xda\xda\xd4\xd9\xd9\xd3\ \xd8\xd6\xd0\xd5\xd2\xcc\xd1\xd0\xca\xcf\xce\xc7\xcd\xcb\xc4\xcb\ \xc8\xc1\xc8\xc4\xbc\xc3\xc1\xb8\xc0\xbf\xb6\xc0\xbe\xb7\xbe\xbe\ \xb6\xbf\xbe\xb6\xbf\xbe\xb7\xc0\xc2\xbc\xc5\xc2\xbd\xc6\xbb\xb6\ \xbf\xb8\xb2\xbd\xb7\xb0\xbc\xb7\xb1\xbc\xb7\xb1\xbb\xb5\xae\xb9\ \xb4\xac\xb8\xb2\xa9\xb6\xb1\xa9\xb6\xb0\xa7\xb4\xae\xa6\xb3\xad\ \xa6\xb3\xac\xa5\xb3\xac\xa5\xb2\xab\xa4\xb3\xa1\x9c\xae\x7d\x7a\ \x9a\x88\x82\xa0\xd2\xcc\xd6\xce\xc8\xd2\xd0\xca\xd4\xd5\xd0\xd8\ \xdb\xd7\xde\xdf\xdc\xe2\xdf\xdc\xe2\xdb\xd8\xde\xdf\xdc\xe1\xe1\ \xdd\xe3\xe5\xe1\xe7\xea\xe7\xec\xed\xeb\xef\xee\xed\xf0\xef\xee\ \xf0\xf0\xed\xf0\xf0\xed\xf0\xf0\xed\xf0\xf1\xef\xf1\xf1\xf1\xf2\ \xf1\xef\xf1\xf4\xf3\xf4\xf5\xf4\xf5\xf7\xf6\xf7\xfb\xfb\xfb\xfb\ \xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfb\xfb\ \xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ \xfb\xfb\xfb\xfb\xfb\xfb\xf9\xf9\xf9\xfa\xfa\xfa\xf7\xf7\xf7\xf1\ \xef\xf1\xf2\xf0\xf2\xf1\xf1\xf2\xf3\xf3\xf3\xf5\xf5\xf5\xf4\xf4\ \xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf9\xf9\xf9\xf8\xf8\xf8\xf9\xf9\xf9\ \xfa\xfa\xfa\xfa\xfa\xfa\xe7\xe6\xe9\x94\xa3\xb1\x82\x9c\xab\x7e\ \x9c\xab\x77\x9a\xa8\x6b\x96\xa2\x5d\x8d\x98\x41\x74\x82\x37\x6d\ \x7b\x3e\x71\x80\x3c\x6e\x7d\x3b\x70\x7c\x3d\x74\x7e\x3c\x76\x7e\ \x39\x75\x7d\x37\x75\x7d\x36\x76\x7d\x37\x76\x7f\x3b\x76\x81\x4a\ \x79\x90\x5e\x7d\xa1\x5c\x79\x9f\x63\x80\xa2\x59\x7d\x9d\x4b\x77\ \x92\x3e\x6e\x85\x37\x67\x7d\x35\x60\x77\x2f\x53\x6e\x20\x3f\x5d\ \x15\x2f\x4e\x13\x28\x48\x17\x25\x46\x1b\x26\x44\x19\x20\x3d\x15\ \x18\x31\x17\x16\x29\x1c\x1c\x2c\x1d\x1e\x2c\x13\x14\x22\x10\x10\ \x1d\x13\x14\x22\x1b\x1d\x2e\x1b\x1d\x2d\x15\x16\x26\x12\x14\x25\ \x1c\x21\x37\x1f\x23\x35\x1a\x22\x32\x18\x23\x34\x16\x1e\x31\x17\ \x19\x30\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe5\xe4\xde\xe4\xe5\xdc\ \xe3\xe3\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe0\xe1\xd9\xdf\xe0\xd9\xe0\ \xdf\xd8\xdf\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdd\xe3\xe3\xdf\xe5\xe2\ \xde\xe4\xe2\xdf\xe5\xe3\xde\xe8\xdb\xd5\xdc\xd9\xd2\xd8\xdf\xd9\ \xde\xdf\xd9\xde\xdb\xd5\xda\xda\xd4\xd9\xd7\xd1\xd6\xd4\xce\xd3\ \xd1\xcb\xd0\xcf\xc8\xcf\xcc\xc6\xcc\xcb\xc4\xcb\xc9\xc2\xc9\xc7\ \xbf\xc6\xc4\xbc\xc3\xc2\xba\xc1\xc0\xb9\xc1\xc0\xb8\xc2\xc2\xbb\ \xc5\xc8\xc3\xcb\xca\xc6\xcd\xc0\xbb\xc3\xba\xb3\xbe\xb8\xb1\xbb\ \xb7\xb0\xbb\xb6\xae\xb9\xb4\xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb3\ \xaa\xb7\xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xad\xa6\ \xb3\xad\xa6\xb2\xaa\xa3\xb2\x94\x8f\xa7\x7f\x7e\x9d\xa0\x9d\xb0\ \xd9\xd3\xdb\xe0\xdb\xe2\xd6\xd2\xdb\xce\xc9\xd4\xd1\xcc\xd6\xd2\ \xcb\xd3\xd1\xca\xd0\xdf\xda\xde\xe8\xe5\xea\xe9\xe5\xea\xec\xeb\ \xef\xed\xea\xf0\xef\xed\xf0\xf1\xf0\xf2\xf0\xed\xf1\xf0\xee\xf1\ \xef\xec\xf1\xef\xeb\xf0\xf1\xf1\xf2\xf0\xee\xf0\xf2\xf1\xf2\xf7\ \xf8\xf8\xf1\xf0\xf3\xf7\xf7\xf7\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ \xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\ \xfd\xfd\xfd\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\ \xfb\xfb\xfa\xfa\xfa\xfb\xfb\xfb\xf6\xf6\xf6\xf3\xf3\xf3\xf3\xf3\ \xf3\xf3\xf3\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\xf6\xf8\xf8\xf8\ \xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ \xfc\xfc\xda\xd6\xdd\xa9\xa6\xb6\xa4\xa4\xb3\xa2\xa3\xb3\x9b\x9f\ \xae\x89\x95\xa7\x73\x8a\x9f\x55\x79\x8f\x40\x70\x83\x44\x74\x84\ \x3f\x72\x80\x3b\x72\x7c\x3c\x76\x7f\x38\x77\x7e\x39\x79\x7f\x42\ \x82\x87\x51\x8c\x92\x5b\x92\x98\x61\x91\x9b\x5e\x89\x9a\x68\x8b\ \xa1\x66\x83\xa1\x5f\x7b\x9d\x5b\x7b\x9b\x5f\x81\x9f\x4a\x74\x8d\ \x34\x62\x79\x29\x50\x6b\x1b\x3d\x5d\x15\x35\x57\x14\x31\x51\x12\ \x29\x49\x16\x27\x47\x17\x22\x41\x17\x1d\x39\x15\x17\x2e\x15\x13\ \x26\x15\x12\x21\x13\x12\x21\x16\x16\x25\x18\x18\x28\x16\x16\x27\ \x18\x1a\x2c\x18\x19\x2c\x12\x14\x24\x10\x10\x1f\x12\x14\x25\x15\ \x15\x27\x17\x18\x28\x16\x17\x28\x1a\x1d\x31\x20\x22\x38\x00\x00\ \x00\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe3\xdc\xe3\ \xe2\xdb\xe2\xe0\xda\xe1\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd8\xdf\xe1\ \xda\xe1\xe2\xdc\xe3\xe2\xdd\xe3\xe1\xdd\xe3\xe2\xdf\xe4\xe3\xde\ \xe6\xe3\xdf\xe6\xe0\xda\xdf\xe1\xdd\xe2\xe0\xdc\xe1\xde\xd8\xdd\ \xdc\xd6\xdb\xd9\xd3\xd8\xd5\xcf\xd4\xd2\xcc\xd1\xd0\xc9\xce\xce\ \xc7\xcd\xcb\xc4\xcb\xca\xc3\xca\xc9\xc2\xc9\xc9\xc1\xc8\xc8\xc1\ \xc8\xc6\xc0\xc7\xc6\xc2\xc8\xc7\xc3\xc9\xca\xc6\xcc\xcb\xc7\xce\ \xc6\xc0\xc9\xbd\xb5\xbf\xba\xb1\xbb\xb7\xaf\xba\xb7\xaf\xb8\xb4\ \xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb3\xab\xb6\xb1\xa8\xb4\xb1\xa8\ \xb5\xb1\xa8\xb5\xb2\xa9\xb6\xb1\xa9\xb5\xaf\xa7\xb4\xad\xa6\xb4\ \xa6\xa0\xb1\x94\x8f\xa8\xa5\xa3\xb4\xae\xab\xb9\xc9\xc3\xce\xe6\ \xe2\xe8\xe5\xe1\xe7\xdf\xdc\xe2\xdc\xda\xe2\xc2\xba\xc5\xaf\xa5\ \xb2\xac\xa4\xb3\xb3\xa9\xb6\xb7\xad\xb8\xb9\xb0\xbb\xbf\xb7\xc1\ \xc2\xba\xc3\xcb\xc6\xce\xd3\xcd\xd2\xd3\xce\xd3\xde\xda\xe0\xe3\ \xe0\xe4\xe2\xde\xe1\xe0\xde\xdf\xdb\xd6\xd8\xc8\xbf\xc4\xed\xeb\ \xee\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\ \xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfa\ \xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfc\xfc\ \xfc\xfa\xfa\xfa\xf6\xf6\xf6\xf4\xf4\xf4\xf6\xf6\xf6\xf5\xf5\xf5\ \xf7\xf7\xf7\xf9\xf9\xf9\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfd\ \xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfa\xfb\xce\xc8\ \xd1\xad\xa8\xb8\xa7\xa5\xb6\x9b\x9b\xaf\x85\x8c\xa4\x68\x7a\x97\ \x55\x70\x8f\x60\x7b\x98\x67\x86\x9e\x58\x7f\x94\x4e\x7c\x8d\x4b\ \x7f\x8c\x4a\x81\x8c\x4c\x84\x8e\x5a\x90\x9a\x68\x99\xa1\x69\x98\ \xa1\x61\x91\x9a\x5b\x89\x96\x5c\x86\x97\x60\x86\x99\x64\x85\x9b\ \x68\x86\x9e\x5f\x7d\x9a\x5c\x7c\x9b\x4a\x6e\x88\x26\x52\x6a\x16\ \x3a\x5c\x11\x33\x58\x16\x34\x59\x1b\x38\x5a\x17\x32\x51\x15\x29\ \x48\x14\x1b\x37\x13\x14\x2c\x12\x11\x25\x16\x15\x27\x13\x12\x22\ \x12\x10\x20\x15\x15\x24\x19\x19\x29\x17\x16\x27\x19\x1c\x31\x1c\ \x21\x36\x16\x19\x2d\x11\x13\x26\x12\x15\x27\x18\x1a\x2b\x19\x1a\ \x2a\x18\x18\x29\x1e\x22\x37\x25\x28\x3f\x00\x00\x00\xe7\xe0\xe7\ \xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe0\ \xd9\xe0\xdf\xd8\xde\xde\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xdb\ \xe1\xe2\xdd\xe3\xe2\xde\xe4\xe2\xdd\xe4\xe3\xdf\xe5\xe2\xdd\xe3\ \xe1\xdc\xe1\xe2\xde\xe3\xe0\xdc\xe1\xdd\xd9\xde\xdc\xd7\xdc\xda\ \xd4\xd9\xd6\xd0\xd5\xd3\xcd\xd2\xd0\xca\xcf\xcf\xc9\xce\xcd\xc6\ \xcd\xcc\xc5\xcc\xcb\xc4\xcb\xcb\xc4\xcb\xc9\xc4\xca\xc9\xc5\xcb\ \xc9\xc5\xcb\xc9\xc6\xcb\xca\xc5\xcc\xc9\xc4\xcb\xc0\xb9\xc2\xba\ \xb2\xbc\xb9\xb1\xbb\xb8\xaf\xb9\xb6\xae\xb8\xb6\xad\xb8\xb4\xac\ \xb7\xb3\xab\xb6\xb2\xaa\xb6\xb3\xaa\xb6\xb3\xab\xb7\xb4\xab\xb7\ \xb3\xab\xb7\xb2\xa9\xb5\xaf\xa7\xb5\xac\xa5\xb3\xa8\xa3\xb3\xb2\ \xb0\xbf\xb9\xb7\xc5\xb9\xb5\xc2\xc2\xbd\xc9\xe5\xe0\xe6\xe6\xe2\ \xe7\xe1\xdd\xe3\xd4\xcf\xd7\xb6\xad\xbb\xa9\xa1\xb1\xa8\xa1\xb1\ \xa8\xa1\xb1\x9f\x9a\xab\x9c\x96\xaa\x9c\x99\xab\x9e\x9a\xac\x97\ \x94\xa7\x71\x74\x8f\x5c\x60\x7b\x71\x6d\x85\x77\x70\x84\x6a\x62\ \x76\x5d\x56\x69\x51\x4d\x64\x5b\x5a\x73\xe6\xe4\xe7\xf6\xf6\xf6\ \xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\xfa\xfc\ \xfc\xfc\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xfb\xfb\xfb\xfc\xfc\ \xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xf9\xf9\xf9\ \xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xfb\ \xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\ \xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf4\xf3\xf4\xb6\xb2\xbe\xa7\xa4\xb4\ \x95\x94\xab\x7c\x82\x9f\x66\x77\x96\x5a\x73\x93\x5e\x76\x96\x6c\ \x7e\x9c\x78\x8c\xa6\x72\x8f\xa7\x68\x8e\xa3\x5e\x8b\x9e\x60\x8f\ \x9e\x6e\x9a\xa7\x72\x9d\xa8\x5f\x90\x9c\x5c\x8d\x98\x55\x85\x90\ \x54\x7d\x8e\x4f\x73\x8d\x4a\x6d\x8a\x4a\x6d\x8c\x4d\x72\x8f\x4f\ \x73\x90\x4f\x73\x90\x45\x69\x84\x26\x4a\x69\x1a\x38\x5e\x17\x32\ \x5b\x11\x2e\x56\x1b\x37\x5c\x1f\x3d\x5d\x1f\x33\x4f\x20\x27\x3f\ \x1b\x1c\x32\x17\x17\x2a\x15\x15\x27\x12\x11\x22\x13\x11\x21\x15\ \x14\x23\x15\x14\x23\x15\x17\x29\x23\x2b\x44\x25\x2e\x48\x1e\x24\ \x3d\x15\x1a\x30\x12\x17\x29\x17\x1b\x2d\x1b\x1d\x30\x1d\x1f\x33\ \x20\x26\x3b\x23\x28\x40\x00\x00\x00\xe7\xe0\xe7\xe4\xdd\xe4\xe3\ \xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\ \xdf\xdf\xd8\xdf\xdf\xd7\xde\xdf\xd9\xe0\xe0\xda\xe1\xe0\xdc\xe1\ \xe1\xdd\xe4\xe2\xdd\xe6\xe2\xde\xe4\xe1\xdd\xe3\xe3\xde\xe3\xe1\ \xdd\xe2\xdf\xda\xdf\xdc\xd7\xdc\xd9\xd3\xd9\xd7\xd1\xd6\xd4\xce\ \xd3\xd1\xcb\xd0\xd1\xca\xcf\xcf\xc9\xce\xcd\xc6\xcd\xcc\xc5\xcc\ \xcb\xc4\xcb\xca\xc3\xca\xc9\xc3\xc9\xc8\xc4\xca\xc9\xc5\xcb\xc9\ \xc4\xca\xca\xc3\xca\xc7\xbf\xc9\xbf\xb6\xbf\xb9\xb0\xbb\xb9\xb0\ \xba\xb8\xaf\xb9\xb7\xae\xb8\xb6\xad\xb8\xb6\xad\xb8\xb5\xac\xb8\ \xb6\xad\xb9\xb6\xae\xb9\xb6\xae\xb9\xb6\xae\xb9\xb4\xac\xb7\xb3\ \xaa\xb6\xae\xa7\xb5\xac\xa7\xb5\xc0\xbe\xc9\xd4\xd2\xdb\xd4\xd2\ \xd9\xd5\xd2\xda\xd6\xd4\xdb\xe4\xe0\xe6\xe2\xde\xe4\xdd\xd9\xe0\ \xc5\xbd\xc8\xb2\xaa\xb7\xa5\x9d\xae\xa2\x9c\xad\x9e\x98\xab\x9f\ \x99\xac\xa3\x9e\xaf\xa3\xa0\xb0\x96\x94\xa8\x6e\x74\x91\x62\x6a\ \x88\x7d\x7c\x94\x75\x72\x88\x6b\x6a\x7f\x67\x67\x7c\x63\x65\x7c\ \x60\x62\x7a\x55\x57\x71\xca\xc6\xcf\xef\xeb\xef\xf5\xf4\xf5\xf8\ \xf8\xf8\xf7\xf7\xf7\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\xf7\xf7\ \xf7\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfa\xfa\xfa\ \xfd\xfd\xfd\xfd\xfd\xfd\xfa\xfa\xfa\xf8\xf8\xf8\xf7\xf7\xf7\xf9\ \xf9\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\ \xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ \xff\xff\xff\xbe\xbb\xbd\x88\x8a\x9b\x8a\x8b\xa1\x7d\x81\x9e\x6a\ \x76\x97\x68\x77\x99\x6b\x7c\x9c\x75\x81\xa0\x76\x82\x9e\x6e\x7c\ \x9a\x69\x7e\x9a\x6b\x89\xa1\x6e\x91\xa6\x6e\x96\xa7\x77\x9f\xab\ \x72\x9c\xa6\x65\x92\x9d\x61\x8e\x99\x55\x80\x8f\x52\x6d\x93\x53\ \x64\x98\x50\x62\x97\x4c\x61\x93\x4b\x68\x91\x4d\x71\x90\x4b\x72\ \x8e\x45\x69\x87\x32\x4f\x73\x26\x40\x67\x21\x36\x5f\x1b\x31\x5c\ \x1e\x35\x5d\x25\x3b\x5e\x36\x40\x5b\x39\x3b\x4f\x2f\x2e\x42\x24\ \x22\x35\x16\x15\x27\x15\x14\x24\x15\x14\x23\x14\x13\x22\x13\x14\ \x23\x1c\x23\x39\x26\x30\x4b\x21\x29\x44\x1b\x22\x3b\x18\x1e\x37\ \x15\x1b\x31\x17\x1c\x30\x1a\x1e\x32\x1b\x1f\x34\x25\x2a\x3f\x35\ \x3b\x54\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\ \xe3\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\xe0\xdf\xd7\xdf\xde\xd7\xdf\ \xdd\xd6\xdf\xde\xd7\xde\xdd\xd9\xdf\xde\xd9\xe2\xdf\xda\xe4\xe1\ \xdc\xe5\xe0\xdc\xe3\xde\xda\xe0\xe0\xdc\xe1\xdc\xd9\xde\xd9\xd3\ \xd9\xd7\xd0\xd7\xd5\xce\xd5\xd3\xcd\xd3\xd3\xcc\xd3\xd3\xcd\xd2\ \xd2\xcc\xd1\xcf\xc8\xcf\xcd\xc6\xcd\xcb\xc4\xcb\xca\xc3\xca\xc8\ \xc1\xc8\xc8\xc2\xc8\xc8\xc2\xc9\xc8\xc1\xc8\xc9\xc2\xc9\xc9\xc2\ \xc9\xc5\xbd\xc5\xbd\xb4\xbe\xba\xb1\xbb\xbb\xb2\xbc\xba\xb1\xbb\ \xba\xb1\xbb\xba\xb1\xbc\xb9\xb0\xbb\xba\xb1\xbb\xb9\xb1\xbb\xb8\ \xaf\xbb\xb8\xb1\xbb\xb7\xaf\xba\xb5\xad\xb9\xb2\xa9\xb6\xb0\xa9\ \xb7\xc1\xbe\xca\xd8\xd5\xdd\xd9\xd6\xdd\xdc\xd9\xe0\xde\xdc\xe2\ \xe0\xdc\xe2\xe3\xdf\xe5\xe0\xdb\xe4\xdb\xd6\xdf\xc3\xbb\xc7\xb0\ \xa8\xb7\xa3\x9c\xad\xa1\x9b\xac\xa2\x9c\xad\xa7\xa1\xb2\xa2\x9f\ \xb0\x90\x8f\xa6\x6c\x73\x93\x68\x72\x91\x92\x90\xa6\xb8\xaf\xb9\ \xb6\xaa\xb3\x8c\x84\x94\x6d\x68\x7d\x6b\x68\x7d\x6c\x6b\x7f\x68\ \x68\x7e\xca\xc5\xcd\xe4\xe1\xe5\xf3\xf1\xf3\xf7\xf7\xf7\xfa\xfa\ \xfa\xfb\xfb\xfb\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\xfc\xfc\xfc\ \xfb\xfb\xfb\xfc\xfc\xfc\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfa\ \xfa\xfa\xf8\xf8\xf8\xf7\xf7\xf7\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\ \xfb\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\ \xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xdc\xdb\xdc\x4b\ \x65\x6e\x43\x66\x6f\x4b\x69\x75\x54\x6c\x7d\x5b\x71\x88\x6c\x7d\ \x93\x7d\x87\x9e\x81\x89\xa1\x80\x88\xa0\x71\x7d\x99\x66\x76\x94\ \x63\x74\x90\x64\x77\x93\x69\x82\x98\x6a\x86\x9a\x5d\x82\x91\x50\ \x7c\x87\x48\x77\x82\x47\x6e\x86\x4c\x67\x90\x53\x64\x97\x55\x64\ \x99\x55\x67\x98\x53\x6a\x96\x54\x77\x97\x57\x7d\x98\x57\x7b\x95\ \x4f\x6c\x8c\x43\x58\x7e\x37\x47\x6f\x32\x41\x6a\x2a\x3a\x64\x2f\ \x3b\x5e\x37\x39\x52\x34\x33\x48\x28\x26\x39\x1a\x18\x2b\x12\x10\ \x23\x1a\x19\x28\x19\x18\x26\x15\x15\x22\x1a\x1d\x33\x27\x30\x4b\ \x29\x34\x4f\x20\x29\x42\x1b\x23\x3c\x1b\x22\x3b\x1f\x28\x43\x20\ \x29\x45\x20\x27\x42\x21\x27\x3f\x29\x2f\x47\x60\x68\x7f\x00\x00\ \x00\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe2\ \xe0\xd7\xe1\xde\xd6\xe1\xde\xd7\xdf\xdd\xd6\xdf\xdc\xd5\xdf\xdc\ \xd5\xdf\xdb\xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xda\xe3\xdc\xd8\ \xe1\xdd\xd9\xdf\xde\xda\xdf\xd8\xd3\xd9\xd5\xd0\xd6\xd7\xd1\xd7\ \xd6\xd2\xd9\xd5\xd3\xda\xd4\xd1\xd8\xd3\xcd\xd3\xd1\xcb\xd1\xce\ \xc8\xce\xcc\xc5\xcc\xca\xc3\xca\xc9\xc2\xc9\xc7\xbf\xc6\xc5\xbd\ \xc4\xc5\xbd\xc4\xc6\xbe\xc5\xc7\xbf\xc6\xc6\xbe\xc5\xc4\xbb\xc4\ \xc0\xb6\xc1\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbd\ \xb4\xbd\xbb\xb3\xbd\xbb\xb3\xbd\xba\xb2\xbc\xba\xb2\xbc\xb9\xb1\ \xbb\xb7\xaf\xba\xb6\xad\xb8\xb3\xac\xb9\xc3\xc0\xcb\xd8\xd6\xdd\ \xd9\xd7\xdd\xdb\xd8\xdd\xe0\xdc\xe2\xdd\xdb\xe1\xde\xda\xe0\xde\ \xdb\xe1\xdf\xdb\xe1\xd4\xcf\xd7\xbb\xb3\xbf\xab\xa5\xb4\xa5\x9f\ \xb0\xa8\xa2\xb2\xa9\xa4\xb4\xa3\x9f\xb0\x91\x8f\xa7\x81\x83\xa2\ \x86\x8a\xa5\x9a\x99\xaf\xaf\xa7\xb6\xb6\xac\xb8\xbb\xb0\xb9\xbd\ \xb1\xb8\xab\x9f\xa9\x9f\x94\x9f\x8d\x84\x93\x93\x8e\x9e\xd4\xd0\ \xd7\xe9\xe6\xeb\xf3\xf2\xf3\xf6\xf7\xf6\xf9\xf9\xf9\xf9\xf9\xf9\ \xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\ \xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xf8\xf8\ \xf8\xf7\xf7\xf7\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\ \xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\ \xfd\xfd\xfd\xfe\xfd\xf0\xec\xef\x98\x9b\xa9\x70\x84\x95\x5b\x76\ \x85\x48\x6c\x7a\x3b\x65\x71\x38\x63\x6d\x3e\x65\x6f\x4c\x6c\x77\ \x5a\x74\x84\x69\x7b\x8c\x6f\x80\x93\x70\x80\x94\x75\x81\x98\x6c\ \x7b\x94\x6a\x7b\x92\x57\x72\x87\x3e\x67\x78\x33\x67\x73\x34\x68\ \x74\x38\x6a\x77\x3e\x6a\x7d\x43\x68\x84\x49\x68\x8a\x4d\x6c\x8d\ \x4e\x70\x8d\x51\x75\x90\x58\x7c\x95\x50\x75\x8c\x47\x66\x82\x59\ \x6f\x8d\x56\x67\x88\x4c\x5a\x7d\x37\x42\x68\x21\x29\x4a\x21\x24\ \x3f\x21\x23\x3e\x1f\x20\x39\x1c\x1a\x31\x15\x12\x27\x1a\x18\x29\ \x1f\x1f\x2d\x16\x16\x25\x22\x2a\x43\x31\x3d\x58\x2b\x36\x52\x22\ \x2d\x46\x20\x2b\x42\x20\x2a\x44\x23\x2c\x48\x20\x29\x44\x1d\x26\ \x41\x24\x2b\x46\x2d\x34\x4e\x64\x6d\x81\x00\x00\x00\xe5\xde\xe5\ \xe3\xdc\xe3\xe3\xdc\xe2\xe3\xdb\xe4\xe0\xd8\xe2\xdf\xd7\xe1\xde\ \xd6\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\xd6\ \xdf\xdb\xd7\xe0\xdc\xd9\xe1\xdc\xd9\xe3\xda\xd6\xdf\xda\xd6\xdc\ \xd7\xd2\xd8\xd5\xd0\xd6\xd9\xd6\xdb\xdc\xd8\xdd\xda\xd6\xdb\xd8\ \xd3\xd8\xd6\xd1\xd6\xd5\xcf\xd4\xd2\xcc\xd1\xd0\xca\xcf\xce\xc8\ \xce\xc9\xc2\xc9\xc4\xbd\xc3\xc2\xba\xc1\xc1\xb9\xc1\xc3\xbb\xc2\ \xc5\xbd\xc4\xc5\xbd\xc4\xc6\xbd\xc4\xc7\xc0\xc7\xc2\xba\xc3\xbf\ \xb6\xc0\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbe\xb5\xbf\xbc\xb3\ \xbd\xbc\xb3\xbd\xbb\xb3\xbd\xba\xb3\xbd\xb9\xb1\xbb\xb8\xb0\xbb\ \xb5\xad\xb9\xc7\xc2\xcd\xd8\xd6\xde\xd9\xd6\xdf\xd9\xd7\xdc\xdd\ \xda\xe0\xdd\xdb\xe1\xdb\xd9\xdf\xdc\xd9\xdf\xdd\xd9\xdf\xca\xc5\ \xce\xb7\xb1\xbd\xb1\xab\xb7\xac\xa6\xb5\xb1\xaa\xb8\xb3\xad\xba\ \xb3\xad\xbb\xac\xa8\xba\xa8\xa6\xbb\xab\xaa\xbd\xaa\xa7\xba\xa4\ \xa1\xb4\xa7\xa2\xb5\xae\xa7\xb6\xb3\xab\xb8\xbb\xb0\xb9\xc1\xb4\ \xbb\xc5\xb8\xbb\xc3\xb5\xb9\xca\xc3\xca\xe7\xe3\xe9\xf1\xef\xf1\ \xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\ \xfa\xfa\xf9\xf9\xf9\xf6\xf6\xf6\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\ \xfa\xf9\xf9\xf9\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\ \xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfb\ \xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf9\xf8\ \xf9\xce\xc9\xd0\xb9\xb3\xc0\xb1\xae\xbc\xa5\xa4\xb3\x8f\x95\xa6\ \x7a\x88\x9b\x65\x7c\x8e\x51\x70\x81\x43\x69\x77\x3d\x66\x72\x3b\ \x64\x6f\x3b\x65\x70\x41\x6a\x74\x51\x70\x7c\x5a\x76\x84\x5a\x74\ \x86\x40\x66\x77\x30\x5e\x6f\x2d\x60\x6f\x2e\x62\x6f\x31\x65\x72\ \x34\x68\x75\x33\x67\x74\x3a\x6a\x79\x3d\x6c\x7d\x3d\x6c\x7d\x3c\ \x6c\x7b\x3b\x6b\x7a\x3f\x6d\x7d\x43\x6a\x7d\x3a\x54\x71\x3e\x4c\ \x6a\x38\x42\x62\x24\x2d\x4d\x12\x1a\x37\x18\x1d\x39\x30\x33\x4b\ \x31\x33\x4a\x27\x27\x3d\x1e\x1e\x32\x1a\x1a\x2d\x1d\x1d\x2e\x15\ \x15\x26\x2c\x33\x4b\x3a\x44\x60\x33\x3e\x5b\x27\x32\x4d\x22\x2e\ \x48\x27\x31\x4c\x28\x31\x4c\x22\x2b\x47\x1e\x27\x42\x1f\x28\x43\ \x26\x2e\x4a\x4b\x5a\x72\x00\x00\x00\xe4\xdd\xe5\xe2\xdc\xe4\xe2\ \xdb\xe3\xe0\xd9\xe3\xe0\xd8\xe2\xdd\xd7\xe1\xdb\xd6\xe0\xdb\xd5\ \xde\xda\xd4\xde\xd9\xd4\xde\xd8\xd4\xdf\xd9\xd5\xe0\xda\xd6\xe1\ \xdc\xd8\xe3\xdc\xd9\xe3\xd9\xd5\xdf\xd7\xd1\xd9\xdd\xd8\xde\xdf\ \xdb\xe0\xe0\xdc\xe1\xdd\xd8\xdd\xdd\xd7\xdc\xdb\xd5\xda\xd9\xd3\ \xd8\xd6\xd0\xd5\xd2\xcc\xd1\xd0\xca\xcf\xcc\xc5\xcb\xc7\xbf\xc7\ \xc6\xbf\xc6\xc6\xbe\xc5\xc5\xbe\xc5\xc5\xbd\xc4\xc3\xbb\xc2\xc4\ \xbd\xc4\xc9\xc2\xc9\xca\xc3\xca\xc5\xbd\xc5\xbf\xb6\xbf\xbe\xb5\ \xbe\xbe\xb5\xbf\xbe\xb5\xbe\xbd\xb4\xbe\xbd\xb5\xbf\xbc\xb4\xbe\ \xbb\xb4\xbe\xbc\xb3\xbd\xb9\xb1\xbb\xb8\xb0\xbb\xc9\xc5\xcf\xdb\ \xd8\xe0\xda\xd7\xe0\xd9\xd6\xdd\xdb\xd9\xdf\xdb\xd9\xdf\xda\xd8\ \xde\xda\xd7\xdd\xdb\xd7\xdd\xd2\xce\xd5\xb4\xb0\xbc\xaf\xab\xb7\ \xb1\xab\xb8\xb4\xaf\xba\xb6\xb0\xbb\xb6\xaf\xbc\xc0\xbb\xc9\xc5\ \xc0\xce\xc0\xba\xc9\xb9\xb5\xc5\xb2\xae\xbf\xac\xa8\xbb\xa7\xa3\ \xb6\xaa\xa6\xb6\xae\xa8\xb8\xb6\xad\xb9\xbb\xb1\xba\xbf\xb2\xba\ \xc2\xb7\xbd\xdc\xd4\xda\xef\xed\xf0\xf4\xf3\xf4\xf5\xf5\xf5\xf5\ \xf5\xf5\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\ \xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\ \xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfb\ \xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\ \xfc\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xf0\xef\xf0\xc7\xc2\xca\ \xc0\xbb\xc4\xbc\xb6\xc1\xb5\xae\xba\xad\xa7\xb5\xa6\xa2\xb1\x9f\ \x9c\xae\x94\x95\xa9\x86\x8d\xa3\x78\x84\x9b\x64\x7a\x8f\x53\x71\ \x83\x45\x6b\x78\x3c\x69\x73\x3b\x69\x72\x3d\x68\x76\x3c\x67\x79\ \x35\x62\x74\x2f\x5f\x71\x2e\x60\x71\x31\x63\x73\x30\x63\x72\x34\ \x68\x75\x38\x6b\x77\x39\x6c\x78\x3c\x6e\x7a\x3d\x6f\x7b\x3a\x6d\ \x7a\x3c\x6d\x7b\x42\x6d\x7d\x39\x56\x72\x29\x3b\x5e\x1e\x2b\x4d\ \x17\x20\x40\x0f\x18\x35\x1f\x25\x3f\x33\x38\x4c\x2f\x31\x46\x24\ \x25\x3c\x1c\x1e\x35\x11\x15\x2d\x0f\x12\x27\x0c\x0e\x22\x1c\x21\ \x37\x37\x3f\x58\x3d\x46\x61\x33\x3d\x5a\x2b\x36\x53\x26\x2f\x4c\ \x28\x31\x4d\x24\x2d\x4a\x1f\x28\x43\x21\x29\x46\x29\x34\x50\x4c\ \x5f\x77\x00\x00\x00\xe2\xdd\xe6\xe1\xdb\xe4\xdf\xda\xe3\xdf\xd9\ \xe2\xdd\xd8\xe1\xdc\xd6\xe0\xdb\xd4\xdf\xd9\xd3\xde\xd8\xd3\xde\ \xd6\xd2\xdd\xd8\xd4\xdf\xd9\xd5\xe0\xdb\xd7\xe2\xdc\xd8\xe3\xdc\ \xd9\xe4\xde\xdc\xe4\xe3\xdf\xe5\xe4\xe1\xe5\xe3\xdf\xe4\xe1\xdc\ \xe1\xe0\xda\xdf\xde\xd8\xdd\xdb\xd4\xd9\xd7\xd1\xd6\xd2\xcc\xd1\ \xcf\xc9\xce\xcd\xc6\xcd\xcb\xc5\xcb\xca\xc3\xc9\xc9\xc2\xc9\xc6\ \xbf\xc6\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbe\xc5\xc8\xc1\xc8\xc9\xc2\ \xc9\xc9\xc2\xc9\xc4\xbd\xc4\xbe\xb6\xbe\xbd\xb4\xbe\xbd\xb4\xbe\ \xbd\xb4\xbe\xbe\xb5\xbe\xbd\xb5\xbf\xbd\xb4\xbe\xbd\xb4\xbe\xbc\ \xb2\xbd\xbb\xb1\xbc\xc6\xc0\xcb\xd9\xd6\xdf\xdb\xd9\xe1\xd9\xd7\ \xde\xdc\xd9\xdf\xdb\xd9\xdf\xd9\xd6\xdc\xd9\xd6\xdc\xda\xd6\xdc\ \xd7\xd2\xd8\xc0\xba\xc4\xb2\xac\xb9\xb2\xac\xb8\xb2\xac\xb9\xb0\ \xac\xb8\xb5\xb0\xbc\xc4\xbf\xcd\xcd\xca\xd5\xcc\xc7\xd3\xc8\xc4\ \xd0\xc3\xbf\xcc\xbb\xb7\xc7\xb4\xb1\xc1\xae\xab\xbd\xac\xa9\xba\ \xae\xaa\xba\xb2\xac\xbb\xb8\xaf\xbb\xbb\xb1\xbc\xbf\xb5\xbe\xe3\ \xdd\xe2\xf2\xf2\xf3\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf2\xf3\xf1\xf1\ \xf3\xf3\xf2\xf3\xf4\xf3\xf4\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf3\xf4\ \xf5\xf5\xf5\xf3\xf3\xf4\xf3\xf3\xf4\xf5\xf5\xf5\xf8\xf8\xf8\xf9\ \xf9\xf9\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfc\xfc\ \xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfa\xfb\xfb\ \xfc\xfd\xfd\xf8\xf7\xf7\xdd\xd9\xdc\xc2\xbb\xc4\xbc\xb6\xbf\xb7\ \xae\xba\xb1\xa9\xb6\xad\xa6\xb5\xa9\xa4\xb3\xa4\xa0\xb0\xa2\x9e\ \xaf\xa0\x9c\xaf\x9e\x9b\xae\x9b\x99\xad\x97\x97\xab\x8f\x93\xa6\ \x84\x8e\xa0\x75\x88\x99\x67\x81\x93\x50\x74\x89\x41\x6b\x7f\x37\ \x67\x77\x32\x65\x75\x32\x67\x75\x33\x67\x75\x34\x68\x76\x38\x6b\ \x77\x3b\x6d\x78\x3c\x6e\x7a\x3b\x6e\x79\x3c\x6f\x7a\x3f\x70\x7b\ \x42\x6e\x7d\x43\x69\x7e\x3c\x54\x74\x2e\x3d\x62\x23\x2f\x51\x16\ \x1f\x3c\x18\x1d\x39\x14\x17\x30\x0f\x13\x2c\x0f\x13\x2b\x10\x16\ \x2e\x10\x16\x2e\x14\x1a\x32\x14\x1a\x32\x12\x16\x2e\x19\x1f\x33\ \x23\x2a\x40\x28\x32\x4c\x2f\x3c\x59\x27\x33\x50\x25\x31\x4c\x22\ \x2c\x47\x1a\x23\x40\x1d\x27\x45\x30\x3d\x5a\x4e\x63\x78\x00\x00\ \x00\xe3\xde\xe7\xe0\xdb\xe4\xdf\xda\xe3\xdd\xd8\xe1\xdd\xd7\xe2\ \xdb\xd6\xe1\xda\xd5\xe0\xd8\xd4\xdf\xd7\xd3\xde\xd6\xd2\xde\xd8\ \xd4\xdf\xd9\xd5\xe0\xdb\xd7\xe2\xdc\xd8\xe3\xdf\xdb\xe5\xe7\xe3\ \xe9\xe8\xe4\xe9\xe5\xe1\xe6\xe3\xe0\xe5\xe0\xdb\xe0\xdd\xd7\xdc\ \xd9\xd2\xd7\xd4\xcd\xd2\xd0\xc9\xce\xce\xc7\xcc\xce\xc7\xcc\xce\ \xc7\xcd\xcd\xc7\xcc\xcc\xc5\xcb\xc8\xc1\xc8\xc7\xc0\xc7\xc7\xbf\ \xc6\xc7\xc0\xc7\xc7\xc0\xc7\xc6\xbe\xc5\xc5\xbd\xc5\xc7\xc0\xc7\ \xc6\xbf\xc6\xc0\xb7\xc0\xbe\xb5\xbf\xbc\xb3\xbd\xbd\xb4\xbe\xbd\ \xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbc\xb3\xbd\xbb\xb3\xbc\xc1\xba\ \xc4\xd7\xd4\xdd\xdc\xd9\xe2\xdb\xd9\xe0\xdc\xda\xe0\xdb\xd9\xdf\ \xd8\xd6\xdc\xd7\xd4\xda\xd9\xd5\xdb\xd7\xd4\xd9\xc4\xbd\xc6\xb7\ \xaf\xbb\xb4\xad\xba\xb5\xaf\xbb\xb0\xab\xb8\xb7\xb3\xbf\xca\xc6\ \xd3\xd5\xd0\xdc\xd5\xd0\xdb\xd3\xcd\xd8\xcf\xc9\xd5\xca\xc5\xd1\ \xc4\xbf\xcc\xbd\xb9\xc8\xb6\xb3\xc3\xb1\xae\xbe\xaf\xac\xbc\xb2\ \xad\xbd\xb5\xaf\xbd\xb6\xae\xbc\xba\xb0\xbb\xcc\xc4\xca\xe2\xdc\ \xde\xec\xe8\xea\xf0\xed\xef\xf0\xed\xf0\xef\xec\xf1\xef\xec\xf0\ \xf0\xed\xf1\xf1\xef\xf1\xf0\xee\xf0\xed\xea\xee\xf2\xf0\xf1\xf1\ \xee\xf2\xf8\xf5\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfb\xfb\xec\xe9\xea\xd4\ \xcd\xd2\xc0\xb9\xc0\xbb\xb2\xbd\xb7\xae\xb9\xb3\xaa\xb7\xb1\xa8\ \xb6\xae\xa6\xb5\xab\xa4\xb3\xa7\xa1\xb2\xa4\x9f\xb0\xa2\x9e\xaf\ \xa0\x9d\xae\xa1\x9d\xaf\xa2\x9e\xaf\xa4\xa0\xb0\xa4\xa0\xb0\xa2\ \x9f\xaf\x9f\x9f\xaf\x77\x88\x9c\x4a\x71\x85\x3f\x6f\x7d\x37\x6d\ \x79\x36\x6d\x78\x35\x6c\x76\x35\x6c\x76\x35\x6b\x75\x36\x6b\x75\ \x37\x6c\x75\x38\x6c\x75\x38\x6c\x75\x39\x6b\x75\x3b\x6a\x77\x40\ \x6a\x7a\x3e\x5c\x74\x36\x48\x6d\x31\x3f\x64\x1d\x28\x48\x11\x16\ \x34\x0e\x11\x2d\x0b\x0f\x28\x0b\x10\x28\x0f\x16\x2d\x12\x19\x2f\ \x16\x1c\x32\x13\x18\x2f\x12\x16\x2c\x11\x17\x2a\x11\x15\x27\x16\ \x1d\x31\x27\x33\x4e\x2b\x37\x54\x2b\x36\x51\x25\x2f\x4a\x1a\x24\ \x41\x1c\x26\x43\x32\x40\x5c\x4b\x61\x77\x00\x00\x00\xe2\xdc\xe7\ \xe0\xdb\xe5\xde\xda\xe4\xdd\xd7\xe2\xdc\xd7\xe2\xdb\xd7\xe2\xda\ \xd6\xe1\xd9\xd5\xe0\xd7\xd3\xdf\xd6\xd2\xde\xd8\xd4\xdf\xd9\xd5\ \xe0\xdb\xd7\xe2\xdd\xda\xe4\xe5\xe2\xe7\xe6\xe2\xe7\xe4\xe0\xe6\ \xe3\xdf\xe5\xe0\xdb\xe0\xd9\xd4\xd9\xd5\xce\xd3\xd3\xcc\xd1\xd1\ \xca\xcf\xcf\xc8\xcd\xd0\xc9\xce\xd0\xc9\xce\xcf\xc9\xce\xcc\xc6\ \xcb\xc9\xc1\xc8\xc8\xc0\xc7\xc7\xc0\xc7\xc6\xbf\xc6\xc5\xbd\xc4\ \xc5\xbd\xc4\xc5\xbe\xc5\xc7\xbe\xc5\xc8\xc0\xc7\xc7\xc0\xc7\xc1\ \xb9\xc1\xbe\xb5\xbf\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbe\xb5\ \xbf\xbd\xb4\xbe\xbc\xb3\xbd\xbd\xb5\xbf\xd4\xd0\xd8\xde\xdc\xe2\ \xde\xdb\xe2\xdb\xd9\xdf\xda\xd8\xde\xda\xd8\xde\xd7\xd5\xdb\xd8\ \xd5\xdb\xd5\xd0\xd7\xc6\xbe\xc7\xbf\xb7\xc1\xb6\xaf\xba\xb6\xb0\ \xbb\xb3\xad\xb9\xb8\xb4\xc0\xd0\xcc\xd6\xd9\xd4\xdd\xd9\xd3\xde\ \xd7\xd1\xdc\xd5\xcf\xda\xd3\xcd\xd8\xcf\xc8\xd3\xc9\xc5\xd1\xc3\ \xbf\xcd\xbe\xba\xc9\xb8\xb5\xc5\xb4\xb1\xc1\xb3\xaf\xbf\xb5\xaf\ \xbf\xb5\xae\xbb\xb6\xae\xba\xb9\xaf\xba\xba\xaf\xb9\xbb\xb1\xba\ \xc3\xb8\xbf\xd4\xcb\xce\xe1\xd9\xdc\xe8\xe2\xe5\xed\xe9\xed\xed\ \xe9\xee\xee\xea\xee\xeb\xe7\xec\xf0\xed\xf0\xeb\xe8\xea\x90\x86\ \x8e\x81\x77\x7d\x93\x86\x87\x94\x87\x87\x99\x8d\x8d\x9f\x93\x93\ \xa6\x9a\x9c\xa9\x9f\xa0\xbc\xb4\xb2\xb0\xa5\xa6\xc5\xbe\xc0\xcc\ \xc5\xc7\xce\xc8\xca\xc6\xbf\xc4\xc2\xba\xc0\xbd\xb4\xbe\xb9\xaf\ \xba\xb6\xac\xb8\xb5\xac\xb7\xb3\xaa\xb7\xb2\xa8\xb5\xae\xa7\xb4\ \xac\xa5\xb4\xa9\xa3\xb2\xa8\xa2\xb2\xa6\xa0\xb1\xa5\xa0\xb1\xa7\ \xa1\xb1\xa9\xa4\xb2\xa9\xa4\xb3\xa9\xa4\xb2\xa7\xa2\xb1\xa7\xa3\ \xb2\x9d\x9d\xad\x79\x8a\x9c\x52\x7b\x89\x46\x79\x84\x40\x77\x81\ \x3b\x74\x7d\x3b\x74\x7d\x3d\x75\x7e\x3b\x73\x7a\x3c\x73\x7b\x3d\ \x72\x7b\x39\x6e\x77\x37\x6a\x76\x35\x68\x75\x38\x66\x76\x38\x5e\ \x75\x2a\x44\x67\x2d\x3f\x66\x25\x30\x55\x13\x1b\x3b\x0e\x14\x32\ \x0e\x13\x2f\x0f\x16\x33\x14\x1d\x37\x13\x19\x2f\x0f\x12\x25\x14\ \x16\x2b\x19\x1d\x31\x18\x1c\x2f\x19\x1d\x2f\x15\x18\x2a\x1b\x23\ \x39\x2a\x34\x4f\x2b\x35\x50\x26\x2f\x48\x1e\x27\x43\x1b\x25\x40\ \x2e\x3c\x58\x46\x5c\x73\x00\x00\x00\xe1\xdd\xe7\xdf\xdb\xe6\xdd\ \xd9\xe4\xdc\xd9\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xda\xd6\xe1\xda\xd6\ \xe1\xd9\xd5\xe0\xd8\xd4\xe0\xd8\xd4\xdf\xda\xd6\xe1\xdb\xd7\xe2\ \xde\xda\xe4\xdf\xdb\xe4\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xd8\ \xd2\xdb\xd3\xcc\xd1\xd2\xcb\xd0\xd2\xcb\xd0\xd1\xca\xcf\xd3\xcc\ \xd0\xd1\xca\xcf\xd0\xc9\xce\xcd\xc6\xcb\xc9\xc2\xc7\xc6\xbe\xc4\ \xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc4\xc5\ \xbd\xc4\xc4\xbc\xc3\xc6\xbe\xc5\xc8\xc0\xc7\xc2\xb9\xc3\xbe\xb5\ \xbf\xbd\xb4\xbe\xbc\xb4\xbd\xbe\xb5\xbf\xbf\xb5\xbe\xbe\xb4\xbd\ \xbd\xb5\xbe\xcc\xc8\xd1\xdc\xda\xe0\xdd\xda\xe1\xdc\xda\xe0\xd9\ \xd7\xdd\xd8\xd6\xdc\xd9\xd7\xdd\xd8\xd6\xdc\xd8\xd2\xd9\xd1\xca\ \xd3\xd7\xd0\xda\xc8\xc3\xcc\xb7\xaf\xbb\xb8\xb2\xbd\xb5\xb0\xbd\ \xcc\xc8\xd3\xdb\xd6\xe0\xda\xd5\xde\xd9\xd3\xdd\xd7\xd1\xdc\xd6\ \xd0\xdb\xd3\xcd\xd8\xd2\xcc\xd7\xce\xc9\xd4\xca\xc5\xd2\xc5\xc1\ \xce\xc0\xbd\xcb\xbb\xb6\xc6\xb6\xb3\xc3\xb5\xb1\xc0\xb5\xaf\xbe\ \xb5\xae\xbb\xb4\xac\xb9\xb2\xa9\xb6\xb3\xa9\xb5\xb7\xac\xb6\xbb\ \xae\xb7\xbd\xb0\xb9\xc3\xb7\xbd\xce\xc6\xca\xe2\xdc\xe1\xe7\xe3\ \xe7\xe9\xe4\xe9\xe8\xe3\xe6\xa6\x9d\xa2\x51\x4f\x62\x47\x48\x5c\ \x46\x47\x5d\x44\x46\x5c\x40\x43\x5b\x3c\x40\x59\x40\x43\x5a\x44\ \x46\x5c\x45\x49\x5f\x4c\x4d\x64\x59\x5a\x6e\x74\x71\x81\x8a\x82\ \x91\x8e\x86\x93\x9a\x8f\x9b\xb0\xa7\xb1\xb6\xad\xb8\xb6\xac\xb8\ \xb5\xac\xb8\xb3\xaa\xb7\xb2\xa9\xb6\xb0\xa7\xb6\xae\xa7\xb5\xac\ \xa5\xb4\xaa\xa4\xb4\xa9\xa3\xb3\xaa\xa5\xb3\xae\xa7\xb5\xaf\xa8\ \xb5\xaf\xa8\xb5\xaf\xa8\xb4\xae\xa7\xb4\xad\xa7\xb4\xae\xa8\xb5\ \xab\xa6\xb4\x9a\x9e\xad\x83\x94\xa3\x6b\x8b\x98\x5c\x85\x91\x54\ \x83\x8f\x52\x85\x8f\x4d\x82\x8c\x51\x84\x8e\x52\x83\x8e\x4c\x7c\ \x89\x42\x73\x83\x3d\x6c\x7f\x3a\x67\x7d\x36\x60\x7c\x28\x49\x6d\ \x28\x3f\x65\x24\x30\x55\x1b\x22\x44\x19\x1e\x40\x19\x20\x40\x16\ \x1f\x3e\x1c\x26\x45\x22\x2a\x42\x22\x22\x37\x26\x29\x3e\x2d\x31\ \x46\x20\x24\x36\x25\x29\x3a\x23\x26\x39\x1c\x21\x39\x25\x2e\x49\ \x27\x30\x4a\x25\x2d\x46\x1b\x22\x3c\x18\x1e\x39\x27\x32\x4c\x3d\ \x53\x6b\x00\x00\x00\xe2\xde\xe8\xe0\xdc\xe7\xde\xda\xe5\xdd\xd9\ \xe4\xdc\xd8\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe0\ \xd9\xd5\xe0\xd9\xd5\xe0\xda\xd6\xe1\xdc\xd8\xe3\xde\xd9\xe4\xdd\ \xd9\xe4\xdd\xd9\xe4\xde\xda\xe4\xdf\xdc\xe6\xda\xd5\xdf\xd1\xca\ \xd1\xcf\xc7\xcd\xce\xc7\xcc\xce\xc6\xcb\xcf\xc8\xcd\xcf\xc8\xcd\ \xcb\xc4\xc9\xc8\xc1\xc6\xc7\xbf\xc5\xc6\xbe\xc4\xc6\xbe\xc4\xc7\ \xbf\xc6\xc7\xbf\xc6\xc5\xbd\xc4\xc3\xbb\xc3\xc4\xbc\xc3\xc5\xbd\ \xc4\xc6\xbe\xc5\xc7\xbe\xc5\xc3\xbb\xc3\xbe\xb5\xbf\xbe\xb5\xbf\ \xbe\xb5\xbe\xbd\xb4\xbd\xc0\xb5\xbe\xbf\xb4\xbd\xc7\xc1\xca\xd9\ \xd7\xdd\xdb\xd9\xdf\xd9\xd7\xdf\xd8\xd6\xdd\xd7\xd5\xdb\xd9\xd7\ \xdd\xd6\xd0\xd8\xd6\xd0\xd7\xdb\xd6\xdc\xe0\xdc\xe3\xe1\xdc\xe3\ \xc4\xbe\xc9\xb7\xb1\xbc\xb7\xb1\xbd\xc8\xc3\xcf\xda\xd5\xdf\xdc\ \xd7\xe0\xda\xd5\xde\xd9\xd3\xdd\xd8\xd1\xdc\xd6\xd0\xdb\xd4\xce\ \xd9\xd2\xcc\xd7\xd1\xcb\xd6\xce\xc8\xd4\xcb\xc6\xd2\xc7\xc3\xcf\ \xc3\xbf\xcc\xbf\xbb\xc9\xba\xb6\xc5\xb6\xb1\xc0\xb5\xb0\xbd\xb4\ \xae\xbb\xb3\xac\xb9\xb3\xab\xb7\xb4\xaa\xb5\xb6\xaa\xb6\xb8\xab\ \xb5\xb5\xa9\xb3\xba\xb1\xba\xbf\xb6\xbd\xc5\xbd\xc2\xc6\xbe\xc5\ \xa2\x99\xa2\x5d\x59\x6a\x48\x47\x5a\x42\x43\x58\x46\x48\x5f\x41\ \x45\x5d\x3e\x42\x5d\x3e\x43\x5f\x3b\x41\x5a\x3c\x42\x5a\x40\x45\ \x5d\x41\x46\x5f\x41\x46\x5f\x42\x47\x5f\x47\x4b\x61\x48\x48\x5f\ \x58\x55\x69\x84\x7c\x8b\xa3\x98\xa5\xb1\xa7\xb3\xb5\xac\xb7\xb4\ \xac\xb8\xb4\xab\xb7\xb2\xa9\xb6\xaf\xa8\xb5\xae\xa7\xb5\xae\xa8\ \xb5\xaf\xa8\xb6\xb0\xa9\xb6\xb3\xaa\xb7\xb3\xab\xb6\xb3\xab\xb7\ \xb3\xab\xb7\xb2\xab\xb6\xb2\xab\xb7\xb2\xab\xb7\xb2\xab\xb7\xb2\ \xab\xb7\xad\xa8\xb5\xa2\xa1\xb1\x93\x99\xab\x83\x92\xa4\x7a\x8e\ \xa1\x74\x8d\x9f\x70\x8d\x9f\x6c\x8c\x9e\x5b\x80\x95\x4b\x73\x8d\ \x40\x67\x8a\x3d\x61\x88\x3c\x62\x86\x38\x5e\x82\x3b\x5a\x7e\x44\ \x57\x7b\x40\x46\x68\x37\x39\x59\x31\x35\x55\x28\x30\x52\x31\x3a\ \x59\x47\x4b\x62\x38\x38\x4b\x2a\x29\x3e\x2d\x2e\x44\x29\x2a\x3e\ \x2c\x2d\x41\x36\x39\x4d\x30\x36\x4f\x2c\x33\x4f\x26\x2e\x49\x22\ \x29\x41\x1d\x23\x3a\x1d\x22\x39\x26\x2e\x46\x34\x45\x5e\x00\x00\ \x00\xe2\xdf\xe9\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd9\xe4\xdc\xd8\xe3\ \xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe0\xd9\ \xd5\xe1\xdc\xd7\xe2\xde\xd9\xe2\xdf\xda\xe4\xdf\xda\xe3\xdf\xda\ \xe3\xdd\xda\xe4\xdf\xdb\xe6\xdf\xdb\xe6\xda\xd5\xe0\xd5\xce\xd4\ \xd3\xcc\xd1\xd1\xca\xcf\xcf\xc8\xcd\xcc\xc5\xca\xc8\xc0\xc6\xc7\ \xbf\xc5\xc9\xbf\xc5\xc8\xc0\xc6\xc8\xc0\xc7\xc9\xc1\xc9\xc7\xbf\ \xc6\xc3\xbc\xc2\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc5\xbd\xc4\ \xc8\xc0\xc7\xc3\xbb\xc3\xbf\xb6\xc0\xbe\xb5\xbe\xbd\xb4\xbd\xbd\ \xb3\xbd\xc0\xb5\xbe\xc4\xbb\xc4\xd6\xd3\xda\xda\xd8\xde\xd9\xd7\ \xdf\xd8\xd5\xde\xd6\xd4\xdb\xda\xd7\xdd\xd3\xcc\xd5\xd8\xd1\xd9\ \xe0\xdc\xe2\xe2\xde\xe4\xe3\xdf\xe5\xe0\xdc\xe2\xc1\xb9\xc4\xba\ \xb4\xbf\xc9\xc4\xcf\xda\xd5\xde\xdd\xd7\xe0\xdd\xd6\xe0\xda\xd5\ \xde\xd9\xd4\xdd\xd7\xd1\xdc\xd6\xd0\xdb\xd4\xce\xd9\xd1\xcb\xd7\ \xd1\xcb\xd6\xcf\xc9\xd4\xcf\xc9\xd4\xce\xc8\xd3\xcb\xc5\xd1\xc7\ \xc2\xce\xc1\xbe\xcb\xbd\xb8\xc7\xba\xb6\xc3\xba\xb3\xc0\xb8\xb1\ \xbe\xb6\xaf\xbc\xb5\xad\xba\xb6\xac\xb9\xb6\xad\xb9\xb1\xa7\xb3\ \xb2\xa8\xb4\xb7\xad\xb9\xbc\xb3\xbd\xbc\xb4\xbe\xab\xa3\xb0\x7c\ \x77\x87\x4c\x4a\x5c\x50\x4f\x63\x50\x51\x66\x42\x44\x5b\x3f\x43\ \x5c\x42\x46\x60\x3c\x41\x58\x39\x3e\x55\x39\x3e\x57\x3c\x41\x5a\ \x3d\x42\x5b\x3c\x41\x5a\x3b\x3f\x58\x37\x3c\x55\x38\x3c\x55\x43\ \x45\x5d\x5c\x58\x6c\x82\x79\x89\x99\x91\x9d\xa7\x9e\xac\xaf\xa6\ \xb3\xb3\xab\xb7\xb3\xac\xb8\xb2\xaa\xb6\xb2\xab\xb6\xb3\xac\xb7\ \xb5\xad\xb8\xb4\xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb5\xad\xb8\xb5\ \xad\xb8\xb5\xad\xb8\xb5\xad\xb8\xb5\xad\xb8\xb2\xab\xb7\xae\xa8\ \xb5\xa7\xa3\xb2\x9e\x9d\xae\x97\x98\xac\x8d\x92\xa7\x84\x8c\xa4\ \x7d\x89\xa1\x76\x85\xa0\x5d\x74\x9c\x4e\x67\x97\x44\x61\x92\x3f\ \x61\x8d\x3b\x62\x8b\x34\x5f\x86\x34\x5a\x83\x45\x5f\x89\x4d\x5b\ \x87\x4d\x53\x7b\x49\x4f\x73\x43\x4b\x6f\x41\x48\x6b\x40\x42\x5e\ \x34\x33\x4a\x2e\x2b\x41\x30\x2f\x43\x38\x37\x49\x36\x37\x49\x37\ \x3a\x4e\x3a\x3f\x57\x32\x39\x53\x28\x2f\x4a\x22\x28\x3f\x23\x28\ \x3e\x1d\x22\x37\x1d\x23\x39\x28\x31\x48\x00\x00\x00\xe2\xdf\xe9\ \xe1\xdd\xe8\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd9\xe4\xdc\xd9\xe3\xdd\ \xd9\xe4\xdd\xd8\xe3\xdd\xd7\xe2\xdc\xd7\xe1\xdd\xd8\xe2\xdd\xd8\ \xe1\xde\xd9\xe2\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xdb\xe4\ \xe0\xdd\xe6\xe1\xde\xe7\xe1\xde\xe7\xdf\xdb\xe5\xdb\xd6\xdf\xd6\ \xd0\xd6\xd2\xca\xd0\xcd\xc5\xcb\xca\xc2\xc8\xcb\xc4\xc9\xca\xc4\ \xc9\xcb\xc3\xc9\xca\xc3\xc9\xc9\xc1\xc7\xc5\xbc\xc4\xc5\xbc\xc4\ \xc4\xbd\xc4\xc4\xbc\xc3\xc7\xbf\xc6\xc9\xc1\xc8\xc9\xc1\xc8\xc3\ \xba\xc3\xbf\xb7\xc0\xbf\xb6\xc1\xc5\xbc\xc7\xc9\xc2\xcb\xc7\xbe\ \xc8\xcf\xca\xd1\xda\xd9\xde\xda\xd8\xdf\xd8\xd6\xde\xd9\xd7\xde\ \xd8\xd5\xdb\xcb\xc0\xcd\xda\xd2\xdb\xe3\xdf\xe5\xe4\xe0\xe6\xe4\ \xdf\xe6\xe4\xe0\xe6\xe0\xdc\xe3\xbe\xb6\xc2\xc0\xb9\xc4\xda\xd5\ \xdd\xdd\xd8\xdf\xdd\xd6\xdf\xde\xd5\xe0\xd9\xd5\xdd\xd9\xd3\xdd\ \xd7\xd1\xdc\xd5\xcf\xda\xd4\xce\xd9\xd2\xcb\xd8\xd0\xcb\xd6\xd0\ \xca\xd5\xd0\xca\xd5\xd1\xcb\xd6\xd1\xcb\xd6\xcf\xc9\xd3\xcc\xc6\ \xd1\xc8\xc1\xcd\xc4\xbe\xc9\xc0\xb9\xc6\xbe\xb7\xc3\xbb\xb4\xc1\ \xb8\xb1\xbe\xb8\xb0\xbc\xb9\xb1\xbc\xb8\xaf\xbb\xb7\xae\xba\xbb\ \xb2\xbd\xbe\xb5\xbf\xbe\xb5\xbf\xbd\xb5\xbf\xa0\x99\xa6\x65\x61\ \x74\x63\x62\x78\x60\x61\x78\x54\x55\x6c\x4e\x51\x6a\x53\x56\x70\ \x48\x4a\x62\x3b\x3e\x56\x39\x3e\x56\x3d\x42\x5a\x41\x47\x5e\x3e\ \x44\x5b\x3b\x40\x59\x3a\x41\x5a\x39\x40\x5a\x39\x40\x59\x38\x3e\ \x57\x3f\x44\x5b\x53\x54\x69\x6b\x67\x7c\x80\x79\x8c\x99\x92\x9f\ \xaa\xa3\xae\xb0\xa8\xb3\xb1\xa8\xb2\xac\xa4\xaf\x99\x8f\x9b\xa0\ \x97\xa3\xb3\xab\xb5\xb6\xae\xb9\xb7\xaf\xba\xb7\xaf\xba\xb7\xaf\ \xba\xb7\xaf\xba\xb6\xae\xb9\xb3\xaa\xb7\xad\xa7\xb5\xa7\xa3\xb2\ \xa0\x9e\xaf\x9a\x99\xac\x92\x94\xaa\x8c\x8f\xa6\x86\x8c\xa5\x81\ \x88\xa3\x63\x73\x9d\x4e\x66\x98\x43\x63\x92\x3f\x63\x90\x3b\x63\ \x8e\x3b\x63\x8c\x3e\x60\x8e\x48\x5f\x92\x4f\x5e\x94\x5e\x69\x9d\ \x65\x75\x9d\x56\x68\x8e\x40\x4e\x74\x3a\x3e\x60\x3e\x3e\x5b\x40\ \x3e\x57\x41\x40\x54\x45\x43\x56\x41\x42\x55\x42\x47\x5d\x41\x4c\ \x64\x40\x4a\x65\x32\x39\x53\x2a\x31\x4b\x22\x28\x3f\x19\x1e\x34\ \x19\x1e\x35\x1e\x23\x3b\x00\x00\x00\xe3\xe0\xe9\xe1\xdd\xe8\xe0\ \xdc\xe6\xe0\xdc\xe7\xdf\xda\xe5\xde\xd9\xe4\xdd\xd9\xe3\xdf\xda\ \xe3\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe2\xde\xd9\xe2\xde\xd9\xe2\ \xdf\xda\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe3\xde\xe7\xe3\ \xdf\xe8\xe2\xdf\xe8\xe3\xe0\xe9\xe2\xdf\xe9\xe0\xdc\xe7\xdd\xd9\ \xe3\xda\xd5\xdf\xd6\xd0\xd9\xd0\xc9\xd1\xce\xc7\xce\xcd\xc5\xcd\ \xcc\xc3\xcb\xc8\xc0\xc7\xc6\xbe\xc5\xc6\xbe\xc5\xc7\xbf\xc6\xca\ \xc1\xc8\xcc\xc4\xcb\xce\xc7\xcf\xce\xc6\xcf\xc9\xc2\xcb\xcc\xc6\ \xd0\xd1\xcd\xd8\xd3\xcf\xda\xd3\xcf\xda\xd3\xce\xd8\xd9\xd6\xdd\ \xdb\xd9\xdf\xda\xd8\xde\xdb\xd9\xdf\xd5\xd1\xd9\xc1\xb5\xc3\xd2\ \xc7\xd2\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe5\xe5\xe0\ \xe6\xdb\xd4\xdc\xbc\xb4\xbf\xcc\xc6\xd0\xdf\xd9\xe0\xdf\xd8\xdf\ \xde\xd6\xdf\xdc\xd5\xde\xdb\xd5\xde\xd8\xd3\xdc\xd6\xd0\xdb\xd4\ \xce\xd9\xd3\xce\xd9\xd1\xcc\xd7\xd0\xcc\xd7\xd2\xcc\xd7\xd2\xcc\ \xd7\xd2\xcd\xd7\xd5\xcd\xd7\xd5\xce\xd7\xd3\xcc\xd5\xd0\xc9\xd3\ \xcd\xc6\xd1\xc8\xc2\xcc\xc3\xbd\xc8\xc0\xba\xc5\xbf\xb7\xc2\xbd\ \xb5\xc0\xbc\xb4\xbf\xbb\xb3\xbe\xbe\xb4\xbf\xbe\xb4\xbf\xbd\xb5\ \xbf\xbc\xb4\xbe\xbc\xb4\xbe\xae\xa8\xb5\x8c\x89\x9b\x8a\x88\x9c\ \x8c\x8c\x9f\x94\x91\xa6\x97\x95\xa9\x88\x88\x9e\x6f\x6f\x85\x53\ \x54\x6a\x4d\x51\x68\x4b\x50\x68\x48\x4d\x64\x43\x49\x60\x42\x47\ \x5f\x40\x47\x5f\x3b\x43\x5c\x3a\x42\x5b\x37\x3e\x57\x36\x3d\x57\ \x38\x40\x59\x3c\x44\x5f\x45\x4b\x66\x58\x5a\x71\x6e\x6a\x7c\x7b\ \x74\x84\x7b\x74\x82\x6d\x66\x74\x52\x4f\x61\x63\x60\x72\x97\x8f\ \x9d\xb3\xaa\xb6\xb8\xaf\xbb\xb8\xae\xba\xb7\xaf\xba\xb7\xaf\xba\ \xb6\xad\xb9\xb3\xab\xb8\xae\xa8\xb5\xa8\xa4\xb3\xa3\xa0\xb0\x9e\ \x9c\xaf\x99\x98\xac\x94\x95\xaa\x90\x91\xa8\x8e\x91\xa7\x85\x8a\ \xa7\x64\x74\x9d\x4a\x67\x95\x46\x68\x93\x48\x6b\x96\x46\x65\x95\ \x48\x5f\x94\x4a\x59\x96\x50\x5a\x99\x60\x6d\x9f\x5a\x6d\x98\x3f\ \x55\x82\x33\x46\x72\x3a\x45\x6c\x42\x46\x67\x44\x46\x61\x46\x4b\ \x66\x47\x4b\x66\x47\x4b\x66\x48\x52\x6c\x3c\x4c\x66\x41\x4e\x69\ \x3f\x49\x64\x34\x3d\x59\x25\x2b\x44\x1c\x22\x38\x18\x1d\x34\x1a\ \x1f\x38\x00\x00\x00\xe3\xe0\xe9\xe1\xdd\xe8\xe0\xdc\xe7\xdf\xdb\ \xe6\xe0\xda\xe5\xe0\xda\xe4\xe0\xdb\xe4\xdf\xda\xe3\xe0\xd9\xe3\ \xe0\xd9\xe3\xe1\xd9\xe2\xe0\xd9\xe2\xe1\xd9\xe3\xe1\xdb\xe4\xe1\ \xdc\xe5\xe1\xdc\xe5\xe1\xdd\xe5\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\ \xe9\xe5\xe1\xea\xe5\xe2\xeb\xe5\xe2\xeb\xe5\xe2\xec\xe5\xe2\xeb\ \xe4\xe0\xea\xe0\xdd\xe6\xe0\xdb\xe4\xde\xd9\xe2\xdd\xd7\xe0\xda\ \xd3\xdc\xd6\xce\xd7\xd4\xcc\xd5\xd7\xd0\xd7\xda\xd3\xda\xdd\xd6\ \xdd\xdd\xd5\xde\xdb\xd4\xde\xd8\xd3\xdc\xd8\xd3\xdc\xd6\xd2\xdd\ \xd6\xd2\xdc\xd5\xd1\xdc\xd9\xd6\xde\xdc\xda\xe0\xdb\xd9\xdf\xdb\ \xd9\xdf\xd5\xd1\xd8\xbe\xb2\xc1\xc7\xbb\xc8\xe3\xdc\xe3\xe5\xdf\ \xe5\xe7\xe0\xe6\xe7\xe1\xe7\xe6\xdf\xe6\xe4\xde\xe4\xc9\xc0\xc9\ \xc3\xbd\xc7\xdc\xd6\xde\xe0\xda\xe0\xdf\xd7\xdf\xdd\xd6\xdd\xdc\ \xd4\xde\xda\xd3\xdd\xd6\xd1\xda\xd5\xcf\xda\xd4\xce\xd9\xd3\xcd\ \xd8\xd2\xcc\xd7\xd1\xcb\xd6\xd2\xcc\xd7\xd4\xce\xd8\xd4\xcf\xd8\ \xd6\xcf\xd8\xd6\xce\xd8\xd7\xcf\xd7\xd7\xcf\xd7\xd3\xcc\xd4\xcf\ \xc8\xd2\xc9\xc4\xce\xc7\xc0\xca\xc3\xbc\xc6\xc1\xb9\xc4\xc0\xb8\ \xc3\xbf\xb6\xc2\xbf\xb5\xc2\xba\xb0\xbd\xb9\xaf\xbc\xba\xb1\xbd\ \xb8\xb1\xbc\xb7\xb0\xbb\xb3\xad\xba\xb9\xb3\xbf\xc6\xbf\xc8\xd1\ \xca\xd2\xd4\xcd\xd4\xca\xc2\xcc\xb1\xaa\xb7\x95\x90\xa3\x83\x83\ \x98\x71\x75\x8b\x60\x65\x7d\x58\x5c\x75\x50\x55\x6b\x48\x4e\x64\ \x40\x46\x5d\x3d\x43\x5b\x37\x3e\x57\x36\x3e\x58\x35\x3e\x59\x35\ \x3e\x5a\x38\x41\x5b\x38\x41\x5d\x3c\x42\x5d\x3e\x44\x5e\x3d\x42\ \x5a\x35\x3a\x51\x36\x3b\x53\x3d\x42\x59\x62\x60\x72\x9d\x94\xa2\ \xb7\xae\xb9\xb9\xaf\xba\xb8\xae\xba\xb8\xaf\xba\xb5\xad\xb9\xb2\ \xaa\xb7\xaf\xa8\xb5\xaa\xa4\xb3\xa6\xa2\xb1\xa2\x9f\xb0\x9e\x9c\ \xaf\x9a\x9a\xad\x9a\x98\xac\x98\x98\xab\x9a\x9a\xad\x96\x96\xad\ \x76\x7f\xa3\x52\x66\x95\x4c\x60\x95\x49\x5b\x93\x49\x56\x94\x4c\ \x53\x96\x57\x5f\x9c\x63\x70\x9f\x47\x59\x88\x3a\x4c\x7b\x37\x47\ \x76\x3b\x48\x74\x43\x50\x75\x4b\x5f\x80\x48\x5f\x86\x46\x53\x7c\ \x3e\x45\x69\x41\x4d\x6a\x2d\x42\x5e\x2b\x3e\x5a\x3d\x48\x63\x30\ \x38\x52\x23\x2a\x43\x23\x2b\x42\x1a\x20\x36\x19\x1e\x35\x00\x00\ \x00\xe3\xe0\xe9\xe2\xde\xe9\xe1\xdd\xe8\xe3\xdd\xe7\xe0\xdb\xe5\ \xe1\xdc\xe4\xe1\xdc\xe5\xe1\xda\xe3\xe1\xd9\xe3\xe2\xda\xe3\xe3\ \xdc\xe3\xe2\xdb\xe2\xe1\xda\xe2\xe3\xdd\xe4\xe3\xdd\xe4\xe2\xdd\ \xe5\xe5\xdd\xe6\xe4\xde\xe8\xe5\xe0\xe9\xe6\xe1\xea\xe6\xe1\xea\ \xe6\xe2\xeb\xe6\xe3\xec\xe7\xe4\xed\xe6\xe3\xec\xe6\xe3\xec\xe5\ \xe2\xeb\xe4\xdf\xe8\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xdf\xe6\xe3\xdf\ \xe5\xe4\xde\xe5\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe1\xda\xe1\ \xdf\xd7\xe1\xdc\xd7\xe0\xdb\xd6\xdf\xd8\xd3\xdd\xd7\xd3\xdd\xd9\ \xd6\xde\xde\xdc\xe2\xdd\xdb\xe1\xdd\xdb\xe1\xd7\xd4\xdb\xbd\xb3\ \xc0\xbb\xae\xbd\xda\xd3\xdb\xe3\xdc\xe3\xe6\xdf\xe6\xe6\xe0\xe6\ \xe7\xe1\xe6\xe7\xe1\xe6\xd8\xd0\xd8\xba\xb2\xbd\xcd\xc6\xce\xe1\ \xda\xe0\xe0\xd8\xe0\xde\xd7\xde\xdd\xd5\xdc\xda\xd4\xdb\xd8\xd1\ \xdb\xd5\xcf\xd9\xd3\xcd\xd9\xd2\xcc\xd7\xd1\xcc\xd7\xd2\xcc\xd7\ \xd3\xcd\xd8\xd4\xce\xd9\xd5\xd0\xd8\xd5\xd0\xd9\xd8\xd0\xda\xd8\ \xd1\xda\xd9\xd2\xda\xda\xd3\xda\xd7\xd0\xd7\xd3\xcc\xd3\xd1\xc9\ \xd2\xce\xc6\xd0\xca\xc2\xcc\xc6\xbe\xc8\xc3\xba\xc5\xc2\xb9\xc4\ \xc2\xb8\xc4\xc1\xb8\xc4\xb9\xaf\xbc\xb8\xaf\xbc\xb8\xaf\xbb\xb9\ \xb1\xbc\xbe\xb7\xc2\xcc\xc3\xcb\xd5\xcd\xd4\xda\xd3\xd8\xd8\xce\ \xd4\xd6\xcc\xd2\xd6\xcc\xd2\xd2\xc8\xcf\xca\xc0\xc8\xb5\xae\xbb\ \x93\x92\xa7\x7b\x7e\x96\x69\x6c\x83\x5b\x5e\x74\x4b\x4f\x64\x42\ \x48\x5e\x39\x40\x59\x39\x40\x59\x3c\x44\x5d\x39\x41\x5b\x38\x40\ \x5a\x3a\x42\x5b\x36\x3f\x5a\x35\x3d\x58\x35\x3d\x57\x31\x39\x51\ \x36\x3e\x55\x36\x3e\x55\x40\x45\x5c\x74\x6f\x82\xa8\x9f\xab\xb7\ \xad\xb9\xb8\xae\xba\xb7\xae\xb9\xb4\xab\xb8\xb0\xa8\xb5\xac\xa6\ \xb4\xa8\xa3\xb2\xa6\xa2\xb1\xa4\xa0\xb0\xa3\xa0\xb0\xa1\x9f\xb0\ \xa1\x9f\xb0\xa2\xa0\xb0\xa2\xa0\xb1\xa4\xa2\xb3\xa3\xa1\xb2\x8d\ \x8e\xab\x6a\x72\xa0\x58\x63\x99\x52\x5a\x94\x52\x5a\x94\x5c\x69\ \x97\x5a\x6a\x94\x40\x50\x7e\x39\x46\x75\x3d\x4a\x78\x48\x58\x7f\ \x53\x6a\x89\x56\x72\x8f\x57\x72\x94\x48\x5a\x85\x4b\x56\x78\x3e\ \x4d\x6c\x27\x3c\x5a\x21\x35\x53\x3c\x47\x63\x32\x3a\x55\x2c\x34\ \x4e\x23\x29\x42\x1b\x1f\x37\x1f\x23\x39\x00\x00\x00\xe5\xe2\xeb\ \xe3\xe0\xe9\xe2\xdf\xe9\xe3\xde\xe7\xe3\xde\xe7\xe1\xdc\xe5\xe2\ \xdc\xe4\xe2\xdb\xe4\xe3\xdc\xe3\xe3\xdd\xe3\xe4\xdd\xe4\xe4\xdd\ \xe4\xe4\xdd\xe4\xe4\xdc\xe4\xe5\xde\xe5\xe5\xde\xe5\xe6\xde\xe6\ \xe7\xdf\xe8\xe7\xe0\xe9\xe6\xe1\xe9\xe7\xe2\xeb\xe8\xe3\xec\xe8\ \xe4\xed\xe7\xe5\xee\xe7\xe4\xed\xe7\xe4\xed\xe8\xe3\xec\xe6\xe2\ \xeb\xe5\xe0\xe9\xe4\xe0\xe8\xe5\xe0\xe7\xe6\xdf\xe6\xe6\xdf\xe6\ \xe5\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xde\ \xd8\xe1\xdd\xd7\xe0\xdb\xd6\xdf\xdc\xd8\xe0\xdf\xdd\xe3\xdd\xdb\ \xe1\xdd\xdb\xe1\xd9\xd6\xde\xc9\xc2\xcc\xbe\xb4\xc1\xc8\xbd\xc9\ \xe0\xda\xe0\xe2\xdc\xe1\xe4\xde\xe3\xe6\xe0\xe5\xe7\xe1\xe6\xe5\ \xde\xe4\xc8\xc0\xca\xbb\xb3\xbd\xd6\xd0\xd6\xe1\xda\xe0\xdf\xd8\ \xdf\xdd\xd6\xdd\xdc\xd5\xdc\xda\xd3\xdc\xd7\xd1\xda\xd4\xce\xd8\ \xd2\xcd\xd7\xd2\xcd\xd7\xd1\xcb\xd6\xd2\xcd\xd7\xd4\xce\xd8\xd5\ \xd0\xd9\xd7\xd1\xda\xd7\xd2\xdb\xd9\xd1\xdb\xd9\xd2\xdb\xda\xd3\ \xda\xdb\xd4\xdb\xd9\xd2\xd9\xd7\xcf\xd6\xd5\xce\xd5\xd4\xcd\xd4\ \xd1\xc9\xd2\xcd\xc5\xcf\xc9\xc1\xca\xc7\xbf\xc8\xc4\xbb\xc4\xc4\ \xbb\xc5\xc2\xb9\xc4\xbc\xb3\xbf\xba\xb2\xbd\xbd\xb5\xc0\xc3\xbb\ \xc5\xcc\xc4\xcc\xce\xc6\xce\xca\xc3\xca\xc1\xb9\xc2\xc3\xb9\xc2\ \xcb\xc1\xc8\xd5\xca\xd0\xd9\xcf\xd5\xd4\xcb\xd2\xc9\xc2\xca\xb6\ \xb0\xbc\x96\x94\xa7\x78\x7a\x90\x60\x64\x7b\x55\x59\x70\x4c\x52\ \x69\x44\x4b\x62\x40\x47\x5e\x3e\x45\x5c\x3a\x41\x58\x3d\x43\x5a\ \x38\x3f\x56\x36\x3d\x55\x37\x3e\x56\x37\x3e\x56\x38\x40\x56\x34\ \x3c\x53\x35\x3c\x52\x44\x47\x5c\x6c\x67\x79\x9a\x90\x9e\xb4\xab\ \xb6\xb5\xac\xb8\xb2\xa9\xb5\xae\xa5\xb2\xa9\xa2\xb1\xa6\xa0\xaf\ \xa4\x9e\xae\xa3\x9f\xaf\xa3\xa0\xb0\xa6\xa3\xb2\xa8\xa4\xb3\xaa\ \xa6\xb4\xab\xa7\xb5\xab\xa7\xb6\xad\xa9\xb8\xae\xab\xb8\xa9\xa6\ \xb7\x98\x97\xaf\x79\x7d\x9f\x4e\x61\x84\x46\x60\x7e\x48\x61\x82\ \x56\x65\x87\x69\x73\x92\x70\x7c\x99\x6a\x7d\x96\x64\x7a\x94\x63\ \x79\x94\x64\x79\x96\x5d\x6e\x8e\x54\x62\x82\x3d\x4f\x6e\x28\x3b\ \x5b\x1f\x30\x50\x40\x49\x65\x38\x3f\x5b\x29\x33\x4d\x20\x27\x41\ \x23\x28\x3e\x2f\x34\x45\x00\x00\x00\xe5\xe2\xeb\xe3\xe1\xea\xe4\ \xe0\xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xde\xe7\xe4\xdd\xe5\xe4\xdd\ \xe4\xe5\xdd\xe4\xe5\xde\xe5\xe6\xde\xe4\xe6\xdf\xe4\xe5\xde\xe4\ \xe5\xde\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe7\xe9\ \xe2\xe9\xe9\xe2\xe9\xe8\xe4\xeb\xe9\xe5\xec\xea\xe5\xed\xe9\xe4\ \xee\xe9\xe4\xee\xe9\xe4\xed\xe8\xe3\xec\xe7\xe2\xeb\xe6\xe1\xe9\ \xe6\xe1\xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe6\ \xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe2\xdb\xe2\xe1\xda\xe1\xdf\xd9\ \xe1\xde\xd9\xe1\xde\xdb\xe2\xde\xdc\xe2\xdd\xdb\xe1\xdc\xda\xe1\ \xd5\xd0\xda\xc8\xc0\xcb\xc8\xc0\xcb\xda\xd2\xd9\xe0\xda\xdf\xe1\ \xdb\xe0\xe3\xdd\xe2\xe5\xdf\xe4\xe6\xe0\xe5\xe6\xdf\xe4\xd1\xc9\ \xd2\xc2\xba\xc4\xe0\xda\xdf\xe0\xd8\xde\xde\xd7\xdd\xdc\xd5\xdc\ \xdb\xd4\xdb\xdb\xd3\xdb\xd6\xd0\xd9\xd3\xcf\xd8\xd2\xcd\xd6\xd1\ \xcc\xd6\xd2\xcd\xd7\xd3\xce\xd7\xd4\xcf\xd8\xd6\xd1\xda\xd9\xd1\ \xdb\xda\xd2\xdc\xda\xd2\xdc\xdb\xd2\xdd\xdb\xd3\xdd\xdb\xd4\xdb\ \xd9\xd2\xd9\xd9\xd1\xd8\xd9\xd2\xd8\xd9\xd2\xd9\xd7\xd0\xd6\xd5\ \xcc\xd4\xd1\xc9\xcf\xce\xc6\xcd\xc9\xc1\xc8\xc5\xbd\xc5\xc1\xb8\ \xc2\xbd\xb5\xc0\xbd\xb5\xc0\xc0\xb7\xc2\xc3\xbb\xc4\xc4\xbb\xc5\ \xbe\xb8\xc2\xba\xb5\xbf\xb1\xad\xb8\xb1\xac\xb8\xb6\xb0\xba\xbf\ \xb7\xc0\xce\xc5\xcb\xd6\xcf\xd3\xd3\xca\xd0\xcd\xc5\xcb\xc0\xb8\ \xc1\xab\xa5\xb2\x8f\x8d\x9f\x76\x77\x8c\x60\x63\x7a\x53\x58\x70\ \x4d\x52\x68\x47\x4d\x62\x40\x46\x5b\x3d\x42\x57\x36\x3c\x51\x37\ \x3d\x52\x37\x3d\x53\x36\x3c\x53\x36\x3c\x53\x30\x36\x4e\x2d\x33\ \x4a\x2d\x33\x4a\x2f\x33\x4b\x5f\x5b\x6e\x99\x91\x9f\xab\xa2\xaf\ \xaf\xa6\xb3\xac\xa4\xb3\xa7\xa1\xb0\xa3\x9d\xae\xa1\x9c\xac\xa0\ \x9d\xad\xa3\xa0\xaf\xa8\xa3\xb2\xab\xa6\xb5\xad\xa9\xb6\xaf\xab\ \xb7\xb0\xac\xb8\xb0\xac\xb8\xb3\xae\xba\xb4\xaf\xbb\xae\xab\xb8\ \x99\x99\xac\x6a\x79\x90\x3e\x5e\x75\x47\x66\x7d\x6d\x7f\x94\x8f\ \x98\xaa\x8b\x95\xa8\x7d\x8b\xa1\x77\x86\x9c\x74\x83\x9b\x70\x7d\ \x97\x67\x73\x90\x5c\x67\x84\x4a\x57\x74\x34\x40\x5f\x23\x30\x4f\ \x33\x3e\x5a\x38\x42\x5e\x2d\x36\x51\x29\x2f\x48\x35\x39\x4c\x30\ \x33\x45\x00\x00\x00\xe6\xe3\xec\xe5\xe2\xeb\xe5\xe1\xea\xe5\xe0\ \xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xdd\xe6\xe5\xdf\xe5\xe6\xde\xe6\ \xe6\xdf\xe5\xe8\xe1\xe6\xe7\xe0\xe5\xe7\xe0\xe5\xe5\xde\xe3\xe6\ \xdf\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe9\xe2\xe9\xea\xe2\xe9\xe9\xe4\ \xea\xea\xe4\xeb\xe9\xe6\xeb\xea\xe5\xed\xea\xe6\xec\xea\xe5\xed\ \xe9\xe5\xec\xe8\xe4\xea\xe6\xe2\xe9\xe6\xe2\xe8\xe7\xe1\xe7\xe7\ \xe0\xe7\xe6\xdf\xe6\xe7\xe0\xe7\xe6\xdf\xe6\xe7\xe0\xe7\xe7\xe0\ \xe7\xe5\xde\xe5\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xdd\xda\xdf\ \xde\xda\xe0\xdd\xda\xe0\xdf\xdc\xe3\xdf\xdb\xe4\xd3\xcd\xd7\xce\ \xc6\xd1\xdc\xd5\xdd\xe1\xda\xe0\xe0\xda\xe0\xe1\xdb\xe0\xe3\xdc\ \xe1\xe4\xdd\xe2\xe5\xdf\xe4\xe6\xdf\xe3\xe0\xd9\xde\xd3\xcc\xd4\ \xe1\xda\xdf\xdf\xd8\xdd\xdd\xd6\xdd\xdb\xd4\xdb\xda\xd3\xda\xda\ \xd3\xda\xd8\xd0\xd9\xd5\xce\xd8\xd5\xce\xd7\xd5\xcd\xd7\xd2\xcd\ \xd6\xd2\xcd\xd6\xd6\xce\xd8\xd7\xd0\xda\xd9\xd1\xdb\xda\xd3\xdb\ \xdb\xd4\xdb\xdc\xd4\xdc\xdc\xd3\xde\xdb\xd3\xdb\xd9\xd2\xd9\xd9\ \xd2\xd9\xda\xd3\xda\xdd\xd6\xda\xdc\xd5\xda\xd9\xd2\xd7\xd7\xcf\ \xd5\xd4\xcd\xd2\xcf\xc7\xcd\xca\xc2\xc9\xc6\xbd\xc6\xc1\xb8\xc2\ \xbe\xb6\xc1\xbf\xb6\xc1\xc1\xb7\xc2\xbb\xb4\xbf\xb6\xb2\xbd\xb6\ \xb2\xbe\xb0\xac\xb8\xb1\xad\xb8\xb2\xae\xb9\xaf\xab\xb8\xb3\xae\ \xbb\xcb\xc3\xca\xd3\xcc\xd1\xcf\xc5\xcc\xc6\xbd\xc4\xbc\xb3\xbc\ \xb6\xad\xb7\xa7\xa0\xae\x8f\x8d\xa0\x7c\x7c\x93\x69\x6d\x84\x5f\ \x64\x7c\x5b\x61\x78\x4d\x52\x68\x3e\x42\x56\x3c\x41\x56\x3a\x40\ \x55\x36\x3d\x51\x33\x3a\x50\x28\x2e\x45\x2a\x30\x47\x2a\x32\x49\ \x2a\x31\x48\x32\x38\x4f\x55\x55\x67\x78\x72\x83\x93\x8b\x9c\xa9\ \xa2\xb1\xa9\xa2\xb1\xa3\x9d\xae\xa2\x9c\xad\xa2\x9e\xae\xa4\xa0\ \xaf\xa8\xa3\xb2\xab\xa6\xb5\xad\xa8\xb5\xaf\xab\xb7\xb1\xad\xb9\ \xb1\xad\xb9\xb3\xaf\xbb\xb4\xb0\xbc\xb4\xb0\xbc\xad\xab\xb8\x93\ \x96\xa9\x64\x75\x8c\x3f\x61\x75\x54\x71\x83\x78\x89\x9b\x8f\x97\ \xa8\x8b\x93\xa6\x87\x91\xa4\x7e\x89\x9e\x7a\x84\x9a\x77\x7d\x96\ \x6e\x74\x8f\x5f\x65\x81\x46\x4d\x6a\x2e\x37\x54\x2d\x36\x4f\x37\ \x40\x5c\x29\x2f\x48\x28\x2b\x40\x25\x27\x39\x22\x23\x35\x00\x00\ \x00\xe6\xe3\xec\xe7\xe2\xeb\xe6\xe1\xea\xe5\xe0\xe9\xe5\xe0\xe9\ \xe5\xdf\xe7\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe6\xe8\xe1\xe6\xe8\ \xe1\xe6\xe8\xe1\xe6\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ \xe6\xe7\xe1\xe7\xe9\xe2\xe9\xea\xe3\xea\xeb\xe4\xeb\xeb\xe4\xeb\ \xeb\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe8\ \xe3\xea\xe8\xe2\xe8\xe8\xe0\xe8\xe8\xe1\xe8\xe7\xe0\xe7\xe6\xe0\ \xe7\xe7\xe0\xe7\xe7\xe1\xe8\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\ \xe4\xdd\xe4\xe3\xdc\xe3\xe1\xdc\xe3\xd9\xd4\xde\xdb\xd7\xdf\xdb\ \xd8\xdf\xe3\xde\xe7\xdc\xd6\xe0\xd6\xce\xd8\xde\xd7\xdf\xe1\xda\ \xe1\xe1\xda\xe0\xe0\xda\xdf\xdf\xda\xdf\xe1\xdb\xe0\xe3\xdc\xe1\ \xe4\xdc\xe1\xe4\xdd\xe2\xe4\xdd\xe1\xe3\xdc\xdf\xe0\xd9\xde\xde\ \xd7\xdc\xdd\xd6\xdb\xdc\xd5\xdb\xda\xd3\xda\xda\xd3\xda\xd9\xd2\ \xd9\xd7\xd0\xd8\xd7\xd0\xd7\xd6\xcf\xd6\xd6\xcf\xd7\xd6\xcf\xd8\ \xd7\xd0\xd9\xd8\xd1\xd9\xda\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdb\ \xd4\xdc\xdc\xd4\xdc\xdb\xd5\xdc\xda\xd3\xda\xda\xd3\xda\xdb\xd4\ \xdb\xdd\xd5\xdc\xde\xd7\xdc\xdc\xd5\xda\xdb\xd4\xd9\xd9\xd2\xd7\ \xd5\xce\xd3\xd0\xc8\xce\xcb\xc3\xca\xc5\xbd\xc6\xc1\xb9\xc3\xc1\ \xb9\xc3\xc0\xb8\xc3\xbb\xb5\xc0\xb7\xb3\xbe\xb7\xb3\xbe\xb1\xaf\ \xba\xad\xab\xb8\xaf\xad\xb9\xb0\xae\xba\xaa\xa9\xb8\xb2\xad\xbc\ \xc5\xbe\xc6\xcc\xc5\xca\xc6\xbe\xc5\xbf\xb6\xbf\xbb\xb2\xbc\xba\ \xb1\xbb\xb6\xae\xb9\xaf\xa7\xb4\x9d\x99\xa9\x83\x82\x97\x74\x78\ \x8e\x6c\x70\x88\x5f\x63\x7b\x51\x55\x6b\x48\x4d\x62\x42\x48\x5d\ \x3c\x41\x56\x33\x39\x4f\x2f\x36\x4c\x2b\x33\x49\x2d\x35\x4b\x2e\ \x35\x4c\x33\x38\x4f\x3e\x43\x5a\x63\x61\x77\x86\x82\x91\x9e\x98\ \xa7\xa5\x9f\xaf\xa5\xa0\xb0\xa6\xa1\xb1\xa8\xa3\xb2\xaa\xa6\xb4\ \xac\xa7\xb6\xad\xa9\xb6\xaf\xab\xb7\xb0\xac\xb8\xb0\xac\xb8\xb2\ \xae\xba\xb3\xaf\xbb\xb4\xb0\xbc\xb3\xb0\xbd\xab\xab\xb8\x8a\x8e\ \xa3\x58\x6e\x84\x42\x64\x76\x5e\x77\x88\x82\x8e\x9f\x8e\x96\xa6\ \x8d\x95\xa5\x86\x8d\xa0\x7e\x87\x9b\x7c\x83\x98\x75\x7a\x92\x67\ \x6b\x84\x51\x55\x6e\x34\x38\x50\x1b\x1c\x2d\x26\x2c\x43\x2a\x2f\ \x46\x25\x28\x3b\x19\x19\x2a\x14\x15\x22\x00\x00\x00\xe8\xe4\xed\ \xe8\xe3\xec\xe6\xe1\xea\xe5\xe0\xe9\xe6\xe1\xe9\xe6\xe0\xe7\xe7\ \xdf\xe7\xe7\xe0\xe7\xe8\xe1\xe6\xe8\xe1\xe6\xe9\xe2\xe7\xe9\xe2\ \xe7\xe8\xe1\xe6\xe8\xe1\xe6\xe8\xe1\xe6\xe9\xe2\xe6\xe8\xe2\xe8\ \xe9\xe3\xe9\xea\xe3\xea\xeb\xe4\xeb\xea\xe3\xea\xeb\xe4\xeb\xea\ \xe4\xea\xe9\xe4\xea\xe8\xe4\xea\xe8\xe3\xea\xe9\xe2\xe9\xe9\xe1\ \xe9\xe8\xe1\xe8\xe7\xe0\xe7\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe2\xe8\ \xe8\xe1\xe8\xe9\xe2\xe9\xe8\xe1\xe8\xe8\xe0\xe8\xe6\xdf\xe6\xe5\ \xde\xe5\xe3\xde\xe6\xd5\xd1\xdb\xd6\xd3\xdc\xde\xda\xe2\xe3\xdf\ \xe7\xde\xd9\xe2\xe1\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe1\xdb\xe0\ \xe1\xdb\xe0\xdf\xd9\xde\xe0\xda\xdf\xe2\xdb\xe0\xe3\xdc\xe0\xe3\ \xdc\xe0\xe3\xdc\xdf\xe2\xdb\xde\xe0\xd9\xdd\xde\xd7\xdc\xdc\xd6\ \xdb\xdd\xd6\xda\xdc\xd4\xdb\xda\xd3\xda\xd9\xd2\xd9\xd8\xd2\xd9\ \xd8\xd1\xd8\xd8\xd0\xd7\xd7\xd0\xd7\xd8\xd1\xd8\xd8\xd1\xd8\xd9\ \xd2\xd9\xda\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\ \xdc\xdc\xd5\xdc\xdb\xd4\xdb\xdb\xd4\xdb\xdb\xd4\xdb\xdd\xd6\xdb\ \xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdc\xd5\xda\xda\xd3\xd8\xd6\ \xce\xd4\xd0\xc8\xcf\xca\xc2\xca\xc6\xbe\xc8\xc5\xbd\xc7\xc5\xbd\ \xc7\xbc\xb6\xc1\xb8\xb4\xbf\xb7\xb2\xbd\xb4\xb1\xbd\xae\xad\xbb\ \xae\xad\xbb\xb1\xaf\xbb\xae\xae\xbc\xa7\xa7\xb8\xb3\xb0\xbd\xc2\ \xbb\xc3\xc6\xbe\xc5\xc2\xb9\xc1\xbd\xb5\xbe\xbd\xb4\xbe\xbb\xb2\ \xbc\xba\xb1\xbc\xb8\xb0\xba\xb0\xa9\xb6\xa9\xa3\xb2\x9e\x9b\xac\ \x8b\x8c\xa0\x74\x75\x8d\x5f\x62\x78\x49\x4d\x62\x41\x46\x5b\x42\ \x48\x5e\x3e\x45\x5a\x35\x3c\x50\x31\x36\x4b\x2f\x35\x4a\x2f\x35\ \x4b\x34\x3b\x51\x3d\x43\x5b\x4c\x4f\x65\x6a\x68\x7b\x89\x85\x97\ \x9f\x9b\xaa\xa9\xa5\xb4\xaa\xa6\xb5\xad\xa8\xb6\xaf\xaa\xb8\xb0\ \xab\xba\xb1\xad\xba\xb2\xae\xba\xb2\xae\xba\xb2\xae\xba\xb2\xae\ \xba\xb2\xaf\xbb\xb1\xb0\xbc\xad\xad\xb9\xa2\xa2\xb2\x7e\x88\x9c\ \x4c\x69\x7d\x47\x68\x78\x6b\x7e\x8f\x85\x90\x9f\x8b\x93\xa2\x86\ \x8f\x9f\x80\x87\x9a\x7c\x83\x96\x75\x7b\x90\x67\x6b\x82\x52\x58\ \x6e\x36\x38\x4a\x1a\x1b\x2c\x27\x2e\x47\x26\x2d\x45\x1d\x20\x33\ \x13\x14\x23\x14\x14\x22\x00\x00\x00\xea\xe5\xee\xe9\xe4\xed\xe8\ \xe3\xec\xe6\xe1\xea\xe6\xe1\xe9\xe6\xe0\xe8\xe6\xe0\xe7\xe9\xe2\ \xe7\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xe8\xe1\xe6\ \xe9\xe2\xe7\xe8\xe1\xe6\xe9\xe2\xe7\xe9\xe2\xe8\xea\xe4\xe9\xea\ \xe4\xea\xeb\xe5\xea\xea\xe4\xea\xea\xe4\xea\xeb\xe3\xeb\xe9\xe3\ \xeb\xea\xe3\xea\xe9\xe3\xe9\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\ \xe7\xe0\xe7\xe9\xe2\xe9\xe9\xe1\xe8\xe7\xe3\xe9\xe9\xe2\xe9\xe9\ \xe2\xe9\xe8\xe2\xe9\xe8\xe1\xe8\xe7\xe0\xe7\xe5\xe0\xe6\xe5\xe2\ \xe9\xd3\xce\xd8\xd9\xd3\xdd\xe4\xe0\xe7\xe5\xe0\xe7\xe3\xdc\xe3\ \xe3\xdb\xe2\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe1\xe1\xdb\xe0\xe0\ \xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xdf\xe2\xdb\xde\xe2\xdb\ \xde\xe1\xdb\xde\xe1\xd8\xdb\xdf\xd7\xdc\xdd\xd6\xdb\xdc\xd6\xdb\ \xdc\xd5\xda\xdb\xd5\xda\xda\xd2\xd9\xd9\xd1\xd8\xd9\xd1\xd8\xd9\ \xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\xda\xd2\xd9\xda\xd3\xda\xdc\xd4\ \xdb\xdd\xd6\xdd\xdc\xd5\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xdc\xd5\xdc\ \xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\ \xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdd\xd6\xdb\xda\xd3\xd8\xd6\xcf\ \xd4\xd1\xc9\xd0\xcc\xc4\xcc\xca\xc2\xcc\xca\xc1\xcb\xc0\xba\xc3\ \xb8\xb4\xbf\xb7\xb3\xbe\xb7\xb3\xbe\xb4\xb1\xbd\xb3\xb1\xbd\xb2\ \xb0\xbc\xb3\xb0\xbe\xae\xad\xbc\xb3\xb0\xbd\xbb\xb5\xbf\xc1\xb8\ \xc1\xc4\xbc\xc3\xc1\xb9\xc0\xbe\xb5\xbe\xbe\xb5\xbe\xbc\xb3\xbe\ \xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbc\xb4\xbe\xb6\xae\xba\xa4\ \xa0\xb0\x89\x87\x9c\x5f\x60\x75\x4d\x50\x65\x52\x56\x6d\x4c\x50\ \x66\x39\x3e\x53\x31\x35\x4a\x32\x37\x4b\x32\x38\x4b\x2f\x35\x4a\ \x2e\x35\x4c\x31\x38\x51\x32\x38\x51\x4b\x4d\x61\x74\x73\x84\x93\ \x90\x9f\xaa\xa6\xb5\xae\xab\xb9\xb1\xad\xbc\xb3\xae\xbd\xb5\xb1\ \xbd\xb6\xb2\xbe\xb7\xb3\xbf\xb5\xb1\xbd\xb3\xb0\xbc\xb3\xb0\xbb\ \xb2\xb0\xbb\xad\xad\xb9\xa5\xa6\xb3\x95\x9a\xa9\x74\x83\x96\x47\ \x66\x77\x50\x6d\x7d\x76\x85\x95\x88\x92\xa0\x84\x8d\x9b\x7e\x86\ \x98\x79\x81\x93\x71\x77\x8a\x61\x68\x7b\x4d\x54\x69\x43\x48\x5c\ \x36\x3d\x51\x30\x37\x4d\x26\x2c\x41\x1f\x23\x35\x19\x1d\x2e\x18\ \x1b\x2b\x00\x00\x00\xeb\xe6\xef\xe9\xe4\xed\xe8\xe3\xec\xe8\xe3\ \xeb\xe7\xe2\xe9\xe8\xe1\xe8\xe8\xe1\xe7\xe9\xe2\xe7\xea\xe3\xe8\ \xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe7\xe9\xe2\xe6\xe8\xe1\xe6\xe9\ \xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xeb\xe4\xe9\xec\xe5\xea\xec\xe5\ \xea\xec\xe5\xeb\xeb\xe5\xeb\xea\xe4\xea\xeb\xe3\xea\xeb\xe4\xeb\ \xea\xe4\xea\xeb\xe4\xeb\xe9\xe2\xe9\xe9\xe2\xe9\xe9\xe2\xe9\xe8\ \xe1\xe8\xe9\xe2\xe9\xe9\xe3\xea\xea\xe2\xe9\xea\xe3\xea\xea\xe3\ \xea\xea\xe3\xea\xe6\xe0\xe7\xe5\xe1\xe7\xe4\xe2\xe9\xe0\xdc\xe4\ \xe4\xe0\xe6\xe5\xde\xe5\xe3\xdd\xe3\xe3\xdd\xe4\xe3\xdd\xe4\xe3\ \xdb\xe2\xe3\xdc\xe2\xe3\xdd\xe1\xe2\xdc\xe1\xe1\xda\xdf\xe2\xdb\ \xe0\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xdf\xe1\xda\xdd\xe2\xd9\xdc\ \xdf\xd8\xdb\xdf\xd8\xdb\xdf\xd6\xdb\xde\xd5\xda\xdc\xd5\xda\xdc\ \xd4\xd9\xda\xd3\xd8\xd9\xd3\xd8\xda\xd3\xd8\xd9\xd2\xd7\xda\xd3\ \xd8\xda\xd3\xd9\xda\xd3\xd9\xdc\xd4\xdb\xdd\xd5\xdc\xdd\xd6\xdd\ \xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\ \xd6\xdd\xdd\xd6\xdd\xde\xd7\xdc\xdf\xd8\xdc\xdf\xd8\xdd\xe0\xd9\ \xde\xe0\xd9\xde\xdf\xd8\xdd\xde\xd7\xdc\xdb\xd4\xd9\xd7\xd0\xd6\ \xd4\xcc\xd3\xce\xc7\xce\xcb\xc4\xcb\xbf\xba\xc4\xb5\xb2\xbe\xb4\ \xb1\xbd\xb5\xb2\xbd\xb5\xb2\xbe\xb4\xb2\xbe\xb5\xb3\xbf\xb8\xb6\ \xc2\xb6\xb4\xc0\xb5\xb2\xbe\xbb\xb6\xc0\xbd\xb7\xc1\xc1\xb9\xc2\ \xc3\xbb\xc2\xc3\xb9\xc1\xc2\xb8\xc0\xc0\xb8\xc0\xc0\xb8\xc0\xc1\ \xb8\xc0\xc1\xb9\xc0\xc1\xb8\xc1\xc0\xb7\xc1\xbe\xb5\xc0\xb4\xad\ \xb9\x9a\x95\xa7\x6d\x6e\x84\x5b\x5f\x75\x57\x58\x6e\x47\x4a\x5f\ \x3d\x40\x53\x36\x3a\x4d\x36\x3c\x4f\x31\x37\x4d\x29\x2e\x45\x2c\ \x32\x49\x2e\x35\x4c\x2f\x35\x4d\x40\x45\x5a\x62\x63\x76\x80\x7f\ \x91\xa2\xa0\xad\xb1\xaf\xbb\xb6\xb3\xbe\xb9\xb5\xc0\xba\xb6\xc2\ \xbc\xb7\xc2\xbc\xb7\xc1\xbb\xb5\xc0\xb9\xb5\xbf\xb7\xb3\xbe\xb1\ \xb0\xbb\xa7\xa7\xb3\x9d\xa0\xac\x8d\x94\xa4\x69\x7c\x8d\x44\x65\ \x75\x56\x72\x80\x74\x85\x93\x7e\x89\x98\x78\x82\x93\x72\x7c\x8c\ \x67\x71\x82\x58\x63\x75\x4a\x53\x66\x41\x48\x5c\x46\x4c\x60\x32\ \x37\x4a\x20\x21\x35\x1f\x22\x35\x17\x1c\x2e\x17\x1d\x2e\x00\x00\ \x00\xed\xe8\xef\xeb\xe6\xee\xe9\xe4\xed\xe8\xe3\xeb\xe9\xe3\xea\ \xe8\xe2\xe8\xe8\xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe7\xe9\ \xe2\xe5\xea\xe2\xe6\xe9\xe3\xe6\xe9\xe2\xe7\xea\xe3\xe8\xea\xe3\ \xe8\xea\xe3\xe8\xec\xe5\xea\xec\xe5\xea\xec\xe6\xeb\xec\xe6\xeb\ \xeb\xe6\xeb\xeb\xe5\xeb\xeb\xe4\xeb\xeb\xe4\xeb\xeb\xe4\xeb\xeb\ \xe5\xeb\xeb\xe4\xeb\xea\xe3\xea\xea\xe3\xea\xe9\xe2\xe9\xea\xe3\ \xea\xea\xe2\xea\xea\xe3\xea\xea\xe3\xea\xea\xe3\xea\xea\xe3\xe9\ \xe6\xe0\xe7\xe6\xe2\xe8\xea\xe7\xec\xe9\xe5\xea\xe4\xde\xe5\xe4\ \xdd\xe4\xe4\xde\xe5\xe3\xde\xe4\xe3\xdd\xe4\xe2\xdc\xe3\xe3\xdc\ \xe2\xe2\xdc\xe1\xe2\xdc\xe1\xe2\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\ \xe2\xdb\xe0\xe2\xdb\xe0\xe1\xda\xdd\xe1\xd8\xdb\xe1\xd8\xdb\xdf\ \xd7\xda\xdf\xd6\xd9\xde\xd5\xd9\xdd\xd4\xd9\xdc\xd3\xd8\xdb\xd3\ \xd8\xda\xd3\xd7\xd9\xd3\xd7\xda\xd2\xd8\xda\xd2\xd8\xda\xd3\xd8\ \xda\xd4\xd8\xdc\xd5\xda\xdc\xd5\xdb\xde\xd6\xde\xdd\xd8\xde\xde\ \xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd8\xde\xde\xd8\ \xde\xde\xd7\xdc\xdf\xd8\xdd\xde\xd7\xdc\xe0\xd9\xde\xe0\xd9\xde\ \xe0\xd9\xde\xdf\xd8\xdd\xde\xd7\xdc\xdc\xd5\xda\xd8\xd1\xd7\xd2\ \xcb\xd2\xc2\xbb\xc6\xb4\xb2\xbf\xb0\xaf\xbd\xb0\xae\xbb\xb2\xb0\ \xbc\xb3\xb1\xbd\xb4\xb2\xbe\xb6\xb4\xc1\xb9\xb7\xc3\xb8\xb6\xc2\ \xb6\xb3\xbf\xb9\xb4\xc0\xbe\xb9\xc2\xc0\xb9\xc2\xc5\xbd\xc4\xc8\ \xbe\xc3\xc6\xbb\xc2\xc7\xbb\xc2\xc7\xbb\xc1\xc6\xbb\xc2\xc6\xbb\ \xc2\xc6\xbb\xc3\xc4\xbb\xc3\xc3\xba\xc3\xc2\xba\xc4\xbe\xb6\xc2\ \xac\xa7\xb6\x94\x92\xa4\x7c\x7b\x90\x61\x61\x75\x48\x4a\x5d\x3c\ \x3f\x52\x3c\x40\x53\x3d\x43\x58\x37\x3d\x51\x2d\x33\x47\x2b\x32\ \x46\x31\x38\x4d\x31\x39\x4e\x3a\x40\x56\x4e\x52\x67\x6a\x6b\x7d\ \x8d\x8b\x9a\xaa\xa6\xb2\xba\xb6\xc1\xbf\xba\xc4\xc0\xbb\xc4\xc2\ \xbc\xc6\xc3\xbd\xc6\xc1\xbb\xc4\xbc\xb8\xc1\xb7\xb3\xbd\xad\xad\ \xb6\xa2\xa3\xae\x99\x9c\xa9\x88\x91\xa0\x62\x78\x89\x47\x68\x77\ \x5f\x78\x85\x75\x84\x92\x71\x7f\x8e\x65\x75\x84\x5d\x6b\x7b\x52\ \x5f\x71\x4e\x59\x6c\x4f\x56\x6a\x48\x4f\x63\x3b\x40\x54\x28\x2d\ \x42\x22\x27\x3b\x1e\x24\x38\x1b\x22\x36\x00\x00\x00\xec\xe8\xee\ \xeb\xe7\xed\xe9\xe5\xec\xe9\xe5\xeb\xea\xe3\xea\xe9\xe2\xe9\xe9\ \xe2\xe7\xea\xe3\xe8\xea\xe4\xe8\xeb\xe3\xe6\xeb\xe2\xe5\xeb\xe3\ \xe5\xeb\xe2\xe6\xea\xe3\xe7\xe9\xe2\xe7\xea\xe3\xe8\xea\xe3\xe8\ \xec\xe5\xea\xed\xe6\xeb\xed\xe6\xeb\xec\xe6\xec\xec\xe6\xeb\xec\ \xe5\xec\xec\xe5\xec\xeb\xe5\xeb\xeb\xe4\xeb\xec\xe5\xec\xec\xe5\ \xec\xec\xe5\xec\xea\xe3\xea\xea\xe3\xea\xe9\xe3\xe9\xe9\xe2\xe9\ \xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe3\xe9\xe8\xe2\xe8\xe7\ \xe1\xe7\xe5\xe0\xe6\xe4\xdd\xe4\xe3\xdd\xe4\xe3\xde\xe5\xe3\xde\ \xe4\xe2\xdf\xe5\xe3\xdd\xe4\xe3\xdd\xe4\xe2\xdd\xe2\xe2\xdc\xe1\ \xe2\xdc\xe1\xe1\xda\xdf\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdc\xe1\xe2\ \xdb\xe0\xe0\xd9\xdd\xe1\xd7\xda\xdf\xd6\xd9\xdf\xd6\xd9\xdf\xd6\ \xd9\xde\xd5\xd8\xdd\xd4\xd7\xdd\xd3\xd7\xdc\xd2\xd8\xdb\xd2\xd7\ \xdb\xd1\xd7\xda\xd2\xd7\xdb\xd2\xd8\xd9\xd3\xd8\xda\xd3\xd8\xdc\ \xd5\xda\xdd\xd6\xdb\xde\xd7\xdd\xde\xd8\xdd\xde\xd7\xde\xde\xd7\ \xde\xdf\xd8\xdf\xde\xd7\xde\xdf\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdd\ \xde\xd7\xdc\xde\xd7\xdc\xe0\xd9\xde\xdf\xd8\xdd\xe0\xd9\xde\xdf\ \xd9\xde\xe0\xd9\xde\xde\xd8\xde\xdb\xd5\xdb\xd6\xcf\xd6\xc0\xba\ \xc5\xb4\xb1\xbe\xb2\xb0\xbd\xb1\xaf\xbc\xb4\xb1\xbd\xb3\xb1\xbe\ \xb5\xb3\xbf\xb8\xb7\xc2\xbc\xba\xc5\xbd\xbb\xc6\xb9\xb7\xc3\xb8\ \xb4\xc0\xbd\xb8\xc2\xc1\xba\xc3\xc6\xbd\xc4\xce\xc3\xc6\xce\xc1\ \xc5\xcd\xc0\xc3\xcd\xc0\xc3\xcc\xbf\xc3\xcc\xbf\xc3\xcc\xc0\xc6\ \xca\xc0\xc7\xca\xc0\xc8\xc9\xc1\xc9\xc8\xc0\xcb\xc8\xc1\xca\xc5\ \xbf\xc9\xbc\xb7\xc3\xa4\xa0\xaf\x7a\x78\x8b\x4f\x50\x65\x3f\x43\ \x57\x3e\x44\x58\x3f\x45\x59\x33\x39\x4c\x2a\x30\x44\x2f\x36\x4a\ \x2f\x36\x4b\x31\x38\x4e\x38\x3f\x56\x3e\x44\x5b\x4a\x4b\x5e\x6e\ \x6b\x7b\x94\x90\x9d\xb1\xab\xb5\xc2\xbc\xc5\xc9\xc2\xc9\xc9\xc2\ \xca\xc6\xbf\xc6\xc0\xba\xc1\xba\xb6\xbd\xb3\xaf\xb8\xa9\xa8\xb1\ \x9f\xa1\xaa\x96\x99\xa5\x83\x8c\x9b\x5b\x74\x84\x43\x68\x75\x59\ \x74\x80\x66\x7a\x86\x5d\x6d\x7c\x4e\x5b\x6b\x46\x4e\x60\x4e\x57\ \x6a\x5d\x62\x75\x52\x58\x6c\x3d\x42\x59\x3d\x42\x5a\x3c\x42\x5b\ \x2e\x36\x50\x2a\x31\x4a\x00\x00\x00\xed\xe9\xef\xec\xe8\xee\xeb\ \xe7\xed\xec\xe4\xeb\xea\xe3\xeb\xeb\xe4\xea\xeb\xe4\xe9\xea\xe3\ \xe8\xea\xe2\xe6\xeb\xe2\xe5\xec\xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\ \xea\xe2\xe6\xe9\xe2\xe8\xe9\xe2\xe7\xea\xe3\xe8\xec\xe5\xea\xec\ \xe5\xea\xed\xe6\xeb\xed\xe7\xec\xee\xe8\xed\xee\xe7\xed\xed\xe6\ \xed\xed\xe5\xed\xed\xe6\xed\xec\xe5\xed\xed\xe6\xec\xec\xe5\xeb\ \xeb\xe4\xeb\xeb\xe4\xeb\xea\xe3\xea\xe9\xe2\xe9\xe7\xe0\xe7\xe8\ \xe1\xe8\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xdd\ \xe4\xe2\xdd\xe4\xe1\xde\xe4\xe1\xdd\xe3\xe3\xde\xe5\xe4\xdd\xe4\ \xe3\xdc\xe3\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe2\ \xdb\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe2\xdb\xe0\xe1\xda\xdf\xe0\xd9\ \xdc\xdf\xd7\xda\xde\xd5\xd8\xdd\xd4\xd7\xdd\xd4\xd7\xdd\xd4\xd7\ \xdc\xd3\xd6\xdb\xd2\xd5\xdb\xd2\xd5\xdb\xd1\xd6\xda\xd0\xd6\xdb\ \xd1\xd7\xdb\xd2\xd8\xda\xd3\xd8\xd9\xd2\xd7\xdc\xd5\xda\xdc\xd5\ \xda\xdc\xd5\xda\xde\xd7\xdc\xdf\xd7\xdc\xdf\xd6\xdd\xdf\xd8\xdf\ \xdd\xd6\xdd\xde\xd7\xde\xde\xd8\xde\xde\xd7\xdc\xdf\xd8\xdd\xde\ \xd7\xdc\xdd\xd6\xdb\xde\xd7\xdc\xdf\xd8\xdd\xdf\xd9\xde\xe0\xda\ \xdf\xdf\xd9\xde\xdf\xd9\xde\xda\xd3\xd9\xc4\xbd\xc6\xb7\xb3\xbf\ \xb5\xb1\xbc\xb3\xb0\xbc\xb5\xb1\xbc\xb7\xb3\xbe\xb8\xb6\xc1\xbc\ \xb9\xc4\xbf\xbb\xc6\xc1\xbd\xc8\xbe\xba\xc6\xb9\xb6\xc1\xbb\xb6\ \xc1\xc2\xbc\xc5\xc5\xbe\xc5\xd1\xc5\xc7\xd4\xc7\xc9\xd3\xc5\xc7\ \xd3\xc5\xc6\xd2\xc4\xc6\xd2\xc5\xc8\xd1\xc6\xca\xd1\xc6\xcc\xd0\ \xc6\xcd\xcf\xc7\xcd\xce\xc7\xce\xcf\xc7\xd0\xce\xc7\xd0\xcf\xc7\ \xd1\xcc\xc6\xd0\xc0\xbb\xc7\xa2\x9c\xad\x6b\x69\x7d\x4f\x52\x67\ \x4d\x53\x69\x40\x46\x5c\x36\x3e\x53\x36\x3e\x52\x33\x3a\x4f\x30\ \x37\x4d\x30\x37\x4e\x2f\x36\x4c\x2c\x32\x47\x36\x3a\x4f\x52\x52\ \x64\x73\x70\x7d\x92\x8e\x98\xac\xa6\xad\xb6\xaf\xb5\xbc\xb6\xbc\ \xb3\xad\xb4\xa6\xa2\xa9\xa5\xa2\xa8\xa2\xa1\xaa\xa0\xa1\xaa\x99\ \x9b\xa4\x92\x95\xa0\x7c\x87\x97\x53\x70\x80\x41\x66\x73\x49\x63\ \x70\x42\x4d\x5d\x34\x3b\x4c\x30\x36\x48\x38\x3e\x52\x4c\x50\x63\ \x5e\x60\x72\x44\x48\x60\x31\x39\x54\x3d\x44\x5e\x52\x5a\x75\x56\ \x5b\x74\x00\x00\x00\xee\xea\xef\xee\xe8\xef\xed\xe6\xed\xec\xe5\ \xeb\xec\xe5\xeb\xeb\xe4\xea\xeb\xe4\xe9\xea\xe3\xe8\xea\xe2\xe6\ \xeb\xe3\xe5\xec\xe3\xe6\xec\xe3\xe6\xea\xe2\xe5\xe9\xe2\xe5\xe9\ \xe2\xe7\xe9\xe2\xe7\xea\xe3\xe8\xec\xe5\xea\xed\xe6\xeb\xed\xe7\ \xec\xee\xe8\xed\xee\xe8\xed\xee\xe8\xee\xee\xe7\xed\xee\xe7\xee\ \xee\xe7\xed\xed\xe6\xed\xed\xe7\xec\xec\xe6\xeb\xec\xe5\xeb\xeb\ \xe6\xea\xea\xe4\xe9\xe9\xe2\xe9\xe7\xe0\xe7\xe7\xe0\xe7\xe7\xe1\ \xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xde\xe5\xe4\xde\xe5\xe1\xdc\xe6\ \xe1\xdc\xe5\xe1\xdd\xe4\xe3\xdf\xe4\xe3\xde\xe4\xe4\xdd\xe4\xe4\ \xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe1\xe2\xdb\xe0\xe1\xda\xdf\xe2\xdb\ \xe0\xe2\xdb\xe0\xe2\xdb\xe0\xe0\xd9\xde\xdf\xd7\xdb\xdf\xd6\xd9\ \xde\xd5\xd8\xde\xd4\xd7\xde\xd3\xd6\xdc\xd3\xd6\xdc\xd2\xd5\xda\ \xd1\xd4\xda\xd1\xd4\xd9\xd0\xd4\xda\xd0\xd6\xdc\xd2\xd8\xdc\xd2\ \xd8\xdc\xd3\xd9\xda\xd3\xd8\xdb\xd4\xd9\xdb\xd4\xd9\xdb\xd4\xd9\ \xdc\xd5\xda\xdd\xd6\xdb\xde\xd6\xdd\xdf\xd7\xde\xdd\xd7\xdd\xdd\ \xd7\xdd\xde\xd7\xdd\xde\xd7\xdc\xdd\xd6\xdb\xdd\xd6\xdb\xdc\xd5\ \xda\xdc\xd5\xda\xde\xd7\xdc\xde\xd8\xdd\xdf\xd9\xde\xde\xd8\xdd\ \xdf\xd9\xdd\xde\xd8\xdd\xca\xc3\xcb\xb9\xb3\xbe\xb6\xb1\xbc\xb5\ \xb0\xbb\xb5\xb1\xbc\xb8\xb4\xbf\xbb\xb7\xc2\xbf\xbb\xc6\xc0\xbd\ \xc8\xc1\xbd\xc8\xc1\xbd\xc8\xbc\xb9\xc5\xba\xb6\xc1\xc0\xbb\xc4\ \xc7\xc0\xc8\xcf\xc5\xc8\xd7\xc8\xc9\xd8\xca\xcb\xd9\xca\xcb\xd8\ \xca\xcb\xd9\xcb\xcd\xd9\xcc\xcf\xd7\xcc\xd0\xd6\xcc\xd1\xd5\xcc\ \xd2\xd4\xcd\xd2\xd4\xcd\xd3\xd3\xcc\xd2\xd4\xcd\xd4\xd5\xce\xd5\ \xd5\xce\xd5\xd1\xc9\xd2\xbe\xb7\xc3\x92\x8d\x9e\x6e\x6f\x85\x55\ \x5a\x72\x49\x50\x69\x43\x4a\x61\x39\x40\x54\x36\x3e\x52\x33\x3a\ \x51\x2f\x36\x4c\x2c\x32\x47\x28\x2c\x42\x2c\x31\x47\x33\x36\x4b\ \x45\x45\x56\x55\x51\x5d\x5e\x58\x62\x6a\x65\x6c\x62\x5e\x66\x5e\ \x5b\x66\x58\x59\x63\x5d\x63\x6f\x7b\x83\x8e\x96\x98\xa1\x93\x95\ \x9f\x89\x8f\x9b\x73\x82\x92\x4b\x69\x77\x32\x45\x52\x2b\x33\x43\ \x2c\x32\x44\x28\x2d\x40\x2b\x30\x44\x34\x38\x4c\x57\x56\x68\x6d\ \x6c\x7f\x4b\x4e\x67\x38\x3d\x57\x50\x56\x6f\x5f\x61\x76\x00\x00\ \x00\xef\xeb\xf0\xef\xe8\xee\xee\xe6\xee\xec\xe5\xeb\xea\xe4\xea\ \xea\xe4\xe8\xeb\xe4\xe9\xe9\xe2\xe7\xe9\xe3\xe6\xeb\xe2\xe5\xec\ \xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\xe9\xe3\xe6\xea\xe3\xe7\xea\xe3\ \xe8\xeb\xe4\xe9\xec\xe5\xea\xed\xe6\xeb\xee\xe8\xed\xee\xe8\xed\ \xef\xe8\xee\xef\xe8\xef\xef\xe9\xee\xef\xe8\xee\xee\xe8\xed\xee\ \xe8\xed\xed\xe7\xec\xec\xe6\xeb\xeb\xe5\xeb\xeb\xe5\xea\xea\xe4\ \xe9\xe9\xe2\xe9\xe7\xe0\xe7\xe7\xe0\xe7\xe7\xe0\xe7\xe5\xde\xe5\ \xe5\xdf\xe6\xe3\xde\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe1\ \xdc\xe6\xe2\xde\xe4\xe3\xdf\xe5\xe4\xde\xe5\xe5\xde\xe5\xe3\xdc\ \xe3\xe1\xdb\xe1\xe1\xdb\xe0\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xde\ \xdf\xd8\xdd\xde\xd8\xdc\xdf\xd6\xdb\xde\xd5\xd8\xdd\xd4\xd7\xdd\ \xd3\xd6\xdc\xd1\xd4\xdb\xd0\xd3\xda\xd0\xd3\xd9\xcf\xd2\xd8\xcf\ \xd2\xd9\xcf\xd4\xda\xd0\xd6\xdb\xd1\xd7\xdb\xd1\xd7\xdb\xd2\xd8\ \xda\xd2\xd8\xda\xd3\xd8\xda\xd3\xd8\xdb\xd4\xd9\xdc\xd5\xda\xdc\ \xd5\xdb\xdd\xd5\xdb\xde\xd6\xdd\xdd\xd5\xdc\xdc\xd4\xdb\xdc\xd5\ \xdb\xdc\xd5\xdb\xdc\xd6\xda\xdb\xd4\xd9\xda\xd3\xd8\xdb\xd4\xd9\ \xdb\xd5\xda\xdc\xd6\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd7\xdd\xde\ \xd8\xde\xd0\xc9\xd1\xbb\xb4\xbf\xb6\xb0\xbb\xb4\xaf\xbb\xb4\xb0\ \xbb\xb7\xb3\xbe\xbb\xb7\xc2\xbe\xbb\xc6\xc2\xbc\xc7\xc3\xbe\xc8\ \xc3\xbe\xc9\xc1\xbd\xc8\xbb\xb8\xc4\xbd\xb9\xc4\xc6\xc2\xc9\xcf\ \xc7\xcb\xd9\xca\xcb\xdb\xcc\xcc\xdc\xce\xcf\xdd\xcf\xd0\xdd\xd0\ \xd1\xde\xd0\xd2\xdb\xd1\xd3\xdb\xd1\xd4\xda\xd1\xd5\xd9\xd1\xd6\ \xd8\xd0\xd6\xd7\xd0\xd5\xd7\xd1\xd6\xd8\xd1\xd6\xd9\xd1\xd7\xda\ \xd3\xd9\xd9\xd2\xd7\xd0\xc8\xd1\xb7\xb0\xbe\x89\x86\x99\x59\x5c\ \x72\x48\x4e\x64\x3b\x40\x54\x36\x3c\x50\x37\x3f\x53\x32\x38\x4f\ \x2f\x35\x4c\x2c\x32\x4a\x29\x30\x49\x2c\x32\x4a\x2c\x31\x46\x23\ \x26\x35\x1f\x1f\x2d\x24\x23\x2f\x24\x23\x30\x26\x27\x34\x26\x27\ \x36\x2b\x2d\x3e\x44\x4d\x5c\x6f\x78\x84\x8d\x92\x9c\x88\x8f\x9b\ \x7d\x88\x98\x62\x76\x87\x43\x50\x61\x2e\x33\x44\x28\x2d\x3f\x25\ \x2a\x3d\x25\x2b\x3f\x2b\x31\x44\x37\x3a\x4e\x60\x5e\x6f\x67\x67\ \x7a\x4c\x50\x67\x51\x55\x6c\x4f\x51\x64\x00\x00\x00\xef\xec\xf0\ \xf0\xeb\xef\xee\xe8\xee\xec\xe6\xeb\xea\xe4\xe9\xe9\xe4\xe9\xea\ \xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xe9\xe3\xe6\xea\xe1\xe5\xea\xe2\ \xe5\xe9\xe2\xe4\xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\ \xec\xe6\xeb\xed\xe7\xec\xee\xe8\xed\xf0\xea\xef\xef\xe9\xee\xef\ \xe9\xee\xf1\xeb\xf0\xf0\xea\xef\xef\xe9\xee\xee\xe8\xed\xed\xe7\ \xec\xec\xe6\xeb\xec\xe6\xeb\xec\xe6\xeb\xea\xe4\xea\xea\xe3\xe9\ \xe7\xe0\xe7\xe6\xdf\xe6\xe5\xe0\xe5\xe4\xe0\xe6\xe4\xde\xe8\xe4\ \xde\xe7\xe3\xdf\xe8\xe2\xde\xe7\xe3\xdf\xe8\xe3\xde\xe7\xe2\xde\ \xe5\xe2\xde\xe4\xe4\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe3\xdc\xe1\ \xe2\xdb\xe0\xe0\xd9\xde\xdf\xd8\xde\xe0\xd9\xde\xde\xd7\xdc\xdd\ \xd6\xdb\xdd\xd5\xd9\xdd\xd4\xd8\xde\xd3\xd6\xdc\xd1\xd4\xda\xcf\ \xd2\xda\xcf\xd1\xd9\xcf\xd1\xd9\xce\xd1\xd8\xcf\xd3\xd8\xce\xd3\ \xd9\xce\xd5\xd9\xd0\xd6\xda\xd0\xd6\xdb\xd1\xd7\xdb\xd0\xd7\xd9\ \xd2\xd7\xdb\xd4\xd9\xdb\xd3\xd8\xdb\xd5\xda\xdb\xd3\xda\xdc\xd4\ \xdb\xdc\xd4\xdb\xdb\xd3\xda\xda\xd3\xda\xd9\xd2\xd9\xd9\xd3\xd9\ \xd9\xd2\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xd8\xd1\xd6\xd8\xd2\xd8\xda\ \xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdb\xd5\xdc\xde\xd7\xde\xd8\xd1\ \xd8\xc0\xb9\xc3\xb7\xb0\xbb\xb3\xad\xba\xb1\xae\xba\xb5\xb2\xbd\ \xb9\xb5\xc0\xbe\xb9\xc4\xc1\xbc\xc7\xc4\xbf\xc8\xc5\xc0\xc9\xc5\ \xc0\xca\xc0\xbd\xc8\xbd\xb9\xc5\xc5\xc1\xc9\xcf\xc8\xce\xd8\xcb\ \xcd\xda\xcb\xcc\xdc\xce\xce\xe0\xd1\xd2\xe1\xd3\xd4\xe0\xd4\xd5\ \xe0\xd3\xd6\xdf\xd4\xd6\xde\xd5\xd7\xdc\xd3\xd6\xdc\xd3\xd6\xdc\ \xd3\xd7\xdc\xd3\xd8\xdc\xd3\xd9\xdb\xd4\xda\xdb\xd5\xda\xdb\xd4\ \xd9\xdb\xd4\xd9\xd8\xd0\xd7\xca\xc3\xcd\xa3\x9c\xaa\x5f\x5d\x6f\ \x3a\x3b\x4d\x34\x37\x4a\x37\x3d\x52\x34\x3a\x51\x31\x37\x4f\x2f\ \x35\x4f\x2a\x32\x4d\x2f\x37\x50\x31\x37\x51\x29\x2e\x44\x21\x25\ \x35\x1e\x1f\x2e\x1c\x1d\x29\x1c\x1e\x2b\x23\x25\x35\x25\x27\x39\ \x2c\x31\x44\x44\x4b\x5c\x6f\x77\x84\x8b\x90\x9c\x85\x8d\x9a\x78\ \x84\x95\x5d\x6a\x7b\x33\x38\x47\x22\x25\x37\x25\x29\x3b\x27\x2b\ \x3e\x29\x2f\x41\x2a\x30\x43\x3a\x3d\x50\x70\x6e\x80\x63\x64\x78\ \x55\x59\x6d\x47\x4a\x5e\x00\x00\x00\xf0\xed\xef\xf0\xec\xf0\xef\ \xe9\xee\xed\xe6\xec\xeb\xe5\xea\xea\xe4\xe9\xea\xe3\xe8\xe9\xe2\ \xe7\xe8\xe1\xe6\xe8\xe1\xe7\xe9\xe2\xe5\xea\xe2\xe6\xe9\xe2\xe6\ \xea\xe3\xe7\xe9\xe2\xe8\xea\xe3\xe8\xeb\xe5\xea\xed\xe7\xec\xee\ \xe8\xed\xf0\xea\xef\xf1\xeb\xf0\xf1\xeb\xf0\xf1\xeb\xf0\xf1\xeb\ \xf0\xf0\xea\xef\xef\xe9\xee\xef\xe9\xee\xee\xe8\xed\xee\xe7\xec\ \xee\xe7\xec\xec\xe5\xea\xec\xe5\xea\xe9\xe3\xe9\xe7\xe0\xe7\xe5\ \xe0\xe6\xe4\xdf\xe7\xe3\xde\xe8\xe4\xde\xe7\xe3\xdf\xe8\xe3\xe0\ \xe9\xe2\xe0\xe9\xe3\xdf\xe8\xe2\xdf\xe8\xe2\xdd\xe6\xe1\xdd\xe5\ \xe2\xdd\xe3\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdb\xe1\xe1\xdb\xe0\xdf\ \xd8\xe0\xde\xd7\xdf\xde\xd7\xdd\xde\xd7\xdd\xdd\xd6\xdb\xde\xd6\ \xda\xdf\xd6\xd8\xde\xd4\xd7\xdd\xd1\xd4\xdb\xd0\xd3\xd9\xce\xd1\ \xd9\xce\xd1\xd9\xce\xd1\xd7\xcd\xd1\xd7\xcd\xd2\xd7\xcd\xd3\xd8\ \xce\xd4\xd9\xcf\xd5\xd9\xcf\xd5\xd9\xd0\xd5\xd8\xd1\xd6\xd9\xd2\ \xd7\xd9\xd2\xd8\xd9\xd1\xd8\xda\xd2\xd9\xdb\xd3\xda\xdb\xd3\xda\ \xda\xd2\xd9\xd7\xd0\xd7\xd5\xce\xd5\xd4\xcd\xd4\xd2\xcb\xd2\xd0\ \xc8\xce\xcd\xc6\xcb\xcf\xc8\xcd\xd2\xcb\xd0\xd6\xcf\xd5\xd8\xd1\ \xd8\xd9\xd2\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xc9\xc1\xcb\ \xb6\xb0\xbb\xb4\xae\xba\xb3\xae\xba\xb4\xb0\xbc\xb8\xb4\xbf\xbd\ \xb9\xc3\xc2\xbd\xc6\xc3\xbd\xc7\xc4\xbe\xc8\xc5\xbf\xca\xc5\xc1\ \xca\xbf\xbc\xc7\xc2\xbf\xc8\xcc\xc6\xcc\xd4\xca\xcd\xd8\xca\xca\ \xdb\xcc\xca\xde\xd1\xcf\xe1\xd3\xd4\xe3\xd5\xd6\xe3\xd6\xd7\xe2\ \xd6\xd8\xe0\xd6\xd8\xdf\xd5\xd8\xdf\xd6\xd9\xdf\xd6\xd9\xdf\xd6\ \xd9\xdf\xd6\xd9\xde\xd5\xd9\xde\xd4\xd9\xdf\xd6\xda\xde\xd5\xda\ \xdd\xd5\xda\xdb\xd4\xda\xd2\xca\xd2\xa4\x99\xa5\x4d\x49\x58\x3f\ \x41\x54\x45\x4a\x61\x3f\x46\x5c\x37\x3d\x54\x39\x40\x58\x33\x3a\ \x54\x30\x37\x52\x30\x38\x52\x2e\x35\x4d\x2b\x30\x47\x26\x2a\x3c\ \x21\x23\x34\x22\x25\x36\x27\x2a\x3c\x26\x2b\x3d\x28\x2e\x41\x2f\ \x35\x48\x42\x47\x58\x68\x6c\x79\x75\x7b\x88\x86\x8c\x98\x70\x77\ \x85\x35\x37\x45\x1e\x1f\x2e\x22\x25\x36\x28\x2c\x3e\x24\x29\x3b\ \x21\x24\x36\x25\x27\x3a\x47\x47\x58\x5d\x5e\x70\x41\x45\x5a\x3a\ \x40\x55\x00\x00\x00\xf1\xed\xef\xf1\xec\xef\xef\xe9\xee\xed\xe7\ \xec\xec\xe6\xeb\xea\xe4\xe9\xea\xe3\xe8\xe9\xe2\xe7\xe9\xe2\xe7\ \xe9\xe2\xe7\xea\xe3\xe8\xe9\xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xea\ \xe3\xe8\xea\xe3\xe8\xec\xe6\xeb\xed\xe7\xec\xef\xe9\xee\xf0\xeb\ \xf0\xf2\xeb\xf0\xf2\xec\xf1\xf1\xeb\xf0\xf2\xec\xf1\xf0\xea\xef\ \xf0\xea\xef\xef\xe9\xee\xee\xe8\xed\xed\xe7\xec\xed\xe6\xeb\xec\ \xe5\xea\xeb\xe4\xe9\xea\xe3\xe9\xe8\xe1\xe8\xe6\xe0\xe7\xe4\xe0\ \xe8\xe3\xdf\xe8\xe2\xde\xe7\xe3\xdf\xe8\xe2\xe0\xe9\xe2\xdf\xe8\ \xe2\xdf\xe8\xe2\xe0\xe8\xe4\xdf\xe8\xe3\xde\xe7\xe3\xde\xe5\xe3\ \xde\xe4\xe3\xdd\xe4\xe3\xdc\xe2\xe2\xda\xe1\xe1\xda\xe1\xe0\xd9\ \xe0\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\xdd\xdf\xd7\xdc\xdf\xd6\xd9\ \xdf\xd6\xd9\xde\xd3\xd6\xdc\xd1\xd4\xd9\xce\xd1\xd8\xcd\xd0\xd8\ \xcd\xd0\xd6\xcc\xd0\xd5\xcb\xd1\xd7\xcd\xd3\xd8\xcd\xd3\xd8\xcf\ \xd5\xd8\xcf\xd4\xd7\xd0\xd5\xd8\xd1\xd6\xd9\xd1\xd7\xd8\xd0\xd7\ \xd9\xd1\xd8\xda\xd2\xd9\xda\xd2\xd9\xda\xd2\xd9\xd9\xd2\xd8\xd4\ \xcc\xd4\xcd\xc5\xcc\xc8\xc0\xc7\xc3\xbb\xc3\xbe\xb6\xbe\xbc\xb4\ \xbc\xbd\xb5\xbd\xc1\xba\xc1\xc7\xc0\xc6\xcd\xc6\xcb\xd1\xcb\xd1\ \xd4\xcd\xd3\xd6\xcf\xd5\xd9\xd2\xd9\xd0\xc9\xd0\xbb\xb4\xbe\xb4\ \xad\xb9\xb3\xad\xba\xb6\xb1\xbc\xb7\xb3\xbe\xbc\xb7\xc2\xc1\xbc\ \xc5\xc3\xbe\xc7\xc3\xbd\xc8\xc5\xbf\xca\xc7\xc2\xcb\xc2\xbf\xc9\ \xbf\xbb\xc6\xc4\xc0\xc8\xcb\xc4\xc9\xd5\xc7\xc9\xd8\xc7\xc7\xdc\ \xce\xcc\xdf\xd2\xd1\xe2\xd5\xd6\xe3\xd7\xd7\xe3\xd7\xd8\xe2\xd6\ \xd8\xe1\xd6\xd8\xe1\xd6\xd8\xe1\xd7\xd9\xe1\xd7\xda\xe1\xd6\xd9\ \xdf\xd5\xd8\xdd\xd5\xd7\xde\xd5\xd8\xde\xd5\xd9\xdf\xd5\xda\xdd\ \xd5\xdb\xdb\xd4\xda\xcb\xc1\xc7\x6d\x65\x74\x4c\x4e\x65\x5a\x5f\ \x79\x58\x5e\x76\x4d\x53\x69\x46\x4c\x61\x3f\x45\x5b\x39\x3f\x57\ \x34\x3b\x53\x32\x38\x4f\x33\x37\x4f\x31\x36\x4d\x2d\x31\x46\x2a\ \x2e\x40\x29\x2d\x3f\x29\x2d\x3f\x29\x2e\x41\x26\x2a\x3d\x24\x26\ \x38\x31\x35\x48\x38\x3e\x4f\x4f\x54\x60\x5c\x5f\x69\x31\x32\x3d\ \x17\x16\x26\x20\x22\x33\x26\x2a\x3c\x23\x26\x38\x1e\x1f\x31\x1e\ \x1f\x31\x24\x26\x38\x35\x39\x4d\x2f\x36\x4c\x2b\x31\x48\x00\x00\ \x00\xf1\xec\xee\xf0\xeb\xef\xef\xe9\xee\xed\xe7\xec\xec\xe6\xeb\ \xeb\xe5\xea\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe9\xe9\xe2\xe7\xea\ \xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe4\ \xe9\xeb\xe5\xea\xee\xe8\xed\xef\xe9\xee\xf0\xea\xef\xf2\xed\xef\ \xf1\xec\xef\xf1\xec\xf0\xf1\xeb\xf0\xf1\xeb\xf0\xf0\xea\xef\xef\ \xea\xee\xef\xe8\xec\xee\xe7\xec\xed\xe6\xec\xec\xe5\xea\xed\xe6\ \xeb\xeb\xe5\xea\xe9\xe2\xe8\xe7\xe1\xe8\xe5\xe1\xe9\xe4\xe0\xe9\ \xe3\xe0\xe9\xe3\xe0\xe9\xe3\xe0\xe8\xe3\xe0\xe9\xe3\xe0\xe9\xe3\ \xe0\xe9\xe4\xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xde\xe7\xe3\xde\ \xe4\xe2\xde\xe4\xe2\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\ \xe0\xda\xe0\xe0\xda\xdf\xe0\xd9\xde\xe0\xd6\xdb\xdf\xd6\xd9\xdd\ \xd3\xd6\xdb\xd1\xd4\xd9\xce\xd1\xd8\xcd\xcf\xd7\xcc\xce\xd6\xca\ \xd0\xd4\xca\xd0\xd5\xcb\xd1\xd7\xce\xd4\xd7\xd0\xd5\xd8\xd1\xd5\ \xd7\xd0\xd5\xd8\xd0\xd7\xd9\xd1\xd8\xd9\xd0\xd7\xd8\xd1\xd8\xd9\ \xd2\xd9\xda\xd2\xd8\xd9\xd2\xd8\xd7\xcf\xd6\xcd\xc5\xcc\xc4\xbc\ \xc3\xbb\xb3\xbc\xb8\xb0\xba\xb6\xaf\xba\xb5\xad\xb7\xb4\xad\xb8\ \xb6\xae\xb8\xb8\xb0\xba\xbc\xb4\xbe\xc2\xb9\xc1\xc6\xbf\xc6\xcb\ \xc3\xca\xd0\xc9\xd0\xcf\xc8\xcf\xbe\xb6\xc1\xb4\xae\xb9\xb4\xae\ \xb9\xb6\xb0\xbb\xb7\xb2\xbd\xb9\xb5\xc0\xbf\xba\xc4\xc3\xbe\xc7\ \xc4\xbe\xc8\xc4\xbf\xc9\xc7\xc2\xcb\xc5\xc0\xcb\xc0\xbc\xc7\xbe\ \xba\xc5\xc6\xc0\xc8\xd4\xc8\xcb\xd4\xc4\xc5\xd8\xc9\xc8\xdc\xcf\ \xcd\xe0\xd2\xd1\xe1\xd4\xd4\xe2\xd6\xd6\xe3\xd7\xd7\xe2\xd5\xd7\ \xe2\xd6\xd8\xe1\xd7\xd9\xe2\xd7\xd9\xe1\xd6\xd9\xdf\xd5\xd8\xdf\ \xd5\xd8\xde\xd5\xd8\xdd\xd4\xd7\xde\xd5\xd8\xdd\xd6\xdb\xdd\xd6\ \xdb\xd4\xcd\xd3\xa6\x9d\xab\x84\x81\x98\x84\x86\x9d\x75\x78\x90\ \x5e\x63\x7a\x53\x56\x6c\x4d\x51\x66\x44\x4a\x60\x3f\x44\x5b\x39\ \x3d\x55\x35\x39\x51\x37\x3c\x52\x31\x36\x4a\x2f\x33\x46\x2b\x2f\ \x41\x2a\x2e\x40\x26\x2a\x3b\x1e\x21\x31\x20\x23\x35\x27\x2c\x40\ \x1f\x22\x35\x23\x25\x35\x27\x28\x35\x1e\x1e\x2b\x18\x18\x27\x20\ \x21\x32\x23\x27\x38\x22\x26\x38\x1f\x22\x34\x1e\x20\x32\x21\x24\ \x36\x28\x2c\x40\x2a\x30\x46\x26\x2b\x40\x00\x00\x00\xf1\xec\xef\ \xf0\xea\xef\xf0\xe9\xee\xee\xe7\xec\xee\xe7\xec\xed\xe6\xeb\xec\ \xe5\xea\xeb\xe4\xe9\xea\xe4\xe9\xeb\xe4\xe9\xea\xe3\xe8\xe9\xe2\ \xe7\xe9\xe2\xe6\xe8\xe1\xe6\xe9\xe2\xe7\xeb\xe4\xe9\xed\xe7\xec\ \xee\xe8\xed\xef\xe9\xed\xf1\xeb\xee\xf2\xed\xf0\xf3\xee\xf0\xf3\ \xee\xef\xf3\xee\xf0\xf2\xec\xee\xf2\xec\xef\xf1\xeb\xed\xf0\xe9\ \xec\xee\xe7\xea\xee\xe7\xea\xed\xe6\xea\xec\xe5\xea\xeb\xe5\xea\ \xea\xe3\xe8\xe8\xe2\xe8\xe7\xe2\xe9\xe6\xe2\xeb\xe3\xe0\xe9\xe2\ \xdf\xe9\xe2\xdf\xe9\xe4\xe1\xe9\xe4\xe1\xea\xe5\xe2\xeb\xe5\xe2\ \xeb\xe7\xe1\xea\xe6\xe1\xea\xe5\xe0\xe9\xe4\xe0\xe8\xe4\xdf\xe6\ \xe3\xdf\xe5\xe2\xde\xe4\xe1\xdd\xe3\xe1\xdd\xe3\xe2\xdb\xe2\xe1\ \xda\xe0\xe0\xd9\xde\xe0\xd9\xdd\xdf\xd5\xda\xdc\xd3\xd6\xda\xd0\ \xd3\xd8\xcd\xd0\xd5\xcb\xcf\xd4\xc9\xce\xd1\xc7\xcd\xd3\xc9\xcf\ \xd5\xcb\xd1\xd7\xcd\xd2\xd7\xd0\xd5\xd7\xcf\xd5\xd6\xce\xd5\xd7\ \xcf\xd6\xd8\xd0\xd7\xd8\xd0\xd7\xd8\xd1\xd8\xd9\xd1\xd8\xd9\xd2\ \xd9\xd9\xd1\xd8\xd3\xcc\xd2\xc5\xbc\xc5\xb9\xb1\xbb\xb8\xb1\xbb\ \xb9\xb2\xbc\xb9\xb1\xbc\xb5\xaf\xba\xb3\xad\xb8\xb2\xad\xb8\xb4\ \xae\xb9\xb7\xb0\xba\xba\xb2\xbc\xbd\xb6\xc0\xc1\xb9\xc2\xc5\xbe\ \xc5\xc5\xbe\xc7\xbc\xb6\xc1\xb6\xb0\xbb\xb3\xac\xb9\xb3\xad\xb8\ \xb5\xb0\xbb\xb7\xb3\xbe\xbd\xb9\xc3\xc3\xbe\xc7\xc3\xbe\xc7\xc3\ \xbe\xc8\xc5\xbf\xc9\xc6\xc2\xcb\xc2\xbe\xc9\xbe\xba\xc5\xc8\xc3\ \xcb\xd2\xcb\xcf\xd0\xc2\xc3\xd3\xc2\xc1\xd7\xc7\xc5\xda\xcc\xca\ \xdd\xd0\xce\xdf\xd2\xd3\xe1\xd4\xd5\xe1\xd5\xd5\xe2\xd5\xd7\xe2\ \xd5\xd7\xe1\xd5\xd7\xdf\xd4\xd6\xdf\xd4\xd7\xdf\xd4\xd7\xdf\xd4\ \xd7\xdd\xd5\xd8\xdd\xd4\xd7\xde\xd5\xdb\xdc\xd5\xda\xdc\xd4\xd9\ \xd6\xcf\xd5\xd2\xcb\xd2\xce\xc8\xcf\xc1\xba\xc3\xa5\x9f\xae\x7c\ \x7a\x8d\x5a\x5b\x71\x55\x5a\x70\x54\x59\x6e\x4e\x53\x69\x44\x4a\ \x5e\x40\x45\x5a\x37\x3d\x51\x38\x3c\x4e\x33\x36\x48\x2e\x31\x43\ \x23\x25\x36\x1f\x21\x31\x25\x29\x3c\x26\x2b\x3f\x1b\x1e\x30\x1d\ \x1f\x31\x16\x17\x24\x16\x16\x22\x19\x19\x26\x18\x18\x25\x19\x1a\ \x26\x19\x1c\x2a\x1e\x21\x32\x21\x25\x38\x29\x2d\x3f\x29\x2f\x42\ \x23\x2a\x3d\x21\x28\x3b\x00\x00\x00\xf1\xec\xee\xf0\xeb\xed\xf0\ \xe9\xed\xee\xe7\xec\xee\xe7\xec\xed\xe6\xea\xed\xe6\xea\xeb\xe5\ \xea\xeb\xe4\xe9\xea\xe3\xe7\xea\xe3\xe7\xe9\xe2\xe6\xe8\xe1\xe6\ \xe7\xe0\xe6\xe9\xe2\xe7\xeb\xe4\xe9\xed\xe6\xeb\xee\xe8\xed\xef\ \xea\xed\xf1\xec\xee\xf3\xee\xf0\xf2\xee\xf0\xf2\xee\xf0\xf3\xef\ \xf1\xf2\xee\xf0\xf2\xed\xef\xf1\xec\xee\xf1\xea\xed\xf0\xe9\xec\ \xef\xe8\xeb\xee\xe7\xeb\xed\xe6\xeb\xec\xe5\xea\xea\xe3\xe8\xe9\ \xe2\xe8\xe7\xe2\xea\xe6\xe2\xeb\xe4\xe1\xe9\xe3\xe0\xe9\xe3\xdf\ \xea\xe3\xe0\xea\xe4\xe1\xea\xe5\xe1\xea\xe8\xe3\xec\xe8\xe3\xec\ \xe7\xe2\xec\xe6\xe1\xea\xe6\xe1\xea\xe5\xe0\xe9\xe5\xdf\xe8\xe3\ \xdf\xe5\xe2\xde\xe4\xe1\xdd\xe3\xe2\xdc\xe2\xe1\xdb\xe1\xe1\xda\ \xdf\xe0\xd9\xde\xde\xd6\xdb\xdc\xd2\xd7\xd8\xce\xd4\xd5\xcb\xd1\ \xd3\xc9\xcf\xd2\xc7\xcd\xd0\xc6\xcc\xd1\xc7\xcd\xd4\xca\xd0\xd6\ \xcd\xd2\xd7\xcf\xd4\xd5\xce\xd4\xd5\xcd\xd4\xd6\xce\xd5\xd6\xcf\ \xd6\xd7\xcf\xd6\xd9\xd1\xd8\xd9\xd2\xd8\xda\xd3\xd9\xd9\xd2\xd7\ \xd4\xcd\xd3\xc1\xba\xc4\xb7\xb1\xbc\xb9\xb2\xbc\xba\xb2\xbc\xbb\ \xb3\xbd\xba\xb2\xbc\xb7\xb0\xbb\xb5\xaf\xba\xb5\xaf\xba\xb5\xaf\ \xba\xb8\xb1\xbb\xbb\xb4\xbe\xc0\xb8\xc2\xc1\xba\xc3\xbd\xb7\xc1\ \xb7\xb1\xbd\xb6\xb0\xbc\xb3\xad\xb9\xb2\xab\xb7\xb4\xae\xb9\xb6\ \xb2\xbd\xbc\xb8\xc2\xc2\xbd\xc6\xc4\xbf\xc8\xc4\xbe\xc8\xc4\xbe\ \xc7\xc5\xc0\xc9\xc5\xc1\xca\xc3\xbf\xca\xc9\xc6\xcf\xd2\xcc\xd1\ \xcd\xbe\xc0\xcc\xba\xbc\xcf\xbe\xbd\xd4\xc3\xc2\xd8\xc9\xc7\xda\ \xcc\xcb\xde\xcf\xce\xdf\xd0\xd2\xe0\xd2\xd3\xe0\xd3\xd5\xe0\xd3\ \xd5\xdf\xd3\xd5\xdf\xd4\xd6\xde\xd4\xd6\xdf\xd4\xd7\xdd\xd4\xd7\ \xde\xd4\xd9\xdc\xd4\xda\xdb\xd4\xd9\xdb\xd4\xd9\xda\xd3\xd8\xd7\ \xd0\xd5\xd4\xcc\xd2\xcf\xc7\xcd\xca\xc2\xc9\xb5\xad\xb9\x94\x90\ \xa2\x87\x86\x99\x79\x78\x8c\x65\x66\x7b\x57\x5b\x70\x50\x54\x69\ \x49\x4d\x61\x43\x47\x59\x3b\x3e\x4f\x31\x33\x44\x24\x26\x36\x28\ \x2a\x3d\x2b\x2f\x42\x21\x24\x37\x1c\x1f\x32\x1e\x22\x33\x17\x18\ \x27\x14\x14\x20\x16\x16\x21\x12\x11\x1c\x12\x11\x1b\x15\x16\x23\ \x1a\x1e\x2e\x1e\x21\x33\x23\x27\x39\x32\x38\x4a\x37\x3d\x52\x35\ \x3c\x53\x00\x00\x00\xf1\xeb\xee\xf1\xeb\xee\xf0\xe9\xec\xee\xe7\ \xea\xee\xe7\xea\xed\xe6\xea\xed\xe6\xe9\xec\xe4\xe8\xec\xe3\xe7\ \xeb\xe3\xe6\xea\xe2\xe5\xea\xe2\xe5\xe9\xe1\xe5\xe8\xe1\xe5\xe9\ \xe2\xe7\xec\xe5\xea\xed\xe6\xeb\xef\xe8\xed\xf1\xeb\xee\xf2\xed\ \xef\xf2\xef\xf0\xf3\xf0\xf0\xf3\xf0\xf0\xf2\xef\xf1\xf3\xef\xf0\ \xf3\xee\xf0\xf2\xed\xee\xf2\xec\xed\xf1\xea\xec\xf0\xe9\xec\xef\ \xe8\xeb\xee\xe7\xea\xed\xe6\xea\xeb\xe4\xe9\xe9\xe3\xe8\xe8\xe2\ \xe9\xe7\xe2\xea\xe4\xe0\xe9\xe3\xe0\xe8\xe2\xde\xe9\xe3\xe0\xe9\ \xe4\xe1\xea\xe5\xe2\xeb\xe8\xe3\xec\xe9\xe4\xec\xe8\xe4\xeb\xe8\ \xe3\xea\xe7\xe3\xea\xe7\xe3\xea\xe5\xe1\xe8\xe4\xe0\xe6\xe3\xdf\ \xe5\xe1\xde\xe3\xe1\xdc\xe2\xe2\xdb\xe2\xe1\xdb\xe0\xe0\xd9\xdd\ \xdd\xd6\xdb\xda\xd2\xd7\xd7\xcf\xd4\xd5\xcc\xd1\xd3\xc8\xce\xd1\ \xc7\xcd\xd0\xc5\xcb\xd0\xc6\xcc\xd1\xc8\xce\xd4\xcb\xd1\xd6\xcc\ \xd3\xd5\xcc\xd3\xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd7\xcf\xd6\ \xd9\xd1\xd8\xda\xd4\xd8\xdb\xd4\xd9\xda\xd3\xd8\xd4\xcd\xd3\xc2\ \xbb\xc4\xb8\xb2\xbc\xba\xb2\xbc\xbb\xb3\xbd\xbb\xb3\xbd\xbb\xb3\ \xbd\xba\xb2\xbc\xb6\xb0\xba\xb6\xb0\xbb\xb7\xb1\xbc\xb8\xb1\xbb\ \xba\xb1\xbd\xbc\xb5\xbf\xc0\xb8\xc2\xbd\xb8\xc2\xb7\xb2\xbd\xb5\ \xb0\xbb\xb4\xb0\xbc\xb1\xac\xb8\xb1\xab\xb8\xb6\xb0\xbc\xbb\xb6\ \xc1\xc1\xbc\xc5\xc2\xbc\xc5\xbd\xb7\xc1\xbb\xb4\xbf\xbc\xb6\xc1\ \xc1\xbe\xc9\xcb\xc9\xd3\xcc\xc9\xd2\xcf\xc9\xce\xc4\xb6\xba\xc1\ \xaf\xb2\xc6\xb4\xb3\xcb\xb9\xb7\xd0\xbe\xbd\xd5\xc4\xc2\xd8\xc9\ \xc7\xdc\xcd\xcc\xdd\xce\xcf\xde\xd0\xd1\xde\xd1\xd3\xde\xd2\xd4\ \xde\xd2\xd4\xde\xd3\xd5\xde\xd3\xd6\xdd\xd3\xd6\xdc\xd2\xd7\xdc\ \xd2\xd8\xda\xd3\xd8\xd9\xd2\xd7\xd7\xcf\xd4\xd3\xca\xd0\xcd\xc6\ \xcb\xc8\xc0\xc8\xc4\xbb\xc4\xbe\xb6\xc0\xb9\xb1\xbc\xb5\xad\xb9\ \xac\xa5\xb2\x96\x92\xa3\x7d\x7d\x91\x6b\x6c\x82\x5c\x5f\x74\x53\ \x56\x69\x43\x44\x56\x32\x33\x44\x2e\x2f\x43\x37\x3a\x4e\x31\x33\ \x47\x21\x24\x38\x21\x25\x38\x20\x23\x36\x19\x1a\x2a\x17\x17\x25\ \x16\x18\x25\x18\x19\x27\x14\x15\x22\x1b\x1d\x2d\x21\x26\x3a\x1d\ \x22\x34\x19\x1d\x2f\x23\x26\x38\x40\x47\x5c\x52\x56\x6e\x00\x00\ \x00\xf0\xe9\xeb\xf1\xeb\xec\xf0\xea\xec\xef\xe8\xea\xef\xe8\xea\ \xef\xe7\xea\xee\xe6\xe8\xec\xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\xeb\ \xe2\xe5\xeb\xe1\xe4\xea\xe1\xe4\xea\xe1\xe5\xea\xe2\xe6\xec\xe5\ \xe9\xef\xe8\xeb\xef\xe8\xec\xf1\xeb\xee\xf2\xee\xef\xf2\xf1\xf1\ \xf1\xf2\xf2\xf1\xf1\xf1\xf3\xf2\xf1\xf2\xf1\xf0\xf3\xf0\xf0\xf4\ \xef\xf0\xf2\xed\xee\xf2\xec\xed\xf1\xeb\xed\xf0\xe9\xec\xef\xe8\ \xeb\xed\xe6\xe9\xeb\xe4\xe8\xea\xe3\xe9\xe9\xe2\xe9\xe7\xe0\xe8\ \xe4\xdf\xe8\xe4\xe0\xe9\xe2\xdf\xe7\xe3\xe0\xe9\xe4\xe1\xea\xe8\ \xe3\xeb\xe9\xe4\xec\xe9\xe5\xea\xe9\xe5\xeb\xea\xe6\xec\xe9\xe5\ \xeb\xe8\xe4\xea\xe7\xe3\xe9\xe5\xe1\xe7\xe4\xdf\xe5\xe5\xde\xe5\ \xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xdf\xd9\xdf\xdd\xd6\xdb\xd9\ \xd2\xd7\xd6\xcf\xd4\xd3\xcb\xd1\xd0\xc8\xce\xcf\xc7\xcd\xce\xc5\ \xcb\xce\xc5\xcc\xcf\xc7\xce\xd1\xc8\xd0\xd3\xcb\xd2\xd4\xcc\xd3\ \xd5\xcd\xd4\xd6\xce\xd5\xd7\xcf\xd6\xd7\xcf\xd6\xd9\xd1\xd7\xda\ \xd3\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xcf\xc7\xce\xc0\xb8\xc2\xba\xb2\ \xbc\xba\xb2\xbc\xba\xb2\xbc\xba\xb2\xbc\xb9\xb1\xbb\xba\xb2\xbb\ \xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb2\xbd\xb8\xb1\xbc\xba\ \xb2\xbd\xbc\xb6\xbf\xbd\xb7\xc1\xb8\xb3\xbd\xb4\xaf\xbb\xb4\xaf\ \xbb\xb3\xaf\xba\xaf\xab\xb7\xb1\xad\xb8\xb7\xb2\xbd\xb8\xb1\xbd\ \xb5\xaf\xba\xb5\xae\xbb\xc0\xba\xc6\xd1\xcf\xd9\xe4\xe3\xe9\xed\ \xed\xf0\xdc\xd9\xe1\xc6\xc0\xc7\xb7\xaa\xb1\xb4\xa5\xaa\xb9\xa6\ \xa9\xc0\xab\xac\xc7\xb3\xb3\xce\xbb\xba\xd4\xc3\xc2\xd7\xc7\xc6\ \xd8\xca\xca\xda\xcc\xcd\xda\xcd\xcf\xdc\xcf\xd1\xdc\xd0\xd2\xdc\ \xd1\xd4\xdc\xd1\xd4\xdb\xd1\xd4\xda\xd1\xd4\xd9\xd0\xd5\xd8\xd0\ \xd5\xd5\xcd\xd2\xd2\xc8\xce\xcd\xc3\xca\xc8\xbe\xc6\xc3\xba\xc2\ \xbd\xb4\xbe\xb9\xb0\xba\xb7\xae\xb8\xb7\xae\xb8\xb5\xac\xb7\xb2\ \xa9\xb5\xa8\xa1\xaf\x9a\x94\xa5\x82\x7e\x91\x65\x64\x77\x53\x54\ \x67\x40\x41\x56\x42\x45\x5a\x3e\x41\x56\x2e\x32\x46\x2a\x2e\x41\ \x26\x29\x3c\x23\x26\x3a\x19\x19\x29\x19\x19\x29\x1b\x1c\x2b\x1c\ \x1d\x2c\x17\x18\x26\x1e\x22\x33\x22\x28\x3b\x22\x28\x3c\x1d\x21\ \x35\x19\x1b\x2e\x38\x38\x4b\x66\x66\x79\x00\x00\x00\xef\xe8\xea\ \xf0\xea\xeb\xf0\xea\xeb\xf0\xe9\xe9\xf0\xe8\xe9\xef\xe7\xe8\xee\ \xe5\xe6\xee\xe3\xe5\xed\xe2\xe4\xeb\xe2\xe3\xec\xe2\xe4\xeb\xe1\ \xe4\xea\xe1\xe3\xec\xe3\xe6\xec\xe4\xe7\xed\xe6\xe9\xee\xe7\xea\ \xf0\xe9\xec\xf2\xec\xee\xf2\xef\xf0\xf2\xf2\xf2\xf1\xf1\xf1\xf1\ \xf2\xf2\xf1\xf1\xf1\xf2\xf1\xf1\xf2\xf1\xf1\xf3\xf0\xef\xf3\xee\ \xef\xf3\xed\xee\xf3\xed\xee\xf1\xeb\xec\xef\xe8\xeb\xef\xe6\xe9\ \xeb\xe3\xe8\xea\xe3\xe8\xe9\xe1\xe8\xe6\xe0\xe7\xe4\xdf\xe7\xe4\ \xdf\xe7\xe4\xde\xe7\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe3\xec\xe9\xe5\ \xeb\xea\xe6\xec\xe9\xe6\xeb\xeb\xe6\xed\xeb\xe5\xec\xeb\xe5\xeb\ \xea\xe3\xea\xe8\xe2\xe8\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe2\ \xdb\xe2\xe1\xda\xe1\xde\xd8\xdf\xdc\xd5\xdd\xd8\xd1\xd8\xd4\xcd\ \xd4\xd2\xca\xd1\xd0\xc8\xcf\xce\xc6\xce\xcc\xc4\xcc\xcd\xc5\xcd\ \xce\xc6\xcd\xd0\xc8\xcf\xd0\xc8\xcf\xd3\xcb\xd1\xd4\xcc\xd3\xd5\ \xcd\xd4\xd6\xce\xd5\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd2\xd7\xd8\xd1\ \xd6\xd6\xcf\xd4\xcb\xc4\xcc\xbc\xb4\xbe\xb8\xb0\xba\xba\xb2\xbc\ \xbb\xb3\xbd\xb9\xb1\xbb\xba\xb2\xbc\xb9\xb1\xbb\xb9\xb2\xbb\xb8\ \xb1\xbc\xb8\xb2\xbd\xb9\xb2\xbd\xba\xb2\xbd\xb9\xb1\xbc\xba\xb3\ \xbd\xbc\xb8\xc1\xba\xb4\xbf\xb6\xb1\xbc\xb5\xb0\xba\xb4\xb0\xbb\ \xb2\xae\xba\xb1\xac\xb8\xaf\xab\xb6\xb1\xaa\xb7\xb5\xaf\xbb\xbf\ \xb9\xc4\xe4\xe3\xe8\xf8\xf8\xf8\xf7\xf7\xf7\xf4\xf4\xf4\xe9\xe8\ \xeb\xc1\xbb\xc4\xae\xa3\xae\xb0\xa1\xaa\xb1\x9f\xa6\xb7\xa5\xa8\ \xc2\xae\xb0\xca\xb7\xb8\xcf\xbd\xbd\xd2\xc1\xc2\xd4\xc5\xc6\xd5\ \xc6\xc8\xd7\xca\xcb\xd9\xcb\xcd\xda\xcd\xcf\xda\xcf\xd2\xda\xd0\ \xd3\xd9\xd0\xd3\xd9\xd0\xd4\xd8\xce\xd3\xd6\xcc\xd2\xd2\xc8\xcd\ \xcd\xc3\xc9\xc8\xbd\xc4\xc1\xb8\xc0\xbb\xb2\xbc\xb8\xaf\xb9\xb6\ \xad\xb7\xb6\xac\xb6\xb5\xab\xb5\xb3\xa9\xb5\xaf\xa7\xb3\xad\xa4\ \xb1\xac\xa3\xb0\x9b\x92\xa2\x6f\x6d\x81\x67\x68\x7c\x5a\x5c\x70\ \x58\x5a\x6e\x44\x47\x5b\x39\x3d\x51\x38\x3a\x4f\x2d\x2e\x42\x25\ \x26\x38\x1a\x1b\x2a\x1a\x1b\x29\x1b\x1c\x2a\x17\x17\x25\x16\x17\ \x24\x1b\x1e\x2d\x22\x27\x3b\x27\x2d\x41\x23\x28\x3c\x1c\x20\x33\ \x1e\x20\x33\x4a\x4b\x5d\x00\x00\x00\xf0\xe9\xea\xf0\xe8\xe9\xf0\ \xe9\xe9\xf1\xe9\xe9\xf0\xe8\xe9\xef\xe7\xe7\xf0\xe5\xe6\xee\xe3\ \xe4\xee\xe2\xe3\xed\xe1\xe3\xec\xe1\xe3\xec\xe1\xe3\xec\xe1\xe3\ \xec\xe3\xe6\xed\xe5\xe8\xee\xe6\xe9\xee\xe7\xea\xf1\xea\xec\xf2\ \xed\xee\xf2\xf0\xf0\xf1\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf1\xf1\ \xf1\xf1\xf2\xf2\xf2\xf1\xf1\xf2\xf0\xf0\xf3\xee\xef\xf3\xed\xee\ \xf2\xec\xed\xf1\xea\xeb\xf0\xe7\xe9\xed\xe4\xe7\xeb\xe3\xe6\xe9\ \xe2\xe6\xe8\xe1\xe7\xe5\xdf\xe6\xe5\xde\xe6\xe4\xde\xe6\xe3\xde\ \xe8\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe3\xeb\xe8\xe4\xea\xe9\xe5\xeb\ \xeb\xe5\xec\xec\xe6\xec\xec\xe5\xec\xec\xe6\xeb\xeb\xe4\xea\xe9\ \xe2\xe8\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\ \xe2\xdf\xd7\xde\xdc\xd5\xdc\xd8\xd1\xd8\xd4\xcd\xd4\xd1\xca\xd1\ \xd0\xc8\xd0\xcd\xc5\xcf\xcc\xc4\xcc\xcb\xc3\xcc\xcc\xc3\xcc\xcd\ \xc5\xcc\xce\xc5\xcc\xd0\xc6\xce\xd1\xc8\xd0\xd2\xcb\xd1\xd4\xcd\ \xd3\xd6\xce\xd5\xd7\xcf\xd6\xd8\xd0\xd7\xd7\xcf\xd6\xd6\xce\xd4\ \xcd\xc5\xcd\xbe\xb6\xc0\xb9\xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbb\xb9\ \xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbc\xb8\xb0\xbb\xb8\xb2\ \xbc\xba\xb3\xbe\xb9\xb1\xbc\xba\xb2\xbd\xba\xb3\xbe\xbc\xb6\xc0\ \xba\xb4\xbf\xb7\xb1\xbc\xb5\xb0\xbb\xb5\xaf\xba\xb3\xaf\xba\xaf\ \xab\xb7\xae\xa9\xb5\xb2\xab\xb8\xb6\xb0\xbb\xca\xc4\xce\xef\xed\ \xef\xf6\xf6\xf6\xf5\xf5\xf5\xf6\xf6\xf6\xee\xee\xee\xc1\xbb\xc3\ \xae\xa5\xb1\xb2\xa5\xb0\xb3\xa4\xad\xbb\xac\xb1\xc5\xb5\xb8\xcc\ \xbc\xbe\xd1\xc1\xc3\xd5\xc5\xc6\xd6\xc8\xc9\xd7\xc9\xcb\xd7\xca\ \xcc\xd8\xcb\xcd\xd9\xcc\xce\xd9\xce\xd0\xda\xcf\xd2\xd8\xcf\xd2\ \xd7\xcf\xd1\xd6\xcd\xd0\xd2\xc9\xce\xcd\xc3\xc9\xc7\xbd\xc4\xc2\ \xb7\xbf\xbc\xb1\xbb\xb7\xae\xb8\xb5\xac\xb7\xb5\xac\xb6\xb6\xac\ \xb6\xb5\xab\xb6\xb3\xa9\xb5\xaf\xa6\xb2\xac\xa3\xb0\xac\xa3\xb0\ \xa9\xa0\xae\x9f\x97\xa7\x95\x90\xa1\x83\x7f\x92\x64\x62\x74\x4d\ \x4e\x62\x4d\x50\x64\x3e\x41\x54\x30\x32\x45\x22\x23\x34\x1a\x1b\ \x2a\x1f\x20\x2f\x1f\x20\x2f\x1b\x1b\x28\x1b\x1c\x29\x22\x26\x37\ \x2b\x31\x45\x30\x36\x49\x26\x2a\x3e\x20\x25\x37\x1b\x1e\x30\x2e\ \x2f\x42\x00\x00\x00\xef\xe7\xe9\xef\xe7\xe8\xef\xe6\xe6\xf0\xe6\ \xe6\xf1\xe7\xe7\xf0\xe6\xe6\xef\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\ \xed\xe1\xe0\xed\xe1\xe3\xec\xe0\xe2\xec\xe1\xe3\xee\xe4\xe5\xed\ \xe5\xe7\xee\xe5\xe8\xef\xe7\xea\xf1\xea\xec\xf2\xed\xee\xf3\xef\ \xf0\xf2\xf2\xf2\xf2\xf2\xf2\xf3\xf3\xf3\xf1\xf1\xf1\xf1\xf2\xf2\ \xf2\xf1\xf1\xf3\xf1\xf0\xf3\xef\xf0\xf4\xee\xef\xf3\xec\xed\xf1\ \xea\xeb\xf0\xe7\xe8\xec\xe3\xe6\xea\xe1\xe4\xe8\xe0\xe4\xe6\xe0\ \xe4\xe6\xdf\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xde\xe4\xe5\xe0\xe7\ \xe5\xe1\xe7\xe6\xe2\xe8\xe7\xe3\xe9\xe8\xe4\xea\xea\xe5\xeb\xeb\ \xe4\xec\xeb\xe6\xea\xec\xe6\xeb\xeb\xe5\xea\xe9\xe3\xe8\xe8\xe0\ \xe7\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xdf\xd9\xe0\ \xdc\xd5\xdc\xd8\xd1\xd8\xd4\xcd\xd4\xd1\xca\xd1\xcd\xc5\xcf\xcd\ \xc5\xcf\xca\xc2\xcc\xcb\xc1\xcc\xca\xc1\xca\xca\xc2\xca\xce\xc4\ \xcc\xce\xc3\xcb\xcf\xc5\xcc\xd0\xc8\xcf\xd1\xc9\xd0\xd4\xcc\xd3\ \xd6\xcf\xd6\xd7\xcf\xd6\xd6\xce\xd5\xd4\xcc\xd3\xd1\xc9\xd0\xc4\ \xbc\xc4\xba\xb1\xbb\xb8\xb0\xba\xb9\xb1\xbb\xb9\xb1\xbb\xb8\xb0\ \xba\xb8\xb0\xbb\xb8\xb0\xbc\xb9\xb0\xbb\xb9\xb1\xbc\xb9\xb1\xbc\ \xba\xb2\xbd\xba\xb2\xbd\xbb\xb3\xbe\xbc\xb5\xbf\xbb\xb5\xc0\xb8\ \xb2\xbd\xb6\xb0\xbb\xb4\xae\xba\xb2\xab\xb8\xaf\xa8\xb5\xb0\xa9\ \xb6\xb2\xab\xb8\xb4\xad\xba\xc8\xc0\xc9\xeb\xe8\xea\xf1\xf1\xf1\ \xf4\xf4\xf4\xf4\xf4\xf4\xe0\xda\xdd\xb7\xaf\xb9\xb6\xae\xba\xb5\ \xab\xb7\xb7\xaa\xb5\xbe\xb0\xb8\xc2\xb5\xbb\xc7\xb8\xbd\xca\xbc\ \xbf\xcd\xbf\xc2\xd1\xc3\xc5\xd4\xc6\xc8\xd4\xc7\xc9\xd7\xca\xcc\ \xd7\xca\xcd\xd7\xcc\xce\xd7\xcc\xd0\xd7\xcc\xcf\xd5\xcb\xce\xd2\ \xc7\xca\xce\xc3\xc8\xc8\xbe\xc5\xc3\xb8\xbf\xbd\xb2\xba\xb8\xad\ \xb7\xb5\xac\xb6\xb5\xab\xb6\xb5\xac\xb7\xb4\xab\xb7\xb5\xab\xb7\ \xb4\xaa\xb6\xaf\xa6\xb2\xac\xa3\xb0\xab\xa3\xaf\xac\xa3\xb0\xaf\ \xa6\xb1\xb1\xa8\xb4\xaf\xa6\xb1\x8d\x86\x95\x66\x64\x77\x52\x53\ \x67\x45\x47\x5b\x39\x3a\x4d\x2b\x2f\x42\x1f\x22\x33\x1f\x21\x30\ \x1f\x20\x30\x20\x20\x2e\x28\x2a\x3b\x37\x3b\x4e\x34\x38\x4c\x28\ \x2b\x3e\x24\x27\x38\x2a\x2d\x3d\x23\x26\x36\x2a\x2d\x3f\x00\x00\ \x00\xef\xe4\xe6\xef\xe4\xe6\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe3\ \xf0\xe5\xe2\xf0\xe3\xe2\xee\xe2\xe1\xee\xe0\xe0\xed\xe0\xe1\xed\ \xe1\xe1\xec\xe0\xe1\xed\xe1\xe3\xee\xe3\xe4\xee\xe5\xe6\xee\xe6\ \xe7\xef\xe8\xe9\xf1\xeb\xec\xf2\xed\xee\xf3\xef\xef\xf2\xf1\xf1\ \xf2\xf2\xf2\xf2\xf2\xf2\xf3\xf2\xf2\xf2\xf1\xf1\xf3\xf1\xf1\xf2\ \xf0\xf0\xf4\xef\xef\xf3\xee\xed\xf3\xec\xeb\xf1\xe9\xea\xef\xe4\ \xe6\xec\xe1\xe4\xe9\xe0\xe3\xe8\xdf\xe4\xe6\xdf\xe4\xe6\xde\xe4\ \xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\xe6\xe7\xe0\xe7\xe6\ \xe1\xe7\xe7\xe2\xe8\xe9\xe3\xea\xeb\xe4\xea\xea\xe3\xea\xeb\xe5\ \xea\xeb\xe5\xea\xeb\xe5\xea\xe9\xe3\xe8\xe8\xe1\xe7\xe6\xdf\xe6\ \xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe1\xda\xe1\xdc\xd5\xdc\xd8\ \xd1\xd8\xd4\xcd\xd4\xd2\xcb\xd2\xcf\xc7\xd1\xcd\xc5\xcf\xcc\xc4\ \xce\xcc\xc3\xcc\xcb\xc3\xca\xcb\xc3\xc9\xce\xc3\xcb\xcf\xc3\xcb\ \xcf\xc4\xcc\xcf\xc7\xce\xd1\xc9\xd0\xd4\xcc\xd3\xd6\xcd\xd4\xd5\ \xce\xd4\xd4\xcd\xd4\xd4\xcc\xd3\xd3\xcb\xd1\xc9\xc1\xc9\xbd\xb5\ \xbf\xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb8\xb0\xba\xb8\xb0\xba\ \xb8\xb0\xbb\xb9\xb1\xbc\xb9\xb2\xbc\xb8\xb2\xbd\xba\xb3\xbe\xba\ \xb3\xbe\xba\xb3\xbe\xba\xb4\xbf\xbc\xb6\xc1\xba\xb4\xbf\xb5\xb0\ \xbc\xb3\xae\xb9\xb0\xaa\xb7\xaf\xa9\xb5\xaf\xa8\xb5\xb1\xaa\xb7\ \xb5\xac\xb8\xc1\xb8\xc3\xe7\xe3\xe7\xef\xed\xef\xed\xea\xed\xe6\ \xe3\xe6\xc6\xbe\xc6\xb5\xad\xba\xc1\xb9\xc3\xbc\xb3\xbe\xb9\xae\ \xb9\xbd\xb1\xb9\xbe\xb1\xb9\xbe\xb2\xba\xbd\xb1\xb9\xbe\xb1\xba\ \xbf\xb2\xbb\xc2\xb6\xbc\xc4\xb8\xbe\xc5\xb9\xbf\xc7\xba\xc0\xca\ \xbc\xc2\xcc\xbf\xc4\xcd\xc2\xc6\xce\xc2\xc6\xcc\xc0\xc5\xc9\xbe\ \xc5\xc6\xba\xc0\xbf\xb4\xbb\xb9\xae\xb8\xb5\xab\xb6\xb5\xab\xb5\ \xb5\xaa\xb6\xb5\xab\xb7\xb5\xab\xb7\xb6\xaa\xb7\xb3\xa9\xb5\xaf\ \xa5\xb1\xac\xa1\xae\xac\xa3\xb0\xad\xa4\xb0\xaf\xa5\xb2\xb2\xa9\ \xb4\xb6\xad\xb6\xb3\xa9\xb4\x8f\x85\x92\x5c\x5a\x6d\x4f\x51\x66\ \x45\x48\x5b\x35\x39\x4d\x2f\x33\x45\x2d\x2f\x3e\x24\x25\x33\x28\ \x2a\x39\x34\x36\x49\x3e\x42\x55\x39\x3c\x4f\x29\x2b\x3b\x24\x24\ \x33\x2a\x2c\x3b\x24\x26\x36\x2a\x2d\x3e\x00\x00\x00\xee\xe3\xe4\ \xee\xe3\xe3\xee\xe1\xe2\xed\xe0\xe0\xed\xe0\xde\xee\xe1\xdf\xef\ \xe2\xdf\xef\xe2\xe0\xee\xe1\xdf\xed\xe0\xdf\xec\xdf\xdf\xed\xe0\ \xe0\xed\xe1\xe1\xed\xe2\xe3\xee\xe3\xe5\xef\xe6\xe7\xef\xe8\xe9\ \xf1\xe9\xea\xf2\xec\xec\xf4\xef\xee\xf3\xf0\xf0\xf2\xf1\xf1\xf3\ \xf1\xf1\xf3\xf2\xf2\xf3\xf1\xf1\xf2\xf1\xf0\xf3\xef\xee\xf4\xef\ \xee\xf3\xee\xed\xf2\xea\xea\xf1\xe7\xe8\xee\xe3\xe4\xec\xe1\xe3\ \xea\xe0\xe3\xe8\xdf\xe3\xe6\xdf\xe4\xe5\xdd\xe3\xe4\xdd\xe4\xe4\ \xdc\xe3\xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe6\xe0\xe7\xe7\xe0\ \xe7\xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe4\xe9\xea\xe4\xe9\ \xeb\xe5\xea\xe9\xe3\xe8\xe9\xe2\xe7\xe6\xe0\xe6\xe5\xde\xe6\xe5\ \xde\xe5\xe2\xdc\xe3\xe0\xd9\xe0\xdc\xd5\xdc\xd8\xd1\xd8\xd5\xce\ \xd5\xd3\xcc\xd3\xd2\xca\xd2\xcf\xc7\xd0\xce\xc6\xce\xcd\xc5\xcc\ \xcb\xc3\xca\xcc\xc2\xca\xce\xc3\xcb\xcf\xc5\xcc\xcf\xc5\xcc\xd0\ \xc6\xce\xd1\xc9\xd0\xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd5\xcd\ \xd4\xd4\xcc\xd3\xd3\xcb\xd2\xcf\xc6\xce\xc2\xb9\xc3\xba\xb2\xbc\ \xb9\xb0\xba\xb9\xb1\xbb\xb8\xb0\xba\xb7\xaf\xb9\xb7\xaf\xba\xb9\ \xb1\xbc\xb9\xb2\xbd\xb8\xb2\xbd\xba\xb4\xbf\xba\xb4\xbf\xba\xb4\ \xbf\xbb\xb4\xbf\xbd\xb7\xc2\xbb\xb6\xc0\xb6\xb2\xbd\xb1\xab\xb7\ \xae\xa7\xb5\xad\xa6\xb4\xad\xa6\xb5\xaf\xa8\xb6\xb1\xaa\xb8\xbb\ \xb3\xc0\xe3\xdf\xe4\xee\xeb\xed\xe4\xdf\xe3\xd9\xd4\xdb\xbf\xb8\ \xc3\xbd\xb6\xc2\xc9\xc1\xcb\xc1\xb8\xc3\xb9\xae\xb9\xba\xaf\xb9\ \xbc\xb1\xba\xbd\xb2\xb9\xbc\xb1\xba\xbc\xb0\xb9\xbb\xb0\xba\xba\ \xaf\xb9\xbb\xaf\xb9\xbb\xaf\xb8\xbc\xb0\xb8\xbc\xb0\xb8\xbc\xb0\ \xb8\xbd\xb1\xb8\xbe\xb2\xba\xc0\xb3\xbb\xc1\xb4\xbc\xbe\xb3\xbb\ \xba\xaf\xb8\xb7\xac\xb6\xb5\xaa\xb5\xb5\xaa\xb5\xb4\xaa\xb5\xb5\ \xaa\xb5\xb5\xaa\xb6\xb4\xab\xb6\xb3\xa9\xb4\xaf\xa5\xb1\xac\xa1\ \xae\xac\xa3\xb0\xae\xa4\xb0\xb0\xa6\xb2\xb3\xa9\xb5\xb5\xac\xb6\ \xb8\xae\xb8\xa3\x98\xa5\x82\x7c\x8e\x72\x6f\x82\x5a\x5a\x6d\x57\ \x59\x6d\x52\x56\x68\x43\x46\x55\x32\x32\x41\x3a\x3b\x4c\x42\x44\ \x58\x3b\x40\x53\x3a\x3f\x51\x32\x34\x44\x2a\x2a\x39\x2d\x2e\x3d\ \x26\x27\x35\x24\x24\x34\x00\x00\x00\xee\xe3\xe2\xee\xe1\xe1\xed\ \xdf\xdf\xec\xde\xdc\xed\xde\xdc\xec\xde\xdc\xee\xdf\xdc\xee\xe0\ \xdd\xee\xdf\xdd\xed\xdf\xdd\xec\xdf\xdd\xed\xdf\xdf\xec\xe0\xe0\ \xef\xe3\xe3\xee\xe3\xe4\xef\xe5\xe5\xf0\xe6\xe7\xf1\xe8\xe8\xf2\ \xeb\xea\xf3\xee\xed\xf4\xf0\xef\xf3\xf0\xef\xf4\xf1\xf0\xf2\xf1\ \xf1\xf2\xf1\xf0\xf3\xf0\xef\xf4\xf0\xef\xf2\xee\xed\xf3\xed\xec\ \xf2\xea\xea\xf0\xe6\xe6\xee\xe2\xe4\xeb\xe0\xe2\xea\xe0\xe3\xe8\ \xdf\xe2\xe6\xde\xe3\xe4\xdd\xe2\xe4\xdc\xe4\xe3\xdd\xe4\xe4\xdd\ \xe4\xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe8\xe1\xe8\ \xe8\xe1\xe8\xe9\xe2\xe8\xe9\xe3\xe8\xe9\xe3\xe8\xea\xe4\xe9\xe9\ \xe3\xe8\xe9\xe3\xe8\xe8\xe2\xe7\xe6\xdf\xe5\xe5\xde\xe4\xe3\xdc\ \xe3\xe0\xd9\xe0\xdc\xd5\xdc\xd8\xd1\xd8\xd6\xcf\xd6\xd5\xce\xd5\ \xd3\xcc\xd3\xd1\xca\xd1\xce\xc6\xcd\xce\xc6\xcd\xcd\xc5\xcc\xcf\ \xc4\xcc\xd0\xc5\xcd\xd0\xc5\xcd\xd0\xc6\xce\xd1\xc8\xd0\xd3\xcb\ \xd1\xd5\xcd\xd3\xd7\xd0\xd6\xd7\xd1\xd5\xd7\xcf\xd6\xd5\xcd\xd4\ \xd4\xcc\xd3\xd2\xca\xd1\xcd\xc5\xcd\xbe\xb6\xc0\xba\xb0\xba\xba\ \xb1\xbb\xb8\xaf\xb9\xb7\xb0\xb9\xb7\xaf\xb9\xb9\xb1\xbc\xb8\xb1\ \xbc\xb8\xb2\xbd\xb9\xb3\xbe\xbb\xb5\xc0\xbc\xb5\xbf\xbc\xb5\xc0\ \xbc\xb6\xc2\xb6\xb0\xbc\xae\xa7\xb5\xab\xa4\xb3\xaa\xa3\xb2\xaa\ \xa3\xb2\xab\xa4\xb3\xad\xa6\xb5\xb0\xa9\xb7\xb7\xaf\xbb\xde\xd7\ \xdd\xe5\xe0\xe5\xda\xd4\xda\xd6\xd2\xd8\xbf\xb7\xc1\xbf\xb7\xc0\ \xcc\xc4\xcc\xc0\xb8\xc3\xb6\xaa\xb6\xb6\xab\xb6\xbc\xb1\xba\xbd\ \xb1\xb9\xbc\xb1\xb8\xbb\xb1\xba\xbb\xb0\xb9\xba\xaf\xb8\xba\xaf\ \xb9\xba\xaf\xb7\xbb\xaf\xb7\xbb\xaf\xb7\xbb\xaf\xb7\xb9\xae\xb6\ \xba\xae\xb5\xbb\xad\xb7\xb9\xad\xb7\xba\xad\xb8\xb8\xad\xb7\xb6\ \xab\xb6\xb6\xaa\xb7\xb6\xaa\xb6\xb4\xaa\xb6\xb5\xaa\xb5\xb4\xaa\ \xb6\xb4\xaa\xb6\xb2\xa8\xb4\xaf\xa5\xb1\xad\xa3\xb0\xac\xa2\xaf\ \xaf\xa5\xb1\xb1\xa7\xb3\xb3\xaa\xb5\xb7\xac\xb6\xb8\xad\xb7\xb7\ \xad\xb6\xb5\xac\xb6\xaf\xa6\xb1\x87\x7f\x8f\x5e\x5e\x72\x66\x68\ \x7b\x54\x55\x65\x37\x38\x48\x4c\x4e\x61\x60\x63\x78\x5b\x5d\x72\ \x4f\x51\x65\x3d\x3e\x51\x37\x37\x47\x35\x35\x43\x29\x2a\x38\x25\ \x26\x35\x00\x00\x00\xed\xe0\xe1\xed\xe0\xe0\xec\xde\xdc\xec\xdc\ \xda\xeb\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\ \xeb\xdc\xda\xec\xde\xdc\xec\xdf\xdd\xed\xe0\xe0\xee\xe2\xe2\xef\ \xe4\xe4\xef\xe5\xe5\xf0\xe7\xe7\xf1\xe8\xe8\xf2\xe9\xea\xf3\xed\ \xec\xf3\xef\xee\xf3\xef\xee\xf3\xef\xee\xf4\xf0\xef\xf4\xf0\xef\ \xf3\xef\xee\xf3\xee\xed\xf2\xed\xec\xf2\xea\xea\xf1\xe7\xe7\xef\ \xe5\xe5\xee\xe1\xe3\xeb\xe0\xe2\xe9\xde\xe1\xe8\xde\xe2\xe7\xde\ \xe3\xe6\xdf\xe4\xe4\xdc\xe2\xe3\xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe3\ \xe3\xdc\xe3\xe4\xdd\xe4\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe7\xe8\ \xe2\xe8\xe9\xe3\xe8\xe8\xe2\xe7\xe8\xe2\xe7\xe8\xe2\xe7\xe8\xe2\ \xe7\xe7\xe1\xe6\xe7\xe1\xe5\xe5\xdf\xe4\xe3\xdc\xe2\xdf\xd8\xde\ \xdb\xd4\xdb\xd8\xd1\xd8\xd7\xd0\xd7\xd7\xd0\xd6\xd6\xce\xd5\xd3\ \xcb\xd3\xd2\xca\xd1\xd0\xc8\xcf\xd0\xc8\xcf\xd1\xc7\xce\xd2\xc7\ \xcf\xd2\xc8\xcf\xd2\xca\xd1\xd3\xcc\xd1\xd6\xce\xd4\xd7\xd0\xd5\ \xd9\xd2\xd7\xd9\xd2\xd7\xd9\xd2\xd7\xd7\xcf\xd5\xd6\xce\xd5\xd5\ \xcd\xd4\xd4\xcd\xd4\xcb\xc3\xcb\xbe\xb6\xc0\xb9\xb1\xbb\xb9\xb1\ \xbb\xb8\xb0\xba\xb7\xaf\xb9\xb8\xb0\xbb\xb7\xb0\xbb\xb6\xb0\xbb\ \xb8\xb2\xbd\xb9\xb3\xbe\xba\xb4\xbf\xbc\xb5\xc0\xb9\xb3\xbe\xae\ \xa7\xb5\xa8\xa1\xb0\xa8\xa1\xb0\xa9\xa1\xb1\xaa\xa3\xb1\xa9\xa2\ \xb1\xab\xa4\xb3\xae\xa7\xb6\xb1\xaa\xb8\xd1\xca\xd2\xe6\xe2\xe7\ \xde\xda\xdf\xd9\xd5\xdb\xb7\xb1\xbd\x9b\x90\xa3\xc1\xb9\xc3\xc3\ \xbb\xc5\xb4\xa8\xb5\xb6\xa9\xb5\xb9\xae\xb8\xbb\xb0\xba\xbb\xb0\ \xb9\xbb\xb0\xba\xba\xaf\xb9\xba\xaf\xb8\xba\xaf\xb8\xb8\xad\xb7\ \xb9\xae\xb6\xb9\xae\xb7\xb8\xad\xb6\xb9\xae\xb6\xb9\xad\xb6\xb8\ \xad\xb7\xb8\xad\xb7\xb7\xab\xb6\xb6\xab\xb6\xb6\xaa\xb6\xb6\xaa\ \xb6\xb6\xaa\xb6\xb4\xa9\xb5\xb3\xa9\xb5\xb3\xa9\xb5\xb3\xa8\xb5\ \xb2\xa8\xb4\xaf\xa5\xb1\xad\xa3\xb0\xac\xa3\xb0\xaf\xa5\xb1\xb1\ \xa7\xb3\xb4\xaa\xb5\xb6\xab\xb6\xb8\xad\xb7\xb9\xae\xb8\xb8\xae\ \xb8\xb7\xae\xb8\xa7\x9d\xa9\x87\x82\x94\x79\x79\x8c\x6c\x6b\x7d\ \x4e\x4d\x5f\x59\x5b\x6f\x73\x73\x88\x71\x71\x85\x64\x65\x79\x4a\ \x4b\x5d\x3c\x3c\x4c\x38\x37\x47\x2d\x2d\x3d\x28\x2a\x3a\x00\x00\ \x00\xee\xe0\xde\xee\xdf\xdd\xec\xdc\xda\xeb\xdb\xd8\xeb\xda\xd7\ \xec\xda\xd7\xec\xdb\xd7\xeb\xda\xd6\xeb\xd9\xd6\xeb\xda\xd7\xeb\ \xdc\xd9\xec\xde\xdc\xed\xdf\xdd\xee\xe1\xe1\xef\xe3\xe3\xef\xe4\ \xe4\xf0\xe6\xe6\xf1\xe7\xe7\xf2\xe9\xe8\xf3\xec\xec\xf3\xee\xec\ \xf3\xee\xec\xf4\xee\xee\xf3\xef\xee\xf3\xef\xee\xf3\xef\xee\xf2\ \xee\xed\xf2\xeb\xeb\xf1\xe9\xe9\xf1\xe6\xe6\xef\xe4\xe4\xee\xe1\ \xe3\xeb\xe0\xe2\xe9\xdf\xe2\xe8\xdf\xe2\xe8\xde\xe4\xe5\xde\xe3\ \xe4\xdc\xe2\xe3\xdb\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe4\ \xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe7\xe0\xe7\xe8\xe2\ \xe7\xe8\xe2\xe7\xe8\xe2\xe7\xe9\xe3\xe8\xe9\xe3\xe8\xe8\xe2\xe7\ \xe7\xe0\xe5\xe5\xdf\xe4\xe2\xdc\xe1\xde\xd8\xde\xdb\xd4\xdb\xd8\ \xd1\xd8\xd9\xd1\xd8\xd8\xd1\xd7\xd8\xd0\xd6\xd5\xce\xd4\xd4\xcc\ \xd3\xd3\xcb\xd2\xd3\xca\xd2\xd3\xcc\xd1\xd3\xcb\xd1\xd3\xcc\xd2\ \xd4\xcd\xd2\xd7\xd0\xd5\xd9\xd2\xd7\xdb\xd4\xd9\xdb\xd4\xd9\xdb\ \xd4\xd9\xda\xd2\xd7\xd9\xd2\xd7\xd8\xd1\xd6\xd7\xd0\xd6\xd8\xd0\ \xd6\xd4\xcd\xd3\xc7\xbf\xc7\xbc\xb4\xbe\xb9\xb1\xbb\xb9\xb0\xba\ \xb8\xb0\xba\xb8\xb0\xba\xb7\xb0\xba\xb6\xaf\xb9\xb4\xae\xb9\xb6\ \xaf\xba\xb8\xb2\xbc\xba\xb3\xbe\xba\xb4\xbf\xb6\xb0\xbc\xaf\xa8\ \xb7\xab\xa4\xb3\xa9\xa2\xb2\xa8\xa1\xb0\xa8\xa1\xb0\xa9\xa2\xb1\ \xac\xa5\xb4\xaf\xa8\xb8\xc4\xbd\xc9\xe9\xe5\xea\xe7\xe3\xe8\xdb\ \xd7\xdd\xba\xb5\xc2\x81\x7b\x97\xb4\xad\xba\xc6\xbe\xc8\xb4\xaa\ \xb7\xb4\xa8\xb4\xb8\xad\xb7\xbb\xb0\xb9\xba\xaf\xb8\xba\xaf\xb8\ \xb9\xae\xb7\xba\xaf\xb8\xb9\xae\xb7\xb8\xad\xb8\xb9\xae\xb8\xb9\ \xae\xb7\xb8\xad\xb7\xb9\xae\xb8\xb8\xad\xb7\xb8\xad\xb7\xb7\xab\ \xb6\xb5\xa9\xb5\xb4\xa8\xb5\xb5\xa8\xb6\xb5\xa9\xb6\xb6\xaa\xb6\ \xb5\xaa\xb6\xb3\xa9\xb5\xb3\xa8\xb4\xb2\xa8\xb5\xb1\xa7\xb4\xaf\ \xa5\xb2\xad\xa3\xb0\xac\xa3\xb0\xaf\xa5\xb1\xb1\xa7\xb3\xb3\xaa\ \xb4\xb5\xac\xb6\xb8\xad\xb7\xb8\xad\xb7\xb9\xae\xb8\xb9\xae\xb8\ \xb6\xad\xb7\xb3\xaa\xb4\xae\xa6\xb1\xa9\xa1\xae\x97\x91\xa1\x92\ \x8d\x9f\x94\x8f\xa0\x86\x84\x97\x76\x76\x8b\x62\x62\x76\x4c\x4b\ \x5d\x3f\x40\x50\x38\x38\x48\x33\x35\x46\x00\x00\x00\xed\xde\xdc\ \xee\xdd\xda\xec\xdb\xd8\xec\xda\xd6\xeb\xd8\xd3\xeb\xd8\xd3\xeb\ \xd8\xd3\xeb\xd8\xd3\xeb\xd9\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xdc\ \xd9\xec\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xe0\xee\xe2\xe0\ \xf0\xe4\xe3\xf1\xe6\xe4\xf2\xe9\xe6\xf3\xeb\xe8\xf3\xeb\xe8\xf3\ \xec\xe9\xf2\xec\xea\xf3\xed\xeb\xf2\xed\xed\xf3\xec\xeb\xf2\xe9\ \xe9\xf1\xe7\xe7\xf0\xe4\xe4\xef\xe2\xe2\xed\xe0\xe2\xea\xdf\xe1\ \xea\xe0\xe2\xe8\xdf\xe2\xe7\xde\xe3\xe5\xde\xe3\xe4\xdd\xe3\xe4\ \xdb\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe3\xe3\xdc\ \xe3\xe4\xdd\xe4\xe6\xdf\xe6\xe6\xe0\xe6\xe7\xe0\xe6\xe6\xe1\xe6\ \xe8\xe1\xe6\xea\xe3\xe8\xea\xe3\xe8\xe9\xe2\xe7\xe7\xe0\xe5\xe5\ \xde\xe3\xe1\xda\xdf\xde\xd7\xdd\xda\xd3\xda\xd8\xd1\xd8\xda\xd1\ \xd8\xd8\xd1\xd6\xd7\xd0\xd5\xd6\xcf\xd4\xd6\xce\xd5\xd6\xcf\xd5\ \xd6\xcf\xd4\xd6\xce\xd5\xd6\xcf\xd4\xd7\xd0\xd5\xd8\xd1\xd6\xda\ \xd3\xd8\xdc\xd5\xda\xdc\xd5\xda\xdc\xd5\xda\xdd\xd5\xda\xdc\xd3\ \xd9\xda\xd3\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xd8\xd1\xd7\xd7\xd0\xd6\ \xd0\xc8\xcf\xc1\xb9\xc3\xbb\xb2\xbc\xb9\xb1\xbb\xb8\xb0\xba\xb7\ \xaf\xba\xb7\xaf\xba\xb7\xb0\xbb\xb4\xae\xb9\xb3\xad\xb8\xb4\xae\ \xb9\xb6\xb0\xbb\xb8\xb2\xbd\xb9\xb3\xbe\xb5\xae\xbb\xb2\xab\xb8\ \xad\xa6\xb5\xaa\xa3\xb2\xa9\xa1\xb0\xa8\xa1\xb1\xa9\xa4\xb2\xac\ \xa7\xb6\xc0\xba\xc6\xed\xeb\xef\xee\xec\xef\xe2\xdd\xe4\xc1\xbc\ \xc9\x7a\x77\x95\xad\xa7\xb6\xc8\xc1\xcc\xb8\xad\xba\xb2\xa7\xb3\ \xb7\xab\xb7\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb9\ \xae\xb7\xb9\xae\xb8\xb8\xad\xb7\xb8\xad\xb7\xb8\xad\xb7\xb8\xad\ \xb7\xb8\xad\xb7\xb8\xad\xb7\xb7\xac\xb6\xb6\xaa\xb6\xb4\xa8\xb5\ \xb4\xa7\xb5\xb4\xa7\xb5\xb4\xa7\xb5\xb4\xa9\xb5\xb5\xaa\xb6\xb4\ \xa9\xb5\xb4\xa9\xb5\xb2\xa8\xb4\xb2\xa8\xb4\xaf\xa5\xb2\xad\xa3\ \xb0\xad\xa3\xb0\xae\xa4\xb1\xb1\xa7\xb3\xb3\xa9\xb4\xb5\xab\xb5\ \xb7\xac\xb6\xb7\xad\xb7\xb7\xac\xb6\xb7\xac\xb6\xb7\xac\xb6\xb5\ \xac\xb6\xb5\xac\xb6\xb6\xad\xb6\xb6\xac\xb6\xb4\xab\xb5\xad\xa3\ \xb0\x9e\x99\xa8\x95\x90\xa5\x8e\x8b\xa0\x72\x70\x86\x49\x49\x5b\ \x43\x43\x54\x38\x39\x4a\x00\x00\x00\xee\xde\xdb\xee\xdd\xd9\xed\ \xda\xd5\xeb\xd8\xd3\xea\xd6\xd1\xe9\xd6\xd1\xe9\xd5\xd0\xe9\xd6\ \xd1\xea\xd7\xd2\xea\xd7\xd4\xea\xd9\xd6\xea\xda\xd7\xea\xdb\xd9\ \xeb\xdc\xda\xeb\xdd\xda\xeb\xde\xdc\xec\xdf\xdd\xec\xdf\xdd\xee\ \xe1\xdf\xf0\xe4\xe2\xf1\xe6\xe4\xf2\xe8\xe6\xf2\xe9\xe6\xf2\xea\ \xe7\xf2\xea\xe7\xf2\xea\xe7\xf1\xe9\xe7\xf1\xe7\xe7\xf0\xe5\xe5\ \xee\xe2\xe2\xed\xe1\xe1\xeb\xe0\xe1\xea\xdf\xe1\xe8\xdd\xdf\xe6\ \xdd\xe0\xe5\xdc\xe0\xe4\xdc\xe1\xe3\xdc\xe2\xe2\xdb\xe2\xe2\xda\ \xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\ \xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe5\xe6\xe0\xe5\xe8\xe1\xe6\xe9\ \xe2\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe6\xdf\xe4\xe4\xdd\xe2\xe0\xd9\ \xdd\xdc\xd4\xdb\xd8\xd1\xd8\xd7\xd0\xd7\xd8\xd1\xd6\xd7\xd0\xd5\ \xd6\xcf\xd4\xd7\xd0\xd5\xd8\xd0\xd7\xd9\xd2\xd7\xd9\xd2\xd7\xda\ \xd3\xd8\xd9\xd2\xd7\xda\xd3\xd8\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd6\ \xdb\xdd\xd6\xdb\xde\xd6\xdb\xde\xd4\xda\xdd\xd4\xd8\xdb\xd1\xd7\ \xda\xd1\xd7\xd9\xd1\xd6\xd8\xd1\xd6\xd6\xcf\xd5\xd4\xcd\xd4\xc9\ \xc1\xcb\xbf\xb7\xc1\xba\xb2\xbc\xb9\xb0\xba\xb8\xaf\xba\xb6\xae\ \xb9\xb7\xaf\xba\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\ \xb4\xae\xb9\xb5\xae\xbb\xb5\xae\xbb\xb5\xae\xbb\xb4\xad\xba\xaf\ \xa8\xb6\xaa\xa2\xb2\xa7\xa0\xb0\xa8\xa2\xb2\xac\xa6\xb5\xc0\xba\ \xc8\xf1\xf0\xf1\xf7\xf7\xf7\xf2\xf2\xf3\xd3\xd0\xd9\x7d\x7b\x98\ \xac\xa5\xb5\xcc\xc7\xcf\xbd\xb4\xc0\xb2\xa8\xb5\xb5\xaa\xb5\xb7\ \xac\xb7\xb8\xad\xb8\xb7\xac\xb6\xb7\xac\xb6\xb8\xad\xb7\xb6\xac\ \xb6\xb6\xac\xb6\xb5\xab\xb5\xb5\xaa\xb4\xb6\xab\xb5\xb7\xac\xb6\ \xb7\xac\xb6\xb7\xab\xb7\xb5\xa9\xb5\xb4\xa8\xb5\xb3\xa6\xb4\xb2\ \xa6\xb3\xb2\xa6\xb4\xb4\xa7\xb4\xb5\xaa\xb5\xb6\xaa\xb6\xb4\xaa\ \xb6\xb4\xaa\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xad\xa4\xb1\xad\xa4\xb1\ \xaf\xa6\xb2\xb1\xa7\xb3\xb3\xaa\xb5\xb4\xab\xb4\xb6\xab\xb5\xb6\ \xab\xb5\xb6\xab\xb5\xb6\xab\xb5\xb4\xab\xb5\xb4\xab\xb5\xb5\xac\ \xb6\xb6\xad\xb7\xb5\xad\xb7\xb4\xaa\xb5\xa9\xa0\xae\x99\x92\xa5\ \x8f\x8b\xa0\x94\x91\xa6\x8f\x8c\xa2\x6c\x6c\x84\x5b\x5d\x72\x47\ \x48\x5c\x00\x00\x00\xee\xde\xd8\xee\xdc\xd6\xec\xd9\xd3\xeb\xd7\ \xd2\xea\xd6\xd1\xe9\xd5\xd0\xea\xd5\xd0\xe9\xd5\xd1\xe9\xd6\xd1\ \xe9\xd6\xd1\xe9\xd8\xd4\xea\xd9\xd6\xea\xda\xd7\xe9\xda\xd7\xea\ \xda\xd7\xea\xdb\xd8\xeb\xdb\xd9\xeb\xdc\xda\xeb\xdd\xdb\xed\xdf\ \xdd\xee\xe2\xe0\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe7\xe4\xf0\xe6\xe4\ \xf0\xe5\xe3\xef\xe4\xe4\xee\xe3\xe3\xed\xe1\xe1\xec\xdf\xe0\xea\ \xde\xdf\xe9\xdd\xdf\xe7\xdc\xde\xe7\xdc\xdf\xe4\xdb\xde\xe3\xda\ \xdf\xe2\xda\xdf\xe1\xda\xe0\xe1\xd9\xe0\xe1\xd9\xe0\xe0\xd9\xe0\ \xdf\xd8\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe4\ \xdd\xe4\xe5\xde\xe4\xe6\xdf\xe4\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ \xe5\xe6\xdf\xe4\xe4\xdd\xe2\xe1\xda\xdf\xdd\xd6\xdc\xd9\xd2\xd9\ \xd6\xcf\xd6\xd6\xce\xd5\xd6\xcf\xd5\xd6\xcf\xd4\xd6\xcf\xd4\xd8\ \xd0\xd6\xda\xd3\xd7\xdb\xd4\xd9\xdb\xd4\xd9\xdb\xd4\xd9\xdc\xd5\ \xdb\xdc\xd5\xda\xdd\xd6\xdb\xde\xd7\xdc\xdf\xd8\xdd\xdf\xd8\xdd\ \xde\xd7\xdc\xde\xd5\xda\xdd\xd2\xd9\xda\xd0\xd6\xd9\xcf\xd5\xd8\ \xcf\xd5\xd7\xd0\xd5\xd6\xce\xd6\xd5\xcf\xd6\xd2\xca\xd3\xc6\xbe\ \xc8\xbd\xb4\xbe\xb8\xb0\xb9\xb7\xaf\xba\xb7\xaf\xba\xb8\xb0\xbb\ \xb7\xb0\xbb\xb8\xb1\xbc\xb8\xb2\xbd\xb8\xb2\xbd\xb6\xaf\xbb\xb3\ \xac\xb9\xb2\xac\xb9\xb1\xab\xb9\xb2\xac\xba\xb4\xad\xba\xb1\xaa\ \xb8\xaa\xa3\xb3\xa6\xa1\xb1\xaa\xa4\xb4\xc0\xba\xc7\xf2\xf0\xf2\ \xfb\xfb\xfb\xf9\xf9\xf9\xe6\xe5\xe8\x89\x87\xa1\xab\xa6\xb5\xd1\ \xcb\xd4\xc5\xbd\xc8\xb3\xa9\xb6\xb2\xa7\xb3\xb5\xa9\xb5\xb6\xaa\ \xb6\xb6\xab\xb5\xb6\xab\xb5\xb6\xab\xb5\xb5\xab\xb5\xb4\xa9\xb5\ \xb3\xa9\xb4\xb3\xa9\xb4\xb4\xa9\xb4\xb3\xa9\xb4\xb4\xaa\xb5\xb5\ \xab\xb6\xb6\xa9\xb5\xb5\xa9\xb6\xb3\xa6\xb4\xb1\xa6\xb3\xb0\xa6\ \xb3\xb1\xa6\xb3\xb2\xa8\xb4\xb3\xa8\xb4\xb4\xaa\xb6\xb4\xaa\xb6\ \xb4\xa9\xb5\xb1\xa7\xb3\xaf\xa5\xb1\xad\xa3\xb0\xaf\xa5\xb2\xb1\ \xa7\xb3\xb3\xaa\xb5\xb5\xab\xb5\xb6\xac\xb6\xb5\xaa\xb4\xb4\xaa\ \xb4\xb5\xaa\xb4\xb4\xaa\xb4\xb4\xab\xb5\xb5\xac\xb6\xb5\xac\xb6\ \xb5\xad\xb7\xb2\xa8\xb4\xa3\x99\xa9\x8d\x86\x9c\x81\x7e\x97\x87\ \x84\x9c\x8c\x8a\xa1\x8e\x8c\xa3\x8e\x8d\xa3\x7a\x7a\x8f\x00\x00\ \x00\xee\xdb\xd6\xee\xdb\xd5\xed\xd9\xd3\xea\xd7\xd1\xea\xd7\xd0\ \xea\xd6\xd0\xe9\xd6\xcf\xe9\xd5\xcf\xe8\xd5\xd0\xe9\xd5\xd0\xe9\ \xd6\xd1\xea\xd7\xd3\xe9\xd7\xd3\xe9\xd7\xd3\xe8\xd6\xd4\xe8\xd7\ \xd4\xe9\xd8\xd5\xe9\xd9\xd6\xe9\xda\xd8\xec\xdd\xdb\xed\xdf\xdd\ \xee\xe2\xe0\xef\xe3\xe1\xef\xe3\xe3\xee\xe3\xe2\xee\xe2\xe2\xed\ \xe1\xe1\xec\xe0\xe0\xea\xde\xde\xe9\xdd\xdd\xe8\xdc\xdd\xe7\xda\ \xdc\xe5\xda\xdc\xe3\xd9\xdc\xe2\xd8\xdc\xe0\xd7\xdd\xde\xd7\xdc\ \xdd\xd6\xdc\xde\xd6\xdd\xdf\xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\ \xd7\xde\xde\xd6\xdd\xdf\xd8\xdf\xe1\xda\xe1\xe1\xda\xe0\xe2\xdb\ \xe1\xe3\xdd\xe2\xe4\xdd\xe2\xe4\xdd\xe2\xe2\xdb\xe0\xe2\xdb\xe0\ \xe0\xd9\xde\xdd\xd6\xdb\xda\xd2\xd9\xd6\xcf\xd6\xd4\xcd\xd4\xd4\ \xcd\xd4\xd4\xcc\xd3\xd5\xce\xd4\xd7\xcf\xd6\xd9\xd1\xd8\xdb\xd5\ \xd9\xdc\xd5\xda\xdd\xd6\xdb\xdc\xd6\xdb\xdc\xd6\xdc\xdd\xd7\xdd\ \xdf\xd9\xde\xe0\xda\xdf\xe1\xda\xdf\xe0\xd9\xde\xde\xd7\xdc\xdd\ \xd5\xd9\xdc\xd3\xd7\xdb\xd1\xd6\xd9\xcf\xd5\xd7\xcf\xd4\xd6\xce\ \xd4\xd5\xce\xd5\xd4\xcd\xd5\xd5\xce\xd8\xd2\xca\xd4\xc6\xbe\xc8\ \xbb\xb3\xbd\xb7\xaf\xba\xb7\xaf\xba\xb7\xaf\xba\xb9\xb1\xbb\xb9\ \xb1\xbc\xb8\xb2\xbc\xb8\xb2\xbd\xb9\xb3\xbe\xb7\xb1\xbd\xb3\xae\ \xbb\xb0\xab\xb9\xad\xa8\xb8\xab\xa6\xb7\xb2\xab\xb9\xb2\xac\xb9\ \xaa\xa5\xb4\xa8\xa3\xb2\xc1\xbd\xc8\xf5\xf5\xf5\xfc\xfc\xfc\xfb\ \xfb\xfb\xed\xec\xed\x91\x90\xa5\xaa\xa5\xb4\xd6\xd0\xd8\xce\xc7\ \xd1\xb9\xb0\xbc\xb1\xa6\xb3\xb4\xa8\xb4\xb5\xa9\xb5\xb5\xa9\xb5\ \xb5\xaa\xb5\xb5\xa9\xb5\xb3\xa9\xb5\xb2\xa8\xb3\xb1\xa7\xb3\xb1\ \xa7\xb3\xb2\xa8\xb4\xb1\xa7\xb3\xb2\xa8\xb4\xb4\xa9\xb5\xb5\xaa\ \xb6\xb5\xa9\xb6\xb3\xa8\xb5\xb1\xa7\xb3\xb0\xa6\xb3\xb0\xa6\xb3\ \xb1\xa7\xb3\xb2\xa8\xb4\xb3\xa8\xb4\xb4\xaa\xb6\xb4\xaa\xb6\xb3\ \xa9\xb5\xb1\xa7\xb3\xae\xa4\xb1\xae\xa4\xb1\xb0\xa6\xb2\xb4\xaa\ \xb5\xb4\xab\xb5\xb5\xab\xb5\xb4\xa9\xb3\xb2\xa8\xb4\xb3\xa9\xb4\ \xb3\xa9\xb5\xb4\xaa\xb5\xb4\xaa\xb6\xb5\xac\xb6\xb6\xac\xb7\xae\ \xa4\xb1\x9a\x90\xa3\x7d\x79\x93\x71\x71\x8f\x78\x78\x94\x81\x80\ \x9b\x88\x88\xa0\x92\x90\xa5\x92\x92\xa5\x00\x00\x00\xef\xdc\xd6\ \xee\xdb\xd5\xed\xd9\xd2\xeb\xd7\xd0\xeb\xd6\xcf\xea\xd7\xd0\xea\ \xd5\xcf\xe8\xd5\xce\xe9\xd4\xce\xe8\xd4\xce\xe8\xd4\xcf\xe8\xd4\ \xcf\xe7\xd4\xcf\xe7\xd4\xcf\xe6\xd5\xd1\xe6\xd5\xd3\xe6\xd5\xd2\ \xe8\xd7\xd4\xe8\xd9\xd7\xea\xdb\xd9\xec\xde\xdc\xec\xe0\xde\xed\ \xe0\xde\xec\xdf\xe1\xed\xdf\xe0\xec\xe0\xdf\xea\xde\xde\xea\xde\ \xde\xe8\xdc\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd8\xda\xe2\xd7\xd9\ \xe0\xd6\xda\xdf\xd5\xdb\xdd\xd5\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\ \xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xde\xd6\ \xdd\xdd\xd6\xde\xdf\xd7\xde\xe0\xd8\xe0\xe1\xd9\xdf\xe2\xdb\xe0\ \xe1\xda\xdf\xdf\xd8\xdd\xde\xd7\xdc\xdd\xd5\xdb\xda\xd3\xd9\xd9\ \xd1\xd7\xd6\xce\xd5\xd3\xcc\xd3\xd2\xcb\xd2\xd2\xcb\xd2\xd2\xcb\ \xd2\xd5\xce\xd5\xd6\xcf\xd6\xd9\xd2\xd8\xdc\xd4\xdb\xdd\xd6\xdb\ \xde\xd7\xdc\xde\xd8\xdd\xdf\xd7\xde\xe0\xd9\xe0\xe1\xdb\xe1\xe2\ \xdc\xe2\xe1\xdb\xe1\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xdc\xd3\ \xd8\xd9\xd1\xd6\xd7\xcf\xd4\xd6\xcf\xd5\xd6\xce\xd5\xd5\xce\xd5\ \xd6\xce\xd7\xd8\xd0\xda\xdb\xd3\xdd\xd5\xcd\xd7\xc8\xbf\xc9\xbc\ \xb3\xbe\xb7\xaf\xba\xb8\xb0\xba\xb3\xac\xb6\x9d\x99\xa8\x9e\x9d\ \xac\xab\xa7\xb5\xb1\xad\xba\xb2\xad\xbc\xb2\xae\xbc\xb0\xac\xba\ \xad\xa7\xb9\xa4\xa1\xb5\xa0\x9d\xb2\xad\xa8\xb7\xb2\xad\xb9\xac\ \xa8\xb6\xbd\xb8\xc3\xf1\xef\xf1\xfa\xfa\xfa\xf9\xf9\xf9\xe9\xe7\ \xe9\x8b\x8d\xa0\xa9\xa6\xb6\xda\xd5\xdb\xd7\xd1\xd9\xc5\xbd\xc7\ \xb6\xab\xb8\xb5\xa9\xb5\xb6\xaa\xb6\xb7\xab\xb7\xb6\xac\xb7\xb5\ \xaa\xb6\xb4\xa9\xb5\xb1\xa7\xb3\xb0\xa6\xb2\xb1\xa7\xb2\xaf\xa5\ \xb2\xaf\xa5\xb2\xb0\xa6\xb2\xb1\xa7\xb3\xb2\xa8\xb4\xb3\xa9\xb5\ \xb4\xaa\xb6\xb2\xa8\xb4\xb2\xa8\xb4\xb1\xa7\xb3\xb0\xa6\xb2\xb0\ \xa6\xb3\xb1\xa7\xb3\xb2\xa8\xb4\xb4\xaa\xb6\xb2\xa8\xb4\xaf\xa5\ \xb2\xad\xa4\xb0\xae\xa4\xb1\xb0\xa6\xb2\xb3\xaa\xb5\xb4\xab\xb5\ \xb4\xaa\xb4\xb2\xa8\xb3\xb1\xa7\xb3\xb1\xa7\xb4\xb2\xa8\xb3\xb3\ \xa9\xb5\xb4\xaa\xb6\xb5\xab\xb7\xb5\xac\xb7\xa9\x9e\xad\x8c\x85\ \x9b\x6a\x6b\x8a\x64\x67\x87\x6c\x6e\x8d\x75\x77\x94\x7f\x80\x9b\ \x8b\x8c\xa1\x84\x87\x9f\x00\x00\x00\xef\xdd\xd6\xee\xdc\xd5\xed\ \xd9\xd3\xec\xd7\xd0\xec\xd6\xd0\xeb\xd5\xcf\xea\xd4\xce\xe9\xd4\ \xcd\xe9\xd3\xcd\xe8\xd3\xcc\xe7\xd3\xcc\xe6\xd3\xcd\xe6\xd3\xce\ \xe5\xd2\xcd\xe6\xd4\xd1\xe5\xd4\xd1\xe6\xd5\xd2\xe6\xd7\xd4\xe7\ \xd8\xd6\xe9\xdb\xd9\xea\xdd\xdb\xeb\xde\xdc\xeb\xde\xdc\xeb\xde\ \xdf\xeb\xde\xde\xea\xdd\xde\xe9\xdd\xdd\xe8\xdb\xdc\xe7\xd9\xdc\ \xe6\xd9\xdb\xe3\xd7\xda\xe1\xd6\xda\xdf\xd6\xd9\xde\xd5\xda\xdd\ \xd4\xda\xdc\xd4\xd9\xda\xd2\xd9\xda\xd2\xd9\xdb\xd3\xda\xdc\xd4\ \xdb\xdc\xd4\xdb\xde\xd6\xdc\xdf\xd7\xde\xdf\xd7\xde\xe0\xd8\xdf\ \xe0\xd8\xdf\xe0\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdd\xde\xd7\xdc\xdc\ \xd5\xda\xd9\xd2\xd7\xd7\xd0\xd5\xd6\xcf\xd5\xd5\xcd\xd3\xd3\xcc\ \xd3\xd1\xca\xd1\xd0\xc9\xd2\xd2\xca\xd3\xd2\xcc\xd3\xd4\xcd\xd4\ \xd7\xd0\xd7\xda\xd3\xda\xdc\xd5\xdc\xdc\xd5\xdd\xde\xd7\xdd\xdf\ \xd9\xde\xe0\xd9\xe0\xe1\xdb\xe1\xe3\xdd\xe2\xe3\xdd\xe2\xe2\xdc\ \xe1\xe2\xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdb\xd5\xda\xda\xd2\xd7\ \xd7\xd0\xd5\xd7\xcf\xd5\xd6\xce\xd5\xd6\xcf\xd7\xd9\xd1\xdb\xdc\ \xd4\xde\xde\xd7\xe0\xdd\xd7\xe0\xd6\xcf\xd9\xc9\xc1\xcb\xb8\xaf\ \xbb\xa8\xa1\xaf\xa9\xa5\xb3\x76\x86\x9f\x59\x7a\x96\x8e\x97\xad\ \xa8\xa7\xb8\xa9\xa6\xb8\xa9\xa6\xb8\xa9\xa5\xb8\xa6\xa3\xb7\xa2\ \x9f\xb5\x9c\x99\xb2\x9c\x99\xb1\xac\xa7\xb7\xb3\xad\xb9\xb8\xb1\ \xbe\xe1\xdd\xe1\xf4\xf4\xf4\xf6\xf6\xf6\xe4\xe2\xe5\x87\x8b\xa0\ \xb0\xad\xbb\xe0\xdb\xe1\xde\xd9\xdf\xd0\xca\xd3\xc0\xb8\xc4\xb7\ \xac\xb8\xb6\xab\xb7\xb8\xad\xb8\xb8\xae\xb8\xb7\xad\xb7\xb7\xac\ \xb7\xb4\xa9\xb5\xb2\xa8\xb4\xb0\xa6\xb3\xaf\xa6\xb2\xae\xa4\xb1\ \xad\xa4\xb1\xae\xa5\xb2\xb0\xa7\xb4\xb2\xa8\xb4\xb2\xa8\xb4\xb2\ \xa8\xb3\xb1\xa7\xb3\xb0\xa6\xb3\xb0\xa6\xb2\xb0\xa6\xb2\xb0\xa6\ \xb2\xb1\xa7\xb3\xb2\xa8\xb4\xb1\xa7\xb3\xaf\xa5\xb2\xac\xa2\xaf\ \xac\xa4\xb0\xb0\xa6\xb2\xb3\xa9\xb5\xb4\xaa\xb5\xb3\xa9\xb4\xb0\ \xa6\xb2\xb0\xa6\xb2\xb1\xa6\xb2\xb2\xa8\xb4\xb3\xa9\xb5\xb5\xab\ \xb6\xb7\xad\xb8\xb3\xaa\xb5\x9f\x96\xa6\x7b\x78\x92\x57\x5d\x81\ \x57\x5e\x82\x61\x66\x88\x6c\x6e\x8f\x77\x7a\x97\x83\x85\x9e\x6f\ \x78\x97\x00\x00\x00\xef\xdd\xd6\xef\xdc\xd5\xed\xdb\xd4\xed\xd7\ \xd1\xec\xd6\xd0\xeb\xd5\xcf\xe9\xd3\xcd\xe9\xd3\xcd\xe8\xd2\xcc\ \xe8\xd2\xcc\xe7\xd2\xcc\xe6\xd3\xcc\xe6\xd2\xcd\xe5\xd2\xcd\xe5\ \xd3\xd0\xe5\xd4\xd1\xe4\xd5\xd3\xe5\xd6\xd4\xe7\xd8\xd6\xe8\xda\ \xd8\xe9\xdc\xda\xea\xdd\xdb\xea\xdc\xdc\xea\xdd\xdc\xe9\xdc\xdc\ \xe8\xdc\xdc\xe8\xdb\xdc\xe6\xd9\xdc\xe6\xd9\xda\xe4\xd9\xdb\xe2\ \xd7\xda\xe1\xd6\xd9\xdf\xd6\xd8\xde\xd4\xda\xde\xd4\xda\xdc\xd4\ \xd9\xdb\xd3\xd9\xda\xd2\xd9\xdb\xd3\xda\xdc\xd5\xdb\xde\xd6\xdc\ \xe0\xd8\xde\xe0\xd9\xde\xe0\xd9\xdf\xe0\xd8\xdf\xdf\xd7\xde\xdf\ \xd7\xde\xde\xd6\xdd\xdd\xd6\xdd\xdd\xd5\xdb\xda\xd3\xd9\xd7\xd0\ \xd7\xd5\xcd\xd4\xd3\xcc\xd3\xd1\xc9\xd1\xd0\xc9\xd1\xce\xc7\xd1\ \xce\xc7\xd1\xcf\xc9\xd3\xd2\xcc\xd4\xd4\xcf\xd6\xd8\xd2\xd8\xdb\ \xd4\xdb\xdc\xd5\xdc\xde\xd7\xdd\xdf\xd8\xde\xe0\xda\xdf\xe2\xdc\ \xe1\xe3\xdd\xe2\xe5\xde\xe3\xe5\xde\xe3\xe5\xde\xe3\xe3\xdc\xe1\ \xe2\xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xda\xd3\xd8\xd9\ \xd1\xd8\xd9\xd1\xd8\xda\xd3\xda\xdc\xd5\xdd\xe0\xd9\xe0\xe1\xda\ \xe1\xe1\xda\xe2\xe0\xd8\xe0\xda\xd2\xdc\xc8\xc0\xcb\xa8\xa3\xb4\ \xa6\xa6\xb6\x6f\x89\xa3\x4f\x7c\x9b\x7d\x93\xac\x99\xa0\xb4\x9f\ \xa1\xb5\xa5\xa3\xb7\xa7\xa5\xb8\xa7\xa5\xb8\xa3\xa1\xb6\x9d\x9a\ \xb3\x96\x93\xaf\x96\x94\xaf\xa6\xa2\xb3\xb5\xae\xba\xc8\xc1\xca\ \xe4\xe0\xe4\xf0\xef\xf0\xe1\xde\xe3\x92\x94\xa7\xbe\xbb\xc7\xe4\ \xe0\xe5\xe5\xde\xe4\xd9\xd4\xdb\xcd\xc7\xd1\xbf\xb7\xc1\xb8\xac\ \xb8\xb8\xad\xb8\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb8\xad\xb7\ \xb5\xac\xb7\xb4\xaa\xb6\xb2\xa7\xb4\xaf\xa5\xb2\xad\xa4\xb1\xad\ \xa4\xb1\xad\xa4\xb2\xaf\xa6\xb3\xb0\xa7\xb3\xb1\xa8\xb3\xb1\xa7\ \xb3\xb0\xa6\xb2\xb0\xa6\xb3\xaf\xa5\xb3\xb0\xa6\xb3\xb1\xa7\xb2\ \xb1\xa7\xb3\xb0\xa6\xb3\xac\xa2\xb0\xa9\x9f\xae\xa9\xa0\xad\xad\ \xa4\xb0\xb2\xa8\xb4\xb3\xa9\xb4\xb1\xa7\xb3\xb0\xa6\xb2\xb0\xa6\ \xb2\xb0\xa6\xb2\xb2\xa8\xb4\xb4\xaa\xb5\xb6\xac\xb6\xb6\xad\xb7\ \xb0\xa5\xb2\x95\x8e\xa2\x67\x6b\x8a\x49\x56\x7d\x4d\x58\x7f\x58\ \x60\x85\x66\x69\x8c\x74\x75\x94\x80\x81\x9d\x6f\x77\x98\x00\x00\ \x00\xef\xdd\xd6\xee\xdc\xd5\xee\xdb\xd4\xed\xd8\xd1\xec\xd6\xd0\ \xea\xd4\xce\xea\xd4\xce\xe8\xd2\xcc\xe7\xd2\xcc\xe8\xd2\xcb\xe6\ \xd1\xcb\xe6\xd2\xcc\xe6\xd2\xcc\xe5\xd2\xcd\xe4\xd1\xcf\xe4\xd2\ \xd0\xe4\xd4\xd2\xe4\xd5\xd3\xe6\xd7\xd5\xe7\xd9\xd7\xe8\xdb\xd9\ \xe8\xdb\xd9\xe9\xdb\xd9\xe9\xdb\xdc\xe7\xdb\xdc\xe7\xda\xdc\xe7\ \xda\xdc\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd9\xda\xe2\xd7\xda\xe2\xd7\ \xda\xe0\xd6\xd9\xde\xd4\xd9\xde\xd4\xdb\xde\xd4\xda\xdd\xd5\xda\ \xdc\xd4\xda\xdc\xd4\xdb\xde\xd6\xdc\xe0\xd9\xde\xe1\xda\xdf\xe1\ \xda\xdf\xdf\xd8\xdd\xdf\xd8\xde\xde\xd6\xdd\xdd\xd6\xdd\xdd\xd6\ \xdd\xdd\xd6\xdd\xdc\xd5\xdc\xd9\xd2\xd9\xd6\xcf\xd6\xd3\xcd\xd4\ \xcf\xc9\xd1\xcd\xc6\xcf\xcc\xc6\xcf\xcb\xc5\xcf\xcb\xc5\xd0\xcd\ \xc7\xd1\xd0\xcb\xd4\xd4\xcf\xd8\xda\xd3\xd9\xdb\xd4\xdb\xdd\xd6\ \xdd\xdf\xd8\xde\xe1\xda\xdf\xe2\xdb\xe0\xe4\xdd\xe2\xe5\xde\xe3\ \xe6\xdf\xe4\xe7\xe0\xe5\xe6\xdf\xe4\xe6\xdf\xe3\xe3\xdc\xe1\xe2\ \xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xdb\xd5\xda\xdb\xd4\ \xdb\xdd\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xe0\xe2\xdb\xe2\xe1\xda\xe1\ \xe2\xdb\xe2\xe0\xd9\xe0\xdb\xd3\xdd\xcd\xc6\xd0\xb1\xad\xbb\x75\ \x84\x9f\x80\x94\xad\x92\xa1\xb6\x84\x9a\xb1\x80\x98\xb0\x98\x9f\ \xb4\xa7\xa6\xb9\xa8\xa6\xb9\xa2\x9f\xb5\x9c\x97\xb2\x94\x90\xaf\ \x8b\x88\xaa\x8a\x86\xa8\xa4\x9d\xb0\xb3\xac\xb9\xca\xc6\xce\xe8\ \xe6\xeb\xe1\xdf\xe3\xa4\xa1\xb3\xcf\xca\xd3\xe7\xe2\xe8\xe6\xe0\ \xe5\xe0\xda\xe0\xd5\xd0\xd8\xcb\xc4\xce\xbd\xb2\xbe\xb7\xab\xb7\ \xb8\xad\xb7\xb9\xae\xb8\xb9\xaf\xb9\xb9\xae\xb8\xb7\xad\xb7\xb6\ \xab\xb7\xb4\xaa\xb6\xb2\xa8\xb4\xae\xa5\xb2\xac\xa3\xb0\xac\xa3\ \xb1\xad\xa4\xb1\xae\xa5\xb1\xaf\xa6\xb3\xaf\xa5\xb2\xae\xa6\xb2\ \xaf\xa6\xb2\xaf\xa5\xb3\xaf\xa5\xb2\xb0\xa6\xb3\xae\xa6\xb2\xad\ \xa5\xb1\xaa\xa0\xaf\xa3\x9a\xaa\x9f\x97\xa7\xa7\x9e\xac\xaf\xa6\ \xb2\xb1\xa7\xb3\xb0\xa6\xb2\xaf\xa5\xb1\xb0\xa6\xb2\xb1\xa7\xb3\ \xb1\xa7\xb3\xb5\xaa\xb5\xb6\xab\xb6\xb6\xab\xb6\xab\xa1\xae\x8b\ \x86\x9e\x59\x62\x86\x40\x50\x7a\x44\x54\x7c\x52\x5b\x83\x62\x67\ \x8c\x71\x73\x94\x80\x81\x9c\x81\x84\x9f\x00\x00\x00\xef\xdd\xd6\ \xef\xdd\xd6\xee\xdb\xd4\xeb\xd8\xd1\xea\xd7\xd0\xea\xd5\xcf\xe9\ \xd4\xce\xe8\xd2\xcc\xe8\xd1\xcc\xe7\xd1\xcb\xe7\xd1\xcb\xe6\xd1\ \xcb\xe5\xd1\xcc\xe5\xd2\xcd\xe4\xd1\xcf\xe3\xd2\xd0\xe2\xd2\xd0\ \xe4\xd5\xd3\xe4\xd6\xd4\xe5\xd8\xd6\xe6\xd9\xd8\xe6\xd9\xd7\xe7\ \xd9\xda\xe7\xd9\xda\xe7\xda\xda\xe7\xdb\xdb\xe6\xd9\xdb\xe6\xda\ \xdc\xe6\xda\xdc\xe5\xda\xdc\xe4\xd9\xdb\xe3\xd8\xdb\xe3\xd8\xdb\ \xe1\xd7\xda\xe0\xd7\xda\xe0\xd7\xdb\xdf\xd5\xdb\xdf\xd5\xdb\xdf\ \xd6\xdb\xe0\xd8\xde\xe1\xda\xdf\xe2\xd9\xdf\xe1\xda\xdf\xe0\xd9\ \xde\xdf\xd8\xdd\xde\xd7\xde\xdd\xd6\xdd\xdc\xd5\xdc\xdb\xd4\xdb\ \xda\xd3\xdb\xd8\xd2\xd9\xd4\xcf\xd6\xd0\xcc\xd5\xce\xc9\xd2\xca\ \xc5\xce\xc8\xc3\xcd\xc7\xc1\xcc\xc9\xc4\xcf\xcd\xc7\xd2\xd1\xcc\ \xd5\xd5\xd0\xd9\xd9\xd5\xdb\xdd\xd7\xdd\xdf\xd8\xdf\xe0\xda\xe0\ \xe1\xdb\xe0\xe4\xdd\xe2\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xe2\xe7\xe9\ \xe2\xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe3\xe5\xde\xe2\xe3\xdc\ \xe0\xe1\xda\xdf\xdf\xd8\xdd\xde\xd7\xdd\xde\xd7\xde\xdf\xd8\xdf\ \xe0\xd9\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\ \xdb\xe2\xde\xd8\xde\xd7\xd0\xd8\xc2\xbb\xc6\xa9\xa7\xb7\xae\xad\ \xbc\xaf\xae\xbe\xa0\xaa\xbb\x8b\x9f\xb5\x73\x8d\xa8\x86\x95\xae\ \x99\x9e\xb5\x9c\x9d\xb4\x9c\x9a\xb3\x98\x93\xb1\x8e\x8b\xad\x82\ \x7c\xa6\x82\x79\xa3\xa3\x9a\xaf\xbe\xb8\xc3\xe3\xe2\xe6\xdf\xdd\ \xe2\xb3\xad\xbb\xd7\xd1\xd8\xe8\xe2\xe7\xe6\xe0\xe5\xde\xd8\xdd\ \xde\xd7\xdd\xd5\xce\xd5\xc6\xbe\xc7\xb7\xab\xb6\xb6\xac\xb7\xb7\ \xad\xb7\xb9\xae\xb8\xb9\xae\xb8\xb8\xae\xb8\xb7\xad\xb8\xb6\xac\ \xb8\xb4\xaa\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xad\xa5\xb2\xac\xa3\xb2\ \xad\xa4\xb2\xad\xa4\xb1\xad\xa4\xb1\xae\xa5\xb1\xae\xa5\xb2\xae\ \xa6\xb2\xaf\xa6\xb3\xae\xa5\xb2\xad\xa4\xb1\xac\xa3\xb0\xa8\x9e\ \xad\x9b\x92\xa3\x90\x8a\x9d\x9b\x95\xa5\xac\xa3\xb1\xb0\xa7\xb3\ \xb0\xa6\xb2\xb1\xa7\xb3\xb1\xa7\xb3\xb1\xa7\xb3\xb2\xa8\xb4\xb4\ \xa9\xb5\xb4\xa9\xb6\xb5\xaa\xb5\xa4\x9b\xaa\x7f\x7f\x9a\x53\x5f\ \x85\x45\x57\x7f\x48\x59\x7f\x58\x64\x87\x69\x6e\x8f\x74\x79\x94\ \x7d\x83\x98\x84\x89\x9b\x00\x00\x00\xef\xde\xd8\xef\xdd\xd7\xee\ \xdb\xd6\xeb\xd8\xd2\xeb\xd7\xd1\xe9\xd6\xcf\xe8\xd5\xcd\xe8\xd3\ \xcc\xe8\xd2\xcb\xe7\xd1\xcb\xe6\xd0\xca\xe5\xd1\xca\xe4\xd0\xcb\ \xe4\xd1\xcc\xe4\xd1\xce\xe3\xd1\xcf\xe3\xd1\xd0\xe2\xd3\xd1\xe3\ \xd4\xd3\xe4\xd6\xd5\xe6\xd8\xd9\xe7\xd9\xd9\xe6\xd8\xd9\xe6\xd9\ \xda\xe6\xda\xdb\xe6\xda\xdb\xe7\xda\xdc\xe7\xda\xdc\xe7\xda\xdc\ \xe7\xdb\xdd\xe7\xdb\xdd\xe6\xda\xdc\xe5\xda\xdc\xe4\xd9\xdb\xe3\ \xd8\xda\xe2\xd8\xdb\xe2\xd7\xdb\xe0\xd6\xdc\xe1\xd7\xdd\xe2\xd8\ \xde\xe4\xd9\xe0\xe3\xd9\xe0\xe1\xd9\xdf\xe0\xda\xdf\xdf\xd8\xde\ \xde\xd7\xde\xdc\xd5\xdc\xdb\xd4\xdb\xdb\xd4\xda\xda\xd2\xdb\xd6\ \xd1\xd9\xd2\xcd\xd7\xcf\xca\xd3\xcb\xc8\xd1\xc8\xc4\xce\xc5\xc1\ \xcc\xc5\xc1\xcc\xc7\xc3\xce\xcb\xc7\xd1\xd1\xcc\xd5\xd5\xd0\xd8\ \xd9\xd5\xdc\xdd\xd7\xde\xdf\xd9\xe0\xe2\xdb\xe1\xe3\xdd\xe2\xe6\ \xe0\xe5\xe8\xe1\xe6\xe9\xe2\xe7\xea\xe2\xe7\xea\xe3\xe8\xea\xe3\ \xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe5\xde\xe1\xe2\xdb\xde\xe0\xd7\xdb\ \xdc\xd4\xda\xda\xd3\xd8\xda\xd3\xd9\xdb\xd4\xdb\xdd\xd5\xdc\xde\ \xd6\xdd\xde\xd7\xde\xdc\xd6\xdc\xdb\xd3\xdb\xd7\xcf\xd7\xc2\xbb\ \xc6\xba\xb4\xc1\xba\xb4\xc0\xb3\xae\xbb\xaa\xa9\xb9\xad\xac\xbb\ \xaf\xaf\xbf\x98\x9e\xb3\x6f\x82\xa3\x7e\x90\xae\x88\x9a\xb3\x88\ \x96\xb1\x8f\x97\xb0\x95\x95\xb0\x90\x8e\xaf\x84\x7f\xaa\x78\x6f\ \xa1\x8a\x81\xa7\xb0\xab\xb8\xd2\xce\xd7\xd2\xcf\xd8\x90\x87\x9f\ \xaa\x9f\xad\xcd\xc5\xca\xd6\xce\xd3\xd5\xce\xd2\xdb\xd4\xd8\xd7\ \xd0\xd5\xc9\xc1\xc8\xb8\xae\xb9\xb3\xa9\xb4\xb6\xac\xb7\xb7\xae\ \xb8\xb7\xad\xb7\xb7\xae\xb8\xb7\xae\xb8\xb7\xae\xb7\xb6\xac\xb7\ \xb5\xab\xb6\xb3\xa9\xb5\xb0\xa7\xb4\xae\xa5\xb3\xac\xa4\xb2\xab\ \xa3\xb0\xab\xa3\xb0\xab\xa3\xb0\xac\xa4\xb1\xad\xa5\xb2\xad\xa5\ \xb2\xae\xa5\xb2\xad\xa4\xb1\xac\xa3\xb0\xa6\x9e\xac\x91\x8a\x9d\ \x80\x7a\x91\x8e\x88\x9b\xa6\x9f\xac\xaf\xa7\xb2\xaf\xa6\xb2\xb1\ \xa7\xb3\xb1\xa6\xb2\xb2\xa7\xb3\xb2\xa8\xb4\xb3\xa9\xb5\xb3\xa9\ \xb4\xb0\xa5\xb1\x9c\x96\xa7\x7d\x81\x99\x5d\x6e\x8a\x56\x6b\x87\ \x57\x6c\x85\x5a\x6e\x83\x58\x6f\x82\x53\x6e\x81\x50\x6e\x80\x4b\ \x6d\x7d\x00\x00\x00\xee\xdf\xd9\xef\xdd\xd7\xee\xdb\xd6\xeb\xd8\ \xd3\xeb\xd7\xd2\xea\xd6\xd0\xe8\xd4\xce\xe6\xd3\xcc\xe7\xd2\xcc\ \xe7\xd1\xcb\xe4\xd1\xcb\xe4\xd0\xca\xe4\xd0\xcb\xe3\xd0\xcb\xe3\ \xd0\xcd\xe2\xd0\xce\xe2\xd1\xcf\xe1\xd2\xd1\xe1\xd3\xd3\xe3\xd5\ \xd6\xe6\xd8\xd9\xe7\xd9\xda\xe7\xd8\xd9\xe7\xda\xdb\xe7\xda\xdb\ \xe7\xda\xdc\xe8\xdb\xdd\xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xde\xe9\ \xdc\xde\xe9\xdc\xdd\xe7\xdc\xdd\xe7\xda\xdc\xe5\xd9\xdb\xe4\xd9\ \xdc\xe4\xd9\xdc\xe3\xd9\xdd\xe3\xd9\xde\xe4\xda\xdf\xe4\xda\xe0\ \xe4\xda\xe0\xe2\xd9\xdf\xe1\xda\xde\xdf\xd8\xde\xde\xd7\xdd\xdc\ \xd6\xdd\xdb\xd4\xdb\xd9\xd4\xda\xda\xd3\xda\xd5\xd0\xd8\xd2\xcd\ \xd6\xce\xc9\xd2\xc9\xc6\xd0\xc7\xc3\xce\xc6\xc2\xcd\xc5\xc1\xcc\ \xc8\xc4\xcf\xcc\xc8\xd2\xd1\xcc\xd5\xd5\xd1\xd9\xd8\xd5\xdb\xde\ \xd7\xde\xe0\xd9\xe0\xe1\xda\xe1\xe4\xde\xe3\xe6\xe1\xe6\xe9\xe2\ \xe7\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xe8\xe1\xe6\ \xe4\xdc\xe1\xdd\xd5\xd8\xd8\xce\xd2\xd3\xc9\xce\xcf\xc5\xcb\xcc\ \xc2\xc9\xcb\xc1\xc8\xcb\xc1\xc9\xcb\xc2\xc9\xcb\xc1\xc9\xcb\xc2\ \xc9\xc8\xbf\xc8\xc5\xbd\xc6\xc1\xb9\xc2\xb0\xa9\xb8\xad\xa7\xb6\ \xb5\xaf\xba\xb3\xac\xb9\x9f\x9f\xb2\xa5\xa5\xb6\xb2\xaf\xbf\x97\ \x9a\xb1\x8a\x91\xae\xa0\xa3\xba\x93\x9b\xb4\x86\x92\xaf\x82\x8e\ \xad\x81\x88\xac\x80\x82\xaa\x7a\x78\xa6\x70\x6a\xa1\x78\x73\xa2\ \xa9\xa5\xb6\xbe\xba\xc5\xc4\xc0\xcc\x71\x6f\x93\x54\x55\x7d\x6e\ \x6a\x87\x8c\x83\x98\xa3\x96\xa6\xac\x9f\xac\xa4\x99\xa5\x92\x8b\ \x9c\x8c\x87\x98\x94\x8e\x9c\xa1\x99\xa4\xac\xa3\xae\xb2\xa9\xb4\ \xb4\xac\xb5\xb6\xad\xb7\xb6\xad\xb8\xb5\xab\xb7\xb5\xac\xb6\xb5\ \xab\xb6\xb4\xaa\xb6\xb1\xa9\xb5\xae\xa6\xb4\xab\xa4\xb1\xaa\xa3\ \xb0\xaa\xa3\xb0\xab\xa4\xb1\xac\xa5\xb2\xac\xa5\xb2\xab\xa4\xb1\ \xab\xa4\xb1\xac\xa3\xb0\xa6\x9e\xac\x8a\x85\x9a\x6e\x6c\x85\x7b\ \x78\x90\x9b\x95\xa4\xab\xa3\xaf\xae\xa5\xb1\xae\xa4\xb0\xac\xa3\ \xae\xa9\xa0\xab\xa4\x9d\xa7\x9f\x99\xa4\x96\x93\x9e\x88\x8b\x95\ \x74\x7e\x8c\x57\x6e\x82\x42\x66\x7a\x3d\x65\x78\x3b\x65\x78\x39\ \x64\x76\x3d\x66\x7a\x45\x6a\x7f\x4b\x6d\x85\x53\x73\x8d\x00\x00\ \x00\xef\xe0\xdd\xee\xde\xda\xed\xdb\xd7\xeb\xd9\xd6\xea\xd7\xd3\ \xea\xd7\xd2\xe9\xd6\xd1\xe7\xd3\xce\xe6\xd3\xcd\xe5\xd2\xcd\xe4\ \xd0\xcb\xe5\xd1\xcc\xe4\xd0\xcb\xe2\xcf\xcc\xe2\xcf\xcc\xe1\xcf\ \xce\xe0\xd1\xcf\xe2\xd2\xd2\xe1\xd3\xd4\xe3\xd5\xd6\xe5\xd8\xd8\ \xe6\xda\xda\xe5\xd9\xda\xe5\xd9\xd9\xe5\xd8\xdb\xe7\xda\xdc\xe8\ \xdb\xdd\xe9\xdc\xde\xea\xdd\xdf\xeb\xde\xdf\xeb\xde\xdf\xeb\xde\ \xde\xea\xde\xde\xe9\xdd\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe7\xdb\xde\ \xe6\xdb\xde\xe7\xdc\xdf\xe6\xdd\xe0\xe7\xdd\xe1\xe5\xdc\xe0\xe4\ \xda\xdf\xe3\xd8\xde\xe0\xd8\xdd\xdf\xd8\xdc\xde\xd6\xdc\xdb\xd5\ \xdb\xda\xd3\xda\xd9\xd2\xd9\xd5\xcf\xd8\xd1\xcc\xd5\xcc\xc8\xd1\ \xc8\xc5\xce\xc7\xc3\xce\xc5\xc1\xcc\xc7\xc3\xce\xc8\xc4\xcf\xcd\ \xc8\xd2\xd1\xcc\xd5\xd4\xd0\xd8\xd7\xd3\xd9\xda\xd6\xdc\xdf\xd8\ \xde\xe1\xda\xe1\xe5\xde\xe4\xe7\xe0\xe5\xe9\xe2\xe7\xea\xe3\xe8\ \xea\xe3\xe8\xea\xe3\xe7\xe9\xe2\xe7\xe3\xdc\xe1\xda\xd1\xd7\xcd\ \xc2\xc7\xc4\xb8\xbf\xbf\xb3\xbc\xbc\xb1\xba\xba\xaf\xba\xba\xaf\ \xb9\xb8\xae\xba\xb9\xae\xb9\xb9\xae\xb8\xb8\xaf\xba\xb8\xaf\xb9\ \xb8\xae\xb9\xae\xa6\xb5\x9e\x9c\xb0\xae\xa8\xb6\xb3\xab\xb7\xad\ \xa6\xb4\xab\xa8\xb8\xaf\xac\xbb\xb2\xae\xbc\xb1\xaf\xbd\xb6\xb3\ \xc1\xb6\xb3\xc3\x99\x99\xb3\x85\x8c\xac\x80\x8a\xad\x7b\x83\xaa\ \x75\x79\xa6\x7a\x79\xa8\x77\x74\xa7\x80\x7b\xa8\xae\xa9\xb9\xb3\ \xae\xbc\xaa\xa5\xbb\x6e\x6a\x98\x49\x4e\x7b\x38\x44\x71\x37\x44\ \x72\x3a\x48\x76\x3e\x4d\x79\x39\x4d\x76\x34\x4d\x72\x38\x51\x72\ \x44\x5a\x74\x56\x66\x7b\x6c\x76\x84\x84\x86\x92\x9d\x9b\xa6\xae\ \xa6\xb1\xb4\xaa\xb6\xb4\xaa\xb6\xb5\xab\xb6\xb4\xaa\xb6\xb3\xaa\ \xb5\xb2\xaa\xb5\xb1\xa8\xb4\xad\xa6\xb2\xaa\xa3\xb0\xa8\xa2\xaf\ \xa8\xa1\xaf\xa9\xa2\xaf\xa9\xa2\xaf\xa7\xa0\xad\xa7\xa1\xae\xa5\ \x9e\xab\x9d\x99\xa7\x84\x85\x97\x67\x6d\x84\x69\x71\x86\x82\x86\ \x95\x89\x8d\x98\x83\x89\x96\x7b\x84\x90\x73\x7e\x8a\x67\x78\x86\ \x5b\x70\x80\x53\x6b\x7f\x49\x66\x7f\x43\x62\x7e\x3d\x5f\x7c\x40\ \x60\x7f\x45\x64\x82\x4d\x6d\x88\x54\x72\x8d\x5a\x76\x92\x67\x7b\ \x97\x72\x7f\x9c\x7b\x83\xa0\x85\x87\xa3\x00\x00\x00\xef\xe1\xde\ \xee\xdf\xdc\xed\xdc\xd9\xeb\xda\xd7\xea\xd9\xd6\xe9\xd7\xd3\xe8\ \xd5\xd2\xe7\xd5\xd1\xe7\xd3\xcf\xe5\xd2\xcd\xe4\xd1\xcc\xe4\xd0\ \xcd\xe3\xd0\xcc\xe2\xcf\xcc\xe1\xcf\xcc\xe0\xd0\xcd\xe0\xd1\xcf\ \xe0\xd2\xd2\xe1\xd3\xd4\xe3\xd5\xd6\xe4\xd7\xd7\xe5\xd9\xd9\xe6\ \xda\xd9\xe5\xd9\xda\xe6\xd9\xdb\xe7\xdb\xdc\xe8\xdc\xdd\xea\xde\ \xdf\xeb\xdf\xdf\xec\xdf\xe0\xec\xe0\xe0\xec\xe0\xe0\xec\xde\xdf\ \xeb\xdd\xdd\xea\xdc\xdd\xe9\xdc\xdd\xe8\xdc\xdd\xe9\xdc\xdf\xe9\ \xde\xdf\xe9\xde\xe1\xe9\xde\xe1\xe8\xde\xe0\xe6\xdc\xdf\xe4\xda\ \xde\xe1\xd9\xdd\xe0\xd8\xdd\xdf\xd8\xdd\xdd\xd6\xdc\xdb\xd4\xdb\ \xda\xd3\xda\xd6\xcf\xd7\xd0\xcb\xd4\xcc\xc8\xd1\xc8\xc5\xce\xc6\ \xc2\xce\xc5\xc1\xcc\xc6\xc2\xcd\xc9\xc5\xcf\xcc\xc7\xd0\xcf\xca\ \xd3\xd2\xcd\xd7\xd5\xd0\xd9\xd8\xd4\xdc\xdd\xd7\xde\xe1\xda\xe1\ \xe4\xde\xe3\xe8\xe0\xe5\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe8\xe9\ \xe2\xe6\xe6\xdf\xe3\xda\xd2\xd8\xc8\xbd\xc5\xbd\xb2\xbb\xbc\xb0\ \xba\xbc\xb1\xbb\xba\xb0\xba\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\ \xb9\xae\xb8\xb7\xad\xb7\xb7\xae\xb8\xb6\xad\xb7\xb6\xad\xb8\xaa\ \xa5\xb4\x9d\x9c\xb1\xad\xa8\xb6\xae\xa8\xb6\x98\x96\xad\xaa\xa7\ \xb8\xb4\xaf\xbc\xb0\xac\xba\xa7\xa5\xb7\xad\xaa\xbc\xb2\xae\xbf\ \xab\xa9\xbb\x8d\x90\xb0\x84\x8a\xae\x89\x8d\xb1\x77\x7a\xa8\x78\ \x77\xa9\x78\x73\xa9\x89\x84\xad\xb5\xaf\xbd\xb4\xae\xbc\x9a\x93\ \xb7\x7c\x76\xad\x52\x55\x85\x31\x3e\x6e\x2d\x3e\x6f\x2d\x41\x72\ \x2f\x46\x74\x2d\x47\x73\x29\x48\x6e\x25\x48\x6b\x27\x4b\x69\x2c\ \x50\x69\x34\x57\x6a\x42\x61\x6f\x61\x75\x80\x8b\x8f\x99\xa3\x9e\ \xa8\xaa\xa3\xad\xac\xa4\xaf\xad\xa5\xae\xac\xa4\xae\xaa\xa2\xac\ \xa7\xa0\xaa\xa4\x9e\xa9\x9d\x9a\xa5\x97\x96\xa1\x91\x92\x9e\x8d\ \x8f\x9c\x87\x8c\x98\x7f\x87\x94\x78\x84\x92\x6e\x7f\x8f\x64\x78\ \x89\x55\x6f\x83\x48\x67\x7e\x44\x66\x7e\x4a\x6a\x82\x49\x6c\x83\ \x47\x69\x84\x45\x67\x86\x49\x69\x89\x4b\x69\x8a\x51\x6b\x8f\x5d\ \x71\x96\x66\x75\x99\x6a\x76\x99\x66\x70\x98\x69\x72\x99\x64\x6e\ \x95\x62\x6e\x93\x68\x74\x95\x6c\x77\x97\x73\x7c\x9a\x7b\x7f\x9d\ \x86\x86\xa1\x8e\x8b\xa3\x00\x00\x00\xed\xe1\xde\xed\xdf\xdd\xed\ \xde\xdb\xeb\xdb\xd9\xe9\xd9\xd7\xe9\xd8\xd6\xe8\xd6\xd3\xe7\xd5\ \xd2\xe6\xd4\xd1\xe5\xd3\xd0\xe5\xd1\xce\xe4\xd1\xce\xe3\xd0\xcd\ \xe2\xd0\xce\xe1\xcf\xce\xe0\xd0\xcf\xe1\xd1\xd1\xe0\xd2\xd3\xe1\ \xd3\xd4\xe3\xd5\xd6\xe4\xd7\xd7\xe5\xd8\xd9\xe5\xd9\xd9\xe6\xda\ \xda\xe7\xda\xdb\xe8\xdc\xdc\xe9\xdd\xdd\xeb\xdf\xdf\xec\xdf\xe0\ \xed\xe1\xe1\xed\xe1\xe0\xee\xe2\xe0\xee\xe0\xdf\xeb\xde\xdd\xeb\ \xdd\xdd\xea\xdc\xdd\xeb\xdd\xde\xec\xdf\xe0\xec\xdf\xe1\xec\xdf\ \xe2\xeb\xdf\xe1\xea\xde\xe0\xe8\xdd\xe0\xe7\xdc\xde\xe4\xda\xde\ \xe2\xd9\xdd\xe1\xd8\xde\xdf\xd8\xdd\xdc\xd6\xdb\xda\xd4\xda\xd7\ \xd0\xd7\xd2\xcb\xd4\xcc\xc7\xd0\xc9\xc5\xce\xc7\xc2\xcd\xc5\xc1\ \xcc\xc5\xc1\xcc\xc8\xc3\xcd\xcb\xc6\xcf\xcd\xc8\xd1\xd0\xcb\xd4\ \xd3\xce\xd7\xd7\xd3\xda\xde\xd7\xde\xe1\xda\xe1\xe5\xdf\xe4\xe7\ \xe0\xe5\xea\xe3\xe8\xea\xe3\xe8\xea\xe4\xe8\xe9\xe1\xe4\xdf\xd8\ \xdc\xcd\xc4\xcb\xbf\xb3\xbd\xbc\xb2\xbb\xbc\xb1\xbb\xbc\xb1\xbb\ \xbc\xb1\xbb\xbc\xb1\xbb\xba\xaf\xb9\xba\xaf\xb9\xba\xaf\xb9\xb9\ \xae\xb8\xb7\xad\xb8\xb7\xad\xb7\xb6\xad\xb7\xb5\xab\xb7\xb3\xab\ \xb6\xb4\xad\xb8\xb4\xac\xb7\xb0\xa8\xb7\xb3\xab\xb9\xb4\xad\xbb\ \xaa\xa6\xb7\x98\x96\xaf\xa6\xa3\xb8\xa8\xa4\xbb\xa3\xa0\xb9\x9b\ \x99\xb6\x94\x92\xb4\x91\x8f\xb3\x8b\x87\xb1\x81\x7d\xae\x77\x70\ \xa8\x92\x8d\xb1\xb9\xb4\xbf\xa7\xa3\xb4\x84\x86\xaa\x75\x77\xa5\ \x44\x4a\x7e\x31\x3d\x72\x2e\x3d\x72\x2c\x3d\x73\x2c\x42\x75\x2a\ \x43\x72\x23\x42\x6d\x1f\x43\x69\x20\x46\x67\x24\x4b\x66\x2b\x51\ \x67\x31\x58\x68\x3b\x62\x6e\x53\x70\x7b\x69\x7a\x84\x6f\x7b\x85\ \x71\x7c\x86\x6e\x7a\x84\x6b\x78\x84\x64\x75\x83\x5e\x72\x82\x5b\ \x72\x83\x56\x6f\x81\x4e\x6c\x7f\x4a\x6c\x80\x49\x6d\x84\x47\x6d\ \x88\x48\x6e\x8c\x4e\x72\x90\x50\x73\x92\x51\x73\x97\x53\x76\x9d\ \x5a\x75\xa0\x5e\x77\xa2\x60\x79\xa1\x6a\x7f\xa4\x75\x83\xa6\x7d\ \x87\xaa\x86\x8d\xac\x8c\x90\xac\x96\x95\xae\x9a\x97\xaf\x94\x90\ \xaa\x87\x85\xa4\x7d\x7d\xa0\x7f\x80\xa2\x70\x76\x9a\x64\x6d\x92\ \x67\x70\x93\x6e\x76\x96\x77\x7c\x9a\x80\x82\x9e\x89\x87\xa1\x92\ \x8f\xa5\x00\x00\x00\xed\xdf\xdf\xec\xe0\xde\xec\xdf\xdd\xea\xdc\ \xda\xe9\xda\xd8\xe8\xd9\xd7\xe8\xd7\xd5\xe6\xd6\xd3\xe6\xd5\xd2\ \xe5\xd4\xd1\xe3\xd3\xd0\xe4\xd3\xd0\xe3\xd2\xd0\xe2\xd1\xd0\xe1\ \xd1\xd0\xe0\xd1\xd2\xe1\xd3\xd4\xe2\xd4\xd5\xe2\xd4\xd5\xe4\xd6\ \xd7\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xe8\xdc\xdc\xe8\xdc\xdc\ \xe8\xdc\xdc\xea\xdd\xdd\xec\xde\xdf\xed\xe0\xdf\xee\xe2\xe0\xf0\ \xe4\xe2\xf0\xe3\xe1\xef\xe2\xe0\xee\xe1\xdf\xed\xdf\xde\xec\xdf\ \xde\xed\xe0\xe0\xee\xe1\xe1\xee\xe2\xe1\xee\xe2\xe2\xee\xe2\xe2\ \xed\xe0\xe2\xeb\xdf\xe1\xe9\xde\xe0\xe7\xdd\xe0\xe5\xdc\xdf\xe4\ \xdb\xdf\xe2\xd9\xdd\xe0\xd8\xdd\xdd\xd6\xdb\xd9\xd3\xd8\xd4\xcd\ \xd3\xcd\xc8\xd1\xca\xc5\xce\xc7\xc3\xcc\xc5\xc2\xcb\xc7\xc1\xca\ \xc7\xc2\xcd\xca\xc4\xce\xcc\xc7\xd0\xcf\xca\xd3\xd5\xcf\xd7\xda\ \xd3\xda\xde\xd6\xdd\xe2\xdb\xe0\xe6\xdf\xe4\xe9\xe2\xe6\xeb\xe3\ \xe6\xec\xe4\xe6\xec\xe4\xe7\xe6\xdd\xe1\xd6\xcd\xd4\xc3\xba\xc1\ \xbe\xb4\xbf\xbe\xb4\xbe\xbd\xb3\xbd\xbe\xb3\xbd\xbe\xb3\xbd\xbd\ \xb2\xbc\xbd\xb2\xbc\xbc\xb1\xba\xbc\xb1\xbb\xbb\xb0\xba\xba\xaf\ \xb9\xb9\xae\xb8\xb8\xae\xb8\xb7\xae\xb8\xaf\xa5\xb2\xac\xa4\xb0\ \xb3\xab\xb6\xb5\xac\xb8\xb5\xac\xb8\xb5\xac\xb9\xb0\xa9\xb7\xa7\ \xa2\xb6\xb4\xae\xbf\xb5\xb1\xc2\xab\xa8\xbd\x9b\x98\xb5\x96\x92\ \xb4\x93\x8f\xb5\x8a\x86\xb1\x81\x7c\xaf\x78\x72\xa9\xa1\x9c\xb6\ \xb1\xad\xba\x81\x87\xa0\x62\x75\x9a\x6f\x77\xa6\x54\x59\x92\x49\ \x50\x8a\x3b\x44\x7f\x34\x40\x7b\x2e\x3f\x78\x2f\x43\x78\x2e\x45\ \x76\x28\x44\x70\x26\x47\x6d\x28\x4a\x6d\x2c\x51\x6d\x34\x5c\x71\ \x3e\x69\x7a\x50\x77\x87\x51\x75\x86\x49\x6c\x80\x3f\x65\x7c\x3e\ \x64\x7f\x45\x69\x89\x4e\x71\x95\x50\x73\x97\x57\x77\x9a\x5d\x7e\ \xa7\x65\x83\xaf\x6f\x89\xb5\x77\x8f\xba\x7f\x92\xbf\x84\x94\xbe\ \x87\x95\xbc\x88\x94\xb8\x86\x92\xb5\x7d\x88\xb0\x6b\x77\xa2\x60\ \x70\x9b\x63\x72\x99\x78\x81\xa3\x90\x92\xaa\x9f\x9c\xaf\xa1\x9c\ \xaf\xa0\x9a\xae\x9a\x95\xaa\x92\x8e\xa6\x85\x83\xa0\x87\x86\xa4\ \x92\x90\xab\x9a\x96\xaf\x93\x91\xac\x87\x88\xa6\x7d\x81\xa1\x7f\ \x82\xa1\x86\x87\xa3\x8c\x8c\xa4\x93\x90\xa6\x98\x93\xa7\x00\x00\ \x00\xed\xe2\xe2\xed\xe1\xe2\xed\xe0\xe0\xea\xdc\xdd\xe9\xdb\xda\ \xe9\xda\xd9\xe8\xd9\xd7\xe7\xd7\xd5\xe6\xd7\xd4\xe6\xd6\xd4\xe5\ \xd4\xd3\xe4\xd4\xd2\xe3\xd4\xd2\xe3\xd4\xd3\xe2\xd3\xd4\xe2\xd4\ \xd5\xe3\xd6\xd7\xe4\xd7\xd8\xe5\xd8\xd9\xe6\xd9\xd9\xe8\xdb\xdc\ \xe9\xdc\xdc\xe9\xdd\xdd\xe9\xdd\xdd\xe9\xdd\xdd\xea\xdd\xde\xeb\ \xdd\xde\xec\xdf\xdf\xee\xe1\xdf\xef\xe4\xe1\xf1\xe5\xe3\xf1\xe5\ \xe2\xf0\xe4\xe2\xf0\xe3\xe1\xef\xe3\xe0\xee\xe2\xdf\xef\xe2\xe0\ \xf0\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe4\xf0\xe4\xe4\xef\xe3\xe3\xee\ \xe2\xe3\xec\xe0\xe2\xea\xdf\xe1\xe9\xdd\xe0\xe7\xdd\xdf\xe5\xdc\ \xdf\xe3\xda\xdd\xdf\xd7\xdb\xdb\xd3\xd8\xd6\xce\xd4\xd0\xc9\xd0\ \xcc\xc6\xce\xc8\xc2\xcb\xc6\xc1\xca\xc7\xc2\xcb\xc9\xc4\xcd\xcb\ \xc5\xcf\xce\xc8\xd1\xd2\xca\xd2\xd6\xcf\xd6\xda\xd2\xd9\xdf\xd7\ \xdc\xe4\xdc\xe0\xe8\xe0\xe3\xeb\xe3\xe5\xec\xe4\xe7\xed\xe4\xe7\ \xec\xe2\xe5\xd9\xd1\xd6\xc7\xbe\xc6\xc1\xb8\xc1\xc0\xb7\xc1\xc0\ \xb7\xc0\xbf\xb6\xbf\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb4\ \xbe\xbd\xb4\xbc\xbd\xb3\xbc\xbc\xb2\xbb\xbb\xb1\xbb\xba\xb0\xbb\ \xb9\xb0\xba\xb8\xaf\xb9\xa2\x9c\xae\x9e\x9a\xad\xb5\xae\xba\xb8\ \xb0\xbb\xb3\xab\xb8\xb1\xaa\xb8\xb4\xad\xbc\xb5\xae\xbd\xb7\xb1\ \xc0\xbb\xb4\xc3\xb6\xb0\xc1\x8d\x8a\xac\x88\x85\xae\x91\x8f\xb6\ \x81\x7e\xaf\x80\x7c\xb0\x83\x7d\xb1\xad\xa7\xb9\x9c\x9a\xaf\x61\ \x72\x93\x5a\x72\x98\x7e\x87\xb5\x7a\x7b\xb5\x6e\x6b\xad\x67\x63\ \xa9\x56\x54\x9a\x49\x4e\x8f\x46\x4d\x8c\x4a\x52\x8e\x47\x53\x8a\ \x4c\x5a\x8f\x55\x65\x97\x64\x78\xa0\x6c\x85\xa6\x75\x95\xb2\x8b\ \xa7\xc4\x90\xa8\xc9\x91\xa6\xcb\x88\x9c\xc7\x8c\x9d\xc7\x97\xa3\ \xcd\x9a\xa4\xca\x9c\xa4\xc6\x9d\xa2\xc5\xa3\xa6\xc6\xa5\xa7\xc4\ \xa4\xa5\xc1\xa3\xa4\xbe\xa1\xa2\xbb\x9f\xa1\xb9\x9d\x9e\xb5\x98\ \x9b\xb1\x8f\x93\xad\x78\x7d\x9e\x57\x61\x85\x43\x56\x78\x45\x59\ \x79\x66\x6f\x8d\x85\x86\xa0\x98\x95\xa9\x95\x90\xa4\x89\x83\x9c\ \x78\x77\x93\x6e\x72\x92\x77\x7a\x9a\x93\x92\xac\xa7\xa4\xb7\xb2\ \xac\xbb\xaf\xa9\xba\xa5\xa1\xb4\x9e\x9b\xb1\x99\x97\xad\x98\x96\ \xab\x98\x96\xaa\x9d\x99\xab\xa0\x9b\xad\x00\x00\x00\xee\xe3\xe5\ \xed\xe2\xe4\xed\xe1\xe2\xeb\xde\xdf\xe9\xdc\xdc\xe9\xdb\xdc\xe7\ \xd9\xda\xe7\xd9\xd9\xe6\xd8\xd7\xe6\xd8\xd6\xe5\xd6\xd6\xe4\xd5\ \xd5\xe3\xd5\xd5\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd7\xd8\xe5\xd8\xda\ \xe6\xd9\xdb\xe7\xdb\xdc\xe8\xdb\xdc\xe9\xdd\xdd\xeb\xdf\xdf\xeb\ \xdf\xdf\xeb\xdf\xdf\xeb\xdf\xdf\xeb\xdf\xdf\xec\xdf\xdf\xed\xe0\ \xdf\xee\xe1\xe0\xef\xe4\xe1\xf1\xe5\xe2\xf1\xe6\xe2\xf1\xe6\xe2\ \xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe2\xf2\ \xe6\xe3\xf1\xe6\xe4\xf1\xe8\xe5\xf0\xe7\xe5\xf0\xe6\xe4\xee\xe3\ \xe4\xee\xe2\xe3\xeb\xdf\xe1\xea\xdf\xe1\xe9\xde\xe0\xe6\xdc\xdf\ \xe2\xd9\xdc\xdd\xd4\xd8\xd8\xd0\xd4\xd3\xcb\xd1\xcd\xc6\xcd\xc9\ \xc3\xcb\xc8\xc3\xcc\xc9\xc4\xcd\xcd\xc6\xcf\xcf\xc8\xd0\xd2\xcb\ \xd1\xd4\xcc\xd3\xd9\xd0\xd5\xdd\xd4\xd8\xe2\xd7\xda\xe6\xdc\xdf\ \xea\xe0\xe2\xeb\xe2\xe5\xee\xe5\xe7\xef\xe7\xe8\xea\xe0\xe3\xd2\ \xc9\xcf\xc0\xb8\xc1\xc0\xb7\xc0\xc1\xb7\xc1\xc1\xb8\xc0\xc0\xb8\ \xc1\xc0\xb7\xc1\xbf\xb7\xc0\xbf\xb7\xc1\xc0\xb7\xc1\xc0\xb8\xbf\ \xbf\xb7\xbe\xbf\xb6\xbe\xbf\xb6\xbf\xbd\xb5\xbf\xbd\xb4\xbe\xbc\ \xb4\xbe\xb6\xb0\xbc\xb4\xae\xbb\xa4\xa0\xb1\xae\xa9\xb7\xa7\xa5\ \xb6\xa3\xa2\xb6\xb2\xaf\xbf\xb2\xad\xbf\xae\xaa\xbe\xaf\xab\xbf\ \xac\xa7\xbf\x98\x96\xb6\x94\x92\xb8\x99\x96\xbc\x91\x8d\xb9\x8a\ \x84\xb7\x92\x8c\xb5\xa6\xa1\xb6\x82\x85\xa4\x53\x6a\x8c\x58\x70\ \x96\x75\x7b\xb1\x80\x7b\xbc\x8c\x81\xc4\x7d\x73\xbc\x69\x60\xad\ \x5f\x59\xa4\x59\x56\x9e\x5e\x5d\xa2\x63\x63\xa5\x6e\x6d\xac\x80\ \x80\xb5\x99\x9a\xc1\xb1\xb4\xcf\xb8\xc1\xd8\xbb\xc6\xdd\xbe\xc5\ \xdc\xbe\xbf\xd8\xb7\xb7\xce\xb3\xb1\xc7\xb3\xaf\xc4\xb1\xad\xc0\ \xb0\xac\xbe\xaf\xaa\xbc\xac\xa7\xb9\xa4\x9e\xb1\x9c\x97\xab\x9b\ \x97\xa9\x99\x97\xa9\x97\x95\xa8\x92\x93\xa7\x8d\x8f\xa5\x84\x88\ \xa1\x6b\x72\x93\x4a\x5a\x7f\x37\x50\x73\x36\x50\x73\x4c\x5c\x7d\ \x6a\x6f\x8f\x76\x75\x93\x70\x6f\x8d\x5e\x61\x84\x54\x5b\x80\x65\ \x6d\x91\x89\x8b\xa7\xa6\xa3\xb6\xb5\xb0\xbd\xbb\xb4\xbf\xba\xb3\ \xbf\xb6\xaf\xbc\xae\xa9\xb7\xa7\xa3\xb2\x9f\x9d\xac\x99\x98\xa8\ \x97\x97\xa6\x92\x95\xa3\x00\x00\x00\xee\xe3\xe5\xed\xe3\xe4\xec\ \xe1\xe3\xea\xdf\xe0\xe9\xdd\xde\xe8\xdd\xdd\xe9\xdc\xdb\xe7\xda\ \xdb\xe6\xd9\xd9\xe5\xd8\xd8\xe5\xd8\xd9\xe4\xd7\xd8\xe4\xd7\xd8\ \xe4\xd9\xd9\xe4\xd8\xda\xe5\xd8\xda\xe5\xd9\xdb\xe7\xdb\xdd\xe8\ \xdc\xde\xe9\xdd\xdf\xeb\xdf\xe0\xec\xe0\xe1\xec\xdf\xe1\xed\xe0\ \xe1\xed\xe0\xe1\xed\xe1\xe1\xed\xe1\xe1\xef\xe2\xe1\xef\xe3\xe1\ \xf1\xe5\xe2\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf2\ \xe6\xe2\xf2\xe6\xe2\xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\xe5\xf3\xe9\ \xe5\xf2\xe9\xe7\xf3\xea\xe7\xf2\xea\xe7\xf0\xe7\xe7\xf0\xe6\xe5\ \xee\xe3\xe4\xec\xe1\xe3\xeb\xe0\xe2\xe9\xde\xe0\xe5\xda\xdc\xe2\ \xd7\xd9\xdb\xd1\xd4\xd4\xcc\xd1\xd0\xc8\xce\xcd\xc6\xcd\xcc\xc5\ \xcd\xcd\xc6\xcd\xd0\xc8\xd0\xd3\xcb\xd1\xd5\xcc\xd2\xd8\xce\xd2\ \xdc\xd1\xd4\xe0\xd5\xd7\xe3\xd8\xda\xe8\xdc\xde\xec\xe1\xe3\xed\ \xe4\xe5\xef\xe7\xe8\xf0\xe8\xe8\xec\xe2\xe3\xd2\xc9\xcf\xc1\xb9\ \xc1\xc2\xb9\xc2\xc1\xb8\xc2\xc1\xb9\xc2\xc0\xb8\xc1\xc0\xb9\xc0\ \xc0\xb8\xc2\xbf\xb7\xc2\xbf\xb8\xc1\xc1\xb9\xc1\xc1\xba\xc0\xc2\ \xb9\xc0\xc0\xb9\xc0\xc0\xb9\xc1\xc0\xb8\xc2\xc1\xb9\xc3\xc1\xba\ \xc4\xbd\xb8\xc2\xa4\xa3\xb5\xad\xab\xbb\xb7\xb5\xc3\xb5\xb3\xc3\ \xa9\xa8\xbc\xad\xab\xbf\xb0\xae\xc2\xae\xac\xc2\xaf\xac\xc3\xaa\ \xa7\xc2\xa7\xa3\xc1\xa2\x9f\xc0\x9c\x97\xbf\x92\x8c\xbb\x9c\x96\ \xb8\x91\x91\xad\x67\x79\x97\x53\x6d\x8e\x5f\x73\x9b\x8b\x8b\xc2\ \x95\x8f\xc9\x91\x84\xc7\x81\x73\xc0\x6a\x60\xb1\x5f\x58\xa9\x63\ \x5d\xae\x6c\x67\xb7\x75\x70\xb9\x84\x7f\xbf\x90\x8c\xc4\xb1\xaf\ \xd2\xc6\xc6\xdb\xbf\xc4\xd5\xba\xbc\xcc\xb9\xb4\xc3\xb7\xb0\xbd\ \xb5\xae\xbc\xb4\xae\xbb\xb3\xad\xbb\xb3\xab\xbb\xb1\xaa\xb9\xad\ \xa7\xb6\xa1\x9b\xac\x89\x83\x9b\x77\x71\x8b\x76\x71\x89\x77\x73\ \x8c\x75\x72\x8d\x72\x73\x8f\x6d\x73\x90\x65\x6d\x8f\x57\x67\x8b\ \x3d\x57\x7b\x2f\x4e\x71\x30\x4c\x6f\x35\x4d\x70\x48\x54\x79\x50\ \x58\x7d\x4d\x55\x7b\x48\x50\x78\x55\x60\x84\x7a\x80\x9d\x9b\x9c\ \xae\xad\xaa\xb7\xb3\xae\xb9\xb1\xad\xb7\xae\xaa\xb3\xa5\xa5\xae\ \x9b\x9e\xa8\x87\x94\x9e\x75\x8b\x95\x6a\x86\x90\x62\x84\x8d\x5a\ \x82\x8b\x00\x00\x00\xec\xe3\xe6\xeb\xe3\xe5\xeb\xe1\xe3\xea\xdf\ \xe2\xe9\xdd\xdf\xe8\xdd\xde\xe7\xdc\xdd\xe7\xda\xdc\xe6\xda\xdc\ \xe5\xd9\xdb\xe5\xd8\xdb\xe4\xd9\xdb\xe4\xd8\xda\xe4\xd7\xda\xe4\ \xd7\xd9\xe4\xd9\xdb\xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xe9\xde\ \xe0\xeb\xe0\xe2\xec\xe1\xe3\xec\xe1\xe3\xee\xe2\xe4\xee\xe1\xe3\ \xef\xe4\xe4\xf0\xe4\xe4\xf0\xe5\xe4\xf2\xe6\xe4\xf3\xe8\xe4\xf3\ \xe8\xe4\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe4\xf4\xea\ \xe6\xf5\xea\xe6\xf4\xeb\xe7\xf4\xeb\xe7\xf4\xeb\xe7\xf3\xec\xe8\ \xf3\xec\xe9\xf3\xec\xe9\xf2\xea\xe8\xf1\xe9\xe8\xf0\xe6\xe6\xef\ \xe4\xe5\xee\xe4\xe4\xeb\xe0\xe2\xe8\xdc\xde\xe2\xd7\xd9\xdd\xd1\ \xd3\xd8\xce\xd1\xd4\xcc\xd0\xd2\xca\xcf\xd2\xca\xd0\xd2\xca\xd0\ \xd3\xcb\xd1\xd7\xcd\xd2\xd9\xcf\xd2\xdb\xd0\xd3\xde\xd2\xd4\xe2\ \xd5\xd7\xe5\xd8\xda\xea\xde\xdf\xed\xe2\xe3\xf0\xe7\xe7\xf1\xe9\ \xe9\xf1\xe9\xe9\xef\xe7\xe6\xdf\xd2\xd5\xc7\xbe\xc6\xc2\xba\xc4\ \xc1\xb9\xc3\xc1\xb9\xc3\xc2\xb9\xc3\xc2\xb9\xc3\xc2\xba\xc3\xc1\ \xb9\xc2\xc1\xb9\xc2\xc1\xb9\xc3\xc2\xba\xc2\xc2\xba\xc2\xc2\xbb\ \xc2\xc2\xba\xc3\xc2\xba\xc4\xc3\xbc\xc6\xc2\xbb\xc4\xbf\xba\xc4\ \xc1\xbe\xc7\xc4\xc0\xc9\xc7\xc2\xcb\xc5\xc1\xca\xbe\xbb\xc7\xc0\ \xbd\xc8\xc3\xbf\xcb\xc3\xbf\xcb\xc1\xbc\xca\xb6\xb3\xc7\xad\xa9\ \xc5\xa5\xa0\xc2\x9a\x94\xbf\x93\x8c\xbb\x8f\x8f\xb2\x6a\x7c\x9a\ \x5a\x78\x93\x5e\x77\x96\x76\x7c\xa6\x8e\x8c\xbb\x8d\x85\xba\x86\ \x7b\xb6\x7f\x74\xb5\x76\x6c\xb5\x7d\x74\xbc\x8a\x81\xc6\x98\x91\ \xcf\x9f\x97\xd0\xa5\x9f\xd0\xb1\xac\xd2\xc5\xc0\xd6\xcc\xc7\xd6\ \xca\xc3\xcd\xc6\xbc\xc5\xbd\xb4\xbd\xb8\xaf\xba\xb7\xaf\xba\xb5\ \xae\xbb\xb4\xad\xba\xb2\xab\xb7\xb0\xa9\xb6\xab\xa5\xb4\x98\x93\ \xa7\x72\x73\x90\x4e\x51\x71\x47\x48\x69\x47\x49\x6a\x47\x4b\x6e\ \x45\x4f\x74\x46\x56\x7b\x47\x5d\x82\x44\x61\x84\x3d\x5e\x7f\x35\ \x57\x78\x35\x55\x76\x39\x54\x75\x40\x54\x77\x47\x57\x7a\x4a\x5a\ \x7c\x4c\x60\x7f\x57\x6e\x88\x70\x82\x97\x87\x92\xa1\x8a\x96\xa0\ \x83\x94\x9d\x7b\x90\x9a\x70\x8b\x95\x65\x87\x91\x5b\x82\x8e\x53\ \x81\x8d\x4f\x81\x8c\x52\x83\x8f\x5a\x87\x94\x64\x8c\x99\x00\x00\ \x00\xeb\xe4\xe7\xeb\xe2\xe6\xea\xe2\xe5\xe9\xdf\xe2\xe8\xde\xe1\ \xe7\xde\xe0\xe6\xdb\xde\xe6\xdb\xdd\xe6\xda\xdd\xe5\xda\xdd\xe3\ \xd9\xdc\xe4\xd9\xdb\xe3\xd8\xdb\xe3\xd7\xda\xe3\xd8\xda\xe4\xd9\ \xdc\xe4\xda\xdc\xe6\xdc\xdf\xe7\xdd\xe0\xe9\xde\xe1\xeb\xe0\xe3\ \xec\xe1\xe3\xed\xe2\xe4\xed\xe2\xe4\xee\xe2\xe4\xef\xe5\xe5\xef\ \xe5\xe5\xf0\xe6\xe4\xf1\xe7\xe4\xf2\xe8\xe5\xf3\xe9\xe5\xf4\xea\ \xe6\xf5\xea\xe6\xf5\xeb\xe7\xf5\xeb\xe7\xf4\xeb\xe7\xf5\xec\xe8\ \xf5\xec\xe8\xf4\xec\xe8\xf4\xee\xe9\xf4\xee\xe9\xf4\xed\xe9\xf3\ \xec\xe9\xf2\xeb\xe8\xf1\xea\xe8\xf0\xe9\xe8\xef\xe7\xe7\xef\xe6\ \xe6\xec\xe1\xe1\xe9\xdd\xdd\xe4\xd7\xd8\xde\xd2\xd3\xda\xce\xd1\ \xd8\xcc\xcf\xd7\xcc\xcf\xd6\xcd\xd0\xd6\xcd\xd1\xd8\xce\xd2\xda\ \xcf\xd2\xdc\xd0\xd2\xdf\xd2\xd3\xe1\xd3\xd5\xe3\xd6\xd7\xe7\xd9\ \xda\xeb\xde\xde\xef\xe4\xe3\xf1\xe9\xe8\xf2\xea\xe8\xf2\xeb\xe9\ \xf2\xeb\xe8\xed\xe3\xe2\xdd\xd1\xd3\xcc\xc5\xcb\xc7\xc1\xc9\xc4\ \xbd\xc6\xc2\xbb\xc4\xc2\xba\xc4\xc3\xba\xc3\xc2\xbb\xc3\xc2\xbb\ \xc2\xc1\xb9\xc4\xc2\xba\xc3\xc1\xba\xc3\xc3\xbb\xc3\xc3\xbb\xc5\ \xc4\xbc\xc6\xc2\xbd\xc6\xb5\xb3\xbf\x98\x9b\xb1\xb6\xb3\xc1\xc4\ \xc0\xca\xc5\xc0\xca\xc5\xc0\xca\xc5\xc0\xca\xc5\xc0\xcb\xc3\xbe\ \xca\xc2\xbd\xca\xbf\xbb\xca\xba\xb5\xc9\xb4\xb1\xc9\xb3\xaf\xca\ \xb5\xb1\xce\xb2\xae\xc8\xa3\xa1\xb9\x88\x90\xaf\x77\x87\xa9\x6b\ \x7a\x9c\x61\x65\x8f\x5c\x5e\x89\x5b\x5d\x88\x54\x5a\x85\x4f\x58\ \x82\x61\x62\x93\x85\x80\xac\xa2\x9c\xbc\xbc\xb4\xc9\xc8\xbd\xce\ \xce\xc3\xcf\xd0\xc4\xcc\xd1\xc5\xcb\xd0\xc4\xc8\xcf\xc3\xc6\xca\ \xbc\xbf\xbf\xb3\xb9\xb6\xad\xb7\xb4\xad\xb8\xb4\xad\xb9\xb3\xac\ \xb9\xb0\xaa\xb7\xaf\xa9\xb6\xac\xa7\xb4\x9f\x9d\xae\x84\x85\x9e\ \x5e\x66\x86\x46\x52\x76\x41\x4f\x73\x41\x54\x76\x41\x5a\x7c\x42\ \x5e\x7f\x46\x67\x84\x47\x6e\x88\x44\x6f\x87\x40\x6c\x83\x41\x6b\ \x81\x42\x6a\x80\x43\x69\x80\x46\x6b\x83\x46\x6e\x84\x47\x70\x86\ \x4a\x74\x88\x52\x79\x8b\x56\x7d\x8e\x54\x7d\x8c\x52\x7d\x8d\x54\ \x7f\x8f\x5d\x84\x96\x69\x8c\x9d\x73\x92\xa2\x80\x97\xa8\x8a\x9e\ \xad\x95\xa3\xb1\xa0\xa8\xb6\xa7\xac\xb8\x00\x00\x00\xea\xe4\xe9\ \xea\xe2\xe7\xe9\xe2\xe6\xe8\xdf\xe4\xe7\xdf\xe3\xe7\xde\xe1\xe6\ \xdc\xe0\xe5\xdc\xdf\xe5\xdc\xde\xe3\xda\xde\xe3\xd9\xdc\xe3\xd9\ \xdc\xe3\xd8\xdb\xe2\xd8\xdb\xe2\xd8\xdb\xe2\xd9\xdc\xe3\xda\xde\ \xe5\xdc\xe0\xe7\xde\xe0\xe7\xde\xe1\xe9\xe0\xe3\xeb\xe1\xe4\xed\ \xe2\xe4\xee\xe3\xe5\xef\xe4\xe5\xf0\xe6\xe6\xf0\xe6\xe6\xf0\xe7\ \xe6\xf1\xe8\xe5\xf1\xe8\xe6\xf2\xe9\xe5\xf2\xea\xe6\xf4\xea\xe6\ \xf5\xeb\xe6\xf4\xeb\xe6\xf4\xeb\xe7\xf6\xed\xe9\xf4\xed\xe8\xf4\ \xee\xe9\xf4\xee\xe9\xf3\xed\xe8\xf4\xec\xe8\xf4\xeb\xe8\xf2\xe9\ \xe7\xf1\xe9\xe6\xf1\xe8\xe6\xf0\xe7\xe6\xee\xe4\xe4\xec\xe0\xe1\ \xe9\xdd\xdd\xe4\xd8\xd8\xdf\xd3\xd3\xdd\xd0\xd1\xda\xcd\xcf\xda\ \xcd\xd0\xd9\xcd\xd0\xd9\xcd\xd1\xdb\xcf\xd1\xdd\xd1\xd3\xdf\xd1\ \xd3\xe1\xd3\xd4\xe2\xd4\xd5\xe6\xd7\xd7\xe9\xdc\xda\xed\xe0\xde\ \xf0\xe6\xe3\xf2\xea\xe7\xf2\xec\xe9\xf2\xec\xe9\xf2\xec\xe9\xf2\ \xec\xe9\xee\xe3\xe0\xe0\xd4\xd5\xd2\xca\xce\xcb\xc5\xcb\xc2\xba\ \xc4\xc2\xba\xc3\xc4\xbc\xc5\xc4\xbb\xc5\xc2\xbb\xc3\xc2\xbb\xc4\ \xc2\xbb\xc4\xc2\xba\xc3\xc2\xbb\xc4\xc3\xbb\xc5\xc3\xbc\xc6\xc3\ \xbe\xc7\xbc\xb9\xc4\xa6\xa9\xbd\xb8\xb7\xc4\xc5\xc1\xcb\xc5\xc1\ \xcb\xc6\xc1\xcc\xc7\xc2\xcd\xc7\xc3\xce\xc7\xc2\xcf\xc7\xc2\xd1\ \xc8\xc3\xd2\xc9\xc4\xd3\xcc\xc7\xd5\xce\xca\xd9\xcf\xcb\xda\xbe\ \xb8\xc8\xad\xa9\xbc\xa7\xa3\xbf\x89\x85\xb5\x66\x68\x97\x42\x4a\ \x76\x38\x44\x70\x3e\x4e\x76\x3d\x4f\x76\x3b\x4d\x73\x51\x5b\x7f\ \x78\x79\x95\xa2\x9c\xad\xbc\xb1\xb8\xc6\xb9\xbd\xc3\xb5\xb9\xb5\ \xa8\xaf\xaa\x9e\xa7\xa2\x99\xa3\x9f\x96\xa0\x9c\x96\x9f\x98\x93\ \x9d\x95\x93\x9d\x9c\x9a\xa6\xa7\xa3\xaf\xac\xa6\xb3\xad\xa8\xb4\ \xad\xa6\xb4\xab\xa7\xb3\xa7\xa3\xb1\x99\x99\xab\x81\x89\x9f\x65\ \x77\x93\x57\x70\x8b\x51\x6f\x88\x4c\x71\x88\x48\x71\x87\x46\x73\ \x87\x46\x74\x88\x43\x73\x87\x41\x71\x85\x40\x71\x86\x42\x71\x85\ \x43\x72\x87\x47\x75\x8c\x49\x77\x8f\x4e\x79\x91\x51\x7b\x92\x55\ \x7b\x92\x55\x7b\x90\x54\x7a\x8d\x51\x79\x8a\x5c\x7d\x8e\x7b\x8f\ \xa0\x9b\xa1\xb1\xaa\xac\xb8\xb1\xb0\xbb\xb7\xb3\xbe\xba\xb5\xc0\ \xbe\xb7\xc2\xbe\xb6\xc1\x00\x00\x00\xea\xe3\xea\xea\xe3\xe9\xe9\ \xe2\xe7\xe7\xe1\xe6\xe6\xe0\xe5\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\ \xe2\xe5\xdc\xe1\xe3\xdb\xe0\xe2\xda\xdf\xe2\xd8\xde\xe1\xd9\xde\ \xe1\xd8\xde\xe1\xd8\xdd\xe2\xd9\xde\xe3\xdb\xe0\xe5\xdd\xe2\xe6\ \xde\xe2\xe7\xdf\xe3\xe9\xe1\xe4\xea\xe2\xe5\xeb\xe2\xe5\xed\xe4\ \xe6\xee\xe5\xe7\xef\xe7\xe7\xf0\xe7\xe7\xf2\xe8\xe7\xf2\xe9\xe7\ \xf2\xe9\xe6\xf3\xea\xe5\xf3\xea\xe6\xf5\xea\xe6\xf5\xe9\xe6\xf5\ \xea\xe6\xf4\xeb\xe7\xf5\xec\xe8\xf5\xee\xe9\xf4\xee\xe9\xf4\xed\ \xe9\xf5\xec\xe8\xf4\xeb\xe7\xf4\xeb\xe6\xf2\xe9\xe6\xf1\xe8\xe5\ \xf0\xe6\xe4\xef\xe5\xe2\xef\xe3\xe0\xeb\xdf\xde\xe9\xdb\xdc\xe4\ \xd7\xd8\xe1\xd3\xd4\xde\xd0\xd1\xdc\xce\xcf\xdb\xcd\xce\xdb\xcd\ \xce\xdb\xcf\xcf\xdc\xcf\xd1\xdf\xd2\xd2\xe1\xd3\xd3\xe2\xd4\xd4\ \xe5\xd7\xd5\xe8\xd9\xd7\xeb\xdc\xda\xee\xe1\xdf\xf1\xe6\xe4\xf3\ \xec\xe8\xf3\xed\xe8\xf3\xee\xe9\xf3\xee\xeb\xf2\xec\xe9\xeb\xde\ \xdc\xd7\xca\xcb\xca\xc0\xc6\xc8\xc1\xc7\xc4\xbe\xc6\xbe\xb8\xc1\ \xc2\xba\xc4\xc5\xbd\xc7\xc4\xbc\xc6\xc4\xbc\xc5\xc3\xbb\xc5\xc3\ \xbb\xc5\xc3\xbb\xc5\xc4\xbc\xc6\xc6\xbd\xc7\xc6\xbf\xc8\xc7\xc1\ \xca\xc8\xc2\xcc\xc9\xc3\xcd\xca\xc5\xce\xcc\xc7\xcf\xce\xc9\xd2\ \xd0\xcb\xd3\xd2\xcd\xd5\xd3\xcf\xd7\xd4\xcf\xd8\xd5\xcf\xd9\xd5\ \xd0\xda\xd7\xd1\xdc\xd9\xd2\xde\xce\xc8\xd3\xb5\xb0\xbf\xac\xaa\ \xbf\xa3\x9c\xc1\x8d\x84\xb7\x6e\x6d\x99\x46\x4d\x7a\x33\x42\x6e\ \x34\x48\x71\x35\x4b\x72\x34\x4b\x71\x3e\x50\x76\x59\x61\x83\x79\ \x77\x92\x8d\x83\x98\x8c\x84\x99\x72\x70\x8a\x5b\x62\x81\x52\x5f\ \x7d\x4e\x5e\x78\x4d\x60\x74\x4c\x61\x71\x4d\x63\x70\x53\x69\x73\ \x66\x77\x81\x7b\x85\x90\x8b\x8f\x9a\x91\x94\x9e\x90\x94\x9e\x8d\ \x92\x9d\x8a\x90\x9c\x80\x8b\x9a\x72\x82\x95\x5f\x79\x90\x53\x74\ \x8b\x4c\x72\x88\x46\x71\x87\x44\x73\x87\x45\x74\x8a\x45\x74\x8a\ \x45\x74\x8b\x48\x75\x8d\x4e\x77\x92\x53\x78\x95\x54\x77\x96\x54\ \x76\x94\x56\x79\x94\x59\x7a\x95\x56\x77\x8f\x53\x72\x88\x4f\x6c\ \x7f\x4a\x69\x77\x44\x65\x71\x4e\x6a\x77\x74\x82\x90\x98\x9c\xa7\ \xac\xab\xb5\xb6\xb2\xbb\xb9\xb3\xbc\xbb\xb5\xbf\xbd\xb5\xbf\xbd\ \xb5\xbf\x00\x00\x00\xe9\xe4\xea\xe9\xe3\xea\xe8\xe2\xe9\xe8\xe1\ \xe7\xe6\xe0\xe6\xe6\xe0\xe5\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\xe2\ \xe3\xdc\xe1\xe1\xda\xdf\xe1\xda\xdf\xe1\xd9\xde\xe0\xd9\xdd\xe1\ \xd9\xde\xe2\xda\xdf\xe3\xdb\xe1\xe4\xdd\xe2\xe5\xde\xe3\xe6\xdf\ \xe4\xe8\xe1\xe5\xea\xe2\xe5\xeb\xe2\xe5\xed\xe4\xe6\xee\xe6\xe7\ \xef\xe7\xe7\xf1\xe8\xe8\xf2\xe8\xe8\xf3\xea\xe7\xf3\xea\xe7\xf3\ \xe9\xe6\xf3\xea\xe5\xf4\xea\xe6\xf4\xe9\xe5\xf5\xea\xe6\xf4\xea\ \xe6\xf3\xea\xe6\xf4\xeb\xe7\xf4\xec\xe8\xf4\xec\xe8\xf4\xeb\xe7\ \xf4\xeb\xe7\xf3\xea\xe6\xf2\xe9\xe6\xf1\xe7\xe5\xf1\xe5\xe3\xf0\ \xe4\xe2\xee\xe2\xe0\xec\xdf\xdd\xe8\xdb\xda\xe5\xd7\xd7\xe1\xd3\ \xd4\xdf\xd1\xd1\xde\xcf\xcf\xdc\xce\xce\xdc\xce\xce\xdc\xce\xce\ \xde\xcf\xd0\xe0\xd2\xd2\xe3\xd4\xd3\xe5\xd6\xd4\xe7\xd7\xd5\xea\ \xda\xd8\xec\xdd\xdb\xef\xe3\xdf\xf2\xe7\xe3\xf4\xeb\xe7\xf4\xed\ \xe8\xf4\xee\xe9\xf4\xef\xea\xf0\xe6\xe2\xde\xce\xce\xc8\xba\xc0\ \xc1\xb6\xbd\xc2\xb9\xc0\xc4\xbd\xc4\xbf\xb8\xc2\xc0\xb9\xc3\xc6\ \xbe\xc7\xc5\xbd\xc7\xc6\xbe\xc8\xc4\xbc\xc6\xc4\xbc\xc6\xc4\xbc\ \xc6\xc5\xbd\xc7\xc6\xbf\xc9\xc8\xbf\xca\xc9\xc1\xcb\xcb\xc3\xcd\ \xcc\xc4\xce\xcc\xc7\xd0\xcf\xca\xd3\xd2\xcd\xd5\xd5\xd0\xd7\xd7\ \xd3\xd9\xd9\xd4\xdb\xda\xd6\xdd\xda\xd5\xde\xda\xd6\xdf\xd8\xd2\ \xdc\xce\xc8\xd2\xbe\xb7\xc3\xb4\xb0\xc0\xb7\xb4\xcb\xa9\xa3\xc7\ \x99\x94\xb8\x7f\x7f\xa1\x58\x5c\x87\x37\x46\x73\x32\x47\x70\x30\ \x47\x70\x32\x4a\x71\x35\x4a\x73\x39\x4a\x74\x41\x4b\x77\x45\x4b\ \x78\x3b\x48\x73\x37\x4a\x72\x38\x4d\x73\x36\x4f\x70\x37\x50\x6b\ \x36\x50\x67\x32\x4f\x60\x2c\x4f\x5c\x2c\x53\x5d\x34\x5a\x63\x43\ \x64\x6e\x4e\x6a\x76\x54\x6e\x7a\x53\x6e\x7c\x51\x6e\x7d\x50\x6f\ \x80\x4f\x70\x83\x4d\x71\x85\x4b\x72\x89\x4a\x72\x8b\x4c\x75\x8e\ \x53\x79\x93\x59\x7c\x98\x5a\x7b\x9a\x58\x7a\x99\x57\x77\x98\x59\ \x75\x98\x5b\x75\x98\x57\x72\x95\x50\x6b\x8e\x4a\x67\x89\x4a\x68\ \x88\x4b\x6a\x86\x48\x67\x7f\x41\x60\x75\x3a\x5b\x6b\x35\x59\x65\ \x32\x59\x64\x36\x5c\x68\x4f\x69\x77\x74\x81\x8e\x8e\x92\x9c\x9b\ \x9b\xa5\xa2\x9f\xaa\xa5\xa1\xab\xa4\xa1\xab\xa2\x9f\xa9\x00\x00\ \x00\xe9\xe5\xeb\xe8\xe4\xea\xe8\xe3\xe9\xe7\xe1\xe7\xe7\xe0\xe6\ \xe6\xdf\xe6\xe6\xdf\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe1\xe1\ \xda\xe1\xe1\xda\xe0\xe1\xda\xdf\xe0\xd9\xde\xe2\xdb\xe0\xe2\xdb\ \xe0\xe3\xdc\xe1\xe4\xdd\xe2\xe5\xde\xe3\xe6\xdf\xe4\xe8\xe1\xe6\ \xe8\xe2\xe6\xeb\xe2\xe6\xed\xe4\xe7\xed\xe5\xe6\xee\xe6\xe7\xf0\ \xe7\xe7\xf1\xe9\xe9\xf2\xea\xe8\xf4\xeb\xe8\xf2\xe9\xe6\xf3\xe9\ \xe5\xf3\xe9\xe5\xf5\xea\xe6\xf4\xe9\xe5\xf4\xea\xe6\xf4\xeb\xe7\ \xf3\xea\xe6\xf3\xea\xe6\xf4\xea\xe6\xf3\xea\xe6\xf3\xea\xe5\xf2\ \xe9\xe6\xf1\xe8\xe5\xf1\xe8\xe5\xf1\xe7\xe4\xef\xe4\xe2\xee\xe2\ \xe0\xeb\xde\xdc\xe8\xdb\xd9\xe4\xd7\xd5\xe2\xd4\xd2\xe0\xd2\xd0\ \xdf\xd0\xce\xde\xcf\xcd\xdd\xce\xcd\xdd\xce\xcd\xdf\xd0\xce\xe0\ \xd1\xcf\xe4\xd3\xd2\xe6\xd6\xd3\xe8\xd7\xd5\xeb\xda\xd7\xed\xde\ \xdb\xf0\xe4\xe0\xf4\xe9\xe3\xf4\xeb\xe5\xf4\xed\xe7\xf4\xee\xe8\ \xf5\xee\xe8\xec\xdd\xda\xd2\xc3\xc6\xc2\xb5\xbd\xc0\xb5\xbd\xc0\ \xb5\xbd\xc0\xb7\xc1\xbd\xb6\xc0\xbd\xb7\xc2\xc4\xbe\xc7\xc6\xbf\ \xc7\xc6\xbe\xc8\xc6\xbe\xc8\xc6\xbe\xc8\xc6\xbe\xc8\xc5\xc0\xc9\ \xc6\xc1\xca\xc9\xc1\xcb\xcb\xc3\xcd\xcd\xc5\xcf\xcd\xc7\xd0\xd0\ \xcb\xd2\xd3\xcf\xd5\xd7\xd3\xd9\xd9\xd5\xdb\xdb\xd7\xdd\xdc\xd8\ \xde\xdd\xd8\xdf\xdc\xd8\xdf\xd6\xcf\xd8\xc7\xc1\xcb\xbb\xb4\xc1\ \xb8\xb2\xc0\xc2\xbf\xce\xbc\xb8\xd0\xad\xa8\xc8\x9d\x9b\xb6\x88\ \x89\xa4\x6b\x6d\x94\x47\x51\x80\x33\x46\x72\x2e\x44\x6e\x30\x47\ \x70\x34\x47\x73\x35\x46\x73\x31\x40\x70\x2e\x3d\x6d\x2f\x3f\x6e\ \x33\x45\x70\x33\x49\x6f\x31\x49\x6c\x31\x4a\x66\x30\x4a\x61\x2c\ \x4a\x5b\x29\x4c\x59\x28\x4f\x5a\x2a\x55\x60\x2e\x59\x67\x37\x5e\ \x6e\x3b\x61\x73\x40\x63\x78\x48\x69\x80\x4e\x6e\x89\x59\x75\x92\ \x66\x7d\x9b\x6e\x83\xa0\x75\x88\xa4\x7b\x8c\xa8\x7f\x8d\xa9\x76\ \x85\xa5\x64\x79\x9e\x59\x6e\x96\x52\x69\x93\x51\x67\x92\x51\x64\ \x90\x4d\x60\x8c\x47\x5d\x86\x43\x5d\x84\x43\x60\x83\x44\x63\x82\ \x43\x62\x7d\x3f\x5f\x77\x3b\x5b\x6f\x39\x5b\x6c\x37\x5b\x6b\x3a\ \x5d\x6f\x3f\x60\x72\x4b\x65\x78\x5a\x6f\x80\x66\x76\x86\x6c\x79\ \x8a\x6e\x7a\x8c\x6c\x79\x8d\x6a\x76\x8b\x00\x00\x00\xe9\xe5\xeb\ \xe9\xe5\xeb\xe8\xe4\xea\xe5\xe1\xe7\xe5\xe0\xe6\xe6\xe0\xe7\xe5\ \xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe0\xd9\xe0\xe0\xd9\ \xdf\xe0\xd9\xe0\xe2\xdb\xe0\xe1\xda\xe0\xe2\xdb\xe0\xe3\xdc\xe2\ \xe5\xde\xe3\xe6\xdf\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xe9\xe2\xe7\xeb\ \xe2\xe6\xed\xe4\xe7\xed\xe5\xe6\xee\xe6\xe7\xf0\xe8\xe8\xf1\xe9\ \xe9\xf1\xea\xe8\xf3\xea\xe7\xf2\xe9\xe6\xf3\xe8\xe5\xf3\xe8\xe4\ \xf3\xe8\xe4\xf5\xea\xe6\xf4\xe9\xe5\xf3\xe9\xe5\xf2\xe9\xe7\xf2\ \xea\xe6\xf2\xe9\xe5\xf3\xea\xe6\xf3\xea\xe6\xf3\xea\xe7\xf3\xea\ \xe7\xf2\xe9\xe6\xf1\xe8\xe5\xf1\xe6\xe4\xee\xe2\xe0\xeb\xde\xdc\ \xe8\xdb\xd9\xe5\xd8\xd6\xe2\xd4\xd2\xe2\xd3\xd1\xdf\xd0\xce\xe0\ \xcd\xcc\xdf\xce\xcb\xdf\xce\xcc\xe0\xcf\xcd\xe1\xd0\xcf\xe4\xd3\ \xd0\xe6\xd5\xd2\xe8\xd7\xd4\xec\xdb\xd7\xef\xdf\xda\xf1\xe5\xdf\ \xf3\xe9\xe2\xf6\xec\xe5\xf6\xee\xe7\xf6\xef\xe8\xf5\xed\xe6\xe7\ \xd6\xd3\xcb\xbd\xc2\xbf\xb4\xbc\xbe\xb3\xbb\xbe\xb3\xbb\xc2\xb9\ \xc2\xc3\xbc\xc6\xbc\xb6\xc1\xbd\xb9\xc4\xc5\xbe\xc8\xc7\xbf\xc8\ \xc8\xc0\xca\xc9\xc1\xcb\xc9\xc2\xcc\xc9\xc3\xcc\xcb\xc4\xcd\xcd\ \xc5\xcf\xcf\xc7\xd1\xd0\xc8\xd1\xd2\xcc\xd3\xd4\xd0\xd6\xd7\xd3\ \xd9\xd9\xd5\xdb\xdc\xd7\xdd\xdc\xd8\xde\xdd\xd9\xdf\xdb\xd7\xdd\ \xd2\xcd\xd3\xc3\xbb\xc6\xb9\xb2\xbf\xba\xb3\xc0\xc5\xc1\xce\xc8\ \xc4\xd4\xb7\xb3\xd0\xae\xaa\xc5\x9c\x9a\xb0\x8d\x8e\xa4\x72\x76\ \x99\x4e\x57\x84\x36\x45\x72\x2d\x40\x6c\x2e\x41\x6d\x30\x42\x6f\ \x31\x41\x71\x2e\x3c\x6d\x2a\x38\x6a\x2d\x3d\x6d\x30\x42\x6e\x30\ \x44\x6d\x30\x45\x69\x31\x48\x66\x32\x49\x62\x30\x4b\x5f\x2d\x4c\ \x5e\x30\x53\x64\x37\x5d\x72\x44\x66\x81\x4f\x6b\x8b\x5a\x71\x93\ \x69\x7b\x9b\x78\x83\xa3\x84\x8c\xa8\x8e\x94\xad\x96\x9a\xb1\x9b\ \x9d\xb2\x9c\x9e\xb1\x9b\x9e\xb1\x91\x97\xad\x7a\x83\xa4\x5d\x6d\ \x99\x50\x62\x92\x4d\x61\x91\x4d\x61\x91\x4f\x5f\x8f\x4d\x5d\x8c\ \x4d\x5c\x8b\x50\x60\x8b\x51\x65\x8c\x51\x69\x8b\x4f\x69\x88\x4b\ \x66\x82\x49\x63\x7d\x49\x63\x7d\x4b\x64\x80\x50\x67\x84\x54\x6a\ \x85\x57\x6d\x86\x57\x6c\x84\x57\x6c\x84\x59\x6c\x88\x5d\x6e\x8b\ \x63\x73\x8f\x6e\x7a\x95\x00\x00\x00\xe9\xe5\xeb\xe9\xe5\xeb\xe7\ \xe3\xe9\xe5\xe1\xe7\xe4\xe0\xe6\xe3\xdf\xe5\xe4\xe0\xe6\xe4\xde\ \xe4\xe4\xdd\xe4\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe1\xe1\xda\xe1\ \xe2\xda\xe1\xe2\xdb\xe1\xe2\xda\xe2\xe3\xdb\xe3\xe4\xdd\xe3\xe5\ \xde\xe3\xe6\xdf\xe4\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe2\xe7\xed\xe4\ \xe6\xed\xe4\xe6\xee\xe6\xe7\xef\xe7\xe7\xf1\xe9\xe9\xf2\xe9\xe8\ \xf2\xe9\xe6\xf2\xe9\xe6\xf2\xe7\xe5\xf2\xe7\xe4\xf2\xe7\xe3\xf3\ \xe7\xe4\xf3\xe8\xe5\xf3\xe8\xe5\xf3\xe9\xe6\xf2\xe9\xe6\xf2\xe9\ \xe6\xf3\xea\xe6\xf2\xe9\xe6\xf3\xea\xe6\xf2\xe9\xe6\xf1\xe8\xe5\ \xf1\xe8\xe5\xf1\xe7\xe4\xee\xe2\xe0\xeb\xde\xdc\xe8\xdb\xd9\xe4\ \xd7\xd5\xe2\xd4\xd2\xe1\xd2\xd0\xe0\xd0\xce\xe0\xce\xcc\xe0\xce\ \xcb\xdf\xce\xcb\xe0\xcf\xcc\xe2\xd1\xce\xe5\xd2\xcf\xe6\xd4\xd0\ \xe9\xd6\xd3\xec\xda\xd5\xef\xe0\xda\xf1\xe5\xdf\xf4\xe9\xe3\xf5\ \xed\xe6\xf6\xef\xe8\xf6\xf0\xe9\xf4\xe9\xe3\xe2\xd1\xcf\xc7\xba\ \xc0\xbf\xb4\xbc\xbd\xb2\xba\xbd\xb2\xbb\xc1\xb9\xc0\xc6\xbf\xc7\ \xc2\xbc\xc5\xbe\xb9\xc4\xc2\xbd\xc7\xc6\xbf\xc8\xc8\xc0\xca\xc9\ \xc1\xcb\xcb\xc3\xcd\xcc\xc5\xce\xcd\xc6\xcf\xce\xc8\xd0\xd0\xc9\ \xd1\xd1\xcc\xd2\xd4\xcf\xd6\xd8\xd4\xda\xda\xd6\xdc\xda\xd6\xdc\ \xdc\xd8\xde\xdc\xd8\xde\xd7\xd1\xd8\xcb\xc3\xcd\xbf\xb8\xc3\xb9\ \xb2\xc0\xb9\xb2\xc0\xbe\xb9\xc7\xcb\xc7\xd7\xbd\xb8\xd2\xad\xa7\ \xc5\xa5\xa2\xb6\x9b\x99\xab\x8b\x8a\xa2\x6c\x6d\x93\x4a\x50\x7e\ \x35\x43\x71\x2f\x3f\x6d\x2d\x3e\x6c\x30\x3f\x6f\x31\x3e\x71\x2e\ \x3a\x6e\x2e\x3a\x6d\x2f\x3d\x6f\x33\x43\x71\x36\x47\x73\x39\x4a\ \x72\x3d\x4e\x70\x3f\x51\x70\x40\x54\x71\x42\x59\x75\x49\x63\x80\ \x57\x70\x91\x6a\x7c\x9f\x7f\x8a\xaa\x8f\x94\xb0\x9c\x9d\xb3\xa5\ \xa4\xb5\xa7\xa5\xb5\xa9\xa7\xb5\xaa\xa8\xb5\xaa\xa7\xb5\xa7\xa6\ \xb4\xa2\xa0\xb1\x8d\x92\xa9\x70\x7c\x9c\x58\x6a\x95\x52\x66\x96\ \x53\x67\x98\x54\x65\x97\x54\x61\x94\x53\x5d\x8f\x53\x5b\x8c\x5c\ \x63\x91\x6f\x76\x9d\x7b\x82\xa4\x78\x81\xa1\x74\x7d\x9d\x72\x7b\ \x9a\x74\x7c\x9b\x77\x7e\x9d\x7e\x84\xa2\x85\x89\xa5\x8a\x8c\xa6\ \x8a\x8c\xa5\x8b\x8d\xa6\x8e\x90\xa8\x94\x94\xac\x9a\x99\xae\xa2\ \x9e\xb1\x00\x00\x00\xea\xe6\xec\xe9\xe5\xeb\xe7\xe3\xe9\xe5\xe2\ \xe8\xe4\xe0\xe6\xe3\xdf\xe5\xe2\xde\xe4\xe4\xdd\xe4\xe2\xdc\xe3\ \xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe1\xd9\xe1\xe1\ \xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\ \xe4\xe8\xe1\xe6\xea\xe2\xe8\xeb\xe2\xe6\xed\xe4\xe7\xed\xe4\xe7\ \xef\xe6\xe7\xf0\xe7\xe7\xf2\xe8\xe8\xf2\xe8\xe8\xf1\xe8\xe6\xf1\ \xe8\xe5\xf2\xe6\xe4\xf2\xe6\xe4\xf1\xe5\xe3\xf1\xe5\xe3\xf1\xe5\ \xe3\xf2\xe6\xe4\xf2\xe7\xe4\xf2\xe7\xe5\xf2\xe7\xe5\xf2\xe7\xe4\ \xf2\xe8\xe5\xf2\xe9\xe6\xf1\xe8\xe5\xf1\xe8\xe5\xf1\xe7\xe5\xf0\ \xe5\xe3\xee\xe2\xe0\xeb\xde\xdc\xe8\xdb\xd9\xe5\xd8\xd6\xe1\xd3\ \xd1\xe1\xd2\xd0\xe0\xd0\xce\xe0\xce\xcb\xdf\xce\xca\xe0\xcd\xcb\ \xe1\xcf\xcb\xe3\xcf\xcb\xe5\xd2\xcd\xe6\xd3\xce\xea\xd6\xd1\xed\ \xda\xd5\xef\xe1\xda\xf2\xe6\xdf\xf5\xeb\xe3\xf5\xed\xe5\xf5\xf0\ \xe8\xf6\xf1\xea\xf2\xe6\xdf\xdd\xcc\xcb\xc4\xb8\xbe\xbf\xb5\xbc\ \xbe\xb3\xbb\xbd\xb3\xbb\xbf\xb5\xbd\xc5\xbd\xc4\xc6\xbf\xc7\xc1\ \xbb\xc5\xc2\xbc\xc6\xc4\xbf\xc9\xc8\xc1\xcb\xca\xc2\xcc\xcc\xc5\ \xce\xce\xc6\xd0\xcf\xc8\xd0\xd0\xc9\xd3\xd2\xcd\xd2\xd4\xd0\xd6\ \xd7\xd3\xd9\xd9\xd6\xdc\xda\xd7\xdd\xdc\xd8\xde\xdb\xd6\xdd\xd1\ \xcb\xd1\xc3\xbc\xc6\xbc\xb5\xc2\xba\xb3\xc0\xba\xb4\xc1\xb8\xb2\ \xc1\xc2\xbf\xcf\xc8\xc6\xd9\xb9\xb4\xcc\xab\xa4\xb9\xa0\x9c\xad\ \x93\x90\xa5\x78\x75\x96\x54\x55\x82\x3c\x44\x74\x35\x43\x71\x32\ \x41\x6f\x31\x40\x6f\x34\x40\x73\x37\x41\x77\x39\x3e\x77\x39\x3f\ \x77\x3a\x42\x78\x41\x4a\x7c\x46\x50\x80\x4b\x53\x82\x4f\x58\x82\ \x54\x5e\x84\x58\x62\x89\x5f\x6d\x91\x6d\x7a\x9d\x80\x8a\xa9\x95\ \x98\xb2\xa4\xa4\xb6\xad\xaa\xb8\xb0\xac\xb8\xb1\xac\xb8\xb0\xab\ \xb7\xae\xaa\xb6\xad\xa9\xb6\xac\xa9\xb5\xa9\xa5\xb4\x9a\x9b\xac\ \x7e\x89\x9f\x5e\x73\x94\x51\x69\x92\x54\x69\x98\x5b\x6d\x9e\x5d\ \x69\x9d\x58\x61\x96\x54\x5a\x8e\x4f\x54\x87\x63\x64\x91\x88\x87\ \xa6\x9f\x9b\xb2\xa1\x9e\xb2\x9f\x9b\xb1\x9f\x9b\xb0\x9e\x9b\xb0\ \xa1\x9c\xb1\xa4\x9f\xb3\xa6\xa1\xb3\xa8\xa3\xb3\xa9\xa3\xb2\xad\ \xa6\xb4\xb1\xaa\xb7\xb4\xac\xb9\xb6\xae\xba\xb7\xae\xb9\x00\x00\ \x00\xea\xe6\xec\xe9\xe5\xeb\xe7\xe3\xe9\xe5\xe0\xe6\xe4\xde\xe5\ \xe2\xde\xe4\xe0\xdd\xe3\xe3\xdb\xe2\xe3\xdc\xe3\xe2\xdb\xe2\xe0\ \xd9\xe0\xdf\xd8\xdf\xdf\xd7\xdf\xe1\xda\xe1\xe2\xdb\xe2\xe1\xda\ \xe1\xe2\xdb\xe2\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\xe4\xe9\xe2\xe7\ \xe9\xe3\xe8\xeb\xe2\xe6\xed\xe4\xe6\xed\xe3\xe5\xee\xe3\xe5\xef\ \xe5\xe6\xf1\xe7\xe6\xf0\xe6\xe6\xf0\xe7\xe7\xf1\xe5\xe5\xf1\xe5\ \xe5\xf1\xe5\xe3\xef\xe3\xe1\xef\xe3\xe1\xef\xe3\xe2\xef\xe3\xe3\ \xf1\xe5\xe3\xf0\xe4\xe2\xf0\xe4\xe2\xf1\xe6\xe4\xf0\xe5\xe3\xf1\ \xe6\xe3\xf0\xe6\xe3\xef\xe7\xe3\xf1\xe6\xe4\xf1\xe5\xe3\xed\xe1\ \xdf\xea\xdd\xdb\xe7\xda\xd8\xe4\xd7\xd5\xe2\xd4\xd1\xe0\xd1\xcf\ \xe0\xcf\xcd\xdf\xce\xcb\xe0\xcd\xcb\xe1\xcd\xc9\xe1\xce\xc9\xe3\ \xcf\xca\xe4\xd0\xcb\xe7\xd3\xce\xe9\xd6\xd1\xed\xdb\xd5\xf0\xe2\ \xdb\xf3\xe7\xdf\xf5\xec\xe3\xf7\xee\xe5\xf6\xf1\xe9\xf6\xf1\xe9\ \xf1\xe2\xdc\xd9\xc9\xc9\xc3\xb7\xbe\xc0\xb5\xbd\xbe\xb3\xbb\xbe\ \xb4\xbc\xbe\xb3\xbb\xc0\xb7\xbe\xc3\xbb\xc3\xc1\xb9\xc4\xc0\xba\ \xc4\xc3\xbe\xc8\xc7\xc2\xcb\xc9\xc4\xcd\xcd\xc5\xcf\xce\xc6\xd0\ \xd0\xc8\xd1\xd3\xcb\xd4\xd4\xcd\xd6\xd6\xd2\xd8\xda\xd3\xda\xdd\ \xd6\xdd\xdc\xd7\xdc\xd5\xce\xd5\xc8\xc2\xcb\xbe\xb8\xc3\xbc\xb5\ \xc1\xbb\xb4\xc1\xbf\xba\xc6\xbd\xb8\xc6\xbc\xb9\xc8\xc3\xc3\xd3\ \xbf\xbf\xd1\xad\xa8\xba\xa1\x9b\xad\x99\x93\xa7\x80\x7c\x9b\x5e\ \x5d\x87\x3e\x43\x76\x36\x41\x71\x34\x41\x71\x31\x40\x6f\x33\x41\ \x72\x3c\x46\x7b\x48\x4b\x85\x55\x52\x8d\x67\x61\x94\x6d\x66\x97\ \x66\x64\x96\x68\x69\x98\x6e\x6f\x9b\x75\x77\x9f\x7a\x7d\xa2\x80\ \x83\xa5\x8a\x8d\xaa\x96\x98\xb0\xa2\xa1\xb4\xad\xab\xb9\xb4\xae\ \xbb\xb4\xaf\xba\xb4\xae\xb9\xb2\xac\xb8\xb1\xab\xb8\xb0\xab\xb7\ \xae\xa9\xb5\xad\xa9\xb5\xa3\xa1\xb0\x8a\x90\xa3\x69\x7b\x97\x52\ \x6c\x90\x56\x6e\x97\x71\x7d\xa8\x82\x87\xaf\x84\x83\xad\x70\x70\ \xa2\x56\x59\x8e\x49\x4c\x82\x61\x60\x8f\x92\x8d\xa9\xad\xa7\xb7\ \xb4\xac\xba\xb2\xaa\xb8\xb3\xaa\xb8\xb2\xa9\xb7\xb2\xaa\xb8\xb1\ \xa9\xb7\xb0\xa8\xb6\xaf\xa7\xb4\xb1\xa8\xb5\xb4\xac\xb8\xb8\xaf\ \xba\xbb\xb2\xbc\xba\xb2\xbb\xba\xb2\xb9\x00\x00\x00\xeb\xe6\xec\ \xeb\xe3\xeb\xe8\xe1\xe9\xe6\xdf\xe6\xe3\xdd\xe4\xe2\xdb\xe2\xe2\ \xdc\xe2\xe1\xdb\xe2\xe1\xda\xe1\xe0\xdb\xe2\xe0\xd9\xe1\xdf\xd7\ \xe1\xdf\xd7\xe0\xe0\xd8\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\ \xe4\xdd\xe4\xe5\xdd\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xe9\xe2\xe6\xeb\ \xe2\xe5\xec\xe2\xe5\xed\xe2\xe5\xee\xe3\xe5\xef\xe4\xe6\xef\xe5\ \xe6\xef\xe6\xe6\xef\xe5\xe5\xf0\xe6\xe5\xf0\xe5\xe5\xef\xe3\xe4\ \xee\xe2\xe3\xee\xe2\xe2\xee\xe2\xe2\xef\xe3\xe3\xee\xe2\xe2\xee\ \xe2\xe3\xee\xe2\xe2\xef\xe3\xe1\xef\xe3\xe2\xf0\xe4\xe2\xf0\xe4\ \xe2\xf0\xe4\xe2\xf0\xe3\xe1\xee\xe2\xe0\xec\xdf\xdd\xe9\xdc\xda\ \xe6\xd8\xd7\xe3\xd6\xd4\xe1\xd3\xd1\xdf\xd0\xce\xdf\xce\xcc\xdf\ \xce\xcb\xdf\xcd\xc9\xe1\xcc\xc7\xe1\xcd\xc8\xe3\xcf\xc9\xe5\xd1\ \xcb\xe8\xd4\xce\xeb\xd8\xd1\xef\xdd\xd7\xf2\xe4\xdc\xf4\xe9\xe1\ \xf5\xec\xe3\xf7\xef\xe6\xf6\xf1\xe8\xf6\xf1\xe9\xf2\xe6\xde\xdd\ \xcd\xcc\xc5\xb9\xbe\xc1\xb6\xbe\xc0\xb5\xbd\xbf\xb5\xbd\xbf\xb5\ \xbd\xc0\xb5\xbd\xc1\xb7\xbf\xc1\xba\xc3\xc3\xbb\xc5\xc5\xbf\xc9\ \xc7\xc2\xcb\xca\xc6\xce\xce\xc6\xd0\xd0\xc9\xd2\xd2\xca\xd3\xd4\ \xcc\xd5\xd6\xd0\xd8\xda\xd3\xda\xdb\xd4\xda\xd6\xd0\xd6\xcd\xc5\ \xcc\xc1\xba\xc5\xbc\xb7\xc2\xbc\xb6\xc1\xbb\xb4\xc1\xc1\xba\xc7\ \xc6\xc3\xcd\xbf\xbc\xca\xc4\xc6\xd4\xc0\xc3\xd3\xad\xab\xbc\xa2\ \x9c\xae\x9d\x97\xab\x8c\x86\xa2\x6c\x68\x93\x4b\x4e\x80\x3d\x46\ \x78\x38\x43\x74\x36\x43\x74\x37\x44\x75\x3b\x47\x7b\x49\x50\x89\ \x6a\x68\x9c\xa4\x95\xb0\xc2\xae\xb9\xb5\xa4\xb4\x9c\x94\xae\x96\ \x92\xaf\x9c\x99\xb2\xa1\x9e\xb4\xa4\xa1\xb5\xa8\xa4\xb6\xab\xa7\ \xb7\xb0\xab\xb9\xb3\xae\xba\xb5\xaf\xba\xb5\xaf\xba\xb4\xae\xb9\ \xb3\xad\xb8\xb3\xac\xb8\xb1\xaa\xb7\xb0\xaa\xb6\xad\xa8\xb5\xa6\ \xa2\xb1\x92\x94\xa7\x73\x7f\x9c\x58\x71\x93\x5c\x74\x99\x7f\x89\ \xab\x9b\x9c\xb6\xaa\xa6\xbc\xa6\xa0\xb9\x8f\x8a\xad\x6a\x67\x99\ \x4c\x4d\x85\x61\x5e\x91\x95\x8e\xab\xb1\xa9\xb8\xb8\xaf\xbc\xb7\ \xae\xba\xb6\xac\xb9\xb5\xac\xb8\xb4\xab\xb7\xb3\xaa\xb7\xb1\xa8\ \xb5\xb1\xa8\xb5\xb3\xa9\xb6\xb7\xad\xb8\xb9\xaf\xb9\xbb\xb2\xbb\ \xbc\xb2\xb9\xbb\xb2\xba\x00\x00\x00\xec\xe5\xec\xea\xe3\xea\xe8\ \xe1\xe8\xe5\xde\xe5\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe1\xda\ \xe1\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe1\xdf\xd7\xe1\xde\xd6\xe0\ \xdf\xd8\xe2\xe0\xda\xe2\xe2\xdc\xe3\xe3\xdd\xe4\xe4\xdd\xe4\xe5\ \xde\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xea\xe1\xe7\xeb\xe1\xe5\xeb\xe2\ \xe5\xec\xe2\xe4\xed\xe2\xe4\xee\xe3\xe5\xef\xe4\xe6\xef\xe5\xe6\ \xf0\xe5\xe6\xef\xe5\xe5\xf0\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\xed\ \xe1\xe1\xed\xe2\xe1\xed\xe1\xe2\xed\xe2\xe1\xed\xe1\xe1\xed\xe1\ \xe1\xed\xe1\xe1\xed\xe1\xe1\xee\xe2\xe1\xee\xe2\xe2\xee\xe2\xe1\ \xee\xe2\xe1\xec\xe0\xe0\xea\xdd\xdd\xe7\xd9\xda\xe3\xd5\xd6\xe2\ \xd4\xd4\xdf\xd2\xd0\xdd\xce\xcc\xdd\xcd\xcb\xde\xcd\xca\xdf\xcc\ \xc8\xe0\xcc\xc7\xe1\xcd\xc8\xe4\xcf\xc9\xe6\xd1\xcb\xe8\xd4\xce\ \xeb\xd8\xd1\xf0\xde\xd8\xf2\xe6\xde\xf4\xea\xe1\xf5\xec\xe3\xf6\ \xee\xe5\xf6\xf1\xe8\xf6\xf1\xea\xf5\xed\xe6\xec\xdc\xd8\xd7\xc8\ \xc9\xc9\xbc\xc2\xc2\xb8\xbf\xc2\xb7\xbe\xc2\xb7\xbe\xc1\xb6\xbe\ \xc1\xb6\xbe\xc3\xb9\xc1\xc5\xbd\xc6\xc7\xc1\xca\xc9\xc3\xcc\xcc\ \xc6\xcf\xcf\xc8\xd0\xd2\xcb\xd2\xd4\xcd\xd4\xd6\xd0\xd7\xd7\xd1\ \xd8\xd4\xcd\xd5\xcb\xc6\xcd\xc3\xbd\xc7\xbf\xb9\xc4\xbe\xb8\xc3\ \xbd\xb7\xc2\xbc\xb7\xc3\xc7\xc3\xce\xd3\xcf\xd7\xc9\xc4\xce\xc1\ \xbf\xcc\xbb\xba\xc9\xaf\xac\xbc\xa5\x9e\xb0\xa1\x9b\xad\x96\x8f\ \xa8\x7a\x73\x9a\x58\x56\x8a\x45\x4b\x7f\x40\x47\x7b\x40\x48\x7c\ \x40\x49\x7e\x41\x4c\x83\x45\x50\x88\x5c\x62\x97\xa5\x98\xb1\xd5\ \xc4\xc6\xd4\xc4\xc5\xc1\xb4\xbc\xad\xa4\xb6\xab\xa6\xb8\xb0\xac\ \xbb\xb2\xae\xbb\xb4\xad\xbb\xb4\xae\xbb\xb5\xaf\xba\xb5\xaf\xba\ \xb5\xaf\xba\xb4\xae\xb9\xb4\xae\xb9\xb3\xad\xb8\xb3\xad\xb7\xb2\ \xab\xb7\xb1\xaa\xb7\xae\xa8\xb6\xa5\xa0\xb0\x93\x91\xa7\x75\x7e\ \x9c\x5e\x70\x97\x63\x76\x9c\x84\x8c\xac\xa2\xa2\xb7\xb3\xae\xbd\ \xba\xb3\xc0\xb6\xae\xbc\xa3\x9b\xb3\x80\x7a\xa3\x5b\x57\x90\x65\ \x5f\x94\x97\x8f\xac\xb1\xa9\xb8\xb8\xb0\xbb\xb7\xae\xba\xb6\xac\ \xb8\xb5\xaa\xb7\xb5\xaa\xb7\xb3\xa9\xb6\xb3\xa9\xb5\xb2\xa8\xb6\ \xb4\xaa\xb7\xb8\xae\xb8\xba\xaf\xb9\xbb\xb0\xba\xbb\xb1\xb9\xbb\ \xb1\xb9\x00\x00\x00\xeb\xe4\xeb\xea\xe3\xea\xe7\xe0\xe7\xe4\xdd\ \xe4\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\ \xe1\xda\xe1\xdf\xd9\xe0\xdf\xd8\xe1\xde\xd8\xe1\xde\xd9\xe2\xe0\ \xda\xe3\xe2\xdd\xe3\xe4\xde\xe5\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\ \xe5\xe8\xe1\xe6\xe9\xe1\xe5\xea\xe1\xe4\xea\xe1\xe4\xed\xe2\xe5\ \xed\xe2\xe4\xed\xe2\xe4\xee\xe3\xe5\xef\xe4\xe6\xef\xe4\xe6\xef\ \xe4\xe4\xf0\xe4\xe4\xef\xe3\xe3\xed\xe1\xe1\xed\xe2\xe2\xee\xe1\ \xe2\xee\xe1\xe3\xec\xe0\xe1\xec\xe0\xe1\xec\xdf\xe1\xed\xe1\xe0\ \xed\xe1\xe1\xed\xe1\xe1\xed\xe1\xe1\xed\xe1\xe1\xec\xe0\xe0\xeb\ \xdf\xdf\xe8\xdc\xdc\xe4\xd7\xd8\xe2\xd4\xd5\xe0\xd2\xd2\xde\xd0\ \xcf\xdc\xcd\xcb\xdd\xcc\xc9\xdd\xcc\xc9\xdf\xcb\xc6\xdf\xcb\xc6\ \xe1\xce\xc7\xe5\xcf\xc9\xe6\xd1\xcb\xe8\xd4\xcd\xeb\xd8\xd1\xf0\ \xde\xd7\xf3\xe6\xde\xf4\xe9\xe1\xf5\xec\xe3\xf7\xef\xe6\xf6\xf0\ \xe7\xf7\xf2\xe9\xf7\xf2\xe9\xf5\xed\xe5\xef\xe1\xdb\xe5\xd5\xd3\ \xd8\xc8\xca\xca\xbe\xc3\xc3\xb9\xbf\xc3\xb8\xbf\xc3\xb8\xbf\xc3\ \xb9\xc0\xc4\xbb\xc2\xc7\xc1\xc8\xcc\xc5\xcc\xce\xc7\xce\xd1\xca\ \xd1\xd3\xcc\xd3\xd5\xd0\xd7\xd6\xd2\xd9\xd4\xd0\xd7\xcf\xc9\xd3\ \xc9\xc5\xce\xc5\xc0\xcb\xc3\xbe\xc9\xc1\xbc\xc8\xc5\xc1\xcd\xd4\ \xd1\xd9\xda\xd7\xdc\xce\xc7\xce\xc1\xba\xc4\xb8\xb2\xbe\xae\xa7\ \xb7\xa9\xa1\xb1\xa7\x9f\xb0\x9f\x97\xac\x84\x7c\x9f\x61\x5d\x8f\ \x4a\x4c\x83\x44\x49\x81\x47\x4c\x83\x4e\x52\x89\x54\x58\x91\x51\ \x58\x92\x53\x5b\x95\x6d\x71\xa1\xb7\xab\xba\xcb\xbe\xc2\xc8\xbb\ \xc0\xb5\xac\xb9\xaf\xa9\xb9\xb2\xad\xbc\xb4\xae\xbc\xb5\xaf\xbb\ \xb4\xad\xba\xb4\xae\xb9\xb3\xad\xb8\xb3\xad\xb8\xb2\xac\xb7\xb2\ \xac\xb7\xb3\xad\xb8\xb2\xac\xb7\xb2\xac\xb7\xb3\xab\xb8\xb0\xaa\ \xb7\xa7\xa1\xb1\x91\x8d\xa5\x74\x77\x9b\x61\x6e\x97\x6d\x79\xa2\ \x8b\x90\xae\xa3\xa2\xb7\xb2\xad\xbc\xb8\xb1\xbe\xb9\xb1\xbd\xb7\ \xae\xbb\xab\xa2\xb6\x8f\x86\xa9\x6a\x62\x99\x6d\x65\x9b\x98\x8f\ \xad\xb1\xa8\xb7\xb7\xae\xba\xb7\xad\xb9\xb6\xac\xb8\xb6\xac\xb9\ \xb3\xa9\xb6\xb4\xaa\xb7\xb3\xa9\xb6\xb3\xa9\xb5\xb5\xab\xb7\xb8\ \xae\xb8\xb9\xae\xb8\xba\xaf\xb9\xbb\xb1\xb8\xbb\xb1\xb8\x00\x00\ \x00\xe9\xe2\xe9\xe8\xe1\xe8\xe7\xdf\xe7\xe5\xde\xe3\xe2\xdb\xe1\ \xe1\xda\xe1\xe2\xdb\xe2\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xd9\xdf\xdf\ \xd7\xe1\xe0\xd8\xe1\xde\xd8\xe1\xe1\xda\xe3\xe0\xdb\xe3\xe3\xdd\ \xe3\xe3\xdc\xe3\xe4\xdd\xe4\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xdf\xe4\ \xea\xe0\xe4\xe9\xe0\xe3\xea\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe5\xee\ \xe3\xe5\xed\xe2\xe5\xee\xe3\xe5\xef\xe4\xe6\xee\xe3\xe5\xee\xe3\ \xe3\xee\xe2\xe2\xed\xe1\xe1\xee\xe1\xe2\xed\xe0\xe2\xeb\xdf\xe1\ \xec\xdf\xe1\xea\xde\xe0\xe9\xde\xe0\xea\xdf\xe1\xeb\xdf\xe0\xeb\ \xdf\xe0\xeb\xdf\xe0\xeb\xdf\xdf\xeb\xdf\xe0\xe9\xdd\xdd\xe6\xda\ \xda\xe3\xd5\xd6\xe0\xd2\xd3\xdf\xd1\xd2\xde\xd0\xce\xdc\xcc\xca\ \xdb\xca\xc8\xdc\xca\xc7\xde\xcb\xc7\xdf\xcb\xc6\xe2\xcd\xc7\xe4\ \xce\xc8\xe7\xd1\xcb\xe9\xd4\xce\xeb\xd8\xd1\xf0\xde\xd8\xf2\xe5\ \xdd\xf4\xe9\xe1\xf6\xec\xe3\xf6\xed\xe4\xf6\xf0\xe7\xf6\xf1\xe8\ \xf7\xf2\xe8\xf7\xf1\xea\xf7\xf0\xe8\xf5\xeb\xe3\xf0\xe2\xdc\xe5\ \xd5\xd3\xd6\xc8\xca\xcc\xbf\xc3\xc7\xbc\xc1\xc4\xba\xc0\xc2\xb7\ \xbf\xc3\xba\xc1\xc9\xc1\xc8\xcf\xc9\xd0\xd1\xcc\xd4\xd6\xd2\xd9\ \xda\xd7\xde\xdd\xdb\xe1\xdc\xda\xe0\xdb\xd8\xdf\xdb\xd8\xe0\xd9\ \xd7\xdf\xda\xd7\xdf\xdd\xd9\xe0\xdd\xd9\xdf\xd7\xd0\xd6\xce\xc6\ \xcd\xc2\xb9\xc3\xb6\xac\xb8\xb0\xa7\xb4\xae\xa4\xb4\xad\xa3\xb3\ \xa7\x9e\xb0\x91\x8a\xa4\x6b\x68\x94\x4d\x51\x86\x4e\x53\x89\x5a\ \x5e\x91\x6a\x6c\x9b\x77\x78\xa2\x7a\x7b\xa5\x72\x75\xa3\x65\x6b\ \x9e\x73\x77\xa5\xa2\x9e\xb5\xb5\xac\xbc\xb8\xaf\xbc\xb5\xad\xbd\ \xb7\xb0\xbe\xb7\xb0\xbd\xb5\xae\xbc\xb3\xac\xb9\xb1\xaa\xb7\xb1\ \xaa\xb6\xb1\xaa\xb6\xb1\xaa\xb5\xb0\xa9\xb5\xb1\xab\xb6\xb1\xab\ \xb6\xb2\xab\xb6\xb1\xab\xb7\xb1\xab\xb7\xac\xa5\xb5\x98\x92\xab\ \x7c\x7a\xa1\x6a\x6f\x9b\x75\x7c\xa4\x92\x94\xb1\xa7\xa4\xb7\xb1\ \xad\xba\xb5\xae\xbb\xb6\xae\xbb\xb6\xac\xba\xb4\xaa\xba\xae\xa4\ \xb6\x97\x8c\xac\x77\x6b\xa0\x7b\x70\xa3\x9c\x94\xaf\xb1\xa8\xb7\ \xb5\xab\xb7\xb5\xab\xb7\xb5\xab\xb9\xb6\xac\xb9\xb4\xaa\xb7\xb4\ \xaa\xb7\xb4\xaa\xb7\xb5\xab\xb7\xb6\xac\xb8\xb8\xae\xb9\xba\xaf\ \xb9\xba\xb0\xba\xbb\xb0\xb9\xbc\xb1\xb9\x00\x00\x00\xe8\xe1\xe8\ \xe6\xdf\xe7\xe6\xde\xe4\xe5\xde\xe3\xe2\xdb\xe0\xe1\xda\xe1\xe2\ \xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\ \xdf\xdf\xd9\xe0\xe0\xd9\xe1\xe1\xda\xe1\xe3\xdc\xe3\xe4\xdd\xe4\ \xe5\xdd\xe3\xe6\xde\xe4\xe7\xdf\xe4\xe9\xdf\xe3\xe9\xdf\xe2\xea\ \xe0\xe3\xec\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe4\xed\xe2\xe5\xee\xe3\ \xe5\xee\xe3\xe5\xee\xe3\xe5\xef\xe3\xe4\xef\xe3\xe3\xee\xe2\xe2\ \xee\xe1\xe2\xed\xe1\xe2\xed\xe0\xe2\xeb\xe0\xe1\xea\xde\xe0\xea\ \xdf\xe1\xea\xdf\xe1\xea\xdf\xe1\xe9\xde\xe0\xe9\xdf\xe1\xe9\xde\ \xe1\xea\xdf\xe0\xea\xdd\xdf\xe7\xdc\xdc\xe4\xd8\xd8\xe1\xd4\xd5\ \xdf\xd1\xd1\xde\xd0\xd1\xdd\xcf\xcd\xda\xcb\xc9\xda\xc8\xc7\xdb\ \xc9\xc6\xdd\xca\xc5\xdd\xc9\xc4\xe1\xcb\xc5\xe3\xcd\xc7\xe5\xd0\ \xca\xe8\xd4\xce\xeb\xd8\xd2\xef\xde\xd7\xf2\xe3\xdb\xf4\xe8\xe0\ \xf6\xec\xe3\xf6\xed\xe4\xf6\xef\xe6\xf6\xf1\xe8\xf7\xf1\xe8\xf6\ \xf2\xe9\xf7\xf1\xe9\xf7\xf2\xe9\xf6\xf1\xe8\xf4\xeb\xe3\xf0\xe2\ \xdc\xe8\xd9\xd5\xe0\xd0\xcf\xd8\xc9\xca\xcd\xc0\xc4\xc2\xb7\xbf\ \xcc\xc5\xce\xdb\xd7\xdf\xdf\xdc\xe2\xdb\xd8\xde\xda\xd6\xdc\xdc\ \xd9\xe0\xde\xdb\xe1\xdf\xdc\xe1\xe0\xdd\xe2\xe1\xdd\xe1\xdf\xda\ \xde\xd7\xd0\xd4\xce\xc7\xce\xcd\xc6\xcd\xc4\xbc\xc4\xb7\xad\xb9\ \xb2\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\xae\xa4\xb4\x9a\x92\xa9\x74\ \x72\x98\x57\x5c\x8c\x5b\x62\x92\x71\x75\x9f\x87\x87\xa8\x95\x93\ \xad\x99\x98\xaf\x9a\x99\xaf\x8c\x8d\xab\x74\x76\xa2\x7c\x7f\xa7\ \x9b\x9a\xb3\xb1\xab\xbc\xb7\xaf\xbf\xb9\xb2\xc0\xba\xb2\xc0\xb7\ \xb0\xbd\xb2\xab\xba\xb0\xa9\xb7\xaf\xa8\xb5\xaf\xa8\xb5\xaf\xa8\ \xb4\xaf\xa9\xb5\xb0\xa9\xb5\xb0\xaa\xb6\xb1\xab\xb6\xb2\xab\xb7\ \xb2\xac\xb8\xb1\xab\xb8\xa9\xa3\xb5\x9b\x96\xb0\x8f\x8c\xac\x90\ \x8d\xad\x9c\x9a\xb4\xa9\xa5\xb7\xb2\xac\xba\xb4\xac\xbb\xb3\xab\ \xb9\xb3\xa9\xb9\xb4\xaa\xb9\xb3\xa9\xb9\xb0\xa5\xb6\x9c\x91\xaf\ \x83\x77\xa6\x8d\x83\xaa\xa5\x9c\xb3\xb3\xa9\xb7\xb4\xaa\xb6\xb4\ \xaa\xb6\xb5\xab\xb7\xb5\xab\xb8\xb4\xaa\xb7\xb5\xab\xb8\xb5\xab\ \xb7\xb6\xac\xb8\xb7\xae\xb9\xb9\xb0\xba\xba\xb1\xbb\xba\xb1\xba\ \xba\xb1\xb9\xba\xb1\xb9\x00\x00\x00\xe7\xe0\xe7\xe6\xdf\xe6\xe6\ \xde\xe5\xe4\xdd\xe2\xe3\xdc\xe1\xe2\xdb\xe1\xe2\xd9\xe0\xe0\xda\ \xe1\xe0\xd9\xe0\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\xdf\ \xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe2\xe3\xdc\xe2\xe3\xdc\xe2\xe5\ \xdd\xe2\xe7\xde\xe3\xe8\xdf\xe2\xea\xe0\xe3\xea\xdf\xe2\xec\xe1\ \xe3\xec\xe1\xe4\xed\xe2\xe5\xec\xe1\xe4\xed\xe2\xe4\xed\xe2\xe5\ \xee\xe3\xe5\xef\xe4\xe3\xef\xe3\xe3\xee\xe2\xe2\xed\xe1\xe1\xec\ \xe1\xe1\xed\xe1\xe1\xec\xdf\xe1\xea\xde\xe0\xea\xdf\xe1\xea\xdf\ \xe1\xe9\xde\xe0\xea\xdf\xe1\xea\xde\xe1\xea\xdf\xe1\xe9\xde\xe0\ \xe6\xdc\xdd\xe6\xda\xdb\xe2\xd6\xd6\xdf\xd2\xd3\xdd\xcf\xd0\xdd\ \xcf\xce\xdb\xcd\xcb\xda\xc9\xc8\xd8\xc6\xc5\xd9\xc7\xc4\xda\xc7\ \xc2\xdc\xc8\xc2\xdf\xc9\xc3\xe2\xcc\xc6\xe5\xcf\xc9\xe8\xd2\xcc\ \xeb\xd8\xd1\xef\xdd\xd6\xf2\xe2\xdb\xf3\xe7\xde\xf5\xea\xe2\xf6\ \xee\xe5\xf7\xf0\xe7\xf6\xf0\xe7\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\ \xe9\xf7\xf2\xe9\xf7\xf1\xe9\xf7\xf0\xe9\xf6\xf0\xe7\xf5\xee\xe5\ \xf4\xea\xe2\xf0\xe3\xdd\xe6\xd6\xd4\xdb\xd2\xd6\xe4\xe0\xe5\xe6\ \xe1\xe5\xdc\xd6\xdc\xd1\xcb\xd1\xd8\xd4\xda\xde\xdb\xe0\xdd\xd8\ \xde\xda\xd4\xd9\xd6\xcf\xd5\xcc\xc4\xcd\xc8\xc0\xc8\xc6\xbd\xc6\ \xc6\xbd\xc5\xc2\xb9\xc0\xb9\xae\xb9\xb4\xaa\xb6\xb6\xac\xb8\xbd\ \xb1\xbb\xc0\xb4\xbd\xae\xa1\xb3\x85\x7e\xa0\x69\x68\x95\x70\x74\ \x9c\x86\x86\xa6\x99\x95\xad\xa3\x9e\xb1\xa6\xa2\xb2\xa6\xa3\xb2\ \xa5\xa3\xb3\x97\x95\xad\x7e\x7e\xa3\x8b\x8b\xab\xad\xa8\xbb\xbe\ \xb5\xc1\xc3\xb9\xc2\xc8\xbd\xc5\xc3\xb7\xc0\xb5\xad\xbb\xae\xa7\ \xb6\xad\xa7\xb5\xae\xa7\xb4\xaf\xa8\xb4\xae\xa8\xb5\xaf\xa8\xb4\ \xaf\xa8\xb5\xb0\xaa\xb5\xb1\xab\xb5\xb1\xaa\xb7\xb2\xab\xb7\xb3\ \xac\xb9\xb1\xab\xba\xad\xa7\xba\xa9\xa4\xb7\xac\xa7\xb8\xaf\xa9\ \xb8\xb3\xab\xb9\xb3\xab\xb8\xb3\xaa\xb8\xb3\xa9\xb8\xb3\xa9\xb9\ \xb4\xab\xb8\xb5\xab\xba\xb0\xa6\xb7\xa1\x95\xb2\x9c\x92\xb4\xa5\ \x9c\xb6\xb0\xa7\xb8\xb8\xad\xb9\xb6\xab\xb7\xb5\xab\xb7\xb5\xab\ \xb7\xb4\xaa\xb8\xb5\xab\xb7\xb6\xac\xb8\xb6\xac\xb8\xb7\xad\xb8\ \xb9\xaf\xb9\xba\xb1\xbb\xbb\xb1\xbc\xbc\xb2\xb9\xbc\xb1\xb9\xba\ \xb1\xb9\x00\x00\x00\xe7\xe0\xe7\xe7\xdf\xe6\xe6\xdf\xe4\xe5\xde\ \xe3\xe3\xdc\xe1\xe2\xda\xe1\xe2\xdb\xe1\xe0\xd9\xe1\xe1\xda\xe1\ \xe1\xda\xe1\xe0\xd8\xdf\xdf\xd8\xdf\xde\xd7\xde\xdd\xd5\xdc\xde\ \xd6\xdd\xdf\xd8\xde\xe1\xda\xdf\xe3\xdb\xe0\xe5\xdb\xe0\xe6\xdd\ \xe1\xe9\xdf\xe2\xeb\xe0\xe2\xea\xdf\xe2\xeb\xe0\xe2\xec\xe1\xe3\ \xeb\xe0\xe3\xec\xe1\xe3\xed\xe2\xe4\xef\xe3\xe5\xef\xe2\xe4\xf0\ \xe4\xe3\xf0\xe4\xe4\xef\xe2\xe3\xef\xe0\xe1\xed\xe1\xe0\xed\xe0\ \xe1\xec\xe1\xe0\xec\xdf\xe1\xeb\xdf\xe1\xea\xdf\xe1\xe9\xdf\xe1\ \xe9\xde\xe0\xe9\xde\xe0\xe8\xdd\xdf\xe8\xdd\xdf\xe5\xda\xdc\xe4\ \xd7\xd9\xe0\xd4\xd4\xdd\xd0\xd1\xdc\xce\xcf\xda\xcc\xcd\xd9\xca\ \xc9\xd8\xc7\xc6\xd7\xc5\xc3\xd8\xc6\xc3\xd8\xc5\xc0\xda\xc5\xc0\ \xdd\xc8\xc2\xe0\xca\xc4\xe3\xce\xc8\xe7\xd2\xcc\xea\xd7\xd0\xee\ \xdc\xd5\xf1\xe1\xda\xf3\xe6\xdd\xf4\xe9\xe1\xf6\xec\xe3\xf6\xef\ \xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf6\xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\ \xf6\xf1\xe8\xf5\xf0\xe7\xf6\xf1\xe7\xf6\xf0\xe7\xf6\xf0\xe7\xf5\ \xed\xe5\xec\xe2\xe1\xe8\xe2\xe5\xde\xd8\xdc\xd0\xc8\xce\xc5\xbd\ \xc7\xca\xc4\xce\xd3\xcf\xd6\xd2\xcd\xd5\xcf\xc9\xd2\xd1\xcb\xd4\ \xce\xc6\xce\xc4\xbb\xc5\xc2\xb8\xc1\xc0\xb5\xbf\xbf\xb3\xbc\xbd\ \xb1\xbb\xbd\xb1\xba\xc4\xb7\xbe\xd3\xc3\xc5\xde\xcb\xc9\xd4\xc3\ \xc3\xb7\xa7\xb4\x93\x8a\xa6\x8f\x89\xa6\x9b\x95\xac\xa4\x9e\xb0\ \xa9\xa2\xb2\xa9\xa4\xb3\xa9\xa4\xb3\xa9\xa4\xb3\xaa\xa6\xb5\x9b\ \x98\xad\x84\x84\xa5\x9f\x9a\xb2\xcb\xbf\xc4\xdc\xcd\xcc\xdf\xcc\ \xcb\xd6\xc4\xc5\xc4\xb6\xbe\xb2\xa9\xb7\xaa\xa4\xb4\xac\xa5\xb4\ \xad\xa6\xb3\xae\xa7\xb4\xae\xa7\xb4\xae\xa7\xb4\xaf\xa8\xb5\xb0\ \xa9\xb5\xb1\xaa\xb7\xb2\xab\xb8\xb4\xad\xba\xb6\xaf\xbc\xb7\xb0\ \xbd\xb6\xaf\xbd\xb5\xae\xbb\xb4\xad\xb9\xb4\xac\xb9\xb4\xab\xb8\ \xb5\xac\xb9\xb5\xac\xb9\xb6\xac\xb9\xb6\xac\xb9\xb6\xad\xba\xb7\ \xad\xba\xb4\xaa\xba\xb5\xab\xbe\xba\xb4\xc6\xbe\xb8\xc7\xc0\xb8\ \xc3\xbd\xb2\xbc\xb9\xaf\xba\xb8\xad\xb9\xb6\xab\xb7\xb5\xab\xb7\ \xb6\xab\xb8\xb6\xac\xb8\xb8\xae\xb9\xb9\xb0\xba\xbb\xb0\xba\xba\ \xb2\xbb\xbc\xb2\xbb\xbc\xb2\xbb\xbb\xb2\xb9\xb9\xb1\xb8\x00\x00\ \x00\xe7\xe1\xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe4\xe4\xdd\xe2\ \xe3\xdb\xe2\xe3\xda\xe2\xe3\xdb\xe2\xe2\xdb\xe1\xe2\xda\xe0\xe0\ \xd9\xdf\xe0\xd8\xde\xde\xd6\xdc\xdc\xd4\xdb\xdc\xd4\xdb\xdd\xd5\ \xdb\xe0\xd8\xdd\xe3\xd9\xde\xe5\xdb\xdf\xe7\xdd\xe0\xe9\xde\xe1\ \xeb\xe0\xe2\xeb\xdf\xe1\xec\xe0\xe2\xec\xe0\xe2\xec\xe0\xe2\xec\ \xe0\xe2\xee\xe1\xe3\xee\xe2\xe3\xf0\xe4\xe4\xef\xe3\xe3\xef\xe4\ \xe4\xef\xe1\xe1\xef\xe1\xe1\xee\xe1\xe0\xee\xe0\xe1\xed\xe0\xe0\ \xec\xe0\xe1\xec\xe0\xe1\xeb\xe0\xe2\xea\xdf\xe0\xea\xde\xe0\xe9\ \xdd\xdf\xe8\xdd\xe0\xe7\xdc\xde\xe6\xda\xdb\xe3\xd6\xd7\xdf\xd3\ \xd3\xdd\xd0\xd1\xdc\xce\xcf\xda\xcc\xcc\xd9\xca\xc9\xd7\xc8\xc6\ \xd8\xc6\xc4\xd7\xc5\xc3\xd8\xc5\xc0\xd8\xc4\xbf\xdb\xc7\xc1\xdf\ \xc9\xc3\xe2\xcd\xc7\xe7\xd1\xcb\xea\xd7\xd0\xee\xdb\xd4\xf1\xe0\ \xd9\xf2\xe4\xdd\xf4\xe7\xdf\xf5\xeb\xe2\xf7\xee\xe6\xf7\xf0\xe7\ \xf7\xf1\xe8\xf8\xf0\xe7\xf7\xf0\xe7\xf6\xf0\xe7\xf6\xf0\xe7\xf7\ \xf1\xe8\xf8\xf1\xe8\xf7\xef\xe6\xf7\xef\xe6\xf2\xe8\xe3\xe5\xdd\ \xe0\xd8\xd2\xd7\xca\xc2\xca\xc7\xc0\xca\xcf\xc9\xd2\xd1\xcc\xd3\ \xce\xc8\xd1\xd5\xcf\xd8\xd8\xd4\xda\xd6\xd1\xd7\xce\xc4\xca\xc9\ \xbd\xc4\xcb\xbd\xc3\xcf\xc1\xc4\xd2\xc3\xc6\xd5\xc5\xc6\xdc\xca\ \xc9\xe5\xd3\xcf\xeb\xd9\xd3\xe8\xd4\xce\xd7\xc3\xc2\xb9\xaa\xb5\ \xa9\x9e\xb0\xaa\xa0\xb1\xab\xa2\xb2\xab\xa3\xb2\xab\xa4\xb2\xac\ \xa5\xb4\xaa\xa4\xb3\xac\xa6\xb4\xad\xa8\xb6\x9d\x99\xae\x8a\x86\ \xa7\xae\xa5\xb8\xda\xcb\xca\xe3\xd1\xcd\xdc\xc9\xc7\xcb\xba\xbe\ \xb9\xac\xb9\xab\xa3\xb5\xa9\xa3\xb4\xab\xa4\xb3\xad\xa6\xb3\xad\ \xa6\xb3\xad\xa6\xb3\xae\xa7\xb4\xae\xa7\xb4\xb0\xa8\xb6\xb1\xaa\ \xb7\xb2\xab\xb8\xb5\xae\xbb\xb8\xb0\xbd\xb8\xb1\xbd\xb7\xaf\xbc\ \xb5\xad\xba\xb5\xac\xb9\xb5\xac\xb9\xb5\xac\xb9\xb6\xad\xb9\xb7\ \xad\xba\xb8\xae\xbb\xb8\xaf\xbc\xb9\xaf\xbc\xb8\xaf\xbc\xbe\xb5\ \xc2\xc5\xbe\xcc\xcf\xc9\xd4\xd3\xcb\xd3\xce\xc5\xcd\xc3\xb9\xc2\ \xbd\xb2\xbc\xba\xaf\xba\xb9\xad\xba\xb6\xac\xb8\xb6\xac\xb8\xb8\ \xae\xb9\xb9\xaf\xb9\xba\xb1\xbb\xba\xb1\xbb\xbb\xb1\xbb\xbc\xb1\ \xbb\xbb\xb2\xb9\xbb\xb1\xb8\xb9\xb1\xb8\x00\x00\x00\xe7\xe1\xe7\ \xe8\xe1\xe6\xe8\xe1\xe6\xe6\xdf\xe4\xe4\xdd\xe2\xe4\xdd\xe2\xe3\ \xdc\xe2\xe4\xdc\xe1\xe3\xdc\xe1\xe2\xda\xdf\xe1\xd9\xde\xe0\xd7\ \xdd\xdf\xd6\xdc\xdd\xd4\xda\xdc\xd3\xd9\xdd\xd3\xd9\xe0\xd6\xdc\ \xe2\xd9\xdc\xe5\xdb\xde\xe7\xdc\xdf\xe9\xde\xe0\xeb\xdf\xe1\xec\ \xdf\xe1\xed\xdf\xe2\xec\xe0\xe2\xec\xdf\xe2\xed\xe1\xe2\xee\xe1\ \xe2\xee\xe2\xe2\xef\xe3\xe3\xef\xe3\xe3\xef\xe3\xe1\xef\xe2\xe0\ \xee\xe1\xdf\xee\xe1\xdf\xee\xe1\xe0\xee\xe0\xe1\xed\xe0\xe0\xec\ \xe0\xe1\xed\xe0\xe2\xec\xdf\xe0\xeb\xdf\xe0\xea\xde\xdf\xe9\xdd\ \xdf\xe8\xdb\xdc\xe5\xd9\xd9\xe3\xd7\xd7\xdf\xd3\xd3\xdf\xd1\xd2\ \xdc\xce\xcf\xdb\xcd\xcd\xdb\xcb\xca\xd8\xc8\xc6\xd8\xc6\xc4\xd6\ \xc4\xc2\xd7\xc3\xc0\xd7\xc4\xbf\xd9\xc5\xbf\xdd\xc8\xc2\xe1\xcb\ \xc5\xe5\xd1\xca\xe9\xd6\xcf\xed\xda\xd3\xf1\xdf\xd8\xf2\xe3\xdc\ \xf2\xe6\xde\xf4\xe9\xe1\xf6\xec\xe4\xf7\xef\xe6\xf7\xf0\xe7\xf8\ \xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\ \xe7\xf7\xf0\xe7\xf6\xee\xe5\xed\xe3\xe0\xd9\xd3\xd8\xd0\xc8\xcf\ \xcd\xc6\xce\xd3\xcc\xd4\xd3\xce\xd4\xce\xc7\xd1\xd3\xce\xd7\xd8\ \xd4\xda\xdb\xd5\xd9\xe2\xd5\xd5\xe2\xd1\xcf\xe5\xd2\xd0\xe8\xd6\ \xd2\xec\xd9\xd4\xed\xdc\xd6\xee\xdf\xd7\xf0\xe0\xd9\xf2\xe4\xdb\ \xf0\xe0\xd8\xe2\xcd\xc9\xc7\xb5\xba\xb3\xa6\xb3\xb0\xa5\xb2\xaf\ \xa5\xb3\xad\xa3\xb3\xac\xa3\xb2\xab\xa3\xb2\xac\xa5\xb4\xad\xa6\ \xb4\xad\xa6\xb3\xaf\xa8\xb5\x9f\x99\xb0\x91\x8c\xac\xb3\xaa\xbb\ \xd5\xc8\xc9\xd4\xc5\xc6\xc4\xb5\xbc\xb3\xa9\xb7\xac\xa5\xb6\xa9\ \xa3\xb6\xa7\xa1\xb3\xa8\xa3\xb3\xac\xa5\xb3\xad\xa6\xb3\xae\xa7\ \xb4\xad\xa7\xb4\xae\xa7\xb4\xaf\xa8\xb5\xb1\xaa\xb7\xb3\xac\xb9\ \xb5\xad\xba\xb8\xaf\xbc\xb8\xaf\xbb\xb7\xaf\xba\xb6\xad\xb9\xb6\ \xae\xba\xb7\xad\xba\xb8\xae\xba\xb9\xaf\xbb\xba\xb0\xbc\xba\xb1\ \xbd\xba\xb2\xbd\xba\xb1\xbd\xbb\xb1\xbe\xc5\xbd\xca\xcf\xc9\xd3\ \xd8\xd3\xda\xda\xd3\xd9\xd1\xca\xd1\xc7\xbf\xc7\xbf\xb6\xc0\xbc\ \xb1\xbd\xb9\xae\xba\xb8\xae\xba\xb8\xae\xba\xb9\xae\xba\xba\xb0\ \xba\xbb\xb1\xbb\xbb\xb0\xba\xba\xb0\xba\xbb\xb0\xba\xba\xb0\xb9\ \xb9\xaf\xb9\xb9\xb1\xb9\x00\x00\x00\xe8\xe1\xe6\xe9\xe2\xe7\xe8\ \xe1\xe6\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdd\ \xe2\xe4\xdb\xe1\xe3\xda\xdf\xe2\xd8\xdd\xe1\xd7\xdb\xe0\xd5\xda\ \xdd\xd3\xd9\xdd\xd2\xd8\xdd\xd2\xd8\xe0\xd4\xd9\xe2\xd8\xdb\xe5\ \xda\xdc\xe6\xdb\xdd\xe9\xdd\xdf\xeb\xdd\xdf\xeb\xde\xe0\xeb\xdf\ \xe0\xeb\xde\xe0\xeb\xdf\xdf\xeb\xdf\xdf\xed\xe1\xe1\xed\xe1\xe1\ \xee\xe2\xe2\xef\xe3\xe2\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xef\ \xe2\xe0\xef\xe2\xe0\xef\xe2\xdf\xee\xe2\xe1\xee\xe1\xe1\xed\xe1\ \xe1\xeb\xdf\xdf\xeb\xdf\xdf\xea\xde\xde\xe9\xdd\xdd\xe7\xdb\xdb\ \xe5\xd9\xd9\xe3\xd6\xd7\xe1\xd3\xd4\xe0\xd2\xd3\xde\xd0\xd1\xdc\ \xcd\xce\xd9\xcb\xc8\xd9\xc7\xc6\xd6\xc4\xc3\xd5\xc3\xc2\xd5\xc3\ \xc0\xd5\xc1\xbf\xd7\xc3\xbe\xdb\xc6\xc1\xdf\xca\xc4\xe4\xcf\xc8\ \xe7\xd4\xcd\xed\xda\xd3\xf0\xdf\xd8\xf1\xe1\xda\xf2\xe5\xdd\xf3\ \xe8\xe0\xf6\xeb\xe3\xf7\xee\xe5\xf8\xef\xe6\xf6\xef\xe6\xf7\xef\ \xe6\xf7\xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xef\xe6\xf7\xef\xe5\ \xf5\xec\xe4\xe5\xdb\xdc\xd6\xcf\xd5\xd1\xca\xd1\xd2\xca\xd1\xd1\ \xcb\xd1\xd0\xca\xd3\xd5\xd0\xd7\xd5\xd1\xd7\xd2\xcc\xd2\xe2\xd6\ \xd6\xf1\xe3\xdb\xf2\xe5\xdd\xf3\xe6\xdd\xf3\xe8\xde\xf4\xe9\xdf\ \xf5\xe9\xdf\xf3\xe8\xdd\xf4\xe8\xde\xf2\xe6\xdc\xef\xde\xd6\xdb\ \xc6\xc3\xbb\xac\xb5\xb1\xa6\xb3\xaf\xa6\xb2\xaf\xa5\xb2\xad\xa5\ \xb4\xac\xa4\xb3\xab\xa3\xb2\xac\xa5\xb4\xad\xa6\xb3\xae\xa7\xb4\ \xb1\xaa\xb7\xa5\x9f\xb3\xa1\x99\xb3\xba\xb2\xc0\xce\xc4\xc8\xc3\ \xb8\xc1\xb4\xab\xb9\xae\xa8\xb8\xac\xa7\xb7\xa9\xa3\xb6\xa8\xa2\ \xb4\xa9\xa3\xb4\xac\xa5\xb5\xac\xa5\xb5\xad\xa6\xb3\xae\xa6\xb4\ \xaf\xa8\xb5\xb1\xaa\xb7\xb2\xaa\xb9\xb5\xac\xba\xb6\xad\xbb\xb8\ \xb0\xbb\xb8\xb0\xbb\xb7\xaf\xba\xb9\xb1\xbc\xb9\xb0\xbc\xba\xb1\ \xbc\xbc\xb2\xbe\xbc\xb2\xbe\xbd\xb3\xbf\xbd\xb3\xbf\xbc\xb3\xbf\ \xbd\xb4\xc0\xc4\xbb\xc7\xcd\xc5\xcf\xd4\xcd\xd5\xd9\xd2\xd7\xd7\ \xd0\xd5\xd2\xca\xd1\xca\xc2\xcb\xc4\xbb\xc5\xc0\xb7\xc2\xbc\xb4\ \xbf\xbb\xb1\xbd\xb9\xaf\xbb\xba\xaf\xbb\xbb\xaf\xba\xba\xae\xb9\ \xba\xaf\xba\xb7\xae\xb9\xb8\xae\xb8\xb8\xad\xb7\xb8\xae\xb8\xb8\ \xaf\xb9\x00\x00\x00\xe9\xe2\xe7\xe9\xe2\xe7\xe8\xe1\xe6\xe7\xe0\ \xe5\xe5\xde\xe3\xe4\xde\xe3\xe5\xde\xe3\xe5\xdd\xe2\xe4\xdb\xe1\ \xe3\xda\xdf\xe2\xd9\xdc\xe2\xd7\xda\xe1\xd6\xd9\xdf\xd4\xd7\xde\ \xd4\xd7\xdf\xd4\xd7\xe1\xd5\xd8\xe2\xd7\xda\xe4\xd9\xdb\xe7\xda\ \xdc\xe7\xda\xdc\xe9\xdd\xdf\xea\xdd\xdf\xea\xde\xde\xea\xde\xde\ \xea\xde\xde\xeb\xdf\xe0\xed\xdf\xe0\xee\xe2\xe2\xf0\xe4\xe2\xf0\ \xe4\xe2\xf0\xe4\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\ \xe1\xf0\xe3\xe1\xef\xe2\xe0\xef\xe1\xe0\xee\xe0\xe0\xec\xdf\xe0\ \xec\xde\xdf\xeb\xdd\xdd\xe9\xdc\xdc\xe8\xda\xdb\xe6\xd8\xd9\xe4\ \xd7\xd7\xe2\xd4\xd4\xe0\xd2\xd2\xde\xd0\xce\xdc\xcd\xca\xd8\xc8\ \xc7\xd6\xc6\xc4\xd4\xc4\xc2\xd3\xc2\xc1\xd4\xc2\xc1\xd5\xc3\xc0\ \xd7\xc3\xbf\xd9\xc6\xc1\xde\xcb\xc5\xe3\xcf\xc9\xe7\xd5\xce\xec\ \xd9\xd2\xee\xdc\xd5\xf1\xe0\xd9\xf2\xe3\xdc\xf3\xe7\xdf\xf5\xea\ \xe2\xf6\xec\xe4\xf7\xee\xe5\xf8\xf0\xe6\xf9\xf0\xe7\xf8\xef\xe6\ \xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xee\xe6\xf3\xe8\xe2\xe1\ \xd9\xdb\xd5\xcf\xd5\xce\xc7\xcd\xcd\xc6\xce\xd1\xcb\xd2\xd5\xcf\ \xd6\xd5\xd0\xd6\xd1\xc9\xd0\xd2\xca\xd0\xeb\xdd\xd8\xf4\xe9\xdf\ \xf4\xea\xe0\xf4\xea\xe0\xf3\xea\xe0\xf4\xe9\xdf\xf4\xe8\xde\xf4\ \xe8\xde\xf4\xe8\xde\xf2\xe6\xdc\xed\xdb\xd3\xd5\xc0\xbf\xb6\xa9\ \xb4\xb1\xa6\xb3\xaf\xa5\xb3\xae\xa5\xb3\xae\xa4\xb4\xac\xa4\xb3\ \xab\xa4\xb4\xad\xa6\xb3\xae\xa7\xb4\xaf\xa8\xb5\xb3\xac\xb9\xae\ \xa7\xb8\xb2\xab\xbc\xc2\xbb\xc6\xc9\xc1\xc9\xc0\xb7\xc2\xb5\xad\ \xbc\xb1\xab\xba\xad\xa7\xb9\xab\xa5\xb8\xaa\xa4\xb7\xaa\xa4\xb5\ \xaa\xa3\xb4\xab\xa4\xb4\xad\xa5\xb5\xaf\xa7\xb6\xb2\xa8\xb8\xb4\ \xab\xb9\xb6\xad\xba\xb8\xaf\xbb\xb8\xb0\xbc\xba\xb1\xbc\xb9\xb1\ \xbc\xba\xb1\xbc\xbb\xb2\xbd\xbd\xb4\xbe\xbe\xb4\xbf\xbe\xb5\xc0\ \xbe\xb4\xc0\xbf\xb5\xc1\xc2\xb7\xc2\xc6\xbc\xc6\xcb\xc2\xcc\xcf\ \xc7\xcf\xd3\xcb\xd3\xd7\xcf\xd5\xd5\xce\xd3\xd1\xca\xcf\xce\xc6\ \xcd\xca\xc3\xcb\xc8\xc1\xca\xc7\xbf\xc9\xc4\xbc\xc6\xbf\xb7\xc1\ \xbc\xb2\xbd\xba\xaf\xbb\xb9\xad\xb9\xb8\xad\xb9\xb8\xad\xb9\xb7\ \xad\xb9\xb6\xac\xb6\xb6\xac\xb7\xb5\xac\xb6\xb5\xac\xb7\x00\x00\ \x00\xea\xe3\xe8\xea\xe2\xe7\xe9\xe1\xe6\xe8\xe0\xe5\xe7\xdf\xe3\ \xe6\xdd\xe3\xe6\xdf\xe4\xe6\xdd\xe1\xe5\xdc\xe0\xe3\xda\xdd\xe3\ \xd8\xdb\xe2\xd7\xda\xe1\xd6\xd9\xdf\xd4\xd7\xdf\xd3\xd6\xdf\xd4\ \xd7\xe0\xd5\xd8\xe1\xd6\xd9\xe3\xd7\xda\xe6\xd9\xdb\xe6\xd9\xdb\ \xe7\xdb\xdc\xe9\xdc\xdd\xeb\xdc\xde\xea\xdc\xdd\xea\xdd\xde\xeb\ \xde\xdf\xed\xdf\xe0\xee\xe1\xe1\xef\xe3\xe3\xf0\xe4\xe3\xf1\xe5\ \xe3\xf0\xe4\xe2\xf1\xe4\xe2\xef\xe3\xe1\xef\xe3\xe1\xef\xe3\xe1\ \xf0\xe3\xe1\xef\xe3\xe1\xee\xe1\xdf\xed\xe0\xde\xec\xdf\xdd\xec\ \xde\xdc\xea\xdc\xdb\xe8\xdb\xd9\xe6\xd8\xd7\xe4\xd7\xd5\xe2\xd4\ \xd2\xe0\xd2\xd0\xdd\xce\xcc\xda\xcb\xc9\xd6\xc7\xc5\xd3\xc4\xc4\ \xd2\xc2\xc3\xd1\xc1\xc2\xd2\xc2\xc1\xd5\xc3\xc2\xd7\xc4\xc2\xda\ \xc7\xc3\xdf\xcc\xc7\xe3\xd0\xcb\xe7\xd4\xcf\xeb\xd7\xd2\xee\xdb\ \xd5\xf0\xdf\xd8\xf2\xe2\xdb\xf4\xe7\xdf\xf5\xe9\xe1\xf5\xeb\xe2\ \xf7\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe6\xf7\ \xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xef\xe4\xe0\xdc\xd5\xd8\xcc\xc5\ \xcb\xc9\xc2\xc9\xd1\xcb\xd2\xd4\xd0\xd6\xd5\xd0\xd5\xd1\xcb\xd2\ \xcc\xc5\xcd\xda\xcf\xd1\xf1\xe3\xdb\xf4\xea\xe0\xf3\xe9\xdf\xf4\ \xea\xe0\xf4\xea\xe0\xf4\xea\xe0\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\ \xde\xf3\xe7\xdc\xe9\xd6\xcf\xcd\xba\xbd\xb3\xa8\xb5\xb0\xa6\xb3\ \xaf\xa5\xb4\xaf\xa4\xb4\xae\xa5\xb4\xac\xa4\xb4\xac\xa5\xb4\xad\ \xa6\xb3\xaf\xa7\xb4\xb1\xaa\xb6\xb3\xac\xb9\xb5\xae\xbb\xbc\xb5\ \xc1\xc9\xc1\xc9\xca\xc2\xcb\xc2\xba\xc5\xb9\xb2\xbf\xb4\xae\xbd\ \xb1\xab\xbb\xaf\xa9\xba\xad\xa7\xb8\xaa\xa4\xb6\xa9\xa1\xb5\xab\ \xa2\xb5\xaf\xa6\xb7\xb3\xa9\xb9\xb5\xab\xba\xb7\xad\xbb\xb8\xaf\ \xbb\xb9\xb1\xbc\xba\xb1\xbc\xba\xb1\xbc\xbb\xb3\xbd\xbd\xb5\xbe\ \xbe\xb6\xc0\xbf\xb7\xc1\xc0\xb7\xc1\xbf\xb5\xc1\xc1\xb7\xc2\xcc\ \xc0\xc8\xd3\xc7\xcc\xd6\xca\xcf\xd7\xcc\xd1\xd8\xce\xd3\xd9\xd0\ \xd4\xd6\xcd\xd2\xd1\xc7\xcc\xcb\xc3\xc9\xc8\xc0\xc8\xc6\xbe\xc7\ \xc4\xbc\xc6\xc4\xbc\xc5\xc3\xbb\xc5\xc1\xba\xc3\xbe\xb5\xbf\xba\ \xb0\xbb\xb8\xad\xb9\xb8\xad\xb9\xb6\xac\xb8\xb5\xab\xb6\xb4\xaa\ \xb6\xb3\xa9\xb5\xb3\xa9\xb5\xb2\xa9\xb4\x00\x00\x00\xea\xe3\xe8\ \xea\xe2\xe6\xeb\xe2\xe5\xe9\xe0\xe3\xe8\xdf\xe3\xe7\xde\xe3\xe7\ \xde\xe2\xe7\xde\xe1\xe6\xdc\xdf\xe6\xdb\xde\xe3\xd8\xdb\xe2\xd7\ \xda\xe2\xd6\xd8\xe1\xd4\xd6\xdf\xd2\xd5\xde\xd3\xd6\xdf\xd5\xd8\ \xe1\xd5\xd8\xe3\xd6\xd8\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd8\xda\xe8\ \xda\xdb\xea\xdc\xdd\xe9\xdb\xdc\xea\xdc\xdd\xec\xde\xdf\xec\xde\ \xdf\xee\xe0\xe1\xee\xe2\xe1\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\ \xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe3\xf1\ \xe4\xe1\xf0\xe4\xe0\xee\xe2\xdf\xed\xdf\xdd\xed\xde\xdc\xeb\xdc\ \xda\xea\xdb\xd9\xe7\xd8\xd6\xe5\xd6\xd4\xe2\xd3\xd1\xdf\xd0\xce\ \xdd\xce\xcc\xd9\xca\xc8\xd6\xc7\xc6\xd2\xc3\xc3\xd0\xc0\xc1\xcf\ \xc0\xc1\xd0\xc1\xc2\xd4\xc4\xc4\xd6\xc6\xc5\xd9\xc8\xc6\xde\xcc\ \xc9\xe4\xd1\xcd\xe7\xd4\xcf\xea\xd7\xd2\xee\xdb\xd6\xef\xde\xd8\ \xf1\xe2\xdb\xf3\xe6\xde\xf4\xe8\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf7\ \xed\xe4\xf6\xee\xe4\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe5\xf7\xee\ \xe4\xf7\xed\xe4\xec\xe2\xde\xd6\xd0\xd4\xca\xc2\xc9\xcf\xc9\xcf\ \xd3\xce\xd4\xd3\xce\xd4\xcf\xc8\xcf\xca\xc3\xcb\xd4\xca\xce\xeb\ \xdc\xd7\xf5\xe9\xdf\xf5\xea\xe0\xf3\xea\xe0\xf5\xe9\xdf\xf5\xe9\ \xdf\xf4\xe8\xde\xf5\xe9\xdf\xf4\xe8\xde\xf4\xe8\xde\xf3\xe5\xdc\ \xe8\xd4\xcd\xc9\xb7\xbb\xb2\xa8\xb6\xb0\xa7\xb5\xaf\xa5\xb5\xae\ \xa4\xb4\xae\xa5\xb4\xad\xa6\xb4\xac\xa5\xb4\xae\xa7\xb4\xb0\xa9\ \xb5\xb3\xaa\xb7\xb3\xab\xb8\xb5\xaf\xbb\xc0\xb8\xc3\xca\xc3\xcb\ \xcb\xc4\xcb\xc6\xbd\xc8\xc0\xb7\xc3\xc1\xb7\xc1\xc2\xb7\xc1\xb9\ \xb0\xbe\xb2\xaa\xbb\xad\xa6\xb7\xad\xa3\xb7\xaf\xa7\xb9\xb6\xac\ \xbb\xb8\xaf\xbc\xba\xb0\xbd\xba\xb0\xbd\xba\xb1\xbd\xbb\xb2\xbd\ \xbc\xb3\xbd\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb7\xc1\xbf\xb7\xc1\xc0\ \xb8\xc2\xbf\xb6\xc1\xc3\xb8\xc3\xd2\xc5\xca\xda\xcc\xcf\xde\xd0\ \xd3\xdf\xd3\xd4\xe1\xd5\xd6\xde\xd2\xd4\xd8\xcd\xd0\xd2\xc7\xca\ \xcb\xc1\xc6\xc7\xbc\xc4\xc3\xba\xc2\xc0\xb8\xc1\xbf\xb6\xc0\xbf\ \xb6\xc0\xbd\xb4\xbe\xbc\xb3\xbd\xbb\xb3\xbd\xb9\xb0\xba\xb7\xad\ \xb9\xb5\xab\xb7\xb4\xaa\xb6\xb2\xa8\xb5\xb2\xa8\xb5\xb0\xa6\xb3\ \xae\xa5\xb3\xad\xa5\xb2\x00\x00\x00\xed\xe4\xe7\xed\xe4\xe7\xec\ \xe3\xe6\xeb\xe1\xe4\xe9\xdf\xe2\xe9\xe0\xe3\xe9\xe0\xe3\xe8\xdf\ \xe2\xe7\xde\xe0\xe6\xdb\xde\xe5\xda\xdc\xe4\xd8\xda\xe3\xd6\xd8\ \xe1\xd4\xd6\xe0\xd3\xd6\xdf\xd2\xd6\xe0\xd2\xd6\xe1\xd4\xd6\xe2\ \xd5\xd7\xe3\xd6\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\ \xdb\xe9\xdb\xdc\xea\xdc\xdd\xea\xdc\xdd\xec\xde\xdf\xed\xdf\xe0\ \xee\xe2\xe0\xf0\xe3\xe1\xf0\xe4\xe2\xf1\xe4\xe3\xf1\xe5\xe3\xf1\ \xe5\xe3\xf1\xe5\xe3\xf1\xe6\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\ \xe1\xf0\xe3\xdf\xef\xe1\xde\xed\xde\xdb\xea\xdb\xd9\xe9\xda\xd8\ \xe7\xd7\xd5\xe5\xd5\xd2\xe1\xd1\xd0\xde\xce\xcc\xda\xcb\xc9\xd8\ \xc9\xc7\xd6\xc6\xc6\xd1\xc2\xc3\xce\xc0\xc3\xce\xc0\xc2\xcf\xc1\ \xc2\xd2\xc4\xc6\xd6\xc8\xc7\xdb\xcb\xc9\xde\xce\xcc\xe3\xd2\xcf\ \xe7\xd6\xd3\xea\xd8\xd3\xec\xda\xd5\xee\xde\xd8\xf1\xe2\xdb\xf2\ \xe6\xdd\xf4\xe7\xdf\xf4\xe9\xe1\xf5\xea\xe2\xf7\xec\xe3\xf7\xec\ \xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xed\xe3\xf7\xed\xe3\xf7\xec\xe3\ \xe9\xde\xdb\xd0\xc8\xce\xcb\xc3\xca\xd0\xc9\xd0\xd2\xcc\xd3\xcf\ \xc8\xcf\xce\xc6\xcd\xd8\xce\xd0\xeb\xdd\xd8\xf4\xe8\xde\xf5\xe9\ \xdf\xf5\xe9\xdf\xf6\xe9\xdf\xf4\xe9\xdf\xf4\xe9\xdf\xf5\xe9\xdf\ \xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf3\xe6\xdc\xe8\xd4\xcd\xc8\ \xb5\xba\xb1\xa5\xb4\xb0\xa6\xb6\xb0\xa6\xb6\xb0\xa6\xb6\xaf\xa5\ \xb5\xad\xa6\xb5\xae\xa7\xb5\xb0\xa9\xb6\xb2\xaa\xb7\xb3\xaa\xb7\ \xb2\xaa\xb7\xb4\xad\xb9\xc0\xb8\xc2\xca\xc2\xcb\xcc\xc6\xcd\xc8\ \xc0\xc9\xc9\xbe\xc6\xd1\xc3\xc7\xd4\xc5\xc6\xc8\xbc\xc2\xb7\xaf\ \xbd\xb1\xa9\xba\xb4\xab\xbb\xb7\xae\xbd\xbc\xb3\xbf\xbe\xb4\xbf\ \xbd\xb4\xbf\xbd\xb3\xbf\xbd\xb3\xbf\xbe\xb5\xbf\xbf\xb6\xc0\xbf\ \xb6\xc0\xc0\xb8\xc2\xc0\xb8\xc2\xbf\xb7\xc2\xbf\xb7\xc2\xc6\xbc\ \xc5\xd6\xc9\xcc\xdf\xd1\xd2\xe4\xd6\xd7\xe7\xd9\xda\xe5\xd7\xd8\ \xe1\xd4\xd5\xdc\xcf\xd1\xd5\xc8\xca\xcc\xc1\xc5\xc6\xbb\xc2\xc2\ \xb8\xbf\xbd\xb4\xbd\xbb\xb2\xbb\xbb\xb1\xbb\xba\xb0\xba\xba\xaf\ \xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb6\xac\xb7\xb4\xaa\xb6\ \xb3\xa9\xb6\xb1\xa8\xb5\xae\xa5\xb3\xad\xa4\xb4\xab\xa2\xb2\xa8\ \xa1\xb0\x00\x00\x00\xee\xe5\xe8\xed\xe4\xe7\xec\xe2\xe6\xed\xe2\ \xe5\xeb\xe1\xe3\xea\xe0\xe3\xea\xe0\xe3\xe9\xdf\xe2\xe9\xde\xe0\ \xe7\xdc\xde\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd6\xd8\xe1\xd4\xd6\xe0\ \xd3\xd5\xdf\xd2\xd4\xdf\xd1\xd4\xe0\xd3\xd5\xe0\xd3\xd5\xe2\xd5\ \xd7\xe4\xd6\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\ \xe9\xdb\xdc\xea\xdc\xdd\xeb\xdd\xde\xec\xde\xdf\xed\xe1\xdf\xef\ \xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\xf1\xe6\ \xe3\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\xe1\ \xef\xe2\xde\xed\xdd\xda\xec\xdb\xd8\xea\xd9\xd6\xe8\xd7\xd4\xe5\ \xd4\xd2\xe2\xd1\xcf\xdf\xcd\xcc\xda\xcb\xc9\xd8\xc9\xc7\xd5\xc6\ \xc7\xd2\xc3\xc5\xce\xc1\xc3\xcd\xbf\xc2\xcd\xc1\xc3\xd1\xc4\xc6\ \xd6\xc9\xca\xda\xcc\xcd\xdf\xd0\xce\xe4\xd4\xd1\xe7\xd7\xd4\xea\ \xd9\xd6\xec\xdc\xd8\xee\xde\xd9\xf0\xe2\xdb\xf3\xe5\xde\xf3\xe7\ \xe0\xf4\xe9\xe1\xf5\xea\xe2\xf6\xec\xe4\xf7\xec\xe3\xf7\xec\xe3\ \xf7\xec\xe3\xf6\xec\xe2\xf6\xec\xe2\xf6\xec\xe2\xf2\xe6\xdf\xe4\ \xd8\xd7\xd9\xd0\xd3\xd8\xd0\xd3\xd9\xd0\xd3\xda\xd0\xd3\xe3\xd6\ \xd5\xf0\xe2\xdc\xf4\xe9\xdf\xf5\xe9\xdf\xf5\xe9\xdf\xf5\xe9\xdf\ \xf5\xe9\xdf\xf4\xe9\xdf\xf5\xe9\xdf\xf5\xe8\xde\xf5\xe9\xdf\xf4\ \xe8\xde\xf4\xe8\xde\xf4\xe6\xdc\xea\xd6\xcf\xca\xb7\xbb\xaf\xa2\ \xb3\xae\xa3\xb4\xb0\xa6\xb5\xb1\xa7\xb7\xb0\xa7\xb7\xae\xa7\xb6\ \xb0\xa8\xb5\xb3\xaa\xb7\xb3\xaa\xb7\xb2\xaa\xb7\xb1\xa9\xb7\xb2\ \xab\xb8\xbe\xb6\xc1\xc9\xc2\xca\xcc\xc5\xcc\xca\xc2\xcb\xcb\xc0\ \xc7\xd4\xc6\xc9\xd1\xc2\xc5\xc9\xbc\xc2\xb9\xaf\xbc\xb6\xad\xbc\ \xbb\xb2\xbf\xbf\xb6\xc1\xc1\xb7\xc2\xc1\xb8\xc2\xbf\xb7\xc0\xbf\ \xb6\xc0\xbf\xb7\xc0\xc0\xb7\xc1\xc1\xb9\xc1\xc2\xb9\xc3\xc1\xb8\ \xc2\xbf\xb8\xc2\xbf\xb6\xc1\xca\xbf\xc6\xda\xcc\xce\xe3\xd5\xd4\ \xe9\xdb\xd9\xeb\xde\xdb\xe9\xda\xd9\xe5\xd6\xd5\xdf\xd1\xd1\xd9\ \xcb\xcd\xd1\xc4\xc6\xc9\xbc\xc1\xc1\xb6\xbe\xbd\xb2\xbb\xba\xb0\ \xba\xb9\xaf\xb9\xba\xaf\xb9\xb9\xae\xb8\xba\xaf\xb9\xb9\xae\xb8\ \xb9\xae\xb8\xb8\xae\xb8\xb6\xad\xb8\xb4\xaa\xb6\xb2\xa9\xb5\xb0\ \xa7\xb4\xae\xa5\xb3\xaa\xa4\xb3\xa7\xa0\xb1\xa3\x9f\xaf\x00\x00\ \x00\xee\xe6\xe8\xed\xe5\xe7\xee\xe4\xe6\xed\xe2\xe5\xec\xe1\xe3\ \xeb\xe0\xe3\xea\xe0\xe2\xea\xdf\xe1\xe9\xde\xe0\xe8\xdc\xde\xe7\ \xda\xdc\xe6\xd9\xdb\xe4\xd7\xd9\xe2\xd5\xd7\xe0\xd3\xd5\xdf\xd2\ \xd4\xde\xd1\xd3\xdf\xd2\xd4\xe0\xd3\xd5\xe1\xd3\xd5\xe2\xd4\xd5\ \xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe9\ \xdb\xdc\xea\xdc\xdd\xec\xde\xde\xec\xdf\xde\xef\xe2\xe0\xef\xe3\ \xe1\xf0\xe4\xe2\xf1\xe4\xe3\xf1\xe5\xe3\xf1\xe6\xe2\xf2\xe7\xe3\ \xf3\xe8\xe4\xf2\xe7\xe4\xf2\xe7\xe2\xf1\xe6\xe0\xf0\xe4\xde\xee\ \xde\xdb\xeb\xda\xd7\xea\xd9\xd6\xe8\xd7\xd4\xe5\xd4\xd1\xe2\xd1\ \xce\xdf\xcd\xcc\xdb\xcb\xc9\xd7\xc8\xc7\xd5\xc6\xc7\xd3\xc5\xc6\ \xd0\xc3\xc5\xcd\xc1\xc4\xcd\xc2\xc5\xd1\xc5\xc8\xd6\xca\xcb\xda\ \xce\xcf\xde\xd1\xd2\xe3\xd5\xd4\xe7\xd8\xd6\xe9\xda\xd7\xec\xdd\ \xda\xee\xdf\xdc\xf0\xe3\xdf\xf2\xe5\xdf\xf3\xe7\xe0\xf4\xe9\xe1\ \xf5\xea\xe2\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xec\xe2\xf6\xec\xe2\xf6\ \xec\xe1\xf6\xec\xe2\xf5\xeb\xe1\xf5\xeb\xe1\xf4\xe9\xe0\xf2\xe6\ \xde\xf1\xe4\xdd\xf1\xe5\xdd\xf2\xe6\xde\xf4\xe9\xdf\xf5\xe9\xe0\ \xf5\xe9\xdf\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf5\ \xe8\xde\xf5\xe8\xde\xf5\xe9\xdf\xf5\xe9\xdf\xf4\xe8\xde\xf3\xe8\ \xdd\xf3\xe6\xdd\xed\xdb\xd3\xd2\xbe\xbf\xae\xa1\xb1\xa9\x9e\xb2\ \xac\xa1\xb3\xae\xa4\xb5\xb1\xa7\xb7\xb1\xa8\xb6\xb2\xa9\xb6\xb3\ \xab\xb8\xb2\xab\xb8\xb0\xaa\xb8\xb0\xaa\xb8\xb2\xaa\xb8\xbc\xb4\ \xbf\xc7\xbf\xc9\xcc\xc4\xcc\xcb\xc3\xcd\xc9\xc0\xc9\xc9\xbf\xc7\ \xc7\xbb\xc3\xbe\xb3\xbe\xb8\xaf\xbb\xbb\xb2\xbf\xc1\xb9\xc3\xc3\ \xbb\xc4\xc4\xbc\xc3\xc2\xb9\xc3\xc1\xb8\xc2\xc0\xb7\xc1\xc2\xba\ \xc1\xc3\xbb\xc2\xc2\xba\xc3\xc2\xb9\xc3\xc0\xb8\xc2\xc0\xb7\xc1\ \xcd\xc1\xc7\xde\xcf\xd0\xe7\xd7\xd6\xec\xdf\xdb\xee\xe1\xdd\xec\ \xdd\xda\xe9\xd9\xd7\xe4\xd4\xd2\xdf\xcf\xcf\xd8\xc8\xca\xd0\xc2\ \xc4\xc7\xb9\xbf\xbe\xb3\xbb\xbb\xb0\xb9\xb9\xae\xb8\xba\xae\xb8\ \xb9\xaf\xb9\xb9\xae\xb8\xb8\xae\xb8\xb8\xae\xb8\xb7\xae\xb7\xb7\ \xad\xb8\xb6\xac\xb7\xb4\xaa\xb6\xb2\xaa\xb5\xb0\xa7\xb4\xac\xa5\ \xb3\xa8\xa2\xb1\xa4\x9f\xb0\x9f\x9c\xae\x00\x00\x00\ \x00\x00\x08\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\x1e\x75\ \x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x07\x11\x2e\ \x10\xa7\x86\x80\x81\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\ \xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x07\x88\x49\x44\x41\x54\x78\ \xda\xd5\x96\x59\x6f\x1b\xe7\x15\x86\xf9\x13\x7a\x97\x7f\xd0\xde\ \x15\x2d\xda\x04\xbd\x29\x72\xd3\xab\x22\x40\xda\x5e\x14\x68\x2f\ \x8b\xc2\x41\x51\xa4\x80\x51\x74\x85\x9d\x08\xb1\x55\x3b\x76\x6c\ \x59\x4a\xac\x46\xb2\x2c\x6f\xb2\xac\xcd\xd6\x2e\x8a\xab\xc8\x21\ \x87\xe2\x3a\xdc\x86\xc3\xe1\x70\x27\x45\x8a\x14\x29\x89\xa2\x44\ \x59\x9b\xe7\xed\xf9\x14\x57\xb4\x22\x59\x96\x9a\xf6\xa2\x1f\x70\ \x30\xc4\x70\x66\x9e\xf7\x3b\xe7\xbc\x67\x46\xf3\x7f\xb1\x7e\x7d\ \xfe\x9d\xfd\xe3\x8d\xce\xbb\x6f\x3d\xe8\x1b\x39\x3f\xad\xe5\x46\ \x0d\x46\x87\x8f\xb3\x79\x4b\xbc\x43\x28\xd9\xec\x5e\x1f\x67\xf7\ \x8c\x8e\x4e\xe8\xce\xdf\xe9\x7b\xfc\x16\xbb\xf6\x37\x2d\x6d\xdf\ \x1c\xfc\xcf\xee\xc1\xaf\x8e\x3d\xfd\xbf\x9c\x9a\xe1\x72\x9c\xcd\ \x07\x51\x4c\x41\x12\x33\x6a\x34\x9a\x45\x2c\x96\x43\x32\xb9\x80\ \x4c\xa6\x88\x85\x85\x8a\x5a\x2a\xad\x20\x9e\xc8\xd2\x35\xf2\xc2\ \x8c\xde\xfc\x2b\x76\xaf\xce\x68\xfd\xcf\x05\x7c\xda\x71\xff\x7b\ \x23\xa3\xe6\x94\xd3\x15\x85\x5f\x88\xa9\xc1\x60\x1c\xe1\x30\x09\ \x90\x32\xfb\xf0\x44\x62\x01\xe9\x74\x11\xb9\x5c\x19\x85\x42\x05\ \x8b\x8b\x55\x54\x2a\xab\x58\x5d\x5d\x57\xeb\xf5\x06\xa4\x68\x3c\ \x33\x31\xad\xfb\xfe\x99\xa0\x00\xf6\x8f\xb7\x7b\x87\xcf\x8d\x68\ \xfd\xe0\x9d\x31\xd5\xed\x55\xe0\x0f\xbc\x09\xbe\x8c\xa5\xa5\x15\ \xac\xac\xd4\xb1\xb6\xd6\xc0\xc6\xc6\x26\xb6\xb7\x77\xd4\xd5\xd5\ \x1a\x6c\xbc\xf3\x03\xf6\xcc\x96\x96\x96\xd3\x89\x78\x32\x72\xef\ \xb6\xd3\x65\x83\xc1\x2e\xa9\x06\x7b\x1c\x1e\x21\x81\x40\x90\xc1\ \xd3\x27\xc0\x57\x09\xbe\xf6\x12\xfe\x1c\xcf\x9f\x6f\x33\x01\x78\ \xf1\xe2\x85\xba\xbb\xbb\x0b\xb7\x4f\xf8\xe2\x54\xf0\xbe\x81\xee\ \x0f\x3d\x5e\x03\xed\xd8\x0a\x21\xe0\x81\x69\x5e\x81\xcd\x9b\x46\ \x48\xcc\x22\x2a\xbf\x1e\xbe\xbc\xcc\xe0\x1b\x87\xe0\x7b\x7b\x7b\ \x4c\x00\x98\x80\xcd\xcd\x2d\x58\x6c\xfc\xef\x5f\x0b\xbe\xf7\x60\ \x50\xf3\xb8\xf7\xd6\x8f\x5c\xce\xa7\x08\x06\x8d\x6a\x48\xb4\x40\ \x8c\xf0\x08\x8a\x01\x58\x48\x80\x20\xe6\x10\x55\x5e\x0f\xaf\xd5\ \xd6\x0f\xe0\x3b\x3b\xbb\x87\xe0\x5b\x5b\x3b\x74\x7e\x4b\xad\x54\ \x96\x31\xab\x37\xbf\xc3\xcd\xbb\x8e\x17\x31\xd7\x3f\x56\x91\x78\ \xbd\x2a\x05\x67\x10\x8d\x98\x20\xcb\x76\xc4\x14\x37\x44\x59\x82\ \x3d\x90\x87\x9c\x28\x22\x9d\x3d\x0e\xbe\x81\xf5\xf5\x4d\x06\x61\ \x70\x82\x1e\x82\xd3\xee\x9f\xd3\xff\x0d\xd4\xd7\x36\xd4\x98\x92\ \xa8\x1c\x0b\x7f\xd4\xfd\xf0\xb7\x21\xce\x83\xa8\xd9\x05\x85\xe3\ \x10\x0f\x1a\x90\x50\xcc\x64\x33\x07\x52\x69\x1f\xa4\xb8\x02\x5f\ \x74\x11\xe9\xdc\x12\xeb\xf6\x97\x35\x3f\x09\xbe\x47\xf0\xed\x57\ \xe0\xeb\xe4\x8e\xfa\xbe\x60\x0b\xc7\x7f\x70\x44\x80\x71\x5c\x5f\ \x13\x1d\x82\x1a\x99\x17\xa0\x38\x04\xa4\xec\x6e\x64\x03\x1c\xb2\ \x49\x0b\xa5\xdc\x45\x3e\x0f\x22\x9a\xca\x42\x4e\x57\x90\x5f\x28\ \xab\xf9\x5c\x81\xca\x91\x43\x3e\x5f\x20\x31\x55\x34\x1a\x9b\x2a\ \xa5\xfd\x58\xf8\x5a\x8d\xc1\xd7\x50\xad\x32\xd1\x35\x75\xa9\xb2\ \xbc\x7b\x08\xfe\xf9\xed\x87\xdf\x71\xd3\xee\x23\xae\x10\x64\x77\ \x18\x71\xaf\x88\x94\x3f\x8c\x9c\x27\x88\xa2\xcf\x8d\x62\x92\x47\ \xa9\xe8\x41\xa9\x14\x81\x10\x51\x10\x8a\x26\x6a\xd5\xea\xca\xb3\ \xcd\xcd\xcd\x76\xda\x79\x7b\xad\xb6\xf6\xac\x58\x2c\xd6\xd6\xd6\ \xd6\x0e\xe0\x8d\x46\x13\xce\x32\xc5\x6c\x49\xd7\x52\x06\x56\x21\ \x86\x63\xe8\xbe\xdf\xf7\xed\x03\x01\xfd\x03\xe3\x17\x22\xa1\x24\ \x22\x01\x05\xb1\xa0\x82\x44\x28\x86\x34\x45\x4e\x8c\xa1\x10\x89\ \x62\x29\x14\x46\x35\xee\x45\x2e\x69\xa5\x4c\x88\x41\x00\x7f\xa7\ \xb8\x44\x71\x9d\xe2\x1a\xc5\x27\xec\x5c\xa5\xb2\xe4\xaf\x54\xaa\ \xac\xe3\x09\x4e\xa5\xa9\x6f\xb0\x2c\x30\x77\x50\xdf\x94\xa9\x9c\ \x39\x28\x4a\x9a\x22\x83\xc1\xe1\xf1\x0b\x07\x02\x66\xf5\x76\xab\ \x28\xa6\x55\xe6\x73\x45\xce\x20\x11\xcb\x22\x13\xcf\x62\x81\x62\ \x31\x9e\xc1\x52\x22\x85\x72\x54\x52\x73\x81\xf9\x1a\x80\xbf\x51\ \xb4\x65\x33\xd9\xae\x99\x29\xed\xcf\xfa\xfb\x86\x7e\x6e\xb5\xd8\ \x1e\x31\x31\x4c\x44\x26\x93\x5b\x21\xb8\xba\x41\xbb\xa7\x9d\x93\ \xe0\x12\xb2\x99\x02\x52\xa9\x1c\xe2\x04\x8f\x46\x13\x94\x81\xb8\ \xaa\xd5\x59\x9a\x33\xda\x64\x71\x25\x25\x89\xcd\xf6\x6c\xd3\xe7\ \xd9\x12\x0a\xf9\x32\x4a\x85\x25\x54\x49\x7d\x2e\x16\x43\xad\x52\ \x19\x00\x70\x39\x1c\x12\xdb\xd9\x7d\x3c\xcf\x6b\xda\xae\x77\x68\ \xd8\x32\xe8\x4c\xf7\x59\x56\x68\xf2\x0d\x66\x33\x0b\x54\xae\x2a\ \x0a\x0b\x74\x5f\xb6\x78\x18\x4e\x99\x0d\xf8\x25\x90\x80\xe4\x81\ \x00\x9b\xdd\xd7\x38\x32\xe1\x16\x96\x9a\xe3\x95\x3a\x37\xa1\xa4\ \xb0\xbb\xb3\xfb\x29\x80\xf6\x7b\x3d\x8f\x7f\x32\xf4\x60\xe8\xe0\ \xfe\x4b\x2d\x57\x34\x77\xba\x7a\xdf\x67\x59\xa0\xbe\xb8\x26\xcb\ \x71\x4a\xf9\xf1\x70\x3f\xc1\xbd\xde\x30\x66\xb4\x96\xc6\xc1\x03\ \x1c\x4e\xff\x56\x32\x79\xd2\x84\x6b\xd0\x83\xb2\xac\xc3\x2f\x03\ \xb8\xdd\xfa\xf1\x8d\x1f\xb7\x68\x9a\x73\x7d\x66\x66\x46\x33\x34\ \xfc\xf4\x3d\x00\x37\x77\xb6\x77\x5a\xc3\x21\x69\x1f\x9e\xdc\x87\ \x67\x8e\xc0\x9d\xce\x00\xa6\xa6\x4c\x5b\xaf\x0a\xc8\x64\x32\xc7\ \xc1\x9b\x3e\xa7\xe6\x62\x5d\xfc\x04\xc0\x95\xe9\x31\xfd\x47\xff\ \xbe\xb7\xa5\xe5\xab\x4c\x24\xe2\x09\xd6\x8c\xad\xe5\xc5\xc5\xbe\ \x88\x2f\x8a\xa4\x92\x85\x12\x4b\x21\x12\x8d\x23\x4c\x70\xe1\x15\ \x38\xcf\xfb\x30\x3a\xaa\xcf\x34\x05\xcc\x0b\x7c\x3e\xff\x75\x78\ \x8d\xc1\x0f\xe6\x7a\xbd\x5e\x27\x11\x95\x3c\x80\xbf\x52\x67\xdf\ \x79\x36\x38\x75\xf1\x8f\xbf\xbb\xf0\xdd\x5b\xd7\xbf\x7c\x5b\xf0\ \x05\x5a\x55\x55\xed\x04\xf0\x97\x48\xd8\x56\x94\x22\x6e\x55\x21\ \xa8\xe4\x25\xcb\x0a\x32\x7c\xfe\x08\xdc\x04\x9f\x27\xb8\x9d\xe0\ \x1c\x59\x7e\x60\x68\x92\x7f\xc5\x05\xd6\xab\xf4\x31\xf1\x72\xc2\ \xad\x30\xff\x32\x30\x0b\xe6\x67\xe6\x6b\x36\xdb\x99\x00\x26\xc4\ \xc2\x44\x50\x5c\xdd\xdb\xdb\xbd\xab\x42\xed\x06\xf0\x0f\x76\x2e\ \x9b\x92\xb9\x88\xa8\x43\x2a\x61\x87\x14\xb5\x21\x14\xf0\x42\xb0\ \x87\xe1\xe1\x42\x70\x58\x03\x04\xf6\x61\xce\xea\x86\xd9\xe2\x46\ \x77\x4f\xff\xd5\x03\x01\xbd\x0f\x07\x7e\x58\x2e\xaf\xb0\x14\x33\ \x28\x41\x1a\x2c\x98\x9f\xd9\xee\xd9\x4c\x67\xf5\xa7\xdf\xdb\x6a\ \xa1\xb0\x48\xd6\x5a\xcc\x37\x1a\x8d\xbb\x00\x3e\xa2\xf8\x98\xa6\ \x5c\xaf\x14\x92\xf3\x7e\x77\x10\x09\x39\xa8\xc6\x63\x1c\xe4\xa8\ \x01\xa1\x90\x1e\x5e\xc1\x04\x27\xe7\x82\xdd\xe8\x83\x45\xe7\x81\ \x61\xc6\x85\xa9\x09\x1b\x3e\xb9\xf2\xf9\xdb\x87\xa6\x61\x2e\x57\ \xd8\xa5\xb4\xab\xf4\x56\x63\x35\x3f\x0c\x6f\xbe\x52\x69\xa2\x35\ \x50\x5c\x2c\xab\x89\x38\xd5\x37\x22\x23\x14\x8c\x20\x1c\x90\x10\ \x15\xe3\x6a\x5c\xa2\x6e\x0f\x29\x90\x42\x02\xc2\xa2\x89\x04\x68\ \x21\x08\xd3\x70\xba\x27\xc1\x59\x0d\x30\x69\x79\xe8\x26\x1c\x6a\ \xdf\xbd\xc9\x6d\xcd\xd7\x17\x7d\xc3\xfd\x69\x7d\xfd\xf9\x89\x70\ \x56\x1a\xf6\x42\x61\x33\xbd\x5c\x26\x9f\x17\x96\x5e\x5a\x2d\x8f\ \xb8\x4c\xf0\x30\x75\xbb\x4f\x86\xdf\x23\x52\xb8\xe0\xf3\x52\x06\ \xbc\x13\x70\xba\xc6\x60\xe3\x9f\xc2\x3c\x37\x06\xfd\xb4\x19\x37\ \x3f\xeb\xf9\xb3\xe6\xb8\x25\x2b\x89\x75\x2a\x81\x7a\x22\xbc\x42\ \xf0\x52\xf5\xa8\xcf\x25\x82\x07\x68\xc8\x78\x22\xf0\x39\x42\x70\ \xd9\xfc\x70\xda\x79\xcc\xf3\x33\xe0\x1d\xcf\xa8\xfe\x4c\xc0\xb0\ \x3a\x34\xdc\xd5\xd0\x1c\xbb\xbe\x75\x83\xb2\x60\xfa\x69\x7d\x7d\ \xe3\x4c\xf0\xe6\x78\x25\x9f\x0b\x12\x7c\xae\x30\x5c\x5c\x00\x8e\ \x39\x2f\x38\xa3\x0b\x16\xa3\x15\x16\xf3\x24\xcc\xe6\x11\x68\x67\ \xfb\xf1\xc5\x97\x57\xde\xd3\xfc\xe1\xd9\x51\x7e\x73\x26\xb8\xaf\ \xa9\x50\xcf\x02\x6f\x0e\x19\x0f\xf9\xdc\x41\x70\x8b\x17\x36\x83\ \x0b\x73\xb3\x0e\x18\xa7\xed\xd0\x4d\x9b\xa0\x9f\x9d\xa0\xce\xbf\ \x75\x53\x73\x9a\xe5\x15\x02\x5a\xfa\x92\x39\x0b\xbc\x39\x64\xec\ \xe4\xf3\x39\x37\xe6\x74\xf3\x30\x4e\xd9\x31\x3b\x6e\xc5\xf4\xd8\ \x1c\x3a\x3b\x7b\x67\x4f\x05\x37\x1a\x9d\xfb\x47\x0b\x67\xbf\x49\ \x1f\x0e\xac\xe1\xd4\x53\xc3\x79\x82\x33\x9f\x1b\xe7\x61\xd0\x12\ \x7c\xc2\xaa\x8e\x0f\x1b\xd0\xde\x76\x77\xff\xe5\xd5\x7a\xeb\x8e\ \xe6\x4c\x6b\x7c\x4a\xfb\x7e\x30\x24\x6d\x95\x4b\xcb\x04\x2f\xa8\ \x6f\x84\x5b\x08\x6e\x22\xb8\x8e\x57\x75\x64\xb9\x47\xf7\x47\xb7\ \x3f\xbb\xde\xf9\x0b\xcd\x37\x5d\xe3\x93\xba\x8b\x4e\x97\x80\x98\ \x9c\x82\x12\x4b\x53\xc3\x29\x47\xe0\x36\xce\x0d\x0b\x09\xd0\xcd\ \xda\xf1\xf8\xc9\x04\xda\x3a\x7a\x2e\x6a\xfe\xdb\xab\xb3\xeb\xde\ \xbb\xa3\x63\xda\x0e\x9d\x81\x13\x67\x75\x5c\x55\x3b\x6b\xc5\x14\ \x35\xd8\xe8\xb8\xbe\x3a\x34\x3c\x25\xde\xe9\x79\xd2\x71\xe9\xf2\ \x8d\x77\x35\xff\xab\x75\xae\xab\xeb\x8d\xd7\xfc\xe0\x5c\xd7\x99\ \x9e\xf9\x2f\x1f\xff\xdd\x5f\xc8\x58\xee\x62\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xd2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x4f\x49\x44\ \x41\x54\x78\xda\xa5\x93\xcb\x4f\x13\x51\x14\x87\xbf\x3b\x33\x1d\ \x5a\x5b\x0c\x19\xc0\x42\xa0\xe5\x61\x13\x17\x24\xa8\x71\x65\x8c\ \x1b\x8d\x89\x3b\x57\xee\x64\xa7\x0b\x1f\x7b\x48\x7c\x9b\xe0\x42\ \x4d\x8c\x8f\x3f\x42\x57\x2e\x5d\x68\x74\x61\x0a\xa8\x41\x40\x5d\ \xb0\xd0\x50\x1e\xa2\xb5\x0d\x8f\x4e\xa1\x32\x33\x9d\xeb\x1d\x26\ \x4e\x0a\x5b\x4f\x72\x72\xef\xe6\xfb\xf2\x3b\x77\xce\x08\x29\x25\ \xff\x53\x06\xbb\x6a\x4e\x88\xc1\x55\x78\x66\xe6\x72\xc9\xa6\x5c\ \x2e\x16\x4b\xa7\x75\xb7\x58\xac\x3b\xb3\xb3\xf6\x9e\x42\xe1\x6c\ \x9f\x94\x9f\x77\x08\x76\xc3\xa5\x6c\x36\xdf\x79\x77\x34\xd5\x64\ \x59\x08\xa1\x81\xa6\x21\x3d\x17\xa7\x62\x77\x2e\x0f\x0f\xe7\x11\ \xe2\x58\xa3\x24\x18\x21\x82\x17\xbb\xbb\xf2\x3d\x37\x6e\xa6\xcc\ \x8d\x2a\xb2\x5e\x07\xcf\xc3\x57\xa7\xef\xba\xd4\x7d\x1f\x69\xb5\ \xb2\x74\xff\x5e\x35\xf3\x63\x39\x92\x68\xff\xe0\xb9\x8e\xf4\x58\ \xcf\xed\x5b\x29\xbd\x5c\x42\x28\x48\x57\x2d\x2a\x15\x74\xd5\x86\ \x82\x0d\x29\x91\xdf\xbf\x91\x1d\x19\x4e\x15\x3a\x3a\xc6\x02\x86\ \x48\x60\x18\xcf\x7b\xaf\x5f\x4d\x6a\xf3\x0b\xe8\xbe\x4f\xdb\xb9\ \x21\x5a\x87\x86\xd4\x3d\x10\x79\xb4\x9f\xbf\x40\xe7\xc5\x4b\x98\ \x02\xdc\xc9\x49\x7a\xaf\x8d\x24\x03\x26\x7a\x83\x9a\xe7\x25\xaa\ \x1f\x26\x68\x69\x69\x43\x98\x26\x38\x0e\x46\x26\x83\x75\xf9\x0a\ \xc1\x88\x31\x75\x77\x0b\x73\xe8\xab\xab\x18\x2a\xd1\xc6\xfb\x89\ \x6d\x26\x4a\xe0\x80\x60\xb3\x8a\x56\x59\x47\x2f\xfe\x62\x65\xf4\ \x0e\xee\xc2\x3c\x46\x77\x46\xc1\x59\xdc\xc5\x05\xd6\x9f\x3c\x26\ \xae\x44\xcd\x03\x03\x18\xba\xd8\x66\xa2\x04\x1e\x88\x95\xfc\x5b\ \x9a\x8c\x66\xea\xc9\x24\x7a\x36\x1b\x3e\x22\x61\x49\xd7\x65\x63\ \xfa\x13\xde\xf4\x14\x75\xdb\x66\x2d\x11\x32\x8d\x09\x90\x9b\x36\ \xfc\x5c\xc6\x5d\x5f\xa3\xfd\xc1\x43\xcc\xbe\x7e\xfe\x7c\xfd\xb2\ \xdd\x66\xff\x7e\xd2\x8f\x9e\xe2\x27\xe2\x88\x00\xd2\x43\x26\x4a\ \x20\x61\xab\xa6\xb3\xa3\xb6\x14\xb8\x78\xfa\x24\xbe\xef\xd3\xf3\ \xf2\x35\x9a\x69\x22\x01\x01\x54\xf4\x90\x89\xf6\x60\x4a\x88\x83\ \xef\x62\x8c\x0f\x36\x93\xe8\xb2\x41\xdb\xd7\x1e\xda\x83\x4f\x0a\ \xb8\x96\x05\x7a\x0c\x7e\x17\x59\x4a\xc1\x8c\x4d\xed\xb8\xcb\xd1\ \xc3\x52\xce\x44\x8b\x14\x48\xde\x98\x8c\x1f\xd9\x4b\x22\x53\x21\ \x8c\x2a\xc2\x53\x02\xbe\x84\xa5\x16\xc1\xc7\x35\x59\x3b\xe1\x84\ \x70\xe3\x26\x46\x92\x57\x4a\x72\xc0\x57\x49\x52\x49\x62\xf1\x38\ \xba\x61\x50\xf7\x3c\xca\x08\x26\x57\xca\xb5\x53\x0d\xf0\x6e\x41\ \x24\x19\x87\x17\xea\x27\x4a\xc4\x2d\x4b\x0b\x66\xf7\x1d\x07\xaf\ \x54\xaa\x1d\x2a\x97\xcf\x44\x70\xa3\xe0\x7f\xea\x2f\xb2\x2a\x1f\ \x46\x55\x40\xa7\x1e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x07\x2e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x06\xf5\x49\x44\x41\x54\x78\xda\xbd\x56\x6b\x6c\x9b\xe5\ \x15\x1e\x1b\xfc\xd8\xd6\xe5\xb2\x5c\x3a\x27\x4e\x73\x6b\x12\xe7\ \xe2\xa4\xb5\x13\x3b\xb1\xe3\x24\x8e\x9d\x8b\x73\x69\x93\x26\xd0\ \xa5\x45\x5d\xa9\x54\x95\xcb\x4a\xa5\x41\x0b\x22\x1b\x63\x20\x2a\ \x15\x21\x7a\x51\x27\x4a\x88\x26\x84\xc4\x4d\x9d\xa8\x46\x11\x1b\ \x7f\x2a\x01\x49\x25\x54\x51\x40\x29\x69\x1b\xc7\x75\xee\xb6\x13\ \x3b\x6d\xd2\x4b\xe2\x5c\xfc\xf0\xf4\xd0\x4f\x2b\x11\x54\x76\xd1\ \x76\xa4\x47\xdf\xe7\xd7\xef\xf7\x3e\xcf\x39\xef\x39\xe7\x7d\x7f\ \xa6\x58\x7c\x7c\xfc\x2a\x3e\x74\x44\xd9\xff\x10\xba\x84\x84\x04\ \xf2\xfc\xb0\x19\xf0\x7f\x30\xf2\x18\x7f\x4c\x40\x05\x68\xd3\x81\ \x00\x2e\x4f\x4f\xe3\xca\x4d\x5c\xbe\x8c\x99\x2b\x57\x04\xb3\x33\ \x33\x98\xbd\xf5\xbc\x3a\x3b\x0b\x01\xdf\x09\xe5\xb7\xfc\xa7\x40\ \xbe\xe3\xf7\x84\xac\x75\x39\x10\x50\x04\x54\xde\x51\x00\x49\x15\ \xc2\xef\x93\x5d\xbd\x8a\x6b\x37\x71\xed\x1a\xae\xff\x30\xe4\x3f\ \xce\x91\xb9\xfc\x46\xde\xe7\x6e\xdc\x40\x70\x7e\x5e\xd6\x0c\x4b\ \x80\x10\xff\x18\xe9\xf5\xeb\xb8\x71\x3b\xb8\x38\xf1\xbd\x31\xce\ \x91\xb9\xa3\xa3\xa3\xf8\xe0\x83\x93\x78\xf6\x2f\xcf\x61\xcf\xe3\ \x4f\xca\xbc\x70\x04\x08\xb1\x42\x2a\xc4\x2b\xc8\xe6\xe6\xe6\x04\ \xf3\x0a\xe8\x1d\x4d\xc6\x06\x9d\x4e\x79\x0f\x85\x42\xf2\x6d\x6b\ \xcb\x66\x14\x17\x5b\x50\x6a\xb4\x85\x1f\x01\x92\x2b\xde\xae\x20\ \x15\x32\x41\x30\x18\x94\xb0\x2e\x2d\x2f\xe1\xed\xb7\xdf\xc1\xd6\ \xad\xdb\x90\x9f\x5f\x04\x8d\x46\x8b\x77\xde\x3d\x2e\xe4\x3e\x9f\ \x17\x5e\xaf\x17\x4f\xfc\xe9\xcf\x68\x6a\x7c\x00\x5f\x9e\xfd\x2a\ \x4c\x01\xfc\x78\xa5\xc7\x8a\x97\x4e\x7a\xd8\xfd\x7a\x37\x7a\x7a\ \x7a\x14\x4f\x45\x4c\x7d\x7d\x33\x74\xeb\x4d\x30\x9b\x6b\x61\x36\ \xd5\xe3\xe0\x2b\x7f\xc7\xf1\xe3\xc7\x71\xe4\xc8\x11\x1c\x3e\x7c\ \x18\x1f\x9e\x3c\x89\xc9\xc9\xc9\xb0\x04\x08\xb9\x78\x49\x90\x1c\ \x0b\x0b\x0b\x58\x5a\x5a\x42\x75\xb5\x0d\xe9\x19\x99\xc8\xce\xca\ \x45\x52\x52\x2a\xde\x7c\xf3\x2d\xe6\xc8\xac\x2c\x3c\x32\x32\x82\ \x3f\x6c\x7f\x18\x3b\x77\x3e\x8a\x17\x5f\xdc\x8f\xf7\xde\x7b\x97\ \x1e\x9f\x85\x7f\x6a\x4a\x92\x90\xeb\x85\x9d\x03\x32\xb9\xbb\xbb\ \x1b\xfb\xf7\xef\x87\x62\xcb\xcb\xcb\x22\xa6\xb6\xb6\x11\x85\x85\ \x06\xee\x69\x35\x05\x35\xe2\xe5\x97\x5f\xc1\xa1\x43\x87\xd0\xd5\ \xd5\x85\xd3\xa7\x4f\xc3\xe3\xf5\xca\xbc\x45\x8a\x66\x64\x04\xca\ \xb6\xdd\xe0\x78\xd8\x02\x5e\x78\xe1\x79\x86\xd4\x8c\x7d\xfb\x9e\ \xc1\xe2\xe2\x22\x66\x58\x19\x7d\x7d\x7d\x38\x71\xe2\x04\xfe\xf8\ \xd8\x1e\x1c\x3b\x76\x0c\xa7\x4e\x9d\x02\x3d\x17\xc2\x65\x46\x88\ \x51\x92\xb9\x8c\x98\x60\xa5\x80\xb9\x48\x04\xf4\xf6\xf6\xd0\xdb\ \x36\x34\x35\x6d\xc1\xf6\xed\xbb\x70\xf4\xe8\x51\xd9\xd3\xfe\xfe\ \x7e\x59\xfc\x36\x53\x88\x25\x1f\x6e\xb7\xdb\x85\x28\x16\x96\x00\ \x2a\x95\x2a\x28\x35\xd5\xc0\x52\xd9\x00\x6b\xf5\x06\xec\xdd\xf7\ \x2c\x17\x0b\xca\x3e\xea\x74\xc5\xc8\xc8\xc8\x42\x5a\x5a\x26\x9e\ \x7a\xea\x69\x19\x63\xbf\xa0\xc0\x7f\x22\x35\x35\x5d\xfe\x53\xab\ \xd7\xc0\xe5\x72\xc9\xf8\xc2\xe2\x02\xb7\xcb\x8e\xb8\xb8\xc4\xf0\ \x05\x80\x96\xa7\x35\xa2\x48\x5f\x8e\xfa\x86\x36\x4c\x4d\x05\x10\ \xa4\x37\x07\x0e\x1c\x84\xa1\xa4\x12\x06\x43\x15\x2c\x96\x5a\x19\ \xe3\x7c\x56\xce\x75\x18\x39\xc6\x71\x94\x14\x57\xe0\xd5\x57\xbb\ \x31\x1f\x0c\xca\x7f\x6f\xbc\xf1\x16\xf4\xba\x72\xe4\x6a\xf4\x91\ \x09\x28\x36\x54\xc2\x6a\x73\xa0\xa7\xb7\x87\xe8\xc5\xbf\xff\xf3\ \x31\xca\xcd\x75\xb0\xdb\x36\xc0\x6a\x6d\xc2\xb1\xd7\xba\xf1\x59\ \x4f\x2f\x7a\x99\x7c\x7b\xf7\x76\xc2\xc6\x71\x3b\xe1\x68\x68\xc7\ \xe7\x67\xce\x70\xbc\x07\x9f\x7c\xfa\x09\xac\x55\x0d\x32\x5e\x56\ \x6a\x8b\x4c\x40\x42\xbc\x0a\x45\x45\x7a\x68\xb5\x3a\xac\x2b\x2c\ \x61\xe8\x4b\xb9\x48\x05\x4c\xa6\x2a\x0a\xb1\xb2\x12\x2a\x60\x34\ \x5a\xe8\xb9\x05\x66\x8e\x11\x30\x95\x71\xcc\x50\x8e\xf5\xeb\x4a\ \x50\x54\xa8\x47\xa1\x56\xc7\x77\x3e\x0b\xd7\x43\xf5\xbb\xe4\x30\ \x93\xf0\x66\xed\x07\x83\x0c\xbb\x1f\xd3\x3c\xc5\xfc\xd3\x01\x4c\ \xf9\xa7\x31\xc9\x6d\xf0\x4e\x06\xe0\x21\x26\xbc\x01\x8c\x7b\xfd\ \x18\xf3\x04\x70\x71\x70\x04\xc3\xe3\x7e\xb8\xc7\x26\xe1\x1a\x99\ \x84\x73\xd8\x87\x81\x21\x2f\x2e\xb8\xbd\xe8\x77\x79\xf0\x0d\x71\ \xce\x39\x8e\x2f\xfa\x47\x22\x8b\xc0\x9a\x35\xd9\xf4\xca\x8a\x0a\ \x8b\x1d\x55\x95\x75\x02\xbb\xad\x89\x5d\xaf\x05\x8d\x0d\x9b\xd8\ \x5e\xdb\xf9\xbb\x19\xa3\x13\x01\xd8\xd8\x13\x1c\x8e\x56\xd4\xd5\ \x6e\x44\x4d\x4d\x13\xaa\xaa\xea\xb8\xef\x26\x58\xca\x6d\x28\x63\ \x54\x4a\x4b\x2d\x58\x9b\xa9\x89\x48\x00\x93\xa6\x88\xd9\xeb\x40\ \x67\xe7\x73\x38\xd7\xd7\x8f\xaf\xbf\x3e\x87\x8f\x3e\xfa\x18\x5b\ \x3b\x76\xa0\x6d\xd3\x83\xb8\xbf\x7d\x1b\x9a\x9b\x36\x63\x68\x6c\ \x8a\x82\xda\xb1\xa9\x75\x0b\x36\x6e\xd8\xcc\xf7\x36\xbc\xf4\xd2\ \x41\x80\x56\x59\x51\x23\x5b\x95\x9f\xcf\x2d\x50\xa5\x2a\x02\x4a\ \xef\x2c\xe0\x56\xcb\xcc\xc9\x29\xe4\xa2\x1d\xe8\xff\xe6\x3c\x5b\ \xec\x63\xd8\xbd\xfb\x49\x4c\x8c\x7b\x30\x30\x30\x08\x12\xdf\x12\ \xf0\x7b\xb8\x47\xa7\xd0\xe0\x68\x47\xcb\xc6\x0e\x6c\x68\xde\x8c\ \x1d\x0f\x3d\x02\xc5\x89\xac\x2c\x2d\xf2\x72\xd7\x21\x27\x5b\x8b\ \x94\x94\x8c\x90\xdb\x7d\x69\x82\x3c\xaa\x70\x22\xc0\x8f\x0b\x60\ \x31\xdb\xe8\x45\x2d\xaa\xad\x0d\x12\xfe\xf7\xdf\xff\x17\xdc\xee\ \x61\x38\xea\xef\x47\x7b\xdb\x36\x12\x76\xc0\xf5\x9d\x00\xce\x73\ \x30\xe4\xb5\x60\xe3\xa1\xb8\x07\x41\xe3\xb9\x51\xc8\x86\xd6\xc4\ \x3b\xc1\xdf\x42\x43\x43\x43\xf3\x31\x31\x31\x8e\xd5\xab\x57\xdf\ \x13\x96\x80\xcc\x8c\x3c\xee\x1d\x33\xbe\xdc\x8e\x0a\xd6\xfc\x96\ \x2d\x3b\x64\xbc\xf3\x99\xe7\x25\x02\xad\x2d\x5b\xd1\x50\xdf\xce\ \x84\xf3\x31\xe3\x4d\x50\x6c\x45\x47\x94\xa1\x41\xe7\xc0\x62\x4c\ \x74\x74\x2b\xc9\x7f\x21\x4c\x77\x12\xa0\x9c\x5a\x69\xa9\x39\xbc\ \x4c\x98\xa1\xd7\x9b\xb1\x6b\xd7\x6e\xd0\x78\x46\x1c\x60\x34\x1a\ \x51\x63\xdf\x48\xb4\xc0\x5c\x56\x83\xf3\x97\xbc\x28\xc8\x37\x80\ \xa6\xf4\x7c\xb9\x51\xf9\x79\x4a\xba\x5d\xae\xd0\x17\x67\xce\x84\ \x34\x1a\x4d\x07\x6f\xdd\xf7\x0a\x4b\xb8\x02\x52\xd4\x99\x92\x07\ \x5d\x5d\xff\x40\x20\x30\x8d\xc6\xc6\x4d\xc8\xcd\xd5\x33\xa9\xac\ \x0c\x75\x9d\x84\xdc\x68\xb0\x4a\xa9\xe5\xe6\xe8\xa1\x44\x8f\xed\ \x57\x8e\xe1\x61\xb7\x3b\xd4\xdf\xd7\xc7\x8a\xa8\x7a\x48\x21\x8f\ \x48\x40\x62\x82\x9a\x77\xba\x0f\xb1\xd2\xec\xf6\x66\x36\x1c\x1b\ \x9b\x51\x0d\x8a\x75\x66\xb8\x3d\x33\xc8\x5a\x5b\x04\xe5\x3a\x17\ \x20\xf9\xc8\xd0\x50\x68\xe0\xc2\x05\x96\x64\xcd\xce\xe8\xe8\xe8\ \x30\xc8\x57\x5c\x48\x40\xfb\xd5\x2f\x63\x10\xf7\xdb\x24\xc4\xc6\ \xa8\x10\x1f\xa7\xc6\xea\xc4\x54\x24\xa9\x32\x99\xd5\x3a\x86\xbc\ \x04\xda\x02\x03\xf7\xde\xc8\xfa\x2e\x60\x96\xaf\x93\x6f\x02\x7e\ \xbf\x90\xbb\x9c\x4e\xf6\x8b\xfa\x47\x56\xad\x5a\x25\xe4\x11\x0b\ \x60\x37\x64\x83\xf1\x60\x6c\xc2\x87\xd1\x71\x1f\x86\xc7\x26\x59\ \xef\x3e\x96\x9c\x0f\xae\x61\x2f\x06\x87\x59\x8e\xee\x09\x5c\xb8\ \x34\x81\xf3\xae\x09\xf4\xb1\xd3\xd1\x84\xfc\xd2\xe0\x20\xf3\xc4\ \xfa\x68\x54\x54\xd4\x0a\xf2\x08\x23\x70\xdf\x7d\xbf\x46\x62\x62\ \x0a\x92\x93\xd2\x24\x1f\xd2\x52\xb3\x91\x91\xae\xa1\xc7\xf9\x0c\ \xb9\x16\xd9\x2c\xd3\xec\x6c\x3e\xf9\xce\x8e\x27\xd9\xee\xbc\x78\ \x91\x95\x53\xfa\x38\xb3\x5d\xc8\xef\x46\x80\xdc\x05\x40\x8b\x8a\ \x8a\xe3\xf9\xbe\x16\xe9\xe9\x39\x24\xcd\x23\x59\x01\x34\x4c\xca\ \x5c\x36\x96\xfc\xbc\xf5\xdc\x06\x1d\xa1\x97\x67\x67\xe7\x5f\x43\ \x3e\x2f\xab\xa1\xa0\x60\x4f\x72\x72\xb2\x90\xff\x54\x01\x6c\x99\ \xf7\x88\x88\x98\xd8\x44\x5e\x26\x54\x48\x48\x48\x66\x1e\xa4\xf0\ \x54\xbb\x99\x0b\x69\x8c\x4c\x06\xd4\xc9\x99\xcc\x83\xe2\x90\xc7\ \xe3\xa1\xd0\xf4\xdd\x6a\xb5\x9a\xe4\x77\x6f\x46\x44\x60\x4b\x4b\ \xcb\x52\x72\x5f\x7d\x79\x36\xa0\x52\xa9\x76\x8a\xe7\x3f\xc5\xe2\ \xe2\xe2\x7e\xc3\x87\x81\xb0\xdc\x01\xe5\xff\x85\xfc\x36\x11\xa9\ \xb1\xb1\xb1\x3f\xbf\x5b\xde\x6f\x01\x1a\xa7\x50\x3e\xc4\x39\xe5\ \xe6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x55\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\xdd\x00\x00\x00\xdd\ \x01\x70\x53\xa2\x07\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xd2\x49\x44\ \x41\x54\x78\xda\x85\x93\xbd\x8b\x14\x41\x10\xc5\x7f\xdd\xf3\xb5\ \x33\xbb\x83\x73\x82\xe0\x25\x8a\x0a\x62\x64\xa4\x87\xb7\x13\x8b\ \x91\x20\x46\x22\x66\x62\x60\x60\x66\x60\xb6\xa9\x78\xb1\x91\xfe\ \x05\x72\xa9\x91\xf1\x9e\x98\x0a\x07\xc2\x0a\x1e\x08\x0b\x87\x5f\ \x28\xbb\xce\xcc\xce\x4c\xb7\x65\x83\xc7\xb0\xe8\x58\xf0\xba\x68\ \xba\xea\xbd\x47\x53\x85\xb5\xf6\x08\x40\xae\x94\x9a\x0a\xec\x3a\ \x80\x29\x90\xbb\xda\x0e\x94\x1c\xfc\x89\x28\x8a\xde\xec\x3c\x7f\ \xb1\xf5\xf6\xe0\x0b\x81\x07\xb1\x0f\xbe\x27\xd0\x70\xf6\xe4\x06\ \xf7\x6e\xdf\xdc\x93\xfa\x9c\x4e\xf8\x74\x62\x94\xa6\x5b\xfe\xe9\ \x6d\xf6\x4d\xc6\xa9\xcc\x70\x22\x31\x0c\x63\x43\x63\x1a\xb2\xf8\ \x2b\x49\x92\x8c\x59\x0b\x0d\x74\x1d\x38\xb5\x51\x68\x05\x90\x04\ \x96\x50\x1b\xca\xb6\x26\xf2\x0d\x83\xc1\x80\x5e\x82\x20\x08\xd0\ \xca\x12\x79\x10\x69\x69\x96\xfc\xa9\x68\x24\x5b\x47\x1c\xc7\x71\ \x3f\x41\x18\x86\xd4\xad\x65\x18\x2a\x3c\x0d\x9f\x97\x86\x9f\x2b\ \x8b\xed\x38\x04\xf8\xe7\x1f\x78\x9e\x87\x31\x92\x41\x9a\xe1\x87\ \x34\x6f\xc4\x9a\x42\x72\xdd\x2a\x27\xf0\x5f\x82\xd0\xf7\xf8\x56\ \x28\x0e\x17\x90\x25\xd2\x24\x56\xb4\xb6\x54\x42\xe0\xfb\x7e\x3f\ \x81\x52\x8a\xcb\x9b\x2d\x69\xf3\x0e\xb0\x68\xf5\x1b\xa0\x04\xe7\ \xb2\xe3\xee\xbd\x8f\xc0\x0d\xc6\x93\xc9\x43\xc2\x20\x60\x3e\x9f\ \x83\xdc\x01\xda\xb6\xa5\x69\x1a\xf7\xde\xf7\x89\xae\xd0\xa9\x68\ \x8f\x63\x37\x1e\x51\x5e\xbc\xce\xe6\xad\x09\xc1\x20\x76\xf6\x85\ \xa4\xd7\x81\x23\x00\x28\xa4\xf1\xe5\xce\x03\x8a\x0f\xfb\x7c\xcc\ \xaf\x72\xed\xce\x7d\xde\xef\x3e\x65\xb5\x5a\xf5\x3a\x38\x2a\xa8\ \xca\x8a\x24\x4d\x9d\xaa\xa7\x15\xd6\xfa\x18\x63\xa8\xaa\xaa\xdf\ \x41\x5d\xd7\x58\x29\xfc\xfe\xea\x19\x97\xee\x3e\xe6\x70\x7e\xc0\ \x85\x33\xe7\x99\xed\x4e\x9c\xfd\xa2\x28\x58\x0b\xb7\x4c\xdd\x41\ \x7a\xbd\x3d\x1e\x5f\xa9\xca\xd2\xa9\x6b\xad\x01\x9c\xfa\x62\xb1\ \x60\x36\x9b\xed\x2d\x97\xcb\x9c\x6e\xac\xaf\x33\x30\x95\x99\xb7\ \xb2\x38\x76\x34\x1a\x39\x0c\x87\x43\x2b\x63\xfe\xd7\x75\xfe\x05\ \xcb\x3d\xe2\xf0\xa9\x8f\x38\x39\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x03\xcf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x4c\x49\x44\ \x41\x54\x78\xda\x75\x53\x4d\x48\x5b\x69\x14\x3d\xdf\xcb\x33\xe6\ \x47\x13\x4d\x34\x71\x14\x89\x12\xa5\xa9\x05\xed\xc6\x38\x95\x31\ \xa2\x03\xaf\x2a\x43\x70\x53\xb5\x60\x53\x5a\x90\xb6\x48\x97\xa9\ \xa5\xed\xa2\x5d\x76\x31\x1d\x98\x42\x5b\xc6\xc5\xd0\x01\x45\xe3\ \x60\x19\x28\x48\xa3\xcc\x80\x53\xc4\x2e\x52\xa5\xf5\x17\x34\xd1\ \x1a\x11\x6d\xcc\x7f\x62\x34\x3f\xaf\x97\xb7\x90\x76\xd1\x03\x1f\ \xef\x2d\xbe\x7b\xee\x3d\xe7\x9e\x8f\x89\xa2\x88\xef\xa1\xb9\xb9\ \xd9\x30\x37\x37\x77\x80\xaf\x30\x30\x30\xf0\x50\xad\x56\xff\x18\ \x89\x44\xe2\x54\x7b\xfb\x1b\x82\xe9\xe9\x69\xb9\xdb\xed\x9e\x09\ \x04\x02\xe7\x73\xb9\x5c\x81\xc1\x60\x60\xf4\xcd\x06\x83\xc1\x50\ \x32\x99\x74\x8d\x8f\x8f\x0f\xfe\x31\x3c\x9c\xfc\xa9\xa9\x69\xa1\ \x5d\x10\x2e\xda\x6c\xb6\x5f\x4f\x09\xba\xbb\xbb\x7f\x29\x2e\x2e\ \x76\x59\xad\x56\xa5\x56\xa3\x11\xb7\xb7\xb7\x73\xd1\x48\x04\x2a\ \xb5\x1a\x96\x33\x16\xae\xc5\x66\x63\x4f\x7e\x7b\xf2\xf9\x72\x6f\ \x6f\x49\x95\xc9\xc4\x9c\x77\xee\xee\xce\xfc\x3b\xf3\xa7\x44\x30\ \x38\x38\x68\xdd\xd9\xd9\x99\x7f\x70\xef\x3e\x7b\xfb\xf6\xff\xac\ \x51\xa7\x93\xe5\xab\x54\xd0\x68\x34\x08\x85\x42\x88\x46\xa3\x58\ \x5b\x5f\xcf\x5c\xee\xef\xe7\x7d\x5e\x9f\x38\x39\x39\x39\x27\x42\ \x1c\x1d\x1b\x1b\x7b\x26\x11\x38\x1c\x8e\xe8\xad\x1b\x37\x0b\xbd\ \x9b\x1b\x62\x43\x7d\x3d\x2b\xcc\x64\xa0\x2a\x2f\xc7\x29\x18\xc3\ \xc7\xa5\x25\x2c\x2e\x2e\xe6\x7e\x16\x04\x6e\x6f\x6f\x6f\xa5\xa3\ \xa3\xe3\x1c\x08\x5c\x5b\x5b\xdb\xa3\x6c\x36\x5b\x18\x09\x05\xd3\ \x17\x05\x81\x29\x94\x4a\x28\x0c\x06\xc4\xd6\xd6\xc0\xc9\x64\xd2\ \x09\xd2\x14\x0a\x85\x02\x8e\x2b\x57\xb8\xbf\x5e\xbe\x3c\x69\xb2\ \x36\xd5\xb5\xb7\xb7\x9f\x07\x41\xd6\xda\xda\x3a\xec\xe8\x77\xe8\ \xaa\xaa\x4c\x32\x9e\xe7\x11\x0d\x06\x91\x4f\xba\x63\x2b\x2b\xd0\ \x9a\xcd\xd8\x3f\x38\x40\x98\xbc\x38\x4a\xa5\xb0\xfd\xe9\x13\xaa\ \xab\xab\xd9\x1b\xb7\x9b\xf5\xf5\xf5\x71\xf4\xff\x9a\x0f\x87\xc3\ \xe5\x99\x6c\x46\x34\x1a\x8d\x2c\x1e\x8f\xa3\x98\x74\x2b\xa9\x5b\ \xea\xec\x59\x3c\xbf\x7a\x15\x3a\xbb\x1d\x3b\x7e\x3f\xf4\x7a\x3d\ \xe4\x72\x39\x68\x43\x5c\x2c\x16\x83\x4a\xa1\xba\x44\x0d\x23\x3c\ \x99\x24\x26\x12\x71\x70\x1c\x27\x99\x96\x21\xfd\x7c\x5e\x1e\xd6\ \x77\x77\x91\x28\x2b\x43\x1e\x91\xf6\xf4\xf4\xa0\xb4\xb4\x54\x92\ \x91\x4e\xa7\xe1\xf1\x78\xf0\xea\x9f\x57\x45\x95\x95\x95\x39\x2e\ \x95\x4a\xed\x52\x28\xd8\x21\x8d\xce\x88\x44\x9e\x9f\x2f\x91\x95\ \x57\x54\x20\xa5\xd3\xa1\xb3\xb3\x13\x35\x35\x35\x98\x9a\x9a\x42\ \x22\x91\x00\x65\x03\xe4\x1b\x2c\x16\x0b\xb3\xdb\xed\x15\xdc\xe1\ \xe1\xe1\x7f\x89\x44\x12\xef\x17\x16\x4e\x64\x64\xd8\xf1\xf1\xb1\ \x44\xb0\xb5\xb5\x85\x92\x92\x12\xa9\xb3\x92\x8c\xf5\x7a\xbd\x18\ \x1a\x1a\xc2\xc8\xc8\x08\x68\x74\x08\x82\x00\x6a\x7e\x81\xdf\xd8\ \xd8\xb8\x49\x46\x5e\xa3\x20\xc9\x3f\x07\x02\xe0\x18\x83\xba\xa0\ \x00\xd4\x4d\xba\x48\x64\xd2\x99\x9d\x9d\xc5\xf2\xf2\xb2\x94\x89\ \x96\x96\x16\xc9\x13\x92\xab\xe7\x40\xf0\xfb\xfd\x8e\x78\x2c\x8e\ \xdf\x9f\x3e\x15\x43\xe1\x70\x86\x0a\x60\x24\xfd\xfb\xfb\xfb\x92\ \x27\x94\x15\x89\x8c\x02\x87\x89\x89\x09\x98\x4c\x26\xac\xd1\x9a\ \xc9\x0f\xcf\x69\x94\xcd\x66\xf3\xe3\xeb\xd7\xae\x3b\xd3\x99\x34\ \x4b\x1d\x1d\xe5\x6a\x6b\x6b\xb3\xf3\xef\xde\xf1\x34\x19\xa3\x9d\ \xc3\xe7\xf3\xa1\xae\xae\x0e\x20\x50\x6e\xe0\x74\x3a\x41\x81\xba\ \xf4\xcd\x63\xa2\xa2\x1f\xa8\xe0\x43\x91\xb6\x48\xaf\x50\x2a\xd8\ \xe6\xe6\xa6\x34\x32\x49\x44\x57\x57\x17\xb4\x5a\x2d\x56\x57\x57\ \x31\x3a\x3a\x0a\x2a\x7e\x41\x51\xbe\xf5\xdd\xe7\xdc\xd8\xd8\x58\ \xd6\xd0\xd0\xd0\x49\x5e\xcc\x53\xc7\x7b\x00\x2e\x30\xc6\xf4\x74\ \xdf\x03\xe0\x85\xcb\xe5\xfa\x1b\x84\x2f\x2c\xec\x8e\x1c\x74\xf5\ \x29\x98\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x33\xa1\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ \x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x33\x1e\x49\x44\ \x41\x54\x78\xda\xec\x5d\x07\x80\x54\xc5\xf9\xff\xcd\x7b\xdb\xaf\ \xdf\xd1\x7b\x09\x20\x45\x41\x40\xaa\x8a\x15\x50\xb0\x44\xa3\xb1\ \x25\x2a\x4a\x0c\xc6\x96\x68\x8c\x12\xfd\xdb\x82\x9a\xc4\xae\x24\ \x76\xb1\x04\x8c\x8a\x89\x04\x15\x4b\x30\x4a\x11\x04\x94\x26\x48\ \x13\x8e\x7a\xc0\xc1\xd5\xbd\xdb\xf2\xde\xcc\x7f\x76\x76\x6e\x67\ \xf7\x15\xf6\x30\xed\xee\xc2\x77\xf7\xdd\xbc\x79\x33\x3b\xbb\xf7\ \x7e\x5f\x9b\x6f\xe6\xbd\x25\x8c\x31\x1c\xa1\x96\x47\x37\xfe\xf2\ \x9e\xc2\xda\x70\xcd\xe4\x03\xfb\xf7\x9e\x77\xb0\x7c\x7f\xaf\xe1\ \xa3\x4e\x6c\xf3\xfb\x69\x53\x29\x2c\xe4\xc1\x11\x6a\x11\xb4\x62\ \x73\xa5\x4e\x08\x19\xa2\x11\x9c\x46\x34\x72\xea\xe0\x61\x23\x4e\ \xb8\xfd\x86\xc9\x5e\x06\x06\x7e\x1e\xc7\x0e\x1d\x76\x09\x80\xd7\ \x8e\x08\x40\x0b\xa2\x2f\xb7\x54\xf5\x25\x04\xa7\x6a\x84\x9c\xe6\ \xf5\x68\x27\xf1\xe3\x02\x7e\x0c\xfe\x8b\xe1\x23\x47\xe3\xba\x9b\ \x6f\xc3\xd3\x8f\x3f\x04\xa2\x69\xa8\xaa\x38\x78\xc5\x11\x01\x68\ \xfe\x5a\xde\x89\x10\xc2\x01\xc7\xa9\x89\xd2\xab\x93\x0e\x84\x57\ \xf8\x2f\x78\x5d\x96\x40\x83\x10\x5c\xfc\xa3\x2b\x50\xfa\xed\x66\ \xfc\xfd\x83\xf7\xb1\x77\xf7\xae\xe3\xe0\x40\xcd\x3e\x06\xd0\x1e\ \x26\x8c\x50\x02\x2d\x4e\x80\x28\x60\xd6\x31\xb0\x30\x03\x6a\x01\ \xd4\x70\x2e\xc6\x09\xec\x05\xb6\x10\xcd\x90\x96\x6f\xae\x2c\xe2\ \xc0\x9e\x94\x30\xeb\x12\xf8\x3e\x0a\xe0\x43\x95\xea\x38\x1e\x8f\ \xe1\x86\x9f\x4e\xc6\xd6\xcd\x9b\x71\xe9\xe5\x57\xf4\xb8\xfd\xd6\ \x1b\xb6\xb6\x20\x0b\x40\x88\xd7\xeb\x41\x71\x6e\x10\x79\x3e\x1f\ \x68\x8c\x61\xff\xce\x30\xc2\x75\x31\x98\x90\x82\xcd\x70\x3b\x80\ \x09\x68\x06\x74\xfb\x7d\x8f\x16\x94\xef\x2d\xbb\xaa\x75\x9b\xb6\ \xa3\x2e\xbc\xec\xaa\xae\x5e\x5d\x1b\x2c\x14\x9c\xf0\x3f\x9a\x4d\ \xcb\xb3\x94\xc9\xfe\x7e\x6f\x00\xbf\x7d\xe8\x61\x4c\xb9\xea\x2a\ \xd4\xd6\x54\x5f\xcf\xcf\xdd\xcc\x38\xb5\x10\x01\x60\x08\xf8\x02\ \x68\x53\x9c\x83\xfc\x80\x1f\xe1\x9a\x38\xaa\xbc\x51\x84\xb5\x18\ \xd2\xe8\x38\xf2\x13\x72\x1a\x7b\x96\x7d\x8c\x26\x46\x93\xaf\xbf\ \xcd\xa7\x11\x76\xe9\xc1\xf2\xf2\x8b\xf6\xee\xd9\x39\x74\xeb\xe6\ \x8d\xc5\xf1\x58\x0c\xba\xc7\x83\xde\x7d\xfa\x62\xd8\xa8\xe3\xb3\ \x01\xac\x4a\x25\x20\x36\x41\xe9\xd8\xb1\x1d\xa6\xfd\xf6\x7e\xbc\ \x3e\xf3\xf5\x09\x00\x6e\x49\xb4\x33\x4e\x2d\x22\x06\x20\x84\xc0\ \xa3\xeb\xd0\x13\xac\x19\x0e\x1d\x40\xc0\x70\x1b\x80\x26\x21\x00\ \xcb\x36\x55\x26\x02\xb7\xd3\x9e\x79\x74\xda\x94\x8f\xdf\x7b\xe7\ \xa8\xfa\xba\x30\x21\x44\x03\xd1\x08\x12\xa5\xd7\xeb\x13\xff\xd3\ \xef\xef\x9d\x8a\x3f\xcc\x98\x85\x4e\x9d\x3b\x37\x5e\x08\x88\xbb\ \x10\x0c\x1d\x72\x2c\xaa\x2b\x2b\xf2\xa6\x3f\xf5\xb0\x07\x40\xbc\ \x45\x05\x81\x84\xb3\x26\x90\xd6\xc4\x31\xb1\x8b\xc0\xa9\xe4\xa7\ \x64\x28\x7b\x9a\x2d\xc7\x7f\x98\xbe\xd8\x54\xd9\xa9\x21\x68\x4b\ \x94\x5e\x0f\xe9\x90\x00\xe4\xd2\x49\x3f\xc5\xd2\x85\xff\x40\x3c\ \x1e\x4f\x02\xaa\x84\x40\xd4\xa3\x91\x08\x7e\xf3\xeb\x5f\xe2\xa9\ \xe7\x67\x20\x27\x14\xb2\x03\xab\x65\x77\x07\x04\x30\xea\xeb\xeb\ \x56\xd5\x54\x57\x2d\xd8\xb1\x63\xfb\x27\x2f\xcf\x78\xfe\x53\x24\ \x49\xe3\x6c\xb6\x18\x01\xd0\x88\x26\x99\xd8\xd0\x4f\xc9\x83\x26\ \xac\xc0\x0f\xf0\x6f\xa6\xa5\x1b\x2b\x8a\x34\x42\x4e\x16\xd3\xb3\ \x64\xa4\xde\xc7\x49\x73\xdb\xb5\x6d\x8b\xfb\x1e\x7a\x02\xb7\x5c\ \x7b\x35\x4c\xd3\x74\x14\x82\x5d\x3b\x76\xe0\x91\x07\x7f\x83\x7b\ \xa6\x3d\x00\x5d\x23\xd9\xb4\x3c\x51\x32\x0e\x76\xe9\xf6\xd2\xd2\ \x2f\x57\xac\x58\xbe\xe2\xe9\xa7\xff\xb8\xe8\xab\xaf\xbe\x3a\x08\ \xa0\x9e\xf3\x01\xce\x94\x33\x4b\x94\x84\x13\xe3\xd4\xdc\x67\x01\ \xa4\xe8\x99\x10\xed\xd5\xb1\x15\xf2\x83\x41\x84\xab\xa2\xf8\x76\ \xe3\x01\x1c\xdc\x55\x07\xa3\x8a\x36\xcc\x02\x2a\xe0\x41\x11\x74\ \x50\xf8\xd0\x0f\x8f\x63\xc3\xbf\xf2\x7f\x5e\xba\xa1\x22\x48\x08\ \x19\xad\x69\xa9\x48\x7d\x70\x02\x97\xc6\x06\x69\x1f\xbc\x3b\x07\ \x8f\xfe\x76\x9a\x04\xdd\x26\x04\xa2\x9c\xf4\x93\xab\xf1\xe3\x2b\ \x2e\x77\x1c\x27\x5c\x5b\xbb\x7f\xdb\xb6\xad\x6b\xbf\x5c\xbe\x6c\ \xd5\x4b\x2f\xbd\xb8\x72\xc9\x92\x25\x15\x00\xa2\x9c\x13\xc0\xc7\ \xe5\x5c\xa8\x42\x6a\x7c\x54\x9e\xa3\x2d\x26\x06\x00\x91\x16\x00\ \x44\x5a\x00\x8b\x09\x60\xd2\xe0\xf1\x66\x50\xfc\x12\xc0\xe4\x84\ \xf0\x83\xd3\x77\x11\x84\xdb\xee\x7d\xd4\xcb\xa3\xf4\xb1\x27\x9e\ \x7a\xe6\x40\x42\x90\x48\xc0\x8c\xe2\xa5\xbf\x31\xfe\xd9\x69\xce\ \x7e\xf6\xb9\xe7\x62\xfb\xd6\x2d\xf8\xdb\x5f\xff\xe2\x2a\x04\x7f\ \x7a\xf9\x55\xf4\xeb\x7b\x14\x46\x8f\x1e\x89\x48\xa4\xbe\xb6\x74\ \xeb\xd6\xf5\x5f\x7e\xb5\x62\xfd\x1b\x7f\xfe\xf3\xda\x0f\x3e\x98\ \xb7\x1b\x00\x55\x80\x0b\xa0\xcb\x38\x1b\x92\x2b\xe4\xf9\x98\xbc\ \x1a\x2c\x41\x2d\x25\x0f\x40\x8a\x9f\xcd\xa1\x7d\x3a\xb6\x41\x41\ \x30\x88\xda\xea\x08\x36\x6f\x28\xc7\x81\x9d\x61\x65\x01\x5a\xa1\ \x92\xf8\x51\x08\x1d\x60\x40\x1c\x26\xfa\x61\x3a\xb6\xc8\x0b\x81\ \xc6\xd0\x4f\x6f\x9c\x3a\xa1\xb2\xe2\xc0\xe5\xfb\xca\x76\x1f\xbf\ \x6d\xcb\xc6\x76\xa6\x61\x90\xc7\x9e\x7f\x1d\x3d\x7b\xf5\x51\xa0\ \xdb\x00\x6f\x7c\x90\x46\x4d\x13\xb7\xfe\xe2\x17\x58\xbb\x66\x4d\ \xa6\x10\xf0\x32\x10\x0c\xa0\x5b\xd7\xae\xe1\x82\xc2\xbc\xcd\x7b\ \xf7\xee\x98\xf7\xe6\x9b\x6f\x96\x52\x4a\x4d\x00\xfb\xd3\x4c\xfa\ \x4e\x59\x9a\x9c\xf7\xa6\x9d\xaf\x91\xa5\x21\x4b\xf5\x4f\xb7\x14\ \x01\x28\xe1\x02\x70\x54\xa7\xb6\x28\x08\x04\x50\x53\x1d\xe5\x02\ \xb0\x1f\xe5\xe9\x02\xd0\x1a\x55\x5a\x0e\x29\xd0\xfc\x04\x66\x94\ \x82\x01\x6f\xe0\x31\x5c\x0c\x80\xb9\x09\xc1\x92\x0d\x15\x9d\x66\ \xbd\xf4\x87\x1b\xd6\xaf\x5e\xf1\x83\xd2\xad\x9b\xba\x54\x1e\x3c\ \xa8\x0b\x50\x34\x0d\x44\x82\xd3\xbe\x43\x27\x3c\xf5\xe2\x2c\x14\ \x14\x16\x5a\x00\xfd\x6e\x73\xf6\xaa\xaa\x4a\x5c\x3b\xf9\x67\xa8\ \xac\xac\x44\xd7\xee\x5d\x22\x05\x79\x79\x7b\xca\xcb\xf7\xad\x7e\ \xef\xfd\x77\x97\xd7\xd6\x56\x45\x25\xb0\xa6\xe4\xed\x0d\xbe\x5c\ \x68\xbb\x02\xbf\x4a\x9d\x17\x1a\x0f\x65\xee\x25\xb5\xbc\x54\x30\ \x91\xa0\xe8\xc2\x15\x38\x44\x81\xbc\x89\xc0\x9b\xab\x27\x7a\x22\ \x1e\x37\x2f\xc0\x8d\x78\x04\x8f\xe3\x0b\xd9\x99\x7d\xfe\x4d\x45\ \x11\x21\x38\x39\x11\xb4\x09\xb3\xae\x93\xde\xa7\x8d\x9f\x80\x77\ \xdf\x7a\x0d\x3c\x8a\x4e\x4d\xcd\xb4\x94\x69\x26\x38\x50\xbe\x1f\ \x0f\xdd\xf7\x6b\x4c\x7b\xe4\x49\x78\x3d\x1e\x2b\xb0\x9c\x0f\x21\ \x04\x5a\x46\x9d\x95\x95\xed\xd9\xfb\xf5\x9a\xd5\x5b\xba\x74\x6b\ \xb7\x7b\xe5\x3b\x9f\x6f\x5a\xb8\xe8\xa3\x5a\x00\x15\x0a\x4c\xa1\ \xe1\xa6\x04\x75\x87\x3c\xcf\x54\x1f\xc1\xf5\x29\x41\x90\xe4\x06\ \x7c\x0b\xb3\x00\xb9\xb4\x5f\xe7\xf6\x28\x0c\x06\x51\x5d\x15\xc1\ \xa6\x6f\xf6\xf1\x6c\x60\x4d\xca\x02\x90\xd6\xa8\xd1\x8b\xf4\xbc\ \x50\x2b\x0e\x12\x25\x08\x57\xc4\x40\x41\x16\xce\xbf\x78\xc7\x6f\ \x7c\x7e\xef\x29\x1e\x4d\x3f\x85\x83\x3a\x98\x03\xa1\x59\xb5\x72\ \xd9\xe7\x0b\x70\xef\x6d\x3f\x07\x08\x52\x26\x59\x93\x65\x83\x8f\ \xbe\xe0\xa2\x4b\x70\xcd\xf5\x37\x34\x36\x33\x27\xca\x4a\x4e\xeb\ \xbe\x5e\xb3\x65\xd1\xc2\x05\xdf\xce\x9a\x35\x73\xeb\xc6\x0d\x1b\ \x6a\x91\xa4\xfd\x29\x93\xae\x24\x59\x69\xbb\xb4\x02\xb2\x5e\x07\ \x45\x86\x04\x9c\xc2\x85\x5a\xa4\x05\xb8\x07\xf7\x10\x40\x6a\x1c\ \x67\x9d\x68\x8e\xd3\x40\x02\x40\xf7\x68\x08\xe4\x78\x41\xe3\x0c\ \xe1\xda\xd8\xf1\x2b\xca\xff\x31\xef\xc4\x2e\xe3\xc5\xf4\x4a\xd3\ \x34\xc7\x4c\xda\xe8\x13\xc7\x60\xd2\x35\x3f\xc3\xab\x2f\x3e\x27\ \x41\xb7\x0b\xc1\x9c\xb7\x67\xa3\x5f\xff\x7e\x38\x6d\xec\x58\x7b\ \x0c\xc0\xff\xf0\x22\x61\x45\xc2\x1b\x37\xac\xdf\xba\x64\xc9\xe7\ \x5b\xdf\x7a\xf3\x8d\x6d\x4b\x3e\xff\xbc\x52\x82\x78\x40\x96\x3b\ \xd2\x40\x2e\x45\x92\x88\x00\x5c\x91\x30\xef\x92\xe3\x4a\xc9\xbf\ \xbb\x06\xb7\x90\x4c\x20\x64\x0a\xc8\x31\x09\x04\x9f\xd7\x1f\xa4\ \x2c\x0e\x68\xfc\x38\xa0\xa3\xa4\x6d\x08\x86\x41\xf1\xf8\xb2\x5f\ \x63\x64\xe7\x13\x10\xf0\xe4\x0b\xa0\x34\x97\x20\xed\x47\x93\xae\ \xc6\x8e\x6d\x5b\xb1\x78\xe1\x02\x09\xba\x0c\xd2\xd2\x84\xe0\xa9\ \xc7\x1e\x47\xaf\x5e\xdf\x43\xef\xde\xdf\x13\xe7\x0c\x9e\xcf\xdd\ \xb8\x69\xd3\x8e\x15\xcb\xbf\xf8\xf6\xdd\xb9\x7f\xdb\xf6\xde\x7b\ \xef\x96\x51\x4e\x02\x44\xf5\x11\x77\x48\xc0\xb7\x41\xd1\x6e\x01\ \x70\x92\xaa\x65\x5f\x96\xf2\xe7\x4a\x48\x70\xb8\xc0\xb7\xe4\x18\ \x40\x02\x22\x41\xb1\xf9\x38\x4d\x67\x49\xa3\x29\x80\xce\x2b\xf2\ \x89\x60\xb0\x6c\xff\x76\xfc\x6e\xe9\xaf\xf0\xc0\xc9\x7f\x94\x56\ \x80\xb8\x9a\xef\xdb\xef\xba\x0b\x37\x4d\x99\x82\x1d\xdb\xb7\x3b\ \x09\x81\xe0\x19\xcf\xbf\x58\x37\x6c\xc4\xb1\x2b\x3e\x98\xf7\xfe\ \xf6\xbf\xbc\x3d\x7b\x77\x7d\x7d\xbd\x29\xa7\x66\xa6\x02\x5c\x10\ \x49\x33\xeb\xbb\x14\xb0\x19\x1a\x1e\x55\x82\xe2\xee\xd3\xff\xa7\ \x05\xe0\x9a\x9b\x7e\xdd\xbd\x2e\x5c\x73\x2d\x19\x06\x4e\xc9\x4c\ \x60\xd2\xe0\x66\x06\x82\x2c\xf1\x43\x19\x28\x15\x47\xf0\xfa\x75\ \x74\xec\x54\x88\xb8\x41\x31\x77\xf3\xeb\x38\xa9\xdb\xe9\x38\xa7\ \xf7\x05\xd0\x85\x79\x97\x66\xdb\x62\x09\xfc\x79\x39\x98\xf6\xbb\ \x07\x71\xe3\x94\x9f\x21\x1c\xae\x4b\xb8\x0c\x3e\x46\x27\xa3\xa4\ \xa4\xb0\xbc\xba\xaa\x72\xcb\x27\xff\xf8\x70\xe5\xa2\x45\x1f\x87\ \xa7\x4f\x97\x20\x2a\xdf\x4d\x65\x7d\xab\x3c\xb7\x07\x8a\x2a\xd3\ \x00\x8f\x40\x50\x76\xc0\xff\x67\x05\x60\xc1\xba\x83\x41\x8d\xe0\ \xf8\x86\x9c\x7a\x61\x41\xd1\x90\x39\x6f\xbc\x42\x30\x4c\xfa\x5b\ \x29\x04\x56\x62\x8c\x71\x06\xa8\xc9\x60\x9a\x54\x08\x42\x5e\x9e\ \x0f\xbd\xba\xb5\x42\x2c\x6e\xe2\xee\x85\x3f\xc7\xf0\x4e\x23\xd0\ \xb5\xa0\xab\x00\xd6\x6d\xce\x9e\x9f\x13\xac\x3a\xf7\xfc\xb3\x0f\ \xac\x58\xb6\xbc\xf2\xf3\x25\x0b\x57\x7d\xbe\x64\xfe\xc1\xb4\x28\ \x1c\x2a\x70\x13\xf5\x52\x59\xd2\x94\xe6\xab\xbe\x22\x2c\x80\x22\ \x23\x0b\xe0\xff\x9b\x02\xb0\xe0\xeb\x03\x3a\x21\x64\x68\xc3\x1e\ \x37\x9f\x87\x8c\xe2\x75\x7f\x03\x20\x17\x5d\x3e\x19\x3b\x4a\x37\ \xe3\x23\xcc\x94\xe0\x2b\xb0\xd2\x89\x51\xca\x19\x30\xe3\x14\x71\ \xc3\x44\xcc\x34\x60\x12\x8a\xd6\xad\x42\xe8\x1d\x6d\x85\xaf\xb7\ \xee\xc5\x4d\x7f\xbf\x1a\xef\x5c\xf0\x21\xbc\xba\x72\x03\x75\xe1\ \x70\xfd\xfa\x75\x6b\xb7\x2f\x5e\xb4\x70\xc7\x5f\xff\xf2\x36\xf7\ \xe7\xcb\xaa\x01\x54\x59\x93\x2f\x76\x3f\x2e\xcd\xba\x0c\xf0\x24\ \xd7\xb9\x68\x38\xc5\x7f\x99\x3c\x4d\x4c\xcb\xfb\xc9\x95\xb3\x44\ \x8a\x75\x4c\xfa\x1e\x37\xa7\xf2\x96\xa9\xf7\xe2\xe3\x4f\x67\x82\ \x40\x02\x07\x7b\x0c\x60\x50\x03\xa0\x0c\x46\x94\x21\x1e\xa3\x88\ \x1a\x26\xea\x8d\x38\x0a\x82\x01\x74\xef\x54\x8c\x70\x7d\x0c\xab\ \xf7\x7c\x81\x69\x0b\xef\xa0\x3f\x2c\xb9\x64\xfb\xf2\x2f\x96\xee\ \x98\x3b\x77\xce\xce\xf9\x7f\xff\x78\x3f\xa5\xb4\x2a\x4d\x6b\x65\ \xca\x55\x02\x6e\x15\x04\x09\xba\xec\x1b\x4e\xf3\xed\x46\x36\xc0\ \x5b\xbe\x00\xb8\x6b\x79\x67\xb5\xc7\x4d\x68\x79\x7b\xf7\x95\x2e\ \x7b\xe9\xf3\x86\xd4\x6a\x20\x74\x51\x3a\x91\xb0\x00\x1c\xfc\x78\ \xd4\x44\x24\x6a\xa0\x2e\x1a\x47\x38\x10\x43\x4e\xc8\x87\xfe\x3d\ \xda\xf2\x7a\x0c\x4f\xaf\x7a\x5c\x7b\x72\xde\xa3\x1b\xb0\x00\x2b\ \xd2\x02\x34\xaa\x4c\xba\x24\x75\xcc\xe4\xbc\x1d\x16\x2d\x8f\xcb\ \xd2\x71\x9a\x76\x44\x00\x24\x3d\xf1\xd2\x3b\x6b\x87\x8d\x3a\xb1\ \xff\x7d\xbf\x98\x22\x32\x69\x1e\xaf\x0f\x1e\x8f\x8e\xbe\x83\x06\ \xe3\xec\x0b\x2e\x82\xae\x6b\x0a\x70\xe7\x05\x15\xce\x0c\x44\xfc\ \xc8\x5c\x80\x0c\xb2\x6d\x44\x00\x1a\x93\x16\x20\x6a\x20\xcc\x01\ \xaf\x8e\x46\x10\xf4\x7a\x51\x92\x1b\xc2\xd1\x3d\xdb\xa3\x2e\x1e\ \xc7\xbe\x71\xb5\x27\x9b\x15\x6c\x05\xd6\x62\xb1\x00\x55\x81\x4f\ \x2c\x89\x1a\x26\xb5\x9c\x59\x01\x77\xf2\xe7\x47\x04\xc0\x81\xe6\ \xbf\xf7\x56\xa0\x73\xe7\xce\x1c\x94\xa8\xe0\x06\x05\x5a\xf4\xf7\ \x8f\xb0\x7f\xf7\x6e\x5c\x75\xdd\x75\xf0\xe7\xe4\x1c\x72\x75\x4d\ \x34\x88\x42\xce\x02\x88\x9e\xec\x6f\x45\x9f\x31\xc0\x64\x30\xea\ \x4d\x44\x23\x06\xea\x22\x31\xd4\xf8\x74\xf8\xbc\x1e\x2e\x7c\x3a\ \x0a\x8a\x02\xe8\xdb\xad\x0d\x22\xdf\x1a\xbe\xca\x8b\x22\x3f\x62\ \xcf\xb3\xbf\x61\x1b\x6a\x00\xec\x4b\x73\x01\x22\x5b\x67\x01\x9d\ \x5a\x00\x6f\x76\xa4\xe1\xbf\x44\xad\x5b\xb5\xf9\xe4\x77\x77\xdd\ \x0c\xd3\x34\x04\xf7\xe8\xd9\x09\xc7\x9f\x30\x84\x1f\xc7\xb1\x7e\ \xed\x4a\xfc\xfe\xee\x3b\x71\x70\x7f\x19\x07\x88\x70\xd6\x24\x13\ \x5b\x09\x42\xa0\xa7\xd6\x03\x60\x23\x46\x28\x4b\xb9\x81\x28\x43\ \x2c\x62\xa2\x3e\x62\xa0\x86\xfb\xfe\xca\xba\x7a\x94\xd7\x87\x51\ \x4b\xa3\x68\xd3\x3a\x17\xdd\xda\x15\x21\x18\xf2\x74\xc6\x24\xdc\ \x28\xa7\x6e\xb5\x92\x0f\x72\x8e\x49\x8e\xca\x05\x16\x93\xa5\x11\ \x38\x1d\x11\x80\xc3\xa0\x92\xd6\xed\x1f\x3f\xb8\xbf\x1c\x86\x61\ \x08\x0e\x06\xbd\x28\xdb\xb3\x27\x55\xdf\xb5\x73\x07\xee\x9b\x7a\ \x1b\x36\xac\x5d\x03\x9f\xce\x01\xd7\x35\x5e\x6a\xbc\x24\xa9\x12\ \xd4\x88\x09\x43\xa0\x62\x00\xe9\x10\x08\x9c\x88\xc6\xa4\x15\xa8\ \x33\x44\xf0\x57\x55\x17\xc5\xc1\x70\x1d\xf6\x73\x21\xa8\x23\x71\ \xb4\x6d\x97\x87\x92\xc2\x1c\x78\x82\xda\x45\x98\x86\x33\x1c\x00\ \x37\x9b\x1b\xe0\x4d\x7a\x31\x68\xfc\x19\xe7\x85\x6b\xaa\xaa\x43\ \x70\x27\xb1\xd9\xf3\xea\x29\xd7\x60\xc2\x59\x13\x01\x0e\xc0\xf6\ \xed\xdb\x76\x7d\xb5\x62\xd9\xf6\x0f\xe7\xbd\x5f\x3a\x77\xee\x3b\ \xfb\xf2\x1e\xf5\xfc\x7c\x78\xf7\xde\x68\x9d\x9b\x8f\x8a\xca\x5a\ \xac\x58\xf3\x2d\x76\x95\x56\x20\x5e\x65\x40\x18\xf1\x36\x60\xc2\ \x44\x78\x80\x04\x93\x10\xa0\xe7\x6a\xf0\xe5\xeb\x08\xe6\x78\x91\ \x93\xeb\x43\x5e\x88\x73\x30\x80\x90\xc7\x8b\xaa\xc4\x82\xd2\xb6\ \x72\x6e\x21\xa2\xfb\x59\x1c\x47\x63\x2a\xf6\x7e\xd7\x6b\x74\x24\ \x06\x70\x21\xc2\x09\x80\x76\xcd\xb5\x37\xaf\xfa\x6a\xd9\xf2\x91\ \xaa\x01\x36\x32\x4c\x03\xd3\x1f\x7f\x02\x33\x5f\x79\x65\xc3\x97\ \x5f\x2e\x7e\x67\xff\xfe\xfd\xe5\xd2\x72\x79\x75\xaf\x5e\x96\x87\ \x3c\xb9\x1e\x00\x67\xed\x67\xa0\x20\xd0\x53\xd5\x38\x60\x46\x28\ \x62\xba\x0c\x0f\xc0\x60\x32\x5e\x37\x4d\xd4\x07\x7c\xd0\x7d\x1a\ \x0a\x8a\x83\x88\xec\x33\x5a\xc7\x88\xf9\x3c\x80\xb3\xd0\x08\x3a\ \xe2\x02\x0e\x9f\xf4\xa2\xe2\xa2\x37\x13\x00\xa7\xd8\x70\x67\x8e\ \x7b\x9f\xb6\x6d\xbb\x8d\x0f\x04\x42\x15\x72\x4e\xbe\x90\x68\xa4\ \x54\x40\x2e\x12\x41\x92\x61\xa1\x6f\x70\x2a\xe2\x98\x9d\x0a\xd8\ \xa8\x14\x82\x3a\x8a\x68\xad\x81\xba\x70\x1c\x35\xb5\x51\x54\xd6\ \x46\x70\xb0\xb6\x0e\xd5\xb1\x08\x3c\x21\x0d\xfe\x90\x07\x1a\x21\ \x13\xf1\x10\xae\x22\x84\x1c\x11\x80\x7f\x03\xd1\x77\x66\xcf\x9c\ \x6d\x1a\x71\x34\x96\x75\x8d\x1c\xd3\xeb\x7b\xfd\xee\xec\xd0\xa1\ \xcb\x1e\x00\xbb\x34\x9f\xb6\x03\x20\xd0\x09\x67\x01\xbe\xc3\x9e\ \xc0\x05\xf8\x06\xcf\xe1\x7a\x6c\xc1\xc9\x88\x63\x0e\x08\x98\x12\ \x02\x86\x58\xd8\x44\xa4\x26\x9e\x58\x22\x46\x35\x17\x82\xca\x70\ \x3d\xea\x8c\x18\xbc\x21\x1d\xba\x57\xe4\x98\x1f\xc4\xdd\x28\x24\ \x84\x1c\x71\x01\xff\x42\x22\x09\x5e\xbf\x7e\xdd\x81\xfe\xfd\x06\ \xe3\x30\xa9\x4b\xd7\x2e\x3d\x3e\x7a\xf3\xcd\x3f\x63\xf8\x88\xe3\ \xd0\xf9\xc5\x36\x52\xf3\xd5\xca\x1c\x81\xa2\xd3\x4f\x3b\xa3\x8c\ \x31\x0a\x16\x65\x38\xa3\xdb\x78\x1c\x7d\xda\x31\x78\xe4\x8b\x87\ \xf0\x61\xe9\x07\xc9\x45\xa2\x08\x43\xdc\x64\x30\x39\x1b\x06\x41\ \xcc\x6b\x42\xf3\x11\x68\xe0\xec\xe7\x7f\x29\x6b\x75\xd3\x98\x5b\ \x2a\xee\xab\x7f\x00\xb5\xf5\x71\xfc\xe4\xea\x49\xd8\xb3\x6b\x17\ \x98\x5a\x67\x48\xa5\x06\x2e\xbb\x7c\x12\x7e\x78\xf1\x25\xf2\x9c\ \x68\x4f\x96\xa9\x3f\x50\x6d\xb0\x94\xb2\xd3\xed\xb7\xdc\x80\x55\ \x5f\xad\x80\x13\x8d\x3d\xf3\x6c\x5c\x77\xd3\xad\x69\x63\x32\x59\ \xaa\xe4\x84\x3a\x61\x7f\x8f\xc5\x0b\xfe\x81\x4b\xce\x3f\x93\xfc\ \xd7\x2d\x00\x63\x2c\xb5\x3f\xdd\x30\xe3\xb0\xb3\xe1\xca\x63\x4e\ \x1a\x85\x3e\x47\xf5\xc0\xd5\x57\x4f\xc1\x8c\x19\xaf\x82\x90\x4c\ \x17\x60\x27\x0a\xc6\x92\x33\x85\x93\x4e\x3e\x09\xbd\x8b\xfa\xe0\ \xe9\xb1\xcf\x61\xc6\x19\xaf\xa1\xd8\x5f\x02\x98\xd2\x1a\xd4\x33\ \xc4\x6b\x13\x6e\x21\x61\x11\x0c\x44\xea\x0c\x98\x94\x02\x84\xe1\ \x8f\x6b\x9e\xc4\xf6\xea\x52\xf0\xcd\xf6\xd8\xc3\x73\x14\xcc\x49\ \x93\x3c\x5e\x8c\x1b\x7f\x26\x28\x4b\x02\x4f\x93\xc2\x21\x18\xb2\ \x14\x6d\x2a\xbd\x28\xfb\x72\x96\x1d\xb7\x97\x6e\x53\xe0\xdb\x89\ \x07\xc2\xe7\xc9\x71\x98\x7c\x0f\x39\xae\x2c\xc5\x1f\xd1\x96\xf6\ \x1e\x50\x7d\xe6\xcd\x7d\xbb\x09\x58\x00\x25\x04\x06\x21\x84\x25\ \xfc\xfb\xe1\x50\x7d\x7d\x0c\xad\x5b\xb7\x42\x2c\x16\xc5\x37\x1b\ \x36\x00\xbd\xa1\x76\xe9\x80\xb3\x25\x08\x5c\xb7\x7e\x83\xb8\x02\ \x23\x46\x8d\x44\x51\x71\x09\xa8\x44\x61\x74\x87\x13\x30\xe7\xec\ \xf7\x70\xe3\x67\xd7\x61\x45\xf9\xb2\x54\x6c\xc0\x12\xed\xbc\xa4\ \x3a\x2f\x75\xf1\x52\x44\xcc\x08\xee\x5a\x7a\x07\xe8\x2b\xc0\xca\ \x95\xab\xa4\x66\x0b\x10\x24\x78\xc0\x39\xe7\x9d\x8f\x50\x6e\xbe\ \x58\x66\x66\x19\xda\x9e\xa1\xa5\xaa\xcd\xaa\xa5\x0c\x78\xea\x89\ \xc7\xb0\x62\x85\xb3\x00\x0c\x39\x6e\x04\xda\x75\xee\x8e\x48\xcc\ \x4c\xd3\x76\xc7\x71\x64\xc9\x32\xce\x6d\xde\xb8\x1e\xaf\xce\x78\ \x01\xaf\xbc\xf4\x7c\x93\x5a\x0c\xa2\xe6\x61\x0a\xc0\x27\xf3\x3f\ \x11\x53\xc3\xc9\x93\xaf\xc2\xb5\xd7\x4f\xc1\xac\xd7\x9f\x45\x12\ \x7a\x4d\x65\x01\x89\x64\x28\xf3\xfc\xfd\xf3\x12\xda\x93\x74\x11\ \x8c\x30\x71\xba\x4d\xa8\x1d\x5e\x1d\x3b\x0b\x8f\xac\x7c\x08\x2f\ \x6c\x78\x06\x0c\x4a\x45\x99\x28\xd5\x58\x6f\xf1\xbd\x03\xf9\xeb\ \x8b\x94\x80\xb1\x8c\xfc\xaf\x30\xff\x54\x01\xef\x06\x8c\x3a\x6f\ \x71\x07\xe1\xda\x1a\xcc\x7e\xe3\x4f\x70\xa3\xcb\xae\xbc\x06\x8c\ \x65\x1f\x07\x19\xc0\xab\x72\xe6\xcb\xcf\x36\xb9\x20\x10\x8c\x93\ \x61\xc4\x71\x38\xec\xf3\x79\x70\xfb\xd4\x5b\x71\xed\x75\xd7\x22\ \x10\x08\x00\x12\x7c\x11\x04\x4a\x0b\x60\xa5\x0e\x1d\x3a\x62\xd8\ \xb0\x61\x10\x24\xb6\x6d\xeb\x20\x82\x13\xaf\xf3\xe1\xe6\x41\xbf\ \xc2\xf4\xd1\xcf\x21\xd7\x9b\x0b\x37\x62\x60\x08\x9f\x5a\x03\x27\ \xea\x3f\x60\x00\x06\x1e\x3b\x54\x99\x7e\xc1\xca\x34\x2b\x93\x9d\ \x71\x3e\xa3\xff\xdb\x6f\xcc\x42\x6d\x8d\xf3\xf8\xad\x5a\xb7\xe1\ \xfe\xff\x9c\x6c\xe3\xc8\x12\xb6\xf7\xae\xa9\xa9\xc6\xdc\xb7\x5f\ \x6f\x62\x02\xa0\xe6\xf9\x8d\xe6\xc2\xa2\x02\x4c\x7b\xe0\x3e\xfc\ \xe0\xc2\x0b\x04\xf8\x94\x41\x06\x7d\xca\x02\x38\xe5\x83\xcf\x3a\ \xf7\x1c\xa9\x15\x49\xf0\x75\x8f\x87\xb3\x0e\x4d\x4f\xb0\x06\x10\ \x0d\x63\x3a\x9c\x8a\x27\x46\x3c\x0b\x9f\xe6\x73\xff\xac\xdd\xe2\ \x88\xf7\x8a\xc1\x4a\x97\x5e\x7e\xa5\xe3\xc5\x67\xb0\x81\x65\x8b\ \x11\x24\x73\xd3\xfc\x0c\xdc\xe8\xc2\x4b\xae\x10\x31\x86\xeb\x38\ \x90\xe3\xb8\x08\xdc\x9c\xd9\xb3\x50\x57\x17\x6e\xa2\x02\x60\x18\ \x8d\xe2\xae\x5d\xbb\xe2\x81\x07\x1f\xc0\x69\xa7\x8d\xe5\xe0\x07\ \xe5\x05\xb0\xdc\x1c\xea\xb0\x1f\xc0\xef\xf7\x63\xdc\x19\xe3\x45\ \x5f\x26\x67\x09\x1c\xf8\xc4\x05\xe5\xec\xe3\xc7\x1e\xe8\x9c\xa1\ \x11\x1c\xd7\x6a\x38\x1e\x1c\xfc\xa8\x48\x2b\x83\xc0\x91\xa2\xc7\ \x45\x32\x3c\x40\x7e\x41\x01\x26\x9c\x7d\x9e\xab\xb6\xb3\xac\x5a\ \xca\xb0\x64\xf1\x02\x6c\xda\xb0\xde\x35\x13\x7a\xe1\x65\x93\xb2\ \x6b\xbb\x3a\x6f\x11\x06\xe0\xcf\xaf\x09\xbf\xdf\x54\x05\x20\xee\ \xca\xa6\xe4\x21\x43\x8e\xc5\x3d\xf7\xde\x8d\xd1\xa3\x8f\x47\x20\ \x18\x02\xa0\xfe\x61\x22\x05\x80\x48\xb6\x20\xc7\x23\xff\x53\x90\ \x13\xca\x15\xd9\x3e\x71\x71\x1a\x6e\x22\xd1\x3c\x5c\x00\x12\xec\ \x85\x9e\x12\x02\x1d\xa7\x74\x18\x8f\x5f\x1f\x7d\xaf\xfb\xe7\xed\ \x19\x07\xcd\xa7\x29\xa7\x7b\x1e\x5f\xba\xf6\xfb\x83\x60\xac\xd1\ \xda\x6e\x8b\xe4\x5f\x9b\xf1\x2c\xdc\xe8\x94\xb1\x13\xd0\xa6\x5d\ \xc7\x46\x68\x3b\x1c\xdd\xce\x17\x8b\x3f\xc5\xd6\xcd\x1b\x9a\xee\ \x8d\x21\xf9\xf9\x85\x0c\x9c\xce\x3f\xff\x7c\xa1\x9d\x6f\xbd\xf5\ \x16\xd2\x48\xdc\x3f\xcf\x18\x15\xa6\xdb\x9a\x8c\x49\xe0\x5d\xfc\ \x78\x10\xa7\xf7\x3a\x16\x1d\xf2\x4a\xb0\xaf\xb2\x12\x9f\x7d\xb5\ \x16\xdf\x6e\xdd\x83\x58\x95\x01\x54\x03\x81\x79\x21\xab\x37\xcf\ \x18\x47\x05\x6a\xe9\x73\x7a\xc0\x3c\xc9\x80\x71\xba\x01\xa7\xec\ \xb2\xe7\x63\x0f\xf4\xbf\x7b\x2c\x63\x30\xb8\x12\x73\x6f\x55\xef\ \x6b\x3f\xaf\x5e\xde\xd8\x36\xfb\x40\xea\x7f\x4a\xba\x4b\xd3\x34\ \x49\x53\x9a\x05\x08\x4d\x4f\x10\xa5\x26\x82\xc1\x40\xb2\x2e\xc9\ \xeb\xf5\x23\x2f\xaf\x80\x6b\x58\x40\xf8\x77\xeb\xbf\xa8\x69\x04\ \x14\xd5\x29\x17\xa0\x3b\x84\x80\x45\x85\xc5\x19\xaf\x11\x3d\xe4\ \x66\x12\x30\x22\x35\x8a\x02\x42\x6b\xa8\x9a\x42\x7d\xc9\x50\xd5\ \xef\x00\xe2\x9d\xe2\xb0\x12\x3b\x8e\x21\x7f\x59\xa1\xba\xb8\x52\ \x00\xe4\x6b\x2d\xa0\x5b\xcf\xb9\xbe\x26\xcb\x38\xcc\xf1\xfd\xb2\ \x7f\x06\xbb\x90\x35\x31\x01\x30\x44\x39\x6b\xd6\x2c\x48\x12\xe6\ \x98\xef\xfa\x45\x28\x27\x0f\x39\x9c\x13\x7e\xd0\x89\x34\x02\x94\ \xa3\x06\x1a\x64\x2a\x98\xe8\x20\xc4\x6a\x61\x8a\xa5\xd8\x90\x64\ \x1b\xd1\x52\x8b\x47\xe2\x80\xb1\x64\x6e\x00\xa2\x14\x42\xc0\x24\ \xfb\x17\xf8\xb1\xfb\xe2\xed\x36\xed\x36\x0b\x4c\xe8\x47\x79\x11\ \xdc\x19\x94\x17\x5e\xe5\x03\x78\x29\xeb\x0a\x04\xd5\x2e\x5d\x81\ \x02\x33\xbd\x5d\x72\xea\x35\x0a\xcc\x86\x36\x20\xd5\x0f\x10\x2c\ \xeb\x50\xef\x0f\x9a\x1a\x5b\x9d\x53\xe3\x37\x39\x01\x90\x1f\x5e\ \x32\x45\x28\x94\x83\x92\xe2\x36\x1c\xfc\x1c\xae\xfd\x45\xf0\xb8\ \x80\xcf\x84\x05\x60\x69\xdb\xc1\x9c\xef\x0b\xf0\x07\x02\xc9\x37\ \x21\x10\xed\x44\x93\xfd\x64\x9d\x31\x05\xbe\xb8\x78\x94\xa6\x04\ \xc1\x57\xe3\x47\xe1\xea\x12\x54\x0c\x2c\x87\x95\xea\x06\xd4\xa0\ \x60\x5f\xa1\x02\xcc\x0a\xb4\x02\xcb\xb9\x5d\xf6\xb1\xb7\xab\x3e\ \xaa\x6e\x05\x53\x31\x49\xd4\x49\x5a\x9d\x69\xb2\x0e\x20\xb5\xf0\ \x21\x84\xbf\x69\x5a\x80\xc1\xc7\x8e\x14\xa5\x04\x44\xb8\x02\xa9\ \x9e\xd0\x35\x4d\x02\xe4\x9a\x47\x90\xd3\x40\x5d\xba\x01\xdb\x2c\ \x40\x69\x13\x95\xb2\x41\x99\x02\x3f\xa5\x45\x52\x66\x68\xc3\x07\ \x51\x49\x96\x92\xe5\x6d\x51\xd3\xb3\x0a\x46\x6e\xa6\x2b\xa8\xe9\ \x51\x85\x36\x0b\x3a\x40\x8b\x6a\x60\xf2\x07\x96\x84\x8c\xe0\x86\ \x36\x6b\x3b\xa0\xda\x2d\xaf\x57\x63\xc0\x72\x4e\x8d\xa9\x22\x17\ \x6b\x1f\xd5\x45\x35\x28\xab\xd1\xd4\x66\x01\x52\xf2\x95\x16\x10\ \xa2\x49\x26\xa2\xee\xce\xd4\x65\x1a\x48\x6c\xe3\x2b\x56\xef\xa7\ \xca\xf4\x0b\x4b\x32\xae\x9b\xb0\x27\x31\x82\xe2\x15\xad\x60\x25\ \xa6\x33\x54\xf7\xae\x90\xfd\x2d\x00\xc9\xb1\xd3\x41\x64\x16\x00\ \x6d\x18\x41\x69\xb7\xea\x93\x1d\x60\xf9\x2a\x6b\x47\x59\xb5\xe9\ \x42\x93\x13\x00\x05\xbe\xa3\x99\xa4\x82\x9d\xc1\x57\xa0\xe9\xd0\ \x38\xab\x2d\x61\x04\x8a\xd4\xeb\x15\x30\x50\xa0\xab\x52\x9e\x23\ \x50\x16\xa2\x41\x0a\xf2\x36\x15\x80\xc4\xed\x97\xaa\xb6\x5b\x4d\ \xfa\x18\xd6\x55\x39\x77\xed\x67\x16\xed\x67\x2e\xda\xaf\x00\xb6\ \xa0\xe7\x28\x3c\x36\xb3\xc1\xec\xa0\x37\x51\x0b\xa0\x58\x01\xd5\ \x48\x26\x50\xb7\x86\xeb\xd0\xac\x53\x45\x8b\xb6\x33\x67\x8b\xa0\ \x40\xcc\xbc\xb0\x24\x79\x4c\x62\x1a\x72\xbf\xcd\x83\x95\x22\xed\ \xea\x40\x09\xb5\x6b\xb8\x12\x34\xb7\x36\x17\x00\x25\x5b\xac\x47\ \xea\x50\xb5\x2b\xe1\xc9\x62\x1d\x2c\xe6\xbf\x89\x0b\x00\x68\x36\ \xf0\x6d\x16\x21\x7d\x47\x10\xe1\xec\x36\x3e\x38\x53\x05\x80\x73\ \x29\xd8\xa2\x51\x72\x81\x29\x6f\x5d\x01\xac\x44\x3d\x14\xd1\xd6\ \x91\x74\xf0\x2c\x2b\x75\xd9\xad\x83\xd2\x7e\x87\x76\xf7\xd8\x40\ \x51\xa6\xdb\xc8\x62\xfe\x9b\x5e\x0c\x90\x0d\x70\x05\x3a\x04\x5b\ \xdb\x52\x31\x80\xce\x59\x39\x00\x92\x29\x00\xd4\x59\xeb\x61\x3d\ \x27\xc1\x52\xae\x80\x80\x48\x2d\x0b\xec\x0e\xc1\x53\xed\x85\x95\ \xea\x3b\x84\x2d\xc0\x5b\xcc\xb6\x9b\xff\x17\x7f\xdc\x7d\x3f\x9c\ \xda\x61\x7f\xbd\xbb\xdb\xb0\x4f\xfb\x78\xb5\x29\x4e\x03\x59\xba\ \xb9\xb5\x92\xbd\xcd\xb2\xbb\x86\x80\xa8\xe5\x60\xcd\x3e\x0b\x10\ \xe0\x8b\x03\x31\xc7\x48\xa6\x82\x19\x44\x69\x8f\x09\xd2\x63\x92\ \x44\x3b\x4d\xcd\x10\x08\x05\x82\xbb\x82\xa8\xc9\x8f\x67\xba\x81\ \xb6\xf5\xca\x3c\xab\xc0\x32\x0b\xf0\x8e\xbe\x3d\xbb\xf6\x33\x37\ \x90\xdd\x7d\x3e\x63\xcd\xc3\x05\xb8\xfb\x7e\x1c\xfa\x9c\x70\x00\ \x32\x09\xc4\xff\x02\xe9\x6e\xc0\x06\x8c\x9d\x15\xe8\x4e\xc9\x1a\ \x21\x61\xa9\x3e\xbe\xbd\x01\x58\x29\x5e\x10\xb3\x6a\xae\x3d\x30\ \xb4\x03\xef\xea\xdb\xc5\xdf\xec\xda\x6f\xd7\xec\xf4\x3e\xcc\xd5\ \x05\x34\x49\x0b\xe0\xaa\xfd\xf2\xbc\x2b\x51\xca\x40\xa4\x1c\x93\ \xd4\x0f\x52\xcc\x1c\xfe\x71\x22\x16\x84\x20\xad\x00\x9c\xb5\x5f\ \x99\x17\x80\x22\x45\x4e\x02\x60\xe4\xc7\xd3\xb4\x5e\x69\xae\xb3\ \x05\x70\x31\xfb\xee\x91\xbf\xbb\xf6\x33\xc1\x4e\xb1\x81\xd5\x3a\ \x34\x71\x17\x00\x06\x58\x65\x80\xa4\x1a\x0f\x4d\x44\xae\xb9\x53\ \x13\x94\x51\xc1\x2c\xdd\x1f\x8b\x92\xaa\x0a\x41\x46\xd0\x45\x6c\ \xdb\xb6\x58\x5a\xdd\x1a\x1b\x00\xbe\x72\x1f\x08\x25\x60\x1a\x53\ \x42\xe8\xa3\x30\x7d\x26\xb4\x88\x66\xd1\x7a\x4b\x60\x28\xff\xd8\ \x03\x3f\xeb\x94\x30\xab\x75\x50\xe4\xdc\x6e\x73\x1b\x52\x10\x9a\ \xa6\x05\x58\xb5\x6a\x69\xd6\xf8\x40\x45\xd5\x92\x52\x26\x9a\xe2\ \xa8\x57\xba\xc2\xe4\xa5\x41\x39\xb3\x64\xa8\x98\x4e\xb3\x5e\xff\ \x93\x88\xfe\xf9\xd2\xaf\x58\x54\x0a\xe5\x84\x44\xba\xd9\xe7\xf3\ \x89\x35\x06\x4d\xd3\xac\xe3\x67\xe4\xd2\x0d\xd3\x44\x3c\x16\x07\ \x7f\xe6\x0f\xea\xea\xea\x70\xee\x67\xe3\xb1\xb9\x76\x23\xd2\xe9\ \x85\xb9\xaf\x62\x50\x9b\xc1\x32\xbb\xe8\xb8\x3d\xcb\x6d\x7b\x98\ \x5b\x9b\x6a\xb7\xb7\xb9\x6f\xff\xca\x32\x7e\x53\x8c\x01\x0e\x1f\ \xfc\x0c\xed\x56\xbb\x6e\x4c\x66\xf2\xd2\x74\x8f\x31\xa8\xd2\x64\ \x35\xb6\x6d\x7c\x45\x6a\x09\x49\x3e\xfd\x33\x39\xd5\x2c\xf0\x14\ \xc2\x4a\xe5\x91\x7d\x72\x7c\x8b\x56\x3b\x81\x0f\x49\x8e\xe0\xb8\ \x83\x0f\x37\xf0\x55\x5b\xd6\xf1\x59\x53\x5c\x0b\x18\x30\x60\x28\ \x88\xd5\xef\x83\xa8\xc3\x6c\x2e\xe0\x46\x80\x4a\x0b\x20\x36\x7d\ \x58\x4c\xdd\x45\x17\x5e\x92\x38\x27\x81\x04\x88\xa6\x0b\x20\x97\ \x2c\x5f\x22\xda\x8f\x1b\x34\x24\xfd\x82\x3a\xce\x0c\x84\x6b\xa1\ \x54\x94\xfb\x26\xee\x01\x7a\x22\x83\x6e\xf8\xd9\x14\x04\xb7\x85\ \x54\x10\x69\x9f\x15\xd8\x76\x11\x7f\xf5\xcd\x66\x51\x0e\xec\xd3\ \x1d\xcc\x61\xe5\x4e\xbd\xd6\x39\x90\x85\x6c\xcb\xac\x67\x6f\xa7\ \x94\x36\x2d\x01\x80\x00\x8d\xd8\x82\x3e\xd2\xb8\x10\x40\xf4\xe2\ \xc0\x4b\x0b\x20\x2f\x80\xcd\x92\x30\x19\xf0\x35\x04\x81\x4c\xf4\ \xd5\x18\x54\x7f\xb7\xe9\x20\x90\x01\xaa\x16\xb1\x8a\xa5\x02\x4d\ \xf5\xb7\x64\x15\xad\x01\x9f\x45\x4f\xed\x11\xbf\x6d\xe6\xa0\xda\ \x5c\x23\x7f\x87\x29\x23\x2c\x33\x83\xe6\x90\x07\x90\xa0\x2a\xa1\ \xc8\x1a\x04\x26\x35\xd4\x94\xcc\x81\xb5\x8f\xaf\xa2\x40\x05\x84\ \xd5\xd4\xba\x97\x4a\x8b\x64\x5a\xd8\x46\xc4\x2a\x2c\x96\xe3\x8c\ \xe9\xa0\x0a\x14\x9d\xfa\x40\xf5\x71\x4e\xf7\xba\x07\x85\xb6\xc8\ \x3f\xd5\x55\xb5\x36\x4d\x01\xf8\xae\x44\x24\x40\x66\x83\x0b\xe0\ \xcc\x00\x77\x01\x20\x32\xc1\x63\x03\x44\x69\xa5\x04\xd2\x56\x12\ \xc8\x00\x93\x3a\xfd\x0f\x56\xc0\x6d\xc0\xda\xf7\x0a\x58\x04\xd0\ \x02\xa0\x2d\xaf\xcf\x98\xa3\x75\x50\x6d\x6e\x91\xbf\x45\xb8\x9a\ \x70\x1e\x40\x16\x96\x10\x4c\xa1\x0d\x11\xb5\x9f\x79\xe6\x78\xbe\ \x33\xf8\x64\xf4\xec\xd9\x13\xed\xdb\xb7\x41\x9f\x99\xdd\xe5\x06\ \x0e\x53\x6e\xe9\x62\x4e\xab\x8d\x72\x6c\x22\xea\x44\x82\xa0\x00\ \xcf\x52\xaa\x04\x91\x98\xf6\x59\xe9\x95\xe7\x5f\xc2\xb8\x1e\xe3\ \xb0\x74\xe9\x17\xb8\xe0\x82\x8b\x1d\xc1\x97\x60\xb9\x04\x88\xea\ \x3d\x90\xc5\xf4\x6f\xd8\xb0\x1e\x1d\x3b\x76\x84\x13\x95\x95\xed\ \x45\xe2\xb1\x3b\x00\x73\x9e\x51\xa0\xc9\xe6\x01\xb2\x3a\x7a\xe8\ \x9a\x8e\xf7\xde\xfb\x2b\xff\x07\x3b\x41\x52\x12\x70\x06\x98\x50\ \x41\x20\xb5\x25\x3f\x2c\xcb\xb1\xc4\xea\x4b\x95\xaf\x96\x47\x87\ \x5c\x36\xa6\x7e\xbb\x00\x74\xcb\xeb\x26\xc6\x59\xbb\xf6\x6b\x57\ \xf0\x19\xe0\xb0\xdd\xcb\xc9\xef\x33\x57\xb7\xd0\xbf\x5f\x3f\x01\ \xbe\x1b\xf1\xef\x07\x4a\x03\xde\x6a\x1d\x9a\xae\x05\x70\x0e\xfa\ \x08\xd2\x80\x23\x62\xef\xe0\x9e\x3d\x65\x62\x3e\xff\xd9\x67\x0b\ \xb0\x65\xcb\xb7\xe8\x3f\xa0\x5f\xd2\x05\x50\x15\x03\x00\xee\x31\ \x00\x81\x70\x01\x99\x00\x64\x33\xff\x72\x8c\xd4\x4f\xc0\x12\x45\ \x13\x0f\x3a\xe7\x75\x16\xc7\x5f\x73\x01\x70\x03\xdf\x1e\xd9\x2b\ \x0b\xe4\xec\xdb\xed\x6e\xe1\xf4\xb1\xa7\xa7\x76\x4a\xdf\x72\xcb\ \x2d\xa0\x54\x76\x92\x63\xae\x59\xb3\x46\x01\x6f\xf1\xff\x4d\x59\ \x00\x1a\x9d\x02\xbe\xeb\xae\xfb\xb0\x63\xc7\x0e\x71\x01\x1a\xb6\ \x85\xb3\x5f\x00\x66\xe2\x87\x99\xca\x02\x58\x67\x19\xa9\x31\xe5\ \x02\x10\xb1\x04\x81\x56\xe0\xdd\x02\x42\x61\x01\x4c\xa4\x53\xbe\ \x99\x0f\x9d\xe8\xe2\x78\xcd\xda\xb5\xd9\xc0\xb7\xe6\x6c\x5d\x16\ \x92\x2c\xbe\x5b\x9e\x1a\x37\x76\x2c\x38\x09\x05\x78\xe6\x99\xe7\ \x64\x1f\xeb\x3e\x44\xbb\x05\x00\x9a\xb8\x05\x90\x9e\xd9\x15\x7c\ \x79\x82\x6b\xfd\x16\xfb\x69\x61\x01\x18\x0c\x39\x4f\x77\x0e\xd0\ \x14\x91\x8c\x75\x7f\x71\x7c\x68\xe0\x95\x15\x11\x3f\xb4\x24\xf3\ \x3d\xda\x7b\x3b\x88\x32\x1a\x8d\x62\xd3\xa6\xcd\x99\x3e\xdd\x12\ \x10\xc2\x66\xf2\xed\xe0\x01\xcc\xb1\x4f\x6e\x6e\x0e\x46\x8c\x1c\ \x21\xce\xcd\x9d\xfb\x37\xc0\x25\x6d\x6c\x9f\xf6\x35\xc3\x1d\x41\ \x8d\x67\x39\x0d\x04\x13\xe0\x53\xca\xd9\x25\x08\x64\x4e\x89\x14\ \xdb\x9e\x44\xc5\xea\x9c\xd2\xa4\xa2\x5e\xf9\x30\x3d\x99\x16\x60\ \x48\x87\x21\x32\x38\xdb\x08\x23\x1e\x4f\x07\xd5\x1d\x7c\x66\xfb\ \x84\x96\x64\x8e\x7d\xca\x77\x32\xbf\xc3\xc9\xeb\xf5\x26\x63\x8e\ \x6e\xdd\x71\xf9\xe5\x97\xa3\x7f\xff\xfe\xf6\xd5\x42\x96\x21\x48\ \x4d\xff\x59\xc1\x4a\xfb\xdc\x4d\x3f\xb1\xd4\x2d\x6b\x02\x02\x78\ \x83\x9a\x22\x18\xb4\x5c\x5f\xeb\x05\x57\xb3\x00\x66\x0f\xf8\x00\ \x8b\x2b\x50\xa0\x89\xef\x0d\xfa\xfe\x0d\xe7\x60\x5d\xe9\x5a\xa4\ \xd3\x59\xbd\x27\x82\x10\x22\x02\xc0\x4c\x73\x0e\xa7\x4c\xa0\x65\ \xa7\x10\x5c\x4c\xbe\xdd\x32\x8c\x4b\xf8\x7f\x49\x37\xde\x78\x83\ \x7a\xe0\xe6\xfc\xf9\xb8\xf4\xd2\x4b\x13\xcf\x50\x72\x30\xfd\xcd\ \xc9\x02\xc0\x79\x6f\x20\x0e\xb1\x67\x70\xd0\xa0\x81\xe0\x85\xf0\ \xff\x06\x93\x79\x00\x9b\x1b\x48\x69\xb3\xaa\x29\x80\x5d\xde\xdf\ \x6a\x19\x80\xfb\xee\xbd\x0b\x07\x02\x07\x90\x4e\x3a\xd5\x31\xba\ \xfd\x68\x19\x00\xae\x75\x01\x9f\xd9\xc1\x77\x4e\x04\xb9\xe4\x02\ \xc4\x5f\xb1\x88\x35\x6f\xde\x07\x58\xb4\x68\x11\x76\xef\xde\xad\ \xee\x1d\x3c\xe5\x14\xee\x12\xe6\x22\x87\xb7\x5b\xdc\x42\xf3\x11\ \x00\xb9\xb2\x77\x58\x1b\x43\x07\x0d\x3c\x86\x07\x42\xd3\xe5\x62\ \x10\x15\x2c\x2c\x40\xe3\x5c\x8c\x65\x2b\xb7\x0b\xf0\x92\x27\x4d\ \xba\x02\x67\x9d\x3d\x11\xab\x0f\xae\x46\x3a\x75\x35\xba\xc2\xaf\ \xfb\x85\x05\x58\xbd\x66\x6d\x3a\x98\xe9\x40\xcb\xd2\x65\x8d\x5e\ \x81\xaf\x3e\x9b\x2d\xd1\x03\x5c\xc1\x6f\x41\x3f\xf7\xdc\x73\x39\ \xe0\xa7\xa2\x7b\xb7\x1e\x98\x38\x71\x22\xaa\xaa\xaa\x92\x6e\x68\ \xc8\x10\x8c\x1d\x3b\x36\x63\xe6\xa0\xa8\x05\xee\x0a\x1e\x35\x6a\ \x24\x5e\x7d\x6d\x06\x0a\x0b\x0b\x52\x77\xc2\x0a\x17\x40\x6d\xa6\ \xcf\x62\x7e\xa9\x02\x58\xc2\xe0\xe2\xf7\xd5\x7b\x8d\x1e\x89\xdb\ \x6f\xbf\x55\xb8\x99\x95\xe5\xab\x90\x4e\xa7\x74\x38\x15\x9a\xfc\ \x22\xa9\xde\xbd\x7b\xe1\xac\xb3\x26\x4a\xcc\xac\x1a\x6f\xf1\xf3\ \x4a\xfe\x9c\xc1\x57\x02\xe3\x1a\x18\x7e\xf0\xc1\x87\x78\xf0\xc1\ \x07\xd1\x40\xc3\x87\x0f\xcf\x66\xfa\x9b\x43\x22\x28\xfb\x22\xd0\ \x19\x67\x8c\xc3\xe3\x4f\x3c\x22\x02\xa2\x7d\xfb\xf7\xc9\xc5\x20\ \xce\xd2\x0a\x58\x36\x45\x58\x72\xe3\x44\x05\x5a\xb6\xdc\x3a\x1c\ \xa7\x82\xd7\x5e\xfb\x53\x01\xf2\xd6\xea\xad\xa8\x63\xe1\x8c\x9b\ \x4c\xaf\x1c\x76\x45\x4a\x00\x1e\x7d\xf4\x61\x31\x0b\x78\xe7\x9d\ \x39\x19\x60\xd9\x41\x55\xe7\x44\x25\x3b\xf8\x96\x76\x65\x45\x4a\ \x4b\xb7\xab\x3b\x95\x6a\x6a\x60\xc1\xbe\x99\x59\x00\xa5\xa1\xae\ \xfc\xc3\x1f\x5e\x80\x27\x9f\x7a\x4c\x80\xcf\xfd\x20\xaf\x5f\x26\ \xd7\x02\x54\x1e\x80\x81\x5a\xdf\xc0\xbe\x2c\xaa\x00\xb0\xfa\x7f\ \xdb\xac\xa1\xa0\xa0\x40\xe4\x1e\xe6\x6f\x9c\x8f\x74\x3a\xbe\xe8\ \x78\xf4\x28\xe8\x21\x04\x20\x1c\x0e\x63\xe7\xce\x5d\xf8\xf4\xd3\ \x4f\x9d\x4c\xbf\xab\x0b\x60\xae\xe0\xc3\x02\x3e\x1c\x5d\xc4\x98\ \x31\x27\xa2\x81\x96\x7c\xbe\x24\x8b\xea\x34\xc7\x4c\xa0\x24\x8f\ \x47\xc7\xd4\xa9\xb7\xe1\xaa\xab\xae\x14\xf5\xf5\xeb\xd7\x73\xbf\ \xfc\x13\xec\x29\x2b\x4b\xba\x00\x50\x65\x01\x5c\xf2\x00\x84\xc8\ \xa7\xc6\x32\x2d\xc3\x05\x40\xb9\x04\xc7\x1c\xc0\x99\x67\x4c\x4c\ \x3e\x67\xe7\x94\x2a\x60\x18\x52\x54\xff\x5e\x14\xfa\x04\x5d\x08\ \xc0\x93\x4f\x3c\x85\x27\x9e\x7c\xca\x39\x01\x94\x69\xfa\x2d\xda\ \xed\x6e\x21\x24\xf8\x62\x17\x93\x69\x1a\x88\xc5\xe4\xe6\x53\xf9\ \xd4\x90\xcb\x2e\xbb\x14\x93\x27\x4f\x16\xf5\xf2\xf2\x72\x2c\x59\ \xba\x04\x59\xa8\x79\x66\x02\x4b\x4a\x8a\xf1\x87\x3f\x3c\x85\x91\ \x23\x87\x8b\xfa\x81\x03\x07\xf0\xc6\x1b\xb3\xf9\xbc\xf8\x24\xd1\ \xef\x39\x3c\x99\x96\x0a\x36\x6d\xe3\x29\xbf\x49\x52\xbe\x94\x58\ \x00\xb0\x25\x81\x1c\x16\x83\xa2\x7d\x22\xea\xa2\xed\xf2\x60\x64\ \xbb\x91\xa9\x2d\x65\xab\xd7\xac\x51\xef\xe3\x0a\xba\x1d\x7c\x95\ \xc6\x75\x9f\x32\x5e\x73\xcd\x4f\xf0\x7f\xff\x77\xa7\x88\xfe\x79\ \x06\x90\xe7\x00\xba\xe1\xbc\xf3\xbe\xcf\xaf\x4b\x89\xdc\x18\x4b\ \xc5\x34\xb0\xba\xba\xba\xd9\x0a\x80\x65\x43\xa8\xca\xff\x27\xe8\ \xe1\x87\x7f\x2f\xc1\x6f\x10\x88\x12\x9e\x12\xbe\x23\xb5\x18\xf4\ \xec\x33\x5c\x00\x18\x4b\x4e\x03\xed\x7b\xe0\xed\x02\x21\xc6\xcf\ \x6c\x67\xd6\xfe\x96\x1c\x40\xbc\x43\x14\xb4\x40\x25\x80\xfc\x8b\ \x83\x18\x70\x45\xff\x94\x00\xac\x5a\xb5\xca\xa6\xfd\xee\xb9\x00\ \x6b\x1a\xf8\x90\xf9\x02\xee\xe6\x2e\x44\x6e\x6e\x2e\xc6\x8d\x1b\ \x27\x58\x91\x50\x06\xb1\x26\xf0\xe1\x87\x1f\xa2\x91\xd4\xfc\xf6\ \x03\x1c\x7d\xf4\x80\xac\x41\x24\x95\x39\x00\x2a\x2f\xba\xeb\xae\ \x63\xa5\x99\xea\xa2\xbb\x69\x7e\x9a\xf6\x47\xfa\x2a\xed\xd7\xcb\ \x75\x78\xbf\xf1\x89\xcf\xc5\x17\xa6\x12\xb1\x08\x07\xe2\xa0\x5d\ \xeb\xed\xa0\xdb\x4a\x39\xbe\xa5\x6f\xe6\xf1\xfd\xf7\xdf\x8f\x2b\ \xaf\x9c\xc4\x67\x19\xbd\x13\x2b\xa1\xc2\xdc\x7f\xf3\xcd\x06\x2c\ \x5e\xbc\x88\x07\x9e\x8f\xca\xa9\xa0\x2b\x35\x97\x4c\xa0\xfb\x56\ \xf0\x41\x83\x86\xc2\x8d\x88\x46\x80\xa9\x6a\x4b\x18\x67\x05\xa4\ \x5d\xa3\x55\x9d\x34\x08\x81\xe3\x86\x10\xd5\x5d\x0a\x48\xac\x41\ \x00\x18\x10\x7c\x37\x24\xfa\x4c\x98\x70\x16\xc4\x50\x84\xb8\x68\ \xbd\x63\x1a\xd8\xbe\x3e\xe1\x0e\xbe\x28\xe7\xcc\xf9\x9b\x98\x59\ \x58\xfa\x59\x15\xa7\x25\x5a\x00\x11\xba\x35\x4a\x78\x4c\x66\xd9\ \x0f\xe0\xfa\x1e\x44\x69\x9c\x65\xb9\x58\xfe\xda\x8e\xe3\x9d\x62\ \xa0\x79\x54\xd4\x7c\x5f\xf9\xa1\x6f\xf3\xaa\x4f\xe7\xac\xf5\xd9\ \xb5\xdf\x12\x28\xda\x05\xc4\xd2\xfe\xaf\x03\xbf\x99\xdd\x19\x04\ \x96\xe5\xc5\x04\x14\x00\x6d\xb0\x00\xd4\x65\x3f\x80\x84\x9c\x58\ \x1f\xaa\xa4\xda\x9d\x1e\xbe\xc4\x99\xa6\xb4\x9f\xd4\x68\x08\x7c\ \x18\x4c\xf6\x23\x42\x90\x54\x69\xd7\x76\xd7\x08\x5f\x94\xd6\x44\ \xd5\x7f\x06\xfc\xe6\xb9\x23\x88\xb8\xbe\x4e\x45\x51\x54\x30\x05\ \xff\x71\xba\x73\xc6\x32\x1e\x81\x84\xca\x75\x29\x38\x55\xd5\x18\ \x62\xfd\xa2\xa2\x1a\x7c\x3f\x04\x12\x25\xa9\xf1\x89\x25\xc2\xcf\ \xaa\xf5\x8e\x99\x40\x7b\xd0\x67\xef\x6b\x1b\xb7\x65\x09\xc0\xf6\ \x9d\xdb\xd3\x4d\xae\xcb\x5d\x40\x76\x30\x99\x9c\x02\x75\x9e\x51\ \x22\x34\xdf\xe0\x2c\x1f\xf4\x94\xd1\xef\x85\x19\xaf\x88\x7e\x5e\ \x9f\x8f\x47\xd3\x79\x28\x2c\x2a\x44\x41\x41\x61\x6a\xcc\xf5\x5b\ \x4a\xd5\xf8\x50\x02\x65\x9a\x26\x5e\x5d\xff\x3c\x6e\x5b\x76\x13\ \x4e\x6e\x33\x16\xf7\x4f\x7f\x4c\xe4\x23\x02\xc1\x20\x82\xc1\x10\ \x7c\x5e\x1f\x34\x8f\x07\x84\x90\xef\x70\x37\x8f\x3a\xb1\xbe\xf4\ \x40\x63\xef\x16\x92\x75\xe6\xd2\xa6\x4e\xb8\xbf\x77\x93\x0c\x02\ \x61\x01\xc0\xbd\x4d\x9d\x56\x6d\x49\xc8\xa9\xda\x11\x94\xe5\x01\ \x14\x8c\x26\x8e\xdd\xde\x5b\x69\x9f\x69\x18\x78\x7a\xfd\x13\xe8\ \x91\xfb\x3d\xdc\xd9\xef\x7e\xb1\x27\x91\x67\x20\x39\x27\x6f\x29\ \x83\xa6\xfd\xd3\x77\xf3\xb0\xc3\xbe\x9b\xc7\x5d\xb8\x60\x1b\xdf\ \xe9\x7a\xb1\xa6\xf7\xa4\xd0\xd6\xad\xdb\x31\xd7\x3b\x81\x48\xd6\ \x2f\x9f\x42\xfd\x5d\xd5\xe8\x52\xdc\x0e\x39\xfe\x20\xea\xea\xa2\ \xd8\xbd\x6d\x2f\xaa\xf6\xd4\xc2\xac\xa6\x40\x0d\x90\x3f\xbf\x30\ \x15\xb1\x11\xf5\x9d\xff\xa9\xd7\xc3\xe1\xe2\x88\xb9\x7f\xff\x28\ \xea\xc6\x87\x91\xf3\x5c\x1e\x48\x85\x96\x1e\xf6\x49\x37\xa2\x84\ \x25\x2f\x3f\x1f\x5f\xac\xde\x88\x58\x34\x8a\x63\x7a\x75\x06\x43\ \xa3\x5d\x83\xa5\xdd\xd1\xef\xff\xab\x63\x2e\xd2\xe4\x82\x40\x75\ \x51\x15\x35\xf6\xd6\x20\xc6\x94\x05\xa0\xf6\x4c\xa0\xd2\x18\xa5\ \xf6\xf6\x19\xa7\x43\x30\x18\x19\x16\x41\xe8\xf5\x1c\x68\x15\x99\ \x60\x13\xe2\xb4\x84\x6b\xdd\xdb\x8f\xc3\x9d\x19\xb8\xb7\x37\x9e\ \x5a\x66\x2a\xd8\x9d\x94\xe6\x9a\x94\x33\x4b\x32\xb5\x02\xab\x24\ \x40\xa5\x83\x45\xe1\x6e\x5a\x8d\x9e\x31\xf8\x96\xf8\xa1\x6d\xd7\ \x33\x16\x66\x08\x81\x2d\x87\x0f\x97\xdb\xb9\x98\xb5\xad\xf1\xa0\ \x5b\x2c\x52\x8b\x17\x00\x09\xcb\xe1\x82\xaf\xae\xb8\xd0\x7e\x83\ \x4a\x0b\x80\x43\xa4\x82\x59\x26\x88\xc4\x16\x8d\xcb\xc3\x28\xe0\ \xd9\xe8\x51\x20\x30\x75\x57\x51\x26\xf0\x16\xdf\x7b\xd8\xd9\xc0\ \x7f\x89\xc9\x6f\xb1\x99\xc0\xec\xc4\x2c\xf7\x06\x3a\x6e\x08\x61\ \x19\x4f\x08\x77\xf0\x10\xd6\x3c\x80\xd0\x7c\xe1\x5e\x68\xb2\x55\ \x09\x0d\x73\x00\xde\x16\x3f\x64\x8e\xa5\x69\x18\x31\x62\xa4\x58\ \xc1\xac\xad\xad\xc5\x31\xc7\x1c\x8d\xd5\xab\xd7\x60\xe8\xd0\x21\ \xe2\x5e\x87\x65\xcb\x96\xa1\x6f\xdf\xbe\xd8\xbb\x77\x2f\x0e\x1e\ \x3c\xc8\xfb\x8e\x40\x69\x69\xa9\x48\x33\xf7\xea\xd5\x4b\x2c\xf2\ \xf0\x36\xf1\x3c\x83\x9d\x3b\x77\xa2\x4b\x97\x2e\xf8\xfa\xeb\xaf\ \x91\x85\x9a\xff\x96\xb0\xc6\x33\x60\xca\xdb\x9e\xf9\x8f\xc3\xf8\ \x82\xdd\x9e\x0a\x26\xeb\x54\xd5\x45\x9b\xe3\x9d\xb8\x6e\xcf\xfe\ \x15\xac\x84\x2b\xb3\x6d\xde\xbc\x79\xe2\xeb\x6a\x3e\xfd\xf4\x1f\ \x62\x16\x31\x7d\xfa\x74\xbe\xb4\x7d\xbb\x58\xd5\xbb\xf4\xd2\xcb\ \x70\xce\x39\xe7\xe0\xc9\x27\x9f\x14\x3b\x7c\x3f\xfa\xe8\x23\x0c\ \x1e\x3c\x38\x71\x7b\x17\xef\x33\x15\x27\x9c\x70\x02\x5a\xb5\x6a\ \x85\x3b\xee\xb8\x03\x2f\xbc\xf0\x02\x4e\x3c\xf1\x44\xd1\xbf\x45\ \x59\x80\xdd\xfb\xf6\x65\x9b\xef\x67\x64\xed\x94\x3f\x26\x42\xeb\ \x3b\xbc\x58\x20\x4a\x43\x66\x02\xa9\xc5\x7b\x3e\xf3\xc2\x4b\x0d\ \xbb\x7a\x45\xb4\x5e\x5c\x5c\x82\xc2\xc2\x22\xe4\xe4\xe6\x8a\xdc\ \x00\xd7\xd0\x8c\x00\x54\xe4\x12\xe4\xe2\x12\xe4\x7b\x13\xb9\xeb\ \x07\x20\xb6\xe4\x95\x2c\x1c\x37\x6d\x8c\xe4\xda\xbc\x6d\xdb\x56\ \x3c\xf2\xc8\xc3\x1c\xcc\xe3\xd1\xa9\x53\x47\xa1\xf1\x03\x06\x0c\ \xe0\xa0\xde\x29\x34\xfa\xe5\x97\x5f\x4e\x6c\xec\x14\x0b\x3b\xd7\ \x5f\x7f\x3d\xae\xbb\xee\x3a\xac\x5b\xb7\x0e\x03\x07\x0e\x44\x87\ \x0e\x1d\xf8\x12\xf0\x67\xe8\xd1\xa3\x07\xca\xca\xca\xf8\x6e\xa8\ \x33\xf8\xed\x71\xef\xb5\x98\x6f\x0e\x05\xe1\x24\x9f\xde\xa1\xbe\ \xf9\x22\x7d\x93\x27\xe5\x6c\x08\xff\x2e\xcc\xa5\x69\x9a\xa0\x94\ \x0a\x8e\xf3\x3a\x35\x28\x10\x63\x30\x23\xbc\x5d\x32\x8b\x32\x20\ \x0e\xc0\xe0\x6c\x66\x3e\x27\xd0\xee\x61\xec\x09\x17\x42\x32\x9f\ \x08\xa2\xe9\xba\x02\xdf\x42\xcc\x72\x60\xcd\xe0\x05\x43\x41\x84\ \x42\x21\xb1\x69\xb3\x55\xab\xd6\x09\xb3\x2e\xca\xf6\xed\xdb\x8b\ \xd1\xb8\xc9\x17\xbb\x88\x36\x6e\xdc\x98\xb0\x0e\x62\xc5\x8f\x52\ \x2a\xbe\xe6\x26\x27\x27\x07\x53\xa6\x4c\xc1\xd2\xa5\x4b\xc5\xff\ \x3e\x7b\xf6\x6c\xfc\xf8\xc7\x3f\xc6\xca\x95\x2b\x9b\xeb\xb7\x87\ \xab\x27\xf6\xf7\x9e\x8f\xf6\x5a\x1d\x7a\xd1\x08\x7a\x56\xcf\xf5\ \x3f\xaf\x85\x18\x98\xc9\x40\x0d\xf0\x12\xa0\x09\xae\x23\xa0\x15\ \x1a\x68\xa5\x06\xd4\x6a\x60\x35\x04\xa8\xe7\x25\x4b\xa5\xe3\x85\ \xe6\xd6\xdf\x1c\x46\x7e\x6e\x1e\x7c\xba\x17\xf1\xa8\x81\xda\xb2\ \x5a\x44\x0f\xc6\x78\x7f\x06\x84\x81\xc0\xa7\x21\x89\x90\x00\xd6\ \x96\x03\x90\xa8\xd9\x63\x01\x5b\x5b\xa6\x99\x57\x60\x43\x58\x96\ \x2f\xd7\x95\x22\x1a\x8b\xa2\x5f\xb7\x36\xb2\x4d\xf8\xff\xc4\xce\ \x1d\x01\xf8\x2b\xaf\xbc\xc2\x37\x8d\x9e\x25\xd6\xee\xc7\x8c\x19\ \x83\xf7\xdf\x7f\x5f\x9c\xe7\x26\x5e\x9c\xe3\xbe\x3d\xb1\xb1\x43\ \xbc\x66\xe6\xcc\x99\x7c\xef\xff\x8d\xe0\x94\x38\x16\x16\x60\xce\ \x9c\x39\x7c\x1f\xc4\x5d\xf8\xd5\xaf\x7e\xf5\x4f\xe7\x01\xfe\x63\ \x02\x40\x38\x8d\xf9\xa4\x9b\xbf\xba\xed\xb6\x61\x7a\x5c\x3b\xc5\ \x88\xb3\x93\x69\x14\x43\x11\xf3\x84\xcc\x28\x85\x11\xe1\x1c\x65\ \xe0\xe7\x60\x4a\x66\x9c\x69\x0c\x30\x65\x29\xdb\x44\x89\x83\x1a\ \xe8\x1e\x0f\xb0\xd7\x03\x52\xa1\x83\x98\x04\xd1\x29\xf5\xc8\xe1\ \x5a\xe6\xd1\x3d\xbc\x9f\x89\xba\xfd\xf5\x88\x55\xc4\xc0\x6a\x19\ \x50\x07\xf8\x17\x05\xe5\x67\x81\x12\x02\x75\xc2\x09\x74\xa9\xc1\ \xd6\x36\xf7\x6f\xf5\xc8\x2f\x48\x08\xc0\x76\x44\xa3\x11\xf4\x15\ \x02\x70\xe8\x3c\xc0\x61\x52\x73\x49\x04\x29\x2d\x1f\xbe\x19\x79\ \x9e\x42\xed\xe2\x13\xf7\xf9\xce\x33\xa3\xbb\x47\x7b\xa3\x9e\x9c\ \x3c\xad\x58\x78\x9c\x38\xa5\x88\x72\x44\xa3\x7a\x0c\x71\x2d\x06\ \x4d\x63\xa0\x1a\x05\xd1\x21\x98\x7a\x01\xd0\x24\x13\xc6\x99\xa6\ \x3d\xf7\xaf\x88\x82\x85\x62\xa0\x9d\x38\xc0\xf5\x00\x76\x78\xc1\ \xaa\x92\xfb\x01\xa0\x9b\x30\x63\x26\x68\x84\x02\x11\x00\x31\xc9\ \x4a\x73\x55\x34\x4f\xec\x53\x40\xd8\xeb\xf6\xe8\xde\xe5\x2b\x60\ \x98\xa3\xf0\x30\xab\xb5\x68\xb9\x5f\x1e\x4d\x38\x81\x01\xa3\x36\ \x61\xd0\xc8\xa0\x76\x8d\x96\x83\x4b\x74\xe6\xc9\xeb\xe4\xe9\x8d\ \x10\xcb\x17\xc8\x9a\x71\x8a\x08\x8b\x83\x43\x0f\x5d\xf3\x61\x3f\ \xdd\x0b\xcd\xa8\x46\x4d\xbc\x0e\x26\x38\xa8\x1a\x40\xf5\xa4\xdf\ \xa6\x1e\x15\xbd\x43\x32\xd1\x78\xc1\x19\xba\x02\x92\x76\x8f\x83\ \x6e\x05\x22\x39\x11\xf8\xdb\xfb\x05\x60\x32\x06\x48\xb2\x91\x0e\ \x26\xb1\x27\x73\x20\xc9\xae\xdd\xae\xe6\xde\x9e\x04\xb2\x2e\xe1\ \xba\x02\xdf\xc2\x04\x40\xf9\x74\x1c\xb7\x16\x13\xf4\x6f\xc8\x9d\ \xcc\xa7\x0d\x6b\xcb\x3a\xa3\x90\xb4\x42\x81\x5e\x8c\x56\x7a\x47\ \xe8\xd4\xcf\x8f\x5b\xa3\x92\x94\xa3\x86\xff\x54\xb1\x4a\x54\x9b\ \xd5\xf0\xea\x01\x84\x3c\x80\xc1\x99\x72\x8e\xd0\x18\x90\x00\x59\ \x57\x16\x80\x79\x45\x01\x10\xa9\xcd\x4c\xc8\x92\xe8\xa7\x71\x66\ \x11\x80\x98\x80\x51\x17\x87\xb9\xc9\x80\xb7\x93\x4f\x7d\x63\x0c\ \x51\x20\x2a\xb0\xac\x4f\xa1\x92\x35\x67\x4d\x97\xed\x19\x60\x3b\ \x1f\xab\x8a\x53\x1a\xb7\xa5\x09\x80\xd2\xf8\x21\x0b\x30\xc8\x93\ \x47\x7e\x9f\xe3\x2b\x3c\x35\x5f\x2f\x42\xa1\xa7\x04\xad\xf5\xce\ \x1c\xf8\xf6\xe8\xe5\x1d\x08\x46\x28\xe2\xbe\x18\xc2\xd1\x30\xf2\ \xb5\x12\x44\x61\x20\xd7\xc3\x38\xe8\x14\x25\xfe\x36\x28\x8b\xef\ \x81\xae\x7b\x44\x74\x8c\x78\x4c\x68\xb9\x70\x05\xa6\x2c\x29\xe7\ \x06\xa1\xf0\x4a\xd3\x6d\x28\x33\xae\x49\xab\xa0\xd5\x01\x34\xca\ \x10\x2b\x8d\x42\xcb\xd7\xd2\x84\x20\x3b\x10\x8c\xb9\x0b\x80\x3b\ \xe8\x36\x2d\x77\x9a\xc2\xb6\x4c\x01\x20\xf7\x10\xad\xcf\x87\x68\ \x57\xb4\xd8\x37\xcd\x1f\x0c\xfc\x38\xa4\xe7\x6b\x85\x68\x83\xce\ \xbe\x9e\x38\x21\x6f\x22\x3c\x9a\x37\xa5\x5d\x06\x0c\xa1\x75\x01\ \x3d\x99\xa8\x29\xf6\xb6\xc2\x3e\xb3\x0c\x3e\x8f\x0f\x7e\x8f\x1f\ \x01\xce\x86\x2f\x00\x83\xc6\x10\x30\x3c\x88\x9a\x86\xb0\x29\x1a\ \x51\x00\x0a\xac\xe5\x78\x44\x9e\x23\x5e\x80\x11\x25\x04\x54\xb6\ \x31\x1d\xa0\xd5\x14\xc4\x4f\x52\xed\x0f\x3f\x31\x5d\x7c\x39\x64\ \xc0\x1f\x44\x41\x61\x21\x4a\x78\xd4\x5d\x54\xdc\x0a\x79\x89\x3c\ \x80\xdf\x0f\x4d\xae\x0e\x2a\x00\x91\x7d\xae\x9f\x56\x61\x50\xe4\ \xf3\xfa\xf1\x6d\x59\xd8\xf1\x5b\xc3\x61\x1f\xdf\xbd\x4d\x56\x5c\ \xdb\xd4\xf8\xf6\x36\xeb\xf8\xff\xfc\x7e\x00\xa5\xf1\xb8\x07\x64\ \xe0\x08\x9c\xa8\x6b\xda\xeb\x1e\x1a\x68\x5b\x44\xda\xe3\x94\xc2\ \xf3\xd0\x35\xd0\x1b\x41\x3d\x17\x41\x2d\x47\x5c\xcc\x38\x62\x82\ \x29\xa3\xf0\x12\x5f\x22\xd8\x13\x51\xba\x97\x79\xe1\xf3\x7a\x10\ \x60\x3e\x44\x0d\x1d\xf9\x81\x3c\x5e\xd6\xc1\xc7\xdb\xe2\x1e\x0d\ \x4c\x27\x88\x9b\x0c\x54\x93\x40\x43\x7d\x8b\x37\x85\xda\xcb\xc9\ \x4b\xd1\x06\x5d\x5a\x87\x90\xac\x13\x80\xc5\x38\x47\xa5\xaf\xe7\ \x4c\x13\x3f\xa6\x99\x96\xb5\x53\x4f\x0d\x91\xe4\x04\xbe\x6b\x1b\ \x1c\xc0\x57\xbb\xda\x2c\x60\xa8\xd2\x79\x7c\x77\xf0\x1d\xdb\x70\ \x08\xf0\x61\x01\xdf\x86\x37\xfb\x67\x2c\x00\xe3\xfc\x26\xbc\x83\ \x86\x68\xb7\x6a\x0c\x77\xb7\xf7\x77\xd3\xfb\x16\x0e\x45\xc7\x60\ \x0f\x74\xf0\xf4\x40\xbe\x5e\x82\x10\x17\x00\x0a\x13\x06\x33\xc4\ \x07\x90\xeb\xef\x02\x2d\x4d\x07\x1a\xf2\x6d\x21\x1a\x42\xad\x59\ \x05\x8f\x57\x83\x6e\x00\xba\x97\x73\x9c\x40\xd3\x08\x74\x0f\x01\ \x35\x59\x4a\xfb\x29\x67\x9d\x28\xe0\x99\xc9\x99\x48\x17\xc1\xe4\ \x85\xf7\x02\x1a\x2f\xa9\x4f\xc6\x0e\x39\x00\xab\x95\xc7\x04\xb8\ \xf9\xa6\x9f\x01\x66\xca\x82\x28\x93\x22\x49\x99\x71\xa7\x3a\x73\ \x75\x13\xcd\x93\xec\x9f\xdd\x93\x55\xf3\xef\x06\x69\xdb\x03\xc1\ \xf6\xb9\xfa\x9f\x83\x24\x67\x42\xa1\xb7\x35\x3a\xfa\x7b\x22\x9f\ \xb4\x42\xf7\x60\x5f\x04\xb4\x90\x40\xca\x20\x86\xf0\xf9\x06\x62\ \xa0\xbc\x34\x11\xe7\x75\x13\xd0\xa8\x78\x90\x12\x65\x86\x98\xaa\ \x51\x3d\x0e\xa2\x53\xce\x0c\xf0\x30\xb1\xc8\x41\x62\x14\x9a\x27\ \xe9\xdf\x79\x57\x71\x0c\x33\xe9\xdf\x49\x03\x33\x40\xe7\x0c\x03\ \x30\xa5\x40\x68\x9c\x4d\x2a\x03\xc3\x04\x6b\xc9\xd7\x23\x08\xb0\ \xb0\x8c\x1f\xc0\x1a\x80\x57\x41\x20\xc3\xe1\x08\x80\xa5\xde\xb2\ \xc8\x93\x0d\xfc\xff\x6f\xef\x5c\x62\x24\x3b\xb2\x32\xfc\x9d\x13\ \x71\x6f\x66\x3d\xfa\x69\x37\xed\xb6\x47\xd6\xcc\x2c\xc0\x1a\x89\ \x05\x82\x0d\x2c\x46\x48\x20\x3c\x2b\x16\x08\xb1\x64\x81\x84\x10\ \x48\xb3\x9d\x35\xbb\x11\x6c\x58\x20\xd6\xb0\x46\x20\xb1\x9b\x05\ \x03\xc3\x0a\x9b\x85\x05\x12\x1a\x86\xe1\x61\x6c\x33\xd3\x72\xdb\ \xed\xee\xaa\xca\xca\xcc\xfb\x88\x38\x87\xec\xbc\xa1\x0e\x4d\xaa\ \x53\x59\x58\x83\x85\xe4\x3a\xa5\x5f\x27\x22\x6e\x66\x56\x77\xfd\ \xff\x79\x44\x44\x49\xf5\xe0\x67\x99\xdf\x5b\xca\x5f\x88\xeb\xd7\ \x72\x72\xbe\x78\xf2\x06\x0f\xda\x2f\x71\xbf\x7d\x0d\xcb\xbe\x25\ \xde\x58\x31\x7a\x8f\x06\xc5\xd5\x70\x0c\x01\x32\xe3\x04\x19\xf0\ \x90\x30\x4b\x24\xe9\xd1\x20\x24\xed\xa1\x08\xa4\x89\x11\x2f\x61\ \xad\x0a\x68\x69\xee\x04\xd0\x9a\x0d\x9c\x89\x74\x1f\x81\x5a\xfb\ \xb1\x54\xc8\x8e\x40\x62\x32\x99\x50\x24\x50\x59\x2c\x82\xd8\x21\ \xfc\xaa\x91\xfe\x79\x10\x40\x25\x9f\xbb\x34\x77\x1f\xf3\xa7\xb4\ \xfa\xb5\x26\x1c\x73\x73\xf6\x32\x62\x33\x70\x61\x9d\xd6\x9c\xf5\ \x4f\xb8\x29\xb7\x69\x88\xb8\x44\x72\x4e\x04\x01\x17\xdb\x22\x93\ \xc8\x9e\xe8\x7c\x49\x96\x91\x4e\x96\x24\x99\x44\x81\xc0\x20\x1d\ \x89\x81\xc4\x08\xd1\x20\x7a\xd9\x01\x14\xe8\x04\x04\xb4\x44\x79\ \x4a\x13\xe9\x62\x05\x5e\x5e\x63\x3c\xaf\xfb\x68\x69\x14\x73\xbd\ \xc9\xa3\xf8\xfa\xf7\x08\x29\xb6\x67\xdb\xf7\x39\xb1\xb8\x97\xfc\ \x07\x84\xaf\x08\x7f\x64\xf0\x1b\x64\xc1\x5d\xc9\x49\x78\x74\xf9\ \x21\x47\xe1\x06\x8d\xce\x99\xe9\x11\x17\xe9\x13\x8e\xe5\x84\xa8\ \x11\x15\xc1\x4a\x9a\x1d\xac\xc3\x24\x31\xe8\x7a\x3b\x1e\x74\x03\ \x59\xb3\x96\x45\x11\x42\xbf\x15\x43\xc7\x8a\x51\xfa\x42\xfa\x0e\ \x22\x48\x2e\x3e\x4d\x6b\xaa\x90\x15\x24\x55\xee\xc4\x00\x2d\xa0\ \xae\xa3\xb0\x9b\xf2\xdd\x0f\xa6\xf5\xcf\xb7\x00\x28\xe4\xff\xa4\ \xf3\x4b\xc0\xef\xa6\x04\x66\x09\x74\x20\xca\xc0\xd8\x26\xce\xfb\ \xb3\x29\xda\x34\x73\x43\x6f\x4e\x29\xdc\x13\xc9\x06\x54\x14\xf0\ \x29\x03\xe8\xc8\x79\x7e\xcc\xa8\x03\x3d\x2b\x7a\x59\x6d\xa3\x7e\ \x29\xe7\x5c\x72\x39\x65\x00\xed\x31\x4d\x10\x40\xb4\xd6\x73\xa9\ \xf3\x8a\x5c\xd7\xbd\x10\x5f\x77\x0a\xb5\x31\x24\x83\x67\xc0\x98\ \xcc\x6b\x26\xb8\xb6\xbd\x02\x28\xd1\xff\xe7\xc8\xcd\xef\x72\x43\ \xee\xf1\x27\xb9\xa4\xe0\x31\x43\xee\x07\x9c\x05\xaa\x2d\x22\xc2\ \xbc\x6d\x79\xdc\xf7\x0c\x7a\xc9\x5a\xce\x38\x6d\x4f\x89\x4d\x44\ \x51\xba\x7c\x89\x07\x23\xd9\x48\xd2\x91\x81\x35\x17\xfe\x09\x43\ \x58\xb3\x96\x6e\x12\x82\xae\xe9\x59\x4d\xe5\x41\x0d\x17\x2a\xe9\ \x5a\xc9\x67\x77\x5c\x0f\x80\xa6\xd7\xfb\x24\x8c\x7a\x4b\x58\xc9\ \x0f\x12\xf9\xfd\x6f\xfe\x01\xf3\x78\xc4\xd1\xc9\x09\x77\x6f\xdf\ \xe5\xe5\x7b\xf7\x37\xb8\xc7\xe9\xe9\x4d\xda\xd9\x0c\x51\x41\x90\ \xab\xed\xf7\x77\x34\xf4\xd9\xef\xf7\x3f\xf5\xe7\x1f\x16\x80\x50\ \x52\xff\x53\xf4\xfe\x4d\xbe\xe1\xc6\x97\xcd\x21\x03\x04\x18\xd2\ \x88\x6a\xcf\x19\x4f\x10\x35\xe4\x72\xe4\xfe\x8d\x57\xd0\x64\xb8\ \x8e\x2c\x79\x4a\x63\x0d\x1a\x74\x22\x0b\xb8\xe4\x8c\x1c\xc6\xa9\ \x0f\xd0\x25\xa3\x74\x3c\xe5\x63\xce\xfc\x09\x9d\xf7\x74\xd2\x57\ \x62\xc3\x55\x50\xcb\x02\x85\x7c\x49\x80\x80\x30\xcd\x3d\x4f\x20\ \xc1\x6b\x37\x5f\x47\x54\x71\x1c\x45\xb6\x63\x55\xad\x6f\xd8\x73\ \x16\xb0\x63\x07\x08\x28\xf6\x59\xed\xf7\x0f\x9e\x35\x1c\xfe\x77\ \xed\x5e\x07\x3f\x3f\xe1\xe3\x01\xe1\xa5\x73\xe6\x2f\x2b\xff\x95\ \x23\x2f\x8d\xa5\xde\xda\x33\x94\x08\x3d\x99\x1d\x73\xe7\xf8\x06\ \xf3\x59\xc3\x2b\xb7\x5e\xe6\x68\x33\x3f\x6a\x8f\x36\xf3\x39\x47\ \xcd\x11\x9d\xae\x20\x80\x06\x81\xe0\xe4\x90\x38\xe7\x31\xeb\x70\ \x49\x0a\x3d\x9d\xac\xe8\xfa\x8e\x55\xb7\x66\xec\x53\xbd\xee\x2d\ \xa8\xf3\xfd\xeb\x36\x40\xda\xc0\x47\xb0\x0d\x72\x06\x4f\xd3\x7a\ \xee\xc0\x16\x60\x2b\xe0\x5d\xe0\x11\x60\x9f\xfb\x52\x7f\x85\xeb\ \xe0\xaf\x20\x80\xdc\x7e\xc2\xaf\x38\xbc\xe4\x0e\x66\x60\x40\x06\ \x5c\x20\x28\x8c\xa9\x63\x31\x66\xa4\x3d\xe6\xe9\xe8\x58\xb8\xcd\ \x82\xc7\xcc\x7d\x4e\xcc\x2d\xf3\x76\x8e\xb8\xb0\xb2\x0b\x30\x27\ \xe5\x91\x31\x76\x8c\xd2\x73\xe6\x1f\xe1\x8d\x61\xe2\x58\xf0\x1f\ \xa9\xf3\x1a\xc0\xb7\x73\x79\xde\xf1\xbb\x7a\x4d\xf5\x4a\x85\x4c\ \x1e\x2d\x73\xab\xb5\x5f\x9e\x81\x52\x0a\x1e\x03\xc6\xb5\x51\x4d\ \x44\x14\x70\x2f\x91\x1f\xa9\x9d\xbf\x73\x49\x23\xb7\xf9\x75\x53\ \xb0\x0c\x59\x21\x03\xe6\x13\x09\x6e\x20\x62\x98\x8f\x2c\x87\x0b\ \xb2\xae\x49\xd2\x31\x63\x46\xd2\x81\xc1\x36\x63\x9b\x41\x53\x53\ \xf4\x85\x3e\x26\xfb\x88\x9b\x61\x4d\x06\x73\xbc\x12\x3a\x11\xaf\ \x82\x07\x41\xa3\x62\xad\xe0\x08\xe6\x30\x9a\x21\xe6\xa4\x64\x55\ \x30\x01\x88\xa0\x19\x4c\xcb\xe7\x50\xe0\x40\x12\xc8\xc0\x53\x87\ \x74\x1d\xf9\x2f\xb0\x00\x98\x88\x98\x6f\x2c\x02\x94\x73\x7e\xe5\ \x75\x92\x5f\xf0\x33\xee\x85\x6c\x05\x33\xf0\x00\xf8\x84\x9c\x29\ \xa9\x41\xc8\x36\x70\xde\xf5\xb4\x34\x04\x0b\xc4\x26\x30\xb0\xa6\ \xb7\x35\x12\x4b\x4d\x8e\x86\x63\xcf\x23\x15\x2b\x47\xbe\x1b\x90\ \x95\x3e\x67\x42\x06\xf5\x08\x1b\x08\x01\xc3\xc9\xee\x88\x65\x92\ \x6d\xbf\x69\xc9\x26\x06\x89\x49\x0c\x11\xc8\xf5\x52\x08\x07\xb2\ \x4c\x0b\xd9\xf1\x77\xaf\xc9\xdf\x63\x33\x60\x28\x81\x6f\xb1\x44\ \xbf\x00\x70\x03\xe1\x29\xc7\x3e\x71\x83\x67\xd0\x00\xd9\x4b\x74\ \x55\x80\x39\x79\x03\x75\x18\xd2\x40\x10\x21\x21\xd3\x97\x6c\x90\ \x1d\x57\x03\x29\x91\xee\x82\x78\x20\xa0\x28\x82\x04\x45\x9b\xc8\ \x91\x07\x82\x46\x34\x06\x88\x8a\x8d\x90\xd4\x59\x58\x07\x59\xf1\ \x94\xa1\x61\xfa\xbc\x04\x04\x43\xea\x6e\x00\xa3\x8c\x05\x2c\xcb\ \xd6\xe7\x0f\x80\xf5\xb5\x00\xf6\xd8\x1c\x2a\x93\xd1\x37\xb6\x69\ \x00\x85\x07\x08\xef\xa3\x2a\xcc\xb3\x03\x06\xd4\xc8\xc7\x6b\xcb\ \x49\x32\x88\x50\x9b\x2b\x03\xb7\xf2\x16\x2f\x64\x8b\x12\xa4\x21\ \xe8\x33\x2f\x34\xd2\x10\x55\x69\xb5\xa1\xa7\xa7\x89\x0d\x42\x40\ \x89\x88\x04\x04\x61\x14\x30\x77\x42\x6b\xb8\x09\x49\x8c\x86\x91\ \x9e\x4c\x6f\x23\x64\xa1\x4f\x19\x1d\x33\xae\x3e\x09\x4b\xc0\x93\ \xe0\x83\x20\x02\x79\x01\xf6\xbe\x5f\x93\xbf\xdf\x5a\xa8\xbf\x37\ \x1d\xa1\xd8\x3b\xc0\x1b\x38\xe7\x2c\x02\xdc\xcb\xa5\xbe\xb2\x13\ \xfd\x6e\x60\x19\xc6\x0c\x6a\x40\x02\x54\x50\x09\xa8\x43\x94\x88\ \x8a\x12\x37\x98\xe9\x24\x80\x36\x34\xa8\x06\x9a\x67\x6b\x34\xdc\ \xd6\x9b\xb4\x31\x82\x04\x54\x15\x53\x27\x07\xa7\x1f\x32\x2b\x1b\ \xc0\x12\xb3\x26\xa2\xe6\x58\x72\x3c\x0b\x79\xb4\x2d\x5c\x0d\x51\ \xb6\x70\x01\x77\x01\x13\x1c\x81\xd1\xfb\xf4\x8e\xff\x1b\x99\x81\ \xda\xbf\x8e\x40\x5f\x30\x02\x46\x95\xae\x40\xb5\x3a\xbf\xf2\x9a\ \x43\xb5\x03\x6b\xfb\xe6\x4e\x9d\xfb\xde\x79\x85\x15\x64\x2a\x52\ \xc1\x58\x30\x00\x1d\xb0\x02\x16\xc0\x39\xf0\x04\x78\xca\x8e\xc5\ \x72\xfa\xe7\x5b\x38\x98\xf0\x37\x64\xbe\x1c\x05\x86\x92\x6a\x05\ \xf0\x42\xbe\x17\x51\x58\x02\x8f\xe0\x61\x8a\x76\x31\x21\x78\xa0\ \x95\x19\x51\x23\x47\xb1\xa5\x09\x91\x18\x02\xf3\xd0\xe2\x6a\xcc\ \x34\x12\x35\xd0\xca\xc6\xa3\x48\x10\x40\xc8\xe6\xf4\x96\x21\x08\ \xda\x2a\x6b\x1f\x09\x6e\x60\x23\x96\x9b\x29\xf2\xe3\x88\x06\x79\ \xbe\x23\x20\x80\x0f\xba\x81\x94\xfa\xef\x43\xf7\xf7\xfe\x3d\x5f\ \xfa\x72\x87\xfc\xae\x90\x3f\x50\xdb\x42\xdf\x43\xb0\x1c\x5c\xdb\ \x6f\x5e\xfd\xd5\xd7\x76\x88\xf5\x3d\x73\xa3\xce\x33\x60\x7b\x88\ \xaf\x02\x80\xbe\x14\xc2\x25\xb0\x28\x58\x51\x7f\x0e\x06\x10\x29\ \x7b\x02\x41\x32\x7f\x4c\xc8\x03\xdf\x0a\xca\x6f\x5b\x2f\x88\x38\ \x2a\x40\x89\x36\x80\xb2\x3d\x44\x1d\xfa\x11\xe6\x0a\xe4\xa9\xa6\ \x47\x6d\x11\x94\xe0\x82\xb8\x6e\xc7\x2d\x0d\x8a\x12\x89\xcc\x69\ \x88\x28\x47\xb2\xf1\xa2\xa8\x2a\x19\x63\xb4\x8c\x1b\x88\x09\x29\ \x1b\x41\x95\x26\xc0\x58\x22\xbd\xcb\x3d\xd9\x13\x99\x8c\xe3\xb8\ \x09\x79\xa9\x58\xa7\x25\x06\x6c\xe8\xfe\xce\xdf\xf2\x27\x7e\x81\ \x4f\x2b\x3b\x3f\x84\x0e\x18\x76\x4e\x04\x84\x0a\x76\xc7\xbb\x7e\ \x57\x14\x87\x23\xb9\xfa\xab\x46\xf5\x2e\xc9\x7b\x90\xa9\x18\xab\ \x00\xf6\x8a\xa0\x2b\x58\x17\xd4\x4c\x08\x5e\x4b\x80\x6c\x33\xc1\ \x78\xf6\x13\x7c\xe7\xa5\xc7\xfc\x40\x32\x5f\x68\xb2\x90\xb2\x23\ \x01\xac\x96\x55\xac\x6e\xc1\x48\x09\x42\x02\x8d\xe0\xc9\xa1\x99\ \xca\x00\x0e\x92\xa7\xef\x20\x06\x31\x06\x00\xc4\x05\xbc\x26\x60\ \x91\xc9\x07\x15\xb2\x4a\xd9\xe3\x3b\xbd\xf5\xb8\x38\x46\x2e\xb7\ \x8a\x99\x71\x4c\xf8\x38\x35\x8a\x79\x11\x11\x1c\x5f\xdb\x93\xe5\ \xb7\x79\x2b\x7f\xec\x9f\xe0\xcf\xff\xe3\xeb\xa2\xf6\x65\xf1\x3d\ \x30\xee\x10\xa6\x7b\x88\xbf\xaa\x28\xb8\x0a\xd9\x7b\xe6\xec\x89\ \xf0\xbc\x33\xde\xbf\x56\x91\xae\x80\x71\x67\x6e\x40\xdd\x06\x52\ \x2f\x82\xfc\xec\xeb\xac\x6f\x1d\xf1\x7b\x21\xf0\x57\xb9\x13\xdd\ \x46\x73\x70\x54\x1d\x77\xb6\x10\xe1\xf9\x38\xdb\x33\x18\x21\x0b\ \x39\x1b\x3a\x3a\xa9\x31\x24\x2b\x34\x42\xce\x99\x31\xb0\x7d\x8e\ \x84\x2d\xd1\x9d\x25\xe6\x12\x51\x71\x10\xc8\x62\x5b\xf4\x0c\x8c\ \x8c\x8c\x9e\x58\x7b\x47\x37\x0e\x9c\x77\x2b\x86\x9c\x19\xcd\x18\ \x16\x81\x74\x2e\xe4\x0e\x74\xe6\x0c\xef\xf9\xbf\x2f\xbe\xed\xff\ \xc0\x32\x9f\x63\x93\xe2\x0b\xe9\x17\xc0\x59\xf1\x8b\x22\x8a\x0c\ \x70\x98\xe8\x3a\xbe\x82\xf7\x43\xfe\x8a\x59\xc0\xae\x84\xfd\xaf\ \xcd\xd5\x1f\x7c\xaf\xb3\x7b\x10\x44\x59\x11\x91\x86\xbf\x24\xbc\ \x7f\x9f\xb7\xbf\xf8\x8b\xf2\x67\xda\xf0\x5b\xe9\x52\x71\x37\xe2\ \x31\xf8\x7c\x22\x8c\x0c\x12\x28\xdd\xbf\x93\x06\x50\x35\xfa\x30\ \xd2\xb4\x0d\x69\x34\x34\x64\x72\x9a\x52\x76\x30\x65\xb0\x8c\x67\ \x07\x85\x80\x30\xca\x14\x90\xae\x4e\xe7\xe3\xf6\xf9\x32\x75\x04\ \x8f\x3c\x4d\x97\xf4\x69\x64\x6d\x23\xab\x33\x63\x5c\x08\xc3\x79\ \x24\xaf\xc1\xb2\xe2\xd9\xba\xee\x9d\xfc\xf6\xf2\x2d\xff\x3e\x9b\ \x31\xf6\x3c\xcd\xd5\x86\xa7\x0a\xe0\xb2\x3c\x1b\x0f\x11\x7c\x78\ \x6d\x7f\x09\xf8\xb4\xf5\x7f\x0f\xec\xc0\x1a\xfb\x9e\x1d\x10\x1d\ \x13\xf1\xd5\x22\xc5\xb6\xe4\x43\xc3\xc3\x0d\xce\x91\x87\x33\xfb\ \xc3\x57\x7f\x41\x5e\x8b\xd1\xdf\xcc\x6b\x9d\xf6\xfc\x1b\xc4\x13\ \x87\xd6\xc1\xea\x29\x1c\xf8\xf4\x3c\x65\xd6\x43\x47\x42\x49\xda\ \x30\xda\x40\xb4\xc0\x40\x20\x66\xe5\x74\x7e\x4a\x4e\x36\x95\x14\ \x32\xa6\x46\x0a\x89\x44\x66\xb0\xc4\xca\x7a\xfa\x21\x71\x79\x91\ \xe8\xcf\x33\xfd\x53\x65\xb8\x10\x86\x8d\xcf\x9d\xa0\x6a\x39\xfd\ \xa7\xfd\xc7\xc5\xdf\xe6\x7f\xca\x4f\xfd\x82\x4a\xfe\x72\x97\xfc\ \x32\xbe\xac\x3d\x40\x49\x85\x9f\xbe\xf3\xe7\x40\x09\xe0\xd3\xee\ \x08\xf6\xf9\xbd\xcf\xae\x3e\x66\x87\xf4\x17\x5f\x06\x89\x48\x2c\ \x62\x68\x81\x66\x8b\x39\x47\xdc\x61\xfe\xfa\xaf\xe9\xd7\xf5\x86\ \xfc\x8e\xb9\xa8\xb4\x60\x2a\xcc\x6e\x66\x64\x0e\x3a\x77\xa4\xd9\ \xa0\x85\x18\x84\x30\x83\xd0\xea\xc6\x2b\x31\x06\x42\xa3\x34\x6d\ \x40\x1a\xd9\x8e\x43\x14\x74\x03\x0b\x46\x0e\x19\x8b\x99\xac\x09\ \x57\xc3\xce\x1a\xba\xa5\xd1\x9f\x3b\xe3\x25\x74\x1f\x09\xab\x87\ \x11\x37\x40\xdc\xf3\x0f\xf3\x87\x67\xdf\xca\xff\x6c\x8f\xfc\x89\ \x5d\xe6\x33\x6a\x83\x77\x49\x25\xff\xbc\x46\x7e\xa9\xff\x95\xfc\ \xa1\x08\x20\xef\x25\xf6\xff\xd6\x9c\xc3\xe6\x57\x5f\x3f\x4c\xf0\ \x61\xab\x02\x98\x48\xdf\xc5\x8c\x19\x47\x9c\xbe\xf6\xab\x7c\x75\ \xf6\x05\xfd\x86\x49\x78\x35\x9b\xa0\x73\x08\x27\x06\x22\x84\xb9\ \x11\x4f\x1d\x9d\x6d\xd0\x3a\x12\x84\x38\x73\xa4\x15\x34\x40\x33\ \x8b\x10\x95\xd8\xb2\x15\x82\x07\x20\x38\x44\xa3\x5f\x42\x36\xb0\ \x2c\x58\x07\xc3\x39\x2c\xde\x6d\xb1\x1e\x10\xc3\x07\x86\xf5\xf7\ \xfd\xa3\xd5\xdb\xfe\x5e\xff\x2f\xdd\x07\x38\x3d\xf6\x9c\xf8\x55\ \x21\xff\xa2\x0a\xa0\x10\x5f\xd3\x7e\xff\x82\xce\x38\xf1\xff\xd3\ \x2a\x99\x9f\x81\x1d\xce\x00\x15\xed\xf6\xeb\x95\xf8\xf2\xab\x6f\ \xf2\xe6\xec\x81\xff\xa6\x79\x78\x25\x79\x40\xc2\x44\xba\xbb\xd2\ \xdc\xc8\x84\x63\x88\x73\x63\x76\x27\x33\xae\x03\x28\x68\x0b\x61\ \xee\xdb\x67\xb2\xf1\xdd\xc7\x4d\xcd\x6d\xae\xa4\x41\x58\x7f\x18\ \x21\x38\xda\x18\x9e\xdd\xfb\xff\x96\xc5\xea\x1f\xed\xe1\xe2\xaf\ \x87\xef\x92\x3d\x31\xd2\xe3\xb6\xc6\xe8\x76\xc8\x5f\x50\xb1\x2c\ \xe8\x0a\x86\x2d\x76\xb6\x45\xee\xd7\xbf\x16\xb4\x2b\x80\x1f\xe9\ \x01\x76\x84\x10\x27\x5f\x70\xd4\x9c\xc4\x7b\x7a\xe7\xee\x57\xed\ \x97\x4f\x5e\xb7\x9f\xb6\x59\xf8\x39\xd7\x70\x37\x9b\x60\xe5\xf7\ \x06\x25\x82\xce\x8c\x30\xaf\xd7\xbd\xcf\xc4\xa0\xf3\x49\x2c\x88\ \x90\x07\xc1\x4d\xb6\xf3\x30\x73\xcf\x0b\x5f\xf5\x8f\xb8\x18\xbf\ \x37\xbc\x77\xf1\x1d\x7b\xe8\x03\x83\x19\x23\xbd\xaf\x71\x1b\x0a\ \xf1\x05\xac\x0a\x2e\xa9\xa4\xaf\x0e\x10\x9f\x80\xce\xdd\xaf\x2f\ \x87\xf7\x09\xa0\xde\x15\x57\xf2\xf7\xf8\x86\x63\xe6\xb4\xf1\x38\ \xdc\xd2\x97\x6e\xbe\xe1\x77\x8e\x7f\x8a\x9f\x67\x1e\xbe\x64\x21\ \xbe\xe6\x81\x3b\x04\xb9\x11\x4e\x2d\x94\xe3\x5a\xc7\x45\x72\xa7\ \x34\x27\xb6\xb6\xde\x2f\xd3\x52\x56\xf9\xcc\x2f\xc7\x8f\x59\xac\ \xdf\xee\xfe\x75\x78\x44\x0f\x08\x22\xe5\xd0\x7f\x83\x44\x25\xb1\ \x1e\x68\xac\xa9\x22\x58\x53\xe7\x65\x0b\x58\x09\xdf\x79\x6f\xba\ \x8e\xfc\xc3\x02\xa8\x8b\x1b\x03\xda\x82\xc8\x7e\x04\x8e\x99\x31\ \x8b\x27\x2c\xd2\xc8\xad\xd9\x69\x38\xd1\x5b\x1c\xeb\x89\x37\x32\ \xc3\x88\xf6\xc1\xfa\x87\x1c\x85\x53\x3d\x89\xb7\x99\xc9\x11\xbd\ \x89\xfd\x60\xf8\x04\xbc\x41\x09\x18\x4a\x36\x03\x14\x23\x51\x4f\ \xc2\xd2\x6e\xfa\x2e\xbe\x46\x79\xc5\x58\x90\x0a\xfa\x92\xee\x33\ \xd7\xf6\xbf\x16\xc0\xae\x18\x42\x8d\xfe\x4a\xfc\x0b\xbc\x02\x91\ \x93\xa6\x61\x39\x52\xe6\x02\x04\x22\x81\x04\x40\x2c\xeb\xa1\xac\ \x2b\x69\x67\x5f\x3d\x21\x57\x54\x21\xec\x8e\xab\xaf\x5d\xfe\x75\ \xb4\xff\xf8\x04\xb0\x2f\x33\x08\x10\x26\x14\x51\xd4\xb9\xee\x40\ \xd8\xf5\x05\x75\x5e\x6d\xdf\x8d\x57\x1d\x57\xa2\x0b\x32\x60\xd7\ \x84\x7f\x26\x02\x38\x2c\x8c\x3d\x84\xef\x13\x03\xbb\xe7\xe2\x2f\ \xf0\x19\xf0\x9d\x31\xd7\x7c\xff\xf8\xec\x7f\x00\x9b\x12\x19\x7f\ \x06\xa6\xf6\x06\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x02\xff\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xdc\x0b\x1d\x15\x21\x29\xa8\x4b\x24\xb3\x00\x00\x02\x8c\x49\x44\ \x41\x54\x38\xcb\x85\x51\x5b\x48\x93\x61\x18\x7e\xbe\x1d\x9c\xe6\ \x96\x1b\x85\x59\x24\x29\x73\x1e\x89\x6e\xcc\xb4\xc0\xa2\x75\x93\ \x4a\x42\x07\x28\x2c\x6f\x22\xd0\xec\xaa\xc4\x0b\xbb\x8a\x2e\x24\ \x75\x86\x44\x51\x78\x11\x58\xad\xc8\x2c\xc4\xd0\x90\xe5\xc8\x12\ \x5b\x06\xce\x4a\xe6\x31\x6d\xb9\x39\x34\xb7\xdf\xd3\xef\xf6\xeb\ \xfe\xb7\x8b\x9a\x0e\xfb\xab\xe7\xea\x83\xef\x79\x1f\x9e\x03\xe3\ \x00\xd2\x02\x0c\x12\x70\x98\x33\x30\x6c\x1f\x4d\x4f\x4c\x52\x3f\ \xd3\xee\xd2\xa7\x31\x65\xe4\xe0\xf2\xb8\xfd\xa4\xa1\x20\x75\x80\ \x6d\xfb\x00\x0e\x20\x00\x58\x7f\x48\xa0\xc7\xa4\x0d\xce\x76\x65\ \x89\xae\xf1\x2a\x9a\xf5\xb6\x88\xee\x57\x7b\xc4\xf0\x1b\x05\x00\ \x68\x01\x26\xe5\xa4\xfd\x7a\x42\x6e\xb4\xc6\x2f\x03\x11\xb0\x34\ \x01\x21\xc0\x31\x85\x92\x10\xce\x55\x84\xc8\x52\x22\x82\xe0\x77\ \x05\xa0\x83\xe0\x75\x23\x92\x44\x80\x82\x90\x1b\x3f\xa1\xbf\x36\ \x21\x05\xe5\x13\xd2\x96\x37\xc6\x79\xd7\x70\xa8\xc9\xfe\x30\x8b\ \x1c\x8d\x89\x22\x07\x50\xdf\x83\xdc\xd6\xf0\x7f\xd9\x46\x81\x90\ \x93\xf7\xb7\x76\x5e\x70\x76\x9e\xa5\xd8\x38\xdd\xa6\xa5\x80\xe6\ \xc4\xf6\xe2\x71\x36\x6c\x2e\x28\xec\xb5\x7e\x2e\xc2\xff\x50\x5b\ \x72\x58\xc9\x01\xe4\x1b\xad\x15\x17\x3d\xcd\xc4\x01\x34\xd2\x7a\ \xbc\x71\xe4\x85\xf1\xfb\x90\xd9\x40\xd6\xba\xd4\x8c\x10\x57\x21\ \x25\x90\x93\xf6\xf5\xfc\xdc\xcb\xdd\x88\x49\x2a\x67\xab\x00\xfc\ \xbd\x67\x10\xbd\xe4\x3e\x47\x2b\x3c\x84\xa0\x08\x8d\x5a\x59\x04\ \xa0\xf2\xaf\x02\x11\xca\xe0\x7e\x59\x94\x8e\xf0\xbb\xd0\x99\x01\ \x1b\x14\x2a\x35\x44\x31\x82\x5b\x09\xc6\x37\x2d\xf0\xdc\xfd\x7f\ \x3a\x60\x20\xb5\xc6\xd8\xc5\x04\xc7\x65\x88\xde\x49\xc4\x1f\x78\ \x8a\xf0\x75\x3a\xaa\xd3\xa5\xb3\x8f\x3d\x39\xb8\xb6\xc4\xa4\x25\ \x87\x3c\x7d\xc5\xe4\xe9\x39\x26\x7a\x3f\x96\x10\x07\x90\x11\x60\ \x8f\x2a\xcb\x20\xb9\x82\xed\x5e\x3e\xf4\xa7\xdf\x80\x03\x88\xef\ \x30\x42\xae\x52\x41\x98\xfa\x42\x8b\x53\xc3\x8c\xf7\xf5\x63\xb5\ \x3b\x1f\xcd\x80\x28\x9b\xb9\xad\x6a\xa9\xbe\xb2\x2e\x60\xad\x33\ \x00\x00\x7c\x3e\x7b\x1c\x07\x10\xdf\xbe\x0f\x32\x39\x87\x55\xaf\ \x9b\xa6\xbf\x79\xc6\xa6\x9c\xfe\xab\xdc\xa4\x13\xfc\x9c\x8b\x04\ \xcb\x5e\x3a\xda\x00\x7f\x61\x85\x09\xcf\xeb\xb3\x7f\xc5\xbd\x56\ \x7c\x42\x96\x97\xd3\x6f\x33\x94\x8e\x66\x06\xda\x52\x09\x72\x39\ \x5b\x5e\xe0\xf1\x63\x3a\x30\x98\x79\xd1\x95\x06\x30\x58\x4d\xc9\ \xc6\x2d\x31\x8b\x96\x98\x58\x0d\x45\x2a\x64\x4c\x95\xe7\x58\xeb\ \x84\x85\x32\xcf\x9a\xe3\x28\x22\x4a\x05\x7e\x41\x60\xbe\x79\x65\ \x7b\xf6\x25\x67\x9e\xa5\x3a\x05\x47\x2a\x86\x00\x00\x9d\x35\x29\ \x59\x5b\x75\x73\xb6\xe8\x28\x19\xb8\x79\xcc\xeb\x4b\xdd\x9b\xb5\ \x00\x03\x07\x50\x5b\x55\x46\x72\xdf\xdd\x58\xea\xbd\xb3\xc3\xd9\ \x69\xd2\x9f\x02\x80\x8e\x1b\x7f\x36\xfd\xf6\x66\x42\x59\x77\x7d\ \xfc\x63\x00\x78\x5d\x63\x00\x07\xd0\x4f\x46\xb6\x2a\x02\xfa\x0c\ \xd9\x8b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xdc\x01\x13\ \x00\x0d\x36\xac\xf0\x4c\xe1\x00\x00\x02\xaf\x49\x44\x41\x54\x38\ \xcb\x8d\x52\x5b\x48\x93\x71\x1c\x3d\xff\x6f\x9b\xbb\xe3\xa6\x69\ \x66\x46\x59\x1a\x4e\x93\x12\x25\x5d\x45\x79\x89\x1e\xb4\x30\x52\ \x8a\x10\x7d\xa9\xa8\xcc\x5e\x1a\xf9\x50\x0f\x11\x41\xa1\x38\x21\ \x7a\xaa\x1e\xa2\xa0\x90\xac\xc8\xb0\x0c\xb1\x0c\xcd\x52\x7b\x59\ \x88\xb6\x89\xb7\x86\x9b\x6b\x6e\x9f\xbb\xe8\x2e\xdf\xf6\x7d\xff\ \x1e\xc4\x10\xb2\xd9\x79\x3d\xe7\x77\x38\xe7\xf0\x23\x88\x81\x1f\ \xcf\x72\x30\x6e\x9a\xc8\x4e\xcf\x50\xbd\xd0\x6c\xdd\xa1\x23\x12\ \x99\x39\x38\x6d\xaa\xce\x3c\x9a\x35\x4a\x36\x0e\xe3\xbf\xf0\xd5\ \xa8\xe1\xdd\x7d\x7b\x05\xdb\xf4\x1d\xea\x66\x3b\x04\xfb\xfb\xdd\ \xc2\x6a\x9e\x89\x75\xdc\x75\x6b\xdb\x41\xa5\x5a\xc6\x80\x52\x82\ \xa5\x19\x70\xce\x2f\x44\x2c\xa1\x64\xc0\x98\x52\xbc\xa2\x11\xc7\ \x32\xe0\xb8\x90\x2d\x0c\x2d\x38\xd6\x0e\x19\x15\x00\xca\xc3\xe3\ \xf4\x22\x4a\x65\xf6\x15\x0d\x59\xaf\xc2\xe7\x87\xc5\xed\x2a\x79\ \xa0\x5a\x2a\xcc\x53\x2a\x56\x93\x30\xaf\xe9\xcc\xab\xed\x3b\xb6\ \x6e\x82\xc1\x7b\x69\xe7\x52\x73\x8a\x1f\x84\x96\x96\xde\xcd\x3b\ \x45\x55\x9c\x32\x45\x0f\x41\xe8\x37\xf5\x0e\x7c\x5a\xad\x5b\x33\ \x41\xcb\x85\x52\x49\xf9\xfe\x19\x6e\x93\xbe\x9e\x4a\x54\xe9\x64\ \x7e\xa4\xc3\x1c\x0d\x2d\x7e\x43\xd4\x5b\x22\x04\xad\x69\x76\x87\ \x68\x57\xc9\x15\xf3\xe8\x3f\x47\xd4\xeb\xa6\xce\x28\xb5\x4a\x44\ \xc5\x20\x5c\xc4\x05\xb9\x26\x92\xa5\x54\xbb\x6b\x15\x2a\x5f\x5a\ \x5c\x9c\x00\xb5\x8a\xa9\x89\x59\x21\x4e\xc2\xef\x63\xe4\x5a\x0a\ \x21\x44\x82\xb3\xfd\x94\x9d\x18\x21\x62\xa9\x0a\x82\x10\xe7\x89\ \xf0\x5b\xda\xfd\x01\xcf\xa3\x98\x06\x04\x54\x05\x80\xd0\x30\x0b\ \x11\x91\x92\x30\x4d\x32\xe4\x9e\x1e\x6a\x5d\xe1\xbb\x9b\xb3\xd7\ \xfe\x83\xc9\xb6\x43\x00\x00\xa9\x36\x3d\x91\xd0\x08\x84\x90\x0b\ \x60\x42\x74\x7b\x6e\x9e\x71\xba\xab\xa6\xaf\x0c\x20\x4f\xaf\x5d\ \xc2\x91\xc6\xb1\xbf\x47\x1c\xba\x5f\x81\xc2\xf3\x6f\x31\xfa\xba\ \xae\x45\xab\xb0\x19\x88\x9c\x47\xc4\xef\xa3\x5c\x28\x40\x64\x6a\ \x2d\x64\x8a\x04\xf8\x03\x1b\x66\x07\x9f\x3f\xce\x50\x64\x1a\xc2\ \x95\x8d\xc6\xe5\x04\xbd\xad\x99\x00\x80\x85\x05\x53\x8a\xe5\xcd\ \xa9\x8f\x5a\xa9\xc5\xc0\x88\x3c\x88\xb2\x76\xea\xfc\xe9\x98\x9c\ \xb3\x86\xae\x7b\x66\xad\x08\x78\x6d\x54\x49\xc6\x36\x17\x1e\x3f\ \x31\x56\xd9\x68\xc4\xab\xbb\x45\xcb\x09\x6e\xd6\x55\x31\xe5\xfa\ \xef\x43\x49\xa9\xc9\x05\x72\x09\x4b\x21\x12\x91\xa0\x3f\x00\x97\ \x33\x6c\x2e\xa8\xb7\xe9\x00\x82\x5e\xe3\xce\xb2\xc4\xf8\xc5\x9e\ \xf8\x64\x35\x95\x89\x19\x32\x67\xa7\xef\xf6\x9c\x35\x57\x00\x00\ \x73\xe3\xc9\x4b\x41\x88\x06\x59\x7e\x69\x8a\x72\xe1\x20\x3c\xbf\ \x58\x38\x1c\x7c\x57\x41\xbd\x5d\xd7\xd3\x9c\x05\x00\x28\x31\x8c\ \x7f\x70\x2d\xa8\x0b\xbd\x4e\x2f\x59\x5c\xf0\x82\x8f\xf8\x0e\x74\ \xde\xce\x4f\x00\x00\xa6\xbb\x49\x07\xf7\xa2\xe6\xb2\xcf\x27\x10\ \xc7\x5c\x64\xd6\x36\xaf\x38\x59\xd4\x60\x2d\xef\x6e\xca\xc6\xe1\ \x46\xcb\x9f\xb1\x4a\xaf\x5a\x86\xbd\x7e\x59\x83\xc3\x25\x6a\xcb\ \xbf\x68\x8f\x97\x4b\x7c\x2c\x00\xfc\x06\xe5\x56\x32\x1a\xa3\x07\ \xf0\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\xe3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x06\xaa\x49\x44\x41\x54\x78\xda\xbd\x57\x59\x4c\x54\x67\ \x14\xbe\x2e\x29\x52\x90\x14\x64\xa8\x60\x37\xa3\xa9\x26\x6d\x6a\ \x43\x0d\x2e\x11\x4d\x6c\x78\xd0\x34\x26\x4d\xed\x83\x0f\x26\x36\ \xa9\x49\x6d\xd2\xda\x26\x6d\x1f\xda\x98\x2e\x36\xf6\xa1\x26\xb6\ \x55\xa9\x0a\x08\x6a\x71\x0b\x58\x16\xd1\x0a\x2a\xa4\x16\x98\x91\ \xd5\x41\xd9\x66\x85\x19\xb6\x19\x66\xd8\x61\x2e\xc3\xcc\xd7\x73\ \x4e\xb8\xea\x83\xe2\x55\xd3\x1e\xf2\xe5\xce\xfd\xef\xbd\xff\xf7\ \x9d\xe5\x3f\xff\x8f\xa2\x59\x7c\x7c\x7c\x34\x5d\x92\x09\x6b\xfe\ \x43\x24\x1b\x0c\x06\xe2\x79\xb0\xa5\xe0\x7f\x30\xe2\x59\xf5\x30\ \x01\xeb\x41\xe6\xeb\xef\x87\xdf\xe7\xc3\x00\xc3\xef\xc7\xe0\xc0\ \x80\x60\x78\x70\xf0\x2e\x46\x86\x87\x21\xe0\xdf\xf7\xdd\xdf\xff\ \x8e\x7c\xe7\xf7\x33\x64\x2e\x7f\x7f\xbf\x26\x60\xc3\x4c\x02\x84\ \x74\x88\x27\x19\x1a\x12\xc8\xe4\x23\x23\x18\x25\xf0\xb3\xb1\xd1\ \xd1\x87\x62\x94\x40\xef\xf1\xfb\x9a\x28\x6d\x1e\x16\xa4\x4b\x80\ \xbc\x38\x34\x4d\xec\xf3\x7a\x31\x3e\x36\x06\x4f\x6f\x2f\x86\x88\ \xdc\xe3\xf1\x30\x91\x8c\x8d\x8f\x8f\x6b\xe0\x7b\xc1\x98\x86\x07\ \x88\xa1\xa8\xe8\x8c\x00\x09\x20\x4f\x65\xc2\xce\x8e\x0e\x4c\x4d\ \x4d\xc1\x64\x34\x8a\xb0\xee\xae\x2e\x79\xa6\xaa\xaa\x44\x69\x62\ \x62\x02\x81\x69\x68\xde\x06\x02\x01\x9e\x83\xef\x79\x0e\x16\xc2\ \x82\xf8\x5e\x9f\x80\x5b\xb7\x6e\xc9\x04\x2a\x4d\xda\xd0\xd0\x00\ \xb6\x6b\x57\xaf\x62\x90\x08\x3b\x48\x10\x41\x44\xb5\xb7\xb7\x23\ \x1c\x0a\x41\x2c\x0c\xf1\xdc\x6e\xb3\x21\x38\x39\x89\x5e\x8a\x98\ \xcf\xe7\x63\x61\x1c\x05\xfe\xcd\xcf\xf5\x09\xa8\xaa\xaa\x12\x01\ \xc1\x60\x10\x15\xe5\xe5\x60\xbb\x72\xe5\x0a\x1a\xea\xeb\xd1\xd9\ \xd9\x89\x7a\xba\xb2\x95\x95\x96\x42\x26\xfc\x56\xc1\x99\x1b\x67\ \x89\x2c\x80\xd6\xd6\x56\x84\x48\x9c\xcb\xed\x86\xc3\xe1\xe0\x48\ \x71\x41\xb3\x68\x4e\x85\x3e\x01\x46\xa3\x51\xbc\x9d\x22\x01\xa5\ \xd3\x24\x97\x2f\x5f\xc6\xb5\xeb\xd7\x61\xb7\xdb\x91\x9f\x9f\x0f\ \xb6\x0b\x17\x2e\x00\x2a\xb0\xe0\xa0\x82\x85\x5f\x2c\x04\x5b\x63\ \x63\x23\xc2\xe1\x30\xac\x56\x2b\xcc\x66\x33\x26\x29\x1a\x5e\xaf\ \x57\xc4\x78\xfa\xfa\xf4\x09\x30\x99\x4c\x52\x84\x21\x0a\x6f\x69\ \x59\x99\x4c\x78\xf1\xe2\x45\x14\x15\x15\xe1\x3a\x89\x38\x71\xe2\ \x04\xd8\x4e\xfd\x71\x0a\x53\x23\x21\x2c\x4a\x9f\x87\x98\xef\x23\ \x90\x5e\x79\x10\x55\x37\xaa\xc0\x56\x53\x53\x23\xa9\x1c\xa6\xbc\ \xf7\x11\x31\x09\xe0\x28\xe8\x13\x50\x5b\x5b\xcb\x85\xa3\xe5\x9e\ \xc3\xce\xe4\x0c\xf1\xfa\xe4\xc9\x93\xe8\xa2\x62\xcc\xca\xca\xc2\ \x60\xf7\x10\x96\x1e\x8b\xc1\xbc\xaf\x22\x90\x7a\x65\x11\xce\x95\ \x9c\xc7\xa4\x3a\x09\x63\x75\xb5\x44\xa3\xbb\xbb\x9b\xa3\x26\xb0\ \x59\xad\x8f\x16\x40\x85\xc2\x1f\x8a\x07\x4d\x4d\x4d\x28\x2f\x2f\ \x17\xaf\x4b\x4a\x4a\x50\x50\x50\x80\x73\xe7\xce\x49\x04\x72\x73\ \x73\x45\xc0\xc5\xbc\x12\xbc\x96\x6d\x80\xf2\xe1\x6c\xcc\xcf\x9a\ \x85\x65\x67\x12\xd1\x5c\xdf\x8c\x9a\x9b\x35\x3c\x8f\xcc\xd1\xd6\ \xd6\x06\x1b\x15\xa7\x55\xa7\x00\x8e\x00\xaf\x77\x29\xc2\x32\x4a\ \x41\x5d\x5d\xdd\x5d\xef\x8b\x8b\x8b\x91\x9d\x9d\xcd\xa2\x44\x80\ \xb1\xc2\x84\xa5\x47\xe7\x53\xb7\x1b\xc6\x0f\xd7\xf7\x42\xf9\x49\ \xc1\xee\x4b\xbb\x51\x57\x53\x27\x02\x5a\x5a\x5a\x98\x58\xbf\x00\ \x90\x55\x56\x56\x72\xee\x38\xf7\xec\x39\xd7\x02\x93\x4b\xf1\x5d\ \xa5\x94\x64\x66\x66\xca\xb2\xca\xc8\xc8\xc0\xe4\x48\x10\xaf\xa6\ \xc7\xc0\xdd\xeb\x46\x58\x0d\x63\xcf\xf9\x3d\x22\xa2\xa9\xae\x89\ \x56\x4d\x83\xd4\x92\xcb\xe5\x12\x01\x4e\xa7\x53\x9f\x80\x8a\x8a\ \x0a\x6d\xc9\xb0\xc7\x5a\xc5\xb3\x30\x0e\xa7\x10\xb3\xe5\xe4\xe4\ \x20\x30\xa8\xe2\x8d\xa3\x06\x38\xbb\x3a\x64\x19\x3a\x9a\x1d\x48\ \x39\x9b\x82\x7d\xa5\xfb\x58\x80\x74\xc9\x9e\x9e\x1e\x58\x2c\x16\ \xb8\xdd\x6e\x3d\x02\xa4\xf0\x58\x00\x7b\x2e\x1e\x93\x71\xfe\x39\ \x9f\x1c\x46\x49\x11\xdb\xe9\xd3\xa7\x25\x02\x29\x19\x2f\xc2\xe1\ \x76\x4a\x07\xb4\xb6\x5b\x91\xdf\x96\x8f\x2d\x05\x5b\x60\xb9\x63\ \xe1\x31\x5e\x05\x22\xbc\x4b\xaf\x80\x76\x7a\x99\xda\x26\x77\x3b\ \x5e\x4a\x9a\x00\x5e\x4a\xbc\xa3\xc9\xfa\x06\xa5\xa7\x9a\x2a\x9d\ \xed\xcd\x23\x49\xb0\xbb\x1c\xdc\xf5\xe8\xdb\x76\xd8\xbc\x36\x2c\ \xce\x5c\x8c\x31\x2f\xb5\x60\x72\xc4\x4b\xdf\x50\x4b\x67\xe8\x12\ \xc0\x6d\x94\x97\xa1\xb4\x54\x2d\x6f\x97\x2f\x5d\xe2\x6d\x9a\x97\ \x24\xef\x07\xfc\x4c\xfa\x3e\x42\xc0\xd2\x83\x71\xb0\x76\xd8\x24\ \xdc\x96\x76\x0b\xac\x7d\x56\x2c\x3f\xbe\x1c\xa1\xd1\x29\xe9\x82\ \xfd\xf4\x5d\x4f\x77\x37\x7f\xab\x4b\x00\x17\xa0\xf4\x6f\x35\x10\ \xe0\x56\xca\xdd\x4c\xfa\xf8\xa4\xaa\x4a\x77\x54\xe9\x9e\x42\xcb\ \x1b\x91\x08\x48\x3c\xf0\x2c\x5a\x6d\x6d\xb4\xdb\x0d\xc1\x6e\xb3\ \xa3\xf0\x76\x01\x76\x14\xef\x80\xcf\xe3\xe7\xfc\x73\xcf\xe0\xd6\ \xcc\xbd\x40\x13\xb0\x7a\x26\x01\xec\x3d\x57\x2f\x93\x48\x58\x55\ \xbe\x12\xb9\xca\x98\x1e\x9b\xe0\x2d\x98\x9b\x55\x00\x88\xf9\x79\ \x0e\xcc\xcd\x66\xf4\x10\x91\xc3\x62\xc3\xb6\x3f\xb7\xa1\xb2\xb9\ \x12\x4e\x87\x93\x9b\x8f\xa4\xf4\x76\x73\x33\x1a\x1b\x1a\xc2\x54\ \x8c\xdd\xc4\x93\xf8\x28\x01\x52\x84\x13\x4c\x46\xd0\x88\xe9\xca\ \x5e\x33\x24\x22\x52\xa8\xa3\x21\xcc\xa5\x65\x57\x65\xaa\x96\x7e\ \x61\xae\x36\x63\x53\xf6\x26\xd4\x57\xd7\xc3\x54\x6d\xc4\x4d\x93\ \x49\xc6\x1d\x76\x7b\x98\x36\xb8\x40\x54\x54\xd4\xa6\x84\x84\x84\ \x59\x33\x09\x60\x02\x26\x66\x88\xa7\x9a\x08\xb9\x06\x54\x1a\xa3\ \xf1\x31\xda\x66\x87\x47\xa1\xd2\x32\x54\x7e\x54\x50\x58\x52\x08\ \x36\xd7\x84\x0b\x61\xfa\xbb\xcf\x78\xcb\x0e\x3b\x1d\x8e\xe0\xbc\ \x88\x88\x77\x0d\x09\x09\x73\x98\x68\x26\x01\x52\x4c\x9a\x08\x0d\ \x72\x3f\xa1\xca\xee\x67\x1e\x32\xe2\x54\xcb\x61\x1c\xf9\xfb\x17\ \xd4\x9a\x6f\x42\xf9\x46\x41\x4e\x6e\x0e\xc8\x58\x20\xbf\x2b\x75\ \xd4\x4f\xdd\xd4\x49\x9e\x9b\x29\xf4\x4b\x96\x2c\xd9\x16\x17\x17\ \x37\x97\x49\xf4\x0a\xd0\x44\x48\x83\x09\x07\x01\x93\xe7\x1a\x0e\ \xf7\x7d\x8d\x03\xde\x2f\x91\xfc\x57\x2c\xe5\x5e\x81\xb2\x8b\x90\ \xa6\xe0\xd0\x91\x43\xd0\xa2\xc7\xa9\xe9\xf7\x7a\xe1\xea\xe8\x08\ \x5b\xe8\x7c\x90\x9a\x9a\xfa\x81\x46\xfe\xb8\x02\x24\x05\xc1\x40\ \x10\xa5\x96\x7c\xbc\x5f\xb6\x16\xf9\x9e\x0c\xfc\x3a\xfe\x19\xd6\ \xd7\x3f\x87\x57\x8e\x29\x88\xfd\x9c\x04\xbc\xa7\x60\xff\xa1\xfd\ \x60\xd3\xce\x91\xee\xce\xce\xb0\x83\xda\xef\xc6\x8d\x1b\x77\x46\ \x47\x47\x0b\xb9\x7e\x01\x63\x63\x42\xac\x4e\x0b\xe1\x94\x26\x1f\ \x4e\xc0\x0b\xc7\x15\xbc\x7d\x33\x0e\x1b\xdc\x11\x58\x6d\x9f\x85\ \x15\x45\x91\x48\xf8\x4e\xc1\x33\x5b\x15\xe4\x9d\xcf\x83\x76\xa4\ \x67\xf2\x4e\xea\x1f\x69\x69\x69\xbb\x22\x23\x23\x85\xfc\xf1\x05\ \x10\xb4\x48\x20\x04\x6c\xfe\x3d\x19\xcf\xa7\x2b\x58\x57\x11\x85\ \x8f\x7a\x5f\xc7\x1e\x75\x0d\x36\x37\x26\xc2\xb0\x97\x0a\xb0\x94\ \x36\xaa\x3c\x39\x25\x49\xd8\x09\x58\x9f\x9a\xfa\x31\x55\xfc\x0c\ \xe4\x3a\x22\x40\x60\x21\x5c\x03\x34\x36\x8e\xed\x99\xef\xe0\xa5\ \xdf\x14\x2c\xce\x53\xb0\xa2\x30\x06\xdb\xb3\xb7\xe2\x4e\x53\x33\ \xea\x6b\xeb\x50\x42\x27\x26\x32\x09\xfb\x5b\x2b\x57\x7e\x1a\x6f\ \x30\x08\xf9\x13\x09\xd0\xce\xfd\x13\xf7\x84\xc8\x09\x79\x8a\x6a\ \x61\xa0\x6b\x10\xae\x16\x37\x7c\x2e\x3f\xfc\x1e\x3f\x77\x3e\x3e\ \xc4\xf2\x5a\x0f\x73\xdb\x5d\xb6\x6c\xd9\xee\xc4\xc4\x44\x21\x7f\ \x2a\x01\x02\x4e\xc3\x3d\xf0\x18\xb7\x68\xde\x03\x24\xd7\x5d\x5d\ \x6e\xb4\xd2\x81\xe3\x9f\x1b\x37\xc2\xfc\x2c\x29\x29\xe9\x13\x02\ \x91\x3f\xb9\xad\xc2\xe3\x19\x6f\x4a\xbc\x63\xfa\xe8\x3f\xeb\x9d\ \xe2\xf9\xd3\xd8\x82\x05\x0b\xe6\xd3\x25\x85\x90\x3a\x03\xd6\xdd\ \x83\xdc\xaf\x25\xbc\x1c\x1b\x1b\x3b\xfb\x49\x79\xff\x05\x8b\x6a\ \x92\x5b\xac\xd1\x40\x34\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x03\x2d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ \x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xd7\x0c\x1b\x16\x19\x10\x1f\x1b\xdd\x16\x00\x00\x02\xba\x49\x44\ \x41\x54\x78\xda\x65\xcf\x5b\x68\xd5\x05\x00\xc7\xf1\xcf\xff\x7f\ \xce\xd9\xce\xce\xae\xe7\x6c\x47\xcb\xe6\x6a\x63\x8b\xda\x1c\x39\ \x2d\xa4\x07\x83\x12\x82\x2e\xf4\x12\x45\x58\x0f\x16\x12\x4a\xa3\ \x87\x32\x32\xc9\xb1\x28\xd4\x20\x7c\xeb\xa1\x7c\xac\x48\x09\x04\ \xe9\xa1\xcb\xc0\x20\x58\x5a\x8b\xf5\x92\x4c\xd2\x1c\x9c\xad\xe9\ \x6e\xed\x76\xb6\x73\xb6\x73\x0b\x1f\x6d\x9f\x87\xdf\xe3\x17\x7e\ \x01\x9b\x7d\x44\x43\x82\x7d\x31\x1e\x08\x88\x16\xc9\x14\xb8\xf8\ \x0e\x13\xfe\xe7\x8e\xc0\x71\x6a\x1b\x18\xa8\x09\xc3\x37\x5a\x77\ \xef\xae\x4d\xf7\xf4\x08\x63\x31\x8b\xe3\xe3\x32\xc3\xc3\xe5\x6c\ \x2e\x77\x7e\x9d\xb7\x8f\x91\xd9\x14\x18\x60\x4b\x13\xdf\xb7\x6e\ \xdf\xde\xd7\xd7\xdf\xaf\xae\xad\xed\x8e\xfa\xc6\xca\x8a\x2b\x67\ \xce\xb8\x36\x32\x32\xbf\xc6\x33\x47\xf9\x15\x02\x78\x96\xe8\xe3\ \x5c\x6c\x4b\x26\xf7\x3e\xd4\x7f\x58\xb4\x2e\x2e\x12\x06\x54\x02\ \x4a\x94\x4b\x14\x4b\x25\x01\xae\x9f\x3d\xeb\xaf\xb1\xb1\xd9\x25\ \xfa\x8e\xf3\x4f\x08\x8f\xf2\x6a\x92\xbd\xf7\xee\xe9\x93\x0b\xb3\ \xee\x7a\xe5\x80\x15\x59\x1b\xcb\xd7\x14\x96\xae\x9b\x9f\xbe\x61\ \xeb\xfe\xfd\xf2\xd5\xd5\x6e\xdf\x4a\x47\x22\xe9\x38\xa7\x10\x84\ \x88\x24\x38\x9c\x8c\x84\x62\x4d\x79\x85\xe6\xa4\x9a\x6d\xdb\x75\ \x1d\x3a\x66\xba\xb4\x2e\x33\x37\xae\xe3\xcd\x23\xea\x3b\x3b\xc5\ \x7b\xbb\x2d\x4d\x4e\x48\xd5\xd7\x4b\xf0\xe2\x7b\x34\x47\x0e\x90\ \xee\xe0\x93\x74\xbc\x12\xd4\xb7\xcc\xc8\xcf\x8c\xca\xdc\x5a\xd2\ \xbe\xf7\x69\x5b\x1e\xd9\xa7\x69\xe7\x63\x9a\xbb\xba\x5d\xfd\xe1\ \x82\xab\x83\x07\x35\x4c\x4f\x29\xce\x2c\xcb\x57\x44\xca\x5c\x0e\ \xb7\x71\x4f\x35\x41\xf4\xf6\x04\xeb\x5a\x12\x0b\x4a\xbf\x9d\xf4\ \xdd\xe9\x41\xf1\x86\xa4\x74\x57\x8f\x3f\x7f\xfa\xd1\xe8\xa9\x17\ \xb4\xb7\xcc\xaa\x6a\xcc\x8a\xd6\x52\x8d\x2a\x5a\xc3\x75\x8a\x55\ \x08\x4a\x94\x8b\x14\x4b\x2c\x16\x53\x7a\x9f\x7c\x0e\x40\xfb\xce\ \x87\xc5\x3b\x7a\x55\x1a\xa9\x6a\x26\x52\x43\x0c\x31\x0a\xe1\x39\ \x26\x42\x56\xd7\x73\xe4\x16\x19\x9f\x4f\xd9\x33\x30\xa4\x75\xc7\ \x2e\x99\xcb\xe7\x8d\x7e\x75\x54\x6d\x32\xe5\xa9\xd3\x43\x66\x1a\ \x77\x29\xc4\x29\x14\x08\xb0\xc6\x58\x38\xc9\x5a\x9e\x8b\x1b\x45\ \xe6\x26\xd9\xfa\xc4\xeb\xb6\x3e\xb8\xcb\xcd\x4b\xe7\xdd\xfa\xfa\ \x25\xd5\x57\x3f\x76\xed\x9b\x23\x6a\x1a\x53\x76\xbc\x76\xc2\xfc\ \x3c\x6b\xcb\x94\x99\xfa\x94\xdf\x23\x28\x77\x30\xdd\xc9\xcb\x1b\ \x79\xe1\xc2\x95\x61\x85\xd5\x29\x93\xe7\xde\x97\x88\x16\x44\xca\ \xe4\x6e\x5c\x92\x9d\xf8\x5b\xe6\xcb\x13\xb2\x23\x79\x61\x8e\x39\ \x3e\xfc\x82\x9f\x03\x40\xfc\x33\x06\xdb\x79\x77\x29\xa4\x92\xa4\ \xe6\x6e\xe2\x29\x62\x75\x04\x01\xb9\x59\xb2\x57\x48\xac\xb2\xc1\ \xd0\x01\x9e\x5f\x64\x25\x00\x40\xc3\xe7\x1c\xbb\x9f\xb7\x96\x89\ \xad\x86\x94\xab\x11\x12\x16\x88\x6f\xd0\x84\x65\x2e\x7c\xc0\xa1\ \x51\xa6\x51\x89\x00\x60\xfd\x5b\x7e\x89\x31\x7c\x1f\xf5\xc9\x8a\ \x74\x5d\x51\x22\x51\xa0\xae\x64\xb5\xcc\xe5\x3f\x18\x38\xc8\xc9\ \x9b\xfc\x8b\x0a\x04\x36\x0b\x91\x40\xaa\x9b\x96\x7a\xa2\x23\xcc\ \x94\x59\x40\x16\x25\x00\xf8\x0f\x80\xa0\xff\x98\xbb\x5a\x5b\x51\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x2f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ \x0f\x1f\x23\x16\x66\x68\x50\x00\x00\x02\xaf\x49\x44\x41\x54\x38\ \xcb\x95\x92\x4d\x6b\x24\x55\x14\x86\x9f\x5b\x1f\x5d\xd5\x5d\xdd\ \xda\x5d\x55\x19\xa3\x61\x20\xb8\x10\x61\x42\x76\xc9\x2a\x38\x2e\ \x8c\x3b\x37\xc1\xcd\xfc\x07\x0d\x08\x6e\x02\xd9\x38\x5b\x05\x21\ \xce\x1f\x88\xff\x20\x30\xd9\x89\x04\x09\x04\x87\x2c\x24\x04\xc4\ \x91\x86\x18\x8c\x4c\xba\x53\x49\x77\xd7\x47\xdf\xaa\xba\x55\xd7\ \x45\xe8\xc4\x01\x5d\xf8\xc2\xe1\x2c\x0e\xe7\x39\x87\x97\x57\xec\ \xef\xef\x3f\x09\x82\xe0\xbb\x76\xbb\x1d\x00\x18\x86\x81\x10\x02\ \x21\x04\x33\x69\xad\xef\xba\xd6\x9a\xba\xae\x91\x52\x46\x83\xc1\ \xe0\x73\x71\x74\x74\x74\xb5\xb7\xb7\x17\x44\x51\x44\xb3\xd9\xc4\ \x71\x1c\x1a\x8d\x06\xb6\x6d\x63\x9a\x26\x00\x75\x5d\xa3\x94\xa2\ \x2c\x4b\xf2\x3c\x47\x4a\x49\xaf\xd7\x63\x63\x63\x23\xb2\x3c\xcf\ \x0b\xfa\xfd\x3e\x4f\x1f\x7d\x4a\x10\x86\x77\x57\x51\x35\x14\x0a\ \x8a\x02\x2a\x05\xe5\xac\x2a\xa2\xf8\x9a\xa7\xa3\x9f\xf1\x3c\x2f\ \xb0\x66\x17\xe6\x12\x4d\xd0\x2d\xc0\x2b\xc0\x4b\x61\x98\x40\x95\ \x40\x91\xc1\x34\x87\x44\x42\x52\xc2\xa4\xc2\x18\x8c\xa9\x1e\x56\ \x00\x58\x00\x55\x55\x21\x8c\x31\xb8\x0a\x3e\x19\x42\x3b\x85\xb3\ \x09\xfc\x70\x09\x64\xa0\x25\xe4\x39\x50\x83\xaa\x10\xba\xa0\xaa\ \xe6\x6f\x01\x33\x53\x8a\xf0\x15\x97\x4d\x8d\xb8\x98\x32\xf7\xf0\ \x1d\x44\x47\x82\xbe\x02\x62\xb0\x26\x24\xcd\x84\xeb\x3c\x01\xa1\ \x90\x6e\x03\xad\xdf\xba\x07\xb8\xae\xcb\xf7\xc3\x33\xbc\xc4\x21\ \xf9\x65\x82\xa1\x5f\xa2\x8b\x29\xe9\x28\xe6\xe2\x26\x25\x8a\x53\ \xd2\x24\xc6\x50\x05\x0d\x03\x92\x7c\x82\xbf\x24\xee\x01\x37\x37\ \x37\xfc\x78\xf1\x2b\xf3\x0f\x7c\x16\x17\x4c\xe6\x7b\x9a\xdf\xce\ \x46\xfc\xf1\x67\xca\x24\x9e\x92\x26\x19\x85\xaa\x10\xc2\xc0\xb2\ \x4d\xf2\x42\xe0\x66\x19\x5a\xeb\x5b\x0f\xca\xb2\xe4\xf7\xb3\x6b\ \x5e\x8d\xc6\xbc\xbb\x50\x51\xeb\x8a\x69\x59\xf3\xf2\xd2\x20\x95\ \x0e\xa6\xd5\xa5\x50\x05\x9d\x4e\x07\xcb\xb2\x18\x4e\x86\x84\x65\ \x79\x6f\xa2\x52\x8a\xce\xc2\x7b\xb8\x6f\x08\x22\xab\x46\xd6\x39\ \x63\x53\xe1\xce\x09\x2a\xd9\xc4\x69\xb5\xa8\xeb\x1a\xd3\x34\x31\ \x4d\x93\x6e\x6b\x0e\xa5\xd4\x2d\x20\x4d\xd3\x68\x79\x79\x39\xe8\ \xf7\xfb\xb4\x5a\x2d\xae\x06\x4d\x12\xd7\xc5\x7f\xd3\xe5\x83\x15\ \x07\xc3\x30\x28\x8a\xe2\x2e\x40\x52\x4a\xb2\x4c\xb3\xb8\xb8\x48\ \x96\x65\x91\xd8\xdd\xdd\x7d\xb2\xb4\xb4\xf4\xac\xd7\xeb\xf9\xfc\ \x0f\xc5\x71\x7c\x7d\x7a\x7a\xfa\x99\xf8\x8f\xb9\xb1\xb3\xb3\xf3\ \x4d\x18\x86\x5f\x28\xa5\x38\x3f\x3f\xff\x76\x7b\x7b\xfb\xcb\xdb\ \x20\xbc\xae\xd7\x00\x5b\x5b\x5b\xef\xaf\xaf\xaf\x7f\x6d\x18\xc6\ \x63\xd7\x75\x3b\xe3\xf1\x18\x29\x25\x8e\xe3\x60\xdb\x76\x62\x9a\ \xe6\x4f\x27\x27\x27\x5f\x6d\x6e\x6e\xbe\x98\xed\x58\xff\x04\x84\ \x61\xf8\x61\xa7\xd3\xf9\xd8\xf7\xfd\x86\xd6\x9a\x6e\xb7\x8b\x10\ \x02\xdb\xb6\xd1\x5a\xb7\xa3\x28\xfa\x48\x29\xf5\x1c\x78\xf1\xaf\ \x1f\x00\xc2\xf7\xfd\x07\x6b\x6b\x6b\x8f\x57\x56\x56\xde\x5e\x5d\ \x5d\xed\x3a\x8e\x23\x8e\x8f\x8f\x47\x87\x87\x87\x7f\x1d\x1c\x1c\ \x1c\x8c\x46\xa3\x21\xa0\x67\x0b\x7f\x03\xda\x9e\x5f\xc6\x86\x2c\ \xf1\x02\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ \xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ \x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ \x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x79\x49\x44\x41\x54\ \x18\x19\x05\xc1\x41\x4b\x53\x01\x1c\x00\xf0\xff\x3b\xf5\x11\x0a\ \x3c\x75\x68\x1f\xc1\x4b\x5f\x20\x82\x52\xd7\x36\x19\xc3\x52\x48\ \x13\x95\xe4\x6d\x62\x4d\x93\xf9\x10\xbb\x55\x74\x0a\x22\xfa\x16\ \x1b\x65\xd0\x17\x08\x62\x50\x1e\x42\xbc\x78\x79\x19\xd5\x7a\x09\ \x3b\xac\x8d\x5f\xbf\x5f\x08\x21\xc4\x61\xe9\x20\xcb\xba\x9d\xbc\ \x93\x67\xdd\x83\xec\xb0\x24\x84\x10\x21\x44\x27\xd9\x4b\xdb\xc3\ \xa6\x2d\x1d\x1d\x5b\x9a\xda\xc3\xbd\xb4\x93\x08\x11\x62\x27\x69\ \xf7\x36\x3d\x72\xa4\xef\x9b\x13\x5f\x1d\xd9\xb6\xa9\xdd\xdb\x49\ \x44\x88\x56\xba\xee\xb9\x2f\xbe\x1b\xf8\xeb\x42\xe1\x87\x53\xcf\ \xac\x6b\xa5\x22\xd2\xd2\xc6\xb0\xe5\xd8\x7b\xbf\xfc\x33\x31\x31\ \x36\x52\x38\xb3\x65\x63\x98\x96\x62\x2d\x5b\xf2\xd1\x4f\x6f\xbd\ \x72\x0c\xd8\x54\x57\xe8\x5b\xb2\xb6\x1f\xcb\xdd\x15\x9f\x15\x5e\ \xda\xf5\xd0\x1b\x17\x58\x31\x6d\xe4\xdc\xaa\xe5\x6e\x2c\xe6\x2d\ \x7d\x03\x75\x15\xb7\xd5\x35\xf5\xcd\x9b\x32\x36\xb0\x6b\x31\x8f\ \x85\xbc\xe9\x58\x61\xda\x65\x97\x5c\x73\xc7\x27\xb7\x84\x89\xc2\ \x13\x0b\x79\x34\xba\x8b\xfa\x06\xae\xbb\xea\x8a\xa6\x3f\x28\x9b\ \x32\x36\x70\x5f\xa3\x1b\x8d\xac\xe2\x9d\x73\x37\xdd\xf0\x01\x70\ \xd7\xb4\x91\x13\x15\x8d\xfd\xa8\x97\xaa\xc3\x07\x4e\xbd\xf0\x1b\ \x00\x63\x85\x96\xea\xb0\x5e\x0a\x51\x4b\x67\x3d\x75\xa6\x30\x32\ \x36\x31\x36\x52\x78\x6d\x56\x2d\x15\x21\xe6\x93\x5a\x6f\xc6\xaa\ \xbe\x73\x03\x85\x81\x13\x4d\x33\x6a\xbd\xf9\x44\x84\x10\xb5\xa4\ \x92\x96\x87\x33\x16\x6c\x7b\xec\x9e\x19\xe5\x61\x25\xad\x25\x42\ \x84\x10\x42\x54\x4b\x95\xac\xdc\x9d\xcb\xe7\xf2\x72\xb7\x92\x55\ \x4b\x42\x08\xf1\x1f\x89\xdc\x66\xb7\x16\x84\x77\xf6\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xf3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ \xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ \x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ \x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x72\x49\x44\x41\x54\ \x28\xcf\x45\x91\x4f\x2b\x04\x71\x1c\xc6\xbf\xf3\x32\xe4\x6c\xde\ \x80\xa2\x44\x39\xbb\xec\x1f\xb3\x23\x6d\x9b\x25\x8b\x10\xfd\x76\ \x36\xec\xa2\x31\x89\x13\x0e\x2e\xca\xfb\x98\x4d\x7b\xf0\x12\xb4\ \x85\x83\x36\x17\x97\xb1\xa2\xe9\x47\xfd\x0e\x63\xb6\x8f\x83\xb5\ \x9e\xe7\xf6\xf4\xf4\x1c\x9e\x8f\x20\xbf\x3e\xb1\x8f\x83\x20\xf4\ \x23\x3f\x0a\xc2\xe3\xe0\xc4\xfe\xcb\x05\x41\x7c\xeb\x50\xd5\x4d\ \x95\x1a\x3e\x3e\x35\xaa\xd4\xcd\xa1\xf2\xad\x7e\xa1\x61\xd5\x9b\ \xdb\xec\xd2\xa2\xcd\x13\x1d\x1e\x68\xb1\xc3\x36\xf5\x66\xc3\x42\ \x04\xf1\xd4\x06\x17\xdc\xf3\x4a\xcc\x27\x5f\x68\xde\x78\xe6\x9c\ \x0d\x3c\x85\x88\xb2\x37\x8d\xc7\x23\x1f\x18\xbe\xe9\xd1\x23\x25\ \x41\xf3\x42\x8d\x4d\xa3\x6c\x59\x0f\x16\xb9\xe5\x1d\xc3\x15\x67\ \x1c\xa0\xd8\x42\x91\xa2\x69\xb3\xc8\xfa\x91\x54\xc2\x15\xee\xd0\ \xa4\x5c\xd2\xa0\x82\x4b\x8e\x59\x20\xa1\xcb\x1a\x95\x50\xca\x91\ \x47\x9b\x98\x94\x3d\x96\xc9\x31\xc5\x38\xd3\x40\x4a\xcc\x3e\xe5\ \x48\x4a\x51\x95\x47\x34\x3d\xb2\x8c\x32\x84\x30\xc4\x28\xd0\x43\ \x73\x40\x29\x92\x62\x58\xee\x2f\xb8\x4c\x30\xc2\x30\x23\x4c\xf4\ \x17\x96\x29\x86\x52\x0c\x1c\x6e\xe8\x92\xb0\xc4\x0c\x93\x8c\x31\ \xc9\x0c\x90\xd0\xc1\xa1\x78\x24\xf3\x76\xc1\xac\xf2\x8c\x26\xe5\ \x5f\x29\x1a\x8f\x82\x99\xb7\x05\x71\x55\x96\x53\x5e\xd0\x24\xa4\ \x83\x1f\xae\xc9\xe2\x2a\x44\x90\x39\xcb\x6d\x66\x58\xa3\x4d\x97\ \x18\x4d\x4c\x87\x2a\x19\xdc\xe6\x9c\xd5\x87\xe5\x5a\x8e\xca\x9b\ \x0c\x25\x76\xd8\x63\x81\x0c\x79\xe3\x28\xd7\x1a\xd0\x44\x90\x82\ \xed\x04\xf9\x30\x17\xe5\xa2\x7c\xe8\x04\x85\x01\xee\x1f\x8d\x42\ \x66\xb3\xf5\x8b\xfe\x99\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x01\xe4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ \xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ \x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ \x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x63\x49\x44\x41\x54\ \x28\xcf\x45\x91\xbd\x4a\xc3\x60\x14\x86\x4f\xae\xc3\xcd\x21\x97\ \xe0\xec\x2e\x52\x0d\x69\x44\x4a\xb5\x05\xff\xd0\x42\xf9\x9a\x62\ \xad\x3f\xc4\x20\x75\xd3\xc1\x49\xbc\x8f\x14\x71\xf0\x12\xa4\xa0\ \x0e\x52\x5c\x5c\x62\x45\x09\x9f\xc2\x37\xc4\xaf\x3c\x0e\xc6\x7a\ \xde\xe1\x81\xc3\xe1\x1d\xce\x23\xc8\x6f\x7a\xee\x49\x1c\x27\x51\ \x1a\xa5\x71\x72\x12\xf7\xdc\xbf\xbd\x20\x48\xe4\x1c\xa9\xae\x69\ \xd1\x26\x22\xa2\x4d\x8b\xae\x39\x52\x91\x53\x1c\xec\x3b\xdd\x7e\ \x93\x0e\x37\x0c\x78\x62\xc8\x03\x37\xec\xd2\xa4\xdb\xdf\x77\x10\ \x41\x42\xb5\xc3\x39\xf7\xbc\x92\xf1\xc9\x17\x9a\x37\x9e\x39\x63\ \x87\x50\x21\xa2\xdc\x86\x09\x79\xe4\x03\xc3\x37\x63\xc6\x58\x72\ \x34\x2f\xb4\x69\x18\xe5\xca\x76\x5c\xe7\x96\x77\x0c\x97\xf4\x00\ \xe8\x50\xc7\xa2\x19\x50\x67\xfb\x58\xd6\x93\x0d\xee\xd0\x58\x2e\ \x68\x00\xd0\x64\x16\xc8\x19\xb1\xc5\x7a\x22\xb5\x34\x64\x40\x86\ \xa5\xc3\x1c\x00\x35\xa6\x01\x4b\xc6\x01\xb5\x54\xaa\x69\x8b\x47\ \x34\x63\xe6\x11\x80\x82\x63\x34\x87\x54\x53\xa9\x24\xb5\xa2\xc1\ \x63\x0a\xa0\xa0\x25\x63\x8d\x4a\x22\x95\xd8\xe7\x9a\x11\x39\x2b\ \xcc\x00\x14\xcc\x19\xe2\x53\x39\x96\x65\xb7\x6c\x36\x79\x46\x63\ \xf9\x1f\x8b\x26\xa4\x6c\x96\x5d\x41\x02\xb5\xc0\x29\x2f\x68\x72\ \xec\xe4\x0f\x57\x2c\x10\x28\x44\x90\x25\x27\xe8\x97\xd8\x62\xc0\ \x88\x0c\x4d\xc6\x90\x16\x25\x82\xfe\x92\x53\xc8\x0a\x1c\x5f\x79\ \xa6\x44\x95\x5d\xf6\x58\xa5\x84\x67\x7c\x15\x38\x13\x9b\x08\x52\ \x76\xfd\xd8\x4b\x16\xd3\xc5\xd4\x4b\xfc\xb8\x3c\xd1\xfd\x03\x12\ \x89\x6f\x33\xf6\x68\xda\x37\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x02\xcd\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ \x0f\x1e\x0b\x3a\xc8\xf1\xeb\x00\x00\x02\x4d\x49\x44\x41\x54\x38\ \xcb\x7d\x92\xcb\x4e\x14\x41\x14\x86\xbf\xae\x4b\x4f\xcf\x20\x99\ \x99\x00\x12\x96\x18\x87\xc8\xce\x98\xe0\xca\x2d\x6f\x40\xd8\x22\ \x7b\x13\x79\x03\x83\x4f\x80\x89\xec\x49\x70\x45\xd8\x93\xf8\x04\ \x44\x8c\xac\xd8\x4d\x30\xc4\x85\x33\xd2\x4c\x37\x32\x4c\x5f\xaa\ \xa6\xda\x05\xf6\x70\xd5\x93\x54\xea\x2c\xea\x7c\xff\x9f\x53\xbf\ \xb7\xb7\xb7\xb7\x32\x31\x31\xb1\x51\xad\x56\x1b\x42\x08\x3c\xcf\ \x1b\x9d\xb2\x8a\xa2\x18\xdd\xce\x39\x8a\xa2\x20\x4d\xd3\xf8\xf4\ \xf4\x74\xcd\xdb\xdf\xdf\x8f\x3e\x6d\x6f\x37\x7a\x17\x03\x7c\xdf\ \x47\x57\x34\x5a\xf9\x68\x25\x11\x42\x00\xe0\x9c\xc3\xda\x21\xd6\ \x5a\x72\x63\xc8\xf3\x9c\xe6\xa3\x1a\xab\xab\xaf\x63\x55\xab\xd5\ \x1a\x9d\x4e\x87\xa7\xad\x16\x0f\xd5\x15\x44\x42\x45\x63\xad\xc5\ \x5a\x45\xb7\xfb\x9b\xe3\x1f\x3d\x6a\xb5\x5a\x43\x95\x0a\x51\x14\ \x8d\x14\x85\x10\xa3\x5e\xca\x6b\x27\x59\x96\xd1\xe9\x74\x70\xce\ \xe1\x8c\x01\x40\x15\x45\x81\xb5\x96\x5e\xaf\x77\x6b\xb8\xdc\x87\ \x10\x02\xe7\x1c\x71\x1c\x93\x24\x09\x4a\x29\xb4\xd6\x0c\xed\x0d\ \x40\x41\x41\x18\x86\xb7\x94\x85\x10\x48\x29\xb9\xbc\xbc\x24\x8e\ \x63\x00\xb4\xd6\x04\x41\x80\x94\x12\xed\x57\xae\x01\x41\x10\x70\ \x7c\xfc\xfd\x1e\x20\x8a\x22\xb2\x2c\x1b\xa9\xfa\xbe\x8f\x31\x06\ \xa5\x14\xcd\x89\x0a\x45\x51\x5c\x01\x7a\xbd\x1e\xdd\x6e\x17\x29\ \x25\x00\xc6\x18\xce\xcf\xcf\x51\x4a\x21\xa5\xc4\xf7\x7d\x2a\x95\ \x0a\x59\x96\x91\xa6\x29\x41\x10\x10\x54\x6b\x57\x0e\x00\xac\x1d\ \x12\x86\xe1\xbd\x1f\x18\x0e\x87\x23\x60\x9e\xe7\x28\xa5\x46\x2e\ \xea\x8d\x26\x9e\xe7\x5d\x01\x8c\xc9\xf9\x5f\x19\x63\x30\xc6\x20\ \xa5\xc4\x18\x43\x9a\xa6\x4c\xcf\xfc\x5d\x62\x92\x24\xf1\xec\xec\ \x93\x46\x3c\x30\x28\x25\xd0\x52\xa3\x95\x44\x29\x89\x14\x12\x0f\ \x0f\xeb\x2c\xd6\x0e\x31\xc3\x32\x4c\x96\x67\x73\x73\x24\x49\x12\ \x7b\x5b\x5b\x5b\x2b\x0b\x0b\x0b\x1b\xcd\x66\xb3\x71\x33\xba\x65\ \x64\xcb\x85\xde\x8d\x77\xbf\x7f\x11\x1f\x1c\x7c\x5d\xf3\xfe\xe1\ \x5a\x6c\x6e\x6e\xbe\xa9\xd7\xeb\x1f\xf2\x3c\xe7\xe4\xe4\xe4\xed\ \xfa\xfa\xfa\x47\xc0\xdd\x7d\x78\x0b\xb0\xbb\xbb\xfb\xbc\xd5\x6a\ \xbd\x17\x42\xbc\x74\xce\x3d\x8e\xa2\xc8\xcb\xf3\x9c\xf1\xf1\xf1\ \xa2\x5a\xad\xfe\x02\xbe\xb4\xdb\xed\x77\x4b\x4b\x4b\x87\xe5\x8c\ \xba\x09\x48\x92\xe4\x95\xd6\x7a\x71\x6c\x6c\x2c\xb0\xd6\x12\x04\ \x41\x19\x20\x4f\x4a\x39\xdd\xef\xf7\x17\x07\x83\xc1\x67\xe0\xf0\ \x41\x07\x80\x37\x35\x35\x35\xb3\xbc\xbc\xfc\x62\x7e\x7e\xbe\x35\ \x39\x39\x59\x07\x38\x3b\x3b\x8b\x8f\x8e\x8e\xda\x3b\x3b\x3b\xdf\ \xc2\x30\xfc\x09\x14\xe5\xc0\x1f\xab\x1b\x27\x18\x88\x89\xee\x65\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x00\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x7d\x49\x44\ \x41\x54\x78\xda\xa5\x53\xbf\x4b\x42\x51\x14\x3e\xc7\x7b\xdf\xd3\ \x52\xd3\xe7\x0f\x7a\x1a\x25\x06\x11\x0d\x0a\xb9\xb5\xd4\x03\x69\ \x68\x32\x6b\xaa\x29\xe8\x0f\x11\x5d\x5a\x42\x88\x96\xa6\xa0\xa9\ \xa1\x66\x41\xfa\x03\x8a\xd6\xa6\xb6\x28\x43\x83\xcc\xf4\x29\x4f\ \x7d\xd7\x77\xbb\xe8\xe2\x10\xfa\xa2\xf3\x71\x96\x8f\x73\xbe\xf3\ \x0d\xdf\x41\xce\x39\xfc\xa7\x1c\x76\x07\x31\x8d\x01\xcc\xe0\x09\ \x8a\x1a\xe7\xa9\xad\xe5\x1d\x4c\xa5\x92\xa9\x3b\x35\xa4\x06\x4a\ \x8e\x52\x41\x50\x86\x6d\x07\xe2\xea\x51\x7a\x23\x7d\x9f\xdd\xcd\ \x2a\x26\x9a\x43\xce\x96\x03\xcc\x23\x3a\x9f\x9c\x17\x19\x2d\x73\ \x1c\x5f\x89\x93\x5a\xb3\x06\x1d\x01\x5b\x02\xb8\x8d\x01\x9f\xea\ \x2b\x6b\x9a\xb6\xee\x51\x3c\xa4\xda\xaa\x82\x29\xa0\x53\x7d\xba\ \x00\xee\x63\x4a\x5d\x8e\x94\x93\xf1\x84\xd2\xc5\x2e\x69\x77\xda\ \x60\x52\x13\x98\x83\x81\x41\x8d\xc9\x02\x78\x88\x7b\xb1\x70\xec\ \x3a\xea\x8b\x4a\x75\xa3\x8e\x0c\x18\x58\x6e\x0b\xfa\x02\x4c\x62\ \xd0\x93\x7b\x53\x1c\x48\x84\x7c\x75\x1a\xbc\xf2\x52\x01\x2b\x64\ \x01\x86\x10\x2c\xbf\x05\xa0\x8c\x26\x67\xc8\xec\xe4\x1c\xf0\x2b\ \x76\xa3\x4b\xc6\xa6\x7b\xcd\xdb\x70\x79\x5d\xcc\x92\xc5\xb2\x1b\ \x00\xbc\x30\x14\x21\x73\x64\x7a\x90\xf8\x65\xff\xb1\x85\xdf\xab\ \x34\x2c\x3f\xfb\xbd\x0a\x03\x49\x90\xae\x91\x08\xf1\x50\x7b\x49\ \xe4\x45\xfe\xa9\x93\x66\xa2\x07\xe6\x6d\xc4\xb5\x30\x40\x8e\x82\ \x04\xa0\x94\xda\xcf\x01\xcf\x0d\x9f\xe4\x80\xe4\xa5\x87\x45\x79\ \xe9\xf4\x43\xaf\x11\x62\x11\xfc\xf3\x2f\x0c\x72\xe6\xd9\xeb\xdb\ \xfb\x56\xb0\x3e\xdf\x0e\xf6\x43\xbf\x5c\xe2\xdc\x56\x43\x01\xc2\ \xa4\x28\x9f\x03\x00\x8e\xf3\xff\x7e\xe7\x1f\x95\x02\xa1\xe8\x5d\ \x93\x38\x6a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xb8\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ \x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x08\x19\ \x09\x22\x00\x87\xbb\x1a\x99\x00\x00\x02\x38\x49\x44\x41\x54\x78\ \xda\x95\x53\x4d\x8b\x1a\x41\x10\xad\x9e\x19\xbf\x56\x05\x75\x4c\ \x20\xff\x20\x07\xf1\xa6\x27\x61\x73\x88\xb9\xc7\xdb\xde\x16\x72\ \x4d\x84\x40\x2e\x82\x97\x3d\x67\x21\x60\xf2\x07\x24\xbf\x40\x88\ \xd7\x10\x82\x20\x04\x4f\xe2\x55\x02\x12\xf6\xe0\xee\xec\xe8\x8e\ \xba\x7e\x8c\xd3\x79\xd5\x33\xa3\xc9\x42\x0e\x69\x2c\xbb\x6b\xba\ \xde\xab\xd7\xd5\xd5\xa2\xdb\xed\x9e\x99\xa6\xf9\x31\x95\x4a\x99\ \x84\xa1\x69\x1a\x09\x21\x94\x85\x43\x4a\x19\xce\xca\x3c\xcf\xa3\ \xf5\x7a\x6d\x4d\xa7\xd3\x37\xa2\xdf\xef\xdf\x74\x3a\x1d\xd3\xb2\ \x2c\x4a\x24\x12\x14\x8b\xc5\x28\x1a\x8d\x52\x24\x12\x21\x5d\xd7\ \x19\xa7\x00\xae\xeb\xd2\x6e\xb7\xa3\xcd\x66\xc3\x60\xca\x66\xb3\ \x54\xab\xd5\x2c\x23\x99\x4c\x9a\xe3\xf1\x98\x5e\x5e\x7c\x26\x8f\ \xb3\xb0\x09\x80\x44\xb0\xd6\x7c\x25\x7b\x36\x64\x77\x11\xf4\x6b\ \xe5\xd1\xcf\xcb\x57\xc4\x58\x23\xcc\xb0\xb8\xc7\x0e\x83\x02\x23\ \x65\xf8\xd3\x78\xf6\x6d\x01\x96\x2b\xc4\xed\x24\xc8\xf6\x70\x30\ \x40\xe0\x3b\x77\x60\x0d\x81\x6a\xe6\xcc\x42\x2a\x12\xec\xd0\xf5\ \x46\x92\x03\x8c\xa6\x0b\xd2\x61\x07\x82\xb0\x28\x77\x4b\x84\x69\ \x12\x60\x11\x66\x54\x24\x2b\x57\xd2\x0d\xc0\x9e\x60\x20\x91\x6e\ \x08\x45\x02\xdc\x91\x20\x1e\x8f\x93\xbd\x74\x8f\x92\x49\xa8\x1a\ \xd8\x1b\x8f\xee\x0f\x59\x43\x02\x0d\xbe\xe4\x5b\x3a\x12\xd8\xb6\ \x4d\x31\xc7\x63\xb0\x22\x59\xef\x21\x77\x2b\xe1\x73\x36\xf2\xc1\ \x46\xb0\x76\x99\x84\x68\xb5\x5a\x29\x15\x58\x92\xba\x9e\x19\x2a\ \xe4\x11\x36\x50\x21\xfc\x14\x48\x53\x40\x5e\x23\xab\x2b\x03\x15\ \x1e\xbe\x29\xcc\xb1\x88\x7c\xc7\x36\x6a\xb0\x06\xd2\x6f\x26\x98\ \x11\xc8\x76\x29\x50\x71\x3c\x3f\xbe\x31\xc6\x27\x58\x2e\x97\x56\ \xb1\x58\x34\xc7\x5f\xcf\xe9\xd1\xc9\x09\x37\x13\xd7\x84\x8d\x9b\ \x4a\x75\xe6\x76\xbb\x0d\x1b\x88\x4d\xc9\x2f\x14\x0a\x3c\x5b\xa2\ \xdd\x6e\x9f\xc1\xf9\x84\xce\xca\xd1\x7f\x0c\xc7\x71\x6e\x47\xa3\ \xd1\x6b\xf1\x8f\x7d\xad\xd5\x6a\x5d\xe6\xf3\xf9\xb7\x2c\x75\x32\ \x99\x7c\x68\x36\x9b\xef\xb8\xe7\x1e\x06\xfe\x45\xd0\x68\x34\x9e\ \x56\xab\xd5\xf7\x90\x7d\x8a\x23\xa4\xe7\xf3\x39\x4b\xe6\xa3\xf0\ \xdb\x58\xe0\x6d\x7c\x1f\x0e\x87\x17\xf5\x7a\xfd\x47\x88\x31\xfe\ \x24\x40\xc6\x67\xe9\x74\xfa\x45\x2e\x97\x8b\xf2\x15\x65\x32\x19\ \xbe\x6f\x06\x13\xfc\x14\x1e\xdc\x73\x28\xfa\x82\xd0\x03\x81\x78\ \xa8\x08\xe0\xc7\x95\x4a\xe5\xb4\x54\x2a\x3d\x29\x97\xcb\x19\x64\ \x17\x83\xc1\x60\xd6\xeb\xf5\xae\xbe\x61\xcc\x66\xb3\x6b\xc4\xc9\ \x10\xf0\x1b\xf3\x85\x20\x91\x89\x08\x2c\x72\x00\x00\x00\x00\x49\ \x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xf5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ \x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ \x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ \xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ \x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ \x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x74\x49\x44\x41\x54\ \x18\x19\x05\xc1\x41\x4b\x53\x01\x1c\x00\xf0\xff\x3b\xf5\x11\xea\ \xda\xa1\x7d\x84\x2e\x5d\x3c\x46\x17\x75\x6d\xb3\x18\x96\x42\x9a\ \xa8\x20\x6f\x13\x6b\x96\xcc\x87\xe8\xcd\xba\x74\xea\x63\x04\x6f\ \x84\x41\x5f\xa0\xa8\x41\x79\x08\xf1\xe2\x65\x19\xc5\x7a\x06\xef\ \x30\xde\xf8\xf5\xfb\x85\x10\x42\x1c\xd6\x0e\xb2\x2c\xef\x8f\xfa\ \xa3\x2c\x3f\xc8\x0e\x6b\x42\x08\x11\x42\xf4\x93\xbd\xb4\x57\x76\ \x6c\xeb\xeb\xdb\xd6\xd1\x2b\xf7\xd2\x7e\x22\x44\x88\xdd\xa4\x37\ \xd8\xf2\xcc\x89\xa1\x1f\xce\x7c\x77\x62\xc7\x96\xde\x60\x37\x11\ \x21\xba\xe9\x86\x57\xbe\xf9\x69\xec\xca\x3f\x85\x5f\xce\x1d\xdb\ \xd0\x4d\x45\xa4\xb5\xcd\xb2\xeb\xd4\x1f\xa5\x77\xae\x4c\x55\x26\ \x0a\x17\xb6\x6d\x96\x69\x2d\xd6\xb3\x65\x1f\xfd\x56\x9a\x3a\x76\ \xe4\x2b\xa8\x14\x86\x96\xad\xef\xc7\x4a\xbe\xea\x8b\x42\x85\x3d\ \xab\x1e\x78\xed\x0a\x13\x97\xd6\xac\xe4\xb1\x34\xea\x1a\x1a\xab\ \xb0\x6a\xde\x8c\x19\x8f\x7c\x56\x19\x7b\x61\x69\x14\x8b\xa3\x8e\ \x53\x85\x29\x6e\xbb\xee\x9a\x5b\xee\xfb\x64\xaa\xf0\xd2\xe2\x28\ \xda\xf9\x92\xa1\xb1\x0a\x77\xdc\x74\x43\xc7\x5f\x54\xc6\x9e\x68\ \xe7\xd1\xce\x1a\xde\xbb\x34\xc1\x3d\x77\x7d\x00\x4c\x9c\x69\x68\ \xef\xc7\xc3\x5a\xb3\x7c\xea\x5c\xa1\xf2\x46\x01\xa8\x14\xba\x9a\ \xe5\xc3\x5a\x88\x56\x3a\xe7\xc8\x85\xc2\x44\x65\xaa\x32\x51\x78\ \x6b\x4e\x2b\x15\x21\x16\x92\xd6\x60\xd6\x9a\xa1\x4b\x63\x85\xb1\ \x33\x1d\xb3\x5a\x83\x85\x44\x84\x10\xad\xa4\x91\xd6\xcb\x59\x8b\ \x76\x3c\xf7\xd8\xac\x7a\xd9\x48\x5b\x89\x10\x21\x84\x10\xcd\x5a\ \x23\xab\xe7\xf3\xa3\xf9\x51\x3d\x6f\x64\xcd\x9a\x10\x42\xfc\x07\ \x7b\x2d\x6e\x9f\x2f\x2d\x37\x8c\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x02\x0f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x8c\x49\x44\ \x41\x54\x78\xda\xa5\x93\x3f\x4b\x9b\x51\x14\x87\x7f\xe7\xfe\x79\ \x93\x5c\xd3\x94\x1a\xad\x28\x2e\x9a\x21\x38\x04\x6a\xa1\x85\x40\ \x1d\x05\xc9\xa4\x11\xa1\x54\x27\x33\xb4\x73\xa5\x73\xe9\x26\x01\ \xc1\xc5\x45\x17\xe9\xd2\x51\xfc\x16\x0e\xfd\x02\x8d\x58\x11\x41\ \x13\x93\x9a\x28\xc6\x44\xdf\x7b\xdf\xa3\x59\x2d\x89\xd1\x3c\x70\ \xa6\x03\x0f\x9c\xdf\x39\x87\x98\x19\xbd\x20\xf0\x00\x9a\xa5\x4c\ \x64\x3e\xb2\xf4\x6c\x01\x18\x4b\x2b\x8b\x2b\x3f\x63\x1f\x63\x5b\ \xf4\x83\xe8\xc9\x82\x16\x66\xc0\x50\x6e\x21\xb7\x3c\x7c\x38\xfc\ \x9b\xa6\xa9\xff\x69\x82\x08\x50\xbc\x2c\xc2\x85\x9d\xc8\xce\x66\ \xdf\x24\x92\x89\x3f\x94\xa1\x49\xb4\x41\xe1\x21\x7d\x40\xb1\x5e\ \x04\xa8\xd5\x54\x22\xfd\x21\x1d\x37\x2f\xcc\x1e\xcd\xd1\x67\xde\ \xe1\xed\x47\x05\xc2\x48\x59\xb2\x25\x04\x41\xd0\x12\x40\x5b\x4d\ \xa3\xe3\xa3\x9e\x0e\xe9\x2d\xef\x93\x97\xf6\x93\xfe\x17\xfe\xce\ \xdc\x5e\x10\x16\xb2\x42\x15\xf8\xe4\x43\x3b\x0d\xe5\x2b\xc8\x86\ \x84\x8e\x68\x95\x1a\x4b\xe5\x0a\xc7\xfb\x6f\x89\xe8\x3d\xdf\xd3\ \x56\x50\xa0\x02\x6c\x60\x81\x06\x40\x17\x04\x51\x13\x70\x65\x07\ \x73\x63\x38\x30\x01\x75\x0c\x51\x7a\x5a\x88\x41\x01\xc4\x01\xbc\ \x04\x38\xca\x70\x21\x87\x57\x43\xfd\xd6\xc6\x83\x5f\xcd\x91\xe6\ \x3b\xe6\x4e\x23\x78\x42\x71\x4b\x70\x05\xc0\x02\xba\xae\xd9\x67\ \xe7\x57\x9b\xb5\xaf\xbc\xee\x36\x1e\x0d\x91\x34\xc9\xfb\x02\x08\ \x88\x22\xea\xc2\x0d\x73\x55\x69\x54\x67\x78\xed\x76\xaf\xab\x35\ \x4a\xad\x24\x9f\x5a\xbc\xae\x0f\x59\x7b\x14\x1c\x54\x4e\xce\xa6\ \x38\xcf\xe5\xae\x0f\x49\x28\x21\xc7\xfe\x25\x70\xfd\xf7\x76\xf7\ \xbc\x5a\x9e\xe0\x55\x2e\xa3\x03\xff\x7d\xa3\xca\x87\xe6\x40\x34\ \x68\xbf\x35\x37\xd1\x05\x3d\xbf\xf3\x1d\x7f\x4b\x95\x33\x4b\xa1\ \xe2\xc5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x19\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x39\x18\x8a\x31\x07\x97\x00\x00\x03\x99\x49\x44\x41\x54\x38\ \xcb\x55\x93\x6b\x6c\x53\x65\x00\x86\xdf\xef\x9c\x9e\x75\xbd\x0e\ \x5a\xd6\x8d\x8e\x75\x6d\xd8\x05\xd6\x5d\x30\x1d\x19\x95\xca\x86\ \x37\x9c\x23\x01\x51\xe2\x12\x13\x43\xf8\x21\x0a\xc6\x98\xe0\x2d\ \x26\x2a\x26\x10\xa2\x41\x13\x33\x5d\xb8\x64\x6a\x8c\x41\x27\x01\ \x13\x02\x18\xe6\x18\xd9\x45\xb6\x89\x32\xb7\x91\x6d\xcd\x46\x2a\ \xc3\x8d\x75\x1b\xdd\x7a\xdb\xf9\x7a\xbe\x73\xce\xe7\x0f\xc4\xe8\ \x93\xbc\x3f\x9f\xf7\xdf\x43\xf0\x0f\x82\xc5\x0b\x3d\xfd\x27\x00\ \x60\xc7\xbe\xaf\x2a\x97\x52\x72\x8d\x29\x5b\xf2\x6b\x2a\x35\xa4\ \x13\x8b\x13\x66\x23\x19\xb0\x47\xcf\x0e\x9e\xbb\xfa\x87\x56\x19\ \xdc\x8d\x91\xbe\x33\x00\x00\x82\xff\x50\x5b\xff\xa2\xe3\xc3\xf7\ \x0e\xff\xde\x7c\x29\xe2\x49\x26\x16\x85\x8c\x9c\x04\xa3\x29\x28\ \x34\x09\x45\x4e\xea\x76\x13\x5f\x94\x94\x68\xa8\xaf\xfd\xd4\xf8\ \x03\x47\x14\x2c\x5e\x70\xb6\x84\x5d\x07\x4e\x37\x1c\x79\xf3\xf5\ \x41\x8f\x3b\xd7\x51\x5f\xed\x46\x64\x26\x46\xee\xdc\x5d\x00\xd7\ \x33\xd0\x18\x85\xa6\x52\x24\x12\x71\x33\x65\xfc\xd5\xd2\xf2\xe0\ \xdc\xf4\xad\x5f\x7f\x0b\x3e\xbe\x17\x22\x67\x4b\xd8\xba\x6d\xaf\ \xc3\x17\x78\x76\xb0\x2b\x9c\x14\xd6\xe6\x9b\x88\x6b\x85\x91\x3c\ \x59\x5b\x84\x58\x22\x85\xdb\xd3\xf3\x10\xc0\x40\xb8\x4a\x04\xa2\ \x41\x53\x33\x3c\x43\xe5\xed\x15\x95\xc1\x0b\xbf\xb4\x9f\xba\x4b\ \x00\xe0\xfc\xc5\xbf\x22\x3e\x4f\x81\x77\x89\x66\x70\xb6\x77\x02\ \x2a\x5b\xc6\xc1\xe7\x03\xb0\x59\x44\xf4\x0f\x45\x70\xe4\xf8\x39\ \x70\x55\x06\x53\x52\x60\x72\x0a\x0a\x4d\xc1\x64\x24\x89\x52\x5f\ \x91\x5b\x7c\xed\xd0\x85\xca\xb2\x32\xff\xdb\x39\x66\x11\x2b\xad\ \x06\x52\x5f\xed\xc2\xaa\x1c\x13\x7e\xb8\x32\x8c\xf9\x7b\x71\xd4\ \xd5\x94\x20\xb8\xa1\x04\xc3\xe1\x5b\x60\x8a\x0c\x83\xc8\x21\x89\ \x1c\xba\xa6\x64\x31\xa6\x74\x8b\xbe\x40\x53\xe3\x94\x6c\xd9\x79\ \x73\x3a\x4e\x92\xcb\x14\x0e\x9b\x11\x6e\xa7\x19\xa1\x0d\x1e\xe4\ \xae\x34\xa3\xe5\xfb\x4e\x54\x95\xae\x41\xd3\xf6\x2d\xb8\x71\x33\ \x0c\x2a\xa7\x21\x0a\x1c\x72\x3a\x4d\x38\xd7\xef\x91\xaf\xbf\x1d\ \x3e\x56\xe5\xaf\x38\x98\x56\x18\xe2\x32\xc5\xd8\xed\x39\x4c\x4e\ \xcd\x02\x3a\xc5\x33\x5b\xd7\xa1\x2e\xb0\x06\xe1\x48\x0c\x57\xae\ \x0d\xa2\xa6\xa2\x18\x3f\x77\x5d\xc3\xd1\xcf\x8e\x43\x22\x2a\xf2\ \x73\x1d\x1d\x06\xa6\x71\x83\xc6\x39\x56\xd9\xb3\x50\xe8\xca\x42\ \xa0\xc4\x0e\x8b\xb9\x18\xb1\x24\x43\x47\xff\x38\xde\xf9\xf4\x06\ \x6a\xca\x0b\xf1\xc4\xe6\x87\x10\x99\x9a\x41\xc3\xa3\x21\xe4\x58\ \x4d\x38\xf4\xd1\x31\xe8\x9a\x2a\x92\xc6\xfd\x3f\x1e\x90\x72\xcb\ \x3f\xd7\x55\x05\xd9\x82\x8c\x3c\x9b\x80\x02\xa7\x04\x8f\xcb\x04\ \xcf\x6a\x3b\xbc\xab\x9d\xc8\x92\x0c\x00\x80\xc8\x9d\x19\x44\xe7\ \x16\x90\xef\x72\x42\xd7\x35\xbc\xf5\xfe\xe1\x93\xe4\xe3\xe6\xee\ \x9a\x4d\x1b\x6b\x07\x88\xa0\x13\x40\x23\x9a\xae\x42\xd3\x15\xa8\ \x1a\x03\x63\x0a\x54\xa6\xc0\x28\x89\x30\x67\x4b\xb0\x9a\x8d\x50\ \x35\x15\x92\x28\xa2\x74\x6d\x3e\xef\xec\x19\xdc\x45\x00\x88\xdd\ \x3d\xb1\xa8\xc3\x91\xe3\xe4\xd0\xc0\x89\x06\x9d\xab\x58\xa6\x14\ \xd1\x85\x25\xcc\xce\xc7\x30\x1b\x9d\x83\x25\x5b\x82\xdd\x6a\x44\ \x41\xbe\x13\xa3\xe3\x61\x34\x9f\x68\xa5\x2e\x57\x5e\x21\x01\x80\ \xe7\x5e\x78\x77\x1d\xf1\xee\x1c\xd3\x35\x85\x97\xb8\x4d\xc4\x5f\ \x94\x83\xf5\x3e\x07\xac\xa6\x2c\xac\xb0\x9b\x11\x9d\x5f\xc4\xc9\ \xd3\xe7\x71\xb5\xb7\x1f\xd1\xe8\x34\x14\x39\x09\x7f\x69\x71\x53\ \x7f\x47\x6b\x1b\x59\xbf\x71\x37\xc6\xae\x9f\xc1\x97\xdf\xf4\xbe\ \xf2\xd8\x23\x9b\x5a\xec\x36\x11\x3a\x80\x91\xc9\x59\x0c\x0c\x4d\ \xe2\x72\xf7\x75\x8c\x8c\x86\x41\x74\x0a\x9d\xa5\x01\x8d\xc2\xe5\ \xb0\x7d\x32\xda\xf7\xdd\x1b\xa1\xa7\x5e\xfa\x7f\x4c\x7b\x5e\x3e\ \x1a\xa8\x0e\x36\x74\xb6\xb5\x0f\xd9\x96\x53\x71\xa2\x2a\xf7\x43\ \x62\xf7\xc7\x05\x9e\xc9\xf8\xdc\xce\x3d\x3d\x97\xbe\x68\x7b\xe0\ \xfc\x7b\x10\xda\xb6\x0f\xbd\x97\x4f\xc0\x51\xb4\xc5\x52\xf5\xf0\ \x8e\xcd\x82\x40\x9e\xce\x50\xea\x57\x15\x59\x24\x5c\x99\xa0\x72\ \xf2\xa7\x32\x6f\x5e\x6f\x5b\xeb\x07\x0b\x75\x8d\xfb\xd1\x75\xb1\ \x05\x00\xf0\x37\x8e\xce\xab\x2b\xed\x11\x78\x19\x00\x00\x00\x00\ \x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0a\x90\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x38\x39\xdf\x43\x26\x88\x00\x00\x0a\x10\x49\x44\x41\x54\x58\ \xc3\xad\x97\x79\x90\xd5\xd5\x95\xc7\x3f\xf7\x77\x7f\x6f\xe9\xf7\ \xba\x5f\xf7\xeb\x8d\x5e\xa0\xfb\xd1\xdd\x34\x08\x36\xcd\x22\x04\ \x54\x06\x98\x28\x25\x49\x2a\x8c\x44\xd1\x98\xa9\x32\x68\x8d\xc2\ \x24\x56\x28\x75\x66\xb2\x39\x13\x33\x89\xca\xcc\x54\xe2\xa8\x95\ \x58\x99\x71\x99\x44\x91\x44\xa7\x26\xe0\x32\xb8\x14\x36\x0e\x88\ \x08\x88\x8a\xec\x4d\x6f\x2c\xdd\xd0\xfb\xf2\xde\xfb\xad\xf7\xe6\ \x8f\x5f\x3f\x9a\xce\x4c\x52\x31\x99\x57\x75\xea\x9e\x5f\xd5\xef\ \xde\xef\xf7\x77\xde\xf7\x9c\x7b\x8e\xe0\xd3\xff\x8c\x85\x57\xaf\ \xad\x6a\x6a\x5e\x5c\x62\xf9\x46\x4c\xa1\x45\xc4\xd0\xb6\x6f\x0f\ \x0f\x6e\x79\xe6\xe1\x1e\x20\xf3\x69\x0e\x13\x9f\xe2\xdd\xea\x9b\ \xee\xd8\xfc\x50\x28\xd9\x70\xa3\x23\xf2\xa3\xdd\x7d\x83\x86\xf2\ \x6c\xe1\xbb\x0e\xbe\xe7\xe8\x78\x54\xe8\xea\x92\x3c\x4f\x7a\x83\ \x07\xdf\x7e\x6b\xfb\x77\xce\x9f\x6c\xd9\xf5\xff\x42\x60\xd6\xa2\ \x9b\x57\xde\x7a\xdb\xc6\x7f\xd8\xdf\xe9\x2f\xb7\x7c\x03\xc7\xce\ \xa2\x3c\x5b\x2b\xcf\x11\xbe\x67\xe3\x7b\x0e\xca\x73\xf0\x5c\x1b\ \xd7\xb5\xf0\x3d\x87\xe2\x82\x08\x61\x61\xb5\x95\xe4\x8b\x27\x7e\ \xfd\xf3\x07\x7f\xfc\x47\x12\x28\xcf\xbb\x7b\xd3\x83\x3f\xfd\xda\ \x9d\x77\xde\x9e\xc8\x0f\xb1\xe5\xed\x56\xde\x3c\xd0\x8e\xef\xd9\ \x01\xa0\x67\xa3\x5c\x07\xdf\x0f\x48\xf8\x6e\x8e\x4c\xb0\xba\xae\ \x45\x24\x64\xd0\x50\x55\xd4\x3a\xdc\xd7\xfe\xd9\xdd\xaf\x3f\xdd\ \x65\xc4\x6b\x50\xe9\xae\xdf\x4f\xe0\x90\xd6\xcc\x17\x62\xca\x96\ \x17\x8f\x1c\x9a\x7f\xe5\x15\x95\x86\x21\xb4\x61\x68\x61\x9a\x82\ \xe3\x5d\xfd\x3c\xf4\x8b\x3d\x28\x35\x01\x38\x99\x90\x4b\x2e\x2a\ \xe3\xab\x56\x9e\x23\x2a\xcb\x12\xd9\xa2\xa8\xbb\xee\xcd\xff\x7a\ \xec\x15\x23\xbf\x0e\x35\xd6\x36\x21\xa8\xdf\x26\x30\x5f\x88\x29\ \xf7\xfc\xe0\x9d\x03\xa9\xe9\x33\x2b\x4d\x29\xb4\x10\x5a\x08\x21\ \xd0\x5a\x73\xe5\xf4\x12\x1e\xd9\xb0\x9c\xb2\xc2\x18\x4a\x01\x3a\ \xd8\xa3\x01\xa1\x73\xde\x84\x09\xb4\x00\x4d\xd7\xb9\x9e\x68\xff\ \x98\x7e\x79\xd5\xda\x4d\x6b\x03\xf0\x89\xef\x96\x97\x83\xcb\xd8\ \xb4\xbc\xbb\x1f\x78\xed\x68\xb7\xaa\xa8\xde\x73\xbc\x8f\xa8\x89\ \xa8\x2d\x8b\x61\x18\x02\xc3\x00\x84\xa0\xa8\x20\xc2\xe7\xae\x6e\ \xe0\xc0\xb1\x33\x8c\x8e\x65\x10\x28\x0c\x14\x02\x1f\xa1\xd5\xc4\ \xb3\x08\x7c\x81\x8f\x21\xb4\x18\x19\x1d\xd1\x86\x21\xd7\x36\x34\ \xce\xfd\x65\xd7\xe9\x43\xfd\xff\x27\x81\x3b\x36\x6c\x7e\xea\xc6\ \xd5\xab\xaf\x1d\xce\xb8\x7a\x70\xcc\x12\x27\xce\x0d\xf2\x41\x6b\ \x2f\xc9\x78\x88\x9a\xf2\x18\x4a\x6b\x84\x10\x48\x29\xf8\xdc\x35\ \x8d\x28\xad\x38\x74\xac\x8b\x88\x29\x10\x42\x23\x84\xc6\x10\x7a\ \x1c\x3c\xf0\x73\x26\x05\x22\x9d\x4d\xcb\x54\x6d\xea\x2b\x27\x0f\ \xbf\xf3\xaf\x08\xe1\x4f\x22\x50\x37\xef\xa6\x95\x0f\x7f\xf7\x87\ \x3f\x2a\x29\x88\xe8\x25\x33\x12\x22\x55\x1e\x63\x28\xed\x70\x61\ \x28\xcd\xfb\xc7\xbb\x39\xdb\x3b\x42\xaa\x22\x41\x22\x1e\x02\x34\ \x86\x01\x8b\xe6\x54\x91\xaa\x2c\xe5\xe0\xb1\x0e\xb4\xf2\x2e\x81\ \x1b\x39\xf0\xcb\x48\x88\xe0\x59\x9f\xef\x3e\x1f\xbb\x7e\xf5\x2d\ \x89\xa3\x1f\xb6\xec\x40\x18\x13\x04\x36\x3f\xfc\xf3\x67\x53\xd3\ \xa6\xa6\x84\xd0\x42\x69\x28\x2e\x08\xb3\xb0\x21\xc9\xa2\x19\xa5\ \x74\x5c\x18\xa6\xed\xfc\x20\x7b\x0e\x77\x92\xb5\x1d\x9a\x1b\xca\ \xd0\x1a\x7c\x05\xd3\x2a\x8a\xb9\xe1\xda\x26\x5a\xf6\x1f\xc5\xf3\ \x3c\x0c\xf4\xa4\x68\x04\x06\x52\x68\x0c\x03\x21\x25\xda\xf7\xfd\ \xf9\x67\x5a\x0f\x3c\x0c\x5a\xe7\x08\x54\xdf\xbb\x69\xf3\x63\x79\ \x79\x51\x84\x00\xc3\x10\xc1\x2a\x20\x1e\x35\x59\xd1\x5c\xc9\x8c\ \x69\x49\x32\x96\xcb\xae\x43\x6d\xbc\x77\xb8\x93\x82\x58\x98\xe9\ \x55\x45\xf8\xbe\x26\x12\x36\xb9\x6e\xe9\x1c\xce\xf5\xf4\xd3\xdd\ \xdb\x87\x69\x8c\x03\x8e\x9f\x61\x08\x35\xbe\x06\x24\xb4\xef\x9a\ \x0b\x3e\x73\x43\xfc\xd4\x91\x3d\x6f\x48\x80\xb5\x5f\xfd\x97\x27\ \xa2\xd5\xf3\x9a\x13\x51\x83\x50\xc8\x20\x64\x06\xa2\xcb\x11\x51\ \x1a\x8a\x13\x11\x3e\x33\xbb\x82\xab\x66\x55\x73\xea\xcc\x45\x76\ \x1d\x6c\xe5\xd8\xe9\x1e\xae\x6c\xa8\x24\x1a\x09\x61\x4a\xc9\x9f\ \x5d\x75\x05\x7d\x83\x23\x9c\xed\xb9\x38\x01\xc8\x38\xb8\xa1\x91\ \x06\x48\x01\xbe\xef\x50\x55\x59\x39\xef\xc8\xa1\x96\x7f\x16\x80\ \xb1\xf1\x07\xff\x33\x14\x2d\xad\x2d\xd0\x4a\x11\x31\x25\x45\x31\ \x83\xf9\xb5\x85\x34\x56\xc5\x11\x22\x48\x2a\x29\x41\x4a\x3d\x9e\ \x11\x9a\xa1\xd1\x2c\xcf\xbf\xb6\x8f\x23\xad\x67\x59\xda\x9c\x62\ \xfd\x9a\x65\x28\x0d\x42\xc0\x81\xc3\xa7\xd8\xfc\xe4\xf3\x84\x4d\ \x50\x9e\x8b\xef\x3b\x28\xdf\xc5\xf7\x5c\xb4\xef\xa2\xb5\xa7\x0d\ \xf0\x6b\x6a\x1a\xae\x94\xc5\xb5\x2b\xaa\xef\x5a\xbf\xe9\xbe\x74\ \x56\x19\xae\x87\x18\x48\x3b\x0c\x8c\x5a\x1c\x3f\x3b\xc8\x47\xed\ \xbd\x8c\x64\x2c\x84\xd0\x24\x62\x21\x62\x11\xe3\x52\xf9\x8a\xe5\ \x85\x59\xbe\x70\x3a\xb3\x1b\xa6\x72\xec\xf4\x39\x5e\x7c\x7d\x2f\ \xc9\x82\x18\xd3\xaa\x8a\x99\x5a\x51\xc2\x92\x79\x73\xf8\xf0\xc8\ \x49\x6c\xc7\x46\x29\x1f\xdb\xb2\x48\x8f\xa5\xe9\xeb\x1f\xe4\xec\ \xb9\x6e\xd1\xd6\x71\x46\x94\x15\x27\x5e\x13\x37\xdf\xfe\x48\xf3\ \xdf\x7e\xfd\xfe\x83\xa1\x90\x94\xa6\x04\x53\xc2\xb1\xf3\xa3\xec\ \x3d\x71\x91\xa3\x9d\xfd\x78\xae\x85\xc4\x03\xed\x30\xbb\x36\xc9\ \x97\x56\xcc\xa4\xa6\x22\x81\x34\x04\xb9\x02\x25\x84\x60\x34\x9d\ \xe5\xf1\xe7\x5e\xa5\xfb\x42\x2f\xdf\xbb\xe7\x2b\x94\x24\x13\x48\ \x09\x6b\xd6\xff\x1d\x47\x4f\x9c\x42\xf9\x4e\x10\x09\xcf\xc6\xf7\ \x5c\x50\x2e\x8d\xf5\x75\x5f\x97\xcb\x96\xdf\x5c\xb7\xa0\x79\xc1\ \x9d\x52\x1a\x02\x01\x1a\xcd\x94\xa2\x08\x8b\x1b\x8b\x59\x35\xbf\ \x8a\xa5\x73\x2a\x98\x5b\x57\x42\x2c\x62\xf2\x51\x6b\x37\xff\xfe\ \xeb\xfd\xec\xd8\x73\x8c\x0f\x8e\x76\x61\x9a\x30\x33\x55\x8a\x94\ \x60\xca\x10\xcb\x17\xcf\x66\xd6\xf4\x1a\x9e\x7e\x71\x07\x2f\xbd\ \xb6\x8b\x55\xcb\x16\x73\xeb\x9a\xeb\xf1\x95\xc7\x3b\xef\x1e\x40\ \x1a\xa0\x94\x8f\x52\x1e\x68\x45\x3c\x9e\x38\x20\x17\x5f\xbd\xa6\ \x66\xc1\xdc\xf9\x77\x18\x86\x21\x2e\x17\x1e\xe3\xd9\x10\x8f\x9a\ \x94\x15\x45\x59\xd0\x58\xc6\xda\x15\x33\xb8\xe5\xfa\x26\xaa\xca\ \x12\x5c\xe8\x1f\xe6\xad\xbd\xc7\xf8\xc9\x0b\x3b\x69\xed\xec\x21\ \x16\x0d\x13\x8b\x46\x98\x56\x95\x64\xd5\xb5\x73\x99\x33\xa3\x9e\ \x07\x7f\xfc\x34\xb1\x68\x98\xdb\x6e\x5c\xc5\xd4\xca\x0a\x5a\xf6\ \xec\xc3\x73\x1d\xb4\xf2\xd1\xda\xa7\x30\x51\xb8\x5b\xfc\xe5\x5d\ \x8f\x2e\xbc\x77\xc3\x3d\xfb\x42\x21\x43\x06\x29\x98\xb3\x40\x70\ \x52\x06\xc2\xca\x89\x30\xa8\x84\x81\x14\x7c\xa5\x50\x4a\x73\xb6\ \x67\x80\xed\x3b\xf7\xf3\xdf\x2d\xfb\xa9\x28\x29\xe0\x1b\x5f\xfd\ \x22\x8b\x9a\x1b\xf0\x3c\x18\x19\x4d\xf3\xe8\xbf\xfd\x82\xdb\xd7\ \x7d\x91\x48\x28\xcc\x8a\x35\xb7\x90\x1e\x1b\x45\x6b\x8f\xfa\xe9\ \x75\x7f\x23\xae\x5b\xbd\xa1\xae\x6a\xd9\xfd\x27\x84\x61\x98\xf9\ \x51\x49\x3c\x2c\x88\x85\x35\x05\x79\x82\x64\xcc\xa4\xb8\xc0\xa4\ \x24\x11\xa1\xb4\x28\x4a\x59\x32\x4c\x24\x1c\x64\x85\x52\x13\xa6\ \x09\xb4\x23\x25\x74\x9c\x1d\xe4\xe3\xe3\xa7\xb9\xd8\x37\x80\xf2\ \x7d\x0a\x0b\xf2\xf8\xfc\x75\xcb\xe8\xbe\xd0\x4b\x3a\x9d\x26\x3f\ \x16\xe3\xbe\x07\xbe\x4f\xcb\xee\xdd\x2c\x59\x38\xff\x26\x01\xc4\ \x36\x3c\xf2\x71\xff\x85\x6c\x34\x0a\x1a\xdf\xf7\xf0\x3d\x1b\xd7\ \xb5\x71\x6d\x0b\xc7\xb1\x70\x1d\x1b\xcf\xb5\xf0\x5c\x9b\xc2\xb8\ \x64\x6a\x49\x8c\xea\xf2\x7c\xa6\x96\x27\xa8\xa9\x48\x32\x6d\x4a\ \x31\x91\xb0\x49\x28\x24\x09\x99\x92\x70\xc8\x24\x12\x0e\x11\xcb\ \x13\xb8\x1e\xbc\xd1\xb2\x0f\x0d\x2c\x6c\x9a\x0d\x02\x8a\x8b\x0a\ \xd8\x78\xef\xb7\xfc\xb1\xb4\xbd\x58\x00\x6c\xfa\xf6\xd6\xdd\xb7\ \x7e\x69\xdd\x35\x4a\x79\x08\xc1\x78\x29\x0d\xee\x5b\x8d\xc6\xf1\ \x5c\x1c\x37\x30\xdb\x71\xc8\xda\x36\xd9\xac\x4d\xc6\xb2\xc8\x64\ \xb2\x64\xb2\x16\xae\xeb\x5c\x66\x36\xae\x63\x63\x18\x50\x51\x92\ \xa4\xa2\x3c\x49\x55\x79\x29\x65\xa5\xc5\x4c\xad\xaa\x20\x1a\x09\ \xeb\xc1\xa1\x31\xaf\x71\x46\x41\xb9\x09\xf0\xf8\x93\x9b\xbf\x73\ \xdb\x8d\x7f\xd1\x52\x10\x8b\x5c\xd2\x80\x94\x4c\xf2\xa5\x24\xa8\ \x64\xe3\x9a\x40\x04\xb7\xba\x18\xbf\xda\x2f\xbd\x7b\xd9\x5e\x21\ \x60\x64\x14\x7a\x7a\x07\x19\x4b\x67\xc8\x8f\xc7\x30\xa5\x49\x38\ \x8c\x78\x6a\xcb\x4b\x2d\xc0\xd0\xa5\xce\xe0\x85\x17\x8f\x9e\x9e\ \x3b\xfb\x8a\xba\xdf\x45\xe0\x72\x5f\x6b\x8d\xd2\x1a\xad\x35\x5a\ \x05\xfe\x58\xc6\xe2\x74\x57\x37\xed\x5d\xe7\x39\xdd\x71\x8e\xb6\ \xce\x2e\x0c\xa1\x99\x37\xbb\x81\x3f\xbf\x76\x11\x8d\xf5\x29\xd2\ \xe9\x34\x4f\x3e\xfb\x9c\xde\xf6\xea\xeb\xe2\xe4\xc1\x37\xa7\x43\ \xba\xc3\xcc\x11\xd8\xb6\xe3\xd5\x27\x96\x2c\xbc\xe2\x47\x5a\xa1\ \x43\x26\x42\x4a\x18\xc9\xfa\xf4\x0e\xa5\xb9\x38\x34\xc6\x85\x81\ \x11\xba\xfb\x86\xe8\xe9\x1b\x62\x78\x78\x8c\xa1\x91\x11\x06\x86\ \x86\xc1\x77\xa9\x9b\x56\xca\xcc\xd4\x14\xe6\x36\xd6\x30\x77\x56\ \x1d\x2b\x97\x36\x53\x51\x96\xa4\xb8\x08\xde\xdd\xdf\xc9\x53\x5b\ \xfe\x93\xfd\x1f\x7c\xc8\xa9\xb6\x56\xec\xb1\x51\xae\x5e\xba\xe4\ \x8d\x93\xa4\x3b\x42\x75\xeb\x27\xf7\x84\xf7\xff\xe3\x2b\xa7\xb2\ \xf1\xc6\x86\x8b\x03\x23\xf4\x0c\x8c\x62\x5b\x59\x7c\xcf\x41\xfb\ \x36\x05\x51\x83\xc2\xb8\x24\x19\x0f\x91\xaa\x2a\xa4\xa9\xa1\x82\ \xa6\x19\xd5\xd4\x54\xc6\x70\x3d\xf0\xfd\x20\x1b\x32\x19\x97\xf6\ \x33\xdd\xec\x7a\xef\x03\x9e\xfd\xe5\x76\x3a\xcf\x74\x11\x09\x19\ \x68\xdf\xc5\x73\x6d\x66\xd6\xa7\xc8\x8f\xe5\x37\x1d\x3a\x75\xf1\ \x93\x6c\xc7\xb6\xc9\x04\xae\x5a\xbe\xbe\xa6\x71\xf9\x5f\x1f\xef\ \x19\x76\xa2\xf1\xb0\x16\x4d\xb5\x85\xcc\xab\x2f\xa6\x79\x46\x29\ \x79\x11\x89\x69\x8a\x4b\x25\x78\x52\x2b\x67\x40\x77\xef\x30\x3f\ \x7d\xfe\x65\x76\xb4\xec\xc3\xca\xa6\x71\x1d\x6b\x52\x97\xec\x7b\ \xb6\x0e\x9b\x86\xa8\x2c\x2f\xf9\xf2\xd1\x7d\x2f\x6d\xcd\xed\x35\ \x2f\x3f\xe8\xc0\xae\x67\xba\x30\x42\xeb\x1e\xfa\xfb\xef\xbd\x3c\ \xa7\xa1\x52\x23\xc6\x09\x8a\x5c\x61\x0a\x84\x15\x32\x03\x2d\xbc\ \x7b\xa8\x83\x9d\xef\x1d\xe6\xfd\x8f\x4e\x70\xf2\x74\x27\x42\xfb\ \x08\xed\xa1\x7c\x1f\xb4\x06\xad\x02\x9d\x68\xa5\x8b\x0a\x13\xa2\ \xb1\x2e\xf5\xb3\xb7\xb7\x3f\xbe\x35\x56\xb9\x94\x4c\xf7\xde\xff\ \xdd\x96\xe7\xfa\xf6\x95\x5f\xf8\xc6\xda\x47\x1f\xfa\xe1\xd6\xa2\ \xc2\x78\x48\x08\xad\xa5\x14\xc2\x34\xc1\x72\x3c\x86\x47\xb3\xbc\ \xbc\xeb\x23\xb6\xbc\xb2\x17\xcb\xca\x20\x85\x1f\x5c\x34\x93\xda\ \xf4\x20\xdc\xb9\x76\x3d\x6c\x0a\x9a\x66\xd5\xff\x6c\xe7\xb6\xc7\ \xee\x7e\xa5\x53\xf3\x85\x5a\xf1\xbb\xe7\x82\x5c\xdf\xfe\xd9\xcf\ \x6f\x98\xb9\xe1\xaf\x36\xee\x5d\x79\xcd\xdc\xe4\x91\xb6\x7e\xfd\ \xab\xb7\x3e\x16\xc7\xdb\xbb\x19\x1c\x1a\xc1\x75\x2c\x94\xef\x04\ \xc0\xb9\xb9\xe0\xb7\x06\x13\xdf\xb5\xb5\x65\x65\x98\x59\x57\x23\ \xac\xb1\xfe\x2f\x7f\xf2\xde\xaf\xb6\xee\xe8\xd4\xdc\x50\x2b\xfe\ \x80\xc9\x48\x88\x20\x84\x10\xbd\xed\x6b\x3f\xf9\xa7\xb3\xa3\xd1\ \xbb\x7c\x23\x12\xc9\x66\x32\x28\xdf\xd1\xca\xb3\x45\xf0\xb5\x93\ \xfe\x63\x7c\xcf\xc1\xb1\xb3\x5a\x68\x5f\x94\x25\xf3\x29\x29\x8a\ \xbf\x91\x19\xe9\xbb\xef\xfd\x9d\xff\xf1\xc9\xe5\x61\xff\xc3\x67\ \x43\x61\x80\x56\x00\x72\xf5\xba\x6f\x6e\x2e\xac\x9c\xb3\xb1\xbd\ \x67\x34\x6c\x59\x96\x54\xbe\x13\x90\x70\x73\xe0\x36\x4a\xb9\xfe\ \xac\x54\x95\x8a\x48\xb7\x65\xfb\x73\x9b\xef\x02\xbb\x23\x2f\xb5\ \x86\x6c\xc7\xb6\x3f\x61\x3a\x9e\x20\x01\x10\xba\xf5\x8e\x07\xea\ \xd3\x8e\x99\x1a\x18\x49\xd7\xdb\xb6\x5b\xae\x94\x92\x52\xa8\xa1\ \x44\x7e\xb8\xbd\xbc\xb8\xb0\xfd\x85\xe7\x9e\x6d\xc3\x6a\x1b\x02\ \x08\xd5\xad\xc7\x6d\x7b\xe6\xf7\x1e\xff\x1b\xd9\xbd\x19\x72\x0f\ \xff\x24\xa6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x15\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x38\x1f\x0d\x4e\xa3\x75\x00\x00\x14\xb1\x49\x44\x41\x54\x68\ \xde\xbd\x9a\x79\x70\x1c\xd7\x7d\xe7\x3f\xaf\xaf\xb9\x67\x30\x83\ \x01\x66\x70\xdf\x00\x09\xde\x97\x24\xd3\xd4\x61\x52\x71\x64\x49\ \x65\xef\xc6\x96\xd7\xc9\x6e\xec\x2d\xd9\xb2\x2b\xde\x38\x47\x39\ \x29\x67\xbd\xde\xdd\xd4\xae\x2a\x95\xb5\x6c\x25\xb1\xd6\x49\x14\ \x5b\xbb\x9b\x4a\x76\x6d\x4b\xb6\x65\x59\xd6\x45\x31\xa6\x25\x52\ \x12\x45\x52\x16\x29\x5e\xa0\x40\x90\x20\x08\x90\x38\x66\x30\x17\ \x80\x39\xba\xfb\xbd\xfd\xa3\x67\x40\xd0\xd7\xc6\x47\xed\xab\xea\ \xea\x87\x46\xf7\xf4\xef\xfb\x7e\xdf\xdf\xef\xfd\xde\xfb\xb6\xe0\ \x57\xd8\xfc\xad\x3b\xc5\x4d\x5b\x37\x6a\xba\xae\x69\xe5\x6a\x55\ \x5b\x2a\xe5\x34\x50\x98\xa6\x4f\x05\x03\x01\x99\x4a\xb7\xcb\x0b\ \x97\x66\xe5\x5b\xaf\x7e\x53\x42\xf5\x86\x67\x9b\xbf\xaa\xc8\x7e\ \x4c\xfc\xdc\xef\x14\xbf\xac\xd1\x83\x1b\xf7\x59\x83\x23\x5b\xc2\ \x17\x2f\x4f\xb5\xbb\xc2\xbf\x6b\xfd\xf0\xf0\xce\x48\xb4\x69\xd0\ \x55\x7a\x5a\x22\xc2\x0a\xa9\xa1\x64\xd5\x14\x32\x8b\xaa\x4e\x4d\ \x4c\x4c\x9e\xbe\x32\x3d\x79\x64\xa8\x3b\x79\xce\xb0\xc2\x85\x83\ \xdf\xfb\x9b\x32\x20\x7f\xd1\xf7\xff\xc2\x00\xba\x46\xef\x4e\xf4\ \x0c\x8c\x0e\xa1\x07\xde\xd3\x9a\xee\x7e\xbf\xe6\x8b\x6f\xf4\x85\ \xe2\x64\x8a\x15\x8a\x4b\x2b\xb8\x8e\x8d\x92\x36\xd2\x71\x70\xa5\ \x8d\x74\x1d\x4c\x5d\x91\x8a\x07\xb1\x34\x17\x65\x97\x0a\x4b\x85\ \xec\xfe\x7c\x6e\xfe\xf1\x54\x73\xf4\xf8\xb3\x4f\x3c\x3c\x03\xd8\ \x00\x56\xf7\x7d\xd4\xa6\x9e\xf8\xd5\x01\xd0\x82\xbd\xc8\x95\xc9\ \xfa\x5f\xf1\xc4\x03\xbf\xf7\x9f\x6f\x2e\xda\xbe\x0f\xbb\xfe\xb6\ \xfb\xf0\x27\xf5\xc5\x52\x15\xdb\xae\x22\x9d\x9a\x42\x39\x28\xd7\ \x11\x52\x3a\xb8\xae\x8d\x72\x1d\xa4\xeb\x20\xa5\x83\xeb\xd8\x38\ \x4e\x4d\x49\xd7\x11\xae\x63\xd3\x1c\x0b\x12\x0b\x19\x08\x67\xf9\ \x5c\x31\x3f\xff\x68\x3c\xec\xdb\xff\xec\x13\x5f\x3c\x07\x70\x49\ \x29\xfa\x84\xf8\xe5\x01\x0c\xdd\xfc\x31\xc6\x5f\xff\x2a\x00\xfb\ \xde\xfb\xe9\x3d\xbb\x6f\xbe\xe9\xdf\x8e\xae\xdb\x70\xbf\x2f\xda\ \x2e\x1e\x7f\xf9\x22\xd3\x0b\x39\x65\x08\x57\x28\x79\xdd\x50\xe9\ \x7a\x23\xae\x5c\x07\xb7\x7e\x4d\xd5\xaf\x35\xfe\xaf\x5c\x07\xc7\ \xb1\x95\xed\xd4\x84\x65\x68\x74\xb4\x44\xc0\x59\x39\xe9\xd3\x9c\ \x2f\x9d\x7e\xf3\xd0\xf7\xa6\x2f\xbc\x3a\x0f\x20\x7c\x09\x54\x75\ \xf1\xa7\xda\xa7\xff\x2c\xe3\x3f\xf0\xc9\x27\x38\xfc\x9d\x7f\x0f\ \x10\xfe\xc4\xef\xff\xf5\x03\xef\xde\x77\xe7\x43\x77\xde\x76\xc7\ \xde\xa1\xde\x36\xd1\xda\x14\x50\xbd\xad\x21\x91\x2d\x55\xc4\x5c\ \x6e\x19\x25\x25\xa0\x50\xd2\x45\x29\x59\x3f\xea\x7d\xe9\xf5\x69\ \xf4\xeb\xf7\xa0\x5c\x21\x50\x38\x8e\xad\x32\x8b\x05\x51\x71\x54\ \xda\x34\xfd\xef\x4b\xb7\x75\xb6\x0d\xae\xdb\x36\x35\x31\x76\xf4\ \x1a\x6e\x19\x2d\xd8\x85\xb2\x8b\x3f\x1f\x80\xfb\x3f\xfb\x03\xfe\ \xf7\xc3\xf7\x00\xb4\xfd\xc7\x07\xbf\xf9\xe0\xbb\x6e\xbd\xed\x4f\ \x76\x6e\xdd\x98\x34\x0d\x43\x49\xa5\x04\x08\xd1\x12\xf7\x33\xdc\ \x11\xa3\x5a\xb3\x99\x9e\x2f\x60\x3b\x0e\x82\x1b\x8d\x5c\x05\x22\ \xe5\x2a\x18\x94\x44\x4a\x17\xea\xd7\x50\x52\x08\x14\xd5\x5a\x55\ \x2d\xe6\x8b\x42\x37\xac\xcd\xba\xe1\xdb\xb1\x65\xfb\xad\xf3\xe7\ \x4f\x1d\x1e\x53\x76\x11\x2d\xd4\x87\xb2\xf3\xff\x3c\x00\xff\xf2\ \x77\xbe\xc1\xd7\xfe\xe2\x5e\xa0\xa9\xef\xcf\x1f\xfe\xd6\x17\xf6\ \xdd\x7a\xfb\x47\xba\xda\xd3\x86\x2b\x41\x08\x84\x10\x02\x21\x14\ \x20\x88\x86\x4d\x46\xba\x13\xf8\x2d\x83\x8b\x57\x17\x29\x57\x6c\ \x04\x72\x75\xb4\xd7\x1a\x7a\x23\xa8\x35\xc0\xa4\x04\xcf\x5b\x02\ \xa5\x54\xb1\x54\x12\x55\xdb\x69\x37\x4d\xeb\x96\x6d\x3b\xdf\xb5\ \x38\x76\xea\xd0\x5b\xca\xce\xa3\xf9\xd3\x28\x67\xe9\x67\x03\x18\ \xb8\xe9\x63\xbc\xfa\xd4\x67\x01\xda\x7e\xe3\xdf\x3d\xf6\x05\x3b\ \x3a\x7a\x5f\x2c\x1a\x15\x1d\x09\x9f\xd2\x35\x40\x28\x21\x84\x40\ \xd3\x1a\x20\x20\xe0\xd3\x19\xec\x8c\xd3\xd9\x12\x61\xfc\xca\x02\ \xa5\xe5\x4a\x9d\x4e\x75\x20\xac\x31\xba\x0e\x8e\x3a\xa5\xa0\x4e\ \x2d\x25\x11\x4a\x02\x52\x80\x52\xb5\x6a\x55\x2c\x2f\x97\x9b\x74\ \xd3\xdc\xb1\x7d\xe7\x1d\x33\xe7\x4f\x1d\x3e\xeb\x19\x2f\x7e\x3a\ \x00\x2d\xd8\xcb\xe2\xe4\xf7\x01\xc2\x1f\xf8\x9d\xff\xf5\x60\x20\ \xbd\xe5\x23\x79\xdb\x12\x17\xe7\x97\xd5\xc4\xb5\x25\xda\xe3\x7e\ \x91\x88\x98\x28\x40\x08\x85\xe7\x09\x81\x42\x61\x18\x1a\x9d\xad\ \x11\x36\x0f\xa6\xb8\x38\x93\x25\x57\x5c\x46\x17\xca\xbb\x0f\x85\ \x40\x22\x50\x68\xab\x7d\xd6\xfc\xaf\x71\x9f\x6c\x5c\x13\x02\xa9\ \x1c\xc7\x16\xd5\x6a\x35\x66\x59\xd6\xe6\x8d\x5b\x6f\x3d\x3d\x7e\ \xe6\xd5\xc9\x9f\x49\xa1\x06\xc7\x1e\xf8\xd4\x97\x3f\x1e\xeb\xdc\ \xfe\x99\x12\x51\x03\x94\x92\x52\x92\x5b\xaa\x88\x1f\x4e\x64\x29\ \x95\x6d\x06\xd3\x11\x4c\x43\x80\x50\x08\x01\x0d\x4a\x69\x9a\x20\ \x11\x0d\xb0\x67\x6b\x0f\xb3\x99\x22\x57\xe6\x72\xe8\x82\xba\x81\ \x0d\xe3\x58\x35\x58\xab\x1b\xcf\x9a\xbe\xd6\xb8\x47\x28\x21\x40\ \xd9\x76\x4d\x20\x48\x9a\x86\x99\x6e\xef\x5c\xf7\xea\x95\x4b\x27\ \xf2\x1b\xff\xc5\xff\x60\x7e\xec\xa9\x9f\x4c\xa1\x3b\xee\xfd\xf4\ \x9e\x3b\xef\xb8\xf3\xf3\xf7\xed\xdb\x95\xec\x4e\xf8\xc9\xaf\x38\ \x2c\x55\x6c\x81\x92\xb8\xd2\xe5\xca\x7c\x89\x63\xe3\xf3\xc4\x82\ \x26\x9d\x2d\x41\x40\xac\xf1\x86\x17\x17\x3e\x4b\xe7\xd6\xed\x7d\ \x08\x21\x38\x7d\x61\x06\x4d\x63\xd5\x70\xed\x47\x46\x5d\x43\xa1\ \x09\x59\x1f\x88\xb5\xe0\x40\x13\x4a\x68\x1a\x6a\xb9\xbc\x2c\x62\ \xd1\xe8\xa0\x69\x1a\xb9\xc9\xb7\x8f\xbe\x3e\x3f\xf6\x94\x43\x7d\ \x8e\xf8\x11\x00\xf1\xc4\x87\x7e\xf3\x13\x7f\x7c\xc7\x9e\x3b\xf6\ \x9a\xa6\xa1\xe2\x61\x53\xec\xea\x8f\x8a\xce\xe6\x00\x8b\xa5\x2a\ \x2b\x55\x1b\x85\xa4\x52\xb3\x39\x79\x71\x81\xc9\xd9\x02\xdd\xad\ \x61\x22\x41\x6b\xd5\x13\x9a\xa6\x1a\xbf\xcd\x96\xe1\x36\xfa\xda\ \x9b\x79\xe3\xdc\x65\xa4\x74\xd1\x84\x5c\x1d\x61\x84\x44\x5b\xeb\ \x0d\x41\x1d\x8c\x42\xa8\x06\x45\x15\x42\x28\xa1\x0b\xa1\xf2\xf9\ \x9c\x68\x4e\x34\x6f\xd9\xbc\x6d\xcf\x4b\xe7\x4f\xbf\x3a\xe5\xcd\ \x62\xda\x8d\x00\xee\xff\xe4\x7f\xbb\x63\xe7\xf6\x5b\xbe\xd0\xd7\ \xd5\x26\xbc\x54\xe9\xb5\x64\xd4\xe2\x96\xe1\x38\xe9\xb8\x9f\xdc\ \x52\x95\xaa\x6d\x23\xa5\x64\x36\x5b\xe2\xd8\xd8\x55\x04\x8a\x74\ \x22\x84\x65\x6a\x68\xf5\xa1\x14\x02\x94\x82\xee\x74\x9c\x5d\x1b\ \x7a\x38\x73\x61\x86\xa5\x72\x19\xa1\x56\x0d\xf3\x0c\x6e\xf0\x7f\ \x75\xf4\x41\x13\x0d\x4f\x09\xcf\x6b\x9a\x12\x28\xa9\x7c\x3e\x33\ \x50\xad\x39\x66\x22\x35\xfc\x83\xd9\xa9\x53\x15\x50\xd7\x01\xa4\ \x86\xee\x4a\xec\xda\x7e\xcb\x67\xef\xda\xbb\x6f\x93\x54\x28\xe1\ \x35\x84\x10\x5e\x46\x41\x90\x8e\xfb\xb9\x65\x24\x49\x4b\x53\x90\ \xa5\x72\x0d\xc7\x75\xa8\x54\x6b\x9c\x9a\x98\x65\x7c\x3a\x4b\x3c\ \xe2\x23\x1a\xf6\xe1\x33\xf5\x35\x01\x0e\xf1\x58\x90\x77\x6c\x1d\ \xe4\xda\x42\x8e\x85\xc5\x22\x52\xca\x3a\xad\xd6\x1a\xef\x05\xb6\ \xd6\x00\xd7\xf0\x4a\x9d\x5a\x9a\x26\x44\xb1\x98\xa7\xbd\xad\x6d\ \x93\x50\xf6\xd3\x97\x2f\xbc\x79\xe5\x06\x0a\xdd\x7d\xf7\x6f\x6f\ \xbe\x75\xf7\xbb\xbe\xd8\xd5\xde\xaa\x49\xa5\x44\xfd\xa1\x35\x41\ \x0a\x4a\x29\x10\x82\xf6\xe6\x00\xbb\x86\x5b\x69\x8e\xf9\xa9\x39\ \x2e\xae\x94\x5c\xcb\x16\x39\x7a\x66\x8a\xa5\x95\x0a\xb1\xb0\x8f\ \x48\xc8\x87\xa1\x7b\x00\x94\x82\x90\xdf\x64\xe7\xc6\x7e\x1c\x57\ \x32\x33\x97\xa5\x56\xab\xa1\x6b\x0d\x83\xbd\x18\xd1\x50\xd7\x63\ \x41\xb0\x0a\xa4\x11\xfc\x9a\x40\xf9\x2c\x43\x93\x4a\x73\x5a\x3b\ \x37\xfc\xd3\xd5\xc9\x93\x8e\x0e\x10\x6e\xbb\xd9\x1a\x18\xda\x7c\ \xff\xee\x77\xbe\xfb\x5d\x96\x61\x28\x9f\xa9\x09\x4d\x13\x75\xae\ \x52\xe7\xb5\x58\x05\xd4\x00\xd2\xd5\x12\x62\xeb\x60\x8a\x64\x2c\ \x80\xa1\x09\xaa\x35\x9b\x53\x13\x57\x39\x7b\x71\x16\x94\x24\x18\ \xb0\x88\x47\xfc\x28\xc0\x95\x0a\xcb\xd4\xd9\x38\xd8\x45\x2c\x12\ \x60\x66\x36\xc3\xf2\x4a\x19\x6d\x0d\x08\x6d\x0d\x95\x56\x3d\xc1\ \xf5\x01\xd4\x35\x21\x8a\xc5\x02\x3d\xdd\x3d\xbd\x85\xec\xcc\x3f\ \x5c\x9d\x3a\x57\xd4\x01\xf6\xdd\xf5\xdb\xb1\x78\xfb\xc8\x43\xcb\ \x81\x8e\xd6\xc5\xa5\x8a\x58\xae\x3a\x48\xc0\x6f\x69\xf8\x2d\x51\ \xe7\x35\x9e\xdb\xd7\x78\x46\x2a\x85\xae\x0b\xba\x53\x61\x46\xfb\ \x5a\x49\x35\x87\x89\x04\x4c\xe6\x73\x25\x5e\x3b\x79\x89\xd9\x4c\ \x01\xa9\x14\xf1\x68\x88\x48\xc8\xc0\x71\xbd\x67\x07\xba\x52\x74\ \xa4\x93\x64\x16\xf3\x2c\xe6\x8b\xf5\x8c\xc3\x8d\x14\xe2\xfa\xfb\ \x1a\x41\x5e\xef\xab\x44\x53\x53\x68\x6a\x7a\xf6\x95\x65\x19\x19\ \xd3\x01\xfc\xf1\xbe\xfe\x81\x4d\x7b\xff\xd4\x31\xc3\x64\x96\xaa\ \x5c\x2d\x54\x98\x2f\x55\x99\x2f\x56\x29\x96\x6d\xa4\x52\x84\x03\ \x26\x3e\x83\xd5\x0c\xd3\xc8\xfb\xe0\x01\x31\x74\x8d\xee\x74\x98\ \xa1\xae\x16\xba\xd3\x4d\x34\x85\xfd\x8c\x5f\x9e\xe3\xd8\xe9\x4b\ \x64\xf3\x45\x34\x4d\xa3\x2d\x19\x43\xd7\xc0\x95\xd0\x99\x6e\x62\ \xa0\xbb\x9d\x72\xb5\xca\xcc\xec\x02\x02\x85\xde\x30\xb8\x31\xc9\ \xdd\xe0\x1d\xd0\x35\x81\xae\x6b\x48\xd7\x16\xc9\x96\xb6\x52\x6f\ \x4f\xef\x33\xba\x16\xdf\x22\x62\xcd\x5d\xf7\x6c\xba\xe9\xde\xf7\ \x4d\x2f\xd6\x94\xf4\xd8\x82\x23\x15\xf9\x72\x8d\xb9\x42\x99\xd9\ \xdc\x0a\x53\x99\x12\xf9\xa5\x1a\x42\x13\xc4\x42\x26\x3e\xd3\x7b\ \x93\xf7\x32\x8f\x6b\x52\x29\x4c\x43\xa7\xa3\x35\x4c\x5f\x47\x92\ \xa1\x9e\x56\x42\x41\x1f\x6f\x9e\x9b\xe4\xe4\xd8\x65\x32\xf9\x22\ \x89\x68\x84\x64\x3c\x80\xed\x40\x22\x16\x64\xa8\xb7\x8b\x40\xc0\ \xc7\xf8\xa5\x2b\xa0\xa4\x17\xb8\x9a\x67\xac\xa1\x09\x74\x5d\xa0\ \x6b\x02\xd7\x71\x58\x59\x29\x93\xcb\x17\xc4\xe4\xd4\x34\x1d\xed\ \x1d\xa1\xa9\xf1\x63\x5f\xd5\xb7\xec\xf8\x35\x7d\x74\x78\xd3\x47\ \x7f\xeb\x9e\xbb\x76\xf5\x24\xfc\xc4\x02\x96\xb0\x1d\x98\x2f\xd4\ \xc8\x96\x6c\x56\x2a\x36\xa5\x72\x8d\xc5\x52\x85\x4c\x71\x85\x99\ \x6c\x89\x0b\x57\x73\xe4\x97\x6b\xf8\x0c\x9d\x78\xc4\xc4\x32\xeb\ \xb1\x51\x9f\xd4\x5c\x09\x96\xa1\xd3\x12\x0f\xd1\xd7\xde\xc2\x86\ \xc1\x4e\x4c\x5d\xe3\xf8\xe9\x0b\x9c\x38\x37\x41\xb5\xea\xd0\xdd\ \xde\x8a\x65\x6a\xf8\x2c\x93\xfe\xee\x76\xba\xdb\x53\x9c\x1b\x9f\ \xc4\x76\x6a\xb8\xae\xa4\x52\xa9\x50\x2c\x2d\x91\x5d\xcc\x33\x3b\ \x9f\x65\x6e\x21\x4b\x2e\x97\xa7\x50\x2c\x51\x2c\x96\xe8\xe8\xe8\ \x48\x5e\x3c\xfb\xca\x5f\x19\x89\x68\x50\xeb\x6a\x6f\x1f\x6c\x89\ \x6a\x24\x82\x61\x31\x98\x96\xd8\xae\xc4\x76\x15\xb9\xe5\x1a\x97\ \x33\x4b\x5c\x9a\x2b\x31\x71\xad\xc0\x4a\xb9\x82\xc0\xc5\x67\x28\ \x42\x96\x20\xe8\xd3\x48\x44\xbc\x6a\x74\xd7\xfa\x36\x7a\xd3\x61\ \x84\x10\xd8\xae\x97\x79\x1c\x57\xe1\xf7\x99\xf4\x75\x24\x69\x4b\ \x36\x71\xf3\x96\x41\x8e\x9c\x38\xcf\xd3\x07\x8f\xb1\xff\xf0\x9b\ \xfc\xd6\xbd\xb7\xb1\x6b\xf3\x20\x7e\xcb\x60\xe7\xa6\x75\xa4\x9a\ \xe3\x7c\xe6\xcf\xbe\xcc\xc9\x33\xe3\x98\xba\xc0\x76\x6a\x38\x76\ \x0d\xd7\xb1\x57\x17\x49\x52\x7a\xb3\xb6\x63\xdb\x94\x89\x77\xea\ \x83\xc3\x3b\xcc\xfe\xfe\x0d\x7f\x38\x3a\x32\x92\x52\x78\xae\xf3\ \x99\x1a\x21\xbf\x4e\x22\x6c\xd2\xdb\x1a\x64\x4b\x6f\x13\xb7\x6f\ \x48\xb1\xa1\x27\x4e\x3c\xe2\xa3\x5a\xb5\xb9\x32\x5f\x62\x36\xbb\ \xc4\xcc\x7c\x91\x33\x13\x73\xbc\xf8\xfa\x38\xaf\xbd\x35\x45\x69\ \xb9\x4a\xba\x39\x42\x34\x64\x22\x34\x81\x52\x5e\xd6\x32\x0c\x9d\ \x68\x28\xc0\x48\x6f\x07\x5b\xd6\xf7\x32\x7d\x35\xc3\x23\x7f\xff\ \x5d\xce\x4d\x5c\x61\xdb\xe8\x20\x91\x90\x8f\x48\x38\xcc\xde\x77\ \xee\xe0\xea\x5c\x86\x37\x4e\x9e\xc5\xd0\xc4\xf5\x75\x84\xba\xbe\ \x9e\x70\x5d\x47\x75\xa4\x5b\xc5\xd5\x85\xc2\x77\xf5\xb6\xf6\x01\ \x6b\x64\xfd\xae\x3f\x58\x37\x38\x18\xaf\x67\xc7\x3a\xa7\xbd\x20\ \xd5\x35\x81\x69\x68\xf8\x4c\x8d\x64\xcc\xc7\xba\xae\x26\xf6\x6c\ \x6a\xe3\x3d\x37\xf7\xb1\xa9\xbf\x99\xa6\x88\x9f\x95\x72\x8d\x4c\ \x7e\x99\xb9\x6c\x91\x37\xc7\xa6\xf9\xd6\x81\x13\x1c\x3b\x33\x45\ \xb5\x66\xd3\xde\xd2\x44\xd0\x6f\x5c\xaf\x78\x35\x41\x24\x14\xe0\ \x1d\xdb\xd6\x71\xe7\x9e\xad\x9c\x7d\x7b\x92\xcf\x3f\xfa\x35\x2c\ \xd3\x62\xc3\x70\x1f\x01\xbf\x9f\xdb\x6e\xd9\x4e\x34\x12\xe4\xe5\ \x23\x6f\x78\xc5\x5e\x7d\x01\x54\x5f\xfc\xe0\xba\x8e\xe8\x68\x4b\ \x31\xbb\x50\xf8\x9e\xde\xd3\xb7\xd1\x1c\x1a\xd9\xfe\xbb\xeb\x06\ \x07\x9a\xd6\x02\xb8\x3e\x89\xdd\x78\xcd\x3b\xc0\x32\x75\xd2\xcd\ \x21\xb6\x0d\xb5\x72\xf7\xee\x01\xee\x79\xe7\x30\xa3\xfd\x2d\x44\ \x43\x16\x4b\x2b\x15\x2e\xcd\x2c\xf0\xea\x9b\x13\x7c\xfd\xd9\x23\ \xbc\x35\x36\x85\x94\x92\xd6\x44\x04\xd3\xd0\x57\x53\x59\x34\x1c\ \x62\xdf\xee\xcd\xec\xdd\xbd\x83\xa7\xf6\x1f\xe2\xef\x9f\x78\x96\ \xd1\xa1\x1e\xd2\x2d\xcd\xec\xd8\x3c\xca\x70\x7f\x37\x87\x8e\xbc\ \x41\xb9\xe2\xed\xbc\x34\x16\x3f\xd2\x75\xe8\x68\x4b\x31\x9b\x29\ \x3c\xa9\xf7\x0f\x6e\x37\x7a\x7a\x47\x1f\x18\x1d\x1e\x4a\x2a\x85\ \x97\xba\xb4\xb5\x46\x37\xce\x6a\x75\x42\x59\x0b\x0e\x3c\x8a\xf8\ \x7d\x06\x3d\x6d\x31\x6e\xd9\xdc\xc5\x07\xee\xdc\xc8\xaf\xef\xde\ \xc8\x70\x6f\x8a\x68\xc8\xe2\xed\xcb\xb3\xec\x3f\x74\x92\x6f\xbd\ \x70\x84\x73\x17\xaf\x20\x80\x48\x38\x80\x26\xbc\x15\x42\x3c\x16\ \xe2\xde\x7d\x3b\xd9\x3a\xba\x8e\x47\xff\xf1\x49\x4e\x9f\xbf\xc0\ \xe8\x50\x1f\x9b\x47\x47\xd8\xb5\x6d\x23\x27\x4e\x8d\x91\xc9\x66\ \xeb\x0b\x1f\x85\xeb\x38\x74\x75\xb4\x31\x37\xb7\xf8\x35\xbd\x6f\ \x70\xa7\xd6\x92\xea\xfb\x60\x77\xdf\xfa\xae\x9a\xeb\xe2\x4a\x85\ \x44\xd5\xdd\x5d\xcf\xbd\x1a\xab\x23\x7f\x03\x38\xe1\x01\x6e\xd4\ \x4b\x5e\x2a\x05\xdb\x51\x04\xfc\x26\x03\xdd\xcd\xdc\xb6\x63\x80\ \x7f\x75\xd7\x4e\x7e\x6d\xf7\x16\x7a\x3b\x93\x2c\x64\x0b\x7c\xef\ \xfb\x47\x79\xf6\xe0\x51\xa6\x66\xe6\x41\x29\x94\x52\xd8\xb6\x22\ \xd5\x92\xe0\x7d\xbf\x7e\x33\xb1\x68\x13\xff\xe7\xdb\xcf\x62\xd7\ \x6a\xdc\xbc\x7d\x0b\x7b\x6e\xda\xc6\xf4\xb5\x6b\x4c\x4e\x4d\x7b\ \x01\x2d\x1d\xd5\xd9\xd9\x25\x66\xaf\xcd\x7c\x59\xbc\xfb\xbd\x7f\ \x68\x44\x5b\x07\xfe\x21\x3a\xf2\xde\x0f\x05\x4c\x45\xc4\x6f\x10\ \x0d\x18\x44\xfc\x1a\x91\x80\x46\x24\xa0\x13\xf2\x69\x98\x86\xc0\ \x32\x04\x96\x29\xb0\x0c\x0d\x9f\xa5\x79\x69\xd0\xd4\xf1\x59\x02\ \xbd\xce\x0c\xe5\x85\xcf\x6a\x0d\xd4\xe8\x6b\x1a\x18\x3a\x98\x06\ \xd8\x0e\x8c\x4f\xce\x71\xfc\xd4\x38\x47\x4f\x9c\xc5\xb1\x6d\xd6\ \x0f\xf6\xb0\x79\x7d\x1f\xf1\x58\x84\x44\x53\x8c\xd6\x64\x8c\xd3\ \x63\x17\xb9\x34\x75\x85\x1d\x9b\x37\x20\x10\x3c\xf2\x95\xff\xc9\ \x37\x9e\x7c\x8a\x7c\x36\xc3\x3b\xde\xb1\x87\xb7\x8e\xbf\xd8\x6f\ \x4c\x4e\x4f\xcb\x48\x45\x3f\xbd\x71\xd0\x65\x62\xb1\xa2\x84\x40\ \x28\x05\x52\xba\xf5\x8d\x28\x1b\x43\x73\x09\x9a\x82\xb0\x4f\x10\ \xf6\x0b\xc2\x7e\x9d\x48\x40\x27\x12\x34\x88\x06\x4d\xa2\x21\x93\ \xa0\xdf\x20\x60\xe9\xf8\x2d\x1d\xbf\xcf\xc0\x6f\x99\xf8\x7d\x06\ \x01\x9f\x89\xdf\x67\x62\x19\x1e\x10\xdb\xf1\x68\x37\xd2\x9f\x62\ \x74\x28\xc5\x47\x3f\xb8\x87\x7c\x51\x71\x6a\xec\x22\x27\xcf\x8e\ \xe3\xd8\x36\xa9\x96\x04\xbd\x5d\x6d\xc4\x63\x51\x5a\xb6\x6e\x26\ \x57\x28\x10\x0e\x05\xf9\x0f\x9f\xfe\x14\x5d\x1d\x69\x1e\xf9\xbb\ \xc7\xb0\x2c\x6b\x31\x16\xb6\xb2\x02\xa0\x67\xeb\x6f\xee\xbd\xeb\ \x83\x9f\xf9\xa7\x82\x8c\xa0\x94\x44\x2a\x85\xeb\xba\x38\xb6\x8d\ \xe3\xd4\xb0\x1d\x1b\xbb\x66\x63\xdb\x55\x6a\xb6\x8d\xeb\xd8\xb8\ \x4e\x6d\x15\xa0\x94\x36\x96\x01\x61\x9f\x4e\xd8\xaf\x13\x0e\x18\ \x84\x03\x26\xe1\xa0\x49\x24\x68\x11\x09\x58\x44\x82\x3e\x42\x41\ \x8b\x50\xc0\x47\x28\xe0\x23\x1c\xf4\x11\x0e\xfa\x09\x87\xfc\x44\ \xc3\x21\xe2\x51\x0b\x9f\xcf\xf3\xda\x7c\xa6\xca\xdb\x97\xa6\x10\ \x40\x34\x12\x26\x1e\x8b\xd6\x29\xac\xd3\x14\xf3\xf1\xed\xa7\x0f\ \xf0\xec\x81\x97\xf7\x5f\xbe\x38\x76\xaf\x01\xb0\xbe\x2f\x35\x96\ \xd0\xb2\x85\x77\xdf\x34\x12\xb3\x6d\x1b\x85\x42\x2a\x85\x94\x2e\ \x52\x4a\xa4\xf2\xce\xae\x74\x3d\xcf\xb8\x2e\x8e\xeb\xe2\xd6\x77\ \xde\x1c\xd7\xc1\xb1\x6d\x6a\x75\xa0\xb5\x9a\x4d\xcd\xae\x51\xad\ \xd5\x58\xc8\x16\x99\xae\x55\x71\x1d\x07\xcb\xd0\xb0\x4c\x1d\x9f\ \x59\x3f\x5b\xf5\xc3\x34\xf0\x5b\x06\x01\xbf\x45\x28\xe0\x27\x1c\ \x0a\x12\x0d\x07\x09\x05\x03\x28\x29\x59\xcc\xe7\x49\x34\xc5\x08\ \x06\x02\xd4\x6a\xa8\xf7\xdd\x7d\xa7\x78\xea\xb9\x83\x07\x66\x0b\ \xca\x31\x00\x32\x8b\xa5\xc2\x72\x76\x72\xff\x96\xee\xbd\xf7\x39\ \x8e\x5f\x69\x1a\xa2\x91\x8d\x1a\xb5\xc9\xda\x00\x56\x8d\x4d\x49\ \x05\x08\x2f\x08\x15\x0a\xa5\xa4\x97\x04\xa4\x44\xd6\xcf\xae\x94\ \xde\xd9\x95\x38\xab\xc0\x5d\x1c\xc7\xc5\x71\x1c\xef\x9a\xe3\x60\ \x3b\x0e\xba\x26\xf0\xfb\x2c\x02\x3e\x1f\x7e\xbf\x85\xdf\x67\x61\ \x59\x16\x3e\xcb\xc4\x32\x4d\x84\x10\x18\x06\xe2\xd8\x9b\x6f\x53\ \xc8\xcd\xbe\x38\x75\xf2\x9b\xca\x00\x38\xfe\xd2\x63\xe5\x81\xde\ \x9e\xc7\xcf\x5f\xba\x76\x5f\x7f\x57\x9b\xb0\x5d\xd0\x14\x08\x59\ \x37\x5a\x5e\x4f\xa9\x6b\x81\x78\x2b\x26\x81\xd0\x45\xfd\x9a\xfe\ \xd3\x37\x5f\x1b\xe5\xf2\xda\xe7\x35\xea\x19\x8e\xd5\x25\x68\xa1\ \x04\xb3\xf3\x19\xae\xcd\x2d\x50\x5c\x5a\x22\x1a\x0a\xd1\xd4\x14\ \x21\x99\x48\x90\x6a\x0d\xa9\xa5\x25\x57\xbc\x7a\xf4\xf8\xe1\x70\ \x28\x74\x09\xa0\x31\x45\xca\x7c\xb1\x74\xfc\xad\x33\xa7\xce\x0d\ \xf7\xb7\xad\xaf\xd5\x1a\x53\xda\x1a\x43\xc4\x4f\xde\x1a\xf6\xb2\ \x8e\x42\x29\x6f\x01\x24\x34\xd6\xd4\xee\xd7\xbd\x28\x04\x38\x2e\ \x64\x72\x65\xe6\xb3\x79\x66\x17\x16\xb9\x36\x97\xe5\xda\x5c\x86\ \xab\x73\x73\x94\x4a\xcb\x44\x42\x7e\xda\xd3\x49\xfa\xbb\xdb\x19\ \xe8\xed\x62\x78\xa0\x97\x70\x30\xc0\xf2\x4a\x99\x57\x8e\x1e\xe7\ \x3b\xcf\x3c\x87\xed\x28\xa6\x67\xae\x3c\x76\xfc\xd8\xd1\x25\x00\ \xa3\xa1\x8c\xbc\xf0\xe4\x43\x33\xfd\xbd\x7d\x8f\x5e\xb9\x9a\xfd\ \xcb\xf6\x54\xb3\x58\x0b\xa1\xb1\x6d\xe2\xd5\xe4\xf5\x91\xd3\xaf\ \x8f\xa6\xa1\x7b\x37\x16\x97\x6d\x16\x72\x4b\xcc\x2f\x96\x98\x5f\ \x2c\x32\x9f\x2d\x30\x9f\xc9\x71\x75\x21\xc7\xec\x5c\x96\xcc\x62\ \x8e\x4a\xb5\x82\xcf\xd4\xe8\xeb\x6c\x65\xb0\xa7\x8d\xe1\xde\x0e\ \xf6\xbe\x73\x1b\xed\xa9\x24\xba\xa6\x61\x9a\x06\x01\xbf\x0f\x85\ \xe2\xf5\x37\x4e\xf2\xe4\x33\xfb\x79\xf9\xb5\xd7\xc9\x66\x32\xca\ \xb1\xab\x62\xe3\xe8\xc6\xd3\xb1\x48\xec\x07\x2c\x8f\xbb\x00\xc6\ \x1a\x59\xc7\x7e\xf3\xd4\xe9\xfd\x83\xfd\xc3\x27\xbb\xef\xda\xb7\ \xc5\x95\x28\x4d\x43\x68\xf5\x99\xb7\x62\x3b\xe4\x96\xaa\xe4\x8a\ \x65\x16\x4b\x2b\x64\x0a\xcb\x64\xf3\x4b\x2c\xe4\x4b\xcc\x67\x8b\ \x64\x72\x25\x2a\xd5\x2a\xd2\xb1\x71\x5d\x7b\x35\x43\xf9\x4d\xc1\ \x40\x57\x92\x9b\xb6\x0c\x32\xd2\xdb\xc6\xba\xfe\x0e\x3a\xd2\xcd\ \xe8\xba\xe6\xed\x3a\x08\xd0\x34\x6d\x95\x46\xc7\x4e\x8c\xf1\xdd\ \x17\x0e\xf2\xc2\xf7\x5f\x66\x21\x93\x41\xd6\x7f\xab\x5a\x2d\x8b\ \xcd\x1b\x36\x50\xab\x96\x1f\x39\x72\xe0\xb1\xe9\x86\xd1\xc6\x5a\ \x46\x1c\x39\xf0\xd7\xe7\xb6\x6e\xda\xf4\xa5\x6f\x1e\x6c\x79\xac\ \x66\x34\x8b\xc5\xe2\xb2\x5a\x2c\xae\x88\x4c\x71\x85\x72\xa5\x5a\ \x2f\x67\xbd\xbd\x7d\x25\xd7\x1e\x2e\xca\xb5\x89\x04\x2d\x7a\xd3\ \xad\x0c\x76\x37\x33\xd4\x95\x64\xa8\x37\x45\x57\xaa\xe9\xc7\x27\ \xb7\x7a\xf9\xa1\x94\x37\x7b\x9f\x1e\xbb\xc8\xb3\x07\x5f\xe1\xe9\ \xfd\x2f\x71\x6d\x76\xb6\xbe\xc3\xed\x34\xb2\xa0\x72\xa5\x2b\xd2\ \xad\x2d\x98\x86\xf1\x7c\x30\x10\x7c\x0e\x70\x7e\x2c\xc6\xac\xee\ \x0f\x51\x9b\xfa\x3a\xe8\x4d\xad\xf7\xdc\xff\xf0\x17\x83\xa9\x2d\ \xff\xa6\x58\x91\x48\xd7\x56\x4a\x3a\x42\x53\x2e\x82\xeb\x47\xc0\ \x14\x74\xa7\x22\xf4\xb5\xc5\x18\xe8\x88\x31\xd8\xdd\x4c\x2a\x11\ \x44\x13\xe0\x7a\x05\x24\x52\x5d\x37\xb8\xd1\x6a\xb6\x83\x6d\x3b\ \x4c\xcd\xcc\x71\xe0\x95\x37\x78\xe6\xc0\x61\x2e\x4d\x4d\x83\x72\ \x11\x42\xb1\x56\x28\x51\xae\xad\x5c\xd7\x16\x42\x29\x46\x86\x87\ \x16\xda\x5b\x9b\x3f\xfc\xcc\xe3\x0f\x3f\xbf\xf6\xf7\x56\x3d\x50\ \x9b\xfa\x3a\x2f\x39\x8a\xdb\x0d\x31\x3f\x77\xf6\x85\xbf\xec\x0e\ \xc4\xd6\x27\x9b\x07\x76\x28\xa5\x89\xa0\xe5\x57\x6d\x09\xbf\xe8\ \x4a\x06\xe9\x6a\x0d\xd1\x93\x8a\x90\x6e\xf6\xad\x66\x0e\x05\xf5\ \x1a\xc8\x1b\x59\x51\x8f\xfa\x46\xa6\x5a\xa9\xd4\x58\x5a\xa9\x30\ \x97\xc9\x73\xf8\xf8\x19\x5e\x3c\x74\x9c\x73\xe3\x93\x48\xd7\xc6\ \xd0\xc0\xb2\x4c\xa4\x2b\x3c\x55\xa7\x01\xb8\xee\x20\x81\x60\x70\ \xa0\xcf\x4e\xc6\x9b\x3e\xff\xcc\xe3\x0f\xef\x07\x10\x46\x04\xe5\ \x94\x7e\x9c\x42\xb7\x1b\x9e\x43\x8e\xbf\xf2\x8d\x37\xf4\x60\xcb\ \x83\x1f\xba\xaf\xe3\x2f\xf6\xee\xde\xde\xdb\xda\x64\x7a\x5b\x64\ \x20\x1a\x34\x28\x57\xaf\x2f\xec\x1b\x9b\x53\x20\x30\x74\x81\xd0\ \x60\x69\xd9\x26\x9b\x5f\x62\x3e\x5b\xe0\x87\x67\x27\x38\x74\xec\ \x2c\x27\xcf\x5e\xc0\xb6\x6b\x98\x3a\xf8\x2c\x03\x29\xa9\xcb\x4d\ \xf5\xa2\x09\x89\xc2\x5b\x01\x29\x25\x11\x02\xd1\xd5\xd9\xe9\x26\ \x13\x89\xaf\x1c\x3a\xfc\xfd\xaf\x00\x32\xd4\x7e\x2b\xcb\x57\x0f\ \xf1\x13\x63\x60\xad\x26\xf5\xfa\x8b\xff\xfd\x3b\x5d\xe9\xe6\x48\ \x57\x6b\xe8\xc1\xd0\xc6\x0d\xdd\x86\xe1\x95\x9c\x9a\x86\x68\xec\ \xaa\x35\xd2\xab\xa1\x0b\x0c\x1d\x96\xca\x2e\x53\x0b\x05\x66\xe6\ \x72\x9c\x99\x98\xe6\x8d\xd3\x17\x39\x71\xee\x22\x95\x4a\x05\x5d\ \x53\x58\x96\x81\xa9\x83\x2b\xeb\x46\xd7\xdd\xa7\x1a\xc3\xed\x8d\ \x8e\x52\x4a\x0a\x01\x74\x76\xb4\xbb\xed\xa9\xd6\x7f\xbc\x74\xf1\ \xfc\x7f\xad\x2c\x9c\x2a\xdc\xfe\x1b\x9f\xe3\xa5\x6f\x3f\xf8\xff\ \x50\x68\xdc\x32\x5a\xa8\x1b\x65\x17\x38\xfb\xd6\x4b\x6f\x15\x6a\ \x91\x99\x78\x53\xd3\xe6\xb6\x74\x2a\x69\x99\x9a\x00\xa5\x84\x10\ \xc2\x34\x04\x3e\x4b\xe0\xba\x30\x79\x2d\xc7\xf1\x33\x33\x1c\x78\ \x7d\x8c\xa7\x0e\x9e\xe0\xf1\xe7\x8e\x72\xe4\xe4\x38\x73\x99\xbc\ \xb7\xa2\xd3\xbd\x14\xdc\xd0\xc9\xf8\x31\xe5\xe6\xba\x8e\xe6\xba\ \x8e\xd0\x34\x8d\x81\xde\x2e\xbb\xb5\x39\xfe\x77\x97\x27\xce\xff\ \xa7\x89\x53\xcf\xcf\x7e\xf4\x73\xcf\xf3\xe4\xa3\x1f\xff\xe7\x49\ \x4c\xca\x2e\xac\x6a\x52\x13\xe7\x5e\x39\x3b\x5b\xd4\xce\x98\x86\ \x95\x6e\x4e\x24\x06\x9b\xe3\x41\x21\x40\x5d\x9e\x2d\x88\xd7\x4e\ \x4d\xf3\xfc\x6b\xe7\x79\xe1\x95\x31\x9e\x3b\x7c\x86\xa3\xa7\x26\ \x99\xcb\x16\x40\xc9\x35\x46\x37\xe4\xa6\x35\x3a\x59\x1d\x88\xbc\ \x41\x3b\x73\x95\x63\xdb\xa2\x39\x11\xa3\xa7\x23\x9d\x69\x8e\x85\ \xff\xcb\x4b\x2f\x3d\xff\xd0\xc2\xe5\x23\xd9\x07\x3e\xf7\x3c\x5f\ \x7d\xf0\xae\x9f\x5f\x66\xd5\xfc\x69\x64\x65\xd6\x43\x9a\xd8\xd5\ \xf7\x47\x9f\xfa\xe4\x47\x86\x87\x46\x7e\x3f\x53\x0d\x37\xfd\xf0\ \xed\x6b\xcc\x65\x72\x2a\x5f\x5c\x12\x4a\x7a\x99\x09\xd9\x90\x51\ \xeb\x52\xaa\xac\xcb\xac\x0d\xbd\x78\x8d\x04\xdb\xe8\xbb\x8e\xad\ \xec\x5a\x15\xcb\xd4\x45\x5f\x67\x1b\x28\xe7\xf9\xd6\x78\xe8\xaf\ \xbe\xfb\xf5\x87\xf6\x03\xf2\x27\xd1\xe6\xe7\x13\xba\x1b\xa9\xc6\ \x6b\x81\xf7\x7f\xe4\x4f\x77\x64\x56\x8c\x8f\xc7\x9a\xbb\xfe\xb5\ \x63\x44\xb4\xd9\x85\x3c\xca\xb5\x95\x52\x0e\x4a\x3a\x62\xad\xb0\ \xed\x69\xc5\xf6\xaa\x56\x2c\x5d\xdb\x3b\xd7\x05\x6f\xc7\xb6\x45\ \xc0\x6f\xd0\x95\x6e\xc1\x32\xd4\xe9\xe5\x62\xee\x11\xbf\xcf\x7a\ \xee\xd0\x73\x7f\x7b\x05\xe0\x47\x03\xf6\x97\xfa\xd4\x60\xdd\x3d\ \x8f\x32\xf6\xcc\x27\xbc\xfe\xf6\x7b\xe2\xa9\xce\x91\xf5\xe8\x81\ \x0f\xb7\xa4\xbb\xdf\xaf\xcc\x48\x72\x21\x5f\x61\x31\x5f\xac\xe7\ \x71\x1b\xe9\xda\xca\x75\x1d\xb1\x2a\x7a\x4b\xc7\x53\xe8\xeb\xa9\ \xb3\xbd\x35\x4e\x24\x60\xa2\xdc\xea\xe1\x85\xb9\x99\xc7\xd2\xad\ \x89\x1f\xbc\xf0\xed\x2f\x4d\x37\x26\x29\x61\x46\x50\x76\xe9\x57\ \xfc\xad\x84\xd0\xea\xca\xa2\xd7\xb6\xef\xf9\x60\x40\x33\xac\x64\ \x7e\xd9\xbe\xa9\xbf\x7f\xe8\x3d\x91\x68\x72\x8f\x8b\x35\xa2\x99\ \x16\x9a\xf0\xca\x03\xe9\x38\x48\xe5\xe2\xd4\xaa\x38\x4e\x0d\xa1\ \xaa\x8b\x9a\xb4\x8f\x4f\x4f\x5f\x39\xb0\x30\x3f\xf3\xe2\xe8\x70\ \xff\xa5\x43\x87\x0e\x2e\x95\x17\xcf\xbb\xff\x7f\x3e\xf6\xf8\x11\ \x10\x00\xfe\xe4\x66\xb1\x63\xdb\x36\x2d\xbf\x78\xcd\x9a\xbf\x3a\ \x11\x2e\xab\x68\xa7\x2b\x42\x6d\x68\x7a\x14\x84\x86\x92\x55\x21\ \x2b\x0b\x86\x9b\xbb\xd2\x14\x09\x64\xdb\xbb\xd7\x95\x73\xc5\xb2\ \x7b\xfe\x87\x4f\xff\xc2\x5f\xa9\x34\xda\xff\x05\xeb\xf4\xfe\x61\ \x5d\x31\xd7\x2e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\xc8\x95\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x36\x35\x48\x76\x47\x2d\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xec\x7d\x77\x7c\x5c\x67\x95\xf6\x73\xde\x3b\x33\xea\xbd\x4b\ \xb6\x25\x59\xee\x2d\xae\xb1\x9d\xde\x1b\x09\x04\x48\x80\x2c\xbb\ \x84\x92\xc0\xb2\xd4\x65\x29\x0b\x84\xb6\x2c\x01\x76\xe9\x6d\xe9\ \xed\x5b\x02\x4b\xdb\x0d\x10\x08\x4e\x4f\x9c\xea\x1a\xf7\x26\x5b\ \x96\x6c\xc9\x92\xd5\xfb\x94\x7b\xcf\xf7\xc7\x6d\xef\xfb\xde\x3b\ \x6a\x96\x9d\x84\x68\xf8\x09\x39\xa3\x3b\x33\x77\x66\xee\x69\xcf\ \x79\xce\x73\x80\x99\xdb\xcc\x6d\xe6\x36\x73\x9b\xb9\xcd\xdc\x66\ \x6e\x33\xb7\x99\xdb\xcc\x6d\xe6\xf6\x32\xba\xd1\xcc\x47\xf0\x37\ \xfd\x5d\xd2\x04\xff\x9b\xb5\xfb\xc7\xfb\xef\x74\xf7\xcd\xdc\x66\ \x1c\xc0\xcc\xed\x1c\x7d\x67\xa4\xfd\x08\xed\xb7\x11\x72\x7f\xd8\ \xe3\x5d\x63\x66\xcd\xb0\x2d\xe7\xdf\xee\x6f\x53\xfb\x6f\x4b\x7a\ \x5c\xd8\xe3\x67\x6e\x33\x0e\x60\xe6\x36\x8d\x86\x2e\x9c\x1f\xc3\ \xf9\x1d\x91\x7e\xa2\xd2\x8f\x7b\x9f\xa1\x1d\x23\x42\x9c\x84\xee\ \x00\x64\xe3\xb6\x00\xa4\xa4\x1f\x53\xfa\x77\x52\xfa\x91\x8f\xb1\ \x9c\xe3\x2c\xcd\x41\xcc\x38\x86\x19\x07\x30\x73\x9b\xc0\x77\xe1\ \x7e\x1f\x86\x66\xc0\x51\x00\x19\xd2\x4f\x16\x80\x4c\x00\x39\x10\ \x19\xf9\x10\xd1\x5c\xa2\x48\x2e\x84\x91\xc3\x46\x4e\x09\x45\xb2\ \xcb\xc9\xc8\x2a\x63\x91\x51\x4c\x46\x46\x09\x44\x46\x21\x48\xc4\ \x00\x11\x05\x51\x04\x24\x22\x80\x10\x20\x27\x29\x60\x0b\x80\x65\ \x81\xad\x14\x98\x53\x0c\x2b\x49\x6c\x25\x60\xc5\x7b\xd9\x8c\x77\ \xc3\x8a\x77\xc1\x1c\x39\xcd\xa9\xe1\x0e\x32\x87\xba\x60\x99\x43\ \xcc\xa9\x41\x58\xc9\x41\x58\xf1\x7e\x00\x43\x00\x46\x01\x8c\x00\ \x88\x4b\x3f\x49\xcd\x81\x98\x21\x19\xc7\xcc\x6d\xc6\x01\xbc\xec\ \x23\xbc\x6c\xf0\x19\x8e\x71\x67\x03\xc8\x91\x7e\xe7\xc0\xc8\x9a\ \x2d\x72\xeb\x56\x52\x46\xc9\x42\x8a\xe4\xd6\x58\x30\xf2\x2d\xd3\ \x8a\xc2\xe2\x18\x2c\x8e\x00\xc2\x28\x2a\x2f\x41\x75\x45\x29\xaa\ \xca\x8b\x51\x5d\x5e\x8a\xca\x8a\x12\xd4\x54\x96\x22\x3f\x37\x1b\ \x19\x19\x19\xc8\xce\x88\x21\x33\x2b\x86\xec\x8c\x0c\xc4\x62\x51\ \x80\x80\x64\x22\x89\xe1\x78\x1c\xa3\xa3\x09\x8c\x8c\x26\x30\x1a\ \x8f\xa3\x7f\x70\x18\xad\xed\x9d\x68\x6d\xef\x42\x5b\x7b\x27\x5a\ \xdb\xbb\xd1\xd6\xd1\x89\xee\xf6\x2e\x00\x96\x09\x41\x29\x08\x4a\ \x08\x43\x24\x05\xcc\x7e\x4e\x0d\x9e\xe4\x78\xd7\x41\x6b\xb0\x69\ \x27\xcc\x91\x16\xc7\x29\x0c\x01\x18\x96\x7e\x8f\x3a\x8e\x41\x76\ \x08\x33\x19\xc2\x8c\x03\x78\xd9\x45\x79\x37\x95\x8f\x02\x88\x69\ \x06\x9f\x07\xa0\x4a\xe4\xd6\x2d\xa7\x58\xf1\x3c\x93\x32\xe7\x02\ \xb1\x39\x40\xac\x22\x96\x57\x20\x6a\x6b\x2a\x50\x37\xab\x12\x95\ \xe5\x25\x98\x53\x5d\xce\x73\x67\x57\x51\xdd\xec\x2a\xd4\xcf\xae\ \xc4\xec\xea\x4c\x8c\x26\x80\xfe\x21\xa0\x7f\x28\x81\xfe\xc1\x51\ \xf4\x0f\x8e\x62\x38\x9e\x40\x2a\x65\x22\xa9\xfd\x24\x92\x29\x80\ \x81\x48\x54\x20\x66\x18\x88\x44\x04\x22\x86\xfd\x93\x11\x8b\x20\ \x2f\x27\x13\xf9\x39\x99\xf6\xef\xdc\x4c\xe4\xe7\x00\x39\xd9\x40\ \xcb\xc9\x51\x1c\x6d\x6e\xc3\xb1\x96\x36\x1c\x6d\x3e\xc5\x2d\xad\ \x1d\xd4\xd6\xd1\x85\x63\x2d\xa7\xd0\xd4\xd2\x8e\xc4\x60\x9f\x05\ \x24\xda\x81\x44\xb3\xc1\xa3\x47\x39\xd1\x7d\xc4\x1a\x6c\xda\x0d\ \xa0\x0d\xc0\x80\xe6\x10\x12\x4e\xa6\x60\x86\x94\x0d\x33\xb7\x19\ \x07\xf0\x37\xf1\xf9\x8a\x34\x11\x3e\x17\x40\x21\x28\x5a\x0a\x11\ \x29\x17\xb9\xb5\xeb\x29\xab\xe6\x72\x11\x2b\x9c\x13\x8d\x46\x90\ \x19\x8b\x62\xcd\xf2\x85\x7c\xf9\x85\x6b\xe8\xf2\x8d\x6b\x30\x77\ \x4e\x39\x52\x26\x90\x4c\x59\x30\x4d\x0b\x27\x3b\xfb\xb1\xbf\xa9\ \x13\xfb\x8e\x75\xa0\xb9\xbd\x0f\xad\x9d\x03\x48\x25\x4d\x10\xb1\ \xf3\xe2\x6c\x9f\x01\xdb\x01\x96\xc0\x60\xb6\xff\xc6\xcc\x20\x72\ \x32\x7f\x02\xd8\xb2\xed\xce\xfe\x3b\x83\x2d\x86\x05\x0b\xb0\x18\ \x16\xdb\xf7\xb3\x65\x41\x18\x02\x4b\xe7\x56\x60\xc5\x82\x1a\x2c\ \x9f\x5f\x83\xc5\xf5\x15\xc8\x88\x45\x10\x89\x44\x10\x8d\x10\xa2\ \x11\xe0\x70\x53\x07\x1e\xde\xbc\x1d\x0f\x3d\xb9\x95\xb7\x3c\x7f\ \x90\x46\xe3\x49\x24\x93\x29\x58\x89\xde\x66\x1e\x3e\xf9\x88\x35\ \x74\xfc\x59\x58\xa9\x0e\x70\xb2\x13\x40\x2f\x80\xc1\x34\x19\x82\ \x35\x93\x1d\xcc\x38\x80\x97\x72\xa4\x77\xa3\x7c\xa6\x13\xdd\x0b\ \x9c\x08\x5f\x00\x23\x7b\xbe\x28\x58\x74\xa9\xc8\x28\x5d\x99\x4a\ \x51\x29\x4c\xe4\xd7\xcd\xaf\xa7\x9b\xaf\xb9\x04\x57\x5f\xbc\x8e\ \x67\x57\x95\x51\x75\x45\x01\xda\x7b\x92\xd8\x71\xe8\x14\xb6\x1f\ \x6a\xc3\xa9\xae\x01\x0c\x8f\x24\x31\x34\x9a\xc0\xe0\x48\x02\xa6\ \x69\x82\xc8\x79\x31\x72\x8c\x1a\x00\xc3\x02\x18\x60\x30\x60\x31\ \x98\x00\x62\x0b\x16\x18\xe4\x38\x03\xcb\xb2\x1d\x00\x5b\x96\xfd\ \x04\x16\x83\xc1\x60\xb6\x1d\x87\x05\xcb\x3e\x96\x19\x16\x31\xc8\ \xb2\x9f\x97\x3d\x67\xc0\xb0\x2c\x0b\x20\x46\x76\x46\x0c\xb9\x39\ \x31\xe4\x66\x65\x20\x3f\x37\x13\x0b\xeb\x2a\xb1\x64\x6e\x15\x96\ \x34\x54\x63\x4e\x55\x2e\x5a\xdb\xfb\x71\xfc\x64\x07\xdf\xff\xe8\ \x16\xfa\xfd\x5f\x1e\xc7\xb1\xc3\xc7\x18\x06\xfa\x8d\x08\x77\x72\ \xbc\x73\xa7\xd5\x77\xe0\x31\x98\xc3\x87\x01\xf4\x39\x19\x42\x9f\ \x84\x2b\x24\xa5\x52\x61\xc6\x11\xcc\x38\x80\x97\x44\x7a\xef\x82\ \x76\xd9\x8e\xd1\x17\xc1\xc8\x6e\x10\x39\x73\xd6\x58\x91\xc2\x75\ \x30\xf2\xce\x8b\xe5\x14\xe6\x34\xcc\xa9\xc6\x82\xfa\xd9\xb8\xf2\ \xa2\xb5\x7c\xf5\xc5\xe7\x93\x88\x66\xe1\x78\x5b\x0f\x0e\xb5\x74\ \x62\x7f\x53\x17\xf6\x37\x75\xa2\x6f\x78\x14\x11\x41\x88\x18\xc2\ \x8b\xea\x9e\x71\x02\xb0\x2c\x0b\x44\xb6\xe1\xda\xe6\x61\xa9\x86\ \x6c\x59\x4e\xa4\x87\xfd\x38\xb8\x0e\x00\x20\xd7\xa0\x09\x20\xcf\ \x01\xd8\x4e\xc4\x7f\x0d\xc9\x59\xb0\x93\xa1\x3b\xce\xc5\x3b\xd6\ \x7b\x0d\x86\x05\x86\x69\x9a\x48\x99\x26\x52\x29\x13\x39\x59\x31\ \x6c\x5c\xd1\x80\x0b\x56\xcf\xc7\x92\x86\x6a\x2c\xa8\x2b\x45\xff\ \x40\x1c\x7f\x7e\xf8\x19\x7e\xe0\xf1\xad\x74\xa0\xb1\x05\x47\x8e\ \xb7\x22\x31\xd4\x3b\x04\x73\xe0\x79\x91\xea\xdd\x62\x0d\x35\x6f\ \x83\x39\xdc\x08\xa0\xc7\x71\x06\xc3\x12\xa8\x38\x53\x26\xcc\x38\ \x80\x17\xdd\x67\xe8\xb6\xe5\x62\x8e\xd1\xe7\x03\x28\x01\x50\x81\ \x68\xc1\x42\xa3\x78\xd5\x9b\x44\x46\xf1\x52\xcb\xb2\x70\xd9\xc6\ \x35\xfc\xa6\xd7\xbe\x82\x2e\x59\xbf\x0a\x44\x40\x67\xdf\x30\x36\ \x6d\x3d\x8e\x87\xb7\x37\x21\x91\x34\x1d\xf3\xb4\x23\xb5\x1d\x71\ \xe1\xa5\xee\xf6\xbf\xd3\x47\x72\xcf\x90\x29\xcc\x01\xb0\xf7\x38\ \x86\x6e\xc8\xae\x33\x70\xb3\x08\xfb\x08\x62\xb6\xff\x65\x31\x40\ \x64\x67\x0b\x60\xc0\x71\x1a\xde\xb1\x16\x6c\x27\xe4\xfd\x9d\xfc\ \xd7\x00\x83\x2d\x80\x9d\x72\xc3\x02\x63\x51\x5d\x25\x5e\x7d\xd5\ \x5a\x5c\x7d\xc1\x52\x44\x0c\x03\x00\xf0\xc8\x93\x3b\xf0\xa3\xff\ \xb9\x8f\x1f\xda\xbc\x8d\x84\x10\xb0\xe2\xdd\x7b\xcd\xee\x1d\x3f\ \x47\xb2\xef\x20\x80\x76\x00\x5d\x00\xfa\x1d\x67\x90\x80\xdf\x76\ \x9c\x71\x04\x33\x0e\xe0\x05\xb9\xb9\x46\xef\xa6\xf8\xf9\x00\x8a\ \x00\x14\x51\x46\xc9\x6a\x51\xb0\xf8\x15\x26\x67\x2d\x05\xc5\x4a\ \x6f\xbe\xe1\x4a\xbc\xfe\xa6\xab\xb0\x61\xd5\x12\x8c\x24\x09\x9b\ \xb6\x1c\xc3\xbe\xa6\x4e\xb4\x76\x0f\xa1\xbb\x7f\x04\x06\x01\x24\ \xe0\x18\x27\x87\x3a\x00\xd7\xd0\xc1\x7e\x06\xc0\x4e\xad\x2e\x3b\ \x00\x78\xb5\xbc\xf3\x38\xb6\x9c\xbf\xab\xcf\xeb\x1e\x83\x90\x6c\ \x81\x59\x3b\xd6\x29\x23\xdc\xe7\x06\x43\x3d\x07\x96\xca\x09\xe9\ \x79\xf5\x63\xed\x73\xb7\xcf\x39\x65\xa6\x40\x04\xcc\x2a\x2f\xc6\ \x9c\xea\x12\xac\x5f\x31\x0f\xd7\x5e\xbc\x02\xf9\x39\x99\xd8\xfc\ \xdc\x6e\xfc\xe2\x7f\x1f\xc4\x6f\xef\x7d\x08\x40\xa2\xd3\xa0\x91\ \xbd\x56\xdf\xfe\xfb\x38\xde\xb5\xdd\xc9\x0a\x7a\x1c\x67\xe0\x96\ \x08\x29\x09\x2f\x98\xb9\xcd\x38\x80\xb3\x9e\xe6\xbb\x60\x5e\x9e\ \x63\xf4\x65\x88\x15\x2f\x12\x99\xe5\x6b\xac\xcc\xea\x57\x64\xe6\ \x94\x56\x35\xd4\x56\xe3\xe6\x6b\x2e\xe3\x3b\x6e\x7b\x15\xf5\x8f\ \xa4\xb0\xfb\x68\x07\xee\x7f\xee\x38\x0e\x9f\xec\x41\x46\x54\xc0\ \x20\x72\x22\x32\x07\x0c\xd9\x47\xbd\x82\x0e\x80\x2d\x4b\x32\x4e\ \x3f\x1a\x43\xca\x00\xe4\x48\x1f\x38\xd6\x29\x13\x9c\x7f\x68\xd9\ \x84\xef\x2c\x7c\x43\x76\x8e\x25\xd8\xe7\x10\xe2\x00\x02\xc7\xb2\ \xf3\xbc\x61\xce\xc2\x2b\x27\x1c\xbe\x11\x03\x16\x33\x52\xa9\x14\ \x46\x46\x13\x58\xbd\xa4\x0e\x6f\x79\xed\x65\x58\xbd\xa4\x1e\x85\ \xf9\x19\xf8\xc6\x8f\xee\xe5\xdf\xde\xf7\x28\x1d\x39\xde\x8a\x91\ \x81\xce\x36\x11\x6f\xbd\xcf\x1a\xed\xd8\x86\x44\xf7\x01\x00\xa7\ \x1d\x67\x30\x20\x81\x87\x33\xe5\xc1\x8c\x03\x38\x2b\x37\xb7\x57\ \x9f\xe5\x18\x7e\x19\x80\x6a\xca\x9e\x7d\x91\x51\xb8\xe4\x1f\x2c\ \xca\xac\x8c\xc5\xa2\xc6\xbb\xdf\xfc\x06\xdc\xfe\xda\x1b\x90\x91\ \x11\xc3\x03\xdb\x4f\xe0\xaf\x5b\x9a\x31\x12\x4f\x20\x65\x5a\x1e\ \xfa\xae\xd7\xf2\x2e\x58\x07\x29\x8a\xba\x46\x04\xb6\xd3\x6b\xdd\ \x38\x3d\x90\x4f\x32\x22\x78\x0e\x40\x35\x4e\x1f\x10\xb4\x1c\x43\ \xb6\x53\x7e\xcf\x38\x5d\xe8\xd0\xc5\x13\x2c\x78\xa9\xbe\x05\xe9\ \x58\xb6\x00\x22\xe9\x35\xd8\xb1\x34\xe9\x58\xef\x35\x9c\xd2\x43\ \x77\x16\x4a\x36\xe1\x3c\x2f\x31\xc8\x62\xef\x71\x00\xc3\x10\x02\ \x75\x35\x65\xf8\xd0\x1d\xaf\xc4\x79\x8b\x66\xa3\x6f\x60\x04\x3f\ \xfa\xe5\x9f\xf1\x95\xef\xff\x0a\xf1\x44\xd2\x14\x3c\x7a\xca\xec\ \xdd\xf7\xff\x78\xb8\x65\x33\x80\x56\xc7\x19\x0c\xc0\x26\x23\xc9\ \xa4\xa3\x99\xdb\x8c\x03\x98\x96\xfa\xde\x4d\xf3\xcb\x00\x54\x8b\ \xc2\x15\xb7\x58\xb1\xf2\xab\x33\xb3\x8b\xaa\xdf\xf0\xca\x6b\x70\ \xc3\xe5\x17\xf0\xc6\xd5\x4b\x68\xdb\x91\x1e\x3c\xb6\xeb\x04\xf6\ \x1c\xeb\x42\x3c\x65\x22\x22\xf4\x34\x9b\x25\x43\xb6\xbc\x9a\x3f\ \x9d\x03\x20\xcd\xd0\xdd\x36\x1d\xb4\x5a\xde\x82\x8d\xd4\x83\x9c\ \xb4\x3f\xe0\x00\x2c\xef\x35\x82\x91\xdc\x37\x64\xfb\xe9\xb5\xe7\ \x95\x8f\x75\x0d\x58\xce\x26\x94\x73\xf0\x0d\x99\x9c\xe7\x63\x48\ \xdd\x09\xf7\x1c\x95\x73\x60\x15\x83\x70\x9c\x90\xc5\x16\x12\x89\ \x24\x6a\x2a\x8a\xb0\x71\xe5\x42\xdc\x7c\xd5\xf9\x58\xb3\xbc\x06\ \x8f\x3c\xb5\x9f\xef\xdd\xf4\x24\xfd\xbf\xdf\x6d\xc2\xe8\x60\x4f\ \xab\x48\x76\x3c\x60\xf5\xee\xfa\xad\xe4\x08\xdc\xf2\x60\x06\x27\ \x98\x71\x00\x67\x6c\xf8\x59\x0e\x92\x5f\x06\x11\x6b\x10\xd9\xb3\ \x2e\xe4\xbc\x45\x77\x16\x16\x96\x64\xde\x70\xf9\x05\xf8\xcc\x07\ \xde\x81\xa1\x51\x0b\x5b\x0e\xb5\xe3\x77\x9b\x8f\x62\x78\x34\x89\ \x48\x84\xa4\x7a\xd9\x49\xc9\x21\x83\x76\x6e\x94\x95\xda\x75\xee\ \xb1\x8e\x01\xd8\xb6\xa2\x3a\x00\xaf\xb6\x76\x8d\x8c\x2d\xd5\x88\ \xa4\x48\xaf\xd4\xec\x6e\xaa\xef\x45\x67\x96\x8c\x33\xe8\x2c\x94\ \x63\x59\x3b\x56\x8e\xe0\xde\x73\x59\xd2\x6b\x38\x00\xa1\xe4\x00\ \x54\x5c\xc0\xcf\x58\x94\xe7\x95\x8f\xf1\x9c\x8c\x25\x65\x42\x8c\ \x78\x3c\x89\xb2\xd2\x7c\xbc\xf3\x0d\xd7\xe2\xd2\xf5\x4b\x51\x94\ \x97\x83\x0f\xdf\xfd\x3d\xdc\xbb\xe9\x49\xf4\xf4\x74\x8d\xd2\xc0\ \x81\x1f\x58\xc3\x27\x9e\x84\x95\x68\x74\x1c\x41\x9f\x93\x11\xcc\ \x38\x82\x19\x07\x30\xa9\x54\xdf\x05\xf6\x0a\x01\x94\x03\x98\x65\ \x14\xaf\x7c\x23\xb2\xe6\x5c\x6f\x9a\x9c\xf5\xb9\x8f\xbc\x07\xaf\ \xb9\xee\x52\xee\x1f\x65\xfa\xfe\x7d\xfb\xd1\xda\x33\x88\xa4\x83\ \xe0\xfb\xf5\xb2\xd3\x72\x63\x56\x8c\x93\x39\x98\xca\x7b\xed\x39\ \xe7\x58\xb0\x7d\xbc\x9a\xca\x4b\xcf\xa5\xa5\xcb\xc4\x0c\x8b\xe0\ \xe1\x09\xe1\x51\xd6\x92\xca\x09\x96\x0c\x4e\x77\x42\x8e\xc1\x39\ \x29\xbc\x72\x2c\x69\x80\xa0\xf3\x77\x38\xe7\xe9\x61\x1a\x0e\x26\ \xa1\x18\xbe\xfb\xbc\xfa\xb1\x52\x16\xe1\x39\x0b\x97\xbb\x20\x3b\ \x2c\xa7\xb3\xc1\x6c\x81\x2d\x46\x46\x46\x04\xcb\xe6\xd7\xe2\x4b\ \x1f\x7d\x33\x0c\x22\xfe\xf5\x9f\x1e\xa5\x0f\x7c\xea\x9b\x30\x22\ \x34\x82\x91\xe6\xbf\x98\xdd\x3b\x7f\x01\xe0\x04\x80\x0e\xd8\x64\ \x23\x99\x53\x30\x73\x9b\x71\x00\x69\x51\xfd\x6c\xc7\xf0\xcb\x40\ \xc6\x22\xa3\x78\xd5\xcd\xa6\x28\xbe\x66\xd6\x9c\xba\xdc\xdb\x5f\ \x7b\x03\xdf\xf1\xfa\x57\xd1\xde\x96\x7e\xdc\xbf\xb5\x19\xbb\x9b\ \xba\x11\x35\xc8\x33\x32\x17\x68\x53\x8d\x33\x4d\x2a\xef\x1e\xeb\ \x1a\xa7\x7c\xac\x25\x19\x11\xa9\x69\x7f\x5a\xe3\xd4\x9f\x37\xcc\ \x38\xe5\x63\x35\x43\x66\xa7\xe5\x17\x7a\x0e\xf0\xcf\x81\xdd\xf7\ \xca\x96\xe3\x4c\xa0\x3e\xaf\x7c\xac\xf3\xfe\xf4\x4c\xc8\x7b\x3f\ \xd2\x6b\xb0\x34\x12\xc0\x4e\x2b\x13\x56\x3a\x87\x65\x3f\xce\x34\ \x2d\x24\x93\x49\xbc\xe2\xf2\xb5\xb8\xfd\xd5\x57\x62\xc9\xfc\x2a\ \x7c\xf3\xc7\xf7\xf2\x0f\x7f\xf5\x67\x6a\x3e\xd6\x34\x68\x70\xf7\ \x26\xb3\x7b\xc7\xff\x81\xcd\x83\x8e\x23\xe8\xd1\x32\x82\x19\x07\ \x30\xf3\x11\x78\x8c\xbd\x4c\x27\xd5\xaf\x04\x45\xe7\x8b\x82\x45\ \xaf\x15\x79\xf3\x6e\xc9\xcf\xcd\xc5\xfb\xde\x7a\x1b\xde\x74\xcb\ \xf5\x38\xd0\xd2\x8f\xef\xfd\xe5\x00\x06\x86\x93\x30\x9c\x7e\x40\ \x00\xb4\x83\x1c\xbd\xd5\x08\xa8\xd7\xec\x70\xf0\x00\xaf\x5e\x06\ \x02\x86\xe1\x1b\xb2\xf3\xbc\x64\xa7\xe7\x7a\xcb\x4f\x76\x00\xac\ \x38\x1e\x4b\x69\xcb\xb9\xc7\xb2\x63\xf8\x7a\x2a\x6f\x47\xfa\x10\ \xe3\x74\xa3\xb3\xc4\x1b\x70\xfb\xff\x98\x68\x24\x67\xd6\x52\x7d\ \xff\x7d\x28\x7c\x04\xe7\xb3\x20\xcb\xc9\x6c\x2c\xb5\x04\xd2\xb9\ \x0b\x00\x63\x34\x9e\xc0\xba\xe5\xf3\xf0\x99\xf7\xbd\x11\x73\x6a\ \x4a\xf0\xa3\x5f\xde\x8f\x2f\x7c\xfb\x1e\xf4\x0d\x0c\xc2\x1a\x68\ \xfc\x8d\xd5\xb7\xef\xf7\xe0\xd4\x61\x00\xa7\x9c\xd2\x60\x14\xea\ \x30\xd2\x8c\x03\x78\x19\xa7\xfb\x79\x6e\xaa\x2f\x0a\x96\xfe\x9d\ \x95\x5d\x77\x6b\x51\x61\x71\xd6\xd7\x3f\xfd\x21\xac\x5a\xb2\x10\ \x59\x99\x31\x30\x80\xff\xfc\xdd\x6e\x1c\x6b\x1f\xf0\xd2\x75\x19\ \xec\x0a\x80\x59\x0e\x22\x3e\x36\x60\xe6\xf2\xf0\xa1\x19\x1f\xc0\ \x14\x04\xed\xd8\x01\xeb\xbc\x63\xd9\x05\x0e\xa5\xda\x1a\xda\xb1\ \xd2\x39\xa8\xc6\xe9\xb7\x0d\x03\x0e\x40\x76\x16\x6c\xd9\xc4\x22\ \x37\xd2\x87\x18\x9f\x5c\xb3\x2b\xce\x42\x72\x22\x4a\xc6\x02\xff\ \x1c\x74\x1a\x32\x1c\x3c\xc0\x62\x29\xb3\x70\x09\x49\x9a\x03\x80\ \x83\x49\xb8\xe5\x8f\x69\x31\x0c\x41\x98\x3b\xa7\x02\x1f\x7b\xe7\ \xeb\x70\xde\xa2\x3a\x3c\xf6\xcc\x6e\xdc\xf9\xe1\xff\x44\x57\x77\ \xf7\xb0\x18\x39\xf6\x1b\xab\x6f\xdf\x2f\x01\xb4\x38\x19\xc1\xe0\ \xcb\xbd\x2c\x30\x5e\xc6\xe9\x7e\x14\x36\x3f\xbf\x02\x40\x1d\x65\ \x56\x5e\x45\x45\x6b\x3f\x96\x5d\xdc\x70\xc5\xbb\x6e\xbf\x2d\xf2\ \xdf\x5f\xbb\x8b\x2a\xcb\x2a\x20\x84\xab\x9d\xc1\xb8\x70\x49\x05\ \xba\x07\xe2\x38\xde\x31\x08\x21\xe0\xf7\xde\xbd\x30\xc2\xd2\x8c\ \xaf\xeb\x05\xec\x0b\x98\x3c\x76\x9e\x74\xac\xf3\x77\x62\x39\x08\ \xf9\x4c\x3e\x40\xe5\xf8\x7b\xcf\xeb\xb9\x6f\x29\xca\xfa\x8f\x4e\ \x7b\x0e\x32\x45\x18\x9e\x53\x08\xbe\x86\xd7\x99\x70\xff\x68\x31\ \xe0\x0d\x18\x91\xf2\x1a\x5e\xca\x4f\x70\xe8\x7e\x7e\x32\x4f\x4c\ \xce\x1c\x82\x6b\xa4\xae\x0d\xb3\x7f\xfe\xac\x47\x24\xb7\xf5\xe8\ \x9f\x89\x77\xfe\x14\x72\xac\x4d\x52\xb4\x0f\x13\xf6\xb9\x76\xf7\ \xf6\xe3\x9e\x3f\x3c\x8a\xad\x7b\x0e\x63\xdd\x79\x0b\xf1\xdd\xbb\ \xef\x84\x69\x45\x23\xdb\x0f\x75\xaf\x4c\x18\xa5\xeb\xc8\x1a\x1d\ \x46\x6a\x70\xd8\x79\x1a\x79\xce\xe0\x65\x97\x0d\xd0\xcb\xf0\xfd\ \x1a\xb0\x49\x3c\x76\xba\x0f\x9a\x27\x4a\xd6\xbe\xdd\xc8\x99\x7d\ \xe5\xd2\x05\x0d\x7c\xcf\x37\x3e\x4f\x86\x61\xd8\x17\x95\x1b\x64\ \x49\x32\x12\x22\x3c\xb6\xbb\x0d\xbf\x7a\xac\x11\x82\xc2\x6a\xf6\ \x71\xc0\x2c\x0d\x11\xb7\x03\x59\x48\x0a\x2c\x47\x40\xb0\x1d\x5d\ \xd3\xa4\xf2\x6e\x1a\xed\x45\x59\x0a\x89\xce\x96\x25\x45\x4e\x99\ \x2d\x68\x29\x2c\x43\xd6\xe6\x09\xe4\xe7\x20\x4b\xa2\x21\x53\x30\ \x9b\x50\x59\x88\xce\xb1\x0e\xf1\xc0\x3f\x07\x09\x03\x80\xeb\x78\ \xdc\x73\xb0\xd3\x21\x17\x20\x74\xff\xee\x02\x9b\xec\xf0\x05\x2c\ \xb2\x40\xec\x4c\x2c\x58\x7e\xd7\x44\x7f\x0d\x02\xc3\xb4\x4c\xd4\ \xcf\xae\xc4\x0f\x3f\xff\xcf\xc8\xcb\xc9\xc4\x4d\x6f\xfe\x28\x3f\ \xbf\xbf\x91\xcc\xa1\xe6\x07\xad\xae\xad\x3f\x00\x70\x44\x2a\x0b\ \xe2\x2f\xb7\xb2\xe0\xe5\x94\x01\x08\xc7\xf0\xf3\x01\x54\x01\x68\ \x10\xf9\x8b\x6f\xe7\xa2\xb5\x1f\x2d\x2e\xab\x5d\xfc\xdd\xbb\xef\ \xe2\x7f\xb9\xf3\x8d\x04\x08\xcf\xd0\xbd\x07\x0a\xd7\x11\xd8\xf7\ \xcd\xab\xce\xc3\xf2\xba\x62\x6c\xde\x77\xca\x8f\x9c\x5e\x44\x25\ \xf5\xf2\x71\x23\x3c\x79\x19\xbb\x1f\xd9\xdc\x63\x49\x8d\x6a\xa1\ \xde\x59\x7a\x30\x7b\x8f\xf6\x23\x3c\xb1\x17\x80\xfd\xfb\xdd\x63\ \xb5\x2c\x83\xa0\xbf\x1e\x79\x2f\xe1\x67\x13\xec\x1f\x2b\x65\x2a\ \x5e\x42\xa1\x9c\x12\x7b\xe7\x20\x3f\xaf\x5b\xd1\x48\x69\x8f\xfa\ \xbc\xf0\x49\x51\x2c\x45\x72\x96\x32\x0d\xef\xec\xd8\x7f\x0d\xf6\ \xd8\x8b\xce\xb1\x44\xfe\x50\x13\x6b\xaf\x41\x40\x4f\xdf\x20\x7e\ \xf5\x87\x47\xd0\x76\xba\x1b\x3f\xff\xda\xbf\xd0\xfa\x55\xcb\x79\ \xd3\x53\x87\x1a\x86\x8d\xea\x6b\x84\x88\x64\x70\xbc\xf3\xb4\x73\ \xb8\x2e\x67\x36\xe3\x00\xfe\x46\xa2\x7e\xd4\x41\xf7\x4b\x01\xd4\ \x52\x46\xc9\xa5\xa2\x78\xdd\x5d\x59\x25\xf3\xaf\xfb\xfb\x9b\x6f\ \x8a\xfd\xf2\x5b\xff\x46\x15\xa5\xe5\x36\xd6\x04\xdf\xd0\x5d\x1f\ \xe0\x66\x00\x72\xf6\x5a\x98\x13\xc3\x75\x6b\x66\x63\x4f\x53\x37\ \xba\x07\x46\xed\x92\xc0\x03\xe1\xdc\x34\xdb\x65\xf2\x49\x59\xaf\ \x94\x69\x2a\xc7\x72\xb8\x11\x79\x09\xb9\x6b\x9c\xec\x3b\x04\x0a\ \x71\x32\xae\x91\xb2\x64\x00\x70\x67\xff\x11\x34\x64\xe5\x3a\xd7\ \x4b\x12\xa9\x64\xf1\x32\x84\x30\x07\xe2\x3a\x1e\xc5\x9f\x69\xce\ \x42\x76\x92\x52\xd9\x44\xd2\xfb\x23\xd9\x49\x4a\xe0\x69\xba\x73\ \x60\xf8\xce\xcf\xaf\x2f\xd4\x2f\x9e\xc1\x10\x20\x98\x6c\x61\xdf\ \xe1\x66\xdc\x73\xef\xa3\xb8\xf2\xc2\xd5\xf4\x9d\xcf\xdd\x89\xae\ \xde\x78\xc6\xfe\xe6\xe1\xb5\x29\xa3\x78\x35\x52\x03\xbd\x30\x47\ \x46\xa1\xea\x1a\xf2\xcb\xc1\x38\x5e\x0e\xc6\x9f\x67\xa7\xfb\x98\ \x6f\x94\xac\xfb\x47\x64\xcd\xba\x76\xee\x9c\x1a\xfc\xe2\x1b\x5f\ \xe0\xbc\x9c\x6c\x02\x08\x42\xa8\x97\xb6\x6c\xf0\x42\x84\x97\x03\ \x00\x21\x1a\x05\x7e\xb2\xe9\x10\x36\xef\x6e\xf5\x07\x69\x34\x44\ \x9c\x74\xf0\x0d\x2a\xa0\x26\xb7\xe5\x02\x5c\x7e\x76\x27\xed\x54\ \x0a\xad\x3f\xb7\xef\x44\x43\x0e\x22\xea\x80\x76\xac\xe5\x8b\x80\ \xa8\xdc\x04\x7f\x9a\x4f\x3f\x07\x48\xd3\x87\x76\x94\x95\xb5\x01\ \xb4\x73\xd0\xc7\x8f\xc9\x92\xde\x07\x79\x03\x47\x70\x9e\xc3\x4b\ \xf5\x25\xea\xb0\x3b\x0b\x01\xf6\xf5\x07\x08\xd2\xb1\x21\x73\x08\ \x08\x19\x9c\xf2\xf1\x84\x20\x0d\x99\x2d\x0b\xf5\xb3\x2a\xf1\xf3\ \xaf\x7c\x04\x29\xd3\xe4\x9b\xde\xfc\xaf\x74\xe8\xd8\x49\xd0\x70\ \xcb\x9f\xcd\xee\xad\xdf\x93\xca\x02\x17\x24\xfc\x9b\x75\x04\x7f\ \xcb\x19\x80\xdb\xda\x2b\x06\x50\x47\xb1\xe2\xcb\x45\xf9\x25\x77\ \x17\x97\xd5\xaf\xfc\xd2\x5d\x1f\xe0\x4f\x7f\xe0\x0e\x8a\x18\x31\ \xf2\xa3\xbd\xea\x0b\xc3\xa2\xbf\x5b\x0e\xc8\xc7\x33\x33\x56\x37\ \x94\xa2\x38\x3f\x13\xdb\x0e\x9f\x86\x41\x24\x01\x83\x1c\xf4\xb0\ \x2a\x12\xe8\x47\x2a\x37\x4a\x33\xdc\xca\x39\x90\xca\xfa\xd1\x90\ \x15\x39\x5f\x1b\x7f\x73\x09\x40\xc1\x08\x48\x50\x1d\x58\x78\x24\ \xf7\xa3\x68\x20\x3a\x4b\xe7\x40\x96\x5c\x17\x8c\x15\xc9\x59\x8d\ \xe4\x1e\x07\xc0\xf9\xec\xdc\x89\x43\xf7\x1c\x25\xe5\x22\x35\x9a\ \x93\xf2\x3e\x98\x7c\xf0\x14\x7a\x06\xa3\x94\x13\x1c\x00\x36\x21\ \x7d\xc6\xdd\x7d\xfd\xf8\xc5\xbd\x0f\x21\x95\x32\xe9\x57\xdf\xfe\ \x17\x2c\x9a\xd7\xc0\x8f\x6d\x6b\x5a\x30\x6a\x54\x5e\xc2\x89\xee\ \x53\x30\x47\x87\xa1\x2a\x13\xf1\x8c\x03\x78\xe9\x44\xfd\x88\x83\ \xf0\x97\x03\x98\x2f\x72\xe7\xde\x4a\xc5\x6b\x3f\xb9\xf6\xbc\x55\ \xb9\xf7\xfe\xf0\xeb\x54\x3f\xbb\x86\x2c\x8d\x06\x12\x16\xf1\xf5\ \xbf\xe9\xc7\xd9\xce\x81\x60\x31\xa3\xb6\x22\x0f\xcb\xea\x8b\xb1\ \xed\xf0\x69\x24\x53\xa6\x9f\x66\x7b\x3c\x7b\x2b\x90\x66\xb3\x14\ \x39\xe5\x3a\x9d\xc9\xd2\x4a\x01\xff\x62\xf7\xc1\x48\xf9\xe9\x58\ \x71\x06\x6e\xf1\x4d\x1c\xe2\x00\x9c\x7b\x48\x4b\x99\x15\x67\x41\ \xfe\xfb\x0b\x38\x31\xc7\xbb\xa9\x0e\x4b\x72\x04\x21\x0e\xce\xd5\ \x08\x20\xf8\x65\x0c\xeb\x1d\x0d\xa9\xb3\xe1\x3a\x32\xe5\x79\x43\ \x4a\x15\x48\xa5\x8a\xec\x13\xe4\x73\x83\xec\x84\xe4\xf3\x15\x80\ \x65\x5a\xd8\xb6\xfb\x10\x7e\xfc\xeb\x07\xf1\xba\x1b\x2f\xa3\xcf\ \x7d\xf8\xad\x78\x62\xeb\x81\xbc\x93\x7d\x99\xd7\x13\xc7\x87\x38\ \xd1\xdb\x03\x55\xd5\x98\x67\x1c\xc0\x8b\xdf\xf8\x63\x0e\xd0\x37\ \x0b\xc0\xc2\x48\xf9\xc5\x9f\x33\xa3\x35\x37\x7f\xfa\x5f\xde\x8d\ \x8f\xbf\xfb\x4e\xb2\x01\x23\x84\xa2\xfc\x61\x06\x9f\xce\x01\xa8\ \x59\x82\x0d\x42\x95\xe4\x67\xe2\xb2\x15\x35\xd8\x72\xa8\x1d\xc3\ \xa3\x29\x35\x7e\x31\x69\xc0\x60\x58\x24\x27\x3b\x92\xa7\xa9\x65\ \xc3\xa2\x2c\x64\xa0\x2d\x90\x4d\xf8\x40\x1c\xc3\xaf\xbd\x5d\x0b\ \x94\xd9\x77\x9e\x63\x90\xed\x45\x32\x32\xbf\xd5\xc7\x4e\x07\x80\ \x24\x6c\x83\x1d\x54\xde\x75\x60\xac\x41\x0b\xac\xf8\x04\x92\xd0\ \xc5\xe0\x0a\x22\x3f\xc2\xcb\xc0\x20\x88\x55\x1c\x51\x6b\x5d\xaa\ \x30\x80\xe6\x00\xf4\x4c\xc8\xfd\xfc\x1d\x67\x9f\x48\x26\xf1\x7f\ \x9b\x36\xe3\xc8\xf1\x36\xfc\xf8\x3f\x3f\x4c\xe5\xa5\xc5\xf8\xeb\ \xe6\xa3\x1b\x22\xb9\x95\x4b\xac\xa1\xe6\xfd\xce\x33\xc9\xc2\xa5\ \x33\x0e\xe0\x45\xda\xde\xcb\x84\xad\xc4\x53\x8b\x58\xf1\x95\x28\ \xbd\xe8\xee\xb2\xca\xfa\xf9\x3f\xfb\xea\xdd\x7c\xed\x25\xeb\xc8\ \x34\x6d\x63\x0d\x33\xf8\xb1\xa3\x7c\xb0\x2c\x08\x3e\xce\x7e\xde\ \x68\x44\xe0\xea\x35\xb3\xd1\x33\x30\x8a\x23\xad\x7d\x30\x0c\x52\ \xd3\x65\xf2\x0d\x36\xd4\x30\x1c\x03\x20\xd9\x00\x74\x23\x92\x8c\ \x93\xa0\x1a\x86\x9c\x52\xfb\xc0\xa3\x6c\xe4\xd2\xb1\x8e\xe3\x22\ \x0a\xe1\x31\xb8\x7d\x77\xf6\x13\x71\xfb\x79\x7d\x7c\x81\xa4\xae\ \x03\x2b\xce\xcd\x76\x64\x81\x12\x42\x03\x36\xa1\x97\x0b\x52\xe7\ \x80\x25\xfe\x04\x7c\xda\x80\x96\xa5\xe8\x65\x88\x53\x6a\x10\x05\ \xca\x21\xd6\x4b\x16\xe9\x85\xdc\xcf\xf8\xd0\xd1\x66\x3c\xf1\xdc\ \x6e\xbc\xef\x8e\x5b\xf0\xda\x1b\x2f\xe7\xfb\x37\xef\xad\x19\xb4\ \x4a\x2f\x43\xb2\xa7\x03\xe6\xe8\x00\x82\x62\xa5\x33\x0e\xe0\x45\ \x64\xfc\x6e\xca\xbf\x90\x72\x1b\x6e\x31\x4a\xd6\x7f\xe2\xc2\x75\ \x6b\x73\xee\xfb\xc9\x57\xa9\xa8\xa0\xd8\x33\xfe\x74\x91\x5c\x36\ \xb8\xb0\x9a\x7f\x22\x8f\x73\xef\x63\x66\xac\x5f\x5c\x8e\x9c\xcc\ \x28\xf6\x1c\xeb\x0a\xa9\x97\x7d\x4e\xbd\x6f\xc8\x90\x66\xeb\xb5\ \x34\x5c\x8e\xf4\x90\x39\x37\xc1\x3a\xdc\x8b\xf4\x8e\x01\xe8\xcf\ \xab\x1a\x80\x9a\x2e\x13\xd4\x76\x1d\x69\xad\x4b\x85\x64\xe4\x00\ \x7d\xee\x83\x54\x2c\xc0\x9f\x49\xd0\x3f\x9f\xb0\xae\x83\xcb\x0b\ \xf0\x4a\x03\xb9\x9d\x49\x14\x78\x88\x57\xde\x50\x9a\x12\x41\x2a\ \x89\x94\x73\x90\x8f\x55\x32\x1a\x3f\x1b\xe8\xec\xee\xc5\x8f\xff\ \xe7\xcf\xb8\xe9\xaa\x0b\xe8\x4b\x9f\x78\x2b\x9e\xd9\xd9\x98\xdb\ \xdc\x93\x75\x2d\xac\xc4\x30\x12\x3d\x3d\xf0\x15\x88\xfe\x26\x4a\ \x02\xe3\x6f\xc0\xf8\x5d\x94\x7f\x16\x80\x45\x91\x8a\xcb\xfe\x9d\ \xb3\xe7\xdc\xfc\xd5\x4f\x7e\x18\xef\x7f\xdb\x3f\x50\xca\xb4\x2f\ \x30\x21\x68\x5c\x43\x4e\x17\xe5\xd3\x81\x83\x63\x65\x03\x16\x33\ \xe6\x56\x15\x62\xdd\x82\x72\x3c\xbc\xb3\x25\xd4\x48\x48\xa9\x65\ \x59\xed\x99\x93\x0a\xda\x91\x56\x27\x13\x2b\xb5\x84\x02\xc4\x85\ \x02\x5f\x52\x01\xcc\x4e\x94\xd6\x1d\x80\x92\x94\xcb\xcf\xeb\x18\ \x61\x80\x01\x28\x4d\x29\xea\x94\x06\x4f\x89\x48\xf5\x4e\x8a\x71\ \x92\x96\xca\xb3\x8e\x79\x04\xde\x9b\xec\x40\xb5\xcf\x30\xb4\x9c\ \x50\x33\x19\x15\x94\x0c\xf9\xac\xdd\xf2\x4a\x10\xee\xdd\xb4\x19\ \x8d\x4d\xed\xf8\xd9\x57\x3f\x48\xf3\xea\xe6\xe0\xde\xc7\x0f\x6f\ \x88\x64\x57\x2d\xb3\x86\x9a\x0e\x38\xae\x2f\xf1\xb7\x90\x0d\x18\ \x2f\x71\xe3\x8f\xc1\x66\xf4\xd5\x52\x46\xe9\xe5\xa2\xec\xa2\x2f\ \xce\xae\x5d\x30\xef\x7b\x9f\xff\x14\x5f\xb8\xf6\x3c\xf2\xd8\x65\ \xa0\x31\x0d\x79\xa2\xe5\xc0\x44\xb2\x01\xff\xbf\xed\xf4\xba\x20\ \x27\x03\x57\xae\x9e\x8d\xfd\xcd\xdd\xe8\xec\xb5\xf5\xff\xd2\x82\ \x59\xf0\x23\xa0\x9f\x66\xab\xa4\x1e\x39\xe8\xb8\x2d\x39\xbf\x9c\ \xe0\x60\x0c\x0c\xad\x97\xe5\x54\x5e\x3d\x87\x40\xe7\x80\x24\xa6\ \x23\x82\x24\xa1\x40\xcd\xee\x8d\x0e\x93\x03\x08\xca\x25\x8d\xdf\ \x19\xb0\x0f\x71\xcf\x81\xfc\xf4\x5d\xb1\x4c\xb9\x66\x97\xcf\x41\ \x26\x29\x91\xc2\x75\x60\xa9\x0c\x02\x64\x7e\x84\x86\x34\x84\x65\ \x58\x12\x4e\x42\x04\xec\x3b\xdc\x84\x07\x9f\xd8\x81\xb7\xbe\xe1\ \x15\xb8\xf5\xc6\xcb\xf8\xf1\xad\x87\xab\xfb\x52\x45\x97\x23\xd9\ \xdf\x0a\x73\xd8\x65\x0e\xbe\xa4\x27\x0b\x5f\xaa\x0e\xc0\x65\xf5\ \x15\x01\x68\xa0\xcc\xb2\xeb\x8d\xb2\x8b\xbe\xb0\x6a\xc5\x8a\xdc\ \xdf\x7c\xe7\x2b\x28\x2b\x2e\x22\x1b\xa4\xa2\x29\x1b\xb2\x9e\xd6\ \x4f\x04\x1c\x0c\x3e\xce\x06\x1c\x33\xa2\x02\x57\xad\x9e\x8d\x13\ \xa7\x07\xd1\xda\x35\xa8\x86\x3a\xad\x25\xa7\x64\x08\xc4\x60\x8b\ \x54\x80\x4f\x47\xfd\xe5\x34\x5a\x62\xe2\xe8\xa8\xfc\x58\xa9\x3c\ \x59\xae\x1d\x71\xe0\x1c\x58\x99\x59\x70\x19\x80\xe4\x2d\x1f\x09\ \xd4\xec\x72\xad\xaf\xb4\x14\x42\x66\x21\xa4\xf7\x29\xe7\xfe\xac\ \x91\x88\x54\x43\x66\x05\xf5\xb3\xb9\x09\x24\xbd\x4f\xdf\xc9\xa8\ \x25\x84\x37\x27\xa9\xe0\x10\xea\x39\x28\x1f\x1c\x84\x30\xd0\xd5\ \xdb\x87\x9f\xfd\xf6\x2f\x78\xc5\x95\x17\xd0\x27\xdf\xff\x66\x3c\ \xb1\x65\x7f\x6e\xdb\x40\xf6\x75\x9c\xe8\x6a\x45\x6a\xd8\xd5\x19\ \x78\xc9\x0a\x8e\x18\x2f\x51\xe3\x8f\x39\x60\xdf\x5c\xca\xad\x7f\ \x03\x67\x2f\xff\xd0\x1d\x6f\x7c\x3d\xfd\xc7\xc7\xfe\xd9\xf9\xfe\ \x69\xcc\xba\x7e\x6a\x69\xfd\xd8\xe0\xe0\x58\xd9\x80\x10\x04\xcb\ \x62\x6c\x58\x52\x85\xf2\xc2\x6c\x3c\x77\xa0\x0d\x42\x3a\x80\x09\ \xa1\xd1\x57\x49\xe7\x25\xe0\x10\x12\x5a\xef\x5d\xb7\x21\xad\x2f\ \xef\xd8\xb0\x1a\x38\x24\x5d\x86\x04\x08\xaa\xf5\x32\x42\x5b\x7b\ \xc4\x2a\xe3\x90\xb4\xc9\x1e\xd6\x3c\x84\x0a\x06\x6a\xd9\x4c\x48\ \x36\xa4\x1c\xcb\x6a\x1b\x4f\xc1\x13\x64\x60\x95\xc3\xf1\x00\x39\ \x05\x90\xc2\x82\xd6\x5e\x94\x5f\xc3\x27\x71\x11\x80\xff\xfb\xeb\ \xe3\x38\xd9\xd6\x81\x7b\xbe\xf5\x11\x1e\x18\x4e\xd2\x33\xcf\x77\ \x5d\x4a\x86\x39\x82\x44\x6f\xab\x53\x0e\x24\x5e\x8a\x4e\xc0\x78\ \x09\x1a\x7f\x26\x6c\x5d\xbe\xb9\x46\xe1\xb2\x3b\xad\xbc\x25\x6f\ \xff\xc8\xbb\xee\xc4\x07\xee\xb8\x95\x12\x49\xe7\x5a\x9c\x22\xca\ \x7f\xb6\xc0\x41\x97\x2f\xc0\xcc\x98\x5b\x9d\x8f\x05\xb3\x4b\xb0\ \xe3\x50\x3b\x12\x29\x33\xd4\x90\xf5\x6a\x36\x08\x66\x49\x53\x7d\ \x1a\x73\x87\x59\x45\xfc\xbd\x29\x44\xe2\x31\x8d\x48\xae\xd9\x65\ \xba\xb1\x0f\xbc\xc9\xc6\xe9\xb2\xf3\x54\xba\xb1\x3e\x06\x11\xa8\ \xd9\x49\xad\xd9\xf5\x03\x39\x84\x86\x1c\x5a\xb3\xcb\xce\x49\xa6\ \x21\xb3\xde\x69\x48\x3f\x37\x01\x84\x1c\xab\xbc\x7f\x95\x84\x45\ \x20\xec\x39\xd0\x88\xe7\x76\x1e\xa2\x6f\x7e\xf6\xdd\xc8\xc9\xcb\ \xc7\xc3\xdb\xda\xd6\x1b\x46\x24\xc2\xa3\x1d\x4d\x0e\x38\x98\x78\ \xa9\x81\x83\xc6\x4b\xcc\x59\x65\x3b\x48\xff\x22\xa3\x64\xdd\x87\ \xcd\xac\xda\xd7\x7e\xfb\xdf\x3e\x8e\x9b\xaf\xbd\x82\x12\xc9\x89\ \x19\xa4\xfe\xb7\x89\xd6\xf5\x93\x75\x22\xe9\xc0\x41\x00\x28\x2b\ \xc8\xc2\x35\xeb\xea\xf0\xd8\xce\x16\x8c\x24\x4c\xa9\xd7\x2d\x19\ \x9d\x64\x00\x72\x0d\xac\xd7\xb2\x5a\x0b\x40\x32\x38\xd2\x58\x88\ \xc1\x48\xce\xd2\xe0\x90\xdc\x9e\x54\x8c\x4e\xce\xe2\x89\x55\xc3\ \x40\x38\xb2\xef\x19\x32\xf1\xb8\x91\x5c\x77\x4e\x69\x8d\x53\x39\ \x07\xd7\x09\xc9\x2d\x56\x75\xb4\xd9\x6f\x43\x4a\xc7\x6a\xf3\x12\ \xfa\x5e\x03\xc8\xed\xcd\x10\xa6\xa3\x61\x10\x4e\xb4\x75\xe0\xde\ \x4d\x4f\xe2\x5b\x9f\x7d\x2f\x2d\x5f\xd4\x80\xdf\x3d\xb8\xe7\x3c\ \x23\x96\x5f\xcd\x23\xad\x47\xe0\x6f\x2f\x7a\xc9\x38\x01\xe3\x25\ \x66\xfc\x95\x00\x16\x18\x65\x17\x7d\xca\x14\x25\x97\xfd\xe4\xcb\ \x77\xf3\xc5\xe7\xaf\x22\xd3\xe4\x31\xa9\xbc\x13\xf9\x3d\x55\x70\ \xd0\x75\x22\x6a\xb4\x1f\xfb\x71\x44\xf6\xaa\xaf\xeb\xd7\xcf\x45\ \x67\xdf\x30\x0e\xb6\x74\x23\x6a\x18\x63\x0c\xb4\x20\xc0\xdc\x93\ \x91\x78\x19\x11\x97\x6b\xf9\xc0\xb1\x21\x4e\x44\x99\xbf\x0f\xeb\ \x06\x40\x3d\x56\x6d\xe9\x85\x1c\x2b\x6b\x20\x40\x9f\x80\x94\x09\ \x45\x5a\x39\x21\x97\x29\x12\x51\x2a\xcd\x1b\x71\xa2\xb2\x3e\xd4\ \xc4\x21\x48\x6a\xd8\xc4\x21\x6b\xa5\x16\x29\x65\x82\xfe\x3e\x75\ \x0e\x46\x4f\xdf\x00\x7e\xf7\xe7\x47\xf1\xb1\xf7\xdc\x8e\xcb\x37\ \xac\xe4\x7b\xee\x7d\x7a\x9e\x91\x5d\xd1\xc0\xc3\xcd\x7b\xa5\x72\ \xe0\x25\xe1\x04\xc4\x4b\xc4\xf8\x73\x01\x54\x03\x58\x21\xca\x2f\ \xfe\x5c\x4e\x51\xed\xc6\x3f\xfe\xec\x7b\xbc\x7e\xd5\x32\xb2\xe5\ \xf6\x49\xad\x25\x91\x3e\xaa\x87\xfd\xb7\x1c\xc9\x79\x9c\xaf\x2c\ \xdd\x71\x34\x81\xb1\x2a\xf9\x71\x76\xbb\x09\x78\xff\xad\xab\xf0\ \x96\x1b\x56\x78\xc3\x2c\x1e\x16\x06\x69\x47\x9f\x2e\x02\xe2\x45\ \x57\x2d\x25\x27\x2b\x28\x02\xc2\xbe\xe2\xb0\x02\x3a\x12\x05\xa2\ \x39\x6b\x59\x05\x53\x48\xbd\xad\xd4\xec\x2c\x2f\x00\xd2\xa7\xa0\ \x3d\xc7\xc2\x6a\x2e\xee\xbd\x4f\xb9\x12\x57\x9c\x90\x04\x7c\x86\ \x3d\xaf\x52\x45\x48\x6f\x4f\xcf\x4b\xdc\x0a\x9f\x38\x98\x25\x81\ \xd2\x38\xda\xb0\x2f\x5c\x7a\x1d\x3b\x13\x10\x68\xeb\xe8\xc2\x9a\ \xeb\x6f\xc7\xac\xea\x52\x7a\xe6\xcf\x3f\xe0\xdc\xe2\xda\x8d\xa2\ \xfc\xe2\xcf\x01\x58\xe1\x5c\xab\xb9\x2f\x85\x00\x2b\x5e\x22\xc6\ \x5f\x03\x88\x55\x91\xea\xeb\xbf\x9d\x5f\x34\x67\xf5\x03\xff\xfd\ \x03\xae\x9f\x5d\x43\xa6\x19\x1e\x91\x26\x63\xc8\xe3\x39\x8b\xb0\ \x28\x3e\x19\x83\x1f\xb3\x73\x00\xc2\x48\x9c\x71\xe3\xc6\x06\x7c\ \xf9\xdd\x57\x22\x6a\x08\xe9\xdc\x09\x08\x49\xe4\x15\xf8\xcc\xbb\ \x30\xc7\x39\x96\x35\xb3\x20\x7f\x4d\x78\x78\x2c\x97\x00\x33\x96\ \xc5\x3d\xc7\x38\x96\xc3\xf1\x0b\x19\x63\x90\x4d\x4c\x6e\xbf\x69\ \xa4\x7d\xc9\xaa\x49\xa1\x4d\x23\x5d\xd9\x21\xdb\xea\x44\x62\x2e\ \x85\x26\x5b\xe1\xd7\x49\xc8\x63\xe5\x44\xe3\xea\x37\xbc\x17\xc9\ \x54\x92\x9e\xdf\xf4\x43\x2e\x28\x9e\xb3\x3a\x52\x7d\xfd\xb7\x01\ \xb1\xca\xbe\x66\x5f\xfc\x4e\x40\xbc\x24\x8c\x5f\x64\xae\x17\x95\ \x57\x7d\x79\xd6\xac\xba\xca\x7b\x7f\xf8\x2d\xce\xce\xca\x22\x5d\ \xb4\x63\xaa\x86\x9c\xce\x39\x4c\xf4\x26\x3f\xdf\x44\xb3\x08\xb5\ \xd4\xb0\xc1\xc1\xea\x92\x5c\x7c\xf5\x3d\x57\xa1\xae\xb2\xc0\x11\ \xdb\x54\x43\x92\xac\x22\x90\xf6\x4a\x4d\x13\x8d\xd3\x95\x03\xee\ \xb9\x32\x4d\xc8\x66\x54\x6e\xfe\x98\xc6\x25\xe7\xfd\xa4\x9d\xb9\ \x36\xbd\x47\xac\x08\x06\x30\x54\xdd\x40\x05\xee\x50\x2c\x9c\x94\ \x59\x06\xe5\xd5\x88\x15\x0c\x42\x2d\x53\x24\x87\xe5\x11\xa1\x2c\ \xe5\x83\xd3\x9d\x63\xf0\x2d\xb3\xb3\x21\x09\x10\x06\xe1\x35\x6f\ \xfb\x10\x9e\xd9\xbe\x87\xb6\xfe\xe5\x07\x3c\x67\x4e\x5d\x25\x55\ \x5e\xf5\x65\x88\xcc\xf5\x2f\x05\x27\x60\xbc\x88\xcf\x2b\x1b\x40\ \x15\x20\x56\x8a\x8a\xcb\xbf\xd8\x30\x77\x61\xd5\x1f\x7f\xf8\x2d\ \x8c\x98\x06\x65\xc7\x0c\xaf\xc7\x3e\x1e\x40\x27\xd7\xe7\x93\x01\ \xf9\xd2\x81\x83\xe9\x9e\xe7\xcc\x3a\x0e\x76\xab\x2e\x2b\x23\x82\ \xab\xd7\xd5\xe3\x60\x4b\x37\x4e\x75\x0f\xfa\xec\xba\x31\x44\x40\ \x64\x0a\xb0\x22\x02\xe2\xce\xe5\x87\x1c\x0b\x4d\x81\x47\x9f\xac\ \x1b\x4f\x04\xc4\xa5\x1b\xc3\x1a\x5b\x04\x44\x79\x6e\x0a\xa6\xd9\ \xb2\x13\xf2\x4b\x70\x56\x22\x34\x49\x6d\xb9\x30\x11\x10\xd2\x72\ \x03\xc2\xc4\xe7\x26\x20\xc9\xbc\xa9\x73\x13\x12\x49\x29\xd0\xa2\ \xe5\x00\x8f\x01\x00\x7e\xf3\xa7\x07\x31\xbf\x6e\x16\x7d\xfd\x33\ \xef\xe6\x3f\x3c\xb8\x25\xaf\x6b\x34\xf7\x7c\x0c\x1e\x7b\x1e\xe0\ \x41\xbc\x88\x15\x88\x5f\x8c\x0e\x40\x48\x80\xdf\xb2\x48\xf5\x75\ \xdf\x9c\x3d\x6b\x6e\xd5\x1f\x7f\xf4\x2d\x3c\xb0\xbb\x93\x7e\xf1\ \x54\x2b\x0e\xb4\x0d\x63\x4d\x7d\xbe\x47\xef\x9d\x4c\x4f\x3e\xdd\ \x71\xe9\x0c\x3d\x9d\x91\x8f\xf7\xb7\xa9\xb5\x0e\xed\x3b\x2e\x39\ \x6f\x36\x72\xb3\x62\x78\x66\xcf\x49\x44\x22\x22\x30\x1a\x2c\xb7\ \xaa\xbc\xf9\x78\x15\xce\x0a\x89\xda\xf2\xc6\x5f\xe9\xf5\x9d\x03\ \x48\x6b\xf1\xb1\x44\x37\x96\x27\x11\xf5\xde\xb9\x3a\x7d\xa8\x0e\ \x01\x91\x37\x31\xa8\x19\xb5\xac\x07\x18\xa0\x3a\x07\x19\x80\x32\ \x10\xa7\x21\x3e\x21\x2d\x40\xed\x58\xcd\xc1\xe9\xef\x3f\x30\x0b\ \xa1\x74\x0e\xd2\xcc\x4d\x20\x28\xd7\x16\x8b\x45\xf1\xc0\x13\xcf\ \x62\x70\x68\x94\x7e\xfa\xd5\x8f\xe2\x37\x7f\x7e\x3a\x7f\xc0\x2a\ \xbd\xc8\x1a\x38\xf2\x1c\x80\x21\xa8\xcb\x4b\x67\x1c\xc0\x18\xc6\ \x9f\x09\xbb\xd5\xb7\x40\x94\x5f\xfc\x99\xbc\x82\xca\xf9\xbf\xfb\ \xaf\xaf\xf2\x9e\xd6\x51\xba\xef\xf9\xd3\x10\x44\xe8\x1b\x49\xe2\ \xb1\x03\xdd\x20\x00\x0d\x15\xd9\x8a\x60\xe7\x64\x0c\x72\x22\x1d\ \x80\xf1\xb2\x88\xb1\x9c\xca\x58\x06\x9f\x2e\xab\xb0\x5f\x8f\xb0\ \xb4\xbe\x18\x4b\xe6\x96\xe3\xc9\x5d\x27\x60\x9a\x96\xd7\xfe\x92\ \x83\xb5\xaf\x34\x14\x0e\x5c\xe9\xbd\x71\x4e\x57\x3b\x90\xec\x18\ \x48\x7b\x5e\x56\x06\x84\x58\x42\xf7\xc1\x50\x29\xc5\x08\xb2\xf4\ \x42\xcf\x41\x6f\x33\x42\xc5\x0e\x58\x93\x04\xd7\x73\x70\xd6\x75\ \x00\xe4\x73\x60\x75\x3e\x21\x04\x12\xf1\xfa\xfa\xa1\x65\x24\xa5\ \x2b\x80\xc6\xbf\x8f\x88\xb0\x63\xcf\x01\x54\x96\x95\xd1\xa7\x3f\ \xf8\x36\xfe\xd9\x6f\x1f\xcc\x4b\x88\xc2\xf9\x3c\xd4\xbc\x13\xf6\ \x42\x92\x17\x9d\xe8\x28\xbd\xc8\x8c\x3f\x03\x36\xc9\x67\xb1\x51\ \x76\xd1\xa7\x72\x8a\x6a\x37\x3e\xf0\xdf\x3f\xe0\xc6\xce\x14\xfd\ \xfc\x89\x93\xc8\x88\xaa\x16\x65\x31\x23\x62\x10\xde\x79\xd5\x1c\ \x54\x17\x66\x78\xc8\xb6\xaf\xd6\xa3\xca\x79\xa5\x33\xc8\xb1\x9c\ \x83\xfe\xb8\xc9\x3c\x67\x98\x94\xd8\x64\x1e\x07\xd8\x52\x59\xef\ \xfb\xda\xfd\x38\xd5\x3d\x08\xe1\x58\x9e\xbc\x56\xdc\xe3\x0d\x48\ \x8b\x3e\x2c\x4f\x50\x44\xde\x45\xa8\x2a\xf1\x42\x5b\xdd\x0d\x38\ \x7b\x09\xa1\xae\xee\x96\x5f\xc3\xdd\x1e\x6c\xcb\x7d\xa9\xbb\x08\ \x21\xaf\x3b\x83\xbd\x39\xc8\xdb\x4b\x28\xaf\x04\x67\x4b\xb2\x53\ \x79\x73\x31\x3b\x8b\x4d\xb5\xed\x41\xfa\xfb\x0c\xdc\xef\x3b\x26\ \x7f\x1b\x91\x7c\xac\x15\x78\xcf\xee\xb9\x05\xce\x81\xa5\x63\xbd\ \xcc\xc3\x0a\xbc\xb6\xbc\xf1\x48\x06\x32\xdd\xd7\x1b\x1c\x1a\xc5\ \x8f\xbf\xf2\x49\x6c\x5c\xb3\x82\xcf\xbb\xe6\x0e\x1a\xec\x3e\xfe\ \xb4\x79\x7a\xf3\x67\x00\xec\x87\xbd\xb3\x30\x8e\x17\xc9\xfc\x00\ \xbd\x88\x1c\x51\x06\x6c\x7a\x6f\x83\x51\xb2\xee\x63\xa6\x51\x7e\ \xed\x9f\x7e\xfa\x3d\x4e\x46\x8b\xe8\xa7\x4f\xb4\xa4\x05\xfc\xdc\ \x2f\x60\x76\x71\x26\xee\xb8\x62\x36\x32\x22\xc2\x59\xb0\x49\x81\ \xae\xc0\x0b\x65\xc8\x7a\x16\x31\x71\xd5\x21\x7b\x8a\x31\x65\x5a\ \xf8\xfe\xbd\xdb\xf0\xf0\xd6\xa3\x10\x84\x10\xc3\x67\xc5\x01\xf8\ \x7f\x0f\x31\x1e\xe5\xc2\x86\x7a\xac\x05\x4f\x29\x43\x7d\x0d\xcd\ \xc0\x5d\x95\x23\xd9\x20\x5c\x69\xee\x09\x19\x2d\x2b\xdf\x1d\xb3\ \xa5\x2d\x39\x09\x39\xd6\xa9\xf7\xbd\x2d\x49\x4e\x00\x70\x59\x8f\ \x96\xa5\x9d\x83\xe4\x14\x48\x5a\x30\x4a\x8e\xa3\x83\xb6\xce\x4d\ \xdd\xd0\x2c\x3d\xaf\x2c\x61\x2e\x7f\xd6\x50\x17\xad\x90\xb4\xd7\ \xd1\xcd\x4e\x7e\xff\xa3\x2f\x23\x1a\x8d\xf1\x86\x1b\xee\x24\xc3\ \xec\xf8\xab\xd9\xb5\xe5\x6e\x00\x8d\x00\xba\x1c\x27\xf0\x82\x67\ \x02\xc6\x8b\xc4\xf8\x63\xb0\x07\x7b\xe6\x8a\xc2\x65\x77\x5a\x59\ \xb5\xaf\xfd\xe9\x57\xee\xe6\xbc\x92\x39\xf4\xfd\x47\x9a\x9c\xe5\ \x1c\x63\xb7\xda\xfa\x86\x93\x78\x60\xcf\x69\x44\x04\x30\xbb\x34\ \x0b\x11\xa1\x66\x03\x93\x01\x07\xc7\x02\xfd\xa6\x92\xd6\x4f\x16\ \x2b\xd0\x99\x83\x82\x80\x8d\xcb\x6a\x40\x24\xb0\xa7\xb1\x43\x7d\ \x4f\x08\x59\xd6\x41\xf0\x5a\x82\x32\x03\x9f\xdc\xae\x43\x80\xe5\ \x46\xd0\x7b\x0d\x72\x3d\xad\x20\xe1\x4a\x71\xad\x72\xf1\xd9\x05\ \x23\x84\x9d\xce\xf9\x9f\x01\x4b\xf3\x02\x36\xff\xc1\x9b\xd7\x70\ \xbf\x43\x6f\x62\x93\x35\x6c\x87\xbc\x97\x23\x22\xfb\x37\xc8\xc3\ \x3d\x84\x37\x4d\x48\xd2\x7b\x76\xc6\x9d\x01\x08\xf6\xdf\x9d\xf0\ \xa6\x14\xa5\x63\x59\x3a\xd6\x3d\x07\x76\xda\x63\xce\x71\xe4\xbd\ \x86\xff\xff\x42\x79\x0d\xe7\x79\x89\x3c\x2e\x3a\x01\xf8\xe5\xff\ \xde\x8f\x37\xbf\xee\x46\xba\xf1\xea\x0b\xf9\x9e\xfb\xb6\xcc\x33\ \x8c\xa8\xc1\xa3\x1d\x8d\x4e\x39\x90\x7c\x31\x64\x01\xc6\x8b\xc0\ \xf8\xa3\xb0\x97\x71\xce\xa5\xdc\xfa\x37\x20\x6f\xc9\xdb\xbf\xf9\ \x99\x8f\x63\xe1\xc2\xe5\xf4\xb5\xbf\x34\x7a\xbd\xf1\xf4\x3f\xe4\ \xc9\x5c\x19\x24\xd0\xd8\x3e\x84\x27\x0e\x74\x61\x41\x55\x2e\xf2\ \xb3\x22\x92\xea\x0d\x8d\x59\xaf\x4f\x5d\x13\x70\xe2\x8f\x4b\x37\ \x65\x38\x11\x70\xd0\xb2\x18\xcb\xe6\x96\x63\x69\x43\x05\x1e\xd9\ \x7e\xd4\x2f\xb5\xdd\xd7\x27\x0d\xa0\x92\x0c\x35\xa0\x44\xa4\x4b\ \x78\xdb\x16\x03\x41\x42\xf9\x9c\xdc\x51\x6a\x41\xb2\xc1\xfa\xe3\ \xd5\xe4\x58\xb0\xff\x6f\x82\x80\x84\xaa\x3b\x8f\x63\x9f\x50\x2f\ \xe9\xf8\x3b\x91\x93\x7c\xf6\x22\x93\x8f\x49\x78\x20\x20\x49\x22\ \x20\x08\x1e\xeb\x4d\x25\x92\x4f\x05\x26\x66\xc7\xc9\xf8\xd4\x61\ \x72\x32\x08\x97\x41\x48\xc2\x9f\x91\x90\x8f\x71\x83\x86\x3c\x03\ \x40\xde\xfb\x67\xdf\xc0\xd9\xf6\xcc\x24\x5f\x53\xae\xb3\x70\x40\ \x55\x22\xc2\x2f\x7e\x77\x1f\x3e\xf9\x81\xb7\xd3\x9a\x15\x0b\xf0\ \xbb\x07\xf7\x9e\x47\x1c\x1f\x42\xa2\xf7\x04\x80\xe1\x17\x83\x13\ \x30\x5e\x60\xe3\x37\x60\x8b\x79\xcc\xa1\xcc\xb2\xeb\x39\x7b\xf9\ \x87\x3e\xfc\x4f\x77\xe2\x86\x2b\xae\xa0\xaf\xfd\xf5\xa8\xe4\xd7\ \xc7\xfa\x9f\x73\x51\x3a\xd7\x0d\x01\x30\x2d\xc6\x33\x87\x7b\x70\ \xf8\xd4\x20\xe6\x57\xe5\x20\x27\x23\xe2\xcc\xc0\xd3\xb4\x81\x83\ \xe3\x45\xfb\xb1\xfe\x3e\xb5\xd7\xb3\x43\x53\x65\x71\x0e\xae\x31\ \xe4\xb6\x2f\x00\x00\x20\x00\x49\x44\x41\x54\x58\x3b\x17\xcf\xec\ \x6e\xc6\xd0\x68\x1c\x24\xec\xf8\xef\x5e\xb4\x3e\x0e\x22\x65\x01\ \x44\x4a\x94\xf5\x8e\x77\x87\x63\x88\x7c\x5e\x7d\xc8\x20\x5d\xa0\ \x1f\x4f\x08\x1e\x1b\xd6\xe3\x47\x50\xa4\x84\x90\x3e\xd3\x51\x1f\ \x43\x6a\x1b\x13\xe1\xc7\x02\x52\x96\x00\x7d\xdc\x81\xd2\xd4\xb8\ \xa4\x76\x02\xa4\xa8\x1d\x7c\x2f\x72\x7f\x30\x1d\xc3\x82\x43\xde\ \x3f\x7b\x84\xab\x3f\x6e\x7a\x14\x9f\xfb\xd7\x7f\x44\x6e\x76\x36\ \x3f\xfc\xd4\xb1\x75\xc4\x7d\x2d\x48\x0d\x9f\x92\x9c\x00\xbf\x1c\ \x1d\x80\x2b\xe3\x35\x8b\x32\x4a\x2f\x37\xca\x2e\xfa\xc2\x5b\x6f\ \x7b\x3d\xbd\xeb\xf6\x5b\xe9\x3f\xfe\xd8\x88\x91\xa4\x65\xe7\xbe\ \x84\x31\x7e\xa4\xfe\xb2\xfb\x6f\x37\xa2\x08\x42\xff\x50\x02\x8f\ \xed\x3d\x0d\xc3\x20\x54\x17\x65\x21\x1a\xf1\xb7\xfe\x4c\xe7\xb4\ \xe0\x54\x1f\x37\xf9\x2c\xc2\xfe\x8f\xec\xcc\x28\x5e\x7d\xd9\x22\ \x1c\x3d\xd1\x8b\x96\x53\xbd\x10\x42\x48\xe9\xa9\x3f\xc2\xea\x3b\ \x02\x78\xfa\x7a\xaa\x36\x9f\xfb\x77\xcb\x8f\x60\x92\xc1\xf9\x94\ \x64\x29\xb5\xf6\x84\x3b\x48\xc9\x38\x9c\x64\x41\xd1\x0e\x50\x1f\ \x27\xbd\x77\xa9\xdb\xe0\xe5\x14\xb2\xd3\x93\x34\x0d\x7c\x67\xc0\ \x4a\xd9\x00\xcf\xe1\x49\x91\xdf\xf3\x14\xec\x1b\x34\x51\x98\x47\ \xf2\x83\x81\x92\x35\x91\x96\x3d\xa9\x5f\x82\xef\x2c\x82\x25\x8c\ \x5c\x62\xb9\xa7\x21\x84\x5d\x16\xf4\x0f\x0c\xe2\x0f\x9b\x1e\xc7\ \x77\x3e\xff\x01\x1a\x49\x31\x6d\x3d\x34\x74\x39\xc7\x3b\x0f\xc0\ \x1c\x3e\xed\x38\x81\x17\xac\x3d\x68\xbc\x80\xd1\xdf\x6d\xf7\x2d\ \x12\x65\x17\x7d\x71\xe5\xb2\x15\xb9\x5f\xfa\xd8\x3f\xf3\x2f\x9e\ \x6c\xa5\xd6\x9e\xb8\x1f\xd1\xc6\xfc\x71\x52\x2d\x27\xbf\x25\xad\ \x37\x4c\x0e\x88\xd6\x78\x6a\x10\x4f\xec\x3f\x8d\xd9\x25\x59\x28\ \xcb\xcf\xf4\x2b\xdf\x09\x44\xe4\xc9\xa9\x00\x4d\xfe\x71\x53\x19\ \x4e\x62\x66\x58\x4c\xb8\x6c\x75\x2d\xf2\xb2\x33\xb0\xfd\x60\x2b\ \x84\x90\x52\x63\x0e\x8a\x82\xca\x25\x82\x5a\xd0\x3b\x12\x19\xe4\ \xa6\xd9\x24\x4d\xf3\x01\x9a\xda\xa7\x34\x68\xe3\xa7\xf2\xf2\x2a\ \x32\x92\x51\x57\x05\x4f\x20\x55\x8b\x40\xe1\x2f\x30\xc6\xdc\x50\ \x44\x52\xf6\xe6\x4d\x0e\x52\x60\x3c\x19\x92\x73\x72\xeb\x05\x82\ \xe2\x91\x3c\xe3\xf7\x55\x80\x48\x1a\x29\x96\x9d\x8c\x0d\x04\xf8\ \x8e\x4e\x28\xec\x4d\x01\xb7\x04\x20\xc9\x21\x90\xe2\x1c\x5c\x4a\ \xb7\x21\x08\xfd\x03\x43\x78\x66\xfb\x1e\x7c\xf7\x0b\xef\xe7\x87\ \x36\xef\xa2\x93\x3d\x58\xc5\x83\x8d\x9b\x61\x2f\x1f\x71\x45\x45\ \x5e\x16\x0e\xc0\x05\xfd\x8a\x01\x2c\x8c\x54\x5c\xf6\xef\xb3\x6b\ \x17\xcc\xfb\xd5\x37\xbf\x82\xbf\xec\xea\xa4\xad\x47\x7b\x61\x78\ \x11\x6d\x02\x3f\x9a\xd0\x83\x9c\x72\x92\x54\x3b\x5a\x60\x6c\x3d\ \xd2\x85\xc3\x6d\x03\x98\x53\x96\x83\xc2\x9c\xa8\x83\x28\xd3\x94\ \x54\x80\xf4\xc8\x3d\xdd\x53\x86\x13\x61\x0e\x5a\xcc\x58\x54\x57\ \x8a\x25\x73\x2b\xf0\xc4\xce\x26\x58\xf0\x6b\x70\x37\x22\x0b\x2f\ \xb2\x51\xa0\xbe\x27\x47\x1b\xd0\xad\x97\x85\x7c\x8e\x90\x0d\x46\ \xfb\x4c\x9d\x9e\x2d\x93\x2a\xa3\x05\x59\xb2\x8b\xf4\x00\x2a\x8d\ \x07\x93\xa4\x72\x24\xc8\x03\xdb\x3c\x3c\xc1\xfd\xb7\x6c\x9c\x2e\ \x28\x20\x67\x29\xac\x66\x13\x76\x59\x2e\xe4\x24\xc0\xbf\x06\x48\ \x03\x1d\x29\x4d\xb6\x41\xf2\xb5\x13\xfc\x0d\xa8\xd2\xea\x90\x00\ \x4e\x79\x9a\x50\xfe\x9e\xd8\x71\xc0\x4d\x2d\xad\x38\xde\xd2\x41\ \x3f\xfc\xd2\xc7\xf1\xbb\xfb\x9f\xce\x1d\x48\xe6\x2e\xb4\x86\x9a\ \xb6\x03\x18\x80\x2f\x28\xf2\x37\xef\x00\x22\xb0\x75\xfb\xeb\x28\ \xb7\xe1\x16\xce\x9e\x73\xf3\x77\x3f\xf7\x29\x1e\xb6\x32\xe9\xbe\ \x9d\xed\x30\xd2\x81\x7e\x69\x9d\x00\x07\xd3\x4c\xad\xe6\x74\x9d\ \x82\x20\x42\xff\x70\x0a\x8f\xef\xeb\x80\xc5\x8c\xd9\x25\x39\x36\ \xb7\xe0\xac\x68\x02\x4e\xac\xe3\x30\x1d\xe0\x60\x65\x49\x2e\xae\ \x3a\x7f\x1e\x9e\xdd\xd3\x82\xfe\xa1\xb8\xbd\xb5\xd8\x1b\xc5\x63\ \x45\x79\x17\x2e\xb2\xcf\xb2\xb2\xb0\x54\xcf\xb3\xa5\xd4\xc7\xc4\ \x4e\xba\x2f\x48\x4b\xbd\x55\x04\x5f\x35\x16\x52\xb4\x18\x55\xc0\ \x2c\x1c\x8c\x25\xc5\x08\xa5\xcf\x53\x01\x19\x11\x7c\x6d\x17\x7d\ \x57\x50\x78\x15\xef\x90\xeb\x7b\x92\x98\x8c\x24\xb9\x0f\x3d\x95\ \x97\xdf\xa7\x8e\x37\x04\xcb\x24\xb9\x34\x51\xcb\x02\x48\xdc\x94\ \x88\x21\xb0\xff\xc8\x31\x9c\xbf\x72\x19\x5e\x73\xc3\x65\xfc\xd3\ \xdf\x3f\x5a\x4d\x9c\xec\x46\xa2\xa7\x09\x36\x5b\xf0\x9c\x3b\x01\ \xe3\x05\x70\x38\x39\x00\x66\x21\x56\x7c\xa5\x51\xb2\xfe\x13\x5f\ \xfa\xd8\x87\x31\xb7\x61\x09\xfd\xf0\xb1\x66\x3f\xad\x0f\x33\x74\ \x11\xe2\xbd\x49\xaf\x01\xfd\x34\x96\x00\xb0\x20\x5f\x90\x52\xfa\ \x82\x84\x20\x1c\x6b\x1f\xc4\x63\xfb\xda\x51\x94\x13\x43\x4d\x49\ \xb6\xb7\xeb\x6f\x2a\x52\x62\x63\xd5\xf5\xe3\x81\x87\x13\x2d\x29\ \xc6\x03\x07\xb3\x32\xa2\xb8\x76\xe3\x02\x34\x9e\xe8\xc2\xa9\xce\ \x7e\xbb\x95\xe6\x01\x7e\x41\xb0\x2c\x2c\xc2\xe9\xc6\xcc\xd2\x9c\ \x3c\x73\xf8\xba\x33\x97\x0f\xa0\x38\x13\xaf\x14\x63\x75\x6b\xb2\ \x9c\xea\x13\x49\x8a\x3e\x52\x43\x92\x6c\x8d\x3f\xc8\x9a\x82\x81\ \x0f\xc1\x31\x6a\x99\xaf\xcf\xfe\xbc\xae\x17\xa1\xe5\x39\x04\xe6\ \x10\x29\x31\x92\xca\x10\x52\x4a\xc3\x00\x2b\x52\x3b\x96\xdc\xeb\ \xc5\x75\xa4\x0e\xf2\xcf\x3a\xb0\xe0\x95\x32\x7e\xa6\xf0\xbf\x7f\ \x79\x08\xff\xf8\x0f\xb7\xd0\xf9\x2b\x97\xe0\x8f\x4f\x34\x6e\xe0\ \xd1\xf6\x83\x30\x47\xdb\x5f\x08\x3c\xe0\x5c\x3a\x00\xb7\xee\xaf\ \x00\xb0\x08\xa5\x17\xdd\x7d\xc1\xda\xb5\x39\x77\xfc\xdd\xdf\xd1\ \x8f\x9f\x68\x46\xca\x55\xf0\x4d\x17\xea\x39\x0d\x08\xc8\x84\x80\ \x70\x9e\x26\x83\x1d\xd8\xc5\x27\x5d\x10\x3b\x8f\xf6\xe0\x48\x5b\ \x3f\xaa\x8b\xb3\x51\x5a\x10\xf3\x27\xf1\x26\x91\x9e\x9f\x6d\x09\ \xb2\xf1\xb3\x08\xdf\x71\x5d\x75\xfe\x5c\x18\x86\x81\xed\x07\x4e\ \xc2\x10\x5a\xe4\x23\x19\x50\x0b\x3a\x02\xe5\xfd\x48\x20\x62\x98\ \x33\xf2\xb0\x0e\xe9\x00\xb9\xcc\x50\xe1\x7b\x0a\x1b\xb4\x57\xb2\ \x38\x06\x20\x24\x25\x5f\x3f\x8d\x67\x5f\x31\x48\xd8\xc7\xb0\xfc\ \x5a\x24\x01\x9d\x92\xc3\x07\xc1\x21\x4d\xa5\x8b\xda\xb2\x73\x64\ \xfb\x58\x06\x48\xb0\x5a\x0a\x28\x5c\x06\xbf\xd5\xe9\xfe\x51\x9e\ \x65\x50\x41\x4f\x3b\xea\x08\x8f\x54\xe0\x3b\x60\x43\x10\xb6\xec\ \xd8\x83\x7f\xff\xc8\x1d\x78\x7a\xdb\x7e\x3e\xd6\x6e\xae\xc0\xd0\ \xd1\xcd\x4e\x16\x70\x4e\xf1\x00\xe3\x1c\x1a\x7f\xd4\xa9\xfb\x17\ \x44\x2a\x2e\xfe\x5c\x59\x45\xfd\xfc\xff\xfd\xfe\x57\x29\x91\x04\ \x3a\x07\xe2\xe8\x1b\x4e\xc2\xb4\x38\x3d\xf8\x47\x69\x40\x40\xc9\ \x53\x07\x22\x9c\x5e\x22\x78\x01\xcd\xbf\xb0\x0d\x61\x93\x88\x1e\ \xdd\xdd\x86\xa1\xb8\x89\xba\x8a\x5c\xc4\xa2\x6a\xb7\x60\x3a\x34\ \x01\xc7\x7b\xdc\x44\x5a\x85\xe3\xb5\x20\xdd\x92\x60\x79\x43\x05\ \x16\xcd\x29\xc7\xd3\xbb\x9a\x6c\x1a\xae\x94\x55\xa9\x86\xe7\x92\ \x6b\xd4\x4f\x52\x4f\xbd\x95\xfa\x59\xb8\x7f\x57\xbb\x29\xe4\xf5\ \xe7\xd9\x6f\xde\x90\x6f\x60\x24\x58\x72\x40\x4e\x22\x2e\xa3\xeb\ \xec\x58\xac\x74\xbf\xdd\xdd\x25\x2f\xd2\xfa\x44\x20\x37\xc0\xfb\ \x92\xe3\xae\x0a\xb0\x8d\x67\xb0\x92\x92\x0b\xe9\x35\xe5\x6c\x48\ \xc6\x1a\xbc\xb2\x8b\x7c\xe2\x8f\xd0\x4b\x10\xe9\x7d\x38\x55\x8d\ \x97\xc5\x08\xb9\xeb\xe2\x80\x2a\xae\xd3\x60\x97\x90\xe4\x39\x0b\ \x42\xdb\xe9\x4e\x1c\x3f\xd1\x81\x9f\x7d\xfd\x5f\xe9\x27\xbf\x7d\ \x34\x6f\xd4\xca\x9d\x6f\x0d\x35\x6f\x73\x40\xc1\x73\x46\x15\x3e\ \x57\x0e\xc0\xab\xfb\x45\xee\xdc\x5b\xcc\x68\xcd\xcd\x3f\xfc\x8f\ \xbb\xb9\xa8\xa0\x98\x0c\x22\x2c\xae\xc9\xc3\xea\xba\x02\x44\x0c\ \x81\xc6\x8e\x61\x3b\x72\xd1\x44\x7e\x54\xc4\x58\xd9\x64\x23\x5d\ \x84\x01\x5d\x78\x09\x11\x76\x7f\x47\x0c\xc2\x89\xce\x41\x3c\xb9\ \xbf\x1d\x99\x31\x03\xf3\xaa\x72\x61\x5a\xd3\xb3\x30\x64\x22\x8f\ \x9b\xae\x16\xa3\xbb\x94\xa4\xaa\x2c\x1f\x57\x6f\x58\x80\x47\xb6\ \x36\x22\x91\x4c\xa9\x17\xbe\x2a\xd2\xa7\x10\x86\x82\xd2\x38\x7a\ \x2a\xef\x47\xbc\xc0\x1c\x6e\xa0\x75\xc6\xe9\x7b\xff\x52\xe9\xa6\ \x66\x04\x3e\x0d\x57\x76\xe2\x72\x33\x92\x49\xaa\x1c\xa0\x15\xea\ \x4a\x4b\x5e\x2f\x56\x58\x03\x25\x91\x3e\xdb\x26\x8d\x47\xa0\x7d\ \xc6\x61\xc4\x06\x3f\xfb\xf1\xc9\x45\x6a\x76\xea\xdf\x67\x08\x03\ \x87\x8e\x36\x61\xcd\x8a\xe5\xb8\xf5\xa6\x2b\xf9\x27\xff\xf3\x50\ \x8d\x10\xc9\x2e\x4e\xf4\x36\x9f\x4b\x3c\xc0\x38\x47\x4e\x26\x1b\ \x40\x0d\xc5\x8a\xaf\xa0\xe2\xb5\x9f\xbc\xeb\x7d\xef\xc6\x55\x17\ \xad\xa3\x94\xe9\x5f\xcc\x51\x43\xa0\xa1\x3c\x1b\x1b\x1a\x0a\x01\ \x02\xda\x7a\xe3\x48\x99\xf2\xa2\x08\xa4\x27\x60\x68\x72\xd2\x6e\ \xab\x4c\x11\x79\x90\xd0\x6b\x92\xd6\x64\x79\x73\xe5\x4e\x24\x34\ \x99\xb1\xeb\x68\x17\xf6\xb5\xf4\xa2\xb2\x28\x1b\x15\x85\x19\x7e\ \x66\x32\xcd\x5c\x81\xc9\x68\x15\x4c\x14\x1c\x94\x2f\xc4\xcc\x58\ \x04\xaf\xba\x74\x29\x9a\x5a\xbb\xd1\xd4\xda\x0d\xc3\xd0\x23\x36\ \x29\xa9\x2e\x85\x5c\xdb\x81\x5e\x3e\x49\xfd\x6e\x50\x78\xba\x0c\ \x0a\x2c\xd9\x80\xb4\x91\x58\xa1\x06\x87\xa6\xd9\xf2\x6b\xc9\x2d\ \x40\x75\x6e\x97\xb4\xcd\xa0\xee\x7b\x62\x0a\x03\x85\x29\xf0\x14\ \xca\xfb\x54\x70\x12\x0e\xf6\xf8\xbd\x56\xb3\x9b\x01\x91\xca\x6d\ \xd0\xb2\x24\x66\x37\x83\x20\xa7\x1c\x21\x1f\x58\x14\xbe\xc3\xfa\ \xbf\x3f\x3f\x88\xf7\xbe\xed\x36\xaa\xab\x9d\x85\x07\x9e\x6b\xde\ \xc8\xf1\x8e\xbd\x12\x1e\x70\xd6\x27\x07\xcf\xb6\x03\x70\x5b\x7e\ \xe5\x00\x96\x8a\xf2\x4b\x3f\xb7\x66\xf9\xca\xdc\x0f\xff\xe3\x9d\ \x64\x9a\x50\x40\x37\xc0\x46\xae\xa3\x11\x42\x7d\x59\x0e\x2e\x5d\ \x54\x8c\x91\x84\x85\xae\xc1\x04\x2c\x66\xbb\xcf\x2d\xd5\xba\x3e\ \xc2\xcb\x21\xf5\xab\x9a\x02\xfa\x60\x21\x7b\x6b\xb1\xd8\xe3\x9b\ \x4b\xdd\x69\x07\xcc\x32\x88\xd0\x3f\x9c\xc0\x93\xfb\xda\x71\xba\ \x6f\x14\x8b\x66\x17\x22\x62\x08\x05\x28\x9c\x88\x41\x4e\xe4\xf7\ \x44\xb5\x0a\xce\x84\x8e\x7c\xc5\xba\xb9\x60\x10\xf6\x1d\x6b\x87\ \xae\x8e\x2f\x5f\xc4\xee\x32\x15\x7f\xc1\x28\xa5\x71\x16\xe4\xd1\ \x01\x14\x43\x0e\xe2\x74\x01\xf8\x06\x4a\x39\x22\x3d\xaf\xc2\x2b\ \x80\x62\xb0\xe9\x00\x4b\x19\x95\x67\x0d\xfa\x81\xcc\x1b\x80\xbc\ \x5c\x85\xb4\x16\x21\x39\x38\x86\x3e\x9b\xe0\x37\x17\x05\x9c\x56\ \xa9\x57\xa5\x38\xfc\x13\xc1\x4a\x07\x83\x49\x23\x48\x09\x52\xb1\ \x06\x89\xad\xc9\x4e\x57\x4a\x08\xc2\x96\x9d\x7b\xf0\xd9\x0f\xbd\ \x13\x9b\xb7\xee\xe5\x93\x3d\xb4\x82\x07\x1b\x9f\x06\xd0\x07\x5f\ \x48\xe4\x25\xeb\x00\x22\xb0\xa9\xbe\xb5\x46\xc9\xf9\x1f\x2a\x2a\ \xad\x5b\xf9\xeb\xef\x7c\x9d\x5c\x86\x54\xb8\x11\x90\x47\x74\x59\ \x50\x95\x83\x55\x73\x0a\x90\x97\x19\xc1\xa1\x53\x43\xca\x70\x88\ \x92\x01\x68\x18\xa0\x1c\xf2\xdd\x81\x0d\x5f\xd4\x91\x94\x85\x96\ \x08\x6d\x23\xda\x8e\x41\x08\x42\x6b\xf7\x10\x9e\xdc\xd7\x0e\x30\ \xb0\xa4\x36\xdf\xce\x4a\xd2\x64\x03\xe3\xa5\xf5\x13\x35\xe4\xc9\ \x3c\xe7\xf8\x43\x4d\x04\xd3\x64\xac\x98\x5f\x85\xe5\xf3\xaa\xf0\ \xe8\xd6\x23\x1a\x35\xc7\x37\x4a\x79\xb5\x36\xc3\x17\x1e\xf5\x79\ \xf7\xf0\x6b\x6e\xef\xc2\x76\xd2\x73\x09\xac\x25\x0a\x8e\x19\xf9\ \xe4\x18\x9d\x4e\x9b\x86\x26\xec\xf6\x1b\x48\x4b\xc9\x65\x11\x13\ \x68\x91\x17\xda\x7c\x82\xe2\x38\x24\x96\x9f\x86\x5d\xb0\x5e\x0e\ \x85\xa6\xf9\xfe\x75\xa4\x94\x9e\x81\xec\x34\xe4\xbd\x11\x87\xe7\ \xb1\xce\x1d\x6d\xed\x9d\x38\xde\xd2\x8a\x9f\x7c\xf5\x2e\xfa\xf1\ \xaf\x1f\xcc\x8f\xa7\xa2\x05\x3c\xd2\xba\xe3\x5c\xf0\x03\xce\xa6\ \x03\x70\xc5\x3d\xaa\x29\xa3\xe4\x32\x2a\x58\xfe\xae\xcf\x7f\xf8\ \x03\x5c\x3b\xab\x86\x26\xb2\x52\xcb\xfd\x5b\xc4\x20\xcc\x29\xc9\ \xc2\x25\x0b\x8b\x61\x5a\x40\xf7\x60\x02\xa3\x49\xcb\x01\x60\xd2\ \xcb\x5c\x90\x97\x76\x49\x60\x97\x03\x12\x79\x13\x65\x08\x12\x5c\ \xc8\x53\x82\x61\x08\x07\x14\x4a\x9a\x8c\xfd\xcd\x3d\xd8\x76\xb8\ \x13\xd5\xc5\x39\x28\x2f\xcc\x74\x48\x44\x50\x32\x82\xb3\x21\x1e\ \x32\xb9\x15\xe5\xe1\x8f\x73\x9d\x6a\x79\x71\x2e\x2e\x5a\x59\x8f\ \x1d\x07\x4e\x60\x70\x78\xd4\x3e\x57\x00\xc2\x1b\x94\x61\x1f\xcc\ \x62\x6f\xe6\xcd\xe3\x02\xb0\x34\x15\xc7\x72\x77\x46\x48\x03\x37\ \x2e\xf0\x47\xea\x00\x8e\x20\x87\x6e\xec\x0e\x1c\xb9\x7f\x27\x52\ \x22\x79\xda\xac\x62\xac\x7f\x33\x14\x82\x91\xef\xa4\xc8\x2f\x2b\ \x42\xf1\x0f\xb5\xeb\x41\x12\xb6\xa0\x72\x16\xf4\x20\x11\xcc\x62\ \x28\xb4\x74\xd3\x32\xa8\x40\xab\xd5\x7e\xff\x42\x08\x34\x1e\x6f\ \xc6\xc6\xb5\x2b\x71\xd1\xfa\x95\xfc\xfb\x87\x76\x2d\xc0\x68\xc7\ \x2e\x98\x23\xa7\x1c\x3c\xe0\xac\x95\x02\x67\xd3\x01\xb8\xa8\x7f\ \x83\x28\x39\xff\xae\xb9\x75\xf3\xca\x3e\xf6\xae\x3b\xc8\xb4\x26\ \x87\x74\x13\x11\x2c\xc7\xb0\xe6\x96\x67\xe3\xc2\x05\x45\x88\x0a\ \x42\x4b\xcf\xa8\xe7\x17\x85\x56\xcb\x42\x5e\x4e\x09\x49\x61\x46\ \xf8\xd1\x9f\x25\xd2\xba\x1f\xe1\x24\xf2\x87\xc4\x90\x23\xb2\x60\ \x08\x81\xa1\x78\x12\xcf\x1d\x6c\xc7\xf1\x8e\x01\xac\x6a\x28\x73\ \xb8\xde\x13\x37\xc8\xa9\x4c\x19\x4e\xa4\xe3\x90\xce\xf9\xc8\x8f\ \x73\x2f\xc6\xdc\xec\x0c\x5c\x7f\xd1\x12\x6c\xdb\xdb\x8c\xde\x81\ \x11\x6f\x8c\x55\x99\xf6\x23\x9f\x7b\xe1\xaa\xfa\x38\x6c\x58\x1f\ \x19\x57\xa4\xb4\xc8\x6b\x7b\x79\x6e\xd4\x6b\xc7\x91\x57\x4e\x78\ \x9d\x01\x68\xc0\xad\x74\x3f\xcb\x38\x00\xfb\x9b\x89\x49\x9b\x6a\ \x54\x68\xc8\xb2\x71\xca\xc7\xba\x33\x0b\x70\xa4\xca\x94\x89\x41\ \x29\x95\xf7\x02\x90\x13\x12\x3c\x2a\x34\xf9\x2d\x49\xf8\xd7\x17\ \x4b\xce\xc4\x5b\x1f\x46\xa4\xed\x5c\x94\x16\x91\x48\xdc\x02\x0a\ \xd0\xad\x7d\x7e\xc1\x83\x8f\x3f\x8d\x6f\x7d\xee\xdd\xf4\xeb\x3f\ \x6e\x46\xf7\x20\xcf\xe6\xe1\xe3\x4f\x3b\x59\xc0\x59\x2b\x05\x8c\ \xb3\x98\x59\xe4\x00\xa8\x15\x05\x8b\xdf\x9c\x55\x3c\xef\xda\xdf\ \x7c\xfb\x1b\x1c\x89\xc4\x68\x22\xc8\x77\x78\x4a\x6c\xff\x87\xc5\ \x8c\xba\xb2\x6c\xac\xa9\x2f\x40\x51\x6e\x14\x47\x3a\x86\x60\x59\ \x0c\x41\x41\x40\x3a\x80\x6e\x7b\x6d\x23\xd6\xfa\xb5\x21\x5b\x71\ \x59\xdd\x10\x23\xbb\xdf\x8e\xde\x11\x3c\xfa\xfc\x09\x24\x92\x26\ \x96\xd6\x16\x39\x1b\x6e\x38\x90\x0d\x9c\xbd\xb4\x7e\x72\x58\x81\ \x5e\x12\x10\x11\xae\xbb\x60\x11\x48\x08\x3c\xb7\xbb\x19\xb1\x88\ \x11\xd0\xf9\x53\x52\x5a\xd2\x61\x41\xbf\xae\x96\xa3\x35\x87\xa5\ \xba\xb2\x44\x17\x9c\x76\x9f\xe3\x28\xd8\x11\x0d\x10\x2c\xa5\xe9\ \x1a\x0d\x19\xd2\xd6\x63\x0a\x01\x3a\xd5\x01\x1e\x29\xc2\x33\x29\ \xe5\x84\xf2\x56\xa4\x0c\xc5\x21\xfc\xcb\x85\x8a\x72\x21\x79\x22\ \xa4\xca\x38\xb0\x7b\x2d\xb1\x97\xfd\xc8\x1f\xb8\xbb\x85\x88\x24\ \x42\x10\x29\x23\xd1\xac\x00\x9f\x6e\x79\x35\x32\x32\x82\x81\xa1\ \x24\xbe\x78\xd7\x7b\xf9\xc7\xbf\x79\xa4\x22\x95\x4a\x8d\x70\xbc\ \xf3\xa0\xe3\x04\xce\x0a\x41\xe8\x6c\x38\x00\x17\xf8\xab\x00\x68\ \x39\x17\xad\xfd\xd7\xd7\xdf\x74\x53\xec\xd2\xf5\xe7\x13\x40\x67\ \xd4\x07\x97\x2f\xcf\x48\x84\x50\x5d\x98\x89\x2b\x96\x96\xc0\x64\ \xb7\x34\x30\xfd\x08\x85\x10\x32\x4b\xa0\xce\x57\xd3\xcf\xb1\x46\ \x3d\xd5\x69\x36\xbb\xd5\x76\xa4\xb5\x17\xcf\xee\x6f\x47\x6d\x45\ \x3e\x4a\xf2\x33\x43\x0d\xf9\x6c\xa5\xf5\x93\x75\xa0\xfa\xcd\x62\ \xc6\xaa\x45\x55\x98\x3f\xa7\x0c\x5b\xf6\x36\xc1\x34\x2d\x1b\xec\ \x52\xc4\x43\xe0\x93\x59\x5c\x03\x50\x10\x7b\x56\xdb\xad\x20\x8f\ \x18\x24\x13\x67\x6c\x11\x10\x19\xf3\xb1\xc0\x64\xdb\x8e\xb2\x1f\ \x80\x1d\x17\xcc\xe4\xb3\x3f\x29\xac\x57\x9f\xfe\x1c\x6c\x70\x4d\ \xf8\x64\x20\x97\x86\xcc\x24\x81\x72\x3e\x36\x44\xae\x83\x11\xee\ \xdc\x84\x1b\xd1\x85\xf4\xf9\xca\x9a\x06\xe4\x8b\x9d\xb8\xed\x68\ \x96\x48\x48\x92\x0e\x01\x91\x3f\x76\xcd\x70\x1d\x1d\xa9\x99\xa6\ \xd4\xd2\x16\x42\xe0\xc0\xa1\x46\xdc\xfe\xfa\x9b\x69\x70\x68\x84\ \xb7\xec\x6b\x9b\x8f\xc1\x23\x4f\x02\xe8\x91\xba\x02\x2f\x7a\x07\ \x10\x01\x50\x00\xa0\x4e\x94\xac\xfb\x60\x51\x69\xed\xa2\x9f\x7d\ \xf9\xdf\x28\x65\xd2\xb4\xf4\xc1\x3d\xc3\x62\x3b\xe5\xb2\x98\x50\ \x5f\x9e\x8d\x8d\xf3\x8a\x51\x90\x13\x45\xe3\xa9\x21\x58\x6c\xf9\ \x74\x60\xf9\x22\xf1\x10\x63\x92\x26\xe6\xfc\x34\x8c\xb5\x65\x9b\ \xea\xee\x78\x97\xf6\x4a\xbe\xa0\xa4\x20\x8c\xc4\x53\x78\x7a\x7f\ \x1b\xf6\x1f\xef\xc6\xda\x85\xe5\x30\x44\xb0\x5b\x90\xf6\x3d\x9c\ \x85\x72\x60\x3c\xde\x81\x1c\x41\x53\x26\xa3\xa6\xbc\x10\xaf\xb8\ \x64\x19\x1e\x7a\xee\x20\xe2\xc9\x94\x9f\x02\xcb\x0d\x75\xef\xbf\ \x05\xd4\xf1\x60\xf2\xe6\x0a\xd4\x1e\x38\xbc\xa9\x3d\xd2\x59\x9a\ \xf2\xb4\x9e\x1c\x35\xb5\xda\xd8\x3b\x07\x96\xf7\x24\x92\xda\xcb\ \x97\x11\x7f\xf6\xa3\xb9\xb7\xc3\x90\xd4\x00\x10\xa0\x85\xca\x9f\ \xad\xab\x1c\xa4\x4c\x49\xc2\x9f\x5a\x24\x9f\xa1\xc8\x81\x39\x68\ \x15\xf8\xd4\x52\x0a\x85\xf7\x00\x49\x6d\x59\x7e\x2d\xf7\xe0\x94\ \x99\xc2\xe3\x4f\x6f\xc1\x2f\xbe\xfd\x31\xfa\xee\x7f\x6f\xca\x1c\ \xb5\xa2\x45\x3c\xd2\xba\xed\x6c\x01\x82\xd3\xed\x00\x04\x80\x2c\ \x00\x35\x94\x59\x79\x55\xa4\x68\xd9\x9d\xdf\xf8\xf4\x5d\x5c\x56\ \x5c\x4e\x61\x29\xf2\x54\xfb\xe0\x44\x9a\x5c\x94\x93\x56\xd5\x14\ \x67\x61\xfd\x82\x62\x14\xe7\x65\xa0\xb9\x6b\x08\xc3\x49\x13\x86\ \x0b\xeb\xb1\x3f\x04\x23\x48\x66\x90\xb1\x4f\x41\xf5\x5a\x37\xac\ \x94\x0e\x44\x14\x00\x84\x7c\x79\x2b\xfb\xb8\x9e\xc1\x51\x3c\xfa\ \x7c\x0b\x46\x13\x29\x2c\xad\x2b\x51\xd5\x7a\xce\x00\x1c\x3c\x13\ \xb1\x92\xf1\x96\xa0\xb8\xe0\x60\x34\x62\xe0\x9a\x0d\x8b\x70\xb2\ \xa3\x0f\x2d\xed\x3d\x5e\x14\x53\xb2\x23\x6d\xe7\xa0\x8e\xd8\x2b\ \x29\x34\xeb\xbc\x01\xd2\x52\x5e\x9d\x3b\xc4\x21\xd9\x58\xd8\x9b\ \x54\x27\x40\xd5\x9a\x9f\xa4\xe7\xa6\x34\x19\x9f\xd4\xcd\x08\x2c\ \x28\x51\xc1\xff\xe0\xc4\xa1\x34\x9c\xe4\x52\x87\xa1\x8e\x18\x93\ \xc4\x38\x13\x92\xe2\x92\x20\x0a\xe1\x1b\xc8\x2c\x42\xe1\x38\x39\ \xbb\x2d\xd8\xd5\xd7\x8f\x45\xf3\x17\xe2\x55\xd7\x5e\xca\xbf\xf9\ \xeb\xf6\x06\x8e\xf7\x1c\x42\x6a\xf0\xa4\x03\x08\x4e\x6b\x29\x30\ \xdd\x0e\xc0\x05\xfe\xe6\x51\xf1\xda\x8f\x2d\x5d\xb4\xac\xf8\x3d\ \x6f\x7e\x23\xb9\x00\xcb\xd9\xec\x83\xbb\x60\x61\xc4\x20\x54\x15\ \x66\xe2\xca\x65\xa5\x88\x18\x02\xa7\xfb\xe3\x88\x27\x4d\x47\xf2\ \x4a\x6f\xfb\x40\xe9\x6b\x31\xc9\x14\x63\x52\x46\x0e\xe4\x0e\x81\ \xf2\x65\x7a\xe2\x0f\xb6\xfa\x6d\x63\x6b\x1f\x1e\xdb\xd9\x82\x86\ \x9a\x02\x14\xe7\x65\x4e\x18\xbc\x9b\x48\x54\x3f\x93\xc7\x8d\xe5\ \x04\x00\x20\x62\x08\x5c\xb2\xa6\x01\xdd\x7d\xc3\x38\x76\xb2\x53\ \x13\xcc\xe0\x80\x90\x46\x40\xad\x27\x54\x1c\x43\x42\xcc\x89\x14\ \xed\x7d\x0a\xa0\xe4\x6a\x9f\x5c\xe6\x68\xa8\x62\x1f\x7a\xbd\x49\ \x4a\x23\x33\x94\x1e\x2e\x77\x82\x24\x1a\xb2\x50\xe8\xce\xec\x53\ \x9d\x3d\xc7\x6f\x77\x2c\xbc\x63\x25\xc0\x53\x95\xa3\x53\x5b\xa8\ \x44\x72\xaa\xaf\x09\x87\x30\x42\x26\x2b\xa5\xc7\x39\x59\xc6\xe6\ \x67\xb7\xe2\xb3\x1f\x79\x07\xfd\xf5\xd1\x6d\xdc\xda\x9d\x98\x83\ \xe1\xa6\xa7\x00\xf4\x4f\x37\x20\x68\x4c\x73\x36\x91\x0b\x60\x8e\ \x28\x58\x7a\x47\x76\x71\xc3\x15\xff\xfb\xdd\xef\x10\x91\x98\xd6\ \x3e\x78\x58\x4a\x1c\x16\x59\x93\x26\xa3\xb6\x2c\x07\xeb\xe7\x17\ \x63\x56\x49\x36\x0e\x9c\xec\x87\xc9\xec\x61\x36\x9e\x67\x67\xd6\ \x2e\x30\x59\x1c\x43\x19\x54\x53\x56\x46\xf9\xc2\x1b\xbe\xfe\x1b\ \xb3\xed\xf9\x93\x29\x0b\xcf\xee\x6b\xc3\xf6\x23\xa7\xb0\x6e\x51\ \x15\xa2\x11\xe1\x75\x19\xa6\x7b\xca\x70\x22\x78\xca\x84\x80\x1b\ \xe7\xdc\xd6\x2e\xad\xc5\xfc\x39\xe5\x78\xf0\xe9\x7d\x88\x18\x02\ \x12\x33\x47\x11\x03\xd1\xb7\xf5\x91\xd7\x75\xe1\x90\xd7\xe6\x50\ \xa3\x55\x06\xfe\x74\x11\x10\xa8\x93\x84\x82\x54\x96\x9e\x27\xc0\ \x01\x06\x09\x01\x95\xbd\x27\x39\x29\x6d\xac\x57\x49\xc7\x43\xbb\ \xf3\x14\x7e\xfe\x14\xf2\x58\xd6\x5c\x10\x49\xec\x87\x50\xba\x71\ \x98\x44\x59\xa8\x57\xc3\xe8\x48\x1c\x27\x4f\x75\xe2\xbf\xbe\xf0\ \x51\xfa\xde\x3d\x9b\x4a\x53\xa6\x65\x72\xfc\xf4\xbe\xe9\x06\x04\ \xa7\xcb\x01\xb8\xc0\x5f\x29\x28\x7a\x1e\x17\xad\xf9\xd8\xdb\x6f\ \xbb\x2d\xb2\x66\xf9\x32\x22\x52\x17\x4b\x9d\x69\x1f\x7c\xe2\x58\ \x81\xff\x45\x96\x15\x64\xe2\x92\x25\x65\x28\xca\x89\xa1\xa3\x7f\ \x14\x03\x23\x09\xfb\xe2\x86\x0b\x14\x91\x77\xb1\xb9\x7d\x70\xa1\ \xad\xe3\xb2\xdb\x60\xec\x44\x05\x48\x69\x9e\x24\x45\x26\xa1\xd1\ \x4c\x8c\xc1\x91\x04\x1e\xdc\xd6\x84\x94\x69\x61\xf1\x9c\x12\x65\ \x81\xc9\xb9\x9c\x32\x9c\xec\x6d\x56\x45\x01\x2e\x5d\xb3\x10\xcf\ \xec\x6a\xc2\xf0\x68\x02\xc2\xa9\xad\x85\xb4\x91\x54\xc0\x2e\x7f\ \x7c\x50\x8e\xc1\x2e\x5d\x4e\x4b\xfd\x29\xb4\xce\xd7\xa9\xc3\x52\ \x3b\x51\xd6\x07\x90\x4b\x02\x9d\x69\xa7\x74\x76\x80\xb0\x15\x3f\ \xc1\x11\x05\x96\x00\x40\xf2\xd9\xa4\xda\xc4\x60\x60\x94\x9a\xc3\ \xbf\x17\xe5\x79\xd5\x3d\x69\x1a\xa7\x81\x02\xec\x45\x95\x56\xad\ \x9e\x83\x20\x42\x63\x53\x33\x6e\xb9\xe9\x3a\x64\x66\xc4\xf8\xf1\ \xed\xc7\x17\x60\xe8\xd8\x66\xc0\xea\x82\xad\x2a\x6c\xbe\x98\x1c\ \x80\xdb\xf6\x9b\x2d\x0a\x97\xde\x59\x58\x56\x7f\xde\xf7\xef\xbe\ \x8b\x92\x29\x84\x2e\xe9\x38\x97\x7d\x70\x92\x72\xd5\xaa\xe2\x2c\ \x5c\xb2\xa4\x0c\xc5\x39\x59\x38\xde\x39\x88\x64\xca\xd2\x52\x79\ \x67\x9a\xcc\xbb\xa0\x24\x83\x27\x7f\x02\x0d\xd2\x24\x9a\x0b\x7c\ \x78\xf7\x11\x2b\xa2\x18\x0c\xa0\xb1\xb5\x07\xf7\x3f\xdb\x88\x05\ \xb3\x8a\x51\x98\x97\x09\x21\x28\xa0\x3f\x30\x19\x90\x6f\xb2\x9f\ \xd1\x64\x6f\xcc\x40\x5e\x4e\x26\x6e\xb9\x7a\x05\x76\x1c\x38\x89\ \xae\xde\x01\x2f\x5d\xf6\x52\x63\x45\x24\xdb\x4f\xb9\x21\x2b\xed\ \x08\xd9\xfa\x54\xe0\xcf\xef\xd0\x50\x5a\x51\x0d\xc8\x62\xdf\xba\ \xf1\x83\xd2\x53\x84\x99\x02\xc6\xe7\x22\x79\x69\x85\x3d\x02\x86\ \x1a\x82\x4b\xe8\xa9\xbc\x54\xf7\x2b\x64\x20\xcd\x03\x91\x06\x38\ \x12\x85\x08\x9a\x86\x38\x8b\x94\x69\xe2\x91\xcd\x4f\xe3\xa7\xdf\ \xf8\x08\x7d\xe7\xe7\xf7\x47\xe3\x49\x13\x3c\xda\xb1\xd3\x29\x05\ \xa6\x45\x4c\x74\xba\x1c\x40\x0c\x40\x19\xc8\x58\x6d\x94\x6d\xbc\ \xeb\xab\x77\x7d\x1c\x15\x65\x15\xe3\xf6\xa5\xcf\x75\x1f\xdc\xfe\ \x50\x19\x55\xc5\x59\xd8\xb0\xa0\x0c\xf5\x15\x79\x38\xdc\x36\x80\ \xd1\x84\xe9\xef\xcf\x93\xc8\x2d\xea\x0e\xee\x74\xa8\xae\xd6\x2f\ \x97\xd1\x3f\x48\x72\xd3\x0c\x3c\xb3\xaf\x15\xbb\x8f\x74\x60\xed\ \xc2\x4a\x64\xc4\x8c\xb4\x72\xe5\x53\x41\xf9\xa7\xb2\xbe\x7c\x6c\ \x27\xc0\x48\x59\x84\x2b\xce\x5f\x88\x8c\x58\x14\x3b\x0e\x34\xc3\ \x70\xe7\x21\x64\x85\x5c\x29\xd5\xf5\xc0\x78\xa9\xf5\xa5\x6c\xfe\ \x94\x97\xed\xc9\xe0\x9d\x57\xbd\x4b\xdb\x5e\x59\x9d\xda\xf3\xb9\ \x00\x6c\x73\x09\x54\xca\x9f\x67\xf8\xfe\xb1\x1c\xa4\x37\xb3\x2c\ \x31\x46\x01\x2a\x38\x7b\x43\x45\x21\x22\x20\x24\x29\x09\x91\xca\ \x31\x50\x77\x0d\x42\x21\xa1\xb9\x41\x00\x21\x1b\xc8\x58\x71\x34\ \xec\x1f\x2b\x05\xa5\xfe\x81\x01\x34\xd4\x2f\xc0\x4d\x57\x5f\x8c\ \xdf\x3e\xb0\x6b\x89\x35\x70\xf8\x71\x80\x3b\xa6\xab\x2d\x68\x4c\ \x63\xf4\x9f\x63\x94\xac\xb9\x23\xbf\xa8\x66\xf1\x07\xee\x78\x2b\ \x84\x10\xde\x82\x87\xe9\xec\x83\x4f\x25\x42\xca\x8f\x73\xbf\x3c\ \x41\x40\x49\x5e\x06\x2e\x59\x5a\x81\xa2\x9c\x0c\x74\x0f\x8c\xa2\ \x67\x30\xee\x8d\x22\x2b\xa0\x97\x82\xfc\x93\xd2\x26\x0b\xf2\x09\ \x34\x92\x11\xfc\xe5\x1c\x44\x40\xff\x50\x1c\xf7\x3d\x73\x04\xa6\ \xc5\xa8\xaf\x2e\x54\xb4\x07\xc6\xca\x68\x26\x53\x0e\xe8\x0e\x74\ \x4a\x35\x9d\x94\x7a\x2f\x9d\x57\x85\xaa\xd2\x42\x6c\xdf\x77\x1c\ \x0c\xcb\x07\xf4\x84\xa4\x83\x2f\x9d\x8f\xf0\xda\x70\xec\xf7\xd6\ \x59\x04\xa8\xbc\x3e\xd6\xc2\xfe\x52\x11\x02\x84\xd3\x62\x95\x23\ \x23\x7b\xfd\x77\xdb\x58\x84\x90\xb2\x2e\x37\x9b\x12\x50\x06\x71\ \x7c\xb1\x0f\x0a\xf0\x06\x98\x2d\x49\xf4\xd3\xcf\x32\x3c\x2e\x04\ \xc3\x13\xf3\x20\x49\x24\xd5\xcd\x08\xd9\xcd\x30\x21\x4d\xfb\xc9\ \xe8\xbe\xcb\x63\x90\x96\x87\x84\xcb\x96\xa9\xef\x53\x95\x37\xb3\ \xbb\x02\x2d\x27\xdb\xf0\xfe\xb7\xbf\x11\x3f\xb8\xe7\x3e\x24\xac\ \x08\x78\xa4\x75\xda\xb2\x00\x63\x9a\xa2\x7f\x29\x80\x45\x9c\xbb\ \xec\x83\xff\xfc\xf6\x3b\x63\x2b\x17\x2f\x72\x26\xcb\xa6\x3f\xad\ \x9f\x4c\x84\x1c\x3b\x1b\xf0\x4b\x93\xca\xa2\x2c\x5c\xb8\xb8\x1c\ \x73\xab\xf2\x71\xf0\x64\x1f\x52\xa6\x25\xf5\xb0\x55\xe4\xdf\x5d\ \x11\x0d\x6f\x72\x8e\xd5\x19\x77\x37\x0a\xb9\xdb\x78\x95\xd1\x58\ \xfb\x33\x31\x0c\x42\xe3\xc9\x1e\x3c\xb0\xe5\x28\x16\xcc\x2a\x46\ \x71\x7e\x96\x87\x44\x4f\x54\xad\x78\x3c\x21\xd3\x33\xcd\x00\xe4\ \xcf\xc9\xb2\x18\xb5\xd5\x25\xb8\x64\xed\x42\x3c\xf8\xcc\x7e\x7b\ \x59\x29\xfc\x54\x9f\x49\x05\x52\x3d\x6a\xb1\xa0\x60\xda\xab\x50\ \xb6\x09\x42\x29\x25\x9c\x76\xad\x20\x85\x2a\x2c\xaf\x02\x27\xa5\ \xef\xae\x89\x75\xb0\xba\x3d\xd9\x36\x5a\x11\x32\x02\xad\x52\x79\ \x3d\xfc\xc7\x15\x14\x95\xc6\x7a\x11\x86\xcb\xc8\x35\x3f\xa5\xeb\ \x68\x20\xd8\x01\x90\x6a\x02\x0f\xf1\x77\x17\xd7\xb8\xd9\x82\x3c\ \xe5\xea\x38\x8d\xe3\x2d\x27\xb1\x7e\xdd\x2a\xcc\xaf\x9f\x83\xbf\ \x3e\xfa\xfc\x6c\x0c\x37\x3e\x0c\xa0\x7b\x3a\xb2\x00\x63\x1a\xa2\ \x7f\x36\x80\xd9\x46\xf1\xca\x7f\xaa\x9e\xb3\xf4\xbc\x2f\x7e\xe4\ \x9f\x61\x5a\xe7\x36\xad\x3f\x73\xc0\x8c\x60\x5a\x8c\xe2\xdc\x4c\ \x5c\xb4\xa4\x12\x0d\x55\xf9\x38\xd1\x39\x88\xbe\xe1\x04\x0c\x11\ \x86\x02\x69\xf4\x0d\x8d\x02\xab\xd7\x99\xca\xfc\xb8\x32\xbe\xcc\ \x78\x72\xcf\x09\xec\x39\xda\x81\x05\x73\x4a\x51\x90\x13\x53\xf6\ \x1a\x4e\xd7\xa2\x91\xe9\x70\x02\xcc\x84\xdc\xec\x0c\x5c\x7b\xe1\ \x72\x1c\x6a\x6a\x43\x7b\x57\x9f\x9a\xe1\x69\x0b\x45\x48\x5e\xc9\ \x1d\x36\xee\x27\xb1\xad\x14\x1e\x81\x42\xc2\x92\x28\xb4\x08\x76\ \x15\xc6\xd2\xf0\x57\xf3\xfa\x74\xda\x1f\x2a\x5f\x20\x38\x58\x26\ \xa1\xf7\xac\x2d\x35\x0e\x21\x19\x29\xa9\x3c\x85\xf0\x8e\xbc\x49\ \x55\xc7\x99\x09\xa1\xb5\x53\x43\x56\x9a\x10\x23\x1a\x89\x60\xff\ \xa1\x23\xb8\xfb\xa3\xef\xc6\x2f\xef\xdb\x1c\x1b\x1c\x35\xa3\x3c\ \x72\x6a\xbb\x93\x05\x9c\x51\x47\xe0\x4c\x1d\x40\x14\x40\x29\x44\ \x6c\x85\x28\x5a\xf3\xc1\xb7\xbd\xfe\x75\x91\x65\x0b\x17\x51\xba\ \xda\xf4\x6c\xa5\xf5\x93\x8d\x90\x61\x8f\x93\x23\x4b\x51\x6e\x06\ \x2e\x5e\x56\x81\xf2\xc2\x1c\xa7\x34\x48\xc0\x70\xd7\x5e\x49\x43\ \x21\x44\x50\xa7\xcd\x14\x89\x29\xa9\x46\x4e\x83\x4a\xb3\xab\x19\ \x3f\x38\x8a\x4d\x5b\x8e\x80\x2d\xc6\xec\x8a\x02\x64\x46\x0d\x84\ \x6d\x39\x9e\x28\x69\x6a\xba\x1d\x80\xfc\x7a\xd1\x88\x81\xeb\x2e\ \x5e\x8c\x9e\x81\x38\x0e\x36\xb5\x49\x7b\xfc\xc6\x58\x1e\xc2\x63\ \x21\xe2\xda\xc2\x0f\x0d\x24\x4b\xd7\x73\x0a\xa0\xe8\x21\x72\xde\ \x5e\x1f\x5e\xf8\x8b\x56\x5d\x23\xf3\xae\x01\x92\xe9\xcb\xfa\xb4\ \x20\x79\x93\x92\xe4\xfd\xb7\xbb\x53\x90\xfc\x6e\x82\x34\x71\x29\ \x84\xa6\x33\xe0\x9d\x83\x9c\x4d\x90\x8f\x8f\x90\xbb\xbf\x90\x94\ \x92\xc4\x7b\x5e\x87\xc2\xdc\xd7\xd7\x87\xab\x2e\xbb\x14\xb9\xd9\ \x39\xfc\xd8\xd6\xa3\xf5\x3c\x74\xec\x71\xb0\x79\xfa\x4c\xb3\x80\ \x33\x71\x00\xc2\xa9\xfd\x67\x89\x9c\xda\x57\x5a\xd1\xb2\x0b\xbf\ \xf1\x6f\x9f\x22\x11\xb2\x7e\x6b\x22\x29\xeb\xf4\xa4\xf5\xd3\xd7\ \x3e\x33\x4d\xa0\xa2\x30\x13\xeb\x17\x56\xe0\xbc\x86\x12\xec\x3b\ \xde\x8d\x44\xca\x94\x10\x6a\xf6\xc1\x42\x35\xa6\x79\xe9\xa1\x37\ \x50\xe4\xb6\xfe\xa0\x2f\xa7\xf0\x53\xc1\x88\x20\x34\x9e\xe8\xc1\ \x43\x5b\x8f\xa1\xaa\x24\x0f\xd5\xa5\x79\x21\x4e\x6a\xb2\xad\xd0\ \xb3\x73\x4b\xa6\x80\x35\x4b\x6b\xb1\xa0\xb6\x02\x4f\x6c\x3b\x28\ \x01\x9d\x9a\xd0\x3e\x43\xf9\x1c\x14\xb5\x31\xa7\x1d\x27\xcb\xb8\ \xb9\x53\x7b\x42\x22\xe3\x08\x79\x74\x56\x6b\x11\xb2\xb7\x85\xd4\ \xa9\xb1\x85\x36\x66\xac\x29\x0a\x05\xd4\x90\x21\x4d\xfb\x09\xff\ \x35\x6c\x79\x42\x9d\x07\x42\x36\x36\x41\x5a\xdb\x4f\x22\xef\x40\ \xe8\x24\x24\x04\xcf\x41\x11\x22\xd1\x86\x8c\x58\x1f\x91\x76\x15\ \xad\x09\x6c\x31\xf6\xec\x3f\x88\x2f\x7e\xe2\xdd\xf4\xf9\x6f\xfc\ \x32\x2a\x10\x6f\xe3\x44\xcf\x21\x87\x17\x30\x65\x2c\xc0\x38\xc3\ \xe8\x5f\x0c\x60\x3e\x4a\x36\x7e\xe1\x13\xef\x7b\x5f\x64\xc5\xa2\ \x79\xb0\x78\xea\x29\xeb\xb9\x56\xdb\x1d\xaf\x34\x71\x47\x3c\x73\ \x33\x63\xb8\x64\x45\x35\xea\x2b\xf3\xd1\xd5\x3f\x82\x8e\xbe\x51\ \x18\x12\x8f\xc0\xeb\x61\x93\x24\xff\xcc\x32\xf9\x43\x67\xcf\x69\ \x19\x82\x87\x08\xdb\xaf\xf7\xec\xbe\x16\xec\x6e\x6c\xc7\xac\xf2\ \x02\x94\x15\x66\xd9\xc2\x9e\x52\x36\x30\x5e\xc4\x3f\xdb\x0e\xc0\ \xe5\x33\xd4\x94\x17\x61\xe3\xaa\xf9\x78\x7a\xc7\x11\x47\x77\x90\ \xd5\x0d\xb9\x92\xa2\xab\x5e\x87\x93\xb6\xb1\x58\x66\xd0\xb9\xc9\ \x78\xa0\x72\xd0\xcb\x01\x6d\x2c\x39\x88\xb4\x53\x1a\x32\x0f\x10\ \x90\xee\x06\x05\xb5\x10\xa5\x67\xa1\xb1\x9e\x17\xd0\x29\xfd\x90\ \xc6\x4a\xd5\xae\x10\xa5\xe7\xff\x28\x5d\x92\x10\xaa\x72\xeb\xa9\ \x53\xb8\xf0\xfc\xf5\x58\xbe\x64\x01\xfe\xfa\xf4\x91\xf3\x30\x78\ \xf8\x7e\xd8\x83\x42\x53\xe6\x05\x18\x67\x10\xfd\xb3\xec\xbe\xff\ \x8a\xb7\x16\x94\xd6\xaf\xfd\xe4\x7b\xdf\xc3\x42\x18\x34\x11\xb6\ \xdb\x54\xfb\xd9\xe7\x5a\x6d\xd7\x4f\xed\xec\xfb\x8a\xf3\x32\xb1\ \x71\x49\x05\xea\x2a\x0a\xd0\xde\x33\x84\x81\xa1\x84\x26\x8e\xc1\ \xde\x48\x99\xac\x13\x07\x49\x88\xc4\xd7\xcf\x60\xb8\x10\x98\x9a\ \x7e\x32\x0c\x83\x30\x30\x14\xc7\x23\xdb\x8f\x62\x24\x6e\xa2\xbe\ \xba\x08\x99\x19\x86\x77\x1e\x13\x5d\x51\x7e\x76\x9d\x80\x9d\xe8\ \xe7\x65\x67\xe2\xa6\xcb\x56\x63\xd7\xc1\xe3\xe8\xec\xe9\xb7\x55\ \x75\x75\x6c\x84\x10\x58\xea\xa1\x80\x72\xd0\x76\x09\x06\x80\x43\ \x0a\x9f\x17\x08\x94\x0a\xe4\x95\x20\x61\x22\x20\x81\x1d\x7e\x08\ \x96\x70\xaa\x8f\xa0\x20\x21\x89\x82\x5d\x12\x9d\xec\x14\xba\xef\ \x30\xb4\xfc\x51\xdf\x84\x2c\x45\x16\xe4\x08\x10\x8c\x88\x81\xbe\ \xfe\x01\xbc\xeb\xad\xb7\xf1\x4f\x7f\xf3\x40\x34\x9e\x44\x92\x47\ \xdb\x77\x9f\x09\x16\x30\x55\x07\x10\x01\x50\x04\x60\x01\xe7\x2f\ \x7f\xff\x4d\x57\x5f\x9b\x77\xe5\x05\x1b\x14\x7a\xdb\xd9\xdc\x8d\ \x37\xd9\x3e\xf8\x74\x72\xeb\x2d\xcb\x76\x04\xeb\x17\x55\xe2\xfc\ \x85\x95\x38\x74\xa2\x1b\x43\x23\x49\x7f\x2c\x54\xa2\x08\x78\x5b\ \x79\xe4\x65\x1a\xca\xdc\xba\xdf\x3f\x77\x19\x87\xf2\x6a\x09\x21\ \x04\x9a\xda\x7a\xb0\x69\xcb\x11\xe4\x64\x46\x51\x5f\x5d\xa4\xb4\ \x0c\x27\xf2\x1e\xce\x81\x2b\x80\x10\x84\xcb\xd7\x2f\x41\x3c\x91\ \xb2\x71\x01\x79\x4a\x50\x23\x02\x31\x58\x43\xd3\x9d\x2e\x02\xab\ \xc8\x2a\xb1\xac\xde\xe9\xf3\x06\x98\x09\xe1\xd4\x62\x69\xeb\x91\ \x0b\xca\xc9\x03\x42\xb2\x5c\x19\xb3\x16\xb9\x7d\x26\xa8\xb2\x37\ \x50\xfa\x42\x59\xaa\x07\x64\x59\x7a\x26\x0e\x69\xee\xcb\x53\x44\ \x24\xb5\x8f\x65\x85\x65\x25\x8d\xf1\x89\x45\xac\xe5\x19\xd2\xcc\ \x01\x09\xe0\xe0\xe1\xa3\xf8\xfb\x5b\x6f\xa6\x8e\xce\x5e\xec\xd8\ \x7b\xbc\x1c\xc3\x47\x1f\x75\x3a\x02\x23\x98\xc2\xa4\xa0\x31\xa5\ \x6f\xdc\x96\xfa\xaa\xa2\xec\xd9\x37\x66\x14\xce\xbf\xfe\xc7\xff\ \xf1\x85\xb4\x17\xe5\x99\xd4\xe7\x13\x05\xbe\xa6\xf2\xb8\xc9\xee\ \xf3\x93\x89\x1e\xee\x7f\x67\x66\x44\x70\xf1\xf2\x6a\xcc\xad\x2a\ \xc0\xe0\x48\x02\x6d\x5d\x83\x88\x18\xa4\xe8\xc0\xa9\x82\x1a\x1a\ \x26\xa8\x49\x62\x83\x82\x29\xaf\xdb\x72\xda\x79\xa8\x0d\x7b\x8e\ \x9e\x42\x55\x49\x3e\xaa\x4a\xb3\xe1\x74\x2a\xc7\xed\xae\x9c\xfd\ \x4c\xc0\xff\xf7\xda\x65\xb5\xa8\x2a\x2d\xc6\xb3\xbb\x8f\x28\x42\ \x9b\x60\xb7\x4e\x66\xaf\x67\xce\x8a\x63\x08\x53\xe2\xb5\x5b\x78\ \x82\xa1\xf2\x2a\x04\xa7\xd9\xc8\xab\x46\x64\xe1\x1a\xa7\xcc\x43\ \x12\xaa\xfa\x91\x6b\x64\x42\xa2\x37\x2b\x9b\x7f\xd9\x6f\x2f\xda\ \x6d\x4d\x89\x5c\x24\x45\x67\x21\x8d\x0e\xfa\xda\x02\x32\xbd\x99\ \xd5\xa9\x52\x6d\xb3\x95\x7c\xbf\xdc\xa2\x0c\x0c\x56\x31\xc1\x88\ \x08\xec\xde\x7b\x00\x5f\xfb\xec\x87\xf1\xcd\x9f\xff\x29\xcf\x4c\ \x0c\x34\x23\xd9\x7f\x18\xfe\x8c\xc0\x59\x77\x00\x06\x6c\xa1\xcf\ \xba\x48\xd9\xc6\xcf\xdc\xf2\x8a\x9b\xf2\x2f\x59\xb7\x06\x16\x4f\ \x75\xab\xcd\xc4\xfb\xd9\xe3\x19\xe4\x64\xa7\x0c\xcf\x0c\x53\xb0\ \xef\x30\x2d\xa0\x38\x3f\x13\xeb\x16\x56\x60\xc5\xdc\x32\x34\xb5\ \xf7\x63\x78\x34\xe1\xa9\xbe\xe8\x1d\x02\x79\x7d\x95\xdf\xfb\x25\ \x3f\x03\x10\xb2\xd7\xf7\x81\x26\x5b\xa9\x38\x8e\x87\xb7\x1d\x41\ \x67\xcf\x08\xe6\xcf\x2e\x41\x56\x46\x44\xe9\x16\xbc\x10\x0e\x40\ \x69\xa5\x9a\xc0\x9c\xaa\x12\x6c\x58\x39\x1f\x4f\x6d\x3f\x80\x64\ \x2a\xa5\x5e\xcc\x2e\xaa\xed\x58\x91\x47\x12\x72\x28\xd7\x1e\xf9\ \x52\x90\xa2\xee\x6c\xdf\xe5\x2e\x08\x21\x55\xd9\xd7\x73\x1e\x3e\ \x4f\xc0\xdf\x45\xa8\x89\x6f\xb8\x09\x85\x34\xd3\xe1\x97\x18\x3a\ \x25\x99\x14\xb2\x8e\xb2\x48\x45\xd1\x2f\x24\x75\xe1\x09\x85\xac\ \x30\x87\x56\x16\x84\xed\x1d\xd4\xb5\x2b\x09\x01\x2c\xc5\x1e\x2d\ \x06\x7a\x7a\xfb\xf0\xca\xeb\xae\xc2\xd0\x48\x1c\xcf\x1f\x3e\x5d\ \x6f\x0d\x34\xba\x58\x40\x7c\xb2\x65\x80\x31\x85\xe8\x6f\xb7\xfe\ \x62\xc5\x1b\x90\xd3\xf0\xba\xf7\xbe\xf9\x76\xaa\x28\x2d\xa7\xa9\ \x30\xfb\xa6\x5b\x09\xe7\x4c\x1e\x37\x39\x70\x30\xf8\x38\xd3\x62\ \xe4\x65\x67\x60\xe3\x92\x2a\xac\x5f\x5c\x8d\x13\xa7\x07\xd0\xdd\ \x3f\x22\xed\xe8\x83\x46\xf4\xa1\xf0\x0c\x40\x1f\x20\x53\x47\xdc\ \x11\x31\x04\x4e\x9e\xee\xc5\x23\xdb\x8e\x82\x88\xb0\xa4\xbe\x14\ \x96\x35\x31\x15\xa0\x73\x91\x0d\x30\x33\x0a\x72\xb3\x71\xed\x45\ \xe7\x61\xdb\xbe\x26\xf4\x0e\x0c\x6a\xa3\xc5\x5a\x3b\x8f\x83\xbd\ \x7d\x6f\x11\x48\xc8\x92\x11\xc8\x9b\x86\x39\x0d\x98\xa6\x7d\x78\ \xac\xf7\x0f\xd9\xef\xe2\xe8\x59\x9a\xc7\xfc\x54\x84\x46\xa4\x91\ \x71\x26\xad\x2c\x90\x9f\x43\x26\x82\x49\xef\x48\x06\xf5\x58\xb2\ \x66\x7d\x17\x21\xc9\x12\xe9\x0a\xb8\xa4\x30\x2e\x53\x29\x13\xe5\ \x65\x65\xd8\xb0\xfa\x3c\xbe\xe7\xde\x47\x73\x38\x7e\x7a\x0b\xcc\ \x91\x16\xd8\x7a\x01\xd6\xd9\x74\x00\x9e\xe0\x87\xc8\xa9\xbd\x29\ \x96\x57\xb5\xf6\x13\xef\x79\x17\x4d\xb7\x41\x9e\xa9\x12\xce\x54\ \xc0\xc1\xb1\x9e\x73\xbc\x72\x41\x06\x0b\x85\x00\x32\x62\x11\x5c\ \xb8\xb4\x0a\xf3\x66\x95\x60\x38\x9e\x42\x6b\xe7\x80\xef\x08\x58\ \x9d\x8d\x97\x87\x87\xf4\xa5\x1b\x0a\x05\x59\x9b\xbf\xb7\x98\xb1\ \xfb\x48\x1b\xb6\x1f\x68\x45\x79\x71\x2e\xe6\x54\xe4\x7a\x04\xac\ \x17\xf2\xe6\xe9\x0b\x08\x81\x1b\x2e\x5d\x81\xfe\x81\x38\xf6\x35\ \xb6\xd8\x23\xd1\xac\x47\x40\x0e\x05\xdf\x94\x89\x5b\x69\xd7\x37\ \x21\xb8\x3c\x44\xd5\x0b\x14\xce\x94\xa2\x3a\x0c\xa4\x67\x6d\x5e\ \x26\x22\x7c\xa6\x26\xc9\xdd\x00\xa9\x65\xeb\xae\x41\x17\x5e\x36\ \x62\x79\x8a\x54\x24\x95\x05\xbe\xda\x14\x3b\x7c\x11\xbb\x36\x10\ \x9a\x1a\x95\x27\x18\xc2\xec\xe8\x0c\xc8\x2d\x4f\x48\x42\x41\xce\ \x3b\x12\x0c\xb0\xf0\x87\x9c\x9c\xbf\xed\x3d\x70\x10\x9f\xfe\xd0\ \x9d\xf4\x95\xef\xff\x4e\x58\xc9\xa1\x36\x8e\x77\xee\x85\xbd\x4b\ \x60\x52\x2d\xc1\xc9\x3a\x00\x03\xb6\xdc\x57\x2d\x17\xac\xf8\xd7\ \x7f\x7c\xd3\x5b\xf2\xd6\xae\x58\xa2\x2c\xd4\x9c\x0a\x09\x67\x32\ \xd9\xc0\x78\x69\xfd\x58\x84\xa3\xa9\x88\x74\x4e\x9e\x8e\x6c\xff\ \x47\xca\x04\x8a\xf2\x32\xb1\x7a\x7e\x05\x2e\x58\x36\x1b\x47\x4e\ \xda\x60\xa1\x2c\x36\xaa\x4c\xb6\x29\x32\xd6\x1c\x5c\x33\xad\x24\ \x02\xf6\xf1\x11\x02\x06\x86\xe3\xd8\xbc\xf3\x18\x8e\xb5\xf6\x60\ \xc5\xbc\x2a\x44\x23\x86\x04\x62\xbd\xb0\xe9\x80\x69\x32\xd6\x2d\ \xaf\x47\x4d\x65\x19\xb6\xed\x3d\xea\xb0\x1c\xd5\xa0\x4e\x24\xed\ \xe0\xf3\xb6\x03\x0b\x55\x80\x43\x38\x60\x9e\x64\xd5\x2e\xa9\x87\ \x05\xa9\xbb\x08\x01\x65\x36\x00\x12\x21\x88\x9d\xd9\x04\x17\x78\ \xb4\x19\x42\xd2\x4c\x03\xfc\xba\x9c\x9d\xb2\x43\x59\x43\x8e\xa0\ \x42\x12\x39\x35\x9b\x4b\x29\x56\x7a\xfb\xca\x4c\x43\x70\x75\x39\ \x24\x45\x61\x45\xbc\x84\xf4\x25\x25\x9a\xb3\x00\x63\x68\x78\x04\ \xab\x96\x9f\x87\xca\x8a\x0a\x3c\xbe\xe5\x40\x35\x86\x8f\xfd\xc5\ \x29\x03\x46\x27\x93\x05\x4c\xc6\x01\x10\x80\x0c\x00\x65\x94\x51\ \x72\x79\x66\xc9\xb2\xd7\x7c\xe1\x23\x1f\x42\xc4\x88\x4e\x8b\x21\ \x4f\x57\x16\x31\xd6\x73\x4e\x86\x8e\x3c\x55\x67\xa4\xff\xb6\x98\ \x91\x11\x8b\x60\xe3\xb2\x59\x58\xb7\xb8\x1a\x7d\x43\x71\xb4\x9c\ \xee\x77\x36\xf7\x92\x92\xd5\xca\x9d\x03\x95\x48\x23\x39\x0c\x69\ \x15\xb6\x1b\xfb\x22\x44\x68\xef\x1a\xc0\x63\xdb\x8e\x60\x34\x91\ \xc2\x9a\xc5\x15\x70\x35\x18\x5f\xe8\x6c\xc0\xb4\x18\xb5\xd5\xa5\ \xb8\x70\xf5\x22\x3c\xb1\x65\xaf\x3d\x67\x21\x47\xe4\x31\x53\x78\ \x04\xf6\xfd\xf9\x03\x57\xa4\xf5\xe1\xf5\x01\xfd\xf0\xa7\x53\xdd\ \x28\xd4\xe5\x28\x7a\x83\x81\xd2\xfd\xd6\x77\x06\xaa\x78\x4f\xf8\ \xab\xa5\xb9\x57\xdf\x95\x98\x8e\x20\x40\xc1\x52\x10\x00\xde\x71\ \xfb\xeb\xf0\xfd\x5f\x6d\xca\x33\x87\x4f\xed\x81\x39\x72\x0c\xfe\ \x1e\x81\x69\x77\x00\x2e\xf3\x6f\x8e\x51\xb2\xe6\x9f\x1a\xea\x17\ \xd6\xbd\xee\x15\x37\x20\x6c\xa6\x7d\x22\xe9\xf9\xd9\xd8\x8d\x37\ \x99\x29\x43\xf9\x75\x27\xaa\x55\x30\x95\xc7\xc9\xbc\x88\x8c\xa8\ \x81\xb5\x8b\x2a\xb1\xbc\xbe\x02\x43\xf1\x24\x4e\x75\x0d\xfa\x2d\ \x42\x37\x7a\x90\x13\x55\x1c\x76\x9b\x3f\x75\xc6\xea\xe6\x73\x12\ \xde\x3e\x04\xb7\x5c\x4d\x99\x16\xf6\x1f\x6b\xc7\xe3\x3b\x8e\xa3\ \xaa\x34\x1f\xd5\x65\xb9\x30\xad\x17\x36\x1b\x70\xdb\x6a\xb9\xd9\ \x99\xb8\x72\xe3\x0a\xec\x3f\x7a\x12\x9d\xdd\xfd\x92\xb2\xaf\x3c\ \x3a\x9b\x6e\xa8\x46\xed\xaf\xfb\xec\x3a\x96\xc0\x37\x77\xde\x5f\ \x65\xfe\x01\x63\xcc\xdf\x87\x6c\x0d\x22\x20\x64\x3f\xa1\x7c\xed\ \x90\x26\xe2\x21\x67\x19\x1c\x78\xbc\x2e\x82\x12\x26\x0e\x22\x23\ \xfd\x7a\x56\x48\xa1\xd7\xb1\xfd\xb7\xd3\x5d\x9d\xd3\xd4\xb7\x00\ \x00\x20\x00\x49\x44\x41\x54\xdd\x78\xeb\x6d\xaf\xc5\x1f\x36\x3d\ \x85\xce\xfe\x64\x8c\x87\x9a\x9f\x02\xd0\x0b\x5b\x3c\x94\xa7\xd3\ \x01\x90\xd2\xfb\xcf\x59\x78\xc7\xdf\xbf\xe6\xd6\xac\x95\x4b\x16\ \x93\x57\xa7\x80\x26\x15\xc9\x27\x83\xd6\x4f\x26\xad\x9f\xee\x29\ \x43\xbd\xe3\x30\xd5\x2c\xc2\xfd\xe2\x2c\x0b\xc8\xcd\x8a\x61\xd5\ \xfc\x4a\x5c\xb1\xa6\x1e\xc7\x4e\xf5\xa2\x77\x70\x54\xc5\xfb\xc8\ \x17\xae\xb4\x09\x44\x0c\x95\x3f\xa7\xa9\xd5\xb8\x2d\x2b\x01\x18\ \x42\x60\x34\x91\xc0\xd3\xbb\x9b\x70\xb0\xe9\x34\xd6\x2f\xaf\x85\ \x38\xf7\xe4\x80\x50\x5c\x20\x1a\x31\x70\xc5\x86\xe5\x68\x69\xeb\ \xc2\x89\xf6\xae\xe0\x44\x21\xd2\xed\x22\x84\x72\x3f\xcb\xe9\xb2\ \x34\x78\x14\x96\x66\xb3\x34\x51\xc8\xb2\x80\x47\xc8\xce\x41\x59\ \x95\x87\x49\x1d\xe7\x56\x67\x1a\x48\xd9\x03\xc8\xca\xf0\x13\x69\ \xec\x50\xed\x1c\x64\x29\xb3\xc0\x16\x24\x7f\xb4\xd8\xa5\x00\xbb\ \x17\xb8\x87\x6d\xc0\xc7\x2e\xfa\x06\x06\xb0\x72\xf9\x52\xe4\xe7\ \x17\xf0\xc3\x9b\x77\xe4\x62\xf8\xe8\xc3\x00\x3a\x1d\x4e\xc0\xb4\ \x3b\x80\x0c\x00\x15\x88\x16\x5c\x80\xac\xfa\x57\x7d\xf3\xdf\x3f\ \x43\x3b\x9a\x7b\x51\x9c\x13\x43\x76\x4c\xc0\xe2\xa0\xdc\xd5\xd9\ \xae\xcf\x27\x9b\xd6\x4f\x77\xe7\x60\xea\x00\xa7\x1d\xb1\x0c\x21\ \x70\xc1\xb2\x1a\xac\x5e\x50\x0d\xd3\xb4\x70\xac\xb5\x1b\x42\xa1\ \x8d\x4a\x10\x97\xd2\x49\x70\x1c\x02\xc3\x5b\xd7\x65\x93\xe1\x59\ \x01\xcb\x3b\x7b\x87\xf0\xc0\xd3\x07\x30\x30\x14\xc7\xca\x85\x55\ \xca\x77\xf4\x42\x3a\x82\x8b\xd7\x2c\x44\x45\x49\x11\x9e\xd8\xb6\ \x17\x91\x88\xa1\x24\xbe\xaa\x31\x0a\x65\x32\x10\x8a\xf2\xaf\x0b\ \xe4\x0b\x2f\x3f\x25\x62\xa5\xab\x40\xa1\x17\x05\x6b\x4a\x41\x0e\ \xb8\xe6\x8a\x80\x28\x4e\x81\x94\xed\x47\xee\xdc\x01\xb1\x5a\x36\ \x90\xde\xe3\x97\x5b\x8b\x90\xfb\xfa\x7a\x54\x0f\xc7\x05\x64\xf4\ \x92\x90\x7e\x30\xca\x30\x04\x0e\x36\x36\xe2\x8b\x9f\x78\x1f\x7d\ \xf1\x9b\xff\x93\x8d\x64\xc7\x0e\x58\xf1\xe3\x93\xe1\x04\x4c\xd4\ \x01\xb8\x82\x9f\xb3\x8c\xb2\x8d\x9f\xb8\xee\xaa\xeb\xcb\x2f\x38\ \x7f\x23\x36\xed\x3b\x85\xad\xcd\x3d\x68\xee\x1e\x45\x44\x10\x0c\ \x21\x90\x93\x61\x04\xf6\xae\x4d\x24\x42\x9e\x8d\x25\x1a\x67\x5b\ \x82\xec\xcc\xe8\xc8\x3e\x8f\x20\x3b\x33\x82\xf3\xe6\x95\x63\xc3\ \xd2\xd9\xe8\x1b\x8a\xa3\xab\x6f\x18\xa6\xc9\x30\x1c\x41\x09\x4f\ \x79\xd6\xd1\xd9\x52\xfa\xd0\x0a\x93\x50\xa2\x16\x3b\xe0\x98\xc9\ \x16\x1a\x4f\x9c\xc6\x63\xdb\x8e\xa0\xb6\xaa\x18\xe5\x45\xb9\x67\ \x77\xdf\xf4\x04\x6e\x16\x03\xf5\xb3\xcb\x70\xc1\xaa\xc5\x78\xf6\ \xf9\x43\x88\x27\x12\x5e\x84\x03\xe0\xed\x22\x04\x3b\x19\x90\xbb\ \x74\x44\x92\x6b\xf3\x53\x79\xcb\x79\xff\x36\xf6\xee\x2e\xfa\x51\ \x25\xc0\x21\x6d\xf4\x95\xa6\xf9\xb4\x52\x8d\xd2\x50\x7f\x95\xa0\ \xa6\xa9\xfd\xca\x29\xb9\x02\xf6\x49\xd6\x1b\x0a\x00\x62\x0c\x35\ \x64\xa8\xcf\x45\x3a\x6f\x80\x7c\x92\xd1\xd0\xd0\x10\x6e\xba\xee\ \x5a\xb4\x9e\xee\xc5\xc1\x96\xfe\x6a\x1e\x6a\x7a\xc0\xe9\x06\x4c\ \xa8\x0c\x98\xa8\x03\x88\x02\x28\x82\x91\xbd\x3a\x52\xb4\xfc\x1d\ \x1f\x78\xdb\x5b\x90\x34\x72\x70\xbc\x6b\x18\x51\x21\x30\x9c\x48\ \xe1\x78\xd7\x30\xf6\x9f\x1a\xc0\xae\x13\xfd\x00\x80\x8a\xfc\x0c\ \xe5\x83\x99\x4c\x9d\x1d\x16\xe5\xcf\x66\x16\xf1\x42\xd3\x91\x85\ \xb0\xc1\xb2\xcc\x58\x14\x2b\xe7\x57\xe2\xca\x75\x0d\x38\xdd\x3b\ \x84\xd6\xce\x7e\x7f\xc2\x8d\xc9\x5b\xa3\xc5\xd2\xce\x02\x79\xa7\ \x1d\x74\x84\xdd\x59\xe6\x21\x88\x90\x4c\xa4\xf0\xd4\xee\x63\xd8\ \x71\xa0\x05\xeb\x97\xd7\x21\x62\x18\x2f\x68\x36\x60\x59\x8c\x82\ \xbc\x1c\xbc\xf2\xca\x75\x78\x6e\xd7\x11\xf4\x0d\x0e\x6b\x9b\x7f\ \xc9\x26\x45\x49\xa2\x61\x6a\xba\x4e\x4a\x1b\x91\x1d\x4c\x40\x78\ \xdb\x85\xd4\x94\x42\x9e\x4b\x60\xf6\x49\x3e\x1e\x95\x97\xd9\xaf\ \x27\x58\xd7\x06\x60\x75\x44\x89\x35\x30\x50\x9b\x1c\xf4\x97\x87\ \xf8\x2b\xc9\x3c\xa1\x14\x9d\x6e\xec\x3d\x8e\x02\xf7\xab\x28\xa8\ \x24\x60\x02\xff\xdc\xd9\xb2\xb0\x78\xc1\x02\xac\x58\xb2\x10\xbf\ \xbd\xff\xd9\x72\x6b\xf0\xf8\x63\xe0\x64\x2b\x26\x38\x26\x3c\x11\ \x07\xe0\xa6\xff\x55\x22\xaf\xe1\x46\xc4\x4a\x36\x7c\xfc\x5d\xef\ \xc4\x53\xc7\x7a\x30\x9c\x32\xd5\x30\x44\x80\x69\x59\x68\xe9\x19\ \xc1\x8e\x96\x3e\xb4\x74\x0f\x63\x30\x9e\x42\x5e\x46\x14\x79\x99\ \xf6\xf2\x83\x74\x3a\x78\x67\x73\x89\xc6\x0b\x29\x41\x36\x91\xc7\ \xc9\xe9\xb1\x10\x76\xbb\x67\xdd\xe2\x2a\xac\x5d\x3c\x1b\x51\x43\ \xa0\xf1\x64\x97\xd3\x96\x42\x5a\xa7\x2e\xb3\xc5\x3c\x5d\x3c\x39\ \xa2\x38\xe5\x41\xff\xd0\x28\x1e\x7c\x7a\x3f\x06\x86\xe2\x58\x3e\ \xbf\xc6\x39\xdf\x73\xef\x08\xdc\x8b\x9d\x19\xb8\x62\xe3\x0a\x24\ \x12\x49\xec\x3f\xda\x02\x43\x08\x7d\x50\x4f\xfd\xdc\xd8\xef\x8f\ \x3b\x79\x81\xf6\x19\xfa\x94\x5c\xe1\x31\x0f\xc9\xa9\xff\x83\x43\ \x3b\x0a\x43\xcf\x91\x01\x63\xe1\x67\x53\x42\x8a\xd2\x80\xbe\xdc\ \x54\x55\x7b\x92\x97\xaa\xba\xc2\xa4\x6e\x3d\x4f\x2e\xf9\x48\x20\ \xc8\x38\x04\x6b\xa3\xe2\xc2\xc7\x2a\x84\x2b\x53\xc6\xde\x77\xaa\ \x53\xc5\x9b\x9a\x5b\xf0\xde\x3b\xff\x01\xff\xf9\x5f\xbf\x02\x71\ \xb2\x99\xe3\x9d\xfb\x9c\x2c\x20\x35\x1d\x0e\xc0\x45\xff\x6b\x38\ \x67\xde\x5b\x2e\xde\x70\xe9\xac\x1b\xaf\xbe\x9c\x1e\x39\x70\x1a\ \x11\xd2\x16\x68\x38\x1f\xa7\xdb\xaf\x1c\x49\xa4\xd0\xd6\x37\x8a\ \x9d\x2d\x7d\x68\x3c\x3d\x8c\x98\x21\x10\x8b\x1a\xc8\x30\x84\x67\ \x20\xe9\x64\xb2\x5f\x08\x22\xd1\x54\xe7\x03\xce\x84\xb7\x30\x96\ \x1e\x41\x76\x66\x04\x8b\xeb\xcb\x70\xc5\x9a\x79\xe8\xea\x1b\x46\ \xcf\xc0\x30\x92\x29\x53\x11\xb6\x50\x68\xb6\x52\x48\xd1\x25\xb8\ \x64\x92\x91\xc5\x8c\xa3\x27\x3b\xf1\xc0\x33\xfb\x50\x5f\x53\x82\ \xb2\xa2\xbc\x17\x0c\x13\x70\xd3\xd9\x95\x4b\xea\x91\x99\x91\x81\ \xfd\x8d\xcd\xb6\xb1\xea\x9b\x7a\xbc\x88\xed\x00\x62\xec\x02\x66\ \x92\x96\xa0\x6b\x8c\xd2\x1e\x40\x97\xb8\x67\xeb\x0c\x4a\x92\xee\ \x82\x24\x99\x31\x6d\x01\x09\x3b\x42\x20\xca\x72\x50\x59\x05\xd8\ \xdf\x0a\x05\x08\x9f\xde\xec\x91\x79\xc8\x53\xfc\xf1\x5c\xb6\x6b\ \x2b\x6e\xe9\x21\x48\x3a\x56\xd7\x06\x64\xe5\x78\x96\x84\x0c\x84\ \x3b\x38\x25\xfc\xf9\x86\x93\x6d\x6d\xb8\xf9\x86\x1b\x70\xf0\xe8\ \x09\x3e\x72\xac\xc5\xc2\xc8\x89\xc7\x9c\x6e\xc0\xb8\xd4\xe0\x89\ \x38\x00\x8f\xfc\x83\xbc\xc5\xef\xfd\xe0\x3b\xff\x29\x36\x48\x79\ \x38\xd9\x3b\xac\x0c\x30\x78\xd3\x4f\xda\x0f\x11\x60\x08\x42\x3c\ \x65\xa2\xa9\x6b\x18\xfb\xda\x06\xb0\xe7\x64\x3f\x92\x96\x85\xaa\ \x82\x2c\x18\x82\x54\x21\xdd\x33\xac\xcf\xa7\x32\x65\x78\xb6\x79\ \x0b\x53\x1f\x71\xb6\xbb\x06\x11\x43\x60\xe5\x82\x6a\x5c\xbe\xa6\ \x01\x29\x93\x71\xa8\xe5\xb4\x23\x5e\x2a\xa5\x83\xec\x1b\x3e\x33\ \xab\xc6\xa3\x4c\x9c\xf9\xaf\x65\x9a\x16\x9e\xd9\xdd\x84\x67\x9e\ \x3f\x8a\x75\xcb\xea\x90\x11\x8b\xbc\x80\xd9\x00\xb0\xa0\xae\x06\ \xeb\x96\xcf\xc7\x03\x9b\x77\x38\xd0\x1e\x29\x99\x0c\x74\xf9\x2d\ \x86\x36\x12\x4c\xa1\xc4\x29\x52\xc8\x16\xda\x6a\x32\x6d\xc7\x80\ \x67\xc9\xb2\xbe\xbf\x36\x77\x4c\xba\x00\x81\x42\x4b\xa6\x80\x2a\ \x19\x24\x8d\x04\x49\x2f\xcd\xeb\x30\xe8\x5b\x97\xfc\xcc\xdf\x9f\ \x28\x54\x49\x61\xac\x48\xa5\x19\x42\xa0\xb0\x30\x1f\x17\xaf\x5f\ \x47\xbf\xbd\xef\xf1\x62\x0c\x1f\xfd\x03\x00\x77\x7f\x80\x75\x26\ \x0e\xc0\xe5\xfe\x97\xc0\xc8\xde\x10\x2b\x5d\xf1\xaa\xcf\xbc\xff\ \xbd\xd8\xd6\xdc\x8d\xc1\xb8\x19\x92\x28\xd0\xb8\x3f\xcc\x04\xd3\ \x02\x4e\xf6\x8e\x62\x5b\x93\x0d\x20\x8e\x26\x4c\x64\x46\x05\xf2\ \xb3\x8c\x40\x4a\x7a\x36\x54\x80\xce\xb5\x04\xd9\x99\x38\x1f\xdd\ \x21\xac\x98\x57\x8e\x8b\x56\xd4\x23\x12\x11\x38\xde\xda\x0b\xd3\ \xb2\x7c\x59\x2e\x19\xfc\xf2\x14\x7b\xfd\xeb\x54\x28\x53\x68\xc2\ \xe3\xbd\x0f\x8f\x26\xb0\xe9\xe9\xbd\x18\x1d\x4d\x62\x71\x43\x35\ \x0c\x41\xde\x70\xd7\xb9\xbe\x15\xe6\xe5\xe0\x9a\x8b\xd7\x60\xcf\ \xe1\x26\x74\xf5\xf4\x2b\xc2\x2b\xfa\xee\x00\x19\x2b\x0f\x9d\x10\ \x94\xda\x7a\xea\xfc\x7e\x50\xa8\x55\x05\xe5\x58\x7d\x5e\xa8\xc7\ \x05\x3e\x6b\x22\x28\x2a\x40\x01\x3d\x00\xf6\x75\x0a\xf4\x3d\x81\ \x21\xa5\x89\xb7\x33\x41\x69\x29\xaa\xdc\x00\xf9\x7d\xda\x0a\xdc\ \x02\x77\xfc\xfd\xeb\xf0\xf5\x9f\xfd\x31\x66\x0e\x34\x3d\x07\x4e\ \x36\x01\x18\x9c\x0e\x07\x90\x09\xa0\x4a\x14\x2d\x7f\x53\xfd\xdc\ \x65\x4b\x6e\xb9\xfe\x3a\x6c\x69\xea\x81\x05\x4d\xc2\x98\x30\xa9\ \x1f\x21\x6c\x3a\xe7\x48\xd2\x44\x6b\xef\x28\x76\x9f\xe8\xc7\xfe\ \xb6\x41\x44\x23\x06\x72\x32\x0c\x18\x4e\x2d\x2c\x6f\xd3\x39\x13\ \x43\x7e\x31\xa4\xf5\x67\xd2\x62\x14\x0e\x20\x66\x31\x90\x11\x33\ \xb0\xa8\xb6\x1c\xd7\x6e\x58\x88\x9e\xc1\x61\x74\xf6\x0c\x22\x95\ \x32\x25\xe9\x73\x4d\x84\x23\xc0\x2a\x63\x49\x69\xd7\x57\x37\x3e\ \x7a\xb2\x13\x7f\x7a\x74\x27\xea\x6a\xca\x50\x56\x94\x2b\xc9\x79\ \x9d\x3b\x4f\xc0\x00\x62\xd1\x08\x6e\xbc\x7c\x25\x9a\x5b\xbb\x70\ \xf2\x54\xa7\x86\x84\x87\x6d\xd5\xd1\x85\x34\x54\x42\x8d\xce\xe0\ \x0b\x43\xd9\x11\xc2\x37\xd0\x85\x48\x20\x95\x01\x8a\x74\x17\x82\ \x9f\x75\x18\x01\x08\x08\x2e\x41\x21\x85\xb2\xec\x3b\x66\x5f\x03\ \x80\xbc\x75\xe5\xfe\x86\x2a\x69\x9b\x92\xb0\xcf\x23\x99\x4a\xe1\ \x35\x37\x5e\x8f\x3f\x6c\x7a\x0a\x5d\x7d\xc3\xc3\x3c\xd2\xf6\x2c\ \xfc\xd9\x80\x29\x3b\x00\x8f\xfd\x27\x0a\x97\xbf\x63\xdd\x79\xab\ \x8b\x57\xac\x58\x83\x7d\x6d\xfd\xd3\x7a\x51\x90\xc3\x73\x4e\x9a\ \x16\x8e\x77\x0d\x63\xdf\xc9\x01\xec\x6f\x1b\xc4\x50\x3c\x85\x9a\ \xe2\x4c\x44\x0d\x97\x4d\x37\xf6\xe8\xeb\x8b\x6d\xca\x70\xf2\x12\ \x64\x63\xef\x01\xa4\x80\x50\x00\x70\xde\xbc\x6a\x5c\xbc\x7a\x2e\ \xf2\xb2\x63\xd8\x75\xa4\x0d\x86\xc6\x23\xf0\x10\x6c\xf2\x09\x44\ \x2c\x6d\xaa\xf0\x5e\xd3\x1b\xa9\x25\x3c\xb7\xe7\x18\xb6\xec\x3d\ \x86\xd5\x8b\x6b\x91\x9d\x15\x53\x24\xc9\xce\x89\x13\x60\x46\x32\ \x05\xac\x5f\xb9\x08\x35\x95\xa5\x78\x6a\xfb\x3e\x0f\x1c\x64\x79\ \xb8\x86\xf5\x85\x2d\x3e\x4a\xcf\xfa\x7a\x70\xf6\xe3\xaa\x22\xf1\ \xeb\x72\xff\x95\x3d\x7f\x5a\x1a\x0e\xf5\x73\x57\xfa\xf8\x14\x54\ \x0f\xf2\xff\x1d\x64\x00\x42\xd1\x01\x94\x78\x08\x92\x0b\xd4\xfb\ \x00\x5e\x99\xa1\xf3\x17\xa4\xd3\x1b\x1c\x1c\xc0\x6d\xaf\x79\x0d\ \x9e\xdb\xb9\x1f\x07\x8f\xb5\x65\xf0\x60\xe3\x5f\x9d\x32\x60\x4c\ \x1c\x60\x3c\x07\x10\x01\x50\x00\x8a\x2e\xe4\xac\xb9\xb7\xbd\xe5\ \x75\xaf\xcb\xe8\xa5\x02\xea\x1d\x49\xfa\x83\x12\xd3\xf5\x23\xf5\ \x62\x19\x36\xad\xb5\xad\x3f\x8e\x67\x1b\x7b\xd0\xdc\x35\x8c\x94\ \xc9\x88\x18\x72\x99\x70\xee\xc1\xc1\x73\x21\x41\x36\x15\xe7\x13\ \x31\x04\xe6\xcf\x29\xc5\xd5\xe7\x2f\x04\x40\x68\xeb\xea\x47\x3c\ \x61\xc2\x70\xb7\xde\xba\x1a\xfc\x9e\x5c\x19\x79\xc2\x15\xee\x9c\ \x81\x60\xa1\x44\xa3\xe1\x91\x38\xee\x7b\x62\x17\x46\x46\x93\x68\ \x98\x5d\x8e\x8c\x98\x71\xce\x1c\x81\x77\x1d\x30\x63\x4e\x75\x19\ \x96\xcd\xaf\xc3\xf6\xbd\x87\x91\x48\xa4\x6c\x6c\xde\x5d\x4e\xea\ \xbc\x1f\x01\x55\x1b\x40\x38\x74\x6a\x25\xcd\x0e\x11\xe0\x08\xc8\ \x7a\x29\x3d\x79\x84\x90\x78\xec\xee\x80\xdb\x2e\x54\x24\xce\xf4\ \x72\x02\x21\x3c\x04\x09\xe4\x53\x00\xc5\x00\xdf\x80\xd2\xee\x0c\ \xf4\xc9\x46\x6a\xe9\x62\x99\x16\x8a\x8b\x0b\x51\x5f\x5b\xcb\x7f\ \xbc\x7f\xb3\x81\x91\xe6\x07\x01\xeb\xd4\x78\x38\x80\x31\xb1\xfa\ \x3f\x63\x05\x32\x6a\x5f\xf3\x99\x0f\x7e\x80\x9e\x6b\xee\xf7\xb5\ \xeb\xa7\xd5\x03\x04\x3d\x82\x20\x42\xc4\x20\x8c\xc4\x4d\xb4\x74\ \x0f\x63\xcf\x89\x7e\x3c\xdf\xd2\x0b\x41\x84\xa2\xdc\xa8\x8d\x86\ \x93\x9f\x0a\x4d\x84\x8e\xfc\x42\x09\x92\xa6\x4b\xeb\x27\xab\x78\ \x14\xee\x7c\xec\x0c\xc9\x30\x04\x16\xd6\x96\xe3\x9a\x0d\x0b\x11\ \x4f\xa6\x70\xa2\xa3\x17\x96\xc9\x3e\x09\xc6\xab\x6f\x7d\x01\x0e\ \x72\xf0\x02\xf6\xc0\x2c\xf6\x4a\xaf\x88\x21\xd0\x74\xf2\x34\xfe\ \xb2\xf9\x79\xd4\xd5\x94\xa2\xac\x28\xff\x9c\x96\x05\xee\xfb\x2a\ \x29\xcc\xc7\x35\x17\xaf\xc1\x53\xdb\xf6\x62\x24\x1e\xf7\xc5\x41\ \x40\x69\xd6\x71\x93\x24\x34\x44\x41\x76\xaa\xca\xb6\x09\x49\xdd\ \xa1\x89\x76\x90\xba\x1d\x48\x63\xf8\xf9\x43\x4a\x1a\x19\x88\x82\ \x8a\x45\x63\x3a\x8d\x90\x7d\x86\xaa\xb4\xba\xcf\x23\x50\x66\x13\ \x9c\xc7\x75\x76\xf7\xe0\x5d\x77\xbc\x89\xbe\xf6\x9d\x5f\x66\x20\ \xd1\xf2\x18\x38\xd5\xe2\xe0\x00\xe6\x54\x1c\x80\x70\xea\xff\x4a\ \x91\x3f\xef\x96\xd9\x0d\xab\x56\xde\x7e\xeb\xab\xb1\xfd\x78\x4f\ \xda\xa9\xa7\xb3\x52\x11\x4a\xe9\x1b\x09\x9b\x39\xd7\xdc\x39\x84\ \xdd\xcd\xbd\x38\xd8\x36\x80\xbe\xe1\x24\x2a\x0a\x32\x91\x9d\x31\ \x31\x3a\xf2\x78\x86\x35\x55\x83\x9c\xca\x50\xd3\x64\x86\xa8\xd2\ \x61\x18\xe9\x56\x80\x2d\x9d\x5b\x89\x8b\x56\x35\xa0\xbc\x24\x17\ \xbb\x0e\xb7\xda\x9f\x8b\x90\x57\x18\xb3\xa4\x40\xab\x5d\x80\x7e\ \xf3\xca\xeb\x65\x3f\xbd\xab\x11\x3b\x0f\x34\x61\x7e\x5d\x25\x8a\ \xf3\xb3\x60\x9e\xc3\xb2\x80\x88\x60\x18\x06\xae\xba\x70\x35\x7a\ \xfb\x07\xd1\xd8\xdc\xea\xf3\x05\x58\x92\x17\x53\x52\x76\xd2\x24\ \xdc\xd5\x4d\x3e\x2c\x89\x72\x90\x3e\x09\x48\x3a\x71\x08\xa1\x1f\ \xb2\x2c\xe4\xea\x55\x16\x92\x51\xaa\xc4\x21\x06\xa4\xd4\xdf\x6f\ \x31\xca\xc4\x20\x52\x52\x7e\x7d\xed\x78\x60\x0f\xa5\x52\x99\x10\ \x7a\xfb\xfb\xf0\xb6\x37\xbe\x1e\xbf\xb9\xff\x49\xea\xef\xeb\xed\ \xe4\x78\xe7\x76\x8c\xa3\x11\x30\x9e\x03\xc8\x01\x50\x23\x8a\xce\ \xfb\x97\x5b\x6f\x7c\x75\x41\xfd\xdc\xc5\x38\x72\x7a\x20\x24\x9d\ \xc2\xd9\xfb\x09\x00\x2c\xfe\x12\xc5\x78\xca\xc2\xa9\xde\x11\x3c\ \xd7\xd8\x85\xc6\xf6\x41\xbb\xe5\x48\x84\xfc\xec\x88\xb6\xb9\x67\ \xe2\xe0\xe0\x74\xac\xe2\x3a\xd3\x59\x88\xc9\x3c\x2e\xdd\x1e\x40\ \x76\x4a\x83\xda\xca\x62\xbc\xe2\xe2\xa5\x30\x99\x71\xba\x67\x10\ \xc3\xa3\xf6\x92\x13\x75\x63\xad\x5a\xbf\x06\x13\x41\xfb\x75\x06\ \x87\xe2\xd8\xf4\xd4\x2e\x0c\x8f\x26\x31\xbb\xaa\x04\xd9\x99\xd1\ \x73\x8a\x0f\x10\x11\x2e\x58\xb3\x00\x11\x23\x86\xbd\x87\x9b\x1c\ \xb1\x0e\x27\x63\x61\x3f\x9b\xf1\x91\x77\x35\x8a\x32\x3b\x62\x1d\ \x44\x0a\xa1\xc7\xd6\x06\xf0\xe9\xc6\x9e\x7a\xb3\xd4\xbe\x13\xf2\ \xce\x41\x77\x4e\xc3\x93\x69\x26\xaf\x07\xe6\x73\x13\x7c\xe0\x4e\ \xd6\x00\x64\x66\x97\xd1\x25\x91\x8c\xd8\x5f\x45\xe6\xe1\x1b\xda\ \x8e\x03\xef\x7c\x64\x62\x11\xf9\x03\x42\x4e\xc6\xbc\x61\xed\x5a\ \x58\x2c\xf0\xec\xf3\x47\x8a\x79\xf0\xd8\x9f\x30\x8e\x54\x98\x31\ \x6e\xfd\x0f\x2c\x89\x14\xaf\xbe\xe3\xbd\x6f\x7e\x13\x9f\x1e\x8d\ \xd2\x73\x87\xfb\x60\x31\x10\x8b\x90\x3a\xd2\x39\x85\x2c\x1f\xe3\ \x1e\xe3\x49\x2a\x7a\x2d\x16\x66\x75\x2a\x4c\xc0\xde\xb5\x37\x1a\ \x4f\xe1\xf8\xe9\x21\xec\x3e\xd1\x8b\xed\x47\xbb\x60\x5a\xf6\x62\ \x8f\x80\x04\xb4\x06\x22\x4e\xc4\xb0\xa6\x4b\xc8\x74\xac\x68\x3e\ \x51\xa9\xef\xc9\xec\x01\x74\x1d\x25\x33\xb0\xa0\xb6\x02\x57\x9c\ \xbf\x10\x59\x19\x31\x1c\x3c\xde\x2e\x13\x4c\xd5\x95\xde\xae\xc1\ \xd8\xdb\x2c\xfd\xe1\x24\x27\x44\x46\xa3\x02\xc7\x4f\x76\xe2\xe1\ \x67\xf6\xa0\xa4\x30\x1f\xb3\xab\x8a\xcf\x19\x9b\x90\x88\x90\x32\ \x81\x05\xf5\xb3\xb0\x6e\xc5\x42\x3c\xfa\xcc\x4e\x5f\x3e\xc1\x11\ \xf8\x60\x56\x05\x3c\x58\x5f\x2b\x2e\xc8\xd9\xdb\xa8\xd7\xd3\xb2\ \x16\x1f\x49\xfa\x85\x2c\x91\xa9\x48\x5d\x09\xee\x5e\xf7\x2c\x97\ \x03\x1c\x94\x1c\x77\xcf\xc1\x59\x99\xee\x92\x79\x48\x6f\xf5\x39\ \x29\x84\xb7\xa6\x5e\x69\x59\x6a\xe7\x48\xaa\xc6\xe4\xe8\x68\x02\ \x27\x5a\x3b\x30\xb7\xb6\x16\x1b\xd7\xad\xe2\x7b\xfe\xb0\xb9\xd0\ \xea\xdb\x7f\x3f\x80\x36\xd8\xb4\x60\x6b\xb2\x0e\x20\x06\xa0\x54\ \xe4\xd6\x5d\x9d\x91\x37\xe7\xd2\x77\xdc\xf6\x7a\xda\xd2\x3c\x84\ \xce\x81\x04\x46\x13\x16\xfa\x86\x4c\x0c\x8c\x58\x18\x8e\x5b\x76\ \xeb\x26\x22\x20\x0c\xa7\xdb\x39\x9d\xe1\x9f\xd5\xd4\x4e\xe8\xc4\ \x0e\x92\xf5\xd5\xed\x0f\xde\x62\x0b\x2d\x9d\x43\xd8\xd6\xd8\x89\ \xc6\xf6\x01\xf4\x0e\x25\x50\x98\x1d\x43\x7e\x76\xc4\xa3\x23\xeb\ \x3a\x06\x93\x29\x15\xce\x16\x56\x10\x66\xf0\x93\x7d\xdc\x78\xb7\ \x86\xd9\xa5\xb8\x7c\xed\x22\x54\x94\xe6\xe3\x40\xd3\x29\x24\x92\ \x29\x3f\xb2\xf8\x2e\x21\x58\x0a\x40\xd2\xea\x73\xee\xdd\xba\xb7\ \x11\x3b\xf6\x35\xa1\xb2\xb4\x10\x95\x65\xf9\x30\xcd\x73\x93\x0d\ \x30\x33\x0a\xf3\x73\x70\xf9\xc6\x55\x78\x7e\xdf\x11\xf4\x0d\x0c\ \xd9\x8e\x4a\x07\x86\xc7\x6b\x70\x8f\x75\x0c\xa5\xb9\xcb\x99\x19\ \xa0\x71\x64\x98\x49\x12\x2c\x21\x99\x6d\xc4\x12\xaa\x4f\x04\xbd\ \xf7\x40\xf2\x9a\x79\x85\xec\xe0\x66\x28\x04\x21\x0c\x0c\x8f\x8c\ \xa0\xe3\x74\x37\x5a\x4f\x75\xa0\xb5\xb5\x1d\x6d\x1d\x9d\x18\x19\ \x19\x05\x83\x71\xdb\x6b\x6f\xa6\xef\xdf\xf3\x47\x98\xc9\xa1\x03\ \x9c\xe8\xdd\x8f\x31\xa6\x03\x69\x8c\xb7\x9f\x03\x60\xbe\x51\xbc\ \xfa\x43\xf9\xe5\x4b\x6e\xdb\xfc\xeb\xff\x87\x4f\xfe\xfe\x30\x52\ \x16\x07\x72\x4d\x06\xc3\x62\x20\x2b\x26\x90\x9f\x63\x20\x33\x2a\ \x10\x8d\x90\xbf\x58\xd3\xeb\x57\x4c\xf6\xe2\xb0\x00\x47\x55\xc7\ \xbd\xf8\x98\x9d\x7a\xce\x15\x6b\x74\x87\x3f\xc8\x02\x18\xb0\x9c\ \x75\xd1\xec\x6c\xf0\x05\x33\x4c\xb6\x90\x4c\x59\x28\xcb\xcf\xc0\ \x9a\x79\x65\xa8\x29\xca\x46\x71\x5e\xa6\x17\xad\x75\xdc\x60\x3c\ \x8e\xc1\x78\x29\x79\x98\xe1\x4e\x75\x3a\x71\xb2\x43\x54\x13\x35\ \x20\x41\x84\x58\x0c\xf8\xc3\xa3\x7b\xf0\xd4\xce\x46\x74\xf6\x0e\ \x38\xdf\x17\xfb\x6d\x34\x17\x6d\x87\x37\x77\xec\xa7\xbd\x60\x67\ \xab\x2d\x23\x91\x4c\xe1\xb2\x75\x4b\xf0\xca\x2b\xd6\xa1\x20\x2f\ \xeb\x9c\x3a\x82\x58\x8c\xf0\xd5\x1f\xfe\x0e\xcf\x3e\xbf\xdf\xc6\ \x05\xbc\x36\xa7\x25\xed\xf5\x62\xef\x7c\x6d\x32\x9a\xa5\xf4\xd0\ \xdc\xf7\xc4\xf0\xaf\x2b\x4e\xf3\x7e\x3d\xa1\x51\xf6\x87\x88\x58\ \x11\x18\xb5\x42\xfe\x0e\x10\x2c\x30\x93\x22\x09\x07\xb6\x94\x56\ \x1e\xd8\xb2\xf9\x35\x6c\x01\x52\xe6\x6b\x31\x23\x91\x48\x20\x1e\ \x8f\xa3\xbb\xa7\x1f\x9d\x5d\xbd\x48\xa5\x92\xca\x3a\x7a\xcb\x93\ \x2f\x67\xf4\x1d\xdf\x8e\x59\xeb\xfe\x01\x7d\xa7\xf6\xfd\xd2\xec\ \xde\xfe\x9f\x00\x0e\xc3\x56\x0a\xe2\x89\x66\x00\xae\xf8\x67\x35\ \x67\xd7\xbf\xe1\xfc\x35\x1b\x6a\x36\x9c\x7f\x31\x3d\xb4\xaf\xc3\ \x93\x22\x52\x00\x08\x27\x55\x4c\x99\x8c\xe1\x51\x0b\x03\x23\x16\ \x7a\x07\x4d\xf4\x0e\xa5\x60\x59\x8c\x58\x84\x60\x18\x42\xa5\x5b\ \x4e\xa8\x4e\x60\x75\x51\x82\xb7\x4d\xcb\xa7\x1d\x33\xa4\x95\xca\ \x0a\x76\x28\x3c\x4f\x2b\x88\x60\x18\x84\x78\xc2\xc4\xb1\xf6\x01\ \xec\x39\xde\x8d\x6d\x8d\xa7\x31\x12\x4f\x61\x56\x69\x8e\x73\xe1\ \x4c\x8d\x39\x38\x96\x41\x4e\x46\x4b\x50\x2f\x07\xa6\xf2\xb8\xc9\ \xa1\xeb\x0c\xd3\x22\xcc\x9b\x5d\x8e\x4b\xd6\x2c\x40\x55\x69\x21\ \x76\x1d\x6a\x91\x16\x94\xf8\xd1\x8b\x59\xdd\xf7\x27\xa1\x5d\xf6\ \x45\x24\x04\x5a\xda\x3a\xf1\xd0\xd3\xbb\x20\x84\xc0\xc2\xba\x2a\ \x65\xcb\xf1\xd9\x2c\x09\x2c\x0b\x38\x7f\xe5\x12\x94\x14\xe6\x63\ \xc7\xbe\xc3\xf6\xce\x01\xf6\x39\xcf\x72\x3b\x4d\x8f\x7a\x6e\x19\ \xa9\x72\x25\x14\x49\x5f\x67\xc1\xa7\x5b\xb6\x0b\x8f\xc4\xa6\xe3\ \x01\x9e\x76\x21\xfb\x7b\x02\x88\x48\xda\x35\xa0\x7f\x4f\xa4\x10\ \xb3\x3c\x92\x90\x53\x82\x08\x41\x88\xc7\xe3\x68\x3b\x75\x1a\x47\ \x9b\x4e\xe2\x54\x47\x17\xba\xba\xfb\x30\x38\x32\x0c\xb6\x18\x42\ \x08\x3f\x93\xf5\x98\xc8\x8c\xe4\xe0\x20\x6e\xbd\xe5\x56\xec\x3b\ \xdc\xcc\x87\x8f\x36\x0d\x63\xa4\xe5\x61\x87\x0f\x90\x98\xac\x03\ \xc8\x05\x30\x07\x39\x0d\x6f\xfe\xbb\x57\xdf\x9a\x57\x55\x5d\x8b\ \xee\xc1\x04\x7a\x86\x92\x48\x9a\xac\xe8\xa4\xeb\xfd\x5b\xcf\x17\ \x5a\x8c\x91\x84\x85\x9e\x01\x13\x7d\xc3\x26\x86\x47\x4d\x24\x53\ \xb6\x07\x8c\x45\x84\x3d\xef\xae\x81\x24\x6a\x05\xc0\xb0\x28\x64\ \x0d\x93\xb4\x72\x86\x28\x2c\x55\x0d\x57\x8d\x25\x69\x09\x85\xc5\ \x16\x4e\x76\x0f\xe1\xd9\x83\xed\x68\x3c\xd5\x87\xfe\xa1\x04\xb2\ \x33\x0c\x14\xe5\x46\x9d\x31\xdb\xf1\xd7\x74\x9f\x09\x01\x69\xa2\ \x33\x0d\x93\x75\x46\x93\x31\x1e\xf9\x52\x9c\x55\x59\x88\x6b\x36\ \x2e\x43\x79\x49\x3e\x9a\x5a\xbb\x30\x38\x3c\xaa\x38\x6d\x5f\x75\ \xc8\xc5\x05\xd8\x5e\xd2\xc1\xd2\xc4\x1b\x11\xf6\x1e\x69\xc1\x8e\ \x7d\xc7\x50\x56\x9c\x8f\x9a\x8a\x02\xa4\xce\x41\x36\xc0\xcc\x68\ \xa8\xad\xc2\xc2\xb9\xb5\xd8\xba\x6b\x3f\x4c\xd3\x72\xce\x89\xd4\ \x55\x5e\xf2\xde\x42\x9d\x09\x28\xb5\xe4\xe4\xde\xbf\x72\x8d\x29\ \x18\x12\x05\xb7\x11\xcb\x39\xae\xbc\x0c\x36\x8c\x6f\xe0\x74\xb5\ \x84\x10\xf6\xac\x4c\x3c\x81\x9e\xbe\x01\xb4\x9f\xee\xc6\xa9\x53\ \x9d\x38\x7e\xe2\x14\x5a\xdb\x3a\x31\x38\x3c\x02\xb6\xa4\xcc\x03\ \x7e\x3b\x92\x19\x9e\x0b\x73\x63\xab\x65\x99\x38\x7f\xdd\x1a\x54\ \x56\x54\xd1\x03\x8f\x3c\x63\x60\xa4\xe9\x3e\x00\xa7\x61\x8b\x85\ \x4e\xd8\x01\xb8\x00\x60\x1d\xb2\x17\xbc\xf5\x23\xef\xfe\x27\xaa\ \x2e\x29\xc0\xda\xba\x02\x5c\xb3\xac\x14\x73\xcb\x73\x10\x31\x08\ \x09\xd3\x02\x33\x90\x74\x7e\x23\x8d\x43\x70\xfb\xb9\x29\x13\x18\ \x89\x5b\xe8\x1b\x36\xd1\xd9\x97\xc2\xc0\x88\x85\x94\x8b\x22\x33\ \xab\xd2\xcd\xfa\xb9\x4a\x35\xbf\xd7\xba\x91\x3b\x03\x01\x6b\xd4\ \xf7\x74\x49\xf2\x4e\xce\xa7\x6f\x38\xa2\x19\xc3\x89\x14\x5a\xbb\ \x06\xb1\xad\xb1\x03\x3b\x8f\x75\x21\x22\x08\xd9\x19\x51\xc4\x22\ \x06\x0c\x83\xa4\x94\x8e\xa6\x9c\xd6\x4f\x65\xc4\x79\xb2\x8a\xc4\ \x67\xda\x6f\x07\x80\x9a\xf2\x22\xdc\x70\xf1\x62\x64\x67\x66\xa1\ \xad\xb3\x07\xc3\xa3\x71\x2f\xc3\x83\xab\x74\xeb\xcc\xd4\x0b\x77\ \xf5\xb6\xf4\xbd\x18\x42\x60\x68\x64\x14\x9b\xb7\xed\x43\xf3\xa9\ \x6e\x2c\xac\xaf\x41\x56\x66\x54\x25\xd4\x9d\x2d\xbe\x40\x51\x3e\ \x2e\xdf\xb0\x1a\xcf\xed\xda\x87\x91\xd1\xb8\x36\xc5\x87\x50\x63\ \x07\x10\xba\x10\x04\x21\x8e\x42\xae\xd7\x83\xfa\x85\x9a\xfa\x2f\ \x82\x5c\x7f\x7f\xd2\xd3\x42\x32\x99\xc2\xc0\xe0\x10\x5a\x4f\x75\ \xe0\xc8\xb1\x13\x68\x3d\x75\x1a\x3d\xbd\x03\x18\x19\x19\x45\x32\ \x99\x74\x94\x1c\x24\x4d\xc9\xff\xcf\xde\x9b\xc7\xc9\x51\x5d\x67\ \xff\xdf\x5b\x55\xdd\x3d\x3d\xbb\x34\x9b\x66\x34\x33\xda\x77\x84\ \x90\xc4\x26\x56\xb1\x0b\xb1\x23\x83\x31\x36\x26\x06\x3b\xb6\xe3\ \x98\xd7\x71\x6c\x9c\x10\xc7\x49\x5e\xc7\xf1\x9b\x1f\x89\x83\xd7\ \x78\x03\x63\x0c\x36\x98\x7d\x11\x8b\x40\x80\x00\x09\x24\x81\x10\ \x08\xed\xfb\x48\x1a\x8d\x34\xfb\xda\x5b\xd5\xbd\xbf\x3f\x6a\xe9\ \xaa\x9e\x9e\x7d\x04\x22\xa1\x3e\x9f\x51\xb7\xba\xab\xba\xab\xab\ \xee\x3d\xf7\x9c\xe7\x9c\xf3\x3c\xf8\x32\xb7\x3e\xf6\xa2\xcc\x0a\ \x42\x09\xd4\x54\x55\x71\xed\xe5\x97\xf0\xeb\xfb\x9e\xca\x23\xb6\ \xfb\x71\xe0\x68\x5f\x40\x60\x5f\xc3\x27\x02\x54\xa3\x47\x97\x86\ \xab\x2f\xff\xc9\xdb\x4f\xff\x99\x54\xaa\xf7\xc0\x53\x4a\x91\xb4\ \x14\x49\x53\xb2\xe5\x50\x27\xef\xec\x6b\xe3\x50\x6b\xc2\x9b\x58\ \xfd\x59\x7e\xa5\x82\x93\xdc\xa5\x87\xd6\x35\x28\xc8\xd5\x29\x88\ \xea\x44\xc3\xc2\xcb\xed\x2b\xa4\xef\x42\xd8\xa2\x0c\x42\x4a\x6f\ \xb5\x0e\x7e\xa6\x0d\x4c\xda\x3f\x57\xa5\x55\xe3\x5c\x79\x2a\x0f\ \x08\xcc\x16\xe7\xd9\x07\xda\x5e\x8a\xc1\x8c\xaa\x62\x16\xcf\xab\ \x26\x27\xac\x63\xc9\x60\x2a\x70\x34\xe2\xfa\xbe\xf4\xfc\x06\x6a\ \x48\x3a\x96\x3a\x80\xae\xf7\x93\x32\x2d\xf6\x1c\x3c\xca\xaf\x1f\ \x79\x85\x54\x32\x19\x20\xac\x48\xc7\xb8\xd2\x77\x17\x7d\x71\xb2\ \x93\x7e\x30\x74\x8d\xc5\xa7\xcf\xe5\xba\x4b\x4e\xc7\xb4\x86\x83\ \x03\x0d\x7d\xb3\x2c\xc9\x4f\xee\xfd\x33\xef\x6e\xde\x8e\xae\x19\ \xb6\xe1\x92\x69\xcc\x48\xfa\xc4\x3a\x94\x0c\x62\x49\x42\x29\x7b\ \xf4\xb8\xf1\xa6\x14\xbe\xf7\x55\x9a\x91\x59\x09\x7b\x9c\xd9\x22\ \x0d\xb6\x56\x83\x2f\xa0\x17\x6e\x68\xe1\xdc\xc7\xce\xae\x6e\x9a\ \x9a\xdb\x68\x6b\xeb\xc4\xb4\x2c\x2c\x29\x51\xd2\x4a\x5f\x6f\x1f\ \xee\xe0\x5d\x47\x27\xdc\x92\xce\x39\x0a\x05\x12\xe9\x2b\xe7\x76\ \xce\xcb\xc3\x3c\x6c\xbc\x6c\xd1\x29\x0b\x58\xfe\xd0\xdd\x94\xcd\ \xbb\x9e\xe4\xc1\x67\x6e\xc3\x8a\x3d\x0b\x1c\x74\xd2\x81\x03\x7a\ \x00\xc2\xc9\x00\x94\x69\x85\xd3\xae\xa9\x9d\x34\x77\xfe\xa7\x2f\ \x5b\xea\xc9\x7e\x67\x92\x58\xe8\x42\x90\x13\xd6\xa8\x2d\x89\x72\ \xe6\xf4\x31\x9c\x35\x7d\x2c\x53\xcb\xf3\x28\x29\x08\x63\x68\x1a\ \x5d\x09\x93\xee\x84\x85\x5f\x31\xd7\x6f\x41\xfd\x61\x83\xc2\x56\ \xd8\x89\x25\x24\xad\x5d\x26\x4d\x1d\x26\x9d\x3d\x16\xb1\x84\x24\ \x69\x4a\xe7\x42\x41\xc8\xd0\x32\x06\xbf\xc8\x78\xa6\xfc\x20\x6b\ \xaf\xb0\x21\xd8\x7e\xa9\xb2\xb0\xaf\xda\x17\xd5\x92\x16\x87\x5b\ \xba\x79\x63\xcb\x21\x76\x1e\x6a\xa3\x27\x91\xc2\xd0\x35\x4a\x0a\ \xc2\x3e\x36\x9e\xa1\x55\x04\x0e\x87\xb9\x68\xb0\xc7\x8d\xe6\x8a\ \xea\xc6\xbf\x65\x63\x0b\x58\x7a\xce\x5c\xc6\x16\x15\xd0\xd0\xdc\ \x6e\x23\xee\x9a\x96\xb5\x46\xc3\xbf\xba\x6a\x22\x8d\x25\x6c\xdf\ \x7b\x88\xf5\x9b\x76\x32\xb6\xb8\x90\x09\xe3\x8b\x31\xad\x63\x6b\ \x00\x84\x80\xc5\xa7\xcf\x25\x1c\x8a\xb0\x71\xcb\x76\x9b\xfd\xc8\ \x57\x73\xab\x39\x15\x8f\x2e\xcf\x9f\x16\x20\x12\x49\xf7\xfb\x6b\ \x1e\x01\x67\x06\xd9\xa7\x5b\x72\xac\x69\x5e\x37\x9e\xae\x6b\x48\ \x29\x89\xc5\xe3\x74\x76\x76\xd1\xdc\xd6\xc1\x91\xa3\x2d\x1c\xa8\ \x3f\xca\xbe\xba\xc3\x1c\x6d\x6c\xa5\xab\x3b\x86\x25\x25\x48\x7b\ \x41\xf3\x43\x0e\xfe\xd4\x84\x67\x06\x84\xb2\xb1\x6d\x91\x7e\x47\ \x64\x20\xf0\xca\xc3\x64\xd2\x35\x47\x79\xd1\x28\x37\x7f\xe6\xd3\ \x3c\xfa\xdc\x6b\xb4\xb6\xb5\x1e\x56\x89\xa6\xf5\xf4\x41\x10\x62\ \xf4\x57\x05\x28\x22\x25\x33\xab\x2b\xc7\x21\x65\xf6\x8b\x1c\xc0\ \xeb\x15\x24\x52\xf6\xe4\x9c\x58\x96\xcb\xa4\xf2\x5c\x34\x01\x21\ \x03\x8e\x74\xa4\x78\x67\x6f\x3b\x9b\x0e\x74\xd2\x93\xb0\x48\x9a\ \x12\x4b\xa9\x5e\x54\xcd\xde\x73\xa7\x6a\x4d\x49\x45\xc2\x54\x24\ \x93\x96\x8d\x45\x3b\xd6\x4e\x29\x45\x34\x2c\xc8\x8f\xea\xe4\x46\ \x35\xc2\xba\xf0\x4d\x72\x15\x48\xc1\xf4\x32\x12\x22\x83\xa6\x29\ \x80\xb6\xfa\xa9\x18\xed\x07\xdd\x89\xd3\x9a\x3b\x63\xac\xd9\xd2\ \xcd\x6b\x9b\x0e\x90\x1b\x31\x38\x7d\x56\x15\x73\x27\x95\x91\x13\ \xd6\xd1\xdd\x09\x21\x46\x77\x85\xfb\xe8\xa5\xbe\x6c\xf7\x33\x95\ \x52\x9c\x3c\x67\x32\x67\xce\x9f\xc2\xda\xf7\xf6\xf2\xd8\xca\xf5\ \x74\x74\x75\x7b\x45\x59\x36\x74\x0d\x52\x4a\x07\xf4\x72\x86\xb7\ \x93\x55\x08\x1b\x1a\xcd\x6d\xed\xfc\xfc\xfe\x67\x78\x69\x72\x35\ \x5f\xba\xfe\x12\x0a\xf2\xa2\xc7\x4c\xc0\x44\x08\x41\x22\x09\x4b\ \xcf\x5b\xc4\xac\xa9\x93\xf8\xf7\xff\xbe\x8f\x78\x22\x91\x2e\x74\ \x52\x9a\x23\xfe\xa1\x3c\x9d\x41\xa5\x81\xa6\x82\x4c\xc3\xf6\x2a\ \xaf\x39\xb1\xbf\xf2\x68\xd9\x2c\xcb\x42\x4a\x85\x92\x16\x1d\x5d\ \x3d\xb4\xb5\x77\xd1\xd6\xd1\x49\x3c\x9e\xc8\xb8\x5f\x69\xd5\x5f\ \x9b\xdb\x41\xf9\x62\x76\x11\x9c\xb8\x2a\x63\x62\x3b\x23\x49\x0a\ \x7f\xfa\xd1\x5b\xe8\x7b\xed\xeb\x8f\x92\xdb\x3b\x3b\x48\x26\x4d\ \x26\xd5\x8c\x63\xf7\x8e\x92\x99\xd8\x15\xbd\x5a\x5f\xb1\x7e\x36\ \x0f\xc0\x00\x72\x84\x91\x5f\x55\x5e\x52\x82\x54\xfd\x0f\xd2\xbe\ \x5e\x93\x0a\x92\xa6\x62\x4c\x6e\x88\x8b\xe6\x94\x72\xf1\x09\xa5\ \xc4\x52\x16\xb1\xa4\xa4\xae\x29\xc6\xbb\xfb\x3b\xd8\x5a\xdf\x85\ \x40\xa1\xeb\xfe\xa2\x93\xbe\xea\x96\x6c\xeb\x2d\x85\x22\x9e\x52\ \xc4\x93\x16\xaa\x4d\x39\x6a\xb0\x4e\x0f\x3c\x92\x90\xa1\x11\x0d\ \x6b\x44\x23\xb6\x77\x12\x36\x84\x97\x82\x51\xca\x9f\x8a\x55\x1e\ \x98\xed\x15\x68\x29\xcf\x1c\x38\xf7\x27\x88\x3b\x18\x06\x24\x4d\ \x8b\x57\xdf\xaf\xe3\xf5\x4d\x75\xb6\x6c\xf7\xb8\x62\xce\x9d\x57\ \xcb\x98\xfc\x10\x49\xb3\x77\x51\xcc\x60\x27\xb2\x52\x1f\xed\x84\ \x1f\xc8\x23\x48\x24\x15\x0b\x66\x4f\x62\xee\x8c\x5a\x0e\x1c\x6e\ \xe6\xee\x47\x5f\xa6\xad\xb3\xcb\x4b\xbf\x79\x68\xbb\x4b\x95\x95\ \xae\xd2\x01\x20\x14\x32\xd8\x5d\x77\x98\xef\xfd\xf8\x0f\x2c\x3a\ \x69\x16\x37\x5f\x7b\x36\xb1\xf8\xb1\x0c\x05\x14\x13\xc6\x8f\xe3\ \xce\x3b\xbe\xce\xbf\xfe\xec\x77\x1c\x6d\x6a\x49\x73\xff\x79\x79\ \x76\x19\x40\x88\x6c\x21\x56\xbc\xf9\xa2\xa4\x45\x57\x77\x82\xce\ \xee\x1e\xba\xbb\x63\x74\x75\xf7\x60\x9a\x12\x4b\x9a\x98\xa6\x15\ \x48\x9b\xea\x9a\x6e\x87\x05\x5e\xfa\x54\x78\x22\xb1\x03\x62\x20\ \xae\xac\xa0\x1a\x5c\x8c\x9e\x59\xe7\xe0\x9f\x32\xed\x1d\x9d\xa4\ \x4c\x93\xca\xf2\x12\x84\x91\x5f\xe5\x18\x00\x23\xdb\xcc\xea\xcf\ \x00\xe4\x49\xf4\xc2\xaa\xb2\x72\xa5\x94\x12\x7d\x21\xe2\x03\x0f\ \x66\xe1\x19\x03\x4d\x40\x4e\x48\x27\x62\x68\x94\x4c\x2c\xe4\x94\ \x29\x85\x48\x05\xfb\x1a\x63\xec\x3e\xda\xc3\x81\xe6\x38\x87\xdb\ \x12\x34\x76\x26\xd1\x51\xb6\x9b\x2f\xfd\x88\x67\x10\xed\xf7\x5f\ \x30\x4b\x2a\x94\x92\x08\x09\x89\x94\x49\x67\x8f\x13\xef\x29\xbb\ \x3b\x2c\x6c\x68\x84\x43\x82\x88\xa1\x11\x32\x20\x64\x08\x42\xba\ \x86\xae\xdb\xcf\x85\x86\x1d\x5d\xb9\xf8\x80\xe7\x76\x6b\x36\xd6\ \xe0\xde\x4c\x85\x7f\x89\xa0\x2b\x9e\x64\xe3\xee\x06\xd6\x6f\x3f\ \x44\xe5\x98\x7c\x4e\x9c\x52\x46\x6d\x79\x31\xb5\x15\x05\xce\x79\ \x0d\x7c\x8d\x06\x23\xef\x9d\xad\xfe\xff\xc3\x36\x18\x6e\x65\xa1\ \xae\xe9\x4c\xaa\x2e\xe7\x3f\x6f\xbf\x81\x37\x36\xec\xe1\x95\xb5\ \x9b\xd8\x7b\xe8\xa8\xe7\x09\x05\x83\x31\xd2\x69\x2e\xc7\x48\x98\ \xa6\xc5\xcb\x6f\xbd\xc7\x86\x2d\x3b\xb9\xe1\xb2\xc5\x9c\x3c\x77\ \x32\xa9\xd4\xe8\x7b\x03\xee\x67\xe5\x46\x73\xf8\xd7\xbf\xfd\x32\ \xbf\xfe\xe3\xe3\xac\x7b\x6f\x33\xba\xae\x7b\x61\x4b\xca\x94\x24\ \x13\x29\x12\xa9\x14\xc9\x64\x8a\x78\x22\x45\x3c\x1e\x27\x16\x4f\ \x10\x8b\x27\x48\x26\xcd\xa0\x28\x8b\xe3\x76\x0b\x7f\x49\x94\xf0\ \xd7\x4c\xf8\x5d\x75\xd9\xfb\x1e\xba\x6e\xa6\x52\x28\xfc\xbc\x42\ \x2a\x30\xb1\xfd\x78\x00\x59\xd7\x43\x15\xd4\x2f\xf5\x98\xa1\xa1\ \xab\xb3\x93\x78\x3c\x4e\x4d\x55\xb9\x92\xe8\x85\x4e\x4d\x8f\x91\ \xcd\x9e\xf4\x6d\x00\xb4\x48\xa1\x94\x32\x34\xbe\xb2\x42\x64\xde\ \x94\xc1\xde\x23\xd1\x4f\x99\x95\x54\x90\x72\x62\xc1\x9a\x92\x28\ \xb5\xa5\x51\x27\xee\x84\xa4\xa5\x58\xbf\xbb\x8d\xf5\xbb\x5b\x69\ \xea\x48\x62\x29\xe9\xb8\x3e\xaa\x57\x1f\x84\x3f\x09\x28\x7c\x06\ \x4e\x73\xea\x03\x74\x67\xf0\x25\x53\x92\x64\x4a\xd1\xa5\x70\x00\ \x45\xe5\x15\x0e\x21\x15\x39\x11\x8d\x68\x44\x23\x2f\x47\x27\x37\ \xa2\x63\xe8\x22\xd0\x7f\xee\x0d\x69\x21\x1c\x04\x5c\xa6\x65\x9a\ \x34\x0d\x23\xa2\xd1\xda\x1d\xe3\xd5\xf7\xf6\xa3\xe4\x3e\x42\x86\ \xce\x29\x33\x2b\x39\x7d\x76\x4d\x20\x9b\x90\x59\x8e\xdc\xd7\x75\ \xca\x36\xb9\x8f\x45\x06\x60\xb8\xa1\x09\x40\x2c\x01\x0b\x66\x4f\ \xe2\x94\xb9\x93\xd9\xb9\xaf\x81\x7b\x9f\x78\x85\xce\xee\x1e\x0f\ \xab\xc1\x2f\x96\xe1\xe8\xdb\x09\xe7\x87\x19\x86\x4e\x77\x4f\x8c\ \x5f\x3f\xf8\x2c\xcf\xbf\x56\xce\xb7\x6e\xbd\x16\xc3\x30\x8e\x99\ \xe1\xd2\x34\x8d\xbf\xba\xe9\x53\x94\x8e\x29\xe6\xb7\x7f\x7a\x9a\ \xae\x9e\x18\x9d\x9d\x31\x2c\x69\x06\xdc\x75\x47\x79\xd5\x03\x9d\ \x0d\x5d\x73\xc2\x4f\xb7\x98\x27\xdb\x74\xf1\x41\xf2\xd2\x1d\x23\ \x72\xc0\x15\x3f\xbd\xf2\x07\x6b\x14\xa4\x37\x96\x65\x80\xb7\x40\ \xd1\x3b\xe5\x2d\x33\x0c\x88\x6b\x8c\x36\xbc\xbf\x89\xc9\xb5\x55\ \x42\x5a\x32\x84\x16\x29\x44\x26\xb2\x1a\x80\x6c\x20\xa0\xcd\x01\ \xa8\x47\x67\x92\x53\x7b\xd5\x5f\x5c\x77\x9d\x51\x36\x76\xec\xb0\ \xf3\xe0\x7d\x1d\xd7\x17\x7a\x2e\x95\xc2\xd0\x05\xb5\xa5\x51\xce\ \x98\x3e\x86\x45\xd3\xc7\xb2\x60\x52\x11\x53\x2b\xf3\x10\x02\x8e\ \x76\x24\x88\x25\xad\x60\xe7\x9a\x4f\x7d\x25\x98\x1e\x71\x2b\xbf\ \x82\x3f\x5d\x65\x50\x4c\xdb\x45\x4c\x92\x58\xc2\xa2\xa3\x3b\x45\ \x53\x7b\x92\xa6\xf6\x04\x2d\xed\x09\x5a\x3a\x12\xb4\x76\x24\x69\ \xeb\x4a\xd2\xd6\x99\xa2\x2b\x9e\xb2\x71\x8c\x94\xc4\xb2\xec\x1b\ \xa4\x69\x82\x90\x2e\x3c\x2e\x7e\xcd\xa1\xd4\xaa\x3b\xda\xce\xda\ \x2d\x07\xd9\xbc\xef\x08\x47\x5b\xbb\x29\x2d\x8a\x52\x5c\x10\xf6\ \x32\x1b\x03\xc9\xaa\x0d\xa5\x3b\xf1\xa3\x0c\x0f\xa4\x54\x94\x14\ \x17\xb0\xf8\xd4\x13\x98\x39\x69\x3c\xfb\xea\x9b\x68\x69\xef\x40\ \x37\xd2\xc3\x2b\x1d\x4e\x09\x7c\x1a\x1b\x08\xcd\x56\xb8\x79\x69\ \xf5\x46\x5a\xda\x3b\x99\x3f\x7b\x52\x2f\xf6\xe8\xd1\xc3\x33\x14\ \xf3\xe6\x4c\x61\xce\x8c\xa9\xdc\xff\xe8\x0b\x36\x8d\xb8\xd0\x7c\ \x75\x22\x04\xe5\xc3\x33\xd2\x6c\x6e\x51\x94\xc8\xb2\x16\xfb\x73\ \xf1\xf8\x59\x80\x33\x66\x9d\x72\x33\x58\x99\x5c\x26\x2e\x67\xa3\ \xcf\x2b\x08\x7c\xae\x6b\x07\x44\x86\x17\x9c\x69\x00\x9c\xfa\x9b\ \xf1\x95\x95\x9c\x79\xfa\xa9\xdc\xfb\xa7\xa7\x21\x71\x68\x05\x32\ \xb9\x9f\x2c\xf2\xe1\xa2\x8f\x0c\xc0\x78\x11\x2a\x5e\xaa\x8a\x4e\ \xbb\xeb\x95\x47\x1f\xd1\x0b\xf3\xf3\x07\x4c\x67\xf5\x57\xb4\x92\ \x99\xcf\x1e\x6c\x75\x5d\xfa\x38\x7b\x30\x18\x3a\x84\x74\xa8\x6b\ \x4e\xb0\xb9\xae\x9d\x5d\x0d\x5d\x34\xb6\xc7\x69\xea\x88\x63\x4a\ \x85\xee\x19\x05\xe9\xb9\x58\xae\x65\x97\x48\x3b\x15\x24\x08\x80\ \x31\xae\x95\x55\x8e\x27\x80\x20\x90\x1a\x92\x5e\x2b\xa9\x0d\x72\ \x79\x37\x51\xa5\x43\x0c\x67\xc4\x62\x18\x82\x90\x61\x97\x41\xdb\ \x21\x86\xc0\x30\x34\x42\xba\x1d\x23\x9b\xd2\xa2\xa2\x38\x8f\x33\ \x4e\xa8\x61\x72\xd5\x58\xc6\x97\x15\xa0\x39\x2d\xce\x99\x13\xfd\ \x58\x94\x00\x7f\x58\x5b\x34\x07\xde\xde\x54\xc7\x0b\x6f\x6c\x60\ \xef\xc1\x23\x4e\xe5\x9c\xd3\x58\xa3\x82\xa0\x95\x52\x12\x29\x25\ \xd2\x92\xa4\x2c\x8b\x9c\x70\x88\x2f\x7c\x6a\x09\x0b\x4f\x98\x82\ \x94\xc7\xa6\xc9\x48\x13\xd0\xd5\x13\xe7\xc6\xbf\xfe\x1e\xdb\x76\ \xed\xb3\x3d\x8f\x40\xaa\x39\x0d\x38\x0b\x27\xa5\xec\xa6\xea\xec\ \xee\x47\x50\x52\xda\x28\xbd\x33\x76\xbc\x7d\x5d\xd4\x5e\x4a\xaf\ \x3c\xd7\x7e\x5f\x7a\xae\xbd\xfb\xbe\xf2\x5c\x7e\x19\x28\xe5\x95\ \x2a\x5d\xce\x9e\x2e\xf6\x49\x7f\x87\x7b\x0e\x48\x7b\x7c\x7a\xf5\ \x8c\xce\x39\x5a\x96\xe4\xe4\xf9\xf3\x78\xfc\xfe\xdf\x51\x7d\xe2\ \xe5\x96\xe8\x58\xfb\x0d\x95\x6a\x7b\x16\x38\x44\x46\x45\x60\x36\ \x03\x10\x01\x26\x88\x48\xc9\xd5\xaa\xe0\xd4\xff\xb7\xed\xb5\x67\ \xe9\x8e\x0d\x6f\x22\x0f\x37\x0f\x3e\xf8\xe3\xdc\xac\x00\x6c\xaa\ \x6b\x63\xcd\xd6\x46\x76\x1c\xee\x44\x79\x69\x0b\xd5\xbf\x01\x70\ \xf2\xa7\x5e\x2a\x25\xf0\xbe\xaf\xb7\x00\xf7\x7b\x32\x73\xb0\xee\ \xfb\xbe\x7d\xa5\x7d\x83\x95\x94\xbe\x82\x0d\x5f\x7d\xbd\xaf\x76\ \x21\x64\x68\x5c\x73\xee\x2c\xae\x3a\x67\x06\x91\x90\x31\xa0\x01\ \x3d\x1e\xdc\xff\xa1\xd4\x11\x28\xa5\x38\xda\xdc\xc6\x7f\xdd\xfb\ \x34\x7b\x0f\x1e\x25\x99\x4a\x91\x4a\x9a\x24\x4c\x93\x54\x32\x45\ \x32\x65\x97\x8a\x13\xa8\xbf\xb7\xc7\xe6\xf4\x49\xe3\xf9\xf5\x0f\ \x6e\x23\x9a\x13\x1e\x75\x23\xe0\x7e\x5e\x24\x0c\x5f\xff\xc7\x9f\ \xf2\xdc\x2b\x6b\x9c\xd5\x34\x0d\xe0\x21\xd3\x13\x55\x0a\xdf\xe4\ \x0c\x18\x00\x27\xa6\x77\x27\xa7\xc8\x32\x39\x55\xc6\xe7\xba\xfb\ \x2a\x65\x8f\x49\xf7\x73\xfd\xfb\x7a\xdf\xa1\x3c\x3c\x21\xbd\xaf\ \xbd\x10\x79\xe7\xe0\x82\xd9\x6e\x9d\x8b\xb3\x50\x49\x69\xa1\xda\ \x36\x23\x4a\x97\x22\xba\xd6\xfd\x9d\x4a\x34\x3f\x01\xec\x27\xa3\ \x35\x58\xef\xc3\x03\x28\x11\x91\xb2\x45\xc5\x95\xb3\xce\xfc\xe2\ \x0d\xd7\x06\x8a\x80\x8e\x05\xfd\xf5\xf0\xf3\xe0\xe9\x5e\xf5\xaa\ \x31\x51\x16\xcd\x2c\xe1\xc2\x13\x2b\x59\x30\x75\x2c\x33\xc6\x17\ \x90\x1b\x31\x68\xef\x49\xd1\xd6\x95\xf0\x2c\x7f\xef\x2e\xb0\x74\ \xbe\x5a\xf8\x79\x32\x32\xd3\x2b\xbe\xfa\x00\x25\x82\xe2\xd4\x81\ \x7d\x3d\x17\x50\xf9\x2c\xbc\x6f\x5f\x67\x05\xb0\xeb\x0c\x24\xef\ \xed\x6c\xe0\xd1\x57\xb6\xb0\x6e\xf3\x41\xea\x9b\x3a\x28\x1f\x93\ \xcf\xb8\x92\x08\xca\x29\xea\x18\x6c\x39\xf2\xf1\x98\x35\x00\xc8\ \xcf\x8b\x72\xf1\x59\xf3\x98\x39\xb9\x9a\xba\x43\x4d\xac\xff\x60\ \x37\x28\x9b\xf2\xcd\xf3\xa4\x08\x96\xb4\x4a\x09\x8d\x2d\x6d\xdc\ \xff\xc4\x4b\x34\xb5\x75\x70\xf6\xc9\x27\x04\x26\xee\x68\x9d\x9f\ \x69\x2a\x96\x2c\x3e\x8d\xb2\x92\x31\xbc\xf4\xfa\x3a\x74\x4d\x0b\ \x34\x9f\x0a\x1f\x58\x27\x54\x06\xbf\x84\x52\x64\x64\xf2\x1c\x9c\ \x23\x98\x64\xc8\x0c\x05\xfc\xd2\x7f\x5e\xd8\x9a\xa5\x86\xc5\x3f\ \x28\x5d\x2f\x22\x00\x42\x7a\xa0\x5f\x30\xd5\xed\xb6\x40\xab\x64\ \x8a\x6f\xdd\xf6\x75\x7e\xf5\xe0\xf3\xc4\x3a\x0e\xbf\x4b\xaa\x7d\ \x53\xb6\x5a\x80\xbe\x0c\x40\xa9\x88\x56\x5e\x58\x3b\xf1\xc4\x93\ \x6e\xb8\x7c\x09\x29\xb3\xef\x09\x3f\x9c\xde\xf7\xd1\xa4\xe5\x12\ \x0e\x28\x97\x3e\x5e\x90\x9f\x63\x30\x6e\x4c\x2e\xf3\x26\x15\x73\ \xe9\x82\x4a\x16\x9f\x58\x45\x59\x51\x84\x94\x65\x5b\xe0\xa4\x29\ \x49\xb9\xf0\xbc\xe8\x1d\x77\x11\xa0\x7f\xca\x40\x6d\x7c\x31\x9e\ \xf2\xe2\x36\x15\xc8\xc3\xa6\x9b\x65\x54\x46\x0c\xec\xf6\x7c\xa7\ \x63\x4e\xb7\x8e\xbe\xad\x2b\xc6\xb6\xbd\x4d\x3c\xfa\xca\x66\x5e\ \x5e\xb7\x17\xc3\xd0\xc9\xcb\x0d\x93\x17\x0d\xdb\xa4\xa8\xf4\x8d\ \x1b\x1c\xef\x86\x40\x29\x28\x1b\x5b\xc8\xd5\x17\xce\xe7\xe2\xb3\ \x16\xb2\x6d\xcf\x41\x9a\x5a\x3b\x90\x96\xe5\x35\xd4\xf8\xc1\x2c\ \xa5\x94\x8d\xa3\x58\x8a\xcd\x3b\xf6\xf1\xa7\x27\x5f\x61\xce\xf4\ \x09\x54\x57\x96\x1e\x83\x3a\x07\xc5\xdc\x99\x93\x99\x7f\xc2\x0c\ \x5e\x5e\xf3\x36\xc9\x64\x2a\xa0\xe8\x9b\xc6\x94\x54\xaf\xc9\x1f\ \x8c\xd9\xd3\x4b\x81\x57\xe0\x23\xfd\x83\x22\x73\xdf\xf4\x77\xf8\ \x32\xcd\x01\x40\x51\x29\xff\xa2\xa4\x7c\x63\x28\x63\xdf\x5e\x90\ \xa4\x42\x59\x92\xbf\xfa\xd2\x17\x79\x72\xc5\x9b\x34\x1d\xd9\xbf\ \x8b\x44\xd3\x3a\x6c\x72\x90\xd4\x40\x59\x00\x1d\xd0\x85\x1e\x2d\ \xab\x28\x1d\x1b\xa8\x01\xe8\xc5\x3a\xa3\xfa\x46\xb0\x87\xeb\xb2\ \x0e\xbf\xb9\xa5\x77\xea\xd1\x0a\xc0\xfc\x48\x00\x00\x20\x00\x49\ \x44\x41\x54\x92\x60\x5a\x8a\xdc\x88\xc1\xd9\x73\xc6\x71\xf6\x9c\ \x71\x48\x29\xb1\x14\x1c\x38\xda\xc9\x6b\x1f\x34\xb0\x7e\xc7\x51\ \x52\x96\xe5\x2b\xe4\xc9\xec\x2c\xf4\xad\xe4\xa2\x37\x8c\x2b\xfc\ \x86\xa1\x0f\x98\x57\xf8\x12\x44\x81\x91\x23\x55\x00\x45\x16\x1a\ \xe4\xe6\x84\x38\xd2\xda\xc5\x7f\x3f\xba\x16\x5d\x08\x42\x21\xc1\ \x92\x45\x33\xf8\xdc\xa5\x27\x91\x9b\x63\xf4\x2a\x47\xfe\xb8\x6c\ \x42\x08\x7a\xe2\x8a\x89\xd5\xe5\xfc\xe6\x07\x5f\xa3\xa5\xbd\x93\ \x7f\xfc\xd1\x03\xac\x7d\x7f\x87\x8d\x91\x04\x73\x62\xe9\xe3\x34\ \x8d\xae\x9e\x18\x5f\xfd\xee\x4f\x19\x5f\x51\xc2\xef\xee\xfc\x16\ \x63\x8b\x0b\x46\xd5\x1b\xb0\xa4\xe2\xcc\x53\xe6\xb1\xe2\x81\x9f\ \x72\xd9\xe7\xbf\x41\x6b\x5b\x47\x96\x5c\xbc\x8b\xb9\x2b\xff\x3a\ \xe0\x2f\x25\xe8\xa5\x27\x48\xe6\x8a\x2d\xf1\xd0\xbf\x6c\xfb\x2a\ \x7f\x36\x41\xa9\x2c\x65\x41\xbe\xcf\xf4\xaf\x5c\x81\x3d\x3c\x21\ \x42\xda\xda\x3b\xa8\xaa\x18\xcb\x16\x3d\x5a\xe6\xce\xeb\x81\xb2\ \x00\x9a\x83\x01\x94\x93\x37\x71\xd9\xc9\xf3\x17\x55\x9f\x7b\xfa\ \x29\x58\xd6\xb1\x75\xeb\x07\x93\x39\xc8\x04\xc8\x06\x4f\xcb\x95\ \xd9\xe7\x2f\xd0\x35\x28\x29\xca\xe1\xe4\xe9\xa5\x5c\xb9\x68\x02\ \xa7\xce\xa8\x60\x5a\x55\x11\xc5\xf9\x11\x12\x29\x8b\xa6\x8e\x98\ \xc3\x79\x17\x4c\x2d\xfa\x51\x62\xe1\x37\xff\xfe\x5b\x25\x54\xc6\ \xe4\x14\x41\x0f\xc1\x9f\xcc\xe9\x85\x08\x0b\x0f\x63\x70\x63\x40\ \x53\x2a\x3e\xd8\x75\x98\x07\x9e\x7f\x97\x75\x9b\x0f\x70\xa4\xa5\ \x8b\xa2\xbc\x08\x55\xe5\xb9\x76\xd7\x83\xfc\xe8\x04\x3e\x87\xeb\ \x11\x08\x21\xc8\xcd\x89\x70\xcd\xc5\xa7\x70\xe6\xc2\x39\xf4\xc4\ \x12\xbc\xbf\x6d\x5f\x5a\x2a\x3c\x53\xaa\xdb\x59\x01\x3b\xba\xba\ \xb9\xff\x89\x97\x68\x6d\xef\xe6\x8c\x85\xb3\xd1\x75\x31\x2a\x4d\ \x46\xee\x79\xe5\xe4\x44\xb8\xe5\x33\x57\xb2\xef\x40\x3d\x9b\xb6\ \xed\x22\xa4\xa7\x95\xae\x33\xb3\xf1\x81\x29\x99\xb1\x92\xa7\xc1\ \x67\x15\x58\xc9\x5d\x1c\x40\xf8\xe7\xb9\x37\xd9\x55\x86\x27\x2a\ \xd2\x3d\x0c\xc2\x1f\x66\x66\x78\x13\x0a\x8f\x9e\xcc\xbf\x80\x29\ \xa9\xb8\xf1\xba\x6b\xd9\xb1\xaf\x81\xf7\x3f\xd8\xdc\x42\xec\xa0\ \x4b\x13\x9e\x1c\x08\x03\x88\x02\x15\x5a\xc1\x94\xcf\x2c\x3e\xe3\ \xdc\x92\x93\xe7\xce\x09\x94\x02\x7f\x18\x6e\x7d\xb6\xe3\x06\x4a\ \x83\x0d\x8d\x6d\x57\x78\xe0\xa1\x94\x90\x1f\x0d\x51\x39\x36\x97\ \x79\x93\x4b\xb8\x78\xe1\x78\xae\x5a\x34\x85\xda\xf2\x7c\x92\xa6\ \x24\x99\x32\x1d\x9e\x7a\xe9\x8b\xd5\x54\x20\x09\xab\x32\x5c\x3b\ \xb2\xc4\x91\xfe\x81\x94\x4e\x19\xa9\x60\x2d\xb8\x8b\xf8\xfa\xe2\ \x48\xe5\xf0\x1c\xea\xba\xa0\xa5\x23\xc6\x96\xdd\x0d\x3c\xfe\xea\ \x07\x3c\xbd\x6a\x1b\x21\x43\xa7\xb4\x38\x8f\x70\xc8\xc0\xf0\x85\ \x09\x1f\x17\x83\x60\x49\x28\x1d\x53\xc8\x25\x67\xcf\xe3\x86\x2b\ \xce\xe5\xfd\x6d\x7b\x69\x69\xeb\xc4\x34\x25\x9a\x70\x6b\xe1\x95\ \x4f\xa9\xcb\x9e\x06\x9b\x76\xec\xe5\x37\x7f\x7c\x86\x13\x66\x4c\ \x66\xfc\xb8\xd2\xd1\x65\x2a\x56\x70\xcd\xa5\x8b\x30\x8c\x08\x6b\ \x37\x6c\xf2\x6e\x98\x6b\x94\x02\x5c\x93\x5e\x78\xa7\x02\x11\x9f\ \x17\xb3\xfb\x43\x08\xdf\xc2\xe1\x87\xe0\x85\x5f\xed\x39\x50\xcf\ \x92\x0e\x2b\xfc\x29\x40\xe5\x0b\x39\x83\xd1\xa6\x4f\x2e\xcd\x19\ \x07\xd7\x5e\xb9\x94\xb6\xce\x38\x6b\xd6\xbd\x1b\x53\xdd\xfb\x5d\ \xb9\xb0\x44\x7f\x59\x00\x0d\x28\x06\x4e\xd0\xc6\x5d\xfc\xc8\xf7\ \xfe\xe6\x3b\x65\x57\x5f\x72\x7e\xbf\x1e\xc0\x60\x51\xfe\x6c\x13\ \xd2\x7f\x5c\x5f\x9f\x31\xdc\xe3\x06\x93\x62\x1c\xe8\x38\x4d\x03\ \xd3\x94\xc4\x92\x16\xad\x5d\x71\xde\xdc\x5c\xcf\x6b\xef\x1f\xa2\ \xb9\xbd\x1b\xc3\x11\x38\x15\xf8\x10\x61\x5f\x56\xc1\x4e\x19\x39\ \x03\xc7\x41\xfe\x71\x50\x5d\x6f\x08\x38\xc7\x89\x4c\xc4\x38\x90\ \x3e\x52\xbd\x3f\xd7\x45\xa9\x9d\x9a\x89\xbc\x68\x98\x73\x16\x4c\ \xe6\xf3\x57\x9c\x42\x69\x51\x84\x44\xea\xe3\x65\x08\xfc\xe7\xda\ \xd8\xd2\xce\x5d\xf7\x3c\xc1\xd3\x2b\xdf\x22\x1c\x31\x7a\xa3\xef\ \x4a\xa5\x33\x37\x4a\x51\x55\x51\xc2\x3d\x77\xde\x4e\x65\x59\x71\ \xbf\x55\x97\xc3\x39\x9f\x6d\xbb\xf6\x71\xf5\x2d\xdf\xf4\x3c\xb7\ \x60\xf6\x48\xa5\x9d\x76\x37\xb3\x93\x91\x3e\x4e\x57\xf4\xf5\xee\ \xda\x53\xa4\x59\x89\xec\xfb\x69\x8f\x15\x8f\xfd\xca\x9f\xa1\xa2\ \x9f\x0c\x95\x8b\x45\x65\x64\x25\xa4\x94\xdc\xf7\xcb\x9f\xd2\xda\ \xad\xf8\xc6\x77\xff\xbd\x51\x36\xac\xf8\x14\xf0\x01\xb6\x68\xa8\ \xec\xcf\x03\xc8\x05\x2a\x44\xc1\xb4\xcf\x5e\x7e\xe1\x45\x39\x93\ \x6a\xaa\xbd\xd5\x72\x24\x52\x5c\x7d\xb1\xe6\x0e\xb4\xdf\x68\x8b\ \x68\x0c\x86\xdb\xcf\x6f\x7c\x34\x4d\x10\x0e\x69\x14\xe7\x47\x38\ \x69\x6a\x29\xd7\x9c\x35\x89\xf3\xe7\x4f\x64\xca\xf8\x62\x8a\xf3\ \x23\x00\xb4\x75\xc6\x89\x27\x4d\xbb\x7a\x5c\x0b\x82\x59\xbe\xf2\ \xf8\xb4\x92\x4d\xc6\x4a\xef\x96\x7c\x08\xc8\x1a\x2a\x08\xa1\x32\ \x50\xe9\x34\x77\x82\x25\x6d\x2f\x65\xf3\xee\x06\xee\x7b\x66\x3d\ \x6b\xde\xdb\x47\x5b\x67\x8c\x68\x24\x44\x65\x99\x5d\x3c\x25\xd5\ \xf1\x6d\x00\xfc\x86\x2a\x2f\x9a\xc3\xd2\xc5\x27\x71\xd1\x59\x27\ \xd3\x13\x4b\xb0\x65\xe7\x7e\x8f\xa1\xd7\x1f\xf3\xba\x5e\x53\x47\ \x57\x0f\x77\x3f\xb4\x9c\xae\xee\x18\x0b\x4e\x98\x4e\x4e\xc4\x18\ \x71\x58\xe4\x7a\x14\xe5\xa5\x63\x58\xb6\xf4\x02\x56\xbf\xbd\x91\ \xa3\x4d\x2d\x81\x5e\x7f\xfc\x86\x20\x23\x7b\x44\x2f\x8f\x50\xf9\ \x74\x17\xf0\x79\x34\xaa\x57\x76\x48\xf8\xdb\xa9\x7d\x71\x7d\x9a\ \x04\x44\x65\x30\x5e\xcb\x20\x30\x4d\x5a\xfd\x69\xc9\x85\xe7\x93\ \x9b\x57\xc8\x13\x2f\xbc\x66\xd2\xb5\xeb\x21\x6c\x62\x90\x58\x7f\ \x21\x80\x8e\xa3\x05\x20\x0a\xa7\x7f\xee\xf2\x0b\x2e\x0e\xd5\x56\ \x55\x66\xa5\xd7\x1e\xee\x84\x1c\x0e\xf7\xfe\xe8\x8a\x68\xf4\x8d\ \x39\xf4\x27\xc5\xe5\x4e\x24\xd3\x82\x48\xd8\x60\x7c\x69\x3e\xf3\ \xa6\x96\x73\xe1\xc2\x5a\xae\x5b\x3c\x9d\xb9\x93\x2b\x90\x0a\x5a\ \xda\x7b\x6c\xf7\xd6\x0a\x2a\xd1\xf6\x9f\x12\x52\x59\x40\xbd\x20\ \xf6\x90\x1d\x11\x56\x69\x1a\x31\x01\xa1\x90\x46\x7b\x47\x8c\x8d\ \x3b\x0e\xf1\xd4\xab\x9b\x78\xf8\x85\x8d\x20\x34\x6a\xc6\x15\x3b\ \x1e\x8b\x36\xaa\xe9\xb4\x63\x16\x1a\x58\x50\x5c\x98\xc7\x05\x67\ \xcc\xe3\xd6\x1b\x2e\x65\xf3\xce\xfd\x1c\x69\x6c\xb5\x5b\x69\x09\ \xae\xbe\x42\xd8\x82\x28\x9b\xb6\xed\xe1\xbf\xef\x7f\x92\x13\xa6\ \x4f\xa6\xa6\xb2\x1c\x4d\x1b\x59\x58\xe0\x1e\x97\x9f\x17\xe5\x73\ \xcb\x2e\xe5\xed\x8d\x5b\x38\x78\xf8\x48\xf6\xf4\xb1\xfb\x8a\x5b\ \x18\x94\x29\x66\xec\xdf\xd7\xd7\xfd\xe7\xad\xf4\x69\x56\xb0\xde\ \x3d\x02\xfd\x90\x80\x88\x6c\x1d\x02\xbe\x0c\xd6\xc5\x17\x2c\xa6\ \xb0\xb0\x84\xc7\x96\xbf\x22\x55\xd7\xce\x07\x81\x23\x4e\x08\x30\ \xa0\x07\x30\x4e\x2b\x98\x7e\xd3\x35\x97\x2c\xd1\x2b\x2b\xca\x87\ \xbd\xb2\x0e\xac\x71\x37\xf2\xe3\x06\xfb\xd8\x5f\x08\x33\x94\xf0\ \xc6\x8f\x23\xe0\x78\x5c\x52\x41\x59\x51\x94\x53\x67\x55\x72\xc5\ \x59\xd3\x38\x7f\xc1\x04\xce\x3a\xb1\x86\xb2\x31\xb9\xb4\x77\xc6\ \x39\xdc\xdc\xe5\x94\x0c\x67\x0c\x18\x3f\x72\x9b\x09\xf4\x12\xec\ \xff\x4e\x03\x49\x59\x94\xe3\xdc\x38\x52\xa5\x7d\x07\x5d\x68\xa4\ \x2c\x8b\xb7\x37\xef\xe7\xb1\x95\x1b\x79\x61\xcd\x56\xea\xea\x5b\ \x98\x5a\x5b\x4e\xd9\x98\x08\xa6\x75\x7c\x1b\x02\x21\x04\x52\xd9\ \x0c\x43\x57\x5e\x70\x2a\x97\x9d\x7f\x3a\x96\x25\x59\xff\xfe\x36\ \x0c\x43\xf7\xf0\x00\x3f\xfb\x8e\x2e\x34\x9e\x79\x79\x0d\x2b\x57\ \xbf\xcd\xa2\x05\x27\x50\x5e\x92\x3f\x62\x4a\x32\x17\x2f\xba\x76\ \xe9\xf9\x14\x17\x15\xb2\x62\xd5\x1a\x0f\xac\x24\x03\x0f\x50\xbe\ \x1c\x7e\xba\x6e\x20\xa3\x58\x37\x4b\x2c\xdf\xab\x6f\x42\x64\x7a\ \x00\x19\x69\xc8\x20\xec\xdc\x0b\x94\x74\x6b\x50\x2e\x3a\xf7\x1c\ \xca\xcb\xc7\xf1\xd0\x53\x2f\x29\xd5\xb9\xf3\x8f\xd8\xcc\x40\xfd\ \x7a\x00\x2e\x19\x68\xa5\x56\x38\xf3\xf3\xcb\x96\x2e\x15\x65\x63\ \x4b\x46\x5d\x1b\xef\x58\x82\x83\xfd\x4d\xe4\xe1\xd0\x72\xf5\xf7\ \x5b\x7b\x7d\x87\xf3\xff\x9c\x88\x41\x71\x7e\x0e\x27\x4c\x2a\xe5\ \xca\xb3\xa7\xb0\x6c\xf1\x6c\xa6\xd7\x8c\xa5\x20\x37\x82\xae\x69\ \xf4\x24\x92\x74\xf5\x24\x03\x80\xa2\xf0\x4d\x70\x41\x1f\x05\x28\ \xbe\x1e\x06\x45\xef\x81\x90\x46\x95\xd3\x35\xe3\x9a\x66\x1b\xa8\ \xee\x58\x82\xad\x7b\x1b\xb8\xef\xa9\xb7\x78\x65\xdd\x2e\x12\xc9\ \x14\xe1\xb0\x41\xd9\xd8\x7c\x74\xed\xf8\x0c\x13\xfc\x75\x04\xf9\ \x79\x51\xce\x5b\x34\x87\x4f\x2d\x3d\x97\xd6\xf6\x2e\xf6\x1c\xa8\ \x27\x95\x32\x03\xf7\xc6\x25\xe6\x6c\x69\xeb\xe0\x37\x7f\x7c\x8a\ \xce\xee\x38\xb3\xa7\x4d\xa2\x20\x3f\x32\xe2\xb0\x40\x29\xc5\xa9\ \x27\x4d\x67\xee\xac\x19\xbc\xf4\xfa\x5a\x52\x29\xd3\x2b\xe2\x11\ \x59\x7a\x01\xc8\x60\xa9\xf2\xbb\xe7\x32\x40\x76\x1b\x4c\x0a\x7a\ \x24\x20\x5e\x86\x51\xf6\x41\x02\xe2\xfb\x8e\xcc\x7d\x9d\xef\x3a\ \xef\xec\x33\xa9\xae\xae\xe1\x81\xc7\x5f\x14\xaa\x73\xc7\x03\x40\ \x43\xa6\x01\x10\x59\x42\x80\x12\xe0\x24\x6d\xfc\x55\x2f\x3c\xf4\ \xd3\x9f\x30\x79\x42\xed\x80\x20\xdf\x60\x27\xeb\xe8\x95\x00\x0f\ \xee\xb8\x4c\xd0\x6f\x30\x7d\x0b\xfd\xbd\x37\xd2\x5e\x08\xf7\x82\ \x0b\x01\x0d\x2d\xdd\x3c\xff\xd6\x0e\x5e\x5e\xbf\x87\xee\x78\xd2\ \x26\x98\x50\xd2\x03\x8d\x84\x1f\xe4\x41\xf5\x01\x08\x49\x8f\x39\ \x39\xb0\x6f\x2f\x50\x0a\xa4\xb0\x99\x68\x84\x03\x24\xb9\xa0\x56\ \x38\xa4\x71\xc3\xa5\xa7\x72\xfd\x25\x27\x13\x8d\x84\x3d\xc6\xdb\ \xe3\xd5\x3b\xf0\x28\xdc\x81\xbf\xbf\xf3\x6e\x5e\x58\xb5\x0e\x29\ \xd3\xc0\xa9\x74\x7e\xbf\xfb\x3b\x35\x0d\xfe\xfd\x8e\xbf\x62\xc9\ \xb9\xa7\x8e\x5a\x93\x51\x57\x77\x0f\xe7\x2f\xbb\x95\xd6\x8e\x4e\ \x67\x22\x07\xcb\xc9\x95\x53\xce\xe8\xaf\xe5\x97\xde\x8a\x2f\xb3\ \xd2\x79\x05\xf6\xf5\xca\x89\x65\x20\x4d\xe8\xf1\x0c\xf8\xc0\xe3\ \x5e\x9d\x8a\xbe\x73\xf8\xe7\xef\x7c\x8b\xf3\xce\x39\x8f\x73\xaf\ \xbb\x0d\x79\xe8\xc9\x4b\x80\x8d\x4e\x26\xc0\xea\x0f\x03\xc8\x05\ \x2a\xb5\xa2\xd9\x9f\xbb\xe1\xca\xcb\x29\x2a\x28\x18\x54\x9c\x3d\ \x5c\x6d\x3c\x32\x5c\xdc\x91\x1e\x37\x9c\xde\x84\xa1\x84\x0a\xc3\ \xf5\x22\xfc\xef\x49\xa5\x28\xc8\x0d\xb3\x70\x46\x25\xcb\xce\x9f\ \xcd\xc5\xa7\x4d\x63\xd1\xdc\x1a\x26\x56\x8d\x21\x69\x5a\xd4\x35\ \xb4\x61\xfa\x99\x6d\x7d\x71\xa4\xdf\xe4\x7b\x80\x50\x26\x41\x64\ \x46\x5a\xca\xf3\x10\x32\xd2\x52\x02\x1b\x44\x7c\x77\xeb\x7e\xfe\ \xf4\xec\x5a\x5e\x5d\xbf\x8d\xbd\x07\x1a\x19\x5f\x31\x86\xea\x8a\ \x5c\x4c\xeb\xf8\xab\x33\x10\x3e\xda\xef\x25\xe7\x2e\xe0\xf2\x0b\ \xce\x24\x37\x27\xc2\x9a\x77\x36\x7b\x52\x5b\xfe\xdf\xa9\x94\xe2\ \x99\x97\x56\xf3\xd2\xeb\x6f\x33\x63\x4a\x2d\x13\x6b\x4a\x31\xcd\ \xe1\xff\x26\xa5\x14\x91\x70\x98\x9b\xaf\xbf\x8a\x3d\xfb\x0f\xf2\ \xc1\xd6\x9d\x84\x7c\x5d\x8f\xca\x9f\xef\x17\xd9\x04\x4a\x54\x60\ \xec\x66\x52\xda\x67\x4d\x1f\xab\xcc\x72\x93\xbe\x2a\x11\xd3\xe7\ \x80\x82\x45\xa7\x2c\x64\xf6\xec\x59\xdc\xfd\xe0\x73\xa8\x8e\x6d\ \x0f\x38\x18\x40\xac\x3f\x0c\x40\xf3\x30\x80\xc2\x59\x9f\xbb\xfe\ \xf2\xa5\x14\x15\x14\x8c\xa0\x08\x67\x78\xee\xf9\x48\xb4\xf1\x46\ \xdb\xad\x1f\x6e\x48\xd3\x3f\xbe\x21\xbc\xe7\x96\x84\x68\xc4\xa0\ \xa4\x28\x97\x99\x13\x4a\xb9\xf4\x8c\x29\xdc\x7a\xe5\x7c\x4e\x9c\ \x56\x45\x5e\xd4\xe6\x1e\xb4\x4c\x49\x67\x4f\xc2\x23\x2a\x09\xd4\ \x92\x67\x0c\x1c\x37\x11\x1d\xac\x51\xcf\x12\x47\x4a\xe1\x15\x98\ \x68\x42\x43\x09\xe8\xe8\x8a\xb1\x75\xcf\x61\x1e\x78\xe6\x4d\x96\ \xbf\xfa\x01\x28\x88\x46\x23\x14\x15\xe4\x12\x32\xc4\x71\x13\x26\ \x78\xf8\x8b\xb4\x43\x83\x45\x0b\x67\x72\xcb\xf5\x97\x71\xb4\xa9\ \x95\x83\x87\x1b\xe9\x89\x27\x1c\xbe\x3e\x1b\x3d\xd7\x0d\x9d\xd6\ \xf6\x0e\x1e\x7c\xf2\x45\x9a\xdb\x3a\x39\x61\xc6\x14\x0a\xf2\x73\ \x86\x65\xdc\xd2\xfd\x27\x1a\xcb\x2e\x3b\x1b\x4b\x09\xde\x7a\xe7\ \xfd\xa0\x10\xa9\x73\x8d\xdd\x34\x70\x26\x70\x99\x6d\x22\xbb\xff\ \xf7\xf7\xa5\xa8\x8c\xf7\x3d\x92\x10\x5f\x39\xb9\x24\x93\x49\x30\ \x6d\xf0\xcf\x3e\xe3\x34\x66\x4c\x9f\xc1\xdd\x0f\x3e\x8b\xea\xd8\ \x76\xbf\x2f\x04\x90\x43\x0a\x01\x46\xc3\x3d\x1f\xcc\x44\x1e\xe9\ \x71\x43\x61\xdb\x1d\xca\x71\xa3\x11\x0e\xf4\x95\x26\xed\x7d\x5c\ \xe6\xa0\xb4\x73\xc3\xb1\x78\x8a\x95\xeb\x76\xf2\xcc\x1b\x5b\xa9\ \x3b\xdc\x6a\xbb\xea\x99\x6c\xb2\xbe\xfc\x73\x3a\xbf\x2c\x11\x4e\ \xc3\xa9\x7f\x5f\x25\x95\x17\x6f\x7a\xcc\xb3\x42\x22\x94\xf0\x8e\ \x73\xa9\xa9\x0d\x43\xe3\xca\xf3\xe6\xf3\x85\x6b\xcf\xa1\x20\x2f\ \xe7\x98\x52\x7c\x8f\xb4\x8e\x40\x29\xc5\x8f\xef\x79\x98\xbb\x1f\ \x5c\xee\x49\x7a\x2b\x7f\x0d\x86\x52\x68\x02\x6e\xff\xab\x9b\xb8\ \xf9\xba\x25\x23\xf6\x06\x84\x10\x6c\xde\xb6\x93\x6b\x6f\xfd\x1b\ \xa4\x65\x05\x5a\x8a\x7b\xb9\xf2\xd2\x57\x29\x9a\xe1\xca\x4b\x97\ \xec\xc6\xd7\x1a\x9c\x6e\x1d\x0e\xb6\x2a\x07\xf6\x95\xe9\x52\xf3\ \x74\xeb\xb0\xbd\xef\xff\xbd\xe3\x76\x16\x9f\xb5\x78\x48\x21\x80\ \x0b\x02\x8e\xd3\x0a\xa7\x7f\xf6\xb2\x0b\x2f\x10\xe5\x25\x25\x83\ \xce\x9f\xf7\x0b\x90\x0d\x41\xe3\x6e\xa8\x6c\xbb\x1f\x15\x38\x38\ \xd8\xef\x1b\x1a\xc0\x29\x7a\x75\x3c\x0a\xec\xd4\xe3\x09\x53\xca\ \xf9\xd4\x85\x73\xb8\x7a\xf1\x5c\x4e\x9f\x3b\x81\x69\xb5\x65\x18\ \xba\x46\x7d\x53\x27\x5d\x3d\x71\x9f\x6a\x8d\x0a\x22\xc2\x01\x60\ \x39\x4d\x73\xed\xd1\x48\x65\xa4\xa5\x04\x7e\x46\x1f\x89\x25\x25\ \xef\x6f\xaf\xe3\x0f\x4f\xbe\xc1\x6b\xeb\xb7\xb1\xff\x50\x23\x63\ \x8a\xf2\x98\x50\x55\xe0\x78\x31\x1f\x6d\x98\x90\xf9\xdd\xe7\x9c\ \x76\x02\xcb\x2e\x3d\x9f\xc2\x82\x3c\xd6\x6d\xdc\x8a\x69\x5a\x1e\ \xb6\xe1\xae\x79\x2f\xaf\x79\x9b\x15\xab\xd6\x31\xb1\xba\x92\xa9\ \x13\x2b\x86\x65\x08\xdc\x70\x64\x5c\x45\x09\x57\x5e\x72\x1e\xaf\ \xbf\xf5\x36\xcd\xad\xed\x1e\xb7\xa5\x3f\x73\xa3\x7a\x55\x7c\xa6\ \x9f\x08\x15\xcc\x08\x05\x58\xd5\x64\xff\x24\x20\xfe\xf4\x70\xa6\ \x1c\xfa\x92\x0b\xcf\xa7\xa4\xb4\x9c\x07\x1e\x7b\x41\xaa\xce\x1d\ \xf7\x67\x03\x01\xfb\x32\x00\xe5\x5a\xc1\xb4\xcf\x2c\x5d\x7c\xbe\ \x5e\xe5\xa4\x01\x47\x2a\x79\x3d\x50\xe6\xa0\xbf\x09\x39\x98\xe3\ \x86\x9a\x71\x18\xa8\x06\x60\x24\xe9\xce\x91\xb4\x46\x67\x3b\xce\ \x9f\x72\xb4\x24\x4e\x09\x70\x3e\x33\x26\x94\x71\xe1\x69\x53\xf9\ \xe2\xd5\x0b\x39\xf7\xe4\x99\x14\xe6\xe7\x10\x8b\x27\x41\x41\x2c\ \x91\xb2\x19\x8b\xf0\x77\x8f\xf9\xd2\x4f\xfe\x9e\xa4\x8c\x1a\x85\ \xe0\x48\x4b\x4b\x5d\xeb\x9a\xa0\xb5\xb3\x9b\xcd\xbb\x0e\xf1\xe7\ \xe7\xde\xe4\xe1\xe7\xd6\x23\x84\xc6\xd8\xa2\x7c\xa2\x39\x61\xc2\ \x86\x76\x4c\xd8\x7c\x86\x9c\x3e\x94\x10\xcd\x89\x70\xca\xbc\x19\ \x7c\xed\xe6\x6b\x68\x6c\x69\xe7\x40\xfd\x11\x62\xb1\x84\xc7\x1e\ \xad\xe9\x1a\x6d\x6d\x9d\xfc\xf9\xe9\x97\xd8\x7f\xf0\x28\x27\xcf\ \x9b\x45\xfe\x30\xbc\x1b\x37\x4d\x58\x58\x90\xcf\xe7\xaf\xbf\x8a\ \x37\xd7\x6f\xe4\xe0\xe1\x06\xaf\x76\xc4\x0f\xd0\x04\x59\x80\x7c\ \x46\x41\x64\x89\xe3\x33\x2b\x42\xfc\x45\x65\x19\x69\x47\xe5\x37\ \x00\x2a\x1d\x0e\x5c\x76\xc9\x45\x14\x14\x8c\xe1\xa1\x27\x5f\x4c\ \xa9\xce\x9d\xf7\xfb\x30\x80\x01\x0b\x81\x2a\x44\xc1\xb4\x1b\x2e\ \x3c\xfb\xdc\xd0\x04\xa7\x10\xe8\x58\x02\x66\x83\x99\xd8\x23\x3d\ \x6e\x38\x52\x5c\x43\x39\x6e\x38\x4d\x4d\x23\xa9\x5b\x48\xab\xcc\ \x40\x32\xa5\x28\xca\x8f\x72\xd2\x8c\xf1\x2c\x3d\x6b\x36\x57\x2e\ \x9e\xcb\x75\x17\xcd\x67\x6a\x6d\x19\x9d\xdd\x71\x0e\x34\xb4\xd8\ \xe4\xa8\x9a\xf0\xad\x32\xc2\xd7\x5a\xaa\x7a\x03\x54\x10\x60\x54\ \x4a\xd7\xad\xdb\x7c\x8b\x21\x43\x23\x9e\x4c\xb1\x76\xd3\x2e\x1e\ \x7f\x71\x1d\x0f\x3d\xbb\x86\x83\x0d\x2d\xcc\x99\x56\x43\x61\x7e\ \x38\x2b\x95\xfc\x87\x6f\x08\x6c\x01\x8f\xf3\x16\xcd\xe7\xa6\x65\ \x4b\x18\x5b\x5c\xc8\x6b\xeb\x36\xa6\x27\xa4\x13\xde\xec\xd8\x5d\ \xc7\xef\x1f\x5e\x4e\x22\x91\xe2\xac\x53\xe6\x0e\xcb\xa3\x71\xf7\ \x5f\x76\xf9\xc5\xe8\xba\xce\xcb\x6f\xbc\x45\x28\xa4\x07\x8c\x69\ \xe6\x0a\xdf\x57\x43\x51\x30\xd5\xab\x32\x0c\x80\x4a\xcb\x83\xb9\ \xc9\x4f\x8f\x18\x34\xc8\x50\x74\xd5\xd2\x4b\x30\xc2\x79\x3c\xba\ \xfc\xe5\x84\xea\xda\xf9\xc7\xc1\x14\x02\xe1\x78\x00\x65\x22\x7f\ \xca\xf5\x17\x9c\x75\x56\xce\xa4\xda\xea\xac\x71\xf4\x60\x56\xd6\ \x91\x90\x87\x0c\x35\xce\xce\x5c\x59\x87\xc3\x55\x30\xd4\xee\xc4\ \x8f\xb2\xa9\x29\x9b\x87\xe0\x0e\x44\x43\xd7\x08\x19\x3a\x53\x6b\ \x4a\xb9\xfc\xdc\x59\xdc\x74\xf9\x22\x16\xcd\x9b\xc4\x94\x9a\x52\ \xf2\xa2\x61\x3a\xba\x62\x1c\x6d\xed\x72\x74\xe8\x45\xa0\x1a\x91\ \x5e\x5a\x8b\xbe\x4e\x33\x85\xa7\x9e\xa3\x48\x87\x2b\x52\xda\x74\ \x5e\x5b\x76\x1e\xe4\xde\xc7\x5e\xe6\x95\xb5\x5b\x68\x68\x6c\x25\ \x37\x27\x42\x4d\x65\x91\x07\x88\x7d\x94\xa1\x81\xa6\x69\x2c\x3c\ \x71\x1a\x37\x5d\x7b\x19\xf9\x79\x51\x3e\xd8\xbe\x87\xae\xee\x1e\ \x74\x5d\xf7\x2e\xf8\x9a\xb7\x37\xf1\xfc\xab\x6f\x51\x5d\x55\xc1\ \x9c\xe9\x95\xbd\xd4\xb0\x06\xbb\x9d\xbb\xe8\x44\xe6\xcd\x9e\xc3\ \x93\xcf\xbf\xec\x53\x03\x26\xc0\x33\x40\x86\x2b\x2f\x7a\x77\xfc\ \x66\x25\x01\xf1\x17\x10\xf9\x01\x41\xe5\x63\x2d\x72\x0d\xca\x35\ \x97\x5f\x86\xc4\xe0\x89\x17\x5e\xed\xa1\x6b\xd7\x9f\x48\x4b\x84\ \xf5\xdb\x0d\x18\xb1\x0d\xc0\xe4\x65\x8b\x16\x9e\x96\x37\x6b\xea\ \x24\x5f\x4a\x65\x68\x68\xfa\x47\x19\x67\x0f\x17\x70\x1c\x2d\xc6\ \x23\xff\xfb\xa3\xdd\x43\x31\x14\xd7\xd4\x6d\xe4\x2a\x2d\xce\x67\ \xe6\xa4\x71\x9c\x77\xca\x34\x3e\x77\xc5\xc9\x5c\x7f\xc9\xa9\x94\ \x8e\xc9\xa7\xad\xab\x07\x33\x65\x61\x4a\x89\x69\x05\x65\xb3\x3d\ \x57\x55\xf9\xd2\x6f\x19\xd5\x89\x1e\x63\xad\x72\xba\x16\x0d\x9d\ \xf6\x8e\x1e\xde\xdf\xb1\x8f\x47\x5f\x78\x93\xfb\x9f\x7c\x0d\x25\ \xa1\xba\xa2\x04\xc3\xd0\x09\x19\xda\x47\xd2\xb5\xe8\x86\x06\xe1\ \x70\x88\x93\xe7\xce\xe4\xaf\xbf\x70\x15\xc9\xa4\xc5\xf6\xdd\xfb\ \x49\x24\x92\xe0\x28\xf2\xb6\x75\x74\xf0\xc8\xd3\x2f\xb1\xfe\xbd\ \x1d\x9c\x7d\xda\x49\xe4\xe5\xe6\x0c\xe9\x5c\x85\x10\x98\x16\x4c\ \x9e\x50\xcd\x17\x3f\x7b\x1d\x4f\x3c\xfb\x22\xed\x9d\xdd\x1e\x89\ \xad\x52\x19\xe9\xc1\x2c\x24\x20\x64\xba\xf8\x19\x61\x5c\xf6\xb6\ \x64\x15\xa0\xca\x57\x28\xae\xbf\xe6\x0a\xda\xba\x52\xbc\xf0\xf2\ \x1b\x9d\xaa\x6b\xf7\x43\x8e\x07\x10\x1f\x8c\x01\x28\x11\xb9\xd5\ \x4b\x66\xcd\x98\x53\x72\xca\x89\x73\x02\xe9\x9f\xd1\xc8\x83\x0f\ \xb6\x78\x67\xf4\xd2\x6e\xc7\x46\x8a\x6b\xa8\x9e\xcf\x68\xa6\x18\ \x87\x8f\x98\x43\xca\x54\x84\x43\x06\x73\xa6\x56\x71\xe5\xe2\x79\ \x5c\x75\xfe\x02\xae\x3c\x6f\x3e\xa7\xce\x9d\x84\x94\x8a\x7d\x87\ \x1a\xbd\xe6\x26\x4d\x04\x43\x85\x6c\x24\x92\xfe\xd4\x97\x7f\x55\ \xd3\x75\x0d\xd3\x92\xac\x7b\x7f\x27\x7f\x5e\xfe\x06\x4f\xbc\xf4\ \x16\x3b\xf6\xd5\x33\x63\x72\x35\x15\x25\xd1\x8f\xb4\x1c\xd9\xb4\ \xe0\x8c\x53\xe6\x72\xe3\x35\x4b\x98\x3a\xb1\x9a\x97\x57\xaf\xc7\ \xb2\x6c\xb0\xd0\xd0\x75\xea\xea\x1b\xf8\xe3\xe3\xcf\xd3\xda\xd6\ \xc1\xa5\xe7\x2f\x20\x99\x1a\xea\x75\x56\x84\xc3\x21\x6e\xba\xfe\ \x2a\x76\xef\xa9\x63\xe7\x9e\xbd\x1e\x01\x80\xc8\xa8\xe2\xeb\xd5\ \x50\x24\xd2\x92\xec\x22\xb3\x82\x40\x64\x9f\xfc\x81\x7d\x1d\xfe\ \xca\xcf\x5e\xff\x29\xb6\xef\x6d\x60\xf5\x5b\x6f\xd5\xab\xee\xfd\ \x8f\x61\x37\x03\x0d\x8a\x13\x70\x2c\x39\x95\x8b\x6b\x6b\xa7\x57\ \x9f\x7f\xc6\x29\x98\xd6\xe8\x49\x5e\x0f\xc7\x8b\x18\xea\xca\x7a\ \xbc\x70\x15\x0c\xa5\xc5\x79\xa8\xd7\x68\xb4\x5c\x63\x05\x18\x86\ \x4e\x34\x12\xa2\x7a\xdc\x18\x2e\x5a\x34\x83\x2f\x5d\x77\x36\x8b\ \x4f\x9d\xc3\xa4\xf1\xa5\xe4\x45\x23\x98\x96\xa4\xa9\xb9\x13\x4b\ \xda\x03\x21\x8d\xa8\x67\x94\xc1\x66\x16\xb1\xf8\x7e\x97\x54\x10\ \x4f\x24\xd9\xb6\xe7\x20\xbf\x7b\xf8\x45\x5e\x78\xfd\x7d\xda\x3a\ \xba\x89\x84\x43\x54\x55\x14\x63\xe8\x1f\x7e\x98\xa0\x94\xfd\xdb\ \x67\x4f\x9f\xc8\x97\x3f\xb7\x8c\xdc\x68\x84\xdd\xfb\x0e\xd1\xdc\ \xda\x46\xc8\x08\x61\x59\x16\xeb\xde\xdd\xc4\x9f\x9e\x58\x49\x6d\ \x75\x25\xb3\xa7\x8d\x1f\xb4\xd1\xf2\xd7\x0b\x5c\x7d\xe9\x79\xc4\ \x13\x29\xd6\x6e\xd8\x88\xe6\xf0\x0e\x7a\x5d\x8d\x99\x58\x80\x27\ \x64\x9a\xd9\xec\x93\xad\xa1\x48\x65\x6f\x0c\x52\xb6\x6c\xd9\x57\ \x6f\xfd\x02\xaf\xaf\xdf\xc2\x7b\xef\x6d\xd8\x45\xec\xe0\x72\xa0\ \x89\x41\xb0\x02\x17\x00\x53\xb5\x31\xf3\xbf\x7f\xe6\x39\xd7\x2c\ \xfd\xe5\x0f\xfe\x91\x44\xb2\xef\x3c\x78\xdf\xf9\xec\xd1\xe9\xdf\ \x1f\x6c\xfd\xc1\x60\x26\xab\x3b\x26\x87\x5a\x56\x3c\x92\xe3\x46\ \x52\x2b\xd0\xdf\x71\x1f\x56\x7e\x5d\x13\x02\x5d\xb7\x43\x89\x17\ \xdf\xfc\x80\xa7\x5f\xde\xc0\x96\xdd\x07\x48\x99\x16\xa6\x69\x06\ \x0a\x54\xdc\xbc\x34\xbe\xbe\x74\x8f\x91\xd9\xf9\x51\xd2\x61\x4b\ \x46\xda\x05\xb0\x96\x65\x12\x09\x85\xf8\xdc\x35\xe7\x73\xe3\x15\ \x8b\xc9\xcf\xcd\x71\x9a\x6d\x3e\x1a\xef\x20\x12\x86\xdf\x3d\xf4\ \x3c\x3f\xfc\xe9\x3d\xb6\x4c\xb7\x83\x7f\x98\xa6\xc5\x49\x73\x66\ \x72\xdf\x4f\xbf\x4f\x6e\x34\x3a\xa4\xf3\x73\xf7\x7b\xf1\xd5\x37\ \xf8\xe2\xdf\xfc\x83\xcf\x55\xef\xcd\x3c\x6d\x5f\x98\x74\xed\x02\ \x3e\x0e\x04\xbf\x90\x8d\x8b\xbd\x64\xb2\x54\xbb\xdc\x00\xd2\x4c\ \xb1\x69\xed\xeb\x7c\xf3\xfb\xbf\xe6\xa5\x15\x8f\x3f\xab\x5a\xdf\ \xfd\x47\x60\x17\xd0\x39\x90\x01\xc8\x05\xa6\x8a\xc2\x99\x7f\x33\ \x6d\xee\x92\x9b\x9f\xfc\xcd\x7f\x05\xf4\xdb\x46\x73\x42\x8e\x64\ \x22\x8f\x84\x3c\x64\x30\x46\xcb\xff\xff\xe1\x72\xf6\x1f\x8b\x6b\ \xf4\x51\x16\xda\xd8\xa2\x27\x10\x4b\x58\x34\xb5\x76\xd0\xd0\xd8\ \xc6\x2b\x6b\xb7\xb0\xf2\xcd\x4d\xd4\x1f\x69\x26\x14\xd2\x31\x74\ \xcd\xa3\x33\x0b\x1a\x00\x7b\x90\xa6\x8b\x5c\x24\x7e\xba\x74\xcb\ \xb2\xd0\x84\xa0\xb2\x62\x2c\x27\xcd\x9a\xc4\x5f\x2c\xbb\x98\x79\ \xb3\x2a\xe9\x8e\xd9\xad\xd5\x1f\x96\x21\x50\x8e\xbe\x43\x57\x77\ \x82\xd7\xd7\x6e\xe0\x8e\x1f\xfe\x8c\xd6\xb6\x76\x0c\x43\x47\x5a\ \x16\x39\x91\x30\xcb\xae\xb8\x88\x7f\xbf\xe3\xab\xc4\x12\x43\x33\ \x02\x86\x21\xd8\xbb\xbf\x9e\x2b\x6e\xfc\x22\x2d\x1d\x9d\xb6\xfb\ \x2d\x1c\xf6\x67\x7c\x13\x3d\xc3\x00\x78\x24\x20\x64\xa1\x9e\xef\ \x83\xa6\x5e\x26\x92\xd4\xef\xde\xcc\x45\x37\x7e\x87\x2d\x1b\x9e\ \xff\xbd\xea\xd8\xf6\x5f\x8e\x01\xe8\x19\xc8\x00\x44\x81\x49\x22\ \xb7\xf6\xe6\xa2\xda\x73\xbe\xbd\xf6\x89\x3f\xd0\xdd\x73\x6c\x57\ \xba\xe1\x4e\xc8\x8f\xc2\x8b\xc8\x76\xdc\x60\x8c\x4f\xb6\xdf\x30\ \x9c\xa6\xa6\xe3\x65\x73\x07\x7e\x28\x04\x61\x03\xea\x0e\x77\xb1\ \xfa\x9d\x6d\xac\x7d\x7f\x07\xfb\x0f\x1e\x65\x5f\x7d\x23\xb1\x78\ \x02\x43\xd3\x10\x9a\x3f\x3f\x9d\x5d\x23\x21\x60\x0c\x4c\x8b\xee\ \x78\x9c\x49\xd5\x15\x5c\xb7\xf4\x1c\x16\xcd\x9f\xc5\xcc\x29\x35\ \x44\xc2\x5a\x80\xa1\xfa\x58\xff\x3e\x5d\x13\xe8\x06\xfc\xe6\xfe\ \x27\xb9\xff\xd1\xe5\xec\xdc\xb3\x9f\x48\x38\x44\xca\x34\x29\x29\ \x2e\xe2\x3f\xfe\xe9\x5b\x9c\x7f\xf6\x29\x43\x16\x30\xd1\x75\xb8\ \xe1\x2f\xbf\xc9\xcb\xab\x56\x13\x8e\x84\x7b\x4d\x64\xbf\x78\x48\ \xa6\x8e\x85\x72\x26\xb8\xcb\x88\xe4\xe9\x01\x38\x03\xc7\xf5\x26\ \x64\x2c\x4e\xb2\x7d\x37\xe3\x16\xdc\x44\xcb\xbe\xd7\xee\xa4\xa7\ \xee\xf7\xc0\x5e\x06\xe8\x06\xec\x25\x0c\xb2\xfd\xf5\xb4\x30\xc8\ \x70\x0c\xc0\x87\xe1\x0d\x64\x73\xcf\x47\xd3\x1b\x18\x89\xd1\xea\ \xaf\x32\x72\x30\xbf\xf5\x78\x9c\xfc\x03\x19\x05\x77\xdb\xb0\x79\ \x37\x8f\xbd\xf8\x16\xaf\xbe\xb5\x09\xcb\xd5\x01\x40\xa6\x2b\x57\ \x32\x06\xb8\xdb\xb5\x28\x32\x5d\x60\x29\xd1\x75\x8d\xeb\x2e\x3b\ \x87\x2f\xdd\x70\x19\x45\x05\x79\xbe\x4c\xc7\x87\xe3\x1d\x68\x1a\ \xbc\xf4\xda\x5a\xfe\xfa\xef\xff\xcd\x66\x91\x76\x88\x37\xa7\x4f\ \x9d\xc8\xc3\xbf\xf9\x4f\x2f\x2c\x18\xec\x75\x8a\x84\x05\x77\xfe\ \xfc\x5e\xfe\xf3\x17\xbf\x0d\x74\xfb\x65\xaa\x00\x01\x59\xa8\xc8\ \x7c\x0a\xc4\xae\x80\x89\x92\x9e\x81\x40\x29\x42\xa1\x10\x89\xc6\ \x8d\x03\x0a\x83\x0c\x28\x0d\xf6\xea\xa3\x8f\xe8\x63\x8b\xf2\x3d\ \x20\x47\x91\x41\x74\x38\x8a\x2b\xe4\x48\xb8\x04\x8f\x77\x2f\x62\ \x20\x03\x30\xd4\xa2\xa9\xe3\xde\x18\x60\xcb\x6c\xbb\xf8\xc1\xc1\ \x86\x16\x0e\x34\x34\xf1\xf6\xa6\x9d\xbc\xb6\xee\x03\x3e\xd8\xb1\ \x1f\x43\xd7\x08\x87\x0c\xc8\xe4\xcf\x73\x07\xbb\xb2\xdb\x9d\x95\ \x4c\x7b\x06\x0a\xc5\xe4\x9a\x71\x9c\x34\x7b\x2a\xd7\x5d\xb6\x98\ \xd3\x17\x4c\x24\x16\xb3\x33\x1b\xc7\xd2\x10\xb8\xfc\x8b\xc9\x94\ \x64\xe5\x1b\x6b\xf9\xe1\x4f\x7e\xc3\x9e\xbd\x07\x30\x42\x3a\xba\ \xa6\xb1\xec\xf2\x8b\xf8\xb7\x3b\xbe\x61\xeb\x19\x0c\xa2\x90\xc8\ \xfd\xbc\x95\xaf\xbf\xc5\xcd\x5f\xfb\x16\x6e\x7b\xb6\x7b\x2d\xec\ \xb0\x40\xa6\x1b\x8a\x94\xcf\x43\xf0\x89\x86\xaa\x80\x82\x91\xa3\ \x38\x24\x25\xb3\xa7\x4f\x67\xc5\x93\x8f\x52\x7d\xe2\x65\xfd\x4a\ \x83\x65\x2b\x04\xb2\x3b\x02\x35\xa3\x9a\xdc\x09\x4b\x97\x9c\xb7\ \xd8\x78\xe7\x90\xc9\xea\x9d\xad\xd4\xb7\x25\x68\xe9\x4a\x11\x4f\ \x49\xe2\x49\x8b\xa4\x29\x31\x1d\xe8\x56\xd7\x05\x86\x2e\xec\xd4\ \x91\xa3\xfc\xe8\x09\x24\x64\x28\xe2\x8e\x9c\xea\xfb\x78\x60\x16\ \xce\xfe\x19\x83\x75\xeb\xfb\xfb\xad\x03\xf5\x42\x7c\x1c\x36\x17\ \xb1\x96\xce\x58\x2d\xc8\x8f\x32\xbe\x62\x2c\x67\x2c\x98\xce\x4d\ \x57\x9f\xc5\xad\xd7\x2d\x61\xda\xc4\xf1\x8e\x57\x00\xc9\x54\x8a\ \x9e\x58\xc2\x39\xd6\xbd\x28\x0a\xa4\xf0\x28\xb6\x74\xa1\x21\x34\ \x41\x47\x67\x17\x5b\x76\xd6\x71\xff\xe3\x2b\xf8\xc3\xa3\x2f\x63\ \x49\x49\x51\x41\x3e\x05\x79\xb9\x44\x22\xda\x31\xd1\x14\x74\xeb\ \x2a\x84\x80\xa9\x13\x6b\xf8\xca\xcd\x57\x51\x51\x56\xce\xae\x7d\ \x75\x34\x36\xb5\xb0\x79\xc7\x6e\xee\x7e\xe0\x11\xe6\xcc\x9c\xca\ \xc4\x9a\xf1\x83\xac\x4b\x50\x4c\xaa\xad\xe1\xea\x4b\x2f\xe2\xb9\ \x95\xaf\xd2\xd1\xd9\x85\x26\x44\x16\x12\x10\x7a\x13\x8d\x10\x14\ \xa2\xf1\x17\x12\x29\x25\x39\xfd\xb4\x53\x98\x33\x7b\x2e\xbf\x7b\ \xf0\xe9\x14\xb1\x7d\x8f\x21\x93\x2e\x00\x68\xf5\x4e\xe3\x06\x37\ \x03\x28\x45\x8b\x9c\x45\xf9\xf9\xf7\xfc\xc7\x77\xbf\x5b\x50\x54\ \x35\x9b\x27\x37\x1c\x41\xcb\x6c\x52\xf1\xfa\xaf\x9d\x86\x15\x43\ \x50\x56\x18\xa1\xa2\x38\x42\x45\x61\x84\x8a\xa2\x30\x15\x45\x11\ \xf2\x23\x5a\xba\x96\x40\x04\x32\x44\xc7\x84\x04\x64\xa8\xe0\xe0\ \x70\x52\x9a\xbd\x6f\xe8\x87\x47\x3a\xf2\x71\xdf\x32\x27\xa7\x25\ \x25\x96\x69\x51\x77\xb8\x89\x27\x57\xac\xe6\xf1\x15\x6b\xe8\xec\ \xee\x41\xd7\x84\x33\x21\xfc\xc0\x97\x42\x88\x0c\x17\x18\x3b\x5b\ \x11\x0a\xe9\x2c\x39\xf7\x54\x6e\xfb\xc2\xa7\xa8\x28\x2b\x0e\xb0\ \x59\x1f\xab\x4d\x4a\xc9\xfb\x5b\xb6\xf3\xf9\xbf\xfe\x3b\xef\x9c\ \x2b\x2b\xca\x78\xe4\x9e\x9f\x50\x51\x5a\x32\xa0\x21\x72\xdf\x4f\ \x24\x92\x2c\xfb\xc2\x57\x78\xf7\xbd\xcd\x08\xdd\x47\x16\xdb\x2f\ \x09\x88\x42\x2a\xe9\x69\x11\xba\x61\x93\xb4\x52\xfc\xcb\x3f\xfc\ \x1d\x13\x27\xcf\xe1\xe6\xdb\xfe\xb9\x93\xc6\x97\x6f\x41\x26\xde\ \x70\xd2\x80\xe6\x40\x06\x40\x07\xc6\x00\x0b\xb4\xaa\xcb\xfe\xf4\ \xf5\xbf\xb8\x65\xcc\x15\x4b\x2e\x17\xff\xf5\xc2\x1e\x0c\x5d\x1b\ \xf0\xc6\xba\x21\x82\x52\x0a\x57\xf7\x31\x64\x08\xf2\x22\x3a\x79\ \x61\x9d\xbc\x1c\xc3\x7e\x1e\xd1\x29\x8c\x1a\x14\xe7\x1a\x14\xe5\ \x1a\x14\xe7\x85\x28\xce\x33\x28\xc8\xd1\x7c\x9f\x91\xe6\xdc\x13\ \x22\x28\x1b\x33\x5a\x55\x7f\xa3\x19\x9f\x8f\x44\x11\x79\x30\x2d\ \xce\xff\x93\x37\x57\x0e\xcc\xd0\xc1\x30\x60\xff\xa1\x36\x76\xec\ \x39\xc8\xa6\xed\x7b\x58\xbb\x71\x1b\xef\xbc\xbf\x9d\x94\x65\x11\ \x0e\x19\xe8\x9a\x08\x74\x2f\x2a\xd2\x20\x9a\x69\x9a\x98\x96\xc5\ \x8c\xc9\x35\x9c\x36\x7f\x36\x4b\xcf\x5b\xc4\x99\xa7\x4c\x27\x95\ \xb2\x7b\x26\x46\x3b\x4c\x50\x4a\xa1\xeb\x02\x4d\x83\xe5\x2f\xbe\ \xc1\xcf\xef\xf9\x23\xeb\xde\x7d\x9f\xdc\x68\x0e\x9f\xbe\x7a\x29\ \xff\x72\xfb\xd7\xc9\x89\x84\x06\x95\xc9\x08\x85\xe0\xdf\x7e\xf4\ \x2b\xee\xfc\xc9\x2f\x88\xe4\xe4\xa4\xdb\xbc\x7d\x06\x20\x20\x46\ \x4a\x50\x81\xd8\x9d\x38\x32\x95\xe0\xa5\xe5\x4f\xf2\xfa\xfa\xed\ \xea\xfb\x77\xdd\xdd\x2a\xeb\x97\x7f\x06\xd8\x80\x2d\x0d\x36\xa0\ \x07\xa0\x01\x85\xc0\x1c\xa3\x6a\xc9\xfd\xd7\x2c\xbd\x6a\xe2\xb7\ \xfe\xf2\x2f\xf9\xe1\xf2\x5d\xa3\xda\x07\xee\x19\x0b\x69\x5b\x31\ \xe9\x3c\x0a\x04\x65\x85\x21\xca\x0b\xc3\xb6\x37\x51\x14\xa1\xbc\ \x28\x42\x51\x6e\x08\xc3\x09\x33\x42\x86\x46\x48\x17\x84\x9c\x94\ \x13\x19\x5d\x52\x69\xe1\x45\x31\xac\x72\xe4\xa1\xac\xdc\x83\x45\ \xf9\x87\x02\x70\xf6\xb7\xdf\xff\xa6\xcd\x45\xe2\x43\x21\xfb\x1a\ \xac\x5a\xbb\x95\xa7\x5e\x5c\xc3\x7b\x5b\x76\xd1\xd6\xd9\x45\x67\ \x57\xb7\x87\x80\xfb\x95\x77\xf0\xa4\xb7\x25\x89\x64\x92\xfc\xdc\ \x5c\xbe\x74\xe3\x95\x5c\x79\xf1\xd9\x94\x8e\x2d\x22\x37\x27\xec\ \x48\xb2\x8f\xbe\x41\x88\x44\xe0\x99\x15\xab\xf9\xbf\xff\xf9\x0b\ \xea\x0e\xd6\x23\x50\xfc\xf6\xbf\xfe\x8d\xf3\xce\x3a\x1d\x43\xd7\ \x02\x82\xaf\xd9\x7e\x6f\x4e\x44\xf0\xf8\xb3\xaf\xf0\xb5\x6f\x7f\ \xd7\xab\x43\xc0\x4d\x00\x7a\xaa\xc2\xfd\x68\x48\xd8\x6e\x09\x7b\ \x37\xbd\xc3\x3f\xff\xe8\xf7\xdc\xff\xf0\x93\xfb\xcc\xfa\xe7\x3f\ \x07\x6c\x06\x3a\xf0\x35\x02\xf5\x65\x00\x04\x90\x07\xcc\xd0\xcb\ \xcf\xfa\xc9\x59\x67\x2e\x39\xe3\x3f\xbf\xfb\x0f\xfc\xc7\x73\xbb\ \x89\x25\x47\xdb\xa7\xca\x2e\xdd\xed\xf1\xa5\x05\x1e\x41\xd7\x6c\ \xfa\x6b\x5d\xb3\xeb\xce\x35\x0d\x4a\x0a\x22\x8c\x2b\x8e\x30\x6e\ \x4c\x94\xca\xb1\x39\x8c\x1b\x93\x4b\x79\x51\xd8\x8b\x93\xfc\x9e\ \xc4\x50\xbc\x88\xc1\x4e\xe4\x63\xcd\x25\xd8\x5f\x23\xd0\xff\xc6\ \x4d\x08\x5b\x59\x38\x16\x4b\xd0\xda\xde\xc9\xf3\xab\xd6\xf1\xd8\ \x73\xab\xd8\xb5\xef\x20\xa1\x90\x61\xd7\x21\xf8\x49\x40\x84\x13\ \x26\x28\x89\xa6\x69\xe4\xe7\xe5\x70\xe6\xc2\x79\x7c\xe3\x4b\x37\ \x30\x75\x62\x39\x89\xe4\xb1\xa1\x3d\xb3\x2c\x8b\x5d\x7b\xeb\xf8\ \x8b\xaf\x7f\x87\x03\x87\xea\xa9\x19\x5f\xc9\x43\xbf\xfd\x31\x93\ \x6a\xaa\xfa\x65\x2a\x76\x8d\xd2\xd1\xc6\x26\xce\xbe\x7c\x19\x5d\ \x5d\xdd\x1e\x9e\xa2\x5c\x60\x50\xe1\x19\x80\xf4\x5c\x71\xe5\xeb\ \xa1\x20\xbf\x80\xcd\x6f\xbd\xc6\xad\xdf\xbe\x93\x97\x56\x3e\xbf\ \xc6\x3a\xfa\xc6\x6d\xc0\x76\xa0\x9b\x0c\x76\xb1\xbe\x0c\x40\x14\ \x98\xa4\x15\xcd\xfa\xe6\xc4\x59\x17\xdc\xf2\xd8\x2f\x7f\xca\x8f\ \x5f\xd8\x4b\x4b\x77\xea\x98\x19\x00\x3f\x61\x65\xa0\x2a\xca\x97\ \xda\xf0\x88\x30\x7d\x04\x90\x4a\xd9\xe8\xa9\x94\xd2\xf3\x24\x40\ \x51\x18\x0d\x51\x98\x1b\xa2\x28\x2f\x44\x71\x6e\x88\xc2\xbc\x30\ \x45\x79\x61\x8a\x72\xc3\x14\xe5\x85\xec\xe7\x79\xf6\x73\x43\x77\ \x2e\xb0\xc4\x0b\x5b\xfc\x6a\xbc\xa3\xe1\xd6\x8f\x86\x7a\xd1\x27\ \x5b\x16\xb7\xd9\x80\x70\x18\x8e\x36\xc5\xd9\xf0\xc1\x0e\x36\x6e\ \xde\xc1\xc6\x2d\xbb\xd8\xb8\x65\x07\x6d\x6d\x1d\x84\x43\x21\x74\ \x5d\x73\xe2\x65\x7b\x8c\x99\x29\x8b\x78\x32\xc1\xcc\xc9\xb5\x5c\ \x70\xf6\x29\x2c\x3e\xe3\x64\xce\x58\x38\x1b\x21\x18\x72\xcd\xff\ \x40\x21\x4d\x34\x07\x9e\x7a\x7e\x35\xbf\xba\xef\x41\x56\xbd\xba\ \x9a\x2f\xde\x72\x23\x77\x7c\xe3\xaf\x28\x2e\xca\x25\xd5\x47\x48\ \xe2\x1a\x81\x58\x2c\xce\xad\xff\xe7\x5b\xbc\xf4\xf2\x2a\x42\x91\ \xb0\x87\xfc\x4b\x87\xf4\xd4\x2d\xb6\x52\x7e\x0f\x01\x45\xf5\xf8\ \xf1\xbc\xfd\xca\x0b\x9c\x75\xed\x6d\xec\xda\xb4\xf2\x1e\xd9\xbe\ \xf5\x47\x64\xa9\x01\xe8\xcb\x00\x80\x5d\x0b\x50\x8d\x1e\x5d\x1a\ \xae\xbe\xfc\x27\xef\x3c\xf3\x67\x7e\xf1\xe2\x7e\x0e\xb5\xc6\x47\ \xd5\x52\x2a\x25\x5d\xa0\x17\xe1\xc5\x38\xd2\xbb\x08\x01\xeb\xe6\ \x54\x93\xd9\x0c\x56\x32\x6d\x20\xe8\x5d\x48\xe2\xe5\x97\xfd\x6c\ \xa9\x48\x67\x82\xdb\x17\x50\xf9\x1e\x8b\xf3\x23\x54\x95\xe6\x31\ \x7e\x6c\x2e\xe3\x4b\xf3\xa8\x2a\xcd\xa3\x72\x6c\x1e\x21\xc3\x26\ \xc1\xd0\x75\xe7\xd1\xf9\x53\x59\x57\x6e\x15\xa8\x91\x3f\x56\x00\ \xe7\x27\xdb\xc0\x9b\xa1\xdb\xf1\xf4\xa6\x6d\x07\x79\x64\xf9\x2b\ \xbc\xb0\xea\x2d\xba\x7b\x62\xc4\xe2\x09\x2c\x37\x87\x8f\xcb\x9f\ \xaf\x48\xa5\x4c\xc2\x21\x83\x5b\x6f\xbc\x8a\x9b\x96\x5d\x46\x51\ \x41\x3e\x91\x48\x68\xd4\xc8\x4d\x94\x52\x84\x43\x82\xf5\xef\x6e\ \xe1\x2b\xb7\x7f\x8f\xbd\xfb\x0e\x70\xf7\x5d\x3f\x64\xc9\x05\xe7\ \x60\x18\x46\x9f\xdf\x61\x37\x14\x09\xbe\xfd\xbd\xff\xc7\xbd\x7f\ \x7a\x38\x9d\x22\xf4\x49\xcd\xf5\xaa\xb6\x14\x8a\x13\x66\xcd\x62\ \xd5\xf2\x47\xa8\x98\x7f\x3d\xc9\x83\xcf\xdc\x86\x15\x7b\x16\x38\ \x88\x5d\x03\xc0\x60\x0c\x40\x08\xa8\x00\x4e\xa6\xf4\xe2\x47\x9f\ \xf9\xc3\x7d\xda\xfa\x7a\xd8\xb0\xb7\xad\xd7\x20\x1f\xd9\x95\x91\ \xbe\xea\xa6\xde\xb9\xdf\xcc\xf2\x46\x6f\x5f\x17\xf1\x74\xca\x49\ \x7b\x95\x42\x66\x56\x50\x39\x16\xd2\x8f\x94\xaa\xc0\x71\x4e\x91\ \x8a\xcb\xc3\x86\x04\xa5\x9c\xbe\x7a\x8d\xb0\x8b\x39\x18\x1a\xf9\ \x39\x21\x2a\x4b\xf3\xa8\x2a\xc9\xa7\xaa\xd4\xfe\xab\x2c\xcd\x27\ \x37\x9c\x4e\x7b\xb9\xc0\xa5\xfb\x79\x2e\x69\xc3\x48\xb4\x0c\x3f\ \xd9\x86\x97\x69\x70\x3d\xb6\xb6\xf6\x2e\x5a\xda\x3a\x58\xfb\xee\ \x66\x9e\x5a\xf1\x1a\xaf\xaf\x7b\x97\x70\xc8\x20\x64\x18\xce\xe4\ \x93\x58\x96\x85\xae\x69\x94\x95\x14\x33\x7f\xce\x4c\xbe\x76\xcb\ \x0d\x2c\x3c\xb1\x96\xee\x9e\x91\x97\x23\xbb\x0b\x84\x94\x8a\x5d\ \x7b\xf7\x71\xdb\xdf\xff\x5f\x9a\x5b\x5a\xb9\xff\x97\x3f\x62\xee\ \xac\xc9\xc4\x13\x7d\x1b\x01\x5d\x17\xbc\xfc\xda\x9b\x5c\x7f\xcb\ \x97\x31\x0c\x23\x83\xf6\xdd\x01\xfe\xdc\x05\x52\x5a\x5c\x7e\xe9\ \x25\xfc\xcb\x1d\x77\xb0\xf0\x82\x9b\x24\xcd\x2b\x96\x01\x6f\x63\ \xb7\x02\xa7\x06\x6b\x00\x74\x60\x2c\x70\x12\xa5\x8b\x7f\x7f\xc7\ \x37\x6e\xaf\x9c\x72\xc2\x99\x3c\xba\xbe\xde\xd6\x72\x1f\x25\xef\ \x3f\xc0\x91\xee\x17\x44\x94\x3e\x9d\xb4\x0c\x03\xe0\xf2\xe2\x67\ \xe3\x5e\x77\x8e\xf6\xbc\x09\x95\x11\x4e\x78\xfb\x2a\x37\x36\xb4\ \x5f\x17\xbd\x1a\x32\x7c\x82\x9e\x2a\x83\x7b\x5d\x2a\x2c\xa5\x90\ \x96\xcd\x95\x27\x9d\xbf\x68\x4e\x88\xb2\xa2\x28\xa5\x45\x51\x4a\ \x8a\x72\x29\x2b\xb6\x9f\x17\xe4\x45\x28\xcc\x0d\x53\x98\x17\xa1\ \x30\x2f\x42\x41\x6e\x84\xbc\xa8\xf0\x0c\x84\xdb\x01\x27\x55\x6f\ \xe0\xf2\x93\xc9\x3f\xfa\x9b\xae\xdb\x0d\x3f\xc9\x24\xac\x7e\xfb\ \x03\x56\xaf\x7f\x8f\x0f\xb6\xed\x62\xfb\xae\x7d\x1c\x3c\x7c\xc4\ \xe1\x2c\xd0\xb1\x2c\x49\x4f\x2c\xc6\xe4\xda\x6a\xae\xbd\xec\x7c\ \xce\x39\x7d\x21\x0b\xe6\xce\x22\x1c\x16\xa4\x46\x20\xbe\xea\x1e\ \x97\x9f\x07\xcf\xad\x5c\xcf\xff\xbb\xeb\x17\x4c\x9b\x32\x89\xbf\ \xfb\x3f\x5f\xa5\xba\xaa\x2c\x6b\x58\xe0\xf6\x11\x7c\xb0\x65\x27\ \x9f\xfd\xf2\x5f\x53\x7f\xb8\xc1\x4e\x8f\x3a\x8b\xa5\x90\x69\x5d\ \x08\x99\x88\x73\xe7\xbf\xff\x2b\xca\x28\xe6\xf6\xef\xfd\xfb\x61\ \x9a\x5f\xbd\x19\x9b\x0c\xb4\x25\x33\x03\xd0\x9f\x01\x70\x33\x01\ \xb3\x29\x39\xe3\x47\xe7\x9e\x73\xe9\xa9\xdf\xff\xce\x1d\xe2\x07\ \x4f\x6e\x27\x27\xa4\x8f\x5e\xfc\x2f\x9d\xee\x25\xe5\x32\x99\x0a\ \x6f\x92\x29\xa1\x3c\x42\x44\x2f\xe6\x71\x5d\x7d\x29\x51\x0e\xcd\ \x8c\x1f\xfd\x14\x2a\xad\x8e\xa2\x5c\x01\x8d\x2c\x06\xc0\x6f\x44\ \x84\x92\x3e\xd1\x86\xde\x79\xd7\x40\xda\x45\x48\x1f\xd3\x6b\xfa\ \x1c\x55\xa6\x21\xc3\xa9\xcc\xf2\xc4\x1f\xec\xf8\xd3\x6e\xd3\x94\ \x84\x43\x06\xb5\xe3\x0a\xa9\xad\x28\x66\x42\x65\x11\x13\xc6\x15\ \x33\xa1\x72\x0c\x45\x79\x11\xbb\x6e\xde\x69\xbc\x11\x19\xad\xb7\ \x9f\x6c\xc7\x0e\x58\xd4\x75\x68\x6a\xee\xe4\xc1\x27\x5f\xe0\xe1\ \xa7\x5f\xe4\x48\x63\x33\x96\xb4\x1c\xa6\x5f\xfb\xbe\x09\x4d\xe3\ \x73\xcb\x2e\xe3\xaf\xfe\xe2\xd3\x8c\x29\x2a\xf4\xd8\x84\xbc\xf1\ \x37\x44\x83\xe0\x66\x39\xf6\xd6\x1d\xe2\xc6\x2f\xdf\xc6\xdf\x7e\ \xf5\x8b\x5c\x7b\xc5\xa5\x01\x43\xd1\x2b\x73\xa6\x14\x8b\x2f\x5f\ \xc6\xce\xdd\x7b\x3c\xf9\x74\x4f\x3c\x44\x81\xec\xec\xe0\x83\x4d\ \x6f\xf3\xb7\xff\xfa\x6b\xf5\xc2\x8a\xe7\xd6\xd1\xbc\xe6\x9b\xc0\ \x96\x6c\x19\x80\xfe\x0c\x80\x9b\x09\x98\xa6\x8f\x5d\xf0\xed\xc2\ \xf2\xd9\x9f\x59\xf3\xc8\x1f\xf8\xee\x23\x3b\x31\x47\x8d\x1c\x3e\ \xcb\x4a\x0e\x5e\x8d\xb5\xf2\xe1\x02\x2a\xa3\x16\x5a\xa9\xbe\x95\ \x51\x54\xe6\x4a\xae\xdc\x66\x89\xcc\x95\x9c\xc0\x77\xa4\xeb\xb1\ \x9d\x47\xe9\xca\x34\x49\x2f\x9b\xe0\xcf\xbb\xa2\x5c\x03\xa0\x7c\ \x08\x6d\xf0\x3b\xa4\x52\x19\x05\x1d\xce\x67\x39\xbf\x57\x3a\x12\ \xdf\x4a\xda\xfb\x86\x74\x41\x34\x12\x22\x27\x62\x90\x1b\x31\x88\ \x46\x42\xe4\x46\x0d\xca\xc7\xe4\x33\xbe\xac\x90\xaa\xb2\x42\x2a\ \xcb\x0a\xa9\x2a\x2b\xa2\xac\x38\x64\x87\x1a\xd2\xfe\xb3\xdc\xd0\ \x43\x7e\x7c\x64\xc1\x8f\xc7\x90\x41\xd7\xed\x90\xac\xb9\xa5\x9b\ \xfa\x23\x8d\x6c\xdd\xb9\x87\x17\x5e\x59\xcd\x8a\x55\x6b\x88\x27\ \x92\x18\xba\x86\xa1\x6b\xd4\x56\x57\x72\xd2\xec\x99\x7c\xe1\x33\ \x57\x73\xce\xe9\x33\xe9\xee\x19\x5e\x39\xb2\x1b\x1a\x68\x1a\x6c\ \x78\x7f\x2b\x8f\x3f\xf3\x3c\x67\x9d\x76\x32\x97\x5f\x72\x36\xb1\ \x78\xdf\x9f\xf7\x83\xff\xfc\x31\x3f\xfe\xd1\x8f\xd1\xf3\xf3\xd3\ \x8b\x9d\x80\x70\x28\x44\x5b\xdd\xbb\x54\x2d\xbc\x89\xf6\x86\x2d\ \x7f\xb2\x5a\x36\xdc\x09\xec\xcc\x96\x01\xe8\xcf\x00\x80\x4d\x0e\ \x5a\xa3\xe5\x4f\xbc\x29\xa7\xfc\xb4\x7f\x5c\x7e\xcf\x2f\x79\x7e\ \x6b\x37\xdb\x0e\x77\x8f\x9a\x01\x08\x4c\xf4\xcc\x66\x08\xfc\xc0\ \xa0\xca\xca\x7b\x2e\xbc\x09\x4e\x30\x44\xe8\xaf\x82\x0a\x1f\x9f\ \x7a\x46\x05\x55\xaf\xcf\x15\xe9\x95\xbc\x57\x3b\xab\x63\x44\x6c\ \xd5\xd6\xde\x85\x19\x01\x4d\x7b\xf7\x1c\x54\x46\x15\x97\x4c\x57\ \x71\xf9\x3f\xd7\x8d\xeb\x94\x6b\x88\x1c\x6a\x6e\xcb\xb2\x9c\x47\ \x89\xae\x09\x53\xa3\xf4\x05\x00\x00\x20\x00\x49\x44\x41\x54\xc6\ \x95\xe4\x33\xae\xd4\x31\x0c\xa5\xf6\xdf\xd8\xa2\x3c\xf2\xa2\x61\ \xe7\x2f\xe2\xfc\x19\x9e\x46\xa0\xb2\x21\x0f\x2f\xd3\xf1\xc9\x36\ \xf0\x0a\x1d\x0e\xdb\xc5\x49\x6b\x37\xec\x62\xc5\xaa\x37\x59\xff\ \xee\x26\xea\x0e\x1d\xa6\xee\x60\x3d\xf1\x9e\x1e\xc6\x8d\x2b\xe7\ \x96\xcf\x5c\xcb\x05\xe7\x2c\x62\xc6\x94\x49\xe4\xe5\x85\x86\x1c\ \x26\xb8\x5e\x44\x7e\x9e\x60\xe5\xaa\x0d\x1c\x3c\xdc\xc0\x99\xa7\ \x9d\x4c\xd5\xb8\xf2\x5e\x46\x5d\x29\x45\x6e\x54\xf0\x87\x3f\x3f\ \xc3\x37\xfe\xee\x1f\x49\x99\x29\x87\x6f\x41\x71\xfe\xd9\xe7\xf0\ \xdf\x77\xfd\x88\x79\x17\xdf\x42\xfc\xc8\xda\xef\xcb\xae\x7d\x7f\ \x00\x0e\x60\x53\x81\x31\x14\x03\x10\x02\xca\x81\x33\x42\xb5\xcb\ \xfe\x7c\xef\x7f\xfc\x50\x75\x1b\x65\x62\xf9\xc6\xa3\xa3\x05\x00\ \x78\x06\x00\x99\x06\xf3\x84\x6f\x92\xa1\x64\x76\xd0\xae\x2f\xf1\ \x05\xd7\xb0\x04\x5c\xfd\xa0\xf8\x82\x8d\x94\x4a\xdf\xe4\xec\x5b\ \x7c\xc1\x3d\x07\x7f\xb5\x95\xf2\x1b\x80\x2c\xe7\x20\x45\x3f\x06\ \xc0\x6f\xc8\x44\x7f\x06\x20\x9d\xd1\xc8\x6a\x2c\x3c\x92\x7f\x3b\ \x5c\xc2\x77\x8d\xd2\x6a\xc3\xca\x47\x42\xa9\xa8\x2c\x29\x62\x52\ \x75\x29\x93\xc6\x97\x32\xb9\xba\x94\x89\xd5\xa5\x54\x97\x8f\x0d\ \x64\x23\x32\x57\xc3\x4f\xb6\xec\xd7\xc3\xf5\x2a\x4d\xd3\xe2\x89\ \xe7\x57\xf2\xc7\xc7\x9e\xe1\xfd\xcd\xdb\x00\x81\x61\xe8\x5c\x75\ \xc9\xf9\xfc\xed\xd7\x6e\xa1\xb2\xbc\x74\xc8\x99\x04\x77\x5f\xa5\ \x14\xad\x6d\xed\x6c\xdb\xb1\x8b\x33\x4f\x3f\x39\xab\x11\x10\x42\ \xd0\xd2\xd2\xc6\x69\x17\x2d\xa1\xb3\xb3\x0b\x50\xfc\xd3\x77\xbe\ \xcd\x99\x67\x9c\xa3\x2e\xbd\xe9\x76\x91\xaa\x7b\xf4\x7a\x60\x0d\ \x36\x19\x68\x6a\xa8\x06\x40\x07\x8a\x81\x59\xfa\xb8\x0b\x1e\xb8\ \xf5\xb3\xb7\xd6\x5e\x7d\xc5\xa7\xf8\xe5\xca\x3d\xa3\x32\x38\x94\ \x0f\xc1\x17\xca\x51\x4c\x95\xee\x2a\x2b\x7d\x42\x97\xf6\x84\xf5\ \x2e\xa4\x7f\x72\x66\xe6\x44\x7d\x86\x40\xf9\x52\x26\xc1\x49\xe6\ \x82\x85\x72\x40\xf5\x15\x6f\xdf\x00\x06\x81\x0f\xb3\xc8\x34\x00\ \xbe\x73\x4f\xe7\x2c\xfb\xae\xe3\xf6\x9d\x03\x3e\x2f\xa4\x3f\x03\ \xe0\x27\xda\x50\x8e\xe0\x27\x19\x86\x2c\x70\xfd\xdc\x72\x59\x95\ \x06\x2c\xdd\xba\x09\x01\xe4\xe5\x85\x29\xcc\xcd\xa1\x20\xcf\xfe\ \x2b\xcc\xcb\x61\x4c\x61\x2e\xe3\xca\x8a\xa8\x2c\x2d\x66\x5c\x69\ \xb1\xfd\xbc\x2c\x9f\x90\xe1\x84\x1a\x32\xfd\xf8\x51\xd3\x7f\x1f\ \x0f\x21\x83\x61\x40\x7b\x47\x92\xdd\x7b\xeb\xd8\xb1\x67\x2f\x2b\ \x5f\x7f\x8b\x97\x56\xad\x26\x2f\x37\x87\x33\x4f\x5d\xc8\x8d\xd7\ \x5e\xc1\x45\x8b\x4f\x22\x9e\x80\x64\x72\x70\x78\x81\x3f\x8b\xd1\ \xdd\x13\x27\x9a\x93\xd3\xe7\x3e\x6d\x6d\xed\xfc\xe5\xdf\x7c\x8b\ \x57\x57\xbd\xce\xd3\x7f\x7e\x80\x57\xd7\xed\xe0\xae\x5f\xde\x5d\ \x67\x35\xac\xfc\x2c\xb0\x15\x68\xcb\x06\x00\x0e\x64\x00\x34\x07\ \x07\x98\xa2\x15\xcd\xfc\x46\xf5\xb4\xc5\x37\x3f\x75\xcf\x7f\xf3\ \xbd\x87\xb7\x8f\xce\xea\xe0\x4b\x5d\x04\x56\x4b\x95\x59\xde\x98\ \x5d\x46\x49\xb8\xd3\x78\x98\x2b\x79\x7a\x92\x49\xa7\xc1\x84\xac\ \xae\xbc\x3f\xbe\x52\x32\x63\x72\x66\x84\x13\x4a\x06\x6b\x17\xbc\ \x42\xa6\x40\x38\x91\x0e\x05\xfa\x24\xc7\x70\xfe\x24\xbe\xec\x46\ \x2f\x03\x10\xfc\x0e\xb7\xc8\x85\x2c\x06\xc0\xdb\xd7\xab\x8f\x70\ \x41\xd3\x4c\x63\x9b\x2e\xb6\xb2\x01\x30\xbb\xdb\x53\x9a\x12\x4b\ \x9a\x94\x14\x17\x30\xa1\xaa\x84\xea\x71\x25\xd4\x56\x96\x50\x53\ \x59\xca\xf8\x8a\x31\xe4\xe6\x44\x1c\xec\x22\x4c\x4e\x24\x4c\x34\ \x12\xc6\x08\xa5\xab\x30\x7d\x65\x1a\xff\xa3\xbd\x0b\xf7\xb7\x85\ \x43\x76\x49\xf0\xf6\x5d\x47\x78\xe2\xb9\x95\x3c\xf5\xfc\x4b\x74\ \x77\x77\x71\xcd\x65\x4b\xb8\xf4\x82\x73\xa9\xad\xae\xa2\xa8\x30\ \x8a\x65\xd2\x6f\x69\xf0\x50\xeb\x0c\xbe\xf8\xf5\x6f\xf3\x6f\xff\ \xf4\xf7\x2c\xb9\xe9\x1f\xd8\xbf\xf5\xd5\xdf\xcb\x8e\x6d\x77\x01\ \xbb\x9d\xf8\x5f\x0e\xd5\x00\xb8\xe4\x20\xd5\xe8\xd1\x8b\x28\x3e\ \xe7\xe7\x6b\x9e\x7e\x4c\xdc\xf5\x52\x3d\xf1\x94\x35\x82\x93\xf6\ \x18\x0d\xb3\x1b\x00\xff\x24\x13\x03\xc7\xcb\x1e\xcd\xb2\x9f\x44\ \x22\x8b\x01\xf0\xf6\xcd\x58\x19\xb3\x85\x13\xf6\x67\x05\x27\x86\ \x3f\x54\x21\x43\x8e\x5b\xa9\x8c\xca\x2c\xaf\x48\x29\xb8\x2f\x2a\ \xfb\xea\xec\xd6\x28\xf4\x22\xc7\xf0\xed\x9b\xf6\x12\xa4\xcf\x80\ \x66\xd9\x57\xa9\x80\x01\x75\x0d\x80\xdb\x51\x87\xc7\x25\xe7\x97\ \xac\x52\x3e\x23\x24\x3c\xae\x39\xd7\x08\xb9\xe1\x84\xf4\x42\x35\ \x9f\x27\xe4\x80\x58\xba\x00\xa1\x69\x4e\xa9\xb6\xa0\x20\x2f\xca\ \xe4\xda\x0a\x26\xd7\x8c\x63\x4a\x6d\x05\x93\x6b\x2a\x99\x52\x3b\ \x8e\x68\x8e\x70\xda\x75\xfd\xb5\x12\xff\xf3\xc3\x86\x64\x32\x49\ \x2a\x65\xb2\x76\xc3\x7b\x3c\xfa\xcc\xf3\x24\x12\x49\xbe\x73\xdb\ \x97\x99\x3d\x7d\x22\xe6\x28\x19\x02\x80\xb6\x8e\x2e\xa6\x9f\xfa\ \x29\x45\xfb\x6b\x5f\xc3\x8a\xbd\x48\xba\x00\x28\xeb\x55\x36\x06\ \x98\xa9\x16\xd0\x83\x34\x8f\xa2\xd3\xb1\xea\xad\x75\x85\x27\xd6\ \xce\x12\xab\x77\xb4\xa2\x69\x04\x94\x69\xbd\x16\x6e\x2f\xb5\xd2\ \x5f\x82\x41\x11\xe4\x36\x57\xd9\x51\x02\x95\x46\xe7\xb3\x6b\xa0\ \xfa\x9a\x40\x3c\xda\x6a\xbb\x37\x4c\x64\xdb\xd7\x95\x51\x92\xe9\ \x33\x91\x7d\x58\x41\x91\x31\x30\xfb\xdd\x37\x70\x0e\x7d\xef\xab\ \x82\x72\xae\xfd\x7e\x6e\xb6\xdf\x69\x33\xe6\x08\x9b\x4c\x32\x68\ \x4e\x03\x27\x2a\x02\xdf\xa1\xfa\xd8\x37\xed\x05\x64\x48\xd6\xfa\ \xf6\xb5\xcf\x4e\x88\x0c\x0d\x3a\xef\xac\x1d\x83\xa2\x9c\x2a\x4b\ \xcb\xf4\xd2\x52\x9d\xdd\x31\x0e\x36\x34\xf1\xca\x9b\xef\xdb\x25\ \xda\x0e\x80\x99\x17\xcd\x61\x6c\x71\x3e\x63\x8b\xf2\x9d\xc7\x02\ \xc6\x16\x15\x50\x56\x52\x44\x79\x49\x31\x15\x25\xc5\x94\x97\x16\ \x53\x51\x3a\x86\x82\x3c\x5f\xc8\x61\xa5\x43\x8f\x8f\x83\x17\x91\ \x79\x7e\xe1\x70\x98\x50\x28\xc4\x45\xe7\x2e\x62\xe9\x85\x8b\x88\ \xc5\x15\xef\x6e\xda\xcc\xaa\x37\xdf\x21\x2f\x1a\xa5\xb8\xa8\x88\ \xaa\xca\x0a\x42\x86\x31\x22\xa3\xb3\xe2\xb5\xf5\x0a\x9d\x0e\xa4\ \xe9\x8a\x80\x58\xf4\x83\xf7\x0e\xf4\x6d\x16\x10\x47\xa5\x9a\x74\ \x5d\x35\xbd\xf6\xf6\x3b\x45\xb7\xff\xf5\x99\xe4\x86\x75\x4c\x4b\ \x91\xb4\x24\x29\x4b\x92\x34\x15\x29\x53\x92\xb4\xec\xc7\x84\xe9\ \x94\xd9\x12\xac\xab\x4f\xff\xdf\x36\xff\x52\xb9\x08\xba\x70\x9e\ \x4b\x94\x66\x77\x4c\x29\xc7\x5d\x4e\x2f\xa4\x0a\x65\x29\xdf\xca\ \xa9\x7c\xe0\x55\xb0\x71\x48\x65\xf6\x52\x2b\x9f\x31\xf0\xdc\xef\ \x34\xf2\xa5\x7a\x09\x2e\x28\xdf\xe4\x54\x7d\x68\xb5\x07\x8d\x98\ \xb7\xaf\x4a\xcf\x8f\xde\x13\x4e\x65\x0a\xef\xa4\x35\xfb\xe8\xad\ \x23\x2f\xfa\x8e\x9e\x1c\x6f\x28\x53\x2c\xb2\xf7\x7e\xae\x31\xf3\ \x9b\xde\x3e\x3f\xd7\xa7\x55\x97\x29\x2f\x1e\xf8\x4c\xcf\x6a\x09\ \xaf\x1b\x2f\x73\x5f\x81\x2d\x54\xaa\x09\xc3\xde\xd9\x30\xbc\xde\ \x8d\x96\xb6\x4e\x9a\x5a\x3a\x02\xa9\x5b\xe9\x64\x39\x6c\x8c\xc2\ \xc2\x34\x2d\x72\xa3\x11\xa6\xd4\x54\x31\xa9\x76\x1c\x93\x6a\xc6\ \x31\xb9\xb6\x92\xc9\xb5\x55\x14\xe6\xe7\x12\x32\x74\x42\xa1\x10\ \xe1\x90\x4e\xc8\x08\x11\x32\xb4\x00\xd7\x84\x52\xc7\x1f\xa0\x29\ \x84\xc0\x92\x60\x25\xec\xe7\x0b\x4e\x3c\xc1\x2b\xf2\x41\x41\x57\ \x4f\x62\x44\x06\x40\x08\xc1\xcb\x6f\x6c\x10\xba\xa1\x9a\x2c\x95\ \x6a\x72\x90\xff\x7e\x3b\xf8\x06\xfa\x36\x85\x4d\x21\xd4\xae\x12\ \x4d\x1b\x77\xef\x3f\x30\x65\x4c\x6e\x88\x0b\x66\x97\xa6\x57\x25\ \xff\x0a\x95\xe1\x09\xf8\x27\x7e\x70\xb2\xf6\xfe\xbf\x1b\x7f\xe3\ \x8b\xc5\x3d\x54\xdf\x17\x47\xa7\x52\x92\xa4\x29\x49\x9a\x26\x09\ \x53\x92\x4c\x49\x12\xa6\x45\x2a\x65\x91\x48\x59\x24\x4d\xfb\x31\ \x61\x4a\x92\x49\x8b\x78\xca\x74\x5e\x33\x49\x26\xed\xf7\xe2\x49\ \xe7\xb5\xa4\x49\x22\x65\x61\x59\xbe\x40\xd5\x37\x33\x3d\x09\x2c\ \x7f\x81\x8f\x0a\xea\xbd\xa7\xf7\x75\x56\xf8\xb4\x85\x40\x64\x35\ \x2e\xfe\x09\xaf\xb2\x7b\x11\x32\xd3\xd8\xd0\xcb\xd8\x04\xfe\xe7\ \x78\x04\x2a\x8b\x0f\x11\xd8\x37\x43\xac\xd2\xaf\x34\xa3\x7a\xbf\ \xe4\x09\x59\x64\x4a\x55\xaa\x6c\x86\x2c\xcb\x99\x65\x33\x6c\x42\ \xf4\x76\xf9\x5d\x63\x21\x84\xe1\xd4\x68\xe8\xa8\x88\x7d\x1d\x76\ \x1f\xa8\x67\x57\xdd\x21\x1b\xc3\x71\xe2\x05\x5d\xd3\x08\x85\xec\ \x8a\x3d\xfb\xcf\x20\x27\x12\x66\x42\xcd\x38\xa6\xd4\x54\x32\x79\ \xc2\x78\x26\xd7\x56\x31\x75\x42\x35\x65\xa5\x11\xcf\x7b\xf0\x83\ \x97\xc7\x8b\x61\x10\x42\x60\x39\x5a\x03\xd1\x9c\xc8\x88\xcf\x6b\ \xdb\xee\x03\xa8\x44\xd3\x46\xa0\x9d\x0c\xfa\xaf\xe1\x18\x00\x9c\ \xf4\x41\xa7\x6c\xdf\xb6\x6a\xdf\xa1\x29\xcb\xb2\xb9\xa7\xee\xe2\ \x28\x7c\xca\xd3\xe9\xfa\x76\x81\xee\x76\xd0\x69\xf6\xff\x87\xcd\ \x09\x48\xfa\x3f\x9a\xc3\x03\xe0\x7e\xaf\xf0\x19\x1e\xa1\xf9\xe8\ \xc8\x32\xde\xcf\x76\x9c\x94\xb6\x52\x8c\x29\x6d\x0f\x26\x65\xd9\ \x32\x59\xa6\xe3\xe1\x98\xa6\xc4\xb4\x2c\x52\x96\x74\xf8\xf0\x6d\ \x2d\xbc\x94\xe9\xfc\xdf\xff\xdc\xb4\x48\x59\x16\xc9\x94\x7d\x8c\ \xfd\x39\xf6\xeb\xee\x71\xf6\xfe\xf6\xa3\x99\xb2\x9c\xef\xb0\xbc\ \xe3\xdd\xcf\x48\xa5\xec\x7d\x92\x29\xd3\x3e\x97\x94\xe9\x15\x17\ \xd9\x5a\x70\x2a\x30\xa9\x85\x2f\xc5\x18\x94\x91\x4d\x7b\x1f\xde\ \xe4\x95\x69\x3d\x39\x91\xc5\xc0\xf8\xe5\x84\xd3\x85\x4e\x04\xb0\ \xa4\x80\x27\xe4\x1a\x73\xbf\x60\x85\xc8\x66\x9c\x7c\x2a\x42\xb2\ \x7f\x43\xe4\xdd\x43\x25\x50\x42\xa0\x3b\x03\x4c\x49\x45\x22\x99\ \x22\x91\x48\x3a\xe9\x54\xfb\xd8\x3d\x75\x87\x58\x69\xd9\x00\xa6\ \x65\xd9\x7f\x21\xc3\xa0\xa2\x6c\x0c\x15\xa5\x63\x9d\xc7\x12\x2a\ \xca\xc6\x50\x3a\xa6\x98\x92\xb1\x45\xf6\xe3\x98\x22\x4a\xc6\x16\ \x31\xc6\x69\x23\xcf\xcc\x72\x7c\x18\xc5\x55\xee\xe7\x8f\xf4\x7b\ \x76\xed\xaf\x47\xb6\x6f\x5b\x85\x4d\xff\x35\x60\x6f\xe3\x60\x3c\ \x00\x1b\x07\xb0\x7a\x76\x26\x7b\xda\xba\xd7\xbc\xf3\x6e\xde\x59\ \xa7\xcc\xef\x33\xfd\x13\x10\x31\x1c\x42\x4d\xfb\xa0\x8e\xcb\x50\ \xb4\xf1\x80\xeb\x4c\x23\xd2\x8f\x96\x61\xff\xc6\x47\x38\x2e\xa5\ \x3e\x22\x22\x53\xb2\x9c\xb2\xf0\x19\x1d\xe8\x9f\x4b\x30\x2b\x77\ \xa0\xf3\x8f\x69\x42\x3c\x61\x11\x4b\xa4\x88\x27\x53\xc4\xe2\x49\ \x62\x89\x14\xb1\x84\x49\x3c\x91\x22\x96\x48\x12\x8f\x27\x89\x25\ \x4c\xef\x79\x4f\x22\x45\x3c\x91\x74\xf6\x75\x5e\x8b\xa7\x88\x25\ \x12\xc4\xe2\x49\x12\xc9\xa4\xd7\x46\x9d\x2e\x59\x56\x5e\x9b\xb6\ \x5b\xb5\x88\x13\xa6\x49\xe7\x22\x4b\xc7\x20\x7b\xaf\x79\x98\xa3\ \xea\x55\x8a\xad\x02\x7d\xeb\x2a\x58\x00\xe3\xeb\xfc\xf4\x4c\x8c\ \x8f\xf2\x3a\x73\xa1\x71\xe3\x13\xd7\x78\xbb\xc2\xa5\xba\x66\x77\ \x6d\x86\xd0\x7d\xe7\x20\x69\xed\xe8\xa4\xad\xad\x83\xad\xbb\xf6\ \x7a\x46\xd3\x92\xd2\x0e\x33\x7d\x7f\x9a\x06\x93\x6a\xc6\x33\x6d\ \x52\x0d\xd3\x26\x4f\x60\xda\xe4\x5a\xa6\x4f\x9e\x40\x55\x45\x19\ \x9a\xa6\xa1\x6b\x1a\x9a\x6e\x3f\x7a\xa2\xa2\x83\x00\x00\x3f\x8c\ \x4d\xd3\x60\xe5\xeb\xef\x92\xec\x6e\xeb\xc6\xea\xd9\x39\x98\xf8\ \x7f\xb0\x1e\x80\x74\x62\x89\x76\xcc\xce\xf7\x1e\x7a\x66\xf9\xa2\ \xc5\xa7\xcf\x17\x49\xd9\xff\xe4\xce\xf6\x5a\xb6\xc9\x3d\x98\xce\ \xb7\xcc\xe3\xfa\xb7\xa4\xd9\x01\xba\x81\x8e\x1f\xec\x6f\x18\xca\ \xe7\xfb\x5f\x77\x00\xf6\x80\xeb\x3c\x58\xa3\x95\x39\xb0\x42\x21\ \x9d\x50\x48\xa7\x90\x9c\x5e\x20\x6c\xe0\x69\x3f\xaf\x65\x7e\xbc\ \xd7\xc5\xe8\xd4\x09\x58\x7e\xa6\x26\x5f\xed\x80\x95\xed\xff\x4a\ \x22\x2d\xdb\x08\x58\x96\x3d\x99\x2c\x25\x49\x24\x4c\xe2\xc9\x24\ \xf1\x78\xc2\x31\x3c\x29\xe2\x89\x84\x6d\x8c\x3c\x43\x95\xb0\xdf\ \x8f\x27\x89\xc5\x13\x24\x92\x49\x7a\x62\x09\xe2\x89\x04\xb1\xb8\ \xf3\xe8\xfc\xbf\x27\x96\x70\x5a\x61\x83\x24\x98\xc2\x03\x2c\x54\ \x46\xb8\xa1\x7a\x93\x66\xfa\x3c\x1c\x5b\x49\x59\x47\x19\xba\x97\ \x3e\x3e\x50\xdf\x40\xdd\xc1\x7a\x5e\x7c\xed\x2d\x3b\xf5\xac\x24\ \x42\x08\xa2\xd1\x08\xd1\x9c\x08\xd1\x88\xf3\x98\x13\xa1\xb2\xbc\ \x94\x49\x13\xaa\x99\x54\x53\xcd\xa4\x89\xd5\x4c\xae\xad\x66\x42\ \x4d\x31\x60\xbb\xf5\x96\x65\x7b\x12\xb6\x8b\x7f\x6c\x0d\x40\xc8\ \x80\xbb\x1f\x5a\xae\xb0\x3a\xdf\x73\xdc\xff\x78\x5f\xa9\xbf\xa1\ \x1a\x00\xe5\xa4\x11\x3a\x35\xb3\x6d\xfd\x1b\xeb\xdf\x39\xa3\xbd\ \xb3\x77\x61\xc2\x60\x27\xee\x60\x26\xf2\x50\x8e\x1b\xcc\xe7\x0d\ \x76\x72\x0f\xf7\x5c\xfa\xfa\xed\x83\x91\xf7\x1e\xec\xe7\xf5\xe7\ \x1e\x66\x80\xfd\xa8\xbe\x52\x09\x83\x5a\x49\x34\x34\x6d\x70\x03\ \x63\x28\x06\x39\xe0\x01\xf5\xe1\x0d\xa5\x59\xa4\x7b\x3f\x77\xf7\ \x49\x99\x90\x48\x40\x22\x69\x91\x48\xda\x9e\x4d\x22\x99\xf4\x42\ \x82\x44\xca\x36\x32\x89\x44\xca\x7e\x3d\x9e\x24\x91\xb2\x8d\x4d\ \x22\x99\xb4\xf7\x4f\x24\x89\x27\x13\xf6\x7b\xc9\x24\xc9\x64\xca\ \x09\xd3\x52\xa4\x4c\xd3\x09\xc7\x4c\xcc\x94\x49\xca\x32\x31\x53\ \x29\x4c\xd3\x74\x42\xb2\x14\xf1\x78\x82\xce\xae\x6e\x0e\xd4\x37\ \xf0\xfa\xba\x77\x9c\xcf\x4e\x90\x88\x27\x20\x95\xa2\xa8\x74\x0c\ \x55\xe5\x65\x54\x8f\xaf\xa4\xa6\x6a\x1c\x35\x55\xe3\x18\x57\x5e\ \x46\x71\x51\x21\xc5\x45\x85\x8c\x29\x2a\xa4\xb8\xd8\x7e\x1e\x32\ \xb4\x60\xbd\xc4\x30\xb7\xd6\xf6\x38\x2b\xdf\x78\x47\x68\x66\xdb\ \x7a\x69\xbb\xff\x89\xc1\x8c\x80\xc1\x1a\x00\x13\x68\x97\xdd\x75\ \xef\x84\x8a\x67\xb3\x69\xfb\x0e\x4e\x3b\xe9\xc4\x51\x8e\x81\x46\ \xdf\x38\x0c\x77\x42\x0e\xd6\x58\x64\xf3\x68\x06\x13\xfa\x0c\xc5\ \xa3\xf9\xf8\xe7\xc3\xc9\xc8\xb4\x8c\xce\x66\x18\x3a\x86\xa1\x93\ \x97\x9b\x33\xaa\xf9\x7a\xfa\x49\x5e\xf7\x57\x35\x93\xe9\x61\x59\ \x96\xa2\xa7\x27\x46\x77\xac\x87\xee\x9e\x38\xdd\x3d\x3d\x74\x77\ \xf7\xd0\xde\xd1\xc1\xa1\xc3\x47\xe8\xee\xe9\xa1\xa7\xa7\x87\xc2\ \x82\x02\x6a\xab\x2b\xa9\xae\xaa\xa2\xd2\x09\x35\x86\xb3\xbd\xb3\ \x69\x07\x9a\xa6\x91\xea\xae\x7b\xc7\xf1\x00\xcc\xd1\x32\x00\x6e\ \x3a\xb0\x1b\xab\x67\x97\x4c\xb4\x6c\x7e\x72\xc5\xca\x39\x67\x9f\ \x72\x22\x89\x64\xef\x8b\x37\x92\x89\x3c\x14\x63\x31\x58\xb7\x7e\ \xa8\x58\xc4\x50\xdc\xfa\xa1\xac\xde\xc3\xf5\x40\x3e\xd9\x8e\x3d\ \x0a\x3f\x28\x43\x31\x80\x47\xe5\xf7\xba\x5c\xa3\x92\x97\x97\x4b\ \x5e\x5e\x6e\x2f\x1c\x27\x70\xff\x7d\x9c\x95\xc3\x35\x60\x39\x11\ \xc1\x9f\x9e\x58\x89\x4c\xb4\x6c\xc6\xea\xd9\x85\x5d\xf9\x37\x28\ \x02\xcf\xc1\x9a\x1b\x17\x07\x68\xb3\x5a\xde\xbd\x6f\xf9\x8b\x2b\ \x49\xa5\x82\x62\x09\x83\xb1\xf0\xa2\x0f\x4d\x80\xc1\xc6\xd9\xa3\ \x19\x72\x04\x9b\x5f\x86\xee\xd6\x0f\x65\x82\x0f\xf5\x38\xf5\x49\ \x9b\xde\xff\x28\xa3\x12\xa0\xb8\xf7\x15\x36\xb9\x18\xc1\x48\x3a\ \xec\x85\x10\x24\x52\xf0\xc8\x93\x2b\xb1\x5a\xde\xbd\x0f\xbb\xee\ \x7f\x50\xf1\xff\x50\x0c\x00\x4e\x4a\xa1\x83\x54\xfb\x76\x48\x36\ \xdd\xfb\xe8\x13\x6a\x30\x71\xf6\x68\xad\x90\x7d\x4d\xc8\xa1\xc6\ \xa2\x23\x05\x15\x87\x62\x7c\x06\x32\x32\x23\x09\x69\x3e\xd9\x3e\ \xd9\xdc\xed\xe7\xf7\x3e\xa1\x20\xd9\x64\xcf\x4d\x3a\x18\x44\xfa\ \x6f\xa8\x06\x40\x79\x61\x00\x1c\xd1\x89\x6d\x7e\xf6\x95\x55\x42\ \x66\xe4\x02\xd5\xb0\xdd\x98\xa1\x79\x11\x43\x5d\xe1\x87\x1a\xd7\ \x0f\x17\x1c\x1c\xae\xa1\xf8\x64\xfb\x64\x1b\xee\x26\xa5\xe4\xb1\ \x67\x57\x09\x5d\xc4\x36\x63\xf3\xfe\xb9\xee\xbf\x1a\x4d\x03\xe0\ \x1a\x81\x04\xd0\x2c\xdb\xb7\x2e\xdf\x77\xb0\x9e\x58\x3c\x31\x68\ \xb7\x3e\x9b\x0b\xdf\x97\x5b\x3f\x98\x95\x73\xb4\x56\xd2\xd1\xce\ \x38\xf4\xf5\x5b\x87\x73\xdc\x27\xdb\xff\x96\x90\xc1\xfe\xd3\x7c\ \x1e\xb3\x35\xc8\x3e\xeb\x9e\x58\xc2\x29\xfe\xd9\xba\x1c\x68\x66\ \x90\xe8\xbf\xbb\x19\x43\x34\x00\x29\xa0\x43\x25\x9a\x37\xc4\xbb\ \x9b\x0e\x3f\xf8\xcc\xb3\x95\x5f\xb9\x71\x19\xa6\x35\xb8\xc9\x35\ \xda\x39\xff\xbe\xe2\xe7\x63\xb9\x32\x0f\x76\xbf\x4f\xc0\xc1\x4f\ \xb6\xf4\x98\x49\xf7\xf6\x6b\xc2\xc6\x83\xdc\xbf\xe6\x96\x18\x5b\ \xb6\xef\x64\xeb\x8e\x5d\x24\x93\x29\xc6\x8f\x1f\x47\x4d\x55\x15\ \xd3\xa7\x4c\x1a\x50\x13\x2e\x64\xc0\xdd\x0f\x3e\x4b\xac\xb3\xe9\ \x30\x89\xe6\x0d\x3e\xf7\x7f\xd0\x06\x60\xa8\xc3\xcd\xe5\x08\x98\ \xa6\x15\xce\xfc\x4a\xb8\xe4\x84\x2f\xad\x7f\xf2\xe1\x3e\x78\xf2\ \x47\x5f\x1b\x6f\x20\x29\xae\xd1\xe0\xde\x1f\xce\x71\x43\x91\x28\ \x1f\xea\x71\x9f\x6c\xc7\xf7\xca\xad\x69\x8e\x62\x95\x6e\x3f\x0a\ \x01\x2d\x6d\x29\x8e\x34\x36\x71\xb4\xb1\x99\x23\x8d\x4d\x34\x1c\ \x69\xe4\x50\x43\x03\x87\x1a\x8e\xd0\xd2\xdc\x4a\x61\x61\x01\x63\ \x8b\x8b\x18\x5b\x5c\xc4\xf8\xca\x71\xcc\x9c\x36\x85\x59\xd3\xa7\ \x32\x76\x6c\x9e\xaf\xfc\x78\x70\xdf\x5f\x7b\xea\x75\x24\x9a\x3f\ \xf8\x8d\xec\xd8\xf6\x4b\xd2\xdc\x7f\x83\xa6\x69\x19\x6a\xbd\x87\ \xdb\x1c\xd4\x2a\xe3\x47\x37\x24\x93\x29\x6b\xfd\xa6\xcd\xda\xc9\ \x73\xe7\x88\x0f\x6b\xb5\x1d\x8a\x17\x31\x54\x6f\x62\x28\xc7\x0d\ \xb7\x8a\x71\x24\xc0\xe8\x27\xdb\xb1\x5f\xa5\x03\x2b\xa3\xcf\x68\ \xdb\x3d\x1a\xa6\x53\x28\x64\x92\x32\x2d\x8e\x34\x36\xb1\x73\xcf\ \x7e\x76\xed\xd9\xc7\xf6\x3d\xfb\xd8\xb9\x7b\x1f\xbb\xf6\xec\xc3\ \x4c\xa5\x08\x47\xc2\x5e\xc5\xe0\xc4\x9a\x6a\x2e\x3c\xf7\x0c\xae\ \xbe\xf4\x62\x4e\x5d\x30\xc3\xfe\x3c\xcb\x2e\xeb\xf6\x7f\x6f\x32\ \x39\xf0\xf9\x09\x61\x9f\x8b\x10\x82\xb5\xef\x6e\x55\x89\x64\x4a\ \xca\xf8\x51\x57\xf8\x73\xc0\xe6\x9f\xd1\x30\x00\x26\xd0\x49\xb2\ \x65\xab\xa6\xe2\x0d\x2b\x57\xbf\x39\xfe\xb4\x79\x73\xb0\xe4\xe8\ \xc7\xe7\x23\x05\xdc\x06\xeb\xaa\x8f\x66\x68\xd2\xd7\x6f\x1d\xe8\ \xf8\x4f\xc0\xc1\x0f\x7f\xf5\xf6\xaf\xdc\x9a\xa3\x38\xbc\xff\x60\ \x2b\x7b\xf6\x1f\x64\xf7\xfe\x03\xec\xde\x7b\x80\x3d\xfb\x0f\x50\ \xdf\x70\x94\x78\x32\x49\x22\x91\x20\xe1\x94\x32\x27\x92\x09\x4c\ \xa7\x32\xd0\x4c\x99\x08\x01\xa7\x2d\x98\xc7\x37\xbf\x7a\x0b\xe7\ \x9e\x71\x0a\x95\x15\xe5\xe4\xe7\xe5\x92\x9f\x9f\x47\x24\xac\x7b\ \x64\xac\xb1\x78\x70\xd2\x0f\xaa\x08\x49\x40\x34\x47\xd0\xdc\x12\ \xe3\xae\x5f\xfe\x86\x67\x57\xbc\xc8\x33\x0f\xdd\xcf\x33\x2b\xdf\ \x14\x9a\x8a\x37\xc8\x64\xcb\x56\xec\xea\x3f\xf3\x58\x1b\x00\x1c\ \xf7\x22\x06\x34\x59\x6d\x5b\xfe\xf0\xc8\xb3\x2b\xfe\xee\xf6\x2f\ \xdf\x9a\xb5\x20\x68\x38\x83\x7a\x28\xd5\x74\x03\x29\xea\x64\x9b\ \x58\x83\x75\xb3\x8f\xa7\x72\xe4\x4f\xb6\x41\xc6\xd8\x19\xf1\xb5\ \xa6\xd9\xab\x6a\x4b\x5b\x37\xad\xed\x1d\xb4\xb4\xd9\x7f\xad\x6d\ \x1d\x1c\x6d\x6a\xa6\xfe\x48\x13\x0d\x47\x1b\xa9\x6f\x68\xe4\xf0\ \xd1\x46\x8e\x36\xb6\xa0\xb0\x99\x80\xed\x92\x68\x5b\x97\x41\x49\ \x85\x69\xd9\xa5\xc1\xc5\x45\x05\x4c\xac\xa9\x62\x42\x75\x15\x93\ \x27\xd4\x70\xc2\xac\x69\xcc\x9d\x39\x8d\x99\xd3\x2a\xed\xd5\x31\ \x65\x97\x2b\xfb\x3b\x08\x2d\x2b\xf3\xbe\x0f\x7c\xe3\x0d\xc3\x36\ \x4c\xef\x6d\xde\xc5\xeb\x6f\xae\xe5\xf1\x67\x9e\xe3\xed\x35\x6f\ \x81\xae\x71\xe6\xd9\x67\x30\xa6\xb8\x88\x3f\x3c\xba\x02\xab\x6d\ \xcb\x1f\x80\x26\x67\x4e\x0e\x99\xa1\x71\x38\x06\xc0\x0b\x03\x54\ \xcf\x81\x37\x12\x3d\x33\xea\xff\xed\xe7\xbf\xaa\xfa\xee\xd7\xbf\ \x32\xac\x01\x3e\xd4\x89\x7c\x2c\x57\xca\xe3\xb9\x1c\xf9\x7f\xbb\ \x4b\x9e\xf9\x9e\x2b\x27\xaf\x1c\x62\x99\x44\x22\xc9\xae\xfd\x07\ \xd9\xb5\xf7\x20\x3b\xf7\x1e\x60\xe7\xde\x03\xec\xd8\xb3\x9f\xa6\ \x96\x56\x04\xc2\x71\x9f\x55\x06\x1e\xa3\xd2\x14\xf0\x40\x7e\x5e\ \xd4\x69\x97\x16\xce\xe4\xd7\x88\x84\x0d\x4e\x3d\xe9\x04\xce\x3b\ \xeb\x34\xce\x3f\xfb\x34\xaa\x2a\xc6\x78\x31\xba\x3f\x6b\xd3\xdd\ \x33\xf4\x49\x9e\xed\xb7\x5a\x96\x45\x32\x99\xe2\x8f\x8f\x3c\xce\ \x7f\xfc\xec\x97\x34\xb7\xb4\xd8\x9d\x87\x4a\xa1\xe5\xe7\x21\xbb\ \xbb\xb9\xe7\x67\x77\x71\xfb\x0f\x7e\x45\xbc\xab\xb5\x9e\x9e\x03\ \x6f\x0c\xd7\xfd\x1f\xae\x01\x00\x3b\xcf\xd8\x09\xd4\x6b\xc9\xa3\ \x2f\xbe\xf0\xda\x9a\x9b\xbf\xf9\xc5\x2f\xa8\x68\x4e\x58\x64\xfb\ \xe1\x1f\x76\x11\xce\xf1\x52\x8e\xdc\xd7\xfb\x9f\x4c\xfa\xde\x83\ \xdf\xef\x8e\xeb\x1a\xe8\xba\xa0\xbd\x53\xb1\xff\xe0\x11\xea\xea\ \x8f\x50\x77\xe8\x08\xfb\xeb\x8f\x52\x77\xa8\x81\xce\xae\x6e\xba\ \x7b\xe2\xf4\xc4\xe2\xf4\xc4\x62\x74\xf7\xc4\x88\x27\x12\xb6\x81\ \xcd\xe0\x86\x08\x87\x43\x7d\xa8\x41\x29\x2c\xcb\x22\x95\x4a\x91\ \x4c\x9a\x94\x97\x16\x73\xda\xfc\xb9\x9c\xb6\xe0\x04\x4e\x9c\x35\ \x9d\xd2\xb1\xc5\x8c\x19\x53\xc4\xd8\xa2\x7c\x84\x96\x06\xe6\x92\ \xc9\xd1\x6b\xf5\x75\x75\xff\xf2\x72\x05\xdb\x77\x1e\xe1\x17\xbf\ \xbb\x8f\xd7\x56\xbf\xc5\xde\xba\x3a\x12\xf1\x84\xd3\xef\x60\xe0\ \xb6\x69\x0b\xe0\x92\xa5\x4b\x28\xc8\x2f\x50\x4f\xae\x58\x2d\xb4\ \xd4\xd1\x17\x25\xd4\x3b\x73\xd1\x1a\xce\x39\x0c\xd7\x00\x48\xec\ \x7c\x63\xa3\x6c\x7b\xff\x91\xf6\x68\xf5\xa7\x9f\x7b\xf5\xb5\x9c\ \x4f\x5f\x71\x91\x03\x6c\x1c\xdb\x9c\xfc\x87\x9d\xf3\x1f\x0a\xc7\ \xc1\x70\x8d\xcf\xff\x24\x15\x60\x7f\xda\x2b\x33\xbf\xdd\x1d\xb3\ \xe8\xea\xee\xa1\xb3\x3b\x46\x67\x57\x8c\xce\xee\x1e\x5a\x3b\xba\ \x38\x74\xb8\x91\x43\x47\x9a\x38\x74\xb8\x91\x83\x47\x9a\x38\x70\ \xe8\x28\x3d\xf1\xb8\x4d\x38\xaa\x69\xe8\x42\x20\x74\x1f\x29\x48\ \x06\xe9\x6b\x38\x64\xf8\xc4\x60\x7c\x64\xa7\x4a\x61\x99\x16\x96\ \xb4\x50\x0a\x87\x6f\x70\x2c\x15\x65\x63\x99\x33\x6d\x32\x0b\xe6\ \xce\x64\xfe\xdc\x99\x54\x96\x47\x49\x9a\x90\x4a\x05\x5d\x76\x4b\ \x06\x1d\xeb\x91\x0a\x84\x0a\x21\x30\x0c\x1b\x00\xdc\xb6\x6b\x37\ \x6b\xd6\xbe\xcd\x7d\x0f\x3d\xca\xd6\xf7\x3e\x40\xcb\xcd\x71\x56\ \x7b\xe9\x4d\xfc\x34\x07\x02\x58\xc9\x24\x5f\xbd\xe5\xf3\x3c\xf8\ \xd4\xcb\xa2\xb5\xb5\x39\xae\xda\xde\x7f\x04\x68\x74\xe6\xe2\xb0\ \x08\xda\x47\x32\xe4\x34\xa0\x00\x98\xa2\xe5\x4f\xfe\x0b\x99\x3f\ \xe7\xeb\x1b\x5f\x78\x02\x5d\xd3\x8e\xab\xb4\x5b\xb6\xcf\x18\xee\ \x71\xc7\x22\xc5\xf8\x71\x0e\x07\xfa\x72\xd3\x85\x80\x86\xc6\x36\ \x76\xed\xaf\x67\x77\x5d\x83\xfd\xb8\xff\x10\x7b\x0f\x1e\xc1\x4c\ \x59\x1e\x39\x88\x5f\x8a\x4d\x3a\x34\x68\x69\x4d\x45\x02\x13\x3d\ \x53\x87\xc1\x93\xca\xf6\x98\xa5\xf1\xc9\xba\xa5\x25\xd8\xca\x4a\ \x8a\x39\xff\xcc\x93\x39\xef\x8c\x85\x9c\x71\xf2\x89\x01\x22\x8f\ \x6c\x42\x1b\xc7\xfa\x3a\xc5\x62\x31\x7e\xfa\xdb\xfb\xf8\xed\x7d\ \x7f\x22\x96\x88\x7b\x84\x2b\x1e\x13\xb6\x0a\xb2\x49\xe3\xfe\x66\ \x25\x29\x2b\x19\xcb\xce\x0d\xaf\x52\x38\xed\x4a\xb4\xee\xcd\x3f\ \x95\x5d\x7b\xee\xc5\xa6\xfd\xee\x1c\xae\x01\x18\x49\xdb\xb7\x07\ \x06\xca\x9e\x83\xab\xf5\xa2\x13\xbe\xf8\xc0\xe3\x4f\xe7\x7c\x7e\ \xd9\x55\x62\xb0\x6e\xfd\xb1\x4a\xbb\x65\x4e\xac\xc1\x86\x11\x03\ \x1d\x77\x2c\xc2\x86\x6c\xc6\xe9\xa3\x9b\xd0\x36\x89\x86\xeb\x92\ \xfb\xdd\x72\x29\xa1\xa1\x29\x46\xfd\xd1\x16\x0e\x1f\x6d\xa5\xfe\ \x68\x0b\xf5\x8d\x2d\x34\x35\x77\xd0\xd9\x1d\xa3\xa3\xab\xc7\xfb\ \xeb\xec\xea\xc6\xb2\x6c\xc6\x52\xcd\xf9\xf3\x26\x9c\x47\x45\xee\ \xd7\x7d\xe8\xbd\x1a\x89\x01\x02\x5a\x05\xa4\x92\x29\x92\x66\x0a\ \x69\x49\x66\x4e\x9d\xc0\xbc\xd9\x53\x39\x69\xce\x34\x26\x56\x57\ \x32\xae\xbc\x84\xca\xf2\x52\x8a\x0a\x42\xe9\xa6\x1b\xd9\x9f\xd1\ \x12\xa3\x3e\xe9\x43\x21\x41\x5e\x2e\xbc\xb9\x7e\x37\x0f\x3c\xfc\ \x04\x6b\x37\x6c\x64\xf3\xf6\x1d\xa0\xc0\xd0\xb5\x20\xb7\x22\x0e\ \x6b\x92\x10\x01\x4e\x48\x97\xc6\x4d\x4a\xc9\xef\xff\xfb\x27\xfc\ \xf8\xee\xa7\x95\x6e\x88\xb8\xd5\x73\x70\xf5\x48\xc0\xbf\xd1\x30\ \x00\x2e\x16\xd0\x8e\x4c\xee\x26\x56\xf7\xdc\x1f\x9f\x7a\xf6\xda\ \x5b\x6f\xb8\x2a\x90\xcf\x1c\xcc\x4a\x37\x1a\x13\xf2\x98\x50\x90\ \x1d\x03\xb7\x7e\x24\xbf\x75\x24\xab\x4f\x80\x8c\xc3\x21\xd9\x30\ \x2d\x3c\x1a\xb1\x58\x3c\x69\x3f\x8f\x27\x39\xdc\xd8\xc6\x81\x86\ \x26\x0e\x1c\x6e\xe6\x40\x43\x13\x75\xf5\x4d\x1c\x69\x6a\xb3\xdd\ \x3e\xe1\xb2\xfd\x3a\x40\x99\x20\x28\x88\x2a\x15\xa1\x90\x41\x48\ \x4f\xab\x2b\x05\x75\x1d\x83\x93\x58\x64\xcc\x78\xe5\x63\x24\x76\ \xcf\xdf\x92\x36\x5b\x70\x24\x1c\x62\x4c\x61\x1e\x85\x05\xf9\x54\ \x8d\x2b\xe1\xe4\x13\x67\x72\xea\xbc\x59\x2c\x9c\x3b\x09\x5d\xb3\ \xd1\xf7\x4c\x04\x3e\x9e\x38\xb6\x13\xbd\x97\x7b\xaf\x43\x4f\x3c\ \xc5\x81\x43\x87\x79\x69\xd5\x6a\x7e\x71\xcf\xfd\x1c\xae\x3f\x4c\ \x24\x9a\xe3\xb8\xff\xba\x47\x9d\x2e\x32\x18\xa6\x3d\x66\xe9\xc0\ \x80\xb2\x15\xa6\xaa\xab\x2a\x59\x30\x6f\x2e\x7f\x79\xc7\xcf\x05\ \xb1\xba\xe7\x90\xc9\xdd\xd8\x7d\xff\xd6\x48\xce\x7b\x34\x0c\x40\ \x1c\x68\xb4\x5a\x36\x3e\x70\x48\x2f\xbf\xf8\x81\xc7\x9f\xcb\xbf\ \xe1\xca\x4b\x87\x5c\x0f\x3f\x14\xc0\x6c\xa8\x13\x6b\xa4\xc7\x8d\ \x36\x38\x38\x14\x80\x73\xb8\x13\xdd\xab\x2f\xd7\x04\x89\x84\x62\ \x4f\x7d\x13\x7b\x0f\x36\xb2\xf7\x60\x23\xfb\x0e\x35\xb2\xe7\xe0\ \x51\x5a\xda\xbb\x51\xd2\x16\x1e\x75\x79\xf1\x2c\x4b\x06\x5c\x73\ \x97\x92\xdd\x26\xde\x70\x64\xb2\x33\x84\x58\x94\x47\x87\x9e\x5e\ \xb7\xb3\xf0\x0c\xdb\xaf\x7b\xda\x89\x99\xeb\x39\xde\xf7\x59\x96\ \x42\x4a\x3b\x54\x98\x37\x73\x0a\xe7\x9c\x7e\x22\xe7\x9c\x3a\x8f\ \x09\xe3\x2b\x30\x0c\x1d\x5d\xd7\xd1\x7d\x37\x28\x9e\x18\x7a\x6e\ \x7d\xb4\x27\x7e\x28\x24\x38\x72\xb4\x95\x3b\x7f\x7e\x37\xcf\xbc\ \xb0\x92\x9e\x78\x1c\xcb\x32\x41\x41\x4e\x5e\xae\xe7\xf1\x78\x64\ \xa9\x64\xf2\x1a\xf6\x61\x18\x11\x58\xf1\x18\x77\x7c\xf3\x36\x7e\ \xff\xf0\x0b\xd4\xed\xdd\xd7\x45\xcb\xc6\x07\x9c\xd8\x3f\xfe\x51\ \x1b\x00\x70\xd8\x82\x80\x83\xba\x6c\x59\xf1\xb3\xfb\xfe\x74\xed\ \xd5\x17\x5f\x40\x38\x1c\x1a\xf0\x46\x1c\x0b\xb4\x7e\x24\xee\xf9\ \x70\xf6\x3b\x96\x2c\x40\x7e\x30\x4d\x77\x73\xdb\x4e\xae\xbb\x2b\ \x06\x4d\x2d\x9d\x1c\x6d\xed\xa2\xb1\xb5\x93\xc6\x96\x4e\x1a\x5b\ \xba\x68\xeb\xec\xa6\xad\xa3\x87\xd6\xce\x1e\xda\xda\xbb\x69\xed\ \xec\xa1\xab\x3b\xee\xb8\xf6\xd8\x2b\xb7\xc0\xab\x2a\x53\x2a\x43\ \x45\xc9\x39\x49\xbf\x48\x25\x10\x1c\xc0\xfd\xde\xa8\xf4\x7c\x16\ \x42\xf6\xe9\xc7\x5b\xd2\x61\x3b\x36\x4d\xf2\x73\x73\x98\x3d\xb5\ \x86\x99\x93\x6b\x98\x3e\xa9\x9a\x09\xe3\x2b\xa8\x1d\x5f\x4e\x4d\ \x65\x09\x86\x61\x83\x72\xe6\x00\xbc\x7a\x1f\xd6\xa4\x77\x15\x9a\ \x22\x21\x5b\x02\xec\x95\xd5\x1f\xb0\xfc\xa5\x57\x79\xe3\xad\xb7\ \xf9\x60\xdb\x0e\x0c\xc3\xf0\xdc\x7b\x02\x5d\xae\x6a\xe0\x31\xde\ \x87\x7e\xc3\xfc\x85\xf3\xb9\x61\xd9\x15\x4c\x3b\xeb\xf3\xe8\xaa\ \x65\x85\x65\xab\xfd\xb8\xac\x3f\x7c\xd4\x06\xc0\x72\xe2\x90\xa3\ \x56\xcb\xbb\x8f\x77\xe6\xd6\x5c\xfb\xde\xd6\xed\x9c\x36\x7f\x6e\ \x6f\xcb\x36\x82\x38\x7b\xa4\x1d\x7a\xc3\x3d\x6e\x28\xe5\xc8\x03\ \xa5\x3b\xfb\x0a\x0f\x34\x8f\xef\xce\xa6\x16\x4f\x3a\x14\xe1\x29\ \xd3\xa2\xa3\x2b\xce\x81\x86\x36\xf6\x37\xb4\x70\xe0\x70\x2b\x75\ \x87\x5b\xa9\x6b\x68\xa6\x27\x9e\x44\x73\x26\xb1\xe6\x4c\x6c\xdb\ \xb5\xef\x2d\x41\x9e\x1b\x0d\xf5\x92\x1a\xf3\x58\x28\xfc\x42\x1f\ \x64\x1f\xa8\x99\xca\x43\x69\x57\xbd\x1f\x0d\x00\xe1\xca\x90\x2b\ \xef\x2f\x9a\x13\x22\x9a\x13\x21\x37\x27\xcc\xec\xa9\xb5\x2c\x5a\ \x30\x8b\x45\x0b\x66\x33\xa9\xa6\x88\x54\xca\x9e\xe4\x7e\x04\xde\ \x74\x26\xfe\xf1\xb2\x69\x1a\xf4\xf4\x24\x69\x6a\x69\xe3\xe1\xa7\ \x9f\xe7\x67\xbf\xfd\x03\xb1\x78\x9c\x48\x38\x8c\x10\x90\x93\x93\ \x83\x70\xf5\x20\xfd\x13\x59\xf9\x65\xeb\xfc\xd7\x2a\x53\xeb\x41\ \x05\x58\x8f\x11\x02\xcb\x32\xf9\x97\x3b\xbe\xcd\xab\x6b\x36\xd1\ \xde\xd9\x85\xd5\xf2\xee\xe3\xd8\x6a\xbf\xb1\x91\xae\xfe\xa3\x65\ \x00\x5c\x2f\xa0\x0d\x65\x6d\x97\x9d\xbb\x1e\xf9\xdb\x7f\xbd\xf3\ \x53\xef\x2c\xbf\xcf\x2b\x8e\x18\x6c\x9c\x3d\xdc\x55\xf3\x58\x16\ \xef\x0c\xc5\xad\x0f\x7e\x4f\x46\x07\x98\xb0\x01\x35\x21\xa0\xa9\ \x35\x49\xdd\x91\x56\x0e\x36\xb4\xb3\xbf\xa1\x95\xba\x86\x56\x0e\ \x35\xb6\x91\x4a\x3a\x7a\x00\x3e\x7d\x00\x4b\x5a\xbe\x01\x95\x16\ \x23\xc9\xcb\x09\xa7\xa9\xb6\x7d\x1a\x87\xbd\x5d\x48\x3f\x42\xde\ \xdb\xe5\xee\xb5\xaf\x22\x4b\xa4\x9e\x5d\x74\xc4\x75\xe9\xfd\xe2\ \x21\x52\xda\x3a\x0a\x29\xd3\xa4\x20\x2f\xca\x99\x0b\x66\xb2\x68\ \xfe\x4c\x4e\x3d\x69\x06\xf9\xb9\x39\x44\xc2\x61\xa2\x39\x61\xbf\ \x17\x4c\x67\xd7\xf1\x29\xf5\xe5\xea\x1e\x46\xc2\xf0\xc1\xb6\x3a\ \xfe\xeb\x57\xbf\x67\xed\x86\xf7\x69\x6b\xef\xc0\xb2\x4c\x5b\x3c\ \x33\x27\x62\x6b\x2e\x3a\x37\xbf\x2f\xe5\xa5\x5e\xa2\x2b\x59\xef\ \x53\xc0\x12\x23\xa5\xc5\xa9\x0b\xe6\x73\xe9\x85\x0b\x19\x77\xd2\ \xe7\x91\x9d\xbb\x1e\x41\x59\xdb\xb1\x59\x7f\xcc\xd1\xf8\x8d\xa3\ \x65\x00\x5c\xca\xb0\x46\xd9\xbe\xed\xd1\xd6\x68\xed\xd2\xbb\xee\ \x7e\x38\xfa\x97\x37\x5e\x27\x20\xfb\xcd\x1d\x4d\xb6\xdd\xc1\x4e\ \xdc\x91\x4c\x78\xff\x67\xe8\xce\xa4\x16\x8e\x6b\xae\x14\xb4\x75\ \xa5\x68\xef\x8a\xd3\xd6\x15\xa7\xb5\x33\x46\x5b\x67\x9c\xb6\xce\ \x18\xcd\x1d\x3d\xb4\xb4\xf5\xd8\x8f\xed\xdd\x34\xb7\xf7\x60\x9a\ \x16\xba\x26\x02\x28\xb9\xf0\x21\xe3\xfe\x34\x90\x86\x66\x73\xf0\ \x2b\x65\x0b\x64\xf8\x57\x08\x67\x14\x05\xe2\xc8\x6c\xec\xc0\xfe\ \x41\xe8\xbe\x28\x54\x96\x7d\xfb\x50\x2a\x52\x2a\xa0\x61\x28\x15\ \x98\x96\x85\x65\x9a\x58\x52\x52\x59\x36\x86\x49\xd5\xe5\x4c\x18\ \x5f\xc6\xe4\x9a\x71\x4c\x9d\x50\xc9\xb4\x89\x55\x54\x96\x45\x49\ \x99\xe9\x95\xdd\x1f\xa7\x07\x39\x24\xc4\x71\x33\xe1\x85\xb0\x27\ \xbc\x69\xc1\xeb\x6f\xbd\xc7\x2b\xab\xd7\xb2\xe2\x95\xd5\xec\xd8\ \xbb\x9f\x48\x28\x8c\x61\x68\x28\x25\x6d\xf2\x4e\x17\xe0\x24\x98\ \xc9\xf0\xe7\xee\xfd\xa2\x91\x2a\xc3\xa3\x0a\x8c\xb3\x2c\xf7\x2d\ \x1c\x0e\x73\xff\xaf\x7f\xc6\x3f\xfd\xc7\xc3\xaa\xb9\xa5\x25\x4e\ \xfb\xb6\x47\x7d\xb1\xbf\x3c\x9e\x0c\x80\xcb\x15\xd0\x86\x4a\xed\ \xd4\x7a\xf6\x3d\x7a\xf7\x9f\x1f\xbb\xe9\xd6\x4f\x5f\xdb\xaf\x80\ \xc2\x50\x39\x01\x47\xbf\x3f\x20\x7d\xeb\x7a\xb3\xfb\x2a\x2c\xcb\ \xe6\xc7\x57\xd8\x8f\xa6\x25\x39\xd2\xd2\xcd\xc1\xa3\xed\x1c\x38\ \xda\x41\xdd\x91\x36\x0e\x1d\xed\xe0\x70\x73\x17\x42\x28\x9b\x5d\ \x45\xd8\xc2\xa4\xc2\xd3\xd9\x0b\x2a\x1b\x87\x43\x3a\x11\x47\xc7\ \xce\x55\x02\xb6\x43\x44\x99\x7d\x95\x15\x19\xfe\xb5\xab\x60\xdc\ \xdf\x9d\xf0\xf6\x57\xf4\x16\xf6\xca\x10\x23\xf5\xbd\x90\x61\x57\ \xd2\xb2\xe2\x4e\x85\x5d\xc4\x30\x08\x19\x3a\x45\x05\xb9\x9c\x7e\ \xd2\x74\xce\x98\x3f\x9d\xd3\x4f\x9a\x41\x24\x6c\x6b\xde\x49\x2b\ \xa8\x72\xdb\x35\x82\xf2\xd8\x8f\x62\x4b\xa6\x52\xb4\xb5\x77\xf2\ \x8b\x7b\x1f\xe4\xde\x07\x9f\xb0\x8b\x90\x1c\xd4\x3e\x2f\x37\x0a\ \x8e\x4e\x80\x1b\xd3\x0b\xef\x1a\x2b\x9f\x98\x6a\xd0\xbb\xf2\x80\ \xcf\xc0\x35\x56\xbd\x74\x20\x95\xf3\x59\xee\xb4\x96\x52\xb2\xe4\ \xfc\x0b\xc9\xcf\xcb\xe3\x27\xf7\x3c\x26\xb4\xd8\xbe\x87\xa5\x4a\ \xed\xc4\x2e\xfb\x1d\x52\xcf\x7f\xbf\x8b\xdd\x28\x5f\xc3\x30\x50\ \x06\xcc\x11\xe5\x8b\x7f\x76\xe2\xdc\x53\xa6\xfe\xf9\xe7\xff\x9f\ \x30\xad\xec\x13\xba\xaf\xbe\xff\xfe\xbc\x81\xfe\xf8\x01\x06\x32\ \x00\x7e\x10\xcd\x05\xd5\x92\x29\x68\x68\xe9\xa1\xa1\xa5\x8b\xfa\ \x96\x6e\x0e\x37\x75\xd1\xd0\xdc\x45\x47\x4f\x82\x64\xca\xd6\x14\ \x4c\x24\x4d\x92\x29\x5b\x47\xd0\xad\x1f\x77\x6f\x9c\xf0\x56\x8e\ \x0c\x69\x73\xb7\xd8\xc5\x95\xe3\x76\x6e\xae\x5f\xae\x3c\xb0\xaf\ \x93\xfb\xb5\xeb\xd2\xa5\x33\x16\x7c\x32\xdf\x52\x3a\x71\xb5\xca\ \xf8\x0e\x99\x36\x26\x81\xf7\x33\x0b\x4c\x32\xa4\xc2\x7d\xe2\xa9\ \x9e\x62\x8f\x74\x24\xd0\x52\xf6\xca\x3e\xb5\xb6\x9c\x93\x4f\x98\ \xc2\xc9\x73\xa7\x30\xb9\xba\x9c\x82\xbc\x28\x05\x79\x39\xe4\xe6\ \x84\xd2\x42\xaf\xea\xe3\xa1\xd6\x9b\x75\xf5\xd3\x21\x1c\x86\x55\ \x6b\x3e\xe0\xd7\x0f\x3c\xca\xd6\x1d\x7b\x38\x7c\xb4\xc9\xae\xbb\ \xd7\x48\x53\x01\xab\xb4\x3c\x7c\x20\xa5\xe9\x4d\x66\xc7\x28\xa8\ \x0c\xd9\xf9\x6c\xfb\x4a\xe9\x44\x4c\x19\xfb\xba\xa9\x41\x67\xc1\ \x31\x53\x29\x1a\x77\x7f\xc0\xa5\x9f\xbb\x5d\xbd\xbd\x61\xfd\x4e\ \x1a\x5f\xbd\x0d\xf8\xc0\xf1\x00\x92\xa3\x76\x0d\x46\xf9\x9a\xba\ \x19\x81\x43\x74\x6e\xbf\x67\xcb\xce\xb1\x3f\x5c\xbb\x71\xb3\x5a\ \x38\x77\x8e\xf0\xf7\x33\x8f\xd4\xad\xcf\x44\xc8\x35\x5f\xda\x4b\ \xd7\x20\x9e\x54\x74\xc7\x53\x74\xc7\x4d\xba\xe2\x29\xba\x63\x29\ \x3a\x63\x49\x5a\xbb\xe2\x34\xb5\xc7\x68\x6e\x8f\xd1\xd4\x11\xa3\ \xa9\x2d\x46\x47\x4f\x02\x5d\x08\x34\x0f\x25\x27\xdd\x38\x92\x31\ \xf9\x34\x27\x81\x2e\x94\xb0\x01\x35\x57\x28\xb3\x0f\x5b\xec\x57\ \xdb\xed\x25\xaa\xd9\x47\xa9\x8b\xa7\xb6\xab\x06\xb6\xce\xca\xf1\ \x34\x94\xca\xf6\x0e\xbd\xd3\x6f\xae\x91\xb1\x14\xa6\xb4\xf5\x08\ \xc3\x21\x8d\xca\xb2\x62\x2a\xcb\x8a\xa9\x2a\x2b\x66\xe6\xe4\x2a\ \x66\x4d\x19\xcf\xac\xc9\x95\xe4\x44\xec\xbc\xba\x69\x3a\x04\x15\ \x1e\x5d\xd5\xc7\x6b\x65\xf7\xc7\xf3\xe1\x10\x74\x74\x25\xd9\xb0\ \x69\x1b\x2f\xbf\xb1\x9e\xc7\x9f\x7b\x89\x23\x8d\xcd\xe4\x44\xc2\ \x68\x08\x74\x5d\x73\xc0\x3a\xe9\x5b\xc1\xb3\xbb\xea\xd9\x00\x52\ \x25\x7d\xf7\xbd\xbf\xd5\xd6\x53\xcd\xce\x7e\x9f\xef\xfc\xfe\xf7\ \x58\xb7\x71\x9b\x7a\x6f\xeb\x6e\x21\x3a\xb7\xdd\xa3\x46\x11\xf9\ \x3f\x96\x1e\x80\x6b\x54\xc6\x00\xd3\xb5\xd2\x53\xbf\x3f\xa6\x7c\ \xe6\x79\xeb\x9f\xfe\x3d\xb1\x78\xff\xee\xbd\xa6\x65\x64\x3f\x03\ \x2e\xb9\x5f\x2d\x38\xbd\x75\xc7\x53\xd4\x37\xf7\x50\xdf\xd2\xcd\ \xa1\xa6\x6e\xe7\xb1\x8b\x78\xd2\xf2\xd0\x70\xe1\xcf\xb1\xc8\xb4\ \x96\x9d\x72\x8a\x54\xa4\x8b\xd2\xe2\xb8\x5f\xc2\xce\x75\xbb\x72\ \xbf\xca\xd1\xc7\xc3\x11\xa1\x14\x7e\xbd\x3a\x6f\x95\xb5\x67\x47\ \xda\x03\x50\xee\x2b\xe9\x7d\xa5\x72\x00\x33\xdf\xca\xeb\x20\xc6\ \x92\xf4\xe4\x94\x52\x06\x56\xe7\xc0\xbe\xa4\xc3\x06\x0f\xd5\xf7\ \xef\x2b\xdd\xd8\x5e\xfa\x4a\x49\xd3\x45\x26\xae\x24\xd6\xb4\x09\ \x15\x9c\xb9\x60\x3a\x67\xce\x9f\xc6\xf4\x89\xe5\x9e\x2c\x98\xdf\ \xb0\xfe\x4f\xda\xdc\x2c\xc4\xa1\x86\x46\xee\xfc\xc5\xef\x59\xbe\ \xf2\x0d\x0c\x43\xf3\xca\x6c\xfd\xd7\x58\xd9\x37\xc1\xd3\x25\xb4\ \xe7\xbc\xf4\x26\x6a\x3a\x9c\x93\x28\x47\xe1\x34\xb0\xaf\xfb\xba\ \x4c\xd7\x53\xb8\x21\xa5\x73\x03\x03\xf5\x13\xae\x07\xe0\xdd\x6b\ \xa5\x28\x2a\x2c\x60\xdf\x7b\xab\x98\xb4\xe8\x66\x5a\x1a\xb6\xae\ \x94\xcd\xeb\xff\x09\xd8\xe1\xb8\xff\xe6\x68\x4f\xd6\xd1\xde\xdc\ \x4e\xc1\xc3\xb2\x69\xfd\xaf\x9a\x8d\x92\x85\xff\x72\xd7\x3d\x05\ \xdf\xfe\xf2\x17\x84\x3f\xc7\xec\x56\x91\xb9\x2b\xb8\xae\xd9\xde\ \x41\x7b\xb7\xa4\xb9\x2b\x4e\x53\x47\x82\xc6\x8e\x04\x4d\x1d\x09\ \x5a\x3b\xe3\xc4\x92\x26\xb1\xa4\x2d\xed\x1d\x4b\x9a\xc4\x13\x26\ \x29\xd3\x76\xad\xfd\x29\x14\x81\xed\xbe\x79\x80\x99\xf7\x8e\x0a\ \xc4\x5b\x82\x74\xed\x55\xef\x00\x5a\x78\xfe\x6d\xfa\x95\xbe\xf6\ \x4d\xbb\x31\x69\xcb\x9f\x65\x5f\x91\xde\xcf\x1b\x10\x2a\xed\x66\ \xf6\x8d\x1e\xcb\xb4\xd0\xb7\x63\xc8\xfa\x5a\x35\xa4\xb2\x15\x85\ \x53\x29\x8b\x68\xc4\x60\xce\xd4\x2a\x4e\x9c\x51\xcd\xdc\x69\xd5\ \x94\x8d\x29\x60\x6c\x51\x1e\x25\xc5\xf9\x84\x8c\xb4\x16\x60\xca\ \x74\xa2\x57\xf1\xf1\x59\xcd\x07\x15\x8b\x86\xec\xb1\xf5\xec\xca\ \xf5\x3c\xf4\xf4\x8b\x6c\xdb\xb9\x97\x83\xf5\x47\xd0\x0d\x8d\xb0\ \x61\x38\x55\x0f\x7d\xa5\x71\xdc\xfb\x32\xc0\x3d\x0f\xe8\xb7\xfb\ \xf7\xf5\x8f\x38\x2f\x1f\xea\x7d\x42\x30\x05\xa8\x7a\xa9\x21\xbf\ \xf2\xd4\xc3\x7c\xe7\x07\xbf\x53\x4d\xcd\x8d\x9d\x34\xbf\xfd\x6b\ \x46\xd8\xf1\xf7\x61\x1b\x00\x17\x10\x6c\x01\xb5\x4b\x8b\xed\x7f\ \xf8\x91\xe7\x5e\xbc\xf5\x2b\x9f\xfb\xb4\xca\x89\x46\xc5\xd1\xb6\ \x04\x09\x53\xd2\x19\x4f\xd1\xdc\x99\xa0\xb9\x23\x49\x63\x47\x82\ \xe6\x8e\x38\xcd\x5d\x09\x4c\xcb\x56\x69\xd5\x1c\x2f\x40\x23\x28\ \x77\xed\xc6\xd6\x02\x81\x61\x08\x0f\xd0\x96\xfe\xf4\xa9\xcc\x28\ \x48\xc9\x04\xbe\x32\xe7\xe5\x20\x28\xc4\xd3\x2e\xe0\x20\x0a\x3a\ \xbc\xb1\xa0\xfa\xdd\x2f\x88\x08\xab\x2c\xf4\xe8\x8a\x74\x01\xad\ \xf2\xce\x55\x3a\xd5\x7b\x4a\x2a\x0a\xf2\x22\x8c\x2d\xcc\x65\x4c\ \x51\x2e\x13\x2b\x4b\x38\x71\xc6\x78\x4e\x9c\x56\xcd\xa4\xea\x02\ \x8f\x76\xca\xcc\x40\xe0\x53\xe6\xc7\xcb\x7d\x1f\xac\x7b\x6f\x18\ \xd0\xdc\xda\xcd\x8e\xdd\xfb\x79\xe6\xa5\xd5\x3c\xfc\xf4\x8b\xc4\ \x12\x09\x22\xe1\x90\xdd\x1a\x1c\x09\xa5\x57\x5c\x95\x7d\xe0\x7a\ \x13\xd1\x03\x5d\xb3\xc1\xa8\x2a\xb8\x6f\x1f\xb7\xda\x5f\x0b\xa0\ \x9c\x80\x31\x3d\x18\xd3\xd2\xe9\xee\xbe\x96\x69\xf2\x95\x5b\x6e\ \xe2\xff\x6f\xef\x4b\xc3\xab\x2a\xcf\xb5\xef\x77\xad\x3d\x64\x4e\ \x48\x20\xa3\x4c\x32\x8b\x4c\x2a\x4e\xe0\x54\xe7\xaa\xd8\x1e\xdb\ \x53\xad\x9e\x5e\xb6\xf6\xd4\x7e\x76\xf8\xbe\x56\x3d\x5f\x4b\xdb\ \xe3\x50\x71\x46\x3d\x8e\x88\xb5\x8a\xa8\x75\x42\x11\xa5\x08\x8a\ \x0a\x12\x11\x21\xcc\xf3\x94\x40\x48\x20\x90\x39\x3b\x3b\x7b\x5a\ \xef\x73\x7e\xac\xe9\x7d\xd7\x5a\x7b\x27\x58\x40\x86\xbd\xae\x8b\ \x2b\x10\xde\xbd\xb2\xf7\xce\x7e\xa6\xfb\xb9\x9f\xfb\xc9\xcc\xca\ \xa6\x57\x66\x2d\x60\x4a\xb8\xe6\x4d\x0e\xda\xae\xdb\xd2\xa1\x03\ \xfe\x0e\x77\x09\x20\x02\x82\xbd\x01\x8c\x54\x8a\x2f\x78\x72\xd0\ \xe0\x51\xc3\x3f\x7e\xf5\x29\xdc\xfe\xca\x46\xc4\xe2\x06\xe8\x61\ \xd4\xcf\x1c\xdc\x6e\x35\x11\xe9\xc6\xc0\xcd\x5f\x14\xb3\x00\x33\ \x31\x8d\x82\xd5\xfa\xe2\x46\x79\xc0\x8d\xa8\x4f\x46\x9a\x45\xb6\ \x11\x12\x81\x1b\x93\x66\x76\x9a\x0d\xa1\x7f\x2e\x52\x51\xc9\xc0\ \xe3\xb8\x90\x66\xdb\x67\xc1\x65\x52\x07\x37\x40\x20\x31\x95\x27\ \x03\x10\x94\xd3\x4b\xf3\xff\xb9\xdc\x01\x30\x9f\xbb\x94\xca\x9b\ \x80\x90\x71\xd6\x5c\xd7\x4d\x1c\x99\x01\x1f\xc6\x8f\xec\x87\xb3\ \x46\x0f\xc4\x59\xa7\x0e\x40\x6e\x4e\x86\x80\x5b\x9c\x58\x42\x03\ \xe2\x78\xed\xea\x0d\x3b\xf1\xc8\xb4\x99\x58\xb9\x76\x8b\xbe\xae\ \xdc\x02\x2d\xb8\x90\x66\xdb\x22\x20\xe6\x5a\x71\x73\x72\x50\xaf\ \xec\x89\x38\x00\x00\x20\x00\x49\x44\x41\x54\x4c\xf5\x0d\xb4\xd6\ \xfa\x1d\x88\x65\xa2\x08\xf8\x9a\xc0\xa0\x9d\x38\x90\x3d\x9d\x48\ \x24\x01\xbe\xf6\xe7\x40\x26\x69\x99\xdd\x21\x0e\x42\x61\x41\x3e\ \xf6\x6c\xf8\x14\xa3\x2f\xf9\x0d\xb6\x6e\x5e\xbb\x91\x1f\x58\xfc\ \x7f\x01\x6c\x84\x3e\xf4\x13\x3b\x1c\xef\xa1\xef\x30\xfe\x7e\x12\ \xd0\x65\x8a\xf7\x50\xdb\x86\xe9\x3b\x77\x17\x3e\x36\xef\xf3\xe5\ \x74\xdb\xa5\xa3\xd8\x13\x73\xb7\x5b\x2d\x11\xcf\xbe\x33\xb7\x5d\ \x27\x09\x29\x18\x03\xb3\x0c\x52\x46\x52\xec\x5f\xa0\xfb\x2c\x49\ \xa9\x9d\x57\x1f\xdc\x75\x5f\xc3\x79\xd8\xfc\x16\x72\x44\x09\x81\ \xb1\xc5\x9d\x1d\x74\x92\x20\x3e\x12\x22\xb7\xf9\x44\x49\x68\xe9\ \x99\xa0\x22\x91\xde\x66\x4c\x24\x12\x48\x24\x38\x4a\x7b\xe7\x62\ \xd8\x80\x62\x0c\x1f\xd0\x07\x03\xca\x0b\x51\x5a\x94\x87\x92\xa2\ \x3c\x14\x15\x04\xf5\x35\x53\x5c\x07\xe3\x4e\x44\x2d\xc1\x8c\xa0\ \xce\xff\xff\xe7\xa7\x4b\x31\x7f\xd1\x57\x58\xb5\x7e\x0b\xea\x1b\ \x1a\x11\xf0\xfb\xa1\x2a\xcc\x9e\xaa\xb3\x70\x1d\xd8\x5d\x15\xaf\ \x74\xde\xea\x9e\xa4\xf8\x9c\x39\x32\x35\x7b\x5a\x4f\x3c\x4b\x12\ \x00\x0c\xcf\x4c\xd4\x4d\xa7\x26\xa6\xdf\xe7\xad\xbf\x4f\xc3\xdb\ \x1f\xac\xa0\xad\xd5\x75\x8c\xda\x37\x4c\x07\x50\x77\x38\x80\xbf\ \x23\xe5\x00\x2c\x72\x10\x45\x1b\x97\xa2\xab\x6e\xe1\x9f\xa7\x3e\ \x73\x71\xe5\x3b\x2f\xe3\x9c\xa1\x85\x58\xbc\xa9\x11\x3e\x13\x99\ \x22\xa9\x62\x12\xad\x1f\x8c\x31\x23\x5a\xba\x53\x30\x57\x3a\x43\ \xcc\xe0\xb3\x8b\x35\x9c\xfb\x2c\xf3\x44\x6b\x99\x84\xfc\xc2\xe1\ \x27\xe4\xba\xdb\xe3\xac\xe1\xd5\xdd\xe0\x3e\xb3\x22\xbc\xe9\x87\ \x4c\x39\x2b\x95\x01\xd9\x99\x01\xe4\x64\x04\x90\x97\x13\xc4\xa8\ \xc1\xa5\x18\x37\xac\x02\xe3\x86\x57\x20\x27\x4b\xb1\x52\x78\x4d\ \x98\x6e\x8b\xc5\x93\xb7\x39\x8f\xd7\x28\x6f\xe2\x45\x4d\xad\x21\ \xd4\xd4\xee\xc5\xeb\xb3\x3f\xc6\x7b\x1f\x2d\x82\xaa\x32\xf8\x55\ \x1f\xc0\x08\x99\x19\x41\xab\xd5\xe6\xac\xca\xa5\x32\x8f\xbc\xf3\ \x68\xeb\x2c\xc9\x4d\x1a\x2f\x6e\x86\x74\x5f\x47\xc0\x12\xcf\x32\ \x67\x2d\xc0\xc9\x13\x4f\x88\xc7\xe3\xf8\xfe\xd5\x57\x60\xf4\xc8\ \xa1\xf8\xe1\x6d\x37\x33\xd6\xb5\x67\x3e\x8f\x36\x2d\x83\x4e\xf9\ \xfd\xc6\x62\x1f\xdf\xb6\x03\x30\x01\xc1\x10\x80\xbd\x5a\xd3\xd7\ \xcf\xb4\x06\x0a\x47\xfe\xe4\xf7\x7f\x2e\x79\x79\xea\x5f\x59\x6d\ \x73\x18\xb5\x07\xc2\x72\x41\x6c\x46\x69\x0b\xc1\x17\xe3\xa8\xf9\ \xcb\xb1\xdd\x2f\x73\xd6\x6d\x8e\xf7\xdb\xe9\x7d\x93\x22\x16\x0e\ \x90\x80\x75\x57\x34\x51\xf2\x1a\xca\x7a\x3e\x42\xf6\xa0\xcb\x4f\ \xe9\x6d\xb7\xbe\x25\x05\x38\x73\xe4\x49\x38\xf3\x94\x93\x30\x74\ \x40\x1f\xf8\x7d\x0a\xfc\x3e\x15\x3e\x55\x26\x30\x74\x76\x7d\x3b\ \xd3\x6d\x47\x93\xe1\xab\x2a\x43\xc0\xcf\xb0\x60\xf1\x1a\x3c\x3d\ \xe3\x5d\xec\xda\xb3\x17\x91\x48\x14\x9c\x38\x32\x32\x82\x76\x1a\ \x2d\x90\xef\x19\x27\x70\xaf\x7e\x9d\xf4\x69\x81\x80\xcc\x77\xa3\ \x3c\xc0\x5c\xa4\xc9\x6e\x71\x1d\xe7\x07\x92\x3c\x02\x9b\x78\xbf\ \x93\xfb\xf7\xc3\xf4\xc7\x1f\xc2\xd5\x3f\xfd\x33\x35\x35\xed\xdb\ \xc7\x9b\x96\x3f\x07\x60\x2f\x0e\x62\xcb\xef\xd1\xea\x00\x04\x40\ \x10\xdb\x78\xf3\x8a\xa9\x2b\xd6\x06\x1f\x79\x6b\xee\x02\xfc\xf4\ \xd2\xcb\xf0\x97\xd7\xd6\xc0\xe7\x63\x6e\xc4\x54\xe8\xc1\x33\x21\ \x29\xb3\x0d\x9b\x2c\xa6\x9b\xd7\xde\x66\x6b\xb2\xcd\xe1\x7d\x29\ \x09\x92\x4b\x8e\x72\x22\x39\xea\x2b\x86\x7b\x59\xb8\x81\x1b\x29\ \xbc\xa6\xe9\x34\xdf\x7e\xa5\xf9\xe8\x5f\x5a\x80\x01\x65\x05\xe8\ \x5b\x92\x8f\x93\x4a\xf2\xd1\xaf\x24\x1f\xd9\x99\xcc\xa2\xc6\xf2\ \x14\x2d\xb7\x13\xb1\x9e\x57\x14\x86\x8c\x20\xd0\xd4\x12\xc1\x27\ \x4b\xaa\xb0\x68\xd9\x6a\x7c\xf1\xf5\x5a\xb4\xb5\x77\x20\xe0\xf7\ \x43\x51\xec\x1a\x4e\x6c\xf3\xda\xdd\x1c\x3b\x90\x30\x82\x64\xf0\ \xe2\x67\xc9\x0c\xa8\x3a\xc6\x67\xb3\xf4\xec\x8e\x0c\xb9\x90\x7e\ \x66\xb5\x81\xe5\x24\xd7\x99\x21\x48\x55\xa3\x8b\xe2\x2b\x7f\x93\ \x31\x20\x16\xee\xc2\xcb\xcf\x3c\x86\x19\x6f\xcf\xc7\x57\x55\xeb\ \x18\x35\x2d\x7f\x04\xc0\x76\x1c\x62\xc6\xdf\xb7\x01\x02\x3a\x1d\ \x4d\x3e\x80\xc1\x4a\xee\xa0\x9b\x78\xe6\xb0\x5f\xbf\xf7\xe2\x53\ \x14\xf3\x17\xb1\x19\x9f\x57\x3b\xd4\x61\xb8\x63\x9a\xcd\xe8\x02\ \x90\x1b\x48\x71\x31\xa8\x98\x09\xf2\x70\x97\x10\xa4\x8b\xc5\x65\ \xfe\x9d\xb8\x00\xea\x09\x40\x9c\x20\x41\x45\xd2\xc0\x8d\x01\x46\ \x12\xc1\xa7\x2a\x16\xb5\xb7\xac\x4f\x0e\x4e\x1b\x5a\x86\x71\xc3\ \xca\x30\xbc\x7f\x2f\x1d\xd5\xd5\xf4\xdb\xda\xa3\xb5\xdd\x6f\x39\ \x3a\xd1\x2e\xd3\x1c\x3a\x42\x61\x6c\xdf\x55\x87\x69\xaf\xce\xc1\ \xe7\x5f\xad\x46\xd0\xef\x83\x62\x0e\x5a\x18\x32\x60\x96\x0e\x81\ \x38\xd5\x68\x72\x22\x48\x06\xd4\xac\xcf\x94\x78\x96\xe4\xbe\x3b\ \x1c\x6c\x4b\x51\xeb\xc0\x0e\x0c\xdc\x72\xf4\x2e\xe0\x56\xbc\xaf\ \x05\x08\x0a\xf7\x15\xcf\x9a\x9f\x43\x81\x07\xc2\xb9\x86\xa7\x1f\ \xbe\x0f\x23\x86\x8d\xa4\x0b\xbe\xf7\x7f\x98\xd2\xb5\xf9\x49\x1e\ \xda\xf9\x1a\x74\x99\xaf\xc3\x5a\xfb\x1f\xa9\x0c\xc0\x59\x0a\xd4\ \xf2\x8e\x1d\xef\xfb\xb2\x2a\x26\xfe\xf2\x4f\x53\xc6\x7e\x35\xfb\ \x45\x2c\x5c\x97\x85\xda\xc6\x4e\x17\xe5\x9d\x04\xd0\xc5\x2b\xad\ \xf0\x3a\x4b\x70\x33\xb0\xa8\x9b\xcc\x3f\xd5\x59\x13\xfd\x8f\x27\ \xf4\xb6\x9b\xca\x80\x53\x06\xf6\xc6\x98\xc1\xa5\x18\x33\xb8\x18\ \x45\xf9\x99\xc8\x08\xf8\x90\x99\xe1\x83\x5f\x55\x2c\xac\x20\x1a\ \x77\x1a\x39\xeb\xbe\xbd\x78\x02\x45\x7a\x00\x08\xf8\x75\x16\xe7\ \x5b\x73\xbf\xc4\xeb\xef\x7f\x82\xfa\x7d\x4d\x68\xef\xec\x04\x00\ \x64\x65\x66\x18\xdd\x18\x9e\x74\xb2\xce\xe5\x42\x92\x64\xf2\xcc\ \x23\x71\x23\xf2\xfe\xfd\xb3\x64\xf8\x4f\x77\x67\xbb\x29\x13\xbc\ \x44\x40\x12\x09\x0d\x13\xcf\x19\x8f\x9b\x7e\x70\x25\x86\x9c\x7f\ \x0b\xf3\xb1\x8e\x95\x89\xd0\xce\x39\xd0\x19\x7f\x87\xa5\xe7\xff\ \x6d\x66\x00\xe6\xcf\xca\x04\x50\x06\xe0\x54\x94\x5c\xfa\xfc\x79\ \x67\x9f\x5b\x3c\xed\x81\xbb\xd8\x7d\x6f\x6f\x44\x7b\x67\x54\x6f\ \xd5\x91\x2d\x25\x65\x7f\x60\xf4\x36\x18\xc4\x48\x0e\x91\x99\x25\ \xa0\xf6\xc6\xff\xc3\x11\xc9\x21\x44\x70\x1b\xf0\x31\xee\xc5\xc9\ \x92\x89\x4e\x68\x1c\x79\x59\x01\x94\x15\x65\xa3\xb4\x30\x1b\x15\ \x7d\x72\x30\xa0\xb4\x00\x03\xcb\xf2\x71\x52\x71\x96\xce\x17\xe3\ \x76\x6f\x1d\x60\x3d\x16\x05\x75\x1a\xfe\x89\xb2\x07\xd0\xac\xe7\ \x33\x02\xc0\xee\xfa\x36\x2c\x5b\xb3\x19\x9f\x56\xae\xc2\x27\x5f\ \xae\x44\x22\x9e\xd0\xc5\x63\x84\xb9\x09\x58\xed\x61\x8f\xb9\x09\ \x12\x67\x1d\x90\x7a\x6e\xc2\xa1\x6a\x04\x57\x0b\xd6\x31\xb8\xe3\ \x9a\xb7\x48\x32\x37\x21\x70\x09\xec\x2c\x84\x64\x46\x27\xd9\x73\ \x22\x70\x64\xa4\x60\x40\xdf\xf2\x32\x2c\x5f\x38\x1b\xd7\xfd\xe2\ \x6e\xfa\x74\xf1\x97\x0d\xd8\xff\xf1\xad\xd0\xb9\xfe\xfb\xa0\xcf\ \xfa\x1f\x91\x5d\xd1\xbe\x23\xf9\x39\x30\x10\xcd\x46\x00\x3b\x59\ \xcb\xca\xa9\x5f\x56\xe5\x3c\xbc\xb0\xf2\x2b\xfc\xf2\x8a\xd3\xf0\ \xc0\xac\x0d\x0e\xb4\x96\x41\x2f\xce\xbc\x30\x58\x92\xda\x6a\x70\ \xd6\x80\xf0\x1a\x6f\x25\x6b\xe1\xa2\x59\x0f\x9a\x92\xd3\x3e\x85\ \x61\xe4\xc0\x22\x8c\x1b\x5c\x8c\xd3\x86\x96\xa0\x20\x37\x60\x2d\ \x7e\xe0\xc2\x0c\x43\x24\x26\x1b\xb5\x99\xd6\x27\xf5\x78\x27\xe8\ \x1e\x40\x91\x74\xc4\x39\x21\x9e\x48\xa0\x6a\xe5\x56\x3c\xf1\xd2\ \x6c\x6c\xda\xbe\x1b\x01\xbf\xaa\x0b\x63\x2a\x0a\x7c\x81\x80\x41\ \x91\x76\x97\x05\x9e\x73\x13\x02\x91\x86\x8c\x0c\x21\x19\x8b\x52\ \x42\xfe\x99\x97\x9a\x11\x93\x8d\x53\xf8\x68\x31\x4f\xfb\xb3\x07\ \xbc\x4c\xd0\xd8\x2c\x13\xbd\x11\x41\x5b\xd8\x83\x59\x4d\x6a\x02\ \xd7\x38\x66\x3c\xfb\x18\x66\xcf\x5f\x8a\x45\x5f\xad\x65\x68\xad\ \x9a\x0a\x60\xa7\x61\x1b\xd1\x23\x65\xfc\x47\x3a\x03\x30\x2f\x3f\ \x80\x3c\x00\x83\x58\xce\xa0\xff\x40\xfe\xa9\xbf\x9e\x35\x6d\x2a\ \xf9\x73\x8a\xd9\xb3\xf3\xb6\xba\x3c\xbf\x54\x87\x1b\xc4\x0c\xf2\ \xd0\x85\xb7\xce\x92\xcc\xb1\xd6\x34\xae\xf7\xd7\x35\x0d\x85\xb9\ \x19\x38\xa5\x7f\x2f\x8c\xe8\x57\x88\x93\xcb\x0a\x90\x9b\xe5\x47\ \x6e\x96\x1f\x39\x99\x7e\x1b\xc1\x27\x79\x11\x63\x4f\xa2\x7a\x4f\ \xfe\xcf\xeb\xdf\xc7\x9b\x33\x10\xe7\xe9\xbb\x22\x1c\x6f\x7c\xb8\ \x08\xf3\x3e\x5f\x8e\x5d\xf5\x07\xd0\xde\xd1\x09\x55\x65\xb0\xf4\ \x43\xb8\x3c\x0b\x61\x41\x79\x4e\x02\x95\x15\x65\xbd\xe6\x26\x48\ \xa0\x4a\x27\x8f\xf4\xf6\xcf\xe0\xc6\xcf\x10\xa3\xba\x33\x92\x9b\ \x33\x14\x42\x66\xe1\xc0\x9c\x44\x0e\x07\xe7\xc2\x7d\x05\x22\x98\ \x33\x13\x35\xef\xab\x69\x09\xcc\x7c\xee\x09\x94\x95\x9d\x44\xdf\ \xf9\xd1\xff\x63\x68\x5b\xff\x24\x85\x76\x1c\xd1\xba\xff\xdb\xca\ \x00\xcc\x2b\x61\xe0\x01\x7b\x28\xb4\x63\x8e\x2f\xbb\xef\x84\xdf\ \xff\x75\xea\xb8\x8f\x5e\x79\x16\x17\x9e\x5a\x82\x8f\x57\xef\x85\ \x5f\x65\xee\x68\x2e\x8c\xc8\x39\xa4\xe7\xf4\xd9\x7d\x22\x70\x4d\ \x67\x11\x16\x64\x07\x51\x98\x1b\x44\xaf\xdc\x00\x06\x94\xe4\x62\ \x50\x59\x3e\x06\x57\xe4\x23\x3f\x5b\x85\xc6\x81\x04\xd7\x85\x27\ \x4d\x23\x37\xa7\xdb\x98\x30\x24\xff\x4d\x25\xc8\x92\xfd\xff\xf1\ \x5a\xeb\x13\x11\x7c\xaa\xce\xc6\xab\xde\xd3\x82\xf5\x5b\x76\xe1\ \xc3\x4f\x97\xe1\xd3\xa5\xab\xe1\x53\x55\xf8\x7d\x2a\x00\x82\x5f\ \x55\x2d\x43\x36\xa3\x21\x73\xa2\xe7\x24\x70\x38\x2c\x23\x23\x57\ \x67\xc6\x8e\xf8\xe4\x88\xf4\xdc\xb3\xc3\xc3\xa4\x9f\xe1\xad\xd3\ \xe7\x12\xeb\x20\x3b\x09\x25\x07\xe2\xe4\x3a\x0b\x87\x08\x88\x47\ \x12\xc2\x00\xc4\x62\x31\xfc\xfb\xb5\x57\xe1\x92\x0b\x26\xe2\x9c\ \x6b\x6f\x63\x6a\xa2\x6d\x55\x22\xb4\xe3\x43\xa3\xee\x0f\x1d\xa9\ \xba\xff\xdb\xce\x00\x44\x3c\xa0\x14\xc0\x28\xa5\xf4\xb2\xe9\xa7\ \x8d\x3d\xbd\xf8\xed\x67\xef\xa7\xe7\xe7\xed\x60\xab\x6b\x9a\x1d\ \x9d\x01\x32\xe8\xc2\xf6\x62\x08\x26\xd4\x78\x85\xb9\x41\x8c\x19\ \x58\x88\xd1\x03\x8b\x30\xec\xa4\x02\xa8\xaa\xad\x3a\x93\x6c\xca\ \xb0\xbb\x48\x9e\x0a\xad\x3f\x1c\x5a\x05\xc7\x72\xc4\x9f\xf7\x79\ \x15\x9e\x9a\xf9\x01\x0e\x34\xb7\x59\xaa\xc4\x3d\x89\xe4\x66\xbb\ \xce\x39\xd5\x28\x76\x6e\xec\x28\x6b\x9c\x65\xc2\x4c\x3d\x97\x3b\ \x42\x52\x36\x61\x65\x92\xa9\xbb\x47\xba\xc0\x8a\x4d\xff\xb6\x4a\ \x3a\x81\xea\x4b\x02\x16\x65\x95\x90\xd6\xff\x03\x5e\x74\x63\xf3\ \x67\x89\xfb\x07\x27\x9c\x75\x06\x3e\x78\xfd\x69\xba\xe4\xfa\xc9\ \x6c\xd9\x8a\xaa\x06\xbe\x6f\xc1\xad\x00\xd6\x1d\xe9\xba\xff\xdb\ \xce\x00\x9c\x78\xc0\x0e\x6a\x59\xf9\xc0\xea\xf5\x59\x8f\x3f\xf4\ \xdc\xab\xec\x0f\xbf\xba\x09\x77\xbc\xd8\x81\x50\x57\x5c\xdf\xa3\ \x6e\x48\x55\x13\x71\xf4\xeb\x93\x8d\x93\x4b\x73\x31\xb0\x34\x17\ \x25\xf9\x19\x28\xc8\x09\xa0\x57\x4e\x10\x59\x41\x05\x9c\xcc\x96\ \x9b\xb7\x8f\xfb\x57\x56\x71\x7d\x53\xa9\xef\xe3\x09\xe5\x17\xfb\ \xf4\x7b\x0f\x74\xe2\xbd\xf9\x5f\xa1\x72\xe5\x26\x6c\xde\xb1\x07\ \xe1\x48\x04\x7e\x55\x31\x64\xc9\x49\xa0\x5b\xc3\x25\x75\xc5\x9c\ \x28\xbb\x07\x7a\xef\x85\xbc\x27\xeb\xaf\x13\x73\xcf\xd4\xbb\xf4\ \xf7\x52\x70\x7d\x2c\x1e\x01\x51\x8a\x7e\x90\x88\x3e\x39\x14\x3f\ \x1d\x83\x42\xe2\x94\xa1\x29\x06\xca\x35\x8e\xf2\xb2\x12\xbc\xfb\ \xf2\xd3\x98\xfc\xd0\x4c\xb6\x7c\xf5\x26\x50\xcb\xca\x07\x8d\xb4\ \xff\x88\xd7\xfd\x47\x83\x03\x30\xdd\x65\x18\x40\x3d\x45\x1b\x17\ \x6b\x8d\x95\x77\x4d\x7b\x29\x72\x57\x61\x41\x1e\xbb\xf7\xc7\x93\ \xd8\xe3\xef\x6f\x40\xaf\x9c\x00\x06\x97\xe7\x61\x48\x69\x0e\x4e\ \x2e\xcf\x06\x83\xdd\x5b\x17\x49\x34\x71\xad\xe7\x06\xf9\x4d\x0d\ \xde\x6b\x83\x4f\x4f\x90\xfc\x43\xbd\x77\xe0\x48\x47\x77\xf3\x79\ \xd6\xed\x6b\xc5\x86\x6d\xbb\xf1\xc6\xdc\x2f\xb0\x6c\xcd\x36\x64\ \x04\x74\xf9\x6b\x4e\x84\x80\x4f\x95\xa2\xac\xf5\x1e\x72\x71\x0f\ \x00\x79\x40\xb3\x24\xb7\xdb\x48\x20\xeb\x10\x87\xcb\x2e\x9d\x3c\ \x7a\xd7\xdc\x48\x8a\xb3\x02\xa5\xdb\xc3\x37\xb9\xa6\xfa\x88\x79\ \x0f\x7e\xba\x00\x47\x89\x56\xee\xa6\x21\x83\x08\x7d\x8a\x0a\xb1\ \x62\xe1\x1c\x3c\x35\x63\x0e\xfd\xcf\xb3\xaf\x13\xeb\xac\xba\x87\ \xa2\x8d\x8b\xa1\x8f\xf9\x86\x71\x18\xa9\xbe\x47\x6b\x09\x20\xfe\ \x7c\x3f\x80\x02\x1d\x14\x1c\x78\x03\xe5\x8f\xf9\xcd\xb4\x29\x93\ \x71\xc9\x84\xf1\x12\x75\x5a\xa4\x6e\xa6\x6a\xbb\x79\x19\x56\x77\ \x12\x64\xdd\xed\xf7\xfb\x26\x69\xfd\xc1\x3e\xee\x68\xbb\x4c\x85\ \xa6\xd7\x3f\x58\x82\x19\xef\x7d\x8a\xce\x70\x14\x09\x5d\xd9\xd3\ \x22\xc8\x30\x71\x02\xd2\xf2\xe9\xee\xa9\x46\x18\x04\x1b\x6e\xa4\ \xdb\x76\xaa\xef\x16\xc7\x30\x41\x3d\x3b\x75\x16\xce\x5a\x09\xb8\ \x70\x96\xdb\x6a\x47\xf6\x00\x0e\xf7\x9c\xac\xd4\x1f\xc7\x04\xb2\ \x19\x09\xa0\xa4\x23\x7d\x07\xb7\xcf\x12\xb9\xda\xc7\xd2\x59\x43\ \x04\x84\x71\xf3\x71\x64\xbd\xde\x68\x34\x8a\x4d\x4b\x3f\x41\xd5\ \xfa\xed\xb8\xe9\xb7\xf7\x83\xb5\xaf\x79\x8a\x42\xd5\xff\x30\xa2\ \x7f\x2b\x8e\x00\xdb\xef\x68\x76\x00\xe6\x73\x08\x40\x57\x11\x1a\ \xa4\x16\x9c\xfa\x0b\x2d\x6b\xd0\x4f\x5e\x7d\xe2\x3e\x3a\xe7\xb4\ \x53\x59\x42\x93\x11\xf9\x43\x65\x90\xa2\x04\xd9\xc1\x2c\x09\x4d\ \xa5\x63\xd8\x5d\x19\x70\xb4\x3a\x00\x13\xc8\x0b\x06\x80\x2d\x35\ \x4d\xf8\xb8\x72\x2d\xbe\x5e\xb3\x0d\xab\x36\xd5\x80\x73\x0d\x7e\ \x9f\xe2\x66\x50\x82\x1b\x75\xb3\x9b\x6d\x69\x01\x70\x82\xf1\x71\ \x83\xad\x29\x39\x08\x23\xca\xbb\x1d\x80\xac\xa5\xe7\xe9\x2c\x60\ \x3a\x00\x99\x09\x6a\xc9\x79\x59\x3f\x23\x75\xf7\x48\x44\xf6\x4d\ \xc6\xa7\x9b\x8d\x4a\x96\x0a\x10\x87\x2d\x40\x63\x3b\x21\x59\xcf\ \xcf\x7c\x5c\x34\x16\xc3\x82\x77\x5e\x41\x57\x8c\xe8\x9a\x9f\x4e\ \x66\x6a\x78\xc7\x2b\x5a\xeb\xfa\xe9\x86\xf1\xb7\x40\x1f\xf1\xa5\ \x6f\xdb\xf8\x70\x94\x38\x81\x20\x80\x22\x00\x83\xd4\xa2\xf1\x93\ \x35\xb5\xf8\xf2\x8f\x5e\x7f\x9e\x4e\xee\x57\xe1\x92\x16\x3f\x14\ \x06\x99\x2a\x1b\xf8\x26\xe0\xe0\xc1\x6e\x36\xfe\x36\x71\x01\x2b\ \xbd\x67\x40\x42\xe3\x68\x6a\x0d\x61\xc5\xfa\x9d\x78\xf9\xbd\xcf\ \xb0\x7d\x57\x03\x82\x7e\x15\x8a\xc2\x24\x12\x96\x6d\x44\x26\x8f\ \x82\x7a\x48\xb7\x26\xc7\x62\x8c\x64\xa2\x99\x64\xcf\xea\x5b\xa5\ \x80\x98\x4d\x70\x0f\x23\xe3\xb6\x21\x93\xb8\xaa\x8c\x7b\x38\x2c\ \x72\x6f\x41\x72\xb6\x9a\x25\x43\xe6\x16\x1f\xc0\xa6\x21\xcb\x42\ \xae\xd2\x7d\xcd\x41\x24\xc3\x41\x24\xb4\x04\xa6\x3d\x7a\x1f\x46\ \x8d\x1c\x45\x67\x5e\x71\x0b\x53\xb5\xfd\xf3\xb5\xa6\xe5\xf7\x1b\ \xc6\xdf\xf4\x6d\xd6\xfd\x47\xa3\x03\x00\x74\xf1\x9f\x20\x74\x55\ \xe1\x11\x6a\x9f\x89\x77\xe5\x14\xf6\x3f\x67\xd1\x5b\x2f\x50\x76\ \x56\x26\x3b\x5a\xd3\xfa\x64\xcf\xa5\x27\xa0\xe0\x91\x76\x02\xa6\ \xe1\x07\xfc\x40\x67\x97\x86\x17\xdf\xf9\x0c\xff\x5c\xb4\x0a\x1d\ \xe1\x08\x62\xb1\xb8\xc0\xa9\x22\x10\x73\xcf\x53\x98\xab\xbb\x99\ \x20\x63\x66\x1a\xa7\x3b\x92\x0b\xe2\x18\x82\xde\x1d\x59\x6a\x3c\ \xee\x0d\x46\xa6\xe2\x12\x27\x92\xb9\xfe\xf0\x12\xe0\x20\xbb\x9d\ \x68\x6a\x33\x12\x59\x1a\x12\x29\x45\x40\x48\x37\x53\x46\x24\x8b\ \x75\x08\x0e\x40\xdc\xa2\xe4\x54\x7d\x26\xc7\xea\x72\xa7\x08\x48\ \xa4\xab\x0b\x8f\xde\x3b\x19\x3f\x9c\x74\x15\x8d\xbe\xec\xe7\x2c\ \xd4\xbc\x6b\xa9\x76\x60\xc9\x3d\x00\x36\x41\x57\xf5\x3d\xac\x23\ \xbe\xc7\xaa\x03\x30\x9d\x40\x06\x80\x12\x00\xc3\x94\xe2\xf3\xa6\ \xe4\x15\xf6\x3b\xed\xa3\x57\x9e\xa6\xc2\x82\x7c\x83\x52\xcd\x0e\ \x79\x5a\x7f\xb0\xed\xba\xee\xd2\xfa\x83\x25\x0b\x1d\x76\xa4\x57\ \xd5\xff\xac\xdf\xde\x80\xca\x55\x5b\x51\x59\xb5\x05\x55\x1b\x6b\ \x10\xf0\xa9\x46\x7a\xef\xa4\x5b\xcb\x51\x94\x93\x23\x05\x26\x24\ \xa1\x5b\x8b\x8a\x37\x49\xce\x7a\xc8\x62\x9b\x5b\x85\xed\x61\x9f\ \x14\x4a\x3a\xe4\x30\x4e\xaf\xb3\xd6\xf6\x5d\xd9\x09\x25\x8d\xe4\ \xf0\x56\xe8\x61\x8e\xd6\xa5\xe8\x64\xa4\xfb\x0a\x4e\x31\x1e\x4f\ \xe0\xd1\x7b\xfe\x88\x49\xdf\xbd\x9c\x4e\xbb\xfc\x16\xd6\xd6\xbc\ \x7b\x25\xdf\xff\xc5\x9f\x00\x6c\x01\xd0\x80\x43\xb8\xd4\xe3\x78\ \x74\x00\xa6\x13\xc8\x82\xc1\x11\xf0\x95\x5f\xf9\x6c\xdf\xbe\x03\ \x4a\x17\xbc\xfa\xac\x01\xc0\xba\x47\x68\x0f\x95\x41\x1e\xaa\xb4\ \xbe\xa7\x8f\x3b\x9c\x51\x9e\x01\x88\x6b\x1a\x42\xe1\x28\x3e\xae\ \x5c\x8f\x19\xb3\xbf\x40\x53\x5b\x08\x7e\x9f\x22\xf4\xc8\x49\xe2\ \xcc\x93\xab\xb7\x2d\xac\xac\x26\x13\xe6\xe3\x06\x39\x46\xe4\xd2\ \x73\x77\xbd\x4c\xb2\x03\x70\xaa\xe2\x32\xc1\xc8\xc0\xb8\xc7\x5e\ \x03\x39\x3d\x17\x8d\xcc\x34\x54\x99\xeb\xef\xf1\x1c\x84\x48\xae\ \xab\x3a\xa7\x4e\xe5\x93\xc9\x79\x79\xed\x6f\x90\x32\x16\xe3\x6c\ \x42\x4b\x60\xca\xe4\xdb\x71\xcb\x8d\xd7\xd1\x19\x57\xdd\xc6\x76\ \xef\xae\xd9\x97\xa8\x9f\x77\x1b\xec\x5e\x7f\xf8\x68\x32\xfe\xa3\ \xd5\x01\x00\x80\x6a\x38\x81\x72\x40\x19\xa7\x94\x5e\x32\x75\xf0\ \xa0\x61\x65\x73\x5f\x7e\x12\x00\xb1\x64\x78\x40\x2a\x07\x70\x30\ \x86\xfc\xaf\xa6\xf5\x3d\xcd\x3e\x0e\xb5\xe1\x9b\x7d\xfa\x3d\x0d\ \x21\xcc\x98\x5d\x89\x65\x6b\xb6\xa3\xa9\x35\x84\x68\x3c\x0e\xc5\ \xd8\xf4\x6b\x47\x72\x99\x36\xed\xac\x65\xe5\x3a\xdb\x2b\xcd\xb6\ \x6b\x76\x1b\xb5\xe7\xd6\x8a\x32\xcb\xc8\x2c\xc0\xcc\xe0\xed\x5b\ \xa8\x3d\x17\x84\x5c\xdd\x0b\x55\x48\x18\x06\x73\x82\x76\x4e\x67\ \x61\x15\x23\x56\xaa\xef\x76\x00\x24\x08\xcb\xb8\xc6\x76\xad\x48\ \x2e\xa7\xfd\xf0\x94\x6f\x87\xb4\xed\xc9\x7c\x0e\xe1\xce\x30\x9e\ \x7f\x7c\x0a\x7e\x38\xe9\x72\x9a\xf0\xfd\xdf\x62\xf3\xd6\x2d\x7b\ \x69\xdf\x27\xb7\x03\x7c\x95\xd0\xee\xd3\x8e\x36\x43\x3b\x9a\x29\ \x2a\x2a\x80\x1c\x00\x15\x50\x32\xce\x52\x8a\xcf\xbf\xaf\x7f\xff\ \x41\xe5\x6f\x3c\x7d\x3f\x15\xf5\x2a\x48\xba\x68\x44\x34\xc0\x43\ \x59\x0e\x1c\x4c\x5a\x9f\xaa\x34\x39\xd4\x0e\xc0\xa7\xea\xf7\xde\ \xb8\x73\x1f\xaa\x36\xd4\x60\x7e\xe5\x7a\x6c\xdc\x5e\x87\x8c\x0c\ \x3f\x7c\x8a\x22\x03\x5f\xd4\x0d\x98\xe5\x4c\xfb\x93\x44\x40\x0b\ \xf0\x93\xa6\x37\x93\x18\x27\x39\x32\x04\x4a\x61\x9c\x82\xf0\xaa\ \xb8\xed\x08\xce\xb4\x5f\x98\x0c\x35\xdf\x64\xc9\x90\x89\x5b\xc2\ \xb2\x24\x45\x72\xf1\xac\xe8\x00\x04\x70\xd3\x3c\x6b\xf0\x0b\x2c\ \xc5\x21\xd8\xa2\xae\x64\xbc\x3e\x33\x0b\xe1\x9c\xe3\xa9\x07\xee\ \xc2\xc5\x17\x4c\xa4\x4b\xae\xff\x3d\xab\xae\xd9\x51\x4f\xfb\x17\ \xff\x19\x3c\xb2\x0c\xba\xae\x5f\xe8\x68\x34\xfe\xa3\xdd\x01\xc8\ \x4e\x00\xca\x68\x5f\xf9\xe5\x8f\xe7\xe4\x15\x96\x2e\x7e\xfb\x05\ \xca\xca\xcc\x64\x8c\xf5\x8c\xe6\x7b\xb8\xb3\x81\x7f\x35\x8b\x38\ \xd8\xf4\x1e\x00\x34\xce\x11\xee\x8a\xe1\xed\xf9\x55\x78\x63\xde\ \x32\xc4\x12\x09\x07\x88\xe7\x06\xed\xa4\xb4\x96\x52\x80\x59\xce\ \x7a\x99\x91\x6b\x9c\xd5\xab\x5e\x36\x53\x79\x08\x88\x7f\xaa\x7a\ \x99\x13\x17\xa2\xac\x70\xd6\xe9\x00\x44\x67\xc1\x1c\xcf\xa1\x9b\ \x48\x9e\x54\x04\xc4\xf1\x3a\x88\xe4\x16\xa5\xf7\x40\x11\xb7\x77\ \x39\x1a\xef\x71\x2c\x1a\xc5\xb4\x47\xef\xc3\xa5\x17\x4c\xa0\xb1\ \x97\xff\x9c\x75\xb4\x37\xef\x4b\xd4\xcf\xff\x1d\xc0\xd7\x1e\xed\ \xc6\x7f\x2c\x38\x00\xd1\x09\x94\x02\x18\xa9\x14\x9f\xf7\xa7\xdc\ \x5e\xfd\x4e\x7b\xfb\xb9\x87\x68\xe8\xc0\x0a\x26\xae\xa9\xfa\x57\ \xeb\xf3\x83\xed\xdd\x1f\x0a\x70\xf0\x60\xfa\xf4\x99\x41\x60\xed\ \xb6\x46\xcc\xfa\x64\x25\xd6\x6d\xad\xc3\x9e\x86\x66\x43\xa8\x84\ \x49\x80\x9a\x95\x92\x53\x0a\x30\x4b\xea\x7d\x53\xf2\x3a\xdb\xb5\ \x8b\x10\xae\x85\xa7\x66\x44\xb5\xc8\x40\xe6\xdc\xbe\xb3\x0e\x87\ \xe3\xac\x34\xb7\x0f\x4b\x04\x04\x02\x91\xc6\x7e\x0e\x1e\x53\x7b\ \x86\x7c\x1c\xe3\xe8\xc1\xeb\xe4\x82\x0c\xbd\x3c\xb5\x27\x69\x00\ \x20\x99\x76\x80\xed\x44\x4c\x8e\x7f\x38\x1c\xc6\xec\x57\xa6\xa1\ \xa2\xbc\x82\x2e\xb9\xe1\x76\xd6\xd1\xb2\x7b\x25\xdf\xff\xc5\x14\ \x00\x1b\x8c\x9a\xff\xa8\x36\xfe\x63\xc5\x01\x88\x98\x40\x09\x80\ \xc1\x6a\x9f\x89\xff\xad\xb1\xfc\x73\x5e\x7f\xee\x41\x3a\xd7\x83\ \x2c\x74\xa8\xd3\xfa\x64\xf7\xf0\x4a\xeb\x0f\xd6\xf9\xa4\x8a\xf4\ \x3e\x15\x88\xc6\x38\xaa\xeb\x9a\xf0\xf5\xfa\x1a\xbc\xb7\x70\x15\ \xf6\x34\xb4\x20\x23\xe8\x87\x6a\xcc\xc3\xa7\x04\xb3\xa4\xc1\xa9\ \x6e\xc0\x2c\xa1\x87\x9d\x6c\x19\x29\x87\x87\x58\x87\xf3\xbe\xe2\ \x59\xe3\x67\xcb\x6d\x3d\xee\xf9\x1c\xa4\xfb\x3a\xd7\xaf\x39\x85\ \x3d\x5c\x7b\x18\x6c\x9e\xaf\xb4\x10\x35\x95\x08\x88\x95\x4d\xc8\ \x83\x45\xf6\x5a\x37\xee\x18\xe6\xb1\x1d\x80\xa6\x71\x14\xf5\x2a\ \xc0\x9c\x57\x9f\x47\xfd\xfe\x16\xba\xfa\xa6\x3b\x99\x4a\x6d\x4b\ \xb5\x03\x4b\xee\x85\xae\xe7\xd7\x70\xb4\xd6\xfc\xc7\xaa\x03\x30\ \x9d\x40\xa6\xc1\x13\x18\xaa\x16\x8d\xff\x9d\x16\x2c\xbf\xfc\x85\ \x07\xff\x84\x4b\xce\x1b\x6f\x6d\xaa\x4d\x65\x90\x07\x53\x9f\x1f\ \xa9\x72\x20\xd9\x2f\xa5\xa9\xad\x13\x2f\xcf\x59\x86\x05\x4b\x37\ \x81\x6b\xdc\x95\x2e\x4b\xf5\x32\x52\x80\x59\x52\xbd\x6c\x18\x27\ \xf3\x48\x81\xa5\xf6\x9b\x63\xeb\xb0\xc7\x2e\x42\x72\x28\xf0\x48\ \x8b\xaf\x84\x54\x5e\xaa\x97\x1d\x34\x5d\x78\xec\x43\x24\x24\x99\ \xd5\x17\x5e\xa7\x8b\x86\xec\x8c\xe4\x4c\x4c\xf5\x53\x47\x72\x7b\ \x83\xb3\x63\xc1\x8b\xe3\x3d\xb6\x72\x03\x22\x94\x97\x95\x60\xe9\ \xdc\x37\xf0\xd1\xa2\xe5\xb8\xe9\xb7\x53\xa0\x46\xeb\xe7\x6b\x4d\ \xcb\x1f\x87\xbe\xbf\xef\x00\xf4\xc9\x3e\xed\x58\x31\xaa\x63\xe5\ \x22\xe8\x5a\x02\x51\x00\x61\xea\xaa\x5f\xa7\xaa\x7e\xf5\xfd\xc5\ \x1b\xc6\xe4\x66\x65\xd1\x79\x67\x0e\x63\xf2\xca\x2b\xf7\x57\x2f\ \x43\x4f\x96\x01\x78\x7d\xbf\x27\x23\xc1\x07\xfb\x38\x22\x82\xdf\ \xa7\xa3\xf7\x55\x1b\xeb\xf1\xea\xdc\xe5\x98\x3e\xab\x12\xd3\x67\ \x7d\x89\x6d\xbb\xf7\x7b\xac\x8f\x15\x55\x71\xed\xed\xc3\x64\x6e\ \x54\x32\xfe\x57\x9c\x6b\x67\x4c\x1c\xb4\xb1\x65\xcb\xcd\xd9\x0a\ \xe6\x92\xd5\x13\xd4\x71\x98\x38\x05\xcf\x2c\x40\x4c\x7e\x4a\xf2\ \x96\x62\x6b\xa4\x9f\xc8\x5e\x00\x23\x4c\xcf\x89\x23\xfe\xcc\xa1\ \xaa\xc3\xe0\x7e\xad\xf6\x93\x86\x00\x58\x3a\x56\x78\xb9\x44\x22\ \xec\xd7\xc2\x5c\x13\x83\xe4\x5a\xe9\x47\xc6\xcd\xdc\x0a\x43\xf6\ \x22\x90\x48\x34\x86\x6b\x2e\xbb\x08\x73\x5f\x7b\x06\xcf\xcc\x98\ \x43\xbf\xf9\xcb\x53\x3a\xbd\xb7\x65\xf5\x93\x46\xe4\x37\x8d\x9f\ \x1f\x4b\x51\x15\xc7\x98\x13\xd0\xa0\x93\x29\x22\x14\xd9\xbf\x83\ \x51\xb4\x73\xf1\xf2\xea\xf1\x9d\x51\xb0\x89\x67\x8e\xb6\x3e\xe7\ \xc9\x8c\xae\x3b\x9a\x6f\x32\xb4\xbe\xbb\xa8\xde\xdd\xe3\xec\xef\ \xeb\xe9\xbd\xaa\x02\x5d\xd1\x38\xf6\x36\xb6\x63\xd6\xc2\x75\xf8\ \xaf\x27\x3e\xc4\x9c\xcf\xd7\xa1\xa6\xbe\x19\xa1\x70\x04\x8a\xa2\ \x80\x29\xb6\x29\x33\x72\x1b\x8b\xa5\x8c\xce\x4c\x23\x64\xf6\x82\ \x12\x71\x1e\xd6\x65\x9c\x64\x1b\x1c\x23\x69\x7b\x86\x24\xc8\x6a\ \x21\xe3\xa6\x21\x3b\x47\x66\xc9\x61\x9c\x82\xb0\x87\xe4\x51\xdc\ \xc2\x1e\xf6\x6a\x73\xb2\x85\x5f\x4d\xd5\x5c\x87\xf1\x5b\xb7\x10\ \x1d\x99\x30\xb5\x27\xbe\x38\xd7\xeb\x14\x7e\x67\xa9\x84\x3d\x4c\ \x87\x45\x2e\x81\x4f\xfd\x1f\x1a\xd7\xf0\xd3\x1b\xfe\x0d\xcf\x3e\ \xfc\x47\xfa\xcb\xa3\x33\xd9\x03\x8f\xbd\x44\x2c\xbc\xe1\x69\xde\ \xbe\xf5\x15\x00\xd5\xb0\xc7\x7a\xf9\xb1\x64\x50\x3e\x1c\x7b\x17\ \x87\x3e\x44\xd1\x04\x40\xa3\x50\xf5\x3f\x58\x22\xd4\x38\xfd\xb5\ \x8c\x7b\x96\xaf\xdd\xc8\xde\x7c\xe6\x7e\xc3\x6b\xb3\x94\x60\x5b\ \xb2\x39\xfd\x64\xdf\xeb\x6e\xb4\xb8\xbb\xc7\x99\x7d\x7a\xbf\x8f\ \x61\xe7\x9e\x56\xbc\xf8\xfe\xd7\x58\xbd\x79\x0f\x62\xf1\x04\x34\ \x43\x80\x30\x23\xe8\x37\xc4\x2f\x7a\x50\x9f\x51\xea\x5a\x4e\x8a\ \x70\x49\x46\x60\xad\xb3\x4e\x49\x66\x2e\x1a\x4c\xaa\x9f\xcd\x04\ \xbd\xfd\x24\x4f\xcc\xfa\xc1\xce\xb3\x8e\xcd\xbb\x8e\x4d\x9b\xee\ \x19\x7f\x4a\xf2\x7c\xc8\xb1\x88\x25\xc5\x59\xb2\xa9\xbe\xe6\x03\ \xbc\x77\x47\x89\xbc\x02\xbd\x44\x99\xf6\xe8\xbd\xf8\xee\xc5\xe7\ \xe3\xb2\x1b\x26\xb3\xe5\xab\x37\x81\x75\x56\xdd\x43\x91\x03\x1f\ \x1b\xc6\xdf\x6a\x7c\x26\xf9\xb1\x66\x4c\xc7\xa2\x03\x30\x9d\x40\ \x14\xfa\x44\x95\x46\x91\x03\x51\xed\xc0\x92\xf6\xaa\x55\xe1\x3f\ \x5e\x7c\xc3\x6d\xc5\x4f\xdc\xfd\x7b\x1a\x77\xca\x60\x0b\x1c\x4c\ \x65\xc8\x07\xe3\x1c\x0e\xe6\x71\x16\xef\xde\xa7\x97\xaf\x5f\xad\ \xdb\x83\x2f\xd7\xee\x42\xd5\xc6\x3d\xd8\xd3\xd0\x02\x9f\x4f\x85\ \xaa\x08\xa2\x91\xc2\x2a\x72\xa3\x70\xf6\x8a\x83\x1e\x36\xe8\x3d\ \x3b\x2f\xca\x6e\x49\x9b\xae\x99\x5b\x3a\xdd\x2d\xd1\x05\x69\xe7\ \xa2\xc7\xb7\x65\x01\xd7\x14\xb3\xf3\x92\x5d\x8b\xe9\x76\x0f\x44\ \x40\x00\xb8\xc4\x45\xe4\x6d\x50\x1e\xef\x49\xd2\xd7\x29\xbf\x93\ \x8c\xe4\xc5\xad\xcc\xa5\x0e\xc0\xc1\xb9\x86\x93\xca\x4b\x31\xed\ \xe1\xbb\x01\xc5\x4f\x67\x4f\xba\x8d\x55\x57\xef\x68\xa0\x96\x95\ \x0f\x1a\xf3\xfc\xb5\xd0\xf7\x5f\x7e\xeb\x53\x7d\x27\x02\x08\x98\ \xec\xf9\xfb\x8d\x36\x61\x39\x80\x41\xbe\x92\x0b\xef\xd2\x7c\xf9\ \xe3\x9e\xbd\xef\xff\xe3\xf2\x0b\xce\x31\xd2\x73\x71\xcd\x56\xcf\ \x3a\x00\x3d\x69\xf9\xb9\x5b\x80\xf6\x1e\xbb\x70\x24\x8e\x96\xf6\ \x2e\xcc\x5e\xb4\x01\x73\x16\x6d\x30\x5a\x79\x8a\x00\x3a\x71\x61\ \xf1\xb7\x03\xcc\x72\x48\x69\x49\xe0\x1b\x25\x01\xb3\x9c\x3d\x77\ \x97\xa4\xb5\xbc\xd9\xd8\x66\xf2\x09\xed\x39\x11\xb4\x13\x47\x6a\ \x85\xb3\x62\xdb\xd0\x06\xed\x6c\x29\x2d\x32\x36\x33\x33\x27\x5b\ \x90\xdc\x52\x5a\x24\xd0\x8d\x49\x40\xf0\xad\xc1\x1d\x0f\xba\xb1\ \xa4\x33\x40\x1c\x70\x4c\x14\xc2\x68\x2f\x3a\x75\x06\x60\x72\x1f\ \x9c\x34\x64\xc7\xeb\x84\xd1\xd9\x20\x22\x9c\x33\x7e\x2c\xde\x7c\ \xfe\x11\xcc\x5e\xb0\x14\xb7\xdc\xf1\x10\xd4\x44\xdb\xaa\x44\xc3\ \xe7\xf7\x40\x9f\xe8\xab\x37\xda\x7c\xf1\x63\xd5\xf8\x8f\x07\x07\ \x60\xbe\x06\xb3\x4d\xd8\x1b\xba\xda\xf0\x24\xa5\x60\xf4\xaf\x27\ \x8e\x1f\x4d\x6f\x3d\x77\x37\xeb\x8a\x1c\xac\x21\xa7\x1e\x33\x76\ \x67\x07\xba\xee\x7d\xd0\x0f\x54\x6d\xde\x8f\xd7\xe6\xaf\x42\x4d\ \x5d\x0b\x3a\x3a\x23\xc6\x68\xab\xd8\x5e\x73\x28\xda\x8a\x7a\xf3\ \x29\xd4\x64\x5d\x67\x85\x91\x5a\xe7\x59\x4b\x80\x83\x92\x2b\xda\ \x8a\x86\x21\xce\x06\x88\x23\xb5\xce\xa9\x3d\x18\xc8\x3e\x87\x63\ \x56\x1f\xc9\x04\x38\x6c\xbc\xc1\xd6\x0e\xe8\x89\x08\x88\xd3\xa8\ \xc5\x1d\x11\xdc\x56\xe0\x91\x76\x44\x18\xfa\x02\xa6\xad\x33\x12\ \xf4\xfc\x1c\x33\xfe\xc9\x76\x4f\x18\xef\x61\x34\x1a\xc5\x4b\xff\ \x33\x05\x93\x2e\x3f\x17\x93\x7e\x76\x37\x2d\xfa\x6a\x2d\xe3\xad\ \x6b\x9f\xa2\xd0\x8e\x0f\x60\xcb\x78\x99\x6d\x3e\x3a\x96\x8d\xc7\ \x77\x1c\x38\x00\x13\x18\xec\x34\xbb\x04\x14\xda\xd1\xc6\x63\xad\ \xbb\x17\x55\x86\x6e\x1f\x73\xf9\x2d\x25\x7f\x7b\x78\x32\x9d\x3e\ \x6a\x10\x8b\xc6\xbc\x99\x83\xa9\xea\x78\x2f\x90\xcf\x4c\x40\x03\ \x3e\xa0\x33\xa2\x61\xcd\xb6\x7d\x58\xbe\xb1\x16\x4b\xd6\xec\x42\ \x53\x6b\x27\x02\x7e\x15\x8a\xf1\xb9\x50\x98\xd4\x1d\x13\xbc\x2e\ \xb9\xeb\x70\x01\x2d\x4f\x79\xd6\xaa\xd5\x93\xab\xd4\x4a\x9b\x6e\ \x53\xe9\xf2\xc1\xb1\xe9\xd6\xf1\x1c\x3c\xcf\x26\xdd\x88\xeb\xf1\ \xab\x21\xbb\x1b\xd1\xfd\xaf\xd1\x51\x4a\x71\x51\xab\xdf\xee\x43\ \x88\xa5\xb6\xb4\x34\x96\x98\xed\xb0\x92\x9d\x35\x9f\x0c\xd9\x08\ \x82\xf9\xfd\x44\x22\x81\x53\x86\x0e\xc2\x0b\x53\xef\x45\x6b\x47\ \x17\x0d\x39\xff\x16\xb6\xb7\xbe\xb6\x01\xad\x55\x53\x11\x6b\x5e\ \x0c\x9d\xd9\xd7\x22\x80\x7d\x74\xac\x1b\x8f\x8a\xe3\xe7\x92\xda\ \x84\xd0\xba\x1a\xd0\xb9\xb3\x32\x82\xdc\xe1\xaf\xbe\xbb\xb0\xac\ \x77\x61\x6f\x8c\x1a\x3e\x08\x3d\x19\x24\x72\x7f\x95\xb1\x84\x78\ \x82\x63\x5f\x73\x08\xcf\xbd\xbb\x1c\x0f\xcf\xfc\x02\x5f\xac\xae\ \xc6\xce\xba\x16\xc4\x13\x1a\xfc\x8a\x02\x66\x2d\xb1\x24\x77\x6b\ \xcc\xa0\xd5\x32\x8f\x82\xdb\xd9\xda\x62\x44\x7a\xcf\xde\x65\x54\ \x24\x6b\xd0\x49\x3c\x7b\x13\xf6\x26\x61\xdf\xa9\xb1\x69\x99\xd9\ \x8b\x2e\xcd\x07\xba\x1d\x8c\xbc\xa9\x99\x91\x7c\x96\x08\xb2\x74\ \xb7\xb9\xa1\xc7\xf1\x7d\x13\xd3\x70\x3e\x77\xf2\xd2\x5b\x84\x7c\ \x96\x04\xc4\x5f\x5a\xe1\x2e\x76\x02\x1c\x4e\x4a\x34\x64\x0b\x2f\ \x60\x62\x8d\x2f\x9f\x65\x24\x77\x29\x18\x80\xcb\x2f\x9a\x88\x37\ \x9e\x7f\x14\xef\x7d\x54\x89\x1b\x7f\x79\x17\x8b\x74\xee\x5d\xc5\ \xf7\x7f\x76\x27\xb4\xae\xe5\x00\x76\x1b\x60\xdf\x31\x87\xf4\x1f\ \xef\x25\x40\xb2\x92\x20\xdb\x28\x09\x06\x2a\xb9\x83\xbe\x87\xbc\ \x53\x7f\x75\xd6\xd8\x53\xe9\x1f\xcf\xfc\x95\x79\x2d\xea\x4c\x45\ \xec\x09\xf8\x01\xbf\x0f\x58\xb4\xb2\x0e\x1f\x54\x6e\x41\xdd\x81\ \x36\x34\xb7\x75\xe9\x4e\x03\x90\x96\x53\xb8\x35\xe8\x90\xa4\x5e\ \x16\x48\x3a\xc4\x85\x34\x9b\x8c\x15\xd7\x90\xe4\xaf\x65\xa9\x2d\ \xfb\xfb\x76\x7a\xed\x21\x7f\xed\x14\xbc\xf0\x98\xbf\x97\x66\x02\ \x1c\xc4\x1b\xcf\x79\x02\x12\x49\x3d\x94\x5c\x04\xc4\x74\x5e\x5c\ \x98\xa3\xef\xa1\x08\x08\x19\x4e\x8a\x5c\xf2\xdf\xe6\x78\xb2\x41\ \x74\x22\x87\x82\x8f\xf4\x3a\x85\x45\x23\xcc\xc6\x18\xec\x61\x1f\ \xfd\xbd\x4f\x24\x34\xe4\xe6\x64\x63\xc6\x93\x53\x70\xfa\xe8\xe1\ \xb8\xe6\x67\x7f\xa6\xaf\xaa\xd6\x31\xb4\xad\x7f\x92\x87\x76\x7e\ \x60\xa0\xfc\x07\x8e\x97\x94\xff\x78\xce\x00\x9c\x5d\x82\x04\x74\ \x52\x46\x07\xc5\x5a\x6a\x10\x6b\xda\x52\xdf\xca\x46\xcf\x7c\xef\ \x93\x9c\xc1\x03\x2a\xe8\x94\x21\x15\x4c\xd3\xbc\x0c\xde\x6c\xd7\ \x01\xed\x9d\x31\x6c\xac\xde\x8f\x77\x3f\xdf\x82\xfb\x5e\x5e\x82\ \x4f\x57\x56\xa3\xa5\x3d\x8c\x48\x5c\x83\x0a\xe8\x7d\x7a\x49\xf0\ \xc2\x8e\x8a\x22\x9e\xc0\x92\x45\x5b\x49\x16\x9b\x2c\x94\x9b\x5b\ \xe4\x1c\x99\xdc\x62\x23\xe2\xc2\x59\xc6\x04\xd5\x5d\x39\x99\x26\ \xe1\x1e\x32\xc1\x85\xe4\x05\x19\xd2\x6a\x6c\x38\x22\xbd\x63\xa9\ \xb5\x45\xec\x21\x17\xf2\x2f\x46\x72\x12\xda\x89\x5e\x8d\x36\x71\ \x11\x88\x98\x25\xe9\x3c\x09\x59\x7a\x5b\x5c\x05\x2e\x65\x4a\x02\ \xa3\x51\xee\x7a\x92\xeb\x75\x82\x48\xe2\x47\x10\xf4\xd5\x70\x37\ \xff\x68\x12\xfe\xf9\xda\x23\x58\xb1\xae\x86\xae\xbe\x79\x32\xdb\ \xb6\x7d\xdb\x3e\x6a\x5c\x7a\x37\x75\xd5\xcf\x15\xea\xfd\x63\x86\ \xd9\x97\xce\x00\xbc\xbb\x04\xb9\xd0\x87\x89\x86\xaa\xbd\xcf\xfc\ \x15\x65\x54\x5c\x3c\x64\x40\x05\x66\x3d\xff\x20\xe5\xe6\x64\x31\ \x53\x69\x98\x8c\x0f\x7b\xcd\xde\x56\xbc\xfa\xd1\x5a\xac\xaf\x39\ \x60\xa4\xc0\x49\xc4\x24\xe1\x81\x34\x27\x11\x93\x24\xa1\xa6\xb5\ \x10\x6f\x4b\x4d\x96\xbb\x45\x37\xc4\x1a\xd5\x12\xba\x64\x82\xd2\ \x8e\x71\xd6\x8a\xa2\x32\x98\xe5\x8a\xb2\x29\x04\x38\x9c\x62\x9a\ \xd6\xeb\x34\x10\x75\x79\xd0\x26\x85\x00\x87\x43\x04\xc4\x7a\xbd\ \xa2\x08\x08\xeb\x6e\xe0\x28\xc9\x7c\x43\x12\x11\x10\xfb\x67\x08\ \x08\x3f\x4b\xae\x02\x64\x66\x09\xbd\x7b\x15\xe0\x83\x99\x4f\xc3\ \xe7\xf7\xd3\x35\x37\xff\x81\x6d\xad\xae\x03\xeb\xaa\x5b\xa0\x35\ \x7d\xfd\x1c\x80\x6d\xd0\x87\x79\x3a\x8e\x75\x94\xff\x44\x77\x00\ \x62\x49\x90\x09\xa0\x10\x40\x39\x0b\xf6\x3e\x9b\xe5\x8f\xfc\x45\ \x56\x5e\xd9\xf0\x1b\xae\xbd\x94\x1e\xf8\xc3\xcf\x58\x47\x27\xc7\ \x03\x33\x2b\xb1\x6b\x5f\x1b\x5a\x3a\xba\xe0\x53\x14\x40\xe9\x46\ \x4d\x56\x54\x9e\xed\x46\x4d\x96\x3c\x34\xf3\x5c\x62\x92\xe6\x4c\ \xbd\xb4\xb3\x5e\xd0\xb1\xf3\x78\x0e\x4e\x43\x16\x75\xee\xdc\x8a\ \xb6\x82\xb0\x87\xd8\xf2\x12\x52\xf5\xee\x44\x40\x20\xb6\xfc\x1c\ \x02\x1c\x64\xbc\x57\x62\xc7\x83\xac\xcd\xcd\x24\xbd\x4e\x51\x3e\ \x9b\x84\x14\xdf\x86\xf1\x91\x72\x3a\xd1\x62\xf5\x89\x5c\x7f\x0f\ \x9d\x01\x71\x2a\x91\xc0\xa1\x25\x34\x4c\xbd\xe7\x0e\xdc\x78\xdd\ \x77\x70\xe7\xbd\x7f\xa7\x57\x66\x7d\xcc\xc2\xed\x7b\x37\x51\xdb\ \xfa\xe9\x14\x6d\x5a\x66\xb4\xf7\x5a\x8e\xd7\x94\xff\x44\x29\x01\ \xbc\x4a\x02\xcd\x48\xe5\x42\xd0\xc2\x7b\xa9\x73\x57\x65\x42\xe3\ \xb1\xaa\x4d\xf5\x83\xff\xfe\xd6\x82\xe0\x19\xa3\x87\xd1\x8d\xdf\ \x3d\x83\xed\xac\x6b\xc1\x81\xd6\xb0\xd1\xa7\xd7\xf3\x5d\x09\xa0\ \x12\x52\x5d\x2f\xd0\xce\x05\x66\x99\x67\x1d\xc4\x14\x3d\x4d\x26\ \x9b\xcb\xef\x4a\x5f\xbd\xd3\x65\x27\xf0\x25\xf1\xec\x3d\xca\x09\ \x99\xf7\x2f\xdf\x9b\xcc\x72\x82\x33\x8b\xf9\x27\xce\x03\x30\x57\ \xa9\x42\x1e\x69\xb6\xfc\xdc\xec\x63\x3a\x46\x60\x1a\x22\x13\xd0\ \x7c\x06\xb9\x44\x32\x0a\x7a\x8f\x99\x05\x5b\x71\x48\xaa\x4d\x04\ \xe7\x24\xdd\x97\x91\x47\x39\x01\x90\xa6\x41\x55\x15\x9c\x3b\x7e\ \x2c\x16\xbc\xf1\x3c\x42\xe1\x18\x5d\xf8\x83\x3b\xd8\xa2\x2f\x57\ \x74\x24\xda\xb7\xcc\xe4\xcd\x2b\x1e\x85\xd6\xb5\xca\x00\xfa\x5a\ \xa0\x53\xcd\x35\x9c\x20\xd1\xf1\x44\xba\xcc\x6c\x20\x08\x20\x1f\ \x40\x19\xc0\x06\x2b\xbd\xc7\xdf\xaa\x66\x9d\x74\xd1\xe8\xe1\x83\ \x68\xd6\xf4\x07\x58\x34\xae\xe1\xc1\x99\x95\xd8\xb4\xab\x11\xaa\ \xc2\x84\xe8\x63\xa4\xec\xc4\x25\x72\x8c\x9d\x66\x0b\x00\x95\x29\ \x2b\x4d\xe4\x92\x98\x72\x82\x59\x70\x4a\x69\x59\xb5\xb7\xd7\xcf\ \x70\x48\x69\x99\xf5\xb8\x43\xd1\x16\x4e\xf9\xeb\x54\x63\xbb\xce\ \x9d\x8b\xc6\xd4\x9e\xe7\xe8\xb0\x53\x80\x83\x79\xa7\xf2\x26\x79\ \x49\x3a\x4b\x6e\x15\x20\x2f\x11\x10\x7b\x34\xd8\x4b\x04\x44\x9e\ \xda\x73\x9d\x75\x8c\x0e\x6b\x5a\x02\xa3\x47\x0c\xc1\xf3\x8f\xfc\ \x37\x7a\xe5\xe7\xe2\x9a\x9b\xff\x48\x6b\x36\xed\x60\x5a\x67\xed\ \xa7\xbc\x69\xc5\x74\x80\xcc\x74\xbf\xcd\x40\xf8\x8f\xfb\xa8\x7f\ \x22\x66\x00\x5e\xd9\x40\xc4\xa8\xf1\x5a\x28\x5c\xb7\x9c\x62\xad\ \xdb\xf6\xb6\x44\xfb\xff\xed\xcd\x05\x45\x7e\x9f\x42\x0f\xfe\xee\ \x2a\x36\xa4\x6f\x09\x76\xed\x6b\x45\x43\x53\x08\xaa\xc1\xe2\x93\ \x07\x6d\xec\x5d\x78\x4e\xc0\x0c\x42\xa4\xb3\xce\x4a\x11\x8e\x52\ \xb6\xa5\x20\xad\x99\x92\x41\x3b\xe9\xbe\x12\x60\x46\x32\x10\x07\ \xe1\xac\x6b\x24\x8e\xc9\x80\x9a\x23\x92\xc3\xf1\x3a\x45\xe1\x0e\ \xe6\xc8\x84\x98\x6b\x83\xaf\x9d\xa4\x4b\x67\x99\x3d\x21\x28\x9d\ \xf5\x00\x4d\x5d\x54\x5f\x29\xfb\x71\x8e\xf5\x88\xaf\x53\xbf\x47\ \xb8\xab\x0b\x67\x9f\x3e\x0a\x8f\xdd\x73\x07\xee\xb9\xf3\x26\x3c\ \xf9\xe2\x07\x74\xd3\x6f\xa7\xb0\x9a\x9a\xad\xdb\xa8\x65\xd5\x23\ \xd4\xb1\x75\x06\x74\xa5\xde\x3a\xd8\x74\x5e\x0d\x27\x60\x44\x3c\ \x91\x2f\x55\x00\x09\x8b\x01\x54\x28\xf9\x23\x6f\xe2\x59\x03\xae\ \x2b\xec\x55\x98\xf5\xdc\x94\x3b\x71\xde\x99\x23\xb1\x68\x75\x2d\ \xde\xf8\x78\x1d\x1a\x9a\x42\x52\x5a\xeb\x6c\x7d\xb9\x00\xaa\x54\ \x60\x96\xa4\x40\x23\x83\x59\x4e\x5a\xaf\x5c\xb3\x27\x51\xc7\x11\ \x45\x40\xa8\x7b\x45\x5b\x59\x80\x23\xf5\x73\x90\x45\x40\x1c\x62\ \x1d\xd2\x73\x10\xe6\xef\xc9\x43\xd8\x03\xc9\x23\x79\x32\x11\x10\ \x72\x09\x73\x9a\xed\x51\x37\x5b\x90\xb8\xae\x28\xd4\xbf\xa2\x0c\ \x77\xdf\x71\x2b\xce\x3b\x6b\x0c\x16\x2d\x5d\x87\xff\xfc\xaf\x47\ \xd0\xd4\xdc\xdc\xa5\x74\xd5\xbc\xcd\xdb\x36\xbc\x0e\x7d\x1d\xf7\ \x7e\x01\xe4\xd3\x4e\x54\x03\x38\xd1\x1d\x80\x58\x16\x64\x18\x65\ \x41\x29\x98\x7f\x88\x92\x3f\xfc\x3a\x25\x77\xf0\x0f\xf2\x73\x73\ \x70\xc7\x2f\x7f\x8c\x9b\x7f\x78\x05\x76\xd4\xb5\xe0\xfe\x19\x8b\ \xb0\xbf\x29\x64\xf0\xfa\xdd\xa9\xbe\xa4\x41\x67\xa8\x94\x70\x86\ \xe4\x60\x96\x78\xd6\x4b\x80\xc3\x4b\x34\x53\x14\xb4\xf4\x38\x4b\ \x1e\xa9\xbc\x4b\x07\xcf\x4b\xd8\xa3\x27\x22\x20\xdc\x21\xfd\x95\ \x4c\x05\x48\x14\xe0\xf0\x2c\x27\x1c\xc2\x1e\x49\x04\x38\xec\x54\ \x3f\x89\x08\x88\x91\x6d\xc4\x13\x09\xe4\xe7\x64\xe3\xb9\x87\x26\ \xe3\xac\x71\xa7\xe0\xa5\x37\x3f\xc2\x83\xcf\xbc\x8e\xb6\x8e\x10\ \x78\xc7\xf6\x77\x78\xdb\xe6\x59\xa0\xb8\x98\xee\x47\x4e\xb4\x74\ \x3f\xed\x00\x52\x5f\x0a\x74\x6a\x74\x16\xf4\x65\xa5\x7d\xc0\xd4\ \xe1\x6a\xe1\xb8\xef\x69\x4a\xe1\x65\x7d\xfb\x0f\xc8\xb9\xe5\xfa\ \xab\xe8\x57\x3f\x99\xc4\x56\x6f\x3d\x80\x59\x9f\xad\xc7\xd2\x75\ \xbb\x10\xf4\xab\x42\x2f\xdb\xa1\x68\x2b\x19\xa7\x20\x9f\x2d\x45\ \x59\xf2\x36\x64\x72\x28\xf4\x88\x67\x25\x43\x16\x58\x70\x8e\x28\ \x4b\x0e\xf9\x6b\x5b\x6b\x8f\xcb\x5c\x7e\x0f\xd5\x5c\x90\x98\x21\ \x88\x2a\x3e\x36\xcf\x1e\x0e\x82\x8d\xa8\x02\x04\x97\x83\x93\xb7\ \xec\xb8\x66\x21\x92\xcc\x2c\xd8\xd9\x84\x7b\xf1\x87\x96\x48\x20\ \x16\x8b\xe1\x8a\x8b\xce\xc5\x4d\xd7\x5d\x89\x0b\xcf\x1d\x83\xa7\ \x5f\xfa\x80\xa6\xbf\xfe\x21\xdb\x5d\x5d\x13\x52\xa9\x79\x81\xd6\ \xbc\x6a\x36\x48\xdb\x0c\x9d\xcc\xd3\x6a\xa0\xfb\x09\x1c\x47\x6c\ \xbe\xb4\x03\x38\x3c\x65\x41\x86\xe1\x08\x8a\x01\x9c\xa4\x16\x8e\ \xbd\x11\x99\xfd\xae\xd4\x12\x94\xf9\xe8\x5d\xbf\xc1\xbf\x5f\x7d\ \x21\xb5\x75\xc6\xd8\x83\x33\x16\x61\xd7\xbe\x56\x44\x63\x09\x23\ \x55\x26\x97\x04\x15\x79\xa5\xf2\x66\xc4\xf5\x02\xb3\xa4\x4d\xb7\ \x72\xda\xcf\x0d\x03\x48\x6e\xc8\x72\x24\x97\xee\x2b\x9d\x75\x4c\ \xc9\x09\x5d\x05\x4f\x43\x86\x97\x71\x3a\xa6\xf6\xa4\x96\xa7\xc1\ \x93\x20\x47\x89\x20\xa5\xfa\xdc\x12\x07\x15\x25\xc5\x44\x6e\x02\ \xf3\xc8\x58\x88\x73\x64\x66\x06\x31\x7e\xcc\x08\x3c\x76\xd7\xef\ \xe0\xf7\xfb\xe8\xcd\x39\x9f\xb1\xdf\xdf\xf5\x14\x54\x1f\xeb\x42\ \xd7\xee\x79\x5a\xf3\xea\xd7\x84\x54\xbf\xd5\x88\xf8\x27\x74\xba\ \x9f\x76\x00\x07\xf7\xbe\x98\x19\x41\xa6\x51\x1a\xf4\x81\x12\x18\ \xa4\x64\x9d\x34\x81\x72\x87\xff\x67\xaf\x82\xa2\x8c\x49\x97\x4d\ \xc0\x03\x7f\xf8\x05\x3a\xc2\x71\x7c\xb9\xb6\x06\x7f\x9f\xb3\x02\ \xed\xa1\x88\xb5\x6e\x2b\xa5\xa2\xad\x67\xbd\x6c\x38\x0b\x87\x03\ \xb0\xea\x65\xc0\x31\xb6\x2b\x1b\xb5\xab\x5e\x76\xde\xd7\x6b\xa1\ \x27\xb9\x75\xf0\xe4\xb1\x5d\xa7\xbe\xbf\x28\xaa\x91\x22\x92\x1b\ \xfc\x02\xe2\x90\xbb\x01\x1e\x91\xdc\xb5\x54\x54\xa4\xf8\x32\xb2\ \xb2\xa5\x58\x3c\x8e\xec\xcc\x0c\x4c\xfe\xcd\xcd\xb8\xe2\xa2\x73\ \x90\x9f\x93\x85\x3b\xa7\x3c\x8f\xf7\x17\x54\xa2\xa5\xa5\x29\xc2\ \x3a\x36\xbf\xc0\xc3\x7b\x2a\xc1\x63\x3b\x8c\xa0\xa3\xfd\x43\x00\ \x00\x07\xcd\x49\x44\x41\x54\x88\xdf\x66\xb4\x7e\xcd\x88\x4f\xe9\ \x8f\x76\xda\x01\x7c\x53\x47\x90\x01\x20\x0f\xba\x28\x69\xb9\x52\ \x30\xfa\x07\x3c\x50\x7c\x69\x46\x56\xaf\xf2\x9b\xae\xbb\x0c\xd7\ \x5e\x3a\x81\xce\x3b\x6b\x04\x5b\xb6\x7e\x1f\xe6\x55\x6e\xc2\xd7\ \x1b\x6a\x11\x0e\x47\xa1\xfa\x14\xd7\xe8\xac\x0c\x66\x99\xf3\xf7\ \xa2\xfa\xad\xe8\x00\xcc\x28\xcb\x1d\xa2\x99\x64\x0d\xfd\xe8\x53\ \xb0\x1e\x8a\xb6\x62\xbd\x4c\xce\xb1\x5d\x7b\x43\x8f\x94\xb1\x98\ \x91\x38\xe9\xd8\xae\x63\xbe\x81\xbc\xb4\x03\x1c\x6b\xb3\x29\xf9\ \x2c\x84\xe7\xdc\x84\xe0\x44\x22\xb1\x18\x7a\xe5\xe5\xe0\xdc\xd3\ \x47\xe1\x9a\x4b\x27\xe2\x8a\x0b\xc7\xa3\x72\xc5\x66\x7a\x7f\xc1\ \x12\x36\x73\xd6\x02\x44\x42\x2d\xf5\x4a\x7c\xff\xc7\xbc\x75\xed\ \x3b\xd0\x49\x3c\x07\x0c\x54\x3f\x92\x36\xfc\xb4\x03\x38\xd4\xa5\ \x81\xc9\x28\xcc\x35\x1d\x01\xcb\xea\x3b\x51\x2d\x38\xe5\x3f\x38\ \xcb\x28\x0d\x06\xfd\xea\xef\x7e\x7e\x3d\x7e\x7e\xc3\x77\x91\x95\ \x99\x81\xf7\x3f\xdf\x80\x7f\xcc\x5f\x85\x70\x24\x0e\x4d\xd3\x6c\ \xe1\x4e\x4a\x2d\x02\x22\x19\x91\x4b\x04\xc4\x6b\xfe\x9e\x1c\x22\ \x20\x42\x47\xc2\xe0\x2e\xd8\x51\x56\x60\xed\x31\x03\x9f\x33\xa2\ \x2c\x33\xe8\xc6\xd6\xea\x6e\x90\xb4\x07\xd0\xec\x16\x24\x15\xe0\ \x20\x07\x2d\x9a\xcb\x91\xdc\xf0\x7a\x6e\x61\x0f\xd7\xd6\x5d\x5d\ \x3c\xa5\x4f\x61\x01\x6e\xbf\xf5\x7a\x5c\x79\xd1\xd9\xe8\x08\x45\ \xf0\xb7\x7f\xcc\xc5\x63\xd3\xdf\x40\x34\x16\xd7\x14\x8a\xec\xd3\ \x5a\x37\xce\xa4\x70\xed\x12\xc1\xf0\x3b\x60\xf3\xf6\xd3\xa9\x7e\ \xda\x01\x1c\x96\xf7\x8b\x19\x19\x41\xd0\x70\x04\xbd\x00\xf4\x41\ \xa0\x70\xb8\x92\x51\x7c\x3a\x0f\x96\x5f\x95\x99\xdb\xbb\x6c\x70\ \xff\x72\xfc\xf0\xea\x0b\xe9\x97\x3f\xb9\x96\xb5\xb4\x47\xb0\x76\ \x6b\x1d\x66\x7f\xb6\x1e\x5f\x6f\xd8\x85\x8c\x80\x0f\x7e\x83\x57\ \xe0\x25\x02\xe2\x74\x00\x72\xcd\xee\x10\xeb\x10\x8c\xc8\x2d\x02\ \xd2\x83\x48\x6e\x76\x29\xb8\xc3\xb1\x24\x71\x42\x9e\x54\xe8\x24\ \x22\x20\xd2\xf7\x4d\x4a\xb0\xf3\xbe\xc6\xd9\x58\x3c\x81\xae\x48\ \x04\xa3\x87\x0f\xc2\xad\x37\x4e\xc2\x39\xa7\x9f\x8a\x3e\x45\x79\ \x78\xfa\xa5\x39\xf4\xf6\x87\x9f\xb1\xed\xbb\xea\xd1\xd5\xd1\xb8\ \x57\x89\xd6\xcf\xe5\x91\xfd\x55\x88\x35\x9b\xc0\x5e\x8b\x61\xf8\ \x51\x23\xe2\x53\x3a\xe2\xa7\x1d\xc0\x91\xec\x1a\xf8\x85\xf2\xa0\ \x17\x80\x5e\x2c\x58\x74\x9a\x92\x3f\xe2\x2a\x8d\x32\x47\x02\x81\ \xde\x3f\xb8\xf6\x62\xdc\xf8\xfd\x4b\x30\xe1\x8c\x91\x00\x53\xf0\ \xfe\xe7\xeb\xf1\xc5\xaa\x1d\xa8\xde\xd3\x88\xe6\xb6\x30\x14\x85\ \xc1\x56\x0b\x23\x97\x94\x96\x67\xbd\x0c\xb8\x8c\xcc\x36\x64\x31\ \x9a\x7a\x2f\xfc\x94\x52\x6e\x83\x5a\x28\xce\x1b\x78\xa6\xf2\xc2\ \xf2\x10\xf4\x20\x95\xb7\x19\x80\xdc\x25\x45\x96\x48\x24\xc0\x39\ \x47\x45\x69\x6f\x0c\xec\x5b\x8a\x09\x67\x8c\xc6\x35\x97\x4e\x40\ \x9f\xc2\x5c\x2c\x5e\xb6\x0e\xaf\xbd\xfb\x09\xde\x79\x7f\x21\x80\ \x58\xa3\xca\xba\x36\xf0\xb6\x4d\x73\x29\xda\xb4\xd2\x30\xf8\x16\ \x21\xcd\x8f\xa7\x51\xfd\xb4\x03\x38\x5a\x70\x82\x00\xf4\x36\x62\ \x1e\x80\x22\x00\x25\xf0\xe7\x0f\x53\x0b\xc7\xfd\x44\x09\x16\x8e\ \xe4\x9c\xe3\xe2\x89\xa7\xd3\x2d\x3f\xba\x8a\x5d\x38\x61\x1c\x18\ \x80\x3d\x0d\x2d\xf8\xe7\x92\x4d\xf8\xa8\x72\x03\x3a\x3a\x23\x16\ \x1f\x80\x1c\x44\x1a\x29\x65\xb7\x8c\x8f\xdb\xda\xfd\xae\x28\x2b\ \xa7\xec\x96\xc8\xa8\x63\xd8\x07\x1e\x3f\xc3\x6e\xf1\x39\xb4\x03\ \x5c\xc3\x3c\xb0\x35\x01\xba\xdd\x45\x68\xeb\x09\x16\xe4\x67\xe3\ \xc7\x93\x2e\xc1\xf5\xd7\x5c\x84\xbc\xdc\x6c\x00\xc0\x67\x95\xab\ \xf0\xe2\x9b\x73\x69\xe1\x92\x2a\xa6\x28\x0a\x78\xb4\x79\x83\xd6\ \xbc\xea\x15\xc4\xdb\xb6\x40\xdf\xb4\xd3\x64\x18\x7d\x18\x3a\x6b\ \x2f\x5d\xdf\xa7\x1d\xc0\x51\x59\x1e\x28\x46\x56\x10\x34\x9c\x41\ \x3e\x80\x5e\x50\xb3\x06\x29\xd9\xfd\x4e\xe7\xbe\x82\xf1\x50\x73\ \xc7\x04\xb2\x0b\xb2\x07\xf7\x2f\xc7\x88\xc1\x7d\x71\xd9\xf9\x67\ \xd0\x95\xdf\x39\x9b\xf9\x03\x41\x6c\xdf\xb5\x1f\xeb\xb7\xd7\x61\ \xd9\xda\x6a\x2c\xdf\x50\x83\x48\x34\x0e\x9f\xca\xe0\xf3\x50\x1a\ \x62\x90\x0d\xee\x60\x44\x40\xa4\xb1\x5d\x81\x3f\x20\xce\x13\x78\ \x89\x80\x90\xb5\xdb\xcf\x4b\x04\x44\x6f\x21\x6a\x09\x0d\xf1\x44\ \x02\xf1\x78\x02\x65\xc5\xbd\x30\x76\xc4\x20\x8c\x39\x65\x10\xc6\ \x9e\x32\x18\xa7\x0c\xe9\x0f\x00\x98\xf7\xe9\x57\x34\x7f\xf1\x72\ \xb6\x79\x7b\x2d\xb6\xef\xaa\x47\xac\xb3\xb5\x13\x5a\xc7\x1a\x25\ \xd1\xba\x9c\x77\xee\xae\x82\x16\xde\x61\x44\xfa\x36\xc3\xe8\xa3\ \x46\xb4\xe7\xe9\x34\x3f\xed\x00\x8e\x15\x67\x20\x72\x0a\xb2\x0d\ \x67\x90\x0b\x20\x1f\x6a\xd6\x10\x25\x7f\xf8\x05\x2c\xd8\x7b\xac\ \x96\x60\xbd\xa1\x21\x6f\xe0\x90\x81\xec\xdf\xae\x3c\x1f\x57\x5e\ \x38\x9e\xfa\x55\x94\xb0\x8a\xd2\x5c\xd4\x36\x84\xb1\x66\x73\x2d\ \xd6\x6c\xa9\xc5\xd6\x5d\x0d\x68\x0f\x75\xa1\x2d\x14\x46\x7b\xa8\ \xcb\xa6\xf4\x0a\xbf\x48\x7b\x2c\xb7\x9b\xd1\x61\x31\x92\xc3\x39\ \x3a\xec\x18\xa9\x75\x8c\xf0\x12\xd7\xcb\x05\x6e\x7c\x65\x0a\x43\ \x4e\x66\x06\x7a\xe5\x65\xa3\x20\x2f\x07\xa3\x86\x0f\xc0\xd9\x63\ \x47\xe0\xec\xd3\x46\xa0\x57\x9e\x8a\xda\xbd\x21\xec\xae\x6b\xa0\ \x79\x9f\x7d\xcd\xde\x9d\xb7\x18\xd5\xdb\xaa\x09\x2a\xda\x55\x1f\ \x35\x52\xb4\x71\x35\x6f\xdb\xbc\x08\x5a\x78\x9b\x61\xec\x1d\xc6\ \xd7\x4e\xc8\xbd\xfb\xb4\xd1\xa7\x1d\xc0\x31\xfb\xfe\x2a\x86\x33\ \x30\xc1\xc3\x0c\x23\x3b\xc8\x01\x50\x00\xe6\xef\x0d\xc5\x57\xac\ \x64\xf7\x3f\x8b\x65\x55\x5c\xa4\x04\x0a\xfa\xf9\xfd\x3e\x64\x04\ \xfd\x18\x3f\x66\x18\x5d\x3c\xe1\x0c\xf6\x9d\x89\xa7\x61\x70\xff\ \x62\xc4\x13\x40\x2c\xae\x21\xa1\x69\xd8\xbc\x73\x1f\x76\xec\xd9\ \x8f\x5d\x7b\x0e\xa0\xa6\xbe\x11\xd5\x7b\x0e\xa0\xa9\xb5\xc3\x72\ \x04\x0a\xc4\xd1\x5e\x5b\x6a\x0b\x12\x05\x98\x5b\x2d\x45\x6e\xd6\ \x08\xc4\xc1\x89\x2c\x4e\x3e\x91\x4e\x61\x26\xe2\x28\x2e\xca\xc7\ \xd0\x01\xe5\x18\x32\xa0\x02\x43\x4f\x2e\xc7\xb0\x01\x27\xa1\xb4\ \xb8\x17\x54\x55\x45\xc0\xef\x43\xc0\x0f\xec\xd8\xb5\x1f\x0b\x97\ \xac\xc4\xc2\xca\x15\xb4\x7c\xcd\x16\x16\x89\xc6\x11\x8f\x27\xc0\ \x63\xad\xbb\x29\x5c\xf7\x19\xef\xdc\xb5\x0c\x3c\xb1\x1f\x14\x6f\ \x84\x4e\xd2\x09\x19\x51\x3e\x22\x80\x79\x9a\x50\xd7\xa7\x0d\x3f\ \xed\x00\x8e\xbb\x32\xc1\xcc\x0e\x02\x82\x43\xc8\x36\x32\x84\x32\ \x25\x67\xc0\x28\x16\x28\x1c\xac\xb1\x8c\x93\x81\x40\x3f\x20\x50\ \x12\xc8\xc9\x57\x06\xf4\x2d\xc1\xc0\xbe\xa5\x28\x2b\x2e\x42\xff\ \x8a\x12\x1a\xd8\xaf\x8c\x0d\xec\x5b\x8a\x81\x7d\xcb\xd0\xb7\x22\ \x08\x4d\x03\x9a\xdb\x80\xe6\xb6\x4e\xb4\xb4\x75\xa2\x2b\x12\x43\ \x24\x16\x47\x2c\x16\x47\x34\x9e\x40\x2c\x1e\x47\x3c\x96\xd0\xff\ \x1e\xd3\xc5\x6e\x02\x01\x3f\x82\x7e\x1f\x02\x7e\x3f\x82\x01\xd5\ \xf8\xea\x47\x46\xd0\x8f\x60\x20\x80\x9c\xac\x20\x7a\x17\xe6\xa3\ \x4f\x21\x83\xea\x03\x6a\xf7\x44\x51\x5d\xbb\x17\xd5\xb5\x7b\xb1\ \x73\xf7\x3e\xda\x5d\xd7\xc0\xf6\xee\x6f\x42\x75\xed\x3e\xd4\xd4\ \x36\x20\x16\x6a\xe3\x40\xac\x01\x88\xed\x56\x29\xb2\x93\x62\xcd\ \xdb\x79\xa8\x66\x1d\x80\xbd\x46\x84\xef\x14\x0c\x3e\x26\x44\xf9\ \x74\x7a\x9f\x76\x00\x27\xdc\x7b\x6f\x96\x0a\x5e\x19\x42\xb6\xf0\ \x35\x1b\x6a\x66\x5f\x25\x67\xc0\x58\x16\x2c\x1a\xc6\x7c\x39\x15\ \x1c\x6a\x1e\xd7\xb8\x1f\x9c\x02\xe0\xe4\x03\x14\xb5\xb0\xa4\x08\ \x65\xc5\xbd\x51\x5e\x52\x88\xb2\x92\xde\x28\x2f\x29\x42\x79\x49\ \x6f\xe4\xe5\x64\x21\x23\x18\x44\x66\x46\x00\x19\x19\x01\x64\x06\ \x83\x08\x04\xfc\x00\x80\x58\x2c\x8e\xae\x68\x14\x91\x48\x4c\x77\ \x18\xd1\x28\xda\x43\x61\xd4\x37\x34\xa2\xbe\xa1\x09\x7b\x1b\x1a\ \x51\xdf\xd0\x8c\xbd\xfb\x1b\xd1\xdc\xd0\x04\x80\x6b\x50\x58\x02\ \x0a\x8b\x29\xaa\x12\x57\xa0\xb5\x53\x22\x54\x47\xd1\xa6\x2d\x3c\ \x54\xb3\x1a\x5a\x57\xad\x61\xe4\xa6\xa1\x77\x26\x89\xf0\xe2\x30\ \x4e\xda\xe8\xd3\x0e\x20\x9d\x1d\x18\x7f\x17\x1d\x82\x4f\x00\x15\ \xcd\x3f\x99\x16\xae\xa0\x04\xf3\xa0\xf8\x73\x18\xf3\xe5\x40\x51\ \xb3\x49\xcd\x2e\x62\xbe\xac\x62\xa8\x99\x7d\xa0\x04\x0b\x99\x1a\ \x2c\x82\x12\x2c\x20\xa6\x04\x18\x14\x3f\x18\xf3\x81\x29\x3e\xc0\ \xd8\x3e\x0a\x18\x1d\x02\xce\x41\x3c\x01\xa2\x04\x81\xc7\x19\xf1\ \x18\x78\xb4\x95\xb4\x68\x33\x78\xb4\x09\x5a\xd7\x01\x4a\x84\xf7\ \x33\xad\xb3\x09\x5c\xeb\x24\x4a\x84\xc0\xe3\x21\xf0\x68\xbb\x50\ \xaf\x77\x19\x06\x1e\x15\x40\xbb\x84\xc3\xe0\x91\x8e\xf2\x69\x07\ \x90\xbe\x0e\x2e\x43\x30\xcb\x06\xb3\x74\x50\x04\xe7\x60\x3a\x08\ \xf3\x8f\xf9\x3d\xd5\x71\xc6\x7c\x3c\x13\xbe\x32\x87\x41\x72\xe1\ \x2b\x17\x8c\xd7\x34\x60\xf3\xef\x71\xe1\x8f\x78\x86\x0b\xa9\xbc\ \x33\x9d\x4f\x1b\x7c\xda\x01\xa4\xaf\xc3\xe0\x18\x98\xc3\xa8\x15\ \xa1\xac\x70\x7e\xdf\xeb\xf1\x48\x62\xa8\xdc\xe1\x14\x34\x0f\x27\ \x41\x8e\x3f\x69\x43\x4f\x3b\x80\xf4\x75\x14\xfd\x2e\x59\x0f\xff\ \xed\xbd\x1f\x3b\xf9\xbf\xd3\x86\x9e\xbe\xd2\x57\xfa\x4a\x5f\xe9\ \x2b\x7d\xa5\xaf\xf4\x95\xbe\xd2\x57\xfa\x4a\x5f\xc7\xde\xf5\xbf\ \x5f\x56\x00\x1f\x0b\x40\xa2\xea\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x45\x67\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x37\x16\xf3\x0a\x07\x1e\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xed\x7d\x77\x9c\x15\xd5\xd9\xff\xf7\xcc\xcc\x6d\x5b\xef\xf6\ \xca\x2e\x4b\x67\x69\xd2\x11\xac\x80\x62\xc1\xae\x31\x1a\xeb\xab\ \x29\x1a\x6b\x4c\xd1\x18\x63\x37\xfa\xb3\x47\x4d\x62\x8f\xe5\xc5\ \x60\xec\x8a\x4a\x13\x45\x40\xea\xd2\x77\x61\x81\xed\xbd\x97\x7b\ \xf7\xb6\x99\x73\x7e\x7f\x4c\x3b\x73\xcb\x16\x04\xa3\x79\x9d\xfd\ \xdc\xcf\xcc\xce\x9d\x3b\xed\xe9\xcf\xf3\x3d\xcf\x01\x7e\x5c\xfe\ \x4f\x2f\xe4\xc7\xe7\xb6\x2c\xec\xc7\x17\xf1\xdf\xb1\x08\xda\x47\ \xe2\x3e\x0e\x00\x36\x00\x76\xed\x7f\x51\x3b\x06\x00\x28\x00\x05\ \x80\x0c\x20\x08\x20\x04\x20\xa0\xfd\xaf\x7f\xa8\xf6\xf9\x91\x01\ \xbe\x87\xcf\x20\x6a\x04\x4e\x00\xa4\x4c\x90\xc4\x1c\x10\x7b\x2e\ \x6c\xce\xdc\xa4\x8c\xbc\x31\x49\xc9\x99\x45\x0e\x57\x7c\xa6\xcd\ \xee\x4c\xb3\xd9\x9c\x6e\x51\x92\x6c\x44\x10\x21\x08\x02\x00\x02\ \x46\x15\x50\x46\x41\xe5\x50\x28\x14\xf2\x77\x85\x82\xfe\xf6\x80\ \xcf\xdb\xd2\xdd\xd5\x52\xd9\xd3\x5a\x5f\x8e\x90\xbf\x01\x2c\xd8\ \x00\xd6\xdb\x08\xc8\x2d\x00\x3c\x1a\x83\x28\x3f\x74\xad\xf1\x43\ \x65\x00\x8e\xe0\x48\x07\xc8\x18\x24\x4c\x3c\x1b\xf6\xf4\x85\x63\ \xc6\x8f\x4b\x5f\x78\xdc\x0c\xf1\xe4\xb9\xd3\xa5\x31\x23\x86\x0b\ \xb5\xad\x3d\xa8\x6f\xf5\xa0\xb5\xcb\x8b\x96\x0e\x2f\x5a\x3a\x3d\ \xf0\x07\x43\x08\x04\x82\x08\xca\x0a\xc0\x18\x04\x00\x36\x1b\x41\ \xbc\xd3\x86\x8c\x94\x78\x64\xb8\x5d\xc8\xcb\x74\xa3\x78\x44\x16\ \x72\xd2\x92\xb0\xab\xec\x20\x5d\xbd\xbe\x44\x5e\xb9\x76\x8b\xb2\ \xbf\x6c\x5f\x1b\x82\x6d\xab\xe0\xd9\xf3\x11\xc0\xca\x01\xb4\x85\ \x31\xc4\x8f\x0c\x70\x94\x6e\x55\x00\x98\x13\x80\x1b\x48\x9a\x0d\ \x21\x67\x41\xf2\xf0\x91\xd3\x4e\x9e\x37\x77\xec\xe8\xd1\xe3\x52\ \x93\x52\x33\x91\x96\x9e\x8d\x4e\xaf\xcc\x2a\xea\xdb\x49\x43\x4b\ \x37\x5a\x3a\x7b\xc1\x18\x03\x01\x03\x21\x0c\x84\x31\x80\x30\x80\ \x31\x80\x51\x00\x0c\x8c\x52\x30\x46\xc1\x18\x03\xa5\x0a\x18\xa5\ \x50\x28\x85\xa2\x28\x90\x15\x19\x36\x51\x40\x5e\x66\x32\xf2\xb3\ \x52\x30\x2c\x3b\x95\xa5\xbb\x5d\x24\xe8\xeb\x43\x9f\xb7\x07\x3b\ \xf7\xec\xed\x58\xf5\xd5\xfa\xfd\xdd\x95\x87\x4a\xc0\x1a\x57\x03\ \x3d\x9b\x00\x74\x01\xc4\xaf\x5d\xe0\x47\x06\x38\x02\xb6\xdc\x0e\ \x20\x19\x24\x61\x0c\x89\xcf\x38\x31\x2d\x7f\xda\xb5\xd3\xa7\xce\ \x2c\xbc\xf6\xd2\xf3\x91\x94\x92\xcd\x96\x7d\x53\x4e\xb6\xec\x6b\ \x00\x81\x2a\xc9\x84\x30\x50\x4a\x41\xc0\xc0\x18\x05\xa5\x56\x42\ \x5b\x88\x0e\x06\x70\xdf\xd3\xb0\xef\xc1\x98\xc6\x1c\x2a\x83\x80\ \x51\x50\x85\x22\x28\x87\x20\x12\x60\xd1\xf1\x93\xf1\x93\xd3\x66\ \xb1\xf6\xf6\x4e\xf2\xc2\xff\x7e\x84\xcd\x5b\xb7\x54\xb7\xd6\x96\ \xbc\x04\x6f\xeb\x57\x60\x9e\x72\x00\xdd\x9a\x4f\x41\x7f\x64\x80\ \x21\xdf\x17\x89\x03\x58\x36\x1c\xf9\xe7\xc2\x5e\x78\xf5\xf9\x17\ \x9e\x57\x74\xd9\x85\xe7\xc6\xed\xa8\xf1\xa1\xac\xa6\x9b\x75\x79\ \x7c\x24\x10\x0c\xa9\x84\xe6\x09\xc9\x11\x1d\x3c\x03\x30\x0a\x46\ \x19\x00\xaa\x11\x58\xfb\x5e\xd3\x10\x06\x03\x30\x06\xc6\x14\x8e\ \xf8\xea\x77\x00\x03\x65\x14\x84\x32\x30\xa8\xe7\xa5\x8c\x82\x2a\ \x0a\x5c\x0e\x09\xa9\xc9\xf1\x6c\xc1\x9c\x09\x64\xc1\x9c\xf1\x78\ \xfa\xa5\xb7\xfb\x96\xbe\xf5\x5e\x25\x02\xd5\xaf\x22\x58\xf7\x01\ \x40\x9a\x00\xd6\xf7\x7d\xf4\x17\xbe\x67\x0c\x40\x08\xc0\xe2\x01\ \x0c\x03\x0a\x2f\x9d\x78\xdc\xa9\x97\x9f\x79\xda\xe2\xc2\x71\x13\ \xa6\xa2\xac\xbe\x8f\x6d\xd8\x53\x4b\x04\xc2\x20\x09\x30\x08\xa3\ \x4b\x75\x2c\xa9\x87\x26\xe9\xbc\x54\x53\x46\x41\xa0\x32\x04\x65\ \xd4\x20\xb0\x45\xea\xf9\x7d\x54\x3d\x07\xd5\xce\x41\xb4\x6d\x93\ \xb1\xd4\xed\x40\x20\x08\x10\xe0\x9c\xf9\xd3\xd9\x31\xe3\x8b\x48\ \x55\x4d\x1d\x3e\xf8\xf8\xb3\xea\x9d\x5f\x7d\xfe\x06\x50\xbd\x04\ \x40\x2d\x40\xbc\xaa\x0d\xfa\x91\x01\xc2\x55\x7d\x3c\x88\x6d\x84\ \x98\x50\x78\x6e\x62\xee\x8c\x3b\xff\x72\xc7\xad\xb6\xb8\xb4\x11\ \xec\x9f\x2b\x4a\x89\x48\x98\x2a\xb1\xdc\x0b\xd7\xa5\x9e\x67\x00\ \x06\x06\x12\x45\x95\xeb\xd2\xce\x33\x00\xa3\xd1\x09\x19\xf5\xbc\ \x1c\xd1\x2d\x66\x84\x3f\x56\x3b\x2f\xb4\x6d\x85\x2a\x50\x28\xc5\ \xc3\xbf\xbd\x9c\x05\xfd\x3e\x72\xcb\xdd\x4f\x87\x7a\x1a\xb6\x3c\ \xa8\xf4\x56\x7f\x00\x16\xaa\x00\xe0\xfd\x3e\x98\x86\xef\x01\x03\ \x08\x0e\x80\x66\xc3\x35\xf6\xa6\x09\x33\x17\x5e\x71\xe7\x8d\xbf\ \x4a\x57\x9c\x19\x78\x7b\x5d\x15\xf3\xfa\x82\x44\x10\xa0\x4a\x25\ \x55\x1d\x6c\x46\x15\x8d\x19\x28\x28\xd5\x9c\x39\x4d\x95\x43\x93\ \x6a\xc6\xa9\x72\x93\xf8\x56\x55\xae\x9b\x03\x5d\xba\xc3\xa5\xde\ \x38\x96\x23\x3a\x2c\x66\x22\xd2\x5f\xa0\x1c\x93\xe9\xe6\x27\x24\ \x87\x90\x99\x9a\xcc\x4e\x9e\x3d\x91\x1c\x37\x7d\x1c\xee\x7d\xfc\ \x85\xb6\xed\xeb\x57\xbc\x06\xff\xfe\x67\x00\xa1\x09\xa0\x81\xff\ \x74\x38\xf5\x1f\xa2\xbb\x4d\x04\xa3\xe9\x10\xd2\xcf\xc9\x1c\x77\ \xfa\xdf\x6e\xb9\xe9\x0f\xe7\x3c\x79\xf7\x2d\xae\xcc\xf4\x4c\x52\ \x94\x95\x80\xbe\x80\x42\x0e\x36\x74\xab\x1c\xaa\x49\xbf\x6a\xd7\ \xf5\x35\x34\xeb\xcf\xcc\x24\x1e\x85\x79\x9c\xe5\x78\xed\x58\xc6\ \xef\xd3\x89\x6d\x6e\xc3\xd0\x32\xda\x6f\x74\xff\x40\xfb\xce\x72\ \x2d\x00\xa0\xd6\x7d\x4c\xe5\x50\xcb\x39\x44\x41\x80\xcf\x1f\x20\ \xbb\xf7\x55\x61\xd5\xfa\x1d\xb8\xfe\xaa\x0b\x5c\xb3\xe6\xcc\x9b\ \x7b\xb0\x89\x9e\xd2\xdb\xda\xd2\x09\xf4\x35\x42\xb0\x05\x34\x8e\ \xfc\x3f\xc1\x00\x04\x40\x3c\x18\x2d\x16\xd2\x66\x3d\x7e\xf6\x45\ \xd7\xdf\xf1\xaf\xe7\x9e\xc8\x98\x32\x7e\x34\x51\x14\x42\xd4\xf7\ \xca\x30\xbe\xc0\x8d\xf1\xc3\xdc\xd8\xb8\xbf\x99\x23\x9c\xfe\x9a\ \x4d\xa2\xea\x04\x56\x43\x3c\x44\x10\x1d\x1c\x31\xf5\xdf\x11\x9e\ \x98\x51\xbe\x0f\x27\x36\x63\x1c\xe1\x99\x4e\x68\xf3\x7a\x8c\x45\ \x3f\x2f\xe1\x98\x50\x10\x08\x18\xa3\x58\xbf\x75\x2f\xd9\x59\x56\ \x81\x57\x9f\xbc\x2b\xc3\x6f\xcb\x3c\xaf\xac\xaa\x73\x0c\xeb\xab\ \xdd\x07\xa0\x57\xcb\x38\xfe\x17\x33\x00\x11\x05\x80\x65\xc0\x51\ \x74\xfd\xa4\xe3\xaf\x78\xfe\x6f\x8f\xfc\xbf\x63\xae\xb8\xe0\x0c\ \x50\xc6\x08\x63\x04\x84\xe8\xae\x20\x01\xc0\x90\x91\xec\xc4\xac\ \xb1\x99\xd8\x59\xd1\x0e\xaf\x3f\xa4\xd9\x2b\xee\x85\x83\x69\xf4\ \xe3\xa4\x96\x23\x7a\x2c\xe2\x30\xc6\xd4\x6b\x71\x8c\xa5\xeb\x13\ \xc2\x6d\xeb\x5b\x84\xf1\xcc\xc2\x40\x0c\xed\x60\x65\x16\xcb\xb5\ \xa3\x30\x99\xbe\x8f\x01\x78\xf7\xd3\xb5\x64\xf8\xb0\x1c\x72\xf7\ \x6f\x6f\x1c\x57\xdd\x19\x77\x51\x7d\x4d\x93\x0c\xa5\x6b\x3f\x88\ \xe8\xff\x2e\x9d\xc4\xef\x92\x01\x1c\x00\x1b\x2b\xa4\x4e\xbf\xef\ \xe2\x4b\x6f\xb8\xf5\xe5\x47\xef\x72\xa6\x24\xa7\x68\xef\x96\x40\ \x10\xd4\xc7\x16\x04\x93\x09\x18\x80\x38\x87\x84\x85\x53\xf3\xb1\ \xbf\xb6\x13\x6d\xdd\x7d\x20\x16\x87\x90\x81\x58\xd4\x37\xe5\xf6\ \x5b\xa5\x95\xc1\xdc\x67\x3a\x71\xbc\xc9\x30\xb5\x00\x03\xa2\x98\ \x1a\xde\x14\x69\x51\x48\x84\x79\xd2\x99\x0e\x96\x7d\x2c\x9c\xc9\ \x28\x20\x08\x04\x35\x0d\xcd\x78\xf7\xd3\xaf\x70\xc7\x8d\x57\x38\ \x53\x73\x47\x2d\xdc\x55\xde\x94\xcd\x7c\xf5\xfb\x00\xf4\x7c\x57\ \x59\x45\xf1\x3b\x52\xf9\x89\x00\x66\x08\xd9\x8b\xde\x59\xfa\xe2\ \xab\x27\xfc\x64\xf1\xa9\x90\x15\x10\x80\x68\xd2\x0e\x4e\xfa\xc3\ \xd7\xea\xc6\x71\x13\x73\x40\x19\xc3\xde\xca\x76\x83\x49\x78\x89\ \x8a\x25\x79\x56\x1b\x6d\xca\xaa\xae\xa2\x19\x1b\x40\xd5\x87\x1d\ \xab\xab\x75\x9e\xc9\x08\x47\x60\x80\xf3\x1b\xf4\x63\xb9\xb5\x91\ \x8d\xd4\x7e\x6b\xb7\x4b\xf8\x62\x43\x09\x01\x28\xfe\xf1\xe8\xbd\ \x53\x96\xac\x28\x5f\x0c\xcf\xa1\xcd\x00\x3a\xb5\xa2\xd4\x0f\x9a\ \x01\x08\x80\x54\x08\x79\xbf\x9c\x7b\xe6\x8d\x2f\xbe\xf9\xcc\x93\ \x19\x23\x0a\x72\x19\x63\x8c\x0c\x44\x78\x7e\x5b\x25\x38\xc3\x94\ \x11\xa9\x28\xcc\x4e\xc6\xc6\xd2\x06\x93\x50\x44\x55\xdb\xe1\x52\ \x06\x0a\x53\xea\x2d\x84\x04\x47\x48\x58\x4c\x47\x34\x55\xcf\x13\ \x98\x81\x81\xa9\x17\xb3\x10\x3d\x9c\xb1\x78\xa7\x93\x70\xd7\xd0\ \x19\x27\x5c\x9b\x00\x0c\x6d\x9d\xdd\xd8\xbc\x63\x2f\xfb\xcb\x1d\ \x37\xb8\x3d\x24\xef\xe2\x8a\xb2\x83\x7d\x40\x6f\x19\x00\xff\x0f\ \x93\x01\x88\x20\x02\x2c\x07\x89\xc5\x77\x5e\x74\xc5\x6f\xef\x7c\ \xf6\xbe\x3f\xd8\x1c\x76\x87\x2a\xd3\x1c\x95\x09\xb1\x7e\x4c\x82\ \xf3\xe6\x40\xe5\x25\xca\x80\x9c\xb4\x78\x2c\x9c\x5e\x80\x8d\xa5\ \x0d\xaa\x5f\x60\xbc\x70\x6a\x55\xdf\x24\x96\xaa\xd6\xf7\x85\x11\ \x27\x42\x9b\x58\x23\x0d\xa2\x9f\x9d\xc6\xd2\x26\xd1\x88\xce\x39\ \xa8\x51\x98\x10\x61\x4c\xe8\xf1\xfa\xc8\xb2\x2f\x36\xe0\xb6\x5f\ \xfc\xd4\x96\x9c\x3b\x76\xe1\xae\xd2\x4a\x17\x82\xad\xbb\x40\x84\ \xbe\xa3\xe5\x17\x88\x47\x8f\xb1\x58\x1e\x52\x66\x3c\x73\xff\x9f\ \x1f\xbb\xf2\xfa\xcb\x2f\x66\xb2\x0c\x08\x82\x46\xca\x98\xea\x1e\ \x03\x6a\x05\x80\xc1\x61\x93\x70\xea\x8c\x42\x54\x37\xf5\xa0\xb1\ \xc3\xc3\xa9\x72\x6b\xe8\x67\x51\xdf\x11\x61\x1e\x8b\xf0\xd4\xa1\ \x69\x81\x08\xf5\xcd\x38\xd5\x1e\xf6\xdb\xa8\xe7\x0d\x63\x2e\xa6\ \xd5\x85\xac\x4e\x22\xe5\x42\x4d\x83\x75\x21\x8a\x02\x56\xad\xdb\ \xca\x46\x15\x66\xe3\xe6\xeb\x7e\x35\xfb\xa3\x35\xbb\x46\xc0\x57\ \xbf\x5e\xab\x38\xb2\x1f\x02\x03\x48\x00\x8a\xc4\xcc\xe3\xff\x7e\ \xdf\x1f\x1f\x5c\x7c\xd1\x19\x0b\x98\x42\x19\x51\x25\x9f\x4b\x03\ \x08\xb1\x55\x3e\xaf\x11\xc2\x9d\x43\x41\x30\x4d\xc7\xf1\x93\xf3\ \x20\x2b\x0c\x7b\xab\xda\x20\x10\x58\x88\x8e\x18\x52\xaf\xab\x6f\ \x8b\xe7\x4e\xad\xce\x60\x64\xa4\x11\x3d\x54\xec\x2f\xd4\xb4\xe6\ \x1c\xb4\x24\x55\xd8\xbe\xc8\xe8\xc1\x58\x93\xd2\x03\x95\x24\x24\ \x07\xd9\xaf\xaf\xbd\x7a\xfc\xca\x8d\x95\xc5\xd4\x5b\xfd\x8d\xe6\ \x1c\xd2\xef\x33\x03\x48\x80\x50\x6c\xcb\x59\xb8\xf4\xe9\x07\x1f\ \x99\x7b\xda\x49\xc7\x81\x32\x46\xa2\x7b\xf9\x43\x91\xfa\xe8\xce\ \x21\x63\x0c\x93\x8a\x32\x90\x9f\x99\x88\xcd\x7b\x1b\xb4\xac\x1f\ \x22\xbd\xfa\x30\xa2\x5b\x1c\x3e\x2d\x9e\xef\x2f\x84\xb3\x86\x73\ \x31\x9c\x4e\xfe\x1a\x2c\x92\xa1\x78\xd3\x11\xcb\xe9\xe4\xaf\x21\ \x89\x02\xaa\x6a\x1b\x49\xf9\xa1\x2a\x3c\xf0\xc7\x5b\x46\x7d\xf6\ \x4d\xed\xc9\xd4\x53\xf5\x35\xc0\xda\x8f\x24\x13\x08\x47\x98\x99\ \x86\xdb\x72\x16\xbc\xf9\xda\x33\x7f\x9f\xe4\x8b\x1b\xc1\x1c\x92\ \x99\x6d\x8e\x65\xc1\xf8\xfd\x64\x08\x89\x69\xc6\xf4\x50\x91\x61\ \xde\xc4\x3c\x3c\x75\xf3\x29\x70\xd8\x44\xa3\x0e\x60\x51\xd1\x61\ \x6a\xde\xf2\xe2\xb5\x35\xaf\x86\x75\xff\x41\xdf\x43\xc2\xfc\x5a\ \xc2\x78\x5d\xdc\xcf\xb1\x8c\x44\x26\xdd\x99\x95\x35\xf8\x53\x84\ \xef\x27\x84\xa0\xb1\xa5\x0d\x4f\xbd\xf0\x26\x7b\xff\xb5\xa7\x27\ \xd9\x72\x16\xbc\x09\x60\xf8\x91\x14\xdc\x23\x73\x22\xd5\xe1\xcb\ \x93\x32\x8f\xff\xfb\x23\xf7\x3c\x3c\x77\x43\x53\x22\xdb\x5b\xd7\ \x43\xb6\x56\x74\x23\x23\xd9\x81\x6c\xb7\xdd\x78\xb0\x81\x9d\xbd\ \xc8\xe3\x62\x39\x89\xba\x73\x08\x00\x09\x2e\x3b\xce\x3b\x71\x1c\ \xca\x6b\xda\x51\xdb\xd2\x0d\x51\x20\xd6\x18\x3f\x2c\x22\xb0\x44\ \x07\x16\x9b\x4f\x35\xe6\xe2\x35\x04\x33\xd6\x44\x67\x30\xc2\xac\ \x26\x21\xea\xf9\xf5\xdf\x9a\xcc\x45\x08\x17\x5d\xe8\x9c\x44\x4c\ \xbf\x81\x10\xce\x79\xd4\xf6\xf5\x7a\xbd\x64\xd3\xb6\x9d\xec\xfe\ \x3b\x6e\xce\xfa\x74\xdd\xc1\xb1\xd4\x5b\xfd\x15\x88\xe0\x39\x12\ \x8e\xe1\x91\x60\x00\x02\xb0\x1c\xa4\xcc\x78\xe6\xee\x3b\x1e\x58\ \xbc\xdb\x9b\x8b\x5e\x5f\x88\x48\x22\x41\x40\xa6\xd8\x5e\xd5\x83\ \x7d\x0d\x1e\x4c\x1d\x9e\x04\x51\xd0\x24\x88\x30\x6d\x1d\x5b\xfd\ \xf7\x17\x16\x46\xfd\x4e\x2b\x11\x9f\x3a\x6b\x38\x14\x0a\xec\xab\ \x6e\x33\x04\x99\x10\x33\x4b\x0c\xa2\xbe\x6f\x7e\x1f\x21\xaa\x54\ \x13\x4d\xea\x08\x27\xb4\x84\xbb\xb6\xa0\x7f\x4f\x00\x41\xff\x9d\ \x46\x50\x41\xcb\x5e\xea\xdb\xbc\xa9\xe2\x7f\x07\xc6\xdd\xbf\x7e\ \x6f\x0c\x11\xd7\xe4\xff\x87\x00\x78\xbd\x7d\x64\xef\xbe\x03\xb8\ \xe3\x37\x37\x8c\xfa\xec\xeb\xbd\x45\xf0\xd5\xaf\xd5\x1c\xc3\xff\ \x28\x03\xa8\x71\x7e\x62\xf1\x9d\x0f\xdf\xfb\xc4\x95\xad\xf6\xf1\ \xac\xad\x27\x40\x04\x42\xa0\xff\x09\x02\x41\xb7\x37\x84\x75\xfb\ \xda\xe0\xf5\xcb\x98\x58\x90\xa8\x47\xd8\x51\x09\x19\xcb\x47\x88\ \xc5\x20\xe1\xda\x40\xa1\x0c\x53\x46\x65\x61\x4c\x41\x1a\xbe\xda\ \x59\xa9\x11\x54\x93\x30\x5d\xfa\x38\xe9\xd6\x53\xc2\xc4\x78\xeb\ \x2a\x35\x8c\xe3\xb4\xfd\x84\xd3\xd7\xa6\xe2\x31\xa5\xda\xa4\x5e\ \xa4\x54\xeb\x1a\x84\x44\xfc\xc6\x34\x3d\x44\xe3\xce\xa8\xcc\xa7\ \xad\x3d\x1e\x0f\xa8\x12\x64\xbf\xbd\xe9\xd7\xe3\x3f\x5a\xfe\x8d\ \x0d\xc1\xd6\xcd\xdf\x36\x4f\xf0\x6d\x19\x20\x11\x42\xde\x2f\x2f\ \xbc\xfc\xb7\x77\x26\x16\x1d\xcf\xca\x1b\x3d\x44\x14\x89\xc6\xed\ \xc4\x90\x26\x42\xd4\x28\xbd\xaa\xc5\x8b\x75\xfb\xda\x90\x9b\xe2\ \x44\x46\x92\x43\x7d\xb1\x9a\x36\x18\xaa\x73\x18\x6b\x2d\x08\xaa\ \xe5\xcf\x4e\x4b\xc4\xb1\x13\x0b\x50\xb2\xaf\x0e\x7d\xfe\xa0\x79\ \x7e\xed\x65\x13\x43\x1d\x33\x4e\x22\xb5\xfd\x7a\x82\x89\x3b\x3e\ \x5c\xcd\x13\xc6\x54\x16\x27\x9c\xba\xd6\x25\x99\x98\xda\xc4\xb2\ \xad\x7f\x17\x46\x65\xc2\x89\x3d\x01\x33\x18\x49\xbf\x37\x7d\x2d\ \x10\xe0\x50\x55\x2d\xb1\x49\x84\x4d\x99\x76\xdc\xec\x5d\x5b\x76\ \x74\x00\xbd\x3b\xa1\xc2\xce\xbe\x73\x06\x70\x00\x98\x31\xef\xcc\ \x9b\x5f\xbc\xea\xaa\x1b\x6d\x6b\xf7\xb5\x42\x10\x08\xff\x2c\x9a\ \x3a\x34\xb9\x5e\x24\x40\x48\xa1\xd8\x5e\xd9\x89\xbd\x35\x5d\x98\ \x3e\x2a\x15\x92\x28\x68\xd2\x49\xa2\x6a\x83\x68\x91\xc3\x40\x66\ \x43\xad\xbc\x31\xb8\x13\x9d\x58\x34\x67\x34\xb6\x94\xd5\xa3\xab\ \xd7\x67\x1c\xa7\xe7\xea\x75\xf5\xcb\x57\x11\xf9\xfb\x25\x86\xae\ \xe2\x24\x92\x99\x44\x33\xee\x47\x93\x6e\x43\xaa\xb9\x42\x13\x21\ \xc4\x74\x13\x38\xf3\x63\x24\x32\x89\xa9\x90\x88\xe1\x96\xf3\x5a\ \x88\xd3\x3c\x04\x10\x44\x11\x07\xab\x6a\x70\xcd\x4f\xce\x20\x7d\ \x52\xea\xdc\x8a\xd2\xaf\x56\x03\x68\x3a\xdc\xda\xc1\xe1\x31\x80\ \x5a\xd5\x1b\x2b\x64\x2f\x7a\xe7\x77\xb7\xdd\x97\xf1\xc9\xce\x36\ \x88\x82\x1a\xe7\x47\xfd\x30\x53\x15\xea\x65\xdb\x1e\x5f\x08\x6b\ \x76\x37\xa1\xd7\x17\xc2\xb8\xfc\x64\xcd\x6e\x0e\x4e\x1b\xc4\xca\ \x20\x5a\xd7\xaa\xcd\x15\x05\x01\x67\xce\x1b\x03\x59\xa6\xd8\x5e\ \xde\x00\x49\x12\x54\xc9\x27\xe6\x4b\x35\x5c\x73\xc2\x55\x0a\x39\ \xe2\xeb\xcc\x00\x4e\xf5\x13\xce\x1c\x10\x62\xf5\x15\xcc\xfb\x23\ \xa6\x26\x21\x8c\xd3\x0e\xe6\xef\x2c\xcc\x4b\x78\xe1\x21\x1c\xe3\ \x85\x99\x06\x02\xf2\xf9\x9a\x75\xf8\xdd\xf5\x57\xda\x3e\x5c\x5f\ \x37\x1f\x9e\x43\x9f\x83\x88\xed\x87\xe3\x14\x8a\x87\xe9\xf4\x65\ \x08\xa9\xd3\xef\x7f\xf3\x6f\xaf\x9e\x30\xaa\x30\x9f\x75\x78\x82\ \xc4\x13\x50\x40\x01\x08\x82\x60\x31\x01\x46\x66\x4c\x57\x6f\x61\ \xdb\xb5\x6d\x1e\x7c\xbd\xb7\x19\x05\x19\x71\x48\x4b\x74\xf6\x43\ \xd0\xe8\x11\x41\x7f\xda\x40\xff\x9f\x32\x86\x59\x13\x72\x50\x90\ \x95\x82\xad\xa5\xb5\x2a\x7e\xd0\x70\x02\x4d\xe9\x25\x9a\xd6\x21\ \x11\x04\x36\xc3\xc3\xf0\xef\x10\xee\x1b\x58\x6c\x37\xa7\x49\xb8\ \x6b\xe8\x0e\xa1\xf5\x59\x39\x22\x6b\x7e\x0b\xe1\xcd\x10\xb1\x32\ \x85\x24\x8a\xd8\x53\x56\xce\x5e\x79\xea\x7e\xf7\x5b\x9f\x7c\x93\ \xc0\x7c\xf5\xeb\x00\xf8\xbe\x0b\x06\x48\x80\xb3\xe8\xfa\x0b\x2f\ \xbe\xe1\x96\x0b\x4e\x3f\x15\x2e\xbb\x40\x26\x0f\x4b\xc4\xec\x91\ \x29\xe8\xf4\x84\xd0\xdc\x13\xd0\xd4\x28\xb1\x48\x4a\x64\xa4\x6b\ \x3a\x41\x0a\x65\xd8\x7a\xb0\x0d\xdb\x0e\xb4\x62\xca\x88\x54\x38\ \xed\xa2\xa1\x3e\x07\x1b\x32\xc6\x8a\x1e\x04\x41\xaf\x23\x30\x0c\ \xcb\x4e\xc1\xa9\x73\xc6\x60\xe5\xa6\x72\x84\x14\x85\x0b\xcb\x98\ \xe5\x7e\xad\x04\x36\x1d\x38\xa2\x87\x7d\x16\x6f\x9e\x59\x35\x89\ \xe5\x99\xc3\xf3\x0d\x56\xa6\xe0\xaf\x67\x32\x09\x67\x9e\x38\x9f\ \x81\x44\xd1\x7a\x1e\x8f\x97\x94\xee\x2f\xc7\x49\x27\x2f\x9a\xb2\ \xa3\xa4\xb4\x03\x4a\xd7\xf6\xa1\x56\x10\x87\xc6\x00\x2a\x8c\xab\ \x78\xe2\xdc\x2b\xfe\xf1\xf7\x87\xee\x72\xca\xb2\x6e\xba\x09\x44\ \x01\x98\x52\x98\x88\xe2\xbc\x44\x30\x06\x34\x76\xfa\x55\x89\xe1\ \x54\x2c\x21\x1a\x76\x1f\x91\x92\x44\x18\x83\x2f\x20\xe3\xcb\x5d\ \x0d\xf0\xfa\x42\x18\x93\xef\x86\x24\x12\xc3\xe8\x0e\xc6\x09\xec\ \x5f\x2b\xa8\xe7\x72\x3a\x6c\x38\x6d\xee\x38\x54\xd6\xb5\xa3\xae\ \xa5\x0b\xa2\x40\x40\x18\x31\x4b\xb4\xe0\xed\xb3\xa9\xf6\xa3\x13\ \x83\x59\x1c\xc7\x08\xe9\xe6\x42\xc2\x08\xa9\x27\xa6\x93\x08\xe3\ \x5c\x24\x4c\xfd\x6b\xcf\xcd\x39\xd3\x16\x53\x21\x00\x1d\x5d\xdd\ \xb8\xfa\xc2\xd3\x59\xa3\x47\x9c\x56\x7f\xf0\x9b\x65\x10\x6c\xad\ \x43\x81\x97\x0d\x8d\x01\x18\x4d\x17\xd2\x66\x3d\xf1\xc4\xfd\xff\ \xef\x98\x94\xa4\x14\x62\x25\x8c\x5a\xad\x8b\x77\x08\x18\x97\x9b\ \x80\x39\xa3\x52\xd0\xdc\x13\x40\x6f\x9f\x0c\xaa\x3b\x57\x5c\x15\ \x0e\x96\x84\x87\xf9\x70\x84\x30\xd4\xb4\xf4\x62\xe5\xf6\x5a\xe4\ \xa7\xc7\x23\x23\xd9\x05\x41\xd0\xe2\x6d\xed\x62\x03\xa5\x95\x63\ \x57\x19\x09\x18\x03\x6c\x92\x80\xf9\xb3\x47\xa1\xa3\xbb\x0f\x95\ \xf5\x1d\x20\xc4\xea\xb8\x12\x30\x08\x02\xef\x81\x13\x53\x33\x18\ \x9e\x3d\xe3\xae\xc3\x38\xa2\x73\x52\x6d\xe4\x06\xb8\xe8\x82\x8b\ \xff\x2d\xe6\xd0\xf0\x17\x38\xe9\x87\xa9\x79\x2c\xe6\xc0\x30\x47\ \xea\xcf\x3e\x5e\xf9\x25\x79\xe4\xae\xdb\x5c\xef\xac\xd8\x9e\xc5\ \xfa\x6a\x57\x01\xe8\x3b\x0a\x0c\x20\x38\x20\x66\x9c\x73\xe6\x79\ \xd7\xdd\x7e\xe9\x39\x67\x58\xac\x5d\xb8\xba\x05\x00\x51\x20\x98\ \x32\x2c\x09\x33\x46\xba\x21\x53\x86\xea\x16\x2f\x44\xc1\x94\x2a\ \x42\xf8\xc4\x0c\xaf\x5a\xcd\x50\xab\xe4\x40\x2b\x36\xef\x6f\xc2\ \xc4\xe1\x69\x48\x74\xd9\x8c\x64\xeb\xb7\x09\x15\x75\x69\x64\x0c\ \x98\x35\xa1\x10\xa3\x0a\x32\xf0\xe5\x96\x72\x23\x73\x18\xd5\xbe\ \x1b\x92\xc7\xc7\xf3\x56\xcf\xde\x12\x26\x12\x44\x39\x8f\x1e\xe7\ \xb3\x88\x44\x8a\xf9\x5b\x62\xe4\x11\x0c\x49\x67\x9c\xc9\x31\x2d\ \xab\xa1\x15\x00\x02\xbb\xdd\x06\x8f\xa7\x17\xe3\x8b\xa7\x8f\xdd\ \x5b\x52\xb2\x1b\xf0\xef\x07\x98\x72\x24\x19\x40\x00\x58\x7e\xc6\ \xd8\xd3\xfe\xfe\xcf\x27\x9e\x48\xa7\x54\x05\x74\xc4\xb2\xcb\xfa\ \x9a\x01\xb0\x89\x04\xe3\xf3\x12\x30\xad\x28\x05\x32\xa5\x68\xee\ \x0a\x40\xd1\x06\x64\x5a\x5e\x38\xe1\x3d\x63\x62\x48\x96\x3f\x18\ \xc2\x17\xdb\x6b\xe0\x0b\x84\x30\x32\xc7\x0d\x87\x5d\x88\x30\x0b\ \x91\x4c\xd8\xbf\x39\x30\xeb\x09\x0c\xc3\xb2\x93\x31\x7b\x62\x11\ \xb6\x96\x56\xc3\xe7\x0f\x9a\x6a\x59\x1b\x6a\x66\x44\x2e\xba\x7a\ \x36\xc2\x55\x5e\x7a\xad\xaa\x3d\xaa\x23\xa8\x47\x39\x84\x84\x69\ \x0d\x16\x96\x71\x24\xd6\x28\x84\x7b\xc7\x7c\xc4\x61\xc9\x67\x00\ \xa8\xaa\xa9\xc5\xfd\xbf\xbf\x0e\xab\xb7\x55\x8d\xed\x6d\xd9\xf3\ \x11\x54\x90\x29\x3b\x52\x0c\x90\x00\xd7\xd8\x3f\xfc\xfa\x57\x7f\ \x38\x7b\xe2\x98\xd1\xd6\xba\x6e\x3f\x19\x3d\x5d\xda\x28\x03\x9c\ \x76\x11\x63\x73\x13\x71\x7c\x71\x06\x3a\x7a\x03\xe8\xe8\xf5\x47\ \x38\x5d\x20\x04\x84\x51\xd3\xf6\x6a\xdf\x8b\x02\x41\x75\x73\x0f\ \x3e\xdb\x5c\x81\x9c\xd4\x04\x64\xa5\xc4\x43\x14\xd5\x58\x5f\x2f\ \x0f\x0f\xc6\x1c\x44\xee\x57\x35\x41\x72\xa2\x0b\x67\x9f\x34\x05\ \x9b\x76\x55\xa0\xc7\xd3\xc7\xa9\x7b\x4e\xea\xa2\x11\x8b\x33\x19\ \x96\x44\x12\xe1\xed\x35\xb1\x64\x12\x09\x63\x16\x93\x63\x32\xbb\ \x95\xf0\xe1\x7e\x80\xc6\x83\x5a\x5a\x99\x4b\x32\xe9\xa9\x69\x81\ \xe0\xe3\xe5\xab\xc9\x55\x3f\xfb\x59\xe6\x57\x5f\xef\x50\x20\xb7\ \x6f\x18\x4c\x82\x68\x10\x0c\x40\x08\x88\x6d\xdc\xb8\x59\x17\x3d\ \xfe\xf0\xed\xb7\xb8\x64\xc5\xa4\xff\xc0\xa9\xd9\x28\x5e\x39\x21\ \x98\x5c\xe8\xc6\xf4\x91\x69\x70\xd8\x45\x1c\x68\xe8\x36\xd4\xab\ \xa1\x01\xc2\xbd\x6e\x03\x2c\x41\x50\x52\xde\x84\xed\x07\x9b\x30\ \x3a\x2f\x05\x69\x49\x0e\x6d\x40\x08\x19\x54\xc8\x18\xab\xda\xa8\ \x3f\xd0\xa9\x73\x8b\x11\x92\x15\xec\x2c\xaf\xd5\x12\x54\xe6\xfd\ \x40\xab\x17\x80\x8b\xe5\xad\x64\xb2\x2a\x74\xc2\x15\x1e\x2c\x91\ \x10\xe1\xaa\x8a\xe1\xd1\x06\x17\xea\x45\x6a\x12\xeb\x03\x10\x4b\ \xb4\x61\x5e\x7d\xc1\xbc\x69\xac\xa9\x57\x18\xd3\x54\x55\xf2\x31\ \xc0\x5a\x8e\x84\x06\x48\x10\x13\x47\xfc\xcf\x83\x77\x3d\x76\x46\ \x56\x7a\x26\x89\x25\x51\x83\xa9\xeb\xf3\xbf\xb3\x4b\x02\x46\xe5\ \x24\xe2\xb8\xf1\x59\x08\xc8\x0a\xda\x7b\x03\x08\xca\x4a\x64\x26\ \x4e\x57\x99\x7a\x26\x0c\x80\xd7\x1f\xc4\x8a\xcd\x95\xe8\xf5\x85\ \x50\x90\x95\x8c\x78\xa7\xa4\x3a\x9a\x9a\x93\x37\x90\x69\xea\x6f\ \x99\x31\x71\x18\x32\x52\x92\x51\x52\x5a\x1d\x91\xe8\x31\xd5\x7e\ \x78\x18\xc8\xc7\xf8\x8c\x33\x63\x66\xe2\x8b\x44\x84\x98\x2c\x82\ \xc0\xa6\x39\x31\xd3\xcc\x46\xc1\x89\x10\x10\x50\x33\x52\xe0\xa2\ \x0b\xc1\x30\x27\x04\x9b\x4b\x76\x90\x07\xee\xbc\x2d\xee\x9d\x8f\ \x3f\x6f\x62\x81\x8e\xad\x03\x69\x81\x81\x18\x80\x00\x18\x99\x54\ \x74\xea\x92\x3f\xfc\xf2\x97\x22\x21\xc2\x61\x55\xea\xfa\xc3\xf8\ \x49\xa2\x80\xb1\xf9\x6e\x9c\x30\x31\x1b\x41\x59\x41\x4d\x6b\xaf\ \xa1\x02\x19\x17\x17\x33\x98\x36\x96\x31\xc0\x6e\x13\x50\xdb\xdc\ \x8d\x2f\x4a\x2a\x91\x92\xe8\x42\x41\x56\x32\x97\x32\x1d\x18\x70\ \x1a\x4b\x13\x28\x14\x28\xca\x4b\xc7\xfc\x39\xc5\x58\xbd\xb1\x0c\ \xb2\xa2\x98\xe6\x80\xa9\xa1\x97\xa9\xcd\x78\x82\x12\x4b\xe5\x91\ \x18\x0e\xa3\x66\xa2\x38\x29\x15\x8c\xb0\x0e\x20\x1c\xc2\x09\x7a\ \xe5\x50\x7b\x7e\x01\xd6\x90\x53\x20\x02\x57\x5b\x50\x59\x4f\xd0\ \x4d\xa7\xb6\x4f\x91\x65\x24\xc4\x3b\x50\x5a\x13\x9a\xe7\x6f\xdb\ \xb3\x04\x40\xfb\xb7\x60\x00\x12\x0f\x52\x78\xdd\x23\x0f\x3c\x79\ \xf2\xc8\x82\x7c\xe3\x29\x07\x1f\x76\x0d\xc5\x3b\x27\x28\x2e\x70\ \x63\xf6\xd8\x6c\x24\xc5\x3b\x70\xa0\xa1\x13\x8c\x72\xa1\x18\xcc\ \xfa\x39\x2f\x29\x00\xb0\x6d\x5f\x03\xb6\x97\x37\x22\x3b\x2d\x01\ \xb9\xe9\xf1\x50\x68\xa4\x93\x28\x0c\x01\xfa\xc2\x18\x43\x9c\xd3\ \x8e\x53\x8e\x9d\x80\x83\xb5\xcd\x68\x69\xef\x31\x7c\x0d\x9d\xd8\ \x02\x57\x55\x14\xf8\x67\x0f\x13\x1f\xbd\x1c\x0c\xc2\xb4\xe3\xc2\ \x72\x0b\xbc\xe4\x87\xd5\x00\x2c\xa1\x66\x94\x63\x23\xb5\x07\x81\ \x28\x10\xb4\xb4\xb6\xb2\xbb\x6e\xfb\xb5\xf8\xc1\x3b\x2b\x3b\xb5\ \xa6\x15\xa1\xc3\x61\x00\x01\xc0\xb0\xd1\xb3\x2f\x7c\xfc\xce\x1b\ \xaf\x4b\x0e\xc9\x91\x50\xee\xa1\xa4\x66\x07\x2a\xfb\xea\xd8\x0b\ \x9b\x24\x60\x78\x76\x22\xe6\x4f\x19\x86\x80\xac\xa0\xa3\xd7\x07\ \x7f\x50\x36\xa4\xc6\x88\x18\x38\x93\x2a\x8a\x04\x1e\x5f\x00\x6b\ \xb7\x57\xa2\xbd\xc7\x8f\xa2\xdc\x14\xc4\xbb\x4c\xb3\x30\x54\xb4\ \x91\xfe\x9c\x36\x49\xc4\xc2\x39\xe3\xd1\xdc\xd6\x8d\xea\x86\x56\ \x8d\x80\x9a\x5d\xe7\x54\xbe\x11\xc6\x47\x98\x03\xab\xfd\xe6\xeb\ \x05\x96\x9c\x40\x84\xd3\x69\x4a\x5a\xcc\x77\x1d\x35\x9d\xac\x9e\ \xc3\xe3\xf1\x92\xf9\xc7\xcf\x64\x87\x5a\xfd\xc3\x9b\xab\xb6\xbe\ \x07\xb5\x51\x05\x1b\x2a\x03\x38\xe0\xc8\xbf\xe2\xea\x2b\x6f\xfb\ \x49\xf1\xe8\xb1\x46\xd2\x47\x2f\x37\x0c\x36\x35\x3b\x58\x27\xd1\ \x52\x40\xd1\xd4\xf8\x98\xfc\x14\x1c\x3f\x29\x1f\x71\x0e\x09\x65\ \x35\xed\x66\xc1\x48\xf7\x88\x89\x9a\x58\xd2\xc0\xc6\x90\x44\x01\ \xf5\x2d\xdd\xf8\x62\xdb\x41\x88\xa2\x80\x71\x85\xe9\x1a\x6a\x87\ \x0c\x89\x01\x78\x46\xa0\x0c\x98\x35\x69\x24\x72\x32\xdc\x58\xb7\ \x6d\x1f\x24\x51\xe0\xfd\x38\x8b\x24\x0b\x9c\x86\xb0\x80\x3f\xb8\ \x7b\x26\xfa\x71\x24\x0c\xac\x62\x54\x11\xb5\x6d\x81\x2f\x56\x85\ \xe7\x0c\xac\x1a\x8d\x67\x1a\x5d\x20\xd6\x7c\xbd\x81\x5c\x70\xee\ \x79\xee\xb5\x5f\x6d\xa8\x81\xd2\x53\x82\x18\xe3\x0e\xfb\x63\x80\ \x34\x24\x4c\x7a\xf2\xd1\xbb\xef\xcd\xb4\xd9\xa4\xc3\x52\xeb\x43\ \x75\x0e\x09\xef\x21\x73\x76\x76\x64\x6e\x32\x4e\x9c\x32\x0c\x89\ \x71\x0e\xd4\x34\x77\x23\x28\x2b\xd0\xaa\xc8\x96\x5a\xbe\x91\x27\ \x61\x0c\x7b\x0e\x35\x61\x4b\x69\x1d\xd2\x92\xe3\x30\x2c\x2b\x11\ \x0a\x35\xed\xf1\x50\x17\xc6\x18\x46\x0e\xcb\xc0\xcc\x49\xa3\xb0\ \x61\xfb\x7e\x84\x64\xd9\x8c\xcb\x11\x46\x28\xde\x61\xe4\x54\x3a\ \x9f\x33\xb0\xf0\x0f\x61\x66\x5a\x38\xdc\xc1\x06\x31\x9d\x42\x2e\ \x89\x65\x45\x14\x11\x0b\xa6\x40\x2f\x1a\x11\x02\x9c\x75\xea\x89\ \xf8\xe0\xb3\x92\x3c\x04\x6b\x97\x42\xed\x47\x30\x58\x06\x20\x02\ \x84\x84\xa9\xa7\x9d\xfb\xcb\x1b\xcf\x39\xf5\x44\xc9\xcc\xf9\x0f\ \x5d\xad\x0f\x46\x1b\xf4\xff\x3b\x95\xb4\x92\x48\x50\x98\x9d\x8c\ \x53\x66\x0e\x07\xa3\x0c\x2d\x9d\x5e\x04\x42\x21\x6b\x5a\x95\xb3\ \x93\xa2\x40\xe0\xf5\x05\xf0\xcd\xee\x6a\xd4\xb7\xf4\x60\x5c\x61\ \x06\x5c\x0e\xe9\xb0\x80\xf5\xba\x26\x70\x27\xc5\xe3\xdc\x85\x33\ \x51\xb2\xb7\x02\x9d\xdd\xbd\x9a\x59\xb2\xc6\xf5\xd6\x5c\x3d\xb1\ \x96\x75\x79\xe7\xcf\x38\x2e\x4a\x9e\x9f\xcf\x09\x68\xde\x9e\x15\ \x5c\x12\xf6\x3e\x0d\x07\x94\x18\xa6\x44\x00\x41\x5c\x9c\x83\x15\ \x8e\x1c\x97\xb0\xb7\x64\xfd\x67\x40\xa8\x2e\x9a\x19\x88\xa5\x01\ \x5c\x88\xcb\xbb\xe4\xa1\xbb\x1e\x5d\x94\x9c\xe8\x26\x83\xab\xb8\ \x0d\x3e\x09\x33\xd4\x90\x91\x07\x7f\x52\x0a\x8c\x1e\x96\x8a\x79\ \x93\x86\x21\x3b\x35\x01\x3b\x0f\x36\x71\x09\x1a\x12\x06\xc5\x52\ \x35\x48\x63\x5b\x0f\x56\x6f\x2e\x87\xd7\x17\xc4\xa4\xd1\xd9\xa0\ \x87\xa9\x0d\x74\x73\x32\x7f\xce\x24\x84\x42\x14\xfb\xab\xea\x38\ \x2c\x20\x89\x92\x2a\x66\x16\x7b\x0f\x1e\x7e\x86\x28\xb8\x02\x84\ \x69\x09\x1e\x9a\xc6\x6b\x0c\x30\x40\x1f\x4d\xcd\x98\x05\x65\xc4\ \x33\xc1\xfe\x03\x87\xc8\x83\x7f\xba\xcd\xf6\xca\x5b\x6f\x57\x20\ \xd8\xb9\x25\x9a\x33\x18\x8b\x01\x32\xd2\x8a\xe6\x3f\x37\xfb\xc4\ \x73\xdc\xad\x1e\x19\x4e\x9b\x80\x24\x97\xa8\xf9\x00\x83\x0b\xb3\ \xfa\x4b\xc2\x0c\xa4\x45\x06\xf3\x3b\x51\x20\xc8\xcf\x4c\xc2\xa2\ \x59\xa3\x10\xe7\xb4\xa3\xb9\xc3\x03\xaf\x2f\x68\x51\xcd\x66\x45\ \x4e\x65\xfd\xf2\x9a\x16\x6c\xde\x53\x8d\xd4\xe4\x38\x14\xe6\x24\ \x41\xa1\x43\xd7\x04\xfa\x32\x75\x7c\x21\xdc\x49\x09\xd8\x5e\x56\ \x11\x06\xfc\x88\xc4\xf4\x01\xc4\x08\x19\x23\xe0\x67\xc4\xaa\xc6\ \x49\x98\x9f\x60\xc6\xfa\x24\xea\xb6\x0a\x15\x23\x9c\x26\x31\xf7\ \x53\x85\x22\x29\x21\x0e\xbb\x2b\x7a\x46\xf6\xb5\x95\xfe\xaf\x96\ \x1e\x1e\x90\x01\x44\x20\x69\xe1\xb1\xf3\x2f\xf9\x45\x62\xfe\x44\ \x56\xd5\xee\x25\x7b\x1a\x7b\x50\xda\xd0\x0b\x9b\x28\x20\xd1\x25\ \x41\x14\x88\x56\xa1\xc3\xa0\xeb\xf6\x43\x03\x77\x0e\x46\x8b\x98\ \x49\x9f\xc2\xec\x14\x2c\x9c\x59\x04\x97\xc3\x8e\xda\xe6\x2e\x84\ \x64\xc5\x74\xbe\x38\x46\x10\x09\x43\x9f\x3f\x84\x8d\xbb\x2a\x50\ \x5a\xd1\x8c\x49\xa3\x72\xe1\xb4\xdb\x0e\xcf\x24\x50\x86\x11\xc3\ \xb2\x31\xad\x78\x24\xbe\xde\xb6\x57\x6b\x52\x45\x38\x33\xc0\x40\ \x04\x62\xb4\xae\xe3\xd5\xb7\x60\x10\x32\x12\x0b\xc0\x9b\x07\x81\ \xcb\x01\x44\x44\x0f\x5c\x72\x0c\x04\x16\xfc\xa0\x7e\x8f\xa2\x48\ \xd0\xd6\xd1\xc1\x86\x0d\x1f\xe7\x3e\xb0\x6b\xcb\x06\x20\x50\x1e\ \x6e\x06\xc4\xa8\xea\x5f\x1a\xfe\x8b\x7b\xef\x7a\x70\x56\xad\x07\ \x84\x31\x06\x91\xa8\x68\xdb\x9a\xce\x3e\xec\x6d\xe8\xc1\xfe\x26\ \x0f\x3c\x01\x05\x59\x49\x76\xb8\xec\x02\x28\xc3\x80\x75\xfb\xc1\ \xc1\xb8\x60\x89\x34\x06\x57\xe0\x51\x19\x81\x01\x18\x91\x9b\x82\ \xe3\x8f\x29\x42\x51\x6e\x0a\x76\x1e\x68\x84\xa2\x28\x66\x3e\x9e\ \x99\x21\x9a\x28\x10\x74\xf4\x78\xf1\xe5\x96\x72\xb4\xf7\x78\x31\ \x63\x42\xfe\x61\x6b\x83\xd4\xe4\x04\x2c\x9c\x7b\x0c\xb6\xed\x39\ \x84\x5e\x4f\x9f\x1a\x76\x32\x84\x45\x01\x30\x93\x42\x5c\x64\x40\ \xa2\x64\xdd\x40\xc2\xb5\x07\xc2\xa2\x18\x62\xa9\x3f\x80\xc7\x35\ \xf2\xbe\x82\x96\xbe\x0e\x06\x83\xe4\x37\xbf\xba\x1a\xff\x5a\xf2\ \x59\x1b\xd0\xbe\x26\xdc\x0c\x44\x63\x80\x94\xc4\x82\x59\xb7\x5c\ \x73\xf5\x0d\xf9\x65\x0d\x5d\x44\xcd\xfe\xf1\x10\x2f\x82\x90\xc2\ \xd0\xdc\x13\xc0\xd6\xaa\x6e\x54\x77\xf8\x20\x2b\x14\x36\x49\x40\ \x82\x53\x54\xd5\x2d\x1b\x4c\x26\x70\xe8\xce\xe1\x40\xcc\xa4\x97\ \xa1\xb3\xd3\x13\xb1\xf8\xb8\xb1\x88\x73\x3a\xd0\xde\xe3\x45\x4f\ \xaf\x4f\x05\x7e\xf0\x21\x9b\x66\xce\x2a\xeb\x5b\xf1\xe5\x96\x03\ \x48\x77\x27\xa0\x20\x27\x59\x6d\x37\x38\xc4\xc5\x6e\xb3\xe1\xac\ \x93\xa7\xa1\xb5\xa3\x17\x07\xab\xea\x21\x49\x62\x64\xac\x6f\x84\ \xb7\xe1\x51\x00\xe7\xf4\x85\x03\x4f\x08\x22\x2b\x8e\xe0\x53\xcd\ \x84\x3b\x9e\x44\x54\x14\x09\x18\x64\x59\xc6\x05\x67\x9e\xca\xde\ \x5f\xb3\x45\xf6\x77\x1e\x78\x3f\x3c\x1a\x10\xa3\x24\x7f\x0a\x4e\ \x5e\x78\xc5\xef\xed\xd9\xc5\x71\xde\x40\x88\xb3\x37\x61\x83\x36\ \x09\x81\x24\x12\xf8\x43\x14\x75\x9d\x3e\x94\x36\xf4\x62\x77\x5d\ \x0f\x04\x42\x90\x96\x60\x33\x2a\x54\x00\xfa\x1d\x08\x32\x14\x27\ \x31\x9a\x8f\x10\x0b\x0c\x4a\x29\x30\x3c\xd7\x8d\x93\xa6\x8f\x44\ \x56\x5a\x22\xf6\x57\xb7\x98\x58\x40\x03\x8c\x42\x20\x12\x82\x90\ \x2c\x63\xcb\xde\x0a\x6c\xd9\x53\x85\xd9\x93\x46\xa8\xb1\xbe\x36\ \xf6\x70\xb0\xce\xa2\xac\x00\xb3\xa7\x8c\x46\x4e\x66\x3a\x4a\xf6\ \x1c\x50\x81\x2f\x84\x97\x76\xad\x98\x44\x78\x80\x09\x0b\x0b\x1b\ \xc3\x9e\x87\xf3\xf2\x2d\xfe\x82\xa5\x2c\x1c\x69\x8a\x49\x98\x59\ \x0e\x06\x02\x24\x25\x2d\x27\xbe\x6c\xc7\xea\xa5\x5a\x6a\x98\xc5\ \x62\x00\x11\x20\xc7\x9e\x71\xce\xaf\xaf\xee\xb5\xa7\x73\xd8\xbe\ \x81\xd5\xa1\x1a\x2a\x31\xd4\x74\xf4\x61\x67\x4d\x37\x0e\x35\xf7\ \xa2\xbb\x2f\x88\xb4\x04\x3b\x12\x5d\xa2\xa6\xa6\xad\xa8\x9e\x23\ \x99\x40\x8a\x15\x39\x10\x02\xe4\x65\x26\xe3\xe4\x99\xa3\x31\x22\ \x3f\x1d\xfb\x2b\x9b\xe1\xf5\x05\x35\x00\x88\x95\x39\x3d\x5e\x1f\ \x56\x6f\x2a\x45\x7b\x77\x2f\x66\x4c\x28\x00\x65\x24\x42\x9b\xf5\ \x53\x33\x85\x42\x19\x0a\xf3\x32\x31\x7d\xd2\x68\x6c\xd8\x56\x6a\ \x9a\x20\x8b\x7a\xb7\x66\x80\x08\x8f\xf9\x0d\x8b\xf1\xf9\xec\x9e\ \x45\xd5\x5b\x08\xcf\x67\x19\xad\xa8\x11\x9d\x61\x0e\x55\x55\xe1\ \xc4\x13\x16\xb8\xbe\x5c\xb1\x74\x15\x80\x03\xe0\x06\x97\x8a\x11\ \xf6\x3f\x71\xd2\xad\x67\x9d\x73\xf5\xd4\xf6\x90\x03\x92\x48\x20\ \x49\xc4\x9a\xeb\x8e\xd0\x04\xfc\x87\x40\xd4\xf6\x07\x42\x0a\x9a\ \xba\x7d\xd8\x72\xa8\x1d\x07\x9b\x54\xe7\xd3\x26\x0a\x88\x77\x4a\ \xda\x10\xb1\xc1\x21\x7a\x87\x12\x2a\x0e\x84\x09\xcc\x48\x49\xc4\ \xe2\x13\xc6\x22\x29\x21\x1e\x6d\x5d\x1e\xf4\xf4\xfa\x8c\xec\x22\ \x01\x51\x87\x97\x51\x86\xea\x86\x36\x2c\x5f\xb7\x0b\xb9\x19\x29\ \xc8\xce\x70\x1b\x21\xe0\x40\xda\x40\xd7\x1a\xc9\x89\x09\x38\xf9\ \xd8\x63\xb0\xf7\x40\xa5\x99\x2f\xe0\xb5\x01\x41\x74\x0d\xc0\x60\ \xa9\x71\x98\x7e\x04\x0f\x03\x23\x61\x83\x4f\x18\x27\xf1\xc4\xd8\ \x16\x04\x02\x51\x10\x40\x29\x45\x4f\xaf\x17\xb3\xa6\x4d\xc3\xaa\ \xaf\xf7\xf8\x10\x6c\x59\xc1\xfb\x01\xe1\x0c\x90\x8a\xc4\x09\x0f\ \x9f\xff\x93\x6b\x93\x77\xd5\x78\xd0\xd3\x47\xd1\xe3\x55\x00\x42\ \xe0\xb0\x0b\x10\x09\xd7\xd3\x87\x83\x30\xf2\x48\x76\x46\x4c\x87\ \x44\x00\x83\x4d\x10\xe0\x0f\xc9\xa8\x6e\xf7\x62\x4f\x4d\x07\xb6\ \x55\xb4\x41\xa1\x0c\x59\x6e\x97\x21\x85\x83\xd5\x06\x03\xf9\x14\ \x03\x31\x00\x63\x0c\x21\x19\x18\x96\x9d\x8a\xe3\xa6\x8e\xc2\xe8\ \xc2\x4c\xec\x39\x50\x0f\xd9\x40\x08\xeb\x15\x3a\x40\x61\x0c\x25\ \x7b\x2b\xb0\x65\xcf\x41\xcc\x9e\x3c\x0a\x36\x9b\x34\x24\x26\x70\ \xd8\x6d\x38\x69\xce\x31\xa8\x6f\x6e\x45\x7d\x73\x1b\x04\x62\x6a\ \x13\x81\x84\xd7\xf9\xf5\xb1\x86\x56\xc9\x37\x8e\x07\xe1\xb2\x85\ \xcc\x92\xed\x53\xcf\x27\x84\x69\x63\xa0\xab\xab\x17\x55\x35\x75\ \xa8\xa9\x6b\x44\x47\x67\x17\xe6\xcd\x9a\x8a\x2f\x37\x96\xa7\xc3\ \x57\xf5\x1a\xef\x07\x84\x31\x80\x34\x62\xc4\xe4\x45\x37\xcf\x39\ \xee\x34\xa9\xac\xbe\xdb\x68\x83\xe3\x0b\x50\x74\xf6\xca\xe8\xf5\ \x51\x78\x03\x14\xb2\x02\x48\x22\xe0\xb0\x11\xae\x3c\xca\xac\xc0\ \x0e\x2e\xa1\x41\xb8\x04\x09\x65\x14\x75\x6d\x1e\x6c\x39\xd8\x82\ \x43\x8d\xdd\xe8\xf4\xfa\x91\x1c\x6f\x87\x3b\x5e\x8a\x19\x4d\x0c\ \xd5\x57\xe8\xaf\xe1\x94\x69\x43\x09\xd2\x53\x12\xb0\x70\x4e\x31\ \x0a\x73\xd3\x51\xdf\xdc\x81\x8e\x6e\x0f\x24\x41\xb4\xe4\xe7\xbd\ \x7d\x7e\xac\x58\xb7\x13\xed\xdd\xbd\x98\x38\xba\x10\xa2\x30\xb0\ \x6f\xc0\x5f\x63\xde\xf4\x62\xb8\x93\x92\xb0\x79\x67\x99\xea\x1c\ \xf2\x44\xe7\x51\xc6\x42\xb8\xf3\x67\xf5\xbd\xf4\x01\xa6\x02\xe7\ \x83\xe9\x52\x1e\x0c\x05\xd1\xd9\xd5\x83\xe6\x96\x76\x34\x36\xb5\ \xa2\xa6\xae\x09\xed\x1d\x9d\x08\x06\x65\x23\x49\x35\x62\xf8\x30\ \xe6\x95\x1d\xf6\xf6\x9a\xed\x6f\x01\xb4\x25\x1a\x03\x08\x10\x92\ \xa7\x9c\x79\xd6\x15\x3f\xbb\xea\xcc\x63\xa5\x93\xc7\x66\x20\xdb\ \xed\x30\xd4\x90\xc2\x18\x7c\x21\x0a\x59\x66\xf0\x05\x29\xba\x3c\ \x0a\xda\x7a\x14\xf8\x82\x14\x0a\x55\xab\x6e\x7a\xad\x5b\x20\x5c\ \x51\xc4\x32\x0a\xc6\x84\x4e\x0b\x00\x7c\x41\x19\x8d\x1d\x5e\x6c\ \x39\xd0\x84\xdd\x95\x1d\x10\x05\xc0\x69\x93\xe0\xb0\x8b\x10\x45\ \xab\x8d\x3e\xdc\x2a\xe3\x40\xf6\x9b\x31\x86\xcc\xd4\x24\x9c\x3a\ \x77\x2c\x72\x32\xd2\xd0\xd8\xd6\x05\x8f\xd7\x67\xaa\x55\x8d\xc1\ \xeb\x9a\xda\xb0\x72\xc3\x0e\xe4\x67\xa7\x21\x23\x2d\x79\xd0\x4e\ \xa2\x42\x19\x46\x16\xe4\x60\xea\x84\x31\xd8\xba\x7b\x1f\x64\x59\ \xe6\xe2\x7f\x4e\xea\x09\xe1\xb0\x04\x66\xb8\x68\x6a\x25\xa2\x79\ \xf5\x0a\x82\xc1\x10\x7a\x7b\xfb\xd0\xd0\xdc\x8a\x8a\xca\x7a\xd4\ \x36\xb4\xa0\xab\xbb\x17\x3e\xbf\x1f\xa1\x90\xac\xde\x97\x05\xea\ \xce\x90\x98\x90\x40\x8e\x9d\x3d\x87\x6d\xfe\x7a\xcd\xc7\x80\xbf\ \x52\x77\x04\xf9\xbb\x97\x20\x66\x5d\xf6\xec\x3f\x3e\x7d\x79\xde\ \x8c\x69\x02\xa5\x1c\xb8\x93\x31\x50\xc6\xd0\xed\x97\x51\x52\xd5\ \x8d\x6d\x95\xdd\xf0\xf8\x65\x83\xe8\x3c\xee\x1e\x60\x90\x08\x43\ \xbc\x93\x20\xde\x29\x20\xce\xa1\x37\x88\xd0\xfa\xe9\xea\xfd\x78\ \x61\xf6\xee\x85\xd6\xdf\x57\xad\xec\xa9\x63\x08\x27\x17\x65\x60\ \xde\x84\x3c\xb8\x1c\x22\x68\x8c\xbc\x40\x38\x44\x7c\x20\xa8\xf8\ \x40\x8c\xa0\x26\x78\x28\x1a\x5a\xbb\xf0\xfc\xd2\x95\xe8\xee\xf5\ \xaa\x00\x14\xaa\xf7\xf8\xa1\x00\x65\x70\x27\xc5\xe3\x37\x57\x9d\ \x8d\x54\x77\xd2\xa0\x98\x40\x3f\x26\x18\x92\x71\xd7\x63\xff\x40\ \x6b\x47\xa7\xf6\xaa\xd4\x5e\x85\x8c\xef\x31\x6c\xe9\x71\x44\xe1\ \xf5\xfa\xd1\xd9\xdd\x83\xae\xae\x1e\x78\xbc\x3e\x30\xa6\xa8\xad\ \xea\x8d\x46\xd8\x14\xc4\x68\x54\x1d\x39\xbf\x81\xfe\x8e\x73\x73\ \xb2\xf0\xf4\x23\x8f\xd2\x73\x17\x2f\xbc\x06\xb4\xf9\x4d\xbd\x3a\ \xc8\xdf\xb9\x13\xce\xc2\xdf\xac\x58\xb6\xe3\xc1\x34\xb7\x3b\x4a\ \xbc\xad\x4a\xb4\x28\x02\x92\x00\xb4\x7b\x65\x34\x76\xf9\x51\xd7\ \xee\x47\x45\x6b\x1f\x2a\x5a\x7c\x90\x15\x45\x75\x02\xf5\x46\x0b\ \x8a\x4a\x54\x49\x60\x90\xb4\xdf\xd9\x44\xc0\x26\x01\x76\x11\xb0\ \xdb\x08\x6c\x92\x56\x66\xa6\x66\x43\x67\x06\x0a\x45\x51\x67\xee\ \xc8\x4d\x8d\xc7\xf0\xac\x64\x14\x0f\x4f\x47\x41\x66\x02\x14\x0a\ \x4b\x65\x2f\x16\x03\x44\x73\x0c\x07\x9d\xe4\x01\x20\x8a\xc0\xae\ \xf2\x3a\xac\xd8\xb0\x13\xfb\x0e\xd5\xc2\x6e\x93\xb4\x17\xac\x35\ \xaa\x56\x28\xe6\x4c\x1d\x87\x0b\x4f\x3b\x0e\xf1\x4e\xfb\xa0\xab\ \x8d\x8c\x31\xbc\xf6\xce\x32\x7c\xb1\x61\x0b\x9c\x0e\x3b\x42\xa1\ \x20\x7c\xfe\x20\x7c\x3e\x3f\x7c\xbe\x00\xfc\x81\x20\x02\xc1\x00\ \x02\xfe\x20\x7c\x7e\x3f\x14\x45\x31\x21\x64\xe1\x9d\xce\x39\x02\ \x47\x6b\x7a\x4d\xb5\x76\xf9\x00\x43\x28\x18\x40\xe5\xae\x12\x14\ \x8d\x1d\x7b\x27\x02\xd5\x4f\x40\x1b\x56\x2e\xf1\x1a\x20\x21\x35\ \x77\x8c\xdd\x66\xb3\xbc\x50\x3e\x03\xc5\xb4\x78\x57\xa1\x40\xa2\ \x53\x42\x62\x76\x3c\xc6\xe5\x26\x40\x12\x54\x9f\x60\x5f\x63\x1f\ \x4a\x2a\xbb\x70\xb0\xd1\x83\xbe\x80\x0c\x9f\x46\x54\x59\x51\x3f\ \x7a\x07\x6d\x7e\x22\x06\x4a\x29\x6c\x12\x41\x9c\x83\xc0\x69\x13\ \xe0\xb0\xab\x4c\x21\x6a\x76\xaf\xa9\xd3\x8b\xa6\x0e\x0f\xd6\xed\ \xa9\x46\x82\xcb\x8e\x13\x26\x17\x60\x5c\x41\x3a\xe2\x5d\x36\x03\ \xb8\xc9\xfb\x0d\xd1\xef\x7d\x88\x45\x1f\xed\x39\xc7\x8f\xc8\xc3\ \x31\xe3\xf2\x51\x56\xd1\x8c\x7f\x7d\xfa\x35\x5a\xdb\xbb\xd4\x0e\ \xe5\x10\x20\x4a\xc0\x96\x5d\xfb\xb1\x71\x7b\x29\xae\xfd\xc9\xe9\ \x98\x32\xae\x68\xd0\x66\xe1\xda\x9f\x2e\x46\x9c\xd3\x85\xbf\x3c\ \xfb\x3a\xfc\x81\x00\xf8\x16\x36\x7c\x0b\x7b\x35\xb1\x25\xa8\xd2\ \x4d\xf9\x7e\x02\x66\x0b\x82\xc8\x66\x37\x56\x46\x36\xe2\xbd\x40\ \x08\x95\xd5\xd5\x48\xce\xcc\x1b\xd3\x5d\x5b\x2d\x45\xc3\x18\xb8\ \xb3\xc6\x9e\xfd\xe1\xbb\xaf\x2c\x3d\xc1\xe9\x70\x0e\x4a\xb5\x5a\ \xbd\x6e\x66\x38\x29\x0a\x63\x08\xca\x14\xbe\x90\x82\x5d\x55\x5d\ \xd8\x54\xde\x8a\x9a\x56\xaf\x4a\x54\xc2\xb5\x6a\x0d\xeb\xe5\xcf\ \xb4\xd9\x38\x74\x0e\x67\xda\xac\x1f\x24\xac\x15\xac\xc3\x26\x20\ \x29\xde\x86\xa9\xa3\xb3\x71\xe1\xfc\x62\xa4\x26\xda\x11\x94\xa1\ \xb5\x91\x25\x51\xb5\xc1\xe1\x2e\xbc\x69\x68\x69\xef\xc6\xab\xef\ \xad\x42\xd9\xa1\x3a\x08\x04\x08\x86\x64\x84\x82\x32\x02\xa1\x10\ \x5c\x0e\x1b\xfe\xf2\xbb\xab\x31\xba\x30\x1b\xb2\xd2\x3f\x13\xe8\ \x70\xf6\x83\x55\xf5\x38\xef\x9a\xdf\x83\x52\x25\xea\x04\x14\x03\ \xb5\xaf\x67\x1a\x63\xe8\xef\xcc\x68\x44\xc9\xb5\xd6\xa7\xda\xfb\ \x95\xfd\x7e\x3c\xf2\xe0\x7d\x78\xf6\xe5\xb7\xd6\xd6\xee\x7e\xff\ \x1c\x00\x5d\xe1\x4e\x60\x72\x6a\xde\xf4\x5f\x5f\x7c\xf6\xf9\xe9\ \xa2\x28\x46\x24\x61\x06\x1e\x8a\x45\x2c\xf5\x6c\x49\x14\x10\xef\ \x10\x31\x2a\x3b\x1e\x0b\x26\x67\x62\xfe\xe4\x1c\x8c\xce\x4d\x44\ \x5a\xa2\x1d\xa2\x40\xd0\xeb\x0b\xc2\xeb\x0f\x85\x75\xe9\xb0\x76\ \xe0\xd2\x87\xb8\x51\xcd\x77\xa0\x8c\x41\x56\x28\x82\x41\x19\x3d\ \x9e\x00\x4a\x2b\x5a\xf1\xd6\x8a\xdd\xd8\x52\xda\x80\x6e\x8f\x80\ \x8e\x5c\xee\x00\x00\x20\x00\x49\x44\x41\x54\x1f\x71\x4e\x1b\xb2\ \x53\x5d\x10\x04\x35\x13\x78\xb8\x1a\x20\x96\x47\x9f\x10\xef\xc2\ \xc2\xb9\x13\x90\x9b\x91\x81\xfd\x15\x8d\xd8\xb2\xf3\x00\x7a\xfb\ \xfc\xf0\x7a\x7d\xe8\xea\xf1\x60\xc9\x87\x6b\xd0\xde\xd5\x8b\xa9\ \xc5\x23\x11\xef\xb2\xc5\x34\x0b\xba\xa6\x48\x4b\x49\xc2\x4f\xce\ \x5a\x88\x4d\xdb\xf7\xa2\xa9\xa5\x5d\xab\x23\x44\xe9\x44\x16\xde\ \xd5\x2c\xac\x83\x19\xe3\x3a\xa3\x99\x5d\xcb\xac\xad\xe8\x28\x55\ \x50\x34\xbc\x10\x75\xcd\xdd\xbe\x8e\xfa\x5d\x6f\xea\xa1\x20\xcf\ \x00\x29\x69\xc3\x66\xdc\x7a\xd1\xe2\xb3\xe3\x45\x1e\x13\x1f\xa5\ \x50\x33\x14\x4c\x20\xd5\xb4\x97\x40\x08\x32\xdd\x4e\x8c\xc9\x4b\ \xc6\xb1\xe3\x32\x70\xf6\xec\x7c\xcc\x1e\x97\x05\x87\x5d\x40\x47\ \x8f\x1f\x8a\x36\x19\x03\xa3\xe1\xfd\xf5\xc2\xe7\x09\xd0\x1e\x4a\ \xbb\xa6\x24\x12\x74\xf5\xfa\xb0\xfb\x60\x23\x3e\x59\x57\x86\x0f\ \xbe\x2c\x85\x28\x08\x18\x96\x95\x0c\x51\x14\x8c\x74\xf4\x50\xd2\ \xba\xfd\x7a\xf5\x0a\x90\x93\x99\x82\xb3\xe6\x4f\xc7\xd9\x0b\xe7\ \x60\xdb\xee\x83\xe8\xf6\xf4\x81\x2a\x14\x92\x28\xa0\xf4\x60\x0d\ \x9e\x5f\xf2\x09\x0a\xf2\xb2\x31\x62\x58\x0e\x04\x41\x88\x7a\x6d\ \xfd\x7f\x97\xd3\x81\x9f\x9d\xbf\x10\xbb\xca\x0e\xa1\xaa\xb6\xc1\ \x82\x13\x60\x51\x5a\xd1\x99\xfe\x00\x60\x69\x4a\x19\xa5\x15\x1d\ \xdf\xfe\x96\x32\x86\xbc\x9c\x6c\x74\xf5\x51\xd6\x56\x53\xf2\x12\ \xd4\x9e\x83\x16\x13\x30\x62\xf4\x9c\xeb\xf6\x2d\x79\xe6\x59\x9b\ \x20\x08\x11\x5e\x77\x34\x07\x6b\xa0\x24\x4e\xb4\xdf\x99\xfb\xb4\ \x5c\xbc\xf6\x9d\xc7\x1f\x82\xc7\x17\xc2\x81\xfa\x4e\x7c\x53\xda\ \x88\x9d\x07\x9b\xc1\x28\x85\x24\x12\x63\x2e\x20\x84\x4d\xee\x04\ \x46\x41\x35\xcf\x9c\x8f\x32\x28\x55\x20\x89\x04\x69\xc9\x2e\x4c\ \x1f\x9f\x8f\x9f\x9d\x3e\x0d\xf9\x59\x71\xf0\x05\x70\xd8\x60\x90\ \x58\xa6\x01\x00\xaa\xea\x9a\xf1\xe4\xab\x1f\x60\xe5\xd7\xdb\x10\ \xef\xb2\x83\x31\x06\x45\x91\x51\x90\x93\x81\x47\x6e\xff\x05\xa6\ \x14\x17\x20\x10\x1c\x38\x95\xfc\xee\xb2\x2f\x70\xf3\x9f\x1f\x45\ \x42\x9c\x93\x9b\xc5\x4c\x55\xe5\x96\x49\xac\xb4\x59\x52\xac\xb3\ \xa0\x28\x5a\x23\x33\x1a\xd5\x9c\x28\x8a\x8c\x69\x93\x27\x21\x24\ \xa6\x87\x76\xad\x79\x66\x1c\x80\x0a\x5e\x03\x10\x00\x19\x19\x85\ \x73\x6f\xbe\xe0\xf4\xd3\x23\xf0\x69\x43\xa9\xd4\x0d\x25\x29\xc3\ \x6b\x39\xbb\x4d\x44\x82\x4b\x42\x51\x4e\x12\xe6\x4f\xcd\xc5\x85\ \x27\x8e\xc1\xa4\x11\x19\x48\x4d\x74\x42\x14\x09\x82\xb2\x82\x6e\ \x8f\x5f\x9d\xe5\x8b\xc0\x6c\xae\x44\x63\xb8\x41\x8c\xc1\xeb\x0b\ \xa0\xac\xb2\x19\x6f\x7c\xb2\x05\x6b\x4b\x2a\x11\x08\x86\xe0\xb0\ \x4b\x48\x4f\x89\x87\x28\x00\xdf\x66\x8e\x0e\x9e\x89\xdc\x49\x09\ \x38\x7f\xd1\x0c\x9c\x38\x7b\x2a\x9a\x5b\x3b\x51\x59\xd7\x08\x02\ \x82\x1e\x8f\x17\xff\x7c\x67\x39\x9a\xdb\xbb\x31\x61\xcc\x70\xb8\ \x93\x5c\x50\x62\xf8\x07\x8c\x31\x4c\x99\x30\x02\xc7\xcd\x9a\x8e\ \xe5\x5f\x6e\x80\xdf\x1f\xd0\xbc\x38\xae\xcd\xac\xfe\x7c\x11\x9d\ \x49\xcd\xd6\xf9\x2c\x5c\x7b\x72\x9a\xd3\xe5\x74\xc2\x95\x98\x25\ \x36\x55\x7c\xf3\x37\x00\x1d\xe1\x03\x53\xc6\x8d\x3f\xfe\x96\xd2\ \x37\x9f\x7a\xb2\xdf\xdc\x7a\x7f\x61\xd7\x60\x52\xba\xbc\x87\x3e\ \xb8\x1e\x40\xea\x0b\x13\x05\xc0\xeb\x97\xb1\xa6\xa4\x12\xab\xb7\ \x54\xa2\xa1\xad\x5b\xf5\x0d\x14\x59\x0b\xa9\x15\x6e\xd6\x30\x06\ \xcb\x1c\x3f\x9c\xd3\x49\x29\x85\xd3\x26\xe2\xe2\xd3\xa6\xe3\x82\ \x53\xa6\xc2\x69\xb7\x1d\x31\x33\xa1\xff\xbe\xd7\xd3\x87\x9b\xee\ \x7d\x0e\xbb\xf7\x55\x40\x51\x14\x30\x46\xa1\x28\x32\xee\xbe\xe5\ \x6a\x5c\x78\xc6\x89\x03\x5e\x8b\x52\x8a\x85\x17\xff\x12\x75\xf5\ \x4d\x51\x9d\x40\xc4\x98\xd0\x6a\xa0\xc9\xaf\xb2\x32\xd2\x91\x5b\ \x34\x1d\xdb\x96\x3f\x56\x0c\x60\x1f\x00\xc6\x6b\x80\xcc\xcc\xa2\ \x79\xd7\x5f\xb0\xe8\xd4\x21\x56\xdc\x8e\x3c\x26\x30\x5a\x45\x8f\ \x31\x06\xbb\x4d\xc4\xb8\xc2\x34\x9c\x39\x6f\x24\xce\x98\x3b\x06\ \xc7\x4d\x29\xc0\x84\xa2\x4c\x08\x02\xd0\xd0\xda\x03\xaf\x2f\x68\ \x69\x4c\x15\xd1\xaf\x57\x4b\x53\x87\x14\x05\xdb\x4a\xab\xf0\xaf\ \xcf\xb6\xe0\xcb\x2d\xfb\x50\x55\xdf\x86\xfc\xac\x54\xe4\x65\xb9\ \x20\x2b\x87\x6f\x26\x8c\x3a\x80\xc3\x8e\x0b\x4e\x9f\x87\xf9\x73\ \xa7\xa1\xcf\xe7\x47\xc9\xee\xfd\x70\xd8\x24\xac\x5a\xb7\x05\x2b\ \xbe\xda\x84\x11\x05\x79\x18\x53\x94\x89\x60\x28\xf2\x3a\x6a\x84\ \x20\xe0\x92\xf3\x4e\x47\x47\x57\x37\x76\xec\xd9\xc7\x39\x87\xe0\ \xa4\x1d\xb1\xa7\xb2\x41\x58\x47\x72\xad\x12\xeb\xb0\xdb\xe0\x4e\ \x2f\x40\xe3\xc1\xf5\x7f\x07\xd0\x1a\x69\x02\x86\xcf\xbd\xfe\xfc\ \x45\xa7\x5a\x30\xeb\xdf\x76\x7d\xb8\xc3\xc8\x22\xbf\x33\x4d\x06\ \xd3\x06\x6d\x24\x27\x38\x50\x94\xeb\xc6\x49\xd3\x0a\x71\xe5\xe2\ \xc9\x98\x77\xcc\x08\xa4\xb9\xe3\xa0\x68\x09\x1b\x4f\x5f\x00\xb2\ \x42\x4d\x14\x0e\xe5\xbb\x86\xaa\x4b\x4f\x4f\x1f\x4a\x2b\x1a\xf0\ \xe6\xc7\xeb\xf1\xf9\xda\x52\xcd\x31\xb3\xc3\x9d\x18\x07\x49\x22\ \x43\x6e\xbb\xc4\x9b\xb6\xd4\xe4\x44\x9c\x71\xf2\x54\x9c\x77\xda\ \x49\xa8\xac\x6d\x44\x73\x5b\x3b\xda\xda\xbb\xb0\xf4\xa3\x95\xa8\ \xaa\x6f\xc5\xe4\x71\x23\x91\x9c\x14\x67\x61\x38\x33\xc1\x25\xe0\ \xb4\x93\x67\x81\x32\x82\x2d\x3b\x76\x73\xa1\x5f\x78\xb7\x72\x1a\ \xa5\xd3\x39\x8c\xbc\x01\xe3\x9c\x4a\x97\xd3\x81\x94\xf4\x02\x34\ \x1c\x5c\xff\x37\x9d\x01\xa2\x9a\x80\xa1\x42\xbd\x79\x55\xce\x27\ \x63\x06\xaa\xd4\xc5\x4a\xe9\x0e\x45\x9b\x44\xfb\x9d\xfe\x92\x64\ \x85\x62\xc3\xce\x6a\x2c\x5b\xbb\x07\x25\xfb\x6a\x8d\xf2\x29\x8b\ \x36\xff\x1f\x33\x67\x14\x25\x84\xc1\x26\x0a\x38\x6f\xe1\x0c\x5c\ \x79\xde\x09\x48\x88\x73\x1c\x76\x53\x56\x5d\xd5\x33\xc6\xe0\xf3\ \x07\xf0\xc7\x47\x9e\xc7\xaa\xaf\x37\x6b\xf7\x4e\x70\xd3\xff\x5c\ \x84\xeb\xaf\x3c\x07\x81\x40\x6c\xad\xb3\xbb\xec\x00\xce\xfc\xd9\ \xaf\x60\x93\x44\x6d\x8a\x3c\x6e\xea\x3a\x2e\x03\xa8\xef\x8b\x35\ \x89\x66\x4e\x66\x06\xb2\xc3\x4c\x00\xcf\x00\xa3\xc7\xce\xbb\x69\ \xff\x92\xbf\x3e\x85\xfe\xba\x7b\x0f\xa4\xd6\x07\xf3\xbb\xc1\xf8\ \x16\xfd\x81\x41\x06\x1b\x69\xe8\x7e\x86\x24\x02\xfe\x00\x43\x55\ \x43\x3b\xaa\xea\xdb\x51\x52\x56\x83\xcd\x7b\x2a\x51\xd3\xd0\x06\ \x49\x14\x60\x93\x08\x97\xe6\x65\x46\x02\x45\x96\x43\x60\x8c\x61\ \xcc\xf0\x6c\x4c\x2b\x2e\xc2\x99\x27\x4e\xc3\x31\xc5\x39\xf0\x07\ \x00\x59\x3e\x3c\x33\x61\xb7\x01\xfb\x0e\x35\xe0\xad\x0f\x56\xe0\ \xe5\xb7\x3e\x04\x08\x30\x7a\x78\x3e\x7e\xf7\xab\xcb\x70\xe6\x29\ \xb3\xe1\xf7\x47\x9e\x57\x14\x80\xc6\x96\x0e\x5c\xf2\xcb\xdf\xa0\ \xbc\xa2\x0a\x92\x3a\x99\x62\xcc\xa4\x11\xa5\x34\xc2\x07\xa2\x54\ \xc1\xa8\xa2\xe1\x48\x48\x1f\x8b\xed\x2b\x9f\x18\xab\x01\x43\x58\ \x44\x18\xf8\xd6\xb3\xcf\xda\x08\x11\x06\x95\x01\x1c\x7a\xe8\x37\ \xb0\x36\xd0\xcf\xdf\x5f\x16\x72\x30\xcc\xd4\x9f\x34\x4a\x22\x60\ \xb3\x01\xcd\x6d\x3e\xac\xde\x54\x86\x35\x9b\xca\xd0\xd4\xd6\x85\ \xce\x6e\x0f\x7c\x81\x80\x01\xdd\xe2\xa7\x91\xa5\x8c\xc2\xe7\xf7\ \x23\x27\xcd\x8d\xab\x2e\x98\x8f\xe3\x66\x8c\x47\x56\x9a\x1b\x0e\ \xbb\x08\x85\x0e\xcd\x81\x54\xfd\x19\x82\x1e\x4f\x00\xb7\xde\xf3\ \x24\x36\x6f\xdf\x83\xce\xee\x6e\x9c\xb9\x60\x1e\xee\xb9\xed\x57\ \xc8\x4a\x77\x47\x05\xa9\x26\xc4\x03\x97\xfe\xea\xcf\xf8\x7c\xf5\ \x97\x10\x45\x31\x72\x12\x4d\x84\x15\xdc\x0c\x4d\x47\xa1\xc8\x0a\ \xa6\x4c\x2a\x06\xec\x39\xa1\x9d\x5c\x18\xc8\xdf\x71\x7e\xd1\x8c\ \xab\x4b\x96\xfe\xed\x85\x0c\x51\x94\x06\xe5\xe5\x0f\x45\xad\x0f\ \x2e\x9d\x7c\xe4\x22\x8d\xa1\x2e\xa1\x90\x8c\x40\x48\xc6\xfe\xca\ \x46\x7c\xf2\xe5\x76\xac\x5c\xbf\x13\x21\x59\x81\x28\x12\x08\x8c\ \x59\xe6\x1f\xa6\x8c\x42\x14\x08\x5c\x76\x1b\x4e\x3d\x7e\x2a\x7e\ \x79\xe9\x19\xc8\x48\x89\x43\x48\x1e\xba\x69\x00\x00\x8f\xb7\x0f\ \x4f\x3c\xff\x26\xfe\xf9\xf6\xc7\x70\x3a\x6c\xb8\xec\x82\x33\xf0\ \xe7\x5b\xaf\x45\x48\x66\x16\xe7\x12\x5a\xb9\xfd\xdd\x65\x2b\x70\ \xcb\x9d\x0f\xa8\xef\x87\x86\x4d\x9d\x1b\x65\xc6\x74\xc6\x18\xa8\ \x1c\xc2\x19\x8b\x4e\x41\x65\x93\xbf\xb5\x6c\xdd\x8b\xd3\x00\xd4\ \x85\x67\x02\x5d\x89\xe9\xc5\x17\x5f\xb4\xf8\xdc\x74\x03\xd5\x7a\ \x14\x47\xfe\x1c\x4d\x4c\xe0\xe1\x44\x72\xa2\x28\xc0\x26\x89\xc8\ \xcf\x4a\xc1\x29\x73\xc7\xe3\x17\x17\x9f\x8c\xf9\x73\x26\xa3\x78\ \x64\x3e\x52\x92\xe3\xe1\xf7\x07\xd1\xd8\xda\x09\x45\x51\x54\x24\ \x13\x63\x08\xca\x32\x76\xed\xab\xc4\x4b\x4b\x3f\xc3\x9a\x8d\xbb\ \xd1\xd8\xd2\x81\x84\x38\x27\x0a\x72\xdd\x00\x41\xcc\x98\x3f\x3c\ \x8f\x60\xb7\x4b\x38\xe5\x84\x19\x38\xef\xf4\x85\x00\x63\x78\xfe\ \x8d\x77\xf0\xde\xb2\xd5\xc8\xc9\x4c\xc7\xa4\xe2\x42\xc8\xb2\x09\ \x66\x61\x8c\x61\xd2\xf8\x51\x98\x3e\x79\x22\x56\x7c\xb9\x0e\xc1\ \x60\xd0\xf0\xf2\xc3\x3d\x7f\x4b\xa6\x50\x96\x71\xea\x82\xf9\x38\ \x50\x59\x5f\xdb\x51\xbf\xeb\x15\x3d\x15\x6c\x29\x06\x65\x8f\x3d\ \xfb\xc3\x77\x5e\x59\x7a\x82\xc3\xa1\xe2\x01\xf5\x11\x35\xd6\x97\ \xce\x06\xe5\x23\x1c\x0d\xb5\x3e\xd0\x8c\x23\x43\xc5\x00\x0c\x56\ \x52\x45\x91\xc0\x26\x01\x81\x20\xb0\x62\xdd\x0e\x7c\xbc\x7a\x33\ \x0e\x54\xd5\xc3\xeb\xf3\xc3\xe7\xf7\x1b\x59\x49\xc6\x18\x82\xa1\ \x20\x92\x13\xe2\xf0\xf3\x9f\x9e\x81\x33\x17\xcc\x41\x72\x42\x3c\ \x1c\x76\x15\xed\x34\x90\x99\xd0\xaf\x05\x00\x37\xfe\xf1\x61\x7c\ \xbe\x66\x3d\xa6\x14\x8f\xc6\x73\x7f\xf9\x13\xb2\x32\x52\x8d\xc4\ \x95\xae\x0d\x3a\xbb\xba\x71\xca\x85\x97\xa3\xa5\xb5\x5d\x75\xfa\ \xf4\xc2\x50\x94\x59\xd0\x15\xbf\x0f\x8f\x3c\xf4\x00\x9e\x7d\x65\ \xa9\xa5\x18\xc4\xdf\x4d\x42\x62\xde\xb1\xcf\xbe\xf6\xe2\xb2\x2b\ \x97\x6e\x6b\x47\x9c\x5d\x44\x72\x9c\x0d\x19\x89\x76\x64\x26\xd9\ \x91\xae\xaf\x93\xcc\x0a\x32\xe5\xeb\x13\x47\x90\x90\x83\x71\x2e\ \x07\x03\x20\x3d\x92\x8b\x4e\x3c\xfd\x7a\x81\xa0\x8c\x1e\x8f\x0f\ \x4d\x2d\x1d\xf8\x6c\xed\x56\x7c\xbc\x6a\x23\x5a\xda\x3b\x60\x97\ \x44\x88\x02\x81\x42\x15\x48\xa2\x00\x77\x52\x3c\x8e\x9b\x3e\x11\ \xd7\x5f\x79\x1e\x8a\x86\xa5\xc2\xe7\xef\x3f\xcf\xa0\x5f\x47\x10\ \x80\x8e\xce\x1e\xbc\xf6\xf6\x07\xf8\xeb\x8b\x6f\xe2\xfc\xc5\xa7\ \xe0\xe9\xfb\x7f\x87\x60\xd8\xe8\xbe\x40\x20\x88\xeb\x7e\xf7\x27\ \x2c\x5b\xbe\x0a\x36\xbb\xcd\x02\x02\xa1\x5a\x94\x00\x30\x28\x5e\ \x2f\xde\x79\xfb\x2d\x5c\x73\xe3\x6d\xaf\x75\xd7\xae\xbf\x01\xda\ \x5c\x03\x11\x80\x90\x2f\x3e\xdf\xf9\xe0\x63\x2b\x1a\x21\x89\x5a\ \x33\x53\xa6\x16\x12\xf4\x35\x18\x41\x92\x4b\x44\x52\x9c\x0d\xc9\ \x2e\x09\xc9\x71\x22\x92\x5d\x12\x92\xe2\x44\x24\x38\x45\x24\x38\ \x25\x24\x3a\xd5\xb4\x6e\xa2\x4b\x82\x24\x9a\x0c\x42\x29\x8c\x16\ \x2f\x40\x64\x4f\x9f\xc1\xaa\xf5\xc1\x32\xd1\x77\xb1\x10\xa8\x0e\ \xa5\xc3\x0e\x54\xd4\x76\x63\xf3\xce\x7d\x28\xd9\x5d\x8e\xd2\x03\ \xd5\x28\x3b\x58\x05\x9f\x3f\x00\x02\x86\x50\x28\x88\x09\x63\x8a\ \x70\xfa\x49\x73\x70\xdc\xac\x49\x98\x3a\x61\x14\x08\x41\xbf\x7e\ \x03\x63\x0c\x76\x3b\x41\x6b\x5b\x0f\x9e\x7a\xfe\x35\x7c\xb1\x6e\ \x13\x7e\x73\xdd\x55\xb8\xe4\xbc\x85\xf0\xf9\xad\xce\xe1\xc3\x4f\ \xff\x13\xf7\xfd\xbf\xa7\x60\xb3\xd9\xb8\x09\xac\x4d\x7f\x80\x7a\ \xbd\xd8\xb7\x67\x27\xc6\x4d\x9a\x7c\x27\x02\x55\x06\x20\x24\x02\ \x12\xf6\xfc\x4b\x9f\xbd\xfc\x75\x93\x5b\xe8\xf5\x85\x06\x29\x19\ \x54\x0b\x37\xcc\x0b\x1a\x6b\x4a\x91\xe4\x92\x90\x93\xea\x44\x4e\ \x8a\x13\x39\xa9\x2e\xe4\xa6\xc6\x21\x37\xd5\x05\x49\x52\x23\x0d\ \x1d\xdc\x28\x10\x44\x74\xf3\xe0\x7b\xe7\x5a\x7a\x06\xf4\x63\x46\ \x04\x01\xff\xd1\x45\x97\x60\x51\x54\xef\x65\xfd\xd6\x7d\x78\x67\ \xd9\x17\xf8\x7a\xf3\x4e\x04\x03\x21\x04\x43\x41\xc8\xb2\x0c\xa7\ \xdd\x86\x6b\x2f\x3d\x1b\x97\x5d\x70\x3a\xe2\x5d\x2e\x48\x92\x18\ \x33\x45\xac\xef\x73\xd8\x81\xdb\xee\x7e\x02\x5b\x77\xee\xc6\x5b\ \xff\x78\x02\xa9\x29\x6e\xc3\x2f\x10\x45\x82\x5d\x7b\xf7\xe3\xac\ \x4b\xaf\x46\x20\x10\xd0\x4c\x82\x99\x33\x48\x4d\x49\xc2\xcb\x7f\ \x7b\x81\x9e\x73\xe6\x82\x98\x90\x30\x01\x42\xca\xc2\x2b\xaf\x7b\ \xf4\xe3\xd4\xe2\x33\xec\x15\xcd\xbd\x83\x66\x80\xf0\x64\x8a\x05\ \xb8\xc0\x98\x95\x29\x34\xf0\x87\x4d\x24\x70\x48\x04\x76\x49\x80\ \x5d\x5b\x27\x38\x25\x64\xa5\xba\x90\x9d\x12\x87\xec\xd4\x38\xa3\ \xe7\x4f\xbc\x53\x45\x21\x31\xad\x36\xa2\x6a\x23\x2b\x60\xf4\x48\ \x82\x40\x8e\xa8\x86\x20\x6a\x1c\x1f\x92\x19\x5a\xda\xbb\xd0\xdc\ \xda\x8e\xaf\x37\xed\xc0\xb2\xd5\xeb\x51\xb2\xbb\x0c\xf1\x2e\x07\ \x8a\x0a\x72\x31\x73\xca\x78\xfc\xe2\xb2\x0b\x30\xa5\x38\x0f\x9e\ \xbe\x48\x07\x52\xb7\xfb\x36\x1b\x41\x53\x4b\x27\x3e\x5d\xb9\x06\ \xdb\x77\xef\xc5\x73\x8f\xdc\x85\x90\xac\x9a\x15\x41\x20\x68\x6e\ \x6d\xc7\x79\x97\x5d\x83\x8a\xea\x6a\x55\x13\x68\x82\x39\x73\xea\ \x14\xcc\x9e\xbb\x28\xf8\xd7\x07\x6f\x39\x0b\xe8\x5c\xa5\x83\x85\ \xc2\x94\xa5\x34\x69\xe4\xec\x9f\x6f\xba\xf6\xc6\x87\x9c\x1b\xcb\ \x5b\x06\x54\xa4\x8c\x03\x74\x1a\xb1\xa8\x56\xaa\xa4\x8c\x19\x20\ \x4a\x70\x40\x45\x1d\xc5\x42\x41\xad\xc7\x6a\x59\x38\xaa\x28\x50\ \xa8\x02\x85\x52\x28\x8a\x02\x45\x51\x10\xe7\x10\x91\xe9\x8e\x43\ \x86\xdb\x85\xcc\x94\x38\xf5\x93\x1a\x8f\xa4\x38\x3b\x12\xe2\xec\ \x48\x70\xd9\x91\x18\x67\x47\x7c\x9c\x1d\x71\x4e\x41\xc7\x99\xaa\ \xbe\x99\xb1\x7d\x64\xca\xc0\x47\x62\xb1\x49\x80\xc3\x01\x74\x76\ \xc9\xf8\x62\xc3\x16\xac\xfd\xa6\x04\xa5\xe5\x87\xb0\x7b\xdf\x01\ \xa4\xb9\x93\x71\xc5\x45\x8b\x71\xe2\xb1\x33\x30\x61\xec\x48\xd8\ \x6d\x24\xc2\x4c\x30\xc6\x60\x93\x08\x3c\x7d\x01\x3c\xfd\xfc\xab\ \x38\x7e\xce\x4c\xcc\x9c\x36\x05\x36\x49\x32\x18\xe5\x8a\xeb\x6e\ \xc2\xf2\x95\xab\x21\x4a\x22\x18\x63\xb8\xea\x92\x8b\xd8\xfa\xdd\ \x2d\xfe\xfd\xeb\x5e\x98\x0d\xc8\xbb\xa3\x41\xc2\x00\x20\x0b\x69\ \x27\x6f\x79\xf6\xb9\xb7\x87\x2d\xdf\xdb\x6e\xf4\xde\x89\x09\x9c\ \x23\x5c\x75\x4a\x07\x2c\xf2\xb5\x7a\xbe\x42\x15\x86\x52\xe5\x53\ \x96\x34\x2c\x35\x0b\x0d\x21\x1c\x79\x2c\x07\x73\x82\x06\x21\x63\ \x8a\x06\x22\x51\xcf\x6d\xb7\x89\x28\xc8\x4e\x46\x61\x6e\x0a\x8a\ \x72\x52\x30\x3c\x37\x15\x45\x79\xa9\x48\x49\x8a\xe7\x8a\x27\xd1\ \xc3\xb1\xef\x83\xb6\x38\x54\x55\x87\x25\xef\x2d\xc3\xbb\xcb\x56\ \x22\x10\x08\xe2\xf2\x0b\xcf\xc2\xf5\xff\x73\x09\x92\x12\xe2\x2d\ \x39\x01\x7e\x2d\x49\xc0\x7b\x9f\xac\xc2\x49\xf3\xe6\x20\x29\x31\ \xc1\x80\x9c\x3d\xfe\xdc\xf3\x78\xf8\x89\xbf\x02\x60\xb8\xe7\x8e\ \xdf\xe3\x9e\x47\x5f\xaf\x45\xc7\x9a\x99\x00\x9a\x63\x31\x40\x3c\ \x12\x27\x3d\x73\xdf\x83\xaf\x5e\xbd\xb1\x39\x1e\x36\x51\x18\x48\ \xff\x6b\x36\x26\x92\x01\xa2\xa5\x29\x79\xaf\x94\x71\x69\x4a\x44\ \x4b\x5e\x68\xa9\xcc\x88\x63\x29\x8d\x80\x40\x1b\x79\x71\xed\x1e\ \xa8\x62\x42\xa7\x75\xbc\x9d\x24\x12\x24\xb8\x6c\x88\x73\xa9\x1a\ \x23\xde\xa9\xae\x33\xd2\x12\x91\x9b\x9e\x8c\x9c\x4c\x37\x72\x32\ \xdc\xc8\xcd\x70\x23\x23\xd5\xae\x6a\x0e\xaa\x9a\x1e\x73\x7d\x74\ \xb5\x88\x4e\x38\x51\x54\x99\xa1\xbe\xb1\x03\x07\x2b\x6b\xb0\x63\ \x4f\x29\xaa\x6a\x1b\x10\xf0\xfb\x71\xd9\x45\x67\xe3\xe4\xe3\x26\ \xc3\xef\x57\xcd\x8a\x1e\x5f\x4b\x12\x41\x7b\x47\x0f\xec\x36\x1b\ \xe2\xe2\x5c\x5a\x55\x92\x60\xf5\x57\x9b\x70\xc1\x4f\x7f\x86\x3f\ \xdd\x75\x1f\x1e\x78\xe8\xe1\x57\xe1\xd9\x7d\x23\xb8\x91\x41\xe1\ \x4f\x23\x01\x64\xf1\xcd\x7f\xfc\xf7\xfb\x07\xc8\x04\x48\x02\xe9\ \x47\x5a\xb4\x32\xa3\x41\xbc\x58\x69\xc8\x81\xf3\xd4\x8c\x86\x31\ \x4e\x18\xa1\x23\x0a\x20\x9c\x39\xe1\x7d\x8e\x88\x02\x08\x5f\x2c\ \x09\xab\x8d\x13\xed\x1c\x0a\x55\x20\x2b\x0a\x14\x59\x36\x4c\x8e\ \x40\x80\xdc\x4c\x37\xf2\xb2\x52\x31\x2c\x2b\x05\xf9\x39\x69\x18\ \x96\x9d\x8e\xf4\xd4\x44\xb8\x1c\x76\xc4\xb9\x1c\x88\x73\xda\x11\ \xe7\x74\xc0\xe5\xb2\x19\x43\xe2\x79\x93\x73\x24\x99\x42\x12\x09\ \x1c\x0e\x15\x8e\xf6\xe1\xe7\x6b\xb1\x73\x4f\x29\xe6\xcc\x98\x8a\ \xe2\xb1\xa3\x11\xe7\x72\x22\x3e\x2e\xce\x62\xe2\xc2\xbb\xb8\xd4\ \xd6\x37\xe0\xf5\x77\x57\xe3\xa9\xfb\xaf\x3c\x0f\x60\x9f\x80\xeb\ \x18\x26\x85\x63\x11\x00\x56\xbe\xff\x60\x69\xc7\xb1\xa7\x9f\x90\ \x5a\xd1\xdc\x8b\x90\xa2\x22\x7c\x03\xb2\x5a\x5d\x23\x61\x1a\x80\ \xc1\x4a\x10\x9e\x48\x3c\x8c\x89\x9f\x3b\x37\xda\x1c\xbc\xe0\x71\ \x2f\x61\x33\x7b\x32\x30\x2b\x04\x9a\x45\x6f\x7a\xc7\xa2\xec\x88\ \x39\x4b\x27\xd7\x50\xc1\x26\x8a\x90\x04\x02\xc6\x44\xc3\x54\x75\ \x74\x79\xd0\xde\xd5\x8b\x9d\xfb\x2a\x0d\xb3\xc4\xb7\xb0\x15\xb8\ \xe1\x70\x79\x99\xa9\x18\x59\x98\x8d\x91\x05\xb9\x18\x55\x98\x8b\ \x91\xc3\x73\x51\x98\x9b\xae\x0d\x85\xb3\x32\xc7\x50\x7d\x11\xbd\ \x7b\xa9\xb7\x4f\xfd\xdd\x69\xf3\x4f\xc0\x69\xf3\x4f\x80\xa2\xa8\ \xef\xd3\x1f\xf0\xa3\xb3\xab\x1b\x29\xee\xe4\xa8\x82\x4a\x29\x43\ \x51\x41\x2e\x0e\x1c\xaa\xe8\x00\x58\x39\xc2\xa6\x9d\x8d\x76\x27\ \x99\x09\x85\xa7\xbf\xbf\x7b\xf5\xa7\xc7\xfa\xfc\x5a\xc7\x72\xce\ \x12\x50\xa6\x9e\x54\xd1\xf2\x02\x94\x31\x28\x54\xfd\xa8\xdb\xd4\ \xfc\x9f\x52\xee\x7f\x73\x2d\x6b\x83\x3e\x14\x45\xfd\x84\x14\x05\ \x21\x59\xfb\x28\x0a\x42\x21\x05\x21\x59\x46\x50\x56\x10\x0a\x99\ \x6b\x75\x9f\x8c\x60\x50\x46\x30\xa4\x6f\x87\xd4\xed\x90\xb9\x1d\ \x08\x06\xa1\x28\x1c\xd1\x18\x07\x95\xe2\x62\x64\x1d\x6e\xae\x33\ \x68\x24\x94\x8a\x1a\xdf\xeb\x93\x48\x47\x68\x35\xcd\xc4\x28\x54\ \x81\x22\xab\x0e\x2c\x55\xd4\x31\x79\xc9\x89\x71\x48\x49\x4a\x44\ \x4a\x52\x3c\xdc\xc9\x09\x48\x49\x4a\x40\x5a\x6a\x32\x72\x32\xd2\ \x90\x9d\x99\x86\x9c\xcc\x34\xe4\x64\xa6\x23\x3b\x33\x11\x36\x09\ \xda\xa0\x17\x80\x2a\xa6\xe9\xe9\x8f\x61\x62\x49\x7d\xf8\x31\x89\ \x09\x84\x65\x4d\x38\xe3\x9b\xde\xaa\xcf\xce\x03\xd0\x12\xa6\xf2\ \x23\x16\x8f\xa7\xbe\x62\xfb\xd6\x3d\xd5\x73\xc7\x14\x15\xaa\x5c\ \x42\xc3\x92\x30\x20\x5a\x82\x87\x7c\xeb\x8c\x9e\xd9\x18\x59\xeb\ \xc3\x0b\x58\xb6\xc3\x31\x88\x42\xd8\xcc\xe2\xfa\x77\xe1\x09\x23\ \x59\x51\x53\xb7\xfe\x40\x08\xfe\xa0\xac\xad\x43\xea\x3a\x10\x84\ \x3f\x20\xc3\x17\x08\x6a\xdb\x41\xf8\x02\x21\xf8\xfd\x01\xf8\x03\ \x21\xf4\xf9\x03\xf0\x07\x02\xda\x88\x9d\x00\x7c\x81\x00\x7c\xfe\ \x00\x02\x81\xa0\x46\x60\x93\xe8\xc6\xb6\xa2\x80\x52\xc5\x60\x04\ \x4a\x55\x5f\xa4\xbb\xd7\x83\xce\xae\x6e\xf5\x58\xaa\x9a\x9a\x50\ \x28\x84\x60\x28\x84\x50\x28\x84\x90\x1c\x02\x55\x14\x64\x65\xa4\ \x61\x64\x41\x2e\x46\x14\xe6\x63\xe4\xf0\x3c\x8c\x2c\x1c\x86\x82\ \xbc\x5c\xb8\x9c\x0e\x38\x1c\x76\x38\xec\x36\x38\x1c\x0e\x38\x1d\ \x76\x48\x92\x60\xce\x9d\xcc\x06\xd6\x20\x9b\x77\x54\x93\xde\xea\ \x8a\xed\x88\x32\xd3\x68\x34\x06\x08\x40\x6e\xfc\xe2\xf9\x25\x4b\ \x7f\xfd\xe4\x5d\xbf\x67\x94\x1a\xed\x66\x06\xf2\x07\xa3\x26\x66\ \x06\xb6\x71\xda\xb8\x7c\x58\x6b\x18\x46\x2b\x58\x3a\x74\xf0\x08\ \x2f\x0d\x4e\x87\x0d\x4e\x87\x0d\x48\x74\x0d\x98\xd1\x8b\xa9\x13\ \xc3\x9e\x93\x31\x5d\x1b\xf0\xdb\x4c\x4b\x86\x0d\xe6\x3b\x6e\x1f\ \x55\xcb\xcc\x7d\x7d\x7e\x78\x7d\x7e\xf4\xf9\x7c\xe8\xeb\xf3\xa1\ \xa7\xd7\x8b\xcd\x3b\x76\x21\x18\x08\x6a\xda\x2d\x88\x50\x28\x88\ \x40\x30\x08\xa7\xc3\x8e\xfc\x9c\x6c\xe4\xe5\x66\x23\x2f\x27\x1b\ \xf9\x39\xd9\xb0\xc7\x68\x76\x25\x0a\x60\x8f\xbf\xb0\x94\x80\x35\ \x7e\x01\x20\x30\x18\x06\x50\x80\x9e\x8d\x25\xdb\x37\x55\x7b\xbc\ \xfe\xc2\x38\x97\x23\xe2\xad\x84\x8f\x13\xd0\x09\xd2\x5f\x78\xc3\ \x1f\x3f\xd0\xef\xa2\x15\x78\x62\x31\x61\x78\x43\xa9\xc3\x0d\xed\ \x58\x4c\x47\x22\xba\x54\x1d\x69\x68\x39\x09\x6f\x1d\x4b\x10\x73\ \xe6\x30\x23\x21\x46\x75\x93\x1c\x3b\x83\xd8\xe3\x09\x90\x6f\x36\ \x6e\xaa\x06\x7a\x36\x22\xca\xe4\x92\xb1\xe2\xbc\xae\x8e\xc6\xed\ \x2f\xd5\x37\x37\x23\x7c\xac\x3e\x8b\xe6\xbb\xf5\x43\xf8\xa1\xe4\ \xe7\x79\x22\x0f\xdc\xda\x3d\x76\x59\xf9\x87\xb2\x58\x33\x7d\xb0\ \x84\x9e\x8a\x02\xc8\xb2\x5a\x2b\x08\x85\x80\x60\x50\x37\x69\x40\ \x20\xa0\xee\x0b\xc9\xcc\x68\x6a\xc5\xfb\x02\xfc\xf9\x6b\xea\x9b\ \xd1\x56\xb7\xfd\x25\xbd\xfa\x37\x48\x06\x20\x7e\xf4\xb5\x7e\xf5\ \xf2\xbf\xde\xee\x73\x39\xb5\x71\xe4\x43\x52\xeb\x83\x3f\x3e\xda\ \x68\xa3\x81\xb4\x48\xb8\xf4\xff\xb7\x2f\x3a\x51\x45\x41\x2d\x3c\ \x39\x1d\x80\xcb\x09\xb8\x5c\x04\x1e\x8f\x17\xbb\xf6\x96\xa1\xa1\ \xa9\x59\x6b\x82\x65\xbe\x20\x97\x13\xec\xe9\x97\xde\xee\x43\x5f\ \xeb\x57\x00\xf1\xf7\x6b\xfa\xa2\x2c\x59\x48\x9a\xb7\x7a\xe3\xca\ \x55\x13\xe2\x5c\xce\x6f\x5d\xa9\x1b\x2a\x26\x70\xb0\x28\xa0\xef\ \x6b\x0d\x60\xb0\x49\x1f\x41\x73\x78\x05\xc1\x9c\x18\xaa\xc7\x23\ \xa3\xb3\xab\x07\x9d\x5d\xdd\x68\x6b\xef\x44\x6b\x47\x07\x5a\x5a\ \xdb\xd0\xd7\xe7\x83\x20\x0a\x90\x44\x01\x4e\x87\x03\x69\x29\x6e\ \x8c\x18\x5e\x80\x89\xe3\xc7\x42\x14\x88\x91\x7f\x90\x24\x15\x07\ \xd9\xd4\xea\xc1\x98\xa9\xa7\xed\x45\xef\xfa\x05\x7c\xf6\x6f\x20\ \x1f\x40\x5f\xba\x11\xa8\x7e\xf5\xdd\xcf\x57\x3e\x76\xf9\x79\x67\ \xf5\xab\xd6\xfb\x93\xe0\xc3\x19\xae\x1d\xce\x0c\x47\x4a\x8b\xfc\ \x27\x89\xcd\x3b\x87\x54\xd3\xf7\x4d\xad\xed\x28\xaf\xa8\xc6\x81\ \x43\xd5\xd8\x5f\x51\x8d\xf2\x43\x95\x38\x54\x59\x83\x90\x2c\x43\ \x14\x08\xec\x76\x09\x73\xa6\x4f\xc6\xc2\xe3\x8f\xc5\xb9\x67\x9c\ \x82\xdc\xec\x34\xa3\x18\x16\xfe\x5e\x28\x83\x1a\x52\xcb\x21\xbc\ \xf6\xea\xdb\x78\xf0\xf1\x27\xf1\xbb\xdf\xfe\x09\x08\x54\xbf\x0a\ \x75\xbe\x00\x0c\x55\x03\x08\x00\x8a\xc6\xcc\xbe\x66\xf5\xc7\xaf\ \xbf\x54\x10\x08\x30\x12\xad\x5c\x1b\xcb\x26\xf7\x27\xd5\x03\x69\ \x85\xc1\x76\xfd\x88\x85\x2d\x3c\xea\xe5\x5e\xa8\x2d\x5b\x44\x01\ \x46\xd9\x57\xd4\x22\x99\x86\x26\x0f\x6a\x1a\x5b\x50\x5b\xdf\x8c\ \x9a\x86\x66\x54\xd7\x35\xa1\xa9\xa5\x0d\xde\x3e\x1f\x3c\x7d\x7d\ \xf0\x7a\xfb\xe0\xf1\x7a\x8d\x96\x2e\x72\x28\x88\xcc\xf4\x54\xcc\ \x9e\x36\x11\xb3\xa7\x4e\xc4\x94\x09\x63\x91\x9e\x9a\x82\xf4\x54\ \x37\x52\x53\x12\x21\x10\xd3\x2f\xe0\xb9\x5c\x2f\x01\xbb\x9c\x40\ \x59\x79\x3d\x5e\x7a\xe3\x2d\xac\xdd\xb0\x11\x07\x0e\x1d\x42\xc8\ \xe3\xc5\x33\x4f\x3d\xc2\x5e\x5e\xba\xb2\x66\xc7\x9a\xbf\x2f\x00\ \x50\x19\x9e\x00\x1a\x8c\x06\xa0\x00\x69\x2a\xdf\xbc\xea\x8d\x15\ \x6b\xb7\xfc\x69\xfe\xb1\x33\x19\x8b\xc1\x30\xfd\x8d\x1e\xee\xcf\ \x47\x18\x8c\x97\x3f\x18\x28\xd9\x91\x2c\xc6\x10\x62\xcd\x35\xc8\ \x0a\xe0\xf1\x06\xe0\xe9\xf3\xc3\xd3\xe7\x53\x3f\x5e\x3f\x9a\x5b\ \x3b\x51\xd7\xd4\xaa\x7e\x1a\x5a\x50\xdb\xd8\x8a\xc6\x96\x36\x30\ \x4a\x0d\x9c\x83\xde\x1c\x4b\x4f\x95\xa7\xbb\x93\x91\x91\x96\x8c\ \x31\x23\x0a\x30\x61\x4c\x11\xa6\x4f\x1e\x8f\xe9\x93\xc7\x21\x27\ \xd3\x85\x40\x48\x75\xec\x14\xce\x4f\x57\x14\xd3\x6d\xe7\x0b\x3f\ \x8a\x02\xec\x3f\x58\x81\x0d\x9b\xb7\xe1\x9f\x4b\xfe\x8d\xb2\x3d\ \x7b\x21\x38\xec\x10\x45\x75\x24\x72\x5a\x4e\x16\x4b\x74\xe7\x90\ \x1d\x6b\x3e\x7d\x03\x20\x4d\x5a\xf6\x6b\xc8\x1a\x40\xff\x7e\x9c\ \x7b\xec\x4f\x77\xae\x59\xfa\xa6\xcd\x26\x89\x43\x1a\xd7\xf7\x6d\ \x21\xe2\xfd\x27\x90\xa2\x47\x1b\x03\x87\x5d\xe6\x63\xf3\x7d\x30\ \x83\x21\x19\x55\x75\x6d\x38\x54\xdb\x84\x8a\x9a\x66\x1c\xac\x69\ \xc2\xa1\x9a\x46\xb4\x75\x74\x5b\xea\x0e\x46\x0f\x9e\x28\x35\x06\ \xbe\x03\x8a\x22\x2b\xc8\x4a\x77\xe3\xc4\x39\xc7\xe0\xa4\x63\xa7\ \xe2\xd8\x69\x13\xa0\xf6\x5d\x20\x51\x22\x80\xc1\xb4\x9f\x03\x7c\ \xbe\x00\x9e\x7a\xfe\x15\xbc\xf8\xfa\x5b\x90\x65\x35\xb1\x64\xa9\ \x6f\x80\x41\x0e\xc9\x38\xe7\xcc\x45\xf8\xaa\xa4\x3e\xd4\xb9\xef\ \xad\x29\xd0\x06\x80\xc4\x3a\xaf\x34\x88\xf0\xb8\xb6\xb7\x61\xeb\ \x83\xdb\xf7\x96\xdd\x33\x6b\xca\xc4\x21\xd9\xe5\xc3\xf5\xf2\x87\ \xa6\x45\x4c\x0c\x9d\x28\xc0\xb2\xf6\xf6\x01\x4d\x6d\x3d\x68\x6c\ \xeb\x41\x73\x7b\x37\x9a\xda\xba\xd0\xd4\xd6\x83\xae\x5e\x2f\x7a\ \x7b\xfb\xd0\xed\xf5\xa9\x6b\x8f\x17\xde\x3e\xbf\x31\x2a\x48\xe0\ \xe6\xfe\x31\x00\x9f\x30\xab\x8f\x94\x52\x2d\x8b\x27\x83\x51\x05\ \xa3\x8b\xf2\x30\x71\xcc\x70\x4c\x1a\x5b\x84\xe1\xf9\x59\xc8\xce\ \x48\x45\x6e\x56\x3a\x92\x13\x6d\xaa\x14\x0f\x90\xd6\x8d\xb6\x4f\ \x92\x54\x98\xd9\xa6\x92\x03\xf8\xf7\x87\x9f\xe2\x9b\xad\x3b\xb0\ \x67\xdf\x3e\x40\x9b\x69\x2d\x7c\xa2\x6b\x7d\x25\x88\x02\x2e\xb9\ \xe8\x12\x7c\xfc\xc9\xc5\x0f\x02\xa8\x1d\x28\xb3\x31\xb8\x26\xa8\ \x44\x9a\x5c\x7c\xdc\x2f\x56\x7d\xf4\xca\xb3\x69\x81\xa0\x9a\x19\ \x1c\x0c\x48\x33\x56\x2a\x38\x5c\x82\x63\x8d\x17\xd0\xfb\xe7\xe9\ \x6a\x19\x00\x42\x32\x45\x40\xc3\xf0\x07\x42\x32\x02\x01\x19\xbd\ \x7d\x7e\xd4\xb7\x74\xa3\xae\xb9\x0b\x75\xcd\x9d\xa8\x6d\xee\x44\ \x5d\x63\x27\x3c\x3e\xbf\x31\x53\x97\x60\xf4\xda\x33\x07\x7c\x58\ \xaa\x88\x7c\x75\x52\x1f\x0c\xc2\x95\x93\xed\x36\x11\x49\xf1\x4e\ \x24\x25\xb8\x90\x9d\xee\xc6\x8c\x49\xa3\x30\x63\xf2\x58\x4c\x2d\ \x2e\x80\x28\xaa\xf1\xba\x2c\x1f\x5e\xc9\x98\x87\x91\xf9\xfd\x32\ \x6a\x1b\x1a\xb1\x6a\xed\x37\x78\xe1\x8d\xb7\x51\xd7\xd0\x00\x87\ \xcd\x66\x74\x51\xe1\x4b\xe0\x11\xa5\x78\x4a\xf1\xe8\x7d\x77\xb2\ \xd7\xdf\x5f\xd7\xbe\xe3\x8b\xbf\x2f\x04\x93\x77\x0d\x24\xae\xd2\ \x60\x6e\x0f\x2c\x54\x51\xba\x75\xd5\xeb\x2f\xfd\x6b\xd9\x6f\x2e\ \x3b\xef\x0c\xf0\x7d\xfb\x86\xe2\xe5\x47\x66\x02\x4d\xac\x9f\x0e\ \x9d\xd2\x89\xdd\xd1\x1b\x40\x6d\x4b\x0f\x6a\x9b\xbb\x51\xdb\xdc\ \x8d\x9a\xa6\x2e\xd4\xb6\x74\x21\x14\x92\x8d\xdc\xbb\x42\x29\x14\ \x59\xb6\x96\xa0\xb5\x35\x11\x08\x12\xe3\x1c\x51\x86\x4d\x83\x83\ \x31\x33\x53\x80\xf4\x7e\x88\x8a\x3a\x94\x9b\x31\x86\x49\x63\x86\ \x61\xde\xb4\xb1\x98\x3b\x6d\x3c\x0a\x72\xd2\x21\x49\x22\x24\x49\ \x84\xc8\x71\x7d\x78\xe3\x87\xa1\x10\xdf\xc4\xfa\x11\x34\xb5\x76\ \xe3\xd1\xe7\x5e\xc1\x27\x2b\xd7\x22\x10\x0c\x40\x0e\x85\x00\x30\ \xc4\xb9\x5c\x1c\x46\x22\x86\x26\xe4\xfe\xe9\xf4\x8a\x64\xc7\xfa\ \xe5\xaf\x83\x85\x2a\x06\x93\xd7\x1c\xec\xdd\x0a\x00\x0a\x32\xc7\ \x5d\xb0\xec\xcb\xf7\xde\x19\xcf\x18\x23\xfd\x81\x34\x05\x62\xc6\ \xb5\xba\x3a\x06\x80\x6e\xaf\x8c\x2e\x6f\x00\x9d\x9e\x00\x3a\x7b\ \xfd\xe8\xea\xf5\xa3\xd3\xe3\x47\x8f\xd7\x8f\x6e\x8f\x1f\xdd\xda\ \xba\xcb\xe3\x83\x1c\x52\x34\xf5\xce\x8c\xe9\xd3\xd5\xc7\x89\x0e\ \x3a\x19\x10\x93\xc0\x1d\x2b\xcb\x0a\x64\x59\xad\x1c\x26\xb8\xec\ \x18\x55\x98\x85\x51\xc3\x32\x31\xb2\x20\x0b\x05\x39\x69\x28\xcc\ \x4d\xc7\xb0\x9c\x14\x88\xa2\x96\x91\x53\x8e\x2c\x18\xc4\x6e\x53\ \x35\xdb\xba\x4d\x7b\xb1\xe2\xcb\x0d\x58\xbb\xa9\x04\xbb\xcb\xca\ \xe1\xb4\x49\x10\x45\xc1\x68\xec\xc4\x8c\x96\x39\x56\xa9\x67\x51\ \x90\x54\x21\xbf\x1f\x4b\x5e\xfe\x3b\xfb\xfd\x03\xcf\x95\xd6\xed\ \x5a\xba\x18\x40\x4d\x2c\xcf\xff\x70\x18\x00\x80\xe0\x80\x90\xfe\ \x93\xb3\x2f\xbb\xe3\xf5\x47\xef\xbc\xc5\x88\x47\x15\x4a\xa1\x30\ \x06\x45\x31\x4b\xbe\x6d\xbd\x7e\x34\x75\xfa\xd0\xd4\xd9\x87\xa6\ \x0e\x2f\x1a\x3a\xbc\x68\xed\xea\xe3\xa6\x86\x37\x27\x82\x24\x03\ \xa8\x35\xbd\x0b\x56\x38\x08\x24\x1a\x08\xd5\x22\xe9\xbc\xb3\xc6\ \x18\x1c\x36\x11\x4e\xbb\x08\xbb\x5d\xc2\xf8\xa2\x6c\xcc\x9a\x54\ \x84\xd9\x93\x47\xa2\x20\x27\x01\x21\x19\x86\xad\x3e\xd2\xd8\x41\ \x1e\xe7\xdf\xe7\x0b\xa2\xad\xa3\x0b\xef\x7c\xb2\x0a\x2f\x2f\x79\ \x1f\x5e\x5f\x1f\x6c\xa2\x68\x6d\x9a\x19\x86\x8e\x02\x54\xcc\x64\ \x7f\xe8\x28\xc6\x18\xe6\xce\x9c\x86\xec\x61\x13\xf1\xf6\x8b\x0f\ \x5e\x01\xd6\xfe\x36\x40\x03\x83\x8a\x7c\x86\xf8\x3c\x19\x42\xda\ \xec\x97\x97\xbe\xb2\xe4\xac\xcf\xf7\x51\x04\x64\x59\x95\x26\x85\ \x42\xd6\x6a\xfa\xb2\x42\xcd\x9e\x36\xa0\x5a\x69\x9d\xeb\x5f\xc3\ \xcc\x3a\x7a\x24\x88\x84\x19\x8d\xa2\x08\xc2\xa0\x5f\xd1\x5a\xa6\ \x71\x10\x33\xbd\x3c\xab\x4a\xb7\x8c\xa4\x38\x3b\xa6\x17\x17\x60\ \xe6\x84\x02\x1c\x33\x2e\x1f\x09\x71\x4e\x38\x1d\x12\x5c\x0e\xbb\ \x31\xe2\x89\x1d\x45\xb0\x28\x63\xea\xcc\x24\x2e\x17\xb0\xbb\xac\ \x1e\x7f\x7d\x65\x29\xb6\xec\x28\x45\x77\x6f\x0f\xe4\x90\xac\x99\ \x1c\x13\x2b\x39\x10\x92\x8a\x7f\x66\x16\x76\x6c\xc8\xe3\xc1\xbf\ \x96\xfc\x2f\x2e\xbd\xf6\xfa\x0f\x69\xfb\xe6\x9f\x43\x1b\xfb\x7f\ \xe4\x19\x40\xb0\x89\xa0\xa1\x29\x53\x4e\xbe\x79\xd5\x1f\xef\x78\ \xc8\xfd\xfa\x9a\x43\xc4\x50\x55\x7c\x4b\x12\x5d\x7a\x35\x54\x30\ \x0d\x83\x71\x21\x6c\x08\x53\x38\x21\xad\x2f\x40\x07\x7f\x72\x84\ \x96\x15\xc8\x8a\x6a\xfb\x33\x52\xe2\x91\x9f\x99\x84\xfc\xcc\x24\ \x14\xe6\xa4\x62\x44\x7e\x2a\x46\xe6\xa7\x23\x33\xd5\x01\x85\x6a\ \x8d\x2d\x95\xef\x0e\x15\x6c\xb7\x01\x81\x20\xc3\xe6\x1d\xa5\x58\ \xbb\x69\x27\x3e\x5f\xb3\x01\x87\xaa\xeb\x54\xc6\x13\x48\x54\x78\ \x5c\x44\xbf\x82\x7e\x30\x91\x11\xf0\x39\x46\xf1\xcc\x23\xf7\xb2\ \x57\xde\x5e\xd3\xb5\xf9\xf3\xc7\x17\x40\xb0\xed\x02\x0d\x29\x83\ \xbd\x5f\x69\x48\x4f\xa7\x9e\xb8\x7c\xe7\x37\x9f\x3c\xf9\xfe\xbb\ \xe3\xee\xcb\x2a\x3a\x19\x4d\x9d\x6a\x8d\x81\xb0\x48\x83\xa3\xa7\ \x1f\xf4\x89\xd5\x0c\x1c\x21\xdf\xee\x92\xc3\x01\x90\x68\xd0\x2d\ \xa6\xb7\x83\x13\x21\x0a\x40\x52\x9c\x1d\x53\xc7\xe5\x60\x56\x71\ \x3e\xa6\x8e\xcb\x85\xcb\x21\x98\x99\x32\x6e\xe9\xf3\x1f\xbe\x73\ \x76\x38\xe5\xdc\x60\x30\x84\xb6\xce\x6e\xbc\xbc\x74\x19\x96\x7e\ \xb4\x1a\x8c\x51\xad\x11\x15\x43\x42\x9c\x0b\x3a\x24\x8e\xf1\xad\ \xef\xb8\x07\x25\x5c\x37\x0f\xf5\x7d\x32\x50\xe3\x7f\x6b\x09\xd6\ \x78\x7d\x8c\x61\x58\x6e\x0e\xd6\x6f\xaf\x26\x9b\xd7\xbc\xf7\x18\ \x80\xf2\xa1\x10\xff\x70\x4c\x80\xfe\x9b\x4c\x21\x75\xc6\xe3\x4b\ \x5e\x5a\xf2\xb3\xf7\x76\x05\x99\xc7\x17\x24\x3c\xbe\xdf\xec\x63\ \x6b\xc2\xb5\xfb\x6b\x76\xa4\x4b\x83\xac\x28\x90\x43\xaa\x74\x17\ \x66\x27\x63\xd2\x88\x74\x4c\x1c\x99\x81\x82\xac\x64\x24\xc6\xa9\ \xd8\xff\x38\xa7\x64\xc1\x06\xfe\x27\x4a\xc1\x3a\x2e\xdf\xe5\x04\ \xbe\xdc\x58\x8e\xd7\xde\x5d\x81\x7d\x07\xab\xd0\xd4\xda\x61\x64\ \x02\x23\x40\xa8\x51\xa4\x9e\x87\xbf\x5b\x4c\xa1\xa6\xf5\x06\x02\ \xc2\xa6\xa6\x24\xb3\x17\x9e\x7a\x92\x9c\xfb\xb3\xab\xde\x50\xda\ \xb7\xfe\x56\x53\xfd\xec\x68\x33\x00\x40\x44\x01\x4c\x29\x16\x72\ \x16\x2d\xfb\xc7\xd3\x2f\x14\xfc\x7b\x53\x2b\x6c\x22\x22\x9a\x17\ \x53\x16\xe9\xcc\x30\x0d\x0f\x28\x2b\x32\x6c\xa2\x80\xb4\x24\x3b\ \xd2\x93\x5c\xc8\x70\x3b\x31\x32\xd7\x8d\x51\xf9\x29\x18\x3d\xcc\ \x0d\x87\xcd\xec\x4b\xac\x8f\x7a\xf9\x36\xdd\xc0\x8f\x44\xe5\xce\ \x66\x03\x7a\x7a\x83\xd8\x53\x5e\x8d\x2f\x37\xee\xc4\xfb\xcb\xd7\ \xa1\xbd\xb3\x0b\x4e\xbb\x8d\x6b\x78\x1d\xbd\x43\x57\xb8\x89\x8c\ \xe8\xea\x1d\xcd\xcb\xef\xc7\x07\x0a\xf8\xfd\x78\xee\xb1\xbf\xe0\ \x86\xbb\x9e\xae\x66\x4d\xcb\xcf\x04\x11\xcb\xc0\x94\x21\x4f\x79\ \x25\x1d\xde\x1b\x51\x28\x80\x72\xda\xb8\xfc\x8a\x37\xdf\x7c\xe1\ \xb3\xeb\xae\xff\xbd\xeb\xb5\xd5\xe5\x8c\x9b\xd4\xdb\xda\xb4\x58\ \x9b\x4a\x84\x00\x18\x9e\x9b\x84\x63\x46\xa4\x63\xea\xa8\x0c\x14\ \x66\x27\x9a\xea\x9f\x98\x43\xbd\x64\xd9\xcc\x89\x93\x18\xf3\x16\ \x1d\xcd\x12\x70\x38\xd8\x92\x31\xa0\xb2\xb6\x19\xcf\xbe\xf1\x31\ \xd6\x7c\xb3\x43\x1b\x87\xaf\xbe\xeb\x38\x97\xc3\x18\x96\xad\x3f\ \xb9\xda\xa4\x39\x4c\x6d\x6b\xea\xdf\xe8\xea\xc9\x49\x20\x05\x22\ \xdb\x1c\xc2\xda\x0c\x9a\xb7\x8c\x8c\x31\xf6\xe4\x43\x7f\x26\x1f\ \xac\xdc\xd4\xc7\x9a\x96\x5f\x01\xe0\xe0\xe1\x10\xff\xf0\x19\x40\ \x4b\x9f\x03\x28\x59\xfb\xc9\x6b\xf7\xe6\x64\xe7\x3d\x3c\xe5\x98\ \x53\xb1\x69\x7f\xab\x36\x3a\x87\x60\x44\x56\x02\x46\xe6\x24\xa1\ \x28\x3b\x01\x69\x89\x0e\xb8\x13\xec\x70\x27\x38\x60\x93\x8c\x06\ \x56\x5a\x5b\x13\xc2\x11\x72\xe0\x7c\xf8\x50\xca\xc4\x87\x05\xbc\ \x20\x80\xc3\xae\x56\xfa\x3e\xff\x7a\x0f\x3e\x5e\xbd\x19\xfb\x0e\ \xd5\x6a\xd3\xbe\x70\xd3\xb6\x68\x4d\x19\xcc\xf6\xad\x1c\x61\x99\ \x09\x67\x37\xec\x3b\xb7\xcf\xb0\xf5\x7c\xa3\x47\x98\x21\x32\xbf\ \x8f\x85\xf9\x0b\xc1\x40\x10\x67\x9f\xbe\x00\x25\xfb\x9a\xb1\xf2\ \xdf\x2f\xdd\x07\x60\x3b\xa2\x60\xfd\x8e\xae\x09\xb0\xfe\x3e\x15\ \x89\xc5\x77\x3f\xf6\x97\x67\x6f\x2c\x18\x3d\x95\x15\x66\xb8\x48\ \x6e\x9a\x43\xcb\x11\x58\x07\x49\xf0\xa9\xe2\xc1\x96\x7b\x8f\x36\ \x08\x44\x57\xef\x92\x08\x74\x74\xfb\x50\x55\xd7\x8a\x4f\xbf\xda\ \x86\x77\x97\x6f\x40\x28\x14\x82\xdd\x26\x59\x9a\x31\x46\x1b\xc0\ \x12\xad\x43\x57\x44\xb8\x16\x2d\x6f\xc1\x62\x87\x76\x96\x11\x55\ \xda\xb1\x94\x52\xcc\x9d\x39\x95\x5d\x7e\xe9\xe5\xe4\x7f\x7e\x7e\ \xcd\x33\xf0\x94\xde\x0b\xb5\xe3\x27\xfb\x4f\x31\x80\x7e\x8e\x5c\ \xa4\xcc\x78\xf6\xe1\x7b\x1f\x39\xf7\xfc\xd3\xe6\x5b\xa6\x62\x3b\ \x9c\x86\x52\x83\xc1\x1c\x1c\x29\x06\x90\x44\x60\x7b\x59\x0d\x9e\ \xfb\xdf\xcf\x51\x7a\xb0\x0e\x8a\x16\x5e\xea\xd2\xc9\x13\x5d\xed\ \x4d\x1c\x25\xdc\x0d\xb3\xdf\xd1\x7d\xa0\xb0\xa1\x71\x03\x8c\x92\ \x62\xfc\x18\x06\xed\xfb\xa4\xf8\x38\xdc\xf1\xdb\xdf\xe3\xd6\xdb\ \xef\xf8\x00\x9d\x5b\x6f\x00\xd0\xf0\x6d\x88\xff\x6d\x4d\x80\x69\ \x96\x88\xd0\x84\xce\xad\x37\xdf\xf9\xc0\x3d\x2e\x77\x52\xe2\xa2\ \x53\x8f\x9f\xa9\xe6\x72\x06\x59\x83\x1f\x2a\xfa\xe7\x70\x50\x40\ \xfc\x18\x7b\x7f\x80\x61\xd5\x37\x7b\xf0\xe5\x96\x32\xec\x2c\xab\ \x42\x73\x5b\x17\x6c\xa2\x60\xa4\x9b\x0d\x1b\x6e\x34\x63\xe4\x5a\ \xaf\x1b\x93\x39\x98\x19\x4d\x1a\xd1\xa8\x91\x81\x91\x58\x1d\xcf\ \x61\xdd\xe6\xba\x9f\xf3\xea\xd2\x08\x0b\xb5\x68\x20\x37\x2b\x93\ \xfd\xf6\xa6\x9b\xc8\x4d\xb7\xdf\xbd\x1c\x9d\x5b\x6f\x06\x11\x9a\ \x8c\x7e\xfa\xdf\x52\x7a\x8f\xd4\x22\x02\x28\xb2\xe5\x9c\xf2\xde\ \x3b\x2f\xff\x63\xd2\xe4\x71\x23\x98\x42\x19\x19\x68\xa6\xf1\xc1\ \x60\x02\x63\x55\x19\x07\x3b\x56\x41\x20\x40\x67\x8f\x0f\xf5\x2d\ \x9d\x58\xfa\xd9\x26\x7c\xb6\x76\x27\x44\x41\x2d\xab\x86\x4b\x32\ \x8b\x32\x16\x91\xd1\x21\x26\x69\x06\x90\xe4\xf0\xfc\x7e\xcc\x4c\ \xa7\xa6\xfa\xf3\x72\x32\xd9\xdf\x1e\x7f\x84\x9c\xf1\xd3\xeb\x76\ \x87\x1a\x57\x9e\xaf\x21\x7c\x14\x1c\x21\xf5\x7d\x24\x17\x09\x10\ \x8a\x6d\x39\x0b\xde\x7c\xee\x91\x07\x27\xcd\x9f\x3b\x13\x83\x6d\ \x05\x73\x38\xe0\x91\xfe\x18\x40\x10\x00\xbb\x04\xac\xda\x78\x10\ \xaf\x7e\xb0\x0e\x8d\x2d\x9d\xe8\xf3\x07\xac\x33\x6b\x84\x8d\x61\ \xa4\x31\x86\xb6\xc7\x1c\x60\x1a\x2b\xb6\x37\x7c\x04\x33\x13\x4a\ \xc2\xae\xd1\xef\x20\x57\x8d\xc9\x14\x45\x41\x52\x62\x3c\xee\xfb\ \xe3\xed\xb8\xe1\x0f\x0f\xec\x0e\x35\xae\xbe\x0c\xa0\xa5\xe0\x06\ \x77\x7e\xdf\x18\x40\x37\x2b\xc3\xc5\xcc\xe3\x9f\x7d\xe8\xae\x7b\ \x16\xfd\xf4\xec\xf9\x4c\x96\xd5\xea\xe1\xd1\xc2\x04\xea\x8e\x9c\ \xdd\x06\x74\x74\x07\xb0\x61\x47\x05\x36\xec\x38\x84\x8d\x3b\x0f\ \xa1\xc7\xeb\x83\x5d\x12\xd0\xdf\xc4\x4a\x44\xcb\xd2\x59\x09\xa9\ \xa7\xab\xf5\x29\x58\x74\xe2\xa8\xfb\xa9\x1e\xfa\x51\x1a\xb3\x97\ \x3f\xb4\x09\xb0\x28\xbf\x9f\x93\x7e\x23\x7c\x0c\x4b\x75\x33\xc6\ \x10\x0c\xfa\x31\x6f\xe6\x54\xb6\xf8\xf4\xc5\xe4\x8e\x7b\x1f\x5a\ \x1e\x6a\x5e\x7b\x03\x80\xaa\x23\x49\xfc\xa3\xc5\x00\xba\x39\xc8\ \x43\xca\x8c\xa7\x1f\xb9\xf7\x2f\xe7\xfe\xe4\xac\x85\x8c\x52\x40\ \x10\xb8\x11\x58\xdf\x0a\x22\x6e\xcd\xeb\xf7\xf9\x82\xa8\x6c\x68\ \xc7\x6b\x1f\x6d\xc2\xc6\x5d\x15\x90\x44\x41\x1b\xb2\x4d\x07\x9c\ \x4d\xab\xdf\x06\x8b\x51\x1c\x3e\x06\x0a\x42\x07\x9e\xa6\x2d\x56\ \x2b\xf7\x41\xdd\x0f\xa5\xec\xcc\x53\x4e\xc4\x69\x0b\x17\x91\xff\ \xf9\xf5\x8d\x1f\xa0\x73\xeb\xcd\x00\xea\x8f\x94\xda\x0f\x27\xd4\ \x51\xc9\xa5\x80\x08\x1e\xf8\xea\xd7\xae\x5a\xb7\xcd\xd6\xdc\x23\ \xcc\x3e\x73\xfe\x4c\x22\x2b\xcc\x68\x04\x35\xd8\xa9\xe4\xa3\x21\ \x89\x6c\x92\x1a\xb6\x2d\xfb\x7a\x3f\x1e\x7d\x7d\x0d\xde\x5c\xb6\ \x15\x1f\xae\xd9\x8d\xa6\xf6\x9e\xb0\xa6\x16\xd1\xe7\xda\x61\x61\ \x93\x2e\x58\x1a\x2c\x72\xc7\x12\x3d\xc6\x27\x66\xcb\x75\x33\x1f\ \xcf\x67\x6e\x98\x39\x79\x73\xc4\x64\x0e\x30\xa6\x6d\x89\x79\x3f\ \xdc\x94\x30\x7e\xbf\x0f\x8f\xdf\xfb\x07\xd2\xdc\x25\x93\xfb\xee\ \xfb\xd3\x33\xe8\xd9\x79\x27\x88\xd0\x08\x30\xe5\x68\x10\xea\x68\ \x27\x52\xd5\x3c\x81\x90\x7f\xed\xf1\x8b\xaf\xb8\xfb\xf1\xbb\x7f\ \xe7\xca\xce\x70\x33\x45\x89\x0d\x31\x8f\x5c\xab\x65\x55\x9b\x0d\ \x68\x6c\xeb\xc3\xee\x83\x8d\x58\xb7\xbd\x02\x5f\x6f\xaf\x80\x42\ \x29\xec\x22\xb1\x00\x42\xf8\x69\x54\x2c\x80\x0a\xad\x9d\x0c\xaf\ \x66\x0d\xfb\x0f\x13\x37\x80\x30\x55\x4e\x19\x57\x95\xe4\xcf\x6d\ \x5c\x83\x6b\x51\xc3\x58\xcc\xb6\x37\x56\x6d\x42\x0d\xd0\x87\xae\ \x45\x14\xaa\x20\x23\xd5\xcd\x7e\x73\xdd\x35\xe4\xa3\x95\xdf\xf8\ \x56\xfe\xfb\xa5\x7b\xc1\xea\x5f\xfa\xb6\x71\xfe\x7f\x9a\x01\xf4\ \x6b\x24\x00\x98\x26\x64\x2f\x7a\xfd\xc3\x7f\x3e\x57\x30\x69\xdc\ \xc8\x7e\x9c\x3c\xad\x21\xa3\x26\xa9\x0a\xa5\xd8\x75\xa0\x09\xaf\ \x2d\x2b\xc1\xa1\x3a\x35\x1b\x77\xb8\x33\x66\xf0\xb3\x6c\x5a\x3d\ \xf0\x48\xaf\x9c\xc6\x98\x9c\xb1\xbf\xd8\x9e\x27\x7a\x78\x2b\x9b\ \x68\x44\xe7\x91\x3f\xc3\xf3\x73\xf1\x97\x3f\xfd\x0e\x8b\xaf\xb8\ \xb5\x9a\x35\x2d\xbf\x12\x40\x09\xd4\xe1\xdc\x47\x75\x00\x9c\x88\ \xef\x66\x09\x02\x68\x64\x9e\x43\xcb\x97\x7e\xba\x21\xb9\xa5\x47\ \x99\xbc\x78\xe1\x4c\xcd\x39\xe4\x67\xc5\x56\xf1\x71\x21\x85\xe1\ \xe3\x75\xfb\xf1\xe2\x47\xdb\xf0\xc6\xa7\x3b\xb0\x7c\xe3\x01\x74\ \x7b\xfd\xea\xc4\xcd\x03\xa9\xd9\x7e\x66\xcc\x40\x94\xd4\x6c\x34\ \xf5\xcd\xab\x6a\x7e\x12\x86\xa8\x9d\x4d\x38\x2e\x6d\x64\x01\x00\ \x00\x04\xcf\x49\x44\x41\x54\xf5\x6d\xce\x75\x88\x88\x14\x2e\xdf\ \xbb\x97\x71\xd7\xe8\xf5\x7a\xf1\xe4\xbd\x7f\x60\x0a\x89\x23\xb7\ \xff\xf9\xcf\x6f\xb2\xd6\xaf\xaf\x07\xb0\x13\x80\x0f\xdf\x91\x74\ \x7e\x77\x8b\x5a\x45\xcc\x80\x63\xe4\x2f\xa6\xcc\x3b\xf3\xd6\x87\ \x6e\xbf\x29\x65\xea\x84\x91\x90\x15\xa0\xad\xcb\x8b\x83\xf5\x1d\ \x58\xbd\xb5\x12\x1b\xf7\xd4\xc0\x26\x09\x90\x34\x87\xcf\x9c\x39\ \x93\x86\xcd\x1a\x16\x19\xbf\xb3\xb0\x89\x14\x2c\x99\xba\xfe\x50\ \x37\x86\x74\xf7\x7f\xac\x25\x7c\x0c\x6b\xc6\x18\x2d\x9e\xb7\xe4\ \x0c\x38\x47\x33\x18\x0c\xe0\x84\xd9\xd3\x70\xe5\x4f\x2f\xc4\x13\ \x2f\x2c\xe9\xdc\xfc\xc5\x7b\x8f\x23\x50\xf9\x22\x88\xd8\x76\xb8\ \x85\x9d\xef\x3f\x03\x98\xd7\x8c\x07\x30\x46\x48\x9b\x7d\xcf\x79\ \xe7\xfe\xf4\xac\x9f\x5f\x75\x19\xbb\xff\xd5\xb5\xc4\x12\x1f\x47\ \x21\x0e\x89\xf2\xc2\x07\x3b\x63\x46\xd4\x74\x6b\x0c\xe2\xf4\x97\ \x9a\xb5\x26\x8e\xc2\x73\x06\x0c\xa0\x8a\x76\xef\xba\xcf\xa1\x4e\ \xda\xa8\x6a\x24\x05\x94\x32\xc8\x4a\x08\x2f\x3d\x76\x0f\x7b\xf7\ \xb3\xf5\xe4\x9d\x77\xdf\xfa\x88\xb6\x6f\xbe\x07\x40\x39\x80\xbe\ \xa3\xad\xf2\xbf\x0f\x0c\xa0\xb9\xf5\x36\x11\x34\x94\x06\x21\x73\ \x51\x6e\xf1\x09\xb7\x5f\x7d\xd9\xe5\xc5\xe3\x8a\x8f\x61\xff\x78\ \x7f\x13\x91\x15\x05\x82\x51\x72\x8d\x32\x57\xe0\x00\xd3\xac\x46\ \x25\x64\x8c\x82\x4b\xc4\xb8\x80\x68\x49\x1a\x8e\xe8\xc4\xa2\x59\ \xfa\x49\x14\x71\xc7\x32\x1d\xff\x20\x89\xb8\xfb\x37\xbf\x60\x8d\ \xad\x1e\xf2\xda\x5b\x6f\x97\xd6\xed\x5e\xf3\x30\x58\xeb\xe7\x10\ \x6c\x1d\x43\x45\xf2\xfc\xf0\x19\xc0\xe4\x04\x07\x40\xb3\xe1\x1a\ \x7b\xd3\x94\x39\xa7\x5c\x71\xfb\x4d\x3f\x4f\x2f\xa9\xf4\x62\x67\ \x79\x13\xeb\xe8\xf1\x12\x91\x70\x66\xc0\x92\x60\x61\x87\x8d\xba\ \x51\xb5\x89\x89\xba\x31\x23\x82\x81\x91\xc7\x43\x75\x3a\xe5\x50\ \x08\xa9\xee\x24\x36\x6f\xd6\x14\x72\xee\x69\x0b\x70\xff\x93\x2f\ \xb5\xed\x58\xbf\xe2\x75\xf8\xf7\xff\x15\x10\x9a\x06\x8b\xde\xfd\ \x2f\x66\x00\x95\x0b\x00\xc4\x83\xd8\x46\x88\x89\x85\xe7\x26\xe5\ \xce\xb8\xf3\x89\xbb\x6f\xb5\xd9\xe2\x33\xd8\x93\x4b\xd6\x12\x41\ \x30\x9d\xb1\xfe\x5e\x78\xcc\xa6\x93\xfd\xa9\xef\x30\xfb\xad\x3b\ \x99\xd6\xd0\xcf\x54\xe5\x4c\x1f\x9b\x40\xad\xe8\x66\x4b\x42\x47\ \xeb\x3f\xc8\x28\xc5\x23\x77\xde\xc0\x24\xc9\x4e\x6e\xbd\xe7\xaf\ \xa1\x9e\x86\x2d\x0f\x2a\xbd\xd5\x1f\x68\x83\x36\xbc\x18\x04\x6e\ \xff\xff\x0a\x03\xf0\xb5\xc1\x78\x00\xc3\x80\xc2\x4b\x27\x9f\xb0\ \xe8\xf2\x73\x16\x9f\x51\x38\x66\xcc\x78\xec\x38\xd0\xcc\x56\x7c\ \x53\x46\x44\x81\x40\x12\x54\x5f\x3a\xbc\x4d\x6d\x2c\xd4\x6c\xc4\ \x20\x92\xb0\xd0\x8e\xf5\x67\x22\x06\x08\x03\xf9\xeb\x05\x82\x6a\ \x27\xf0\xc5\x0b\x8e\x65\x27\xcc\x99\x46\x5a\x3a\x7a\xf1\xee\x87\ \x9f\x56\xef\xfc\xf2\xb3\x37\x80\xea\x25\x00\x6a\x01\xe2\xfd\x3e\ \xf5\x36\xf9\xbe\x76\xd6\x21\x00\x89\x03\x58\x36\xec\xf9\xe7\xc2\ \x51\x78\xf5\xc5\x97\x9c\x5f\x74\xcd\x25\xe7\xc6\x7d\xb9\xa3\x16\ \x3b\xca\x9b\x58\x67\xb7\x87\xf4\xf9\x83\xd6\xb1\x7e\xfd\xcc\x98\ \x31\x10\xe8\x22\x9c\x01\x68\x4c\x10\x88\x99\xbb\xd7\x5b\xc1\xb9\ \x9c\x36\xa4\x26\x27\xb2\x93\xe7\x4e\x27\x67\x2d\x9c\x87\xe7\xdf\ \xf8\xa0\xef\xad\x25\xef\x54\x22\x50\xfd\x2a\x82\x75\x1f\x68\x43\ \xb4\xbf\x73\x07\xef\x87\xcc\x00\xbc\x69\xb0\x03\x48\x06\x49\x18\ \x43\xe2\x33\x4e\x4c\x1f\x36\xed\xda\x59\x33\x66\x16\xfe\xea\xf2\ \x73\xe1\x8c\x4b\x62\x4b\x97\x97\x90\x0d\x3b\x0e\x02\xda\x44\x4e\ \x2a\x38\x53\x53\xd9\x4c\x31\xc2\x47\xca\x15\x5c\xa2\x26\x74\xb4\ \xc1\x2c\x03\x4d\x50\xad\x28\xea\xc0\x13\xc6\x28\x4e\x3d\x7e\x3a\ \xae\xba\xf0\x34\xe6\xed\xf3\x93\x17\x96\x7c\x82\xad\xdb\xb6\x55\ \xb7\xd6\x6e\x7b\x89\x79\x5b\xbf\x02\xf3\x94\x43\xed\xcc\x11\xfc\ \x3e\xa8\xfa\x1f\x2a\x03\xf0\xb7\x2a\x00\xcc\x09\xc0\x0d\x24\xcd\ \x06\xc9\x59\xe0\x1e\x31\x6a\xda\xc2\x13\xe7\x8e\x1d\x3f\x76\x5c\ \x6a\x7c\x82\x1b\xae\xf8\x44\x74\xf4\xfa\x58\x65\x6d\x0b\xa9\xac\ \x6b\x41\x43\x4b\x07\x37\xe4\x1b\xda\xd4\xb1\x61\x53\xd1\x73\x43\ \xbe\x29\xa3\x60\x5a\xc3\x47\xb5\x7f\xb0\x3a\xfe\x3e\x3b\xc3\x8d\ \x31\xc3\xf3\x30\x76\x44\x3e\x4b\x4f\x4d\x22\x3d\xbd\x7d\x50\x64\ \x19\x65\xfb\xcb\x3b\x56\x7d\xb5\x6e\x7f\x57\xc5\xc1\x12\xb0\xc6\ \xd5\x40\xcf\x26\x00\x5d\x6a\x43\x26\x46\x7f\x10\x6f\x15\x3f\xcc\ \x45\x04\xe0\xd0\x52\xcc\xe9\x00\x19\x83\x84\x89\x67\xc3\x9e\xbe\ \x70\xec\xf8\x71\xe9\xa7\x9e\x38\x53\x9c\x3f\x6f\xba\x34\xaa\x68\ \x98\xd0\xd0\xd2\x85\xfa\xe6\x2e\xd4\x36\xb7\xa3\xb6\xb1\x03\x5d\ \x3d\x1e\xf8\xfc\x01\xf4\xf9\xfc\xe8\xf3\xa9\xc2\xe9\x72\xa8\x5d\ \xc4\xe3\x9c\x76\xb8\x9c\x76\x14\xe6\xa6\xa3\x28\x3f\x0b\x45\xf9\ \x99\xc8\xcb\x4a\x47\xd9\xc1\x2a\xba\x7a\xdd\x36\x79\xc5\x57\x9b\ \x95\xfd\x65\xfb\xda\x10\x6c\x5b\x05\xcf\x9e\x8f\xb4\xde\xbb\x6d\ \x5a\xca\x36\x70\x34\xaa\x75\x3f\x32\xc0\xe0\x9e\x81\x63\x08\x29\ \x13\x24\x31\x07\xc4\x9e\x0b\x9b\x2b\x37\x39\x33\x77\x4c\x52\x72\ \x66\x91\xc3\x15\x9f\x69\xb3\x3b\xd3\x6c\x36\xa7\x5b\x90\x6c\x36\ \x41\x10\x21\x68\x45\x08\xa3\x0f\x80\x2c\x87\x42\x21\x7f\x57\x28\ \xe8\x6f\x0f\xf8\x3c\x2d\xdd\x5d\x2d\x95\x3d\xad\xf5\xe5\x08\xf9\ \x1b\xc0\x82\x0d\x60\xbd\x8d\x80\xdc\x12\x46\x70\xf6\x43\x7f\x79\ \xff\x8d\x8b\xa0\x7d\x24\xee\xe3\x00\x60\xd3\x7c\x0a\x49\x63\x1a\ \xbd\x76\x4c\x35\x62\xca\x9a\xcd\x0e\x69\x04\x96\xb9\x0f\xfd\x3e\ \xdb\xf2\x1f\x19\xe0\xc8\x3c\x37\xc3\x8f\xcb\x8f\xcb\xff\xa5\xe5\ \xff\x03\xf0\xa0\xef\xd9\x8c\x36\xd3\x0b\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x0b\x5e\ \x00\ \x00\x36\x03\x78\x9c\xed\x5a\xdb\x6e\xdb\x48\x12\x7d\xcf\x57\x70\ \x95\x97\x04\x4b\xb6\xfa\x7e\x71\xec\x0c\x90\x09\x32\x18\x60\x17\ \x0b\xcc\x05\xfb\x38\xa0\x45\x5a\xe6\x86\x22\x05\x92\x8a\x65\x7f\ \xfd\x9e\xa6\x24\x5e\x6c\x3a\xbe\xc4\x03\x27\x99\xc9\x60\x60\xb1\ \xbb\xba\xbb\xea\x54\xd5\xe9\x6a\x36\x8f\x7f\xd8\xae\xf2\xe0\x53\ \x5a\xd5\x59\x59\x9c\xcc\x18\xa1\xb3\x20\x2d\x16\x65\x92\x15\xcb\ \x93\xd9\xef\xbf\x7d\x88\xec\x2c\xa8\x9b\xb8\x48\xe2\xbc\x2c\xd2\ \x93\x59\x51\xce\x7e\x78\xfb\xe2\xf8\x1f\x51\x14\xfc\x58\xa5\x71\ \x93\x26\xc1\x45\xd6\x9c\x07\x3f\x17\x1f\xeb\x45\xbc\x4e\x83\x57\ \xe7\x4d\xb3\x3e\x9a\xcf\x2f\x2e\x2e\x48\xb6\x6f\x24\x65\xb5\x9c\ \xbf\x0e\xa2\xe8\xed\x8b\x17\xc7\xf5\xa7\xe5\x8b\x20\x08\xb0\x6e\ \x51\x1f\x25\x8b\x93\xd9\x7e\xc0\x7a\x53\xe5\xad\x60\xb2\x98\xa7\ \x79\xba\x4a\x8b\xa6\x9e\x33\xc2\xe6\xb3\x5e\x7c\xd1\x8b\x2f\xfc\ \xea\xd9\xa7\x74\x51\xae\x56\x65\x51\xb7\x23\x8b\xfa\xe5\x40\xb8\ \x4a\xce\x3a\x69\xaf\xcd\x85\x68\x85\x98\x73\x6e\x4e\xf9\x9c\xf3\ \x08\x12\x51\x7d\x59\x34\xf1\x36\x1a\x0f\x85\x8e\x53\x43\x39\xa5\ \x74\x8e\xbe\x5e\xf2\x7e\x52\x47\xdb\x1c\x50\xdc\xaa\x4c\xdb\x3b\ \x5c\x1d\xf0\xaf\xf1\x7f\x37\xe0\xd0\x40\xea\x72\x53\x2d\xd2\x33\ \x8c\x4c\x49\x91\x36\xf3\xf7\xbf\xbd\xef\x3a\x23\x4a\x92\x26\x19\ \x4c\x73\x40\x7f\xb4\xee\xc8\x25\x45\xbc\x4a\xeb\x75\xbc\x48\xeb\ \xf9\xa1\xbd\x1d\x7f\x91\x25\xcd\xf9\xc9\x4c\x6a\x43\x84\x63\xc6\ \xb6\x8d\xe7\x69\xb6\x3c\x6f\xae\xb7\x66\xc9\xc9\x0c\xb6\x2a\x23\ \x69\xfb\x7c\xd0\xe6\xa8\x8b\x29\x4a\x04\xdf\x89\xee\x97\x18\x76\ \x49\x13\x54\x9c\x2b\x2b\x5a\x89\x51\x1c\x8e\x66\x4b\xca\x85\x57\ \xf6\x64\x56\xae\xd3\x22\x5f\x47\x79\xb9\x2c\xc9\x01\xe3\x6e\xe2\ \x72\xd3\xac\x37\xcd\x1f\xe9\xb6\x49\x8b\xdd\x44\xb0\x72\x60\x72\ \xdb\xed\x87\x91\x91\xb9\xdd\xf8\x74\xbb\x2e\xab\x26\x3a\xcb\xf2\ \x74\xb7\xda\xfc\xbc\x5c\xa5\xf3\x2a\x2e\x37\xf9\x7c\xb0\x32\xa0\ \xe6\x64\x5d\x2c\x27\x47\x6f\x93\x35\x3c\xe7\x18\xb1\x9a\x5a\x69\ \x26\x65\x2e\x27\x64\xea\xe6\x32\xc7\x92\x49\x56\xaf\xf3\xf8\x12\ \xde\x43\x54\xa4\xb3\xb7\xe8\x3a\x4e\xd2\xb3\xda\x8b\xec\xe0\xf6\ \x4f\xc0\x9b\xb7\x7d\xe8\xf5\x72\x71\xf5\x53\x15\x27\x19\x72\x66\ \x27\xb7\x93\x1c\xf7\x08\x4e\xed\x7e\x0c\x46\xd5\x4d\xb9\x3e\xc8\ \x76\x8b\xfb\xc6\x68\x51\xe6\x65\x75\xf4\xf2\xac\xfd\xf7\xa6\x6d\ \x2a\x11\x24\x59\x73\x79\x04\xbb\x15\x75\x96\x4a\xf6\x66\xd6\x0f\ \x2e\xcf\xce\xea\x14\x91\x41\x07\x6d\x6d\x5c\x60\xa8\xe0\x0c\x94\ \x32\xff\xc2\x65\xa7\x56\x63\xd3\xab\xf1\x6e\xb5\xe3\xf9\xd8\xfe\ \x87\xc2\xc5\x9c\x7a\x00\x5c\x8b\x64\x91\x5c\xd7\xfb\xfe\x28\x31\ \x67\x1e\x84\x52\x7a\x9a\x9e\xde\x6b\xb5\x49\x94\xc0\x3a\x4f\x85\ \x92\x16\xca\x3d\x00\x25\x50\x63\xc2\xf5\x23\x51\xd2\x42\xb3\x07\ \xa1\xa4\xa8\x39\x4b\xe2\x47\xa2\x84\xd5\xc4\x5d\x28\x75\x79\xbd\ \x06\x73\xad\xd3\x85\xdf\x90\x0e\x33\x75\xdc\xd5\x5c\x7a\x0e\x1e\ \x8b\x8a\xa4\x5b\xb1\xa7\xc5\xf5\x1f\x5b\x18\x1e\x1c\x05\x8a\x6b\ \xc2\x2c\xa3\x0e\xbf\xd9\xa4\xe0\xe5\x4e\x90\x01\x4f\xfc\xa1\x93\ \x32\x57\x27\x33\x23\x25\xa1\x4e\x4a\x7b\xf7\xa4\x7b\xb5\xa2\xb2\ \xca\x96\x19\x98\x53\x18\x4e\xa8\x34\x5c\x42\x5c\x28\x4a\x8c\x35\ \xe2\xda\x50\x00\x35\xb0\x1b\x94\x64\x7b\xbc\xc0\xa1\x4d\x5a\xdd\ \x58\x05\x8e\xc9\x21\x7e\x32\x8b\xf3\x8b\xf8\xb2\x1e\xcd\xb5\x1b\ \xa2\x1d\xd7\x5d\x73\xeb\xc7\x28\x2b\xd0\xbe\x2e\x73\xec\xf7\x65\ \x11\xed\xc4\xb0\xf3\xd6\xbf\xfc\xf4\xae\x0f\xbd\xb3\xf4\xa7\x78\ \x53\xd7\x59\x5c\xbc\xcb\x37\xd5\xc0\x9d\x77\x2d\xed\x23\x27\x79\ \x9f\x7e\xca\xda\xe9\x61\x38\x51\xc6\x30\x6b\xf8\xb5\x98\x18\x2f\ \x00\x35\x07\xd6\xce\x77\x4a\x7d\x3e\x77\xee\x52\xa4\x2d\x03\x8e\ \xce\xab\x14\x65\xcb\xcb\x09\xea\xfe\x1c\xb3\x33\xd9\x4f\xc3\xb0\ \x47\x1b\xcf\xd4\xd6\xf5\xce\xba\x44\x2b\x37\x9a\x68\x6b\x55\xdf\ \xba\xe5\x7e\x3f\x17\x84\x0b\x3a\x10\x45\x23\x93\xc4\x72\xae\x07\ \xad\xcb\xfd\x5a\xbf\x17\x59\x03\xf0\x37\x75\x5a\xfd\xea\x4b\x87\ \xff\x14\xbf\xd7\x69\x8f\xc4\x33\xd8\xce\xdd\x3d\x95\xfc\x93\x10\ \x7a\x4e\xdb\xcd\x5f\xd8\x76\x6b\x9e\xd7\xf6\xeb\x8b\xff\x56\xc5\ \x45\x8d\xda\x7c\x75\x32\x5b\xc5\x4d\x95\x6d\x5f\xe1\xf4\xc2\x38\ \x07\xfd\x86\x14\xff\x31\xc2\xa9\x30\x46\xd8\x30\x52\x86\x70\x67\ \xb9\x0a\x31\x99\x95\x4e\x30\xfb\xfa\x4f\x85\xd2\x97\x32\x9f\xad\ \x74\xf4\x23\xa0\x64\xcc\x10\x05\xb6\xe6\x23\x28\x85\xc5\x96\xa3\ \xcc\x60\xc1\x16\x4a\x66\x61\xbd\xb3\x63\x2c\xa5\xd0\x04\x90\x58\ \xf3\x67\x1a\xdf\x56\x28\x9f\x35\xde\x3e\xc2\x78\xcb\x14\x31\x6a\ \x64\xb9\xb4\x94\x28\x65\xa5\x1c\x59\xce\x29\xa2\x80\x6a\xce\x47\ \x96\x0b\x83\xda\x5f\x39\x61\x9f\x35\x83\x28\x7d\xa0\xe5\x4f\x14\ \xea\x8f\x4f\x48\x47\xa4\x74\x5c\x8d\x33\x92\x4a\x22\x28\xe5\xee\ \x39\x53\x88\x33\xf5\xd7\x4d\x21\xce\x1e\x43\xc5\xdf\x45\x0a\xb1\ \x87\x6e\xc0\x7f\xe1\x14\xfa\x3c\x96\x92\xb2\xa7\xa3\x23\x9c\x57\ \x38\x60\xb1\xba\xc5\xd2\x9f\x5e\xa4\x90\x5a\x86\x11\xce\x3f\x44\ \x72\xaa\x55\x18\x71\xc2\x04\x47\xf6\xc9\x6f\x12\xcd\x3b\x72\x12\ \x68\x8a\xe7\xcc\xc9\xfb\xb8\x48\x2b\xa6\x0c\x77\x7b\x17\x1d\x9e\ \x22\x7f\xf0\xb4\x5a\x6b\x1f\xf9\x44\x30\x25\x2d\xd3\xcf\x59\x1e\ \x49\x2a\x1f\x43\x6f\xdf\x07\xb7\xc3\xf8\xc7\x1c\x31\xbe\x03\x6e\ \x97\x54\xdd\xf7\xf4\xfb\x37\xb7\xdf\x99\x42\xea\x31\x6c\xf4\xbd\ \xa4\x90\x7a\x68\x6d\xf8\x64\xac\xf9\xfd\xe5\xe4\x43\xa9\xf8\x1b\ \xa9\x11\x8e\xe7\xfe\x5a\xa7\xfd\xd5\xbd\x38\xf6\x77\x50\xc9\xa7\ \x2c\xbd\x78\xd1\xc1\x71\x1a\x77\xa6\xad\xe3\x65\xda\xbe\x1f\x05\ \x88\xbb\x4b\x93\x7d\xc7\x69\x59\x25\x69\x75\xe8\xd2\xed\xbf\x51\ \xd7\xfe\x55\x78\x7f\xcd\xe6\x51\xca\x92\xa6\xcc\x53\x80\xb4\x48\ \xbd\x76\xb4\x3b\x1b\x2e\x37\x59\x92\x8e\xfa\xf6\x1d\xe5\xe9\xff\ \xe0\xdd\xa9\x9e\xfe\xa5\x32\x74\xec\x56\xa3\x64\xb2\xbf\x3e\x8f\ \x93\xf2\x02\xe8\x5d\xef\xbc\x2a\xcb\x55\xab\x23\x63\x4e\x5b\x71\ \xbd\x7b\xb1\x3d\x99\x29\x44\xaa\xe1\x42\xda\x1b\x9d\xde\x3a\x6b\ \x88\xd6\xec\x46\x5f\x52\x2e\x36\xfe\x76\x39\xda\xec\x02\x67\xbd\ \xbd\x31\x7a\x53\x55\x5e\x20\x8f\x2f\x53\x60\xd8\xfe\x39\x40\x58\ \x9f\x97\x17\x1e\xad\x93\xd9\x59\x9c\x77\xce\xe8\x86\x5e\x64\x05\ \xac\x89\xf6\x37\xa8\x4c\xd3\x1b\x36\xef\x25\x0e\xd7\xa9\x56\xb8\ \x5b\x24\xb6\x1e\x51\x7e\x03\x96\x7d\x2f\x0c\x8c\x6e\x60\xb2\xef\ \x5b\xc5\xdb\x6c\x95\x5d\xa5\x89\xbf\xd9\xd8\xc7\xd7\x2a\x6d\xe2\ \x24\x6e\xe2\x3e\x96\x0e\x2d\xca\xc8\xc3\x45\xd7\x71\x95\x9c\x1d\ \xfd\xf2\xfe\x43\xf7\x56\x7d\xb1\x38\xfa\x6f\x59\x7d\x3c\x44\x6e\ \x10\x78\x81\xf8\xb4\xdc\x40\xf3\xee\xdd\xbb\xbf\xa1\x5c\x1c\xf9\ \xdc\x8a\x9b\xb7\xd9\x0a\x3e\xf5\xd7\xdf\xff\xdc\xae\x72\x44\x75\ \xd7\x31\x12\xf6\x77\x22\xfd\xa4\xbb\x69\xab\x74\x77\xbd\x3d\xf9\ \x45\x40\xb2\x58\x65\x7e\xd0\xfc\xd7\x26\xcb\xf3\x9f\xfd\x22\xc3\ \xab\xa0\xf9\x5e\xd1\xc3\xfb\xf8\x81\x1d\xc7\xf3\x83\xa1\xed\xd3\ \xf2\x1a\x64\x79\x7c\x9a\xe6\x27\xb3\x5f\xdb\x28\xbc\x8e\xe7\xb2\ \x2a\x37\xeb\x55\x99\xa4\xfb\x20\x98\xf5\xe8\xb5\xcf\x87\x4c\x9f\ \xbe\xbb\xdd\xf5\x35\x3d\xf1\xb4\x3f\xf3\xb8\x49\x5f\x45\x0c\x64\ \x6a\x38\xc5\xc6\x1f\x31\x41\x98\x61\x56\xf1\x43\x91\x7b\x43\xc7\ \xbb\xd4\x50\xd7\xf5\xde\x1b\xf5\xae\x4d\xf7\xaf\x43\xc7\x1b\xb1\ \xba\xd7\xf1\x17\xec\x0c\xc1\xbb\x78\xf1\xd1\x4f\x50\x24\x5f\x87\ \xb2\x37\x92\x6e\xa8\xec\x87\xb2\x4a\xbf\x26\x65\xf5\x6d\xca\xa6\ \x67\x7e\xfb\xcd\xca\xe2\x89\xf5\xdc\x27\xd9\x72\xb8\x4f\x2f\x71\ \xe0\xec\x77\xee\xc9\xd9\x1c\x2a\x5c\x66\x04\xb7\x61\xf7\xeb\x75\ \x7f\x7f\xb7\x8e\x9b\xf3\x9e\x11\x6e\xf9\x60\x62\x74\x2b\x3c\xfd\ \xdd\xc5\xe7\x44\x1e\xf6\x61\xc7\x0d\x53\xfa\x12\x4c\x18\x67\x85\ \x3a\x94\x60\xfb\xa7\x48\xa3\x5a\x55\x52\x33\x0e\xb4\x14\x61\xd6\ \x71\xa7\x5e\x0f\xa6\xf2\x9c\x1b\x58\x21\x50\x91\x52\xaa\x43\xe1\ \x14\xe1\xda\x09\x1e\x2c\x02\x9c\x09\x1c\x46\x6b\xd4\x1a\x41\x84\ \x5d\x83\x30\xa5\x99\x08\x05\x8e\x07\xed\x5d\x64\x10\x75\x3f\x87\ \x8d\xdd\xa0\x90\x0e\x25\xfa\x19\x46\xad\xfd\x40\x1a\x1e\x86\xea\ \xa0\x5f\xad\x17\xe0\xc1\xd4\x30\x1e\x0c\xd7\xeb\x25\x0e\x33\x8c\ \x86\x0d\x46\x5d\x0d\x30\xe8\x8a\x9b\x0a\x1b\x58\x27\x33\x29\xb0\ \xbd\x43\xc0\xef\xf1\x1d\x86\x93\x02\x5b\x5f\xa9\xf9\x6a\x98\x09\ \x39\x0c\x0b\x7f\x71\x8d\x70\xd3\x8e\x8a\xe1\xb8\x5d\x7a\x20\x48\ \xf2\xf6\x43\x05\xfc\x7b\xe3\x1f\x06\x9f\x0e\xb4\x8f\xd5\x26\x4f\ \x8f\x8a\xb2\xb8\x42\x25\xf5\xa6\x6e\xaa\xf2\x63\xfb\x98\xbe\x19\ \x27\xd6\x9b\xdd\x9d\xf0\x11\x36\xb1\x57\x2f\xfb\xbb\xed\xd7\x53\ \x9a\xee\x3e\x11\x88\xab\xc5\x70\x4f\xfb\x5a\x33\x62\x42\xeb\xdb\ \x40\x54\x2c\x55\xfc\x4b\x40\x9c\xf6\x1a\x7d\x88\xb7\xef\x1f\x2f\ \x77\x46\xdc\x6d\x31\xfb\x77\x62\x3f\x01\x4f\x7e\x03\x91\x3f\x6d\ \x23\x33\xdc\x9a\xce\xc6\xdd\x53\xa4\x25\x51\x38\x81\x6b\x6f\x23\ \x07\x5e\xda\x59\xfb\xf7\x5e\xf0\x15\xef\x05\x62\x70\x87\x35\xa6\ \xb1\x96\xc0\x6f\xbe\xcf\x7a\xfd\x44\xbc\xf6\x6d\x6e\x02\x3d\x6e\ \xdc\x5c\x0f\x6b\x2e\x14\xd1\xc6\xf9\x68\xf0\x1f\x50\x08\x67\x25\ \xc2\x1a\xb1\x43\x1c\x37\x46\xfb\xf8\xd4\xbe\x04\xa4\xc6\x86\x96\ \x48\x6b\xb5\x52\x41\xe4\x1c\x71\x46\x61\x10\x17\xed\x3b\x29\x21\ \x82\x7f\x05\xdc\x69\x7f\xc0\x77\x1a\x81\x85\xe1\x5a\x1b\x19\x48\ \xc5\x09\x52\x4b\xb8\x90\x3b\x46\x98\xa3\x8e\x61\x7a\x49\x04\x97\ \x8a\x21\x98\x0d\x11\x48\x3d\x13\x68\xa2\x99\x51\xd2\x07\x2d\x51\ \x0c\xe1\xda\xb7\x28\x49\x50\xd5\xee\x83\xdf\xaf\x47\x5b\x15\x18\ \x85\xa1\xd2\x68\x1d\x46\x1c\xad\x10\xe5\x14\xcd\x87\xdf\x6c\xd0\ \xac\x83\xab\xe0\xdf\x81\x71\x84\x81\xbf\xb4\x0d\x8d\x21\x1c\xa7\ \x75\xe7\x82\x1f\x03\x03\xad\x40\x6f\x4c\x86\x56\x11\xca\x85\xe5\ \x32\xd0\x18\xa7\xa5\xe5\x3c\x74\x82\x48\xc1\x9c\x74\x01\x02\x9a\ \x72\x8d\xe3\x77\x88\x91\x50\x5a\x3b\xe9\x4d\x36\xd2\xd3\x88\xd2\ \x21\xa7\x8e\x80\x41\xac\x0a\xa4\xf0\x0a\x03\x94\x90\x5b\x4b\x84\ \xa6\x5a\x42\x0e\xd1\x4c\xc1\xa7\x0c\x33\x5a\xcd\x39\x9b\x54\xc7\ \xab\xc9\xe5\x0e\x65\x01\x14\x39\x71\x4a\x70\xde\x3a\x84\x68\x6e\ \x2c\xa0\xa5\x44\x40\x49\x03\xb7\x00\x09\x89\x89\x43\xce\xa0\x1a\ \xd5\x20\x20\xdb\xbe\x81\x65\x36\x14\x8c\x80\xc3\x98\xf6\x2a\xfa\ \x24\x37\xd2\xc0\x03\x0a\x39\xe7\x04\x78\x4b\x72\xcc\x8c\x35\x0c\ \xbc\x02\xbc\xb9\x81\x31\x5e\x8e\x33\x05\xaf\x70\xc9\xa0\xb6\x72\ \x6a\x52\x17\xaf\x23\x42\x45\x31\x01\x8a\x08\x39\xb0\x92\xce\x01\ \xe2\x45\x80\x51\xd4\xab\x14\xe2\x24\x42\x05\x96\x0c\x04\x11\xce\ \x08\xb0\x0e\x54\x84\xce\x40\x96\x70\x05\x53\x4d\x28\x80\x21\x03\ \x09\x04\x79\xc0\x39\xd4\x16\x8e\x39\x16\xc2\x24\xa6\x8c\x08\x70\ \xde\x20\x52\x53\x27\x42\x89\x38\xf2\x2e\x81\x1d\xca\x87\x9a\xc1\ \xf1\x86\x5b\x87\x48\xd5\xcc\x4d\xea\xe1\xf5\x93\x7e\x4a\x2a\x61\ \x1f\x98\x02\xbe\x04\xcb\xc3\x16\x47\x0c\x8a\x48\x19\x0a\xa1\x89\ \x95\xcc\x47\x27\x3a\x2d\x7c\x8e\x36\x85\xe0\xa6\x12\x6b\x2f\x02\ \xc4\x2e\x60\xa4\x0c\x47\x1f\xe6\x2c\xdc\x82\x4d\x41\x69\x69\x28\ \x7c\x6f\x88\x93\x8c\x4a\x10\x2a\x31\x86\x21\xce\x43\xff\xa5\xa6\ \x94\xa2\x85\x5a\x02\x2f\xa5\x60\xaf\x50\x30\x98\x1a\xc4\xe9\x94\ \x2a\x57\xc1\xca\xab\x6e\xac\xc4\xca\xf0\x09\xe3\xca\x22\xa0\xdb\ \x68\x51\x98\x12\x58\x33\x2b\xa5\xdf\x51\xfc\xa6\x83\xa8\xe4\xa1\ \x44\xdc\x38\xa4\x29\xf4\x43\x9b\x42\x2a\x23\xe4\x08\x03\x46\x3a\ \x30\x3e\xc7\x98\xe2\xde\xed\x88\x41\x61\x02\xc4\x33\x42\xdf\x72\ \x7b\x68\xb2\x01\x02\x0f\xbe\xb1\x16\x19\xcd\xfc\x00\xab\xfc\xdb\ \x67\x20\x01\x50\xe0\x69\x8a\x7c\xa3\x4e\x3b\x7f\x78\x84\x9e\x12\ \xfe\x1f\xf3\xff\x9d\x24\xab\xbe\x8c\x64\x6f\xe7\xd1\x3d\x7b\x09\ \x3e\x3a\x01\x3c\x2d\x7b\xe5\xd8\x4e\xfd\xdb\x4b\xe7\xd9\x8b\x3b\ \x9f\x31\x82\x8b\x00\xec\xa5\x94\x40\x48\x4b\xb8\x44\xfb\x58\x00\ \xfc\xe8\x95\x06\x65\x83\x04\x76\x8a\x22\x93\x51\x3e\x80\x2f\x54\ \x5b\x3d\x70\x64\x19\xf0\xa7\x6d\x24\x00\xff\x08\xa1\x2f\x25\xb5\ \x1c\x5c\x23\x05\x85\x13\xc1\x14\xa1\x05\xef\xc1\x3f\xce\x06\x02\ \xc9\x06\x16\x00\x8d\x1d\x2c\x50\x93\x56\xdd\xc6\x60\xb0\x16\x31\ \x89\x3a\x06\x54\x69\x10\x06\x42\x71\x4f\x8e\xa0\x1b\x25\x41\x6c\ \x48\x5c\xa8\x84\x38\xf5\xcc\x48\xa8\x03\x3d\x83\x97\x94\xe7\x3c\ \x2d\x99\xcf\x3e\x44\xa5\xa6\xd2\xb5\xd4\x62\x7c\x06\x83\xa1\x11\ \x88\xe0\x04\x58\x8d\xf5\x44\x9b\xdb\x58\x03\x53\xa3\xd4\x00\xfd\ \x58\x0a\x62\xf1\xf7\x13\xa0\x5f\xeb\x5b\xac\x02\xd6\xd0\x1a\x5c\ \x89\xc2\x04\x30\x10\x89\x6c\xe5\x2d\x3f\x7e\x29\xef\x71\xff\x5a\ \xd8\x13\x1f\x0a\x18\xab\x3c\xef\x81\x12\xa0\x34\xb8\xc1\x1b\x89\ \xe2\xc5\x7a\x2a\x34\x1a\x95\x99\xf3\x0e\x05\xc3\x21\x8b\xe1\x2f\ \x0d\x1e\x13\xc2\x43\x88\xcc\x63\x81\xdf\x9c\xe0\x59\x4f\xd5\xa8\ \xf1\xac\x37\x0b\xbc\x8d\x74\x36\x5e\x67\x64\xb1\x36\xc2\x98\x36\ \x8b\x27\x48\xef\x41\x99\x60\x9e\x26\x13\x8e\xe7\xcb\xdd\x3b\x51\ \xfc\x39\xf6\x6f\x69\xdf\xbe\xf8\x3f\x50\x2c\x24\x2d\ \x00\x00\x1a\x07\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ \x13\x37\x39\x58\xdb\x3a\x47\x00\x00\x19\x87\x49\x44\x41\x54\x78\ \xda\xe5\x9b\x79\x98\x15\xd5\x9d\xf7\x3f\xa7\xaa\xee\xd2\xf7\xde\ \xde\xbb\xa1\xa1\x9b\xa6\x59\xec\x06\xa1\x1b\x11\x64\x71\x17\x89\ \x0b\xee\x0b\x6a\x8c\x26\xaf\xcb\x1b\x33\x1a\x9f\x49\xe6\x8d\xc6\ \x4c\x4c\x5e\xc7\x2d\xf1\x79\x9d\x24\x66\xa2\x62\xe2\x32\xa8\xe3\ \xb8\xc6\x85\x88\x42\x14\x65\x51\x40\x64\x47\xa0\x81\x66\x69\x7a\ \xa1\xe9\x7d\xb9\x6b\x55\x9d\xf3\xfe\x51\x75\xb7\xa6\x41\x4c\x32\ \x99\xe4\x99\x7a\x9e\xfb\x54\xdd\x7b\xab\xee\x3d\xbf\xef\xf9\xfe\ \x7e\xe7\x77\xbe\xe7\x77\xe0\x7f\xf8\x21\xfe\x4a\xff\x63\x00\x21\ \x60\x38\xde\x8a\x3a\x7c\xc5\x35\x18\xbe\x11\x68\x7a\x0e\x00\xd2\ \x8e\x62\xc5\x5b\x89\x77\xd6\x93\x68\xda\x02\xb4\x01\x03\x80\xf5\ \xf7\x0c\x40\x19\x46\xf5\xa5\xd7\xdc\x70\xc3\x9c\xa2\xb2\xaa\xba\ \x98\xf4\x57\x86\x13\x22\x88\xe6\xc1\xe3\x31\x10\x42\x03\x14\x4a\ \xd9\xd8\x96\x85\xb4\x13\xd8\x66\x02\x0d\x93\xa0\x8f\x70\xc8\xab\ \x1a\xfb\x7b\xdb\xb7\x3c\xff\xec\x0b\xcb\x88\x6f\x7f\x07\x38\xf4\ \xf7\x00\x40\xde\xb8\xc9\x73\x67\x7b\xf3\x2a\xbf\x73\xea\xe9\x5f\ \xbb\xbc\x62\x6c\x1d\x6b\x77\xb4\xd2\xdb\x3f\xa0\x50\x52\x08\x24\ \x4a\xda\xee\xcb\x42\xba\xd7\x32\xf3\xda\xb6\x30\x4d\x13\xcb\x32\ \x55\x71\x41\x40\x9c\x73\x4a\x0d\xed\x6d\x2d\xac\x5d\xbb\xf2\x2d\ \x2b\x7c\x78\xc1\xce\x8d\xef\xaf\x06\xfa\xfe\xd6\x00\xf0\xc2\x88\ \x5b\x6f\xbb\xeb\xe7\xf7\xf9\x86\xd5\x15\xef\x6e\xe9\xd3\x12\xa6\ \x89\x6d\x5b\xae\x81\x36\x28\xc7\xb8\x4c\xa3\x95\x6d\xa3\x94\xf3\ \xbd\xb4\x2d\xe7\xda\xb6\xc1\x05\x24\xf9\x39\x48\xbc\x86\x60\xca\ \x84\x4a\x59\x1c\x10\x9d\x8f\x3d\xf4\xd3\xfb\xa0\xe9\x69\x20\xf1\ \xdf\x0f\x40\x70\xd2\xf5\x3f\xbc\xeb\xde\xfb\x2f\x3a\xef\xbc\x71\ \x4f\x7f\xd8\xc4\xc1\xc3\xdd\x68\xa9\x9e\xce\x34\xc4\x46\x29\x2b\ \xc5\x00\x69\xdb\x2e\x18\x69\x90\x32\xef\x27\x09\x52\xc6\xf3\x96\ \x95\x20\xe0\xf7\x50\x57\x5d\x49\xc8\x6b\x35\xbc\xfc\xea\x4b\x3f\ \x1d\x68\x5e\xfd\xd2\x9f\xd3\x7c\xfd\x4f\x0f\x6b\xc5\x95\x93\x66\ \x5d\xf7\xc6\x2b\xcf\xbd\xf8\x83\x39\xa7\xcd\x2c\x0c\x06\xfc\xe2\ \xcc\xc9\xc3\xd9\xbc\xb7\x83\xbe\x70\x02\x85\x42\x4a\xe9\xf8\xb9\ \x54\x80\x44\x49\x85\x52\x0a\x85\x02\x25\x51\x4a\x82\x72\x3e\x23\ \x79\xaf\x52\x28\x29\x51\xee\xfd\xce\xf3\xce\xbd\x42\x80\x69\x9a\ \x34\xb5\xb6\xb3\x75\x57\x53\xe1\xcd\x37\x7c\xfd\xaa\x8e\xb0\xf7\ \xf4\xde\x9e\xc3\xcb\x95\x19\xee\xfd\x2b\x32\x20\x78\xcd\x43\xbf\ \xf8\xfd\xb3\x97\x5f\x30\x37\x68\xe8\x9a\x12\x42\x09\x10\x68\x1a\ \x28\x14\x6f\xac\xdc\xc3\xdb\x9f\xec\xc1\x6b\x90\xe1\xf3\xd9\xbe\ \xae\xa4\xe5\xb2\x22\xc9\x86\x0c\x76\x28\x1b\x65\x0f\xba\x37\xf5\ \x1b\xae\x5b\x28\x1b\xdb\xb6\x54\x71\x7e\x48\x7c\xed\xb4\x93\xc2\ \x8f\xde\xf7\xdd\x9b\xa0\xf7\xb5\xff\x6a\x06\x18\x55\x53\xae\x7a\ \xf8\xa9\x27\x5f\xfd\xd5\x79\x67\xce\xf0\x48\x09\x20\x84\x10\x02\ \x21\x40\x08\xd0\x35\x98\x56\x5d\x4c\x59\x61\x88\xcf\xeb\x0f\xa1\ \x94\xdb\x9b\xc9\xde\xce\x60\x03\x4a\xb9\x0c\x90\x0e\x0b\x5c\x36\ \x08\xa9\xdc\x67\xd2\xdf\x93\x62\x43\xd6\xfd\x22\x1c\x8d\xaa\x2f\ \xea\xf7\x79\xae\xb9\xfe\x7f\x5d\x63\x1b\x85\x39\x6d\x8d\x5b\x3e\ \x06\xe4\x7f\x05\x00\xde\x49\xb3\x6e\x7c\xf2\xcd\x85\x2f\xdd\x39\ \xbc\xa4\x44\x49\x85\x00\x21\x34\x8d\x94\xf1\xce\x4b\x60\xd9\x30\ \xba\x2c\x97\x73\xa7\x55\xb2\x7c\xf3\x41\x12\x09\x2b\x45\x65\x52\ \xb4\x97\xa9\x17\x2e\xed\x71\x81\x92\xca\x4e\xbb\x08\x32\xe5\x02\ \xce\xbd\xb6\x7b\x76\x3f\x93\x52\x28\x25\xc5\xb6\xfa\x06\x75\xfe\ \x9c\xb3\x4e\x97\x9e\xa2\xf2\xd6\xfd\x9b\xdf\x07\xec\xbf\x24\x00\ \xde\xb9\x97\xdf\xb3\xe8\x81\x7b\x7f\x3e\x3f\x3f\xe4\x53\xa0\x84\ \x10\x8e\xf7\x64\x1a\x9f\x04\xc3\xf9\x5c\x91\xe3\x33\x98\x3b\xad\ \x8a\x7d\x2d\xdd\xb4\x76\xf6\xb9\x3e\x9e\x6c\x7c\x86\xd1\x52\xba\ \x6c\x90\xa9\xde\x55\xee\xfb\xec\x7b\x07\xc5\x8b\x0c\x36\x68\x42\ \x88\x6d\xf5\x0d\x6a\xfc\xf8\xf1\x27\x9f\x7c\xca\xdc\x99\xdb\x37\ \x7d\xf4\xea\xf1\x80\x70\x3c\x00\x18\x93\x67\xdf\xf8\xe4\xb4\x79\ \xdf\x9f\xbf\xf4\x8b\x5e\x95\xe3\xd5\x44\x79\xa1\x1f\x43\x17\x68\ \x9a\x22\xe9\xfb\x83\xc1\x48\xba\x85\xc7\x10\x9c\x33\xad\x92\xae\ \xde\x28\x0d\xcd\x5d\x68\xc9\x40\xa7\x1c\x57\x40\x39\xd4\x76\xa2\ \x47\xfa\xbd\xc8\x08\x90\x4a\x29\x84\x70\x00\x11\x4a\x82\x48\xde\ \xa3\x40\x38\xf7\x0a\x14\x42\x20\x1a\x9b\x5a\x54\x69\x49\xf1\xf8\ \xbc\x92\xb1\x23\x5b\xf7\x6f\x5a\xfc\x65\xee\xf0\xa5\x00\x4c\x98\ \x3e\xff\xe1\xf9\xb7\xfd\xe2\xce\xdd\xed\x31\x65\xe8\x9a\xd8\xdd\ \x1a\x66\xe5\x8e\x0e\xc6\x0c\x0b\x52\x10\xf4\xb8\x86\x3a\x40\x64\ \x03\x90\x64\x83\x00\x14\xa7\x4c\x2c\x67\x64\x69\x90\xd5\x5b\x1b\ \xd1\x35\xd0\x70\x1b\x8d\x72\x22\xb1\x52\x68\xc9\xe7\x1c\x63\x40\ \xe0\x7e\xe6\x1a\x2c\x48\x19\xaf\xe1\x18\x8f\x92\x68\x22\xdd\x01\ \x86\x26\x44\x73\x6b\x9b\x9a\x7b\xd6\xe9\x27\x9b\x7a\xb1\xaf\xad\ \x71\xcb\x07\x7f\x06\x00\xa1\x6b\xae\xfb\xee\x82\x5f\x35\x74\x6b\ \xca\xd0\x10\xc9\x06\x4a\x25\x59\xb7\xbb\x83\xbd\x6d\x03\x8c\x1f\ \x11\x22\x94\x63\xb8\x0d\x14\x47\xb8\x43\x92\x0d\x9a\xa6\x18\x57\ \x5e\xc8\xec\xda\x4a\x56\x6c\xdc\x8b\x69\xd9\x08\xe1\x00\xe0\x3c\ \xeb\x74\x54\x12\x18\x52\xe0\x38\x00\x69\x30\xe8\xda\x79\xaf\x09\ \x07\x60\xdc\xdf\x12\x02\x34\x5d\x88\xad\x3b\xea\xd5\xb9\x67\x9d\ \x71\xfa\x86\xd5\x9f\x6e\x87\xf8\xf6\xaf\x0e\x80\x51\x5c\x79\xff\ \x23\xaf\x2d\xbd\xe0\xac\xd3\x3c\x87\xfb\xe2\x62\x20\x6e\xa7\x69\ \xae\x24\x9a\x50\xf4\x0c\xc4\x59\xb6\xb9\x19\x8f\x2e\xa8\x28\x09\ \xe2\x35\xb4\xa3\xb2\x01\x04\x4a\x41\x51\x9e\x9f\xab\xcf\xad\x65\ \x53\x7d\x13\xed\xdd\xfd\xe8\x9a\x48\x35\x5c\x20\x1d\xc3\x52\xc6\ \xa4\xdd\x43\xb8\x4c\x16\x83\x18\x21\x84\x72\x00\x11\xe9\xef\x04\ \xa0\xeb\x9a\xd8\xd3\xb0\x4f\x7d\xfb\x1f\xfe\xf1\xa2\xb5\x9f\xad\ \x79\x51\x99\x03\xbd\x5f\x09\x80\x89\x33\xae\x7b\xe3\x9e\x3b\xbf\ \x57\x13\xf4\xe9\x9c\x54\x99\x2b\x66\x8c\x2f\xe0\x50\x6f\x9c\x9e\ \x81\x78\x46\x03\x14\x86\xa6\xd8\xd3\xd2\xc3\x47\x9b\x9a\x29\x2f\ \x09\x50\x56\x18\x40\x0d\xc1\x86\xcc\xc6\x2b\x04\x17\x9c\x56\x4d\ \x3c\x61\xb3\x73\x5f\x9b\x43\x61\xa5\x10\x1a\xe9\x9e\x17\x0a\xa1\ \x9c\x67\xb5\x0c\x63\x53\x2c\x48\x05\x5c\xe7\xb9\x24\x33\x52\xec\ \xd0\x1c\x86\xb4\xb6\xb5\x79\x43\x05\x15\xb5\x5d\x2d\xdb\x5e\x38\ \x7e\x00\x02\x93\xae\x5f\xb8\xe0\xc5\x1f\x14\xe4\x85\x14\x20\x34\ \x0d\x3c\xba\xc6\xf4\x31\x79\x9c\x30\x32\x84\x65\x4b\x9a\x3a\xc3\ \xe8\x19\xbd\xa1\x90\xac\xdd\x79\x88\x7d\xad\xbd\x8c\x29\xcb\xa3\ \x20\xd7\xe3\x64\x7c\x2e\x1b\x48\x35\xda\x79\xaf\x94\x62\xda\xc4\ \x0a\xca\x4a\xf2\xf9\x6c\xeb\x7e\x84\xe6\x04\x35\x2d\xa3\x47\x1d\ \x5a\xcb\x54\xb6\x96\x66\x8a\x0b\x86\x52\x29\x83\x11\xce\xb3\x08\ \xd7\x0d\x1c\xa0\x44\x34\x1a\x55\x57\x5c\x74\xfe\xb8\xad\x7b\x3a\ \x77\x27\xfa\x0f\x6e\x3d\x1e\x00\xbc\xdf\xbf\xeb\xd7\xaf\x9f\x39\ \x73\x66\xa1\x72\x87\xbb\xe4\x90\xa7\x80\xdc\x1c\x83\xda\xd1\x79\ \xcc\x3c\xa1\x84\xe6\xae\x01\x22\x31\xd3\x49\x53\x01\x5d\x87\xae\ \xbe\x08\x4b\xd7\xef\x47\x4a\xc5\xe8\xe1\xf9\x78\x3d\x9a\x1b\xb8\ \xc4\x11\xa3\x84\x94\x8a\xaa\x91\xc5\xcc\xa8\x1d\xcd\xea\x8d\x0d\ \x24\x4c\x33\x8b\xe2\xae\x11\xae\xaf\xab\xac\x21\x56\x24\x19\xe5\ \xba\x90\x26\x40\x20\xd2\x71\x23\x19\x7b\x84\x12\xeb\x37\x6d\x56\ \x57\x5e\x72\xf1\x49\x1b\xd6\x2e\x59\x30\x78\x68\x1c\x02\x80\xb2\ \xdb\xee\xbf\xef\x97\x37\x04\x72\xfc\x59\x19\x5e\x92\xc2\xb8\xfd\ \xed\xf3\xea\x4c\x1b\x57\xcc\x8c\xea\x12\xfa\xa2\x26\x2d\x5d\x03\ \xe8\x42\x01\xce\xd0\xd7\xd0\xdc\xc5\xaa\x2d\x07\x29\xce\xf7\x53\ \x35\x22\x17\xa9\x86\x72\x07\x81\x52\x8a\xc2\xbc\x20\xe7\x9d\x36\ \x89\x8d\xdb\xf7\xd3\x3b\x10\x46\x13\x38\xbd\x99\x19\x0c\x45\x32\ \x00\x26\x83\x64\xf2\x1e\x77\xa4\x70\x81\x49\xb1\xcc\xfd\x5e\x13\ \x02\xaf\x47\x17\xa5\x25\xc5\x45\xdb\xd6\xef\x3a\x04\x7d\xeb\x8e\ \x05\x40\xde\x77\xfe\xcf\x82\xdf\xcf\x3d\x7d\x46\x50\x2a\x91\x41\ \x5b\x06\xf9\x73\x9a\xd6\x3e\x8f\xce\x49\x63\x8b\x98\x32\xa6\x18\ \xd3\x96\x34\xb7\xf7\x03\x0a\x5d\x53\x58\xb6\xc5\x9a\xad\x07\xd9\ \xd5\xd8\x49\xf9\xb0\x5c\x86\x15\xfa\x91\x4a\xa5\x18\xe5\x26\xd2\ \x2e\x68\x3a\x17\x9d\x59\x4b\x4f\x5f\x8c\xfa\x7d\x2d\x18\xba\x13\ \x50\x35\x91\x6d\x60\xd2\x60\x2d\xc9\x82\xe4\x4b\x64\x9e\x15\x68\ \x6e\x1c\x72\x47\x8a\xae\xae\x4e\xae\xbd\xe1\xa6\x19\x6b\x57\xbe\ \xf3\x14\x10\x1f\x12\x80\x91\xe3\xcf\x3e\xfb\xc1\x1f\x3f\xf4\xbf\ \x85\xd0\x87\xcc\xf4\x86\x62\x83\xe3\xcf\x10\xf4\x1b\xd4\x8e\x29\ \xe6\xdc\xa9\x95\x34\xb5\xf7\xd1\x17\x8e\xa3\x94\xc4\x63\x08\xba\ \xfb\xa3\xac\xd8\xd0\xc0\x40\xd4\x64\x42\x55\x29\xba\xa6\xb9\xc9\ \x4d\xf6\x5c\xcc\x96\x8a\x59\x53\xc6\x50\x5a\x94\xcf\xc6\x1d\xfb\ \xdc\xc0\xa8\xd2\x2e\x90\x69\xa8\xfb\x72\x5c\x43\xa5\x03\x9f\x20\ \x15\x43\x92\x39\x84\x26\x20\x91\x48\x50\x5a\x98\x9b\x13\x93\xfe\ \x15\x9d\xad\xbb\x1b\x86\x04\xa0\x66\xca\x05\x8f\x5e\x39\xef\xb2\ \x89\x88\x74\xcf\x1c\x3d\xd5\x3d\x92\x15\xa0\xd0\x75\x8d\x53\x26\ \x96\x31\x63\xe2\x48\x00\x1a\x5a\xba\x9c\xc4\x47\x13\xec\x6d\xee\ \x64\xf9\xfa\x3d\xf8\xbc\x3a\x13\x46\x17\x63\xd9\x47\xb2\xc1\xb6\ \x15\x63\x47\x0d\x63\xf6\x49\xd5\x2c\xff\x6c\x1b\x4a\xca\x94\x81\ \xa4\x62\x41\x1a\x8c\xe4\x73\x49\x76\x88\xcc\xf7\x2a\xdd\x46\x43\ \x08\x3a\xbb\xbb\x85\xd2\xfc\xa1\xc3\x07\xb7\xbe\x32\x14\x00\x65\ \x97\x7e\xfd\xde\xa7\x23\xde\x12\x34\x4d\x90\xe3\xd5\xc8\xf1\x6a\ \xce\x8f\x68\x47\xcf\xf4\x32\x59\xa1\x69\x69\xd7\xf0\x7b\x75\x6a\ \xc7\x95\x30\x7b\x72\x05\xb1\x84\x45\x5b\x67\x1f\x52\x4a\xa4\x94\ \x6c\xdc\x79\x90\xad\xbb\x5b\xa9\x18\x5e\x40\x49\x41\x00\x29\x55\ \x06\xe0\x4e\x5c\xc8\x0b\x05\x38\xff\x8c\xa9\xec\x6c\x38\x48\x7b\ \x77\xaf\xe3\x12\x99\xa3\x80\x96\x9d\x0b\xa4\x7c\x5e\x4b\xf6\xba\ \x93\xa2\xa7\x98\xa2\x81\x92\x92\x19\xd3\x67\x4d\xd8\xb0\xe6\xbd\ \xa7\x5c\xd1\x35\x03\x00\x6d\xec\xf5\x37\xfd\xe3\x43\x97\xd4\xb7\ \xf5\xb3\xb7\x3d\xcc\xe6\xa6\x3e\x0e\xf5\xc6\x29\x0c\x7a\xc8\xf1\ \xe8\x59\xf9\xbd\x13\x6c\xb2\x19\x92\xbc\x4e\x06\x39\x4d\x73\x12\ \x1f\xbf\xd7\xa0\x6e\x7c\x19\x17\x9e\x5a\x4d\x47\xcf\x00\x6d\x9d\ \x4e\xf2\xd3\xdb\x1f\x61\xe5\x86\x5d\x1c\xee\x1a\x60\x4a\x75\xc5\ \x90\x71\xc1\xd0\x75\xce\x3d\xb5\x8e\xf6\xae\x5e\x9a\x0e\xb5\xa7\ \xe3\x41\xca\x60\xb2\x5c\x43\x13\x02\xa1\x32\xe8\x9f\xcc\x0c\x53\ \x8c\x96\x4c\x9d\x54\xc3\x8a\xd5\xfb\x77\x63\xb5\xad\xcf\x02\xe0\ \xa2\xab\xef\xbc\xdb\x57\x31\x75\x92\x94\x56\xea\x8f\xfa\xe3\x16\ \x3b\x5a\x06\xd8\x79\x68\x80\x83\x9d\x11\x74\x0d\xca\xf2\x7d\x68\ \x42\xb8\x63\x7c\xba\xd7\x87\x8a\x11\x69\xd0\x9c\x1e\x9e\x7e\x62\ \x39\xb3\x6a\xab\xf0\x7b\x0d\x76\x1f\x68\x43\xd3\xa0\xa9\xad\x93\ \x8f\xd7\xed\x44\xda\x92\x89\xe3\x86\x63\xdb\xd9\x6c\x90\x52\x31\ \xf3\xa4\x1a\x86\x97\x14\xb1\x76\xf3\x0e\x37\x73\xcc\x0c\x78\x22\ \x3b\x00\x6a\xa4\xd2\x63\x0d\xe1\x80\x92\x11\x3c\xdb\xda\xdb\x38\ \xfd\xac\x73\xa3\x5b\xd6\x2d\x7d\x3d\x13\x00\xfd\xcc\x8b\xee\xb8\ \xaf\x43\x96\x94\x78\x0c\x4d\xe8\x9a\xc0\xd0\x35\x74\x5d\xa0\x6b\ \x02\x5b\xc1\x40\xcc\x62\xcf\xa1\x3e\x56\xef\xee\xa0\x2f\x92\xc0\ \xeb\xd1\xf1\x79\x34\xfc\x5e\x2d\xa5\x2b\x1d\x3d\x46\xb8\x1e\xac\ \xc0\xef\x37\x98\x58\x35\x8c\x39\x33\x26\x30\x10\x8d\xd3\xd5\x13\ \x26\x12\x8d\xb3\x73\x5f\x13\x1b\xb7\xef\x67\xf4\xc8\x52\xc7\x2d\ \x14\x59\x20\x54\x55\x0c\xa3\xb6\x66\x2c\x1b\xb7\xed\xc6\xb4\xcc\ \xd4\xc8\x80\x9b\x10\x09\x2d\x33\x3f\x70\xf3\x02\xb7\x3d\xba\xae\ \x61\xdb\x16\xd1\x58\x8c\xfd\x07\x0e\xaa\x13\x27\xd4\xe8\x1b\xd6\ \x2e\x5d\x00\xa8\x24\xef\x0a\x1e\xfe\xf5\xa7\x4d\x03\xbe\xaa\xe0\ \xf6\x96\x7e\xa4\x54\xe8\x9a\x20\x2f\xa0\x93\x17\x34\xf0\x7b\x85\ \xa3\xef\x25\xc5\x4b\xe5\x8a\x9e\x4a\x32\x2c\xdf\xcf\x99\x93\xca\ \x18\x55\x9a\x9b\xf6\x47\xd7\x55\xd2\xee\x90\x0d\x90\x52\xa4\xb2\ \x41\x4d\x13\xbc\xf9\xc1\x7a\x3e\x58\xbd\x0d\x21\x24\xb6\xb4\x99\ \x30\x7a\x04\xb7\x5f\x7f\x01\x86\xa1\xa7\x46\x8b\xe4\x39\x61\x9a\ \xfc\xe8\x91\x05\x74\x75\x77\xa3\x94\x72\xda\x83\x04\x3b\xdd\xb6\ \xa4\x68\x12\x89\xc4\xe8\xe8\xec\xe4\x70\x7b\x27\xf1\x78\x02\x65\ \x5b\xc4\x13\x31\x2e\x9b\x77\x51\xf8\xed\x97\x7e\x56\x01\xf4\x24\ \x01\xa8\x79\xf1\x95\xdd\x3b\x6b\x6b\xc6\x03\xd0\x15\x36\x69\xef\ \x8f\x73\xa0\x23\x4a\x7d\x6b\x98\x83\x9d\x51\x7c\x86\xc2\xe7\x51\ \x78\x75\x85\xd7\x70\xce\x1e\x1d\x0c\x5d\x61\x5b\x16\x01\x9f\x4e\ \x59\x61\x0e\x35\x15\x45\xd4\x8d\x2d\xc5\x30\xc0\x96\x6e\xe4\xd6\ \xc4\x11\x0c\x49\x1e\x4a\x29\x67\xa8\xec\x8b\xb2\x66\xf3\x6e\x16\ \xaf\x58\x4f\x3c\x9e\x20\x94\xe3\xe5\xec\x99\xb5\x5c\x3e\x77\x3a\ \x09\x73\xd0\x33\xc0\x0b\x6f\xbc\xcb\xd2\x15\x6b\x30\x74\x8d\x48\ \x38\x4a\x38\x1a\x21\x3c\x10\x21\x12\x8d\x12\x8b\xc5\x88\xc5\xa2\ \x24\x12\x09\x94\xb4\x1d\xd1\xc5\xd5\x1d\x6d\xdb\xe2\xd4\x99\xb3\ \x59\xb9\xf8\x89\x09\x40\xbd\xd3\x1c\x6f\xf9\xfc\x77\xdf\xd9\xf4\ \xea\x88\x61\x25\x59\x0d\x35\x74\xf0\x18\x60\xd9\xb0\xa5\xb1\x97\ \x4d\xfb\x7b\x68\xed\x0a\xd3\x33\x10\xa3\x3f\x1a\x47\xd9\x36\x02\ \x89\xdf\xa3\xf0\x18\x0a\x8f\x06\x9a\x90\x80\xcd\xb4\xea\x32\x66\ \x9d\x58\x4e\x59\x71\x90\xc2\x3c\x5f\xca\xd8\xc1\x63\x7f\x26\x10\ \x9a\x26\x90\x0a\x5e\x7b\x6f\x15\x9f\x6f\xdb\x4d\x5b\x47\x37\xc5\ \xf9\x21\x6e\xbb\x6e\x1e\x13\xc7\x57\xe0\x08\x47\x8e\x6f\xf8\x7d\ \x82\x85\xaf\x7f\xc0\x03\xbf\x7c\x06\xdb\x36\x5d\xe5\xc8\x11\x59\ \x95\x2d\x51\xca\x4a\x8b\xad\x4a\x3a\xeb\x0e\xae\xb0\x3a\xa5\xb6\ \x8e\xcf\x3f\xfd\xf0\x1a\xe2\x07\x5f\x73\x5a\x93\x5b\x77\xef\xca\ \xf7\xd6\x3e\x10\x0c\xf8\x87\x98\xc1\x39\x0d\xd3\xdc\xc8\xa3\x50\ \xd8\x52\xd2\x1b\x4e\xf0\xc9\x8e\x36\x56\x6d\x6b\xa6\x77\x20\x8a\ \x86\x23\x5f\x65\x6a\xf9\x28\x1b\x5d\x28\xca\x4b\x82\xdc\x38\xef\ \x24\x66\xd7\x95\x63\xd9\xae\xe8\xf3\x25\x87\x6d\x4b\xde\xfa\xe3\ \x1a\x1e\x7e\xf2\x55\x74\x4d\x30\xb9\x7a\x14\x4f\xff\xec\xfb\x19\ \xf1\xc4\x01\xb3\xb9\xf5\x30\x97\x7c\xeb\x9f\x88\xc6\xa2\xae\xc2\ \xfc\xe5\x6a\x72\xed\xa4\x13\xd9\xb0\xf1\x8b\x9f\xd0\xb7\xe9\x41\ \x27\x08\x06\x46\x5d\x7b\xe7\xad\xb7\x9f\x32\x38\x78\x25\xa3\x7c\ \xe6\xe7\xba\x26\xdc\xf8\xe0\xa1\xae\xaa\x80\x4b\x67\x57\x72\x66\ \x5d\x39\x13\x2a\x0b\x29\xcd\xcf\x41\x2a\x49\x5b\xd7\x00\x71\xd3\ \x72\xe5\x2c\x49\x67\x4f\x98\x25\xab\xeb\x79\x73\xd9\x36\x76\x1f\ \x38\x8c\x65\xd9\x54\x0c\x2f\x20\xe0\xd7\xb0\xed\xa1\x99\x21\x04\ \xd4\x4d\xac\xe4\x86\xcb\xe6\x90\x1b\xf2\xb3\xec\xd3\x8d\xfc\xdb\ \xc2\x37\xd1\x35\xc1\xac\xa9\xd5\x28\xe5\xe6\x0b\xb9\x21\xae\x9c\ \x77\x0e\x1b\xb6\xed\xa0\xb9\xa5\xcd\x99\x6e\x67\x88\xa6\xc8\x4c\ \x61\xd5\xf9\x6e\x78\x49\x09\xad\x9d\xfd\x3b\x89\x36\x2f\x76\xfe\ \xb5\x70\xe6\xb3\x5b\x96\xaf\xb9\xc9\xb6\xb3\xc7\xf3\xc1\x6c\x18\ \x7a\x5e\x90\x3c\x3b\x81\xd3\xe3\x71\xdc\x66\xc3\xae\x76\x3e\xde\ \xb0\x8f\x2d\x7b\x5a\x18\x08\xc7\x08\x47\xa2\xd8\xb6\x05\x4a\x62\ \x9a\x26\xf1\x44\x9c\x39\xd3\x4f\xe0\x86\x8b\x67\x32\x72\x58\x01\ \xb9\x41\x1f\x38\xc9\xdb\x90\x8b\x17\x86\x01\x8f\x3d\xf7\x0e\x2f\ \xbe\xb9\x14\xdb\xb6\x78\xfe\x17\xff\x4c\xf5\xd8\x51\xa9\x00\x69\ \xe8\x82\x9b\xbf\x7f\x1f\x1f\x7d\xf2\x99\x63\xfc\x50\xeb\x10\xee\ \x75\xed\x89\x35\x6c\xdc\x71\xf0\x39\x3a\x3e\xbd\x79\x48\x00\x8e\ \x65\xe8\x50\x59\x60\xf6\xf7\xca\x9d\x86\x82\xa6\x83\x94\x8a\x68\ \x22\x41\x38\x92\x60\xd5\xa6\xbd\x2c\x59\xbd\x83\x5d\xfb\xda\xd0\ \x34\x85\x86\x44\x4a\x9b\x90\xdf\x60\x78\x49\x2e\xdf\xbc\xf4\x34\ \x2e\x38\x7d\x22\x09\x0b\xec\x21\xf4\x5c\x21\x20\x1a\x4b\xb0\x7c\ \xf5\x46\xee\x7a\xe8\x71\x26\xd7\x54\xf1\xfc\xaf\x7e\x8a\xd7\x63\ \xa4\x86\xcd\xd7\xde\x59\xc2\x1d\xf7\x3c\x40\x6e\xd0\xef\x00\x90\ \xb1\xfe\xa8\xdc\xf5\xc7\xda\x89\x13\xd8\xb8\x33\x13\x80\x82\xe9\ \x8f\x6f\x58\xb6\xee\x76\x21\x8e\x34\x34\x33\x72\x0f\xc5\x8a\xe3\ \x63\x8b\x13\x47\x92\x41\xb5\xbb\xdf\x64\xcb\xae\x66\xb6\xd4\x1f\ \x64\x7b\x43\x0b\x3b\x1a\x9a\xe8\xe8\xea\xc5\xb2\x4c\xf2\x82\x3e\ \xce\x99\x31\x91\xd3\xa7\x4f\x60\xe6\x94\x6a\x4a\x0a\x73\x48\x98\ \xa4\xd2\xe5\x64\x6f\xdb\x12\x9e\x7d\x79\x11\xcf\xbf\xf1\x2e\x57\ \x9c\x7f\x16\x77\xdc\x34\x1f\x8f\x61\xe0\xf5\xc0\xea\xf5\xdb\xf9\ \xe6\x1d\x77\xd3\xdf\xe7\x4a\xf1\x19\x6b\x8e\x4a\xda\x4c\x99\x34\ \x81\x0d\x5f\xec\x7f\x82\xae\xb5\x77\x38\xa6\x85\xea\xee\x5d\xb5\ \x74\xed\x03\xc1\x1c\x7f\x86\x01\x69\xc9\xfb\xe8\xb4\xff\xea\x6c\ \xc9\x8c\xfa\xc2\xcd\xd7\x3d\x06\xec\x69\xec\x64\xd1\xb2\xf5\x2c\ \x5d\xb5\x89\xbe\x81\x30\xd1\x68\x8c\x58\x2c\xc6\xa9\x27\xd7\x70\ \xc7\x0d\x17\x31\xae\x72\x04\x5e\xaf\x27\x2d\xce\xb8\xcf\x1b\x06\ \x2c\x7c\xf5\x3d\x7e\xf3\xec\x4b\x3c\xf7\xab\xfb\xa9\x19\x57\x95\ \xca\x43\xce\xbe\xec\x1b\x34\xec\xdb\xef\x06\xe7\xf4\xf2\x5b\xdd\ \xe4\x49\x6c\xdc\xb4\xe3\x27\xf4\x6d\x7a\xd0\x1d\x06\x2b\xe6\xff\ \xe2\xb7\x2b\x5f\x2d\x2d\x2e\xa6\x34\xd7\x43\x49\x9e\x97\x82\xa0\ \xe6\x44\x6b\x37\x71\x49\x9e\xc5\xa0\xb5\x80\xaf\x0a\xd0\xd1\x86\ \xc0\x24\x18\x00\xdd\xbd\x11\xba\x7a\xfb\xd9\xbc\x63\x2f\x8b\x3f\ \x5e\xc7\x8a\xb5\x9b\x29\xcc\x0b\x32\x76\xd4\x70\xae\xbf\x6c\x0e\ \x57\xcf\x9b\x8d\x6d\x93\xca\x0f\x34\x0d\x22\x91\x38\x2b\x3f\xdb\ \xc0\x7f\xbc\xbe\x88\x87\xff\xf9\x7b\x8c\x1a\x39\x8c\x58\xdc\xe2\ \x81\x47\x7f\xcd\xef\x5e\xf8\x4f\x74\x8d\xd4\x12\x7c\xdd\xa4\x3a\ \x36\x7e\xb6\x22\x63\x18\x84\x9a\x6f\xfc\xf8\x93\x9d\x5d\xaa\x08\ \xa5\x40\x2a\x27\xa0\x15\x06\x3d\x14\x06\x74\x0a\x02\x3a\x85\x41\ \x83\xa2\x90\x41\x5e\xc0\x20\xe0\xd3\x09\xfa\x75\x72\x73\x0c\x82\ \x7e\x83\x50\x40\x4f\x69\xf3\x2a\xa9\x11\xa4\x04\x8c\xec\x85\x93\ \xe3\x3d\x92\x54\xf7\x7a\xc0\xb4\x61\xed\xa6\xdd\xac\xfa\x6c\x33\ \xeb\x36\xef\xe4\x40\x53\x0b\x27\x4f\x3e\x81\x8b\xe6\x9c\xca\xb4\ \xda\x1a\x46\x96\x15\x60\x9a\xce\x7f\x7a\x3d\xf0\xc4\x73\xaf\x53\ \x3e\x62\x18\x33\xa7\x9d\x44\x59\x69\x1e\x8f\x3e\xfe\xef\x3c\xf2\ \xd8\xe3\x28\x69\x61\x5b\x16\xd3\xa7\xcd\xe0\xb3\x0f\x9f\xcd\x48\ \x84\xa0\xe0\x96\x1f\x7f\xd0\xd4\x26\x2a\x82\xba\x96\xdd\x4a\x25\ \xe5\xa0\x75\x7a\x6b\xc8\x15\xdd\x61\xf9\x3e\x2a\x4a\x03\x54\x94\ \xe6\x52\x39\x3c\x44\xe5\xf0\x3c\x46\x96\xe4\x3a\xaa\xee\xa0\x0c\ \xf0\x58\xc9\x90\x38\x06\x4a\xc9\xef\x85\x80\x9e\xde\x01\xde\x58\ \xfc\x11\xaf\xbc\xfd\x3e\x85\xf9\x21\xee\xfa\x87\x6f\x31\xb5\x76\ \x02\x49\x0d\x53\x08\x58\xb6\x72\x35\xb9\xb9\x21\xa6\x4f\xa9\x65\ \xd3\xb6\xed\x9c\x7f\xe5\x75\x28\x2b\xc1\x85\x17\xcc\x0b\xbf\xf7\ \xfa\x2f\xb3\x52\x61\xfd\xdb\x77\xbf\xba\xb5\xd9\x3b\x65\x82\xa1\ \x91\xd9\x97\x4e\x42\x63\x5b\xc8\xcc\x4a\x8e\xe4\xd0\x92\x91\x78\ \x48\xdb\x89\xb8\xb6\x8b\xb2\x2d\x2d\x90\x36\x39\x5e\x8d\x80\x4f\ \x27\xc7\x7d\x05\x7c\x06\x45\x79\x7e\xca\x8a\x73\x19\x51\x9a\xc7\ \xc8\x92\x02\x46\x0e\xcb\x67\xc4\xb0\x10\x86\xee\xa4\xcf\x52\xba\ \x67\x9b\x54\x74\x1f\x0a\x08\x5d\x77\x84\xd8\x8e\xce\x30\x7b\x0f\ \x1c\xa4\xb3\xa7\x97\xa6\xe6\x56\x42\xa1\x00\x17\xcf\x3d\x9b\xdc\ \x5c\x2f\xfd\x03\x09\xc2\x91\x08\x85\xf9\xf9\x1c\xee\xe8\xe0\xc2\ \xab\xae\x53\xe7\xce\x39\x6f\xe7\xc2\x27\xee\xa9\x05\x6c\x23\x99\ \x78\xb5\x1e\xf8\x62\x6b\xf9\xac\x53\x27\xc6\xe3\x09\x67\x92\xe1\ \xbe\x6c\x5b\x61\xdb\x9a\x73\xb6\x24\x96\x72\x66\x87\xb6\x72\xde\ \xdb\xb6\x23\x72\x28\x99\x3c\xab\x94\x2c\xa5\x80\x48\xdc\x24\x1c\ \x89\xb9\x29\xaa\xc3\x1e\xdb\xb6\xb0\x2c\x0b\xdb\x32\xb1\x2d\x13\ \xcb\xb6\xb0\x4c\x93\x92\xc2\x20\x15\xc3\xf2\xa9\x18\x5e\x44\x79\ \x59\x11\x15\xc3\x8b\x18\x39\xac\x88\x40\x8e\x8f\x40\x8e\x8f\x60\ \x8e\x9f\x60\xc0\x4f\x20\xc7\x8f\xd7\xe3\xc4\x24\xdb\x86\x82\xfc\ \x20\x53\x6b\x27\x38\x1a\xa5\xd7\xf9\x6c\xcd\xfa\x6d\x04\x03\x39\ \x8c\x1e\x55\x4e\x51\x41\x01\x00\xc3\x4b\x4b\xa9\xff\xfc\x43\x71\ \xd5\xcd\x3f\xda\x9a\x54\x87\x33\xf8\x36\xfa\xdb\x9b\x36\xed\x7f\ \xca\x91\x80\x86\x8a\xe0\x2a\x1d\xdc\x44\x5a\x9b\x53\x28\x12\xa6\ \x4d\xdc\x32\x89\x27\x6c\xe2\xa6\x49\x3c\x61\x12\x4b\x58\xc4\x12\ \x09\xe2\x09\x93\x68\x3c\x4e\x34\xea\x9e\x63\x71\x22\xd1\x38\x91\ \x58\x9c\x48\x24\xea\xbc\x8f\x39\x89\x52\x24\x12\x25\x1c\x89\x12\ \x8e\x44\x32\x52\x5a\x27\x79\x82\x64\x56\xe7\x2c\x9d\x17\xe6\x05\ \x19\x57\x55\x4e\x75\xd5\x28\x4e\x18\x3b\x8a\xea\xb1\x95\x54\x8f\ \x1b\x8d\xdf\xe7\x49\x96\x1d\x80\x1b\xcf\x32\xdd\x4e\x08\x28\x2d\ \xad\xba\x0d\x0e\xfc\x76\x70\x85\x48\xd9\x4f\x1e\x5e\xdc\x3a\xff\ \xe2\x0b\x8f\x1a\xc5\x8f\x95\x08\x0d\x75\xd6\xb5\xb4\x48\x21\x38\ \x52\x4c\x3d\xd6\xd9\xb6\xc1\xb2\xc0\xb2\x25\x96\x65\x63\x5a\x36\ \x96\x65\xa5\xce\x09\xd3\x24\x91\x30\x89\x27\x12\xce\x2b\xee\x9c\ \xfd\x3e\x2f\xb9\xa1\x00\xb9\xc1\x20\xa1\x60\x90\xdc\x50\x00\x8f\ \xc7\x93\x32\x72\xe1\x6b\xef\x71\xd7\x1d\xf3\x46\x24\xcb\xee\x8c\ \x0c\x00\x0e\xbd\xf7\xc1\x3b\x6f\x5d\x35\xef\xfc\xcb\x75\x5d\x1b\ \xb2\x51\xc7\x8e\xda\xe9\x49\x8e\x94\xd9\xcf\x68\x8a\x3f\xf9\xd0\ \x34\x0d\xaf\x57\xc3\xeb\xf5\x1c\xbd\xce\x27\x83\x91\x00\x96\xad\ \x88\xc6\x62\xd8\x96\x8d\x2d\x25\xba\x94\x68\xae\x12\xfd\xe6\xa2\ \x77\xde\xca\xac\x39\xcc\x04\x80\x96\xc6\x9d\x0b\xe2\x89\xc4\xa5\ \x81\x1c\x9f\x76\xb4\xf2\xa1\xa4\x98\xf1\xa5\xc5\x47\x7f\xc9\x0a\ \x44\x95\x94\xba\x5c\x76\xb9\xd7\xb6\x84\x7d\x07\xda\xd8\xb9\x67\ \x1f\x3b\x77\xef\x65\xc7\xae\x06\x0c\x43\x63\xc2\xb8\x31\x9c\x31\ \x7b\x3a\xd5\xe3\xaa\xd0\x75\x1d\x9f\x4f\xa3\xa3\xb3\x9f\xd5\xeb\ \x3e\x97\x87\x9a\x1b\x16\x1c\xab\x48\x2a\xef\xf6\xbb\x5f\xdc\xf3\ \xbd\x5b\xbe\x51\x6a\x5a\x5f\x9e\xea\x1e\x6f\x26\x78\x34\x40\xb4\ \x0c\xa3\x74\xcd\x99\x3b\xc4\xe2\xd0\xd1\x35\x40\x7b\x57\x2f\x1d\ \x5d\xbd\xb4\x77\xf5\xd0\xde\xd9\x4d\x5b\x7b\x17\x2d\x87\x3b\x68\ \x3d\x74\x98\xde\xfe\x7e\x0a\x73\x03\x14\x15\xe4\x71\xc2\x98\xb4\ \xff\xd7\x8c\x1b\x43\x30\xe0\xe4\x1d\xba\x0e\x9f\xae\xdb\xc5\x92\ \x0f\x3f\xe6\x8f\x1f\x2d\x67\xc3\xe6\xcd\xdc\x76\xeb\x1d\xed\x4f\ \xfd\xeb\xed\xe3\x33\x0b\x2d\x87\x68\x56\xd9\xed\xcb\x96\x6f\x7f\ \x7c\x78\x49\xc1\x57\x4c\x85\x55\x96\x40\x9a\x8a\x07\xc2\x59\xf0\ \xb0\x6c\x89\x6d\xdb\x8e\x4f\xdb\x92\x48\x34\xc1\x81\x96\x76\xf6\ \x37\xb7\xb3\xaf\xa9\x8d\xbd\x8d\x87\x68\x68\x6c\xa5\xab\xbb\x17\ \x84\x13\xf0\xbc\x1e\x0d\xbf\x57\xc7\xe7\xd1\x39\xa1\x6a\x24\xa7\ \x4d\x9f\xcc\x99\x33\xa6\x70\x62\x75\x19\xa6\x3b\x61\xca\x9c\xc1\ \xc6\x13\x26\x03\x03\x11\x7e\xff\xee\xfb\x3c\xfa\x9b\xdf\xd1\xd5\ \xdd\x8d\xd7\xa3\x21\xa5\xcd\x19\xb3\x4f\xe5\xa3\x45\x8b\xee\x80\ \xc6\x27\x06\x17\x31\x0f\x3a\x0e\x3d\xbd\xf8\x83\x25\xff\x74\xcb\ \xd7\xaf\x1b\x2b\x95\x12\x99\x18\xa5\x96\xa3\xdd\xd9\x5e\x72\x1c\ \x36\x74\x47\x27\xe8\x8b\x48\x5a\x3a\xfa\x68\x6e\xef\xa5\xe9\x70\ \x2f\x4d\x6d\xdd\x34\xb5\x75\x13\x89\xc6\x88\xc7\x13\xce\xa8\x10\ \x8b\x13\x4b\x24\x30\x5d\xb9\xca\xb6\x4d\x4c\xd3\xc4\x34\x13\xf8\ \xbd\x3a\x67\x9c\x72\x22\x33\xea\x4e\xe0\x94\xba\xf1\x14\xe5\xe7\ \x12\x0c\xf8\x09\x05\x9c\x92\x9c\x64\x61\xd9\x40\x38\xad\x48\xe7\ \xf8\xa1\x61\xff\x61\x1e\x7f\xf6\x25\x3e\xfe\xf4\x33\x0e\x1f\x6e\ \x27\x9e\x88\x81\x92\xf8\x7c\x1e\x94\x6d\x63\x85\xc3\xaa\xaa\xb2\ \x6a\x2f\x34\x3e\x7d\x7c\x75\x82\xc1\x49\xd7\xff\xf1\x0f\x1f\xfd\ \xc7\xd8\x8a\x52\x15\x89\x4b\x11\x89\x5b\x0c\xc4\x4d\xc2\x31\x93\ \x81\x68\x82\xbe\x48\x82\xae\xfe\x28\x5d\x7d\x11\x3a\x7b\xc2\x74\ \xf4\x85\x69\xef\x1a\x20\x96\x88\xbb\xf5\x3a\x12\xe1\x56\x7a\xe1\ \x56\x8d\x5a\x96\x89\xe5\xd4\x00\x53\x98\xe7\x67\x44\x49\x1e\xe5\ \xa5\x79\x8c\x1e\x59\x4c\x75\xd5\x70\x6a\xc6\x8c\xa4\x72\x44\x2e\ \xb6\x74\x24\x38\xcb\xca\xce\x0c\x93\xd7\x1e\x77\xfc\xdf\xb0\x65\ \x37\xab\xd6\x6d\x64\xd1\x92\x8f\xd9\xbc\x7d\x27\x5e\x43\x77\xf2\ \x7d\x69\xbb\x25\xb8\x6e\x62\x66\x9b\xea\xfa\xf9\x57\x8b\x77\x16\ \x2f\xf9\x46\xcf\x81\xe5\x2f\x1d\x77\xa1\xe4\xf8\x19\xdf\xfa\xf0\ \xe4\x79\x77\xcf\xe9\x8d\xc4\x15\xd2\x16\xc9\xcc\x0f\x99\x31\xbf\ \x1e\x5c\xf3\x6b\x67\x97\xba\x0a\x21\x11\x4a\xe1\xf7\x08\x4e\x9e\ \x58\xce\xcc\xc9\xa3\x99\x31\x79\x34\x79\x21\x2f\x32\x59\xec\x75\ \x9c\x87\x65\xdb\x44\x63\x71\x9e\xf9\xcf\x45\xfc\xee\xa5\x37\xb1\ \x4c\x13\x21\x54\x4a\xe6\x92\x83\xda\xe0\x8a\x20\xaa\xa4\xb8\x50\ \xe4\x04\x0a\x3f\xdc\xf3\xf9\xcb\x73\x8f\x56\xc7\x3f\xe4\xd1\xb0\ \xf9\xdd\x5b\x2e\x99\x77\xf5\xb6\x88\x51\x15\xb0\x4d\x89\xd2\x04\ \x52\xba\xe5\x0a\x6e\x92\xa1\x14\xd8\x96\x22\x61\xd9\x24\x12\x09\ \x46\x14\xe5\x70\x62\x55\x31\x93\xc7\x96\x32\xae\xbc\x80\xfc\x90\ \x9f\x82\x5c\x3f\xb9\x41\x8f\xf3\x88\x5b\xef\x68\x5a\xc7\xce\xf9\ \x71\x6b\x0d\xfc\x5e\x58\xbf\xb5\x91\x17\xde\x5c\xca\xa6\x2f\x76\ \x71\xa0\xa9\x05\xdb\xb2\xd0\x84\x33\x59\x93\x99\xa5\x73\xa8\xac\ \x8a\xb3\x64\x29\xfe\x15\x97\x5c\x11\x7e\xea\x37\xff\x72\xf3\x9f\ \x58\x2a\x9b\x7b\xed\xf7\x7e\xfe\xfe\xcb\xdb\xdb\x3d\x4a\x29\x5b\ \x58\x96\x85\xc0\x26\x3f\xc7\xa0\x30\xe4\xa1\x30\xe4\x61\xec\x88\ \x3c\xaa\x2b\x0a\x98\x50\x59\x44\x28\xe8\x08\x15\xb6\x4d\x56\x99\ \xcc\xf1\xcc\xfc\x84\x10\x78\x0c\x88\xc6\x6d\xea\xf7\x36\xf1\xe9\ \xfa\x2f\x78\x6d\xf1\x0a\x0e\x34\x1f\xc2\x6f\x68\x43\x0a\x1b\x59\ \xe5\xb6\x32\xbb\x10\x3b\x91\x88\xa9\x6b\xaf\xbc\x42\xbc\xf4\xdb\ \x7f\xbd\x16\xba\x5e\x3d\xd6\x4e\x8e\x63\x1c\xfd\xaf\x2c\x79\xe3\ \xb1\xa9\x37\xde\xfe\xff\x7e\xa8\x6b\x4a\x4d\x19\x5b\x28\xc6\x8f\ \xc8\x1d\x34\x34\xa6\xa7\xbb\xe1\x68\xe6\x48\x20\xb2\x16\x41\x8e\ \xa9\x03\x08\x41\x57\x5f\x98\x27\x5f\x7c\x8f\x77\x96\xad\x76\xe6\ \x15\x2e\x95\x83\x7e\x9f\x2b\x6d\xc9\x41\x19\x97\x72\x13\xaf\x64\ \xc9\x6d\xfa\x37\xa5\xb4\xd5\x75\x57\x5e\x22\xb6\xd7\xef\x7a\xe4\ \x58\xc6\x1f\x6f\xb1\xb4\x31\xf5\x8c\x6f\x2d\x78\xfe\x89\x05\xb7\ \x04\x72\xfc\x0a\xa1\xb2\x2a\x47\x8e\x47\x34\x1d\x7c\x78\x0c\x47\ \xe4\xfc\x64\xc3\x3e\xfe\xf0\xf1\x06\xb6\xd5\x1f\xa0\xa1\xb1\xd5\ \xad\xe8\x50\xa9\x5e\x4d\x4e\x9e\x32\xa7\xe1\xca\x1e\xaa\xb4\xde\ \x4a\x05\xbf\x58\x3c\xaa\x66\x4d\x9f\x2a\x22\xe1\xc8\x33\x1b\x96\ \x2f\xfc\xce\x97\x6d\xbb\x39\xde\x7c\xcd\x7b\xf6\x65\x3f\x5c\xf4\ \xd8\x03\xff\xf7\xbc\x50\x30\x47\x89\x41\x20\x0c\x35\x47\x48\x2f\ \x83\xa5\xa7\xae\x03\x11\x93\xe6\xb6\x6e\x3e\x5c\xb3\x9d\xd7\x96\ \xac\xa5\xaf\x3f\x8c\xd7\x10\xe9\x8d\x12\x83\xa6\xdc\x47\xee\x27\ \x38\xf2\xb3\x4c\x7d\xc2\xb6\x12\xea\x94\xa9\x75\x62\xe4\x88\xf2\ \xa5\x2f\xff\xee\x47\x97\x1c\xcf\x86\x8a\xaf\x92\xb0\x7a\x27\xcf\ \xbe\xf1\x89\xb7\x5f\x5c\x78\x8b\x10\x42\x69\xae\x6e\x70\xf4\x44\ \x29\xed\xd7\xfb\x9a\x7b\xf8\xed\xeb\xab\xf8\xfc\x8b\x7d\x24\xe2\ \x09\x2c\xdb\x1c\xa4\x29\x0c\x2e\x97\xb7\x32\x7a\x7a\xb0\xaf\xdb\ \x59\x91\x3f\xf9\x5c\x3c\x11\x57\xd7\x5e\x76\xa1\xd8\xfa\xc5\x8e\ \x67\x36\x2e\x5f\x78\xfb\xf1\xee\x26\xf9\xaa\x19\xbb\x31\xe6\xa4\ \xab\x1e\xfc\xe5\x43\x0f\xff\x70\xe6\xd4\x6a\x15\x4f\x28\x34\xcd\ \xa9\xa6\x49\x1a\xef\xf3\x38\x91\x7e\xcd\xb6\x46\x3e\xd9\xb8\x8f\ \xf5\x3b\x1a\x69\x6c\xed\xc4\xa3\x3b\xa5\x6b\x59\xea\x92\xcc\xde\ \x1e\xa3\x32\xa8\x9c\x1c\xd2\x92\x00\x39\xbd\x2e\x33\xb4\x7e\xcb\ \xd5\x1f\x2c\x25\x6d\x8b\xcb\x2e\xfc\x9a\xd8\xf6\xc5\xb6\x47\x36\ \xad\x78\xfe\xde\xaf\xb2\xdb\xec\x4f\xdd\x30\x71\xed\xa3\xbf\x79\ \xf3\x99\xab\x2e\x3e\x37\x68\xe8\x9a\xd2\x34\x44\x34\x6e\xd2\xd1\ \x1b\xe6\xdd\x4f\xea\xf9\xc3\x8a\xed\x28\x69\xa3\x6b\x6a\x10\x7d\ \xad\xec\xcd\x13\x29\x5f\x4f\xae\xe1\x1d\xc9\x86\x23\x17\x38\xd2\ \xc0\xd8\x96\xa9\x4a\x8a\x0a\xc4\xc5\xe7\xcd\x0d\x3f\xf6\xd0\x0f\ \x6e\xfe\xb2\x80\xf7\x97\xdd\x33\x64\x14\x57\x4d\x9e\x75\xe9\x33\ \x8f\xfd\xec\xc1\x39\x2f\xfc\x71\x97\x6a\x6a\xef\x11\xe1\x70\xcc\ \x5d\xfd\xb1\x8f\xb2\x3e\x67\xa5\x7d\xdd\xce\xde\x13\xa4\x06\x31\ \x23\xf9\x1c\x83\xc0\x4a\xb2\x61\x20\x3c\xa0\xbe\x39\xff\x72\xf1\ \xd1\x8a\x55\x1f\xee\xdf\xfe\xf1\xcd\x56\xa4\xb5\xf1\xbf\x67\xd3\ \x54\x7e\xdd\xf5\xb7\xde\x72\xe7\xfd\x2a\x38\x6a\xdc\x9e\xd6\x01\ \xc2\xe1\xb0\x1b\xc9\x5d\xc3\x53\xd1\x5c\x1e\xb9\x6b\x6c\xd0\xc2\ \xa5\x52\xe9\x71\x3c\xb5\xba\xab\x5c\x4d\x52\xda\x98\x66\x02\x9f\ \xd7\x60\x5a\xdd\x44\x4a\x0b\x82\x0d\xbf\x7f\xfb\xad\x9f\xf6\x36\ \xae\xfc\xb3\x36\x4d\xfd\x05\xb7\xcd\x95\xdf\xfa\xdd\x7b\x1e\xbc\ \xcf\xca\x19\x59\xbc\x6d\x6f\x9b\x16\x8f\x27\xb2\xb6\xcd\x39\x3d\ \x7f\x14\x36\xc8\xa1\xfc\x3d\x7b\xdb\x9c\xc7\xd0\x98\x35\xf5\x44\ \x39\xbc\xa4\xb8\xf3\xdf\x1e\xbe\xef\x3e\x38\xf8\x37\xb2\x6d\x6e\ \x90\x9e\x50\x3d\xe5\x6b\xb3\x3d\xa1\xf2\xef\x9c\x7a\xda\x39\x97\ \x97\x95\x8f\xe1\x83\xb5\xf5\xf4\xf4\xf6\x2b\xb0\x85\x26\x9c\x09\ \x40\xd6\xda\x7d\xd6\xf0\xe6\xa8\xca\xa6\x33\x52\xa8\xc2\xdc\x80\ \xb8\xe0\xac\x53\xe8\xe9\xed\x63\xdd\xba\xd5\x6f\xa9\x44\xf7\x82\ \x9d\x1b\xde\xfb\x9b\xdc\x38\x39\xf4\xd6\x59\xef\x84\x4b\x6f\xb8\ \xe9\xc6\x39\xb9\x05\x65\x75\x91\x04\x95\xdd\x61\x33\x08\x5a\x2a\ \xfb\x53\xc9\xfd\x85\xca\xc6\x4c\x98\x0e\x30\x96\x45\x71\x81\x3f\ \x1c\xf2\x7b\x1a\xe3\xd1\xf0\x96\xe7\xff\xfd\xc5\x65\x44\xb7\xfe\ \xdd\x6c\x9d\x3d\x56\xca\x9d\xde\x3c\xed\x2f\xae\x41\x1f\xb4\x79\ \xda\x8e\xb7\x12\xeb\xaa\x27\x71\xf0\xaf\xba\x79\xfa\x7f\xfc\xf1\ \xff\x01\xee\xcb\x32\x77\x7b\xa2\x62\x32\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\xad\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\ \x01\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x06\x2a\x49\x44\ \x41\x54\x78\xda\xc5\x57\x7b\x4c\x93\x57\x14\xbf\xb4\xa5\xef\x77\ \xe9\x83\x52\xa0\x1f\x6d\x11\x69\x29\x53\x40\x5b\x11\xa6\x18\x74\ \x02\x3a\x94\x49\xd4\x0d\x11\xe3\x4c\xa6\xc4\xcd\xa1\xd3\x85\x29\ \x59\xb2\xcd\x91\x19\x03\x19\x3a\x23\x9b\x6e\x1a\x66\x82\xd9\xd4\ \x8d\x44\x81\xb8\x38\x1f\x30\xdd\x2b\xbe\x75\xa2\x2c\x6e\xce\x49\ \x34\x3a\xd4\x4c\x51\x39\xfb\xdd\x46\xfe\x59\x00\x15\x9b\xd8\xe4\ \xc7\xfd\xee\xfd\xce\xbd\xe7\x77\xcf\xf9\xdd\x73\x3f\x18\x11\x3d\ \x53\x3c\xd2\x00\x3f\x91\x5c\x2e\x17\xd0\x46\x3e\xee\xa2\xf8\x69\ \xf8\x9c\x70\x11\x90\x68\x34\x9a\x0f\xd0\xaa\x9e\x80\x40\x34\xe6\ \xac\x08\x0b\x01\x0e\xb3\xd9\x3c\x0f\x0b\x2e\x9d\xc4\xd8\x22\xbe\ \xbb\x81\xec\xb2\x19\x1b\x13\x64\x6c\x94\x56\xab\xdd\xac\x54\x2a\ \xd3\xc3\x46\x00\x3f\x83\xcb\xe5\xaa\x1f\xcf\x58\x71\x11\x63\xe5\ \xe8\xcb\xfa\xb1\xd1\x2d\x60\x6c\xab\x99\x31\x4f\x6c\x6c\xec\x06\ \xf4\xa5\xe1\x24\x20\x31\x18\x0c\xeb\x54\x2a\x95\x3f\x8b\xb1\x91\ \x65\x0a\x45\xb9\x89\xb1\x52\x9b\xcd\x96\xac\xd3\xe9\x5c\x29\x8c\ \xcd\x9d\xce\xd8\xc2\x0c\x95\xca\x86\x48\x4d\x45\x04\x56\x61\x4e\ \x44\x38\x09\xa8\x05\x41\xe8\xc4\xe2\x05\x7c\xa7\x32\x69\xc4\x9e\ \xd2\x42\xe3\x49\x87\x3d\xea\x5f\x8f\x60\xea\x2e\xce\x51\x9e\xc4\ \x78\x03\x20\xb5\xdb\xed\xcb\x1d\x0e\xc7\x6e\x2e\xda\xb0\x11\x30\ \x1a\x8d\xb1\x3e\x9f\xaf\x0d\x8b\x9a\x9a\xb6\xe7\x1d\xfe\x68\xa5\ \x70\x27\x2b\x60\x25\x85\x42\x4e\x6a\x95\x9c\x52\xbd\x51\xb4\x7a\ \xa1\xb8\x7b\x53\x8d\xf0\x2d\x6c\x1d\x99\x99\x99\xed\x9c\x74\xd8\ \x08\x44\x45\x45\x45\x7b\xbd\xde\xb5\x5b\xeb\xec\x07\x7a\xbb\x86\ \xd3\xa6\x5a\x23\x39\x9d\xce\x10\xa2\xa3\xa3\x49\xaf\xd7\xd3\x92\ \x22\x31\xfd\xf1\x8b\x96\x56\x57\xc6\x34\xe6\xe6\xe6\xd6\x81\x80\ \x32\x9c\x29\x90\x43\x03\x0d\xef\xcf\x17\xf7\xa6\xf9\xf4\x14\x1f\ \x1f\x4f\xf5\xf5\xf5\x54\x5d\x5d\x1d\x7a\x06\x41\x44\x43\x41\x12\ \x31\xa3\xb7\x4b\xd8\x3d\xbf\xdf\xbf\x86\xd7\x8f\x70\x12\x88\x00\ \x36\xcb\x64\x32\x32\x99\x4c\x21\xa7\x35\x35\x35\x54\x55\x55\x45\ \x71\x71\x71\xa1\x31\x14\x1e\x6e\xd8\x87\x35\xe1\xac\x84\x52\x88\ \xaf\xac\x42\xa1\xde\x5e\x6a\x32\xf7\x16\x58\x6d\x54\x98\x26\xd0\ \x94\xac\x61\x34\xd2\x9b\x48\x23\xbc\x2e\xca\x0f\x3a\x29\x37\xc9\ \x4e\x05\x46\x23\xbd\xa6\x37\xde\x2f\x97\x29\x3f\x01\x59\xf7\x53\ \x13\xe0\x61\x84\xf3\x8a\x09\x6a\xdd\xf5\xc3\x22\x4d\x6f\x27\x13\ \xd3\xdf\x98\x72\x23\x5e\x4d\xbf\x1f\x9a\x4a\x63\x33\x03\x34\x26\ \x18\xa0\xd6\xcf\x5e\xa0\x7f\xec\x7a\xba\xca\x18\xde\x8b\xe8\x34\ \x53\xf6\x8e\x8d\xb2\x9e\xc6\x71\xcc\x78\xd4\x71\x1c\xcc\x79\x24\ \xce\xfd\x44\x8b\xc5\x72\xb3\x55\xa4\xbd\x7c\x1e\x0b\x5f\x82\xf9\ \x35\xe0\x3a\x72\x9e\xe7\xf7\x53\x6a\x6a\x2a\x65\x64\x64\x50\x26\ \xda\x1b\x42\x02\xdd\x50\xa9\xa9\x0b\xef\x2f\xca\x14\xb4\x5f\xa4\ \x39\x97\x92\x92\x72\x02\x6b\xa4\x3c\x11\x01\x1e\x72\x94\xd1\xc9\ \x28\x30\xd5\x6e\xb7\xfb\xd3\x77\x64\xba\x8d\xcb\x1c\xf1\xb4\xc9\ \x62\xc1\xee\xe0\x1c\xb9\xbe\xbb\xec\x2d\x7a\xa3\xa4\x84\x92\x92\ \x92\x08\x82\xa3\xe1\x68\x6f\xa5\xa5\xd3\xcd\x68\x7b\x88\x60\xa3\ \xdb\x4d\xbb\x62\x5d\x0f\x2a\xa4\xda\x55\x31\x31\x31\x6b\x13\x13\ \x13\xeb\xa0\x95\x09\x8f\x24\xc0\x43\xce\x1d\x43\x54\xef\xf1\x33\ \x0f\x28\x6a\xd4\xa6\x53\x38\x82\x34\xce\xe5\xa2\x3f\x25\x12\xea\ \x16\x04\xba\xbf\x73\x27\x75\x6c\xd9\x42\x53\x12\x3d\x34\x33\x30\ \x8a\x6a\xb3\x32\xa9\x67\x6c\x16\xdd\x76\x0a\x74\x5a\x26\xa7\xe4\ \xe4\x64\x5a\x90\x9d\x4d\xcd\x2a\xd3\x3e\x5e\x0f\x90\x8a\xd1\x28\ \x50\xeb\xb1\xee\x07\x3c\x25\x83\x46\x00\xe2\x71\xf1\xd2\xfb\x90\ \x90\xbe\xd2\x64\xfe\xcb\xe3\xf1\x50\x16\xd4\x7e\x85\xe7\x5f\xad\ \xa6\x3b\xf9\x05\x74\x65\xdc\x38\x6a\x4e\xf1\xd2\xd1\xe2\x69\xd4\ \x53\x38\x95\x7a\x82\x99\x74\x2b\x2e\x9e\xae\x8a\x44\x94\x0e\x5b\ \x14\x2e\xfa\xce\x33\xfc\xd7\xbe\x5b\x14\x3f\x3b\x60\x7b\x52\x11\ \x5a\x57\xc5\x0b\xb7\x9f\xc3\x82\x5f\xe2\x9c\x5f\x86\x79\x97\x58\ \x42\x37\x1d\xb1\x74\x29\x71\x18\x35\x27\x24\xd0\x99\x9c\x1c\xea\ \xc9\x7e\x9e\xba\x92\x7d\xd4\x0d\x6d\x70\x21\x6e\x00\x49\x01\x91\ \x6a\x4d\xf1\x5f\xc4\x1a\xc6\x21\x9f\x82\x34\xc6\x5c\x3f\xba\xdd\ \xbd\x67\x23\x22\xa8\x35\x32\x92\xf2\x71\xcc\xe2\xcc\x66\x9a\x69\ \x30\x52\x1b\xda\xdd\x66\x0b\x75\xf8\x53\x69\x3b\x42\x1f\x83\x7e\ \x3a\x08\x70\xbb\xe3\x88\x42\x03\x08\x9f\x1f\x1d\xb8\x05\x02\x51\ \x43\x26\x30\xd7\x60\x48\x39\x04\x85\x1f\x07\x81\x8d\x10\x1f\xaf\ \x78\x46\x90\x70\xe9\x74\x54\x09\x07\x4d\xc8\xf7\x09\x88\xd3\x81\ \x52\x8c\x4a\x19\x7a\x97\x80\xa2\xd4\x89\x65\x3b\x61\x73\x2a\x3b\ \xbb\xc7\xc6\x98\xf9\x69\xea\x80\xa1\x65\x44\xda\xb5\x36\x8d\x86\ \x1a\x21\x40\x5e\xf3\x21\x52\x4a\x44\x88\x97\x4a\xa5\xb4\x0b\xd3\ \xcf\xa1\x3a\x46\xa3\x0f\xa1\x85\xde\xd9\x80\x0b\x18\x3f\x0b\xdd\ \xb4\x05\x82\x1d\x5c\x84\x4f\x43\x40\xd9\xe0\xf3\x1d\x69\xb6\xdb\ \xe9\x20\x4c\x17\xc3\x99\x01\xce\x66\xc1\xf9\x01\x44\xe5\x2b\x8c\ \x9d\xc1\x58\x09\xfa\x38\xef\x64\x03\x56\xa2\x7f\x12\xe3\x3f\x07\ \x02\xb4\xd3\xe7\xdb\xc3\x8f\xf5\x90\x09\xe0\x82\x09\xce\x8e\x8b\ \xfb\xbe\x11\xbb\xc1\x6e\x43\x24\x8e\x03\xe7\x80\xa3\x40\x23\xf0\ \x1b\x1c\x5e\xe0\xcf\xc8\xfb\x36\x00\xb2\xa7\xbd\xc0\x3e\x88\xf3\ \x15\xab\x75\x07\x08\x68\x87\x42\xa0\xaf\x26\x6c\xc8\x53\x6a\xab\ \x2a\xa1\x83\x02\xec\xb2\x16\xbb\x6e\xc1\x94\x76\xe0\x10\xd0\x00\ \x9c\x02\x81\x63\x68\x7f\x02\xf6\x03\x75\x20\x31\x1e\x63\x0d\x59\ \xd9\xf7\x05\xa3\xb1\x05\xba\x98\x3f\x54\x02\x72\x14\x8f\x46\xb4\ \xc6\x02\xa7\x70\x99\xe7\xd8\x02\x85\xd7\x62\xca\xd7\xc0\x0e\x60\ \x3d\x08\xed\xc6\x58\xd3\xc3\xb1\x8f\x01\x25\x9c\x5b\x70\x22\x2a\ \x04\xcf\x0f\xdc\xb9\xd5\x6a\xe5\x6b\x88\x87\x42\x40\x8f\xf2\x79\ \x04\xad\xa2\x88\xc9\xca\xfd\x0e\x47\x28\xcf\x39\xd8\xe1\x3a\x4c\ \x9b\x0f\xe7\xaf\xe3\xb9\x1c\x04\x96\xa0\x5f\x03\xcc\xc0\x58\x24\ \xfa\x79\x4e\xe7\x83\x62\xb1\xb2\x10\x95\xef\x45\x7c\x9e\xf1\x35\ \xa4\x43\x21\xe0\xc0\x45\xc4\x55\x6c\x06\xe4\x45\x11\xd2\xf6\x04\ \x38\x9c\x04\x27\x55\xdc\x19\x30\x19\xcf\x6e\x38\x9c\x83\xe7\xa5\ \x40\x31\xfa\x41\x9d\x9e\x66\x89\x15\x4d\xbc\x9a\x62\xf7\xf3\xf0\ \xed\xb0\x77\xb0\xef\xc3\x81\x9c\xcb\x50\xcf\xdf\xc5\xe7\xf5\x17\ \x10\x62\x1c\x1f\x4b\x60\x4c\x37\x9d\x45\x1e\x29\xc3\x94\x37\x81\ \x15\xc0\x62\x38\x5c\x04\x6d\x2c\xe0\x11\x01\x4a\x51\xe6\x8b\x58\ \x64\x6b\xdf\xd1\xc3\x57\x73\x19\xb0\x0d\x55\x71\xe2\x40\x69\xe8\ \xcf\xb9\x06\xdf\x7a\xab\x81\x0f\xff\x5f\x46\x1d\xe8\xe7\x32\x71\ \xfb\x1c\x26\xba\xb7\x08\x53\x5f\x05\x5e\x46\xce\x5f\x42\x9b\xcf\ \x44\x77\x73\x98\xb8\xa5\xcf\x79\x9f\x90\xd5\x6a\xb5\x17\xb7\xe1\ \xe7\xb8\x9a\x67\xf7\x97\x8a\xfe\x8e\xde\x34\x4c\x9a\x31\x20\x63\ \x44\x27\xc8\xd8\x24\x84\xff\x60\xbe\x48\xd4\x31\x5a\x22\x39\x96\ \xca\xd8\x37\xb1\x8c\xa5\xf3\x50\x0f\x34\x07\x57\xfb\x72\x5c\xcd\ \x89\x8f\x13\x01\x51\x9f\xf3\xc1\xc0\x6d\x00\x09\xc7\xe3\xfc\x13\ \x32\x90\x1d\xff\xf3\x4c\xf1\x1f\xa2\x17\x92\x97\x18\xd7\x80\x27\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x6e\x85\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x90\x00\x00\x00\x56\x08\x06\x00\x00\x00\xe1\x79\xc0\xd1\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\x01\x00\x00\x0e\x01\ \x01\x62\x83\xa2\x17\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xec\x5d\x77\x7c\x14\x45\xdf\xff\xce\xee\xd5\xe4\ \x92\x4b\x27\x84\x96\x40\xe8\x55\x7a\x93\xa2\x02\x8a\x60\x2f\x60\ \xc3\x2e\xea\xeb\x63\x7b\x2c\x8f\x3e\x76\x1f\xcb\x63\xd7\xc7\xde\ \x1b\x8a\x88\xa2\x3e\xd2\x41\xe9\x48\xef\x9d\xf4\xde\x73\x49\xae\ \xef\xce\xfb\xc7\xec\xdc\xcd\x6d\x2e\x95\x16\x7d\xf8\x7d\x3e\xc3\ \x1e\xb9\xdd\x99\x9d\xb9\x99\xf9\xfe\xfa\x10\x4a\x29\xda\x12\x11\ \x42\x08\xff\xa8\xbb\xea\x3f\x03\x00\xd5\x5d\x03\x9f\x69\x5b\xeb\ \xd8\x69\x3a\x4d\xa7\xe9\x34\xfd\xc5\x88\x9c\xea\x7d\x56\x07\x18\ \x92\x56\x64\xad\x48\x0d\x14\xaa\x15\x55\x28\x8a\xee\xca\xcb\x69\ \x40\x39\x4d\xa7\xe9\x34\x9d\xa6\x13\x40\xa7\x04\x40\x34\xd0\xe0\ \x45\x02\x60\x00\x60\x02\x60\x06\x60\x11\x8a\x49\xf8\xbb\x09\x80\ \x11\x0c\x58\x00\xc0\x0f\xc0\xab\x2b\x1e\xad\xb8\xb5\xe2\xd1\xfe\ \x2e\x82\xca\x69\x30\x69\x05\x09\x40\xdf\x6a\x3a\x3d\xee\xa7\x49\ \x4f\xcd\x99\x57\x7f\xa6\x79\xf3\xbf\xb6\x4e\x4e\x2a\x80\x68\x83\ \xcb\x25\x0c\x23\x18\x28\x58\x01\x44\x01\x88\x01\x10\x4b\x4c\x31\ \x9d\x88\x39\x3e\x9d\xc8\xd6\xe4\x98\xb8\xc4\x76\x29\xed\x3b\xb6\ \x4b\x6e\xd7\x3e\x36\x3e\x31\xc9\x1e\x1b\x1b\x67\xb5\x47\xc7\x18\ \x55\xaa\xd2\x1a\x47\x85\xb7\xa2\xa2\xdc\x59\x5a\x5a\x52\x5d\x58\ \x54\x58\x99\x97\x97\x5b\xe8\xac\xad\x2c\xa1\x7e\x57\x11\x75\x97\ \x1c\xa0\xfe\xba\x22\x00\x15\x00\xaa\x01\xd4\x82\x01\x8a\x17\x80\ \x0f\x0c\x50\xe8\x9f\xe9\x87\x3a\xd9\x14\x66\x21\x84\x53\x29\x86\ \xfb\x3f\xa7\x7a\x6a\x45\xfd\xe7\xd3\xe3\xff\xbf\x45\x8d\xcc\xa9\ \xe6\x50\xc8\x5c\x69\x0b\x73\xe7\x18\xfb\xd3\x5c\x6a\xb0\x9f\x6d\ \x62\x0c\x4e\xc6\x3b\x08\xc0\x61\x04\x93\x2c\x22\x01\xd8\x01\xc4\ \x02\x48\x90\x22\x52\x06\xb4\xeb\x3c\x60\xe2\xc4\x89\x53\x07\xf7\ \xee\x3b\xc8\x6e\x30\x45\xa2\xda\xa5\xa0\xb0\xac\x06\x45\xe5\x0e\ \xd4\x39\xdd\xf0\x2b\x0a\xa8\xaa\x80\x52\x95\x5d\x55\x15\x11\x56\ \x03\xe2\xa2\x2c\x88\x8d\xb6\x22\x2e\xda\x8a\x08\x8b\x01\x46\x09\ \xf0\x7b\x9c\x74\xf7\x9e\x1d\xa5\x2b\x57\x2e\xfe\xc3\x51\x72\x60\ \x25\xf5\x54\x1c\x06\x50\x0e\xa0\x12\x80\x03\x40\x1d\x98\x74\xe2\ \x07\xa0\xb6\x85\x1f\xa2\x2d\x90\x6e\x41\x88\x80\xa1\x2f\x08\xf3\ \x99\x93\xde\x2e\x45\xc3\x14\xe8\x3e\xb7\x89\xc5\x70\x9a\x4e\x1c\ \x09\x5a\x07\xa0\xfe\x5c\x6a\x0e\x85\x9b\x3f\xa7\x6c\xde\xe8\x54\ \xef\x0d\xad\x85\x63\x25\x7d\xdf\x1a\xb4\xf9\x02\xa7\x66\x2c\x4e\ \x28\x80\xe8\x80\xc3\x0a\x26\x65\x24\x81\x48\x29\x92\x2d\x6d\x4c\ \x7a\xaf\xe1\x13\xc7\x8c\x3b\xaf\x6f\xbb\x0e\xdd\xcd\x25\xb5\x14\ \x19\xf9\x95\x50\x29\x03\x07\xca\xaf\x22\x68\x50\x15\x54\x55\xeb\ \xdf\x13\xe6\xde\xf8\x98\x48\x8c\xe8\x9f\x86\x48\x0b\xc1\xd1\xc3\ \x87\x1c\xcb\x57\x2c\xdd\x51\x94\xb3\x7b\x85\xea\xcc\xdb\x0a\xa0\ \x10\x40\x29\x18\x98\xb8\xc0\x80\xe4\x7f\x56\x22\x69\x60\x31\x88\ \x2a\x46\x5e\x88\xee\x73\xb8\x8d\x40\x9c\xe4\xaa\x70\x55\xc3\xfc\ \x3f\x1c\xb0\x9c\x06\x93\xbf\x10\x85\xb1\x71\x86\x9b\x53\x40\xf8\ \x8d\xb7\x39\x73\xe9\xa4\xcf\x97\x30\x2a\xf8\xa6\xd6\x44\x73\x29\ \x1c\x30\x34\xc6\x88\x9d\x72\x86\xec\x84\x00\x88\x30\xc0\x5c\xe2\ \x88\x01\x90\x0c\xd9\xd2\xbd\x7d\xf7\x89\x37\x5e\x71\xf9\x0d\x67\ \xc6\xa5\xf4\x34\xec\xcb\xab\x43\x69\xb5\xb3\x9e\x64\x51\x0f\x18\ \xb4\x6b\x00\x38\x1a\xb9\x87\x52\x05\xaa\x1a\x0a\x38\x91\x56\x23\ \x46\x0e\x4c\x47\x72\x82\x0d\x59\x99\x59\xae\x6f\xbf\xf9\x74\x41\ \x5d\xd1\x96\xef\x00\x9a\x0d\xa0\x04\x0c\x48\xdc\xf8\x1f\x53\x6d\ \x85\x01\x0e\xbd\xb3\x02\x77\x66\x30\x08\x9f\xc3\x39\x38\xe8\x01\ \x44\x5c\xe8\x4a\x98\xe2\x47\xc3\x0e\x0f\x81\x85\xf0\xbf\xf2\x3b\ \xfc\x95\x49\xd8\x0b\xf8\x7c\x32\x08\x85\xcf\xa3\x86\x36\x5c\x71\ \x2e\x89\x73\xc7\x8f\x53\x64\xd7\x6c\xa0\x3f\x62\xbf\x1a\xeb\x4f\ \x73\xa8\x31\xc0\x50\xc3\x94\x46\x19\xb2\x13\x3d\x2e\xc7\x1d\x40\ \x08\x21\x7c\x60\x2d\x60\x6a\xaa\x24\x10\x29\x2d\x3a\x65\xe4\xd5\ \x33\xae\xbd\x7b\x5a\x52\x97\x81\xc6\xed\x47\xca\xe0\xf1\xfb\x05\ \xc0\x08\x27\x69\xe8\x40\xa3\xa1\x7b\x74\xc0\xa3\x86\x80\x49\x7d\ \x50\xb2\xdb\x2c\xb8\xf0\xec\x61\xd8\xb7\x7f\xaf\x63\xde\x37\x1f\ \x7e\xe9\x77\x1c\x5a\x08\x20\x17\x4c\x22\xa9\x01\x53\x6d\x29\x7f\ \xe5\xcd\xab\x01\xcf\xb7\x70\x0b\xdc\x28\x14\xd3\xec\xd9\xb3\x3b\ \x0d\x1a\x74\x46\xc7\xc4\x94\xae\xa9\xf6\xb8\x76\x9d\xac\x11\xb6\ \x24\x0a\x63\x84\x4a\x8c\x56\x15\x06\x2b\x81\xea\x93\xa8\xcf\x25\ \xc1\xef\x52\xfc\xee\xca\x9a\xaa\xf2\xfc\xf2\xe2\xec\xec\xdc\x9c\ \x8c\xbc\xd7\x5f\x7f\xfd\x70\x69\x69\xa9\x68\x87\xe2\x85\x6f\x06\ \x22\xa8\x9c\x06\x92\xbf\x00\xe9\x36\xdb\x80\xa3\xcc\x80\x01\x03\ \x6c\xb2\x2c\x5b\x7d\x3e\x9f\xd1\xef\xf7\x1b\x28\xa5\x92\xaa\xaa\ \xf5\x36\x5c\x42\x08\x24\x49\x52\x64\x59\x56\x4c\x26\x93\xd7\xef\ \xf7\xbb\x77\xef\xde\xcd\xd7\x28\x77\x8e\x39\x69\x4c\x5f\x18\xf0\ \x30\x01\x30\xa5\xa5\xa5\xd9\x62\x63\x63\x23\x78\x7f\x54\x55\x95\ \x29\xa5\x2d\xde\x5b\x09\x21\xf0\xfb\xfd\x34\x23\x23\xc3\x83\xf0\ \x52\x57\x38\x46\x4c\xbc\x8a\x4c\x19\x7f\x0e\x38\x81\xe3\x73\xdc\ \x00\x44\x50\x57\x99\xc0\x8c\xe2\x49\x00\x52\x4d\x71\x7d\x2f\xbc\ \xe2\xca\xdb\x67\xce\xbe\x6e\x66\xa4\xc3\x6b\xc0\x47\x8b\x0f\xa2\ \xc6\xe5\x6e\x52\x05\x45\xa9\x0a\x55\x90\x22\x1a\x56\x69\x29\x50\ \xc3\x82\x49\xc3\x80\xa3\xaa\x0a\xda\x27\xc6\x60\xda\xc4\x21\x58\ \xbd\x76\x5d\xf1\x92\x5f\xbe\xf8\x50\xad\xcb\x5d\x85\x20\x90\xd4\ \x01\xf0\x51\x4a\xd5\x06\x3b\xfc\x27\xa4\x26\x5c\xa6\x39\x50\x70\ \x8f\x37\x73\xf7\xee\xdd\xa3\x1e\x7b\xf2\x5f\x13\xd2\xfb\x0c\x9f\ \xec\x27\xd1\x9d\x4b\xea\x2c\x89\xe5\x75\xc6\xa8\x1a\x37\x91\x6a\ \x5d\x14\x4e\x4f\xc3\x16\x3e\xa3\x01\x88\xb2\x10\x44\x59\x81\x28\ \xb3\xdf\xd5\x3e\xda\x5d\x66\x95\xea\x0a\x6b\x2b\x73\xb7\xcd\xfd\ \xf2\xbd\x5f\x3e\xfb\xec\xb3\x5c\x04\xbd\xe6\xb8\x17\x9d\x08\x28\ \x21\x40\x72\x1a\x44\xfe\x7c\x24\xec\x09\x1c\x3c\xac\x00\x6c\x87\ \x72\xaa\xe7\xe7\x55\x1a\x93\x29\x55\x09\xa5\x20\x00\x15\x27\x12\ \x01\xff\x1f\x61\xff\x10\x02\x4a\x88\x44\x53\x13\xa8\xa3\x6b\x87\ \xc8\xf3\xc0\xd6\xa7\x0b\x1a\xb3\x07\x6d\xc3\x3c\xe1\xdc\x76\xa8\ \x13\x90\x09\x9a\x3d\x77\xe7\x81\xbc\x7f\x57\x7a\xe3\xc6\x29\x2a\ \x25\x94\xd2\x70\xfd\x69\x8a\x42\xde\xdb\x28\xab\x0a\xa8\xea\x05\ \x14\x0f\xa1\x8a\x97\x40\xf5\x10\x28\x1e\x99\x28\xce\xd2\x82\xcc\ \x6d\xbf\xfe\xf4\xcd\xda\xf7\xdf\x7f\x3f\x07\xc1\x35\x23\x32\x65\ \xa2\x84\x26\x4a\x69\x27\x84\x19\x3b\x2e\x00\xa2\x0d\x2c\x97\x3a\ \xe2\x00\x74\x91\x6c\xa9\x53\xce\x9d\x76\xd3\xec\xbb\x6e\xba\x3e\ \xbe\x5b\x97\x8e\x20\x04\x20\x04\xa8\xac\xf5\xe0\xdd\x5f\xf7\x22\ \xa7\xd8\xd1\x84\x9a\x2a\x0c\x78\x34\x43\x5d\xd5\x10\x28\xa9\x0d\ \x80\x49\x8f\xd4\x14\x4c\x1c\xd1\x1f\x3f\xff\xfa\xeb\x91\x8d\xab\ \xe6\xbd\x45\xdd\xa5\x1b\x00\xe4\x81\x79\x6f\x79\xf0\x17\x30\xb2\ \x87\x51\x55\x89\xaa\x29\xee\x0d\x67\x01\x60\x99\x3a\x75\x6a\xfb\ \xfb\xff\xf1\xaf\xeb\xcc\x51\xc9\x03\x9c\x4a\x44\xca\x91\x12\x4b\ \x42\x56\x29\x0c\xea\x71\x1a\x81\x58\x1b\x41\xef\x64\x6f\x55\xa2\ \xcd\x5d\x22\x2b\x8e\xac\x8d\xab\x17\xcf\xbb\xef\x9e\x3b\x36\x82\ \x6d\x08\xa2\xeb\x35\x5f\x08\xa7\xe3\x79\xfe\xa4\x24\x68\x23\xb8\ \x0d\x34\x1a\x40\xcc\xef\xdb\x8a\x3f\xfd\xef\xee\x98\x81\x2d\xad\ \xef\xfc\xfe\xb5\x87\x26\x0e\x8e\x9f\x09\xa0\x0a\x41\xfb\x25\x97\ \x44\x4e\x06\x80\x70\xa6\x8b\xf7\xc7\x06\x20\x66\xfd\xb6\xa3\x2f\ \xfe\xbc\xaf\xe3\xb9\x7e\xe5\x44\xb6\xce\x16\x6e\x92\x9d\x20\x35\ \xc1\xeb\x48\x8c\xf4\x56\x18\x89\xab\xd4\x5b\x57\x71\x78\xeb\xc6\ \xe5\xcb\xfe\x7e\xff\xbd\x5b\x11\x0c\x61\x08\xc7\x90\x9d\x90\x75\ \x74\xcc\x00\xa2\x6d\x4e\x06\x00\x11\x60\x52\x47\xf7\x94\x5e\xe7\ \xdd\xf3\xdc\x13\x2f\x4c\x1a\x79\xc6\x80\x00\x70\x88\xc5\xaf\xa8\ \xf8\x7c\xd9\x01\xfc\xb1\xbf\x30\x28\x45\x84\x05\x88\xe6\xa8\xa9\ \xf4\x80\x11\x06\x60\x9a\xb8\x87\xaa\x2a\x86\x0f\xea\x81\x5e\x69\ \x1d\x95\x57\x5f\x79\xe6\x63\x67\xe9\xae\x6f\x01\x64\x80\x79\x6e\ \xb9\xf1\x27\x56\x69\x09\xe0\x21\xaa\xaa\x44\x69\xc3\x02\x20\x62\ \xe2\xc4\x89\xc9\x4f\xbe\xf0\xee\x3d\x6e\x39\x79\xf8\xc6\xa3\xe6\ \x76\xd5\xce\xe6\x77\x97\x00\xb0\x98\x08\xbc\x7e\x0a\xa5\x05\x32\ \x9b\x51\x06\xfa\x77\x52\x9d\xe9\x09\x35\x47\x7e\x5f\xfc\xed\xdb\ \x0f\x3f\x70\xef\x46\x00\x4e\x04\xb9\x4b\xee\x29\x17\x22\x91\xfc\ \x59\x7f\x8b\xff\x25\x12\xd4\x3d\x06\xb0\x79\x16\x05\xe6\x75\x99\ \xb4\x6c\x63\xce\xdb\x8b\xf6\x27\xf4\x6e\x69\x9d\xe7\xf6\xa9\xce\ \x9c\x3c\xa2\xfd\x2d\x60\x76\xcb\x0a\x04\xdd\xf3\x4f\xb8\x37\xa5\ \xd0\x1f\x19\xac\x3f\x91\x60\xfd\x49\x5c\xb1\x6e\xf7\x33\x4b\x8e\ \x76\x1b\x7f\xa2\x01\x24\x1c\xd9\x2c\x04\xdd\xda\xa9\xae\x1e\x89\ \xae\xfc\xaa\x92\x23\xab\x1e\xba\xf7\xd6\xcf\x77\xed\xda\x55\x8e\ \xf0\x0c\x99\xa8\xde\x3a\x2e\xeb\xe8\x98\x00\x44\x43\x64\x03\x18\ \x12\xb7\x87\x64\xea\x3f\x60\xcc\x75\x4f\xbd\xf2\xd4\xb3\x3d\x3a\ \xa5\xb4\x03\xdf\xba\xc2\x81\x08\x21\xc0\xd2\x2d\x39\xf8\xee\xf7\ \x83\x50\xd4\xfa\x2e\xba\x0d\xa9\x9e\xc2\x83\x4a\x13\xf7\x36\x02\ \x4e\x22\xc0\x44\xdb\x2c\xb8\xfe\xb2\x29\x78\xe3\x3f\x6f\x2d\xcf\ \xdf\xbf\xf8\x75\x00\x87\xc0\x26\xab\x13\x80\xff\xcf\xb6\x71\xe9\ \xbc\x45\x44\x89\xc3\x0c\xc6\x41\x45\x8e\x18\x31\xa2\xdd\x0b\xaf\ \x7d\x74\x97\xdf\xd4\x61\xd4\x9a\x43\xe6\xe4\x1a\x57\xf8\x2e\x4a\ \x04\xe8\x92\xa0\x2a\xa9\xb1\x35\x2e\x09\x1e\xbf\xe2\x75\xfb\xfd\ \x3e\x97\x5f\xf1\x3a\xfd\x5e\x4f\x9d\xaf\xa2\xac\xc4\x65\x8b\x8a\ \x36\x45\xd8\x62\x4c\xb2\xd1\x6a\x30\x98\xac\x06\x83\xd1\x6a\x90\ \x8c\x16\x43\x59\x9d\xd5\x74\xb8\xd4\x6a\xa9\x73\x37\x5c\xf7\x19\ \x69\x6a\x6d\x7a\x7c\xcd\x91\xc5\x0b\x3e\xfb\xcf\x93\x8f\x3f\xba\ \x19\x4c\x4d\xe1\x44\x90\xa3\x0a\x59\x00\x7f\xb6\xdf\xe2\x7f\x8d\ \xc2\xb8\xee\x33\x7b\x28\xd0\x61\xe1\x9a\x23\x2f\x2d\x3b\x94\x9c\ \xde\xd2\x3a\x27\xf5\xaa\xc8\x9d\x3a\xa6\xf3\x3d\x00\xf2\xc1\xd6\ \x65\x35\xb4\xb5\x89\x13\xcc\xe4\xe9\xd4\x71\x16\x30\x69\x2a\x01\ \x40\xca\xc2\x95\x9b\xff\xf9\x5b\x4e\xef\x91\xa7\x02\x40\x44\x4a\ \xb2\x13\x3a\x34\xd5\x5d\x64\xa1\x95\xfb\xe7\xcf\x79\xfb\xbd\xd7\ \x5f\x7b\x6d\x1f\xd8\xf8\x38\x11\x0a\x24\x01\x69\xe4\x58\xc7\xac\ \xd5\x00\xa2\x81\x87\x09\x6c\x20\x3b\x11\x53\xcc\xc8\x49\x17\xde\ \xfb\xf4\xbf\x1e\x7e\x20\xce\x16\x61\x0d\x01\x0a\x76\x7f\xf8\xb2\ \x2f\xbb\x1c\x6f\x2f\xd8\x8e\x5a\xa7\xa7\x99\x6a\xaa\xfa\x6e\xbd\ \x4d\xdf\x1b\xde\x86\x52\xcf\x76\x42\x55\x48\x84\xe2\x96\x99\xd3\ \xb1\xe0\x97\x5f\x0f\x6d\x5b\xf5\xc5\x93\x50\xbd\xbb\x01\x14\x80\ \x71\x3b\xfe\x3f\x8b\x5d\x24\x8c\xc1\x4f\x0c\xdc\x8c\x4c\x4f\x4f\ \x8f\xff\xe0\xb3\xf9\xf7\x50\x6b\xc7\xb1\x6b\x0e\x9a\x52\xaa\xea\ \xea\x77\x2b\xc2\x4c\xd0\xbd\x9d\xd7\x1b\x67\xaa\xa8\xab\x2d\xcf\ \xae\x5a\xfc\xcb\x37\x19\xf3\xe6\xce\x29\x74\xbb\xdd\x7c\x23\x07\ \x74\xee\x83\x08\xe3\xeb\x3f\x66\xcc\x98\xd8\xab\xaf\xbf\x33\x3d\ \x25\xb5\x4f\xbc\xdf\x90\x68\x3b\x5a\x1e\x1d\x59\x58\x59\xbf\x3d\ \x49\x02\x86\x75\xa5\x8e\xae\xf1\x35\x87\xe7\x7f\xfd\xce\x2b\xff\ \x7e\xf1\xf9\x9d\x08\x02\xc9\xe9\xac\x02\x7f\x22\xd2\xd9\x44\x23\ \xc0\xb8\xf5\x64\x00\xa9\x3f\xff\xb6\xff\x99\x95\x47\x52\x52\x5b\ \x5a\xe7\x39\x3d\xcb\x0b\xa6\x8d\xeb\xfa\x0f\x00\xd9\x60\x6b\xb2\ \x12\x9a\xbd\x12\x4c\x02\x39\x61\x6b\xb3\x81\x90\x84\x76\x00\x3a\ \xff\xb4\x78\xfd\x83\x6b\x0a\xfa\x0e\x39\xd5\x00\xc2\xc9\x64\x20\ \x18\x9e\xae\x56\x27\x99\x8a\xff\xb8\x7e\xe6\x79\xcf\x64\x64\x64\ \x94\x21\xd4\x6e\xc4\x55\x5b\xc7\x0c\x22\xad\x02\x10\x01\x3c\x62\ \x01\xa4\x4a\x91\x9d\xa6\xde\x7c\xdb\x33\x0f\xdc\x75\xe3\x75\x66\ \x59\x22\x61\x81\x82\x3d\x17\xbe\x94\x56\xb9\xf0\xc6\xfc\xcd\xc8\ \x2e\xac\x6a\xc0\x03\xab\x01\xd5\x56\x38\xdb\x49\x83\x86\xf9\x30\ \x2a\xad\x46\x80\xe6\x92\xf3\xce\x44\x4e\x6e\x7e\xc5\x7f\xbf\x7b\ \xe3\x49\xea\xad\x5c\x07\x20\x07\x4c\xef\xea\x6b\xeb\x9b\x56\x18\ \xef\x17\x31\x80\xd3\x36\x6b\xd6\xf5\xbd\xff\xef\xc1\x17\x9f\x5b\ \xb8\xdb\xd2\xad\xdc\x51\xdf\xfb\x25\x2d\x49\xf5\xf7\x8c\x2d\x71\ \xe4\x67\xed\x2d\x9b\xf3\xd9\xdb\x07\x7f\xfb\xed\xb7\x32\x04\x6d\ \x12\x0d\xea\x55\x05\x0a\xe7\xd5\x65\x04\x60\xe8\xd0\xa1\x43\xe4\ \x0d\x37\xdf\xd9\x75\xc8\xa8\xb3\x3b\x7a\x8c\x9d\x62\x36\x67\x45\ \x58\x7d\x4a\xe8\xe3\xb2\x04\x9c\xd3\x5f\x2d\xab\xcd\xdf\xf2\xe5\ \x95\x97\x4c\xf9\x0a\xc1\xe0\x4f\xae\xf3\xf6\xe1\x34\x88\xb4\x69\ \x12\xec\xa2\x46\xb0\x79\x17\x0f\xa0\x03\x80\xae\x0b\x56\xec\x7d\ \x6c\xe5\xd1\x94\xce\x2d\xad\xf3\xec\x1e\x65\x45\x17\x4e\xe8\xfe\ \x04\x98\x7a\x39\x1f\x4c\xc5\x5c\x0b\x2d\xbb\xc4\x49\x00\x10\x3e\ \x9f\x23\xc0\x6c\xbd\xed\x01\xa4\xfe\xf0\xdf\x55\xf7\xaf\x2b\x1e\ \x38\x50\x3f\x8f\x4f\x35\xc5\xda\x24\x3a\xa5\x9f\x27\x7b\xe9\x4f\ \x9f\xbc\xf2\xe4\x63\x0f\xaf\x45\x70\x1d\xe9\xa5\xfa\x56\x83\x48\ \x6b\x5c\xcd\x08\x82\xe0\xd1\x2d\x32\x69\xf0\x4d\xff\x7c\xe4\xa5\ \x59\x17\x4c\x3a\x4b\x6a\x0a\x28\x1a\xfb\xce\xe7\x57\xf0\xfe\xcf\ \x3b\xb0\x61\x77\x4e\x03\x5e\x55\xf5\x41\xa4\x61\x95\x56\x78\xd5\ \x56\xa3\xb6\x13\xc1\x3e\xa2\x06\xec\x22\xbd\xd1\x25\x25\xd9\xfb\ \xce\x5b\x4f\xbf\xa0\xd6\xe5\xfc\x0c\xc6\xf9\x54\xa3\x0d\xab\xb3\ \x74\xba\x5a\xd1\xfb\x25\x12\x80\xfd\xad\x77\x3f\x3d\xbf\xdf\x88\ \xe9\x77\xfe\xb2\x95\xb4\xd3\x4f\xf8\xf6\xb1\x50\x07\xb5\x2f\xab\ \x5e\xf1\xeb\xd7\x07\x5f\x7b\xe9\x5f\x07\x54\x55\xf5\x21\x68\x98\ \xf3\x20\xd4\x6b\x2a\x9c\xb7\x14\x10\x1e\x3c\xcc\x42\xb1\x68\x57\ \xd3\xe0\x21\x43\xe3\x1e\x7d\xfa\x8d\x61\x0e\xb9\x5b\xc2\x8e\x6c\ \x83\x59\x6f\xa8\x1f\xd0\x05\xce\x74\x7b\xd1\xda\x0b\xa6\x8c\x7a\ \xaa\xa6\xa6\xa6\x02\xcc\xcd\x5a\xe4\xa2\x02\x92\x50\x5b\xfd\x3d\ \xfe\x57\x49\xd8\x70\x4d\x60\x73\x2f\x01\x40\x47\x00\xdd\x7e\x58\ \xba\xeb\xd1\xdf\x32\x52\x3a\xb6\xb4\xce\xb3\x7b\x94\x97\x5c\x74\ \x56\xcf\xa7\x00\x1c\x05\xf3\x98\xe4\x00\xe2\xc5\xc9\x03\x10\x23\ \x18\x80\xc4\x03\x48\x01\x90\xf6\xfd\xcf\xbf\xdd\xbb\xbe\x78\x40\ \xff\xb6\x06\x20\x00\xdb\x08\xc6\xf6\x42\x75\xac\x94\xbb\xea\xca\ \x8b\xce\x7e\xa1\xa2\xa2\xa2\x1c\xa1\xeb\xe8\x98\x40\xc4\xd0\xa2\ \x97\x09\x1a\xcc\xa3\x01\x74\x31\xc6\xf4\xba\xf2\xb1\xa7\x3e\xbe\ \xc1\x6f\x4d\x41\x9d\x47\x81\xcd\x22\x07\x80\x22\xfc\xf3\x0d\x7f\ \x67\x32\xca\xf8\xdb\x65\x43\x90\x9a\x1c\x8d\x39\x4b\x77\x71\x57\ \x81\x06\xef\x0f\xf4\x55\x7f\x15\xe3\x70\x28\xe5\xd6\x22\xed\xaf\ \xfa\x7b\xea\xff\x89\x0a\x7f\xf8\x63\xfb\x1e\x14\x16\x97\x98\xfe\ \xfe\xd0\x73\x8f\xbc\xf4\xdc\xfd\x75\xd4\x5d\xbc\x04\x6c\xc0\x6b\ \x09\x21\x6d\xce\xb0\x1e\x06\x3c\xcc\x60\x93\xdd\x06\x20\x76\xe1\ \xf2\x3f\xee\xaf\x96\xbb\x4d\xf9\x7e\xa3\x1a\x2d\x3e\x17\x6b\x93\ \xe8\xf0\xce\x15\x8e\xdd\x7f\x2c\xca\xbc\xe8\xda\x07\x76\x79\xbd\ \x5e\xae\x37\xd5\x17\xd1\x28\x27\x6e\xe0\xe2\xc2\xd5\x07\x59\x89\ \xc6\x7a\xab\xf6\x3e\x11\x00\x22\xb6\x6d\xdd\xe2\xbc\xf4\xfc\x31\ \xe5\x53\xce\x3d\x3f\xe5\x8e\xfb\x9e\x1a\x9c\xef\xee\x18\xb7\x37\ \x4f\x32\xf2\x8a\x76\x64\x22\xa2\x30\x26\xf9\xec\xe5\xeb\xf6\x77\ \x7c\xe4\xde\x59\x0f\xad\x58\xb1\x22\x4b\xab\x57\x3f\x93\x54\x42\ \x08\x69\x6b\xbf\xc7\x69\x0a\x50\x88\xfb\x38\xa5\x94\xa8\x6a\xcb\ \xf7\x7a\xed\xe7\xd5\x47\x7d\x9f\x0a\x12\xfb\x23\xf3\xfe\xa8\xc7\ \xcb\x55\xf1\x38\xd3\xaa\x7d\xb0\xb7\x8b\xe9\x34\xed\xd7\x95\xdb\ \xbb\x4c\x9d\x38\xe8\xae\xca\xca\xca\x70\x6b\x48\x21\x84\xb4\x98\ \x11\x6b\x36\x80\x08\x08\x6c\x03\xd0\x81\x58\x93\xcf\xba\xeb\xbe\ \xd7\xee\xd8\x53\x15\x8d\xba\xe2\x6a\xec\xcd\x77\xe0\xec\xbe\xf1\ \x18\xd5\x23\x16\xb2\xd4\x58\x3d\x8d\x03\xc9\x85\x67\x76\x47\x6a\ \xfb\x68\xbc\x3e\x77\x03\xea\xea\xdc\xa0\x14\xa0\x04\xa0\x94\x40\ \x25\x60\xff\x21\x80\x24\x11\xf6\x1d\x84\xab\x4a\x40\x25\x02\x68\ \x57\x15\x12\x08\xa5\xa0\x90\x40\x55\x0a\x2a\xe9\xaf\x04\x14\x12\ \x54\xe1\x1e\xa2\xbb\x27\xaf\xa0\x18\x5b\x77\xee\x31\xcc\xb8\xfe\ \x81\xc7\xbe\xfd\xe8\xf1\x52\xea\x77\x7a\xc0\xf4\xaf\x75\x60\x1b\ \x68\x9b\xa0\x46\xc0\x23\xba\x67\xcf\x9e\x29\x9f\xcf\x5d\xfc\xd2\ \xba\xa3\x91\xfd\x8f\x16\xf9\x8c\xe2\x73\x43\xd3\x7c\x6e\x57\xfe\ \x9a\xac\x6b\x2e\xb8\x7d\x8b\xc3\xe1\xa8\x05\xeb\x57\x8d\x50\xea\ \x10\x54\x1f\x89\x81\x80\xf5\xbc\x3a\x10\x9c\x94\xe1\xe2\x4b\x78\ \x86\xe5\x08\x30\x8e\x34\x0a\x6c\x2e\x45\x2d\x59\xfc\xab\x73\xc9\ \xe2\x5f\x0b\xae\xba\xe6\x86\xae\xd7\xdc\xfa\xf0\x19\xcb\x0f\xd8\ \x63\xdc\x3e\x36\x8f\x8b\x2a\x15\x79\xee\x1f\x86\x3e\x4f\xbe\x32\ \xe7\xfd\xd1\x0b\x3e\x7e\xfe\x99\x27\x1f\x59\x8d\xf0\x1b\xc7\x69\ \x10\x69\xdb\x24\x38\x74\x50\x50\xda\xf2\xa5\xc3\x62\x2c\x8e\x29\ \x55\xc8\xf1\xa4\xc0\x7b\x50\x50\x42\xa9\x82\xb6\x3c\xf5\x8a\x2a\ \x15\x69\xd1\x6e\x4b\xff\x9f\x96\xfc\xf1\xd2\x59\xa3\xfb\x3c\xe0\ \xf7\xfb\xf9\x57\x21\x91\xee\x2d\x05\x91\x46\xb6\xfa\xb0\xf7\x46\ \x00\x48\x26\x06\xdb\x90\xcb\xaf\x7d\xf2\x31\x47\x64\x6f\xd9\xe5\ \x53\x21\x49\xcc\x85\x73\xe1\x8e\x12\xbc\xb9\x28\x03\x47\x8b\xeb\ \x1a\x05\x09\xa0\x71\x10\x19\xd4\xbd\x1d\x5e\xbc\xe3\x1c\xa4\xb6\ \x8f\x81\x24\x11\x48\x12\x01\x91\xa0\x7d\x06\x24\x42\x20\x11\x40\ \x82\xee\x2a\x01\x84\xfd\x01\x20\xec\x19\xc2\xaf\x92\x78\x65\x05\ \x84\xdd\x2b\xde\x23\x89\xed\xc8\x12\x64\x89\x60\xff\xe1\x0c\x98\ \x8c\x92\x6d\xcc\x94\x5b\x9f\x01\x91\x7a\x81\x89\xe3\x66\xcd\x16\ \x74\xca\x29\x8c\xc1\x9c\x83\x87\xdd\x66\xb3\x25\x7d\x31\x6f\xd9\ \x5b\x3f\x6d\xb7\x0e\x3e\x52\xe0\x33\x72\x35\x1d\xa1\x2a\xce\xee\ \xe5\xac\xfd\xed\xbb\x67\xff\xb8\xf3\x96\xab\xd7\x38\x1c\x8e\x52\ \x00\xc5\x60\x31\x30\x39\x60\xea\xba\x1c\xad\xe4\x81\xe9\x9c\x0b\ \x01\x14\x69\xf7\x95\x02\x28\xd3\x4a\xb9\x56\xca\x84\x6b\x29\x98\ \xa7\x4c\xb1\xf6\x4c\x81\x56\x47\xae\xae\xfe\x3c\xad\xde\xb2\x39\ \x5f\x7d\x7a\xe0\xe6\x19\x13\x17\x4d\xec\x9a\x57\x12\x67\x03\xe5\ \xef\xea\x72\x2b\xf8\x66\x8d\x3f\x65\xcc\xb9\x37\x3d\x79\xd7\xdd\ \xf7\x8f\x00\x33\x60\xda\xc0\x00\x89\xa7\xf8\x6f\x13\xbf\xc5\x69\ \x6a\x92\x08\xa5\x34\xe8\x4e\xdf\x82\xa2\x69\x19\x4e\x35\x70\xd4\ \xa7\x56\xf6\xe7\x64\x97\xd2\x2a\xbf\xb4\xfa\x70\xd4\xd0\x85\x2b\ \xb6\x3c\x05\xa6\x82\x8b\x06\xdb\x27\x4c\x08\x2f\xd9\x37\x49\xcd\ \x5a\x74\xda\x46\x69\x01\x90\x00\x22\xf5\x1a\x3d\xe5\xae\x67\x93\ \xfb\x4d\xb5\x56\x3b\x7d\x6c\xe3\x0e\xd8\x32\x28\x4a\x1d\x6e\x7c\ \xb4\x22\x03\xdf\xac\xc9\x81\xc3\xe5\x6b\xa2\xde\x86\xbf\x4b\x8e\ \xb7\xe1\xd9\xdb\xcf\xc1\xa8\x01\x9d\xd9\x3e\x2f\x71\x90\x10\x37\ \x79\x02\x59\x92\x20\xcb\x12\x24\x89\x15\x99\x68\x7f\x93\x88\x56\ \xa0\xfd\x2d\x78\x95\x58\x8a\x04\xed\x7b\xed\x4a\xd8\x55\x22\x12\ \x24\x99\x68\xf5\x01\x1a\x42\x61\xe9\xaa\x0d\x18\x37\x6a\x48\x87\ \xae\x67\x5c\xfc\x08\x80\x74\x30\x23\x9a\xe9\x54\x83\x48\x03\xe9\ \x22\x78\xd0\x56\xdc\x2f\x4b\x37\x3e\xb3\x78\xa7\xa1\x57\x85\xc3\ \x0b\x55\x55\xa0\xaa\x0a\xcc\x06\x8a\xa9\xfd\xaa\xab\xfe\xfd\xe8\ \x35\xcb\xbf\xfc\xec\x83\xbd\x60\x9b\x7d\x21\xd8\xe6\xce\x4b\x1e\ \xd8\xa6\x5f\x04\x06\x04\x3c\x9b\x71\x35\x98\x31\xce\x01\x26\xa1\ \xd4\x6a\x85\x4b\x2a\xfc\xff\x35\xda\x3d\xd5\xda\x73\xe5\x5a\x3b\ \xc5\x5a\x5b\xf9\x5a\x1b\xbc\xbd\x7c\x00\xc5\x05\x05\x05\xc5\x97\ \x4e\x1d\xbd\xb0\x87\x79\x5b\x56\xd7\x24\xc5\xcf\xdf\x59\x51\x15\ \x2c\xd8\xe4\x89\xbf\xf4\xba\xfb\x9f\x18\x37\x6e\x5c\x37\x30\xb7\ \xd0\x48\x30\xb0\x0c\xe4\x20\x0a\x77\x1e\x03\x39\x0e\x74\x2c\xbf\ \xcf\xa9\xa6\xd6\xbe\xfb\xb1\xf4\x11\x8d\x6d\x46\x94\x06\xe6\x62\ \x4b\x0a\xad\xe7\xab\xd1\x36\x88\x02\xad\xea\xcf\xa9\x28\xb9\x65\ \x3e\x79\x7b\x51\xe2\xd8\x05\x8b\xd6\xfe\x1d\xcc\x8e\x5d\x8f\x11\ \x6b\xc9\x9c\x69\x72\xf3\xd3\x2a\x33\x82\x71\x7d\xdd\xd2\xcf\xb8\ \xf2\x9f\x97\x5d\x75\x57\x72\xb1\xc3\x13\x00\x8f\x40\x11\x24\x82\ \x5d\xd9\x95\x78\x65\xc1\x3e\xfc\xb6\xa7\x10\x4a\x23\xba\xc1\xc6\ \x5e\xd5\x6a\x36\xe0\xfe\xab\xc7\xe2\xea\xf3\x06\xb1\xcd\x5d\x00\ \x11\x99\x10\xc8\x32\x09\x48\x16\x21\xc0\x12\x00\x1c\x0e\x04\x24\ \x00\x30\x41\xe0\x00\x64\x59\x03\x19\x59\x62\x9f\xf9\x95\x3f\x43\ \x24\x06\x30\x44\x86\x2c\x49\xf8\x62\xde\xcf\xb8\xed\xfa\x6b\x86\ \xd9\x3b\x8e\xbc\x19\x40\x17\xb0\x4d\x5a\x3e\x19\x8b\xb4\x09\x12\ \x0d\x7c\xfc\x7c\x95\xb8\xb9\x3f\x2e\xbb\x73\x57\x61\xec\xc8\xfc\ \x32\xaf\xc4\xb9\x90\x84\x28\x42\x27\x74\xcd\x2f\xbe\xf1\xca\x89\ \x0b\xff\xd8\xb8\x21\x1b\x6c\x43\x2f\x40\x10\x34\xf2\xc1\x40\xa3\ \x14\x6c\xd3\xe7\x51\xbf\x1c\x24\xf4\x01\x4a\xe1\x8a\x68\x70\x77\ \x69\x85\xab\xc6\xaa\xc1\x82\xc0\x4a\x11\x2a\x99\x04\xda\xf6\x7a\ \xbd\xa5\xd7\xcd\x38\x7f\xb9\x3b\xf3\xc7\x3d\x43\xd3\xfc\xee\x80\ \x73\x83\xa2\x62\xfe\x06\x5f\x87\xe7\x5e\xfb\xe2\xf9\xa4\xa4\xa4\ \x76\x60\x20\x12\x81\x30\x20\x12\x66\x33\xe3\x20\x2b\xaa\xd7\xc2\ \x15\x7d\x42\x49\xa2\xaf\xb3\xc9\x1f\xa3\x7e\xdb\xe1\x12\x54\x1e\ \x8f\xd2\x58\x26\xd8\x40\x39\x51\x60\x12\x66\x7c\x79\x5f\xc3\xbd\ \x87\x40\xc7\x24\x81\xb4\x3d\xa2\x08\x7a\x71\xfe\x09\xca\xd1\x02\ \x9f\xb1\x46\xee\x7a\xce\x43\x8f\x3c\x3e\x0e\xf5\x19\xb1\xc0\x9c\ \x69\x4e\xd7\x1b\xb5\x81\x68\x95\xc8\x5a\x03\x1d\xe3\x53\xc7\xdd\ \xfa\xe2\x13\x2f\x0c\x4e\x4f\x6d\x8f\x9e\x1d\xdc\x58\x7b\xb8\x02\ \x99\xa5\x2e\x36\x86\x94\x82\x82\x6a\xf6\x08\x0a\xaa\x02\x3e\x85\ \x62\xf1\xd6\x02\x6c\x39\x54\x86\x8b\x46\x75\x42\xaf\x8e\x31\x0d\ \xb4\xd3\xd8\x3b\x00\x97\x4c\xec\x87\xb4\x94\x18\xbc\xfe\xf5\x2a\ \xd4\xb9\x54\x50\x4a\xc0\x52\xe8\x30\xb0\xa0\x94\x04\xec\x24\x94\ \x00\x94\xb0\xef\xa9\x44\x40\x55\x40\xd5\xec\x22\x90\x10\x7a\x05\ \x01\x21\x9a\x0d\x85\x10\x66\x09\x96\x08\xa0\x02\x92\x24\x31\x6d\ \x2d\xa5\xa0\x44\x62\x57\x95\xe0\xa3\xaf\xe7\xe1\x81\xfb\x1e\xbc\ \xec\xf1\xc7\xef\x3f\xa2\xd6\x66\x7e\x0b\xb6\x99\x9e\x12\x7b\x88\ \x6e\x83\xe2\x76\x06\x1b\x80\x98\x97\x5e\x7b\x77\x9a\x2f\xb2\xf7\ \xf4\x3d\x7b\xdc\x26\x7e\x7f\x74\x84\x8c\x61\xed\x73\x8a\x2e\x9f\ \x36\x61\xb1\xcf\xe7\xab\x44\x50\xd5\x54\x86\xd0\xc3\xb7\x78\xdc\ \x05\x37\x94\xeb\x6d\x1d\xe2\x4a\x0e\xb7\xaa\x49\x98\xcf\x62\x2a\ \x6f\x03\x42\x4f\x8e\xe4\x20\xc3\xff\xef\x05\xe0\x7b\xec\xe1\xbb\ \x37\xde\x76\x47\x66\xed\xa0\x73\xee\x1a\xb6\x3d\x0b\x66\x00\x70\ \x7b\x81\x5f\xb6\xc9\xdd\xbf\x5d\xf0\xdb\xb3\x67\x8d\xee\xfb\x00\ \x42\x0d\xf9\xdc\x32\x1b\xce\xa8\xdf\x12\xfd\xb9\xd8\xc7\x7a\x59\ \x51\xb5\x71\x0f\x9b\x12\x42\x58\x78\xfa\x76\x25\xe1\xef\xe1\xc6\ \xa9\xb9\x14\x6e\xec\xc3\xfd\x2e\xfa\xbe\x04\xde\xfd\xb8\x44\x20\ \xd7\x07\x8e\x70\xe3\xca\xc1\x0d\xe2\x77\xcc\xb1\xa5\x15\x36\x90\ \x36\x2a\x81\x70\x9b\x4e\x4b\x87\x35\x2d\x89\xd0\x2e\xd1\x65\x8a\ \xaa\x52\x0a\x10\x4a\x08\x40\x24\x19\x44\xb6\x4a\xd5\x1e\x13\xa9\ \xf1\x5a\xe4\x8a\x1a\x05\x95\xb5\xca\x71\x37\xd0\xaf\xdd\xeb\x8a\ \xbc\xe6\x92\xeb\x6f\x7d\xf1\xb9\xa7\xb7\x23\xc8\xf8\x05\x3c\xb2\ \xd0\x70\x9a\xbb\x10\x6a\xca\x88\x4e\xc0\x54\x22\xf1\xc4\x64\x1f\ \x74\xfb\xad\x0f\x5f\x9c\x9e\xca\xdc\xb7\x3b\xc6\x59\x30\x73\x64\ \x0a\x0a\xaa\xdc\x58\x7b\xb0\x12\x47\x8a\x6b\xc0\xd3\xa0\x11\x42\ \xd8\xa6\x4d\x55\x48\x00\x2a\x6a\xdc\xf8\x78\xc9\x41\xf4\xe9\x6c\ \xc7\x85\x23\x53\x91\x60\xb7\xd4\x6f\xa8\x09\x10\x19\xd2\xbb\x23\ \x5e\xbc\x7b\x3a\x5e\xfc\x74\x39\xf2\x8a\x2b\x03\xe0\xc0\x0c\xe1\ \x08\x80\x0a\x55\x25\x50\x99\x6d\xf6\xdc\xb8\x4e\xf8\x77\x54\xd2\ \xc0\x4d\x02\x95\xa8\x06\x38\x04\x94\x30\x43\xba\xa4\x4a\x1a\x93\ \xa3\x71\x48\xfc\x19\xa2\x68\x80\x04\x78\xbc\x5e\xfc\xbc\x78\x31\ \x99\x71\xed\x9d\xff\x37\xe7\xbd\x07\x37\x81\xaa\x55\x00\x3c\x84\ \x90\x93\x9a\x33\x4b\x07\x1e\x5c\x75\x15\x01\xc0\x7e\xd3\x2d\xb3\ \x07\xf7\x1d\x31\xfd\xd6\xf9\xeb\x5d\x36\x7e\xbf\x2c\x11\x4c\xea\ \x53\x57\x75\xd5\x45\xd3\x97\xfa\x7c\x3e\x51\x9d\xc4\x25\x8d\x6a\ \x84\x06\x1b\x85\x33\x92\x87\xf4\xaf\x91\xfe\x52\x61\x23\xd5\xbb\ \xbe\x11\x04\x33\x88\xf2\x04\x70\x7a\xa9\x25\x10\xe8\xf4\xfe\x3b\ \xaf\xef\x7e\xad\xef\xc0\xb8\x0e\x71\xe3\x7b\xe5\x96\x29\x12\x00\ \x94\x55\xab\x64\xfd\xd1\xc8\x33\x7e\x5c\xb8\xfa\xde\x8b\xa7\x8e\ \x7b\x09\xa1\x09\xe4\x20\xb4\x17\x8e\xeb\xd7\x83\x89\x78\x3f\xbf\ \x06\x8c\x8a\x61\x0a\x15\xae\x34\x0c\xa3\xa6\xb7\x47\x89\xa5\x21\ \x20\x69\x29\xf1\x77\x0d\x77\x46\x86\xfe\x3e\xfd\xf7\x94\xb4\xc2\ \xdb\x46\xa4\x30\x92\x95\xd8\x3f\x0e\xae\xbc\xfe\xfa\x29\xdb\x29\ \x45\x6b\xbc\xb0\xda\x2c\x7e\x00\x68\x8d\x17\x56\x6c\x04\xa5\x4f\ \xde\x7f\x75\xfe\xe1\xc3\x87\x79\xde\x3d\x1f\x00\xd5\x62\xb1\x90\ \xf4\xf4\x74\x6b\x7a\x7a\xf7\x88\x1e\xbd\x07\xda\xfa\x75\xe9\x16\ \x61\x89\xb4\x1b\x2d\x11\x76\x83\xdf\x94\x6c\xda\x99\x6b\x94\x6b\ \x9c\xc7\xc6\xaf\xaa\x00\xfe\x38\x6a\xea\xf4\xe6\x3b\x9f\x5c\xfc\ \xb7\x3b\x6e\x9c\x03\xc6\xb8\x85\x04\x18\x36\x67\x9e\x34\x08\x20\ \x82\xf4\x61\x03\xd0\xa1\xc7\xc0\xe9\x77\x5c\x34\x65\xb2\xcc\xbe\ \x0b\xde\xd7\x21\xd6\x82\x19\xa3\xda\xa3\xb0\x2a\x16\xab\x0f\x94\ \xe1\x48\x81\x03\x2a\xd8\x8c\x09\x4a\x04\x00\x40\xb1\x2f\xbb\x02\ \x07\x73\xcb\x71\xd6\xc0\x0e\x98\x34\xa4\x33\x8c\x06\x49\xd7\x66\ \xe3\x9d\x4e\x49\x8c\xc6\x0b\x77\x4f\xc7\x9b\x73\x7e\xc7\xe6\xbd\ \x59\x4c\x0a\x51\x11\xea\x55\x45\x00\x95\x12\xc1\xf3\x0a\xc1\xef\ \x54\x02\xc8\x12\x28\xa1\xa0\x54\x82\xaa\x6a\x40\x23\x11\x10\x0e\ \x2a\x2a\x01\x95\x25\x4d\xa2\x01\xf3\xb1\xa0\xac\x2e\x55\x95\x40\ \x24\xa0\xa4\xac\x02\x53\x26\x24\x45\x45\xb5\x1f\x36\xb3\xa6\xe0\ \x8f\x02\x30\xd5\x8c\x7e\x03\x3b\x19\x54\x4f\x75\x65\x30\x18\xe2\ \xae\x9f\xfd\xf0\x43\x9f\xff\x56\x17\x4f\x85\x09\x7d\xde\x19\x52\ \xdd\x63\x7f\xbf\x71\x45\x45\x45\x05\x07\x0e\x5e\x38\x78\x88\xc7\ \xfe\x8a\xe9\x0e\x80\x56\x24\x60\x0b\xc3\x99\x07\xbe\x42\x70\x53\ \xd3\x9f\xf1\x10\x2e\x93\x28\xee\xbd\xf3\x86\xd5\xdf\xff\xb2\xca\ \x5e\x59\x9b\xd2\x81\x2f\x9c\x8c\x42\xc5\x98\x12\xdb\xe5\x9c\xfb\ \xfe\xfe\xf0\x9a\x57\x5f\x7e\x61\x35\x84\xa3\x8a\x85\x76\x44\x2f\ \x30\x93\x56\xb8\xaa\x4b\xdc\xc8\xf5\xe0\x11\x2e\x7d\xb6\xf8\x6e\ \x0d\xa5\x9e\xe7\x9b\xa4\x3e\x51\xa5\x09\x41\x1d\xb3\xb8\xd1\xb6\ \x86\x44\xf0\xe0\xef\x20\xbe\x1b\x05\x80\x89\x13\x27\x9a\x37\x6f\ \xde\xec\xad\xad\xad\xd5\x7f\xaf\xa0\x15\xde\x36\x9c\x74\xe0\x21\ \x8e\xaf\x11\x41\x15\x88\x98\x56\x9c\x8f\x47\x00\xb4\x19\x13\xd7\ \x2a\x2f\xac\x16\x3f\x73\x52\x88\xb2\xfe\xd0\x16\x02\x08\x01\xa1\ \x92\x24\x55\x81\xd9\x18\x03\x79\xbd\xdc\x6e\x37\xf6\xec\xd9\x23\ \xed\xd9\xb3\xc7\x80\x05\x3f\x8a\xf3\xd7\x9c\x9a\x9a\x1a\x3d\xfb\ \xae\x87\x3a\x8d\xea\x3d\xc2\xbe\x29\x3b\xda\x54\x59\xeb\x6f\xa4\ \x85\xc6\x69\x5f\xb6\xcb\x78\xd5\xb8\x09\x17\xc4\xc4\xc4\x2c\xa9\ \xaa\xaa\x12\x03\x0c\x45\xc6\xb1\x51\x6a\x4c\x02\x21\x60\x7a\xb1\ \x04\x62\x69\x37\xe2\xe6\x59\xb7\xf7\x37\xc8\x72\xf0\x4b\xdd\xf4\ \x4f\x89\xb5\x60\xe6\xe8\x8e\x28\xaa\x72\x63\xd5\xbe\x62\x1c\xca\ \xaf\x86\x4a\x68\x80\x73\x67\x1b\x35\xa0\xaa\x14\xcb\xb6\xe5\x62\ \xf3\xc1\x42\x5c\x34\x36\x1d\x83\xba\x25\x86\x36\xda\xc4\xb2\xb2\ \x9a\x8d\x78\xf0\xfa\x49\x98\xb7\x6c\x2b\xbe\x5f\xba\x15\x2a\xd3\ \x33\x31\x49\x43\x65\xaf\x2d\x71\xd7\x5f\xa2\x01\x58\x88\xab\xaf\ \xd6\x08\x65\xc6\x74\x2a\x69\xea\x29\x10\x41\x8a\x61\x92\x09\x40\ \xa0\x4a\x12\x40\x29\x08\x91\xd8\x63\x94\x01\xd2\xcf\x8b\x97\xe3\ \xba\x59\x37\x5f\xf8\xf6\x8b\xdb\x7f\x86\xea\x2d\x05\xe0\x3a\x59\ \x52\x48\x18\xe9\x23\xe0\x75\xf5\xee\x47\x5f\x5d\xb9\x6a\x9f\xda\ \xd1\x2f\xe4\x55\x18\xd5\x53\xf6\x2c\x9c\xf7\xd6\xe6\xcd\x9b\xfe\ \xc8\x06\x9b\xac\xdc\x93\xaa\x0c\xcc\xc6\xd1\xd0\xe4\x39\x6e\x39\ \xa7\xc4\x7a\x34\x30\xd1\xab\x86\xc4\x0d\x5b\xe4\xf6\x09\x00\x72\ \xeb\xac\x8b\x97\x7c\xf1\xfd\xef\x17\xff\xb0\xc5\x18\xcb\x39\xbd\ \x35\x7b\xeb\x6c\xd7\x5e\x7a\xc3\xad\xaf\xbe\xfc\xc2\x6e\x84\xa6\ \x3a\xe1\x64\x00\x60\xb9\xe5\x96\x5b\x3a\xdc\x7e\xef\x93\xaf\xd4\ \x3a\xbd\x44\x55\x54\x89\x82\x12\xaa\xaa\x84\x0a\x9b\x38\x9f\x26\ \x46\x09\x1e\xaa\xfa\x6a\xdd\xee\xba\x92\xaa\xf2\xa2\xcc\xaf\x3e\ \xff\x68\xe3\xcf\x3f\xff\x5c\x82\xfa\x76\x1e\x31\x75\xb6\xb8\xd8\ \xc4\xdf\xc4\xfa\xdd\x0f\xbf\x4e\xea\xd8\x75\xc0\x0d\x3e\x9f\x8f\ \x50\x95\x12\x95\x32\x31\x97\xb6\x12\x40\xb4\xf7\x04\x21\x12\x25\ \x20\x94\x48\x84\x5a\xcc\x26\xb2\x6a\xf1\x9c\x17\x1e\x7c\xf0\xc1\ \x43\xda\xbb\xe0\x83\xcf\x17\x2c\x71\xb9\xdd\x39\xc3\x07\x74\xb9\ \xd9\xed\x76\x8b\x01\xa0\x01\x2e\xb3\xa5\x20\xa2\x53\xcf\x89\x29\ \xcd\xad\xbb\x0e\x16\x7e\x50\xe3\xf4\x19\x29\x05\x21\x84\x50\xd5\ \x53\xbd\xe5\xcc\x91\xfd\xde\x01\xfb\x3d\x38\x78\x6a\x12\x08\x5a\ \x27\x81\xb4\x51\x11\x84\x19\xd1\x5b\x2e\x81\x50\xc8\xd4\x60\x30\ \x94\x23\x34\x2d\x8b\x17\xc1\x79\xcf\x35\x0b\x26\x68\xf3\x29\x2b\ \x2b\x2b\xf2\xe1\xfb\x6f\x2f\xb2\xd9\x6c\xf6\x7f\xbf\xfe\x51\x6f\ \x74\x1b\x64\xdf\x74\x58\x95\x1b\x68\xa2\x49\x5a\xbe\x4b\x4d\x7e\ \xfb\x83\xaf\xae\xbd\xfa\x8a\x69\x6f\x22\xb8\x0f\x04\x98\xb1\xa6\ \xe6\x48\x58\x00\xd1\x26\x8a\x01\xcc\x18\xdb\x71\xc8\x98\x2b\x66\ \x9f\x3d\x7a\x54\x7d\x59\x3d\xcc\x12\x68\x1f\x6b\xc1\xcc\xb1\x5d\ \x50\x5c\xe5\xc2\xef\x7b\x8b\x70\x20\xb7\x02\xaa\x2a\x6c\xe8\x60\ \x1b\x70\x75\x9d\x17\x9f\x2d\xda\x8d\x1e\x9d\x62\x71\xf9\xf8\x1e\ \x68\x17\x17\xd9\x68\xbd\xfa\x76\xaf\x98\x3c\x04\x69\x1d\xe2\xf1\ \xf6\x9c\x95\xa8\x73\xb9\x41\x24\x0e\x14\x9a\x9a\x8a\xaa\x4c\xf2\ \x09\x48\x16\x12\x54\x49\x61\x92\x09\x34\xbb\x86\x4a\x35\xdb\x86\ \x04\x68\xf7\x50\x39\x68\xf3\x50\x55\x0d\x8c\x54\x89\x4d\x5d\x89\ \x82\xa8\x0c\x74\xea\x9c\x2e\x58\x64\xbf\x39\xb9\xfb\xf8\x1b\x8a\ \x0e\x2e\xcb\x04\x33\x34\xfb\xc9\xc9\x0b\x30\xd4\xa7\xca\x8e\x8a\ \x89\x89\x49\x48\xeb\x39\x7c\xea\xda\xdf\xea\x02\xbf\x6b\xe7\x24\ \xa3\xea\x29\x5c\x7f\xf4\xc3\xf7\xde\xda\x05\x06\x18\x25\x5a\x29\ \x03\x9b\xb4\x9c\xf3\x11\x03\x03\x5b\x2c\x71\xb4\x84\x78\xbd\xda\ \x7e\x14\xee\x24\x35\x51\x05\x22\x01\x90\x2b\x2a\x2a\x0c\x4f\x3e\ \x74\xf3\x8a\x7b\x9f\xfa\xf4\xdc\xa5\x3b\x54\x1b\xb4\x1b\xb6\x67\ \x19\x53\x9f\x7b\xf1\xf5\x29\x8f\x3c\x74\xcf\x02\x04\xcf\x87\xe0\ \x33\xc8\x0c\x20\xd2\x6c\x36\xa7\x6c\x3f\xea\x1b\xbc\x7a\x77\x6d\ \x48\x00\x65\x43\x64\x32\x48\xb0\x45\x44\xc3\x1e\x19\x4b\x67\xdc\ \xf9\x66\xc5\xff\xfd\xe3\xcd\xf2\x08\xa3\xbf\x78\xd7\xd6\x35\x73\ \xef\xb8\xed\x86\x55\xa8\x6f\xaf\x11\xa5\x4f\xfe\x9b\x58\x00\x44\ \x45\x46\xc5\x0c\x9e\xbf\xce\x39\xbe\xac\xda\xdb\xba\xc1\x6a\x06\ \xf5\xea\x0c\xd8\x6d\xb6\x79\x60\xea\x48\x15\x00\xc9\xc8\x77\xd0\ \xd5\x7b\x9c\x63\x57\xae\xdd\xf9\xef\xd1\x43\x7b\x3e\x81\xa0\x7a\ \x12\x10\xa4\x98\x56\x48\x22\xe1\xd4\xa6\xd1\xb9\x65\x4a\xbf\xef\ \x56\x55\x77\xe0\x37\xcd\x3e\xcf\x66\x04\xf0\x15\xd8\x6f\x02\x08\ \x52\x08\xa5\x7f\x31\x09\x04\x68\x95\x04\x02\x2a\x51\x83\xc1\x50\ \x85\xe0\x11\xdb\xd5\x08\x9e\x8c\xca\xf7\x60\xf1\xb8\x05\x9e\x42\ \xde\x5e\x5b\x5b\x1b\x73\xc7\xcd\x33\xaa\x2f\xbf\xf2\xea\x6e\xe7\ \xce\xfc\x47\xb7\xd5\xfb\x68\x8b\x82\xc2\x39\x15\x96\xb9\xa4\x71\ \x3d\xd3\x06\x82\x39\x04\xf1\x54\x27\x5c\x85\xdd\xa4\x14\xd2\x90\ \x17\x56\x40\xfa\x90\x22\xbb\x9c\x35\x7b\xd6\xad\xa9\x0d\x19\xe5\ \x1b\xda\xec\x93\x63\xad\x98\x79\x66\x1a\xee\x38\xbf\x0f\xfa\x76\ \x8e\x83\x66\x93\x66\x31\x17\x84\x80\x10\x0a\x42\x80\xc3\xb9\xe5\ \x78\xe1\xeb\xf5\x58\xb0\xfa\x00\x3c\x3e\x25\xa4\xde\xa6\x80\x64\ \x58\xdf\x54\xfc\xeb\xee\x8b\xd1\xa1\x5d\x8c\xe6\x31\x45\x20\x13\ \xc1\xbb\x4a\x73\xc5\x95\x24\x09\x24\xe0\xf2\x0b\xcd\x65\x57\x28\ \x32\x81\x24\x6b\xee\xbb\x44\xf0\xc0\x92\x49\xe0\xfb\x60\x7d\xc1\ \xbf\x2d\x5a\xb9\x1a\xd7\x5f\x7b\xdd\x04\x62\xb0\xf5\x05\x73\x89\ \x33\xe2\xd8\x74\xdb\x4d\x52\x03\xd2\x47\x24\x80\xe8\xb7\x3f\xfc\ \x7a\xd6\xf2\x5d\xde\x64\x4a\xb5\x34\x2e\x54\xc5\xf0\x34\x4f\xf5\ \xbd\x77\xdd\xbc\x1a\x41\xcf\x27\xee\x92\x5b\x85\xf0\x6a\x2b\xca\ \xe9\x44\xf6\x03\x08\x00\x89\x28\x7d\xf0\xd4\x29\x4e\xb0\xc9\x2c\ \xbe\x73\xd9\x96\xcd\x9b\x72\x8b\x8f\x6c\xc8\x4c\x8c\x96\x29\xef\ \xdf\xce\x0c\xa7\x79\xd8\x99\x53\x2f\x93\x65\x99\xc7\x86\x58\x11\ \x4c\x9b\x62\x05\x10\x5d\x56\x56\x16\xa3\x52\x45\x12\xc7\xa5\xb1\ \xe2\xf1\xf9\x51\x5e\xed\x41\x46\x81\x93\x2c\xde\x52\x1d\xff\xd5\ \xca\xea\x1e\x1f\x2e\xad\x3b\xd3\x1f\x37\xee\xa5\x55\x5b\xb2\xbe\ \x9b\x33\xef\x97\xeb\xc1\xfc\xe8\x45\x0f\x16\xae\x1e\x0b\xb1\x47\ \xd5\x38\x1c\xb6\xe6\xb6\xdb\xea\x02\x8a\x8a\x8a\x0a\x3b\x98\x6b\ \x79\x2c\x80\x78\xbf\xdf\x67\xc8\x2d\x71\x9b\x36\x1c\x96\xce\x9d\ \xff\xcb\x8a\xdb\x11\x74\xd9\xb4\x42\xe7\xf7\xdf\x42\xef\x2c\x71\ \xee\x71\xa7\x8d\x58\x55\xf1\xcb\x21\x63\xe8\xf1\x98\x10\xf4\x92\ \xe3\xed\x69\xfb\x0d\x25\xad\xe9\x67\xdb\x25\xda\xaa\xdf\x0d\x00\ \x35\x18\x0c\x0e\x30\x66\xae\x08\xc1\x38\xa9\x6c\x00\x59\x00\x32\ \xc1\xf2\x7e\x1d\x05\x70\x44\xbb\xf2\x92\x09\x20\x67\xde\xdc\xaf\ \xf7\x6c\x5c\xfc\xc1\xd1\xc1\x5d\xa1\xb4\x76\xfe\x38\xdc\xc6\x84\ \xfe\xfd\xfb\xa7\x80\xcd\x65\x0b\x42\x8f\xe6\x6d\x94\xea\x01\x88\ \x4e\xfa\xe8\x34\x71\xf2\xac\x1b\x87\xf4\xef\xd7\xea\x14\x25\xc9\ \x31\x56\x5c\x35\xa1\x1b\xfe\x76\xc1\x00\x0c\x48\x8b\x87\x41\x73\ \xb7\x15\x63\x32\x54\x50\xac\xdc\x9e\x85\xa7\x3f\x5d\x85\x4d\xfb\ \xf3\x9b\x5d\x37\x00\x74\x48\x8a\xc5\x73\x77\x5f\x86\xc1\x7d\xba\ \x04\x83\x04\xc1\x5c\x78\x09\xc0\xfe\x4f\x98\x5b\x2f\x03\x25\x76\ \x4f\x88\xab\xaf\x78\xaf\x56\x02\x40\x11\x00\x19\x0d\xa0\x64\x59\ \xfb\x5e\x82\xaa\x2a\xa8\x2c\x2f\x96\x7b\x0c\x3e\xff\x16\xb0\xc4\ \x6a\x11\xe1\xc6\xf4\x04\x90\xde\xf6\x61\xeb\xd6\xad\x5b\xb2\x3d\ \xa9\xe7\xd8\xbc\x12\xa7\xc4\x7d\xbe\xbb\xa7\x18\x94\x55\x4b\xe7\ \xed\x55\x14\x45\xf4\xb8\xaa\x40\x7d\xf0\x38\x65\x67\x6d\x08\x60\ \xc5\xd5\x56\x1c\x44\xea\xc0\x40\x84\xbf\x7b\x19\x80\x8a\x27\x1e\ \xbd\x77\xfd\xc8\xee\x3e\x87\xe8\xdb\xbe\x66\x9f\xbf\xe3\xdb\x1f\ \x7c\x79\x05\x18\x17\x15\x09\x36\x26\x3c\xea\x3d\xaa\xa6\xa6\x26\ \x46\x55\x14\x72\x2c\xfe\xf3\x8a\xa2\x60\xd3\x81\x6a\xeb\x87\x8b\ \x2a\x7a\x67\x3a\xbb\x3f\xb4\x6e\xeb\xd1\x4f\xc7\x8f\x1f\xdf\x15\ \xa1\x41\x8d\xdc\xd6\x11\xc8\x02\xe0\xac\xab\x8d\x50\xe9\x89\xf5\ \xed\xa7\xaa\x82\xda\xda\x5a\x1b\xd8\x86\x1d\x03\x20\xce\xef\xf7\ \x19\x54\x55\xc1\xf6\x23\x35\xb6\x5a\xa9\xcb\x55\xff\x7e\xe5\xad\ \xf3\xc0\x40\x24\x0a\x61\x02\x30\x9b\x02\x91\x30\xde\x65\x62\x9e\ \xab\x18\x45\x51\x64\xf1\x9d\xbc\xde\xb0\x00\x12\x90\x40\x5a\xd3\ \x4f\xb4\x61\x09\x84\xa9\xb0\x5a\xf8\xbb\x51\x4a\x0d\x06\x03\x67\ \x96\x78\xac\x14\xd7\x10\x14\xa1\x7e\xbc\x94\x08\x2c\x99\xda\xff\ \xf3\x3e\x7c\xef\xcd\x5d\x72\xf5\x8e\xd2\xa8\x08\xa9\x55\xe3\xba\ \x33\xd3\x1f\x7d\xeb\xed\x77\x4f\x40\x10\x40\x44\x95\x63\xa3\x2e\ \xbd\xe1\xc4\x1e\xa2\x55\x10\x27\xdb\x7b\x9d\x77\xdb\xb5\x37\x06\ \x8c\x14\xad\x05\x11\x00\x68\x17\x6b\xc5\xcc\x09\x3d\x50\xe6\xe8\ \x84\x15\xdb\xb3\xb1\x27\xa3\x04\x7e\x85\x00\x12\x85\xa4\xd9\x47\ \x6a\x9d\x1e\x7c\xb9\x68\x07\xd6\xed\xcc\xc4\x8c\x49\xfd\xd1\x31\ \xc9\xde\xac\xba\x23\x2c\x26\x3c\x74\xd3\x34\xcc\x5d\xb4\x11\x3f\ \xaf\xdc\x04\x45\xb3\x79\x48\x9a\x2a\x0a\xdc\x3b\x4b\xd2\xdc\x8c\ \xa9\xca\x54\x59\xdc\xf6\x01\x02\x42\x74\x69\x4e\x64\xf6\x0c\xe1\ \x86\x75\x6e\x0f\x51\x15\x96\x46\x45\x65\x40\xb5\x66\xe3\x26\x5c\ \x75\xf9\xa5\x43\x9f\xdc\xb9\xbc\x3f\xf5\x94\xe7\x03\xa8\x3b\x51\ \x6a\xac\x30\x06\x4c\x1e\x34\x18\xf5\xd2\x1b\x1f\xdf\xbc\x64\x9b\ \x33\x91\x0a\xba\xe5\x41\x9d\x3c\x55\x17\xde\xf4\xdc\x16\x30\xd0\ \x10\x5d\x75\xf5\xba\xce\x53\x9e\x90\x90\x52\x4a\x09\x21\xfc\xe5\ \x79\x04\xaa\x3e\x9b\xb0\xb5\xa6\xa6\xc6\x7a\x64\xf7\x9a\x23\xed\ \xe3\xc6\x0f\x2e\x28\xf3\x10\x00\x38\x9a\xef\x94\x47\x4e\x1c\x7a\ \x4e\x5c\x5c\xdc\x4f\x15\x15\x15\x6e\x04\xc1\xc8\x02\x20\xd2\xe3\ \xf1\xd8\x54\x55\x95\xc4\xb1\xb9\x64\x74\xa4\xdb\xef\xae\x72\x83\ \x68\x47\xa6\x42\x33\x89\x48\x06\x89\x12\x83\xe4\x53\x64\x39\xbb\ \x4c\x8a\x38\x5a\xe0\x22\x6e\x6f\x28\xf7\xbb\x2f\xab\xd6\x98\x55\ \x24\x0f\x7e\xfc\xdf\x5f\x7c\xba\x6a\xf1\x9c\xe7\x9e\x7e\xe2\x1f\ \x6b\xc1\x1c\x29\xb8\xba\x86\xe7\xfe\x8a\x74\xbb\x5d\x56\xf0\x38\ \x06\x8d\x6e\x3e\xd7\xee\x2a\x29\x29\xf3\x10\x42\x98\x3d\x83\xb5\ \x4d\x39\xbf\xd7\xc4\x74\xa7\x80\xf6\xce\x92\xa4\xca\x92\xac\x44\ \x47\x81\x7c\xb6\xa2\x50\x05\x9b\x0b\x00\x60\x51\x14\x45\xe6\x6d\ \x2e\xdd\x52\x15\x37\x63\xc2\xd4\xbb\x67\xcd\xda\x56\xfa\xf9\xe7\ \x9f\x6e\x47\xa8\xda\x90\x53\x73\x58\xfc\x70\x36\x10\x2b\x80\x28\ \x55\xf5\x87\x8c\xaf\xdf\xa7\x1a\xc1\x80\xd5\x05\x36\xc7\x42\x38\ \x5a\xda\x5a\x8b\xe8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x0a\x1b\ \x08\xa5\x6d\x33\xd9\x80\x18\x59\xdf\x32\x52\x21\x49\x92\x17\xa1\ \x71\x52\x7c\x1e\xf1\xca\x44\xa7\x0c\x3e\xde\x35\x08\xba\xda\x2b\ \x00\xc8\x33\x8f\xff\x7d\xf3\x6b\x1f\x2f\x9e\xf4\xeb\x56\xb5\xbe\ \x8b\x6b\x13\x94\x53\xec\x24\x63\xc7\x9e\x31\x08\xc1\x98\x2a\x91\ \xb9\x68\x54\xd7\x18\x0e\x40\x02\x51\xe7\xc3\x46\x9c\x77\x7e\x7a\ \x6a\x97\x90\x2f\x9b\x02\x91\xa6\xbe\x4f\xb4\x5b\x31\x73\x62\x2f\ \x94\x0f\xe9\x8c\x15\xdb\xb2\xb0\xe3\x48\x31\x14\xa8\x9a\xe1\x5a\ \x05\x28\x90\x91\x5f\x89\xe7\x3f\x5f\x85\xb1\x03\x3a\xe3\xe2\x89\ \x7d\x11\x61\x31\x36\x5c\xa9\x50\xf7\x8c\xa9\x23\x91\xda\x21\x01\ \x1f\xcc\x5d\x0a\x97\xdb\x03\x96\x61\x57\x03\x0e\xcd\x9b\x0a\x2a\ \xb3\x6d\x50\x89\xbb\xe8\x0a\x36\x10\x1e\xef\x41\x78\x3c\x8b\x1a\ \x72\x4f\x20\xaf\x16\x34\x9b\x8e\x4a\x01\x0a\x94\x96\x14\x92\x84\ \x4e\x83\xa6\x95\x1e\x59\xb1\x09\x6c\xa3\xe6\x86\xb0\x13\x41\xe2\ \x84\xb2\x00\x88\xb4\xd9\x6c\xb1\xa6\xa8\x94\x01\xe5\x55\x95\x81\ \x9b\xfa\x76\xb1\xfa\x17\xff\xf4\xd9\x76\x55\x55\x79\xe0\x1e\x8f\ \x22\xd7\xdb\x3c\x4e\xa8\xbd\xa3\x25\xa4\x03\x11\x3f\x82\x92\x08\ \x07\x90\x08\x00\x91\x4f\x3d\xf6\xc0\xfa\xaf\x17\xac\xef\xfa\x7d\ \x89\x12\xcb\x9f\x5d\xb7\xdf\x93\xfc\xe4\xb3\x2f\x9f\xaf\xb9\x24\ \x72\xe3\xb6\x19\x80\xc5\xe7\xf3\x69\x9b\x78\x70\x2d\xb8\x6b\x8a\ \x3c\x57\x5f\x32\x71\x2b\xea\x67\xf7\x05\x00\xd8\xed\x76\xe3\xb4\ \x69\x17\x24\x8d\x3f\x67\x5a\xe7\xb8\xe4\xae\xb1\x7b\xf3\x4d\xd1\ \x07\x73\xdd\x01\x63\x65\x9d\x53\xc1\xc7\x0b\x8b\x3a\x5e\x3b\xe9\ \xca\xc7\x67\x1e\xd8\x73\xef\x37\xdf\x7c\x7d\x00\x6c\x6c\x15\x08\ \x46\x4f\x9f\x8f\xa7\x8f\x09\xb6\x7d\x68\xef\x56\xc7\x6d\x37\xce\ \xd8\x1d\xa6\xed\xa6\xfc\xef\xf9\xf7\x5c\xdd\xe7\x42\x30\xe2\xbf\ \x06\x41\xbd\x79\x84\xaa\xf8\x65\xb1\xcd\xef\x7e\x2f\x6f\x77\xc3\ \xed\x8f\x3e\xb6\x77\xef\xee\xfb\xb6\x6c\xd9\xa2\x77\x4b\x0e\xb8\ \x24\x37\x63\x1e\xe8\x3d\xcd\x4c\x00\xac\xaa\xa2\x4a\x62\x7b\x8a\ \x42\xf9\xfc\x14\x37\x23\xf6\x6c\x2b\x6d\x20\x27\x58\x3b\x7c\x4c\ \xc4\x33\x81\xb7\x88\x54\x0a\x42\x08\xff\x2d\xc5\x20\x5c\x6e\x07\ \xe1\xc4\xbd\x06\x0d\x08\xcd\x49\xc7\x5d\xb0\xe4\xe2\xe2\x62\x73\ \x55\xe1\xbe\x92\x48\x4b\xaf\xce\xb5\xce\x96\x7b\x66\x79\x69\x74\ \x82\xc9\x64\x8a\xf4\x7a\xbd\x5c\x92\xd6\xbb\x65\x87\xa5\x10\x48\ \x0f\x09\x1c\x94\x8c\xed\x47\x8f\x18\x17\x36\x67\xff\xb1\xe4\xb9\ \xe2\xdf\x25\xd8\x23\x30\xe3\xac\x3e\x78\x70\xe6\x48\x0c\xed\xd5\ \x1e\x46\x03\xb7\x2f\x10\x2d\x19\x23\xc5\x9a\x1d\x99\x78\xfc\xbd\ \x25\x58\xb3\x3d\xa3\xf1\x06\x05\x1a\x39\x30\x1d\x4f\xfd\xed\x0a\ \x24\x27\xc4\x68\x91\xe8\x41\x35\x95\x04\x04\xd4\x53\x81\x88\x75\ \xc2\xec\x24\x44\xb8\x87\xa9\xbb\x34\xbb\x88\x44\x20\x49\xb2\x60\ \x0f\x91\x98\x0d\x45\x66\xea\x2c\x59\x96\xb0\x7d\xf7\x6e\x9c\x73\ \xd6\xe4\x11\x60\x39\xb2\xac\x38\x01\x6a\xac\x30\x11\xd5\xdc\xb0\ \x66\xbb\xfb\xde\xfb\x47\xec\xce\xf2\xc6\xaa\x54\x05\x2f\xfd\x3a\ \xb8\x2b\xdf\x7e\xeb\xd5\x5d\x60\xea\xaa\x2a\x04\xc1\x43\x3c\x47\ \xba\xad\x9e\xee\xa7\xb7\x89\x88\xea\xac\x4a\x97\xcb\x55\xb5\x73\ \xd3\xd2\x03\x9d\x92\x4c\x2a\xef\xef\xd1\xfc\x5a\xd2\xb5\xe7\xc0\ \x11\x60\x2a\x9a\x08\x08\x69\xe3\x15\x45\x31\xa9\x50\x89\x38\x3e\ \x8c\xeb\x0f\x6c\xc0\x5c\x7d\x10\xc8\xed\x55\x5d\x5d\x5d\xf6\xf5\ \xd7\x5f\x1e\xbe\xf5\x86\x2b\xd7\x5c\x71\xfe\x88\xc5\x05\x5b\x3f\ \xde\x3c\xf3\x4c\x63\x55\x54\xa4\x0c\xb1\x9e\xaf\x57\x94\x24\xdf\ \x76\xef\x53\xcf\xf5\xee\xdd\xbb\x03\x82\xb9\x85\xf8\x22\x34\x29\ \x8a\x62\x10\xef\x57\xa9\x0a\x42\x02\x6d\x73\x3b\x0f\x77\x6e\x28\ \x6e\x66\xd1\x3b\x42\xf0\x93\xf9\x7c\x60\x8b\xdd\xa0\xaa\xaa\x24\ \xb6\xe9\x53\x14\x7c\xb5\xb2\xa2\xf3\x2b\x6f\x7f\xf5\x6c\x5c\x5c\ \x1c\x8f\xe2\x17\x23\x90\x65\x34\xa1\xae\x10\x48\x6f\x87\x33\x52\ \x1a\x3a\xbe\xaa\xaa\xf2\xe0\x56\x51\x9f\xae\xb9\xdf\x51\xe8\xc7\ \xa4\x39\xa5\xed\x4d\xd3\x20\xb5\xa6\x3f\x2a\x28\x9f\x0b\xe1\x5c\ \xb2\xc5\x38\x29\x31\xab\x03\x97\x54\xaa\x10\x4c\x0f\x54\x0a\xa0\ \x6c\xc1\xf7\x5f\xec\xeb\xd1\xc1\xa8\xb4\xe6\x5d\xca\x6b\x54\x6b\ \xff\xfe\xfd\xdb\xa1\xbe\x04\xd2\xe8\x7c\xd0\x6f\x74\x9c\x83\x89\ \x96\x6c\xa9\xa3\xd3\x7a\x0f\x95\x33\x4a\x9d\x61\x53\x91\x1c\x0f\ \x10\x01\x80\xf8\x68\x2b\x66\x9e\xdd\x0f\x0f\x5f\x33\x16\xc3\x7b\ \x77\x84\xd1\xa8\x6d\xde\x1a\x98\x38\xdd\x1e\xcc\x59\xb4\x0d\xcf\ \x7f\xba\x0c\x99\xf9\x15\x8d\x37\xaa\x51\xa7\xe4\x04\x3c\x7b\xef\ \x55\x18\xd0\x33\x35\x60\x44\x97\x24\x0d\x10\x48\x10\x40\x02\x76\ \x0d\xcd\xce\xc1\x0c\xe9\x3c\xdd\x89\xa4\xd9\x49\x24\x2d\xd7\x97\ \x00\x3c\x12\x81\x04\x49\xb3\xaf\x10\xd4\xd6\xd5\xa1\x47\xd7\x4e\ \x71\xc4\x18\x9d\x0a\xb6\x28\x0d\xc7\x3b\x6d\x04\x1f\x3a\x84\xaa\ \x75\xac\x00\x22\x47\x8e\x9d\x32\x71\x6f\xa6\xc3\x40\x35\x7d\x78\ \x97\x24\x0b\xdd\xb4\x76\xf1\x01\xb0\x0d\x8a\x83\x07\x17\x7b\xeb\ \x19\xcc\x4f\xc0\x7b\xb6\x9a\x84\xf7\x11\x39\x6d\x37\x18\xf8\xf1\ \xdc\x5a\xd5\x2f\x3c\xfb\xf8\x96\x33\xba\xd0\x1a\xde\x67\xaa\x2a\ \xf0\xaa\xd6\x24\x8b\xc5\xc2\x37\x71\xbe\x10\x0c\x94\x52\x99\xaa\ \x2a\x11\xef\x25\x12\x51\xb5\xba\xc4\x3c\x60\x3c\xc9\xa3\x98\x0b\ \xac\x58\x55\xd5\x8a\xf7\xdf\x7d\x73\xff\xac\x2b\xce\x59\x3e\xb9\ \xb7\xa3\xa8\x53\x82\x51\xe5\xf5\xf8\x7c\x7e\x7c\xbd\xa2\x3c\xed\ \xa5\x37\x3e\xb9\x0f\xf5\xed\x21\x06\x55\x55\x64\xb1\x5d\xaa\x2a\ \x90\x24\xc9\x0f\xb6\xf1\x97\x20\x98\x46\x86\xeb\xb7\xb3\x10\xd4\ \x71\xeb\x4b\x96\x50\xc4\x44\x94\xa5\x60\xbf\x33\x3f\xde\x95\xe8\ \xfb\x4b\x55\x05\x75\x4e\x2f\xbe\x5f\x5b\xd3\x63\xee\x8f\xcb\x1e\ \x07\x33\xb8\x8b\x63\x15\xd8\x30\x5a\x01\x22\x32\xf7\xac\x0a\x14\ \xaa\x72\x66\x34\x34\x88\x50\xfb\x69\xf5\xef\xd6\x9c\xd2\x56\xdd\ \x78\xa1\xef\x7b\x73\xfb\xa3\x19\xd2\x11\x74\x24\xd1\xbb\xb5\x8b\ \xf1\x34\x1c\x54\x44\x95\x17\x5f\xdf\x15\x00\x2a\x96\x2f\x5b\x96\ \xd1\x21\xc6\xe7\x6a\xcd\xbb\x54\xd5\x29\xa6\xee\xdd\xbb\x27\x22\ \x3c\x80\x34\x38\x27\xc2\x01\x88\x19\x40\x6c\xaf\xbe\x63\x26\xe4\ \xd7\x11\xac\x3a\x5c\x8a\xaf\xff\xc8\xc5\xf2\x7d\xa5\x38\x5a\xea\ \x84\x5f\x00\x93\xe6\xa8\xac\x9a\xfb\x5d\x5c\xb4\x15\x33\x27\xf5\ \xc7\x23\xb3\x26\x60\x54\xff\x4e\x30\xc9\x92\x60\xf4\x06\x72\x0b\ \x2b\xf1\xd2\x17\xcb\xf0\xd9\xcf\x1b\x51\xeb\xf4\x84\xaf\x54\xa0\ \x48\xab\x19\x0f\xdd\x7a\x09\xce\x9f\x30\x8c\x79\x59\x49\x12\xcb\ \x7f\x25\xe9\xf2\x5d\x71\xef\x2a\xd1\x03\x4b\x22\x41\x89\x23\x00\ \x34\x41\x60\x91\x35\xa0\xe1\xa0\x23\xcb\x12\x3c\x6e\x07\xac\x71\ \x3d\xce\x02\xdb\x44\x4e\x94\x37\x96\x68\xff\xe0\x5e\x46\x36\x6a\ \x88\x4a\xf1\x78\xfd\x9a\x21\x4f\x45\x9f\x4e\xc4\xf9\xc5\x67\x1f\ \xee\x41\x70\xc3\x15\x75\xa6\x81\xd3\xfc\xda\x1a\x78\x70\x12\xbc\ \xb3\x28\x42\x17\x4d\x00\x44\x3c\x1e\x4f\x35\xfc\xd5\x0e\xde\x67\ \x55\x55\xb1\x2f\xd7\x17\x33\xfb\x8e\xbb\x06\x23\xd4\x18\x68\xa0\ \x94\x4a\xec\x00\xb2\x60\x91\x24\x49\x01\x5b\x78\x62\x06\xe2\x2c\ \xd4\x37\x52\xe6\x40\x4b\xf4\x58\x51\x51\x51\x76\xf9\x85\xe7\xac\ \x18\xd5\xcd\x59\x66\x35\x49\x81\xba\xaa\x6a\x3c\xa8\xf6\x45\x0f\ \x1c\x31\x62\x44\x2a\xd8\xa6\xcc\x3d\x9d\x0c\x94\x02\xaa\x16\x79\ \xcd\x8b\xc1\x60\xf0\x81\x71\x8f\x45\x5a\xdb\x7a\xaf\x9b\x86\x00\ \x84\x7f\xc7\xdf\x33\x17\x0c\x80\x38\x80\x04\xe2\x08\xa8\xd0\xa6\ \xd9\xc8\xbc\x1e\x55\x55\x45\x51\xb9\x4b\x5a\xb5\x0f\x43\xe6\x2d\ \x58\xfa\x37\x04\x8d\xea\x81\xf7\x45\xeb\x40\x84\x50\x5d\x1f\xb5\ \x99\x25\x4a\xcd\xc2\x0f\x8c\x90\x7b\x9b\x5b\xda\xe6\x6c\x65\xd4\ \xaa\xfe\xd4\x67\xcc\xeb\xb9\xb2\x6b\xc4\xc1\x45\x0c\x6a\xe5\x12\ \x09\x5f\x13\x0e\x55\x55\x6b\xfc\xee\xaa\xba\xd6\xbc\x4b\x55\xad\ \x6a\xec\xd8\x29\x35\x01\xc1\x79\xd0\xac\x80\x57\x3d\x80\xc8\x60\ \x93\x29\x61\xdc\xb8\xe9\x3d\x5d\x3e\x66\x30\x56\x01\xe4\x56\xb9\ \xb0\xea\x50\x19\xbe\xde\x98\x87\x65\x7b\x4b\x71\xb4\x24\x08\x26\ \xc7\x0b\x44\x00\x20\x36\xca\x8a\x19\x93\x06\xe2\xb1\x9b\xcf\xc6\ \x98\x81\xa9\x30\x1b\x0d\x81\x44\x8a\xa0\xc0\xa6\x3d\x99\x78\xfc\ \x9d\x9f\xb0\x62\xe3\xfe\x26\x27\x14\x21\x04\x57\x4d\x1f\x8f\x3b\ \xae\x3a\x1f\x56\xb3\x11\x44\x53\x57\x49\x10\xd4\x5a\x92\xa4\x79\ \x69\x71\x97\x5f\xcd\x2b\x8b\x04\x81\x83\x83\x88\x24\x66\xfd\x95\ \x43\x5d\x81\x77\xef\xdb\x87\x71\xe3\x27\x8d\x06\xe3\xec\x2c\x61\ \xc6\xf6\x58\x49\xe4\xf8\x02\xe7\x9b\x5f\x72\xc9\x25\xdd\x72\xca\ \xd4\x58\x91\x9b\xb0\x90\xba\x9a\xdc\xdc\xdc\x72\x04\x75\xe3\xa2\ \xd1\x3c\x5c\xca\x8b\xb6\x4a\x9c\x13\xd3\x83\x48\x0d\x80\xda\x43\ \x7b\xb7\x64\xa5\xc4\x9b\x03\xfd\xde\x9b\x51\x65\x38\x73\xe2\xf9\ \x67\x22\x54\x8d\xc4\x16\x82\x8e\x4b\x94\x88\xa4\x80\x6d\xba\x65\ \x08\x26\x94\x14\xd3\xcd\x73\x69\x84\x97\x3c\x00\x45\xaa\xaa\x56\ \xde\x7e\xe3\xe5\xbf\x4f\x1e\x64\x0c\x91\x7e\x96\x6e\xae\x88\x7f\ \xf8\xf1\x97\x6e\x42\x68\x8a\x6c\x03\xa5\xcc\x36\x20\x16\x59\x96\ \x7d\x60\x12\x88\x3e\xa1\xa4\x3e\x43\xb1\xbe\xe4\x09\xa5\x00\x4c\ \xfa\xe0\x6e\xd9\x0e\x04\xd5\x58\x2a\xa5\x41\x09\xc4\x6a\x22\x98\ \x31\xb1\x9d\xc2\xff\x7f\x20\xdb\x61\xca\x77\x26\x4d\x7a\xeb\x9d\ \x8f\x2f\x43\xa8\x7b\x6f\x48\xc0\x5f\x0b\xa4\x68\x22\xb6\xc7\xb8\ \x6b\xda\xe0\xe6\x53\x4f\x5a\xf9\xb3\x4b\x20\xad\x94\xa8\x5a\xc2\ \xbf\xe9\xbc\x15\x39\x88\x78\xc1\xd6\xb5\x13\x3c\x1b\xb6\xe2\xf3\ \xb4\xe6\x5d\x2a\x6b\xdc\x48\xee\xd0\x25\x19\x41\xb5\x63\xb3\x8e\ \x48\x08\xdc\x20\xba\xef\x4a\x91\x9d\x87\x74\xeb\x3d\xc8\xc8\x25\ \x0c\xb1\x28\x94\x22\xa7\xd2\x85\xdf\x0e\x96\xe1\xcb\xf5\xb9\x58\ \xbc\xbb\x18\x87\x8b\x6a\x5b\x9d\x71\xb7\xa1\xef\x62\x6c\x56\xcc\ \x98\x3c\x08\x4f\xdc\x3a\x09\x63\x06\x76\x85\xd9\x24\x07\x80\xc4\ \xe3\xf5\x63\xfe\xf2\x2d\x78\xf6\x83\x5f\x70\x28\xbb\xa8\xa9\x3e\ \x62\xd4\xe0\xde\x78\xfc\xae\xab\x91\x14\x67\x67\x00\xc0\x63\x3e\ \x74\xaa\xad\x50\x97\x5d\x29\xa0\xb6\xe2\x51\xe8\x21\x36\x15\x41\ \x9d\x45\x08\x41\x69\x59\x39\x86\x0c\xec\xdb\x1e\xb2\x25\x05\x6c\ \x03\x39\x6e\x59\x7a\xc3\x44\x00\x07\x22\x9d\x2f\x9d\x71\xc3\x59\ \xdb\x0e\x39\xac\xdc\xa7\x3b\xc2\x22\xa1\xa2\x38\xab\x08\xa1\x69\ \xd6\x5d\xd0\x05\x0a\xb6\x55\xe9\x83\x93\x4e\x0a\x11\x55\x59\x81\ \x94\xf1\x5f\x7c\xfa\xfe\xae\xfe\xa9\x46\x27\xef\xbb\xd7\xe7\x87\ \x64\x8e\x69\x8f\xa0\x1b\xaf\x11\xda\x89\x71\x7a\xdf\x77\x4d\x85\ \x55\x8b\xfa\xe9\xe6\x79\xdc\x09\xdf\xd8\xc5\xcd\xbd\x00\x40\x49\ \x71\x71\x71\x69\x41\xc6\xd6\xdc\x78\xbb\x31\x50\x5f\xad\xcb\x0b\ \x6a\xb4\xa7\x21\xe8\x4a\x6c\x06\x93\x7e\x08\x74\x6d\x4b\x92\xac\ \x84\x69\xbb\xac\x05\x85\x9f\xbf\xc2\x5d\xb2\x45\x09\x53\x53\x4f\ \x06\x63\x13\x1c\x75\x1e\xf4\xea\x68\x50\x07\x75\x8b\x08\xc4\x0a\ \xac\xd9\x59\x6e\x8b\xeb\x32\xe2\x9a\x7b\xee\x7b\x70\x34\x8e\xd3\ \xf9\x2a\xfa\xd8\x94\x66\xdf\xdb\xec\xd2\x36\xa7\x2c\x13\x15\x5a\ \x13\xbf\xd3\x6a\x3e\x4e\x0f\x22\x5c\x1a\x71\x83\xfa\xbd\xad\x79\ \x97\x4a\x87\x1b\x09\x89\xc9\xf1\x08\xe7\xf4\xd0\x88\x14\x22\x4e\ \x92\x80\xfd\xa3\x43\xda\x90\xf1\x4e\x1a\x01\xaf\x8f\xd6\x4f\xd9\ \x2e\x14\x55\xa5\xc8\x2b\x77\x61\xe5\xbe\x62\x7c\xba\x3a\x03\x0b\ \x77\xe4\xe3\x60\x81\x03\x3e\xa5\xfe\xc0\xb4\xd6\x7b\xcb\x6e\xb3\ \x62\xc6\x94\x33\xf0\xc4\x6d\x53\x71\xe6\xe0\x74\x98\x8d\x06\x48\ \x84\xa9\xa2\x8a\xcb\x2b\xf1\xe6\x57\x4b\xf1\xd1\xfc\xdf\xe1\xa8\ \x75\x36\xdc\x00\x80\xce\x29\x49\x78\xfa\xbe\x59\xe8\x9d\xde\xb9\ \x7e\xa0\x60\x40\xc2\xd0\xfd\x5f\x94\x36\x64\x39\xa8\xc6\x0a\x18\ \xd2\x83\x80\xe3\xf1\x7a\xa1\xfa\x9d\x92\x6c\xeb\x3a\x16\x4c\x2d\ \xc0\xf3\x02\x1d\x2f\x12\xbd\x5f\x78\xac\x81\xd5\x16\xd3\xbe\x6b\ \xa5\xc3\x15\xf0\xe9\xee\x9f\x66\xf5\xce\xfb\xe6\xe3\xed\x08\x3d\ \x49\x50\x7f\x04\xed\x9f\x82\x74\x81\x86\x22\xc7\x55\x07\xa0\xee\ \xc8\x91\x23\x65\x51\x26\x57\x8d\xe8\xd3\x9e\x5d\xaa\xc4\x4c\x9b\ \x36\x2d\x15\x82\x1d\x02\x80\xa4\x8f\x3d\x20\xac\x4e\xd1\x30\xc9\ \x81\x89\xab\xfd\xaa\x10\x8c\x41\xe1\x80\xc2\xcf\x46\xa9\x78\xf9\ \x85\x27\xb7\x8c\xee\x65\x76\x86\xb4\x5d\xe2\x8f\x9d\x3e\x7d\x7a\ \x3a\x82\x12\x90\x81\xaa\xfc\xb8\x53\xa1\x6d\x06\x5e\xe1\xda\x6e\ \x69\xa9\x43\xe8\x51\xc3\x81\x04\x98\xcc\xb3\x94\xb5\xe7\xf6\xf8\ \xf0\xdb\xea\x3f\xdc\x49\x86\xac\xda\xb8\x68\x43\xe0\x3d\xe6\xaf\ \x2a\x88\x9f\x7c\xe1\x8d\xf7\x9f\x77\xde\x79\x3d\x10\x6a\x54\x37\ \x42\xf3\xfc\x69\x2e\x13\xc4\x54\x84\x42\xcc\x46\x23\x00\xd2\xea\ \x38\x90\xb6\x2a\x81\xd0\xd6\x9d\x07\xd2\x1a\x9d\x9c\xce\x46\x28\ \x3a\x9b\xf8\x00\x78\x9d\xce\x5a\x97\x51\x6e\xf9\xfb\xb8\xdc\x5e\ \x58\x23\x6c\x36\x84\x4f\x3a\xda\x20\xe9\x01\xc4\x08\x20\x6a\xf8\ \xd0\x71\x7d\xf7\xe7\xd7\xa1\xa0\xdc\x8b\xcc\x22\x0f\x0a\xca\x7d\ \xa8\xac\x55\xe0\xf6\xb2\x77\x0f\xe1\xbe\x79\x30\x20\xa5\xc8\x29\ \xab\xc3\xca\xdd\x05\xf8\x78\xc5\x21\xfc\xbc\x39\x1b\xfb\x72\x2b\ \x43\xc0\xe4\x58\x0c\xef\xd1\x91\x16\x5c\x31\x79\x30\x9e\x9a\x3d\ \x0d\xe3\x86\xf6\x80\xc5\x6c\x04\xd1\xfa\xb6\x7d\x7f\x26\x9e\x7c\ \xfb\x7b\x2c\x5e\xb3\x03\x8d\xe5\xd8\xb1\x45\x58\xf1\xd0\xec\x99\ \x98\x34\x76\x28\x3b\x4b\x04\xba\x13\x0e\x89\xa4\x9d\x62\xc8\x24\ \x8e\xa0\xed\x84\x84\xda\x4e\x64\x02\x9f\xdf\x8f\x8a\xca\x6a\x64\ \xe6\x14\x60\xf7\xbe\x23\xd8\x7f\x28\x13\x6b\x37\x6c\x42\xdf\x01\ \xc3\x87\x83\x71\x73\xad\x4a\x2d\xd0\x04\x89\xe9\x4b\xcc\x00\x2c\ \x6e\x9f\x1c\x25\xe6\xfa\x6f\x6f\xf7\xd7\xac\x5c\xb9\x32\x1f\x6c\ \x63\xe1\x6e\xa2\x62\xb0\x60\x9b\x70\xd9\x6d\x01\xe9\x41\x84\xbb\ \x39\x3a\x01\xb8\x6a\x2a\x0b\xca\xac\x26\x29\xd0\xff\xcc\x42\xb7\ \x65\xe4\x98\x09\x3d\x10\x8c\x0e\x97\x99\x0d\x44\x77\x06\x05\xab\ \x5b\x5c\x7c\x62\x36\x60\x9e\x62\x9e\xab\xcb\xb8\xa1\x92\x4b\x0a\ \x95\x45\x45\x45\xe5\x46\xe2\x75\x8b\x75\xee\x3c\xe2\xb0\x4c\xbf\ \x78\xe6\x48\x08\x46\x7c\xca\xa3\xae\x85\xfb\x34\x0f\x30\x7d\x36\ \x62\x7d\x46\xe2\xa6\x8a\x57\x78\x5e\xcc\x9c\xac\xe9\xcb\x43\xfb\ \x0b\xc9\x20\xdd\x73\xe7\x0d\x05\xe7\x9d\x61\x70\x4a\xda\x77\xaa\ \xa2\xe2\xd3\x85\x39\xed\x1f\x7c\xfc\xd5\xa7\xd3\xd2\xd2\x52\x10\ \x1e\x44\x9a\x67\x0f\xa1\x08\x6d\xaf\xd1\x19\xf6\x17\x3b\x0f\x04\ \x68\x55\x7f\x8e\x21\xba\xbe\x21\x63\xbb\xdf\x6a\xb5\xca\x5e\x9f\ \xbf\xc5\xef\x42\x40\xe1\xf7\x79\xfc\xa8\x7f\xbe\x4c\xa3\x24\x6e\ \x72\x01\x1f\xf2\xa4\x84\xa4\xc8\x0b\xc7\x76\x44\x76\xb9\x0b\xd9\ \x65\x2e\x64\x97\xbb\x50\x59\xe3\x07\x8f\x32\x30\x1b\x09\xac\x66\ \x09\x16\x23\x81\xc5\x08\xc8\x12\x05\xa1\x5a\x6c\x84\xc4\x5c\xda\ \x72\xcb\x6a\x90\x53\xe2\xc0\xef\xbb\x73\xd1\x21\x2e\x12\x3d\x3a\ \xda\xd1\xab\x63\x1c\x4c\xc6\xc6\x25\xe3\xa6\xa6\xaa\x2d\xd2\x82\ \xcb\x27\x0d\xc5\xd4\x31\xfd\xb1\x64\xfd\x6e\x6c\xd8\x79\x18\x1e\ \x0f\x85\xcf\xe7\xc7\x7f\x57\x6d\xc5\x1f\x3b\x0f\xe2\xb2\x73\x47\ \xa3\x6f\x7a\xa7\xb0\xcf\x4b\x84\xe0\x9a\x8b\x26\xa1\x4b\x87\x76\ \xf8\xfa\xc7\xc5\xf0\x78\x59\x8e\x22\x0a\x68\x86\x3a\x09\x20\x14\ \x81\x3c\x59\x92\x02\x55\x01\xdc\x1e\x0f\x6a\xeb\x9c\x70\x38\x6a\ \x50\x55\x55\x03\xaf\xcf\xa3\x4d\x82\xa0\xff\x77\x4e\x5e\x1e\xfa\ \xf4\x1d\x9c\xb8\x8b\xa9\x50\x4e\x94\x04\x12\xc8\x43\x64\xb7\xdb\ \x23\xbd\x0a\x8c\xa2\x4f\x3d\x51\x5c\x9c\x23\xd5\xe7\x6a\x12\xfd\ \xfe\xff\x6c\xa4\xe7\xb6\x02\x67\x88\xec\xdd\xb1\x29\x2b\xa5\xd3\ \x85\x7d\x0f\xe7\x54\x03\x00\x2a\xaa\x9c\xe8\xd3\x35\xa5\x1d\x98\ \x04\xe0\x81\xa8\x46\x12\xc7\x89\x5d\xf4\x9e\x2e\x62\xa6\x5d\x7e\ \x1b\xbf\x87\x33\x58\xfc\xb4\xc7\x58\xaa\xb8\x5c\x62\x9d\x95\xd5\ \x4e\xd8\x63\x13\x93\xb5\x7b\xfc\x60\x12\x88\x14\xd4\xe1\xf3\x5a\ \x25\xfd\xc2\x17\x4b\x73\x7e\x23\xaa\xbb\xea\x3d\x78\x02\x9e\x41\ \x9c\x24\xd9\x04\xa7\xd3\xe9\x7b\xec\xc1\xd9\x47\x1f\x7a\xe6\xc3\ \xf4\xf9\xab\xcb\xad\x00\xe0\xf5\x2a\xf8\x6c\x51\x7e\xda\x27\x5f\ \x2d\x78\x66\xd2\xf8\x21\xf7\xfb\x59\x16\x4e\x7d\x8c\x48\x33\x76\ \xba\xd0\xf6\x1a\xc7\x8f\x56\xc6\x81\xb4\x59\x00\xa1\x80\xda\x8a\ \x38\x90\x63\xef\x8f\x1e\x48\xa8\xc1\x68\x36\x2a\xfe\x96\xc7\x81\ \x44\xdb\xcc\x28\x2b\xcd\xe3\xb1\x44\xcd\xde\xb7\xc2\x01\x88\x25\ \x2e\x36\xde\x98\x14\x6d\x46\x3b\xbb\x19\xc3\xbb\xc6\x80\x10\xa0\ \xac\xd6\x8b\xac\x32\x06\x28\x59\xa5\x2e\x54\xd5\xfa\x99\xfe\x4c\ \x55\x60\x90\x29\xac\x46\xc0\x64\x00\x0c\x12\x20\x4b\x2a\x0c\x32\ \x03\x16\x85\x52\xe4\x94\x3a\x90\x5d\x52\x85\x15\x3b\xb2\xd0\x31\ \x3e\x0a\xbd\x3b\xc5\xa2\x57\xe7\x84\x06\xc1\xa4\x39\x42\x73\x64\ \x84\x19\x97\x9c\x33\x14\x53\xc6\xf4\xc7\xd2\x75\xbb\xb0\x71\xe7\ \x21\xb8\x3d\x1e\x94\x57\xd5\xe0\xfd\x6f\x16\xa3\x77\x7a\x47\x5c\ \x39\x75\x2c\xe2\xec\x51\x61\x9f\x3f\x73\xd8\x00\x74\x4c\x4e\xc4\ \x3b\x5f\x7c\x8f\xf2\xaa\x2a\x96\x24\x91\x00\x6e\xb7\x0f\x4e\x97\ \x0b\x4e\xa7\x0b\x2e\xa7\x0b\x75\x2e\x17\xdc\x2e\x37\x78\xca\x08\ \x95\xea\x22\x4e\x03\x4b\x99\xa2\xb4\xac\x1c\x89\x89\x09\x9c\x83\ \x3b\x2e\x46\xf4\x30\xf1\x1f\x5c\x02\x31\x0d\x1c\x38\x30\xb1\xdc\ \xe1\x35\xa9\x02\x27\x43\x55\x9f\xc8\x45\x8b\x41\x6a\x7f\x1a\xd5\ \x95\x48\x5a\x70\x21\x0f\x66\xd2\x1b\x0f\xdd\xb9\x39\x99\x65\x03\ \x7a\xc9\x8a\x4a\x59\x46\xd2\xea\x3a\x37\xa2\xed\x71\xb1\x60\xd2\ \x87\x0a\x4d\x1c\x57\x29\x8b\x3d\x08\xd4\xab\x09\x63\xd0\x2d\x40\ \xdd\x67\xd1\xf6\x14\x6a\xac\x04\xea\xfc\x5e\x67\x1d\xcf\x68\xc0\ \xc9\xaf\x06\xa2\xd0\xbd\x60\x46\x74\xa2\x6f\x5b\x9b\x1a\xf5\x3c\ \x6e\x78\xdb\xcd\x95\x10\xb5\x18\x02\x7d\x61\xc3\x06\x84\xb4\x29\ \xc9\x06\x15\x80\x73\xef\x9e\xdd\xde\xef\x3f\x7f\xe9\xe0\xd9\x97\ \xde\xd7\x7b\xf9\xd6\x0a\x33\x00\x54\x38\x5c\xe4\x87\x35\xe5\xfd\ \x17\xfc\xfa\xfb\xc3\xd3\xa6\x8c\x7d\x16\xf5\xcf\x81\xf1\x0b\x75\ \x87\x25\x5a\xaf\x8f\x8d\xa8\xb0\x74\xef\xd6\x5c\x6a\xc3\xf0\x11\ \x88\xa7\x68\x09\xa9\xc7\x17\x10\xd9\x5c\x25\x46\x83\x4a\x1b\x3f\ \x4a\x3c\x1c\xd9\x6d\x46\x14\xe6\x67\xf3\x38\x89\x66\xbf\x98\x01\ \x08\xd9\xa4\x0c\xc4\x14\x93\x18\x1f\x1b\x1b\xd8\xc2\xf9\x66\x9e\ \x18\x65\x42\x52\xb4\x09\x23\xba\xd9\x41\x08\x50\x5e\xeb\x45\x56\ \xa9\x13\x19\xc5\x75\x38\x5a\x54\x83\xaa\x3a\x8f\xc6\xc1\x2b\xe0\ \x91\xb7\x94\xaa\x30\x48\x14\x06\x19\x30\x48\x14\x46\x19\x28\xad\ \x70\x62\x77\x46\x31\x2c\x26\x19\x5d\x93\xa3\xd1\x37\x2d\x11\x7d\ \x53\x13\x61\x36\x85\x66\x24\x6e\xae\xf9\x39\xd2\x6a\xc6\xc5\xe7\ \x0c\xc3\x94\xb1\x03\xb1\x6c\xdd\x4e\xac\xdb\xbe\x1f\x6e\xb7\x07\ \xfb\x8e\xe4\xe0\xd9\xb7\xbf\xc5\xc4\x11\x03\x30\x75\xc2\x30\xc8\ \x72\xfd\xfd\x3c\xad\x53\x7b\x3c\x71\xcf\x4d\x78\xea\x8d\x4f\xb0\ \x72\xed\x16\xb8\x5d\x9e\xe0\xfb\x0b\x57\x95\x9f\xb6\x08\x68\x4b\ \x93\x22\xb8\xff\x04\xaf\x3e\x9f\x0f\x91\xd6\x08\xd1\xaf\xfe\x44\ \xd9\x40\x64\x00\xc6\x6e\xdd\xba\xc5\x56\xd4\xf8\x4c\x9c\x9b\x93\ \x25\x02\xc5\xe7\xe6\xc0\x11\x72\x30\x13\x04\xb7\xc0\xe3\xf8\x4e\ \x27\x8b\xc4\x8d\x5d\x8c\xdc\xf5\x64\x65\x65\x55\x8e\x8b\x80\x8f\ \xaa\x8a\x1c\xb8\x91\x58\xb9\x0a\x46\x81\xa6\xc2\xd2\x4b\x20\x0d\ \x2c\x91\x10\xf7\x49\x21\x5b\xb0\xe8\x83\xcf\xa5\x1f\x77\x5e\xce\ \xd1\x92\x04\x7b\xdf\x1e\x25\x15\x4e\xa1\x02\x89\xe7\xc3\x52\x01\ \xc8\x14\x40\x3d\x09\xa4\x75\x89\x53\x5b\x42\xb4\x9e\x04\x22\x19\ \x54\x30\xfb\x8e\xf7\xe7\x05\xf3\xab\x7a\xf4\xea\x67\x18\xd4\x6d\ \x62\xcf\xed\x87\xab\x8c\x00\x90\x59\xe0\x90\xb7\xda\xe3\xc7\x7e\ \xf6\xd5\xf7\x37\x5c\x7f\xcd\x65\x1f\xa2\x3e\x88\x70\x15\x68\x03\ \x73\x9a\x36\x67\x7c\xc3\xdf\xdb\xdc\x4e\xb5\xd9\xa9\xab\x39\x2c\ \xb4\x58\x02\x69\x35\x4f\x47\x74\x25\x70\xb0\x97\x64\xb4\x46\x50\ \xb5\xa6\xc5\x15\xda\x23\x65\x7a\x74\xc7\xd1\x4a\x84\x4f\x73\xd3\ \x20\x89\x33\x59\x02\x60\x22\xc6\xa8\x76\x89\x71\xb1\x21\x37\x85\ \x33\x72\x27\x44\x99\x90\x18\x6d\xc2\xf0\x74\x26\xa1\x94\xd7\x78\ \x71\xb4\xa8\x06\x47\x0a\x1d\x38\x52\x58\x8d\xf2\x6a\x17\x00\x0a\ \x9f\x5f\x85\xd7\x17\x04\x15\xce\xc1\x53\xaa\x60\xdf\xd1\x32\xfc\ \xba\xfe\x08\xac\x26\x19\x03\xba\x25\x62\x74\xff\x8e\x18\xd2\x2b\ \x25\x00\x26\x2d\xf1\x61\x8a\xb0\x98\x70\xe1\xd9\x0c\x48\x16\xad\ \xda\x86\xef\x16\xad\x43\x59\x45\x35\xb6\xef\xcd\xc4\x37\xff\x5d\ \x85\xfb\x6e\xbc\x18\x43\xfb\x77\xaf\xf7\x9c\x2d\x32\x02\x2f\xfe\ \xe3\x4e\xbc\xf5\xc9\x77\xf8\xe0\xab\x1f\xb5\xbf\x06\x81\x81\x9f\ \x50\x58\x7f\x38\x05\x10\x61\x1a\x67\x50\x00\x26\x93\x6c\x00\x88\ \x05\xa0\xc7\x1b\x40\x80\xd0\x94\x06\x86\xce\xa9\xe9\xc9\xe5\xd5\ \x1e\x99\xdb\x7d\x62\xa2\x2c\x28\x2f\xcb\xab\x44\x78\xdd\x78\x5b\ \x5d\x7d\xcd\x25\x71\x23\x0b\x80\xc8\x81\x03\x07\x2a\x63\x6c\x06\ \xbf\x68\xfb\x52\xa9\xc4\x01\xc4\x07\x0d\xc8\x79\x9c\x42\xb0\xb2\ \xa6\x87\x43\x03\x11\x7d\xbb\x01\xdb\x45\x6d\x8d\xc3\x69\xb6\x4a\ \xa1\xf5\xd2\xc0\xef\xc3\xf2\x3f\x51\x4a\xa8\xe6\x6b\x1f\xda\x95\ \x13\x46\x81\xc9\x2b\xb6\x49\x58\xf0\x62\x15\xb4\x3c\x4b\x2f\xbf\ \xf0\xd4\xce\xff\xbc\xd7\xcd\xda\x29\x29\x39\x2d\xbb\xa8\x56\x02\ \x80\x3f\xf6\x96\x5a\x13\xc7\x76\xbe\xe8\x99\x7f\xfd\x3b\xe7\xb1\ \x47\x1f\x5c\x88\xa0\x2a\x8b\x57\xc4\x55\x79\xf5\xe6\xb5\x7e\x7c\ \x1b\x95\x40\x5a\x7b\x22\x61\x5b\x9d\xc2\x94\x39\x14\xb5\xb4\x4f\ \xad\x01\xc4\x06\x92\x5a\xca\x00\x0c\xbd\x7b\xf7\xb6\x57\xbb\x64\ \x5b\x6b\xc6\x36\xca\x0a\x5f\x76\x76\xb6\x03\x4d\x9c\x42\xaa\x27\ \x0e\x20\x9c\xb3\x35\x41\x8e\x6c\x97\x10\x17\xd7\xc0\xcb\x37\x5c\ \x51\x42\xb4\x09\x09\xd1\xf1\x18\xd9\x33\x1e\x84\x00\x95\xb5\x1e\ \x1c\x2e\xa8\xc6\xe1\xfc\x4a\x1c\xc8\xad\x44\x49\x65\xad\xf0\x26\ \xc1\xcd\x57\x55\x28\x6a\x9d\x1e\xac\xdb\x99\x83\xb5\x3b\x32\x61\ \x36\x48\x18\xd2\xbb\x3d\xc6\x0e\xea\x82\xe1\x7d\x3b\xc1\x64\x6c\ \xd9\x59\x29\x16\xb3\x09\x17\x4f\x1e\x89\xf3\xc6\x0f\xc1\x8f\x4b\ \x37\xe0\xcb\x1f\x57\xe2\x48\x66\x01\x6e\xff\xe7\x5b\x38\x67\xcc\ \x20\xdc\x7b\xd3\x25\x48\x8a\x0f\x3d\x9b\x5d\x22\x04\x77\xdf\x74\ \x25\x7a\x75\xeb\x82\x47\x9e\xff\x0f\xea\x5c\x2e\x66\xff\xe0\xef\ \x1a\x78\x67\xed\xb3\xe0\x08\x41\xf9\xbf\x5a\x7f\x64\x50\x42\x4c\ \xf6\x78\xea\xad\x32\x40\x33\x40\x1e\x07\xae\x3f\x9c\x1a\xcb\xd0\ \xae\x7d\xa7\xa4\x43\x47\x9d\x01\x6e\x2e\xd6\x66\x44\x61\x41\x76\ \x39\xc2\x1f\x76\xd4\x6c\xae\xa2\x0d\x93\x28\x85\xf8\x01\xf8\x6b\ \x6b\x6b\x3d\x26\x99\xfa\x43\xf4\xef\xc4\xc0\xe3\x3f\x64\x30\x0f\ \x2c\x89\xd6\x93\x40\x9a\x3d\x14\x7a\x35\x57\xc0\x5e\xd1\xa3\x67\ \xbf\xa4\x05\x5b\x1c\xa1\xba\x7f\xc5\x27\x26\x0e\x64\xe8\xa3\x6f\ \xfb\xc4\x13\xd5\x9f\xfa\x27\xb1\x1c\x63\x3c\x5a\x5d\x05\x60\xfa\ \xdb\x1d\xd7\xaf\x9a\xf3\xfd\x62\xeb\x4f\x35\x86\x94\xaa\x1a\x16\ \x9c\xfb\xcb\xea\xec\x98\x9b\x2e\x98\x32\xfb\xba\x59\xfb\xf3\xbf\ \xf8\xfc\xd3\xad\x08\x55\x7f\x36\xa8\x5c\xd7\x9f\xf1\xd1\x84\x00\ \xf2\x17\x93\x40\xc2\x48\x99\xcd\x79\xe6\xd8\x25\x90\x80\x3a\x1b\ \x80\xf9\xea\xeb\x6e\x3a\x63\x4f\x86\x23\xb2\x35\x63\x1b\x67\x93\ \x7d\x07\x0e\x1c\xa8\x42\x7d\x87\x8c\x46\xa9\x9e\x04\x22\x19\x2c\ \xf1\xf1\x31\x31\x0d\xdd\xdf\xec\x98\x8e\xb8\x28\x33\x46\xf6\x4a\ \xc2\xa8\xde\x49\x20\x04\xa8\xaa\xf5\xe0\x60\x5e\x05\x0e\x64\x97\ \x63\x7f\x76\x19\x0a\xcb\x1c\xda\x9d\x02\x07\x4f\x01\x97\xd7\x87\ \x35\xdb\xb3\xb0\x7a\xdb\x51\x98\x0d\x12\x86\xf7\xeb\x84\x33\xcf\ \x48\xc3\xb0\xbe\x9d\x61\x36\x35\x5f\xf4\xb7\x98\x8d\x98\x39\x7d\ \x1c\x2e\x99\x32\x0a\x3f\x2e\x59\x8f\xcf\x7f\x58\x86\xa5\x6b\xb6\ \x62\xf5\x1f\x3b\x71\xf3\x8c\xf3\x70\xcd\xc5\xe7\xc0\x68\x08\xad\ \x6f\xca\x84\x91\x48\xeb\x9c\x82\x3b\x1f\x79\x1e\x39\x79\x85\x7a\ \x0d\x55\xc8\x7f\x02\x00\x43\x43\x6f\x52\x55\x1f\x88\x31\x2a\x91\ \x7a\xab\xb8\x17\xcb\xf1\xa4\x10\xae\x23\x2e\x3e\x31\xae\x6a\x47\ \x4d\x60\x61\x45\xdb\x0c\xea\xd1\x9d\x47\xcb\x11\xd6\x2b\xe7\x4f\ \x4f\xe2\x46\x2e\x4a\x03\x7e\x02\xbf\x2f\x74\x31\xca\x21\x00\x02\ \x68\xbf\x57\xeb\x17\x6c\x58\xb2\x44\x46\xdb\x3c\x5e\x5d\x7a\x1d\ \xea\xf7\x23\x84\x4b\x0f\xc6\x63\x84\x76\xa5\x9e\x1a\x22\x50\x5a\ \x10\x3e\xd4\xf0\x8d\xba\xfe\x12\x16\x38\xe9\xd0\x8a\x0f\x80\x49\ \x55\xd5\xa8\xdb\x6e\xb8\x7c\xc9\xa7\xdf\x2c\xbc\xe0\xb3\xc5\x85\ \xf1\x5e\xed\x3c\x9e\x4f\x7f\x39\x98\x74\xf7\xcd\xf7\xff\x73\xff\ \xbe\x3d\xf7\x6c\xde\xbc\x59\x2f\xc1\xaa\x08\x97\x23\x49\x3f\xbe\ \x8d\x6e\xf6\xad\xfd\x2d\xda\xea\x34\x0e\xf7\x1b\x37\xe3\xa9\x16\ \x02\x62\x98\xb3\x80\x02\x01\xc5\x00\x22\x06\x0e\x1d\x37\xfc\xed\ \x1f\x32\x5b\x54\x27\x27\xab\xc1\x53\x5b\x56\x56\x56\x87\xfa\xc7\ \x23\x37\xca\x78\xea\x01\xc4\xd0\x2e\xb9\x4b\xb2\xc1\xd0\x38\xd7\ \xdf\x9a\xc0\xc0\xd8\x28\x33\x46\xf5\x69\x8f\xd1\x7d\xdb\x03\x00\ \xaa\xeb\x3c\x38\x90\x5d\x8a\xfd\x59\xa5\xd8\x93\x51\x8c\xdc\xe2\ \xaa\xd0\x07\x28\xe0\xf6\xfa\xb1\x6a\xcb\x11\xfc\xbe\xf9\x10\xcc\ \x46\x09\xc3\xfa\x75\xc6\xf8\x21\xe9\x18\xd1\x3f\x15\x66\x53\xd3\ \x19\x7a\x01\xc0\x6c\x32\x62\xc6\xf4\xf1\xb8\xe4\xdc\x31\xf8\x71\ \xc9\x3a\x7c\x36\x6f\x31\xde\xfc\xf4\x07\x2c\x58\xbc\x1a\x0f\xdd\ \x7e\x15\x46\x0f\xed\x17\x72\x7f\x8f\xae\x9d\x31\xff\xc3\x97\x70\ \xef\x13\x2f\x63\xcd\xc6\xad\xc1\x97\xd1\x24\x0c\x4a\x45\xf5\x87\ \x4e\x22\xa1\x80\xd7\xe3\x02\xe4\x88\x04\x04\xdd\x20\x8f\x17\xd5\ \xd3\x77\x82\xc8\x26\x45\x09\x32\x85\x91\x66\xf8\x8b\x8b\x8b\x39\ \x87\x59\x2f\xdb\xea\x71\x7c\x97\x53\x49\xf5\xa5\x01\xaa\xf8\xd5\ \x10\x09\x44\xaa\x17\x08\xc5\xe3\x14\x82\x95\x34\x7b\x38\x44\x95\ \x01\x1f\x7f\x76\x95\xcc\x56\xb1\x4e\x8b\xd9\x00\xb7\xb3\xc6\x05\ \x1d\x70\x07\xe3\x18\xb4\xb6\x29\xd5\xd7\x27\x96\xe6\xfe\x56\xdc\ \x1e\xd1\x40\xb0\x17\x0d\x69\x53\xcb\x72\x5c\x07\x26\x85\xb8\xc1\ \xd6\xbe\xa7\xba\xba\x5a\x7d\xe8\x9e\x1b\x16\x3f\xf3\xf2\xe7\xd3\ \x3f\xf9\x35\x33\x9a\xbd\x2f\xf0\xee\xfc\xfd\x9d\x5e\x7c\xfd\xe3\ \x7f\x5d\x36\x7d\xc2\x3d\x15\x15\x15\x22\x37\xea\x43\xe8\xd8\x6a\ \xad\x85\xb6\xd7\xe8\x8b\xd3\xe6\xdf\x1b\xfa\x5c\x8b\x1f\x39\x39\ \x44\xeb\xff\xc6\xcd\x7a\xac\x19\x1d\xd2\x71\x13\x62\x20\x31\x77\ \xe5\x8f\x04\x60\xfb\xe7\xe3\xcf\x8c\xdb\xb0\xcf\xd1\xae\x35\xe3\ \x1a\x15\x69\x42\x55\x69\x6e\x31\x82\xee\xe4\x7a\x00\x69\x90\xf4\ \x2c\xbd\x14\x13\x13\x1f\xcd\x5e\xbc\x75\x40\xd1\xd4\x77\xfc\xfb\ \x18\x9b\x19\xa3\xfa\x75\xc4\xe8\xfe\x1d\x41\x08\x50\xe3\xf4\x60\ \x6f\x46\x31\xf6\x1c\x2d\xc2\x9e\x23\x85\xc8\x2a\x28\x17\x06\x98\ \xc2\xe5\xf1\x61\xd5\xe6\x43\xf8\x7d\xd3\x01\x98\x8d\x32\x46\xf4\ \xef\x82\x09\xc3\x7a\x62\xc4\xc0\x6e\xb0\x34\x03\x4c\x4c\x46\x03\ \xae\x9c\xc6\x80\xe4\xa7\x25\xeb\xf0\xd1\xdc\xff\x62\xf6\x23\x2f\ \xe3\xac\xd1\x67\xe0\xc1\xdb\xaf\x46\x4a\xbb\x84\xc0\xbd\xd1\x51\ \x36\x7c\xf0\xf2\xe3\x78\xe5\xdd\xcf\xf1\xe1\x97\xf3\xb4\x37\x10\ \x54\x5a\x54\x77\x0d\x10\x85\xcb\xe5\x04\x91\xcd\x51\x38\xfe\xf6\ \x0f\x4e\x81\x8d\xc7\xef\xf3\xf8\x08\x28\xf8\x59\xcc\x35\x75\x8a\ \xa1\x43\x87\x0e\x66\xfc\xb5\x24\x0f\x91\xf4\xea\x24\x0a\x40\xa5\ \x90\x0d\x21\x06\x4c\x35\x44\x0a\x20\x00\x57\xb1\x84\xf1\x9e\x6b\ \x84\x84\xc5\x1b\x04\x6d\x4d\x6d\x20\x49\x92\x91\x12\x63\x84\x58\ \x67\xff\x6e\xb1\xfe\xe5\x4b\x3e\x3a\x0c\x41\xfa\x23\x20\x54\x7f\ \x56\x04\x65\x69\x3e\xf8\x46\xc0\x8b\x51\x68\xab\x71\xf6\x3d\x78\ \x15\x01\x28\x74\x43\xa7\x08\x69\x93\xb0\xd3\xa4\x79\xf6\xe1\x5a\ \xed\xcf\x6e\x00\xca\xe1\x43\x87\xc8\x27\xef\x3c\xf3\xdb\xc5\xd7\ \x3e\x3c\xe9\x87\xdf\x73\x22\x00\xa0\xb6\xce\x83\xcf\xfe\x7b\xb4\ \xc7\xb7\xf3\x17\x3f\x31\x79\xe2\xf0\x7f\x20\x98\x5e\xdc\x2d\xbc\ \x67\xb0\x4d\xdd\xf8\x36\x35\xbc\xad\x39\x0f\xa4\xad\x22\x08\x53\ \x17\xb6\xda\x88\xde\xa0\x24\xaa\x15\x91\x51\xd0\x9f\x03\x64\x03\ \x10\x3d\x74\xe8\xd0\xce\x23\xc7\x4f\x9b\xfe\xc6\xb7\x7b\x9b\xc7\ \x55\xeb\x68\x70\x8f\x38\xdf\xbc\x6f\x9f\xdd\x8e\xf0\x9e\x9b\x01\ \xa7\x92\x70\xcf\x8a\x00\x42\x01\xa8\x15\x15\x25\xd5\xe2\x0d\xc7\ \x02\x22\x2d\x79\x36\x3a\xd2\x8c\xd1\x03\x3a\x63\xcc\xc0\xce\x0c\ \x50\xea\x3c\xd8\x73\xb4\x10\xbb\x0e\x17\x60\xd7\xc1\x3c\x1c\xc9\ \x2d\x09\x6c\xe0\x6e\x8f\x17\xbf\x6f\x3a\x88\xdf\xfe\xd8\x07\xb3\ \x41\xc6\xc8\x41\x5d\x31\x61\x78\x6f\x8c\x1a\xc4\x02\x0c\x1b\x23\ \xa3\xc1\x80\xcb\xce\x1f\x8f\x8b\xa6\x8c\xc5\x4f\x4b\xd7\xe2\x83\ \x39\x0b\x30\xfd\x86\x07\x70\xf3\x8c\x69\xb8\x71\xc6\x05\x01\xc9\ \x46\x96\x24\x3c\x78\xe7\x0d\xe8\xd3\xa3\x2b\x1e\x7e\xe6\x15\x38\ \x5d\xae\x7a\xea\xaa\x90\x65\xc2\x55\x5a\x44\x02\x55\x3c\x0e\x9c\ \x18\xb7\x59\x91\x1b\x46\x79\x59\x71\x95\x3d\x32\x1a\x15\xd5\xec\ \xa8\xeb\x4a\x87\x4b\xea\x9c\x9a\x1e\x07\x3d\xaa\xfd\x75\x49\x83\ \x70\x62\x08\xb5\x43\x78\xb9\x58\x16\x9c\x65\x6a\x8b\x6c\x20\x1c\ \x3b\x42\x25\xbe\x20\xd7\x67\x7e\xf8\x91\x27\x86\x6d\x3d\x50\x19\ \x25\xd6\xd9\xab\x93\xd5\xf9\xf2\x82\x05\x39\x08\x3a\x31\x18\x02\ \xea\x0d\xf1\xfd\x58\xaa\x73\x7e\x66\x08\x3f\xeb\x9a\xb2\xfb\x1b\ \x04\x7e\x71\xd2\x71\x00\xe5\x24\x26\xbe\x0b\x84\xb8\xe8\x74\xe1\ \x14\xc1\x7c\x62\xdc\x58\xca\x0f\xdf\x92\x96\x2e\x5e\x28\xa5\x77\ \xef\x15\x3b\x76\xe0\x94\x11\x6b\xb6\x17\x99\x01\xa0\xa0\xc4\x21\ \xfd\xba\xc1\x38\xe4\xbb\x1f\x16\xfd\xed\x8a\x4b\xce\x7b\x0d\xc1\ \xcd\xcc\x0f\x5d\xb4\xb2\xde\x06\xd2\xa4\x0a\xab\x55\x36\xa1\xb6\ \x3b\x95\x5b\x67\x03\xa1\x9c\x99\xd0\xcf\x33\x19\xa1\x9d\xd5\x83\ \x87\x05\x2c\xdb\x45\x6c\x6a\x6a\x6a\x87\x17\x5f\xff\xe4\x91\x37\ \xbe\xdd\x93\xd4\x5a\x3b\x5b\xa7\x04\x52\xf7\xdb\xca\x95\x79\xa8\ \x7f\x3e\x4d\x93\x4c\xa8\x1e\x40\xfc\xa5\x25\x79\x45\x7e\x45\x81\ \x51\x50\x63\x1d\xab\xb4\xd1\x9a\xef\xa2\x6d\x66\x8c\x1e\x98\x8a\ \xd1\x03\x53\x01\xb0\xd3\x0a\x77\x1f\xce\xc7\xce\x83\xb9\xd8\x79\ \x20\x17\x87\xb2\x0a\xa0\x28\x80\xcb\xeb\xc5\xca\x3f\xf6\x61\xc5\ \x86\xdd\x30\x1b\x65\x8c\x1a\xd4\x1d\x67\x8d\xec\x87\xd1\x83\x7b\ \x35\x0a\x26\x06\x83\x8c\x4b\xa7\x32\x20\xf9\x79\xe9\x5a\xbc\xf7\ \xe5\x7c\x2c\x58\xfc\x3b\x1e\xbe\x73\x16\x26\x8e\x19\x1a\xb8\x6f\ \xda\xa4\xf1\xe8\x96\xda\x09\xb7\xdd\xff\x38\x72\xf3\x0b\x42\xd4\ \x55\x00\x02\x2a\x2d\x0e\x6e\x44\x92\x01\x7f\x1d\xb7\x43\x1c\x6f\ \x10\x11\x39\x70\x5a\x98\x97\x55\x1e\x6b\x1f\x8e\xb2\xaa\x3a\x00\ \x40\x79\x55\x1d\xfa\xf6\xe8\x1c\x87\x50\xe9\xe7\x44\x49\x42\x6d\ \x81\x48\x4c\x4c\x8c\xc1\xed\xa5\x06\x5d\x2c\x0c\x77\x84\x0f\x4c\ \x7e\x7e\x06\x05\x42\xbf\x68\x8a\xfb\x13\x0d\x95\x7c\xb3\x8f\x00\ \x10\x31\x64\xd4\xd9\x67\xbe\x3d\xff\x70\x60\xfd\x18\x64\x09\xb2\ \x5a\xeb\xf0\x78\x3c\x62\xd6\x63\x23\x08\xa1\x54\x17\x23\xa0\xa8\ \xaa\xac\xd5\x13\x05\xa6\x56\xa2\x60\x1b\x03\x57\x1d\xe8\x49\x0f\ \x1e\xfa\xc0\x43\x02\xdd\xb9\x1b\x2c\x0b\xb0\xaa\xaf\x83\x47\xf2\ \xf3\x77\x74\x09\xcf\x4b\xef\xbc\xf5\xea\xb6\x17\x5f\xe9\x16\xd3\ \x33\xb5\x63\x9f\xfd\x99\x15\x06\x00\xd8\x7d\xa4\xd4\xd4\x2e\xbe\ \xf3\xe4\xb7\xde\xf9\x28\xf7\xae\x3b\x6e\xfe\x4e\xab\xcb\x83\xd0\ \x8c\xad\xf5\xc6\xb7\xb1\x7d\xa7\x7e\xcc\x48\xf3\xa8\x2d\x1b\xd1\ \x5b\x13\x07\xa2\xe5\xf7\x0a\x78\x55\x82\xcd\xb3\x80\x0b\x38\x42\ \xa5\x4c\xf1\x64\xce\x48\x00\x31\x77\xfe\xdf\x3d\xa3\xa6\x5d\x3a\ \xeb\xee\xf7\xe6\xef\xeb\xd8\x9c\x0c\xe5\xe1\xc8\x64\x94\xe1\x73\ \x55\x56\x20\x7c\xe6\x8a\x66\x1b\xd1\xf9\xa4\xf4\xaa\x7e\x57\x59\ \x79\x65\x25\x92\x13\x13\x42\x6e\x3c\x15\x20\x22\x92\x2d\xc2\x8c\ \x51\x03\xbb\x62\xd4\xc0\xae\x00\x00\xa7\xdb\x8b\xdd\x87\x72\xb1\ \x63\x7f\x36\xb6\xef\xcb\xc4\xfe\x8c\x3c\xb8\x3d\x3e\xac\xdc\xb8\ \x1b\x2b\xd6\xef\x84\xd9\x28\x61\xf4\xe0\x5e\x38\x7b\xd4\x00\x8c\ \x19\xda\x07\x16\xb3\x29\x6c\xbd\xb2\x2c\xe3\xe2\xf3\xc6\xe3\x82\ \xc9\x63\xf1\xcb\xb2\x35\x78\xe1\xed\xcf\xf0\xcd\x82\x45\x78\xf4\ \xee\x9b\xd1\xa5\x23\xb3\xd7\xf4\xee\xde\x15\x3f\x7d\xf9\x0e\xee\ \x7a\xf8\x29\xac\xdd\xb8\x05\x1c\x32\xc2\xa9\xb4\x54\x0a\x50\x9f\ \xa3\x18\xc1\xcc\xb7\xc7\x9b\x02\x00\x92\x95\x79\xa4\xa2\xcb\xb0\ \xd1\x0a\x8f\x81\xa8\xac\x76\x22\x2e\x3e\x31\x16\xa1\x6a\x8d\xbf\ \x12\xe9\xbd\xd1\x48\xff\xfe\xfd\xed\xe5\xd5\xae\xd0\x68\x7c\xea\ \xe7\x07\x2b\x05\x74\xb8\xf5\x3d\xa1\x42\xd4\x07\x7a\xee\x4f\x54\ \x5d\x89\xa7\x21\x46\x01\x88\xfe\xf0\xb3\x6f\xaf\x5a\xb6\xb9\xb4\ \x83\x58\xdf\x59\x23\x3b\x7a\x3e\x79\xff\xa5\x75\xd0\x22\xe4\xb5\ \x06\x4c\x04\xa0\x7a\xee\xb4\x7b\xb7\xb4\x84\x17\x5e\x7a\x63\x72\ \xa4\xcd\x56\x1d\x61\x8d\x70\x9a\x2d\x56\xb7\xd1\x68\xf2\xc9\x06\ \x49\x95\x88\xd4\xe0\x9c\x21\x92\x44\x25\x42\xa8\x24\xc9\xaa\xc9\ \x64\xf4\x5b\xcc\x26\xf7\xf8\xb1\xc3\x3e\xd2\xda\x0a\xa4\x1e\x01\ \xeb\x70\x38\x89\x80\xc7\xb4\xf0\x43\xba\x08\xb4\x23\x51\xb5\x7e\ \x1b\x1e\xba\xff\xce\x55\x9f\x7d\xfd\x63\x54\x79\x95\x25\xb5\xb8\ \xbc\x8e\x00\xc0\xb2\x0d\x99\xb6\x6b\xa7\xf5\xb9\xe6\xee\x7b\xee\ \xcf\x7b\xe3\xf5\x57\xd6\x6b\xcf\x02\x62\xe2\xbd\x16\x45\x97\xff\ \xc5\x24\x10\x21\xbb\x70\xcb\x1e\x53\xa1\xaa\x6a\xe0\xb8\x66\xb0\ \x39\xa6\x20\x28\x89\x02\xa1\x92\x87\x19\x40\xc4\x15\x57\x5c\x91\ \x7e\xed\x8d\xff\x77\x4b\x66\x29\x86\xbe\xf4\xc5\xb6\xa8\x63\x01\ \xd6\x69\x63\xba\xb8\x3f\x7a\xe7\x9f\xeb\x10\xcc\xad\xa6\x3f\xad\ \xb4\xd9\x12\x88\x0a\xc0\x0b\xc5\x59\x5c\x56\x51\x1f\x40\x80\x53\ \x0f\x22\x22\x45\x58\x4c\x18\x31\xa0\x1b\x46\x0c\xe8\x06\x00\x70\ \xb9\xbd\xd8\x7d\x28\x07\xdb\xf6\x66\x60\xdb\xde\x23\xd8\x7b\x28\ \x07\xcb\xd7\xef\xc0\xb2\xb5\xdb\x60\x36\xca\x18\x33\xb4\x0f\xce\ \x19\x33\x08\x67\x0e\xeb\x1f\x16\x4c\x64\x59\xc6\x45\xe7\x4e\xc0\ \xf4\xc9\xe3\xf0\xeb\xb2\x35\xb8\xeb\x91\xe7\x31\x71\xcc\x50\xcc\ \x9e\x75\x25\xac\x16\x33\x62\xed\xd1\xf8\xfc\xed\x97\xf0\xfc\xeb\ \xef\xe2\x83\xcf\xbf\x61\x0f\x85\x51\x69\x79\x7d\x2a\xa5\x3e\x07\ \x77\xa5\x3d\x9e\x81\x7b\x7a\xfd\xbf\x72\xe4\xc8\x91\xaa\x33\xce\ \x32\x7a\xa9\xaa\x5a\x01\xc0\xaf\xaa\x90\x64\x93\x78\x38\x50\xb3\ \x32\x6a\xfe\xc9\x28\x44\x1f\x9c\x9e\x9e\x1e\x53\x5e\xe5\x31\x72\ \xfd\x33\x21\x00\x55\xbd\xfc\x4c\x69\xee\x31\x44\xa1\x42\x6f\x87\ \x00\x42\xed\x10\x9c\xfb\x83\xf0\x1c\x3f\x77\x25\x02\x2c\x4f\x54\ \xec\xab\x6f\xbc\x77\x49\x95\x2f\xe1\xcc\x03\x19\x19\x21\xd2\x47\ \xc7\x18\x5f\xe9\xf2\x65\x4b\xb3\xc1\x16\xa2\x53\x7b\x47\x0b\x21\ \x84\x52\x35\xd4\x3e\xf0\xe6\xdc\xfd\xf1\x40\xd2\xc4\x60\x97\x38\ \xe6\xb4\x8c\xae\x99\xde\xbf\x14\xc0\x3c\x30\x40\xe0\x5c\xaa\x04\ \x80\x70\xbd\xbc\x8e\xc4\x40\x4c\xae\xbe\xe2\xea\x3e\xfe\xbc\x7c\ \xdb\x8d\x33\x96\x7c\xf5\xdd\xa2\x8b\x3f\xfd\x35\xbb\x9d\xd3\xcd\ \x84\xb9\x2f\x7f\xd9\x13\x7f\xcf\x35\x57\xdf\xbf\x7f\xdf\xee\xd2\ \xa5\x4b\x97\x66\x22\x78\x64\xb0\x11\x5a\xb2\xca\x66\xdb\x98\x74\ \xf6\x99\x66\x53\x1b\x95\x40\x28\xd0\x2a\x1b\x08\x55\x29\x51\x14\ \x85\xdb\x32\xec\x60\x63\x6a\x44\xf0\x48\x6c\x02\x40\x8e\x8b\x8b\ \xb3\xdc\x71\xc7\x1d\xbd\x06\x0c\x1e\x35\xda\x1e\x97\x32\xfa\x68\ \x7e\x6d\xc7\x8f\x7f\xc9\x8c\xae\xaa\x71\x37\x5c\x79\x33\x28\x26\ \xda\x0a\x93\x52\x52\xb8\x61\xc3\xfa\x1c\xd4\x3f\xf6\xa1\x59\x99\ \xbb\xeb\x01\x08\xf5\x56\x17\xef\x2f\xac\xc5\xae\xca\x02\x44\x5b\ \x0c\xb0\x47\x18\x10\x6d\x65\x57\x5e\x2c\x8d\xa4\x20\x39\x51\x86\ \xf7\xa6\xc8\x6a\x31\x61\xf8\x80\x74\x0c\x1f\x90\x0e\x60\x32\xdc\ \x1e\x1f\x76\x1d\xc8\xc4\xb6\xbd\x47\xb0\x65\xd7\x21\xac\xda\xb8\ \x13\xcb\x56\x6f\x86\xd9\x24\x63\xec\xd0\x7e\x98\x74\xe6\x50\x8c\ \x1b\x31\xb0\x1e\x98\xc8\x92\x84\x0b\xa6\x8c\xc7\xb4\x49\xe3\xb0\ \x70\xf9\x2a\xdc\xf9\xf0\x33\xb8\x7c\xfa\x64\x9c\x77\xf6\x38\xc8\ \x92\x84\x7f\xde\x77\x27\xfa\xf6\xec\x8e\x07\x9f\x7c\x0e\x2e\xd1\ \x2e\xa2\x5d\xfd\x7e\x85\x73\x78\x27\x22\x7d\x68\x88\xf7\xd1\xbe\ \x7d\xfb\x1c\x71\xd1\x46\x45\xf4\xbc\x50\xa9\x64\x41\xa8\x0b\xeb\ \x5f\x45\x12\xd1\xab\x95\x64\x00\x86\x8e\x9d\xd2\x12\x8b\xaa\x9c\ \x32\x1f\x83\x98\x28\x2b\x2a\xcb\xcb\xf8\xd9\xe4\x01\xef\x21\x0a\ \x9d\x17\x96\x4a\x09\x82\xfa\x64\xce\xfd\x01\x6c\xf1\x00\x41\xd5\ \x95\x05\x80\x2d\x2d\x2d\x2d\xf9\x8d\x77\x3e\xbd\x77\xf3\x41\xe7\ \xc8\x55\xab\x0e\x5b\xc5\x17\xbb\x7a\x5a\x8f\xda\x57\x5f\xfc\xfb\ \x4a\x84\x1e\xde\xc5\x8e\x86\x06\xa8\xde\x43\xa7\xa0\x44\xe7\x71\ \xd8\x4a\xaa\xae\x71\x52\xb0\x8d\xa7\x16\x42\xda\x16\x00\x04\x3a\ \x4f\x27\xc1\xeb\x4c\x1f\xcd\x2f\xf6\xd7\x00\x40\xf6\x78\x3c\x86\ \xbb\x6f\xbf\x66\xe1\x6b\xef\x7e\x7b\xf1\xbb\xf3\xf7\xc5\x70\x27\ \x8d\xff\x7c\xb3\x35\xf9\x81\x47\x5f\x7c\x62\xff\xfe\xfd\x8f\xe4\ \xe6\xe6\x56\x23\x78\xac\x80\xb1\x91\xf6\xea\x51\xab\xbd\xb0\x5a\ \xfc\xc4\xc9\x22\xda\x2a\x2f\x2c\x45\x55\xa5\x87\xff\xf9\xec\x39\ \x5e\x9f\x32\xdc\x6c\x36\xbb\x8d\x26\x93\x57\x96\x0d\x0a\x20\xc9\ \x0a\x25\x46\x55\x85\x51\xa1\xc4\xea\xf6\xaa\xb1\x87\x73\xaa\xa2\ \x17\xac\xaf\xb0\xe6\x15\xe5\x1c\xb7\xb7\xbe\xf0\xcc\x0e\xc6\x29\ \x34\x21\x00\x00\x20\x00\x49\x44\x41\x54\x75\xff\xb8\xfb\xaa\xdf\ \xc1\xe6\x2d\x3f\x4f\xc6\x8d\xd0\xf8\xb1\x46\xc9\x00\x40\x8c\xb8\ \xf5\x51\x9f\xa3\xdc\x55\xe7\xa0\x99\x55\xb6\x06\x37\x1d\xa3\x04\ \x44\x59\x08\xec\x56\x19\xd1\x11\x72\x00\x58\x62\x22\x8d\x88\xb5\ \x19\x11\x6b\x33\x21\xca\x6a\x0a\x0b\x0a\xc7\x62\x78\x6f\x09\x59\ \xcc\x46\x0c\x1f\xd8\x03\xc3\x07\xf6\x00\xae\x9a\x0a\x8f\xd7\x87\ \x5d\xfb\x8f\x62\xcb\xae\x43\xd8\xbc\x6b\x1f\x1e\x79\xf1\x7d\x10\ \x02\x8c\x1b\x3e\x00\x93\xc7\x0f\xc7\xf8\x11\x67\xc0\x62\x31\x07\ \x9e\x97\x24\x82\x69\x93\x27\x60\xea\x39\xe3\xb1\x68\xe5\x6a\x3c\ \xfb\xea\xbb\x98\x79\xc9\xf9\xe8\x96\xda\x19\x17\x9f\x3f\x19\xdd\ \xbb\xa6\xe2\xe6\xbb\x1f\x40\x6e\x5e\x3e\xf8\x38\x53\x4a\x01\xc9\ \xc0\xd3\xa7\x1f\x4f\x2f\xa8\x7a\xd2\x07\x00\xbf\xd3\xe9\xf4\x18\ \x25\xea\x15\xfd\xcf\x7d\xaa\x6c\x43\xf0\x50\x18\xfd\x79\xd4\xdc\ \xab\xe3\xcf\x4a\xa2\x31\xd1\x00\xc0\xd0\xa3\xcf\xc0\xee\x1b\x97\ \x16\x07\x7c\xf0\xe3\x62\x2c\x28\x2c\x38\x52\x81\xa0\x8d\x40\x02\ \x9b\xe2\x21\x7e\xfa\x2a\x55\x25\x30\xd0\xe0\xdc\x9f\x0a\xb6\x19\ \x72\x95\x8e\x01\x80\xe9\xf6\xdb\x6f\xef\x35\x69\xea\x65\x57\x78\ \x68\xc4\x19\x5f\x2d\x39\x9c\x5c\x58\x5a\x13\x32\x43\xcf\x3f\x33\ \xcd\xbd\x74\xc1\x27\x6b\xb7\x6d\xdd\x92\x03\xe6\x22\xeb\x00\x5b\ \x84\x66\x68\x39\xa4\x28\x8e\x29\xf3\x6a\x83\xa4\xaa\x8a\xa4\xbd\ \x3f\x8f\x8e\x0f\x18\xd3\x29\xf4\x71\x19\xc2\xbf\x41\x95\x35\x0f\ \x38\x05\x74\xe3\x5a\x50\x50\x20\xbf\xf2\xaf\x07\x97\xdd\x7a\xdf\ \x73\xe7\x7e\xfe\xcb\xfe\x28\x00\x70\x7b\xbc\x78\x7b\xee\x8e\xb4\ \x8f\x3e\xff\xfe\xd1\xa9\x93\x46\xbf\xa8\x28\x0a\x85\x76\x78\x16\ \xa5\x2a\x69\x49\x1f\x5b\x35\x1e\x6d\x54\x02\x01\xe5\xf6\x8c\x96\ \xf5\x69\xe9\xfa\x0c\xc3\x52\xa0\xcb\x09\x7a\xab\x46\x29\xad\x43\ \x0c\xcd\x39\xbc\x25\xa3\xa8\xa8\xa8\x18\xc1\x79\x5b\x87\x50\x23\ \x7a\xf3\x00\x44\x23\x3e\xa9\xdc\xce\xea\x42\x2f\x22\x52\xcc\xe1\ \x1f\xa1\xf0\xfa\x55\x94\xd5\xa8\x28\xa9\xae\x9f\x37\x8a\x5f\x09\ \x68\x00\x54\x62\x22\x4d\x88\x8d\x32\x21\xd6\x66\x42\x5c\xb4\x19\ \x71\x51\x16\xc4\x45\x5b\x10\x17\x6d\x0d\x9b\x50\xf1\x44\x9c\x26\ \x6e\x36\x19\x31\x6c\x60\x2f\x0c\x1b\xd8\x0b\xb7\xe3\x02\x0d\x50\ \x8e\x60\xf3\xce\xfd\xf8\xf6\xa7\x65\x78\xea\x95\x0f\x31\xe2\x8c\ \x3e\x98\x32\x61\x14\xc6\x8f\x1a\x02\xab\x06\x26\x92\x44\x70\xfe\ \x39\xe3\x31\xf5\xec\x71\x58\xb1\x66\x03\x76\xef\x3b\x80\x73\xc6\ \x8f\x45\xbf\xde\x3d\xb0\x70\xee\xe7\xb8\xed\xbe\x87\xb0\x76\xc3\ \x26\x50\x00\x29\xc9\xed\xe0\x70\xd4\xd4\x40\x73\x8f\x3c\xfe\xbd\ \x08\x70\xd4\x81\x74\x1a\x26\x83\xe2\x54\x55\x25\x90\x3a\xe0\x70\ \x5e\xad\xfd\xca\x2b\xaf\x4c\x9d\x3b\x77\x6e\x2e\x42\x4f\x16\xfb\ \xb3\x4b\x21\x7a\xe9\xc3\x08\xc0\x64\xb0\xd8\x93\x9d\xae\xec\xc0\ \x4d\x3d\x3a\x47\x7b\x7e\xf9\x62\x05\xf7\x84\x52\xc0\xce\xb4\xa0\ \xfa\x38\x90\xc4\x84\xb8\xc8\xff\xbc\xf7\xd9\xf4\x88\x88\x88\x5a\ \x8b\xc5\xea\x32\x99\x4d\x1e\x93\xc9\x2c\x99\x4c\x16\x9b\xa2\xc2\ \xa4\xa8\x88\x74\x79\x91\x78\x20\xbb\x32\xfe\xe3\xff\x66\x58\xab\ \x1c\xf5\x55\x4c\x17\x9f\xd5\xdd\x55\x9c\xb1\x61\xd7\x37\x73\xbe\ \xd8\x0d\x96\xee\xbd\x12\x6c\x21\x72\x37\x62\x3f\x53\x61\x85\xb6\ \x7d\xcb\xa5\x03\x7c\x5e\xb7\xdb\x4f\x24\x49\x25\x20\x14\x84\x50\ \xcd\xcd\x16\x8d\xfe\x4c\x04\x54\x82\x44\x21\x11\x55\x22\x92\x3a\ \xa0\x47\x32\x37\xbe\x73\xc3\x6b\x88\xdb\x72\x03\x12\x81\xc8\x88\ \xf8\x85\xcf\x80\x0e\x44\x36\x6d\xda\x68\xe8\xf6\xcb\xe7\x1b\xce\ \x1b\x73\xf9\x99\xbf\xae\xc9\xb0\x02\x40\x59\x65\x0d\xbe\x5e\x72\ \xb8\xf7\x9c\xef\x7e\xbe\xfd\xca\x4b\xcf\xff\x06\x4c\x7a\xb3\xd6\ \x6b\xaf\x91\xcd\xbe\xf5\x12\x48\x1b\x05\x10\xb4\x2e\x0e\xe4\x54\ \x51\xa4\xd5\x84\x0b\xcf\x6c\x5f\x3d\xe3\x92\xeb\xd7\x81\x1d\x51\ \x50\x89\xa0\xe4\x2c\x1e\xfd\xd0\xa4\x0a\xbe\x9e\x17\x16\x80\xba\ \xb2\xd2\x82\xba\xd8\x3e\x23\xcd\x95\x75\x61\xb2\x3a\x06\x34\x36\ \x0d\xb9\xb4\x72\x63\xb2\x8a\x0a\x87\x1b\x65\xd5\xce\x40\x62\x45\ \xaa\xd6\x07\x1a\x9b\xd5\x88\xf8\x68\x0b\xe2\xa2\xcc\x88\xb7\x5b\ \x11\x67\xb7\x20\x21\x26\x02\xf1\xf6\x08\x24\xc6\x44\x22\x3e\x26\ \x12\x91\xd6\xf0\x06\xf0\x63\x21\x06\x28\xbd\x31\x6c\x60\x6f\xe0\ \xba\x4b\xe0\xf5\xf9\xb0\x7b\xff\x11\xfc\xb1\x6d\x37\x16\x2c\x5a\ \x09\x7b\x54\x24\x26\x8c\x1e\x8a\x09\x63\x86\xc3\x6a\x31\x83\x10\ \x82\x73\xc6\x8d\x06\xa5\x14\xbb\xf6\x1e\x40\x64\x64\x04\xd2\xd3\ \xba\xe0\x9b\x8f\xde\xc1\xd3\x2f\xbe\x8a\x0f\x3e\xfb\x12\x7d\x7b\ \xf7\x42\x5e\x7e\x5e\x09\x98\x42\xfb\x78\xab\xb0\x44\x0f\x9c\x00\ \x80\x94\x17\xe7\xe4\xc5\xdb\xad\x1d\xcb\x2a\x99\x5d\x73\xd3\xae\ \x3c\xf3\x35\x17\x5c\x39\x66\xee\xdc\xb9\x9b\x10\x94\x44\x02\x52\ \xc8\x71\x4a\xad\x72\xb2\x49\xef\x07\x6f\x04\x60\x1a\x3e\x7c\x78\ \x52\x51\xb9\x37\x46\xd4\x3d\x77\x4a\x34\xd7\x6c\xd8\xb0\xa1\x14\ \x41\x57\x5a\x19\x5c\x02\x11\xee\x7b\xf1\x93\x8d\xd1\xb2\x2c\x0d\ \x15\x6d\x0f\x7e\xbf\x02\xb7\xa7\xe9\x54\xd8\xb6\x48\x33\x6e\xb8\ \xa0\x8f\xe3\x9b\x4f\xdf\x58\xf7\xf3\x4f\x3f\xec\x47\xf0\x24\xc3\ \x0a\x30\x75\x12\x01\x4f\xe6\x48\xea\xeb\xc7\x1d\x25\x47\x6b\xfe\ \x76\xc7\x4d\xfb\xc0\x16\x2d\xf7\x7c\xd1\xa7\x9d\xd1\x13\x97\x3c\ \xb9\x01\x9c\x1f\xc7\xab\x8f\xf9\xe1\xe2\xb0\xce\x26\x11\x52\xa5\ \x5e\x9a\x0d\x78\x62\x41\x50\x65\x01\x30\x7c\xf3\xf5\xe7\x7b\xd2\ \xba\xa6\xc7\x0c\xe9\xdd\xe3\x8c\x2d\x7b\x0b\x8d\x00\x70\x24\xab\ \x4c\xde\x1c\x63\x1d\xfc\xe2\xcb\x6f\xd6\x3e\xf4\xf7\xbf\x6d\x01\ \x60\x53\xa9\x2a\x85\xda\x00\x9a\x72\xe3\xfd\x0b\x49\x20\x68\x9d\ \x0d\xe4\x54\x90\xc9\x28\xe3\xd6\x8b\x7b\xd7\xde\x7b\xe7\xb5\x4b\ \x7c\x3e\x1f\x3f\x0e\x99\x03\x88\xde\xfe\xd1\x24\xe9\x01\xc4\x07\ \xa0\x66\xe3\xa6\x55\xbb\xaf\x1b\x35\x73\x7c\x38\x00\x61\x33\x2f\ \x54\xef\xaf\x77\x6d\x15\xef\x0d\x97\x3f\x4a\xbc\xd6\xd4\x79\x50\ \x5d\xe3\xc4\x51\xaa\x86\x02\x8d\x70\x35\x1b\x25\x24\xd8\x23\x10\ \x1f\x13\x81\xf8\x98\x48\x24\xc4\x44\x22\x31\xd6\x86\x84\xd8\x28\ \x24\xc4\xd8\x90\x14\x17\x8d\x18\x7b\x24\xa4\x63\x10\x5d\x4c\x46\ \x23\x86\x0c\xe8\x8d\x21\x03\x7a\x03\x00\x7c\x3e\x3f\x76\xed\x3b\ \x84\x6f\x7f\xfc\x15\x56\x8b\x05\xed\x92\xe2\x31\x72\xc8\x40\x58\ \x2d\x16\x0c\xec\xc7\xee\xa9\xa9\xad\x43\x94\x2d\x12\x4f\x3f\xf2\ \x00\xfa\xf5\xe9\x85\x7d\x07\x0e\x63\xd9\xca\x0f\x37\x82\x6d\x22\ \x2d\x4f\xca\x1f\x86\x84\xac\xb0\x21\xea\x2b\x68\x87\x20\x7d\xf3\ \xe5\x47\x5b\x2f\xb8\xf6\xd1\x41\x3f\xad\x3c\x60\x01\x80\xda\x3a\ \x17\xcc\x91\xb1\x9d\xa0\xc5\x2b\xe0\x18\x8e\x28\x6d\x0b\xd4\xc0\ \x71\xbe\x26\x00\x96\xeb\x6e\xb8\x75\xcc\xef\xdb\x73\x6d\xdc\xfb\ \xc5\x6c\x32\xc0\x5b\x57\x5e\x8e\xd0\x03\x97\x0c\x84\x10\x55\x1f\ \x07\xe2\x74\xb6\x9c\x5b\x8c\x8f\x89\xc4\xb4\x71\x5d\x9d\xb2\x52\ \x59\xfa\xf7\x3b\xaf\x5a\x93\x9f\x9f\x5f\x0c\x76\x42\x61\x31\xd8\ \x66\xce\xa3\xbc\x8d\x60\xaa\x1d\x95\x80\xa8\x7a\x0f\x1d\x89\x25\ \x36\xac\x01\xd3\x3d\x8b\x47\x0e\x37\x05\x20\xaa\xd6\x2f\x27\x98\ \xa4\x53\x8b\xe0\x89\x93\xdc\x00\xab\x2d\xd1\x26\xe3\x32\x44\x10\ \xe1\x9b\x85\x28\xe1\x05\x24\x91\xe7\x9e\x79\x6c\xc3\xdb\xef\x7f\ \x6e\x2f\xa9\x88\xee\x9e\x9d\x5f\x29\x01\xc0\xba\x6d\x59\x96\x4b\ \x26\xf5\x1e\x73\xc5\x8c\xab\xbc\xdf\x7d\x3b\xa7\x82\xaa\xec\x4c\ \xf4\x90\xda\x1b\x14\xa7\xfe\x82\xd9\x78\xf5\x71\x46\x6d\x90\x64\ \x59\xc2\xed\x97\xf7\x77\xfe\xf3\xc1\xd9\xbf\xe5\xe4\xe4\xe4\x82\ \xcd\xdd\x72\xb0\x79\x58\x0b\x9d\xfd\xa3\x39\x8c\x66\x38\x00\x71\ \x14\x66\x6d\xfb\xcd\xa0\xd4\x8c\xb7\x1a\x65\xf8\x55\x0a\xbf\x4a\ \x85\xf9\x27\xb8\xad\x42\x7f\x0d\xa6\xfa\xa0\xe1\xee\xd1\x81\x49\ \xd8\xb4\x20\x61\xee\x75\x7b\x7c\xc8\x29\xaa\x44\x76\x61\x59\xa8\ \x04\x23\x00\x8d\x24\x01\xf1\xd1\x11\x48\x88\x8b\x46\x42\x2c\x03\ \x95\xc4\xb8\x68\x24\xc6\xd9\x91\x14\x6f\x47\x52\x7c\x0c\x12\xe3\ \xec\x30\x35\x33\x05\x8a\xd1\x68\xc0\x90\x81\x7d\x30\x64\x60\x1f\ \x00\x80\xdf\xef\xc7\xe1\xcc\x6c\x44\x58\x2c\x88\x8f\x8b\x85\x2d\ \x32\x02\x51\xb6\xc8\xc0\xfd\x57\x5c\x34\x1d\x1f\xce\xf9\x45\x55\ \x6b\x32\xd6\x83\x6d\x0e\x4d\x9e\xa1\xd0\x42\xd2\xab\x1e\xbc\x00\ \x3c\xeb\xd7\xaf\x2f\xbe\xf3\x7e\x73\xad\x4a\x55\x0b\xbf\xb1\xb4\ \xca\x17\x3b\x60\xc0\x80\xc4\x5d\xbb\x76\x95\x40\x38\xd6\x15\x2d\ \x4b\x95\xd1\x96\x48\x2f\x7d\x58\x00\x58\x93\x52\xd2\x7a\xe5\xae\ \xd8\x16\xb8\x69\x48\xdf\x14\x65\xc9\xc2\x1f\x76\x23\x78\x98\x96\ \x1f\xda\xb9\x20\xf5\xe3\x14\x9a\xd1\x28\x01\xba\x76\x4a\xc0\x19\ \xbd\x92\xdc\xed\x62\x8c\xee\x8a\x92\x9c\xd2\x67\xff\x71\xe3\xd6\ \xbc\xbc\xbc\x4a\x30\xb0\x28\x07\x5b\x84\x25\x08\x4a\x1f\x7e\x04\ \x0f\x94\x52\x01\x76\xee\x83\xd8\xb6\x2c\xcb\x3e\x04\x4f\x38\xac\ \x46\x30\x2e\xa3\x31\xd7\x49\x51\x7d\xc9\x8f\xf5\xad\x41\x50\x8a\ \xe1\xea\xac\xc0\xca\x0b\x13\xf7\x12\x8e\xf4\xa0\x25\xba\x34\x07\ \x22\xe5\xef\xba\xfd\x86\xe5\x5f\x7c\xfb\xb3\xed\xcb\x45\xce\x0e\ \x55\x35\x4c\x6a\xfb\x7e\xe9\xde\xc8\x3b\xae\xbc\x79\xc2\x9e\x5d\ \x3b\x37\x50\xaa\x4a\xba\xf3\x56\x1a\xe4\xe6\xc2\xc4\xa8\x34\x8b\ \xda\xea\xa4\xe5\x63\xdd\x9a\x3e\x9d\x2c\x92\x08\xc1\xec\xcb\x07\ \xba\x5f\x7e\xf6\xc1\xb5\x07\xf6\xef\xcf\x40\xf0\x78\xe6\x72\x30\ \x66\x84\x33\x31\xcd\x96\x3e\x00\x01\x40\x34\x4e\x57\x01\x50\xa3\ \x3a\xf3\x76\x16\x1d\xde\xe0\x7e\xf8\xfa\x59\x16\x6e\xd8\xa6\xa0\ \x50\x34\x30\x51\x54\x0a\x45\x55\xe1\x57\x55\xf6\x59\x61\x9f\xfd\ \x8a\x0a\xbf\xa2\xc0\xaf\xa8\xf0\x29\x0a\xfb\xec\x57\xe0\xf3\xb3\ \xcf\x3e\xbf\x02\xbf\xdf\x0f\xaf\x5f\x81\xcf\xef\x87\xcf\xe7\x87\ \xd7\xe7\x17\x3e\xfb\xe0\xf5\xf9\xe0\xf3\xf9\xe0\xf1\xfa\xe1\xf5\ \x79\xd9\xd5\xeb\x85\xd7\xeb\x83\xc7\xeb\x83\xd7\xe7\x01\x4b\xff\ \x14\x0a\x38\x8a\x5f\x41\x51\x79\x35\x0a\x4b\x2b\xc3\xda\x64\x38\ \xe0\xd8\xa3\x22\x18\xb0\xc4\xc7\xa0\x5d\x42\x0c\x92\xe2\x63\x90\ \x14\x1f\x8b\x76\x89\x71\x68\x97\x10\x87\x76\x89\x71\x88\x8e\xb2\ \xd5\x1f\x28\x83\x01\xbd\xbb\x77\x6b\x74\x30\x7f\x5f\xb3\x2e\x1f\ \xaa\xb7\x10\x6c\x43\x50\x4e\x80\xaa\x48\xf4\xa0\xe1\x87\x46\xb9\ \x7d\xae\xea\x72\xb3\x51\x4a\x70\x7b\x98\xc4\xb8\x7e\x47\x6e\xf4\ \x4d\xb7\xdc\x71\xe6\xdd\x77\xcd\xce\x40\xf0\x68\x57\x37\x34\x8e\ \xf0\x4f\xa6\xc6\x12\xd5\x57\xdc\xeb\xc7\x6a\xb7\xdb\xa3\xeb\xdc\ \x88\x17\xb9\xbe\x7e\xdd\x62\x6a\xdf\x78\x7c\x5e\x06\x82\x6a\x21\ \x05\x80\x99\x10\x52\x2f\x0e\xe4\xea\xf3\xfb\xfb\xa2\xac\x92\x8f\ \x48\x44\x25\x84\x50\xa2\xc5\xde\x81\x2a\x8a\xaa\xf8\x15\xaa\xfa\ \x15\xa8\x7e\xdf\xfe\xbd\xdb\x8b\x3f\x7a\xe5\x85\xec\x83\x07\x0f\ \x72\x11\xbf\x0e\x6c\xd3\xe7\xe7\xa5\x97\x83\x81\x81\x43\x6b\x93\ \xab\xaf\x02\x6a\x25\x36\xff\x82\x6d\xcb\x06\x83\x4f\x7b\xae\x48\ \xbb\xea\xb9\x3f\x3d\x89\x4e\x14\xa2\x1b\xae\x0b\x41\xb5\x83\x01\ \x21\x6a\x30\x3d\x97\x1f\xf6\xe7\xd6\x1b\xd5\x81\xe0\x3c\x09\x71\ \x71\x56\x55\xd5\xf0\x7f\xb7\x5e\xb3\xf8\xbd\x4f\xbf\xbf\xf8\x3f\ \xdf\x6e\x8f\xe3\x89\x17\x3f\x98\xb7\xd5\xf6\xf4\x0b\x6f\x8e\xac\ \x70\xf8\x48\x18\x89\xe7\xb8\x4a\x20\x6d\x56\x85\xd5\xca\x38\x90\ \x93\x45\x1d\x92\xec\xb8\xea\xbc\x9e\x75\x6f\xbc\xf4\xe4\xc6\xcd\ \x9b\x37\x1d\x02\x50\x08\x36\xf7\xb8\xd4\xcc\xe7\x5f\xc0\x78\xde\ \xdc\xfd\x41\x9f\x0b\x4b\x01\x9b\x94\x65\x6b\xd7\xaf\x3c\xf8\x7f\ \xd7\xcf\x1a\xc8\xbf\x90\x08\x81\x6c\x20\x30\x0b\x9e\x52\x1c\x5c\ \xf4\xa5\xb5\xdf\x89\xdf\x37\x46\x8a\xa2\xc2\xe7\x57\xe0\xe5\x00\ \xa4\x5d\xbd\x7e\x3f\xbc\x5e\x9f\xf6\x77\x1f\xbc\x1c\x7c\x7c\xbe\ \x00\x00\x79\x34\x30\xf2\xfa\xbc\xf0\x78\xbc\x70\xd4\x3a\x51\x56\ \x51\x85\xed\x7b\x0e\xc2\xe3\x75\xc3\xe3\xf1\x42\x92\x80\x98\xe8\ \x28\xc4\xda\xa3\x10\x6b\x8f\x66\xd7\x18\x3b\xe2\x62\xa2\xb5\x6b\ \x0c\xcc\x3a\xf7\xdf\x6a\x47\x2d\xd6\xac\x5a\xba\x16\x6c\x43\xe0\ \x71\x08\xc7\x93\xf4\x1b\x08\x8f\x24\x76\x2e\x5f\xf2\xd3\x8e\xa1\ \x7d\xa7\xa6\xaf\xd9\x92\x21\x03\xc0\x91\xac\x62\x5c\x39\x65\xdc\ \x08\x59\x96\xe7\x2b\x8a\x12\x81\xa0\xa1\x95\xab\x49\xda\xe6\x4c\ \xd7\x51\x98\xec\xa3\xdc\xed\x36\xe2\xf9\x97\xde\x98\xbe\x68\xed\ \xd1\x38\x31\xfe\x43\xa6\xee\x2a\xbf\xdf\xcf\x23\x6a\xdd\x08\x8e\ \x97\xaa\xb7\x09\x44\x18\x3c\x9e\x1b\xaf\xba\x64\x27\x82\x71\x1b\ \xdc\xfb\x44\x45\x28\xb7\x2f\x1e\x24\xc5\xb9\x7e\x0e\x20\x95\x08\ \xba\xee\xba\x10\x54\x23\x05\x24\x09\x86\x5d\xa1\xfa\x71\x83\x6c\ \xf0\x69\xcf\x96\x82\x71\x81\x0e\xe1\xf9\xa6\x22\xd1\x45\x26\x42\ \xf4\xa2\xe2\x1e\x64\x82\x0a\xab\x41\x1b\x88\xbe\x6e\xfe\xa5\xa2\ \xf5\x55\x1f\x5c\x69\x00\x60\xa8\xaa\xaa\x32\x3c\xfe\xf0\x9d\x4b\ \xfe\xf1\xd4\x5b\xd3\xde\xf9\x76\x4b\x14\x00\x78\xbd\x2a\x3e\xfa\ \x61\x4f\xd4\xc4\x11\xe9\x6a\x03\x36\x90\xfa\x31\x48\xfa\x77\x6b\ \x36\xb5\x51\x00\x41\xdb\xb5\x81\x4c\x1b\xdf\xc3\x6f\x37\x56\x96\ \x5e\x37\xe3\xfc\x0d\x2e\x97\x2b\x1f\x40\x81\x56\x8a\x11\x5e\xfa\ \x68\xd1\x20\xeb\x01\x84\x82\x4d\xa0\xca\x83\xfb\xd6\xff\x96\x99\ \x9b\x37\xb0\x6b\xe7\x8e\x2d\x7e\xe9\x13\x15\x70\xc8\x49\x96\x25\ \xc8\xb2\xd4\x64\xde\xab\x93\x49\xcb\xd7\x6e\xa3\xee\xca\xc3\xbf\ \x83\x6d\x28\x3c\x12\xfa\xb8\x50\x03\xc7\xba\x06\x00\xe4\xbb\xb9\ \xdf\x1e\xfe\x78\xce\xac\xda\x55\x9b\x0e\xdb\xf9\x33\xbf\xae\x3a\ \x9c\xfc\xfc\xbf\x5f\x9d\xfc\xe0\xfd\x77\x73\x4f\x19\x1e\x9b\xa0\ \x00\x50\x19\x57\xde\x56\x59\xba\x10\xf0\x10\xd3\x89\x58\x00\x44\ \xc6\xc7\xc7\xc7\xda\x13\x52\x87\x1f\xcd\x5e\x13\xb0\xeb\xf4\xeb\ \xd1\x81\xee\xd8\xba\xee\x20\xd8\x26\xcf\xfd\xd9\x25\x30\x4f\x28\ \x45\xef\xf9\xa3\x65\xa7\xad\x45\x28\x00\x88\x99\x48\xc3\x9d\x42\ \x28\xaa\x8d\x1c\xa8\x1f\x7c\x05\xe8\xd4\x84\x3c\xa9\xa1\x1a\x62\ \x03\x21\x8a\xd6\xb6\x03\x8c\x03\xe4\xe7\x74\x88\x59\x50\xc3\x91\ \x5e\x12\xe1\x52\x0e\x07\x58\xa1\xdd\xe6\xc7\x65\xe8\xda\xd3\x83\ \x48\x88\x2a\xeb\xd0\xc1\x83\xc6\x39\x9f\xbc\xba\xf6\x8a\x4b\x66\ \x4f\xfc\x76\xe1\x6e\x0b\x00\x94\x56\x38\x30\x6f\xf1\xb6\xff\x6f\ \xef\xba\xe3\xab\xa8\xd2\xf6\x33\x77\x6e\x7a\x72\xd3\x0b\x09\x49\ \x48\x08\x4d\x71\xc5\x86\x8a\xae\x0d\xd0\x45\xf4\xb3\xad\x2c\xba\ \x2a\x8a\x20\xbb\xb6\x55\x3f\xf6\xb3\x21\x28\x16\x70\x15\x2c\x28\ \x88\xae\x20\x8b\xb8\xa2\x60\x01\x65\xe9\x25\x01\x42\x08\x04\x90\ \xde\x42\x0d\x90\xe4\x96\xe4\xf6\x3a\xf3\xfd\x31\x73\xee\x9c\x39\ \x77\x6e\x48\x2e\x09\x49\x5c\xdf\xdf\x6f\x98\x70\xef\xdc\x99\x39\ \x33\xe7\x9c\xe7\xbc\xed\x79\x75\x74\x6f\x12\x9b\xf0\x81\x44\xce\ \xc6\xdb\x31\xbb\xab\x64\xc2\xea\x58\x51\x58\x19\xa9\x89\x78\x60\ \x68\x1f\xe7\xfc\xb9\x33\xf6\xfe\xb4\xf8\xc7\xfd\x90\x00\xe3\xb4\ \xbc\x11\x9f\x1d\x6d\x3e\x6d\x91\xef\x83\x88\x16\x80\xf8\x00\x58\ \x05\xfb\x91\xf2\xd2\x8a\x8a\xa7\x8a\x0b\xba\x6a\x72\xbb\xb7\x67\ \xd2\x60\x7b\x8b\xcf\xe7\x83\xcf\xef\x47\x7c\x9c\x92\x4f\xb6\x76\ \x7d\xb9\x49\xf4\xdb\x8f\x42\x9a\x50\xfc\x6d\x30\x39\xd3\x0e\x4f\ \x5a\x03\x71\x78\xbd\x5e\xbb\xe9\xf4\xe1\xea\xdc\xec\xe4\x4b\x6a\ \xce\x58\x00\x00\x5b\x77\x1f\x8f\xba\xf5\xaf\x03\x07\x47\x47\x47\ \xff\xec\xf5\x7a\x89\xb3\x96\x98\x75\x3a\x8b\x16\xc2\x9a\xae\xe2\ \x01\x24\xbe\xf3\xde\xf4\xe1\xf3\x97\xee\xc8\xa6\xe3\xee\x6f\x19\ \x50\x60\x19\x79\xff\xe3\x55\x50\x03\x48\x14\x80\x00\xb1\xd8\xd1\ \xc7\xeb\x78\xce\x0f\xc9\xf4\xa4\xa5\xc6\x93\x89\x3c\x58\x3a\x17\ \x4a\xba\x38\x39\x3f\xf9\x3f\xad\xb9\x10\xea\x93\xe0\x44\x2f\xe1\ \xb4\x3a\x47\x40\x06\x2f\x95\x19\x12\xa1\x14\x12\xe1\x84\x7c\x47\ \x3b\xbe\x39\xe6\x6f\xc9\xe8\x1c\x9a\x07\x12\xfe\xa4\xea\x12\xbe\ \x04\x44\x58\x8a\x17\x3d\x80\xa8\x15\xcb\x97\x1e\x2c\x2a\x2e\x49\ \xbf\xa1\xff\x55\x97\xac\xa9\x38\x1c\x25\xfd\x3e\xe4\x7c\x4d\x8e\ \xf2\x5f\x55\x3d\x10\x31\xb2\x7a\x20\x6d\x21\x17\xf5\xcc\x15\xaf\ \xed\x97\xe3\x31\xd7\x1e\x31\x3d\xf5\xd8\xf0\x6d\x0d\x0d\x0d\xc4\ \x47\x57\x2b\x6f\x75\x50\xc0\x23\x22\xc7\x39\x2d\x2a\x00\xa1\xfc\ \x20\x4e\x88\x81\xda\x8d\x15\xa5\x47\x1f\x19\x76\x4f\x93\x86\xff\ \xb6\x62\xeb\x6d\x2f\xb1\xd9\x1d\xa8\xad\x37\xe1\x4c\xbd\x11\xb5\ \x75\x46\xd4\xd5\x9b\x10\x1b\x1b\x2d\x99\xb2\x52\x0c\x48\x4b\x49\ \x46\x76\x66\x06\xb2\x64\xaa\x17\x7f\x20\x00\xa3\xd1\x8c\x95\xab\ \x96\x95\x43\x7a\x31\x84\x22\xa2\xad\x84\x1e\xe0\xc1\x55\xf1\xf8\ \x97\xc7\xae\xf9\xe8\x9f\x0b\x8b\xa7\xce\x29\x0b\x6a\x21\xdf\xad\ \xdc\x9d\x33\xf5\x83\xe9\x77\x3d\xf9\xd7\x51\xb3\xa1\xee\x2c\x01\ \x00\x22\xc7\x71\x42\x47\xd4\x42\x18\xed\x83\x98\xae\xe2\x00\x24\ \x14\x16\x16\x66\xf2\xb1\x19\x57\x1c\xaf\xd9\x1d\xec\x3d\x97\x5e\ \x98\x1f\xd8\xb2\x71\xe5\x0e\xb7\xdb\x4d\x22\x93\xc8\xaa\x0a\x08\ \x0e\x0c\x46\x0b\x90\x0a\x2c\x99\xa0\x5e\x8d\xd1\x5a\x08\xd9\x88\ \xa9\xc8\x43\x6d\x04\x54\xe8\x9a\xf3\x80\x92\xa8\xa9\x7a\xa6\xec\ \xea\x94\x5a\x9d\xb3\x74\x33\xcd\x0d\x72\x10\xa1\x02\x8b\xa0\x86\ \x10\xe4\xf2\x6a\xa1\x06\x22\xdf\x57\x10\x44\xc8\x0f\x89\x4f\x47\ \x05\x20\x00\xa2\x3f\xfd\xe4\xa3\xaa\x89\x6f\x76\x4b\xed\x5d\x94\ \xd1\x7d\xcf\xe1\x5a\x8d\x08\xbf\xf0\xd7\x6b\x49\xed\x10\xe6\xfe\ \x5a\xfc\x9b\xf3\x25\xed\x99\x07\x12\x1b\x13\x85\x9b\xaf\xe9\x19\ \xe8\x96\x1d\xed\x2a\x2f\x5d\x7e\xea\x89\x47\x3f\x3f\xe4\xf5\x7a\ \x2d\x90\xfa\xb7\x11\x12\x68\xd4\x43\xf1\xd7\x91\x05\x65\x8b\xc3\ \x76\x59\xd1\x2a\xf1\x27\xca\x27\xae\xaf\xdc\xb4\xec\xc7\x7d\x87\ \xab\x9f\xeb\x53\x52\xdc\xa6\xb5\x41\xce\x87\x08\xa2\x08\xb3\xc5\ \x8a\x5a\xa3\x19\xb5\xf5\x66\x79\x6f\xc2\x99\x3a\x13\x6a\xeb\x8d\ \x38\x53\x67\x84\xcd\x6e\x43\xd7\x2e\x59\xe8\x5d\xd2\x4d\xde\x8a\ \x71\xeb\xa0\xeb\x83\x49\x85\x44\xfc\x7e\x3f\xd6\xae\x2f\xc7\xe2\ \xa5\x2b\xb0\x7c\xf5\x1a\x8c\x79\x74\x8c\x60\x3a\xb9\x6d\x31\x24\ \xbb\x36\xe1\xb1\x69\x0b\x61\xa3\xb0\x5c\x90\x26\x4c\x9b\xd5\x6a\ \x6d\x38\xb2\xbf\x6a\x5f\xaf\xa2\xac\x2b\xf6\x1d\x3e\xa3\x03\x80\ \x5f\xf6\x9e\xd0\xdf\x79\xd3\x2d\x37\x26\x26\x26\xfe\x68\xb7\xdb\ \x43\x1c\x65\x90\x40\xa4\x43\x99\xb2\x34\xc2\x76\x69\x06\xd2\xe4\ \xd7\x27\xbd\xf7\xf0\x97\x8b\xb7\x66\xd1\xf6\xe6\xc1\x57\x16\x98\ \xef\xbb\x67\x74\x25\x94\x5a\x17\x4e\x28\x39\x20\x01\x02\x94\xf4\ \x6f\x74\x3a\x5d\x00\x92\xe6\x51\x0f\x09\x44\x2c\x50\x12\xa9\x08\ \xc8\x92\x8d\x06\x13\x1a\x5c\xe8\x1c\x0c\x4d\xf0\x10\xe5\x9a\xe8\ \xf4\xb5\x05\x89\x8d\x37\x06\x0a\x85\x0a\x29\xd2\x74\x36\x13\x96\ \xea\xd4\xd4\x73\xd2\xc9\xe7\x8a\x81\x0c\x24\x6c\x3d\x90\xe6\xf6\ \x48\x46\x13\x21\xa6\x52\xd6\x1f\x12\x05\x20\x7a\xfc\xcb\x63\xd7\ \xcf\xfc\x7c\x5e\xa2\xa9\xc1\xd1\xe5\x4c\xbd\x95\x39\x51\xd3\x77\ \x1e\x59\x1e\x08\x00\x35\x70\xaa\x0a\x71\xb5\xa0\x92\x63\xcb\xaf\ \xaa\xbe\x6e\xe8\x21\xe7\xd1\x07\x92\x98\x10\x8b\x8b\x7a\xe6\x8a\ \xbd\x0a\x53\xfc\x7a\xce\xeb\xf5\xb9\xad\xae\xaf\xbf\x9c\x7a\x64\ \xf3\xe6\x8a\x33\x50\xcc\xa2\x66\x28\x91\x7e\x34\x70\x90\x84\x41\ \x96\xb6\x3d\xa2\x79\x20\x1c\x80\xf8\x00\x58\x02\xd6\xfd\x2b\xa6\ \xcf\xfe\xfc\xfe\x69\x6f\xbe\x99\x03\xb4\x9d\xc9\xea\x5c\xdf\xbb\ \xc7\xeb\x43\xbd\xd9\x8a\x7a\x73\x23\xea\x4c\x8d\xa8\x33\x5a\x50\ \x67\x6a\x40\xad\xd1\x82\x3a\x19\x30\xea\x4d\x66\xf8\xfd\x7e\x08\ \x72\xe8\x6f\x97\xcc\x54\xf4\x2c\xce\x47\xef\xee\x05\x18\x78\xed\ \xe5\xe8\xd5\xbd\x10\xf9\xb9\xd9\x08\xd7\x09\x7d\x3e\x1f\xca\x36\ \x6d\xc1\xcf\xcb\x57\x63\xe9\xaa\xd5\x68\x68\x68\x84\x28\x0a\xb8\ \x63\xc8\x60\xcc\xfb\x76\xc1\x26\xd1\xdb\xb0\x07\xd2\x0b\x6a\x0b\ \xf3\x95\x56\x3e\x08\x89\xc4\x71\x40\xea\x34\x8d\x6f\x4c\x1c\xb7\ \x61\xee\xfc\xff\xf4\x7c\xeb\x60\x4d\x2a\xf9\xdd\xdc\x1f\x2b\xb3\ \x67\xfd\x6b\xfe\x5f\x87\xdd\x3d\x74\x32\x94\x15\x36\x6d\x3f\xef\ \x88\xfe\x10\x36\x64\x37\x01\x80\xe1\xc1\x87\x1e\xbe\xd8\xec\xd4\ \x5f\x7e\xa6\xce\x12\x3c\x70\xe0\x80\x5e\xbe\xc5\x0b\xbf\xac\x80\ \x52\xae\x95\xf8\x33\x04\xc8\x21\xbc\x1c\xc7\x85\xe4\x45\x30\x3e\ \x10\x0b\x94\x30\x5c\xf2\x7c\xc8\x44\x4e\x27\xdb\xd1\x7f\x8b\x50\ \x83\x07\x10\x2e\xd4\x89\xc9\x11\xc8\xed\x92\x95\x38\x6a\xd4\xa8\ \xbe\x06\x83\x21\xc7\x60\x30\x34\x26\x24\x24\x38\xe2\xe2\xe2\x3c\ \x7a\xbd\x3e\xa0\xd3\xe9\x08\xad\x50\x93\xc2\x71\x9c\xc8\x71\x1c\ \x74\x3a\x9d\x28\x08\x02\xe7\xf3\xf9\xf8\x71\xe3\xc6\x1d\x35\x1a\ \x8d\xb1\x00\xa2\x20\x32\x79\x19\x2d\x5f\xd3\xd0\xb3\x21\x9b\xc8\ \x19\x24\x9f\xfc\xdb\x13\x8f\xae\xfe\x74\xf6\x37\xb7\x4e\x9f\xbf\ \x35\xd5\xe9\xf2\xd2\xbf\xa0\xfd\x35\x8c\x44\x98\x07\x22\xdd\x12\ \x0d\x66\xb4\x79\x8d\xdc\x67\x6b\x0a\x7b\xef\x1c\xb3\x57\x0e\x8c\ \x20\x0a\x2b\x31\x21\x16\x99\x69\x49\x21\x9f\x27\xc4\xc7\xc0\x90\ \x18\x27\x1a\xe2\xf5\x62\x52\x62\x8c\x98\x9c\x18\x23\xc6\xc6\xe8\ \x45\xaf\xc7\x1d\xf0\xba\x6d\xde\x06\x53\xad\x73\x43\xe9\xbc\xba\ \xd9\x53\xd6\x1b\xe5\xf2\x01\x4e\xc8\x0b\x49\x48\xfd\xb9\x01\x52\ \x9f\x6e\xa0\x36\x02\x1c\xac\xaf\x2f\x62\xf0\x00\x34\x00\x44\x9e\ \xa8\xfc\xf2\x0d\x9d\x5c\xb7\xe2\x5f\x9f\x95\xdf\x33\xec\x95\x01\ \x97\x49\x01\x59\xe7\x1b\x44\xac\x76\x37\xea\x2d\x36\x18\x2d\x36\ \x69\x6f\xb6\xa2\xce\x44\x81\x85\xd9\x82\x46\xab\x83\xca\x09\x51\ \x87\xef\x46\xf1\x3a\x14\x17\xe4\xe0\xca\x7e\xbd\xd1\xb3\x38\x0f\ \x3d\x8b\xba\xa2\x57\x71\x01\x92\x12\xe3\xb5\x2f\x48\x89\xcf\xe7\ \x47\xd9\xa6\x4a\xfc\xbc\x62\x2d\x96\xaf\x29\x45\xa3\xd5\x1a\xcc\ \xa6\x07\x44\xe8\x74\x1c\xba\xe4\x15\x07\x16\x7e\x35\xed\x33\x48\ \x61\x71\x64\xe2\x6a\x4b\xa1\x1d\xe9\xaa\xc8\x20\x9f\xcf\xd7\x50\ \x5e\xb6\x6c\x7b\xff\x7e\x25\xd7\x6d\xda\x26\x47\x64\x1d\xab\xe5\ \x2b\xf7\x64\x5e\x39\xf5\x83\xe9\x77\x3f\xf7\xb7\xc7\xe7\x41\xbb\ \x64\xa5\xd8\x11\x42\x7b\x99\xa8\x2b\x52\x83\x23\x1e\x80\xa1\x6f\ \xdf\xbe\x79\x77\x0c\x7b\xf4\xe9\x89\xd3\x7e\x4e\x11\xe4\xdb\xe4\ \x79\x1d\x2e\xed\x9d\x6e\x7c\x70\xc2\x5c\x02\xde\xc4\xae\xeb\x92\ \xcf\x13\x9c\xf8\x45\xa8\xe3\xf4\x65\x00\xa1\xfd\x1a\x76\xa8\x01\ \x84\xce\x8f\x08\xb7\xd1\xc0\x1e\xae\x87\x8b\x6c\x8e\xc0\xfc\x65\ \xfb\xf3\x90\x72\xc5\x03\x16\x00\x16\x72\x55\xe5\x70\x44\x30\xd9\ \x63\xf0\xb5\x7d\xed\x7d\xfa\xf4\x79\xae\xac\xac\x4c\x04\x10\x15\ \x5a\xff\x44\xa4\x4f\xde\xb4\x47\x5d\x09\xda\x20\x27\xf0\x21\x0c\ \x80\xb8\xdd\x6e\xfd\xf3\xcf\x8d\x59\x35\x69\xea\x3f\x6f\x99\xfa\ \x45\x59\x12\x79\x37\x32\x08\xd2\xcf\x90\xa3\xce\x1f\x69\x3d\x10\ \x62\xae\x23\xb5\xc0\x63\x20\xbd\x2f\x40\x9d\x10\xd9\x1a\x42\x47\ \xbe\xd1\x6d\xd0\x28\xde\x15\x59\x1e\xc8\xf5\xfd\x8b\xc5\x80\x65\ \xaf\xcd\x64\x36\x7b\x74\x9c\xce\xcf\x49\xc1\x15\x01\x9b\xb1\xd1\ \x5b\xbd\xaf\xce\x63\x36\x9b\xbd\x46\xa3\xd1\x63\x34\x1a\x3d\x76\ \xbb\x9d\x68\xbf\xc4\x2f\x47\x02\x3b\x9c\x50\xfa\x2f\x09\xee\xb0\ \x42\xd1\x36\x08\x4d\x3b\x01\x0e\xba\x7f\x9f\x13\x78\x00\xda\x1a\ \x08\x20\x3d\x2c\x0f\x00\xa3\xe0\x3c\x59\x3a\x7d\xd6\x27\x07\xae\ \xba\x74\x7a\x4f\x5e\x9e\xe5\x5b\xc3\xef\x11\x08\x08\x68\xb0\xbb\ \x61\x6a\x74\xc0\x6c\x75\xc2\xd4\x60\x87\xb1\xd1\x81\x7a\xb3\x0d\ \xc6\x06\x3b\x8c\x66\x2b\x8c\x16\x1b\x3c\x5e\x5f\x48\x66\xba\x20\ \xa8\xa9\x51\xc8\xbb\x4e\x4b\x49\x44\x49\x41\x0e\x7a\x14\x76\x41\ \x8f\xa2\x2e\xe8\xd1\x2d\x0f\xdd\xf2\xb2\xc1\xf3\xcd\x4f\xc2\xf6\ \xfa\x7c\x28\xdb\xb4\x15\x4b\x56\x96\x62\xc5\xba\xf5\xb0\xd9\xec\ \xc1\xeb\x92\x2e\x45\x7a\xd3\xad\x83\x06\xe2\xeb\x6f\xe7\x2f\x15\ \x03\xae\x7d\x90\x10\xbf\x55\xa3\xaf\x58\xd1\x30\x2f\x10\x33\x96\ \x0d\xd2\x2a\xc3\xf0\xc1\x7b\xef\x6c\xf9\xf6\xc7\x15\x17\x6d\xfd\ \xe5\x48\x86\xd7\x27\x45\x78\x2e\x59\xbb\x23\xfe\xa9\x11\x03\x87\ \x3d\x3a\xea\xb1\xfd\x9f\xff\xf3\xd3\x8d\xd0\xa6\xcd\x68\x57\x73\ \x96\x3c\x61\x91\xd5\x25\x99\x20\xe2\x01\x18\x62\x62\x62\xd2\x26\ \xbd\x3b\x63\xfc\x1b\x33\x96\xe5\xd1\x35\xe0\xef\x1d\x7a\xa9\x7b\ \xd6\xcc\xf7\xd6\x41\x59\x65\x11\x42\x38\x52\xf3\xdb\x0f\x20\xa0\ \xd3\xe9\x84\x90\xcc\x6c\x45\xd3\x26\x3e\x0d\x7a\x63\x13\xfa\xd8\ \x7d\x53\xcf\x89\x9e\x70\x24\xae\x2b\x66\x75\xba\x79\xfb\xc1\x16\ \x3c\x99\xe6\x49\x49\x41\xba\xe0\x76\xbb\x0d\x90\x0b\x59\x89\x82\ \xc8\x69\xb4\x37\x94\xf2\x24\x8c\x68\x44\xfe\x11\x8d\x97\x8d\xcc\ \xe2\x4f\x9f\x3e\xad\x9b\xfe\xfe\xeb\xab\x47\x8d\x7e\x7e\xd0\xcc\ \xaf\x37\x24\x00\x00\x07\x8e\x68\x6b\x1a\x80\x15\xa1\x06\x22\x31\ \x28\xd3\xa6\x3f\xc2\x67\x4e\xbf\xb3\xd6\x10\xfa\x19\xb1\x5a\x27\ \xe9\xa7\x41\x6d\x84\x54\x63\x6c\x71\x9b\x44\x41\xfc\xe1\xfb\x05\ \x67\x0e\x1c\x38\x60\x86\x7a\x92\x27\x26\xd2\x00\xb3\x27\xe0\xc1\ \x02\x08\xd1\x40\x1c\xd4\x9e\x7c\x4e\x97\xa9\xa5\xb5\x8e\xe0\x02\ \xa8\x65\x37\xad\x16\x4d\x00\xa1\xb4\x10\x1b\x80\x93\xdb\xcb\xbf\ \x9d\xf9\x9f\xd5\xc3\xdf\xbd\x6d\xd0\xf5\x41\x78\x68\x0a\x28\xdc\ \x3e\x3f\x1a\xec\x1e\x58\x6c\x6e\x69\xb3\xbb\x60\xb1\xba\x60\xb6\ \x3a\x60\x6a\x74\xc2\xd4\xe8\x40\xa3\xcd\x29\x3b\x9e\xc2\x53\x98\ \xd0\xe0\x20\xca\x25\x63\x45\x51\x5a\xf9\xe7\x67\x67\xa0\xa4\x30\ \x1b\x25\xf9\x59\x28\x29\xcc\x41\x8f\x6e\x5d\x90\x96\x1c\x9a\x00\ \xd8\x1c\x71\x7b\xbc\x28\xab\xa8\xc2\xd2\x35\x1b\xb0\xaa\xb4\x1c\ \x76\xbb\x23\xa8\xc5\xd0\x7d\x89\xce\xb0\xe7\x75\x3a\x24\x24\x65\ \xb8\xeb\xab\xcb\xe6\x42\xd2\x3e\xda\x2a\x79\x50\x4b\x68\x33\x16\ \xf1\x83\x10\x53\x4c\xd2\xa4\xd7\x9e\xff\xcf\x33\xcf\x4f\xba\xeb\ \xed\x99\xcb\x82\x0f\xe4\xa3\x2f\x56\xa6\xbe\x31\x76\xc4\xd8\xad\ \x5b\x36\x3f\xb3\x7d\xfb\x76\xd6\xd6\x4e\x06\x20\xce\x37\x88\x68\ \xd4\x1d\x27\x11\x57\x09\x00\x0c\x00\x52\xe7\xcc\x5b\x38\xf6\xd3\ \xaf\x37\xf4\xb2\xd9\x9c\xc1\xdf\xf5\xbf\xb8\xc8\x2f\xd8\x8e\xed\ \x59\xb3\x7a\xf5\x61\x28\x39\x19\x84\x92\x9a\xf8\xa1\x02\x90\xc2\ \x78\xfd\xac\x0f\x44\xd6\x40\x58\x87\x39\xed\xf7\x08\x79\x06\xcd\ \x78\x2e\x21\x13\x0f\xa7\xe3\x84\x90\x5a\x19\x6d\x20\xa2\x10\xe0\ \xfc\x7e\x3f\x99\x54\x25\x06\x62\xba\xbd\xd2\x3d\xa9\xcc\x16\x68\ \x1e\x88\x00\xca\x82\x85\x35\x65\x05\xcb\x06\x6c\xae\xd8\x24\x94\ \xf4\xf8\x21\xe6\xce\x41\x03\xaf\xfb\x7e\xf9\xf6\x78\x4e\x17\x8c\ \x34\x23\x8c\x0c\x04\x8c\x10\x69\x1e\x88\x28\x31\x28\x13\xf6\x64\ \xa2\x65\xc6\x21\xc2\x1c\x86\xa6\x2e\x05\x35\x78\x90\x89\x9b\xb4\ \x85\xe6\x97\x93\x7e\x10\x51\x4d\x74\x51\xe0\x79\xde\x0c\x29\xb4\ \x96\x8e\x04\x24\x34\x3c\x4d\x01\x08\x89\xe0\x73\x51\x7b\x3a\x32\ \x90\xa6\xf3\x61\x81\xa3\xc5\xd1\x56\xe1\x24\x9c\x06\x02\x28\x5a\ \x88\x49\xf4\x98\xb6\xcc\xfc\x62\xfa\x96\xc1\xd7\x0d\xb8\xc2\x2b\ \x70\xb0\xba\x7c\xb0\x3a\xbd\x68\x74\x78\xd1\xe0\xf0\xa0\xc1\xee\ \x41\x83\xc3\x0d\xb3\xcd\x05\x8b\xd5\x0d\xb7\xd7\x1b\x26\x13\x5c\ \xfa\x5b\x10\x04\x09\x10\x82\x5a\x35\xbd\xa7\xff\x2b\x22\x21\x36\ \x06\xdd\xba\xa6\xa1\xa4\x6b\x06\x8a\xf3\x33\x50\x52\x90\x8d\xa2\ \xbc\x0c\x44\x47\x35\x75\xeb\x67\x17\xb7\xc7\x83\xd2\x8a\xed\x58\ \xba\x66\x23\xd6\x6e\xa8\x84\xc3\xa9\x90\x3e\xaa\xee\x45\x24\x4f\ \x5c\x75\x63\x78\xf0\x4f\xf7\x62\xde\xfc\xf9\x0b\x20\xfa\x0f\x43\ \x7a\xf9\xbe\xf3\x31\xf1\x86\x71\x72\x12\x3f\x88\x05\x40\x62\x55\ \x55\xd5\xf1\x45\xdf\xce\x5a\xf7\xf0\x1f\xef\x1d\x38\xeb\x9b\xb2\ \x58\x72\xf0\x5b\xd3\x7f\xca\x7d\xeb\xdd\x8f\x27\x3e\x34\xfc\x8e\ \xb1\x46\xa3\x91\xed\xed\x41\x87\x1a\x99\xd3\xdb\xba\x3d\x1a\xb9\ \x1e\x74\xb8\xae\x01\x40\xda\x87\x1f\x7f\x7a\x7f\xd9\xb6\x9a\x6b\ \x0e\x1e\x3d\x1d\x0c\x27\x2f\xcc\xcb\x10\x07\x5c\x94\x76\xfc\xb1\ \x91\x7f\x5e\x0b\xc5\x7f\xc1\x86\x25\xea\xe4\x36\x79\xf5\x7a\xbd\ \xa7\xdf\x05\x85\xa2\xdb\xed\x95\xa2\x8a\x38\x88\x69\xa9\x06\x0e\ \xca\x60\x65\x1d\xe2\xe7\x32\xc0\x68\x13\xa3\x57\xcf\xf3\xbe\x1b\ \xae\xea\xe5\x35\x59\xac\x9c\x28\x92\x79\x1c\xd2\x6d\x70\x91\x4f\ \x78\x1c\x38\xe2\x52\x16\x01\x0e\x7d\x7b\xe7\x73\xdf\x0a\x02\x19\ \x14\xfe\xfc\xbc\x0c\xdd\x90\xeb\xfb\x7a\xc9\x31\x99\xe9\x29\x1c\ \x94\x78\xff\x73\x01\x11\xe9\x8c\x6a\x5f\x04\x07\x20\xf0\xd5\x97\ \x73\x5c\x13\xdf\xbc\x30\xa6\xff\xc5\xdd\x06\xf0\x3c\x4f\x4c\xac\ \x21\xc9\x91\x22\x10\x51\xc4\x52\xf5\xc9\x86\x84\x19\x5f\xfc\x38\ \x86\xd7\xf1\x01\x1d\xaf\xf3\x73\x9c\x4e\x90\x7d\x41\xad\xd7\x4f\ \xa9\x77\x22\x33\x25\x83\xe3\x38\xe1\x77\xbd\x0b\x9c\x97\x5c\xd4\ \xe3\x0e\x28\x01\x0f\x0a\x75\xbe\x28\x72\x02\x93\xeb\xd3\x1c\x11\ \x45\x11\x7a\xbd\xde\x02\x29\xb1\xaf\x1e\xea\xbc\x0c\x2d\x00\xa1\ \x73\x93\xc2\x69\xcf\xa4\x3f\x93\xdf\xb3\xe6\xd8\x56\x1d\xd7\x61\ \x67\x61\xb9\xe3\x08\x90\x26\xa7\x9a\xea\x9d\x4b\x66\xce\x5b\xb4\ \xe2\xd2\xe3\x62\x11\xef\x74\x13\x80\x60\xcc\x49\x6c\xd9\xd0\x50\ \xc5\x9f\x2c\x41\x94\x2f\x44\x65\x9f\x93\x9e\x88\xa2\xdc\x54\x14\ \x77\x4d\x47\x51\x5e\x1a\xba\x77\xcd\x40\x4e\x86\xa1\xb5\xda\x0a\ \x97\x5b\x02\x8d\xe5\xeb\x36\x63\x6d\xf9\x56\xb8\x5c\xae\x50\x4d\ \x83\xe2\xe0\x12\xd9\xfb\x95\xbf\xeb\x77\x61\x1f\x58\xec\x42\x83\ \xb3\xb6\xea\x1b\x9c\x3f\xdf\x07\x2b\xf4\xea\x88\x98\xb1\x88\x6a\ \x1f\xb7\x70\xc1\xfc\xbd\xdd\x4b\x7a\x66\xde\xfc\xfb\x0b\x2f\x59\ \x56\xba\x33\x0a\x90\xb2\xe5\x27\xcf\x58\xda\x6b\xd6\x97\xdf\xbf\ \x3f\x65\xd2\xb8\x97\xd6\xad\x5b\x77\x08\xca\x04\x4e\x26\xd3\x60\ \x87\x6b\x2b\x6d\x84\x89\xb4\xa2\x4d\x22\x74\xf5\xbf\xb4\x2f\xbf\ \xfe\xfe\xd9\xad\xfb\x4c\x37\xaf\x5c\xbf\x23\xe8\xb0\x32\x24\xc5\ \xe3\xe1\xbb\x2e\xad\x7b\xe8\xbe\x3b\x97\x42\x89\x32\x21\x00\x42\ \x54\x76\x51\x3e\xa7\x17\x80\xbb\xb2\xb2\xf2\x64\xcc\x8c\x49\x1f\ \x79\x3c\x1e\x83\x28\x8a\x7a\x9e\xe7\xdd\x9b\x57\xb8\x6b\x11\x3a\ \x58\x23\x73\x40\x48\x42\xaf\x5a\x83\xb5\xc7\x3f\xfa\x70\xca\xaa\ \xe2\xe2\xe2\x93\x1e\x8f\x27\xcd\xe7\xf3\x25\x89\xa2\x18\x2d\x5b\ \x87\x88\x96\x2f\xc8\xe3\x4c\x90\x9f\x4d\xb3\xae\xc3\x71\x5c\x40\ \xa7\xd3\xf9\x79\x9e\xf7\xf0\x3c\xef\xdc\xbd\x31\xca\xb9\x6f\xdf\ \xbe\x46\xf9\xda\xe2\xe4\x89\x2f\xcc\xd5\xeb\xf5\xf1\x00\x38\xbd\ \x5e\xef\xaa\x5c\xe9\xae\x83\x46\xd2\x58\xb3\x1a\xa6\x1d\xde\x4b\ \x47\x40\x91\xef\x5c\xe3\x5f\xfe\xbf\x45\x1f\x7e\xfc\x99\xf3\xc4\ \xd1\x43\xc4\x2c\x43\xae\xa7\x44\xa9\x31\x39\x39\xcd\x95\x45\x2b\ \xb7\x45\x43\x32\x6d\x9e\x77\x19\xf7\xe4\x1d\x87\x01\xa4\x40\x6a\ \x93\x00\x45\x0b\x01\x80\x48\xf3\x40\x04\xbd\x5e\xdf\x00\x25\xc9\ \x8f\x04\x72\xd0\x7d\x92\x06\x01\x16\x48\xd8\x8d\x3d\xbe\xcd\x80\ \x83\xc8\xd9\x96\xf1\x22\xa4\x41\x68\x16\x7d\xf6\x5f\x66\x7e\xf2\ \xea\x57\xaf\xbd\x35\xf7\xc1\xd5\xfb\xc9\x97\x0c\x42\xa8\xc8\x12\ \x69\xd3\x8f\x62\x82\x82\x28\x22\x4a\xcf\x23\x3f\x2b\x19\xdd\xba\ \x24\xa3\xa8\x4b\x0a\x8a\xf2\x52\x51\x94\x9b\x8a\xc4\xf8\xd6\xef\ \x1b\x4e\x97\x07\x65\x9b\x7f\xc1\xb2\xd2\xcd\x28\xdb\xbc\x03\x6e\ \xb7\x5b\xad\x69\x50\x00\x06\x0a\x2e\x94\xff\xaa\xbf\x8b\x8f\x8b\ \xc5\x1f\x6e\x19\x2a\xbc\xf1\xfa\xff\xbd\x0f\xe0\x08\xe4\xcc\xf3\ \xf3\x69\xf6\x69\x42\x0b\x69\x84\x34\x09\xc7\x02\x88\xf9\xc7\xe4\ \xd7\xcb\x3f\x9a\x31\x2b\xe5\x64\xcf\xbc\x92\x9d\xfb\x8e\xeb\x00\ \xe0\x74\x9d\x89\x1b\x37\x65\x61\xc9\x8b\xcf\x4c\x78\xff\xe2\x7e\ \x3f\x4d\xfe\xf0\x83\xa9\xe5\x50\x4f\x06\xaa\x28\x24\x79\x75\x77\ \xce\x1d\x90\x53\xcf\x8c\xb4\x29\x84\xd8\xd2\x49\xdd\x71\x43\x6e\ \x6e\x6e\xf6\xcc\xcf\xbf\x7a\x73\xf6\x77\xe5\x97\xec\xdc\x77\x22\ \x48\x37\xa0\xd7\xf3\x78\xee\x91\x1b\x1b\x9e\x79\x7c\xc4\x12\x9f\ \xcf\x47\x62\xdc\xe9\x44\x40\x42\xc9\x00\x50\x51\x6a\x56\xab\xd5\ \xbc\x64\xc9\x92\xbd\x90\xb4\x1a\x5e\xfe\x9c\x98\xbc\x22\x22\x91\ \x0b\x23\x34\x80\xb8\x01\xd8\xab\xab\xab\x4f\x55\x57\x57\x07\x00\ \xa4\x43\xaa\xa9\x1e\x0b\x65\xe2\x69\x91\x5f\x82\x12\x3a\xa1\xd4\ \x0d\xc5\x06\x4e\xea\xd0\xf0\xa5\xa5\xa5\x4e\x48\x7d\x01\x90\xda\ \x48\x7c\x44\x11\xb5\x57\xa3\xcf\x11\xce\x2c\xf2\x5e\xfd\xf2\xb9\ \x63\x9f\x7e\x62\xf4\x5c\xf9\x6f\x9a\xa2\x85\x47\x70\x24\x45\x96\ \x07\xd2\x9e\xe2\xf7\xfb\xa2\x00\xa4\x42\x6a\xaf\x07\xaa\x3a\x3b\ \x91\x55\x24\x14\x21\x42\xaf\xd7\xdb\xa1\xf0\xaa\x19\xa1\x14\x24\ \x63\x69\x75\xd8\xed\x6c\x91\x81\x6d\x0a\x1c\x44\x9a\x04\x10\x55\ \x62\x21\x50\x63\x3b\x55\x39\xe7\x83\xa9\x2f\x96\x3c\xf2\xe4\xbb\ \x57\x6f\x3e\xdc\xa0\x39\xc1\x2a\x3f\x96\xfe\x31\xc4\xc7\xa0\x20\ \x3b\x01\x05\x59\x06\x14\x66\x27\xa1\x5b\x97\x64\xe4\x65\x26\x81\ \xe7\xb9\x10\x0e\xac\xd6\x12\xa7\xcb\x83\xd2\xcd\x3b\xb1\xa2\x6c\ \x2b\xd6\x6f\xdd\x09\x8f\xdb\x43\x39\xc2\x19\xb0\xa3\x81\x4e\x94\ \xe1\x4e\x8b\x7a\x5e\x6e\xcf\xc3\xf7\xdf\x87\xa9\xef\xfd\xe3\x4b\ \xc1\x71\x7c\x05\xa4\x95\x83\x1b\xcd\x1f\xf8\xad\x2d\xc4\x5c\x42\ \x26\x12\x1b\x94\xe8\xa5\x68\x00\x51\x4f\x3f\x31\x6a\xc5\x57\xdf\ \x2c\x4a\xb2\xda\x1c\x39\x47\x4f\xd4\x73\x00\xe0\x74\xba\x31\x7e\ \xca\xb7\xb9\x7f\x7d\x60\xd0\x84\xf7\xa7\xf5\x9c\xf3\xcc\x53\x7f\ \xf9\x06\x52\x5f\xa0\x1d\x79\xaa\xba\xc8\x40\x68\x9c\x7d\x53\x1d\ \x93\x0b\x5d\x4a\xd3\xbe\x0e\xda\x64\x45\x42\x75\xe3\x01\x18\x86\ \x0c\x19\xd2\xfd\xf1\x67\x5e\x9e\x34\x69\xfa\xe2\xee\x75\xc6\xc6\ \xe0\x39\x78\x5e\x87\xbf\x8f\xfe\x83\xfd\xdd\xb7\xc6\x2d\xab\xad\ \xad\x3d\x03\x75\x0d\x0e\x96\x92\x81\x80\x13\x79\x26\x7a\xb9\x2d\ \x76\x28\xa6\x2d\x12\x78\x40\x67\xe8\x47\xa4\x81\x30\x21\xd6\x74\ \x92\xa7\x55\xbe\xb6\x20\xdf\x5f\x3c\xa4\x77\x43\xdb\xcf\xe9\xeb\ \x35\xf7\xda\x34\x50\x91\x6b\x11\x5b\x38\x9d\x11\x4f\xc0\xd7\x03\ \x35\x7d\xfc\xb9\xb4\x57\x2b\xbc\x17\x50\x40\x25\x46\xfe\x8c\x68\ \xc6\xc4\xd1\xad\x10\x4c\x8a\xe8\x90\xbc\x51\x4d\x49\x20\x10\xe0\ \x21\x69\xc6\xc4\xbf\xa6\x07\x69\xbf\xdc\x9e\x08\x7c\x20\x22\xcf\ \xf3\x6e\x28\xb4\x36\x24\x92\x90\xce\x0e\x0f\x17\x0d\x18\xee\x73\ \x90\xfd\xf9\x58\xd4\x9e\xd5\x91\x20\x0f\x0e\x1f\xa4\xc1\x56\x7d\ \xec\x97\x1f\x26\x2f\x59\x50\x38\xed\x92\xc1\x63\x0a\x8e\xd7\xd9\ \xc8\x51\xd0\x81\x43\x56\x5a\x1c\xba\x66\x24\xa0\x6b\x66\x02\x0a\ \x32\x13\x51\x90\x9d\x84\x94\xc4\xe8\x66\x91\x25\x9e\x2b\x88\xd8\ \x9d\x6e\x94\x55\xee\xc6\xaa\x0d\xdb\x50\x5e\xb5\x07\x6e\x8f\x27\ \xc4\x11\x1f\xb2\x57\xd1\xca\x87\x34\x5c\xbd\x87\x88\x9b\xae\xbb\ \x06\x0b\x16\x2d\xd9\x60\xaf\xad\x9a\x0b\xe0\x18\xa4\x41\x79\xbe\ \x1c\xe7\xcc\xed\x69\x6a\x21\xf4\xa4\xac\x07\xa0\x17\x04\x81\x1f\ \xf9\xd0\xb0\x1f\xa7\xcf\xfc\xe2\xd6\xb2\xaa\x9a\xdc\xb5\x9b\xf6\ \x48\x65\x8c\x01\x7c\x3c\x67\x69\xfa\x6d\x03\x2f\x7b\xec\x87\x9f\ \x56\x5c\x3c\xe9\xf5\x71\x53\x2b\x2a\x2a\x6a\xa0\xac\xe4\x89\x7d\ \x55\xcb\x8e\x2a\x02\x41\x90\xd0\x6a\xbb\x96\xb6\x41\xfb\x3a\xe8\ \xba\x1e\x71\x90\x1d\xe6\xd3\xa6\x7f\xfa\xc7\xe4\x8c\xc2\xfb\x9f\ \x7f\xeb\xab\x2e\x1e\xaf\x52\x8b\x26\x2d\x25\x09\x63\x47\xdf\xd2\ \xf0\xe1\x94\xd7\x57\x6d\xdd\xba\xe5\x28\x14\x0a\x75\x23\xa4\xd5\ \x1b\x9d\x55\x4b\x67\x85\xbb\xa1\xe4\x08\x78\x20\x01\x15\x07\x65\ \xb5\x4c\xa2\x55\x54\xa6\xbb\x56\xf0\x7f\x90\xc9\x53\x27\x9f\xd3\ \x03\x69\x82\x20\xf5\x59\xce\xa5\x42\x24\xb9\x37\xda\xa4\x41\x9c\ \xaa\xa4\x94\x32\x09\x77\x25\x6d\xa7\x83\x2d\x22\x6e\x6f\x98\xc8\ \x2c\x72\x2f\x04\x40\xa2\xe5\xf6\x91\xef\x03\xf2\x7d\xc4\x82\x1a\ \x78\x1d\x95\xb9\x36\x9c\x04\x02\x7e\x3d\x24\x0d\xd2\x06\x85\x2b\ \x8c\x72\xa2\xb7\x3c\x0a\x4b\x0a\x08\xd2\xd1\x94\x36\xf4\x42\x80\ \xad\x16\x49\x4f\x5e\x61\x26\xb4\xf3\x03\x1a\xb4\x34\xcb\x13\x2d\ \x8a\xa2\xc0\x71\x9c\x07\x80\x11\x10\xf7\x57\xae\x9a\x39\x3e\x2f\ \xbf\xfb\xc7\xd7\xfd\xfe\x7f\x12\xf2\xd2\x63\xd1\x35\x3d\x1e\xb9\ \x19\xf1\x88\xd6\xeb\xda\x1c\x28\x68\xb1\x3b\xdc\x28\xdd\xb2\x07\ \xab\x37\xee\x40\xc5\xf6\xfd\xf0\xfa\xbc\xb2\x83\x9e\x5e\x09\x68\ \x98\xa9\x82\x8a\xb4\xf2\xaf\xb6\x36\xa5\xec\x07\x5c\x79\x39\xea\ \xcd\x8e\x63\x27\x76\x2d\x7e\x1b\x00\x89\xfc\xf1\x8a\xed\x48\x80\ \x13\xc6\xac\x10\x12\x21\xe3\x74\x3a\xb9\x87\x1f\x1c\xf6\xd3\x2b\ \x13\xde\xb8\x7a\xd4\x7d\x37\xf6\xfe\xec\xdf\xab\xe3\x48\x3f\x5b\ \xb4\xb2\x32\x71\xfd\x96\x7d\x03\xc7\x3c\xf9\xca\x85\x7f\x7f\x51\ \x57\xfa\xc2\xd8\xa7\xa7\x1f\x3a\x74\xc8\x04\xc5\x9f\x40\x6b\x23\ \x74\x72\x5d\x53\x66\x17\xda\xc7\xc1\x3a\x5c\x09\xc0\x11\x7f\x47\ \xc2\xe4\x7f\x4c\x19\xd4\xbb\xef\xe5\x8f\x7c\xbd\x78\x53\x71\xc5\ \xb6\x0a\x15\x43\xe6\x45\xbd\x0b\x85\xe1\xb7\xf6\xab\x7d\x72\xcc\ \x03\xcb\xea\xeb\xeb\xe9\x02\x4e\xa4\x06\x07\x5b\x8a\x93\x4c\xa0\ \x74\x41\xaf\x00\xa4\x81\x19\x05\x25\x3f\x84\x68\x6d\x2d\xaa\x01\ \x7d\x16\x61\x4d\x58\x64\xa2\x75\x43\x5a\x59\x6a\x15\xf7\x0a\x07\ \xc2\xcd\xbd\x16\x6b\x17\x27\xe7\x62\xfd\x13\xad\xd2\x5e\xaa\xcf\ \x01\xca\x33\xa6\x35\x2f\xb2\x32\xa7\x27\x3f\xc2\x14\x2c\x01\x16\ \xd0\xa1\x6b\x67\x68\x89\x20\x08\x3a\x48\x20\x18\x0d\x75\xe2\x22\ \x47\x72\x6e\x5a\xda\x26\x2a\x37\x27\x9c\x6f\x43\xcb\x4f\xa5\xb1\ \xd6\x6d\xbf\xfc\xad\x96\x84\x32\x91\xc4\xab\x5a\x31\xe0\xda\xf6\ \xc3\xbc\x89\xaf\xf6\x28\xc8\x99\xf4\xc7\x2c\xac\xc8\x79\x00\x00\ \x0d\xde\x49\x44\x41\x54\x6b\xfe\xa8\xd7\x32\x43\xb5\x15\x99\xa2\ \xd5\xee\x42\xd9\xd6\x7d\x58\xb3\x69\x17\x2a\x7f\x39\x04\x9f\xcf\ \x4b\x39\xf3\x01\xd0\x26\xa8\x30\x55\x10\x95\x70\x5c\xea\x2b\x0d\ \xd0\x20\x26\xad\xcb\xfb\xfd\x0e\xc9\x29\x39\xb6\xd5\x8b\xdf\x18\ \x0f\xe0\x00\xa4\x95\xaf\xa7\x3d\xc1\x83\x11\xd6\xa1\xae\x43\xa8\ \x93\x53\x7c\xfd\xb5\x71\x1b\x6e\xbb\xfd\x8e\xba\x89\xcf\x8e\x19\ \x30\x69\xfa\xa2\x24\x87\x53\xb2\x2e\x98\xcc\x0d\x78\x6b\xda\x82\ \x9c\x82\xbc\xcc\x7b\x27\xbe\x3d\xe3\x6a\xce\x6f\x5b\xf6\xd8\xa8\ \x11\xb3\x6d\xb6\x60\x7d\x77\xb2\xba\xa5\x1d\x75\x5a\xab\x23\x22\ \xe1\x80\x83\x38\xca\x63\x01\xc4\x3d\xff\xc2\x4b\x97\x5d\x7b\xc3\ \x1f\x9e\x5c\xb2\x66\x7b\xc9\x27\xaf\xce\x8e\x63\xce\x81\x7b\x86\ \x5c\xe9\xc9\x4b\x13\x8f\x3c\x30\xfc\xce\x75\x82\x20\x58\xa0\x06\ \x0f\x42\x45\x4d\xd3\x8f\x84\xe4\xb6\xc8\x9b\x1f\xea\x15\x39\x3d\ \x68\x59\x53\x5d\x44\xa2\x01\xe6\x2c\x98\x04\x01\x1d\xad\x93\x31\ \xcd\x9a\x33\xd8\x36\x90\xe7\x0f\xa8\x81\xe6\x9c\xdb\xab\x01\x22\ \x74\x5b\xd9\xf6\x91\x76\xd3\x31\xf9\x1d\xb6\x76\x46\x38\x11\x05\ \x81\x83\x7a\x01\x20\x82\xb4\x53\x8c\x4c\x03\x81\x28\x80\xf2\x31\ \x92\x67\x48\x6f\x2a\x13\x63\x7b\x27\xfa\x6a\x49\xb3\x01\x84\xf2\ \x87\x38\x00\x9c\x12\xdd\xf5\xeb\xa6\x4e\x79\xf1\xc3\xa2\x82\xfc\ \x67\x07\xff\xfe\x4a\xcd\x01\xd1\x5a\x20\xd2\x68\x77\xa1\x6c\xcb\ \x7e\xac\xdd\xbc\x17\x5b\x77\x57\xc3\xef\xf7\x29\x15\x09\x41\xe1\ \x84\xfa\x8e\xc9\x8d\x93\xfb\x97\x8f\xd5\x30\x39\x87\x54\x4a\x54\ \xa2\xaf\x7e\x77\x41\x6f\xf4\xbf\xfc\x2a\xdf\x94\xc9\xff\x3b\x41\ \x0c\xb8\xb6\x41\x9a\xc0\xda\x23\xea\x4a\x53\x98\xac\x61\xb2\x22\ \xa4\x09\xfa\x00\x6a\x92\xf9\x69\xf1\x8f\x81\xbd\x7b\x76\x59\x26\ \xbd\x33\x6d\xd0\xac\x6f\xd6\xa7\xed\x3d\x74\x32\xb8\x1a\x3e\x76\ \xa2\x96\x7b\x71\xd2\xdc\xfc\xbe\xbd\x0a\x1f\xf9\xe7\xdc\xef\x07\ \x27\xc4\xf2\x87\xf7\xef\xd9\xb1\xe8\xb5\x57\xc7\x6f\xb4\x5a\xad\ \xb4\x6f\x24\x24\xae\x1c\xf4\x80\x0a\xcd\x15\x20\xf6\xf8\x98\x91\ \x23\x47\x16\x0d\xb9\xed\xee\xbb\xf8\xa8\xf8\x4b\x36\xef\xa8\x2e\ \xfc\xdb\xf8\x59\x49\x01\xc6\x76\x1c\x1f\x17\x83\xa7\x47\x0e\xb1\ \x57\x6e\x58\x56\x35\xe5\xb5\x99\xbb\xa0\xd4\xce\xa0\xc1\x83\xb6\ \xe7\xd3\xf6\x62\x22\xf4\xbd\x11\x70\x25\xcf\x24\xdc\x60\x3d\xa7\ \x41\xca\x80\x08\xa8\x6b\x13\x66\xdb\x90\x0c\xe6\x73\x14\x2d\x1b\ \x38\xfb\x1e\xc8\x71\xad\xda\x5e\xc6\xef\x03\x28\x20\xc5\xf6\x01\ \xfa\xda\xf2\xf1\x6d\x9f\x17\xd3\xda\x22\x4a\x59\xf0\x34\xf9\x25\ \xfd\x6d\x64\x3e\x10\x21\xa8\x81\x84\xdd\x3a\x22\x68\xd0\xd2\xa2\ \x64\x0a\x2a\xc1\xd0\x0a\xe0\xb8\xdf\x7a\x68\xe1\xb3\x63\x47\x27\ \x8c\x7f\xe5\x9d\xd1\x7f\xba\xfd\x16\xcd\x74\xef\x48\x41\xa4\xc1\ \xe6\xc4\xfa\xaa\x43\x58\x5b\xb9\x0f\xdb\xf6\x1e\x43\xc0\xef\x57\ \x72\x4a\x64\xcd\x80\x4c\xf2\xcd\x33\x53\xd1\x0d\x61\x8e\x85\xc6\ \xb1\xa2\x88\x3e\x3d\xbb\xa3\xef\x85\x17\x7b\xa6\xbe\xf3\xf2\x1b\ \xa2\xc7\xb8\x0e\x52\xbc\xb6\x03\xed\xe4\xf7\x08\x27\xcc\xc4\x15\ \x80\xc2\x44\x0b\xa8\x27\x51\x3f\x00\xdf\xe1\xc3\x87\xbd\x0f\xde\ \x77\xd7\x0f\x2f\xbf\xf2\xda\xe5\xf7\x0e\xbd\xab\x68\xee\x77\xeb\ \x0d\x87\x8f\x9d\x09\xbe\x8d\x5f\xf6\x56\xf3\x63\x27\x56\x17\xc6\ \x44\x47\x15\x5e\xdb\xff\x82\x6b\xdf\x9b\xf1\x55\x5d\x9a\x21\xee\ \xb8\xc5\x74\x7a\xdd\xfc\x7f\xcf\x2d\x5d\xbd\x7a\xb5\xd1\xe7\xf3\ \x85\x5b\xc9\xaa\x7c\x1d\x3d\x7b\xf6\x4c\x1c\x3d\xfa\xb1\xbe\x7d\ \x2e\xba\xec\x76\x9b\xd3\xd7\x7d\xef\xc1\x9a\xec\x77\x3f\x5b\x9e\ \x7c\xaa\xd6\x14\xd2\x8e\xd8\x98\x68\x3c\x70\xf7\x75\xae\xfc\xac\ \x38\xe3\x7b\xef\x4e\x28\xdf\xb9\x73\xe7\x69\x28\x11\x2a\x84\x51\ \x94\xcd\xf9\xd0\x24\x84\xa3\x26\x37\x32\x81\xb1\x80\x4a\x7f\x7f\ \xce\xe0\x41\x84\x79\x17\xf4\x75\x59\xe0\x38\x57\x10\xd1\x58\x09\ \x69\x6a\x82\xec\xf7\xad\xd6\x5e\x66\xf1\x42\xef\xc9\xb5\xc9\x6a\ \x9d\x09\x27\x8d\x2c\x0f\xa4\x3d\x45\x36\x36\x68\xbd\x33\x11\x40\ \x44\x51\x58\x82\xa2\x81\x74\x5a\x69\x71\x36\x1e\x05\x22\x8d\x00\ \xaa\xdd\xa6\x9d\x5f\x8c\x7b\xe9\xd1\xd3\xd5\x47\x27\xbc\xf0\xfc\ \x13\x23\x63\xf5\xfa\xd0\xf2\x21\xcd\x05\x11\x8b\xd5\x89\xf5\xdb\ \xaa\x51\xba\xe5\x20\x76\x1c\x38\x21\x81\x86\x48\x23\x3b\x05\x05\ \x67\x31\x41\xa9\xea\xb2\xb3\xa6\x2d\xfa\x58\x51\xfb\xd8\x9b\x6f\ \xbc\x16\x36\x87\xdf\xf4\xf9\x47\x2f\x8f\x13\x7d\x8d\x9b\x00\x9c\ \x84\x5c\xeb\xbc\x23\x81\x07\x11\x8d\x58\xfd\xe0\x57\x50\xb4\x93\ \x60\x7d\x0b\x8f\xc7\xe3\x19\x3f\xee\x85\xb2\x84\x84\x84\x1d\x2f\ \x8d\x7b\xed\xd2\xfb\xee\x18\x50\x38\x67\x41\xa9\xe1\x78\x4d\x5d\ \xf0\x87\x6e\x8f\x07\x2b\xcb\xb6\x45\xaf\x2c\xdb\xd6\x15\x40\xd7\ \x3e\x3d\x0a\xae\xba\xe9\xd6\x07\xc7\x0c\x1f\xf1\xb4\x47\xaf\xe7\ \xdd\x7a\x9e\x73\x45\xe9\x79\xa7\x5e\xaf\x73\xf2\x3a\x38\x01\x2e\ \xc6\xeb\x0b\xc4\xf9\xfc\x42\x9c\x3f\x20\xc4\xfb\x03\x42\x9c\xc3\ \xe9\x8e\xa9\xda\x59\x9d\xf4\xe9\x77\x73\x62\x5d\x6e\x0f\xb4\x24\ \x3a\x3a\x0a\xf7\xdf\xf9\x7b\x77\x71\x9e\xc1\x34\x63\xda\x94\x8a\ \xca\xca\xcd\xa4\x4a\x1f\x1d\xde\x68\x82\x52\x01\x90\xf8\x67\xc2\ \xb2\x89\x32\x0e\x5f\x7a\x55\x4e\x3f\x17\xb0\xbf\x6b\x0d\x61\x4c\ \x3c\x5a\xd7\x26\x72\xae\x8e\xf4\x88\x7e\xd3\x9a\xed\x65\x00\x9b\ \xbe\x0e\xad\xed\xd1\x03\x4f\x00\x22\xcb\x03\xe9\x00\xc2\x82\x36\ \xa5\x29\x44\x90\x07\xa2\x64\x52\xab\x4c\x55\x9d\x49\x22\x4a\xe7\ \x96\x9d\xea\x5e\x48\x03\x3a\x20\x38\x6b\x16\x7f\xfe\xf1\xd8\xda\ \xa3\x27\x8e\x4e\x9c\xf2\xea\x4b\x99\xc9\x49\x09\x21\xbf\x09\x07\ \x22\xe6\x46\x27\x36\xec\x38\x8a\xb2\xaa\xc3\xd8\x79\xf0\x14\x04\ \xc1\x1f\x4c\x52\x94\xaf\x16\x34\x3d\x05\x97\x2f\x2c\x7a\xa8\x92\ \xff\x80\x26\xc7\x07\x7b\x2c\x73\x2e\x5e\xc7\xe1\x91\xfb\x87\x63\ \xc5\x9a\xf5\xbb\x77\x6e\x98\x37\x11\xa2\x7f\x17\xa4\x64\x41\x3b\ \xce\x73\xbe\x47\x4b\x45\x03\x44\xe8\x15\x38\x1d\xb1\x13\xe4\xd1\ \x71\x38\x1c\xae\x97\x5f\x1c\x5b\x66\x30\x18\xb6\xbd\xf4\xca\x6b\ \x97\x27\xa5\x5e\xd3\x75\xc1\xcf\x9b\x0c\x07\xaa\x4f\x86\x9c\x7f\ \xcf\xfe\x23\xba\x3d\xfb\x8f\xa4\x69\x5d\x5b\xa7\xe3\x20\x08\x2d\ \x7b\x34\xa9\xc9\x49\xb8\xfd\xe6\x2b\x3c\x3d\xf2\x53\x4d\x9f\x7e\ \xf2\x41\xe5\xa6\xf2\x8d\xb5\x50\x67\xd5\x13\x2a\x6a\xc2\x2c\x4a\ \x53\x51\x9f\x95\x4d\x94\xf9\x8c\x00\x8a\xd6\x77\xad\x2e\xf4\xf9\ \x9b\x48\x0e\x6c\xf5\x7b\xa0\x26\x74\x4e\xeb\xf3\xb6\x12\xf6\xfc\ \x8c\x06\x48\xf7\x43\xc9\x91\xde\xc9\x34\x10\x79\xe2\x60\x7d\x13\ \x02\xa4\x44\x50\x91\xad\x7b\xdf\xbc\x33\x0a\x84\x52\x27\xc4\xdf\ \xd1\x59\x24\x62\x3e\x10\x19\x44\x7c\x90\x56\x84\x01\xd1\x67\x75\ \xaf\xfc\xee\x1f\x4f\xfc\xf9\x74\xcd\x84\x69\x6f\xbf\x75\x61\x71\ \x41\x6e\xc8\x6f\x48\x97\x36\x35\x3a\x51\xbe\xf3\x38\xd6\x6f\x3f\ \x82\xbd\x47\x4e\x43\x08\x08\x4a\x26\x27\xa5\x09\xa8\x34\x03\xd5\ \xc5\x95\x63\x54\x1a\x07\xa8\x63\x09\xd0\x34\x75\x2c\xe3\xfb\x48\ \x4d\x4e\xc2\xc8\x3f\x0f\xc3\xc7\x9f\x7c\xf2\x9f\xda\x83\xab\xa6\ \x01\x38\x08\xc9\x74\x72\x3e\x79\xae\xce\x49\x18\x10\x21\xf7\x4b\ \x3a\xa9\x56\x89\x56\x07\x80\x64\xab\xd5\x9a\xf4\xc2\xdf\x9f\x5d\ \x9b\x9a\x9a\x9a\xf8\xd8\x98\xc7\x7b\xdf\x77\xfb\x9d\x79\x5e\xbf\ \x2e\x71\xcb\xce\x23\x09\x65\x15\xbb\xf4\x4e\x97\xb6\xf6\x40\xa4\ \xb9\xe6\xdf\x0b\x7b\x75\x13\x6f\xba\xa6\xaf\x33\x33\x35\xde\x69\ \x6f\x34\x9a\xbf\xf9\xfa\x5f\x7b\x26\x95\x6f\xac\x87\xf4\x8c\x09\ \x9b\x28\xa9\x67\x40\x03\x07\x31\x59\x85\xf8\x3c\x5a\x12\x86\xda\ \xbc\xbb\x6c\x5d\x69\xaf\x30\xef\xf3\x7d\xcd\x30\xc2\x2e\x62\x7c\ \x1c\xc7\x09\x42\x27\xf3\x81\x40\x6a\x03\xeb\xff\x53\xb5\xa7\xa5\ \x6d\x12\x01\x51\x0e\xe3\xd5\x0a\x00\xe9\x14\x72\x4e\x84\x52\x14\ \x88\x58\x01\xf8\x21\xfa\xbd\xbb\x36\xce\x19\x3b\xfc\x91\x93\x4f\ \xbe\xfd\xc6\xdb\x43\x6f\x1a\x70\x59\xf0\xd8\xfa\x06\x27\x2a\x76\ \x9f\xc4\xc6\x9d\xc7\x70\xe0\x58\xbd\x14\x35\x25\x08\x50\x14\x0d\ \x45\x13\x08\xd1\x0c\x9a\x30\x41\x29\xc9\x7f\xf4\xb1\xaa\xbb\x0c\ \x7f\x2c\xf5\xfd\x4d\xd7\x5e\x89\x1e\xdd\xbb\x07\xde\x7c\xf3\x95\ \x19\x1e\xf3\xbe\x05\x90\xb2\xcc\x4d\x90\x93\xb3\x3a\xd0\x80\x3c\ \xab\x34\x11\x11\xc4\x6a\x21\x84\x0a\x3e\x05\x52\x92\x54\x92\xc5\ \x62\x49\x7c\x7b\xf2\x9b\x8d\x00\x62\x78\x9e\x8f\x1e\x7a\xdb\x6d\ \xd9\x7f\x1b\x31\xb4\x24\x3a\xd6\x90\x62\xb4\x38\x13\x8e\x9e\xac\ \x8b\xaa\x35\x36\x46\x19\xe5\xba\x2b\x24\x92\x8b\x16\x3d\xcf\x23\ \x23\x3d\x19\x99\x19\x29\xc8\xca\x48\x09\x64\x67\x24\xfb\x0a\x72\ \xd3\x5c\x31\xbc\x60\xdb\xbb\x7b\xfb\xc9\x0f\x26\x3f\x7f\xac\xb6\ \xb6\xd6\x01\xa6\xaa\x22\x14\xf0\x20\x09\x55\x84\x5d\x97\x68\x1d\ \xad\x4a\x45\xfd\x9b\xb4\xb9\xd0\x83\x8c\x04\x32\x78\xba\xe5\xe7\ \x08\x13\x9e\x1b\x6e\x13\x04\x81\x17\x04\x81\x17\x49\xf9\x5b\xb1\ \xd5\xeb\x79\x44\x26\x32\x1f\x16\xc7\x71\xa2\x4e\xa7\x0b\x70\x9c\ \x2e\xd0\xb7\x77\x37\x11\xea\xb0\x76\x41\xfe\xdb\xc3\xeb\xe0\x78\ \xf9\xa9\x61\x36\x9f\xdf\xc7\x8b\x82\xa8\x13\x21\x72\xa2\x28\x72\ \xaa\xf6\x50\xe7\xe4\x38\x4e\xd0\xe9\x74\x81\x0b\x7a\x16\x89\xdb\ \xd7\x7f\xc7\xf2\xb1\x75\x2a\x10\xe1\x5a\x63\xfc\x51\x54\xdc\xb1\ \x00\xd2\x00\x14\xe8\x12\xf2\x07\x0d\x1e\x3a\xe2\x2f\x63\x1e\x7e\ \x28\x67\x59\x55\x2d\x76\x1d\x3e\x03\x96\x69\x97\x25\x5b\x0c\xe5\ \xd5\xd2\x22\x64\xd4\xa0\x74\x67\x7f\xd3\x14\xfd\x3b\x45\x03\x2f\ \x8a\x01\x14\x17\xe4\x62\xc8\x4d\xd7\xe1\xe7\x65\x2b\xf7\x54\x6d\ \xfc\xfe\x63\xd1\x63\xda\x0c\xc9\xdf\xd1\x08\x39\x31\xab\xb3\x4e\ \x52\x1a\x64\x85\x3c\x94\x3a\x0a\x84\x37\x2b\x89\xda\x0c\xf2\x3e\ \x51\xfe\x8e\x54\xb9\x8b\x02\x10\x95\x9f\x9f\x1f\xdf\xb7\x6f\x5f\ \x43\x5e\x5e\xd7\x84\x9c\x2e\x79\x86\xf4\xcc\xec\xc4\xb8\xb8\xf8\ \xd8\x80\xc8\xf1\x82\x00\xbd\x8e\x83\xa0\xd3\xc1\x2f\x0a\x7e\x9f\ \xd9\x64\x74\xd4\x9e\x39\x65\x3b\x73\xba\xc6\x76\xf4\xe8\x51\x67\ \x65\x65\xa5\x05\xa1\xf5\x0c\x48\x2d\x03\x1b\x14\x00\x21\x7f\xd3\ \xb5\xcd\xd9\x02\x38\x1d\x3e\x3a\xe5\xbf\x5d\xa8\x39\x41\x0f\xa9\ \x1f\x25\x03\xc8\x02\x90\x07\x20\x5f\xde\x67\xca\x9f\xc7\x41\x83\ \xe1\xb6\x9d\x84\xf6\x19\x12\x36\x81\x7a\x48\x5c\x55\x35\x90\x22\ \x01\xad\xf2\x71\xf1\x90\xda\x90\x07\x20\x17\x52\xfb\x52\xe4\xcf\ \xd9\x84\x51\x11\x14\xc5\x0d\xa4\xc5\xe9\x69\x48\x73\xcd\x49\x28\ \x55\x31\x49\x4d\x9a\x4e\xd1\xcf\x5b\x05\x40\x00\x55\x87\x89\x82\ \x34\x09\x65\x01\x28\xd0\x1b\x7a\x0e\xbd\xe7\xbe\x27\x46\x94\x5c\ \xd0\x3f\x71\xc3\xae\x1a\x78\x3c\xde\x90\x49\x5c\xd0\x02\x0a\x86\ \xc1\x57\xf3\xd8\xa6\x40\xe4\x2c\xc7\x26\xc6\xc7\xe1\x8e\x5b\xae\ \xc7\x8e\x5d\x7b\x6a\xd6\x2d\xfb\xf7\x4c\xc1\x75\x6a\x03\x80\x13\ \x90\x5e\xac\x03\x92\xbf\xa3\xd3\xe9\xd9\xac\x68\xd0\xa5\x93\x41\ \x4d\x80\x84\xd0\x88\x24\x40\x02\x8e\x44\xf9\xef\x04\xa8\x41\x24\ \x48\x8f\x02\x75\xa2\x22\x9d\x6f\x00\xa8\x6d\xdd\x64\x20\x6a\x15\ \xc2\xa1\x4d\x68\x74\x2d\x03\x52\x35\x8d\x50\x52\xb3\x49\x55\x1d\ \x7e\x50\xfd\x26\xaa\xc5\x0b\xc9\xfd\x49\x84\xb4\xb8\xcc\x02\x90\ \x2d\x6f\xa9\xf2\xe7\xa4\x14\x6f\x6b\x86\x38\x47\x2a\x44\x03\xa0\ \x39\xe6\x48\x18\x39\xa9\x2b\x6e\x97\x8f\x89\x83\xd4\x86\x4c\x79\ \x4b\x83\x34\xf7\xd1\x80\x48\x9f\x97\x84\x74\x3b\x21\x69\xda\x46\ \x84\xe6\x35\xd1\x5c\x65\x1d\x5e\xc3\x6e\x35\x00\x09\x9e\x90\xe3\ \x48\xfc\x7f\x0c\x82\xab\x0e\xae\x5b\x42\xce\x65\xc3\x1e\x78\xf0\ \xf1\xbb\xd3\xbb\xf6\x8e\x2e\xad\x3a\x02\x1f\x55\x5e\x96\x06\x13\ \xe2\x40\x3f\x5b\x11\xa9\x50\xc0\x91\xbe\x6b\x12\x8c\xc4\x00\xf2\ \xb2\x33\x70\xe3\xd5\x97\xe1\xd0\x91\xe3\x0d\x8b\xbf\xff\x62\xb6\ \x60\xaf\x5e\x0e\x09\x38\x8c\x50\x68\x0a\x3a\x85\xbf\xa3\xb9\xc2\ \xb0\xdf\xd2\x2b\x43\xba\xba\x5b\xac\xbc\xc5\x81\x62\xf5\x95\x37\ \xf2\x1d\x61\x43\x25\x54\x29\x34\x88\x90\x6b\x10\xe0\x20\x09\x87\ \x3e\xa8\xc1\x83\x6c\xa4\x18\x0e\x5d\xc7\x80\x4d\x5a\x64\xf9\x80\ \x3a\xfc\x80\xfa\x4d\x14\xa1\xe6\x82\x28\x48\xfd\x28\x09\xd2\x84\ \x4b\x36\x32\xd9\x92\x45\x49\x7b\x83\x07\x11\xda\xe4\x46\x28\x60\ \xe8\xa2\x65\x84\x65\x20\x1a\x52\x1b\x52\xe4\x2d\x09\xd2\xb8\x21\ \xd9\xea\x5a\xb9\x58\x84\xba\x84\xae\xe1\x43\x88\x3d\x69\x9e\xb2\ \x4e\x61\xf9\x68\x75\x00\x01\x42\x56\x1f\x44\x7d\xcd\x86\x2e\xba\ \x7b\x56\xf1\x75\x23\xfe\xf4\xa7\x87\x6e\xca\xc9\x2b\x8a\x3e\x74\ \xda\x86\x5d\x07\x6b\x98\xa2\x52\x4d\x99\xb4\x9a\x06\x11\x21\xcc\ \xb1\x51\xbc\x0e\x37\x5c\xdd\x0f\x25\xdd\xf2\x71\xe8\xc8\x71\xfb\ \x37\x5f\xcf\x5e\xe8\xaa\xdf\xbe\x10\xc0\x71\x48\xab\x0a\x2b\x28\ \x82\xb9\xce\xf0\xe2\x22\x11\x0d\x1a\x75\xad\x64\x3f\xa2\x99\x68\ \x6d\x5a\x00\x42\x27\x57\x69\x45\x7d\xa9\xc2\x87\xc3\x6c\xa4\x8e\ \x01\xed\xa4\xa4\xc9\xfe\x7e\xb5\xef\xe4\xd7\x2c\x8c\x19\x8b\xe6\ \x3d\x23\x5a\x6e\x9c\xfc\x39\xbd\x5a\x6f\x6f\x10\xa1\x03\x4f\x68\ \x7f\x21\x31\xb7\xd2\x05\xcb\x08\x11\x28\xd1\xd8\x89\xb6\x1e\xce\ \x1c\x47\x33\x46\xd0\x2c\xca\xb4\x9f\x8f\xf8\x57\x3a\x45\x9f\x6f\ \x13\x00\x09\x9e\x3c\xd4\x0e\x9a\x02\x20\x13\xe0\x72\x75\x89\x85\ \x57\x16\x96\x5c\x72\xe3\x0d\x37\xde\xfc\xbb\xf4\xec\xc2\xf8\x3a\ \x8b\x07\x07\x8f\xd7\xc1\xe5\x76\xcb\x60\x10\xce\xa4\xd5\x3c\x33\ \x55\x5e\x76\x3a\x2e\xe8\x51\x80\xe8\x28\x1e\xf5\xf5\xf5\x0d\x6b\ \xd7\xae\xa8\x34\x9f\xde\xbb\x5a\x74\x9d\xd9\x01\x29\x2c\x97\x00\ \x47\x90\xb8\xac\x33\xbc\xb0\xd6\x90\x30\x40\xc2\x52\x8e\x04\xeb\ \x5e\x33\x5b\xb0\x94\x29\xd4\x00\x42\x84\x36\x61\xb1\x20\xa2\xb5\ \xd1\xb5\x0c\xc8\x6f\xe8\xd0\xcf\xdf\xb4\x8e\x4e\x2a\x4c\x8d\x7b\ \x9a\x03\x8d\xd6\x66\x69\x2d\xb6\x23\x09\xed\x0b\xa1\x17\x40\x44\ \x3b\x06\x94\x85\x17\xbd\xb8\x22\xe0\xa1\x95\x58\xad\x8a\x46\x83\ \x7a\x51\xa5\xf2\xf3\x75\x96\x3e\xdf\xa6\x00\x12\xbc\x88\xda\x3f\ \x42\xca\x95\x26\x43\x52\x63\xd3\xb9\xd8\xac\x3e\x19\x79\x7d\x6f\ \x1c\x38\xf0\x96\xfe\xfd\x2e\xee\x97\xc6\xf1\x31\xa8\xb3\x38\x70\ \xe2\x8c\x19\x0d\x56\x07\xac\x76\x07\x6c\x76\x27\x02\x01\x7f\x10\ \x28\x04\x51\x40\x6c\x94\x1e\x86\xa4\x58\x24\x27\xc4\xc1\x90\x14\ \x8b\xec\xb4\x64\xe4\xe5\xa4\xc1\xed\xf6\x08\x9b\xb7\x6c\x39\xb3\ \x66\xf5\xb2\x0d\x2e\xf3\xc1\xb5\xa2\xaf\xf1\x08\x94\xba\x11\x6c\ \x2e\x41\xa7\x79\x59\xad\x2d\x61\x4c\x5b\x2c\xa0\xd0\xec\xb9\x34\ \x68\xd0\xfe\x0f\x7a\xf0\xb3\x31\xff\xb4\x39\x8b\xae\xb0\xc6\x02\ \x06\x4b\x8b\xf2\x1b\x70\xfc\x0a\x84\x01\x11\x76\x81\xc2\x72\x83\ \x75\x14\x10\xa1\xa3\xc7\xe8\xfe\xcb\x52\xf8\xd0\x63\x84\xd5\xc8\ \x81\xd0\x71\x41\x9f\x93\xf6\x0f\x92\x73\x77\xba\xe8\xc2\xf3\x02\ \x20\xc1\x8b\x29\x40\xc2\xd2\x79\x27\x42\xd2\x4e\x52\xb9\xa8\xa4\ \x5c\x2e\x26\xbd\x3b\xf8\xb8\xac\xb8\x78\x43\x56\x5e\x5e\x41\x4e\ \x97\x2e\x5d\xd2\xb3\xb3\xb2\x0d\x29\x29\xa9\x89\x06\x43\x4a\x4c\ \x20\x10\x10\x6d\xd6\x06\x97\xc9\x62\x76\xd4\xd5\xd5\x36\x9c\x3a\ \x55\x63\x3a\x75\xea\xe4\x69\x9f\xc7\x5e\x8f\x80\xab\x56\x70\xd7\ \x1e\x40\xc0\x43\xd3\x5e\x10\xba\x6f\x1a\xe5\xff\x6b\x34\x8e\xb3\ \x89\x06\x90\xd0\x1b\x6d\xa2\x62\xff\xa6\x6d\xbc\xc4\x84\x05\x84\ \x26\x8f\xb1\x80\xa2\x05\x18\xc1\x77\xf1\xdb\x7b\xf9\x75\x09\x03\ \x22\x6c\x3f\xea\x08\x8e\xf3\x70\xc2\xe6\x51\xd1\xfd\x16\xd0\x1e\ \x23\xcd\x69\x8f\xd6\x22\x8b\xfc\xbf\x53\xf5\xff\xf3\x0a\x20\xc1\ \x8b\xaa\xc3\x4b\xb5\xd4\x5b\xa2\xe2\xd2\xaa\x21\x1d\x01\x44\x47\ \x34\x10\xa7\x14\xd9\x13\x6e\x7d\x0f\xf5\xb9\x8a\x1a\xb9\x33\xbd\ \xa0\xf3\x29\x1a\x55\x03\xc9\x9e\x1d\x18\xcd\x19\x28\x5a\x60\x22\ \x6a\x7c\x2e\xfd\xe7\xb7\x77\xf2\xab\x96\x30\x8b\x14\xa0\xe3\x82\ \x07\x11\xad\xfe\x4a\x03\x08\xd9\xb7\xb4\x3d\x9a\x63\xa1\xb3\x8d\ \x83\x76\x01\x10\xd5\x0d\x34\x6d\x8f\x67\x4d\x2a\x6c\x5c\x35\xcb\ \x30\x1a\xce\x2c\xd2\xe9\x5e\x4c\x7b\x4b\x13\x15\x05\x9b\xfa\x9b\ \x08\xfb\xac\x45\xad\xbf\x7f\x7b\x27\xff\x5d\x72\x96\x3e\xd5\x91\ \x45\xd5\x4f\xc3\xd1\xc5\xa0\x65\xed\xd1\x3c\x67\x67\x93\xff\x07\ \x5c\x09\x8a\x50\x39\x7d\x24\xa2\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\xdf\x01\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x01\x72\x00\x00\x01\x72\x08\x06\x00\x00\x00\xe8\x24\x51\x09\ \x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ \x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ \x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ \x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x0b\x1b\ \x0f\x09\x0b\x44\x61\x23\x34\x00\x00\x20\x00\x49\x44\x41\x54\x78\ \xda\xec\x9d\x77\x60\x1c\xc5\xd9\xc6\x7f\xbb\x77\x3a\x75\xab\xdb\ \xb2\x5c\x64\x59\xb8\xf7\xde\xbb\xc1\x34\x03\x46\xa6\x38\xd8\xa1\ \xb7\x50\x43\x12\x08\x81\x7c\x84\x16\x20\x40\xe8\xbd\x84\x1a\x08\ \x20\x3a\x18\x0c\x06\x77\x1b\xf7\xde\x9b\x5c\xe4\xaa\xde\xaf\xed\ \xf7\xc7\x9d\xa4\x2b\x5b\x4f\x27\x59\x92\xf7\x35\x87\xa4\xb9\xdb\ \xdd\xb9\xd9\x9d\x67\xde\x79\xde\x06\xa6\x98\x62\x8a\x29\xa6\x98\ \x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\ \x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\ \x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\ \xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\ \x34\x8d\x08\x7a\x3f\x28\x49\x92\x39\x5a\xa6\x34\x99\xd8\x32\x73\ \x22\x80\x74\x20\x5e\xe1\x15\xa7\xf2\x5e\xe0\x0b\xa0\x4c\xe7\xab\ \x5c\xe5\xbd\xa3\xf6\xbc\x5c\x87\x79\x77\x4c\x69\x32\x80\x16\xf4\ \x41\xb4\x09\xe4\xa6\x9c\x6a\xc0\x4e\x03\x7a\x02\x3d\x02\x5e\x5d\ \x01\xab\xd1\x87\x3e\x36\x3a\x8a\xd8\xd8\x68\xe2\x62\xa2\x88\x8b\ \x8d\x26\x36\x26\x1a\x80\x8a\xca\x2a\xca\x2b\xaa\x28\xaf\xac\xa6\ \xa2\xa2\x8a\x8a\xaa\xea\x50\x9e\x69\x27\xb0\x17\xd8\x11\xf0\xda\ \x6e\xcf\xcb\x3d\x61\xde\x4d\x53\x4c\x20\x37\xa5\x35\x83\x75\x24\ \x70\x86\x0c\x58\xf7\x00\x92\x02\x3f\xdf\x2e\x35\x99\xae\x99\x19\ \x74\x6a\xdf\x96\xb8\xd8\x68\xe2\xe3\x62\x88\x8d\xf1\x80\x73\x6c\ \x4c\x34\xf1\xb1\xd1\x5e\xb0\x8e\xae\x6b\x8f\x8b\x8b\x26\x36\x3a\ \xca\xef\xc1\x97\x9b\x03\xb5\x6d\x92\x24\x51\x51\xe5\x01\xf5\xf2\ \xca\x6a\x2f\xc8\x57\x79\xff\xf6\x07\xfd\xb2\x8a\x4a\xca\x2a\xaa\ \x38\x94\x7f\x9c\xdd\x79\xf9\x1c\x3b\x51\x28\xf7\x35\x8b\x64\x00\ \x7e\x07\xb0\xdb\x9e\x97\x5b\x63\x3e\x05\xa6\x98\x40\x6e\x4a\x4b\ \x02\xed\x4c\x60\x12\xd0\xdf\x07\xac\xbb\x00\x16\xdf\xcf\x45\x47\ \x45\x92\xd5\x29\x83\xae\x99\x19\x64\x77\xce\xa0\x6b\x66\x07\xb2\ \x33\x33\xe8\xda\x39\xa3\x4e\x8b\x0e\x04\x63\x49\x82\xb2\xca\x1a\ \x4a\x2a\xaa\x29\x29\xaf\xa6\xba\xc6\x89\xc3\xe9\xc2\xe1\x74\xe1\ \x74\xba\x70\xb8\x5c\x38\x9c\x6e\xec\x0e\x9f\xbf\x1d\x2e\x44\x51\ \x20\x3a\xd2\x4a\x74\x64\x04\xd1\x51\x11\x44\x47\x46\x10\x13\xe5\ \xfd\xdb\xaf\x2d\x02\x5b\x84\xf6\x26\xa0\xbc\xb2\x8a\xbd\x79\xf9\ \xec\xc9\xcb\x67\xcf\xfe\xc3\xec\xf6\xfe\xbe\x37\x2f\x9f\xaa\xea\ \x20\xcc\x76\x01\xfb\x7d\x80\x7d\x23\xf0\xab\x3d\x2f\x37\xcf\x7c\ \x5a\x4c\x31\x81\xdc\x94\xe6\x02\xdc\xe9\x5e\xe0\x9e\xec\x7d\x75\ \xf5\x7d\x08\x33\xda\xa5\xd2\xd5\x0b\xd4\x5d\x3b\x67\x90\xdd\xd9\ \xf3\xb3\x7d\xbb\x14\xbf\x87\xb4\xb2\xda\xc1\x91\x82\x32\x8e\x16\ \x94\x53\x58\x5a\x45\x49\x79\x35\xc5\xe5\xd5\x75\x3f\x8b\x4b\xab\ \x28\xad\xa8\xc6\xe5\x76\xe3\x79\x14\x25\xbc\xbf\x20\x21\x41\x6d\ \x9b\xdf\xb3\x2a\xf9\xfd\xee\xf9\xcf\xf7\xb3\x52\xfd\xb9\xbc\x2b\ \x85\x20\x52\x07\xf0\x31\x91\x11\x44\x47\x59\x89\xb2\x45\x10\x17\ \x63\xa3\x7d\x6a\x02\x1d\xd3\x13\xe9\xd4\x2e\x91\x4e\xed\x92\x48\ \x88\x8f\x0e\x9a\x23\x47\x8e\x17\xb0\x67\x7f\x3e\xbb\xf3\x0e\xd7\ \x01\xfd\x9e\xbc\x7c\x0e\x1f\x3d\x19\x38\x87\xf6\x02\xbf\x78\x5f\ \xbf\xda\xf3\x72\x8f\x9a\x4f\x93\x29\x26\x90\x9b\xd2\x54\xc0\x9d\ \x0c\x4c\xf4\x01\xee\x5e\xb5\xef\xa5\x25\x27\x32\x72\x48\x5f\x46\ \x0f\xe9\xc7\x80\x5e\xdd\xe8\xd2\xa9\x3d\x51\x91\xb6\x3a\xad\xda\ \xe1\x74\x73\xac\xb0\x9c\x23\x05\xde\xd7\xc9\x32\x8e\x14\x94\x93\ \x7f\xa2\x94\x92\x8a\x1a\x59\x60\x95\x7c\x7e\x0f\x04\x69\x75\x20\ \x0f\xf8\xbc\xec\x67\x8d\x5f\x4f\xf2\x59\x14\xe2\x62\x6c\x74\x4c\ \x4f\xaa\x03\xf6\x4e\xe9\x49\x74\x4c\x4f\xa2\x43\xdb\x44\x22\xac\ \x7e\x1b\x10\xaa\x6b\xec\xec\x3b\x70\x84\x75\x5b\x76\xb1\x64\xd5\ \x26\x96\xad\xda\xcc\xf1\x82\x62\xdf\x8f\x6c\xf3\x01\xf6\x05\xf6\ \xbc\xdc\x42\xf3\x69\x33\xc5\x04\x72\x53\xc2\x05\xdc\xf1\xc0\x38\ \x1f\xe0\x1e\x00\x88\x00\x89\x09\xf1\x8c\x1c\xd4\x87\x91\x83\xfb\ \x32\x6a\x70\x3f\xba\x65\x75\xac\x3b\xce\xee\x70\xb1\xff\x68\x09\ \x7b\xf2\x8b\xd8\x73\xb8\x98\xbd\x87\x0b\x39\x56\x54\x89\xe4\x76\ \x6b\x68\xd0\xf5\x20\x5b\xa7\x41\xeb\x04\x56\xcf\xa7\x7d\xce\x1d\ \x74\xbc\xf7\x2f\xd9\xeb\xf9\x00\xb9\xc2\xa2\x20\x7f\xbd\xfa\x73\ \xd7\x5e\x4f\x10\x04\xd2\x53\xe2\xe9\x94\x9e\x4c\xc7\xf4\x24\x3a\ \xa7\x7b\x40\xbe\x73\xfb\x14\x92\x13\x62\xeb\xc6\x68\xd7\xbe\x43\ \x1e\x50\x5f\xbd\x99\x65\xab\xb7\x50\x54\x52\x56\xfb\x96\x1b\xd8\ \xe0\x03\xec\x8b\xed\x79\xb9\x65\xe6\xd3\x68\x02\xb9\x09\xe4\xa6\ \xe8\x05\x6e\x9b\x17\xb8\x6b\xe9\x92\x61\x78\xbd\x47\xe2\x62\xa3\ \x19\x3e\xb0\x0f\xa3\x06\xf7\x65\xd4\x90\x7e\xf4\xcc\xce\x44\x10\ \x04\x5c\x6e\x89\x43\x27\xca\xd8\x97\x5f\xcc\x9e\xfc\x62\xf6\xe4\ \x17\x71\xe8\x58\x29\x6e\x49\x09\x58\xe5\x80\x50\x0f\x15\xa2\x03\ \x58\xe5\x8e\x57\xbd\x9e\x7e\xed\x5e\xff\xf5\xe4\x17\x0e\x49\x92\ \xe8\x98\x9e\xc4\xe0\x5e\x9d\x19\xd4\x2b\x93\x41\x3d\x3b\xd7\xd1\ \x33\x92\x24\xb1\x6d\x57\x1e\x4b\x56\x6d\x62\xe9\xea\xcd\xac\x58\ \xb3\x85\xb2\x8a\xaa\xda\xdb\xe2\x04\x56\xd5\xd2\x30\x5e\x60\xb7\ \x9b\x4f\xab\x09\xe4\x26\x90\x9b\x12\x08\xe0\xa3\x80\x39\xc0\x65\ \x40\x32\x78\x0c\x92\x43\xfa\xf5\x64\xd4\x90\x7e\x8c\x1c\xdc\x97\ \xbe\x3d\xb2\xb1\x88\x22\x92\x24\x71\xe0\x78\x29\x9b\xf7\x9d\x64\ \xd3\xde\x93\xec\x3e\x54\x84\xdd\xe9\xd2\x41\x4d\xa8\x01\xab\x1a\ \x15\xa2\xa6\x41\x07\x00\xb1\x11\x20\x97\xeb\xaf\x1e\x20\xd7\x5a\ \x78\x14\xae\x17\x44\x0b\x09\xd0\xb5\x63\x1a\x83\x7b\x65\x32\xb8\ \x77\x26\xfd\x7b\x74\x22\x36\x3a\x12\x00\x97\xdb\xcd\xc6\x6d\x7b\ \x58\xb6\x6a\x33\x4b\x56\x6d\x62\xe5\xfa\xed\xbe\x86\xd4\x42\xe0\ \x7f\xc0\xfb\xf6\xbc\xdc\xe5\xe6\xd3\x6b\x02\xb9\x09\xe4\xa7\x37\ \x78\x67\x79\xc1\x7b\x0e\x1e\xf7\x40\xba\x74\x6c\xcf\xf9\x53\xc7\ \x32\x66\xe8\x00\x06\xf6\xee\x8e\xd5\x6a\x41\x10\xe0\x64\x49\x15\ \x5b\xf6\x15\xb0\x79\xff\x49\xb6\xee\x3f\x49\x79\x95\x43\x99\x0a\ \x51\xa0\x4d\xf4\x52\x13\xc6\x80\x5c\xed\x7a\x32\xc0\xaa\x45\xdd\ \x28\x5d\xcf\x10\x4d\x13\xda\x6e\x42\x10\xa0\x67\x56\x7b\x06\xf7\ \xce\x64\x70\xef\x2e\xf4\xed\xd6\x89\x48\x9b\xc7\x8b\xc6\xe1\x74\ \xb1\x6e\xf3\x4e\x16\xad\xd8\xc0\x17\x3f\x2e\x61\xdf\x81\x23\xb5\ \xb7\x71\x37\xf0\xbe\x17\xd4\xf7\x99\x4f\xb5\x09\xe4\x26\x90\x9f\ \x1e\xe0\x9d\x08\x5c\xea\x05\xef\x31\x80\x90\x10\x1f\xc7\xb9\x93\ \xc7\x70\xd1\xb4\x09\x0c\xee\xdb\x03\x00\xbb\xd3\xcd\xe6\x7d\x27\ \xd9\xbc\xbf\x80\xad\xfb\x0b\x38\x56\x58\x11\x02\x78\xa9\x69\xd0\ \x7a\xa8\x09\x35\x60\x0d\xbf\xc7\x4a\xe8\xbb\x09\x3d\x7d\x33\xbe\ \x9b\xb0\x5a\x45\xfa\x76\xeb\xc8\xe0\xde\x5d\x18\xdc\xbb\x0b\xbd\ \xb2\x3b\x60\xb5\x88\x00\xac\xd9\xb8\x83\x4f\xbf\x5b\xc8\x57\xf3\ \x96\x52\x52\x5a\x5e\x7b\xe2\xa5\x5e\x50\xff\xc4\x9e\x97\x5b\x6c\ \x3e\xed\x26\x90\x9b\x40\xde\xba\xc0\x3b\x02\x38\x1b\xf8\x3d\x30\ \x1d\x88\xb4\x5a\x2d\x4c\x18\x31\x98\x8b\xa6\x4d\x64\xd2\xe8\x21\ \xd8\x22\x22\x70\xb8\xdc\x6c\xda\x7b\x92\x55\x3b\x8e\xb1\x61\xef\ \x09\x6a\x6a\x5c\xfa\x39\x6d\x23\xe0\x25\x47\xa5\x34\xd0\x83\x24\ \xc8\xd0\x19\x12\x4d\xd3\x18\xbb\x09\x8d\x85\xc3\xc0\x6e\x22\x2a\ \xca\xc6\xa8\x01\x67\x70\xf6\xd8\x01\x0c\xef\x9f\x8d\xc5\x22\x62\ \xb7\x3b\xf8\x69\xf1\x1a\x3e\xfd\x6e\x01\xbf\x2e\x5d\x8b\xc3\xe9\ \x02\xa8\x01\xbe\x01\xde\x03\x7e\x30\xd3\x0a\x98\x40\x6e\x02\x79\ \xcb\x06\xf0\x61\x5e\xcd\x7b\x16\x90\x0a\xd0\xb7\x47\x36\x17\x4d\ \x9b\xc8\xf4\xa9\x63\x49\x4a\x68\xe3\xd5\xbc\x0b\x58\xb5\xe3\x18\ \x1b\xf7\x9e\xa4\xda\xee\xd4\x0d\x5e\x9a\xda\xb6\x12\xb5\xa0\xa5\ \xd1\x86\x6a\xe8\x6c\x6a\x8f\x95\x90\x77\x13\x1a\x0b\x8f\xd2\xd8\ \xfb\x8c\x4f\x62\x7c\x2c\x53\x47\xf7\xe5\xec\x71\x03\xe8\x91\x95\ \x01\x40\x61\x71\x29\x5f\xfe\xb0\x84\x4f\xbf\x5b\xc0\x86\xad\x7b\ \x6a\x1f\x83\x93\xc0\x47\x5e\xea\x65\x95\x39\x2b\x4c\x20\x37\x47\ \xb5\x65\x80\x77\x7b\xe0\x6a\x2f\x80\xf7\x04\x48\x4f\x4b\xe1\x82\ \x33\xc7\x73\xd1\xb4\x89\x64\x67\x76\xc4\xe9\x72\xb3\x69\x7f\x01\ \xab\x76\x1c\x67\xe3\xde\x93\xd4\x38\x5c\xfa\x0d\x79\x46\x0c\x8f\ \xba\x3d\x56\x42\xf5\xf9\xd6\x03\xac\xa1\xee\x26\x42\x35\x74\xa2\ \xe8\xb1\xa2\xaf\x6f\xfa\xae\xe7\xbb\x28\x74\xe9\x98\xca\xb4\xb1\ \x03\x99\x36\xb6\x3f\x6d\x53\x12\x00\x8f\x6b\xe3\xa7\xdf\x2e\x20\ \x77\xee\x22\x8e\x1c\x2b\xa8\x7d\x3c\xb6\x7b\xa9\x97\xff\xd8\xf3\ \x72\x8f\x98\xb3\xc5\x04\x72\x53\x9a\x1f\x80\x67\x02\xf7\x00\xd7\ \x00\x91\xd1\x51\x91\x4c\x1b\x3f\x8a\x0b\xa7\x4d\x64\xe4\xa0\xbe\ \x88\xa2\xc0\xf1\xe2\x2a\x16\x6d\xca\x67\xf9\xd6\xa3\x94\x55\xd9\ \x65\x34\x44\x1a\xe8\x41\x62\x94\x0a\xa1\xe1\x1e\x2b\x0a\x34\x8d\ \x26\x58\x1a\xa4\x42\xb4\xfa\xa6\x6e\x58\x0d\xcd\x1f\x5d\x71\x37\ \xa1\xb0\x1b\x11\x11\x18\xd4\xbb\x0b\x67\x8f\x1f\xc8\xc4\xe1\x7d\ \x88\x89\x8e\xc4\xed\x96\x58\xb6\x7a\x33\x9f\x7e\xb7\x80\xef\xe6\ \x2f\xa7\xb2\xaa\xa6\x96\x7a\x79\x1b\x78\xc2\x4c\x15\x60\x02\xb9\ \x29\xcd\x03\xc0\xbb\x03\xf7\x02\x57\x00\x11\x59\x9d\x32\xb8\x6e\ \xd6\x0c\xce\x9d\x34\x86\xe8\xa8\x48\x9c\x2e\x89\xf5\x7b\x4f\xb2\ \x78\x53\x3e\x3b\x0e\x15\xfb\x01\x92\x31\x6a\x42\x0d\x58\x43\xa5\ \x42\x08\xcd\x63\x25\x0c\x86\xce\xa6\xf5\x58\x69\xa8\xd1\x57\x0d\ \xc8\xe5\xc7\x22\xd2\x66\x65\xfc\xb0\x5e\x9c\x33\x7e\x30\xc3\xfa\ \x65\x23\x8a\x22\x95\x55\x35\x7c\x3d\x6f\x29\x2f\xbd\xfb\x05\x7b\ \xf2\xf2\x01\x1c\xc0\x87\xc0\x63\xf6\xbc\xdc\x9d\xe6\x6c\x32\x81\ \xdc\x94\xa6\x07\xf0\x7e\xc0\xdf\xf0\x78\xa0\x88\x3d\xcf\xc8\xe2\ \xc6\x2b\x2e\x66\xda\x84\x51\x88\x82\x47\xfb\x5e\xbc\xe5\x28\x2b\ \xb6\x1d\xa3\xac\xd2\x1e\x66\x2a\x44\x0f\xb0\x1a\x03\xaf\xc0\xcf\ \x86\x0e\xe4\x8d\x1f\x9a\xdf\xd8\x46\xdf\x06\x03\x79\x40\x7f\x53\ \x92\xe2\x38\x6b\xec\x40\xce\x19\x3f\x88\x33\x32\xdb\xe3\x76\x4b\ \x7c\xf7\xcb\x72\x9e\x7f\xfb\x73\xb6\xec\xd8\x07\x9e\x48\xd2\x4f\ \x80\x7f\xda\xf3\x72\x37\x99\xb3\xcb\x04\x72\x53\x1a\x1f\xc0\x87\ \x01\xf7\x01\x17\x00\xc2\xc0\xde\x3d\xb8\x69\x76\x0e\x13\x46\x0e\ \x01\x01\x36\xed\x2b\x64\xfe\x86\xc3\xec\x3a\x58\x82\x3b\x10\x0c\ \xc2\x08\x5e\x81\xda\xb6\x6e\xb0\x6c\x8a\xd0\x7c\xc2\xe5\xb1\xd2\ \xd0\xdd\x44\x68\x63\xa1\x6e\xe8\x6c\xd8\xbd\x1b\xd6\xff\x0c\xae\ \xce\x99\xcc\xa0\xde\x9e\xdc\x66\x3f\x2f\x59\xc3\x73\x6f\xe5\xb2\ \x66\xe3\x8e\xda\x0b\x7c\x0d\x3c\x6a\x1a\x46\x4d\x20\x37\xa5\x71\ \x00\x7c\xbc\x17\xc0\xcf\x02\x18\x39\xb8\x1f\x37\xcd\x9e\xc9\x88\ \x81\x7d\x71\xb9\x25\x56\xef\x3a\xc9\xbc\xb5\x87\x38\x52\x58\xe9\ \x3f\x99\x1b\x89\xd3\x36\xe4\xb1\xd2\x14\xa1\xf9\x61\xdd\x4d\x9c\ \x2a\x8f\x15\x35\x43\xa7\x1e\xed\x5e\xad\x6f\xfe\x8b\xc2\x80\x9e\ \x99\x5c\x3d\x73\x2a\x23\x07\x76\x07\x60\xe9\xea\xcd\x3c\xf7\xd6\ \x67\x2c\x59\x59\xa7\x90\xcf\xf3\x02\xfa\x22\x73\xf6\x99\x40\x6e\ \x4a\xc3\x01\x7c\x9a\x17\xc0\xc7\x09\x82\xc0\xc4\x91\x43\xb8\xf1\ \x8a\x99\x0c\xe8\xdd\x0d\xbb\xc3\xcd\xd2\xad\xc7\x98\xbf\x21\x9f\ \xa2\xf2\x1a\x43\xee\x7d\x21\x81\x81\x91\x45\xe1\xb4\xf4\x58\xd1\ \x17\x9a\x1f\x36\xa3\xaf\xd6\xf1\x9a\xf7\x4e\xa2\x57\xd7\x8e\x5c\ \x35\x73\x0a\xe3\x87\xf5\x41\x10\x04\xd6\x6e\xde\xc5\x73\x6f\x7d\ \xc6\xcf\x8b\xd7\xd4\x9e\x67\xb1\x17\xd0\x7f\x34\x67\xa3\x09\xe4\ \xa6\x18\x03\x6f\xc1\x4b\x9d\xdc\x0f\x0c\x15\x05\x81\x69\x13\x46\ \x73\xc3\x15\x39\xf4\xe8\x9a\x49\x79\xb5\x93\x45\x9b\x8f\xb2\x70\ \xd3\x11\x2a\xaa\x9d\x34\x34\xf4\xbc\x61\x1e\x24\xa1\x52\x21\x34\ \x6d\x68\x7e\xa8\x54\x48\x13\x84\xe6\x87\xee\xb1\xa2\x6d\xf4\xd5\ \xd2\xee\x6b\xaf\x97\xdd\x39\x9d\xab\x2e\x9e\xc2\xd4\xb1\x03\x11\ \x05\x81\x6d\xbb\xf2\x78\xee\xed\x5c\xbe\xfd\x79\x19\x6e\xb7\x04\ \xb0\x1a\x78\x04\xf8\xda\x9e\x97\x6b\x82\x81\x09\xe4\xa6\x68\x80\ \xf8\x48\xe0\x25\x60\xb0\xd5\x6a\x61\xfa\xd4\x09\x5c\x3f\x6b\x06\ \x5d\x3a\x7a\x82\x3e\xb6\x1f\x2a\xe1\x8d\x1f\x76\x50\xe3\x74\x1b\ \x00\x56\xa3\xc6\xb2\x53\x0d\x5e\xa7\x36\x34\x5f\x1e\xc8\x9b\xc6\ \xe8\x1b\x3e\x20\x0f\x2d\xf0\xaa\x53\xfb\x54\xae\xbc\x78\x0a\xe7\ \x4c\x1c\x82\xd5\x62\x61\x6f\x5e\x3e\x2f\xbc\xf3\x05\x9f\x7f\xbf\ \xb0\x36\x6a\x74\x2d\x70\x8b\x3d\x2f\x77\x85\x39\x5b\x4d\x20\x37\ \x25\x18\xc0\x53\x80\xc7\x81\x6b\x2d\xa2\x28\xcc\x3c\xef\x4c\xae\ \x9f\x75\x31\xed\xdb\xa6\x06\xd5\x9e\x5c\xb8\xf9\x28\xb9\xcb\xf2\ \x70\xbb\xdc\x1a\x5b\x7d\x42\x34\x74\x36\x6d\x5e\x91\x86\x72\xf7\ \x81\x0b\x47\x93\x7a\xac\x68\x66\x50\x0c\xe7\x6e\x02\xc3\x1e\x2b\ \x5a\xf6\x08\x25\xee\xbe\x7d\x5a\x22\x73\x66\x4c\xe1\x82\xa9\x23\ \xb0\x45\x58\x39\x7c\xf4\x24\x2f\xfc\xe7\x73\x3e\xfc\xfc\x27\x5c\ \x1e\x15\xfd\x2d\xe0\xaf\xf6\xbc\xdc\x02\x73\xf6\x9a\x40\x6e\x02\ \xb8\x87\x46\xb9\xd6\x0b\xe2\x29\x03\x7a\x75\xe7\xff\xee\xbc\x81\ \x9e\xd9\x59\xde\x1b\x29\x77\x73\x61\x57\x7e\x29\x6f\xfe\xb8\x93\ \xf2\x2a\xbb\x41\x5e\x94\xb0\x7b\xac\x68\x79\x90\x34\xa9\xc7\xca\ \x29\x2a\x26\x61\x8c\xc6\x0a\xdd\x63\x45\x8b\xbb\x37\xea\xd1\xa3\ \xa5\xdd\xa7\x24\xc6\x33\xfb\xa2\x49\x5c\x3c\x6d\x0c\xd1\x51\x36\ \xb6\xec\xd8\xc7\x5f\x1f\x7b\x9d\x35\x9b\x76\x02\x14\x00\x7f\x05\ \xde\x32\xe9\x16\x13\xc8\x4f\x67\x10\x1f\x04\xbc\x0c\x8c\x4c\x6c\ \x13\xcf\x1f\xaf\x9b\x4d\xce\x39\x53\x74\x57\x82\x2f\x2a\xb7\xf3\ \xfa\xdc\xed\x1c\x38\x51\x1e\xa0\x85\xaa\x83\x57\x48\x60\xd0\x28\ \xa1\xf9\x7a\xa8\x90\x96\x5f\x4c\x02\x5d\xc0\x6a\xd0\x63\xc5\x88\ \xa1\xd3\x88\x1b\xa3\x42\xdf\x92\xda\xc4\x71\xcb\x9c\xf3\xb9\x60\ \xea\x48\x00\x3e\xfa\x6a\x3e\x8f\x3e\xff\x41\x6d\x55\xa3\x15\xc0\ \x1f\xec\x79\xb9\xeb\xcc\x59\x6d\x02\xf9\xe9\x04\xe0\x09\x78\x0c\ \x47\x37\x0b\x82\x60\x99\x71\xf6\x64\xee\xba\x6e\x0e\x49\x09\xf1\ \x8a\xa0\xad\xd4\xe6\x70\xb9\xf9\xef\x82\x3d\xfc\xb6\xfd\x38\x86\ \x3d\x56\x1a\xec\xf5\xd0\x50\x9a\xa6\x39\x16\x93\x08\x83\x7b\x5f\ \x48\x3b\x1d\x83\xbb\x09\x5d\xda\x7d\x08\x46\x6a\x0d\x9a\xa6\x5f\ \xcf\x2c\xfe\x7a\xe3\x25\x74\xef\xda\x91\xa2\x92\x32\x1e\x79\xfe\ \x7d\x3e\xfe\xea\x17\x24\x49\x72\x01\xaf\x00\xf7\xdb\xf3\x72\x4b\ \xcc\x59\x6e\x02\x79\x6b\x07\xf1\x39\xc0\x93\x40\xbb\x9e\xd9\x59\ \xfc\xfd\xf6\xeb\x19\xd0\xbb\x87\x2e\xd0\x56\x6b\xfb\x75\x63\x3e\ \xb9\x4b\xf7\xe1\x76\x49\x21\xe5\xe9\x08\x2d\x98\xc6\x2c\x26\xd1\ \x60\xa3\x6f\xa3\x18\x3a\x0d\xf6\x57\xd5\x96\x12\xfc\xac\x88\x82\ \xc8\xa5\xe7\x8d\xe3\xe6\x2b\xce\x27\x36\x26\x8a\x35\x1b\x77\xf0\ \xd7\xc7\xdf\xa8\x8d\x12\x3d\x06\xfc\xc5\x9e\x97\xfb\xbe\x39\xdb\ \x4d\x20\x6f\x8d\x00\xde\xc7\x4b\xa3\x8c\x8f\x8b\x89\xe6\xd6\xab\ \x66\xf1\xbb\x0b\xcf\x41\x14\x45\xc3\xa0\xad\xd4\xb6\xf3\x50\x09\ \x6f\xfc\xb0\x9d\x32\x2f\x6f\x7e\x6a\x3c\x56\x4e\x55\x31\x09\x35\ \x8d\x54\xad\x6f\xcd\xab\x98\x44\xe3\x7b\xac\x18\x1d\x1f\xe5\xeb\ \x25\x27\xb6\xe1\xae\x6b\x67\x70\xf6\x84\x61\xb8\xdc\x6e\xfe\xf3\ \xbf\xb9\x3c\xf9\xca\x47\xb5\xb5\x46\x17\x79\xe9\x96\x2d\xe6\xec\ \x37\x81\xbc\x35\x00\x78\x1c\xf0\x00\x70\x27\x60\x3d\x77\xd2\x58\ \xfe\x7c\xe3\x55\xb4\x4d\x49\x6a\x10\x68\x2b\xb5\x15\x96\xd5\xf0\ \xca\x77\x5b\x39\x78\xa2\xbc\x11\x3d\x56\xcc\x62\x12\x4d\x55\x4c\ \xc2\x98\x3d\xc2\x58\xb0\x91\xee\xfc\xf1\x1a\xdc\xfd\xd0\xfe\xdd\ \xf8\xeb\x4d\x97\x93\xd5\x29\x9d\x63\x27\x8b\x78\xf0\x99\x77\xf8\ \xf2\x87\x25\xe0\x29\x1a\xfd\x2c\xf0\xa0\x3d\x2f\xb7\xdc\x44\x03\ \x13\xc8\x5b\x2a\x88\xcf\xf4\x3e\xc8\x1d\xb2\x3a\x75\xe0\xbe\xdb\ \xae\x67\xc4\xc0\x7e\x61\x01\x6c\xb5\x36\x87\xd3\xcd\xfb\xf3\x77\ \xb2\x72\xc7\x71\xc2\xeb\xb1\xd2\x18\xc5\x24\x1a\x23\x34\x1f\x5a\ \x63\x31\x89\x86\x72\xf7\xca\x40\xde\x70\xed\xde\x6a\xb1\x70\xc5\ \x45\x93\xb9\x61\xd6\x79\x44\x45\xda\x58\xb2\x6a\x13\x7f\x7b\xfc\ \x0d\x76\xef\x3f\x0c\x70\x18\xb8\xd3\x9e\x97\xfb\x99\x89\x0a\x26\ \x90\xb7\x24\x00\x8f\xc5\x63\xf8\x99\x13\x15\x19\xc9\x8d\x57\xcc\ \xe4\xca\x99\x17\x10\x61\xb5\x86\x1d\xb4\xd5\xda\x7e\x5e\x7b\x88\ \xdc\x25\x7b\x71\xb9\xa5\x86\x81\x81\x59\x4c\x42\x03\x2c\x09\x4b\ \x31\x89\xc0\xbe\x69\xfb\x7c\xd3\x78\x1e\x2b\x06\xfd\xd1\x6b\xaf\ \x97\x9e\x9a\xc4\x5f\x6e\xbc\x94\x49\xa3\x06\xe2\x70\x38\x79\xf5\ \x83\xaf\x79\xf6\xcd\xcf\xa8\xaa\xae\x01\x4f\x51\x8b\x9b\xed\x79\ \xb9\x15\x26\x4a\x98\x40\xde\xdc\x41\xbc\x2f\x9e\x94\xa0\xbd\x06\ \xf5\xed\xc5\xe3\xf7\xdc\x4e\x46\xbb\xb6\x8d\x0e\xda\x4a\x6d\xdb\ \x0f\x16\xf1\xda\x77\x5b\xa9\xa8\x76\x18\x03\x83\xa6\x08\xcd\x07\ \xb3\x98\x44\x03\x8b\x49\x84\xdf\x63\x45\x67\x7f\x35\xc6\x67\xec\ \xb0\x3e\xdc\x7d\xd3\x2c\x3a\xa6\xa7\x72\x30\xff\x38\xb7\xfd\xfd\ \x79\x56\xae\xdf\x06\xb0\x0d\xb8\xd4\x9e\x97\xbb\xd9\x44\x0b\x13\ \xc8\x9b\x2b\x88\x5f\x03\xbc\x28\x08\x42\xf4\xb5\x97\xcd\xe0\x96\ \xdf\x5f\x8e\xd5\x6a\x69\x32\xd0\x56\x6a\x2b\x28\xad\xe6\xa5\x6f\ \x36\x73\xe8\x78\x99\x59\x4c\xa2\x31\x3c\x56\x5a\x72\x68\x7e\x88\ \xb4\x99\x9e\xfc\xf1\x11\x11\x11\x5c\x7b\xe9\xd9\x5c\x73\xe9\x39\ \x20\xc0\x93\xaf\x7c\xcc\x8b\xef\x7c\x81\x24\x49\x55\xc0\xad\xf6\ \xbc\xdc\xb7\x4d\xd4\x30\x81\xbc\x59\x52\x29\x49\x09\x6d\x78\xec\ \xee\x3b\x18\x3d\x74\xe0\x29\x01\x6d\xa5\x36\xbb\xd3\xc5\xbb\xf3\ \xb6\xb3\x72\xc7\x31\x95\xed\xb4\x59\x4c\x42\xdf\x6e\x42\x0f\x4d\ \x73\x6a\x8b\x49\x84\xc7\x63\x45\xf9\xfb\x19\xf1\x47\xef\xd7\xbd\ \x0b\x8f\xdf\x7b\x23\x19\xed\x52\x58\xb0\x7c\x3d\xb7\xfd\xfd\x39\ \x0a\x8a\x4a\x4d\xaa\xc5\x04\xf2\x66\x47\xa5\x7c\x0a\xf4\x1c\xd2\ \xaf\x37\xff\xba\xf7\x8f\xa4\xa5\x24\x9f\x52\xd0\x56\x6b\xfb\x61\ \xf5\x01\x3e\x5f\xbc\x07\xb7\xdb\x6d\x18\xbc\x9a\x75\x31\x89\xb0\ \xf9\xa3\xb7\xbe\x62\x12\x8d\xe3\xb1\xa2\x61\xf4\x0d\x38\x3e\x2e\ \x36\x86\x87\xfe\x74\x15\x93\x46\x0d\xe2\xd8\x89\x42\x6e\xfe\xdb\ \x33\xac\x58\xbb\x15\x3c\x05\xa1\x2f\x31\xa9\x16\x13\xc8\x4f\x25\ \x88\x5f\x0b\xbc\x20\x0a\x42\xf4\x75\xb3\x72\xf8\xc3\x9c\xcb\xc2\ \xea\x17\xde\x58\x6d\x5b\xf3\x0a\x79\xed\xdb\xcd\x54\x54\x3b\xcc\ \x62\x12\xa7\x51\x31\x89\x50\x42\xf3\x0d\xdd\x3b\x1d\xcf\xca\x15\ \x17\x4e\xe5\xce\xeb\x66\x22\x8a\x22\x4f\xbf\xf6\x3f\x9e\x7f\x3b\ \x17\xb7\x5b\xaa\x02\x6e\xb3\xe7\xe5\xbe\x65\xa2\x8a\x09\xe4\x4d\ \x4d\xa5\xbc\x0a\xcc\x4e\x4e\x4c\xe0\x9f\x77\xdf\xc1\xe8\x21\x03\ \x9a\x25\x68\x2b\xb5\x9d\x28\xa9\xe2\xc5\x2f\x37\x72\xe8\x44\x99\ \x06\xb0\x36\x75\x68\xbe\x1e\x9a\xa6\x31\xfc\xdf\x4f\x9f\x62\x12\ \xa1\x84\xe6\x87\xb3\xf0\x48\xef\xee\x5d\x78\xf2\x6f\x37\xd3\x21\ \x3d\x95\x45\xbf\x6d\xe0\xd6\xfb\x9f\xe3\x64\x61\x09\xc0\x07\xc0\ \x4d\x26\xd5\x62\x02\x79\x53\x80\x78\x3f\x3c\x5e\x29\x3d\x87\x0d\ \xe8\xcb\xe3\xf7\xdc\x49\x6a\x72\x52\xb3\x06\x6d\xa5\x36\xbb\xd3\ \xc5\xdb\x73\xb7\xb2\x6a\xc7\x51\x63\x60\x62\x16\x93\x68\x15\xc5\ \x24\xd4\xa8\x90\xf0\x79\x1b\xc9\x5f\x2f\x36\x26\x8a\x07\xef\xba\ \x86\xa9\x63\x87\x70\xec\x64\x11\xb7\xde\xf7\x2c\x4b\x57\x6f\xae\ \xa5\x5a\x2e\x35\x8b\x40\x9b\x40\xde\x24\x54\xca\x0d\x57\x5c\xc2\ \x8d\x57\x5c\x8a\xe8\x1d\xe8\x96\x08\xe4\xb5\x6d\xdf\xff\xb6\x9f\ \xdc\x45\xbb\x71\x4b\xee\xc6\x05\xaf\x46\x09\xcd\xd7\x43\xd3\x98\ \xc5\x24\x42\x4f\xab\xa0\x66\xe8\xd4\x43\xd3\x04\xef\x26\x7c\xfb\ \x3b\xeb\x82\x29\xdc\x75\xc3\xe5\x58\x2d\x16\x9e\x79\xe3\x13\x9e\ \x79\xf3\x53\x93\x6a\x31\x81\xbc\xd1\x00\x3c\x0e\x8f\x57\xca\xec\ \xd4\xa4\x44\x1e\xbb\xe7\x4e\x86\x0f\xec\xd7\x22\x41\x5b\xa9\x6d\ \xd3\xbe\x02\x5e\xfb\x66\x23\x15\xd5\xf6\x56\x54\x4c\xa2\x71\xf2\ \xb1\xb7\xd6\x62\x12\x7a\xc7\xa7\xe1\x34\x8d\xff\xf5\x7a\x66\x77\ \xe6\xa9\xfb\x6f\xa1\x53\x46\x5b\x96\xac\xda\xc4\xad\xf7\x3d\xcb\ \xf1\x82\xe2\x5a\xaa\xe5\xe6\xd3\x39\xbc\xdf\x04\xf2\xf0\x81\x78\ \x3b\x60\x2e\x30\x68\xc4\xc0\x7e\x3c\x76\xcf\x9d\xa4\x24\x25\x6a\ \x82\xe4\xa9\x02\xe8\x86\x9c\xeb\x44\x49\x25\xcf\x7f\xbe\x8e\x43\ \xc7\xcb\x69\x68\x68\xbe\x59\x4c\x42\x7d\x7c\x9a\x73\x31\x89\x86\ \x19\x3a\x8d\x17\x1e\x91\x24\x89\xb8\x98\x28\x1e\xf8\xe3\x35\x4c\ \x9b\x30\x9c\x13\x85\xc5\xdc\x72\xdf\xb3\x2c\x59\xb9\x09\x60\x1d\ \x70\x8e\x3d\x2f\xf7\x98\x09\xe4\x26\x90\x87\x0a\xe2\xd9\xc0\x8f\ \x40\xf6\x95\x33\x2f\xe4\x8e\x6b\xe6\x60\x11\x85\x16\xad\x79\x6b\ \xb5\x55\xdb\x5d\xbc\xf9\xdd\x26\x56\xef\x38\x7a\x0a\x8b\x49\x34\ \x46\x68\xbe\x4e\xf0\x0a\x03\x15\xd2\x5a\x8a\x49\x84\xcf\xd0\xa9\ \xff\x59\xb9\x74\xfa\x64\xee\xbe\xf9\x0a\xac\x16\x0b\xff\x7c\xe1\ \x7d\x5e\x7e\xef\x2b\x80\x3d\xc0\x34\x7b\x5e\xee\x1e\x13\xc8\x4d\ \x20\x37\x0a\xe2\x83\x80\xb9\x82\x20\xb4\xbb\xeb\xba\x2b\x99\x73\ \xf1\xf4\x56\x07\xda\x6a\x6d\xdf\x2c\xdf\x4b\xee\xc2\x9d\x75\x93\ \xda\x2c\x26\x71\x8a\x8a\x49\x34\x59\x68\xbe\xce\xfe\x1a\xba\x5e\ \x68\xcf\x4a\x8f\xec\xce\x3c\xfb\x8f\x3b\xe8\x90\x9e\xc6\x6b\x1f\ \x7c\xc3\x43\xcf\xbe\x8b\x24\x49\xc7\xbc\x9a\xf9\x3a\x13\xc8\x4d\ \x20\xd7\x0b\xe2\x93\x81\x2f\xad\x56\x4b\xfc\x83\x7f\xbc\x95\xf3\ \x26\x8f\x6f\xd5\xa0\xad\xd4\xb6\x61\xcf\x09\x5e\xfd\x7a\x03\x95\ \xd5\xf6\x53\x17\x9a\x1f\x2a\xc7\x6c\x16\x93\xd0\x09\xe4\xa1\x66\ \xb4\x84\x70\xa4\x71\x50\x1a\x8b\xd4\xa4\x36\xbc\xfa\xd8\xdd\xf4\ \xc8\xee\x4c\xee\xf7\x8b\xb8\xeb\xc1\x17\x71\x38\x5d\x65\xc0\x45\ \xf6\xbc\xdc\x5f\x4c\x20\xf7\x17\x11\x53\x02\x41\xfc\x12\x60\x6e\ \x74\x54\x64\xfc\x73\x0f\xdc\xeb\x07\xe2\xa7\x9b\x0c\xc8\x4e\xe3\ \x1f\x57\x8d\xa2\x43\x6a\x9c\xd6\x32\xaf\x47\x13\x08\xad\x13\xaa\ \xc7\xf9\x00\x89\x4a\x6f\x82\xff\x96\x74\x5c\x42\xcf\x77\x32\x7a\ \x5c\x63\x2a\x43\x06\xaf\x2b\x85\x76\xce\xc0\xb1\x6a\xe8\xd8\x2b\ \xdd\xf3\x93\x85\x25\x5c\x75\xd7\x23\xac\xde\xb0\x8d\x9c\x73\xc7\ \xf3\xce\x33\xf7\x12\x13\x1d\x19\x0f\xcc\xf5\xce\x51\x53\x4c\x20\ \x57\x04\xf1\x5b\x80\x8f\x13\xda\xc4\xdb\x5e\x7b\xec\x41\xc6\x0c\ \x1d\x74\xda\x8f\x49\x7a\x72\x2c\x0f\x5c\x35\x9a\xa1\x3d\xda\x19\ \xc7\x22\x49\x01\x0c\x0c\x02\xab\x6e\x30\x90\x0c\x20\x95\x14\x22\ \x20\x4a\xa1\x00\xb2\xa4\xe3\x10\x29\x34\xbc\x97\x0c\x00\xb8\xa4\ \x07\x68\xfd\x5b\x25\xc5\x71\xd5\x71\xdd\x06\x3e\x2b\xe5\x15\x95\ \xdc\x70\xcf\xbf\xf8\x79\xf1\x2a\x26\x8d\x1e\xc4\x27\xaf\x3e\x48\ \x52\x42\xbc\x0d\xf8\xd8\x3b\x57\x4d\x31\x81\x3c\x08\xc4\x1f\x06\ \x5e\x4c\x4f\x4b\x15\xdf\x79\xf2\x51\xfa\xf7\xec\x16\x32\x45\x11\ \xfe\xed\xd5\xa9\x69\xab\x95\x28\x9b\x95\xdb\x67\x0e\x21\x67\x42\ \x77\x04\x42\x04\x03\x34\xc0\x40\x0a\x51\x7b\x0d\xf5\x38\x23\x00\ \xae\x6b\x37\x11\x3e\xad\x37\x78\xc9\x52\x06\x56\xad\xb1\x0f\x79\ \x77\x20\x85\x38\x86\x52\x78\xc7\xde\xee\xb0\x73\xd7\x83\xcf\xf1\ \xc9\xb7\xf3\x19\xdc\xb7\x1b\x5f\xbd\xfd\x28\x1d\xd2\x53\x45\xe0\ \x45\xef\x9c\x35\x05\x93\x23\xc7\x96\x99\x63\xc1\xe3\x23\x7e\x7d\ \x76\x66\x27\x5e\x7e\xe4\xff\x68\x9b\x92\x7c\x5a\x71\xe1\x46\xda\ \xd6\xef\x3e\xc6\xcb\x5f\xac\xa3\xb2\xc6\x61\x16\x93\x68\x51\xc5\ \x24\x4e\x55\x68\x7e\xfd\xb9\x1b\xfa\xac\xfc\xe1\xca\x1c\xfe\x70\ \x65\x0e\x47\x8f\x17\x32\xeb\xd6\x87\xd8\xb1\xe7\x20\xc0\x1b\x78\ \x7c\xcd\x5d\xad\x12\xa0\x4d\x8e\x5c\x17\x88\x47\x01\x9f\x01\xd7\ \x0f\xec\xdd\x93\xb7\x9f\x7c\x84\xb6\x3e\x99\x0b\x4d\x09\x96\x41\ \xdd\xda\xf1\xd0\xb5\x63\xc9\xf0\xe5\xcd\x8d\x50\x1a\x0d\xd2\x10\ \x1b\x99\xd2\xd0\xb1\xdb\xd0\x47\x85\x48\x06\xbe\x93\x0a\x69\x14\ \x56\xee\xbe\xa1\x07\x48\x06\x0f\x91\x34\x8f\xd3\xe2\xd7\x03\xe5\ \xe5\x77\x73\x79\xf8\xd9\xb7\x69\x9b\x96\xc4\x97\x6f\x3e\xc2\xb0\ \x01\x3d\x01\xae\x07\x3e\xf3\xce\x65\x93\x5a\x39\x0d\x41\x3c\x11\ \x98\x07\x5c\x34\x61\xc4\x50\x5e\xfd\xe7\x03\xb4\x89\x8b\xc3\x14\ \x6d\x69\x9f\x12\xc7\x43\xd7\x8c\x63\x70\x8f\xf4\x30\x50\x21\xe8\ \xa0\x34\x24\x4d\xf2\xc1\x38\xde\xeb\xa1\x42\x54\xf8\x7d\x49\xcf\ \x32\x10\x2a\x4d\x63\x9c\x82\x69\x8a\x85\x2e\x7c\x5d\x97\x8c\xdd\ \x7e\x9f\x7b\xfd\xf1\xd7\x3f\xf1\xa7\x07\x9f\x25\x3a\x3a\x92\xff\ \xbd\xf2\x00\x67\x8e\x1f\x0a\x70\x11\x30\xcf\x3b\xa7\x4d\x20\x3f\ \x8d\x40\x3c\x03\x58\x04\x8c\xbb\xe0\xcc\xc9\x3c\x7d\xff\xdd\x44\ \xda\x6c\x26\x42\x1b\x90\xe8\x48\x2b\x77\x5d\x36\x9c\x8b\x27\x74\ \xd7\xb6\x13\x48\x92\x8a\xc6\x1b\x26\x74\x90\xf4\x61\x88\xba\x61\ \xd5\x80\x21\xcf\x70\x57\x1b\x81\x9a\x6c\x14\xee\x5e\xff\x18\xa8\ \x6a\xd4\x52\xe8\x1e\x2b\x5a\x32\x6f\xe1\x6f\xdc\x78\xcf\xe3\x38\ \x5d\x2e\xde\x7a\xea\x6e\x2e\xbb\x60\x32\xc0\x38\x60\x91\x77\x6e\ \x9f\x76\x72\xda\x71\xe4\xde\x1b\xbd\x04\xc8\xba\x6a\xe6\x0c\x6e\ \xbf\x7a\xb6\xc9\x7d\x37\xb0\x6d\xed\xce\xa3\xbc\xf4\xf9\x6a\xaa\ \x6a\x9c\x66\x31\x89\x30\x86\xe6\xb7\xf4\x62\x12\xba\xaf\x17\x52\ \x69\x3a\xe8\x91\x9d\xc9\x1b\x4f\xfe\x8d\x94\xa4\x04\x1e\x7d\xe1\ \x03\x5e\x7a\xe7\x0b\x80\x7d\xc0\x58\x7b\x5e\x6e\x7e\xab\x00\x68\ \x93\x23\x57\xa4\x53\x7e\x00\xb2\xee\xb8\x7a\x0e\xb7\x5f\x3d\x9b\ \x13\x65\x76\x0e\x17\x55\x87\x0d\xd4\xf4\xdf\xa0\xe6\xdd\x66\xa4\ \xcf\x43\x7a\xa4\xf3\xc8\xf5\x13\xc8\x48\x89\xd3\xc1\x31\x87\x46\ \x69\xe8\xd3\x3a\x1b\xea\x79\x12\x46\xad\xb7\xc1\xbb\x09\x49\xa7\ \x77\x50\xb0\x9e\xac\xdc\xf5\x50\xb9\xfb\x30\x50\x3f\x21\x5d\x43\ \xfd\xb8\xed\xbb\xf7\xf3\xbb\x5b\xee\xe7\x60\xfe\x31\xee\xbb\x6d\ \x36\xf7\xdf\x3e\x07\x20\x0b\xf8\xe1\x74\xa3\x59\x4e\x1b\x20\xf7\ \x1a\x43\xbe\x06\xfa\x5d\x35\x73\x06\x57\xce\xbc\x88\xa2\x0a\x07\ \xff\x59\x78\x98\x57\xe7\x1f\xe4\xcb\x35\xc7\xa9\xb4\x37\xdc\xf0\ \x7d\xaa\x5c\x14\xc3\xaf\x09\x18\xfb\x7c\x46\x6a\x3c\x0f\x5f\x3f\ \x81\xc1\xdd\xd3\x1b\x04\x5e\x9a\x93\x3a\x0c\x7e\xec\x0d\xc7\x65\ \x79\x40\x0c\xa4\x69\x1a\x0a\xc4\x21\x2d\x74\x21\x1b\x48\x1b\x2f\ \x60\xcb\xf8\x02\xa1\xff\x59\x39\x98\x7f\x8c\x59\xb7\xdc\xcf\xf6\ \xdd\xfb\xf9\xc3\x95\x17\x71\xcb\x55\x33\x00\xfa\x01\x5f\x9f\x4e\ \x06\xd0\xd3\x02\xc8\xbd\x2e\x86\x1f\xe1\xe5\xc4\x6f\xbf\x7a\x36\ \xa5\x55\x4e\xfe\xb3\xe8\x30\x65\xd5\x4e\x24\x09\x56\xef\x2d\xe1\ \x99\xb9\x79\xac\xdc\x53\x82\x99\x7a\x3d\x34\x89\x89\x8a\xe0\x2f\ \xbf\x1b\x45\xce\xc4\x9e\xf2\x0b\x41\x83\x82\x70\xc2\x8e\xc6\x04\ \x7a\x9e\x48\xa1\x68\xc4\x8d\xe5\xff\xde\x2c\xb8\x7b\x49\x47\xdf\ \x42\xeb\x8b\x66\x44\xa8\x62\x04\x69\xf0\xb9\x0b\x8b\x4a\xb8\xfe\ \x2f\x8f\x70\x20\xff\x28\xf7\xdd\x36\xdb\x97\x33\xff\xc8\x3b\xf7\ \x5b\xbd\x9c\x16\x1c\xb9\x2d\x33\xe7\x75\xe0\xfa\xf1\x23\x86\xf2\ \xf4\x7d\x77\x53\xe3\x84\x37\x17\x1e\xe2\x44\xa9\x5d\x5e\xbb\x4c\ \x8a\x64\xfa\xa0\xb6\x74\x4e\x8d\x6a\x31\x54\x48\x73\x6b\x5b\xb9\ \x35\x9f\x57\xbe\x58\x45\x65\xb5\xc3\x0f\x29\x9b\x53\x31\x89\xf0\ \x66\x50\x0c\x77\x31\x09\x5a\x6d\x31\x09\xc5\xb1\x37\x92\x78\x4b\ \xc6\xff\xbd\x53\x46\x1a\xff\x7d\xe9\x51\x12\xda\xc4\x73\xed\x9f\ \xff\xc5\x4f\x8b\x56\x03\xbc\x61\xcf\xcb\xbd\xa1\xc5\x02\xb4\x99\ \x34\xab\x0e\xc4\x1f\x06\xee\x1f\xd0\xbb\x27\xaf\x3e\xfa\x00\x92\ \x60\xe5\x3f\x0b\x0f\x71\xa4\xa4\x46\x7d\x60\x24\x18\xd8\x25\x9e\ \x69\xfd\xd3\x88\x8b\xb2\x98\x00\x1d\x42\xdb\xa1\xe3\xa5\x3c\xf5\ \xe1\x32\x8e\x14\x96\x13\x0e\x43\x9e\x22\x18\xb4\xca\x62\x12\xf8\ \xf5\x4d\x09\xbc\x54\x0d\x9d\x34\xdf\x62\x12\xfa\x4b\xd3\x19\xbb\ \x77\x3d\xb2\xbb\xf0\xde\x73\x0f\x61\xb5\x5a\xb8\xec\xe6\x07\x59\ \xb5\x61\x3b\xc0\x23\xf6\xbc\xdc\xbf\x9b\x40\xde\x42\x81\xdc\x9b\ \x8f\xe1\xc5\xec\xce\x9d\x78\xf3\x5f\x8f\x10\x13\x13\xcb\xbb\x8b\ \x0f\x73\xa0\xa0\x4a\xf7\xde\xd3\x66\x15\x99\xd2\x27\x85\xd1\xdd\ \x13\xeb\xca\xba\x99\xa0\xad\xbf\xad\xa2\xda\xc1\x0b\x9f\xfe\xc6\ \xfa\x9d\x47\x75\x66\xc5\xd3\x09\x06\x66\x31\x09\x6d\xb0\xc4\x68\ \x06\xc5\x50\x8b\x49\x84\x9a\x41\x31\xd4\xdd\x84\xfa\x58\x0e\x1f\ \xd8\x87\xd7\x9e\xbc\x8f\xaa\xaa\x1a\x2e\xba\xee\xfe\xda\x08\xd0\ \x5b\xed\x79\xb9\x2f\x99\x40\xde\xc2\x80\xdc\x9b\x21\xed\xe3\xf4\ \xb4\x54\xf1\x3f\x4f\x3d\x46\x6a\x72\x12\x1f\x2e\xcb\x67\xf7\xb1\ \x4a\x03\x1c\x62\xfd\x03\xd2\xae\x4d\x24\xd3\x87\xb4\xa5\x6b\xdb\ \x18\x13\xb0\x0d\xb6\x81\xc4\xc7\x3f\x6f\xe1\x8b\x05\xdb\xea\xb7\ \x3b\xad\xbc\x98\x44\x60\xdf\x08\xd0\x96\xd5\xdd\xfb\x38\xad\x8a\ \x49\x34\xb8\xf0\x08\xc1\xf7\x6e\xea\xb8\x11\xfc\xfb\x1f\x7f\xe2\ \xf8\xc9\x22\xa6\x5f\x7d\x2f\x87\x8f\x9e\x74\x03\x97\xdb\xf3\x72\ \x3f\x35\x81\xbc\xe5\x80\xf8\x64\x60\x6e\x42\x7c\xbc\xed\xed\x27\ \x1f\xa5\x73\x87\x0e\x7c\xba\xf2\x08\xdb\xf2\x0d\x96\xfe\x93\x79\ \x20\xfb\x75\x8e\xe7\xdc\x01\xed\x48\x88\xb5\x9a\xa0\x6d\xb0\x6d\ \xc5\xe6\x43\xbc\xfc\xf9\x2a\xaa\x6b\x1c\x3a\xa9\x90\x00\x30\x68\ \xc1\xc5\x24\x50\xd5\xee\xd5\xf8\x71\x3d\xda\x7d\xa8\xc5\x24\x74\ \xee\x46\x42\xa4\xb1\x04\x41\x6d\xa1\x0b\xdf\xf5\x94\x68\x9a\xcb\ \x2e\x38\x8b\xbf\xdf\x75\x3d\xbb\xf7\x1f\xe6\xc2\x6b\xee\xa3\xa8\ \xa4\xcc\x8e\xa7\x38\xc5\x2f\x26\x90\x37\x7f\x10\x1f\x04\x2c\x8c\ \x8e\x8a\x8c\x7f\xf5\xd1\x07\xe9\xd3\xa3\x1b\x5f\xae\x39\xc6\x86\ \x03\xa5\x06\xcf\xa4\x3c\x01\x6c\xa2\xc8\xe4\xbe\x29\x8c\xed\x99\ \xe2\x57\xfa\xcd\x04\x6d\xed\xb6\x03\xc7\x4a\x78\xea\xc3\xa5\x1c\ \x2b\x2c\x6f\x40\x31\x09\x9a\x59\x31\x89\x70\x1b\x3a\x4f\x7d\x31\ \x09\x1a\xb5\x98\x04\x06\x69\x9a\xd0\x77\x13\x37\x5f\x75\x09\xb7\ \x5c\x75\x29\x6b\x37\xef\xe2\xd2\x9b\x1e\xa0\xb2\xaa\xa6\x0c\x98\ \xd0\x52\x2a\x0d\x9d\x96\x40\xee\xad\xb1\xb9\xd4\x6a\xb5\xb4\x7b\ \xe6\xef\xf7\x32\x7a\xc8\x20\xbe\xdf\x70\x82\x55\x7b\x4b\x42\x38\ \x9b\x36\x18\xa4\xc4\x47\x30\x7d\x48\x3a\xdd\xdb\xc7\x99\xa0\x6d\ \xa0\xad\xa2\xca\xce\xf3\xff\xfb\x8d\x75\xbb\xf3\x43\xf4\x58\xe1\ \x94\x7a\xac\x08\x72\xda\x3d\xa1\xec\x26\x08\xcd\x63\x25\xe4\x2c\ \x85\x7a\x16\x9e\xf0\x7b\xac\x48\xb2\x3b\x13\x23\x34\x4d\xc3\x4a\ \xd3\xdd\xff\xc7\x1b\xb8\xec\x82\xb3\xf8\x75\xd9\x3a\xae\xfa\xe3\ \x63\x38\x9c\xae\x63\xc0\x98\x96\x50\x03\xf4\xb4\x03\x72\x6f\xb5\ \xfb\xa5\x82\x20\x64\x3f\x74\xd7\xed\x9c\x3b\x69\x3c\x2b\xf6\x14\ \xf3\xe3\xa6\x93\x21\x9e\x51\xbf\x86\xd8\xa7\x43\x1c\xe7\x0d\x69\ \x4f\x72\x5c\x84\x09\xda\x06\x78\xf3\xff\xce\xdb\xc8\x57\x0b\xb7\ \xeb\xa2\x26\x42\x2f\x37\x46\xd3\x84\xe6\xa3\x77\x37\xa1\x87\xd3\ \x6e\x08\x90\x9f\x82\xd0\x7c\x4d\x9a\x46\x01\xc8\x8d\x18\xa9\x0d\ \xd0\x58\x81\xd7\x13\x04\x78\xfa\x1f\x7f\xe2\xcc\xf1\xa3\xc8\xfd\ \x7e\x11\xb7\xff\xdf\xf3\x48\x92\xb4\xc7\x0b\xe6\xc7\x4c\x20\x6f\ \x3e\x20\x1e\x87\x27\x09\xd6\xa0\x3f\x5e\x7b\x15\xb3\x67\x4c\x67\ \xcf\xf1\x4a\xfe\xbb\x2c\x1f\x77\xc8\x67\xd5\xeb\x85\xe0\xf9\x3d\ \x42\x10\x98\xd0\x37\x95\x89\xbd\xd3\xb0\x5a\x9a\x1f\xdd\x62\x24\ \xe2\xb4\x29\xfb\xb7\x6c\xd3\x01\x5e\xcd\x5d\x45\xb5\xdd\x81\x6e\ \xaf\x87\xb0\x79\xac\x10\x22\x15\x12\xaa\xc7\x8a\x1a\xf5\x12\x66\ \xee\x3e\xac\x1e\x2b\x46\xa9\x10\x9d\x63\x11\xd2\x6e\x02\x79\xa3\ \xb1\xc6\xb3\x12\x11\x11\xc1\xab\x4f\xdc\xc7\xf0\x41\x7d\x79\xed\ \x83\x6f\x78\xf0\x99\x77\x00\xd6\x01\xe3\xed\x79\xb9\xe5\x2d\x1d\ \xc8\x5b\x4b\x64\xe7\x2b\xc0\xa0\xdf\x5f\x7c\x21\xb3\x67\x4c\xa7\ \xb0\xdc\xc1\xe7\xab\x8f\x22\x79\x57\xaa\x90\x5e\x92\xb1\xcf\x3b\ \xdd\x6e\x7e\xde\x78\x9c\x7f\x7f\xb3\x93\x6d\x07\x4b\x9b\xa1\x06\ \xac\xf7\xc1\x69\xda\xb6\xd1\xfd\x3a\xf3\xf0\x4d\x53\x68\x9b\x1c\ \xa7\xc9\x74\xe9\x6c\xf4\x7f\xcf\x88\x02\x12\x62\x08\xb9\x76\x69\ \x3a\x85\xbf\xb5\x92\x8f\x37\x52\x0e\x1a\xc1\xf7\x9f\x14\xf0\xb7\ \xec\x3f\xb9\x67\xde\x63\xcc\x54\x7f\xc9\x7c\x06\xad\x63\x84\xfa\ \x17\x82\xff\xdf\x82\xe0\x79\x76\x7c\x0e\x90\x02\x4e\x20\x09\xde\ \x1e\xfa\xb4\x09\x82\x80\xd3\xe9\xe0\xce\xbf\x3f\xc1\xf6\xdd\xfb\ \xb8\x71\xf6\x74\xfe\xf0\xfb\x0b\x01\x06\x79\xb1\xa3\xc5\x4b\x8b\ \xd7\xc8\x6d\x99\x39\xd7\x02\x6f\x0e\x1f\xd0\x8f\x17\x1f\x7e\x00\ \xa7\x5b\xe2\xad\x85\x87\x38\x59\x66\x6f\x18\xa8\x35\xc8\xc8\x22\ \xd1\x23\xa3\x0d\xd3\x87\xb6\x27\xb5\x4d\xa4\x49\xab\xe8\x68\xab\ \xa8\xb2\xf3\xcc\x47\x4b\xd9\xb8\xfb\xa8\x3f\xb5\xa0\xc6\xab\x86\ \x23\x4b\x21\xc6\x0d\x79\xba\x7c\xbe\x75\xf7\xad\x85\x7a\xac\x10\ \x5a\x46\x4b\xad\x9d\x8e\x51\xda\x4c\xcb\xe8\x1b\x68\xbc\x4d\x4e\ \x4a\xe0\x83\x97\xfe\x49\x46\xbb\xb6\x5c\x7e\xcb\x83\x2c\x59\xb9\ \x09\xe0\x3a\x7b\x5e\xee\x5b\x26\xb5\x72\xea\x40\xbc\x1f\xf0\x5b\ \x4a\x52\x62\xf4\x47\xcf\x3f\x4d\x52\x42\x22\x9f\xac\x3c\xc2\xae\ \x63\x15\x0d\x3c\xb3\x36\x18\xe8\x31\x5e\x59\x45\x18\xd7\x2b\x8d\ \xc9\xfd\xda\x61\xb3\x8a\x26\x68\x6b\xb4\xb9\xdd\x12\x1f\xce\x5d\ \xcf\xd7\x8b\xb7\x07\xe7\xd6\x30\x60\xc8\x6b\xa8\xc7\x4a\x10\xb0\ \xa8\x52\x13\xa7\xca\x63\x25\xd4\xf4\xaf\x6a\x7c\x7c\xf0\xc2\xa1\ \xc5\x57\x1b\xf7\x58\x51\x18\x0b\x42\xf0\x58\xd1\x65\xf4\x0d\x9e\ \xd3\xdd\xb3\x32\xf9\xe8\xd5\xc7\x29\x29\xab\xe0\xcc\xcb\xff\xc4\ \xf1\x82\xe2\x2a\x60\x84\x3d\x2f\x77\x93\x49\xad\x34\x3d\x88\xc7\ \x02\x9f\x88\x82\x10\xfd\xc8\x9f\xef\x24\x39\x31\x91\x5f\xb7\x15\ \x84\x01\xc4\xfd\x57\xb9\x60\xba\x45\xd2\x4d\xb7\xb8\x5c\xb0\x60\ \xf3\x09\xfe\xfd\xd5\x76\x36\xe6\x15\x63\x8a\xc6\xc3\x28\x0a\xcc\ \x39\x6f\x10\x77\xcc\x1a\x45\x94\xcd\xea\x37\x96\xb2\xd4\x82\x59\ \x4c\x42\x7f\x7f\xc3\x54\x4c\x42\xb5\x35\xd4\x62\x12\x06\xc6\xc9\ \x8f\xf2\x11\xd4\x5e\xf8\xfc\xf4\xa7\x74\x76\xed\xcb\xe3\x89\x17\ \xde\x26\x2d\x39\x91\x17\x1f\xbd\x13\x51\x14\xa2\x81\x4f\xbc\x98\ \xd2\x32\xe7\x4e\x0b\x9e\xf7\xaf\x02\x3d\xaf\xbb\xfc\x12\x86\xf5\ \xef\xc7\xe6\xc3\x65\x2c\xdb\x5d\xd4\x08\x13\x47\xcf\x03\xa9\x5e\ \x15\xbe\xb8\xc2\xc1\x87\x0b\xf7\xf3\xfa\x4f\xbb\x39\x56\x5c\x6d\ \x22\xb6\x86\x8c\x1d\xd0\x85\x87\x6f\x3a\x93\xb4\xe4\x38\x2f\x27\ \x2a\xe9\xe4\x58\x55\x26\x36\x4a\x13\x3d\xf8\xe5\x77\xb1\x50\x28\ \xe9\x20\x4e\x3a\x80\x5b\x46\x46\x21\xf0\xfb\x0e\x7a\xb8\x62\x35\ \xf0\xaa\x3f\x8e\x80\xf7\x08\xfa\xae\xfe\x63\x48\xd0\x18\x6b\x70\ \xe1\xc8\x7d\x46\x47\x3f\xf1\xe9\xaf\x22\x2f\x2f\xd3\x6a\x24\xf3\ \xa2\x4a\xb6\xcd\x4f\xbf\x9d\xc7\xdc\x5f\x96\x30\x76\x58\x3f\xfe\ \x78\xdd\x25\x00\x3d\xbd\x98\x62\x72\xe4\x4d\xcd\x8b\x0f\xed\xdf\ \x97\x97\x1f\xf9\x07\xc7\x4a\xec\xbc\xbf\xf4\x10\x0e\xb7\x14\x36\ \xf4\xd6\xf6\x42\x90\xd9\x4e\xeb\xd8\xde\x5a\x04\x18\xd3\x33\x8d\ \x33\x07\xa6\x13\x19\x61\xd1\x4d\x3f\x34\x95\x41\xb4\xb9\x78\xcf\ \x08\x02\x94\x55\xd4\xf0\xef\x0f\x97\xb0\x69\xef\x11\x1d\xe1\xdd\ \x72\xf7\xae\x31\x42\xf3\x8d\x7b\xac\x68\x86\xe6\xcb\x3d\x77\x01\ \x74\x8b\x3a\xc7\xac\xe6\xb1\x22\x05\x2b\x24\x4d\x92\x63\xa5\xa1\ \xa1\xf9\x68\xd2\x34\xfa\xbd\x9b\x02\xc6\xda\x7b\x8d\xd8\x98\x28\ \x3e\x7e\xf5\x49\x3a\xb6\x4f\xe7\xb2\x9b\xff\xc1\xd2\xd5\x9b\x9b\ \x1d\x5f\xde\x6a\x39\x72\x5b\x66\x4e\x5f\x60\x65\x72\x42\x42\xf4\ \x7f\x9f\x7f\x9a\xa8\xd8\x36\xbc\xb3\xe8\x20\xa5\xd5\xce\xb0\x6e\ \x5f\xa5\x80\xad\x6c\xb8\x27\x40\x7c\x74\x04\xe7\x0e\xc9\x60\xc8\ \x19\x29\x26\x3f\xae\xd2\xe6\x76\x4b\xbc\xf7\xdd\x1a\xbe\x5b\xb2\ \x03\xff\x64\x50\xa1\x86\xe6\x87\xea\x37\x2d\xf9\xd7\xb6\x08\xa5\ \xf4\x5a\x08\x8b\x02\x46\x0d\x9d\x28\xf1\xe3\x84\xc8\x31\x37\x30\ \x78\xc7\x88\x91\xda\xf7\xf3\xb2\x0b\x8f\xbe\xd0\x7c\x59\x65\x0a\ \x79\x23\x6c\xaf\x33\xba\xf0\xfe\x4b\x8f\x53\x54\x52\xce\x99\xb3\ \xfe\xc4\xc9\xc2\x92\x2a\x60\xb8\x3d\x2f\x77\xb3\xc9\x91\x37\x2e\ \x2f\xfe\xa9\x28\x08\xd1\x0f\xff\xf9\x0e\x52\x93\x93\xf8\x6e\xfd\ \xf1\xf0\x82\x78\xb8\xb8\x18\x0d\x7e\xb3\xb4\xd2\xc1\xc7\x8b\xf7\ \xf3\xd2\xf7\x3b\x38\x5c\x50\x89\x29\xca\xbc\xf9\x55\xd3\x87\x72\ \xdb\xe5\xa3\xb1\xd9\x2c\x1a\x76\x09\x2d\xfb\x45\xc0\x96\x5d\xf2\ \xf9\xcb\xc7\xb5\x2d\x90\x66\x09\xa2\x22\xd0\xe1\x66\xa7\xeb\x15\ \x70\x1c\xc1\x34\x89\x0e\x5e\x23\x98\x1b\x09\xf8\xc6\x7e\x2e\x84\ \x9a\x76\x1e\x49\xa1\x6f\x5a\xb4\x89\x36\xa5\x42\xc0\x67\x82\xc6\ \x96\x40\x37\x43\xff\xbe\xa0\x34\x86\xe8\xa0\x75\x14\xa8\x9b\xed\ \xbb\xf7\xf3\xf4\xcb\xef\xd0\x2e\x35\x89\x17\x1f\xb9\xa3\x96\x2f\ \xff\xb4\xa5\xf1\xe5\x2d\x8d\x23\x7f\x05\xe8\x79\xf5\xa5\x39\x8c\ \x18\x38\x00\x80\x0b\x07\xb7\x63\x5c\x8f\x64\xa2\x6d\x16\x9d\x3c\ \xa2\x41\x23\x89\xcc\xc4\x23\xc0\x87\x56\x96\x67\xf4\xa5\x59\x55\ \xde\xcf\x3b\x5e\xce\xf3\xdf\x6c\xe3\x8b\xe5\x07\xa8\x0a\x43\xa9\ \xb9\xd6\x2a\xe3\x07\x65\xf1\xf0\x4d\xd3\x48\x49\x8a\x09\x5e\x36\ \x55\x68\x51\x49\xc3\xe7\x5b\x73\xf1\x55\xfd\x48\x98\xfd\xd8\x8d\ \x28\x0b\x86\x4b\xde\xe9\xec\xaf\xca\x58\xa9\xf9\xc7\xfb\x3d\xd7\ \x8a\x0b\x9d\x1c\xc0\x12\xda\x3c\x55\x3c\xce\xa8\x1f\xbb\xc0\xff\ \xbe\xfe\x91\x9f\x16\x2e\x63\xfc\x88\x01\xdc\x7e\x4d\x4e\x2d\x5f\ \xde\xa2\xfc\xcb\x5b\x0c\xb5\x62\xcb\xcc\xb9\x06\x78\x6b\x50\x9f\ \xde\xbc\xfa\xe8\x83\x58\x2c\xfe\x6b\x50\x8d\xd3\xcd\xea\xfd\xc5\ \xac\xda\x53\x42\x95\xc3\xdd\xa0\x49\x12\xde\x02\x01\xfe\xdb\x3f\ \xd9\xad\xbe\xf7\xff\xb1\x91\x56\xce\x19\xdc\x81\xe1\x3d\xd3\x82\ \x6e\x8c\x49\xb7\x78\xda\x4a\x2b\xaa\x79\xea\x83\xc5\x6c\xdb\xe6\ \x7f\x68\xc2\x00\x00\x20\x00\x49\x44\x41\x54\x73\x54\x9d\x9a\xd0\ \xb5\xd5\x6f\x68\x31\x09\x94\xaf\x17\xe2\xb3\x12\xb6\xd0\x7c\x30\ \x1c\x6d\x8a\x4e\x3b\x8f\xbf\x3f\xb9\x5a\xdf\xe4\xc6\x4a\x0f\x15\ \xd2\xd0\x7b\x67\x24\x3e\xc0\x23\xf1\xb1\xd1\x7c\xf4\xea\x93\xb4\ \x4f\x6f\xcb\x25\x37\x3e\xc0\x8a\xb5\x5b\x01\xae\xb5\xe7\xe5\xbe\ \x6d\x72\xe4\x61\xe6\xc5\x93\x12\xda\x44\x7f\xf8\xdc\xd3\xa4\x25\ \x27\x2b\x4e\x74\xbb\xd3\xcd\xea\xfd\x25\xac\xdc\x53\x4c\xa5\xdd\ \xdd\x30\x20\x0f\x43\x81\x00\x39\xdf\x64\x25\x20\xaf\x6d\xeb\x94\ \x1a\xcb\x8c\xd1\x99\x74\x4a\x8d\x35\x81\x5c\xa6\xcd\xe5\x76\xf3\ \xce\x37\xab\xf9\x61\xe9\xf6\xf0\x17\x93\xf0\x39\x97\x80\xd0\xc4\ \xc5\x24\x7c\xf5\xdc\x10\x8b\x49\x84\xcd\x1f\x3d\x78\x11\xa2\xa1\ \xa1\xf9\x18\xf5\x7f\xa7\xc9\x0a\x8f\x48\x92\x44\xaf\xee\x59\xbc\ \xf7\xfc\xe3\x14\x16\x97\x32\x75\xd6\x9f\x28\x28\x2a\x3d\xe5\x7c\ \x79\xab\x01\x72\x2f\x57\xb5\x4a\x10\x84\x5e\xcf\x3d\x70\x3f\xa3\ \x06\x0f\x94\x9d\xe8\x81\x7f\x3b\x5c\x12\x6b\xf6\x17\xb3\x72\x6f\ \x09\x15\x35\x06\x28\x8b\x46\x49\x32\x84\x32\x18\x28\x5c\x4f\x00\ \x86\x77\x4f\xe5\xdc\xa1\x9d\x89\x8b\x6e\xfc\xdc\xe7\x0d\x39\xfe\ \x54\x01\xfb\xc2\xd5\x7b\x78\xed\x8b\x15\xd8\x1d\x4e\x19\x60\x95\ \x07\x2f\xff\x85\x95\x46\x2f\x26\x21\x85\x52\x4c\x02\x2d\x6d\xbb\ \x29\x8a\x49\x28\x00\x79\xa8\xc5\x24\x30\xe2\xb1\x22\x07\xe4\x8d\ \x5c\x78\xc4\x93\x3c\x9d\xcb\x2f\x38\x87\x7b\x6e\xbf\x8e\x05\xcb\ \xd7\x73\xc5\x6d\x8f\x20\x49\xd2\x36\x60\x98\x3d\x2f\xb7\xa2\x39\ \x03\x79\x4b\xe0\xc8\x5f\x01\x7a\x5d\x99\x33\x43\x11\xc4\xe5\x24\ \xc2\x22\x30\xea\x8c\x24\xfe\x30\x25\x93\x29\xbd\x53\x88\x8d\xb4\ \x86\xc6\x45\x1a\x7a\x5b\x67\xf0\x83\xa4\xcd\x3b\x4a\x12\xfc\xb6\ \xe3\x04\x4f\x7c\xba\x81\x25\x5b\x8f\xd2\xd8\xeb\x68\x53\xe4\x71\ \x09\xb7\x4c\x1c\x96\xcd\xc3\x7f\x98\x46\x6a\x42\x8c\xd7\x90\xa7\ \xec\x7f\x5c\x6b\xe0\x42\x26\xcc\x28\xa8\x59\x25\xf1\x8e\xee\x3c\ \x21\x81\xc6\x3c\x02\x8d\x7b\x04\xbc\x1f\xc0\xe3\xa2\x33\xf8\x4c\ \xf2\x31\x6b\xea\x32\x3c\xa2\x83\x9b\x96\xe7\x95\xd5\x3b\xa2\xe1\ \xff\xae\x99\xcb\x45\x90\x09\xf6\x51\x36\x24\x13\xe0\xc7\xae\x69\ \x48\x0d\x1c\x7b\xfc\xfb\x5b\x2b\x1f\x7f\x35\x97\x9f\x17\x2d\x67\ \xe2\xa8\x81\xdc\x7a\xd5\x0c\x80\x5e\x2d\x81\x2f\x6f\xd6\x1a\xb9\ \x2d\x33\x67\x26\xf0\xe9\xc0\xde\xbd\xbc\xbc\xb8\x25\x64\xd0\x71\ \xba\x24\xd6\xe5\x95\xb0\x62\x4f\x09\xe5\x8a\x5e\x2e\x0d\x09\xcd\ \xd7\xc1\x8b\x2a\x6c\xe9\xf4\x6c\xbd\x3b\x24\xc7\x30\x63\x4c\x16\ \x59\xed\xe2\x4d\xaa\x25\xa0\xad\xa4\xbc\x9a\xa7\xde\xfb\x95\x6d\ \x7b\x8f\x87\x16\x9a\x8f\xbe\xe2\x0c\xa8\x86\xe6\xd3\x44\xa1\xf9\ \x4a\x54\x01\x41\xae\x87\xaa\x54\x88\xaf\x19\xb8\xc1\xa9\x82\x25\ \x5d\x3e\xdf\xca\xbb\xd4\x10\x76\x13\x84\x90\xa6\x40\x42\xd7\x6e\ \x22\x2e\x36\x86\xff\xbe\xfa\x14\xe9\x6d\x53\x99\x79\xc3\x03\xac\ \x5c\xbf\x0d\xe0\x12\x7b\x5e\xee\x67\x26\xb5\x62\x1c\xc4\xe3\x80\ \xed\x51\x91\x91\x1d\x3e\x79\xe9\x59\xda\xb7\x6d\x1b\x96\xc9\xef\ \x96\x24\xd6\xe5\x95\xb2\x62\x77\xb1\x8c\xdb\xa2\xb6\xaf\x6f\x60\ \xee\x06\x1a\x34\x39\x8d\xa4\x2c\xf5\x68\x5f\x83\xba\xa5\x30\x7d\ \x44\x17\xda\xc4\x98\xb9\xcf\x7d\xdb\x5c\x6e\x37\x6f\x7f\xb5\x92\ \x1f\x97\x6d\xd7\x69\x2c\x6b\x68\x60\x91\x76\xba\x58\x9a\x73\x31\ \x09\xd4\x63\x25\x1a\x9e\xf3\x44\xab\x98\x04\x84\x5c\x4c\x02\x23\ \x46\x5f\xbd\x40\xee\x7f\xbd\x9e\xdd\xba\xf2\xde\x0b\x8f\x71\xe4\ \x78\x21\x13\x2f\xb9\x93\xaa\xea\x9a\xc3\x40\xcf\xa6\x4e\x79\xdb\ \x1a\xa8\x95\x07\x80\x0e\xd7\x5e\x36\xd3\x0f\xc4\x1b\x2a\x16\x51\ \x60\x68\x56\x02\x37\x4f\xe9\xcc\xd9\xfd\x52\x49\x88\x8e\x50\x25\ \x47\x24\x5d\xae\x5e\x52\x03\xe9\x16\x7d\xc7\x49\xc0\x9a\x5d\x27\ \x79\xfc\x93\x75\x2c\xd8\x98\x8f\xdb\x2d\x61\x4a\xed\x7d\x15\xb9\ \x7e\xc6\x48\x6e\xbe\x64\x0c\xb6\x08\x8b\x7f\xf8\xb7\xa2\x7b\xa9\ \x12\xad\x20\x29\x84\x9e\xcb\x50\x0e\x41\x54\x87\x7a\xf2\xd7\xba\ \x15\x48\xc6\x4f\x35\x34\x5f\x74\xad\xd0\x7c\x15\x9f\xed\x00\x92\ \xc9\x3f\x75\xb3\xa4\x90\xae\xd6\x98\xef\x78\x50\xda\x03\xe4\x07\ \x4e\x93\xae\xd2\xa4\x69\x14\xf2\xb0\xa0\x42\x19\xc9\x52\x48\x9e\ \xcf\x6e\xdf\xb5\x97\xd7\xdf\xff\x84\x4e\x19\x6d\xb9\xf3\xba\x99\ \x00\x1d\xbc\x98\x64\x52\x2b\x06\xb4\xf1\x3e\xc0\xfa\x2e\x1d\x3b\ \x58\xff\xfb\xfc\xbf\x89\xb0\x5a\x1b\x4d\xb3\x73\x4b\x12\x1b\x0f\ \x96\xb1\x6c\x57\x31\x25\x95\xf6\x00\x2f\x84\x50\xc2\xbb\x7d\xb6\ \x74\x60\x50\x93\x01\x23\x91\x7c\xed\x92\xa2\x99\x31\x3a\x8b\x6e\ \x1d\x12\x4d\xba\xc5\x47\x76\x1d\x38\xc1\x93\xef\xfe\x42\x61\x69\ \x65\x13\x87\xe6\xa3\xef\x7a\x6a\xd4\x8d\xe6\xce\x4c\x9e\xd2\x33\ \x6c\x78\x34\x12\x99\x8c\x91\xeb\xa9\xd1\x34\xca\xd7\x93\xdb\xbd\ \x08\xde\xa2\x7a\xda\xf7\x0e\x7d\x1e\x2b\xaa\xf4\x66\x70\xdf\x6c\ \x56\x2b\x9f\xbc\xf9\x2c\xe9\x6d\xd3\x98\x72\xf9\x5d\xec\xde\x7f\ \xd8\x09\x0c\xb4\xe7\xe5\x6e\x31\x35\x72\x7d\xf2\x32\x60\xbd\xfb\ \xa6\xeb\x1b\x15\xc4\x6b\x35\xf4\x41\x99\x6d\xb8\x79\x4a\x67\xce\ \x1b\xd8\x96\xa4\x58\x9b\xf1\xde\x6a\x15\x08\x08\x7a\x5b\x92\x59\ \x51\x05\x95\x55\x55\x92\x53\x99\x38\x56\x5c\xc9\x2b\xdf\x6d\xe1\ \xbd\x9f\xb7\x53\x52\x51\x63\x82\xb8\x57\xba\x75\x4e\xe3\x89\x3b\ \x2e\xa0\x47\x97\xb6\x6a\xb6\x39\x83\x49\xb8\x50\x89\x42\x14\x7c\ \x8c\x7d\x1a\x41\x62\xc8\x69\xbd\x3e\xad\x52\xa0\x9a\x4a\x90\x36\ \xad\xae\x61\x4a\x1a\xd1\xa6\x21\x04\xe1\xf8\x15\xa1\x50\x19\x4b\ \xa5\xe0\x1f\xb4\x03\xf0\x02\x07\xca\x1f\xc0\x24\x8d\x5d\xb3\xd2\ \xa6\xb8\x61\x01\x5b\x76\xa7\x83\x27\x5e\x7c\x83\x88\x08\x2b\xff\ \xfc\xeb\xf5\x00\x56\x2f\x36\x35\x3b\x69\x76\x40\x6e\xcb\xcc\x99\ \x03\x8c\x9f\x36\x7e\x2c\xc3\xfa\xf7\x6b\xba\x81\x10\x60\x40\xe7\ \x36\xdc\x34\xa5\x33\x17\x0c\x69\x47\x6a\x5c\x84\xc1\xe8\x68\x49\ \xc7\xd6\x5b\xf2\xdb\x02\xe2\xb7\x31\x0c\xce\xaf\xa8\x2f\xb2\x4e\ \x62\xfd\xde\x93\x3c\xf6\xbf\x35\xfc\xb4\xee\x20\x2e\x93\x6e\x01\ \x20\xa9\x4d\x34\x0f\xde\x74\x0e\x53\x47\x76\xd7\x0f\x06\x68\x80\ \x81\x22\xfd\x65\xcc\xbb\x49\xd5\x63\x25\x30\xf4\x5c\x71\xdb\xec\ \x0f\xfa\xba\xc0\xd8\x50\xda\x00\xbd\x99\x17\x91\xa7\x36\x7c\x40\ \x1f\x41\x29\x12\x5a\x8b\x8a\xc1\xaf\xca\x4f\xa8\xdf\x09\xbf\x05\ \x09\x90\xb4\x52\xe1\xd6\xf7\x6d\xc5\x9a\x0d\xfc\xbc\x68\x39\x63\ \x87\xf5\xe3\xa2\xb3\xc7\x02\x8c\xf7\x62\x94\x49\xad\xa8\x80\x78\ \x02\xb0\x23\x36\x26\xba\xdd\xa7\x2f\xbf\x40\x5a\x72\xd2\x29\xd3\ \xf6\x24\x09\xb6\x1c\x2e\x65\xc9\x8e\x42\x4e\x96\xda\x15\xb7\x7f\ \xda\xdb\x37\x34\xaa\x9b\x18\xcf\xa0\xe8\x6f\x2c\xc3\xef\xf8\xb4\ \xc4\x48\x66\x8c\xce\xa6\x57\xe7\xe4\xd3\x56\x23\x0f\x94\x9f\x56\ \xec\xe0\x3f\x5f\x2e\xc7\xe1\x74\xf9\xdc\x3e\x9d\xc1\x22\x72\x51\ \x8c\x9a\xd4\x02\x8d\x5c\x4c\x22\xd8\x58\xe8\xdb\xb7\x86\xd6\xd5\ \xf4\x9b\xea\xe1\x28\x26\x81\x51\x5a\x48\xde\x40\x1a\xba\xd1\x17\ \x1d\x46\x5f\xe5\x8c\x8d\xed\xd2\x52\xf8\xec\xed\x17\x28\x2d\xaf\ \x64\xfc\xc5\xb7\x51\x56\x51\x75\x0c\xe8\x61\xcf\xcb\x2d\x31\xa9\ \x15\x79\x79\x04\x68\x77\xe3\xef\x66\x91\x9a\x94\x74\x6a\x57\x38\ \x01\xfa\x76\x6c\xc3\x8d\x53\xba\x70\xf1\xf0\x74\xda\x06\x94\x6c\ \xd3\xa4\x52\x34\x73\xfb\x87\x21\xe1\xbe\x8c\x86\x78\xa2\xb8\x9a\ \xd7\xbf\xdb\xcc\x5b\x73\xb7\x50\x50\x6a\xe6\x3e\x07\x38\x73\x64\ \x0f\x1e\xb8\xe9\x1c\x92\xda\xc4\x04\x38\x5f\x2b\x17\x66\x95\xcd\ \xb1\xad\xf5\x4f\x12\x14\xe8\x06\xb4\xe9\x0e\x43\x79\x45\x64\xb4\ \x4e\xc5\x07\x4e\x49\x63\xd7\x69\xf4\x55\xf3\xe1\xf6\x6a\xe3\x68\ \x24\xc7\x92\x1f\x2b\x34\xc6\x0a\x99\xfc\xf0\x2a\xda\xb9\xaa\x1f\ \xbb\xda\xce\x5a\xcd\x8f\xdd\x73\xec\xb1\x93\x05\xbc\xfe\xfe\xc7\ \xb4\x4b\x4d\xe2\x2f\x37\xcf\x02\x68\xe7\xc5\x2a\x53\x23\x97\xd1\ \xc6\x07\x01\xab\xba\x67\x65\x59\xde\xfb\xf7\xbf\x10\x45\xb1\x79\ \x69\x7b\x02\x6c\x3f\x5c\xc6\xe2\xed\x27\x39\x56\x52\xad\xa0\x85\ \x19\xd0\x2c\x94\x8c\x65\xa8\xb9\x50\x61\xc8\x65\xcb\x6a\x11\x99\ \x3c\xb0\x23\x67\x0e\xe9\x8c\xd5\xd2\xfa\x4b\xcd\x69\x49\x61\x69\ \x25\x4f\xbd\x3b\x9f\x5d\x79\xc7\x34\xd3\xcd\x06\xa7\x55\x40\xe3\ \xde\xc9\xf9\x39\xab\x68\x91\x41\x3e\xe8\xe1\xcb\x2b\x22\x6b\x40\ \xc7\xc8\x4e\x50\xbb\xae\xa6\x31\x43\xa7\x96\x06\xad\xb0\x9b\xd0\ \x15\x6b\x11\xa8\xb1\x1b\x30\x52\xfb\xce\x1b\x8d\x5a\x03\x56\x8b\ \xc8\x07\xaf\x3c\x4d\x97\xce\x1d\x38\x7b\xf6\xdd\x6c\xd9\xb1\xcf\ \x85\x27\xe2\x73\x5d\x73\xd0\xc8\x9b\x05\x90\xdb\x32\x73\x04\x60\ \x99\x20\x08\x23\xdf\x7c\xfc\x51\xfa\xf5\xec\xd1\xac\x81\x63\x7b\ \x7e\x19\x4b\xb6\x9d\xe0\x48\x71\x0d\x86\x8a\xd0\xea\xf6\xbd\x45\ \x66\x01\x30\x90\x64\x28\x60\x02\x24\xc7\x47\x72\xd1\x98\x6c\xfa\ \x77\x4d\x53\xdc\x7d\xb4\xa4\xb6\x86\x44\x97\x3a\x5d\x6e\xde\xcc\ \x5d\xca\xfc\x55\x3b\x02\xb6\xf7\x06\xa8\x10\x99\x00\x21\xc3\x85\ \x47\xb4\x68\x1a\xad\x62\x0b\x61\x0c\xcd\x0f\x54\xe3\xc3\x5f\x4c\ \xc2\x28\x15\xa2\x63\xe1\xd1\x04\x72\x7d\xa1\xf9\xf2\x7d\x93\x5f\ \x44\x06\xf7\xeb\xcd\x6b\x4f\x3f\xcc\x9a\x8d\x3b\xb8\xe0\x9a\xfb\ \x90\x24\x69\x05\x30\xda\x9e\x97\x2b\x9d\x6a\x20\x6f\x2e\xd4\xca\ \xb5\xc0\xc8\xe9\x53\x27\x37\x7b\x10\x07\xe8\x99\x11\xcf\xf5\x53\ \xbb\x72\xf9\xe8\x8e\x64\x24\x45\xe9\xa4\x42\xa4\x10\xeb\x38\xea\ \xf3\x63\x57\x33\xde\x15\x96\x55\xf3\xd6\xdc\xcd\xbc\xfa\xf5\x46\ \x4e\x14\x57\xb6\x7a\xcd\x5b\x4d\xac\x16\x91\x9b\x2e\x1d\xc7\x75\ \x33\x46\x63\x15\x45\x3f\x8d\x46\x39\x37\x77\xc0\x56\x3f\xc0\xff\ \x5b\x92\xdd\xfe\x6b\xa4\x31\x0e\x30\x7c\xd7\x53\x33\x42\x70\xee\ \x74\x39\x4a\x05\x1d\x86\x4a\x9d\xe9\x5f\x03\x07\x59\xd9\xd3\xc7\ \x28\xa5\xa1\xc7\x7f\x5b\x2b\xa4\x3f\x20\xab\x7a\x50\x9a\x83\xe0\ \x4e\x07\xd2\x32\xc1\xde\x46\xe8\x48\x65\x1d\xec\xb8\xb0\x6e\xd3\ \x56\xbe\xfd\xe9\x57\x86\xf4\xef\xc1\xe5\x17\x4e\x06\x18\xe9\xc5\ \x2e\x93\x5a\xb1\x65\xe6\xa4\x00\x3b\x12\xe2\xe3\x53\x3e\x7b\xe5\ \x05\x12\xe2\x5b\x5e\x08\xfa\xee\x23\x65\x2c\xdc\x76\xc2\xa7\x40\ \x84\x76\x35\x15\x29\x60\x9b\xaa\xea\x8f\x6e\xd8\xa7\x39\x78\xe1\ \xa8\xbd\x9e\x45\x14\x98\x38\xa0\x13\xd3\x86\x65\xd6\x05\xce\x9c\ \x0e\xb4\x8a\x9c\x6c\xdb\x77\x94\x7f\xbf\xf7\x33\xc5\x65\x55\xda\ \x95\x65\xa4\xc0\xb9\xa0\x4c\x2d\x10\x40\xd3\x34\x28\xa2\x53\x89\ \xa6\xd1\xca\x1a\x18\x44\xd3\xe8\xa7\x42\x90\x94\xd2\xd5\xea\x7c\ \x36\x0d\xd0\x34\xe1\x0e\xcd\x47\x95\xb2\x92\xbc\x90\x67\xb4\x34\ \x5d\xfd\xf1\x49\x89\x89\x7c\xf6\xf6\x0b\x38\x9c\x2e\xc6\xce\xb8\ \x8d\xa2\x92\xb2\x02\x3c\x86\xcf\x82\xd3\x5d\x23\x7f\x1c\x48\xb9\ \xf5\xca\xd9\x75\x20\xde\xd2\xe4\x8c\xf6\xf1\x5c\x3b\xb9\x2b\xb3\ \xc7\x77\xa1\x53\x6a\x8c\x42\x35\x71\x7d\xca\xb7\x6e\x2d\x5d\xef\ \x71\x01\x1a\x8b\xcb\xed\x66\xfe\xba\xfd\x3c\xfa\xe1\x0a\xd6\xee\ \x3a\xce\xe9\x2c\xbd\xb2\xd2\x79\xe2\xce\x19\x9c\xd1\xa9\xad\x81\ \xaa\x32\x92\xa6\x0f\x75\xdd\x6a\xa3\xf0\xd2\xaf\xad\x06\xb8\xb1\ \x4a\x0a\x86\x43\x59\x97\x40\x3d\x06\x56\x19\xed\x3c\x60\xfb\x20\ \x09\xa8\x6a\xec\xc8\x44\x45\x6a\x46\x7d\x82\xfe\xef\x1e\x78\x9c\ \xc6\xf7\xaf\xff\xe2\xc8\x14\xba\x10\x42\x9c\x4b\xf5\x8d\x85\xc5\ \xc5\xbc\xf8\xd6\xfb\x24\x25\xc4\x73\xdf\xed\xb3\x01\x52\xbc\x18\ \x76\xfa\x6a\xe4\xb6\xcc\x9c\x91\xc0\xb2\xbe\x3d\xba\x0b\x6f\x3d\ \xf1\x4f\xbf\x81\x6e\xc9\x9a\xe2\xbe\x63\xe5\x2c\xd8\x72\x9c\x03\ \x27\xcb\x65\x56\x7a\x50\x8e\x0a\xd4\x4a\x59\x1a\xa0\xd5\xf9\x68\ \x5e\xa1\xd6\x4a\xec\xd6\x21\x89\x4b\x26\x76\x27\x3d\x39\xee\xb4\ \xa5\x5b\x9c\x4e\x17\xaf\x7d\xb6\x98\x85\xab\x77\xe9\xcb\xf3\x11\ \xe4\xbe\xa6\x56\x40\x41\x3e\xbd\xad\xf1\x62\x12\x28\x3f\x2b\xde\ \xc5\xc5\x4f\xc3\xf5\xd5\xb6\x55\xf8\xe6\x60\x0d\x5a\x4d\xa3\x0d\ \xee\x1b\x1a\xda\xbd\xe4\xbf\x95\x09\x53\x31\x09\xf4\xe5\x7f\x97\ \xd9\xb9\xca\x46\xd0\x6a\x5e\xcf\x7f\xa7\x2c\x8a\x02\x6f\x3f\xf7\ \x38\x3d\xbb\x75\xe5\x82\xab\xff\xc6\x9a\x4d\x3b\x25\x2f\x57\xbe\ \xe2\x54\x69\xe4\xa7\x0c\xc8\xbd\x06\xce\xd5\xa2\x28\x0e\x7e\xef\ \xdf\xff\xa2\x7b\x56\x56\x8b\xdf\xde\x07\xb6\xed\x3f\x5e\xce\xc2\ \x2d\xc7\xd8\x7f\xbc\x22\x08\x0c\x34\x27\x40\x43\x93\x0c\x29\x3d\ \x90\x04\x1b\x75\x44\x60\x5c\xff\x8e\x9c\x3b\x32\x9b\x28\x9b\xf5\ \xb4\x03\xf2\x5a\x99\xbb\x64\x0b\xef\x7f\xbd\x1c\xa7\xdb\xa5\x42\ \x63\x61\xac\x98\x04\x06\x8a\x49\xc8\x56\xe9\x31\xf0\xac\x28\xd1\ \x34\x72\x40\x6e\xa4\x8a\xbd\xaf\x02\xa1\x92\x08\x4b\x15\xc8\x0d\ \x67\x29\x0c\x01\xc8\x75\x64\xb4\x54\x1a\x37\xa3\x1e\x3d\xbd\xba\ \x67\xf3\x9f\xe7\x9f\x60\xeb\xce\xfd\x9c\x3d\xfb\x6e\x5c\x6e\xf7\ \x5a\x60\x68\xb8\x0d\x9f\x2d\x81\x5a\xb9\x00\x18\x7c\xd1\x59\x67\ \x06\x81\x78\x93\x6c\x45\x9a\x00\x34\xba\xb4\x8d\xe3\xaa\xc9\xd9\ \x5c\x3d\x25\x9b\xec\xf4\x38\x8c\x1b\x3a\xf5\x1d\x22\x19\xfc\x3b\ \xb0\xd1\x25\xc1\x82\x0d\x07\x79\xe4\xfd\x65\xac\xdc\x96\xdf\xac\ \xc7\xbe\x31\xf3\xa1\x9f\x33\xb6\x0f\xf7\xdf\x78\x1e\x09\xf1\x31\ \x2a\xa1\xf9\xa8\x86\xe2\x2b\xfa\x9e\x4b\x72\x06\x3c\xb5\x9c\xdf\ \xc1\x39\xb6\xf5\x14\x2c\xd6\x8e\x30\xd6\x13\xad\x19\x68\x58\x55\ \xa6\x67\x02\xbf\x80\x3c\x35\x25\x17\xd2\x2f\xe9\xf0\xa3\x57\xa2\ \x80\xd4\x6b\x70\xd6\xfb\x87\xcb\x51\x2f\xf5\xc6\x5d\x41\x31\xad\ \x82\x76\x4e\xf3\xed\xbb\xf6\x90\xfb\xed\x8f\xf4\xe9\x91\xc5\x15\ \x17\x9f\x09\x30\xd8\x8b\x69\xa7\x17\xb5\x62\xcb\xcc\x59\x65\xb5\ \x58\x86\x7e\xfe\xda\xcb\xa4\xa7\xa5\xb6\x3a\x6d\x5c\xae\xed\xe0\ \xc9\x0a\x16\x6e\x3e\xca\xae\x23\xa5\x9a\x5b\x6f\x49\x92\xd9\x0a\ \x22\xaf\xa9\x69\xd3\x34\xa8\x68\x98\xc1\x5a\x56\x56\x46\x02\x97\ \x4c\xec\x49\xc7\xb4\x36\xa7\x8d\x36\xee\x2b\x05\xc5\xe5\x3c\xf9\ \xce\x3c\xf6\x1d\x3a\x81\xe1\xfc\xf1\x7e\x9a\xb5\x8e\x08\x52\x0d\ \x8d\x16\x39\x9a\xc6\x68\x5d\x4d\x39\x8d\x1d\x0d\x4a\x4f\xd7\xb3\ \x22\xe3\x63\xae\x87\xd2\x23\xf8\xd9\x14\xd0\xd8\xfd\xa0\x95\x8f\ \x5d\x6d\x2c\x90\xa5\xc4\xf4\xef\x74\x7c\x63\x09\xea\x8f\x8b\x8b\ \x8b\xe3\xab\xf7\x5e\xa5\xa8\xa4\x9c\xd1\x17\xfe\x01\x87\xd3\xb5\ \xda\x9e\x97\x3b\xec\xb4\xd1\xc8\x6d\x99\x39\xd3\x80\xa1\x67\x4f\ \x9c\x10\x04\xe2\xad\x59\x3a\xa5\xc6\x32\x67\x52\x36\x37\x4c\xeb\ \x4e\xf7\x8c\x36\x88\x0a\x2e\x63\x10\xac\x29\xd4\x2f\xb9\x92\x46\ \x8e\x2e\x7d\x91\x80\x6a\x91\x87\xfb\x8e\x94\xf0\xd4\xc7\xbf\xf1\ \xc9\x2f\x5b\xa9\xac\x71\x70\xba\x49\x4a\x62\x1c\x0f\xdf\x7a\x21\ \xe3\x06\x77\xab\xd3\x76\x82\xdd\x11\xc3\x60\xc8\xd3\xaa\x92\xe3\ \x9b\xf2\x15\x64\x23\x51\x35\x35\x5a\x35\xf7\x45\x64\xdc\x20\x75\ \x27\xd3\x92\xd7\x8a\xfd\xd5\x6e\x85\xaa\x3d\xb5\xdf\xcd\x27\x12\ \x56\xe6\xc9\x56\xd8\x8c\x1a\x54\x28\x43\xf5\x32\x90\xb4\x0f\x29\ \x2b\x2b\xe7\xd3\xaf\xbf\xa7\x43\x7a\x2a\x17\x9f\x3b\x01\x60\xa8\ \x17\xdb\x4e\x0f\x8d\xdc\x96\x99\xb3\x48\x14\x84\x71\xff\x7b\xe9\ \x79\x32\x3b\x64\xb4\x4a\xed\x5b\x4f\x5b\x7e\x61\x25\x0b\x36\x1d\ \x61\xc7\xe1\x62\x3f\x03\x59\xe8\x79\x3a\x90\xd5\x36\x8c\xe7\x15\ \xa9\xff\x5f\x6c\xb4\x95\xf3\x47\x77\x63\x4c\xdf\x4e\x7e\x7d\x6f\ \xcd\x1a\xb9\xaf\x7c\xb7\x68\x23\x1f\x7e\xbb\x02\x97\xcb\x85\xbc\ \x91\x39\x60\xec\x54\x8b\x37\x1b\xcc\xb1\xa2\x27\x98\x06\xe5\x20\ \x25\xf9\xbc\x29\xca\xd7\xd3\x76\x05\x44\x63\x37\xa2\x6e\xe7\x41\ \xaf\x9d\x87\x10\x8d\xbe\x92\x01\x23\xb5\x4c\xe0\x11\x86\x6b\xa2\ \x42\x72\x52\x22\x5f\xbc\xf3\x0a\x87\x8e\x9c\x60\xfc\xcc\xdb\x71\ \xbb\xa5\xc5\xf6\xbc\xdc\xf1\xad\x5e\x23\xb7\x65\xe6\x8c\x07\xc6\ \x4d\x19\x33\x9a\xce\x19\x19\x9c\xce\x92\x91\x1c\xc3\xef\x26\x64\ \x73\xf3\xb9\xbd\xe8\xdd\x29\x11\x51\x90\x34\x52\x84\x6a\xb9\x7a\ \xc9\x01\x9d\x56\x86\x3e\xf5\xc0\x93\xca\x6a\x07\xff\x9b\xbf\x95\ \x27\x3f\x5e\xce\xfe\xa3\xc5\xa7\xdd\x3d\x3a\x6f\x7c\x7f\xee\xbb\ \xfe\x3c\xda\xc4\x45\x7b\x34\xca\x20\xce\x57\x52\xc8\x1b\xa2\x90\ \x86\x35\xd4\xc2\x23\x5a\x2a\xa3\x0e\xa5\x52\x06\x8e\x15\x52\x30\ \x4b\xfa\xaf\x1b\x36\xad\x38\x94\xe3\xa4\x46\xb8\xb8\xbe\x31\xa8\ \x7d\xb7\xb0\xa8\x98\x2f\xbe\xff\x91\xae\x99\x19\x9c\x3f\x75\x34\ \xc0\x38\x2f\xc6\xb5\x6e\x8d\xdc\x96\x99\xf3\xa3\x20\x08\x67\x7d\ \xf0\xcc\xd3\x9c\xd1\x25\xd3\x2c\x86\xe0\xd3\x76\xac\xb8\x8a\x05\ \x1b\xf3\xd9\x72\xa0\xd0\x9f\x1b\x94\xe5\x29\x51\xd6\x9c\x0c\xf2\ \xb8\xf2\x99\xe0\x82\xb5\x2c\x01\x81\x11\xbd\x33\xb8\x70\x5c\x0f\ \xe2\x63\x6c\xa7\x85\x46\x5e\x2b\x27\x8a\xca\x78\xea\x9d\x1f\xd8\ \x7f\xf8\x24\x6a\x85\x47\xd0\x0c\xbe\x01\xdd\x61\xfc\xaa\x1a\x22\ \xca\xa1\xf2\xa8\x79\x69\xa8\x95\xb6\x0b\x25\x34\x1f\xff\xdd\x81\ \x81\x50\x79\xe4\x3c\x64\x94\x3c\x48\xd0\x48\x69\x61\x64\xe7\x89\ \x5a\x9a\x02\x79\xed\x5e\xd1\x2e\x05\xb4\x4b\x4d\xe1\xd3\xb7\x5f\ \x62\xd7\xbe\xc3\x4c\x9d\xf5\x27\x24\x49\x9a\x67\xcf\xcb\x0d\x0b\ \xc5\xd2\x2c\x35\x72\x5b\x66\xce\x30\xe0\xac\xb1\x43\x87\x70\x46\ \x97\xcc\xf0\xaf\x4a\x2d\x1c\x34\xda\x25\x46\x73\xd9\xf8\x6c\x6e\ \xbb\xa0\x2f\xfd\xb3\x92\x11\x05\x41\x3e\x94\xdb\x27\x38\x85\x00\ \xed\x5d\xb1\xa0\x81\x2f\x4f\xe9\xc3\xe3\x2a\x27\xbd\x0e\x38\xb7\ \xb7\x6d\xc5\xd6\xc3\x3c\xfc\xce\x42\x16\xac\xdd\xef\x5f\x4f\xb4\ \x15\x83\x38\x40\x5a\x52\x3c\x8f\xdc\x76\x31\x63\x06\x75\x33\x42\ \xa3\xfa\xef\xdc\x75\xf3\xb1\x8d\xa0\x45\x86\xa0\x88\xe9\x2b\x42\ \x11\x10\x24\xa5\x2b\xab\x23\x41\x1e\x24\x68\x04\x03\x29\x5a\x14\ \x7c\x9e\x63\xed\x34\x05\x18\x48\x53\xe0\x6f\x33\x50\xcb\xba\x78\ \xfc\x64\x01\xdf\xce\xfb\x85\x5e\xdd\x32\x99\x3a\x6e\x08\xc0\x59\ \x5e\xac\x6b\x32\x69\x6a\x6a\xe5\x3e\x80\xab\x2f\x99\xd9\x62\x27\ \x75\x53\x80\x53\xdb\x84\x68\x2e\x1d\x97\xcd\xed\x17\xf6\xa3\x7f\ \x56\x2a\xa2\x28\x68\xa4\x58\x55\xca\x8f\x61\x24\x6d\xa8\x24\x3b\ \x11\xfc\x66\x98\x57\x2a\x6b\x9c\x7c\xb6\x60\x1b\x8f\x7f\xb0\x94\ \x3d\x87\x0a\x4f\x1b\x9a\x25\xc2\x6a\xe1\xf6\x2b\xa6\x32\xfb\xfc\ \xd1\x58\x2c\xa2\x6c\x7a\x57\xc5\x15\x35\xc8\x1d\x51\xee\x7e\xe8\ \xa8\x8f\xa9\x2b\x35\x2b\x75\x05\x14\x54\x50\x52\xd9\x65\x51\x73\ \x7e\x69\x2f\x1c\x9a\x2e\xb1\x52\x88\x54\x88\xce\x7c\x45\x41\xbb\ \x85\xb0\xd0\x34\xca\x0b\xe4\x87\xb9\x5f\xe1\x76\xbb\xb9\xe3\xda\ \x99\x7e\x58\xd7\xea\xa8\x15\x5b\x66\x4e\x3f\x60\xc3\xb0\xfe\xfd\ \x84\x17\x1f\xfa\xc7\x69\x4d\xa1\x18\x6d\x2b\x28\xab\xe6\xd7\x8d\ \x87\xd9\xb4\xf7\x24\x2e\x49\x52\x31\x74\xea\xdc\x6e\xa2\x27\x20\ \x83\xe0\xed\xad\x5c\x5e\x11\x01\x86\x76\xcf\xe0\xe2\x49\xbd\x48\ \x88\x8d\x6c\xb5\x1a\x79\xa0\x6c\xda\x79\x88\xe7\x3e\x98\x47\x79\ \x65\xb5\x7e\x6a\x22\x88\xd2\xf2\xa7\x18\x74\x51\x0b\xb2\xae\x79\ \xa1\x14\x93\x40\xde\x50\xaa\x40\xd7\xf9\x83\xa1\x8e\x62\x12\x86\ \x6b\x7e\xea\x29\x26\x81\x6e\xa3\xaf\xd4\x00\xa3\x2f\x32\xb5\x54\ \x35\x8d\xdc\x48\xdc\x77\xe7\x2d\x9c\x7b\xe6\x24\x2e\xbd\xf9\x1f\ \x2c\x59\xb9\x49\x02\x06\xd8\xf3\x72\x37\xb5\x36\x6a\xe5\x6f\x80\ \x50\xab\x8d\x9b\xa2\x5f\x52\xe2\xa3\xb8\x64\x6c\x36\x7f\xbc\x78\ \x20\x83\xcf\x48\xc3\xe2\xcd\x2d\x1e\xe8\xea\x25\x57\x1c\x52\x51\ \xe3\x0a\xd4\xdc\x83\xca\x5f\x69\x55\x91\xf7\xe6\x15\x91\x60\xf5\ \x8e\x7c\x1e\x7e\x7b\x01\x3f\xad\xda\x8b\xfb\x34\x29\x35\xd7\xaf\ \x7b\x47\x1e\xbb\x73\x26\x9d\xdb\xa7\x10\x76\xe3\xa0\x6e\x2a\x44\ \x52\xa4\x71\x42\xef\x8b\x0e\xa7\x3f\xd9\x5c\x42\x52\xa8\xa7\x6e\ \xa0\x28\x1b\x7d\xb5\xb3\x1a\x2a\x65\x6c\x0c\xde\xb6\xfa\x19\xb9\ \x15\xa8\xa3\x0f\x73\xbf\x44\x92\xa4\x5a\xad\x5c\xf0\x62\x5e\xeb\ \xd1\xc8\x6d\x99\x39\xdd\x81\x6d\xfd\x7a\xf4\x10\xdf\x7c\xe2\x9f\ \xa6\xa6\xdd\xc0\xb6\xe2\x8a\x1a\x7e\x5d\x7f\x88\x75\x7b\x4e\xe0\ \x74\xbb\x3d\xef\x4b\x3a\xc3\xc3\xfd\x14\x72\xad\x2c\x7e\x0a\x2e\ \x5b\x0a\x99\xf9\x24\x09\xd2\x93\xe3\xb8\x64\x72\x1f\x7a\x66\xa6\ \xb6\x6a\x8d\xbc\x56\xec\x0e\x27\xaf\x7c\x3c\x9f\x15\x1b\x76\xcb\ \x68\xa1\x01\x63\xaf\xa5\x85\x4a\x92\x82\xd6\x17\xa8\x85\x06\x6a\ \xb9\x1a\x55\xe5\xd1\x5b\x56\x50\x86\x36\xd1\x9d\x41\x11\x1d\x86\ \x55\xb9\x7c\xec\xe8\x08\x2c\x32\xb0\xf3\x44\xdb\xd0\x59\xff\xfd\ \xf5\x8f\x8f\xdf\x9c\x50\xd4\xce\xe1\xc1\x7b\xee\x64\xca\xf8\x31\ \x4c\xbf\xfa\x6f\xac\xd9\xb8\xc3\x0d\xf4\xb2\xe7\xe5\xee\x6c\x2d\ \x1a\xf9\xbd\x80\x78\xf5\x25\x39\xa6\x7a\x1d\x06\x49\x8c\x8d\x64\ \xc6\x98\x6c\xfe\x3c\x73\x10\x23\x7a\xb4\xc3\x66\x09\x05\xe1\xb4\ \xb5\x48\x6d\x2d\x2c\xf8\xb8\xa3\x85\x65\xbc\xf0\xd9\x72\xde\xf8\ \x7a\x35\x45\xa5\x55\xad\xfe\x5e\xd8\x22\xac\xdc\x31\x67\x1a\x97\ \x9f\x37\x0a\xd1\x22\xa2\x37\x9b\x9e\x96\x06\xad\xe6\x3a\x28\x67\ \xfc\xab\x77\x21\xd5\xc8\x22\x88\xbe\x00\x1f\x39\x40\xd1\x0e\xa3\ \x0f\xce\x36\xa8\x1a\x38\xa5\x90\xa6\x40\x08\xdc\x65\x1a\xc9\x1d\ \x8e\x46\x61\x65\xaf\x46\x60\x24\x34\x3f\x28\x4d\x80\x9c\x76\xee\ \x1d\xfb\x0f\x3e\xf9\x02\x80\x3b\xae\xcd\xa9\xc5\xd7\x7b\x5b\x85\ \x46\x6e\xcb\xcc\xc9\x04\x76\x75\xcf\xca\x8a\x78\xff\x99\xa7\x0c\ \x6b\x5d\xcd\x2d\xf0\xa4\x39\xf6\xb9\xb4\xc2\xce\x82\x0d\x07\x59\ \xbd\xe7\x38\x4e\x87\x4b\x83\xd3\x54\xd0\x52\x90\xd3\x10\x65\x8e\ \xd7\x55\x6e\xcc\x7b\xef\x6d\x22\x67\x0d\x3f\x83\xb3\x86\x9f\x51\ \x67\x1c\x6c\x4d\xda\x78\xa0\x6c\xd8\x71\x80\x17\x3e\x9c\x47\x45\ \x45\xb5\x46\xfe\x78\xf4\xe7\x04\x97\xb5\x5d\xe8\x28\x8f\x16\x8e\ \x2a\x3d\x92\xc2\xd2\xad\x3b\xdb\x26\xfa\xb2\x7b\xa2\x1e\x9a\x6f\ \xac\x52\x96\xd1\x0a\x43\x72\xb6\x07\xf9\xeb\xca\x8e\x3d\x04\x69\ \xf7\x8f\xfd\xfd\x6e\xc6\x8e\x18\xc6\x99\xbf\xfb\x33\x5b\x76\xec\ \x73\x00\xdd\xec\x79\xb9\x79\x2d\x5d\x23\xbf\x07\x88\xb8\x6a\xe6\ \xc5\x2d\x7e\xb2\x36\xd7\x3e\xb7\x89\xb5\x71\xc1\xe8\x6c\xfe\x32\ \x73\x08\xa3\x7b\xb7\x27\xc2\x2a\x1a\xe4\x26\x1b\xa3\x10\x34\xd4\ \xd8\x5d\x7c\xb3\x64\x3b\x0f\xbd\xf5\x2b\x9b\xf7\x1c\x6b\xf5\xda\ \xf9\x80\x1e\x9d\xf9\xe7\x1d\x97\xd0\x29\x3d\x45\xa3\x82\x8e\x5c\ \x88\xbc\x42\xc1\x61\x82\x73\x6c\xa3\xa5\x71\xfb\x15\x82\x16\x74\ \x14\x82\x16\x34\x34\xf6\xe0\x1b\xad\xa6\xf5\x12\x18\xa0\x16\x98\ \x68\x2b\xa0\x12\x10\x01\xfb\x0b\x50\xf0\x06\xc2\xa8\x76\x2e\xe3\ \xbd\xa5\x9a\x94\x4b\x8e\x03\x0f\xee\x8c\x6c\x52\x30\x9f\x8f\xbc\ \xfb\x71\x2e\x00\xb7\x5f\x73\x31\x40\x84\x17\x03\x5b\xae\x46\x6e\ \xcb\xcc\x69\x0f\xec\xcb\xec\x90\x11\xf9\xf1\x8b\xcf\x23\xb6\x92\ \x7c\xe3\xcd\xbd\xad\xbc\xca\xc1\xc2\x0d\x07\x59\xb9\xe3\x28\x76\ \xa7\x4b\x57\x80\x84\xb2\xa5\x5f\x39\x20\x43\x5e\x63\x47\x31\xe1\ \x52\xdf\xec\x74\x2e\x9d\xda\x97\xd4\x84\xd8\x56\xa9\x91\xd7\x2f\ \x60\x4e\x5e\xfe\x68\x1e\x2b\x37\xed\x35\x16\x9a\x1f\x34\xdf\xf4\ \x54\xc2\x91\x02\x9c\x4e\xb4\xee\x5d\x70\x7e\x7c\x63\x55\x7a\xa4\ \x20\xce\x4d\x3b\x05\xb3\x96\x76\x8f\xea\xf5\xe4\x2b\x30\xa1\xb1\ \x9b\xd0\xb0\xf3\xa0\xd1\x5f\x55\xbb\x92\xd2\xbd\xab\xbf\xde\x53\ \x0f\xde\xc7\xd0\x81\x03\x98\x30\xf3\x76\xf6\xe4\xe5\xd7\x00\x59\ \xf6\xbc\xdc\x23\x2d\x55\x23\xbf\x1a\x88\x9c\x33\x63\x86\x1f\x88\ \x9b\xd2\xb8\x12\x17\x1d\xc1\x79\x23\xbb\x72\xf7\x65\xc3\x18\xd7\ \xaf\x03\x91\x11\x16\x75\x8b\x3b\x06\xaa\xd4\xf8\xf0\xb1\x7e\xd3\ \x32\xc8\x15\x26\xd8\x1f\x7d\xf3\x9e\x63\x3c\xfc\xd6\xaf\x7c\xbd\ \x68\x1b\x0e\xa7\xab\xd5\x8e\x7f\xa4\xcd\xca\x1f\xaf\x3c\x97\x4b\ \xcf\x1e\x81\x28\x6a\x78\x4b\x04\xa5\x7d\xf5\x18\xae\x95\x03\x6c\ \x08\xa8\x84\x23\x68\x73\xbe\x4a\x49\xb9\x82\xb4\x58\x3d\x35\x3f\ \x03\xaa\x10\xa1\xc5\x89\xa3\xa2\xdd\x37\x60\x83\x28\xf7\x41\x29\ \xa4\x93\x68\x5f\x5c\x25\x60\x4b\xc9\x3f\xfe\xdd\x8f\x73\x11\x45\ \x81\x5b\xae\x9c\x01\x10\xe9\xc5\xc2\x16\xab\x91\x6f\x8b\x8e\x8a\ \xec\x39\xf7\x9d\xff\x10\x1d\xd5\xf4\x3e\xc6\x66\x5b\x6d\xbe\x14\ \x27\x0b\x37\x1e\x60\xc5\xb6\x23\xd4\xd8\x1d\x0a\x5a\x98\x3a\x67\ \xab\x9c\x84\x3f\x40\xe3\x93\xd5\xd8\x83\xd3\x06\x24\x25\xc4\x70\ \xc9\xa4\xbe\x0c\xea\x19\x7a\xd2\xb4\x96\x20\xeb\xb6\xed\xe7\xe5\ \xff\xfe\x48\x45\x95\x1d\x7d\x1e\x12\xe8\x2b\x26\x81\x72\x31\x09\ \xc3\xa1\xf9\xe8\x09\xcd\x47\xf1\x59\x41\xd5\xff\x9d\x10\x8a\x49\ \x10\xcc\x89\x2b\x55\x64\x0a\xd2\xd2\x8d\x84\xe6\xfb\x3e\xbd\xfa\ \x53\x25\xc8\x8f\x45\xb0\x27\xd1\x6b\xff\x7e\x9c\xce\x1d\x3b\xd2\ \xff\xcc\xab\xa9\xac\xaa\xd9\x6e\xcf\xcb\xed\xd5\xe2\x34\x72\x6f\ \x88\x6a\xcf\x49\xa3\x46\x05\x81\xb8\x29\x4d\x2b\x31\x51\x56\xce\ \x19\xde\x95\xbf\x5e\x3e\x82\x49\x83\x32\x89\x8a\xb4\xaa\x54\x4a\ \x97\x54\x78\x53\x39\xad\x4f\x0a\x08\xd3\x0e\x4c\x2b\xe5\x79\xbc\ \x03\x79\xd9\xa2\xd2\x4a\x5e\xff\xea\x37\x9e\xff\x78\x29\xc7\x0a\ \xcb\x5a\xed\xd8\x0f\xea\xd5\x85\x47\xee\xb8\x8c\x8c\xb6\x89\xc1\ \x3a\x9c\x4e\xdd\x48\x8f\xb7\x50\xd8\x45\x0a\xd1\x6e\xa2\xcb\x8f\ \x5d\xff\xb9\x25\x9d\x97\x0d\xf5\x3b\x19\x2e\xca\x22\x67\xab\x90\ \xe3\xcd\x05\x81\xb9\x3f\xff\x4a\x4c\x74\x24\xe7\x4d\x19\x05\xd0\ \xb3\x31\xc3\xf6\x1b\x93\x5a\x99\x03\x70\xee\xa4\x89\xa6\x56\xdc\ \x4c\xda\xa2\x23\xad\x9c\x3d\x2c\x8b\x7b\x67\x8d\x64\xca\xe0\x4c\ \xa2\x23\xad\x9a\xdb\x54\xf5\x6c\x8c\x4a\xf9\xb8\x83\x0d\x6a\xc1\ \x1b\x41\xcf\x6b\x5b\xde\x71\x1e\x7d\xeb\x17\x72\x7f\xd9\x84\xdd\ \xe1\x6a\x55\xda\x78\xad\xb4\x4b\x4d\xe4\x91\x3b\x2f\x67\x48\xdf\ \xae\xca\xc5\x92\x05\x41\xbb\xd2\x90\xae\xca\x3b\x01\x0d\xa8\x51\ \x1e\x92\x72\x71\x67\x55\x43\xa2\x4a\x1a\x07\x39\xaa\x48\x89\x7a\ \xc1\xc0\x18\xf8\x9a\x45\x55\x0c\x9d\x04\x1a\x2a\x11\x34\x68\x1f\ \x63\xf9\xd8\x8d\x2c\x74\x0b\x97\x2d\xc7\xe5\x76\x73\xc9\x79\x13\ \xfd\x30\xb1\xc5\x50\x2b\xb6\xcc\x9c\x08\x20\xbf\x6d\x4a\x4a\xea\ \x57\x6f\xbe\x16\xc4\x8f\x9b\x20\xdb\x3c\xda\x6a\x1c\x2e\x16\x6f\ \x3c\xc0\xd2\xcd\x87\xa9\xa8\xb6\xeb\xcb\xe2\x47\xe0\xf6\x5c\x9f\ \xa1\x53\x4f\x2e\xe8\xc4\xb8\x68\x2e\x9e\xdc\x97\xe1\x7d\x3a\xb5\ \x2a\x20\xf7\x95\xcf\xe7\xfd\x46\xee\x4f\x2b\x91\x24\xb7\x46\x68\ \x3e\x8a\x95\x69\xd4\x5d\x0f\x83\xa9\x10\x4d\x9a\x46\x92\x3c\x20\ \xa5\xe5\x2a\xa9\x2b\x34\x1f\x59\x7a\x47\x36\x45\x84\xa6\xa1\xd3\ \x60\xc6\x46\x19\xca\xc7\x68\x68\xbe\x14\x90\x09\x51\xcb\x48\x8d\ \xa2\x5b\xa8\xe7\xf3\x0f\xdf\xf7\x17\x46\x0f\x1b\xca\xb0\xf3\x6f\ \xe4\xc8\xb1\x82\x93\x40\x86\x3d\x2f\x57\x77\xb5\x96\x53\x4d\xad\ \x9c\x0d\xa4\x9e\x3d\x61\xbc\x69\xe4\x6c\xc6\x12\x19\x61\x61\xea\ \x90\x2c\xfe\x76\xc5\x28\xce\x1e\xde\x95\xf8\xe8\x88\x3a\x2d\x45\ \xb1\x12\x8d\x5c\xd2\xa7\x50\x35\xf6\x00\x02\xa6\xb8\xbc\x8a\xb7\ \xbf\x5e\xc5\xd3\x1f\x2c\xe4\xf0\x89\x92\x56\x39\xe6\x17\x9f\x35\ \x82\x3f\x5d\x75\x1e\xb1\xd1\x91\xfe\xfb\x93\xa0\xcc\x7c\x6a\x1a\ \xaa\x02\xfd\x85\x32\x0d\xe6\x7b\x83\xe4\x6a\x7e\x06\x40\x97\xfc\ \x3e\x2d\xe4\xd0\xfc\xc6\x48\x53\xd0\x78\x79\xdc\xd5\xdf\x37\xc6\ \x87\xfd\xf8\xcb\x42\x44\x51\x20\xe7\x9c\xf1\x00\xa9\x5e\x6c\x6c\ \x31\xd4\xca\xef\x95\x68\x15\x53\x9a\x9f\xd8\x22\x2c\x4c\x19\xdc\ \x85\x7b\x67\x8f\xe1\x9c\x11\xd9\xc4\x45\xdb\x54\x1e\x4e\x35\x9e\ \x51\xc9\x95\x4e\x8b\x87\xf4\x6f\xd9\x75\xe0\x24\x8f\xbe\x35\x9f\ \x8f\x7f\x5c\x4f\x55\x2b\x2c\x35\x37\xb8\x4f\x57\x1e\xba\xfd\x32\ \x3a\xb4\x4b\xf6\x49\xa1\x2a\x04\x13\x4f\x4a\x19\x10\xfd\xa2\x14\ \x03\xdd\x9c\xe5\xe2\x3d\x03\xfc\xc9\x51\xf6\x86\xd1\x4c\x53\x0b\ \x1a\x14\x84\x46\x74\xa7\x5c\x01\x6a\x02\x23\x24\x0d\xf8\x8a\xcb\ \x2e\x64\x6a\xa5\x0e\x75\xfa\x93\x0b\xf2\xfe\xe4\x6a\xfd\x82\xe0\ \x58\x80\x55\x6b\xd7\x53\x5e\x51\xc9\x25\xe7\x4f\xf4\xc3\xc6\x66\ \x0f\xe4\xb6\xcc\x9c\x44\x60\x7a\xaf\x33\xb2\xe9\xd2\xb1\xa3\x89\ \x92\x2d\x48\x22\xac\x22\x93\x06\x75\xe1\xde\xd9\x63\x99\x3e\xba\ \x1b\x09\xb1\x91\xde\xba\x91\xfe\xea\xb3\x14\xa4\xad\x4b\x0a\x55\ \xe3\x95\xaa\xa6\xab\xa4\x6a\xf5\x82\x93\x5b\x92\x58\xb0\x66\x37\ \x0f\xbc\xfa\x03\x4b\x37\xec\x6f\x75\x63\xdd\x3e\x2d\x89\x87\xef\ \xb8\x9c\x41\xbd\xb3\xd4\xd3\x88\x07\x2e\x95\xa1\xa6\x7f\x0d\x55\ \x7b\x95\x8c\x7d\x5c\xbb\x2f\x61\xac\xea\x23\xf9\xd3\x6f\x82\x6f\ \xe2\x38\x02\x83\x77\x50\x70\xd3\x54\xa9\x29\x8a\x0e\xd7\x51\xd5\ \x85\x43\xc0\xee\x70\x30\x7f\xd1\x12\xba\x65\x75\x64\x40\xef\x6c\ \x80\xe9\x5e\x8c\x6c\xf6\x1a\xf9\xa5\x40\xe4\xb9\x13\x5b\xa6\x36\ \xde\x12\x99\xa0\x70\x1b\x08\x23\x2c\x22\x13\x06\x66\x72\xef\xec\ \xb1\x5c\x30\xa6\xbb\x17\xd0\x03\x77\xe8\x7a\x0b\x04\x48\x8a\x85\ \x85\xe5\x33\xca\xf9\x4f\x9a\xb2\xca\x1a\xde\xfb\x6e\x35\x4f\xbc\ \x33\x9f\xbc\x23\x45\xad\x0a\xcc\xa3\x22\x6d\xfc\xf9\x9a\x0b\xb8\ \xf8\xac\x11\x58\xc4\x80\xb1\xf4\xf3\xff\x96\xd3\xd2\x51\xf4\xd3\ \xae\xd7\x6e\x83\x17\xd8\x60\xc3\xa4\x9c\x61\x15\x1d\x1a\xb7\xa4\ \x4b\x3b\xf7\x8d\x2b\x40\x29\xe7\x8b\x42\x84\xa4\x7c\x51\x94\x40\ \xe0\xf5\x52\x81\x61\xa7\x60\x08\xdb\x82\x33\x7f\xd1\x12\x80\x5a\ \xa3\x67\xa4\x17\x23\xc3\x8b\x01\xfa\xe9\x2a\x7d\x9d\xb6\x65\xe6\ \x2c\xb6\x5a\x2c\x63\xbf\x7d\xfb\x4d\x92\x12\xda\x84\x0c\x3a\x66\ \x5b\xf3\x69\x73\xb9\xdc\x2c\xdf\x7a\x88\x85\x6b\xf7\x53\x5c\x5e\ \x15\x50\x84\x17\x85\x5c\xd2\x1a\xa5\xe9\x14\x32\x28\xaa\xe5\xe9\ \x10\x05\x81\xd1\x03\xba\x90\x33\xa5\x3f\x31\x51\xb6\x56\x05\xea\ \xab\x37\xef\xe1\xd5\x8f\x7f\xa4\xb2\xaa\xa6\x6e\x2c\x04\x50\x8f\ \xe8\x24\x70\xac\x1a\x90\x57\x04\xad\x7b\xa7\x60\xd4\x96\xcd\x09\ \x8e\xae\xfc\xe8\xc1\xdb\x0c\x29\xb8\xc4\xa1\xaa\xa1\xd3\x67\x2c\ \x64\x33\x28\xfa\x7f\x2f\xd5\x58\x09\x3f\x9b\xa5\x82\xc1\x3e\x60\ \x97\xa2\xab\xcc\x9f\x24\x21\x88\x22\xef\xbf\xf2\x1c\x91\x91\x51\ \x0c\x9a\x76\x1d\x0e\xa7\x6b\x89\x3d\x2f\x77\x9c\x3e\x25\xed\x14\ \x18\x3b\x6d\x99\x39\x59\xc0\x98\x51\x43\x06\x93\xd8\xa6\x8d\xc9\ \x55\xb4\x12\xb1\x58\x44\xc6\xf5\xef\xcc\xbd\xbf\x1f\xc7\x8c\x09\ \xbd\x49\x8e\x8f\x56\xf6\x43\x0f\xdc\xeb\xfa\xa5\xd4\x93\xe4\xf3\ \x84\x04\xe6\xd9\xf0\xd1\xce\x7c\x53\x8d\x48\xb8\x59\xb2\x7e\x2f\ \x7f\x7f\xf9\x7b\x16\xac\xde\x8d\xd4\x8a\x52\x9f\x0f\xed\x9b\xcd\ \x43\xb7\x5f\x4e\xfb\xb4\xa4\xba\x5d\x4c\x78\x35\xc4\x60\x1f\x6e\ \xa9\x81\x86\xbc\x70\x6b\xbd\x52\x38\x28\x18\x29\xfc\xe3\xd4\xd0\ \xb1\x97\xdc\x6e\x7e\xf8\x65\x01\xc9\x89\x6d\x98\x34\x66\x30\xc0\ \x18\x2f\x56\x36\x5b\x6a\x65\x0e\x20\x9c\x3b\x71\x22\x76\xa7\x9b\ \xf9\xdb\x4f\xb0\xf7\x44\x25\xae\xd3\xa4\xd8\x40\xab\x07\x74\x51\ \x60\x4c\xbf\x4e\xdc\x3b\x67\x1c\x33\x27\xf6\x21\xb9\x4d\xb4\xa6\ \xe1\x52\x16\x6c\x05\xb9\xed\xbd\xa4\x9d\xf0\xc8\xbb\xad\xae\xa8\ \xb6\xf3\xf1\xbc\xb5\x3c\xf6\xd6\x3c\xf6\x1e\x2a\x68\x35\xe3\x9b\ \xd1\x36\x99\x47\xee\xfc\x1d\x03\x7a\x76\xd5\xf6\x2b\xf7\x4d\x65\ \x2b\x09\x9a\x21\xfd\x6a\xc1\x5d\xb5\x8b\x29\x28\xf9\x84\x23\x63\ \x58\x15\x82\x38\xe6\xc0\x7a\xb2\xfe\x34\x9c\xce\x14\xb4\x8a\x5e\ \x38\x72\x05\x4f\x34\x12\x7d\x05\x79\xeb\xa0\xe1\xc7\xae\xe5\xbb\ \xaf\x94\x84\x4c\xd0\x48\x3c\x06\x0b\x96\x2c\xf3\xa5\x57\x04\xc2\ \xec\x53\x1e\x56\x6a\xc5\x96\x99\xb3\x2b\x3e\x2e\xee\x8c\xef\xdf\ \x7e\x93\xfd\x45\x76\x16\xef\x3e\xe9\xe1\x5c\x45\x81\x8c\xa4\x28\ \xb2\x52\xe3\xc8\x4a\x89\xc6\x22\x9a\x7e\xe5\xad\xa1\x0d\x24\x56\ \x6e\x3d\xcc\xfc\x35\x7b\x28\x28\xa9\xd4\xdc\x7a\x07\xe7\xe1\x0e\ \x0e\xe9\x0f\xf6\x47\x47\xa5\x20\x81\xe7\xe7\x88\xbe\x5d\x98\x39\ \x75\x20\xf1\xb1\xad\x27\x82\xf8\x93\xb9\x4b\xf9\x76\xfe\x4a\x5c\ \x75\xdb\xfb\x80\x64\x51\xaa\x89\xb7\x7c\x7d\xba\xf5\x84\x9e\xa3\ \xe8\xdb\x4f\x28\xc5\x2b\xea\xca\x00\x0a\x32\xf7\x4e\x85\x92\x93\ \x2d\x26\x81\x3f\x15\x82\x81\x67\x45\x89\xf6\x40\x85\x86\x52\xa0\ \x95\x14\x53\x5a\x04\x8c\x89\x5a\xe2\xad\xe7\x1e\x7b\x88\x6e\x59\ \x59\x0c\x98\x76\x1d\x25\xa5\xe5\xbb\xed\x79\xb9\xdd\x9a\x1d\xb5\ \x62\xcb\xcc\x19\x05\x9c\x71\xe6\x98\x31\x44\x44\x44\x70\xa0\xa8\ \xb2\xee\x3d\x87\x5b\x22\xaf\xa0\x8a\x05\x3b\x4e\xf0\xc1\x8a\x83\ \xfc\xbc\xed\x38\x7b\x4c\x4d\xbd\xc5\x8b\x20\x08\x8c\xe8\xd3\x91\ \x7b\xe7\x8c\xe7\xf2\xa9\xfd\x49\x4b\x8a\x55\x70\x6f\x43\x31\x22\ \xb1\x4e\x9d\x90\x2b\x5b\xa7\x96\xbc\x4b\xaa\x4f\xdc\xf5\xdb\xa6\ \xfd\xfc\xdf\x2b\xdf\x32\xff\xb7\x1d\x0d\xae\x2d\xdb\x5c\xe4\xd2\ \x73\xc6\x70\xeb\xef\xcf\x27\x3a\xca\x16\x10\x41\x49\xb0\x6f\xbf\ \xa2\x3f\x39\x0a\xa9\x59\x05\x75\x03\x69\xdd\xbd\xf1\xbf\x98\x6e\ \xed\x35\x30\x0a\xb2\x51\x69\x9a\xd0\xfc\xd8\x0d\x87\xe6\x87\x81\ \x82\xf9\x71\xfe\x02\x6c\xb6\x08\x2e\x3c\x6b\x0c\xc0\x19\x5e\xcc\ \x6c\x76\xd4\xca\x1c\x80\x73\x26\x4d\xc0\x2d\x49\x1c\x2d\xa9\x92\ \xdd\x16\x3a\x25\x89\xbc\xc2\x2a\x16\xec\x3c\xc1\x87\xbf\x1d\xe4\ \xa7\x6d\xc7\xd9\x7d\xa2\x12\x67\x23\x82\x7a\x4b\x4c\x95\xda\x92\ \x8a\x30\x08\x82\xc0\xb0\x5e\x1d\xb8\x67\xf6\x78\x7e\x77\xd6\x00\ \xda\x25\xc7\x1a\xe0\x22\x8d\xce\x59\xf9\xe3\xaa\xaa\x1d\x7c\xfa\ \xd3\x3a\x1e\x7e\xfd\x07\x76\xe6\x1d\x6f\x15\x60\x3e\xbc\x7f\x37\ \xfe\x71\xeb\xe5\xa4\xa7\x24\xca\x86\xb3\xcb\x07\x6d\x11\x50\x81\ \x47\x01\xdc\xb5\xb2\x1c\x2a\x84\xc8\x07\xd1\x0d\x82\x9e\x73\x12\ \x9c\x87\x5d\xc3\xfb\x86\x00\x2a\x85\x40\x5b\x8a\x6c\x0e\x74\x5f\ \x07\x2a\x41\x65\xa1\xd3\x59\xc5\xc8\x90\x47\x8f\x36\xdd\xb2\x6c\ \xe5\x2a\x9c\x2e\x17\x97\x9c\x37\xc1\x0f\x33\x9b\x0d\xb5\x62\xcb\ \xcc\xb1\x01\x47\x3a\xb5\x6f\x9f\xfc\xe9\xcb\x2f\x72\xb0\xb8\x8a\ \xf9\xdb\x8c\x4d\x26\xab\x28\xd0\x21\x31\x9a\x2e\x69\xb1\x64\xa5\ \x44\x63\xb5\x98\xf4\x4b\x4b\x6d\x93\x24\x58\xb7\xf3\x30\x3f\xaf\ \xda\xcd\xd1\x82\x72\x82\x72\x5d\x2b\x66\xba\x0b\xc8\x44\x27\x5b\ \x79\x5e\x3b\x15\x80\x20\xc0\xe0\x5e\x9d\xb9\xf4\xcc\xc1\x24\xc4\ \x47\xb7\x78\x40\xaf\xac\xaa\xe1\xc5\xf7\xbf\x63\xe3\xce\xfd\x28\ \x7b\x69\xa8\x65\xe6\x93\xa1\x26\xfc\x58\x04\x7d\x69\x15\x50\xc9\ \xe3\xad\x48\xd3\x48\x6a\xf9\xd1\x69\x40\xc6\x46\x50\xf3\x58\x51\ \xab\x30\x14\x64\xcb\x91\xeb\xaf\x2f\x38\xea\xa1\x95\x02\x32\x28\ \x12\xd8\x5f\xef\x67\xef\xff\xf3\x9d\x8c\x1f\x35\x82\x31\x33\x6e\ \x65\xdf\x81\x23\x85\x40\x7b\x7b\x5e\xae\xbd\xb9\x50\x2b\xe3\x80\ \xe4\xb3\xc6\x8d\x05\xe0\x40\x41\xa5\xe1\x13\x38\xdd\x12\x79\x85\ \x95\x2c\xf4\xd2\x2f\x3f\x6d\x3d\xc1\xee\xe3\x15\x38\x5d\x26\xfd\ \xd2\xf2\x28\x17\x18\xdc\xa3\x03\x77\xcf\x9e\xc0\x95\xe7\x0e\x26\ \x23\xb5\x4d\x1d\x15\x22\x6f\xbc\xaa\xf5\x50\xf1\xf7\x7b\xa6\xce\ \x90\x27\xa0\x94\x77\x4b\x29\xdc\x7c\xed\xd6\x03\x3c\xf0\xea\xb7\ \xfc\xb0\x74\x0b\xee\x16\x4e\xe1\xc5\x44\x47\xf2\x97\xeb\x67\x70\ \xfe\xa4\x61\x88\x7e\x69\x0e\x82\xfd\xaa\x95\xab\x08\xa9\x07\xbb\ \x04\xe5\x8f\x57\x32\x1c\x06\x80\x8c\x6e\x3f\x76\x55\xad\x18\x03\ \x89\xbe\x64\x76\x1c\x8a\x3b\x04\x7f\x8d\xdd\xcf\x88\x1b\xe4\xbb\ \x2e\xb3\x2b\x08\x85\xde\x91\xd4\x29\x98\x79\xf3\x17\x00\x30\x63\ \xda\x58\x80\x64\x2f\x76\x36\x58\xac\x61\x7a\xd6\x26\x01\x0c\x1f\ \x38\x00\x80\x7c\x2f\xad\x12\xaa\xb8\x24\x89\x03\x85\x95\x1c\x28\ \xac\x64\xa9\x28\x92\x91\x18\x45\xd7\xb4\x18\xba\xa4\xc4\x04\x69\ \xea\xa6\x34\x6f\x19\xd8\xbd\x3d\x03\xbb\xb7\x67\xc3\xae\x23\xfc\ \xf4\xdb\x2e\xbf\x1c\x2a\x92\x12\xcf\x18\xa6\x02\x01\xd5\x35\x0e\ \xbe\xfc\x75\x3d\xcb\x37\xec\xe5\xb2\x69\x43\xe9\x9d\xdd\xbe\x05\ \x2f\x8e\x02\x97\x9f\x37\x8e\x2e\x1d\xdb\xf2\xe6\xc7\x3f\x52\xed\ \xb0\xeb\x20\xaa\x14\x32\x5a\x7a\x7c\x39\xeb\x1b\xfd\x26\xab\x14\ \xbc\x62\x4a\x72\x7b\xf7\x80\x1d\x40\xd0\x39\x34\xce\x29\xf7\x96\ \x20\x77\x6c\xe0\x39\x03\xbf\x93\xcf\x67\x05\xb5\xeb\x0a\xfa\x38\ \x74\x21\xf8\x3b\x7b\x7e\xad\xbf\xbe\xff\x55\x04\x85\x1e\x4b\xb2\ \xd7\x5d\xbf\x65\x0b\x4e\xa7\x93\xf1\x23\x07\xf0\xef\x37\x3e\xad\ \xc5\xce\xf9\xcd\x05\xc8\x27\x47\x45\x46\xd2\xa7\x7b\x77\x4e\x94\ \xd7\x50\x69\x0f\x5f\xf5\x17\xa7\xdb\x5d\x07\xea\x16\x2f\xa8\x67\ \x7b\x41\x3d\xc2\x6a\x82\x7a\x4b\x91\x01\xdd\xda\x33\xa0\x5b\x7b\ \x36\xef\x3d\xca\xbc\xe5\x3b\x39\x74\xbc\x38\x78\x92\x09\xbe\x93\ \x40\x52\x67\x03\x7d\xb7\xc3\x7e\x87\x07\x4f\xa0\xe3\x85\x65\xbc\ \xf0\xd1\x2f\xf4\xef\xde\x91\xcb\xcf\x1e\x4a\x52\x9b\xd8\x16\x3b\ \x8e\x23\x07\xf4\x20\xa3\x6d\x0a\xcf\xfd\xe7\x4b\x8e\x17\x16\xfb\ \x7f\x5f\x39\x7c\x94\x6a\x01\x2e\x10\x52\x34\xec\x17\x21\xad\x9f\ \xa1\x86\xf4\x1b\x5c\xb4\x0d\x1e\x27\x85\x74\x5c\xa8\xfe\xe4\xea\ \xdd\x75\xd8\x1d\x6c\xd8\xb2\x8d\x41\x7d\x7b\x13\x1d\x15\x49\x55\ \x75\xcd\xe4\xb0\x2c\xf4\xba\x3b\xa3\xc0\x91\xdb\x32\x73\xe2\x81\ \xc2\x11\x03\x07\x58\x9f\x7b\xe0\xff\x58\x73\xa0\x88\xcd\xf9\xa5\ \x8d\xfe\x40\x5b\x7d\x35\xf5\xd4\x18\x22\x2c\x42\xb3\xe0\x87\xcd\ \x36\x7d\x6d\x5b\xf7\x1d\xe3\x87\xe5\x3b\x38\xe0\x13\x76\x2f\x1f\ \xc9\x27\xe3\x0e\x26\xe3\x6e\x27\x20\x04\x54\xa6\x91\x49\xdf\x2a\ \x81\x2d\xc2\xca\xd4\x91\x3d\x39\x67\x6c\x3f\xac\x96\xa6\xa8\x3d\ \xde\x38\x52\x51\x55\xcd\x0b\xef\x7d\xc3\xd6\x5d\x79\xf5\x63\xa1\ \x50\x41\x48\x8e\x2b\x0e\xae\x53\x89\xaa\x9b\xa7\x6a\xba\x59\x29\ \x78\xf1\xad\x3f\x9f\x5a\x1d\x4f\x02\xee\xad\x7c\xa4\x6f\x60\xdf\ \x35\xeb\x6a\x06\xd4\x28\x55\xae\xf9\x29\xe7\x01\xfc\x91\x22\x00\ \x00\x20\x00\x49\x44\x41\x54\x22\xab\xde\x37\x4d\x3b\x8f\xaf\x22\ \x22\xc9\x1d\x0f\x39\x17\x9c\xcb\xf5\xbf\x9f\xcd\xac\x5b\x1e\x62\ \xe1\x8a\x0d\x4e\x20\xd9\x9e\x97\x5b\xa6\xb4\x13\xd3\x23\xe1\x78\ \x92\xc7\x01\xd6\xa1\xfd\xfa\x01\x70\xb8\xb8\x5a\x33\x39\x7b\x38\ \x5e\x2e\x49\xe2\x60\x51\x15\x0b\x77\x16\xf0\xc1\x8a\x43\xfc\xb8\ \xd9\xc3\xa9\x3b\x02\x38\xf5\xe6\xe4\xe9\x71\xea\xfc\xbd\x9b\x5f\ \x9f\x7b\x67\xb5\xe3\xae\xdf\x8d\xe7\xa6\x9c\x51\x74\xe9\x90\x54\ \xa7\x55\x28\xe6\x74\x51\xaa\x06\x4f\xad\x1b\xa2\xa4\x4b\x7b\xb3\ \x3b\x9c\x7c\xbf\x78\x13\xff\x78\xf9\x6b\x36\xec\x3c\xd8\x62\x81\ \x3c\x36\x3a\x8a\x7b\x6e\x98\xc9\xd9\x13\x86\xf8\x4c\x76\x3d\x5a\ \xa4\xc1\x34\xae\xba\x4e\x23\x85\x78\x5c\x88\x9f\x0d\xf2\x58\x91\ \xf1\x70\x51\xf1\x48\x09\x24\xe8\x55\x5d\x37\x0d\x79\xac\x08\x1a\ \x45\x2a\x3c\x9f\xdb\xb4\x75\x3b\x00\x63\x87\xf5\xab\x65\x45\x1a\ \xcc\x93\x87\x83\x5a\x99\x0c\x30\xa4\x5f\x5f\x4a\xab\x1d\x14\x57\ \x35\x7d\xda\x51\x97\xdb\x03\xea\x07\x8b\xaa\xb0\xec\x2a\x24\x23\ \x21\x8a\xec\xb6\x1e\x4d\xdd\xd6\x00\xfa\xa5\x25\xb9\x00\x36\xd6\ \xf7\x68\x6c\xe9\xd9\xa5\x2d\xbd\xb2\xda\xb2\x33\xef\x04\x73\x97\ \x6d\x67\x6f\x7e\x81\x3f\xe5\x29\x37\x9b\x55\x39\xdd\xc0\x1d\xbe\ \x50\xc7\x72\xfa\x26\x57\x2a\x28\x29\xe7\xd5\x4f\x16\xd0\x27\x3b\ \x83\xcb\xcf\x1e\x4e\x6a\x52\x7c\x8b\x03\x73\x41\x10\xf8\xdd\xf4\ \x49\x64\x75\x68\xc7\x5b\x9f\xcd\xc3\xee\xad\xc7\xea\xcf\x7f\xfb\ \x36\x09\x2a\x5b\xf1\x00\x3e\x39\x88\x43\x97\x02\xe8\xeb\xfa\x71\ \x0d\xc6\x74\xa9\x8e\x6a\x06\xa1\xce\x93\xc8\x57\x5f\xf6\x5d\x7c\ \xeb\x4f\x2b\xf8\x6b\xcb\x82\xdc\x02\x2d\xc8\xb3\x03\xa1\x86\xe6\ \x6b\xd1\x2d\x52\x08\xe7\xd4\xf8\xcc\xde\xbc\x03\x54\x57\xd7\x30\ \x7a\x58\x5f\x5f\x0c\xfd\xfe\x94\x03\x79\x6c\x4c\x34\x3d\xb3\xb3\ \xd9\x9c\x5f\xc6\xa9\xc6\x2f\xb7\x5b\xe2\x50\x51\x15\x87\x8a\xaa\ \x58\xb2\xab\x90\xf6\x5e\x4e\x3d\x2b\xad\x9e\x7e\x31\xa5\xf9\x49\ \xf7\xcc\x34\xba\x67\xa6\xb1\xeb\xe0\x49\x7e\x58\xba\x8d\xdd\x87\ \x4e\xaa\x4e\x17\x5d\xa9\x00\x74\x4c\xae\x2d\xbb\xf3\x79\xf0\xd5\ \xaf\x99\x3c\xbc\x17\xd3\x27\x0c\xc0\x6a\xb5\xb4\xb8\xb1\x1b\x35\ \xb8\x37\x1d\xda\xa5\xf2\xec\xbb\x5f\x50\x50\x54\xea\x0f\xd3\x52\ \xb0\x91\x50\x22\x18\x90\x7d\xfd\x82\x24\x7c\x72\xbd\x48\x3e\xc6\ \x3c\x41\xe6\x7d\x25\xa6\xd6\xf7\xba\x82\x5e\x36\xb7\x76\xb1\xf0\ \x5b\x7d\x7c\xfa\x1b\xb0\x1c\x49\x82\xb2\x5d\xb4\xde\xb2\x4b\x90\ \x01\x55\xf2\x3f\x5f\x50\xdf\x64\x0d\xb0\x7a\xfb\x1e\xbc\xd0\x05\ \x76\xcd\xe5\x72\xb2\x6e\xd3\x66\x86\x0f\x19\x44\x7c\x6c\x34\x65\ \x15\x55\x0d\xe6\xc9\x1b\x44\xad\xd8\x32\x73\x92\x81\x01\x83\xfa\ \xf4\x41\x14\x45\x0e\x15\x57\xe9\x54\x25\x9a\xe6\xe5\x92\x3c\xa0\ \xbe\x70\x67\x01\x1f\x2c\x3f\xc8\xdc\x8d\xc7\xd9\x71\xb4\x1c\x87\ \xcb\x6d\x22\x67\x33\x95\x6e\x9d\x52\xb9\xed\xf2\x71\xdc\x31\x6b\ \x3c\xdd\x33\xd3\x64\xab\xda\xc8\x57\x24\x52\x2f\x10\xe0\xef\xcc\ \xe0\xbf\x85\x76\xb9\xdc\xcc\x5b\xbe\x99\x07\x5e\xfa\x92\xb5\x5b\ \xf3\x5a\xe4\xb8\x75\xee\xd0\x96\x87\xee\xbc\x92\x1e\x5d\x3b\x05\ \xe7\x30\x0f\x89\x0a\x09\x4f\xc0\x96\x2e\xaa\x54\x57\x31\x09\x63\ \x9f\xd1\xaf\x79\x4b\x2a\x5f\x57\xd2\x8e\x00\x95\x8c\x8d\x62\x6d\ \xff\xd6\x6f\xda\x84\x45\x14\x19\x39\xa4\x0f\xc0\x00\x2f\x96\x9e\ \x1a\x20\x07\x26\x02\xe2\x90\xbe\x7d\x91\x24\x3c\xb4\x8a\x1e\x90\ \x3d\x05\xe2\xf2\x6a\xea\x8b\x76\x9c\xe4\xfd\x25\x87\xf8\x61\xe3\ \x51\x76\x1c\x2d\xc3\xe9\x05\x75\xe5\x04\x45\xda\x2f\x53\xc2\x2f\ \xd9\x1d\x53\xb8\xf5\xb2\xb1\xdc\x75\xc5\x44\x7a\x76\x69\xeb\x03\ \xc6\x3e\x79\xad\x51\x28\x44\x2c\xc7\x91\x42\x50\x91\x5e\xdf\x67\ \x51\x40\xa0\xa8\xac\x82\x37\x3f\x5f\xc8\xb3\xef\xcf\xe3\xe8\xc9\ \x96\x57\x6a\x2e\x2e\x26\x8a\xbf\xde\x74\x19\x67\x8d\x1b\x8c\x28\ \x0a\x2a\x63\x21\x9f\xff\xdb\xdf\x1e\x21\xe7\x17\xae\xc7\x77\xdb\ \x33\xae\x82\x28\x22\x88\xa2\xd7\x67\xdb\x73\x9c\x28\x08\x88\xa2\ \xf7\x25\x08\x88\xa2\xe8\xf3\x12\x7c\x7e\xfa\xbe\xbc\xef\x0b\x3e\ \x2f\xbf\x63\xbc\xe7\x0a\x7c\x89\xa2\xc7\xe7\x5e\xa8\xbf\x6e\xb0\ \x7f\xbc\x5c\xf1\x66\x41\x3b\x95\x81\x4a\x41\xe7\xfa\x0c\x63\xd4\ \x8f\x96\xcf\xb8\xd6\x42\xfb\xe6\xed\x3b\x00\x18\x33\xb4\x6f\x2d\ \x0e\x4f\x3c\x95\xd4\xca\x64\x80\xa1\xfd\xfb\x71\xb2\xbc\x06\xb7\ \x24\xd1\x9c\x70\x4d\x2e\x88\x44\x00\xdc\x48\x1c\x2e\xaa\xe1\x50\ \x51\x35\xcb\x77\x17\xd2\x3e\x31\x92\xae\x69\xb1\x64\xb7\x8d\x25\ \xc2\x2a\xea\xe2\x91\x25\x49\x99\x5b\x96\xcc\x18\xa6\xb0\x49\x97\ \x8c\x64\xfe\x70\xc9\x58\x0e\x1c\x2d\xe2\xbb\x25\x5b\xd9\xbe\xef\ \x88\xfe\xf1\x0d\xf1\x3e\xec\xd8\x7f\x84\x47\x5e\xff\x86\x09\x43\ \x7a\x70\xc1\xa4\x41\x44\xda\xac\x4d\xf3\xbc\xea\x4d\x4f\xa2\xf2\ \xbd\x44\x41\x60\xf6\x85\x53\xe8\xd2\xa1\x1d\xef\xe6\xfe\x84\xdd\ \x61\x0f\xc3\x58\x49\x3a\xfa\x2e\xf8\xff\xee\xed\xa4\x20\x88\x1e\ \x6d\x51\xf0\x74\x5c\x10\x04\x1f\x6a\xa6\x36\xea\xd3\x87\xd6\x91\ \xf5\x6e\x91\x64\xf4\x64\xef\xfb\x92\xdb\x73\x72\xa9\xde\xab\xc9\ \xed\x6d\x93\xdc\xb5\xde\x2c\x6e\xcf\x67\x6b\xa9\x7f\x2f\xdd\x22\ \xef\x89\x27\x43\xc3\xc8\xd2\x2c\x72\x28\xa3\xe4\xc7\x1e\x7c\x63\ \x0f\x1c\x3c\x44\x79\x45\x45\xad\xc1\xb3\x16\x4b\x3f\x3f\x65\x40\ \x9e\x10\x1f\xcf\x19\x99\x99\x6c\x3d\x5a\xd6\xfc\x00\x3c\xc0\x3d\ \xb9\x4e\x2b\xab\xe3\xfc\x3c\x2b\xe5\xb1\xd2\x6a\x8e\x97\x56\xb3\ \x6a\x9f\x87\x53\xef\x92\x1a\x43\x56\x5a\x2c\xb6\x08\x31\x68\xa2\ \x49\x92\xfa\xa4\x93\x24\x10\xc5\xe0\xb6\xe6\xe4\xb1\xd2\x12\x5d\ \x16\x3b\xa7\x27\x71\xf3\xcc\x31\x1c\x3c\x5a\xcc\xf7\x4b\xb7\xb0\ \x75\xef\xd1\x00\xf7\x43\xef\x1d\xf6\xa3\x2a\x7d\x8c\x69\x3e\x0f\ \x85\xff\xfb\x42\x80\xbb\x99\x77\xb1\x77\xb9\xf8\x75\xe5\x56\xd6\ \x6c\xdd\xcb\x8c\x29\x43\x19\xd1\x3f\xfb\x94\x01\xb7\xda\x71\x4a\ \xa0\x3e\x76\x68\x5f\x3a\xa6\xa7\xf1\xfc\xbb\x5f\x50\x50\x5c\x8a\ \xbf\x7b\xa0\x1c\x07\x2d\x05\xcc\x1f\x41\x19\x98\x24\x9f\xb1\x14\ \xfc\x0d\x97\xbe\x91\x99\x75\x1a\xb1\x88\x4f\x44\xaa\x10\x70\x2d\ \x29\xa0\xc6\x84\x7c\x8a\x06\x29\x80\x1a\x92\x6a\xc1\xb9\x16\x90\ \xbd\x9f\x71\x4b\x12\x16\x49\x44\x92\x24\x24\x51\xc2\x2d\x49\x1e\ \x1c\xf7\x2a\x99\x6e\xc9\x77\xd0\x04\xef\x1a\xd0\x50\xaa\xc9\xb8\ \x27\x90\xdb\xed\x66\xed\x86\x8d\x8c\x1b\x35\x92\xa4\x84\x78\x8a\ \x4a\xca\x26\x87\x05\xf3\xb4\xb5\x00\x29\x90\x1f\x4f\x07\x8e\x4c\ \x1a\x35\x92\xc7\xee\xfe\x0b\x0b\x77\x9f\xe0\x50\x51\x55\xb3\x01\ \xf0\xba\xfc\xc9\x5e\x6f\x85\xc0\xea\xed\xa2\x20\x20\x88\x12\x22\ \x20\x06\x95\x26\x13\xb0\x58\x04\xda\xb6\x89\xa4\x73\x4a\x0c\x9d\ \x53\x62\xfc\x34\xf5\x40\x80\x96\x24\xe5\x49\xe5\x0b\xfc\x81\xef\ \x9b\x3e\xe5\xa1\x2f\x48\x87\x8e\x15\x33\x77\xc9\x16\xb6\xec\x3d\ \xe2\xd1\xc0\xfc\x14\x39\x19\x1f\xe3\xa0\x82\x0a\x92\xbc\x4f\x74\ \x50\x50\x8b\xe7\x8f\xac\x4e\x69\xcc\x3a\x67\x34\x1d\xdb\x25\x85\ \x1d\xc4\x43\x05\x74\xd9\x22\x3b\x01\x52\x56\x51\xc5\xf3\xef\x7d\ \xc1\xae\xbd\x87\x50\x4e\xc7\x8a\xbf\x9f\x36\xfe\x63\x21\x05\xf0\ \xdf\x92\xac\x7f\x38\xf5\xda\xb6\x20\x20\x0a\x60\xb1\x08\x88\x82\ \x88\xc5\x22\x60\x11\x45\x2c\xa2\x05\x51\xac\x55\xa6\x64\x98\x7c\ \x09\x8d\x8a\x46\x9e\xfe\x7b\xfe\x74\x7b\x7f\x77\x7b\xdd\xd5\xdd\ \x48\x92\x84\xdb\x2d\xe1\x96\x5c\x48\xee\xda\xdf\x25\xdc\x6e\x37\ \x92\xdb\xed\xf9\x5d\x72\x7b\x35\x75\x77\x1d\xc0\x4b\x7e\xda\x3d\ \x7e\x13\x5a\xb6\xb0\xb8\xe4\xbb\x9b\xf0\xbf\x21\xc1\x15\x9d\x82\ \xcf\x50\xfb\xd9\x69\x53\x26\x71\xdb\xf5\xd7\x72\xfd\xdd\x4f\xf2\ \xdd\xfc\x15\xe0\xc9\xbb\x72\x54\x69\xa7\xd3\x58\x1a\xf9\x24\xf0\ \xb8\x1d\x02\x14\x57\x3a\x9a\x21\x80\x7b\x40\x5a\x14\x05\x0f\x60\ \x8b\x02\x16\xb1\xb6\xcd\x53\x28\xa1\xf6\xa7\x80\xe4\xe5\xdb\xbc\ \x5c\x96\x20\x51\xe9\x70\xb0\xe3\x48\x09\xbb\x8e\x95\x90\x1c\x67\ \x23\x23\x29\x86\x0e\xc9\x31\x58\xbd\xf9\xd4\x7d\x81\x5c\x92\xb4\ \x27\x97\x1c\x2d\x63\x4a\x68\xd2\xb1\x5d\x22\xd7\xe7\x8c\x21\xff\ \x44\x09\xdf\x2f\xd9\xcc\xe6\xdd\x5e\x40\x0f\xf2\xa8\x08\xf4\x44\ \x90\xfc\x34\x42\x39\x7d\x46\x92\xd1\x3e\xf7\x1d\x38\xc1\x13\x6f\ \x7e\xcd\xe8\x41\xdd\x99\x31\x65\x28\x51\x91\x11\x0d\x06\x71\xa5\ \x9f\xa1\x00\xb8\x9c\xa2\x00\x10\x1f\x1b\xcd\xbd\x37\xcd\xe2\x83\ \x2f\x7e\xe6\x97\xe5\x6b\x8d\xa9\x8d\x92\xb6\xb7\x90\x3f\xe0\xf8\ \x82\xb8\x48\x84\x45\xc4\x6a\xb5\x62\x8b\xb0\x10\x11\x61\xc5\x6a\ \xb1\x78\xc0\x5d\x14\xeb\x76\xc5\xb5\xc0\xaf\x04\xe4\xee\xba\x2f\ \xe9\x7d\xa7\x16\x6b\xa9\x05\x64\x0f\x60\x7b\x80\xda\xed\x01\x6f\ \xb7\x0b\xb7\xcb\x8d\xcb\xe5\xc6\xe9\x76\xe3\x72\x79\xfe\x76\xbb\ \xdd\xb8\xdc\x2e\x5c\x6e\x37\x6e\xb7\x67\xd1\x71\xe3\x01\x7a\x01\ \x90\x04\xd1\x7b\x69\xb7\xdf\x7e\xcd\xf3\x87\xa0\xa2\xfe\x4a\x81\ \xdb\x3e\x75\x9a\xc5\x0b\x1c\xdb\x76\xee\x04\x60\xf4\xd0\xbe\xb5\ \x40\x3e\x09\xf8\xa8\xa9\xa9\x15\x0f\x3f\xde\xaf\x1f\x65\xd5\x4e\ \x76\x1d\xa9\x22\xda\x26\x12\x13\x29\x62\x8b\x10\x9a\x16\xc4\x7d\ \x26\x82\x40\xed\x56\xce\xa3\x75\x5b\x44\x10\x2d\x60\x15\x04\x2c\ \x5e\x20\xb7\x5a\xc0\x22\xe2\xd5\x14\xbc\x80\xee\x05\x77\xd1\x0b\ \xea\x1e\x03\x85\x84\xdb\xe9\xa4\xba\xaa\x8a\x1a\xa7\xc8\xbe\x13\ \xa5\xec\x3f\x59\x46\x62\x4c\x04\x6d\x13\xa2\x48\x4f\x88\xc1\x62\ \x11\xfc\x40\x3c\xf0\xf7\xda\x97\x2f\xe0\x9b\x06\xd2\xf0\x49\x46\ \x5a\x02\xd7\xcd\x18\xc3\xd1\x82\x52\xbe\x5f\xbc\x99\xcd\xbb\x0e\ \xe3\xf4\x57\x93\xfc\x1c\xeb\x02\x7c\xef\x7c\xc0\x5d\xe6\xc9\x92\ \x6a\x7f\x78\xce\xe7\x72\xbb\x59\xbc\x66\x3b\xeb\xb6\xed\xe3\x82\ \x49\x43\x18\x3b\xb8\x47\x83\x40\xdc\xaf\x66\xb5\x60\x0c\xc8\x03\ \x41\x5b\x8b\x37\xff\xfd\xc5\x67\x92\xd5\xb1\x1d\xef\x7f\x39\x0f\ \xbb\xc3\xa5\x08\xe8\x1e\xbe\x5a\xaa\xd3\x8a\x04\x79\xa2\x38\x68\ \xfc\x04\x9f\x6b\x59\x2c\x22\x11\x56\x0b\x36\x9b\x95\xc8\xc8\x08\ \xa2\x23\x6d\x44\x45\x45\x10\x19\x61\xc5\x6a\xb5\x60\xb5\x58\xea\ \x2b\xdb\xcb\x2e\x9f\x92\xec\x6a\x22\x49\x1e\x0d\xdb\x03\xe8\x1e\ \x0d\x5c\xf2\x6a\xdc\xb5\x00\xee\x72\x4b\xb8\x5c\x2e\x9c\x4e\x17\ \x4e\xa7\x13\xa7\xcb\x85\xd3\xe1\xf2\xfc\x74\xb9\x70\x3a\x9c\x38\ \x5d\x4e\x5c\x2e\x0f\xc0\xbb\xdc\x6e\x5c\x2e\xa1\xee\x3c\xf5\x13\ \x54\x0a\x1e\x63\x0d\x5b\x85\x64\xc0\x30\xe3\x70\x38\x59\xbf\x69\ \x1b\x85\x45\xc5\x81\x3c\x79\xd3\x03\x79\x4a\x62\x22\x5d\x3a\x76\ \x64\x5b\x7e\x39\x55\x35\x6e\xaa\x6a\xdc\x14\x96\x79\x80\x31\x3a\ \xd2\x03\xea\xd1\x91\x22\x8d\xe1\x9a\xeb\xa7\x85\xfb\x68\xe0\x16\ \xb1\xf6\x61\xf2\x80\x74\x84\x45\xc0\x6a\xf1\xfc\x1d\x61\xf1\xa4\ \xcb\xb5\x5a\xbd\x3f\x2d\x02\x35\x55\xe5\x6c\xdd\xb0\x9a\x13\xc7\ \x8f\x50\x52\x54\x48\x71\x71\x01\xc5\x45\x85\x14\x17\x15\x50\x54\ \x54\x48\x79\x59\x29\x92\x24\x61\xb1\x5a\x49\x4c\x4c\x26\x29\x29\ \x99\xc4\xa4\x64\x12\x92\x92\x49\x4a\x4c\xa6\x5d\xdb\xb6\x0c\x1f\ \xd8\x9f\x49\xa3\x86\x62\xb5\x58\x14\x81\x5c\x09\xdc\x4d\x0d\x3d\ \x3c\x92\x9e\xd2\x86\x6b\x2e\x1a\xcd\xf1\xc2\x52\xbe\x5f\xbc\x85\ \x0d\xbb\x0e\xe1\x72\xb9\x75\x0c\xb0\xf1\x9c\x1a\xe5\x15\xd5\xfc\ \xf7\xdb\xa5\x2c\x59\xbb\x83\x59\xe7\x8d\x26\xb3\x7d\xaa\x61\x30\ \xaf\x7d\x6d\xd9\xb6\x9d\xea\x9a\x6a\xbf\x72\x6a\x5a\x5d\xad\xa5\ \x79\x3b\x66\x64\xd0\x36\xad\xad\xa6\x56\x5e\x2b\xe3\x86\xf7\xa7\ \x63\xfb\x34\x5e\x78\xef\x0b\x8a\x4a\xca\x64\x8c\x38\xc1\x09\xa9\ \xea\xe9\x70\x6f\x50\x55\x60\xa6\x3f\xc1\xa7\xce\xaa\x20\x20\x5a\ \x44\x2c\xa2\x88\x2d\xc2\x4a\x74\x64\x04\xd1\xd1\x91\x94\x95\x16\ \xe1\x72\xd8\x70\x45\x46\x10\x51\x0b\xe4\x5e\xaf\x1a\xd5\xdc\x5a\ \x32\xd4\x85\x67\xb5\x80\xa8\xc8\x48\x62\xa2\xa3\x89\x8a\x8a\x02\ \x04\x8f\xb6\xed\x05\x66\xa7\xd3\x89\xd3\xe9\xc2\xe1\x74\xe2\x70\ \x38\xb1\x3b\xea\x7f\xda\xed\x76\x1c\x0e\x07\x0e\xa7\x0b\xbb\xdd\ \x81\xd3\xe9\xc2\x55\x0b\xec\x6e\xc1\xa3\xd9\xbb\x25\x8f\xea\x2f\ \xfa\x1a\x45\x7d\x35\x73\x89\xc0\xdc\x36\xf2\x5a\xb8\xff\xf7\x28\ \xaf\xa8\xa4\xb4\xb4\x9c\xd2\xd2\x72\x2a\xab\xaa\x91\x90\x58\xfa\ \xdb\x6a\xa6\x9f\x3d\x95\xb6\x29\x89\x1c\x2f\x28\x9e\xdc\x60\x3c\ \x34\xc2\x91\xdb\x32\x73\x32\x81\xfd\x67\x8d\x1b\xcb\x43\x77\xfd\ \x91\x79\x9b\x4f\xf0\xdb\xde\x62\xc5\x63\x6d\xd6\x7a\x60\x8f\xb2\ \x89\x41\xc6\xc0\x50\xb5\x70\x5f\x97\x32\x51\xf0\xe4\x5f\xb1\x58\ \x04\xac\x16\xb0\x5a\x04\x22\x2c\x02\x36\xab\x07\xb0\x23\xac\x02\ \x11\x56\x88\xb0\x0a\x1c\xce\xdb\xc3\xfa\xb5\xcb\x58\xbb\x6a\x39\ \x3b\xb6\x6d\xf2\xac\xc4\x0d\x94\xf8\x36\x09\x0c\x1f\x36\x82\xc9\ \x13\x26\x30\xfd\xac\x49\xb4\x4d\x49\xa1\x76\x81\x57\x7a\xc9\x6d\ \x93\x4f\x77\x3e\x3c\x5c\xbb\x95\x93\x45\xe5\x7c\xbf\x78\x33\xeb\ \x77\x1e\xa8\x73\x31\x45\x96\x0b\x97\x02\x52\x70\xc8\x95\x1b\x93\ \x02\x52\x74\xd4\x1f\x2f\x88\x30\xb2\x7f\x37\x2e\x3e\x73\x38\xb1\ \xd1\x91\x86\xb4\x71\x51\x84\x61\x13\xcf\x66\xd7\x9e\x7d\x21\x7d\ \xc7\x7f\xdc\xfb\x27\xee\xb8\xf9\x06\xd9\xe7\x4a\x4d\xca\xca\x2b\ \x79\xee\x9d\x5c\xf6\xe4\xe5\x6b\xe6\x20\x97\x2f\xff\xe6\xcf\x69\ \xd7\xae\x01\xa2\x08\xa2\xc5\x82\xcd\x6a\x21\x3a\x2a\x82\xf8\xb8\ \x68\x22\x23\x44\x9e\x7d\xf6\xd9\x46\x5d\xc4\xa3\xa2\x22\x89\x8b\ \x8d\x25\x36\x36\x86\xd8\x98\x68\xda\xb5\x6b\x4b\x56\x97\xce\x74\ \xee\xdc\x91\x84\x36\x6d\xb0\xdb\x9d\xd8\xed\x0e\xaa\xec\x76\xec\ \x35\x76\xaa\x6b\xec\xd4\xd4\x38\xa8\xae\xa9\xc1\x6e\x77\xe0\x70\ \x38\xb0\x3b\x9c\x1e\x4d\xde\xe1\xac\xe3\xd9\xdd\x2e\xa9\x6e\x7c\ \x24\x49\x0a\xb6\x15\xa0\x5e\x9a\xae\xa6\xc6\x41\x69\x59\x19\xa5\ \x65\xe5\x94\x95\x56\xe0\x74\xbb\x7c\xc6\xd0\xf3\xf9\xdf\x5f\x96\ \xc3\xe3\x0f\xfc\x8d\x3f\xdc\xf7\x0c\x5f\xfe\xb0\x04\xa0\x8b\x3d\ \x2f\x37\xaf\xa9\x38\xf2\x49\xb5\xb4\x0a\xc0\xc1\xa2\x6a\xd5\x0f\ \xdb\x9d\x12\x76\xa7\x8b\x92\x0a\x17\x82\x00\x51\x5e\x0a\xa6\x96\ \x86\x11\x74\xae\x27\x81\x5c\x78\xad\x45\xbc\x9e\x32\xf1\x80\x77\ \x84\x55\xc0\x16\x21\x60\xb3\x7a\xce\x1f\x21\xc2\xa6\xf5\xcb\x58\ \xf3\xdb\x22\xd6\xae\x5e\x4e\x61\xc1\xc9\xb0\x3f\x4c\x65\xa5\x25\ \xcc\x9f\x3f\x8f\xf9\xf3\xe7\x71\xff\x03\x22\xbd\x7a\xf5\x66\xc2\ \xb8\xb1\xcc\x99\x79\x31\x5d\xbb\x64\xd6\x81\x7a\x20\xb8\xfb\x82\ \xb8\x28\x9a\x06\xd1\x70\x49\x6a\x52\x1c\xbf\xbf\x60\x24\xe7\x95\ \xf4\xf5\x00\xfa\xf6\x03\x38\x5d\x2e\x1f\xaa\xd3\xc7\x5d\xce\x27\ \x43\xa0\xaf\x47\x46\xf0\xc3\x17\x4c\x31\x48\x92\xc4\xf2\x0d\xbb\ \xd8\xb8\x23\x8f\xf3\x26\x0c\x62\xc2\xb0\x3e\x9a\xdf\x2b\x9c\x31\ \x08\x81\x5a\xb8\x96\x56\x0e\x10\x1f\x17\xc3\xdf\x6e\x99\xcd\xfb\ \xb9\x3f\xb2\x60\xe5\x7a\x54\xc2\x23\x7d\x7e\x15\x82\x86\xa5\xd6\ \x8d\xb0\x7e\x81\xf2\x68\xe3\x16\x8b\x47\x23\x8f\xb4\xd9\x88\x8e\ \x6a\x7c\xd7\xcd\xea\xea\x1a\xaa\xab\x6b\x38\x59\x50\x08\xc0\xd6\ \xed\xbb\xf8\x75\xe1\x52\x00\xda\xb4\x89\x27\x3b\x2b\x93\xac\x2e\ \x9d\xc9\xca\xca\x24\xbd\x5d\x3b\xaa\xab\x6b\xa8\xaa\xaa\xa1\xb2\ \xba\x86\xaa\xea\x1a\xaa\x6b\x6a\xa8\xa9\xa9\xc1\x6e\x77\xe2\xb0\ \x88\x38\x1c\x4e\x5c\x2e\x01\x97\xe0\xe1\xd5\x71\xbb\x91\x04\xc1\ \x6b\x83\x91\xdb\x46\x78\x9f\x05\xb7\x44\x59\x59\x05\x25\x65\xe5\ \x94\x96\x96\x51\x55\x6d\x47\xde\x80\x5e\x2f\x4b\x56\xac\x02\x3c\ \x79\x57\xbc\x40\x3e\x09\x78\xa7\xa9\xa8\x95\xfe\x00\xbd\xbb\x75\ \xc3\xe9\x92\x38\x5a\x52\xa3\xfb\x40\x49\xa2\x8e\x86\x29\xc0\x9f\ \x86\x89\x89\x12\x15\xf3\x8d\x07\x52\x29\x62\xad\x51\x45\x14\xb0\ \x5a\xeb\xb5\x6f\x5b\x84\x40\x64\x84\x48\x64\x84\xe7\xef\x8d\x6b\ \x97\xf2\xc9\x07\x6f\xb0\x77\xcf\xce\x06\x4c\x16\xb1\xde\xa2\xad\ \xeb\x3b\xba\xd9\xba\x75\x33\x5b\xb7\x6e\xe6\xf5\x37\xdf\xe0\xac\ \x69\xe7\x71\xcb\x8d\x37\x30\xa0\x47\x36\x16\x8b\x58\x07\xe2\xbe\ \xa0\x6e\x64\x22\x9a\xa2\x5f\x52\x12\xe2\x98\x73\xfe\x48\xce\x1f\ \xdf\x8f\xb9\x8b\x37\xb1\x66\xdb\x01\x1c\x2e\xa7\x62\x24\x9f\x36\ \xaf\x21\xff\x99\x8a\xaa\x1a\x3e\xf9\x61\x39\x4b\xd7\xed\xe0\xf2\ \x73\xc7\x90\xdd\xa9\x9d\x2e\xad\xbc\xa1\x20\x5e\xfb\x32\xfa\xcc\ \x88\x82\xc0\x95\x33\xcf\xa6\x4b\xa7\x74\x3e\xfc\xf2\x27\x1c\x4e\ \x97\x8e\xba\x95\xca\x34\x54\x5d\xb9\x35\x24\x0f\x98\x5b\x2d\xd8\ \x22\xac\x44\x45\xda\x4e\xe9\xfd\x2f\x2d\x2d\x63\xdd\x86\xcd\xac\ \xdb\xb0\x19\x80\x8e\x1d\x32\x98\x38\x7e\x14\x03\xfa\xf7\x21\xce\ \x19\x43\x65\x65\x15\x15\x95\xd5\x54\x55\x55\x53\x59\xe5\x01\x75\ \xd1\x62\xc7\x61\x77\x20\x38\xc1\x2d\x08\xb8\x00\x41\xf2\x6c\xbf\ \x24\xb7\x3f\xcd\x52\x5d\x53\x43\x49\x49\x39\x25\xa5\xe5\x94\x55\ \x54\xe0\x76\xb9\x65\xc7\x49\x76\x6c\x25\xd8\xbb\x3f\x8f\xe3\x27\ \x0b\x18\xd4\xa7\x9b\x1f\xb6\x36\x15\x90\xf7\x10\x04\x81\x4e\x19\ \xed\xc9\x2f\xae\x6e\x50\x05\x16\x97\x5b\xa2\xbc\xca\x45\x79\x95\ \xab\x8e\x86\xa9\x05\xf5\x68\x9b\x58\xcf\xa5\xe1\x1f\x7d\x56\x6b\ \xac\xac\x05\xf0\x5a\xf0\x8e\xb2\x79\x7e\x6e\xdb\xb8\x92\x8f\x3f\ \x78\x9d\x5d\x3b\xb6\x6a\x6b\x6f\x69\xed\xe8\x3f\x70\x08\x29\x29\ \x69\x24\x24\xa5\x90\x90\x98\x44\x42\x62\x0a\x49\x49\xc9\x24\x24\ \xa6\x60\x8b\x8c\xa4\xbc\xb4\x84\xe2\x62\x0f\x77\x5e\x52\x5c\x40\ \x49\x71\x21\xc5\x45\x85\xe4\x1f\x3e\xc0\xc6\x0d\x6b\xb1\xd7\xc8\ \x2f\x66\x2e\x97\x8b\xb9\xdf\x7f\xcd\x4f\xf3\xe6\x32\xf5\xac\x73\ \x99\x3d\xe7\x6a\xba\x65\x76\x24\x3d\x21\x16\xab\x45\xf4\xd3\xd4\ \x03\xe9\x15\x13\xd0\xc3\x27\x49\x6d\x62\xf9\xdd\x79\x23\x39\x77\ \x7c\x7f\xe6\x2e\xd9\xc4\x9a\x2d\xfb\xeb\xc1\xcb\x87\xac\x0d\x36\ \xee\x49\x0a\x1a\xa9\x24\x03\x70\x02\xf9\xc7\x8b\x78\xe6\x9d\x6f\ \x18\xd2\x27\x9b\x99\xd3\x46\x12\x1f\xdb\x34\xa5\xe6\x42\x55\x00\ \x26\x8c\x18\x48\x87\xf4\x34\x5e\x7e\xef\x4b\x8a\xca\x4a\xeb\xb5\ \xa5\x20\xba\xd7\x97\x5a\xf0\x4f\x19\x5d\x5f\x09\x88\xba\xa8\x4b\ \x8b\x28\x12\x11\xe1\xf1\x58\x69\x4e\x72\xe8\x70\x3e\x1f\x7c\x94\ \xcb\x17\x5f\x7d\xcf\x98\x51\xc3\x19\x31\x62\x08\x69\x29\x49\x94\ \x97\x57\x60\xb3\x55\x51\x51\x69\xc1\x52\x65\xa1\x46\x10\xb1\x8b\ \x1e\x2e\x1d\x49\xc2\xe9\x76\x23\x48\x12\x35\x0e\x27\x65\xe5\xe5\ \x5e\xcd\xbb\x02\xbb\xdd\x2e\x53\x4a\x4f\x43\x93\x0d\x90\x5d\x7b\ \xf6\x32\x64\xe0\x00\x8f\xfb\xa6\x24\xf5\x68\x52\x20\x6f\x97\x9a\ \x4a\xa4\xcd\x46\x71\x65\x29\x16\x51\xc0\x15\xa6\x72\x5a\xb5\x34\ \x4c\xb1\x97\x86\xa9\xf5\x84\x89\x8d\x12\x89\x8e\xb4\x20\x08\x1e\ \x0a\xc5\x22\x52\x47\x9d\x44\xd9\x3c\x00\x1e\x15\x21\xb2\x7b\xfb\ \x5a\xfe\xf7\xc1\x1b\x6c\xdb\xb2\x41\xe5\xa1\x17\xe8\xde\xa3\x37\ \x43\x86\x8f\x61\xf0\xf0\x31\x74\xea\x9c\xed\xb5\x76\x4b\xb8\x25\ \xcf\xe2\x22\x79\x03\x0c\x6a\x5c\x12\x35\x95\x2e\xb0\xc6\x92\x90\ \x16\x4b\x52\x5a\x27\x10\xea\x3d\x5d\x2c\xa2\x80\xcb\x59\xc3\xd6\ \x4d\x6b\x59\xb7\x7a\x39\xab\x57\x2e\xa7\xa0\xe0\x44\xd0\x35\x9d\ \x4e\x07\x3f\x7c\xff\x15\xbf\xfc\x3c\x97\x33\xcf\x9e\xce\x79\x17\ \xce\x22\xbd\x6d\x1a\x69\xf1\x31\x64\x24\xc7\x11\xe1\xd5\xd4\xb5\ \xf8\x72\x53\x1a\x26\x89\xf1\x31\xcc\xfa\x7f\xf6\xce\x3b\x4e\x8a\ \x2a\xed\xc2\x4f\x55\x75\xee\x89\xcc\x0c\x03\x43\x98\x40\xce\x39\ \xa9\xa0\x62\xc2\x9c\xc5\x9c\x5d\x13\x2a\xe6\xb0\xdf\xba\x86\x75\ \xd5\x55\x57\x05\xb3\xa2\x18\x50\x77\xcd\x39\x07\x44\x31\x80\x28\ \x12\x24\xcc\xc0\x90\x06\x98\x1c\x3a\x77\x85\xef\x8f\xaa\xee\xe9\ \x38\xb9\x11\x58\xaf\xd6\xaf\x99\xee\xea\xea\xea\xea\x5b\xe7\xbe\ \xf7\xdc\xf3\x9e\xf7\xf0\x49\x1c\x31\x75\x24\x1f\x7f\xbb\x82\x25\ \x2b\x37\x10\x90\x95\xf6\x05\xe7\x2d\xed\x64\xe0\xfe\xd2\x95\x65\ \xac\x58\xbf\x99\xc3\xa7\x8e\xe6\xe0\x29\x23\x13\x72\x9d\x5d\x45\ \xad\x74\x76\x16\xd7\xbf\xb0\x17\xb7\x5d\x7d\x2e\x73\xe6\xbf\xc1\ \x86\xcd\xdb\x92\xcd\x85\x13\xcc\x4e\x9a\x25\x87\xa1\x59\xb2\x60\ \xc8\x7d\x25\x49\x5f\xaf\x32\x9b\x4d\xbb\x65\x3f\x70\x7b\xbc\x7c\ \xfa\xc5\x42\x3e\xfb\xf2\x1b\xf6\x99\x3c\x9e\xa3\x8f\x38\x0c\x9b\ \xdd\x82\xc5\x62\xc6\x6c\xf6\xe0\x96\x44\xf0\x82\xc7\xeb\xa3\xae\ \xbe\x91\xfa\x46\x37\x8d\x8d\x4d\xf8\xfd\x81\x66\x85\x4b\x0b\x3d\ \x21\x91\x23\x64\xb2\x56\xb6\x71\x13\xfb\x4e\x9a\x40\xaf\x1e\xb9\ \x6c\xdd\x5e\xb5\x6b\x80\xdc\x52\x78\xa2\x15\x28\x2a\xec\x55\xa0\ \xcf\x03\xfa\x64\x30\xb4\x57\x3a\xdb\x6a\x7d\x6c\xaa\xf5\xb2\xa9\ \xda\xc3\xd6\x5a\x1f\x72\x17\x01\xbb\x37\xa0\xe2\x0b\xaa\xd4\xb9\ \x05\x2c\x92\x4c\x9a\x5d\x24\xcd\x2e\x91\xee\x90\xb0\x98\x05\x03\ \xe0\x45\xcc\xa2\xc2\xf3\x4f\xdd\xc7\xa7\x1f\xbd\x93\xf4\x58\x03\ \x06\x0e\xe1\xf0\xa3\x4e\x60\xe4\xb8\x29\x38\xd3\xb2\x91\x15\x15\ \x59\xd1\x68\x74\x2b\xc8\xaa\x8a\xaa\x62\x24\x10\x18\xf2\x26\x62\ \x53\x84\x9b\xfd\x29\x42\x12\x47\x5d\x17\x2b\x31\x60\xd8\x04\x86\ \x8c\x9c\xc8\x39\x17\x5d\xcd\x96\xcd\xa5\xfc\xfc\xe3\xb7\x7c\xf0\ \xde\x1b\xb8\x5d\xae\xe8\x81\x2a\x10\xe0\x83\x77\xdf\xe0\xeb\x2f\ \x3e\xe1\xca\x6b\xfe\xca\xc0\x61\x63\x59\xb5\xb9\x1a\x87\xd5\x4c\ \x41\x76\x1a\x85\x79\x19\xe1\x28\x26\x36\xe1\xe8\xcf\xd6\x75\x2d\ \x33\xcd\xce\xcc\x19\x13\x39\x62\xea\x08\x3e\xfe\x76\x25\x3f\xad\ \x2c\x23\x10\x94\x63\x38\xe0\x58\x4f\xc0\x48\x09\x7a\x62\x0e\x3d\ \x32\x2a\xf3\xfb\x83\xbc\xf3\xc5\x4f\xfc\xb8\x7c\x3d\xa7\x1c\xb1\ \x0f\x83\x8a\x0a\xba\x14\xcc\x13\x2d\x14\x77\xb4\xaf\x64\xa4\x39\ \xb9\xe5\xb2\x33\x99\xff\xc6\x47\x7c\xbb\xe4\xb7\x36\x0d\x58\xc9\ \x82\x24\x22\x6a\x75\x8a\xe2\xee\x5d\xbc\x43\xd3\x34\xbe\xfb\x7e\ \x09\x6b\xd7\x95\x72\xe6\xe9\x27\x91\x91\x91\x49\x63\x93\x8b\xfa\ \x06\x17\x3b\x2a\xab\x68\x6c\xf2\xe0\xf1\x78\xf1\xf9\xfd\x28\xb2\ \x8a\x28\x0a\xa8\x2a\xa1\xe8\xb9\x0d\x63\x7c\xeb\x74\x5d\xd9\xc6\ \x72\x00\xfa\x15\x16\xb0\x75\x7b\x55\x91\xa5\xf0\x44\x6b\x60\xd3\ \x1b\xfe\x94\x02\x39\xd0\x1f\x90\xfa\xf6\xea\xd5\x7c\x10\x51\xa0\ \x30\xd7\x4e\x51\x9e\x1d\x06\x75\x43\x51\x35\xb6\xd5\xf9\xd8\x54\ \xe3\x65\x53\xb5\x97\x2d\xb5\xde\xb8\x82\x0f\x6d\xed\xa4\xa1\x0e\ \x21\x89\x3a\x78\x06\x15\x0d\x5f\x40\x8d\xea\xb4\xae\x86\x6a\x9e\ \x7c\xe8\xff\x28\x5d\xbb\x2a\xe1\xb1\x0a\x7a\xf5\xe1\x8c\x73\x2f\ \x61\xfc\xa4\x03\x90\x15\x08\xc8\x2a\x4d\x1e\x85\xa0\x01\xe4\xb2\ \xa2\x4b\x8e\xf4\x48\xdc\xe0\xad\x43\xd9\x5f\x91\x29\xbd\x82\x10\ \x5e\x18\xd3\x93\x87\xb4\x70\xfa\xb1\x14\x56\xca\x88\xe4\xf6\x28\ \xe6\xa8\x13\x4b\x98\x71\xe4\x89\xbc\xfb\xd6\xcb\x7c\xf8\xde\x9b\ \xfa\x14\x2c\x32\x22\x70\xbb\xb8\xe7\x1f\x7f\x65\xe6\xe9\xe7\x72\ \xf8\xb1\xa7\xe2\xf5\x07\x59\xb1\xa9\x8a\xa5\xeb\x77\x92\xe9\xb0\ \xd2\x27\x2f\x83\xfe\x3d\xb3\xb0\x59\xa4\x56\xad\x01\x76\xf7\xc8\ \x7d\x77\xf6\x43\x4f\x77\xda\x39\xf9\xb0\x09\xcc\xd8\x6f\x04\x9f\ \x2c\x5e\xc9\x8f\xbf\x95\x11\x08\x06\xf5\x62\xc4\x49\x23\x53\x2d\ \xec\xdd\x11\xb9\x06\xaa\x19\x12\xd8\xd0\x28\xac\x19\x59\x2f\x3b\ \xaa\xeb\x79\x6c\xc1\x47\x8c\x19\x52\xc2\x49\x33\x26\x93\x91\x66\ \xdf\x2d\x7f\x27\x51\x14\x39\xff\xe4\x23\x29\xee\xdd\x93\x57\xdf\ \xfd\x5c\x5f\x4b\x88\xc2\x1d\x21\x21\xb5\x14\x6d\xa6\x65\x24\xe0\ \x09\x62\x38\x42\xdf\x13\x5a\x75\x4d\x1d\x0f\x3f\xf2\x0c\x53\x26\ \x8d\x67\xcc\x98\x51\xa4\x39\xed\x64\x65\x66\x84\x53\x0c\xf4\x80\ \x2e\x40\x30\xa8\xa1\x09\x4a\x78\xd0\x8a\xb6\x14\x68\xf3\xf0\x11\ \x13\x91\x1b\x40\x5e\xd4\x8b\x85\x3f\x2c\x97\x0c\x8c\x5d\x95\x6a\ \x20\x1f\x04\x10\x8a\xc8\x13\xdd\x84\x92\x28\xd0\x37\xc7\x4e\x61\ \xae\x1d\x06\xe9\x1e\xe1\xdb\xea\xfd\x6c\xaa\xf6\x50\x5e\xed\x65\ \x4b\xad\x8f\x80\xac\xb6\x11\x04\x9a\x15\x29\x16\xb3\x88\xcd\x22\ \xe0\xb4\x4a\x38\xed\x22\xe9\x76\x89\xed\xe5\x2b\x78\x66\xce\xad\ \x34\xd4\xd7\xc6\xf3\xa2\xdd\x72\x39\xf9\xb4\x0b\xd8\xff\x90\xa3\ \xd0\x34\x11\xb7\x4f\x35\xa8\x1b\x15\x59\xd6\x8c\xac\x2f\x1d\xc0\ \xf5\xec\x30\xdd\xfa\x56\xcf\xf8\x55\x13\x4e\x98\x42\x40\x2e\x84\ \xb3\xd8\x8c\x47\x51\xc0\x24\x0a\x48\x26\xb5\x79\xe1\xd5\x64\xe3\ \x84\x53\x2f\xe2\xd0\x23\x4f\xe0\x8d\x57\x9e\xe3\xab\x2f\x3e\x89\ \x9a\x92\x69\x9a\xca\xab\x0b\x9e\x65\x63\xd9\x3a\xfe\x32\xeb\x7a\ \xd2\x1c\x16\x04\x51\xa1\xde\xe3\x63\xc7\x7a\x37\x8b\x57\x6f\x23\ \x37\xd3\x41\x49\x8f\x4c\x06\xf5\xce\xc6\xd6\x8e\x69\xea\xde\xa8\ \x44\x49\x2d\xa0\xdb\x38\xe9\x90\xf1\x1c\xbe\xdf\x08\x3e\x59\xbc\ \x82\x1f\x97\x97\xe2\x0b\x04\x5b\xe5\x37\xdb\x1e\xf9\xc1\x8a\x75\ \xe5\x6c\xaa\xa8\xe4\x90\x7d\x47\x32\x75\xfc\x60\x60\xf7\xbc\x58\ \x07\x4e\x19\x4b\xef\x1e\x79\x3c\xf6\xe2\x5b\x34\x34\xb9\xe2\xef\ \x01\x41\x88\x87\xae\xb8\x8a\x4d\xe8\xeb\x5b\x7b\x50\x87\xd0\x34\ \x8d\xc5\x3f\x2c\xa1\x6c\x43\x39\xc7\x1c\x7d\x38\xa2\x98\x1d\xfe\ \x85\xf4\xd4\x7e\x43\x86\x2d\x37\x27\x22\x45\x45\xe6\xed\xb1\x0a\ \xd6\xa2\xa9\x95\x50\x44\x1e\x81\xb1\xbb\x08\xc8\x0b\x7a\xb5\x63\ \xa4\x17\xe8\xd3\xcd\x46\x9f\x6e\x36\xa6\x0e\xd2\xe9\x8b\x8a\x7a\ \x3f\x9b\xaa\xbd\x94\x57\x79\xd9\x5c\xeb\xc5\x1f\x54\xe3\xc0\x40\ \x8c\x04\x71\x93\x10\x06\xf1\x34\xbb\x48\xba\x43\x62\xc9\x37\x6f\ \xf3\xda\x0b\x73\x51\x62\x22\x07\x49\x92\x38\xe6\xe4\xf3\xd8\xff\ \xb0\x53\x90\x35\x0b\x65\x15\x01\x82\x8a\x86\xa6\x36\x67\x6c\x4a\ \x86\xd8\x5f\x51\xf5\xe7\x43\x8b\xd1\x8a\xa1\x4e\x09\xaf\x4e\xc7\ \x9a\xa9\x84\x13\x37\xb4\xe6\x45\x1e\x40\x14\x54\x82\x22\x48\xb2\ \x40\x50\x82\x80\x24\x62\x31\x09\x98\x83\x1a\x56\x7b\x36\xe7\x5d\ \x72\x1d\x47\x1d\x77\x0a\xcf\x3e\xf9\x30\x2b\x7e\xfb\x35\xea\x7c\ \x7f\xfc\xe1\x5b\xb6\x6d\xdd\xcc\xd5\x37\xde\x46\x56\xb7\x02\xc4\ \x90\xac\x0b\xa8\x6c\xf0\x50\x51\xd3\xc4\xa2\x15\x5b\xc8\xcf\x72\ \x30\xa0\x77\x36\x83\xfb\xe4\x60\xb7\x98\xf8\xb3\x75\x7d\x73\xda\ \xad\x9c\x70\xd0\x78\x66\xec\x3b\x92\x4f\xbf\x5b\xc1\xf7\xcb\xd7\ \xe3\xf3\x07\x92\x0c\x52\x2d\x18\x4a\x09\x42\x82\x99\x25\x04\x82\ \x41\xbe\x59\xb2\x8a\x2d\x3b\x74\x40\xdf\x5d\xdb\x80\xe2\x3e\xdc\ \x76\xf5\xf9\xcc\x79\xee\x75\xca\xb7\x56\x44\x38\x16\xb6\xb1\x1a\ \xfd\x1e\xdc\x76\x56\x56\xf1\xce\xbb\x1f\x72\xe2\x09\xc7\x84\xb3\ \x47\x15\x55\x45\x55\xf4\xec\x51\x4d\x53\x51\x42\x20\xae\xb6\x5d\ \xeb\x93\xec\xef\xcd\xdb\x2a\x08\x04\x02\xf4\x2f\xec\x15\x85\xb1\ \xbb\x04\xc8\xfb\xf6\x2a\xe8\xf8\x14\x4e\x10\xe8\x9d\x6d\xa3\x77\ \xb6\x8d\x7d\x07\x64\xa3\x01\x3b\xea\x7d\x94\x47\x00\x7b\x40\xd6\ \x69\x0b\x93\x18\x02\x71\x31\x0c\xe2\x19\x0e\x89\xb7\x5e\x7a\x80\ \x45\x5f\xbc\x1b\x7f\x23\xa6\xa5\x73\xf1\xd5\xff\xa0\xb0\xff\x18\ \xdc\x7e\x05\x8f\x4f\xc1\xeb\x57\xf0\x05\x55\x02\x01\x95\x80\xa2\ \xa2\x18\xd1\xb8\x24\xea\x9a\x73\xab\xd9\xd8\x4c\x7a\x64\x1d\x59\ \xb8\x36\x5a\x6e\xa4\x85\x75\xc8\xa1\x98\x44\x30\xec\x39\xc5\x90\ \xe1\x56\x68\xf0\x11\x35\x82\x92\x80\xc9\xa4\x11\x94\x55\x82\xb2\ \x40\x76\x6e\x6f\x6e\xbc\xf5\x5f\x2c\x98\xff\x18\x1f\xbd\xff\x76\ \xd4\x79\x6f\xdd\xba\x99\xbf\xdd\x38\x8b\x6b\x6f\xba\x83\xa2\x7e\ \xc3\x22\x2c\x39\x35\xd0\x44\x82\x9a\x42\x45\x9d\x9b\xad\xd5\x2e\ \xbe\x5e\xbe\x85\x9e\xd9\x4e\x06\xf6\xee\xc6\x90\xc2\x1c\x1c\xd6\ \x3f\x41\xbd\xab\x9b\xc3\x66\xe1\xb8\x83\xc6\x71\xd8\xbe\x23\xf8\ \xec\xfb\x95\x7c\xff\xeb\x3a\x3c\xbe\x08\x7a\x4c\xd0\x62\x14\x2e\ \x31\x99\x8a\x21\x33\x26\x04\x04\x31\xc4\x1d\x37\x87\xad\x0d\x4d\ \x6e\xbe\x59\xb2\x32\x3e\xea\xdf\x9d\xd6\x11\xd2\xd3\xb8\xe5\xf2\ \xb3\x99\xff\xfa\x87\x2c\xfe\xf9\xb7\xc4\x36\xae\x9a\x10\xee\xf7\ \xa1\xef\x18\xfe\xaa\x6d\xce\x10\xd9\xfd\x5a\x65\x55\x35\xef\xbd\ \xff\x11\xc7\x1e\x7d\x44\xb3\x47\x8b\xa2\xa2\x28\xb2\x91\x45\xaa\ \xcf\xd8\x55\xcd\x30\x28\x88\x90\x27\x27\x85\xf2\x24\x03\x9d\xaa\ \xaa\x6c\xdc\xbc\x85\x7e\x45\x05\xbb\x16\xc8\x6d\x56\x2b\xdd\x73\ \x72\xba\x8e\x9b\x13\xa0\x20\xdb\x46\x41\xb6\x8d\x7d\x06\xe8\xee\ \x72\x95\x4d\x7e\xb6\xd4\xfa\xd8\x56\xe7\xa5\xca\x15\xc0\x24\xa1\ \xd3\x29\x0e\x89\xaf\x3f\x7c\x21\x21\x88\xf7\x28\xe8\xcb\x65\xd7\ \xdf\x8b\x33\xab\x80\x7a\xb7\x8c\xc7\xaf\xe0\xf1\x69\xf8\x83\x0a\ \x81\xa0\x66\x2c\x6e\xaa\x28\x8a\x3e\x45\x0a\x68\x1a\x6e\x6f\xf3\ \x02\x95\xa6\xaa\x98\x4c\x02\x76\xb3\x80\xcd\x2c\x61\xb3\x08\x58\ \x2d\x22\x7a\xb1\xf5\xe8\xa8\x5c\x8b\xf0\x7f\x08\xd7\x11\x14\x34\ \x44\x41\xf7\x57\x56\x55\x5d\xfd\xa2\xd3\x37\x22\xb2\x22\xa0\x28\ \x1a\x36\x8b\xc8\x99\xe7\xcd\xa2\x4f\xef\x42\xe6\x3d\xfd\x08\x8a\ \xd2\xac\x98\xf0\x78\x3c\xfc\xfb\xde\xdb\xb8\xf3\x9e\x39\x64\xe6\ \x14\x44\x00\x39\xa0\xa9\x08\x1a\xc8\x86\x35\x67\x45\xad\x8b\x8a\ \x9a\x26\x16\xfe\xb6\x99\x1e\x39\x4e\x06\xf5\xea\xc6\xd0\xc2\x5c\ \xec\x7f\x82\x7a\x97\x36\xbb\xcd\xc2\x31\x07\x8e\xe5\xd0\x7d\x47\ \xf0\xf9\xf7\x2b\xf9\xee\x97\x35\x78\xbc\x81\xa8\x7b\xb4\x59\x2e\ \xda\x5c\x04\x59\x8b\x91\xe8\x25\x13\x8e\x2b\xbb\x79\xb5\x2a\x49\ \x12\xb9\x60\xe6\x51\x14\xf6\xce\xe7\xb5\xf7\xbf\x44\x4e\xaa\xc1\ \xdf\xfb\xda\xd6\x6d\xdb\xf9\xf8\xd3\x2f\x38\xf4\x90\xe9\x04\x83\ \x32\xc1\x80\x8c\x1c\x0c\x12\x94\xf5\x2c\x50\x2d\xc4\x97\x6b\x2d\ \xf0\x27\x6d\xac\xf9\x59\xb6\xb1\x9c\xc3\x0f\x9e\x8e\xdd\x66\xc5\ \xeb\xf3\xef\x1a\x20\xef\x5b\x50\x90\x32\xee\x2b\x74\xd8\x9e\x59\ \x56\x0a\xb2\xad\x88\x62\x26\xa2\x04\x2e\x7f\x90\x7a\x6f\x80\x4f\ \x3e\xff\x98\xf7\x5e\x7f\x36\xee\x7d\xc3\x46\x4e\xe0\xfc\x2b\xee\ \x40\x11\xec\x34\xb8\x15\x3c\x3e\x3d\xe9\xc8\x1b\x50\x09\xca\x2a\ \xb2\xac\xa2\x18\x1c\xb8\x1a\xb2\xaf\xd4\x88\x5b\xac\x08\xca\x1a\ \x81\x80\x4a\x03\x0a\x21\x9f\x05\x9d\x9f\x17\xb0\x48\xa1\x08\x5e\ \x34\x38\xf0\x30\x83\xa6\xaf\x03\x69\x1a\x8a\x20\xa0\x0a\x1a\x82\ \xa6\xa1\x8a\x20\xab\x18\x3c\xbc\xa0\x2f\xa8\x2a\x2a\x8a\xaa\x31\ \xed\xe0\xa3\xe9\xd9\xab\x37\xf7\xdf\x7b\x7b\x94\xb2\xc5\xed\x76\ \x71\xdf\xdd\x7f\xe3\x8e\xbb\xe7\x60\xb7\xd9\x75\x3f\x65\x4d\x43\ \x55\x45\x54\x4d\x45\x44\x30\x7c\xf2\x9b\xcf\xbf\xa2\xa6\x89\xed\ \xd5\x2e\x16\xae\xdc\x4c\x41\x76\x1a\x03\x7b\x77\x63\x68\x51\x6e\ \x5c\xa4\xbe\x2b\x39\xed\xd6\x6c\x5a\xbb\xea\x5c\x76\xd5\x6c\xde\ \x66\x31\x73\xd4\xfe\x63\x38\x64\xca\x08\xbe\xf8\x61\x05\xdf\x2e\ \x5b\xa3\x67\xee\x85\xfd\x22\x34\xc4\x70\xbe\xba\x10\x61\x95\x1b\ \xe2\x95\x43\x14\x5c\xcb\x25\x90\x77\xd7\x76\xf0\xbe\x13\xe8\xd3\ \x33\x9f\x27\x17\xbc\x45\x63\x93\x3b\x0a\x84\x84\xa8\xd2\x4c\x84\ \xab\x02\xed\x0d\xad\x6c\x43\x39\x8b\x16\x2d\x66\xca\x94\x49\x7a\ \x06\x68\x20\x40\x20\xa8\x7b\xb4\xe8\x66\x5d\x4a\x78\x26\x92\x98\ \x2b\x6f\x03\x49\x0e\x94\x6e\x2c\x47\x10\x04\x4a\x0a\x0b\x58\xb5\ \x76\x63\xbb\x81\xbc\x5d\xda\x20\x4b\xe1\x89\x79\x40\x76\x67\x68\ \x95\xb6\x82\x40\x48\xe2\xa7\xab\x41\x20\x37\xc3\x8c\xaf\xa6\x8c\ \x39\x0f\xde\x11\x27\xfb\x39\xe8\xb0\x63\xb9\xe4\xba\xfb\x08\x62\ \xa7\xd1\xa3\xd0\xe4\x51\x70\xf9\x14\x3c\x7e\x15\x7f\x50\x5f\xe0\ \x94\x15\x0d\x59\x8d\x58\xd8\x8c\xd1\x6c\x6b\x71\x59\x96\xcd\x3b\ \xc8\x8a\x86\xc7\xa7\x50\xef\x92\xa9\xac\x0f\xb0\xa5\xd2\x4b\x59\ \x85\x87\xdf\x37\xbb\x58\xb7\xd5\x4d\xf9\x4e\x2f\xdb\xab\xfd\x54\ \xd7\x07\x69\x74\x07\xf1\xf9\x0c\xf3\x1e\x43\x9b\x1e\x54\x54\x02\ \x41\x15\xaf\x5f\x3f\x27\x8f\x4f\xc1\xed\x95\xe9\x37\x78\x34\xf7\ \xdc\xff\x28\xf9\xf9\x3d\xa2\xbe\xcf\xf6\x8a\x6d\x3c\x7c\xff\x9d\ \xd8\xcc\x60\xb7\x49\xd8\x2c\x12\x16\x8b\x84\xd9\x64\xa4\x40\x47\ \x6a\x76\x43\xa5\xac\x24\xfd\xdf\x3b\xeb\x5d\x7c\xb7\x6a\x0b\xcf\ \x7e\xf4\x2b\xaf\x2f\xfa\x9d\xe5\x65\x3b\xf0\x05\xe5\x76\x95\xab\ \x6b\x4b\x29\xbb\x64\x40\x1c\xfb\x9e\x44\x9f\x65\x54\x00\x6b\xf5\ \xb9\xb6\x64\x3f\xee\xea\x32\x7c\x56\x8b\x89\x23\xa6\x8d\xe1\xb6\ \xcb\x4f\xe6\xb0\xfd\x46\xe1\xb4\xdb\xc3\x4e\x9b\x21\xfd\xb4\x49\ \x14\x31\x49\xa1\x4d\x68\xb6\x47\x16\x52\x3c\x7a\xa6\xb8\x0d\x2a\ \xe9\xcb\xad\x57\x9d\x4f\xdf\x5e\x3d\xa2\x4a\xbe\x11\x53\x37\x93\ \x98\x52\x70\x7b\x7a\x5b\xb9\x7a\x0d\x4d\x8d\x0d\x64\x67\xa6\x93\ \x91\xee\xc4\x6e\xb3\x62\xb5\x9a\x91\x24\xbd\xf4\x5c\x22\xbf\xb1\ \xb6\x02\x78\xe8\xcf\xb2\x0d\xe5\x40\x78\xc1\x33\xdb\xc0\xda\x94\ \x45\xe4\x83\x01\x0a\x0b\x0a\x3a\x14\x5d\xb5\xf6\x5c\x22\x53\xa1\ \x10\x98\xef\xac\xda\xce\x79\x97\x5f\x8a\xcf\x17\xed\xeb\x72\xf0\ \x01\x07\xf0\xdc\x83\xf7\x50\xef\x51\xd9\x52\xed\x67\x63\xa5\x97\ \xd2\xed\x5e\xbc\x7e\x85\xa0\xac\x83\xa8\xae\x0b\xd7\x69\x0a\x2d\ \x12\xbc\xe3\x4a\x48\xd1\xee\xbf\x43\xf2\x45\x0f\x8a\x5e\x85\x44\ \x68\xa6\x60\x4c\x26\x11\x9b\x49\xc0\x66\x98\x85\xd9\xac\x12\x69\ \x36\x09\x55\x35\x85\x39\xd4\xac\x9c\x9e\xdc\x72\xeb\x3f\xb9\xe9\ \xba\xcb\xf1\x7a\x9b\x0b\x73\xac\x5c\xf1\x2b\x2f\xcc\x9b\xcb\xd9\ \x17\xce\x46\x0d\x29\x6b\xb4\x90\x8f\xb2\x80\xa6\x68\xcd\x75\x19\ \x43\xd6\xbd\x46\x0d\xc3\x90\xf7\x4c\x9d\xcb\xcb\xd2\x75\x3e\x96\ \x95\x6e\x27\x2f\xd3\x41\x49\x8f\x2c\x06\xf6\xc9\xc1\x96\x80\x7e\ \x49\x58\xaf\x36\x64\x36\x27\xb6\x2d\xf2\x4d\xe4\xab\x9d\x48\x46\ \xdc\xde\x68\xbc\xb5\x52\x7a\x2d\x9d\x5b\xaa\xb2\x64\x2d\x66\x13\ \x33\xf6\x1b\xcd\x41\x93\x46\xb0\x70\xe9\x2a\x16\xff\xb2\x16\xaf\ \xdf\x8f\x64\x78\x6d\xeb\xf3\x3c\x5d\xe9\xa0\xaa\x2a\x1a\x1a\x92\ \x20\x46\xd4\xd2\x6c\x75\xe9\x70\xb7\x6c\x59\x19\xe9\xfc\x75\xd6\ \x39\x3c\xf7\xda\xfb\xfc\xb0\x6c\x65\xd2\xfd\x54\x55\xc3\x1f\x08\ \xe2\x91\x3a\x77\xe1\x2f\xbd\xe8\x6c\xba\xe7\xe7\xe1\x71\xfb\xf0\ \xf9\x03\x04\x65\xc3\x00\xcb\xeb\x23\x10\x08\xe0\x0f\xf8\xf1\xb8\ \xbd\xec\xdc\xb9\x93\x6d\x15\xdb\xa9\x6f\x68\x4c\xc9\xf7\x5e\xb8\ \x68\x31\x27\x1e\x7f\x0c\x6e\x8f\x17\x97\xdb\xab\x47\xe6\x81\x20\ \x8a\xac\xa0\x68\x6a\xf8\xf7\x8c\x9d\xe1\xb7\xd5\x09\x22\xa4\x5c\ \xe9\xdf\xac\x5c\x19\x0c\x54\xa5\x0a\xc8\x8d\x85\xce\x5e\x29\xeb\ \x28\x89\x40\xdc\xe7\xf7\x70\xde\xa5\x97\x50\x59\x15\x6d\x76\xd5\ \xbf\xa4\x98\x47\xee\xbb\x1f\x4d\x13\x71\x9a\x45\x06\xe6\x9b\xe8\ \x9f\xe7\xe4\xa0\x21\x50\xe3\x0a\xb0\x61\xa7\x97\x8d\x95\x1e\x36\ \x54\x7a\xa8\x77\x07\x75\x3a\x42\x6d\x6d\xee\xa3\xb5\xeb\xe9\xd8\ \x1d\xb4\x08\xb1\x4b\x50\x56\x09\x06\x35\x5c\xbe\x66\xcd\xb9\x59\ \x12\x31\x9b\x04\xd2\xed\x12\x59\xe9\x66\xb2\xd2\x2d\x74\x4b\xef\ \xc1\xa5\x57\xde\xc8\x83\xff\xba\x3d\x6a\x70\xf9\xfc\xd3\x8f\xe8\ \x59\xd0\x87\xe9\x87\x1d\x6f\xf0\xfb\x92\x91\x7d\xda\x4c\xaf\x84\ \x7c\x9d\xc3\x56\xbd\x26\x41\x8f\x04\x4d\x02\x52\xb8\xe8\x2b\x78\ \xfc\x01\x56\x6c\xda\xc9\xaa\xcd\x95\xe4\x64\xd8\xe9\x9b\x9f\x45\ \xbf\x9e\x59\xd8\xac\xa6\x68\x51\x4e\x92\xa4\x92\xd6\x00\x31\x91\ \x87\x48\x4b\x11\x7f\x57\xd0\x36\x6d\x05\xe7\x54\xda\x1e\x98\xcd\ \x12\x87\xec\x33\x92\xe9\x93\x87\xb3\xf8\x97\xb5\x2c\x59\xb1\x1e\ \x8f\x37\x80\x20\x10\xb1\x48\x26\xa2\x68\x0a\x62\xa8\x00\x71\x84\ \xd5\xc4\x9e\xd8\x24\x49\xe2\xc2\x53\x8f\xa5\xb0\x57\x4f\x16\xbc\ \xf5\x11\x4d\x6e\x1f\x7e\x7f\x10\x59\x96\xd1\x50\x91\x44\x13\x99\ \xe9\x76\x0a\x7a\x74\x23\x3f\x27\xa3\x53\x9f\x95\x9f\xdf\x9d\xbc\ \xbc\xee\xd4\x98\x9a\xc0\xe5\x46\xf3\xf9\x41\x54\x30\x59\x9c\x86\ \x55\x87\x80\x24\x49\x8c\x1e\xa3\xd7\x56\x55\x14\x99\x2d\x5b\xb6\ \xb0\xec\x97\xe5\xac\x5b\xbf\xa1\x8d\x65\xdc\x5a\x6f\xdb\x77\x54\ \xb2\x69\xd3\x66\x72\x72\x73\x68\x72\x79\xf0\x7a\xbd\xf8\x7c\x01\ \xe4\x60\x10\x51\x11\xf4\x7a\xa0\x2d\x26\x08\x69\x2d\x06\x87\xa5\ \x11\x5a\xf2\x08\xac\x5d\x94\x52\x20\x2f\x4c\x01\xb5\x12\x79\xf3\ \x87\xa6\xd9\x21\x30\x7f\xf0\xd1\xb9\xac\x5a\xb3\x26\x6a\xff\x8c\ \xf4\x74\x9e\x7b\xec\x71\x1c\x8e\x74\x14\x45\xf7\x2a\xd1\x17\x31\ \xf5\x2d\xdb\x61\x61\x5c\xb1\x85\xb1\x45\x99\x08\x02\xd4\xba\x82\ \x6c\xa8\x74\xb3\x61\xa7\x87\x8d\x95\x6e\xea\xdc\xc1\xd6\x91\x5a\ \x6b\x37\x9a\x47\xd3\x35\xc6\x92\x97\xa6\xa9\xa8\x46\x14\xad\x97\ \xa4\x12\x68\xd2\x40\x56\x35\x7c\x7e\x05\x8f\x57\xa6\x47\xd1\x18\ \x8e\x3c\xee\x74\xde\x7f\x6b\x41\xd4\x71\x16\xbc\xf0\x0c\x83\x87\ \x8f\x23\x3d\xbb\xa7\x6e\x15\x2a\x08\x98\x44\x11\x4d\x52\x51\x55\ \x31\xdc\x99\xc3\xdc\xbd\x59\xc4\x6a\xd6\x69\x18\x53\xa8\x50\x86\ \x10\x5d\x79\x25\xa0\xc8\xac\xdf\x56\xc5\xfa\x6d\x55\x64\xa7\xd9\ \x28\xc8\xcd\xa0\x28\x3f\x13\x4b\x84\x4e\xbd\x3d\x45\x31\x12\x01\ \x77\xe4\x80\xdc\x15\xfc\x78\xa2\x28\xbc\xbd\x99\x8c\xa9\xc8\x94\ \x0d\x9d\xb7\x49\x12\xd9\x7f\xc2\x10\xa6\x8e\x1b\xc4\xb2\xd5\x1b\ \xf9\x79\x75\x19\x8d\x4d\x1e\x64\x59\x21\x10\x94\x31\x2c\x3b\xf4\ \x4c\xc7\xbd\xc4\x7b\xe1\x90\xa9\x13\xe9\xd9\x3d\x97\xab\xef\x98\ \x4b\x55\x55\x2d\x92\x49\xc4\x66\x31\xe3\x70\xd8\xba\xec\x33\xdc\ \x6e\x1f\xa2\xa9\x89\xca\xea\x3a\x1a\x1a\x5d\xb8\x3d\x5e\x02\x41\ \xd9\x30\xa7\x22\x5c\x71\xc8\x64\x92\xb0\x5a\xcc\xd8\x2c\x66\xba\ \xe5\x76\xe7\xb8\x63\x8e\x41\x91\x03\x2c\xfe\xe1\x47\x16\xff\xb0\ \xb4\xcb\xa2\xf2\xd3\x4f\x3d\x99\x34\xa7\x03\x97\xdb\x83\xc7\xe3\ \xc3\x27\x49\x88\xa2\x8c\xaa\x46\xdc\x04\x9a\xd6\x4e\xcc\xd0\x68\ \x68\x6c\xa4\xa6\xb6\x2e\x56\x4b\x4e\x4a\x81\xbc\x6f\x41\x6a\x38\ \xf2\x48\x00\x90\x24\x7d\xdb\x51\x59\xc1\x73\x0b\x5e\x8a\x26\xf6\ \x45\x91\x47\x1f\x78\x80\xa2\x80\x81\x7d\x52\x00\x00\x20\x00\x49\ \x44\x41\x54\xbe\xc5\xc8\xb2\x0e\xe0\x21\x30\x8f\xbc\xe9\x23\xaf\ \x67\xb7\x34\x33\xdd\xd2\xb2\x18\x5f\x92\x05\xe8\xa5\xe9\x36\xec\ \x74\x53\xb6\xd3\xcd\x86\x9d\x6e\x6a\x9b\xfc\xed\x9b\x0b\xc5\xbe\ \xa6\xb5\x06\x1e\x06\xad\x13\x92\x33\x1a\x2a\x17\x41\x33\xb2\x44\ \x45\x38\xe0\xb0\x53\xa8\xd8\xb2\x91\x65\x4b\x17\x47\x4c\x51\x55\ \x5e\x7b\x65\x3e\xa7\x9c\x7b\x3d\xb5\x8d\x7e\xea\x5d\x01\x5c\x9e\ \x20\xc1\xa0\x02\x08\x98\xcd\x60\xb3\x98\x48\xb3\x4b\x64\x38\xcd\ \x2c\x5d\xfc\x15\x9a\xe2\xd3\x81\x5c\xd2\x15\x37\x42\x04\x89\x17\ \xa6\x4b\x24\x89\xb4\xb4\x74\x9c\xce\x34\x9c\x69\xe9\xa4\xa7\x67\ \x30\xa0\xa4\x84\x1e\x39\xe9\xf4\xe9\x9e\x81\xc5\x64\x4a\xea\x6f\ \x9d\x08\xd0\x23\x7f\xbb\xe5\x2b\x57\xf2\xcd\x77\x8b\x93\xd2\x2d\ \x5d\xd1\x42\xe7\x95\x9e\x9e\xce\xf9\x67\x9e\x16\x75\x5e\xaf\xbf\ \xfd\x1e\x2f\xbf\xf6\x16\xaf\xce\x7f\x12\x8b\xd9\x1c\x07\xe2\x5d\ \x05\xe6\xb1\x03\x98\xaa\x2a\xcc\x7d\x72\x5e\x78\x8a\x5d\x53\x55\ \x47\x5a\xb7\x9e\xd8\x6c\x19\xf8\x03\x41\x54\x55\x09\x5b\x3b\x34\ \xf3\xc9\x7b\x76\x1b\x3e\xa8\x84\x57\x1f\xb9\x8d\xeb\xfe\xf1\x08\ \xbf\xfd\x5e\xda\xee\x80\xa7\xb5\xe6\xf3\xfb\xc1\xe5\xa6\xbe\xd1\ \x45\x5d\x5d\x23\x2e\xb7\x17\x9f\x41\x69\x34\x07\x7e\x22\x26\x93\ \x5e\x5a\xce\x62\xd1\x8b\x59\x38\xed\x36\xd2\xd3\x1c\x4c\x9b\x36\ \x8d\xa1\x43\x06\xf3\xc6\x5b\xef\x51\x57\xdf\xd0\xa9\x73\x69\x6c\ \x72\xb1\x6e\xdd\x7a\x0a\x7a\xf5\xc2\x61\xb7\xe1\xb2\x58\x30\x9b\ \xfd\x04\x83\x41\x04\x21\x26\x39\xa8\x1d\x8a\x95\xd0\x3f\xcb\x36\ \x96\x33\x74\xc8\xe0\x5d\x03\xe4\xb9\xdd\xba\xe1\xb0\xdb\xbb\x1c\ \xc0\x13\xd1\x2a\xa2\x08\x0f\xcc\x9d\x13\x97\xde\x7e\xfd\x95\x57\ \x70\xe0\xd4\xfd\x91\x65\x1d\xbc\x13\xd9\xc1\xb6\x76\xa3\x66\x3b\ \xcd\x8c\x2b\xc9\x62\x9c\x01\xec\x0d\x21\x60\xdf\xe1\xa2\x6c\xa7\ \x8b\xea\x46\x7f\xeb\x00\xae\xb5\x11\xea\x23\xc0\x5c\x05\x74\x41\ \x8c\x06\x41\x8c\x5a\xa2\x72\x38\xf1\xe9\xd4\xf3\xaf\xa6\xa2\x62\ \x33\x3b\x2a\xb6\x86\xdf\xff\xeb\xcf\xdf\x73\xc0\xa1\xa5\x64\xe4\ \x16\xe3\x0f\x2a\xba\x0a\xc7\x90\x52\xaa\x41\x40\xd3\x01\xc2\x6c\ \x12\xf9\xfa\xd3\xb7\xa9\xaf\xab\xea\xd0\xef\xe0\x74\x3a\x19\x3c\ \x78\x18\x83\x87\x0e\x63\xf2\xe4\x29\x4c\x1c\x3d\x9c\x3e\x79\x7a\ \xa4\xde\xd6\xc2\x05\x82\x00\x3f\x2e\xfd\x99\xdb\xef\x79\x60\x97\ \x00\x49\x9f\xde\x05\x5c\x70\xd6\x69\xe1\x6b\xac\x53\x5a\x41\xbe\ \x5a\xf4\x1d\xd7\xdc\x7c\x2b\x8f\x3e\x70\x77\xc2\xba\xaa\xa9\x88\ \xcc\x65\x45\x8e\xfb\xde\x8f\x3e\x70\x37\x43\x86\x8d\xe2\xbb\x65\ \x6b\xa9\x6b\x68\xd2\x29\x15\x51\x0c\x57\x95\xdf\x1b\x5a\x4e\x76\ \x26\x4f\xdf\x7b\x13\x0f\x3c\xf5\x32\xef\x7e\xba\xa8\x23\x13\xd8\ \xa4\x2d\x10\x90\x51\x05\x3f\x6e\x8f\x97\x26\x97\x97\x26\xb7\x07\ \x9f\x3f\x80\x22\xcb\x11\xb6\x15\x9a\x0e\xe6\x92\x88\xd9\x6c\xc6\ \x6a\x35\xe3\xb0\x59\xf5\xa8\xd9\xe7\x27\x27\x3b\x93\x4b\xfe\x72\ \x1e\xf3\x9e\x7b\x91\xca\xaa\x9a\x4e\x9d\xcf\xda\xf5\xa5\x0c\x1a\ \x34\x00\x87\xdd\x8a\xd5\x66\xc6\xe4\x95\x90\x24\x11\x39\x68\x50\ \x65\x6a\x5b\x80\x3b\xf1\x85\x29\xdd\x58\xce\xc4\x71\x63\xc8\xcf\ \xeb\xc6\xce\xaa\xda\xd4\x00\xb9\xa5\xf0\x44\x33\x50\xd2\x95\xb4\ \x4a\x22\x75\x43\x24\x88\xaf\x2b\x5d\xc7\xeb\xef\x44\x9b\x60\xf5\ \x2a\x28\xe0\xd2\x0b\x2e\x0a\x47\xe0\x91\x40\x9e\x08\xc4\xdb\x3a\ \x8d\xcf\x74\x98\x19\x5b\x92\xc5\x58\x03\xd8\x1b\xbd\x41\x1d\xd4\ \x8d\xad\xb2\xde\xd7\x0e\x92\x35\xde\xd0\x52\x37\xda\x09\x81\xb9\ \x9e\x11\xa6\x29\xaa\x51\xf4\x59\x0b\x7b\xb5\x58\x4c\x16\x8e\x3b\ \xe9\x5c\x9e\x98\xf3\x8f\xa8\xf7\x7f\xf0\xe6\xf3\x5c\x70\xe5\x9d\ \xf8\x02\x12\xfe\x80\x42\x30\xa8\x73\x16\x22\x3a\x80\x5b\xcd\x12\ \x0e\x9b\xa9\x53\x91\xaf\xdb\xed\xe6\xe7\x9f\x7f\xe2\xe7\x9f\x7f\ \x62\xc1\x8b\xcf\x31\x74\xf8\x68\x0e\x9e\x71\x2c\x13\xc6\x8e\xa7\ \x77\xf7\x4c\xfa\xf7\xee\x86\xd5\x6c\x8e\x4f\x76\x8d\x55\x9d\xec\ \x62\x20\x49\xf6\x9d\x17\xfc\xf7\x4d\x06\xf6\x2f\x61\xf6\x65\x17\ \xa5\x8c\x66\x89\x5d\x13\x88\x6d\xa2\x08\x63\x87\x95\x30\x6a\x48\ \x31\xcb\x56\x6d\xe0\xfb\x5f\xd7\x10\xe8\xa2\x24\xa0\xb5\x1b\xb6\ \x52\x53\xd7\x48\x76\x66\xc6\x1f\x0e\xe6\x26\x93\xc4\x4d\x97\x9f\ \xc5\xf0\x81\x25\x3c\xf6\xc2\x1b\x2d\xdc\x09\xed\x6b\xb2\xa2\xa0\ \x05\xf5\x05\x4e\x9f\x3f\x80\xd7\xe7\xc7\xef\xd7\xab\xfa\x84\x24\ \xc4\xcd\xfe\x2e\x3a\x7f\x6f\x36\x9b\xf0\x5a\x7c\x78\x7d\x3e\xfc\ \x81\x20\xc1\x40\x90\xbc\xdc\x2c\xce\x3e\xe3\x54\x9e\x9a\xf7\x3c\ \x8d\x71\xb6\x03\x6d\x6f\xdb\x2a\x76\xa0\xaa\x0a\x36\x9b\x15\xab\ \xc5\x82\xd9\x64\xd2\x7d\x65\x44\x81\x76\xa7\x04\xc4\xa4\xf4\x87\ \x3c\x57\xfa\x17\x16\xb0\xb3\xaa\xb6\xc4\xc0\xdc\x60\x97\x02\x39\ \xd0\x03\x30\xf5\xec\xde\xbd\x43\x7c\x67\x6b\x32\xb6\x44\x40\x7e\ \xcf\x83\x0f\xc4\xd9\x45\x5e\x7d\xd9\x65\x48\x92\x39\x69\x34\xde\ \xd1\x1b\x33\xf6\xfc\x32\xec\x66\xc6\x96\x64\x33\xb6\x44\x4f\x50\ \x6a\xf2\xca\x94\xed\x68\xa2\x6c\x47\x13\xa5\xdb\x5d\xec\xa8\xf3\ \xb4\x4e\xc1\xc4\xfc\x50\x71\x34\x8b\xa2\x21\x03\xfe\xa0\x8a\x28\ \x2a\xba\x47\x8b\x59\x64\xc0\xb0\x09\x14\x95\x0c\xa0\x7c\xc3\xfa\ \xf0\xbb\xd7\xaf\x5d\xc5\x86\xb5\xbf\xd0\xb3\x68\x04\x3e\x9f\x44\ \xc0\xac\x18\x6e\x7c\x1a\x26\x09\x83\x1b\x17\xbb\x74\xba\xbe\x7a\ \xe5\xaf\xac\x5e\xf9\x2b\x25\xfd\x07\x73\xe2\xe9\x97\x60\x71\x64\ \x91\x97\xe9\x64\x60\x9f\x1c\x86\x16\x77\xc7\x6e\x35\x27\x1c\x8c\ \x77\x35\x92\xc7\x0e\xdc\x91\xe7\x74\xdb\xdd\x0f\xd0\xbf\xa4\x90\ \xa3\x0f\x3f\x94\xd8\x8a\x7e\x5d\x4d\xb3\xb4\xd4\xc7\x45\x41\x60\ \xdc\xb0\x7e\x8c\x1d\x5a\xc2\xf2\x35\xe5\x2c\x5a\xba\x8a\xcd\xde\ \xda\x88\x32\x74\xed\x6f\x0d\x4d\x1e\x1e\x79\xf1\x3d\x86\x0d\x2c\ \x66\xc6\xd4\x09\x58\x2d\xe6\x3f\x1c\xd0\x8f\x3a\x64\x5f\xfa\x97\ \xf4\xe2\xe1\x79\xaf\x76\xc9\xf1\x54\x0d\x34\x45\xd1\xf3\x40\x8c\ \xa2\xca\xc1\xa0\x1c\xd6\x71\x6b\x91\x3a\x7d\x41\x40\x10\x83\x98\ \x82\x12\xc1\x48\xbd\xb7\xa2\x9b\xec\xf5\xe8\x9e\xc3\xa9\xa7\x1c\ \xcf\x53\xf3\x5e\xec\xd4\x39\x6d\xdd\xba\x8d\x9c\x9c\x3c\xac\x16\ \x33\x66\xb3\x09\x93\xc9\x64\xd0\x2b\x7a\x96\x6b\x32\x39\xb9\x16\ \xcf\xa6\x44\xb5\xf2\xcd\x5b\x00\xe8\x5d\xd0\x3d\x84\xcd\x3d\x80\ \x2d\x5d\x0d\xe4\xe9\x00\x4e\x7b\xd7\x3b\xb7\xc5\x2e\x74\x8a\x22\ \x2c\x59\xb6\x84\xcf\xbf\xfe\x3a\x6a\xbf\xe2\xc2\x42\x4e\x3a\xee\ \x84\xa8\x68\xbc\x3d\xb5\x0a\x3b\xd3\xd2\xed\x26\x46\x17\x67\x33\ \xc6\x00\x76\xb7\x4f\xa6\x74\x47\x13\xa5\x15\x4d\x94\x6e\x6f\xa4\ \xa2\xc6\x93\xc4\x76\x58\x8b\x07\x0f\x42\x60\xae\xfb\xb8\x07\x65\ \x0d\x51\x10\xf0\x4a\x0a\x16\xb3\x82\xcd\x2c\x72\xc4\x71\x67\xf0\ \xd8\xbf\x6f\x8b\x7a\xef\xfb\x6f\xbe\xc0\x15\x37\x3d\x80\xcd\x2a\ \xe1\x0b\x4a\xba\x9c\x52\x15\xc2\x7a\x65\xb3\x49\x8c\x03\x13\xb3\ \xd9\xcc\xe0\xc1\x43\x9a\xed\x79\x8d\x04\xa3\x40\x30\x88\xdb\xd5\ \x84\xdb\xd5\x84\xc7\xe3\x6e\x71\xc5\x7d\x43\xe9\x1a\x1e\xbd\xff\ \xaf\x9c\x72\xe6\x25\x50\x3c\x9c\xd2\xad\x35\xbc\xf6\xd5\x2a\xfa\ \x74\xcf\x64\xf4\x80\x9e\x8c\x19\xd8\x93\x34\x47\x33\x88\x24\xc2\ \xb3\xa1\x83\x06\x90\x93\x93\xdd\x76\xfa\xb0\x8d\xad\x7b\x5e\x6e\ \x3c\xa0\x46\x5d\x6f\x8d\x8b\xae\xb8\x81\x8f\xdf\xea\xc5\xe8\x11\ \xc3\xe2\xd6\x51\x52\x3e\x5b\x88\xeb\xeb\x02\x63\x86\x16\x33\x76\ \x58\x11\x1b\xb7\xee\xe0\xa9\xc7\x3a\x67\xf3\xaa\x28\x2a\x1f\x7d\ \xbd\x94\x0f\xbf\x5a\xca\xe9\x47\x1f\xc8\xb4\x89\x23\xfe\x70\x30\ \x1f\xd2\xbf\x88\x7f\xdd\x72\x39\xf3\x5f\x7b\x1f\xb7\xa7\xa9\xb3\ \xc3\xb4\x51\x78\x45\x77\x28\xd5\x5d\x4a\x15\xa3\xae\xa6\x51\x28\ \x39\xa4\xde\x32\x8a\x61\xa8\x72\x73\x21\xe6\x50\xbf\x96\x24\x01\ \x8b\xd9\x44\xaf\x82\x3c\x06\xf6\x2f\x61\x5d\xe9\x86\x0e\x9f\x51\ \xe9\x86\x72\x7a\xf5\xea\x85\xcd\x66\xc1\x62\x36\xe9\x7a\xf2\x08\ \x83\xb0\x38\x8b\xdb\x36\x76\xb6\x86\x46\xfd\x5a\x45\x14\x23\x49\ \x4f\x05\x47\xae\x03\xb9\xc3\x91\x52\x6a\x25\x04\xe6\xf7\xcf\x9d\ \x13\xb7\xff\x35\xb3\x66\x21\x0a\x12\xb2\x92\x9c\x1b\xdf\x55\xcd\ \x69\x33\x31\xaa\x28\x9b\x51\x45\xd9\x08\x02\x78\xfc\x32\xa5\xdb\ \x9b\x28\xad\x68\x64\x7d\x45\x23\x5b\x6b\x5c\x49\xcf\x4b\x0b\x75\ \x38\x55\x45\x40\x40\x31\xa4\x8a\xfe\xa0\x80\xcf\xaf\xe0\xb5\x88\ \x14\x0f\x1c\xcd\x80\x41\xc3\x58\x1f\x61\xcd\x5b\xb1\x75\x13\xbf\ \xff\xf6\x3d\x45\x03\x27\x62\x35\x8b\x28\xaa\x88\xaa\x68\x48\x92\ \xa1\x1d\x4f\x50\x26\x2f\xbb\x5b\x37\x6e\xbf\xeb\x3e\x5c\x9e\x20\ \x6e\xaf\x8c\x2f\x20\x13\x94\x95\x70\x55\x27\x51\x10\xd0\x54\x99\ \x8a\xad\x1b\x28\xdf\xb0\x96\xb5\xab\x97\xb3\x66\xf5\x8a\xb8\xe3\ \x78\x3c\x6e\xe6\x3f\xf5\x00\x27\xcc\x3c\x9f\x21\xa3\xf7\x43\xd3\ \x34\xca\x2b\xea\x58\x5b\x5e\xc5\x7f\x3e\xfb\x8d\x61\xfd\xf2\x98\ \x3c\xac\x37\x23\x07\x24\x2e\x71\xf6\xf7\x9b\x67\x73\xd4\x8c\x83\ \xbb\x64\xe0\x8d\x9d\x7d\xc5\x2d\xbe\xc6\x5c\x06\x8f\xd7\xcb\xcc\ \x73\x2f\xe1\xeb\x0f\x5f\xa7\x67\x7e\x7e\x98\xe6\x4a\x45\x54\xde\ \xda\x6b\xcd\xbc\xae\x40\xff\xc2\x9e\x38\x1d\xd6\x2e\xe9\x8f\xd5\ \xb5\x8d\xdc\x39\xf7\x65\x86\x0e\x28\xe4\xaa\xf3\x8e\xa3\xb8\x77\ \x8f\x3f\x14\xcc\xb3\x32\xd3\xb9\xea\x82\x53\x78\xff\xf3\x85\x9d\ \x9e\x6e\x69\xe1\x4d\x0d\xd3\x29\x6a\xc4\xbf\x43\x03\x76\x28\x8f\ \x43\x45\xd0\x95\x62\xc6\x8b\xa2\x28\x60\x36\x4b\xd8\xac\x16\xd2\ \xd2\x1c\x1c\x78\xc0\xd4\x4e\x01\x79\xd9\x86\x4d\x1c\xb8\xff\x54\ \xcc\x66\x33\x26\x93\x64\x00\xb9\x48\xc8\x67\xa6\x59\x4a\xde\x16\ \x99\x73\xf3\x3e\x6e\x8f\xc7\x00\x72\x47\xea\x81\xdc\x91\xa2\x88\ \x3c\x32\x1a\xaf\xa9\xad\xe6\x87\x25\x4b\xa2\xf6\x19\xd8\xbf\x3f\ \xc7\x1e\x71\x54\xd2\x48\xfc\x8f\xae\xa8\xe3\xb0\x9a\x18\x59\x94\ \xcd\xc8\x22\x3d\xea\xf4\x05\x64\xca\xb6\x37\xb1\xae\xa2\x81\xf5\ \x15\x8d\x6c\xa9\x74\x35\xfb\xa6\x84\x68\x16\x63\xea\x28\xa8\xa0\ \xa0\x9b\x6b\xf9\x82\x32\x1e\xbf\x88\xcd\x2f\x72\xe4\xf1\x67\xf2\ \xd0\x3d\x37\x47\x7d\xce\x6f\x3f\x2f\x66\xd0\xf0\x29\x58\x2d\x12\ \x41\x45\x45\x41\x0d\xf3\x83\x62\xc2\xac\x1e\x70\x7b\x65\x1a\xdd\ \x01\x9a\x3c\x41\xbc\x3e\x19\x7f\x50\x09\x7b\x7c\x08\x46\xb4\x92\ \x9e\x53\xc8\xf8\x1e\x25\xec\x7b\xc0\x91\xd4\x54\x6e\xe5\xcb\x4f\ \xdf\x61\xc9\x0f\xdf\xc6\x1d\xee\xed\xd7\x9f\x27\x27\x2f\x9f\xdc\ \x9e\xfd\xc3\xd1\x90\x2c\xab\xac\xdf\x5c\xc3\x8e\x9a\x26\xbe\xfb\ \x6d\x23\x9b\x37\x57\x25\x04\xdf\x64\x75\x4a\x3b\x43\xa5\xc4\xaa\ \x51\x92\xb5\xed\x3b\x2a\x39\xe5\x9c\x4b\xf8\xf4\xad\x97\xb1\xd9\ \xec\x88\x62\x7c\x79\xbd\xce\xd0\x72\xad\x81\x78\x6a\x82\x8d\xf8\ \x83\xfe\xbc\xb2\x94\x33\x66\xdf\xcb\xcc\x23\xf7\xe7\xa2\x53\x67\ \xe0\xb0\xdb\xfe\xb0\x7b\x42\x92\x24\x0e\xda\x6f\x7c\x4a\xbe\x67\ \x73\x9f\x6a\x56\x81\x45\xa6\xe1\x28\xaa\x86\x26\x43\x00\x01\x93\ \x14\xc0\xe3\xf1\xe1\xb2\xfb\x68\x6a\x72\xd3\xb7\x77\x3e\x59\x59\ \x99\xd4\x77\x50\xc5\x22\xcb\x32\xf5\xf5\xf5\x58\xcc\x66\x4c\x26\ \x13\x92\x28\x85\xf3\x39\x5a\x3a\xdf\xa4\xaf\x85\xea\x2a\xb8\x75\ \x20\x77\x76\x20\x22\x17\xdb\x0f\xe4\xb6\x94\x80\x78\xe4\xf6\xe5\ \x37\x0b\xe3\xa6\xfa\x57\x5e\x7c\x31\x82\x20\xc6\x2d\x70\xee\xae\ \xce\x99\x76\xab\x89\xe1\x45\xd9\x9c\xb0\x4f\x11\x37\x9e\x34\x92\ \xfb\x2f\x9c\xc4\xac\xa3\x87\x72\xe8\xd8\xde\x14\xf7\x48\x47\x14\ \x9b\x33\xc1\xf4\xe9\xa2\xaa\xfb\xbc\x04\x55\xfc\x01\x05\x9f\x5f\ \xa1\x4f\xf1\x50\x06\x0c\x1a\x1a\x75\xdc\xdf\x57\xfe\x82\x24\xa8\ \x58\x2d\x22\x16\x49\x97\x5d\x85\x32\x3a\x13\x4d\xe5\x35\x4d\xc3\ \xeb\x97\x71\x79\x65\x1a\x5d\x01\xea\x1a\xfd\xd4\x36\xf8\xa8\x35\ \x1e\x6b\x1a\x7c\xd4\xd4\xeb\x8f\xd5\xf5\xfa\xbf\xed\x19\x3d\x98\ \x79\xd6\x2c\x2e\xba\xec\x5a\x6c\xb6\xe8\xdf\x5b\x55\x14\x16\x3c\ \x3b\x07\xd9\xdf\x48\x9a\xc3\x8c\xc3\xa6\xd7\x65\x0c\x9d\x87\x06\ \x34\xb8\xe2\x8b\x9b\x04\x65\x35\x6e\x00\x8e\xfc\x2d\xdb\xb3\x45\ \x1e\xa3\x3d\x7d\x60\xf9\x8a\xd5\x5c\x30\xeb\x5a\x40\x4d\x98\xca\ \x9f\x92\x40\xe0\x0f\x08\x2e\x54\x45\x65\xc1\x3b\x5f\x70\xe2\xa5\ \xff\xe0\xc3\xaf\x7e\x62\x6f\x69\x5a\x02\xca\x25\x9e\xba\x6c\xf6\ \x20\xd2\x5d\x0a\x75\x1d\xbf\xdf\xc8\x06\x75\x7b\x7d\x78\x3c\x3e\ \x06\xf6\x2f\xe9\xd4\xb9\xf8\x03\x7e\x4c\x66\x29\x1c\x91\x87\x2d\ \x09\x92\x76\x22\xad\x55\x3c\x77\xb9\xf5\x45\xd8\xb4\x66\x1d\x7e\ \xea\x80\xbc\x35\x8e\xbc\xad\x0b\x9d\xb1\x89\x22\x91\x11\xf9\x67\ \x5f\x7d\x11\x3d\x6d\x90\x24\x0e\x3e\xe0\xc0\xf0\x8d\x9c\x2c\x2a\ \xeb\xe8\xb9\xec\x8a\xe7\xec\x56\x89\x61\x85\xd9\x1c\xbf\x6f\x11\ \x37\x9c\x3c\x9a\x07\xff\x32\x85\x2b\x8f\x1b\xc1\x8c\xf1\x7d\x28\ \xee\x91\x81\x20\x18\x7c\x79\x50\xf7\x87\xf1\x05\x55\xfc\x01\x95\ \x51\x63\xa7\x44\x77\x20\xbf\x8f\xf2\xd2\x15\x58\x4c\x12\x16\xb3\ \x68\xd4\x2f\x15\x92\x66\x0a\x6a\x80\x2f\xa0\xe0\xf5\xc9\xb8\xbd\ \x41\x5c\xde\x20\x4d\x9e\x20\x4d\xee\x00\x0d\xee\x00\x8d\xae\x00\ \xf5\x2e\x3f\x75\x4d\x7e\xea\x1a\x0d\x80\x6f\xf4\x53\xdb\xe8\xa3\ \xdf\xe0\xb1\x5c\x7b\xf3\x5d\x71\x60\xee\xf1\xb8\x59\xf8\xe9\x5b\ \x38\x6d\x66\xec\x56\x13\x56\x8b\x84\x59\x12\x8d\x3a\xa6\x89\x65\ \x75\xdf\x2d\x2f\xe7\xad\xaf\x56\xb1\x74\xf5\x36\x9a\x3c\x81\xa4\ \x80\xdc\xde\x2d\x32\xda\x6f\x4b\x7b\xff\xe3\x2f\xb8\xf5\xae\xfb\ \xc3\x7d\x6d\x97\x80\xf9\x1f\x04\x77\x55\xb5\x0d\xfc\xed\xdf\xcf\ \x73\xc1\x8d\xff\x66\xdd\xc6\xad\xfc\xaf\x34\x9d\x82\xc1\xe0\xd0\ \x55\x64\x59\x41\x0e\x2a\xf8\x03\x41\xfc\xfe\x00\x5e\x5f\x80\xa2\ \xc2\x3e\x9d\xfa\x0c\x9f\xd7\x8f\x49\x32\x21\x19\xc5\xa6\x23\xef\ \xbf\xa4\x60\xae\xb5\xfc\x9b\xb9\xdd\xba\x19\x59\xda\xae\xe0\xc8\ \x1d\x36\x7b\x9b\x38\xc1\x8e\x44\xe4\xa2\x08\x81\x80\x3f\x9c\x4c\ \x12\x6a\xe3\xc7\x8e\x25\x2d\x2d\x9d\x60\xb0\x6b\x14\x2a\xbb\x43\ \xb3\x9a\x25\x86\xf6\xcd\x66\x68\x5f\x9d\x8a\x09\x2a\x0a\xe5\x3b\ \x9a\xd8\xb8\xa3\x91\x6d\x35\x2e\x1a\xbd\x3e\xfc\x41\x99\x41\xc3\ \xc6\x02\xf3\xa2\xde\xbb\xea\xb7\x25\x14\x0d\x1c\x85\xcf\x2f\xa2\ \x18\x84\xaf\x98\x2c\xc1\x44\x0b\xf1\xef\x8a\x3e\x40\x04\x64\x7c\ \x7e\x85\xa0\x62\xf0\xe4\x5a\xb3\x87\xba\x5f\x12\xf1\x07\x65\xfc\ \x41\x19\x45\x36\xa3\x6a\x1a\x59\xd9\x3d\x39\xf3\xbc\x4b\x79\xe6\ \xf1\x07\xa3\x0e\xbb\xf4\xa7\x6f\x39\xe0\x90\x63\xb0\xd9\xb2\xc2\ \x46\x64\xa6\x16\x2a\xc2\xc8\xb2\x4a\xe9\x96\x1a\x16\x2f\xdf\x4c\ \x93\x3b\x40\x9f\xfc\x2c\xc6\x0e\xee\xc5\xc4\x61\x7d\x48\x77\x5a\ \x3b\xdd\x87\xda\xd3\x1e\x7e\x7c\x1e\x03\xfa\x15\x73\xf6\x69\x27\ \x27\xf4\x71\xd9\x33\xeb\xa4\x26\x3f\xe1\x5f\x57\x97\x72\xc6\x55\ \xf7\x70\xd2\x11\x53\xb9\xec\xac\x63\x22\x17\xd3\xf6\xf4\xaf\x96\ \x74\x47\x4d\x0b\x65\x55\xeb\x80\x2e\xcb\xba\xd2\x25\x10\x08\xe2\ \x0f\x04\xc8\xe9\xd6\xad\x53\xa7\xe4\xf5\x7a\xf5\x68\x5c\x94\x8c\ \xa0\x20\x46\x31\x16\xd3\x89\xda\xe2\xdb\x14\xe2\xc8\xd3\x1c\xa9\ \x05\xf2\xb4\xae\xe6\xc8\x13\xa5\xe5\x7f\xff\xd3\x0f\x78\x22\xcc\ \xa3\x00\x0e\xda\x7f\xff\x84\x11\xdc\xde\xd4\xcc\x92\xc4\xc0\xde\ \x59\x0c\xee\x9b\xa5\xf3\xb7\x9a\x4a\x55\x83\x87\x7a\x77\x4f\x9e\ \xc9\xef\xc9\xce\x9d\xdb\x9b\x79\xf2\x5f\x7e\xe2\xd8\x99\x17\x61\ \x36\x89\xc8\x8a\xa8\xcb\x10\x8d\x48\x38\x51\x07\x51\x8c\x92\x76\ \x21\x3b\xdf\xa0\xb1\xe9\x2e\x90\xcd\x55\x8f\x4c\x92\x82\xac\x88\ \xc8\xb2\x8a\x51\x13\x01\x49\x10\x18\x32\x62\x22\x63\xc6\x4e\xe4\ \x97\x65\xcd\xd3\x74\x55\x55\xf9\xe6\xcb\x0f\x38\xfc\xf8\x73\x90\ \x15\x8d\xa0\xac\xe8\x86\x51\x49\x84\xe4\xaa\xa6\x9f\x87\xac\xa8\ \xf8\x83\x32\xbf\xae\xad\xe0\xc7\x15\x9b\x79\xf4\xbf\x8b\x19\x56\ \x9c\xcf\xbe\x63\x8a\xd8\x67\x64\x21\xe9\x4e\x5b\xbb\xfb\x4f\x6b\ \x6d\xc4\xb0\x41\x34\xb9\xdc\x94\x6f\x6a\x8e\x4a\xaf\xbe\xf9\x36\ \x8a\x0b\xfb\x32\x75\x9f\x49\xbb\x5c\xc9\x92\x52\x7c\x4b\x52\x6e\ \x4c\x55\x55\xfe\xf3\xfe\xd7\x7c\xba\x68\x29\x57\x9c\x73\x1c\xc7\ \x1e\xb2\xcf\x1e\x9a\x59\xda\xf6\x12\x6a\x3a\x4e\xa8\xa0\xe9\x16\ \xd0\x8a\x11\x9d\x2b\x8a\x82\xa5\x93\xa2\x0d\xb7\xc7\x13\xa6\x34\ \x45\x41\x4c\xd0\xe7\xdb\x12\x6d\x46\xbf\xa6\xc8\x2a\x3e\x9f\x3f\ \x92\x23\x4f\x4b\x21\x47\xde\xf5\x59\x9d\x91\xdb\xa7\x5f\x7d\x19\ \xb7\xcf\x41\x07\x1c\x90\x74\xa1\x6c\x6f\xac\x30\xaf\x69\x20\x89\ \x22\xbd\x72\xd3\x18\x59\x92\xc7\xd1\x87\x4d\x8f\x7a\xbd\xa1\xbe\ \x96\xca\x8a\x8d\x46\x1a\xbe\x60\xf8\x4d\x24\xcf\xc4\xd1\x22\x64\ \x87\x8a\x1a\xb1\x19\xce\x8d\x7a\xe7\xd6\xad\x76\x7d\x01\xbd\xa2\ \x92\xc7\xa0\x62\xdc\xbe\x20\x1e\x9f\xcc\xf4\x43\x8f\x8a\x3b\xee\ \xaa\x15\xcb\xb0\x9a\x75\x8a\xc7\x6c\x12\x8d\xf3\x48\x7c\x1a\x9a\ \xa6\x7f\x9e\x2e\x21\x53\xc3\x8f\x41\x59\xe1\xe7\x35\x5b\x99\xf3\ \xf2\xb7\x9c\x7e\xcb\x02\x6e\x79\xe4\x23\x3e\xfa\xee\x77\x1a\x5c\ \xbe\x36\x5d\xa7\x44\x8f\xb1\x2d\x18\x94\x59\xf0\xcc\x43\x98\x23\ \xbc\x64\x82\x41\x99\x33\x2e\x9c\x45\xd9\xc6\xf2\x5d\xc7\x97\xff\ \xe1\x11\x2b\xd4\x35\xb8\xb8\xe3\xe1\x17\x39\xe7\x9a\x7b\x58\xbd\ \x7e\xd3\x5e\x73\xc3\x24\x8b\x78\x35\xa3\xa6\x80\xaa\x35\xf7\x3b\ \x45\x51\xb1\xd8\x3a\x37\x0b\x74\xbb\xbd\x51\x92\xc3\xa8\xe0\x42\ \xeb\xf8\x0f\xe6\x72\xbb\x3b\x14\x91\xff\xe1\x40\x1e\x0b\xe8\x9f\ \x7d\xf5\x55\xd4\xf3\x05\x3d\x7b\x32\xb0\xdf\x80\x84\xbc\xe8\xde\ \xc9\xef\xc5\xff\xfb\x90\xe9\xfb\xc7\x53\x15\xb5\xa5\x9c\x38\xad\ \x3f\x53\x47\xf6\xa6\xa4\x47\x06\x16\x93\x48\xb2\x5c\x1c\x8d\x88\ \x45\xa0\x50\xf7\x36\x3a\x77\xe8\x9a\x2a\x8a\xde\xc1\xf5\x68\x5d\ \xc1\x1f\x90\xc3\xdc\xba\xd7\x2f\xd3\xa7\x68\x20\xdd\x63\x7c\xd3\ \x9b\x1a\x1b\xa8\xa9\xdc\x86\xc5\x6c\x70\xe4\xc6\x80\x92\x18\x04\ \xb5\xa8\x20\x25\x94\x14\x15\x16\x1d\xa0\x2f\xf8\xfe\xb2\x66\x0b\ \x73\x5e\x59\xc4\xe9\x37\xbf\xc0\xcd\x73\xde\xe7\x83\x45\xab\x69\ \x70\x79\x3b\x75\x4d\x6b\x6a\xea\x18\x3f\x66\x04\x77\xdd\x7a\x7d\ \xd4\xf3\xf5\x0d\x8d\x9c\x74\xf6\x5f\x68\x68\x6c\x88\xcb\x4e\xdd\ \x13\xc0\x7c\xf8\x80\x42\x06\x15\xf7\xea\x50\x07\x5b\xb9\xae\x9c\ \xb3\x66\xdf\xcd\x9d\x73\x5e\xa4\xbe\xd1\xb5\xfb\xdf\x17\x9d\x1c\ \xc1\xc2\xf8\x61\xf4\x7d\x8b\xd9\x6c\x48\x06\x3b\xd6\x42\xac\x41\ \x78\x81\x53\x6b\x8b\x77\x4e\xeb\xc6\x7c\x2e\xb7\xbb\x43\x1c\x79\ \x07\x16\x3b\x3b\xaf\x5a\x49\xe6\x96\xd7\xe4\x6a\x64\xc7\xce\x9d\ \x51\xfb\x1e\xbc\xff\xfe\x1d\x56\x29\xec\xc9\x60\x1e\x39\x60\xed\ \x37\x79\x12\x36\x6b\x74\x04\xb1\x76\x7d\x29\xf9\xdd\x1c\x4c\x18\ \x9c\xcf\x09\xd3\x06\x70\xe1\x91\x23\x38\x62\x4a\x09\x66\x93\x98\ \xb4\x0b\x85\x6c\x7c\x35\x2d\x32\x92\x89\xf8\x4f\xc3\x50\xd0\x18\ \xc5\x30\x02\x8a\xce\xad\x07\xf4\xad\x67\x41\xef\xb8\xe3\x96\xad\ \x5f\xa5\x47\xe3\x21\xf5\x4c\x2b\xa9\x9d\xcd\x37\x54\x04\x98\x1b\ \x37\x57\x64\x71\x0f\x45\xd1\xf8\x65\xcd\x36\xe6\xbc\xf2\x0d\xa7\ \xde\xf8\x02\x37\x3d\xfc\x1e\x1f\x2c\x5a\x45\x43\x53\xfb\x41\xbd\ \xa6\xae\x1e\x45\x51\xb9\xe2\xe2\x73\x39\x32\x66\x76\x53\xb6\x61\ \x13\xa7\x5f\x30\x0b\x45\x91\xf7\xb8\xc8\xdc\xe9\xb0\x71\xc6\x71\ \xd3\xf9\xbf\x59\xa7\x31\x71\xd4\xa0\x88\x93\xd5\xda\x84\x77\xaa\ \xa6\xf1\xe6\xc7\x8b\x38\xee\xa2\xff\xe3\xb5\x0f\xbe\x0e\xeb\xae\ \xf7\x84\x29\x88\xd6\x4e\x43\xaa\x68\xfa\x5a\x40\x56\x94\xb8\xac\ \xf1\xf6\x34\x9b\xcd\x6a\xa8\x1e\xa3\x79\xf9\x36\x01\xb8\x96\x78\ \xee\xd0\x1c\x91\xef\x02\xd5\x4a\x28\x22\xef\x4a\x55\x47\xe8\xc6\ \xa9\xaa\xae\x8e\xdb\x77\xc8\xa0\x41\x51\xc0\x16\xf9\xde\x44\xcf\ \x75\xf6\x5c\xfe\xc8\xe7\x92\x45\xe7\x56\xab\x8d\x92\xe2\xc2\xa8\ \xd7\xaa\xaa\xa3\xcd\x7f\x44\x51\x20\x2f\xd3\x8e\x29\x06\xc8\x2d\ \x26\x91\xbe\xf9\x19\xd8\xcc\xa6\xa4\x1d\x2b\x2a\x5a\x81\xf0\xf4\ \x53\x56\x9a\xf9\xf4\xa0\xac\xd2\x3d\xbf\x67\x3c\x48\x56\xed\x44\ \x12\x05\x4c\x82\x80\x24\x88\xd1\x05\x88\xe3\x6f\xbf\xf8\xfe\xdc\ \x42\xca\x72\x68\x7f\x55\x55\xf9\x65\xcd\x56\xe6\xbc\xbc\x90\x99\ \x37\xce\xe7\x86\x07\xdf\xe1\xfd\x6f\x56\xb6\x39\x52\x57\x55\x95\ \xba\xfa\x46\x34\x0d\x9e\x9e\x73\x2f\xfd\x4b\xa2\xaf\xe5\xb7\xdf\ \xff\xc4\x55\x37\xde\x9a\xb0\x52\xd1\x9e\x10\x99\x17\xf6\xca\xe3\ \xa6\x4b\x4e\xe1\xc9\x7f\x5c\xc1\xfe\x93\x46\x82\x20\xc4\xdb\xfe\ \x92\xbc\x88\x4a\x43\x93\x9b\x7f\x3e\xb2\x80\xd3\xaf\xb8\x93\xe5\ \xab\xcb\xf6\x50\x0a\x29\xb1\x21\x95\x10\x51\xad\x48\x77\x9e\xd4\ \x03\x0e\xbf\xdf\xdf\xc9\x41\xd4\x11\x5e\x63\x8a\x05\xf3\xd6\x52\ \xf3\x5b\xa4\x6c\x3c\x9e\xd4\xeb\xc8\x05\x41\xc0\x6e\xeb\x7a\x1d\ \x79\xe8\xb1\xaa\x3a\x3e\x91\x24\x2f\x37\xf7\x7f\x2a\x1a\x8f\x05\ \xf1\xd0\x63\x7e\x5e\x74\xe5\xa7\x9d\x95\x55\x6d\x02\x1b\x93\x49\ \x64\xc6\xc4\x62\x66\x9f\x32\x9e\x2b\x4f\x9c\xc0\x49\x07\x0c\x62\ \xcc\xc0\x1e\x38\x6d\x96\xc4\x37\x82\x1a\xca\x9c\xc3\xe0\xd1\xd5\ \x30\xa8\xe7\x76\xef\x91\x80\x2b\x6c\x6a\x4e\x51\x16\x41\x10\x85\ \x94\x5e\x13\x55\xd5\xf8\x75\xed\x56\xe6\xbe\xfc\x35\xa7\xdd\x34\ \x9f\x5b\xe6\xbe\xcb\xa7\x8b\x7f\xa7\xb1\x15\x4e\xbd\xc9\xe5\x41\ \xd3\x20\x33\x33\x83\x37\x5e\x7a\x9a\xec\xac\xcc\xa8\xd7\x5f\x7c\ \xf5\x0d\x1e\x7a\xec\xe9\xa4\xe5\xe2\xba\xba\x38\x46\x2a\x5a\xbf\ \xc2\x9e\xdc\x75\xdd\x39\xbc\xfc\xd0\x8d\x1c\xbc\xef\x58\x63\x76\ \xa4\xb5\x09\x20\x35\x60\x4d\xd9\x66\xce\xbd\xf6\x1e\xfe\xf6\xc0\ \x3c\x6a\xea\x1a\x77\x93\x1b\xa1\xe3\xef\x0b\x5b\x05\x0b\x1a\xa2\ \x20\x22\x89\x7a\xbe\x83\x24\x49\xc8\x9d\x34\x2e\x73\x3a\xed\x06\ \xe7\xae\x86\xb3\x4c\x5b\xe4\x49\x69\x29\x60\x89\xbc\x9f\x3c\x38\ \xed\xb6\x10\x4d\x93\x1a\xf9\xa1\xdd\x66\xeb\xb2\x95\xee\x44\x25\ \xde\x2a\x93\x00\x79\x0b\xd7\xe4\x7f\x06\xcc\xf3\x72\x73\xa2\x5e\ \xab\xac\xae\x69\xe7\xf5\x16\xe8\x95\x97\x46\x41\x6e\x1a\x07\x8e\ \x2d\x42\xd3\x60\xd3\x8e\x06\x7e\x2f\xaf\x66\x75\x79\x15\xbf\x97\ \x57\xd3\xe4\xf1\x37\x07\xd3\x11\x89\x15\x21\xcf\x8a\xbc\xee\xf1\ \x11\xb9\xab\xa9\x29\xec\xaf\x1d\xaa\x22\x2f\xb4\xeb\x0e\xd5\xda\ \x79\x23\x47\x2a\x31\x34\x96\xaf\xdd\xc6\xda\x8d\x3b\x79\xe5\xe3\ \x25\x4c\x18\xde\x97\xfd\x46\x17\x13\x08\x2a\x09\xa2\xf2\xe6\xe9\ \x78\xbf\xe2\x42\x5e\x9e\xf7\x08\xc7\x9c\x7a\x1e\xc1\xa0\x1c\xde\ \xe7\xef\xff\x7c\x80\xfe\x25\x45\x1c\x35\xe3\x90\x94\x1a\x6c\xa5\ \xba\x95\xf4\x2d\xe0\xee\x1b\xce\x63\xe3\x96\xc3\x79\xe6\x3f\x1f\ \xf1\xe9\xc2\xa5\x28\x9a\xd6\xa6\x30\x51\xd3\x34\xde\xfb\x6c\x31\ \x5f\x7c\xb7\x8c\xcb\xce\x3a\x8e\xd3\x8e\x39\x08\x49\x12\x77\x97\ \x3b\xa2\xcd\x2f\x87\x3c\xf8\x75\xc3\x32\x51\xaf\xa5\x2a\x89\x58\ \xcc\x66\xac\x16\x33\x8d\x4d\x9d\xf3\x80\xb1\xdb\xed\x28\x06\x88\ \xab\x5a\x6c\x64\xae\xb5\xa1\x32\x51\x62\xba\xc5\xe5\x72\x23\x08\ \x02\x4e\xbb\x0d\x97\xc7\x9b\x9a\x88\x3c\x55\x0b\x9d\x21\x30\xaf\ \xac\x4a\x00\xe4\x39\xb9\x6d\x56\x27\xec\x6d\x00\x1e\xd9\xba\xc7\ \x44\xe4\x5e\xaf\x17\x97\x91\x40\xd0\x91\xb1\x55\x10\xa0\xb0\x47\ \x26\x33\x26\xf7\xe3\xda\xd3\x26\xf3\xf4\x4d\x47\x71\xff\xac\x43\ \x38\xff\xe8\xd1\x4c\x1a\xd6\x8b\x0c\xa7\x35\x66\xca\x08\x19\x19\ \x59\x71\xc7\xf1\xfb\x7d\x44\xa2\xb7\xd0\xd9\x9b\xb1\x83\x3f\xb0\ \xa6\x6a\xac\x2f\xdf\xc9\xfb\xdf\xac\x64\xd1\xb2\xd2\xa4\x87\x0d\ \x6d\xfb\x4d\x99\xc8\xc3\xf7\xde\x11\x07\x62\x17\xce\xba\x9e\x5f\ \x57\xac\x8a\x5b\xf8\xdc\x9d\x23\xf1\x64\xad\xb8\x4f\x0f\xee\xba\ \xee\x3c\x5e\x7f\xe2\xef\x1c\x39\x7d\x52\x84\x85\x43\xeb\x92\x38\ \xb7\xc7\xcb\x7d\x4f\xbc\xc2\x29\x97\xdd\xca\xd2\xe5\x6b\x76\xeb\ \x9b\x45\x4b\xd0\xb9\x43\x00\x2e\x8a\x22\x92\x49\xc2\x6c\x32\x61\ \xb5\x58\xb0\x5a\xf5\xad\xbc\x7c\x73\xa7\x3e\xd6\x66\xb3\x85\xd5\ \x5e\x8a\xa2\xa2\xa9\xaa\x21\x75\x6c\xa5\xe4\x5b\x8b\x45\x0c\xb4\ \xf0\x3d\x6d\xd0\x2b\xa9\x01\x72\xa7\x3d\x75\xb4\x0a\x24\xe6\xc8\ \xf3\x0c\x00\xfb\x5f\x8c\xc8\xa3\xa8\x95\xee\xb9\x71\xaf\x55\x56\ \x55\x77\x19\xb0\x08\x02\xf4\xc9\xcf\xe0\xd0\x89\xfd\x98\x3d\x73\ \x12\x8f\x5d\x7f\x24\x77\x5d\x32\x9d\x99\x07\x0f\x67\x44\xff\x7c\ \xd2\xec\x16\x6a\x6b\xe2\x07\x5a\x87\xc3\x49\x64\xbd\x59\x2d\x29\ \x4c\x44\x54\x5a\x37\x00\x3f\xa4\x7d\x0f\xd5\x5a\x17\x04\x2d\x21\ \xb5\xa1\x6f\x31\xaf\x85\x86\x8c\x36\x56\x74\x5a\x57\xbe\x13\xb7\ \x37\x10\x25\x63\x3d\xeb\xd4\x13\x99\x7d\xd9\x85\x51\xfb\x85\x0c\ \xb6\xb6\xef\xdc\x99\x90\x62\xd9\xd3\xc0\x1c\xa0\xb0\x57\x77\xee\ \xbc\xe6\x5c\xde\x7a\xf2\x76\x8e\x39\x64\x9f\x24\x11\x76\xe2\x08\ \xb1\xb4\x7c\x1b\x17\x5c\x7f\x2f\x37\xfc\xf3\x71\x2a\xab\xeb\x76\ \xf9\xb9\x8f\x1e\x31\x18\x21\x46\x5d\xa2\xb5\x40\x3a\x37\x47\xe2\ \x86\xc6\x5b\x12\x31\x9b\x24\x2c\x56\x33\x36\x9b\x05\x87\xdd\x8a\ \xd3\x61\x63\x7d\xd9\xc6\x4e\x9d\x97\xd5\x6a\x09\x27\x19\xa9\x4a\ \xb3\x02\x2b\x1e\xc4\xdb\x32\xf3\x6c\x7e\x2d\x04\xe4\xc6\x82\xe7\ \x9e\x13\x91\x47\x82\xf9\xce\xca\xca\x68\x1e\xca\xe1\x68\x55\xee\ \xd8\x95\x8b\x8b\x7f\x64\x6b\xe9\xfc\x34\x2d\x3e\x22\x4f\x36\xf0\ \x75\x65\x2b\xc8\x4d\x67\xbf\x51\x7d\x99\x79\xd0\x70\x2e\x3a\x6e\ \x1c\x3d\x32\xe2\x57\xf9\xd3\xd2\xd3\x23\xa4\x8c\x6a\x8b\xd1\x48\ \x88\xb3\x0c\x27\x52\x20\x34\x73\xeb\x11\x5e\x15\xd1\x5b\x82\xd7\ \x34\xbd\xd8\xad\x10\xbe\x6e\xad\x97\x2f\xf8\x7e\xf9\x06\x1e\x7c\ \xe1\x73\x9e\x7c\xed\x1b\xbe\x5b\x56\x4a\x43\x93\x0f\x55\x85\xdb\ \x6f\xb9\x96\xa3\x67\x1c\x1c\xb5\xef\xf6\x1d\x95\x9c\x72\xf6\x25\ \xf8\x7c\xde\xa4\x60\xbe\x27\xb6\x3e\x05\x79\xdc\x36\xfb\x6c\xde\ \x7e\xfa\x4e\x8e\x3f\x6c\x3f\x4c\x26\x89\xb6\x94\xb9\xd2\xd0\xf8\ \xf8\xeb\x1f\x39\xe6\x82\x9b\x78\xf6\x3f\x1f\x10\x94\xe5\x5d\x76\ \xce\x03\x4b\x0a\x99\x75\xfe\x4c\x32\xd3\xd2\xe2\x4e\x32\xbe\x6f\ \x34\x17\x99\x90\x8c\x48\xdc\x62\x32\x61\xb3\x5a\x70\xd8\xac\xa4\ \x39\xed\xa4\x39\xed\xb8\xdd\x6e\xb6\xef\xd8\xd9\xe1\x73\x12\x45\ \x91\xac\xcc\x4c\x02\x01\xbd\xe0\xb4\xa2\xca\x86\x37\x7a\xdb\xd6\ \x23\x5a\xba\xe0\xe1\xec\xce\x54\x46\xe4\xa9\x50\xac\x44\x3e\x57\ \x19\x03\x4c\xdd\xf3\xf2\xe2\x8a\x06\xa4\xa2\x70\xee\xee\xf0\x5c\ \x6b\xec\x42\xac\xef\x36\xc0\xce\xaa\xea\x76\x0d\x52\xed\x3d\xbf\ \x58\x99\xe8\xd6\xad\xf1\x7e\x1d\xfd\x0a\x0b\xe8\xd7\xbb\x1b\x4e\ \xbb\x25\x5c\x8e\x34\xd1\x8f\xd4\x7c\x83\xe9\x5b\xa8\x34\x57\x68\ \x93\xa4\xd8\xbf\x85\xe8\xbf\xc5\xe6\xc7\x90\xcc\x51\x8c\x1a\x00\ \x5a\xfe\xee\xaa\xaa\x67\x9f\xae\x29\xdb\xc1\x4b\xef\xff\xc0\x8d\ \xff\x7e\x83\xb9\x0b\xbe\xe0\xc7\xdf\xca\x79\xf8\xbe\xbb\x18\x3d\ \x62\x58\xd4\xfe\xcb\x57\xea\x06\x5b\x9a\xa6\x26\x54\xb2\xec\xc9\ \xad\x57\x7e\x2e\xb7\x5e\x75\x16\xef\x3e\xf3\x0f\x4e\x3a\x62\x7f\ \x4c\x26\x53\x1c\x70\x27\x02\x1a\x8f\xd7\xc7\x43\xcf\xfc\x97\x13\ \xfe\xf2\x57\x16\x2f\x5d\xb1\xcb\xce\x77\x40\x71\x5f\xee\xfd\xdb\ \x6c\x06\xf6\x2b\x32\x54\x28\x91\x6a\x94\x50\xa9\x37\xc1\xe8\x5f\ \x12\x26\x51\xc2\x64\x36\x61\xb5\x98\xb1\xdb\xac\x38\x1c\x36\xd2\ \xd3\xed\x64\xa4\x3b\xc9\xcc\x48\xe3\x9b\x45\x8b\x3b\x75\x3e\x45\ \x7d\x7b\x23\x08\x02\x81\x60\x90\x60\x50\x46\x51\xf4\x45\x4f\x0d\ \x0d\xb5\x95\xa5\x88\xd6\x52\xf5\x43\x0e\x88\x46\x52\x50\x4a\x80\ \xfc\xcf\xf6\x3f\xd0\x12\x81\x78\xe8\xb1\xb4\xac\x3c\x6e\xff\x7d\ \x27\x8c\x62\xfa\xf8\x7e\x5c\x70\xcc\x78\x2e\x38\x7a\x1c\x07\x8e\ \x2f\x21\x37\xcb\x19\xb7\x9f\x24\xea\x85\x2f\xcc\x26\x09\xb3\x59\ \xc2\x62\xd1\x33\x42\x2d\x66\x09\xab\x59\xc2\x6a\x89\xdd\x4c\x58\ \xcd\x26\xfd\xd1\xa2\x3b\x2c\x9a\x4d\x92\x9e\xcd\x6a\x12\xc2\x4a\ \x99\x28\x93\xae\x16\x54\x1a\x2a\xa1\x84\x27\x3d\xd9\xc9\xe3\x0d\ \xb0\x7c\xcd\x56\x5e\xfe\xe0\x47\xe6\x2c\xf8\x8a\x33\xce\xf9\x0b\ \xb9\x31\x0b\xca\xef\x7f\xfc\x05\xb7\xdd\xfd\x40\x42\x59\xe2\xde\ \x00\xea\x3d\xbb\xe7\xf0\xd7\x59\x67\xf2\xfe\x73\xff\x64\xe6\xd1\ \x07\x62\x31\x9b\xda\x10\x4d\x6a\x94\x6f\xd9\xce\xc5\x37\xfd\x8b\ \xd9\xb7\x3d\x4c\xc5\xce\xea\x5d\x72\xae\xb9\xdd\xb2\x98\x73\xd7\ \x4d\x1c\x71\xf0\x7e\x7a\xb4\x2d\x89\x61\x25\x8a\x24\x4a\x48\x82\ \x88\xd9\x64\xc2\x64\x96\xb0\x58\xcc\x7a\x14\x6e\xb7\x91\xe6\xb4\ \x93\x99\x91\x46\x76\x66\x06\xdd\xb2\x33\xf0\xf9\x3c\xfc\xfa\xdb\ \xaa\x4e\x9d\x4b\xbf\x7e\x45\x46\xc9\xb9\x00\xc1\x10\xbd\xa2\x6a\ \x1d\x2a\x26\x11\xdb\x14\x45\xe9\xd8\x2c\xa1\x1d\xfb\x36\xc5\x7a\ \xa0\x74\x75\xeb\x9e\x9b\x1b\xc3\x01\x57\xed\xd1\x8b\x4d\x5d\x39\ \x5b\xa8\xac\x8a\xbf\x61\xf2\x13\x44\xe9\x5d\xf9\x99\x91\x80\xa5\ \x69\x2a\xab\xd7\xae\x8b\x7b\xcf\x81\x53\xf7\x09\x2f\x20\x66\xa4\ \xd9\x18\x5c\x94\x47\x51\x41\x76\xfc\x74\xce\x69\xc5\x6a\x36\x61\ \xb7\x9a\x70\xd8\x4c\x38\x6d\x66\x1c\x76\x33\xce\xf0\x66\x89\xd9\ \x9a\x5f\x73\xd8\xf4\xd7\x1d\x76\x13\x76\x9b\x39\x0c\xec\x26\x29\ \xda\xc2\xb7\xc5\xfe\x61\x58\x02\xc8\x06\x98\xfb\x02\x32\x1e\x5f\ \x00\x97\xdb\x4f\x43\x93\x8f\x8a\x1a\x1f\x27\x9d\x76\x3e\x16\x4b\ \xb4\x2c\xf3\xa1\xc7\x9e\xe1\xc5\x57\x5f\xdf\x6b\xf8\xf2\x44\x2d\ \x3f\x37\x9b\x9b\x2f\x3b\x83\x0f\xe6\xdf\xc3\x19\xc7\x1d\x8c\xd5\ \x62\x69\x8d\x13\x00\xe0\x8b\x6f\x97\x72\xcc\xf9\x37\xf0\xc4\x8b\ \x6f\xe3\xef\xa2\x3a\xa4\x2d\x05\x16\x56\x8b\x99\xdb\xaf\xbf\x9c\ \x1b\x66\x9d\x87\xd5\x62\xc6\x64\x96\x90\xcc\x7a\x8d\x4e\x8b\xc5\ \x8c\xd5\x6a\xc1\x66\xd5\x39\xf0\x34\xa7\x8d\xcc\x74\x27\xd9\x59\ \xe9\xe4\x64\x67\x92\xdb\x2d\x13\x87\xdd\xc2\xab\xff\x7d\xab\x6d\ \x14\x48\x0b\xad\x6f\xdf\xde\x78\xbd\x7e\x7c\xfe\x00\x81\xa0\x8c\ \x1a\x4a\x2e\xd2\x68\x85\x5e\x4c\xc2\x97\x47\xfc\x69\xb5\xea\xd7\ \xde\xe5\xf1\x02\xb4\x59\x5a\xd3\x1e\xf9\x61\x93\xc7\xeb\xcd\xe9\ \xea\x1f\x2a\x52\x49\x90\x1f\x53\x0f\xd4\xed\xf1\xe0\xf1\x7a\x31\ \x9b\xec\xfc\x2f\xb7\xa4\x8a\x9e\x08\x69\x66\x7b\x00\x25\xb2\x10\ \x43\x32\x6a\x25\xd6\x95\xf2\xbd\x8f\x3e\x63\xc7\xce\xe8\x73\xe8\ \x5f\x52\x44\xaf\x82\x82\x36\xa9\x89\x26\x0e\xeb\xc3\xf4\xfd\x27\ \x50\xbe\xbd\x9e\xf5\x9b\xab\x59\x53\x5e\xc5\xb6\x9d\x0d\xba\x84\ \x4b\xd5\xf9\xf5\xc8\x4e\xad\x19\xe2\xe6\xb0\x57\x86\xaa\xe9\x35\ \x1b\x15\x95\x60\x50\x21\x20\x2b\x28\xb2\x82\xa6\xd1\x1c\x99\x0b\ \xad\xf7\x35\x9d\x62\x51\x09\x04\x65\x40\x3f\x2e\x02\x08\x22\x64\ \x67\xe4\x71\xd2\xcc\xb3\x79\xe5\xa5\x79\x51\x37\xe3\x55\x37\xfe\ \x9d\x1e\x3d\xf2\x39\xe4\x80\xa9\x74\x22\x19\x70\xb7\x6f\x79\x39\ \x59\x5c\x7f\xc9\x69\x9c\x37\xf3\x08\xe6\xbf\xf6\x31\xaf\xbd\xff\ \x25\x3e\x5f\xa0\xc5\x10\xdd\xef\x0f\xf0\xe8\xf3\xaf\xf3\xee\x67\ \x8b\xb8\xe9\xf2\x33\xd9\x7f\xf2\x98\x94\x07\x37\x67\x9e\x78\x24\ \x03\xfb\x15\x72\xcb\x5d\x0f\xd3\xd8\xe4\x32\x06\x73\xdd\x46\xd9\ \x6c\xcc\xe2\xec\x36\x2b\x69\x69\x76\x32\xd3\x9d\xe4\x64\x67\x92\ \x99\xe1\xe4\xa5\x97\xff\xcb\xce\xca\xce\xcd\x20\xf2\xf2\x72\xb0\ \x98\x2d\x78\xbd\x75\x04\x02\x01\x9d\x5a\x51\xd5\xb8\xc4\xa0\xd6\ \x06\xc1\x64\xb2\xda\xd0\x20\xea\x72\xa7\x10\xc8\xdd\x5e\x5f\x97\ \x83\x78\x22\x60\x8a\x6c\x55\x55\x55\x14\xf4\xec\xfb\x3f\x13\x89\ \x27\x02\x54\x20\x61\x07\xec\x9e\x97\x9b\x92\x35\x83\x48\x2a\x41\ \x17\x0c\x68\xcc\x79\x62\x5e\xdc\xfe\x27\x1d\x7b\x64\xd4\x40\xdc\ \xd2\x1a\x86\x20\x80\xd3\x61\x66\x48\x71\x1e\x83\x8b\xf2\x38\x7a\ \xda\x10\x5c\xde\x00\xe5\x15\x75\x94\x6f\xab\xa5\xbc\xa2\x86\xaa\ \x3a\x57\x44\xe1\x5a\x2d\x2c\xe5\xd2\x34\xd5\x30\xf8\xd2\xad\x02\ \x7c\x81\x20\x7e\xbf\xee\x2f\xad\x28\x1a\x82\x88\xae\x65\x27\xa4\ \x63\x17\x12\xf4\xb5\xb0\xcb\x0c\xaa\xaa\x21\xcb\x8a\x61\x0b\xa0\ \xe7\xb3\x0a\xe8\x15\x96\x7a\x17\x0d\xe2\xb0\x23\x8e\xe5\xe3\x0f\ \xde\x0e\xbf\x57\x96\x65\xce\xba\xe8\x4a\x6e\xf9\xeb\xad\x4c\x1c\ \x3d\x82\x41\xc5\x05\x64\xa4\x39\xfe\xf0\xaa\x54\x29\xa3\x31\xb2\ \x33\xb9\xee\x2f\x33\x39\xff\x94\xc3\x99\xff\xda\x47\xfc\xe7\xbd\ \x2f\xf1\xfa\x5a\xbe\xf7\xb7\x6d\xaf\x64\xf6\xdf\x1f\x62\xfa\x3e\ \x63\xb9\xf6\x92\xd3\xe9\x53\x90\xd7\x45\x9d\x32\x71\xc0\x31\x69\ \xcc\x70\x5e\x7e\xfc\x6e\xfe\x7e\xdf\x63\x94\x6f\xde\x8a\x24\xe9\ \xd4\x9b\xc5\x62\x32\xa2\x72\x6b\x98\x13\xf7\xf9\x3c\x3c\xf7\xfc\ \x02\xb6\x55\xec\xe8\xf4\xe9\x0c\x1a\xd0\x0f\x97\xdb\x8b\xc7\xeb\ \xc3\xe7\x0f\x34\x73\xe4\x9a\x9a\xa0\xef\xb7\xc5\x2a\x21\xfa\x49\ \xab\x61\xc5\xe1\xf2\xf8\x52\x1a\x91\xa7\xac\xf3\x24\x55\x66\xd4\ \x54\xd3\xab\xa0\x6f\x5c\x96\x5d\x67\x8b\x49\xa4\x9a\x0a\xe9\xcc\ \x73\x89\x3a\x6e\x6c\x44\x6e\xb7\xdb\x49\x73\x3a\xdb\x14\x21\xb6\ \xc4\xeb\xc6\xd2\x04\x91\x5c\x70\xe8\xdf\x0f\xcc\x7d\x9c\x25\xcb\ \x96\x47\xbd\x2f\x33\x23\x83\xcb\x2e\x3a\xb7\xcd\xd9\xb6\xa5\x1b\ \xca\x59\xb2\xec\xd7\xe8\xe8\xdd\xf8\x77\x8f\x34\xe8\x31\x30\x0d\ \x7f\xd0\x46\x55\x9d\x9b\xca\x3a\x17\x55\xb5\x2e\x1a\x9a\x3c\x7a\ \x15\x75\xad\xd9\x32\xc0\xef\xd7\xeb\x8e\x4a\x96\x34\xac\x16\x0b\ \x41\x59\xd6\x1d\x77\xc5\x66\x85\x4b\xd2\xb8\x28\x22\x71\x43\x55\ \x35\x64\x55\x35\x6e\x42\x03\xc8\x8d\x85\xd8\xd1\xe3\xf6\xa5\xba\ \x6a\x27\x4b\x7f\xfa\x3e\xfc\x5e\x8f\xc7\xc3\x43\x0f\xfd\x9b\x73\ \x2f\x9c\xc5\x7b\x5f\x2f\x23\x37\x2b\x83\x11\x03\xfb\x32\x66\x68\ \x11\xd9\x19\x0e\xf6\xc6\xd6\x2d\x2b\x83\x6b\x2e\x9a\xc9\xf9\xa7\ \x1c\xc1\x0b\x6f\x7c\xcc\x2b\xef\x7c\x1e\x9a\xf2\x47\xdd\xb7\x91\ \x7d\xe8\xbb\xa5\xbf\xb1\xfa\xba\x8d\x9c\x77\xca\x11\x9c\x72\xf4\ \x81\x5d\x81\xe3\xe1\xbe\x18\xea\xeb\xa1\xcf\xeb\x99\x9f\xcb\xdc\ \x7f\xde\xcc\x33\x0b\x5e\xe7\xe7\xe5\x2b\x31\x9b\xcd\x58\xad\x66\ \x9c\x76\x1b\x4e\x87\x0d\x93\x24\xf2\xf3\xb2\x5f\xf8\xf2\xab\x45\ \xba\x6f\x7f\x27\x9b\xdd\x6e\x63\xe8\x90\xc1\x54\x55\xd7\xe1\xf1\ \xfa\xf0\xfb\x83\x28\xb2\x8c\xa2\x28\xc9\x23\xf2\x56\x8a\x49\xc4\ \xb6\x10\xb5\xe7\x4e\x65\x44\xae\x8f\xca\x86\x51\x75\x27\x01\x2b\ \xb2\x03\x84\xbe\x7f\xf7\xdc\xe4\x12\xbb\xae\x06\xe3\x54\xab\x4e\ \xba\xfa\x5c\x63\xbd\x55\xba\xe7\xe6\xb4\xfb\x18\xc9\xf8\xdd\x44\ \x91\x78\x33\xa5\xf2\x09\x77\xdd\x3f\x37\xee\x78\xb3\x2e\x3e\x8f\ \x8c\xf4\x8c\xb0\x26\xbb\xb5\xeb\xf2\xd7\x3b\xee\xeb\xd2\x6b\x32\ \x79\xff\xa3\x28\x1c\x38\x41\x8f\xd6\xe3\x9c\xe7\xb4\x16\x02\x86\ \x90\x05\x81\x86\xaa\x18\xf6\xa6\x31\x40\x2e\x8a\x02\x07\xcf\x38\ \x9e\xba\xda\x6a\xca\x4a\xd7\x87\xdf\x5b\x5d\x55\xc9\x5b\xaf\xbd\ \xc8\x29\xa7\x5f\x48\x75\x5d\x23\x1f\x2c\x5c\xc6\xbb\x5f\x2e\x65\ \x40\x51\x0f\x26\x0c\x2f\x66\x50\x71\xfe\x5e\x09\xe8\x59\x99\xe9\ \x5c\x79\xfe\xc9\x9c\x73\xf2\x11\xbc\xf8\xc6\xc7\x2c\x78\xeb\xd3\ \xb0\xba\x22\x51\x0b\x06\x83\xbc\xf1\xe1\x97\xac\x2d\xdb\xc8\xf1\ \x33\xf6\xeb\x74\xdf\x0f\x81\x78\x48\x4e\x1e\x89\x97\x76\x9b\x99\ \x2b\x2f\x3c\x8d\x6f\x7f\x5a\xc6\xc2\xef\x96\x20\x08\x1a\x3b\x76\ \xec\xe0\xfb\xef\x17\xb3\x72\xd5\xef\xc8\xb2\xd2\x65\xd7\x61\xda\ \xbe\x93\xf1\x07\x82\xb8\xdc\x1e\xbc\x5e\x2f\x81\x60\xd0\x30\xdf\ \xd2\x22\xdc\x3c\xdb\x57\x4c\x22\xb6\x6f\xda\x2c\x16\x34\x4d\xc3\ \x60\x3f\x52\x03\xe4\x9a\xa6\xe1\xf5\xf9\x52\x62\x65\xab\xa7\xa1\ \x27\x06\xf2\x58\x19\xdc\xff\x4a\x72\x50\x14\xb5\x12\x13\x91\xe7\ \x77\xcf\x6b\x93\x2f\xbb\x0e\x50\x2d\x53\x5a\x89\x80\x1c\x54\xee\ \xba\x6f\x0e\xf7\xcf\x7d\x22\x2e\xd2\x18\x35\x7c\x28\xb3\x2e\x3a\ \x2f\x8e\x56\xd9\x95\x2d\x3b\xc3\x81\xd9\x24\x12\x08\x8a\x68\xaa\ \x1a\xa1\x29\x6f\x4b\x5f\x8b\xb0\xf1\x55\x55\x54\xc0\x1f\x30\xbe\ \xbf\x71\xcd\x25\x51\xe4\xf8\x53\xce\x61\xfe\xd3\x73\xa8\xae\x6a\ \xce\x6f\x28\x2b\x5d\xcf\x67\x1f\xbd\xc5\x61\x47\x9d\x88\x49\x12\ \x09\x04\x65\x76\x54\xd7\xf1\xc5\x0f\x6e\x7e\xfa\x6d\xed\x5e\xdd\ \x1f\x33\xd3\x9d\xcc\x3a\xf7\x44\xce\x39\xe9\x70\x5e\x7a\xf3\x13\ \x5e\x7c\xf3\x23\x1a\x9b\x3c\x49\x07\xcf\xda\x86\x46\xde\xff\xfc\ \xdb\x4e\x7d\xe6\xef\xeb\x4a\xb1\x59\x2d\x11\x09\x37\x10\x94\x65\ \x5c\x2e\x37\x4d\x2e\x37\x6e\xb7\x87\xda\xba\x7a\x56\xae\x5e\xc3\ \x92\x5f\x7e\x63\xc3\xc6\xcd\x9d\x5e\xcc\x4c\xd4\xf2\x72\xbb\xd1\ \xbf\x7f\x09\x15\x3b\xaa\x70\xb9\xbd\x78\x7d\x7e\x43\x47\xae\x44\ \xd0\x2a\xed\x2f\x26\x11\xfb\xa7\xc5\x62\xc1\xed\xf5\x85\xbe\x43\ \x6a\x80\x1c\xf4\xcc\xb7\xae\x06\xf2\xd0\x0f\x94\x88\x23\xff\x7d\ \xed\xda\xbd\x46\xbf\xdb\x9e\x59\x42\xe4\xbf\xfd\x7e\x1f\x1b\x36\ \x6e\x8a\xe9\x58\x39\x49\xa7\xb7\xc9\x06\x84\xd8\x88\x26\xf6\xf3\ \x04\x01\x64\x45\xe6\xf5\xb7\xdf\xe3\xe1\xc7\x9f\x61\xcd\xba\xf8\ \x54\xf7\xfc\xee\xb9\xbc\xf2\xec\xe3\xd8\x6c\xf6\xa8\x68\x7c\x57\ \x17\xfb\x98\x36\xb6\x3f\xe7\x9e\x75\x3c\xeb\x36\x56\xf2\xfb\xc6\ \x1d\x94\x6d\xa9\xa2\xb6\xa1\x7d\xbe\xda\x9a\x51\xa2\x2e\xe4\xab\ \x1b\xd2\xba\xeb\xa5\xef\x04\xc4\x4c\x07\xa7\x9d\x79\x21\xcf\x3c\ \xf9\x10\x5e\x4f\x73\x04\xba\x74\xc9\x0f\x74\xcf\xef\xc1\xc4\xc9\ \x53\xf1\x05\xf4\xe4\x18\x9b\xd5\x84\xd9\x24\xc5\x7d\xc6\xe6\x8a\ \x6a\x1a\x5d\xde\xc8\x62\x01\x7b\x7c\x4b\x4f\x73\x70\xe9\xd9\xc7\ \x73\xd6\x49\x33\x58\xf0\xe6\x27\xbc\xf8\xc6\xc7\x34\xb9\x5c\x6d\ \x99\x10\xb5\xbb\x5d\x75\xc3\xed\xbb\xc5\x77\xde\x7f\xda\xbe\x34\ \x34\xba\x69\x6c\xd2\x07\x0f\x9f\x21\x3d\x0c\x2d\xd4\x6b\xaa\xd6\ \xf6\xd4\xfc\x16\x9a\xcd\x6a\x0d\xd1\x2a\xa9\x05\x72\xb7\xd7\x47\ \x67\x45\x6f\x2e\x7b\x6f\x03\x00\x00\x20\x00\x49\x44\x41\x54\x91\ \x0b\x63\x91\x5b\x7a\x5a\x06\x3d\xf2\xf3\xa3\x3c\xc9\x3f\x5f\xb8\ \x90\x7f\x26\xd0\xef\xee\xcd\x51\x79\xec\x0c\xe4\xdb\x1f\x7e\xc4\ \x17\x63\xbb\x39\x78\xe0\x80\x36\xf3\xd3\xa1\x28\xdb\x28\xef\x19\ \x7e\x8f\x3f\x10\xa0\xb1\xa9\x91\x9a\x9a\x3a\x96\x2c\xfb\x85\x6f\ \xbf\xff\x89\x85\xdf\x7d\x9f\x74\x65\x3f\xa7\x5b\x36\xaf\x3c\xfb\ \x04\x3d\xf2\x7b\xc4\x55\x6b\x6a\xed\x37\x71\xd8\xed\x98\xcd\xa6\ \xce\xdf\xe3\xc6\x01\x2c\x56\x0b\x36\x8b\x99\x11\x03\x7b\x31\x62\ \xa0\x5e\x5c\x21\x28\xcb\x54\x54\xd5\xf1\xf2\x6b\xdb\x5a\x7d\x7f\ \x68\xe9\x53\x31\xbe\x84\xa6\xaa\xe1\x67\x43\xb3\x18\x51\x14\xc8\ \xca\x48\x63\xe6\xe9\xe7\xf1\xe2\x73\x4f\x44\x69\x7c\x3f\xfa\xe0\ \x1d\xf2\xf3\xbb\x33\x70\xd0\x70\x34\x34\x7d\xa1\xcd\x14\x3f\x9a\ \xae\xd9\x50\xc1\xbf\x9e\x79\x87\x0c\xa7\x83\xe1\x03\xfa\x32\x7e\ \x44\x7f\x72\xb2\xd2\xf6\x8a\x7e\x9a\xe6\xb0\x73\xf1\x99\xc7\x71\ \xe6\x09\x33\x78\xf5\xdd\xcf\x78\xf9\xcd\x8f\xf1\xf8\x7c\x7b\xdd\ \xfd\x38\x68\x60\x3f\xba\x65\x67\x53\xb1\xa3\x8a\xa6\x26\x37\x1e\ \xaf\x11\x8d\x07\x15\x14\x55\x69\xe5\x1e\x6c\xbb\x62\x45\x8f\xc8\ \xcd\xa1\x85\xce\xd4\x47\xe4\xa9\x6a\x9a\x06\x87\x1c\x78\x20\x2f\ \xbe\xfa\x6a\xf8\xb9\x8a\xed\xdb\x59\x57\xb6\x9e\x7e\x45\x03\x12\ \xda\x8a\xee\x6d\x80\x9e\xa8\xe8\xc6\x67\x5f\x2e\x8c\xdb\xef\xf0\ \x83\xa7\xc7\x7b\x4e\x27\xb8\x16\x5b\xb6\x6d\xa7\x60\xd0\xf8\xb8\ \x3e\x13\x08\x04\xe2\x06\x87\x96\xda\xa4\xf1\x63\x78\xee\xb1\x87\ \xe8\x91\xdf\x23\x6e\x00\x6e\xcb\x6c\x69\xfe\x13\xf7\x73\xd4\x8c\ \x83\x93\xda\x11\x6b\xed\xf0\xd2\x4a\xf6\xf9\x56\x8b\x89\x7e\x7d\ \xf2\xe8\xd7\x27\x3e\xd4\xc8\xcf\xcd\x64\x5b\xb5\x3f\xea\x22\x84\ \x95\x2c\x9a\x86\x8a\x5e\xcc\x22\x20\x28\x88\x7e\x1d\xc8\x25\xc3\ \xbb\x3a\xa7\x7b\x1f\x8e\x39\xee\x14\xde\x7a\xe3\x95\x28\x7a\x66\ \xc1\x8b\xf3\xb9\xe6\xda\x1b\xe8\xdd\xa7\x8f\xae\x69\x17\x12\x67\ \xb4\xa2\x69\x94\x6d\xde\xc1\xaf\xab\x37\xf2\xc2\xdb\x0b\x19\x36\ \xa0\x37\xd3\x26\x0c\x61\xdc\xf0\xe2\xbd\xa2\xcf\x3a\x1d\x36\x2e\ \x38\xf5\x68\xce\x38\xfe\x50\xde\xf8\xf0\x2b\xde\xfe\xe8\xab\xbd\ \xe6\x7e\xec\xdb\xa7\x17\x07\x4c\x9b\x4a\x75\x4d\x1d\xf5\x8d\x2e\ \x5c\x6e\x0f\x3e\xbf\x5f\x4f\xcd\x57\xd4\xa8\x05\xf4\xb6\x53\x28\ \xc9\xfd\x57\xac\x56\x6b\x48\x7a\xf8\xc7\x03\x79\x7b\x16\x0d\x63\ \x6f\xca\x43\x0f\x9c\x1e\x05\xe4\x00\x5f\x7c\xfd\x35\x03\xce\x1f\ \x10\xb7\x60\x97\x8c\xeb\x6d\xed\xb9\x8e\x50\x1d\xbb\xf2\xb9\xd8\ \x2c\xc2\xcf\xbe\x8a\x06\xf2\x1e\xdd\xf3\x18\x3d\x72\x44\xd2\x82\ \x1b\xb1\x7c\x70\x63\x63\xc7\x2d\x3b\xd3\xd2\x9c\x5c\x7a\xc1\x39\ \xdc\x30\xfb\x72\x24\xd1\x14\x55\xa8\x38\x12\x58\xdb\xa6\xe1\x4e\ \xec\x2b\xdf\x9e\xc1\x38\x51\xb9\xbf\xb6\x7c\xfe\x51\xd3\x46\x92\ \x9f\xdf\x83\xf5\x9b\xaa\x58\xbe\x66\x2b\xcb\x56\x6f\xe2\xb7\xb5\ \x5b\x08\xfa\x02\x61\x99\xa3\x02\x20\x2b\x04\x8c\xb0\x5c\x40\xb7\ \x01\x90\x44\x91\x01\x43\x46\x33\x75\xff\x4a\x16\x2d\xfc\x22\x7c\ \xcc\x40\x20\xc0\x93\x4f\x3c\xca\x6d\xb7\xfd\x9d\xec\x8c\x1c\x20\ \x5e\x19\x11\xe2\xee\x43\x92\x48\x4d\xd3\x28\xdb\xb4\x9d\xba\x86\ \x26\x7e\x5e\xb9\x1e\xb7\xc7\xbf\xd7\x80\x9e\xdd\x66\xe5\xcc\x13\ \x66\x70\xca\xd1\xd3\xf9\x62\xd1\x4f\x7c\xff\xcb\x6f\x7b\xf4\xf7\ \xc9\xef\x9e\xc7\x91\x87\x1f\x42\x5d\x7d\x13\x75\xf5\x8d\xd1\xd1\ \xb8\xac\xa0\x6a\x4a\x84\x5c\x36\x01\x6e\x77\x20\xc8\xb4\x59\xad\ \x91\xca\xa0\x94\x00\xb9\x2b\x11\x90\x77\x06\x28\x23\x29\x96\xd0\ \x4d\xbe\xcf\xa4\xc9\x38\xec\xf6\xa8\xcf\xf9\x72\xe1\x42\x2e\xbd\ \xe0\xa2\xf0\xea\x75\xe4\x34\xbe\x23\x34\xcb\xee\x68\xaa\x95\xcc\ \xdf\x64\x7d\x59\x19\x9b\xb6\x44\x7b\x9c\xcc\x38\x78\x3a\x84\x81\ \x21\x35\x54\x53\xf7\xbc\x5c\x2e\x39\xff\x6c\x2e\x38\xfb\xb4\xb0\ \x3a\x25\x96\x13\x6f\xa9\x6a\x53\x32\x00\x4e\x56\x24\xa4\xbd\x60\ \x1e\xdb\x87\xda\xd2\xcc\x26\x89\xc1\xc5\x3d\x18\x58\xd8\x83\x93\ \x0e\x1d\x4f\x50\x56\x58\x5d\x56\xc1\xaf\xbf\x6f\x66\xf9\xda\xcd\ \xac\x2e\xdd\x86\xdf\xf0\x27\x17\x04\x0d\xaf\x01\xe4\x21\x9d\xfa\ \xbe\xfb\x1f\x4a\x6d\x4d\x15\xab\x56\x36\x03\x54\x5d\x5d\x1d\x73\ \xe6\xcc\xe1\x9e\x7f\xde\x81\xd9\x64\x6d\x57\xc7\x0a\x79\xbd\xef\ \x6d\xcd\x6a\xb1\x70\xd4\x21\xfb\x71\xf8\x41\x53\xf8\x61\xe9\x2f\ \xdc\xbf\x07\x7e\x87\xec\xec\x2c\x8e\x3d\xe6\x70\x1a\x9b\x3c\xd4\ \xd4\x36\x50\xdf\xd8\xa4\x47\xe3\x3e\x3f\xc1\x60\x30\x22\x91\xad\ \x6d\xa9\xf9\x6d\x51\xac\x00\x74\xcb\xce\x62\xf3\xf6\xfa\x28\xcc\ \x4d\x49\x44\xee\xee\x62\x6a\x25\xf2\xa6\x56\x55\xb0\x58\xac\x4c\ \xdb\x77\x1f\x3e\xfe\xbc\x39\xf2\x59\xb2\x6c\x19\x2e\x77\x13\x76\ \x5b\x7a\xab\x51\xf9\xde\x46\xab\x7c\xfe\x75\x3c\xad\x32\xe3\x90\ \xe9\xed\x8e\x88\x5b\xec\x04\x26\x89\x9c\xec\x6c\xc6\x8d\x19\xc9\ \x94\x89\xe3\xd9\x67\xd2\x04\x46\x0e\x1b\x86\x24\xe9\x8b\x77\x8a\ \x42\x9b\x13\x7f\x5a\x62\x0a\x23\x7f\xe7\xce\x78\xcb\xb7\x34\x58\ \xb4\xa7\x99\x4d\x12\x23\x07\xf6\x61\xe4\xc0\x3e\xc0\xbe\x04\x65\ \x85\xb5\x1b\xb7\xf3\xdb\xda\x2d\xac\x5c\xbf\x85\x75\xe5\x15\x78\ \x7c\x41\x5d\x96\x28\xe8\x46\x5e\x47\x1e\x33\x93\xfa\xba\x3a\xb6\ \x6d\xdb\x12\x3e\x4e\x59\xd9\x06\x1e\x7b\xec\x49\x6e\xbe\x71\x76\ \x92\xdf\xd4\x48\x54\x12\x84\x88\xa8\x7d\xef\x97\x5e\x99\x4d\x12\ \x63\x46\x0c\xdc\xf3\x40\x3c\x2b\x93\xe3\x8e\x3e\x1c\xb7\xdb\x47\ \x55\x4d\x1d\x75\x0d\x4d\x34\xb9\x3c\x78\xbc\xbe\x70\x02\x90\x12\ \xe9\x76\xd8\xe6\xf0\xbb\xf5\x04\xa1\xee\x79\xb9\xac\x2e\xdb\xbe\ \x7b\x50\x2b\xed\x89\xc6\x63\x01\x5d\x55\xe1\xd0\xe9\x07\x45\x01\ \xb9\xac\x28\x7c\xfe\xf5\x57\x1c\x7b\xc4\x31\x09\xa3\xf2\xbd\x05\ \xc0\x63\x41\x5c\x10\xe0\xfd\x8f\x3f\x8b\xda\xd7\xe1\xb0\x33\x6d\ \x9f\x29\x6d\xe6\xa8\xf3\xbb\xe7\xf2\xea\x73\x8f\x62\x78\xde\x87\ \xa9\x11\xb3\xd9\x4c\x56\x66\x26\xd9\x59\x99\x64\xa4\xa7\xc7\x45\ \xb9\x7a\x01\xe4\xc4\x03\x6e\x67\x7f\xf7\x44\x34\xc9\xee\x02\x3c\ \xc3\x07\xf4\x66\xf8\x80\xde\xc0\x14\x54\x55\x65\xfd\xe6\x9d\xac\ \xd9\xb0\x8d\x8d\x5b\x2b\xd9\x51\x55\x8b\x28\x8a\xcc\x3c\xe3\x3c\ \xe6\x3d\xf9\x30\x0d\x0d\x0d\xe1\xf7\x7e\xb5\x70\x11\xc5\x45\x7d\ \x12\x50\x2b\xcd\xf6\xaa\x5a\xec\xec\x85\x3f\xdb\xee\xd6\xc6\x8d\ \x19\xc9\x84\x09\xe3\xa8\x6f\x68\xa2\xb6\xae\x81\xda\x3a\x9d\x52\ \x71\x7b\x7c\x04\x02\x86\xdb\xa1\xaa\x6b\xc7\xf5\x3e\xdc\x96\x19\ \x55\xcb\xc5\x24\xc2\x60\x2c\x49\x64\x67\x65\xed\x2a\x8e\xbc\xeb\ \xd3\xf4\x63\xb7\x03\xa7\xed\xaf\x67\xe8\x45\xdc\xe5\x73\x9e\x78\ \x92\x63\x8f\x38\x0a\x51\x14\x11\xc5\xc4\x03\xc1\x9e\x0e\xe6\xb1\ \xdb\xe2\x1f\x7f\xe2\xc7\xa5\xcb\xa2\xf6\x9b\x3e\x6d\x3f\x2c\x16\ \x6b\x38\x4a\x6e\xed\xbb\x5b\x2d\x16\xc6\x8f\x19\x1d\x45\x8d\xc4\ \xbe\x2f\x74\xac\xc8\xc1\x31\xd1\x6c\x31\xf6\xb1\xbd\xb3\x80\x44\ \xb4\x4c\xaa\x06\xc4\xae\x68\xa2\x28\x32\xb8\xb8\x27\x83\x8b\x7b\ \x86\x7d\xcf\xb7\xee\xac\x61\x5b\x65\x0d\xdd\xd2\x6f\xe0\x8e\x3b\ \x6f\x27\x10\x68\xf6\x22\x79\xf6\xf9\x97\x5b\x3f\xa7\x3f\xd1\x7b\ \xb7\x6c\x19\xe9\x69\x1c\x3e\xe3\x60\xb2\xb3\xb3\xa9\xa9\x6d\xa0\ \xa6\xb6\x5e\x5f\xdc\x74\xb9\xf1\x78\x7c\x04\x02\x01\x64\x59\x6e\ \xd6\x8c\xb7\x58\x09\xa8\x7d\xc5\x24\x42\x2d\x37\x27\x07\x41\x10\ \x3a\xa4\x5a\x69\x97\xfb\x61\x57\x46\xe4\x89\xc0\x3c\x04\x36\x39\ \xd9\xb9\x4c\x9e\x30\x21\x6a\x9f\x75\xa5\xa5\xbc\xf3\xc1\xfb\x86\ \x2c\x2c\x32\x71\x65\xef\x8b\xc6\x43\xdf\xef\x9f\x0f\x3c\x14\xb7\ \xff\xb1\x47\x1e\x9e\x90\x67\x6e\x09\x1c\x23\xaf\xad\xa2\x34\x6f\ \x91\xcf\x85\xfe\x1d\xbb\x25\xfa\x9c\x8e\x0e\x9e\xb1\xd4\xd1\x9e\ \xf7\x5b\x09\xf4\xed\x99\xcb\x3e\xa3\x07\x71\xe5\xf9\x27\x31\xff\ \xf1\x07\xda\x51\xc3\xb6\xeb\x11\x7c\xd5\xfa\x4d\x2c\xfe\x79\x35\ \xb5\xf5\x4d\xfc\xd9\x3a\xde\x46\x0e\x1f\xca\x19\xa7\x9d\x8c\xdd\ \xee\xa4\x62\x7b\x15\x95\x55\xb5\xd4\xd6\x35\xd2\xd8\xe8\xc2\xed\ \xf1\xe1\xf7\xfb\x23\x7c\xc7\xb5\xb0\xff\x4f\xbb\x78\xc5\x36\xf4\ \x83\x50\xcd\x81\x8e\xe8\xc8\xdb\x0d\xe4\x2e\xaf\xa7\xc5\x08\xa8\ \xbd\x8a\x95\x58\x50\x08\x01\xc8\x75\x57\x5c\x19\xf7\x9e\x07\x1e\ \x79\x04\x55\x53\x90\xa4\x68\x30\x8f\x4c\x76\xe9\xe8\xb9\xfc\x11\ \xcf\x85\xce\x39\x32\x0a\x97\x24\xfd\xf1\xcb\x6f\x16\xf1\xc3\x92\ \x9f\xa3\xf6\x1f\x32\x68\x00\xc7\x1e\x71\x78\x52\x7f\x95\x64\x98\ \x12\x02\xe4\x48\x60\x4e\x04\xd6\x2d\x01\x77\x4b\x34\x4e\x7b\x0a\ \x5b\xb4\x44\x23\x75\x66\x4b\x55\x4b\x26\x79\xd4\x34\x38\x6a\xc6\ \xa1\xdc\x7e\xcb\xb5\xad\xbc\xbf\xf3\x49\x22\xc9\x9a\xdb\xe3\xe3\ \xe3\x85\x4b\xb9\xf1\xde\x79\xdc\x78\xef\x3c\x5e\xfb\x60\x11\x3b\ \xaa\xea\xfe\x44\xe6\x36\xb4\xf4\x34\x27\x17\x9c\x7d\x2a\x77\xde\ \x7a\x03\x93\x26\x4d\xa0\xba\xb6\x81\xed\x3b\xaa\xa9\xaa\xa9\xa3\ \xb6\xae\x81\x86\x46\x17\x6e\x8f\x17\xbf\xcf\x1f\x76\x38\x0c\x27\ \xff\xc4\xfc\xa6\xad\x29\x56\xb4\x36\xfe\xea\xdd\xf3\xf4\x24\xbf\ \xa6\x66\xfb\x83\x14\x26\x04\x79\x52\x13\x91\xc7\x4a\x11\x27\x8e\ \x9b\xc0\xc1\x07\x1c\xc0\xe7\x5f\x7f\x1d\xde\x6f\xe3\xa6\x4d\xbc\ \xf6\xf6\x9b\x9c\x7a\xc2\xc9\x51\xfe\x0b\x21\x00\xda\x13\x79\xf3\ \x58\xbb\xd8\xd0\xe3\xdd\x09\xa2\xf1\x5b\x6f\xbc\x16\x41\x10\x13\ \x26\xe3\xb4\x04\x15\x91\x20\x1d\x29\x1f\x8c\xbd\xfe\xc9\x40\xac\ \x4b\xbe\x27\xc9\xfd\x5e\xba\xe2\x73\x52\x0d\xe6\xb1\xe7\x19\xea\ \x7b\x57\x5f\x7e\x11\xeb\xcb\x36\xf2\xe2\xab\x6f\x24\x7c\xef\xa4\ \x51\x03\x18\x39\x7a\x1c\xcb\x7f\xdf\xc4\xcf\xab\x37\xd2\xd0\xe0\ \xea\xd2\xe8\x3c\x54\x3a\xaf\xb4\x7c\x1b\x3f\xaf\x58\xcf\xc3\xf3\ \xdf\x62\x60\x51\x2f\x0e\xdc\x67\x34\x07\xed\x33\x86\x1e\x79\xdd\ \xfe\x44\xed\xc8\x60\x68\x60\x7f\x2e\x3a\xef\x74\x4e\x3b\xf1\x38\ \x9c\x4e\x27\x9a\xa6\xf1\xe6\xfb\x9f\xf1\xdc\x2b\x6f\xd0\xe4\xf2\ \xe0\xf5\xfa\xc2\x86\x58\xb2\xac\x27\xfd\xc8\xaa\xd2\x82\x5e\xbc\ \xf3\x37\x4c\xe8\x98\x79\x39\x21\x20\x4f\x2d\x47\xbe\x03\x90\xb7\ \x57\x56\x9a\x52\x75\x93\x84\x80\x46\x51\xf4\x9b\xe4\xe6\x6b\xae\ \xe5\xcb\x6f\xbe\xd1\x4d\xdb\x8d\xf6\xe0\xa3\x8f\x71\xf2\xb1\xc7\ \x21\x8a\x66\x24\x29\xde\x7c\x6b\x4f\x01\xf3\x64\xae\x83\xa2\x08\ \x1f\x7d\xf6\x39\xbf\xfc\xb6\x32\x6a\xff\x29\x13\xc7\x73\xc8\x81\ \x07\x76\x4a\x41\x92\x8c\x22\x49\xd6\x07\xbb\x12\x1c\x63\x07\xac\ \xae\x50\xdc\xc4\x96\x01\xdc\xd5\x60\x1e\xea\xaf\x0f\xdf\x7b\x07\ \xe5\x9b\xb6\xb0\xe8\xfb\x9f\xe2\xde\xe7\x74\xd8\x98\x34\x6a\x00\ \x13\x46\x0c\xe0\x02\x0d\xb6\xed\xac\x65\x7d\x79\x05\x15\x95\xd5\ \x74\xd6\x16\x5a\x10\x04\x44\x49\x30\xca\xe0\x49\x98\x0c\x2b\xd7\ \x75\x1b\xb6\xf2\x7b\xd9\x66\x1e\x7d\xe1\x1d\x86\xf6\xeb\xcb\xf4\ \x7d\x47\x33\x7d\x9f\xb1\xf4\xec\xde\xad\xcb\xaf\xc9\xee\xde\xb2\ \xb2\x32\x98\x30\x76\x14\x93\xc7\x8f\x65\xda\xbe\x93\x98\x3c\x61\ \x5c\xcc\x0c\x54\xe0\xd8\xc3\x0f\x25\xb7\x5b\x0e\xb7\xfc\xe3\x01\ \x9a\x5c\x1e\x83\x0f\x57\x50\x8c\x82\x11\x9a\x46\x14\x88\x6b\x2d\ \x85\xdf\x49\x67\x5d\x6d\x53\xac\x00\x6c\xad\xa8\x04\x90\x0d\xcc\ \xed\x5a\x20\x0f\x6c\x7a\x23\x68\x29\x3c\x71\xc3\xa6\x6d\x15\x03\ \x53\x75\xa3\x44\x6e\x8a\x02\x03\xfb\x0f\xe4\xa4\x63\x8f\xe5\xbf\ \x6f\xbd\x15\xde\x6f\x5b\x45\x05\x8f\xcd\x7b\x9a\x2b\x2f\xbe\x0c\ \x4d\xd3\xa9\x08\x62\xa2\xce\xdd\x1d\xcc\x13\xc9\x0c\x43\x54\x91\ \xd7\xeb\xe1\x8e\x7b\xe3\x95\xb7\x7f\xbf\xe9\xba\xa4\xdc\x78\x6b\ \x52\xcc\xd6\xf8\xf3\x54\x47\xb4\x91\xdf\x35\x04\xe2\x5d\xe1\xcd\ \xd2\x19\x09\x63\x57\x80\x79\x28\x2a\x37\x99\x4c\x2c\x98\xf7\x08\ \xd3\x8f\x3a\x99\xd2\x0d\x9b\xe2\x6e\xd8\xc8\xf3\x2c\xe8\xde\x8d\ \x5e\xf9\xdd\xc2\xbf\xf7\x93\x8f\x3d\xd8\xe1\xf3\x11\x45\x01\x8b\ \xc9\x84\xc5\x6c\xc2\x6a\x35\x61\x0b\x98\xd1\x34\x15\x49\x10\x50\ \x0c\xff\x8f\xb2\xcd\x15\x94\x6d\xde\xc6\x53\x2f\x7f\xc0\x90\x01\ \x7d\x39\x70\xf2\x68\xf6\x9f\x3c\xaa\x4b\x22\xf5\xdd\x65\x9d\xc3\ \x6c\x36\x91\x95\x99\x49\xb7\xec\x4c\xb2\x32\x33\x19\x3c\xb0\x1f\ \x93\xc6\x8f\x65\xd2\xf8\xd1\x0c\xe8\x57\x62\x08\x27\xa2\x95\x58\ \xb1\xf7\xd0\x94\x09\xe3\x78\x6e\xee\xbf\xb8\xf4\x86\x5b\x59\xb7\ \x7e\x23\xaa\x66\xd4\xe1\x34\xfc\xea\xa3\xb5\xe2\x6d\xa1\xc6\xda\ \x97\x9a\x0f\xcd\xfe\x49\xa5\x9b\x2a\x00\x36\x04\x36\xbd\x11\x6c\ \xeb\x1a\x4c\x7b\xa3\xeb\xb5\xd5\xb5\xb5\x03\x3d\x5e\x2f\xf5\x7e\ \x81\x15\x5b\x9b\xc8\xb0\x9b\xc8\xb0\x99\xc8\xb0\x9b\x48\xb7\x99\ \xc8\x70\x98\x30\x89\x42\x87\x6f\x90\x10\x20\x0b\x82\x7e\xd1\xaf\ \xbb\xf2\x4a\xde\xfe\xe0\x83\x28\x75\xc0\x7d\x0f\xcf\x65\xc4\xd0\ \x61\x1c\xb0\xdf\xfe\x71\xef\xe9\x6c\x94\xb7\xab\x41\x3c\x7a\xf1\ \x56\xe3\xb2\x6b\x6f\x60\x7d\xd9\xc6\xa8\xf7\x1c\x35\xe3\x10\xc6\ \x8f\x19\x13\x5e\x94\x4c\x44\xab\xb4\x37\xc5\x3d\xa5\x00\x98\xe0\ \xb8\xb3\x6f\xba\x83\xff\xbb\xf3\xfe\x94\x7c\xee\xa0\x01\xfd\x58\ \xf0\xcc\xa3\x2d\x53\x4c\x1d\xb4\x05\x68\x0d\xcc\x43\x7d\x2f\x2b\ \x33\x93\xd7\x5e\x78\x8a\x03\x8f\x3c\x99\xfa\x86\xc6\x36\x47\xaf\ \x92\xd8\xf1\x8e\x6a\x92\x44\x6c\x36\x33\x0e\xbb\x05\x87\xcf\x8a\ \xaa\x6a\x98\x24\x51\x8f\x26\xa3\x8c\x9c\x74\xeb\xde\xad\xdb\x2b\ \x79\xf1\xad\x4f\x78\xf1\xcd\x4f\x18\x50\xd2\x9b\xa9\x13\x46\x30\ \x75\xc2\x48\xf2\xf3\xb2\x3b\x1c\x81\xa7\x7a\x10\xbd\xff\x1f\xb7\ \x30\x62\xd8\x10\x2a\xab\x6b\xf9\x7d\xfd\x46\x2a\xab\x6b\x51\x14\ \x55\xaf\xcd\x69\xb6\xe2\x74\xd8\x39\x68\xda\x14\x26\x8f\x1b\x85\ \x68\x2c\x3a\xc5\xae\x6b\xc4\xd2\x89\xc9\x66\xa6\x45\x7d\x7b\xf3\ \xda\xbc\xb9\xcc\xfe\xeb\x5d\x7c\xf6\xf5\xa2\x88\x6b\xa7\x75\xbc\ \xf3\x6b\x6d\xbc\x41\xd0\x4b\x5d\xba\x3c\x5e\x76\x56\xd5\x02\xb4\ \xcb\x4a\xb3\xdd\x40\x0e\x1c\xbd\xb9\xa2\x82\xac\xdc\xde\xfc\x58\ \x56\x9f\x70\x27\x87\x45\xd2\x01\xde\x00\xf7\x4c\x87\xf1\x68\x37\ \x91\x6e\x3c\x6f\xb7\x88\x49\x6f\xb6\x10\x28\xab\x2a\xf4\xcc\x2f\ \xe0\xfc\x33\xcf\xe4\x89\x67\x9f\x8d\xe0\x27\x55\x2e\xbb\xe6\x5a\ \x3e\x7c\xfd\x35\x0a\xfb\x44\xfb\x55\xc4\x2e\x04\xee\x4e\x91\x79\ \x4b\x20\x2e\x8a\x70\xff\xdc\x47\xe3\x74\xe3\x92\x24\xf1\x7f\xd7\ \x5f\x93\x50\x3e\x98\x10\xa0\x13\xac\xac\xb4\x44\xa9\xa4\x82\x1e\ \x4b\xd4\x2a\xb6\xef\x4c\xd9\x75\xb5\x59\xad\xb4\xd1\x8e\xbc\x4b\ \xbe\x7f\x64\xa0\x10\xb9\x4e\xd3\xaf\xb8\x88\x05\xcf\x3c\xc2\x71\ \xa7\x9f\x4f\xd0\xc8\x10\xd5\x52\xd8\x07\xcd\x66\x13\xe9\x4e\x1b\ \x5e\x9f\x03\x45\x55\xb1\x98\x4d\xf8\xfd\x01\x64\xd9\xa8\x58\x63\ \x44\x93\x21\x20\x6f\xee\x10\x50\x5b\xdf\xc0\x3b\x9f\x7e\xcb\x3b\ \x9f\x2e\xa2\xa4\x6f\x01\x93\x46\x0f\x61\xd2\x98\x21\xe4\x76\xcb\ \x6a\x73\x04\x9e\x68\x50\xeb\xea\x00\x6a\xe4\xf0\x21\xec\x37\x65\ \x22\xaa\x0a\xc7\x69\xf0\xfb\xba\x0d\x7c\xf8\xc5\xb7\x94\x96\x6f\ \xc6\xe5\x76\x51\x5d\xd7\xc4\xd3\x2f\xbd\xc9\xbb\x9f\x2c\xe4\xf4\ \xe3\x8f\x62\xd8\xe0\xfe\x71\xbf\x73\x5b\x14\x57\xa1\xbf\x9d\x0e\ \x27\x4f\xfd\xfb\x2e\x1e\x7e\xe2\x59\x1e\x7c\xf2\xb9\x98\xa4\x9f\ \xb6\x44\xe2\xb4\xbb\x98\x44\xe8\xb5\x82\x9e\x3d\xd9\xa0\x47\xe3\ \xbb\x04\xc8\xd9\xb4\xad\x82\xfe\xc5\x25\x49\x77\xf2\x04\x14\x3c\ \x01\x85\x1d\x0d\xc9\x7d\x24\x2c\x26\x31\x0c\xee\x19\x76\x89\x4c\ \xa7\x0e\xf8\x99\x0e\x13\x59\x4e\x33\x59\x4e\x13\x99\x0e\x09\x45\ \x81\xab\x2f\xbf\x82\x45\x8b\x17\xb3\x6a\xcd\x9a\xf0\xfb\x1b\x9b\ \x9a\x38\xf7\xd2\x4b\x79\xff\xbf\xaf\xe1\x74\xa4\x27\x04\xf3\xd8\ \x8e\xf6\x47\x2a\x56\x62\x41\x3c\x52\x79\x23\x8a\xf0\xf1\xe7\x9f\ \xf3\xaf\x87\x1e\x49\x40\xa9\x5c\x4b\xbf\xe2\x92\x28\x6e\x3c\x11\ \x3f\xdc\x16\x6a\x25\x19\xe0\x76\xc5\xf7\x8d\xa2\x78\xfe\x80\x41\ \xb2\x75\xcf\x99\xae\x07\xd4\x44\x54\xcb\x7e\x53\x26\xf1\xe0\xdd\ \xb7\x33\xeb\xba\xbf\xc6\x5d\xfb\xae\x6e\x69\x0e\x3b\x59\x99\x4e\ \x54\x0d\x2c\x66\x13\x1e\xaf\x8f\x40\x40\xd1\x8b\x1d\x68\x6a\x84\ \xd6\x39\x1a\xc1\xb4\x08\x40\x07\xf0\x05\x7c\x2c\xfc\xe9\x17\x16\ \xfe\xb4\x8c\x3e\x3d\xbb\x33\x6a\x68\x7f\x46\x0e\xee\x47\x4e\x76\ \x46\xd2\x41\xb0\x25\x10\xef\x4a\x30\x8f\x5d\xa8\x1f\xd8\xaf\x84\ \x81\xfd\x4a\x58\xb6\xe2\x77\x5e\x7d\xeb\x23\x7e\x5f\x57\x86\xa2\ \xaa\x6c\xab\xa8\x62\xe9\x2f\xab\xd8\x67\xc2\x18\x2e\x3e\x7b\x26\ \xdd\xf3\x72\x5a\x9d\x81\x25\x2f\x4b\x28\x30\xfb\xd2\x0b\x18\x3a\ \x78\x20\xb3\x6f\xb9\x3d\x42\x45\xa2\xb5\x0a\xcd\x1d\x29\x26\x11\ \x6a\x03\x4a\x8a\xf9\xea\x87\xdf\x76\x25\x90\x6f\xc3\x2c\x09\x64\ \xda\x4d\x34\x78\xe5\x0e\xfd\x40\x01\x59\xa5\xc6\x15\xa0\xc6\x15\ \x88\xea\x00\x92\x28\x60\x92\x04\xac\x66\x81\x34\x9b\x44\xf7\x2c\ \x33\x3d\xb2\x2c\xcc\xbe\xe9\x3e\x6e\xbc\xe6\x5c\x6a\x6b\x9b\x2b\ \xe5\x94\x6e\xd8\xc8\xac\xeb\xae\x63\xfe\xe3\x8f\x23\x49\x62\xd2\ \x28\xf5\x8f\xa4\x59\x12\x81\x78\x6c\x24\xbe\xbe\x6c\x3d\x97\x5c\ \x7d\x7d\xdc\x14\xee\xcc\x99\x27\x71\xd9\x85\x17\xc4\x2d\x70\xb6\ \x04\xd4\x89\xda\xae\xb2\xf3\x08\x9f\xc3\x2e\x46\x72\x2d\xe6\x37\ \x57\xb5\x96\xf7\xe9\xca\xa8\x3c\x11\xb8\x9d\x39\xf3\x24\xd6\xae\ \xdf\xc0\xdc\x27\xe7\xa5\x74\x46\xa8\x29\x7e\xf2\x33\x2d\x98\x09\ \x20\x2a\xe0\xf7\x78\x09\x78\x3d\xe1\xa4\x15\x2d\xe1\x34\xac\xe5\ \xa8\x70\xf3\xe6\x8d\x6c\xda\xb4\x91\x77\x3f\xfa\x94\xec\xcc\x0c\ \xfa\xf4\xcc\xa3\x57\x8f\x3c\x9c\x11\x7e\xea\xb1\x99\xe9\xa3\x86\ \x0f\xc7\xe1\x70\xa4\x66\xb6\x47\x62\x69\xec\xe8\x61\x43\x18\x35\ \x74\x08\x4b\x7f\x5d\xc9\xb3\x2f\xbf\xc9\x2f\x2b\x57\xa3\x69\xf0\ \xee\xc7\x5f\xf1\xd1\x97\xdf\x72\xee\xcc\xe3\x39\x67\xe6\x71\x98\ \xcd\xe6\x0e\xcf\xca\x0e\x3d\x70\x2a\xef\x2e\x78\x86\x0b\xae\xba\ \x91\x0d\xe5\x9b\x5b\x86\xf2\x4e\x14\x93\x00\xe8\x96\x9d\x4d\x56\ \x56\x26\x65\xe5\xdb\x76\x09\x90\xaf\x01\xd8\xbc\x4d\x0f\xff\x73\ \xd3\x2d\x1d\x06\xf2\x64\x37\x85\xaa\x82\x22\x68\x04\x65\xf0\x06\ \x54\xaa\x1b\x83\xf8\x83\x2a\x19\xce\x74\xfe\x72\xcd\xdd\xfc\xfb\ \x8e\x2b\x08\x04\x9a\x23\xfd\xcf\xbf\xfe\x9a\xb3\xaf\xba\x91\x73\ \x2e\xbc\x0e\x41\x90\x10\x10\x30\x89\x22\x36\x93\x84\xc3\x2c\xe1\ \xb4\x99\x48\xb3\x99\xb0\x99\xa5\x5d\xba\x08\xda\x92\x5e\x3a\x12\ \xc4\x37\x6e\xda\xc8\x69\xe7\x5f\x8c\x3b\xa6\x74\xd6\x7e\x93\x27\ \x72\xdf\x3f\x6e\x8f\xd3\x7b\xb7\xc4\x7b\xab\x2a\xdc\x76\xf3\x4d\ \x78\x3c\xee\x66\x9a\xcb\xe1\x8c\xf3\x37\x49\x55\x54\x1a\x7a\x3c\ \x70\xda\xbe\x3c\xf6\xef\xbb\x9b\xbf\x3b\x40\x17\x67\x38\x46\x02\ \x73\x76\x56\x56\x14\x40\x4f\x9e\x30\x2e\xfc\xf9\xe1\x1b\x25\x2b\ \x3b\xe5\x11\x79\x64\xbb\xed\xe6\xeb\xa8\xac\xaa\x26\xdd\xb0\x3f\ \x48\xc5\xa2\xf2\xbc\x17\xfe\xcb\xbc\x17\xfe\xfb\x87\x53\x86\xdf\ \x7e\xf2\x36\xc3\x86\x0c\x49\xd9\x28\xdd\x92\xe1\xda\xb8\x51\xc3\ \x19\x37\x6a\x38\x4b\x7e\x5d\xc1\xe3\xf3\xff\xc3\x8f\xcb\x96\xa3\ \x79\xbc\xfc\xfb\xf1\xf9\xfc\xf7\x9d\x8f\xb9\x79\xf6\xc5\x1c\xb0\ \xcf\xc4\x0e\x7f\x7c\xff\x92\x22\xde\x7f\x65\x1e\x57\xdc\x78\x1b\ \x5f\x7c\xf3\x6d\xcc\x89\xb5\x93\x2f\x6f\xa1\x0d\xe8\xa7\x53\xc4\ \xa5\xcd\xd4\xca\x9a\x76\xe1\x4d\xdb\x3b\xad\x7e\x52\x96\xc2\x13\ \x6b\x07\x16\x17\x67\xbf\xf4\xd0\xfd\x7c\xbc\xa2\x2a\x29\x4f\xde\ \x99\xe8\x55\x14\xf4\xa8\xdc\x6c\x12\xb0\x59\x04\x9c\x36\x89\x74\ \xbb\x44\xa6\x53\x62\xed\xf2\x85\x3c\x33\xe7\xef\x71\xd1\xeb\xb0\ \x91\xe3\x39\x6f\xd6\x6d\xc8\x38\x70\x7b\x65\xdc\x7e\x15\x8f\x4f\ \xaf\xba\x1e\x90\xf5\x52\x60\x4e\x9b\x89\x74\xab\x89\x0c\x87\x59\ \x3f\x9e\xc3\x4c\xa6\xd3\x4c\xa6\xdd\x4c\xa6\xc3\x4c\xba\xdd\x9c\ \x54\xc6\xd6\xde\x24\x9f\xc8\xd7\x23\xa5\x85\xa1\x4d\x92\x60\xd1\ \xe2\xc5\x9c\x77\xd9\x55\x34\x34\x46\x2f\x8e\x95\x14\x15\xf2\xc9\ \x5b\xaf\x91\x91\x9e\x19\x95\xbc\x13\x4b\x8f\x24\xab\xb5\x99\x88\ \xcb\x6c\x49\x29\xd2\xd5\xb4\x51\x64\xd6\x6d\x2a\xa6\xdb\x89\x06\ \xb1\xd6\xbe\x8f\x96\xc2\xb5\x82\x96\xea\xa0\x26\xfa\x9c\xc8\x7e\ \x30\x6e\xda\x0c\xd6\x95\x6e\x64\x4f\x6e\xdf\x7e\xfa\x36\xc3\x87\ \x0c\x89\x1b\xb0\x44\x11\x5c\xee\x46\x7a\x0d\x9a\xd0\xe1\x63\x7f\ \xfc\xe6\x8b\xec\x33\x69\x62\x9b\xd6\x88\x00\x96\xfe\xba\x92\xb9\ \xf3\x5e\xe2\xfb\x25\xbf\x18\x75\x34\x35\x0e\xd8\x67\x12\x7f\xbb\ \xf6\x32\x0a\x7b\x17\x74\xf8\x3c\x54\x55\xe5\x81\xc7\x9e\x66\xce\ \x93\xf3\x8d\xac\x4e\xcd\xf8\x3f\xba\x43\x69\x91\x32\xa5\xf0\xda\ \x84\x16\x9e\xbe\x68\xe1\x7d\xa3\x3d\xf1\x4f\x3f\xf9\x04\x1e\xfc\ \xe7\x1d\x1c\x72\xfa\x75\xac\x5a\xbb\xb1\x2e\xb0\xe9\x8d\x6e\x21\ \x9a\x27\x15\x11\x39\xc0\xda\xcd\x15\x15\x93\x35\x4d\x23\x37\xcd\ \x92\x92\x9b\x53\x45\x43\x51\x01\x39\x04\xec\x2a\xa2\xd1\x31\x06\ \x8f\xde\x9f\xa3\x4f\x3a\x9f\x77\x5f\x9b\x17\xf5\xbe\x55\xbf\x2d\ \xe5\xfe\xdb\x2e\xe5\xd2\x6b\xef\x21\x33\xab\x27\x92\xa4\x20\x89\ \x60\x92\xc0\x14\x10\xf0\x07\x15\x1a\xbd\x41\xea\x9a\x02\x61\xe7\ \x32\x45\xd5\x8c\x2a\x5f\xc6\x85\x16\x34\x32\x6c\x3a\x47\x9f\xe9\ \x30\x93\xe1\xb0\x90\xe9\x34\x93\xe5\xb4\x18\xbc\xbd\xfe\xb7\x39\ \x86\xc6\x49\x56\x99\x3e\x51\xa2\x4f\x68\x7b\xee\xa5\x05\xdc\x72\ \xc7\x5d\x71\xc5\x61\x33\x33\x32\x78\x79\xde\x93\x64\x66\x64\x86\ \x29\x95\x64\x1e\x29\x89\x12\xa9\x92\x01\x79\x6b\x11\x64\x57\x73\ \xc5\xb1\x95\x9c\x52\x09\xe4\xc9\xf8\xdb\x44\xdf\x3f\x55\x94\x52\ \x4b\xc0\xbd\xab\x24\x9e\x7f\x54\xfb\x75\xe5\x5a\x7a\xf4\xe8\x49\ \x4e\x56\x56\x4a\x07\xeb\xb6\xd0\x23\xe3\x47\x0f\xe7\xf9\xb9\xf7\ \xb0\xec\xb7\x55\xcc\x7d\xe6\x25\x16\x7e\xbf\x84\x2f\x17\x7d\xcf\ \xb7\x3f\x2e\xe5\x2f\x67\xcd\xe4\xb2\xf3\x4f\xc7\x66\xb5\xb6\xfb\ \x3c\x44\x51\xe4\xfa\x59\x17\x33\x7c\xf0\x20\x66\xdf\x72\x1b\x6e\ \x8f\xa7\x9d\x14\x4a\xcb\xfe\x2b\x03\x4a\x8a\xd1\x34\x2d\xb4\xd8\ \xd9\xee\xe2\xaf\x1d\x02\x72\x9f\xdf\x3f\xb9\xb2\xa6\x86\xdc\x74\ \x67\xca\x00\x41\xe7\x75\x35\x64\x19\xfc\x82\x1a\x8e\xd4\x05\xe0\ \x80\x23\xce\xa2\xae\xb6\x92\x45\x5f\xbc\x17\xf5\xfe\x1d\x15\x5b\ \xf8\xd7\xdf\x2f\xe1\xe2\xd9\xb7\xd3\xa7\xdf\x68\x4c\x12\x98\x4d\ \xe0\x95\x04\x4c\x12\xf8\x65\x0d\x59\x54\x91\x55\x90\x15\x0d\x41\ \x51\x9b\xf5\xa5\x06\xb1\xda\xe4\x0d\xd2\xe8\x09\x1a\xda\x51\x62\ \x46\x4e\xbd\xda\x7a\x9a\x55\x22\xc3\x69\x21\x2b\xcd\x42\xb6\xd3\ \x42\x66\x9a\x99\x6c\xa7\x95\x2c\xa7\x85\x6e\xe9\x16\xb2\xd2\xcc\ \xd8\xad\xa6\x84\x20\xae\x6a\x0a\x37\xdf\xf6\x0f\xe6\xbd\x18\x6f\ \xb0\x94\x9e\x96\xc6\xf3\x4f\x3c\x42\x49\x51\x71\x1c\x27\x98\x8c\ \xf3\x4f\xc6\xd5\x26\x8b\x0a\xdb\x02\x66\x1d\x89\xd0\x13\x81\x59\ \xaa\x00\xac\xbd\x32\xb8\xae\x90\x1d\xb6\xf5\x9c\x5a\x03\xf4\xbd\ \x11\xcc\x7f\x5e\xb1\x86\x1f\x96\xaf\x27\xcd\xe1\x64\xec\x88\x41\ \xec\x37\x71\x34\x3d\xbb\xe7\xa4\x6c\xd0\x6c\x4b\x1b\x3b\x72\x18\ \xcf\xcd\xb9\x9b\x5f\x57\xfe\xce\x9c\xa7\x5e\xe0\xab\xef\x7e\x64\ \xee\xd3\x2f\xf0\xc6\xfb\x9f\xf0\xb7\x6b\x2f\x63\xc6\xf4\x69\x1d\ \xfa\xfc\xc3\x0f\x3e\x80\x7e\x45\xcf\x72\xfe\x95\xd7\xb3\x71\xd3\ \x96\x78\xdc\xee\x50\xdf\xd2\xe8\x5f\x52\xcc\xf6\xca\x1a\xbc\x3e\ \xff\xae\x03\x72\xd0\x95\x2b\xc3\x06\x0f\x4b\x59\x74\xa3\x6a\x1a\ \xa8\x02\xb2\xa0\xe9\x39\x4e\xa8\x11\x37\x81\xc6\xb1\x67\x5c\x4b\ \xaf\x3e\xfd\x78\xed\xc5\x47\x50\x94\x66\x9e\xde\xed\x6a\xe2\xe1\ \xbb\xaf\xe7\xe8\x93\xce\x61\xda\xa1\xa7\xe8\xc9\x12\x26\x15\xaf\ \x5f\xc0\x17\x54\xf0\x07\x04\x82\x32\x04\x15\x7d\x90\x50\x54\x7d\ \xda\x24\x1a\xb3\x25\x55\x8d\x90\x8c\x45\x48\xb6\x34\xad\xf9\x0e\ \xf4\x05\x15\x7c\x0d\x5e\xaa\x1a\xbc\xe1\xca\xeb\xa2\x51\xb8\xd7\ \x6c\x02\xb3\x24\xe2\xb4\x49\xe4\x64\x58\x8d\xcd\x42\x76\x86\x95\ \xba\xaa\x2d\x3c\xf4\xf0\x03\x2c\x59\xba\x34\x01\x47\x56\xc2\x0b\ \x4f\x3e\x4a\xbf\xe2\x92\xa8\x69\x64\xac\x77\x77\x5b\x2a\xf1\x84\ \x00\xa5\xa3\xa0\x9d\x8a\xc8\x74\x57\xcb\x40\xff\x08\xcd\x73\xa2\ \xcf\xf8\x5f\x28\x1a\x6e\x32\x49\x68\x8a\xc8\xe6\x6d\x3b\x58\xb5\ \x6e\x03\x2f\xbc\xfe\x21\x23\x87\xf4\x63\xfa\xbe\xe3\x18\xd2\xbf\ \xcf\x1f\x7a\x6e\xa3\x87\x0f\xe1\xd9\x39\x77\xb3\xe2\xf7\x75\xcc\ \x79\xea\x79\x3e\x5b\xf8\x1d\x97\x5c\x77\x2b\x53\x27\x8d\xe3\xf6\ \x1b\xaf\xa2\xa4\xa8\x6f\xbb\x8f\x39\xb0\x7f\x09\x1f\xfe\x67\x3e\ \x97\x5d\xf7\x7f\x7c\xf5\xed\xe2\x4e\x17\x93\xd0\xb9\xf8\x62\xca\ \xca\x3b\x26\x3d\xec\x24\x90\x6f\x63\xe2\xa8\x91\xd8\xcc\x22\xbe\ \xa0\xda\xe5\x37\x43\x24\x98\x87\x8b\xe2\x0a\x1a\xa0\x00\x22\x9a\ \x06\xe3\xa6\x1e\x4b\xaf\xbe\xfd\x79\x66\xce\xad\x34\xd4\xd7\x86\ \xdf\xaf\x28\x0a\x6f\xff\xe7\x59\xbe\xfe\xf4\x1d\x8e\x3a\xf1\x1c\ \xc6\x4d\x99\x81\xd5\x6c\xc2\x17\x14\xf0\xf9\x55\x02\x41\x01\x7f\ \x50\x45\x56\x04\x64\x45\x43\x96\x05\xdd\x14\x47\x23\x9c\x92\x1b\ \xb6\xab\x8c\x3c\x27\xa3\x60\x97\x80\x06\xa2\xee\x38\xa6\x97\x02\ \x13\x10\x05\x30\x9b\x04\x2c\x26\x11\xb3\x49\xc0\x6a\x11\xd1\x50\ \x71\xfb\x03\xd4\x6e\xda\xc1\xa7\xef\xbd\xcc\x0f\xdf\x7e\x11\x65\ \x37\x10\x6a\x13\x26\xed\xcb\xe5\x57\xde\x48\x45\x93\x8d\xca\x55\ \x3b\xb0\x99\x4d\xd8\x2d\x66\x32\x9c\x56\x32\x1c\x16\x4c\x92\xd8\ \x2a\x08\x25\xe3\x88\x5b\xe3\x8e\x53\x09\x64\xbb\xfa\xf3\x76\xc7\ \xd6\x9e\x2a\x4a\x7b\x6a\xd3\xfd\x5e\xc4\x08\x4a\x51\x60\xe3\xe6\ \x0a\xde\xf3\xb8\xf9\xe1\xe7\x8c\xdd\xe2\x1c\x47\x0c\x19\xc8\xd3\ \x0f\xde\xc5\xea\xb5\xa5\x3c\xfc\xd4\xf3\x7c\xfa\xd5\x22\x0e\x39\ \xf9\x3c\x2e\x3c\xf3\x64\xae\xbc\xe8\x9c\x28\x55\x4e\x5b\x5a\x46\ \x7a\x3a\x2f\x3c\xfe\x20\xff\x9a\xf3\x38\x73\x9f\x7a\xae\xc5\x68\ \xbb\x45\x34\x47\xaf\x0d\x50\xd8\xa7\x37\x0b\x7f\x5a\xfd\x47\x00\ \x79\xb3\x72\x65\x6b\xad\x2f\x85\x37\x82\x86\x62\x80\xb9\x80\xaa\ \x47\xc6\xaa\x86\x6a\x6c\x79\xbd\x87\x71\xfd\x1d\x4f\xf3\xec\xdc\ \xbf\xb1\x61\xfd\xea\xa8\xf7\xd6\xd7\xd5\xf0\xd2\x33\xff\xe6\xb3\ \x0f\xfe\xcb\xb1\xa7\x5c\xc0\xd0\x51\x53\x09\x58\x34\xfc\x41\x05\ \x7f\x50\x23\x10\x54\x08\x2a\x2a\xb2\xac\x21\x2b\x82\x1e\x9d\x2b\ \x82\x0e\xe8\x9a\x68\x38\x9d\x45\xde\x8d\x21\xf3\x27\x0d\xd1\x90\ \x4a\x8a\x22\x98\x24\x01\x93\x28\x60\x36\x89\x58\x4c\xba\x74\xd2\ \x62\x91\x50\x65\x0f\x5f\x7e\xf0\x3a\x5f\x7f\xf6\x2e\xc1\x60\x20\ \xe1\x0d\x70\xe4\x71\x67\xb0\xcf\x41\xc7\xb3\x6e\x9b\x17\x97\xa7\ \x09\xb7\x2f\x88\xc7\x2b\xe3\x0d\xc8\x04\x65\x95\x60\x50\xc5\x61\ \x95\xc8\x74\x5a\xc8\x4e\xb3\x91\x9d\x61\x23\x2b\xcd\x4a\xb7\x74\ \x1b\xdd\x32\x6c\x64\xa7\xdb\xc8\xc9\xb0\xe1\xb0\x99\x77\x3b\xa0\ \xd0\xfe\xf4\xde\xfe\x9f\xb8\x36\x42\x78\xa0\x6a\xa6\x21\x43\xd4\ \xa4\xb6\x9b\x19\xb0\x0f\x1d\xd4\x9f\x27\x1f\xb8\x93\x35\xeb\x37\ \x30\xe7\xe9\xe7\x79\x72\xfe\x2b\xbc\xfd\xc1\xa7\xdc\x72\xf5\x65\ \x1c\x7b\xf8\xc1\xed\x3a\x96\x28\x8a\xdc\x34\xfb\x72\x86\x0f\x19\ \xc4\xd5\xb7\xdc\x8e\xdb\xeb\x49\x8c\xd8\xad\xa4\xe6\x17\xf5\xed\ \x83\x24\x49\x94\x6d\xda\xb5\x11\x79\x29\xa0\x6c\xda\xb6\x4d\x02\ \xc8\x4d\x4b\x0d\x90\x47\x73\xbf\xcd\x60\x1e\x5a\xf5\x55\x34\x50\ \x8c\x05\x4b\xa7\x2d\x8b\xcb\x6e\x7c\x98\x77\x5e\x9e\xc3\xa2\x2f\ \xdf\x8b\x3b\xd6\xce\xed\x5b\x79\xea\xe1\xdb\x29\xee\x37\x88\x69\ \x07\x1f\xcb\xe0\xe1\x13\x71\xa4\x67\x12\x94\x45\x03\x2c\x35\x82\ \x8a\x8a\xa2\x6a\x28\x8a\x86\xaa\xa9\xfa\x42\xa3\xb1\x02\xdd\x1c\ \x55\xe9\x1c\xb9\x20\x82\x64\x50\x29\x26\x49\x4f\x95\x36\x1b\x2a\ \x1b\x8b\x49\xa4\x72\xfb\x06\x7e\xfa\xf5\x07\xbe\xfa\xf4\x5d\x3c\ \x9e\xc4\x65\xf7\x1c\x0e\x27\x67\x5e\x78\x1d\x7d\xfa\x8d\xa4\xc1\ \x25\xe3\xf6\x06\x71\x79\x83\x78\xfd\x0a\xfe\x80\x4c\x20\xa8\xea\ \x19\x7a\xaa\x46\x83\x27\x48\x83\xdb\xcf\xa6\x9d\x4d\x10\xc3\xdd\ \x63\xdc\x34\x16\xb3\x44\x6e\x86\x4d\x07\xfb\x10\xc8\x67\xd8\xc8\ \xc9\xb0\x1b\x60\x6f\x27\x2b\xdd\xda\x0e\xff\xec\x3f\x5b\x2a\xfa\ \xf3\xde\xd8\x0e\x3b\x60\x32\x41\x55\x62\xc9\xaf\xbf\xf3\xcb\xca\ \x75\xf8\x03\xc1\x66\x40\xef\x82\x11\x2b\x15\x8b\xd5\x83\x07\x94\ \xf0\xd8\xbf\x6e\x67\xfd\x86\x72\xe6\x3c\x35\x9f\xd9\x7f\xbd\x93\ \x05\xaf\xbf\xcd\x9d\x37\x5f\xc3\xa0\xfe\x25\xed\x3a\xd6\x51\x87\ \x1d\x4c\xff\xe2\x22\xce\xbb\xe2\x1a\x36\x6d\xde\x9a\x34\xf2\x4e\ \x46\xa0\x0f\xea\xdf\x0f\x20\xa4\x21\x57\x0c\x8c\x4d\x2d\x90\x07\ \x36\xbd\xe1\xb7\x14\x9e\x58\xbe\x79\x5b\x45\xbf\x50\x44\x9e\xea\ \xce\x1f\x09\xe6\x9a\x2e\x6b\x41\xd1\x14\x54\x4d\x44\x55\x34\x64\ \x45\xc3\x61\x13\x39\xfa\xf4\xab\x19\x33\x69\x3a\x1f\xbe\xf9\x2c\ \xa5\x6b\x57\xc4\x1d\x6f\x63\xd9\x5a\x36\x96\xfd\x0b\x41\x10\x28\ \xee\x37\x98\x11\x63\xa6\x30\x74\xd4\x24\xf2\x0b\x4a\x74\x20\x57\ \x54\x5d\xc7\xae\xea\x8f\xaa\x16\x2d\x11\x12\xd0\x23\x71\x04\x01\ \x49\x02\x49\xd0\x81\x5c\x53\x64\xca\xd6\xfd\xc2\xea\xe5\x3f\xb1\ \x72\xf9\x4f\xd4\xd5\x56\x27\xfd\x4e\x66\xb3\x85\xfd\x0e\x38\x9c\ \xfd\x0e\x3a\x1e\xd1\x92\x46\x7d\x53\x00\xb7\x4f\xc6\xe3\x93\xf1\ \x05\x64\xfc\x01\x95\xa0\xac\x22\x2b\xc6\xac\x23\x24\x5b\x6a\xa5\ \x63\x04\x02\x0a\x15\xd5\x2e\x2a\xaa\x5d\xd1\xd9\x7c\x11\x99\x7c\ \x92\x20\x90\x95\x66\x25\x3b\xd3\x4e\x37\x03\xdc\x73\x32\xed\x64\ \x67\xd8\xc9\xc9\xb0\xd3\xcd\xf8\xdb\x62\x96\xfe\x44\xde\x3f\x23\ \xf3\x36\xb7\x1e\xdd\x73\x18\x36\x78\x08\x87\x4e\x9b\x42\x20\x28\ \xb3\xae\x6c\x33\x6b\x37\x6c\xa2\x62\xe7\x4e\x1a\x1b\xeb\x77\xeb\ \x73\x1f\x50\x52\xc4\xdc\x7b\x6e\x63\xf6\xc5\xe7\x31\xf7\xe9\x17\ \x38\xf2\xff\xdb\x3b\xef\xf0\xb6\xaa\xf3\x8f\x7f\x24\x79\xef\x21\ \xcf\xd8\x91\x67\xe2\x4c\x08\x24\x94\x5d\x08\x3b\xec\x26\xac\x96\ \x51\x0a\xb4\xec\x96\x1f\x85\xd2\x02\x2d\x50\x4a\x27\x65\x95\x52\ \x46\x80\x12\x28\x53\xec\x30\xb2\x97\xb3\x9d\x61\x3b\x7b\x38\xca\ \x70\xe2\xbd\x87\xae\xc6\xfd\xfd\x71\xaf\x6c\xd9\x96\xb5\x2c\x79\ \xe5\xbc\xcf\xa3\x47\xd2\xd5\x95\x74\x75\x75\xee\xe7\xbc\xe7\x7b\ \xde\xf3\xbe\x37\xfc\x8c\x1b\xaf\xb9\x9a\x07\xef\xbe\x8d\xd8\x98\ \x18\xef\x3b\x86\x71\x05\x7c\xf7\xf1\xbb\xdc\xf9\x7f\xbf\x65\x79\ \xf1\x1a\xaf\x00\xee\xb0\x69\x53\xa7\x28\x20\x57\x3c\xf2\x03\x92\ \xc9\x68\xf6\x67\x54\xe4\xb5\xc4\xe1\xb0\x30\xc3\xec\xf9\x1a\x8d\ \x66\xd6\x8a\x8f\xfe\x47\x65\x93\x95\x77\x8a\x8f\x04\x59\x83\xeb\ \xbe\xd7\x68\xba\xb5\xe9\xd0\x10\x0d\x61\x3a\x08\x0f\xd5\x12\x11\ \xae\x21\x32\x4c\x4b\x54\xb8\x96\xc8\x30\x0d\x15\xbb\x36\x31\xdf\ \x38\x97\x8a\x7d\x9e\xe3\xea\x93\x92\x53\x29\x9a\x34\x8d\x84\x24\ \x3d\xb1\xf1\x89\xc4\xc4\x26\x12\x1b\x97\x48\x5c\x7c\x12\xb1\xf1\ \x09\x84\x84\x86\xd3\xde\xd6\x42\x4b\x73\x3d\x2d\x8d\xf5\x34\x37\ \x37\xd0\xda\xdc\x40\x4b\x53\x03\xd5\xc7\x0e\xb3\x73\xdb\x96\x1e\ \x8b\x94\x5c\xf6\x98\x21\x21\x9c\xfe\xc3\x8b\x38\xf7\xc2\x39\xe8\ \x22\xe2\x69\x57\xe1\xdd\xde\xa9\xc8\x28\x66\xb3\x4d\x91\x7a\xac\ \x32\x56\x35\xeb\x9a\x52\x17\x50\xd1\xee\x5d\xc6\xa6\x3a\xc7\xb2\ \x3a\x6d\xeb\xeb\xb1\x43\x8f\x58\x56\xa7\xcf\x72\x15\x0b\x1b\x13\ \x15\x46\x72\x5c\x04\x49\xf1\x51\x2a\xec\xa3\x48\x8e\x8f\x54\x6f\ \x51\x24\xc7\x47\x11\x13\x15\xd6\xef\xff\xe4\x69\xdb\xf1\x6a\xae\ \x16\x85\x9d\x7c\xf6\xc5\x7d\x92\xa4\x8d\x34\x2b\x5e\xa8\xc4\x91\ \x3b\x4f\xcc\x3b\x7e\x63\x63\x53\x13\x86\x49\xfe\x2f\xc8\xf9\xe6\ \x93\x79\x9c\x71\xea\x29\x7d\x16\xc5\x05\xab\x03\xac\x38\x78\x88\ \x97\x5e\xfb\x2f\xab\xd6\x6e\xe0\xa1\xfb\x7f\xc1\x9c\xcb\x2f\xf1\ \x69\x14\x6b\xb3\xd9\xf9\xf3\x73\x2f\xf1\xf2\x1b\x6f\x3b\x5d\x63\ \xee\xaf\xc1\xcf\xde\x7b\x9b\x93\x4e\x38\x81\xfc\x33\x7e\x8c\x2c\ \xcb\xdf\x48\x26\xe3\xa5\xce\xf2\x6b\xb0\xa4\x15\x80\x5d\xb2\x2c\ \xcf\x3a\x54\x79\x14\x43\x76\x36\x5a\x8d\xa6\xcb\x7b\x0d\xb6\x67\ \xae\xe8\x6f\x1a\x05\x3e\x56\xb0\xdb\xc0\x66\xb7\x29\x13\x97\x56\ \x3b\x92\x45\x4b\x67\x98\x86\x8c\xdc\x13\xb9\xf7\xd1\x97\xd9\x53\ \xbe\x96\xf9\x9f\xbe\xc5\xa1\x03\xfd\x8f\x56\xea\xeb\xaa\x59\xbd\ \xe2\x7b\x37\x17\xa0\xc6\xef\x21\xa2\x56\xa7\xe3\xd4\x33\xce\x67\ \xe6\xc5\xd7\x10\x11\x93\x4c\x87\xd9\x4a\x73\x8b\x99\x0e\xb3\x8d\ \xce\x4e\x2b\x9d\x16\x3b\x92\xba\x68\xc9\xe6\x18\x15\x38\xe5\xc8\ \x70\xeb\x89\xfb\x9c\x94\xcd\x9b\x5c\x11\x32\x2d\xed\x66\x5a\xda\ \x3a\x39\x70\xb4\xb1\x17\xf4\xbb\x1b\x64\x78\x68\x48\x1f\xb8\xeb\ \x13\x94\xfb\xe4\x84\x68\xf4\xf1\x51\x24\xc6\x45\x0a\x29\xe7\x38\ \x1f\x6d\x68\xb5\x03\xfb\xff\x3f\xfd\x66\x21\xf5\xcd\x1d\x9c\x30\ \x69\x02\x99\x69\xa9\x41\x3f\xe6\xdc\xb1\xd9\xfc\xf3\xe9\xc7\x38\ \x78\xb8\x92\x97\xde\x78\x9b\x0f\x3f\xfd\x8a\x27\x7e\xf3\x00\x93\ \x27\x78\x97\xbd\x5b\xa7\xd3\xf2\xd8\xaf\x7f\xc9\x94\x89\x45\x3c\ \xf0\xbb\x27\xe8\xe8\xec\xf0\xb0\xbf\x8e\x13\xa7\x4c\xa6\xe2\xe0\ \x51\xc7\xb5\xb6\xcb\x9f\xe3\xf6\x17\xe4\xa5\x00\xdb\xf6\xec\xa1\ \x20\xc7\x40\x7a\x42\x38\x95\x0d\x9d\x41\x6f\x14\x5d\x19\xe7\x64\ \x59\xc9\xec\x66\x07\xbb\x56\x91\x1f\x6c\x36\x0d\x56\x1b\x48\x16\ \x19\xb3\x1a\x95\x12\x2e\x69\xc9\x2a\x98\xc1\x7d\x8f\x9e\xc2\xde\ \xed\xeb\xd9\xb6\xb9\x98\x6d\x5b\xd7\xd1\xd8\x50\xe7\xe3\x77\xfb\ \x06\x71\x8d\x46\x43\x4e\xfe\x78\x26\x4c\x9a\xce\xd4\x19\x67\x13\ \x1d\x97\x42\xa7\x64\xa3\xbe\x45\xa2\xd3\x6c\xa5\x53\x52\x57\x9c\ \x5a\x6c\x8a\x46\x6f\x55\xf4\x79\x87\x94\x22\xf7\x2b\xa7\xf4\xdd\ \xe6\x5d\x92\x1e\xd9\xcd\x20\xcf\xc5\x42\x05\xd9\xb3\xb6\x67\x96\ \xac\x54\xd6\x34\x73\xa4\xa6\xa9\xbb\x93\xe8\xe5\xdd\xeb\xb4\x1a\ \x12\xe2\x22\xd1\x27\x44\xa1\x8f\x8f\x26\x39\x21\x0a\x7d\x42\xb4\ \x02\xfd\xc4\x68\x75\x5b\xf4\x71\x25\xe5\x78\x93\x29\x72\x24\xfe\ \x26\x57\x2b\x87\x03\xb1\xf8\xec\xc8\xd1\x1a\xde\x33\xce\xe7\xf9\ \xd7\xde\x23\x55\x9f\xc4\x59\x3f\x98\xce\xf9\x67\x9f\x4e\x4e\x76\ \x66\x50\x7f\xd3\xd8\xac\x4c\xfe\xfe\xc4\xef\x38\x5c\x79\x94\x7f\ \xbf\x39\x8f\xd0\xd0\x50\x1e\xb8\xf3\x36\x12\xe2\xbd\x8b\xc2\xb9\ \x72\xd6\x45\x14\xe4\xe5\xf2\xb3\x7b\x1f\xe0\xe0\xa1\xfe\x75\xf3\ \xa2\xc2\x02\xa2\x22\x23\xd9\xbc\x6d\x4f\x0f\xb6\x0e\x16\xc8\x97\ \x02\x6c\x2c\x2d\xe3\xca\x0b\xce\x67\x6c\x52\x44\xd0\x41\xde\x35\ \x9c\x92\x15\x41\xc8\xb1\x02\x54\x56\xb5\x6c\x45\xdb\x06\xab\xcd\ \x8e\x64\x05\xc9\x02\x61\xa1\x5a\x3a\x43\x34\x84\x85\x6a\x18\x93\ \x37\x9d\xdc\xf1\x33\xf8\xd1\x4d\x1a\xaa\x2b\xf7\xb3\xb3\x6c\x3d\ \xdb\xb6\xae\x67\xff\x9e\x6d\x2e\x43\x02\x7d\xb5\xe8\x98\x38\x26\ \x4e\x39\x99\xa2\xc9\x27\x53\x50\x34\x8d\xd0\xf0\x18\x24\xab\x1d\ \xb3\x64\xa3\xbe\x59\x52\x22\x65\x24\x1b\x66\xc9\x8e\x64\x55\x00\ \x6e\xb5\xda\xb1\xda\xec\xd8\x6c\xca\x50\xcb\xee\x94\xe8\xa8\x67\ \x62\x22\x6f\xae\x06\xd9\xab\x4d\xfd\xbe\xe8\xc3\xe4\x8c\xb7\xef\ \xb3\xd9\xed\xd4\x36\xb6\x51\xdb\xd0\xea\xd4\x11\xf5\x5d\xd2\x1c\ \x17\x15\x41\x72\x42\x14\x29\x89\xd1\x24\xc7\x47\x2b\x90\x4f\x88\ \x26\x39\x21\x86\x94\xc4\x68\xf4\x09\x31\xc4\x44\x85\x33\x5a\x6c\ \xb0\x0b\x62\x04\xfd\xf7\xd8\x5d\x2f\x02\x0b\x44\x67\x65\xb3\xd9\ \x31\x77\x76\x62\x96\x2c\xec\xd8\x5d\xc1\xa6\xd2\x9d\x3c\xfb\xef\ \xb7\x29\xc8\x1d\xcb\xc5\x33\xcf\xe4\x92\xf3\xce\x26\xcf\x90\x15\ \xb4\xdf\x96\x95\x99\xc1\x33\x8f\x3d\x4c\xe5\xb1\x2a\xde\x98\xf7\ \x01\x86\xec\x31\xcc\xbe\xfc\x92\xae\xdc\xe7\xee\x6c\x52\xd1\x38\ \xbe\xfb\xe4\x7f\xfc\xe2\x57\x0f\xb1\x62\xcd\x3a\x97\x17\xcc\xc9\ \x27\x9e\x00\xc0\xaa\x0d\x65\x3d\xd8\xea\xb3\x6c\xe7\xaf\x57\x1a\ \x66\x98\xbd\x2f\x39\x31\x21\xef\xdb\xb7\xe7\xb2\xa3\xb2\x95\x8f\ \xd6\x1f\x1d\xb4\xab\x40\x46\x56\xbc\x73\xc7\x24\xa4\xfa\x2b\x74\ \x1a\x19\xad\x1a\xd3\x1d\xa2\x43\x8d\x24\x51\xa2\x4a\xc2\x42\x1c\ \x71\xde\x4a\x74\x89\x23\xca\xc4\x62\x6e\x63\xdf\xce\x2d\x34\xd4\ \x1d\xa3\xa5\x49\xd1\xbf\x9b\x1b\xeb\x69\x6e\x52\xee\xdb\xda\x5a\ \x90\x65\x19\x9d\x2e\x84\xb8\xf8\x44\xe2\x12\x12\x95\xfb\xb8\x44\ \x62\xe2\x13\x89\x8d\x4d\x24\x73\x6c\x3e\x99\xd9\x85\x58\x6d\x72\ \x97\x87\x2d\x59\xec\x48\x56\x3b\x92\xc5\x86\xd9\xc9\xf3\xb6\x58\ \xec\x58\xed\x4a\xc8\xa3\xdd\x6e\x57\x3b\xa1\xee\x02\x00\x76\xbb\ \x97\xb9\x1b\xfa\xcb\xf5\xd0\x8f\x14\xe2\x29\xd7\x83\xe7\xef\xa3\ \xfb\xf3\x5c\xbd\xbf\xc7\xf1\xf4\xf3\x7d\xfd\xe6\xa6\xe8\xfe\x4d\ \x7d\x57\xd3\x2a\xfb\x86\x87\x85\x90\x9c\x10\xdd\x05\x76\x7d\x42\ \x34\xfa\xc4\x58\xf4\x09\xd1\xa4\x24\xc5\xa0\x4f\x88\x21\x29\x3e\ \x7a\xd8\x4b\x39\xbd\x13\xa8\x6d\xdb\xb1\x93\x4e\x73\x67\xff\xc9\ \xc5\x86\x25\xb9\xbb\xef\xec\x76\x98\x54\x34\x9e\x88\x88\x48\x97\ \x8b\xa1\xec\x76\x1b\x9b\x4b\xcb\x94\x15\xce\xde\x50\xc7\xe9\xb3\ \x65\x19\xc6\x15\xe4\x53\x5d\xdb\xc8\x86\x2d\xdb\x59\x57\x52\xca\ \x9a\x8d\x5b\xa9\xad\x6b\x50\xea\x68\x2a\x93\x47\x14\x15\xe4\x71\ \xc9\x79\x67\x31\xeb\xfc\xb3\xc9\x33\x04\x77\x01\xd2\xb1\xea\x1a\ \x56\xad\xd9\xc0\xc4\xa2\x42\x26\x8e\x2f\xf4\xba\x33\x7a\xfa\x1f\ \xcf\xf1\xca\xdc\xff\xf6\x69\xdb\xcf\xff\xe5\x8f\xdc\x30\xfb\x6a\ \x4e\xbc\xf0\x36\xaa\xeb\x1a\xf7\x4b\x26\x63\x7e\xef\xd1\x7d\xb0\ \x41\xfe\x3a\x70\xfb\x47\x2f\xbf\x80\x3e\x25\x9d\x67\xbf\xad\x18\ \x9c\x16\xd4\x0b\x06\x1a\x4d\x37\x0c\xb4\x6a\x2c\xab\x02\x73\x25\ \x4a\x43\xa7\x03\x9d\x4e\x43\x88\x16\x42\xd5\xc7\xa1\x3a\x25\x29\ \x97\x12\x3a\xa8\xc4\x80\x2b\x0b\x7b\x94\xd8\xf0\xee\xe4\x5d\x34\ \x17\xe9\xf1\x00\x00\x20\x00\x49\x44\x41\x54\x60\xb3\x59\x91\xcc\ \x1d\x44\x44\x46\x3b\x15\xbe\x50\x74\x6c\x9b\x5d\x09\x53\xb4\xaa\ \xda\xb6\xc5\x6a\xc7\xa2\xde\x5b\xad\xdd\xcf\xad\x6a\x14\x8a\xd5\ \x6a\xc7\x6a\x97\xbb\x4a\x48\xd9\x65\xe5\xe6\x00\x9d\x92\x42\xba\ \x67\x95\x88\x9e\x1e\xb9\xa7\x89\x4e\xfa\x8d\x58\xf1\x0d\xac\xae\ \x92\xfe\xb8\x02\x6f\x4f\x90\xbb\x84\xba\xa7\x8e\xc7\x4d\x92\x21\ \xaf\xcf\x85\xa3\x43\xd7\x42\x72\x5c\x0c\xfa\xc4\x68\x52\x12\x63\ \x48\x4e\x8c\x21\x25\x31\x96\x94\xc4\x18\xf4\x09\xb1\xa4\x24\xc5\ \xa2\x4f\x8c\x21\x2c\x34\x64\x48\x41\xde\x1b\xe8\xce\xcf\x5d\xed\ \x3b\x9c\x46\x11\xae\x46\x15\xfd\xa5\x51\xee\xdd\x69\x79\xfb\x9b\ \xdc\x7d\xb6\xdd\x2e\xb3\xb7\xc2\xc4\xda\x4d\xa5\xac\x2f\x29\x63\ \xdd\xa6\xad\xd4\xd5\x37\x76\xb5\x95\xf1\xf9\x39\xcc\x3a\xff\x6c\ \x2e\xbd\xe0\x9c\xa0\x42\xbd\xa6\xae\x9e\xba\xfa\x06\xc6\x66\x65\ \x12\x15\xe9\xdd\x62\xa2\x4f\xbf\xfa\x86\xff\x7b\xf4\xf7\x74\x76\ \x9a\xbb\xae\xd3\x55\xdf\x7d\x05\xda\x30\x7e\x38\xe7\x97\x00\x6f\ \x48\x26\xe3\x1d\x83\x0d\xf2\x1b\x80\xff\x3d\xfc\x8b\xdb\xb9\xe6\ \xd2\x4b\x78\x61\xc1\x01\x1a\xda\x2c\x83\x0e\x72\xa7\xfe\xbb\xc7\ \x8f\xd2\x68\x64\xb4\xea\xc5\xad\xd5\xa8\x71\xdf\x3a\x05\xd4\x3a\ \x4d\x37\xdc\xb5\x5a\x15\xf6\x28\xaf\x6b\x35\xea\x4a\x35\x8d\xdc\ \x23\x25\x80\x63\x61\x90\xb2\xfa\x53\xee\x4a\xba\x65\x53\xe3\xcf\ \x1d\x12\x89\xd5\xa6\x40\xdb\x31\x71\x69\xb5\xcb\xd8\x6d\x76\x6c\ \x32\xd8\x6d\x4a\xe5\x16\xbb\x4c\x97\x37\x21\xab\x00\xf7\xec\xd1\ \x7a\x03\x56\xdf\x22\x56\x5c\xc5\xa3\xe3\xd3\xf7\xf5\xec\x38\x5c\ \x7b\xf7\xee\x8e\xcd\xdf\xd1\x44\xff\x32\x8d\xc7\x73\x21\xcb\xc4\ \xc5\x44\x90\x92\xa8\x40\x5d\x9f\x18\xab\xc0\x3e\x29\x16\x7d\x62\ \x2c\xa9\x49\x71\xe8\x13\x63\x89\x8d\x8e\x18\x14\x98\xbb\xba\x1f\ \x49\xf2\x90\x33\x70\x7d\xf9\xad\xbe\xc2\xbc\xbf\x0e\x05\x60\x6f\ \xc5\x41\xd6\x6d\x2a\x65\xfd\xa6\xad\xac\x2b\xd9\x4a\x75\x6d\x1d\ \xb2\x0c\xe3\x0b\x72\xb9\xf4\x82\x1f\x32\xeb\xfc\x1f\x92\xef\xc7\ \x52\x7c\x6f\xcc\x62\xb1\xb8\xcc\x79\xde\x9f\x95\x6d\xdf\xc1\x4f\ \xef\xfe\x25\x87\x8f\x54\x12\x17\x1b\xc3\xee\x92\x35\xbc\xfd\xf1\ \x77\x3c\xfa\xd7\x37\x00\x7e\x2c\x99\x8c\xef\x0f\x36\xc8\xd3\x81\ \xa3\x33\x4f\x3f\x95\xbf\x3e\xf2\x10\x9f\x95\x54\xb1\xf5\x60\x73\ \xd0\x41\xde\x37\x2d\x64\xf7\x63\x45\x97\xeb\x96\x5b\x34\xca\xba\ \x7a\x75\x21\x8f\x0a\x67\x34\x68\xb5\x8a\xd7\xae\x53\x5f\x73\xc8\ \x31\x5a\x4d\x77\xfe\x6c\x8d\xfa\x5a\x6f\x68\x39\x74\x6c\xd9\xc9\ \x2b\xb7\xab\xf9\x5a\x6c\x36\x19\x9b\xac\x82\xdb\x09\xf6\x76\x7b\ \xb7\x6c\x62\xef\xf2\x86\xe5\x2e\x0f\xc3\x5b\x78\xf5\xf6\xb6\xbd\ \x86\x65\xbf\x1e\xf4\x40\x65\x1a\xb9\xdf\x89\x4e\xef\x64\x9a\x60\ \x8c\x26\x5c\x9c\x0b\x57\xc7\xeb\xe1\xf7\x45\x84\x85\x90\xec\x80\ \x7c\x72\x1c\x29\x09\xb1\xa4\x24\xc7\x92\x92\x18\x47\x4a\x92\x72\ \x4b\x4a\x88\x41\xeb\x27\x7d\x5d\xa5\xbe\x1d\xc9\x7a\x7f\xef\xe7\ \x81\x18\x5d\xf8\x9b\xaf\xa7\xe2\xe0\x61\xd6\x95\x28\x50\x5f\x5b\ \xb2\x99\xa3\x55\xb5\x8c\x2f\xc8\x61\xd6\xf9\xe7\x70\xd9\x85\xe7\ \x06\x0d\xea\xde\x5a\x7d\x43\x03\xb7\xdf\xff\x20\x21\x3a\x1d\x1f\ \xbd\xfd\x3a\x77\x3c\xfc\x77\xe6\x2f\x5e\x0b\x90\x21\x99\x8c\xc7\ \x06\x15\xe4\x2a\xcc\xb7\xc7\xc7\xc6\x4e\x58\xf8\xee\x5b\x6c\x32\ \x35\xf3\xd5\xe6\xea\x21\x05\xb9\xe3\x38\x95\x9c\x2c\xdd\x30\xd0\ \x38\x79\xe9\x5d\x90\x57\x33\x19\x6a\x34\xaa\xd7\x4e\xf7\x32\x63\ \x4d\xd7\xc9\x91\xd5\x33\xd4\xed\x35\xcb\x4e\x12\x88\x2c\xcb\x5d\ \x13\x95\xca\x76\x05\xe4\x72\x0f\x78\xd3\x9d\x49\x51\xb6\x77\xc1\ \x47\xb6\xfb\xae\x69\xf7\xef\x6d\xbb\x00\x99\x57\xde\xbd\x3b\x29\ \xc4\x1b\xb0\xfa\xfa\x7d\xde\x7b\xf7\xfe\xc4\xbf\x7b\xce\x05\xed\ \xc5\xf7\xf5\xd3\xd1\xb9\x3a\xf7\x3a\xad\x86\xe4\xf8\x18\x52\x92\ \x15\x2f\x3e\x35\x39\x9e\x94\xc4\x38\x52\x93\x1d\xb0\x8f\x27\x25\ \x29\xae\x5f\x29\x67\x34\x45\x66\x7a\xf2\xc8\x83\xf1\xd9\xde\x9a\ \xe9\x70\x25\xeb\x4a\xb6\xb0\xae\x64\x2b\x6b\x36\x6c\x26\x26\x26\ \x8a\x4b\xcf\x3f\x87\x4b\x2f\x3c\x97\x82\x5c\xc3\x90\x9c\x2f\xab\ \xcd\x46\x69\xf9\x36\xa6\x4d\x9d\xc2\xe4\xf3\x6e\xa5\xa1\xa9\x65\ \x87\x64\x32\x4e\xec\x7b\xfe\x82\x1b\x47\xee\xb0\x25\x4d\x2d\x2d\ \x13\xf6\x1e\x30\x31\x56\x9f\x39\x08\xad\xa5\xdf\x27\x7d\xff\xf8\ \x1e\x99\xf8\x7a\x5e\xa4\x5d\x50\x57\x73\x90\x6b\x6c\x8e\x5c\x2e\ \xdd\x17\xb1\xa6\xc7\xb7\xf4\x84\x81\xa3\xa8\x6d\xb7\xdc\x22\x77\ \x49\x25\x3d\x23\x4f\x7a\xc2\xc0\xee\x4f\xe8\xe0\x00\x4b\x48\xf9\ \xff\x3e\x2f\xbe\x37\x00\x71\xec\xbe\x1e\x6a\xff\x3b\xc8\x6e\x2e\ \x7e\xd9\xfd\xb9\x96\x3d\x87\x6d\xba\x7a\xa3\xcd\x66\xa7\xba\xbe\ \x89\xea\xfa\xa6\x7e\x3a\x45\x65\x5b\x42\x6c\x14\xfa\xa4\x38\x52\ \x93\xe3\x49\x55\x01\x9f\xaa\x57\xef\x93\xe3\x49\x49\x8a\x27\x26\ \x2a\x72\xc4\x81\xdd\x1b\xc0\xfa\x9b\x0d\x32\x90\x11\x3d\x86\xac\ \x4c\x0c\x59\x99\x5c\x7b\xe5\x2c\x00\x0e\x57\x1e\x63\x6d\xc9\x16\ \x5e\x7d\xfb\x7f\xd4\x37\x36\x31\x65\xe2\x78\x2e\xbb\xe0\x5c\x0a\ \xf2\x72\x06\xed\xdc\x85\xe8\x74\x9c\x74\xc2\x54\xb6\xef\x3e\x40\ \x43\x53\x0b\xc0\x92\x01\x7d\xde\x40\x41\x0e\xdc\xb3\xa1\xb4\x8c\ \x1b\xae\xcc\x21\x32\x4c\x47\x87\x64\x1b\x4c\x9a\x7b\x6c\x0c\x0e\ \x7e\x38\xbc\xf1\x1e\x50\x77\xb8\xeb\xb2\x5d\x05\x77\x4f\x28\x78\ \xf2\x96\xed\xf6\x9e\x9e\x9e\xbd\x8f\x66\xdb\x4f\x0c\xba\xec\x1e\ \x42\x81\x29\x21\x15\x9c\x4a\xdf\xfe\xe6\x5b\xf6\x69\x9f\x3e\x5f\ \x23\x7b\xd9\xe9\xf9\xdf\x56\xbc\xef\xe8\x64\xef\x3b\x3a\xd5\x1a\ \x5b\xda\x68\x68\x6e\x63\xcf\x81\x4a\xd5\x49\xd0\x74\xfd\x22\x87\ \xf3\x10\x19\x1e\x86\x3e\x29\x96\xd4\xe4\x04\x52\x93\xe2\xd1\x27\ \xc7\x93\x9a\x14\xaf\x3c\x4f\x8e\x23\x25\x29\x81\xc4\x84\x58\xbf\ \xa5\x9c\x91\x04\xff\x60\x5b\x56\x66\x3a\x73\x32\x2f\x66\xce\xe5\ \x17\x03\x50\x79\xac\x9a\xb5\x25\x9b\x59\xbe\x7a\x1d\xc9\x49\x89\ \x4c\x2e\x1a\x37\x68\x50\x77\x0a\x3b\x1c\x52\x90\x2f\x03\xec\x1b\ \xcb\xca\xb5\x3f\xbe\xf2\x72\xb2\x93\x22\xd8\x7d\xac\x6d\x08\x00\ \x2e\xbb\x94\x7f\xe4\x7e\xa0\xee\xf0\x0c\xba\x81\xee\x10\x05\xfc\ \x1f\x7a\xd3\x67\x42\x46\x76\x33\x80\xf0\x26\xe6\x5b\xf6\xf3\xb4\ \xc8\x81\xbf\x8a\xbc\x78\x9f\x8c\xec\x16\xac\x72\xbf\xfb\xcb\x6e\ \xbe\x62\x60\x71\xec\x83\x4f\x14\xd9\xcb\xaf\x76\x92\x79\x54\xe9\ \xae\xad\xc3\x4c\xdb\x91\x4e\x4c\x47\x6a\xfa\x95\xcd\x74\x5a\x6d\ \x97\x64\x93\xaa\x4f\xe8\x02\x7d\x4a\x72\x02\x69\x7a\xe5\x3e\x25\ \x29\x61\x48\xa3\x72\x46\xa2\x65\xa6\xa7\xf2\xa3\x4b\x2f\xea\x7a\ \x5e\x55\x53\xcb\x8e\xdd\x7b\xd1\x27\x25\x92\x98\x98\x40\x88\x2e\ \x78\x0b\xd6\x8a\x37\x96\x03\xd8\x55\x96\xfa\x6d\x03\xd2\xc8\x01\ \xc2\x0c\xb3\x37\x45\x47\x45\x4e\x5b\xf2\xbf\x77\xb0\xd8\xa1\xd3\ \xa2\x2e\x72\xb1\xcb\x58\xed\x72\xcf\x7b\x9b\xfa\x58\x9d\x14\xb4\ \xd8\x7a\x6d\xb7\x77\xbf\x6e\xb5\xab\xd1\x1f\xea\x36\xab\xcd\xae\ \x14\x83\x70\x8a\x12\xb1\xa8\x11\x22\xce\xdb\xfa\x6a\xa8\xfd\x68\ \xb6\x2e\x2e\x16\x34\x9e\x26\xcb\xe8\x13\x43\xed\x36\x5c\xce\xa7\ \x28\x8d\x60\x46\xac\xb8\x9b\xe8\xc4\xaf\x08\x92\xde\x1d\x9d\xef\ \xf1\xe8\x03\x88\x58\x71\xf5\xfe\x01\x4c\xfa\xfa\xd3\x56\x7a\xce\ \x0f\xf8\x10\xaf\xef\x87\x76\xdf\xff\x7f\xe7\x2a\x1c\x57\x43\x7c\ \x5c\x34\x69\xc9\x09\xaa\x37\x9f\x40\xaa\x3e\x91\xd4\xe4\x04\xd2\ \xf4\x89\xa4\xea\x95\x7b\x5f\xf3\x6f\x0b\x0b\xbc\xd9\xec\x76\x26\ \x9e\x73\x33\x2d\x6d\x1d\x9b\x25\x93\xf1\x24\x97\x80\x1e\x24\x8d\ \x1c\x60\x49\x5b\x7b\xc7\xb4\x1d\x7b\xf7\x31\x69\x5c\x21\x11\xa1\ \x5a\x17\x07\xc3\xa0\x6c\x93\x65\xba\x3a\x00\xab\xda\x59\x58\x9d\ \x60\xaf\x6c\xb3\x2b\x89\xa9\xd4\xd0\x40\x65\xbb\xf2\x9a\xa5\xeb\ \xb1\x1d\x9b\xdd\x69\xbf\xae\x4e\xc3\xa6\x56\x16\xb2\xa9\xfb\xab\ \xf7\x56\x5b\xd7\x3e\x16\x8b\xad\xab\x63\x09\xe4\x88\x43\xee\xe5\ \xe2\x7a\xbd\x34\xdf\x17\x99\x46\xf6\xe5\x68\x7d\x5b\xd2\x3f\xe0\ \xd1\x84\x0f\x23\x33\xdf\x0f\x45\xf6\xe2\xb4\xc8\x1e\x64\x1c\x2f\ \xbf\x58\xf6\xe1\xe0\xfa\x9d\x8a\x70\x37\x3f\x64\xa7\xa1\xb1\x85\ \x86\xc6\x66\x76\xee\x3b\xd8\xef\x24\x75\x54\x44\xb8\x0a\xf6\x44\ \x52\x93\x15\xc0\xa7\xeb\x93\x54\xd0\x27\x91\xaa\x4f\x24\x29\x21\ \x4e\xe4\xca\x09\xa2\x95\xee\xd8\x47\x4b\x5b\xc7\x80\x65\x95\x80\ \x81\x1c\x78\x70\x63\x59\x39\x93\xc6\x15\x0e\xe9\x89\xd1\x68\x94\ \x32\x6b\x8e\xd4\x1d\x83\xd5\x81\xf4\xdb\xa9\x74\x75\x00\xf6\x5e\ \x1d\x82\x23\x55\x6d\xcf\xc7\xca\xe2\x21\x5b\xd7\x22\x22\x8b\x4d\ \x5d\xca\x6f\x73\xac\x0c\xed\x7e\x4d\xb2\xda\x7a\x6e\xb7\xda\xba\ \xdf\x63\xb1\x75\xbd\x2e\x59\xec\xd8\x6c\x36\x9f\x60\xe0\x95\x0e\ \x3c\xd8\x92\x86\x0f\x93\xbe\xb2\xd7\x53\x0e\x3e\x6a\xe1\xfd\x74\ \x3c\x9e\x4b\x7a\xf9\xd9\xd1\x05\x5c\x7c\xee\xde\xa7\xbd\xc3\x4c\ \xc5\xa1\xa3\x4a\xb2\xa6\x7e\x46\x23\x21\x21\xba\x6e\x8f\x5e\x9f\ \x44\xba\x7a\x9f\x96\x92\xa4\x76\x02\x0a\xf0\x43\x43\x84\x94\xe3\ \x8f\xad\xde\x50\xee\xcc\xd0\x21\x07\xf9\x4a\xc0\xba\xb1\xb4\x2c\ \xe4\x96\xd9\x57\x8b\x7f\xc7\xb9\x53\x09\xd1\x12\x1a\xa2\x1d\x26\ \x9d\x8a\x92\x61\xd1\xda\x6b\xf4\xe0\xe8\x1c\x94\x8e\x40\xe9\x18\ \x24\x47\xc7\x60\x53\x12\x7b\x59\xad\xca\x7b\x95\x0e\xc3\xda\xd5\ \x79\x28\x49\xbf\xac\x58\xad\x76\xcc\x16\x6b\x57\x87\x62\xb1\x5a\ \x95\xd7\xd4\xcf\x97\x2c\x56\x24\xab\xf2\xba\xd5\x62\xf3\xd3\x7b\ \xf5\xb3\xe3\xf0\xd4\x85\x79\x9a\x58\x1d\x34\xed\xde\x9b\x04\x2c\ \xc1\x8c\x52\xea\x6b\x56\xab\x95\xca\xaa\x5a\x8e\x1c\xab\xe9\x57\ \x36\xd3\x68\x20\x21\x3e\x8e\xf4\x94\x44\xd2\xf4\x49\x8a\x37\x9f\ \x92\x4c\x7a\x8a\xf2\x38\x2d\x35\x99\x34\x7d\x92\x90\x72\x5c\x98\ \x3a\xd1\x69\x55\x19\x3a\xb4\x20\x97\x4c\xc6\x96\x30\xc3\xec\x0d\ \x5b\xb6\xef\x3c\xcd\x6a\xb3\x11\x1a\x22\x8a\x12\x0c\xcf\x4e\x45\ \xa7\xfe\x37\xa1\x43\xd6\xa9\x38\x58\xd0\x0d\x7c\x47\x67\xd0\x0d\ \x7c\x8b\xb5\x7b\x44\x61\xb1\x58\x91\x1c\xfb\x38\x75\x14\x66\x8b\ \x55\xed\x24\xac\x48\x92\xb5\x7b\x5f\x8b\xb5\xbb\x13\xb1\x2a\xcf\ \x1d\xaf\x4b\x16\x8b\xf2\x1e\x8b\x15\xb3\x64\xe9\xea\x70\x02\x27\ \x7f\xe1\x67\x88\xa5\x1c\xa0\x0e\xcb\x57\xd9\x4c\x76\xd5\x6d\x79\ \x1c\x4d\xf4\xde\xdf\x2e\xcb\xd4\x37\x34\x51\xdf\xd0\xc8\xf6\xdd\ \x15\xdd\xfa\x7e\x2f\xef\x3e\x26\x3a\x8a\x34\x7d\x22\x69\x29\xc9\ \xa4\xa5\x24\x91\x9e\x92\xac\x02\x3f\x99\xb4\x94\x64\xd2\x53\x93\ \x49\x8c\x3f\x7e\xa4\x1c\x8b\xd5\xc6\xfa\x2d\x3b\x01\x36\x48\x26\ \x63\xcb\x70\xf0\xc8\x01\x96\x74\x9a\xcd\xa7\x95\xef\xda\xcd\xb4\ \x49\x13\x82\x0e\x25\x6f\xa1\x31\x9c\x40\x2a\x7e\x47\xf7\x6b\x61\ \xa1\xba\x61\x91\xba\x56\xe9\x54\xac\x6a\xc7\xa1\xde\x3b\x46\x0f\ \xea\x63\x47\x07\xd1\xe3\x66\x55\xb7\x4b\xdd\x9d\x87\x59\xb2\xa8\ \xef\xb1\x74\xed\x67\xb1\x58\x31\x5b\x2c\x48\x52\xf7\x63\x8b\x64\ \x45\xb2\x5a\x30\x9b\xad\x58\xac\x16\x24\x8b\xf2\xd8\x6a\xb3\x7a\ \x37\x9a\xf0\x00\x56\xcf\xf1\xf1\x43\x23\x7f\xb5\xb6\xb5\xd1\xda\ \xd6\xc6\xde\x03\x87\x7a\x1c\x9c\xf3\x44\x6f\x68\xa8\x8e\x54\xbd\ \x02\xf7\xf4\xd4\x64\xd2\xf4\x0e\xc8\xeb\xbb\xee\x53\xf5\x49\x84\ \x8c\x02\x29\x67\x73\xf9\x6e\x3a\x3a\xcd\x01\x91\x55\x02\x09\xf2\ \xa5\xc0\xa3\xeb\xb7\x6c\xed\x03\xf2\x60\x78\x75\xc1\x86\xce\x50\ \x1d\xf3\x68\xfe\x1d\xc3\xb5\x63\x0a\x0b\x0d\x21\x2c\x34\x84\x68\ \x86\x36\x4d\xae\x2c\x2b\x93\xe6\x4a\x87\xe0\xe8\x34\xba\x3b\x05\ \x49\xb2\x74\x77\x0e\x92\x45\xe9\x4c\x24\x2b\x66\x8b\xa4\x6c\x97\ \xd4\x4e\xc3\x62\x51\xf6\x95\xba\xdf\x6f\x96\x24\xa5\x03\xb1\x58\ \x30\x4b\x52\xf7\x67\x4b\x4e\xcf\xcd\x92\xf2\xba\xc5\x82\xd5\xe2\ \xc3\x48\x25\x80\x93\xbe\x16\x8b\x95\xc3\x95\x55\x1c\xae\x3c\xd6\ \xd5\x31\xf4\x8e\xe8\xd1\x68\x20\x39\x31\xc1\x09\xf0\x7a\x32\xd2\ \xd4\xfb\x54\x3d\x69\xa9\x7a\xd2\x53\x53\x88\x8a\x8c\x18\xd6\x6d\ \x6f\xc5\xda\xad\xce\xec\x1c\x78\x5b\xf6\xa5\xa1\xf5\x67\x61\x86\ \xd9\x61\xc0\xd1\xb1\x99\x19\x49\x9f\xbe\xfa\xaf\x61\x0b\x22\xb1\ \x4d\x74\x02\xc2\x3c\x9b\x5d\x96\xb1\x48\xdd\x9d\x80\x33\xf8\x25\ \x75\x84\xe1\xd8\x6e\x96\x24\x24\xc9\x82\xc5\x62\x51\x3a\x18\xc9\ \x31\xca\x90\xd4\x8e\xc4\xe9\xb1\x64\xa1\x53\x92\x94\xcf\x96\x2c\ \x98\x25\x73\xd7\x7b\x94\xcf\x93\x30\x9b\x1d\x8f\x95\xf7\xd9\x6c\ \x56\xaf\x53\x30\x3b\xa7\x71\x88\x8d\x89\x22\x3d\x35\x85\xb4\x54\ \x3d\x19\xa9\x29\xa4\xa7\xe8\x49\x4f\x4b\x21\x3d\x55\x4f\x46\x5a\ \x0a\x69\xa9\x29\x24\x25\xc4\x0f\xd9\x39\x3e\xe3\xea\x7b\xa9\x38\ \x78\xb4\x1e\x25\xbf\x8a\xd4\xbf\xb3\x31\x78\xe1\x87\x48\x26\xa3\ \x14\x66\x98\xfd\xe1\xc1\xca\xa3\x77\x95\xee\xdc\xc5\xd4\xa2\xf1\ \xe2\x6a\x10\x26\x6c\x84\x9a\x56\xa3\x21\x3c\x3c\x8c\xf0\xf0\x30\ \x62\x89\x1a\xd2\x63\xb1\xd9\xed\x7d\x3b\x07\x07\xf8\xd5\x4e\xc4\ \xd1\x99\x98\x2d\x92\xb2\x8f\x64\x51\x3b\x85\xee\xd7\xcd\x66\x89\ \x7d\x07\x4c\xec\xd8\xb5\x97\x4e\xc9\x8c\x24\x59\x00\x99\xc4\x84\ \x78\x92\x12\xe2\x49\x4a\x48\x20\x31\x51\x7d\x9c\x98\x40\x72\x62\ \x02\x09\x09\xf1\x41\x59\x0c\x54\x52\xba\x8b\x8a\x83\x47\x01\x3e\ \x74\x07\xf1\xa1\x90\x56\x00\xe6\x01\x77\xcd\x5f\xb2\x5c\x80\x5c\ \x98\x30\x61\x01\x31\x9d\x56\x4b\x64\x44\x38\x91\x11\xe1\x10\x3b\ \x3a\x7e\xd3\xc7\xf3\x97\x3b\x33\x33\x30\x9d\x6f\xa0\x3e\x48\x32\ \x19\xd7\x00\x7b\x17\xae\x2c\x46\xb2\x58\x44\x0b\x14\x26\x4c\x98\ \xb0\xde\x9c\x94\x2c\x7c\xb1\xa0\x18\x60\xaf\xca\xcc\xe1\x05\x72\ \x47\x0f\xd3\xdc\xda\xca\xaa\x0d\x25\xfd\xee\x30\x5a\xf4\xd8\x91\ \xf8\x3b\x84\x3e\x2e\x4c\xd8\xd0\xda\xc2\x95\x25\x34\x35\xb7\x06\ \xd4\x1b\x0f\x0a\xc8\x01\xf9\xeb\x25\xcb\x04\x64\x87\xe1\xef\x10\ \x26\x4c\xd8\xd0\xda\xc7\xf3\x97\x81\x32\x5b\x3b\x7c\x41\x2e\x99\ \x8c\x15\x40\xf1\xea\x92\x4d\x34\x36\x37\x8b\x7f\x4d\x98\x30\x61\ \xc2\x54\xab\x6f\x6c\x66\x69\xf1\x26\x80\x62\x95\x95\xc3\xd6\x23\ \x07\x98\x67\xb5\xda\xf8\x7e\xf9\x2a\xf1\xcf\x09\x13\x26\x4c\x98\ \x6a\x9f\x7f\xb7\x0a\x8b\xd5\x46\xa0\xbd\xf1\x60\x81\xfc\x23\xc0\ \x3c\x7f\xe9\x32\xf1\xcf\x09\x13\x26\x4c\x98\x6a\xaa\xac\x62\x56\ \x19\x39\xbc\x41\x2e\x99\x8c\x8d\xc0\x57\xdb\xf7\xec\xa3\xe2\xd0\ \x61\xf1\xef\x09\x13\x26\x6c\xd4\x98\xec\x67\xfa\x82\x3d\x15\x87\ \xd9\xba\x7d\x1f\xc0\x57\x2a\x23\x03\x6a\xc1\x4a\x5a\xf0\x0e\x30\ \xe7\xeb\x25\xcb\xb8\xef\x96\x1b\xbb\x36\x0e\xa7\x49\xc8\xd1\xb2\ \x12\x52\xac\xe8\x14\x26\x2c\x30\xd6\xdc\xd2\xca\xd1\xaa\x2a\x8e\ \x55\xd5\x70\xb4\xba\x06\xb3\xd9\x4c\x52\x62\x02\x49\x09\x09\x24\ \x25\x2a\x8b\x86\x92\x93\x12\xfd\xca\xf5\xf2\xf1\xd7\xcb\x9c\xd9\ \x18\x70\x0b\x16\xc8\xbf\x03\x6a\xbf\x5d\xba\x42\x7f\xcf\xcd\x3f\ \x19\xd4\x3a\x83\xa3\x05\x30\x02\x94\xc2\x84\x05\xc6\x6c\x76\x3b\ \xb5\x75\xf5\x1c\xad\xaa\xa1\xaa\xba\x86\xa3\x55\x35\x1c\xad\xae\ \xa6\xaa\xaa\x86\x63\xd5\x35\x54\xd5\xd4\x12\x11\x1e\x46\x4e\x76\ \x16\x13\x8b\x0a\x99\x38\xbe\x90\x1f\x9e\xfe\x03\x32\xd2\x52\x03\ \xf2\xfd\x76\xbb\x8c\xf1\xdb\x15\x00\xb5\x2a\x1b\x47\x06\xc8\x25\ \x93\xd1\x12\x66\x98\xfd\x7e\x55\x6d\xdd\x7d\x1b\x4b\xcb\x39\xe5\ \x84\x29\xa2\x35\x09\x13\x26\x2c\xe0\xd6\x69\x36\x53\x55\x5d\xcb\ \xd1\xea\x1a\x8e\x55\xd7\x2a\x8f\x55\x40\x1f\xab\xae\xe1\x58\x55\ \x35\xd5\xb5\x75\xd8\x6c\x76\x40\x26\x3a\x2a\x92\xf1\x05\x79\x4c\ \x1c\x5f\xc8\x8c\x93\xa6\x32\x61\x5c\x21\x45\x85\x79\x44\x45\x06\ \x2f\x5f\xfa\xea\x8d\xe5\x1c\xad\xaa\x03\x78\x5f\x32\x19\x83\xb2\ \x5a\x32\x98\xf9\x20\xe7\x01\xf7\xcd\x5f\xbc\x4c\x80\x5c\x98\x30\ \x61\x3e\x5b\x63\x53\x33\x47\xab\x6b\xa9\xaa\xa9\xe5\x58\x75\x9d\ \x72\x5f\xa5\x00\xfb\x98\xfa\xb8\xa9\xb9\xa5\xdf\xfa\xb0\x19\x69\ \x29\x4c\x9e\x30\x8e\xa2\x71\xf9\x4c\x2c\x2c\x60\x62\x51\x01\x86\ \xac\x31\x83\x96\xf3\x5c\x56\x6b\xa8\xaa\x93\x9c\x0e\x26\x06\x67\ \x04\xef\xcb\x41\xf9\x6a\x61\x86\xd9\x3b\x22\x23\xc2\x8b\x16\xbe\ \xfb\x16\x91\x11\xe1\x22\x0b\x20\x22\xeb\xa1\x30\x61\x36\x9b\x8d\ \xea\xda\x06\x8e\xd5\xd4\x52\x55\x53\x47\x55\x75\x1d\xc7\x6a\x6a\ \xba\x60\x7d\xb4\xba\x96\xea\x9a\x3a\xcc\x66\xb3\x03\xcd\x4e\x85\ \xae\xfb\x16\x39\x0f\x09\x0d\x61\x5c\x6e\x0e\x13\xc6\xe5\x33\x61\ \x5c\x1e\x13\xc7\x15\x50\x54\x98\x47\x42\x7c\xdc\xa0\xff\xb6\xaa\ \x9a\x5a\xe6\x7f\xbf\x90\xaf\xbf\x5f\xc4\x9f\x7f\xff\x5b\xb2\xb3\ \xb2\x99\x7a\xc1\xad\xb4\x77\x98\x77\x4a\x26\xa3\xcf\xc5\x1a\x06\ \x35\xfb\xa1\x3b\xaf\xbc\xa3\xd3\xfc\xa7\x05\x2b\x8b\xb9\xf2\x82\ \x99\xa2\x05\x0b\x13\x36\xca\xad\xbd\xa3\x93\xaa\x9a\xfa\x2e\x48\ \x57\xd7\xd4\x2b\x5e\x75\x6d\x3d\x55\xd5\xb5\x1c\xab\xa9\xa3\xae\ \xa1\x01\xbb\xcd\x91\x8e\xb6\x57\x61\x71\x47\x0e\xf2\x1e\x5e\x64\ \xf7\xc3\xa4\xc4\x78\x8a\x0a\xf3\x14\x60\x17\xe6\x33\x61\x5c\x3e\ \xf9\x39\xd9\x43\x5a\x6c\xe2\x58\x55\x35\x5f\x2f\x58\xc4\x57\xdf\ \x2e\x60\xc3\xe6\xad\xd8\xed\x36\x66\x9e\x75\x26\xe3\x0b\x0b\xf8\ \xe0\x8b\x25\xb4\x77\x98\x83\xea\x8d\x0f\x06\xc8\xdf\x02\x7e\xff\ \x5f\xe3\x67\xe1\x57\x5c\x70\x2e\x9a\x5e\x03\x00\xe1\xb1\x0a\x6f\ \x5c\xd8\xc8\x30\x59\x96\x69\x68\x6a\x51\x21\x5d\x47\x75\x6d\x3d\ \x55\x35\xf5\x8a\xdc\x51\x53\x4f\x55\xad\xe2\x59\xb7\xb6\xb5\xf7\ \x29\x06\xd1\x3b\x6f\x78\x57\xb1\x67\x37\xa6\xd5\x68\xc8\x35\x64\ \x29\xd0\x56\x6f\x45\x85\x79\xa4\xa5\x24\x0f\x8b\xf3\x51\x79\xac\ \x8a\xaf\xbf\x5f\xc4\xd7\xdf\x2d\x64\xe3\x96\xad\xca\x6f\x94\xbb\ \xbb\xa0\x7b\xef\xb8\x15\xbb\x5d\xe6\xe5\xff\x7e\x06\x4a\xec\xf8\ \x5b\x23\x16\xe4\x92\xc9\x78\x34\xcc\x30\xfb\x4d\xd3\xe1\xca\xbb\ \x16\x17\xaf\xe1\x82\x33\x4f\x17\x57\x84\x30\x61\xc3\xcc\x2c\x56\ \x2b\x35\xb5\x8d\x1c\xab\xad\x57\x00\xed\x80\x74\x6d\x3d\xd5\x2a\ \xb8\x6b\x6a\x1b\xb1\x58\x2d\x4e\x60\x76\xf6\xa0\xbb\x65\x8f\xbe\ \x3d\x80\xc7\x0d\x44\x47\x45\x52\x54\x90\xc3\x84\x71\x79\x14\x15\ \xe4\x52\x54\x98\xcb\xf8\xfc\x5c\x22\xc2\xc3\x86\xd5\x79\x3a\x5c\ \x79\x94\xaf\xbf\x5f\xcc\xd7\xdf\x2d\x64\x73\x59\x39\xb2\x6c\xef\ \x39\x9a\x50\x6d\xda\x94\xc9\x9c\xfe\x83\x19\x7c\xb5\x68\x35\xfb\ \x4c\x95\x00\x6f\x4a\x26\xe3\xd1\x91\xec\x91\x03\xfc\x15\xb8\xfd\ \xcd\x0f\x3f\x0d\x15\x20\x17\x26\x6c\x70\xad\xb5\xad\x83\xea\xba\ \x06\xaa\x6a\x1a\xa8\xaa\x6b\xa0\xba\xb6\x81\xaa\x1a\x07\xb0\x1b\ \xa8\xaa\xa9\xa3\xa1\xb9\x15\xd9\x6e\x77\xef\x41\xcb\xae\x41\x2c\ \xbb\xc2\xb4\xcb\x9a\xcf\xca\xa3\xcc\xf4\x54\x26\x14\xe6\x52\x54\ \x90\x43\x51\x41\x2e\x13\xc6\xe5\x91\x95\x91\x36\x6c\x8b\x2e\x1f\ \x3c\x5c\xc9\xfc\x05\x0a\xbc\xb7\x94\x6f\xef\x35\xb1\xea\xfa\x44\ \xdc\x73\xc7\xcf\x00\x78\xf1\xcd\x4f\x01\x2c\x2a\x03\x83\x6a\x41\ \x07\xb9\x64\x32\x9a\xc2\x0c\xb3\xdf\xdb\xb5\xbf\xe2\xa7\x2b\x37\ \x94\x70\xd6\x8c\x93\xc5\xd5\x25\x4c\xd8\x00\x4d\xa9\x5e\xdf\x4c\ \x75\x5d\x23\x55\xb5\x0d\x54\xd7\x35\x50\x5d\xab\x3e\xae\xad\x57\ \xb6\xd7\xd4\xd3\xd1\x69\x76\x0a\x54\x90\x7b\x3c\xee\x31\x71\xe8\ \x59\x5c\xf1\xe2\xe5\xee\x7d\xc2\x42\x43\x29\xcc\xcb\x66\x7c\x7e\ \x8e\xe2\x6d\x17\xe6\x32\xbe\x20\x87\xb8\x98\xe8\x61\x7f\x6e\x0f\ \x1c\x3c\xcc\xfc\x05\x8b\x99\xbf\x60\x31\x5b\xb7\xed\x70\xea\xd4\ \x64\x8f\xa7\x24\xcf\x90\xcd\xac\x0b\x66\xb2\x68\x55\x09\xdb\x76\ \x55\x00\xbc\x27\x99\x8c\xa6\x11\x0f\x72\xd5\xfe\x0c\xdc\x3c\xf7\ \x03\xa3\x56\x80\x5c\x98\x30\x0f\xce\x8f\x64\xa1\xba\xbe\x89\xea\ \xda\x06\xaa\xeb\x9a\xba\x60\x5d\x53\xd7\xa8\x7a\xd5\x8d\xd4\xd6\ \x37\x76\xc5\x46\x77\x0f\xef\xfb\x56\xa6\xf7\x1a\xc4\xf4\x70\xc2\ \x9d\xde\xe5\xc6\x03\x57\x77\x4e\x4e\x8c\xa7\x28\xdf\x40\x51\x81\ \x81\xa2\xc2\x5c\x8a\xf2\x73\xc8\x1d\x9b\x89\x2e\x08\x65\xd2\x82\ \x65\xfb\x4d\x07\x99\xbf\x60\x09\x5f\x7f\xbf\x98\x6d\x3b\x77\xfb\ \x20\x15\xf5\x7c\xe1\xae\xdb\x7e\x8a\x56\xab\xe5\x85\xb9\x46\x00\ \xbb\xca\xbe\xa0\xdb\xa0\x80\x5c\x32\x19\x77\x87\x19\x66\x7f\x54\ \xba\x73\xd7\xf5\x1b\x4a\xcb\x99\x31\x75\xf2\x80\x3e\x6f\xb4\x4c\ \xac\x89\x15\xa7\xc7\x9f\x35\xb7\xb6\x77\xc1\xb9\x46\xbd\x57\x6e\ \x4d\xd4\xd4\x35\x50\x55\xdb\x48\x53\x4b\x9b\x93\x07\xed\x02\xd2\ \x3d\x64\x8f\x9e\x2c\xe9\x2b\x75\x78\x01\x70\x2f\x43\x8b\x75\x5a\ \x2d\x86\xec\x8c\x2e\x68\x8f\xcf\x37\x50\x54\x90\x83\x3e\x29\x61\ \x44\xfe\x17\xfb\x2a\x4c\x7c\xbd\x60\x09\xf3\x17\x2c\x61\xc7\xee\ \x3d\x3d\x65\x25\xe7\x73\xeb\xea\x5c\xbb\x78\x9e\xa2\xd7\x73\xdd\ \xd5\x57\x50\xbc\xb1\x9c\x92\xd2\x5d\x00\x1f\x49\x26\xe3\xee\x51\ \x03\x72\xd5\x9e\x01\xae\x9b\xfb\xe1\x27\x9a\x19\x53\x27\x07\x3c\ \x1a\x62\xb4\x44\x75\x88\x48\x94\x91\x69\x36\x9b\x9d\xba\xc6\x16\ \x6a\xea\x9b\x14\x28\xd7\x37\x51\x53\xd7\x44\x95\xfa\xd8\x01\xee\ \x4e\x49\x72\x11\xd1\xd1\x7b\xe2\xd0\x7f\x49\xc3\x6b\x99\xc4\xc3\ \xfb\x62\xa2\x23\x19\x9f\x3b\x96\xf1\x05\x63\x15\x60\xe7\x1b\x28\ \xc8\xcd\x26\x3c\x2c\x74\x44\xff\x4f\xbb\xf7\x55\x30\x7f\xe1\x52\ \xe6\x7f\xbf\x84\x5d\xfb\xf6\xf7\xe8\xfd\x7c\x3e\xf7\xbd\xf6\xb9\ \xfd\xe6\x1f\x13\x16\x16\xc6\x0b\x73\x3f\x71\xbc\xf0\xcc\x60\xfd\ \xae\x41\x03\xb9\x64\x32\x96\x85\x19\x66\x7f\xb9\x7e\x4b\xd9\x95\ \xe5\xbb\xf6\x30\xa5\xa8\x50\x5c\xfd\xc2\x46\x84\x75\x9a\x25\x6a\ \xea\x9b\xa9\xae\x6f\xa6\xa6\xae\x49\x7d\xdc\x44\x4d\x9d\x7a\x5f\ \xdf\x44\x7d\x43\x0b\xf6\xde\x51\x0c\xce\x31\xd1\xb2\xec\x2d\x0f\ \x7c\x03\xb2\x2f\xaf\xc9\xae\x3a\x6b\x0d\x99\x69\x7a\xc5\xc3\xce\ \xcb\x66\x5c\xfe\x58\x8a\xf2\x0d\x8c\x49\x4f\x19\x35\xff\xdf\xce\ \x3d\xfb\x15\x78\x2f\x5c\xca\xde\xfd\x07\xfa\x97\x4d\xdc\x0d\x6d\ \xdc\x9d\x4c\x19\x62\xa2\xa3\xb9\xe5\x86\x6b\xd9\x54\xbe\x87\x55\ \xeb\xcb\x00\xbe\x94\x4c\xc6\xb2\x51\x07\x72\xd5\xfe\x04\x5c\xf9\ \xc6\x87\x9f\xf0\xc2\x1f\x7e\x2b\x08\x21\x6c\x48\x4d\x96\xa1\xa9\ \xa5\x9d\x9a\x86\x66\x6a\xea\x1d\x37\xc5\xab\x76\x3c\xaf\xae\x6f\ \xa2\xb5\xad\x93\x3e\x11\x1d\x3d\xf4\x68\x9f\xc4\x54\x9f\x25\x0d\ \xdf\xde\xd7\xff\x84\x5c\x78\x78\x18\x05\x39\x99\x8c\xcb\xcb\x66\ \x7c\xde\x58\x8a\xf2\xc7\x52\x98\x97\x4d\x4c\x54\xe4\xa8\xfb\x6f\ \xb7\xef\xda\xcb\x37\x8b\x96\x31\x7f\xc1\x52\xf6\x9b\x0e\xf6\x91\ \x4d\xbc\xed\xe8\xbc\xdd\xe9\xc6\xeb\x66\x13\x1f\x17\xcb\x0b\x73\ \xff\xe5\xcc\xba\x41\xb3\xa0\x2e\xd1\x77\x65\x61\x86\xd9\xdf\x6b\ \x34\x9a\x0b\x3f\xfc\xd7\xb3\x14\xe6\x1a\x46\xbc\x3c\x22\xb6\x0d\ \x4f\x09\xc6\x6a\xb3\x53\xd7\xd0\x42\x4d\x43\x8b\x02\xe7\x86\x66\ \x6a\x1b\x5a\xa8\xae\x6f\xa6\xb6\xbe\x85\x9a\xfa\x66\x6a\x1b\x9a\ \x91\xac\xb6\x6e\x30\xf6\x88\x89\xee\x1d\x7a\xe7\x0a\xe4\xea\xfe\ \x2e\xf2\x7c\xf4\xab\x69\xbb\x8d\xc1\x96\xbd\x5b\x4c\xe3\xc5\xf7\ \xe9\x13\xe3\x14\x0f\x3b\x37\x9b\xf1\xf9\xd9\x8c\xcb\xcb\x26\x27\ \x2b\x1d\xad\x56\xcb\x68\xb5\xf2\x9d\x7b\x98\xbf\x70\x29\xdf\x2e\ \x5c\xc6\x81\x43\x47\xfa\x39\x97\xbd\xce\xbd\xd7\xff\x5d\xaf\xfd\ \x9d\xfe\xbb\x88\xf0\x30\xd6\x2c\x9c\x4f\x43\x53\x3b\xe7\xdf\xf0\ \x20\xb2\x2c\x2f\x90\x4c\xc6\x8b\x02\x02\xe8\x61\xb2\x44\xdf\xa5\ \x57\x2e\xcb\xf2\x85\x73\x3f\x34\xf2\x97\x47\xfe\x4f\xb8\x85\xc2\ \x7c\xb6\xf6\x0e\x89\x9a\xc6\x16\x05\xc8\x0d\xad\xd4\xaa\xc0\x56\ \x9e\x2b\xb7\xc6\xe6\x56\x94\xc5\x76\xfd\x84\xdb\xc9\x9e\x57\x17\ \x0e\x6c\xe8\xed\xca\x89\xf3\x4d\x0a\xf1\x26\x82\x44\xa7\xd3\x92\ \x9b\x95\xce\xb8\xbc\x31\x8a\xa7\x9d\xab\x40\x3b\x29\x21\xf6\xb8\ \x68\x0b\x65\xdb\x77\x31\x7f\xd1\x72\xbe\x5d\xb8\x0c\xd3\x91\xa3\ \x3d\x3a\x61\x77\x52\x88\xeb\xd7\xe4\x7e\x77\x91\xdd\x7c\xc4\x2f\ \x6e\xbd\x99\xf4\xd4\x14\x9e\x78\xee\x9f\x8e\xf6\xf6\xa7\xc1\x3e\ \x0f\x83\xee\x91\xab\x5e\xf9\x0a\xad\x46\x73\xd6\xa7\xaf\xbd\x88\ \x61\x4c\x66\x40\xbc\xbf\xa1\xf0\x3c\x83\xe1\xc5\x8e\x96\xdf\xe1\ \x9f\x62\x20\xd3\xd0\xd2\x41\x6d\x43\xab\x7a\x6b\xa1\xa6\x51\x7d\ \x5c\xdf\x42\x6d\x63\x2b\xd5\xf5\xcd\x74\x74\x5a\x70\x9b\xa7\xa3\ \x5f\x0f\xda\x69\x79\xb8\x8c\x5b\x2f\xcb\xa5\x47\xee\xd2\x83\xee\ \xd9\x29\xc8\xae\x3c\x3c\xb7\xde\xb6\x2b\x8f\xdd\xb5\x87\x18\x13\ \x1d\xc1\xb8\xdc\x2c\xc6\xe7\x65\x31\x2e\x37\x8b\xc2\xbc\x2c\xf2\ \xc7\x66\x12\x16\x1a\xc2\xf1\x62\xb2\x2c\xb3\x75\xdb\x4e\xbe\x5d\ \xbc\x82\x6f\x16\xad\xe0\x70\xe5\x51\xaf\x46\x3a\xde\xff\x1f\xbd\ \xff\x3b\xf7\x23\x33\x7d\x72\x22\x6b\x16\x7c\x45\x75\x6d\x13\x67\ \xcf\xb9\x1f\xbb\x5d\x5e\x29\x99\x8c\x67\x07\x0c\xd0\xc3\xd8\x23\ \x07\xf8\x93\x5d\x96\xbf\x7b\xeb\xa3\xcf\x78\xe2\x81\x7b\x02\xf0\ \x63\x47\x87\x7c\x30\x9a\x65\x10\xc9\x62\xa3\xae\xa9\x8d\xba\xc6\ \x36\xc5\x8b\x6e\x6c\xa5\xae\xa1\x95\x9a\x86\x36\x6a\x1b\x5b\xa8\ \x6d\x68\xa3\xae\xb1\x15\xab\xcd\xe6\xc6\x83\x76\x93\xa7\xc3\x5f\ \x7d\xb3\x8f\x97\x25\x7b\xe5\x85\x79\xfc\x62\xd9\x87\x83\xeb\x15\ \x35\xa1\xd1\x68\x18\x93\x96\xcc\xb8\xdc\x31\x0a\xb0\x73\xc7\x30\ \x3e\x2f\x8b\xf4\x94\xa4\xe3\x72\x04\x26\xcb\x32\x5b\xca\x77\x30\ \x7f\xd1\x0a\xbe\x5b\xbc\x82\xca\x63\xd5\xf4\x59\xdc\xe4\xe1\xe4\ \xca\x1e\xd6\xf2\xc8\xee\xdc\x6f\x37\x9f\xfd\xe0\x3d\x77\x12\x13\ \x1d\xcd\xe3\xff\x78\x1b\xbb\x7d\x68\xbc\xf1\x21\xf3\xc8\x55\xaf\ \x7c\x43\x48\x88\x6e\xfa\x57\x73\xff\x4d\x7a\x8a\x5e\xe8\xca\x23\ \x78\x5b\x6b\xbb\x99\xda\xc6\x76\x05\xce\x8d\xed\xd4\x36\xb6\x29\ \x5e\x74\x53\x1b\xb5\x8d\xad\xd4\xd6\xb7\xd1\xdc\xd6\xe1\x95\xe7\ \xe4\x49\x0a\x91\xfb\xf1\x5e\x5d\x79\xdb\xfd\x7e\x5f\x3f\x2b\x1d\ \xfb\x7a\x6c\xfd\x7b\xdb\x2e\xbd\x7b\x0f\x11\x2b\xae\xbc\xba\x88\ \xf0\x50\xf2\xb3\x33\x18\x97\x97\x49\x61\x8e\x02\xec\x02\x43\x26\ \x51\x91\xe1\xc7\xb5\x7c\x26\xcb\x32\x25\x5b\xb7\xf1\xed\x92\x95\ \x7c\xb7\x64\x25\x47\xab\x6a\x5c\x9c\x4b\x57\xa3\x97\x81\x8e\xcc\ \xdc\x38\x10\xbd\xbe\x2f\x3f\xd7\xc0\xb2\xaf\x8d\x54\xd5\x34\x70\ \xfa\x95\x77\x63\xb1\xda\x36\x4a\x26\xe3\x8c\xc0\x3a\x77\xc3\xdb\ \x23\x07\x78\xda\x6a\xb5\x7d\x3e\xf7\xc3\x4f\x79\xf4\xde\x9f\x23\ \x6c\xf8\x99\xdd\xae\x48\x1d\x75\x4d\x0a\x9c\xeb\x9b\xda\xa9\x55\ \xbd\xea\xda\xc6\x76\xea\x1a\x5b\xa9\x6d\x6a\xc7\x6c\xb6\x78\xb8\ \x00\x5c\xfb\x41\x5e\x49\xc7\x1e\xf5\xcd\xfe\x5f\x70\xbf\x58\x46\ \xf6\xc2\x69\xf6\x26\xf2\xc4\xfb\xf7\xa5\x24\xc5\x31\x2e\x47\x01\ \x76\x61\x4e\x26\xe3\x72\xc7\x90\x9d\x99\x32\xa8\xa5\x10\x87\x7b\ \x7b\x2b\xd9\xba\x8d\x6f\x16\xaf\xe0\xfb\xa5\xab\xa8\xaa\xa9\xc3\ \xe7\x79\x0c\xd9\xb7\xd8\x6f\xef\xfe\x6a\xd7\xee\xfc\x63\x0f\xfe\ \x92\x10\x9d\x8e\x97\xde\xfa\x14\x8b\xd5\x06\xf0\xf4\x50\x9d\xbb\ \xa1\x04\xf9\x97\xc0\xa6\x4f\xbf\x5b\x78\xd2\x9c\x59\x17\x50\x94\ \x9f\x2b\x5a\xf2\x20\x9a\xd9\x62\x53\xc1\xdc\x4e\x43\x73\x3b\x75\ \x4d\x1d\xd4\x35\xa9\x80\x6e\x6a\xa7\xbe\xa9\x8d\x86\x96\x0e\x75\ \x19\xb8\x27\x2f\x34\x10\x17\x8e\xec\x71\xe5\x9c\xeb\x6e\x40\x1e\ \xe0\x45\xed\x07\xc0\x3d\x0c\xbd\x43\x74\x3a\x72\xc6\xa4\x52\x90\ \x93\xa1\x00\x3b\x27\x93\xc2\x9c\x4c\x12\xe2\xa2\x45\xc3\xeb\x65\ \x36\xbb\x9d\x0d\x9b\xcb\xf9\x76\xc9\x2a\x16\x2c\x5b\x45\x4d\x6d\ \x7d\xdf\xd6\xe0\x29\x83\xa2\xd7\x8e\x80\xec\xbf\xfc\xd5\xcb\x7e\ \x30\xfd\x24\x2e\x3e\xff\x5c\xb6\xed\xaa\xe0\xbd\x4f\x17\x02\x6c\ \x52\x99\x36\x24\x36\x64\xd2\x8a\x2a\xaf\x9c\x0a\xac\x9e\x52\x34\ \x4e\xf3\xce\x3f\x9f\xe9\x33\x8c\x10\xd2\x85\x7f\xdb\x5a\xda\xcd\ \xd4\x37\x77\x50\xdf\xdc\x41\x5d\x53\x07\xf5\xcd\x2a\x9c\x9b\x15\ \xef\xba\xae\xa9\x9d\xb6\x0e\x09\xef\x27\x75\x3c\x65\xc5\x93\xbd\ \x93\x16\x7c\x99\x78\x74\x96\x3d\xbc\xfe\x3e\x6f\xa4\x10\x3c\x86\ \x93\xf9\x32\xd1\x19\x17\x1d\x49\x61\x4e\x06\x05\x86\x74\x0a\x73\ \x32\x29\xcc\xc9\x20\x37\x2b\x8d\xd0\x10\x9d\xa0\xb4\x1b\x78\xaf\ \xdb\x54\xc6\xb7\x8b\x57\xb2\x70\xf9\x1a\xea\xea\x1b\x7c\x6f\x2b\ \x3e\xc9\x58\xbe\xc9\x66\xde\xc8\x34\xdf\x7c\x34\x8f\x13\xa7\x4c\ \xe2\x8a\x5b\x7f\x47\x49\xd9\x6e\x19\x38\x5d\x32\x19\xd7\x06\x1c\ \xd0\x23\x40\x5a\x41\x32\x19\xd7\x86\x19\x66\xcf\x2d\xdb\xb9\xfb\ \xf6\xcf\xbe\x5f\xcc\x8f\x2e\x3e\xdf\x67\x80\x05\xfe\xc4\x0d\xcd\ \x36\x6f\x2f\x80\x86\x16\x33\x8d\x2d\x1d\xd4\x35\x77\xd0\xd0\xdc\ \x41\x5d\x4b\x27\xf5\x2a\xa4\x1b\x9a\x3b\xa8\x6b\x6e\xc7\x62\xb5\ \x7b\x09\x56\x4f\x1e\xb0\x9f\xc3\x54\x0f\x9e\xb7\xe7\xf7\xc9\x41\ \x58\xe9\xe8\x8d\x4c\xd3\xff\xfb\xb5\x1a\x0d\x99\xe9\x49\x0a\xb0\ \x0d\x19\x14\x1a\x32\x28\xc8\xc9\x20\x2d\x39\x5e\x90\xd9\x9b\xb6\ \x6b\xb3\xb1\xa6\xa4\x94\xef\x96\x14\xb3\x70\xc5\x6a\xea\x1b\x9a\ \xbd\xf0\xac\xbd\x6b\x2b\x1e\x47\x72\x2e\xbf\x46\xf6\x42\xad\x73\ \xfd\xca\x95\xb3\x2e\x62\xda\xd4\xc9\xfc\xef\xf3\x45\x94\x94\xed\ \x06\x98\x1b\x0c\x88\x8f\x18\x8f\x5c\xf5\xca\x93\x81\x5d\xf1\x71\ \xb1\xc9\x5f\xbe\xfe\x12\xf1\x71\xb1\xc7\xa5\x47\x6d\xb6\x58\xa9\ \x6f\xe9\xa4\xa1\xb9\x53\xb9\x6f\xe9\x54\xbc\xea\x96\x4e\x1a\x54\ \xef\xba\xa9\xad\xb3\x87\x67\xe1\xb5\x47\xdb\x4f\x56\x3c\x9f\x16\ \xa7\x78\xf2\x68\x7d\xf4\xee\x7d\x9f\xe8\x74\x33\xc1\xe5\x65\x78\ \x5f\xdf\xef\x73\xed\xdd\x47\x84\x85\x92\x37\x36\x8d\x42\x43\x1a\ \x85\x63\x33\x28\x30\xa4\x91\x6f\x48\x27\x72\x98\x15\x3a\x18\xee\ \x66\xb5\xda\x58\xb3\x71\x2b\xdf\x2d\x2d\x66\xe1\xca\xb5\x34\x36\ \x36\xbb\x6c\x2b\x5e\x87\x74\x7a\x3d\xd1\x89\x6f\x93\xd4\xce\xfb\ \xbb\x9d\xe7\x91\x09\x0d\x0d\x61\xc5\xfc\x4f\x89\x8b\x8b\xe7\xcc\ \xab\xef\xa3\xa1\xa9\xa5\x0e\x18\x2f\x99\x8c\x75\xc1\x71\x2c\x47\ \x80\x47\xae\x7a\xe5\x75\x61\x86\xd9\x8f\x34\x35\xb7\xbc\xfe\xfc\ \x9b\xf3\xf8\xc3\xaf\xee\x1e\x55\x8d\x59\x06\x5a\xda\x24\x1a\x5a\ \x3b\xa9\x6f\x31\xd3\xd8\xd2\x49\x43\xab\x0a\x6a\x27\x70\x77\x4a\ \x16\xd7\x0d\xb2\x07\x18\xfd\xf4\x4c\x07\x61\x22\xcf\x1f\x9d\xd1\ \xb7\xb7\xc8\x6e\x9c\x25\x1f\xf4\x75\xb9\xa7\x57\x96\x92\x14\x47\ \xa1\x21\x8d\x82\xb1\xe9\x14\x18\xd2\x28\x34\xa4\x93\x99\x96\x24\ \x26\x20\xfd\x34\x8b\xc5\xca\x6a\x15\xde\x8b\x56\xae\xa3\xb9\xb9\ \xb5\x9f\xb1\x9d\x1c\xe4\xab\xce\x87\xd7\x7c\x98\xe7\xb9\xf5\xc7\ \xd7\x61\xc8\xce\xe2\xc1\x3f\xfe\x9b\x86\xa6\x16\x80\x47\x82\x05\ \x71\x5f\x6c\xb8\xac\x24\x98\x0b\xdc\xf6\xf9\x82\x25\xa7\x5e\x7d\ \xd1\x79\x4c\x9d\x30\x7e\x64\x78\x1c\x36\x3b\x8d\x6d\x92\x22\x77\ \xb4\x9a\x69\x6c\x33\x2b\x90\x6e\x56\xef\x5b\x15\x70\xdb\xec\x76\ \x2f\x3c\x0b\x2f\x86\x94\x7e\xc4\x26\xfb\xdc\xc8\x07\x94\x4d\xcf\ \x07\x10\x7b\x0b\x5e\x3f\xa5\x90\xde\xbb\x85\x86\xe8\x30\x64\xea\ \x29\x18\x9b\x46\xc1\xd8\x54\x0a\x0c\xe9\x14\x8c\x4d\x23\x2e\x66\ \xf4\xe5\x19\x19\x74\x67\xcc\x62\xa1\x78\xfd\x16\xbe\x5f\xb6\x86\ \xc5\x2b\xd7\xd1\xdc\xda\xde\x35\xd2\x71\xf5\xcf\xcb\x3e\xb6\x15\ \xef\x9b\xa1\x7f\x39\x68\xbc\x3d\x96\x94\xe4\x64\x1e\xb8\xfb\x0e\ \x4a\x4a\x77\xf1\xc1\x17\x4b\x00\xd6\xaa\xec\x1a\x72\x1b\x72\x69\ \xc5\x49\x62\x99\x06\x6c\x18\x9f\x97\xab\x7b\xff\xa5\xbf\xa1\xd3\ \x69\x87\x54\xf6\xe8\x30\x5b\x15\x48\xb7\x4a\x34\xb5\x99\xd5\xc7\ \x9d\x34\xb6\x4a\x34\xb6\x2a\xa0\x6e\xe9\xb0\xf4\x33\x59\x36\x40\ \x69\xc2\x6f\x29\x04\x9f\x63\x61\xbd\xcd\x2b\xe2\x5e\xa6\xe9\x3b\ \xbc\xf5\x24\x85\x78\x96\x85\xdc\x1d\x9b\xec\x66\xf4\x02\x71\x31\ \x11\xe4\x67\xa7\x3a\x41\x3b\x0d\x43\xa6\x9e\x10\x9d\x56\x50\x37\ \x40\x66\x96\x2c\xac\x5a\xbf\x85\xef\x97\xae\x66\xc9\xea\x0d\xb4\ \xb6\xb6\xfb\xdd\x56\xdc\x4f\x32\x0f\x70\x35\xae\x5b\xe9\xa5\xef\ \xf1\xf6\x6d\xc7\xdd\xdb\x5e\x7b\xfe\x6f\x5c\x72\xc1\x4c\x2e\xbe\ \xf1\x61\xb6\xed\xaa\xb0\x01\x33\x24\x93\x71\x73\x50\x01\x3d\x52\ \xa4\x15\x27\x89\x65\x73\x98\x61\xf6\x2b\xbb\xf6\x57\xdc\xfb\xfe\ \x97\xdf\x72\xe3\xd5\x97\x06\xe5\x7b\xec\xb2\x4c\x4b\x87\x95\xa6\ \x36\x89\xc6\x36\xa9\xeb\xbe\x51\x85\x75\x63\xab\x99\xc6\x56\x09\ \xc9\x6a\xf3\x9c\xa7\xc3\xd3\xe4\xcc\x60\x4b\x1a\xb2\xbb\x5c\x11\ \xb2\xf7\xce\x4b\x00\x3c\x19\xd9\x83\x14\x12\x08\xcd\x45\x59\x01\ \x99\x48\x41\x56\x0a\xf9\x63\x53\x15\x68\x8f\x4d\x45\x9f\x18\x2b\ \x48\x1b\x04\xeb\x34\x4b\xac\x5c\xb7\x99\xef\x97\xad\x65\xd9\x9a\ \x8d\xb4\xb5\x75\xf4\xfa\xa7\x07\xee\xf5\x7a\x35\xf2\x1c\xc0\xc8\ \xcc\xeb\xf7\xf5\x92\x33\x67\x5d\x30\x93\xcb\x2e\x3a\x9f\x37\xde\ \x9f\xef\x28\xe1\xf6\x4a\xb0\x21\x3e\x22\x3d\x72\xd5\x2b\x8f\x07\ \x76\x45\x47\x45\xa6\x7d\xf9\xc6\x4b\xe8\x93\x12\xdd\x7a\xcf\xbd\ \xb7\x5b\x6c\x76\x9a\xdb\x2d\x34\xb6\x5b\x68\x6a\xb3\xd0\xd4\xde\ \x0d\xeb\xa6\x76\x0b\x8d\x6d\x12\xcd\x6d\x16\xec\xb2\x1d\xbf\x57\ \xf2\x79\x0a\x53\x72\x6e\x04\xae\x32\xe5\xf5\xe3\x59\xf8\x94\x2b\ \xc2\xf9\xfb\x3c\xe5\x8a\x70\x9b\x85\xcf\xdd\xb1\xf9\x3b\x9a\x70\ \x77\x6c\xfe\x8f\x26\xc2\xc3\x43\xc8\x1b\x93\x42\x7e\xb6\x9e\x82\ \xb1\xa9\xe4\x67\xa7\x90\x97\x95\x42\x44\x78\xa8\x20\x6c\x50\xe1\ \x6d\x66\xc5\xda\xcd\x7c\xb7\x6c\x2d\xcb\xd7\x94\xd0\xd1\xd1\x39\ \x34\x6d\xa5\x9f\xb6\xed\x6e\x64\xd6\xff\x04\xba\x6f\x21\xaf\xf1\ \xb1\x71\x2c\x9f\xff\x09\x32\x5a\xce\xfe\xd1\x7d\xb4\xb4\x75\x54\ \xa1\x4c\x70\x36\x05\x1d\xd0\x23\xcd\x23\x57\xbd\xf2\xa6\x30\xc3\ \xec\x87\xda\xda\x3b\xde\xf9\xc7\x6b\x6f\xf3\x97\x47\x1e\xe8\x7a\ \xad\xdd\x6c\xa3\xa9\xdd\xa2\xdc\x3a\xac\x34\xb7\x49\x34\xb6\x5b\ \x68\x56\xb7\x35\xb6\x49\xb4\x9b\x6d\xee\xe1\xe5\xec\x45\x07\x78\ \x22\xcf\xbf\x68\x39\x1f\x72\x45\x78\x90\xa4\xbd\x9a\x4c\x92\x07\ \x7a\xd4\x83\x93\x63\x3b\x25\x31\x86\xbc\xec\x14\xf2\xb3\x53\x28\ \xc8\xd6\x93\x9f\x9d\x42\x66\x6a\xc2\xb0\xad\xb4\x3e\xda\xac\xa3\ \xd3\xcc\xb2\x35\x9b\x58\xb0\x7c\x2d\x2b\xd6\x6e\xa1\xa3\xb3\x33\ \x68\x6d\xc5\xb7\x45\x60\xae\x55\xf7\x3e\x7b\x04\x78\x9e\xe7\xc9\ \xdf\x3e\x48\xaa\x3e\x99\xbb\x1f\x7d\x8e\x16\x25\xd5\xc4\x43\x83\ \x01\xf1\x11\xeb\x91\x3b\x79\xe6\xcb\x81\xb3\x5f\xff\xcb\x13\xcc\ \x38\x71\x0a\xaf\x2d\x3a\x40\x45\x75\x7b\x77\x4f\xed\x4b\xb8\x9d\ \x0b\xad\xab\x7f\xaf\xb0\x1f\xcf\xc0\x93\x8e\xeb\xd6\xbb\x77\xa7\ \x1b\xfa\xeb\xdd\x7b\x08\xa1\xc2\xcf\x90\x2d\x67\x9d\xd1\xe7\xac\ \x81\x9e\xf3\x8a\xf4\xfe\xbe\x10\x9d\x96\xb1\xe9\x89\x14\x64\xeb\ \xc9\xcb\x52\x80\x9d\x9f\xad\x27\x36\x3a\x42\xd0\x74\x90\xad\xad\ \xbd\x93\xe5\x6b\x37\xf1\xfd\xb2\x75\xac\xda\xb0\x85\xce\x4e\xb3\ \xcb\xb6\x12\xfc\x7c\xec\x7e\xb6\x63\x5f\xf2\xc7\xf7\x13\x82\xea\ \xea\x78\xcf\x39\xf3\x34\xde\x7b\xed\x25\x56\x6d\x28\xe3\xda\x3b\ \x9f\x00\x58\x21\x99\x8c\x3f\x1c\x34\x40\x7b\xe9\xbc\x0c\x57\x90\ \x4f\x02\xb6\xe4\x66\x8f\x09\xf9\xf8\x95\x7f\xd2\xd4\x61\xe7\x85\ \x6f\xf7\x23\x59\x6c\x01\x93\x42\x06\xf6\x07\xbb\x9b\x9c\x73\xd7\ \x29\xe0\x73\x81\x00\xdf\x65\x1a\x1f\x27\x3a\xbd\x90\x69\x02\x91\ \x64\x28\x36\x2a\x82\xbc\xac\x64\xf2\xb3\xf4\xe4\x65\x2b\xf7\x63\ \x33\x92\xc4\x04\xe4\x10\x5a\x6b\x7b\x87\xea\x79\xaf\xa3\x78\x43\ \x29\x66\xb3\xe4\x7d\x87\xec\x85\x73\xe3\x9b\x33\xe5\x6e\xa2\x13\ \xff\x56\xe3\x32\xb0\x62\x12\x31\xd1\x91\x2c\xf9\xf2\x63\x52\xf5\ \x7a\xce\xbb\xfe\xff\xd8\x7b\xe0\x88\x15\x38\x51\x32\x19\xb7\x0d\ \x37\x90\x0f\xcb\x44\xc6\x92\xc9\xb8\x2d\xcc\x30\xfb\xf9\x8a\x43\ \x47\x7e\xfd\x8e\xf1\x4b\x6e\xbb\xee\x47\x5c\x36\x2d\x95\x4f\xd7\ \x1f\xf5\x6e\x08\xe6\x95\xf4\xe0\x62\x6b\x40\x52\x73\x04\x63\x72\ \x26\x88\x79\x45\xbc\x78\x9f\xab\x82\x06\xfd\x45\x05\x6a\x34\x1a\ \x32\x53\x62\xc9\xcb\xd2\xab\xe0\x4e\x26\x6f\x4c\x32\xfa\xc4\x18\ \x41\xce\x61\x60\x2d\xad\xed\x2c\x5d\xb3\x89\x85\x2b\xd6\xb3\x7a\ \x63\x19\x66\xc9\xe2\x43\x7b\x1c\xbc\x84\x54\x01\xbf\x30\xfd\x28\ \x26\xf1\xbb\x07\x7f\xc9\x98\x8c\x74\x5e\x7a\xeb\x53\xf6\x1e\x38\ \x02\xf0\xfc\x60\x42\xdc\x17\x1b\xce\x19\xe9\x9f\x04\x6e\x78\xed\ \x7f\x9f\x8c\xb9\xe4\x9c\x33\x39\x75\x5c\x2a\x3b\x8e\xb4\xb2\xe3\ \x48\xf3\xa0\xff\xc1\xde\xb5\xd7\x60\x2e\xc2\xf1\xed\x0d\xbe\x46\ \xac\xf4\xbf\xbf\xfb\x68\x82\x88\xb0\x10\x72\xc7\x24\x91\x3b\x26\ \xa9\x0b\xd8\x39\x63\x92\x88\x08\x3b\x7e\x0a\x1d\x8c\x04\x6b\x6e\ \x6d\x63\xe9\xea\x4d\x2c\x58\xbe\x9e\x35\x9b\xb6\x61\xb1\x58\x02\ \xd8\x1e\x03\x9f\x90\xca\xdb\x4e\xc1\xd3\x52\x7b\xd9\xef\x6b\x50\ \xe6\xd4\xe9\x27\x71\xf3\x75\xb3\x39\x54\x59\xcd\xf3\x6f\x7c\x02\ \x70\x44\x65\xd2\xb0\xb4\x61\x29\xad\x38\x49\x2c\x73\x80\x8f\xa7\ \x4d\x9e\xc0\x9b\x7f\x7b\x92\x0e\x8b\xcc\xb3\x5f\xef\xa5\xad\xc3\ \xe2\x46\x0a\xc1\xb3\x66\xeb\x4b\xad\xc4\xa0\x47\xac\x04\x57\xbb\ \x0f\xd4\xd2\x7c\x7d\x42\x34\x79\x63\x12\xc9\xcd\x4c\x22\x2f\x4b\ \xb9\x65\xea\xe3\xc4\x04\xe4\x30\xb5\xc6\xe6\x56\x05\xde\x2b\x37\ \xb0\x6e\xf3\x36\xac\xaa\x2c\xe9\x5f\x5b\xf1\xf2\xba\xf1\x31\x62\ \xa5\x77\x3b\xf6\x4e\x0a\x09\xfe\x3c\x4f\x44\x78\x18\x8b\x3f\xff\ \x80\xac\x31\x99\xcc\xf9\xf9\x1f\x58\xbf\x65\x07\xc0\x35\x92\xc9\ \xf8\xc9\xa0\x03\x7a\x24\x4b\x2b\x4e\x12\xcb\x27\x61\x86\xd9\xf3\ \x36\x97\xef\xb8\xe9\xe5\x77\x3e\xe0\xfe\x5b\x7f\xc2\x9c\x1f\x64\ \xf2\xdf\x65\x26\x37\xbd\x7e\x30\x96\x90\xfb\x16\xb1\xe2\x95\xac\ \x13\xd4\x61\xaa\xff\xe7\x20\x44\xa7\x25\x2b\x35\x5e\x81\xb6\x13\ \xb8\x63\xa3\xc2\x9d\x1a\x97\x00\xe5\x70\x85\xc8\xb9\x64\x86\x00\ \x00\x1e\x39\x49\x44\x41\x54\xf7\xe2\xe2\x12\x16\xae\xd8\xc8\xfa\ \xad\xdb\xb1\x59\xed\xfd\x57\x54\xf2\xa9\xad\xc8\x3e\x0e\x32\xfd\ \x8b\x6e\xf2\xeb\x3a\xea\xbd\x47\x00\x92\xad\x3d\x7c\xdf\x5d\xe4\ \x8c\xcd\xe6\xcf\xff\x7a\xcf\x01\xf1\x79\x43\x01\xf1\xd1\x22\xad\ \x38\xec\x2e\x60\xfa\xdc\x0f\x3f\x9b\x30\x7d\xca\x24\x4e\x9f\x7e\ \x22\xa7\x14\x24\xb1\x6e\x6f\xbd\x0f\x70\x96\xdd\xaa\x29\xfd\x0f\ \xc9\xbc\x6f\xe4\xbe\xc8\x2d\xb2\x8f\x0d\xcb\xef\x61\xaa\x87\xf7\ \xc5\x46\x85\x93\x9b\x91\x80\x21\x33\x91\xbc\x4c\x05\xdc\x63\xd3\ \xe2\x7b\xac\xaa\x15\xd0\x1e\xde\x56\xdf\xd8\xc2\xe2\xe2\x12\x16\ \xad\xdc\xc8\x86\xd2\x5d\xd8\x9c\x4b\xe5\xf9\xcd\x32\xef\xf2\xb1\ \xfb\x9a\x3f\x5e\x96\xbd\xbd\xa6\x7c\xe5\x70\xe0\x9c\xa2\x99\x67\ \x9f\xc1\xcf\x7f\xfa\x13\x96\xad\xd9\xc2\xbf\xde\xfe\x0c\x60\x87\ \xca\xa0\x61\x6d\xc3\x5a\x5a\x71\x92\x58\x26\x03\xeb\x13\xe3\xe3\ \x22\x3f\x79\xe5\x59\xe2\xe2\x13\x78\xee\xeb\x3d\xd4\x35\x9b\x19\ \xf2\x88\x15\x5f\x64\x1a\x5f\x22\x56\x02\xb8\x98\x06\x0d\x64\x24\ \x45\x93\x93\x99\x48\x4e\x46\x02\xb9\x19\x89\xe4\x8e\x49\x20\x39\ \x3e\xaa\xd7\x30\xce\xd5\xd0\xce\xbb\x6d\xc2\x06\xcf\xea\x1a\x9a\ \x59\x5c\xbc\x89\x85\x2b\x37\x52\x52\xbe\x1b\xbb\xcd\x8e\xdb\xfc\ \xf1\x5e\x47\x90\x0c\x34\x62\x25\x18\x4b\xf3\xf1\x33\x62\xc5\xb7\ \xa5\xf9\xc8\x90\x99\x91\xc6\x02\xe3\x7b\x98\x25\x2b\xe7\xdf\xf0\ \x20\x75\x0d\xcd\x1d\xc0\x29\x92\xc9\x58\x3e\x64\x80\x1e\xc9\xe1\ \x87\xfd\xc0\xfc\x67\xc0\xdc\x93\xa7\x4c\x64\xee\xdf\x9e\xe4\x70\ \x7d\x27\x2f\x7f\xbb\x0f\xbb\x6c\x0f\xfa\x1f\x1c\x98\x10\xaa\xe0\ \xe4\x15\xe9\x7d\xbc\xe1\xa1\x21\x8c\x4d\x8b\x23\x27\x33\x81\x9c\ \xf4\x04\x72\x32\x12\x30\x64\xc4\xf7\x99\x80\x1c\x89\x05\x9c\x8f\ \x67\xab\xa9\x6f\x52\xe1\x5d\xc2\x96\x6d\x7b\xb0\xdb\xed\xc1\x9f\ \xe7\xf1\xa2\xb0\x06\x83\x59\x78\x24\x88\xc5\x24\x42\x42\x42\xf9\ \xec\x9d\x57\x99\x3a\x79\x22\xd7\xfc\xe2\x0f\xac\xdd\xb4\x1d\xe0\ \x36\xc9\x64\x7c\x73\x48\x3d\xed\xd1\xa0\x91\x3b\x9b\x64\x32\xbe\ \x19\x66\x98\x7d\x4e\x49\xd9\xf6\x9b\xfe\x3d\xef\x43\xee\xfb\xe9\ \x0d\x9c\x37\x35\x95\x85\x5b\x8f\x0d\x4e\xee\x85\xa0\x4a\x21\xfe\ \x69\xf7\xc9\x71\x11\x18\x32\xe2\x31\xa4\x27\x60\x48\x8f\x27\x27\ \x23\x81\x8c\xe4\x68\xaf\x2a\x2d\x09\x88\x0f\x7f\xab\xaa\x6d\x60\ \xf1\xea\xcd\x2c\x5a\xb5\x89\xad\xdb\x15\xa7\xc5\xaf\x30\x53\x7f\ \x25\x8d\x80\x64\x29\x0c\x4e\xe1\x91\x40\x17\x93\xf8\xfd\x43\xbf\ \x64\xda\xd4\xc9\xfc\xed\x95\xf7\x1d\x10\x9f\x37\xd4\x10\xf7\xc5\ \x46\x5a\x9c\xd8\x5d\xc0\x8c\x37\xde\x37\x16\x4d\x9f\x3a\x91\x0b\ \xa6\x4d\x65\xcf\xd1\x16\x2a\xaa\xda\xbc\x6f\x58\x01\x9c\x9c\x19\ \xb8\xc9\x5e\x84\x02\x82\x4e\xa7\x25\x2b\x25\x06\x43\x5a\x1c\x86\ \xf4\xf8\xae\x5b\x6c\x54\x98\x80\xf1\x28\xb3\x63\x35\xf5\x2c\x5e\ \xbd\x85\x45\x2b\x37\x51\xba\x6b\xbf\xe2\x35\xf6\x9b\xa4\xcd\x9b\ \x76\x3e\xd0\xdc\xdc\xc1\x49\x48\xe5\x6f\xfe\xf8\x81\x75\x58\xae\ \xdf\x74\xd9\x85\xe7\xf1\xb3\x9f\x5c\xcb\x8a\x75\x5b\x79\xf1\x4d\ \x23\xc0\x4e\x46\x80\x2e\x3e\x22\xa5\x15\x27\x89\x65\x32\xb0\x3e\ \x29\x21\x3e\xf2\x93\xff\x3c\x4b\x44\x64\x2c\xcf\x7d\xbd\x8b\xa6\ \x36\x37\x95\xdc\x7d\x09\xb7\xc3\xcf\xa5\xf9\xbe\xc8\x34\x6e\x86\ \xb7\xd1\x91\xa1\x18\xd2\xe2\x18\x9b\x16\x87\x21\x5d\xb9\xcf\x4e\ \x89\xed\x93\xd6\x77\x38\x55\x37\x12\x36\x30\xab\xac\xae\x67\x71\ \xf1\x66\x16\x15\x6f\xa2\x7c\xd7\x81\x00\x49\x21\xfe\xa6\x71\x70\ \xdd\xb6\xbd\x6f\xc7\xde\x25\xa4\x0a\x7c\x55\x20\xff\x96\xe6\xe7\ \xe5\x64\xf3\xcd\x87\xef\xd0\xd6\x61\xe6\x82\x1b\x1e\xa4\xb6\xbe\ \x69\xc8\x75\x71\x7f\xa4\x95\x11\x07\x72\x15\xe6\xb7\x01\x6f\x9c\ \x72\xc2\x64\x5e\xff\xdb\x13\x1c\xa9\xeb\xe0\x5f\xdf\xee\xc5\x6a\ \xb3\x79\xd4\xb4\x07\x9a\x7b\xc1\x73\xb9\x31\xef\x1a\xa4\x46\xa3\ \x21\x2d\x31\x92\xec\xd4\x38\xc6\xa6\xc5\x2a\xf0\x4e\x8d\x23\x39\ \x3e\x62\xd8\x00\x5a\x80\x3c\x78\x76\xe4\x58\x9d\x2a\x9b\x6c\x66\ \xfb\x5e\x93\x8f\xf0\xf2\x9c\xc6\xc1\xd7\x79\x1e\x4f\xb0\x0c\xde\ \xd2\x7c\x17\xce\x54\xc0\x72\xe9\xbb\x5f\x9a\x1f\x11\x1e\xc6\xd7\ \x1f\xbc\xc9\xb8\xfc\x7c\xae\xbb\xeb\x09\x8a\x37\x96\x03\xdc\x2e\ \x99\x8c\x73\x87\x4b\x3b\x19\x75\x1a\xb9\xb3\x49\x26\xe3\xdc\x30\ \xc3\xec\x73\xd6\x6f\x2d\xbf\xf1\x3f\xef\x7e\xc4\xdd\x37\x5d\xc7\ \x75\x67\x64\xf3\xde\x8a\x03\x4e\x43\x32\x77\x83\xb1\x60\xe6\x4d\ \xee\x1b\x8e\x18\x1e\xaa\x23\x4b\x1f\xc3\xd8\xb4\x18\xb2\x53\xe3\ \x30\xa4\xc6\x92\x95\x1a\x4b\x44\x98\xa8\xb4\x7e\x3c\xd9\xa1\xa3\ \xb5\x2c\x2e\xde\xcc\xe2\xd5\x5b\xd8\xb9\xef\x50\x8f\x6c\x9c\x7d\ \x25\x36\xd9\xbb\x26\x1a\xa0\x79\x1e\xb7\xdf\x17\x94\x35\x0f\xbe\ \x48\x3f\xbe\x5e\xaf\xde\x1d\xef\x33\x8f\x3f\x4c\x51\x61\x01\xcf\ \xbe\xfa\xa1\x03\xe2\xef\x0e\x27\x88\xfb\x62\x23\x79\x2d\xf5\x9d\ \xc0\xf4\x57\xdf\xfd\xb8\xe8\xe4\x29\x13\x39\x75\xda\x14\x2a\xeb\ \xdb\x59\x52\x56\x3d\xe0\x3f\x78\x20\x5a\x60\x62\x4c\x38\xd9\x29\ \xb1\x8c\x4d\x8d\x21\x3b\x35\x96\xec\x94\x58\xd2\x12\x23\xd1\x6a\ \x85\x2b\x7b\x3c\x9a\xe9\x48\x35\x4b\xd6\x6c\x65\xd1\xaa\x2d\xec\ \x3e\x70\xb8\x27\x18\x07\x90\xc6\xc1\x53\x1a\x06\x97\x9f\x29\xfb\ \xbb\x06\xc1\x5f\xe7\x66\xa0\x4e\x51\x00\x3a\xac\x7e\xde\x77\xfd\ \xd5\x97\x73\xed\x55\x97\xb1\x6a\x43\x19\xcf\xbd\xf1\x31\x28\xba\ \xf8\x9d\x23\xb5\x9d\x8d\x48\x69\xc5\x49\x62\x99\x02\xac\xd3\x27\ \x25\x44\x1a\xff\xf3\x2c\x49\x09\x09\xbc\xb6\x70\x2f\x3b\x0f\x37\ \xfb\x10\x92\xe4\x5f\xc8\x96\x4e\xab\x21\x33\x29\x8a\xac\x94\x68\ \xb2\x53\x62\xc9\x4e\x89\x21\x2b\x25\x86\xd8\xa8\x50\xaf\xe5\x88\ \x60\xcb\x1e\x42\x56\x19\x1a\x3b\x70\xb8\x8a\x45\xab\xb7\xb2\x64\ \xf5\x56\xf6\x9a\x2a\xbd\x1c\xea\xbb\x93\x42\x82\x3b\xcf\x33\x6c\ \x0b\x8f\x04\xa9\x98\xc4\xa4\x09\xe3\xf8\x7c\xde\xeb\xb4\xb4\x75\ \x70\xc1\xf5\x0f\x52\x5d\xd7\xd8\x01\xfc\x40\x32\x19\xcb\x86\x1d\ \xa0\x47\xb3\x46\xde\x0b\xe6\xb7\x01\x6f\x9c\x3a\x6d\x0a\xaf\xfd\ \xf5\x0f\x98\x2d\x76\x9e\xfb\x6a\x27\x35\x8d\x9d\x7d\x41\xee\x73\ \x8e\x15\x65\xff\xe8\xf0\x10\xb2\x53\xa2\xc9\xd2\x47\x93\x95\x12\ \x43\xb6\x3e\x9a\xf4\xa4\x28\x42\x43\x86\xb6\xae\xe8\x70\xd8\x26\ \x4c\xb1\xfd\x87\x8e\xb1\x78\x75\x29\x8b\x57\x6f\xa1\xe2\x50\x55\ \x80\x16\xd3\xf8\x90\x57\xc4\xe7\xb5\x0b\xee\x16\xef\x78\xd1\x71\ \xf8\x5c\x79\xc7\xdd\x35\x48\x10\x27\x3a\x7b\x1e\xdb\x98\x8c\x34\ \xbe\x78\xf7\x0d\x52\xf4\xc9\x5c\x7f\xcf\x93\xac\x5a\x5f\x06\xc3\ \x4c\x17\x3f\x2e\x41\xae\xc2\x7c\x1e\x70\xe3\xad\xd7\x5e\xc9\x83\ \x77\xdc\x4c\x75\x53\x27\xcf\x7d\xb1\x93\x4e\x8b\xd5\xed\xcc\x7b\ \x6f\x90\x6b\x34\xa0\x8f\x8b\x20\x4b\x1f\x45\x56\x72\x34\x59\x2a\ \xbc\x13\x63\xc2\x8f\x3b\x40\x0b\x90\x7b\xb6\xbd\xa6\xa3\x2c\x59\ \x53\xca\xe2\xd5\xa5\x1c\x38\x52\xe5\x02\x3e\xde\xc0\xcb\x5f\x90\ \x0f\x5e\xe1\x91\xd1\x52\x4c\x22\x2e\x26\x86\xcf\xde\x79\x95\x71\ \x05\x79\x3c\xfd\xc2\x3b\xfc\xfb\x9d\x2f\x40\xd1\xc5\x6f\x1a\xb6\ \x92\xc9\x68\x9e\xec\x74\x61\x77\x01\x93\xde\xfa\xe8\x8b\x69\xfa\ \xc4\x44\x6e\x99\x73\x39\x37\xcf\xcc\xe5\xf5\x05\x7b\xfa\x95\x05\ \xc3\x42\x34\x64\x26\x47\x93\xa5\x8f\x62\x4c\x72\x34\x59\xc9\x51\ \x8c\x49\x8e\x22\x2c\x54\x27\x80\x25\xac\x5f\xdb\x73\xa0\x92\xc5\ \x6b\xca\x58\xb2\xa6\x94\x83\x95\x35\xf4\x5b\x84\xdb\xeb\x45\x38\ \x03\x98\xc8\xeb\x77\x1d\x8f\xfb\x89\x52\xff\x26\x56\x03\x93\x90\ \xca\xe3\x39\xf0\x2b\x3d\xb4\xe7\xef\x0d\x0d\x09\xe5\x8d\x17\xfe\ \xca\xb8\x82\x3c\x5e\x7d\xf7\x2b\x07\xc4\x37\x33\xc2\xe2\xc5\x47\ \x35\xc8\x25\x93\xb1\x35\xcc\x30\xfb\x12\xa0\xf8\x1f\xaf\xfd\x37\ \x3f\x39\x31\x9e\xcb\xcf\x3f\x9b\x4b\xa7\x67\xf1\xd5\xfa\xc3\x24\ \x44\x87\x31\x26\x39\x8a\xcc\xa4\x48\x15\xdc\x51\xa4\xc4\x45\xa0\ \xd1\x08\x2f\x53\x98\x67\xdb\xb9\xff\x08\x4b\xd7\x96\xb3\x78\x75\ \x29\x47\xaa\xea\x70\xb5\x90\xcb\x7b\xc8\xb8\xc8\xfa\xe7\x23\x58\ \xbd\xce\x1f\xef\xee\x4b\xbc\x1f\x8a\xfb\x07\xeb\x61\x54\x4c\x42\ \xa3\xd1\xf0\xcf\xa7\x1f\xe3\xb4\x19\x27\x61\xfc\x66\x05\x4f\x3d\ \xff\x5f\x80\x7d\xc0\x25\x92\xc9\xd8\x3a\x1a\xda\xe8\xa8\x90\x56\ \x9c\x24\x96\x7c\xa0\x38\x24\x44\x97\xf6\xf2\x1f\x7f\xcb\x99\x33\ \xa6\xd1\x6e\xb6\x12\x15\x1e\x22\xa4\x10\x21\xad\xf8\x64\x3b\xf6\ \x1d\x66\xc9\xda\x32\x96\xae\x29\xa7\xb2\xba\xde\xed\xf0\xdf\xeb\ \x89\x47\xe7\xfd\x7d\x91\x26\x9c\xa5\x05\x3f\xe7\x79\x02\x9b\x4b\ \xdf\xdf\xa4\x70\x7e\x7e\xdf\x00\xb4\x7b\x90\x79\xe4\x57\x77\x71\ \xf7\xcf\x6e\x62\xe9\xea\xcd\xfc\xf4\x81\x3f\x63\xb1\xda\xaa\x80\ \x33\x24\x93\x71\xdf\xb0\x07\xf4\xf1\xa4\x91\xf7\x82\xf9\x34\x60\ \x79\x64\x44\x78\xec\x9b\x7f\x7f\x92\xa9\x13\x0a\x87\x25\xfc\x86\ \x4b\xd4\x89\x80\x78\x77\xfb\xde\xbe\xf7\x30\x4b\xd7\x6d\x63\xc9\ \xda\x32\x8e\xd5\x34\x7a\x0d\x2f\xaf\xeb\x46\x0e\xc3\xa2\xe1\x81\ \x2a\x3c\xd2\xe3\x78\xdd\x74\x1c\xfd\x1f\x5b\x70\x8a\x49\xdc\x78\ \xed\xd5\x3c\xf3\xd8\xaf\xd9\x54\xbe\x87\x6b\xef\xfc\x03\xed\x1d\ \xe6\x16\xe0\x87\x92\xc9\xb8\x79\x44\x78\xda\xc7\x2b\xc8\x55\x98\ \xcf\x04\xbe\x4d\x88\x8b\x0d\x7b\xf7\x85\x3f\x91\x9b\x3d\x46\x78\ \xcf\x02\xe4\x2e\xdb\x74\xf9\x9e\x43\x2c\x5d\xbb\x8d\xa5\xeb\xb6\ \x51\x5d\xd7\xe8\x12\x06\x03\xca\xc2\x17\x94\x89\x4e\x37\x1d\x87\ \x2f\x13\x9d\x5e\xa4\x9b\x75\x19\x20\x30\x42\x22\x56\xce\x3f\xfb\ \x0c\x5e\x7f\xe1\x2f\x54\x1c\x3c\xca\x95\x3f\x7b\x94\x86\xa6\x16\ \x49\x95\x53\x96\x8c\x18\xc9\xe4\x78\x06\xb9\x0a\xf3\x6b\x80\x0f\ \x32\x52\xf5\xda\xf7\x5e\xfc\x33\xe9\x29\x49\x02\xc6\x02\xe4\xd8\ \x65\x99\xb2\x5d\x07\x59\xb6\x7e\x3b\xcb\xd6\x6d\xa7\xa6\xbe\x69\ \x00\xe9\x5f\xfd\x95\x42\x02\x00\xaf\x7e\xa4\x09\xd7\x91\x59\x0c\ \x3c\x62\xc5\xa3\xb7\x1d\xc8\xd1\x04\x03\x8e\x58\x39\x71\xf2\x04\ \x3e\x9c\xfb\x12\x4d\xcd\xed\x5c\x7e\xeb\x6f\x39\x72\xac\xd6\x0e\ \x5c\x2f\x99\x8c\x1f\x8f\x28\xed\xfb\x78\x07\xb9\x0a\xf3\x7b\x80\ \x7f\x15\xe4\x64\xf3\xee\xf3\x4f\x13\x17\x1b\x23\x60\x7c\x1c\x82\ \xdc\x2e\xcb\x6c\xdd\x69\x62\xd9\xba\xed\x2c\x5f\xbf\x83\xda\xc6\ \x96\x01\x4a\x21\x43\x04\x2f\x2f\xa4\x10\x51\x4c\x02\xc6\x66\x65\ \xf0\xc5\xbc\xd7\x08\x09\x09\xe5\xaa\xdb\x1f\x63\xd7\xbe\x43\x00\ \xf7\x4a\x26\xe3\xcb\x23\xad\xed\x0a\x90\x77\xc3\xfc\x8f\xc0\x63\ \x27\x4d\x2e\xe2\x8d\xbf\xfd\x81\x88\xf0\x30\x01\xe3\xe3\x00\xe4\ \x76\xbb\xcc\x96\x9d\x26\x96\xae\xdb\xc6\x8a\x8d\x3b\xa9\x6f\x6c\ \xf5\x12\x26\xfe\x4a\x21\xfe\xc1\xcb\x3b\xef\xde\xdd\xb1\x89\x62\ \x12\xce\xdf\x97\x95\x99\xc1\x47\x73\x5f\x22\x39\x29\x89\xeb\xee\ \x7a\x92\x0d\x5b\x77\x02\x3c\x2d\x99\x8c\x8f\x8f\x44\x7e\x09\x90\ \xf7\x84\xf9\x6b\xc0\x1d\xe7\x9e\x36\x9d\x17\x9f\x7c\x18\x9d\x4e\ \x27\x60\x3c\x0a\x41\x6e\xb3\xd9\xd9\xbc\xc3\xc4\xb2\xf5\x3b\x58\ \xb1\x71\x07\x8d\xcd\xed\x41\x87\xd7\xc0\x23\x56\x3c\x2c\xcd\xf7\ \x37\x62\xc5\x2f\x29\x64\x90\x22\x56\x82\xb4\x34\xdf\x90\x3d\x86\ \x0f\x5e\x7f\x91\xd4\x94\x64\x6e\xfb\xf5\xdf\x58\xb8\x62\x23\xc0\ \xeb\x92\xc9\xf8\xf3\x91\xca\xae\xe3\x6d\x41\x90\x27\xbb\x0b\x48\ \x59\xba\x66\xe3\x55\xbf\xff\xe7\x7f\xf8\xd3\x43\xf7\x08\x10\x8f\ \x12\x88\x5b\x6d\x76\x36\x6d\x3f\xc0\xb2\xf5\x3b\x58\x59\xb2\x8b\ \xe6\x96\xf6\x5e\x30\xe8\xe1\x8e\xb8\x8e\xc9\xf6\x58\x98\xdb\xa9\ \xb2\x8c\x5f\x15\x6d\xf0\x7f\x31\xcd\xf1\x58\x4c\xa2\x9f\x73\xdf\ \xff\x31\xc8\xe4\x19\xb2\xf9\xe0\x8d\x17\x49\x4b\xd1\xf3\xc0\x93\ \x2f\x3b\x20\xfe\x39\xa3\x64\xc1\x8f\xf0\xc8\xbb\xbd\xf2\x08\x60\ \x01\x70\xd6\xed\xd7\x5f\xcd\x83\x3f\xbf\x51\x00\x7a\x84\x82\xdc\ \x62\xb5\x51\xb2\xed\x00\xcb\x37\xec\x64\xe5\xa6\xdd\xb4\xb4\x76\ \xf8\xee\x21\xfa\x12\xd1\x11\x50\x29\x84\xc0\x2e\xcd\x1f\x46\xc5\ \x24\xfa\x14\xfd\x1e\xa4\x62\x12\x05\xb9\x63\xf9\xe0\xf5\x17\x49\ \xd1\x27\xf1\xa7\x97\xde\xe5\xe5\xb7\x3f\x03\x58\x09\x5c\x28\x99\ \x8c\x9d\x23\x1a\xd0\xc2\x23\xef\x69\x92\xc9\xd8\x19\x66\x98\x7d\ \x05\xb0\xe2\x8d\x0f\x3e\x9b\x92\x10\x17\xc3\x6d\xd7\x5f\x85\xb0\ \x91\x61\x16\xab\x8d\x0d\xe5\x15\x2c\xdf\xb0\x8b\xe2\xcd\x7b\x68\ \x6d\xeb\xec\xeb\x61\xfb\xb4\xbc\xdb\xbb\xda\x90\x3e\x7b\xd3\x5e\ \x97\x1b\x0b\x50\x8e\x6d\xb9\xff\xf1\x86\xa7\xa5\xf9\xde\x7d\xb9\ \xec\xc3\x6f\xea\x35\xfa\x09\x40\xba\x81\xfe\xbc\x7b\x87\x8d\x2f\ \xc8\xe5\xfd\xd7\x9e\x27\x39\x29\x91\x7f\xff\xf7\x73\x07\xc4\xcb\ \x80\x2b\x46\x3a\xc4\x85\x47\xee\xde\x33\xcf\x04\x56\x01\xb9\xb7\ \xdf\x70\x35\x0f\xde\x71\xa3\xf0\xb4\x87\xa9\x47\x2e\x59\xac\x6c\ \x28\x3f\xc0\xb2\x0d\x3b\x59\xbd\x65\x2f\xed\xed\x66\x2f\xb3\xf0\ \xe1\x67\xd4\x43\x30\x23\x56\xdc\x4d\x74\xe2\xd5\x44\xde\xa0\x46\ \xac\x0c\xf2\xa4\xaf\xc7\x78\x74\x17\xef\x2f\x2a\xcc\xe3\x7f\xaf\ \x3d\x4f\x52\x42\xbc\xb3\x27\x5e\x01\x9c\x29\x99\x8c\x95\xa3\x02\ \xd0\x62\xb2\xd3\x23\xcc\xbf\x03\xa6\xfc\xe8\xe2\x99\x3c\xf5\xe0\ \x9d\xe8\x74\x3a\x01\xe8\x61\x00\x72\xb3\x64\x65\x7d\x59\x05\xcb\ \x37\xee\x62\xed\xd6\x7d\xb4\x75\x48\xf8\x9b\xb2\xd4\x67\x90\xfb\ \x08\xaf\xde\x32\x8d\xef\x31\xdf\x03\x95\x69\x06\x7b\x69\x3e\x41\ \x8c\x58\xf1\x6d\x69\xfe\xa4\xa2\x42\xde\xfd\xcf\x3f\x89\x8d\x89\ \xe6\xa1\xa7\xff\xc3\x87\x5f\x2e\x71\x78\xe2\x17\x8f\x16\x88\x0b\ \x90\x7b\x07\xf3\x04\xe0\x4b\xe0\xac\x73\x4f\x9b\xce\x3f\x7f\xff\ \x20\x91\x11\x61\x01\x83\xdd\x50\x15\x93\x08\xf4\xb6\xc1\x80\xb8\ \x59\xb2\xb2\xae\x74\x3f\xcb\x37\xee\x66\x4d\xe9\x7e\x3a\x3b\x2d\ \xf8\x57\x08\xc4\x37\x18\x78\x07\xaf\x00\x2c\xcd\x77\xde\x5f\x14\ \x93\x60\xa0\x11\x2b\x53\x27\x8c\x63\xde\x2b\xcf\x12\x1e\x1e\xce\ \x2f\x1e\x79\xd6\x31\xb1\xb9\x52\x95\x53\x1a\x47\x95\x64\x22\x40\ \xee\x15\xcc\x23\x80\xf7\x81\xab\x4e\x9a\x5c\xc4\x7f\x9e\xf9\x6d\ \x8f\x45\x43\xc2\xf3\x0e\x1e\xc8\x3b\xcc\x16\xd6\x95\x56\xb0\x7c\ \xe3\x6e\xd6\x95\x55\x60\x36\x5b\xfa\xc0\xc0\x53\xfe\x78\xbf\x61\ \xe0\x53\xce\x13\x7f\xa5\x10\x51\x4c\x22\x18\x4b\xf3\x4f\x3e\x61\ \x32\x6f\xbf\xf4\x57\xec\x76\x99\x9b\x7f\xf5\x67\x47\x9c\xf8\xe7\ \xc0\x0d\xa3\x51\x13\x17\x20\xf7\x1e\xe6\x3a\xe0\x15\xe0\x8e\x82\ \x9c\x6c\xe6\xfe\xfd\xf7\xa4\xe9\x93\x04\xb4\x83\x00\xf2\xf6\x4e\ \x89\xb5\x5b\x2b\x58\x51\xb2\x87\x0d\xe5\x07\x30\x4b\x56\xb7\x30\ \xf0\x69\xa8\xef\x8b\x87\x38\xe0\xc5\x34\x03\x8d\x58\x09\xd0\xe2\ \x9d\xe3\xac\x98\xc4\xe5\x17\x9d\xcb\x3f\x9e\x7c\x84\x86\xc6\x56\ \x6e\xb8\xf7\x29\xc7\x8a\xcd\xd7\x81\xbb\x24\x93\xd1\x36\x1a\xf9\ \x24\x40\xee\x3b\xd0\xff\x08\x3c\x96\x91\xaa\x67\xee\xdf\x7f\x4f\ \xde\x58\x91\x68\x2b\x10\x20\x6f\xeb\x50\xe0\xbd\xbc\x64\x0f\x1b\ \xb6\x99\xb0\x58\xac\xee\x61\xe0\x53\x16\x3e\x1f\x40\xee\xb5\x14\ \xc2\xf0\xcb\x2b\xe2\xf6\xfc\x78\x23\xd3\x04\x63\x34\xe1\xee\xd8\ \x02\xbf\x34\xff\xbe\x3b\x6e\xe6\x81\x3b\x7f\xca\x3e\x53\x25\x37\ \xdc\xf3\x14\x47\x8e\xd5\xc2\x08\x5e\xb1\x29\x40\x1e\x5c\x98\xdf\ \x03\xbc\x98\x10\x17\xab\x7d\xf5\x2f\x8f\x72\xe2\xc4\x42\x01\x72\ \x3f\x40\xde\xda\x6e\x66\xcd\xd6\x0a\x56\x6c\xda\xcb\xc6\xed\x07\ \xb1\x5a\x6c\x1e\x87\xde\x7d\x61\xe2\x7b\xca\xd2\xe0\x47\xac\x04\ \x63\x69\x3e\x5e\x45\xac\x04\x6e\x34\xc1\x10\x45\xac\xf8\x37\x9a\ \x08\x0d\x0d\xe1\xaf\x8f\xff\x9a\xab\x2f\xbd\x90\x4d\xe5\x7b\xb8\ \xe9\xfe\x3f\xd1\xd0\xd4\x62\x07\xee\x1f\x89\xb9\x53\x04\xc8\x07\ \x0f\xe6\xd7\x00\xef\x46\x46\x84\x87\xbd\xf4\xd4\x43\x9c\x75\xca\ \x34\x01\x72\x2f\xac\xa5\xcd\xcc\x6a\x15\xde\x9b\x77\x1c\xc2\x6a\ \xb5\xb9\x87\x81\x2f\xf0\x72\xde\x7f\x48\x22\x56\x46\x50\x31\x09\ \x5f\x26\x1e\x7d\x92\xb1\x06\xbf\x98\x44\x62\x7c\x2c\xaf\x3e\xfb\ \x47\x66\x4c\x9b\xc2\xd2\xd5\x9b\xb9\xe3\xe1\xbf\xd3\xde\x61\x96\ \x80\x1b\x47\x5a\x16\x43\x01\xf2\xa1\x81\xf9\x4c\xe0\xf3\x90\x10\ \x5d\xec\x9f\x7f\x73\x2f\x57\x5c\x70\x76\x40\xe0\x37\x5c\xa2\x4e\ \x02\x05\xf1\xe6\xb6\x4e\x8a\xb7\x54\xb0\x6a\xd3\x3e\x36\xef\x3c\ \x82\xd5\x66\xc3\xf7\xc9\x32\x7c\x58\x85\xe9\x6f\xc4\x4a\x3f\xde\ \xb2\xc7\xf4\xaf\xa2\x98\xc4\x50\x15\x93\xc8\x1d\x9b\xc5\x9b\x2f\ \x3c\x83\x21\x7b\x0c\xc6\x6f\x56\xf0\x7f\x4f\xfe\x0b\x8b\xd5\xd6\ \x02\x5c\x35\x92\xf2\x89\x0b\x90\x0f\x3d\xcc\xa7\x01\xdf\x6a\x34\ \x9a\xb4\xdf\xdc\x75\x0b\xb7\x5e\x7b\xb9\xf0\xc6\x81\xa6\x56\x05\ \xde\x2b\x37\xed\x63\xeb\xee\x4a\x6c\x36\x3b\x03\x8b\x7a\x70\x0d\ \x03\x5f\x27\xf2\xbc\xae\x2c\x33\xe0\xa5\xf9\xc1\x94\x26\x44\x31\ \x09\x80\x53\xa7\x9f\xc0\x2b\x7f\x7b\x82\xf8\xb8\x58\x5e\x7d\xf7\ \x2b\x9e\x7a\xfe\xbf\xc8\xb2\x5c\x85\x52\x14\x62\xf3\xf1\xc4\x21\ \x01\xf2\xc0\xc0\x3c\x1f\xf8\x1e\xc8\xbf\xfd\xfa\x2b\xf9\xf5\x2f\ \x6e\x42\xab\xd5\x1c\x77\x20\x6f\x68\xe9\x60\xf5\x96\x0a\x56\x6c\ \xda\x4f\xd9\xde\xa3\xd8\x6d\x76\x8f\x52\x88\xa7\xa1\xb7\x27\x58\ \x06\x6f\xa2\x73\xa0\x1a\xb3\x28\x26\x11\xcc\x49\xdf\x39\x57\x5c\ \xcc\x33\xbf\xfb\x15\x5a\xad\x8e\x67\x5e\x9a\xe7\xa8\x76\xbf\x0f\ \xb8\x68\x24\xd4\xd8\x14\x20\x1f\xbe\x30\x4f\x03\xbe\x05\xa6\x9d\ \x76\xf2\x14\x9e\x7d\xfc\x57\xe8\x13\x13\x46\x3d\xc8\xeb\x9b\xdb\ \x29\xde\x72\x80\x55\x5b\x2a\x28\xdf\x7b\x14\xd9\x2e\xfb\x24\x85\ \x78\x3f\xf4\xf6\x75\xe2\xd0\x77\xef\x7e\x68\x97\xe6\xf7\x85\x57\ \xef\x7d\xdd\x83\xf5\xf8\x28\x26\xa1\xd3\x6a\x79\xf0\xee\x5b\xb9\ \xf3\x96\xeb\xa9\xa9\x6f\xe4\x9e\x47\x9f\x67\xd5\xfa\x32\x80\xcd\ \xaa\x27\x5e\x75\x3c\xf2\x47\x80\x3c\xb0\x30\x8f\x41\x89\x35\xbf\ \x31\x25\x29\x81\x67\x1f\xff\x15\xa7\x9e\x34\x65\xd4\x81\xbc\xae\ \x49\x85\xf7\xe6\x0a\xb6\x55\x54\x21\xdb\x65\x02\xb6\xdc\xba\x3f\ \x18\xf8\x12\xb1\xe2\x0b\xbc\x7c\x01\xb9\x28\x26\x31\xa4\xc5\x24\ \xd2\x52\xf5\x3c\xff\xf4\x23\x9c\x32\x6d\x2a\xab\x36\x94\x71\xef\ \xa3\xcf\x3b\xea\xa7\xbe\x8b\x12\x23\xde\x7a\xbc\xb2\x47\x80\x3c\ \x38\x40\xbf\x0d\x78\x49\xab\xd5\x44\xde\x73\xf3\x35\xdc\x73\xcb\ \xb5\xe8\x74\x9a\x11\x0d\xf2\xda\xc6\x36\x8a\xb7\x1e\x60\xd5\x96\ \x03\xec\x3c\x50\xad\xc2\x3b\x40\x05\x02\xbc\x96\x42\x06\x1a\xb1\ \xe2\x7e\x69\x7e\xa0\xf3\x8a\x88\x62\x12\x81\x2b\x26\x71\xde\x99\ \x3f\xe0\xaf\x7f\x78\x88\xf8\xd8\x58\x9e\x7b\xfd\x23\x9e\x7b\xe3\ \x63\xec\x76\xb9\x03\xb8\x4f\x32\x19\xe7\x1e\xef\xcc\x11\x20\x0f\ \x1e\xcc\xa7\x00\x1f\x01\x45\xa7\x4e\x9b\xcc\x3f\x7f\xff\x2b\x52\ \x92\x13\xdd\x82\x33\xd0\x30\x1e\xe8\x67\x55\xd7\xb7\x52\x5c\x6a\ \xa2\x78\xcb\x01\x76\x1f\xac\x41\xb6\xfb\x36\x79\xe5\x76\x38\xee\ \x97\x14\xe2\x6f\xc4\xca\x00\x2a\xcb\x0c\xb7\xa5\xf9\xfe\x6a\xcc\ \x83\xb1\x34\xdf\xdf\x88\x15\x37\x1d\x64\x68\xa8\x8e\xdf\xde\xff\ \x73\x6e\xb9\xee\x2a\xaa\x6a\x1b\xb8\xf7\xd1\xe7\x29\xde\x58\x0e\ \xb0\x13\xb8\x56\x32\x19\xcb\x04\x6d\x04\xc8\x83\x0d\xf3\x68\xe0\ \x3f\xc0\x8d\xc9\x89\xf1\x3c\xfb\xf8\x2f\x39\x63\xfa\x09\xc3\xda\ \xf3\x3e\x56\xd7\xca\xea\x52\x13\xab\x4b\x4d\xec\x39\x58\xeb\x47\ \x14\x82\x97\xf0\xf2\x17\x96\x01\xf2\x96\xbd\xeb\x14\x40\x14\x93\ \x70\xdd\xd1\x0d\x46\x31\x89\x9c\xac\x4c\x5e\x7a\xe6\x77\x4c\x1c\ \x5f\xc0\x8a\x75\x5b\xb9\xf7\xb1\x17\xa8\xad\x6f\x72\x48\x29\x77\ \x4a\x26\x63\x9b\xa0\x8c\x00\xf9\x90\x48\x2d\x77\xde\x38\x9b\xfb\ \x7f\x76\x1d\x21\x3a\xed\xb0\x01\xf9\xb1\xba\x16\x8a\x4b\x0f\xb2\ \x66\xab\x89\xbd\x47\xea\xfc\x5c\x4c\xe3\xa3\x14\xe2\x8b\xb7\x3d\ \xdc\x96\xe6\x0f\xa3\xbc\x22\xde\x4a\x21\xbe\x7a\xf7\x9e\xa4\x90\ \x60\x4f\xfa\x5e\x75\xc9\x4c\x9e\x7a\xf8\x3e\xc2\x23\xc2\x79\xf6\ \xd5\x0f\x79\xf1\x4d\xa3\x90\x52\x04\xc8\x87\x05\xcc\x27\x03\x1f\ \x03\x45\x33\x4e\x98\xc8\x0b\x4f\x3c\x40\xaa\x9a\x74\x6b\x28\x40\ \x7e\xa4\xa6\x99\x35\x65\x87\x28\xde\x7a\x90\x03\x47\xeb\xbd\x82\ \xd7\x40\x97\x5b\xbb\x06\xb9\xbf\x32\xcd\x68\x8a\x58\x11\xc5\x24\ \x1c\x9f\x18\x19\x11\xce\x53\x0f\xdf\xcb\xd5\xb3\xce\xa7\xaa\xa6\ \x9e\xbb\x7e\xf7\x1c\x6b\x37\x6d\x77\x48\x29\xd7\x48\x26\x63\xb9\ \xa0\x89\x00\xf9\x70\x90\x5a\x5e\x01\x6e\x4a\x4a\x88\xe3\xd9\xc7\ \x7f\xc9\x59\xa7\x9c\x38\x68\x20\x3f\x5c\xdd\xcc\x9a\xf2\x43\xac\ \x29\x3d\x88\xe9\x58\x63\x1f\x0f\xd3\x93\x14\x12\xf4\x02\x01\x7d\ \xc0\x3a\x52\x96\xe6\xf7\x85\x97\x27\xed\x5e\x14\x93\xe8\xfb\x7d\ \x13\xc6\xe5\xf1\xe2\xd3\xbf\x23\x77\xec\x18\x96\xad\xd9\xc2\x7d\ \x8f\xbf\x40\x5d\x43\x33\xc0\x3c\x94\xa8\x14\x21\xa5\x08\x90\x0f\ \x2b\xa0\xff\x0c\xf8\x97\x46\xa3\x89\xfc\xc5\x8d\x57\xf3\xc0\x6d\ \xd7\x07\xad\xf2\xd0\xc1\xaa\x26\xd6\x96\x1f\x62\x75\xe9\x21\x0e\ \x55\x37\xf9\x78\x71\x0e\x42\x81\x80\x00\xc9\x34\xa2\x98\x84\x37\ \xc7\x36\x3c\x8b\x49\x84\x85\x84\x70\xd7\xad\xd7\xf1\x8b\x9b\xae\ \x45\xa3\xd5\xf0\xf7\x57\x3e\xe0\x5f\x6f\x7f\x86\x2c\xcb\x1d\xc0\ \xbd\x92\xc9\xf8\xa6\xa0\x86\x00\xf9\x70\x96\x5a\x3e\x02\x26\x4c\ \x9f\x3a\x81\x7f\x3c\x7e\x3f\xd9\x19\xa9\x01\x81\xb8\xe9\x58\x13\ \x6b\xb7\x1d\x62\x4d\xd9\x21\x8e\xd4\xb4\xf8\xaf\x31\x0f\x60\xb9\ \xb5\xd7\xf0\x0a\xd0\xd2\xfc\xe0\x15\x93\x08\xc2\xd2\x7c\x10\xc5\ \x24\xd4\xed\xa7\x9d\x3c\x95\xa7\x7e\x73\x1f\x39\xd9\x99\x1c\xaa\ \xac\xe6\xbe\xc7\x5f\x64\xfd\x96\x1d\x00\x3b\x50\xa2\x52\x84\x94\ \x22\x40\x3e\x72\xa4\x96\xc8\x88\x70\xee\xb9\x65\x0e\xb7\x5f\x7f\ \x05\xa1\xa1\x21\x3e\x83\xfc\xc0\xd1\x46\xd6\x6c\x3b\xc2\xda\xb2\ \x43\x1c\xad\x6b\x71\x33\xbc\xf5\x01\x06\x3e\x4b\x13\xc3\x34\x62\ \x45\x14\x93\x18\x76\xc5\x24\x12\x13\x62\x79\xe4\xbe\xdb\xf9\xd1\ \xac\xf3\xb0\x58\xac\xfc\xe7\xdd\x2f\x79\xfe\x8d\x4f\xe8\xe8\x34\ \x0b\x29\x45\x80\x7c\xc4\x02\x7d\x0e\xf0\x3c\x30\x26\xdf\x30\x86\ \x27\xff\xef\x0e\x4e\x3b\x79\x8a\x47\x90\xef\xaf\x6c\x60\xed\xb6\ \x23\xac\xdb\x76\x84\xaa\xfa\x56\x2f\xa5\x09\x5f\xa5\x10\x6f\xbc\ \x50\xdf\x63\xbe\x07\xb6\x34\x3f\xb0\xde\xbd\x28\x26\x11\xe8\xd1\ \x84\xbb\x63\x93\xb9\xfa\x92\xf3\xf8\xed\xfd\xb7\x93\x10\x1f\xcb\ \xaa\x0d\x65\xfc\xee\x2f\xaf\xb3\xf7\xc0\x11\x80\x23\xc0\xaf\x24\ \x93\xf1\x13\x41\x05\x01\xf2\x91\x0a\xf3\x18\xe0\x0f\xc0\xaf\x80\ \x90\xcb\xcf\x3f\x93\x47\xef\xff\x29\xa9\x4e\x8b\x88\x7a\xc3\xbb\ \xba\xb1\x9d\xc0\x2c\xa6\x09\x7e\xc4\x4a\x60\x65\x1a\x51\x4c\x62\ \x24\x16\x93\xc8\x19\x9b\xc9\x53\x0f\xdf\xcd\xa9\x27\x4d\xa5\xaa\ \xb6\x81\x27\x9f\x7b\x9b\xcf\xbf\x5b\x05\x60\x55\x1d\x99\x27\x8f\ \xe7\x65\xf6\x02\xe4\xa3\x0b\xe8\x93\x80\x7f\x03\x67\xc7\x44\x47\ \xf2\xc0\xed\x37\x70\xf3\x9c\x4b\xd0\x69\xb5\x7c\xbb\x76\x1f\xef\ \x2f\xda\x86\xd5\x66\xf7\x98\x57\x64\x58\x14\x08\xf0\x65\xe2\xd1\ \xab\xd1\x84\x87\x8e\x43\x14\x93\xf0\xe2\xbf\x1b\xfc\x62\x12\x21\ \xa1\x3a\x7e\x71\xe3\x6c\xee\xbc\xe5\x5a\x74\x3a\x1d\x6f\x7d\xf8\ \x2d\x7f\x7f\xe5\x7d\x5a\xda\x3a\x00\x56\x00\x77\x4b\x26\xe3\x36\ \x71\xf5\x0b\x90\x8f\x46\xa0\xdf\x04\xfc\x1d\x48\x9b\x58\x98\xcb\ \x53\xbf\xbe\x83\x93\x26\x8f\xa7\xba\xa1\x8d\xf7\x17\x6d\x63\xed\ \xb6\x23\x03\x18\xde\x06\xb7\x40\x80\x5f\x11\x2b\x23\xa8\x98\x44\ \xef\x4e\xa1\x7f\x90\x8b\x62\x12\xa7\x4d\x9f\xca\xe3\x0f\xfc\x9c\ \xfc\x9c\x6c\x4a\x4a\x77\xf1\xc8\x5f\x5e\x67\xdb\xae\x0a\x80\x2a\ \xe0\x21\xc9\x64\x9c\x27\xae\x76\x01\xf2\xd1\x0e\xf3\x78\xe0\x69\ \xe0\x2e\x8d\x46\xa3\xbb\xf6\xb2\x99\xfc\xe6\xee\x9b\x48\x8c\x8f\ \x65\xf7\xa1\x7a\xe6\x7d\x57\xca\x9e\x43\xf5\x04\x26\x8e\xd7\x1b\ \xb0\x0e\xf6\xd2\x7c\x44\x31\x89\xc1\x2c\x26\x11\x80\xa5\xf9\x8e\ \x6d\x93\xc6\xe7\xf1\xe0\x9d\x37\x73\xc6\x8c\x13\x69\x68\x6a\xe1\ \xe9\x17\xe7\xf1\xc1\x17\x4b\x90\x65\xd9\x86\x32\xc1\xff\x98\x64\ \x32\x36\x89\xab\x5c\x80\xfc\x78\x02\xfa\x34\x55\x6e\x39\x35\x31\ \x3e\x96\xdf\xdc\x75\x23\xd7\x5e\x7e\x1e\x1a\x8d\x86\xb5\xdb\x0e\ \xf3\xfe\x82\x72\x8e\x35\xb4\x0d\xb0\x20\x81\x8f\xf0\x1a\x80\x14\ \x22\x8a\x49\x40\xa0\x22\x48\x86\x5b\x31\x09\x43\x56\x26\x0f\xfc\ \xfc\xc7\x5c\x74\xce\xe9\x00\xbc\xff\xc5\x62\xfe\xf4\xe2\xbb\x34\ \x34\xb5\x00\xac\x55\x65\x94\xcd\xe2\xaa\x16\x20\x3f\x5e\x61\xae\ \x01\x6e\x03\xfe\x02\x24\x4f\x9b\x34\x8e\xa7\x1f\xfe\x39\x93\xc6\ \xe5\x62\xb5\xd9\xf9\x6e\xed\x3e\x8c\xcb\x76\xd0\xd6\x61\x1e\xf4\ \x89\xce\xc1\x8d\x58\x11\xc5\x24\x86\xac\x98\x84\x9b\x4e\x28\x2d\ \x25\x89\x7b\x6e\xbd\x8e\xd9\xb3\x66\xa2\xd3\xe9\xd8\xb6\xab\x82\ \x47\xfe\xfc\x1a\x25\x65\xbb\x01\xea\x80\x47\x80\xb9\x92\xc9\x28\ \x00\x21\x40\x2e\x2c\xcc\x30\x3b\x59\x85\xf9\x6d\x3a\xad\x56\x73\ \xfd\x95\x17\x70\xcf\x2d\x3f\x22\x33\x4d\x4f\x6b\x87\x84\x71\xe9\ \x0e\xbe\x5f\xb7\x0f\x8b\xd5\x1a\x00\x90\x0f\xc1\xd2\x7c\x51\x4c\ \x82\x81\xc5\xa3\x0f\x6e\xc4\x4a\x5c\x5c\x0c\x3f\xff\xc9\xd5\xdc\ \x38\xfb\x52\xc2\xc3\x42\x39\x72\xac\x96\x97\xde\xfa\x94\xf7\x3e\ \x5d\x88\xcd\x6e\x97\x81\xb9\xc0\x23\x92\xc9\x58\x27\xae\x5e\x01\ \x72\x61\x7d\x81\x7e\x2a\xf0\x32\x70\x52\x48\x88\x8e\xab\x2f\xfe\ \x21\x77\xdf\x74\x35\xb9\x63\x33\x69\x6a\xeb\xe4\xeb\xe2\xdd\x7c\ \xbf\x76\x2f\x1d\x9d\x96\x61\x55\x20\x40\x14\x93\x18\x1d\x4b\xf3\ \x23\xc3\xc3\xb9\xf9\x9a\x4b\xb9\xed\xc7\x57\x11\x1b\x1d\xc5\x7e\ \x53\x25\x2f\xbd\xfd\x19\x9f\x7e\xb3\x1c\x8b\xd5\x06\xb0\x09\xb8\ \x47\x32\x19\xd7\x8a\xab\x55\x80\x5c\x98\x67\xb9\xe5\x0a\xe0\x31\ \x60\xba\x56\xab\x61\xd6\xcc\xd3\xb9\xf7\xa7\xb3\x99\x50\x60\xa0\ \xbd\xd3\xc2\x77\x6b\xf6\xf0\xf5\xea\xdd\x34\xb5\x74\x32\xb0\x28\ \x04\x51\x4c\x42\x14\x93\x90\x89\x8c\x8c\x60\xce\xa5\x33\xb9\xe3\ \x27\x57\xa3\x4f\x4a\x60\xc7\x1e\x13\x2f\xbc\x69\xe4\xeb\x45\xab\ \x51\x1c\x70\x36\xa2\x4c\xd0\x7f\x29\x64\x14\x01\x72\x61\xbe\x43\ \xfd\x22\xe0\x51\xe0\x2c\x8d\x46\xc3\x79\x67\x9c\xcc\xbd\xb7\xce\ \x61\xda\xa4\x42\x2c\x56\x1b\x8b\x36\xec\xe7\x8b\x15\x3b\xa8\x69\ \x68\x1d\x21\x11\x2b\xc3\xb8\x98\x44\x50\x96\xe6\xbb\x03\xeb\xd0\ \x17\x93\xc8\x4c\x4b\xe1\xc6\xd9\x97\x30\xfb\xd2\x99\xc4\x46\x47\ \xb1\xa9\x7c\x0f\x2f\xcc\xfd\x84\x45\x2b\x4b\x1c\x9f\xb1\x12\xf8\ \x93\x64\x32\x7e\x2f\xae\x46\x01\x72\x61\x03\x07\xfa\xd9\x2a\xd0\ \x2f\x04\x38\x63\xc6\x14\xee\xbb\x75\x0e\xa7\x9f\x3c\x19\x9b\x5d\ \x66\xe5\xe6\x03\x7c\xba\x6c\x3b\x87\xaa\x1a\xbd\x94\x26\x82\x59\ \x4c\x22\x18\x31\xcd\x88\x62\x12\x7e\x7b\xf7\x7d\xf3\xc7\x9f\x38\ \x69\x1c\xb7\x5c\x73\x29\xe7\x9d\x75\x0a\x3a\xad\x96\xe2\x8d\xe5\ \xbc\x30\xf7\x13\x47\xe5\x7a\x80\x05\x2a\xc0\x57\x88\xab\x4f\x80\ \x5c\x58\xe0\x81\x3e\x43\x05\xfa\x15\x80\xe6\xe4\x29\xe3\xb9\xef\ \xd6\xd9\xcc\x3c\xe3\x64\x64\x19\x36\x6c\x3f\xc4\x97\x2b\x77\xb2\ \x6d\x5f\x95\x28\x26\x11\xe8\x88\x95\x41\x5a\x9a\x1f\xac\x88\x15\ \x9d\x56\xcb\x45\xe7\x9c\xca\x2d\x73\x66\x31\xb9\x28\x1f\x80\x45\ \xab\x4a\x78\x61\xae\x91\x92\xd2\x5d\x8e\x37\x7d\xa9\x02\x7c\x83\ \xb8\xda\x04\xc8\x85\x05\x1f\xe8\x53\x80\xdf\x01\xd7\x02\xda\x49\ \xe3\x72\xb9\xf7\xa7\x3f\x62\xd6\xcc\xd3\xd0\x6a\x35\x54\xd6\x34\ \xb3\x60\xdd\x5e\x96\x6c\xd8\x47\x53\x6b\x47\xff\x30\x10\xc5\x24\ \x3c\x4a\x21\x23\xbd\x98\x44\x5c\x6c\x34\xd7\x5c\x76\x1e\x3f\xbe\ \xea\x42\xd2\x52\x92\xb0\xdb\x65\xe6\x2f\x59\xc3\x8b\x6f\x7e\xea\ \x58\x8d\x69\x47\x49\xbd\xfc\x8c\x28\x7a\x2c\x40\x2e\x6c\x68\x80\ \x3e\x0e\xf8\x2d\xf0\x13\x20\x34\xdf\x90\xc9\x5d\x37\x5d\xcd\xe5\ \x17\x9c\x41\x54\x64\x38\x36\x9b\x9d\xf5\xdb\x0f\xf1\xfd\xda\xdd\ \x6c\xde\x79\x14\x59\xb6\x0f\xa3\x62\x12\xc1\x58\x9a\xef\x59\xbb\ \x3f\x5e\x8a\x49\x4c\x1a\x9f\xcb\xec\x4b\xce\xe1\x8a\x0b\xcf\x22\ \x22\x3c\x9c\xf6\x0e\x33\x5f\x2e\x28\xe6\xe5\xff\x7e\xc6\x3e\x53\ \x25\x80\x05\x78\x0f\xf8\xb3\x64\x32\xee\x16\x57\x93\x00\xb9\xb0\ \xa1\x07\xba\x01\xf8\x0d\xf0\x33\x20\x3c\x2a\x32\x9c\x59\xe7\x9e\ \xc6\x9c\xcb\xce\xe1\xf4\x93\x27\xa3\xd5\x6a\xa8\x6e\x68\x65\xe1\ \xda\x3d\x2c\x5a\xb7\x97\x9a\xc6\x56\x86\x2e\x62\x45\x14\x93\x08\ \x56\x31\x09\xc3\x98\x34\x66\xcd\x3c\x8d\x59\xe7\x9d\x4e\x4e\x56\ \x06\x76\xbb\xcc\xea\x8d\xe5\x7c\x3c\x7f\x19\xf3\x17\xaf\xa1\xbd\ \xc3\x0c\x60\x06\xde\x04\xfe\x2a\x99\x8c\x26\x71\xf5\x08\x90\x0b\ \x1b\x7e\x40\xcf\x00\x6e\x05\x6e\x02\x8a\x00\x32\x52\x93\xf9\xd1\ \xac\xb3\x99\x33\xeb\x1c\x0a\x73\xb3\x90\x65\x99\x92\x1d\x87\xf9\ \x7e\xcd\x6e\x4a\x76\x1c\x46\xb2\x58\x03\x20\x85\x80\x28\x26\xe1\ \x43\xc7\x11\xc0\x62\x12\xc9\x49\xf1\x5c\x72\xce\xa9\xcc\x9a\x79\ \x1a\x93\xc7\xe7\x01\xb0\xa7\xe2\x30\x1f\x7f\xbd\x0c\xe3\xb7\x2b\ \x38\x5a\xd5\xb5\x66\x67\x27\x4a\x71\x87\xb7\x24\x93\xf1\xa8\xb8\ \x5a\x04\xc8\x85\x8d\x0c\xa8\xcf\x50\x81\x7e\x03\xa0\x07\x98\x3a\ \x21\x9f\x6b\x2e\x3b\x87\xab\x2e\x3a\x93\xa4\x84\x38\x3a\xcc\x16\ \x4a\xb6\x1f\x66\x75\xa9\x89\xf5\xe5\x26\xda\x3b\x25\x51\x4c\x62\ \x04\x14\x93\x88\x89\x8a\xe0\xbc\x33\xa6\x73\xe9\x79\xa7\x71\xca\ \x89\x13\xd0\x6a\xb5\xd4\x37\x36\xf3\xf9\x77\xab\xf8\x78\xfe\x32\ \xb6\x6e\xdf\xe7\x68\x06\xb5\xc0\xfb\xc0\x3c\x31\x81\x29\x40\x2e\ \x40\x3e\xb2\x81\x1e\x0a\x5c\x0c\xdc\x0c\x5c\x0e\x84\x87\x84\xe8\ \x98\x79\xfa\x49\xcc\xb9\xec\x1c\x2e\x38\xf3\x64\xc2\xc3\x43\xb1\ \xda\xec\x6c\xd9\x75\x84\xe2\x2d\x07\x58\x53\x7a\x80\xc6\x96\x0e\ \x51\x4c\x62\x18\x15\x93\x88\x8c\x08\xe7\xb4\x93\x26\x31\x6b\xe6\ \xa9\x9c\xfd\x83\x13\x09\x0f\x0b\x45\x92\x2c\x2c\x5c\x59\xc2\xc7\ \xf3\x97\xb1\xb4\x78\x93\x63\xf5\xa5\x19\xf8\x0a\x78\x07\xf8\x4e\ \x32\x19\x2d\xe2\x2a\x10\x20\x17\x20\x1f\x5d\x50\x4f\x40\x89\x74\ \xb9\x09\x38\x03\xd0\xc4\xc7\xc5\x70\xe5\x85\x67\x70\xcd\xa5\x3f\ \xe4\xe4\xa9\xe3\xbb\xfe\xef\xed\xfb\xab\x28\xde\x5c\x41\xf1\xd6\ \xfd\x1c\xab\x6d\x61\xd8\x16\x93\xf0\x49\x63\x1e\x39\xc5\x24\xb4\ \x1a\x28\x2a\x34\x70\xda\x49\x93\x38\xed\xa4\x49\x9c\x38\xb1\x80\ \x90\x10\x1d\x00\x25\xa5\xbb\xf8\x78\xfe\x72\xbe\x58\x50\x4c\x53\ \x73\xab\xe3\x4b\x8a\x55\xe9\xe4\x23\xc9\x64\x6c\x14\xad\x5d\x80\ \x5c\x80\xfc\xf8\x80\x7a\xae\x0a\xf4\x9b\x80\x02\x80\xdc\xb1\x19\ \x5c\x7d\xd1\x99\x9c\x7d\xea\x09\x4c\x9b\x3c\x8e\x50\x15\x1c\x15\ \x47\xea\xd8\xb2\xeb\x08\x65\x7b\x2a\x29\xdb\x53\xd9\x15\xd2\x28\ \x8a\x49\x04\x76\x69\x7e\x7a\x6a\x32\xa7\x9d\x34\x81\xd3\x4e\x9a\ \xc4\x29\x27\x4e\x20\x3e\x36\x1a\x00\x8b\xd5\xc6\xe6\xf2\xdd\xac\ \x58\xbb\x95\xcf\xbe\x5f\x45\xc5\xc1\x2e\x89\x7b\xaf\x0a\xef\x79\ \x92\xc9\x58\x21\x5a\xb5\x00\xb9\x00\xf9\xf1\x0d\xf5\xd3\x54\xa0\ \x5f\x07\x24\x01\x44\x46\x84\x73\xca\x89\x45\x9c\x39\x63\x0a\xa7\ \xcf\x98\xcc\xd4\x09\xf9\xe8\xb4\x5a\x64\x19\x0e\x1e\xab\x57\xa0\ \xbe\xbb\x92\xd2\x3d\x47\xa8\x6d\x68\xf5\x1e\x5e\x7e\xc9\x34\xae\ \xf5\xe6\x91\x5e\x4c\x22\x2a\x22\x82\xe9\x27\x8c\xe3\xb4\x93\x26\ \x72\xea\xb4\x89\x18\xc6\xa4\x01\x60\xb3\xdb\x29\xdd\xb1\x8f\xd5\ \x1b\xca\x59\xb5\xa1\x8c\xf5\x5b\x76\x3a\x2a\xd1\x03\xd4\x03\x1f\ \xaa\xf0\x5e\x23\x5a\xaf\x00\xb9\x00\xb9\xb0\xde\x40\x0f\x03\xce\ \x02\xce\x05\x66\x02\x33\x80\x10\x80\xd8\xe8\x48\x4e\x3d\x79\x12\ \x67\x4c\x9f\xcc\x99\x33\xa6\x30\xa1\xd0\xd0\xd5\xd0\x8e\xd6\x34\ \x51\xb6\x47\x81\x7a\xe9\xae\xc3\x54\xd6\x34\x79\x05\xcb\xe3\xa9\ \x98\x44\x44\x78\x18\x05\xb9\x99\x14\xe5\x65\x33\x3e\x2f\x9b\x09\ \x05\xd9\x8c\xcb\xcd\x46\xa7\xd3\x22\xcb\x32\x3b\xf6\x98\x58\xb5\ \xa1\x8c\xe2\x8d\xe5\xac\x2d\xd9\xe6\xa8\x7d\x09\x4a\x11\xe3\x0d\ \xc0\x12\x60\x29\xb0\x52\x32\x19\x25\xd1\x5a\x05\xc8\x05\xc8\x85\ \x79\x0b\xf6\x58\x15\xec\x33\xd5\xdb\x09\x80\x16\x20\x31\x3e\x96\ \xd3\xa7\x4f\xe2\x74\x15\xec\x85\xb9\x59\x5d\xef\x6b\xeb\x30\x73\ \xe0\x48\x1d\x15\x47\xea\xd8\x7f\xb8\x86\x8a\xc3\xb5\x54\x1c\xa9\ \xa5\xb9\xad\xe3\xb8\x28\x26\x11\x17\x13\xc9\xb8\xdc\x2c\xc6\xe7\ \x67\x51\x94\x97\x4d\x51\x7e\x36\x86\x31\xa9\x68\xb5\xda\xae\x73\ \xb4\xa7\xe2\x30\xab\x36\x94\xb1\x7a\x63\x39\xab\x37\x6e\x73\x54\ \xdb\x01\x65\xa5\xe5\x56\x15\xdc\x4b\x54\x70\xb7\x88\xd6\x28\x40\ \x2e\x40\x2e\x2c\x50\x60\x4f\x02\xce\x71\x02\xfb\x04\xc7\x6b\xa9\ \xc9\x09\x9c\x3e\x43\x81\xfa\xb4\x49\x85\xe4\x8e\xcd\x20\x22\x3c\ \xac\xc7\xfb\xeb\x1a\x5b\xd9\xaf\x42\xbd\xe2\x70\x0d\xfb\x0e\xd5\ \x70\xe8\x58\x1d\x9d\x66\xcb\x88\x2b\x26\xa1\xd3\x6a\x48\x49\x8a\ \x27\x3d\x25\x91\xb4\xe4\x04\xb2\x32\xf4\x8c\xcf\xcb\x62\x7c\x5e\ \x16\x19\xa9\x49\x3d\x7e\x77\xa7\x59\xa2\xe2\xe0\x51\x36\x6f\xdb\ \xa3\xc0\x7b\x43\x39\xd5\x75\x3d\xe6\x23\x77\x38\x81\x7b\x99\x64\ \x32\xd6\x8b\xd6\x26\x4c\x80\x5c\xd8\x60\x81\x3d\xdd\x49\x86\x99\ \x09\xe4\x39\x37\xc2\x31\xe9\x7a\xf2\x0d\x99\xe4\xe7\x8c\x21\xdf\ \x90\x49\x81\x61\x0c\xf9\x39\x99\x64\xa4\x26\xf7\x68\xa4\xad\xed\ \x66\xea\x1a\x5b\xa8\x69\x68\xa5\xb6\xbe\x85\xda\xc6\x16\x6a\x1b\ \x94\x5b\x8d\x7a\x5f\xdf\xd8\x82\xcd\xee\xa3\xa6\x3d\x80\xf4\xb8\ \x09\x71\xd1\xa4\xea\xe3\x49\xd7\x27\x92\x96\x1c\x4f\x5a\x4a\x82\ \xf2\x58\xaf\xdc\x27\x27\xc5\xa1\x75\xfa\x0d\xb2\x2c\x73\xb4\xba\ \x8e\x7d\x07\x2a\xd9\x6b\x3a\xc2\x3e\x53\x25\xfb\x0e\x28\xf7\x47\ \x8e\xd5\xf6\xbe\x86\xf6\x3b\x81\x7b\xa9\x64\x32\x1e\x13\xad\x49\ \x98\x00\xb9\xb0\xe1\x02\x76\x83\x0a\xf6\xa9\xc0\x78\xf5\x96\x03\ \xe8\x9c\xf7\x8b\x8c\x08\x27\xcf\x90\xa9\xc2\xbd\x1b\xf4\x79\x86\ \x4c\x62\xa2\x22\x5d\x7e\xb6\x5d\x96\x69\x68\x6a\xa3\xb9\xb5\x1d\ \xb3\xc5\x86\x24\x59\xe8\x94\x2c\x48\x16\x2b\x66\xc9\x82\x59\xb2\ \x22\xa9\xf7\x66\xc7\x76\xb3\x12\x42\x1d\x1e\x1e\x42\x44\x58\x28\ \xe1\x61\xa1\xea\xe3\x30\xc2\xc3\x42\x88\x08\x57\xb7\x85\x85\x12\ \x11\x1e\xaa\x6e\x0f\x25\x26\x3a\x82\xb0\xd0\x10\x97\xc7\xd1\xda\ \xde\xc1\x7e\x53\x65\x17\xa8\xf7\xaa\x8f\xf7\x9b\x2a\x9d\x27\x24\ \x1d\x66\x03\x0e\x00\xbb\xd4\x5b\xa9\x0a\x6e\xb1\x34\x5e\x98\x00\ \xb9\xb0\x11\x05\xf7\x70\x94\xf0\xc6\xf1\x2e\x6e\x89\xbd\xf7\x4f\ \x4b\x49\xa2\xc0\x90\x49\x56\x66\x2a\xb1\xd1\x91\xc4\x46\x47\x11\ \x1d\x1d\x49\x4c\x54\x04\x31\xd1\x91\xc4\x44\x45\xaa\xcf\x23\xd5\ \xe7\x11\x44\x47\x47\x12\x1d\x19\xe1\x75\xc3\x97\x65\x99\xb6\x8e\ \x4e\xda\xda\x3a\x68\x6d\xef\xa4\xb5\xad\x83\xd6\xf6\x0e\xf5\x79\ \x87\xfa\x5c\x79\xbd\xa5\xad\x9d\x96\xb6\x0e\x0e\x57\x56\xb3\xd7\ \x54\x49\x55\x8d\x4b\xd5\xa3\xc1\x09\xd6\xce\xb7\xbd\x92\xc9\x68\ \x16\xad\x40\x98\x00\xb9\xb0\xd1\x0c\xf9\x14\x94\x9c\x30\xbd\x01\ \x9f\x87\x1a\x2d\xe3\x4b\xa3\x8f\x8e\x8c\xe8\x03\x7d\x87\x17\xed\ \x0c\xe7\xb6\x8e\x4e\x7f\xda\xb4\x55\x95\x44\x7a\xc3\x7a\xa7\x64\ \x32\xd6\x88\x7f\x53\x98\x00\xb9\x30\x61\x3d\x01\x1f\x0a\xa4\x03\ \xb1\xfd\xdc\x62\xdc\xbc\xd6\xfb\x06\xd0\xe2\xe5\xad\xd5\xcd\x6b\ \xc7\xc4\x72\x77\x61\xc3\x11\xe4\xc2\x84\x09\x13\x26\x4c\x98\x30\ \x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\x09\x13\x26\x4c\ \x98\x30\x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\x09\x13\ \x26\x4c\x98\x30\x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\ \x09\x13\x26\x4c\x98\x30\x61\xc2\x06\xcb\xfe\x1f\xb5\x2a\x3a\xdb\ \x50\xaf\x4d\x17\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\x02\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ \x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ \x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ \xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ \x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ \x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ \xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ \x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ \xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ \xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ \x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ \xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ \x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ \x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ \x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ \x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ \xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ \x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ \x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ \x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ \x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ \x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ \x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ \x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ \x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ \xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ \xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ \x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ \xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ \xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ \x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ \xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ \xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ \xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ \xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ \x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ \x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ \x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ \xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ \xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ \xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x27\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xa4\x49\x44\ \x41\x54\x38\x8d\x95\x93\x3f\x88\x13\x41\x14\x87\xbf\x37\x13\x35\ \x31\x82\x32\x1a\xb0\x50\xd0\x42\x83\xa4\x48\x25\xb8\x81\x2d\xdc\ \xd6\x32\xb5\x81\x2c\xd8\x88\xb5\x08\x82\xa2\xd8\xda\x0a\x69\x52\ \x5a\xa4\x10\x2c\x6c\x0e\xbc\xc3\x62\xab\x58\x6e\x3a\xe5\xe4\x0e\ \x2c\x94\x5b\x53\x78\x1c\xa7\x71\x9e\x85\xd9\xcd\x5d\x5c\xa3\x3e\ \x18\x78\xcc\xfb\xbd\x6f\x7e\xf3\x4f\xd2\x34\xbd\x24\x22\x86\x92\ \x18\x8d\x46\xb7\xda\xed\xf6\x8b\x66\xb3\xb9\x53\x56\x07\x90\xc1\ \x60\xf0\xd1\x5a\x7b\xac\xac\xa8\xaa\x35\xe0\x9b\x88\xfc\x28\xab\ \x7b\xef\x67\x95\x46\xa3\x71\x34\x0c\x43\x27\x22\x0b\xea\x81\x1c\ \xa8\x2d\x41\x8b\x3c\x49\x92\xcc\x2c\x89\xff\x2b\x44\x84\x4a\x9e\ \xe4\xa0\x55\xc0\x27\x6e\x17\x80\xfb\x3b\xc7\x8b\xb9\x4a\xde\xfc\ \x2f\x80\x5d\x3e\xcf\x35\x17\x16\x80\x55\x0e\x1e\x9e\xca\x00\x78\ \x34\x75\x73\xc0\xa7\xb9\xe6\xe2\xdf\x01\x22\xc2\x94\x4d\x00\x8c\ \x39\xb3\x04\x90\x72\xc0\xdd\x93\xef\x01\x78\xfa\xf5\x32\x22\xc2\ \x17\x3e\x00\x60\xed\xb5\x43\x5b\x30\xc6\xa0\xaa\x8b\x43\x34\xc6\ \x60\x8c\x61\x93\x8d\x79\xc3\x15\x00\xa6\x05\xc0\xa2\xaa\x85\x03\ \x6b\x2d\xde\xfb\xc5\x21\xe6\x80\x97\x7b\xb7\x31\xc6\x14\x36\x5f\ \x7f\x7f\x50\x58\x55\x55\xd6\xf7\x1f\xa3\xaa\xc5\xea\x00\x95\xc9\ \x64\xb2\x5d\xad\x56\x7f\x7b\xca\x22\xc2\x6c\x36\xab\x59\x6b\xf7\ \x45\xc4\xe7\x90\x83\x91\xa6\xe9\x56\x41\x2c\x1b\xbd\x5e\xef\x5e\ \xbf\xdf\x3f\xbb\x4a\x53\xfa\x89\x00\xe2\x38\x3e\xdf\x6a\xb5\xae\ \x7a\xef\x6f\xc6\x71\x7c\xe4\x4f\x3a\x59\xb6\x15\xc7\x71\xa3\xd3\ \xe9\xdc\x49\x92\x64\x2f\xcb\xb2\xd3\xf5\x7a\x7d\x2d\x0c\xc3\x1b\ \xe3\xf1\xf8\x2d\xf0\x7c\x38\x1c\xfa\x43\x0d\xb9\x15\x40\x82\x20\ \x78\x16\x04\xc1\xab\x28\x8a\xce\x01\x75\xe7\xdc\x1b\xe7\x5c\x17\ \x38\xd1\xed\x76\xaf\x47\x51\xf4\xce\x39\xd7\xe6\xd7\xf5\x8b\xaa\ \xf2\x13\xa3\xf2\xb5\x50\x77\x5a\x2a\xf8\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x4e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ \x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xcb\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3b\x6b\x94\x41\x14\x86\x9f\xd9\x8b\xab\ \x59\x51\xd0\x20\x44\x4c\xd0\x34\xb1\xd5\xb5\x54\x74\xff\x82\x58\ \x68\x97\xff\x62\x1f\x82\x82\xbf\xc1\x26\x76\x5e\xd0\x5a\x12\xc4\ \x2d\x04\x6d\xc3\x4a\x10\x89\x49\x0a\x43\x76\xbf\x6f\xe6\xcc\x39\ \xc7\xe2\xcb\xae\xab\xbb\xa9\x32\xcd\x19\x86\x79\xdf\x79\xce\x65\ \x82\xbb\x73\x9a\xd5\x18\x6d\x5e\x3c\x7a\xf8\x39\xa6\xd4\x31\x35\ \x4c\x33\x26\x19\xcb\x82\xa5\x2a\x6a\x4a\xa8\x64\x54\x12\x75\xc9\ \xbd\xa7\xfd\xfe\x9d\x7f\x0c\x8a\xa2\xec\x74\x6f\x5c\xc7\x73\x25\ \x56\x49\x68\x4c\x68\x8a\xe4\x18\xd1\xb2\x8a\x52\x96\x7c\xfc\xb5\ \xd7\x99\x22\x30\x11\x2c\x46\x4c\x15\xcb\x19\x4d\x52\x11\x48\xc6\ \xb2\x1e\x9f\x2b\xa8\xe2\x66\xd3\x29\x98\x48\xf5\x82\x64\xf6\x06\ \x03\xce\xb8\x71\x54\x94\xb8\x1b\x97\xcc\xb1\x9c\xab\xd4\xfe\x33\ \xa8\x8d\x36\x2a\x82\xc6\xc8\xef\xc1\x11\x2b\x8f\x9f\x90\xe7\xda\ \x2c\x76\xbb\x5c\xb9\x75\x9b\x83\xe1\x90\xfd\x61\xc1\x5e\x51\x50\ \x26\x39\x89\x20\x23\x65\xc4\x5b\x67\xa9\xb9\xb1\x74\xf7\x1e\x87\ \xdf\xfb\x5c\xed\x74\xb8\xb0\xb0\x40\xad\xd9\xc4\xd5\xf8\xf2\xfc\ \xd9\x09\x04\x59\x28\x8a\x82\xa5\xfb\x0f\x28\xf7\x0f\xb8\xb8\xb8\ \x48\xa3\x56\x67\x77\x6b\x8b\xd6\xb9\x39\x5a\xed\xf3\xec\x7c\x78\ \x4f\xdd\x99\x6d\x60\x22\x88\x2a\x36\x1c\xd2\xdf\xd8\xe0\xa0\xd7\ \x23\xa8\xd2\xbe\x3c\xcf\xce\xbb\xb7\xec\x6e\x6e\x32\xbf\x72\x93\ \x5a\x4a\xfc\x95\x4f\xa4\xa0\x22\x34\xca\x92\x1f\xaf\x36\x68\xba\ \xf3\xf3\xcd\x6b\x5c\x15\x95\x8c\xe7\xcc\xe0\xeb\x37\x72\x4a\xd4\ \x43\xc0\x42\x98\x5d\x03\x8d\x11\xcc\x31\x53\x5c\xab\xd6\x8d\xe6\ \xc2\x44\x70\xc0\x00\x9f\x45\x60\x22\x68\x19\x71\x77\xdc\x6c\x6c\ \x50\xb5\x4f\xb1\x63\xb1\x86\x80\xcf\x26\xa8\xe6\x80\x91\x81\x29\ \xa6\x86\xb9\x57\xe2\x10\xc6\x51\x4f\xaa\xc1\xb5\xd5\x55\xda\xcb\ \xcb\x30\x81\x39\x19\x1d\x38\xdc\xde\xe6\xd3\xfa\xfa\xb4\x41\xc3\ \xbd\xf7\x72\x6d\x6d\x3c\xe3\x0e\x78\x08\x63\xa1\x8f\x08\x80\x46\ \x08\xbd\xd1\xbd\x70\xda\xef\xfc\x07\x11\x4a\x6f\x13\xfe\x0f\xc3\ \x88\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\x93\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x10\x49\x44\ \x41\x54\x38\x8d\x8d\x92\x4b\x68\x9c\x75\x14\xc5\xcf\xff\xf5\x8d\ \x93\x49\x32\x43\x6a\x66\x52\xd2\x58\xc7\x45\x68\x25\x0b\xa3\x55\ \xd1\x2c\xc4\x2a\x84\x46\x48\xcc\x42\x1a\x28\x48\x5d\x84\x16\x77\ \xa6\x0a\x55\x49\xc9\xba\x8b\x71\x11\x5d\xb8\x91\x88\xb3\xe9\xc6\ \x8d\x68\x8b\x15\x22\x56\x8b\xb1\xd0\x2a\x34\x10\x1b\x32\x69\x43\ \x26\x69\x27\x4e\xe6\x99\x7c\xf3\xfd\x5f\xd7\x45\xec\x03\x17\xe2\ \x85\xb3\xbb\xe7\x70\xb8\xf7\xc7\x88\x08\xff\x77\x66\x67\x67\x5f\ \xdf\x28\x6e\xbe\x1b\x6f\x4b\xe4\xcf\x9d\xfb\xf8\x6b\x00\xe0\xff\ \x65\x98\x9f\x9f\x3f\x74\xe6\xcc\xfb\x73\x27\x4e\xbc\xbd\xb2\xba\ \x7a\x67\x7b\x74\x74\xec\x72\xa9\x54\x1b\xaf\x56\x9a\xef\xdd\xdf\ \x61\x8f\x36\x20\xa2\xee\xe9\xe9\xe9\x0f\x0a\x85\xc2\xf8\xc8\xc8\ \x1b\x5d\x13\x13\xc7\xbb\x3e\xfb\xf4\x73\xcc\xff\xf8\x0b\x3d\x79\ \xb0\x6f\x5b\x48\x7b\xf1\xca\x95\x9f\x2f\x5d\xbb\xf6\xdb\x0f\x44\ \x74\xef\xbe\x09\x93\x93\x93\x1f\xe5\xbf\xca\x6f\x7a\xef\xfd\x8d\ \x1b\xbf\xd3\xd8\xd8\x5b\xfe\x9d\x93\xa7\x1a\x67\xcf\x7e\xf8\xed\ \xf0\xf0\xf0\x69\x00\x87\x00\x08\x22\xc2\xbf\x25\x01\xa0\x5c\xae\ \xa8\x0b\x17\xbe\xeb\xf9\x75\xe1\xfa\xb2\xd6\xcd\x6f\xaa\xd5\xd2\ \x1f\xde\xb7\x6a\xdd\xe9\xe4\xd6\xd4\xd4\xd4\x76\x36\x9b\xed\x29\ \x97\xcb\x4f\xe5\x72\xb9\xbb\x03\x03\x03\xbb\x73\x73\x73\x07\xfb\ \xfb\xfb\x2f\xcf\xcc\xcc\x78\x10\x11\xce\x9f\xff\x64\xf0\xc8\x0b\ \xaf\xd2\xf1\x89\x93\x54\x2e\x57\x68\xe4\xd8\x9b\x34\xf8\xcc\x8b\ \xb4\xb4\xf4\x27\xad\xac\x14\xe8\xd9\xc1\x97\xe8\xb5\xa3\xc7\xa8\ \x52\xa9\xd0\xa5\x8b\xdf\xd3\xd3\x87\x07\x29\x97\xfb\x22\x45\x44\ \x7b\x37\x18\x1a\x3a\x7a\x38\xde\x16\x5f\xd8\xd7\x95\x6c\x30\xc6\ \xb9\x8e\x74\x4c\x4a\x65\xe3\x6d\x31\x13\xb5\x8c\x32\x3a\x92\x32\ \x50\x46\x4a\x61\xc3\x30\x0c\x8c\xb6\x22\x99\xea\x3c\x90\xcf\x7f\ \xb9\x2b\x01\xc0\x98\xa8\x9e\x4d\x3f\xd1\x11\xc4\x62\x1d\x42\x48\ \xc8\x2e\x05\x06\x06\xc6\x38\xda\xdb\x01\x4f\x1e\xd6\x3a\x38\x67\ \x21\x65\x0c\x61\xd8\xc2\xad\x5b\xcb\xf4\xe0\x8d\xa5\x52\xc9\xad\ \xde\xbe\x83\x74\x3a\x8d\x46\xbd\x01\x6f\x3d\x36\x37\xee\xa2\x56\ \xad\xa2\xb7\x77\x3f\x3c\x01\x9b\x1b\x1b\x88\x05\x0a\xdd\x8f\xef\ \xc3\xe2\xcd\x9b\x28\xdd\xdb\x7a\x18\xc0\x39\x87\xb5\x0e\x3b\xcd\ \x1d\x64\x32\x19\x58\xef\xc1\xb8\xc0\xf8\xf8\x28\xfa\xfa\x0e\x40\ \xb7\x34\x1a\xf5\x26\x52\xa9\x24\x00\x06\xe7\x1c\x38\xdf\x43\xe8\ \x1f\x90\x18\x92\x9d\x1d\x38\xf2\xfc\x73\x58\x2f\x16\x61\xb4\x41\ \xd4\xd2\x58\x58\xb8\x8e\xc5\xc5\x25\x44\x91\x81\x75\x0e\x20\xa0\ \x5e\xaf\x03\x8c\x01\xec\x11\x90\x86\x5e\x7e\xa5\xb7\x33\x99\x5a\ \x57\x32\x80\x90\x0a\x89\x44\x02\xce\x11\x98\x10\x48\x77\x67\x50\ \xab\x6f\x23\x0a\x5b\xb0\xce\xa1\x5a\xab\xc1\x18\x8d\x28\xac\xb7\ \x5d\xbd\xfa\x53\x28\x01\x60\xbd\x58\x74\xc1\xd6\x5f\x08\x54\x0c\ \x2a\x08\xa0\xa4\x82\x94\x0a\x9c\x0b\x28\x29\xb1\xdb\xac\x83\x73\ \x06\x06\x42\x71\x6d\x15\x5a\x6b\x68\x13\x11\x80\x3d\x90\x32\x99\ \xb4\x68\x4f\x74\x40\x48\xb5\x27\x21\xc1\x39\x07\x63\x0c\x42\x49\ \x84\x2d\x0d\xe7\x2c\xac\x73\xe8\xee\xd9\x0f\x63\x35\x74\xb8\xc3\ \x1e\x04\xac\xad\xad\x39\xa5\x14\xa4\x0c\x20\xa5\x84\x14\x12\x5c\ \x08\x30\xc6\x50\x58\x59\x06\x79\x82\xf7\x0e\xd6\x59\x58\x6b\x60\ \x8d\x81\x31\xfa\x61\x03\x63\xf4\x16\x88\xb2\xde\x39\xde\x68\xe8\ \x24\x91\x8f\x93\xa7\xb8\x27\xff\x18\x88\x38\xe3\x2c\x62\x8c\x87\ \x8c\xb1\x50\x08\xd9\x60\x8c\x45\xd6\x9a\x08\x00\xfe\x06\x5b\x7b\ \x9e\x53\x59\xbb\x17\xfa\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x02\x16\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ \x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x93\x49\x44\ \x41\x54\x38\x8d\xa5\x91\x4f\x6b\x13\x41\x18\x87\x9f\xdd\x9d\x92\ \xcd\x6e\x34\x69\xd5\x50\x85\xb6\xf1\xcf\xa5\xa1\x88\x39\x45\x50\ \xf0\xd6\x8b\x57\x3f\x81\x67\x69\x6f\xe6\xdc\xe3\x7c\x02\x11\x04\ \x5b\xbf\x81\x87\x82\x20\x08\xde\xec\x41\x68\xa3\x10\x0a\x92\x08\ \x42\x12\x30\xdd\x98\x6d\xe9\xba\x99\xcc\x8e\x07\x6b\x93\x1a\x2b\ \xa5\x79\x4f\x2f\x03\xcf\xc3\x6f\xde\x9f\x65\x8c\x61\x92\xb1\x27\ \xa2\x01\x21\xa5\x9c\x28\x82\x00\xa8\x54\x2a\xe7\x82\xa5\x94\xbf\ \x05\x00\x8f\xd7\x3e\x52\xea\x6d\xe1\x25\x35\xda\x49\x01\xaf\x65\ \xf0\xf3\x79\x7e\xe6\xbe\x70\x29\xf5\x9d\xf4\x8f\x79\x36\xf4\x3d\ \x0e\xb5\x83\xd6\x86\x77\xcf\xee\x03\x23\x37\xf0\x54\x8f\xc4\xa9\ \xd3\x4b\x39\x24\xfd\x00\x1d\x84\x64\xc3\x01\x3b\x3a\x62\xf6\xee\ \x55\xc4\x8d\x88\x47\x33\x7b\xc4\xc6\x26\xc6\x39\xf9\x05\x80\xae\ \x93\x61\x37\xf1\x21\x52\xc4\xfb\x9a\x42\x18\x33\xe5\x29\xca\xea\ \x0e\x9f\x23\x9b\xd9\x2b\x55\xaa\x7b\x39\xfa\x08\x34\xc3\xb3\x1d\ \x27\xd8\xb7\x7c\x3a\xba\x4c\xf6\x43\xcc\x85\x86\xe2\x6b\x56\x13\ \x1c\xc6\x2c\x75\x1d\x4a\xcf\xf3\x84\xd9\x65\xde\x07\x39\x06\xb6\ \xa0\x6f\x89\xf1\x04\xf5\xc0\x60\x5b\xf3\x5c\x54\x21\xc5\xd6\x2e\ \x4d\xe3\xf2\x7a\xe1\x13\xd7\xdd\x27\xa8\xe5\x03\x5e\xbc\x99\x23\ \x42\x60\xac\x51\x6a\x64\x75\x33\x2e\x00\xdb\x0f\x2b\x6c\x35\x5e\ \xe1\x35\x37\x29\x14\x1f\xb0\xbe\x38\x43\xad\x7d\x0d\x3c\x43\xea\ \x1f\x4d\x1c\x0b\xd2\x47\x02\x00\xbf\x53\xe5\xd6\xcd\x22\x07\xb7\ \x9f\xd2\xe8\x0e\x70\x33\xa7\x57\x39\x96\x00\x63\xe8\x38\xd3\xd4\ \x06\x8b\xf8\x4a\x90\xce\x88\xd3\xd8\x93\x82\xb7\x2b\x97\x87\xaf\ \xab\x2f\xff\x0b\x8d\x09\xa4\x94\x67\x06\xfe\x1e\x0b\x58\x00\xe6\ \x18\x56\x6a\x9d\x81\x33\x40\x02\x7c\xfb\x53\xca\xd4\x39\x03\xa8\ \x5f\xd3\x56\x89\xec\x63\x12\x58\x4f\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x03\x3e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xbb\x49\x44\ \x41\x54\x78\xda\xa5\x93\x7b\x48\x53\x51\x1c\xc7\x7f\x77\x0f\xbb\ \xdb\x9c\x4a\x64\x39\xa6\xe6\x4a\xd4\xa4\x97\xf9\x8f\x4a\xe4\x1f\ \x3d\xfc\xa7\x21\x54\xd0\x9f\xf9\x48\x87\x98\x42\x7f\xf6\x97\x42\ \xff\xf5\x00\xf5\xfa\x60\x19\x81\xd0\x42\x7a\x61\x52\x08\x86\x4d\ \xa8\x6d\x38\x1f\x9b\x33\x1f\x2c\x71\xb8\xcd\x2d\xf3\x6e\xb2\xdd\ \xb9\xee\xbc\xbb\xf7\x74\xaf\xe1\xd2\xb2\xbf\x3c\x70\x38\xe7\xf7\ \xfd\xfd\xce\x97\x0f\xe7\x77\x0e\x86\x10\x82\xfd\x0c\xc9\x5e\x62\ \x5d\xa7\x43\x13\x07\xae\x14\x30\x38\x2b\xe2\x10\x87\x30\x91\x8d\ \xe5\xe2\x96\xbe\xe6\x62\xf7\xdf\xb5\xbb\x08\x1a\xbb\xe7\x92\xa3\ \x1c\xf3\xb0\x48\x93\xaa\x2b\xc8\x54\x62\x59\x87\x64\x20\xa4\x3d\ \x64\x14\x66\xdd\x61\xf4\xd5\x43\x11\x52\x69\xfc\x9e\xbe\xbe\x38\ \xfa\x8f\x81\xae\x6d\x52\x25\x4f\x95\x99\x6f\x9e\x57\xe7\xa4\x29\ \x92\xc0\xea\x0c\x0a\x07\x19\x9e\x02\x3b\x9a\xae\x90\x94\x15\x1c\ \x04\x2f\xf9\x13\x5e\x99\xbd\xce\x20\x03\x25\x86\x86\x53\xeb\xc2\ \x39\xd1\xb6\x13\x9b\x24\xee\xad\xbb\x92\x93\xf3\x7d\x9d\x86\xc7\ \xef\x9c\xa3\xa3\xb3\x81\x62\x77\x30\xac\x58\xf5\x61\xc9\xc6\x99\ \xd5\xb2\x07\x6f\x9d\x16\x8a\x8e\x43\xed\x25\x4d\x1e\x8e\x58\x22\ \x81\x2d\x10\x54\x77\x4c\xdd\x78\xf1\xd9\x87\x26\x96\xc2\xa8\x8a\ \xb0\xbf\xe6\xc5\x2d\x32\xf4\x67\x85\xd6\x56\x24\xaa\xe9\xb2\xbd\ \xb7\xbb\x28\xd4\x67\xf4\xa2\x6a\xc2\x5e\x21\xe8\xbf\x09\x30\x4c\ \x2b\x20\x0e\x58\x56\xa2\x1c\x16\xd3\x21\x5e\x32\x5a\xad\x47\x9e\ \xf7\xf7\xdf\xd7\xeb\xf5\x8d\x7e\xbf\x5f\xde\xd2\x02\x1c\x07\xcc\ \xed\x81\x31\x1f\x5d\xc2\xd7\x02\xa0\x6b\x09\x82\x3b\x4f\x67\xe6\ \x82\x11\x16\xd5\x10\xf6\x11\x21\x76\xb9\x5c\xf8\xd0\x47\xe3\x62\ \x38\x42\xa3\x50\x28\x84\x0c\x06\xc3\x00\xaf\x4b\x85\x5c\x5d\xf7\ \xb4\x39\x10\x61\x39\x5d\xcf\xf4\x64\x82\x20\x4d\x26\x55\x85\xe9\ \x38\xe2\x30\xb4\x2c\xc4\xb1\x58\x4c\xa1\x52\xa9\x8e\x31\x2c\x0b\ \x98\xe4\x00\xe4\xe7\xe7\x5f\xd8\x6e\x79\x9c\xe5\x16\x68\x86\x45\ \xc9\x32\x49\x46\xe2\x12\x7f\x84\x63\xd3\x29\x32\x09\x92\x4b\xc5\ \x1a\x21\x66\x59\x96\x1a\x33\x9b\x26\x22\xe1\x10\x6c\xd2\x51\x20\ \x49\x72\x98\x97\x37\x85\x9c\x5c\x26\xe1\x92\xc4\xa2\xf9\x20\x15\ \xb3\x25\x0c\x78\xc3\x71\xbe\x45\xe4\x89\x2c\x25\xd4\x76\xd9\x8e\ \x17\x16\x16\x6e\xaa\x32\xd2\x2f\x1a\x47\x86\xa1\xa3\xbd\x0d\x70\ \x1c\xaf\x12\x7c\xab\xbb\xec\xd9\x27\x33\x53\xc8\x65\x32\xea\x00\ \xc0\x86\x12\x06\x2c\xc0\x93\xc1\x71\xbf\xf3\x7a\xa9\x7a\x51\x81\ \x4b\x2f\xd7\xb6\x3b\x94\x5a\xad\x96\xe2\x8d\x40\xad\x56\x43\x79\ \x79\x39\x7d\xab\x67\x4a\x9c\x8a\x4b\xf3\x2a\x4b\x54\x8b\x1f\xac\ \xfe\x79\x31\x12\xf5\x27\x0c\xfa\x1a\xcf\x7c\x5b\xf2\x51\x8f\xcc\ \x0b\x41\x7f\xf3\xd5\xdc\x8d\xec\x0c\xfc\xf0\xce\x36\x6f\xd5\x34\ \x9c\x63\xef\x56\xe6\x7a\x3f\x39\xd6\x7c\xcb\x6b\x1b\x6f\x7a\x9b\ \x4e\x07\x76\xfd\x85\x67\x4d\x45\x83\x40\xd8\x82\x2b\x81\xa8\xb2\ \xbe\x42\xe3\x86\x3d\xc6\xcb\x2f\x2b\x9e\x79\x0f\xb5\xc1\xd7\x7a\ \x76\x3e\xa4\x5d\xb3\xa6\x73\x4a\xb6\xbd\x37\x99\x4c\x0c\x41\x10\ \x21\x61\xff\xbf\xb9\xef\xef\xfc\x0b\xa5\xaf\x95\x23\x5d\x97\x84\ \x4f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x02\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x7f\x49\x44\ \x41\x54\x78\xda\x8d\x93\xbf\x4b\xc3\x40\x14\xc7\xdf\x5d\x0a\x71\ \xa8\xfd\x0b\x04\x17\x07\x27\xff\x83\xe6\x7f\xd0\xfc\x27\x1d\x54\ \x68\x37\x17\x57\x87\xee\x42\xe7\x80\x75\x11\x71\x76\xab\x4b\xea\ \xa8\xad\x53\x88\xc1\xd0\xa9\x81\x24\x6d\x9e\xef\x85\x3b\xae\x77\ \x45\xf0\xc1\x37\xef\xee\xfd\xf8\xbc\x97\x40\x04\x00\x9c\x90\xce\ \xe0\x7f\x16\x23\xe2\xc7\x6e\xa0\xc3\xcd\xdf\x59\x16\x21\x02\x78\ \x9e\x04\x29\x04\x08\x29\x41\xb0\x67\x71\x15\x79\x49\xb1\xc3\x6e\ \x37\xa4\xdb\x1e\x00\x54\x4d\x6b\x59\x96\xc1\x62\xb9\x64\x90\x8a\ \x0b\x7e\xe8\xfb\x29\xdd\xfb\x60\xec\x8b\x00\x3c\xd9\x03\x40\x6c\ \xa7\xc4\x71\x0c\x41\x10\xd0\x16\x1e\xc5\xcd\x26\x0c\x58\xad\x56\ \x37\x74\x46\x3d\x71\x34\x1c\xde\xb6\x00\xa1\xd6\x96\x6a\x75\xae\ \x90\x3c\x50\xe7\x8c\x24\xec\xbc\x56\xaf\xd7\xf3\x19\xa0\x1b\xd9\ \xb3\x78\xa3\x56\xd2\x01\x4b\x05\x6a\x4d\x9d\x2d\x80\x67\x00\xec\ \x8d\x14\xc8\x05\xb0\x19\x80\xf2\x8e\x18\x6a\x6d\x68\x99\x06\x08\ \x96\x2a\x22\xe3\x49\xa6\xd9\x00\x74\xde\xf2\x1d\x7d\x90\x66\x82\ \x5e\xd7\x69\x76\x01\x66\x03\x2b\xa9\x37\x70\x1b\x5d\x88\x01\xb8\ \xa6\x81\x7f\x40\x10\x11\xaa\xaa\x82\xb2\xaa\x70\xfe\x3e\x4f\x18\ \x80\x94\x41\x2a\x16\x8a\xee\x4e\xb2\x9a\x93\x24\x01\xdf\x3f\x80\ \xbb\xf1\xf8\x65\xfa\x30\x9d\x70\xfe\x98\x74\x4e\xba\x60\xf5\x83\ \xe0\xbe\x28\x0a\x2c\xcb\x12\x69\x12\x6e\x36\x1b\xdc\x6e\xb7\xd8\ \x34\x0d\xae\xd7\x6b\x4c\xd3\x14\x07\x57\xd7\xaf\x54\x7b\xc4\x40\ \xa6\x5a\x0a\xc3\x70\xa0\x01\x75\x5d\x5b\x80\x9f\x3c\x6f\x2e\x87\ \xa3\x67\x6e\x26\x71\xfd\xfe\x37\x88\xa2\xe8\x49\xfd\x1f\xd2\xcd\ \x7d\x2e\x16\xf9\xdb\x6c\xf6\x48\x8d\xb9\x8e\xfd\x02\x81\x94\x9d\ \xac\x38\xaa\x49\xce\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x02\x5f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xdc\x49\x44\ \x41\x54\x38\x8d\xa5\x53\x4d\x6b\x13\x51\x14\x3d\xf7\xa5\xf3\xc1\ \x64\x66\x60\x5a\x5a\x4b\xfd\x28\x96\x66\x51\xb1\xc5\x56\x02\x82\ \x74\x11\xc4\x65\xdd\xfa\x13\x8a\xb8\x70\xe9\x4a\x14\x7f\x41\x57\ \x2e\x0a\x82\xe0\x4a\xb2\xad\xae\x84\x86\x22\x88\x46\xe2\x47\xc1\ \xd8\x42\x95\x68\x28\xd1\x36\xe9\x64\xd2\x24\xf3\xf5\xde\x73\x65\ \x6a\xed\x34\x28\xde\xdd\xbd\xe7\x70\xee\xb9\xef\x71\x48\x4a\x89\ \xff\xa9\x81\x7f\x21\xd3\x02\x9d\xd4\xf4\xd4\x05\xdb\x31\x8d\x1f\ \xcb\x6e\x1e\x00\x28\xc9\x01\xe5\x48\x87\x89\x99\xb3\xd3\xa3\xf3\ \x63\xe3\x43\xf3\xce\x88\x75\xde\xb1\xec\x53\x43\xb6\xa3\x0d\xa6\ \x1d\xbc\x7a\x51\x7e\xb3\xb2\x58\xc8\x1e\xeb\x60\xf6\xda\xf8\xe2\ \x95\x4b\xb9\x25\x06\x05\x7e\x10\xa1\xe3\x07\xe8\xb4\x7c\x7c\xa9\ \x79\x58\x6f\xd5\x50\xa9\x7e\x6b\xf4\x3d\x41\xb1\x14\xac\xbe\x7d\ \x87\x46\xe8\xa2\x19\x37\xe1\x86\x4d\x08\x2e\x02\x44\xf8\xc8\x38\ \x6d\x29\x6d\xe6\xf5\x15\xf0\x29\x50\x36\xbf\x57\x5e\xfb\x6a\x54\ \x80\x86\xf7\x50\xf1\x01\x6d\x7c\x92\xf7\x65\x3c\xf9\xe4\xc4\x65\ \xaf\xd4\xb9\xd3\x57\xc0\x1e\xb6\x42\xb5\x50\x2f\x76\x1f\x87\xb7\ \xff\xc4\x4c\xd2\x11\x30\x4e\x7d\x05\x0c\xa6\x33\x22\x50\x12\xa6\ \xa5\x4c\xa6\xa7\xe2\x1e\xc6\x92\x48\x9c\x4b\x76\x0c\x84\x38\x8c\ \x28\x12\x07\x3f\x97\xc8\x6a\x86\x5d\x70\xc1\x13\x05\xf6\xa2\x7d\ \x74\xa2\x6e\xaf\x4f\x3c\xa1\x11\xb4\xc1\xa5\x38\x34\xcb\xed\x90\ \x59\x5d\x43\xa6\xbe\xa1\x4e\x86\xf1\xc1\xde\x44\x07\x6e\xd0\x42\ \x2c\xe2\x5e\x9f\x79\x40\xd7\x47\xb7\xe7\xaa\xe9\x09\x94\x54\x23\ \x7c\xe8\x7f\xf6\xb5\x23\x0e\xe6\xf2\x34\xcc\xce\xe1\xde\x7e\x05\ \xd3\xc1\x06\x46\xe2\x1d\xda\xfa\x85\x05\xbb\xc8\x96\xbf\x96\x2c\ \x63\x96\xc1\x1a\xc3\x4b\x4f\x13\x37\x8f\x08\xd4\xb7\xf1\x74\x61\ \xe6\x6a\xb6\x3c\x55\x84\xb7\xee\xc6\xed\x48\xde\x05\x00\x22\x32\ \x00\x2c\xd7\x32\x28\x8a\x3d\xb2\xf9\x2e\xdf\x04\xd0\x22\x22\x26\ \xa5\x14\xbd\x2c\x9c\xbe\xa5\x5e\x4c\x4f\x89\x1b\x03\x67\x10\xd6\ \x1e\xf1\x67\xf5\x3c\x9e\x4b\x29\xfd\xc4\x97\xfc\xad\x0e\x85\x89\ \x88\x52\x00\x08\x00\x97\x7f\x99\xf3\x9f\xf1\xc3\xc9\xfa\x1d\x76\ \x03\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x03\xb2\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x2f\x49\x44\ \x41\x54\x78\xda\x5d\x93\x4b\x4f\x1b\x67\x14\x86\xdf\xb9\x9a\xf1\ \x35\xd4\x30\x80\x5d\x30\x34\x76\x0a\xa9\x62\x64\xa5\xc5\x11\x5d\ \x21\x58\x75\x89\xba\xe9\xb6\xab\x4a\x49\xb7\x2c\xf9\x05\x20\xf5\ \x0f\xb0\xa8\x14\x2a\xb5\xdd\x77\x81\x2a\x41\x43\x85\x6c\xab\x44\ \x56\x2c\x5a\xda\x92\xc4\xe3\x00\x1e\xc0\xf1\x95\xf1\x65\x3e\xcf\ \x4c\xcf\x58\x05\x45\x79\xa5\x33\x33\x8b\x73\xde\xef\x9c\xe7\x7c\ \xc3\x39\x8e\x83\xf7\xc5\x71\x9c\x08\x60\x8c\x62\x26\x12\x89\xdc\ \x5f\x5e\x5e\x7e\x34\x3f\x3f\x3f\xab\xeb\xba\xb9\xb1\xb1\xf1\xe5\ \xe1\xe1\x61\x7b\x73\x73\x73\x74\x7b\x7b\x5b\xe3\x00\xf0\x14\x13\ \xff\x27\xcf\xad\xac\xac\x3c\x4a\x26\x93\xb3\xe9\x74\x3a\x3e\x39\ \x39\x19\x56\x14\x45\xb8\x31\x36\x0c\x83\xcd\xcd\xcd\x7d\xa1\xaa\ \xea\x77\x13\x13\x13\x23\x9a\xa6\xbd\x12\x01\x3c\x7c\x4a\x5a\x5c\ \x5c\xbc\x2b\xcb\xb2\xc0\x18\x73\x3b\x80\x28\x8a\x10\x04\x01\x1c\ \xcf\xa3\xd1\x71\xf0\xf6\xda\x42\x62\xfc\x03\x69\x78\x78\x38\xb1\ \xbe\xbe\x7e\x8f\x0e\x93\xf2\xf9\xbc\xe2\x1a\xe8\xd3\xd3\xd3\x2a\ \xb3\x1c\xe1\x58\xbb\xc6\xc7\x11\x05\xf5\x36\x50\x31\xfa\x00\x1c\ \x32\x72\x10\x0e\xc8\x98\x19\x1f\x82\xcf\x2b\x83\xba\xba\xbf\xb6\ \xb6\xf6\x72\x75\x75\x75\x76\x6b\x6b\x4b\xe3\x01\x5c\x64\x32\x99\ \xe3\x8b\xa6\x85\x17\xe7\x0c\x27\x57\x16\x15\x49\xf8\xf4\xa3\x20\ \xd2\xf7\x42\x88\xa9\x5e\x74\x2d\x1e\x27\x97\x7d\x34\xa9\x93\x54\ \x2a\xf5\x89\xdb\xa1\xc7\xe3\x19\xe0\xe2\x09\xa2\x49\x06\x85\xa9\ \xb0\x8c\x58\xd8\x83\xa0\x4f\xc2\x95\xe1\x90\x99\x89\x3f\x29\x04\ \x32\x4b\xcd\x04\xf0\x60\xca\x0f\x9e\x46\x5a\x5a\x5a\x9a\xa5\x62\ \x81\xa7\xd1\x5c\x0d\x9e\x3b\x3b\x3b\x99\x76\x5f\x44\xb3\x4b\xed\ \xfa\x3d\xf8\xec\x6e\x10\xb1\x11\x1f\x44\x49\x40\xb9\xc6\x70\xf8\ \xfa\x1a\xc5\xab\x1e\x25\xdb\x88\xc7\xe3\xa3\xd1\x68\xd4\x13\x08\ \x04\x1c\x00\x83\x75\xa1\xd9\x6c\xfe\x3b\x24\x58\xb6\x47\x16\xf9\ \xfc\x9b\x2e\xc6\x5a\x0e\x3e\x0c\xfb\x10\x1f\xf3\xa2\x66\x58\xb8\ \xa8\x77\xd1\x30\x4c\x74\xba\x26\x02\x7e\xbf\x48\x1c\x86\x6a\xb5\ \x9a\x3d\x18\x01\x18\xe8\xf5\xd5\xa5\xde\x48\x46\xbd\xb0\x6c\x8e\ \xe8\x8b\xd0\x9b\x26\x4a\x95\x1e\xbc\xb2\x83\x87\x33\x3e\xa4\x62\ \x0a\x46\x83\x22\x5a\x6d\x06\xbf\xdf\x3f\x54\x2e\x97\xad\x77\x0d\ \x2e\xf7\xf7\xf7\x8f\x43\x44\x3b\x44\x8b\x49\xc7\x83\x78\x30\x19\ \x80\x28\x00\x27\x7a\x07\xd9\x93\x26\xf2\xc5\x6b\xf4\x58\x1f\x9c\ \xcd\x40\xdc\xa4\x4a\xa5\x62\xdd\x32\x70\x41\x1e\x1c\x1c\x14\x44\ \xaa\xd0\xde\xf6\x90\x7b\xd5\x82\x56\xe9\x42\x0d\x4a\x70\xe1\x0a\ \x94\x45\x6b\xc6\x79\xb5\x07\xbd\xde\x43\xa9\x54\x12\xaa\xd5\x2a\ \x13\x05\x5e\xb8\xbd\xca\xa1\x50\xe8\x6b\xed\xcd\xf9\xd6\x2f\x2f\ \x1a\x98\x1e\x51\xe0\x0c\x8c\x6d\x8c\xf8\x05\x8c\x87\x24\x74\xcd\ \x3e\x4a\x04\xb2\xd5\xe9\x80\x9d\x3e\x73\x54\x6f\x91\xfb\xf9\xa7\ \xef\xff\x1a\x40\xbc\x01\xd9\xed\xb4\xed\xe8\xb0\x87\x8f\xa9\x0a\ \xb1\x70\x70\x5a\x69\xa3\x5c\x67\x38\xab\xba\x2c\x78\x44\xee\x88\ \x50\x15\x07\x3f\xee\x14\x59\xa7\x92\x91\x7f\xcd\xb6\xbe\xb9\x35\ \x70\x41\x9e\x9d\x96\x9a\x4c\x9a\xba\xf3\xfb\x71\x1d\xe9\x44\x10\ \xc9\x29\x5a\x25\x0f\xd8\xb6\x0d\x57\xad\x56\x8b\xfd\x71\x74\xa4\ \x67\xb2\xcf\x8b\xcf\xf6\x7e\x4b\x54\xeb\xc6\xfe\xbb\x06\x17\xbb\ \xbb\xbb\x47\x8f\x9f\x7c\xfb\xb9\xe5\xf0\x50\x64\xde\x21\x50\xac\ \x50\x28\xe8\x04\x58\xcb\x66\xb3\x7f\xd3\x7d\xc9\xd1\xc8\x2f\x41\ \x6c\x29\xce\x1d\xd2\xad\x01\x7d\xb3\x85\x85\x85\x6c\xa3\xd1\xb0\ \x72\xb9\xdc\x3f\x7b\x7b\x7b\xcf\x4d\xd3\x74\x93\x8b\x14\x67\x14\ \x06\xe5\xdc\xfc\xee\x5f\x01\x48\xd0\xfb\x87\xff\x00\xdf\x34\x7e\ \xa9\xf2\x5a\xd3\x9b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x03\x1b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x98\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x4d\x48\x14\x61\x18\xc7\xff\x33\xbb\xe3\ \xa6\xd9\xd7\xda\x52\xec\xe6\xb4\xe4\x65\xc5\x18\x8c\x8e\x0a\x5d\ \x0a\xbc\x04\x41\x84\x12\x1e\x42\x3a\x58\xd3\xa1\x6b\x08\x11\x1d\ \xea\x12\x95\xd0\x61\xc3\xa2\x3a\xe4\x46\xe2\x1a\x24\x68\xac\x60\ \x1f\x08\x65\xb5\xda\xd8\x84\x52\xe2\x7e\xb1\xd6\xba\xed\x36\xb9\ \x33\xbb\xce\xec\xbe\x4f\x97\x35\x57\xac\x93\xcf\xf1\x85\xff\xef\ \xe5\xe1\xff\x7b\x38\x22\x42\xe5\x70\x1c\x27\x00\x70\x02\x70\x01\ \x70\x97\x9f\x93\x00\x96\x00\x64\x88\xc8\x5a\x17\x20\x22\x54\x40\ \x9c\xa2\x28\x76\x06\x02\x81\x61\x55\x55\x15\x5d\xd7\xb3\xba\xae\ \x67\x55\x55\x55\x02\x81\xc0\xb0\x28\x8a\x9d\x65\xf8\x5a\xae\x22\ \xec\x93\x65\xb9\x57\xd3\xb4\x54\xae\x60\x51\xdf\x88\x42\xe7\x6e\ \x8d\xd2\xf9\xdb\xa3\xf4\x60\x74\x86\x72\x05\x8b\x34\x4d\x4b\xc9\ \xb2\xdc\x0b\xc0\xb7\x0a\x59\x05\x38\x65\x59\xee\x65\x8c\xb1\xc0\ \xf8\x2c\x79\x3b\xee\xd0\xc1\xae\xbb\x34\x97\xc8\xd2\x97\xc8\x0f\ \xea\xee\x9b\xa2\x96\x0b\x0f\xe9\xe9\xcb\x59\x62\x8c\xb1\x32\xc4\ \xb9\xfa\xb9\x20\x8a\x62\xa7\xa6\x69\xa9\xa1\x89\xaf\xe4\x3c\x7e\ \x83\x5a\x2e\xbf\x22\xf9\x7e\x98\x74\x5d\x27\xc6\x18\x5d\xea\x9f\ \xa1\x93\x37\xdf\x52\xdb\xb5\x09\x1a\x9b\x8a\x92\xa6\x69\xa9\xf2\ \x3a\x82\x0d\x80\xcb\xef\xf7\xf7\x34\x49\xcd\xcd\x67\xae\x0f\xa1\ \xc6\xe3\x83\x8d\xe7\x90\x37\x09\x8b\x19\x1d\x93\xdf\x32\x98\x8e\ \xe5\x60\x98\x25\xac\x14\x19\xa6\xe3\x3a\x3a\x5a\xbd\x5b\xeb\x3d\ \x6e\xc7\xe0\xe0\x60\xc8\x0e\xc0\x25\x49\x92\x18\x9a\x8a\x21\x95\ \x2b\xa2\xc4\x5b\xb0\x4a\x04\xbb\x8d\xc3\x42\xc6\x82\x6f\xaf\x80\ \xf4\xb2\x09\xc3\x2c\x41\x2f\x14\x11\x4b\x33\x8c\x7f\x8a\x43\x92\ \x24\x11\x80\xcb\x0e\xc0\xed\xf5\x7a\xeb\x1f\xf5\xbf\x47\xc9\x51\ \x87\xbc\x59\x42\x32\x5b\x40\xda\x7f\x14\x3b\xb7\xd5\x80\x31\x86\ \x9e\x81\x39\x54\x57\xd9\x50\xeb\xb0\x83\x00\xcc\xc4\x96\x71\xa4\ \xad\xa1\x1e\x80\x9b\xaf\xac\xf4\x67\xce\xc2\x8e\x1a\x01\x00\xb0\ \xbb\x7b\x0c\x86\x61\x00\x00\xaa\xec\x3c\xb6\x08\x36\x08\x76\x0e\ \xb9\x42\x11\xc4\xad\x65\x78\x00\xc9\x48\x24\x12\x6f\x95\x44\xac\ \x14\x74\x08\x36\xfe\x2f\x24\x9f\xcf\xc3\x30\x0c\xd4\x3a\xec\xa8\ \xae\xe2\xf1\x4b\xb7\xa0\x19\x16\x0e\x1f\xa8\x43\x24\x12\x89\x03\ \x48\xf2\x00\x96\x14\x45\x89\x1d\x3b\x24\x62\xff\x76\x20\x9a\x36\ \xe0\xf3\xd4\xc2\xe3\xac\x86\x61\x18\x30\x0c\x03\x3c\xcf\x61\xe9\ \xb7\x89\xac\x6e\xa1\x69\xdf\x76\xb4\x36\xee\x81\xa2\x28\xb1\xb2\ \x9d\x6b\x35\x86\xc2\x51\xaa\x3a\x71\x8f\x76\x75\x3d\xa7\x70\x38\ \x4c\xaa\xaa\xd2\xfc\xfc\x3c\x25\x12\x09\x42\x7b\x90\x84\xd3\xcf\ \xe8\xcd\xe7\xef\xeb\x6a\xdc\x20\x52\x28\x1c\xa5\x86\xb3\xfd\x84\ \x53\x03\x84\xf6\x20\x71\x1d\x41\x42\x7b\x90\x1a\x2f\x8e\xd0\x6b\ \x75\x71\xa3\x48\xff\x52\x39\x6f\x16\x69\xf8\xdd\x02\x5d\x79\x3c\ \x49\x57\x9f\x7c\xa0\x17\x1f\x63\x94\x37\x8b\xff\x57\x79\x33\xc7\ \xc4\x6d\xf6\x9c\xff\x00\x21\x6f\xc6\x8f\xe7\x92\xcc\x66\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xfa\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ \x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ \x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ \xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ \x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ \x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ \xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ \x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ \xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ \xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ \x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ \xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ \x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ \x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ \x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ \x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ \xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ \x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ \x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ \x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ \x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ \x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ \x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ \x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ \x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ \xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ \xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ \x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ \xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ \xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ \x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ \xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ \xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ \xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ \xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ \x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ \x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ \x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ \xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ \xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ \xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\xe4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ \x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x61\x49\x44\ \x41\x54\x38\x8d\xa5\x93\x3f\x48\x1b\x71\x1c\xc5\x3f\x97\xe4\xee\ \x42\x34\x69\x72\x36\xa5\xc9\x10\x84\x0a\x5a\x5b\xed\x2e\x08\x82\ \x20\x62\xb3\x74\x56\x07\x43\x24\x22\x88\x10\x14\x1d\x5c\xdc\x9c\ \x1c\x0c\x0e\x2e\x82\xa5\x55\xf7\x0a\x16\x0a\x0e\xa2\x2d\xa9\xd8\ \x42\x6d\x11\xea\xa2\x55\x2f\x86\x84\xa8\xf1\xf4\xce\x24\xe6\xd7\ \x49\x4b\xc1\xfe\x01\xdf\xf4\x96\xef\x87\xc7\xe3\xfb\x24\x21\x04\ \x92\x24\xd9\x00\x0d\x78\x0c\xf8\xf9\xbb\x32\xc0\x36\x90\x13\x42\ \x94\x01\x6c\x9a\xa6\xb5\x25\x12\x89\x45\x5d\xd7\xf7\xc4\x3f\xa4\ \xeb\xfa\x5e\x22\x91\x58\xd4\x34\xad\x0d\xb0\x39\x00\x6d\x7c\x7c\ \x3c\x12\xed\xe9\x79\xfe\x7e\x72\xd2\x5a\x5f\x5b\x13\x12\x48\x36\ \x45\xc1\xe1\x74\x62\x77\x3a\x29\x99\x26\x45\xc3\xc0\xae\x28\x3c\ \x68\x6d\x75\x47\xa3\xd1\x30\xc0\xc0\xc0\xc0\x27\x09\x68\xd6\x75\ \xfd\xd5\xf6\xf4\xb4\x27\xb3\xba\xea\xf5\xd5\xd6\xa2\x7a\x3c\x38\ \x35\x0d\x67\x55\x15\x76\x45\xa1\x64\x9a\x58\xb9\x1c\x66\x2e\xc7\ \x65\x2e\xc7\xbd\x86\x06\xa3\xba\xb3\x33\x17\x0c\x06\xbb\x6c\x80\ \x3f\x10\x08\x84\xbe\xcf\xce\x7a\x6d\x8a\x82\x10\x82\xfa\x48\x04\ \xc9\xe1\xe0\xfc\xe8\x08\x43\xd7\x29\x16\x0a\xdc\x6b\x69\xa1\x5c\ \x2e\x73\x55\x28\xf0\x63\x69\xa9\x32\x10\x08\x84\x00\xbf\xed\xba\ \x99\x8b\x74\x9a\x92\x65\xf1\xa8\xbb\x1b\x4f\x4d\x0d\x4f\x7b\x7b\ \xb9\x2a\x16\x29\x5d\x5e\xf2\x30\x1c\x46\x09\x06\xd1\xda\xdb\x39\ \xdb\xdf\x27\xbf\xbb\x7b\xd3\xa8\xe3\xda\x88\x72\x99\x73\x5d\xe7\ \xc3\xe8\x28\x9e\x85\x05\xee\x87\x42\x34\xf4\xf7\x63\x59\x16\x45\ \x45\xc1\x4c\xa5\xf8\x36\x31\x81\x79\x70\x40\xc9\x34\x6f\x00\x37\ \x09\x00\x90\x24\xb2\x9b\x9b\xbc\xe9\xe8\xe0\xf4\xf0\x10\x97\xdf\ \x8f\xe2\xf3\x61\x65\xb3\x7c\x8c\xc5\x30\x76\x76\x00\x28\x9e\x9f\ \xdf\x0e\x28\x1a\x06\x76\x55\x45\x08\x41\xa1\x50\x40\x96\x65\x64\ \x59\x46\x55\x55\x64\xa7\x13\xd9\xe5\xa2\x70\x76\xf6\x67\x80\x99\ \xcd\xe2\x6b\x6c\xa4\x69\x6e\x0e\xc9\xed\x26\x9f\x4a\x21\x0c\x03\ \x77\x20\x40\xd3\xcc\x0c\x52\x65\x25\xd6\xf1\xf1\x6f\xa1\x6f\x00\ \x36\x59\xc6\xe1\x72\x11\x8a\xc5\x90\x7d\x3e\x2e\x32\x19\xde\x76\ \x75\xf1\x2e\x12\xe1\x2a\x9f\xc7\xe5\xf7\x53\x17\x8f\x83\x10\xb7\ \x03\xe4\x8a\x0a\x8a\x86\xc1\xd6\xf0\x30\xe9\x64\x92\xf5\xbe\x3e\ \xd2\x1b\x1b\xec\xaf\xac\xb0\x14\x0e\x93\x4d\x26\xf9\x3c\x34\x04\ \x80\xea\xf5\xfe\xaa\xed\xfa\x91\xbe\x4e\x4d\x79\xbe\x4c\x4c\x78\ \xf9\x0f\x3d\x1b\x19\xc9\x3f\x19\x1c\x3c\x09\x06\x83\x5d\x76\xe0\ \xa2\xba\xba\xba\xf1\xc5\xe0\x60\x9d\x05\xa7\x27\x5b\x5b\xae\x2b\ \xcb\x92\x6e\x3b\x54\xbd\x5e\xea\xe3\xf1\x4c\xf3\xd8\x98\xfa\x7a\ \x7e\x7e\x65\x79\x79\xf9\x25\xdc\x71\x4c\xd2\x5d\xe7\xfc\x13\x60\ \xdb\x4d\xfb\x64\xb3\xd1\xa8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x04\x6d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x04\x05\x10\x0a\x39\x9f\x72\x42\xff\x00\x00\x03\xfa\x49\x44\ \x41\x54\x58\xc3\xb5\x96\x41\x4b\x63\x57\x14\xc7\xff\xe7\xde\x67\ \x92\xd1\xb4\x9d\x44\xd0\x6a\x48\x23\xe8\x68\x56\x05\x41\xa1\xe3\ \x42\xe8\xcc\x42\xba\x95\x52\x86\x0a\x5d\xb8\x75\x91\xf8\x09\x5c\ \x5b\xba\x2b\xfd\x0a\x53\x98\x0f\x50\xba\x91\x52\x67\xe3\x62\x2a\ \x88\x14\xa6\x68\xba\xb0\x55\x32\x4c\x8d\x26\xcf\xbc\xf7\xf2\xde\ \xbd\xe7\x76\xf1\x5e\x62\x62\x65\x26\x29\x79\x37\x04\x92\xfb\xce\ \xbb\xf7\x77\xce\xff\x9c\x73\x2f\xa1\xcf\xf1\xe3\x8b\x17\x7e\xe1\ \x93\xbc\xc8\x66\x32\x94\x4e\x7f\x40\xc9\x44\x02\x9a\x19\xbf\xbd\ \x7a\x85\xcf\x1e\x3f\x36\xbe\xdf\xa2\x66\xd3\x31\x97\xb5\x4b\x53\ \xa9\xfc\xc9\x5f\x3f\x7b\x96\xe8\x67\x5d\xd1\x2f\xc0\x55\xad\x36\ \xe2\x34\x1d\x59\xab\x5d\x09\xd7\x75\x29\x99\x4c\x52\x2a\x99\xa4\ \xa3\xa3\x23\x4a\x26\x12\x42\x08\x49\xcc\x5a\x28\xa5\xa4\x66\x3d\ \xd2\xef\xba\x7d\x03\x64\xc7\xb3\xc8\xe5\x72\x98\x29\x14\x50\xaf\ \xd7\x3b\xf3\x96\x94\x00\x00\x22\x02\x91\x00\x11\x61\x90\xd1\x37\ \x80\xd6\x1a\x5a\x2b\x28\xad\x21\xa2\x4d\x7c\xad\x61\x8f\xa6\x23\ \x80\x5b\x5b\x13\x07\x80\x31\x06\x00\x81\x08\x10\x22\x7c\xcd\xf5\ \x03\x9c\xe7\x67\x23\x20\x0a\xbd\x27\x02\xc5\x07\x00\x18\xd3\x0e\ \x37\x21\x69\x49\x4c\x54\xff\x86\x69\x47\x80\x10\xc2\x98\x18\x01\ \x80\xdb\x08\x24\xa4\x44\xb6\x7e\x19\xcd\x52\xf8\x21\xc2\x20\x21\ \x18\x1c\x20\xf2\xbe\x3d\x67\x00\x90\x08\xc3\xde\x96\x00\xb1\x49\ \x10\x39\xd7\x0d\x20\x84\xc0\xeb\xd7\x7f\x74\xec\x06\xcb\x80\x41\ \x00\xd8\x20\x92\xb9\xa7\xd4\x98\x19\x0b\xf3\xf3\xe1\xb6\x04\x08\ \xd1\xb6\x1a\x36\x40\x18\xec\x36\xc1\x7f\xf2\xc2\x00\x30\xcc\xf0\ \x3c\x0f\x4a\x05\xc3\x07\x08\x82\x00\x0d\xbb\x81\x56\xcb\x87\xef\ \xfb\xa1\xfe\x9d\xca\x30\x50\x5a\xc3\x75\x3d\x38\x8e\x03\x66\x8e\ \xa1\x11\x31\xa3\xd5\x6a\x21\x08\x02\x04\xc1\xad\x87\xb7\x72\x84\ \x40\xcc\xa6\x27\x32\x43\xcd\x01\xd6\x0c\xbe\xe3\x79\xb7\x44\xe1\ \x33\x1e\x08\xc0\xea\xd7\xf0\xe6\xc6\xc6\xf5\xf5\x35\x2c\xcb\x82\ \x8c\xfa\x7f\xcf\x36\x86\x60\x4c\x08\xc8\x71\x00\xa4\xd3\x69\x4c\ \x4c\x4c\x20\x9b\xcd\x22\x93\xc9\xa0\xd3\x16\xbb\xca\x34\x94\x80\ \x61\x38\x06\x09\xfc\x20\xc0\xf5\xf5\x15\x5a\xbe\x0f\xad\x75\x4f\ \x04\x4c\x04\xc0\xda\x84\x52\x19\x8e\x27\x07\x20\x04\x98\x75\x77\ \x77\x02\x88\x20\x04\x85\x67\x00\x99\xb0\x5c\xe3\x90\x20\xf4\x90\ \xc1\xfa\x36\xc9\xd8\x18\xb8\xae\x8b\x5a\xed\x0a\x8e\xe3\xa0\xd9\ \x6c\xc2\x71\x5c\x38\xae\x3b\xfc\x08\xb0\xe1\xf0\x4e\x10\x65\xb9\ \x01\x60\xb4\xc6\x87\x52\x62\x7c\x7c\x1c\xfb\xfb\xbf\xe2\xe5\xfe\ \x4b\xa4\x52\x49\x8c\x58\x56\x0c\x00\xcc\xd0\xac\x3b\xa5\xa8\x94\ \x82\xef\x38\x18\x6b\x34\xa0\x82\x00\x04\x82\x6d\x37\x22\x3b\x8e\ \x41\x02\x36\xf0\x7d\x1f\xff\xbc\x7d\x0b\xcf\x75\x51\x28\x14\xe0\ \x7a\x1e\xa6\xdf\xbc\x81\xe3\xba\xf8\xfc\xc9\x13\xcc\x17\x17\x70\ \x7e\x71\x11\x4f\x27\x04\x42\xbd\x49\x10\x32\x0f\x1f\x82\xb5\x06\ \x88\x30\xf6\xf4\x29\x6e\x6e\x6e\x60\xdb\x36\x1a\xb6\x8d\x66\xb3\ \x09\xd6\xb1\x00\x00\x41\xcb\x87\xd6\x8c\x96\xef\xc3\x0f\x02\xa4\ \x46\x47\x91\x5f\x59\x81\xe7\xba\xe1\xf9\xa0\x19\x5a\xe9\xde\x4a\ \x19\xc6\x98\x7b\xf4\x48\x46\x3f\xc7\x00\x4c\x03\x58\x58\x5a\x5a\ \xfa\xa1\x54\x2a\x99\x72\xb9\x6c\x00\x7c\x01\xa0\x18\x3d\x4b\x03\ \xc0\xec\xdc\x9c\x1c\x5a\x0e\x9c\x9e\x9c\xb4\x5d\x6a\x46\x5f\x5a\ \x5b\x5b\xab\xae\xae\xae\x82\x99\x71\x7c\x7c\xfc\xfb\xde\xde\xde\ \x5f\xdd\xdd\xb9\x72\x7a\xaa\x87\x2a\x41\xb9\x5c\xee\x49\x88\xc9\ \xc9\xc9\x60\x66\x66\x06\xf9\x7c\x1e\x30\xba\xd5\xbd\xf9\xf6\xf6\ \x76\xdf\xd1\x1d\xe8\xfe\xb4\xbb\xbb\xfb\x9d\x66\x53\x44\xe2\x23\ \x61\xa9\xc6\xec\xe4\xc7\x93\xf3\x5a\x6b\x5c\x54\x2f\x7f\x11\x23\ \x0f\x5c\xe3\xd7\x31\x35\x35\xfd\xf3\xe6\xe6\xe6\xf7\xff\x1b\x60\ \x67\x67\xa7\x90\xcb\xe5\xbe\x05\xd0\x73\xad\x51\x4a\xa9\xe5\xe5\ \xe5\x2f\x53\xa9\x07\x63\x3e\x4b\x84\x17\x34\xd3\x59\xc6\x22\x0d\ \x49\x0c\xa5\xd4\xf9\xc1\xc1\xc1\x9e\x6c\x1f\x99\x00\xa4\x94\x48\ \xa5\x52\xcf\x37\x36\x36\x7e\x7a\x6f\x0e\x2c\x2e\x2e\x4e\xad\xac\ \xac\x7c\x75\xf7\x4c\xd7\x5a\xe3\xf0\xf0\x10\xd6\x3b\xba\x9c\x31\ \x06\xf9\x7c\x3e\xb7\xbe\xbe\xfe\x4d\x8f\xce\x42\xa0\x5a\xad\x9e\ \x00\x78\x3f\x40\xad\x56\xa3\xb3\xb3\xb3\x4e\xbf\x27\x22\x78\x9e\ \x07\xdb\xb6\x51\xa9\x54\xd0\xe5\xd8\xbd\xdd\x52\x4a\x09\xcf\xf3\ \x7a\x2e\x25\x52\x4a\xd4\xeb\x75\x6b\x90\x1c\x10\xf7\xfc\x57\xa5\ \x52\xe9\x08\xc0\xa7\xef\x02\x28\x16\x8b\xcf\xb7\xb6\xb6\x36\xee\ \xac\x41\x00\xee\xad\x8a\x7f\x01\x07\xc8\x41\x0a\x6a\xfd\xe4\x85\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x60\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x04\x05\x10\x0c\x13\x12\x93\x2c\xaf\x00\x00\x01\xed\x49\x44\ \x41\x54\x38\xcb\xb5\x93\xcf\x6b\xd2\x01\x18\xc6\x3f\x9b\xd5\x9c\ \x4e\xd6\x21\x91\xcd\x53\x87\x45\x08\x5d\x1a\x45\x4a\x50\x6c\xff\ \x82\x8c\xe1\x2f\x3c\x74\x0d\x47\x1b\x41\x97\x61\x56\xc8\xee\xb9\ \x56\xab\x0e\x06\x4d\xd8\xb7\xd5\xc5\x36\x96\x8e\x1d\xc4\x6a\x99\ \xbf\x96\x96\x2c\xc1\x28\x92\x20\xdd\x64\x5e\x0c\xe3\xed\x90\x46\ \x54\xab\x75\xd8\x03\x2f\x3c\x87\xf7\xf3\xf0\xc2\xfb\xbe\xb0\xc7\ \xd2\xb4\xea\xff\xa5\x28\x8a\x5f\x5a\x9a\x57\xe6\xfd\xbb\x06\xdd\ \x6e\xf7\xf0\x7a\x26\x9b\xcb\xbc\xcf\x88\x71\xca\x28\xc6\x29\xa3\ \xa4\xde\x25\xe5\xc5\xf3\xb5\x9c\xc3\xe9\x18\xde\x11\xf4\x8c\x9d\ \x1f\x5d\x5d\x5d\xc9\x67\x0b\x69\x71\xdc\xb5\x0b\xd7\x10\x1e\x21\ \x3c\x44\xb8\x8a\x8c\xdc\x1c\x91\x68\x2c\x22\xa1\xb9\xfb\xaf\x5d\ \x2e\xc7\x68\x9b\x53\xb5\x8d\xd9\x72\xea\xd2\x46\x73\x63\xc8\xa5\ \xb8\xc9\xaa\xd7\xe1\x30\xa0\x07\xd4\xdf\xbb\x72\xe5\x1c\xc1\xd5\ \x20\xd4\x38\xb4\x55\xda\xfa\xf2\x76\xa3\xb8\x00\xd0\xd9\x0e\xa8\ \x7c\xae\x14\x55\x2a\x15\x1c\x04\xba\x81\x5e\xa0\x07\xe8\x02\xff\ \x31\x3f\x61\x6b\x18\x74\xf0\xb5\xd9\xa4\x5e\xaf\x17\xdb\xdc\x8f\ \x80\x48\x64\x25\x66\x32\x1c\x85\x06\xcc\x9e\x9e\xc5\xaa\xb5\x42\ \x17\x4c\x6a\x27\x99\x30\x4d\x60\x8f\xda\x01\x30\xaa\xfb\xc9\xbd\ \xca\xc7\xda\xdc\xbe\xb6\x29\x7f\x2c\x27\x34\x0d\xed\xb6\x4e\xab\ \xd3\x05\x92\x01\x52\xe7\x52\x04\xb3\x41\x9c\x26\x27\xfa\xb0\x9e\ \x5a\x47\x8d\x1e\x55\x0f\xfb\xb7\x0f\xd4\xab\xd5\xcd\xc4\x6f\x13\ \x00\xd5\xa7\x6b\xcf\x16\x1d\x26\x1b\xe9\x6a\x9a\xc1\xd0\x20\xb6\ \x23\x36\xfa\x96\xfb\xa8\x68\x2a\xc8\x96\x70\xb6\xf7\x0c\x85\x62\ \xe1\x31\x50\xdd\x69\x19\x27\x9f\x44\x97\x44\xed\x55\x0b\x33\x08\ \xb7\x10\xc2\x08\x01\xa4\xdb\xdb\x2d\x97\x7d\x5e\x01\x4e\xfc\x0c\ \x74\xfe\x12\x90\x78\xa0\x2c\x84\xee\x0c\xdd\x86\x0f\xc0\x26\xb0\ \x0e\x7c\x82\x8b\xfd\x13\xc4\xe3\xf1\x39\xe0\xe5\xbf\x6e\xc9\x30\ \x3d\x7d\xbd\xb4\x94\x5e\x14\xcb\x8c\x45\xcc\x37\xcc\x72\x6f\x39\ \x28\x63\x1e\x4f\x09\x30\xec\xf6\x20\x07\x7c\x57\x7c\xa9\x42\xfe\ \x8d\x64\xd3\x59\x19\x1f\xbf\x90\x02\x06\xfe\xd4\xd8\xf1\x97\x90\ \x2e\xe0\x78\xcb\x27\x81\xc6\x9e\xbc\xeb\x37\x2a\x32\xcd\xb0\xbf\ \x04\x27\x47\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x41\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ \x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ \xde\x04\x05\x10\x0b\x2c\xeb\xb4\x97\x55\x00\x00\x01\xce\x49\x44\ \x41\x54\x38\xcb\x85\x92\xb1\x6e\x1a\x61\x10\x84\xbf\xdd\x3b\xc0\ \x67\x0b\x14\x5b\x27\x50\x94\x22\x8a\xa2\x28\xf2\x03\xa0\xbc\x06\ \xad\x3b\xdc\xd3\xb8\xf0\x23\x20\x21\xd9\x25\x0d\x55\xf2\x00\x2e\ \xe8\x90\xb0\x62\x8a\x13\x65\x24\xca\x84\x26\x74\x8e\x03\x92\x4d\ \x84\x39\x82\xc3\xbf\x29\x20\x48\x9c\xed\xb0\xdd\x3f\x9a\x9d\x7f\ \x76\x77\x20\x51\x9d\x4e\x07\x80\x8b\x8b\x8b\xc3\x28\x8a\x4e\xbb\ \xdd\xee\x69\xad\x56\x3b\x04\x88\xa2\x28\x49\x47\x78\xa2\x3a\x9d\ \xce\xc7\xe9\x74\x5a\x9e\x4c\x26\x38\xe7\xc8\x66\xb3\x14\x0a\x85\ \x4f\xc5\x62\xf1\x38\xc9\xd5\x24\xd0\x6e\xb7\x4f\x86\xc3\x61\x39\ \x8e\xe3\xb3\xc1\x60\xe0\x57\xab\x55\x7f\x34\x1a\x9d\xf5\x7a\xbd\ \x72\xbf\xdf\x3f\x61\x5b\xb5\x5a\xad\x9b\x46\xa3\x71\x95\xc4\xcf\ \xcf\xcf\xaf\xa2\x28\xba\xd9\xea\x60\x3e\x9f\xe7\x67\xb3\xd9\x65\ \xb3\xd9\x5c\x63\xf5\x7a\x1d\x55\xbd\x1c\x8f\xc7\xf9\xad\x02\x22\ \x42\x18\x86\x56\x2a\x95\xd6\x58\xa5\x52\x21\x97\xcb\x99\x73\x8e\ \x67\x05\xbe\x7e\x3e\x12\x00\xf1\x76\x08\x5f\xbe\x89\x93\xc4\xfd\ \xfc\xeb\x78\x61\x3e\x00\x51\xf3\x58\x9e\xbc\xc2\xf5\x97\x23\xe3\ \xee\x9b\xfd\xb8\x76\xf2\x73\x04\xe3\xbb\x29\xa2\x8e\x5c\x36\x20\ \x5f\x50\x5e\xbd\x3b\xb0\x5b\x3e\xc8\xfb\x62\x6d\xdd\xe7\x6f\xd8\ \xf1\x1e\xd8\xdd\xfb\x2e\xe1\x8b\x09\xf2\x00\x07\x01\x64\x32\x4a\ \x90\x81\x5c\x08\xfb\x85\xb7\xf2\xeb\xd6\xdb\x70\xe6\x3f\x4e\x85\ \x00\x06\x26\x38\x03\xcc\x61\x0e\xc0\x10\xec\x51\x74\x36\x97\x68\ \x89\xc9\x56\x82\x22\x82\xe8\xf2\x9d\x4c\x9e\xbf\x79\x01\x50\x75\ \x78\xb2\x40\x55\xf0\x00\x55\x41\x56\x8d\x82\x81\xd8\xf3\x02\x06\ \x98\x29\x0b\xa7\x38\xa7\x2c\x0c\x9c\x03\x67\x06\x66\xcb\x1f\x12\ \x1e\xfc\xe4\x0a\x44\x1c\x9e\x3a\x54\x1c\x9e\x2c\x1d\x78\x0a\xa2\ \x2b\x07\xff\x1b\x41\x55\xf0\x3d\xf0\x3d\x23\xe5\x83\x2d\x84\xb4\ \x3a\xd2\x1e\xa4\x3c\x43\xfc\x25\x27\xf9\xa9\x02\x3b\xbb\x81\xbf\ \x37\x8d\xff\xc4\xc0\x1e\x10\x00\x19\x20\xfd\x2f\xe1\xc0\x6f\x20\ \x06\xee\x83\x20\x15\xc4\xf1\xc3\x3d\x30\xfb\x0b\x7f\xbe\xa9\xbc\ \x51\xaf\x52\xae\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ " qt_resource_name = b"\ \x00\x06\ \x07\x8c\x46\xa5\ \x00\x72\ \x00\x65\x00\x6d\x00\x6f\x00\x74\x00\x65\ \x00\x0a\ \x09\x73\xc0\x28\ \x00\x6d\ \x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\ \x00\x07\ \x07\x3b\xe0\xb3\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ \x00\x08\ \x08\x86\xe2\x63\ \x00\x67\ \x00\x72\x00\x61\x00\x70\x00\x68\x00\x69\x00\x63\x00\x73\ \x00\x04\ \x00\x06\xfa\x5e\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\ \x00\x06\ \x07\xa2\xfa\xc3\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x73\ \x00\x05\ \x00\x73\xba\xf1\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\ \x00\x07\ \x0e\x10\x88\x53\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x73\ \x00\x06\ \x06\x8f\x92\xc3\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\ \x00\x09\ \x04\xec\x63\x15\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\ \x00\x07\ \x0c\xf7\x69\x73\ \x00\x65\ \x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\ \x00\x06\ \x07\x03\x7d\xc3\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\ \x00\x06\ \x07\xae\xc3\xc3\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x73\ \x00\x08\ \x0c\x9c\xf6\xe3\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x73\ \x00\x07\ \x08\xc4\x6a\x23\ \x00\x72\ \x00\x65\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x73\ \x00\x07\ \x0d\xc4\xc8\xbc\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ \x00\x07\ \x00\x47\x69\x53\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\ \x00\x05\ \x00\x7a\x64\xe3\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x73\ \x00\x09\ \x06\x0b\x44\x42\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\ \x00\x06\ \x07\xb0\xaa\xbd\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ \x00\x05\ \x00\x7b\x66\x33\ \x00\x74\ \x00\x6f\x00\x6f\x00\x6c\x00\x73\ \x00\x0f\ \x00\xe4\x12\x87\ \x00\x74\ \x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x5f\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x6b\x24\x07\ \x00\x74\ \x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x03\xd3\xe4\x67\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x67\ \x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x04\xce\x3f\xc7\ \x00\x74\ \x00\x61\x00\x67\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x09\x41\x2f\xc7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x67\ \x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1e\ \x01\x34\xc5\x07\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x5f\ \x00\x73\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0a\x5e\xd0\xe7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x65\x00\x78\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x03\x5f\x3a\xc7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x03\xa9\xec\x27\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x76\x00\x6f\x00\x6c\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x65\x00\x72\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0a\xe6\xf8\x67\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x03\x10\x21\x87\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x19\ \x0c\x67\x4a\x47\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x73\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x6d\x00\x61\x00\x6e\ \x00\x61\x00\x67\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x0f\xfa\xb9\xa7\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x68\x00\x65\x00\x6c\x00\x70\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\ \x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x03\xb2\x2b\x67\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x0d\x73\x66\x27\ \x00\x63\ \x00\x6c\x00\x65\x00\x61\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x16\ \x07\x0b\x20\x87\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6f\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x68\x00\x65\x00\x6c\ \x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x09\xa7\x07\x87\ \x00\x73\ \x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x5f\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x6c\ \x00\x69\x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x05\xf9\x90\x47\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x12\ \x07\x43\xd8\x07\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x16\ \x0c\xfc\x81\x27\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x63\x00\x6f\x00\x6f\x00\x6c\x00\x64\x00\x6f\x00\x77\ \x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1b\ \x04\xa0\x35\x87\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\ \x00\x5f\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1a\ \x0e\x16\x14\xe7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x69\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6f\ \x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x03\x06\x8c\xe7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x0b\x80\x8e\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6e\ \x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x07\xe3\xd8\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x1d\ \x0e\xb2\x00\x47\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x72\x00\x5f\x00\x6f\ \x00\x66\x00\x66\x00\x5f\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x03\x41\xcf\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x6f\x00\x66\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x1e\ \x05\x94\x31\x27\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6e\ \x00\x65\x00\x63\x00\x74\x00\x5f\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x01\xfd\xc3\x67\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x17\ \x06\x03\x96\xc7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x72\x00\x5f\x00\x6f\ \x00\x66\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0c\x9d\xfb\x47\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x72\x00\x5f\x00\x6f\ \x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x07\x49\xde\xc7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x02\x42\xcf\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x14\ \x00\x4a\xca\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\x72\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x21\ \x07\x1b\xd6\xc7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x6e\x00\x6f\x00\x74\x00\x5f\x00\x63\x00\x6f\x00\x6e\ \x00\x6e\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x5f\x00\x65\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x19\ \x03\x24\xbc\x07\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x5f\x00\x74\ \x00\x69\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0d\x4c\x37\x67\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x77\x00\x61\x00\x72\x00\x6d\x00\x75\x00\x70\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x00\xd6\xc8\x27\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x1c\ \x0b\xf6\xd9\x67\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x72\x00\x5f\x00\x6f\ \x00\x6e\x00\x5f\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1d\ \x02\x01\x28\xa7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x69\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x64\x00\x69\ \x00\x73\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x03\x8e\xde\xe7\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x15\ \x05\x29\x4e\x87\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x67\x00\x65\x00\x72\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x03\xb5\xde\x47\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x68\x00\x64\x00\x6d\x00\x69\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x18\ \x0d\x7e\x9d\x07\ \x00\x70\ \x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x5f\x00\x74\x00\x69\ \x00\x6c\x00\x65\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0e\xea\xff\x07\ \x00\x61\ \x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0e\xf9\x8d\xc7\ \x00\x61\ \x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x0d\x19\x6f\x07\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x03\x95\xc6\xa7\ \x00\x74\ \x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x09\xcb\x7d\x87\ \x00\x62\ \x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x07\x52\x49\x67\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x62\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x11\ \x01\x10\xd4\xc7\ \x00\x61\ \x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x16\ \x01\x98\xb7\xc7\ \x00\x61\ \x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\ \x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0a\x8b\x95\xe7\ \x00\x62\ \x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x0a\xad\x32\x47\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x14\ \x0d\xa9\x66\x87\ \x00\x62\ \x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x0f\xc6\x09\x07\ \x00\x74\ \x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x09\xf5\x86\x07\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6c\x00\x79\x00\x72\x00\x69\x00\x63\ \x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x07\xde\x82\x27\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x61\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x05\x0e\x96\x87\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x03\x45\x01\xc7\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x09\x45\x3c\x47\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x69\x00\x74\x00\x6c\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x07\xd8\x62\xe7\ \x00\x74\ \x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x09\x35\x9e\x47\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x61\x00\x75\x00\x74\x00\x68\x00\x6f\ \x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x6a\xa4\x07\ \x00\x74\ \x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x00\x8e\xa2\x87\ \x00\x62\ \x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x05\xcc\x59\x67\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0f\ \x0b\xa4\x5a\x27\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x06\xf0\x43\x87\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x00\x6a\xdb\x47\ \x00\x69\ \x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x6c\x00\x69\ \x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x0d\x2d\xfb\x87\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x10\ \x01\xdf\xeb\x47\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x09\xdf\xea\x07\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6c\x00\x69\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0f\xda\xea\xa7\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x07\x2b\x7c\xe7\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x72\x00\x65\x00\x76\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x10\ \x09\x5c\xed\xe7\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x04\x16\x6d\xa7\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x19\ \x07\x4d\x72\x87\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x72\x00\x69\x00\x67\ \x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x01\xec\x8b\x07\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0f\ \x0e\x36\xec\xe7\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0e\x89\xed\x67\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0d\x5b\xec\x87\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x06\x44\xfc\x07\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x12\ \x07\x1e\x3d\x27\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x10\ \x02\x1c\xed\x07\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x09\xd9\xa5\x67\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x0e\x30\xb8\x47\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x11\ \x07\xff\xf0\x07\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x12\ \x0d\x2c\x6d\x87\ \x00\x67\ \x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x12\ \x03\xdc\xbb\x47\ \x00\x61\ \x00\x6e\x00\x64\x00\x72\x00\x6f\x00\x69\x00\x64\x00\x5f\x00\x61\x00\x70\x00\x70\x00\x5f\x00\x71\x00\x72\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x16\ \x0d\x35\xf0\x27\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x61\x00\x6c\ \x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0c\x1a\xa1\x47\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x69\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6e\x00\x6f\x00\x74\x00\x65\ \x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x06\x49\x09\xe7\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x62\x00\x6f\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x11\ \x04\x17\xba\xa7\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x10\ \x0f\x4c\x4e\x47\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x0b\x13\x1e\x87\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x70\x00\x73\x00\x65\x00\x5f\ \x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x08\xfd\x86\xa7\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0f\xfa\xba\x47\ \x00\x73\ \x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x01\x12\x20\xe7\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ \x0b\xd5\xa4\x07\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x06\x80\x22\x87\ \x00\x74\ \x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x0f\x86\x85\x67\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x5f\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x0f\ \x09\x74\x2a\xa7\ \x00\x69\ \x00\x6d\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0b\xa5\xa8\xe7\ \x00\x65\ \x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x03\xba\x72\x47\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x69\x00\x6e\x00\x61\x00\x63\x00\x74\x00\x69\ \x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x08\xf6\x54\xe7\ \x00\x73\ \x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x0f\xa0\xc1\x47\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6c\x00\x6f\x00\x63\ \x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x07\x0d\x29\x27\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x75\x00\x6e\x00\x6c\ \x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1b\ \x02\xb1\x94\xa7\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x72\x00\x65\x00\x66\ \x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x02\x0c\xd3\x27\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x5f\x00\x61\x00\x6c\ \x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x06\xf5\xc0\x67\ \x00\x62\ \x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x65\x00\x78\ \x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x0a\x89\x19\xa0\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x6f\x00\x6e\x00\x67\ \x00\x2e\x00\x62\x00\x6d\x00\x70\ \x00\x16\ \x05\xd5\x61\xe0\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x62\x00\x69\x00\x62\x00\x6c\ \x00\x65\x00\x2e\x00\x62\x00\x6d\x00\x70\ \x00\x1b\ \x0c\x61\xfb\x40\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x64\x00\x75\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x74\x00\x65\x00\x72\ \x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x61\x00\x6c\x00\x2e\x00\x62\x00\x6d\x00\x70\ \x00\x15\ \x0c\xa1\x17\x87\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6f\x00\x73\x00\x78\x00\x2d\x00\x77\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x16\ \x01\x07\xbe\x80\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x74\x00\x68\x00\x65\x00\x6d\ \x00\x65\x00\x2e\x00\x62\x00\x6d\x00\x70\ \x00\x1a\ \x06\x23\x27\xc7\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x70\x00\x72\x00\x6f\x00\x6a\ \x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x00\x89\x19\xa0\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x6f\x00\x6e\x00\x67\ \x00\x2e\x00\x62\x00\x6d\x00\x70\ \x00\x14\ \x02\x09\x38\x60\ \x00\x77\ \x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x2e\ \x00\x62\x00\x6d\x00\x70\ \x00\x11\ \x06\xfd\x49\x67\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x0e\ \x0c\x3d\xa6\xe7\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0f\x71\x40\x47\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x0f\x0e\xfa\xe7\ \x00\x6d\ \x00\x75\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x65\x00\x72\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x0b\x6a\xa6\xe7\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x1e\ \x0f\x35\xab\x87\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x5f\x00\x6d\ \x00\x75\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x0a\xa4\xdd\x87\ \x00\x61\ \x00\x75\x00\x74\x00\x6f\x00\x2d\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x5f\x00\x69\x00\x6e\x00\x61\x00\x63\x00\x74\x00\x69\ \x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x0f\x1f\x4e\x47\ \x00\x61\ \x00\x75\x00\x74\x00\x6f\x00\x2d\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x5f\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0f\x31\x28\xc7\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x61\x00\x75\x00\x64\x00\x69\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x09\xc3\x0b\x87\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x07\x63\x6a\x27\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x02\x02\x37\x87\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x6e\x00\x65\ \x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x05\x96\x0e\x47\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x73\x00\x74\ \x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x03\xc5\xdf\x87\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x70\x00\x61\ \x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0b\x1d\x0d\xa7\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x04\xc0\x24\x27\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x11\ \x0c\x3e\x65\xa7\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x64\x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x18\ \x07\xc2\xc7\xc7\ \x00\x6d\ \x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x73\x00\x74\ \x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x09\x02\x2d\x47\ \x00\x73\ \x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x00\x5a\xdd\x47\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x31\x00\x36\x00\x78\x00\x31\x00\x36\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x00\x76\xd9\xc7\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x33\x00\x32\x00\x78\x00\x33\x00\x32\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x00\x68\xdb\x07\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x06\x01\xfa\x07\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x32\x00\x35\x00\x36\x00\x78\x00\x32\ \x00\x35\x00\x36\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x07\xd0\x5e\x07\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x31\x00\x32\x00\x38\x00\x78\x00\x31\ \x00\x32\x00\x38\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0d\x89\x9b\x07\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x15\ \x00\x84\xc7\x87\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x36\x00\x34\x00\x78\x00\x36\x00\x34\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x09\xb2\xd9\xa7\ \x00\x65\ \x00\x78\x00\x63\x00\x65\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x15\ \x06\x79\xc9\xa7\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\ \x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x18\ \x0e\xf7\x81\x87\ \x00\x6f\ \x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x2d\x00\x73\x00\x63\x00\x72\ \x00\x65\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x08\x64\x3d\x47\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x18\ \x08\xe4\x8f\x67\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\ \x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x03\x15\xa7\xe7\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x62\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x10\ \x06\xf1\xde\xc7\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x0c\x15\x3e\x27\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x11\ \x07\x76\x57\x47\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x11\ \x0a\x8b\xe1\x87\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x63\x00\x75\x00\x73\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ \ \x00\x10\ \x08\xfb\x75\xe7\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x73\x00\x6f\x00\x6e\x00\x67\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x14\ \x05\x69\xb4\x27\ \x00\x70\ \x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x73\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x2e\ \x00\x70\x00\x6e\x00\x67\ \x00\x13\ \x0c\xda\x40\x27\ \x00\x6d\ \x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ \x00\x16\ \x01\x5e\x44\xe7\ \x00\x6d\ \x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x77\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\ \x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x17\ \x0e\xdd\x52\x87\ \x00\x6d\ \x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x63\x00\x72\x00\x69\x00\x74\x00\x69\x00\x63\ \x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x12\ \x03\xda\x97\xe7\ \x00\x6e\ \x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x5f\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\ \x00\x67\ \x00\x10\ \x00\x64\x4e\xa7\ \x00\x6e\ \x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x5f\x00\x61\x00\x75\x00\x74\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0f\ \x0d\x53\xa6\xa7\ \x00\x6e\ \x00\x65\x00\x74\x00\x77\x00\x6f\x00\x72\x00\x6b\x00\x5f\x00\x73\x00\x73\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x15\x00\x00\x00\x01\ \x00\x00\x00\x56\x00\x02\x00\x00\x00\x07\x00\x00\x00\xb1\ \x00\x00\x01\x3a\x00\x02\x00\x00\x00\x04\x00\x00\x00\xad\ \x00\x00\x00\x76\x00\x02\x00\x00\x00\x09\x00\x00\x00\xa4\ \x00\x00\x01\x4e\x00\x02\x00\x00\x00\x15\x00\x00\x00\x8f\ \x00\x00\x01\x88\x00\x02\x00\x00\x00\x02\x00\x00\x00\x8d\ \x00\x00\x00\xac\x00\x02\x00\x00\x00\x02\x00\x00\x00\x8b\ \x00\x00\x01\x5e\x00\x02\x00\x00\x00\x1a\x00\x00\x00\x71\ \x00\x00\x00\x9a\x00\x02\x00\x00\x00\x05\x00\x00\x00\x6c\ \x00\x00\x00\xd8\x00\x02\x00\x00\x00\x02\x00\x00\x00\x6a\ \x00\x00\x00\x2c\x00\x02\x00\x00\x00\x09\x00\x00\x00\x61\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x5e\ \x00\x00\x00\x64\x00\x02\x00\x00\x00\x0a\x00\x00\x00\x54\ \x00\x00\x00\xea\x00\x02\x00\x00\x00\x03\x00\x00\x00\x51\ \x00\x00\x01\x76\x00\x02\x00\x00\x00\x10\x00\x00\x00\x41\ \x00\x00\x00\x40\x00\x02\x00\x00\x00\x03\x00\x00\x00\x3e\ \x00\x00\x01\x12\x00\x02\x00\x00\x00\x01\x00\x00\x00\x3d\ \x00\x00\x00\x12\x00\x02\x00\x00\x00\x03\x00\x00\x00\x3a\ \x00\x00\x00\xfc\x00\x02\x00\x00\x00\x08\x00\x00\x00\x32\ \x00\x00\x00\xc4\x00\x02\x00\x00\x00\x01\x00\x00\x00\x31\ \x00\x00\x01\x26\x00\x02\x00\x00\x00\x13\x00\x00\x00\x1e\ \x00\x00\x00\x86\x00\x02\x00\x00\x00\x08\x00\x00\x00\x16\ \x00\x00\x16\x1a\x00\x00\x00\x00\x00\x01\x00\x0f\x15\x0c\ \x00\x00\x15\xae\x00\x00\x00\x00\x00\x01\x00\x0a\x2d\xbd\ \x00\x00\x16\x4a\x00\x00\x00\x00\x00\x01\x00\x11\xb5\xee\ \x00\x00\x15\x10\x00\x00\x00\x00\x00\x01\x00\x04\x51\xa2\ \x00\x00\x15\xe0\x00\x00\x00\x00\x00\x01\x00\x0c\xce\x9f\ \x00\x00\x14\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xb0\xc0\ \x00\x00\x15\x42\x00\x00\x00\x00\x00\x01\x00\x06\xf2\x84\ \x00\x00\x15\x7e\x00\x00\x00\x00\x00\x01\x00\x09\x93\x66\ \x00\x00\x0e\x32\x00\x00\x00\x00\x00\x01\x00\x01\x36\xdf\ \x00\x00\x0f\x58\x00\x00\x00\x00\x00\x01\x00\x01\x4c\x6d\ \x00\x00\x10\x40\x00\x00\x00\x00\x00\x01\x00\x01\x5e\x97\ \x00\x00\x0e\xf4\x00\x00\x00\x00\x00\x01\x00\x01\x44\x98\ \x00\x00\x0f\xee\x00\x00\x00\x00\x00\x01\x00\x01\x58\xb4\ \x00\x00\x10\x16\x00\x00\x00\x00\x00\x01\x00\x01\x5b\xf9\ \x00\x00\x0e\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x3e\x01\ \x00\x00\x0f\x20\x00\x00\x00\x00\x00\x01\x00\x01\x47\xcb\ \x00\x00\x10\xc0\x00\x00\x00\x00\x00\x01\x00\x01\x6a\xb5\ \x00\x00\x0e\xce\x00\x00\x00\x00\x00\x01\x00\x01\x40\xe6\ \x00\x00\x10\x66\x00\x00\x00\x00\x00\x01\x00\x01\x61\x71\ \x00\x00\x0e\x58\x00\x00\x00\x00\x00\x01\x00\x01\x39\x16\ \x00\x00\x10\xe8\x00\x00\x00\x00\x00\x01\x00\x01\x6c\xc8\ \x00\x00\x0e\x08\x00\x00\x00\x00\x00\x01\x00\x01\x34\x5d\ \x00\x00\x0f\xca\x00\x00\x00\x00\x00\x01\x00\x01\x56\x6d\ \x00\x00\x10\x94\x00\x00\x00\x00\x00\x01\x00\x01\x66\x0a\ \x00\x00\x0f\x80\x00\x00\x00\x00\x00\x01\x00\x01\x4f\xe1\ \x00\x00\x0f\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x52\xde\ \x00\x00\x0e\x7e\x00\x00\x00\x00\x00\x01\x00\x01\x3b\xea\ \x00\x00\x13\x4c\x00\x00\x00\x00\x00\x01\x00\x01\x99\x18\ \x00\x00\x11\xca\x00\x00\x00\x00\x00\x01\x00\x01\x7a\x67\ \x00\x00\x11\xa0\x00\x00\x00\x00\x00\x01\x00\x01\x77\x9c\ \x00\x00\x12\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x80\xfc\ \x00\x00\x12\x18\x00\x00\x00\x00\x00\x01\x00\x01\x7f\x7a\ \x00\x00\x11\x6e\x00\x00\x00\x00\x00\x01\x00\x01\x74\x2c\ \x00\x00\x11\x3c\x00\x00\x00\x00\x00\x01\x00\x01\x72\x42\ \x00\x00\x11\xf2\x00\x00\x00\x00\x00\x01\x00\x01\x7d\x07\ \x00\x00\x12\x72\x00\x00\x00\x00\x00\x01\x00\x01\x83\xa3\ \x00\x00\x1d\x2c\x00\x00\x00\x00\x00\x01\x00\x17\x8e\xf2\ \x00\x00\x1d\x00\x00\x00\x00\x00\x00\x01\x00\x17\x8b\xd3\ \x00\x00\x1d\x5e\x00\x00\x00\x00\x00\x01\x00\x17\x91\xf0\ \x00\x00\x11\x12\x00\x00\x00\x00\x00\x01\x00\x01\x6f\x40\ \x00\x00\x1b\x22\x00\x00\x00\x00\x00\x01\x00\x16\x25\xb8\ \x00\x00\x1b\x02\x00\x00\x00\x00\x00\x01\x00\x16\x1f\x07\ \x00\x00\x1b\x52\x00\x00\x00\x00\x00\x01\x00\x16\x94\x41\ \x00\x00\x02\x66\x00\x00\x00\x00\x00\x01\x00\x00\x0f\x9d\ \x00\x00\x03\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x26\x06\ \x00\x00\x02\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x16\xa3\ \x00\x00\x02\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x19\x85\ \x00\x00\x03\xe2\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x5d\ \x00\x00\x01\xdc\x00\x00\x00\x00\x00\x01\x00\x00\x05\x81\ \x00\x00\x02\x10\x00\x00\x00\x00\x00\x01\x00\x00\x07\x51\ \x00\x00\x04\xa2\x00\x00\x00\x00\x00\x01\x00\x00\x39\xcd\ \x00\x00\x04\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x32\xec\ \x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x00\x0b\xc0\ \x00\x00\x04\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x36\xa9\ \x00\x00\x02\xa8\x00\x00\x00\x00\x00\x01\x00\x00\x12\xf0\ \x00\x00\x03\x20\x00\x00\x00\x00\x00\x01\x00\x00\x21\xb5\ \x00\x00\x03\x74\x00\x00\x00\x00\x00\x01\x00\x00\x29\x37\ \x00\x00\x04\x10\x00\x00\x00\x00\x00\x01\x00\x00\x30\x64\ \x00\x00\x03\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2b\xad\ \x00\x00\x12\x94\x00\x00\x00\x00\x00\x01\x00\x01\x86\x47\ \x00\x00\x12\xda\x00\x00\x00\x00\x00\x01\x00\x01\x8c\xc2\ \x00\x00\x12\xb4\x00\x00\x00\x00\x00\x01\x00\x01\x8a\x24\ \x00\x00\x18\x4a\x00\x00\x00\x00\x00\x01\x00\x14\xb6\x36\ \x00\x00\x18\xb2\x00\x00\x00\x00\x00\x01\x00\x14\xba\x2b\ \x00\x00\x19\x0c\x00\x00\x00\x00\x00\x01\x00\x14\xbe\xe4\ \x00\x00\x18\x7e\x00\x00\x00\x00\x00\x01\x00\x14\xb8\x34\ \x00\x00\x18\x26\x00\x00\x00\x00\x00\x01\x00\x14\xb3\x03\ \x00\x00\x19\x5e\x00\x00\x00\x00\x00\x01\x00\x14\xc3\xa4\ \x00\x00\x19\x94\x00\x00\x00\x00\x00\x01\x00\x14\xc5\x9d\ \x00\x00\x18\x02\x00\x00\x00\x00\x00\x01\x00\x14\xaf\xd2\ \x00\x00\x18\xe8\x00\x00\x00\x00\x00\x01\x00\x14\xbc\x13\ \x00\x00\x19\x36\x00\x00\x00\x00\x00\x01\x00\x14\xc0\xe8\ \x00\x00\x1d\xbc\x00\x00\x00\x00\x00\x01\x00\x17\x99\x49\ \x00\x00\x1d\x92\x00\x00\x00\x00\x00\x01\x00\x17\x94\xd8\ \x00\x00\x1d\xe2\x00\x00\x00\x00\x00\x01\x00\x17\x9b\xad\ \x00\x00\x1b\xe6\x00\x00\x00\x00\x00\x01\x00\x17\x78\x6f\ \x00\x00\x1c\xd2\x00\x00\x00\x00\x00\x01\x00\x17\x88\x1d\ \x00\x00\x1c\x0e\x00\x00\x00\x00\x00\x01\x00\x17\x7a\xc1\ \x00\x00\x1c\x5c\x00\x00\x00\x00\x00\x01\x00\x17\x80\x72\ \x00\x00\x1b\x88\x00\x00\x00\x00\x00\x01\x00\x17\x73\x46\ \x00\x00\x1b\xb0\x00\x00\x00\x00\x00\x01\x00\x17\x76\x44\ \x00\x00\x1c\xac\x00\x00\x00\x00\x00\x01\x00\x17\x85\xba\ \x00\x00\x1c\x84\x00\x00\x00\x00\x00\x01\x00\x17\x83\xb4\ \x00\x00\x1c\x34\x00\x00\x00\x00\x00\x01\x00\x17\x7e\x58\ \x00\x00\x13\x28\x00\x00\x00\x00\x00\x01\x00\x01\x92\xfa\ \x00\x00\x12\xfc\x00\x00\x00\x00\x00\x01\x00\x01\x8f\xfc\ \x00\x00\x14\x78\x00\x00\x00\x00\x00\x01\x00\x01\xac\x6f\ \x00\x00\x14\x3c\x00\x00\x00\x00\x00\x01\x00\x01\xa4\x7c\ \x00\x00\x14\xae\x00\x00\x00\x00\x00\x01\x00\x01\xaf\x6d\ \x00\x00\x14\x06\x00\x00\x00\x00\x00\x01\x00\x01\xa2\xc0\ \x00\x00\x13\xd4\x00\x00\x00\x00\x00\x01\x00\x01\xa0\xf8\ \x00\x00\x07\xba\x00\x00\x00\x00\x00\x01\x00\x00\xaa\xf0\ \x00\x00\x08\x96\x00\x00\x00\x00\x00\x01\x00\x00\xc5\x88\ \x00\x00\x06\xda\x00\x00\x00\x00\x00\x01\x00\x00\x7f\x83\ \x00\x00\x09\x00\x00\x00\x00\x00\x00\x01\x00\x00\xca\xb8\ \x00\x00\x07\x92\x00\x00\x00\x00\x00\x01\x00\x00\xa7\xdf\ \x00\x00\x05\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x5f\xd7\ \x00\x00\x08\x30\x00\x00\x00\x00\x00\x01\x00\x00\xb1\x2a\ \x00\x00\x06\x70\x00\x00\x00\x00\x00\x01\x00\x00\x6d\x44\ \x00\x00\x09\x40\x00\x00\x00\x00\x00\x01\x00\x00\xd5\x6b\ \x00\x00\x09\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xdb\x93\ \x00\x00\x05\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x53\x1e\ \x00\x00\x09\x6a\x00\x00\x00\x00\x00\x01\x00\x00\xd8\x45\ \x00\x00\x06\x98\x00\x00\x00\x00\x00\x01\x00\x00\x7b\xed\ \x00\x00\x07\x06\x00\x00\x00\x00\x00\x01\x00\x00\x90\x5d\ \x00\x00\x07\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xab\x9e\ \x00\x00\x04\xce\x00\x00\x00\x00\x00\x01\x00\x00\x3e\xd9\ \x00\x00\x07\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x97\x31\ \x00\x00\x06\x06\x00\x00\x00\x00\x00\x01\x00\x00\x66\xd6\ \x00\x00\x05\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x63\x7b\ \x00\x00\x08\xc2\x00\x00\x00\x00\x00\x01\x00\x00\xc7\x0d\ \x00\x00\x07\x3a\x00\x00\x00\x00\x00\x01\x00\x00\x93\xb4\ \x00\x00\x04\xf8\x00\x00\x00\x00\x00\x01\x00\x00\x41\x93\ \x00\x00\x08\x68\x00\x00\x00\x00\x00\x01\x00\x00\xb3\xba\ \x00\x00\x09\xc4\x00\x00\x00\x00\x00\x01\x00\x00\xdc\xf6\ \x00\x00\x05\x66\x00\x00\x00\x00\x00\x01\x00\x00\x56\xba\ \x00\x00\x06\x30\x00\x00\x00\x00\x00\x01\x00\x00\x69\xc2\ \x00\x00\x13\x70\x00\x00\x00\x00\x00\x01\x00\x01\x9b\x2f\ \x00\x00\x13\xa4\x00\x00\x00\x00\x00\x01\x00\x01\x9d\xff\ \x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\xbc\x00\x00\x00\x00\x00\x01\x00\x00\x02\xfe\ \x00\x00\x0d\x36\x00\x00\x00\x00\x00\x01\x00\x01\x26\x46\ \x00\x00\x0a\xde\x00\x00\x00\x00\x00\x01\x00\x00\xf2\x93\ \x00\x00\x0d\x16\x00\x00\x00\x00\x00\x01\x00\x01\x22\x53\ \x00\x00\x0b\x06\x00\x00\x00\x00\x00\x01\x00\x00\xf5\xf1\ \x00\x00\x0c\x64\x00\x00\x00\x00\x00\x01\x00\x01\x18\xe3\ \x00\x00\x0a\x6e\x00\x00\x00\x00\x00\x01\x00\x00\xe9\x40\ \x00\x00\x0c\x40\x00\x00\x00\x00\x00\x01\x00\x01\x16\x45\ \x00\x00\x0a\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xf0\x5e\ \x00\x00\x0c\xc2\x00\x00\x00\x00\x00\x01\x00\x01\x1c\xb2\ \x00\x00\x0c\x12\x00\x00\x00\x00\x00\x01\x00\x01\x13\xc5\ \x00\x00\x0c\xe4\x00\x00\x00\x00\x00\x01\x00\x01\x20\xb6\ \x00\x00\x0c\x92\x00\x00\x00\x00\x00\x01\x00\x01\x1b\xb9\ \x00\x00\x0a\x94\x00\x00\x00\x00\x00\x01\x00\x00\xed\x52\ \x00\x00\x0b\xe0\x00\x00\x00\x00\x00\x01\x00\x01\x12\x72\ \x00\x00\x0b\x38\x00\x00\x00\x00\x00\x01\x00\x00\xfd\x07\ \x00\x00\x0b\x56\x00\x00\x00\x00\x00\x01\x00\x00\xff\xa9\ \x00\x00\x0a\x40\x00\x00\x00\x00\x00\x01\x00\x00\xe7\x38\ \x00\x00\x0b\x82\x00\x00\x00\x00\x00\x01\x00\x01\x02\x0c\ \x00\x00\x09\xfa\x00\x00\x00\x00\x00\x01\x00\x00\xe0\x77\ \x00\x00\x0a\x1e\x00\x00\x00\x00\x00\x01\x00\x00\xe3\xf0\ \x00\x00\x0b\xb0\x00\x00\x00\x00\x00\x01\x00\x01\x08\xca\ \x00\x00\x16\x78\x00\x00\x00\x00\x00\x01\x00\x14\x56\xd0\ \x00\x00\x17\x7a\x00\x00\x00\x00\x00\x01\x00\x14\xa2\xb5\ \x00\x00\x17\x16\x00\x00\x00\x00\x00\x01\x00\x14\x6b\x3d\ \x00\x00\x16\xa0\x00\x00\x00\x00\x00\x01\x00\x14\x5e\xdc\ \x00\x00\x16\xe6\x00\x00\x00\x00\x00\x01\x00\x14\x68\xe4\ \x00\x00\x17\xae\x00\x00\x00\x00\x00\x01\x00\x14\xa5\xb8\ \x00\x00\x17\xde\x00\x00\x00\x00\x00\x01\x00\x14\xa8\xeb\ \x00\x00\x17\x38\x00\x00\x00\x00\x00\x01\x00\x14\x6f\x10\ \x00\x00\x16\xc2\x00\x00\x00\x00\x00\x01\x00\x14\x61\xb2\ \x00\x00\x0d\xd4\x00\x00\x00\x00\x00\x01\x00\x01\x30\xfb\ \x00\x00\x0d\x5a\x00\x00\x00\x00\x00\x01\x00\x01\x29\x32\ \x00\x00\x0d\xa6\x00\x00\x00\x00\x00\x01\x00\x01\x2d\xe7\ \x00\x00\x0d\x82\x00\x00\x00\x00\x00\x01\x00\x01\x2b\xd0\ \x00\x00\x19\xb6\x00\x00\x00\x00\x00\x01\x00\x14\xc7\xb0\ \x00\x00\x1a\x16\x00\x00\x00\x00\x00\x01\x00\x14\xd6\x61\ \x00\x00\x19\xe6\x00\x00\x00\x00\x00\x01\x00\x14\xcb\xcd\ \x00\x00\x1a\xd2\x00\x00\x00\x00\x00\x01\x00\x16\x04\xfc\ \x00\x00\x1a\x46\x00\x00\x00\x00\x00\x01\x00\x14\xeb\x96\ \x00\x00\x1a\x7a\x00\x00\x00\x00\x00\x01\x00\x15\xb4\x2f\ \x00\x00\x1a\xae\x00\x01\x00\x00\x00\x01\x00\x15\xf9\x9a\ " def qInitResources(): """ Initialise OpenLP resources at application startup. """ QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): """ Cleanup OpenLP resources when the application shuts down. """ QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) OpenLP-2.4/openlp/core/common/0000755000175000017500000000000012663134435015266 5ustar raoulraoulOpenLP-2.4/openlp/core/common/registryproperties.py0000644000175000017500000001337712657640340021640 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide Registry values for adding to classes """ from openlp.core.common import Registry, is_win class RegistryProperties(object): """ This adds registry components to classes to use at run time. """ @property def application(self): """ Adds the openlp to the class dynamically. Windows needs to access the application in a dynamic manner. """ if is_win(): return Registry().get('application') else: if not hasattr(self, '_application') or not self._application: self._application = Registry().get('application') return self._application @property def plugin_manager(self): """ Adds the plugin manager to the class dynamically """ if not hasattr(self, '_plugin_manager') or not self._plugin_manager: self._plugin_manager = Registry().get('plugin_manager') return self._plugin_manager @property def image_manager(self): """ Adds the image manager to the class dynamically """ if not hasattr(self, '_image_manager') or not self._image_manager: self._image_manager = Registry().get('image_manager') return self._image_manager @property def media_controller(self): """ Adds the media controller to the class dynamically """ if not hasattr(self, '_media_controller') or not self._media_controller: self._media_controller = Registry().get('media_controller') return self._media_controller @property def service_manager(self): """ Adds the service manager to the class dynamically """ if not hasattr(self, '_service_manager') or not self._service_manager: self._service_manager = Registry().get('service_manager') return self._service_manager @property def preview_controller(self): """ Adds the preview controller to the class dynamically """ if not hasattr(self, '_preview_controller') or not self._preview_controller: self._preview_controller = Registry().get('preview_controller') return self._preview_controller @property def live_controller(self): """ Adds the live controller to the class dynamically """ if not hasattr(self, '_live_controller') or not self._live_controller: self._live_controller = Registry().get('live_controller') return self._live_controller @property def main_window(self): """ Adds the main window to the class dynamically """ if not hasattr(self, '_main_window') or not self._main_window: self._main_window = Registry().get('main_window') return self._main_window @property def renderer(self): """ Adds the Renderer to the class dynamically """ if not hasattr(self, '_renderer') or not self._renderer: self._renderer = Registry().get('renderer') return self._renderer @property def theme_manager(self): """ Adds the theme manager to the class dynamically """ if not hasattr(self, '_theme_manager') or not self._theme_manager: self._theme_manager = Registry().get('theme_manager') return self._theme_manager @property def settings_form(self): """ Adds the settings form to the class dynamically """ if not hasattr(self, '_settings_form') or not self._settings_form: self._settings_form = Registry().get('settings_form') return self._settings_form @property def alerts_manager(self): """ Adds the alerts manager to the class dynamically """ if not hasattr(self, '_alerts_manager') or not self._alerts_manager: self._alerts_manager = Registry().get('alerts_manager') return self._alerts_manager @property def projector_manager(self): """ Adds the projector manager to the class dynamically """ if not hasattr(self, '_projector_manager') or not self._projector_manager: self._projector_manager = Registry().get('projector_manager') return self._projector_manager OpenLP-2.4/openlp/core/common/__init__.py0000644000175000017500000001642712657640340017411 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`common` module contains most of the components and libraries that make OpenLP work. """ import hashlib import re import os import logging import sys import traceback from ipaddress import IPv4Address, IPv6Address, AddressValueError from codecs import decode, encode from PyQt5 import QtCore from PyQt5.QtCore import QCryptographicHash as QHash log = logging.getLogger(__name__ + '.__init__') FIRST_CAMEL_REGEX = re.compile('(.)([A-Z][a-z]+)') SECOND_CAMEL_REGEX = re.compile('([a-z0-9])([A-Z])') def trace_error_handler(logger): """ Log the calling path of an exception :param logger: logger to use so traceback is logged to correct class """ log_string = "OpenLP Error trace" for tb in traceback.extract_stack(): log_string = '%s\n File %s at line %d \n\t called %s' % (log_string, tb[0], tb[1], tb[3]) logger.error(log_string) def check_directory_exists(directory, do_not_log=False): """ Check a theme directory exists and if not create it :param directory: The directory to make sure exists :param do_not_log: To not log anything. This is need for the start up, when the log isn't ready. """ if not do_not_log: log.debug('check_directory_exists %s' % directory) try: if not os.path.exists(directory): os.makedirs(directory) except IOError as e: if not do_not_log: log.exception('failed to check if directory exists or create directory') def get_frozen_path(frozen_option, non_frozen_option): """ Return a path based on the system status. :param frozen_option: :param non_frozen_option: """ if hasattr(sys, 'frozen') and sys.frozen == 1: return frozen_option return non_frozen_option class ThemeLevel(object): """ Provides an enumeration for the level a theme applies to """ Global = 1 Service = 2 Song = 3 def translate(context, text, comment=None, qt_translate=QtCore.QCoreApplication.translate): """ A special shortcut method to wrap around the Qt5 translation functions. This abstracts the translation procedure so that we can change it if at a later date if necessary, without having to redo the whole of OpenLP. :param context: The translation context, used to give each string a context or a namespace. :param text: The text to put into the translation tables for translation. :param comment: An identifying string for when the same text is used in different roles within the same context. :param qt_translate: """ return qt_translate(context, text, comment) class SlideLimits(object): """ Provides an enumeration for behaviour of OpenLP at the end limits of each service item when pressing the up/down arrow keys """ End = 1 Wrap = 2 Next = 3 def de_hump(name): """ Change any Camel Case string to python string """ sub_name = FIRST_CAMEL_REGEX.sub(r'\1_\2', name) return SECOND_CAMEL_REGEX.sub(r'\1_\2', sub_name).lower() def is_win(): """ Returns true if running on a system with a nt kernel e.g. Windows, Wine :return: True if system is running a nt kernel false otherwise """ return os.name.startswith('nt') def is_macosx(): """ Returns true if running on a system with a darwin kernel e.g. Mac OS X :return: True if system is running a darwin kernel false otherwise """ return sys.platform.startswith('darwin') def is_linux(): """ Returns true if running on a system with a linux kernel e.g. Ubuntu, Debian, etc :return: True if system is running a linux kernel false otherwise """ return sys.platform.startswith('linux') def verify_ipv4(addr): """ Validate an IPv4 address :param addr: Address to validate :returns: bool """ try: valid = IPv4Address(addr) return True except AddressValueError: return False def verify_ipv6(addr): """ Validate an IPv6 address :param addr: Address to validate :returns: bool """ try: valid = IPv6Address(addr) return True except AddressValueError: return False def verify_ip_address(addr): """ Validate an IP address as either IPv4 or IPv6 :param addr: Address to validate :returns: bool """ return True if verify_ipv4(addr) else verify_ipv6(addr) def md5_hash(salt, data=None): """ Returns the hashed output of md5sum on salt,data using Python3 hashlib :param salt: Initial salt :param data: OPTIONAL Data to hash :returns: str """ log.debug('md5_hash(salt="%s")' % salt) hash_obj = hashlib.new('md5') hash_obj.update(salt) if data: hash_obj.update(data) hash_value = hash_obj.hexdigest() log.debug('md5_hash() returning "%s"' % hash_value) return hash_value def qmd5_hash(salt, data=None): """ Returns the hashed output of MD5Sum on salt, data using PyQt5.QCryptographicHash. :param salt: Initial salt :param data: OPTIONAL Data to hash :returns: str """ log.debug('qmd5_hash(salt="%s"' % salt) hash_obj = QHash(QHash.Md5) hash_obj.addData(salt) hash_obj.addData(data) hash_value = hash_obj.result().toHex() log.debug('qmd5_hash() returning "%s"' % hash_value) return hash_value.data() def clean_button_text(button_text): """ Clean the & and other characters out of button text :param button_text: The text to clean """ return button_text.replace('&', '').replace('< ', '').replace(' >', '') from .openlpmixin import OpenLPMixin from .registry import Registry from .registrymixin import RegistryMixin from .registryproperties import RegistryProperties from .uistrings import UiStrings from .settings import Settings from .applocation import AppLocation from .historycombobox import HistoryComboBox OpenLP-2.4/openlp/core/common/registry.py0000644000175000017500000001344412657640340017516 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide Registry Services """ import logging import sys from openlp.core.common import trace_error_handler log = logging.getLogger(__name__) class Registry(object): """ This is the Component Registry. It is a singleton object and is used to provide a look up service for common objects. """ log.info('Registry loaded') __instance__ = None def __new__(cls): """ Re-implement the __new__ method to make sure we create a true singleton. """ if not cls.__instance__: cls.__instance__ = object.__new__(cls) return cls.__instance__ @classmethod def create(cls): """ The constructor for the component registry providing a single registry of objects. """ log.info('Registry Initialising') registry = cls() registry.service_list = {} registry.functions_list = {} # Allow the tests to remove Registry entries but not the live system registry.running_under_test = 'nose' in sys.argv[0] registry.initialising = True return registry def get(self, key): """ Extracts the registry value from the list based on the key passed in :param key: The service to be retrieved. """ if key in self.service_list: return self.service_list[key] else: if not self.initialising: trace_error_handler(log) log.error('Service %s not found in list' % key) raise KeyError('Service %s not found in list' % key) def register(self, key, reference): """ Registers a component against a key. :param key: The service to be created this is usually a major class like "renderer" or "main_window" . :param reference: The service address to be saved. """ if key in self.service_list: trace_error_handler(log) log.error('Duplicate service exception %s' % key) raise KeyError('Duplicate service exception %s' % key) else: self.service_list[key] = reference def remove(self, key): """ Removes the registry value from the list based on the key passed in (Only valid and active for testing framework). :param key: The service to be deleted. """ if key in self.service_list: del self.service_list[key] def register_function(self, event, function): """ Register an event and associated function to be called :param event: The function description like "live_display_hide" where a number of places in the code will/may need to respond to a single action and the caller does not need to understand or know about the recipients. :param function: The function to be called when the event happens. """ if event in self.functions_list: self.functions_list[event].append(function) else: self.functions_list[event] = [function] def remove_function(self, event, function): """ Remove an event and associated handler :param event: The function description.. :param function: The function to be called when the event happens. """ if event in self.functions_list: self.functions_list[event].remove(function) def execute(self, event, *args, **kwargs): """ Execute all the handlers associated with the event and return an array of results. :param event: The function to be processed :param args: Parameters to be passed to the function. :param kwargs: Parameters to be passed to the function. """ results = [] if event in self.functions_list: for function in self.functions_list[event]: try: result = function(*args, **kwargs) if result: results.append(result) except TypeError: # Who has called me can help in debugging trace_error_handler(log) log.exception('Exception for function %s', function) else: trace_error_handler(log) log.error("Event %s called but not registered" % event) return results OpenLP-2.4/openlp/core/common/uistrings.py0000644000175000017500000002223712657640340017675 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`uistrings` module provides standard strings for OpenLP. """ import logging from openlp.core.common import translate log = logging.getLogger(__name__) class UiStrings(object): """ Provide standard strings for objects to use. """ __instance__ = None def __new__(cls): """ Override the default object creation method to return a single instance. """ if not cls.__instance__: cls.__instance__ = object.__new__(cls) return cls.__instance__ def __init__(self): """ These strings should need a good reason to be retranslated elsewhere. Should some/more/less of these have an & attached? """ self.About = translate('OpenLP.Ui', 'About') self.Add = translate('OpenLP.Ui', '&Add') self.AddGroup = translate('OpenLP.Ui', 'Add group') self.Advanced = translate('OpenLP.Ui', 'Advanced') self.AllFiles = translate('OpenLP.Ui', 'All Files') self.Automatic = translate('OpenLP.Ui', 'Automatic') self.BackgroundColor = translate('OpenLP.Ui', 'Background Color') self.Bottom = translate('OpenLP.Ui', 'Bottom') self.Browse = translate('OpenLP.Ui', 'Browse...') self.Cancel = translate('OpenLP.Ui', 'Cancel') self.CCLINumberLabel = translate('OpenLP.Ui', 'CCLI number:') self.CCLISongNumberLabel = translate('OpenLP.Ui', 'CCLI song number:') self.CreateService = translate('OpenLP.Ui', 'Create a new service.') self.ConfirmDelete = translate('OpenLP.Ui', 'Confirm Delete') self.Continuous = translate('OpenLP.Ui', 'Continuous') self.Default = translate('OpenLP.Ui', 'Default') self.DefaultColor = translate('OpenLP.Ui', 'Default Color:') self.DefaultServiceName = translate('OpenLP.Ui', 'Service %Y-%m-%d %H-%M', 'This may not contain any of the following characters: /\\?*|<>\[\]":+\n' 'See http://docs.python.org/library/datetime' '.html#strftime-strptime-behavior for more information.') self.Delete = translate('OpenLP.Ui', '&Delete') self.DisplayStyle = translate('OpenLP.Ui', 'Display style:') self.Duplicate = translate('OpenLP.Ui', 'Duplicate Error') self.Edit = translate('OpenLP.Ui', '&Edit') self.EmptyField = translate('OpenLP.Ui', 'Empty Field') self.Error = translate('OpenLP.Ui', 'Error') self.Export = translate('OpenLP.Ui', 'Export') self.File = translate('OpenLP.Ui', 'File') self.FileNotFound = translate('OpenLP.Ui', 'File Not Found') self.FileNotFoundMessage = translate('OpenLP.Ui', 'File %s not found.\nPlease try selecting it individually.') self.FontSizePtUnit = translate('OpenLP.Ui', 'pt', 'Abbreviated font pointsize unit') self.Help = translate('OpenLP.Ui', 'Help') self.Hours = translate('OpenLP.Ui', 'h', 'The abbreviated unit for hours') self.IFdSs = translate('OpenLP.Ui', 'Invalid Folder Selected', 'Singular') self.IFSs = translate('OpenLP.Ui', 'Invalid File Selected', 'Singular') self.IFSp = translate('OpenLP.Ui', 'Invalid Files Selected', 'Plural') self.Image = translate('OpenLP.Ui', 'Image') self.Import = translate('OpenLP.Ui', 'Import') self.LayoutStyle = translate('OpenLP.Ui', 'Layout style:') self.Live = translate('OpenLP.Ui', 'Live') self.LiveBGError = translate('OpenLP.Ui', 'Live Background Error') self.LiveToolbar = translate('OpenLP.Ui', 'Live Toolbar') self.Load = translate('OpenLP.Ui', 'Load') self.Manufacturer = translate('OpenLP.Ui', 'Manufacturer', 'Singular') self.Manufacturers = translate('OpenLP.Ui', 'Manufacturers', 'Plural') self.Model = translate('OpenLP.Ui', 'Model', 'Singular') self.Models = translate('OpenLP.Ui', 'Models', 'Plural') self.Minutes = translate('OpenLP.Ui', 'm', 'The abbreviated unit for minutes') self.Middle = translate('OpenLP.Ui', 'Middle') self.New = translate('OpenLP.Ui', 'New') self.NewService = translate('OpenLP.Ui', 'New Service') self.NewTheme = translate('OpenLP.Ui', 'New Theme') self.NextTrack = translate('OpenLP.Ui', 'Next Track') self.NFdSs = translate('OpenLP.Ui', 'No Folder Selected', 'Singular') self.NFSs = translate('OpenLP.Ui', 'No File Selected', 'Singular') self.NFSp = translate('OpenLP.Ui', 'No Files Selected', 'Plural') self.NISs = translate('OpenLP.Ui', 'No Item Selected', 'Singular') self.NISp = translate('OpenLP.Ui', 'No Items Selected', 'Plural') self.OLP = translate('OpenLP.Ui', 'OpenLP') self.OLPV2 = "%s %s" % (self.OLP, "2") self.OLPV2x = "%s %s" % (self.OLP, "2.4") self.OpenLPStart = translate('OpenLP.Ui', 'OpenLP is already running. Do you wish to continue?') self.OpenService = translate('OpenLP.Ui', 'Open service.') self.PlaySlidesInLoop = translate('OpenLP.Ui', 'Play Slides in Loop') self.PlaySlidesToEnd = translate('OpenLP.Ui', 'Play Slides to End') self.Preview = translate('OpenLP.Ui', 'Preview') self.PreviewToolbar = translate('OpenLP.Ui', 'Preview Toolbar') self.PrintService = translate('OpenLP.Ui', 'Print Service') self.Projector = translate('OpenLP.Ui', 'Projector', 'Singular') self.Projectors = translate('OpenLP.Ui', 'Projectors', 'Plural') self.ReplaceBG = translate('OpenLP.Ui', 'Replace Background') self.ReplaceLiveBG = translate('OpenLP.Ui', 'Replace live background.') self.ReplaceLiveBGDisabled = translate('OpenLP.Ui', 'Replace live background is not available when the WebKit ' 'player is disabled.') self.ResetBG = translate('OpenLP.Ui', 'Reset Background') self.ResetLiveBG = translate('OpenLP.Ui', 'Reset live background.') self.Seconds = translate('OpenLP.Ui', 's', 'The abbreviated unit for seconds') self.SaveAndPreview = translate('OpenLP.Ui', 'Save && Preview') self.Search = translate('OpenLP.Ui', 'Search') self.SearchThemes = translate('OpenLP.Ui', 'Search Themes...', 'Search bar place holder text ') self.SelectDelete = translate('OpenLP.Ui', 'You must select an item to delete.') self.SelectEdit = translate('OpenLP.Ui', 'You must select an item to edit.') self.Settings = translate('OpenLP.Ui', 'Settings') self.SaveService = translate('OpenLP.Ui', 'Save Service') self.Service = translate('OpenLP.Ui', 'Service') self.Split = translate('OpenLP.Ui', 'Optional &Split') self.SplitToolTip = translate('OpenLP.Ui', 'Split a slide into two only if it does not fit on the screen as one slide.') self.StartTimeCode = translate('OpenLP.Ui', 'Start %s') self.StopPlaySlidesInLoop = translate('OpenLP.Ui', 'Stop Play Slides in Loop') self.StopPlaySlidesToEnd = translate('OpenLP.Ui', 'Stop Play Slides to End') self.Theme = translate('OpenLP.Ui', 'Theme', 'Singular') self.Themes = translate('OpenLP.Ui', 'Themes', 'Plural') self.Tools = translate('OpenLP.Ui', 'Tools') self.Top = translate('OpenLP.Ui', 'Top') self.UnsupportedFile = translate('OpenLP.Ui', 'Unsupported File') self.VersePerSlide = translate('OpenLP.Ui', 'Verse Per Slide') self.VersePerLine = translate('OpenLP.Ui', 'Verse Per Line') self.Version = translate('OpenLP.Ui', 'Version') self.View = translate('OpenLP.Ui', 'View') self.ViewMode = translate('OpenLP.Ui', 'View Mode') OpenLP-2.4/openlp/core/common/openlpmixin.py0000644000175000017500000000716012657640340020206 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide Error Handling and login Services """ import logging import inspect from openlp.core.common import trace_error_handler DO_NOT_TRACE_EVENTS = ['timerEvent', 'paintEvent', 'drag_enter_event', 'drop_event', 'on_controller_size_changed', 'preview_size_changed', 'resizeEvent'] class OpenLPMixin(object): """ Base Calling object for OpenLP classes. """ def __init__(self, *args, **kwargs): super(OpenLPMixin, self).__init__(*args, **kwargs) self.logger = logging.getLogger("%s.%s" % (self.__module__, self.__class__.__name__)) if self.logger.getEffectiveLevel() == logging.DEBUG: for name, m in inspect.getmembers(self, inspect.ismethod): if name not in DO_NOT_TRACE_EVENTS: if not name.startswith("_") and not name.startswith("log"): setattr(self, name, self.logging_wrapper(m, self)) def logging_wrapper(self, func, parent): """ Code to added debug wrapper to work on called functions within a decorated class. """ def wrapped(*args, **kwargs): parent.logger.debug("Entering %s" % func.__name__) try: return func(*args, **kwargs) except Exception as e: if parent.logger.getEffectiveLevel() <= logging.ERROR: parent.logger.error('Exception in %s : %s' % (func.__name__, e)) raise e return wrapped def log_debug(self, message): """ Common log debug handler """ self.logger.debug(message) def log_info(self, message): """ Common log info handler """ self.logger.info(message) def log_error(self, message): """ Common log error handler which prints the calling path """ trace_error_handler(self.logger) self.logger.error(message) def log_exception(self, message): """ Common log exception handler which prints the calling path """ trace_error_handler(self.logger) self.logger.exception(message) OpenLP-2.4/openlp/core/common/registrymixin.py0000644000175000017500000000463312657640340020563 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Provide Registry Services """ from openlp.core.common import Registry, de_hump class RegistryMixin(object): """ This adds registry components to classes to use at run time. """ def __init__(self, parent): """ Register the class and bootstrap hooks. """ try: super(RegistryMixin, self).__init__(parent) except TypeError: super(RegistryMixin, self).__init__() Registry().register(de_hump(self.__class__.__name__), self) Registry().register_function('bootstrap_initialise', self.bootstrap_initialise) Registry().register_function('bootstrap_post_set_up', self.bootstrap_post_set_up) def bootstrap_initialise(self): """ Dummy method to be overridden """ pass def bootstrap_post_set_up(self): """ Dummy method to be overridden """ pass OpenLP-2.4/openlp/core/common/historycombobox.py0000644000175000017500000000750612657640340021102 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.common.historycombobox` module contains the HistoryComboBox widget """ from PyQt5 import QtCore, QtWidgets class HistoryComboBox(QtWidgets.QComboBox): """ The :class:`~openlp.core.common.historycombobox.HistoryComboBox` widget emulates the QLineEdit ``returnPressed`` signal for when the :kbd:`Enter` or :kbd:`Return` keys are pressed, and saves anything that is typed into the edit box into its list. """ returnPressed = QtCore.pyqtSignal() def __init__(self, parent=None): """ Initialise the combo box, setting duplicates to False and the insert policy to insert items at the top. :param parent: The parent widget """ super().__init__(parent) self.setDuplicatesEnabled(False) self.setEditable(True) self.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) self.setInsertPolicy(QtWidgets.QComboBox.InsertAtTop) def keyPressEvent(self, event): """ Override the inherited keyPressEvent method to emit the ``returnPressed`` signal and to save the current text to the dropdown list. :param event: The keyboard event """ # Handle Enter and Return ourselves if event.key() == QtCore.Qt.Key_Enter or event.key() == QtCore.Qt.Key_Return: # Emit the returnPressed signal self.returnPressed.emit() # Save the current text to the dropdown list if self.currentText() and self.findText(self.currentText()) == -1: self.insertItem(0, self.currentText()) # Let the parent handle any keypress events super().keyPressEvent(event) def focusOutEvent(self, event): """ Override the inherited focusOutEvent to save the current text to the dropdown list. :param event: The focus event """ # Save the current text to the dropdown list if self.currentText() and self.findText(self.currentText()) == -1: self.insertItem(0, self.currentText()) # Let the parent handle any keypress events super().focusOutEvent(event) def getItems(self): """ Get all the items from the history :return: A list of strings """ return [self.itemText(i) for i in range(self.count())] OpenLP-2.4/openlp/core/common/applocation.py0000644000175000017500000001574412657640340020164 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`openlp.core.common.applocation` module provides an utility for OpenLP receiving the data path etc. """ import logging import os import sys from openlp.core.common import Settings, is_win, is_macosx if not is_win() and not is_macosx(): try: from xdg import BaseDirectory XDG_BASE_AVAILABLE = True except ImportError: XDG_BASE_AVAILABLE = False import openlp from openlp.core.common import check_directory_exists, get_frozen_path log = logging.getLogger(__name__) class AppLocation(object): """ The :class:`AppLocation` class is a static class which retrieves a directory based on the directory type. """ AppDir = 1 DataDir = 2 PluginsDir = 3 VersionDir = 4 CacheDir = 5 LanguageDir = 6 # Base path where data/config/cache dir is located BaseDir = None @staticmethod def get_directory(dir_type=AppDir): """ Return the appropriate directory according to the directory type. :param dir_type: The directory type you want, for instance the data directory. Default *AppLocation.AppDir* """ if dir_type == AppLocation.AppDir: return get_frozen_path(os.path.abspath(os.path.dirname(sys.argv[0])), os.path.dirname(openlp.__file__)) elif dir_type == AppLocation.PluginsDir: app_path = os.path.abspath(os.path.dirname(sys.argv[0])) return get_frozen_path(os.path.join(app_path, 'plugins'), os.path.join(os.path.dirname(openlp.__file__), 'plugins')) elif dir_type == AppLocation.VersionDir: return get_frozen_path(os.path.abspath(os.path.dirname(sys.argv[0])), os.path.dirname(openlp.__file__)) elif dir_type == AppLocation.LanguageDir: app_path = get_frozen_path(os.path.abspath(os.path.dirname(sys.argv[0])), _get_os_dir_path(dir_type)) return os.path.join(app_path, 'i18n') elif dir_type == AppLocation.DataDir and AppLocation.BaseDir: return os.path.join(AppLocation.BaseDir, 'data') else: return _get_os_dir_path(dir_type) @staticmethod def get_data_path(): """ Return the path OpenLP stores all its data under. """ # Check if we have a different data location. if Settings().contains('advanced/data path'): path = Settings().value('advanced/data path') else: path = AppLocation.get_directory(AppLocation.DataDir) check_directory_exists(path) return os.path.normpath(path) @staticmethod def get_files(section=None, extension=None): """ Get a list of files from the data files path. :param section: Defaults to *None*. The section of code getting the files - used to load from a section's data subdirectory. :param extension: Defaults to *None*. The extension to search for. For example:: '.png' """ path = AppLocation.get_data_path() if section: path = os.path.join(path, section) try: files = os.listdir(path) except OSError: return [] if extension: return [filename for filename in files if extension == os.path.splitext(filename)[1]] else: # no filtering required return files @staticmethod def get_section_data_path(section): """ Return the path a particular module stores its data under. """ data_path = AppLocation.get_data_path() path = os.path.join(data_path, section) check_directory_exists(path) return path def _get_os_dir_path(dir_type): """ Return a path based on which OS and environment we are running in. """ # If running from source, return the language directory from the source directory if dir_type == AppLocation.LanguageDir: directory = os.path.abspath(os.path.join(os.path.dirname(openlp.__file__), '..', 'resources')) if os.path.exists(directory): return directory if is_win(): if dir_type == AppLocation.DataDir: return os.path.join(str(os.getenv('APPDATA')), 'openlp', 'data') elif dir_type == AppLocation.LanguageDir: return os.path.dirname(openlp.__file__) return os.path.join(str(os.getenv('APPDATA')), 'openlp') elif is_macosx(): if dir_type == AppLocation.DataDir: return os.path.join(str(os.getenv('HOME')), 'Library', 'Application Support', 'openlp', 'Data') elif dir_type == AppLocation.LanguageDir: return os.path.dirname(openlp.__file__) return os.path.join(str(os.getenv('HOME')), 'Library', 'Application Support', 'openlp') else: if dir_type == AppLocation.LanguageDir: for prefix in ['/usr/local', '/usr']: directory = os.path.join(prefix, 'share', 'openlp') if os.path.exists(directory): return directory return os.path.join('/usr', 'share', 'openlp') if XDG_BASE_AVAILABLE: if dir_type == AppLocation.DataDir: return os.path.join(str(BaseDirectory.xdg_data_home), 'openlp') elif dir_type == AppLocation.CacheDir: return os.path.join(str(BaseDirectory.xdg_cache_home), 'openlp') if dir_type == AppLocation.DataDir: return os.path.join(str(os.getenv('HOME')), '.openlp', 'data') return os.path.join(str(os.getenv('HOME')), '.openlp') OpenLP-2.4/openlp/core/common/settings.py0000644000175000017500000006430612657640340017511 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This class contains the core default settings. """ import datetime import logging import os from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import ThemeLevel, SlideLimits, UiStrings, is_win, is_linux log = logging.getLogger(__name__) # Fix for bug #1014422. X11_BYPASS_DEFAULT = True if is_linux(): # Default to False on Gnome. X11_BYPASS_DEFAULT = bool(not os.environ.get('GNOME_DESKTOP_SESSION_ID')) # Default to False on Xfce. if os.environ.get('DESKTOP_SESSION') == 'xfce': X11_BYPASS_DEFAULT = False def recent_files_conv(value): """ If the value is not a list convert it to a list :param value: Value to convert :return: value as a List """ if isinstance(value, list): return value elif isinstance(value, str): return [value] elif isinstance(value, bytes): return [value.decode()] return [] def media_players_conv(string): """ If phonon is in the setting string replace it with system :param string: String to convert :return: Converted string """ values = string.split(',') for index, value in enumerate(values): if value == 'phonon': values[index] = 'system' string = ','.join(values) return string class Settings(QtCore.QSettings): """ Class to wrap QSettings. * Exposes all the methods of QSettings. * Adds functionality for OpenLP Portable. If the ``defaultFormat`` is set to ``IniFormat``, and the path to the Ini file is set using ``set_filename``, then the Settings constructor (without any arguments) will create a Settings object for accessing settings stored in that Ini file. ``__default_settings__`` This dict contains all core settings with their default values. ``__obsolete_settings__`` Each entry is structured in the following way:: ('general/enable slide loop', 'advanced/slide limits', [(SlideLimits.Wrap, True), (SlideLimits.End, False)]) The first entry is the *old key*; it will be removed. The second entry is the *new key*; we will add it to the config. If this is just an empty string, we just remove the old key. The last entry is a list containing two-pair tuples. If the list is empty, no conversion is made. If the first value is callable i.e. a function, the function will be called with the old setting's value. Otherwise each pair describes how to convert the old setting's value:: (SlideLimits.Wrap, True) This means, that if the value of ``general/enable slide loop`` is equal (``==``) ``True`` then we set ``advanced/slide limits`` to ``SlideLimits.Wrap``. **NOTE**, this means that the rules have to cover all cases! So, if the type of the old value is bool, then there must be two rules. """ __default_settings__ = { 'advanced/add page break': False, 'advanced/alternate rows': not is_win(), 'advanced/current media plugin': -1, 'advanced/data path': '', 'advanced/default color': '#ffffff', 'advanced/default image': ':/graphics/openlp-splash-screen.png', # 7 stands for now, 0 to 6 is Monday to Sunday. 'advanced/default service day': 7, 'advanced/default service enabled': True, 'advanced/default service hour': 11, 'advanced/default service minute': 0, 'advanced/default service name': UiStrings().DefaultServiceName, 'advanced/display size': 0, 'advanced/double click live': False, 'advanced/enable exit confirmation': True, 'advanced/expand service item': False, 'advanced/hide mouse': True, 'advanced/is portable': False, 'advanced/max recent files': 20, 'advanced/print file meta data': False, 'advanced/print notes': False, 'advanced/print slide text': False, 'advanced/recent file count': 4, 'advanced/save current plugin': False, 'advanced/slide limits': SlideLimits.End, 'advanced/single click preview': False, 'advanced/x11 bypass wm': X11_BYPASS_DEFAULT, 'advanced/search as type': True, 'crashreport/last directory': '', 'formattingTags/html_tags': '', 'core/audio repeat list': False, 'core/auto open': False, 'core/auto preview': False, 'core/audio start paused': True, 'core/auto unblank': False, 'core/blank warning': False, 'core/ccli number': '', 'core/has run wizard': False, 'core/language': '[en]', 'core/last version test': '', 'core/loop delay': 5, 'core/recent files': [], 'core/save prompt': False, 'core/screen blank': False, 'core/show splash': True, 'core/songselect password': '', 'core/songselect username': '', 'core/update check': True, 'core/view mode': 'default', # The other display settings (display position and dimensions) are defined in the ScreenList class due to a # circular dependency. 'core/display on monitor': True, 'core/override position': False, 'core/application version': '0.0', 'images/background color': '#000000', 'media/players': 'system,webkit', 'media/override player': QtCore.Qt.Unchecked, 'players/background color': '#000000', 'servicemanager/last directory': '', 'servicemanager/last file': '', 'servicemanager/service theme': '', 'SettingsImport/file_date_created': datetime.datetime.now().strftime("%Y-%m-%d %H:%M"), 'SettingsImport/Make_Changes': 'At_Own_RISK', 'SettingsImport/type': 'OpenLP_settings_export', 'SettingsImport/version': '', 'themes/global theme': '', 'themes/last directory': '', 'themes/last directory export': '', 'themes/last directory import': '', 'themes/theme level': ThemeLevel.Song, 'themes/wrap footer': False, 'user interface/live panel': True, 'user interface/live splitter geometry': QtCore.QByteArray(), 'user interface/lock panel': False, 'user interface/main window geometry': QtCore.QByteArray(), 'user interface/main window position': QtCore.QPoint(0, 0), 'user interface/main window splitter geometry': QtCore.QByteArray(), 'user interface/main window state': QtCore.QByteArray(), 'user interface/preview panel': True, 'user interface/preview splitter geometry': QtCore.QByteArray(), 'projector/db type': 'sqlite', 'projector/db username': '', 'projector/db password': '', 'projector/db hostname': '', 'projector/db database': '', 'projector/enable': True, 'projector/connect on start': False, 'projector/last directory import': '', 'projector/last directory export': '', 'projector/poll time': 20, # PJLink timeout is 30 seconds 'projector/socket timeout': 5, # 5 second socket timeout 'projector/source dialog type': 0 # Source select dialog box type } __file_path__ = '' __obsolete_settings__ = [ # Changed during 2.2.x development. # ('advanced/stylesheet fix', '', []), # ('general/recent files', 'core/recent files', [(recent_files_conv, None)]), ('songs/search as type', 'advanced/search as type', []), ('media/players', 'media/players_temp', [(media_players_conv, None)]), # Convert phonon to system ('media/players_temp', 'media/players', []) # Move temp setting from above to correct setting ] @staticmethod def extend_default_settings(default_values): """ Static method to merge the given ``default_values`` with the ``Settings.__default_settings__``. :param default_values: A dict with setting keys and their default values. """ Settings.__default_settings__.update(default_values) @staticmethod def set_filename(ini_file): """ Sets the complete path to an Ini file to be used by Settings objects. Does not affect existing Settings objects. """ Settings.__file_path__ = ini_file @staticmethod def set_up_default_values(): """ This static method is called on start up. It is used to perform any operation on the __default_settings__ dict. """ # Make sure the string is translated (when building the dict the string is not translated because the translate # function was not set up as this stage). Settings.__default_settings__['advanced/default service name'] = UiStrings().DefaultServiceName def __init__(self, *args): """ Constructor which checks if this should be a native settings object, or an INI file. """ if not args and Settings.__file_path__ and Settings.defaultFormat() == Settings.IniFormat: QtCore.QSettings.__init__(self, Settings.__file_path__, Settings.IniFormat) else: QtCore.QSettings.__init__(self, *args) # Add shortcuts here so QKeySequence has a QApplication instance to use. Settings.__default_settings__.update({ 'shortcuts/aboutItem': [QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.Key_F1)], 'shortcuts/addToService': [], 'shortcuts/audioPauseItem': [], 'shortcuts/displayTagItem': [], 'shortcuts/blankScreen': [QtGui.QKeySequence(QtCore.Qt.Key_Period)], 'shortcuts/collapse': [QtGui.QKeySequence(QtCore.Qt.Key_Minus)], 'shortcuts/desktopScreen': [QtGui.QKeySequence(QtCore.Qt.Key_D)], 'shortcuts/delete': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/down': [QtGui.QKeySequence(QtCore.Qt.Key_Down)], 'shortcuts/editSong': [], 'shortcuts/escapeItem': [QtGui.QKeySequence(QtCore.Qt.Key_Escape)], 'shortcuts/expand': [QtGui.QKeySequence(QtCore.Qt.Key_Plus)], 'shortcuts/exportThemeItem': [], 'shortcuts/fileNewItem': [QtGui.QKeySequence(QtGui.QKeySequence.New)], 'shortcuts/fileSaveAsItem': [QtGui.QKeySequence(QtGui.QKeySequence.SaveAs)], 'shortcuts/fileExitItem': [QtGui.QKeySequence(QtGui.QKeySequence.Quit)], 'shortcuts/fileSaveItem': [QtGui.QKeySequence(QtGui.QKeySequence.Save)], 'shortcuts/fileOpenItem': [QtGui.QKeySequence(QtGui.QKeySequence.Open)], 'shortcuts/goLive': [], 'shortcuts/importThemeItem': [], 'shortcuts/importBibleItem': [], 'shortcuts/listViewBiblesDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewBiblesPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewBiblesLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewBiblesServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/listViewCustomDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewCustomPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewCustomLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewCustomServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/listViewImagesDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewImagesPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewImagesLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewImagesServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/listViewMediaDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewMediaPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewMediaLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewMediaServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/listViewPresentationsDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewPresentationsPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewPresentationsLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewPresentationsServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/listViewSongsDeleteItem': [QtGui.QKeySequence(QtGui.QKeySequence.Delete)], 'shortcuts/listViewSongsPreviewItem': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/listViewSongsLiveItem': [QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.SHIFT + QtCore.Qt.Key_Enter)], 'shortcuts/listViewSongsServiceItem': [QtGui.QKeySequence(QtCore.Qt.Key_Plus), QtGui.QKeySequence(QtCore.Qt.Key_Equal)], 'shortcuts/lockPanel': [], 'shortcuts/modeDefaultItem': [], 'shortcuts/modeLiveItem': [], 'shortcuts/make_live': [QtGui.QKeySequence(QtCore.Qt.Key_Return), QtGui.QKeySequence(QtCore.Qt.Key_Enter)], 'shortcuts/moveUp': [QtGui.QKeySequence(QtCore.Qt.Key_PageUp)], 'shortcuts/moveTop': [QtGui.QKeySequence(QtCore.Qt.Key_Home)], 'shortcuts/modeSetupItem': [], 'shortcuts/moveBottom': [QtGui.QKeySequence(QtCore.Qt.Key_End)], 'shortcuts/moveDown': [QtGui.QKeySequence(QtCore.Qt.Key_PageDown)], 'shortcuts/nextTrackItem': [], 'shortcuts/nextItem_live': [QtGui.QKeySequence(QtCore.Qt.Key_Down), QtGui.QKeySequence(QtCore.Qt.Key_PageDown)], 'shortcuts/nextItem_preview': [QtGui.QKeySequence(QtCore.Qt.Key_Down), QtGui.QKeySequence(QtCore.Qt.Key_PageDown)], 'shortcuts/nextService': [QtGui.QKeySequence(QtCore.Qt.Key_Right)], 'shortcuts/newService': [], 'shortcuts/offlineHelpItem': [QtGui.QKeySequence(QtGui.QKeySequence.HelpContents)], 'shortcuts/onlineHelpItem': [QtGui.QKeySequence(QtGui.QKeySequence.HelpContents)], 'shortcuts/openService': [], 'shortcuts/saveService': [], 'shortcuts/previousItem_live': [QtGui.QKeySequence(QtCore.Qt.Key_Up), QtGui.QKeySequence(QtCore.Qt.Key_PageUp)], 'shortcuts/playbackPause': [], 'shortcuts/playbackPlay': [], 'shortcuts/playbackStop': [], 'shortcuts/playSlidesLoop': [], 'shortcuts/playSlidesOnce': [], 'shortcuts/previousService': [QtGui.QKeySequence(QtCore.Qt.Key_Left)], 'shortcuts/previousItem_preview': [QtGui.QKeySequence(QtCore.Qt.Key_Up), QtGui.QKeySequence(QtCore.Qt.Key_PageUp)], 'shortcuts/printServiceItem': [QtGui.QKeySequence(QtGui.QKeySequence.Print)], 'shortcuts/songExportItem': [], 'shortcuts/songUsageStatus': [QtGui.QKeySequence(QtCore.Qt.Key_F4)], 'shortcuts/searchShortcut': [QtGui.QKeySequence(QtGui.QKeySequence.Find)], 'shortcuts/settingsShortcutsItem': [], 'shortcuts/settingsImportItem': [], 'shortcuts/settingsPluginListItem': [QtGui.QKeySequence(QtCore.Qt.ALT + QtCore.Qt.Key_F7)], 'shortcuts/songUsageDelete': [], 'shortcuts/settingsConfigureItem': [QtGui.QKeySequence(QtGui.QKeySequence.Preferences)], 'shortcuts/shortcutAction_B': [QtGui.QKeySequence(QtCore.Qt.Key_B)], 'shortcuts/shortcutAction_C': [QtGui.QKeySequence(QtCore.Qt.Key_C)], 'shortcuts/shortcutAction_E': [QtGui.QKeySequence(QtCore.Qt.Key_E)], 'shortcuts/shortcutAction_I': [QtGui.QKeySequence(QtCore.Qt.Key_I)], 'shortcuts/shortcutAction_O': [QtGui.QKeySequence(QtCore.Qt.Key_O)], 'shortcuts/shortcutAction_P': [QtGui.QKeySequence(QtCore.Qt.Key_P)], 'shortcuts/shortcutAction_V': [QtGui.QKeySequence(QtCore.Qt.Key_V)], 'shortcuts/shortcutAction_0': [QtGui.QKeySequence(QtCore.Qt.Key_0)], 'shortcuts/shortcutAction_1': [QtGui.QKeySequence(QtCore.Qt.Key_1)], 'shortcuts/shortcutAction_2': [QtGui.QKeySequence(QtCore.Qt.Key_2)], 'shortcuts/shortcutAction_3': [QtGui.QKeySequence(QtCore.Qt.Key_3)], 'shortcuts/shortcutAction_4': [QtGui.QKeySequence(QtCore.Qt.Key_4)], 'shortcuts/shortcutAction_5': [QtGui.QKeySequence(QtCore.Qt.Key_5)], 'shortcuts/shortcutAction_6': [QtGui.QKeySequence(QtCore.Qt.Key_6)], 'shortcuts/shortcutAction_7': [QtGui.QKeySequence(QtCore.Qt.Key_7)], 'shortcuts/shortcutAction_8': [QtGui.QKeySequence(QtCore.Qt.Key_8)], 'shortcuts/shortcutAction_9': [QtGui.QKeySequence(QtCore.Qt.Key_9)], 'shortcuts/settingsExportItem': [], 'shortcuts/songUsageReport': [], 'shortcuts/songImportItem': [], 'shortcuts/themeScreen': [QtGui.QKeySequence(QtCore.Qt.Key_T)], 'shortcuts/toolsReindexItem': [], 'shortcuts/toolsFindDuplicates': [], 'shortcuts/toolsAlertItem': [QtGui.QKeySequence(QtCore.Qt.Key_F7)], 'shortcuts/toolsFirstTimeWizard': [], 'shortcuts/toolsOpenDataFolder': [], 'shortcuts/toolsAddToolItem': [], 'shortcuts/updateThemeImages': [], 'shortcuts/up': [QtGui.QKeySequence(QtCore.Qt.Key_Up)], 'shortcuts/viewProjectorManagerItem': [QtGui.QKeySequence(QtCore.Qt.Key_F6)], 'shortcuts/viewThemeManagerItem': [QtGui.QKeySequence(QtCore.Qt.Key_F10)], 'shortcuts/viewMediaManagerItem': [QtGui.QKeySequence(QtCore.Qt.Key_F8)], 'shortcuts/viewPreviewPanel': [QtGui.QKeySequence(QtCore.Qt.Key_F11)], 'shortcuts/viewLivePanel': [QtGui.QKeySequence(QtCore.Qt.Key_F12)], 'shortcuts/viewServiceManagerItem': [QtGui.QKeySequence(QtCore.Qt.Key_F9)], 'shortcuts/webSiteItem': [] }) def get_default_value(self, key): """ Get the default value of the given key """ if self.group(): key = self.group() + '/' + key return Settings.__default_settings__[key] def remove_obsolete_settings(self): """ This method is only called to clean up the config. It removes old settings and it renames settings. See ``__obsolete_settings__`` for more details. """ for old_key, new_key, rules in Settings.__obsolete_settings__: # Once removed we don't have to do this again. if self.contains(old_key): if new_key: # Get the value of the old_key. old_value = super(Settings, self).value(old_key) # When we want to convert the value, we have to figure out the default value (because we cannot get # the default value from the central settings dict. if rules: default_value = rules[0][1] old_value = self._convert_value(old_value, default_value) # Iterate over our rules and check what the old_value should be "converted" to. for new, old in rules: # If the value matches with the condition (rule), then use the provided value. This is used to # convert values. E. g. an old value 1 results in True, and 0 in False. if callable(new): old_value = new(old_value) elif old == old_value: old_value = new break self.setValue(new_key, old_value) self.remove(old_key) def value(self, key): """ Returns the value for the given ``key``. The returned ``value`` is of the same type as the default value in the *Settings.__default_settings__* dict. :param key: The key to return the value from. """ # if group() is not empty the group has not been specified together with the key. if self.group(): default_value = Settings.__default_settings__[self.group() + '/' + key] else: default_value = Settings.__default_settings__[key] setting = super(Settings, self).value(key, default_value) return self._convert_value(setting, default_value) def _convert_value(self, setting, default_value): """ This converts the given ``setting`` to the type of the given ``default_value``. :param setting: The setting to convert. This could be ``true`` for example.Settings() :param default_value: Indication the type the setting should be converted to. For example ``True`` (type is boolean), meaning that we convert the string ``true`` to a python boolean. **Note**, this method only converts a few types and might need to be extended if a certain type is missing! """ # Handle 'None' type (empty value) properly. if setting is None: # An empty string saved to the settings results in a None type being returned. # Convert it to empty unicode string. if isinstance(default_value, str): return '' # An empty list saved to the settings results in a None type being returned. else: return [] # Convert the setting to the correct type. if isinstance(default_value, bool): if isinstance(setting, bool): return setting # Sometimes setting is string instead of a boolean. return setting == 'true' if isinstance(default_value, int): return int(setting) return setting def get_files_from_config(self, plugin): """ This removes the settings needed for old way we saved files (e. g. the image paths for the image plugin). A list of file paths are returned. **Note**: Only a list of paths is returned; this does not convert anything! :param plugin: The Plugin object.The caller has to convert/save the list himself; o """ files_list = [] # We need QSettings instead of Settings here to bypass our central settings dict. # Do NOT do this anywhere else! settings = QtCore.QSettings(self.fileName(), Settings.IniFormat) settings.beginGroup(plugin.settings_section) if settings.contains('%s count' % plugin.name): # Get the count. list_count = int(settings.value('%s count' % plugin.name, 0)) if list_count: for counter in range(list_count): # The keys were named e. g.: "image 0" item = settings.value('%s %d' % (plugin.name, counter), '') if item: files_list.append(item) settings.remove('%s %d' % (plugin.name, counter)) settings.remove('%s count' % plugin.name) settings.endGroup() return files_list OpenLP-2.4/openlp/core/ui/0000755000175000017500000000000012663134435014413 5ustar raoulraoulOpenLP-2.4/openlp/core/ui/printservicedialog.py0000644000175000017500000002077012657640340020670 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets of the print service dialog. """ from PyQt5 import QtCore, QtWidgets, QtPrintSupport from openlp.core.common import UiStrings, translate from openlp.core.lib import SpellTextEdit, build_icon class ZoomSize(object): """ Type enumeration for Combo Box sizes """ Page = 0 Width = 1 OneHundred = 2 SeventyFive = 3 Fifty = 4 TwentyFive = 5 class Ui_PrintServiceDialog(object): """ The UI of the print service dialog """ def setupUi(self, print_service_dialog): """ Set up the UI """ print_service_dialog.setObjectName('print_service_dialog') print_service_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) print_service_dialog.resize(664, 594) self.main_layout = QtWidgets.QVBoxLayout(print_service_dialog) self.main_layout.setSpacing(0) self.main_layout.setContentsMargins(0, 0, 0, 0) self.main_layout.setObjectName('main_layout') self.toolbar = QtWidgets.QToolBar(print_service_dialog) self.toolbar.setIconSize(QtCore.QSize(22, 22)) self.toolbar.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.print_button = self.toolbar.addAction(build_icon(':/general/general_print.png'), translate('OpenLP.PrintServiceForm', 'Print')) self.options_button = QtWidgets.QToolButton(self.toolbar) self.options_button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.options_button.setIcon(build_icon(':/system/system_configure.png')) self.options_button.setCheckable(True) self.toolbar.addWidget(self.options_button) self.toolbar.addSeparator() self.plain_copy = self.toolbar.addAction(build_icon(':/system/system_edit_copy.png'), translate('OpenLP.PrintServiceForm', 'Copy')) self.html_copy = self.toolbar.addAction(build_icon(':/system/system_edit_copy.png'), translate('OpenLP.PrintServiceForm', 'Copy as HTML')) self.toolbar.addSeparator() self.zoom_in_button = QtWidgets.QToolButton(self.toolbar) self.zoom_in_button.setIcon(build_icon(':/general/general_zoom_in.png')) self.zoom_in_button.setObjectName('zoom_in_button') self.zoom_in_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_in_button) self.zoom_out_button = QtWidgets.QToolButton(self.toolbar) self.zoom_out_button.setIcon(build_icon(':/general/general_zoom_out.png')) self.zoom_out_button.setObjectName('zoom_out_button') self.zoom_out_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_out_button) self.zoom_original_button = QtWidgets.QToolButton(self.toolbar) self.zoom_original_button.setIcon(build_icon(':/general/general_zoom_original.png')) self.zoom_original_button.setObjectName('zoom_original_button') self.zoom_original_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_original_button) self.zoom_combo_box = QtWidgets.QComboBox(print_service_dialog) self.zoom_combo_box.setObjectName('zoom_combo_box') self.toolbar.addWidget(self.zoom_combo_box) self.main_layout.addWidget(self.toolbar) self.preview_widget = QtPrintSupport.QPrintPreviewWidget(print_service_dialog) self.main_layout.addWidget(self.preview_widget) self.options_widget = QtWidgets.QWidget(print_service_dialog) self.options_widget.hide() self.options_widget.resize(400, 300) self.options_widget.setAutoFillBackground(True) self.options_layout = QtWidgets.QVBoxLayout(self.options_widget) self.options_layout.setContentsMargins(8, 8, 8, 8) self.title_label = QtWidgets.QLabel(self.options_widget) self.title_label.setObjectName('title_label') self.options_layout.addWidget(self.title_label) self.title_line_edit = QtWidgets.QLineEdit(self.options_widget) self.title_line_edit.setObjectName('title_line_edit') self.options_layout.addWidget(self.title_line_edit) self.footer_label = QtWidgets.QLabel(self.options_widget) self.footer_label.setObjectName('footer_label') self.options_layout.addWidget(self.footer_label) self.footer_text_edit = SpellTextEdit(self.options_widget, False) self.footer_text_edit.setObjectName('footer_text_edit') self.options_layout.addWidget(self.footer_text_edit) self.options_group_box = QtWidgets.QGroupBox() self.group_layout = QtWidgets.QVBoxLayout() self.slide_text_check_box = QtWidgets.QCheckBox() self.group_layout.addWidget(self.slide_text_check_box) self.page_break_after_text = QtWidgets.QCheckBox() self.group_layout.addWidget(self.page_break_after_text) self.notes_check_box = QtWidgets.QCheckBox() self.group_layout.addWidget(self.notes_check_box) self.meta_data_check_box = QtWidgets.QCheckBox() self.group_layout.addWidget(self.meta_data_check_box) self.group_layout.addStretch(1) self.options_group_box.setLayout(self.group_layout) self.options_layout.addWidget(self.options_group_box) self.retranslateUi(print_service_dialog) self.options_button.toggled.connect(self.toggle_options) def retranslateUi(self, print_service_dialog): """ Translate the UI on the fly """ print_service_dialog.setWindowTitle(UiStrings().PrintService) self.zoom_out_button.setToolTip(translate('OpenLP.PrintServiceForm', 'Zoom Out')) self.zoom_original_button.setToolTip(translate('OpenLP.PrintServiceForm', 'Zoom Original')) self.zoom_in_button.setToolTip(translate('OpenLP.PrintServiceForm', 'Zoom In')) self.options_button.setText(translate('OpenLP.PrintServiceForm', 'Options')) self.title_label.setText(translate('OpenLP.PrintServiceForm', 'Title:')) self.footer_label.setText(translate('OpenLP.PrintServiceForm', 'Custom Footer Text:')) self.options_group_box.setTitle(translate('OpenLP.PrintServiceForm', 'Other Options')) self.slide_text_check_box.setText(translate('OpenLP.PrintServiceForm', 'Include slide text if available')) self.page_break_after_text.setText(translate('OpenLP.PrintServiceForm', 'Add page break before each text item')) self.notes_check_box.setText(translate('OpenLP.PrintServiceForm', 'Include service item notes')) self.meta_data_check_box.setText(translate('OpenLP.PrintServiceForm', 'Include play length of media items')) self.title_line_edit.setText(translate('OpenLP.PrintServiceForm', 'Service Sheet')) # Do not change the order. self.zoom_combo_box.addItems([ translate('OpenLP.PrintServiceDialog', 'Fit Page'), translate('OpenLP.PrintServiceDialog', 'Fit Width'), '100%', '75%', '50%', '25%' ]) OpenLP-2.4/openlp/core/ui/themestab.py0000644000175000017500000002627612657640340016756 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The Themes configuration tab """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, Settings, ThemeLevel, UiStrings, translate from openlp.core.lib import SettingsTab from openlp.core.lib.ui import find_and_set_in_combo_box class ThemesTab(SettingsTab): """ ThemesTab is the theme settings tab in the settings dialog. """ def __init__(self, parent): """ Constructor """ self.icon_path = ':/themes/theme_new.png' theme_translated = translate('OpenLP.ThemesTab', 'Themes') super(ThemesTab, self).__init__(parent, 'Themes', theme_translated) def setupUi(self): """ Set up the UI """ self.setObjectName('ThemesTab') super(ThemesTab, self).setupUi() self.global_group_box = QtWidgets.QGroupBox(self.left_column) self.global_group_box.setObjectName('global_group_box') self.global_group_box_layout = QtWidgets.QVBoxLayout(self.global_group_box) self.global_group_box_layout.setObjectName('global_group_box_layout') self.default_combo_box = QtWidgets.QComboBox(self.global_group_box) self.default_combo_box.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength) self.default_combo_box.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed) self.default_combo_box.setObjectName('default_combo_box') self.global_group_box_layout.addWidget(self.default_combo_box) self.default_list_view = QtWidgets.QLabel(self.global_group_box) self.default_list_view.setObjectName('default_list_view') self.global_group_box_layout.addWidget(self.default_list_view) self.left_layout.addWidget(self.global_group_box) self.universal_group_box = QtWidgets.QGroupBox(self.left_column) self.universal_group_box.setObjectName('universal_group_box') self.universal_group_box_layout = QtWidgets.QVBoxLayout(self.universal_group_box) self.universal_group_box_layout.setObjectName('universal_group_box_layout') self.wrap_footer_check_box = QtWidgets.QCheckBox(self.universal_group_box) self.wrap_footer_check_box.setObjectName('wrap_footer_check_box') self.universal_group_box_layout.addWidget(self.wrap_footer_check_box) self.left_layout.addWidget(self.universal_group_box) self.left_layout.addStretch() self.level_group_box = QtWidgets.QGroupBox(self.right_column) self.level_group_box.setObjectName('level_group_box') self.level_layout = QtWidgets.QFormLayout(self.level_group_box) self.level_layout.setLabelAlignment(QtCore.Qt.AlignLeft | QtCore.Qt.AlignTop) self.level_layout.setFormAlignment(QtCore.Qt.AlignLeft | QtCore.Qt.AlignTop) self.level_layout.setObjectName('level_layout') self.song_level_radio_button = QtWidgets.QRadioButton(self.level_group_box) self.song_level_radio_button.setObjectName('song_level_radio_button') self.song_level_label = QtWidgets.QLabel(self.level_group_box) self.song_level_label.setObjectName('song_level_label') self.level_layout.addRow(self.song_level_radio_button, self.song_level_label) self.service_level_radio_button = QtWidgets.QRadioButton(self.level_group_box) self.service_level_radio_button.setObjectName('service_level_radio_button') self.service_level_label = QtWidgets.QLabel(self.level_group_box) self.service_level_label.setObjectName('service_level_label') self.level_layout.addRow(self.service_level_radio_button, self.service_level_label) self.global_level_radio_button = QtWidgets.QRadioButton(self.level_group_box) self.global_level_radio_button.setObjectName('global_level_radio_button') self.global_level_label = QtWidgets.QLabel(self.level_group_box) self.global_level_label.setObjectName('global_level_label') self.level_layout.addRow(self.global_level_radio_button, self.global_level_label) label_top_margin = (self.song_level_radio_button.sizeHint().height() - self.song_level_label.sizeHint().height()) // 2 for label in [self.song_level_label, self.service_level_label, self.global_level_label]: rect = label.rect() rect.setTop(rect.top() + label_top_margin) label.setFrameRect(rect) label.setWordWrap(True) self.right_layout.addWidget(self.level_group_box) self.right_layout.addStretch() self.song_level_radio_button.clicked.connect(self.on_song_level_button_clicked) self.service_level_radio_button.clicked.connect(self.on_service_level_button_clicked) self.global_level_radio_button.clicked.connect(self.on_global_level_button_clicked) self.default_combo_box.activated.connect(self.on_default_combo_box_changed) Registry().register_function('theme_update_list', self.update_theme_list) def retranslateUi(self): """ Translate the UI on the fly """ self.tab_title_visible = UiStrings().Themes self.global_group_box.setTitle(translate('OpenLP.ThemesTab', 'Global Theme')) self.universal_group_box.setTitle(translate('OpenLP.ThemesTab', 'Universal Settings')) self.wrap_footer_check_box.setText(translate('OpenLP.ThemesTab', '&Wrap footer text')) self.level_group_box.setTitle(translate('OpenLP.ThemesTab', 'Theme Level')) self.song_level_radio_button.setText(translate('OpenLP.ThemesTab', 'S&ong Level')) self.song_level_label.setText( translate('OpenLP.ThemesTab', 'Use the theme from each song in the database. If a song doesn\'t have a ' 'theme associated with it, then use the service\'s theme. If the service ' 'doesn\'t have a theme, then use the global theme.')) self.service_level_radio_button.setText(translate('OpenLP.ThemesTab', '&Service Level')) self.service_level_label.setText( translate('OpenLP.ThemesTab', 'Use the theme from the service, overriding any of the individual ' 'songs\' themes. If the service doesn\'t have a theme, then use the global ' 'theme.')) self.global_level_radio_button.setText(translate('OpenLP.ThemesTab', '&Global Level')) self.global_level_label.setText(translate('OpenLP.ThemesTab', 'Use the global theme, overriding any themes ' 'associated with either the service or the ' 'songs.')) def load(self): """ Load the theme settings into the tab """ settings = Settings() settings.beginGroup(self.settings_section) self.theme_level = settings.value('theme level') self.global_theme = settings.value('global theme') self.wrap_footer_check_box.setChecked(settings.value('wrap footer')) settings.endGroup() if self.theme_level == ThemeLevel.Global: self.global_level_radio_button.setChecked(True) elif self.theme_level == ThemeLevel.Service: self.service_level_radio_button.setChecked(True) else: self.song_level_radio_button.setChecked(True) def save(self): """ Save the settings """ settings = Settings() settings.beginGroup(self.settings_section) settings.setValue('theme level', self.theme_level) settings.setValue('global theme', self.global_theme) settings.setValue('wrap footer', self.wrap_footer_check_box.isChecked()) settings.endGroup() self.renderer.set_theme_level(self.theme_level) if self.tab_visited: self.settings_form.register_post_process('theme_update_global') self.tab_visited = False def on_song_level_button_clicked(self): """ Set the theme level """ self.theme_level = ThemeLevel.Song def on_service_level_button_clicked(self): """ Set the theme level """ self.theme_level = ThemeLevel.Service def on_global_level_button_clicked(self): """ Set the theme level """ self.theme_level = ThemeLevel.Global def on_default_combo_box_changed(self, value): """ Set the global default theme """ self.global_theme = self.default_combo_box.currentText() self.renderer.set_global_theme() self._preview_global_theme() def update_theme_list(self, theme_list): """ Called from ThemeManager when the Themes have changed. :param theme_list: The list of available themes:: ['Bible Theme', 'Song Theme'] """ # Reload as may have been triggered by the ThemeManager. self.global_theme = Settings().value(self.settings_section + '/global theme') self.default_combo_box.clear() self.default_combo_box.addItems(theme_list) find_and_set_in_combo_box(self.default_combo_box, self.global_theme) self.renderer.set_global_theme() self.renderer.set_theme_level(self.theme_level) if self.global_theme is not '': self._preview_global_theme() def _preview_global_theme(self): """ Utility method to update the global theme preview image. """ image = self.theme_manager.get_preview_image(self.global_theme) preview = QtGui.QPixmap(str(image)) if not preview.isNull(): preview = preview.scaled(300, 255, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) self.default_list_view.setPixmap(preview) OpenLP-2.4/openlp/core/ui/themewizard.py0000644000175000017500000010220312657640340017306 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The Create/Edit theme wizard """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import UiStrings, translate, is_macosx from openlp.core.lib import build_icon, ColorButton from openlp.core.lib.theme import HorizontalType, BackgroundType, BackgroundGradientType from openlp.core.lib.ui import add_welcome_page, create_valign_selection_widgets class Ui_ThemeWizard(object): """ The Create/Edit theme wizard """ def setupUi(self, theme_wizard): """ Set up the UI """ theme_wizard.setObjectName('OpenLP.ThemeWizard') theme_wizard.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) theme_wizard.setModal(True) theme_wizard.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | QtWidgets.QWizard.HaveCustomButton1) if is_macosx(): theme_wizard.setPixmap(QtWidgets.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png')) theme_wizard.resize(646, 400) else: theme_wizard.setWizardStyle(QtWidgets.QWizard.ModernStyle) self.spacer = QtWidgets.QSpacerItem(10, 0, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum) # Welcome Page add_welcome_page(theme_wizard, ':/wizards/wizard_createtheme.bmp') # Background Page self.background_page = QtWidgets.QWizardPage() self.background_page.setObjectName('background_page') self.background_layout = QtWidgets.QVBoxLayout(self.background_page) self.background_layout.setObjectName('background_layout') self.background_type_layout = QtWidgets.QFormLayout() self.background_type_layout.setObjectName('background_type_layout') self.background_label = QtWidgets.QLabel(self.background_page) self.background_label.setObjectName('background_label') self.background_combo_box = QtWidgets.QComboBox(self.background_page) self.background_combo_box.addItems(['', '', '', '']) self.background_combo_box.setObjectName('background_combo_box') self.background_type_layout.addRow(self.background_label, self.background_combo_box) self.background_type_layout.setItem(1, QtWidgets.QFormLayout.LabelRole, self.spacer) self.background_layout.addLayout(self.background_type_layout) self.background_stack = QtWidgets.QStackedLayout() self.background_stack.setObjectName('background_stack') self.color_widget = QtWidgets.QWidget(self.background_page) self.color_widget.setObjectName('color_widget') self.color_layout = QtWidgets.QFormLayout(self.color_widget) self.color_layout.setContentsMargins(0, 0, 0, 0) self.color_layout.setObjectName('color_layout') self.color_label = QtWidgets.QLabel(self.color_widget) self.color_label.setObjectName('color_label') self.color_button = ColorButton(self.color_widget) self.color_button.setObjectName('color_button') self.color_layout.addRow(self.color_label, self.color_button) self.color_layout.setItem(1, QtWidgets.QFormLayout.LabelRole, self.spacer) self.background_stack.addWidget(self.color_widget) self.gradient_widget = QtWidgets.QWidget(self.background_page) self.gradient_widget.setObjectName('Gradient_widget') self.gradient_layout = QtWidgets.QFormLayout(self.gradient_widget) self.gradient_layout.setContentsMargins(0, 0, 0, 0) self.gradient_layout.setObjectName('gradient_layout') self.gradient_start_label = QtWidgets.QLabel(self.gradient_widget) self.gradient_start_label.setObjectName('gradient_start_label') self.gradient_start_button = ColorButton(self.gradient_widget) self.gradient_start_button.setObjectName('gradient_start_button') self.gradient_layout.addRow(self.gradient_start_label, self.gradient_start_button) self.gradient_end_label = QtWidgets.QLabel(self.gradient_widget) self.gradient_end_label.setObjectName('gradient_end_label') self.gradient_end_button = ColorButton(self.gradient_widget) self.gradient_end_button.setObjectName('gradient_end_button') self.gradient_layout.addRow(self.gradient_end_label, self.gradient_end_button) self.gradient_type_label = QtWidgets.QLabel(self.gradient_widget) self.gradient_type_label.setObjectName('Gradient_type_label') self.gradient_combo_box = QtWidgets.QComboBox(self.gradient_widget) self.gradient_combo_box.setObjectName('gradient_combo_box') self.gradient_combo_box.addItems(['', '', '', '', '']) self.gradient_layout.addRow(self.gradient_type_label, self.gradient_combo_box) self.gradient_layout.setItem(3, QtWidgets.QFormLayout.LabelRole, self.spacer) self.background_stack.addWidget(self.gradient_widget) self.image_widget = QtWidgets.QWidget(self.background_page) self.image_widget.setObjectName('image_widget') self.image_layout = QtWidgets.QFormLayout(self.image_widget) self.image_layout.setContentsMargins(0, 0, 0, 0) self.image_layout.setObjectName('image_layout') self.image_color_label = QtWidgets.QLabel(self.color_widget) self.image_color_label.setObjectName('image_color_label') self.image_color_button = ColorButton(self.color_widget) self.image_color_button.setObjectName('image_color_button') self.image_layout.addRow(self.image_color_label, self.image_color_button) self.image_label = QtWidgets.QLabel(self.image_widget) self.image_label.setObjectName('image_label') self.image_file_layout = QtWidgets.QHBoxLayout() self.image_file_layout.setObjectName('image_file_layout') self.image_file_edit = QtWidgets.QLineEdit(self.image_widget) self.image_file_edit.setObjectName('image_file_edit') self.image_file_layout.addWidget(self.image_file_edit) self.image_browse_button = QtWidgets.QToolButton(self.image_widget) self.image_browse_button.setObjectName('image_browse_button') self.image_browse_button.setIcon(build_icon(':/general/general_open.png')) self.image_file_layout.addWidget(self.image_browse_button) self.image_layout.addRow(self.image_label, self.image_file_layout) self.image_layout.setItem(2, QtWidgets.QFormLayout.LabelRole, self.spacer) self.background_stack.addWidget(self.image_widget) self.transparent_widget = QtWidgets.QWidget(self.background_page) self.transparent_widget.setObjectName('TransparentWidget') self.transparent_layout = QtWidgets.QFormLayout(self.transparent_widget) self.transparent_layout.setContentsMargins(0, 0, 0, 0) self.transparent_layout.setObjectName('Transparent_layout') self.background_stack.addWidget(self.transparent_widget) self.background_layout.addLayout(self.background_stack) theme_wizard.addPage(self.background_page) # Main Area Page self.main_area_page = QtWidgets.QWizardPage() self.main_area_page.setObjectName('main_area_page') self.main_area_layout = QtWidgets.QFormLayout(self.main_area_page) self.main_area_layout.setObjectName('main_area_layout') self.main_font_label = QtWidgets.QLabel(self.main_area_page) self.main_font_label.setObjectName('main_font_label') self.main_font_combo_box = QtWidgets.QFontComboBox(self.main_area_page) self.main_font_combo_box.setObjectName('main_font_combo_box') self.main_area_layout.addRow(self.main_font_label, self.main_font_combo_box) self.main_color_label = QtWidgets.QLabel(self.main_area_page) self.main_color_label.setObjectName('main_color_label') self.main_properties_layout = QtWidgets.QHBoxLayout() self.main_properties_layout.setObjectName('main_properties_layout') self.main_color_button = ColorButton(self.main_area_page) self.main_color_button.setObjectName('main_color_button') self.main_properties_layout.addWidget(self.main_color_button) self.main_properties_layout.addSpacing(20) self.main_bold_check_box = QtWidgets.QCheckBox(self.main_area_page) self.main_bold_check_box.setObjectName('main_bold_check_box') self.main_properties_layout.addWidget(self.main_bold_check_box) self.main_properties_layout.addSpacing(20) self.main_italics_check_box = QtWidgets.QCheckBox(self.main_area_page) self.main_italics_check_box.setObjectName('MainItalicsCheckBox') self.main_properties_layout.addWidget(self.main_italics_check_box) self.main_area_layout.addRow(self.main_color_label, self.main_properties_layout) self.main_size_label = QtWidgets.QLabel(self.main_area_page) self.main_size_label.setObjectName('main_size_label') self.main_size_layout = QtWidgets.QHBoxLayout() self.main_size_layout.setObjectName('main_size_layout') self.main_size_spin_box = QtWidgets.QSpinBox(self.main_area_page) self.main_size_spin_box.setMaximum(999) self.main_size_spin_box.setValue(16) self.main_size_spin_box.setObjectName('main_size_spin_box') self.main_size_layout.addWidget(self.main_size_spin_box) self.main_line_count_label = QtWidgets.QLabel(self.main_area_page) self.main_line_count_label.setObjectName('main_line_count_label') self.main_size_layout.addWidget(self.main_line_count_label) self.main_area_layout.addRow(self.main_size_label, self.main_size_layout) self.line_spacing_label = QtWidgets.QLabel(self.main_area_page) self.line_spacing_label.setObjectName('line_spacing_label') self.line_spacing_spin_box = QtWidgets.QSpinBox(self.main_area_page) self.line_spacing_spin_box.setMinimum(-250) self.line_spacing_spin_box.setMaximum(250) self.line_spacing_spin_box.setObjectName('line_spacing_spin_box') self.main_area_layout.addRow(self.line_spacing_label, self.line_spacing_spin_box) self.outline_check_box = QtWidgets.QCheckBox(self.main_area_page) self.outline_check_box.setObjectName('outline_check_box') self.outline_layout = QtWidgets.QHBoxLayout() self.outline_layout.setObjectName('outline_layout') self.outline_color_button = ColorButton(self.main_area_page) self.outline_color_button.setEnabled(False) self.outline_color_button.setObjectName('Outline_color_button') self.outline_layout.addWidget(self.outline_color_button) self.outline_layout.addSpacing(20) self.outline_size_label = QtWidgets.QLabel(self.main_area_page) self.outline_size_label.setObjectName('outline_size_label') self.outline_layout.addWidget(self.outline_size_label) self.outline_size_spin_box = QtWidgets.QSpinBox(self.main_area_page) self.outline_size_spin_box.setEnabled(False) self.outline_size_spin_box.setObjectName('outline_size_spin_box') self.outline_layout.addWidget(self.outline_size_spin_box) self.main_area_layout.addRow(self.outline_check_box, self.outline_layout) self.shadow_check_box = QtWidgets.QCheckBox(self.main_area_page) self.shadow_check_box.setObjectName('shadow_check_box') self.shadow_layout = QtWidgets.QHBoxLayout() self.shadow_layout.setObjectName('shadow_layout') self.shadow_color_button = ColorButton(self.main_area_page) self.shadow_color_button.setEnabled(False) self.shadow_color_button.setObjectName('shadow_color_button') self.shadow_layout.addWidget(self.shadow_color_button) self.shadow_layout.addSpacing(20) self.shadow_size_label = QtWidgets.QLabel(self.main_area_page) self.shadow_size_label.setObjectName('shadow_size_label') self.shadow_layout.addWidget(self.shadow_size_label) self.shadow_size_spin_box = QtWidgets.QSpinBox(self.main_area_page) self.shadow_size_spin_box.setEnabled(False) self.shadow_size_spin_box.setObjectName('shadow_size_spin_box') self.shadow_layout.addWidget(self.shadow_size_spin_box) self.main_area_layout.addRow(self.shadow_check_box, self.shadow_layout) theme_wizard.addPage(self.main_area_page) # Footer Area Page self.footer_area_page = QtWidgets.QWizardPage() self.footer_area_page.setObjectName('footer_area_page') self.footer_area_layout = QtWidgets.QFormLayout(self.footer_area_page) self.footer_area_layout.setObjectName('footer_area_layout') self.footer_font_label = QtWidgets.QLabel(self.footer_area_page) self.footer_font_label.setObjectName('FooterFontLabel') self.footer_font_combo_box = QtWidgets.QFontComboBox(self.footer_area_page) self.footer_font_combo_box.setObjectName('footer_font_combo_box') self.footer_area_layout.addRow(self.footer_font_label, self.footer_font_combo_box) self.footer_color_label = QtWidgets.QLabel(self.footer_area_page) self.footer_color_label.setObjectName('footer_color_label') self.footer_color_button = ColorButton(self.footer_area_page) self.footer_color_button.setObjectName('footer_color_button') self.footer_area_layout.addRow(self.footer_color_label, self.footer_color_button) self.footer_size_label = QtWidgets.QLabel(self.footer_area_page) self.footer_size_label.setObjectName('footer_size_label') self.footer_size_spin_box = QtWidgets.QSpinBox(self.footer_area_page) self.footer_size_spin_box.setMaximum(999) self.footer_size_spin_box.setValue(10) self.footer_size_spin_box.setObjectName('FooterSizeSpinBox') self.footer_area_layout.addRow(self.footer_size_label, self.footer_size_spin_box) self.footer_area_layout.setItem(3, QtWidgets.QFormLayout.LabelRole, self.spacer) theme_wizard.addPage(self.footer_area_page) # Alignment Page self.alignment_page = QtWidgets.QWizardPage() self.alignment_page.setObjectName('alignment_page') self.alignment_layout = QtWidgets.QFormLayout(self.alignment_page) self.alignment_layout.setObjectName('alignment_layout') self.horizontal_label = QtWidgets.QLabel(self.alignment_page) self.horizontal_label.setObjectName('horizontal_label') self.horizontal_combo_box = QtWidgets.QComboBox(self.alignment_page) self.horizontal_combo_box.addItems(['', '', '', '']) self.horizontal_combo_box.setObjectName('horizontal_combo_box') self.alignment_layout.addRow(self.horizontal_label, self.horizontal_combo_box) self.vertical_label, self.vertical_combo_box = create_valign_selection_widgets(self.alignment_page) self.vertical_label.setObjectName('vertical_label') self.vertical_combo_box.setObjectName('vertical_combo_box') self.alignment_layout.addRow(self.vertical_label, self.vertical_combo_box) self.transitions_label = QtWidgets.QLabel(self.alignment_page) self.transitions_label.setObjectName('transitions_label') self.transitions_check_box = QtWidgets.QCheckBox(self.alignment_page) self.transitions_check_box.setObjectName('transitions_check_box') self.alignment_layout.addRow(self.transitions_label, self.transitions_check_box) self.alignment_layout.setItem(3, QtWidgets.QFormLayout.LabelRole, self.spacer) theme_wizard.addPage(self.alignment_page) # Area Position Page self.area_position_page = QtWidgets.QWizardPage() self.area_position_page.setObjectName('area_position_page') self.area_position_layout = QtWidgets.QHBoxLayout(self.area_position_page) self.area_position_layout.setObjectName('area_position_layout') self.main_position_group_box = QtWidgets.QGroupBox(self.area_position_page) self.main_position_group_box.setObjectName('main_position_group_box') self.main_position_layout = QtWidgets.QFormLayout(self.main_position_group_box) self.main_position_layout.setObjectName('main_position_layout') self.main_position_check_box = QtWidgets.QCheckBox(self.main_position_group_box) self.main_position_check_box.setObjectName('main_position_check_box') self.main_position_layout.addRow(self.main_position_check_box) self.main_x_label = QtWidgets.QLabel(self.main_position_group_box) self.main_x_label.setObjectName('main_x_label') self.main_x_spin_box = QtWidgets.QSpinBox(self.main_position_group_box) self.main_x_spin_box.setMaximum(9999) self.main_x_spin_box.setObjectName('main_x_spin_box') self.main_position_layout.addRow(self.main_x_label, self.main_x_spin_box) self.main_y_label = QtWidgets.QLabel(self.main_position_group_box) self.main_y_label.setObjectName('main_y_label') self.main_y_spin_box = QtWidgets.QSpinBox(self.main_position_group_box) self.main_y_spin_box.setMaximum(9999) self.main_y_spin_box.setObjectName('main_y_spin_box') self.main_position_layout.addRow(self.main_y_label, self.main_y_spin_box) self.main_width_label = QtWidgets.QLabel(self.main_position_group_box) self.main_width_label.setObjectName('main_width_label') self.main_width_spin_box = QtWidgets.QSpinBox(self.main_position_group_box) self.main_width_spin_box.setMaximum(9999) self.main_width_spin_box.setObjectName('main_width_spin_box') self.main_position_layout.addRow(self.main_width_label, self.main_width_spin_box) self.main_height_label = QtWidgets.QLabel(self.main_position_group_box) self.main_height_label.setObjectName('main_height_label') self.main_height_spin_box = QtWidgets.QSpinBox(self.main_position_group_box) self.main_height_spin_box.setMaximum(9999) self.main_height_spin_box.setObjectName('main_height_spin_box') self.main_position_layout.addRow(self.main_height_label, self.main_height_spin_box) self.area_position_layout.addWidget(self.main_position_group_box) self.footer_position_group_box = QtWidgets.QGroupBox(self.area_position_page) self.footer_position_group_box.setObjectName('footer_position_group_box') self.footer_position_layout = QtWidgets.QFormLayout(self.footer_position_group_box) self.footer_position_layout.setObjectName('footer_position_layout') self.footer_position_check_box = QtWidgets.QCheckBox(self.footer_position_group_box) self.footer_position_check_box.setObjectName('footer_position_check_box') self.footer_position_layout.addRow(self.footer_position_check_box) self.footer_x_label = QtWidgets.QLabel(self.footer_position_group_box) self.footer_x_label.setObjectName('footer_x_label') self.footer_x_spin_box = QtWidgets.QSpinBox(self.footer_position_group_box) self.footer_x_spin_box.setMaximum(9999) self.footer_x_spin_box.setObjectName('footer_x_spin_box') self.footer_position_layout.addRow(self.footer_x_label, self.footer_x_spin_box) self.footer_y_label = QtWidgets.QLabel(self.footer_position_group_box) self.footer_y_label.setObjectName('footer_y_label') self.footer_y_spin_box = QtWidgets.QSpinBox(self.footer_position_group_box) self.footer_y_spin_box.setMaximum(9999) self.footer_y_spin_box.setObjectName('footer_y_spin_box') self.footer_position_layout.addRow(self.footer_y_label, self.footer_y_spin_box) self.footer_width_label = QtWidgets.QLabel(self.footer_position_group_box) self.footer_width_label.setObjectName('footer_width_label') self.footer_width_spin_box = QtWidgets.QSpinBox(self.footer_position_group_box) self.footer_width_spin_box.setMaximum(9999) self.footer_width_spin_box.setObjectName('footer_width_spin_box') self.footer_position_layout.addRow(self.footer_width_label, self.footer_width_spin_box) self.footer_height_label = QtWidgets.QLabel(self.footer_position_group_box) self.footer_height_label.setObjectName('footer_height_label') self.footer_height_spin_box = QtWidgets.QSpinBox(self.footer_position_group_box) self.footer_height_spin_box.setMaximum(9999) self.footer_height_spin_box.setObjectName('footer_height_spin_box') self.footer_position_layout.addRow(self.footer_height_label, self.footer_height_spin_box) self.area_position_layout.addWidget(self.footer_position_group_box) theme_wizard.addPage(self.area_position_page) # Preview Page self.preview_page = QtWidgets.QWizardPage() self.preview_page.setObjectName('preview_page') self.preview_layout = QtWidgets.QVBoxLayout(self.preview_page) self.preview_layout.setObjectName('preview_layout') self.theme_name_layout = QtWidgets.QFormLayout() self.theme_name_layout.setObjectName('theme_name_layout') self.theme_name_label = QtWidgets.QLabel(self.preview_page) self.theme_name_label.setObjectName('theme_name_label') self.theme_name_edit = QtWidgets.QLineEdit(self.preview_page) self.theme_name_edit.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(r'[^/\\?*|<>\[\]":<>+%]+'), self)) self.theme_name_edit.setObjectName('ThemeNameEdit') self.theme_name_layout.addRow(self.theme_name_label, self.theme_name_edit) self.preview_layout.addLayout(self.theme_name_layout) self.preview_area = QtWidgets.QWidget(self.preview_page) self.preview_area.setObjectName('PreviewArea') self.preview_area_layout = QtWidgets.QGridLayout(self.preview_area) self.preview_area_layout.setContentsMargins(0, 0, 0, 0) self.preview_area_layout.setColumnStretch(0, 1) self.preview_area_layout.setRowStretch(0, 1) self.preview_area_layout.setObjectName('preview_area_layout') self.preview_box_label = QtWidgets.QLabel(self.preview_area) self.preview_box_label.setFrameShape(QtWidgets.QFrame.Box) self.preview_box_label.setScaledContents(True) self.preview_box_label.setObjectName('preview_box_label') self.preview_area_layout.addWidget(self.preview_box_label) self.preview_layout.addWidget(self.preview_area) theme_wizard.addPage(self.preview_page) self.retranslateUi(theme_wizard) self.background_combo_box.currentIndexChanged.connect(self.background_stack.setCurrentIndex) self.outline_check_box.toggled.connect(self.outline_color_button.setEnabled) self.outline_check_box.toggled.connect(self.outline_size_spin_box.setEnabled) self.shadow_check_box.toggled.connect(self.shadow_color_button.setEnabled) self.shadow_check_box.toggled.connect(self.shadow_size_spin_box.setEnabled) self.main_position_check_box.toggled.connect(self.main_x_spin_box.setDisabled) self.main_position_check_box.toggled.connect(self.main_y_spin_box.setDisabled) self.main_position_check_box.toggled.connect(self.main_width_spin_box.setDisabled) self.main_position_check_box.toggled.connect(self.main_height_spin_box.setDisabled) self.footer_position_check_box.toggled.connect(self.footer_x_spin_box.setDisabled) self.footer_position_check_box.toggled.connect(self.footer_y_spin_box.setDisabled) self.footer_position_check_box.toggled.connect(self.footer_width_spin_box.setDisabled) self.footer_position_check_box.toggled.connect(self.footer_height_spin_box.setDisabled) def retranslateUi(self, theme_wizard): """ Translate the UI on the fly """ theme_wizard.setWindowTitle(translate('OpenLP.ThemeWizard', 'Theme Wizard')) self.title_label.setText('%s' % translate('OpenLP.ThemeWizard', 'Welcome to the Theme Wizard')) self.information_label.setText( translate('OpenLP.ThemeWizard', 'This wizard will help you to create and edit your themes. Click the next ' 'button below to start the process by setting up your background.')) self.background_page.setTitle(translate('OpenLP.ThemeWizard', 'Set Up Background')) self.background_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Set up your theme\'s background ' 'according to the parameters below.')) self.background_label.setText(translate('OpenLP.ThemeWizard', 'Background type:')) self.background_combo_box.setItemText(BackgroundType.Solid, translate('OpenLP.ThemeWizard', 'Solid color')) self.background_combo_box.setItemText(BackgroundType.Gradient, translate('OpenLP.ThemeWizard', 'Gradient')) self.background_combo_box.setItemText(BackgroundType.Image, UiStrings().Image) self.background_combo_box.setItemText(BackgroundType.Transparent, translate('OpenLP.ThemeWizard', 'Transparent')) self.color_label.setText(translate('OpenLP.ThemeWizard', 'color:')) self.gradient_start_label.setText(translate('OpenLP.ThemeWizard', 'Starting color:')) self.gradient_end_label.setText(translate('OpenLP.ThemeWizard', 'Ending color:')) self.gradient_type_label.setText(translate('OpenLP.ThemeWizard', 'Gradient:')) self.gradient_combo_box.setItemText(BackgroundGradientType.Horizontal, translate('OpenLP.ThemeWizard', 'Horizontal')) self.gradient_combo_box.setItemText(BackgroundGradientType.Vertical, translate('OpenLP.ThemeWizard', 'Vertical')) self.gradient_combo_box.setItemText(BackgroundGradientType.Circular, translate('OpenLP.ThemeWizard', 'Circular')) self.gradient_combo_box.setItemText(BackgroundGradientType.LeftTop, translate('OpenLP.ThemeWizard', 'Top Left - Bottom Right')) self.gradient_combo_box.setItemText(BackgroundGradientType.LeftBottom, translate('OpenLP.ThemeWizard', 'Bottom Left - Top Right')) self.image_color_label.setText(translate('OpenLP.ThemeWizard', 'Background color:')) self.image_label.setText('%s:' % UiStrings().Image) self.main_area_page.setTitle(translate('OpenLP.ThemeWizard', 'Main Area Font Details')) self.main_area_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Define the font and display ' 'characteristics for the Display text')) self.main_font_label.setText(translate('OpenLP.ThemeWizard', 'Font:')) self.main_color_label.setText(translate('OpenLP.ThemeWizard', 'color:')) self.main_size_label.setText(translate('OpenLP.ThemeWizard', 'Size:')) self.main_size_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.line_spacing_label.setText(translate('OpenLP.ThemeWizard', 'Line Spacing:')) self.line_spacing_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.outline_check_box.setText(translate('OpenLP.ThemeWizard', '&Outline:')) self.outline_size_label.setText(translate('OpenLP.ThemeWizard', 'Size:')) self.outline_size_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.shadow_check_box.setText(translate('OpenLP.ThemeWizard', '&Shadow:')) self.shadow_size_label.setText(translate('OpenLP.ThemeWizard', 'Size:')) self.shadow_size_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.main_bold_check_box.setText(translate('OpenLP.ThemeWizard', 'Bold')) self.main_italics_check_box.setText(translate('OpenLP.ThemeWizard', 'Italic')) self.footer_area_page.setTitle(translate('OpenLP.ThemeWizard', 'Footer Area Font Details')) self.footer_area_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Define the font and display ' 'characteristics for the Footer text')) self.footer_font_label.setText(translate('OpenLP.ThemeWizard', 'Font:')) self.footer_color_label.setText(translate('OpenLP.ThemeWizard', 'color:')) self.footer_size_label.setText(translate('OpenLP.ThemeWizard', 'Size:')) self.footer_size_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.alignment_page.setTitle(translate('OpenLP.ThemeWizard', 'Text Formatting Details')) self.alignment_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Allows additional display ' 'formatting information to be defined')) self.horizontal_label.setText(translate('OpenLP.ThemeWizard', 'Horizontal Align:')) self.horizontal_combo_box.setItemText(HorizontalType.Left, translate('OpenLP.ThemeWizard', 'Left')) self.horizontal_combo_box.setItemText(HorizontalType.Right, translate('OpenLP.ThemeWizard', 'Right')) self.horizontal_combo_box.setItemText(HorizontalType.Center, translate('OpenLP.ThemeWizard', 'Center')) self.horizontal_combo_box.setItemText(HorizontalType.Justify, translate('OpenLP.ThemeWizard', 'Justify')) self.transitions_label.setText(translate('OpenLP.ThemeWizard', 'Transitions:')) self.area_position_page.setTitle(translate('OpenLP.ThemeWizard', 'Output Area Locations')) self.area_position_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Allows you to change and move the' ' Main and Footer areas.')) self.main_position_group_box.setTitle(translate('OpenLP.ThemeWizard', '&Main Area')) self.main_position_check_box.setText(translate('OpenLP.ThemeWizard', '&Use default location')) self.main_x_label.setText(translate('OpenLP.ThemeWizard', 'X position:')) self.main_x_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.main_y_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.main_y_label.setText(translate('OpenLP.ThemeWizard', 'Y position:')) self.main_width_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.main_width_label.setText(translate('OpenLP.ThemeWizard', 'Width:')) self.main_height_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.main_height_label.setText(translate('OpenLP.ThemeWizard', 'Height:')) self.footer_position_group_box.setTitle(translate('OpenLP.ThemeWizard', '&Footer Area')) self.footer_x_label.setText(translate('OpenLP.ThemeWizard', 'X position:')) self.footer_x_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.footer_y_label.setText(translate('OpenLP.ThemeWizard', 'Y position:')) self.footer_y_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.footer_width_label.setText(translate('OpenLP.ThemeWizard', 'Width:')) self.footer_width_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.footer_height_label.setText(translate('OpenLP.ThemeWizard', 'Height:')) self.footer_height_spin_box.setSuffix(translate('OpenLP.ThemeWizard', 'px')) self.footer_position_check_box.setText(translate('OpenLP.ThemeWizard', 'Use default location')) theme_wizard.setOption(QtWidgets.QWizard.HaveCustomButton1, False) theme_wizard.setButtonText(QtWidgets.QWizard.CustomButton1, translate('OpenLP.ThemeWizard', 'Layout Preview')) self.preview_page.setTitle(translate('OpenLP.ThemeWizard', 'Preview and Save')) self.preview_page.setSubTitle(translate('OpenLP.ThemeWizard', 'Preview the theme and save it.')) self.theme_name_label.setText(translate('OpenLP.ThemeWizard', 'Theme name:')) # Align all QFormLayouts towards each other. label_width = max(self.background_label.minimumSizeHint().width(), self.horizontal_label.minimumSizeHint().width()) self.spacer.changeSize(label_width, 0, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) OpenLP-2.4/openlp/core/ui/serviceitemeditform.py0000644000175000017500000001247712657640340021051 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The service item edit dialog """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, RegistryProperties from .serviceitemeditdialog import Ui_ServiceItemEditDialog class ServiceItemEditForm(QtWidgets.QDialog, Ui_ServiceItemEditDialog, RegistryProperties): """ This is the form that is used to edit the verses of the song. """ def __init__(self): """ Constructor """ super(ServiceItemEditForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) self.item_list = [] self.list_widget.currentRowChanged.connect(self.on_current_row_changed) def set_service_item(self, item): """ Set the service item to be edited. """ self.item = item self.item_list = [] if self.item.is_image(): self.data = True self.item_list.extend(self.item._raw_frames) self.load_data() self.list_widget.setCurrentItem(self.list_widget.currentItem()) def get_service_item(self): """ Get the modified service item. """ if self.data: self.item._raw_frames = [] if self.item.is_image(): for item in self.item_list: self.item.add_from_image(item['path'], item['title']) self.item.render() return self.item def load_data(self): """ Loads the image list. """ self.list_widget.clear() for frame in self.item_list: item_name = QtWidgets.QListWidgetItem(frame['title']) self.list_widget.addItem(item_name) def on_delete_button_clicked(self): """ Delete the current row. """ item = self.list_widget.currentItem() if not item: return row = self.list_widget.row(item) self.item_list.pop(row) self.load_data() if row == self.list_widget.count(): row -= 1 self.list_widget.setCurrentRow(row) def on_up_button_clicked(self): """ Move the current row up in the list. """ self.__move_item('up') def on_down_button_clicked(self): """ Move the current row down in the list """ self.__move_item('down') def __move_item(self, direction=''): """ Move the current item. """ if not direction: return item = self.list_widget.currentItem() if not item: return row = self.list_widget.row(item) temp = self.item_list[row] self.item_list.pop(row) if direction == 'up': row -= 1 else: row += 1 self.item_list.insert(row, temp) self.load_data() self.list_widget.setCurrentRow(row) def on_current_row_changed(self, row): """ Called when the currentRow has changed. :param row: The row number (int). """ # Disable all buttons, as no row is selected or only one image is left. if row == -1 or self.list_widget.count() == 1: self.down_button.setEnabled(False) self.up_button.setEnabled(False) self.delete_button.setEnabled(False) else: # Check if we are at the end of the list. if self.list_widget.count() == row + 1: self.down_button.setEnabled(False) else: self.down_button.setEnabled(True) # Check if we are at the beginning of the list. if row == 0: self.up_button.setEnabled(False) else: self.up_button.setEnabled(True) self.delete_button.setEnabled(True) OpenLP-2.4/openlp/core/ui/exceptionform.py0000644000175000017500000002336012657640340017653 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The actual exception dialog form. """ import logging import re import os import platform import bs4 import sqlalchemy from lxml import etree from openlp.core.common import RegistryProperties, is_linux from PyQt5 import Qt, QtCore, QtGui, QtWebKit, QtWidgets try: import migrate MIGRATE_VERSION = getattr(migrate, '__version__', '< 0.7') except ImportError: MIGRATE_VERSION = '-' try: import chardet CHARDET_VERSION = chardet.__version__ except ImportError: CHARDET_VERSION = '-' try: import enchant ENCHANT_VERSION = enchant.__version__ except ImportError: ENCHANT_VERSION = '-' try: import mako MAKO_VERSION = mako.__version__ except ImportError: MAKO_VERSION = '-' try: import icu try: ICU_VERSION = icu.VERSION except AttributeError: ICU_VERSION = 'OK' except ImportError: ICU_VERSION = '-' try: WEBKIT_VERSION = QtWebKit.qWebKitVersion() except AttributeError: WEBKIT_VERSION = '-' try: from openlp.core.ui.media.vlcplayer import VERSION VLC_VERSION = VERSION except ImportError: VLC_VERSION = '-' from openlp.core.common import Settings, UiStrings, translate from openlp.core.utils import get_application_version from .exceptiondialog import Ui_ExceptionDialog log = logging.getLogger(__name__) class ExceptionForm(QtWidgets.QDialog, Ui_ExceptionDialog, RegistryProperties): """ The exception dialog """ def __init__(self): """ Constructor. """ super(ExceptionForm, self).__init__(None, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) self.settings_section = 'crashreport' self.report_text = '**OpenLP Bug Report**\n' \ 'Version: %s\n\n' \ '--- Details of the Exception. ---\n\n%s\n\n ' \ '--- Exception Traceback ---\n%s\n' \ '--- System information ---\n%s\n' \ '--- Library Versions ---\n%s\n' def exec(self): """ Show the dialog. """ self.description_text_edit.setPlainText('') self.on_description_updated() self.file_attachment = None return QtWidgets.QDialog.exec(self) def _create_report(self): """ Create an exception report. """ openlp_version = get_application_version() description = self.description_text_edit.toPlainText() traceback = self.exception_text_edit.toPlainText() system = translate('OpenLP.ExceptionForm', 'Platform: %s\n') % platform.platform() libraries = 'Python: %s\n' % platform.python_version() + \ 'Qt5: %s\n' % Qt.qVersion() + \ 'PyQt5: %s\n' % Qt.PYQT_VERSION_STR + \ 'QtWebkit: %s\n' % WEBKIT_VERSION + \ 'SQLAlchemy: %s\n' % sqlalchemy.__version__ + \ 'SQLAlchemy Migrate: %s\n' % MIGRATE_VERSION + \ 'BeautifulSoup: %s\n' % bs4.__version__ + \ 'lxml: %s\n' % etree.__version__ + \ 'Chardet: %s\n' % CHARDET_VERSION + \ 'PyEnchant: %s\n' % ENCHANT_VERSION + \ 'Mako: %s\n' % MAKO_VERSION + \ 'pyICU: %s\n' % ICU_VERSION + \ 'pyUNO bridge: %s\n' % self._pyuno_import() + \ 'VLC: %s\n' % VLC_VERSION if is_linux(): if os.environ.get('KDE_FULL_SESSION') == 'true': system += 'Desktop: KDE SC\n' elif os.environ.get('GNOME_DESKTOP_SESSION_ID'): system += 'Desktop: GNOME\n' elif os.environ.get('DESKTOP_SESSION') == 'xfce': system += 'Desktop: Xfce\n' return openlp_version, description, traceback, system, libraries def on_save_report_button_clicked(self): """ Saving exception log and system information to a file. """ filename = QtWidgets.QFileDialog.getSaveFileName( self, translate('OpenLP.ExceptionForm', 'Save Crash Report'), Settings().value(self.settings_section + '/last directory'), translate('OpenLP.ExceptionForm', 'Text files (*.txt *.log *.text)'))[0] if filename: filename = str(filename).replace('/', os.path.sep) Settings().setValue(self.settings_section + '/last directory', os.path.dirname(filename)) report_text = self.report_text % self._create_report() try: report_file = open(filename, 'w') try: report_file.write(report_text) except UnicodeError: report_file.close() report_file = open(filename, 'wb') report_file.write(report_text.encode('utf-8')) finally: report_file.close() except IOError: log.exception('Failed to write crash report') finally: report_file.close() def on_send_report_button_clicked(self): """ Opening systems default email client and inserting exception log and system information. """ content = self._create_report() source = '' exception = '' for line in content[2].split('\n'): if re.search(r'[/\\]openlp[/\\]', line): source = re.sub(r'.*[/\\]openlp[/\\](.*)".*', r'\1', line) if ':' in line: exception = line.split('\n')[-1].split(':')[0] subject = 'Bug report: %s in %s' % (exception, source) mail_to_url = QtCore.QUrlQuery('mailto:bugs@openlp.org') mail_to_url.addQueryItem('subject', subject) mail_to_url.addQueryItem('body', self.report_text % content) if self.file_attachment: mail_to_url.addQueryItem('attach', self.file_attachment) QtGui.QDesktopServices.openUrl(mail_to_url) def on_description_updated(self): """ Update the minimum number of characters needed in the description. """ count = int(20 - len(self.description_text_edit.toPlainText())) if count < 0: count = 0 self.__button_state(True) else: self.__button_state(False) self.description_word_count.setText( translate('OpenLP.ExceptionDialog', 'Description characters to enter : %s') % count) def on_attach_file_button_clicked(self): """ Attache files to the bug report e-mail. """ files, filter_used = QtWidgets.QFileDialog.getOpenFileName(self, translate('ImagePlugin.ExceptionDialog', 'Select Attachment'), Settings().value(self.settings_section + '/last directory'), '%s (*)' % UiStrings().AllFiles) log.info('New files(s) %s', str(files)) if files: self.file_attachment = str(files) def __button_state(self, state): """ Toggle the button state. """ self.save_report_button.setEnabled(state) self.send_report_button.setEnabled(state) def _pyuno_import(self): """ Added here to define only when the form is actioned. The uno interface spits out lots of exception messages if the import is at a file level. If uno import is changed this could be reverted. This happens in other classes but there it is localised here it is across the whole system and hides real errors. """ try: import uno arg = uno.createUnoStruct('com.sun.star.beans.PropertyValue') arg.Name = 'nodepath' arg.Value = '/org.openoffice.Setup/Product' context = uno.getComponentContext() provider = context.ServiceManager.createInstance('com.sun.star.configuration.ConfigurationProvider') node = provider.createInstanceWithArguments('com.sun.star.configuration.ConfigurationAccess', (arg,)) return node.getByName('ooSetupVersion') except ImportError: return '-' except: return '- (Possible non-standard UNO installation)' OpenLP-2.4/openlp/core/ui/projector/0000755000175000017500000000000012663134435016422 5ustar raoulraoulOpenLP-2.4/openlp/core/ui/projector/tab.py0000644000175000017500000001543512657640340017552 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod:`openlp.core.ui.projector.tab` Provides the settings tab in the settings dialog. """ import logging log = logging.getLogger(__name__) log.debug('projectortab module loaded') from PyQt5 import QtWidgets from openlp.core.common import Settings, UiStrings, translate from openlp.core.lib import SettingsTab from openlp.core.lib.projector import DialogSourceStyle class ProjectorTab(SettingsTab): """ Openlp Settings -> Projector settings """ def __init__(self, parent): """ ProjectorTab initialization :param parent: Parent widget """ self.icon_path = ':/projector/projector_manager.png' projector_translated = translate('OpenLP.ProjectorTab', 'Projector') super(ProjectorTab, self).__init__(parent, 'Projector', projector_translated) def setupUi(self): """ Setup the UI """ self.setObjectName('ProjectorTab') super(ProjectorTab, self).setupUi() self.connect_box = QtWidgets.QGroupBox(self.left_column) self.connect_box.setObjectName('connect_box') self.connect_box_layout = QtWidgets.QFormLayout(self.connect_box) self.connect_box_layout.setObjectName('connect_box_layout') # Start comms with projectors on startup self.connect_on_startup = QtWidgets.QCheckBox(self.connect_box) self.connect_on_startup.setObjectName('connect_on_startup') self.connect_box_layout.addRow(self.connect_on_startup) # Socket timeout self.socket_timeout_label = QtWidgets.QLabel(self.connect_box) self.socket_timeout_label.setObjectName('socket_timeout_label') self.socket_timeout_spin_box = QtWidgets.QSpinBox(self.connect_box) self.socket_timeout_spin_box.setObjectName('socket_timeout_spin_box') self.socket_timeout_spin_box.setMinimum(2) self.socket_timeout_spin_box.setMaximum(10) self.connect_box_layout.addRow(self.socket_timeout_label, self.socket_timeout_spin_box) # Poll interval self.socket_poll_label = QtWidgets.QLabel(self.connect_box) self.socket_poll_label.setObjectName('socket_poll_label') self.socket_poll_spin_box = QtWidgets.QSpinBox(self.connect_box) self.socket_poll_spin_box.setObjectName('socket_timeout_spin_box') self.socket_poll_spin_box.setMinimum(5) self.socket_poll_spin_box.setMaximum(60) self.connect_box_layout.addRow(self.socket_poll_label, self.socket_poll_spin_box) self.left_layout.addWidget(self.connect_box) # Source input select dialog box type self.dialog_type_label = QtWidgets.QLabel(self.connect_box) self.dialog_type_label.setObjectName('dialog_type_label') self.dialog_type_combo_box = QtWidgets.QComboBox(self.connect_box) self.dialog_type_combo_box.setObjectName('dialog_type_combo_box') self.dialog_type_combo_box.addItems(['', '']) self.connect_box_layout.addRow(self.dialog_type_label, self.dialog_type_combo_box) self.left_layout.addStretch() self.dialog_type_combo_box.activated.connect(self.on_dialog_type_combo_box_changed) def retranslateUi(self): """ Translate the UI on the fly """ self.tab_title_visible = UiStrings().Projectors self.connect_box.setTitle( translate('OpenLP.ProjectorTab', 'Communication Options')) self.connect_on_startup.setText( translate('OpenLP.ProjectorTab', 'Connect to projectors on startup')) self.socket_timeout_label.setText( translate('OpenLP.ProjectorTab', 'Socket timeout (seconds)')) self.socket_poll_label.setText( translate('OpenLP.ProjectorTab', 'Poll time (seconds)')) self.dialog_type_label.setText( translate('Openlp.ProjectorTab', 'Source select dialog interface')) self.dialog_type_combo_box.setItemText(DialogSourceStyle.Tabbed, translate('OpenLP.ProjectorTab', 'Tabbed dialog box')) self.dialog_type_combo_box.setItemText(DialogSourceStyle.Single, translate('OpenLP.ProjectorTab', 'Single dialog box')) def load(self): """ Load the projector settings on startup """ settings = Settings() settings.beginGroup(self.settings_section) self.connect_on_startup.setChecked(settings.value('connect on start')) self.socket_timeout_spin_box.setValue(settings.value('socket timeout')) self.socket_poll_spin_box.setValue(settings.value('poll time')) self.dialog_type_combo_box.setCurrentIndex(settings.value('source dialog type')) settings.endGroup() def save(self): """ Save the projector settings """ settings = Settings() settings.beginGroup(self.settings_section) settings.setValue('connect on start', self.connect_on_startup.isChecked()) settings.setValue('socket timeout', self.socket_timeout_spin_box.value()) settings.setValue('poll time', self.socket_poll_spin_box.value()) settings.setValue('source dialog type', self.dialog_type_combo_box.currentIndex()) settings.endGroup def on_dialog_type_combo_box_changed(self): self.dialog_type = self.dialog_type_combo_box.currentIndex() OpenLP-2.4/openlp/core/ui/projector/editform.py0000644000175000017500000003170112657640340020607 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod: `openlp.core.ui.projector.editform` module Provides the functions for adding/editing entries in the projector database. """ import logging log = logging.getLogger(__name__) log.debug('editform loaded') from PyQt5 import QtCore, QtWidgets from PyQt5.QtCore import pyqtSlot, pyqtSignal from PyQt5.QtWidgets import QDialog, QPlainTextEdit, QLineEdit, QDialogButtonBox, QLabel, QGridLayout from openlp.core.common import translate, verify_ip_address from openlp.core.lib import build_icon from openlp.core.lib.projector.db import Projector from openlp.core.lib.projector.constants import PJLINK_PORT class Ui_ProjectorEditForm(object): """ The :class:`~openlp.core.lib.ui.projector.editform.Ui_ProjectorEditForm` class defines the user interface for the ProjectorEditForm dialog. """ def setupUi(self, edit_projector_dialog): """ Create the interface layout. """ edit_projector_dialog.setObjectName('edit_projector_dialog') edit_projector_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo-32x32.png')) edit_projector_dialog.setMinimumWidth(400) edit_projector_dialog.setModal(True) # Define the basic layout self.dialog_layout = QGridLayout(edit_projector_dialog) self.dialog_layout.setObjectName('dialog_layout') self.dialog_layout.setSpacing(8) self.dialog_layout.setContentsMargins(8, 8, 8, 8) # IP Address self.ip_label = QLabel(edit_projector_dialog) self.ip_label.setObjectName('projector_edit_ip_label') self.ip_text = QLineEdit(edit_projector_dialog) self.ip_text.setObjectName('projector_edit_ip_text') self.dialog_layout.addWidget(self.ip_label, 0, 0) self.dialog_layout.addWidget(self.ip_text, 0, 1) # Port number self.port_label = QLabel(edit_projector_dialog) self.port_label.setObjectName('projector_edit_ip_label') self.port_text = QLineEdit(edit_projector_dialog) self.port_text.setObjectName('projector_edit_port_text') self.dialog_layout.addWidget(self.port_label, 1, 0) self.dialog_layout.addWidget(self.port_text, 1, 1) # PIN self.pin_label = QLabel(edit_projector_dialog) self.pin_label.setObjectName('projector_edit_pin_label') self.pin_text = QLineEdit(edit_projector_dialog) self.pin_label.setObjectName('projector_edit_pin_text') self.dialog_layout.addWidget(self.pin_label, 2, 0) self.dialog_layout.addWidget(self.pin_text, 2, 1) # Name self.name_label = QLabel(edit_projector_dialog) self.name_label.setObjectName('projector_edit_name_label') self.name_text = QLineEdit(edit_projector_dialog) self.name_text.setObjectName('projector_edit_name_text') self.dialog_layout.addWidget(self.name_label, 3, 0) self.dialog_layout.addWidget(self.name_text, 3, 1) # Location self.location_label = QLabel(edit_projector_dialog) self.location_label.setObjectName('projector_edit_location_label') self.location_text = QLineEdit(edit_projector_dialog) self.location_text.setObjectName('projector_edit_location_text') self.dialog_layout.addWidget(self.location_label, 4, 0) self.dialog_layout.addWidget(self.location_text, 4, 1) # Notes self.notes_label = QLabel(edit_projector_dialog) self.notes_label.setObjectName('projector_edit_notes_label') self.notes_text = QPlainTextEdit(edit_projector_dialog) self.notes_text.setObjectName('projector_edit_notes_text') self.dialog_layout.addWidget(self.notes_label, 5, 0, alignment=QtCore.Qt.AlignTop) self.dialog_layout.addWidget(self.notes_text, 5, 1) # Time for the buttons self.button_box = QDialogButtonBox(QDialogButtonBox.Help | QDialogButtonBox.Save | QDialogButtonBox.Cancel) self.dialog_layout.addWidget(self.button_box, 8, 0, 1, 2) def retranslateUi(self, edit_projector_dialog): if self.new_projector: title = translate('OpenLP.ProjectorEditForm', 'Add New Projector') self.projector.port = PJLINK_PORT else: title = translate('OpenLP.ProjectorEditForm', 'Edit Projector') edit_projector_dialog.setWindowTitle(title) self.ip_label.setText(translate('OpenLP.ProjectorEditForm', 'IP Address')) self.ip_text.setText(self.projector.ip) self.ip_text.setFocus() self.port_label.setText(translate('OpenLP.ProjectorEditForm', 'Port Number')) self.port_text.setText(str(self.projector.port)) self.pin_label.setText(translate('OpenLP.ProjectorEditForm', 'PIN')) self.pin_text.setText(self.projector.pin) self.name_label.setText(translate('OpenLP.ProjectorEditForm', 'Name')) self.name_text.setText(self.projector.name) self.location_label.setText(translate('OpenLP.ProjectorEditForm', 'Location')) self.location_text.setText(self.projector.location) self.notes_label.setText(translate('OpenLP.ProjectorEditForm', 'Notes')) self.notes_text.clear() self.notes_text.insertPlainText(self.projector.notes) class ProjectorEditForm(QDialog, Ui_ProjectorEditForm): """ Class to add or edit a projector entry in the database. Fields that are editable: ip = Column(String(100)) port = Column(String(8)) pin = Column(String(20)) name = Column(String(20)) location = Column(String(30)) notes = Column(String(200)) """ newProjector = pyqtSignal(str) editProjector = pyqtSignal(object) def __init__(self, parent=None, projectordb=None): super(ProjectorEditForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.projectordb = projectordb self.setupUi(self) self.button_box.accepted.connect(self.accept_me) self.button_box.helpRequested.connect(self.help_me) self.button_box.rejected.connect(self.cancel_me) def exec(self, projector=None): if projector is None: self.projector = Projector() self.new_projector = True else: self.projector = projector self.new_projector = False self.retranslateUi(self) reply = QDialog.exec(self) return reply @pyqtSlot() def accept_me(self): """ Validate input before accepting input. """ log.debug('accept_me() signal received') if len(self.name_text.text().strip()) < 1: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorEdit', 'Name Not Set'), translate('OpenLP.ProjectorEdit', 'You must enter a name for this entry.
' 'Please enter a new name for this entry.')) valid = False return name = self.name_text.text().strip() record = self.projectordb.get_projector_by_name(name) if record is not None and record.id != self.projector.id: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorEdit', 'Duplicate Name'), translate('OpenLP.ProjectorEdit', 'There is already an entry with name "%s" in ' 'the database as ID "%s".
' 'Please enter a different name.' % (name, record.id))) valid = False return adx = self.ip_text.text() valid = verify_ip_address(adx) if valid: ip = self.projectordb.get_projector_by_ip(adx) if ip is None: valid = True self.new_projector = True elif ip.id != self.projector.id: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorWizard', 'Duplicate IP Address'), translate('OpenLP.ProjectorWizard', 'IP address "%s"
is already in the database as ID %s.' '

Please Enter a different IP address.' % (adx, ip.id))) valid = False return else: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorWizard', 'Invalid IP Address'), translate('OpenLP.ProjectorWizard', 'IP address "%s"
is not a valid IP address.' '

Please enter a valid IP address.' % adx)) valid = False return port = int(self.port_text.text()) if port < 1000 or port > 32767: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorWizard', 'Invalid Port Number'), translate('OpenLP.ProjectorWizard', 'Port numbers below 1000 are reserved for admin use only, ' '
and port numbers above 32767 are not currently usable.' '

Please enter a valid port number between ' ' 1000 and 32767.' '

Default PJLink port is %s' % PJLINK_PORT)) valid = False if valid: self.projector.ip = self.ip_text.text() self.projector.pin = self.pin_text.text() self.projector.port = int(self.port_text.text()) self.projector.name = self.name_text.text() self.projector.location = self.location_text.text() self.projector.notes = self.notes_text.toPlainText() if self.new_projector: saved = self.projectordb.add_projector(self.projector) else: saved = self.projectordb.update_projector(self.projector) if not saved: QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorEditForm', 'Database Error'), translate('OpenLP.ProjectorEditForm', 'There was an error saving projector ' 'information. See the log for the error')) return saved if self.new_projector: self.newProjector.emit(adx) else: self.editProjector.emit(self.projector) self.close() @pyqtSlot() def help_me(self): """ Show a help message about the input fields. """ log.debug('help_me() signal received') @pyqtSlot() def cancel_me(self): """ Cancel button clicked - just close. """ log.debug('cancel_me() signal received') self.close() OpenLP-2.4/openlp/core/ui/projector/__init__.py0000644000175000017500000000305512657640340020536 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The Projector driver module. """ OpenLP-2.4/openlp/core/ui/projector/sourceselectform.py0000644000175000017500000005376112657640340022374 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod: `openlp.core.ui.projector.sourceselectform` module Provides the dialog window for selecting video source for projector. """ import logging log = logging.getLogger(__name__) log.debug('editform loaded') from PyQt5 import QtCore, QtWidgets from PyQt5.QtCore import pyqtSlot, QSize from PyQt5.QtWidgets import QDialog, QButtonGroup, QDialogButtonBox, QFormLayout, QLineEdit, QRadioButton, \ QStyle, QStylePainter, QStyleOptionTab, QTabBar, QTabWidget, QVBoxLayout, QWidget from openlp.core.common import translate, is_macosx from openlp.core.lib import build_icon from openlp.core.lib.projector.db import ProjectorSource from openlp.core.lib.projector.constants import PJLINK_DEFAULT_SOURCES, PJLINK_DEFAULT_CODES def source_group(inputs, source_text): """ Return a dictionary where key is source[0] and values are inputs grouped by source[0]. :: source_text = dict{"key1": "key1-text", "key2": "key2-text", ...} return: dict{key1[0]: {"key11": "key11-text", "key12": "key12-text", "key13": "key13-text", ...} key2[0]: {"key21": "key21-text", "key22": "key22-text", ...} :param inputs: List of inputs :param source_text: Dictionary of {code: text} values to display :returns: dict """ groupdict = {} keydict = {} checklist = inputs key = checklist[0][0] for item in checklist: if item[0] == key: groupdict[item] = source_text[item] continue else: keydict[key] = groupdict key = item[0] groupdict = {item: source_text[item]} keydict[key] = groupdict return keydict def Build_Tab(group, source_key, default, projector, projectordb, edit=False): """ Create the radio button page for a tab. Dictionary will be a 1-key entry where key=tab to setup, val=list of inputs. :: source_key: {"groupkey1": {"key11": "key11-text", "key12": "key12-text", ... }, "groupkey2": {"key21": "key21-text", "key22": "key22-text", ... }, ... } :param group: Button group widget to add buttons to :param source_key: Dictionary of sources for radio buttons :param default: Default radio button to check :param projector: Projector instance :param projectordb: ProjectorDB instance for session :param edit: If we're editing the source text """ buttonchecked = False widget = QWidget() layout = QFormLayout() if edit else QVBoxLayout() layout.setSpacing(10) widget.setLayout(layout) tempkey = list(source_key.keys())[0] # Should only be 1 key sourcelist = list(source_key[tempkey]) sourcelist.sort() button_count = len(sourcelist) if edit: for key in sourcelist: item = QLineEdit() item.setObjectName('source_key_%s' % key) source_item = projectordb.get_source_by_code(code=key, projector_id=projector.db_item.id) if source_item is None: item.setText(PJLINK_DEFAULT_CODES[key]) else: item.setText(source_item.text) layout.addRow(PJLINK_DEFAULT_CODES[key], item) group.append(item) else: for key in sourcelist: source_item = projectordb.get_source_by_code(code=key, projector_id=projector.db_item.id) if source_item is None: text = source_key[tempkey][key] else: text = source_item.text itemwidget = QRadioButton(text) itemwidget.setAutoExclusive(True) if default == key: itemwidget.setChecked(True) buttonchecked = itemwidget.isChecked() or buttonchecked group.addButton(itemwidget, int(key)) layout.addWidget(itemwidget) layout.addStretch() return widget, button_count, buttonchecked def set_button_tooltip(bar): """ Set the toolip for the standard buttons used :param bar: QDialogButtonBar instance to update """ for button in bar.buttons(): if bar.standardButton(button) == QDialogButtonBox.Cancel: button.setToolTip(translate('OpenLP.SourceSelectForm', 'Ignoring current changes and return to OpenLP')) elif bar.standardButton(button) == QDialogButtonBox.Reset: button.setToolTip(translate('OpenLP.SourceSelectForm', 'Delete all user-defined text and revert to PJLink default text')) elif bar.standardButton(button) == QDialogButtonBox.Discard: button.setToolTip(translate('OpenLP.SourceSelectForm', 'Discard changes and reset to previous user-defined text')) elif bar.standardButton(button) == QDialogButtonBox.Ok: button.setToolTip(translate('OpenLP.SourceSelectForm', 'Save changes and return to OpenLP')) else: log.debug('No tooltip for button {}'.format(button.text())) class FingerTabBarWidget(QTabBar): """ Realign west -orientation tabs to left-right text rather than south-north text Borrowed from http://www.kidstrythisathome.com/2013/03/fingertabs-horizontal-tabs-with-horizontal-text-in-pyqt/ """ def __init__(self, parent=None, *args, **kwargs): """ Reset tab text orientation on initialization :param width: Remove default width parameter in kwargs :param height: Remove default height parameter in kwargs """ self.tabSize = QSize(kwargs.pop('width', 100), kwargs.pop('height', 25)) QTabBar.__init__(self, parent, *args, **kwargs) def paintEvent(self, event): """ Repaint tab in left-right text orientation. :param event: Repaint event signal """ painter = QStylePainter(self) option = QStyleOptionTab() for index in range(self.count()): self.initStyleOption(option, index) tabRect = self.tabRect(index) tabRect.moveLeft(10) painter.drawControl(QStyle.CE_TabBarTabShape, option) painter.drawText(tabRect, QtCore.Qt.AlignVCenter | QtCore.Qt.TextDontClip, self.tabText(index)) painter.end() def tabSizeHint(self, index): """ Return tabsize :param index: Tab index to fetch tabsize from :returns: instance tabSize """ return self.tabSize class FingerTabWidget(QTabWidget): """ A QTabWidget equivalent which uses our FingerTabBarWidget Based on thread discussion http://www.riverbankcomputing.com/pipermail/pyqt/2005-December/011724.html """ def __init__(self, parent, *args): """ Initialize FingerTabWidget instance """ QTabWidget.__init__(self, parent, *args) self.setTabBar(FingerTabBarWidget(self)) class SourceSelectTabs(QDialog): """ Class for handling selecting the source for the projector to use. Uses tabbed interface. """ def __init__(self, parent, projectordb, edit=False): """ Build the source select dialog using tabbed interface. :param projectordb: ProjectorDB session to use """ log.debug('Initializing SourceSelectTabs()') super(SourceSelectTabs, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setMinimumWidth(350) self.projectordb = projectordb self.edit = edit if self.edit: title = translate('OpenLP.SourceSelectForm', 'Edit Projector Source Text') else: title = translate('OpenLP.SourceSelectForm', 'Select Projector Source') self.setWindowTitle(title) self.setObjectName('source_select_tabs') self.setWindowIcon(build_icon(':/icon/openlp-log-32x32.png')) self.setModal(True) self.layout = QVBoxLayout() self.layout.setObjectName('source_select_tabs_layout') if is_macosx(): self.tabwidget = QTabWidget(self) else: self.tabwidget = FingerTabWidget(self) self.tabwidget.setObjectName('source_select_tabs_tabwidget') self.tabwidget.setUsesScrollButtons(False) if is_macosx(): self.tabwidget.setTabPosition(QTabWidget.North) else: self.tabwidget.setTabPosition(QTabWidget.West) self.layout.addWidget(self.tabwidget) self.setLayout(self.layout) def exec(self, projector): """ Override initial method so we can build the tabs. :param projector: Projector instance to build source list from """ self.projector = projector self.source_text = self.projectordb.get_source_list(projector=projector) self.source_group = source_group(projector.source_available, self.source_text) # self.source_group = {'4': {'41': 'Storage 1'}, '5': {"51": 'Network 1'}} self.button_group = [] if self.edit else QButtonGroup() keys = list(self.source_group.keys()) keys.sort() if self.edit: for key in keys: (tab, button_count, buttonchecked) = Build_Tab(group=self.button_group, source_key={key: self.source_group[key]}, default=self.projector.source, projector=self.projector, projectordb=self.projectordb, edit=self.edit) thistab = self.tabwidget.addTab(tab, PJLINK_DEFAULT_SOURCES[key]) if buttonchecked: self.tabwidget.setCurrentIndex(thistab) self.button_box = QDialogButtonBox(QtWidgets.QDialogButtonBox.Reset | QtWidgets.QDialogButtonBox.Discard | QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) else: for key in keys: (tab, button_count, buttonchecked) = Build_Tab(group=self.button_group, source_key={key: self.source_group[key]}, default=self.projector.source, projector=self.projector, projectordb=self.projectordb, edit=self.edit) thistab = self.tabwidget.addTab(tab, PJLINK_DEFAULT_SOURCES[key]) if buttonchecked: self.tabwidget.setCurrentIndex(thistab) self.button_box = QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) self.button_box.clicked.connect(self.button_clicked) self.layout.addWidget(self.button_box) set_button_tooltip(self.button_box) selected = super(SourceSelectTabs, self).exec() return selected @pyqtSlot(object) def button_clicked(self, button): """ Checks which button was clicked :param button: Button that was clicked :returns: Ok: Saves current edits Delete: Resets text to last-saved text Reset: Reset all text to PJLink default text Cancel: Cancel text edit """ if self.button_box.standardButton(button) == self.button_box.Cancel: self.done(0) elif self.button_box.standardButton(button) == self.button_box.Reset: self.done(100) elif self.button_box.standardButton(button) == self.button_box.Discard: self.delete_sources() elif self.button_box.standardButton(button) == self.button_box.Ok: return self.accept_me() else: return 100 def delete_sources(self): msg = QtWidgets.QMessageBox() msg.setText(translate('OpenLP.SourceSelectForm', 'Delete entries for this projector')) msg.setInformativeText(translate('OpenLP.SourceSelectForm', 'Are you sure you want to delete ALL user-defined ' 'source input text for this projector?')) msg.setStandardButtons(msg.Cancel | msg.Ok) msg.setDefaultButton(msg.Cancel) ans = msg.exec() if ans == msg.Cancel: return self.projectordb.delete_all_objects(ProjectorSource, ProjectorSource.projector_id == self.projector.db_item.id) self.done(100) def accept_me(self): """ Slot to accept 'OK' button """ projector = self.projector.db_item if self.edit: for key in self.button_group: code = key.objectName().split("_")[-1] text = key.text().strip() if key.text().strip().lower() == PJLINK_DEFAULT_CODES[code].strip().lower(): continue item = self.projectordb.get_source_by_code(code=code, projector_id=projector.id) if item is None: log.debug("(%s) Adding new source text %s: %s" % (projector.ip, code, text)) item = ProjectorSource(projector_id=projector.id, code=code, text=text) else: item.text = text log.debug('(%s) Updating source code %s with text="%s"' % (projector.ip, item.code, item.text)) self.projectordb.add_source(item) selected = 0 else: selected = self.button_group.checkedId() log.debug('SourceSelectTabs().accepted() Setting source to %s' % selected) self.done(selected) class SourceSelectSingle(QDialog): """ Class for handling selecting the source for the projector to use. Uses single dialog interface. """ def __init__(self, parent, projectordb, edit=False): """ Build the source select dialog. :param projectordb: ProjectorDB session to use """ log.debug('Initializing SourceSelectSingle()') self.projectordb = projectordb super(SourceSelectSingle, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.edit = edit if self.edit: title = translate('OpenLP.SourceSelectForm', 'Edit Projector Source Text') else: title = translate('OpenLP.SourceSelectForm', 'Select Projector Source') self.setObjectName('source_select_single') self.setWindowIcon(build_icon(':/icon/openlp-log-32x32.png')) self.setModal(True) self.edit = edit def exec(self, projector, edit=False): """ Override initial method so we can build the tabs. :param projector: Projector instance to build source list from """ self.projector = projector self.layout = QFormLayout() if self.edit else QVBoxLayout() self.layout.setObjectName('source_select_tabs_layout') self.layout.setSpacing(10) self.setLayout(self.layout) self.setMinimumWidth(350) self.button_group = [] if self.edit else QButtonGroup() self.source_text = self.projectordb.get_source_list(projector=projector) keys = list(self.source_text.keys()) keys.sort() key_count = len(keys) button_list = [] if self.edit: for key in keys: item = QLineEdit() item.setObjectName('source_key_%s' % key) source_item = self.projectordb.get_source_by_code(code=key, projector_id=self.projector.db_item.id) if source_item is None: item.setText(PJLINK_DEFAULT_CODES[key]) else: item.old_text = item.text() item.setText(source_item.text) self.layout.addRow(PJLINK_DEFAULT_CODES[key], item) self.button_group.append(item) self.button_box = QDialogButtonBox(QtWidgets.QDialogButtonBox.Reset | QtWidgets.QDialogButtonBox.Discard | QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) else: for key in keys: source_text = self.projectordb.get_source_by_code(code=key, projector_id=self.projector.db_item.id) text = self.source_text[key] if source_text is None else source_text.text button = QtWidgets.QRadioButton(text) button.setChecked(True if key == projector.source else False) self.layout.addWidget(button) self.button_group.addButton(button, int(key)) button_list.append(key) self.button_box = QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok | QtWidgets.QDialogButtonBox.Cancel) self.button_box.clicked.connect(self.button_clicked) self.layout.addWidget(self.button_box) self.setMinimumHeight(key_count * 25) set_button_tooltip(self.button_box) selected = super(SourceSelectSingle, self).exec() return selected @pyqtSlot(object) def button_clicked(self, button): """ Checks which button was clicked :param button: Button that was clicked :returns: Ok: Saves current edits Delete: Resets text to last-saved text Reset: Reset all text to PJLink default text Cancel: Cancel text edit """ if self.button_box.standardButton(button) == self.button_box.Cancel: self.done(0) elif self.button_box.standardButton(button) == self.button_box.Reset: self.done(100) elif self.button_box.standardButton(button) == self.button_box.Discard: self.delete_sources() elif self.button_box.standardButton(button) == self.button_box.Ok: return self.accept_me() else: return 100 def delete_sources(self): msg = QtWidgets.QMessageBox() msg.setText(translate('OpenLP.SourceSelectForm', 'Delete entries for this projector')) msg.setInformativeText(translate('OpenLP.SourceSelectForm', 'Are you sure you want to delete ALL user-defined ' 'source input text for this projector?')) msg.setStandardButtons(msg.Cancel | msg.Ok) msg.setDefaultButton(msg.Cancel) ans = msg.exec() if ans == msg.Cancel: return self.projectordb.delete_all_objects(ProjectorSource, ProjectorSource.projector_id == self.projector.db_item.id) self.done(100) @pyqtSlot() def accept_me(self): """ Slot to accept 'OK' button """ projector = self.projector.db_item if self.edit: for key in self.button_group: code = key.objectName().split("_")[-1] text = key.text().strip() if key.text().strip().lower() == PJLINK_DEFAULT_CODES[code].strip().lower(): continue item = self.projectordb.get_source_by_code(code=code, projector_id=projector.id) if item is None: log.debug("(%s) Adding new source text %s: %s" % (projector.ip, code, text)) item = ProjectorSource(projector_id=projector.id, code=code, text=text) else: item.text = text log.debug('(%s) Updating source code %s with text="%s"' % (projector.ip, item.code, item.text)) self.projectordb.add_source(item) selected = 0 else: selected = self.button_group.checkedId() log.debug('SourceSelectDialog().accepted() Setting source to %s' % selected) self.done(selected) OpenLP-2.4/openlp/core/ui/projector/manager.py0000644000175000017500000014375312657640340020423 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ :mod: openlp.core.ui.projector.manager` module Provides the functions for the display/control of Projectors. """ import logging log = logging.getLogger(__name__) log.debug('projectormanager loaded') from PyQt5 import QtCore, QtGui, QtWidgets from PyQt5.QtCore import QObject, QThread, pyqtSlot from PyQt5.QtWidgets import QWidget from openlp.core.common import RegistryProperties, Settings, OpenLPMixin, \ RegistryMixin, translate from openlp.core.lib import OpenLPToolbar from openlp.core.lib.ui import create_widget_action from openlp.core.lib.projector import DialogSourceStyle from openlp.core.lib.projector.constants import * from openlp.core.lib.projector.db import ProjectorDB from openlp.core.lib.projector.pjlink1 import PJLink1 from openlp.core.ui.projector.editform import ProjectorEditForm from openlp.core.ui.projector.sourceselectform import SourceSelectTabs, SourceSelectSingle # Dict for matching projector status to display icon STATUS_ICONS = {S_NOT_CONNECTED: ':/projector/projector_item_disconnect.png', S_CONNECTING: ':/projector/projector_item_connect.png', S_CONNECTED: ':/projector/projector_off.png', S_OFF: ':/projector/projector_off.png', S_INITIALIZE: ':/projector/projector_off.png', S_STANDBY: ':/projector/projector_off.png', S_WARMUP: ':/projector/projector_warmup.png', S_ON: ':/projector/projector_on.png', S_COOLDOWN: ':/projector/projector_cooldown.png', E_ERROR: ':/projector/projector_error.png', E_NETWORK: ':/projector/projector_not_connected_error.png', E_AUTHENTICATION: ':/projector/projector_not_connected_error.png', E_UNKNOWN_SOCKET_ERROR: ':/projector/projector_not_connected_error.png', E_NOT_CONNECTED: ':/projector/projector_not_connected_error.png' } class Ui_ProjectorManager(object): """ UI part of the Projector Manager """ def setup_ui(self, widget): """ Define the UI :param widget: The screen object the dialog is to be attached to. """ log.debug('setup_ui()') # Create ProjectorManager box self.layout = QtWidgets.QVBoxLayout(widget) self.layout.setSpacing(0) self.layout.setContentsMargins(0, 0, 0, 0) self.layout.setObjectName('layout') # Add one selection toolbar self.one_toolbar = OpenLPToolbar(widget) self.one_toolbar.add_toolbar_action('new_projector', text=translate('OpenLP.ProjectorManager', 'Add Projector'), icon=':/projector/projector_new.png', tooltip=translate('OpenLP.ProjectorManager', 'Add a new projector'), triggers=self.on_add_projector) # Show edit/delete when projector not connected self.one_toolbar.add_toolbar_action('edit_projector', text=translate('OpenLP.ProjectorManager', 'Edit Projector'), icon=':/general/general_edit.png', tooltip=translate('OpenLP.ProjectorManager', 'Edit selected projector'), triggers=self.on_edit_projector) self.one_toolbar.add_toolbar_action('delete_projector', text=translate('OpenLP.ProjectorManager', 'Delete Projector'), icon=':/general/general_delete.png', tooltip=translate('OpenLP.ProjectorManager', 'Delete selected projector'), triggers=self.on_delete_projector) # Show source/view when projector connected self.one_toolbar.add_toolbar_action('source_view_projector', text=translate('OpenLP.ProjectorManager', 'Select Input Source'), icon=':/projector/projector_hdmi.png', tooltip=translate('OpenLP.ProjectorManager', 'Choose input source on selected projector'), triggers=self.on_select_input) self.one_toolbar.add_toolbar_action('view_projector', text=translate('OpenLP.ProjectorManager', 'View Projector'), icon=':/system/system_about.png', tooltip=translate('OpenLP.ProjectorManager', 'View selected projector information'), triggers=self.on_status_projector) self.one_toolbar.addSeparator() self.one_toolbar.add_toolbar_action('connect_projector', text=translate('OpenLP.ProjectorManager', 'Connect to selected projector'), icon=':/projector/projector_connect.png', tooltip=translate('OpenLP.ProjectorManager', 'Connect to selected projector'), triggers=self.on_connect_projector) self.one_toolbar.add_toolbar_action('connect_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Connect to selected projectors'), icon=':/projector/projector_connect_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Connect to selected projector'), triggers=self.on_connect_projector) self.one_toolbar.add_toolbar_action('disconnect_projector', text=translate('OpenLP.ProjectorManager', 'Disconnect from selected projectors'), icon=':/projector/projector_disconnect.png', tooltip=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector'), triggers=self.on_disconnect_projector) self.one_toolbar.add_toolbar_action('disconnect_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector'), icon=':/projector/projector_disconnect_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector'), triggers=self.on_disconnect_projector) self.one_toolbar.addSeparator() self.one_toolbar.add_toolbar_action('poweron_projector', text=translate('OpenLP.ProjectorManager', 'Power on selected projector'), icon=':/projector/projector_power_on.png', tooltip=translate('OpenLP.ProjectorManager', 'Power on selected projector'), triggers=self.on_poweron_projector) self.one_toolbar.add_toolbar_action('poweron_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Power on selected projector'), icon=':/projector/projector_power_on_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Power on selected projector'), triggers=self.on_poweron_projector) self.one_toolbar.add_toolbar_action('poweroff_projector', text=translate('OpenLP.ProjectorManager', 'Standby selected projector'), icon=':/projector/projector_power_off.png', tooltip=translate('OpenLP.ProjectorManager', 'Put selected projector in standby'), triggers=self.on_poweroff_projector) self.one_toolbar.add_toolbar_action('poweroff_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Standby selected projector'), icon=':/projector/projector_power_off_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Put selected projector in standby'), triggers=self.on_poweroff_projector) self.one_toolbar.addSeparator() self.one_toolbar.add_toolbar_action('blank_projector', text=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), icon=':/projector/projector_blank.png', tooltip=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), triggers=self.on_blank_projector) self.one_toolbar.add_toolbar_action('blank_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), icon=':/projector/projector_blank_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), triggers=self.on_blank_projector) self.one_toolbar.add_toolbar_action('show_projector', text=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), icon=':/projector/projector_show.png', tooltip=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), triggers=self.on_show_projector) self.one_toolbar.add_toolbar_action('show_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), icon=':/projector/projector_show_tiled.png', tooltip=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), triggers=self.on_show_projector) self.layout.addWidget(self.one_toolbar) self.projector_one_widget = QtWidgets.QWidgetAction(self.one_toolbar) self.projector_one_widget.setObjectName('projector_one_toolbar_widget') # Create projector manager list self.projector_list_widget = QtWidgets.QListWidget(widget) self.projector_list_widget.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) self.projector_list_widget.setAlternatingRowColors(True) self.projector_list_widget.setIconSize(QtCore.QSize(90, 50)) self.projector_list_widget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.projector_list_widget.setObjectName('projector_list_widget') self.layout.addWidget(self.projector_list_widget) self.projector_list_widget.customContextMenuRequested.connect(self.context_menu) self.projector_list_widget.itemDoubleClicked.connect(self.on_doubleclick_item) # Build the context menu self.menu = QtWidgets.QMenu() self.status_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&View Projector Information'), icon=':/system/system_about.png', triggers=self.on_status_projector) self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Edit Projector'), icon=':/projector/projector_edit.png', triggers=self.on_edit_projector) self.menu.addSeparator() self.connect_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Connect Projector'), icon=':/projector/projector_connect.png', triggers=self.on_connect_projector) self.disconnect_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'D&isconnect Projector'), icon=':/projector/projector_disconnect.png', triggers=self.on_disconnect_projector) self.menu.addSeparator() self.poweron_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Power &On Projector'), icon=':/projector/projector_power_on.png', triggers=self.on_poweron_projector) self.poweroff_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Power O&ff Projector'), icon=':/projector/projector_power_off.png', triggers=self.on_poweroff_projector) self.menu.addSeparator() self.select_input_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Select &Input'), icon=':/projector/projector_hdmi.png', triggers=self.on_select_input) self.edit_input_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Edit Input Source'), icon=':/general/general_edit.png', triggers=self.on_edit_input) self.blank_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Blank Projector Screen'), icon=':/projector/projector_blank.png', triggers=self.on_blank_projector) self.show_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Show Projector Screen'), icon=':/projector/projector_show.png', triggers=self.on_show_projector) self.menu.addSeparator() self.delete_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Delete Projector'), icon=':/general/general_delete.png', triggers=self.on_delete_projector) self.update_icons() class ProjectorManager(OpenLPMixin, RegistryMixin, QWidget, Ui_ProjectorManager, RegistryProperties): """ Manage the projectors. """ def __init__(self, parent=None, projectordb=None): """ Basic initialization. :param parent: Who I belong to. :param projectordb: Database session inherited from superclass. """ log.debug('__init__()') super().__init__(parent) self.settings_section = 'projector' self.projectordb = projectordb self.projector_list = [] self.source_select_form = None def bootstrap_initialise(self): """ Pre-initialize setups. """ self.setup_ui(self) if self.projectordb is None: # Work around for testing creating a ~/.openlp.data.projector.projector.sql file log.debug('Creating new ProjectorDB() instance') self.projectordb = ProjectorDB() else: log.debug('Using existing ProjectorDB() instance') self.get_settings() def bootstrap_post_set_up(self): """ Post-initialize setups. """ # Set 1.5 second delay before loading all projectors if self.autostart: log.debug('Delaying 1.5 seconds before loading all projectors') QtCore.QTimer().singleShot(1500, self._load_projectors) else: log.debug('Loading all projectors') self._load_projectors() self.projector_form = ProjectorEditForm(self, projectordb=self.projectordb) self.projector_form.newProjector.connect(self.add_projector_from_wizard) self.projector_form.editProjector.connect(self.edit_projector_from_wizard) self.projector_list_widget.itemSelectionChanged.connect(self.update_icons) def get_settings(self): """ Retrieve the saved settings """ settings = Settings() settings.beginGroup(self.settings_section) self.autostart = settings.value('connect on start') self.poll_time = settings.value('poll time') self.socket_timeout = settings.value('socket timeout') self.source_select_dialog_type = settings.value('source dialog type') settings.endGroup() del settings def context_menu(self, point): """ Build the Right Click Context menu and set state. :param point: The position of the mouse so the correct item can be found. """ # QListWidgetItem to build menu for. item = self.projector_list_widget.itemAt(point) if item is None: return real_projector = item.data(QtCore.Qt.UserRole) projector_name = str(item.text()) visible = real_projector.link.status_connect >= S_CONNECTED log.debug('(%s) Building menu - visible = %s' % (projector_name, visible)) self.delete_action.setVisible(True) self.edit_action.setVisible(True) self.connect_action.setVisible(not visible) self.disconnect_action.setVisible(visible) self.status_action.setVisible(visible) if visible: self.select_input_action.setVisible(real_projector.link.power == S_ON) self.edit_input_action.setVisible(real_projector.link.power == S_ON) self.poweron_action.setVisible(real_projector.link.power == S_STANDBY) self.poweroff_action.setVisible(real_projector.link.power == S_ON) self.blank_action.setVisible(real_projector.link.power == S_ON and not real_projector.link.shutter) self.show_action.setVisible(real_projector.link.power == S_ON and real_projector.link.shutter) else: self.select_input_action.setVisible(False) self.edit_input_action.setVisible(False) self.poweron_action.setVisible(False) self.poweroff_action.setVisible(False) self.blank_action.setVisible(False) self.show_action.setVisible(False) self.menu.projector = real_projector self.menu.exec(self.projector_list_widget.mapToGlobal(point)) def on_edit_input(self, opt=None): self.on_select_input(opt=opt, edit=True) def on_select_input(self, opt=None, edit=False): """ Builds menu for 'Select Input' option, then calls the selected projector item to change input source. :param opt: Needed by PyQt5 """ self.get_settings() # In case the dialog interface setting was changed list_item = self.projector_list_widget.item(self.projector_list_widget.currentRow()) projector = list_item.data(QtCore.Qt.UserRole) # QTabwidget for source select source = 100 while source > 99: if self.source_select_dialog_type == DialogSourceStyle.Tabbed: source_select_form = SourceSelectTabs(parent=self, projectordb=self.projectordb, edit=edit) else: source_select_form = SourceSelectSingle(parent=self, projectordb=self.projectordb, edit=edit) source = source_select_form.exec(projector.link) log.debug('(%s) source_select_form() returned %s' % (projector.link.ip, source)) if source is not None and source > 0: projector.link.set_input_source(str(source)) return def on_add_projector(self, opt=None): """ Calls edit dialog to add a new projector to the database :param opt: Needed by PyQt5 """ self.projector_form.exec() def on_blank_projector(self, opt=None): """ Calls projector thread to send blank screen command :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.set_shutter_closed() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.set_shutter_closed() except: continue def on_doubleclick_item(self, item, opt=None): """ When item is doubleclicked, will connect to projector. :param item: List widget item for connection. :param opt: Needed by PyQt5 """ projector = item.data(QtCore.Qt.UserRole) if projector.link.state() != projector.link.ConnectedState: try: projector.link.connect_to_host() except: pass return def on_connect_projector(self, opt=None): """ Calls projector thread to connect to projector :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.connect_to_host() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.connect_to_host() except: continue def on_delete_projector(self, opt=None): """ Deletes a projector from the list and the database :param opt: Needed by PyQt5 """ list_item = self.projector_list_widget.item(self.projector_list_widget.currentRow()) if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) msg = QtWidgets.QMessageBox() msg.setText(translate('OpenLP.ProjectorManager', 'Delete projector (%s) %s?') % (projector.link.ip, projector.link.name)) msg.setInformativeText(translate('OpenLP.ProjectorManager', 'Are you sure you want to delete this projector?')) msg.setStandardButtons(msg.Cancel | msg.Ok) msg.setDefaultButton(msg.Cancel) ans = msg.exec() if ans == msg.Cancel: return try: projector.link.projectorNetwork.disconnect(self.update_status) except (AttributeError, TypeError): pass try: projector.link.changeStatus.disconnect(self.update_status) except (AttributeError, TypeError): pass try: projector.link.authentication_error.disconnect(self.authentication_error) except (AttributeError, TypeError): pass try: projector.link.no_authentication_error.disconnect(self.no_authentication_error) except (AttributeError, TypeError): pass try: projector.link.projectorUpdateIcons.disconnect(self.update_icons) except (AttributeError, TypeError): pass try: projector.timer.stop() projector.timer.timeout.disconnect(projector.link.poll_loop) except (AttributeError, TypeError): pass try: projector.socket_timer.stop() projector.socket_timer.timeout.disconnect(projector.link.socket_abort) except (AttributeError, TypeError): pass projector.thread.quit() new_list = [] for item in self.projector_list: if item.link.dbid == projector.link.dbid: continue new_list.append(item) self.projector_list = new_list list_item = self.projector_list_widget.takeItem(self.projector_list_widget.currentRow()) list_item = None deleted = self.projectordb.delete_projector(projector.db_item) for item in self.projector_list: log.debug('New projector list - item: %s %s' % (item.link.ip, item.link.name)) def on_disconnect_projector(self, opt=None): """ Calls projector thread to disconnect from projector :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.disconnect_from_host() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.disconnect_from_host() except: continue def on_edit_projector(self, opt=None): """ Calls edit dialog with selected projector to edit information :param opt: Needed by PyQt5 """ list_item = self.projector_list_widget.item(self.projector_list_widget.currentRow()) projector = list_item.data(QtCore.Qt.UserRole) if projector is None: return self.old_projector = projector projector.link.disconnect_from_host() self.projector_form.exec(projector.db_item) projector.db_item = self.projectordb.get_projector_by_id(self.old_projector.db_item.id) def on_poweroff_projector(self, opt=None): """ Calls projector link to send Power Off command :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.set_power_off() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.set_power_off() except: continue def on_poweron_projector(self, opt=None): """ Calls projector link to send Power On command :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.set_power_on() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.set_power_on() except: continue def on_show_projector(self, opt=None): """ Calls projector thread to send open shutter command :param opt: Needed by PyQt5 """ try: ip = opt.link.ip projector = opt projector.link.set_shutter_open() except AttributeError: for list_item in self.projector_list_widget.selectedItems(): if list_item is None: return projector = list_item.data(QtCore.Qt.UserRole) try: projector.link.set_shutter_open() except: continue def on_status_projector(self, opt=None): """ Builds message box with projector status information :param opt: Needed by PyQt5 """ lwi = self.projector_list_widget.item(self.projector_list_widget.currentRow()) projector = lwi.data(QtCore.Qt.UserRole) message = '%s: %s
' % (translate('OpenLP.ProjectorManager', 'Name'), projector.link.name) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'IP'), projector.link.ip) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Port'), projector.link.port) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Notes'), projector.link.notes) message = '%s

' % message if projector.link.manufacturer is None: message = '%s%s' % (message, translate('OpenLP.ProjectorManager', 'Projector information not available at this time.')) else: message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Projector Name'), projector.link.pjlink_name) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Manufacturer'), projector.link.manufacturer) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Model'), projector.link.model) message = '%s%s: %s

' % (message, translate('OpenLP.ProjectorManager', 'Other info'), projector.link.other_info) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Power status'), ERROR_MSG[projector.link.power]) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Shutter is'), translate('OpenLP.ProjectorManager', 'Closed') if projector.link.shutter else translate('OpenLP', 'Open')) message = '%s%s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Current source input is'), projector.link.source) count = 1 for item in projector.link.lamp: message = '%s %s %s (%s) %s: %s
' % (message, translate('OpenLP.ProjectorManager', 'Lamp'), count, translate('OpenLP.ProjectorManager', 'On') if item['On'] else translate('OpenLP.ProjectorManager', 'Off'), translate('OpenLP.ProjectorManager', 'Hours'), item['Hours']) count = count + 1 message = '%s

' % message if projector.link.projector_errors is None: message = '%s%s' % (message, translate('OpenLP.ProjectorManager', 'No current errors or warnings')) else: message = '%s%s' % (message, translate('OpenLP.ProjectorManager', 'Current errors/warnings')) for (key, val) in projector.link.projector_errors.items(): message = '%s%s: %s
' % (message, key, ERROR_MSG[val]) QtWidgets.QMessageBox.information(self, translate('OpenLP.ProjectorManager', 'Projector Information'), message) def _add_projector(self, projector): """ Helper app to build a projector instance :param projector: Dict of projector database information :returns: PJLink1() instance """ log.debug('_add_projector()') return PJLink1(dbid=projector.id, ip=projector.ip, port=int(projector.port), name=projector.name, location=projector.location, notes=projector.notes, pin=None if projector.pin == '' else projector.pin, poll_time=self.poll_time, socket_timeout=self.socket_timeout ) def add_projector(self, projector, start=False): """ Builds manager list item, projector thread, and timer for projector instance. :param projector: Projector instance to add :param start: Start projector if True """ item = ProjectorItem(link=self._add_projector(projector)) item.db_item = projector icon = QtGui.QIcon(QtGui.QPixmap(STATUS_ICONS[S_NOT_CONNECTED])) item.icon = icon widget = QtWidgets.QListWidgetItem(icon, item.link.name, self.projector_list_widget ) widget.setData(QtCore.Qt.UserRole, item) item.link.db_item = item.db_item item.widget = widget thread = QThread(parent=self) thread.my_parent = self item.moveToThread(thread) thread.started.connect(item.link.thread_started) thread.finished.connect(item.link.thread_stopped) thread.finished.connect(thread.deleteLater) item.link.projectorNetwork.connect(self.update_status) item.link.changeStatus.connect(self.update_status) item.link.projectorAuthentication.connect(self.authentication_error) item.link.projectorNoAuthentication.connect(self.no_authentication_error) item.link.projectorUpdateIcons.connect(self.update_icons) timer = QtCore.QTimer(self) timer.setInterval(self.poll_time) timer.timeout.connect(item.link.poll_loop) item.timer = timer # Timeout in case of brain-dead projectors or cable disconnected socket_timer = QtCore.QTimer(self) socket_timer.setInterval(11000) socket_timer.timeout.connect(item.link.socket_abort) item.socket_timer = socket_timer thread.start() item.thread = thread item.link.timer = timer item.link.socket_timer = socket_timer item.link.widget = item.widget self.projector_list.append(item) if start: item.link.connect_to_host() for item in self.projector_list: log.debug('New projector list - item: (%s) %s' % (item.link.ip, item.link.name)) @pyqtSlot(str) def add_projector_from_wizard(self, ip, opts=None): """ Add a projector from the edit dialog :param ip: IP address of new record item to find :param opts: Needed by PyQt5 """ log.debug('add_projector_from_wizard(ip=%s)' % ip) item = self.projectordb.get_projector_by_ip(ip) self.add_projector(item) @pyqtSlot(object) def edit_projector_from_wizard(self, projector): """ Update projector from the wizard edit page :param projector: Projector() instance of projector with updated information """ log.debug('edit_projector_from_wizard(ip=%s)' % projector.ip) self.old_projector.link.name = projector.name self.old_projector.link.ip = projector.ip self.old_projector.link.pin = None if projector.pin == '' else projector.pin self.old_projector.link.port = projector.port self.old_projector.link.location = projector.location self.old_projector.link.notes = projector.notes self.old_projector.widget.setText(projector.name) def _load_projectors(self): """' Load projectors - only call when initializing """ log.debug('_load_projectors()') self.projector_list_widget.clear() for item in self.projectordb.get_projector_all(): self.add_projector(projector=item, start=self.autostart) def get_projector_list(self): """ Return the list of active projectors :returns: list """ return self.projector_list @pyqtSlot(str, int, str) def update_status(self, ip, status=None, msg=None): """ Update the status information/icon for selected list item :param ip: IP address of projector :param status: Optional status code :param msg: Optional status message """ if status is None: return item = None for list_item in self.projector_list: if ip == list_item.link.ip: item = list_item break message = translate('OpenLP.ProjectorManager', 'No message') if msg is None else msg if status in STATUS_STRING: status_code = STATUS_STRING[status] message = ERROR_MSG[status] if msg is None else msg elif status in ERROR_STRING: status_code = ERROR_STRING[status] message = ERROR_MSG[status] if msg is None else msg else: status_code = status message = ERROR_MSG[status] if msg is None else msg log.debug('(%s) updateStatus(status=%s) message: "%s"' % (item.link.name, status_code, message)) if status in STATUS_ICONS: if item.status == status: return item.status = status item.icon = QtGui.QIcon(QtGui.QPixmap(STATUS_ICONS[status])) if status in ERROR_STRING: status_code = ERROR_STRING[status] elif status in STATUS_STRING: status_code = STATUS_STRING[status] log.debug('(%s) Updating icon with %s' % (item.link.name, status_code)) item.widget.setIcon(item.icon) self.update_icons() def get_toolbar_item(self, name, enabled=False, hidden=False): item = self.one_toolbar.findChild(QtWidgets.QAction, name) if item == 0: log.debug('No item found with name "%s"' % name) return item.setVisible(False if hidden else True) item.setEnabled(True if enabled else False) @pyqtSlot() def update_icons(self): """ Update the icons when the selected projectors change """ count = len(self.projector_list_widget.selectedItems()) projector = None if count == 0: self.get_toolbar_item('edit_projector') self.get_toolbar_item('delete_projector') self.get_toolbar_item('view_projector', hidden=True) self.get_toolbar_item('source_view_projector', hidden=True) self.get_toolbar_item('connect_projector') self.get_toolbar_item('disconnect_projector') self.get_toolbar_item('poweron_projector') self.get_toolbar_item('poweroff_projector') self.get_toolbar_item('blank_projector') self.get_toolbar_item('show_projector') self.get_toolbar_item('connect_projector_multiple', hidden=True) self.get_toolbar_item('disconnect_projector_multiple', hidden=True) self.get_toolbar_item('poweron_projector_multiple', hidden=True) self.get_toolbar_item('poweroff_projector_multiple', hidden=True) self.get_toolbar_item('blank_projector_multiple', hidden=True) self.get_toolbar_item('show_projector_multiple', hidden=True) elif count == 1: projector = self.projector_list_widget.selectedItems()[0].data(QtCore.Qt.UserRole) connected = projector.link.state() == projector.link.ConnectedState power = projector.link.power == S_ON self.get_toolbar_item('connect_projector_multiple', hidden=True) self.get_toolbar_item('disconnect_projector_multiple', hidden=True) self.get_toolbar_item('poweron_projector_multiple', hidden=True) self.get_toolbar_item('poweroff_projector_multiple', hidden=True) self.get_toolbar_item('blank_projector_multiple', hidden=True) self.get_toolbar_item('show_projector_multiple', hidden=True) if connected: self.get_toolbar_item('view_projector', enabled=True) self.get_toolbar_item('source_view_projector', enabled=connected and power and projector.link.source_available is not None) self.get_toolbar_item('edit_projector', hidden=True) self.get_toolbar_item('delete_projector', hidden=True) else: self.get_toolbar_item('view_projector', hidden=True) self.get_toolbar_item('source_view_projector', hidden=True) self.get_toolbar_item('edit_projector', enabled=True) self.get_toolbar_item('delete_projector', enabled=True) self.get_toolbar_item('connect_projector', enabled=not connected) self.get_toolbar_item('disconnect_projector', enabled=connected) self.get_toolbar_item('poweron_projector', enabled=connected and (projector.link.power == S_STANDBY)) self.get_toolbar_item('poweroff_projector', enabled=connected and (projector.link.power == S_ON)) if projector.link.shutter is not None: self.get_toolbar_item('blank_projector', enabled=(connected and power and not projector.link.shutter)) self.get_toolbar_item('show_projector', enabled=(connected and power and projector.link.shutter)) else: self.get_toolbar_item('blank_projector', enabled=False) self.get_toolbar_item('show_projector', enabled=False) else: self.get_toolbar_item('edit_projector', enabled=False) self.get_toolbar_item('delete_projector', enabled=False) self.get_toolbar_item('view_projector', hidden=True) self.get_toolbar_item('source_view_projector', hidden=True) self.get_toolbar_item('connect_projector', hidden=True) self.get_toolbar_item('disconnect_projector', hidden=True) self.get_toolbar_item('poweron_projector', hidden=True) self.get_toolbar_item('poweroff_projector', hidden=True) self.get_toolbar_item('blank_projector', hidden=True) self.get_toolbar_item('show_projector', hidden=True) self.get_toolbar_item('connect_projector_multiple', hidden=False, enabled=True) self.get_toolbar_item('disconnect_projector_multiple', hidden=False, enabled=True) self.get_toolbar_item('poweron_projector_multiple', hidden=False, enabled=True) self.get_toolbar_item('poweroff_projector_multiple', hidden=False, enabled=True) self.get_toolbar_item('blank_projector_multiple', hidden=False, enabled=True) self.get_toolbar_item('show_projector_multiple', hidden=False, enabled=True) @pyqtSlot(str) def authentication_error(self, name): """ Display warning dialog when attempting to connect with invalid pin :param name: Name from QListWidgetItem """ QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorManager', '"%s" Authentication Error' % name), '
There was an authentication error while trying to connect.' '

Please verify your PIN setting ' 'for projector item "%s"' % name) @pyqtSlot(str) def no_authentication_error(self, name): """ Display warning dialog when pin saved for item but projector does not require pin. :param name: Name from QListWidgetItem """ QtWidgets.QMessageBox.warning(self, translate('OpenLP.ProjectorManager', '"%s" No Authentication Error' % name), '
PIN is set and projector does not require authentication.' '

Please verify your PIN setting ' 'for projector item "%s"' % name) class ProjectorItem(QObject): """ Class for the projector list widget item. NOTE: Actual PJLink class instance should be saved as self.link """ def __init__(self, link=None): """ Initialization for ProjectorItem instance :param link: PJLink1 instance for QListWidgetItem """ self.link = link self.thread = None self.icon = None self.widget = None self.my_parent = None self.timer = None self.projectordb_item = None self.poll_time = None self.socket_timeout = None self.status = S_NOT_CONNECTED super(ProjectorItem, self).__init__() def not_implemented(function): """ Temporary function to build an information message box indicating function not implemented yet :param func: Function name """ QtWidgets.QMessageBox.information(None, translate('OpenLP.ProjectorManager', 'Not Implemented Yet'), translate('OpenLP.ProjectorManager', 'Function "%s"
has not been implemented yet.' '
Please check back again later.' % function)) OpenLP-2.4/openlp/core/ui/plugindialog.py0000644000175000017500000001176412657640340017454 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets of the plugin view dialog #""" from PyQt5 import QtCore, QtWidgets from openlp.core.common import UiStrings, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_PluginViewDialog(object): """ The UI of the plugin view dialog """ def setupUi(self, plugin_view_dialog): """ Set up the UI """ plugin_view_dialog.setObjectName('plugin_view_dialog') plugin_view_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) plugin_view_dialog.setWindowModality(QtCore.Qt.ApplicationModal) self.plugin_layout = QtWidgets.QVBoxLayout(plugin_view_dialog) self.plugin_layout.setObjectName('plugin_layout') self.list_layout = QtWidgets.QHBoxLayout() self.list_layout.setObjectName('list_layout') self.plugin_list_widget = QtWidgets.QListWidget(plugin_view_dialog) self.plugin_list_widget.setObjectName('plugin_list_widget') self.list_layout.addWidget(self.plugin_list_widget) self.plugin_info_group_box = QtWidgets.QGroupBox(plugin_view_dialog) self.plugin_info_group_box.setObjectName('plugin_info_group_box') self.plugin_info_layout = QtWidgets.QFormLayout(self.plugin_info_group_box) self.plugin_info_layout.setObjectName('plugin_info_layout') self.status_label = QtWidgets.QLabel(self.plugin_info_group_box) self.status_label.setObjectName('status_label') self.status_combo_box = QtWidgets.QComboBox(self.plugin_info_group_box) self.status_combo_box.addItems(('', '')) self.status_combo_box.setObjectName('status_combo_box') self.plugin_info_layout.addRow(self.status_label, self.status_combo_box) self.version_label = QtWidgets.QLabel(self.plugin_info_group_box) self.version_label.setObjectName('version_label') self.version_number_label = QtWidgets.QLabel(self.plugin_info_group_box) self.version_number_label.setObjectName('version_number_label') self.plugin_info_layout.addRow(self.version_label, self.version_number_label) self.about_label = QtWidgets.QLabel(self.plugin_info_group_box) self.about_label.setObjectName('about_label') self.about_text_browser = QtWidgets.QTextBrowser(self.plugin_info_group_box) self.about_text_browser.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse) self.about_text_browser.setObjectName('aboutTextBrowser') self.plugin_info_layout.addRow(self.about_label, self.about_text_browser) self.list_layout.addWidget(self.plugin_info_group_box) self.plugin_layout.addLayout(self.list_layout) self.button_box = create_button_box(plugin_view_dialog, 'button_box', ['ok']) self.plugin_layout.addWidget(self.button_box) self.retranslateUi(plugin_view_dialog) def retranslateUi(self, plugin_view_dialog): """ Translate the UI on the fly """ plugin_view_dialog.setWindowTitle(translate('OpenLP.PluginForm', 'Manage Plugins')) self.plugin_info_group_box.setTitle(translate('OpenLP.PluginForm', 'Plugin Details')) self.version_label.setText('%s:' % UiStrings().Version) self.about_label.setText('%s:' % UiStrings().About) self.status_label.setText(translate('OpenLP.PluginForm', 'Status:')) self.status_combo_box.setItemText(0, translate('OpenLP.PluginForm', 'Active')) self.status_combo_box.setItemText(1, translate('OpenLP.PluginForm', 'Inactive')) OpenLP-2.4/openlp/core/ui/firsttimelanguageform.py0000644000175000017500000000621512657640340021367 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The language selection dialog. """ from PyQt5 import QtCore, QtWidgets from openlp.core.lib.ui import create_action from openlp.core.utils import LanguageManager from .firsttimelanguagedialog import Ui_FirstTimeLanguageDialog class FirstTimeLanguageForm(QtWidgets.QDialog, Ui_FirstTimeLanguageDialog): """ The language selection dialog. """ def __init__(self, parent=None): """ Constructor """ super(FirstTimeLanguageForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) self.qm_list = LanguageManager.get_qm_list() self.language_combo_box.addItem('Autodetect') self.language_combo_box.addItems(sorted(self.qm_list.keys())) def exec(self): """ Run the Dialog with correct heading. """ return QtWidgets.QDialog.exec(self) def accept(self): """ Run when the dialog is OKed. """ # It's the first row so must be Automatic if self.language_combo_box.currentIndex() == 0: LanguageManager.auto_language = True LanguageManager.set_language(False, False) else: LanguageManager.auto_language = False action = create_action(None, self.language_combo_box.currentText()) LanguageManager.set_language(action, False) return QtWidgets.QDialog.accept(self) def reject(self): """ Run when the dialog is canceled. """ LanguageManager.auto_language = True LanguageManager.set_language(False, False) return QtWidgets.QDialog.reject(self) OpenLP-2.4/openlp/core/ui/shortcutlistform.py0000644000175000017500000005505612657640340020433 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.shortcutlistform` module contains the form class""" import logging import re from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import RegistryProperties, Settings, translate from openlp.core.utils.actions import ActionList from .shortcutlistdialog import Ui_ShortcutListDialog REMOVE_AMPERSAND = re.compile(r'&{1}') log = logging.getLogger(__name__) class ShortcutListForm(QtWidgets.QDialog, Ui_ShortcutListDialog, RegistryProperties): """ The shortcut list dialog """ def __init__(self, parent=None): """ Constructor """ super(ShortcutListForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) self.changed_actions = {} self.action_list = ActionList.get_instance() self.dialog_was_shown = False self.primary_push_button.toggled.connect(self.on_primary_push_button_clicked) self.alternate_push_button.toggled.connect(self.on_alternate_push_button_clicked) self.tree_widget.currentItemChanged.connect(self.on_current_item_changed) self.tree_widget.itemDoubleClicked.connect(self.on_item_double_clicked) self.clear_primary_button.clicked.connect(self.on_clear_primary_button_clicked) self.clear_alternate_button.clicked.connect(self.on_clear_alternate_button_clicked) self.button_box.clicked.connect(self.on_restore_defaults_clicked) self.default_radio_button.clicked.connect(self.on_default_radio_button_clicked) self.custom_radio_button.clicked.connect(self.on_custom_radio_button_clicked) def keyPressEvent(self, event): """ Respond to certain key presses """ if event.key() == QtCore.Qt.Key_Space: self.keyReleaseEvent(event) elif self.primary_push_button.isChecked() or self.alternate_push_button.isChecked(): self.keyReleaseEvent(event) elif event.key() == QtCore.Qt.Key_Escape: event.accept() self.close() def keyReleaseEvent(self, event): """ Respond to certain key presses """ if not self.primary_push_button.isChecked() and not self.alternate_push_button.isChecked(): return # Do not continue, as the event is for the dialog (close it). if self.dialog_was_shown and event.key() in (QtCore.Qt.Key_Escape, QtCore.Qt.Key_Enter, QtCore.Qt.Key_Return): self.dialog_was_shown = False return key = event.key() if key in (QtCore.Qt.Key_Shift, QtCore.Qt.Key_Control, QtCore.Qt.Key_Meta, QtCore.Qt.Key_Alt): return key_string = QtGui.QKeySequence(key).toString() if event.modifiers() & QtCore.Qt.ControlModifier == QtCore.Qt.ControlModifier: key_string = 'Ctrl+' + key_string if event.modifiers() & QtCore.Qt.AltModifier == QtCore.Qt.AltModifier: key_string = 'Alt+' + key_string if event.modifiers() & QtCore.Qt.ShiftModifier == QtCore.Qt.ShiftModifier: key_string = 'Shift+' + key_string if event.modifiers() & QtCore.Qt.MetaModifier == QtCore.Qt.MetaModifier: key_string = 'Meta+' + key_string key_sequence = QtGui.QKeySequence(key_string) if self._validiate_shortcut(self._current_item_action(), key_sequence): if self.primary_push_button.isChecked(): self._adjust_button(self.primary_push_button, False, text=self.get_shortcut_string(key_sequence, for_display=True)) elif self.alternate_push_button.isChecked(): self._adjust_button(self.alternate_push_button, False, text=self.get_shortcut_string(key_sequence, for_display=True)) def exec(self): """ Execute the dialog """ self.changed_actions = {} self.reload_shortcut_list() self._adjust_button(self.primary_push_button, False, False, '') self._adjust_button(self.alternate_push_button, False, False, '') return QtWidgets.QDialog.exec(self) def reload_shortcut_list(self): """ Reload the ``tree_widget`` list to add new and remove old actions. """ self.tree_widget.clear() for category in self.action_list.categories: # Check if the category is for internal use only. if category.name is None: continue item = QtWidgets.QTreeWidgetItem([category.name]) for action in category.actions: action_text = REMOVE_AMPERSAND.sub('', action.text()) action_item = QtWidgets.QTreeWidgetItem([action_text]) action_item.setIcon(0, action.icon()) action_item.setData(0, QtCore.Qt.UserRole, action) tool_tip_text = action.toolTip() # Only display tool tips if they are helpful. if tool_tip_text != action_text: # Display the tool tip in all three colums. action_item.setToolTip(0, tool_tip_text) action_item.setToolTip(1, tool_tip_text) action_item.setToolTip(2, tool_tip_text) item.addChild(action_item) self.tree_widget.addTopLevelItem(item) item.setExpanded(True) self.refresh_shortcut_list() def refresh_shortcut_list(self): """ This refreshes the item's shortcuts shown in the list. Note, this neither adds new actions nor removes old actions. """ iterator = QtWidgets.QTreeWidgetItemIterator(self.tree_widget) while iterator.value(): item = iterator.value() iterator += 1 action = self._current_item_action(item) if action is None: continue shortcuts = self._action_shortcuts(action) if not shortcuts: item.setText(1, '') item.setText(2, '') elif len(shortcuts) == 1: item.setText(1, self.get_shortcut_string(shortcuts[0], for_display=True)) item.setText(2, '') else: item.setText(1, self.get_shortcut_string(shortcuts[0], for_display=True)) item.setText(2, self.get_shortcut_string(shortcuts[1], for_display=True)) self.on_current_item_changed() def on_primary_push_button_clicked(self, toggled): """ Save the new primary shortcut. """ self.custom_radio_button.setChecked(True) if toggled: self.alternate_push_button.setChecked(False) self.primary_push_button.setText('') return action = self._current_item_action() if action is None: return shortcuts = self._action_shortcuts(action) new_shortcuts = [QtGui.QKeySequence(self.primary_push_button.text())] if len(shortcuts) == 2: new_shortcuts.append(shortcuts[1]) self.changed_actions[action] = new_shortcuts self.refresh_shortcut_list() def on_alternate_push_button_clicked(self, toggled): """ Save the new alternate shortcut. """ self.custom_radio_button.setChecked(True) if toggled: self.primary_push_button.setChecked(False) self.alternate_push_button.setText('') return action = self._current_item_action() if action is None: return shortcuts = self._action_shortcuts(action) new_shortcuts = [] if shortcuts: new_shortcuts.append(shortcuts[0]) new_shortcuts.append(QtGui.QKeySequence(self.alternate_push_button.text())) self.changed_actions[action] = new_shortcuts if not self.primary_push_button.text(): # When we do not have a primary shortcut, the just entered alternate shortcut will automatically become the # primary shortcut. That is why we have to adjust the primary button's text. self.primary_push_button.setText(self.alternate_push_button.text()) self.alternate_push_button.setText('') self.refresh_shortcut_list() def on_item_double_clicked(self, item, column): """ A item has been double clicked. The ``primaryPushButton`` will be checked and the item's shortcut will be displayed. """ action = self._current_item_action(item) if action is None: return self.primary_push_button.setChecked(column in [0, 1]) self.alternate_push_button.setChecked(column not in [0, 1]) if column in [0, 1]: self.primary_push_button.setText('') self.primary_push_button.setFocus() else: self.alternate_push_button.setText('') self.alternate_push_button.setFocus() def on_current_item_changed(self, item=None, previousItem=None): """ A item has been pressed. We adjust the button's text to the action's shortcut which is encapsulate in the item. """ action = self._current_item_action(item) self.primary_push_button.setEnabled(action is not None) self.alternate_push_button.setEnabled(action is not None) primary_text = '' alternate_text = '' primary_label_text = '' alternate_label_text = '' if action is None: self.primary_push_button.setChecked(False) self.alternate_push_button.setChecked(False) else: if action.default_shortcuts: primary_label_text = self.get_shortcut_string(action.default_shortcuts[0], for_display=True) if len(action.default_shortcuts) == 2: alternate_label_text = self.get_shortcut_string(action.default_shortcuts[1], for_display=True) shortcuts = self._action_shortcuts(action) # We do not want to loose pending changes, that is why we have to keep the text when, this function has not # been triggered by a signal. if item is None: primary_text = self.primary_push_button.text() alternate_text = self.alternate_push_button.text() elif len(shortcuts) == 1: primary_text = self.get_shortcut_string(shortcuts[0], for_display=True) elif len(shortcuts) == 2: primary_text = self.get_shortcut_string(shortcuts[0], for_display=True) alternate_text = self.get_shortcut_string(shortcuts[1], for_display=True) # When we are capturing a new shortcut, we do not want, the buttons to display the current shortcut. if self.primary_push_button.isChecked(): primary_text = '' if self.alternate_push_button.isChecked(): alternate_text = '' self.primary_push_button.setText(primary_text) self.alternate_push_button.setText(alternate_text) self.primary_label.setText(primary_label_text) self.alternate_label.setText(alternate_label_text) # We do not want to toggle and radio button, as the function has not been triggered by a signal. if item is None: return if primary_label_text == primary_text and alternate_label_text == alternate_text: self.default_radio_button.toggle() else: self.custom_radio_button.toggle() def on_restore_defaults_clicked(self, button): """ Restores all default shortcuts. """ if self.button_box.buttonRole(button) != QtWidgets.QDialogButtonBox.ResetRole: return if QtWidgets.QMessageBox.question(self, translate('OpenLP.ShortcutListDialog', 'Restore Default Shortcuts'), translate('OpenLP.ShortcutListDialog', 'Do you want to restore all ' 'shortcuts to their defaults?'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No) ) == QtWidgets.QMessageBox.No: return self._adjust_button(self.primary_push_button, False, text='') self._adjust_button(self.alternate_push_button, False, text='') for category in self.action_list.categories: for action in category.actions: self.changed_actions[action] = action.default_shortcuts self.refresh_shortcut_list() def on_default_radio_button_clicked(self, toggled): """ The default radio button has been clicked, which means we have to make sure, that we use the default shortcuts for the action. """ if not toggled: return action = self._current_item_action() if action is None: return temp_shortcuts = self._action_shortcuts(action) self.changed_actions[action] = action.default_shortcuts self.refresh_shortcut_list() primary_button_text = '' alternate_button_text = '' if temp_shortcuts: primary_button_text = self.get_shortcut_string(temp_shortcuts[0], for_display=True) if len(temp_shortcuts) == 2: alternate_button_text = self.get_shortcut_string(temp_shortcuts[1], for_display=True) self.primary_push_button.setText(primary_button_text) self.alternate_push_button.setText(alternate_button_text) def on_custom_radio_button_clicked(self, toggled): """ The custom shortcut radio button was clicked, thus we have to restore the custom shortcuts by calling those functions triggered by button clicks. """ if not toggled: return action = self._current_item_action() shortcuts = self._action_shortcuts(action) self.refresh_shortcut_list() primary_button_text = '' alternate_button_text = '' if shortcuts: primary_button_text = self.get_shortcut_string(shortcuts[0], for_display=True) if len(shortcuts) == 2: alternate_button_text = self.get_shortcut_string(shortcuts[1], for_display=True) self.primary_push_button.setText(primary_button_text) self.alternate_push_button.setText(alternate_button_text) def save(self): """ Save the shortcuts. **Note**, that we do not have to load the shortcuts, as they are loaded in :class:`~openlp.core.utils.ActionList`. """ settings = Settings() settings.beginGroup('shortcuts') for category in self.action_list.categories: # Check if the category is for internal use only. if category.name is None: continue for action in category.actions: if action in self.changed_actions: old_shortcuts = list(map(self.get_shortcut_string, action.shortcuts())) action.setShortcuts(self.changed_actions[action]) self.action_list.update_shortcut_map(action, old_shortcuts) settings.setValue(action.objectName(), action.shortcuts()) settings.endGroup() def on_clear_primary_button_clicked(self, toggled): """ Restore the defaults of this action. """ self.primary_push_button.setChecked(False) action = self._current_item_action() if action is None: return shortcuts = self._action_shortcuts(action) new_shortcuts = [] if action.default_shortcuts: new_shortcuts.append(action.default_shortcuts[0]) # We have to check if the primary default shortcut is available. But we only have to check, if the action # has a default primary shortcut (an "empty" shortcut is always valid and if the action does not have a # default primary shortcut, then the alternative shortcut (not the default one) will become primary # shortcut, thus the check will assume that an action were going to have the same shortcut twice. if not self._validiate_shortcut(action, new_shortcuts[0]) and new_shortcuts[0] != shortcuts[0]: return if len(shortcuts) == 2: new_shortcuts.append(shortcuts[1]) self.changed_actions[action] = new_shortcuts self.refresh_shortcut_list() self.on_current_item_changed(self.tree_widget.currentItem()) def on_clear_alternate_button_clicked(self, toggled): """ Restore the defaults of this action. """ self.alternate_push_button.setChecked(False) action = self._current_item_action() if action is None: return shortcuts = self._action_shortcuts(action) new_shortcuts = [] if shortcuts: new_shortcuts.append(shortcuts[0]) if len(action.default_shortcuts) == 2: new_shortcuts.append(action.default_shortcuts[1]) if len(new_shortcuts) == 2: if not self._validiate_shortcut(action, new_shortcuts[1]): return self.changed_actions[action] = new_shortcuts self.refresh_shortcut_list() self.on_current_item_changed(self.tree_widget.currentItem()) def _validiate_shortcut(self, changing_action, key_sequence): """ Checks if the given ``changing_action `` can use the given ``key_sequence``. Returns ``True`` if the ``key_sequence`` can be used by the action, otherwise displays a dialog and returns ``False``. :param changing_action: The action which wants to use the ``key_sequence``. :param key_sequence: The key sequence which the action want so use. """ is_valid = True for category in self.action_list.categories: for action in category.actions: shortcuts = self._action_shortcuts(action) if key_sequence not in shortcuts: continue if action is changing_action: if self.primary_push_button.isChecked() and shortcuts.index(key_sequence) == 0: continue if self.alternate_push_button.isChecked() and shortcuts.index(key_sequence) == 1: continue # Have the same parent, thus they cannot have the same shortcut. if action.parent() is changing_action.parent(): is_valid = False # The new shortcut is already assigned, but if both shortcuts are only valid in a different widget the # new shortcut is valid, because they will not interfere. if action.shortcutContext() in [QtCore.Qt.WindowShortcut, QtCore.Qt.ApplicationShortcut]: is_valid = False if changing_action.shortcutContext() in [QtCore.Qt.WindowShortcut, QtCore.Qt.ApplicationShortcut]: is_valid = False if not is_valid: self.main_window.warning_message(translate('OpenLP.ShortcutListDialog', 'Duplicate Shortcut'), translate('OpenLP.ShortcutListDialog', 'The shortcut "%s" is already assigned to another action, please' ' use a different shortcut.') % self.get_shortcut_string(key_sequence, for_display=True)) self.dialog_was_shown = True return is_valid def _action_shortcuts(self, action): """ This returns the shortcuts for the given ``action``, which also includes those shortcuts which are not saved yet but already assigned (as changes are applied when closing the dialog). """ if action in self.changed_actions: return self.changed_actions[action] return action.shortcuts() def _current_item_action(self, item=None): """ Returns the action of the given ``item``. If no item is given, we return the action of the current item of the ``tree_widget``. """ if item is None: item = self.tree_widget.currentItem() if item is None: return return item.data(0, QtCore.Qt.UserRole) def _adjust_button(self, button, checked=None, enabled=None, text=None): """ Can be called to adjust more properties of the given ``button`` at once. """ # Set the text before checking the button, because this emits a signal. if text is not None: button.setText(text) if checked is not None: button.setChecked(checked) if enabled is not None: button.setEnabled(enabled) @staticmethod def get_shortcut_string(shortcut, for_display=False): if for_display: if any(modifier in shortcut.toString() for modifier in ['Ctrl', 'Alt', 'Meta', 'Shift']): sequence_format = QtGui.QKeySequence.NativeText else: sequence_format = QtGui.QKeySequence.PortableText else: sequence_format = QtGui.QKeySequence.PortableText return shortcut.toString(sequence_format) OpenLP-2.4/openlp/core/ui/shortcutlistdialog.py0000644000175000017500000002043212657640340020715 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The list of shortcuts within a dialog. """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class CaptureShortcutButton(QtWidgets.QPushButton): """ A class to encapsulate a ``QPushButton``. """ def __init__(self, *args): """ Constructor """ super(CaptureShortcutButton, self).__init__(*args) self.setCheckable(True) def keyPressEvent(self, event): """ Block the ``Key_Space`` key, so that the button will not change the checked state. """ if event.key() == QtCore.Qt.Key_Space and self.isChecked(): # Ignore the event, so that the parent can take care of this. event.ignore() class ShortcutTreeWidget(QtWidgets.QTreeWidget): def __init__(self, *args): super(ShortcutTreeWidget, self).__init__(*args) def keyboardSearch(self, search): """ Ignore searches to prevent single letter searches from highlighting items. :param search: Search string """ pass class Ui_ShortcutListDialog(object): """ The UI widgets for the shortcut dialog. """ def setupUi(self, shortcutListDialog): """ Set up the UI """ shortcutListDialog.setObjectName('shortcutListDialog') shortcutListDialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) shortcutListDialog.resize(500, 438) self.shortcut_list_layout = QtWidgets.QVBoxLayout(shortcutListDialog) self.shortcut_list_layout.setObjectName('shortcut_list_layout') self.description_label = QtWidgets.QLabel(shortcutListDialog) self.description_label.setObjectName('description_label') self.description_label.setWordWrap(True) self.shortcut_list_layout.addWidget(self.description_label) self.tree_widget = ShortcutTreeWidget(shortcutListDialog) self.tree_widget.setObjectName('tree_widget') self.tree_widget.setAlternatingRowColors(True) self.tree_widget.setColumnCount(3) self.tree_widget.setColumnWidth(0, 250) self.shortcut_list_layout.addWidget(self.tree_widget) self.details_layout = QtWidgets.QGridLayout() self.details_layout.setObjectName('details_layout') self.details_layout.setContentsMargins(-1, 0, -1, -1) self.default_radio_button = QtWidgets.QRadioButton(shortcutListDialog) self.default_radio_button.setObjectName('default_radio_button') self.default_radio_button.setChecked(True) self.details_layout.addWidget(self.default_radio_button, 0, 0, 1, 1) self.custom_radio_button = QtWidgets.QRadioButton(shortcutListDialog) self.custom_radio_button.setObjectName('custom_radio_button') self.details_layout.addWidget(self.custom_radio_button, 1, 0, 1, 1) self.primary_layout = QtWidgets.QHBoxLayout() self.primary_layout.setObjectName('primary_layout') self.primary_push_button = CaptureShortcutButton(shortcutListDialog) self.primary_push_button.setObjectName('primary_push_button') self.primary_push_button.setMinimumSize(QtCore.QSize(84, 0)) self.primary_push_button.setIcon(build_icon(':/system/system_configure_shortcuts.png')) self.primary_layout.addWidget(self.primary_push_button) self.clear_primary_button = QtWidgets.QToolButton(shortcutListDialog) self.clear_primary_button.setObjectName('clear_primary_button') self.clear_primary_button.setMinimumSize(QtCore.QSize(0, 16)) self.clear_primary_button.setIcon(build_icon(':/system/clear_shortcut.png')) self.primary_layout.addWidget(self.clear_primary_button) self.details_layout.addLayout(self.primary_layout, 1, 1, 1, 1) self.alternate_layout = QtWidgets.QHBoxLayout() self.alternate_layout.setObjectName('alternate_layout') self.alternate_push_button = CaptureShortcutButton(shortcutListDialog) self.alternate_push_button.setObjectName('alternate_push_button') self.alternate_push_button.setIcon(build_icon(':/system/system_configure_shortcuts.png')) self.alternate_layout.addWidget(self.alternate_push_button) self.clear_alternate_button = QtWidgets.QToolButton(shortcutListDialog) self.clear_alternate_button.setObjectName('clear_alternate_button') self.clear_alternate_button.setIcon(build_icon(':/system/clear_shortcut.png')) self.alternate_layout.addWidget(self.clear_alternate_button) self.details_layout.addLayout(self.alternate_layout, 1, 2, 1, 1) self.primary_label = QtWidgets.QLabel(shortcutListDialog) self.primary_label.setObjectName('primary_label') self.details_layout.addWidget(self.primary_label, 0, 1, 1, 1) self.alternate_label = QtWidgets.QLabel(shortcutListDialog) self.alternate_label.setObjectName('alternate_label') self.details_layout.addWidget(self.alternate_label, 0, 2, 1, 1) self.shortcut_list_layout.addLayout(self.details_layout) self.button_box = create_button_box(shortcutListDialog, 'button_box', ['cancel', 'ok', 'defaults']) self.button_box.setOrientation(QtCore.Qt.Horizontal) self.shortcut_list_layout.addWidget(self.button_box) self.retranslateUi(shortcutListDialog) def retranslateUi(self, shortcutListDialog): """ Translate the UI on the fly """ shortcutListDialog.setWindowTitle(translate('OpenLP.ShortcutListDialog', 'Configure Shortcuts')) self.description_label.setText( translate('OpenLP.ShortcutListDialog', 'Select an action and click one of the buttons below to start ' 'capturing a new primary or alternate shortcut, respectively.')) self.tree_widget.setHeaderLabels([translate('OpenLP.ShortcutListDialog', 'Action'), translate('OpenLP.ShortcutListDialog', 'Shortcut'), translate('OpenLP.ShortcutListDialog', 'Alternate')]) self.default_radio_button.setText(translate('OpenLP.ShortcutListDialog', 'Default')) self.custom_radio_button.setText(translate('OpenLP.ShortcutListDialog', 'Custom')) self.primary_push_button.setToolTip(translate('OpenLP.ShortcutListDialog', 'Capture shortcut.')) self.alternate_push_button.setToolTip(translate('OpenLP.ShortcutListDialog', 'Capture shortcut.')) self.clear_primary_button.setToolTip(translate('OpenLP.ShortcutListDialog', 'Restore the default shortcut of this action.')) self.clear_alternate_button.setToolTip(translate('OpenLP.ShortcutListDialog', 'Restore the default shortcut of this action.')) OpenLP-2.4/openlp/core/ui/generaltab.py0000644000175000017500000005131612660157261017076 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The general tab of the configuration dialog. """ import logging from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, Settings, UiStrings, translate from openlp.core.lib import SettingsTab, ScreenList log = logging.getLogger(__name__) class GeneralTab(SettingsTab): """ GeneralTab is the general settings tab in the settings dialog. """ def __init__(self, parent): """ Initialise the general settings tab """ self.screens = ScreenList() self.icon_path = ':/icon/openlp-logo-16x16.png' general_translated = translate('OpenLP.GeneralTab', 'General') super(GeneralTab, self).__init__(parent, 'Core', general_translated) def setupUi(self): """ Create the user interface for the general settings tab """ self.setObjectName('GeneralTab') super(GeneralTab, self).setupUi() self.tab_layout.setStretch(1, 1) # Monitors self.monitor_group_box = QtWidgets.QGroupBox(self.left_column) self.monitor_group_box.setObjectName('monitor_group_box') self.monitor_layout = QtWidgets.QGridLayout(self.monitor_group_box) self.monitor_layout.setObjectName('monitor_layout') self.monitor_radio_button = QtWidgets.QRadioButton(self.monitor_group_box) self.monitor_radio_button.setObjectName('monitor_radio_button') self.monitor_layout.addWidget(self.monitor_radio_button, 0, 0, 1, 5) self.monitor_combo_box = QtWidgets.QComboBox(self.monitor_group_box) self.monitor_combo_box.setObjectName('monitor_combo_box') self.monitor_layout.addWidget(self.monitor_combo_box, 1, 1, 1, 4) # Display Position self.override_radio_button = QtWidgets.QRadioButton(self.monitor_group_box) self.override_radio_button.setObjectName('override_radio_button') self.monitor_layout.addWidget(self.override_radio_button, 2, 0, 1, 5) # Custom position self.custom_x_label = QtWidgets.QLabel(self.monitor_group_box) self.custom_x_label.setObjectName('custom_x_label') self.monitor_layout.addWidget(self.custom_x_label, 3, 1) self.custom_X_value_edit = QtWidgets.QSpinBox(self.monitor_group_box) self.custom_X_value_edit.setObjectName('custom_X_value_edit') self.custom_X_value_edit.setRange(-9999, 9999) self.monitor_layout.addWidget(self.custom_X_value_edit, 4, 1) self.custom_y_label = QtWidgets.QLabel(self.monitor_group_box) self.custom_y_label.setObjectName('custom_y_label') self.monitor_layout.addWidget(self.custom_y_label, 3, 2) self.custom_Y_value_edit = QtWidgets.QSpinBox(self.monitor_group_box) self.custom_Y_value_edit.setObjectName('custom_Y_value_edit') self.custom_Y_value_edit.setRange(-9999, 9999) self.monitor_layout.addWidget(self.custom_Y_value_edit, 4, 2) self.custom_width_label = QtWidgets.QLabel(self.monitor_group_box) self.custom_width_label.setObjectName('custom_width_label') self.monitor_layout.addWidget(self.custom_width_label, 3, 3) self.custom_width_value_edit = QtWidgets.QSpinBox(self.monitor_group_box) self.custom_width_value_edit.setObjectName('custom_width_value_edit') self.custom_width_value_edit.setRange(1, 9999) self.monitor_layout.addWidget(self.custom_width_value_edit, 4, 3) self.custom_height_label = QtWidgets.QLabel(self.monitor_group_box) self.custom_height_label.setObjectName('custom_height_label') self.monitor_layout.addWidget(self.custom_height_label, 3, 4) self.custom_height_value_edit = QtWidgets.QSpinBox(self.monitor_group_box) self.custom_height_value_edit.setObjectName('custom_height_value_edit') self.custom_height_value_edit.setRange(1, 9999) self.monitor_layout.addWidget(self.custom_height_value_edit, 4, 4) self.display_on_monitor_check = QtWidgets.QCheckBox(self.monitor_group_box) self.display_on_monitor_check.setObjectName('monitor_combo_box') self.monitor_layout.addWidget(self.display_on_monitor_check, 5, 0, 1, 5) # Set up the stretchiness of each column, so that the first column # less stretchy (and therefore smaller) than the others self.monitor_layout.setColumnStretch(0, 1) self.monitor_layout.setColumnStretch(1, 3) self.monitor_layout.setColumnStretch(2, 3) self.monitor_layout.setColumnStretch(3, 3) self.monitor_layout.setColumnStretch(4, 3) self.left_layout.addWidget(self.monitor_group_box) # CCLI Details self.ccli_group_box = QtWidgets.QGroupBox(self.left_column) self.ccli_group_box.setObjectName('ccli_group_box') self.ccli_layout = QtWidgets.QFormLayout(self.ccli_group_box) self.ccli_layout.setObjectName('ccli_layout') self.number_label = QtWidgets.QLabel(self.ccli_group_box) self.number_label.setObjectName('number_label') self.number_edit = QtWidgets.QLineEdit(self.ccli_group_box) self.number_edit.setValidator(QtGui.QIntValidator()) self.number_edit.setObjectName('number_edit') self.ccli_layout.addRow(self.number_label, self.number_edit) self.username_label = QtWidgets.QLabel(self.ccli_group_box) self.username_label.setObjectName('username_label') self.username_edit = QtWidgets.QLineEdit(self.ccli_group_box) self.username_edit.setObjectName('username_edit') self.ccli_layout.addRow(self.username_label, self.username_edit) self.password_label = QtWidgets.QLabel(self.ccli_group_box) self.password_label.setObjectName('password_label') self.password_edit = QtWidgets.QLineEdit(self.ccli_group_box) self.password_edit.setEchoMode(QtWidgets.QLineEdit.Password) self.password_edit.setObjectName('password_edit') self.ccli_layout.addRow(self.password_label, self.password_edit) self.left_layout.addWidget(self.ccli_group_box) # Background audio self.audio_group_box = QtWidgets.QGroupBox(self.left_column) self.audio_group_box.setObjectName('audio_group_box') self.audio_layout = QtWidgets.QVBoxLayout(self.audio_group_box) self.audio_layout.setObjectName('audio_layout') self.start_paused_check_box = QtWidgets.QCheckBox(self.audio_group_box) self.start_paused_check_box.setObjectName('start_paused_check_box') self.audio_layout.addWidget(self.start_paused_check_box) self.repeat_list_check_box = QtWidgets.QCheckBox(self.audio_group_box) self.repeat_list_check_box.setObjectName('repeat_list_check_box') self.audio_layout.addWidget(self.repeat_list_check_box) self.left_layout.addWidget(self.audio_group_box) self.left_layout.addStretch() # Application Startup self.startup_group_box = QtWidgets.QGroupBox(self.right_column) self.startup_group_box.setObjectName('startup_group_box') self.startup_layout = QtWidgets.QVBoxLayout(self.startup_group_box) self.startup_layout.setObjectName('startup_layout') self.warning_check_box = QtWidgets.QCheckBox(self.startup_group_box) self.warning_check_box.setObjectName('warning_check_box') self.startup_layout.addWidget(self.warning_check_box) self.auto_open_check_box = QtWidgets.QCheckBox(self.startup_group_box) self.auto_open_check_box.setObjectName('auto_open_check_box') self.startup_layout.addWidget(self.auto_open_check_box) self.show_splash_check_box = QtWidgets.QCheckBox(self.startup_group_box) self.show_splash_check_box.setObjectName('show_splash_check_box') self.startup_layout.addWidget(self.show_splash_check_box) self.check_for_updates_check_box = QtWidgets.QCheckBox(self.startup_group_box) self.check_for_updates_check_box.setObjectName('check_for_updates_check_box') self.startup_layout.addWidget(self.check_for_updates_check_box) self.right_layout.addWidget(self.startup_group_box) # Application Settings self.settings_group_box = QtWidgets.QGroupBox(self.right_column) self.settings_group_box.setObjectName('settings_group_box') self.settings_layout = QtWidgets.QFormLayout(self.settings_group_box) self.settings_layout.setObjectName('settings_layout') self.save_check_service_check_box = QtWidgets.QCheckBox(self.settings_group_box) self.save_check_service_check_box.setObjectName('save_check_service_check_box') self.settings_layout.addRow(self.save_check_service_check_box) self.auto_unblank_check_box = QtWidgets.QCheckBox(self.settings_group_box) self.auto_unblank_check_box.setObjectName('auto_unblank_check_box') self.settings_layout.addRow(self.auto_unblank_check_box) self.auto_preview_check_box = QtWidgets.QCheckBox(self.settings_group_box) self.auto_preview_check_box.setObjectName('auto_preview_check_box') self.settings_layout.addRow(self.auto_preview_check_box) # Moved here from image tab self.timeout_label = QtWidgets.QLabel(self.settings_group_box) self.timeout_label.setObjectName('timeout_label') self.timeout_spin_box = QtWidgets.QSpinBox(self.settings_group_box) self.timeout_spin_box.setObjectName('timeout_spin_box') self.timeout_spin_box.setRange(1, 180) self.settings_layout.addRow(self.timeout_label, self.timeout_spin_box) self.right_layout.addWidget(self.settings_group_box) self.right_layout.addStretch() # Signals and slots self.override_radio_button.toggled.connect(self.on_override_radio_button_pressed) self.custom_height_value_edit.valueChanged.connect(self.on_display_changed) self.custom_width_value_edit.valueChanged.connect(self.on_display_changed) self.custom_Y_value_edit.valueChanged.connect(self.on_display_changed) self.custom_X_value_edit.valueChanged.connect(self.on_display_changed) self.monitor_combo_box.currentIndexChanged.connect(self.on_display_changed) # Reload the tab, as the screen resolution/count may have changed. Registry().register_function('config_screen_changed', self.load) # Remove for now self.username_label.setVisible(False) self.username_edit.setVisible(False) self.password_label.setVisible(False) self.password_edit.setVisible(False) def retranslateUi(self): """ Translate the general settings tab to the currently selected language """ self.tab_title_visible = translate('OpenLP.GeneralTab', 'General') self.monitor_group_box.setTitle(translate('OpenLP.GeneralTab', 'Monitors')) self.monitor_radio_button.setText(translate('OpenLP.GeneralTab', 'Select monitor for output display:')) self.display_on_monitor_check.setText(translate('OpenLP.GeneralTab', 'Display if a single screen')) self.startup_group_box.setTitle(translate('OpenLP.GeneralTab', 'Application Startup')) self.warning_check_box.setText(translate('OpenLP.GeneralTab', 'Show blank screen warning')) self.auto_open_check_box.setText(translate('OpenLP.GeneralTab', 'Automatically open the last service')) self.show_splash_check_box.setText(translate('OpenLP.GeneralTab', 'Show the splash screen')) self.check_for_updates_check_box.setText(translate('OpenLP.GeneralTab', 'Check for updates to OpenLP')) self.settings_group_box.setTitle(translate('OpenLP.GeneralTab', 'Application Settings')) self.save_check_service_check_box.setText(translate('OpenLP.GeneralTab', 'Prompt to save before starting a new service')) self.auto_unblank_check_box.setText(translate('OpenLP.GeneralTab', 'Unblank display when adding new live item')) self.auto_preview_check_box.setText(translate('OpenLP.GeneralTab', 'Automatically preview next item in service')) self.timeout_label.setText(translate('OpenLP.GeneralTab', 'Timed slide interval:')) self.timeout_spin_box.setSuffix(translate('OpenLP.GeneralTab', ' sec')) self.ccli_group_box.setTitle(translate('OpenLP.GeneralTab', 'CCLI Details')) self.number_label.setText(UiStrings().CCLINumberLabel) self.username_label.setText(translate('OpenLP.GeneralTab', 'SongSelect username:')) self.password_label.setText(translate('OpenLP.GeneralTab', 'SongSelect password:')) # Moved from display tab self.override_radio_button.setText(translate('OpenLP.GeneralTab', 'Override display position:')) self.custom_x_label.setText(translate('OpenLP.GeneralTab', 'X')) self.custom_y_label.setText(translate('OpenLP.GeneralTab', 'Y')) self.custom_height_label.setText(translate('OpenLP.GeneralTab', 'Height')) self.custom_width_label.setText(translate('OpenLP.GeneralTab', 'Width')) self.audio_group_box.setTitle(translate('OpenLP.GeneralTab', 'Background Audio')) self.start_paused_check_box.setText(translate('OpenLP.GeneralTab', 'Start background audio paused')) self.repeat_list_check_box.setText(translate('OpenLP.GeneralTab', 'Repeat track list')) def load(self): """ Load the settings to populate the form """ settings = Settings() settings.beginGroup(self.settings_section) self.monitor_combo_box.clear() self.monitor_combo_box.addItems(self.screens.get_screen_list()) monitor_number = settings.value('monitor') self.monitor_combo_box.setCurrentIndex(monitor_number) self.number_edit.setText(settings.value('ccli number')) self.username_edit.setText(settings.value('songselect username')) self.password_edit.setText(settings.value('songselect password')) self.save_check_service_check_box.setChecked(settings.value('save prompt')) self.auto_unblank_check_box.setChecked(settings.value('auto unblank')) self.display_on_monitor_check.setChecked(self.screens.display) self.warning_check_box.setChecked(settings.value('blank warning')) self.auto_open_check_box.setChecked(settings.value('auto open')) self.show_splash_check_box.setChecked(settings.value('show splash')) self.check_for_updates_check_box.setChecked(settings.value('update check')) self.auto_preview_check_box.setChecked(settings.value('auto preview')) self.timeout_spin_box.setValue(settings.value('loop delay')) self.monitor_radio_button.setChecked(not settings.value('override position',)) self.override_radio_button.setChecked(settings.value('override position')) self.custom_X_value_edit.setValue(settings.value('x position')) self.custom_Y_value_edit.setValue(settings.value('y position')) self.custom_height_value_edit.setValue(settings.value('height')) self.custom_width_value_edit.setValue(settings.value('width')) self.start_paused_check_box.setChecked(settings.value('audio start paused')) self.repeat_list_check_box.setChecked(settings.value('audio repeat list')) settings.endGroup() self.monitor_combo_box.setDisabled(self.override_radio_button.isChecked()) self.custom_X_value_edit.setEnabled(self.override_radio_button.isChecked()) self.custom_Y_value_edit.setEnabled(self.override_radio_button.isChecked()) self.custom_height_value_edit.setEnabled(self.override_radio_button.isChecked()) self.custom_width_value_edit.setEnabled(self.override_radio_button.isChecked()) self.display_changed = False def save(self): """ Save the settings from the form """ settings = Settings() settings.beginGroup(self.settings_section) settings.setValue('monitor', self.monitor_combo_box.currentIndex()) settings.setValue('display on monitor', self.display_on_monitor_check.isChecked()) settings.setValue('blank warning', self.warning_check_box.isChecked()) settings.setValue('auto open', self.auto_open_check_box.isChecked()) settings.setValue('show splash', self.show_splash_check_box.isChecked()) settings.setValue('update check', self.check_for_updates_check_box.isChecked()) settings.setValue('save prompt', self.save_check_service_check_box.isChecked()) settings.setValue('auto unblank', self.auto_unblank_check_box.isChecked()) settings.setValue('auto preview', self.auto_preview_check_box.isChecked()) settings.setValue('loop delay', self.timeout_spin_box.value()) settings.setValue('ccli number', self.number_edit.displayText()) settings.setValue('songselect username', self.username_edit.displayText()) settings.setValue('songselect password', self.password_edit.displayText()) settings.setValue('x position', self.custom_X_value_edit.value()) settings.setValue('y position', self.custom_Y_value_edit.value()) settings.setValue('height', self.custom_height_value_edit.value()) settings.setValue('width', self.custom_width_value_edit.value()) settings.setValue('override position', self.override_radio_button.isChecked()) settings.setValue('audio start paused', self.start_paused_check_box.isChecked()) settings.setValue('audio repeat list', self.repeat_list_check_box.isChecked()) settings.endGroup() # On save update the screens as well self.post_set_up(True) def post_set_up(self, postUpdate=False): """ Apply settings after settings tab has loaded and most of the system so must be delayed """ self.settings_form.register_post_process('slidecontroller_live_spin_delay') # Do not continue on start up. if not postUpdate: return self.screens.set_current_display(self.monitor_combo_box.currentIndex()) self.screens.display = self.display_on_monitor_check.isChecked() self.screens.override['size'] = QtCore.QRect( self.custom_X_value_edit.value(), self.custom_Y_value_edit.value(), self.custom_width_value_edit.value(), self.custom_height_value_edit.value()) self.screens.override['number'] = self.screens.which_screen(self.screens.override['size']) self.screens.override['primary'] = (self.screens.desktop.primaryScreen() == self.screens.override['number']) if self.override_radio_button.isChecked(): self.screens.set_override_display() else: self.screens.reset_current_display() if self.display_changed: self.settings_form.register_post_process('config_screen_changed') self.display_changed = False def on_override_radio_button_pressed(self, checked): """ Toggle screen state depending on check box state. :param checked: The state of the check box (boolean). """ self.monitor_combo_box.setDisabled(checked) self.custom_X_value_edit.setEnabled(checked) self.custom_Y_value_edit.setEnabled(checked) self.custom_height_value_edit.setEnabled(checked) self.custom_width_value_edit.setEnabled(checked) self.display_changed = True def on_display_changed(self): """ Called when the width, height, x position or y position has changed. """ self.display_changed = True OpenLP-2.4/openlp/core/ui/mediadockmanager.py0000644000175000017500000000625212657640340020245 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The media manager dock. """ import logging from openlp.core.lib import StringContent log = logging.getLogger(__name__) class MediaDockManager(object): """ Provide a repository for MediaManagerItems """ def __init__(self, media_dock): """ Initialise the media dock """ self.media_dock = media_dock def add_item_to_dock(self, media_item): """ Add a MediaManagerItem to the dock If the item has been added before, it's silently skipped :param media_item: The item to add to the dock """ visible_title = media_item.plugin.get_string(StringContent.VisibleName) log.debug('Inserting %s dock' % visible_title['title']) match = False for dock_index in range(self.media_dock.count()): if self.media_dock.widget(dock_index).settings_section == media_item.plugin.name: match = True break if not match: self.media_dock.addItem(media_item, visible_title['title']) def remove_dock(self, media_item): """ Removes a MediaManagerItem from the dock :param media_item: The item to add to the dock """ visible_title = media_item.plugin.get_string(StringContent.VisibleName) log.debug('remove %s dock' % visible_title['title']) for dock_index in range(self.media_dock.count()): if self.media_dock.widget(dock_index): if self.media_dock.widget(dock_index).settings_section == media_item.plugin.name: self.media_dock.widget(dock_index).setVisible(False) self.media_dock.removeItem(dock_index) OpenLP-2.4/openlp/core/ui/themelayoutform.py0000644000175000017500000000456012657640340020216 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The form layout """ from PyQt5 import QtCore, QtWidgets from .themelayoutdialog import Ui_ThemeLayoutDialog class ThemeLayoutForm(QtWidgets.QDialog, Ui_ThemeLayoutDialog): """ The exception dialog """ def __init__(self, parent): """ Constructor """ super(ThemeLayoutForm, self).__init__(parent) self.setupUi(self) def exec(self, image): """ Run the Dialog with correct heading. """ pixmap = image.scaledToHeight(400, QtCore.Qt.SmoothTransformation) pixmap.setDevicePixelRatio(self.theme_display_label.devicePixelRatio()) self.theme_display_label.setPixmap(pixmap) display_aspect_ratio = float(image.width()) / image.height() self.theme_display_label.setFixedSize(400, 400 / display_aspect_ratio) return QtWidgets.QDialog.exec(self) OpenLP-2.4/openlp/core/ui/firsttimelanguagedialog.py0000644000175000017500000000743012657640340021663 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets of the language selection dialog. """ from PyQt5 import QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_FirstTimeLanguageDialog(object): """ The UI widgets of the language selection dialog. """ def setupUi(self, language_dialog): """ Set up the UI. """ language_dialog.setObjectName('language_dialog') language_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) language_dialog.resize(300, 50) self.dialog_layout = QtWidgets.QVBoxLayout(language_dialog) self.dialog_layout.setContentsMargins(8, 8, 8, 8) self.dialog_layout.setSpacing(8) self.dialog_layout.setObjectName('dialog_layout') self.info_label = QtWidgets.QLabel(language_dialog) self.info_label.setObjectName('info_label') self.dialog_layout.addWidget(self.info_label) self.language_layout = QtWidgets.QHBoxLayout() self.language_layout.setObjectName('language_layout') self.language_label = QtWidgets.QLabel(language_dialog) self.language_label.setObjectName('language_label') self.language_layout.addWidget(self.language_label) self.language_combo_box = QtWidgets.QComboBox(language_dialog) self.language_combo_box.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToContents) self.language_combo_box.setObjectName("language_combo_box") self.language_layout.addWidget(self.language_combo_box) self.dialog_layout.addLayout(self.language_layout) self.button_box = create_button_box(language_dialog, 'button_box', ['cancel', 'ok']) self.dialog_layout.addWidget(self.button_box) self.retranslateUi(language_dialog) self.setMaximumHeight(self.sizeHint().height()) def retranslateUi(self, language_dialog): """ Translate the UI on the fly. """ self.setWindowTitle(translate('OpenLP.FirstTimeLanguageForm', 'Select Translation')) self.info_label.setText( translate('OpenLP.FirstTimeLanguageForm', 'Choose the translation you\'d like to use in OpenLP.')) self.language_label.setText(translate('OpenLP.FirstTimeLanguageForm', 'Translation:')) OpenLP-2.4/openlp/core/ui/__init__.py0000644000175000017500000001217512657640340016532 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`ui` module provides the core user interface for OpenLP """ from PyQt5 import QtWidgets class HideMode(object): """ This is an enumeration class which specifies the different modes of hiding the display. ``Blank`` This mode is used to hide all output, specifically by covering the display with a black screen. ``Theme`` This mode is used to hide all output, but covers the display with the current theme background, as opposed to black. ``Desktop`` This mode hides all output by minimising the display, leaving the user's desktop showing. """ Blank = 1 Theme = 2 Screen = 3 class AlertLocation(object): """ This is an enumeration class which controls where Alerts are placed on the screen. ``Top`` Place the text at the top of the screen. ``Middle`` Place the text in the middle of the screen. ``Bottom`` Place the text at the bottom of the screen. """ Top = 0 Middle = 1 Bottom = 2 class DisplayControllerType(object): """ This is an enumeration class which says where a display controller originated from. """ Live = 0 Preview = 1 Plugin = 2 class SingleColumnTableWidget(QtWidgets.QTableWidget): """ Class to for a single column table widget to use for the verse table widget. """ def __init__(self, parent): """ Constructor """ super(SingleColumnTableWidget, self).__init__(parent) self.horizontalHeader().setVisible(False) self.setColumnCount(1) def resizeEvent(self, event): """ Resize the first column together with the widget. """ QtWidgets.QTableWidget.resizeEvent(self, event) if self.columnCount(): self.setColumnWidth(0, event.size().width()) self.resizeRowsToContents() from .firsttimeform import FirstTimeForm from .firsttimelanguageform import FirstTimeLanguageForm from .themelayoutform import ThemeLayoutForm from .themeform import ThemeForm from .filerenameform import FileRenameForm from .starttimeform import StartTimeForm from .maindisplay import MainDisplay, Display from .servicenoteform import ServiceNoteForm from .serviceitemeditform import ServiceItemEditForm from .slidecontroller import SlideController, DisplayController, PreviewController, LiveController from .splashscreen import SplashScreen from .generaltab import GeneralTab from .themestab import ThemesTab from .advancedtab import AdvancedTab from .aboutform import AboutForm from .pluginform import PluginForm from .settingsform import SettingsForm from .formattingtagform import FormattingTagForm from .formattingtagcontroller import FormattingTagController from .shortcutlistform import ShortcutListForm from .mediadockmanager import MediaDockManager from .servicemanager import ServiceManager from .thememanager import ThemeManager from .projector.manager import ProjectorManager from .projector.tab import ProjectorTab from .projector.editform import ProjectorEditForm __all__ = ['SplashScreen', 'AboutForm', 'SettingsForm', 'MainDisplay', 'SlideController', 'ServiceManager', 'ThemeForm', 'ThemeManager', 'MediaDockManager', 'ServiceItemEditForm', 'FirstTimeForm', 'FirstTimeLanguageForm', 'Display', 'ServiceNoteForm', 'ThemeLayoutForm', 'FileRenameForm', 'StartTimeForm', 'MainDisplay', 'SlideController', 'DisplayController', 'GeneralTab', 'ThemesTab', 'AdvancedTab', 'PluginForm', 'FormattingTagForm', 'ShortcutListForm', 'FormattingTagController', 'SingleColumnTableWidget', 'ProjectorManager', 'ProjectorTab', 'ProjectorEditForm'] OpenLP-2.4/openlp/core/ui/pluginform.py0000644000175000017500000001557112657640340017160 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The actual plugin view form """ import logging from PyQt5 import QtCore, QtWidgets from openlp.core.common import RegistryProperties, translate from openlp.core.lib import PluginStatus from .plugindialog import Ui_PluginViewDialog log = logging.getLogger(__name__) class PluginForm(QtWidgets.QDialog, Ui_PluginViewDialog, RegistryProperties): """ The plugin form provides user control over the plugins OpenLP uses. """ def __init__(self, parent=None): """ Constructor """ super(PluginForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.active_plugin = None self.programatic_change = False self.setupUi(self) self.load() self._clear_details() # Right, now let's put some signals and slots together! self.plugin_list_widget.itemSelectionChanged.connect(self.on_plugin_list_widget_selection_changed) self.status_combo_box.currentIndexChanged.connect(self.on_status_combo_box_changed) def load(self): """ Load the plugin details into the screen """ self.plugin_list_widget.clear() self.programatic_change = True self._clear_details() self.programatic_change = True plugin_list_width = 0 for plugin in self.plugin_manager.plugins: item = QtWidgets.QListWidgetItem(self.plugin_list_widget) # We do this just to make 100% sure the status is an integer as # sometimes when it's loaded from the config, it isn't cast to int. plugin.status = int(plugin.status) # Set the little status text in brackets next to the plugin name. if plugin.status == PluginStatus.Disabled: status_text = translate('OpenLP.PluginForm', '%s (Disabled)') elif plugin.status == PluginStatus.Active: status_text = translate('OpenLP.PluginForm', '%s (Active)') else: # PluginStatus.Inactive status_text = translate('OpenLP.PluginForm', '%s (Inactive)') item.setText(status_text % plugin.name_strings['singular']) # If the plugin has an icon, set it! if plugin.icon: item.setIcon(plugin.icon) self.plugin_list_widget.addItem(item) plugin_list_width = max(plugin_list_width, self.fontMetrics().width( translate('OpenLP.PluginForm', '%s (Inactive)') % plugin.name_strings['singular'])) self.plugin_list_widget.setFixedWidth(plugin_list_width + self.plugin_list_widget.iconSize().width() + 48) def _clear_details(self): """ Clear the plugin details widgets """ self.status_combo_box.setCurrentIndex(-1) self.version_number_label.setText('') self.about_text_browser.setHtml('') self.status_combo_box.setEnabled(False) def _set_details(self): """ Set the details of the currently selected plugin """ log.debug('PluginStatus: %s', str(self.active_plugin.status)) self.version_number_label.setText(self.active_plugin.version) self.about_text_browser.setHtml(self.active_plugin.about()) self.programatic_change = True status = PluginStatus.Active if self.active_plugin.status == PluginStatus.Active: status = PluginStatus.Inactive self.status_combo_box.setCurrentIndex(status) self.status_combo_box.setEnabled(True) self.programatic_change = False def on_plugin_list_widget_selection_changed(self): """ If the selected plugin changes, update the form """ if self.plugin_list_widget.currentItem() is None: self._clear_details() return plugin_name_singular = self.plugin_list_widget.currentItem().text().split('(')[0][:-1] self.active_plugin = None for plugin in self.plugin_manager.plugins: if plugin.status != PluginStatus.Disabled: if plugin.name_strings['singular'] == plugin_name_singular: self.active_plugin = plugin break if self.active_plugin: self._set_details() else: self._clear_details() def on_status_combo_box_changed(self, status): """ If the status of a plugin is altered, apply the change """ if self.programatic_change or status == PluginStatus.Disabled: return if status == PluginStatus.Inactive: self.application.set_busy_cursor() self.active_plugin.toggle_status(PluginStatus.Active) self.application.set_normal_cursor() self.active_plugin.app_startup() else: self.active_plugin.toggle_status(PluginStatus.Inactive) status_text = translate('OpenLP.PluginForm', '%s (Inactive)') if self.active_plugin.status == PluginStatus.Active: status_text = translate('OpenLP.PluginForm', '%s (Active)') elif self.active_plugin.status == PluginStatus.Inactive: status_text = translate('OpenLP.PluginForm', '%s (Inactive)') elif self.active_plugin.status == PluginStatus.Disabled: status_text = translate('OpenLP.PluginForm', '%s (Disabled)') self.plugin_list_widget.currentItem().setText( status_text % self.active_plugin.name_strings['singular']) OpenLP-2.4/openlp/core/ui/servicemanager.py0000644000175000017500000024167512657640340017777 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The service manager sets up, loads, saves and manages services. """ import html import os import shutil import zipfile import json from tempfile import mkstemp from datetime import datetime, timedelta from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, AppLocation, Settings, ThemeLevel, OpenLPMixin, \ RegistryMixin, check_directory_exists, UiStrings, translate from openlp.core.lib import OpenLPToolbar, ServiceItem, ItemCapabilities, PluginStatus, build_icon from openlp.core.lib.ui import critical_error_message_box, create_widget_action, find_and_set_in_combo_box from openlp.core.ui import ServiceNoteForm, ServiceItemEditForm, StartTimeForm from openlp.core.ui.printserviceform import PrintServiceForm from openlp.core.utils import delete_file, split_filename, format_time from openlp.core.utils.actions import ActionList, CategoryOrder class ServiceManagerList(QtWidgets.QTreeWidget): """ Set up key bindings and mouse behaviour for the service list """ def __init__(self, service_manager, parent=None): """ Constructor """ super(ServiceManagerList, self).__init__(parent) self.service_manager = service_manager def keyPressEvent(self, event): """ Capture Key press and respond accordingly. :param event: """ if isinstance(event, QtGui.QKeyEvent): # here accept the event and do something if event.key() == QtCore.Qt.Key_Up: self.service_manager.on_move_selection_up() event.accept() elif event.key() == QtCore.Qt.Key_Down: self.service_manager.on_move_selection_down() event.accept() elif event.key() == QtCore.Qt.Key_Delete: self.service_manager.on_delete_from_service() event.accept() event.ignore() else: event.ignore() def mouseMoveEvent(self, event): """ Drag and drop event does not care what data is selected as the recipient will use events to request the data move just tell it what plugin to call :param event: """ if event.buttons() != QtCore.Qt.LeftButton: event.ignore() return if not self.itemAt(self.mapFromGlobal(QtGui.QCursor.pos())): event.ignore() return drag = QtGui.QDrag(self) mime_data = QtCore.QMimeData() drag.setMimeData(mime_data) mime_data.setText('ServiceManager') drag.exec(QtCore.Qt.CopyAction) class Ui_ServiceManager(object): """ UI part of the Service Manager """ def setup_ui(self, widget): """ Define the UI :param widget: """ # start with the layout self.layout = QtWidgets.QVBoxLayout(widget) self.layout.setSpacing(0) self.layout.setContentsMargins(0, 0, 0, 0) # Create the top toolbar self.toolbar = OpenLPToolbar(widget) self.toolbar.add_toolbar_action('newService', text=UiStrings().NewService, icon=':/general/general_new.png', tooltip=UiStrings().CreateService, triggers=self.on_new_service_clicked) self.toolbar.add_toolbar_action('openService', text=UiStrings().OpenService, icon=':/general/general_open.png', tooltip=translate('OpenLP.ServiceManager', 'Load an existing service.'), triggers=self.on_load_service_clicked) self.toolbar.add_toolbar_action('saveService', text=UiStrings().SaveService, icon=':/general/general_save.png', tooltip=translate('OpenLP.ServiceManager', 'Save this service.'), triggers=self.decide_save_method) self.toolbar.addSeparator() self.theme_label = QtWidgets.QLabel('%s:' % UiStrings().Theme, widget) self.theme_label.setContentsMargins(3, 3, 3, 3) self.theme_label.setObjectName('theme_label') self.toolbar.add_toolbar_widget(self.theme_label) self.theme_combo_box = QtWidgets.QComboBox(self.toolbar) self.theme_combo_box.setToolTip(translate('OpenLP.ServiceManager', 'Select a theme for the service.')) self.theme_combo_box.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength) self.theme_combo_box.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed) self.theme_combo_box.setObjectName('theme_combo_box') self.toolbar.add_toolbar_widget(self.theme_combo_box) self.toolbar.setObjectName('toolbar') self.layout.addWidget(self.toolbar) # Create the service manager list self.service_manager_list = ServiceManagerList(widget) self.service_manager_list.setEditTriggers( QtWidgets.QAbstractItemView.CurrentChanged | QtWidgets.QAbstractItemView.DoubleClicked | QtWidgets.QAbstractItemView.EditKeyPressed) self.service_manager_list.setDragDropMode(QtWidgets.QAbstractItemView.DragDrop) self.service_manager_list.setAlternatingRowColors(True) self.service_manager_list.setHeaderHidden(True) self.service_manager_list.setExpandsOnDoubleClick(False) self.service_manager_list.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.service_manager_list.customContextMenuRequested.connect(self.context_menu) self.service_manager_list.setObjectName('service_manager_list') # enable drop self.service_manager_list.__class__.dragEnterEvent = lambda x, event: event.accept() self.service_manager_list.__class__.dragMoveEvent = lambda x, event: event.accept() self.service_manager_list.__class__.dropEvent = self.drop_event self.layout.addWidget(self.service_manager_list) # Add the bottom toolbar self.order_toolbar = OpenLPToolbar(widget) action_list = ActionList.get_instance() action_list.add_category(UiStrings().Service, CategoryOrder.standard_toolbar) self.service_manager_list.move_top = self.order_toolbar.add_toolbar_action( 'moveTop', text=translate('OpenLP.ServiceManager', 'Move to &top'), icon=':/services/service_top.png', tooltip=translate('OpenLP.ServiceManager', 'Move item to the top of the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_top) self.service_manager_list.move_up = self.order_toolbar.add_toolbar_action( 'moveUp', text=translate('OpenLP.ServiceManager', 'Move &up'), icon=':/services/service_up.png', tooltip=translate('OpenLP.ServiceManager', 'Move item up one position in the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_up) self.service_manager_list.move_down = self.order_toolbar.add_toolbar_action( 'moveDown', text=translate('OpenLP.ServiceManager', 'Move &down'), icon=':/services/service_down.png', tooltip=translate('OpenLP.ServiceManager', 'Move item down one position in the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_down) self.service_manager_list.move_bottom = self.order_toolbar.add_toolbar_action( 'moveBottom', text=translate('OpenLP.ServiceManager', 'Move to &bottom'), icon=':/services/service_bottom.png', tooltip=translate('OpenLP.ServiceManager', 'Move item to the end of the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_end) self.service_manager_list.down = self.order_toolbar.add_toolbar_action( 'down', text=translate('OpenLP.ServiceManager', 'Move &down'), can_shortcuts=True, tooltip=translate('OpenLP.ServiceManager', 'Moves the selection down the window.'), visible=False, triggers=self.on_move_selection_down) action_list.add_action(self.service_manager_list.down) self.service_manager_list.up = self.order_toolbar.add_toolbar_action( 'up', text=translate('OpenLP.ServiceManager', 'Move up'), can_shortcuts=True, tooltip=translate('OpenLP.ServiceManager', 'Moves the selection up the window.'), visible=False, triggers=self.on_move_selection_up) action_list.add_action(self.service_manager_list.up) self.order_toolbar.addSeparator() self.service_manager_list.delete = self.order_toolbar.add_toolbar_action( 'delete', can_shortcuts=True, text=translate('OpenLP.ServiceManager', '&Delete From Service'), icon=':/general/general_delete.png', tooltip=translate('OpenLP.ServiceManager', 'Delete the selected item from the service.'), triggers=self.on_delete_from_service) self.order_toolbar.addSeparator() self.service_manager_list.expand = self.order_toolbar.add_toolbar_action( 'expand', can_shortcuts=True, text=translate('OpenLP.ServiceManager', '&Expand all'), icon=':/services/service_expand_all.png', tooltip=translate('OpenLP.ServiceManager', 'Expand all the service items.'), category=UiStrings().Service, triggers=self.on_expand_all) self.service_manager_list.collapse = self.order_toolbar.add_toolbar_action( 'collapse', can_shortcuts=True, text=translate('OpenLP.ServiceManager', '&Collapse all'), icon=':/services/service_collapse_all.png', tooltip=translate('OpenLP.ServiceManager', 'Collapse all the service items.'), category=UiStrings().Service, triggers=self.on_collapse_all) self.order_toolbar.addSeparator() self.service_manager_list.make_live = self.order_toolbar.add_toolbar_action( 'make_live', can_shortcuts=True, text=translate('OpenLP.ServiceManager', 'Go Live'), icon=':/general/general_live.png', tooltip=translate('OpenLP.ServiceManager', 'Send the selected item to Live.'), category=UiStrings().Service, triggers=self.make_live) self.layout.addWidget(self.order_toolbar) # Connect up our signals and slots self.theme_combo_box.activated.connect(self.on_theme_combo_box_selected) self.service_manager_list.doubleClicked.connect(self.on_make_live) self.service_manager_list.itemCollapsed.connect(self.collapsed) self.service_manager_list.itemExpanded.connect(self.expanded) # Last little bits of setting up self.service_theme = Settings().value(self.main_window.service_manager_settings_section + '/service theme') self.service_path = AppLocation.get_section_data_path('servicemanager') # build the drag and drop context menu self.dnd_menu = QtWidgets.QMenu() self.new_action = self.dnd_menu.addAction(translate('OpenLP.ServiceManager', '&Add New Item')) self.new_action.setIcon(build_icon(':/general/general_edit.png')) self.add_to_action = self.dnd_menu.addAction(translate('OpenLP.ServiceManager', '&Add to Selected Item')) self.add_to_action.setIcon(build_icon(':/general/general_edit.png')) # build the context menu self.menu = QtWidgets.QMenu() self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Edit Item'), icon=':/general/general_edit.png', triggers=self.remote_edit) self.rename_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Rename...'), icon=':/general/general_edit.png', triggers=self.on_service_item_rename) self.maintain_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Reorder Item'), icon=':/general/general_edit.png', triggers=self.on_service_item_edit_form) self.notes_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Notes'), icon=':/services/service_notes.png', triggers=self.on_service_item_note_form) self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'), icon=':/media/media_time.png', triggers=self.on_start_time_form) self.auto_start_action = create_widget_action(self.menu, text='', icon=':/media/auto-start_active.png', triggers=self.on_auto_start) # Add already existing delete action to the menu. self.menu.addAction(self.service_manager_list.delete) self.create_custom_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', 'Create New &Custom ' 'Slide'), icon=':/general/general_edit.png', triggers=self.create_custom) self.menu.addSeparator() # Add AutoPlay menu actions self.auto_play_slides_menu = QtWidgets.QMenu(translate('OpenLP.ServiceManager', '&Auto play slides')) self.menu.addMenu(self.auto_play_slides_menu) auto_play_slides_group = QtWidgets.QActionGroup(self.auto_play_slides_menu) auto_play_slides_group.setExclusive(True) self.auto_play_slides_loop = create_widget_action(self.auto_play_slides_menu, text=translate('OpenLP.ServiceManager', 'Auto play slides ' '&Loop'), checked=False, triggers=self.toggle_auto_play_slides_loop) auto_play_slides_group.addAction(self.auto_play_slides_loop) self.auto_play_slides_once = create_widget_action(self.auto_play_slides_menu, text=translate('OpenLP.ServiceManager', 'Auto play slides ' '&Once'), checked=False, triggers=self.toggle_auto_play_slides_once) auto_play_slides_group.addAction(self.auto_play_slides_once) self.auto_play_slides_menu.addSeparator() self.timed_slide_interval = create_widget_action(self.auto_play_slides_menu, text=translate('OpenLP.ServiceManager', '&Delay between ' 'slides'), triggers=self.on_timed_slide_interval) self.menu.addSeparator() self.preview_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', 'Show &Preview'), icon=':/general/general_preview.png', triggers=self.make_preview) # Add already existing make live action to the menu. self.menu.addAction(self.service_manager_list.make_live) self.menu.addSeparator() self.theme_menu = QtWidgets.QMenu(translate('OpenLP.ServiceManager', '&Change Item Theme')) self.menu.addMenu(self.theme_menu) self.service_manager_list.addActions( [self.service_manager_list.move_down, self.service_manager_list.move_up, self.service_manager_list.make_live, self.service_manager_list.move_top, self.service_manager_list.move_bottom, self.service_manager_list.up, self.service_manager_list.down, self.service_manager_list.expand, self.service_manager_list.collapse ]) Registry().register_function('theme_update_list', self.update_theme_list) Registry().register_function('config_screen_changed', self.regenerate_service_items) Registry().register_function('theme_update_global', self.theme_change) Registry().register_function('mediaitem_suffix_reset', self.reset_supported_suffixes) class ServiceManager(OpenLPMixin, RegistryMixin, QtWidgets.QWidget, Ui_ServiceManager, RegistryProperties): """ Manages the services. This involves taking text strings from plugins and adding them to the service. This service can then be zipped up with all the resources used into one OSZ or oszl file for use on any OpenLP v2 installation. Also handles the UI tasks of moving things up and down etc. """ servicemanager_set_item = QtCore.pyqtSignal(int) servicemanager_next_item = QtCore.pyqtSignal() servicemanager_previous_item = QtCore.pyqtSignal() def __init__(self, parent=None): """ Sets up the service manager, toolbars, list view, et al. """ super(ServiceManager, self).__init__(parent) self.active = build_icon(':/media/auto-start_active.png') self.inactive = build_icon(':/media/auto-start_inactive.png') self.service_items = [] self.suffixes = [] self.drop_position = -1 self.service_id = 0 # is a new service and has not been saved self._modified = False self._file_name = '' self.service_has_all_original_files = True def bootstrap_initialise(self): """ To be called as part of initialisation """ self.setup_ui(self) # Need to use event as called across threads and UI is updated self.servicemanager_set_item.connect(self.on_set_item) self.servicemanager_next_item.connect(self.next_item) self.servicemanager_previous_item.connect(self.previous_item) def bootstrap_post_set_up(self): """ Can be set up as a late setup """ self.service_note_form = ServiceNoteForm() self.service_item_edit_form = ServiceItemEditForm() self.start_time_form = StartTimeForm() def set_modified(self, modified=True): """ Setter for property "modified". Sets whether or not the current service has been modified. :param modified: Indicates if the service has new or removed items. Used to trigger a remote update. """ if modified: self.service_id += 1 self._modified = modified service_file = self.short_file_name() or translate('OpenLP.ServiceManager', 'Untitled Service') self.main_window.set_service_modified(modified, service_file) def is_modified(self): """ Getter for boolean property "modified". """ return self._modified def set_file_name(self, file_name): """ Setter for service file. :param file_name: The service file name """ self._file_name = str(file_name) self.main_window.set_service_modified(self.is_modified(), self.short_file_name()) Settings().setValue('servicemanager/last file', file_name) self._save_lite = self._file_name.endswith('.oszl') def file_name(self): """ Return the current file name including path. """ return self._file_name def short_file_name(self): """ Return the current file name, excluding the path. """ return split_filename(self._file_name)[1] def reset_supported_suffixes(self): """ Resets the Suffixes list. """ self.suffixes = [] def supported_suffixes(self, suffix_list): """ Adds Suffixes supported to the master list. Called from Plugins. :param suffix_list: New Suffix's to be supported """ if isinstance(suffix_list, str): self.suffixes.append(suffix_list) else: for suffix in suffix_list: if suffix not in self.suffixes: self.suffixes.append(suffix) def on_new_service_clicked(self, field=None): """ Create a new service. :param field: """ if self.is_modified(): result = self.save_modified_service() if result == QtWidgets.QMessageBox.Cancel: return False elif result == QtWidgets.QMessageBox.Save: if not self.decide_save_method(): return False self.new_file() def on_load_service_clicked(self, load_file=None): """ Loads the service file and saves the existing one it there is one unchanged. :param load_file: The service file to the loaded. Will be None is from menu so selection will be required. """ if self.is_modified(): result = self.save_modified_service() if result == QtWidgets.QMessageBox.Cancel: return False elif result == QtWidgets.QMessageBox.Save: self.decide_save_method() if not load_file: file_name, filter_used = QtWidgets.QFileDialog.getOpenFileName( self.main_window, translate('OpenLP.ServiceManager', 'Open File'), Settings().value(self.main_window.service_manager_settings_section + '/last directory'), translate('OpenLP.ServiceManager', 'OpenLP Service Files (*.osz *.oszl)')) if not file_name: return False else: file_name = load_file Settings().setValue(self.main_window.service_manager_settings_section + '/last directory', split_filename(file_name)[0]) self.load_file(file_name) def save_modified_service(self): """ Check to see if a service needs to be saved. """ return QtWidgets.QMessageBox.question(self.main_window, translate('OpenLP.ServiceManager', 'Modified Service'), translate('OpenLP.ServiceManager', 'The current service has been modified. Would you like to save ' 'this service?'), QtWidgets.QMessageBox.Save | QtWidgets.QMessageBox.Discard | QtWidgets.QMessageBox.Cancel, QtWidgets.QMessageBox.Save) def on_recent_service_clicked(self, field=None): """ Load a recent file as the service triggered by mainwindow recent service list. :param field: """ sender = self.sender() self.load_file(sender.data()) def new_file(self): """ Create a blank new service file. """ self.service_manager_list.clear() self.service_items = [] self.set_file_name('') self.service_id += 1 self.set_modified(False) Settings().setValue('servicemanager/last file', '') self.plugin_manager.new_service_created() def create_basic_service(self): """ Create the initial service array with the base items to be saved. :return: service array """ service = [] core = {'lite-service': self._save_lite, 'service-theme': self.service_theme } service.append({'openlp_core': core}) return service def save_file(self, field=None): """ Save the current service file. A temporary file is created so that we don't overwrite the existing one and leave a mangled service file should there be an error when saving. Audio files are also copied into the service manager directory, and then packaged into the zip file. """ if not self.file_name(): return self.save_file_as() temp_file, temp_file_name = mkstemp('.osz', 'openlp_') # We don't need the file handle. os.close(temp_file) self.log_debug(temp_file_name) path_file_name = str(self.file_name()) path, file_name = os.path.split(path_file_name) base_name = os.path.splitext(file_name)[0] service_file_name = '%s.osj' % base_name self.log_debug('ServiceManager.save_file - %s' % path_file_name) Settings().setValue(self.main_window.service_manager_settings_section + '/last directory', path) service = self.create_basic_service() write_list = [] missing_list = [] audio_files = [] total_size = 0 self.application.set_busy_cursor() # Number of items + 1 to zip it self.main_window.display_progress_bar(len(self.service_items) + 1) # Get list of missing files, and list of files to write for item in self.service_items: if not item['service_item'].uses_file(): continue for frame in item['service_item'].get_frames(): path_from = item['service_item'].get_frame_path(frame=frame) if path_from in write_list or path_from in missing_list: continue if not os.path.exists(path_from): missing_list.append(path_from) else: write_list.append(path_from) if missing_list: self.application.set_normal_cursor() title = translate('OpenLP.ServiceManager', 'Service File(s) Missing') message = translate('OpenLP.ServiceManager', 'The following file(s) in the service are missing: %s\n\n' 'These files will be removed if you continue to save.') % "\n\t".join(missing_list) answer = QtWidgets.QMessageBox.critical(self, title, message, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Cancel)) if answer == QtWidgets.QMessageBox.Cancel: self.main_window.finished_progress_bar() return False # Check if item contains a missing file. for item in list(self.service_items): self.main_window.increment_progress_bar() item['service_item'].remove_invalid_frames(missing_list) if item['service_item'].missing_frames(): self.service_items.remove(item) else: service_item = item['service_item'].get_service_repr(self._save_lite) if service_item['header']['background_audio']: for i, file_name in enumerate(service_item['header']['background_audio']): new_file = os.path.join('audio', item['service_item'].unique_identifier, file_name) audio_files.append((file_name, new_file)) service_item['header']['background_audio'][i] = new_file # Add the service item to the service. service.append({'serviceitem': service_item}) self.repaint_service_list(-1, -1) for file_item in write_list: file_size = os.path.getsize(file_item) total_size += file_size self.log_debug('ServiceManager.save_file - ZIP contents size is %i bytes' % total_size) service_content = json.dumps(service) # Usual Zip file cannot exceed 2GiB, file with Zip64 cannot be extracted using unzip in UNIX. allow_zip_64 = (total_size > 2147483648 + len(service_content)) self.log_debug('ServiceManager.save_file - allowZip64 is %s' % allow_zip_64) zip_file = None success = True self.main_window.increment_progress_bar() try: zip_file = zipfile.ZipFile(temp_file_name, 'w', zipfile.ZIP_STORED, allow_zip_64) # First we add service contents.. zip_file.writestr(service_file_name, service_content) # Finally add all the listed media files. for write_from in write_list: zip_file.write(write_from, write_from) for audio_from, audio_to in audio_files: if audio_from.startswith('audio'): # When items are saved, they get new unique_identifier. Let's copy the file to the new location. # Unused files can be ignored, OpenLP automatically cleans up the service manager dir on exit. audio_from = os.path.join(self.service_path, audio_from) save_file = os.path.join(self.service_path, audio_to) save_path = os.path.split(save_file)[0] check_directory_exists(save_path) if not os.path.exists(save_file): shutil.copy(audio_from, save_file) zip_file.write(audio_from, audio_to) except IOError: self.log_exception('Failed to save service to disk: %s' % temp_file_name) self.main_window.error_message(translate('OpenLP.ServiceManager', 'Error Saving File'), translate('OpenLP.ServiceManager', 'There was an error saving your file.')) success = False finally: if zip_file: zip_file.close() self.main_window.finished_progress_bar() self.application.set_normal_cursor() if success: try: shutil.copy(temp_file_name, path_file_name) except shutil.Error: return self.save_file_as() except OSError as ose: QtWidgets.QMessageBox.critical(self, translate('OpenLP.ServiceManager', 'Error Saving File'), translate('OpenLP.ServiceManager', 'An error occurred while writing the ' 'service file: %s') % ose.strerror, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) success = False self.main_window.add_recent_file(path_file_name) self.set_modified(False) delete_file(temp_file_name) return success def save_local_file(self): """ Save the current service file but leave all the file references alone to point to the current machine. This format is not transportable as it will not contain any files. """ if not self.file_name(): return self.save_file_as() temp_file, temp_file_name = mkstemp('.oszl', 'openlp_') # We don't need the file handle. os.close(temp_file) self.log_debug(temp_file_name) path_file_name = str(self.file_name()) path, file_name = os.path.split(path_file_name) base_name = os.path.splitext(file_name)[0] service_file_name = '%s.osj' % base_name self.log_debug('ServiceManager.save_file - %s' % path_file_name) Settings().setValue(self.main_window.service_manager_settings_section + '/last directory', path) service = self.create_basic_service() self.application.set_busy_cursor() # Number of items + 1 to zip it self.main_window.display_progress_bar(len(self.service_items) + 1) for item in self.service_items: self.main_window.increment_progress_bar() service_item = item['service_item'].get_service_repr(self._save_lite) # TODO: check for file item on save. service.append({'serviceitem': service_item}) self.main_window.increment_progress_bar() service_content = json.dumps(service) zip_file = None success = True self.main_window.increment_progress_bar() try: zip_file = zipfile.ZipFile(temp_file_name, 'w', zipfile.ZIP_STORED, True) # First we add service contents. zip_file.writestr(service_file_name, service_content) except IOError: self.log_exception('Failed to save service to disk: %s', temp_file_name) self.main_window.error_message(translate('OpenLP.ServiceManager', 'Error Saving File'), translate('OpenLP.ServiceManager', 'There was an error saving your file.')) success = False finally: if zip_file: zip_file.close() self.main_window.finished_progress_bar() self.application.set_normal_cursor() if success: try: shutil.copy(temp_file_name, path_file_name) except shutil.Error: return self.save_file_as() self.main_window.add_recent_file(path_file_name) self.set_modified(False) delete_file(temp_file_name) return success def save_file_as(self, field=None): """ Get a file name and then call :func:`ServiceManager.save_file` to save the file. """ default_service_enabled = Settings().value('advanced/default service enabled') if default_service_enabled: service_day = Settings().value('advanced/default service day') if service_day == 7: local_time = datetime.now() else: service_hour = Settings().value('advanced/default service hour') service_minute = Settings().value('advanced/default service minute') now = datetime.now() day_delta = service_day - now.weekday() if day_delta < 0: day_delta += 7 time = now + timedelta(days=day_delta) local_time = time.replace(hour=service_hour, minute=service_minute) default_pattern = Settings().value('advanced/default service name') default_file_name = format_time(default_pattern, local_time) else: default_file_name = '' directory = Settings().value(self.main_window.service_manager_settings_section + '/last directory') path = os.path.join(directory, default_file_name) # SaveAs from osz to oszl is not valid as the files will be deleted on exit which is not sensible or usable in # the long term. if self._file_name.endswith('oszl') or self.service_has_all_original_files: file_name, filter_used = QtWidgets.QFileDialog.getSaveFileName( self.main_window, UiStrings().SaveService, path, translate('OpenLP.ServiceManager', 'OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl)')) else: file_name, filter_uesd = QtWidgets.QFileDialog.getSaveFileName( self.main_window, UiStrings().SaveService, path, translate('OpenLP.ServiceManager', 'OpenLP Service Files (*.osz);;')) if not file_name: return False if os.path.splitext(file_name)[1] == '': file_name += '.osz' else: ext = os.path.splitext(file_name)[1] file_name.replace(ext, '.osz') self.set_file_name(file_name) self.decide_save_method() def decide_save_method(self, field=None): """ Determine which type of save method to use. :param field: """ if not self.file_name(): return self.save_file_as() if self._save_lite: return self.save_local_file() else: return self.save_file() def load_file(self, file_name): """ Load an existing service file :param file_name: """ if not file_name: return False file_name = str(file_name) if not os.path.exists(file_name): return False zip_file = None file_to = None self.application.set_busy_cursor() try: zip_file = zipfile.ZipFile(file_name) for zip_info in zip_file.infolist(): try: ucs_file = zip_info.filename except UnicodeDecodeError: self.log_exception('file_name "%s" is not valid UTF-8' % zip_info.file_name) critical_error_message_box(message=translate('OpenLP.ServiceManager', 'File is not a valid service.\n The content encoding is not UTF-8.')) continue os_file = ucs_file.replace('/', os.path.sep) os_file = os.path.basename(os_file) self.log_debug('Extract file: %s' % os_file) zip_info.filename = os_file zip_file.extract(zip_info, self.service_path) if os_file.endswith('osj') or os_file.endswith('osd'): p_file = os.path.join(self.service_path, os_file) if 'p_file' in locals(): file_to = open(p_file, 'r') if p_file.endswith('osj'): items = json.load(file_to) else: critical_error_message_box(message=translate('OpenLP.ServiceManager', 'The service file you are trying to open is in an old ' 'format.\n Please save it using OpenLP 2.0.2 or ' 'greater.')) return file_to.close() self.new_file() self.set_file_name(file_name) self.main_window.display_progress_bar(len(items)) self.process_service_items(items) delete_file(p_file) self.main_window.add_recent_file(file_name) self.set_modified(False) Settings().setValue('servicemanager/last file', file_name) else: critical_error_message_box(message=translate('OpenLP.ServiceManager', 'File is not a valid service.')) self.log_error('File contains no service data') except (IOError, NameError, zipfile.BadZipfile): self.log_exception('Problem loading service file %s' % file_name) critical_error_message_box(message=translate('OpenLP.ServiceManager', 'File could not be opened because it is corrupt.')) except zipfile.BadZipfile: if os.path.getsize(file_name) == 0: self.log_exception('Service file is zero sized: %s' % file_name) QtWidgets.QMessageBox.information(self, translate('OpenLP.ServiceManager', 'Empty File'), translate('OpenLP.ServiceManager', 'This service file does not contain ' 'any data.')) else: self.log_exception('Service file is cannot be extracted as zip: %s' % file_name) QtWidgets.QMessageBox.information(self, translate('OpenLP.ServiceManager', 'Corrupt File'), translate('OpenLP.ServiceManager', 'This file is either corrupt or it is not an OpenLP 2 ' 'service file.')) self.application.set_normal_cursor() return finally: if file_to: file_to.close() if zip_file: zip_file.close() self.main_window.finished_progress_bar() self.application.set_normal_cursor() self.repaint_service_list(-1, -1) def process_service_items(self, service_items): """ Process all the array of service items loaded from the saved service :param service_items: list of service_items """ for item in service_items: self.main_window.increment_progress_bar() service_item = ServiceItem() if 'openlp_core' in item: item = item.get('openlp_core') theme = item.get('service-theme', None) if theme: find_and_set_in_combo_box(self.theme_combo_box, theme, set_missing=False) if theme == self.theme_combo_box.currentText(): self.renderer.set_service_theme(theme) else: if self._save_lite: service_item.set_from_service(item) else: service_item.set_from_service(item, self.service_path) service_item.validate_item(self.suffixes) if service_item.is_capable(ItemCapabilities.OnLoadUpdate): new_item = Registry().get(service_item.name).service_load(service_item) if new_item: service_item = new_item self.add_service_item(service_item, repaint=False) def load_last_file(self): """ Load the last service item from the service manager when the service was last closed. Can be blank if there was no service present. """ file_name = Settings().value('servicemanager/last file') if file_name: self.load_file(file_name) def context_menu(self, point): """ The Right click context menu from the Serviceitem list :param point: The location of the cursor. """ item = self.service_manager_list.itemAt(point) if item is None: return if item.parent(): pos = item.parent().data(0, QtCore.Qt.UserRole) else: pos = item.data(0, QtCore.Qt.UserRole) service_item = self.service_items[pos - 1] self.edit_action.setVisible(False) self.rename_action.setVisible(False) self.create_custom_action.setVisible(False) self.maintain_action.setVisible(False) self.notes_action.setVisible(False) self.time_action.setVisible(False) self.auto_start_action.setVisible(False) if service_item['service_item'].is_capable(ItemCapabilities.CanEdit) and service_item['service_item'].edit_id: self.edit_action.setVisible(True) if service_item['service_item'].is_capable(ItemCapabilities.CanEditTitle): self.rename_action.setVisible(True) if service_item['service_item'].is_capable(ItemCapabilities.CanMaintain): self.maintain_action.setVisible(True) if item.parent() is None: self.notes_action.setVisible(True) if service_item['service_item'].is_capable(ItemCapabilities.CanLoop) and \ len(service_item['service_item'].get_frames()) > 1: self.auto_play_slides_menu.menuAction().setVisible(True) self.auto_play_slides_once.setChecked(service_item['service_item'].auto_play_slides_once) self.auto_play_slides_loop.setChecked(service_item['service_item'].auto_play_slides_loop) self.timed_slide_interval.setChecked(service_item['service_item'].timed_slide_interval > 0) if service_item['service_item'].timed_slide_interval > 0: delay_suffix = ' %s s' % str(service_item['service_item'].timed_slide_interval) else: delay_suffix = ' ...' self.timed_slide_interval.setText( translate('OpenLP.ServiceManager', '&Delay between slides') + delay_suffix) # TODO for future: make group explains itself more visually else: self.auto_play_slides_menu.menuAction().setVisible(False) if service_item['service_item'].is_capable(ItemCapabilities.HasVariableStartTime) and \ not service_item['service_item'].is_capable(ItemCapabilities.IsOptical): self.time_action.setVisible(True) if service_item['service_item'].is_capable(ItemCapabilities.CanAutoStartForLive): self.auto_start_action.setVisible(True) self.auto_start_action.setIcon(self.inactive) self.auto_start_action.setText(translate('OpenLP.ServiceManager', '&Auto Start - inactive')) if service_item['service_item'].will_auto_start: self.auto_start_action.setText(translate('OpenLP.ServiceManager', '&Auto Start - active')) self.auto_start_action.setIcon(self.active) if service_item['service_item'].is_text(): for plugin in self.plugin_manager.plugins: if plugin.name == 'custom' and plugin.status == PluginStatus.Active: self.create_custom_action.setVisible(True) break self.theme_menu.menuAction().setVisible(False) # Set up the theme menu. if service_item['service_item'].is_text() and self.renderer.theme_level == ThemeLevel.Song: self.theme_menu.menuAction().setVisible(True) # The service item does not have a theme, check the "Default". if service_item['service_item'].theme is None: theme_action = self.theme_menu.defaultAction() else: theme_action = self.theme_menu.findChild(QtWidgets.QAction, service_item['service_item'].theme) if theme_action is not None: theme_action.setChecked(True) self.menu.exec(self.service_manager_list.mapToGlobal(point)) def on_service_item_note_form(self, field=None): """ Allow the service note to be edited :param field: """ item = self.find_service_item()[0] self.service_note_form.text_edit.setPlainText(self.service_items[item]['service_item'].notes) if self.service_note_form.exec(): self.service_items[item]['service_item'].notes = self.service_note_form.text_edit.toPlainText() self.repaint_service_list(item, -1) self.set_modified() def on_start_time_form(self, field=None): """ Opens a dialog to type in service item notes. :param field: """ item = self.find_service_item()[0] self.start_time_form.item = self.service_items[item] if self.start_time_form.exec(): self.repaint_service_list(item, -1) def toggle_auto_play_slides_once(self, field=None): """ Toggle Auto play slide once. Inverts auto play once option for the item :param field: """ item = self.find_service_item()[0] service_item = self.service_items[item]['service_item'] service_item.auto_play_slides_once = not service_item.auto_play_slides_once if service_item.auto_play_slides_once: service_item.auto_play_slides_loop = False self.auto_play_slides_loop.setChecked(False) if service_item.auto_play_slides_once and service_item.timed_slide_interval == 0: service_item.timed_slide_interval = Settings().value( self.main_window.general_settings_section + '/loop delay') self.set_modified() def toggle_auto_play_slides_loop(self, field=None): """ Toggle Auto play slide loop. :param field: """ item = self.find_service_item()[0] service_item = self.service_items[item]['service_item'] service_item.auto_play_slides_loop = not service_item.auto_play_slides_loop if service_item.auto_play_slides_loop: service_item.auto_play_slides_once = False self.auto_play_slides_once.setChecked(False) if service_item.auto_play_slides_loop and service_item.timed_slide_interval == 0: service_item.timed_slide_interval = Settings().value( self.main_window.general_settings_section + '/loop delay') self.set_modified() def on_timed_slide_interval(self, field=None): """ Shows input dialog for enter interval in seconds for delay :param field: """ item = self.find_service_item()[0] service_item = self.service_items[item]['service_item'] if service_item.timed_slide_interval == 0: timed_slide_interval = Settings().value(self.main_window.general_settings_section + '/loop delay') else: timed_slide_interval = service_item.timed_slide_interval timed_slide_interval, ok = QtWidgets.QInputDialog.getInt(self, translate('OpenLP.ServiceManager', 'Input delay'), translate('OpenLP.ServiceManager', 'Delay between slides in seconds.'), timed_slide_interval, 0, 180, 1) if ok: service_item.timed_slide_interval = timed_slide_interval if service_item.timed_slide_interval != 0 and not service_item.auto_play_slides_loop \ and not service_item.auto_play_slides_once: service_item.auto_play_slides_loop = True elif service_item.timed_slide_interval == 0: service_item.auto_play_slides_loop = False service_item.auto_play_slides_once = False self.set_modified() def on_auto_start(self, field=None): """ Toggles to Auto Start Setting. """ item = self.find_service_item()[0] self.service_items[item]['service_item'].will_auto_start = \ not self.service_items[item]['service_item'].will_auto_start def on_service_item_edit_form(self, field=None): """ Opens a dialog to edit the service item and update the service display if changes are saved. :param field: """ item = self.find_service_item()[0] self.service_item_edit_form.set_service_item(self.service_items[item]['service_item']) if self.service_item_edit_form.exec(): self.add_service_item(self.service_item_edit_form.get_service_item(), replace=True, expand=self.service_items[item]['expanded']) def preview_live(self, unique_identifier, row): """ Called by the SlideController to request a preview item be made live and allows the next preview to be updated if relevant. :param unique_identifier: Reference to the service_item :param row: individual row number """ for sitem in self.service_items: if sitem['service_item'].unique_identifier == unique_identifier: item = self.service_manager_list.topLevelItem(sitem['order'] - 1) self.service_manager_list.setCurrentItem(item) self.make_live(int(row)) return def next_item(self): """ Called by the SlideController to select the next service item. """ if not self.service_manager_list.selectedItems(): return selected = self.service_manager_list.selectedItems()[0] look_for = 0 service_iterator = QtWidgets.QTreeWidgetItemIterator(self.service_manager_list) while service_iterator.value(): if look_for == 1 and service_iterator.value().parent() is None: self.service_manager_list.setCurrentItem(service_iterator.value()) self.make_live() return if service_iterator.value() == selected: look_for = 1 service_iterator += 1 def previous_item(self, last_slide=False): """ Called by the SlideController to select the previous service item. :param last_slide: Is this the last slide in the service_item. """ if not self.service_manager_list.selectedItems(): return selected = self.service_manager_list.selectedItems()[0] prev_item = None prev_item_last_slide = None service_iterator = QtWidgets.QTreeWidgetItemIterator(self.service_manager_list) while service_iterator.value(): if service_iterator.value() == selected: if last_slide and prev_item_last_slide: pos = prev_item.data(0, QtCore.Qt.UserRole) check_expanded = self.service_items[pos - 1]['expanded'] self.service_manager_list.setCurrentItem(prev_item_last_slide) if not check_expanded: self.service_manager_list.collapseItem(prev_item) self.make_live() self.service_manager_list.setCurrentItem(prev_item) elif prev_item: self.service_manager_list.setCurrentItem(prev_item) self.make_live() return if service_iterator.value().parent() is None: prev_item = service_iterator.value() if service_iterator.value().parent() is prev_item: prev_item_last_slide = service_iterator.value() service_iterator += 1 def on_set_item(self, message, field=None): """ Called by a signal to select a specific item and make it live usually from remote. :param field: :param message: The data passed in from a remove message """ self.log_debug(message) self.set_item(int(message)) def set_item(self, index): """ Makes a specific item in the service live. :param index: The index of the service item list to be actioned. """ if 0 <= index < self.service_manager_list.topLevelItemCount(): item = self.service_manager_list.topLevelItem(index) self.service_manager_list.setCurrentItem(item) self.make_live() def on_move_selection_up(self): """ Moves the cursor selection up the window. Called by the up arrow. """ item = self.service_manager_list.currentItem() item_before = self.service_manager_list.itemAbove(item) if item_before is None: return self.service_manager_list.setCurrentItem(item_before) def on_move_selection_down(self): """ Moves the cursor selection down the window. Called by the down arrow. """ item = self.service_manager_list.currentItem() item_after = self.service_manager_list.itemBelow(item) if item_after is None: return self.service_manager_list.setCurrentItem(item_after) def on_collapse_all(self, field=None): """ Collapse all the service items. :param field: """ for item in self.service_items: item['expanded'] = False self.service_manager_list.collapseAll() def collapsed(self, item): """ Record if an item is collapsed. Used when repainting the list to get the correct state. :param item: The service item to be checked """ pos = item.data(0, QtCore.Qt.UserRole) # Only set root items as collapsed, and since we only have 2 levels we find them by checking for children if item.childCount(): self.service_items[pos - 1]['expanded'] = False def on_expand_all(self, field=None): """ Collapse all the service items. :param field: """ for item in self.service_items: item['expanded'] = True self.service_manager_list.expandAll() def expanded(self, item): """ Record if an item is collapsed. Used when repainting the list to get the correct state. :param item: The service item to be checked """ pos = item.data(0, QtCore.Qt.UserRole) # Only set root items as expanded, and since we only have 2 levels we find them by checking for children if item.childCount(): self.service_items[pos - 1]['expanded'] = True def on_service_top(self, field=None): """ Move the current ServiceItem to the top of the list. :param field: """ item, child = self.find_service_item() if item < len(self.service_items) and item != -1: temp = self.service_items[item] self.service_items.remove(self.service_items[item]) self.service_items.insert(0, temp) self.repaint_service_list(0, child) self.set_modified() def on_service_up(self, field=None): """ Move the current ServiceItem one position up in the list. :param field: """ item, child = self.find_service_item() if item > 0: temp = self.service_items[item] self.service_items.remove(self.service_items[item]) self.service_items.insert(item - 1, temp) self.repaint_service_list(item - 1, child) self.set_modified() def on_service_down(self, field=None): """ Move the current ServiceItem one position down in the list. :param field: """ item, child = self.find_service_item() if item < len(self.service_items) and item != -1: temp = self.service_items[item] self.service_items.remove(self.service_items[item]) self.service_items.insert(item + 1, temp) self.repaint_service_list(item + 1, child) self.set_modified() def on_service_end(self, field=None): """ Move the current ServiceItem to the bottom of the list. :param field: """ item, child = self.find_service_item() if item < len(self.service_items) and item != -1: temp = self.service_items[item] self.service_items.remove(self.service_items[item]) self.service_items.insert(len(self.service_items), temp) self.repaint_service_list(len(self.service_items) - 1, child) self.set_modified() def on_delete_from_service(self, field=None): """ Remove the current ServiceItem from the list. :param field: """ item = self.find_service_item()[0] if item != -1: self.service_items.remove(self.service_items[item]) self.repaint_service_list(item - 1, -1) self.set_modified() def repaint_service_list(self, service_item, service_item_child): """ Clear the existing service list and prepaint all the items. This is used when moving items as the move takes place in a supporting list, and when regenerating all the items due to theme changes. :param service_item: The item which changed. (int) :param service_item_child: The child of the ``service_item``, which will be selected. (int) """ # Correct order of items in array count = 1 self.service_has_all_original_files = True for item in self.service_items: item['order'] = count count += 1 if not item['service_item'].has_original_files: self.service_has_all_original_files = False # Repaint the screen self.service_manager_list.clear() self.service_manager_list.clearSelection() for item_count, item in enumerate(self.service_items): service_item_from_item = item['service_item'] tree_widget_item = QtWidgets.QTreeWidgetItem(self.service_manager_list) if service_item_from_item.is_valid: if service_item_from_item.notes: icon = QtGui.QImage(service_item_from_item.icon) icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) overlay = QtGui.QImage(':/services/service_item_notes.png') overlay = overlay.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) painter = QtGui.QPainter(icon) painter.drawImage(0, 0, overlay) painter.end() tree_widget_item.setIcon(0, build_icon(icon)) elif service_item_from_item.temporary_edit: icon = QtGui.QImage(service_item_from_item.icon) icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) overlay = QtGui.QImage(':/general/general_export.png') overlay = overlay.scaled(40, 40, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) painter = QtGui.QPainter(icon) painter.drawImage(40, 0, overlay) painter.end() tree_widget_item.setIcon(0, build_icon(icon)) else: tree_widget_item.setIcon(0, service_item_from_item.iconic_representation) else: tree_widget_item.setIcon(0, build_icon(':/general/general_delete.png')) tree_widget_item.setText(0, service_item_from_item.get_display_title()) tips = [] if service_item_from_item.temporary_edit: tips.append('%s: %s' % (translate('OpenLP.ServiceManager', 'Edit'), (translate('OpenLP.ServiceManager', 'Service copy only')))) if service_item_from_item.theme and service_item_from_item.theme != -1: tips.append('%s: %s' % (translate('OpenLP.ServiceManager', 'Slide theme'), service_item_from_item.theme)) if service_item_from_item.notes: tips.append('%s: %s' % (translate('OpenLP.ServiceManager', 'Notes'), html.escape(service_item_from_item.notes))) if item['service_item'].is_capable(ItemCapabilities.HasVariableStartTime): tips.append(item['service_item'].get_media_time()) tree_widget_item.setToolTip(0, '
'.join(tips)) tree_widget_item.setData(0, QtCore.Qt.UserRole, item['order']) tree_widget_item.setSelected(item['selected']) # Add the children to their parent tree_widget_item. for count, frame in enumerate(service_item_from_item.get_frames()): child = QtWidgets.QTreeWidgetItem(tree_widget_item) # prefer to use a display_title if service_item_from_item.is_capable(ItemCapabilities.HasDisplayTitle): text = frame['display_title'].replace('\n', ' ') else: text = frame['title'].replace('\n', ' ') child.setText(0, text[:40]) child.setData(0, QtCore.Qt.UserRole, count) if service_item == item_count: if item['expanded'] and service_item_child == count: self.service_manager_list.setCurrentItem(child) elif service_item_child == -1: self.service_manager_list.setCurrentItem(tree_widget_item) tree_widget_item.setExpanded(item['expanded']) def clean_up(self): """ Empties the service_path of temporary files on system exit. """ for file_name in os.listdir(self.service_path): file_path = os.path.join(self.service_path, file_name) delete_file(file_path) if os.path.exists(os.path.join(self.service_path, 'audio')): shutil.rmtree(os.path.join(self.service_path, 'audio'), True) def on_theme_combo_box_selected(self, current_index): """ Set the theme for the current service. :param current_index: The combo box index for the selected item """ self.service_theme = self.theme_combo_box.currentText() self.renderer.set_service_theme(self.service_theme) Settings().setValue(self.main_window.service_manager_settings_section + '/service theme', self.service_theme) self.regenerate_service_items(True) def theme_change(self): """ The theme may have changed in the settings dialog so make sure the theme combo box is in the correct state. """ visible = self.renderer.theme_level == ThemeLevel.Global self.theme_label.setVisible(visible) self.theme_combo_box.setVisible(visible) def regenerate_service_items(self, changed=False): """ Rebuild the service list as things have changed and a repaint is the easiest way to do this. :param changed: True if the list has changed for new / removed items. False for a theme change. """ self.application.set_busy_cursor() # force reset of renderer as theme data has changed self.service_has_all_original_files = True if self.service_items: for item in self.service_items: item['selected'] = False service_iterator = QtWidgets.QTreeWidgetItemIterator(self.service_manager_list) selected_item = None while service_iterator.value(): if service_iterator.value().isSelected(): selected_item = service_iterator.value() service_iterator += 1 if selected_item is not None: if selected_item.parent() is None: pos = selected_item.data(0, QtCore.Qt.UserRole) else: pos = selected_item.parent().data(0, QtCore.Qt.UserRole) self.service_items[pos - 1]['selected'] = True temp_service_items = self.service_items self.service_manager_list.clear() self.service_items = [] self.is_new = True for item in temp_service_items: self.add_service_item(item['service_item'], False, expand=item['expanded'], repaint=False, selected=item['selected']) # Set to False as items may have changed rendering does not impact the saved song so True may also be valid if changed: self.set_modified() # Repaint it once only at the end self.repaint_service_list(-1, -1) self.application.set_normal_cursor() def replace_service_item(self, new_item): """ Using the service item passed replace the one with the same edit id if found. :param new_item: a new service item to up date an existing one. """ for item_count, item in enumerate(self.service_items): if item['service_item'].edit_id == new_item.edit_id and item['service_item'].name == new_item.name: new_item.render() new_item.merge(item['service_item']) item['service_item'] = new_item self.repaint_service_list(item_count + 1, 0) self.live_controller.replace_service_manager_item(new_item) self.set_modified() def add_service_item(self, item, rebuild=False, expand=None, replace=False, repaint=True, selected=False, position=-1): """ Add a Service item to the list :param item: Service Item to be added :param rebuild: Do we need to rebuild the live display (Default False) :param expand: Override the default expand settings. (Tristate) :param replace: Is the service item a replacement (Default False) :param repaint: Do we need to repaint the service item list (Default True) :param selected: Has the item been selected (Default False) :param position: The position where the item is dropped (Default -1) """ # if not passed set to config value if expand is None: expand = Settings().value('advanced/expand service item') item.from_service = True if position != -1: self.drop_position = position if replace: s_item, child = self.find_service_item() item.merge(self.service_items[s_item]['service_item']) self.service_items[s_item]['service_item'] = item self.repaint_service_list(s_item, child) self.live_controller.replace_service_manager_item(item) else: item.render() # nothing selected for dnd if self.drop_position == -1: if isinstance(item, list): for ind_item in item: self.service_items.append({'service_item': ind_item, 'order': len(self.service_items) + 1, 'expanded': expand, 'selected': selected}) else: self.service_items.append({'service_item': item, 'order': len(self.service_items) + 1, 'expanded': expand, 'selected': selected}) if repaint: self.repaint_service_list(len(self.service_items) - 1, -1) else: self.service_items.insert(self.drop_position, {'service_item': item, 'order': self.drop_position, 'expanded': expand, 'selected': selected}) self.repaint_service_list(self.drop_position, -1) # if rebuilding list make sure live is fixed. if rebuild: self.live_controller.replace_service_manager_item(item) self.drop_position = -1 self.set_modified() def make_preview(self, field=None): """ Send the current item to the Preview slide controller :param field: """ self.application.set_busy_cursor() item, child = self.find_service_item() if self.service_items[item]['service_item'].is_valid: self.preview_controller.add_service_manager_item(self.service_items[item]['service_item'], child) else: critical_error_message_box(translate('OpenLP.ServiceManager', 'Missing Display Handler'), translate('OpenLP.ServiceManager', 'Your item cannot be displayed as there is no handler to display it')) self.application.set_normal_cursor() def get_service_item(self): """ Send the current item to the Preview slide controller """ item = self.find_service_item()[0] if item == -1: return False else: return self.service_items[item]['service_item'] def on_make_live(self, field=None): """ Send the current item to the Live slide controller but triggered by a tablewidget click event. :param field: """ self.make_live() def make_live(self, row=-1): """ Send the current item to the Live slide controller :param row: Row number to be displayed if from preview. -1 is passed if the value is not set """ item, child = self.find_service_item() # No items in service if item == -1: return if row != -1: child = row self.application.set_busy_cursor() if self.service_items[item]['service_item'].is_valid: self.live_controller.add_service_manager_item(self.service_items[item]['service_item'], child) if Settings().value(self.main_window.general_settings_section + '/auto preview'): item += 1 if self.service_items and item < len(self.service_items) and \ self.service_items[item]['service_item'].is_capable(ItemCapabilities.CanPreview): self.preview_controller.add_service_manager_item(self.service_items[item]['service_item'], 0) self.live_controller.preview_widget.setFocus() else: critical_error_message_box(translate('OpenLP.ServiceManager', 'Missing Display Handler'), translate('OpenLP.ServiceManager', 'Your item cannot be displayed as the plugin required to display it ' 'is missing or inactive')) self.application.set_normal_cursor() def remote_edit(self, field=None): """ Triggers a remote edit to a plugin to allow item to be edited. :param field: """ item = self.find_service_item()[0] if self.service_items[item]['service_item'].is_capable(ItemCapabilities.CanEdit): new_item = Registry().get(self.service_items[item]['service_item'].name). \ on_remote_edit(self.service_items[item]['service_item'].edit_id) if new_item: self.add_service_item(new_item, replace=True) def on_service_item_rename(self, field=None): """ Opens a dialog to rename the service item. :param field: Not used, but PyQt needs this. """ item = self.find_service_item()[0] if not self.service_items[item]['service_item'].is_capable(ItemCapabilities.CanEditTitle): return title = self.service_items[item]['service_item'].title title, ok = QtWidgets.QInputDialog.getText(self, translate('OpenLP.ServiceManager', 'Rename item title'), translate('OpenLP.ServiceManager', 'Title:'), QtWidgets.QLineEdit.Normal, self.tr(title)) if ok: self.service_items[item]['service_item'].title = title self.repaint_service_list(item, -1) self.set_modified() def create_custom(self, field=None): """ Saves the current text item as a custom slide :param field: """ item = self.find_service_item()[0] Registry().execute('custom_create_from_service', self.service_items[item]['service_item']) def find_service_item(self): """ Finds the first selected ServiceItem in the list and returns the position of the service_item_from_item and its selected child item. For example, if the third child item (in the Slidecontroller known as slide) in the second service item is selected this will return:: (1, 2) """ items = self.service_manager_list.selectedItems() service_item = -1 service_item_child = -1 for item in items: parent_item = item.parent() if parent_item is None: service_item = item.data(0, QtCore.Qt.UserRole) else: service_item = parent_item.data(0, QtCore.Qt.UserRole) service_item_child = item.data(0, QtCore.Qt.UserRole) # Adjust for zero based arrays. service_item -= 1 # Only process the first item on the list for this method. break return service_item, service_item_child def drop_event(self, event): """ Receive drop event and trigger an internal event to get the plugins to build and push the correct service item. The drag event payload carries the plugin name :param event: Handle of the event passed """ link = event.mimeData() if link.hasUrls(): event.setDropAction(QtCore.Qt.CopyAction) event.accept() for url in link.urls(): file_name = url.toLocalFile() if file_name.endswith('.osz'): self.on_load_service_clicked(file_name) elif file_name.endswith('.oszl'): # todo correct self.on_load_service_clicked(file_name) elif link.hasText(): plugin = link.text() item = self.service_manager_list.itemAt(event.pos()) # ServiceManager started the drag and drop if plugin == 'ServiceManager': start_pos, child = self.find_service_item() # If no items selected if start_pos == -1: return if item is None: end_pos = len(self.service_items) else: end_pos = get_parent_item_data(item) - 1 service_item = self.service_items[start_pos] self.service_items.remove(service_item) self.service_items.insert(end_pos, service_item) self.repaint_service_list(end_pos, child) self.set_modified() else: # we are not over anything so drop replace = False if item is None: self.drop_position = len(self.service_items) else: # we are over something so lets investigate pos = get_parent_item_data(item) - 1 service_item = self.service_items[pos] if (plugin == service_item['service_item'].name and service_item['service_item'].is_capable(ItemCapabilities.CanAppend)): action = self.dnd_menu.exec(QtGui.QCursor.pos()) # New action required if action == self.new_action: self.drop_position = get_parent_item_data(item) # Append to existing action if action == self.add_to_action: self.drop_position = get_parent_item_data(item) item.setSelected(True) replace = True else: self.drop_position = get_parent_item_data(item) - 1 Registry().execute('%s_add_service_item' % plugin, replace) def update_theme_list(self, theme_list): """ Called from ThemeManager when the Themes have changed :param theme_list: A list of current themes to be displayed """ self.theme_combo_box.clear() self.theme_menu.clear() self.theme_combo_box.addItem('') theme_group = QtWidgets.QActionGroup(self.theme_menu) theme_group.setExclusive(True) theme_group.setObjectName('theme_group') # Create a "Default" theme, which allows the user to reset the item's theme to the service theme or global # theme. default_theme = create_widget_action(self.theme_menu, text=UiStrings().Default, checked=False, triggers=self.on_theme_change_action) self.theme_menu.setDefaultAction(default_theme) theme_group.addAction(default_theme) self.theme_menu.addSeparator() for theme in theme_list: self.theme_combo_box.addItem(theme) theme_group.addAction(create_widget_action(self.theme_menu, theme, text=theme, checked=False, triggers=self.on_theme_change_action)) find_and_set_in_combo_box(self.theme_combo_box, self.service_theme) self.renderer.set_service_theme(self.service_theme) self.regenerate_service_items() def on_theme_change_action(self, field=None): """ Handles theme change events :param field: """ theme = self.sender().objectName() # No object name means that the "Default" theme is supposed to be used. if not theme: theme = None item = self.find_service_item()[0] self.service_items[item]['service_item'].update_theme(theme) self.regenerate_service_items(True) def get_drop_position(self): """ Getter for drop_position. Used in: MediaManagerItem """ return self.drop_position def get_parent_item_data(item): """ Finds and returns the parent item for any item :param item: The service item list item to be checked. """ parent_item = item.parent() if parent_item is None: return item.data(0, QtCore.Qt.UserRole) else: return parent_item.data(0, QtCore.Qt.UserRole) OpenLP-2.4/openlp/core/ui/aboutform.py0000644000175000017500000000565712657640340017000 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The About dialog. """ import webbrowser from PyQt5 import QtCore, QtWidgets from openlp.core.lib import translate from openlp.core.utils import get_application_version from .aboutdialog import UiAboutDialog class AboutForm(QtWidgets.QDialog, UiAboutDialog): """ The About dialog """ def __init__(self, parent): """ Do some initialisation stuff """ super(AboutForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self._setup() def _setup(self): """ Set up the dialog. This method is mocked out in tests. """ self.setup_ui(self) application_version = get_application_version() about_text = self.about_text_edit.toPlainText() about_text = about_text.replace('', application_version['version']) if application_version['build']: build_text = translate('OpenLP.AboutForm', ' build %s') % application_version['build'] else: build_text = '' about_text = about_text.replace('', build_text) self.about_text_edit.setPlainText(about_text) self.volunteer_button.clicked.connect(self.on_volunteer_button_clicked) def on_volunteer_button_clicked(self): """ Launch a web browser and go to the contribute page on the site. """ webbrowser.open_new('http://openlp.org/en/contribute') OpenLP-2.4/openlp/core/ui/media/0000755000175000017500000000000012663134435015472 5ustar raoulraoulOpenLP-2.4/openlp/core/ui/media/playertab.py0000644000175000017500000003112012657640340020024 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.playertab` module holds the configuration tab for the media stuff. """ import platform from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, Settings, UiStrings, translate from openlp.core.lib import ColorButton, SettingsTab from openlp.core.lib.ui import create_button from openlp.core.ui.media import get_media_players, set_media_players class MediaQCheckBox(QtWidgets.QCheckBox): """ MediaQCheckBox adds an extra property, player_name to the QCheckBox class. """ def set_player_name(self, name): """ Set the player name """ self.player_name = name class PlayerTab(SettingsTab): """ MediaTab is the Media settings tab in the settings dialog. """ def __init__(self, parent): """ Constructor """ self.media_players = Registry().get('media_controller').media_players self.saved_used_players = None self.icon_path = ':/media/multimedia-player.png' player_translated = translate('OpenLP.PlayerTab', 'Players') super(PlayerTab, self).__init__(parent, 'Players', player_translated) def setupUi(self): """ Set up the UI """ self.setObjectName('MediaTab') super(PlayerTab, self).setupUi() self.background_color_group_box = QtWidgets.QGroupBox(self.left_column) self.background_color_group_box.setObjectName('background_color_group_box') self.form_layout = QtWidgets.QFormLayout(self.background_color_group_box) self.form_layout.setObjectName('form_layout') self.color_layout = QtWidgets.QHBoxLayout() self.background_color_label = QtWidgets.QLabel(self.background_color_group_box) self.background_color_label.setObjectName('background_color_label') self.color_layout.addWidget(self.background_color_label) self.background_color_button = ColorButton(self.background_color_group_box) self.background_color_button.setObjectName('background_color_button') self.color_layout.addWidget(self.background_color_button) self.form_layout.addRow(self.color_layout) self.information_label = QtWidgets.QLabel(self.background_color_group_box) self.information_label.setObjectName('information_label') self.information_label.setWordWrap(True) self.form_layout.addRow(self.information_label) self.left_layout.addWidget(self.background_color_group_box) self.right_column.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) self.media_player_group_box = QtWidgets.QGroupBox(self.left_column) self.media_player_group_box.setObjectName('media_player_group_box') self.media_player_layout = QtWidgets.QVBoxLayout(self.media_player_group_box) self.media_player_layout.setObjectName('media_player_layout') self.player_check_boxes = {} self.left_layout.addWidget(self.media_player_group_box) self.player_order_group_box = QtWidgets.QGroupBox(self.left_column) self.player_order_group_box.setObjectName('player_order_group_box') self.player_order_layout = QtWidgets.QHBoxLayout(self.player_order_group_box) self.player_order_layout.setObjectName('player_order_layout') self.player_order_list_widget = QtWidgets.QListWidget(self.player_order_group_box) size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) size_policy.setHorizontalStretch(0) size_policy.setVerticalStretch(0) size_policy.setHeightForWidth(self.player_order_list_widget.sizePolicy().hasHeightForWidth()) self.player_order_list_widget.setSizePolicy(size_policy) self.player_order_list_widget.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAsNeeded) self.player_order_list_widget.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.player_order_list_widget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) self.player_order_list_widget.setObjectName('player_order_list_widget') self.player_order_layout.addWidget(self.player_order_list_widget) self.ordering_button_layout = QtWidgets.QVBoxLayout() self.ordering_button_layout.setObjectName('ordering_button_layout') self.ordering_button_layout.addStretch(1) self.ordering_up_button = create_button(self, 'ordering_up_button', role='up', click=self.on_up_button_clicked) self.ordering_down_button = create_button(self, 'ordering_down_button', role='down', click=self.on_down_button_clicked) self.ordering_button_layout.addWidget(self.ordering_up_button) self.ordering_button_layout.addWidget(self.ordering_down_button) self.ordering_button_layout.addStretch(1) self.player_order_layout.addLayout(self.ordering_button_layout) self.left_layout.addWidget(self.player_order_group_box) self.left_layout.addStretch() self.right_layout.addStretch() # Signals and slots self.background_color_button.colorChanged.connect(self.on_background_color_changed) def retranslateUi(self): """ Translate the UI on the fly """ self.media_player_group_box.setTitle(translate('OpenLP.PlayerTab', 'Available Media Players')) self.player_order_group_box.setTitle(translate('OpenLP.PlayerTab', 'Player Search Order')) self.background_color_group_box.setTitle(UiStrings().BackgroundColor) self.background_color_label.setText(UiStrings().DefaultColor) self.information_label.setText(translate('OpenLP.PlayerTab', 'Visible background for videos with aspect ratio different to screen.')) self.retranslate_players() def on_background_color_changed(self, color): """ Set the background color """ self.background_color = color def on_player_check_box_changed(self, check_state): """ Add or remove players depending on their status """ player = self.sender().player_name if check_state == QtCore.Qt.Checked: if player not in self.used_players: self.used_players.append(player) else: if player in self.used_players: self.used_players.remove(player) self.update_player_list() def update_player_list(self): """ Update the list of media players """ self.player_order_list_widget.clear() for player in self.used_players: if player in list(self.player_check_boxes.keys()): if len(self.used_players) == 1: # At least one media player has to stay active self.player_check_boxes['%s' % player].setEnabled(False) else: self.player_check_boxes['%s' % player].setEnabled(True) self.player_order_list_widget.addItem(self.media_players[str(player)].original_name) def on_up_button_clicked(self): """ Move a media player up in the order """ row = self.player_order_list_widget.currentRow() if row <= 0: return item = self.player_order_list_widget.takeItem(row) self.player_order_list_widget.insertItem(row - 1, item) self.player_order_list_widget.setCurrentRow(row - 1) self.used_players.insert(row - 1, self.used_players.pop(row)) def on_down_button_clicked(self): """ Move a media player down in the order """ row = self.player_order_list_widget.currentRow() if row == -1 or row > self.player_order_list_widget.count() - 1: return item = self.player_order_list_widget.takeItem(row) self.player_order_list_widget.insertItem(row + 1, item) self.player_order_list_widget.setCurrentRow(row + 1) self.used_players.insert(row + 1, self.used_players.pop(row)) def load(self): """ Load the settings """ if self.saved_used_players: self.used_players = self.saved_used_players self.used_players = get_media_players()[0] self.saved_used_players = self.used_players settings = Settings() settings.beginGroup(self.settings_section) self.update_player_list() self.background_color = settings.value('background color') self.initial_color = self.background_color settings.endGroup() self.background_color_button.color = self.background_color def save(self): """ Save the settings """ settings = Settings() settings.beginGroup(self.settings_section) settings.setValue('background color', self.background_color) settings.endGroup() old_players, override_player = get_media_players() if self.used_players != old_players: # clean old Media stuff set_media_players(self.used_players, override_player) self.settings_form.register_post_process('mediaitem_suffix_reset') self.settings_form.register_post_process('mediaitem_media_rebuild') self.settings_form.register_post_process('config_screen_changed') def post_set_up(self): """ Late setup for players as the MediaController has to be initialised first. """ for key, player in self.media_players.items(): player = self.media_players[key] checkbox = MediaQCheckBox(self.media_player_group_box) checkbox.setEnabled(player.available) checkbox.setObjectName(player.name + '_check_box') checkbox.setToolTip(player.get_info()) checkbox.set_player_name(player.name) self.player_check_boxes[player.name] = checkbox checkbox.stateChanged.connect(self.on_player_check_box_changed) self.media_player_layout.addWidget(checkbox) if player.available and player.name in self.used_players: checkbox.setChecked(True) else: checkbox.setChecked(False) self.update_player_list() self.retranslate_players() def retranslate_players(self): """ Translations for players is dependent on their setup as well """ for key in self.media_players and self.player_check_boxes: player = self.media_players[key] checkbox = self.player_check_boxes[player.name] checkbox.set_player_name(player.name) if player.available: checkbox.setText(player.display_name) else: checkbox_text = translate('OpenLP.PlayerTab', '%s (unavailable)') % player.display_name if player.name == 'vlc': checkbox_text += ' ' + translate('OpenLP.PlayerTab', 'NOTE: To use VLC you must install the %s version', 'Will insert "32bit" or "64bit"') % platform.architecture()[0] checkbox.setText(checkbox_text) OpenLP-2.4/openlp/core/ui/media/systemplayer.py0000644000175000017500000002655712657640340020624 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2014 Raoul Snyman # # Portions copyright (c) 2008-2014 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # # Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # # Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # # Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # # Frode Woldsund, Martin Zibricky, Patrick Zimmermann # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.systemplayer` contains the system (aka QtMultimedia) player component. """ import functools import logging import mimetypes from PyQt5 import QtCore, QtMultimedia, QtMultimediaWidgets from openlp.core.lib import translate from openlp.core.ui.media import MediaState from openlp.core.ui.media.mediaplayer import MediaPlayer log = logging.getLogger(__name__) ADDITIONAL_EXT = { 'audio/ac3': ['.ac3'], 'audio/flac': ['.flac'], 'audio/x-m4a': ['.m4a'], 'audio/midi': ['.mid', '.midi'], 'audio/x-mp3': ['.mp3'], 'audio/mpeg': ['.mp3', '.mp2', '.mpga', '.mpega', '.m4a'], 'audio/qcelp': ['.qcp'], 'audio/x-wma': ['.wma'], 'audio/x-ms-wma': ['.wma'], 'video/x-flv': ['.flv'], 'video/x-matroska': ['.mpv', '.mkv'], 'video/x-wmv': ['.wmv'], 'video/x-mpg': ['.mpg'], 'video/mpeg': ['.mp4', '.mts', '.mov'], 'video/x-ms-wmv': ['.wmv'] } class SystemPlayer(MediaPlayer): """ A specialised version of the MediaPlayer class, which provides a QtMultimedia display. """ def __init__(self, parent): """ Constructor """ super(SystemPlayer, self).__init__(parent, 'system') self.original_name = 'System' self.display_name = '&System' self.parent = parent self.additional_extensions = ADDITIONAL_EXT self.media_player = QtMultimedia.QMediaPlayer(None, QtMultimedia.QMediaPlayer.VideoSurface) mimetypes.init() media_service = self.media_player.service() log.info(media_service.__class__.__name__) # supportedMimeTypes doesn't return anything on Linux and Windows and # the mimetypes it returns on Mac OS X may not be playable. supported_codecs = self.media_player.supportedMimeTypes() for mime_type in supported_codecs: mime_type = str(mime_type) log.info(mime_type) if mime_type.startswith('audio/'): self._add_to_list(self.audio_extensions_list, mime_type) elif mime_type.startswith('video/'): self._add_to_list(self.video_extensions_list, mime_type) def _add_to_list(self, mime_type_list, mimetype): """ Add mimetypes to the provided list """ # Add all extensions which mimetypes provides us for supported types. extensions = mimetypes.guess_all_extensions(str(mimetype)) for extension in extensions: ext = '*%s' % extension if ext not in mime_type_list: mime_type_list.append(ext) log.info('MediaPlugin: %s extensions: %s' % (mimetype, ' '.join(extensions))) def setup(self, display): """ Set up the player widgets :param display: """ display.video_widget = QtMultimediaWidgets.QVideoWidget(display) display.video_widget.resize(display.size()) display.media_player = QtMultimedia.QMediaPlayer(display) display.media_player.setVideoOutput(display.video_widget) display.video_widget.raise_() display.video_widget.hide() self.has_own_widget = True def check_available(self): """ Check if the player is available """ return True def load(self, display): """ Load a video into the display :param display: """ log.debug('load vid in System Controller') controller = display.controller volume = controller.media_info.volume path = controller.media_info.file_info.absoluteFilePath() # Check if file is playable due to mimetype filters being nonexistent on Linux and Windows if self.check_media(path): display.media_player.setMedia(QtMultimedia.QMediaContent(QtCore.QUrl.fromLocalFile(path))) self.volume(display, volume) return True else: return False def resize(self, display): """ Resize the display :param display: """ display.video_widget.resize(display.size()) def play(self, display): """ Play the current media item :param display: """ log.info('Play the current item') controller = display.controller start_time = 0 if display.media_player.state() != QtMultimedia.QMediaPlayer.PausedState and \ controller.media_info.start_time > 0: start_time = controller.media_info.start_time display.media_player.play() if start_time > 0: self.seek(display, controller.media_info.start_time * 1000) self.volume(display, controller.media_info.volume) display.media_player.durationChanged.connect(functools.partial(self.set_duration, controller)) self.state = MediaState.Playing display.video_widget.raise_() return True def pause(self, display): """ Pause the current media item """ display.media_player.pause() if display.media_player.state() == QtMultimedia.QMediaPlayer.PausedState: self.state = MediaState.Paused def stop(self, display): """ Stop the current media item """ display.media_player.blockSignals(True) display.media_player.durationChanged.disconnect() display.media_player.blockSignals(False) display.media_player.stop() self.set_visible(display, False) self.state = MediaState.Stopped def volume(self, display, vol): """ Set the volume """ if display.has_audio: display.media_player.setVolume(vol) def seek(self, display, seek_value): """ Go to a particular point in the current media item """ display.media_player.setPosition(seek_value) def reset(self, display): """ Reset the media player """ display.media_player.stop() display.media_player.setMedia(QtMultimedia.QMediaContent()) self.set_visible(display, False) display.video_widget.setVisible(False) self.state = MediaState.Off def set_visible(self, display, status): """ Set the visibility of the widget """ if self.has_own_widget: display.video_widget.setVisible(status) @staticmethod def set_duration(controller, duration): controller.media_info.length = int(duration / 1000) controller.seek_slider.setMaximum(controller.media_info.length * 1000) def update_ui(self, display): """ Update the UI """ if display.media_player.state() == QtMultimedia.QMediaPlayer.PausedState and self.state != MediaState.Paused: self.stop(display) controller = display.controller if controller.media_info.end_time > 0: if display.media_player.position() > controller.media_info.end_time * 1000: self.stop(display) self.set_visible(display, False) if not controller.seek_slider.isSliderDown(): controller.seek_slider.blockSignals(True) controller.seek_slider.setSliderPosition(display.media_player.position()) controller.seek_slider.blockSignals(False) def get_media_display_css(self): """ Add css style sheets to htmlbuilder """ return '' def get_info(self): """ Return some info about this player """ return (translate('Media.player', 'This media player uses your operating system ' 'to provide media capabilities.') + '
' + translate('Media.player', 'Audio') + '
' + str(self.audio_extensions_list) + '
' + translate('Media.player', 'Video') + '
' + str(self.video_extensions_list) + '
') def check_media(self, path): """ Check if a file can be played Uses a separate QMediaPlayer in a thread :param path: Path to file to be checked :return: True if file can be played otherwise False """ thread = QtCore.QThread() check_media_player = CheckMedia(path) check_media_player.setVolume(0) check_media_player.moveToThread(thread) check_media_player.finished.connect(thread.quit) thread.started.connect(check_media_player.play) thread.start() while thread.isRunning(): self.application.processEvents() return check_media_player.result class CheckMedia(QtMultimedia.QMediaPlayer): """ Class used to check if a media file is playable """ finished = QtCore.pyqtSignal() def __init__(self, path): super(CheckMedia, self).__init__(None, QtMultimedia.QMediaPlayer.VideoSurface) self.result = None self.error.connect(functools.partial(self.signals, 'error')) self.mediaStatusChanged.connect(functools.partial(self.signals, 'media')) self.setMedia(QtMultimedia.QMediaContent(QtCore.QUrl.fromLocalFile(path))) def signals(self, origin, status): if origin == 'media' and status == self.BufferedMedia: self.result = True self.stop() self.finished.emit() elif origin == 'error' and status != self.NoError: self.result = False self.stop() self.finished.emit() OpenLP-2.4/openlp/core/ui/media/__init__.py0000644000175000017500000001172512657640340017611 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media` module contains classes and objects for media player integration. """ import logging from openlp.core.common import Settings from PyQt5 import QtCore log = logging.getLogger(__name__ + '.__init__') class MediaState(object): """ An enumeration for possible States of the Media Player """ Off = 0 Loaded = 1 Playing = 2 Paused = 3 Stopped = 4 class MediaType(object): """ An enumeration of possible Media Types """ Unused = 0 Audio = 1 Video = 2 CD = 3 DVD = 4 Folder = 5 class MediaInfo(object): """ This class hold the media related info """ file_info = None volume = 100 is_flash = False is_background = False length = 0 start_time = 0 end_time = 0 title_track = 0 audio_track = 0 subtitle_track = 0 media_type = MediaType() def get_media_players(): """ This method extracts the configured media players and overridden player from the settings. """ log.debug('get_media_players') saved_players = Settings().value('media/players') reg_ex = QtCore.QRegExp(".*\[(.*)\].*") if Settings().value('media/override player') == QtCore.Qt.Checked: if reg_ex.exactMatch(saved_players): overridden_player = '%s' % reg_ex.cap(1) else: overridden_player = 'auto' else: overridden_player = '' saved_players_list = saved_players.replace('[', '').replace(']', '').split(',') if saved_players else [] return saved_players_list, overridden_player def set_media_players(players_list, overridden_player='auto'): """ This method saves the configured media players and overridden player to the settings :param players_list: A list with all active media players. :param overridden_player: Here an special media player is chosen for all media actions. """ log.debug('set_media_players') players = ','.join(players_list) if Settings().value('media/override player') == QtCore.Qt.Checked and overridden_player != 'auto': players = players.replace(overridden_player, '[%s]' % overridden_player) Settings().setValue('media/players', players) def parse_optical_path(input): """ Split the optical path info. :param input: The string to parse :return: The elements extracted from the string: filename, title, audio_track, subtitle_track, start, end """ log.debug('parse_optical_path, about to parse: "%s"' % input) clip_info = input.split(sep=':') title = int(clip_info[1]) audio_track = int(clip_info[2]) subtitle_track = int(clip_info[3]) start = float(clip_info[4]) end = float(clip_info[5]) clip_name = clip_info[6] filename = clip_info[7] # Windows path usually contains a colon after the drive letter if len(clip_info) > 8: filename += ':' + clip_info[8] return filename, title, audio_track, subtitle_track, start, end, clip_name def format_milliseconds(milliseconds): """ Format milliseconds into a human readable time string. :param milliseconds: Milliseconds to format :return: Time string in format: hh.mm.ss,ttt """ seconds, millis = divmod(milliseconds, 1000) minutes, seconds = divmod(seconds, 60) hours, minutes = divmod(minutes, 60) return "%02d:%02d:%02d,%03d" % (hours, minutes, seconds, millis) from .mediacontroller import MediaController from .playertab import PlayerTab __all__ = ['MediaController', 'PlayerTab'] OpenLP-2.4/openlp/core/ui/media/mediaplayer.py0000644000175000017500000001034012657640340020336 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.mediaplayer` module contains the MediaPlayer class. """ from openlp.core.common import RegistryProperties from openlp.core.ui.media import MediaState class MediaPlayer(RegistryProperties): """ This is the base class media Player class to provide OpenLP with a pluggable media display framework. """ def __init__(self, parent, name='media_player'): """ Constructor """ self.parent = parent self.name = name self.available = self.check_available() self.is_active = False self.can_background = False self.can_folder = False self.state = MediaState.Off self.has_own_widget = False self.audio_extensions_list = [] self.video_extensions_list = [] def check_available(self): """ Player is available on this machine """ return False def setup(self, display): """ Create the related widgets for the current display """ pass def load(self, display): """ Load a new media file and check if it is valid """ return True def resize(self, display): """ If the main display size or position is changed, the media widgets should also resized """ pass def play(self, display): """ Starts playing of current Media File """ pass def pause(self, display): """ Pause of current Media File """ pass def stop(self, display): """ Stop playing of current Media File """ pass def volume(self, display, vol): """ Change volume of current Media File """ pass def seek(self, display, seek_value): """ Change playing position of current Media File """ pass def reset(self, display): """ Remove the current loaded video """ pass def set_visible(self, display, status): """ Show/Hide the media widgets """ pass def update_ui(self, display): """ Do some ui related stuff (e.g. update the seek slider) """ pass def get_media_display_css(self): """ Add css style sheets to htmlbuilder """ return '' def get_media_display_javascript(self): """ Add javascript functions to htmlbuilder """ return '' def get_media_display_html(self): """ Add html code to htmlbuilder """ return '' def get_info(self): """ Returns Information about the player """ return '' OpenLP-2.4/openlp/core/ui/media/vendor/0000755000175000017500000000000012663134435016767 5ustar raoulraoulOpenLP-2.4/openlp/core/ui/media/vendor/__init__.py0000644000175000017500000000325712657640340021107 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.vendor` module contains any scripts or libraries from 3rd party vendors which are required to make certain media modules work. """ OpenLP-2.4/openlp/core/ui/media/vendor/vlc.py0000644000175000017500000103704712657640340020141 0ustar raoulraoul#! /usr/bin/python # Python ctypes bindings for VLC # # Copyright (C) 2009-2012 the VideoLAN team # $Id: $ # # Authors: Olivier Aubert # Jean Brouwers # Geoff Salmon # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of the # License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA """This module provides bindings for the LibVLC public API, see U{http://wiki.videolan.org/LibVLC}. You can find the documentation and a README file with some examples at U{http://www.advene.org/download/python-ctypes/}. Basically, the most important class is L{Instance}, which is used to create a libvlc instance. From this instance, you then create L{MediaPlayer} and L{MediaListPlayer} instances. Alternatively, you may create instances of the L{MediaPlayer} and L{MediaListPlayer} class directly and an instance of L{Instance} will be implicitly created. The latter can be obtained using the C{get_instance} method of L{MediaPlayer} and L{MediaListPlayer}. """ import ctypes from ctypes.util import find_library import os import sys import functools # Used by EventManager in override.py from inspect import getargspec __version__ = "N/A" build_date = "Mon Jan 25 19:40:05 2016" # The libvlc doc states that filenames are expected to be in UTF8, do # not rely on sys.getfilesystemencoding() which will be confused, # esp. on windows. DEFAULT_ENCODING = 'utf-8' if sys.version_info[0] > 2: str = str unicode = str bytes = bytes basestring = (str, bytes) PYTHON3 = True def str_to_bytes(s): """Translate string or bytes to bytes. """ if isinstance(s, str): return bytes(s, DEFAULT_ENCODING) else: return s def bytes_to_str(b): """Translate bytes to string. """ if isinstance(b, bytes): return b.decode(DEFAULT_ENCODING) else: return b else: str = str unicode = unicode bytes = str basestring = basestring PYTHON3 = False def str_to_bytes(s): """Translate string or bytes to bytes. """ if isinstance(s, unicode): return s.encode(DEFAULT_ENCODING) else: return s def bytes_to_str(b): """Translate bytes to unicode string. """ if isinstance(b, str): return unicode(b, DEFAULT_ENCODING) else: return b # Internal guard to prevent internal classes to be directly # instanciated. _internal_guard = object() def find_lib(): dll = None plugin_path = None if sys.platform.startswith('linux'): p = find_library('vlc') try: dll = ctypes.CDLL(p) except OSError: # may fail dll = ctypes.CDLL('libvlc.so.5') elif sys.platform.startswith('win'): p = find_library('libvlc.dll') if p is None: try: # some registry settings # leaner than win32api, win32con if PYTHON3: import winreg as w else: import _winreg as w for r in w.HKEY_LOCAL_MACHINE, w.HKEY_CURRENT_USER: try: r = w.OpenKey(r, 'Software\\VideoLAN\\VLC') plugin_path, _ = w.QueryValueEx(r, 'InstallDir') w.CloseKey(r) break except w.error: pass except ImportError: # no PyWin32 pass if plugin_path is None: # try some standard locations. for p in ('Program Files\\VideoLan\\', 'VideoLan\\', 'Program Files\\', ''): p = 'C:\\' + p + 'VLC\\libvlc.dll' if os.path.exists(p): plugin_path = os.path.dirname(p) break if plugin_path is not None: # try loading p = os.getcwd() os.chdir(plugin_path) # if chdir failed, this will raise an exception dll = ctypes.CDLL('libvlc.dll') # restore cwd after dll has been loaded os.chdir(p) else: # may fail dll = ctypes.CDLL('libvlc.dll') else: plugin_path = os.path.dirname(p) dll = ctypes.CDLL(p) elif sys.platform.startswith('darwin'): # FIXME: should find a means to configure path d = '/Applications/VLC.app/Contents/MacOS/' p = d + 'lib/libvlc.dylib' if os.path.exists(p): dll = ctypes.CDLL(p) d += 'modules' if os.path.isdir(d): plugin_path = d else: # hope, some PATH is set... dll = ctypes.CDLL('libvlc.dylib') else: raise NotImplementedError('%s: %s not supported' % (sys.argv[0], sys.platform)) return (dll, plugin_path) # plugin_path used on win32 and MacOS in override.py dll, plugin_path = find_lib() class VLCException(Exception): """Exception raised by libvlc methods. """ pass try: _Ints = (int, long) except NameError: # no long in Python 3+ _Ints = int _Seqs = (list, tuple) # Used for handling *event_manager() methods. class memoize_parameterless(object): """Decorator. Caches a parameterless method's return value each time it is called. If called later with the same arguments, the cached value is returned (not reevaluated). Adapted from https://wiki.python.org/moin/PythonDecoratorLibrary """ def __init__(self, func): self.func = func self._cache = {} def __call__(self, obj): try: return self._cache[obj] except KeyError: v = self._cache[obj] = self.func(obj) return v def __repr__(self): """Return the function's docstring. """ return self.func.__doc__ def __get__(self, obj, objtype): """Support instance methods. """ return functools.partial(self.__call__, obj) # Default instance. It is used to instanciate classes directly in the # OO-wrapper. _default_instance = None def get_default_instance(): """Return the default VLC.Instance. """ global _default_instance if _default_instance is None: _default_instance = Instance() return _default_instance _Cfunctions = {} # from LibVLC __version__ _Globals = globals() # sys.modules[__name__].__dict__ def _Cfunction(name, flags, errcheck, *types): """(INTERNAL) New ctypes function binding. """ if hasattr(dll, name) and name in _Globals: p = ctypes.CFUNCTYPE(*types) f = p((name, dll), flags) if errcheck is not None: f.errcheck = errcheck # replace the Python function # in this module, but only when # running as python -O or -OO if __debug__: _Cfunctions[name] = f else: _Globals[name] = f return f raise NameError('no function %r' % (name,)) def _Cobject(cls, ctype): """(INTERNAL) New instance from ctypes. """ o = object.__new__(cls) o._as_parameter_ = ctype return o def _Constructor(cls, ptr=_internal_guard): """(INTERNAL) New wrapper from ctypes. """ if ptr == _internal_guard: raise VLCException("(INTERNAL) ctypes class. You should get references for this class through methods of the LibVLC API.") if ptr is None or ptr == 0: return None return _Cobject(cls, ctypes.c_void_p(ptr)) class _Cstruct(ctypes.Structure): """(INTERNAL) Base class for ctypes structures. """ _fields_ = [] # list of 2-tuples ('name', ctyptes.) def __str__(self): l = [' %s:\t%s' % (n, getattr(self, n)) for n, _ in self._fields_] return '\n'.join([self.__class__.__name__] + l) def __repr__(self): return '%s.%s' % (self.__class__.__module__, self) class _Ctype(object): """(INTERNAL) Base class for ctypes. """ @staticmethod def from_param(this): # not self """(INTERNAL) ctypes parameter conversion method. """ if this is None: return None return this._as_parameter_ class ListPOINTER(object): """Just like a POINTER but accept a list of ctype as an argument. """ def __init__(self, etype): self.etype = etype def from_param(self, param): if isinstance(param, _Seqs): return (self.etype * len(param))(*param) # errcheck functions for some native functions. def string_result(result, func, arguments): """Errcheck function. Returns a string and frees the original pointer. It assumes the result is a char *. """ if result: # make a python string copy s = bytes_to_str(ctypes.string_at(result)) # free original string ptr libvlc_free(result) return s return None def class_result(classname): """Errcheck function. Returns a function that creates the specified class. """ def wrap_errcheck(result, func, arguments): if result is None: return None return classname(result) return wrap_errcheck # Wrapper for the opaque struct libvlc_log_t class Log(ctypes.Structure): pass Log_ptr = ctypes.POINTER(Log) # FILE* ctypes wrapper, copied from # http://svn.python.org/projects/ctypes/trunk/ctypeslib/ctypeslib/contrib/pythonhdr.py class FILE(ctypes.Structure): pass FILE_ptr = ctypes.POINTER(FILE) if PYTHON3: PyFile_FromFd = ctypes.pythonapi.PyFile_FromFd PyFile_FromFd.restype = ctypes.py_object PyFile_FromFd.argtypes = [ctypes.c_int, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int ] PyFile_AsFd = ctypes.pythonapi.PyObject_AsFileDescriptor PyFile_AsFd.restype = ctypes.c_int PyFile_AsFd.argtypes = [ctypes.py_object] else: PyFile_FromFile = ctypes.pythonapi.PyFile_FromFile PyFile_FromFile.restype = ctypes.py_object PyFile_FromFile.argtypes = [FILE_ptr, ctypes.c_char_p, ctypes.c_char_p, ctypes.CFUNCTYPE(ctypes.c_int, FILE_ptr)] PyFile_AsFile = ctypes.pythonapi.PyFile_AsFile PyFile_AsFile.restype = FILE_ptr PyFile_AsFile.argtypes = [ctypes.py_object] # Generated enum types # class _Enum(ctypes.c_uint): '''(INTERNAL) Base class ''' _enum_names_ = {} def __str__(self): n = self._enum_names_.get(self.value, '') or ('FIXME_(%r)' % (self.value,)) return '.'.join((self.__class__.__name__, n)) def __hash__(self): return self.value def __repr__(self): return '.'.join((self.__class__.__module__, self.__str__())) def __eq__(self, other): return ( (isinstance(other, _Enum) and self.value == other.value) or (isinstance(other, _Ints) and self.value == other) ) def __ne__(self, other): return not self.__eq__(other) class LogLevel(_Enum): '''Logging messages level. \note future libvlc versions may define new levels. ''' _enum_names_ = { 0: 'DEBUG', 2: 'NOTICE', 3: 'WARNING', 4: 'ERROR', } LogLevel.DEBUG = LogLevel(0) LogLevel.ERROR = LogLevel(4) LogLevel.NOTICE = LogLevel(2) LogLevel.WARNING = LogLevel(3) class EventType(_Enum): '''Event types. ''' _enum_names_ = { 0: 'MediaMetaChanged', 1: 'MediaSubItemAdded', 2: 'MediaDurationChanged', 3: 'MediaParsedChanged', 4: 'MediaFreed', 5: 'MediaStateChanged', 6: 'MediaSubItemTreeAdded', 0x100: 'MediaPlayerMediaChanged', 257: 'MediaPlayerNothingSpecial', 258: 'MediaPlayerOpening', 259: 'MediaPlayerBuffering', 260: 'MediaPlayerPlaying', 261: 'MediaPlayerPaused', 262: 'MediaPlayerStopped', 263: 'MediaPlayerForward', 264: 'MediaPlayerBackward', 265: 'MediaPlayerEndReached', 266: 'MediaPlayerEncounteredError', 267: 'MediaPlayerTimeChanged', 268: 'MediaPlayerPositionChanged', 269: 'MediaPlayerSeekableChanged', 270: 'MediaPlayerPausableChanged', 271: 'MediaPlayerTitleChanged', 272: 'MediaPlayerSnapshotTaken', 273: 'MediaPlayerLengthChanged', 274: 'MediaPlayerVout', 275: 'MediaPlayerScrambledChanged', 0x200: 'MediaListItemAdded', 513: 'MediaListWillAddItem', 514: 'MediaListItemDeleted', 515: 'MediaListWillDeleteItem', 0x300: 'MediaListViewItemAdded', 769: 'MediaListViewWillAddItem', 770: 'MediaListViewItemDeleted', 771: 'MediaListViewWillDeleteItem', 0x400: 'MediaListPlayerPlayed', 1025: 'MediaListPlayerNextItemSet', 1026: 'MediaListPlayerStopped', 0x500: 'MediaDiscovererStarted', 1281: 'MediaDiscovererEnded', 0x600: 'VlmMediaAdded', 1537: 'VlmMediaRemoved', 1538: 'VlmMediaChanged', 1539: 'VlmMediaInstanceStarted', 1540: 'VlmMediaInstanceStopped', 1541: 'VlmMediaInstanceStatusInit', 1542: 'VlmMediaInstanceStatusOpening', 1543: 'VlmMediaInstanceStatusPlaying', 1544: 'VlmMediaInstanceStatusPause', 1545: 'VlmMediaInstanceStatusEnd', 1546: 'VlmMediaInstanceStatusError', } EventType.MediaDiscovererEnded = EventType(1281) EventType.MediaDiscovererStarted = EventType(0x500) EventType.MediaDurationChanged = EventType(2) EventType.MediaFreed = EventType(4) EventType.MediaListItemAdded = EventType(0x200) EventType.MediaListItemDeleted = EventType(514) EventType.MediaListPlayerNextItemSet = EventType(1025) EventType.MediaListPlayerPlayed = EventType(0x400) EventType.MediaListPlayerStopped = EventType(1026) EventType.MediaListViewItemAdded = EventType(0x300) EventType.MediaListViewItemDeleted = EventType(770) EventType.MediaListViewWillAddItem = EventType(769) EventType.MediaListViewWillDeleteItem = EventType(771) EventType.MediaListWillAddItem = EventType(513) EventType.MediaListWillDeleteItem = EventType(515) EventType.MediaMetaChanged = EventType(0) EventType.MediaParsedChanged = EventType(3) EventType.MediaPlayerBackward = EventType(264) EventType.MediaPlayerBuffering = EventType(259) EventType.MediaPlayerEncounteredError = EventType(266) EventType.MediaPlayerEndReached = EventType(265) EventType.MediaPlayerForward = EventType(263) EventType.MediaPlayerLengthChanged = EventType(273) EventType.MediaPlayerMediaChanged = EventType(0x100) EventType.MediaPlayerNothingSpecial = EventType(257) EventType.MediaPlayerOpening = EventType(258) EventType.MediaPlayerPausableChanged = EventType(270) EventType.MediaPlayerPaused = EventType(261) EventType.MediaPlayerPlaying = EventType(260) EventType.MediaPlayerPositionChanged = EventType(268) EventType.MediaPlayerScrambledChanged = EventType(275) EventType.MediaPlayerSeekableChanged = EventType(269) EventType.MediaPlayerSnapshotTaken = EventType(272) EventType.MediaPlayerStopped = EventType(262) EventType.MediaPlayerTimeChanged = EventType(267) EventType.MediaPlayerTitleChanged = EventType(271) EventType.MediaPlayerVout = EventType(274) EventType.MediaStateChanged = EventType(5) EventType.MediaSubItemAdded = EventType(1) EventType.MediaSubItemTreeAdded = EventType(6) EventType.VlmMediaAdded = EventType(0x600) EventType.VlmMediaChanged = EventType(1538) EventType.VlmMediaInstanceStarted = EventType(1539) EventType.VlmMediaInstanceStatusEnd = EventType(1545) EventType.VlmMediaInstanceStatusError = EventType(1546) EventType.VlmMediaInstanceStatusInit = EventType(1541) EventType.VlmMediaInstanceStatusOpening = EventType(1542) EventType.VlmMediaInstanceStatusPause = EventType(1544) EventType.VlmMediaInstanceStatusPlaying = EventType(1543) EventType.VlmMediaInstanceStopped = EventType(1540) EventType.VlmMediaRemoved = EventType(1537) class Meta(_Enum): '''Meta data types. ''' _enum_names_ = { 0: 'Title', 1: 'Artist', 2: 'Genre', 3: 'Copyright', 4: 'Album', 5: 'TrackNumber', 6: 'Description', 7: 'Rating', 8: 'Date', 9: 'Setting', 10: 'URL', 11: 'Language', 12: 'NowPlaying', 13: 'Publisher', 14: 'EncodedBy', 15: 'ArtworkURL', 16: 'TrackID', 17: 'TrackTotal', 18: 'Director', 19: 'Season', 20: 'Episode', 21: 'ShowName', 22: 'Actors', } Meta.Actors = Meta(22) Meta.Album = Meta(4) Meta.Artist = Meta(1) Meta.ArtworkURL = Meta(15) Meta.Copyright = Meta(3) Meta.Date = Meta(8) Meta.Description = Meta(6) Meta.Director = Meta(18) Meta.EncodedBy = Meta(14) Meta.Episode = Meta(20) Meta.Genre = Meta(2) Meta.Language = Meta(11) Meta.NowPlaying = Meta(12) Meta.Publisher = Meta(13) Meta.Rating = Meta(7) Meta.Season = Meta(19) Meta.Setting = Meta(9) Meta.ShowName = Meta(21) Meta.Title = Meta(0) Meta.TrackID = Meta(16) Meta.TrackNumber = Meta(5) Meta.TrackTotal = Meta(17) Meta.URL = Meta(10) class State(_Enum): '''Note the order of libvlc_state_t enum must match exactly the order of See mediacontrol_playerstatus, See input_state_e enums, and videolan.libvlc.state (at bindings/cil/src/media.cs). expected states by web plugins are: idle/close=0, opening=1, buffering=2, playing=3, paused=4, stopping=5, ended=6, error=7. ''' _enum_names_ = { 0: 'NothingSpecial', 1: 'Opening', 2: 'Buffering', 3: 'Playing', 4: 'Paused', 5: 'Stopped', 6: 'Ended', 7: 'Error', } State.Buffering = State(2) State.Ended = State(6) State.Error = State(7) State.NothingSpecial = State(0) State.Opening = State(1) State.Paused = State(4) State.Playing = State(3) State.Stopped = State(5) class TrackType(_Enum): '''N/A ''' _enum_names_ = { -1: 'unknown', 0: 'audio', 1: 'video', 2: 'text', } TrackType.audio = TrackType(0) TrackType.text = TrackType(2) TrackType.unknown = TrackType(-1) TrackType.video = TrackType(1) class PlaybackMode(_Enum): '''Defines playback modes for playlist. ''' _enum_names_ = { 0: 'default', 1: 'loop', 2: 'repeat', } PlaybackMode.default = PlaybackMode(0) PlaybackMode.loop = PlaybackMode(1) PlaybackMode.repeat = PlaybackMode(2) class VideoMarqueeOption(_Enum): '''Marq options definition. ''' _enum_names_ = { 0: 'Enable', 1: 'Text', 2: 'Color', 3: 'Opacity', 4: 'Position', 5: 'Refresh', 6: 'Size', 7: 'Timeout', 8: 'marquee_X', 9: 'marquee_Y', } VideoMarqueeOption.Color = VideoMarqueeOption(2) VideoMarqueeOption.Enable = VideoMarqueeOption(0) VideoMarqueeOption.Opacity = VideoMarqueeOption(3) VideoMarqueeOption.Position = VideoMarqueeOption(4) VideoMarqueeOption.Refresh = VideoMarqueeOption(5) VideoMarqueeOption.Size = VideoMarqueeOption(6) VideoMarqueeOption.Text = VideoMarqueeOption(1) VideoMarqueeOption.Timeout = VideoMarqueeOption(7) VideoMarqueeOption.marquee_X = VideoMarqueeOption(8) VideoMarqueeOption.marquee_Y = VideoMarqueeOption(9) class NavigateMode(_Enum): '''Navigation mode. ''' _enum_names_ = { 0: 'activate', 1: 'up', 2: 'down', 3: 'left', 4: 'right', } NavigateMode.activate = NavigateMode(0) NavigateMode.down = NavigateMode(2) NavigateMode.left = NavigateMode(3) NavigateMode.right = NavigateMode(4) NavigateMode.up = NavigateMode(1) class Position(_Enum): '''Enumeration of values used to set position (e.g. of video title). ''' _enum_names_ = { -1: 'disable', 0: 'center', 1: 'left', 2: 'right', 3: 'top', 4: 'left', 5: 'right', 6: 'bottom', 7: 'left', 8: 'right', } Position.bottom = Position(6) Position.center = Position(0) Position.disable = Position(-1) Position.left = Position(1) Position.left = Position(4) Position.left = Position(7) Position.right = Position(2) Position.right = Position(5) Position.right = Position(8) Position.top = Position(3) class VideoLogoOption(_Enum): '''Option values for libvlc_video_{get,set}_logo_{int,string}. ''' _enum_names_ = { 0: 'enable', 1: 'file', 2: 'logo_x', 3: 'logo_y', 4: 'delay', 5: 'repeat', 6: 'opacity', 7: 'position', } VideoLogoOption.delay = VideoLogoOption(4) VideoLogoOption.enable = VideoLogoOption(0) VideoLogoOption.file = VideoLogoOption(1) VideoLogoOption.logo_x = VideoLogoOption(2) VideoLogoOption.logo_y = VideoLogoOption(3) VideoLogoOption.opacity = VideoLogoOption(6) VideoLogoOption.position = VideoLogoOption(7) VideoLogoOption.repeat = VideoLogoOption(5) class VideoAdjustOption(_Enum): '''Option values for libvlc_video_{get,set}_adjust_{int,float,bool}. ''' _enum_names_ = { 0: 'Enable', 1: 'Contrast', 2: 'Brightness', 3: 'Hue', 4: 'Saturation', 5: 'Gamma', } VideoAdjustOption.Brightness = VideoAdjustOption(2) VideoAdjustOption.Contrast = VideoAdjustOption(1) VideoAdjustOption.Enable = VideoAdjustOption(0) VideoAdjustOption.Gamma = VideoAdjustOption(5) VideoAdjustOption.Hue = VideoAdjustOption(3) VideoAdjustOption.Saturation = VideoAdjustOption(4) class AudioOutputDeviceTypes(_Enum): '''Audio device types. ''' _enum_names_ = { -1: 'Error', 1: 'Mono', 2: 'Stereo', 4: '_2F2R', 5: '_3F2R', 6: '_5_1', 7: '_6_1', 8: '_7_1', 10: 'SPDIF', } AudioOutputDeviceTypes.Error = AudioOutputDeviceTypes(-1) AudioOutputDeviceTypes.Mono = AudioOutputDeviceTypes(1) AudioOutputDeviceTypes.SPDIF = AudioOutputDeviceTypes(10) AudioOutputDeviceTypes.Stereo = AudioOutputDeviceTypes(2) AudioOutputDeviceTypes._2F2R = AudioOutputDeviceTypes(4) AudioOutputDeviceTypes._3F2R = AudioOutputDeviceTypes(5) AudioOutputDeviceTypes._5_1 = AudioOutputDeviceTypes(6) AudioOutputDeviceTypes._6_1 = AudioOutputDeviceTypes(7) AudioOutputDeviceTypes._7_1 = AudioOutputDeviceTypes(8) class AudioOutputChannel(_Enum): '''Audio channels. ''' _enum_names_ = { -1: 'Error', 1: 'Stereo', 2: 'RStereo', 3: 'Left', 4: 'Right', 5: 'Dolbys', } AudioOutputChannel.Dolbys = AudioOutputChannel(5) AudioOutputChannel.Error = AudioOutputChannel(-1) AudioOutputChannel.Left = AudioOutputChannel(3) AudioOutputChannel.RStereo = AudioOutputChannel(2) AudioOutputChannel.Right = AudioOutputChannel(4) AudioOutputChannel.Stereo = AudioOutputChannel(1) class Callback(ctypes.c_void_p): """Callback function notification \param p_event the event triggering the callback """ pass class LogCb(ctypes.c_void_p): """Callback prototype for LibVLC log message handler. \param data data pointer as given to L{libvlc_log_set}() \param level message level (@ref enum libvlc_log_level) \param ctx message context (meta-information about the message) \param fmt printf() format string (as defined by ISO C11) \param args variable argument list for the format \note Log message handlers must be thread-safe. \warning The message context pointer, the format string parameters and the variable arguments are only valid until the callback returns. """ pass class VideoLockCb(ctypes.c_void_p): """Callback prototype to allocate and lock a picture buffer. Whenever a new video frame needs to be decoded, the lock callback is invoked. Depending on the video chroma, one or three pixel planes of adequate dimensions must be returned via the second parameter. Those planes must be aligned on 32-bytes boundaries. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param planes start address of the pixel planes (LibVLC allocates the array of void pointers, this callback must initialize the array) [OUT] \return a private pointer for the display and unlock callbacks to identify the picture buffers """ pass class VideoUnlockCb(ctypes.c_void_p): """Callback prototype to unlock a picture buffer. When the video frame decoding is complete, the unlock callback is invoked. This callback might not be needed at all. It is only an indication that the application can now read the pixel values if it needs to. \warning A picture buffer is unlocked after the picture is decoded, but before the picture is displayed. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] \param planes pixel planes as defined by the @ref libvlc_video_lock_cb callback (this parameter is only for convenience) [IN] """ pass class VideoDisplayCb(ctypes.c_void_p): """Callback prototype to display a picture. When the video frame needs to be shown, as determined by the media playback clock, the display callback is invoked. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] """ pass class VideoFormatCb(ctypes.c_void_p): """Callback prototype to configure picture buffers format. This callback gets the format of the video as output by the video decoder and the chain of video filters (if any). It can opt to change any parameter as it needs. In that case, LibVLC will attempt to convert the video format (rescaling and chroma conversion) but these operations can be CPU intensive. \param opaque pointer to the private pointer passed to L{libvlc_video_set_callbacks}() [IN/OUT] \param chroma pointer to the 4 bytes video format identifier [IN/OUT] \param width pointer to the pixel width [IN/OUT] \param height pointer to the pixel height [IN/OUT] \param pitches table of scanline pitches in bytes for each pixel plane (the table is allocated by LibVLC) [OUT] \param lines table of scanlines count for each plane [OUT] \return the number of picture buffers allocated, 0 indicates failure \note For each pixels plane, the scanline pitch must be bigger than or equal to the number of bytes per pixel multiplied by the pixel width. Similarly, the number of scanlines must be bigger than of equal to the pixel height. Furthermore, we recommend that pitches and lines be multiple of 32 to not break assumption that might be made by various optimizations in the video decoders, video filters and/or video converters. """ pass class VideoCleanupCb(ctypes.c_void_p): """Callback prototype to configure picture buffers format. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() (and possibly modified by @ref libvlc_video_format_cb) [IN] """ pass class AudioPlayCb(ctypes.c_void_p): """Callback prototype for audio playback. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param samples pointer to the first audio sample to play back [IN] \param count number of audio samples to play back \param pts expected play time stamp (see libvlc_delay()) """ pass class AudioPauseCb(ctypes.c_void_p): """Callback prototype for audio pause. \note The pause callback is never called if the audio is already paused. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param pts time stamp of the pause request (should be elapsed already) """ pass class AudioResumeCb(ctypes.c_void_p): """Callback prototype for audio resumption (i.e. restart from pause). \note The resume callback is never called if the audio is not paused. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param pts time stamp of the resumption request (should be elapsed already) """ pass class AudioFlushCb(ctypes.c_void_p): """Callback prototype for audio buffer flush (i.e. discard all pending buffers and stop playback as soon as possible). \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] """ pass class AudioDrainCb(ctypes.c_void_p): """Callback prototype for audio buffer drain (i.e. wait for pending buffers to be played). \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] """ pass class AudioSetVolumeCb(ctypes.c_void_p): """Callback prototype for audio volume change. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param volume software volume (1. = nominal, 0. = mute) \param mute muted flag """ pass class AudioSetupCb(ctypes.c_void_p): """Callback prototype to setup the audio playback. This is called when the media player needs to create a new audio output. \param opaque pointer to the data pointer passed to L{libvlc_audio_set_callbacks}() [IN/OUT] \param format 4 bytes sample format [IN/OUT] \param rate sample rate [IN/OUT] \param channels channels count [IN/OUT] \return 0 on success, anything else to skip audio playback """ pass class AudioCleanupCb(ctypes.c_void_p): """Callback prototype for audio playback cleanup. This is called when the media player no longer needs an audio output. \param opaque data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] """ pass class CallbackDecorators(object): "Class holding various method decorators for callback functions." Callback = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p) Callback.__doc__ = '''Callback function notification \param p_event the event triggering the callback ''' LogCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int, Log_ptr, ctypes.c_char_p, ctypes.c_void_p) LogCb.__doc__ = '''Callback prototype for LibVLC log message handler. \param data data pointer as given to L{libvlc_log_set}() \param level message level (@ref enum libvlc_log_level) \param ctx message context (meta-information about the message) \param fmt printf() format string (as defined by ISO C11) \param args variable argument list for the format \note Log message handlers must be thread-safe. \warning The message context pointer, the format string parameters and the variable arguments are only valid until the callback returns. ''' VideoLockCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ListPOINTER(ctypes.c_void_p)) VideoLockCb.__doc__ = '''Callback prototype to allocate and lock a picture buffer. Whenever a new video frame needs to be decoded, the lock callback is invoked. Depending on the video chroma, one or three pixel planes of adequate dimensions must be returned via the second parameter. Those planes must be aligned on 32-bytes boundaries. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param planes start address of the pixel planes (LibVLC allocates the array of void pointers, this callback must initialize the array) [OUT] \return a private pointer for the display and unlock callbacks to identify the picture buffers ''' VideoUnlockCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ListPOINTER(ctypes.c_void_p)) VideoUnlockCb.__doc__ = '''Callback prototype to unlock a picture buffer. When the video frame decoding is complete, the unlock callback is invoked. This callback might not be needed at all. It is only an indication that the application can now read the pixel values if it needs to. \warning A picture buffer is unlocked after the picture is decoded, but before the picture is displayed. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] \param planes pixel planes as defined by the @ref libvlc_video_lock_cb callback (this parameter is only for convenience) [IN] ''' VideoDisplayCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p) VideoDisplayCb.__doc__ = '''Callback prototype to display a picture. When the video frame needs to be shown, as determined by the media playback clock, the display callback is invoked. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] ''' VideoFormatCb = ctypes.CFUNCTYPE(ctypes.POINTER(ctypes.c_uint), ListPOINTER(ctypes.c_void_p), ctypes.c_char_p, ctypes.POINTER(ctypes.c_uint), ctypes.POINTER(ctypes.c_uint), ctypes.POINTER(ctypes.c_uint), ctypes.POINTER(ctypes.c_uint)) VideoFormatCb.__doc__ = '''Callback prototype to configure picture buffers format. This callback gets the format of the video as output by the video decoder and the chain of video filters (if any). It can opt to change any parameter as it needs. In that case, LibVLC will attempt to convert the video format (rescaling and chroma conversion) but these operations can be CPU intensive. \param opaque pointer to the private pointer passed to L{libvlc_video_set_callbacks}() [IN/OUT] \param chroma pointer to the 4 bytes video format identifier [IN/OUT] \param width pointer to the pixel width [IN/OUT] \param height pointer to the pixel height [IN/OUT] \param pitches table of scanline pitches in bytes for each pixel plane (the table is allocated by LibVLC) [OUT] \param lines table of scanlines count for each plane [OUT] \return the number of picture buffers allocated, 0 indicates failure \note For each pixels plane, the scanline pitch must be bigger than or equal to the number of bytes per pixel multiplied by the pixel width. Similarly, the number of scanlines must be bigger than of equal to the pixel height. Furthermore, we recommend that pitches and lines be multiple of 32 to not break assumption that might be made by various optimizations in the video decoders, video filters and/or video converters. ''' VideoCleanupCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p) VideoCleanupCb.__doc__ = '''Callback prototype to configure picture buffers format. \param opaque private pointer as passed to L{libvlc_video_set_callbacks}() (and possibly modified by @ref libvlc_video_format_cb) [IN] ''' AudioPlayCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint, ctypes.c_int64) AudioPlayCb.__doc__ = '''Callback prototype for audio playback. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param samples pointer to the first audio sample to play back [IN] \param count number of audio samples to play back \param pts expected play time stamp (see libvlc_delay()) ''' AudioPauseCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int64) AudioPauseCb.__doc__ = '''Callback prototype for audio pause. \note The pause callback is never called if the audio is already paused. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param pts time stamp of the pause request (should be elapsed already) ''' AudioResumeCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int64) AudioResumeCb.__doc__ = '''Callback prototype for audio resumption (i.e. restart from pause). \note The resume callback is never called if the audio is not paused. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param pts time stamp of the resumption request (should be elapsed already) ''' AudioFlushCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int64) AudioFlushCb.__doc__ = '''Callback prototype for audio buffer flush (i.e. discard all pending buffers and stop playback as soon as possible). \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] ''' AudioDrainCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p) AudioDrainCb.__doc__ = '''Callback prototype for audio buffer drain (i.e. wait for pending buffers to be played). \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] ''' AudioSetVolumeCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_float, ctypes.c_bool) AudioSetVolumeCb.__doc__ = '''Callback prototype for audio volume change. \param data data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] \param volume software volume (1. = nominal, 0. = mute) \param mute muted flag ''' AudioSetupCb = ctypes.CFUNCTYPE(ctypes.POINTER(ctypes.c_int), ListPOINTER(ctypes.c_void_p), ctypes.c_char_p, ctypes.POINTER(ctypes.c_uint), ctypes.POINTER(ctypes.c_uint)) AudioSetupCb.__doc__ = '''Callback prototype to setup the audio playback. This is called when the media player needs to create a new audio output. \param opaque pointer to the data pointer passed to L{libvlc_audio_set_callbacks}() [IN/OUT] \param format 4 bytes sample format [IN/OUT] \param rate sample rate [IN/OUT] \param channels channels count [IN/OUT] \return 0 on success, anything else to skip audio playback ''' AudioCleanupCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p) AudioCleanupCb.__doc__ = '''Callback prototype for audio playback cleanup. This is called when the media player no longer needs an audio output. \param opaque data pointer as passed to L{libvlc_audio_set_callbacks}() [IN] ''' cb = CallbackDecorators # End of generated enum types # # From libvlc_structures.h class AudioOutput(_Cstruct): def __str__(self): return '%s(%s:%s)' % (self.__class__.__name__, self.name, self.description) AudioOutput._fields_ = [ # recursive struct ('name', ctypes.c_char_p), ('description', ctypes.c_char_p), ('next', ctypes.POINTER(AudioOutput)), ] class LogMessage(_Cstruct): _fields_ = [ ('size', ctypes.c_uint ), ('severity', ctypes.c_int ), ('type', ctypes.c_char_p), ('name', ctypes.c_char_p), ('header', ctypes.c_char_p), ('message', ctypes.c_char_p), ] def __init__(self): super(LogMessage, self).__init__() self.size = ctypes.sizeof(self) def __str__(self): return '%s(%d:%s): %s' % (self.__class__.__name__, self.severity, self.type, self.message) class MediaEvent(_Cstruct): _fields_ = [ ('media_name', ctypes.c_char_p), ('instance_name', ctypes.c_char_p), ] class MediaStats(_Cstruct): _fields_ = [ ('read_bytes', ctypes.c_int ), ('input_bitrate', ctypes.c_float), ('demux_read_bytes', ctypes.c_int ), ('demux_bitrate', ctypes.c_float), ('demux_corrupted', ctypes.c_int ), ('demux_discontinuity', ctypes.c_int ), ('decoded_video', ctypes.c_int ), ('decoded_audio', ctypes.c_int ), ('displayed_pictures', ctypes.c_int ), ('lost_pictures', ctypes.c_int ), ('played_abuffers', ctypes.c_int ), ('lost_abuffers', ctypes.c_int ), ('sent_packets', ctypes.c_int ), ('sent_bytes', ctypes.c_int ), ('send_bitrate', ctypes.c_float), ] class MediaTrackInfo(_Cstruct): _fields_ = [ ('codec', ctypes.c_uint32), ('id', ctypes.c_int ), ('type', TrackType ), ('profile', ctypes.c_int ), ('level', ctypes.c_int ), ('channels_or_height', ctypes.c_uint ), ('rate_or_width', ctypes.c_uint ), ] class AudioTrack(_Cstruct): _fields_ = [ ('channels', ctypes.c_uint), ('rate', ctypes.c_uint), ] class VideoTrack(_Cstruct): _fields_ = [ ('height', ctypes.c_uint), ('width', ctypes.c_uint), ('sar_num', ctypes.c_uint), ('sar_den', ctypes.c_uint), ('frame_rate_num', ctypes.c_uint), ('frame_rate_den', ctypes.c_uint), ] class SubtitleTrack(_Cstruct): _fields_ = [ ('encoding', ctypes.c_char_p), ] class MediaTrackTracks(ctypes.Union): _fields_ = [ ('audio', ctypes.POINTER(AudioTrack)), ('video', ctypes.POINTER(VideoTrack)), ('subtitle', ctypes.POINTER(SubtitleTrack)), ] class MediaTrack(_Cstruct): _anonymous_ = ("u",) _fields_ = [ ('codec', ctypes.c_uint32), ('original_fourcc', ctypes.c_uint32), ('id', ctypes.c_int ), ('type', TrackType ), ('profile', ctypes.c_int ), ('level', ctypes.c_int ), ('u', MediaTrackTracks), ('bitrate', ctypes.c_uint), ('language', ctypes.c_char_p), ('description', ctypes.c_char_p), ] class PlaylistItem(_Cstruct): _fields_ = [ ('id', ctypes.c_int ), ('uri', ctypes.c_char_p), ('name', ctypes.c_char_p), ] def __str__(self): return '%s #%d %s (uri %s)' % (self.__class__.__name__, self.id, self.name, self.uri) class Position(object): """Enum-like, immutable window position constants. See e.g. VideoMarqueeOption.Position. """ Center = 0 Left = 1 CenterLeft = 1 Right = 2 CenterRight = 2 Top = 4 TopCenter = 4 TopLeft = 5 TopRight = 6 Bottom = 8 BottomCenter = 8 BottomLeft = 9 BottomRight = 10 def __init__(self, *unused): raise TypeError('constants only') def __setattr__(self, *unused): #PYCHOK expected raise TypeError('immutable constants') class Rectangle(_Cstruct): _fields_ = [ ('top', ctypes.c_int), ('left', ctypes.c_int), ('bottom', ctypes.c_int), ('right', ctypes.c_int), ] class TrackDescription(_Cstruct): def __str__(self): return '%s(%d:%s)' % (self.__class__.__name__, self.id, self.name) TrackDescription._fields_ = [ # recursive struct ('id', ctypes.c_int ), ('name', ctypes.c_char_p), ('next', ctypes.POINTER(TrackDescription)), ] def track_description_list(head): """Convert a TrackDescription linked list to a Python list (and release the former). """ r = [] if head: item = head while item: item = item.contents r.append((item.id, item.name)) item = item.next try: libvlc_track_description_release(head) except NameError: libvlc_track_description_list_release(head) return r class EventUnion(ctypes.Union): _fields_ = [ ('meta_type', ctypes.c_uint ), ('new_child', ctypes.c_uint ), ('new_duration', ctypes.c_longlong), ('new_status', ctypes.c_int ), ('media', ctypes.c_void_p ), ('new_state', ctypes.c_uint ), # FIXME: Media instance ('new_cache', ctypes.c_float ), ('new_position', ctypes.c_float ), ('new_time', ctypes.c_longlong), ('new_title', ctypes.c_int ), ('new_seekable', ctypes.c_longlong), ('new_pausable', ctypes.c_longlong), ('new_scrambled', ctypes.c_longlong), ('new_count', ctypes.c_longlong), # FIXME: Skipped MediaList and MediaListView... ('filename', ctypes.c_char_p ), ('new_length', ctypes.c_longlong), ('media_event', MediaEvent ), ] class Event(_Cstruct): _fields_ = [ ('type', EventType ), ('object', ctypes.c_void_p), ('u', EventUnion ), ] class ModuleDescription(_Cstruct): def __str__(self): return '%s %s (%s)' % (self.__class__.__name__, self.shortname, self.name) ModuleDescription._fields_ = [ # recursive struct ('name', ctypes.c_char_p), ('shortname', ctypes.c_char_p), ('longname', ctypes.c_char_p), ('help', ctypes.c_char_p), ('next', ctypes.POINTER(ModuleDescription)), ] def module_description_list(head): """Convert a ModuleDescription linked list to a Python list (and release the former). """ r = [] if head: item = head while item: item = item.contents r.append((item.name, item.shortname, item.longname, item.help)) item = item.next libvlc_module_description_list_release(head) return r class AudioOutputDevice(_Cstruct): def __str__(self): return '%s(%d:%s)' % (self.__class__.__name__, self.id, self.name) AudioOutputDevice._fields_ = [ # recursive struct ('next', ctypes.POINTER(AudioOutputDevice)), ('device', ctypes.c_char_p ), ('description', ctypes.c_char_p), ] class TitleDescription(_Cstruct): _fields = [ ('duration', ctypes.c_longlong), ('name', ctypes.c_char_p), ('menu', ctypes.c_bool), ] class ChapterDescription(_Cstruct): _fields = [ ('time_offset', ctypes.c_longlong), ('duration', ctypes.c_longlong), ('name', ctypes.c_char_p), ] # End of header.py # class EventManager(_Ctype): '''Create an event manager with callback handler. This class interposes the registration and handling of event notifications in order to (a) remove the need for decorating each callback functions with the decorator '@callbackmethod', (b) allow any number of positional and/or keyword arguments to the callback (in addition to the Event instance) and (c) to preserve the Python objects such that the callback and argument objects remain alive (i.e. are not garbage collected) until B{after} the notification has been unregistered. @note: Only a single notification can be registered for each event type in an EventManager instance. ''' _callback_handler = None _callbacks = {} def __new__(cls, ptr=_internal_guard): if ptr == _internal_guard: raise VLCException("(INTERNAL) ctypes class.\nYou should get a reference to EventManager through the MediaPlayer.event_manager() method.") return _Constructor(cls, ptr) def event_attach(self, eventtype, callback, *args, **kwds): """Register an event notification. @param eventtype: the desired event type to be notified about. @param callback: the function to call when the event occurs. @param args: optional positional arguments for the callback. @param kwds: optional keyword arguments for the callback. @return: 0 on success, ENOMEM on error. @note: The callback function must have at least one argument, an Event instance. Any other, optional positional and keyword arguments are in B{addition} to the first one. """ if not isinstance(eventtype, EventType): raise VLCException("%s required: %r" % ('EventType', eventtype)) if not hasattr(callback, '__call__'): # callable() raise VLCException("%s required: %r" % ('callable', callback)) # check that the callback expects arguments if not any(getargspec(callback)[:2]): # list(...) raise VLCException("%s required: %r" % ('argument', callback)) if self._callback_handler is None: _called_from_ctypes = ctypes.CFUNCTYPE(None, ctypes.POINTER(Event), ctypes.c_void_p) @_called_from_ctypes def _callback_handler(event, k): """(INTERNAL) handle callback call from ctypes. @note: We cannot simply make this an EventManager method since ctypes does not prepend self as the first parameter, hence this closure. """ try: # retrieve Python callback and arguments call, args, kwds = self._callbacks[k] # deref event.contents to simplify callback code call(event.contents, *args, **kwds) except KeyError: # detached? pass self._callback_handler = _callback_handler self._callbacks = {} k = eventtype.value r = libvlc_event_attach(self, k, self._callback_handler, k) if not r: self._callbacks[k] = (callback, args, kwds) return r def event_detach(self, eventtype): """Unregister an event notification. @param eventtype: the event type notification to be removed. """ if not isinstance(eventtype, EventType): raise VLCException("%s required: %r" % ('EventType', eventtype)) k = eventtype.value if k in self._callbacks: del self._callbacks[k] # remove, regardless of libvlc return value libvlc_event_detach(self, k, self._callback_handler, k) class Instance(_Ctype): '''Create a new Instance instance. It may take as parameter either: - a string - a list of strings as first parameters - the parameters given as the constructor parameters (must be strings) ''' def __new__(cls, *args): if len(args) == 1: # Only 1 arg. It is either a C pointer, or an arg string, # or a tuple. i = args[0] if isinstance(i, _Ints): return _Constructor(cls, i) elif isinstance(i, basestring): args = i.strip().split() elif isinstance(i, _Seqs): args = i else: raise VLCException('Instance %r' % (args,)) if not args and plugin_path is not None: # no parameters passed, for win32 and MacOS, # specify the plugin_path if detected earlier args = ['vlc', '--plugin-path=' + plugin_path] if PYTHON3: args = [ str_to_bytes(a) for a in args ] return libvlc_new(len(args), args) def media_player_new(self, uri=None): """Create a new MediaPlayer instance. @param uri: an optional URI to play in the player. """ p = libvlc_media_player_new(self) if uri: p.set_media(self.media_new(uri)) p._instance = self return p def media_list_player_new(self): """Create a new MediaListPlayer instance. """ p = libvlc_media_list_player_new(self) p._instance = self return p def media_new(self, mrl, *options): """Create a new Media instance. If mrl contains a colon (:) preceded by more than 1 letter, it will be treated as a URL. Else, it will be considered as a local path. If you need more control, directly use media_new_location/media_new_path methods. Options can be specified as supplementary string parameters, but note that many options cannot be set at the media level, and rather at the Instance level. For instance, the marquee filter must be specified when creating the vlc.Instance or vlc.MediaPlayer. Alternatively, options can be added to the media using the Media.add_options method (with the same limitation). @param options: optional media option=value strings """ if ':' in mrl and mrl.index(':') > 1: # Assume it is a URL m = libvlc_media_new_location(self, str_to_bytes(mrl)) else: # Else it should be a local path. m = libvlc_media_new_path(self, str_to_bytes(os.path.normpath(mrl))) for o in options: libvlc_media_add_option(m, str_to_bytes(o)) m._instance = self return m def media_list_new(self, mrls=None): """Create a new MediaList instance. @param mrls: optional list of MRL strings """ l = libvlc_media_list_new(self) # We should take the lock, but since we did not leak the # reference, nobody else can access it. if mrls: for m in mrls: l.add_media(m) l._instance = self return l def audio_output_enumerate_devices(self): """Enumerate the defined audio output devices. @return: list of dicts {name:, description:, devices:} """ r = [] head = libvlc_audio_output_list_get(self) if head: i = head while i: i = i.contents d = [{'id': libvlc_audio_output_device_id (self, i.name, d), 'longname': libvlc_audio_output_device_longname(self, i.name, d)} for d in range(libvlc_audio_output_device_count (self, i.name))] r.append({'name': i.name, 'description': i.description, 'devices': d}) i = i.next libvlc_audio_output_list_release(head) return r def audio_filter_list_get(self): """Returns a list of available audio filters. """ return module_description_list(libvlc_audio_filter_list_get(self)) def video_filter_list_get(self): """Returns a list of available video filters. """ return module_description_list(libvlc_video_filter_list_get(self)) def release(self): '''Decrement the reference count of a libvlc instance, and destroy it if it reaches zero. ''' return libvlc_release(self) def retain(self): '''Increments the reference count of a libvlc instance. The initial reference count is 1 after L{new}() returns. ''' return libvlc_retain(self) def add_intf(self, name): '''Try to start a user interface for the libvlc instance. @param name: interface name, or None for default. @return: 0 on success, -1 on error. ''' return libvlc_add_intf(self, str_to_bytes(name)) def set_user_agent(self, name, http): '''Sets the application name. LibVLC passes this as the user agent string when a protocol requires it. @param name: human-readable application name, e.g. "FooBar player 1.2.3". @param http: HTTP User Agent, e.g. "FooBar/1.2.3 Python/2.6.0". @version: LibVLC 1.1.1 or later. ''' return libvlc_set_user_agent(self, str_to_bytes(name), str_to_bytes(http)) def set_app_id(self, id, version, icon): '''Sets some meta-information about the application. See also L{set_user_agent}(). @param id: Java-style application identifier, e.g. "com.acme.foobar". @param version: application version numbers, e.g. "1.2.3". @param icon: application icon name, e.g. "foobar". @version: LibVLC 2.1.0 or later. ''' return libvlc_set_app_id(self, str_to_bytes(id), str_to_bytes(version), str_to_bytes(icon)) def log_unset(self): '''Unsets the logging callback for a LibVLC instance. This is rarely needed: the callback is implicitly unset when the instance is destroyed. This function will wait for any pending callbacks invocation to complete (causing a deadlock if called from within the callback). @version: LibVLC 2.1.0 or later. ''' return libvlc_log_unset(self) def log_set(self, data, p_instance): '''Sets the logging callback for a LibVLC instance. This function is thread-safe: it will wait for any pending callbacks invocation to complete. @param data: opaque data pointer for the callback function @note Some log messages (especially debug) are emitted by LibVLC while is being initialized. These messages cannot be captured with this interface. @warning A deadlock may occur if this function is called from the callback. @param p_instance: libvlc instance. @version: LibVLC 2.1.0 or later. ''' return libvlc_log_set(self, data, p_instance) def log_set_file(self, stream): '''Sets up logging to a file. @param stream: FILE pointer opened for writing (the FILE pointer must remain valid until L{log_unset}()). @version: LibVLC 2.1.0 or later. ''' return libvlc_log_set_file(self, stream) def media_new_location(self, psz_mrl): '''Create a media with a certain given media resource location, for instance a valid URL. @note: To refer to a local file with this function, the file://... URI syntax B{must} be used (see IETF RFC3986). We recommend using L{media_new_path}() instead when dealing with local files. See L{media_release}. @param psz_mrl: the media location. @return: the newly created media or None on error. ''' return libvlc_media_new_location(self, str_to_bytes(psz_mrl)) def media_new_path(self, path): '''Create a media for a certain file path. See L{media_release}. @param path: local filesystem path. @return: the newly created media or None on error. ''' return libvlc_media_new_path(self, str_to_bytes(path)) def media_new_fd(self, fd): '''Create a media for an already open file descriptor. The file descriptor shall be open for reading (or reading and writing). Regular file descriptors, pipe read descriptors and character device descriptors (including TTYs) are supported on all platforms. Block device descriptors are supported where available. Directory descriptors are supported on systems that provide fdopendir(). Sockets are supported on all platforms where they are file descriptors, i.e. all except Windows. @note: This library will B{not} automatically close the file descriptor under any circumstance. Nevertheless, a file descriptor can usually only be rendered once in a media player. To render it a second time, the file descriptor should probably be rewound to the beginning with lseek(). See L{media_release}. @param fd: open file descriptor. @return: the newly created media or None on error. @version: LibVLC 1.1.5 and later. ''' return libvlc_media_new_fd(self, fd) def media_new_as_node(self, psz_name): '''Create a media as an empty node with a given name. See L{media_release}. @param psz_name: the name of the node. @return: the new empty media or None on error. ''' return libvlc_media_new_as_node(self, str_to_bytes(psz_name)) def media_discoverer_new_from_name(self, psz_name): '''Discover media service by name. @param psz_name: service name. @return: media discover object or None in case of error. ''' return libvlc_media_discoverer_new_from_name(self, str_to_bytes(psz_name)) def media_library_new(self): '''Create an new Media Library object. @return: a new object or None on error. ''' return libvlc_media_library_new(self) def audio_output_list_get(self): '''Gets the list of available audio output modules. @return: list of available audio outputs. It must be freed it with In case of error, None is returned. ''' return libvlc_audio_output_list_get(self) def audio_output_device_list_get(self, aout): '''Gets a list of audio output devices for a given audio output module, See L{audio_output_device_set}(). @note: Not all audio outputs support this. In particular, an empty (None) list of devices does B{not} imply that the specified audio output does not work. @note: The list might not be exhaustive. @warning: Some audio output devices in the list might not actually work in some circumstances. By default, it is recommended to not specify any explicit audio device. @param psz_aout: audio output name (as returned by L{audio_output_list_get}()). @return: A None-terminated linked list of potential audio output devices. It must be freed it with L{audio_output_device_list_release}(). @version: LibVLC 2.1.0 or later. ''' return libvlc_audio_output_device_list_get(self, str_to_bytes(aout)) def vlm_release(self): '''Release the vlm instance related to the given L{Instance}. ''' return libvlc_vlm_release(self) def vlm_add_broadcast(self, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Add a broadcast, with one input. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. @param psz_output: the output MRL (the parameter to the "sout" variable). @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new broadcast. @param b_loop: Should this broadcast be played in loop ? @return: 0 on success, -1 on error. ''' return libvlc_vlm_add_broadcast(self, str_to_bytes(psz_name), str_to_bytes(psz_input), str_to_bytes(psz_output), i_options, ppsz_options, b_enabled, b_loop) def vlm_add_vod(self, psz_name, psz_input, i_options, ppsz_options, b_enabled, psz_mux): '''Add a vod, with one input. @param psz_name: the name of the new vod media. @param psz_input: the input MRL. @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new vod. @param psz_mux: the muxer of the vod media. @return: 0 on success, -1 on error. ''' return libvlc_vlm_add_vod(self, str_to_bytes(psz_name), str_to_bytes(psz_input), i_options, ppsz_options, b_enabled, str_to_bytes(psz_mux)) def vlm_del_media(self, psz_name): '''Delete a media (VOD or broadcast). @param psz_name: the media to delete. @return: 0 on success, -1 on error. ''' return libvlc_vlm_del_media(self, str_to_bytes(psz_name)) def vlm_set_enabled(self, psz_name, b_enabled): '''Enable or disable a media (VOD or broadcast). @param psz_name: the media to work on. @param b_enabled: the new status. @return: 0 on success, -1 on error. ''' return libvlc_vlm_set_enabled(self, str_to_bytes(psz_name), b_enabled) def vlm_set_output(self, psz_name, psz_output): '''Set the output for a media. @param psz_name: the media to work on. @param psz_output: the output MRL (the parameter to the "sout" variable). @return: 0 on success, -1 on error. ''' return libvlc_vlm_set_output(self, str_to_bytes(psz_name), str_to_bytes(psz_output)) def vlm_set_input(self, psz_name, psz_input): '''Set a media's input MRL. This will delete all existing inputs and add the specified one. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' return libvlc_vlm_set_input(self, str_to_bytes(psz_name), str_to_bytes(psz_input)) def vlm_add_input(self, psz_name, psz_input): '''Add a media's input MRL. This will add the specified one. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' return libvlc_vlm_add_input(self, str_to_bytes(psz_name), str_to_bytes(psz_input)) def vlm_set_loop(self, psz_name, b_loop): '''Set a media's loop status. @param psz_name: the media to work on. @param b_loop: the new status. @return: 0 on success, -1 on error. ''' return libvlc_vlm_set_loop(self, str_to_bytes(psz_name), b_loop) def vlm_set_mux(self, psz_name, psz_mux): '''Set a media's vod muxer. @param psz_name: the media to work on. @param psz_mux: the new muxer. @return: 0 on success, -1 on error. ''' return libvlc_vlm_set_mux(self, str_to_bytes(psz_name), str_to_bytes(psz_mux)) def vlm_change_media(self, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Edit the parameters of a media. This will delete all existing inputs and add the specified one. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. @param psz_output: the output MRL (the parameter to the "sout" variable). @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new broadcast. @param b_loop: Should this broadcast be played in loop ? @return: 0 on success, -1 on error. ''' return libvlc_vlm_change_media(self, str_to_bytes(psz_name), str_to_bytes(psz_input), str_to_bytes(psz_output), i_options, ppsz_options, b_enabled, b_loop) def vlm_play_media(self, psz_name): '''Play the named broadcast. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' return libvlc_vlm_play_media(self, str_to_bytes(psz_name)) def vlm_stop_media(self, psz_name): '''Stop the named broadcast. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' return libvlc_vlm_stop_media(self, str_to_bytes(psz_name)) def vlm_pause_media(self, psz_name): '''Pause the named broadcast. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' return libvlc_vlm_pause_media(self, str_to_bytes(psz_name)) def vlm_seek_media(self, psz_name, f_percentage): '''Seek in the named broadcast. @param psz_name: the name of the broadcast. @param f_percentage: the percentage to seek to. @return: 0 on success, -1 on error. ''' return libvlc_vlm_seek_media(self, str_to_bytes(psz_name), f_percentage) def vlm_show_media(self, psz_name): '''Return information about the named media as a JSON string representation. This function is mainly intended for debugging use, if you want programmatic access to the state of a vlm_media_instance_t, please use the corresponding libvlc_vlm_get_media_instance_xxx -functions. Currently there are no such functions available for vlm_media_t though. @param psz_name: the name of the media, if the name is an empty string, all media is described. @return: string with information about named media, or None on error. ''' return libvlc_vlm_show_media(self, str_to_bytes(psz_name)) def vlm_get_media_instance_position(self, psz_name, i_instance): '''Get vlm_media instance position by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: position as float or -1. on error. ''' return libvlc_vlm_get_media_instance_position(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_time(self, psz_name, i_instance): '''Get vlm_media instance time by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: time as integer or -1 on error. ''' return libvlc_vlm_get_media_instance_time(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_length(self, psz_name, i_instance): '''Get vlm_media instance length by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: length of media item or -1 on error. ''' return libvlc_vlm_get_media_instance_length(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_rate(self, psz_name, i_instance): '''Get vlm_media instance playback rate by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: playback rate or -1 on error. ''' return libvlc_vlm_get_media_instance_rate(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_title(self, psz_name, i_instance): '''Get vlm_media instance title number by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: title as number or -1 on error. @bug: will always return 0. ''' return libvlc_vlm_get_media_instance_title(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_chapter(self, psz_name, i_instance): '''Get vlm_media instance chapter number by name or instance id. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: chapter as number or -1 on error. @bug: will always return 0. ''' return libvlc_vlm_get_media_instance_chapter(self, str_to_bytes(psz_name), i_instance) def vlm_get_media_instance_seekable(self, psz_name, i_instance): '''Is libvlc instance seekable ? @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: 1 if seekable, 0 if not, -1 if media does not exist. @bug: will always return 0. ''' return libvlc_vlm_get_media_instance_seekable(self, str_to_bytes(psz_name), i_instance) @memoize_parameterless def vlm_get_event_manager(self): '''Get libvlc_event_manager from a vlm media. The p_event_manager is immutable, so you don't have to hold the lock. @return: libvlc_event_manager. ''' return libvlc_vlm_get_event_manager(self) class Media(_Ctype): '''Create a new Media instance. Usage: Media(MRL, *options) See vlc.Instance.media_new documentation for details. ''' def __new__(cls, *args): if args: i = args[0] if isinstance(i, _Ints): return _Constructor(cls, i) if isinstance(i, Instance): return i.media_new(*args[1:]) o = get_default_instance().media_new(*args) return o def get_instance(self): return getattr(self, '_instance', None) def add_options(self, *options): """Add a list of options to the media. Options must be written without the double-dash. Warning: most audio and video options, such as text renderer, have no effects on an individual media. These options must be set at the vlc.Instance or vlc.MediaPlayer instanciation. @param options: optional media option=value strings """ for o in options: self.add_option(o) def tracks_get(self): """Get media descriptor's elementary streams description Note, you need to call L{parse}() or play the media at least once before calling this function. Not doing this will result in an empty array. The result must be freed with L{tracks_release}. @version: LibVLC 2.1.0 and later. """ mediaTrack_pp = ctypes.POINTER(MediaTrack)() n = libvlc_media_tracks_get(self, ctypes.byref(mediaTrack_pp)) info = ctypes.cast(ctypes.mediaTrack_pp, ctypes.POINTER(ctypes.POINTER(MediaTrack) * n)) return info def add_option(self, psz_options): '''Add an option to the media. This option will be used to determine how the media_player will read the media. This allows to use VLC's advanced reading/streaming options on a per-media basis. @note: The options are listed in 'vlc --long-help' from the command line, e.g. "-sout-all". Keep in mind that available options and their semantics vary across LibVLC versions and builds. @warning: Not all options affects L{Media} objects: Specifically, due to architectural issues most audio and video options, such as text renderer options, have no effects on an individual media. These options must be set through L{new}() instead. @param psz_options: the options (as a string). ''' return libvlc_media_add_option(self, str_to_bytes(psz_options)) def add_option_flag(self, psz_options, i_flags): '''Add an option to the media with configurable flags. This option will be used to determine how the media_player will read the media. This allows to use VLC's advanced reading/streaming options on a per-media basis. The options are detailed in vlc --long-help, for instance "--sout-all". Note that all options are not usable on medias: specifically, due to architectural issues, video-related options such as text renderer options cannot be set on a single media. They must be set on the whole libvlc instance instead. @param psz_options: the options (as a string). @param i_flags: the flags for this option. ''' return libvlc_media_add_option_flag(self, str_to_bytes(psz_options), i_flags) def retain(self): '''Retain a reference to a media descriptor object (libvlc_media_t). Use L{release}() to decrement the reference count of a media descriptor object. ''' return libvlc_media_retain(self) def release(self): '''Decrement the reference count of a media descriptor object. If the reference count is 0, then L{release}() will release the media descriptor object. It will send out an libvlc_MediaFreed event to all listeners. If the media descriptor object has been released it should not be used again. ''' return libvlc_media_release(self) def get_mrl(self): '''Get the media resource locator (mrl) from a media descriptor object. @return: string with mrl of media descriptor object. ''' return libvlc_media_get_mrl(self) def duplicate(self): '''Duplicate a media descriptor object. ''' return libvlc_media_duplicate(self) def get_meta(self, e_meta): '''Read the meta of the media. If the media has not yet been parsed this will return None. This methods automatically calls L{parse_async}(), so after calling it you may receive a libvlc_MediaMetaChanged event. If you prefer a synchronous version ensure that you call L{parse}() before get_meta(). See L{parse} See L{parse_async} See libvlc_MediaMetaChanged. @param e_meta: the meta to read. @return: the media's meta. ''' return libvlc_media_get_meta(self, e_meta) def set_meta(self, e_meta, psz_value): '''Set the meta of the media (this function will not save the meta, call L{save_meta} in order to save the meta). @param e_meta: the meta to write. @param psz_value: the media's meta. ''' return libvlc_media_set_meta(self, e_meta, str_to_bytes(psz_value)) def save_meta(self): '''Save the meta previously set. @return: true if the write operation was successful. ''' return libvlc_media_save_meta(self) def get_state(self): '''Get current state of media descriptor object. Possible media states are defined in libvlc_structures.c ( libvlc_NothingSpecial=0, libvlc_Opening, libvlc_Buffering, libvlc_Playing, libvlc_Paused, libvlc_Stopped, libvlc_Ended, libvlc_Error). See libvlc_state_t. @return: state of media descriptor object. ''' return libvlc_media_get_state(self) def get_stats(self, p_stats): '''Get the current statistics about the media. @param p_stats:: structure that contain the statistics about the media (this structure must be allocated by the caller). @return: true if the statistics are available, false otherwise \libvlc_return_bool. ''' return libvlc_media_get_stats(self, p_stats) def subitems(self): '''Get subitems of media descriptor object. This will increment the reference count of supplied media descriptor object. Use L{list_release}() to decrement the reference counting. @return: list of media descriptor subitems or None. ''' return libvlc_media_subitems(self) @memoize_parameterless def event_manager(self): '''Get event manager from media descriptor object. NOTE: this function doesn't increment reference counting. @return: event manager object. ''' return libvlc_media_event_manager(self) def get_duration(self): '''Get duration (in ms) of media descriptor object item. @return: duration of media item or -1 on error. ''' return libvlc_media_get_duration(self) def parse(self): '''Parse a media. This fetches (local) meta data and tracks information. The method is synchronous. See L{parse_async} See L{get_meta} See libvlc_media_get_tracks_info. ''' return libvlc_media_parse(self) def parse_async(self): '''Parse a media. This fetches (local) meta data and tracks information. The method is the asynchronous of L{parse}(). To track when this is over you can listen to libvlc_MediaParsedChanged event. However if the media was already parsed you will not receive this event. See L{parse} See libvlc_MediaParsedChanged See L{get_meta} See libvlc_media_get_tracks_info. ''' return libvlc_media_parse_async(self) def is_parsed(self): '''Get Parsed status for media descriptor object. See libvlc_MediaParsedChanged. @return: true if media object has been parsed otherwise it returns false \libvlc_return_bool. ''' return libvlc_media_is_parsed(self) def set_user_data(self, p_new_user_data): '''Sets media descriptor's user_data. user_data is specialized data accessed by the host application, VLC.framework uses it as a pointer to an native object that references a L{Media} pointer. @param p_new_user_data: pointer to user data. ''' return libvlc_media_set_user_data(self, p_new_user_data) def get_user_data(self): '''Get media descriptor's user_data. user_data is specialized data accessed by the host application, VLC.framework uses it as a pointer to an native object that references a L{Media} pointer. ''' return libvlc_media_get_user_data(self) def player_new_from_media(self): '''Create a Media Player object from a Media. @return: a new media player object, or None on error. ''' return libvlc_media_player_new_from_media(self) class MediaDiscoverer(_Ctype): '''N/A ''' def __new__(cls, ptr=_internal_guard): '''(INTERNAL) ctypes wrapper constructor. ''' return _Constructor(cls, ptr) def release(self): '''Release media discover object. If the reference count reaches 0, then the object will be released. ''' return libvlc_media_discoverer_release(self) def localized_name(self): '''Get media service discover object its localized name. @return: localized name. ''' return libvlc_media_discoverer_localized_name(self) def media_list(self): '''Get media service discover media list. @return: list of media items. ''' return libvlc_media_discoverer_media_list(self) @memoize_parameterless def event_manager(self): '''Get event manager from media service discover object. @return: event manager object. ''' return libvlc_media_discoverer_event_manager(self) def is_running(self): '''Query if media service discover object is running. @return: true if running, false if not \libvlc_return_bool. ''' return libvlc_media_discoverer_is_running(self) class MediaLibrary(_Ctype): '''N/A ''' def __new__(cls, ptr=_internal_guard): '''(INTERNAL) ctypes wrapper constructor. ''' return _Constructor(cls, ptr) def release(self): '''Release media library object. This functions decrements the reference count of the media library object. If it reaches 0, then the object will be released. ''' return libvlc_media_library_release(self) def retain(self): '''Retain a reference to a media library object. This function will increment the reference counting for this object. Use L{release}() to decrement the reference count. ''' return libvlc_media_library_retain(self) def load(self): '''Load media library. @return: 0 on success, -1 on error. ''' return libvlc_media_library_load(self) def media_list(self): '''Get media library subitems. @return: media list subitems. ''' return libvlc_media_library_media_list(self) class MediaList(_Ctype): '''Create a new MediaList instance. Usage: MediaList(list_of_MRLs) See vlc.Instance.media_list_new documentation for details. ''' def __new__(cls, *args): if args: i = args[0] if isinstance(i, _Ints): return _Constructor(cls, i) if isinstance(i, Instance): return i.media_list_new(*args[1:]) o = get_default_instance().media_list_new(*args) return o def get_instance(self): return getattr(self, '_instance', None) def add_media(self, mrl): """Add media instance to media list. The L{lock} should be held upon entering this function. @param mrl: a media instance or a MRL. @return: 0 on success, -1 if the media list is read-only. """ if isinstance(mrl, basestring): mrl = (self.get_instance() or get_default_instance()).media_new(mrl) return libvlc_media_list_add_media(self, mrl) def release(self): '''Release media list created with L{new}(). ''' return libvlc_media_list_release(self) def retain(self): '''Retain reference to a media list. ''' return libvlc_media_list_retain(self) def set_media(self, p_md): '''Associate media instance with this media list instance. If another media instance was present it will be released. The L{lock} should NOT be held upon entering this function. @param p_md: media instance to add. ''' return libvlc_media_list_set_media(self, p_md) def media(self): '''Get media instance from this media list instance. This action will increase the refcount on the media instance. The L{lock} should NOT be held upon entering this function. @return: media instance. ''' return libvlc_media_list_media(self) def insert_media(self, p_md, i_pos): '''Insert media instance in media list on a position The L{lock} should be held upon entering this function. @param p_md: a media instance. @param i_pos: position in array where to insert. @return: 0 on success, -1 if the media list is read-only. ''' return libvlc_media_list_insert_media(self, p_md, i_pos) def remove_index(self, i_pos): '''Remove media instance from media list on a position The L{lock} should be held upon entering this function. @param i_pos: position in array where to insert. @return: 0 on success, -1 if the list is read-only or the item was not found. ''' return libvlc_media_list_remove_index(self, i_pos) def count(self): '''Get count on media list items The L{lock} should be held upon entering this function. @return: number of items in media list. ''' return libvlc_media_list_count(self) def __len__(self): return libvlc_media_list_count(self) def item_at_index(self, i_pos): '''List media instance in media list at a position The L{lock} should be held upon entering this function. @param i_pos: position in array where to insert. @return: media instance at position i_pos, or None if not found. In case of success, L{media_retain}() is called to increase the refcount on the media. ''' return libvlc_media_list_item_at_index(self, i_pos) def __getitem__(self, i): return libvlc_media_list_item_at_index(self, i) def __iter__(self): for i in range(len(self)): yield self[i] def index_of_item(self, p_md): '''Find index position of List media instance in media list. Warning: the function will return the first matched position. The L{lock} should be held upon entering this function. @param p_md: media instance. @return: position of media instance or -1 if media not found. ''' return libvlc_media_list_index_of_item(self, p_md) def is_readonly(self): '''This indicates if this media list is read-only from a user point of view. @return: 1 on readonly, 0 on readwrite \libvlc_return_bool. ''' return libvlc_media_list_is_readonly(self) def lock(self): '''Get lock on media list items. ''' return libvlc_media_list_lock(self) def unlock(self): '''Release lock on media list items The L{lock} should be held upon entering this function. ''' return libvlc_media_list_unlock(self) @memoize_parameterless def event_manager(self): '''Get libvlc_event_manager from this media list instance. The p_event_manager is immutable, so you don't have to hold the lock. @return: libvlc_event_manager. ''' return libvlc_media_list_event_manager(self) class MediaListPlayer(_Ctype): '''Create a new MediaListPlayer instance. It may take as parameter either: - a vlc.Instance - nothing ''' def __new__(cls, arg=None): if arg is None: i = get_default_instance() elif isinstance(arg, Instance): i = arg elif isinstance(arg, _Ints): return _Constructor(cls, arg) else: raise TypeError('MediaListPlayer %r' % (arg,)) return i.media_list_player_new() def get_instance(self): """Return the associated Instance. """ return self._instance #PYCHOK expected def release(self): '''Release a media_list_player after use Decrement the reference count of a media player object. If the reference count is 0, then L{release}() will release the media player object. If the media player object has been released, then it should not be used again. ''' return libvlc_media_list_player_release(self) def retain(self): '''Retain a reference to a media player list object. Use L{release}() to decrement reference count. ''' return libvlc_media_list_player_retain(self) @memoize_parameterless def event_manager(self): '''Return the event manager of this media_list_player. @return: the event manager. ''' return libvlc_media_list_player_event_manager(self) def set_media_player(self, p_mi): '''Replace media player in media_list_player with this instance. @param p_mi: media player instance. ''' return libvlc_media_list_player_set_media_player(self, p_mi) def set_media_list(self, p_mlist): '''Set the media list associated with the player. @param p_mlist: list of media. ''' return libvlc_media_list_player_set_media_list(self, p_mlist) def play(self): '''Play media list. ''' return libvlc_media_list_player_play(self) def pause(self): '''Toggle pause (or resume) media list. ''' return libvlc_media_list_player_pause(self) def is_playing(self): '''Is media list playing? @return: true for playing and false for not playing \libvlc_return_bool. ''' return libvlc_media_list_player_is_playing(self) def get_state(self): '''Get current libvlc_state of media list player. @return: libvlc_state_t for media list player. ''' return libvlc_media_list_player_get_state(self) def play_item_at_index(self, i_index): '''Play media list item at position index. @param i_index: index in media list to play. @return: 0 upon success -1 if the item wasn't found. ''' return libvlc_media_list_player_play_item_at_index(self, i_index) def __getitem__(self, i): return libvlc_media_list_player_play_item_at_index(self, i) def __iter__(self): for i in range(len(self)): yield self[i] def play_item(self, p_md): '''Play the given media item. @param p_md: the media instance. @return: 0 upon success, -1 if the media is not part of the media list. ''' return libvlc_media_list_player_play_item(self, p_md) def stop(self): '''Stop playing media list. ''' return libvlc_media_list_player_stop(self) def next(self): '''Play next item from media list. @return: 0 upon success -1 if there is no next item. ''' return libvlc_media_list_player_next(self) def previous(self): '''Play previous item from media list. @return: 0 upon success -1 if there is no previous item. ''' return libvlc_media_list_player_previous(self) def set_playback_mode(self, e_mode): '''Sets the playback mode for the playlist. @param e_mode: playback mode specification. ''' return libvlc_media_list_player_set_playback_mode(self, e_mode) class MediaPlayer(_Ctype): '''Create a new MediaPlayer instance. It may take as parameter either: - a string (media URI), options... In this case, a vlc.Instance will be created. - a vlc.Instance, a string (media URI), options... ''' def __new__(cls, *args): if len(args) == 1 and isinstance(args[0], _Ints): return _Constructor(cls, args[0]) if args and isinstance(args[0], Instance): instance = args[0] args = args[1:] else: instance = get_default_instance() o = instance.media_player_new() if args: o.set_media(instance.media_new(*args)) return o def get_instance(self): """Return the associated Instance. """ return self._instance #PYCHOK expected def set_mrl(self, mrl, *options): """Set the MRL to play. Warning: most audio and video options, such as text renderer, have no effects on an individual media. These options must be set at the vlc.Instance or vlc.MediaPlayer instanciation. @param mrl: The MRL @param options: optional media option=value strings @return: the Media object """ m = self.get_instance().media_new(mrl, *options) self.set_media(m) return m def video_get_spu_description(self): """Get the description of available video subtitles. """ return track_description_list(libvlc_video_get_spu_description(self)) def video_get_title_description(self): """Get the description of available titles. """ return track_description_list(libvlc_video_get_title_description(self)) def video_get_chapter_description(self, title): """Get the description of available chapters for specific title. @param title: selected title (int) """ return track_description_list(libvlc_video_get_chapter_description(self, title)) def video_get_track_description(self): """Get the description of available video tracks. """ return track_description_list(libvlc_video_get_track_description(self)) def audio_get_track_description(self): """Get the description of available audio tracks. """ return track_description_list(libvlc_audio_get_track_description(self)) def get_full_title_descriptions(self): '''Get the full description of available titles. @return: the titles list @version: LibVLC 3.0.0 and later. ''' titleDescription_pp = ctypes.POINTER(TitleDescription)() n = libvlc_media_player_get_full_title_descriptions(self, ctypes.byref(titleDescription_pp)) info = ctypes.cast(ctypes.titleDescription_pp, ctypes.POINTER(ctypes.POINTER(TitleDescription) * n)) return info def get_full_chapter_descriptions(self, i_chapters_of_title): '''Get the full description of available chapters. @param index: of the title to query for chapters. @return: the chapter list @version: LibVLC 3.0.0 and later. ''' chapterDescription_pp = ctypes.POINTER(ChapterDescription)() n = libvlc_media_player_get_full_chapter_descriptions(self, ctypes.byref(chapterDescription_pp)) info = ctypes.cast(ctypes.chapterDescription_pp, ctypes.POINTER(ctypes.POINTER(ChapterDescription) * n)) return info def video_get_size(self, num=0): """Get the video size in pixels as 2-tuple (width, height). @param num: video number (default 0). """ r = libvlc_video_get_size(self, num) if isinstance(r, tuple) and len(r) == 2: return r else: raise VLCException('invalid video number (%s)' % (num,)) def set_hwnd(self, drawable): """Set a Win32/Win64 API window handle (HWND). Specify where the media player should render its video output. If LibVLC was built without Win32/Win64 API output support, then this has no effects. @param drawable: windows handle of the drawable. """ if not isinstance(drawable, ctypes.c_void_p): drawable = ctypes.c_void_p(int(drawable)) libvlc_media_player_set_hwnd(self, drawable) def video_get_width(self, num=0): """Get the width of a video in pixels. @param num: video number (default 0). """ return self.video_get_size(num)[0] def video_get_height(self, num=0): """Get the height of a video in pixels. @param num: video number (default 0). """ return self.video_get_size(num)[1] def video_get_cursor(self, num=0): """Get the mouse pointer coordinates over a video as 2-tuple (x, y). Coordinates are expressed in terms of the decoded video resolution, B{not} in terms of pixels on the screen/viewport. To get the latter, you must query your windowing system directly. Either coordinate may be negative or larger than the corresponding size of the video, if the cursor is outside the rendering area. @warning: The coordinates may be out-of-date if the pointer is not located on the video rendering area. LibVLC does not track the mouse pointer if the latter is outside the video widget. @note: LibVLC does not support multiple mouse pointers (but does support multiple input devices sharing the same pointer). @param num: video number (default 0). """ r = libvlc_video_get_cursor(self, num) if isinstance(r, tuple) and len(r) == 2: return r raise VLCException('invalid video number (%s)' % (num,)) def release(self): '''Release a media_player after use Decrement the reference count of a media player object. If the reference count is 0, then L{release}() will release the media player object. If the media player object has been released, then it should not be used again. ''' return libvlc_media_player_release(self) def retain(self): '''Retain a reference to a media player object. Use L{release}() to decrement reference count. ''' return libvlc_media_player_retain(self) def set_media(self, p_md): '''Set the media that will be used by the media_player. If any, previous md will be released. @param p_md: the Media. Afterwards the p_md can be safely destroyed. ''' return libvlc_media_player_set_media(self, p_md) def get_media(self): '''Get the media used by the media_player. @return: the media associated with p_mi, or None if no media is associated. ''' return libvlc_media_player_get_media(self) @memoize_parameterless def event_manager(self): '''Get the Event Manager from which the media player send event. @return: the event manager associated with p_mi. ''' return libvlc_media_player_event_manager(self) def is_playing(self): '''is_playing. @return: 1 if the media player is playing, 0 otherwise \libvlc_return_bool. ''' return libvlc_media_player_is_playing(self) def play(self): '''Play. @return: 0 if playback started (and was already started), or -1 on error. ''' return libvlc_media_player_play(self) def set_pause(self, do_pause): '''Pause or resume (no effect if there is no media). @param do_pause: play/resume if zero, pause if non-zero. @version: LibVLC 1.1.1 or later. ''' return libvlc_media_player_set_pause(self, do_pause) def pause(self): '''Toggle pause (no effect if there is no media). ''' return libvlc_media_player_pause(self) def stop(self): '''Stop (no effect if there is no media). ''' return libvlc_media_player_stop(self) def video_set_callbacks(self, lock, unlock, display, opaque): '''Set callbacks and private data to render decoded video to a custom area in memory. Use L{video_set_format}() or L{video_set_format_callbacks}() to configure the decoded format. @param lock: callback to lock video memory (must not be None). @param unlock: callback to unlock video memory (or None if not needed). @param display: callback to display video (or None if not needed). @param opaque: private pointer for the three callbacks (as first parameter). @version: LibVLC 1.1.1 or later. ''' return libvlc_video_set_callbacks(self, lock, unlock, display, opaque) def video_set_format(self, chroma, width, height, pitch): '''Set decoded video chroma and dimensions. This only works in combination with L{video_set_callbacks}(), and is mutually exclusive with L{video_set_format_callbacks}(). @param chroma: a four-characters string identifying the chroma (e.g. "RV32" or "YUYV"). @param width: pixel width. @param height: pixel height. @param pitch: line pitch (in bytes). @version: LibVLC 1.1.1 or later. @bug: All pixel planes are expected to have the same pitch. To use the YCbCr color space with chrominance subsampling, consider using L{video_set_format_callbacks}() instead. ''' return libvlc_video_set_format(self, str_to_bytes(chroma), width, height, pitch) def video_set_format_callbacks(self, setup, cleanup): '''Set decoded video chroma and dimensions. This only works in combination with L{video_set_callbacks}(). @param setup: callback to select the video format (cannot be None). @param cleanup: callback to release any allocated resources (or None). @version: LibVLC 2.0.0 or later. ''' return libvlc_video_set_format_callbacks(self, setup, cleanup) def set_nsobject(self, drawable): '''Set the NSView handler where the media player should render its video output. Use the vout called "macosx". The drawable is an NSObject that follow the VLCOpenGLVideoViewEmbedding protocol: @begincode \@protocol VLCOpenGLVideoViewEmbedding - (void)addVoutSubview:(NSView *)view; - (void)removeVoutSubview:(NSView *)view; \@end @endcode Or it can be an NSView object. If you want to use it along with Qt4 see the QMacCocoaViewContainer. Then the following code should work: @begincode NSView *video = [[NSView alloc] init]; QMacCocoaViewContainer *container = new QMacCocoaViewContainer(video, parent); L{set_nsobject}(mp, video); [video release]; @endcode You can find a live example in VLCVideoView in VLCKit.framework. @param drawable: the drawable that is either an NSView or an object following the VLCOpenGLVideoViewEmbedding protocol. ''' return libvlc_media_player_set_nsobject(self, drawable) def get_nsobject(self): '''Get the NSView handler previously set with L{set_nsobject}(). @return: the NSView handler or 0 if none where set. ''' return libvlc_media_player_get_nsobject(self) def set_agl(self, drawable): '''Set the agl handler where the media player should render its video output. @param drawable: the agl handler. ''' return libvlc_media_player_set_agl(self, drawable) def get_agl(self): '''Get the agl handler previously set with L{set_agl}(). @return: the agl handler or 0 if none where set. ''' return libvlc_media_player_get_agl(self) def set_xwindow(self, drawable): '''Set an X Window System drawable where the media player should render its video output. If LibVLC was built without X11 output support, then this has no effects. The specified identifier must correspond to an existing Input/Output class X11 window. Pixmaps are B{not} supported. The caller shall ensure that the X11 server is the same as the one the VLC instance has been configured with. This function must be called before video playback is started; otherwise it will only take effect after playback stop and restart. @param drawable: the ID of the X window. ''' return libvlc_media_player_set_xwindow(self, drawable) def get_xwindow(self): '''Get the X Window System window identifier previously set with L{set_xwindow}(). Note that this will return the identifier even if VLC is not currently using it (for instance if it is playing an audio-only input). @return: an X window ID, or 0 if none where set. ''' return libvlc_media_player_get_xwindow(self) def get_hwnd(self): '''Get the Windows API window handle (HWND) previously set with L{set_hwnd}(). The handle will be returned even if LibVLC is not currently outputting any video to it. @return: a window handle or None if there are none. ''' return libvlc_media_player_get_hwnd(self) def audio_set_callbacks(self, play, pause, resume, flush, drain, opaque): '''Set callbacks and private data for decoded audio. Use L{audio_set_format}() or L{audio_set_format_callbacks}() to configure the decoded audio format. @param play: callback to play audio samples (must not be None). @param pause: callback to pause playback (or None to ignore). @param resume: callback to resume playback (or None to ignore). @param flush: callback to flush audio buffers (or None to ignore). @param drain: callback to drain audio buffers (or None to ignore). @param opaque: private pointer for the audio callbacks (as first parameter). @version: LibVLC 2.0.0 or later. ''' return libvlc_audio_set_callbacks(self, play, pause, resume, flush, drain, opaque) def audio_set_volume_callback(self, set_volume): '''Set callbacks and private data for decoded audio. This only works in combination with L{audio_set_callbacks}(). Use L{audio_set_format}() or L{audio_set_format_callbacks}() to configure the decoded audio format. @param set_volume: callback to apply audio volume, or None to apply volume in software. @version: LibVLC 2.0.0 or later. ''' return libvlc_audio_set_volume_callback(self, set_volume) def audio_set_format_callbacks(self, setup, cleanup): '''Set decoded audio format. This only works in combination with L{audio_set_callbacks}(). @param setup: callback to select the audio format (cannot be None). @param cleanup: callback to release any allocated resources (or None). @version: LibVLC 2.0.0 or later. ''' return libvlc_audio_set_format_callbacks(self, setup, cleanup) def audio_set_format(self, format, rate, channels): '''Set decoded audio format. This only works in combination with L{audio_set_callbacks}(), and is mutually exclusive with L{audio_set_format_callbacks}(). @param format: a four-characters string identifying the sample format (e.g. "S16N" or "FL32"). @param rate: sample rate (expressed in Hz). @param channels: channels count. @version: LibVLC 2.0.0 or later. ''' return libvlc_audio_set_format(self, str_to_bytes(format), rate, channels) def get_length(self): '''Get the current movie length (in ms). @return: the movie length (in ms), or -1 if there is no media. ''' return libvlc_media_player_get_length(self) def get_time(self): '''Get the current movie time (in ms). @return: the movie time (in ms), or -1 if there is no media. ''' return libvlc_media_player_get_time(self) def set_time(self, i_time): '''Set the movie time (in ms). This has no effect if no media is being played. Not all formats and protocols support this. @param i_time: the movie time (in ms). ''' return libvlc_media_player_set_time(self, i_time) def get_position(self): '''Get movie position as percentage between 0.0 and 1.0. @return: movie position, or -1. in case of error. ''' return libvlc_media_player_get_position(self) def set_position(self, f_pos): '''Set movie position as percentage between 0.0 and 1.0. This has no effect if playback is not enabled. This might not work depending on the underlying input format and protocol. @param f_pos: the position. ''' return libvlc_media_player_set_position(self, f_pos) def set_chapter(self, i_chapter): '''Set movie chapter (if applicable). @param i_chapter: chapter number to play. ''' return libvlc_media_player_set_chapter(self, i_chapter) def get_chapter(self): '''Get movie chapter. @return: chapter number currently playing, or -1 if there is no media. ''' return libvlc_media_player_get_chapter(self) def get_chapter_count(self): '''Get movie chapter count. @return: number of chapters in movie, or -1. ''' return libvlc_media_player_get_chapter_count(self) def will_play(self): '''Is the player able to play. @return: boolean \libvlc_return_bool. ''' return libvlc_media_player_will_play(self) def get_chapter_count_for_title(self, i_title): '''Get title chapter count. @param i_title: title. @return: number of chapters in title, or -1. ''' return libvlc_media_player_get_chapter_count_for_title(self, i_title) def set_title(self, i_title): '''Set movie title. @param i_title: title number to play. ''' return libvlc_media_player_set_title(self, i_title) def get_title(self): '''Get movie title. @return: title number currently playing, or -1. ''' return libvlc_media_player_get_title(self) def get_title_count(self): '''Get movie title count. @return: title number count, or -1. ''' return libvlc_media_player_get_title_count(self) def previous_chapter(self): '''Set previous chapter (if applicable). ''' return libvlc_media_player_previous_chapter(self) def next_chapter(self): '''Set next chapter (if applicable). ''' return libvlc_media_player_next_chapter(self) def get_rate(self): '''Get the requested movie play rate. @warning: Depending on the underlying media, the requested rate may be different from the real playback rate. @return: movie play rate. ''' return libvlc_media_player_get_rate(self) def set_rate(self, rate): '''Set movie play rate. @param rate: movie play rate to set. @return: -1 if an error was detected, 0 otherwise (but even then, it might not actually work depending on the underlying media protocol). ''' return libvlc_media_player_set_rate(self, rate) def get_state(self): '''Get current movie state. @return: the current state of the media player (playing, paused, ...) See libvlc_state_t. ''' return libvlc_media_player_get_state(self) def get_fps(self): '''Get movie fps rate. @return: frames per second (fps) for this playing movie, or 0 if unspecified. ''' return libvlc_media_player_get_fps(self) def has_vout(self): '''How many video outputs does this media player have? @return: the number of video outputs. ''' return libvlc_media_player_has_vout(self) def is_seekable(self): '''Is this media player seekable? @return: true if the media player can seek \libvlc_return_bool. ''' return libvlc_media_player_is_seekable(self) def can_pause(self): '''Can this media player be paused? @return: true if the media player can pause \libvlc_return_bool. ''' return libvlc_media_player_can_pause(self) def program_scrambled(self): '''Check if the current program is scrambled. @return: true if the current program is scrambled \libvlc_return_bool. @version: LibVLC 2.2.0 or later. ''' return libvlc_media_player_program_scrambled(self) def next_frame(self): '''Display the next frame (if supported). ''' return libvlc_media_player_next_frame(self) def navigate(self, navigate): '''Navigate through DVD Menu. @param navigate: the Navigation mode. @version: libVLC 2.0.0 or later. ''' return libvlc_media_player_navigate(self, navigate) def set_video_title_display(self, position, timeout): '''Set if, and how, the video title will be shown when media is played. @param position: position at which to display the title, or libvlc_position_disable to prevent the title from being displayed. @param timeout: title display timeout in milliseconds (ignored if libvlc_position_disable). @version: libVLC 2.1.0 or later. ''' return libvlc_media_player_set_video_title_display(self, position, timeout) def toggle_fullscreen(self): '''Toggle fullscreen status on non-embedded video outputs. @warning: The same limitations applies to this function as to L{set_fullscreen}(). ''' return libvlc_toggle_fullscreen(self) def set_fullscreen(self, b_fullscreen): '''Enable or disable fullscreen. @warning: With most window managers, only a top-level windows can be in full-screen mode. Hence, this function will not operate properly if L{set_xwindow}() was used to embed the video in a non-top-level window. In that case, the embedding window must be reparented to the root window B{before} fullscreen mode is enabled. You will want to reparent it back to its normal parent when disabling fullscreen. @param b_fullscreen: boolean for fullscreen status. ''' return libvlc_set_fullscreen(self, b_fullscreen) def get_fullscreen(self): '''Get current fullscreen status. @return: the fullscreen status (boolean) \libvlc_return_bool. ''' return libvlc_get_fullscreen(self) def video_set_key_input(self, on): '''Enable or disable key press events handling, according to the LibVLC hotkeys configuration. By default and for historical reasons, keyboard events are handled by the LibVLC video widget. @note: On X11, there can be only one subscriber for key press and mouse click events per window. If your application has subscribed to those events for the X window ID of the video widget, then LibVLC will not be able to handle key presses and mouse clicks in any case. @warning: This function is only implemented for X11 and Win32 at the moment. @param on: true to handle key press events, false to ignore them. ''' return libvlc_video_set_key_input(self, on) def video_set_mouse_input(self, on): '''Enable or disable mouse click events handling. By default, those events are handled. This is needed for DVD menus to work, as well as a few video filters such as "puzzle". See L{video_set_key_input}(). @warning: This function is only implemented for X11 and Win32 at the moment. @param on: true to handle mouse click events, false to ignore them. ''' return libvlc_video_set_mouse_input(self, on) def video_get_scale(self): '''Get the current video scaling factor. See also L{video_set_scale}(). @return: the currently configured zoom factor, or 0. if the video is set to fit to the output window/drawable automatically. ''' return libvlc_video_get_scale(self) def video_set_scale(self, f_factor): '''Set the video scaling factor. That is the ratio of the number of pixels on screen to the number of pixels in the original decoded video in each dimension. Zero is a special value; it will adjust the video to the output window/drawable (in windowed mode) or the entire screen. Note that not all video outputs support scaling. @param f_factor: the scaling factor, or zero. ''' return libvlc_video_set_scale(self, f_factor) def video_get_aspect_ratio(self): '''Get current video aspect ratio. @return: the video aspect ratio or None if unspecified (the result must be released with free() or L{free}()). ''' return libvlc_video_get_aspect_ratio(self) def video_set_aspect_ratio(self, psz_aspect): '''Set new video aspect ratio. @param psz_aspect: new video aspect-ratio or None to reset to default @note Invalid aspect ratios are ignored. ''' return libvlc_video_set_aspect_ratio(self, str_to_bytes(psz_aspect)) def video_get_spu(self): '''Get current video subtitle. @return: the video subtitle selected, or -1 if none. ''' return libvlc_video_get_spu(self) def video_get_spu_count(self): '''Get the number of available video subtitles. @return: the number of available video subtitles. ''' return libvlc_video_get_spu_count(self) def video_set_spu(self, i_spu): '''Set new video subtitle. @param i_spu: video subtitle track to select (i_id from track description). @return: 0 on success, -1 if out of range. ''' return libvlc_video_set_spu(self, i_spu) def video_set_subtitle_file(self, psz_subtitle): '''Set new video subtitle file. @param psz_subtitle: new video subtitle file. @return: the success status (boolean). ''' return libvlc_video_set_subtitle_file(self, str_to_bytes(psz_subtitle)) def video_get_spu_delay(self): '''Get the current subtitle delay. Positive values means subtitles are being displayed later, negative values earlier. @return: time (in microseconds) the display of subtitles is being delayed. @version: LibVLC 2.0.0 or later. ''' return libvlc_video_get_spu_delay(self) def video_set_spu_delay(self, i_delay): '''Set the subtitle delay. This affects the timing of when the subtitle will be displayed. Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier. The subtitle delay will be reset to zero each time the media changes. @param i_delay: time (in microseconds) the display of subtitles should be delayed. @return: 0 on success, -1 on error. @version: LibVLC 2.0.0 or later. ''' return libvlc_video_set_spu_delay(self, i_delay) def video_get_crop_geometry(self): '''Get current crop filter geometry. @return: the crop filter geometry or None if unset. ''' return libvlc_video_get_crop_geometry(self) def video_set_crop_geometry(self, psz_geometry): '''Set new crop filter geometry. @param psz_geometry: new crop filter geometry (None to unset). ''' return libvlc_video_set_crop_geometry(self, str_to_bytes(psz_geometry)) def video_get_teletext(self): '''Get current teletext page requested. @return: the current teletext page requested. ''' return libvlc_video_get_teletext(self) def video_set_teletext(self, i_page): '''Set new teletext page to retrieve. @param i_page: teletex page number requested. ''' return libvlc_video_set_teletext(self, i_page) def toggle_teletext(self): '''Toggle teletext transparent status on video output. ''' return libvlc_toggle_teletext(self) def video_get_track_count(self): '''Get number of available video tracks. @return: the number of available video tracks (int). ''' return libvlc_video_get_track_count(self) def video_get_track(self): '''Get current video track. @return: the video track ID (int) or -1 if no active input. ''' return libvlc_video_get_track(self) def video_set_track(self, i_track): '''Set video track. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 if out of range. ''' return libvlc_video_set_track(self, i_track) def video_take_snapshot(self, num, psz_filepath, i_width, i_height): '''Take a snapshot of the current video window. If i_width AND i_height is 0, original size is used. If i_width XOR i_height is 0, original aspect-ratio is preserved. @param num: number of video output (typically 0 for the first/only one). @param psz_filepath: the path where to save the screenshot to. @param i_width: the snapshot's width. @param i_height: the snapshot's height. @return: 0 on success, -1 if the video was not found. ''' return libvlc_video_take_snapshot(self, num, str_to_bytes(psz_filepath), i_width, i_height) def video_set_deinterlace(self, psz_mode): '''Enable or disable deinterlace filter. @param psz_mode: type of deinterlace filter, None to disable. ''' return libvlc_video_set_deinterlace(self, str_to_bytes(psz_mode)) def video_get_marquee_int(self, option): '''Get an integer marquee option value. @param option: marq option to get See libvlc_video_marquee_int_option_t. ''' return libvlc_video_get_marquee_int(self, option) def video_get_marquee_string(self, option): '''Get a string marquee option value. @param option: marq option to get See libvlc_video_marquee_string_option_t. ''' return libvlc_video_get_marquee_string(self, option) def video_set_marquee_int(self, option, i_val): '''Enable, disable or set an integer marquee option Setting libvlc_marquee_Enable has the side effect of enabling (arg !0) or disabling (arg 0) the marq filter. @param option: marq option to set See libvlc_video_marquee_int_option_t. @param i_val: marq option value. ''' return libvlc_video_set_marquee_int(self, option, i_val) def video_set_marquee_string(self, option, psz_text): '''Set a marquee string option. @param option: marq option to set See libvlc_video_marquee_string_option_t. @param psz_text: marq option value. ''' return libvlc_video_set_marquee_string(self, option, str_to_bytes(psz_text)) def video_get_logo_int(self, option): '''Get integer logo option. @param option: logo option to get, values of libvlc_video_logo_option_t. ''' return libvlc_video_get_logo_int(self, option) def video_set_logo_int(self, option, value): '''Set logo option as integer. Options that take a different type value are ignored. Passing libvlc_logo_enable as option value has the side effect of starting (arg !0) or stopping (arg 0) the logo filter. @param option: logo option to set, values of libvlc_video_logo_option_t. @param value: logo option value. ''' return libvlc_video_set_logo_int(self, option, value) def video_set_logo_string(self, option, psz_value): '''Set logo option as string. Options that take a different type value are ignored. @param option: logo option to set, values of libvlc_video_logo_option_t. @param psz_value: logo option value. ''' return libvlc_video_set_logo_string(self, option, str_to_bytes(psz_value)) def video_get_adjust_int(self, option): '''Get integer adjust option. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' return libvlc_video_get_adjust_int(self, option) def video_set_adjust_int(self, option, value): '''Set adjust option as integer. Options that take a different type value are ignored. Passing libvlc_adjust_enable as option value has the side effect of starting (arg !0) or stopping (arg 0) the adjust filter. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @version: LibVLC 1.1.1 and later. ''' return libvlc_video_set_adjust_int(self, option, value) def video_get_adjust_float(self, option): '''Get float adjust option. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' return libvlc_video_get_adjust_float(self, option) def video_set_adjust_float(self, option, value): '''Set adjust option as float. Options that take a different type value are ignored. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @version: LibVLC 1.1.1 and later. ''' return libvlc_video_set_adjust_float(self, option, value) def audio_output_set(self, psz_name): '''Selects an audio output module. @note: Any change will take be effect only after playback is stopped and restarted. Audio output cannot be changed while playing. @param psz_name: name of audio output, use psz_name of See L{AudioOutput}. @return: 0 if function succeded, -1 on error. ''' return libvlc_audio_output_set(self, str_to_bytes(psz_name)) def audio_output_device_enum(self): '''Gets a list of potential audio output devices, See L{audio_output_device_set}(). @note: Not all audio outputs support enumerating devices. The audio output may be functional even if the list is empty (None). @note: The list may not be exhaustive. @warning: Some audio output devices in the list might not actually work in some circumstances. By default, it is recommended to not specify any explicit audio device. @return: A None-terminated linked list of potential audio output devices. It must be freed it with L{audio_output_device_list_release}(). @version: LibVLC 2.2.0 or later. ''' return libvlc_audio_output_device_enum(self) def audio_output_device_set(self, module, device_id): '''Configures an explicit audio output device. If the module paramater is None, audio output will be moved to the device specified by the device identifier string immediately. This is the recommended usage. A list of adequate potential device strings can be obtained with L{audio_output_device_enum}(). However passing None is supported in LibVLC version 2.2.0 and later only; in earlier versions, this function would have no effects when the module parameter was None. If the module parameter is not None, the device parameter of the corresponding audio output, if it exists, will be set to the specified string. Note that some audio output modules do not have such a parameter (notably MMDevice and PulseAudio). A list of adequate potential device strings can be obtained with L{audio_output_device_list_get}(). @note: This function does not select the specified audio output plugin. L{audio_output_set}() is used for that purpose. @warning: The syntax for the device parameter depends on the audio output. Some audio output modules require further parameters (e.g. a channels map in the case of ALSA). @param module: If None, current audio output module. if non-None, name of audio output module. @param device_id: device identifier string. @return: Nothing. Errors are ignored (this is a design bug). ''' return libvlc_audio_output_device_set(self, str_to_bytes(module), str_to_bytes(device_id)) def audio_toggle_mute(self): '''Toggle mute status. ''' return libvlc_audio_toggle_mute(self) def audio_get_mute(self): '''Get current mute status. @return: the mute status (boolean) if defined, -1 if undefined/unapplicable. ''' return libvlc_audio_get_mute(self) def audio_set_mute(self, status): '''Set mute status. @param status: If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/PDIF, HDMI...) is in use, muting may be unapplicable. Also some audio output plugins do not support muting at all. @note To force silent playback, disable all audio tracks. This is more efficient and reliable than mute. ''' return libvlc_audio_set_mute(self, status) def audio_get_volume(self): '''Get current software audio volume. @return: the software volume in percents (0 = mute, 100 = nominal / 0dB). ''' return libvlc_audio_get_volume(self) def audio_set_volume(self, i_volume): '''Set current software audio volume. @param i_volume: the volume in percents (0 = mute, 100 = 0dB). @return: 0 if the volume was set, -1 if it was out of range. ''' return libvlc_audio_set_volume(self, i_volume) def audio_get_track_count(self): '''Get number of available audio tracks. @return: the number of available audio tracks (int), or -1 if unavailable. ''' return libvlc_audio_get_track_count(self) def audio_get_track(self): '''Get current audio track. @return: the audio track ID or -1 if no active input. ''' return libvlc_audio_get_track(self) def audio_set_track(self, i_track): '''Set current audio track. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 on error. ''' return libvlc_audio_set_track(self, i_track) def audio_get_channel(self): '''Get current audio channel. @return: the audio channel See libvlc_audio_output_channel_t. ''' return libvlc_audio_get_channel(self) def audio_set_channel(self, channel): '''Set current audio channel. @param channel: the audio channel, See libvlc_audio_output_channel_t. @return: 0 on success, -1 on error. ''' return libvlc_audio_set_channel(self, channel) def audio_get_delay(self): '''Get current audio delay. @return: the audio delay (microseconds). @version: LibVLC 1.1.1 or later. ''' return libvlc_audio_get_delay(self) def audio_set_delay(self, i_delay): '''Set current audio delay. The audio delay will be reset to zero each time the media changes. @param i_delay: the audio delay (microseconds). @return: 0 on success, -1 on error. @version: LibVLC 1.1.1 or later. ''' return libvlc_audio_set_delay(self, i_delay) def set_equalizer(self, p_equalizer): '''Apply new equalizer settings to a media player. The equalizer is first created by invoking L{audio_equalizer_new}() or L{audio_equalizer_new_from_preset}(). It is possible to apply new equalizer settings to a media player whether the media player is currently playing media or not. Invoking this method will immediately apply the new equalizer settings to the audio output of the currently playing media if there is any. If there is no currently playing media, the new equalizer settings will be applied later if and when new media is played. Equalizer settings will automatically be applied to subsequently played media. To disable the equalizer for a media player invoke this method passing None for the p_equalizer parameter. The media player does not keep a reference to the supplied equalizer so it is safe for an application to release the equalizer reference any time after this method returns. @param p_equalizer: opaque equalizer handle, or None to disable the equalizer for this media player. @return: zero on success, -1 on error. @version: LibVLC 2.2.0 or later. ''' return libvlc_media_player_set_equalizer(self, p_equalizer) # LibVLC __version__ functions # def libvlc_errmsg(): '''A human-readable error message for the last LibVLC error in the calling thread. The resulting string is valid until another error occurs (at least until the next LibVLC call). @warning This will be None if there was no error. ''' f = _Cfunctions.get('libvlc_errmsg', None) or \ _Cfunction('libvlc_errmsg', (), None, ctypes.c_char_p) return f() def libvlc_clearerr(): '''Clears the LibVLC error status for the current thread. This is optional. By default, the error status is automatically overridden when a new error occurs, and destroyed when the thread exits. ''' f = _Cfunctions.get('libvlc_clearerr', None) or \ _Cfunction('libvlc_clearerr', (), None, None) return f() def libvlc_vprinterr(fmt, ap): '''Sets the LibVLC error status and message for the current thread. Any previous error is overridden. @param fmt: the format string. @param ap: the arguments. @return: a nul terminated string in any case. ''' f = _Cfunctions.get('libvlc_vprinterr', None) or \ _Cfunction('libvlc_vprinterr', ((1,), (1,),), None, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_void_p) return f(fmt, ap) def libvlc_new(argc, argv): '''Create and initialize a libvlc instance. This functions accept a list of "command line" arguments similar to the main(). These arguments affect the LibVLC instance default configuration. @param argc: the number of arguments (should be 0). @param argv: list of arguments (should be None). @return: the libvlc instance or None in case of error. @version Arguments are meant to be passed from the command line to LibVLC, just like VLC media player does. The list of valid arguments depends on the LibVLC version, the operating system and platform, and set of available LibVLC plugins. Invalid or unsupported arguments will cause the function to fail (i.e. return None). Also, some arguments may alter the behaviour or otherwise interfere with other LibVLC functions. @warning There is absolutely no warranty or promise of forward, backward and cross-platform compatibility with regards to L{libvlc_new}() arguments. We recommend that you do not use them, other than when debugging. ''' f = _Cfunctions.get('libvlc_new', None) or \ _Cfunction('libvlc_new', ((1,), (1,),), class_result(Instance), ctypes.c_void_p, ctypes.c_int, ListPOINTER(ctypes.c_char_p)) return f(argc, argv) def libvlc_release(p_instance): '''Decrement the reference count of a libvlc instance, and destroy it if it reaches zero. @param p_instance: the instance to destroy. ''' f = _Cfunctions.get('libvlc_release', None) or \ _Cfunction('libvlc_release', ((1,),), None, None, Instance) return f(p_instance) def libvlc_retain(p_instance): '''Increments the reference count of a libvlc instance. The initial reference count is 1 after L{libvlc_new}() returns. @param p_instance: the instance to reference. ''' f = _Cfunctions.get('libvlc_retain', None) or \ _Cfunction('libvlc_retain', ((1,),), None, None, Instance) return f(p_instance) def libvlc_add_intf(p_instance, name): '''Try to start a user interface for the libvlc instance. @param p_instance: the instance. @param name: interface name, or None for default. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_add_intf', None) or \ _Cfunction('libvlc_add_intf', ((1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p) return f(p_instance, name) def libvlc_set_user_agent(p_instance, name, http): '''Sets the application name. LibVLC passes this as the user agent string when a protocol requires it. @param p_instance: LibVLC instance. @param name: human-readable application name, e.g. "FooBar player 1.2.3". @param http: HTTP User Agent, e.g. "FooBar/1.2.3 Python/2.6.0". @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_set_user_agent', None) or \ _Cfunction('libvlc_set_user_agent', ((1,), (1,), (1,),), None, None, Instance, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, name, http) def libvlc_set_app_id(p_instance, id, version, icon): '''Sets some meta-information about the application. See also L{libvlc_set_user_agent}(). @param p_instance: LibVLC instance. @param id: Java-style application identifier, e.g. "com.acme.foobar". @param version: application version numbers, e.g. "1.2.3". @param icon: application icon name, e.g. "foobar". @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_set_app_id', None) or \ _Cfunction('libvlc_set_app_id', ((1,), (1,), (1,), (1,),), None, None, Instance, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, id, version, icon) def libvlc_get_version(): '''Retrieve libvlc version. Example: "1.1.0-git The Luggage". @return: a string containing the libvlc version. ''' f = _Cfunctions.get('libvlc_get_version', None) or \ _Cfunction('libvlc_get_version', (), None, ctypes.c_char_p) return f() def libvlc_get_compiler(): '''Retrieve libvlc compiler version. Example: "gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu6)". @return: a string containing the libvlc compiler version. ''' f = _Cfunctions.get('libvlc_get_compiler', None) or \ _Cfunction('libvlc_get_compiler', (), None, ctypes.c_char_p) return f() def libvlc_get_changeset(): '''Retrieve libvlc changeset. Example: "aa9bce0bc4". @return: a string containing the libvlc changeset. ''' f = _Cfunctions.get('libvlc_get_changeset', None) or \ _Cfunction('libvlc_get_changeset', (), None, ctypes.c_char_p) return f() def libvlc_free(ptr): '''Frees an heap allocation returned by a LibVLC function. If you know you're using the same underlying C run-time as the LibVLC implementation, then you can call ANSI C free() directly instead. @param ptr: the pointer. ''' f = _Cfunctions.get('libvlc_free', None) or \ _Cfunction('libvlc_free', ((1,),), None, None, ctypes.c_void_p) return f(ptr) def libvlc_event_attach(p_event_manager, i_event_type, f_callback, user_data): '''Register for an event notification. @param p_event_manager: the event manager to which you want to attach to. Generally it is obtained by vlc_my_object_event_manager() where my_object is the object you want to listen to. @param i_event_type: the desired event to which we want to listen. @param f_callback: the function to call when i_event_type occurs. @param user_data: user provided data to carry with the event. @return: 0 on success, ENOMEM on error. ''' f = _Cfunctions.get('libvlc_event_attach', None) or \ _Cfunction('libvlc_event_attach', ((1,), (1,), (1,), (1,),), None, ctypes.c_int, EventManager, ctypes.c_uint, Callback, ctypes.c_void_p) return f(p_event_manager, i_event_type, f_callback, user_data) def libvlc_event_detach(p_event_manager, i_event_type, f_callback, p_user_data): '''Unregister an event notification. @param p_event_manager: the event manager. @param i_event_type: the desired event to which we want to unregister. @param f_callback: the function to call when i_event_type occurs. @param p_user_data: user provided data to carry with the event. ''' f = _Cfunctions.get('libvlc_event_detach', None) or \ _Cfunction('libvlc_event_detach', ((1,), (1,), (1,), (1,),), None, None, EventManager, ctypes.c_uint, Callback, ctypes.c_void_p) return f(p_event_manager, i_event_type, f_callback, p_user_data) def libvlc_event_type_name(event_type): '''Get an event's type name. @param event_type: the desired event. ''' f = _Cfunctions.get('libvlc_event_type_name', None) or \ _Cfunction('libvlc_event_type_name', ((1,),), None, ctypes.c_char_p, ctypes.c_uint) return f(event_type) def libvlc_log_get_context(ctx): '''Gets debugging information about a log message: the name of the VLC module emitting the message and the message location within the source code. The returned module name and file name will be None if unknown. The returned line number will similarly be zero if unknown. @param ctx: message context (as passed to the @ref libvlc_log_cb callback). @return: module module name storage (or None), file source code file name storage (or None), line source code file line number storage (or None). @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_log_get_context', None) or \ _Cfunction('libvlc_log_get_context', ((1,), (2,), (2,), (2,),), None, None, Log_ptr, ListPOINTER(ctypes.c_char_p), ListPOINTER(ctypes.c_char_p), ctypes.POINTER(ctypes.c_uint)) return f(ctx) def libvlc_log_get_object(ctx, id): '''Gets VLC object information about a log message: the type name of the VLC object emitting the message, the object header if any and a temporaly-unique object identifier. This information is mainly meant for B{manual} troubleshooting. The returned type name may be "generic" if unknown, but it cannot be None. The returned header will be None if unset; in current versions, the header is used to distinguish for VLM inputs. The returned object ID will be zero if the message is not associated with any VLC object. @param ctx: message context (as passed to the @ref libvlc_log_cb callback). @return: name object name storage (or None), header object header (or None), line source code file line number storage (or None). @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_log_get_object', None) or \ _Cfunction('libvlc_log_get_object', ((1,), (2,), (2,), (1,),), None, None, Log_ptr, ListPOINTER(ctypes.c_char_p), ListPOINTER(ctypes.c_char_p), ctypes.POINTER(ctypes.c_uint)) return f(ctx, id) def libvlc_log_unset(p_instance): '''Unsets the logging callback for a LibVLC instance. This is rarely needed: the callback is implicitly unset when the instance is destroyed. This function will wait for any pending callbacks invocation to complete (causing a deadlock if called from within the callback). @param p_instance: libvlc instance. @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_log_unset', None) or \ _Cfunction('libvlc_log_unset', ((1,),), None, None, Instance) return f(p_instance) def libvlc_log_set(cb, data, p_instance): '''Sets the logging callback for a LibVLC instance. This function is thread-safe: it will wait for any pending callbacks invocation to complete. @param cb: callback function pointer. @param data: opaque data pointer for the callback function @note Some log messages (especially debug) are emitted by LibVLC while is being initialized. These messages cannot be captured with this interface. @warning A deadlock may occur if this function is called from the callback. @param p_instance: libvlc instance. @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_log_set', None) or \ _Cfunction('libvlc_log_set', ((1,), (1,), (1,),), None, None, Instance, LogCb, ctypes.c_void_p) return f(cb, data, p_instance) def libvlc_log_set_file(p_instance, stream): '''Sets up logging to a file. @param p_instance: libvlc instance. @param stream: FILE pointer opened for writing (the FILE pointer must remain valid until L{libvlc_log_unset}()). @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_log_set_file', None) or \ _Cfunction('libvlc_log_set_file', ((1,), (1,),), None, None, Instance, FILE_ptr) return f(p_instance, stream) def libvlc_module_description_list_release(p_list): '''Release a list of module descriptions. @param p_list: the list to be released. ''' f = _Cfunctions.get('libvlc_module_description_list_release', None) or \ _Cfunction('libvlc_module_description_list_release', ((1,),), None, None, ctypes.POINTER(ModuleDescription)) return f(p_list) def libvlc_audio_filter_list_get(p_instance): '''Returns a list of audio filters that are available. @param p_instance: libvlc instance. @return: a list of module descriptions. It should be freed with L{libvlc_module_description_list_release}(). In case of an error, None is returned. See L{ModuleDescription} See L{libvlc_module_description_list_release}. ''' f = _Cfunctions.get('libvlc_audio_filter_list_get', None) or \ _Cfunction('libvlc_audio_filter_list_get', ((1,),), None, ctypes.POINTER(ModuleDescription), Instance) return f(p_instance) def libvlc_video_filter_list_get(p_instance): '''Returns a list of video filters that are available. @param p_instance: libvlc instance. @return: a list of module descriptions. It should be freed with L{libvlc_module_description_list_release}(). In case of an error, None is returned. See L{ModuleDescription} See L{libvlc_module_description_list_release}. ''' f = _Cfunctions.get('libvlc_video_filter_list_get', None) or \ _Cfunction('libvlc_video_filter_list_get', ((1,),), None, ctypes.POINTER(ModuleDescription), Instance) return f(p_instance) def libvlc_clock(): '''Return the current time as defined by LibVLC. The unit is the microsecond. Time increases monotonically (regardless of time zone changes and RTC adjustements). The origin is arbitrary but consistent across the whole system (e.g. the system uptim, the time since the system was booted). @note: On systems that support it, the POSIX monotonic clock is used. ''' f = _Cfunctions.get('libvlc_clock', None) or \ _Cfunction('libvlc_clock', (), None, ctypes.c_int64) return f() def libvlc_media_new_location(p_instance, psz_mrl): '''Create a media with a certain given media resource location, for instance a valid URL. @note: To refer to a local file with this function, the file://... URI syntax B{must} be used (see IETF RFC3986). We recommend using L{libvlc_media_new_path}() instead when dealing with local files. See L{libvlc_media_release}. @param p_instance: the instance. @param psz_mrl: the media location. @return: the newly created media or None on error. ''' f = _Cfunctions.get('libvlc_media_new_location', None) or \ _Cfunction('libvlc_media_new_location', ((1,), (1,),), class_result(Media), ctypes.c_void_p, Instance, ctypes.c_char_p) return f(p_instance, psz_mrl) def libvlc_media_new_path(p_instance, path): '''Create a media for a certain file path. See L{libvlc_media_release}. @param p_instance: the instance. @param path: local filesystem path. @return: the newly created media or None on error. ''' f = _Cfunctions.get('libvlc_media_new_path', None) or \ _Cfunction('libvlc_media_new_path', ((1,), (1,),), class_result(Media), ctypes.c_void_p, Instance, ctypes.c_char_p) return f(p_instance, path) def libvlc_media_new_fd(p_instance, fd): '''Create a media for an already open file descriptor. The file descriptor shall be open for reading (or reading and writing). Regular file descriptors, pipe read descriptors and character device descriptors (including TTYs) are supported on all platforms. Block device descriptors are supported where available. Directory descriptors are supported on systems that provide fdopendir(). Sockets are supported on all platforms where they are file descriptors, i.e. all except Windows. @note: This library will B{not} automatically close the file descriptor under any circumstance. Nevertheless, a file descriptor can usually only be rendered once in a media player. To render it a second time, the file descriptor should probably be rewound to the beginning with lseek(). See L{libvlc_media_release}. @param p_instance: the instance. @param fd: open file descriptor. @return: the newly created media or None on error. @version: LibVLC 1.1.5 and later. ''' f = _Cfunctions.get('libvlc_media_new_fd', None) or \ _Cfunction('libvlc_media_new_fd', ((1,), (1,),), class_result(Media), ctypes.c_void_p, Instance, ctypes.c_int) return f(p_instance, fd) def libvlc_media_new_as_node(p_instance, psz_name): '''Create a media as an empty node with a given name. See L{libvlc_media_release}. @param p_instance: the instance. @param psz_name: the name of the node. @return: the new empty media or None on error. ''' f = _Cfunctions.get('libvlc_media_new_as_node', None) or \ _Cfunction('libvlc_media_new_as_node', ((1,), (1,),), class_result(Media), ctypes.c_void_p, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_media_add_option(p_md, psz_options): '''Add an option to the media. This option will be used to determine how the media_player will read the media. This allows to use VLC's advanced reading/streaming options on a per-media basis. @note: The options are listed in 'vlc --long-help' from the command line, e.g. "-sout-all". Keep in mind that available options and their semantics vary across LibVLC versions and builds. @warning: Not all options affects L{Media} objects: Specifically, due to architectural issues most audio and video options, such as text renderer options, have no effects on an individual media. These options must be set through L{libvlc_new}() instead. @param p_md: the media descriptor. @param psz_options: the options (as a string). ''' f = _Cfunctions.get('libvlc_media_add_option', None) or \ _Cfunction('libvlc_media_add_option', ((1,), (1,),), None, None, Media, ctypes.c_char_p) return f(p_md, psz_options) def libvlc_media_add_option_flag(p_md, psz_options, i_flags): '''Add an option to the media with configurable flags. This option will be used to determine how the media_player will read the media. This allows to use VLC's advanced reading/streaming options on a per-media basis. The options are detailed in vlc --long-help, for instance "--sout-all". Note that all options are not usable on medias: specifically, due to architectural issues, video-related options such as text renderer options cannot be set on a single media. They must be set on the whole libvlc instance instead. @param p_md: the media descriptor. @param psz_options: the options (as a string). @param i_flags: the flags for this option. ''' f = _Cfunctions.get('libvlc_media_add_option_flag', None) or \ _Cfunction('libvlc_media_add_option_flag', ((1,), (1,), (1,),), None, None, Media, ctypes.c_char_p, ctypes.c_uint) return f(p_md, psz_options, i_flags) def libvlc_media_retain(p_md): '''Retain a reference to a media descriptor object (libvlc_media_t). Use L{libvlc_media_release}() to decrement the reference count of a media descriptor object. @param p_md: the media descriptor. ''' f = _Cfunctions.get('libvlc_media_retain', None) or \ _Cfunction('libvlc_media_retain', ((1,),), None, None, Media) return f(p_md) def libvlc_media_release(p_md): '''Decrement the reference count of a media descriptor object. If the reference count is 0, then L{libvlc_media_release}() will release the media descriptor object. It will send out an libvlc_MediaFreed event to all listeners. If the media descriptor object has been released it should not be used again. @param p_md: the media descriptor. ''' f = _Cfunctions.get('libvlc_media_release', None) or \ _Cfunction('libvlc_media_release', ((1,),), None, None, Media) return f(p_md) def libvlc_media_get_mrl(p_md): '''Get the media resource locator (mrl) from a media descriptor object. @param p_md: a media descriptor object. @return: string with mrl of media descriptor object. ''' f = _Cfunctions.get('libvlc_media_get_mrl', None) or \ _Cfunction('libvlc_media_get_mrl', ((1,),), string_result, ctypes.c_void_p, Media) return f(p_md) def libvlc_media_duplicate(p_md): '''Duplicate a media descriptor object. @param p_md: a media descriptor object. ''' f = _Cfunctions.get('libvlc_media_duplicate', None) or \ _Cfunction('libvlc_media_duplicate', ((1,),), class_result(Media), ctypes.c_void_p, Media) return f(p_md) def libvlc_media_get_meta(p_md, e_meta): '''Read the meta of the media. If the media has not yet been parsed this will return None. This methods automatically calls L{libvlc_media_parse_async}(), so after calling it you may receive a libvlc_MediaMetaChanged event. If you prefer a synchronous version ensure that you call L{libvlc_media_parse}() before get_meta(). See L{libvlc_media_parse} See L{libvlc_media_parse_async} See libvlc_MediaMetaChanged. @param p_md: the media descriptor. @param e_meta: the meta to read. @return: the media's meta. ''' f = _Cfunctions.get('libvlc_media_get_meta', None) or \ _Cfunction('libvlc_media_get_meta', ((1,), (1,),), string_result, ctypes.c_void_p, Media, Meta) return f(p_md, e_meta) def libvlc_media_set_meta(p_md, e_meta, psz_value): '''Set the meta of the media (this function will not save the meta, call L{libvlc_media_save_meta} in order to save the meta). @param p_md: the media descriptor. @param e_meta: the meta to write. @param psz_value: the media's meta. ''' f = _Cfunctions.get('libvlc_media_set_meta', None) or \ _Cfunction('libvlc_media_set_meta', ((1,), (1,), (1,),), None, None, Media, Meta, ctypes.c_char_p) return f(p_md, e_meta, psz_value) def libvlc_media_save_meta(p_md): '''Save the meta previously set. @param p_md: the media desriptor. @return: true if the write operation was successful. ''' f = _Cfunctions.get('libvlc_media_save_meta', None) or \ _Cfunction('libvlc_media_save_meta', ((1,),), None, ctypes.c_int, Media) return f(p_md) def libvlc_media_get_state(p_md): '''Get current state of media descriptor object. Possible media states are defined in libvlc_structures.c ( libvlc_NothingSpecial=0, libvlc_Opening, libvlc_Buffering, libvlc_Playing, libvlc_Paused, libvlc_Stopped, libvlc_Ended, libvlc_Error). See libvlc_state_t. @param p_md: a media descriptor object. @return: state of media descriptor object. ''' f = _Cfunctions.get('libvlc_media_get_state', None) or \ _Cfunction('libvlc_media_get_state', ((1,),), None, State, Media) return f(p_md) def libvlc_media_get_stats(p_md, p_stats): '''Get the current statistics about the media. @param p_md:: media descriptor object. @param p_stats:: structure that contain the statistics about the media (this structure must be allocated by the caller). @return: true if the statistics are available, false otherwise \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_get_stats', None) or \ _Cfunction('libvlc_media_get_stats', ((1,), (1,),), None, ctypes.c_int, Media, ctypes.POINTER(MediaStats)) return f(p_md, p_stats) def libvlc_media_subitems(p_md): '''Get subitems of media descriptor object. This will increment the reference count of supplied media descriptor object. Use L{libvlc_media_list_release}() to decrement the reference counting. @param p_md: media descriptor object. @return: list of media descriptor subitems or None. ''' f = _Cfunctions.get('libvlc_media_subitems', None) or \ _Cfunction('libvlc_media_subitems', ((1,),), class_result(MediaList), ctypes.c_void_p, Media) return f(p_md) def libvlc_media_event_manager(p_md): '''Get event manager from media descriptor object. NOTE: this function doesn't increment reference counting. @param p_md: a media descriptor object. @return: event manager object. ''' f = _Cfunctions.get('libvlc_media_event_manager', None) or \ _Cfunction('libvlc_media_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, Media) return f(p_md) def libvlc_media_get_duration(p_md): '''Get duration (in ms) of media descriptor object item. @param p_md: media descriptor object. @return: duration of media item or -1 on error. ''' f = _Cfunctions.get('libvlc_media_get_duration', None) or \ _Cfunction('libvlc_media_get_duration', ((1,),), None, ctypes.c_longlong, Media) return f(p_md) def libvlc_media_parse(p_md): '''Parse a media. This fetches (local) meta data and tracks information. The method is synchronous. See L{libvlc_media_parse_async} See L{libvlc_media_get_meta} See libvlc_media_get_tracks_info. @param p_md: media descriptor object. ''' f = _Cfunctions.get('libvlc_media_parse', None) or \ _Cfunction('libvlc_media_parse', ((1,),), None, None, Media) return f(p_md) def libvlc_media_parse_async(p_md): '''Parse a media. This fetches (local) meta data and tracks information. The method is the asynchronous of L{libvlc_media_parse}(). To track when this is over you can listen to libvlc_MediaParsedChanged event. However if the media was already parsed you will not receive this event. See L{libvlc_media_parse} See libvlc_MediaParsedChanged See L{libvlc_media_get_meta} See libvlc_media_get_tracks_info. @param p_md: media descriptor object. ''' f = _Cfunctions.get('libvlc_media_parse_async', None) or \ _Cfunction('libvlc_media_parse_async', ((1,),), None, None, Media) return f(p_md) def libvlc_media_is_parsed(p_md): '''Get Parsed status for media descriptor object. See libvlc_MediaParsedChanged. @param p_md: media descriptor object. @return: true if media object has been parsed otherwise it returns false \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_is_parsed', None) or \ _Cfunction('libvlc_media_is_parsed', ((1,),), None, ctypes.c_int, Media) return f(p_md) def libvlc_media_set_user_data(p_md, p_new_user_data): '''Sets media descriptor's user_data. user_data is specialized data accessed by the host application, VLC.framework uses it as a pointer to an native object that references a L{Media} pointer. @param p_md: media descriptor object. @param p_new_user_data: pointer to user data. ''' f = _Cfunctions.get('libvlc_media_set_user_data', None) or \ _Cfunction('libvlc_media_set_user_data', ((1,), (1,),), None, None, Media, ctypes.c_void_p) return f(p_md, p_new_user_data) def libvlc_media_get_user_data(p_md): '''Get media descriptor's user_data. user_data is specialized data accessed by the host application, VLC.framework uses it as a pointer to an native object that references a L{Media} pointer. @param p_md: media descriptor object. ''' f = _Cfunctions.get('libvlc_media_get_user_data', None) or \ _Cfunction('libvlc_media_get_user_data', ((1,),), None, ctypes.c_void_p, Media) return f(p_md) def libvlc_media_tracks_get(p_md, tracks): '''Get media descriptor's elementary streams description Note, you need to call L{libvlc_media_parse}() or play the media at least once before calling this function. Not doing this will result in an empty array. @param p_md: media descriptor object. @param tracks: address to store an allocated array of Elementary Streams descriptions (must be freed with L{libvlc_media_tracks_release}. @return: the number of Elementary Streams (zero on error). @version: LibVLC 2.1.0 and later. ''' f = _Cfunctions.get('libvlc_media_tracks_get', None) or \ _Cfunction('libvlc_media_tracks_get', ((1,), (1,),), None, ctypes.c_uint, Media, ctypes.POINTER(ctypes.POINTER(MediaTrack))) return f(p_md, tracks) def libvlc_media_tracks_release(p_tracks, i_count): '''Release media descriptor's elementary streams description array. @param p_tracks: tracks info array to release. @param i_count: number of elements in the array. @version: LibVLC 2.1.0 and later. ''' f = _Cfunctions.get('libvlc_media_tracks_release', None) or \ _Cfunction('libvlc_media_tracks_release', ((1,), (1,),), None, None, ctypes.POINTER(MediaTrack), ctypes.c_uint) return f(p_tracks, i_count) def libvlc_media_discoverer_new_from_name(p_inst, psz_name): '''Discover media service by name. @param p_inst: libvlc instance. @param psz_name: service name. @return: media discover object or None in case of error. ''' f = _Cfunctions.get('libvlc_media_discoverer_new_from_name', None) or \ _Cfunction('libvlc_media_discoverer_new_from_name', ((1,), (1,),), class_result(MediaDiscoverer), ctypes.c_void_p, Instance, ctypes.c_char_p) return f(p_inst, psz_name) def libvlc_media_discoverer_release(p_mdis): '''Release media discover object. If the reference count reaches 0, then the object will be released. @param p_mdis: media service discover object. ''' f = _Cfunctions.get('libvlc_media_discoverer_release', None) or \ _Cfunction('libvlc_media_discoverer_release', ((1,),), None, None, MediaDiscoverer) return f(p_mdis) def libvlc_media_discoverer_localized_name(p_mdis): '''Get media service discover object its localized name. @param p_mdis: media discover object. @return: localized name. ''' f = _Cfunctions.get('libvlc_media_discoverer_localized_name', None) or \ _Cfunction('libvlc_media_discoverer_localized_name', ((1,),), string_result, ctypes.c_void_p, MediaDiscoverer) return f(p_mdis) def libvlc_media_discoverer_media_list(p_mdis): '''Get media service discover media list. @param p_mdis: media service discover object. @return: list of media items. ''' f = _Cfunctions.get('libvlc_media_discoverer_media_list', None) or \ _Cfunction('libvlc_media_discoverer_media_list', ((1,),), class_result(MediaList), ctypes.c_void_p, MediaDiscoverer) return f(p_mdis) def libvlc_media_discoverer_event_manager(p_mdis): '''Get event manager from media service discover object. @param p_mdis: media service discover object. @return: event manager object. ''' f = _Cfunctions.get('libvlc_media_discoverer_event_manager', None) or \ _Cfunction('libvlc_media_discoverer_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, MediaDiscoverer) return f(p_mdis) def libvlc_media_discoverer_is_running(p_mdis): '''Query if media service discover object is running. @param p_mdis: media service discover object. @return: true if running, false if not \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_discoverer_is_running', None) or \ _Cfunction('libvlc_media_discoverer_is_running', ((1,),), None, ctypes.c_int, MediaDiscoverer) return f(p_mdis) def libvlc_media_library_new(p_instance): '''Create an new Media Library object. @param p_instance: the libvlc instance. @return: a new object or None on error. ''' f = _Cfunctions.get('libvlc_media_library_new', None) or \ _Cfunction('libvlc_media_library_new', ((1,),), class_result(MediaLibrary), ctypes.c_void_p, Instance) return f(p_instance) def libvlc_media_library_release(p_mlib): '''Release media library object. This functions decrements the reference count of the media library object. If it reaches 0, then the object will be released. @param p_mlib: media library object. ''' f = _Cfunctions.get('libvlc_media_library_release', None) or \ _Cfunction('libvlc_media_library_release', ((1,),), None, None, MediaLibrary) return f(p_mlib) def libvlc_media_library_retain(p_mlib): '''Retain a reference to a media library object. This function will increment the reference counting for this object. Use L{libvlc_media_library_release}() to decrement the reference count. @param p_mlib: media library object. ''' f = _Cfunctions.get('libvlc_media_library_retain', None) or \ _Cfunction('libvlc_media_library_retain', ((1,),), None, None, MediaLibrary) return f(p_mlib) def libvlc_media_library_load(p_mlib): '''Load media library. @param p_mlib: media library object. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_media_library_load', None) or \ _Cfunction('libvlc_media_library_load', ((1,),), None, ctypes.c_int, MediaLibrary) return f(p_mlib) def libvlc_media_library_media_list(p_mlib): '''Get media library subitems. @param p_mlib: media library object. @return: media list subitems. ''' f = _Cfunctions.get('libvlc_media_library_media_list', None) or \ _Cfunction('libvlc_media_library_media_list', ((1,),), class_result(MediaList), ctypes.c_void_p, MediaLibrary) return f(p_mlib) def libvlc_media_list_new(p_instance): '''Create an empty media list. @param p_instance: libvlc instance. @return: empty media list, or None on error. ''' f = _Cfunctions.get('libvlc_media_list_new', None) or \ _Cfunction('libvlc_media_list_new', ((1,),), class_result(MediaList), ctypes.c_void_p, Instance) return f(p_instance) def libvlc_media_list_release(p_ml): '''Release media list created with L{libvlc_media_list_new}(). @param p_ml: a media list created with L{libvlc_media_list_new}(). ''' f = _Cfunctions.get('libvlc_media_list_release', None) or \ _Cfunction('libvlc_media_list_release', ((1,),), None, None, MediaList) return f(p_ml) def libvlc_media_list_retain(p_ml): '''Retain reference to a media list. @param p_ml: a media list created with L{libvlc_media_list_new}(). ''' f = _Cfunctions.get('libvlc_media_list_retain', None) or \ _Cfunction('libvlc_media_list_retain', ((1,),), None, None, MediaList) return f(p_ml) def libvlc_media_list_set_media(p_ml, p_md): '''Associate media instance with this media list instance. If another media instance was present it will be released. The L{libvlc_media_list_lock} should NOT be held upon entering this function. @param p_ml: a media list instance. @param p_md: media instance to add. ''' f = _Cfunctions.get('libvlc_media_list_set_media', None) or \ _Cfunction('libvlc_media_list_set_media', ((1,), (1,),), None, None, MediaList, Media) return f(p_ml, p_md) def libvlc_media_list_media(p_ml): '''Get media instance from this media list instance. This action will increase the refcount on the media instance. The L{libvlc_media_list_lock} should NOT be held upon entering this function. @param p_ml: a media list instance. @return: media instance. ''' f = _Cfunctions.get('libvlc_media_list_media', None) or \ _Cfunction('libvlc_media_list_media', ((1,),), class_result(Media), ctypes.c_void_p, MediaList) return f(p_ml) def libvlc_media_list_add_media(p_ml, p_md): '''Add media instance to media list The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @param p_md: a media instance. @return: 0 on success, -1 if the media list is read-only. ''' f = _Cfunctions.get('libvlc_media_list_add_media', None) or \ _Cfunction('libvlc_media_list_add_media', ((1,), (1,),), None, ctypes.c_int, MediaList, Media) return f(p_ml, p_md) def libvlc_media_list_insert_media(p_ml, p_md, i_pos): '''Insert media instance in media list on a position The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @param p_md: a media instance. @param i_pos: position in array where to insert. @return: 0 on success, -1 if the media list is read-only. ''' f = _Cfunctions.get('libvlc_media_list_insert_media', None) or \ _Cfunction('libvlc_media_list_insert_media', ((1,), (1,), (1,),), None, ctypes.c_int, MediaList, Media, ctypes.c_int) return f(p_ml, p_md, i_pos) def libvlc_media_list_remove_index(p_ml, i_pos): '''Remove media instance from media list on a position The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @param i_pos: position in array where to insert. @return: 0 on success, -1 if the list is read-only or the item was not found. ''' f = _Cfunctions.get('libvlc_media_list_remove_index', None) or \ _Cfunction('libvlc_media_list_remove_index', ((1,), (1,),), None, ctypes.c_int, MediaList, ctypes.c_int) return f(p_ml, i_pos) def libvlc_media_list_count(p_ml): '''Get count on media list items The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @return: number of items in media list. ''' f = _Cfunctions.get('libvlc_media_list_count', None) or \ _Cfunction('libvlc_media_list_count', ((1,),), None, ctypes.c_int, MediaList) return f(p_ml) def libvlc_media_list_item_at_index(p_ml, i_pos): '''List media instance in media list at a position The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @param i_pos: position in array where to insert. @return: media instance at position i_pos, or None if not found. In case of success, L{libvlc_media_retain}() is called to increase the refcount on the media. ''' f = _Cfunctions.get('libvlc_media_list_item_at_index', None) or \ _Cfunction('libvlc_media_list_item_at_index', ((1,), (1,),), class_result(Media), ctypes.c_void_p, MediaList, ctypes.c_int) return f(p_ml, i_pos) def libvlc_media_list_index_of_item(p_ml, p_md): '''Find index position of List media instance in media list. Warning: the function will return the first matched position. The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. @param p_md: media instance. @return: position of media instance or -1 if media not found. ''' f = _Cfunctions.get('libvlc_media_list_index_of_item', None) or \ _Cfunction('libvlc_media_list_index_of_item', ((1,), (1,),), None, ctypes.c_int, MediaList, Media) return f(p_ml, p_md) def libvlc_media_list_is_readonly(p_ml): '''This indicates if this media list is read-only from a user point of view. @param p_ml: media list instance. @return: 1 on readonly, 0 on readwrite \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_list_is_readonly', None) or \ _Cfunction('libvlc_media_list_is_readonly', ((1,),), None, ctypes.c_int, MediaList) return f(p_ml) def libvlc_media_list_lock(p_ml): '''Get lock on media list items. @param p_ml: a media list instance. ''' f = _Cfunctions.get('libvlc_media_list_lock', None) or \ _Cfunction('libvlc_media_list_lock', ((1,),), None, None, MediaList) return f(p_ml) def libvlc_media_list_unlock(p_ml): '''Release lock on media list items The L{libvlc_media_list_lock} should be held upon entering this function. @param p_ml: a media list instance. ''' f = _Cfunctions.get('libvlc_media_list_unlock', None) or \ _Cfunction('libvlc_media_list_unlock', ((1,),), None, None, MediaList) return f(p_ml) def libvlc_media_list_event_manager(p_ml): '''Get libvlc_event_manager from this media list instance. The p_event_manager is immutable, so you don't have to hold the lock. @param p_ml: a media list instance. @return: libvlc_event_manager. ''' f = _Cfunctions.get('libvlc_media_list_event_manager', None) or \ _Cfunction('libvlc_media_list_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, MediaList) return f(p_ml) def libvlc_media_list_player_new(p_instance): '''Create new media_list_player. @param p_instance: libvlc instance. @return: media list player instance or None on error. ''' f = _Cfunctions.get('libvlc_media_list_player_new', None) or \ _Cfunction('libvlc_media_list_player_new', ((1,),), class_result(MediaListPlayer), ctypes.c_void_p, Instance) return f(p_instance) def libvlc_media_list_player_release(p_mlp): '''Release a media_list_player after use Decrement the reference count of a media player object. If the reference count is 0, then L{libvlc_media_list_player_release}() will release the media player object. If the media player object has been released, then it should not be used again. @param p_mlp: media list player instance. ''' f = _Cfunctions.get('libvlc_media_list_player_release', None) or \ _Cfunction('libvlc_media_list_player_release', ((1,),), None, None, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_retain(p_mlp): '''Retain a reference to a media player list object. Use L{libvlc_media_list_player_release}() to decrement reference count. @param p_mlp: media player list object. ''' f = _Cfunctions.get('libvlc_media_list_player_retain', None) or \ _Cfunction('libvlc_media_list_player_retain', ((1,),), None, None, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_event_manager(p_mlp): '''Return the event manager of this media_list_player. @param p_mlp: media list player instance. @return: the event manager. ''' f = _Cfunctions.get('libvlc_media_list_player_event_manager', None) or \ _Cfunction('libvlc_media_list_player_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_set_media_player(p_mlp, p_mi): '''Replace media player in media_list_player with this instance. @param p_mlp: media list player instance. @param p_mi: media player instance. ''' f = _Cfunctions.get('libvlc_media_list_player_set_media_player', None) or \ _Cfunction('libvlc_media_list_player_set_media_player', ((1,), (1,),), None, None, MediaListPlayer, MediaPlayer) return f(p_mlp, p_mi) def libvlc_media_list_player_set_media_list(p_mlp, p_mlist): '''Set the media list associated with the player. @param p_mlp: media list player instance. @param p_mlist: list of media. ''' f = _Cfunctions.get('libvlc_media_list_player_set_media_list', None) or \ _Cfunction('libvlc_media_list_player_set_media_list', ((1,), (1,),), None, None, MediaListPlayer, MediaList) return f(p_mlp, p_mlist) def libvlc_media_list_player_play(p_mlp): '''Play media list. @param p_mlp: media list player instance. ''' f = _Cfunctions.get('libvlc_media_list_player_play', None) or \ _Cfunction('libvlc_media_list_player_play', ((1,),), None, None, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_pause(p_mlp): '''Toggle pause (or resume) media list. @param p_mlp: media list player instance. ''' f = _Cfunctions.get('libvlc_media_list_player_pause', None) or \ _Cfunction('libvlc_media_list_player_pause', ((1,),), None, None, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_is_playing(p_mlp): '''Is media list playing? @param p_mlp: media list player instance. @return: true for playing and false for not playing \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_list_player_is_playing', None) or \ _Cfunction('libvlc_media_list_player_is_playing', ((1,),), None, ctypes.c_int, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_get_state(p_mlp): '''Get current libvlc_state of media list player. @param p_mlp: media list player instance. @return: libvlc_state_t for media list player. ''' f = _Cfunctions.get('libvlc_media_list_player_get_state', None) or \ _Cfunction('libvlc_media_list_player_get_state', ((1,),), None, State, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_play_item_at_index(p_mlp, i_index): '''Play media list item at position index. @param p_mlp: media list player instance. @param i_index: index in media list to play. @return: 0 upon success -1 if the item wasn't found. ''' f = _Cfunctions.get('libvlc_media_list_player_play_item_at_index', None) or \ _Cfunction('libvlc_media_list_player_play_item_at_index', ((1,), (1,),), None, ctypes.c_int, MediaListPlayer, ctypes.c_int) return f(p_mlp, i_index) def libvlc_media_list_player_play_item(p_mlp, p_md): '''Play the given media item. @param p_mlp: media list player instance. @param p_md: the media instance. @return: 0 upon success, -1 if the media is not part of the media list. ''' f = _Cfunctions.get('libvlc_media_list_player_play_item', None) or \ _Cfunction('libvlc_media_list_player_play_item', ((1,), (1,),), None, ctypes.c_int, MediaListPlayer, Media) return f(p_mlp, p_md) def libvlc_media_list_player_stop(p_mlp): '''Stop playing media list. @param p_mlp: media list player instance. ''' f = _Cfunctions.get('libvlc_media_list_player_stop', None) or \ _Cfunction('libvlc_media_list_player_stop', ((1,),), None, None, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_next(p_mlp): '''Play next item from media list. @param p_mlp: media list player instance. @return: 0 upon success -1 if there is no next item. ''' f = _Cfunctions.get('libvlc_media_list_player_next', None) or \ _Cfunction('libvlc_media_list_player_next', ((1,),), None, ctypes.c_int, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_previous(p_mlp): '''Play previous item from media list. @param p_mlp: media list player instance. @return: 0 upon success -1 if there is no previous item. ''' f = _Cfunctions.get('libvlc_media_list_player_previous', None) or \ _Cfunction('libvlc_media_list_player_previous', ((1,),), None, ctypes.c_int, MediaListPlayer) return f(p_mlp) def libvlc_media_list_player_set_playback_mode(p_mlp, e_mode): '''Sets the playback mode for the playlist. @param p_mlp: media list player instance. @param e_mode: playback mode specification. ''' f = _Cfunctions.get('libvlc_media_list_player_set_playback_mode', None) or \ _Cfunction('libvlc_media_list_player_set_playback_mode', ((1,), (1,),), None, None, MediaListPlayer, PlaybackMode) return f(p_mlp, e_mode) def libvlc_media_player_new(p_libvlc_instance): '''Create an empty Media Player object. @param p_libvlc_instance: the libvlc instance in which the Media Player should be created. @return: a new media player object, or None on error. ''' f = _Cfunctions.get('libvlc_media_player_new', None) or \ _Cfunction('libvlc_media_player_new', ((1,),), class_result(MediaPlayer), ctypes.c_void_p, Instance) return f(p_libvlc_instance) def libvlc_media_player_new_from_media(p_md): '''Create a Media Player object from a Media. @param p_md: the media. Afterwards the p_md can be safely destroyed. @return: a new media player object, or None on error. ''' f = _Cfunctions.get('libvlc_media_player_new_from_media', None) or \ _Cfunction('libvlc_media_player_new_from_media', ((1,),), class_result(MediaPlayer), ctypes.c_void_p, Media) return f(p_md) def libvlc_media_player_release(p_mi): '''Release a media_player after use Decrement the reference count of a media player object. If the reference count is 0, then L{libvlc_media_player_release}() will release the media player object. If the media player object has been released, then it should not be used again. @param p_mi: the Media Player to free. ''' f = _Cfunctions.get('libvlc_media_player_release', None) or \ _Cfunction('libvlc_media_player_release', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_retain(p_mi): '''Retain a reference to a media player object. Use L{libvlc_media_player_release}() to decrement reference count. @param p_mi: media player object. ''' f = _Cfunctions.get('libvlc_media_player_retain', None) or \ _Cfunction('libvlc_media_player_retain', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_set_media(p_mi, p_md): '''Set the media that will be used by the media_player. If any, previous md will be released. @param p_mi: the Media Player. @param p_md: the Media. Afterwards the p_md can be safely destroyed. ''' f = _Cfunctions.get('libvlc_media_player_set_media', None) or \ _Cfunction('libvlc_media_player_set_media', ((1,), (1,),), None, None, MediaPlayer, Media) return f(p_mi, p_md) def libvlc_media_player_get_media(p_mi): '''Get the media used by the media_player. @param p_mi: the Media Player. @return: the media associated with p_mi, or None if no media is associated. ''' f = _Cfunctions.get('libvlc_media_player_get_media', None) or \ _Cfunction('libvlc_media_player_get_media', ((1,),), class_result(Media), ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_media_player_event_manager(p_mi): '''Get the Event Manager from which the media player send event. @param p_mi: the Media Player. @return: the event manager associated with p_mi. ''' f = _Cfunctions.get('libvlc_media_player_event_manager', None) or \ _Cfunction('libvlc_media_player_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_media_player_is_playing(p_mi): '''is_playing. @param p_mi: the Media Player. @return: 1 if the media player is playing, 0 otherwise \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_player_is_playing', None) or \ _Cfunction('libvlc_media_player_is_playing', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_play(p_mi): '''Play. @param p_mi: the Media Player. @return: 0 if playback started (and was already started), or -1 on error. ''' f = _Cfunctions.get('libvlc_media_player_play', None) or \ _Cfunction('libvlc_media_player_play', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_set_pause(mp, do_pause): '''Pause or resume (no effect if there is no media). @param mp: the Media Player. @param do_pause: play/resume if zero, pause if non-zero. @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_media_player_set_pause', None) or \ _Cfunction('libvlc_media_player_set_pause', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(mp, do_pause) def libvlc_media_player_pause(p_mi): '''Toggle pause (no effect if there is no media). @param p_mi: the Media Player. ''' f = _Cfunctions.get('libvlc_media_player_pause', None) or \ _Cfunction('libvlc_media_player_pause', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_stop(p_mi): '''Stop (no effect if there is no media). @param p_mi: the Media Player. ''' f = _Cfunctions.get('libvlc_media_player_stop', None) or \ _Cfunction('libvlc_media_player_stop', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_video_set_callbacks(mp, lock, unlock, display, opaque): '''Set callbacks and private data to render decoded video to a custom area in memory. Use L{libvlc_video_set_format}() or L{libvlc_video_set_format_callbacks}() to configure the decoded format. @param mp: the media player. @param lock: callback to lock video memory (must not be None). @param unlock: callback to unlock video memory (or None if not needed). @param display: callback to display video (or None if not needed). @param opaque: private pointer for the three callbacks (as first parameter). @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_video_set_callbacks', None) or \ _Cfunction('libvlc_video_set_callbacks', ((1,), (1,), (1,), (1,), (1,),), None, None, MediaPlayer, VideoLockCb, VideoUnlockCb, VideoDisplayCb, ctypes.c_void_p) return f(mp, lock, unlock, display, opaque) def libvlc_video_set_format(mp, chroma, width, height, pitch): '''Set decoded video chroma and dimensions. This only works in combination with L{libvlc_video_set_callbacks}(), and is mutually exclusive with L{libvlc_video_set_format_callbacks}(). @param mp: the media player. @param chroma: a four-characters string identifying the chroma (e.g. "RV32" or "YUYV"). @param width: pixel width. @param height: pixel height. @param pitch: line pitch (in bytes). @version: LibVLC 1.1.1 or later. @bug: All pixel planes are expected to have the same pitch. To use the YCbCr color space with chrominance subsampling, consider using L{libvlc_video_set_format_callbacks}() instead. ''' f = _Cfunctions.get('libvlc_video_set_format', None) or \ _Cfunction('libvlc_video_set_format', ((1,), (1,), (1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p, ctypes.c_uint, ctypes.c_uint, ctypes.c_uint) return f(mp, chroma, width, height, pitch) def libvlc_video_set_format_callbacks(mp, setup, cleanup): '''Set decoded video chroma and dimensions. This only works in combination with L{libvlc_video_set_callbacks}(). @param mp: the media player. @param setup: callback to select the video format (cannot be None). @param cleanup: callback to release any allocated resources (or None). @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_video_set_format_callbacks', None) or \ _Cfunction('libvlc_video_set_format_callbacks', ((1,), (1,), (1,),), None, None, MediaPlayer, VideoFormatCb, VideoCleanupCb) return f(mp, setup, cleanup) def libvlc_media_player_set_nsobject(p_mi, drawable): '''Set the NSView handler where the media player should render its video output. Use the vout called "macosx". The drawable is an NSObject that follow the VLCOpenGLVideoViewEmbedding protocol: @begincode \@protocol VLCOpenGLVideoViewEmbedding - (void)addVoutSubview:(NSView *)view; - (void)removeVoutSubview:(NSView *)view; \@end @endcode Or it can be an NSView object. If you want to use it along with Qt4 see the QMacCocoaViewContainer. Then the following code should work: @begincode NSView *video = [[NSView alloc] init]; QMacCocoaViewContainer *container = new QMacCocoaViewContainer(video, parent); L{libvlc_media_player_set_nsobject}(mp, video); [video release]; @endcode You can find a live example in VLCVideoView in VLCKit.framework. @param p_mi: the Media Player. @param drawable: the drawable that is either an NSView or an object following the VLCOpenGLVideoViewEmbedding protocol. ''' f = _Cfunctions.get('libvlc_media_player_set_nsobject', None) or \ _Cfunction('libvlc_media_player_set_nsobject', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_void_p) return f(p_mi, drawable) def libvlc_media_player_get_nsobject(p_mi): '''Get the NSView handler previously set with L{libvlc_media_player_set_nsobject}(). @param p_mi: the Media Player. @return: the NSView handler or 0 if none where set. ''' f = _Cfunctions.get('libvlc_media_player_get_nsobject', None) or \ _Cfunction('libvlc_media_player_get_nsobject', ((1,),), None, ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_media_player_set_agl(p_mi, drawable): '''Set the agl handler where the media player should render its video output. @param p_mi: the Media Player. @param drawable: the agl handler. ''' f = _Cfunctions.get('libvlc_media_player_set_agl', None) or \ _Cfunction('libvlc_media_player_set_agl', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_uint32) return f(p_mi, drawable) def libvlc_media_player_get_agl(p_mi): '''Get the agl handler previously set with L{libvlc_media_player_set_agl}(). @param p_mi: the Media Player. @return: the agl handler or 0 if none where set. ''' f = _Cfunctions.get('libvlc_media_player_get_agl', None) or \ _Cfunction('libvlc_media_player_get_agl', ((1,),), None, ctypes.c_uint32, MediaPlayer) return f(p_mi) def libvlc_media_player_set_xwindow(p_mi, drawable): '''Set an X Window System drawable where the media player should render its video output. If LibVLC was built without X11 output support, then this has no effects. The specified identifier must correspond to an existing Input/Output class X11 window. Pixmaps are B{not} supported. The caller shall ensure that the X11 server is the same as the one the VLC instance has been configured with. This function must be called before video playback is started; otherwise it will only take effect after playback stop and restart. @param p_mi: the Media Player. @param drawable: the ID of the X window. ''' f = _Cfunctions.get('libvlc_media_player_set_xwindow', None) or \ _Cfunction('libvlc_media_player_set_xwindow', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_uint32) return f(p_mi, drawable) def libvlc_media_player_get_xwindow(p_mi): '''Get the X Window System window identifier previously set with L{libvlc_media_player_set_xwindow}(). Note that this will return the identifier even if VLC is not currently using it (for instance if it is playing an audio-only input). @param p_mi: the Media Player. @return: an X window ID, or 0 if none where set. ''' f = _Cfunctions.get('libvlc_media_player_get_xwindow', None) or \ _Cfunction('libvlc_media_player_get_xwindow', ((1,),), None, ctypes.c_uint32, MediaPlayer) return f(p_mi) def libvlc_media_player_set_hwnd(p_mi, drawable): '''Set a Win32/Win64 API window handle (HWND) where the media player should render its video output. If LibVLC was built without Win32/Win64 API output support, then this has no effects. @param p_mi: the Media Player. @param drawable: windows handle of the drawable. ''' f = _Cfunctions.get('libvlc_media_player_set_hwnd', None) or \ _Cfunction('libvlc_media_player_set_hwnd', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_void_p) return f(p_mi, drawable) def libvlc_media_player_get_hwnd(p_mi): '''Get the Windows API window handle (HWND) previously set with L{libvlc_media_player_set_hwnd}(). The handle will be returned even if LibVLC is not currently outputting any video to it. @param p_mi: the Media Player. @return: a window handle or None if there are none. ''' f = _Cfunctions.get('libvlc_media_player_get_hwnd', None) or \ _Cfunction('libvlc_media_player_get_hwnd', ((1,),), None, ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_audio_set_callbacks(mp, play, pause, resume, flush, drain, opaque): '''Set callbacks and private data for decoded audio. Use L{libvlc_audio_set_format}() or L{libvlc_audio_set_format_callbacks}() to configure the decoded audio format. @param mp: the media player. @param play: callback to play audio samples (must not be None). @param pause: callback to pause playback (or None to ignore). @param resume: callback to resume playback (or None to ignore). @param flush: callback to flush audio buffers (or None to ignore). @param drain: callback to drain audio buffers (or None to ignore). @param opaque: private pointer for the audio callbacks (as first parameter). @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_audio_set_callbacks', None) or \ _Cfunction('libvlc_audio_set_callbacks', ((1,), (1,), (1,), (1,), (1,), (1,), (1,),), None, None, MediaPlayer, AudioPlayCb, AudioPauseCb, AudioResumeCb, AudioFlushCb, AudioDrainCb, ctypes.c_void_p) return f(mp, play, pause, resume, flush, drain, opaque) def libvlc_audio_set_volume_callback(mp, set_volume): '''Set callbacks and private data for decoded audio. This only works in combination with L{libvlc_audio_set_callbacks}(). Use L{libvlc_audio_set_format}() or L{libvlc_audio_set_format_callbacks}() to configure the decoded audio format. @param mp: the media player. @param set_volume: callback to apply audio volume, or None to apply volume in software. @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_audio_set_volume_callback', None) or \ _Cfunction('libvlc_audio_set_volume_callback', ((1,), (1,),), None, None, MediaPlayer, AudioSetVolumeCb) return f(mp, set_volume) def libvlc_audio_set_format_callbacks(mp, setup, cleanup): '''Set decoded audio format. This only works in combination with L{libvlc_audio_set_callbacks}(). @param mp: the media player. @param setup: callback to select the audio format (cannot be None). @param cleanup: callback to release any allocated resources (or None). @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_audio_set_format_callbacks', None) or \ _Cfunction('libvlc_audio_set_format_callbacks', ((1,), (1,), (1,),), None, None, MediaPlayer, AudioSetupCb, AudioCleanupCb) return f(mp, setup, cleanup) def libvlc_audio_set_format(mp, format, rate, channels): '''Set decoded audio format. This only works in combination with L{libvlc_audio_set_callbacks}(), and is mutually exclusive with L{libvlc_audio_set_format_callbacks}(). @param mp: the media player. @param format: a four-characters string identifying the sample format (e.g. "S16N" or "FL32"). @param rate: sample rate (expressed in Hz). @param channels: channels count. @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_audio_set_format', None) or \ _Cfunction('libvlc_audio_set_format', ((1,), (1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p, ctypes.c_uint, ctypes.c_uint) return f(mp, format, rate, channels) def libvlc_media_player_get_length(p_mi): '''Get the current movie length (in ms). @param p_mi: the Media Player. @return: the movie length (in ms), or -1 if there is no media. ''' f = _Cfunctions.get('libvlc_media_player_get_length', None) or \ _Cfunction('libvlc_media_player_get_length', ((1,),), None, ctypes.c_longlong, MediaPlayer) return f(p_mi) def libvlc_media_player_get_time(p_mi): '''Get the current movie time (in ms). @param p_mi: the Media Player. @return: the movie time (in ms), or -1 if there is no media. ''' f = _Cfunctions.get('libvlc_media_player_get_time', None) or \ _Cfunction('libvlc_media_player_get_time', ((1,),), None, ctypes.c_longlong, MediaPlayer) return f(p_mi) def libvlc_media_player_set_time(p_mi, i_time): '''Set the movie time (in ms). This has no effect if no media is being played. Not all formats and protocols support this. @param p_mi: the Media Player. @param i_time: the movie time (in ms). ''' f = _Cfunctions.get('libvlc_media_player_set_time', None) or \ _Cfunction('libvlc_media_player_set_time', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_longlong) return f(p_mi, i_time) def libvlc_media_player_get_position(p_mi): '''Get movie position as percentage between 0.0 and 1.0. @param p_mi: the Media Player. @return: movie position, or -1. in case of error. ''' f = _Cfunctions.get('libvlc_media_player_get_position', None) or \ _Cfunction('libvlc_media_player_get_position', ((1,),), None, ctypes.c_float, MediaPlayer) return f(p_mi) def libvlc_media_player_set_position(p_mi, f_pos): '''Set movie position as percentage between 0.0 and 1.0. This has no effect if playback is not enabled. This might not work depending on the underlying input format and protocol. @param p_mi: the Media Player. @param f_pos: the position. ''' f = _Cfunctions.get('libvlc_media_player_set_position', None) or \ _Cfunction('libvlc_media_player_set_position', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_float) return f(p_mi, f_pos) def libvlc_media_player_set_chapter(p_mi, i_chapter): '''Set movie chapter (if applicable). @param p_mi: the Media Player. @param i_chapter: chapter number to play. ''' f = _Cfunctions.get('libvlc_media_player_set_chapter', None) or \ _Cfunction('libvlc_media_player_set_chapter', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(p_mi, i_chapter) def libvlc_media_player_get_chapter(p_mi): '''Get movie chapter. @param p_mi: the Media Player. @return: chapter number currently playing, or -1 if there is no media. ''' f = _Cfunctions.get('libvlc_media_player_get_chapter', None) or \ _Cfunction('libvlc_media_player_get_chapter', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_get_chapter_count(p_mi): '''Get movie chapter count. @param p_mi: the Media Player. @return: number of chapters in movie, or -1. ''' f = _Cfunctions.get('libvlc_media_player_get_chapter_count', None) or \ _Cfunction('libvlc_media_player_get_chapter_count', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_will_play(p_mi): '''Is the player able to play. @param p_mi: the Media Player. @return: boolean \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_player_will_play', None) or \ _Cfunction('libvlc_media_player_will_play', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_get_chapter_count_for_title(p_mi, i_title): '''Get title chapter count. @param p_mi: the Media Player. @param i_title: title. @return: number of chapters in title, or -1. ''' f = _Cfunctions.get('libvlc_media_player_get_chapter_count_for_title', None) or \ _Cfunction('libvlc_media_player_get_chapter_count_for_title', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, i_title) def libvlc_media_player_set_title(p_mi, i_title): '''Set movie title. @param p_mi: the Media Player. @param i_title: title number to play. ''' f = _Cfunctions.get('libvlc_media_player_set_title', None) or \ _Cfunction('libvlc_media_player_set_title', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(p_mi, i_title) def libvlc_media_player_get_title(p_mi): '''Get movie title. @param p_mi: the Media Player. @return: title number currently playing, or -1. ''' f = _Cfunctions.get('libvlc_media_player_get_title', None) or \ _Cfunction('libvlc_media_player_get_title', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_get_title_count(p_mi): '''Get movie title count. @param p_mi: the Media Player. @return: title number count, or -1. ''' f = _Cfunctions.get('libvlc_media_player_get_title_count', None) or \ _Cfunction('libvlc_media_player_get_title_count', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_previous_chapter(p_mi): '''Set previous chapter (if applicable). @param p_mi: the Media Player. ''' f = _Cfunctions.get('libvlc_media_player_previous_chapter', None) or \ _Cfunction('libvlc_media_player_previous_chapter', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_next_chapter(p_mi): '''Set next chapter (if applicable). @param p_mi: the Media Player. ''' f = _Cfunctions.get('libvlc_media_player_next_chapter', None) or \ _Cfunction('libvlc_media_player_next_chapter', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_get_rate(p_mi): '''Get the requested movie play rate. @warning: Depending on the underlying media, the requested rate may be different from the real playback rate. @param p_mi: the Media Player. @return: movie play rate. ''' f = _Cfunctions.get('libvlc_media_player_get_rate', None) or \ _Cfunction('libvlc_media_player_get_rate', ((1,),), None, ctypes.c_float, MediaPlayer) return f(p_mi) def libvlc_media_player_set_rate(p_mi, rate): '''Set movie play rate. @param p_mi: the Media Player. @param rate: movie play rate to set. @return: -1 if an error was detected, 0 otherwise (but even then, it might not actually work depending on the underlying media protocol). ''' f = _Cfunctions.get('libvlc_media_player_set_rate', None) or \ _Cfunction('libvlc_media_player_set_rate', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_float) return f(p_mi, rate) def libvlc_media_player_get_state(p_mi): '''Get current movie state. @param p_mi: the Media Player. @return: the current state of the media player (playing, paused, ...) See libvlc_state_t. ''' f = _Cfunctions.get('libvlc_media_player_get_state', None) or \ _Cfunction('libvlc_media_player_get_state', ((1,),), None, State, MediaPlayer) return f(p_mi) def libvlc_media_player_get_fps(p_mi): '''Get movie fps rate. @param p_mi: the Media Player. @return: frames per second (fps) for this playing movie, or 0 if unspecified. ''' f = _Cfunctions.get('libvlc_media_player_get_fps', None) or \ _Cfunction('libvlc_media_player_get_fps', ((1,),), None, ctypes.c_float, MediaPlayer) return f(p_mi) def libvlc_media_player_has_vout(p_mi): '''How many video outputs does this media player have? @param p_mi: the media player. @return: the number of video outputs. ''' f = _Cfunctions.get('libvlc_media_player_has_vout', None) or \ _Cfunction('libvlc_media_player_has_vout', ((1,),), None, ctypes.c_uint, MediaPlayer) return f(p_mi) def libvlc_media_player_is_seekable(p_mi): '''Is this media player seekable? @param p_mi: the media player. @return: true if the media player can seek \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_player_is_seekable', None) or \ _Cfunction('libvlc_media_player_is_seekable', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_can_pause(p_mi): '''Can this media player be paused? @param p_mi: the media player. @return: true if the media player can pause \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_media_player_can_pause', None) or \ _Cfunction('libvlc_media_player_can_pause', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_program_scrambled(p_mi): '''Check if the current program is scrambled. @param p_mi: the media player. @return: true if the current program is scrambled \libvlc_return_bool. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_media_player_program_scrambled', None) or \ _Cfunction('libvlc_media_player_program_scrambled', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_media_player_next_frame(p_mi): '''Display the next frame (if supported). @param p_mi: the media player. ''' f = _Cfunctions.get('libvlc_media_player_next_frame', None) or \ _Cfunction('libvlc_media_player_next_frame', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_media_player_navigate(p_mi, navigate): '''Navigate through DVD Menu. @param p_mi: the Media Player. @param navigate: the Navigation mode. @version: libVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_media_player_navigate', None) or \ _Cfunction('libvlc_media_player_navigate', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_uint) return f(p_mi, navigate) def libvlc_media_player_set_video_title_display(p_mi, position, timeout): '''Set if, and how, the video title will be shown when media is played. @param p_mi: the media player. @param position: position at which to display the title, or libvlc_position_disable to prevent the title from being displayed. @param timeout: title display timeout in milliseconds (ignored if libvlc_position_disable). @version: libVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_media_player_set_video_title_display', None) or \ _Cfunction('libvlc_media_player_set_video_title_display', ((1,), (1,), (1,),), None, None, MediaPlayer, Position, ctypes.c_int) return f(p_mi, position, timeout) def libvlc_track_description_list_release(p_track_description): '''Release (free) L{TrackDescription}. @param p_track_description: the structure to release. ''' f = _Cfunctions.get('libvlc_track_description_list_release', None) or \ _Cfunction('libvlc_track_description_list_release', ((1,),), None, None, ctypes.POINTER(TrackDescription)) return f(p_track_description) def libvlc_toggle_fullscreen(p_mi): '''Toggle fullscreen status on non-embedded video outputs. @warning: The same limitations applies to this function as to L{libvlc_set_fullscreen}(). @param p_mi: the media player. ''' f = _Cfunctions.get('libvlc_toggle_fullscreen', None) or \ _Cfunction('libvlc_toggle_fullscreen', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_set_fullscreen(p_mi, b_fullscreen): '''Enable or disable fullscreen. @warning: With most window managers, only a top-level windows can be in full-screen mode. Hence, this function will not operate properly if L{libvlc_media_player_set_xwindow}() was used to embed the video in a non-top-level window. In that case, the embedding window must be reparented to the root window B{before} fullscreen mode is enabled. You will want to reparent it back to its normal parent when disabling fullscreen. @param p_mi: the media player. @param b_fullscreen: boolean for fullscreen status. ''' f = _Cfunctions.get('libvlc_set_fullscreen', None) or \ _Cfunction('libvlc_set_fullscreen', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(p_mi, b_fullscreen) def libvlc_get_fullscreen(p_mi): '''Get current fullscreen status. @param p_mi: the media player. @return: the fullscreen status (boolean) \libvlc_return_bool. ''' f = _Cfunctions.get('libvlc_get_fullscreen', None) or \ _Cfunction('libvlc_get_fullscreen', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_set_key_input(p_mi, on): '''Enable or disable key press events handling, according to the LibVLC hotkeys configuration. By default and for historical reasons, keyboard events are handled by the LibVLC video widget. @note: On X11, there can be only one subscriber for key press and mouse click events per window. If your application has subscribed to those events for the X window ID of the video widget, then LibVLC will not be able to handle key presses and mouse clicks in any case. @warning: This function is only implemented for X11 and Win32 at the moment. @param p_mi: the media player. @param on: true to handle key press events, false to ignore them. ''' f = _Cfunctions.get('libvlc_video_set_key_input', None) or \ _Cfunction('libvlc_video_set_key_input', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_uint) return f(p_mi, on) def libvlc_video_set_mouse_input(p_mi, on): '''Enable or disable mouse click events handling. By default, those events are handled. This is needed for DVD menus to work, as well as a few video filters such as "puzzle". See L{libvlc_video_set_key_input}(). @warning: This function is only implemented for X11 and Win32 at the moment. @param p_mi: the media player. @param on: true to handle mouse click events, false to ignore them. ''' f = _Cfunctions.get('libvlc_video_set_mouse_input', None) or \ _Cfunction('libvlc_video_set_mouse_input', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_uint) return f(p_mi, on) def libvlc_video_get_size(p_mi, num): '''Get the pixel dimensions of a video. @param p_mi: media player. @param num: number of the video (starting from, and most commonly 0). @return: px pixel width, py pixel height. ''' f = _Cfunctions.get('libvlc_video_get_size', None) or \ _Cfunction('libvlc_video_get_size', ((1,), (1,), (2,), (2,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint, ctypes.POINTER(ctypes.c_uint), ctypes.POINTER(ctypes.c_uint)) return f(p_mi, num) def libvlc_video_get_cursor(p_mi, num): '''Get the mouse pointer coordinates over a video. Coordinates are expressed in terms of the decoded video resolution, B{not} in terms of pixels on the screen/viewport (to get the latter, you can query your windowing system directly). Either of the coordinates may be negative or larger than the corresponding dimension of the video, if the cursor is outside the rendering area. @warning: The coordinates may be out-of-date if the pointer is not located on the video rendering area. LibVLC does not track the pointer if it is outside of the video widget. @note: LibVLC does not support multiple pointers (it does of course support multiple input devices sharing the same pointer) at the moment. @param p_mi: media player. @param num: number of the video (starting from, and most commonly 0). @return: px abscissa, py ordinate. ''' f = _Cfunctions.get('libvlc_video_get_cursor', None) or \ _Cfunction('libvlc_video_get_cursor', ((1,), (1,), (2,), (2,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint, ctypes.POINTER(ctypes.c_int), ctypes.POINTER(ctypes.c_int)) return f(p_mi, num) def libvlc_video_get_scale(p_mi): '''Get the current video scaling factor. See also L{libvlc_video_set_scale}(). @param p_mi: the media player. @return: the currently configured zoom factor, or 0. if the video is set to fit to the output window/drawable automatically. ''' f = _Cfunctions.get('libvlc_video_get_scale', None) or \ _Cfunction('libvlc_video_get_scale', ((1,),), None, ctypes.c_float, MediaPlayer) return f(p_mi) def libvlc_video_set_scale(p_mi, f_factor): '''Set the video scaling factor. That is the ratio of the number of pixels on screen to the number of pixels in the original decoded video in each dimension. Zero is a special value; it will adjust the video to the output window/drawable (in windowed mode) or the entire screen. Note that not all video outputs support scaling. @param p_mi: the media player. @param f_factor: the scaling factor, or zero. ''' f = _Cfunctions.get('libvlc_video_set_scale', None) or \ _Cfunction('libvlc_video_set_scale', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_float) return f(p_mi, f_factor) def libvlc_video_get_aspect_ratio(p_mi): '''Get current video aspect ratio. @param p_mi: the media player. @return: the video aspect ratio or None if unspecified (the result must be released with free() or L{libvlc_free}()). ''' f = _Cfunctions.get('libvlc_video_get_aspect_ratio', None) or \ _Cfunction('libvlc_video_get_aspect_ratio', ((1,),), string_result, ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_video_set_aspect_ratio(p_mi, psz_aspect): '''Set new video aspect ratio. @param p_mi: the media player. @param psz_aspect: new video aspect-ratio or None to reset to default @note Invalid aspect ratios are ignored. ''' f = _Cfunctions.get('libvlc_video_set_aspect_ratio', None) or \ _Cfunction('libvlc_video_set_aspect_ratio', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p) return f(p_mi, psz_aspect) def libvlc_video_get_spu(p_mi): '''Get current video subtitle. @param p_mi: the media player. @return: the video subtitle selected, or -1 if none. ''' f = _Cfunctions.get('libvlc_video_get_spu', None) or \ _Cfunction('libvlc_video_get_spu', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_get_spu_count(p_mi): '''Get the number of available video subtitles. @param p_mi: the media player. @return: the number of available video subtitles. ''' f = _Cfunctions.get('libvlc_video_get_spu_count', None) or \ _Cfunction('libvlc_video_get_spu_count', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_get_spu_description(p_mi): '''Get the description of available video subtitles. @param p_mi: the media player. @return: list containing description of available video subtitles. ''' f = _Cfunctions.get('libvlc_video_get_spu_description', None) or \ _Cfunction('libvlc_video_get_spu_description', ((1,),), None, ctypes.POINTER(TrackDescription), MediaPlayer) return f(p_mi) def libvlc_video_set_spu(p_mi, i_spu): '''Set new video subtitle. @param p_mi: the media player. @param i_spu: video subtitle track to select (i_id from track description). @return: 0 on success, -1 if out of range. ''' f = _Cfunctions.get('libvlc_video_set_spu', None) or \ _Cfunction('libvlc_video_set_spu', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, i_spu) def libvlc_video_set_subtitle_file(p_mi, psz_subtitle): '''Set new video subtitle file. @param p_mi: the media player. @param psz_subtitle: new video subtitle file. @return: the success status (boolean). ''' f = _Cfunctions.get('libvlc_video_set_subtitle_file', None) or \ _Cfunction('libvlc_video_set_subtitle_file', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_char_p) return f(p_mi, psz_subtitle) def libvlc_video_get_spu_delay(p_mi): '''Get the current subtitle delay. Positive values means subtitles are being displayed later, negative values earlier. @param p_mi: media player. @return: time (in microseconds) the display of subtitles is being delayed. @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_video_get_spu_delay', None) or \ _Cfunction('libvlc_video_get_spu_delay', ((1,),), None, ctypes.c_int64, MediaPlayer) return f(p_mi) def libvlc_video_set_spu_delay(p_mi, i_delay): '''Set the subtitle delay. This affects the timing of when the subtitle will be displayed. Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier. The subtitle delay will be reset to zero each time the media changes. @param p_mi: media player. @param i_delay: time (in microseconds) the display of subtitles should be delayed. @return: 0 on success, -1 on error. @version: LibVLC 2.0.0 or later. ''' f = _Cfunctions.get('libvlc_video_set_spu_delay', None) or \ _Cfunction('libvlc_video_set_spu_delay', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int64) return f(p_mi, i_delay) def libvlc_video_get_title_description(p_mi): '''Get the description of available titles. @param p_mi: the media player. @return: list containing description of available titles. ''' f = _Cfunctions.get('libvlc_video_get_title_description', None) or \ _Cfunction('libvlc_video_get_title_description', ((1,),), None, ctypes.POINTER(TrackDescription), MediaPlayer) return f(p_mi) def libvlc_video_get_chapter_description(p_mi, i_title): '''Get the description of available chapters for specific title. @param p_mi: the media player. @param i_title: selected title. @return: list containing description of available chapter for title i_title. ''' f = _Cfunctions.get('libvlc_video_get_chapter_description', None) or \ _Cfunction('libvlc_video_get_chapter_description', ((1,), (1,),), None, ctypes.POINTER(TrackDescription), MediaPlayer, ctypes.c_int) return f(p_mi, i_title) def libvlc_video_get_crop_geometry(p_mi): '''Get current crop filter geometry. @param p_mi: the media player. @return: the crop filter geometry or None if unset. ''' f = _Cfunctions.get('libvlc_video_get_crop_geometry', None) or \ _Cfunction('libvlc_video_get_crop_geometry', ((1,),), string_result, ctypes.c_void_p, MediaPlayer) return f(p_mi) def libvlc_video_set_crop_geometry(p_mi, psz_geometry): '''Set new crop filter geometry. @param p_mi: the media player. @param psz_geometry: new crop filter geometry (None to unset). ''' f = _Cfunctions.get('libvlc_video_set_crop_geometry', None) or \ _Cfunction('libvlc_video_set_crop_geometry', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p) return f(p_mi, psz_geometry) def libvlc_video_get_teletext(p_mi): '''Get current teletext page requested. @param p_mi: the media player. @return: the current teletext page requested. ''' f = _Cfunctions.get('libvlc_video_get_teletext', None) or \ _Cfunction('libvlc_video_get_teletext', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_set_teletext(p_mi, i_page): '''Set new teletext page to retrieve. @param p_mi: the media player. @param i_page: teletex page number requested. ''' f = _Cfunctions.get('libvlc_video_set_teletext', None) or \ _Cfunction('libvlc_video_set_teletext', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(p_mi, i_page) def libvlc_toggle_teletext(p_mi): '''Toggle teletext transparent status on video output. @param p_mi: the media player. ''' f = _Cfunctions.get('libvlc_toggle_teletext', None) or \ _Cfunction('libvlc_toggle_teletext', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_video_get_track_count(p_mi): '''Get number of available video tracks. @param p_mi: media player. @return: the number of available video tracks (int). ''' f = _Cfunctions.get('libvlc_video_get_track_count', None) or \ _Cfunction('libvlc_video_get_track_count', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_get_track_description(p_mi): '''Get the description of available video tracks. @param p_mi: media player. @return: list with description of available video tracks, or None on error. ''' f = _Cfunctions.get('libvlc_video_get_track_description', None) or \ _Cfunction('libvlc_video_get_track_description', ((1,),), None, ctypes.POINTER(TrackDescription), MediaPlayer) return f(p_mi) def libvlc_video_get_track(p_mi): '''Get current video track. @param p_mi: media player. @return: the video track ID (int) or -1 if no active input. ''' f = _Cfunctions.get('libvlc_video_get_track', None) or \ _Cfunction('libvlc_video_get_track', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_video_set_track(p_mi, i_track): '''Set video track. @param p_mi: media player. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 if out of range. ''' f = _Cfunctions.get('libvlc_video_set_track', None) or \ _Cfunction('libvlc_video_set_track', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, i_track) def libvlc_video_take_snapshot(p_mi, num, psz_filepath, i_width, i_height): '''Take a snapshot of the current video window. If i_width AND i_height is 0, original size is used. If i_width XOR i_height is 0, original aspect-ratio is preserved. @param p_mi: media player instance. @param num: number of video output (typically 0 for the first/only one). @param psz_filepath: the path where to save the screenshot to. @param i_width: the snapshot's width. @param i_height: the snapshot's height. @return: 0 on success, -1 if the video was not found. ''' f = _Cfunctions.get('libvlc_video_take_snapshot', None) or \ _Cfunction('libvlc_video_take_snapshot', ((1,), (1,), (1,), (1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint, ctypes.c_char_p, ctypes.c_int, ctypes.c_int) return f(p_mi, num, psz_filepath, i_width, i_height) def libvlc_video_set_deinterlace(p_mi, psz_mode): '''Enable or disable deinterlace filter. @param p_mi: libvlc media player. @param psz_mode: type of deinterlace filter, None to disable. ''' f = _Cfunctions.get('libvlc_video_set_deinterlace', None) or \ _Cfunction('libvlc_video_set_deinterlace', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p) return f(p_mi, psz_mode) def libvlc_video_get_marquee_int(p_mi, option): '''Get an integer marquee option value. @param p_mi: libvlc media player. @param option: marq option to get See libvlc_video_marquee_int_option_t. ''' f = _Cfunctions.get('libvlc_video_get_marquee_int', None) or \ _Cfunction('libvlc_video_get_marquee_int', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint) return f(p_mi, option) def libvlc_video_get_marquee_string(p_mi, option): '''Get a string marquee option value. @param p_mi: libvlc media player. @param option: marq option to get See libvlc_video_marquee_string_option_t. ''' f = _Cfunctions.get('libvlc_video_get_marquee_string', None) or \ _Cfunction('libvlc_video_get_marquee_string', ((1,), (1,),), string_result, ctypes.c_void_p, MediaPlayer, ctypes.c_uint) return f(p_mi, option) def libvlc_video_set_marquee_int(p_mi, option, i_val): '''Enable, disable or set an integer marquee option Setting libvlc_marquee_Enable has the side effect of enabling (arg !0) or disabling (arg 0) the marq filter. @param p_mi: libvlc media player. @param option: marq option to set See libvlc_video_marquee_int_option_t. @param i_val: marq option value. ''' f = _Cfunctions.get('libvlc_video_set_marquee_int', None) or \ _Cfunction('libvlc_video_set_marquee_int', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_int) return f(p_mi, option, i_val) def libvlc_video_set_marquee_string(p_mi, option, psz_text): '''Set a marquee string option. @param p_mi: libvlc media player. @param option: marq option to set See libvlc_video_marquee_string_option_t. @param psz_text: marq option value. ''' f = _Cfunctions.get('libvlc_video_set_marquee_string', None) or \ _Cfunction('libvlc_video_set_marquee_string', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_char_p) return f(p_mi, option, psz_text) def libvlc_video_get_logo_int(p_mi, option): '''Get integer logo option. @param p_mi: libvlc media player instance. @param option: logo option to get, values of libvlc_video_logo_option_t. ''' f = _Cfunctions.get('libvlc_video_get_logo_int', None) or \ _Cfunction('libvlc_video_get_logo_int', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint) return f(p_mi, option) def libvlc_video_set_logo_int(p_mi, option, value): '''Set logo option as integer. Options that take a different type value are ignored. Passing libvlc_logo_enable as option value has the side effect of starting (arg !0) or stopping (arg 0) the logo filter. @param p_mi: libvlc media player instance. @param option: logo option to set, values of libvlc_video_logo_option_t. @param value: logo option value. ''' f = _Cfunctions.get('libvlc_video_set_logo_int', None) or \ _Cfunction('libvlc_video_set_logo_int', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_int) return f(p_mi, option, value) def libvlc_video_set_logo_string(p_mi, option, psz_value): '''Set logo option as string. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: logo option to set, values of libvlc_video_logo_option_t. @param psz_value: logo option value. ''' f = _Cfunctions.get('libvlc_video_set_logo_string', None) or \ _Cfunction('libvlc_video_set_logo_string', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_char_p) return f(p_mi, option, psz_value) def libvlc_video_get_adjust_int(p_mi, option): '''Get integer adjust option. @param p_mi: libvlc media player instance. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_get_adjust_int', None) or \ _Cfunction('libvlc_video_get_adjust_int', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_uint) return f(p_mi, option) def libvlc_video_set_adjust_int(p_mi, option, value): '''Set adjust option as integer. Options that take a different type value are ignored. Passing libvlc_adjust_enable as option value has the side effect of starting (arg !0) or stopping (arg 0) the adjust filter. @param p_mi: libvlc media player instance. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_set_adjust_int', None) or \ _Cfunction('libvlc_video_set_adjust_int', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_int) return f(p_mi, option, value) def libvlc_video_get_adjust_float(p_mi, option): '''Get float adjust option. @param p_mi: libvlc media player instance. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_get_adjust_float', None) or \ _Cfunction('libvlc_video_get_adjust_float', ((1,), (1,),), None, ctypes.c_float, MediaPlayer, ctypes.c_uint) return f(p_mi, option) def libvlc_video_set_adjust_float(p_mi, option, value): '''Set adjust option as float. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_set_adjust_float', None) or \ _Cfunction('libvlc_video_set_adjust_float', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_uint, ctypes.c_float) return f(p_mi, option, value) def libvlc_audio_output_list_get(p_instance): '''Gets the list of available audio output modules. @param p_instance: libvlc instance. @return: list of available audio outputs. It must be freed it with In case of error, None is returned. ''' f = _Cfunctions.get('libvlc_audio_output_list_get', None) or \ _Cfunction('libvlc_audio_output_list_get', ((1,),), None, ctypes.POINTER(AudioOutput), Instance) return f(p_instance) def libvlc_audio_output_list_release(p_list): '''Frees the list of available audio output modules. @param p_list: list with audio outputs for release. ''' f = _Cfunctions.get('libvlc_audio_output_list_release', None) or \ _Cfunction('libvlc_audio_output_list_release', ((1,),), None, None, ctypes.POINTER(AudioOutput)) return f(p_list) def libvlc_audio_output_set(p_mi, psz_name): '''Selects an audio output module. @note: Any change will take be effect only after playback is stopped and restarted. Audio output cannot be changed while playing. @param p_mi: media player. @param psz_name: name of audio output, use psz_name of See L{AudioOutput}. @return: 0 if function succeded, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_output_set', None) or \ _Cfunction('libvlc_audio_output_set', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_char_p) return f(p_mi, psz_name) def libvlc_audio_output_device_enum(mp): '''Gets a list of potential audio output devices, See L{libvlc_audio_output_device_set}(). @note: Not all audio outputs support enumerating devices. The audio output may be functional even if the list is empty (None). @note: The list may not be exhaustive. @warning: Some audio output devices in the list might not actually work in some circumstances. By default, it is recommended to not specify any explicit audio device. @param mp: media player. @return: A None-terminated linked list of potential audio output devices. It must be freed it with L{libvlc_audio_output_device_list_release}(). @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_output_device_enum', None) or \ _Cfunction('libvlc_audio_output_device_enum', ((1,),), None, ctypes.POINTER(AudioOutputDevice), MediaPlayer) return f(mp) def libvlc_audio_output_device_list_get(p_instance, aout): '''Gets a list of audio output devices for a given audio output module, See L{libvlc_audio_output_device_set}(). @note: Not all audio outputs support this. In particular, an empty (None) list of devices does B{not} imply that the specified audio output does not work. @note: The list might not be exhaustive. @warning: Some audio output devices in the list might not actually work in some circumstances. By default, it is recommended to not specify any explicit audio device. @param p_instance: libvlc instance. @param psz_aout: audio output name (as returned by L{libvlc_audio_output_list_get}()). @return: A None-terminated linked list of potential audio output devices. It must be freed it with L{libvlc_audio_output_device_list_release}(). @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_audio_output_device_list_get', None) or \ _Cfunction('libvlc_audio_output_device_list_get', ((1,), (1,),), None, ctypes.POINTER(AudioOutputDevice), Instance, ctypes.c_char_p) return f(p_instance, aout) def libvlc_audio_output_device_list_release(p_list): '''Frees a list of available audio output devices. @param p_list: list with audio outputs for release. @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_audio_output_device_list_release', None) or \ _Cfunction('libvlc_audio_output_device_list_release', ((1,),), None, None, ctypes.POINTER(AudioOutputDevice)) return f(p_list) def libvlc_audio_output_device_set(mp, module, device_id): '''Configures an explicit audio output device. If the module paramater is None, audio output will be moved to the device specified by the device identifier string immediately. This is the recommended usage. A list of adequate potential device strings can be obtained with L{libvlc_audio_output_device_enum}(). However passing None is supported in LibVLC version 2.2.0 and later only; in earlier versions, this function would have no effects when the module parameter was None. If the module parameter is not None, the device parameter of the corresponding audio output, if it exists, will be set to the specified string. Note that some audio output modules do not have such a parameter (notably MMDevice and PulseAudio). A list of adequate potential device strings can be obtained with L{libvlc_audio_output_device_list_get}(). @note: This function does not select the specified audio output plugin. L{libvlc_audio_output_set}() is used for that purpose. @warning: The syntax for the device parameter depends on the audio output. Some audio output modules require further parameters (e.g. a channels map in the case of ALSA). @param mp: media player. @param module: If None, current audio output module. if non-None, name of audio output module. @param device_id: device identifier string. @return: Nothing. Errors are ignored (this is a design bug). ''' f = _Cfunctions.get('libvlc_audio_output_device_set', None) or \ _Cfunction('libvlc_audio_output_device_set', ((1,), (1,), (1,),), None, None, MediaPlayer, ctypes.c_char_p, ctypes.c_char_p) return f(mp, module, device_id) def libvlc_audio_toggle_mute(p_mi): '''Toggle mute status. @param p_mi: media player @warning Toggling mute atomically is not always possible: On some platforms, other processes can mute the VLC audio playback stream asynchronously. Thus, there is a small race condition where toggling will not work. See also the limitations of L{libvlc_audio_set_mute}(). ''' f = _Cfunctions.get('libvlc_audio_toggle_mute', None) or \ _Cfunction('libvlc_audio_toggle_mute', ((1,),), None, None, MediaPlayer) return f(p_mi) def libvlc_audio_get_mute(p_mi): '''Get current mute status. @param p_mi: media player. @return: the mute status (boolean) if defined, -1 if undefined/unapplicable. ''' f = _Cfunctions.get('libvlc_audio_get_mute', None) or \ _Cfunction('libvlc_audio_get_mute', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_audio_set_mute(p_mi, status): '''Set mute status. @param p_mi: media player. @param status: If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/PDIF, HDMI...) is in use, muting may be unapplicable. Also some audio output plugins do not support muting at all. @note To force silent playback, disable all audio tracks. This is more efficient and reliable than mute. ''' f = _Cfunctions.get('libvlc_audio_set_mute', None) or \ _Cfunction('libvlc_audio_set_mute', ((1,), (1,),), None, None, MediaPlayer, ctypes.c_int) return f(p_mi, status) def libvlc_audio_get_volume(p_mi): '''Get current software audio volume. @param p_mi: media player. @return: the software volume in percents (0 = mute, 100 = nominal / 0dB). ''' f = _Cfunctions.get('libvlc_audio_get_volume', None) or \ _Cfunction('libvlc_audio_get_volume', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_audio_set_volume(p_mi, i_volume): '''Set current software audio volume. @param p_mi: media player. @param i_volume: the volume in percents (0 = mute, 100 = 0dB). @return: 0 if the volume was set, -1 if it was out of range. ''' f = _Cfunctions.get('libvlc_audio_set_volume', None) or \ _Cfunction('libvlc_audio_set_volume', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, i_volume) def libvlc_audio_get_track_count(p_mi): '''Get number of available audio tracks. @param p_mi: media player. @return: the number of available audio tracks (int), or -1 if unavailable. ''' f = _Cfunctions.get('libvlc_audio_get_track_count', None) or \ _Cfunction('libvlc_audio_get_track_count', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_audio_get_track_description(p_mi): '''Get the description of available audio tracks. @param p_mi: media player. @return: list with description of available audio tracks, or None. ''' f = _Cfunctions.get('libvlc_audio_get_track_description', None) or \ _Cfunction('libvlc_audio_get_track_description', ((1,),), None, ctypes.POINTER(TrackDescription), MediaPlayer) return f(p_mi) def libvlc_audio_get_track(p_mi): '''Get current audio track. @param p_mi: media player. @return: the audio track ID or -1 if no active input. ''' f = _Cfunctions.get('libvlc_audio_get_track', None) or \ _Cfunction('libvlc_audio_get_track', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_audio_set_track(p_mi, i_track): '''Set current audio track. @param p_mi: media player. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_track', None) or \ _Cfunction('libvlc_audio_set_track', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, i_track) def libvlc_audio_get_channel(p_mi): '''Get current audio channel. @param p_mi: media player. @return: the audio channel See libvlc_audio_output_channel_t. ''' f = _Cfunctions.get('libvlc_audio_get_channel', None) or \ _Cfunction('libvlc_audio_get_channel', ((1,),), None, ctypes.c_int, MediaPlayer) return f(p_mi) def libvlc_audio_set_channel(p_mi, channel): '''Set current audio channel. @param p_mi: media player. @param channel: the audio channel, See libvlc_audio_output_channel_t. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_channel', None) or \ _Cfunction('libvlc_audio_set_channel', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int) return f(p_mi, channel) def libvlc_audio_get_delay(p_mi): '''Get current audio delay. @param p_mi: media player. @return: the audio delay (microseconds). @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_audio_get_delay', None) or \ _Cfunction('libvlc_audio_get_delay', ((1,),), None, ctypes.c_int64, MediaPlayer) return f(p_mi) def libvlc_audio_set_delay(p_mi, i_delay): '''Set current audio delay. The audio delay will be reset to zero each time the media changes. @param p_mi: media player. @param i_delay: the audio delay (microseconds). @return: 0 on success, -1 on error. @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_audio_set_delay', None) or \ _Cfunction('libvlc_audio_set_delay', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_int64) return f(p_mi, i_delay) def libvlc_audio_equalizer_get_preset_count(): '''Get the number of equalizer presets. @return: number of presets. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_preset_count', None) or \ _Cfunction('libvlc_audio_equalizer_get_preset_count', (), None, ctypes.c_uint) return f() def libvlc_audio_equalizer_get_preset_name(u_index): '''Get the name of a particular equalizer preset. This name can be used, for example, to prepare a preset label or menu in a user interface. @param u_index: index of the preset, counting from zero. @return: preset name, or None if there is no such preset. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_preset_name', None) or \ _Cfunction('libvlc_audio_equalizer_get_preset_name', ((1,),), None, ctypes.c_char_p, ctypes.c_uint) return f(u_index) def libvlc_audio_equalizer_get_band_count(): '''Get the number of distinct frequency bands for an equalizer. @return: number of frequency bands. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_band_count', None) or \ _Cfunction('libvlc_audio_equalizer_get_band_count', (), None, ctypes.c_uint) return f() def libvlc_audio_equalizer_get_band_frequency(u_index): '''Get a particular equalizer band frequency. This value can be used, for example, to create a label for an equalizer band control in a user interface. @param u_index: index of the band, counting from zero. @return: equalizer band frequency (Hz), or -1 if there is no such band. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_band_frequency', None) or \ _Cfunction('libvlc_audio_equalizer_get_band_frequency', ((1,),), None, ctypes.c_float, ctypes.c_uint) return f(u_index) def libvlc_audio_equalizer_new(): '''Create a new default equalizer, with all frequency values zeroed. The new equalizer can subsequently be applied to a media player by invoking L{libvlc_media_player_set_equalizer}(). The returned handle should be freed via L{libvlc_audio_equalizer_release}() when it is no longer needed. @return: opaque equalizer handle, or None on error. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_new', None) or \ _Cfunction('libvlc_audio_equalizer_new', (), None, ctypes.c_void_p) return f() def libvlc_audio_equalizer_new_from_preset(u_index): '''Create a new equalizer, with initial frequency values copied from an existing preset. The new equalizer can subsequently be applied to a media player by invoking L{libvlc_media_player_set_equalizer}(). The returned handle should be freed via L{libvlc_audio_equalizer_release}() when it is no longer needed. @param u_index: index of the preset, counting from zero. @return: opaque equalizer handle, or None on error. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_new_from_preset', None) or \ _Cfunction('libvlc_audio_equalizer_new_from_preset', ((1,),), None, ctypes.c_void_p, ctypes.c_uint) return f(u_index) def libvlc_audio_equalizer_release(p_equalizer): '''Release a previously created equalizer instance. The equalizer was previously created by using L{libvlc_audio_equalizer_new}() or L{libvlc_audio_equalizer_new_from_preset}(). It is safe to invoke this method with a None p_equalizer parameter for no effect. @param p_equalizer: opaque equalizer handle, or None. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_release', None) or \ _Cfunction('libvlc_audio_equalizer_release', ((1,),), None, None, ctypes.c_void_p) return f(p_equalizer) def libvlc_audio_equalizer_set_preamp(p_equalizer, f_preamp): '''Set a new pre-amplification value for an equalizer. The new equalizer settings are subsequently applied to a media player by invoking L{libvlc_media_player_set_equalizer}(). The supplied amplification value will be clamped to the -20.0 to +20.0 range. @param p_equalizer: valid equalizer handle, must not be None. @param f_preamp: preamp value (-20.0 to 20.0 Hz). @return: zero on success, -1 on error. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_set_preamp', None) or \ _Cfunction('libvlc_audio_equalizer_set_preamp', ((1,), (1,),), None, ctypes.c_int, ctypes.c_void_p, ctypes.c_float) return f(p_equalizer, f_preamp) def libvlc_audio_equalizer_get_preamp(p_equalizer): '''Get the current pre-amplification value from an equalizer. @param p_equalizer: valid equalizer handle, must not be None. @return: preamp value (Hz). @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_preamp', None) or \ _Cfunction('libvlc_audio_equalizer_get_preamp', ((1,),), None, ctypes.c_float, ctypes.c_void_p) return f(p_equalizer) def libvlc_audio_equalizer_set_amp_at_index(p_equalizer, f_amp, u_band): '''Set a new amplification value for a particular equalizer frequency band. The new equalizer settings are subsequently applied to a media player by invoking L{libvlc_media_player_set_equalizer}(). The supplied amplification value will be clamped to the -20.0 to +20.0 range. @param p_equalizer: valid equalizer handle, must not be None. @param f_amp: amplification value (-20.0 to 20.0 Hz). @param u_band: index, counting from zero, of the frequency band to set. @return: zero on success, -1 on error. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_set_amp_at_index', None) or \ _Cfunction('libvlc_audio_equalizer_set_amp_at_index', ((1,), (1,), (1,),), None, ctypes.c_int, ctypes.c_void_p, ctypes.c_float, ctypes.c_uint) return f(p_equalizer, f_amp, u_band) def libvlc_audio_equalizer_get_amp_at_index(p_equalizer, u_band): '''Get the amplification value for a particular equalizer frequency band. @param p_equalizer: valid equalizer handle, must not be None. @param u_band: index, counting from zero, of the frequency band to get. @return: amplification value (Hz); NaN if there is no such frequency band. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_amp_at_index', None) or \ _Cfunction('libvlc_audio_equalizer_get_amp_at_index', ((1,), (1,),), None, ctypes.c_float, ctypes.c_void_p, ctypes.c_uint) return f(p_equalizer, u_band) def libvlc_media_player_set_equalizer(p_mi, p_equalizer): '''Apply new equalizer settings to a media player. The equalizer is first created by invoking L{libvlc_audio_equalizer_new}() or L{libvlc_audio_equalizer_new_from_preset}(). It is possible to apply new equalizer settings to a media player whether the media player is currently playing media or not. Invoking this method will immediately apply the new equalizer settings to the audio output of the currently playing media if there is any. If there is no currently playing media, the new equalizer settings will be applied later if and when new media is played. Equalizer settings will automatically be applied to subsequently played media. To disable the equalizer for a media player invoke this method passing None for the p_equalizer parameter. The media player does not keep a reference to the supplied equalizer so it is safe for an application to release the equalizer reference any time after this method returns. @param p_mi: opaque media player handle. @param p_equalizer: opaque equalizer handle, or None to disable the equalizer for this media player. @return: zero on success, -1 on error. @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_media_player_set_equalizer', None) or \ _Cfunction('libvlc_media_player_set_equalizer', ((1,), (1,),), None, ctypes.c_int, MediaPlayer, ctypes.c_void_p) return f(p_mi, p_equalizer) def libvlc_vlm_release(p_instance): '''Release the vlm instance related to the given L{Instance}. @param p_instance: the instance. ''' f = _Cfunctions.get('libvlc_vlm_release', None) or \ _Cfunction('libvlc_vlm_release', ((1,),), None, None, Instance) return f(p_instance) def libvlc_vlm_add_broadcast(p_instance, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Add a broadcast, with one input. @param p_instance: the instance. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. @param psz_output: the output MRL (the parameter to the "sout" variable). @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new broadcast. @param b_loop: Should this broadcast be played in loop ? @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_add_broadcast', None) or \ _Cfunction('libvlc_vlm_add_broadcast', ((1,), (1,), (1,), (1,), (1,), (1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int, ListPOINTER(ctypes.c_char_p), ctypes.c_int, ctypes.c_int) return f(p_instance, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop) def libvlc_vlm_add_vod(p_instance, psz_name, psz_input, i_options, ppsz_options, b_enabled, psz_mux): '''Add a vod, with one input. @param p_instance: the instance. @param psz_name: the name of the new vod media. @param psz_input: the input MRL. @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new vod. @param psz_mux: the muxer of the vod media. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_add_vod', None) or \ _Cfunction('libvlc_vlm_add_vod', ((1,), (1,), (1,), (1,), (1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int, ListPOINTER(ctypes.c_char_p), ctypes.c_int, ctypes.c_char_p) return f(p_instance, psz_name, psz_input, i_options, ppsz_options, b_enabled, psz_mux) def libvlc_vlm_del_media(p_instance, psz_name): '''Delete a media (VOD or broadcast). @param p_instance: the instance. @param psz_name: the media to delete. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_del_media', None) or \ _Cfunction('libvlc_vlm_del_media', ((1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_vlm_set_enabled(p_instance, psz_name, b_enabled): '''Enable or disable a media (VOD or broadcast). @param p_instance: the instance. @param psz_name: the media to work on. @param b_enabled: the new status. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_enabled', None) or \ _Cfunction('libvlc_vlm_set_enabled', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, b_enabled) def libvlc_vlm_set_output(p_instance, psz_name, psz_output): '''Set the output for a media. @param p_instance: the instance. @param psz_name: the media to work on. @param psz_output: the output MRL (the parameter to the "sout" variable). @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_output', None) or \ _Cfunction('libvlc_vlm_set_output', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, psz_name, psz_output) def libvlc_vlm_set_input(p_instance, psz_name, psz_input): '''Set a media's input MRL. This will delete all existing inputs and add the specified one. @param p_instance: the instance. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_input', None) or \ _Cfunction('libvlc_vlm_set_input', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, psz_name, psz_input) def libvlc_vlm_add_input(p_instance, psz_name, psz_input): '''Add a media's input MRL. This will add the specified one. @param p_instance: the instance. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_add_input', None) or \ _Cfunction('libvlc_vlm_add_input', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, psz_name, psz_input) def libvlc_vlm_set_loop(p_instance, psz_name, b_loop): '''Set a media's loop status. @param p_instance: the instance. @param psz_name: the media to work on. @param b_loop: the new status. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_loop', None) or \ _Cfunction('libvlc_vlm_set_loop', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, b_loop) def libvlc_vlm_set_mux(p_instance, psz_name, psz_mux): '''Set a media's vod muxer. @param p_instance: the instance. @param psz_name: the media to work on. @param psz_mux: the new muxer. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_mux', None) or \ _Cfunction('libvlc_vlm_set_mux', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p) return f(p_instance, psz_name, psz_mux) def libvlc_vlm_change_media(p_instance, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Edit the parameters of a media. This will delete all existing inputs and add the specified one. @param p_instance: the instance. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. @param psz_output: the output MRL (the parameter to the "sout" variable). @param i_options: number of additional options. @param ppsz_options: additional options. @param b_enabled: boolean for enabling the new broadcast. @param b_loop: Should this broadcast be played in loop ? @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_change_media', None) or \ _Cfunction('libvlc_vlm_change_media', ((1,), (1,), (1,), (1,), (1,), (1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_int, ListPOINTER(ctypes.c_char_p), ctypes.c_int, ctypes.c_int) return f(p_instance, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop) def libvlc_vlm_play_media(p_instance, psz_name): '''Play the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_play_media', None) or \ _Cfunction('libvlc_vlm_play_media', ((1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_vlm_stop_media(p_instance, psz_name): '''Stop the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_stop_media', None) or \ _Cfunction('libvlc_vlm_stop_media', ((1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_vlm_pause_media(p_instance, psz_name): '''Pause the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_pause_media', None) or \ _Cfunction('libvlc_vlm_pause_media', ((1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_vlm_seek_media(p_instance, psz_name, f_percentage): '''Seek in the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @param f_percentage: the percentage to seek to. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_seek_media', None) or \ _Cfunction('libvlc_vlm_seek_media', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_float) return f(p_instance, psz_name, f_percentage) def libvlc_vlm_show_media(p_instance, psz_name): '''Return information about the named media as a JSON string representation. This function is mainly intended for debugging use, if you want programmatic access to the state of a vlm_media_instance_t, please use the corresponding libvlc_vlm_get_media_instance_xxx -functions. Currently there are no such functions available for vlm_media_t though. @param p_instance: the instance. @param psz_name: the name of the media, if the name is an empty string, all media is described. @return: string with information about named media, or None on error. ''' f = _Cfunctions.get('libvlc_vlm_show_media', None) or \ _Cfunction('libvlc_vlm_show_media', ((1,), (1,),), string_result, ctypes.c_void_p, Instance, ctypes.c_char_p) return f(p_instance, psz_name) def libvlc_vlm_get_media_instance_position(p_instance, psz_name, i_instance): '''Get vlm_media instance position by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: position as float or -1. on error. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_position', None) or \ _Cfunction('libvlc_vlm_get_media_instance_position', ((1,), (1,), (1,),), None, ctypes.c_float, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_time(p_instance, psz_name, i_instance): '''Get vlm_media instance time by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: time as integer or -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_time', None) or \ _Cfunction('libvlc_vlm_get_media_instance_time', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_length(p_instance, psz_name, i_instance): '''Get vlm_media instance length by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: length of media item or -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_length', None) or \ _Cfunction('libvlc_vlm_get_media_instance_length', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_rate(p_instance, psz_name, i_instance): '''Get vlm_media instance playback rate by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: playback rate or -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_rate', None) or \ _Cfunction('libvlc_vlm_get_media_instance_rate', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_title(p_instance, psz_name, i_instance): '''Get vlm_media instance title number by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: title as number or -1 on error. @bug: will always return 0. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_title', None) or \ _Cfunction('libvlc_vlm_get_media_instance_title', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_chapter(p_instance, psz_name, i_instance): '''Get vlm_media instance chapter number by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: chapter as number or -1 on error. @bug: will always return 0. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_chapter', None) or \ _Cfunction('libvlc_vlm_get_media_instance_chapter', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_media_instance_seekable(p_instance, psz_name, i_instance): '''Is libvlc instance seekable ? @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: 1 if seekable, 0 if not, -1 if media does not exist. @bug: will always return 0. ''' f = _Cfunctions.get('libvlc_vlm_get_media_instance_seekable', None) or \ _Cfunction('libvlc_vlm_get_media_instance_seekable', ((1,), (1,), (1,),), None, ctypes.c_int, Instance, ctypes.c_char_p, ctypes.c_int) return f(p_instance, psz_name, i_instance) def libvlc_vlm_get_event_manager(p_instance): '''Get libvlc_event_manager from a vlm media. The p_event_manager is immutable, so you don't have to hold the lock. @param p_instance: a libvlc instance. @return: libvlc_event_manager. ''' f = _Cfunctions.get('libvlc_vlm_get_event_manager', None) or \ _Cfunction('libvlc_vlm_get_event_manager', ((1,),), class_result(EventManager), ctypes.c_void_p, Instance) return f(p_instance) # 4 function(s) blacklisted: # libvlc_audio_output_get_device_type # libvlc_audio_output_set_device_type # libvlc_printerr # libvlc_set_exit_handler # 28 function(s) not wrapped as methods: # libvlc_audio_equalizer_get_amp_at_index # libvlc_audio_equalizer_get_band_count # libvlc_audio_equalizer_get_band_frequency # libvlc_audio_equalizer_get_preamp # libvlc_audio_equalizer_get_preset_count # libvlc_audio_equalizer_get_preset_name # libvlc_audio_equalizer_new # libvlc_audio_equalizer_new_from_preset # libvlc_audio_equalizer_release # libvlc_audio_equalizer_set_amp_at_index # libvlc_audio_equalizer_set_preamp # libvlc_audio_output_device_list_release # libvlc_audio_output_list_release # libvlc_clearerr # libvlc_clock # libvlc_errmsg # libvlc_event_type_name # libvlc_free # libvlc_get_changeset # libvlc_get_compiler # libvlc_get_version # libvlc_log_get_context # libvlc_log_get_object # libvlc_media_tracks_release # libvlc_module_description_list_release # libvlc_new # libvlc_track_description_list_release # libvlc_vprinterr # Start of footer.py # # Backward compatibility def callbackmethod(callback): """Now obsolete @callbackmethod decorator.""" return callback # libvlc_free is not present in some versions of libvlc. If it is not # in the library, then emulate it by calling libc.free if not hasattr(dll, 'libvlc_free'): # need to find the free function in the C runtime. This is # platform specific. # For Linux and MacOSX libc_path = find_library('c') if libc_path: libc = ctypes.CDLL(libc_path) libvlc_free = libc.free else: # On win32, it is impossible to guess the proper lib to call # (msvcrt, mingw...). Just ignore the call: it will memleak, # but not prevent to run the application. def libvlc_free(p): pass # ensure argtypes is right, because default type of int won't work # on 64-bit systems libvlc_free.argtypes = [ ctypes.c_void_p ] # Version functions def _dot2int(v): '''(INTERNAL) Convert 'i.i.i[.i]' str to int. ''' t = [int(i) for i in v.split('.')] if len(t) == 3: t.append(0) elif len(t) != 4: raise ValueError('"i.i.i[.i]": %r' % (v,)) if min(t) < 0 or max(t) > 255: raise ValueError('[0..255]: %r' % (v,)) i = t.pop(0) while t: i = (i << 8) + t.pop(0) return i def hex_version(): """Return the version of these bindings in hex or 0 if unavailable. """ try: return _dot2int(__version__.split('-')[-1]) except (NameError, ValueError): return 0 def libvlc_hex_version(): """Return the libvlc version in hex or 0 if unavailable. """ try: return _dot2int(bytes_to_str(libvlc_get_version()).split()[0]) except ValueError: return 0 def debug_callback(event, *args, **kwds): '''Example callback, useful for debugging. ''' l = ['event %s' % (event.type,)] if args: l.extend(map(str, args)) if kwds: l.extend(sorted('%s=%s' % t for t in kwds.items())) print('Debug callback (%s)' % ', '.join(l)) if __name__ == '__main__': try: from msvcrt import getch except ImportError: import termios import tty def getch(): # getchar(), getc(stdin) #PYCHOK flake fd = sys.stdin.fileno() old = termios.tcgetattr(fd) try: tty.setraw(fd) ch = sys.stdin.read(1) finally: termios.tcsetattr(fd, termios.TCSADRAIN, old) return ch def end_callback(event): print('End of media stream (event %s)' % event.type) sys.exit(0) echo_position = False def pos_callback(event, player): if echo_position: sys.stdout.write('\r%s to %.2f%% (%.2f%%)' % (event.type, event.u.new_position * 100, player.get_position() * 100)) sys.stdout.flush() def print_version(): """Print libvlc version""" try: print('Build date: %s (%#x)' % (build_date, hex_version())) print('LibVLC version: %s (%#x)' % (bytes_to_str(libvlc_get_version()), libvlc_hex_version())) print('LibVLC compiler: %s' % bytes_to_str(libvlc_get_compiler())) if plugin_path: print('Plugin path: %s' % plugin_path) except: print('Error: %s' % sys.exc_info()[1]) if sys.argv[1:] and sys.argv[1] not in ('-h', '--help'): movie = os.path.expanduser(sys.argv[1]) if not os.access(movie, os.R_OK): print('Error: %s file not readable' % movie) sys.exit(1) instance = Instance("--sub-source marq") try: media = instance.media_new(movie) except NameError: print('NameError: %s (%s vs LibVLC %s)' % (sys.exc_info()[1], __version__, libvlc_get_version())) sys.exit(1) player = instance.media_player_new() player.set_media(media) player.play() # Some marquee examples. Marquee requires '--sub-source marq' in the # Instance() call above. See player.video_set_marquee_int(VideoMarqueeOption.Enable, 1) player.video_set_marquee_int(VideoMarqueeOption.Size, 24) # pixels player.video_set_marquee_int(VideoMarqueeOption.Position, Position.Bottom) if False: # only one marquee can be specified player.video_set_marquee_int(VideoMarqueeOption.Timeout, 5000) # millisec, 0==forever t = media.get_mrl() # movie else: # update marquee text periodically player.video_set_marquee_int(VideoMarqueeOption.Timeout, 0) # millisec, 0==forever player.video_set_marquee_int(VideoMarqueeOption.Refresh, 1000) # millisec (or sec?) ##t = '$L / $D or $P at $T' t = '%Y-%m-%d %H:%M:%S' player.video_set_marquee_string(VideoMarqueeOption.Text, str_to_bytes(t)) # Some event manager examples. Note, the callback can be any Python # callable and does not need to be decorated. Optionally, specify # any number of positional and/or keyword arguments to be passed # to the callback (in addition to the first one, an Event instance). event_manager = player.event_manager() event_manager.event_attach(EventType.MediaPlayerEndReached, end_callback) event_manager.event_attach(EventType.MediaPlayerPositionChanged, pos_callback, player) def mspf(): """Milliseconds per frame.""" return int(1000 // (player.get_fps() or 25)) def print_info(): """Print information about the media""" try: print_version() media = player.get_media() print('State: %s' % player.get_state()) print('Media: %s' % bytes_to_str(media.get_mrl())) print('Track: %s/%s' % (player.video_get_track(), player.video_get_track_count())) print('Current time: %s/%s' % (player.get_time(), media.get_duration())) print('Position: %s' % player.get_position()) print('FPS: %s (%d ms)' % (player.get_fps(), mspf())) print('Rate: %s' % player.get_rate()) print('Video size: %s' % str(player.video_get_size(0))) # num=0 print('Scale: %s' % player.video_get_scale()) print('Aspect ratio: %s' % player.video_get_aspect_ratio()) #print('Window:' % player.get_hwnd() except Exception: print('Error: %s' % sys.exc_info()[1]) def sec_forward(): """Go forward one sec""" player.set_time(player.get_time() + 1000) def sec_backward(): """Go backward one sec""" player.set_time(player.get_time() - 1000) def frame_forward(): """Go forward one frame""" player.set_time(player.get_time() + mspf()) def frame_backward(): """Go backward one frame""" player.set_time(player.get_time() - mspf()) def print_help(): """Print help""" print('Single-character commands:') for k, m in sorted(keybindings.items()): m = (m.__doc__ or m.__name__).splitlines()[0] print(' %s: %s.' % (k, m.rstrip('.'))) print('0-9: go to that fraction of the movie') def quit_app(): """Stop and exit""" sys.exit(0) def toggle_echo_position(): """Toggle echoing of media position""" global echo_position echo_position = not echo_position keybindings = { ' ': player.pause, '+': sec_forward, '-': sec_backward, '.': frame_forward, ',': frame_backward, 'f': player.toggle_fullscreen, 'i': print_info, 'p': toggle_echo_position, 'q': quit_app, '?': print_help, } print('Press q to quit, ? to get help.%s' % os.linesep) while True: k = getch() print('> %s' % k) if k in keybindings: keybindings[k]() elif k.isdigit(): # jump to fraction of the movie. player.set_position(float('0.'+k)) else: print('Usage: %s ' % sys.argv[0]) print('Once launched, type ? for help.') print('') print_version() OpenLP-2.4/openlp/core/ui/media/mediacontroller.py0000644000175000017500000011070412657640340021232 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.mediacontroller` module contains a base class for media components and other widgets related to playing media, such as sliders. """ import logging import os import datetime from PyQt5 import QtCore, QtWidgets from openlp.core.common import OpenLPMixin, Registry, RegistryMixin, RegistryProperties, Settings, UiStrings, translate from openlp.core.lib import OpenLPToolbar, ItemCapabilities from openlp.core.lib.ui import critical_error_message_box from openlp.core.ui.media import MediaState, MediaInfo, MediaType, get_media_players, set_media_players,\ parse_optical_path from openlp.core.ui.media.mediaplayer import MediaPlayer from openlp.core.common import AppLocation from openlp.core.ui import DisplayControllerType log = logging.getLogger(__name__) class MediaSlider(QtWidgets.QSlider): """ Allows the mouse events of a slider to be overridden and extra functionality added """ def __init__(self, direction, manager, controller): """ Constructor """ super(MediaSlider, self).__init__(direction) self.manager = manager self.controller = controller def mouseMoveEvent(self, event): """ Override event to allow hover time to be displayed. """ time_value = QtWidgets.QStyle.sliderValueFromPosition(self.minimum(), self.maximum(), event.x(), self.width()) self.setToolTip('%s' % datetime.timedelta(seconds=int(time_value / 1000))) QtWidgets.QSlider.mouseMoveEvent(self, event) def mousePressEvent(self, event): """ Mouse Press event no new functionality """ QtWidgets.QSlider.mousePressEvent(self, event) def mouseReleaseEvent(self, event): """ Set the slider position when the mouse is clicked and released on the slider. """ self.setValue(QtWidgets.QStyle.sliderValueFromPosition(self.minimum(), self.maximum(), event.x(), self.width())) QtWidgets.QSlider.mouseReleaseEvent(self, event) class MediaController(RegistryMixin, OpenLPMixin, RegistryProperties): """ The implementation of the Media Controller. The Media Controller adds an own class for every Player. Currently these are QtWebkit, Phonon and Vlc. display_controllers are an array of controllers keyed on the slidecontroller or plugin which built them. ControllerType is the class containing the key values. media_players are an array of media players keyed on player name. current_media_players is an array of player instances keyed on ControllerType. """ def __init__(self, parent=None): """ Constructor """ super(MediaController, self).__init__(parent) self.media_players = {} self.display_controllers = {} self.current_media_players = {} # Timer for video state self.timer = QtCore.QTimer() self.timer.setInterval(200) # Signals self.timer.timeout.connect(self.media_state) Registry().register_function('playbackPlay', self.media_play_msg) Registry().register_function('playbackPause', self.media_pause_msg) Registry().register_function('playbackStop', self.media_stop_msg) Registry().register_function('seek_slider', self.media_seek_msg) Registry().register_function('volume_slider', self.media_volume_msg) Registry().register_function('media_hide', self.media_hide) Registry().register_function('media_blank', self.media_blank) Registry().register_function('media_unblank', self.media_unblank) # Signals for background video Registry().register_function('songs_hide', self.media_hide) Registry().register_function('songs_unblank', self.media_unblank) Registry().register_function('mediaitem_media_rebuild', self._set_active_players) Registry().register_function('mediaitem_suffixes', self._generate_extensions_lists) def _set_active_players(self): """ Set the active players and available media files """ saved_players = get_media_players()[0] for player in list(self.media_players.keys()): self.media_players[player].is_active = player in saved_players def _generate_extensions_lists(self): """ Set the active players and available media files """ suffix_list = [] self.audio_extensions_list = [] for player in list(self.media_players.values()): if player.is_active: for item in player.audio_extensions_list: if item not in self.audio_extensions_list: self.audio_extensions_list.append(item) suffix_list.append(item[2:]) self.video_extensions_list = [] for player in list(self.media_players.values()): if player.is_active: for item in player.video_extensions_list: if item not in self.video_extensions_list: self.video_extensions_list.append(item) suffix_list.append(item[2:]) self.service_manager.supported_suffixes(suffix_list) def register_players(self, player): """ Register each media Player (Webkit, Phonon, etc) and store for later use :param player: Individual player class which has been enabled """ self.media_players[player.name] = player def bootstrap_initialise(self): """ Check to see if we have any media Player's available. """ log.debug('_check_available_media_players') controller_dir = os.path.join(AppLocation.get_directory(AppLocation.AppDir), 'core', 'ui', 'media') for filename in os.listdir(controller_dir): if filename.endswith('player.py') and not filename == 'mediaplayer.py': path = os.path.join(controller_dir, filename) if os.path.isfile(path): module_name = 'openlp.core.ui.media.' + os.path.splitext(filename)[0] log.debug('Importing controller %s', module_name) try: __import__(module_name, globals(), locals(), []) # On some platforms importing vlc.py might cause # also OSError exceptions. (e.g. Mac OS X) except (ImportError, OSError): log.warning('Failed to import %s on path %s', module_name, path) player_classes = MediaPlayer.__subclasses__() for player_class in player_classes: player = player_class(self) self.register_players(player) if not self.media_players: return False saved_players, overridden_player = get_media_players() invalid_media_players = \ [media_player for media_player in saved_players if media_player not in self.media_players or not self.media_players[media_player].check_available()] if invalid_media_players: for invalidPlayer in invalid_media_players: saved_players.remove(invalidPlayer) set_media_players(saved_players, overridden_player) self._set_active_players() self._generate_extensions_lists() return True def media_state(self): """ Check if there is a running media Player and do updating stuff (e.g. update the UI) """ if not list(self.current_media_players.keys()): self.timer.stop() else: any_active = False for source in list(self.current_media_players.keys()): display = self._define_display(self.display_controllers[source]) self.current_media_players[source].resize(display) self.current_media_players[source].update_ui(display) if self.current_media_players[source].state == MediaState.Playing: any_active = True # There are still any active players - no need to stop timer. if any_active: return # no players are active anymore for source in list(self.current_media_players.keys()): if self.current_media_players[source].state != MediaState.Paused: display = self._define_display(self.display_controllers[source]) display.controller.seek_slider.setSliderPosition(0) display.controller.mediabar.actions['playbackPlay'].setVisible(True) display.controller.mediabar.actions['playbackPause'].setVisible(False) self.timer.stop() def get_media_display_css(self): """ Add css style sheets to htmlbuilder """ css = '' for player in list(self.media_players.values()): if player.is_active: css += player.get_media_display_css() return css def get_media_display_javascript(self): """ Add javascript functions to htmlbuilder """ js = '' for player in list(self.media_players.values()): if player.is_active: js += player.get_media_display_javascript() return js def get_media_display_html(self): """ Add html code to htmlbuilder """ html = '' for player in list(self.media_players.values()): if player.is_active: html += player.get_media_display_html() return html def register_controller(self, controller): """ Registers media controls where the players will be placed to run. :param controller: The controller where a player will be placed """ self.display_controllers[controller.controller_type] = controller self.setup_generic_controls(controller) def setup_generic_controls(self, controller): """ Set up controls on the control_panel for a given controller :param controller: First element is the controller which should be used """ controller.media_info = MediaInfo() # Build a Media ToolBar controller.mediabar = OpenLPToolbar(controller) controller.mediabar.add_toolbar_action('playbackPlay', text='media_playback_play', icon=':/slides/media_playback_start.png', tooltip=translate('OpenLP.SlideController', 'Start playing media.'), triggers=controller.send_to_plugins) controller.mediabar.add_toolbar_action('playbackPause', text='media_playback_pause', icon=':/slides/media_playback_pause.png', tooltip=translate('OpenLP.SlideController', 'Pause playing media.'), triggers=controller.send_to_plugins) controller.mediabar.add_toolbar_action('playbackStop', text='media_playback_stop', icon=':/slides/media_playback_stop.png', tooltip=translate('OpenLP.SlideController', 'Stop playing media.'), triggers=controller.send_to_plugins) # Build the seek_slider. controller.seek_slider = MediaSlider(QtCore.Qt.Horizontal, self, controller) controller.seek_slider.setMaximum(1000) controller.seek_slider.setTracking(True) controller.seek_slider.setMouseTracking(True) controller.seek_slider.setToolTip(translate('OpenLP.SlideController', 'Video position.')) controller.seek_slider.setGeometry(QtCore.QRect(90, 260, 221, 24)) controller.seek_slider.setObjectName('seek_slider') controller.mediabar.add_toolbar_widget(controller.seek_slider) # Build the volume_slider. controller.volume_slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) controller.volume_slider.setTickInterval(10) controller.volume_slider.setTickPosition(QtWidgets.QSlider.TicksAbove) controller.volume_slider.setMinimum(0) controller.volume_slider.setMaximum(100) controller.volume_slider.setTracking(True) controller.volume_slider.setToolTip(translate('OpenLP.SlideController', 'Audio Volume.')) controller.volume_slider.setValue(controller.media_info.volume) controller.volume_slider.setGeometry(QtCore.QRect(90, 160, 221, 24)) controller.volume_slider.setObjectName('volume_slider') controller.mediabar.add_toolbar_widget(controller.volume_slider) controller.controller_layout.addWidget(controller.mediabar) controller.mediabar.setVisible(False) # Signals controller.seek_slider.valueChanged.connect(controller.send_to_plugins) controller.volume_slider.valueChanged.connect(controller.send_to_plugins) def setup_display(self, display, preview): """ After a new display is configured, all media related widgets will be created too :param display: Display on which the output is to be played :param preview: Whether the display is a main or preview display """ # clean up possible running old media files self.finalise() # update player status self._set_active_players() display.has_audio = True if display.is_live and preview: return if preview: display.has_audio = False for player in list(self.media_players.values()): if player.is_active: player.setup(display) def set_controls_visible(self, controller, value): """ After a new display is configured, all media related widget will be created too :param controller: The controller on which controls act. :param value: control name to be changed. """ # Generic controls controller.mediabar.setVisible(value) if controller.is_live and controller.display: if self.current_media_players and value: if self.current_media_players[controller.controller_type] != self.media_players['webkit']: controller.display.set_transparency(False) def resize(self, display, player): """ After Mainwindow changes or Splitter moved all related media widgets have to be resized :param display: The display on which output is playing. :param player: The player which is doing the playing. """ player.resize(display) def video(self, source, service_item, hidden=False, video_behind_text=False): """ Loads and starts a video to run with the option of sound :param source: Where the call originated form :param service_item: The player which is doing the playing :param hidden: The player which is doing the playing :param video_behind_text: Is the video to be played behind text. """ log.debug('video') is_valid = False controller = self.display_controllers[source] # stop running videos self.media_reset(controller) controller.media_info = MediaInfo() controller.media_info.volume = controller.volume_slider.value() controller.media_info.is_background = video_behind_text controller.media_info.file_info = QtCore.QFileInfo(service_item.get_frame_path()) display = self._define_display(controller) if controller.is_live: # if this is an optical device use special handling if service_item.is_capable(ItemCapabilities.IsOptical): log.debug('video is optical and live') path = service_item.get_frame_path() (name, title, audio_track, subtitle_track, start, end, clip_name) = parse_optical_path(path) is_valid = self.media_setup_optical(name, title, audio_track, subtitle_track, start, end, display, controller) else: log.debug('video is not optical and live') is_valid = self._check_file_type(controller, display, service_item) display.override['theme'] = '' display.override['video'] = True if controller.media_info.is_background: # ignore start/end time controller.media_info.start_time = 0 controller.media_info.end_time = 0 else: controller.media_info.start_time = service_item.start_time controller.media_info.end_time = service_item.end_time elif controller.preview_display: if service_item.is_capable(ItemCapabilities.IsOptical): log.debug('video is optical and preview') path = service_item.get_frame_path() (name, title, audio_track, subtitle_track, start, end, clip_name) = parse_optical_path(path) is_valid = self.media_setup_optical(name, title, audio_track, subtitle_track, start, end, display, controller) else: log.debug('video is not optical and preview') is_valid = self._check_file_type(controller, display, service_item) if not is_valid: # Media could not be loaded correctly critical_error_message_box(translate('MediaPlugin.MediaItem', 'Unsupported File'), translate('MediaPlugin.MediaItem', 'Unsupported File')) return False log.debug('video mediatype: ' + str(controller.media_info.media_type)) # dont care about actual theme, set a black background if controller.is_live and not controller.media_info.is_background: display.frame.evaluateJavaScript('show_video( "setBackBoard", null, null, null,"visible");') # now start playing - Preview is autoplay! autoplay = False # Preview requested if not controller.is_live: autoplay = True # Visible or background requested or Service Item wants to autostart elif not hidden or controller.media_info.is_background or service_item.will_auto_start: autoplay = True # Unblank on load set elif Settings().value('core/auto unblank'): autoplay = True if autoplay: if not self.media_play(controller): critical_error_message_box(translate('MediaPlugin.MediaItem', 'Unsupported File'), translate('MediaPlugin.MediaItem', 'Unsupported File')) return False self.set_controls_visible(controller, True) log.debug('use %s controller' % self.current_media_players[controller.controller_type].display_name) return True def media_length(self, service_item): """ Loads and starts a media item to obtain the media length :param service_item: The ServiceItem containing the details to be played. """ controller = self.display_controllers[DisplayControllerType.Plugin] log.debug('media_length') # stop running videos self.media_reset(controller) controller.media_info = MediaInfo() controller.media_info.volume = 0 controller.media_info.file_info = QtCore.QFileInfo(service_item.get_frame_path()) display = controller.preview_display if not self._check_file_type(controller, display, service_item): # Media could not be loaded correctly critical_error_message_box(translate('MediaPlugin.MediaItem', 'Unsupported File'), translate('MediaPlugin.MediaItem', 'Unsupported File')) return False if not self.media_play(controller): critical_error_message_box(translate('MediaPlugin.MediaItem', 'Unsupported File'), translate('MediaPlugin.MediaItem', 'Unsupported File')) return False service_item.set_media_length(controller.media_info.length) self.media_stop(controller) log.debug('use %s controller' % self.current_media_players[controller.controller_type]) return True def media_setup_optical(self, filename, title, audio_track, subtitle_track, start, end, display, controller): """ Setup playback of optical media :param filename: Path of the optical device/drive. :param title: The main/title track to play. :param audio_track: The audio track to play. :param subtitle_track: The subtitle track to play. :param start: Start position in miliseconds. :param end: End position in miliseconds. :param display: The display to play the media. :param controller: The media contraoller. :return: True if setup succeded else False. """ log.debug('media_setup_optical') if controller is None: controller = self.display_controllers[DisplayControllerType.Plugin] # stop running videos self.media_reset(controller) # Setup media info controller.media_info = MediaInfo() controller.media_info.file_info = QtCore.QFileInfo(filename) if audio_track == -1 and subtitle_track == -1: controller.media_info.media_type = MediaType.CD else: controller.media_info.media_type = MediaType.DVD controller.media_info.start_time = start / 1000 controller.media_info.end_time = end / 1000 controller.media_info.length = (end - start) / 1000 controller.media_info.title_track = title controller.media_info.audio_track = audio_track controller.media_info.subtitle_track = subtitle_track # When called from mediaitem display is None if display is None: display = controller.preview_display # Find vlc player used_players = get_media_players()[0] vlc_player = None for title in used_players: player = self.media_players[title] if player.name == 'vlc': vlc_player = player if vlc_player is None: critical_error_message_box(translate('MediaPlugin.MediaItem', 'VLC player required'), translate('MediaPlugin.MediaItem', 'VLC player required for playback of optical devices')) return False vlc_player.load(display) self.resize(display, vlc_player) self.current_media_players[controller.controller_type] = vlc_player if audio_track == -1 and subtitle_track == -1: controller.media_info.media_type = MediaType.CD else: controller.media_info.media_type = MediaType.DVD return True def _check_file_type(self, controller, display, service_item): """ Select the correct media Player type from the prioritized Player list :param controller: First element is the controller which should be used :param display: Which display to use :param service_item: The ServiceItem containing the details to be played. """ used_players = get_media_players()[0] # If no player, we can't play if not used_players: return False default_player = [used_players[0]] if service_item.processor and service_item.processor != UiStrings().Automatic: # check to see if the player is usable else use the default one. if not service_item.processor.lower() in used_players: used_players = default_player else: used_players = [service_item.processor.lower()] if controller.media_info.file_info.isFile(): suffix = '*.%s' % controller.media_info.file_info.suffix().lower() for title in used_players: if not title: continue player = self.media_players[title] # The system player may not return what files it can play so add it now # and check whether it can play the file later if title == 'system': if not controller.media_info.is_background or controller.media_info.is_background and \ player.can_background: self.resize(display, player) if player.load(display): self.current_media_players[controller.controller_type] = player controller.media_info.media_type = MediaType.Video return True if suffix in player.video_extensions_list: if not controller.media_info.is_background or controller.media_info.is_background and \ player.can_background: self.resize(display, player) if player.load(display): self.current_media_players[controller.controller_type] = player controller.media_info.media_type = MediaType.Video return True if suffix in player.audio_extensions_list: if player.load(display): self.current_media_players[controller.controller_type] = player controller.media_info.media_type = MediaType.Audio return True else: for title in used_players: player = self.media_players[title] if player.can_folder: self.resize(display, player) if player.load(display): self.current_media_players[controller.controller_type] = player controller.media_info.media_type = MediaType.Video return True # no valid player found return False def media_play_msg(self, msg, status=True): """ Responds to the request to play a loaded video :param msg: First element is the controller which should be used :param status: """ log.debug('media_play_msg') self.media_play(msg[0], status) def media_play(self, controller, status=True): """ Responds to the request to play a loaded video :param controller: The controller to be played :param status: """ log.debug('media_play') controller.seek_slider.blockSignals(True) controller.volume_slider.blockSignals(True) display = self._define_display(controller) if not self.current_media_players[controller.controller_type].play(display): controller.seek_slider.blockSignals(False) controller.volume_slider.blockSignals(False) return False if controller.media_info.is_background: self.media_volume(controller, 0) else: self.media_volume(controller, controller.media_info.volume) if status: if not controller.media_info.is_background: display.frame.evaluateJavaScript('show_blank("desktop");') self.current_media_players[controller.controller_type].set_visible(display, True) # Flash needs to be played and will not AutoPlay if controller.media_info.is_flash: controller.mediabar.actions['playbackPlay'].setVisible(True) controller.mediabar.actions['playbackPause'].setVisible(False) else: controller.mediabar.actions['playbackPlay'].setVisible(False) controller.mediabar.actions['playbackPause'].setVisible(True) controller.mediabar.actions['playbackStop'].setDisabled(False) if controller.is_live: if controller.hide_menu.defaultAction().isChecked() and not controller.media_info.is_background: controller.hide_menu.defaultAction().trigger() # Start Timer for ui updates if not self.timer.isActive(): self.timer.start() controller.seek_slider.blockSignals(False) controller.volume_slider.blockSignals(False) return True def media_pause_msg(self, msg): """ Responds to the request to pause a loaded video :param msg: First element is the controller which should be used """ log.debug('media_pause_msg') self.media_pause(msg[0]) def media_pause(self, controller): """ Responds to the request to pause a loaded video :param controller: The Controller to be paused """ log.debug('media_pause') display = self._define_display(controller) self.current_media_players[controller.controller_type].pause(display) controller.mediabar.actions['playbackPlay'].setVisible(True) controller.mediabar.actions['playbackStop'].setDisabled(False) controller.mediabar.actions['playbackPause'].setVisible(False) def media_stop_msg(self, msg): """ Responds to the request to stop a loaded video :param msg: First element is the controller which should be used """ log.debug('media_stop_msg') self.media_stop(msg[0]) def media_stop(self, controller): """ Responds to the request to stop a loaded video :param controller: The controller that needs to be stopped """ log.debug('media_stop') display = self._define_display(controller) if controller.controller_type in self.current_media_players: display.frame.evaluateJavaScript('show_blank("black");') self.current_media_players[controller.controller_type].stop(display) self.current_media_players[controller.controller_type].set_visible(display, False) controller.seek_slider.setSliderPosition(0) controller.mediabar.actions['playbackPlay'].setVisible(True) controller.mediabar.actions['playbackStop'].setDisabled(True) controller.mediabar.actions['playbackPause'].setVisible(False) def media_volume_msg(self, msg): """ Changes the volume of a running video :param msg: First element is the controller which should be used """ controller = msg[0] vol = msg[1][0] self.media_volume(controller, vol) def media_volume(self, controller, volume): """ Changes the volume of a running video :param controller: The Controller to use :param volume: The volume to be set """ log.debug('media_volume %d' % volume) display = self._define_display(controller) self.current_media_players[controller.controller_type].volume(display, volume) controller.volume_slider.setValue(volume) def media_seek_msg(self, msg): """ Responds to the request to change the seek Slider of a loaded video via a message :param msg: First element is the controller which should be used Second element is a list with the seek value as first element """ log.debug('media_seek') controller = msg[0] seek_value = msg[1][0] self.media_seek(controller, seek_value) def media_seek(self, controller, seek_value): """ Responds to the request to change the seek Slider of a loaded video :param controller: The controller to use. :param seek_value: The value to set. """ log.debug('media_seek') display = self._define_display(controller) self.current_media_players[controller.controller_type].seek(display, seek_value) def media_reset(self, controller): """ Responds to the request to reset a loaded video """ log.debug('media_reset') self.set_controls_visible(controller, False) display = self._define_display(controller) if controller.controller_type in self.current_media_players: display.override = {} self.current_media_players[controller.controller_type].reset(display) self.current_media_players[controller.controller_type].set_visible(display, False) display.frame.evaluateJavaScript('show_video( "setBackBoard", null, null, null,"hidden");') del self.current_media_players[controller.controller_type] def media_hide(self, msg): """ Hide the related video Widget :param msg: First element is the boolean for Live indication """ is_live = msg[1] if not is_live: return display = self._define_display(self.live_controller) if self.live_controller.controller_type in self.current_media_players and \ self.current_media_players[self.live_controller.controller_type].state == MediaState.Playing: self.current_media_players[self.live_controller.controller_type].pause(display) self.current_media_players[self.live_controller.controller_type].set_visible(display, False) def media_blank(self, msg): """ Blank the related video Widget :param msg: First element is the boolean for Live indication Second element is the hide mode """ is_live = msg[1] hide_mode = msg[2] if not is_live: return Registry().execute('live_display_hide', hide_mode) display = self._define_display(self.live_controller) if self.live_controller.controller_type in self.current_media_players and \ self.current_media_players[self.live_controller.controller_type].state == MediaState.Playing: self.current_media_players[self.live_controller.controller_type].pause(display) self.current_media_players[self.live_controller.controller_type].set_visible(display, False) def media_unblank(self, msg): """ Unblank the related video Widget :param msg: First element is not relevant in this context Second element is the boolean for Live indication """ Registry().execute('live_display_show') is_live = msg[1] if not is_live: return display = self._define_display(self.live_controller) if self.live_controller.controller_type in self.current_media_players and \ self.current_media_players[self.live_controller.controller_type].state != MediaState.Playing: if self.current_media_players[self.live_controller.controller_type].play(display): self.current_media_players[self.live_controller.controller_type].set_visible(display, True) # Start Timer for ui updates if not self.timer.isActive(): self.timer.start() def finalise(self): """ Reset all the media controllers when OpenLP shuts down """ self.timer.stop() for controller in self.display_controllers: self.media_reset(self.display_controllers[controller]) def _define_display(self, controller): """ Extract the correct display for a given controller :param controller: Controller to be used """ if controller.is_live: return controller.display return controller.preview_display OpenLP-2.4/openlp/core/ui/media/webkitplayer.py0000644000175000017500000003407612657640340020560 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.webkit` module contains our WebKit video player """ from PyQt5 import QtGui, QtWebKitWidgets import logging from openlp.core.common import Settings from openlp.core.lib import translate from openlp.core.ui.media import MediaState from openlp.core.ui.media.mediaplayer import MediaPlayer log = logging.getLogger(__name__) VIDEO_CSS = """ #videobackboard { z-index:3; background-color: %(bgcolor)s; } #video { background-color: %(bgcolor)s; z-index:4; } """ VIDEO_JS = """ function show_video(state, path, volume, loop, variable_value){ // Sometimes video.currentTime stops slightly short of video.duration and video.ended is intermittent! var video = document.getElementById('video'); if(volume != null){ video.volume = volume; } switch(state){ case 'load': video.src = 'file:///' + path; if(loop == true) { video.loop = true; } video.load(); break; case 'play': video.play(); break; case 'pause': video.pause(); break; case 'stop': show_video('pause'); video.currentTime = 0; break; case 'close': show_video('stop'); video.src = ''; break; case 'length': return video.duration; case 'current_time': return video.currentTime; case 'seek': video.currentTime = variable_value; break; case 'isEnded': return video.ended; case 'setVisible': video.style.visibility = variable_value; break; case 'setBackBoard': var back = document.getElementById('videobackboard'); back.style.visibility = variable_value; break; } } """ VIDEO_HTML = """ """ FLASH_CSS = """ #flash { z-index:5; } """ FLASH_JS = """ function getFlashMovieObject(movieName) { if (window.document[movieName]){ return window.document[movieName]; } if (document.embeds && document.embeds[movieName]){ return document.embeds[movieName]; } } function show_flash(state, path, volume, variable_value){ var text = document.getElementById('flash'); var flashMovie = getFlashMovieObject("OpenLPFlashMovie"); var src = "src = 'file:///" + path + "'"; var view_parm = " wmode='opaque'" + " width='100%%'" + " height='100%%'"; var swf_parm = " name='OpenLPFlashMovie'" + " autostart='true' loop='false' play='true'" + " hidden='false' swliveconnect='true' allowscriptaccess='always'" + " volume='" + volume + "'"; switch(state){ case 'load': text.innerHTML = ""; flashMovie = getFlashMovieObject("OpenLPFlashMovie"); flashMovie.Play(); break; case 'play': flashMovie.Play(); break; case 'pause': flashMovie.StopPlay(); break; case 'stop': flashMovie.StopPlay(); tempHtml = text.innerHTML; text.innerHTML = ''; text.innerHTML = tempHtml; break; case 'close': flashMovie.StopPlay(); text.innerHTML = ''; break; case 'length': return flashMovie.TotalFrames(); case 'current_time': return flashMovie.CurrentFrame(); case 'seek': // flashMovie.GotoFrame(variable_value); break; case 'isEnded': //TODO check flash end return false; case 'setVisible': text.style.visibility = variable_value; break; } } """ FLASH_HTML = """ """ VIDEO_EXT = ['*.3gp', '*.3gpp', '*.3g2', '*.3gpp2', '*.aac', '*.flv', '*.f4a', '*.f4b', '*.f4p', '*.f4v', '*.mov', '*.m4a', '*.m4b', '*.m4p', '*.m4v', '*.mkv', '*.mp4', '*.ogv', '*.webm', '*.mpg', '*.wmv', '*.mpeg', '*.avi', '*.swf'] AUDIO_EXT = ['*.mp3', '*.ogg'] class WebkitPlayer(MediaPlayer): """ A specialised version of the MediaPlayer class, which provides a QtWebKit display. """ def __init__(self, parent): """ Constructor """ super(WebkitPlayer, self).__init__(parent, 'webkit') self.original_name = 'WebKit' self.display_name = '&WebKit' self.parent = parent self.can_background = True self.audio_extensions_list = AUDIO_EXT self.video_extensions_list = VIDEO_EXT def get_media_display_css(self): """ Add css style sheets to htmlbuilder """ background = QtGui.QColor(Settings().value('players/background color')).name() css = VIDEO_CSS % {'bgcolor': background} return css + FLASH_CSS def get_media_display_javascript(self): """ Add javascript functions to htmlbuilder """ return VIDEO_JS + FLASH_JS def get_media_display_html(self): """ Add html code to htmlbuilder """ return VIDEO_HTML + FLASH_HTML def setup(self, display): """ Set up the player """ display.web_view.resize(display.size()) display.web_view.raise_() self.has_own_widget = False def check_available(self): """ Check the availability of the media player. :return: boolean. True if available """ web = QtWebKitWidgets.QWebPage() # This script should return '[object HTMLVideoElement]' if the html5 video is available in webkit. Otherwise it # should return '[object HTMLUnknownElement]' return web.mainFrame().evaluateJavaScript( "Object.prototype.toString.call(document.createElement('video'));") == '[object HTMLVideoElement]' def load(self, display): """ Load a video """ log.debug('load vid in Webkit Controller') controller = display.controller if display.has_audio and not controller.media_info.is_background: volume = controller.media_info.volume vol = float(volume) / float(100) else: vol = 0 path = controller.media_info.file_info.absoluteFilePath() if controller.media_info.is_background: loop = 'true' else: loop = 'false' display.web_view.setVisible(True) if controller.media_info.file_info.suffix() == 'swf': controller.media_info.is_flash = True js = 'show_flash("load","%s");' % (path.replace('\\', '\\\\')) else: js = 'show_video("load", "%s", %s, %s);' % (path.replace('\\', '\\\\'), str(vol), loop) display.frame.evaluateJavaScript(js) return True def resize(self, display): """ Resize the player """ display.web_view.resize(display.size()) def play(self, display): """ Play a video """ controller = display.controller display.web_loaded = True length = 0 start_time = 0 if self.state != MediaState.Paused and controller.media_info.start_time > 0: start_time = controller.media_info.start_time self.set_visible(display, True) if controller.media_info.is_flash: display.frame.evaluateJavaScript('show_flash("play");') else: display.frame.evaluateJavaScript('show_video("play");') if start_time > 0: self.seek(display, controller.media_info.start_time * 1000) # TODO add playing check and get the correct media length controller.media_info.length = length self.state = MediaState.Playing display.web_view.raise_() return True def pause(self, display): """ Pause a video """ controller = display.controller if controller.media_info.is_flash: display.frame.evaluateJavaScript('show_flash("pause");') else: display.frame.evaluateJavaScript('show_video("pause");') self.state = MediaState.Paused def stop(self, display): """ Stop a video """ controller = display.controller if controller.media_info.is_flash: display.frame.evaluateJavaScript('show_flash("stop");') else: display.frame.evaluateJavaScript('show_video("stop");') self.state = MediaState.Stopped def volume(self, display, volume): """ Set the volume """ controller = display.controller # 1.0 is the highest value if display.has_audio: vol = float(volume) / float(100) if not controller.media_info.is_flash: display.frame.evaluateJavaScript('show_video(null, null, %s);' % str(vol)) def seek(self, display, seek_value): """ Go to a position in the video """ controller = display.controller if controller.media_info.is_flash: seek = seek_value display.frame.evaluateJavaScript('show_flash("seek", null, null, "%s");' % seek) else: seek = float(seek_value) / 1000 display.frame.evaluateJavaScript('show_video("seek", null, null, null, "%f");' % seek) def reset(self, display): """ Reset the player """ controller = display.controller if controller.media_info.is_flash: display.frame.evaluateJavaScript('show_flash("close");') else: display.frame.evaluateJavaScript('show_video("close");') self.state = MediaState.Off def set_visible(self, display, status): """ Set the visibility """ controller = display.controller if status: is_visible = "visible" else: is_visible = "hidden" if controller.media_info.is_flash: display.frame.evaluateJavaScript('show_flash("setVisible", null, null, "%s");' % is_visible) else: display.frame.evaluateJavaScript('show_video("setVisible", null, null, null, "%s");' % is_visible) def update_ui(self, display): """ Update the UI """ controller = display.controller if controller.media_info.is_flash: current_time = display.frame.evaluateJavaScript('show_flash("current_time");') length = display.frame.evaluateJavaScript('show_flash("length");') else: if display.frame.evaluateJavaScript('show_video("isEnded");'): self.stop(display) current_time = display.frame.evaluateJavaScript('show_video("current_time");') # check if conversion was ok and value is not 'NaN' if current_time and current_time != float('inf'): current_time = int(current_time * 1000) length = display.frame.evaluateJavaScript('show_video("length");') # check if conversion was ok and value is not 'NaN' if length and length != float('inf'): length = int(length * 1000) if current_time and length: controller.media_info.length = length controller.seek_slider.setMaximum(length) if not controller.seek_slider.isSliderDown(): controller.seek_slider.blockSignals(True) controller.seek_slider.setSliderPosition(current_time) controller.seek_slider.blockSignals(False) def get_info(self): """ Return some information about this player """ part1 = translate('Media.player', 'Webkit is a media player which runs inside a web browser. This player ' 'allows text over video to be rendered.') part2 = translate('Media.player', 'Audio') part3 = translate('Media.player', 'Video') return part1 + '
' + part2 + '
' + str(AUDIO_EXT) + '
' + part3 + \ '
' + str(VIDEO_EXT) + '
' OpenLP-2.4/openlp/core/ui/media/vlcplayer.py0000644000175000017500000004147412657640340020057 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.media.vlcplayer` module contains our VLC component wrapper """ from datetime import datetime from distutils.version import LooseVersion import logging import os import threading import sys import ctypes from PyQt5 import QtWidgets from openlp.core.common import Settings, is_win, is_macosx, is_linux from openlp.core.lib import translate from openlp.core.ui.media import MediaState, MediaType from openlp.core.ui.media.mediaplayer import MediaPlayer log = logging.getLogger(__name__) # Audio and video extensions copied from 'include/vlc_interface.h' from vlc 2.2.0 source AUDIO_EXT = ['*.3ga', '*.669', '*.a52', '*.aac', '*.ac3', '*.adt', '*.adts', '*.aif', '*.aifc', '*.aiff', '*.amr', '*.aob', '*.ape', '*.awb', '*.caf', '*.dts', '*.flac', '*.it', '*.kar', '*.m4a', '*.m4b', '*.m4p', '*.m5p', '*.mid', '*.mka', '*.mlp', '*.mod', '*.mpa', '*.mp1', '*.mp2', '*.mp3', '*.mpc', '*.mpga', '*.mus', '*.oga', '*.ogg', '*.oma', '*.opus', '*.qcp', '*.ra', '*.rmi', '*.s3m', '*.sid', '*.spx', '*.thd', '*.tta', '*.voc', '*.vqf', '*.w64', '*.wav', '*.wma', '*.wv', '*.xa', '*.xm'] VIDEO_EXT = ['*.3g2', '*.3gp', '*.3gp2', '*.3gpp', '*.amv', '*.asf', '*.avi', '*.bik', '*.divx', '*.drc', '*.dv', '*.f4v', '*.flv', '*.gvi', '*.gxf', '*.iso', '*.m1v', '*.m2v', '*.m2t', '*.m2ts', '*.m4v', '*.mkv', '*.mov', '*.mp2', '*.mp2v', '*.mp4', '*.mp4v', '*.mpe', '*.mpeg', '*.mpeg1', '*.mpeg2', '*.mpeg4', '*.mpg', '*.mpv2', '*.mts', '*.mtv', '*.mxf', '*.mxg', '*.nsv', '*.nuv', '*.ogg', '*.ogm', '*.ogv', '*.ogx', '*.ps', '*.rec', '*.rm', '*.rmvb', '*.rpl', '*.thp', '*.tod', '*.ts', '*.tts', '*.txd', '*.vob', '*.vro', '*.webm', '*.wm', '*.wmv', '*.wtv', '*.xesc', # These extensions was not in the official list, added manually. '*.nut', '*.rv', '*.xvid'] def get_vlc(): """ In order to make this module more testable, we have to wrap the VLC import inside a method. We do this so that we can mock out the VLC module entirely. :return: The "vlc" module, or None """ if 'openlp.core.ui.media.vendor.vlc' in sys.modules: # If VLC has already been imported, no need to do all the stuff below again return sys.modules['openlp.core.ui.media.vendor.vlc'] is_vlc_available = False try: if is_macosx(): # Newer versions of VLC on OS X need this. See https://forum.videolan.org/viewtopic.php?t=124521 os.environ['VLC_PLUGIN_PATH'] = '/Applications/VLC.app/Contents/MacOS/plugins' # On Windows when frozen in PyInstaller, we need to blank SetDllDirectoryW to allow loading of the VLC dll. # This is due to limitations (by desgin) in PyInstaller. SetDllDirectoryW original value is restored once # VLC has been imported. if is_win(): buffer_size = 1024 dll_directory = ctypes.create_unicode_buffer(buffer_size) new_buffer_size = ctypes.windll.kernel32.GetDllDirectoryW(buffer_size, dll_directory) dll_directory = ''.join(dll_directory[:new_buffer_size]).replace('\0', '') log.debug('Original DllDirectory: %s' % dll_directory) ctypes.windll.kernel32.SetDllDirectoryW(None) from openlp.core.ui.media.vendor import vlc if is_win(): ctypes.windll.kernel32.SetDllDirectoryW(dll_directory) is_vlc_available = bool(vlc.get_default_instance()) except (ImportError, NameError, NotImplementedError): pass except OSError as e: if is_win(): if not isinstance(e, WindowsError) and e.winerror != 126: raise else: pass if is_vlc_available: try: VERSION = vlc.libvlc_get_version().decode('UTF-8') except: VERSION = '0.0.0' # LooseVersion does not work when a string contains letter and digits (e. g. 2.0.5 Twoflower). # http://bugs.python.org/issue14894 if LooseVersion(VERSION.split()[0]) < LooseVersion('1.1.0'): is_vlc_available = False log.debug('VLC could not be loaded, because the vlc version is too old: %s' % VERSION) if is_vlc_available: return vlc else: return None # On linux we need to initialise X threads, but not when running tests. # This needs to happen on module load and not in get_vlc(), otherwise it can cause crashes on some DE on some setups # (reported on Gnome3, Unity, Cinnamon, all GTK+ based) when using native filedialogs... if is_linux() and 'nose' not in sys.argv[0] and get_vlc(): import ctypes try: try: x11 = ctypes.cdll.LoadLibrary('libX11.so.6') except OSError: # If libx11.so.6 was not found, fallback to more generic libx11.so x11 = ctypes.cdll.LoadLibrary('libX11.so') x11.XInitThreads() except: log.exception('Failed to run XInitThreads(), VLC might not work properly!') class VlcPlayer(MediaPlayer): """ A specialised version of the MediaPlayer class, which provides a VLC display. """ def __init__(self, parent): """ Constructor """ super(VlcPlayer, self).__init__(parent, 'vlc') self.original_name = 'VLC' self.display_name = '&VLC' self.parent = parent self.can_folder = True self.audio_extensions_list = AUDIO_EXT self.video_extensions_list = VIDEO_EXT def setup(self, display): """ Set up the media player """ vlc = get_vlc() display.vlc_widget = QtWidgets.QFrame(display) display.vlc_widget.setFrameStyle(QtWidgets.QFrame.NoFrame) # creating a basic vlc instance command_line_options = '--no-video-title-show' if not display.has_audio: command_line_options += ' --no-audio --no-video-title-show' if Settings().value('advanced/hide mouse') and display.controller.is_live: command_line_options += ' --mouse-hide-timeout=0' display.vlc_instance = vlc.Instance(command_line_options) # creating an empty vlc media player display.vlc_media_player = display.vlc_instance.media_player_new() display.vlc_widget.resize(display.size()) display.vlc_widget.raise_() display.vlc_widget.hide() # The media player has to be 'connected' to the QFrame. # (otherwise a video would be displayed in it's own window) # This is platform specific! # You have to give the id of the QFrame (or similar object) # to vlc, different platforms have different functions for this. win_id = int(display.vlc_widget.winId()) if is_win(): display.vlc_media_player.set_hwnd(win_id) elif is_macosx(): # We have to use 'set_nsobject' since Qt5 on OSX uses Cocoa # framework and not the old Carbon. display.vlc_media_player.set_nsobject(win_id) else: # for Linux/*BSD using the X Server display.vlc_media_player.set_xwindow(win_id) self.has_own_widget = True def check_available(self): """ Return the availability of VLC """ return get_vlc() is not None def load(self, display): """ Load a video into VLC """ vlc = get_vlc() log.debug('load vid in Vlc Controller') controller = display.controller volume = controller.media_info.volume file_path = str(controller.media_info.file_info.absoluteFilePath()) path = os.path.normcase(file_path) # create the media if controller.media_info.media_type == MediaType.CD: if is_win(): path = '/' + path display.vlc_media = display.vlc_instance.media_new_location('cdda://' + path) display.vlc_media_player.set_media(display.vlc_media) display.vlc_media_player.play() # Wait for media to start playing. In this case VLC actually returns an error. self.media_state_wait(display, vlc.State.Playing) # If subitems exists, this is a CD audio_cd_tracks = display.vlc_media.subitems() if not audio_cd_tracks or audio_cd_tracks.count() < 1: return False display.vlc_media = audio_cd_tracks.item_at_index(controller.media_info.title_track) else: display.vlc_media = display.vlc_instance.media_new_path(path) # put the media in the media player display.vlc_media_player.set_media(display.vlc_media) # parse the metadata of the file display.vlc_media.parse() self.volume(display, volume) # We need to set media_info.length during load because we want # to avoid start and stop the video twice. Once for real playback # and once to just get media length. # # Media plugin depends on knowing media length before playback. controller.media_info.length = int(display.vlc_media_player.get_media().get_duration() / 1000) return True def media_state_wait(self, display, media_state): """ Wait for the video to change its state Wait no longer than 60 seconds. (loading an iso file needs a long time) """ vlc = get_vlc() start = datetime.now() while not media_state == display.vlc_media.get_state(): if display.vlc_media.get_state() == vlc.State.Error: return False self.application.process_events() if (datetime.now() - start).seconds > 60: return False return True def resize(self, display): """ Resize the player """ display.vlc_widget.resize(display.size()) def play(self, display): """ Play the current item """ vlc = get_vlc() controller = display.controller start_time = 0 log.debug('vlc play') if self.state != MediaState.Paused and controller.media_info.start_time > 0: start_time = controller.media_info.start_time threading.Thread(target=display.vlc_media_player.play).start() if not self.media_state_wait(display, vlc.State.Playing): return False if self.state != MediaState.Paused and controller.media_info.start_time > 0: log.debug('vlc play, starttime set') start_time = controller.media_info.start_time log.debug('mediatype: ' + str(controller.media_info.media_type)) # Set tracks for the optical device if controller.media_info.media_type == MediaType.DVD: log.debug('vlc play, playing started') if controller.media_info.title_track > 0: log.debug('vlc play, title_track set: ' + str(controller.media_info.title_track)) display.vlc_media_player.set_title(controller.media_info.title_track) display.vlc_media_player.play() if not self.media_state_wait(display, vlc.State.Playing): return False if controller.media_info.audio_track > 0: display.vlc_media_player.audio_set_track(controller.media_info.audio_track) log.debug('vlc play, audio_track set: ' + str(controller.media_info.audio_track)) if controller.media_info.subtitle_track > 0: display.vlc_media_player.video_set_spu(controller.media_info.subtitle_track) log.debug('vlc play, subtitle_track set: ' + str(controller.media_info.subtitle_track)) if controller.media_info.start_time > 0: log.debug('vlc play, starttime set: ' + str(controller.media_info.start_time)) start_time = controller.media_info.start_time controller.media_info.length = controller.media_info.end_time - controller.media_info.start_time else: controller.media_info.length = int(display.vlc_media_player.get_media().get_duration() / 1000) self.volume(display, controller.media_info.volume) if start_time > 0 and display.vlc_media_player.is_seekable(): display.vlc_media_player.set_time(int(start_time * 1000)) controller.seek_slider.setMaximum(controller.media_info.length * 1000) self.state = MediaState.Playing display.vlc_widget.raise_() return True def pause(self, display): """ Pause the current item """ vlc = get_vlc() if display.vlc_media.get_state() != vlc.State.Playing: return display.vlc_media_player.pause() if self.media_state_wait(display, vlc.State.Paused): self.state = MediaState.Paused def stop(self, display): """ Stop the current item """ threading.Thread(target=display.vlc_media_player.stop).start() self.state = MediaState.Stopped def volume(self, display, vol): """ Set the volume """ if display.has_audio: display.vlc_media_player.audio_set_volume(vol) def seek(self, display, seek_value): """ Go to a particular position """ if display.controller.media_info.media_type == MediaType.CD \ or display.controller.media_info.media_type == MediaType.DVD: seek_value += int(display.controller.media_info.start_time * 1000) if display.vlc_media_player.is_seekable(): display.vlc_media_player.set_time(seek_value) def reset(self, display): """ Reset the player """ display.vlc_media_player.stop() display.vlc_widget.setVisible(False) self.state = MediaState.Off def set_visible(self, display, status): """ Set the visibility """ if self.has_own_widget: display.vlc_widget.setVisible(status) def update_ui(self, display): """ Update the UI """ vlc = get_vlc() # Stop video if playback is finished. if display.vlc_media.get_state() == vlc.State.Ended: self.stop(display) controller = display.controller if controller.media_info.end_time > 0: if display.vlc_media_player.get_time() > controller.media_info.end_time * 1000: self.stop(display) self.set_visible(display, False) if not controller.seek_slider.isSliderDown(): controller.seek_slider.blockSignals(True) if display.controller.media_info.media_type == MediaType.CD \ or display.controller.media_info.media_type == MediaType.DVD: controller.seek_slider.setSliderPosition(display.vlc_media_player.get_time() - int(display.controller.media_info.start_time * 1000)) else: controller.seek_slider.setSliderPosition(display.vlc_media_player.get_time()) controller.seek_slider.blockSignals(False) def get_info(self): """ Return some information about this player """ return(translate('Media.player', 'VLC is an external player which ' 'supports a number of different formats.') + '
' + translate('Media.player', 'Audio') + '
' + str(AUDIO_EXT) + '
' + translate('Media.player', 'Video') + '
' + str(VIDEO_EXT) + '
') OpenLP-2.4/openlp/core/ui/maindisplay.py0000644000175000017500000006726412657640340017316 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`maindisplay` module provides the functionality to display screens and play multimedia within OpenLP. Some of the code for this form is based on the examples at: * `http://www.steveheffernan.com/html5-video-player/demo-video-player.html`_ * `http://html5demos.com/two-videos`_ """ import html import logging from PyQt5 import QtCore, QtWidgets, QtWebKit, QtWebKitWidgets, QtOpenGL, QtGui, QtMultimedia from openlp.core.common import Registry, RegistryProperties, OpenLPMixin, Settings, translate, is_macosx, is_win from openlp.core.lib import ServiceItem, ImageSource, ScreenList, build_html, expand_tags, image_to_byte from openlp.core.lib.theme import BackgroundType from openlp.core.ui import HideMode, AlertLocation if is_macosx(): from ctypes import pythonapi, c_void_p, c_char_p, py_object from sip import voidptr from objc import objc_object from AppKit import NSMainMenuWindowLevel, NSWindowCollectionBehaviorManaged log = logging.getLogger(__name__) OPAQUE_STYLESHEET = """ QWidget { border: 0px; margin: 0px; padding: 0px; } QGraphicsView {} """ TRANSPARENT_STYLESHEET = """ QWidget { border: 0px; margin: 0px; padding: 0px; } QGraphicsView { background: transparent; border: 0px; } """ class Display(QtWidgets.QGraphicsView): """ This is a general display screen class. Here the general display settings will done. It will be used as specialized classes by Main Display and Preview display. """ def __init__(self, parent): """ Constructor """ self.is_live = False if hasattr(parent, 'is_live') and parent.is_live: self.is_live = True if self.is_live: self.parent = lambda: parent super(Display, self).__init__() self.controller = parent self.screen = {} def setup(self): """ Set up and build the screen base """ self.setGeometry(self.screen['size']) self.web_view = QtWebKitWidgets.QWebView(self) self.web_view.setGeometry(0, 0, self.screen['size'].width(), self.screen['size'].height()) self.web_view.settings().setAttribute(QtWebKit.QWebSettings.PluginsEnabled, True) palette = self.web_view.palette() palette.setBrush(QtGui.QPalette.Base, QtCore.Qt.transparent) self.web_view.page().setPalette(palette) self.web_view.setAttribute(QtCore.Qt.WA_OpaquePaintEvent, False) self.page = self.web_view.page() self.frame = self.page.mainFrame() if self.is_live and log.getEffectiveLevel() == logging.DEBUG: self.web_view.settings().setAttribute(QtWebKit.QWebSettings.DeveloperExtrasEnabled, True) self.web_view.loadFinished.connect(self.is_web_loaded) self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.frame.setScrollBarPolicy(QtCore.Qt.Vertical, QtCore.Qt.ScrollBarAlwaysOff) self.frame.setScrollBarPolicy(QtCore.Qt.Horizontal, QtCore.Qt.ScrollBarAlwaysOff) def resizeEvent(self, event): """ React to resizing of this display :param event: The event to be handled """ if hasattr(self, 'web_view'): self.web_view.setGeometry(0, 0, self.width(), self.height()) def is_web_loaded(self, field=None): """ Called by webView event to show display is fully loaded """ self.web_loaded = True class MainDisplay(OpenLPMixin, Display, RegistryProperties): """ This is the display screen as a specialized class from the Display class """ def __init__(self, parent): """ Constructor """ super(MainDisplay, self).__init__(parent) self.screens = ScreenList() self.rebuild_css = False self.hide_mode = None self.override = {} self.retranslateUi() self.media_object = None if self.is_live: self.audio_player = AudioPlayer(self) else: self.audio_player = None self.first_time = True self.web_loaded = True self.setStyleSheet(OPAQUE_STYLESHEET) window_flags = QtCore.Qt.FramelessWindowHint | QtCore.Qt.Tool | QtCore.Qt.WindowStaysOnTopHint if Settings().value('advanced/x11 bypass wm'): window_flags |= QtCore.Qt.X11BypassWindowManagerHint # TODO: The following combination of window_flags works correctly # on Mac OS X. For next OpenLP version we should test it on other # platforms. For OpenLP 2.0 keep it only for OS X to not cause any # regressions on other platforms. if is_macosx(): window_flags = QtCore.Qt.FramelessWindowHint | QtCore.Qt.Window self.setWindowFlags(window_flags) self.setAttribute(QtCore.Qt.WA_DeleteOnClose) self.set_transparency(False) if is_macosx(): if self.is_live: # Get a pointer to the underlying NSView try: nsview_pointer = self.winId().ascapsule() except: nsview_pointer = voidptr(self.winId()).ascapsule() # Set PyCapsule name so pyobjc will accept it pythonapi.PyCapsule_SetName.restype = c_void_p pythonapi.PyCapsule_SetName.argtypes = [py_object, c_char_p] pythonapi.PyCapsule_SetName(nsview_pointer, c_char_p(b"objc.__object__")) # Covert the NSView pointer into a pyobjc NSView object self.pyobjc_nsview = objc_object(cobject=nsview_pointer) # Set the window level so that the MainDisplay is above the menu bar and dock self.pyobjc_nsview.window().setLevel_(NSMainMenuWindowLevel + 2) # Set the collection behavior so the window is visible when Mission Control is activated self.pyobjc_nsview.window().setCollectionBehavior_(NSWindowCollectionBehaviorManaged) if self.screens.current['primary']: # Connect focusWindowChanged signal so we can change the window level when the display is not in # focus on the primary screen self.application.focusWindowChanged.connect(self.change_window_level) if self.is_live: Registry().register_function('live_display_hide', self.hide_display) Registry().register_function('live_display_show', self.show_display) Registry().register_function('update_display_css', self.css_changed) self.close_display = False def closeEvent(self, event): """ Catch the close event, and check that the close event is triggered by OpenLP closing the display. On Windows this event can be triggered by pressing ALT+F4, which we want to ignore. :param event: The triggered event """ if self.close_display: super().closeEvent(event) else: event.ignore() def close(self): """ Remove registered function on close. """ if self.is_live: if is_macosx(): # Block signals so signal we are disconnecting can't get called while we disconnect it self.blockSignals(True) if self.screens.current['primary']: self.application.focusWindowChanged.disconnect() self.blockSignals(False) Registry().remove_function('live_display_hide', self.hide_display) Registry().remove_function('live_display_show', self.show_display) Registry().remove_function('update_display_css', self.css_changed) self.close_display = True super().close() def set_transparency(self, enabled): """ Set the transparency of the window :param enabled: Is transparency enabled """ if enabled: self.setAutoFillBackground(False) self.setStyleSheet(TRANSPARENT_STYLESHEET) else: self.setAttribute(QtCore.Qt.WA_NoSystemBackground, False) self.setStyleSheet(OPAQUE_STYLESHEET) self.setAttribute(QtCore.Qt.WA_TranslucentBackground, enabled) self.repaint() def css_changed(self): """ We need to rebuild the CSS on the live display. """ for plugin in self.plugin_manager.plugins: plugin.refresh_css(self.frame) def retranslateUi(self): """ Setup the interface translation strings. """ self.setWindowTitle(translate('OpenLP.MainDisplay', 'OpenLP Display')) def setup(self): """ Set up and build the output screen """ self.log_debug('Start MainDisplay setup (live = %s)' % self.is_live) self.screen = self.screens.current self.setVisible(False) Display.setup(self) if self.is_live: # Build the initial frame. background_color = QtGui.QColor() background_color.setNamedColor(Settings().value('advanced/default color')) if not background_color.isValid(): background_color = QtCore.Qt.white image_file = Settings().value('advanced/default image') splash_image = QtGui.QImage(image_file) self.initial_fame = QtGui.QImage( self.screen['size'].width(), self.screen['size'].height(), QtGui.QImage.Format_ARGB32_Premultiplied) painter_image = QtGui.QPainter() painter_image.begin(self.initial_fame) painter_image.fillRect(self.initial_fame.rect(), background_color) painter_image.drawImage( (self.screen['size'].width() - splash_image.width()) // 2, (self.screen['size'].height() - splash_image.height()) // 2, splash_image) service_item = ServiceItem() service_item.bg_image_bytes = image_to_byte(self.initial_fame) self.web_view.setHtml(build_html(service_item, self.screen, self.is_live, None, plugins=self.plugin_manager.plugins)) self._hide_mouse() def text(self, slide, animate=True): """ Add the slide text from slideController :param slide: The slide text to be displayed :param animate: Perform transitions if applicable when setting the text """ # Wait for the webview to update before displaying text. while not self.web_loaded: self.application.process_events() self.setGeometry(self.screen['size']) if animate: self.frame.evaluateJavaScript('show_text("%s")' % slide.replace('\\', '\\\\').replace('\"', '\\\"')) else: # This exists for https://bugs.launchpad.net/openlp/+bug/1016843 # For unknown reasons if evaluateJavaScript is called # from the themewizard, then it causes a crash on # Windows if there are many items in the service to re-render. # Setting the div elements direct seems to solve the issue self.frame.findFirstElement("#lyricsmain").setInnerXml(slide) def alert(self, text, location): """ Display an alert. :param text: The text to be displayed. :param location: Where on the screen is the text to be displayed """ # First we convert <>& marks to html variants, then apply # formattingtags, finally we double all backslashes for JavaScript. text_prepared = expand_tags(html.escape(text)).replace('\\', '\\\\').replace('\"', '\\\"') if self.height() != self.screen['size'].height() or not self.isVisible(): shrink = True js = 'show_alert("%s", "%s")' % (text_prepared, 'top') else: shrink = False js = 'show_alert("%s", "")' % text_prepared height = self.frame.evaluateJavaScript(js) if shrink: if text: alert_height = int(height) self.resize(self.width(), alert_height) self.setVisible(True) if location == AlertLocation.Middle: self.move(self.screen['size'].left(), (self.screen['size'].height() - alert_height) // 2) elif location == AlertLocation.Bottom: self.move(self.screen['size'].left(), self.screen['size'].height() - alert_height) else: self.setVisible(False) self.setGeometry(self.screen['size']) # Workaround for bug #1531319, should not be needed with PyQt 5.6. if is_win(): self.shake_web_view() def direct_image(self, path, background): """ API for replacement backgrounds so Images are added directly to cache. :param path: Path to Image :param background: The background color """ self.image_manager.add_image(path, ImageSource.ImagePlugin, background) if not hasattr(self, 'service_item'): return False self.override['image'] = path self.override['theme'] = self.service_item.theme_data.background_filename self.image(path) # Update the preview frame. if self.is_live: self.live_controller.update_preview() return True def image(self, path): """ Add an image as the background. The image has already been added to the cache. :param path: The path to the image to be displayed. **Note**, the path is only passed to identify the image. If the image has changed it has to be re-added to the image manager. """ image = self.image_manager.get_image_bytes(path, ImageSource.ImagePlugin) self.controller.media_controller.media_reset(self.controller) self.display_image(image) def display_image(self, image): """ Display an image, as is. :param image: The image to be displayed """ self.setGeometry(self.screen['size']) if image: js = 'show_image("data:image/png;base64,%s");' % image else: js = 'show_image("");' self.frame.evaluateJavaScript(js) def reset_image(self): """ Reset the background image to the service item image. Used after the image plugin has changed the background. """ if hasattr(self, 'service_item'): self.display_image(self.service_item.bg_image_bytes) else: self.display_image(None) # Update the preview frame. if self.is_live: self.live_controller.update_preview() # clear the cache self.override = {} def preview(self): """ Generates a preview of the image displayed. """ was_visible = self.isVisible() self.application.process_events() # We must have a service item to preview. if self.is_live and hasattr(self, 'service_item'): # Wait for the fade to finish before geting the preview. # Important otherwise preview will have incorrect text if at all! if self.service_item.theme_data and self.service_item.theme_data.display_slide_transition: # Workaround for bug #1531319, should not be needed with PyQt 5.6. if is_win(): fade_shake_timer = QtCore.QTimer(self) fade_shake_timer.setInterval(25) fade_shake_timer.timeout.connect(self.shake_web_view) fade_shake_timer.start() while not self.frame.evaluateJavaScript('show_text_completed()'): self.application.process_events() # Workaround for bug #1531319, should not be needed with PyQt 5.6. if is_win(): # Workaround for bug #1531319, should not be needed with PyQt 5.6. fade_shake_timer.stop() elif is_win(): self.shake_web_view() # Wait for the webview to update before getting the preview. # Important otherwise first preview will miss the background ! while not self.web_loaded: self.application.process_events() # if was hidden keep it hidden if self.is_live: if self.hide_mode: self.hide_display(self.hide_mode) # Only continue if the visibility wasn't changed during method call. elif was_visible == self.isVisible(): # Single screen active if self.screens.display_count == 1: # Only make visible if setting enabled. if Settings().value('core/display on monitor'): self.setVisible(True) else: self.setVisible(True) return self.grab() def build_html(self, service_item, image_path=''): """ Store the service_item and build the new HTML from it. Add the HTML to the display :param service_item: The Service item to be used :param image_path: Where the image resides. """ self.web_loaded = False self.initial_fame = None self.service_item = service_item background = None # We have an image override so keep the image till the theme changes. if self.override: # We have an video override so allow it to be stopped. if 'video' in self.override: Registry().execute('video_background_replaced') self.override = {} # We have a different theme. elif self.override['theme'] != service_item.theme_data.background_filename: Registry().execute('live_theme_changed') self.override = {} else: # replace the background background = self.image_manager.get_image_bytes(self.override['image'], ImageSource.ImagePlugin) self.set_transparency(self.service_item.theme_data.background_type == BackgroundType.to_string(BackgroundType.Transparent)) if self.service_item.theme_data.background_filename: self.service_item.bg_image_bytes = self.image_manager.get_image_bytes( self.service_item.theme_data.background_filename, ImageSource.Theme) if image_path: image_bytes = self.image_manager.get_image_bytes(image_path, ImageSource.ImagePlugin) else: image_bytes = None html = build_html(self.service_item, self.screen, self.is_live, background, image_bytes, plugins=self.plugin_manager.plugins) self.web_view.setHtml(html) if service_item.foot_text: self.footer(service_item.foot_text) # if was hidden keep it hidden if self.hide_mode and self.is_live and not service_item.is_media(): if Settings().value('core/auto unblank'): Registry().execute('slidecontroller_live_unblank') else: self.hide_display(self.hide_mode) self._hide_mouse() def footer(self, text): """ Display the Footer :param text: footer text to be displayed """ js = 'show_footer(\'' + text.replace('\\', '\\\\').replace('\'', '\\\'') + '\')' self.frame.evaluateJavaScript(js) def hide_display(self, mode=HideMode.Screen): """ Hide the display by making all layers transparent Store the images so they can be replaced when required :param mode: How the screen is to be hidden """ self.log_debug('hide_display mode = %d' % mode) if self.screens.display_count == 1: # Only make visible if setting enabled. if not Settings().value('core/display on monitor'): return if mode == HideMode.Screen: self.frame.evaluateJavaScript('show_blank("desktop");') self.setVisible(False) elif mode == HideMode.Blank or self.initial_fame: self.frame.evaluateJavaScript('show_blank("black");') else: self.frame.evaluateJavaScript('show_blank("theme");') if mode != HideMode.Screen: if self.isHidden(): self.setVisible(True) self.web_view.setVisible(True) # Workaround for bug #1531319, should not be needed with PyQt 5.6. if is_win(): self.shake_web_view() self.hide_mode = mode def show_display(self): """ Show the stored layers so the screen reappears as it was originally. Make the stored images None to release memory. """ if self.screens.display_count == 1: # Only make visible if setting enabled. if not Settings().value('core/display on monitor'): return self.frame.evaluateJavaScript('show_blank("show");') if self.isHidden(): self.setVisible(True) self.hide_mode = None # Trigger actions when display is active again. if self.is_live: Registry().execute('live_display_active') # Workaround for bug #1531319, should not be needed with PyQt 5.6. if is_win(): self.shake_web_view() def _hide_mouse(self): """ Hide mouse cursor when moved over display. """ if Settings().value('advanced/hide mouse'): self.setCursor(QtCore.Qt.BlankCursor) self.frame.evaluateJavaScript('document.body.style.cursor = "none"') else: self.setCursor(QtCore.Qt.ArrowCursor) self.frame.evaluateJavaScript('document.body.style.cursor = "auto"') def change_window_level(self, window): """ Changes the display window level on Mac OS X so that the main window can be brought into focus but still allow the main display to be above the menu bar and dock when it in focus. :param window: Window from our application that focus changed to or None if outside our application """ if is_macosx(): if window: # Get different window ids' as int's try: window_id = window.winId().__int__() main_window_id = self.main_window.winId().__int__() self_id = self.winId().__int__() except: return # If the passed window has the same id as our window make sure the display has the proper level and # collection behavior. if window_id == self_id: self.pyobjc_nsview.window().setLevel_(NSMainMenuWindowLevel + 2) self.pyobjc_nsview.window().setCollectionBehavior_(NSWindowCollectionBehaviorManaged) # Else set the displays window level back to normal since we are trying to focus a window other than # the display. else: self.pyobjc_nsview.window().setLevel_(0) self.pyobjc_nsview.window().setCollectionBehavior_(NSWindowCollectionBehaviorManaged) # If we are trying to focus the main window raise it now to complete the focus change. if window_id == main_window_id: self.main_window.raise_() def shake_web_view(self): """ Resizes the web_view a bit to force an update. Workaround for bug #1531319, should not be needed with PyQt 5.6. """ self.web_view.setGeometry(0, 0, self.width(), self.height() - 1) self.web_view.setGeometry(0, 0, self.width(), self.height()) class AudioPlayer(OpenLPMixin, QtCore.QObject): """ This Class will play audio only allowing components to work with a soundtrack independent of the user interface. """ position_changed = QtCore.pyqtSignal(int) def __init__(self, parent): """ The constructor for the display form. :param parent: The parent widget. """ super(AudioPlayer, self).__init__(parent) self.player = QtMultimedia.QMediaPlayer() self.playlist = QtMultimedia.QMediaPlaylist(self.player) self.volume_slider = None self.player.setPlaylist(self.playlist) self.player.positionChanged.connect(self._on_position_changed) def __del__(self): """ Shutting down so clean up connections """ self.stop() def _on_position_changed(self, position): """ Emit a signal when the position of the media player updates """ self.position_changed.emit(position) def set_volume_slider(self, slider): """ Connect the volume slider to the media player :param slider: """ self.volume_slider = slider self.volume_slider.setMinimum(0) self.volume_slider.setMaximum(100) self.volume_slider.setValue(self.player.volume()) self.volume_slider.valueChanged.connect(self.set_volume) def set_volume(self, volume): """ Set the volume of the media player :param volume: """ self.player.setVolume(volume) def reset(self): """ Reset the audio player, clearing the playlist and the queue. """ self.stop() self.playlist.clear() def play(self): """ We want to play the file so start it """ self.player.play() def pause(self): """ Pause the Audio """ self.player.pause() def stop(self): """ Stop the Audio and clean up """ self.player.stop() def add_to_playlist(self, file_names): """ Add another file to the playlist. :param file_names: A list with files to be added to the playlist. """ if not isinstance(file_names, list): file_names = [file_names] for file_name in file_names: self.playlist.addMedia(QtMultimedia.QMediaContent(QtCore.QUrl.fromLocalFile(file_name))) def next(self): """ Skip forward to the next track in the list """ self.player.next() def go_to(self, index): """ Go to a particular track in the list :param index: The track to go to """ self.playlist.setCurrentIndex(index) if self.player.state() == QtMultimedia.QMediaPlayer.PlayingState: self.player.play() OpenLP-2.4/openlp/core/ui/thememanager.py0000644000175000017500000011147112657640340017427 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The Theme Manager manages adding, deleteing and modifying of themes. """ import os import zipfile import shutil from xml.etree.ElementTree import ElementTree, XML from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, AppLocation, Settings, OpenLPMixin, RegistryMixin, \ check_directory_exists, UiStrings, translate, is_win from openlp.core.lib import FileDialog, ImageSource, OpenLPToolbar, ValidationError, get_text_file_string, build_icon, \ check_item_selected, create_thumb, validate_thumb from openlp.core.lib.theme import ThemeXML, BackgroundType from openlp.core.lib.ui import critical_error_message_box, create_widget_action from openlp.core.ui import FileRenameForm, ThemeForm from openlp.core.utils import delete_file, get_locale_key, get_filesystem_encoding class Ui_ThemeManager(object): """ UI part of the Theme Manager """ def setup_ui(self, widget): """ Define the UI :param widget: The screen object the the dialog is to be attached to. """ # start with the layout self.layout = QtWidgets.QVBoxLayout(widget) self.layout.setSpacing(0) self.layout.setContentsMargins(0, 0, 0, 0) self.layout.setObjectName('layout') self.toolbar = OpenLPToolbar(widget) self.toolbar.setObjectName('toolbar') self.toolbar.add_toolbar_action('newTheme', text=UiStrings().NewTheme, icon=':/themes/theme_new.png', tooltip=translate('OpenLP.ThemeManager', 'Create a new theme.'), triggers=self.on_add_theme) self.toolbar.add_toolbar_action('editTheme', text=translate('OpenLP.ThemeManager', 'Edit Theme'), icon=':/themes/theme_edit.png', tooltip=translate('OpenLP.ThemeManager', 'Edit a theme.'), triggers=self.on_edit_theme) self.delete_toolbar_action = self.toolbar.add_toolbar_action('delete_theme', text=translate('OpenLP.ThemeManager', 'Delete Theme'), icon=':/general/general_delete.png', tooltip=translate('OpenLP.ThemeManager', 'Delete a theme.'), triggers=self.on_delete_theme) self.toolbar.addSeparator() self.toolbar.add_toolbar_action('importTheme', text=translate('OpenLP.ThemeManager', 'Import Theme'), icon=':/general/general_import.png', tooltip=translate('OpenLP.ThemeManager', 'Import a theme.'), triggers=self.on_import_theme) self.toolbar.add_toolbar_action('exportTheme', text=translate('OpenLP.ThemeManager', 'Export Theme'), icon=':/general/general_export.png', tooltip=translate('OpenLP.ThemeManager', 'Export a theme.'), triggers=self.on_export_theme) self.layout.addWidget(self.toolbar) self.theme_widget = QtWidgets.QWidgetAction(self.toolbar) self.theme_widget.setObjectName('theme_widget') # create theme manager list self.theme_list_widget = QtWidgets.QListWidget(widget) self.theme_list_widget.setAlternatingRowColors(True) self.theme_list_widget.setIconSize(QtCore.QSize(88, 50)) self.theme_list_widget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu) self.theme_list_widget.setObjectName('theme_list_widget') self.layout.addWidget(self.theme_list_widget) self.theme_list_widget.customContextMenuRequested.connect(self.context_menu) # build the context menu self.menu = QtWidgets.QMenu() self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Edit Theme'), icon=':/themes/theme_edit.png', triggers=self.on_edit_theme) self.copy_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Copy Theme'), icon=':/themes/theme_edit.png', triggers=self.on_copy_theme) self.rename_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Rename Theme'), icon=':/themes/theme_edit.png', triggers=self.on_rename_theme) self.delete_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Delete Theme'), icon=':/general/general_delete.png', triggers=self.on_delete_theme) self.menu.addSeparator() self.global_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', 'Set As &Global Default'), icon=':/general/general_export.png', triggers=self.change_global_from_screen) self.export_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Export Theme'), icon=':/general/general_export.png', triggers=self.on_export_theme) # Signals self.theme_list_widget.doubleClicked.connect(self.change_global_from_screen) self.theme_list_widget.currentItemChanged.connect(self.check_list_state) class ThemeManager(OpenLPMixin, RegistryMixin, QtWidgets.QWidget, Ui_ThemeManager, RegistryProperties): """ Manages the orders of Theme. """ def __init__(self, parent=None): """ Constructor """ super(ThemeManager, self).__init__(parent) self.settings_section = 'themes' # Variables self.theme_list = [] self.old_background_image = None def bootstrap_initialise(self): """ process the bootstrap initialise setup request """ self.setup_ui(self) self.global_theme = Settings().value(self.settings_section + '/global theme') self.build_theme_path() self.load_first_time_themes() def bootstrap_post_set_up(self): """ process the bootstrap post setup request """ self.theme_form = ThemeForm(self) self.theme_form.path = self.path self.file_rename_form = FileRenameForm() Registry().register_function('theme_update_global', self.change_global_from_tab) self.load_themes() def build_theme_path(self): """ Set up the theme path variables """ self.path = AppLocation.get_section_data_path(self.settings_section) check_directory_exists(self.path) self.thumb_path = os.path.join(self.path, 'thumbnails') check_directory_exists(self.thumb_path) def check_list_state(self, item, field=None): """ If Default theme selected remove delete button. Note for some reason a dummy field is required. Nothing is passed! :param field: :param item: Service Item to process """ if item is None: return real_theme_name = item.data(QtCore.Qt.UserRole) theme_name = item.text() # If default theme restrict actions if real_theme_name == theme_name: self.delete_toolbar_action.setVisible(True) else: self.delete_toolbar_action.setVisible(False) def context_menu(self, point): """ Build the Right Click Context menu and set state depending on the type of theme. :param point: The position of the mouse so the correct item can be found. """ item = self.theme_list_widget.itemAt(point) if item is None: return real_theme_name = item.data(QtCore.Qt.UserRole) theme_name = str(item.text()) visible = real_theme_name == theme_name self.delete_action.setVisible(visible) self.rename_action.setVisible(visible) self.global_action.setVisible(visible) self.menu.exec(self.theme_list_widget.mapToGlobal(point)) def change_global_from_tab(self): """ Change the global theme when it is changed through the Themes settings tab """ self.global_theme = Settings().value(self.settings_section + '/global theme') self.log_debug('change_global_from_tab %s' % self.global_theme) for count in range(0, self.theme_list_widget.count()): # reset the old name item = self.theme_list_widget.item(count) old_name = item.text() new_name = item.data(QtCore.Qt.UserRole) if old_name != new_name: self.theme_list_widget.item(count).setText(new_name) # Set the new name if self.global_theme == new_name: name = translate('OpenLP.ThemeManager', '%s (default)') % new_name self.theme_list_widget.item(count).setText(name) self.delete_toolbar_action.setVisible(item not in self.theme_list_widget.selectedItems()) def change_global_from_screen(self, index=-1): """ Change the global theme when a theme is double clicked upon in the Theme Manager list. :param index: """ selected_row = self.theme_list_widget.currentRow() for count in range(0, self.theme_list_widget.count()): item = self.theme_list_widget.item(count) old_name = item.text() # reset the old name if old_name != item.data(QtCore.Qt.UserRole): self.theme_list_widget.item(count).setText(item.data(QtCore.Qt.UserRole)) # Set the new name if count == selected_row: self.global_theme = self.theme_list_widget.item(count).text() name = translate('OpenLP.ThemeManager', '%s (default)') % self.global_theme self.theme_list_widget.item(count).setText(name) Settings().setValue(self.settings_section + '/global theme', self.global_theme) Registry().execute('theme_update_global') self._push_themes() def on_add_theme(self, field=None): """ Loads a new theme with the default settings and then launches the theme editing form for the user to make their customisations. :param field: """ theme = ThemeXML() theme.set_default_header_footer() self.theme_form.theme = theme self.theme_form.exec() self.load_themes() def on_rename_theme(self, field=None): """ Renames an existing theme to a new name :param field: """ if self._validate_theme_action(translate('OpenLP.ThemeManager', 'You must select a theme to rename.'), translate('OpenLP.ThemeManager', 'Rename Confirmation'), translate('OpenLP.ThemeManager', 'Rename %s theme?'), False, False): item = self.theme_list_widget.currentItem() old_theme_name = item.data(QtCore.Qt.UserRole) self.file_rename_form.file_name_edit.setText(old_theme_name) if self.file_rename_form.exec(): new_theme_name = self.file_rename_form.file_name_edit.text() if old_theme_name == new_theme_name: return if self.check_if_theme_exists(new_theme_name): old_theme_data = self.get_theme_data(old_theme_name) self.clone_theme_data(old_theme_data, new_theme_name) self.delete_theme(old_theme_name) for plugin in self.plugin_manager.plugins: if plugin.uses_theme(old_theme_name): plugin.rename_theme(old_theme_name, new_theme_name) self.renderer.update_theme(new_theme_name, old_theme_name) self.load_themes() def on_copy_theme(self, field=None): """ Copies an existing theme to a new name :param field: """ item = self.theme_list_widget.currentItem() old_theme_name = item.data(QtCore.Qt.UserRole) self.file_rename_form.file_name_edit.setText(translate('OpenLP.ThemeManager', 'Copy of %s', 'Copy of ') % old_theme_name) if self.file_rename_form.exec(True): new_theme_name = self.file_rename_form.file_name_edit.text() if self.check_if_theme_exists(new_theme_name): theme_data = self.get_theme_data(old_theme_name) self.clone_theme_data(theme_data, new_theme_name) def clone_theme_data(self, theme_data, new_theme_name): """ Takes a theme and makes a new copy of it as well as saving it. :param theme_data: The theme to be used :param new_theme_name: The new theme name to save the data to """ save_to = None save_from = None if theme_data.background_type == 'image': save_to = os.path.join(self.path, new_theme_name, os.path.split(str(theme_data.background_filename))[1]) save_from = theme_data.background_filename theme_data.theme_name = new_theme_name theme_data.extend_image_filename(self.path) self.save_theme(theme_data, save_from, save_to) self.load_themes() def on_edit_theme(self, field=None): """ Loads the settings for the theme that is to be edited and launches the theme editing form so the user can make their changes. :param field: """ if check_item_selected(self.theme_list_widget, translate('OpenLP.ThemeManager', 'You must select a theme to edit.')): item = self.theme_list_widget.currentItem() theme = self.get_theme_data(item.data(QtCore.Qt.UserRole)) if theme.background_type == 'image': self.old_background_image = theme.background_filename self.theme_form.theme = theme self.theme_form.exec(True) self.old_background_image = None self.renderer.update_theme(theme.theme_name) self.load_themes() def on_delete_theme(self, field=None): """ Delete a theme triggered by the UI. :param field: """ if self._validate_theme_action(translate('OpenLP.ThemeManager', 'You must select a theme to delete.'), translate('OpenLP.ThemeManager', 'Delete Confirmation'), translate('OpenLP.ThemeManager', 'Delete %s theme?')): item = self.theme_list_widget.currentItem() theme = item.text() row = self.theme_list_widget.row(item) self.theme_list_widget.takeItem(row) self.delete_theme(theme) self.renderer.update_theme(theme, only_delete=True) # As we do not reload the themes, push out the change. Reload the # list as the internal lists and events need to be triggered. self._push_themes() def delete_theme(self, theme): """ Delete a theme. :param theme: The theme to delete. """ self.theme_list.remove(theme) thumb = '%s.png' % theme delete_file(os.path.join(self.path, thumb)) delete_file(os.path.join(self.thumb_path, thumb)) try: # Windows is always unicode, so no need to encode filenames if is_win(): shutil.rmtree(os.path.join(self.path, theme)) else: encoding = get_filesystem_encoding() shutil.rmtree(os.path.join(self.path, theme).encode(encoding)) except OSError as os_error: shutil.Error = os_error self.log_exception('Error deleting theme %s' % theme) def on_export_theme(self, field=None): """ Export the theme in a zip file :param field: """ item = self.theme_list_widget.currentItem() if item is None: critical_error_message_box(message=translate('OpenLP.ThemeManager', 'You have not selected a theme.')) return theme = item.data(QtCore.Qt.UserRole) path = QtWidgets.QFileDialog.getExistingDirectory(self, translate('OpenLP.ThemeManager', 'Save Theme - (%s)') % theme, Settings().value(self.settings_section + '/last directory export')) self.application.set_busy_cursor() if path: Settings().setValue(self.settings_section + '/last directory export', path) if self._export_theme(path, theme): QtWidgets.QMessageBox.information(self, translate('OpenLP.ThemeManager', 'Theme Exported'), translate('OpenLP.ThemeManager', 'Your theme has been successfully exported.')) self.application.set_normal_cursor() def _export_theme(self, path, theme): """ Create the zipfile with the theme contents. :param path: Location where the zip file will be placed :param theme: The name of the theme to be exported """ theme_path = os.path.join(path, theme + '.otz') theme_zip = None try: theme_zip = zipfile.ZipFile(theme_path, 'w') source = os.path.join(self.path, theme) for files in os.walk(source): for name in files[2]: theme_zip.write(os.path.join(source, name), os.path.join(theme, name)) theme_zip.close() return True except OSError as ose: self.log_exception('Export Theme Failed') critical_error_message_box(translate('OpenLP.ThemeManager', 'Theme Export Failed'), translate('OpenLP.ThemeManager', 'The theme export failed because this error ' 'occurred: %s') % ose.strerror) if theme_zip: theme_zip.close() shutil.rmtree(theme_path, True) return False def on_import_theme(self, field=None): """ Opens a file dialog to select the theme file(s) to import before attempting to extract OpenLP themes from those files. This process will only load version 2 themes. :param field: """ files = FileDialog.getOpenFileNames(self, translate('OpenLP.ThemeManager', 'Select Theme Import File'), Settings().value(self.settings_section + '/last directory import'), translate('OpenLP.ThemeManager', 'OpenLP Themes (*.otz)')) self.log_info('New Themes %s' % str(files)) if not files: return self.application.set_busy_cursor() for file_name in files: Settings().setValue(self.settings_section + '/last directory import', str(file_name)) self.unzip_theme(file_name, self.path) self.load_themes() self.application.set_normal_cursor() def load_first_time_themes(self): """ Imports any themes on start up and makes sure there is at least one theme """ self.application.set_busy_cursor() files = AppLocation.get_files(self.settings_section, '.otz') for theme_file in files: theme_file = os.path.join(self.path, theme_file) self.unzip_theme(theme_file, self.path) delete_file(theme_file) files = AppLocation.get_files(self.settings_section, '.png') # No themes have been found so create one if not files: theme = ThemeXML() theme.theme_name = UiStrings().Default self._write_theme(theme, None, None) Settings().setValue(self.settings_section + '/global theme', theme.theme_name) self.application.set_normal_cursor() def load_themes(self): """ Loads the theme lists and triggers updates across the whole system using direct calls or core functions and events for the plugins. The plugins will call back in to get the real list if they want it. """ self.theme_list = [] self.theme_list_widget.clear() files = AppLocation.get_files(self.settings_section, '.png') # Sort the themes by its name considering language specific files.sort(key=lambda file_name: get_locale_key(str(file_name))) # now process the file list of png files for name in files: # check to see file is in theme root directory theme = os.path.join(self.path, name) if os.path.exists(theme): text_name = os.path.splitext(name)[0] if text_name == self.global_theme: name = translate('OpenLP.ThemeManager', '%s (default)') % text_name else: name = text_name thumb = os.path.join(self.thumb_path, '%s.png' % text_name) item_name = QtWidgets.QListWidgetItem(name) if validate_thumb(theme, thumb): icon = build_icon(thumb) else: icon = create_thumb(theme, thumb) item_name.setIcon(icon) item_name.setData(QtCore.Qt.UserRole, text_name) self.theme_list_widget.addItem(item_name) self.theme_list.append(text_name) self._push_themes() def _push_themes(self): """ Notify listeners that the theme list has been updated """ Registry().execute('theme_update_list', self.get_themes()) def get_themes(self): """ Return the list of loaded themes """ return self.theme_list def get_theme_data(self, theme_name): """ Returns a theme object from an XML file :param theme_name: Name of the theme to load from file :return: The theme object. """ self.log_debug('get theme data for theme %s' % theme_name) xml_file = os.path.join(self.path, str(theme_name), str(theme_name) + '.xml') xml = get_text_file_string(xml_file) if not xml: self.log_debug('No theme data - using default theme') return ThemeXML() else: return self._create_theme_from_xml(xml, self.path) def over_write_message_box(self, theme_name): """ Display a warning box to the user that a theme already exists :param theme_name: Name of the theme. :return: Confirm if the theme is to be overwritten. """ ret = QtWidgets.QMessageBox.question(self, translate('OpenLP.ThemeManager', 'Theme Already Exists'), translate('OpenLP.ThemeManager', 'Theme %s already exists. Do you want to replace it?') .replace('%s', theme_name), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) return ret == QtWidgets.QMessageBox.Yes def unzip_theme(self, file_name, directory): """ Unzip the theme, remove the preview file if stored. Generate a new preview file. Check the XML theme version and upgrade if necessary. :param file_name: :param directory: """ self.log_debug('Unzipping theme %s' % file_name) theme_zip = None out_file = None file_xml = None abort_import = True try: theme_zip = zipfile.ZipFile(file_name) xml_file = [name for name in theme_zip.namelist() if os.path.splitext(name)[1].lower() == '.xml'] if len(xml_file) != 1: self.log_error('Theme contains "%s" XML files' % len(xml_file)) raise ValidationError xml_tree = ElementTree(element=XML(theme_zip.read(xml_file[0]))).getroot() theme_version = xml_tree.get('version', default=None) if not theme_version or float(theme_version) < 2.0: self.log_error('Theme version is less than 2.0') raise ValidationError theme_name = xml_tree.find('name').text.strip() theme_folder = os.path.join(directory, theme_name) theme_exists = os.path.exists(theme_folder) if theme_exists and not self.over_write_message_box(theme_name): abort_import = True return else: abort_import = False for name in theme_zip.namelist(): out_name = name.replace('/', os.path.sep) split_name = out_name.split(os.path.sep) if split_name[-1] == '' or len(split_name) == 1: # is directory or preview file continue full_name = os.path.join(directory, out_name) check_directory_exists(os.path.dirname(full_name)) if os.path.splitext(name)[1].lower() == '.xml': file_xml = str(theme_zip.read(name), 'utf-8') out_file = open(full_name, 'w', encoding='utf-8') out_file.write(file_xml) else: out_file = open(full_name, 'wb') out_file.write(theme_zip.read(name)) out_file.close() except (IOError, zipfile.BadZipfile): self.log_exception('Importing theme from zip failed %s' % file_name) raise ValidationError except ValidationError: critical_error_message_box(translate('OpenLP.ThemeManager', 'Validation Error'), translate('OpenLP.ThemeManager', 'File is not a valid theme.')) finally: # Close the files, to be able to continue creating the theme. if theme_zip: theme_zip.close() if out_file: out_file.close() if not abort_import: # As all files are closed, we can create the Theme. if file_xml: theme = self._create_theme_from_xml(file_xml, self.path) self.generate_and_save_image(theme_name, theme) # Only show the error message, when IOError was not raised (in # this case the error message has already been shown). elif theme_zip is not None: critical_error_message_box( translate('OpenLP.ThemeManager', 'Validation Error'), translate('OpenLP.ThemeManager', 'File is not a valid theme.')) self.log_error('Theme file does not contain XML data %s' % file_name) def check_if_theme_exists(self, theme_name): """ Check if theme already exists and displays error message :param theme_name: Name of the Theme to test :return: True or False if theme exists """ theme_dir = os.path.join(self.path, theme_name) if os.path.exists(theme_dir): critical_error_message_box( translate('OpenLP.ThemeManager', 'Validation Error'), translate('OpenLP.ThemeManager', 'A theme with this name already exists.')) return False return True def save_theme(self, theme, image_from, image_to): """ Called by theme maintenance Dialog to save the theme and to trigger the reload of the theme list :param theme: The theme data object. :param image_from: Where the theme image is currently located. :param image_to: Where the Theme Image is to be saved to """ self._write_theme(theme, image_from, image_to) if theme.background_type == BackgroundType.to_string(BackgroundType.Image): self.image_manager.update_image_border(theme.background_filename, ImageSource.Theme, QtGui.QColor(theme.background_border_color)) self.image_manager.process_updates() def _write_theme(self, theme, image_from, image_to): """ Writes the theme to the disk and handles the background image if necessary :param theme: The theme data object. :param image_from: Where the theme image is currently located. :param image_to: Where the Theme Image is to be saved to """ name = theme.theme_name theme_pretty_xml = theme.extract_formatted_xml() theme_dir = os.path.join(self.path, name) check_directory_exists(theme_dir) theme_file = os.path.join(theme_dir, name + '.xml') if self.old_background_image and image_to != self.old_background_image: delete_file(self.old_background_image) out_file = None try: out_file = open(theme_file, 'w', encoding='utf-8') out_file.write(theme_pretty_xml.decode('utf-8')) except IOError: self.log_exception('Saving theme to file failed') finally: if out_file: out_file.close() if image_from and os.path.abspath(image_from) != os.path.abspath(image_to): try: # Windows is always unicode, so no need to encode filenames if is_win(): shutil.copyfile(image_from, image_to) else: encoding = get_filesystem_encoding() shutil.copyfile(image_from.encode(encoding), image_to.encode(encoding)) except IOError as xxx_todo_changeme: shutil.Error = xxx_todo_changeme self.log_exception('Failed to save theme image') self.generate_and_save_image(name, theme) def generate_and_save_image(self, name, theme): """ Generate and save a preview image :param name: The name of the theme. :param theme: The theme data object. """ frame = self.generate_image(theme) sample_path_name = os.path.join(self.path, name + '.png') if os.path.exists(sample_path_name): os.unlink(sample_path_name) frame.save(sample_path_name, 'png') thumb = os.path.join(self.thumb_path, '%s.png' % name) create_thumb(sample_path_name, thumb, False) def update_preview_images(self): """ Called to update the themes' preview images. """ self.main_window.display_progress_bar(len(self.theme_list)) for theme in self.theme_list: self.main_window.increment_progress_bar() self.generate_and_save_image(theme, self.get_theme_data(theme)) self.main_window.finished_progress_bar() self.load_themes() def generate_image(self, theme_data, force_page=False): """ Call the renderer to build a Sample Image :param theme_data: The theme to generated a preview for. :param force_page: Flag to tell message lines per page need to be generated. """ return self.renderer.generate_preview(theme_data, force_page) def get_preview_image(self, theme): """ Return an image representing the look of the theme :param theme: The theme to return the image for. """ return os.path.join(self.path, theme + '.png') def _create_theme_from_xml(self, theme_xml, image_path): """ Return a theme object using information parsed from XML :param theme_xml: The Theme data object. :param image_path: Where the theme image is stored :return: Theme data. """ theme = ThemeXML() theme.parse(theme_xml) theme.extend_image_filename(image_path) return theme def _validate_theme_action(self, select_text, confirm_title, confirm_text, test_plugin=True, confirm=True): """ Check to see if theme has been selected and the destructive action is allowed. :param select_text: Text for message box if no item selected. :param confirm_title: Confirm message title to be displayed. :param confirm_text: Confirm message text to be displayed. :param test_plugin: Do we check the plugins for theme usage. :param confirm: Do we display a confirm box before run checks. :return: True or False depending on the validity. """ self.global_theme = Settings().value(self.settings_section + '/global theme') if check_item_selected(self.theme_list_widget, select_text): item = self.theme_list_widget.currentItem() theme = item.text() # confirm deletion if confirm: answer = QtWidgets.QMessageBox.question( self, confirm_title, confirm_text % theme, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer == QtWidgets.QMessageBox.No: return False # should be the same unless default if theme != item.data(QtCore.Qt.UserRole): critical_error_message_box( message=translate('OpenLP.ThemeManager', 'You are unable to delete the default theme.')) return False # check for use in the system else where. if test_plugin: plugin_usage = "" for plugin in self.plugin_manager.plugins: used_count = plugin.uses_theme(theme) if used_count: plugin_usage = "%s%s" % (plugin_usage, (translate('OpenLP.ThemeManager', '%s time(s) by %s') % (used_count, plugin.name))) plugin_usage = "%s\n" % plugin_usage if plugin_usage: critical_error_message_box(translate('OpenLP.ThemeManager', 'Unable to delete theme'), translate('OpenLP.ThemeManager', 'Theme is currently used \n\n%s') % plugin_usage) return False return True return False OpenLP-2.4/openlp/core/ui/splashscreen.py0000644000175000017500000000422512657640340017462 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The splash screen """ from PyQt5 import QtCore, QtGui, QtWidgets class SplashScreen(QtWidgets.QSplashScreen): """ The splash screen """ def __init__(self): """ Constructor """ super(SplashScreen, self).__init__() self.setupUi() def setupUi(self): """ Set up the UI """ self.setObjectName('splashScreen') self.setContextMenuPolicy(QtCore.Qt.PreventContextMenu) splash_image = QtGui.QPixmap(':/graphics/openlp-splash-screen.png') self.setPixmap(splash_image) self.setMask(splash_image.mask()) self.resize(370, 370) OpenLP-2.4/openlp/core/ui/filerenamedialog.py0000644000175000017500000000617612657640340020266 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets for the rename dialog """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.lib import translate, build_icon from openlp.core.lib.ui import create_button_box class Ui_FileRenameDialog(object): """ The UI widgets for the rename dialog """ def setupUi(self, file_rename_dialog): """ Set up the UI """ file_rename_dialog.setObjectName('file_rename_dialog') file_rename_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) file_rename_dialog.resize(300, 10) self.dialog_layout = QtWidgets.QGridLayout(file_rename_dialog) self.dialog_layout.setObjectName('dialog_layout') self.file_name_label = QtWidgets.QLabel(file_rename_dialog) self.file_name_label.setObjectName('file_name_label') self.dialog_layout.addWidget(self.file_name_label, 0, 0) self.file_name_edit = QtWidgets.QLineEdit(file_rename_dialog) self.file_name_edit.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(r'[^/\\?*|<>\[\]":+%]+'), self)) self.file_name_edit.setObjectName('file_name_edit') self.dialog_layout.addWidget(self.file_name_edit, 0, 1) self.button_box = create_button_box(file_rename_dialog, 'button_box', ['cancel', 'ok']) self.dialog_layout.addWidget(self.button_box, 1, 0, 1, 2) self.retranslateUi(file_rename_dialog) self.setMaximumHeight(self.sizeHint().height()) def retranslateUi(self, file_rename_dialog): """ Translate the UI on the fly. """ self.file_name_label.setText(translate('OpenLP.FileRenameForm', 'New File Name:')) OpenLP-2.4/openlp/core/ui/themeform.py0000644000175000017500000006236512657640340016767 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The Theme wizard """ import logging import os from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, UiStrings, translate from openlp.core.lib.theme import BackgroundType, BackgroundGradientType from openlp.core.lib.ui import critical_error_message_box from openlp.core.ui import ThemeLayoutForm from openlp.core.utils import get_images_filter, is_not_image_file from .themewizard import Ui_ThemeWizard log = logging.getLogger(__name__) class ThemeForm(QtWidgets.QWizard, Ui_ThemeWizard, RegistryProperties): """ This is the Theme Import Wizard, which allows easy creation and editing of OpenLP themes. """ log.info('ThemeWizardForm loaded') def __init__(self, parent): """ Instantiate the wizard, and run any extra setup we need to. :param parent: The QWidget-derived parent of the wizard. """ super(ThemeForm, self).__init__(parent) self._setup() def _setup(self): """ Set up the class. This method is mocked out by the tests. """ self.setupUi(self) self.registerFields() self.update_theme_allowed = True self.temp_background_filename = '' self.theme_layout_form = ThemeLayoutForm(self) self.background_combo_box.currentIndexChanged.connect(self.on_background_combo_box_current_index_changed) self.gradient_combo_box.currentIndexChanged.connect(self.on_gradient_combo_box_current_index_changed) self.color_button.colorChanged.connect(self.on_color_changed) self.image_color_button.colorChanged.connect(self.on_image_color_changed) self.gradient_start_button.colorChanged.connect(self.on_gradient_start_color_changed) self.gradient_end_button.colorChanged.connect(self.on_gradient_end_color_changed) self.image_browse_button.clicked.connect(self.on_image_browse_button_clicked) self.image_file_edit.editingFinished.connect(self.on_image_file_edit_editing_finished) self.main_color_button.colorChanged.connect(self.on_main_color_changed) self.outline_color_button.colorChanged.connect(self.on_outline_color_changed) self.shadow_color_button.colorChanged.connect(self.on_shadow_color_changed) self.outline_check_box.stateChanged.connect(self.on_outline_check_check_box_state_changed) self.shadow_check_box.stateChanged.connect(self.on_shadow_check_check_box_state_changed) self.footer_color_button.colorChanged.connect(self.on_footer_color_changed) self.customButtonClicked.connect(self.on_custom_1_button_clicked) self.main_position_check_box.stateChanged.connect(self.on_main_position_check_box_state_changed) self.footer_position_check_box.stateChanged.connect(self.on_footer_position_check_box_state_changed) self.currentIdChanged.connect(self.on_current_id_changed) Registry().register_function('theme_line_count', self.update_lines_text) self.main_size_spin_box.valueChanged.connect(self.calculate_lines) self.line_spacing_spin_box.valueChanged.connect(self.calculate_lines) self.outline_size_spin_box.valueChanged.connect(self.calculate_lines) self.shadow_size_spin_box.valueChanged.connect(self.calculate_lines) self.main_font_combo_box.activated.connect(self.calculate_lines) self.footer_font_combo_box.activated.connect(self.update_theme) self.footer_size_spin_box.valueChanged.connect(self.update_theme) def set_defaults(self): """ Set up display at start of theme edit. """ self.restart() self.set_background_page_values() self.set_main_area_page_values() self.set_footer_area_page_values() self.set_alignment_page_values() self.set_position_page_values() self.set_preview_page_values() def registerFields(self): """ Map field names to screen names, """ self.background_page.registerField('background_type', self.background_combo_box) self.background_page.registerField('color', self.color_button) self.background_page.registerField('gradient_start', self.gradient_start_button) self.background_page.registerField('gradient_end', self.gradient_end_button) self.background_page.registerField('background_image', self.image_file_edit) self.background_page.registerField('gradient', self.gradient_combo_box) self.main_area_page.registerField('main_color_button', self.main_color_button) self.main_area_page.registerField('main_size_spin_box', self.main_size_spin_box) self.main_area_page.registerField('line_spacing_spin_box', self.line_spacing_spin_box) self.main_area_page.registerField('outline_check_box', self.outline_check_box) self.main_area_page.registerField('outline_color_button', self.outline_color_button) self.main_area_page.registerField('outline_size_spin_box', self.outline_size_spin_box) self.main_area_page.registerField('shadow_check_box', self.shadow_check_box) self.main_area_page.registerField('main_bold_check_box', self.main_bold_check_box) self.main_area_page.registerField('main_italics_check_box', self.main_italics_check_box) self.main_area_page.registerField('shadow_color_button', self.shadow_color_button) self.main_area_page.registerField('shadow_size_spin_box', self.shadow_size_spin_box) self.main_area_page.registerField('footer_size_spin_box', self.footer_size_spin_box) self.area_position_page.registerField('main_position_x', self.main_x_spin_box) self.area_position_page.registerField('main_position_y', self.main_y_spin_box) self.area_position_page.registerField('main_position_width', self.main_width_spin_box) self.area_position_page.registerField('main_position_height', self.main_height_spin_box) self.area_position_page.registerField('footer_position_x', self.footer_x_spin_box) self.area_position_page.registerField('footer_position_y', self.footer_y_spin_box) self.area_position_page.registerField('footer_position_width', self.footer_width_spin_box) self.area_position_page.registerField('footer_position_height', self.footer_height_spin_box) self.background_page.registerField('horizontal', self.horizontal_combo_box) self.background_page.registerField('vertical', self.vertical_combo_box) self.background_page.registerField('slide_transition', self.transitions_check_box) self.background_page.registerField('name', self.theme_name_edit) def calculate_lines(self): """ Calculate the number of lines on a page by rendering text """ # Do not trigger on start up if self.currentPage != self.welcome_page: self.update_theme() self.theme_manager.generate_image(self.theme, True) def update_lines_text(self, lines): """ Updates the lines on a page on the wizard """ self.main_line_count_label.setText( translate('OpenLP.ThemeForm', '(approximately %d lines per slide)') % int(lines)) def resizeEvent(self, event=None): """ Rescale the theme preview thumbnail on resize events. """ if not event: event = QtGui.QResizeEvent(self.size(), self.size()) QtWidgets.QWizard.resizeEvent(self, event) if hasattr(self, 'preview_page') and self.currentPage() == self.preview_page: frame_width = self.preview_box_label.lineWidth() pixmap_width = self.preview_area.width() - 2 * frame_width pixmap_height = self.preview_area.height() - 2 * frame_width aspect_ratio = float(pixmap_width) / pixmap_height if aspect_ratio < self.display_aspect_ratio: pixmap_height = int(pixmap_width / self.display_aspect_ratio + 0.5) else: pixmap_width = int(pixmap_height * self.display_aspect_ratio + 0.5) self.preview_box_label.setFixedSize(pixmap_width + 2 * frame_width, pixmap_height + 2 * frame_width) def validateCurrentPage(self): """ Validate the current page """ background_image = BackgroundType.to_string(BackgroundType.Image) if self.page(self.currentId()) == self.background_page and \ self.theme.background_type == background_image and is_not_image_file(self.theme.background_filename): QtWidgets.QMessageBox.critical(self, translate('OpenLP.ThemeWizard', 'Background Image Empty'), translate('OpenLP.ThemeWizard', 'You have not selected a ' 'background image. Please select one before continuing.')) return False else: return True def on_current_id_changed(self, page_id): """ Detects Page changes and updates as appropriate. """ enabled = self.page(page_id) == self.area_position_page self.setOption(QtWidgets.QWizard.HaveCustomButton1, enabled) if self.page(page_id) == self.preview_page: self.update_theme() frame = self.theme_manager.generate_image(self.theme) frame.setDevicePixelRatio(self.devicePixelRatio()) self.preview_box_label.setPixmap(frame) self.display_aspect_ratio = float(frame.width()) / frame.height() self.resizeEvent() def on_custom_1_button_clicked(self, number): """ Generate layout preview and display the form. """ self.update_theme() width = self.renderer.width height = self.renderer.height pixmap = QtGui.QPixmap(width, height) pixmap.fill(QtCore.Qt.white) paint = QtGui.QPainter(pixmap) paint.setPen(QtGui.QPen(QtCore.Qt.blue, 2)) paint.drawRect(self.renderer.get_main_rectangle(self.theme)) paint.setPen(QtGui.QPen(QtCore.Qt.red, 2)) paint.drawRect(self.renderer.get_footer_rectangle(self.theme)) paint.end() self.theme_layout_form.exec(pixmap) def on_outline_check_check_box_state_changed(self, state): """ Change state as Outline check box changed """ if self.update_theme_allowed: self.theme.font_main_outline = state == QtCore.Qt.Checked self.outline_color_button.setEnabled(self.theme.font_main_outline) self.outline_size_spin_box.setEnabled(self.theme.font_main_outline) self.calculate_lines() def on_shadow_check_check_box_state_changed(self, state): """ Change state as Shadow check box changed """ if self.update_theme_allowed: if state == QtCore.Qt.Checked: self.theme.font_main_shadow = True else: self.theme.font_main_shadow = False self.shadow_color_button.setEnabled(self.theme.font_main_shadow) self.shadow_size_spin_box.setEnabled(self.theme.font_main_shadow) self.calculate_lines() def on_main_position_check_box_state_changed(self, value): """ Change state as Main Area _position check box changed NOTE the font_main_override is the inverse of the check box value """ if self.update_theme_allowed: self.theme.font_main_override = not (value == QtCore.Qt.Checked) def on_footer_position_check_box_state_changed(self, value): """ Change state as Footer Area _position check box changed NOTE the font_footer_override is the inverse of the check box value """ if self.update_theme_allowed: self.theme.font_footer_override = not (value == QtCore.Qt.Checked) def exec(self, edit=False): """ Run the wizard. """ log.debug('Editing theme %s' % self.theme.theme_name) self.temp_background_filename = '' self.update_theme_allowed = False self.set_defaults() self.update_theme_allowed = True self.theme_name_label.setVisible(not edit) self.theme_name_edit.setVisible(not edit) self.edit_mode = edit if edit: self.setWindowTitle(translate('OpenLP.ThemeWizard', 'Edit Theme - %s') % self.theme.theme_name) self.next() else: self.setWindowTitle(UiStrings().NewTheme) return QtWidgets.QWizard.exec(self) def initializePage(self, page_id): """ Set up the pages for Initial run through dialog """ log.debug('initializePage %s' % page_id) wizard_page = self.page(page_id) if wizard_page == self.background_page: self.set_background_page_values() elif wizard_page == self.main_area_page: self.set_main_area_page_values() elif wizard_page == self.footer_area_page: self.set_footer_area_page_values() elif wizard_page == self.alignment_page: self.set_alignment_page_values() elif wizard_page == self.area_position_page: self.set_position_page_values() def set_background_page_values(self): """ Handle the display and state of the Background page. """ if self.theme.background_type == BackgroundType.to_string(BackgroundType.Solid): self.color_button.color = self.theme.background_color self.setField('background_type', 0) elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Gradient): self.gradient_start_button.color = self.theme.background_start_color self.gradient_end_button.color = self.theme.background_end_color self.setField('background_type', 1) elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Image): self.image_color_button.color = self.theme.background_border_color self.image_file_edit.setText(self.theme.background_filename) self.setField('background_type', 2) elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Transparent): self.setField('background_type', 3) if self.theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.Horizontal): self.setField('gradient', 0) elif self.theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.Vertical): self.setField('gradient', 1) elif self.theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.Circular): self.setField('gradient', 2) elif self.theme.background_direction == BackgroundGradientType.to_string(BackgroundGradientType.LeftTop): self.setField('gradient', 3) else: self.setField('gradient', 4) def set_main_area_page_values(self): """ Handle the display and state of the Main Area page. """ self.main_font_combo_box.setCurrentFont(QtGui.QFont(self.theme.font_main_name)) self.main_color_button.color = self.theme.font_main_color self.setField('main_size_spin_box', self.theme.font_main_size) self.setField('line_spacing_spin_box', self.theme.font_main_line_adjustment) self.setField('outline_check_box', self.theme.font_main_outline) self.outline_color_button.color = self.theme.font_main_outline_color self.setField('outline_size_spin_box', self.theme.font_main_outline_size) self.setField('shadow_check_box', self.theme.font_main_shadow) self.shadow_color_button.color = self.theme.font_main_shadow_color self.setField('shadow_size_spin_box', self.theme.font_main_shadow_size) self.setField('main_bold_check_box', self.theme.font_main_bold) self.setField('main_italics_check_box', self.theme.font_main_italics) def set_footer_area_page_values(self): """ Handle the display and state of the Footer Area page. """ self.footer_font_combo_box.setCurrentFont(QtGui.QFont(self.theme.font_footer_name)) self.footer_color_button.color = self.theme.font_footer_color self.setField('footer_size_spin_box', self.theme.font_footer_size) def set_position_page_values(self): """ Handle the display and state of the _position page. """ # Main Area self.main_position_check_box.setChecked(not self.theme.font_main_override) self.setField('main_position_x', self.theme.font_main_x) self.setField('main_position_y', self.theme.font_main_y) self.setField('main_position_height', self.theme.font_main_height) self.setField('main_position_width', self.theme.font_main_width) # Footer self.footer_position_check_box.setChecked(not self.theme.font_footer_override) self.setField('footer_position_x', self.theme.font_footer_x) self.setField('footer_position_y', self.theme.font_footer_y) self.setField('footer_position_height', self.theme.font_footer_height) self.setField('footer_position_width', self.theme.font_footer_width) def set_alignment_page_values(self): """ Handle the display and state of the Alignments page. """ self.setField('horizontal', self.theme.display_horizontal_align) self.setField('vertical', self.theme.display_vertical_align) self.setField('slide_transition', self.theme.display_slide_transition) def set_preview_page_values(self): """ Handle the display and state of the Preview page. """ self.setField('name', self.theme.theme_name) def on_background_combo_box_current_index_changed(self, index): """ Background style Combo box has changed. """ # do not allow updates when screen is building for the first time. if self.update_theme_allowed: self.theme.background_type = BackgroundType.to_string(index) if self.theme.background_type != BackgroundType.to_string(BackgroundType.Image) and \ self.temp_background_filename == '': self.temp_background_filename = self.theme.background_filename self.theme.background_filename = '' if self.theme.background_type == BackgroundType.to_string(BackgroundType.Image) and \ self.temp_background_filename != '': self.theme.background_filename = self.temp_background_filename self.temp_background_filename = '' self.set_background_page_values() def on_gradient_combo_box_current_index_changed(self, index): """ Background gradient Combo box has changed. """ if self.update_theme_allowed: self.theme.background_direction = BackgroundGradientType.to_string(index) self.set_background_page_values() def on_color_changed(self, color): """ Background / Gradient 1 _color button pushed. """ self.theme.background_color = color def on_image_color_changed(self, color): """ Background / Gradient 1 _color button pushed. """ self.theme.background_border_color = color def on_gradient_start_color_changed(self, color): """ Gradient 2 _color button pushed. """ self.theme.background_start_color = color def on_gradient_end_color_changed(self, color): """ Gradient 2 _color button pushed. """ self.theme.background_end_color = color def on_image_browse_button_clicked(self): """ Background Image button pushed. """ images_filter = get_images_filter() images_filter = '%s;;%s (*.*)' % (images_filter, UiStrings().AllFiles) filename, filter_used = QtWidgets.QFileDialog.getOpenFileName( self, translate('OpenLP.ThemeWizard', 'Select Image'), self.image_file_edit.text(), images_filter) if filename: self.theme.background_filename = filename self.set_background_page_values() def on_image_file_edit_editing_finished(self): """ Background image path edited """ self.theme.background_filename = str(self.image_file_edit.text()) def on_main_color_changed(self, color): """ Set the main colour value """ self.theme.font_main_color = color def on_outline_color_changed(self, color): """ Set the outline colour value """ self.theme.font_main_outline_color = color def on_shadow_color_changed(self, color): """ Set the shadow colour value """ self.theme.font_main_shadow_color = color def on_footer_color_changed(self, color): """ Set the footer colour value """ self.theme.font_footer_color = color def update_theme(self): """ Update the theme object from the UI for fields not already updated when the are changed. """ if not self.update_theme_allowed: return log.debug('update_theme') # main page self.theme.font_main_name = self.main_font_combo_box.currentFont().family() self.theme.font_main_size = self.field('main_size_spin_box') self.theme.font_main_line_adjustment = self.field('line_spacing_spin_box') self.theme.font_main_outline_size = self.field('outline_size_spin_box') self.theme.font_main_shadow_size = self.field('shadow_size_spin_box') self.theme.font_main_bold = self.field('main_bold_check_box') self.theme.font_main_italics = self.field('main_italics_check_box') # footer page self.theme.font_footer_name = self.footer_font_combo_box.currentFont().family() self.theme.font_footer_size = self.field('footer_size_spin_box') # position page self.theme.font_main_x = self.field('main_position_x') self.theme.font_main_y = self.field('main_position_y') self.theme.font_main_height = self.field('main_position_height') self.theme.font_main_width = self.field('main_position_width') self.theme.font_footer_x = self.field('footer_position_x') self.theme.font_footer_y = self.field('footer_position_y') self.theme.font_footer_height = self.field('footer_position_height') self.theme.font_footer_width = self.field('footer_position_width') # position page self.theme.display_horizontal_align = self.horizontal_combo_box.currentIndex() self.theme.display_vertical_align = self.vertical_combo_box.currentIndex() self.theme.display_slide_transition = self.field('slide_transition') def accept(self): """ Lets save the theme as Finish has been triggered """ # Save the theme name self.theme.theme_name = self.field('name') if not self.theme.theme_name: critical_error_message_box( translate('OpenLP.ThemeWizard', 'Theme Name Missing'), translate('OpenLP.ThemeWizard', 'There is no name for this theme. Please enter one.')) return if self.theme.theme_name == '-1' or self.theme.theme_name == 'None': critical_error_message_box( translate('OpenLP.ThemeWizard', 'Theme Name Invalid'), translate('OpenLP.ThemeWizard', 'Invalid theme name. Please enter one.')) return save_from = None save_to = None if self.theme.background_type == BackgroundType.to_string(BackgroundType.Image): filename = os.path.split(str(self.theme.background_filename))[1] save_to = os.path.join(self.path, self.theme.theme_name, filename) save_from = self.theme.background_filename if not self.edit_mode and not self.theme_manager.check_if_theme_exists(self.theme.theme_name): return self.theme_manager.save_theme(self.theme, save_from, save_to) return QtWidgets.QDialog.accept(self) OpenLP-2.4/openlp/core/ui/formattingtagform.py0000644000175000017500000002301112657640340020514 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`formattingtagform` provides an Tag Edit facility. The Base set are protected and included each time loaded. Custom tags can be defined and saved. The Custom Tag arrays are saved in a json string so QSettings works on them. Base Tags cannot be changed. """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import translate from openlp.core.lib import FormattingTags from openlp.core.ui.formattingtagdialog import Ui_FormattingTagDialog from openlp.core.ui.formattingtagcontroller import FormattingTagController class EditColumn(object): """ Hides the magic numbers for the table columns """ Description = 0 Tag = 1 StartHtml = 2 EndHtml = 3 class FormattingTagForm(QtWidgets.QDialog, Ui_FormattingTagDialog, FormattingTagController): """ The :class:`FormattingTagForm` manages the settings tab . """ def __init__(self, parent): """ Constructor """ super(FormattingTagForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) self._setup() def _setup(self): """ Set up the class. This method is mocked out by the tests. """ self.services = FormattingTagController() self.tag_table_widget.itemSelectionChanged.connect(self.on_row_selected) self.new_button.clicked.connect(self.on_new_clicked) self.delete_button.clicked.connect(self.on_delete_clicked) self.tag_table_widget.currentCellChanged.connect(self.on_current_cell_changed) self.button_box.rejected.connect(self.close) # Forces reloading of tags from openlp configuration. FormattingTags.load_tags() self.is_deleting = False self.reloading = False def exec(self): """ Load Display and set field state. """ # Create initial copy from master self._reloadTable() return QtWidgets.QDialog.exec(self) def on_row_selected(self): """ Table Row selected so display items and set field state. """ self.delete_button.setEnabled(True) def on_new_clicked(self): """ Add a new tag to edit list and select it for editing. """ new_row = self.tag_table_widget.rowCount() self.tag_table_widget.insertRow(new_row) self.tag_table_widget.setItem(new_row, 0, QtWidgets.QTableWidgetItem(translate('OpenLP.FormattingTagForm', 'New Tag %d' % new_row))) self.tag_table_widget.setItem(new_row, 1, QtWidgets.QTableWidgetItem('n%d' % new_row)) self.tag_table_widget.setItem(new_row, 2, QtWidgets.QTableWidgetItem(translate('OpenLP.FormattingTagForm', ''))) self.tag_table_widget.setItem(new_row, 3, QtWidgets.QTableWidgetItem('')) self.tag_table_widget.resizeRowsToContents() self.tag_table_widget.scrollToBottom() self.tag_table_widget.selectRow(new_row) def on_delete_clicked(self): """ Delete selected custom row. """ selected = self.tag_table_widget.currentRow() if selected != -1: self.is_deleting = True self.tag_table_widget.removeRow(selected) def accept(self): """ Update Custom Tag details if not duplicate and save the data. """ count = 0 self.services.pre_save() while count < self.tag_table_widget.rowCount(): error = self.services.validate_for_save(self.tag_table_widget.item(count, 0).text(), self.tag_table_widget.item(count, 1).text(), self.tag_table_widget.item(count, 2).text(), self.tag_table_widget.item(count, 3).text()) if error: QtWidgets.QMessageBox.warning(self, translate('OpenLP.FormattingTagForm', 'Validation Error'), error, QtWidgets.QMessageBox.Ok) self.tag_table_widget.selectRow(count) return count += 1 self.services.save_tags() QtWidgets.QDialog.accept(self) def _reloadTable(self): """ Reset List for loading. """ self.reloading = True self.tag_table_widget_read.clearContents() self.tag_table_widget_read.setRowCount(0) self.tag_table_widget.clearContents() self.tag_table_widget.setRowCount(0) self.new_button.setEnabled(True) self.delete_button.setEnabled(False) for line_number, html in enumerate(FormattingTags.get_html_tags()): if html['protected']: line = self.tag_table_widget_read.rowCount() self.tag_table_widget_read.setRowCount(line + 1) self.tag_table_widget_read.setItem(line, 0, QtWidgets.QTableWidgetItem(html['desc'])) self.tag_table_widget_read.setItem(line, 1, QtWidgets.QTableWidgetItem(self._strip(html['start tag']))) self.tag_table_widget_read.setItem(line, 2, QtWidgets.QTableWidgetItem(html['start html'])) self.tag_table_widget_read.setItem(line, 3, QtWidgets.QTableWidgetItem(html['end html'])) self.tag_table_widget_read.resizeRowsToContents() else: line = self.tag_table_widget.rowCount() self.tag_table_widget.setRowCount(line + 1) self.tag_table_widget.setItem(line, 0, QtWidgets.QTableWidgetItem(html['desc'])) self.tag_table_widget.setItem(line, 1, QtWidgets.QTableWidgetItem(self._strip(html['start tag']))) self.tag_table_widget.setItem(line, 2, QtWidgets.QTableWidgetItem(html['start html'])) self.tag_table_widget.setItem(line, 3, QtWidgets.QTableWidgetItem(html['end html'])) self.tag_table_widget.resizeRowsToContents() # Permanent (persistent) tags do not have this key html['temporary'] = False self.reloading = False def on_current_cell_changed(self, cur_row, cur_col, pre_row, pre_col): """ This function processes all user edits in the table. It is called on each cell change. """ if self.is_deleting: self.is_deleting = False return if self.reloading: return # only process for editable rows if self.tag_table_widget.item(pre_row, 0): item = self.tag_table_widget.item(pre_row, pre_col) text = item.text() errors = None if pre_col is EditColumn.Description: if not text: errors = translate('OpenLP.FormattingTagForm', 'Description is missing') elif pre_col is EditColumn.Tag: if not text: errors = translate('OpenLP.FormattingTagForm', 'Tag is missing') elif pre_col is EditColumn.StartHtml: # HTML edited item = self.tag_table_widget.item(pre_row, 3) end_html = item.text() errors, tag = self.services.start_tag_changed(text, end_html) if tag: self.tag_table_widget.setItem(pre_row, 3, QtWidgets.QTableWidgetItem(tag)) self.tag_table_widget.resizeRowsToContents() elif pre_col is EditColumn.EndHtml: # HTML edited item = self.tag_table_widget.item(pre_row, 2) start_html = item.text() errors, tag = self.services.end_tag_changed(start_html, text) if tag: self.tag_table_widget.setItem(pre_row, 3, QtWidgets.QTableWidgetItem(tag)) if errors: QtWidgets.QMessageBox.warning(self, translate('OpenLP.FormattingTagForm', 'Validation Error'), errors, QtWidgets.QMessageBox.Ok) self.tag_table_widget.resizeRowsToContents() OpenLP-2.4/openlp/core/ui/slidecontroller.py0000644000175000017500000021030612657640340020173 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`slidecontroller` module contains the most important part of OpenLP - the slide controller """ import os import copy from collections import deque from threading import Lock from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, Settings, SlideLimits, UiStrings, translate, \ RegistryMixin, OpenLPMixin, is_win from openlp.core.lib import OpenLPToolbar, ItemCapabilities, ServiceItem, ImageSource, ServiceItemAction, \ ScreenList, build_icon, build_html from openlp.core.ui import HideMode, MainDisplay, Display, DisplayControllerType from openlp.core.lib.ui import create_action from openlp.core.utils.actions import ActionList, CategoryOrder from openlp.core.ui.listpreviewwidget import ListPreviewWidget # Threshold which has to be trespassed to toggle. HIDE_MENU_THRESHOLD = 27 AUDIO_TIME_LABEL_STYLESHEET = 'background-color: palette(background); ' \ 'border-top-color: palette(shadow); ' \ 'border-left-color: palette(shadow); ' \ 'border-bottom-color: palette(light); ' \ 'border-right-color: palette(light); ' \ 'border-radius: 3px; border-style: inset; ' \ 'border-width: 1; font-family: monospace; margin: 2px;' NARROW_MENU = [ 'hide_menu' ] LOOP_LIST = [ 'play_slides_menu', 'loop_separator', 'delay_spin_box' ] AUDIO_LIST = [ 'audioPauseItem', 'audio_time_label' ] WIDE_MENU = [ 'blank_screen_button', 'theme_screen_button', 'desktop_screen_button' ] NON_TEXT_MENU = [ 'blank_screen_button', 'desktop_screen_button' ] class DisplayController(QtWidgets.QWidget): """ Controller is a general display controller widget. """ def __init__(self, parent): """ Set up the general Controller. """ super(DisplayController, self).__init__(parent) self.is_live = False self.display = None self.controller_type = DisplayControllerType.Plugin def send_to_plugins(self, *args): """ This is the generic function to send signal for control widgets, created from within other plugins This function is needed to catch the current controller :param args: Arguments to send to the plugins """ sender = self.sender().objectName() if self.sender().objectName() else self.sender().text() controller = self Registry().execute('%s' % sender, [controller, args]) class InfoLabel(QtWidgets.QLabel): """ InfoLabel is a subclassed QLabel. Created to provide the ablilty to add a ellipsis if the text is cut off. Original source: https://stackoverflow.com/questions/11446478/pyside-pyqt-truncate-text-in-qlabel-based-on-minimumsize """ def paintEvent(self, event): """ Reimplemented to allow the drawing of elided text if the text is longer than the width of the label """ painter = QtGui.QPainter(self) metrics = QtGui.QFontMetrics(self.font()) elided = metrics.elidedText(self.text(), QtCore.Qt.ElideRight, self.width()) # If the text is elided align it left to stop it jittering as the label is resized if elided == self.text(): alignment = QtCore.Qt.AlignCenter else: alignment = QtCore.Qt.AlignLeft painter.drawText(self.rect(), alignment, elided) def setText(self, text): """ Reimplemented to set the tool tip text. """ self.setToolTip(text) super().setText(text) class SlideController(DisplayController, RegistryProperties): """ SlideController is the slide controller widget. This widget is what the user uses to control the displaying of verses/slides/etc on the screen. """ def __init__(self, parent): """ Set up the Slide Controller. """ super(SlideController, self).__init__(parent) def post_set_up(self): """ Call by bootstrap functions """ self.initialise() self.screen_size_changed() def initialise(self): """ Initialise the UI elements of the controller """ self.screens = ScreenList() try: self.ratio = self.screens.current['size'].width() / self.screens.current['size'].height() except ZeroDivisionError: self.ratio = 1 self.process_queue_lock = Lock() self.slide_selected_lock = Lock() self.timer_id = 0 self.song_edit = False self.selected_row = 0 self.service_item = None self.slide_limits = None self.update_slide_limits() self.panel = QtWidgets.QWidget(self.main_window.control_splitter) self.slide_list = {} self.slide_count = 0 self.slide_image = None self.controller_width = -1 # Layout for holding panel self.panel_layout = QtWidgets.QVBoxLayout(self.panel) self.panel_layout.setSpacing(0) self.panel_layout.setContentsMargins(0, 0, 0, 0) # Type label at the top of the slide controller self.type_label = QtWidgets.QLabel(self.panel) self.type_label.setStyleSheet('font-weight: bold; font-size: 12pt;') self.type_label.setAlignment(QtCore.Qt.AlignCenter) if self.is_live: self.type_label.setText(UiStrings().Live) else: self.type_label.setText(UiStrings().Preview) self.panel_layout.addWidget(self.type_label) # Info label for the title of the current item, at the top of the slide controller self.info_label = InfoLabel(self.panel) self.info_label.setSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Preferred) self.panel_layout.addWidget(self.info_label) # Splitter self.splitter = QtWidgets.QSplitter(self.panel) self.splitter.setOrientation(QtCore.Qt.Vertical) self.panel_layout.addWidget(self.splitter) # Actual controller section self.controller = QtWidgets.QWidget(self.splitter) self.controller.setGeometry(QtCore.QRect(0, 0, 100, 536)) self.controller.setSizePolicy(QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Maximum)) self.controller_layout = QtWidgets.QVBoxLayout(self.controller) self.controller_layout.setSpacing(0) self.controller_layout.setContentsMargins(0, 0, 0, 0) # Controller list view self.preview_widget = ListPreviewWidget(self, self.ratio) self.controller_layout.addWidget(self.preview_widget) # Build the full toolbar self.toolbar = OpenLPToolbar(self) size_toolbar_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) size_toolbar_policy.setHorizontalStretch(0) size_toolbar_policy.setVerticalStretch(0) size_toolbar_policy.setHeightForWidth(self.toolbar.sizePolicy().hasHeightForWidth()) self.toolbar.setSizePolicy(size_toolbar_policy) self.previous_item = create_action(self, 'previousItem_' + self.type_prefix, text=translate('OpenLP.SlideController', 'Previous Slide'), icon=':/slides/slide_previous.png', tooltip=translate('OpenLP.SlideController', 'Move to previous.'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.on_slide_selected_previous) self.toolbar.addAction(self.previous_item) self.next_item = create_action(self, 'nextItem_' + self.type_prefix, text=translate('OpenLP.SlideController', 'Next Slide'), icon=':/slides/slide_next.png', tooltip=translate('OpenLP.SlideController', 'Move to next.'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.on_slide_selected_next_action) self.toolbar.addAction(self.next_item) self.toolbar.addSeparator() self.controller_type = DisplayControllerType.Preview if self.is_live: self.controller_type = DisplayControllerType.Live # Hide Menu self.hide_menu = QtWidgets.QToolButton(self.toolbar) self.hide_menu.setObjectName('hide_menu') self.hide_menu.setText(translate('OpenLP.SlideController', 'Hide')) self.hide_menu.setPopupMode(QtWidgets.QToolButton.MenuButtonPopup) self.hide_menu.setMenu(QtWidgets.QMenu(translate('OpenLP.SlideController', 'Hide'), self.toolbar)) self.toolbar.add_toolbar_widget(self.hide_menu) self.blank_screen = create_action(self, 'blankScreen', text=translate('OpenLP.SlideController', 'Blank Screen'), icon=':/slides/slide_blank.png', checked=False, can_shortcuts=True, category=self.category, triggers=self.on_blank_display) self.theme_screen = create_action(self, 'themeScreen', text=translate('OpenLP.SlideController', 'Blank to Theme'), icon=':/slides/slide_theme.png', checked=False, can_shortcuts=True, category=self.category, triggers=self.on_theme_display) self.desktop_screen = create_action(self, 'desktopScreen', text=translate('OpenLP.SlideController', 'Show Desktop'), icon=':/slides/slide_desktop.png', checked=False, can_shortcuts=True, category=self.category, triggers=self.on_hide_display) self.hide_menu.setDefaultAction(self.blank_screen) self.hide_menu.menu().addAction(self.blank_screen) self.hide_menu.menu().addAction(self.theme_screen) self.hide_menu.menu().addAction(self.desktop_screen) # Wide menu of display control buttons. self.blank_screen_button = QtWidgets.QToolButton(self.toolbar) self.blank_screen_button.setObjectName('blank_screen_button') self.toolbar.add_toolbar_widget(self.blank_screen_button) self.blank_screen_button.setDefaultAction(self.blank_screen) self.theme_screen_button = QtWidgets.QToolButton(self.toolbar) self.theme_screen_button.setObjectName('theme_screen_button') self.toolbar.add_toolbar_widget(self.theme_screen_button) self.theme_screen_button.setDefaultAction(self.theme_screen) self.desktop_screen_button = QtWidgets.QToolButton(self.toolbar) self.desktop_screen_button.setObjectName('desktop_screen_button') self.toolbar.add_toolbar_widget(self.desktop_screen_button) self.desktop_screen_button.setDefaultAction(self.desktop_screen) self.toolbar.add_toolbar_action('loop_separator', separator=True) # Play Slides Menu self.play_slides_menu = QtWidgets.QToolButton(self.toolbar) self.play_slides_menu.setObjectName('play_slides_menu') self.play_slides_menu.setText(translate('OpenLP.SlideController', 'Play Slides')) self.play_slides_menu.setPopupMode(QtWidgets.QToolButton.MenuButtonPopup) self.play_slides_menu.setMenu(QtWidgets.QMenu(translate('OpenLP.SlideController', 'Play Slides'), self.toolbar)) self.toolbar.add_toolbar_widget(self.play_slides_menu) self.play_slides_loop = create_action(self, 'playSlidesLoop', text=UiStrings().PlaySlidesInLoop, icon=':/media/media_time.png', checked=False, can_shortcuts=True, category=self.category, triggers=self.on_play_slides_loop) self.play_slides_once = create_action(self, 'playSlidesOnce', text=UiStrings().PlaySlidesToEnd, icon=':/media/media_time.png', checked=False, can_shortcuts=True, category=self.category, triggers=self.on_play_slides_once) if Settings().value(self.main_window.advanced_settings_section + '/slide limits') == SlideLimits.Wrap: self.play_slides_menu.setDefaultAction(self.play_slides_loop) else: self.play_slides_menu.setDefaultAction(self.play_slides_once) self.play_slides_menu.menu().addAction(self.play_slides_loop) self.play_slides_menu.menu().addAction(self.play_slides_once) # Loop Delay Spinbox self.delay_spin_box = QtWidgets.QSpinBox() self.delay_spin_box.setObjectName('delay_spin_box') self.delay_spin_box.setRange(1, 180) self.delay_spin_box.setSuffix(UiStrings().Seconds) self.delay_spin_box.setToolTip(translate('OpenLP.SlideController', 'Delay between slides in seconds.')) self.receive_spin_delay() self.toolbar.add_toolbar_widget(self.delay_spin_box) else: self.toolbar.add_toolbar_action('goLive', icon=':/general/general_live.png', tooltip=translate('OpenLP.SlideController', 'Move to live.'), triggers=self.on_go_live) self.toolbar.add_toolbar_action('addToService', icon=':/general/general_add.png', tooltip=translate('OpenLP.SlideController', 'Add to Service.'), triggers=self.on_preview_add_to_service) self.toolbar.addSeparator() self.toolbar.add_toolbar_action('editSong', icon=':/general/general_edit.png', tooltip=translate('OpenLP.SlideController', 'Edit and reload song preview.'), triggers=self.on_edit_song) self.controller_layout.addWidget(self.toolbar) # Build the Media Toolbar self.media_controller.register_controller(self) if self.is_live: # Build the Song Toolbar self.song_menu = QtWidgets.QToolButton(self.toolbar) self.song_menu.setObjectName('song_menu') self.song_menu.setText(translate('OpenLP.SlideController', 'Go To')) self.song_menu.setPopupMode(QtWidgets.QToolButton.InstantPopup) self.song_menu.setMenu(QtWidgets.QMenu(translate('OpenLP.SlideController', 'Go To'), self.toolbar)) self.toolbar.add_toolbar_widget(self.song_menu) # Stuff for items with background audio. # FIXME: object name should be changed. But this requires that we migrate the shortcut. self.audio_pause_item = self.toolbar.add_toolbar_action( 'audioPauseItem', icon=':/slides/media_playback_pause.png', text=translate('OpenLP.SlideController', 'Pause Audio'), tooltip=translate('OpenLP.SlideController', 'Pause audio.'), checked=False, visible=False, category=self.category, context=QtCore.Qt.WindowShortcut, can_shortcuts=True, triggers=self.set_audio_pause_clicked) self.audio_menu = QtWidgets.QMenu(translate('OpenLP.SlideController', 'Background Audio'), self.toolbar) self.audio_pause_item.setMenu(self.audio_menu) self.audio_pause_item.setParent(self.toolbar) self.toolbar.widgetForAction(self.audio_pause_item).setPopupMode(QtWidgets.QToolButton.MenuButtonPopup) self.next_track_item = create_action(self, 'nextTrackItem', text=UiStrings().NextTrack, icon=':/slides/media_playback_next.png', tooltip=translate('OpenLP.SlideController', 'Go to next audio track.'), category=self.category, can_shortcuts=True, triggers=self.on_next_track_clicked) self.audio_menu.addAction(self.next_track_item) self.track_menu = self.audio_menu.addMenu(translate('OpenLP.SlideController', 'Tracks')) self.audio_time_label = QtWidgets.QLabel(' 00:00 ', self.toolbar) self.audio_time_label.setAlignment(QtCore.Qt.AlignCenter | QtCore.Qt.AlignHCenter) self.audio_time_label.setStyleSheet(AUDIO_TIME_LABEL_STYLESHEET) self.audio_time_label.setObjectName('audio_time_label') self.toolbar.add_toolbar_widget(self.audio_time_label) self.toolbar.set_widget_visible(AUDIO_LIST, False) self.toolbar.set_widget_visible(['song_menu'], False) # Screen preview area self.preview_frame = QtWidgets.QFrame(self.splitter) self.preview_frame.setGeometry(QtCore.QRect(0, 0, 300, 300 * self.ratio)) self.preview_frame.setMinimumHeight(100) self.preview_frame.setSizePolicy(QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Label)) self.preview_frame.setFrameShape(QtWidgets.QFrame.StyledPanel) self.preview_frame.setFrameShadow(QtWidgets.QFrame.Sunken) self.preview_frame.setObjectName('preview_frame') self.grid = QtWidgets.QGridLayout(self.preview_frame) self.grid.setContentsMargins(8, 8, 8, 8) self.grid.setObjectName('grid') self.slide_layout = QtWidgets.QVBoxLayout() self.slide_layout.setSpacing(0) self.slide_layout.setContentsMargins(0, 0, 0, 0) self.slide_layout.setObjectName('SlideLayout') self.preview_display = Display(self) self.slide_layout.insertWidget(0, self.preview_display) self.preview_display.hide() # Actual preview screen self.slide_preview = QtWidgets.QLabel(self) size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) size_policy.setHorizontalStretch(0) size_policy.setVerticalStretch(0) size_policy.setHeightForWidth(self.slide_preview.sizePolicy().hasHeightForWidth()) self.slide_preview.setSizePolicy(size_policy) self.slide_preview.setFrameShape(QtWidgets.QFrame.Box) self.slide_preview.setFrameShadow(QtWidgets.QFrame.Plain) self.slide_preview.setLineWidth(1) self.slide_preview.setScaledContents(True) self.slide_preview.setObjectName('slide_preview') self.slide_layout.insertWidget(0, self.slide_preview) self.grid.addLayout(self.slide_layout, 0, 0, 1, 1) if self.is_live: self.current_shortcut = '' self.shortcut_timer = QtCore.QTimer() self.shortcut_timer.setObjectName('shortcut_timer') self.shortcut_timer.setSingleShot(True) shortcuts = [ {'key': 'V', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Verse"')}, {'key': 'C', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Chorus"')}, {'key': 'B', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Bridge"')}, {'key': 'P', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Pre-Chorus"')}, {'key': 'I', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Intro"')}, {'key': 'E', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Ending"')}, {'key': 'O', 'configurable': True, 'text': translate('OpenLP.SlideController', 'Go to "Other"')} ] shortcuts.extend([{'key': str(number)} for number in range(10)]) self.controller.addActions([create_action(self, 'shortcutAction_%s' % s['key'], text=s.get('text'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category if s.get('configurable') else None, triggers=self._slide_shortcut_activated) for s in shortcuts]) self.shortcut_timer.timeout.connect(self._slide_shortcut_activated) # Signals self.preview_widget.clicked.connect(self.on_slide_selected) self.preview_widget.verticalHeader().sectionClicked.connect(self.on_slide_selected) if self.is_live: # Need to use event as called across threads and UI is updated self.slidecontroller_toggle_display.connect(self.toggle_display) Registry().register_function('slidecontroller_live_spin_delay', self.receive_spin_delay) self.toolbar.set_widget_visible(LOOP_LIST, False) self.toolbar.set_widget_visible(WIDE_MENU, False) self.set_live_hot_keys(self) self.__add_actions_to_widget(self.controller) else: self.preview_widget.doubleClicked.connect(self.on_preview_double_click) self.toolbar.set_widget_visible(['editSong'], False) self.controller.addActions([self.next_item, self.previous_item]) Registry().register_function('slidecontroller_%s_stop_loop' % self.type_prefix, self.on_stop_loop) Registry().register_function('slidecontroller_%s_change' % self.type_prefix, self.on_slide_change) Registry().register_function('slidecontroller_%s_blank' % self.type_prefix, self.on_slide_blank) Registry().register_function('slidecontroller_%s_unblank' % self.type_prefix, self.on_slide_unblank) Registry().register_function('slidecontroller_update_slide_limits', self.update_slide_limits) getattr(self, 'slidecontroller_%s_set' % self.type_prefix).connect(self.on_slide_selected_index) getattr(self, 'slidecontroller_%s_next' % self.type_prefix).connect(self.on_slide_selected_next) getattr(self, 'slidecontroller_%s_previous' % self.type_prefix).connect(self.on_slide_selected_previous) def _slide_shortcut_activated(self): """ Called, when a shortcut has been activated to jump to a chorus, verse, etc. **Note**: This implementation is based on shortcuts. But it rather works like "key sequences". You have to press one key after the other and **not** at the same time. For example to jump to "V3" you have to press "V" and afterwards but within a time frame of 350ms you have to press "3". """ try: from openlp.plugins.songs.lib import VerseType is_songs_plugin_available = True except ImportError: class VerseType(object): """ This empty class is mostly just to satisfy Python, PEP8 and PyCharm """ pass is_songs_plugin_available = False sender_name = self.sender().objectName() verse_type = sender_name[15:] if sender_name[:15] == 'shortcutAction_' else '' if is_songs_plugin_available: if verse_type == 'V': self.current_shortcut = VerseType.translated_tags[VerseType.Verse] elif verse_type == 'C': self.current_shortcut = VerseType.translated_tags[VerseType.Chorus] elif verse_type == 'B': self.current_shortcut = VerseType.translated_tags[VerseType.Bridge] elif verse_type == 'P': self.current_shortcut = VerseType.translated_tags[VerseType.PreChorus] elif verse_type == 'I': self.current_shortcut = VerseType.translated_tags[VerseType.Intro] elif verse_type == 'E': self.current_shortcut = VerseType.translated_tags[VerseType.Ending] elif verse_type == 'O': self.current_shortcut = VerseType.translated_tags[VerseType.Other] elif verse_type.isnumeric(): self.current_shortcut += verse_type self.current_shortcut = self.current_shortcut.upper() elif verse_type.isnumeric(): self.current_shortcut += verse_type elif verse_type: self.current_shortcut = verse_type keys = list(self.slide_list.keys()) matches = [match for match in keys if match.startswith(self.current_shortcut)] if len(matches) == 1: self.shortcut_timer.stop() self.current_shortcut = '' self.preview_widget.change_slide(self.slide_list[matches[0]]) self.slide_selected() elif sender_name != 'shortcut_timer': # Start the time as we did not have any match. self.shortcut_timer.start(350) else: # The timer timed out. if self.current_shortcut in keys: # We had more than one match for example "V1" and "V10", but # "V1" was the slide we wanted to go. self.preview_widget.change_slide(self.slide_list[self.current_shortcut]) self.slide_selected() # Reset the shortcut. self.current_shortcut = '' def set_live_hot_keys(self, parent=None): """ Set the live hotkeys :param parent: The parent UI object for actions to be added to. """ self.previous_service = create_action(parent, 'previousService', text=translate('OpenLP.SlideController', 'Previous Service'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.service_previous) self.next_service = create_action(parent, 'nextService', text=translate('OpenLP.SlideController', 'Next Service'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.service_next) self.escape_item = create_action(parent, 'escapeItem', text=translate('OpenLP.SlideController', 'Escape Item'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.live_escape) def live_escape(self, field=None): """ If you press ESC on the live screen it should close the display temporarily. """ self.display.setVisible(False) self.media_controller.media_stop(self) # Stop looping if active if self.play_slides_loop.isChecked(): self.on_play_slides_loop(False) elif self.play_slides_once.isChecked(): self.on_play_slides_once(False) def toggle_display(self, action): """ Toggle the display settings triggered from remote messages. :param action: The blank action to be processed. """ if action == 'blank' or action == 'hide': self.on_blank_display(True) elif action == 'theme': self.on_theme_display(True) elif action == 'desktop': self.on_hide_display(True) elif action == 'show': self.on_blank_display(False) self.on_theme_display(False) self.on_hide_display(False) def service_previous(self, field=None): """ Live event to select the previous service item from the service manager. """ self.keypress_queue.append(ServiceItemAction.Previous) self._process_queue() def service_next(self, field=None): """ Live event to select the next service item from the service manager. """ self.keypress_queue.append(ServiceItemAction.Next) self._process_queue() def _process_queue(self): """ Process the service item request queue. The key presses can arrive faster than the processing so implement a FIFO queue. """ # Make sure only one thread get in here. Just return if already locked. if self.keypress_queue and self.process_queue_lock.acquire(False): while len(self.keypress_queue): keypress_command = self.keypress_queue.popleft() if keypress_command == ServiceItemAction.Previous: self.service_manager.previous_item() elif keypress_command == ServiceItemAction.PreviousLastSlide: # Go to the last slide of the previous item self.service_manager.previous_item(last_slide=True) else: self.service_manager.next_item() self.process_queue_lock.release() def screen_size_changed(self): """ Settings dialog has changed the screen size of adjust output and screen previews. """ # rebuild display as screen size changed if self.display: self.display.close() self.display = MainDisplay(self) self.display.setup() if self.is_live: self.__add_actions_to_widget(self.display) if self.display.audio_player: self.display.audio_player.position_changed.connect(self.on_audio_time_remaining) # The SlidePreview's ratio. try: self.ratio = self.screens.current['size'].width() / self.screens.current['size'].height() except ZeroDivisionError: self.ratio = 1 self.media_controller.setup_display(self.display, False) self.preview_size_changed() self.preview_widget.screen_size_changed(self.ratio) self.preview_display.setup() service_item = ServiceItem() self.preview_display.web_view.setHtml(build_html(service_item, self.preview_display.screen, None, self.is_live, plugins=self.plugin_manager.plugins)) self.media_controller.setup_display(self.preview_display, True) if self.service_item: self.refresh_service_item() def __add_actions_to_widget(self, widget): """ Add actions to the widget specified by `widget` :param widget: The UI widget for the actions """ widget.addActions([ self.previous_item, self.next_item, self.previous_service, self.next_service, self.escape_item]) def preview_size_changed(self): """ Takes care of the SlidePreview's size. Is called when one of the the splitters is moved or when the screen size is changed. Note, that this method is (also) called frequently from the mainwindow *paintEvent*. """ if self.ratio < self.preview_frame.width() / self.preview_frame.height(): # We have to take the height as limit. max_height = self.preview_frame.height() - self.grid.contentsMargins().top() * 2 self.slide_preview.setFixedSize(QtCore.QSize(max_height * self.ratio, max_height)) self.preview_display.setFixedSize(QtCore.QSize(max_height * self.ratio, max_height)) self.preview_display.screen = {'size': self.preview_display.geometry()} else: # We have to take the width as limit. max_width = self.preview_frame.width() - self.grid.contentsMargins().top() * 2 self.slide_preview.setFixedSize(QtCore.QSize(max_width, max_width / self.ratio)) self.preview_display.setFixedSize(QtCore.QSize(max_width, max_width / self.ratio)) self.preview_display.screen = {'size': self.preview_display.geometry()} # Only update controller layout if width has actually changed if self.controller_width != self.controller.width(): self.controller_width = self.controller.width() self.on_controller_size_changed(self.controller_width) def on_controller_size_changed(self, width): """ Change layout of display control buttons on controller size change :param width: the new width of the display """ if self.is_live: # Space used by the toolbar. used_space = self.toolbar.size().width() + self.hide_menu.size().width() # Add the threshold to prevent flickering. if width > used_space + HIDE_MENU_THRESHOLD and self.hide_menu.isVisible(): self.toolbar.set_widget_visible(NARROW_MENU, False) self.set_blank_menu() # Take away a threshold to prevent flickering. elif width < used_space - HIDE_MENU_THRESHOLD and not self.hide_menu.isVisible(): self.set_blank_menu(False) self.toolbar.set_widget_visible(NARROW_MENU) # Fallback to the standard blank toolbar if the hide_menu is not visible. elif not self.hide_menu.isVisible(): self.toolbar.set_widget_visible(NARROW_MENU, False) self.set_blank_menu() def set_blank_menu(self, visible=True): """ Set the correct menu type dependent on the service item type :param visible: Do I need to hide the menu? """ self.toolbar.set_widget_visible(WIDE_MENU, False) if self.service_item and self.service_item.is_text(): self.toolbar.set_widget_visible(WIDE_MENU, visible) else: self.toolbar.set_widget_visible(NON_TEXT_MENU, visible) def on_song_bar_handler(self): """ Some song handler """ request = self.sender().text() slide_no = self.slide_list[request] width = self.main_window.control_splitter.sizes()[self.split] self.preview_widget.replace_service_item(self.service_item, width, slide_no) self.slide_selected() def receive_spin_delay(self): """ Adjusts the value of the ``delay_spin_box`` to the given one. """ self.delay_spin_box.setValue(Settings().value('core/loop delay')) def update_slide_limits(self): """ Updates the Slide Limits variable from the settings. """ self.slide_limits = Settings().value(self.main_window.advanced_settings_section + '/slide limits') def enable_tool_bar(self, item): """ Allows the toolbars to be reconfigured based on Controller Type and ServiceItem Type :param item: current service item being processed """ if self.is_live: self.enable_live_tool_bar(item) else: self.enable_preview_tool_bar(item) def enable_live_tool_bar(self, item): """ Allows the live toolbar to be customised :param item: The current service item """ # Work-around for OS X, hide and then show the toolbar # See bug #791050 self.toolbar.hide() self.mediabar.hide() self.song_menu.hide() self.toolbar.set_widget_visible(LOOP_LIST, False) self.toolbar.set_widget_visible(['song_menu'], False) # Reset the button self.play_slides_once.setChecked(False) self.play_slides_once.setIcon(build_icon(':/media/media_time.png')) self.play_slides_loop.setChecked(False) self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) if item.is_text(): if (Settings().value(self.main_window.songs_settings_section + '/display songbar') and not self.song_menu.menu().isEmpty()): self.toolbar.set_widget_visible(['song_menu'], True) if item.is_capable(ItemCapabilities.CanLoop) and len(item.get_frames()) > 1: self.toolbar.set_widget_visible(LOOP_LIST) if item.is_media(): self.mediabar.show() self.previous_item.setVisible(not item.is_media()) self.next_item.setVisible(not item.is_media()) # The layout of the toolbar is size dependent, so make sure it fits. Reset stored controller_width. if self.is_live: self.controller_width = -1 self.on_controller_size_changed(self.controller.width()) # Work-around for OS X, hide and then show the toolbar # See bug #791050 self.toolbar.show() def enable_preview_tool_bar(self, item): """ Allows the Preview toolbar to be customised :param item: The current service item """ # Work-around for OS X, hide and then show the toolbar # See bug #791050 self.toolbar.hide() self.mediabar.hide() self.toolbar.set_widget_visible(['editSong'], False) if item.is_capable(ItemCapabilities.CanEdit) and item.from_plugin: self.toolbar.set_widget_visible(['editSong']) elif item.is_media(): self.mediabar.show() self.previous_item.setVisible(not item.is_media()) self.next_item.setVisible(not item.is_media()) # Work-around for OS X, hide and then show the toolbar # See bug #791050 self.toolbar.show() def refresh_service_item(self): """ Method to update the service item if the screen has changed """ if self.service_item.is_text() or self.service_item.is_image(): item = self.service_item item.render() self._process_item(item, self.selected_row) def add_service_item(self, item): """ Method to install the service item into the controller Called by plugins :param item: The current service item """ item.render() slide_no = 0 if self.song_edit: slide_no = self.selected_row self.song_edit = False self._process_item(item, slide_no) def replace_service_manager_item(self, item): """ Replacement item following a remote edit :param item: The current service item """ if item == self.service_item: self._process_item(item, self.preview_widget.current_slide_number()) def add_service_manager_item(self, item, slide_no): """ Method to install the service item into the controller and request the correct toolbar for the plugin. Called by :class:`~openlp.core.ui.ServiceManager` :param item: The current service item :param slide_no: The slide number to select """ # If no valid slide number is specified we take the first one, but we remember the initial value to see if we # should reload the song or not slide_num = slide_no if slide_no == -1: slide_num = 0 # If service item is the same as the current one, only change slide if slide_no >= 0 and item == self.service_item: self.preview_widget.change_slide(slide_num) self.slide_selected() else: self._process_item(item, slide_num) if self.is_live and item.auto_play_slides_loop and item.timed_slide_interval > 0: self.play_slides_loop.setChecked(item.auto_play_slides_loop) self.delay_spin_box.setValue(int(item.timed_slide_interval)) self.on_play_slides_loop() elif self.is_live and item.auto_play_slides_once and item.timed_slide_interval > 0: self.play_slides_once.setChecked(item.auto_play_slides_once) self.delay_spin_box.setValue(int(item.timed_slide_interval)) self.on_play_slides_once() def _process_item(self, service_item, slide_no): """ Loads a ServiceItem into the system from ServiceManager. Display the slide number passed. :param service_item: The current service item :param slide_no: The slide number to select """ self.on_stop_loop() old_item = self.service_item # rest to allow the remote pick up verse 1 if large imaged self.selected_row = 0 # take a copy not a link to the servicemanager copy. self.service_item = copy.copy(service_item) if self.service_item.is_command(): Registry().execute( '%s_start' % service_item.name.lower(), [self.service_item, self.is_live, self.hide_mode(), slide_no]) # Reset blanking if needed if old_item and self.is_live and (old_item.is_capable(ItemCapabilities.ProvidesOwnDisplay) or self.service_item.is_capable(ItemCapabilities.ProvidesOwnDisplay)): self._reset_blank(self.service_item.is_capable(ItemCapabilities.ProvidesOwnDisplay)) self.info_label.setText(self.service_item.title) self.slide_list = {} if self.is_live: self.song_menu.menu().clear() if self.display.audio_player: self.display.audio_player.reset() self.set_audio_items_visibility(False) self.audio_pause_item.setChecked(False) # If the current item has background audio if self.service_item.is_capable(ItemCapabilities.HasBackgroundAudio): self.log_debug('Starting to play...') self.display.audio_player.add_to_playlist(self.service_item.background_audio) self.track_menu.clear() for counter in range(len(self.service_item.background_audio)): action = self.track_menu.addAction( os.path.basename(self.service_item.background_audio[counter])) action.setData(counter) action.triggered.connect(self.on_track_triggered) self.display.audio_player.repeat = \ Settings().value(self.main_window.general_settings_section + '/audio repeat list') if Settings().value(self.main_window.general_settings_section + '/audio start paused'): self.audio_pause_item.setChecked(True) self.display.audio_player.pause() else: self.display.audio_player.play() self.set_audio_items_visibility(True) row = 0 width = self.main_window.control_splitter.sizes()[self.split] for frame_number, frame in enumerate(self.service_item.get_frames()): if self.service_item.is_text(): if frame['verseTag']: # These tags are already translated. verse_def = frame['verseTag'] verse_def = '%s%s' % (verse_def[0], verse_def[1:]) two_line_def = '%s\n%s' % (verse_def[0], verse_def[1:]) row = two_line_def if verse_def not in self.slide_list: self.slide_list[verse_def] = frame_number if self.is_live: self.song_menu.menu().addAction(verse_def, self.on_song_bar_handler) else: row += 1 self.slide_list[str(row)] = row - 1 else: row += 1 self.slide_list[str(row)] = row - 1 # If current slide set background to image if not self.service_item.is_command() and frame_number == slide_no: self.service_item.bg_image_bytes = \ self.image_manager.get_image_bytes(frame['path'], ImageSource.ImagePlugin) self.preview_widget.replace_service_item(self.service_item, width, slide_no) self.enable_tool_bar(self.service_item) # Pass to display for viewing. # Postpone image build, we need to do this later to avoid the theme # flashing on the screen if not self.service_item.is_image(): self.display.build_html(self.service_item) if self.service_item.is_media(): self.on_media_start(self.service_item) self.slide_selected(True) if self.service_item.from_service: self.preview_widget.setFocus() if old_item: # Close the old item after the new one is opened # This avoids the service theme/desktop flashing on screen # However opening a new item of the same type will automatically # close the previous, so make sure we don't close the new one. if old_item.is_command() and not self.service_item.is_command() or \ old_item.is_command() and not old_item.is_media() and self.service_item.is_media(): Registry().execute('%s_stop' % old_item.name.lower(), [old_item, self.is_live]) if old_item.is_media() and not self.service_item.is_media(): self.on_media_close() Registry().execute('slidecontroller_%s_started' % self.type_prefix, [self.service_item]) def on_slide_selected_index(self, message): """ Go to the requested slide :param message: remote message to be processed. """ index = int(message[0]) if not self.service_item: return if self.service_item.is_command(): Registry().execute('%s_slide' % self.service_item.name.lower(), [self.service_item, self.is_live, index]) self.update_preview() self.selected_row = index else: self.preview_widget.change_slide(index) self.slide_selected() def main_display_set_background(self): """ Allow the main display to blank the main display at startup time """ display_type = Settings().value(self.main_window.general_settings_section + '/screen blank') if self.screens.which_screen(self.window()) != self.screens.which_screen(self.display): # Order done to handle initial conversion if display_type == 'themed': self.on_theme_display(True) elif display_type == 'hidden': self.on_hide_display(True) elif display_type == 'blanked': self.on_blank_display(True) else: Registry().execute('live_display_show') else: self.live_escape() def on_slide_blank(self): """ Handle the slidecontroller blank event """ self.on_blank_display(True) def on_slide_unblank(self): """ Handle the slidecontroller unblank event """ self.on_blank_display(False) def on_blank_display(self, checked=None): """ Handle the blank screen button actions :param checked: the new state of the of the widget """ if checked is None: checked = self.blank_screen.isChecked() self.log_debug('on_blank_display %s' % checked) self.hide_menu.setDefaultAction(self.blank_screen) self.blank_screen.setChecked(checked) self.theme_screen.setChecked(False) self.desktop_screen.setChecked(False) if checked: Settings().setValue(self.main_window.general_settings_section + '/screen blank', 'blanked') else: Settings().remove(self.main_window.general_settings_section + '/screen blank') self.blank_plugin() self.update_preview() self.on_toggle_loop() def on_theme_display(self, checked=None): """ Handle the Theme screen button :param checked: the new state of the of the widget """ if checked is None: checked = self.theme_screen.isChecked() self.log_debug('on_theme_display %s' % checked) self.hide_menu.setDefaultAction(self.theme_screen) self.blank_screen.setChecked(False) self.theme_screen.setChecked(checked) self.desktop_screen.setChecked(False) if checked: Settings().setValue(self.main_window.general_settings_section + '/screen blank', 'themed') else: Settings().remove(self.main_window.general_settings_section + '/screen blank') self.blank_plugin() self.update_preview() self.on_toggle_loop() def on_hide_display(self, checked=None): """ Handle the Hide screen button :param checked: the new state of the of the widget """ if checked is None: checked = self.desktop_screen.isChecked() self.log_debug('on_hide_display %s' % checked) self.hide_menu.setDefaultAction(self.desktop_screen) self.blank_screen.setChecked(False) self.theme_screen.setChecked(False) self.desktop_screen.setChecked(checked) if checked: Settings().setValue(self.main_window.general_settings_section + '/screen blank', 'hidden') else: Settings().remove(self.main_window.general_settings_section + '/screen blank') self.hide_plugin(checked) self.update_preview() self.on_toggle_loop() def blank_plugin(self): """ Blank/Hide the display screen within a plugin if required. """ hide_mode = self.hide_mode() self.log_debug('blank_plugin %s ' % hide_mode) if self.service_item is not None: if hide_mode: if not self.service_item.is_command(): Registry().execute('live_display_hide', hide_mode) Registry().execute('%s_blank' % self.service_item.name.lower(), [self.service_item, self.is_live, hide_mode]) else: if not self.service_item.is_command(): Registry().execute('live_display_show') Registry().execute('%s_unblank' % self.service_item.name.lower(), [self.service_item, self.is_live]) else: if hide_mode: Registry().execute('live_display_hide', hide_mode) else: Registry().execute('live_display_show') def hide_plugin(self, hide): """ Tell the plugin to hide the display screen. """ self.log_debug('hide_plugin %s ' % hide) if self.service_item is not None: if hide: Registry().execute('live_display_hide', HideMode.Screen) Registry().execute('%s_hide' % self.service_item.name.lower(), [self.service_item, self.is_live]) else: if not self.service_item.is_command(): Registry().execute('live_display_show') Registry().execute('%s_unblank' % self.service_item.name.lower(), [self.service_item, self.is_live]) else: if hide: Registry().execute('live_display_hide', HideMode.Screen) else: Registry().execute('live_display_show') def on_slide_selected(self, field=None): """ Slide selected in controller Note for some reason a dummy field is required. Nothing is passed! """ self.slide_selected() def slide_selected(self, start=False): """ Generate the preview when you click on a slide. If this is the Live Controller also display on the screen :param start: """ # Only one thread should be in here at the time. If already locked just skip, since the update will be # done by the thread holding the lock. If it is a "start" slide, we must wait for the lock, but only for 0.2 # seconds, since we don't want to cause a deadlock timeout = 0.2 if start else -1 if not self.slide_selected_lock.acquire(start, timeout): if start: self.log_debug('Could not get lock in slide_selected after waiting %f, skip to avoid deadlock.' % timeout) return row = self.preview_widget.current_slide_number() old_selected_row = self.selected_row self.selected_row = 0 if -1 < row < self.preview_widget.slide_count(): if self.service_item.is_command(): if self.is_live and not start: Registry().execute('%s_slide' % self.service_item.name.lower(), [self.service_item, self.is_live, row]) else: to_display = self.service_item.get_rendered_frame(row) if self.service_item.is_text(): self.display.text(to_display, row != old_selected_row) else: if start: self.display.build_html(self.service_item, to_display) else: self.display.image(to_display) # reset the store used to display first image self.service_item.bg_image_bytes = None self.selected_row = row self.update_preview() self.preview_widget.change_slide(row) self.display.setFocus() # Release lock self.slide_selected_lock.release() def on_slide_change(self, row): """ The slide has been changed. Update the slidecontroller accordingly :param row: Row to be selected """ self.preview_widget.change_slide(row) self.update_preview() self.selected_row = row def update_preview(self): """ This updates the preview frame, for example after changing a slide or using *Blank to Theme*. """ self.log_debug('update_preview %s ' % self.screens.current['primary']) if self.service_item and self.service_item.is_capable(ItemCapabilities.ProvidesOwnDisplay): # Grab now, but try again in a couple of seconds if slide change is slow QtCore.QTimer.singleShot(500, self.grab_maindisplay) QtCore.QTimer.singleShot(2500, self.grab_maindisplay) else: self.slide_image = self.display.preview() self.slide_image.setDevicePixelRatio(self.main_window.devicePixelRatio()) self.slide_preview.setPixmap(self.slide_image) self.slide_count += 1 def grab_maindisplay(self): """ Creates an image of the current screen and updates the preview frame. """ win_id = QtWidgets.QApplication.desktop().winId() screen = QtWidgets.QApplication.primaryScreen() rect = self.screens.current['size'] win_image = screen.grabWindow(win_id, rect.x(), rect.y(), rect.width(), rect.height()) win_image.setDevicePixelRatio(self.slide_preview.devicePixelRatio()) self.slide_preview.setPixmap(win_image) self.slide_image = win_image def on_slide_selected_next_action(self, checked): """ Wrapper function from create_action so we can throw away the incorrect parameter :param checked: the new state of the of the widget """ self.on_slide_selected_next() def on_slide_selected_next(self, wrap=None): """ Go to the next slide. :param wrap: Are we wrapping round the service item """ if not self.service_item: return if self.service_item.is_command(): Registry().execute('%s_next' % self.service_item.name.lower(), [self.service_item, self.is_live]) if self.is_live: self.update_preview() else: row = self.preview_widget.current_slide_number() + 1 if row == self.preview_widget.slide_count(): if wrap is None: if self.slide_limits == SlideLimits.Wrap: row = 0 elif self.is_live and self.slide_limits == SlideLimits.Next: self.service_next() return else: row = self.preview_widget.slide_count() - 1 elif wrap: row = 0 else: row = self.preview_widget.slide_count() - 1 self.preview_widget.change_slide(row) self.slide_selected() def on_slide_selected_previous(self, field=None): """ Go to the previous slide. """ if not self.service_item: return if self.service_item.is_command(): Registry().execute('%s_previous' % self.service_item.name.lower(), [self.service_item, self.is_live]) if self.is_live: self.update_preview() else: row = self.preview_widget.current_slide_number() - 1 if row == -1: if self.slide_limits == SlideLimits.Wrap: row = self.preview_widget.slide_count() - 1 elif self.is_live and self.slide_limits == SlideLimits.Next: self.keypress_queue.append(ServiceItemAction.PreviousLastSlide) self._process_queue() return else: row = 0 self.preview_widget.change_slide(row) self.slide_selected() def on_toggle_loop(self): """ Toggles the loop state. """ hide_mode = self.hide_mode() if hide_mode is None and (self.play_slides_loop.isChecked() or self.play_slides_once.isChecked()): self.on_start_loop() else: self.on_stop_loop() def on_start_loop(self): """ Start the timer loop running and store the timer id """ if self.preview_widget.slide_count() > 1: self.timer_id = self.startTimer(int(self.delay_spin_box.value()) * 1000) def on_stop_loop(self): """ Stop the timer loop running """ if self.timer_id: self.killTimer(self.timer_id) self.timer_id = 0 def on_play_slides_loop(self, checked=None): """ Start or stop 'Play Slides in Loop' :param checked: is the check box checked. """ if checked is None: checked = self.play_slides_loop.isChecked() else: self.play_slides_loop.setChecked(checked) self.log_debug('on_play_slides_loop %s' % checked) if checked: self.play_slides_loop.setIcon(build_icon(':/media/media_stop.png')) self.play_slides_loop.setText(UiStrings().StopPlaySlidesInLoop) self.play_slides_once.setIcon(build_icon(':/media/media_time.png')) self.play_slides_once.setText(UiStrings().PlaySlidesToEnd) self.play_slides_menu.setDefaultAction(self.play_slides_loop) self.play_slides_once.setChecked(False) else: self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) self.play_slides_loop.setText(UiStrings().PlaySlidesInLoop) self.on_toggle_loop() def on_play_slides_once(self, checked=None): """ Start or stop 'Play Slides to End' :param checked: is the check box checked. """ if checked is None: checked = self.play_slides_once.isChecked() else: self.play_slides_once.setChecked(checked) self.log_debug('on_play_slides_once %s' % checked) if checked: self.play_slides_once.setIcon(build_icon(':/media/media_stop.png')) self.play_slides_once.setText(UiStrings().StopPlaySlidesToEnd) self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) self.play_slides_loop.setText(UiStrings().PlaySlidesInLoop) self.play_slides_menu.setDefaultAction(self.play_slides_once) self.play_slides_loop.setChecked(False) else: self.play_slides_once.setIcon(build_icon(':/media/media_time')) self.play_slides_once.setText(UiStrings().PlaySlidesToEnd) self.on_toggle_loop() def set_audio_items_visibility(self, visible): """ Set the visibility of the audio stuff """ self.toolbar.set_widget_visible(AUDIO_LIST, visible) def set_audio_pause_clicked(self, checked): """ Pause the audio player :param checked: is the check box checked. """ if not self.audio_pause_item.isVisible(): return if checked: self.display.audio_player.pause() else: self.display.audio_player.play() def timerEvent(self, event): """ If the timer event is for this window select next slide :param event: The triggered event """ if event.timerId() == self.timer_id: self.on_slide_selected_next(self.play_slides_loop.isChecked()) def on_edit_song(self, field=None): """ From the preview display requires the service Item to be editied """ self.song_edit = True new_item = Registry().get(self.service_item.name).on_remote_edit(self.service_item.edit_id, True) if new_item: self.add_service_item(new_item) def on_preview_add_to_service(self, field=None): """ From the preview display request the Item to be added to service """ if self.service_item: self.service_manager.add_service_item(self.service_item) def on_preview_double_click(self, field=None): """ Triggered when a preview slide item is doubleclicked """ if self.service_item: if Settings().value('advanced/double click live'): # Live and Preview have issues if we have video or presentations # playing in both at the same time. if self.service_item.is_command(): Registry().execute('%s_stop' % self.service_item.name.lower(), [self.service_item, self.is_live]) if self.service_item.is_media(): self.on_media_close() self.on_go_live() else: self.on_preview_add_to_service() def on_go_live(self, field=None): """ If preview copy slide item to live controller from Preview Controller """ row = self.preview_widget.current_slide_number() if -1 < row < self.preview_widget.slide_count(): if self.service_item.from_service: self.service_manager.preview_live(self.service_item.unique_identifier, row) else: self.live_controller.add_service_manager_item(self.service_item, row) self.live_controller.preview_widget.setFocus() def on_media_start(self, item): """ Respond to the arrival of a media service item :param item: The service item to be processed """ if self.is_live and self.hide_mode() == HideMode.Theme: self.media_controller.video(self.controller_type, item, HideMode.Blank) self.on_blank_display(True) else: self.media_controller.video(self.controller_type, item, self.hide_mode()) if not self.is_live: self.preview_display.show() self.slide_preview.hide() def on_media_close(self): """ Respond to a request to close the Video """ self.media_controller.media_reset(self) self.preview_display.hide() self.slide_preview.show() def _reset_blank(self, no_theme): """ Used by command items which provide their own displays to reset the screen hide attributes :param no_theme: Does the new item support theme-blanking. """ hide_mode = self.hide_mode() if hide_mode == HideMode.Blank: self.on_blank_display(True) elif hide_mode == HideMode.Theme: # The new item-type doesn't support theme-blanking, so 'switch' to normal blanking. if no_theme: self.on_blank_display(True) else: self.on_theme_display(True) elif hide_mode == HideMode.Screen: self.on_hide_display(True) else: self.hide_plugin(False) def hide_mode(self): """ Determine what the hide mode should be according to the blank button """ if not self.is_live: return None elif self.blank_screen.isChecked(): return HideMode.Blank elif self.theme_screen.isChecked(): return HideMode.Theme elif self.desktop_screen.isChecked(): return HideMode.Screen else: return None def on_next_track_clicked(self): """ Go to the next track when next is clicked """ self.display.audio_player.next() def on_audio_time_remaining(self, time): """ Update how much time is remaining :param time: the time remaining """ seconds = (self.display.audio_player.player.duration() - self.display.audio_player.player.position()) // 1000 minutes = seconds // 60 seconds %= 60 self.audio_time_label.setText(' %02d:%02d ' % (minutes, seconds)) def on_track_triggered(self, field=None): """ Start playing a track """ action = self.sender() self.display.audio_player.go_to(action.data()) class PreviewController(RegistryMixin, OpenLPMixin, SlideController): """ Set up the Preview Controller. """ slidecontroller_preview_set = QtCore.pyqtSignal(list) slidecontroller_preview_next = QtCore.pyqtSignal() slidecontroller_preview_previous = QtCore.pyqtSignal() def __init__(self, parent): """ Set up the base Controller as a preview. """ super(PreviewController, self).__init__(parent) self.split = 0 self.type_prefix = 'preview' self.category = 'Preview Toolbar' def bootstrap_post_set_up(self): """ process the bootstrap post setup request """ self.post_set_up() class LiveController(RegistryMixin, OpenLPMixin, SlideController): """ Set up the Live Controller. """ slidecontroller_live_set = QtCore.pyqtSignal(list) slidecontroller_live_next = QtCore.pyqtSignal() slidecontroller_live_previous = QtCore.pyqtSignal() slidecontroller_toggle_display = QtCore.pyqtSignal(str) def __init__(self, parent): """ Set up the base Controller as a live. """ super(LiveController, self).__init__(parent) self.is_live = True self.split = 1 self.type_prefix = 'live' self.keypress_queue = deque() self.category = UiStrings().LiveToolbar ActionList.get_instance().add_category(str(self.category), CategoryOrder.standard_toolbar) def bootstrap_post_set_up(self): """ process the bootstrap post setup request """ self.post_set_up() OpenLP-2.4/openlp/core/ui/servicenoteform.py0000644000175000017500000000631212657640340020201 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.core.ui.servicenoteform` module contains the `ServiceNoteForm` class. """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, RegistryProperties, translate from openlp.core.lib import SpellTextEdit from openlp.core.lib.ui import create_button_box class ServiceNoteForm(QtWidgets.QDialog, RegistryProperties): """ This is the form that is used to edit the verses of the song. """ def __init__(self): """ Constructor """ super(ServiceNoteForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi() self.retranslateUi() def exec(self): """ Execute the form and return the result. """ self.text_edit.setFocus() return QtWidgets.QDialog.exec(self) def setupUi(self): """ Set up the UI of the dialog """ self.setObjectName('serviceNoteEdit') self.dialog_layout = QtWidgets.QVBoxLayout(self) self.dialog_layout.setContentsMargins(8, 8, 8, 8) self.dialog_layout.setSpacing(8) self.dialog_layout.setObjectName('vertical_layout') self.text_edit = SpellTextEdit(self, False) self.text_edit.setObjectName('textEdit') self.dialog_layout.addWidget(self.text_edit) self.button_box = create_button_box(self, 'button_box', ['cancel', 'save']) self.dialog_layout.addWidget(self.button_box) def retranslateUi(self): """ Translate the UI on the fly """ self.setWindowTitle(translate('OpenLP.ServiceNoteForm', 'Service Item Notes')) OpenLP-2.4/openlp/core/ui/mainwindow.py0000644000175000017500000023302612657640340017147 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This is the main window, where all the action happens. """ import logging import os import sys import shutil from distutils import dir_util from distutils.errors import DistutilsFileError from tempfile import gettempdir import time from datetime import datetime from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, AppLocation, Settings, check_directory_exists, translate, \ is_win, is_macosx from openlp.core.lib import Renderer, OpenLPDockWidget, PluginManager, ImageManager, PluginStatus, ScreenList, \ build_icon from openlp.core.lib.ui import UiStrings, create_action from openlp.core.ui import AboutForm, SettingsForm, ServiceManager, ThemeManager, LiveController, PluginForm, \ MediaDockManager, ShortcutListForm, FormattingTagForm, PreviewController from openlp.core.ui.media import MediaController from openlp.core.utils import LanguageManager, add_actions, get_application_version from openlp.core.utils.actions import ActionList, CategoryOrder from openlp.core.ui.firsttimeform import FirstTimeForm from openlp.core.ui.projector.manager import ProjectorManager from openlp.core.ui.printserviceform import PrintServiceForm log = logging.getLogger(__name__) MEDIA_MANAGER_STYLE = """ QToolBox { padding-bottom: 2px; } QToolBox::tab { background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 palette(button), stop: 1.0 palette(mid)); border: 1px solid palette(mid); border-radius: 3px; } QToolBox::tab:selected { background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 palette(light), stop: 1.0 palette(button)); border: 1px solid palette(mid); font-weight: bold; } """ PROGRESSBAR_STYLE = """ QProgressBar{ height: 10px; } """ class Ui_MainWindow(object): """ This is the UI part of the main window. """ def setupUi(self, main_window): """ Set up the user interface """ main_window.setObjectName('MainWindow') main_window.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) main_window.setDockNestingEnabled(True) if is_macosx(): main_window.setDocumentMode(True) # Set up the main container, which contains all the other form widgets. self.main_content = QtWidgets.QWidget(main_window) self.main_content.setObjectName('main_content') self.main_content_layout = QtWidgets.QHBoxLayout(self.main_content) self.main_content_layout.setSpacing(0) self.main_content_layout.setContentsMargins(0, 0, 0, 0) self.main_content_layout.setObjectName('main_content_layout') main_window.setCentralWidget(self.main_content) self.control_splitter = QtWidgets.QSplitter(self.main_content) self.control_splitter.setOrientation(QtCore.Qt.Horizontal) self.control_splitter.setObjectName('control_splitter') self.main_content_layout.addWidget(self.control_splitter) # Create slide controllers PreviewController(self) LiveController(self) preview_visible = Settings().value('user interface/preview panel') live_visible = Settings().value('user interface/live panel') panel_locked = Settings().value('user interface/lock panel') # Create menu self.menu_bar = QtWidgets.QMenuBar(main_window) self.menu_bar.setObjectName('menu_bar') self.file_menu = QtWidgets.QMenu(self.menu_bar) self.file_menu.setObjectName('fileMenu') self.recent_files_menu = QtWidgets.QMenu(self.file_menu) self.recent_files_menu.setObjectName('recentFilesMenu') self.file_import_menu = QtWidgets.QMenu(self.file_menu) if not is_macosx(): self.file_import_menu.setIcon(build_icon(u':/general/general_import.png')) self.file_import_menu.setObjectName('file_import_menu') self.file_export_menu = QtWidgets.QMenu(self.file_menu) if not is_macosx(): self.file_export_menu.setIcon(build_icon(u':/general/general_export.png')) self.file_export_menu.setObjectName('file_export_menu') # View Menu self.view_menu = QtWidgets.QMenu(self.menu_bar) self.view_menu.setObjectName('viewMenu') self.view_mode_menu = QtWidgets.QMenu(self.view_menu) self.view_mode_menu.setObjectName('viewModeMenu') # Tools Menu self.tools_menu = QtWidgets.QMenu(self.menu_bar) self.tools_menu.setObjectName('tools_menu') # Settings Menu self.settings_menu = QtWidgets.QMenu(self.menu_bar) self.settings_menu.setObjectName('settingsMenu') self.settings_language_menu = QtWidgets.QMenu(self.settings_menu) self.settings_language_menu.setObjectName('settingsLanguageMenu') # Help Menu self.help_menu = QtWidgets.QMenu(self.menu_bar) self.help_menu.setObjectName('helpMenu') main_window.setMenuBar(self.menu_bar) self.status_bar = QtWidgets.QStatusBar(main_window) self.status_bar.setObjectName('status_bar') main_window.setStatusBar(self.status_bar) self.load_progress_bar = QtWidgets.QProgressBar(self.status_bar) self.load_progress_bar.setObjectName('load_progress_bar') self.status_bar.addPermanentWidget(self.load_progress_bar) self.load_progress_bar.hide() self.load_progress_bar.setValue(0) self.load_progress_bar.setStyleSheet(PROGRESSBAR_STYLE) self.default_theme_label = QtWidgets.QLabel(self.status_bar) self.default_theme_label.setObjectName('default_theme_label') self.status_bar.addPermanentWidget(self.default_theme_label) # Create the MediaManager self.media_manager_dock = OpenLPDockWidget(main_window, 'media_manager_dock', ':/system/system_mediamanager.png') self.media_manager_dock.setStyleSheet(MEDIA_MANAGER_STYLE) # Create the media toolbox self.media_tool_box = QtWidgets.QToolBox(self.media_manager_dock) self.media_tool_box.setObjectName('media_tool_box') self.media_manager_dock.setWidget(self.media_tool_box) main_window.addDockWidget(QtCore.Qt.LeftDockWidgetArea, self.media_manager_dock) # Create the service manager self.service_manager_dock = OpenLPDockWidget(main_window, 'service_manager_dock', ':/system/system_servicemanager.png') self.service_manager_contents = ServiceManager(self.service_manager_dock) self.service_manager_dock.setWidget(self.service_manager_contents) main_window.addDockWidget(QtCore.Qt.RightDockWidgetArea, self.service_manager_dock) # Create the theme manager self.theme_manager_dock = OpenLPDockWidget(main_window, 'theme_manager_dock', ':/system/system_thememanager.png') self.theme_manager_contents = ThemeManager(self.theme_manager_dock) self.theme_manager_contents.setObjectName('theme_manager_contents') self.theme_manager_dock.setWidget(self.theme_manager_contents) main_window.addDockWidget(QtCore.Qt.RightDockWidgetArea, self.theme_manager_dock) # Create the projector manager self.projector_manager_dock = OpenLPDockWidget(parent=main_window, name='projector_manager_dock', icon=':/projector/projector_manager.png') self.projector_manager_contents = ProjectorManager(self.projector_manager_dock) self.projector_manager_contents.setObjectName('projector_manager_contents') self.projector_manager_dock.setWidget(self.projector_manager_contents) main_window.addDockWidget(QtCore.Qt.RightDockWidgetArea, self.projector_manager_dock) # Create the menu items action_list = ActionList.get_instance() action_list.add_category(UiStrings().File, CategoryOrder.standard_menu) self.file_new_item = create_action(main_window, 'fileNewItem', icon=':/general/general_new.png', can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_new_service_clicked) self.file_open_item = create_action(main_window, 'fileOpenItem', icon=':/general/general_open.png', can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_load_service_clicked) self.file_save_item = create_action(main_window, 'fileSaveItem', icon=':/general/general_save.png', can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.save_file) self.file_save_as_item = create_action(main_window, 'fileSaveAsItem', can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.save_file_as) self.print_service_order_item = create_action(main_window, 'printServiceItem', can_shortcuts=True, category=UiStrings().File, triggers=lambda x: PrintServiceForm().exec()) self.file_exit_item = create_action(main_window, 'fileExitItem', icon=':/system/system_exit.png', can_shortcuts=True, category=UiStrings().File, triggers=main_window.close) # Give QT Extra Hint that this is the Exit Menu Item self.file_exit_item.setMenuRole(QtWidgets.QAction.QuitRole) action_list.add_category(UiStrings().Import, CategoryOrder.standard_menu) self.import_theme_item = create_action(main_window, 'importThemeItem', category=UiStrings().Import, can_shortcuts=True) self.import_language_item = create_action(main_window, 'importLanguageItem') action_list.add_category(UiStrings().Export, CategoryOrder.standard_menu) self.export_theme_item = create_action(main_window, 'exportThemeItem', category=UiStrings().Export, can_shortcuts=True) self.export_language_item = create_action(main_window, 'exportLanguageItem') action_list.add_category(UiStrings().View, CategoryOrder.standard_menu) # Projector items self.import_projector_item = create_action(main_window, 'importProjectorItem', category=UiStrings().Import, can_shortcuts=False) action_list.add_category(UiStrings().Import, CategoryOrder.standard_menu) self.view_projector_manager_item = create_action(main_window, 'viewProjectorManagerItem', icon=':/projector/projector_manager.png', checked=self.projector_manager_dock.isVisible(), can_shortcuts=True, category=UiStrings().View, triggers=self.toggle_projector_manager) self.view_media_manager_item = create_action(main_window, 'viewMediaManagerItem', icon=':/system/system_mediamanager.png', checked=self.media_manager_dock.isVisible(), can_shortcuts=True, category=UiStrings().View, triggers=self.toggle_media_manager) self.view_theme_manager_item = create_action(main_window, 'viewThemeManagerItem', can_shortcuts=True, icon=':/system/system_thememanager.png', checked=self.theme_manager_dock.isVisible(), category=UiStrings().View, triggers=self.toggle_theme_manager) self.view_service_manager_item = create_action(main_window, 'viewServiceManagerItem', can_shortcuts=True, icon=':/system/system_servicemanager.png', checked=self.service_manager_dock.isVisible(), category=UiStrings().View, triggers=self.toggle_service_manager) self.view_preview_panel = create_action(main_window, 'viewPreviewPanel', can_shortcuts=True, checked=preview_visible, category=UiStrings().View, triggers=self.set_preview_panel_visibility) self.view_live_panel = create_action(main_window, 'viewLivePanel', can_shortcuts=True, checked=live_visible, category=UiStrings().View, triggers=self.set_live_panel_visibility) self.lock_panel = create_action(main_window, 'lockPanel', can_shortcuts=True, checked=panel_locked, category=UiStrings().View, triggers=self.set_lock_panel) action_list.add_category(UiStrings().ViewMode, CategoryOrder.standard_menu) self.mode_default_item = create_action( main_window, 'modeDefaultItem', checked=False, category=UiStrings().ViewMode, can_shortcuts=True) self.mode_setup_item = create_action(main_window, 'modeSetupItem', checked=False, category=UiStrings().ViewMode, can_shortcuts=True) self.mode_live_item = create_action(main_window, 'modeLiveItem', checked=True, category=UiStrings().ViewMode, can_shortcuts=True) self.mode_group = QtWidgets.QActionGroup(main_window) self.mode_group.addAction(self.mode_default_item) self.mode_group.addAction(self.mode_setup_item) self.mode_group.addAction(self.mode_live_item) self.mode_default_item.setChecked(True) action_list.add_category(UiStrings().Tools, CategoryOrder.standard_menu) self.tools_add_tool_item = create_action(main_window, 'toolsAddToolItem', icon=':/tools/tools_add.png', category=UiStrings().Tools, can_shortcuts=True) self.tools_open_data_folder = create_action(main_window, 'toolsOpenDataFolder', icon=':/general/general_open.png', category=UiStrings().Tools, can_shortcuts=True) self.tools_first_time_wizard = create_action(main_window, 'toolsFirstTimeWizard', icon=':/general/general_revert.png', category=UiStrings().Tools, can_shortcuts=True) self.update_theme_images = create_action(main_window, 'updateThemeImages', category=UiStrings().Tools, can_shortcuts=True) action_list.add_category(UiStrings().Settings, CategoryOrder.standard_menu) self.settings_plugin_list_item = create_action(main_window, 'settingsPluginListItem', icon=':/system/settings_plugin_list.png', can_shortcuts=True, category=UiStrings().Settings, triggers=self.on_plugin_item_clicked) # i18n Language Items self.auto_language_item = create_action(main_window, 'autoLanguageItem', checked=LanguageManager.auto_language) self.language_group = QtWidgets.QActionGroup(main_window) self.language_group.setExclusive(True) self.language_group.setObjectName('languageGroup') add_actions(self.language_group, [self.auto_language_item]) qm_list = LanguageManager.get_qm_list() saved_language = LanguageManager.get_language() for key in sorted(qm_list.keys()): language_item = create_action(main_window, key, checked=qm_list[key] == saved_language) add_actions(self.language_group, [language_item]) self.settings_shortcuts_item = create_action(main_window, 'settingsShortcutsItem', icon=':/system/system_configure_shortcuts.png', category=UiStrings().Settings, can_shortcuts=True) # Formatting Tags were also known as display tags. self.formatting_tag_item = create_action(main_window, 'displayTagItem', icon=':/system/tag_editor.png', category=UiStrings().Settings, can_shortcuts=True) self.settings_configure_item = create_action(main_window, 'settingsConfigureItem', icon=':/system/system_settings.png', can_shortcuts=True, category=UiStrings().Settings) # Give QT Extra Hint that this is the Preferences Menu Item self.settings_configure_item.setMenuRole(QtWidgets.QAction.PreferencesRole) self.settings_import_item = create_action(main_window, 'settingsImportItem', category=UiStrings().Import, can_shortcuts=True) self.settings_export_item = create_action(main_window, 'settingsExportItem', category=UiStrings().Export, can_shortcuts=True) action_list.add_category(UiStrings().Help, CategoryOrder.standard_menu) self.about_item = create_action(main_window, 'aboutItem', icon=':/system/system_about.png', can_shortcuts=True, category=UiStrings().Help, triggers=self.on_about_item_clicked) # Give QT Extra Hint that this is an About Menu Item self.about_item.setMenuRole(QtWidgets.QAction.AboutRole) if is_win(): self.local_help_file = os.path.join(AppLocation.get_directory(AppLocation.AppDir), 'OpenLP.chm') self.offline_help_item = create_action(main_window, 'offlineHelpItem', icon=':/system/system_help_contents.png', can_shortcuts=True, category=UiStrings().Help, triggers=self.on_offline_help_clicked) elif is_macosx(): self.local_help_file = os.path.join(AppLocation.get_directory(AppLocation.AppDir), '..', 'Resources', 'OpenLP.help') self.offline_help_item = create_action(main_window, 'offlineHelpItem', icon=':/system/system_help_contents.png', can_shortcuts=True, category=UiStrings().Help, triggers=self.on_offline_help_clicked) self.on_line_help_item = create_action(main_window, 'onlineHelpItem', icon=':/system/system_online_help.png', can_shortcuts=True, category=UiStrings().Help, triggers=self.on_online_help_clicked) self.web_site_item = create_action(main_window, 'webSiteItem', can_shortcuts=True, category=UiStrings().Help) # Shortcuts not connected to buttons or menu entries. self.search_shortcut_action = create_action(main_window, 'searchShortcut', can_shortcuts=True, category=translate('OpenLP.MainWindow', 'General'), triggers=self.on_search_shortcut_triggered) ''' Leave until the import projector options are finished add_actions(self.file_import_menu, (self.settings_import_item, self.import_theme_item, self.import_projector_item, self.import_language_item, None)) ''' add_actions(self.file_import_menu, (self.settings_import_item, self.import_theme_item, self.import_language_item, None)) add_actions(self.file_export_menu, (self.settings_export_item, self.export_theme_item, self.export_language_item, None)) add_actions(self.file_menu, (self.file_new_item, self.file_open_item, self.file_save_item, self.file_save_as_item, self.recent_files_menu.menuAction(), None, self.file_import_menu.menuAction(), self.file_export_menu.menuAction(), None, self.print_service_order_item, self.file_exit_item)) add_actions(self.view_mode_menu, (self.mode_default_item, self.mode_setup_item, self.mode_live_item)) add_actions(self.view_menu, (self.view_mode_menu.menuAction(), None, self.view_media_manager_item, self.view_projector_manager_item, self.view_service_manager_item, self.view_theme_manager_item, None, self.view_preview_panel, self.view_live_panel, None, self.lock_panel)) # i18n add Language Actions add_actions(self.settings_language_menu, (self.auto_language_item, None)) add_actions(self.settings_language_menu, self.language_group.actions()) # Qt on OS X looks for keywords in the menu items title to determine which menu items get added to the main # menu. If we are running on Mac OS X the menu items whose title contains those keywords but don't belong in the # main menu need to be marked as such with QAction.NoRole. if is_macosx(): self.settings_shortcuts_item.setMenuRole(QtWidgets.QAction.NoRole) self.formatting_tag_item.setMenuRole(QtWidgets.QAction.NoRole) add_actions(self.settings_menu, (self.settings_plugin_list_item, self.settings_language_menu.menuAction(), None, self.formatting_tag_item, self.settings_shortcuts_item, self.settings_configure_item)) add_actions(self.tools_menu, (self.tools_add_tool_item, None)) add_actions(self.tools_menu, (self.tools_open_data_folder, None)) add_actions(self.tools_menu, (self.tools_first_time_wizard, None)) add_actions(self.tools_menu, [self.update_theme_images]) if (is_win() or is_macosx()) and (hasattr(sys, 'frozen') and sys.frozen == 1): add_actions(self.help_menu, (self.offline_help_item, self.on_line_help_item, None, self.web_site_item, self.about_item)) else: add_actions(self.help_menu, (self.on_line_help_item, None, self.web_site_item, self.about_item)) add_actions(self.menu_bar, (self.file_menu.menuAction(), self.view_menu.menuAction(), self.tools_menu.menuAction(), self.settings_menu.menuAction(), self.help_menu.menuAction())) add_actions(self, [self.search_shortcut_action]) # Initialise the translation self.retranslateUi(main_window) self.media_tool_box.setCurrentIndex(0) # Connect up some signals and slots self.file_menu.aboutToShow.connect(self.update_recent_files_menu) # Hide the entry, as it does not have any functionality yet. self.tools_add_tool_item.setVisible(False) self.import_language_item.setVisible(False) self.export_language_item.setVisible(False) self.set_lock_panel(panel_locked) self.settings_imported = False def retranslateUi(self, main_window): """ Set up the translation system """ main_window.setWindowTitle(UiStrings().OLPV2x) self.file_menu.setTitle(translate('OpenLP.MainWindow', '&File')) self.file_import_menu.setTitle(translate('OpenLP.MainWindow', '&Import')) self.file_export_menu.setTitle(translate('OpenLP.MainWindow', '&Export')) self.recent_files_menu.setTitle(translate('OpenLP.MainWindow', '&Recent Services')) self.view_menu.setTitle(translate('OpenLP.MainWindow', '&View')) self.view_mode_menu.setTitle(translate('OpenLP.MainWindow', 'M&ode')) self.tools_menu.setTitle(translate('OpenLP.MainWindow', '&Tools')) self.settings_menu.setTitle(translate('OpenLP.MainWindow', '&Settings')) self.settings_language_menu.setTitle(translate('OpenLP.MainWindow', '&Language')) self.help_menu.setTitle(translate('OpenLP.MainWindow', '&Help')) self.media_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Library')) self.service_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Service Manager')) self.theme_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Theme Manager')) self.projector_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Projector Manager')) self.file_new_item.setText(translate('OpenLP.MainWindow', '&New Service')) self.file_new_item.setToolTip(UiStrings().NewService) self.file_new_item.setStatusTip(UiStrings().CreateService) self.file_open_item.setText(translate('OpenLP.MainWindow', '&Open Service')) self.file_open_item.setToolTip(UiStrings().OpenService) self.file_open_item.setStatusTip(translate('OpenLP.MainWindow', 'Open an existing service.')) self.file_save_item.setText(translate('OpenLP.MainWindow', '&Save Service')) self.file_save_item.setToolTip(UiStrings().SaveService) self.file_save_item.setStatusTip(translate('OpenLP.MainWindow', 'Save the current service to disk.')) self.file_save_as_item.setText(translate('OpenLP.MainWindow', 'Save Service &As...')) self.file_save_as_item.setToolTip(translate('OpenLP.MainWindow', 'Save Service As')) self.file_save_as_item.setStatusTip(translate('OpenLP.MainWindow', 'Save the current service under a new name.')) self.print_service_order_item.setText(UiStrings().PrintService) self.print_service_order_item.setStatusTip(translate('OpenLP.MainWindow', 'Print the current service.')) self.file_exit_item.setText(translate('OpenLP.MainWindow', 'E&xit')) self.file_exit_item.setStatusTip(translate('OpenLP.MainWindow', 'Quit OpenLP')) self.import_theme_item.setText(translate('OpenLP.MainWindow', '&Theme')) self.import_language_item.setText(translate('OpenLP.MainWindow', '&Language')) self.export_theme_item.setText(translate('OpenLP.MainWindow', '&Theme')) self.export_language_item.setText(translate('OpenLP.MainWindow', '&Language')) self.settings_shortcuts_item.setText(translate('OpenLP.MainWindow', 'Configure &Shortcuts...')) self.formatting_tag_item.setText(translate('OpenLP.MainWindow', 'Configure &Formatting Tags...')) self.settings_configure_item.setText(translate('OpenLP.MainWindow', '&Configure OpenLP...')) self.settings_export_item.setStatusTip( translate('OpenLP.MainWindow', 'Export OpenLP settings to a specified *.config file')) self.settings_export_item.setText(translate('OpenLP.MainWindow', 'Settings')) self.settings_import_item.setStatusTip( translate('OpenLP.MainWindow', 'Import OpenLP settings from a specified *.config file previously ' 'exported on this or another machine')) self.settings_import_item.setText(translate('OpenLP.MainWindow', 'Settings')) self.view_projector_manager_item.setText(translate('OPenLP.MainWindow', '&Projector Manager')) self.view_projector_manager_item.setToolTip(translate('OpenLP.MainWindow', 'Toggle Projector Manager')) self.view_projector_manager_item.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the Projector Manager')) self.view_media_manager_item.setText(translate('OpenLP.MainWindow', '&Media Manager')) self.view_media_manager_item.setToolTip(translate('OpenLP.MainWindow', 'Toggle Media Manager')) self.view_media_manager_item.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the media manager.')) self.view_theme_manager_item.setText(translate('OpenLP.MainWindow', '&Theme Manager')) self.view_theme_manager_item.setToolTip(translate('OpenLP.MainWindow', 'Toggle Theme Manager')) self.view_theme_manager_item.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the theme manager.')) self.view_service_manager_item.setText(translate('OpenLP.MainWindow', '&Service Manager')) self.view_service_manager_item.setToolTip(translate('OpenLP.MainWindow', 'Toggle Service Manager')) self.view_service_manager_item.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the service manager.')) self.view_preview_panel.setText(translate('OpenLP.MainWindow', '&Preview Panel')) self.view_preview_panel.setToolTip(translate('OpenLP.MainWindow', 'Toggle Preview Panel')) self.view_preview_panel.setStatusTip( translate('OpenLP.MainWindow', 'Toggle the visibility of the preview panel.')) self.view_live_panel.setText(translate('OpenLP.MainWindow', '&Live Panel')) self.view_live_panel.setToolTip(translate('OpenLP.MainWindow', 'Toggle Live Panel')) self.lock_panel.setText(translate('OpenLP.MainWindow', 'L&ock Panels')) self.lock_panel.setStatusTip(translate('OpenLP.MainWindow', 'Prevent the panels being moved.')) self.view_live_panel.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the live panel.')) self.settings_plugin_list_item.setText(translate('OpenLP.MainWindow', '&Manage Plugins')) self.settings_plugin_list_item.setStatusTip(translate('OpenLP.MainWindow', 'List the Plugins')) self.about_item.setText(translate('OpenLP.MainWindow', '&About')) self.about_item.setStatusTip(translate('OpenLP.MainWindow', 'More information about OpenLP')) if is_win() or is_macosx(): self.offline_help_item.setText(translate('OpenLP.MainWindow', '&User Guide')) self.on_line_help_item.setText(translate('OpenLP.MainWindow', '&Online Help')) self.search_shortcut_action.setText(UiStrings().Search) self.search_shortcut_action.setToolTip( translate('OpenLP.MainWindow', 'Jump to the search box of the current active plugin.')) self.web_site_item.setText(translate('OpenLP.MainWindow', '&Web Site')) for item in self.language_group.actions(): item.setText(item.objectName()) item.setStatusTip(translate('OpenLP.MainWindow', 'Set the interface language to %s') % item.objectName()) self.auto_language_item.setText(translate('OpenLP.MainWindow', '&Autodetect')) self.auto_language_item.setStatusTip(translate('OpenLP.MainWindow', 'Use the system language, if available.')) self.tools_add_tool_item.setText(translate('OpenLP.MainWindow', 'Add &Tool...')) self.tools_add_tool_item.setStatusTip(translate('OpenLP.MainWindow', 'Add an application to the list of tools.')) self.tools_open_data_folder.setText(translate('OpenLP.MainWindow', 'Open &Data Folder...')) self.tools_open_data_folder.setStatusTip(translate('OpenLP.MainWindow', 'Open the folder where songs, bibles and other data resides.')) self.tools_first_time_wizard.setText(translate('OpenLP.MainWindow', 'Re-run First Time Wizard')) self.tools_first_time_wizard.setStatusTip(translate('OpenLP.MainWindow', 'Re-run the First Time Wizard, importing songs, Bibles and themes.')) self.update_theme_images.setText(translate('OpenLP.MainWindow', 'Update Theme Images')) self.update_theme_images.setStatusTip(translate('OpenLP.MainWindow', 'Update the preview images for all themes.')) self.mode_default_item.setText(translate('OpenLP.MainWindow', '&Default')) self.mode_default_item.setStatusTip(translate('OpenLP.MainWindow', 'Set the view mode back to the default.')) self.mode_setup_item.setText(translate('OpenLP.MainWindow', '&Setup')) self.mode_setup_item.setStatusTip(translate('OpenLP.MainWindow', 'Set the view mode to Setup.')) self.mode_live_item.setText(translate('OpenLP.MainWindow', '&Live')) self.mode_live_item.setStatusTip(translate('OpenLP.MainWindow', 'Set the view mode to Live.')) class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, RegistryProperties): """ The main window. """ openlp_version_check = QtCore.pyqtSignal(QtCore.QVariant) log.info('MainWindow loaded') def __init__(self): """ This constructor sets up the interface, the various managers, and the plugins. """ super(MainWindow, self).__init__() Registry().register('main_window', self) self.clipboard = self.application.clipboard() self.arguments = ''.join(self.application.args) # Set up settings sections for the main application (not for use by plugins). self.ui_settings_section = 'user interface' self.general_settings_section = 'core' self.advanced_settings_section = 'advanced' self.shortcuts_settings_section = 'shortcuts' self.service_manager_settings_section = 'servicemanager' self.songs_settings_section = 'songs' self.themes_settings_section = 'themes' self.projector_settings_section = 'projector' self.players_settings_section = 'players' self.display_tags_section = 'displayTags' self.header_section = 'SettingsImport' self.recent_files = [] self.timer_id = 0 self.new_data_path = None self.copy_data = False Settings().set_up_default_values() self.about_form = AboutForm(self) MediaController() SettingsForm(self) self.formatting_tag_form = FormattingTagForm(self) self.shortcut_form = ShortcutListForm(self) # Set up the path with plugins PluginManager(self) ImageManager() Renderer() # Set up the interface self.setupUi(self) # Define the media Dock Manager self.media_dock_manager = MediaDockManager(self.media_tool_box) # Load settings after setupUi so default UI sizes are overwritten # Once settings are loaded update the menu with the recent files. self.update_recent_files_menu() self.plugin_form = PluginForm(self) # Set up signals and slots self.media_manager_dock.visibilityChanged.connect(self.view_media_manager_item.setChecked) self.service_manager_dock.visibilityChanged.connect(self.view_service_manager_item.setChecked) self.theme_manager_dock.visibilityChanged.connect(self.view_theme_manager_item.setChecked) self.projector_manager_dock.visibilityChanged.connect(self.view_projector_manager_item.setChecked) self.import_theme_item.triggered.connect(self.theme_manager_contents.on_import_theme) self.export_theme_item.triggered.connect(self.theme_manager_contents.on_export_theme) self.web_site_item.triggered.connect(self.on_help_web_site_clicked) self.tools_open_data_folder.triggered.connect(self.on_tools_open_data_folder_clicked) self.tools_first_time_wizard.triggered.connect(self.on_first_time_wizard_clicked) self.update_theme_images.triggered.connect(self.on_update_theme_images) self.formatting_tag_item.triggered.connect(self.on_formatting_tag_item_clicked) self.settings_configure_item.triggered.connect(self.on_settings_configure_iem_clicked) self.settings_shortcuts_item.triggered.connect(self.on_settings_shortcuts_item_clicked) self.settings_import_item.triggered.connect(self.on_settings_import_item_clicked) self.settings_export_item.triggered.connect(self.on_settings_export_item_clicked) # i18n set signals for languages self.language_group.triggered.connect(LanguageManager.set_language) self.mode_default_item.triggered.connect(self.on_mode_default_item_clicked) self.mode_setup_item.triggered.connect(self.on_mode_setup_item_clicked) self.mode_live_item.triggered.connect(self.on_mode_live_item_clicked) # Media Manager self.media_tool_box.currentChanged.connect(self.on_media_tool_box_changed) self.application.set_busy_cursor() # Simple message boxes Registry().register_function('theme_update_global', self.default_theme_changed) self.openlp_version_check.connect(self.version_notice) Registry().register_function('config_screen_changed', self.screen_changed) Registry().register_function('bootstrap_post_set_up', self.bootstrap_post_set_up) # Reset the cursor self.application.set_normal_cursor() def bootstrap_post_set_up(self): """ process the bootstrap post setup request """ self.preview_controller.panel.setVisible(Settings().value('user interface/preview panel')) self.live_controller.panel.setVisible(Settings().value('user interface/live panel')) self.load_settings() self.restore_current_media_manager_item() Registry().execute('theme_update_global') def restore_current_media_manager_item(self): """ Called on start up to restore the last active media plugin. """ log.info('Load data from Settings') if Settings().value('advanced/save current plugin'): saved_plugin_id = Settings().value('advanced/current media plugin') if saved_plugin_id != -1: self.media_tool_box.setCurrentIndex(saved_plugin_id) def on_search_shortcut_triggered(self): """ Called when the search shortcut has been pressed. """ # Make sure the media_dock is visible. if not self.media_manager_dock.isVisible(): self.media_manager_dock.setVisible(True) widget = self.media_tool_box.currentWidget() if widget: widget.on_focus() def on_media_tool_box_changed(self, index): """ Focus a widget when the media toolbox changes. """ widget = self.media_tool_box.widget(index) if widget: widget.on_focus() def version_notice(self, version): """ Notifies the user that a newer version of OpenLP is available. Triggered by delay thread and cannot display popup. :param version: The Version to be displayed. """ log.debug('version_notice') version_text = translate('OpenLP.MainWindow', 'Version %s of OpenLP is now available for download (you are ' 'currently running version %s). \n\nYou can download the latest version from ' 'http://openlp.org/.') QtWidgets.QMessageBox.question(self, translate('OpenLP.MainWindow', 'OpenLP Version Updated'), version_text % (version, get_application_version()[u'full'])) def show(self): """ Show the main form, as well as the display form """ QtWidgets.QWidget.show(self) if self.live_controller.display.isVisible(): self.live_controller.display.setFocus() self.activateWindow() if self.arguments: self.open_cmd_line_files(self.arguments) elif Settings().value(self.general_settings_section + '/auto open'): self.service_manager_contents.load_last_file() view_mode = Settings().value('%s/view mode' % self.general_settings_section) if view_mode == 'default': self.mode_default_item.setChecked(True) elif view_mode == 'setup': self.set_view_mode(True, True, False, True, False, True) self.mode_setup_item.setChecked(True) elif view_mode == 'live': self.set_view_mode(False, True, False, False, True, True) self.mode_live_item.setChecked(True) def app_startup(self): """ Give all the plugins a chance to perform some tasks at startup """ self.application.process_events() for plugin in self.plugin_manager.plugins: if plugin.is_active(): plugin.app_startup() self.application.process_events() def first_time(self): """ Import themes if first time """ self.application.process_events() for plugin in self.plugin_manager.plugins: if hasattr(plugin, 'first_time'): self.application.process_events() plugin.first_time() self.application.process_events() temp_dir = os.path.join(str(gettempdir()), 'openlp') shutil.rmtree(temp_dir, True) def on_first_time_wizard_clicked(self): """ Re-run the first time wizard. Prompts the user for run confirmation.If wizard is run, songs, bibles and themes are imported. The default theme is changed (if necessary). The plugins in pluginmanager are set active/in-active to match the selection in the wizard. """ answer = QtWidgets.QMessageBox.warning(self, translate('OpenLP.MainWindow', 'Re-run First Time Wizard?'), translate('OpenLP.MainWindow', 'Are you sure you want to re-run the First ' 'Time Wizard?\n\nRe-running this wizard may make changes to ' 'your current OpenLP configuration and possibly add songs to ' 'your existing songs list and change your default theme.'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer == QtWidgets.QMessageBox.No: return first_run_wizard = FirstTimeForm(self) first_run_wizard.initialize(ScreenList()) first_run_wizard.exec() if first_run_wizard.was_cancelled: return self.application.set_busy_cursor() self.first_time() for plugin in self.plugin_manager.plugins: self.active_plugin = plugin old_status = self.active_plugin.status self.active_plugin.set_status() if old_status != self.active_plugin.status: if self.active_plugin.status == PluginStatus.Active: self.active_plugin.toggle_status(PluginStatus.Active) self.active_plugin.app_startup() else: self.active_plugin.toggle_status(PluginStatus.Inactive) # Set global theme and Registry().execute('theme_update_global') # Load the themes from files self.theme_manager_contents.load_first_time_themes() # Update the theme widget self.theme_manager_contents.load_themes() # Check if any Bibles downloaded. If there are, they will be processed. Registry().execute('bibles_load_list', True) self.application.set_normal_cursor() def is_display_blank(self): """ Check and display message if screen blank on setup. """ settings = Settings() self.live_controller.main_display_set_background() if settings.value('%s/screen blank' % self.general_settings_section): if settings.value('%s/blank warning' % self.general_settings_section): QtWidgets.QMessageBox.question(self, translate('OpenLP.MainWindow', 'OpenLP Main Display Blanked'), translate('OpenLP.MainWindow', 'The Main Display has been blanked out')) def error_message(self, title, message): """ Display an error message :param title: The title of the warning box. :param message: The message to be displayed. """ if hasattr(self.application, 'splash'): self.application.splash.close() QtWidgets.QMessageBox.critical(self, title, message) def warning_message(self, title, message): """ Display a warning message :param title: The title of the warning box. :param message: The message to be displayed. """ if hasattr(self.application, 'splash'): self.application.splash.close() QtWidgets.QMessageBox.warning(self, title, message) def information_message(self, title, message): """ Display an informational message :param title: The title of the warning box. :param message: The message to be displayed. """ if hasattr(self.application, 'splash'): self.application.splash.close() QtWidgets.QMessageBox.information(self, title, message) def on_help_web_site_clicked(self): """ Load the OpenLP website """ import webbrowser webbrowser.open_new('http://openlp.org/') def on_offline_help_clicked(self): """ Load the local OpenLP help file """ QtGui.QDesktopServices.openUrl(QtCore.QUrl("file:///" + self.local_help_file)) def on_online_help_clicked(self): """ Load the online OpenLP manual """ import webbrowser webbrowser.open_new('http://manual.openlp.org/') def on_about_item_clicked(self): """ Show the About form """ self.about_form.exec() def on_plugin_item_clicked(self): """ Show the Plugin form """ self.plugin_form.load() self.plugin_form.exec() def on_tools_open_data_folder_clicked(self): """ Open data folder """ path = AppLocation.get_data_path() QtGui.QDesktopServices.openUrl(QtCore.QUrl("file:///" + path)) def on_update_theme_images(self): """ Updates the new theme preview images. """ self.theme_manager_contents.update_preview_images() def on_formatting_tag_item_clicked(self): """ Show the Settings dialog """ self.formatting_tag_form.exec() def on_settings_configure_iem_clicked(self): """ Show the Settings dialog """ self.settings_form.exec() def paintEvent(self, event): """ We need to make sure, that the SlidePreview's size is correct. """ self.preview_controller.preview_size_changed() self.live_controller.preview_size_changed() def on_settings_shortcuts_item_clicked(self): """ Show the shortcuts dialog """ if self.shortcut_form.exec(): self.shortcut_form.save() def on_settings_import_item_clicked(self): """ Import settings from an export INI file """ answer = QtWidgets.QMessageBox.critical(self, translate('OpenLP.MainWindow', 'Import settings?'), translate('OpenLP.MainWindow', 'Are you sure you want to import ' 'settings?\n\n Importing settings will ' 'make permanent changes to your current ' 'OpenLP configuration.\n\n Importing ' 'incorrect settings may cause erratic ' 'behaviour or OpenLP to terminate ' 'abnormally.'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer == QtWidgets.QMessageBox.No: return import_file_name, filter_used = QtWidgets.QFileDialog.getOpenFileName( self, translate('OpenLP.MainWindow', 'Open File'), '', translate('OpenLP.MainWindow', 'OpenLP Export Settings Files (*.conf)')) if not import_file_name: return setting_sections = [] # Add main sections. setting_sections.extend([self.general_settings_section]) setting_sections.extend([self.advanced_settings_section]) setting_sections.extend([self.ui_settings_section]) setting_sections.extend([self.shortcuts_settings_section]) setting_sections.extend([self.service_manager_settings_section]) setting_sections.extend([self.themes_settings_section]) setting_sections.extend([self.projector_settings_section]) setting_sections.extend([self.players_settings_section]) setting_sections.extend([self.display_tags_section]) setting_sections.extend([self.header_section]) setting_sections.extend(['crashreport']) # Add plugin sections. setting_sections.extend([plugin.name for plugin in self.plugin_manager.plugins]) # Copy the settings file to the tmp dir, because we do not want to change the original one. temp_directory = os.path.join(str(gettempdir()), 'openlp') check_directory_exists(temp_directory) temp_config = os.path.join(temp_directory, os.path.basename(import_file_name)) shutil.copyfile(import_file_name, temp_config) settings = Settings() import_settings = Settings(temp_config, Settings.IniFormat) # Convert image files log.info('hook upgrade_plugin_settings') self.plugin_manager.hook_upgrade_plugin_settings(import_settings) # Remove/rename old settings to prepare the import. import_settings.remove_obsolete_settings() # Lets do a basic sanity check. If it contains this string we can assume it was created by OpenLP and so we'll # load what we can from it, and just silently ignore anything we don't recognise. if import_settings.value('SettingsImport/type') != 'OpenLP_settings_export': QtWidgets.QMessageBox.critical(self, translate('OpenLP.MainWindow', 'Import settings'), translate('OpenLP.MainWindow', 'The file you have selected does not appear ' 'to be a valid OpenLP settings file.\n\n' 'Processing has terminated and ' 'no changes have been made.'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) return import_keys = import_settings.allKeys() for section_key in import_keys: # We need to handle the really bad files. try: section, key = section_key.split('/') except ValueError: section = 'unknown' key = '' # Switch General back to lowercase. if section == 'General' or section == '%General': section = 'general' section_key = section + "/" + key # Make sure it's a valid section for us. if section not in setting_sections: continue # We have a good file, import it. for section_key in import_keys: if 'eneral' in section_key: section_key = section_key.lower() try: value = import_settings.value(section_key) except KeyError: log.warning('The key "%s" does not exist (anymore), so it will be skipped.' % section_key) if value is not None: settings.setValue('%s' % (section_key), value) now = datetime.now() settings.beginGroup(self.header_section) settings.setValue('file_imported', import_file_name) settings.setValue('file_date_imported', now.strftime("%Y-%m-%d %H:%M")) settings.endGroup() settings.sync() # We must do an immediate restart or current configuration will overwrite what was just imported when # application terminates normally. We need to exit without saving configuration. QtWidgets.QMessageBox.information(self, translate('OpenLP.MainWindow', 'Import settings'), translate('OpenLP.MainWindow', 'OpenLP will now close. Imported settings will ' 'be applied the next time you start OpenLP.'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) self.settings_imported = True self.clean_up() QtCore.QCoreApplication.exit() def on_settings_export_item_clicked(self): """ Export settings to a .conf file in INI format """ export_file_name, filter_used = QtWidgets.QFileDialog.getSaveFileName( self, translate('OpenLP.MainWindow', 'Export Settings File'), '', translate('OpenLP.MainWindow', 'OpenLP Export Settings File (*.conf)')) if not export_file_name: return # Make sure it's a .conf file. if not export_file_name.endswith('conf'): export_file_name += '.conf' temp_file = os.path.join(gettempdir(), 'openlp', 'exportConf.tmp') self.save_settings() setting_sections = [] # Add main sections. setting_sections.extend([self.general_settings_section]) setting_sections.extend([self.advanced_settings_section]) setting_sections.extend([self.ui_settings_section]) setting_sections.extend([self.shortcuts_settings_section]) setting_sections.extend([self.service_manager_settings_section]) setting_sections.extend([self.themes_settings_section]) setting_sections.extend([self.display_tags_section]) # Add plugin sections. for plugin in self.plugin_manager.plugins: setting_sections.extend([plugin.name]) # Delete old files if found. if os.path.exists(temp_file): os.remove(temp_file) if os.path.exists(export_file_name): os.remove(export_file_name) settings = Settings() settings.remove(self.header_section) # Get the settings. keys = settings.allKeys() export_settings = Settings(temp_file, Settings.IniFormat) # Add a header section. # This is to insure it's our conf file for import. now = datetime.now() application_version = get_application_version() # Write INI format using Qsettings. # Write our header. export_settings.beginGroup(self.header_section) export_settings.setValue('Make_Changes', 'At_Own_RISK') export_settings.setValue('type', 'OpenLP_settings_export') export_settings.setValue('file_date_created', now.strftime("%Y-%m-%d %H:%M")) export_settings.setValue('version', application_version['full']) export_settings.endGroup() # Write all the sections and keys. for section_key in keys: # FIXME: We are conflicting with the standard "General" section. if 'eneral' in section_key: section_key = section_key.lower() try: key_value = settings.value(section_key) except KeyError: QtWidgets.QMessageBox.critical(self, translate('OpenLP.MainWindow', 'Export setting error'), translate('OpenLP.MainWindow', 'The key "%s" does not have a default ' 'value so it will be skipped in this ' 'export.') % section_key, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) key_value = None if key_value is not None: export_settings.setValue(section_key, key_value) export_settings.sync() # Temp CONF file has been written. Blanks in keys are now '%20'. # Read the temp file and output the user's CONF file with blanks to # make it more readable. temp_conf = open(temp_file, 'r') try: export_conf = open(export_file_name, 'w') for file_record in temp_conf: # Get rid of any invalid entries. if file_record.find('@Invalid()') == -1: file_record = file_record.replace('%20', ' ') export_conf.write(file_record) temp_conf.close() export_conf.close() os.remove(temp_file) except OSError as ose: QtWidgets.QMessageBox.critical(self, translate('OpenLP.MainWindow', 'Export setting error'), translate('OpenLP.MainWindow', 'An error occurred while exporting the ' 'settings: %s') % ose.strerror, QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) def on_mode_default_item_clicked(self): """ Put OpenLP into "Default" view mode. """ self.set_view_mode(True, True, True, True, True, True, 'default') def on_mode_setup_item_clicked(self): """ Put OpenLP into "Setup" view mode. """ self.set_view_mode(True, True, False, True, False, True, 'setup') def on_mode_live_item_clicked(self): """ Put OpenLP into "Live" view mode. """ self.set_view_mode(False, True, False, False, True, True, 'live') def set_view_mode(self, media=True, service=True, theme=True, preview=True, live=True, projector=True, mode=''): """ Set OpenLP to a different view mode. """ if mode: settings = Settings() settings.setValue('%s/view mode' % self.general_settings_section, mode) self.media_manager_dock.setVisible(media) self.service_manager_dock.setVisible(service) self.theme_manager_dock.setVisible(theme) self.projector_manager_dock.setVisible(projector) self.set_preview_panel_visibility(preview) self.set_live_panel_visibility(live) def screen_changed(self): """ The screen has changed so we have to update components such as the renderer. """ log.debug('screen_changed') self.application.set_busy_cursor() self.image_manager.update_display() self.renderer.update_display() self.preview_controller.screen_size_changed() self.live_controller.screen_size_changed() self.setFocus() self.activateWindow() self.application.set_normal_cursor() def closeEvent(self, event): """ Hook to close the main window and display windows on exit """ # The MainApplication did not even enter the event loop (this happens # when OpenLP is not fully loaded). Just ignore the event. if not self.application.is_event_loop_active: event.ignore() return # If we just did a settings import, close without saving changes. if self.settings_imported: self.clean_up(False) event.accept() if self.service_manager_contents.is_modified(): ret = self.service_manager_contents.save_modified_service() if ret == QtWidgets.QMessageBox.Save: if self.service_manager_contents.decide_save_method(): self.clean_up() event.accept() else: event.ignore() elif ret == QtWidgets.QMessageBox.Discard: self.clean_up() event.accept() else: event.ignore() else: if Settings().value('advanced/enable exit confirmation'): msg_box = QtWidgets.QMessageBox(QtWidgets.QMessageBox.Question, translate('OpenLP.MainWindow', 'Exit OpenLP'), translate('OpenLP.MainWindow', 'Are you sure you want to exit OpenLP?'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Close | QtWidgets.QMessageBox.Cancel), self) close_button = msg_box.button(QtWidgets.QMessageBox.Close) close_button.setText(translate('OpenLP.MainWindow', '&Exit OpenLP')) msg_box.setDefaultButton(QtWidgets.QMessageBox.Close) if msg_box.exec() == QtWidgets.QMessageBox.Close: self.clean_up() event.accept() else: event.ignore() else: self.clean_up() event.accept() def clean_up(self, save_settings=True): """ Runs all the cleanup code before OpenLP shuts down. :param save_settings: Switch to prevent saving settings. Defaults to **True**. """ self.image_manager.stop_manager = True while self.image_manager.image_thread.isRunning(): time.sleep(0.1) if save_settings: if Settings().value('advanced/save current plugin'): Settings().setValue('advanced/current media plugin', self.media_tool_box.currentIndex()) # Call the cleanup method to shutdown plugins. log.info('cleanup plugins') self.plugin_manager.finalise_plugins() if save_settings: # Save settings self.save_settings() # Check if we need to change the data directory if self.new_data_path: self.change_data_directory() # Close down the display if self.live_controller.display: self.live_controller.display.close() self.live_controller.display = None # Clean temporary files used by services self.service_manager_contents.clean_up() if is_win(): # Needed for Windows to stop crashes on exit Registry().remove('application') def set_service_modified(self, modified, file_name): """ This method is called from the ServiceManager to set the title of the main window. :param modified: Whether or not this service has been modified. :param file_name: The file name of the service file. """ if modified: title = '%s - %s*' % (UiStrings().OLPV2x, file_name) else: title = '%s - %s' % (UiStrings().OLPV2x, file_name) self.setWindowTitle(title) def show_status_message(self, message): """ Show a message in the status bar """ self.status_bar.showMessage(message) def default_theme_changed(self): """ Update the default theme indicator in the status bar """ self.default_theme_label.setText(translate('OpenLP.MainWindow', 'Default Theme: %s') % Settings().value('themes/global theme')) def toggle_media_manager(self): """ Toggle the visibility of the media manager """ self.media_manager_dock.setVisible(not self.media_manager_dock.isVisible()) def toggle_projector_manager(self): """ Toggle visibility of the projector manager """ self.projector_manager_dock.setVisible(not self.projector_manager_dock.isVisible()) def toggle_service_manager(self): """ Toggle the visibility of the service manager """ self.service_manager_dock.setVisible(not self.service_manager_dock.isVisible()) def toggle_theme_manager(self): """ Toggle the visibility of the theme manager """ self.theme_manager_dock.setVisible(not self.theme_manager_dock.isVisible()) def set_preview_panel_visibility(self, visible): """ Sets the visibility of the preview panel including saving the setting and updating the menu. :param visible: A bool giving the state to set the panel to True - Visible False - Hidden """ self.preview_controller.panel.setVisible(visible) Settings().setValue('user interface/preview panel', visible) self.view_preview_panel.setChecked(visible) def set_lock_panel(self, lock): """ Sets the ability to stop the toolbars being changed. """ if lock: self.theme_manager_dock.setFeatures(QtWidgets.QDockWidget.NoDockWidgetFeatures) self.service_manager_dock.setFeatures(QtWidgets.QDockWidget.NoDockWidgetFeatures) self.media_manager_dock.setFeatures(QtWidgets.QDockWidget.NoDockWidgetFeatures) self.projector_manager_dock.setFeatures(QtWidgets.QDockWidget.NoDockWidgetFeatures) self.view_media_manager_item.setEnabled(False) self.view_service_manager_item.setEnabled(False) self.view_theme_manager_item.setEnabled(False) self.view_projector_manager_item.setEnabled(False) self.view_preview_panel.setEnabled(False) self.view_live_panel.setEnabled(False) else: self.theme_manager_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.service_manager_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.media_manager_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.projector_manager_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.view_media_manager_item.setEnabled(True) self.view_service_manager_item.setEnabled(True) self.view_theme_manager_item.setEnabled(True) self.view_projector_manager_item.setEnabled(True) self.view_preview_panel.setEnabled(True) self.view_live_panel.setEnabled(True) Settings().setValue('user interface/lock panel', lock) def set_live_panel_visibility(self, visible): """ Sets the visibility of the live panel including saving the setting and updating the menu. :param visible: A bool giving the state to set the panel to True - Visible False - Hidden """ self.live_controller.panel.setVisible(visible) Settings().setValue('user interface/live panel', visible) self.view_live_panel.setChecked(visible) def load_settings(self): """ Load the main window settings. """ log.debug('Loading QSettings') settings = Settings() # Remove obsolete entries. settings.remove('custom slide') settings.remove('service') settings.beginGroup(self.general_settings_section) self.recent_files = settings.value('recent files') settings.endGroup() settings.beginGroup(self.ui_settings_section) self.move(settings.value('main window position')) self.restoreGeometry(settings.value('main window geometry')) self.restoreState(settings.value('main window state')) self.live_controller.splitter.restoreState(settings.value('live splitter geometry')) self.preview_controller.splitter.restoreState(settings.value('preview splitter geometry')) self.control_splitter.restoreState(settings.value('main window splitter geometry')) # This needs to be called after restoreState(), because saveState() also saves the "Collapsible" property # which was True (by default) < OpenLP 2.1. self.control_splitter.setChildrenCollapsible(False) settings.endGroup() def save_settings(self): """ Save the main window settings. """ # Exit if we just did a settings import. if self.settings_imported: return log.debug('Saving QSettings') settings = Settings() settings.beginGroup(self.general_settings_section) settings.setValue('recent files', self.recent_files) settings.endGroup() settings.beginGroup(self.ui_settings_section) settings.setValue('main window position', self.pos()) settings.setValue('main window state', self.saveState()) settings.setValue('main window geometry', self.saveGeometry()) settings.setValue('live splitter geometry', self.live_controller.splitter.saveState()) settings.setValue('preview splitter geometry', self.preview_controller.splitter.saveState()) settings.setValue('main window splitter geometry', self.control_splitter.saveState()) settings.endGroup() def update_recent_files_menu(self): """ Updates the recent file menu with the latest list of service files accessed. """ recent_file_count = Settings().value('advanced/recent file count') existing_recent_files = [recentFile for recentFile in self.recent_files if os.path.isfile(str(recentFile))] recent_files_to_display = existing_recent_files[0:recent_file_count] self.recent_files_menu.clear() for file_id, filename in enumerate(recent_files_to_display): log.debug('Recent file name: %s', filename) action = create_action(self, '', text='&%d %s' % (file_id + 1, os.path.splitext(os.path.basename(str(filename)))[0]), data=filename, triggers=self.service_manager_contents.on_recent_service_clicked) self.recent_files_menu.addAction(action) clear_recent_files_action = create_action(self, '', text=translate('OpenLP.MainWindow', 'Clear List', 'Clear List of ' 'recent files'), statustip=translate('OpenLP.MainWindow', 'Clear the list of recent ' 'files.'), enabled=bool(self.recent_files), triggers=self.clear_recent_file_menu) add_actions(self.recent_files_menu, (None, clear_recent_files_action)) clear_recent_files_action.setEnabled(bool(self.recent_files)) def add_recent_file(self, filename): """ Adds a service to the list of recently used files. :param filename: The service filename to add """ # The max_recent_files value does not have an interface and so never gets # actually stored in the settings therefore the default value of 20 will # always be used. max_recent_files = Settings().value('advanced/max recent files') if filename: # Add some cleanup to reduce duplication in the recent file list filename = os.path.abspath(filename) # abspath() only capitalises the drive letter if it wasn't provided # in the given filename which then causes duplication. if filename[1:3] == ':\\': filename = filename[0].upper() + filename[1:] if filename in self.recent_files: self.recent_files.remove(filename) if not isinstance(self.recent_files, list): self.recent_files = [self.recent_files] self.recent_files.insert(0, filename) while len(self.recent_files) > max_recent_files: self.recent_files.pop() def clear_recent_file_menu(self): """ Clears the recent files. """ self.recent_files = [] def display_progress_bar(self, size): """ Make Progress bar visible and set size """ self.load_progress_bar.show() self.load_progress_bar.setMaximum(size) self.load_progress_bar.setValue(0) self.application.process_events() def increment_progress_bar(self): """ Increase the Progress Bar value by 1 """ self.load_progress_bar.setValue(self.load_progress_bar.value() + 1) self.application.process_events() def finished_progress_bar(self): """ Trigger it's removal after 2.5 second """ self.timer_id = self.startTimer(2500) def timerEvent(self, event): """ Remove the Progress bar from view. """ if event.timerId() == self.timer_id: self.timer_id = 0 self.load_progress_bar.hide() self.application.process_events() def set_new_data_path(self, new_data_path): """ Set the new data path """ self.new_data_path = new_data_path def set_copy_data(self, copy_data): """ Set the flag to copy the data """ self.copy_data = copy_data def change_data_directory(self): """ Change the data directory. """ log.info('Changing data path to %s' % self.new_data_path) old_data_path = str(AppLocation.get_data_path()) # Copy OpenLP data to new location if requested. self.application.set_busy_cursor() if self.copy_data: log.info('Copying data to new path') try: self.show_status_message( translate('OpenLP.MainWindow', 'Copying OpenLP data to new data directory location - %s ' '- Please wait for copy to finish').replace('%s', self.new_data_path)) dir_util.copy_tree(old_data_path, self.new_data_path) log.info('Copy successful') except (IOError, os.error, DistutilsFileError) as why: self.application.set_normal_cursor() log.exception('Data copy failed %s' % str(why)) QtWidgets.QMessageBox.critical(self, translate('OpenLP.MainWindow', 'New Data Directory Error'), translate('OpenLP.MainWindow', 'OpenLP Data directory copy failed\n\n%s'). replace('%s', str(why)), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Ok)) return False else: log.info('No data copy requested') # Change the location of data directory in config file. settings = QtCore.QSettings() settings.setValue('advanced/data path', self.new_data_path) # Check if the new data path is our default. if self.new_data_path == AppLocation.get_directory(AppLocation.DataDir): settings.remove('advanced/data path') self.application.set_normal_cursor() def open_cmd_line_files(self, filename): """ Open files passed in through command line arguments """ if not isinstance(filename, str): filename = str(filename, sys.getfilesystemencoding()) if filename.endswith(('.osz', '.oszl')): self.service_manager_contents.load_file(filename) OpenLP-2.4/openlp/core/ui/firsttimeform.py0000644000175000017500000007745412657640340017700 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module contains the first time wizard. """ import hashlib import logging import os import socket import time import urllib.request import urllib.parse import urllib.error from tempfile import gettempdir from configparser import ConfigParser, MissingSectionHeaderError, NoSectionError, NoOptionError from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, RegistryProperties, AppLocation, Settings, check_directory_exists, \ translate, clean_button_text, trace_error_handler from openlp.core.lib import PluginStatus, build_icon from openlp.core.lib.ui import critical_error_message_box from openlp.core.utils import get_web_page, CONNECTION_RETRIES, CONNECTION_TIMEOUT from .firsttimewizard import UiFirstTimeWizard, FirstTimePage log = logging.getLogger(__name__) class ThemeScreenshotWorker(QtCore.QObject): """ This thread downloads a theme's screenshot """ screenshot_downloaded = QtCore.pyqtSignal(str, str, str) finished = QtCore.pyqtSignal() def __init__(self, themes_url, title, filename, sha256, screenshot): """ Set up the worker object """ self.was_download_cancelled = False self.themes_url = themes_url self.title = title self.filename = filename self.sha256 = sha256 self.screenshot = screenshot socket.setdefaulttimeout(CONNECTION_TIMEOUT) super(ThemeScreenshotWorker, self).__init__() def run(self): """ Overridden method to run the thread. """ if self.was_download_cancelled: return try: urllib.request.urlretrieve('%s%s' % (self.themes_url, self.screenshot), os.path.join(gettempdir(), 'openlp', self.screenshot)) # Signal that the screenshot has been downloaded self.screenshot_downloaded.emit(self.title, self.filename, self.sha256) except: log.exception('Unable to download screenshot') finally: self.finished.emit() @QtCore.pyqtSlot(bool) def set_download_canceled(self, toggle): """ Externally set if the download was canceled :param toggle: Set if the download was canceled or not """ self.was_download_cancelled = toggle class FirstTimeForm(QtWidgets.QWizard, UiFirstTimeWizard, RegistryProperties): """ This is the Theme Import Wizard, which allows easy creation and editing of OpenLP themes. """ log.info('ThemeWizardForm loaded') def __init__(self, parent=None): """ Create and set up the first time wizard. """ super(FirstTimeForm, self).__init__(parent) self.web_access = True self.web = '' self.setup_ui(self) def get_next_page_id(self): """ Returns the id of the next FirstTimePage to go to based on enabled plugins """ if FirstTimePage.Welcome < self.currentId() < FirstTimePage.Songs and self.songs_check_box.isChecked(): # If the songs plugin is enabled then go to the songs page return FirstTimePage.Songs elif FirstTimePage.Welcome < self.currentId() < FirstTimePage.Bibles and self.bible_check_box.isChecked(): # Otherwise, if the Bibles plugin is enabled then go to the Bibles page return FirstTimePage.Bibles elif FirstTimePage.Welcome < self.currentId() < FirstTimePage.Themes: # Otherwise, if the current page is somewhere between the Welcome and the Themes pages, go to the themes return FirstTimePage.Themes else: # If all else fails, go to the next page return self.currentId() + 1 def nextId(self): """ Determine the next page in the Wizard to go to. """ self.application.process_events() if self.currentId() == FirstTimePage.Download: if not self.web_access: return FirstTimePage.NoInternet else: return FirstTimePage.Plugins elif self.currentId() == FirstTimePage.Plugins: return self.get_next_page_id() elif self.currentId() == FirstTimePage.Progress: return -1 elif self.currentId() == FirstTimePage.NoInternet: return FirstTimePage.Progress elif self.currentId() == FirstTimePage.Themes: self.application.set_busy_cursor() while not all([thread.isFinished() for thread in self.theme_screenshot_threads]): time.sleep(0.1) self.application.process_events() # Build the screenshot icons, as this can not be done in the thread. self._build_theme_screenshots() self.application.set_normal_cursor() return FirstTimePage.Defaults else: return self.get_next_page_id() def exec(self): """ Run the wizard. """ self.set_defaults() return QtWidgets.QWizard.exec(self) def initialize(self, screens): """ Set up the First Time Wizard :param screens: The screens detected by OpenLP """ self.screens = screens self.was_cancelled = False self.theme_screenshot_threads = [] self.theme_screenshot_workers = [] self.has_run_wizard = False def _download_index(self): """ Download the configuration file and kick off the theme screenshot download threads """ # check to see if we have web access self.web_access = False self.config = ConfigParser() user_agent = 'OpenLP/' + Registry().get('application').applicationVersion() self.application.process_events() try: web_config = get_web_page('%s%s' % (self.web, 'download.cfg'), header=('User-Agent', user_agent)) except (urllib.error.URLError, ConnectionError) as err: msg = QtWidgets.QMessageBox() title = translate('OpenLP.FirstTimeWizard', 'Network Error') msg.setText('{} {}'.format(title, err.code if hasattr(err, 'code') else '')) msg.setInformativeText(translate('OpenLP.FirstTimeWizard', 'There was a network error attempting to ' 'connect to retrieve initial configuration information')) msg.setStandardButtons(msg.Ok) ans = msg.exec() web_config = False if web_config: files = web_config.read() try: self.config.read_string(files.decode()) self.web = self.config.get('general', 'base url') self.songs_url = self.web + self.config.get('songs', 'directory') + '/' self.bibles_url = self.web + self.config.get('bibles', 'directory') + '/' self.themes_url = self.web + self.config.get('themes', 'directory') + '/' self.web_access = True except (NoSectionError, NoOptionError, MissingSectionHeaderError): log.debug('A problem occured while parsing the downloaded config file') trace_error_handler(log) self.update_screen_list_combo() self.application.process_events() self.downloading = translate('OpenLP.FirstTimeWizard', 'Downloading %s...') if self.has_run_wizard: self.songs_check_box.setChecked(self.plugin_manager.get_plugin_by_name('songs').is_active()) self.bible_check_box.setChecked(self.plugin_manager.get_plugin_by_name('bibles').is_active()) self.presentation_check_box.setChecked(self.plugin_manager.get_plugin_by_name('presentations').is_active()) self.image_check_box.setChecked(self.plugin_manager.get_plugin_by_name('images').is_active()) self.media_check_box.setChecked(self.plugin_manager.get_plugin_by_name('media').is_active()) self.remote_check_box.setChecked(self.plugin_manager.get_plugin_by_name('remotes').is_active()) self.custom_check_box.setChecked(self.plugin_manager.get_plugin_by_name('custom').is_active()) self.song_usage_check_box.setChecked(self.plugin_manager.get_plugin_by_name('songusage').is_active()) self.alert_check_box.setChecked(self.plugin_manager.get_plugin_by_name('alerts').is_active()) self.application.set_normal_cursor() # Sort out internet access for downloads if self.web_access: songs = self.config.get('songs', 'languages') songs = songs.split(',') for song in songs: self.application.process_events() title = self.config.get('songs_%s' % song, 'title') filename = self.config.get('songs_%s' % song, 'filename') sha256 = self.config.get('songs_%s' % song, 'sha256', fallback='') item = QtWidgets.QListWidgetItem(title, self.songs_list_widget) item.setData(QtCore.Qt.UserRole, (filename, sha256)) item.setCheckState(QtCore.Qt.Unchecked) item.setFlags(item.flags() | QtCore.Qt.ItemIsUserCheckable) bible_languages = self.config.get('bibles', 'languages') bible_languages = bible_languages.split(',') for lang in bible_languages: self.application.process_events() language = self.config.get('bibles_%s' % lang, 'title') lang_item = QtWidgets.QTreeWidgetItem(self.bibles_tree_widget, [language]) bibles = self.config.get('bibles_%s' % lang, 'translations') bibles = bibles.split(',') for bible in bibles: self.application.process_events() title = self.config.get('bible_%s' % bible, 'title') filename = self.config.get('bible_%s' % bible, 'filename') sha256 = self.config.get('bible_%s' % bible, 'sha256', fallback='') item = QtWidgets.QTreeWidgetItem(lang_item, [title]) item.setData(0, QtCore.Qt.UserRole, (filename, sha256)) item.setCheckState(0, QtCore.Qt.Unchecked) item.setFlags(item.flags() | QtCore.Qt.ItemIsUserCheckable) self.bibles_tree_widget.expandAll() self.application.process_events() # Download the theme screenshots themes = self.config.get('themes', 'files').split(',') for theme in themes: title = self.config.get('theme_%s' % theme, 'title') filename = self.config.get('theme_%s' % theme, 'filename') sha256 = self.config.get('theme_%s' % theme, 'sha256', fallback='') screenshot = self.config.get('theme_%s' % theme, 'screenshot') worker = ThemeScreenshotWorker(self.themes_url, title, filename, sha256, screenshot) self.theme_screenshot_workers.append(worker) worker.screenshot_downloaded.connect(self.on_screenshot_downloaded) thread = QtCore.QThread(self) self.theme_screenshot_threads.append(thread) thread.started.connect(worker.run) worker.finished.connect(thread.quit) worker.moveToThread(thread) thread.start() self.application.process_events() def set_defaults(self): """ Set up display at start of theme edit. """ self.restart() self.web = 'http://openlp.org/files/frw/' self.cancel_button.clicked.connect(self.on_cancel_button_clicked) self.no_internet_finish_button.clicked.connect(self.on_no_internet_finish_button_clicked) self.no_internet_cancel_button.clicked.connect(self.on_no_internet_cancel_button_clicked) self.currentIdChanged.connect(self.on_current_id_changed) Registry().register_function('config_screen_changed', self.update_screen_list_combo) self.no_internet_finish_button.setVisible(False) self.no_internet_cancel_button.setVisible(False) # Check if this is a re-run of the wizard. self.has_run_wizard = Settings().value('core/has run wizard') check_directory_exists(os.path.join(gettempdir(), 'openlp')) def update_screen_list_combo(self): """ The user changed screen resolution or enabled/disabled more screens, so we need to update the combo box. """ self.display_combo_box.clear() self.display_combo_box.addItems(self.screens.get_screen_list()) self.display_combo_box.setCurrentIndex(self.display_combo_box.count() - 1) def on_current_id_changed(self, page_id): """ Detects Page changes and updates as appropriate. """ # Keep track of the page we are at. Triggering "Cancel" causes page_id to be a -1. self.application.process_events() if page_id != -1: self.last_id = page_id if page_id == FirstTimePage.Download: self.back_button.setVisible(False) self.next_button.setVisible(False) # Set the no internet page text. if self.has_run_wizard: self.no_internet_label.setText(self.no_internet_text) else: self.no_internet_label.setText(self.no_internet_text + self.cancel_wizard_text) self.application.set_busy_cursor() self._download_index() self.application.set_normal_cursor() self.back_button.setVisible(False) self.next_button.setVisible(True) self.next() elif page_id == FirstTimePage.Defaults: self.theme_combo_box.clear() for index in range(self.themes_list_widget.count()): item = self.themes_list_widget.item(index) if item.checkState() == QtCore.Qt.Checked: self.theme_combo_box.addItem(item.text()) if self.has_run_wizard: # Add any existing themes to list. for theme in self.theme_manager.get_themes(): index = self.theme_combo_box.findText(theme) if index == -1: self.theme_combo_box.addItem(theme) default_theme = Settings().value('themes/global theme') # Pre-select the current default theme. index = self.theme_combo_box.findText(default_theme) self.theme_combo_box.setCurrentIndex(index) elif page_id == FirstTimePage.NoInternet: self.back_button.setVisible(False) self.next_button.setVisible(False) self.cancel_button.setVisible(False) self.no_internet_finish_button.setVisible(True) if self.has_run_wizard: self.no_internet_cancel_button.setVisible(False) else: self.no_internet_cancel_button.setVisible(True) elif page_id == FirstTimePage.Plugins: self.back_button.setVisible(False) elif page_id == FirstTimePage.Progress: self.application.set_busy_cursor() self._pre_wizard() self._perform_wizard() self._post_wizard() self.application.set_normal_cursor() def on_cancel_button_clicked(self): """ Process the triggering of the cancel button. """ self.was_cancelled = True if self.theme_screenshot_workers: for worker in self.theme_screenshot_workers: worker.set_download_canceled(True) # Was the thread created. if self.theme_screenshot_threads: while any([thread.isRunning() for thread in self.theme_screenshot_threads]): time.sleep(0.1) self.application.set_normal_cursor() def on_screenshot_downloaded(self, title, filename, sha256): """ Add an item to the list when a theme has been downloaded :param title: The title of the theme :param filename: The filename of the theme """ item = QtWidgets.QListWidgetItem(title, self.themes_list_widget) item.setData(QtCore.Qt.UserRole, (filename, sha256)) item.setCheckState(QtCore.Qt.Unchecked) item.setFlags(item.flags() | QtCore.Qt.ItemIsUserCheckable) def on_no_internet_finish_button_clicked(self): """ Process the triggering of the "Finish" button on the No Internet page. """ self.application.set_busy_cursor() self._perform_wizard() self.application.set_normal_cursor() Settings().setValue('core/has run wizard', True) self.close() def on_no_internet_cancel_button_clicked(self): """ Process the triggering of the "Cancel" button on the No Internet page. """ self.was_cancelled = True self.close() def url_get_file(self, url, f_path, sha256=None): """" Download a file given a URL. The file is retrieved in chunks, giving the ability to cancel the download at any point. Returns False on download error. :param url: URL to download :param f_path: Destination file """ block_count = 0 block_size = 4096 retries = 0 while True: try: filename = open(f_path, "wb") url_file = urllib.request.urlopen(url, timeout=CONNECTION_TIMEOUT) if sha256: hasher = hashlib.sha256() # Download until finished or canceled. while not self.was_cancelled: data = url_file.read(block_size) if not data: break filename.write(data) if sha256: hasher.update(data) block_count += 1 self._download_progress(block_count, block_size) filename.close() if sha256 and hasher.hexdigest() != sha256: log.error('sha256 sums did not match for file: {}'.format(f_path)) os.remove(f_path) return False except (urllib.error.URLError, socket.timeout) as err: trace_error_handler(log) filename.close() os.remove(f_path) if retries > CONNECTION_RETRIES: return False else: retries += 1 time.sleep(0.1) continue break # Delete file if cancelled, it may be a partial file. if self.was_cancelled: os.remove(f_path) return True def _build_theme_screenshots(self): """ This method builds the theme screenshots' icons for all items in the ``self.themes_list_widget``. """ themes = self.config.get('themes', 'files') themes = themes.split(',') for index, theme in enumerate(themes): screenshot = self.config.get('theme_%s' % theme, 'screenshot') item = self.themes_list_widget.item(index) if item: item.setIcon(build_icon(os.path.join(gettempdir(), 'openlp', screenshot))) def _get_file_size(self, url): """ Get the size of a file. :param url: The URL of the file we want to download. """ retries = 0 while True: try: site = urllib.request.urlopen(url, timeout=CONNECTION_TIMEOUT) meta = site.info() return int(meta.get("Content-Length")) except urllib.error.URLError: if retries > CONNECTION_RETRIES: raise else: retries += 1 time.sleep(0.1) continue def _download_progress(self, count, block_size): """ Calculate and display the download progress. """ increment = (count * block_size) - self.previous_size self._increment_progress_bar(None, increment) self.previous_size = count * block_size def _increment_progress_bar(self, status_text, increment=1): """ Update the wizard progress page. :param status_text: Current status information to display. :param increment: The value to increment the progress bar by. """ if status_text: self.progress_label.setText(status_text) if increment > 0: self.progress_bar.setValue(self.progress_bar.value() + increment) self.application.process_events() def _pre_wizard(self): """ Prepare the UI for the process. """ self.max_progress = 0 self.finish_button.setVisible(False) self.application.process_events() try: # Loop through the songs list and increase for each selected item for i in range(self.songs_list_widget.count()): self.application.process_events() item = self.songs_list_widget.item(i) if item.checkState() == QtCore.Qt.Checked: filename, sha256 = item.data(QtCore.Qt.UserRole) size = self._get_file_size('%s%s' % (self.songs_url, filename)) self.max_progress += size # Loop through the Bibles list and increase for each selected item iterator = QtWidgets.QTreeWidgetItemIterator(self.bibles_tree_widget) while iterator.value(): self.application.process_events() item = iterator.value() if item.parent() and item.checkState(0) == QtCore.Qt.Checked: filename, sha256 = item.data(0, QtCore.Qt.UserRole) size = self._get_file_size('%s%s' % (self.bibles_url, filename)) self.max_progress += size iterator += 1 # Loop through the themes list and increase for each selected item for i in range(self.themes_list_widget.count()): self.application.process_events() item = self.themes_list_widget.item(i) if item.checkState() == QtCore.Qt.Checked: filename, sha256 = item.data(QtCore.Qt.UserRole) size = self._get_file_size('%s%s' % (self.themes_url, filename)) self.max_progress += size except urllib.error.URLError: trace_error_handler(log) critical_error_message_box(translate('OpenLP.FirstTimeWizard', 'Download Error'), translate('OpenLP.FirstTimeWizard', 'There was a connection problem during ' 'download, so further downloads will be skipped. Try to re-run the ' 'First Time Wizard later.')) self.max_progress = 0 self.web_access = None if self.max_progress: # Add on 2 for plugins status setting plus a "finished" point. self.max_progress += 2 self.progress_bar.setValue(0) self.progress_bar.setMinimum(0) self.progress_bar.setMaximum(self.max_progress) self.progress_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Setting Up And Downloading')) self.progress_page.setSubTitle( translate('OpenLP.FirstTimeWizard', 'Please wait while OpenLP is set up and your data is downloaded.')) else: self.progress_bar.setVisible(False) self.progress_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Setting Up')) self.progress_page.setSubTitle('Setup complete.') self.repaint() self.application.process_events() # Try to give the wizard a chance to repaint itself time.sleep(0.1) def _post_wizard(self): """ Clean up the UI after the process has finished. """ if self.max_progress: self.progress_bar.setValue(self.progress_bar.maximum()) if self.has_run_wizard: self.progress_label.setText(translate('OpenLP.FirstTimeWizard', 'Download complete. Click the %s button to return to OpenLP.') % clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton))) else: self.progress_label.setText(translate('OpenLP.FirstTimeWizard', 'Download complete. Click the %s button to start OpenLP.') % clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton))) else: if self.has_run_wizard: self.progress_label.setText(translate('OpenLP.FirstTimeWizard', 'Click the %s button to return to OpenLP.') % clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton))) else: self.progress_label.setText(translate('OpenLP.FirstTimeWizard', 'Click the %s button to start OpenLP.') % clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton))) self.finish_button.setVisible(True) self.finish_button.setEnabled(True) self.cancel_button.setVisible(False) self.next_button.setVisible(False) self.application.process_events() def _perform_wizard(self): """ Run the tasks in the wizard. """ # Set plugin states self._increment_progress_bar(translate('OpenLP.FirstTimeWizard', 'Enabling selected plugins...')) self._set_plugin_status(self.songs_check_box, 'songs/status') self._set_plugin_status(self.bible_check_box, 'bibles/status') self._set_plugin_status(self.presentation_check_box, 'presentations/status') self._set_plugin_status(self.image_check_box, 'images/status') self._set_plugin_status(self.media_check_box, 'media/status') self._set_plugin_status(self.remote_check_box, 'remotes/status') self._set_plugin_status(self.custom_check_box, 'custom/status') self._set_plugin_status(self.song_usage_check_box, 'songusage/status') self._set_plugin_status(self.alert_check_box, 'alerts/status') if self.web_access: if not self._download_selected(): critical_error_message_box(translate('OpenLP.FirstTimeWizard', 'Download Error'), translate('OpenLP.FirstTimeWizard', 'There was a connection problem while ' 'downloading, so further downloads will be skipped. Try to re-run ' 'the First Time Wizard later.')) # Set Default Display if self.display_combo_box.currentIndex() != -1: Settings().setValue('core/monitor', self.display_combo_box.currentIndex()) self.screens.set_current_display(self.display_combo_box.currentIndex()) # Set Global Theme if self.theme_combo_box.currentIndex() != -1: Settings().setValue('themes/global theme', self.theme_combo_box.currentText()) def _download_selected(self): """ Download selected songs, bibles and themes. Returns False on download error """ # Build directories for downloads songs_destination = os.path.join(gettempdir(), 'openlp') bibles_destination = AppLocation.get_section_data_path('bibles') themes_destination = AppLocation.get_section_data_path('themes') missed_files = [] # Download songs for i in range(self.songs_list_widget.count()): item = self.songs_list_widget.item(i) if item.checkState() == QtCore.Qt.Checked: filename, sha256 = item.data(QtCore.Qt.UserRole) self._increment_progress_bar(self.downloading % filename, 0) self.previous_size = 0 destination = os.path.join(songs_destination, str(filename)) if not self.url_get_file('%s%s' % (self.songs_url, filename), destination, sha256): missed_files.append('Song: {}'.format(filename)) # Download Bibles bibles_iterator = QtWidgets.QTreeWidgetItemIterator(self.bibles_tree_widget) while bibles_iterator.value(): item = bibles_iterator.value() if item.parent() and item.checkState(0) == QtCore.Qt.Checked: bible, sha256 = item.data(0, QtCore.Qt.UserRole) self._increment_progress_bar(self.downloading % bible, 0) self.previous_size = 0 if not self.url_get_file('%s%s' % (self.bibles_url, bible), os.path.join(bibles_destination, bible), sha256): missed_files.append('Bible: {}'.format(bible)) bibles_iterator += 1 # Download themes for i in range(self.themes_list_widget.count()): item = self.themes_list_widget.item(i) if item.checkState() == QtCore.Qt.Checked: theme, sha256 = item.data(QtCore.Qt.UserRole) self._increment_progress_bar(self.downloading % theme, 0) self.previous_size = 0 if not self.url_get_file('%s%s' % (self.themes_url, theme), os.path.join(themes_destination, theme), sha256): missed_files.append('Theme: {}'.format(theme)) if missed_files: file_list = '' for entry in missed_files: file_list += '{}
'.format(entry) msg = QtWidgets.QMessageBox() msg.setIcon(QtWidgets.QMessageBox.Warning) msg.setWindowTitle(translate('OpenLP.FirstTimeWizard', 'Network Error')) msg.setText(translate('OpenLP.FirstTimeWizard', 'Unable to download some files')) msg.setInformativeText(translate('OpenLP.FirstTimeWizard', 'The following files were not able to be ' 'downloaded:
{}'.format(file_list))) msg.setStandardButtons(msg.Ok) ans = msg.exec() return True def _set_plugin_status(self, field, tag): """ Set the status of a plugin. """ status = PluginStatus.Active if field.checkState() == QtCore.Qt.Checked else PluginStatus.Inactive Settings().setValue(tag, status) OpenLP-2.4/openlp/core/ui/settingsform.py0000644000175000017500000002050012657640340017506 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`settingsform` provides a user interface for the OpenLP settings """ import logging from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, RegistryProperties from openlp.core.lib import build_icon from openlp.core.ui import AdvancedTab, GeneralTab, ThemesTab from openlp.core.ui.media import PlayerTab from .settingsdialog import Ui_SettingsDialog from openlp.core.ui.projector.tab import ProjectorTab log = logging.getLogger(__name__) class SettingsForm(QtWidgets.QDialog, Ui_SettingsDialog, RegistryProperties): """ Provide the form to manipulate the settings for OpenLP """ def __init__(self, parent=None): """ Initialise the settings form """ Registry().register('settings_form', self) Registry().register_function('bootstrap_post_set_up', self.bootstrap_post_set_up) super(SettingsForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.processes = [] self.setupUi(self) self.setting_list_widget.currentRowChanged.connect(self.list_item_changed) self.general_tab = None self.themes_tab = None self.projector_tab = None self.advanced_tab = None self.player_tab = None def exec(self): """ Execute the form """ # load all the settings self.setting_list_widget.clear() while self.stacked_layout.count(): # take at 0 and the rest shuffle up. self.stacked_layout.takeAt(0) self.insert_tab(self.general_tab) self.insert_tab(self.themes_tab) self.insert_tab(self.advanced_tab) self.insert_tab(self.player_tab) self.insert_tab(self.projector_tab) for plugin in self.plugin_manager.plugins: if plugin.settings_tab: self.insert_tab(plugin.settings_tab, plugin.is_active()) self.setting_list_widget.setCurrentRow(0) return QtWidgets.QDialog.exec(self) def insert_tab(self, tab_widget, is_visible=True): """ Add a tab to the form at a specific location :param tab_widget: The widget to add :param is_visible: If this tab should be visible """ log.debug('Inserting %s tab' % tab_widget.tab_title) # add the tab to get it to display in the correct part of the screen self.stacked_layout.addWidget(tab_widget) if is_visible: list_item = QtWidgets.QListWidgetItem(build_icon(tab_widget.icon_path), tab_widget.tab_title_visible) list_item.setData(QtCore.Qt.UserRole, tab_widget.tab_title) self.setting_list_widget.addItem(list_item) def accept(self): """ Process the form saving the settings """ log.debug('Processing settings exit') # We add all the forms into the stacked layout, even if the plugin is inactive, # but we don't add the item to the list on the side if the plugin is inactive, # so loop through the list items, and then find the tab for that item. for item_index in range(self.setting_list_widget.count()): # Get the list item list_item = self.setting_list_widget.item(item_index) if not list_item: continue # Now figure out if there's a tab for it, and save the tab. plugin_name = list_item.data(QtCore.Qt.UserRole) for tab_index in range(self.stacked_layout.count()): tab_widget = self.stacked_layout.widget(tab_index) if tab_widget.tab_title == plugin_name: tab_widget.save() # if the image background has been changed we need to regenerate the image cache if 'images_config_updated' in self.processes or 'config_screen_changed' in self.processes: self.register_post_process('images_regenerate') # Now lets process all the post save handlers while self.processes: Registry().execute(self.processes.pop(0)) return QtWidgets.QDialog.accept(self) def reject(self): """ Process the form saving the settings """ self.processes = [] # Same as accept(), we need to loop over the visible tabs, and skip the inactive ones for item_index in range(self.setting_list_widget.count()): # Get the list item list_item = self.setting_list_widget.item(item_index) if not list_item: continue # Now figure out if there's a tab for it, and save the tab. plugin_name = list_item.data(QtCore.Qt.UserRole) for tab_index in range(self.stacked_layout.count()): tab_widget = self.stacked_layout.widget(tab_index) if tab_widget.tab_title == plugin_name: tab_widget.cancel() return QtWidgets.QDialog.reject(self) def bootstrap_post_set_up(self): """ Run any post-setup code for the tabs on the form """ # General tab self.general_tab = GeneralTab(self) # Themes tab self.themes_tab = ThemesTab(self) # Projector Tab self.projector_tab = ProjectorTab(self) # Advanced tab self.advanced_tab = AdvancedTab(self) # Advanced tab self.player_tab = PlayerTab(self) self.general_tab.post_set_up() self.themes_tab.post_set_up() self.advanced_tab.post_set_up() self.player_tab.post_set_up() for plugin in self.plugin_manager.plugins: if plugin.settings_tab: plugin.settings_tab.post_set_up() def list_item_changed(self, item_index): """ A different settings tab is selected :param item_index: The index of the item that was selected """ # Get the item we clicked on list_item = self.setting_list_widget.item(item_index) # Quick exit to the left if the item doesn't exist (maybe -1?) if not list_item: return # Loop through the list of tabs in the stacked layout for tab_index in range(self.stacked_layout.count()): # Get the widget tab_widget = self.stacked_layout.itemAt(tab_index).widget() # Check that the title of the tab (i.e. plugin name) is the same as the data in the list item if tab_widget.tab_title == list_item.data(QtCore.Qt.UserRole): # Make the matching tab visible self.stacked_layout.setCurrentIndex(tab_index) self.stacked_layout.currentWidget().tab_visible() def register_post_process(self, function): """ Register for updates to be done on save removing duplicate functions :param function: The function to be called """ if function not in self.processes: self.processes.append(function) OpenLP-2.4/openlp/core/ui/starttimedialog.py0000644000175000017500000001650112657640340020164 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets for the time dialog """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import UiStrings, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_StartTimeDialog(object): """ The UI widgets for the time dialog """ def setupUi(self, StartTimeDialog): """ Set up the UI """ StartTimeDialog.setObjectName('StartTimeDialog') StartTimeDialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) StartTimeDialog.resize(350, 10) self.dialog_layout = QtWidgets.QGridLayout(StartTimeDialog) self.dialog_layout.setObjectName('dialog_layout') self.start_label = QtWidgets.QLabel(StartTimeDialog) self.start_label.setObjectName('start_label') self.start_label.setAlignment(QtCore.Qt.AlignHCenter) self.dialog_layout.addWidget(self.start_label, 0, 1, 1, 1) self.finish_label = QtWidgets.QLabel(StartTimeDialog) self.finish_label.setObjectName('finish_label') self.finish_label.setAlignment(QtCore.Qt.AlignHCenter) self.dialog_layout.addWidget(self.finish_label, 0, 2, 1, 1) self.length_label = QtWidgets.QLabel(StartTimeDialog) self.length_label.setObjectName('start_label') self.length_label.setAlignment(QtCore.Qt.AlignHCenter) self.dialog_layout.addWidget(self.length_label, 0, 3, 1, 1) self.hour_label = QtWidgets.QLabel(StartTimeDialog) self.hour_label.setObjectName('hour_label') self.dialog_layout.addWidget(self.hour_label, 1, 0, 1, 1) self.hour_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.hour_spin_box.setObjectName('hour_spin_box') self.hour_spin_box.setMinimum(0) self.hour_spin_box.setMaximum(4) self.dialog_layout.addWidget(self.hour_spin_box, 1, 1, 1, 1) self.hour_finish_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.hour_finish_spin_box.setObjectName('hour_finish_spin_box') self.hour_finish_spin_box.setMinimum(0) self.hour_finish_spin_box.setMaximum(4) self.dialog_layout.addWidget(self.hour_finish_spin_box, 1, 2, 1, 1) self.hour_finish_label = QtWidgets.QLabel(StartTimeDialog) self.hour_finish_label.setObjectName('hour_label') self.hour_finish_label.setAlignment(QtCore.Qt.AlignRight) self.dialog_layout.addWidget(self.hour_finish_label, 1, 3, 1, 1) self.minute_label = QtWidgets.QLabel(StartTimeDialog) self.minute_label.setObjectName('minute_label') self.dialog_layout.addWidget(self.minute_label, 2, 0, 1, 1) self.minute_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.minute_spin_box.setObjectName('minute_spin_box') self.minute_spin_box.setMinimum(0) self.minute_spin_box.setMaximum(59) self.dialog_layout.addWidget(self.minute_spin_box, 2, 1, 1, 1) self.minute_finish_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.minute_finish_spin_box.setObjectName('minute_finish_spin_box') self.minute_finish_spin_box.setMinimum(0) self.minute_finish_spin_box.setMaximum(59) self.dialog_layout.addWidget(self.minute_finish_spin_box, 2, 2, 1, 1) self.minute_finish_label = QtWidgets.QLabel(StartTimeDialog) self.minute_finish_label.setObjectName('minute_label') self.minute_finish_label.setAlignment(QtCore.Qt.AlignRight) self.dialog_layout.addWidget(self.minute_finish_label, 2, 3, 1, 1) self.second_label = QtWidgets.QLabel(StartTimeDialog) self.second_label.setObjectName('second_label') self.dialog_layout.addWidget(self.second_label, 3, 0, 1, 1) self.second_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.second_spin_box.setObjectName('second_spin_box') self.second_spin_box.setMinimum(0) self.second_spin_box.setMaximum(59) self.second_finish_spin_box = QtWidgets.QSpinBox(StartTimeDialog) self.second_finish_spin_box.setObjectName('second_finish_spin_box') self.second_finish_spin_box.setMinimum(0) self.second_finish_spin_box.setMaximum(59) self.dialog_layout.addWidget(self.second_finish_spin_box, 3, 2, 1, 1) self.second_finish_label = QtWidgets.QLabel(StartTimeDialog) self.second_finish_label.setObjectName('second_label') self.second_finish_label.setAlignment(QtCore.Qt.AlignRight) self.dialog_layout.addWidget(self.second_finish_label, 3, 3, 1, 1) self.dialog_layout.addWidget(self.second_spin_box, 3, 1, 1, 1) self.button_box = create_button_box(StartTimeDialog, 'button_box', ['cancel', 'ok']) self.dialog_layout.addWidget(self.button_box, 5, 2, 1, 2) self.retranslateUi(StartTimeDialog) self.setMaximumHeight(self.sizeHint().height()) def retranslateUi(self, StartTimeDialog): """ Update the translations on the fly """ self.setWindowTitle(translate('OpenLP.StartTime_form', 'Item Start and Finish Time')) self.hour_spin_box.setSuffix(UiStrings().Hours) self.minute_spin_box.setSuffix(UiStrings().Minutes) self.second_spin_box.setSuffix(UiStrings().Seconds) self.hour_finish_spin_box.setSuffix(UiStrings().Hours) self.minute_finish_spin_box.setSuffix(UiStrings().Minutes) self.second_finish_spin_box.setSuffix(UiStrings().Seconds) self.hour_label.setText(translate('OpenLP.StartTime_form', 'Hours:')) self.minute_label.setText(translate('OpenLP.StartTime_form', 'Minutes:')) self.second_label.setText(translate('OpenLP.StartTime_form', 'Seconds:')) self.start_label.setText(translate('OpenLP.StartTime_form', 'Start')) self.finish_label.setText(translate('OpenLP.StartTime_form', 'Finish')) self.length_label.setText(translate('OpenLP.StartTime_form', 'Length')) OpenLP-2.4/openlp/core/ui/starttimeform.py0000644000175000017500000001120312657640340017662 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The actual start time form. """ from PyQt5 import QtCore, QtWidgets from .starttimedialog import Ui_StartTimeDialog from openlp.core.common import Registry, RegistryProperties, UiStrings, translate from openlp.core.lib.ui import critical_error_message_box class StartTimeForm(QtWidgets.QDialog, Ui_StartTimeDialog, RegistryProperties): """ The start time dialog """ def __init__(self): """ Constructor """ super(StartTimeForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.setupUi(self) def exec(self): """ Run the Dialog with correct heading. """ hour, minutes, seconds = self._time_split(self.item['service_item'].start_time) self.hour_spin_box.setValue(hour) self.minute_spin_box.setValue(minutes) self.second_spin_box.setValue(seconds) hours, minutes, seconds = self._time_split(self.item['service_item'].end_time) if hours == 0 and minutes == 0 and seconds == 0: hours, minutes, seconds = self._time_split(self.item['service_item'].media_length) self.hour_finish_spin_box.setValue(hours) self.minute_finish_spin_box.setValue(minutes) self.second_finish_spin_box.setValue(seconds) self.hour_finish_label.setText('%s%s' % (str(hour), UiStrings().Hours)) self.minute_finish_label.setText('%s%s' % (str(minutes), UiStrings().Minutes)) self.second_finish_label.setText('%s%s' % (str(seconds), UiStrings().Seconds)) return QtWidgets.QDialog.exec(self) def accept(self): """ When the dialog succeeds, this is run """ start = self.hour_spin_box.value() * 3600 + self.minute_spin_box.value() * 60 + self.second_spin_box.value() end = self.hour_finish_spin_box.value() * 3600 + \ self.minute_finish_spin_box.value() * 60 + self.second_finish_spin_box.value() if end > self.item['service_item'].media_length: critical_error_message_box(title=translate('OpenLP.StartTime_form', 'Time Validation Error'), message=translate('OpenLP.StartTime_form', 'Finish time is set after the end of the media item')) return elif start > end: critical_error_message_box(title=translate('OpenLP.StartTime_form', 'Time Validation Error'), message=translate('OpenLP.StartTime_form', 'Start time is after the finish time of the media item')) return self.item['service_item'].start_time = start self.item['service_item'].end_time = end return QtWidgets.QDialog.accept(self) def _time_split(self, seconds): """ Split time up into hours minutes and seconds from seconds """ hours = seconds // 3600 seconds -= 3600 * hours minutes = seconds // 60 seconds -= 60 * minutes return hours, minutes, seconds OpenLP-2.4/openlp/core/ui/listpreviewwidget.py0000644000175000017500000001673612657640340020563 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`listpreviewwidget` is a widget that lists the slides in the slide controller. It is based on a QTableWidget but represents its contents in list form. """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import RegistryProperties from openlp.core.lib import ImageSource, ServiceItem class ListPreviewWidget(QtWidgets.QTableWidget, RegistryProperties): """ A special type of QTableWidget which lists the slides in the slide controller :param parent: :param screen_ratio: """ def __init__(self, parent, screen_ratio): """ Initializes the widget to default state. An empty ``ServiceItem`` is used by default. replace_service_manager_item() needs to be called to make this widget display something. """ super(QtWidgets.QTableWidget, self).__init__(parent) self._setup(screen_ratio) def _setup(self, screen_ratio): """ Set up the widget """ self.setColumnCount(1) self.horizontalHeader().setVisible(False) self.setColumnWidth(0, self.parent().width()) self.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) self.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) self.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.setAlternatingRowColors(True) # Initialize variables. self.service_item = ServiceItem() self.screen_ratio = screen_ratio def resizeEvent(self, event): """ Overloaded method from QTableWidget. Will recalculate the layout. """ self.__recalculate_layout() def __recalculate_layout(self): """ Recalculates the layout of the table widget. It will set height and width of the table cells. QTableWidget does not adapt the cells to the widget size on its own. """ self.setColumnWidth(0, self.viewport().width()) if self.service_item: # Sort out songs, bibles, etc. if self.service_item.is_text(): self.resizeRowsToContents() else: # Sort out image heights. for frame_number in range(len(self.service_item.get_frames())): height = self.viewport().width() // self.screen_ratio self.setRowHeight(frame_number, height) def screen_size_changed(self, screen_ratio): """ This method is called whenever the live screen size changes, which then makes a layout recalculation necessary :param screen_ratio: The new screen ratio """ self.screen_ratio = screen_ratio self.__recalculate_layout() def replace_service_item(self, service_item, width, slide_number): """ Replace the current preview items with the ones in service_item and display the given slide :param service_item: The service item to insert :param width: The width of the column :param slide_number: The slide number to pre-select """ self.service_item = service_item self.setRowCount(0) self.clear() self.setColumnWidth(0, width) row = 0 text = [] for frame_number, frame in enumerate(self.service_item.get_frames()): self.setRowCount(self.slide_count() + 1) item = QtWidgets.QTableWidgetItem() slide_height = 0 if self.service_item.is_text(): if frame['verseTag']: # These tags are already translated. verse_def = frame['verseTag'] verse_def = '%s%s' % (verse_def[0], verse_def[1:]) two_line_def = '%s\n%s' % (verse_def[0], verse_def[1:]) row = two_line_def else: row += 1 item.setText(frame['text']) else: label = QtWidgets.QLabel() label.setContentsMargins(4, 4, 4, 4) if self.service_item.is_media(): label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignVCenter) else: label.setScaledContents(True) if self.service_item.is_command(): pixmap = QtGui.QPixmap(frame['image']) pixmap.setDevicePixelRatio(label.devicePixelRatio()) label.setPixmap(pixmap) else: image = self.image_manager.get_image(frame['path'], ImageSource.ImagePlugin) pixmap = QtGui.QPixmap.fromImage(image) pixmap.setDevicePixelRatio(label.devicePixelRatio()) label.setPixmap(pixmap) self.setCellWidget(frame_number, 0, label) slide_height = width // self.screen_ratio row += 1 text.append(str(row)) self.setItem(frame_number, 0, item) if slide_height: self.setRowHeight(frame_number, slide_height) self.setVerticalHeaderLabels(text) if self.service_item.is_text(): self.resizeRowsToContents() self.setColumnWidth(0, self.viewport().width()) self.change_slide(slide_number) def change_slide(self, slide): """ Switches to the given row. """ if slide >= self.slide_count(): slide = self.slide_count() - 1 # Scroll to next item if possible. if slide + 1 < self.slide_count(): self.scrollToItem(self.item(slide + 1, 0)) self.selectRow(slide) def current_slide_number(self): """ Returns the position of the currently active item. Will return -1 if the widget is empty. """ return super(ListPreviewWidget, self).currentRow() def slide_count(self): """ Returns the number of slides this widget holds. """ return super(ListPreviewWidget, self).rowCount() OpenLP-2.4/openlp/core/ui/serviceitemeditdialog.py0000644000175000017500000000760512657640340021342 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets for the service item edit dialog """ from PyQt5 import QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box, create_button class Ui_ServiceItemEditDialog(object): """ The UI widgets for the service item edit dialog """ def setupUi(self, serviceItemEditDialog): """ Set up the UI """ serviceItemEditDialog.setObjectName('serviceItemEditDialog') serviceItemEditDialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) self.dialog_layout = QtWidgets.QGridLayout(serviceItemEditDialog) self.dialog_layout.setContentsMargins(8, 8, 8, 8) self.dialog_layout.setSpacing(8) self.dialog_layout.setObjectName('dialog_layout') self.list_widget = QtWidgets.QListWidget(serviceItemEditDialog) self.list_widget.setAlternatingRowColors(True) self.list_widget.setObjectName('list_widget') self.dialog_layout.addWidget(self.list_widget, 0, 0) self.button_layout = QtWidgets.QVBoxLayout() self.button_layout.setObjectName('button_layout') self.delete_button = create_button(serviceItemEditDialog, 'deleteButton', role='delete', click=serviceItemEditDialog.on_delete_button_clicked) self.button_layout.addWidget(self.delete_button) self.button_layout.addStretch() self.up_button = create_button(serviceItemEditDialog, 'up_button', role='up', click=serviceItemEditDialog.on_up_button_clicked) self.down_button = create_button(serviceItemEditDialog, 'down_button', role='down', click=serviceItemEditDialog.on_down_button_clicked) self.button_layout.addWidget(self.up_button) self.button_layout.addWidget(self.down_button) self.dialog_layout.addLayout(self.button_layout, 0, 1) self.button_box = create_button_box(serviceItemEditDialog, 'button_box', ['cancel', 'save']) self.dialog_layout.addWidget(self.button_box, 1, 0, 1, 2) self.retranslateUi(serviceItemEditDialog) def retranslateUi(self, serviceItemEditDialog): """ Translate the UI on the fly """ serviceItemEditDialog.setWindowTitle(translate('OpenLP.ServiceItemEditForm', 'Reorder Service Item')) OpenLP-2.4/openlp/core/ui/printserviceform.py0000644000175000017500000003656512657640340020405 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The actual print service dialog """ import datetime import os import html import lxml.html from PyQt5 import QtCore, QtGui, QtWidgets, QtPrintSupport from openlp.core.common import Registry, RegistryProperties, Settings, UiStrings, translate from openlp.core.lib import get_text_file_string from openlp.core.ui.printservicedialog import Ui_PrintServiceDialog, ZoomSize from openlp.core.common import AppLocation DEFAULT_CSS = """/* Edit this file to customize the service order print. Note, that not all CSS properties are supported. See: http://doc.trolltech.com/4.7/richtext-html-subset.html#css-properties */ .serviceTitle { font-weight: 600; font-size: x-large; color: black; } .item { color: black; } .itemTitle { font-weight: 600; font-size: large; } .itemText { margin-top: 10px; } .itemFooter { font-size: 8px; } .itemNotes {} .itemNotesTitle { font-weight: bold; font-size: 12px; } .itemNotesText { font-size: 11px; } .media {} .mediaTitle { font-weight: bold; font-size: 11px; } .mediaText {} .imageList {} .customNotes { margin-top: 10px; } .customNotesTitle { font-weight: bold; font-size: 11px; } .customNotesText { font-size: 11px; } .newPage { page-break-before: always; } """ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryProperties): """ The :class:`~openlp.core.ui.printserviceform.PrintServiceForm` class displays a dialog for printing the service. """ def __init__(self): """ Constructor """ super(PrintServiceForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.printer = QtPrintSupport.QPrinter() self.print_dialog = QtPrintSupport.QPrintDialog(self.printer, self) self.document = QtGui.QTextDocument() self.zoom = 0 self.setupUi(self) # Load the settings for the dialog. settings = Settings() settings.beginGroup('advanced') self.slide_text_check_box.setChecked(settings.value('print slide text')) self.page_break_after_text.setChecked(settings.value('add page break')) if not self.slide_text_check_box.isChecked(): self.page_break_after_text.setDisabled(True) self.meta_data_check_box.setChecked(settings.value('print file meta data')) self.notes_check_box.setChecked(settings.value('print notes')) self.zoom_combo_box.setCurrentIndex(settings.value('display size')) settings.endGroup() # Signals self.print_button.triggered.connect(self.print_service_order) self.zoom_out_button.clicked.connect(self.zoom_out) self.zoom_in_button.clicked.connect(self.zoom_in) self.zoom_original_button.clicked.connect(self.zoom_original) self.preview_widget.paintRequested.connect(self.paint_requested) self.zoom_combo_box.currentIndexChanged.connect(self.display_size_changed) self.plain_copy.triggered.connect(self.copy_text) self.html_copy.triggered.connect(self.copy_html_text) self.slide_text_check_box.stateChanged.connect(self.on_slide_text_check_box_changed) self.update_preview_text() def toggle_options(self, checked): """ Toggle various options """ self.options_widget.setVisible(checked) if checked: left = self.options_button.pos().x() top = self.toolbar.height() self.options_widget.move(left, top) self.title_line_edit.setFocus() else: self.save_options() self.update_preview_text() def update_preview_text(self): """ Creates the html text and updates the html of *self.document*. """ html_data = self._add_element('html') self._add_element('head', parent=html_data) self._add_element('title', self.title_line_edit.text(), html_data.head) css_path = os.path.join(AppLocation.get_data_path(), 'serviceprint', 'service_print.css') custom_css = get_text_file_string(css_path) if not custom_css: custom_css = DEFAULT_CSS self._add_element('style', custom_css, html_data.head, attribute=('type', 'text/css')) self._add_element('body', parent=html_data) self._add_element('h1', html.escape(self.title_line_edit.text()), html_data.body, classId='serviceTitle') for index, item in enumerate(self.service_manager.service_items): self._add_preview_item(html_data.body, item['service_item'], index) # Add the custom service notes: if self.footer_text_edit.toPlainText(): div = self._add_element('div', parent=html_data.body, classId='customNotes') self._add_element( 'span', translate('OpenLP.ServiceManager', 'Custom Service Notes: '), div, classId='customNotesTitle') self._add_element('span', html.escape(self.footer_text_edit.toPlainText()), div, classId='customNotesText') self.document.setHtml(lxml.html.tostring(html_data).decode()) self.preview_widget.updatePreview() def _add_preview_item(self, body, item, index): """ Add a preview item """ div = self._add_element('div', classId='item', parent=body) # Add the title of the service item. item_title = self._add_element('h2', parent=div, classId='itemTitle') self._add_element('img', parent=item_title, attribute=('src', item.icon)) self._add_element('span', ' ' + html.escape(item.get_display_title()), item_title) if self.slide_text_check_box.isChecked(): # Add the text of the service item. if item.is_text(): verse_def = None verse_html = None for slide in item.get_frames(): if not verse_def or verse_def != slide['verseTag'] or verse_html == slide['html']: text_div = self._add_element('div', parent=div, classId='itemText') else: self._add_element('br', parent=text_div) self._add_element('span', slide['html'], text_div) verse_def = slide['verseTag'] verse_html = slide['html'] # Break the page before the div element. if index != 0 and self.page_break_after_text.isChecked(): div.set('class', 'item newPage') # Add the image names of the service item. elif item.is_image(): ol = self._add_element('ol', parent=div, classId='imageList') for slide in range(len(item.get_frames())): self._add_element('li', item.get_frame_title(slide), ol) # add footer foot_text = item.foot_text foot_text = foot_text.partition('
')[2] if foot_text: foot_text = html.escape(foot_text.replace('
', '\n')) self._add_element('div', foot_text.replace('\n', '
'), parent=div, classId='itemFooter') # Add service items' notes. if self.notes_check_box.isChecked(): if item.notes: p = self._add_element('div', classId='itemNotes', parent=div) self._add_element('span', translate('OpenLP.ServiceManager', 'Notes: '), p, classId='itemNotesTitle') self._add_element('span', html.escape(item.notes).replace('\n', '
'), p, classId='itemNotesText') # Add play length of media files. if item.is_media() and self.meta_data_check_box.isChecked(): tme = item.media_length if item.end_time > 0: tme = item.end_time - item.start_time title = self._add_element('div', classId='media', parent=div) self._add_element( 'span', translate('OpenLP.ServiceManager', 'Playing time: '), title, classId='mediaTitle') self._add_element('span', str(datetime.timedelta(seconds=tme)), title, classId='mediaText') def _add_element(self, tag, text=None, parent=None, classId=None, attribute=None): """ Creates a html element. If ``text`` is given, the element's text will set and if a ``parent`` is given, the element is appended. :param tag: The html tag, e. g. ``'span'``. Defaults to ``None``. :param text: The text for the tag. Defaults to ``None``. :param parent: The parent element. Defaults to ``None``. :param classId: Value for the class attribute :param attribute: Tuple name/value pair to add as an optional attribute """ if text is not None: element = lxml.html.fragment_fromstring(str(text), create_parent=tag) else: element = lxml.html.Element(tag) if parent is not None: parent.append(element) if classId is not None: element.set('class', classId) if attribute is not None: element.set(attribute[0], attribute[1]) return element def paint_requested(self, printer): """ Paint the preview of the *self.document*. ``printer`` A *QPrinter* object. """ self.document.print_(printer) def display_size_changed(self, display): """ The Zoom Combo box has changed so set up the size. """ if display == ZoomSize.Page: self.preview_widget.fitInView() elif display == ZoomSize.Width: self.preview_widget.fitToWidth() elif display == ZoomSize.OneHundred: self.preview_widget.fitToWidth() self.preview_widget.zoomIn(1) elif display == ZoomSize.SeventyFive: self.preview_widget.fitToWidth() self.preview_widget.zoomIn(0.75) elif display == ZoomSize.Fifty: self.preview_widget.fitToWidth() self.preview_widget.zoomIn(0.5) elif display == ZoomSize.TwentyFive: self.preview_widget.fitToWidth() self.preview_widget.zoomIn(0.25) settings = Settings() settings.beginGroup('advanced') settings.setValue('display size', display) settings.endGroup() def copy_text(self): """ Copies the display text to the clipboard as plain text """ self.update_song_usage() cursor = QtGui.QTextCursor(self.document) cursor.select(QtGui.QTextCursor.Document) clipboard_text = cursor.selectedText() # We now have the unprocessed unicode service text in the cursor # So we replace u2028 with \n and u2029 with \n\n and a few others clipboard_text = clipboard_text.replace('\u2028', '\n') clipboard_text = clipboard_text.replace('\u2029', '\n\n') clipboard_text = clipboard_text.replace('\u2018', '\'') clipboard_text = clipboard_text.replace('\u2019', '\'') clipboard_text = clipboard_text.replace('\u201c', '"') clipboard_text = clipboard_text.replace('\u201d', '"') clipboard_text = clipboard_text.replace('\u2026', '...') clipboard_text = clipboard_text.replace('\u2013', '-') clipboard_text = clipboard_text.replace('\u2014', '-') # remove the icon from the text clipboard_text = clipboard_text.replace('\ufffc\xa0', '') # and put it all on the clipboard self.main_window.clipboard.setText(clipboard_text) def copy_html_text(self): """ Copies the display text to the clipboard as Html """ self.update_song_usage() self.main_window.clipboard.setText(self.document.toHtml()) def print_service_order(self): """ Called, when the *print_button* is clicked. Opens the *print_dialog*. """ if not self.print_dialog.exec(): return self.update_song_usage() # Print the document. self.document.print_(self.printer) def zoom_in(self): """ Called when *zoom_in_button* is clicked. """ self.preview_widget.zoomIn() self.zoom -= 0.1 def zoom_out(self): """ Called when *zoom_out_button* is clicked. """ self.preview_widget.zoomOut() self.zoom += 0.1 def zoom_original(self): """ Called when *zoom_out_button* is clicked. """ self.preview_widget.zoomIn(1 + self.zoom) self.zoom = 0 def update_text_format(self, value): """ Called when html copy check box is selected. """ if value == QtCore.Qt.Checked: self.copyTextButton.setText(UiStrings().CopyToHtml) else: self.copyTextButton.setText(UiStrings().CopyToText) def on_slide_text_check_box_changed(self, state): """ Disable or enable the ``page_break_after_text`` checkbox as it should only be enabled, when the ``slide_text_check_box`` is enabled. """ self.page_break_after_text.setDisabled(state == QtCore.Qt.Unchecked) def save_options(self): """ Save the settings and close the dialog. """ # Save the settings for this dialog. settings = Settings() settings.beginGroup('advanced') settings.setValue('print slide text', self.slide_text_check_box.isChecked()) settings.setValue('add page break', self.page_break_after_text.isChecked()) settings.setValue('print file meta data', self.meta_data_check_box.isChecked()) settings.setValue('print notes', self.notes_check_box.isChecked()) settings.endGroup() def update_song_usage(self): """ Update the song usage """ # Only continue when we include the song's text. if not self.slide_text_check_box.isChecked(): return for item in self.service_manager.service_items: # Trigger Audit requests Registry().register_function('print_service_started', [item['service_item']]) OpenLP-2.4/openlp/core/ui/themelayoutdialog.py0000644000175000017500000000766712657640340020525 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The layout of the theme """ from PyQt5 import QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_ThemeLayoutDialog(object): """ The layout of the theme """ def setupUi(self, themeLayoutDialog): """ Set up the UI """ themeLayoutDialog.setObjectName('themeLayoutDialogDialog') themeLayoutDialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) self.preview_layout = QtWidgets.QVBoxLayout(themeLayoutDialog) self.preview_layout.setObjectName('preview_layout') self.preview_area = QtWidgets.QWidget(themeLayoutDialog) self.preview_area.setObjectName('preview_area') self.preview_area_layout = QtWidgets.QGridLayout(self.preview_area) self.preview_area_layout.setContentsMargins(0, 0, 0, 0) self.preview_area_layout.setColumnStretch(0, 1) self.preview_area_layout.setRowStretch(0, 1) self.preview_area_layout.setObjectName('preview_area_layout') self.theme_display_label = QtWidgets.QLabel(self.preview_area) self.theme_display_label.setFrameShape(QtWidgets.QFrame.Box) self.theme_display_label.setScaledContents(True) self.theme_display_label.setObjectName('theme_display_label') self.preview_area_layout.addWidget(self.theme_display_label) self.preview_layout.addWidget(self.preview_area) self.main_colour_label = QtWidgets.QLabel(self.preview_area) self.main_colour_label.setObjectName('main_colour_label') self.preview_layout.addWidget(self.main_colour_label) self.footer_colour_label = QtWidgets.QLabel(self.preview_area) self.footer_colour_label.setObjectName('footer_colour_label') self.preview_layout.addWidget(self.footer_colour_label) self.button_box = create_button_box(themeLayoutDialog, 'button_box', ['ok']) self.preview_layout.addWidget(self.button_box) self.retranslateUi(themeLayoutDialog) def retranslateUi(self, themeLayoutDialog): """ Translate the UI on the fly """ themeLayoutDialog.setWindowTitle(translate('OpenLP.StartTimeForm', 'Theme Layout')) self.main_colour_label.setText(translate('OpenLP.StartTimeForm', 'The blue box shows the main area.')) self.footer_colour_label.setText(translate('OpenLP.StartTimeForm', 'The red box shows the footer.')) OpenLP-2.4/openlp/core/ui/advancedtab.py0000644000175000017500000012345412657640340017232 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`advancedtab` provides an advanced settings facility. """ from datetime import datetime, timedelta import logging import os import sys from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import AppLocation, Settings, SlideLimits, UiStrings, translate from openlp.core.lib import ColorButton, SettingsTab, build_icon from openlp.core.utils import format_time, get_images_filter log = logging.getLogger(__name__) class AdvancedTab(SettingsTab): """ The :class:`AdvancedTab` manages the advanced settings tab including the UI and the loading and saving of the displayed settings. """ def __init__(self, parent): """ Initialise the settings tab """ self.default_image = ':/graphics/openlp-splash-screen.png' self.default_color = '#ffffff' self.data_exists = False self.icon_path = ':/system/system_settings.png' advanced_translated = translate('OpenLP.AdvancedTab', 'Advanced') super(AdvancedTab, self).__init__(parent, 'Advanced', advanced_translated) def setupUi(self): """ Configure the UI elements for the tab. """ self.setObjectName('AdvancedTab') super(AdvancedTab, self).setupUi() self.ui_group_box = QtWidgets.QGroupBox(self.left_column) self.ui_group_box.setObjectName('ui_group_box') self.ui_layout = QtWidgets.QFormLayout(self.ui_group_box) self.ui_layout.setObjectName('ui_layout') self.recent_label = QtWidgets.QLabel(self.ui_group_box) self.recent_label.setObjectName('recent_label') self.recent_spin_box = QtWidgets.QSpinBox(self.ui_group_box) self.recent_spin_box.setObjectName('recent_spin_box') self.recent_spin_box.setMinimum(0) self.ui_layout.addRow(self.recent_label, self.recent_spin_box) self.media_plugin_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.media_plugin_check_box.setObjectName('media_plugin_check_box') self.ui_layout.addRow(self.media_plugin_check_box) self.double_click_live_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.double_click_live_check_box.setObjectName('double_click_live_check_box') self.ui_layout.addRow(self.double_click_live_check_box) self.single_click_preview_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.single_click_preview_check_box.setObjectName('single_click_preview_check_box') self.ui_layout.addRow(self.single_click_preview_check_box) self.expand_service_item_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.expand_service_item_check_box.setObjectName('expand_service_item_check_box') self.ui_layout.addRow(self.expand_service_item_check_box) self.search_as_type_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.search_as_type_check_box.setObjectName('SearchAsType_check_box') self.ui_layout.addRow(self.search_as_type_check_box) self.enable_auto_close_check_box = QtWidgets.QCheckBox(self.ui_group_box) self.enable_auto_close_check_box.setObjectName('enable_auto_close_check_box') self.ui_layout.addRow(self.enable_auto_close_check_box) self.left_layout.addWidget(self.ui_group_box) # Default service name self.service_name_group_box = QtWidgets.QGroupBox(self.left_column) self.service_name_group_box.setObjectName('service_name_group_box') self.service_name_layout = QtWidgets.QFormLayout(self.service_name_group_box) self.service_name_check_box = QtWidgets.QCheckBox(self.service_name_group_box) self.service_name_check_box.setObjectName('service_name_check_box') self.service_name_layout.setObjectName('service_name_layout') self.service_name_layout.addRow(self.service_name_check_box) self.service_name_time_label = QtWidgets.QLabel(self.service_name_group_box) self.service_name_time_label.setObjectName('service_name_time_label') self.service_name_day = QtWidgets.QComboBox(self.service_name_group_box) self.service_name_day.addItems(['', '', '', '', '', '', '', '']) self.service_name_day.setObjectName('service_name_day') self.service_name_time = QtWidgets.QTimeEdit(self.service_name_group_box) self.service_name_time.setObjectName('service_name_time') self.service_name_time_layout = QtWidgets.QHBoxLayout() self.service_name_time_layout.setObjectName('service_name_time_layout') self.service_name_time_layout.addWidget(self.service_name_day) self.service_name_time_layout.addWidget(self.service_name_time) self.service_name_layout.addRow(self.service_name_time_label, self.service_name_time_layout) self.service_name_label = QtWidgets.QLabel(self.service_name_group_box) self.service_name_label.setObjectName('service_name_label') self.service_name_edit = QtWidgets.QLineEdit(self.service_name_group_box) self.service_name_edit.setObjectName('service_name_edit') self.service_name_edit.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(r'[^/\\?*|<>\[\]":+]+'), self)) self.service_name_revert_button = QtWidgets.QToolButton(self.service_name_group_box) self.service_name_revert_button.setObjectName('service_name_revert_button') self.service_name_revert_button.setIcon(build_icon(':/general/general_revert.png')) self.service_name_button_layout = QtWidgets.QHBoxLayout() self.service_name_button_layout.setObjectName('service_name_button_layout') self.service_name_button_layout.addWidget(self.service_name_edit) self.service_name_button_layout.addWidget(self.service_name_revert_button) self.service_name_layout.addRow(self.service_name_label, self.service_name_button_layout) self.service_name_example_label = QtWidgets.QLabel(self.service_name_group_box) self.service_name_example_label.setObjectName('service_name_example_label') self.service_name_example = QtWidgets.QLabel(self.service_name_group_box) self.service_name_example.setObjectName('service_name_example') self.service_name_layout.addRow(self.service_name_example_label, self.service_name_example) self.left_layout.addWidget(self.service_name_group_box) # Data Directory self.data_directory_group_box = QtWidgets.QGroupBox(self.left_column) self.data_directory_group_box.setObjectName('data_directory_group_box') self.data_directory_layout = QtWidgets.QFormLayout(self.data_directory_group_box) self.data_directory_layout.setObjectName('data_directory_layout') self.data_directory_current_label = QtWidgets.QLabel(self.data_directory_group_box) self.data_directory_current_label.setObjectName('data_directory_current_label') self.data_directory_label = QtWidgets.QLabel(self.data_directory_group_box) self.data_directory_label.setObjectName('data_directory_label') self.data_directory_new_label = QtWidgets.QLabel(self.data_directory_group_box) self.data_directory_new_label.setObjectName('data_directory_current_label') self.new_data_directory_edit = QtWidgets.QLineEdit(self.data_directory_group_box) self.new_data_directory_edit.setObjectName('new_data_directory_edit') self.new_data_directory_edit.setReadOnly(True) self.new_data_directory_has_files_label = QtWidgets.QLabel(self.data_directory_group_box) self.new_data_directory_has_files_label.setObjectName('new_data_directory_has_files_label') self.new_data_directory_has_files_label.setWordWrap(True) self.data_directory_browse_button = QtWidgets.QToolButton(self.data_directory_group_box) self.data_directory_browse_button.setObjectName('data_directory_browse_button') self.data_directory_browse_button.setIcon(build_icon(':/general/general_open.png')) self.data_directory_default_button = QtWidgets.QToolButton(self.data_directory_group_box) self.data_directory_default_button.setObjectName('data_directory_default_button') self.data_directory_default_button.setIcon(build_icon(':/general/general_revert.png')) self.data_directory_cancel_button = QtWidgets.QToolButton(self.data_directory_group_box) self.data_directory_cancel_button.setObjectName('data_directory_cancel_button') self.data_directory_cancel_button.setIcon(build_icon(':/general/general_delete.png')) self.new_data_directory_label_layout = QtWidgets.QHBoxLayout() self.new_data_directory_label_layout.setObjectName('new_data_directory_label_layout') self.new_data_directory_label_layout.addWidget(self.new_data_directory_edit) self.new_data_directory_label_layout.addWidget(self.data_directory_browse_button) self.new_data_directory_label_layout.addWidget(self.data_directory_default_button) self.data_directory_copy_check_layout = QtWidgets.QHBoxLayout() self.data_directory_copy_check_layout.setObjectName('data_directory_copy_check_layout') self.data_directory_copy_check_box = QtWidgets.QCheckBox(self.data_directory_group_box) self.data_directory_copy_check_box.setObjectName('data_directory_copy_check_box') self.data_directory_copy_check_layout.addWidget(self.data_directory_copy_check_box) self.data_directory_copy_check_layout.addStretch() self.data_directory_copy_check_layout.addWidget(self.data_directory_cancel_button) self.data_directory_layout.addRow(self.data_directory_current_label, self.data_directory_label) self.data_directory_layout.addRow(self.data_directory_new_label, self.new_data_directory_label_layout) self.data_directory_layout.addRow(self.data_directory_copy_check_layout) self.data_directory_layout.addRow(self.new_data_directory_has_files_label) self.left_layout.addWidget(self.data_directory_group_box) self.left_layout.addStretch() # Default Image self.default_image_group_box = QtWidgets.QGroupBox(self.right_column) self.default_image_group_box.setObjectName('default_image_group_box') self.default_image_layout = QtWidgets.QFormLayout(self.default_image_group_box) self.default_image_layout.setObjectName('default_image_layout') self.default_color_label = QtWidgets.QLabel(self.default_image_group_box) self.default_color_label.setObjectName('default_color_label') self.default_color_button = ColorButton(self.default_image_group_box) self.default_color_button.setObjectName('default_color_button') self.default_image_layout.addRow(self.default_color_label, self.default_color_button) self.default_file_label = QtWidgets.QLabel(self.default_image_group_box) self.default_file_label.setObjectName('default_file_label') self.default_file_edit = QtWidgets.QLineEdit(self.default_image_group_box) self.default_file_edit.setObjectName('default_file_edit') self.default_browse_button = QtWidgets.QToolButton(self.default_image_group_box) self.default_browse_button.setObjectName('default_browse_button') self.default_browse_button.setIcon(build_icon(':/general/general_open.png')) self.default_revert_button = QtWidgets.QToolButton(self.default_image_group_box) self.default_revert_button.setObjectName('default_revert_button') self.default_revert_button.setIcon(build_icon(':/general/general_revert.png')) self.default_file_layout = QtWidgets.QHBoxLayout() self.default_file_layout.setObjectName('default_file_layout') self.default_file_layout.addWidget(self.default_file_edit) self.default_file_layout.addWidget(self.default_browse_button) self.default_file_layout.addWidget(self.default_revert_button) self.default_image_layout.addRow(self.default_file_label, self.default_file_layout) self.right_layout.addWidget(self.default_image_group_box) # Hide mouse self.hide_mouse_group_box = QtWidgets.QGroupBox(self.right_column) self.hide_mouse_group_box.setObjectName('hide_mouse_group_box') self.hide_mouse_layout = QtWidgets.QVBoxLayout(self.hide_mouse_group_box) self.hide_mouse_layout.setObjectName('hide_mouse_layout') self.hide_mouse_check_box = QtWidgets.QCheckBox(self.hide_mouse_group_box) self.hide_mouse_check_box.setObjectName('hide_mouse_check_box') self.hide_mouse_layout.addWidget(self.hide_mouse_check_box) self.right_layout.addWidget(self.hide_mouse_group_box) # Service Item Slide Limits self.slide_group_box = QtWidgets.QGroupBox(self.right_column) self.slide_group_box.setObjectName('slide_group_box') self.slide_layout = QtWidgets.QVBoxLayout(self.slide_group_box) self.slide_layout.setObjectName('slide_layout') self.slide_label = QtWidgets.QLabel(self.slide_group_box) self.slide_label.setWordWrap(True) self.slide_layout.addWidget(self.slide_label) self.end_slide_radio_button = QtWidgets.QRadioButton(self.slide_group_box) self.end_slide_radio_button.setObjectName('end_slide_radio_button') self.slide_layout.addWidget(self.end_slide_radio_button) self.wrap_slide_radio_button = QtWidgets.QRadioButton(self.slide_group_box) self.wrap_slide_radio_button.setObjectName('wrap_slide_radio_button') self.slide_layout.addWidget(self.wrap_slide_radio_button) self.next_item_radio_button = QtWidgets.QRadioButton(self.slide_group_box) self.next_item_radio_button.setObjectName('next_item_radio_button') self.slide_layout.addWidget(self.next_item_radio_button) self.right_layout.addWidget(self.slide_group_box) # Display Workarounds self.display_workaround_group_box = QtWidgets.QGroupBox(self.left_column) self.display_workaround_group_box.setObjectName('display_workaround_group_box') self.display_workaround_layout = QtWidgets.QVBoxLayout(self.display_workaround_group_box) self.display_workaround_layout.setObjectName('display_workaround_layout') self.x11_bypass_check_box = QtWidgets.QCheckBox(self.display_workaround_group_box) self.x11_bypass_check_box.setObjectName('x11_bypass_check_box') self.display_workaround_layout.addWidget(self.x11_bypass_check_box) self.alternate_rows_check_box = QtWidgets.QCheckBox(self.display_workaround_group_box) self.alternate_rows_check_box.setObjectName('alternate_rows_check_box') self.display_workaround_layout.addWidget(self.alternate_rows_check_box) self.right_layout.addWidget(self.display_workaround_group_box) self.right_layout.addStretch() self.should_update_service_name_example = False self.service_name_check_box.toggled.connect(self.service_name_check_box_toggled) self.service_name_day.currentIndexChanged.connect(self.on_service_name_day_changed) self.service_name_time.timeChanged.connect(self.update_service_name_example) self.service_name_edit.textChanged.connect(self.update_service_name_example) self.service_name_revert_button.clicked.connect(self.on_service_name_revert_button_clicked) self.default_color_button.colorChanged.connect(self.on_background_color_changed) self.default_browse_button.clicked.connect(self.on_default_browse_button_clicked) self.default_revert_button.clicked.connect(self.on_default_revert_button_clicked) self.alternate_rows_check_box.toggled.connect(self.on_alternate_rows_check_box_toggled) self.data_directory_browse_button.clicked.connect(self.on_data_directory_browse_button_clicked) self.data_directory_default_button.clicked.connect(self.on_data_directory_default_button_clicked) self.data_directory_cancel_button.clicked.connect(self.on_data_directory_cancel_button_clicked) self.data_directory_copy_check_box.toggled.connect(self.on_data_directory_copy_check_box_toggled) self.end_slide_radio_button.clicked.connect(self.on_end_slide_button_clicked) self.wrap_slide_radio_button.clicked.connect(self.on_wrap_slide_button_clicked) self.next_item_radio_button.clicked.connect(self.on_next_item_button_clicked) self.search_as_type_check_box.stateChanged.connect(self.on_search_as_type_check_box_changed) def retranslateUi(self): """ Setup the interface translation strings. """ self.tab_title_visible = UiStrings().Advanced self.ui_group_box.setTitle(translate('OpenLP.AdvancedTab', 'UI Settings')) self.data_directory_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Data Location')) self.recent_label.setText(translate('OpenLP.AdvancedTab', 'Number of recent files to display:')) self.media_plugin_check_box.setText(translate('OpenLP.AdvancedTab', 'Remember active media manager tab on startup')) self.double_click_live_check_box.setText(translate('OpenLP.AdvancedTab', 'Double-click to send items straight to live')) self.single_click_preview_check_box.setText(translate('OpenLP.AdvancedTab', 'Preview items when clicked in Media Manager')) self.expand_service_item_check_box.setText(translate('OpenLP.AdvancedTab', 'Expand new service items on creation')) self.enable_auto_close_check_box.setText(translate('OpenLP.AdvancedTab', 'Enable application exit confirmation')) self.service_name_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Default Service Name')) self.service_name_check_box.setText(translate('OpenLP.AdvancedTab', 'Enable default service name')) self.service_name_time_label.setText(translate('OpenLP.AdvancedTab', 'Date and Time:')) self.service_name_day.setItemText(0, translate('OpenLP.AdvancedTab', 'Monday')) self.service_name_day.setItemText(1, translate('OpenLP.AdvancedTab', 'Tuesday')) self.service_name_day.setItemText(2, translate('OpenLP.AdvancedTab', 'Wednesday')) self.service_name_day.setItemText(3, translate('OpenLP.AdvancedTab', 'Thursday')) self.service_name_day.setItemText(4, translate('OpenLP.AdvancedTab', 'Friday')) self.service_name_day.setItemText(5, translate('OpenLP.AdvancedTab', 'Saturday')) self.service_name_day.setItemText(6, translate('OpenLP.AdvancedTab', 'Sunday')) self.service_name_day.setItemText(7, translate('OpenLP.AdvancedTab', 'Now')) self.service_name_time.setToolTip(translate('OpenLP.AdvancedTab', 'Time when usual service starts.')) self.service_name_label.setText(translate('OpenLP.AdvancedTab', 'Name:')) self.service_name_edit.setToolTip(translate('OpenLP.AdvancedTab', 'Consult the OpenLP manual for usage.')) self.service_name_revert_button.setToolTip( translate('OpenLP.AdvancedTab', 'Revert to the default service name "%s".') % UiStrings().DefaultServiceName) self.service_name_example_label.setText(translate('OpenLP.AdvancedTab', 'Example:')) self.hide_mouse_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Mouse Cursor')) self.hide_mouse_check_box.setText(translate('OpenLP.AdvancedTab', 'Hide mouse cursor when over display window')) self.default_image_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Default Image')) self.default_color_label.setText(translate('OpenLP.AdvancedTab', 'Background color:')) self.default_file_label.setText(translate('OpenLP.AdvancedTab', 'Image file:')) self.default_browse_button.setToolTip(translate('OpenLP.AdvancedTab', 'Browse for an image file to display.')) self.default_revert_button.setToolTip(translate('OpenLP.AdvancedTab', 'Revert to the default OpenLP logo.')) self.data_directory_current_label.setText(translate('OpenLP.AdvancedTab', 'Current path:')) self.data_directory_new_label.setText(translate('OpenLP.AdvancedTab', 'Custom path:')) self.data_directory_browse_button.setToolTip(translate('OpenLP.AdvancedTab', 'Browse for new data file location.')) self.data_directory_default_button.setToolTip( translate('OpenLP.AdvancedTab', 'Set the data location to the default.')) self.data_directory_cancel_button.setText(translate('OpenLP.AdvancedTab', 'Cancel')) self.data_directory_cancel_button.setToolTip( translate('OpenLP.AdvancedTab', 'Cancel OpenLP data directory location change.')) self.data_directory_copy_check_box.setText(translate('OpenLP.AdvancedTab', 'Copy data to new location.')) self.data_directory_copy_check_box.setToolTip(translate( 'OpenLP.AdvancedTab', 'Copy the OpenLP data files to the new location.')) self.new_data_directory_has_files_label.setText( translate('OpenLP.AdvancedTab', 'WARNING: New data directory location contains ' 'OpenLP data files. These files WILL be replaced during a copy.')) self.display_workaround_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Display Workarounds')) self.x11_bypass_check_box.setText(translate('OpenLP.AdvancedTab', 'Bypass X11 Window Manager')) self.alternate_rows_check_box.setText(translate('OpenLP.AdvancedTab', 'Use alternating row colours in lists')) # Slide Limits self.slide_group_box.setTitle(translate('OpenLP.GeneralTab', 'Service Item Slide Limits')) self.slide_label.setText(translate('OpenLP.GeneralTab', 'Behavior of next/previous on the last/first slide:')) self.end_slide_radio_button.setText(translate('OpenLP.GeneralTab', '&Remain on Slide')) self.wrap_slide_radio_button.setText(translate('OpenLP.GeneralTab', '&Wrap around')) self.next_item_radio_button.setText(translate('OpenLP.GeneralTab', '&Move to next/previous service item')) self.search_as_type_check_box.setText(translate('SongsPlugin.GeneralTab', 'Enable search as you type')) def load(self): """ Load settings from disk. """ settings = Settings() settings.beginGroup(self.settings_section) # The max recent files value does not have an interface and so never # gets actually stored in the settings therefore the default value of # 20 will always be used. self.recent_spin_box.setMaximum(settings.value('max recent files')) self.recent_spin_box.setValue(settings.value('recent file count')) self.media_plugin_check_box.setChecked(settings.value('save current plugin')) self.double_click_live_check_box.setChecked(settings.value('double click live')) self.single_click_preview_check_box.setChecked(settings.value('single click preview')) self.expand_service_item_check_box.setChecked(settings.value('expand service item')) self.enable_auto_close_check_box.setChecked(settings.value('enable exit confirmation')) self.hide_mouse_check_box.setChecked(settings.value('hide mouse')) self.service_name_day.setCurrentIndex(settings.value('default service day')) self.service_name_time.setTime(QtCore.QTime(settings.value('default service hour'), settings.value('default service minute'))) self.should_update_service_name_example = True self.service_name_edit.setText(settings.value('default service name')) default_service_enabled = settings.value('default service enabled') self.service_name_check_box.setChecked(default_service_enabled) self.service_name_check_box_toggled(default_service_enabled) self.x11_bypass_check_box.setChecked(settings.value('x11 bypass wm')) self.default_color = settings.value('default color') self.default_file_edit.setText(settings.value('default image')) self.slide_limits = settings.value('slide limits') self.is_search_as_you_type_enabled = settings.value('search as type') self.search_as_type_check_box.setChecked(self.is_search_as_you_type_enabled) # Prevent the dialog displayed by the alternate_rows_check_box to display. self.alternate_rows_check_box.blockSignals(True) self.alternate_rows_check_box.setChecked(settings.value('alternate rows')) self.alternate_rows_check_box.blockSignals(False) if self.slide_limits == SlideLimits.End: self.end_slide_radio_button.setChecked(True) elif self.slide_limits == SlideLimits.Wrap: self.wrap_slide_radio_button.setChecked(True) else: self.next_item_radio_button.setChecked(True) settings.endGroup() self.data_directory_copy_check_box.hide() self.new_data_directory_has_files_label.hide() self.data_directory_cancel_button.hide() # Since data location can be changed, make sure the path is present. self.current_data_path = AppLocation.get_data_path() if not os.path.exists(self.current_data_path): log.error('Data path not found %s' % self.current_data_path) answer = QtWidgets.QMessageBox.critical( self, translate('OpenLP.AdvancedTab', 'Data Directory Error'), translate('OpenLP.AdvancedTab', 'OpenLP data directory was not found\n\n%s\n\n' 'This data directory was previously changed from the OpenLP ' 'default location. If the new location was on removable ' 'media, that media needs to be made available.\n\n' 'Click "No" to stop loading OpenLP. allowing you to fix the the problem.\n\n' 'Click "Yes" to reset the data directory to the default ' 'location.').replace('%s', self.current_data_path), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer == QtWidgets.QMessageBox.No: log.info('User requested termination') self.main_window.clean_up() sys.exit() # Set data location to default. settings.remove('advanced/data path') self.current_data_path = AppLocation.get_data_path() log.warning('User requested data path set to default %s' % self.current_data_path) self.data_directory_label.setText(os.path.abspath(self.current_data_path)) self.default_color_button.color = self.default_color # Don't allow data directory move if running portable. if settings.value('advanced/is portable'): self.data_directory_group_box.hide() def save(self): """ Save settings to disk. """ settings = Settings() settings.beginGroup(self.settings_section) settings.setValue('default service enabled', self.service_name_check_box.isChecked()) service_name = self.service_name_edit.text() preset_is_valid = self.generate_service_name_example()[0] if service_name == UiStrings().DefaultServiceName or not preset_is_valid: settings.remove('default service name') self.service_name_edit.setText(service_name) else: settings.setValue('default service name', service_name) settings.setValue('default service day', self.service_name_day.currentIndex()) settings.setValue('default service hour', self.service_name_time.time().hour()) settings.setValue('default service minute', self.service_name_time.time().minute()) settings.setValue('recent file count', self.recent_spin_box.value()) settings.setValue('save current plugin', self.media_plugin_check_box.isChecked()) settings.setValue('double click live', self.double_click_live_check_box.isChecked()) settings.setValue('single click preview', self.single_click_preview_check_box.isChecked()) settings.setValue('expand service item', self.expand_service_item_check_box.isChecked()) settings.setValue('enable exit confirmation', self.enable_auto_close_check_box.isChecked()) settings.setValue('hide mouse', self.hide_mouse_check_box.isChecked()) settings.setValue('alternate rows', self.alternate_rows_check_box.isChecked()) settings.setValue('default color', self.default_color) settings.setValue('default image', self.default_file_edit.text()) settings.setValue('slide limits', self.slide_limits) if self.x11_bypass_check_box.isChecked() != settings.value('x11 bypass wm'): settings.setValue('x11 bypass wm', self.x11_bypass_check_box.isChecked()) self.settings_form.register_post_process('config_screen_changed') self.settings_form.register_post_process('slidecontroller_update_slide_limits') settings.setValue('search as type', self.is_search_as_you_type_enabled) settings.endGroup() def on_search_as_type_check_box_changed(self, check_state): self.is_search_as_you_type_enabled = (check_state == QtCore.Qt.Checked) self.settings_form.register_post_process('songs_config_updated') self.settings_form.register_post_process('custom_config_updated') def cancel(self): """ Dialogue was cancelled, remove any pending data path change. """ self.on_data_directory_cancel_button_clicked() SettingsTab.cancel(self) def service_name_check_box_toggled(self, default_service_enabled): """ Service Name options changed """ self.service_name_day.setEnabled(default_service_enabled) time_enabled = default_service_enabled and self.service_name_day.currentIndex() is not 7 self.service_name_time.setEnabled(time_enabled) self.service_name_edit.setEnabled(default_service_enabled) self.service_name_revert_button.setEnabled(default_service_enabled) def generate_service_name_example(self): """ Display an example of the template used """ preset_is_valid = True if self.service_name_day.currentIndex() == 7: local_time = datetime.now() else: now = datetime.now() day_delta = self.service_name_day.currentIndex() - now.weekday() if day_delta < 0: day_delta += 7 time = now + timedelta(days=day_delta) local_time = time.replace( hour=self.service_name_time.time().hour(), minute=self.service_name_time.time().minute() ) try: service_name_example = format_time(str(self.service_name_edit.text()), local_time) except ValueError: preset_is_valid = False service_name_example = translate('OpenLP.AdvancedTab', 'Syntax error.') return preset_is_valid, service_name_example def update_service_name_example(self, returned_value): """ Update the example service name. """ if not self.should_update_service_name_example: return name_example = self.generate_service_name_example()[1] self.service_name_example.setText(name_example) def on_service_name_day_changed(self, service_day): """ React to the day of the service name changing. """ self.service_name_time.setEnabled(service_day is not 7) self.update_service_name_example(None) def on_service_name_revert_button_clicked(self): """ Revert to the default service name. """ self.service_name_edit.setText(UiStrings().DefaultServiceName) self.service_name_edit.setFocus() def on_background_color_changed(self, color): """ Select the background colour of the default display screen. """ self.default_color = color def on_default_browse_button_clicked(self): """ Select an image for the default display screen. """ file_filters = '%s;;%s (*.*)' % (get_images_filter(), UiStrings().AllFiles) filename, filter_used = QtWidgets.QFileDialog.getOpenFileName(self, translate('OpenLP.AdvancedTab', 'Open File'), '', file_filters) if filename: self.default_file_edit.setText(filename) self.default_file_edit.setFocus() def on_data_directory_browse_button_clicked(self): """ Browse for a new data directory location. """ old_root_path = str(self.data_directory_label.text()) # Get the new directory location. new_data_path = QtWidgets.QFileDialog.getExistingDirectory(self, translate('OpenLP.AdvancedTab', 'Select Data Directory Location'), old_root_path, options=QtWidgets.QFileDialog.ShowDirsOnly) # Set the new data path. if new_data_path: new_data_path = os.path.normpath(new_data_path) if self.current_data_path.lower() == new_data_path.lower(): self.on_data_directory_cancel_button_clicked() return else: return # Make sure they want to change the data. answer = QtWidgets.QMessageBox.question(self, translate('OpenLP.AdvancedTab', 'Confirm Data Directory Change'), translate('OpenLP.AdvancedTab', 'Are you sure you want to change the ' 'location of the OpenLP data directory to:\n\n%s\n\nThe data ' 'directory will be changed when OpenLP is closed.'). replace('%s', new_data_path), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer != QtWidgets.QMessageBox.Yes: return # Check if data already exists here. self.check_data_overwrite(new_data_path) # Save the new location. self.main_window.set_new_data_path(new_data_path) self.new_data_directory_edit.setText(new_data_path) self.data_directory_cancel_button.show() def on_data_directory_default_button_clicked(self): """ Re-set the data directory location to the 'default' location. """ new_data_path = AppLocation.get_directory(AppLocation.DataDir) if self.current_data_path.lower() != new_data_path.lower(): # Make sure they want to change the data location back to the # default. answer = QtWidgets.QMessageBox.question(self, translate('OpenLP.AdvancedTab', 'Reset Data Directory'), translate('OpenLP.AdvancedTab', 'Are you sure you want to change ' 'the location of the OpenLP data ' 'directory to the default location?' '\n\nThis location will be used ' 'after OpenLP is closed.'), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer != QtWidgets.QMessageBox.Yes: return self.check_data_overwrite(new_data_path) # Save the new location. self.main_window.set_new_data_path(new_data_path) self.new_data_directory_edit.setText(os.path.abspath(new_data_path)) self.data_directory_cancel_button.show() else: # We cancel the change in case user changed their mind. self.on_data_directory_cancel_button_clicked() def on_data_directory_copy_check_box_toggled(self): """ Copy existing data when you change your data directory. """ self.main_window.set_copy_data(self.data_directory_copy_check_box.isChecked()) if self.data_exists: if self.data_directory_copy_check_box.isChecked(): self.new_data_directory_has_files_label.show() else: self.new_data_directory_has_files_label.hide() def check_data_overwrite(self, data_path): """ Check if there's already data in the target directory. """ test_path = os.path.join(data_path, 'songs') self.data_directory_copy_check_box.show() if os.path.exists(test_path): self.data_exists = True # Check is they want to replace existing data. answer = QtWidgets.QMessageBox.warning(self, translate('OpenLP.AdvancedTab', 'Overwrite Existing Data'), translate('OpenLP.AdvancedTab', 'WARNING: \n\nThe location you have selected \n\n%s\n\n' 'appears to contain OpenLP data files. Do you wish to ' 'replace these files with the current data files?'). replace('%s', os.path.abspath(data_path,)), QtWidgets.QMessageBox.StandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No), QtWidgets.QMessageBox.No) if answer == QtWidgets.QMessageBox.Yes: self.data_directory_copy_check_box.setChecked(True) self.new_data_directory_has_files_label.show() else: self.data_directory_copy_check_box.setChecked(False) self.new_data_directory_has_files_label.hide() else: self.data_exists = False self.data_directory_copy_check_box.setChecked(True) self.new_data_directory_has_files_label.hide() def on_data_directory_cancel_button_clicked(self): """ Cancel the data directory location change """ self.new_data_directory_edit.clear() self.data_directory_copy_check_box.setChecked(False) self.main_window.set_new_data_path(None) self.main_window.set_copy_data(False) self.data_directory_copy_check_box.hide() self.data_directory_cancel_button.hide() self.new_data_directory_has_files_label.hide() def on_default_revert_button_clicked(self): """ Revert the default screen back to the default settings. """ self.default_file_edit.setText(':/graphics/openlp-splash-screen.png') self.default_file_edit.setFocus() def on_alternate_rows_check_box_toggled(self, checked): """ Notify user about required restart. :param checked: The state of the check box (boolean). """ QtWidgets.QMessageBox.information(self, translate('OpenLP.AdvancedTab', 'Restart Required'), translate('OpenLP.AdvancedTab', 'This change will only take effect once OpenLP ' 'has been restarted.')) def on_end_slide_button_clicked(self): """ Stop at the end either top ot bottom """ self.slide_limits = SlideLimits.End def on_wrap_slide_button_clicked(self): """ Wrap round the service item """ self.slide_limits = SlideLimits.Wrap def on_next_item_button_clicked(self): """ Advance to the next service item """ self.slide_limits = SlideLimits.Next OpenLP-2.4/openlp/core/ui/filerenameform.py0000644000175000017500000000513612657640340017765 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The file rename dialog. """ from PyQt5 import QtCore, QtWidgets from .filerenamedialog import Ui_FileRenameDialog from openlp.core.common import Registry, RegistryProperties, translate class FileRenameForm(QtWidgets.QDialog, Ui_FileRenameDialog, RegistryProperties): """ The file rename dialog """ def __init__(self): """ Constructor """ super(FileRenameForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self._setup() def _setup(self): """ Set up the class. This method is mocked out by the tests. """ self.setupUi(self) def exec(self, copy=False): """ Run the Dialog with correct heading. """ if copy: self.setWindowTitle(translate('OpenLP.FileRenameForm', 'File Copy')) else: self.setWindowTitle(translate('OpenLP.FileRenameForm', 'File Rename')) self.file_name_edit.setFocus() return QtWidgets.QDialog.exec(self) OpenLP-2.4/openlp/core/ui/aboutdialog.py0000644000175000017500000012620112657640340017261 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from PyQt5 import QtGui, QtWidgets from openlp.core.common import UiStrings, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box class UiAboutDialog(object): """ The actual GUI widgets for the About form. """ def setup_ui(self, about_dialog): """ Set up the UI for the dialog. :param about_dialog: The QDialog object to set up. """ about_dialog.setObjectName('about_dialog') about_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) self.about_dialog_layout = QtWidgets.QVBoxLayout(about_dialog) self.about_dialog_layout.setObjectName('about_dialog_layout') self.logo_label = QtWidgets.QLabel(about_dialog) self.logo_label.setPixmap(QtGui.QPixmap(':/graphics/openlp-about-logo.png')) self.logo_label.setObjectName('logo_label') self.about_dialog_layout.addWidget(self.logo_label) self.about_notebook = QtWidgets.QTabWidget(about_dialog) self.about_notebook.setObjectName('about_notebook') self.about_tab = QtWidgets.QWidget() self.about_tab.setObjectName('about_tab') self.about_tab_layout = QtWidgets.QVBoxLayout(self.about_tab) self.about_tab_layout.setObjectName('about_tab_layout') self.about_text_edit = QtWidgets.QPlainTextEdit(self.about_tab) self.about_text_edit.setReadOnly(True) self.about_text_edit.setObjectName('about_text_edit') self.about_tab_layout.addWidget(self.about_text_edit) self.about_notebook.addTab(self.about_tab, '') self.credits_tab = QtWidgets.QWidget() self.credits_tab.setObjectName('credits_tab') self.credits_tab_layout = QtWidgets.QVBoxLayout(self.credits_tab) self.credits_tab_layout.setObjectName('credits_tab_layout') self.credits_text_edit = QtWidgets.QPlainTextEdit(self.credits_tab) self.credits_text_edit.setReadOnly(True) self.credits_text_edit.setObjectName('credits_text_edit') self.credits_tab_layout.addWidget(self.credits_text_edit) self.about_notebook.addTab(self.credits_tab, '') self.license_tab = QtWidgets.QWidget() self.license_tab.setObjectName('license_tab') self.license_tab_layout = QtWidgets.QVBoxLayout(self.license_tab) self.license_tab_layout.setObjectName('license_tab_layout') self.license_text_edit = QtWidgets.QPlainTextEdit(self.license_tab) self.license_text_edit.setReadOnly(True) self.license_text_edit.setObjectName('license_text_edit') self.license_tab_layout.addWidget(self.license_text_edit) self.about_notebook.addTab(self.license_tab, '') self.about_dialog_layout.addWidget(self.about_notebook) self.volunteer_button = create_button(None, 'volunteer_button', icon=':/system/system_volunteer.png') self.button_box = create_button_box(about_dialog, 'button_box', ['close'], [self.volunteer_button]) self.about_dialog_layout.addWidget(self.button_box) self.retranslate_ui(about_dialog) self.about_notebook.setCurrentIndex(0) def retranslate_ui(self, about_dialog): """ Dynamically translate the UI. :param about_dialog: The QDialog object to translate """ about_dialog.setWindowTitle('%s OpenLP' % UiStrings().About) self.about_text_edit.setPlainText( translate('OpenLP.AboutForm', 'OpenLP - Open Source Lyrics Projection\n' '\n' 'OpenLP is free church presentation software, or lyrics ' 'projection software, used to display slides of songs, Bible ' 'verses, videos, images, and even presentations (if ' 'Impress, PowerPoint or PowerPoint Viewer is installed) ' 'for church worship using a computer and a data projector.\n' '\n' 'Find out more about OpenLP: http://openlp.org/\n' '\n' 'OpenLP is written and maintained by volunteers. If you would ' 'like to see more free Christian software being written, please ' 'consider volunteering by using the button below.')) self.about_notebook.setTabText(self.about_notebook.indexOf(self.about_tab), UiStrings().About) lead = 'Raoul "superfly" Snyman' developers = ['Tim "TRB143" Bentley', 'Tomas "tgc" Groth', 'Samuel "samuel_m" Mehrbrodt', 'Andreas "googol" Preikschat', 'Ken "alisonken1" Roberts', 'Raoul "superfly" Snyman', 'Jonathan "springermac" Springer', 'Philip "Phill" Ridout'] contributors = ['Stuart "sibecker" Becker', 'Gerald "jerryb" Britton', 'Jonathan "gushie" Corwin', 'Samuel "MrGamgee" Findlay', 'Michael "cocooncrash" Gorven', 'Scott "sguerrieri" Guerrieri', 'Matthias "matthub" Hub', 'Meinert "m2j" Jordan', 'Armin "orangeshirt" K\xf6hler', 'Rafael "rafaellerm" Lerm', 'Erik "luen" Lundin', 'Edwin "edwinlunando" Lunando', 'Dmitriy Marmyshev', 'Brian "brianmeyer" Meyer', 'Joshua "milleja46" Miller', 'Stevan "ElderP" Pettit', 'Mattias "mahfiaz" P\xf5ldaru', 'Felipe Polo-Wood', 'Christian "crichter" Richter', 'Arjan "arjans" Schrijver', 'Simon "samscudder" Scudder', 'Jeffrey "whydoubt" Smith', 'Stefan Strasser', 'Maikel Stuivenberg', 'Martin "mijiti" Thompson', 'Jon "Meths" Tibble', 'Dave "Dave42W" Warnock', 'Oliver "OliWie" Wieland', 'Frode "frodus" Woldsund', 'Martin "matysek" Zibricky', 'Patrick "mohij" Zimmermann'] testers = ['Philip "Phill" Ridout', 'Wesley "wrst" Stout', 'John "jseagull1" Cegalis (lead)'] packagers = ['Thomas "tabthorpe" Abthorpe (FreeBSD)', 'Tim "TRB143" Bentley (Fedora and Android)', 'Joseph "jdmulloy" Mulloy (openSUSE)', 'Stevan "ElderP" Pettit (Windows)', 'Raoul "superfly" Snyman (Mac OS X, Debian, Ubuntu)', 'Wesley "wrst" Stout (Arch Linux)'] translators = { 'af': ['Johan "nuvolari" Mynhardt'], 'cs': ['Martin "matysek" Zibricky'], 'da': ['Henrik "Hsonesson" Sonesson'], 'de': ['Patrick "madmuffin" Br\xfcckner', 'Meinert "m2j" Jordan', 'Andreas "googol" Preikschat', 'Christian "crichter" Richter'], 'en_GB': ['Tim "TRB143" Bentley', 'Jonathan "gushie" Corwin'], 'en_ZA': ['Raoul "superfly" Snyman'], 'el': ['Alexander Siozos'], 'es': ['Josu\xe9 Z\xfa\xf1iga', 'Christian Gonzalez'], 'et': ['Mattias "mahfiaz" P\xf5ldaru'], 'fi': ['Jori "joribu" Brander', 'Tobbe "tobbeb" Bildo'], 'fr': ['Stephan\xe9 "stbrunner" Brunner', 'Jeremie "jnau05"', 'Carl "carl.fischer" Fischer'], 'hu': ['Gyuris Gell\xe9rt'], 'id': ['Mico "bangmico" Siahaan', ' ign_christian'], 'ja': ['Kunio "Kunio" Nakamaru', 'Chris Haris'], 'nb': ['Atle "pendlaren" Weibell', 'Frode "frodus" Woldsund'], 'nl': ['Arjan Schrijver', 'Arjen "typovar" van Voorst'], 'pl': ['Agata \u017B\u0105d\u0142o', 'Piotr Karze\u0142ek'], 'pt_BR': ['David Mederiros', 'Rafael "rafaellerm" Lerm', 'Eduardo Levi Chaves', 'Gustavo Bim', 'Rog\xeanio Bel\xe9m', 'Simon "samscudder" Scudder', 'Van Der Fran'], 'ru': ['Sergey "ratz" Ratz'], 'sv': ['Erik "luen" Lundin'], 'ta_LK': ['"Prasad"'], 'zh_CN': [' "executor" '] } documentors = ['Wesley "wrst" Stout', 'John "jseagull1" Cegalis (lead)'] project_lead = translate('OpenLP.AboutForm', 'Project Lead') devs = translate('OpenLP.AboutForm', 'Developers') cons = translate('OpenLP.AboutForm', 'Contributors') packs = translate('OpenLP.AboutForm', 'Packagers') tests = translate('OpenLP.AboutForm', 'Testers') laters = translate('OpenLP.AboutForm', 'Translators') af = translate('OpenLP.AboutForm', 'Afrikaans (af)') cs = translate('OpenLP.AboutForm', 'Czech (cs)') da = translate('OpenLP.AboutForm', 'Danish (da)') de = translate('OpenLP.AboutForm', 'German (de)') el = translate('OpenLP.AboutForm', 'Greek (el)') gb = translate('OpenLP.AboutForm', 'English, United Kingdom (en_GB)') enza = translate('OpenLP.AboutForm', 'English, South Africa (en_ZA)') es = translate('OpenLP.AboutForm', 'Spanish (es)') et = translate('OpenLP.AboutForm', 'Estonian (et)') fi = translate('OpenLP.AboutForm', 'Finnish (fi)') fr = translate('OpenLP.AboutForm', 'French (fr)') hu = translate('OpenLP.AboutForm', 'Hungarian (hu)') ind = translate('OpenLP.AboutForm', 'Indonesian (id)') ja = translate('OpenLP.AboutForm', 'Japanese (ja)') nb = translate('OpenLP.AboutForm', 'Norwegian Bokm\xe5l (nb)') nl = translate('OpenLP.AboutForm', 'Dutch (nl)') pl = translate('OpenLP.AboutForm', 'Polish (pl)') ptbr = translate('OpenLP.AboutForm', 'Portuguese, Brazil (pt_BR)') ru = translate('OpenLP.AboutForm', 'Russian (ru)') sv = translate('OpenLP.AboutForm', 'Swedish (sv)') talk = translate('OpenLP.AboutForm', 'Tamil(Sri-Lanka) (ta_LK)') zhcn = translate('OpenLP.AboutForm', 'Chinese(China) (zh_CN)') documentation = translate('OpenLP.AboutForm', 'Documentation') built_with = translate('OpenLP.AboutForm', 'Built With\n' ' Python: http://www.python.org/\n' ' Qt5: http://qt.io\n' ' PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro\n' ' Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/\n' ' MuPDF: http://www.mupdf.com/\n') final_credit = translate('OpenLP.AboutForm', 'Final Credit\n' ' "For God so loved the world that He gave\n' ' His one and only Son, so that whoever\n' ' believes in Him will not perish but inherit\n' ' eternal life." -- John 3:16\n\n' ' And last but not least, final credit goes to\n' ' God our Father, for sending His Son to die\n' ' on the cross, setting us free from sin. We\n' ' bring this software to you for free because\n' ' He has set us free.') self.credits_text_edit.setPlainText( '%s\n' ' %s\n' '\n' '%s\n' ' %s\n' '\n' '%s\n' ' %s\n' '\n' '%s\n' ' %s\n' '\n' '%s\n' ' %s\n' '\n' '%s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' ' %s\n' '\n' '%s\n' ' %s\n' '\n' '%s\n%s' % (project_lead, lead, devs, '\n '.join(developers), cons, '\n '.join(contributors), tests, '\n '.join(testers), packs, '\n '.join(packagers), laters, af, '\n '.join(translators['af']), cs, '\n '.join(translators['cs']), da, '\n '.join(translators['da']), de, '\n '.join(translators['de']), el, '\n '.join(translators['el']), gb, '\n '.join(translators['en_GB']), enza, '\n '.join(translators['en_ZA']), es, '\n '.join(translators['es']), et, '\n '.join(translators['et']), fi, '\n '.join(translators['fi']), fr, '\n '.join(translators['fr']), hu, '\n '.join(translators['hu']), ind, '\n '.join(translators['id']), ja, '\n '.join(translators['ja']), nb, '\n '.join(translators['nb']), nl, '\n '.join(translators['nl']), pl, '\n '.join(translators['pl']), ptbr, '\n '.join(translators['pt_BR']), ru, '\n '.join(translators['ru']), sv, '\n '.join(translators['sv']), talk, '\n '.join(translators['ta_LK']), zhcn, '\n '.join(translators['zh_CN']), documentation, '\n '.join(documentors), built_with, final_credit)) self.about_notebook.setTabText(self.about_notebook.indexOf(self.credits_tab), translate('OpenLP.AboutForm', 'Credits')) copyright_note = translate('OpenLP.AboutForm', 'Copyright \xa9 2004-2016 %s\n' 'Portions copyright \xa9 2004-2016 %s') % \ ('Raoul Snyman', 'Tim Bentley, Gerald Britton, Jonathan Corwin, Samuel Findlay, ' 'Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, ' 'Armin K\xf6hler, Erik Lundin, Edwin Lunando, Joshua Miller, ' 'Brian T. Meyer, Stevan Pettit, Andreas Preikschat, ' 'Mattias P\xf5ldaru, Christian Richter, ' 'Philip Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, ' 'Martin Thompson, Jon Tibble, Dave Warnock, Frode Woldsund, ' 'Martin Zibricky, Patrick Zimmermann') licence = translate('OpenLP.AboutForm', '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; version 2 of the ' 'License.') disclaimer = translate('OpenLP.AboutForm', '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 below ' 'for more details.') gpl_text = ('GNU GENERAL PUBLIC LICENSE\n' 'Version 2, June 1991\n' '\n' 'Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 ' 'Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ' 'Everyone is permitted to copy and distribute verbatim copies of ' 'this license document, but changing it is not allowed.\n' '\n' 'Preamble\n' '\n' 'The licenses for most software are designed to take away your ' 'freedom to share and change it. By contrast, the GNU General ' 'Public License is intended to guarantee your freedom to share ' 'and change free software--to make sure the software is free for ' 'all its users. This General Public License applies to most of ' 'the Free Software Foundation\'s software and to any other ' 'program whose authors commit to using it. (Some other Free ' 'Software Foundation software is covered by the GNU Lesser ' 'General Public License instead.) You can apply it to your ' 'programs, too.\n' '\n' 'When we speak of free software, we are referring to freedom, not ' 'price. Our General Public Licenses are designed to make sure ' 'that you have the freedom to distribute copies of free software ' '(and charge for this service if you wish), that you receive ' 'source code or can get it if you want it, that you can change ' 'the software or use pieces of it in new free programs; and that ' 'you know you can do these things.\n' '\n' 'To protect your rights, we need to make restrictions that forbid ' 'anyone to deny you these rights or to ask you to surrender the ' 'rights. These restrictions translate to certain responsibilities ' 'for you if you distribute copies of the software, or if you ' 'modify it.\n' '\n' 'For example, if you distribute copies of such a program, whether ' 'gratis or for a fee, you must give the recipients all the rights ' 'that you have. You must make sure that they, too, receive or ' 'can get the source code. And you must show them these terms so ' 'they know their rights.\n' '\n' 'We protect your rights with two steps: (1) copyright the ' 'software, and (2) offer you this license which gives you legal ' 'permission to copy, distribute and/or modify the software.\n' '\n' 'Also, for each author\'s protection and ours, we want to make ' 'certain that everyone understands that there is no warranty for ' 'this free software. If the software is modified by someone else ' 'and passed on, we want its recipients to know that what they ' 'have is not the original, so that any problems introduced by ' 'others will not reflect on the original authors\' reputations.\n' '\n' 'Finally, any free program is threatened constantly by software ' 'patents. We wish to avoid the danger that redistributors of a ' 'free program will individually obtain patent licenses, in effect ' 'making the program proprietary. To prevent this, we have made ' 'it clear that any patent must be licensed for everyone\'s free ' 'use or not licensed at all.\n' '\n' 'The precise terms and conditions for copying, distribution and ' 'modification follow.\n' '\n' 'GNU GENERAL PUBLIC LICENSE\n' 'TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n' '\n' '0. This License applies to any program or other work which ' 'contains a notice placed by the copyright holder saying it may ' 'be distributed under the terms of this General Public License. ' 'The "Program", below, refers to any such program or work, and a ' '"work based on the Program" means either the Program or any ' 'derivative work under copyright law: that is to say, a work ' 'containing the Program or a portion of it, either verbatim or ' 'with modifications and/or translated into another language. ' '(Hereinafter, translation is included without limitation in the ' 'term "modification".) Each licensee is addressed as "you".\n' '\n' 'Activities other than copying, distribution and modification are ' 'not covered by this License; they are outside its scope. The ' 'act of running the Program is not restricted, and the output ' 'from the Program is covered only if its contents constitute a ' 'work based on the Program (independent of having been made by ' 'running the Program). Whether that is true depends on what the ' 'Program does.\n' '\n' '1. You may copy and distribute verbatim copies of the Program\'s ' 'source code as you receive it, in any medium, provided that you ' 'conspicuously and appropriately publish on each copy an ' 'appropriate copyright notice and disclaimer of warranty; keep ' 'intact all the notices that refer to this License and to the ' 'absence of any warranty; and give any other recipients of the ' 'Program a copy of this License along with the Program.\n' '\n' 'You may charge a fee for the physical act of transferring a ' 'copy, and you may at your option offer warranty protection in ' 'exchange for a fee.\n' '\n' '2. You may modify your copy or copies of the Program or any ' 'portion of it, thus forming a work based on the Program, and ' 'copy and distribute such modifications or work under the terms ' 'of Section 1 above, provided that you also meet all of these ' 'conditions:\n' '\n' 'a) You must cause the modified files to carry prominent notices ' 'stating that you changed the files and the date of any change.\n' '\n' 'b) You must cause any work that you distribute or publish, that ' 'in whole or in part contains or is derived from the Program or ' 'any part thereof, to be licensed as a whole at no charge to all ' 'third parties under the terms of this License.\n' '\n' 'c) If the modified program normally reads commands interactively ' 'when run, you must cause it, when started running for such ' 'interactive use in the most ordinary way, to print or display an ' 'announcement including an appropriate copyright notice and a ' 'notice that there is no warranty (or else, saying that you ' 'provide a warranty) and that users may redistribute the program ' 'under these conditions, and telling the user how to view a copy ' 'of this License. (Exception: if the Program itself is ' 'interactive but does not normally print such an announcement, ' 'your work based on the Program is not required to print an ' 'announcement.)\n' '\n' 'These requirements apply to the modified work as a whole. If ' 'identifiable sections of that work are not derived from the ' 'Program, and can be reasonably considered independent and ' 'separate works in themselves, then this License, and its terms, ' 'do not apply to those sections when you distribute them as ' 'separate works. But when you distribute the same sections as ' 'part of a whole which is a work based on the Program, the ' 'distribution of the whole must be on the terms of this License, ' 'whose permissions for other licensees extend to the entire ' 'whole, and thus to each and every part regardless of who wrote ' 'it.\n' '\n' 'Thus, it is not the intent of this section to claim rights or ' 'contest your rights to work written entirely by you; rather, the ' 'intent is to exercise the right to control the distribution of ' 'derivative or collective works based on the Program.\n' '\n' 'In addition, mere aggregation of another work not based on the ' 'Program with the Program (or with a work based on the Program) ' 'on a volume of a storage or distribution medium does not bring ' 'the other work under the scope of this License.\n' '\n' '3. You may copy and distribute the Program (or a work based on ' 'it, under Section 2) in object code or executable form under the ' 'terms of Sections 1 and 2 above provided that you also do one of ' 'the following:\n' '\n' 'a) Accompany it with the complete corresponding machine-readable ' 'source code, which must be distributed under the terms of ' 'Sections 1 and 2 above on a medium customarily used for software ' 'interchange; or,\n' '\n' 'b) Accompany it with a written offer, valid for at least three ' 'years, to give any third party, for a charge no more than your ' 'cost of physically performing source distribution, a complete ' 'machine-readable copy of the corresponding source code, to be ' 'distributed under the terms of Sections 1 and 2 above on a ' 'medium customarily used for software interchange; or,\n' '\n' 'c) Accompany it with the information you received as to the ' 'offer to distribute corresponding source code. (This ' 'alternative is allowed only for noncommercial distribution and ' 'only if you received the program in object code or executable ' 'form with such an offer, in accord with Subsection b above.)\n' '\n' 'The source code for a work means the preferred form of the work ' 'for making modifications to it. For an executable work, ' 'complete source code means all the source code for all modules ' 'it contains, plus any associated interface definition files, ' 'plus the scripts used to control compilation and installation of ' 'the executable. However, as a special exception, the source ' 'code distributed need not include anything that is normally ' 'distributed (in either source or binary form) with the major ' 'components (compiler, kernel, and so on) of the operating system ' 'on which the executable runs, unless that component itself ' 'accompanies the executable.\n' '\n' 'If distribution of executable or object code is made by offering ' 'access to copy from a designated place, then offering equivalent ' 'access to copy the source code from the same place counts as ' 'distribution of the source code, even though third parties are ' 'not compelled to copy the source along with the object code.\n' '\n' '4. You may not copy, modify, sublicense, or distribute the ' 'Program except as expressly provided under this License. Any ' 'attempt otherwise to copy, modify, sublicense or distribute the ' 'Program is void, and will automatically terminate your rights ' 'under this License. However, parties who have received copies, ' 'or rights, from you under this License will not have their ' 'licenses terminated so long as such parties remain in full ' 'compliance.\n' '\n' '5. You are not required to accept this License, since you have ' 'not signed it. However, nothing else grants you permission to ' 'modify or distribute the Program or its derivative works. These ' 'actions are prohibited by law if you do not accept this ' 'License. Therefore, by modifying or distributing the Program ' '(or any work based on the Program), you indicate your acceptance ' 'of this License to do so, and all its terms and conditions for ' 'copying, distributing or modifying the Program or works based on ' 'it.\n' '\n' '6. Each time you redistribute the Program (or any work based on ' 'the Program), the recipient automatically receives a license ' 'from the original licensor to copy, distribute or modify the ' 'Program subject to these terms and conditions. You may not ' 'impose any further restrictions on the recipients\' exercise of ' 'the rights granted herein. You are not responsible for enforcing ' 'compliance by third parties to this License.\n' '\n' '7. If, as a consequence of a court judgment or allegation of ' 'patent infringement or for any other reason (not limited to ' 'patent issues), conditions are imposed on you (whether by court ' 'order, agreement or otherwise) that contradict the conditions of ' 'this License, they do not excuse you from the conditions of this ' 'License. If you cannot distribute so as to satisfy ' 'simultaneously your obligations under this License and any other ' 'pertinent obligations, then as a consequence you may not ' 'distribute the Program at all. For example, if a patent license ' 'would not permit royalty-free redistribution of the Program by ' 'all those who receive copies directly or indirectly through you, ' 'then the only way you could satisfy both it and this License ' 'would be to refrain entirely from distribution of the Program.\n' '\n' 'If any portion of this section is held invalid or unenforceable ' 'under any particular circumstance, the balance of the section is ' 'intended to apply and the section as a whole is intended to ' 'apply in other circumstances.\n' '\n' 'It is not the purpose of this section to induce you to infringe ' 'any patents or other property right claims or to contest ' 'validity of any such claims; this section has the sole purpose ' 'of protecting the integrity of the free software distribution ' 'system, which is implemented by public license practices. Many ' 'people have made generous contributions to the wide range of ' 'software distributed through that system in reliance on ' 'consistent application of that system; it is up to the ' 'author/donor to decide if he or she is willing to distribute ' 'software through any other system and a licensee cannot impose ' 'that choice.\n' '\n' 'This section is intended to make thoroughly clear what is ' 'believed to be a consequence of the rest of this License.\n' '\n' '8. If the distribution and/or use of the Program is restricted ' 'in certain countries either by patents or by copyrighted ' 'interfaces, the original copyright holder who places the Program ' 'under this License may add an explicit geographical distribution ' 'limitation excluding those countries, so that distribution is ' 'permitted only in or among countries not thus excluded. In such ' 'case, this License incorporates the limitation as if written in ' 'the body of this License.\n' '\n' '9. The Free Software Foundation may publish revised and/or new ' 'versions of the General Public License from time to time. Such ' 'new versions will be similar in spirit to the present version, ' 'but may differ in detail to address new problems or concerns.\n' '\n' 'Each version is given a distinguishing version number. If the ' 'Program specifies a version number of this License which applies ' 'to it and "any later version", you have the option of ' 'following the terms and conditions either of that version or of ' 'any later version published by the Free Software Foundation. If ' 'the Program does not specify a version number of this License, ' 'you may choose any version ever published by the Free Software ' 'Foundation.\n' '\n' '10. If you wish to incorporate parts of the Program into other ' 'free programs whose distribution conditions are different, write ' 'to the author to ask for permission. For software which is ' 'copyrighted by the Free Software Foundation, write to the Free ' 'Software Foundation; we sometimes make exceptions for this. Our ' 'decision will be guided by the two goals of preserving the free ' 'status of all derivatives of our free software and of promoting ' 'the sharing and reuse of software generally.\n' '\n' 'NO WARRANTY\n' '\n' '11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO ' 'WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE ' 'LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT ' 'HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT ' 'WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, ' 'BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY ' 'AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE ' 'QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE ' 'PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY ' 'SERVICING, REPAIR OR CORRECTION.\n' '\n' '12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO ' 'IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY ' 'MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE ' 'LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, ' 'INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR ' 'INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS ' 'OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY ' 'YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ' 'ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ' 'ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n' '\n' 'END OF TERMS AND CONDITIONS\n' '\n' 'How to Apply These Terms to Your New Programs\n' '\n' '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.\n' '\n' '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 convey the exclusion of warranty; and each file ' 'should have at least the "copyright" line and a pointer to where ' 'the full notice is found.\n' '\n' '\n' 'Copyright (C) \n' '\n' '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 2 of ' 'the License, or (at your option) any later version.\n' '\n' '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.\n' '\n' 'You should have received a copy of the GNU General Public ' 'License along with this program; if not, write to the Free ' 'Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ' 'Boston, MA 02110-1301 USA.\n' '\n' 'Also add information on how to contact you by electronic and ' 'paper mail.\n' '\n' 'If the program is interactive, make it output a short notice ' 'like this when it starts in an interactive mode:\n' '\n' 'Gnomovision version 69, Copyright (C) year name of author\n' 'Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type ' '"show w".\n' 'This is free software, and you are welcome to redistribute it ' 'under certain conditions; type "show c" for details.\n' '\n' 'The hypothetical commands "show w" and "show c" should show ' 'the appropriate parts of the General Public License. Of course, ' 'the commands you use may be called something other than "show ' 'w" and "show c"; they could even be mouse-clicks or menu items--' 'whatever suits your program.\n' '\n' 'You should also get your employer (if you work as a programmer) ' 'or your school, if any, to sign a "copyright disclaimer" for the ' 'program, if necessary. Here is a sample; alter the names:\n' '\n' 'Yoyodyne, Inc., hereby disclaims all copyright interest in the ' 'program "Gnomovision" (which makes passes at compilers) written ' 'by James Hacker.\n' '\n' ', 1 April 1989\n' 'Ty Coon, President of Vice\n' '\n' 'This General Public License does not permit incorporating your ' 'program into proprietary programs. If your program is a ' 'subroutine library, you may consider it more useful to permit ' 'linking proprietary applications with the library. If this is ' 'what you want to do, use the GNU Lesser General Public License ' 'instead of this License.') self.license_text_edit.setPlainText('%s\n\n%s\n\n%s\n\n\n%s' % (copyright_note, licence, disclaimer, gpl_text)) self.about_notebook.setTabText(self.about_notebook.indexOf(self.license_tab), translate('OpenLP.AboutForm', 'License')) self.volunteer_button.setText(translate('OpenLP.AboutForm', 'Volunteer')) OpenLP-2.4/openlp/core/ui/exceptiondialog.py0000644000175000017500000001463112657640340020150 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The GUI widgets of the exception dialog. """ from PyQt5 import QtGui, QtWidgets from openlp.core.lib import translate, build_icon from openlp.core.lib.ui import create_button, create_button_box class Ui_ExceptionDialog(object): """ The GUI widgets of the exception dialog. """ def setupUi(self, exception_dialog): """ Set up the UI. """ exception_dialog.setObjectName('exception_dialog') exception_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) self.exception_layout = QtWidgets.QVBoxLayout(exception_dialog) self.exception_layout.setObjectName('exception_layout') self.message_layout = QtWidgets.QHBoxLayout() self.message_layout.setObjectName('messageLayout') self.message_layout.addSpacing(12) self.bug_label = QtWidgets.QLabel(exception_dialog) self.bug_label.setPixmap(QtGui.QPixmap(':/graphics/exception.png')) self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) self.bug_label.setObjectName('bug_label') self.message_layout.addWidget(self.bug_label) self.message_layout.addSpacing(12) self.message_label = QtWidgets.QLabel(exception_dialog) self.message_label.setWordWrap(True) self.message_label.setObjectName('message_label') self.message_layout.addWidget(self.message_label) self.exception_layout.addLayout(self.message_layout) self.description_explanation = QtWidgets.QLabel(exception_dialog) self.description_explanation.setObjectName('description_explanation') self.exception_layout.addWidget(self.description_explanation) self.description_text_edit = QtWidgets.QPlainTextEdit(exception_dialog) self.description_text_edit.setObjectName('description_text_edit') self.exception_layout.addWidget(self.description_text_edit) self.description_word_count = QtWidgets.QLabel(exception_dialog) self.description_word_count.setObjectName('description_word_count') self.exception_layout.addWidget(self.description_word_count) self.exception_text_edit = QtWidgets.QPlainTextEdit(exception_dialog) self.exception_text_edit.setReadOnly(True) self.exception_text_edit.setObjectName('exception_text_edit') self.exception_layout.addWidget(self.exception_text_edit) self.send_report_button = create_button(exception_dialog, 'send_report_button', icon=':/general/general_email.png', click=self.on_send_report_button_clicked) self.save_report_button = create_button(exception_dialog, 'save_report_button', icon=':/general/general_save.png', click=self.on_save_report_button_clicked) self.attach_tile_button = create_button(exception_dialog, 'attach_tile_button', icon=':/general/general_open.png', click=self.on_attach_file_button_clicked) self.button_box = create_button_box(exception_dialog, 'button_box', ['close'], [self.send_report_button, self.save_report_button, self.attach_tile_button]) self.exception_layout.addWidget(self.button_box) self.retranslateUi(exception_dialog) self.description_text_edit.textChanged.connect(self.on_description_updated) def retranslateUi(self, exception_dialog): """ Translate the widgets on the fly. """ exception_dialog.setWindowTitle(translate('OpenLP.ExceptionDialog', 'Error Occurred')) self.description_explanation.setText( translate('OpenLP.ExceptionDialog', 'Please enter a description of what you were doing to cause this error.' ' If possible, write in English.' '\n(Minimum 20 characters)')) self.message_label.setText( translate('OpenLP.ExceptionDialog', 'Oops! OpenLP hit a problem, and couldn\'t recover. The text in the ' 'box below contains information that might be helpful to the OpenLP ' 'developers, so please e-mail it to bugs@openlp.org, along with a ' 'detailed description of what you were doing when the problem ' 'occurred. Also attach any files that triggered the problem.')) self.send_report_button.setText(translate('OpenLP.ExceptionDialog', 'Send E-Mail')) self.save_report_button.setText(translate('OpenLP.ExceptionDialog', 'Save to File')) self.attach_tile_button.setText(translate('OpenLP.ExceptionDialog', 'Attach File')) OpenLP-2.4/openlp/core/ui/firsttimewizard.py0000644000175000017500000004252712657640340020226 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets for the first time wizard. """ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import translate, is_macosx, clean_button_text from openlp.core.lib import build_icon from openlp.core.lib.ui import add_welcome_page class FirstTimePage(object): """ An enumeration class with each of the pages of the wizard. """ Welcome = 0 Download = 1 NoInternet = 2 Plugins = 3 Songs = 4 Bibles = 5 Themes = 6 Defaults = 7 Progress = 8 class UiFirstTimeWizard(object): """ The UI widgets for the first time wizard. """ def setup_ui(self, first_time_wizard): """ Set up the UI. :param first_time_wizard: The wizard form """ first_time_wizard.setObjectName('first_time_wizard') first_time_wizard.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) first_time_wizard.resize(550, 386) first_time_wizard.setModal(True) first_time_wizard.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | QtWidgets.QWizard.NoBackButtonOnLastPage | QtWidgets.QWizard.HaveCustomButton1 | QtWidgets.QWizard.HaveCustomButton2) if is_macosx(): first_time_wizard.setPixmap(QtWidgets.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png')) first_time_wizard.resize(634, 386) else: first_time_wizard.setWizardStyle(QtWidgets.QWizard.ModernStyle) self.finish_button = self.button(QtWidgets.QWizard.FinishButton) self.no_internet_finish_button = self.button(QtWidgets.QWizard.CustomButton1) self.cancel_button = self.button(QtWidgets.QWizard.CancelButton) self.no_internet_cancel_button = self.button(QtWidgets.QWizard.CustomButton2) self.next_button = self.button(QtWidgets.QWizard.NextButton) self.back_button = self.button(QtWidgets.QWizard.BackButton) add_welcome_page(first_time_wizard, ':/wizards/wizard_firsttime.bmp') # The download page self.download_page = QtWidgets.QWizardPage() self.download_page.setObjectName('download_page') self.download_layout = QtWidgets.QVBoxLayout(self.download_page) self.download_layout.setContentsMargins(48, 48, 48, 48) self.download_layout.setObjectName('download_layout') self.download_label = QtWidgets.QLabel(self.download_page) self.download_label.setObjectName('download_label') self.download_layout.addWidget(self.download_label) first_time_wizard.setPage(FirstTimePage.Download, self.download_page) # The "you don't have an internet connection" page. self.no_internet_page = QtWidgets.QWizardPage() self.no_internet_page.setObjectName('no_internet_page') self.no_internet_layout = QtWidgets.QVBoxLayout(self.no_internet_page) self.no_internet_layout.setContentsMargins(50, 30, 50, 40) self.no_internet_layout.setObjectName('no_internet_layout') self.no_internet_label = QtWidgets.QLabel(self.no_internet_page) self.no_internet_label.setWordWrap(True) self.no_internet_label.setObjectName('no_internet_label') self.no_internet_layout.addWidget(self.no_internet_label) first_time_wizard.setPage(FirstTimePage.NoInternet, self.no_internet_page) # The plugins page self.plugin_page = QtWidgets.QWizardPage() self.plugin_page.setObjectName('plugin_page') self.plugin_layout = QtWidgets.QVBoxLayout(self.plugin_page) self.plugin_layout.setContentsMargins(40, 15, 40, 0) self.plugin_layout.setObjectName('plugin_layout') self.songs_check_box = QtWidgets.QCheckBox(self.plugin_page) self.songs_check_box.setChecked(True) self.songs_check_box.setObjectName('songs_check_box') self.plugin_layout.addWidget(self.songs_check_box) self.custom_check_box = QtWidgets.QCheckBox(self.plugin_page) self.custom_check_box.setChecked(True) self.custom_check_box.setObjectName('custom_check_box') self.plugin_layout.addWidget(self.custom_check_box) self.bible_check_box = QtWidgets.QCheckBox(self.plugin_page) self.bible_check_box.setChecked(True) self.bible_check_box.setObjectName('bible_check_box') self.plugin_layout.addWidget(self.bible_check_box) self.image_check_box = QtWidgets.QCheckBox(self.plugin_page) self.image_check_box.setChecked(True) self.image_check_box.setObjectName('image_check_box') self.plugin_layout.addWidget(self.image_check_box) self.presentation_check_box = QtWidgets.QCheckBox(self.plugin_page) self.presentation_check_box.setChecked(True) self.presentation_check_box.setObjectName('presentation_check_box') self.plugin_layout.addWidget(self.presentation_check_box) self.media_check_box = QtWidgets.QCheckBox(self.plugin_page) self.media_check_box.setChecked(True) self.media_check_box.setObjectName('media_check_box') self.plugin_layout.addWidget(self.media_check_box) self.remote_check_box = QtWidgets.QCheckBox(self.plugin_page) self.remote_check_box.setObjectName('remote_check_box') self.plugin_layout.addWidget(self.remote_check_box) self.song_usage_check_box = QtWidgets.QCheckBox(self.plugin_page) self.song_usage_check_box.setChecked(True) self.song_usage_check_box.setObjectName('song_usage_check_box') self.plugin_layout.addWidget(self.song_usage_check_box) self.alert_check_box = QtWidgets.QCheckBox(self.plugin_page) self.alert_check_box.setChecked(True) self.alert_check_box.setObjectName('alert_check_box') self.plugin_layout.addWidget(self.alert_check_box) first_time_wizard.setPage(FirstTimePage.Plugins, self.plugin_page) # The song samples page self.songs_page = QtWidgets.QWizardPage() self.songs_page.setObjectName('songs_page') self.songs_layout = QtWidgets.QVBoxLayout(self.songs_page) self.songs_layout.setContentsMargins(50, 20, 50, 20) self.songs_layout.setObjectName('songs_layout') self.songs_list_widget = QtWidgets.QListWidget(self.songs_page) self.songs_list_widget.setAlternatingRowColors(True) self.songs_list_widget.setObjectName('songs_list_widget') self.songs_layout.addWidget(self.songs_list_widget) first_time_wizard.setPage(FirstTimePage.Songs, self.songs_page) # The Bible samples page self.bibles_page = QtWidgets.QWizardPage() self.bibles_page.setObjectName('bibles_page') self.bibles_layout = QtWidgets.QVBoxLayout(self.bibles_page) self.bibles_layout.setContentsMargins(50, 20, 50, 20) self.bibles_layout.setObjectName('bibles_layout') self.bibles_tree_widget = QtWidgets.QTreeWidget(self.bibles_page) self.bibles_tree_widget.setAlternatingRowColors(True) self.bibles_tree_widget.header().setVisible(False) self.bibles_tree_widget.setObjectName('bibles_tree_widget') self.bibles_layout.addWidget(self.bibles_tree_widget) first_time_wizard.setPage(FirstTimePage.Bibles, self.bibles_page) # The theme samples page self.themes_page = QtWidgets.QWizardPage() self.themes_page.setObjectName('themes_page') self.themes_layout = QtWidgets.QVBoxLayout(self.themes_page) self.themes_layout.setContentsMargins(20, 50, 20, 60) self.themes_layout.setObjectName('themes_layout') self.themes_list_widget = QtWidgets.QListWidget(self.themes_page) self.themes_list_widget.setViewMode(QtWidgets.QListView.IconMode) self.themes_list_widget.setMovement(QtWidgets.QListView.Static) self.themes_list_widget.setFlow(QtWidgets.QListView.LeftToRight) self.themes_list_widget.setSpacing(4) self.themes_list_widget.setUniformItemSizes(True) self.themes_list_widget.setIconSize(QtCore.QSize(133, 100)) self.themes_list_widget.setWrapping(False) self.themes_list_widget.setObjectName('themes_list_widget') self.themes_layout.addWidget(self.themes_list_widget) first_time_wizard.setPage(FirstTimePage.Themes, self.themes_page) # the default settings page self.defaults_page = QtWidgets.QWizardPage() self.defaults_page.setObjectName('defaults_page') self.defaults_layout = QtWidgets.QFormLayout(self.defaults_page) self.defaults_layout.setContentsMargins(50, 20, 50, 20) self.defaults_layout.setObjectName('defaults_layout') self.display_label = QtWidgets.QLabel(self.defaults_page) self.display_label.setObjectName('display_label') self.display_combo_box = QtWidgets.QComboBox(self.defaults_page) self.display_combo_box.setEditable(False) self.display_combo_box.setInsertPolicy(QtWidgets.QComboBox.NoInsert) self.display_combo_box.setObjectName('display_combo_box') self.defaults_layout.addRow(self.display_label, self.display_combo_box) self.theme_label = QtWidgets.QLabel(self.defaults_page) self.theme_label.setObjectName('theme_label') self.theme_combo_box = QtWidgets.QComboBox(self.defaults_page) self.theme_combo_box.setEditable(False) self.theme_combo_box.setInsertPolicy(QtWidgets.QComboBox.NoInsert) self.theme_combo_box.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToContents) self.theme_combo_box.setObjectName('theme_combo_box') self.defaults_layout.addRow(self.theme_label, self.theme_combo_box) first_time_wizard.setPage(FirstTimePage.Defaults, self.defaults_page) # Progress page self.progress_page = QtWidgets.QWizardPage() self.progress_page.setObjectName('progress_page') self.progress_layout = QtWidgets.QVBoxLayout(self.progress_page) self.progress_layout.setContentsMargins(48, 48, 48, 48) self.progress_layout.setObjectName('progress_layout') self.progress_label = QtWidgets.QLabel(self.progress_page) self.progress_label.setObjectName('progress_label') self.progress_layout.addWidget(self.progress_label) self.progress_bar = QtWidgets.QProgressBar(self.progress_page) self.progress_bar.setObjectName('progress_bar') self.progress_layout.addWidget(self.progress_bar) first_time_wizard.setPage(FirstTimePage.Progress, self.progress_page) self.retranslate_ui(first_time_wizard) def retranslate_ui(self, first_time_wizard): """ Translate the UI on the fly :param first_time_wizard: The wizard form """ first_time_wizard.setWindowTitle(translate('OpenLP.FirstTimeWizard', 'First Time Wizard')) first_time_wizard.title_label.setText('%s' % translate('OpenLP.FirstTimeWizard', 'Welcome to the First Time Wizard')) first_time_wizard.information_label.setText( translate('OpenLP.FirstTimeWizard', 'This wizard will help you to configure OpenLP for initial use. ' 'Click the %s button below to start.') % clean_button_text(first_time_wizard.buttonText(QtWidgets.QWizard.NextButton))) self.download_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Downloading Resource Index')) self.download_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Please wait while the resource index is ' 'downloaded.')) self.download_label.setText(translate('OpenLP.FirstTimeWizard', 'Please wait while OpenLP downloads the ' 'resource index file...')) self.plugin_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Activate required Plugins')) self.plugin_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Select the Plugins you wish to use. ')) self.songs_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Songs')) self.custom_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Custom Slides')) self.bible_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Bible')) self.image_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Images')) self.presentation_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Presentations')) self.media_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Media (Audio and Video)')) self.remote_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Allow remote access')) self.song_usage_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Monitor Song Usage')) self.alert_check_box.setText(translate('OpenLP.FirstTimeWizard', 'Allow Alerts')) self.no_internet_page.setTitle(translate('OpenLP.FirstTimeWizard', 'No Internet Connection')) self.no_internet_page.setSubTitle( translate('OpenLP.FirstTimeWizard', 'Unable to detect an Internet connection.')) self.no_internet_text = translate('OpenLP.FirstTimeWizard', 'No Internet connection was found. The First Time Wizard needs an Internet ' 'connection in order to be able to download sample songs, Bibles and themes.' ' Click the Finish button now to start OpenLP with initial settings and ' 'no sample data.\n\nTo re-run the First Time Wizard and import this sample ' 'data at a later time, check your Internet connection and re-run this ' 'wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP.') self.cancel_wizard_text = translate('OpenLP.FirstTimeWizard', '\n\nTo cancel the First Time Wizard completely (and not start OpenLP), ' 'click the %s button now.') % \ clean_button_text(first_time_wizard.buttonText(QtWidgets.QWizard.CancelButton)) self.songs_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Sample Songs')) self.songs_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Select and download public domain songs.')) self.bibles_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Sample Bibles')) self.bibles_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Select and download free Bibles.')) self.themes_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Sample Themes')) self.themes_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Select and download sample themes.')) self.defaults_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Default Settings')) self.defaults_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Set up default settings to be used by OpenLP.')) self.display_label.setText(translate('OpenLP.FirstTimeWizard', 'Default output display:')) self.theme_label.setText(translate('OpenLP.FirstTimeWizard', 'Select default theme:')) self.progress_page.setTitle(translate('OpenLP.FirstTimeWizard', 'Downloading and Configuring')) self.progress_page.setSubTitle(translate('OpenLP.FirstTimeWizard', 'Please wait while resources are downloaded ' 'and OpenLP is configured.')) self.progress_label.setText(translate('OpenLP.FirstTimeWizard', 'Starting configuration process...')) first_time_wizard.setButtonText(QtWidgets.QWizard.CustomButton1, translate('OpenLP.FirstTimeWizard', 'Finish')) first_time_wizard.setButtonText(QtWidgets.QWizard.CustomButton2, translate('OpenLP.FirstTimeWizard', 'Cancel')) OpenLP-2.4/openlp/core/ui/formattingtagdialog.py0000644000175000017500000002014212657640340021012 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets for the formatting tags window. """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import UiStrings, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_FormattingTagDialog(object): """ The UI widgets for the formatting tags window. """ def setupUi(self, formatting_tag_dialog): """ Set up the UI """ formatting_tag_dialog.setObjectName('formatting_tag_dialog') formatting_tag_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) formatting_tag_dialog.resize(725, 548) self.list_data_grid_layout = QtWidgets.QVBoxLayout(formatting_tag_dialog) self.list_data_grid_layout.setContentsMargins(8, 8, 8, 8) self.list_data_grid_layout.setObjectName('list_data_grid_layout') self.tag_table_widget_read_label = QtWidgets.QLabel() self.list_data_grid_layout.addWidget(self.tag_table_widget_read_label) self.tag_table_widget_read = QtWidgets.QTableWidget(formatting_tag_dialog) self.tag_table_widget_read.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.tag_table_widget_read.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) self.tag_table_widget_read.setAlternatingRowColors(True) self.tag_table_widget_read.setCornerButtonEnabled(False) self.tag_table_widget_read.setObjectName('tag_table_widget_read') self.tag_table_widget_read.setColumnCount(4) self.tag_table_widget_read.setRowCount(0) self.tag_table_widget_read.horizontalHeader().setStretchLastSection(True) item = QtWidgets.QTableWidgetItem() self.tag_table_widget_read.setHorizontalHeaderItem(0, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget_read.setHorizontalHeaderItem(1, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget_read.setHorizontalHeaderItem(2, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget_read.setHorizontalHeaderItem(3, item) self.list_data_grid_layout.addWidget(self.tag_table_widget_read) self.tag_table_widget_label = QtWidgets.QLabel() self.list_data_grid_layout.addWidget(self.tag_table_widget_label) self.tag_table_widget = QtWidgets.QTableWidget(formatting_tag_dialog) self.tag_table_widget.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.tag_table_widget.setEditTriggers(QtWidgets.QAbstractItemView.AllEditTriggers) self.tag_table_widget.setAlternatingRowColors(True) self.tag_table_widget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) self.tag_table_widget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) self.tag_table_widget.setCornerButtonEnabled(False) self.tag_table_widget.setObjectName('tag_table_widget') self.tag_table_widget.setColumnCount(4) self.tag_table_widget.setRowCount(0) self.tag_table_widget.horizontalHeader().setStretchLastSection(True) item = QtWidgets.QTableWidgetItem() self.tag_table_widget.setHorizontalHeaderItem(0, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget.setHorizontalHeaderItem(1, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget.setHorizontalHeaderItem(2, item) item = QtWidgets.QTableWidgetItem() self.tag_table_widget.setHorizontalHeaderItem(3, item) self.list_data_grid_layout.addWidget(self.tag_table_widget) self.edit_button_layout = QtWidgets.QHBoxLayout() self.new_button = QtWidgets.QPushButton(formatting_tag_dialog) self.new_button.setIcon(build_icon(':/general/general_new.png')) self.new_button.setObjectName('new_button') self.edit_button_layout.addWidget(self.new_button) self.delete_button = QtWidgets.QPushButton(formatting_tag_dialog) self.delete_button.setIcon(build_icon(':/general/general_delete.png')) self.delete_button.setObjectName('delete_button') self.edit_button_layout.addWidget(self.delete_button) self.edit_button_layout.addStretch() self.list_data_grid_layout.addLayout(self.edit_button_layout) self.button_box = create_button_box(formatting_tag_dialog, 'button_box', ['cancel', 'save', 'defaults']) self.save_button = self.button_box.button(QtWidgets.QDialogButtonBox.Save) self.save_button.setObjectName('save_button') self.restore_button = self.button_box.button(QtWidgets.QDialogButtonBox.RestoreDefaults) self.restore_button.setIcon(build_icon(':/general/general_revert.png')) self.restore_button.setObjectName('restore_button') self.list_data_grid_layout.addWidget(self.button_box) self.retranslateUi(formatting_tag_dialog) def retranslateUi(self, formatting_tag_dialog): """ Translate the UI on the fly """ formatting_tag_dialog.setWindowTitle(translate('OpenLP.FormattingTagDialog', 'Configure Formatting Tags')) self.delete_button.setText(UiStrings().Delete) self.new_button.setText(UiStrings().New) self.tag_table_widget_read_label.setText(translate('OpenLP.FormattingTagDialog', 'Default Formatting')) self.tag_table_widget_read.horizontalHeaderItem(0).\ setText(translate('OpenLP.FormattingTagDialog', 'Description')) self.tag_table_widget_read.horizontalHeaderItem(1).setText(translate('OpenLP.FormattingTagDialog', 'Tag')) self.tag_table_widget_read.horizontalHeaderItem(2).\ setText(translate('OpenLP.FormattingTagDialog', 'Start HTML')) self.tag_table_widget_read.horizontalHeaderItem(3).setText(translate('OpenLP.FormattingTagDialog', 'End HTML')) self.tag_table_widget_read.setColumnWidth(0, 120) self.tag_table_widget_read.setColumnWidth(1, 80) self.tag_table_widget_read.setColumnWidth(2, 330) self.tag_table_widget_label.setText(translate('OpenLP.FormattingTagDialog', 'Custom Formatting')) self.tag_table_widget.horizontalHeaderItem(0).setText(translate('OpenLP.FormattingTagDialog', 'Description')) self.tag_table_widget.horizontalHeaderItem(1).setText(translate('OpenLP.FormattingTagDialog', 'Tag')) self.tag_table_widget.horizontalHeaderItem(2).setText(translate('OpenLP.FormattingTagDialog', 'Start HTML')) self.tag_table_widget.horizontalHeaderItem(3).setText(translate('OpenLP.FormattingTagDialog', 'End HTML')) self.tag_table_widget.setColumnWidth(0, 120) self.tag_table_widget.setColumnWidth(1, 80) self.tag_table_widget.setColumnWidth(2, 330) OpenLP-2.4/openlp/core/ui/formattingtagcontroller.py0000644000175000017500000001475012657640340021746 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`formattingtagform` provides an Tag Edit facility. The Base set are protected and included each time loaded. Custom tags can be defined and saved. The Custom Tag arrays are saved in a pickle so QSettings works on them. Base Tags cannot be changed. """ import re from openlp.core.common import translate from openlp.core.lib import FormattingTags class FormattingTagController(object): """ The :class:`FormattingTagController` manages the non UI functions . """ def __init__(self): """ Initiator """ self.html_tag_regex = re.compile( r'<(?:(?P/(?=[^\s/>]+>))?' r'(?P[^\s/!\?>]+)(?:\s+[^\s=]+="[^"]*")*\s*(?P/)?' r'|(?P!\[CDATA\[(?:(?!\]\]>).)*\]\])' r'|(?P\?(?:(?!\?>).)*\?)' r'|(?P!--(?:(?!-->).)*--))>', re.UNICODE) self.html_regex = re.compile(r'^(?:[^<>]*%s)*[^<>]*$' % self.html_tag_regex.pattern) def pre_save(self): """ Cleanup the array before save validation runs """ self.protected_tags = [tag for tag in FormattingTags.html_expands if tag.get('protected')] self.custom_tags = [] def validate_for_save(self, desc, tag, start_html, end_html): """ Validate a custom tag and add to the tags array if valid.. `desc` Explanation of the tag. `tag` The tag in the song used to mark the text. `start_html` The start html tag. `end_html` The end html tag. """ for line_number, html1 in enumerate(self.protected_tags): if self._strip(html1['start tag']) == tag: return translate('OpenLP.FormattingTagForm', 'Tag %s already defined.') % tag if self._strip(html1['desc']) == desc: return translate('OpenLP.FormattingTagForm', 'Description %s already defined.') % tag for line_number, html1 in enumerate(self.custom_tags): if self._strip(html1['start tag']) == tag: return translate('OpenLP.FormattingTagForm', 'Tag %s already defined.') % tag if self._strip(html1['desc']) == desc: return translate('OpenLP.FormattingTagForm', 'Description %s already defined.') % tag tag = { 'desc': desc, 'start tag': '{%s}' % tag, 'start html': start_html, 'end tag': '{/%s}' % tag, 'end html': end_html, 'protected': False, 'temporary': False } self.custom_tags.append(tag) def save_tags(self): """ Save the new tags if they are valid. """ FormattingTags.save_html_tags(self.custom_tags) FormattingTags.load_tags() def _strip(self, tag): """ Remove tag wrappers for editing. `tag` Tag to be stripped """ tag = tag.replace('{', '') tag = tag.replace('}', '') return tag def start_html_to_end_html(self, start_html): """ Return the end HTML for a given start HTML or None if invalid. `start_html` The start html tag. """ end_tags = [] match = self.html_regex.match(start_html) if match: match = self.html_tag_regex.search(start_html) while match: if match.group('tag'): tag = match.group('tag').lower() if match.group('close'): if match.group('empty') or not end_tags or end_tags.pop() != tag: return elif not match.group('empty'): end_tags.append(tag) match = self.html_tag_regex.search(start_html, match.end()) return ''.join(map(lambda tag: '' % tag, reversed(end_tags))) def start_tag_changed(self, start_html, end_html): """ Validate the HTML tags when the start tag has been changed. `start_html` The start html tag. `end_html` The end html tag. """ end = self.start_html_to_end_html(start_html) if not end_html: if not end: return translate('OpenLP.FormattingTagForm', 'Start tag %s is not valid HTML') % start_html, None return None, end return None, None def end_tag_changed(self, start_html, end_html): """ Validate the HTML tags when the end tag has been changed. `start_html` The start html tag. `end_html` The end html tag. """ end = self.start_html_to_end_html(start_html) if not end_html: return None, end if end and end != end_html: return translate('OpenLP.FormattingTagForm', 'End tag %(end)s does not match end tag for start tag %(start)s') % \ {'end': end, 'start': start_html}, None return None, None OpenLP-2.4/openlp/core/ui/settingsdialog.py0000644000175000017500000000637612657640340020021 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The UI widgets of the settings dialog. """ from PyQt5 import QtCore, QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box class Ui_SettingsDialog(object): """ The UI widgets of the settings dialog. """ def setupUi(self, settings_dialog): """ Set up the UI """ settings_dialog.setObjectName('settings_dialog') settings_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) settings_dialog.resize(800, 700) self.dialog_layout = QtWidgets.QGridLayout(settings_dialog) self.dialog_layout.setObjectName('dialog_layout') self.dialog_layout.setContentsMargins(8, 8, 8, 8) self.setting_list_widget = QtWidgets.QListWidget(settings_dialog) self.setting_list_widget.setUniformItemSizes(True) self.setting_list_widget.setMinimumSize(QtCore.QSize(150, 0)) self.setting_list_widget.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.setting_list_widget.setObjectName('setting_list_widget') self.dialog_layout.addWidget(self.setting_list_widget, 0, 0, 1, 1) self.stacked_layout = QtWidgets.QStackedLayout() self.stacked_layout.setObjectName('stacked_layout') self.dialog_layout.addLayout(self.stacked_layout, 0, 1, 1, 1) self.button_box = create_button_box(settings_dialog, 'button_box', ['cancel', 'ok']) self.dialog_layout.addWidget(self.button_box, 1, 1, 1, 1) self.retranslateUi(settings_dialog) def retranslateUi(self, settings_dialog): """ Translate the UI on the fly """ settings_dialog.setWindowTitle(translate('OpenLP.SettingsForm', 'Configure OpenLP')) OpenLP-2.4/openlp/core/ui/wizard.py0000644000175000017500000003144312657640340016272 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:``wizard`` module provides generic wizard tools for OpenLP. """ import logging import os from PyQt5 import QtGui, QtWidgets from openlp.core.common import Registry, RegistryProperties, Settings, UiStrings, translate, is_macosx from openlp.core.lib import build_icon from openlp.core.lib.ui import add_welcome_page log = logging.getLogger(__name__) class WizardStrings(object): """ Provide standard strings for wizards to use. """ # Applications/Formats we import from or export to. These get used in # multiple places but do not need translating unless you find evidence of # the writers translating their own product name. CSV = 'CSV' OS = 'OpenSong' OSIS = 'OSIS' ZEF = 'Zefania' # These strings should need a good reason to be retranslated elsewhere. FinishedImport = translate('OpenLP.Ui', 'Finished import.') FormatLabel = translate('OpenLP.Ui', 'Format:') HeaderStyle = '%s' Importing = translate('OpenLP.Ui', 'Importing') ImportingType = translate('OpenLP.Ui', 'Importing "%s"...') ImportSelect = translate('OpenLP.Ui', 'Select Import Source') ImportSelectLong = translate('OpenLP.Ui', 'Select the import format and the location to import from.') OpenTypeFile = translate('OpenLP.Ui', 'Open %s File') OpenTypeFolder = translate('OpenLP.Ui', 'Open %s Folder') PercentSymbolFormat = translate('OpenLP.Ui', '%p%') Ready = translate('OpenLP.Ui', 'Ready.') StartingImport = translate('OpenLP.Ui', 'Starting import...') YouSpecifyFile = translate('OpenLP.Ui', 'You need to specify one %s file to import from.', 'A file type e.g. OpenSong') YouSpecifyFiles = translate('OpenLP.Ui', 'You need to specify at least one %s file to import from.', 'A file type e.g. OpenSong') YouSpecifyFolder = translate('OpenLP.Ui', 'You need to specify one %s folder to import from.', 'A song format e.g. PowerSong') class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): """ Generic OpenLP wizard to provide generic functionality and a unified look and feel. ``parent`` The QWidget-derived parent of the wizard. ``plugin`` Plugin this wizard is part of. The plugin will be saved in the "plugin" variable. The plugin will also be used as basis for the file dialog methods this class provides. ``name`` The object name this wizard should have. ``image`` The image to display on the "welcome" page of the wizard. Should be 163x350. ``add_progress_page`` Whether to add a progress page with a progressbar at the end of the wizard. """ def __init__(self, parent, plugin, name, image, add_progress_page=True): """ Constructor """ super(OpenLPWizard, self).__init__(parent) self.plugin = plugin self.with_progress_page = add_progress_page self.setObjectName(name) self.open_icon = build_icon(':/general/general_open.png') self.delete_icon = build_icon(':/general/general_delete.png') self.finish_button = self.button(QtWidgets.QWizard.FinishButton) self.cancel_button = self.button(QtWidgets.QWizard.CancelButton) self.setupUi(image) self.register_fields() self.custom_init() self.custom_signals() self.currentIdChanged.connect(self.on_current_id_changed) if self.with_progress_page: self.error_copy_to_button.clicked.connect(self.on_error_copy_to_button_clicked) self.error_save_to_button.clicked.connect(self.on_error_save_to_button_clicked) def setupUi(self, image): """ Set up the wizard UI. """ self.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) self.setModal(True) self.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | QtWidgets.QWizard.NoBackButtonOnLastPage) if is_macosx(): self.setPixmap(QtWidgets.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png')) else: self.setWizardStyle(QtWidgets.QWizard.ModernStyle) add_welcome_page(self, image) self.add_custom_pages() if self.with_progress_page: self.add_progress_page() self.retranslateUi() def register_fields(self): """ Hook method for wizards to register any fields they need. """ pass def custom_init(self): """ Hook method for custom initialisation """ pass def custom_signals(self): """ Hook method for adding custom signals """ pass def add_custom_pages(self): """ Hook method for wizards to add extra pages """ pass def add_progress_page(self): """ Add the progress page for the wizard. This page informs the user how the wizard is progressing with its task. """ self.progress_page = QtWidgets.QWizardPage() self.progress_page.setObjectName('progress_page') self.progress_layout = QtWidgets.QVBoxLayout(self.progress_page) self.progress_layout.setContentsMargins(48, 48, 48, 48) self.progress_layout.setObjectName('progress_layout') self.progress_label = QtWidgets.QLabel(self.progress_page) self.progress_label.setObjectName('progress_label') self.progress_label.setWordWrap(True) self.progress_layout.addWidget(self.progress_label) self.progress_bar = QtWidgets.QProgressBar(self.progress_page) self.progress_bar.setObjectName('progress_bar') self.progress_layout.addWidget(self.progress_bar) # Add a QTextEdit and a copy to file and copy to clipboard button to be # able to provide feedback to the user. Hidden by default. self.error_report_text_edit = QtWidgets.QTextEdit(self.progress_page) self.error_report_text_edit.setObjectName('error_report_text_edit') self.error_report_text_edit.setHidden(True) self.error_report_text_edit.setReadOnly(True) self.progress_layout.addWidget(self.error_report_text_edit) self.error_button_layout = QtWidgets.QHBoxLayout() self.error_button_layout.setObjectName('error_button_layout') spacer = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.error_button_layout.addItem(spacer) self.error_copy_to_button = QtWidgets.QPushButton(self.progress_page) self.error_copy_to_button.setObjectName('error_copy_to_button') self.error_copy_to_button.setHidden(True) self.error_copy_to_button.setIcon(build_icon(':/system/system_edit_copy.png')) self.error_button_layout.addWidget(self.error_copy_to_button) self.error_save_to_button = QtWidgets.QPushButton(self.progress_page) self.error_save_to_button.setObjectName('error_save_to_button') self.error_save_to_button.setHidden(True) self.error_save_to_button.setIcon(build_icon(':/general/general_save.png')) self.error_button_layout.addWidget(self.error_save_to_button) self.progress_layout.addLayout(self.error_button_layout) self.addPage(self.progress_page) def exec(self): """ Run the wizard. """ self.set_defaults() return QtWidgets.QWizard.exec(self) def reject(self): """ Stop the wizard on cancel button, close button or ESC key. """ log.debug('Wizard cancelled by user.') if self.with_progress_page and self.currentPage() == self.progress_page: Registry().execute('openlp_stop_wizard') self.done(QtWidgets.QDialog.Rejected) def on_current_id_changed(self, page_id): """ Perform necessary functions depending on which wizard page is active. """ if self.with_progress_page and self.page(page_id) == self.progress_page: self.pre_wizard() self.perform_wizard() self.post_wizard() else: self.custom_page_changed(page_id) def custom_page_changed(self, page_id): """ Called when changing to a page other than the progress page """ pass def on_error_copy_to_button_clicked(self): """ Called when the ``error_copy_to_button`` has been clicked. """ pass def on_error_save_to_button_clicked(self): """ Called when the ``error_save_to_button`` has been clicked. """ pass def increment_progress_bar(self, status_text, increment=1): """ Update the wizard progress page. :param status_text: Current status information to display. :param increment: The value to increment the progress bar by. """ log.debug('IncrementBar %s', status_text) self.progress_label.setText(status_text) if increment > 0: self.progress_bar.setValue(self.progress_bar.value() + increment) self.application.process_events() def pre_wizard(self): """ Prepare the UI for the import. """ self.finish_button.setVisible(False) self.progress_bar.setMinimum(0) self.progress_bar.setMaximum(1188) self.progress_bar.setValue(0) def post_wizard(self): """ Clean up the UI after the import has finished. """ self.progress_bar.setValue(self.progress_bar.maximum()) self.finish_button.setVisible(True) self.cancel_button.setVisible(False) self.application.process_events() def get_file_name(self, title, editbox, setting_name, filters=''): """ Opens a QFileDialog and saves the filename to the given editbox. :param title: The title of the dialog (unicode). :param editbox: An editbox (QLineEdit). :param setting_name: The place where to save the last opened directory. :param filters: The file extension filters. It should contain the file description as well as the file extension. For example:: 'OpenLP 2 Databases (*.sqlite)' """ if filters: filters += ';;' filters += '%s (*)' % UiStrings().AllFiles filename, filter_used = QtWidgets.QFileDialog.getOpenFileName( self, title, os.path.dirname(Settings().value(self.plugin.settings_section + '/' + setting_name)), filters) if filename: editbox.setText(filename) Settings().setValue(self.plugin.settings_section + '/' + setting_name, filename) def get_folder(self, title, editbox, setting_name): """ Opens a QFileDialog and saves the selected folder to the given editbox. :param title: The title of the dialog (unicode). :param editbox: An editbox (QLineEdit). :param setting_name: The place where to save the last opened directory. """ folder = QtWidgets.QFileDialog.getExistingDirectory( self, title, Settings().value(self.plugin.settings_section + '/' + setting_name), QtWidgets.QFileDialog.ShowDirsOnly) if folder: editbox.setText(folder) Settings().setValue(self.plugin.settings_section + '/' + setting_name, folder) OpenLP-2.4/openlp/.version0000644000175000017500000000000412657640340014526 0ustar raoulraoul2.4 OpenLP-2.4/openlp/plugins/0000755000175000017500000000000012663134435014527 5ustar raoulraoulOpenLP-2.4/openlp/plugins/presentations/0000755000175000017500000000000012663134435017425 5ustar raoulraoulOpenLP-2.4/openlp/plugins/presentations/__init__.py0000644000175000017500000000324512657640340021542 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`presentations` module provides the Presentations plugin which allows OpenLP to show presentations from most popular presentation packages. """ OpenLP-2.4/openlp/plugins/presentations/presentationplugin.py0000644000175000017500000002050212657640340023730 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`presentationplugin` module provides the ability for OpenLP to display presentations from a variety of document formats. """ import os import logging from PyQt5 import QtCore from openlp.core.common import AppLocation, translate from openlp.core.lib import Plugin, StringContent, build_icon from openlp.plugins.presentations.lib import PresentationController, PresentationMediaItem, PresentationTab log = logging.getLogger(__name__) __default_settings__ = {'presentations/override app': QtCore.Qt.Unchecked, 'presentations/enable_pdf_program': QtCore.Qt.Unchecked, 'presentations/pdf_program': '', 'presentations/Impress': QtCore.Qt.Checked, 'presentations/Powerpoint': QtCore.Qt.Checked, 'presentations/Powerpoint Viewer': QtCore.Qt.Checked, 'presentations/Pdf': QtCore.Qt.Checked, 'presentations/presentations files': [], 'presentations/thumbnail_scheme': '', 'presentations/powerpoint slide click advance': QtCore.Qt.Unchecked, 'presentations/powerpoint control window': QtCore.Qt.Unchecked } class PresentationPlugin(Plugin): """ This plugin allowed a Presentation to be opened, controlled and displayed on the output display. The plugin controls third party applications such as OpenOffice.org Impress, Microsoft PowerPoint and the PowerPoint viewer. """ log = logging.getLogger('PresentationPlugin') def __init__(self): """ PluginPresentation constructor. """ log.debug('Initialised') self.controllers = {} Plugin.__init__(self, 'presentations', __default_settings__, __default_settings__) self.weight = -8 self.icon_path = ':/plugins/plugin_presentations.png' self.icon = build_icon(self.icon_path) def create_settings_tab(self, parent): """ Create the settings Tab. :param parent: parent UI Element """ visible_name = self.get_string(StringContent.VisibleName) self.settings_tab = PresentationTab(parent, self.name, visible_name['title'], self.controllers, self.icon_path) def initialise(self): """ Initialise the plugin. Determine which controllers are enabled are start their processes. """ log.info('Presentations Initialising') super(PresentationPlugin, self).initialise() for controller in self.controllers: if self.controllers[controller].enabled(): try: self.controllers[controller].start_process() except Exception: log.warning('Failed to start controller process') self.controllers[controller].available = False self.media_item.build_file_mask_string() def finalise(self): """ Finalise the plugin. Ask all the enabled presentation applications to close down their applications and release resources. """ log.info('Plugin Finalise') # Ask each controller to tidy up. for key in self.controllers: controller = self.controllers[key] if controller.enabled(): controller.kill() super(PresentationPlugin, self).finalise() def create_media_manager_item(self): """ Create the Media Manager List. """ self.media_item = PresentationMediaItem(self.main_window.media_dock_manager.media_dock, self, self.controllers) def register_controllers(self, controller): """ Register each presentation controller (Impress, PPT etc) and store for later use. :param controller: controller to register """ self.controllers[controller.name] = controller def check_pre_conditions(self): """ Check to see if we have any presentation software available. If not do not install the plugin. """ log.debug('check_pre_conditions') controller_dir = os.path.join(AppLocation.get_directory(AppLocation.PluginsDir), 'presentations', 'lib') for filename in os.listdir(controller_dir): if filename.endswith('controller.py') and not filename == 'presentationcontroller.py': path = os.path.join(controller_dir, filename) if os.path.isfile(path): module_name = 'openlp.plugins.presentations.lib.' + os.path.splitext(filename)[0] log.debug('Importing controller %s', module_name) try: __import__(module_name, globals(), locals(), []) except ImportError: log.warning('Failed to import %s on path %s', module_name, path) controller_classes = PresentationController.__subclasses__() for controller_class in controller_classes: controller = controller_class(self) self.register_controllers(controller) return bool(self.controllers) @staticmethod def about(): """ Return information about this plugin. """ about_text = translate('PresentationPlugin', 'Presentation ' 'Plugin
The presentation plugin provides the ' 'ability to show presentations using a number of different ' 'programs. The choice of available presentation programs is ' 'available to the user in a drop down box.') return about_text def set_plugin_text_strings(self): """ Called to define all translatable texts of the plugin. """ # Name PluginList self.text_strings[StringContent.Name] = { 'singular': translate('PresentationPlugin', 'Presentation', 'name singular'), 'plural': translate('PresentationPlugin', 'Presentations', 'name plural') } # Name for MediaDockManager, SettingsManager self.text_strings[StringContent.VisibleName] = { 'title': translate('PresentationPlugin', 'Presentations', 'container title') } # Middle Header Bar tooltips = { 'load': translate('PresentationPlugin', 'Load a new presentation.'), 'import': '', 'new': '', 'edit': '', 'delete': translate('PresentationPlugin', 'Delete the selected presentation.'), 'preview': translate('PresentationPlugin', 'Preview the selected presentation.'), 'live': translate('PresentationPlugin', 'Send the selected presentation live.'), 'service': translate('PresentationPlugin', 'Add the selected presentation to the service.') } self.set_plugin_ui_text_strings(tooltips) OpenLP-2.4/openlp/plugins/presentations/lib/0000755000175000017500000000000012663134435020173 5ustar raoulraoulOpenLP-2.4/openlp/plugins/presentations/lib/pdfcontroller.py0000644000175000017500000003255112657640340023430 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import os import logging from tempfile import NamedTemporaryFile import re from shutil import which from subprocess import check_output, CalledProcessError, STDOUT from openlp.core.utils import AppLocation from openlp.core.common import Settings, is_win, trace_error_handler from openlp.core.lib import ScreenList from .presentationcontroller import PresentationController, PresentationDocument if is_win(): from subprocess import STARTUPINFO, STARTF_USESHOWWINDOW log = logging.getLogger(__name__) PDF_CONTROLLER_FILETYPES = ['pdf', 'xps', 'oxps'] class PdfController(PresentationController): """ Class to control PDF presentations """ log.info('PdfController loaded') def __init__(self, plugin): """ Initialise the class :param plugin: The plugin that creates the controller. """ log.debug('Initialising') super(PdfController, self).__init__(plugin, 'Pdf', PdfDocument) self.process = None self.supports = ['pdf'] self.also_supports = [] # Determine whether mudraw or ghostscript is used self.check_installed() @staticmethod def check_binary(program_path): """ Function that checks whether a binary is either ghostscript or mudraw or neither. Is also used from presentationtab.py :param program_path:The full path to the binary to check. :return: Type of the binary, 'gs' if ghostscript, 'mudraw' if mudraw, None if invalid. """ program_type = None runlog = '' log.debug('testing program_path: %s', program_path) try: # Setup startupinfo options for check_output to avoid console popping up on windows if is_win(): startupinfo = STARTUPINFO() startupinfo.dwFlags |= STARTF_USESHOWWINDOW else: startupinfo = None runlog = check_output([program_path, '--help'], stderr=STDOUT, startupinfo=startupinfo) except CalledProcessError as e: runlog = e.output except Exception: trace_error_handler(log) runlog = '' log.debug('check_output returned: %s' % runlog) # Analyse the output to see it the program is mudraw, ghostscript or neither for line in runlog.splitlines(): decoded_line = line.decode() found_mudraw = re.search('usage: mudraw.*', decoded_line, re.IGNORECASE) if found_mudraw: program_type = 'mudraw' break found_gs = re.search('GPL Ghostscript.*', decoded_line, re.IGNORECASE) if found_gs: program_type = 'gs' break log.debug('in check_binary, found: %s', program_type) return program_type def check_available(self): """ PdfController is able to run on this machine. :return: True if program to open PDF-files was found, otherwise False. """ log.debug('check_available Pdf') return self.check_installed() def check_installed(self): """ Check the viewer is installed. :return: True if program to open PDF-files was found, otherwise False. """ log.debug('check_installed Pdf') self.mudrawbin = '' self.gsbin = '' self.also_supports = [] # Use the user defined program if given if Settings().value('presentations/enable_pdf_program'): pdf_program = Settings().value('presentations/pdf_program') program_type = self.check_binary(pdf_program) if program_type == 'gs': self.gsbin = pdf_program elif program_type == 'mudraw': self.mudrawbin = pdf_program else: # Fallback to autodetection application_path = AppLocation.get_directory(AppLocation.AppDir) if is_win(): # for windows we only accept mudraw.exe in the base folder application_path = AppLocation.get_directory(AppLocation.AppDir) if os.path.isfile(os.path.join(application_path, 'mudraw.exe')): self.mudrawbin = os.path.join(application_path, 'mudraw.exe') else: DEVNULL = open(os.devnull, 'wb') # First try to find mupdf self.mudrawbin = which('mudraw') # if mupdf isn't installed, fallback to ghostscript if not self.mudrawbin: self.gsbin = which('gs') # Last option: check if mudraw is placed in OpenLP base folder if not self.mudrawbin and not self.gsbin: application_path = AppLocation.get_directory(AppLocation.AppDir) if os.path.isfile(os.path.join(application_path, 'mudraw')): self.mudrawbin = os.path.join(application_path, 'mudraw') if self.mudrawbin: self.also_supports = ['xps', 'oxps'] return True elif self.gsbin: return True else: return False def kill(self): """ Called at system exit to clean up any running presentations """ log.debug('Kill pdfviewer') while self.docs: self.docs[0].close_presentation() class PdfDocument(PresentationDocument): """ Class which holds information of a single presentation. This class is not actually used to present the PDF, instead we convert to image-serviceitem on the fly and present as such. Therefore some of the 'playback' functions is not implemented. """ def __init__(self, controller, presentation): """ Constructor, store information about the file and initialise. """ log.debug('Init Presentation Pdf') PresentationDocument.__init__(self, controller, presentation) self.presentation = None self.blanked = False self.hidden = False self.image_files = [] self.num_pages = -1 # Setup startupinfo options for check_output to avoid console popping up on windows if is_win(): self.startupinfo = STARTUPINFO() self.startupinfo.dwFlags |= STARTF_USESHOWWINDOW else: self.startupinfo = None def gs_get_resolution(self, size): """ Only used when using ghostscript Ghostscript can't scale automatically while keeping aspect like mupdf, so we need to get the ratio between the screen size and the PDF to scale :param size: Size struct containing the screen size. :return: The resolution dpi to be used. """ # Use a postscript script to get size of the pdf. It is assumed that all pages have same size gs_resolution_script = AppLocation.get_directory( AppLocation.PluginsDir) + '/presentations/lib/ghostscript_get_resolution.ps' # Run the script on the pdf to get the size runlog = [] try: runlog = check_output([self.controller.gsbin, '-dNOPAUSE', '-dNODISPLAY', '-dBATCH', '-sFile=' + self.file_path, gs_resolution_script], startupinfo=self.startupinfo) except CalledProcessError as e: log.debug(' '.join(e.cmd)) log.debug(e.output) # Extract the pdf resolution from output, the format is " Size: x: , y: " width = 0.0 height = 0.0 for line in runlog.splitlines(): try: width = float(re.search('.*Size: x: (\d+\.?\d*), y: \d+.*', line.decode()).group(1)) height = float(re.search('.*Size: x: \d+\.?\d*, y: (\d+\.?\d*).*', line.decode()).group(1)) break except AttributeError: continue # Calculate the ratio from pdf to screen if width > 0 and height > 0: width_ratio = size.width() / width height_ratio = size.height() / height # return the resolution that should be used. 72 is default. if width_ratio > height_ratio: return int(height_ratio * 72) else: return int(width_ratio * 72) else: return 72 def load_presentation(self): """ Called when a presentation is added to the SlideController. It generates images from the PDF. :return: True is loading succeeded, otherwise False. """ log.debug('load_presentation pdf') # Check if the images has already been created, and if yes load them if os.path.isfile(os.path.join(self.get_temp_folder(), 'mainslide001.png')): created_files = sorted(os.listdir(self.get_temp_folder())) for fn in created_files: if os.path.isfile(os.path.join(self.get_temp_folder(), fn)): self.image_files.append(os.path.join(self.get_temp_folder(), fn)) self.num_pages = len(self.image_files) return True size = ScreenList().current['size'] # Generate images from PDF that will fit the frame. runlog = '' try: if not os.path.isdir(self.get_temp_folder()): os.makedirs(self.get_temp_folder()) if self.controller.mudrawbin: runlog = check_output([self.controller.mudrawbin, '-w', str(size.width()), '-h', str(size.height()), '-o', os.path.join(self.get_temp_folder(), 'mainslide%03d.png'), self.file_path], startupinfo=self.startupinfo) elif self.controller.gsbin: resolution = self.gs_get_resolution(size) runlog = check_output([self.controller.gsbin, '-dSAFER', '-dNOPAUSE', '-dBATCH', '-sDEVICE=png16m', '-r' + str(resolution), '-dTextAlphaBits=4', '-dGraphicsAlphaBits=4', '-sOutputFile=' + os.path.join(self.get_temp_folder(), 'mainslide%03d.png'), self.file_path], startupinfo=self.startupinfo) created_files = sorted(os.listdir(self.get_temp_folder())) for fn in created_files: if os.path.isfile(os.path.join(self.get_temp_folder(), fn)): self.image_files.append(os.path.join(self.get_temp_folder(), fn)) except Exception as e: log.debug(e) log.debug(runlog) return False self.num_pages = len(self.image_files) # Create thumbnails self.create_thumbnails() return True def create_thumbnails(self): """ Generates thumbnails """ log.debug('create_thumbnails pdf') if self.check_thumbnails(): return # use builtin function to create thumbnails from generated images index = 1 for image in self.image_files: self.convert_thumbnail(image, index) index += 1 def close_presentation(self): """ Close presentation and clean up objects. Triggered by new object being added to SlideController or OpenLP being shut down. """ log.debug('close_presentation pdf') self.controller.remove_doc(self) def is_loaded(self): """ Returns true if a presentation is loaded. :return: True if loaded, False if not. """ log.debug('is_loaded pdf') if self.num_pages < 0: return False return True def is_active(self): """ Returns true if a presentation is currently active. :return: True if active, False if not. """ log.debug('is_active pdf') return self.is_loaded() and not self.hidden def get_slide_count(self): """ Returns total number of slides :return: The number of pages in the presentation.. """ return self.num_pages OpenLP-2.4/openlp/plugins/presentations/lib/ghostscript_get_resolution.ps0000644000175000017500000000031412657640340026230 0ustar raoulraoul%!PS () = File dup (r) file runpdfbegin 1 pdfgetpage dup /MediaBox pget { aload pop exch 4 1 roll exch sub 3 1 roll sub ( Size: x: ) print =print (, y: ) print =print (\n) print } if flush quit OpenLP-2.4/openlp/plugins/presentations/lib/presentationcontroller.py0000644000175000017500000003770112657640340025374 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging import os import shutil from PyQt5 import QtCore from openlp.core.common import Registry, AppLocation, Settings, check_directory_exists, md5_hash from openlp.core.lib import create_thumb, validate_thumb log = logging.getLogger(__name__) class PresentationDocument(object): """ Base class for presentation documents to inherit from. Loads and closes the presentation as well as triggering the correct activities based on the users input **Hook Functions** ``load_presentation()`` Load a presentation file ``close_presentation()`` Close presentation and clean up objects ``presentation_loaded()`` Returns True if presentation is currently loaded ``is_active()`` Returns True if a presentation is currently running ``blank_screen()`` Blanks the screen, making it black. ``unblank_screen()`` Unblanks the screen, restoring the output ``is_blank`` Returns true if screen is blank ``stop_presentation()`` Stops the presentation, removing it from the output display ``start_presentation()`` Starts the presentation from the beginning ``get_slide_number()`` Returns the current slide number, from 1 ``get_slide_count()`` Returns total number of slides ``goto_slide(slide_no)`` Jumps directly to the requested slide. ``next_step()`` Triggers the next effect of slide on the running presentation ``previous_step()`` Triggers the previous slide on the running presentation ``get_thumbnail_path(slide_no, check_exists)`` Returns a path to an image containing a preview for the requested slide """ def __init__(self, controller, name): """ Constructor for the PresentationController class """ self.controller = controller self._setup(name) def _setup(self, name): """ Run some initial setup. This method is separate from __init__ in order to mock it out in tests. """ self.slide_number = 0 self.file_path = name check_directory_exists(self.get_thumbnail_folder()) def load_presentation(self): """ Called when a presentation is added to the SlideController. Loads the presentation and starts it. Returns False if the file could not be opened """ return False def presentation_deleted(self): """ Cleans up/deletes any controller specific files created for a file, e.g. thumbnails """ try: if os.path.exists(self.get_thumbnail_folder()): shutil.rmtree(self.get_thumbnail_folder()) if os.path.exists(self.get_temp_folder()): shutil.rmtree(self.get_temp_folder()) except OSError: log.exception('Failed to delete presentation controller files') def get_file_name(self): """ Return just the filename of the presentation, without the directory """ return os.path.split(self.file_path)[1] def get_thumbnail_folder(self): """ The location where thumbnail images will be stored """ # TODO: If statement can be removed when the upgrade path from 2.0.x to 2.2.x is no longer needed if Settings().value('presentations/thumbnail_scheme') == 'md5': folder = md5_hash(self.file_path.encode('utf-8')) else: folder = self.get_file_name() return os.path.join(self.controller.thumbnail_folder, folder) def get_temp_folder(self): """ The location where thumbnail images will be stored """ # TODO: If statement can be removed when the upgrade path from 2.0.x to 2.2.x is no longer needed if Settings().value('presentations/thumbnail_scheme') == 'md5': folder = md5_hash(self.file_path.encode('utf-8')) else: folder = folder = self.get_file_name() return os.path.join(self.controller.temp_folder, folder) def check_thumbnails(self): """ Returns ``True`` if the thumbnail images exist and are more recent than the powerpoint file. """ last_image = self.get_thumbnail_path(self.get_slide_count(), True) if not (last_image and os.path.isfile(last_image)): return False return validate_thumb(self.file_path, last_image) def close_presentation(self): """ Close presentation and clean up objects. Triggered by new object being added to SlideController """ self.controller.close_presentation() def is_active(self): """ Returns True if a presentation is currently running """ return False def is_loaded(self): """ Returns true if a presentation is loaded """ return False def blank_screen(self): """ Blanks the screen, making it black. """ pass def unblank_screen(self): """ Unblanks (restores) the presentation """ pass def is_blank(self): """ Returns true if screen is blank """ return False def stop_presentation(self): """ Stops the presentation, removing it from the output display """ pass def start_presentation(self): """ Starts the presentation from the beginning """ pass def get_slide_number(self): """ Returns the current slide number, from 1 """ return 0 def get_slide_count(self): """ Returns total number of slides """ return 0 def goto_slide(self, slide_no): """ Jumps directly to the requested slide. :param slide_no: The slide to jump to, starting at 1 """ pass def next_step(self): """ Triggers the next effect of slide on the running presentation. This might be the next animation on the current slide, or the next slide """ pass def previous_step(self): """ Triggers the previous slide on the running presentation """ pass def convert_thumbnail(self, file, idx): """ Convert the slide image the application made to a standard 320x240 .png image. """ if self.check_thumbnails(): return if os.path.isfile(file): thumb_path = self.get_thumbnail_path(idx, False) create_thumb(file, thumb_path, False, QtCore.QSize(320, 240)) def get_thumbnail_path(self, slide_no, check_exists): """ Returns an image path containing a preview for the requested slide :param slide_no: The slide an image is required for, starting at 1 :param check_exists: """ path = os.path.join(self.get_thumbnail_folder(), self.controller.thumbnail_prefix + str(slide_no) + '.png') if os.path.isfile(path) or not check_exists: return path else: return None def poll_slidenumber(self, is_live, hide_mode): """ Check the current slide number """ if not self.is_active(): return if not hide_mode: current = self.get_slide_number() if current == self.slide_number: return self.slide_number = current if is_live: prefix = 'live' else: prefix = 'preview' Registry().execute('slidecontroller_%s_change' % prefix, self.slide_number - 1) def get_slide_text(self, slide_no): """ Returns the text on the slide :param slide_no: The slide the text is required for, starting at 1 """ return '' def get_slide_notes(self, slide_no): """ Returns the text on the slide :param slide_no: The slide the text is required for, starting at 1 """ return '' def get_titles_and_notes(self): """ Reads the titles from the titles file and the notes files and returns the content in two lists """ titles = [] notes = [] titles_file = os.path.join(self.get_thumbnail_folder(), 'titles.txt') if os.path.exists(titles_file): try: with open(titles_file, encoding='utf-8') as fi: titles = fi.read().splitlines() except: log.exception('Failed to open/read existing titles file') titles = [] for slide_no, title in enumerate(titles, 1): notes_file = os.path.join(self.get_thumbnail_folder(), 'slideNotes%d.txt' % slide_no) note = '' if os.path.exists(notes_file): try: with open(notes_file, encoding='utf-8') as fn: note = fn.read() except: log.exception('Failed to open/read notes file') note = '' notes.append(note) return titles, notes def save_titles_and_notes(self, titles, notes): """ Performs the actual persisting of titles to the titles.txt and notes to the slideNote%.txt """ if titles: titles_file = os.path.join(self.get_thumbnail_folder(), 'titles.txt') with open(titles_file, mode='wt', encoding='utf-8') as fo: fo.writelines(titles) if notes: for slide_no, note in enumerate(notes, 1): notes_file = os.path.join(self.get_thumbnail_folder(), 'slideNotes%d.txt' % slide_no) with open(notes_file, mode='wt', encoding='utf-8') as fn: fn.write(note) class PresentationController(object): """ This class is used to control interactions with presentation applications by creating a runtime environment. This is a base class for presentation controllers to inherit from. To create a new controller, take a copy of this file and name it so it ends with ``controller.py``, i.e. ``foobarcontroller.py``. Make sure it inherits :class:`~openlp.plugins.presentations.lib.presentationcontroller.PresentationController`, and then fill in the blanks. If possible try to make sure it loads on all platforms, usually by using :mod:``os.name`` checks, although ``__init__``, ``check_available`` and ``presentation_deleted`` should always be implemented. See :class:`~openlp.plugins.presentations.lib.impresscontroller.ImpressController`, :class:`~openlp.plugins.presentations.lib.powerpointcontroller.PowerpointController` or :class:`~openlp.plugins.presentations.lib.pptviewcontroller.PptviewController` for examples. **Basic Attributes** ``name`` The name that appears in the options and the media manager. ``enabled`` The controller is enabled. ``available`` The controller is available on this machine. Set by init via call to check_available. ``plugin`` The presentationplugin object. ``supports`` The primary native file types this application supports. ``also_supports`` Other file types the application can import, although not necessarily the first choice due to potential incompatibilities. **Hook Functions** ``kill()`` Called at system exit to clean up any running presentations. ``check_available()`` Returns True if presentation application is installed/can run on this machine. ``presentation_deleted()`` Deletes presentation specific files, e.g. thumbnails. """ log.info('PresentationController loaded') def __init__(self, plugin=None, name='PresentationController', document_class=PresentationDocument): """ This is the constructor for the presentationcontroller object. This provides an easy way for descendent plugins to populate common data. This method *must* be overridden, like so:: class MyPresentationController(PresentationController): def __init__(self, plugin): PresentationController.__init( self, plugin, 'My Presenter App') :param plugin: Defaults to *None*. The presentationplugin object :param name: Name of the application, to appear in the application :param document_class: """ self.supports = [] self.also_supports = [] self.docs = [] self.plugin = plugin self.name = name self.document_class = document_class self.settings_section = self.plugin.settings_section self.available = None self.temp_folder = os.path.join(AppLocation.get_section_data_path(self.settings_section), name) self.thumbnail_folder = os.path.join(AppLocation.get_section_data_path(self.settings_section), 'thumbnails') self.thumbnail_prefix = 'slide' check_directory_exists(self.thumbnail_folder) check_directory_exists(self.temp_folder) def enabled(self): """ Return whether the controller is currently enabled """ if Settings().value(self.settings_section + '/' + self.name) == QtCore.Qt.Checked: return self.is_available() else: return False def is_available(self): if self.available is None: self.available = self.check_available() return self.available def check_available(self): """ Presentation app is able to run on this machine. """ return False def start_process(self): """ Loads a running version of the presentation application in the background. """ pass def kill(self): """ Called at system exit to clean up any running presentations and close the application. """ log.debug('Kill') self.close_presentation() def add_document(self, name): """ Called when a new presentation document is opened. """ document = self.document_class(self, name) self.docs.append(document) return document def remove_doc(self, doc=None): """ Called to remove an open document from the collection. """ log.debug('remove_doc Presentation') if doc is None: return if doc in self.docs: self.docs.remove(doc) def close_presentation(self): pass class TextType(object): """ Type Enumeration for Types of Text to request """ Title = 0 SlideText = 1 Notes = 2 OpenLP-2.4/openlp/plugins/presentations/lib/presentationtab.py0000644000175000017500000003461112657640340023754 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from PyQt5 import QtGui, QtWidgets from openlp.core.common import Settings, UiStrings, translate from openlp.core.lib import SettingsTab, build_icon from openlp.core.lib.ui import critical_error_message_box from .pdfcontroller import PdfController class PresentationTab(SettingsTab): """ PresentationsTab is the Presentations settings tab in the settings dialog. """ def __init__(self, parent, title, visible_title, controllers, icon_path): """ Constructor """ self.parent = parent self.controllers = controllers super(PresentationTab, self).__init__(parent, title, visible_title, icon_path) self.activated = False def setupUi(self): """ Create the controls for the settings tab """ self.setObjectName('PresentationTab') super(PresentationTab, self).setupUi() self.controllers_group_box = QtWidgets.QGroupBox(self.left_column) self.controllers_group_box.setObjectName('controllers_group_box') self.controllers_layout = QtWidgets.QVBoxLayout(self.controllers_group_box) self.controllers_layout.setObjectName('ccontrollers_layout') self.presenter_check_boxes = {} for key in self.controllers: controller = self.controllers[key] checkbox = QtWidgets.QCheckBox(self.controllers_group_box) checkbox.setObjectName(controller.name + 'CheckBox') self.presenter_check_boxes[controller.name] = checkbox self.controllers_layout.addWidget(checkbox) self.left_layout.addWidget(self.controllers_group_box) # Advanced self.advanced_group_box = QtWidgets.QGroupBox(self.left_column) self.advanced_group_box.setObjectName('advanced_group_box') self.advanced_layout = QtWidgets.QVBoxLayout(self.advanced_group_box) self.advanced_layout.setObjectName('advanced_layout') self.override_app_check_box = QtWidgets.QCheckBox(self.advanced_group_box) self.override_app_check_box.setObjectName('override_app_check_box') self.advanced_layout.addWidget(self.override_app_check_box) self.left_layout.addWidget(self.advanced_group_box) # PowerPoint self.powerpoint_group_box = QtWidgets.QGroupBox(self.left_column) self.powerpoint_group_box.setObjectName('powerpoint_group_box') self.powerpoint_layout = QtWidgets.QVBoxLayout(self.powerpoint_group_box) self.powerpoint_layout.setObjectName('powerpoint_layout') self.ppt_slide_click_check_box = QtWidgets.QCheckBox(self.powerpoint_group_box) self.ppt_slide_click_check_box.setObjectName('ppt_slide_click_check_box') self.powerpoint_layout.addWidget(self.ppt_slide_click_check_box) self.ppt_window_check_box = QtWidgets.QCheckBox(self.powerpoint_group_box) self.ppt_window_check_box.setObjectName('ppt_window_check_box') self.powerpoint_layout.addWidget(self.ppt_window_check_box) self.left_layout.addWidget(self.powerpoint_group_box) # Pdf options self.pdf_group_box = QtWidgets.QGroupBox(self.left_column) self.pdf_group_box.setObjectName('pdf_group_box') self.pdf_layout = QtWidgets.QFormLayout(self.pdf_group_box) self.pdf_layout.setObjectName('pdf_layout') self.pdf_program_check_box = QtWidgets.QCheckBox(self.pdf_group_box) self.pdf_program_check_box.setObjectName('pdf_program_check_box') self.pdf_layout.addRow(self.pdf_program_check_box) self.pdf_program_path_layout = QtWidgets.QHBoxLayout() self.pdf_program_path_layout.setObjectName('pdf_program_path_layout') self.pdf_program_path = QtWidgets.QLineEdit(self.pdf_group_box) self.pdf_program_path.setObjectName('pdf_program_path') self.pdf_program_path.setReadOnly(True) self.pdf_program_path.setPalette(self.get_grey_text_palette(True)) self.pdf_program_path_layout.addWidget(self.pdf_program_path) self.pdf_program_browse_button = QtWidgets.QToolButton(self.pdf_group_box) self.pdf_program_browse_button.setObjectName('pdf_program_browse_button') self.pdf_program_browse_button.setIcon(build_icon(':/general/general_open.png')) self.pdf_program_browse_button.setEnabled(False) self.pdf_program_path_layout.addWidget(self.pdf_program_browse_button) self.pdf_layout.addRow(self.pdf_program_path_layout) self.left_layout.addWidget(self.pdf_group_box) self.left_layout.addStretch() self.right_column.setSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) self.right_layout.addStretch() # Signals and slots self.pdf_program_browse_button.clicked.connect(self.on_pdf_program_browse_button_clicked) self.pdf_program_check_box.clicked.connect(self.on_pdf_program_check_box_clicked) def retranslateUi(self): """ Make any translation changes """ self.controllers_group_box.setTitle(translate('PresentationPlugin.PresentationTab', 'Available Controllers')) for key in self.controllers: controller = self.controllers[key] checkbox = self.presenter_check_boxes[controller.name] self.set_controller_text(checkbox, controller) self.advanced_group_box.setTitle(UiStrings().Advanced) self.pdf_group_box.setTitle(translate('PresentationPlugin.PresentationTab', 'PDF options')) self.powerpoint_group_box.setTitle(translate('PresentationPlugin.PresentationTab', 'PowerPoint options')) self.override_app_check_box.setText( translate('PresentationPlugin.PresentationTab', 'Allow presentation application to be overridden')) self.ppt_slide_click_check_box.setText( translate('PresentationPlugin.PresentationTab', 'Clicking on a selected slide in the slidecontroller advances to next effect.')) self.ppt_window_check_box.setText( translate('PresentationPlugin.PresentationTab', 'Let PowerPoint control the size and position of the presentation window ' '(workaround for Windows 8 scaling issue).')) self.pdf_program_check_box.setText( translate('PresentationPlugin.PresentationTab', 'Use given full path for mudraw or ghostscript binary:')) def set_controller_text(self, checkbox, controller): if checkbox.isEnabled(): checkbox.setText(controller.name) else: checkbox.setText(translate('PresentationPlugin.PresentationTab', '%s (unavailable)') % controller.name) def load(self): """ Load the settings. """ powerpoint_available = False for key in self.controllers: controller = self.controllers[key] checkbox = self.presenter_check_boxes[controller.name] checkbox.setChecked(Settings().value(self.settings_section + '/' + controller.name)) if controller.name == 'Powerpoint' and controller.is_available(): powerpoint_available = True self.override_app_check_box.setChecked(Settings().value(self.settings_section + '/override app')) # Load Powerpoint settings self.ppt_slide_click_check_box.setChecked(Settings().value(self.settings_section + '/powerpoint slide click advance')) self.ppt_slide_click_check_box.setEnabled(powerpoint_available) self.ppt_window_check_box.setChecked(Settings().value(self.settings_section + '/powerpoint control window')) self.ppt_window_check_box.setEnabled(powerpoint_available) # load pdf-program settings enable_pdf_program = Settings().value(self.settings_section + '/enable_pdf_program') self.pdf_program_check_box.setChecked(enable_pdf_program) self.pdf_program_path.setPalette(self.get_grey_text_palette(not enable_pdf_program)) self.pdf_program_browse_button.setEnabled(enable_pdf_program) pdf_program = Settings().value(self.settings_section + '/pdf_program') if pdf_program: self.pdf_program_path.setText(pdf_program) def save(self): """ Save the settings. If the tab hasn't been made visible to the user then there is nothing to do, so exit. This removes the need to start presentation applications unnecessarily. """ if not self.activated: return changed = False for key in self.controllers: controller = self.controllers[key] if controller.is_available(): checkbox = self.presenter_check_boxes[controller.name] setting_key = self.settings_section + '/' + controller.name if Settings().value(setting_key) != checkbox.checkState(): changed = True Settings().setValue(setting_key, checkbox.checkState()) if checkbox.isChecked(): controller.start_process() else: controller.kill() setting_key = self.settings_section + '/override app' if Settings().value(setting_key) != self.override_app_check_box.checkState(): Settings().setValue(setting_key, self.override_app_check_box.checkState()) changed = True # Save powerpoint settings setting_key = self.settings_section + '/powerpoint slide click advance' if Settings().value(setting_key) != self.ppt_slide_click_check_box.checkState(): Settings().setValue(setting_key, self.ppt_slide_click_check_box.checkState()) changed = True setting_key = self.settings_section + '/powerpoint control window' if Settings().value(setting_key) != self.ppt_window_check_box.checkState(): Settings().setValue(setting_key, self.ppt_window_check_box.checkState()) changed = True # Save pdf-settings pdf_program = self.pdf_program_path.text() enable_pdf_program = self.pdf_program_check_box.checkState() # If the given program is blank disable using the program if pdf_program == '': enable_pdf_program = 0 if pdf_program != Settings().value(self.settings_section + '/pdf_program'): Settings().setValue(self.settings_section + '/pdf_program', pdf_program) changed = True if enable_pdf_program != Settings().value(self.settings_section + '/enable_pdf_program'): Settings().setValue(self.settings_section + '/enable_pdf_program', enable_pdf_program) changed = True if changed: self.settings_form.register_post_process('mediaitem_suffix_reset') self.settings_form.register_post_process('mediaitem_presentation_rebuild') self.settings_form.register_post_process('mediaitem_suffixes') def tab_visible(self): """ Tab has just been made visible to the user """ self.activated = True for key in self.controllers: controller = self.controllers[key] checkbox = self.presenter_check_boxes[controller.name] checkbox.setEnabled(controller.is_available()) self.set_controller_text(checkbox, controller) def on_pdf_program_browse_button_clicked(self): """ Select the mudraw or ghostscript binary that should be used. """ filename, filter_used = QtWidgets.QFileDialog.getOpenFileName( self, translate('PresentationPlugin.PresentationTab', 'Select mudraw or ghostscript binary.'), self.pdf_program_path.text()) if filename: program_type = PdfController.check_binary(filename) if not program_type: critical_error_message_box(UiStrings().Error, translate('PresentationPlugin.PresentationTab', 'The program is not ghostscript or mudraw which is required.')) else: self.pdf_program_path.setText(filename) def on_pdf_program_check_box_clicked(self, checked): """ When checkbox for manual entering pdf-program is clicked, enable or disable the textbox for the programpath and the browse-button. :param checked: If the box is checked or not. """ self.pdf_program_path.setPalette(self.get_grey_text_palette(not checked)) self.pdf_program_browse_button.setEnabled(checked) def get_grey_text_palette(self, greyed): """ Returns a QPalette with greyed out text as used for placeholderText. :param greyed: Determines whether the palette should be grayed. :return: The created palette. """ palette = QtGui.QPalette() color = self.palette().color(QtGui.QPalette.Active, QtGui.QPalette.Text) if greyed: color.setAlpha(128) palette.setColor(QtGui.QPalette.Active, QtGui.QPalette.Text, color) return palette OpenLP-2.4/openlp/plugins/presentations/lib/powerpointcontroller.py0000644000175000017500000005507112657640340025067 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ This module is for controlling powerpoint. PPT API documentation: `http://msdn.microsoft.com/en-us/library/aa269321(office.10).aspx`_ 2010: https://msdn.microsoft.com/en-us/library/office/ff743835%28v=office.14%29.aspx 2013: https://msdn.microsoft.com/en-us/library/office/ff743835.aspx """ import os import logging import time from openlp.core.common import is_win, Settings if is_win(): from win32com.client import Dispatch import win32con import winreg import win32ui import win32gui import pywintypes from openlp.core.lib import ScreenList from openlp.core.lib.ui import UiStrings, critical_error_message_box, translate from openlp.core.common import trace_error_handler, Registry from .presentationcontroller import PresentationController, PresentationDocument log = logging.getLogger(__name__) class PowerpointController(PresentationController): """ Class to control interactions with PowerPoint Presentations. It creates the runtime Environment , Loads the and Closes the Presentation. As well as triggering the correct activities based on the users input. """ log.info('PowerpointController loaded') def __init__(self, plugin): """ Initialise the class """ log.debug('Initialising') super(PowerpointController, self).__init__(plugin, 'Powerpoint', PowerpointDocument) self.supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm'] self.process = None def check_available(self): """ PowerPoint is able to run on this machine. """ log.debug('check_available') if is_win(): try: winreg.OpenKey(winreg.HKEY_CLASSES_ROOT, 'PowerPoint.Application').Close() try: # Try to detect if the version is 12 (2007) or above, and if so add 'odp' as a support filetype version_key = winreg.OpenKey(winreg.HKEY_CLASSES_ROOT, 'PowerPoint.Application\\CurVer') tmp1, app_version_string, tmp2 = winreg.EnumValue(version_key, 0) version_key.Close() app_version = int(app_version_string[-2:]) if app_version >= 12: self.also_supports = ['odp'] except (OSError, ValueError): log.warning('Detection of powerpoint version using registry failed.') return True except OSError: pass return False if is_win(): def start_process(self): """ Loads PowerPoint process. """ log.debug('start_process') if not self.process: self.process = Dispatch('PowerPoint.Application') def kill(self): """ Called at system exit to clean up any running presentations. """ log.debug('Kill powerpoint') while self.docs: self.docs[0].close_presentation() if self.process is None: return try: if self.process.Presentations.Count > 0: return self.process.Quit() except (AttributeError, pywintypes.com_error) as e: log.exception('Exception caught while killing powerpoint process') log.exception(e) trace_error_handler(log) self.process = None class PowerpointDocument(PresentationDocument): """ Class which holds information and controls a single presentation. """ def __init__(self, controller, presentation): """ Constructor, store information about the file and initialise. :param controller: :param presentation: """ log.debug('Init Presentation Powerpoint') super(PowerpointDocument, self).__init__(controller, presentation) self.presentation = None self.index_map = {} self.slide_count = 0 self.blank_slide = 1 self.blank_click = None self.presentation_hwnd = None def load_presentation(self): """ Called when a presentation is added to the SlideController. Opens the PowerPoint file using the process created earlier. """ log.debug('load_presentation') try: if not self.controller.process: self.controller.start_process() self.controller.process.Presentations.Open(os.path.normpath(self.file_path), False, False, False) self.presentation = self.controller.process.Presentations(self.controller.process.Presentations.Count) self.create_thumbnails() self.create_titles_and_notes() # Make sure powerpoint doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() return True except (AttributeError, pywintypes.com_error) as e: log.exception('Exception caught while loading Powerpoint presentation') log.exception(e) trace_error_handler(log) return False def create_thumbnails(self): """ Create the thumbnail images for the current presentation. Note an alternative and quicker method would be do:: self.presentation.Slides[n].Copy() thumbnail = QApplication.clipboard.image() However, for the moment, we want a physical file since it makes life easier elsewhere. """ log.debug('create_thumbnails') if self.check_thumbnails(): return key = 1 for num in range(self.presentation.Slides.Count): if not self.presentation.Slides(num + 1).SlideShowTransition.Hidden: self.index_map[key] = num + 1 self.presentation.Slides(num + 1).Export( os.path.join(self.get_thumbnail_folder(), 'slide%d.png' % (key)), 'png', 320, 240) key += 1 self.slide_count = key - 1 def close_presentation(self): """ Close presentation and clean up objects. This is triggered by a new object being added to SlideController or OpenLP being shut down. """ log.debug('ClosePresentation') if self.presentation: try: self.presentation.Close() except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while closing powerpoint presentation') log.exception(e) trace_error_handler(log) self.presentation = None self.controller.remove_doc(self) # Make sure powerpoint doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() def is_loaded(self): """ Returns ``True`` if a presentation is loaded. """ log.debug('is_loaded') try: if self.controller.process.Presentations.Count == 0: return False except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in is_loaded') log.exception(e) trace_error_handler(log) return False return True def is_active(self): """ Returns ``True`` if a presentation is currently active. """ log.debug('is_active') if not self.is_loaded(): return False try: if self.presentation.SlideShowWindow is None: return False if self.presentation.SlideShowWindow.View is None: return False except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in is_active') log.exception(e) trace_error_handler(log) return False return True def unblank_screen(self): """ Unblanks (restores) the presentation. """ log.debug('unblank_screen') try: self.presentation.SlideShowWindow.Activate() self.presentation.SlideShowWindow.View.State = 1 # Unblanking is broken in PowerPoint 2010 (14.0), need to redisplay if 15.0 > float(self.presentation.Application.Version) >= 14.0: self.presentation.SlideShowWindow.View.GotoSlide(self.index_map[self.blank_slide], False) if self.blank_click: self.presentation.SlideShowWindow.View.GotoClick(self.blank_click) except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in unblank_screen') log.exception(e) trace_error_handler(log) self.show_error_msg() # Stop powerpoint from flashing in the taskbar if self.presentation_hwnd: win32gui.FlashWindowEx(self.presentation_hwnd, win32con.FLASHW_STOP, 0, 0) # Make sure powerpoint doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() def blank_screen(self): """ Blanks the screen. """ log.debug('blank_screen') try: # Unblanking is broken in PowerPoint 2010 (14.0), need to save info for later if 15.0 > float(self.presentation.Application.Version) >= 14.0: self.blank_slide = self.get_slide_number() self.blank_click = self.presentation.SlideShowWindow.View.GetClickIndex() # ppSlideShowBlackScreen = 3 self.presentation.SlideShowWindow.View.State = 3 except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in blank_screen') log.exception(e) trace_error_handler(log) self.show_error_msg() def is_blank(self): """ Returns ``True`` if screen is blank. """ log.debug('is_blank') if self.is_active(): try: # ppSlideShowBlackScreen = 3 return self.presentation.SlideShowWindow.View.State == 3 except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in is_blank') log.exception(e) trace_error_handler(log) self.show_error_msg() else: return False def stop_presentation(self): """ Stops the current presentation and hides the output. Used when blanking to desktop. """ log.debug('stop_presentation') try: self.presentation.SlideShowWindow.View.Exit() except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in stop_presentation') log.exception(e) trace_error_handler(log) self.show_error_msg() if is_win(): def start_presentation(self): """ Starts a presentation from the beginning. """ log.debug('start_presentation') # SlideShowWindow measures its size/position by points, not pixels # https://technet.microsoft.com/en-us/library/dn528846.aspx try: dpi = win32ui.GetActiveWindow().GetDC().GetDeviceCaps(88) except win32ui.error: try: dpi = win32ui.GetForegroundWindow().GetDC().GetDeviceCaps(88) except win32ui.error: dpi = 96 size = ScreenList().current['size'] ppt_window = None try: ppt_window = self.presentation.SlideShowSettings.Run() except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in start_presentation') log.exception(e) trace_error_handler(log) self.show_error_msg() if ppt_window and not Settings().value('presentations/powerpoint control window'): try: ppt_window.Top = size.y() * 72 / dpi ppt_window.Height = size.height() * 72 / dpi ppt_window.Left = size.x() * 72 / dpi ppt_window.Width = size.width() * 72 / dpi except AttributeError as e: log.exception('AttributeError while in start_presentation') log.exception(e) # Find the presentation window and save the handle for later self.presentation_hwnd = None if ppt_window: log.debug('main display size: y=%d, height=%d, x=%d, width=%d' % (size.y(), size.height(), size.x(), size.width())) win32gui.EnumWindows(self._window_enum_callback, size) # Make sure powerpoint doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() def _window_enum_callback(self, hwnd, size): """ Method for callback from win32gui.EnumWindows. Used to find the powerpoint presentation window and stop it flashing in the taskbar. """ # Get the size of the current window and if it matches the size of our main display we assume # it is the powerpoint presentation window. (left, top, right, bottom) = win32gui.GetWindowRect(hwnd) window_title = win32gui.GetWindowText(hwnd) log.debug('window size: left=%d, top=%d, right=%d, width=%d' % (left, top, right, bottom)) log.debug('compare size: %d and %d, %d and %d, %d and %d, %d and %d' % (size.y(), top, size.height(), (bottom - top), size.x(), left, size.width(), (right - left))) log.debug('window title: %s' % window_title) filename_root, filename_ext = os.path.splitext(os.path.basename(self.file_path)) if size.y() == top and size.height() == (bottom - top) and size.x() == left and \ size.width() == (right - left) and filename_root in window_title: log.debug('Found a match and will save the handle') self.presentation_hwnd = hwnd # Stop powerpoint from flashing in the taskbar win32gui.FlashWindowEx(self.presentation_hwnd, win32con.FLASHW_STOP, 0, 0) def get_slide_number(self): """ Returns the current slide number. """ log.debug('get_slide_number') ret = 0 try: # We need 2 approaches to getting the current slide number, because # SlideShowWindow.View.Slide.SlideIndex wont work on the end-slide where Slide isn't available, and # SlideShowWindow.View.CurrentShowPosition returns 0 when called when a transistion is executing (in 2013) # So we use SlideShowWindow.View.Slide.SlideIndex unless the state is done (ppSlideShowDone = 5) if self.presentation.SlideShowWindow.View.State != 5: ret = self.presentation.SlideShowWindow.View.Slide.SlideNumber # Do reverse lookup in the index_map to find the slide number to return ret = next((key for key, slidenum in self.index_map.items() if slidenum == ret), None) else: ret = self.presentation.SlideShowWindow.View.CurrentShowPosition except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in get_slide_number') log.exception(e) trace_error_handler(log) self.show_error_msg() return ret def get_slide_count(self): """ Returns total number of slides. """ log.debug('get_slide_count') return self.slide_count def goto_slide(self, slide_no): """ Moves to a specific slide in the presentation. :param slide_no: The slide the text is required for, starting at 1 """ log.debug('goto_slide') try: if Settings().value('presentations/powerpoint slide click advance') \ and self.get_slide_number() == slide_no: click_index = self.presentation.SlideShowWindow.View.GetClickIndex() click_count = self.presentation.SlideShowWindow.View.GetClickCount() log.debug('We are already on this slide - go to next effect if any left, idx: %d, count: %d' % (click_index, click_count)) if click_index < click_count: self.next_step() else: self.presentation.SlideShowWindow.View.GotoSlide(self.index_map[slide_no]) except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in goto_slide') log.exception(e) trace_error_handler(log) self.show_error_msg() def next_step(self): """ Triggers the next effect of slide on the running presentation. """ log.debug('next_step') try: self.presentation.SlideShowWindow.Activate() self.presentation.SlideShowWindow.View.Next() except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in next_step') log.exception(e) trace_error_handler(log) self.show_error_msg() return if self.get_slide_number() > self.get_slide_count(): log.debug('past end, stepping back to previous') self.previous_step() # Stop powerpoint from flashing in the taskbar if self.presentation_hwnd: win32gui.FlashWindowEx(self.presentation_hwnd, win32con.FLASHW_STOP, 0, 0) # Make sure powerpoint doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() def previous_step(self): """ Triggers the previous slide on the running presentation. """ log.debug('previous_step') try: self.presentation.SlideShowWindow.View.Previous() except (AttributeError, pywintypes.com_error) as e: log.exception('Caught exception while in previous_step') log.exception(e) trace_error_handler(log) self.show_error_msg() def get_slide_text(self, slide_no): """ Returns the text on the slide. :param slide_no: The slide the text is required for, starting at 1 """ return _get_text_from_shapes(self.presentation.Slides(self.index_map[slide_no]).Shapes) def get_slide_notes(self, slide_no): """ Returns the text on the slide. :param slide_no: The slide the text is required for, starting at 1 """ return _get_text_from_shapes(self.presentation.Slides(self.index_map[slide_no]).NotesPage.Shapes) def create_titles_and_notes(self): """ Writes the list of titles (one per slide) to 'titles.txt' and the notes to 'slideNotes[x].txt' in the thumbnails directory """ titles = [] notes = [] for num in range(self.get_slide_count()): slide = self.presentation.Slides(self.index_map[num + 1]) try: text = slide.Shapes.Title.TextFrame.TextRange.Text except Exception as e: log.exception(e) text = '' titles.append(text.replace('\n', ' ').replace('\x0b', ' ') + '\n') note = _get_text_from_shapes(slide.NotesPage.Shapes) if len(note) == 0: note = ' ' notes.append(note) self.save_titles_and_notes(titles, notes) def show_error_msg(self): """ Stop presentation and display an error message. """ try: self.presentation.SlideShowWindow.View.Exit() except (AttributeError, pywintypes.com_error) as e: log.exception('Failed to exit Powerpoint presentation after error') log.exception(e) critical_error_message_box(UiStrings().Error, translate('PresentationPlugin.PowerpointDocument', 'An error occurred in the Powerpoint integration ' 'and the presentation will be stopped. ' 'Restart the presentation if you wish to present it.')) def _get_text_from_shapes(shapes): """ Returns any text extracted from the shapes on a presentation slide. :param shapes: A set of shapes to search for text. """ text = '' try: for shape in shapes: if shape.PlaceholderFormat.Type == 2: # 2 from is enum PpPlaceholderType.ppPlaceholderBody if shape.HasTextFrame and shape.TextFrame.HasText: text += shape.TextFrame.TextRange.Text + '\n' except pywintypes.com_error as e: log.warning('Failed to extract text from powerpoint slide') log.warning(e) return text OpenLP-2.4/openlp/plugins/presentations/lib/__init__.py0000644000175000017500000000331312657640340022304 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from .presentationcontroller import PresentationController from .messagelistener import MessageListener from .mediaitem import PresentationMediaItem from .presentationtab import PresentationTab OpenLP-2.4/openlp/plugins/presentations/lib/impresscontroller.py0000644000175000017500000004467512657640340024353 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### # OOo API documentation: # http://api.openoffice.org/docs/common/ref/com/sun/star/presentation/XSlideShowController.html # http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Basic # /Getting_Information_about_UNO_Objects#Inspecting_interfaces_during_debugging # http://docs.go-oo.org/sd/html/classsd_1_1SlideShow.html # http://www.oooforum.org/forum/viewtopic.phtml?t=5252 # http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/Working_with_Presentations # http://mail.python.org/pipermail/python-win32/2008-January/006676.html # http://www.linuxjournal.com/content/starting-stopping-and-connecting-openoffice-python # http://nxsy.org/comparing-documents-with-openoffice-and-python import logging import os import time from openlp.core.common import is_win, Registry if is_win(): from win32com.client import Dispatch import pywintypes # Declare an empty exception to match the exception imported from UNO class ErrorCodeIOException(Exception): pass else: try: import uno from com.sun.star.beans import PropertyValue from com.sun.star.task import ErrorCodeIOException uno_available = True except ImportError: uno_available = False from PyQt5 import QtCore from openlp.core.lib import ScreenList from openlp.core.utils import delete_file, get_uno_command, get_uno_instance from .presentationcontroller import PresentationController, PresentationDocument, TextType log = logging.getLogger(__name__) class ImpressController(PresentationController): """ Class to control interactions with Impress presentations. It creates the runtime environment, loads and closes the presentation as well as triggering the correct activities based on the users input. """ log.info('ImpressController loaded') def __init__(self, plugin): """ Initialise the class """ log.debug('Initialising') super(ImpressController, self).__init__(plugin, 'Impress', ImpressDocument) self.supports = ['odp'] self.also_supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm'] self.process = None self.desktop = None self.manager = None def check_available(self): """ Impress is able to run on this machine. """ log.debug('check_available') if is_win(): return self.get_com_servicemanager() is not None else: return uno_available def start_process(self): """ Loads a running version of OpenOffice in the background. It is not displayed to the user but is available to the UNO interface when required. """ log.debug('start process Openoffice') if is_win(): self.manager = self.get_com_servicemanager() self.manager._FlagAsMethod('Bridge_GetStruct') self.manager._FlagAsMethod('Bridge_GetValueObject') else: # -headless cmd = get_uno_command() self.process = QtCore.QProcess() self.process.startDetached(cmd) def get_uno_desktop(self): """ On non-Windows platforms, use Uno. Get the OpenOffice desktop which will be used to manage impress. """ log.debug('get UNO Desktop Openoffice') uno_instance = None loop = 0 log.debug('get UNO Desktop Openoffice - getComponentContext') context = uno.getComponentContext() log.debug('get UNO Desktop Openoffice - createInstaneWithContext - UnoUrlResolver') resolver = context.ServiceManager.createInstanceWithContext('com.sun.star.bridge.UnoUrlResolver', context) while uno_instance is None and loop < 3: try: uno_instance = get_uno_instance(resolver) except: log.warning('Unable to find running instance ') self.start_process() loop += 1 try: self.manager = uno_instance.ServiceManager log.debug('get UNO Desktop Openoffice - createInstanceWithContext - Desktop') desktop = self.manager.createInstanceWithContext("com.sun.star.frame.Desktop", uno_instance) return desktop except: log.warning('Failed to get UNO desktop') return None def get_com_desktop(self): """ On Windows platforms, use COM. Return the desktop object which will be used to manage Impress. """ log.debug('get COM Desktop OpenOffice') if not self.manager: return None desktop = None try: desktop = self.manager.createInstance('com.sun.star.frame.Desktop') except (AttributeError, pywintypes.com_error): log.warning('Failure to find desktop - Impress may have closed') return desktop if desktop else None def get_com_servicemanager(self): """ Return the OOo service manager for windows. """ log.debug('get_com_servicemanager openoffice') try: return Dispatch('com.sun.star.ServiceManager') except pywintypes.com_error: log.warning('Failed to get COM service manager. Impress Controller has been disabled') return None def kill(self): """ Called at system exit to clean up any running presentations. """ log.debug('Kill OpenOffice') while self.docs: self.docs[0].close_presentation() desktop = None try: if not is_win(): desktop = self.get_uno_desktop() else: desktop = self.get_com_desktop() except: log.warning('Failed to find an OpenOffice desktop to terminate') if not desktop: return docs = desktop.getComponents() cnt = 0 if docs.hasElements(): list_elements = docs.createEnumeration() while list_elements.hasMoreElements(): doc = list_elements.nextElement() if doc.getImplementationName() != 'com.sun.star.comp.framework.BackingComp': cnt += 1 if cnt > 0: log.debug('OpenOffice not terminated as docs are still open') else: try: desktop.terminate() log.debug('OpenOffice killed') except: log.warning('Failed to terminate OpenOffice') class ImpressDocument(PresentationDocument): """ Class which holds information and controls a single presentation. """ def __init__(self, controller, presentation): """ Constructor, store information about the file and initialise. """ log.debug('Init Presentation OpenOffice') super(ImpressDocument, self).__init__(controller, presentation) self.document = None self.presentation = None self.control = None def load_presentation(self): """ Called when a presentation is added to the SlideController. It builds the environment, starts communcations with the background OpenOffice task started earlier. If OpenOffice is not present is is started. Once the environment is available the presentation is loaded and started. """ log.debug('Load Presentation OpenOffice') if is_win(): desktop = self.controller.get_com_desktop() if desktop is None: self.controller.start_process() desktop = self.controller.get_com_desktop() url = 'file:///' + self.file_path.replace('\\', '/').replace(':', '|').replace(' ', '%20') else: desktop = self.controller.get_uno_desktop() url = uno.systemPathToFileUrl(self.file_path) if desktop is None: return False self.desktop = desktop properties = [] properties.append(self.create_property('Hidden', True)) properties = tuple(properties) try: self.document = desktop.loadComponentFromURL(url, '_blank', 0, properties) except: log.warning('Failed to load presentation %s' % url) return False self.presentation = self.document.getPresentation() self.presentation.Display = ScreenList().current['number'] + 1 self.control = None self.create_thumbnails() self.create_titles_and_notes() return True def create_thumbnails(self): """ Create thumbnail images for presentation. """ log.debug('create thumbnails OpenOffice') if self.check_thumbnails(): return if is_win(): thumb_dir_url = 'file:///' + self.get_temp_folder().replace('\\', '/') \ .replace(':', '|').replace(' ', '%20') else: thumb_dir_url = uno.systemPathToFileUrl(self.get_temp_folder()) properties = [] properties.append(self.create_property('FilterName', 'impress_png_Export')) properties = tuple(properties) doc = self.document pages = doc.getDrawPages() if not pages: return if not os.path.isdir(self.get_temp_folder()): os.makedirs(self.get_temp_folder()) for index in range(pages.getCount()): page = pages.getByIndex(index) doc.getCurrentController().setCurrentPage(page) url_path = '%s/%s.png' % (thumb_dir_url, str(index + 1)) path = os.path.join(self.get_temp_folder(), str(index + 1) + '.png') try: doc.storeToURL(url_path, properties) self.convert_thumbnail(path, index + 1) delete_file(path) except ErrorCodeIOException as exception: log.exception('ERROR! ErrorCodeIOException %d' % exception.ErrCode) except: log.exception('%s - Unable to store openoffice preview' % path) def create_property(self, name, value): """ Create an OOo style property object which are passed into some Uno methods. """ log.debug('create property OpenOffice') if is_win(): property_object = self.controller.manager.Bridge_GetStruct('com.sun.star.beans.PropertyValue') else: property_object = PropertyValue() property_object.Name = name property_object.Value = value return property_object def close_presentation(self): """ Close presentation and clean up objects. Triggered by new object being added to SlideController or OpenLP being shutdown. """ log.debug('close Presentation OpenOffice') if self.document: if self.presentation: try: self.presentation.end() self.presentation = None self.document.dispose() except: log.warning("Closing presentation failed") self.document = None self.controller.remove_doc(self) def is_loaded(self): """ Returns true if a presentation is loaded. """ log.debug('is loaded OpenOffice') if self.presentation is None or self.document is None: log.debug("is_loaded: no presentation or document") return False try: if self.document.getPresentation() is None: log.debug("getPresentation failed to find a presentation") return False except: log.warning("getPresentation failed to find a presentation") return False return True def is_active(self): """ Returns true if a presentation is active and running. """ log.debug('is active OpenOffice') if not self.is_loaded(): return False return self.control.isRunning() if self.control else False def unblank_screen(self): """ Unblanks the screen. """ log.debug('unblank screen OpenOffice') return self.control.resume() def blank_screen(self): """ Blanks the screen. """ log.debug('blank screen OpenOffice') self.control.blankScreen(0) def is_blank(self): """ Returns true if screen is blank. """ log.debug('is blank OpenOffice') if self.control and self.control.isRunning(): return self.control.isPaused() else: return False def stop_presentation(self): """ Stop the presentation, remove from screen. """ log.debug('stop presentation OpenOffice') self.presentation.end() self.control = None def start_presentation(self): """ Start the presentation from the beginning. """ log.debug('start presentation OpenOffice') if self.control is None or not self.control.isRunning(): window = self.document.getCurrentController().getFrame().getContainerWindow() window.setVisible(True) self.presentation.start() self.control = self.presentation.getController() # start() returns before the Component is ready. Try for 15 seconds. sleep_count = 1 while not self.control and sleep_count < 150: time.sleep(0.1) sleep_count += 1 self.control = self.presentation.getController() window.setVisible(False) else: self.control.activate() self.goto_slide(1) # Make sure impress doesn't steal focus, unless we're on a single screen setup if len(ScreenList().screen_list) > 1: Registry().get('main_window').activateWindow() def get_slide_number(self): """ Return the current slide number on the screen, from 1. """ return self.control.getCurrentSlideIndex() + 1 def get_slide_count(self): """ Return the total number of slides. """ return self.document.getDrawPages().getCount() def goto_slide(self, slide_no): """ Go to a specific slide (from 1). :param slide_no: The slide the text is required for, starting at 1 """ self.control.gotoSlideIndex(slide_no - 1) def next_step(self): """ Triggers the next effect of slide on the running presentation. """ is_paused = self.control.isPaused() self.control.gotoNextEffect() time.sleep(0.1) if not is_paused and self.control.isPaused(): self.control.gotoPreviousEffect() def previous_step(self): """ Triggers the previous slide on the running presentation. """ self.control.gotoPreviousEffect() def get_slide_text(self, slide_no): """ Returns the text on the slide. :param slide_no: The slide the text is required for, starting at 1 """ return self.__get_text_from_page(slide_no) def get_slide_notes(self, slide_no): """ Returns the text in the slide notes. :param slide_no: The slide the notes are required for, starting at 1 """ return self.__get_text_from_page(slide_no, TextType.Notes) def __get_text_from_page(self, slide_no, text_type=TextType.SlideText): """ Return any text extracted from the presentation page. :param slide_no: The slide the notes are required for, starting at 1 :param notes: A boolean. If set the method searches the notes of the slide. :param text_type: A TextType. Enumeration of the types of supported text. """ text = '' if TextType.Title <= text_type <= TextType.Notes: pages = self.document.getDrawPages() if 0 < slide_no <= pages.getCount(): page = pages.getByIndex(slide_no - 1) if text_type == TextType.Notes: page = page.getNotesPage() for index in range(page.getCount()): shape = page.getByIndex(index) shape_type = shape.getShapeType() if shape.supportsService("com.sun.star.drawing.Text"): # if they requested title, make sure it is the title if text_type != TextType.Title or shape_type == "com.sun.star.presentation.TitleTextShape": text += shape.getString() + '\n' return text def create_titles_and_notes(self): """ Writes the list of titles (one per slide) to 'titles.txt' and the notes to 'slideNotes[x].txt' in the thumbnails directory """ titles = [] notes = [] pages = self.document.getDrawPages() for slide_no in range(1, pages.getCount() + 1): titles.append(self.__get_text_from_page(slide_no, TextType.Title).replace('\n', ' ') + '\n') note = self.__get_text_from_page(slide_no, TextType.Notes) if len(note) == 0: note = ' ' notes.append(note) self.save_titles_and_notes(titles, notes) OpenLP-2.4/openlp/plugins/presentations/lib/pptviewcontroller.py0000644000175000017500000002723112657640340024354 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging import os import logging import zipfile import re from xml.etree import ElementTree from openlp.core.common import is_win if is_win(): from ctypes import cdll from ctypes.wintypes import RECT from openlp.core.utils import AppLocation from openlp.core.lib import ScreenList from .presentationcontroller import PresentationController, PresentationDocument log = logging.getLogger(__name__) class PptviewController(PresentationController): """ Class to control interactions with PowerPoint Viewer Presentations. It creates the runtime Environment , Loads the and Closes the Presentation. As well as triggering the correct activities based on the users input """ log.info('PPTViewController loaded') def __init__(self, plugin): """ Initialise the class """ log.debug('Initialising') self.process = None super(PptviewController, self).__init__(plugin, 'Powerpoint Viewer', PptviewDocument) self.supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm'] def check_available(self): """ PPT Viewer is able to run on this machine. """ log.debug('check_available') if not is_win(): return False return self.check_installed() if is_win(): def check_installed(self): """ Check the viewer is installed. """ log.debug('Check installed') try: self.start_process() return self.process.CheckInstalled() except WindowsError: return False def start_process(self): """ Loads the PPTVIEWLIB library. """ if self.process: return log.debug('start PPTView') dll_path = os.path.join(AppLocation.get_directory(AppLocation.AppDir), 'plugins', 'presentations', 'lib', 'pptviewlib', 'pptviewlib.dll') self.process = cdll.LoadLibrary(dll_path) if log.isEnabledFor(logging.DEBUG): self.process.SetDebug(1) def kill(self): """ Called at system exit to clean up any running presentations """ log.debug('Kill pptviewer') while self.docs: self.docs[0].close_presentation() class PptviewDocument(PresentationDocument): """ Class which holds information and controls a single presentation. """ def __init__(self, controller, presentation): """ Constructor, store information about the file and initialise. """ log.debug('Init Presentation PowerPoint') super(PptviewDocument, self).__init__(controller, presentation) self.presentation = None self.ppt_id = None self.blanked = False self.hidden = False def load_presentation(self): """ Called when a presentation is added to the SlideController. It builds the environment, starts communication with the background PptView task started earlier. """ log.debug('LoadPresentation') temp_folder = self.get_temp_folder() size = ScreenList().current['size'] rect = RECT(size.x(), size.y(), size.right(), size.bottom()) self.file_path = os.path.normpath(self.file_path) preview_path = os.path.join(temp_folder, 'slide') # Ensure that the paths are null terminated byte_file_path = self.file_path.encode('utf-16-le') + b'\0' preview_path = preview_path.encode('utf-16-le') + b'\0' if not os.path.isdir(temp_folder): os.makedirs(temp_folder) self.ppt_id = self.controller.process.OpenPPT(byte_file_path, None, rect, preview_path) if self.ppt_id >= 0: self.create_thumbnails() self.stop_presentation() return True else: return False def create_thumbnails(self): """ PPTviewLib creates large BMP's, but we want small PNG's for consistency. Convert them here. """ log.debug('create_thumbnails') if self.check_thumbnails(): return log.debug('create_thumbnails proceeding') for idx in range(self.get_slide_count()): path = '%s\\slide%s.bmp' % (self.get_temp_folder(), str(idx + 1)) self.convert_thumbnail(path, idx + 1) def create_titles_and_notes(self): """ Extracts the titles and notes from the zipped file and writes the list of titles (one per slide) to 'titles.txt' and the notes to 'slideNotes[x].txt' in the thumbnails directory """ titles = None notes = None filename = os.path.normpath(self.file_path) # let's make sure we have a valid zipped presentation if os.path.exists(filename) and zipfile.is_zipfile(filename): namespaces = {"p": "http://schemas.openxmlformats.org/presentationml/2006/main", "a": "http://schemas.openxmlformats.org/drawingml/2006/main"} # open the file with zipfile.ZipFile(filename) as zip_file: # find the presentation.xml to get the slide count with zip_file.open('ppt/presentation.xml') as pres: tree = ElementTree.parse(pres) nodes = tree.getroot().findall(".//p:sldIdLst/p:sldId", namespaces=namespaces) # initialize the lists titles = ['' for i in range(len(nodes))] notes = ['' for i in range(len(nodes))] # loop thru the file list to find slides and notes for zip_info in zip_file.infolist(): node_type = '' index = -1 list_to_add = None # check if it is a slide match = re.search("slides/slide(.+)\.xml", zip_info.filename) if match: index = int(match.group(1)) - 1 node_type = 'ctrTitle' list_to_add = titles # or a note match = re.search("notesSlides/notesSlide(.+)\.xml", zip_info.filename) if match: index = int(match.group(1)) - 1 node_type = 'body' list_to_add = notes # if it is one of our files, index shouldn't be -1 if index >= 0: with zip_file.open(zip_info) as zipped_file: tree = ElementTree.parse(zipped_file) text = '' nodes = tree.getroot().findall(".//p:ph[@type='" + node_type + "']../../..//p:txBody//a:t", namespaces=namespaces) # if we found any content if nodes and len(nodes) > 0: for node in nodes: if len(text) > 0: text += '\n' text += node.text # Let's remove the \n from the titles and # just add one at the end if node_type == 'ctrTitle': text = text.replace('\n', ' ').replace('\x0b', ' ') + '\n' list_to_add[index] = text # now let's write the files self.save_titles_and_notes(titles, notes) def close_presentation(self): """ Close presentation and clean up objects. Triggered by new object being added to SlideController or OpenLP being shut down. """ log.debug('ClosePresentation') if self.controller.process: self.controller.process.ClosePPT(self.ppt_id) self.ppt_id = -1 self.controller.remove_doc(self) def is_loaded(self): """ Returns true if a presentation is loaded. """ if self.ppt_id < 0: return False if self.get_slide_count() < 0: return False return True def is_active(self): """ Returns true if a presentation is currently active. """ return self.is_loaded() and not self.hidden def blank_screen(self): """ Blanks the screen. """ self.controller.process.Blank(self.ppt_id) self.blanked = True def unblank_screen(self): """ Unblanks (restores) the presentation. """ self.controller.process.Unblank(self.ppt_id) self.blanked = False def is_blank(self): """ Returns true if screen is blank. """ log.debug('is blank OpenOffice') return self.blanked def stop_presentation(self): """ Stops the current presentation and hides the output. """ self.hidden = True self.controller.process.Stop(self.ppt_id) def start_presentation(self): """ Starts a presentation from the beginning. """ if self.hidden: self.hidden = False self.controller.process.Resume(self.ppt_id) else: self.controller.process.RestartShow(self.ppt_id) def get_slide_number(self): """ Returns the current slide number. """ return self.controller.process.GetCurrentSlide(self.ppt_id) def get_slide_count(self): """ Returns total number of slides. """ return self.controller.process.GetSlideCount(self.ppt_id) def goto_slide(self, slide_no): """ Moves to a specific slide in the presentation. :param slide_no: The slide the text is required for, starting at 1 """ self.controller.process.GotoSlide(self.ppt_id, slide_no) def next_step(self): """ Triggers the next effect of slide on the running presentation. """ self.controller.process.NextStep(self.ppt_id) def previous_step(self): """ Triggers the previous slide on the running presentation. """ self.controller.process.PrevStep(self.ppt_id) OpenLP-2.4/openlp/plugins/presentations/lib/messagelistener.py0000644000175000017500000004221612657640340023744 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging import copy import os from PyQt5 import QtCore from openlp.core.common import Registry from openlp.core.ui import HideMode from openlp.core.lib import ServiceItemContext, ServiceItem from openlp.plugins.presentations.lib.pdfcontroller import PDF_CONTROLLER_FILETYPES log = logging.getLogger(__name__) class Controller(object): """ This is the Presentation listener who acts on events from the slide controller and passes the messages on the the correct presentation handlers. """ log.info('Controller loaded') def __init__(self, live): """ Constructor """ self.is_live = live self.doc = None self.hide_mode = None log.info('%s controller loaded' % live) def add_handler(self, controller, file, hide_mode, slide_no): """ Add a handler, which is an instance of a presentation and slidecontroller combination. If the slidecontroller has a display then load the presentation. """ log.debug('Live = %s, add_handler %s' % (self.is_live, file)) self.controller = controller if self.doc is not None: self.shutdown() self.doc = self.controller.add_document(file) if not self.doc.load_presentation(): # Display error message to user # Inform slidecontroller that the action failed? self.doc.slidenumber = 0 return self.doc.slidenumber = slide_no self.hide_mode = hide_mode log.debug('add_handler, slide_number: %d' % slide_no) if self.is_live: if hide_mode == HideMode.Screen: Registry().execute('live_display_hide', HideMode.Screen) self.stop() elif hide_mode == HideMode.Theme: self.blank(hide_mode) elif hide_mode == HideMode.Blank: self.blank(hide_mode) else: self.doc.start_presentation() Registry().execute('live_display_hide', HideMode.Screen) self.doc.slidenumber = 1 if slide_no > 1: self.slide(slide_no) def activate(self): """ Active the presentation, and show it on the screen. Use the last slide number. """ log.debug('Live = %s, activate' % self.is_live) if not self.doc: return False if self.doc.is_active(): return True if not self.doc.is_loaded(): if not self.doc.load_presentation(): log.warning('Failed to activate %s' % self.doc.file_path) return False if self.is_live: self.doc.start_presentation() if self.doc.slidenumber > 1: if self.doc.slidenumber > self.doc.get_slide_count(): self.doc.slidenumber = self.doc.get_slide_count() self.doc.goto_slide(self.doc.slidenumber) if self.doc.is_active(): return True else: log.warning('Failed to activate %s' % self.doc.file_path) return False def slide(self, slide): """ Go to a specific slide """ log.debug('Live = %s, slide' % self.is_live) if not self.doc: return if not self.is_live: return if self.hide_mode: self.doc.slidenumber = int(slide) + 1 self.poll() return if not self.activate(): return self.doc.goto_slide(int(slide) + 1) self.poll() def first(self): """ Based on the handler passed at startup triggers the first slide. """ log.debug('Live = %s, first' % self.is_live) if not self.doc: return if not self.is_live: return if self.hide_mode: self.doc.slidenumber = 1 self.poll() return if not self.activate(): return self.doc.start_presentation() self.poll() def last(self): """ Based on the handler passed at startup triggers the last slide. """ log.debug('Live = %s, last' % self.is_live) if not self.doc: return if not self.is_live: return if self.hide_mode: self.doc.slidenumber = self.doc.get_slide_count() self.poll() return if not self.activate(): return self.doc.goto_slide(self.doc.get_slide_count()) self.poll() def next(self): """ Based on the handler passed at startup triggers the next slide event. """ log.debug('Live = %s, next' % self.is_live) if not self.doc: return if not self.is_live: return if self.hide_mode: if not self.doc.is_active(): return if self.doc.slidenumber < self.doc.get_slide_count(): self.doc.slidenumber += 1 self.poll() return if not self.activate(): return # The "End of slideshow" screen is after the last slide. Note, we can't just stop on the last slide, since it # may contain animations that need to be stepped through. if self.doc.slidenumber > self.doc.get_slide_count(): return self.doc.next_step() self.poll() def previous(self): """ Based on the handler passed at startup triggers the previous slide event. """ log.debug('Live = %s, previous' % self.is_live) if not self.doc: return if not self.is_live: return if self.hide_mode: if not self.doc.is_active(): return if self.doc.slidenumber > 1: self.doc.slidenumber -= 1 self.poll() return if not self.activate(): return self.doc.previous_step() self.poll() def shutdown(self): """ Based on the handler passed at startup triggers slide show to shut down. """ log.debug('Live = %s, shutdown' % self.is_live) if not self.doc: return self.doc.close_presentation() self.doc = None def blank(self, hide_mode): """ Instruct the controller to blank the presentation. """ log.debug('Live = %s, blank' % self.is_live) self.hide_mode = hide_mode if not self.doc: return if not self.is_live: return if hide_mode == HideMode.Theme: if not self.doc.is_loaded(): return if not self.doc.is_active(): return Registry().execute('live_display_hide', HideMode.Theme) elif hide_mode == HideMode.Blank: if not self.activate(): return self.doc.blank_screen() def stop(self): """ Instruct the controller to stop and hide the presentation. """ log.debug('Live = %s, stop' % self.is_live) # The document has not been loaded yet, so don't do anything. This can happen when going live with a # presentation while blanked to desktop. if not self.doc: return # Save the current slide number to be able to return to this slide if the presentation is activated again. if self.doc.is_active(): self.doc.slidenumber = self.doc.get_slide_number() self.hide_mode = HideMode.Screen if not self.doc: return if not self.is_live: return if not self.doc.is_loaded(): return if not self.doc.is_active(): return self.doc.stop_presentation() def unblank(self): """ Instruct the controller to unblank the presentation. """ log.debug('Live = %s, unblank' % self.is_live) self.hide_mode = None if not self.doc: return if not self.is_live: return if not self.activate(): return self.doc.unblank_screen() Registry().execute('live_display_hide', HideMode.Screen) def poll(self): if not self.doc: return self.doc.poll_slidenumber(self.is_live, self.hide_mode) class MessageListener(object): """ This is the Presentation listener who acts on events from the slide controller and passes the messages on the correct presentation handlers """ log.info('Message Listener loaded') def __init__(self, media_item): self._setup(media_item) def _setup(self, media_item): """ Start up code moved out to make mocking easier :param media_item: The plugin media item handing Presentations """ self.controllers = media_item.controllers self.media_item = media_item self.preview_handler = Controller(False) self.live_handler = Controller(True) # messages are sent from core.ui.slidecontroller Registry().register_function('presentations_start', self.startup) Registry().register_function('presentations_stop', self.shutdown) Registry().register_function('presentations_hide', self.hide) Registry().register_function('presentations_first', self.first) Registry().register_function('presentations_previous', self.previous) Registry().register_function('presentations_next', self.next) Registry().register_function('presentations_last', self.last) Registry().register_function('presentations_slide', self.slide) Registry().register_function('presentations_blank', self.blank) Registry().register_function('presentations_unblank', self.unblank) self.timer = QtCore.QTimer() self.timer.setInterval(500) self.timer.timeout.connect(self.timeout) def startup(self, message): """ Start of new presentation. Save the handler as any new presentations start here """ log.debug('Startup called with message %s' % message) is_live = message[1] item = message[0] hide_mode = message[2] file = item.get_frame_path() self.handler = item.processor # When starting presentation from the servicemanager we convert # PDF/XPS/OXPS-serviceitems into image-serviceitems. When started from the mediamanager # the conversion has already been done at this point. file_type = os.path.splitext(file.lower())[1][1:] if file_type in PDF_CONTROLLER_FILETYPES: log.debug('Converting from pdf/xps/oxps to images for serviceitem with file %s', file) # Create a copy of the original item, and then clear the original item so it can be filled with images item_cpy = copy.copy(item) item.__init__(None) if is_live: self.media_item.generate_slide_data(item, item_cpy, False, False, ServiceItemContext.Live, file) else: self.media_item.generate_slide_data(item, item_cpy, False, False, ServiceItemContext.Preview, file) # Some of the original serviceitem attributes is needed in the new serviceitem item.footer = item_cpy.footer item.from_service = item_cpy.from_service item.iconic_representation = item_cpy.iconic_representation item.image_border = item_cpy.image_border item.main = item_cpy.main item.theme_data = item_cpy.theme_data # When presenting PDF/XPS/OXPS, we are using the image presentation code, # so handler & processor is set to None, and we skip adding the handler. self.handler = None else: if self.handler == self.media_item.automatic: self.handler = self.media_item.find_controller_by_type(file) if not self.handler: return else: # the saved handler is not present so need to use one based on file suffix. if not self.controllers[self.handler].available: self.handler = self.media_item.find_controller_by_type(file) if not self.handler: return if is_live: controller = self.live_handler else: controller = self.preview_handler # When presenting PDF/XPS/OXPS, we are using the image presentation code, # so handler & processor is set to None, and we skip adding the handler. if self.handler is None: self.controller = controller else: controller.add_handler(self.controllers[self.handler], file, hide_mode, message[3]) self.timer.start() def slide(self, message): """ React to the message to move to a specific slide. :param message: The message {1} is_live {2} slide """ is_live = message[1] slide = message[2] if is_live: self.live_handler.slide(slide) else: self.preview_handler.slide(slide) def first(self, message): """ React to the message to move to the first slide. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.first() else: self.preview_handler.first() def last(self, message): """ React to the message to move to the last slide. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.last() else: self.preview_handler.last() def next(self, message): """ React to the message to move to the next animation/slide. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.next() else: self.preview_handler.next() def previous(self, message): """ React to the message to move to the previous animation/slide. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.previous() else: self.preview_handler.previous() def shutdown(self, message): """ React to message to shutdown the presentation. I.e. end the show and close the file. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.shutdown() self.timer.stop() else: self.preview_handler.shutdown() def hide(self, message): """ React to the message to show the desktop. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.stop() def blank(self, message): """ React to the message to blank the display. :param message: The message {1} is_live {2} slide """ is_live = message[1] hide_mode = message[2] if is_live: self.live_handler.blank(hide_mode) def unblank(self, message): """ React to the message to unblank the display. :param message: The message {1} is_live """ is_live = message[1] if is_live: self.live_handler.unblank() def timeout(self): """ The presentation may be timed or might be controlled by the application directly, rather than through OpenLP. Poll occasionally to check which slide is currently displayed so the slidecontroller view can be updated. """ self.live_handler.poll() OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/0000755000175000017500000000000012657640341022361 5ustar raoulraoulOpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/test.pptx0000644000175000017500000013351512657640340024264 0ustar raoulraoulPK!Ì»~á)[Content_Types].xml ¢( ̘ßoÚ0Çß'íˆü:C×õ—}ØÖ§n«Ôîð’¼9¶eZþû]hÓ ­c%/ˆ‹ï¾÷1Áw'/J‘,ÁX®dFFé$ sUp9ËÈﻫÁI¬c²`BIÈÈ ,¹œ|ü0¾[i° FK›‘¹sú‚R›Ï¡d6U$®L•)™CǪ́fù?6z4žÐ\IÒ \¥A&ão0e á’ïø¸&ù«aF’¯µc•+#¼¬üÝc@Ø1LkÁsæp.eñ‚l°¦J1ÒûØ9×ö:ìÈP­ìN°Žû…?§á$7̸Ÿ¬D/ªµ£Ú€Å8®´UM§<‡Bå‹CÒ¦X)ž™iɸÜlbŒøð³_}ÓµMÖÐ>ˆiM‡ã-G|îœà¸s‚/HåÀnNGÃhý_ÙÐÞÇTEÞ¥mŒÚá…÷,9ÜG!xÞGà°¿@ýþ*¼ÌÞŒì€[·Ðú®Òˆk¶R ·>µ§JÖÚïeŠS7ØâTÒ0¦8µ5Œ)Nµ c:é!Ói™ÎzÈtÞC¦Ñ°P]VòFW /ÞuU?öÜÖcÞÓ÷8Ó•—~Pë­,¨õ> Ôz j½ƒ„Ñ~€¥¹2ðv„Í=D=Ð(Æñ×ÇÂÇŒ(¼g¨®8 (¶ä¦þ¢gòÿÿPK!høt¡â _rels/.rels ¢( ¬’ÛJ1†ïß!Ì}7Û*"ÒloDèÈúc2»ÝH¦Ò¾½¡àaa-‚½ÌÌ?ß$Yoön ^Á²ªA×ÁXß+xn· 2£78O ”aÓ\^¬ŸhD.Cy°1‹BñYÁÀï¤Ìz ‡¹ ‘|ét!9ärL½Œ¨ß°'¹ªë™~2 ™0ÅÖ(H[s¢=Dú[:b4È(uH´ˆ©L'¶eÑbꉘ K9U!ƒœZWˆ‡{ñhÇ•¯^õ©ÿMhùw¡ÐuVÓ}Ð;Gžç¼¦‰o§YÆD¹éS7t}N!Ú3yCæô£aŒŸFrò3›ÿÿPK!Ø‚kÖÎ ppt/slides/_rels/slide1.xml.rels¬‘1kÄ0 …÷BÿƒÑ^;¹¡”rÎ-åàà¦öúŒ­$¦‰l,]iþ}Ý¥$pC‡ŽzzúÞí_ó¤>±pLd¡Õ ($ŸB¤ÁÂûåøðŠÅQpS"´° ỿۿâä¤ñ3«J!¶0ŠägcØ8;Ö)#ÕMŸÊ줎e0Ùù7 Ù5Í£)kt¦: åv .KÆ¿°SßG/É_g$¹a( òÛVª+Š­WòÚÒêÊs»VûŸµø'îì–t•M¯•¾1ý63›/tßÿÿPK!#óp¤ÖÎ ppt/slides/_rels/slide2.xml.rels¬‘1kÄ0 …÷BÿƒÑ^;—¡”rÎ-¥pЩ½þa+‰ibËw\þ}Ý¥$pC‡ŽzzúÞí×yRÊ8ZØéEÇ>ÄÁÂçéõá ”Œ'Žda!Cw·§ K=’1$Q•ÅÂXJz6FÜH3ŠæD±nzÎ3–:æÁ$t_8i›æÑä5º S½…|ô-¨Ó’è/lîûàè…Ýy¦XnD˜È…äc ž*ó@Å‚Ö+ymiu價]k÷Ÿµä'î >—M¯•¾1ý63›/tßÿÿPK!ìïÇ×Î ppt/slides/_rels/slide4.xml.rels¬‘AKÄ0…ï‚ÿ!Ìݤ]DD6Ý‹ žtý!™¶aÛIÈÌŠý÷ƃÐÂx¨N7© $áL2I,Û²M!U uªÊbae9×ã;GW~¬7_}‡v  —‚ât–`¢” ůÅÃÕ FÆ2Q±N  xƒ7ùåÅú:fÝ&Óres†âÖZuGˆ)[è™™I­ÔR÷̺R7D±ò5@²$Yí{à|䉶Åz[¹ùÅ à?Þ²®y ÷²üèAØ3#ˆÒ`ž´tÃPÁt–âƒ4sn˜œ‡˜Ç„0¯à°/Õ,qBH æ‘ úˆâ‰£Ž4„•M”M"qš'Ž:‚X«‰²Y³‰Žeo¼Ø¡ïybˆd9Q‹`IÔ8Ü^b_þˆÁƒ±˜(‰yâ6&ÄŽÃçÉÓzþ ÈèÓÈ¿ÿÿPK!b%³Ì×Î ppt/slides/_rels/slide5.xml.rels¬‘AKÄ0…ï‚ÿ!Ìݤ]PD6Ý‹ žtý!™¶aÛIÈÌŠý÷ƃÐÂ1§Ó‘995_Ìé©y ;çùðæ‘m®Ã$ H†¼(ËÓÜvôkkNI)O¶.=;y¶÷4a; ëUÓo˜~¤[ý _ß`3¶\J׺_Ja³Ì)Ÿ|]ØìÆ.ì……=ø`¶‚Á`&šÕÀj(íàV_Õ“m\kI´÷‚­ï yd-ý ?gué=Si6%¬Éá)‚µuÕ2f;fIÓ?™4ôvX`ï¼Ì®àcƒ  ,e‹a*=æBA7ˆ‚E |ï> X[MÖîZPc k,a¸LñŒâ‘äçŽO( D½3uàzo¸ú{°ŽqdwXÞ(I§fªâ@Ü`vÄãñaÇ\ˆqƒÙOÄÃxfäƒÜpvÈÓò<Êó òAn8;äÙyå™=–÷È!ê?=¼~sv/â;¾ÏæzåÙIº.˜Öp<ÃMq¹áDׯߨ¡è€NG@§I||6^€ž ÔPt@óPCóøè»=¨¡è€^€féôø`»=¨¡hK£Óš¥ŸAÛKÐò6²-пUeµˆâxdq5I¢E:Éáb1¹þRÅU.Ê0(˜b5LM‰õuÓÖDveq˜žÆ]K¤P¢ÑWDt®Âö{ñÊ^´¶È£¡,TWFÒyð …l¡‚M!߀—P¦ÎÌ[2®„ÙÕ¢äêiÿ~ʤŒK[Nú{Û²ºïíDáÿ¢¶=Âa‘ÔÝ÷nhüÀü?ÿÿPK!uÀ‘ÓNppt/slides/slide5.xmläVÛnÛ8}/°ÿ 轑|‰íuŠ&MƒÝԈݾÓ$-¡H†¤{¿¾Ã‹d+qZ§E·Xì‹Dr8sfÎ\¤7o7OÖT&Å$íœäiB–„‰b’~™x=Jc‘ ˆKA'é–šôíù_¯Þ¨±á$maÆh’–Öªq–\Ò ™©¨ÙRê YØê"#=€ÕŠgÝ<db"úú}¹\2LßK¼ª¨°Áˆ¦YðÜ”L™Úš:ÆšÒÔ€¯Ýré"Ã3NÜÛ¨¹¦Ô­ÄúZ«™šj/¾YOuÂð•&U@KšEA¼æ·bíÙ#õ¢^¢ñf©+÷†Ø’Í$ò·î™¹3º± ‡xwŠËÏîâòêÀí¬Èö@]TÁ¹§áôó³QÑ-Åö‚Ó¤ÛW»mÔ'‰ïL"$„X—%ܦﴖ%Eĸã|£qoU&v«[=g–Óx5ÈýbçíAª£ÓQ8èvzy¿{Úfm8vûî‚c£Óæy¸±ÏI0­Ævs!ÉÖi/à \ K©½wÁ*7vf·œúr»¹N¡âõõtÊ?@¢ƒõíùœ›ô¨õÐ.8o Û¡zG~˜—³§yéýƼ˜Õ"äð7;•ãóÓé ;ƒ˜ Þh4èÖ¤Ô M>ƒ>AÃÓ®»}d‚^œ“^s‚ääåVGeÖ¿Â q¬ÇÙ‚¹þ©ÏkCÊR}é ɘ Ý0Ê*ø•ød¬Ï u2õ0"+¨Z&]2Á,d¦œEÚNRAaÈ»z tî3l«[)mw%ãd^[5ô>ÁRà•Ö0 CAÒÞa¨ Jï‚F„ì€ÜA¸y:£÷0yÞK“%ãæ¶ädßæ ßM‘ö&Œ½”‚D à!IŒÿm =×¾ù=äþsÈÌ–×Z®Ô÷¡Cɾñ4Mü·Ç~|ï¹ ›KŽŒqÅ'ÍV‹Ð‹yÛG˜ä‰?}ÄÓÕr ³á—ýhxQ†Â«Ä\wZî¼Í•õ\ø2.ì_ÙÂ&F5“.´|ªÛþ?|¸Tø°ƒÉ ­U»Ad­¾a=ª·çÆ‹“53lÁ8³[§Ô÷7§5V†8õWK‚÷Všï–“;_uNoÐ:à,V¯‰Ÿ”ÓðµÎè_o³ÿjëtò?Ú;Ø;õWüÚ;ψAªéúq舓b ¢t—’6÷`ª°1ˆpèl‚vÀl[ußÐg@n@ô“ -«žÅûcxh~!¼vVÓýBÚk–Å ŒMRVë8;ñ§Ä!ÃoÍ7ÿÿPK!u1ÒNppt/slides/slide4.xmläVÛnÛ8}_ ÿ è½ÑÅ×5êMš tS#öö¦h‰E2$íØýú^$[‰Ó:-ºÅ¢/ÉáÌ™™33Ò›·ÛšE¢4|ggiŽEAy9ÿYüõzGÚ ^ &8™Æ;¢ã·ç¯þx#'šhs=AÓ¸2FN’DãŠÔHŸ I8ÈVBÕÈÀV•I¡ÐX­Y’§é0©åqÐW§è‹ÕŠbò^àuM¸ñFaȀ红R7Öä)Ö¤"Ì8íŽK瞳¾µ\(BìŠo®•œË™râ›ÍLE´€|ÅG5¤%N‚ \s[¾q‹ä‘zÙ,Ñd»Rµ}ClÑvCòwö™Ø3²5ö‡xŠ«OGîâêêÈí¤H@mTÞ¹§á ²#ø[B¼³Ò~·¬ÜúbSgõÚœ„Jø1ñ“rý²Öÿç­óçÿµu²ô—öNz§ùŠÿ¦½óŒ¤Šl³@68Ág Š÷”ts¦J‚ð‡Ö&h{Ì®Uû }äDß Ò±ê²xJÚ_ˆ%k‚Õì°še¹cÓXÂk'ü”Xdø­ùÿÿPK!2>†4ÔNppt/slides/slide1.xmläVÛnÛ8}/°ÿ è½ÑÅ×uŠ&MƒÝԈݾÓ-¡H†¤»_¿Ã‹d+uZ§E·Xì‹Dr8sfæÌŒôúͶfц(MŸÆÙYG„cQP^NãÏ‹÷/Çq¤ âb‚“i¼#:~sþ׋×r¢Y6×4+cä$I4®Hô™„ƒl%T lU™ =€Õš%yš“Q}uоX­(&ï^ׄoD† x®+*ucMžbM*¢ÁŒÓî¸t‘á9+ì[Ë…"Ä®øæZɹœ)'¾ÙÌTD ÈWqTCZâ$Â5·å·H©—ÍM¶+UÛ7Äm§1$gŸ‰=#[aˆ÷§¸útä.®®ŽÜN€äÔFåû6œ<¤MD·í%#QÞ׸­åGïtÄ„å³ .+¸MÞ*%*‚ m}ð­¢Ïˆ}Ë*2; (ب5Œ„«^î{o¦j8ŒSŸƒ<ë¥ý|ÐÍÚh4Êûö‚ÍFÖ¥©¿q˜oZNÌöB;«½„7äq\ å¼óV™6s³cÄm¤}8ŸÜeÈv á/¯/ S¾Nã¾…uÍù‚heÔ8hœ3ìQ#?䥭´=/½ßÈ‹^/=/€¿Ý«œÎOÖeÃ@Po<æMR‚†&Ç #h4Èíí z6'½>p‚Žpò|+Ë“˜u/?HlÖÃlÁLý䧃ƒ!eˆºtG†d hŒÒnÅ?jãØB¾N¼FŪ–ò‚¬(§؃)g2Ó˜ò¶ ²p ›úVãÇ]EY±h¬jraÁñZ)¾Š€´·ª‚;¯ ó#{;OçäþÆ#Ï{q´¢ŒÁܬ8´€Åw3¤œ m./‚ð°ˆ ÿ»ºO\÷æ÷ûO!?PS]+±–߇ö%ûÄA¹oùðÎåÖo.ÒÚLœp4_/}/¦]a’(Üé£<]­V0~Ù_€v‡•/¼Æñaà:ë¸ó\4[Ö îʸ4W,|eKiÙN:ßò^(oKøÿpáîÂö&½Ü·Véí¶‘1ê†eð¨Ùžk;.Î6TÓ%eÔì¬R+<Ü´ž690ÂÇ©¾ ø[B¼³Ò~·¬ÜúbSgõÚœ„Jø5ñ7å4úc­3þ×[çÕµu²ôöNz§ùŠÿO{ç 1HÙiÿñÝqÞ—XuªÚm¦JÝ-é`ø£a@@]GÓþûÛͶ6S¥í‹Ž»ãyswqÙTÕ  “"Å£Á#TLRü°[G ŒŒ%¢ \ Hñ ¾\½w¡à 䲅IHŠKkUdž–P3 „;ÛK]ë¶úš<¹ªÇÃá<®¸Ë×oÉ—û=£p-éc¶E4pbrS2eújê-Õ”ãÊ„ìß ­3ºå…·Fí4€_‰ú£V[µÑáøs½ÑˆN/Œ©œ,8°uXĤú%Iš½®¼uÜP“b'þÑcïƒÆ"Ú:éÉKËûWbiyóJtÜ_ÿr©gÕ‚{IgÜÓÙ1ËžYõxº“ô›AB:>ž~Kï9¢åì­*‘=*WÊúR]\{'0X¶Édqô—|u68IÂÝÚ#‡°Qþ`h‡—ÿBAD[Œ ¦m`LesDÎY”¦ëhz½ü]­ç³h=›L§y¶¸Ê'7?|—¦ Õð¶$Îù¢y+Fµ4roTV݈•|­$ ƒ`4ì¦IM¸Ó6›Ì'ËárÖéä°õ6 õêv N¹þDÔ}þ„»Ì‚΃K¹IÕýˆSˆçîò~ÿÿPK!ƒi,PÒNppt/slides/slide3.xmläV[oÛ6~°ÿ 轑,;¶gÔ)š4 t©{}§IZ"B‘ I;vý/’­Äi[1ìE"yx¾ïÜ¥·ï¶5O6T&Å4íåiB–„‰ršþ¹øýÍ8MŒE‚ .¦;jÒw¿þòVM ' h 3AÓ´²VM²ÌàŠÖÈœIEÈVR×ÈÂV—ÑèPkžy>ÌjÄDõõ)úrµb˜~x]Saˆ¦Y°ÜTL™M‚¦45ãµ;&]€gxΉ{µÐ”º•ØÜh5W3íÅ·›™Nx¥‰@5„%Í¢ ^ó[±ñ‹ì‰zÙ,Ñd»Òµ{ƒoÉvšBðw3ºµ ‡xŠ«ÏGîâêúÈí¬!ÈHWÁ¸çîôóÑ ñèŽbH{ÉiR´Î5fõIâ{“ n…(È« nÓ÷ZËÇŠ"bÜqp¾U qoU%v§€[½`–Óx5ÈýboíÑP Ççã<Ä èõóAqÞÚh4*î‚‹Fo0Êópã0&ZMìöR’Ó^Âb®¤öÖTnìÜî8õåÞ& w9rBÅ››K蔯ÓtàhýE{± Æ&…#µžÚ9ç²=«7ä»y9ž—þ?˜³^†¼ÿv¯rz~zýQoÔ‡E”&AC“Ï OÐè¼p·OLЫsÒoécNБœ¼eyRfý+ õ8[0× õyãé`HYª¯ü‘‚!´¿ ¬_‰OÆúl¡P' Ñ #²†ªe‚ÐÌBö`ÊY¤í4†¼«B>ö¾“Ò†qW1N ª¡ –¯µ†ª’öCUPz4"eq„rOáæéœ>áxby?MVŒs˜Û’“C̾Ÿ!í!Œ½’‚D°$Æÿ®Ã×½ù-æÁKÌÌV7Z®Õ·©Cɾ†Ù{ìÇ>¶asÅ‘1®Ø`âÄ£ùzz1ïÚ“ü#ñ§Oât½ZÁløa{Ú^V¡ðÇ1×½Ž9¯ese½¾ŒK{ÍãW¶´‰Qí¤ -„ꮄÿï.Þí䡵ʀÛ"kõ- ËhQ³½0n\œm˜aKÆ™Ý9¥Vx¸i-mb`eðSAð·„ÀyÒ~·œÜÙâBçôÚ8œÅJø1ñ³rý´Öÿë­óÛµuzùOí^ìæ+þ?íÄ Õtó4 t“b¢tŸ’n쪴щpè0A;pvQÝ7ô’[ýM’ªâÃ)qh!–¼1V³ÃB:h–åÀ¦©Š ktNü)qÌð[óÿÿPK!ð‰DžÓ¿*ppt/notesSlides/_rels/notesSlide5.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vRè£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!i¢_!Ç,ppt/slideMasters/_rels/slideMaster1.xml.relsÄÕMjÃ0à}¡w0³%;‰“”ÈÙ„B «’@XãjKFRJ}ûŠ–B ah! À’õæãm´?|}òÖuF ÈR êʨN7ÞÎÏ‹-$ÎK­do4 ˜ÐÁ¡||Ø¿b/}¸äÚntIHÑN@ëýøÄ˜«Z¤K͈:œÔÆÒ‡OÛ°QVï²A–s^0{å,39)ö¤Âüó4â_²M]wMuPû#˜ë;…/r2b¥mÐ HÓëýÙOÛ4Œv[¶Œ)[R²MLÙ†’eù=i>ÜÅê{çgÍ(Ç]ÿm('Š)#;+bÊ ²³¸¥‘­­cÒÖdke¾$ÕJ¤LÙ²×Nì1g±Õ]ìËéª:U­öû®3¢­0­Ò"éæ;C×pqš_ŒôŸÏgƒ@×*†ò‘"Ç#ýWú‡üÃûò "ñ'T1L5è#¯ÐHO+†Ã*Jp†ªwE‰sh[4C ¾Ò‹aLÑô‘¡eÞ0Ci®«÷é>ï‹Eáã"Zf8g²Š b0ÿ*I˪î­Ü§·’â ºo·¦të‹ÎHÌŸó ùyJߣƒª i¥˜4snîìz\Ä7|´9<Áôý`ºIA¿ÀS¾¦úÛQ¬käc.&4¦ÎÄá`òÍ–y³%_f“‚…òzUË•_&ŒJ÷Yd%b'ùYqÑÚ?œ_ÿ‚h©<ƒÉ.>]ŽBÊŠ¯r!ÂUTìŒÝ,”©°B²"k/.Ä(¯Dœâq>ø0ŠÏØ„`”¯ÅØá„¤Ñ¥Æ Ç)ÓÓ W  Á– s‡*FnЀßKþm"°Ÿ‘8N:Œ}½>0ÁñóònBpÀi„žXYO=!ô„ðÆ }7tÀ5O°AÕAÛC xÀg8*òX#x…ÉÝ Õx@÷çIJ÷ï]xïô>+–”%{wï<´ûtqGï&âà6‹=Ç`Õ°1DŠ¥a? !{.xå![¦moÙ÷,·OÐz>îù¸çãÿ‹òŠ˜Ê±Æxñ¬“{DÓY­x¹ñ¢ œÇ§ˆ"þZ“*Ôø`€ð6úL °àÆÌwTG±€Ì‘Ï6xž»i Ýžzèi §—D Ä_#ؤ-Fðž‘*^f]¤ 2‘ßA žëÚ}nГBO =)¼FRx4%,H,œù¯³±=5w2¬)¸’ãÀŒ§“`pl‡ÞÑ$ðÌ™ ª¶vÄ)l¸â®³(y’(®ðS§o_ûÓ·¯ÿÚA-ø‰Ç‘xÈ›œ(ÔÝ‹ˆÐO¨ÔææH'às4°Î‘_B ô‹×Y¼ÎâuPR®iã£TU׬eìºÆ®kœºÆ©kܺƭk¼ºÆÓµ„¤ù%¨èÚ¢ ‘uIR%°Ú º ø ]nՈͱLÇwÛs £¼†~Œ… Ú-ër-®eÕÕ‰²fCVýº¶SÖjȪÀ²vCV¥Š;e†¬ "vʺ YÿY¯!+®dÜ!ë7dÃ{dƒæ^[»C¸µqu¨s{ãÙµ°ÎJ”ùï¨wÄ€eâŒô*gG¢zŽ*éLª2ã…*FLºÛÚ!´Z»ïS­ ÇâpÇ¢]bÊï‚ñé~²¬|KŠßÇÊ…;Y \ÊŸ³¿SAÚjÀHÝ/ª¶¢Jõ-gØöw¢h½Ôž©#š"¢k%Ê‹Š3«eŒ ˆŠàYÿS*S%3”¥âU*¢Ñ ³Í<Ûˆq˜bvØ>ˆq˜bNØ>ˆq˜bnØ>ˆq˜bG,Côdó;Vß}øqÐ~þ?Ö÷øíMálð3mŸ_hê¼@Žš0lXAи€5™ 6ÂáRäÄ·bc ®íX!Ç6Í!E…~u…›<j«>ÌyÜóåÖ(:Ò¿}ý§ e› ORwž?Ý©ó]!u¾+¤Î÷ ©%Ø>`Ë3Í5ØVàú¼â…€ý[`[Âð^8ØÛѸrêh[Aÿ@Õ¶ž-þïÑÞŽäÚêÎî‹E»C·…v¼p´·³‰¶e¸¾Ð•—‰öþý:ÁîN ,×t¶»Á†nÎÑüìË&Z®áÇè$ÓKq.殾BÿQ/Í/N—yÄêƒoÂOÁ·Ñ;Óhl"«¤¨Û±…óå tà‰C=¼™ù¸£;ç±B_ξßòïoË»Ó4÷ö[þ]nywbiwOÌÒoùkÝòu*ÜH~˃‚%˜®Saxã´uatýÓêÏg›N•H;o~%ymwg¹í×·ŒOwbÚ>P}ËøìH%Û¦o îìoë@ô-´#c4Þ´;¿ñyŒÚ´#€éöNú®ØÙsýÞI·#Ífp)îãÕדäí%ù'¾‡ÿÿÿPK!J¯u9Ò¿*ppt/notesSlides/_rels/notesSlide1.xml.rels¬±j1 †÷BßÁh}—!”_–RÈ¥¤`lÝÉl,%$o_CKÉA†õKúô¡íî:Oê‚…c" ­n@!ù" >ï«P,Ž‚›¡…2ìºç§íNNê1³ªb £H~5†ýˆ³c2Ríô©ÌNjY“?¹ͺi6¦Ü3 [0Õ>X(û°u¼eü ;õ}ôø–üyF’' O1`º2 XÐú;ùi´ºÁ<öhÿÓƒ’  –…Í]¾ú53‹·w_ÿÿPK!ÕÑ’ñ¼7,ppt/slideLayouts/_rels/slideLayout1.xml.relsŒÏ½ Â0ð]ðÂí&­ƒˆ4uÁÁEôŽäÚÛ$ä¢èۛтƒã}ýþ\³M£xRb¼†ZV È›`ï5Ü®ÇÕgôÇàIÛöírÑ\hÄ\Žxp‘EQ`æÐtí„Wí£7+×cκóOüP7&èß­fh£s $ýN4é%AÒŒçA<íwƒñ¼ÓæíVO’ÞxÒš=»F׌T3߯Ӻ{6ã7ý³È©–F®ì•EÕˆC%Ÿ˜V2÷½¸Ù¨ú–pè#~»õânå@«GÖ9^µXÊõ¢n·¾:à-pwâ·üWTÅq¼â,vÕ>ú ÿÿPK!¤%‚¾éppt/notesSlides/notesSlide4.xml¬UÝnÚ0¾Ÿ´w°|Ÿ†„”BT¨H€©R×¢Ò>€ë8$šc{¶¡°©ï>ÛI€¶TESoâãcŸŸï|>'—W›Š‚5‘ªälƒ³„až•l9„3¯ÒˆeˆrF†pK¼}ÿv)bÆ5QÀØ3£!,´±ï+\ ©3.3g9—Òf+—~&ѳñ[Q?ìtz~…J{yŠ=Ïó“ Ç«Š0];‘„"mrWE)TëMœâMH¢Œgý*¥‘Á†4³«’+±õ)b.Ýñíz.A™™ŠAÀPe ýæ ¹æ¶líÿù²Q¼ÉeeWƒ l†Ð”k¿¾Õ‘¸Vâ½wGîâbzä¶ßð‚ZTurïá„-œ-3®+´$`N&§‘ Øál(qÃñ/7ë‚ð{®)-[’±;U]y]"»Šè­0‘Í®«es±>uÂ>ù¶¦5ŒÁt[0·î¥Â?‡ñy¦O<ÛBi³¿þq¾"֛ĨXÖÐ)QL•^è-%n#ìÇe# Šlæ=. ÈJ©«@U:¥±õzTã³lkÇyí⨟#Ö¦)€rtGo\–Í‘D÷oœÔK8œ-¨èˆ^¿­ÛUõd˜8d¥û¬˜÷c\¤†ð÷ IMdKRÝ_ÂRN3êï¤MÃ^8óÆawêEQ/ôÆÉlàÍÂnr‘NzQпÀ]n93ÙÊÍ#¹HÿÉ[Ú1ffÊÒV²4’dÐ Ó~â%A4ó¢ÉàÂÏzçÞì¼EiÒ§Ýé‹‹AcIÜļÎÚYDï¦mUbÉÏõæU3¶}ÁŸ‰¼t“;è4ã¨iÔóADa'rmé»ÜÚÕek)o&2¦ò'wk÷àJn€—rI¤2B€)€$4¹Æÿ¶G®-ÁÒÆB0úñ ¹› ©P\ç8&)ËióÉR2åD«¶ûQ9CA„P’6inD¡ÖI‹·Àæ.930S&…å¦F6éƒö2Gr˜Q`~ßF©ª €Å¥<•¹JCõY~éžúzn77 tZ ç‡ŽêÛ‰jß§*”¦º-µ<°  E÷© ¥©^KEnˆ‚ÎX蹋U,õ·°‘ ÇbKcƒë8Q;«XnaCÏ휱CXÅÒØ¨Å*f÷”À*–Æö·°>+eŠU··Ö(ššDvØH×3N-c¸jGáŽQ1¯Q±£Bz½#d Ç ™ŠSŠó¹–±ZbŽ”1Ç·};ÜÛ{vdÌ "Ï¢gî=?2SûSB4Ÿ0å”ÄŒ&FN–$ø??K3Þ®w˜Îô [p‘vÆ{OÅgóƒô—®ü«°øeªµþX`.?)½–êë)kÉ œ>òëRõš e1÷Z¼Ö¯5Áÿº&« ` ~^M°+e “GKÙuÁ–”½Ö¯uÁ¯ Âf ± ; (x‰º uU°U^£ú éÁ…³>úµom×­²íí¿‡”ìPäÞ\ÔDn˜Z+Û± _"vsÁ•Tè;Ç,ÿ•øõ›øMó,!Æå¢¸Ù‹"hás£Xå‰D äwþÐû÷9ÏÁŸ#gìÇ(꡾7ìyAÒë;g^/rƒsû̵CÏ~iN¤+'*}¹§!u@m´||ûú×/ß¾þÝJ‡œò¸Â¥9Ó–ÛÁE%tËXðLú0ög {CäMzÞ¸öÎ&ß›ø®ç†ÑÙÈ=ÿ¢ÎÆ‘7ˆ9÷_“æ¨y÷ë‹,æ¬bsñ&f…>õ·JvGxÉ28øG¶>ª_bµ/ ÇÜÀA±,°­¹‚µê ™*ÿå5çpyµ„|°ÉàQ™Ñ[ý1µ]”ïÍ:NÿÿÿPK!‰©‡ «5!ppt/slideLayouts/slideLayout4.xmlìWQnÛ8ý/°w ´ßŠ$[Rl£NaÉqQ M‚Ú=#Q‘ZŠdIZ±»(kí§'Y’ãÄq[»I] ?"E ß̼™!5/_­j ÄEEÉØ Ž| ’Ѽ"×cçýbæ $$9Ä” ±³FÂyuòÇ‹—l$p~×t) bÇN)%yžÈJTCqD"ê[Ay ¥zå×^Îá®±×óýØ«aEœn?ßg?-Š*CSš-kDd †RÙ/ÊŠ ‹ÆöAc cv?4I®™òVÞЋ«0r¼Q+s¢\Ïæ8ÖjaqCAJ‰T0æ“` Žž‘æ5gsvÉÍŽóæ’ƒ*×ÝNÇë>tbæ•4fâmm¿¶S8Z¼Ö£b¬ÆŽ ØZ?=½†Vdíb¶YÍÊ‹²YyºCÚ³ ¼{JµW­qÝéYw•Äw^Y{;£ÙGUþh÷[÷î$ZŸõÈJK»†êäÚf²1¦#K®𝵒+5šE8ÂBÎå#óÂôØÁ•½ê¬FÄ}?WY]Ë#Hî‘')®²@R€òJ‚·PHÄ1FÕ€‚ÔìHÑD$¿„¾ÛBnYdÆhk¡g)ü6‘}Kd—Màà •çʈÞÓhŸU5@\8JÓj#ü nwdY«â0éľ¯ç.ôûƒX èD £^4ŒûÛéÔBï5¦imð]xžEm© ¢xÅ6RÛ* A¨œ£Œ’`Ô ¼¼‰æð‹²âû£â@ŸÑ%—åÞðá¡ðU±ý¹ë'ü^ýNž­~Lü«Ÿ8ü. ßô_. ÈÐJô zŒÅO½Ôsé<º‡Ú_Ž'\òfÞà 3+GÅ»öÿéÞ²žß7ÁØÅÜëäg™‹-s3Ju­Üç.zî É[ò>-!W,?¸Èÿ/ü[þæ¸Ê8_ÖW[,ÆÏÁ¢jXôN"p¢ÿ:" ÕHh þšÏ¢8M‡no2™ºa<Nò$ÞÁÚBˆá=oà…8êI<îóbxaÏó‚Ä‹O¢åˆŒö€Ô§8î@¤`Ü}ŸêMw)˜ì“08¹&‡@¤ íH;½(@¤à`GÉ™EAÊqEB<ì¤ç ·¡¨æ@¡ÎQ¡°S¡)Sü@…ô–ÿQÊ”¥µdÅ¢S£6cß”#=ê©¢Ñ×ã„ïÂ1ý~3>W¿£.s3!°*û¹ _"w %Ûäý¾bFèò÷/rþÉ_Üåo^ä'·«òáI£—È"«}4‘ú;û_$r§]LÁŸ“)õ¦¾mÓ«`l‡WAdÓxÛ~\Ç^D'Aä}Þž1OÄòL<Ú"h™1ºñõË_¿|ýòw/0äy%ÔMwþá¹i”é‘•Ì!†ñxû:¶Ç^8³Ãé ±¯fqdÏ¢ 'cz5 ®?ã9Þ ‡©äúrð6ë®^øìbQæ©X¨‹T”æ†âÔâ—µÈõ%Ås͵bÍ@SƒÈõá8'±©'Ì­kõlq…Ì1~h ùŽÕï׺^¥–Ó‰~TÃ-Ê,¦Þcïne—ÿÿÿPK!f bc” !ppt/slideLayouts/slideLayout2.xmlÌ–ÝnÓ0Çï‘x+\giÒôSthIW„4`¢ã¼ÄYŽml7´ $^ ‡'áØ‰×}©£“à¦vœã¿Ïùùäô<±®)jˆTg3/<êyˆ°Œç»šyï/þØCJc–cÊ™y¢¼ÇOŸ<SEó3¼á+@ƒ©)žy¥Öb*+IÕ„Á»‚Ëkx”WA.ñgЮiõzàÆóºýrŸý¼(ªŒÌy¶ª Ó­ˆ$kð_••PNMì£&$Q cwßvIoDË/?xÈÉCïâΖ4G ×°pQiJÐA)g”¬’3cÍK)–â\Ú}ošs‰ªÜètû½ {Ñ™ÙGÖØIpgû•›â麵ZÏ<¸³ù ÌYk”µ‹Ùv5+ßî°ÍÊÓÖ; ¸q¨‰ªuî~8‘ §Å^GåüUâŒgbâ1á·á][´1›Q”ym¤:»ö¥lé`éuÂó9äF»ˆ§Té¥ÞPb„ù±nHð—b“Ø„ùï—ØµN)Áìˆ>Ni•}Dš#’W½ÆJ‰¬3ð€¤¡£-#+IX~Ž%~wG¹¥(¬ÓÎÃÀ!ü3ȾÙe:§8#%§98†µÊ×[“G *LÈ ½Fw a“¶°ºE¸¥x÷HÆŽ\’ŒÃ7JICèò–ôä/ÊJî¯Þ ú‚¯¤.÷–*_;Õ;·c—Ûs¬É­Ä¶@­¹†è¾@ÍÇ´ðºdo«ÙÙnç ;·rR¼kKóe3¿an/c¹—Éß’8r ÎÍ·r“½íCÙZ¶ð>­°„¿ƒ«ÅÿÁoèø-i•ôfU_Þ¡8x ŠÐôN¶ ü t*Á×Óq˜Fápä÷OâÔûIÏGó¹2õzóÑd‘ zß\×£ '±Ü«!í%ØjÓ•_ß<ûõýç¶tÀ‘w…vpüœ)ÝÍÐJVC’L†Q:Nü$Œ~<ŸŒü“Åpà/ý8N“ñIÚ?ýf°0žf’ئîUîÚÁ0¾×ÖU&¹â…>ÊxÝu–àŸ‰¼²ÍeØëÚÁ›ÊMƒa4‰FÝ}‚on´Þš Yšøa¤ò5o{_µý“Kí’€î·K¦­‰‰ÝuÓÇ¿ÿÿPK!´(vX U!ppt/slideLayouts/slideLayout1.xmlÔ—ÝnÛ6€ïìíZ‘¨?ËFí²ãb@šsú´DÇB)’#i×ÞP ¯µ=NŸd$EEvívNœbØIS‡ßù#ÉW¯·5v6ˆ‹Š’¡ ®×A¤ eE†îûû™—¹Ž”S‚†î ÷õèçŸ^±Àå Üѵtƒˆº+)ÙÀ÷E±B5W”!¢¾-)¯¡Tùƒ_røQ±kì‡Aú5¬ˆkçósæÓå²*ДëÙ@8ÂP*ûŪb¢¥±shŒ#¡0fö¡IrÇ”·²’¹Žã5Ü‘ò¼˜ãÒ!°V÷Z™ãªDæ“`÷!Ý#›7œÍÙ73n7wÜ©JM°3]ß~°bæ/Ù˜ŽÿÕô‡¶ Û%¯u«ál‡®Ê×Nÿúz m¥S4ƒE7Z¬Þ-V×'¤ýV¿§T{ÕwìNغÓ‡Påv¿qïQ¢ñY·le£^HnhV´ùn:='ƒ@Aã&a¥Ña`Ò,ÉŒ€v8Œ²^¹Ý°Ù@nsZîôì…j•»+ªé¢ab!çr‡‘éo0`Z?c¿«GK´üM Š?”b­µQde›þƒéãW“0Ôïý\mÀZN0‚ä1yr4ÁUñÁ‘ÔAe%·PHij\ÕvUDM—F‡A"RÞAµ9ûäÆ"füný5!ø~Ò£6éóõ¢Ñ¾DÞÅzÑä])ÑÙ¼(ÿQ„A”}'ÿ M’^j,?'ÿßLz ùÙE)U11ÝÃ…°Xߪâi{k"Œ×„é†5Nz¡¶÷©èƒå¦yuè>ˆµOEƒl­ywhõ€ÞYOfwÛÑ-;Ùcga¦M¸Œ­–vì0ÌÌF½Œ­–ÝÛc÷âè9©/…¦ioÿêÆq#¤í9k^)ò¼Ÿ†“,÷rϼxÚïyãYšx³$ŠãIž'Ñõ'ýŠñ àȼJ~-Û÷ ˆ^4uUp*èR^´¶O#ŸÑˆ3Z™×ì{f±ªåYe Š’žÍ§²­mµz…̵ÿªÅü-dï6&_µ©¶3ÄÔóÍ.¦NDûÞ>GÿÿÿPK!<íjÓ¿*ppt/notesSlides/_rels/notesSlide3.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vÒ£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!~C0ZÓ¿*ppt/notesSlides/_rels/notesSlide4.xml.rels¬ÁjÃ0 †ïƒ½ƒÑ}vRÊ£N/£ÐC/¥{c+‰Y"KëÛ×° èa‡õKúô¡ÍökžÔ'މ,´º…äSˆ4Xx?íž^@±8 nJ„.Ȱí6GœœÔ%cfU)ÄF‘üj ûgÇ:e¤ÚéS™Ô² &;ÿá4«¦y6å–Ý‚©öÁBÙ‡¨Ó%ã_Ø©ï£Ç·äÏ3’Ü9axŠ+ЕÅ‚ÖßÉOc­+Ì}ö?=( òÁ±`YØÜä‹¡ö×Ì,ÞÞ]ÿÿPK!‘k‡·!ppt/slideLayouts/slideLayout6.xmlÔVíNÛ0ý?iï`e¿Cš4ý-jZŠ&ñQQx“84±=ÛíÚMH¼Öö8<É®˜vÐIˆ!Mûß\__Ÿs®ã›Ã£uIÑŠHUp6ðƒ†‡KyV°Ûw}5õ»R³ SÎÈÀÛå ?~8}E³S¼áK S}<ðZ‹~¨tAJ¬¸ ær.K¬áUÞ™Ä_!wIƒ¨Ñh%.˜W¯—¯YÏó¼HÉ„§Ë’0]%‘„b øÕ¢Êe¯É&$QÆ®þ’Þ`« MÉ£ÙP¹gè }:§b¸Ç•‰B6ÌÌ(q% 1[H13iœ¯f™IP/ô‚z¢³¯leàÙò[gâþ:—¥A ´xP²yÆGÖ¥•3ÝzÓÅÅžØtq¼':p;›V¸—t"G§Ò!|båð*qÊÓ;…>†~Eï)¢âlF±Ø¾Ž«&­±S‹¥× Ï6f“­÷©Òs½¡Ä¾ó°0$à¥ØœkÂüë9œëR)ÁìI=Ó"½Cš#’a¥‰D |Ò¨£­F6%aÙ K|ù,s¥¢° ÂÀIøg!›NÈ ÖÍ(NÉ‚Ó Dï¡i¦ò7ø,0Í=ØêVÿ ­½¢a +#ùeu|wÜÆÞ ·Ù§ÜIòVåb§Ü”sS±]íšï¡]®e%Þ—%–°ƒÓÏ­ýÏõk9ýæ´È:_–7ÏTŒßCEèz¯ö„ÿ !s¸Æß›hÜõš~2i&~|Üiù½é¸áÇѨÛh‡a;juï]cPF'\^\,U yO~|z|ø¹½:`Ë·•Ю¹ÀMªtm¡¥,€C’ôÚѸ›øIOýxÒëø£i»åO[Í8'ÝѸy|ošT÷SIlßûœ¹ŽÆ/zfY¤’+žëƒ”—uó ÿJ¤à…í¿a£î˜+Lá ‹:ͨÝktZu=›-ZsBæ†?ŒTžaq±²õ*íU;¶.?õaÚ†îî‡cø ÿÿPK!¿Ö?xÀd!ppt/slideLayouts/slideLayout7.xmlÔUëNÛ0þ?iï`e¿C’^Ò‹hi)šÔAµ²0‰C"Û³ÝÐnBâµ¶ÇáIvìÄГЄ4íO}rr.ß÷ôøðh[QT©JÎ&^tzˆ°”g%»šx_.þÐCJc–aÊ™x;¢¼£éûw‡b¬h¶Ä;¾Ñj05ƯÐZŒƒ@¥©°:à‚0x—sYa ò*È$¾Ú :a.™×æË×äó•b-VÒÆžÕ+‰ÊÌä¶9^оhÃì#«­Üßý4ݵÅ-ÿn„öp;ÔRéÖBY‡$ÅÙ0ñ“¨·£¼ˆûþ¢ßíõfÉðxÖ=¹5»5êSIì–þ˜¹ýõžmøªL%W<×)¯Ú«"ü†HÁK{[Da»ßkL'Þ ŠÂ~?Äí8š;-Xó¬ }8©ü„Åymǽàc˜Y—€Û¬ý–C uw;NÿÿPK!J›·!ppt/slideLayouts/slideLayout8.xmlÔXënÛ6þ?`ï h¿ÝoF"vêb@šsúŒDGZ)R£hÇîP ¯µ=NŸd‡”è[œX¶;`ûcÓßùÈsù‘æ›·‹’sÌë‚Ñé\ئiʲ‚>ÌO÷ã^lµ@4C„Q<0—¸6ß^þüÓ›ª_“ì-ÙLÀAë>˜¹Uß²ê4Ç%ª/X…)ü6e¼D¾òG+ãè ¸Kb¹¶Z%*¨Ùúó.þl:-R|ÍÒY‰©hH8&HÀü뼨jÍVua«8®FyoOI,+ˆ–=ü~¿0 ãsèpÌKˆ<Ì ¨„Ž£Œ§BäÆU’Iaêêžc,-:Ï«IuÇ•ëíüŽE&©Z Ójhaê++ÃÚqÔ&ê/¦¼”-dÄX L(ÜR~Z²/„‘6éº7Í?îÁ¦ù»=hK`m *£j&÷<W‡s_‚ g•žo]ݰôsmPñÈð›ðVˆ&fÙVy›~!©Z\ó£2Ö“Ù›‰Ð³]/V!úA5ÝΉ›øIM¬NhÛ-b3↹ê‹ÅeKéý-DŠhš3X¨ '©ÅD, Vöœ8í„2<ý Àõ—é­ÙWio8VòCùqp"Hî Z`n¨DÁ>FÉ.ÔŠÓìq$§³ÉŲ̈RÁê UܯÙÓEÖËþŽ çŒd0 ÷¼’Ùb é^m/Ž£(nÊÄ‘ïÛåöC7q‚viûqä… ¢K¹Ï¨±2ÝçX7ÞÄj˜Þ¬¿‰Õ0ý=X{«`‡°fx«`F‡°f|«`&‡° `ߪä"Ÿ“Õf9sOɤ¶T½µ§š}³;¤Z¸G 9Á)£™Að“ôjoAŸ¼;»w$û˜Í8w]éýcé‹é^ö­fþêÈ’¥Þ”2•sO/©!¦ZÀ9"S³8UÈS3×¢V^8ϼØqPÃ3Î(¿Q‚‚f óÒT^³[¸*¯ý)Ñõ¯¥jOân|[º·£‘-_âøÕoKŸwt´ås¼H…Ñð5±Õ„±K­?pG‘[B×C ;pG¶5aä«“ëÂmo %[÷¢¼vhÂ0ˆN,Êã”8N­G×Hà-=R z®eâ™9MÆ^”#5êñ·¢÷Ý}Jþ~xª’‡:scÆdU6s§n{çæn*x“¼?fˆÃ:î«ÿ—üE:Rdظ•;Y Dk’õÞD8ÿ½DN᯼LÁŸ¾3 F¡ô®Ã èùáøª—ÄÛ»JlwèÁ½=pœ¯úa –y¢Ë3ñhŠ d¦Õïßþúåû·¿×òCžVBÕègž›Z´–1ãÄ0&¡;Ї½¡ã{þuõ®ÆaОï†ñÕÈ{÷U>O8~?åX½{üšéÇöfR)g5›Š‹”•íã‹U±'Ì+V¨÷Çn_LæHÞ$£Ø·ƒÄó´°ÀÜt«f+WÈDÆ-áPõq®êU*9©®ª íbZCdìúÁéòÿÿPK!ã »¼»ppt/notesSlides/notesSlide3.xml¬UÝnÚ0¾Ÿ´w°|Ÿ’@*ÂÏTikQiÀu ‰æØžm(lê»ïØI ]ËÚ‹ÞÄŽísüýœœ\\îJ޶L›BŠ!nŸµ0b‚ʬë!¾¿›=ŒŒ%"#\ 6Ä{fðåèë— 5Ò2ƒ ^˜âÜZ5CCsVs&°·’º$^õ:Ì4y„¼%£V«–¤¸Ž×‰—«UAÙTÒMÉ„­’hƉì&/”i²©dSšHã£_@7ºä™ºÓŒ¹™Ø~Ój©Úo_o(†‘ %ƒÃz£>æ_ÅÖOÂÂ×Í” v+]º¸¡Ýƒü{÷ ÝÛYD«Ez\¥ùÍgi>{ãtØ\>»Ô±ªÀ½¦5t–¼Èº*Éš¡'”å’gL£ögÃÀ¨ï’þ4HH`X "o¥­g“œˆ5Ũ_ªÔ8„W¹QåÈîÜlxvU®ëƒÕ®ŸÁ7šV4N“‰2×¾RŸÓˆÞ§ñ>Ò™í1Ü´;?W ì.…w— ô‹dÀ]Ú=gþE¹‡G£'îd"¸_b”ÚzW‘)í„3"ÖÛQÅŠo[䌷Þ~Ÿ‰lA4¹=™´*å‘70? pò²Z®7åhû\çø3t†Š€ÔÀü÷ÿÚm™nd¯ Šî+žyR¦­du£y0ŽâY$Ý(§ó~0âô|2í&íÞø °sèÞtí ¯â£7+×cNºóOüÐ4&èß­gh£  ¦ýn4é¥AÚNæA2íŸãy·Ì;q’LÒÞxÏž\£k'ª™ïWYÓ=ÛÉ«þYTK#WöŒÊ²nÄ¡’L+Yø^ÜnÕ }K8|zçq§ÛïôzÚ ÀÖŒ­³¼î±”ëDÝl}yÀe`ïÄ/)øYÔÕq<âú ÿÿPK!„8^°žppt/notesSlides/notesSlide2.xml¬UÛnã }_iÿÁò»ëØqnV“*Îe©›FMûãØZ ,4ÙUÿ}l'½ªÑª/fæœ30¾¼Ú—ÔÙ© ΆnpÑrÂ0O ¶º÷ws¯ï:J#–"ʺ¢Ü«Ñ÷o—"f\å€?S1º¹Ö"ö}…sR"uÁa°—qY" K¹ñS‰!nIý°Õêú%*˜[ûËsüy–˜L9Þ–„é*ˆ$iÀ®òB¨&š8'šDAëýÒ¸á5MͨÄ$ÄÌØî‡k±’v{¹[I§HA1×a¨a\¿Þ¨Ù%ÛÙ‰ÿÊ}ÓLQ¼ÏdiFàæì‡.È0_ߨÈ^;¸2â“ç7ïœÅùìÓ~“À–Ô°ªÀ½¥6tÖ´H‰³(ц8+Š0É9M‰t‚#φ×ÿRãÀ°„ßr]Ï&9b2V‚`kªÔ8ºW™QäŽ>Ȭhº(7õÁj×NNàM+“i7d–ö¦>§~Nãs¤<=¸i:þ1^ë}&—q´FS¥×ú@‰]ó±h$P È¼A¼û5¼ÁRO(AìXp=Z0E¤&©©²¶µ¶®„¥+$Ñí«Õm\ƒä £—b¹-@¾çR¶¿BJ(:„š†îï-Z²Q¶ºÈ_"mFSKêï´ÍÂn8÷Æa{æEQ7ôÆÉ|àÍÃvÒ›L»QÐ?¹GlÀœºs ž*’™6ò?5±CÓ{ \+]Ïœ­,€B’ ºá¤ŸxIͽh:èyãy·ãÍ;í(š$ýñ¤={2½,ˆb,‰ms‹´iAô¦E––\ñL_`^Ö½Öü‘HÁ ÛnƒVݳwˆBa½^Ô Û~] ÀÖŒ­)yÝF1•?‘¸ÙÙëÉ ¼kð?¨oÇ鈩±y±£ÿÿPK!…|«˜»»ppt/notesSlides/notesSlide1.xml¬UÝnÚ0¾Ÿ´w°|Ÿ†„À *T$ÀT©kQiÀuͱ=ÛPØÔwŸí$@WX{ћر}Ž¿Ÿ““Ë«mEÁ†HUr6‚ÁEÂ0ÏJ¶ÁLJ¹7€@iÄ2D9##¸# ^¿~¹1ãš(`♊ÑZ‹Ø÷.H…Ô„™½œË ió*W~&ѳÉ[Q?ìtú~…J›xù‘xžç%&SŽ×aºN" EÚ`WE)T›M|$›D™4.ú¤±á†—4³£’;c›ïR,ÅBºíÛÍB‚23ŠAÀPe„~³Ñs¯lã&þ?á«vŠâm.+;n`;‚Fþ}úvl5Àõ">¬ââîÄY\ÌNœöÛ ü£K-«Ü[:aKgIËŒ€ë ­XP„IÁiF$ö<[JÜpüSÆ ÃZ~Ïu3K ÄVd¢Án©Vc^KdGQ½æfE³ëjÕ¬wÝä¾Õ´¦qžL·%së*õ˜Fø>÷‘>ñlÍMÛÃñóxE¬·‰ °wÙ@·ˆbªôRï(q/Â>i(Pd¿A¼Ç%Y)µs¨J§” ¶·^k~¦¸r¶ÖxíìwÙËH¢û³IëRy óG¯«åv]=muî~†Î¦"LjÃü÷þZ#©‰le¯¡Šî9Í©?ÓN4 ûáÜ›„Ý™EýЛ$ó¡7»É·tÚ‚Áäî±æÌ ;éÚ ¯Ž¼Ém9ëÎQhã·ÕYÝŠy|¤eëG®HÆ¡LQÒz¼•úð벒磇D_òÔåÙðÑcá«â$úN±¨O±Öä ³,!Oͬ2IýŸBL‹>§Úšþ·IeO=~÷Þv;o¨ß¹•“âMûº·læ÷Ì­§˜{‘~/sqÏÜ’s“+÷¹³j?•»BË–¼ß6X =ÿP”þ/ü%=+Zå½ÚÔïX´•ñ©,B—Ð'‰´å¿ ²€®ÍPðÇl1K‡³pæQè»ÑÒ¸³4 Ýá"‰ÇWó¡?Ž£O}3¨ O byPCZlµéÊÇ—Ïþòåó_ûÒG~Ÿ„vèÛGø\+ÝÍÐFVCšŽ“`>JÝÔ–n´ÝÙ2‰ÝeFÑ<ÍæáÕ'Ó†úÑ$“Äöº¿æ}—ìGúäºÊ$W¼Ð¯»†Ûü#‘‚W¶çö]—Ü`S¹C?ŒÚŠåYßúÑzkÞ•‰F*_bñº±zÕö#7·K~ º—iobbï2.¿ÿÿPK!6 ·Ë "ppt/slideLayouts/slideLayout10.xmlÌ–ÝnÓ0Çï‘x+\giÚ´k+:´´ B0ѽIœ%±í†„ÄkÁãð$;q»"µÛ$¸‰Çþûœß±OÎó늢šHUr6ñÂ“Ž‡KyV²«‰÷~™øC)Y†)gdâmˆò^œ=}ò\ŒÍ.ð†¯4 ¦ÆxâZ‹q¨´ V'\ßr.+¬áU^™Ä_@»¢A·Ó.™×®—‡¬çy^¦dÆÓUE˜nD$¡Xƒýª(…rjâ5!‰»ú¦Iz#À[£—kÙy²†‘Ð;×ÓÍà ,KM @èL.SLÑ’¬µ¦ÄRbz¬~)ÅB\J»úM})Q™µVÅ Úí4ûÊjÛ n-¿r]<^ç²2-PAë‰ÁÛ˜g`ÆÀ”6ƒén4-Þî™›ó=³·ApmSãUcÜ]wºÎJ¸õÊÙ«ÄO?)Ä8øcÜoÜÛÎh|6­(Úh#ÕÎk>ÚÎΘ–^Ç<Û˜M>Bkñ˜*½ÐJì‹0k†{)6'œ0ÿýNx¥§”`¶¢Ï¦´L?!ÍÉJ^c¥‰DÖ¸ ièhËÈJ–]b‰ßÝRn( k´³0pÿ²ç@Þ8Sè’├f`J÷1àTⲄKМvö_ïCܤP!ØÝ`¼Ë_@5Ý‚~`< u# óÛ[Z§ŽØrAR÷š’šÐämDŽ_¥<\½w¤zÂWRËGÇÊ—ù^õǾ ‘» 3¬É `<ôdpàÕWøU`š»£ßä¾dÛ¯iØš•‘ü]“ȯ ›þµé6ûȽŒïK®ïÈ%œ›»röCÙåZ6ð>¯°„¿ûäŽÿßÀñ[Ð2#èͪúx‹bÿ1(BÒ{AÚ„ò/@æPÝßÂùðt6:?÷;ó0ò£Î¬ë»½©ßKñiÒŸ'Q'þîŠ%e81ðåNi‚`³M›>~ÿøùì÷_»Ô[Þ/„¶qeü.”n{h%Kð!ŽGƒîtûq%~4úçÉ ï'ý^Mãáù´7ÿnʵ0§’ØZðUæªÈ0ºSGVe*¹â¹>IyÕ¤à_ˆ¼´5iØi«È›ßNo0…Ýá6±€m®µÖš²0þCKåk,ÞÖ6^•ýÉM퀢¹=L»)ÆwW„ŸýÿÿPK!“ ˜Jm$!ppt/slideLayouts/slideLayout9.xmlÔ˜ÝnÛ6ÇïìíÚÑ÷—Q§°¸¦F>#ѱPIä(Ú±;èkmÓ'EYRã4‚£ ØIK‡?òœCþEòÍÛ}ži;ÌÊ”ݺ0u 1IÒâa¢º[ŒB]+9*”‘Oô.õ·—¿þò†ŽË,¹A²åš`åMô çtle¼Á9*/Å…x·&,G\üeFÂУ`ç™a›¦oä(-tÕžõiOÖë4ÆW$Þæ¸à„á q1þr“Ò²¦Ñ>4Êp)0²uwHü@…·4ïöº&ÍØN<°ôKáy¼Ê­@¹x°Lc¾eX{LùF›# $iSÒ;†1ÔŠÝ;FWtÉdÓÛÝ’ii(…Ð õB™É¿ÅNVŒš?ÔU4Þ¯Y¥ˆˆ¶Ÿè"qø5àÞs-®ÆÍÓxóá„m¼¹>amÔ­NÁ«jpOݱkwîRžaÍ:zU·¤7$þ\jþ€û•{G‹Êg(éF…ŸJÙU/e¥ÌÉHøŽi;¡tÑõ‘ÓnLìȼÀ«|µ|ÓTm+2óýŒ$h}/Já)*â õ¾bf%_ñC†e}—Yj@ ^Æå—‰î4ô£Ô[ )üÈvL4ʬ<\Œ>­ÄÊËù<è8&‹_γ4þ¬q¢á$åÚ{TrÌ4(±Nè\ö!‘¸H–ˆ!N›\ˆJgk'¥ß?O²S'¹žöË ÅxC²D Â"åbÅ颫}cÝ?ñNAXe> ×öº™w};²<5ËÝ0püÊ¢OæŸK·–#v#—NZ$BJ *[mo…^ÊV/ÌYµ”š³½xvØæDñœ†Y®Û›–G@Ïmx–Àªé 4Û@ ( ×†v~œŠú жCÌÎEƒ0peæÎEôþI颀Q è{Á™IÊiMV;ÜãÖc[8œ!„–©.ÝÛ l­4DJÒ¹Ûôµžùz8¡eyBpþS ‘‹o@ ±:kþõbu4n ±†Ö.p éÐ.p éÐ.ðy ¼08n`^¹Ïe(·9egŸsŽyµ]!ÞÝȸCèQŸ¨‘UEìY9’½ö&=v—§”üÝì\%÷ëÈ-¬´c'7T¯Ýš³*xl=Ôñ{aKø‰_PÇo•¥ Ön·ùýQô‡ˆ¢8Ÿ ôÉ@¾ð]ü÷¹gÁŸö|êz~茂©mŽÜkÇMg‘72ÝȧpÿÚ÷¼¯õ1¼„8—'âQ%AÊŒÒïßþúíû·¿y]ž—BYÔ‡x!<7%W5mËRáÃlùö<œf–»¹WQ0š.|o´ð×ÏÂéܹþ —–;Ž–· ¿'õý„å>¹¡ÈÓ˜‘’¬ùELruÕaPòˆ%©¼í°Lu?±CBS?p,; ªSŒZ]ÊÁÂYû¢ÌØ{D?ìdºr©¦sùˆ¦ÅƒšK ¸^ßî\þÿÿPK!ÕÑ’ñ¼7,ppt/slideLayouts/_rels/slideLayout7.xml.relsŒÏ½ Â0ð]ðÂí&­ƒˆ4uÁÁEôŽäÚÛ$ä¢èۛтƒã}ýþ\³M£xRb¼†ZV È›`ï5Ü®ÇÕgôÇàIÛöírÑ\hÄ\Žxp‘EQ€–h[0E©íÝM ¿Õ~N¾¤Ã›|ÙmkoÝ¢Aü"FÃ!yxf4š—¯î b­1«ó’öl÷…c[˜¦e–ÓyÏþx;n%¶UsD3DJŠ{ö®íW?þð²êÒ’ãú-ª9fx¡uõìçU·Ý®Ó.Pý¢¬0…w³’ˆÃ#›·3†îÀ{AÚžãDíåÔÖãÙ!ãËÙ,Oñ¨LW¦\9a˜ ;¨yUoÕ!Þ*†kp#Gï,év˜NH&îÓ¹º~À3+Ïî'ÇqÁu¥g<$ÌZ#Ò³§s×n_¼lkc-‰ÁuuË0]¿fÕ¤ºar†wë>Á¥mQTÂÂ|¡Íä#]K¡½7|nDÔ½Ÿ±BÜ Vçø ®m¡Ã÷ÜJ•2ÝhÓÅû'lÓÅåÖm3A{kR±+µ¸ÇÛñÌvÞ`”AnJñ¢$B–Ic³øºº.ÓemÑ6'°P{m,â^-,þPßEÆ€™Ÿzö/+Ä€‚zˆ²“Âf‘‡#äub7qô΃0‰“dgû¨[±š¿Æea ¡g3œrÉ´¾®¹25&rjöªËïeö ,§p” è`ü¢dŸl‹\ѺgwÜ €©¹|ÂØƒ¶ýfºó†“aIššOøÁR^¦µ™CP¹¾ Ï>€J æËõ®´¥’·À´õq¢GVrwfWr£Íß0b„8Þáƒw >dÜÖ±y4ü$ "×ÿ^øÀžË‡ÉäIþ:pFAy-'r/[ÁhÐiõÁ¸5 ‰ç%^Üw“϶98nžxœÏW ¿_)xØ©¬ºàC‚m6À/\§íÆ’]_,‡ËEÍDF>55CÍ É3l]h¾ËPÿï Ò‡’ki¸€Eá~]£oM²«b®),â( »~ìF‚§@S× |Gè†Èh"ûN¹Í™?‹É>ÿãœÅ5jÝ ÅàS‚SŽâ­q»ù@¨K=ï–•`ý¯ÂÃB4?=;åò«±aº|øR_høõN”L;Ì N‘ûD»CÅ#IÛ£x%¡d‰Èvã„á ‰‚†FÀ¸@Y|C qsÈ"%BÂk,$ ‡$¦!ÉÓ¥ÅK g9·t ÌFµ˜¡Þ¤+•IÕl;SÊc=bÊ NKšY¯19À½Ì G¸¿]äìpï’WGx—+Æ»—1qŒû|ö¤÷S‡qdÂx\–âÄ·ã8Í/ó Š(Ü(ñù½?$PÑE€{’°Ë%f/ªö¿×6p.t˜î´MFš˜“ÃáøòùxûîK–*Ÿâ²JŠ|¥êo4U‰óu±IòÝJýý}´pT¥ªq¾Ái‘Ç+õk\©ïîüá-¾«÷q+äü¼ºÃ+u_ׇ»å²Z1®Þ‡8'¿m‹2Ã59,wËM‰?»Yº44 .3œäª’㌘ â-~Jk%ˆ«d—«÷Ü|˜’y]QÁ:-¨ñøì9ŠÎÎÚ|ÔéWUîQZ*ŸpºR5öQ—÷o—BZŸêEìÓêµ ›Æ5{L!­Oõþuö˜^¯I}N¯íû¡š­î@©)žÚ6ÉÇuý}S^·RS´äu(5Ep¢xaŠö™RS„'úF`Ž'è3¥}šäÏxãº]m;•m‘þtVÝuêœïµ–ƒ1ÔœŸ×’ÅÆS†?eDY'ã:É•úëè­‰¾W&8¥—Áw1ÈѺ:-ÌeI>«íÞ«6¯«j&Öô×í6YǬ†Û$Mê¯iüsÅ©Š4ÙDDÈØI]Ãö¤Ø^NÐÛ•˜••²¨ÿHêýÃÈe&wUkzW)‡¢"ÝÉÄgm³¦xÊ~)6T×ù8$'ທk ““†«)´ûAÛ™gG;6…pè¹Sœ\LtÂ<ã„Í…Wœ`5›Å ÷Œ5Ñ öÕö CÁtºVã‘R­qoh?5çóÞ½§/5¦XmãLõ\êë<=-81n¢ƒa¸Ç›øX°‡Ñ•µ 7Ó¢M(®…æÇF\«\YÛÐx3›(t›j,64ƒ½a3(ÁxÀ™3I$_l¨µn!{2ŸZÐ `„D̤ØxÒˆ›À£ã±ñ<ßñE¤Ø@Z¾5>Ú zfL´‰¢‰Ø006 † ˆaÃúobc_Ä ½oŰî5H° ¢Àpù2ù 6¢w6~h»PÔ—bƒ4|^›Ð ꢇ`Ä- i´L@×± LÏйú )6Ž$Ú˜f·ë4Ó–@׉lè¢}`OŠ õð(é’b£iþqu%Úxó‚Øxï„b´”bCZ°ŸÊ®bCÛfB´!ù¨­ñEê )6îElè ól'-4C°Åp%I;¹#ÅÆ‚ŽgùÓ°yÉhCŒGXJ±1#;°Ä ë±ÑBpKÒFÞîlî ŸãFX›ÏÀ t ‚Yšèˆík;К«97Žæ†_°à†¬À=_ÌŠfåAòÇçˆ1[i¦¹¢ÿÒ, ¡.a¸ÎMè¨Ûp¸q#çæòs&™ø»›ksp…ø%Ý›¦A ¸¶?ä›ä3e š,Ù—LÓ|2•ø¶ hü´p_kLš6X ݸ‘ssùA#04ÌÇ 0ÌÐè—K’]¤9<.]áÆA¶oOØp"S¸1½È—OóÆB/r/åÆÑ0F?_ƒoMxPÀA$ÿó´Qÿ°Z_RžÊd¥þ©ÏB@ ÍáÂ2-máÏ\x˜zt-ðo„©zŸé yN.ÂY’~mߟbò“w¨²d]U±­ß¬‹lY°w6–ìdö•nïP5ït(ïé朗lˆ[Ј\ÓõáÂ%#va‘UóÂEÐ_ÙA à¸Ñ7UùÄ”-ÏD ÔZXP£î;î¶ ólÏ -ï[ßVü›? Èüºÿ ÿÿPK!´ÏX¹$,ppt/notesMasters/_rels/notesMaster1.xml.relsŒÏÁ Â0 à»à;”Üm·Ddí."ì*óJ—uÅ­-m÷övqàÁK ÿR7ïy"/ Ñ8Ë¡¤´ÊõÆj÷îz8‰IÚ^NÎ"‡#4b¿«o8É”Cq4>’¬ØÈaLÉŸ‹jÄYFê<Ú¼\˜eÊmÐÌKõYUG¾ “´=‡Ðö%nñøí†Á(¼8õœÑ¦'XÊYÌ  J×ÉZ+š=`¢f›ßÄÿÿPK !üܘ¤| | docProps/thumbnail.jpegÿØÿàJFIF``ÿÛC     ÿÛC   ÿÀÀ"ÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ýS¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢ŠñÿÚ7\øàßk>*ð.¯ák=?BÑîõ+Ë=H¸»–ᡤ Ås@Bã•nN}©l4®ì`¢¾kðOÇßx;Â>×þ*kF·?‹ôè/4/øÂ÷òjNÆ%šo݉§i×,ÈÉù€®æïö¥ð> ÑüEiw©ë «ÞM§ÙiZ^‘us©Éuc<ÍcóQãÛèێzŒÓЕ®§­Ñ_;x›öÍðŦ£ð¸èVÚ–¯¦ø»[»ÒnÝt[Ö¸°kx'2Fð¬[’eš8Õ£pO1ñµKkñÇ‹?á ð½æ°4S^’ «›£["ª.@°Ë1 £,ÄM!ùÔW˜þÍÿµoŒß løOIâ—ð_‡›ÄÒ:JúÓipÆtÆÆ3lÞJà`çŒ Uu_×QwþºmQHŠ( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( •þ6Ø·Ãωš†½/‹|^ñ‡Ä¯‹!–ÿG—Ã3xZk‹»[(.¡e¾ŽþKyŽxÒHÙZ=­ƒ(C¯8Ükèß¼wá߈'žòM'TðOü'°ømmå–S©@n"µHÚ#Ÿ-cI%ÆA%YßpÀÙ4„>ðµö‹y¤x~ÓM¹Ñí¦³²’Ø1Å+ï•NϹòä¶Ib[©$ׇà-ütÞ2O X´íru&BÒyÅ<³. ÆýŸ(ld)  Ë[¯ë­ÿ!t×C¸¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(¢Š(ÿÙPK!àØð—ppt/theme/theme2.xmlìYO‹7¿úÄÜíÿYâ öØNÚì&!»IÉQž‘g”ÕŒŒ$ï® ’ …Ò´ôRè­‡Ò6@/é§Ù6¥M!_¡Ç–l™%Í éÍï=ýôÞÓ“ÆsùÊiJÀ1bÓ¬ëÔ.¹@YH#œÅ]çÎá¨Òv0‹ ¡ê:sÄ+»~pHýŒïÀ®“1Ý©Vy(Å_¢S”É{ÊR(d—ÅÕˆÁi7%Õºë6«)Ä™2˜J³7'"p˜›tvKãC"2ÁsAHØAn Õò Ÿó€0p IבãDôä È…¼Ñu\õqª»—«K%"¶èjz#õYè-¢£ºÒcñx©èy¾×ì-í+›¸akØ6—ö†¡œiÁEÇúýNà/°¨hZlZƒFÍÀköøžŸ ¼Mo?+j ¢é[|ÒªžW ¢ÙÜÀ·ÜÞÀkxJÎŽ6Юßlål— %׬ðŽïZõ|…ªjÙUègb[®¥ð>e# PÁ…g@̧hC‰ Ác†ÁŽ™xS˜Q.Ånݹ ù›=ÕR;jÚ…(䢜à!ÃSÑu>–V òúů_<¯_<={ôüìÑ/gŸ=úÙ¢x f±®øêû/þþöSð׳ï^=ùÊŽç:þ÷Ÿ>ûí×/í@¡_~ýôçO_~óùŸ?<±À{ Žuø!N7Ð ¸MS97ËhÌÞLã0X×èe1‡Ìu,è¡H ô9$Ђë#Óƒw™¬6àÕÙ}ƒðAÂf[€×“ÔîSJú”Yçt=K÷Â,‹íƒ³™Ž» á±mì`-¾ÃÙT¦<¶™ dмEdÈaŒ2$@~!dQ»‡±á×}2ÊéD€{ô!¶ºälZ)]éŒËÜFPÆÛðÍþ]ЧÄf~€ŽM¤\ØL"b¸ñ*œ ˜ZÔèÈ=(Ƀ9 ‡s!##BÁ0BœÛtn²¹A÷º¬0ö°ï“yj"™ÀG6ä¤TGèQÀtj匳DÇ~ÄdŠBp‹ + j®¼/㳭ᾋ‘îó×öY\í ’ß™1Û’@Ô\s2H¯®•ôgçÖ÷µÊìöÊÞcغ´Öëù6Üz(‹ð»_Äp–ÝBrݼ¯áïkøÿ±†o[Ï_¹WÅZèËc»2“n=ÃO0!bNÐWežËéE#)T¥´|d˜&²¹ÎÀÅ ª6`T|‚ErÀ©¦¦FˆùÂtÌÁ”r¹Q(±Õ¶Úhfé> i­V>¥J(Vr¹Ñ”r¹-‰BÚl­Ç–æU/VÍ%\÷MHhƒ™$­Rx 5³ aѱ°hçæ·²P—ETäú0ÿƒÃ÷ F2ß AQ§B¿Œî…Gz›3Íi×-Óëä\/&Ò -ÝLZ&0Bëâ ŽugRƒ^îŠM­ö뼈¬Õ’™=p"×\×fB8í:yD”Ít*íñ¼nBg]' Gÿ›Ê2e\ O ˜ºUÌ?Å1@p*s]ÉVÜjõV>Çw”\Ç}÷<§.zÑd‚B±E²êÊ{…ëÝ·ç:“¤’èŒÉŒÝ†ÒQ~«–;0Â\,½a¦%÷Ê‹kåj±ÏVK’i;Š^Ì ¸j/éhóPL×geö“ÇyÞz×=_i­hnÙ@ò]Ó^?þ»M^cµªû«¢t¯×ºNYë¶ío¿!hÔVƒÔrÆjÛöŽ <hÃ-SsÛqÑ»ÁzÖæDy®T½×t|_fþ@WgDð⯀SùŒ”0•@IËêr*ÀŒá®óÀõ{^P÷ƒŠÛö‡¯á¹•¶ßkTz¾ß¨ ýš;è×J§ˆ$­ùÅØ#ù,;±‰SìÈÁ.Æè~€åDÔú@RÚŽ±ÿ>ÏI˺Q(£WGâð¾zÞ£³½y4Sv¯BÔÎ6€¬0È”•nÐöØ€o·¸YLÂbrV5໊àf÷ñÃÖ×>¨¨li–~ Ùldc-pJÉ×EyRFÄ•óÊνÑ#Ò| G4ñ0?`&D1.‘Ú‚«>¼EïÆQKÅ<›àbÔ´Ä“öñÉÍ¿ÅíÏ/vsHõ˜>Çt=eç ð£_—û¾b-,q¾‡Œ0 »ªï`ÉI¾Æ˜à–®þVV:J†OFU?èÄEOp„ýƒg´ .º1­¤3לȻ¼ÓKT‚¯óºS0@»-Zà^2òœ´¸¤-\W›²œV°í8‡]×nв¤¸ ø™Qâ<¥…‘{ýŽx”¾ xàEh[q¿ï!+òV›œ@Vv4ïú¹äìXÔò$Bº BÞÍ[óUˆjxÆ,þ“¾:ÅK]>ý½ä»_ÿÿPK!¢Çf¦z?ppt/viewProps.xmlŒSMoà ½OÚ@ÜWÒnK³¨I/ÓN=Lj·;’"@@Û´¿~éçÒCo¶ŸýìgÌlÞ6 m…óÒèG FB3Ã¥® ü³úzÉ0òjN•Ñ¢À{áñ¼|~šÙ|+ÅîÛ! Ð>§^‡`sB<[‹†ú‘±BV×Ю« wtÄ"“$IIC¥ÆÇz÷H½©*Éħa›FèГ8¡h€áýZZb³°Y'<ÐÄꛑJ§»Dõ%v>äã_ˆ* €U½§““klel„>ÞÒ4BdÈã•äââ²¥âW^o¢-uKF¬{‡ñSÎhî[¯”½bÄKbˆî‡Qr®²¹q²–µNDûO³cαc—Uo`²…gAìViÜ#k|'ã^Ù)¥fÙ©ç…¤#¿×Ís+]› üJ´a ÿŽäNÕÍÿÂ÷E÷’O çñq#ÔNò¥¥ Î1(žÂYÀ`ÝÒ¢Ù³ô·_þÿÿPK!ñ'ˆ._docProps/app.xml ¢( œTßoÚ0~Ÿ´ÿÁÊÓöágW!ãª!&DèžMr!Ö;ò¹´ì¯¯7)´Ù$ÆÓwwß¾sŽÞ=ç’Á Ðjô»½€€Šu"Ôaì¢Eç6 h¹J¸Ô ¦Á 0¸cŸ?ÑÑ+‰“P8 2k‹IbœAαëÊÊURmrn]h¡NSÃ\Ç9(z½›ž-¨’NÑ^qr´ÿ+šè¸œ¢Sáô´å29° ßúK›Ùè =¢÷E!EÌ­³ƒ­Dl4êÔ’uÕƒlô˜ÊÒðœèÌtÍ«hQÍÆÖªƒ±Pd›é'òe4~¥a ‘n¸áË Ù`è(o!ÝJ‘²1 _ý©­Ox@—"I@½V{4¼ˆéj5“¢¨ 5¤Û˜K˜9wXÊ%‚“nt ¼Üü† ã˜G;9Blµ!(þ¸ÝßdÏJO§Á‘Á• <Í–ZÃZY$;„„†M²‚çÜs,Fån<ø'ÑkEîAÀÚý+´+ûH$¬¼¢Å¸½ET>:|é°o±NÝÎm‹á·ç†W3x»ý8÷N_ž× —boDkm)”–ÌÅAµR"@K¼_ïKߺoôr©—ÿó;l-þ^~°¹6ìE3\Ø>w›©úC¨ß¸+"=çêw}™¤ÛŒHÜhÞ}“ Kç°‘%–qu€¤æ|,”âÁßKÖw{îWƒ:W~ãõ!c/ÿÿPK!¤c :k§docProps/core.xml ¢( |’ÑjÂ0†ï{‡’ûÓ⦡F˜Ã‹1AX‡cw!9jX›„$³úök;[•É.“ÿ;_Ï9i6;”E´ç•ÑSDCF*½¢÷|Qä×’FÃÁ£»¿Ë„¥Â8X9cÁ>ªMÚSa§h‚¥{±ƒ’ûAMè:ÜWòPÝ[.¾øp2>à—Ù e!Z™ÂÄkcd†ÿ2M™ƒ½j^”Z¢?f§õü~dTE—Ð%ëtþœ/«'Çd'“†4ÔNáppt/slides/slide1.xmlPK-!XM³Ô=4èppt/slides/slide2.xmlPK-!ƒi,PÒNX!ppt/slides/slide3.xmlPK-!ð‰DžÓ¿*]%ppt/notesSlides/_rels/notesSlide5.xml.relsPK-!i¢_!Ç,x&ppt/slideMasters/_rels/slideMaster1.xml.relsPK-!ÕÑ’ñ¼7,×'ppt/slideLayouts/_rels/slideLayout9.xml.relsPK-!ÕÑ’ñ¼7-Ý(ppt/slideLayouts/_rels/slideLayout10.xml.relsPK-!ÕÑ’ñ¼7-ä)ppt/slideLayouts/_rels/slideLayout11.xml.relsPK-!é§×‡"J!ë*ppt/slideMasters/slideMaster1.xmlPK-!J¯u9Ò¿*±3ppt/notesSlides/_rels/notesSlide1.xml.relsPK-!ÕÑ’ñ¼7,Ë4ppt/slideLayouts/_rels/slideLayout1.xml.relsPK-!ÕÑ’ñ¼7,Ñ5ppt/slideLayouts/_rels/slideLayout6.xml.relsPK-!ÕÑ’ñ¼7,×6ppt/slideLayouts/_rels/slideLayout5.xml.relsPK-!ÕÑ’ñ¼7,Ý7ppt/slideLayouts/_rels/slideLayout4.xml.relsPK-!ÕÑ’ñ¼7,ã8ppt/slideLayouts/_rels/slideLayout3.xml.relsPK-!ÕÑ’ñ¼7,é9ppt/slideLayouts/_rels/slideLayout2.xml.relsPK-!ÕÑ’ñ¼7,ï:ppt/slideLayouts/_rels/slideLayout8.xml.relsPK-!n*P¹ºõ;ppt/notesSlides/notesSlide5.xmlPK-!¤%‚¾éë>ppt/notesSlides/notesSlide4.xmlPK-!MPþ`Ì0!æAppt/slideLayouts/slideLayout5.xmlPK-!‰©‡ «5!ñFppt/slideLayouts/slideLayout4.xmlPK-!A,€ˆ Ü !ÛJppt/slideLayouts/slideLayout3.xmlPK-!f bc” !$Oppt/slideLayouts/slideLayout2.xmlPK-!´(vX U!ÆRppt/slideLayouts/slideLayout1.xmlPK-!<íjÓ¿*Wppt/notesSlides/_rels/notesSlide3.xml.relsPK-!~C0ZÓ¿*)Xppt/notesSlides/_rels/notesSlide4.xml.relsPK-!‘k‡·!DYppt/slideLayouts/slideLayout6.xmlPK-!¿Ö?xÀd!‹\ppt/slideLayouts/slideLayout7.xmlPK-!J›·!Š_ppt/slideLayouts/slideLayout8.xmlPK-!ã »¼»ddppt/notesSlides/notesSlide3.xmlPK-!„8^°ž]gppt/notesSlides/notesSlide2.xmlPK-!…|«˜»»Jjppt/notesSlides/notesSlide1.xmlPK-!™ö™®Ó¿*Bmppt/notesSlides/_rels/notesSlide2.xml.relsPK-!7YQdº« "]nppt/slideLayouts/slideLayout11.xmlPK-!6 ·Ë "Wrppt/slideLayouts/slideLayout10.xmlPK-!“ ˜Jm$!vppt/slideLayouts/slideLayout9.xmlPK-!ÕÑ’ñ¼7,Âzppt/slideLayouts/_rels/slideLayout7.xml.relsPK-! J¤ ÁÏ!È{ppt/notesMasters/notesMaster1.xmlPK-!~·ÚEEQ6Èppt/theme/theme1.xmlPK-!´ÏX¹$,?‰ppt/notesMasters/_rels/notesMaster1.xml.relsPK- !üܘ¤| | BŠdocProps/thumbnail.jpegPK-!àØð—ó”ppt/theme/theme2.xmlPK-!Øý¬¶>›ppt/tableStyles.xmlPK-!ö(º‰0œppt/presProps.xmlPK-!¢Çf¦z?Óppt/viewProps.xmlPK-!ñ'ˆ._|ŸdocProps/app.xmlPK-!¤c :k§à¢docProps/core.xmlPK::µ‚¥OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h0000644000175000017500000000623612657640340024725 0ustar raoulraoul/****************************************************************************** * OpenLP - Open Source Lyrics Projection * * --------------------------------------------------------------------------- * * Copyright (c) 2008-2016 OpenLP Developers * * --------------------------------------------------------------------------- * * 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; version 2 of the License. * * * * 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, write to the Free Software Foundation, Inc., 59 * * Temple Place, Suite 330, Boston, MA 02111-1307 USA * ******************************************************************************/ #define DllExport extern "C" __declspec( dllexport ) #define DEBUG(...) if (debug) wprintf(__VA_ARGS__) enum PPTVIEWSTATE {PPT_CLOSED, PPT_STARTED, PPT_OPENED, PPT_LOADED, PPT_CLOSING}; DllExport int OpenPPT(wchar_t *filename, HWND hParentWnd, RECT rect, wchar_t *previewPath); DllExport BOOL CheckInstalled(); DllExport void ClosePPT(int id); DllExport int GetCurrentSlide(int id); DllExport int GetSlideCount(int id); DllExport void NextStep(int id); DllExport void PrevStep(int id); DllExport void GotoSlide(int id, int slide_no); DllExport void RestartShow(int id); DllExport void Blank(int id); DllExport void Unblank(int id); DllExport void Stop(int id); DllExport void Resume(int id); DllExport void SetDebug(BOOL onOff); LRESULT CALLBACK CbtProc(int nCode, WPARAM wParam, LPARAM lParam); LRESULT CALLBACK CwpProc(int nCode, WPARAM wParam, LPARAM lParam); LRESULT CALLBACK GetMsgProc(int nCode, WPARAM wParam, LPARAM lParam); BOOL GetPPTViewerPath(wchar_t *pptViewerPath, int stringSize); BOOL GetPPTViewerPathFromReg(wchar_t *pptViewerPath, int stringSize); HBITMAP CaptureWindow(HWND hWnd); VOID SaveBitmap(wchar_t* filename, HBITMAP hBmp) ; VOID CaptureAndSaveWindow(HWND hWnd, wchar_t* filename); BOOL GetPPTInfo(int id); BOOL SavePPTInfo(int id); void Unhook(int id); #define MAX_PPTS 16 #define MAX_SLIDES 256 struct PPTVIEW { HHOOK hook; HHOOK msgHook; HWND hWnd; HWND hWnd2; HWND hParentWnd; HANDLE hProcess; HANDLE hThread; DWORD dwProcessId; DWORD dwThreadId; RECT rect; int slideCount; int currentSlide; int firstSlideSteps; int lastSlideSteps; int steps; int guess; wchar_t filename[MAX_PATH]; wchar_t previewPath[MAX_PATH]; int slideNos[MAX_SLIDES]; PPTVIEWSTATE state; }; OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/test.ppt0000644000175000017500000005200012657640340024061 0ustar raoulraoulÐÏࡱá>þÿ þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýÿÿÿ þÿÿÿþÿÿÿþÿÿÿ !"#$%&'(þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿRoot Entryÿÿÿÿÿÿÿÿd›Oφꪹ)è°~¥Oa<É€PowerPoint Document(ÿÿÿÿµASummaryInformation(ÿÿÿÿÿÿÿÿèDocumentSummaryInformation8ÿÿÿÿÿÿÿÿÿÿÿÿðèÿé(€àà€ ò/È 0ÒÕL·DArialÔ–†0Ô–0Òl©l©Ô&·ô–â…0ô–Õ¤€@ÿÿ¥ .©  @£nÿý?" dÿd@ÿÿïÿÿÿÿÿÿ  @@``€€ ˆð€ð(  ƒ ð0ƒ†A¿ÀÅAÿ@ñ÷ðó€Ðº“°öÊš;­”ÇÊš;úgþý4=d=dÌÀ· —â…0²ÿÿÿHýÿÿpûppû@ <ý4dddd8—A10l©°&·ˆ8Š0º___PPT10‹ pµpµðÐóŸ¨Test 1Ÿ¨ Test a Test bóŸ¨Test 2ªŸ¨ Test a Test bêø¤ ï 0`ð ÿÿÿ€€€»àã33™™™™Ì`ð ÿÿÿ–––ûßSÿ™fÌ3™f`ð ÿÿÿ€€€™ÌÿÌÌÿ33̯gÿ`ð Þöñ–––ÿÿÿÆÿf̨`ð ÿÿÙwwwÿÿ÷3ÌÌÿPPÿ™`ð €€ÿÿÿZXÿÿ™dbmoÇÿÿÿ`ð €ÿÿÿ\ßÒ“Ì3¾y`ÿÿ™Ó¢`ð ™ÿÿÿ3fÌÿÿ3f̰fÌÿÿç`ð ÿÿÿ3f™ãëñ3™FŠKfÌÿðå`ð hk]ÿÿÿwwwÑÑË‚€ž¨ÿÌféܹ`ð ff™ÿÿÿ>>\ÿÿÿ`Y{ffÿ™Ìÿÿÿ™`ð R>&ÿÿÿ- ßÀŒ{p_/Ì´Œž £>ÿý?" dÿd@ÿÿïÿÿÿÿÿÿ,£|ÿý?" dÿdØ@ÿÿïÿÿÿÿÿÿ € Ô €" Ð@€ ð`€»€ £nÿý?" dÿd@ÿÿïÿÿÿÿÿÿ   @@``€€P£R    @ ` €`£ p£>€£> ÖðÎððfð( ð ððÒ ð “ ð6€pb·‡ƒ¿Àÿ ð­ `}ðà · ðTŸ¨ Click to edit Master title style¢!ª !ð ð ƒ ð0€Œ·ƒ¿Àÿ ðð `ðà · 𞟨RClick to edit Master text styles Second level Third level Fourth level Fifth level¢!    ª Sð¶ ð ƒ ð0€„–·ƒ¿Àÿ ð^ `Šðà · ð>Ÿ *¡øð¸ ð ƒ ð0€Ì“·ƒ¿Àÿ ð^°ÐŠðà  · ð@Ÿ *¡úð¸ ð ƒ ð0€¦·ƒ¿Àÿ ð^ `Šðà · ð@Ÿ *¡ØðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ8Š0º___PPT10‹ë.:É(ð ºDefault Designî<ï€0 Àð¸ ððPð( ð ððr ð S ð€”®·¿ÿð>°ÐÜðà · ð žðž ð S ð€ð±·¿ÿð ` à ð<$ñ0à · ð žðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ$Šº___PPT10‹üë.:É€B ð+Å[W_Dñ˜'ñ -Pwÿÿÿÿ=ñ @Bñ DñS'ñ •ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +DñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+8+0+0 +îHï€0 ÌðÄ0ð ð\ð( ð ð ðx ð c ð$€p}1 ¿ÿˆð>°ÐÜðà 1  ð žð¤ ð c ð$€Ì@1 ¿ÿˆð ` à ð<$ñ0à 1  ð žðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ$Šº___PPT10‹üë.:É€B ð+Å[W_Dñ˜'ñ 1 ÿÿÿÿ=ñ @Bñ DñS'ñ •ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +DñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû* %ñ(ñDñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû* %ñ(ñ+8+0+ 0 +r@³ ÷õÇGÅ1èÙé(€àà€ ò/È 0ÒÕL·DArialȃ†0ȃ0Ò`–`–°)·èƒâ…0èƒÕ¤€@ÿÿ¥ .©  @£nÿý?" dÿd@ÿÿïÿÿÿÿÿÿ  @@``€€ ˜ðð8 þÿÿÿþÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿà…ŸòùOh«‘+'³Ù0¸ `hx ¨´ Ø ä ðüäTest 1Jonathan CorwinJonathan Corwin3Microsoft Office PowerPoint@ Ê!@0­#:É@PКOa<ÉG¬ÿÿÿÿ‰g  M  y¡üÿÿÿ-úÿÿÿ-$ÿÿÿÿÿÿx x ÿÿÿÿÿÿú--'ÿÿûöÿ@Arial-. 2 6BTest 1.û¼"Systemˆ7ä-ðûùÿ@Arial-. 2 KFTest a.-ðûùÿ@Arial-. 2 VFTest b.-ðþÿÕÍÕœ.“—+,ù®0Àˆ¨´¼ÄÌ Ô Üä ìôü  ]äOn-screen ShowbmsµA ' ArialDefault DesignTest 1Test 2Test 3Test 4  Fonts UsedDesign Template Slide TitlesCurrent UserÿÿÿÿÿÿÿÿÿÿÿÿMÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿö'_À‘ã‘AôJonathan CorwinJonathan Corwinƒ ð0ƒ†A¿ÀÅAÿ@ñ÷ðó€Ð3º“°öÊš;­”ÇÊš;úgþý4OdOdd6·„â…0¬ÿÿÿÈþÿÿpûppû@ <ý4dddd,„A10`–Œ)·ÿ ˆ8Š0º___PPT10‹ pµpµð~óŸ¨Test 1Ÿ¨ Test a Test bóŸ¨Test 2Ÿ¨ Test a Test bóŸ¨Test 3ªŸ¨ Test a Test bóŸ¨Test 2Ÿ¨ Test a Test bêîHï€0 ÌðÄ@ðð\ð( ð ððx ð c ð$€W÷¿ÿˆð>°ÐÜðà ÷ ð žð¤ ð c ð$€X÷¿ÿˆð ` à ð<$ñ0à ÷ ð žðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ$Šº___PPT10‹üë.:É€B ð+Å[W_Dñ˜'ñ ö·ÿÿÿÿ=ñ @Bñ DñS'ñ ‚ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +DñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+8+0+0 +îHï€0 ÌðÄPðð\ð( ð ððx ð c ð$€Pl÷¿ÿˆð>°ÐÜðà ÷ ð žð¤ ð c ð$€(÷¿ÿˆð ` à ð<$ñ0à ÷ ð žðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ$Šº___PPT10‹üë.:É€B ð+Å[W_Dñ˜'ñ G÷ÿÿÿÿ=ñ @Bñ DñS'ñ ‚ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +DñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+8+0+0 +r‡ h#¸+õÇc4Å1èÙé(€àà€ ò/È 0ÒÕL·DArialȃ†0ȃ0Ò`–`–°)·èƒâ…0èƒÕ¤€@ÿÿ¥ .©  @£nÿý?" dÿd@ÿÿïÿÿÿÿÿÿ  @@``€€ ˜ðð8ƒ ð0ƒ†A¿ÀÅAÿ@ñ÷ðó€Ð3º“°öÊš;­”ÇÊš;úgþý4OdOdd6·„â…0¬ÿÿÿÈþÿÿpûppû@ <ý4dddd,„A10`–Œ)·ÿ ˆ8Š0º___PPT10‹ pµpµð~óŸ¨Test 1Ÿ¨ Test a Test bóŸ¨Test 2Ÿ¨ Test a Test bóŸ¨Test 3Ÿ¨ Test a Test bóŸ¨Test 4ªŸ¨ Test a Test bêîHï€0 ÌðÄPðð\ð( ð ððx ð c ð$€Pl÷¿ÿˆð>°ÐÜðà ÷ ð žð¤ ð c ð$€(÷¿ÿˆð ` à ð<$ñ0à ÷ ð žðH ð ƒ ð0ƒ“ŽŸ‹”Þ½h¿ÿ ?ð ÿÿÿ€€€»àã33™™™™Ìˆ$Šº___PPT10‹üë.:É€B ð+Å[W_Dñ˜'ñ ÷ÿÿÿÿ=ñ @Bñ DñS'ñ ‚ÿÿÿÿ=ñ @BñAñ?%ñ,(ñ <ñ +O%ñ,(ñ <ñ +DñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñDñA'ñ =ñ%ñ(ñÿÿÿÿDñé'ñ =ñ%ñ(ñDñ‘'ñ =ñA@BñBñ Bñ°Bñ0Bñ%ñ(ñDñø'ñ =ñ1ñ :ñBñvisible*ño3ñ>ñ+Bñ#style.visibility<ñû*%ñ(ñ+8+0+0 +rH4)9õÇ$4yAÅ1OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.vcproj0000644000175000017500000001010112657640340025763 0ustar raoulraoul OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp0000644000175000017500000007173212657640340025263 0ustar raoulraoul/****************************************************************************** * OpenLP - Open Source Lyrics Projection * * --------------------------------------------------------------------------- * * Copyright (c) 2008-2016 OpenLP Developers * * --------------------------------------------------------------------------- * * 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; version 2 of the License. * * * * 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, write to the Free Software Foundation, Inc., 59 * * Temple Place, Suite 330, Boston, MA 02111-1307 USA * ******************************************************************************/ #define WIN32_LEAN_AND_MEAN #include #include #include #include #include #include #include #include #include #include "pptviewlib.h" // Because of the callbacks used by SetWindowsHookEx, the memory used needs to // be sharable across processes (the callbacks are done from a different // process) Therefore use data_seg with RWS memory. // // See http://msdn.microsoft.com/en-us/library/aa366551(VS.85).aspx for // alternative method of holding memory, removing fixed limits which would allow // dynamic number of items, rather than a fixed number. Use a Local\ mapping, // since global has UAC issues in Vista. #pragma data_seg(".PPTVIEWLIB") PPTVIEW pptView[MAX_PPTS] = {NULL}; HHOOK globalHook = NULL; BOOL debug = FALSE; #pragma data_seg() #pragma comment(linker, "/SECTION:.PPTVIEWLIB,RWS") HINSTANCE hInstance = NULL; BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReasonForCall, LPVOID lpReserved) { hInstance = (HINSTANCE)hModule; switch(ulReasonForCall) { case DLL_PROCESS_ATTACH: DEBUG(L"PROCESS_ATTACH\n"); break; case DLL_THREAD_ATTACH: //DEBUG(L"THREAD_ATTACH\n"); break; case DLL_THREAD_DETACH: //DEBUG(L"THREAD_DETACH\n"); break; case DLL_PROCESS_DETACH: // Clean up... hopefully there is only the one process attached? // We'll find out soon enough during tests! DEBUG(L"PROCESS_DETACH\n"); for (int i = 0; i < MAX_PPTS; i++) ClosePPT(i); break; } return TRUE; } DllExport void SetDebug(BOOL onOff) { printf("SetDebug\n"); debug = onOff; DEBUG(L"enabled\n"); } DllExport BOOL CheckInstalled() { wchar_t cmdLine[MAX_PATH * 2]; DEBUG(L"CheckInstalled\n"); BOOL found = GetPPTViewerPath(cmdLine, sizeof(cmdLine)); if(found) { DEBUG(L"Exe: %s\n", cmdLine); } return found; } // Open the PointPoint, count the slides and take a snapshot of each slide // for use in previews // previewpath is a prefix for the location to put preview images of each slide. // ".bmp" will be appended to complete the path. E.g. "c:\temp\slide" would // create "c:\temp\slide1.bmp" slide2.bmp, slide3.bmp etc. // It will also create a *info.txt containing information about the ppt DllExport int OpenPPT(wchar_t *filename, HWND hParentWnd, RECT rect, wchar_t *previewPath) { STARTUPINFO si; PROCESS_INFORMATION pi; wchar_t cmdLine[MAX_PATH * 2]; int id; DEBUG(L"OpenPPT start: %s; %s\n", filename, previewPath); DEBUG(L"OpenPPT start: %u; %i, %i, %i, %i\n", hParentWnd, rect.top, rect.left, rect.bottom, rect.right); if (GetPPTViewerPath(cmdLine, sizeof(cmdLine)) == FALSE) { DEBUG(L"OpenPPT: GetPPTViewerPath failed\n"); return -1; } id = -1; for (int i = 0; i < MAX_PPTS; i++) { if (pptView[i].state == PPT_CLOSED) { id = i; break; } } if (id < 0) { DEBUG(L"OpenPPT: Too many PPTs\n"); return -1; } memset(&pptView[id], 0, sizeof(PPTVIEW)); wcscpy_s(pptView[id].filename, MAX_PATH, filename); wcscpy_s(pptView[id].previewPath, MAX_PATH, previewPath); pptView[id].state = PPT_CLOSED; pptView[id].slideCount = 0; pptView[id].currentSlide = 0; pptView[id].firstSlideSteps = 0; pptView[id].lastSlideSteps = 0; pptView[id].guess = 0; pptView[id].hParentWnd = hParentWnd; pptView[id].hWnd = NULL; pptView[id].hWnd2 = NULL; for (int i = 0; i < MAX_SLIDES; i++) { pptView[id].slideNos[i] = 0; } if (hParentWnd != NULL && rect.top == 0 && rect.bottom == 0 && rect.left == 0 && rect.right == 0) { LPRECT windowRect = NULL; GetWindowRect(hParentWnd, windowRect); pptView[id].rect.top = 0; pptView[id].rect.left = 0; pptView[id].rect.bottom = windowRect->bottom - windowRect->top; pptView[id].rect.right = windowRect->right - windowRect->left; } else { pptView[id].rect.top = rect.top; pptView[id].rect.left = rect.left; pptView[id].rect.bottom = rect.bottom; pptView[id].rect.right = rect.right; } wcscat_s(cmdLine, MAX_PATH * 2, L" /F /S \""); wcscat_s(cmdLine, MAX_PATH * 2, filename); wcscat_s(cmdLine, MAX_PATH * 2, L"\""); memset(&si, 0, sizeof(si)); memset(&pi, 0, sizeof(pi)); BOOL gotInfo = GetPPTInfo(id); /* * I'd really like to just hook on the new threadid. However this always * gives error 87. Perhaps I'm hooking to soon? No idea... however can't * wait since I need to ensure I pick up the WM_CREATE as this is the only * time the window can be resized in such away the content scales correctly * * hook = SetWindowsHookEx(WH_CBT,CbtProc,hInstance,pi.dwThreadId); */ if (globalHook != NULL) { UnhookWindowsHookEx(globalHook); } globalHook = SetWindowsHookEx(WH_CBT, CbtProc, hInstance, NULL); if (globalHook == 0) { DEBUG(L"OpenPPT: SetWindowsHookEx failed\n"); ClosePPT(id); return -1; } pptView[id].state = PPT_STARTED; Sleep(10); if (!CreateProcess(NULL, cmdLine, NULL, NULL, FALSE, 0, 0, NULL, &si, &pi)) { DEBUG(L"OpenPPT: CreateProcess failed: %s\n", cmdLine); ClosePPT(id); return -1; } pptView[id].dwProcessId = pi.dwProcessId; pptView[id].dwThreadId = pi.dwThreadId; pptView[id].hThread = pi.hThread; pptView[id].hProcess = pi.hProcess; while (pptView[id].state == PPT_STARTED) Sleep(10); if (gotInfo) { DEBUG(L"OpenPPT: Info loaded, no refresh\n"); pptView[id].state = PPT_LOADED; Resume(id); } else { DEBUG(L"OpenPPT: Get info\n"); pptView[id].steps = 0; int steps = 0; while (pptView[id].state == PPT_OPENED) { if (steps <= pptView[id].steps) { Sleep(100); DEBUG(L"OpenPPT: Step %d/%d\n", steps, pptView[id].steps); steps++; NextStep(id); } Sleep(10); } DEBUG(L"OpenPPT: Slides %d, Steps %d, first slide steps %d\n", pptView[id].slideCount, pptView[id].steps, pptView[id].firstSlideSteps); for(int i = 1; i <= pptView[id].slideCount; i++) { DEBUG(L"OpenPPT: Slide %d = %d\n", i, pptView[id].slideNos[i]); } SavePPTInfo(id); if (pptView[id].state == PPT_CLOSING || pptView[id].slideCount <= 0) { ClosePPT(id); id=-1; } else { RestartShow(id); } } if (id >= 0) { if (pptView[id].msgHook != NULL) { UnhookWindowsHookEx(pptView[id].msgHook); } pptView[id].msgHook = NULL; } DEBUG(L"OpenPPT: Exit: id=%i\n", id); return id; } // Load information about the ppt from an info.txt file. // Format: // version // filedate // filesize // slidecount // first slide steps BOOL GetPPTInfo(int id) { struct _stat fileStats; wchar_t info[MAX_PATH]; FILE* pFile; wchar_t buf[100]; DEBUG(L"GetPPTInfo: start\n"); if (_wstat(pptView[id].filename, &fileStats) != 0) { return FALSE; } swprintf_s(info, MAX_PATH, L"%sinfo.txt", pptView[id].previewPath); int err = _wfopen_s(&pFile, info, L"r"); if (err != 0) { DEBUG(L"GetPPTInfo: file open failed - %d\n", err); return FALSE; } fgetws(buf, 100, pFile); // version == 1 fgetws(buf, 100, pFile); if (fileStats.st_mtime != _wtoi(buf)) { DEBUG(L"GetPPTInfo: date changed\n"); fclose (pFile); return FALSE; } fgetws(buf, 100, pFile); if (fileStats.st_size != _wtoi(buf)) { DEBUG(L"GetPPTInfo: size changed\n"); fclose (pFile); return FALSE; } fgetws(buf, 100, pFile); // slidecount int slideCount = _wtoi(buf); fgetws(buf, 100, pFile); // first slide steps int firstSlideSteps = _wtoi(buf); // check all the preview images still exist for (int i = 1; i <= slideCount; i++) { swprintf_s(info, MAX_PATH, L"%s%i.bmp", pptView[id].previewPath, i); if (GetFileAttributes(info) == INVALID_FILE_ATTRIBUTES) { DEBUG(L"GetPPTInfo: bmp not found\n"); return FALSE; } } fclose(pFile); pptView[id].slideCount = slideCount; pptView[id].firstSlideSteps = firstSlideSteps; DEBUG(L"GetPPTInfo: exit ok\n"); return TRUE; } BOOL SavePPTInfo(int id) { struct _stat fileStats; wchar_t info[MAX_PATH]; FILE* pFile; DEBUG(L"SavePPTInfo: start\n"); if (_wstat(pptView[id].filename, &fileStats) != 0) { DEBUG(L"SavePPTInfo: stat of %s failed\n", pptView[id].filename); return FALSE; } swprintf_s(info, MAX_PATH, L"%sinfo.txt", pptView[id].previewPath); int err = _wfopen_s(&pFile, info, L"w"); if (err != 0) { DEBUG(L"SavePPTInfo: fopen of %s failed%i\n", info, err); return FALSE; } fprintf(pFile, "1\n"); fprintf(pFile, "%u\n", fileStats.st_mtime); fprintf(pFile, "%u\n", fileStats.st_size); fprintf(pFile, "%u\n", pptView[id].slideCount); fprintf(pFile, "%u\n", pptView[id].firstSlideSteps); fclose(pFile); DEBUG(L"SavePPTInfo: exit ok\n"); return TRUE; } // Get the path of the PowerPoint viewer from the registry BOOL GetPPTViewerPath(wchar_t *pptViewerPath, int stringSize) { wchar_t cwd[MAX_PATH]; DEBUG(L"GetPPTViewerPath: start\n"); if(GetPPTViewerPathFromReg(pptViewerPath, stringSize)) { if(_waccess(pptViewerPath, 0) != -1) { DEBUG(L"GetPPTViewerPath: exit registry\n"); return TRUE; } } // This is where it gets ugly. PPT2007 it seems no longer stores its // location in the registry. So we have to use the defaults which will // upset those who like to put things somewhere else // Viewer 2007 in 64bit Windows: if(_waccess(L"C:\\Program Files (x86)\\Microsoft Office\\Office12\\PPTVIEW.EXE", 0) != -1) { wcscpy_s( L"C:\\Program Files (x86)\\Microsoft Office\\Office12\\PPTVIEW.EXE", stringSize, pptViewerPath); DEBUG(L"GetPPTViewerPath: exit 64bit 2007\n"); return TRUE; } // Viewer 2007 in 32bit Windows: if(_waccess(L"C:\\Program Files\\Microsoft Office\\Office12\\PPTVIEW.EXE", 0) != -1) { wcscpy_s(L"C:\\Program Files\\Microsoft Office\\Office12\\PPTVIEW.EXE", stringSize, pptViewerPath); DEBUG(L"GetPPTViewerPath: exit 32bit 2007\n"); return TRUE; } // Give them the opportunity to place it in the same folder as the app _wgetcwd(cwd, MAX_PATH); wcscat_s(cwd, MAX_PATH, L"\\PPTVIEW.EXE"); if(_waccess(cwd, 0) != -1) { wcscpy_s(pptViewerPath, stringSize, cwd); DEBUG(L"GetPPTViewerPath: exit local\n"); return TRUE; } DEBUG(L"GetPPTViewerPath: exit fail\n"); return FALSE; } BOOL GetPPTViewerPathFromReg(wchar_t *pptViewerPath, int stringSize) { HKEY hKey; DWORD dwType, dwSize; LRESULT lResult; // The following registry settings are for, respectively, (I think) // PPT Viewer 2007 (older versions. Latest not in registry) & PPT Viewer 2010 // PPT Viewer 2003 (recent versions) // PPT Viewer 2003 (older versions) // PPT Viewer 97 if ((RegOpenKeyExW(HKEY_CLASSES_ROOT, L"PowerPointViewer.Show.12\\shell\\Show\\command", 0, KEY_READ, &hKey) != ERROR_SUCCESS) && (RegOpenKeyExW(HKEY_CLASSES_ROOT, L"PowerPointViewer.Show.11\\shell\\Show\\command", 0, KEY_READ, &hKey) != ERROR_SUCCESS) && (RegOpenKeyExW(HKEY_CLASSES_ROOT, L"Applications\\PPTVIEW.EXE\\shell\\open\\command", 0, KEY_READ, &hKey) != ERROR_SUCCESS) && (RegOpenKeyExW(HKEY_CLASSES_ROOT, L"Applications\\PPTVIEW.EXE\\shell\\Show\\command", 0, KEY_READ, &hKey) != ERROR_SUCCESS)) { return FALSE; } dwType = REG_SZ; dwSize = (DWORD)stringSize; lResult = RegQueryValueEx(hKey, NULL, NULL, &dwType, (LPBYTE)pptViewerPath, &dwSize); RegCloseKey(hKey); if (lResult != ERROR_SUCCESS) { return FALSE; } // remove "%1" from end of key value pptViewerPath[wcslen(pptViewerPath) - 4] = '\0'; return TRUE; } // Unhook the Windows hook void Unhook(int id) { DEBUG(L"Unhook: start %d\n", id); if (pptView[id].hook != NULL) { UnhookWindowsHookEx(pptView[id].hook); } if (pptView[id].msgHook != NULL) { UnhookWindowsHookEx(pptView[id].msgHook); } pptView[id].hook = NULL; pptView[id].msgHook = NULL; DEBUG(L"Unhook: exit ok\n"); } // Close the PowerPoint viewer, release resources DllExport void ClosePPT(int id) { DEBUG(L"ClosePPT: start%d\n", id); pptView[id].state = PPT_CLOSED; Unhook(id); if (pptView[id].hWnd == 0) { TerminateThread(pptView[id].hThread, 0); } else { PostMessage(pptView[id].hWnd, WM_CLOSE, 0, 0); } CloseHandle(pptView[id].hThread); CloseHandle(pptView[id].hProcess); memset(&pptView[id], 0, sizeof(PPTVIEW)); DEBUG(L"ClosePPT: exit ok\n"); return; } // Moves the show back onto the display DllExport void Resume(int id) { DEBUG(L"Resume: %d\n", id); MoveWindow(pptView[id].hWnd, pptView[id].rect.left, pptView[id].rect.top, pptView[id].rect.right - pptView[id].rect.left, pptView[id].rect.bottom - pptView[id].rect.top, TRUE); Unblank(id); } // Moves the show off the screen so it can't be seen DllExport void Stop(int id) { DEBUG(L"Stop:%d\n", id); MoveWindow(pptView[id].hWnd, -32000, -32000, pptView[id].rect.right - pptView[id].rect.left, pptView[id].rect.bottom - pptView[id].rect.top, TRUE); } // Return the total number of slides DllExport int GetSlideCount(int id) { DEBUG(L"GetSlideCount:%d\n", id); if (pptView[id].state == 0) { return -1; } else { return pptView[id].slideCount; } } // Return the number of the slide currently viewing DllExport int GetCurrentSlide(int id) { DEBUG(L"GetCurrentSlide:%d\n", id); if (pptView[id].state == 0) { return -1; } else { return pptView[id].currentSlide; } } // Take a step forwards through the show DllExport void NextStep(int id) { DEBUG(L"NextStep:%d (%d)\n", id, pptView[id].currentSlide); if (pptView[id].currentSlide > pptView[id].slideCount) return; if (pptView[id].currentSlide < pptView[id].slideCount) { pptView[id].guess = pptView[id].currentSlide + 1; } PostMessage(pptView[id].hWnd2, WM_MOUSEWHEEL, MAKEWPARAM(0, -WHEEL_DELTA), 0); } // Take a step backwards through the show DllExport void PrevStep(int id) { DEBUG(L"PrevStep:%d (%d)\n", id, pptView[id].currentSlide); if (pptView[id].currentSlide > 1) { pptView[id].guess = pptView[id].currentSlide - 1; } PostMessage(pptView[id].hWnd2, WM_MOUSEWHEEL, MAKEWPARAM(0, WHEEL_DELTA), 0); } // Blank the show (black screen) DllExport void Blank(int id) { // B just toggles blank on/off. However pressing any key unblanks. // So send random unmapped letter first (say 'A'), then we can // better guarantee B will blank instead of trying to guess // whether it was already blank or not. DEBUG(L"Blank:%d\n", id); HWND h1 = GetForegroundWindow(); HWND h2 = GetFocus(); SetForegroundWindow(pptView[id].hWnd); SetFocus(pptView[id].hWnd); // slight pause, otherwise event triggering this call may grab focus back! Sleep(50); keybd_event((int)'A', 0, 0, 0); keybd_event((int)'A', 0, KEYEVENTF_KEYUP, 0); keybd_event((int)'B', 0, 0, 0); keybd_event((int)'B', 0, KEYEVENTF_KEYUP, 0); SetForegroundWindow(h1); SetFocus(h2); } // Unblank the show DllExport void Unblank(int id) { DEBUG(L"Unblank:%d\n", id); // Pressing any key resumes. // For some reason SendMessage works for unblanking, but not blanking. SendMessage(pptView[id].hWnd2, WM_CHAR, 'A', 0); } // Go directly to a slide DllExport void GotoSlide(int id, int slideNo) { DEBUG(L"GotoSlide %i %i:\n", id, slideNo); // Did try WM_KEYDOWN/WM_CHAR/WM_KEYUP with SendMessage but didn't work // perhaps I was sending to the wrong window? No idea. // Anyway fall back to keybd_event, which is OK as long we makesure // the slideshow has focus first char ch[10]; if (slideNo < 0) return; pptView[id].guess = slideNo; _itoa_s(slideNo, ch, 10, 10); HWND h1 = GetForegroundWindow(); HWND h2 = GetFocus(); SetForegroundWindow(pptView[id].hWnd); SetFocus(pptView[id].hWnd); // slight pause, otherwise event triggering this call may grab focus back! Sleep(50); for (int i=0; i<10; i++) { if (ch[i] == '\0') break; keybd_event((BYTE)ch[i], 0, 0, 0); keybd_event((BYTE)ch[i], 0, KEYEVENTF_KEYUP, 0); } keybd_event(VK_RETURN, 0, 0, 0); keybd_event(VK_RETURN, 0, KEYEVENTF_KEYUP, 0); SetForegroundWindow(h1); SetFocus(h2); } // Restart the show from the beginning DllExport void RestartShow(int id) { // If we just go direct to slide one, then it remembers that all other // slides have been animated, so ends up just showing the completed slides // of those slides that have been animated next time we advance. // Only way I've found to get around this is to step backwards all the way // through. Lets move the window out of the way first so the audience // doesn't see this. DEBUG(L"RestartShow:%d\n", id); Stop(id); GotoSlide(id, pptView[id].slideCount); for (int i=0; i <= pptView[id].steps - pptView[id].lastSlideSteps; i++) { PrevStep(id); Sleep(10); } int i = 0; while ((pptView[id].currentSlide > 1) && (i++ < 30000)) { Sleep(10); } Resume(id); } // This hook is started with the PPTVIEW.EXE process and waits for the // WM_CREATEWND message. At this point (and only this point) can the // window be resized to the correct size. // Release the hook as soon as we're complete to free up resources LRESULT CALLBACK CbtProc(int nCode, WPARAM wParam, LPARAM lParam) { HHOOK hook = globalHook; if (nCode == HCBT_CREATEWND) { wchar_t csClassName[32]; HWND hCurrWnd = (HWND)wParam; DWORD retProcId = NULL; GetClassName(hCurrWnd, csClassName, sizeof(csClassName)); if ((wcscmp(csClassName, L"paneClassDC") == 0) ||(wcscmp(csClassName, L"screenClass") == 0)) { int id = -1; DWORD windowThread = GetWindowThreadProcessId(hCurrWnd, NULL); for (int i=0; i < MAX_PPTS; i++) { if (pptView[i].dwThreadId == windowThread) { id = i; break; } } if (id >= 0) { if (wcscmp(csClassName, L"paneClassDC") == 0) { pptView[id].hWnd2 = hCurrWnd; } else { pptView[id].hWnd = hCurrWnd; CBT_CREATEWND* cw = (CBT_CREATEWND*)lParam; if (pptView[id].hParentWnd != NULL) { cw->lpcs->hwndParent = pptView[id].hParentWnd; } cw->lpcs->cy = pptView[id].rect.bottom - pptView[id].rect.top; cw->lpcs->cx = pptView[id].rect.right - pptView[id].rect.left; cw->lpcs->y = -32000; cw->lpcs->x = -32000; } if ((pptView[id].hWnd != NULL) && (pptView[id].hWnd2 != NULL)) { UnhookWindowsHookEx(globalHook); globalHook = NULL; pptView[id].hook = SetWindowsHookEx(WH_CALLWNDPROC, CwpProc, hInstance, pptView[id].dwThreadId); pptView[id].msgHook = SetWindowsHookEx(WH_GETMESSAGE, GetMsgProc, hInstance, pptView[id].dwThreadId); Sleep(10); pptView[id].state = PPT_OPENED; } } } } return CallNextHookEx(hook, nCode, wParam, lParam); } // This hook exists whilst the slideshow is loading but only listens on the // slideshows thread. It listens out for mousewheel events LRESULT CALLBACK GetMsgProc(int nCode, WPARAM wParam, LPARAM lParam) { HHOOK hook = NULL; MSG *pMSG = (MSG *)lParam; DWORD windowThread = GetWindowThreadProcessId(pMSG->hwnd, NULL); int id = -1; for (int i = 0; i < MAX_PPTS; i++) { if (pptView[i].dwThreadId == windowThread) { id = i; hook = pptView[id].msgHook; break; } } if (id >= 0 && nCode == HC_ACTION && wParam == PM_REMOVE && pMSG->message == WM_MOUSEWHEEL) { if (pptView[id].state != PPT_LOADED) { if (pptView[id].currentSlide == 1) { pptView[id].firstSlideSteps++; } pptView[id].steps++; pptView[id].lastSlideSteps++; } } return CallNextHookEx(hook, nCode, wParam, lParam); } // This hook exists whilst the slideshow is running but only listens on the // slideshows thread. It listens out for slide changes, message WM_USER+22. LRESULT CALLBACK CwpProc(int nCode, WPARAM wParam, LPARAM lParam){ CWPSTRUCT *cwp; cwp = (CWPSTRUCT *)lParam; HHOOK hook = NULL; wchar_t filename[MAX_PATH]; DWORD windowThread = GetWindowThreadProcessId(cwp->hwnd, NULL); int id = -1; for (int i = 0; i < MAX_PPTS; i++) { if (pptView[i].dwThreadId == windowThread) { id = i; hook = pptView[id].hook; break; } } if ((id >= 0) && (nCode == HC_ACTION)) { if (cwp->message == WM_USER + 22) { if (pptView[id].state != PPT_LOADED) { if ((pptView[id].currentSlide > 0) && (pptView[id].previewPath != NULL && wcslen(pptView[id].previewPath) > 0)) { swprintf_s(filename, MAX_PATH, L"%s%i.bmp", pptView[id].previewPath, pptView[id].currentSlide); CaptureAndSaveWindow(cwp->hwnd, filename); } if (((cwp->wParam == 0) || (pptView[id].slideNos[1] == cwp->wParam)) && (pptView[id].currentSlide > 0)) { pptView[id].state = PPT_LOADED; pptView[id].currentSlide = pptView[id].slideCount + 1; } else { if (cwp->wParam > 0) { pptView[id].currentSlide = pptView[id].currentSlide + 1; pptView[id].slideNos[pptView[id].currentSlide] = cwp->wParam; pptView[id].slideCount = pptView[id].currentSlide; pptView[id].lastSlideSteps = 0; } } } else { if (cwp->wParam > 0) { if(pptView[id].guess > 0 && pptView[id].slideNos[pptView[id].guess] == 0) { pptView[id].currentSlide = 0; } for(int i = 1; i <= pptView[id].slideCount; i++) { if(pptView[id].slideNos[i] == cwp->wParam) { pptView[id].currentSlide = i; break; } } if(pptView[id].currentSlide == 0) { pptView[id].slideNos[pptView[id].guess] = cwp->wParam; pptView[id].currentSlide = pptView[id].guess; } pptView[id].guess = 0; } } } if ((pptView[id].state != PPT_CLOSED) &&(cwp->message == WM_CLOSE || cwp->message == WM_QUIT)) { pptView[id].state = PPT_CLOSING; } } return CallNextHookEx(hook, nCode, wParam, lParam); } VOID CaptureAndSaveWindow(HWND hWnd, wchar_t* filename) { HBITMAP hBmp; if ((hBmp = CaptureWindow(hWnd)) == NULL) { return; } RECT client; GetClientRect(hWnd, &client); UINT uiBytesPerRow = 3 * client.right; // RGB takes 24 bits UINT uiRemainderForPadding; if ((uiRemainderForPadding = uiBytesPerRow % sizeof(DWORD)) > 0) uiBytesPerRow += (sizeof(DWORD) - uiRemainderForPadding); UINT uiBytesPerAllRows = uiBytesPerRow * client.bottom; PBYTE pDataBits; if ((pDataBits = new BYTE[uiBytesPerAllRows]) != NULL) { BITMAPINFOHEADER bmi = {0}; BITMAPFILEHEADER bmf = {0}; // Prepare to get the data out of HBITMAP: bmi.biSize = sizeof(bmi); bmi.biPlanes = 1; bmi.biBitCount = 24; bmi.biHeight = client.bottom; bmi.biWidth = client.right; // Get it: HDC hDC = GetDC(hWnd); GetDIBits(hDC, hBmp, 0, client.bottom, pDataBits, (BITMAPINFO*) &bmi, DIB_RGB_COLORS); ReleaseDC(hWnd, hDC); // Fill the file header: bmf.bfOffBits = sizeof(bmf) + sizeof(bmi); bmf.bfSize = bmf.bfOffBits + uiBytesPerAllRows; bmf.bfType = 0x4D42; // Writing: FILE* pFile; int err = _wfopen_s(&pFile, filename, L"wb"); if (err == 0) { fwrite(&bmf, sizeof(bmf), 1, pFile); fwrite(&bmi, sizeof(bmi), 1, pFile); fwrite(pDataBits, sizeof(BYTE), uiBytesPerAllRows, pFile); fclose(pFile); } delete [] pDataBits; } DeleteObject(hBmp); } HBITMAP CaptureWindow(HWND hWnd) { HDC hDC; BOOL bOk = FALSE; HBITMAP hImage = NULL; hDC = GetDC(hWnd); RECT rcClient; GetClientRect(hWnd, &rcClient); if ((hImage = CreateCompatibleBitmap(hDC, rcClient.right, rcClient.bottom)) != NULL) { HDC hMemDC; HBITMAP hDCBmp; if ((hMemDC = CreateCompatibleDC(hDC)) != NULL) { hDCBmp = (HBITMAP)SelectObject(hMemDC, hImage); HMODULE hLib = LoadLibrary(L"User32"); // PrintWindow works for windows outside displayable area // but was only introduced in WinXP. BitBlt requires the window to // be topmost and within the viewable area of the display if (GetProcAddress(hLib, "PrintWindow") == NULL) { SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE); BitBlt(hMemDC, 0, 0, rcClient.right, rcClient.bottom, hDC, 0, 0, SRCCOPY); SetWindowPos(hWnd, HWND_NOTOPMOST, -32000, -32000, 0, 0, SWP_NOSIZE); } else { PrintWindow(hWnd, hMemDC, 0); } SelectObject(hMemDC, hDCBmp); DeleteDC(hMemDC); bOk = TRUE; } } ReleaseDC(hWnd, hDC); if (!bOk) { if (hImage) { DeleteObject(hImage); hImage = NULL; } } return hImage; } OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/ppttest.py0000644000175000017500000001725112657640340024443 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import sys from PyQt5 import QtWidgets from ctypes import * from ctypes.wintypes import RECT class PPTViewer(QtWidgets.QWidget): """ Standalone Test Harness for the pptviewlib library """ def __init__(self, parent=None): super(PPTViewer, self).__init__(parent) self.pptid = -1 self.setWindowTitle('PowerPoint Viewer Test') ppt_label = QtWidgets.QLabel('Open PowerPoint file') slide_label = QtWidgets.QLabel('Go to slide #') self.pptEdit = QtWidgets.QLineEdit() self.slideEdit = QtWidgets.QLineEdit() x_label = QtWidgets.QLabel('X pos') y_label = QtWidgets.QLabel('Y pos') width_label = QtWidgets.QLabel('Width') height_label = QtWidgets.QLabel('Height') self.xEdit = QtWidgets.QLineEdit('100') self.yEdit = QtWidgets.QLineEdit('100') self.widthEdit = QtWidgets.QLineEdit('900') self.heightEdit = QtWidgets.QLineEdit('700') self.total = QtWidgets.QLabel() ppt_btn = QtWidgets.QPushButton('Open') ppt_dlg_btn = QtWidgets.QPushButton('...') folder_label = QtWidgets.QLabel('Slide .bmp path') self.folderEdit = QtWidgets.QLineEdit('slide') slide_btn = QtWidgets.QPushButton('Go') prev = QtWidgets.QPushButton('Prev') next = QtWidgets.QPushButton('Next') blank = QtWidgets.QPushButton('Blank') unblank = QtWidgets.QPushButton('Unblank') restart = QtWidgets.QPushButton('Restart') close = QtWidgets.QPushButton('Close') resume = QtWidgets.QPushButton('Resume') stop = QtWidgets.QPushButton('Stop') grid = QtWidgets.QGridLayout() row = 0 grid.addWidget(folder_label, 0, 0) grid.addWidget(self.folderEdit, 0, 1) row += 1 grid.addWidget(x_label, row, 0) grid.addWidget(self.xEdit, row, 1) grid.addWidget(y_label, row, 2) grid.addWidget(self.yEdit, row, 3) row += 1 grid.addWidget(width_label, row, 0) grid.addWidget(self.widthEdit, row, 1) grid.addWidget(height_label, row, 2) grid.addWidget(self.heightEdit, row, 3) row += 1 grid.addWidget(ppt_label, row, 0) grid.addWidget(self.pptEdit, row, 1) grid.addWidget(ppt_dlg_btn, row, 2) grid.addWidget(ppt_btn, row, 3) row += 1 grid.addWidget(slide_label, row, 0) grid.addWidget(self.slideEdit, row, 1) grid.addWidget(slide_btn, row, 2) row += 1 grid.addWidget(prev, row, 0) grid.addWidget(next, row, 1) row += 1 grid.addWidget(blank, row, 0) grid.addWidget(unblank, row, 1) row += 1 grid.addWidget(restart, row, 0) grid.addWidget(close, row, 1) row += 1 grid.addWidget(stop, row, 0) grid.addWidget(resume, row, 1) ppt_btn.clicked.connect(self.openClick) ppt_dlg_btn.clicked.connect(self.openDialog) slide_btn.clicked.connect(self.gotoClick) prev.clicked.connect(self.prevClick) next.clicked.connect(self.nextClick) blank.clicked.connect(self.blankClick) unblank.clicked.connect(self.unblankClick) restart.clicked.connect(self.restartClick) close.clicked.connect(self.closeClick) stop.clicked.connect(self.stopClick) resume.clicked.connect(self.resumeClick) self.setLayout(grid) self.resize(300, 150) def prevClick(self): if self.pptid < 0: return self.pptdll.PrevStep(self.pptid) self.updateCurrSlide() app.processEvents() def nextClick(self): if self.pptid < 0: return self.pptdll.NextStep(self.pptid) self.updateCurrSlide() app.processEvents() def blankClick(self): if self.pptid < 0: return self.pptdll.Blank(self.pptid) app.processEvents() def unblankClick(self): if self.pptid < 0: return self.pptdll.Unblank(self.pptid) app.processEvents() def restartClick(self): if self.pptid < 0: return self.pptdll.RestartShow(self.pptid) self.updateCurrSlide() app.processEvents() def stopClick(self): if self.pptid < 0: return self.pptdll.Stop(self.pptid) app.processEvents() def resumeClick(self): if self.pptid < 0: return self.pptdll.Resume(self.pptid) app.processEvents() def closeClick(self): if self.pptid < 0: return self.pptdll.ClosePPT(self.pptid) self.pptid = -1 app.processEvents() def openClick(self): oldid = self.pptid rect = RECT(int(self.xEdit.text()), int(self.yEdit.text()), int(self.widthEdit.text()), int(self.heightEdit.text())) filename = str(self.pptEdit.text().replace('/', '\\')) folder = str(self.folderEdit.text().replace('/', '\\')) print(filename, folder) self.pptid = self.pptdll.OpenPPT(filename, None, rect, folder) print('id: ' + str(self.pptid)) if oldid >= 0: self.pptdll.ClosePPT(oldid) slides = self.pptdll.GetSlideCount(self.pptid) print('slidecount: ' + str(slides)) self.total.setNum(self.pptdll.GetSlideCount(self.pptid)) self.updateCurrSlide() def updateCurrSlide(self): if self.pptid < 0: return slide = str(self.pptdll.GetCurrentSlide(self.pptid)) print('currslide: ' + slide) self.slideEdit.setText(slide) app.processEvents() def gotoClick(self): if self.pptid < 0: return print(self.slideEdit.text()) self.pptdll.GotoSlide(self.pptid, int(self.slideEdit.text())) self.updateCurrSlide() app.processEvents() def openDialog(self): self.pptEdit.setText(QtWidgets.QFileDialog.getOpenFileName(self, 'Open file')[0]) if __name__ == '__main__': pptdll = cdll.LoadLibrary(r'pptviewlib.dll') pptdll.SetDebug(1) print('Begin...') app = QtWidgets.QApplication(sys.argv) window = PPTViewer() window.pptdll = pptdll window.show() sys.exit(app.exec()) OpenLP-2.4/openlp/plugins/presentations/lib/pptviewlib/README.TXT0000644000175000017500000001142112657640340023715 0ustar raoulraoul PPTVIEWLIB - Control PowerPoint Viewer 2003/2007 (for openlp.org) Copyright (C) 2008-2016 Jonathan Corwin (j@corwin.co.uk) This library wrappers the free Microsoft PowerPoint Viewer (2003/2007) program, allowing it to be more easily controlled from another program. The PowerPoint Viewer must already be installed on the destination machine, and is freely available at microsoft.com. The full Microsoft Office PowerPoint and PowerPoint Viewer 97 have a COM interface allowing automation. This ability was removed from the 2003+ viewer offerings. To developers: I am not a C/C++ or Win32 API programmer as you can probably tell. The code and API of this DLL could certainly do with some tidying up, and the error trapping, where it exists, is very basic. I'll happily accept patches! This library is covered by the GPL (http://www.gnu.org/licenses/) It is NOT covered by the LGPL, so can only be used in GPL compatable programs. (http://www.gnu.org/licenses/why-not-lgpl.html) This README.TXT must be distributed with the pptviewlib.dll This library has a limit of 50 PowerPoints which can be opened simultaneously. This project can be built with the free Microsoft Visual C++ 2008 Express Edition. USAGE ----- BOOL CheckInstalled(void); Returns TRUE if PowerPointViewer is installed. FALSE if not. int OpenPPT(char *filename, HWND hParentWnd, RECT rect, char *previewpath); Opens the PowerPoint file, counts the number of slides, sizes and positions accordingly and creates preview images of each slide. Note PowerPoint Viewer only allows the slideshow to be resized whilst it is being loaded. It can be moved at any time however. The only way to count the number of slides is to step through the entire show. Therefore there will be a delay whilst opening large presentations for the first time. For pre XP/2003 systems, the slideshow will flicker as the screen snapshots are taken. filename: The PowerPoint file to be opened. Full path hParentWnd: The window which will become the parent of the slideshow window. Can be NULL. rect: The location/dimensions of the slideshow window. If all properties of this structure are zero, the dimensions of the hParentWnd are used. previewpath If specified, the prefix to use for snapshot images of each slide, in the form: previewpath + n + ".bmp", where n is the slide number. A file called previewpath + "info.txt" will also be created containing information about the PPT file, to speed up future openings of the unmodified file. Note it is up the calling program to directly access these images if they are required. RETURNS: An unique identifier to pass to other methods in this library. If < 0, then the PPT failed to open. If >=0, ClosePPT must be called when the PPT is no longer being used or when the calling program is closed to release resources/hooks. void ClosePPT(int id); Closes the presentation, releasing any resources and hooks. id: The value returned from OpenPPT. int GetCurrentSlide(int id); Returns the current slide number (from 1) id: The value returned from OpenPPT. int GetSlideCount(int id); Returns the total number of slides. id: The value returned from OpenPPT. void NextStep(int id); Advances one step (animation) through the slideshow. id: The value returned from OpenPPT. void PrevStep(int id); Goes backwards one step (animation) through the slideshow. id: The value returned from OpenPPT. void GotoSlide(int id, int slideno); Goes directly to a specific slide in the slideshow id: The value returned from OpenPPT. slideno: The number of the slide (from 1) to go directly to. If the slide has already been displayed, then the completed slide with animations performed will be shown. This is how the PowerPoint Viewer works so have no control over this. void RestartShow(int id); Restarts the show from the beginning. To reset animations, behind the scenes it has to travel to the end and step backwards though the entire show. Therefore for large presentations there might be a delay. id: The value returned from OpenPPT. void Blank(int id); Blanks the screen, colour black. id: The value returned from OpenPPT. void Unblank(int id) Unblanks the screen, restoring it to it's pre-blank state. id: The value returned from OpenPPT. void Stop(int id) Moves the slideshow off the screen. (There is no concept of stop show in the PowerPoint Viewer) id: The value returned from OpenPPT. void Resume(int id) Moves the slideshow display back onto the screen following a Stop() id: The value returned from OpenPPT. OpenLP-2.4/openlp/plugins/presentations/lib/mediaitem.py0000644000175000017500000005135012657640340022507 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging import os from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import Registry, Settings, UiStrings, translate from openlp.core.lib import MediaManagerItem, ItemCapabilities, ServiceItemContext,\ build_icon, check_item_selected, create_thumb, validate_thumb from openlp.core.lib.ui import critical_error_message_box, create_horizontal_adjusting_combo_box from openlp.core.utils import get_locale_key from openlp.plugins.presentations.lib import MessageListener from openlp.plugins.presentations.lib.pdfcontroller import PDF_CONTROLLER_FILETYPES log = logging.getLogger(__name__) ERROR_IMAGE = QtGui.QImage(':/general/general_delete.png') class PresentationMediaItem(MediaManagerItem): """ This is the Presentation media manager item for Presentation Items. It can present files using Openoffice and Powerpoint """ presentations_go_live = QtCore.pyqtSignal(list) presentations_add_to_service = QtCore.pyqtSignal(list) log.info('Presentations Media Item loaded') def __init__(self, parent, plugin, controllers): """ Constructor. Setup defaults """ self.icon_path = 'presentations/presentation' self.controllers = controllers super(PresentationMediaItem, self).__init__(parent, plugin) def retranslateUi(self): """ The name of the plugin media displayed in UI """ self.on_new_prompt = translate('PresentationPlugin.MediaItem', 'Select Presentation(s)') self.automatic = translate('PresentationPlugin.MediaItem', 'Automatic') self.display_type_label.setText(translate('PresentationPlugin.MediaItem', 'Present using:')) def setup_item(self): """ Do some additional setup. """ self.presentations_go_live.connect(self.go_live_remote) self.presentations_add_to_service.connect(self.add_to_service_remote) self.message_listener = MessageListener(self) self.has_search = True self.single_service_item = False Registry().register_function('mediaitem_presentation_rebuild', self.populate_display_types) Registry().register_function('mediaitem_suffixes', self.build_file_mask_string) # Allow DnD from the desktop self.list_view.activateDnD() def build_file_mask_string(self): """ Build the list of file extensions to be used in the Open file dialog. """ file_type_string = '' for controller in self.controllers: if self.controllers[controller].enabled(): file_types = self.controllers[controller].supports + self.controllers[controller].also_supports for file_type in file_types: if file_type not in file_type_string: file_type_string += '*.%s ' % file_type self.service_manager.supported_suffixes(file_type) self.on_new_file_masks = translate('PresentationPlugin.MediaItem', 'Presentations (%s)') % file_type_string def required_icons(self): """ Set which icons the media manager tab should show. """ MediaManagerItem.required_icons(self) self.has_file_icon = True self.has_new_icon = False self.has_edit_icon = False def add_end_header_bar(self): """ Display custom media manager items for presentations. """ self.presentation_widget = QtWidgets.QWidget(self) self.presentation_widget.setObjectName('presentation_widget') self.display_layout = QtWidgets.QFormLayout(self.presentation_widget) self.display_layout.setContentsMargins(self.display_layout.spacing(), self.display_layout.spacing(), self.display_layout.spacing(), self.display_layout.spacing()) self.display_layout.setObjectName('display_layout') self.display_type_label = QtWidgets.QLabel(self.presentation_widget) self.display_type_label.setObjectName('display_type_label') self.display_type_combo_box = create_horizontal_adjusting_combo_box(self.presentation_widget, 'display_type_combo_box') self.display_type_label.setBuddy(self.display_type_combo_box) self.display_layout.addRow(self.display_type_label, self.display_type_combo_box) # Add the Presentation widget to the page layout. self.page_layout.addWidget(self.presentation_widget) def initialise(self): """ Populate the media manager tab """ self.list_view.setIconSize(QtCore.QSize(88, 50)) files = Settings().value(self.settings_section + '/presentations files') self.load_list(files, initial_load=True) self.populate_display_types() def populate_display_types(self): """ Load the combobox with the enabled presentation controllers, allowing user to select a specific app if settings allow. """ self.display_type_combo_box.clear() for item in self.controllers: # For PDF reload backend, since it can have changed if self.controllers[item].name == 'Pdf': self.controllers[item].check_available() # load the drop down selection if self.controllers[item].enabled(): self.display_type_combo_box.addItem(item) if self.display_type_combo_box.count() > 1: self.display_type_combo_box.insertItem(0, self.automatic, userData='automatic') self.display_type_combo_box.setCurrentIndex(0) if Settings().value(self.settings_section + '/override app') == QtCore.Qt.Checked: self.presentation_widget.show() else: self.presentation_widget.hide() def load_list(self, files, target_group=None, initial_load=False): """ Add presentations into the media manager. This is called both on initial load of the plugin to populate with existing files, and when the user adds new files via the media manager. """ current_list = self.get_file_list() titles = [os.path.split(file)[1] for file in current_list] self.application.set_busy_cursor() if not initial_load: self.main_window.display_progress_bar(len(files)) # Sort the presentations by its filename considering language specific characters. files.sort(key=lambda filename: get_locale_key(os.path.split(str(filename))[1])) for file in files: if not initial_load: self.main_window.increment_progress_bar() if current_list.count(file) > 0: continue filename = os.path.split(file)[1] if not os.path.exists(file): item_name = QtWidgets.QListWidgetItem(filename) item_name.setIcon(build_icon(ERROR_IMAGE)) item_name.setData(QtCore.Qt.UserRole, file) item_name.setToolTip(file) self.list_view.addItem(item_name) else: if titles.count(filename) > 0: if not initial_load: critical_error_message_box(translate('PresentationPlugin.MediaItem', 'File Exists'), translate('PresentationPlugin.MediaItem', 'A presentation with that filename already exists.')) continue controller_name = self.find_controller_by_type(filename) if controller_name: controller = self.controllers[controller_name] doc = controller.add_document(file) thumb = os.path.join(doc.get_thumbnail_folder(), 'icon.png') preview = doc.get_thumbnail_path(1, True) if not preview and not initial_load: doc.load_presentation() preview = doc.get_thumbnail_path(1, True) doc.close_presentation() if not (preview and os.path.exists(preview)): icon = build_icon(':/general/general_delete.png') else: if validate_thumb(preview, thumb): icon = build_icon(thumb) else: icon = create_thumb(preview, thumb) else: if initial_load: icon = build_icon(':/general/general_delete.png') else: critical_error_message_box(UiStrings().UnsupportedFile, translate('PresentationPlugin.MediaItem', 'This type of presentation is not supported.')) continue item_name = QtWidgets.QListWidgetItem(filename) item_name.setData(QtCore.Qt.UserRole, file) item_name.setIcon(icon) item_name.setToolTip(file) self.list_view.addItem(item_name) if not initial_load: self.main_window.finished_progress_bar() self.application.set_normal_cursor() def on_delete_click(self): """ Remove a presentation item from the list. """ if check_item_selected(self.list_view, UiStrings().SelectDelete): items = self.list_view.selectedIndexes() row_list = [item.row() for item in items] row_list.sort(reverse=True) self.application.set_busy_cursor() self.main_window.display_progress_bar(len(row_list)) for item in items: filepath = str(item.data(QtCore.Qt.UserRole)) self.clean_up_thumbnails(filepath) self.main_window.increment_progress_bar() self.main_window.finished_progress_bar() for row in row_list: self.list_view.takeItem(row) Settings().setValue(self.settings_section + '/presentations files', self.get_file_list()) self.application.set_normal_cursor() def clean_up_thumbnails(self, filepath, clean_for_update=False): """ Clean up the files created such as thumbnails :param filepath: File path of the presention to clean up after :param clean_for_update: Only clean thumbnails if update is needed :return: None """ for cidx in self.controllers: root, file_ext = os.path.splitext(filepath) file_ext = file_ext[1:] if file_ext in self.controllers[cidx].supports or file_ext in self.controllers[cidx].also_supports: doc = self.controllers[cidx].add_document(filepath) if clean_for_update: thumb_path = doc.get_thumbnail_path(1, True) if not thumb_path or not os.path.exists(filepath) or os.path.getmtime( thumb_path) < os.path.getmtime(filepath): doc.presentation_deleted() else: doc.presentation_deleted() doc.close_presentation() def generate_slide_data(self, service_item, item=None, xml_version=False, remote=False, context=ServiceItemContext.Service, presentation_file=None): """ Generate the slide data. Needs to be implemented by the plugin. :param service_item: The service item to be built on :param item: The Song item to be used :param xml_version: The xml version (not used) :param remote: Triggered from remote :param context: Why is it being generated """ if item: items = [item] else: items = self.list_view.selectedItems() if len(items) > 1: return False filename = presentation_file if filename is None: filename = items[0].data(QtCore.Qt.UserRole) file_type = os.path.splitext(filename.lower())[1][1:] if not self.display_type_combo_box.currentText(): return False service_item.add_capability(ItemCapabilities.CanEditTitle) if file_type in PDF_CONTROLLER_FILETYPES and context != ServiceItemContext.Service: service_item.add_capability(ItemCapabilities.CanMaintain) service_item.add_capability(ItemCapabilities.CanPreview) service_item.add_capability(ItemCapabilities.CanLoop) service_item.add_capability(ItemCapabilities.CanAppend) service_item.name = 'images' # force a nonexistent theme service_item.theme = -1 for bitem in items: filename = presentation_file if filename is None: filename = bitem.data(QtCore.Qt.UserRole) (path, name) = os.path.split(filename) service_item.title = name if os.path.exists(filename): processor = self.find_controller_by_type(filename) if not processor: return False controller = self.controllers[processor] service_item.processor = None doc = controller.add_document(filename) if doc.get_thumbnail_path(1, True) is None or not os.path.isfile( os.path.join(doc.get_temp_folder(), 'mainslide001.png')): doc.load_presentation() i = 1 image = os.path.join(doc.get_temp_folder(), 'mainslide%03d.png' % i) thumbnail = os.path.join(doc.get_thumbnail_folder(), 'slide%d.png' % i) while os.path.isfile(image): service_item.add_from_image(image, name, thumbnail=thumbnail) i += 1 image = os.path.join(doc.get_temp_folder(), 'mainslide%03d.png' % i) thumbnail = os.path.join(doc.get_thumbnail_folder(), 'slide%d.png' % i) service_item.add_capability(ItemCapabilities.HasThumbnails) doc.close_presentation() return True else: # File is no longer present if not remote: critical_error_message_box(translate('PresentationPlugin.MediaItem', 'Missing Presentation'), translate('PresentationPlugin.MediaItem', 'The presentation %s no longer exists.') % filename) return False else: service_item.processor = self.display_type_combo_box.currentText() service_item.add_capability(ItemCapabilities.ProvidesOwnDisplay) for bitem in items: filename = bitem.data(QtCore.Qt.UserRole) (path, name) = os.path.split(filename) service_item.title = name if os.path.exists(filename): if self.display_type_combo_box.itemData(self.display_type_combo_box.currentIndex()) == 'automatic': service_item.processor = self.find_controller_by_type(filename) if not service_item.processor: return False controller = self.controllers[service_item.processor] doc = controller.add_document(filename) if doc.get_thumbnail_path(1, True) is None: doc.load_presentation() i = 1 img = doc.get_thumbnail_path(i, True) if img: # Get titles and notes titles, notes = doc.get_titles_and_notes() service_item.add_capability(ItemCapabilities.HasDisplayTitle) if notes.count('') != len(notes): service_item.add_capability(ItemCapabilities.HasNotes) service_item.add_capability(ItemCapabilities.HasThumbnails) while img: # Use title and note if available title = '' if titles and len(titles) >= i: title = titles[i - 1] note = '' if notes and len(notes) >= i: note = notes[i - 1] service_item.add_from_command(path, name, img, title, note) i += 1 img = doc.get_thumbnail_path(i, True) doc.close_presentation() return True else: # File is no longer present if not remote: critical_error_message_box(translate('PresentationPlugin.MediaItem', 'Missing Presentation'), translate('PresentationPlugin.MediaItem', 'The presentation %s is incomplete, please reload.') % filename) return False else: # File is no longer present if not remote: critical_error_message_box(translate('PresentationPlugin.MediaItem', 'Missing Presentation'), translate('PresentationPlugin.MediaItem', 'The presentation %s no longer exists.') % filename) return False def find_controller_by_type(self, filename): """ Determine the default application controller to use for the selected file type. This is used if "Automatic" is set as the preferred controller. Find the first (alphabetic) enabled controller which "supports" the extension. If none found, then look for a controller which "also supports" it instead. :param filename: The file name """ file_type = os.path.splitext(filename)[1][1:] if not file_type: return None for controller in self.controllers: if self.controllers[controller].enabled(): if file_type in self.controllers[controller].supports: return controller for controller in self.controllers: if self.controllers[controller].enabled(): if file_type in self.controllers[controller].also_supports: return controller return None def search(self, string, show_error): """ Search in files :param string: name to be found :param show_error: not used :return: """ files = Settings().value(self.settings_section + '/presentations files') results = [] string = string.lower() for file in files: filename = os.path.split(str(file))[1] if filename.lower().find(string) > -1: results.append([file, filename]) return results OpenLP-2.4/openlp/plugins/__init__.py0000644000175000017500000000312412657640340016640 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`plugins` module provides all the project produced plugins """ OpenLP-2.4/openlp/plugins/alerts/0000755000175000017500000000000012663134435016021 5ustar raoulraoulOpenLP-2.4/openlp/plugins/alerts/__init__.py0000644000175000017500000000320612657640340020133 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`alerts` module provides the Alerts plugin for producing impromptu on-screen announcements during a service. """ OpenLP-2.4/openlp/plugins/alerts/lib/0000755000175000017500000000000012663134435016567 5ustar raoulraoulOpenLP-2.4/openlp/plugins/alerts/lib/db.py0000644000175000017500000000445412657640340017535 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`db` module provides the database and schema that is the backend for the Alerts plugin. """ from sqlalchemy import Column, Table, types from sqlalchemy.orm import mapper from openlp.core.lib.db import BaseModel, init_db class AlertItem(BaseModel): """ AlertItem model """ pass def init_schema(url): """ Setup the alerts database connection and initialise the database schema :param url: The database to setup """ session, metadata = init_db(url) alerts_table = Table('alerts', metadata, Column('id', types.Integer(), primary_key=True), Column('text', types.UnicodeText, nullable=False)) mapper(AlertItem, alerts_table) metadata.create_all(checkfirst=True) return session OpenLP-2.4/openlp/plugins/alerts/lib/__init__.py0000644000175000017500000000312312657640340020677 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from .alertsmanager import AlertsManager from .alertstab import AlertsTab OpenLP-2.4/openlp/plugins/alerts/lib/alertstab.py0000644000175000017500000002337512657640340021134 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from PyQt5 import QtGui, QtWidgets from openlp.core.common import Settings, UiStrings, translate from openlp.core.lib import ColorButton, SettingsTab from openlp.core.lib.ui import create_valign_selection_widgets class AlertsTab(SettingsTab): """ AlertsTab is the alerts settings tab in the settings dialog. """ def __init__(self, parent, name, visible_title, icon_path): super(AlertsTab, self).__init__(parent, name, visible_title, icon_path) def setupUi(self): self.setObjectName('AlertsTab') super(AlertsTab, self).setupUi() self.font_group_box = QtWidgets.QGroupBox(self.left_column) self.font_group_box.setObjectName('font_group_box') self.font_layout = QtWidgets.QFormLayout(self.font_group_box) self.font_layout.setObjectName('font_layout') self.font_label = QtWidgets.QLabel(self.font_group_box) self.font_label.setObjectName('font_label') self.font_combo_box = QtWidgets.QFontComboBox(self.font_group_box) self.font_combo_box.setObjectName('font_combo_box') self.font_layout.addRow(self.font_label, self.font_combo_box) self.font_color_label = QtWidgets.QLabel(self.font_group_box) self.font_color_label.setObjectName('font_color_label') self.color_layout = QtWidgets.QHBoxLayout() self.color_layout.setObjectName('color_layout') self.font_color_button = ColorButton(self.font_group_box) self.font_color_button.setObjectName('font_color_button') self.color_layout.addWidget(self.font_color_button) self.color_layout.addSpacing(20) self.background_color_label = QtWidgets.QLabel(self.font_group_box) self.background_color_label.setObjectName('background_color_label') self.color_layout.addWidget(self.background_color_label) self.background_color_button = ColorButton(self.font_group_box) self.background_color_button.setObjectName('background_color_button') self.color_layout.addWidget(self.background_color_button) self.font_layout.addRow(self.font_color_label, self.color_layout) self.font_size_label = QtWidgets.QLabel(self.font_group_box) self.font_size_label.setObjectName('font_size_label') self.font_size_spin_box = QtWidgets.QSpinBox(self.font_group_box) self.font_size_spin_box.setObjectName('font_size_spin_box') self.font_layout.addRow(self.font_size_label, self.font_size_spin_box) self.timeout_label = QtWidgets.QLabel(self.font_group_box) self.timeout_label.setObjectName('timeout_label') self.timeout_spin_box = QtWidgets.QSpinBox(self.font_group_box) self.timeout_spin_box.setMaximum(180) self.timeout_spin_box.setObjectName('timeout_spin_box') self.font_layout.addRow(self.timeout_label, self.timeout_spin_box) self.vertical_label, self.vertical_combo_box = create_valign_selection_widgets(self.font_group_box) self.vertical_label.setObjectName('vertical_label') self.vertical_combo_box.setObjectName('vertical_combo_box') self.font_layout.addRow(self.vertical_label, self.vertical_combo_box) self.left_layout.addWidget(self.font_group_box) self.left_layout.addStretch() self.preview_group_box = QtWidgets.QGroupBox(self.right_column) self.preview_group_box.setObjectName('preview_group_box') self.preview_layout = QtWidgets.QVBoxLayout(self.preview_group_box) self.preview_layout.setObjectName('preview_layout') self.font_preview = QtWidgets.QLineEdit(self.preview_group_box) self.font_preview.setObjectName('font_preview') self.preview_layout.addWidget(self.font_preview) self.right_layout.addWidget(self.preview_group_box) self.right_layout.addStretch() # Signals and slots self.background_color_button.colorChanged.connect(self.on_background_color_changed) self.font_color_button.colorChanged.connect(self.on_font_color_changed) self.font_combo_box.activated.connect(self.on_font_combo_box_clicked) self.timeout_spin_box.valueChanged.connect(self.on_timeout_spin_box_changed) self.font_size_spin_box.valueChanged.connect(self.on_font_size_spin_box_changed) def retranslateUi(self): self.font_group_box.setTitle(translate('AlertsPlugin.AlertsTab', 'Font')) self.font_label.setText(translate('AlertsPlugin.AlertsTab', 'Font name:')) self.font_color_label.setText(translate('AlertsPlugin.AlertsTab', 'Font color:')) self.background_color_label.setText(translate('AlertsPlugin.AlertsTab', 'Background color:')) self.font_size_label.setText(translate('AlertsPlugin.AlertsTab', 'Font size:')) self.font_size_spin_box.setSuffix(UiStrings().FontSizePtUnit) self.timeout_label.setText(translate('AlertsPlugin.AlertsTab', 'Alert timeout:')) self.timeout_spin_box.setSuffix(UiStrings().Seconds) self.preview_group_box.setTitle(UiStrings().Preview) self.font_preview.setText(UiStrings().OLPV2x) def on_background_color_changed(self, color): """ The background color has been changed. """ self.background_color = color self.update_display() def on_font_combo_box_clicked(self): """ The Font Combo was changed. """ self.update_display() def on_font_color_changed(self, color): """ The Font Color button has clicked. """ self.font_color = color self.update_display() def on_timeout_spin_box_changed(self): """ The Time out spin box has changed. """ self.timeout = self.timeout_spin_box.value() self.changed = True def on_font_size_spin_box_changed(self): """ The font size spin box has changed. """ self.font_size = self.font_size_spin_box.value() self.update_display() def load(self): """ Load the settings into the UI. """ settings = Settings() settings.beginGroup(self.settings_section) self.timeout = settings.value('timeout') self.font_color = settings.value('font color') self.font_size = settings.value('font size') self.background_color = settings.value('background color') self.font_face = settings.value('font face') self.location = settings.value('location') settings.endGroup() self.font_size_spin_box.setValue(self.font_size) self.timeout_spin_box.setValue(self.timeout) self.font_color_button.color = self.font_color self.background_color_button.color = self.background_color self.vertical_combo_box.setCurrentIndex(self.location) font = QtGui.QFont() font.setFamily(self.font_face) self.font_combo_box.setCurrentFont(font) self.update_display() self.changed = False def save(self): """ Save the changes on exit of the Settings dialog. """ settings = Settings() settings.beginGroup(self.settings_section) # Check value has changed as no event handles this field if settings.value('location') != self.vertical_combo_box.currentIndex(): self.changed = True settings.setValue('background color', self.background_color) settings.setValue('font color', self.font_color) settings.setValue('font size', self.font_size) self.font_face = self.font_combo_box.currentFont().family() settings.setValue('font face', self.font_face) settings.setValue('timeout', self.timeout) self.location = self.vertical_combo_box.currentIndex() settings.setValue('location', self.location) settings.endGroup() if self.changed: self.settings_form.register_post_process('update_display_css') self.changed = False def update_display(self): """ Update the preview display after changes have been made, """ font = QtGui.QFont() font.setFamily(self.font_combo_box.currentFont().family()) font.setBold(True) font.setPointSize(self.font_size) self.font_preview.setFont(font) self.font_preview.setStyleSheet('background-color: %s; color: %s' % (self.background_color, self.font_color)) self.changed = True OpenLP-2.4/openlp/plugins/alerts/lib/alertsmanager.py0000644000175000017500000001061612657640340021772 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ The :mod:`~openlp.plugins.alerts.lib.alertsmanager` module contains the part of the plugin which manages storing and displaying of alerts. """ from PyQt5 import QtCore from openlp.core.common import OpenLPMixin, RegistryMixin, Registry, RegistryProperties, Settings, translate class AlertsManager(OpenLPMixin, RegistryMixin, QtCore.QObject, RegistryProperties): """ AlertsManager manages the settings of Alerts. """ alerts_text = QtCore.pyqtSignal(list) def __init__(self, parent): super(AlertsManager, self).__init__(parent) self.timer_id = 0 self.alert_list = [] Registry().register_function('live_display_active', self.generate_alert) Registry().register_function('alerts_text', self.alert_text) self.alerts_text.connect(self.alert_text) def alert_text(self, message): """ Called via a alerts_text event. Message is single element array containing text. :param message: The message text to be displayed """ if message: text = message[0] # remove line breaks as these crash javascript code on display while '\n' in text: text = text.replace('\n', ' ') self.display_alert(text) def display_alert(self, text=''): """ Called from the Alert Tab to display an alert. :param text: The text to display """ self.log_debug('display alert called %s' % text) if text: self.alert_list.append(text) if self.timer_id != 0: self.main_window.show_status_message( translate('AlertsPlugin.AlertsManager', 'Alert message created and displayed.')) return self.main_window.show_status_message('') self.generate_alert() def generate_alert(self): """ Format and request the Alert and start the timer. """ if not self.alert_list or (self.live_controller.display.screens.display_count == 1 and not Settings().value('core/display on monitor')): return text = self.alert_list.pop(0) alert_tab = self.parent().settings_tab self.live_controller.display.alert(text, alert_tab.location) # Check to see if we have a timer running. if self.timer_id == 0: self.timer_id = self.startTimer(int(alert_tab.timeout) * 1000) def timerEvent(self, event): """ Time has finished so if our time then request the next Alert if there is one and reset the timer. :param event: the QT event that has been triggered. """ if event.timerId() == self.timer_id: alert_tab = self.parent().settings_tab self.live_controller.display.alert('', alert_tab.location) self.killTimer(self.timer_id) self.timer_id = 0 self.generate_alert() OpenLP-2.4/openlp/plugins/alerts/alertsplugin.py0000644000175000017500000002146712657640340021116 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### import logging from PyQt5 import QtGui from openlp.core.common import Settings, translate from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager from openlp.core.lib.ui import create_action, UiStrings from openlp.core.lib.theme import VerticalType from openlp.core.ui import AlertLocation from openlp.core.utils.actions import ActionList from openlp.plugins.alerts.lib import AlertsManager, AlertsTab from openlp.plugins.alerts.lib.db import init_schema from openlp.plugins.alerts.forms import AlertForm log = logging.getLogger(__name__) JAVASCRIPT = """ function show_alert(alerttext, position){ var text = document.getElementById('alert'); text.innerHTML = alerttext; if(alerttext == '') { text.style.visibility = 'hidden'; return 0; } if(position == ''){ position = getComputedStyle(text, '').verticalAlign; } switch(position) { case 'top': text.style.top = '0px'; break; case 'middle': text.style.top = ((window.innerHeight - text.clientHeight) / 2) + 'px'; break; case 'bottom': text.style.top = (window.innerHeight - text.clientHeight) + 'px'; break; } text.style.visibility = 'visible'; return text.clientHeight; } function update_css(align, font, size, color, bgcolor){ var text = document.getElementById('alert'); text.style.fontSize = size + "pt"; text.style.fontFamily = font; text.style.color = color; text.style.backgroundColor = bgcolor; switch(align) { case 'top': text.style.top = '0px'; break; case 'middle': text.style.top = ((window.innerHeight - text.clientHeight) / 2) + 'px'; break; case 'bottom': text.style.top = (window.innerHeight - text.clientHeight) + 'px'; break; } } """ CSS = """ #alert { position: absolute; left: 0px; top: 0px; z-index: 10; width: 100%%; vertical-align: %s; font-family: %s; font-size: %spt; color: %s; background-color: %s; word-wrap: break-word; } """ HTML = """ """ __default_settings__ = { 'alerts/font face': QtGui.QFont().family(), 'alerts/font size': 40, 'alerts/db type': 'sqlite', 'alerts/db username': '', 'alerts/db password': '', 'alerts/db hostname': '', 'alerts/db database': '', 'alerts/location': AlertLocation.Bottom, 'alerts/background color': '#660000', 'alerts/font color': '#ffffff', 'alerts/timeout': 5 } class AlertsPlugin(Plugin): """ The Alerts Plugin Class """ log.info('Alerts Plugin loaded') def __init__(self): """ Class __init__ method """ super(AlertsPlugin, self).__init__('alerts', __default_settings__, settings_tab_class=AlertsTab) self.weight = -3 self.icon_path = ':/plugins/plugin_alerts.png' self.icon = build_icon(self.icon_path) AlertsManager(self) self.manager = Manager('alerts', init_schema) self.alert_form = AlertForm(self) def add_tools_menu_item(self, tools_menu): """ Give the alerts plugin the opportunity to add items to the **Tools** menu. :param tools_menu: The actual **Tools** menu item, so that your actions can use it as their parent. """ log.info('add tools menu') self.tools_alert_item = create_action(tools_menu, 'toolsAlertItem', text=translate('AlertsPlugin', '&Alert'), icon=':/plugins/plugin_alerts.png', statustip=translate('AlertsPlugin', 'Show an alert message.'), visible=False, can_shortcuts=True, triggers=self.on_alerts_trigger) self.main_window.tools_menu.addAction(self.tools_alert_item) def initialise(self): """ Initialise plugin """ log.info('Alerts Initialising') super(AlertsPlugin, self).initialise() self.tools_alert_item.setVisible(True) action_list = ActionList.get_instance() action_list.add_action(self.tools_alert_item, UiStrings().Tools) def finalise(self): """ Tidy up on exit """ log.info('Alerts Finalising') self.manager.finalise() super(AlertsPlugin, self).finalise() self.tools_alert_item.setVisible(False) action_list = ActionList.get_instance() action_list.remove_action(self.tools_alert_item, 'Tools') def toggle_alerts_state(self): """ Switch the alerts state """ self.alerts_active = not self.alerts_active Settings().setValue(self.settings_section + '/active', self.alerts_active) def on_alerts_trigger(self): """ Start of the Alerts dialog triggered from the main menu. """ self.alert_form.load_list() self.alert_form.exec() @staticmethod def about(): """ Plugin Alerts about method :return: text """ about_text = translate('AlertsPlugin', 'Alerts Plugin' '
The alert plugin controls the displaying of alerts on the display screen.') return about_text def set_plugin_text_strings(self): """ Called to define all translatable texts of the plugin """ # Name PluginList self.text_strings[StringContent.Name] = { 'singular': translate('AlertsPlugin', 'Alert', 'name singular'), 'plural': translate('AlertsPlugin', 'Alerts', 'name plural') } # Name for MediaDockManager, SettingsManager self.text_strings[StringContent.VisibleName] = { 'title': translate('AlertsPlugin', 'Alerts', 'container title') } @staticmethod def get_display_javascript(): """ Add Javascript to the main display. """ return JAVASCRIPT def get_display_css(self): """ Add CSS to the main display. """ align = VerticalType.Names[self.settings_tab.location] return CSS % (align, self.settings_tab.font_face, self.settings_tab.font_size, self.settings_tab.font_color, self.settings_tab.background_color) @staticmethod def get_display_html(): """ Add HTML to the main display. """ return HTML def refresh_css(self, frame): """ Trigger an update of the CSS in the main display. :param frame: The Web frame holding the page. """ align = VerticalType.Names[self.settings_tab.location] frame.evaluateJavaScript('update_css("%s", "%s", "%s", "%s", "%s")' % (align, self.settings_tab.font_face, self.settings_tab.font_size, self.settings_tab.font_color, self.settings_tab.background_color)) OpenLP-2.4/openlp/plugins/alerts/forms/0000755000175000017500000000000012663134435017147 5ustar raoulraoulOpenLP-2.4/openlp/plugins/alerts/forms/__init__.py0000644000175000017500000000532312657640340021263 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### """ Forms in OpenLP are made up of two classes. One class holds all the graphical elements, like buttons and lists, and the other class holds all the functional code, like slots and loading and saving. The first class, commonly known as the **Dialog** class, is typically named ``Ui_Dialog``. It is a slightly modified version of the class that the ``pyuic5`` command produces from Qt5's .ui file. Typical modifications will be converting most strings from "" to '' and using OpenLP's ``translate()`` function for translating strings. The second class, commonly known as the **Form** class, is typically named ``Form``. This class is the one which is instantiated and used. It uses dual inheritance to inherit from (usually) QtWidgets.QDialog and the Ui class mentioned above, like so:: class AuthorsForm(QtWidgets.QDialog, Ui_AuthorsDialog): def __init__(self, parent=None): super(AuthorsForm, self).__init__(parent) self.setupUi(self) This allows OpenLP to use ``self.object`` for all the GUI elements while keeping them separate from the functionality, so that it is easier to recreate the GUI from the .ui files later if necessary. """ from .alertform import AlertForm OpenLP-2.4/openlp/plugins/alerts/forms/alertform.py0000644000175000017500000002361712657640340021525 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from PyQt5 import QtCore, QtWidgets from openlp.core.common import Registry, translate from openlp.plugins.alerts.lib.db import AlertItem from .alertdialog import Ui_AlertDialog class AlertForm(QtWidgets.QDialog, Ui_AlertDialog): """ Provide UI for the alert system """ def __init__(self, plugin): """ Initialise the alert form """ super(AlertForm, self).__init__(Registry().get('main_window'), QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint) self.manager = plugin.manager self.plugin = plugin self.item_id = None self.setupUi(self) self.display_button.clicked.connect(self.on_display_clicked) self.display_close_button.clicked.connect(self.on_display_close_clicked) self.alert_text_edit.textChanged.connect(self.on_text_changed) self.new_button.clicked.connect(self.on_new_click) self.save_button.clicked.connect(self.on_save_all) self.alert_list_widget.doubleClicked.connect(self.on_double_click) self.alert_list_widget.clicked.connect(self.on_single_click) self.alert_list_widget.currentRowChanged.connect(self.on_current_row_changed) def exec(self): """ Execute the dialog and return the exit code. """ self.display_button.setEnabled(False) self.display_close_button.setEnabled(False) self.alert_text_edit.setText('') return QtWidgets.QDialog.exec(self) def load_list(self): """ Loads the list with alerts. """ self.alert_list_widget.clear() alerts = self.manager.get_all_objects(AlertItem, order_by_ref=AlertItem.text) for alert in alerts: item_name = QtWidgets.QListWidgetItem(alert.text) item_name.setData(QtCore.Qt.UserRole, alert.id) self.alert_list_widget.addItem(item_name) if alert.text == str(self.alert_text_edit.text()): self.item_id = alert.id self.alert_list_widget.setCurrentRow(self.alert_list_widget.row(item_name)) def on_display_clicked(self): """ Display the current alert text. """ self.trigger_alert(self.alert_text_edit.text()) def on_display_close_clicked(self): """ Close the alert preview. """ if self.trigger_alert(self.alert_text_edit.text()): self.close() def on_delete_button_clicked(self): """ Deletes the selected item. """ item = self.alert_list_widget.currentItem() if item: item_id = item.data(QtCore.Qt.UserRole) self.manager.delete_object(AlertItem, item_id) row = self.alert_list_widget.row(item) self.alert_list_widget.takeItem(row) self.item_id = None self.alert_text_edit.setText('') def on_new_click(self): """ Create a new alert. """ if not self.alert_text_edit.text(): QtWidgets.QMessageBox.information(self, translate('AlertsPlugin.AlertForm', 'New Alert'), translate('AlertsPlugin.AlertForm', 'You haven\'t specified any text for your alert. \n' 'Please type in some text before clicking New.')) else: alert = AlertItem() alert.text = self.alert_text_edit.text() self.manager.save_object(alert) self.load_list() def on_save_all(self): """ Save the alert, we are editing. """ if self.item_id: alert = self.manager.get_object(AlertItem, self.item_id) alert.text = self.alert_text_edit.text() self.manager.save_object(alert) self.item_id = None self.load_list() self.save_button.setEnabled(False) def on_text_changed(self): """ Enable save button when data has been changed by editing the form. """ # Only enable the button, if we are editing an item. if self.item_id: self.save_button.setEnabled(True) if self.alert_text_edit.text(): self.display_button.setEnabled(True) self.display_close_button.setEnabled(True) else: self.display_button.setEnabled(False) self.display_close_button.setEnabled(False) def on_double_click(self): """ List item has been double clicked to display it. """ item = self.alert_list_widget.selectedIndexes()[0] list_item = self.alert_list_widget.item(item.row()) self.trigger_alert(list_item.text()) self.alert_text_edit.setText(list_item.text()) self.item_id = list_item.data(QtCore.Qt.UserRole) self.save_button.setEnabled(False) def on_single_click(self): """ List item has been single clicked to add it to the edit field so it can be changed. """ item = self.alert_list_widget.selectedIndexes()[0] list_item = self.alert_list_widget.item(item.row()) self.alert_text_edit.setText(list_item.text()) self.item_id = list_item.data(QtCore.Qt.UserRole) # If the alert does not contain '<>' we clear the ParameterEdit field. if self.alert_text_edit.text().find('<>') == -1: self.parameter_edit.setText('') self.save_button.setEnabled(False) def trigger_alert(self, text): """ Prepares the alert text for displaying. :param text: The alert text. """ if not text: return False # We found '<>' in the alert text, but the ParameterEdit field is empty. if text.find('<>') != -1 and not self.parameter_edit.text() and \ QtWidgets.QMessageBox.question(self, translate('AlertsPlugin.AlertForm', 'No Parameter Found'), translate('AlertsPlugin.AlertForm', 'You have not entered a parameter to be replaced.\n' 'Do you want to continue anyway?'), QtWidgets.QMessageBox.StandardButtons( QtWidgets.QMessageBox.No | QtWidgets.QMessageBox.Yes) ) == QtWidgets.QMessageBox.No: self.parameter_edit.setFocus() return False # The ParameterEdit field is not empty, but we have not found '<>' # in the alert text. elif text.find('<>') == -1 and self.parameter_edit.text() and \ QtWidgets.QMessageBox.question(self, translate('AlertsPlugin.AlertForm', 'No Placeholder Found'), translate('AlertsPlugin.AlertForm', 'The alert text does not contain \'<>\'.\n' 'Do you want to continue anyway?'), QtWidgets.QMessageBox.StandardButtons( QtWidgets.QMessageBox.No | QtWidgets.QMessageBox.Yes) ) == QtWidgets.QMessageBox.No: self.parameter_edit.setFocus() return False text = text.replace('<>', self.parameter_edit.text()) self.plugin.alerts_manager.display_alert(text) return True def on_current_row_changed(self, row): """ Called when the *alert_list_widget*'s current row has been changed. This enables or disables buttons which require an item to act on. :param row: The row (int). If there is no current row, the value is -1. """ if row == -1: self.display_button.setEnabled(False) self.display_close_button.setEnabled(False) self.save_button.setEnabled(False) self.delete_button.setEnabled(False) else: self.display_button.setEnabled(True) self.display_close_button.setEnabled(True) self.delete_button.setEnabled(True) # We do not need to enable the save button, as it is only enabled # when typing text in the "alert_text_edit". OpenLP-2.4/openlp/plugins/alerts/forms/alertdialog.py0000644000175000017500000001345712657640340022022 0ustar raoulraoul# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # # Copyright (c) 2008-2016 OpenLP Developers # # --------------------------------------------------------------------------- # # 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; version 2 of the License. # # # # 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, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### from PyQt5 import QtWidgets from openlp.core.common import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box class Ui_AlertDialog(object): """ Alert UI Class """ def setupUi(self, alert_dialog): """ Setup the Alert UI dialog :param alert_dialog: The dialog """ alert_dialog.setObjectName('alert_dialog') alert_dialog.resize(400, 300) alert_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg')) self.alert_dialog_layout = QtWidgets.QGridLayout(alert_dialog) self.alert_dialog_layout.setObjectName('alert_dialog_layout') self.alert_text_layout = QtWidgets.QFormLayout() self.alert_text_layout.setObjectName('alert_text_layout') self.alert_entry_label = QtWidgets.QLabel(alert_dialog) self.alert_entry_label.setObjectName('alert_entry_label') self.alert_text_edit = QtWidgets.QLineEdit(alert_dialog) self.alert_text_edit.setObjectName('alert_text_edit') self.alert_entry_label.setBuddy(self.alert_text_edit) self.alert_text_layout.addRow(self.alert_entry_label, self.alert_text_edit) self.alert_parameter = QtWidgets.QLabel(alert_dialog) self.alert_parameter.setObjectName('alert_parameter') self.parameter_edit = QtWidgets.QLineEdit(alert_dialog) self.parameter_edit.setObjectName('parameter_edit') self.alert_parameter.setBuddy(self.parameter_edit) self.alert_text_layout.addRow(self.alert_parameter, self.parameter_edit) self.alert_dialog_layout.addLayout(self.alert_text_layout, 0, 0, 1, 2) self.alert_list_widget = QtWidgets.QListWidget(alert_dialog) self.alert_list_widget.setAlternatingRowColors(True) self.alert_list_widget.setObjectName('alert_list_widget') self.alert_dialog_layout.addWidget(self.alert_list_widget, 1, 0) self.manage_button_layout = QtWidgets.QVBoxLayout() self.manage_button_layout.setObjectName('manage_button_layout') self.new_button = QtWidgets.QPushButton(alert_dialog) self.new_button.setIcon(build_icon(':/general/general_new.png')) self.new_button.setObjectName('new_button') self.manage_button_layout.addWidget(self.new_button) self.save_button = QtWidgets.QPushButton(alert_dialog) self.save_button.setEnabled(False) self.save_button.setIcon(build_icon(':/general/general_save.png')) self.save_button.setObjectName('save_button') self.manage_button_layout.addWidget(self.save_button) self.delete_button = create_button(alert_dialog, 'delete_button', role='delete', enabled=False, click=alert_dialog.on_delete_button_clicked) self.manage_button_layout.addWidget(self.delete_button) self.manage_button_layout.addStretch() self.alert_dialog_layout.addLayout(self.manage_button_layout, 1, 1) display_icon = build_icon(':/general/general_live.png') self.display_button = create_button(alert_dialog, 'display_button', icon=display_icon, enabled=False) self.display_close_button = create_button(alert_dialog, 'display_close_button', icon=display_icon, enabled=False) self.button_box = create_button_box(alert_dialog, 'button_box', ['close'], [self.display_button, self.display_close_button]) self.alert_dialog_layout.addWidget(self.button_box, 2, 0, 1, 2) self.retranslateUi(alert_dialog) def retranslateUi(self, alert_dialog): """ Retranslate the UI strings :param alert_dialog: The dialog """ alert_dialog.setWindowTitle(translate('AlertsPlugin.AlertForm', 'Alert Message')) self.alert_entry_label.setText(translate('AlertsPlugin.AlertForm', 'Alert &text:')) self.alert_parameter.setText(translate('AlertsPlugin.AlertForm', '&Parameter:')) self.new_button.setText(translate('AlertsPlugin.AlertForm', '&New')) self.save_button.setText(translate('AlertsPlugin.AlertForm', '&Save')) self.display_button.setText(translate('AlertsPlugin.AlertForm', 'Displ&ay')) self.display_close_button.setText(translate('AlertsPlugin.AlertForm', 'Display && Cl&ose')) OpenLP-2.4/openlp/plugins/remotes/0000755000175000017500000000000012663134435016205 5ustar raoulraoulOpenLP-2.4/openlp/plugins/remotes/html/0000755000175000017500000000000012663134342017146 5ustar raoulraoulOpenLP-2.4/openlp/plugins/remotes/html/jquery.mobile.css0000644000175000017500000032760712123067712022461 0ustar raoulraoul/* * jQuery Mobile Framework Git Build: SHA1: 27e3c18acfebab2d47ee7ed37bd50fc4942c8838 <> Date: Fri Mar 22 08:50:04 2013 -0600 * http://jquerymobile.com * * Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors * Released under the MIT license. * http://jquery.org/license * */ /* Swatches */ /* A -----------------------------------------------------------------------------------------------------------*/ .ui-bar-a { border: 1px solid #333 /*{a-bar-border}*/; background: #111 /*{a-bar-background-color}*/; color: #fff /*{a-bar-color}*/; font-weight: bold; text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #000 /*{a-bar-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c /*{a-bar-background-start}*/), to( #111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); } .ui-bar-a, .ui-bar-a input, .ui-bar-a select, .ui-bar-a textarea, .ui-bar-a button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-bar-a .ui-link-inherit { color: #fff /*{a-bar-color}*/; } .ui-bar-a a.ui-link { color: #7cc4e7 /*{a-bar-link-color}*/; font-weight: bold; } .ui-bar-a a.ui-link:visited { color: #2489ce /*{a-bar-link-visited}*/; } .ui-bar-a a.ui-link:hover { color: #2489ce /*{a-bar-link-hover}*/; } .ui-bar-a a.ui-link:active { color: #2489ce /*{a-bar-link-active}*/; } .ui-body-a, .ui-overlay-a { border: 1px solid #444 /*{a-body-border}*/; background: #222 /*{a-body-background-color}*/; color: #fff /*{a-body-color}*/; text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 1px /*{a-body-shadow-radius}*/ #111 /*{a-body-shadow-color}*/; font-weight: normal; background-image: -webkit-gradient(linear, left top, left bottom, from( #444 /*{a-body-background-start}*/), to( #222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); } .ui-overlay-a { background-image: none; border-width: 0; } .ui-body-a, .ui-body-a input, .ui-body-a select, .ui-body-a textarea, .ui-body-a button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-a .ui-link-inherit { color: #fff /*{a-body-color}*/; } .ui-body-a .ui-link { color: #2489ce /*{a-body-link-color}*/; font-weight: bold; } .ui-body-a .ui-link:visited { color: #2489ce /*{a-body-link-visited}*/; } .ui-body-a .ui-link:hover { color: #2489ce /*{a-body-link-hover}*/; } .ui-body-a .ui-link:active { color: #2489ce /*{a-body-link-active}*/; } .ui-btn-up-a { border: 1px solid #111 /*{a-bup-border}*/; background: #333 /*{a-bup-background-color}*/; font-weight: bold; color: #fff /*{a-bup-color}*/; text-shadow: 0 /*{a-bup-shadow-x}*/ 1px /*{a-bup-shadow-y}*/ 1px /*{a-bup-shadow-radius}*/ #111 /*{a-bup-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #444 /*{a-bup-background-start}*/), to( #2d2d2d /*{a-bup-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); } .ui-btn-up-a:visited, .ui-btn-up-a a.ui-link-inherit { color: #fff /*{a-bup-color}*/; } .ui-btn-hover-a { border: 1px solid #000 /*{a-bhover-border}*/; background: #444 /*{a-bhover-background-color}*/; font-weight: bold; color: #fff /*{a-bhover-color}*/; text-shadow: 0 /*{a-bhover-shadow-x}*/ 1px /*{a-bhover-shadow-y}*/ 1px /*{a-bhover-shadow-radius}*/ #111 /*{a-bhover-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #555 /*{a-bhover-background-start}*/), to( #383838 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); } .ui-btn-hover-a:visited, .ui-btn-hover-a:hover, .ui-btn-hover-a a.ui-link-inherit { color: #fff /*{a-bhover-color}*/; } .ui-btn-down-a { border: 1px solid #000 /*{a-bdown-border}*/; background: #222 /*{a-bdown-background-color}*/; font-weight: bold; color: #fff /*{a-bdown-color}*/; text-shadow: 0 /*{a-bdown-shadow-x}*/ 1px /*{a-bdown-shadow-y}*/ 1px /*{a-bdown-shadow-radius}*/ #111 /*{a-bdown-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #202020 /*{a-bdown-background-start}*/), to( #2c2c2c /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); } .ui-btn-down-a:visited, .ui-btn-down-a:hover, .ui-btn-down-a a.ui-link-inherit { color: #fff /*{a-bdown-color}*/; } .ui-btn-up-a, .ui-btn-hover-a, .ui-btn-down-a { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; text-decoration: none; } /* B -----------------------------------------------------------------------------------------------------------*/ .ui-bar-b { border: 1px solid #456f9a /*{b-bar-border}*/; background: #5e87b0 /*{b-bar-background-color}*/; color: #fff /*{b-bar-color}*/; font-weight: bold; text-shadow: 0 /*{b-bar-shadow-x}*/ 1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #3e6790 /*{b-bar-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #6facd5 /*{b-bar-background-start}*/), to( #497bae /*{b-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); } .ui-bar-b, .ui-bar-b input, .ui-bar-b select, .ui-bar-b textarea, .ui-bar-b button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-bar-b .ui-link-inherit { color: #fff /*{b-bar-color}*/; } .ui-bar-b a.ui-link { color: #ddf0f8 /*{b-bar-link-color}*/; font-weight: bold; } .ui-bar-b a.ui-link:visited { color: #ddf0f8 /*{b-bar-link-visited}*/; } .ui-bar-b a.ui-link:hover { color: #ddf0f8 /*{b-bar-link-hover}*/; } .ui-bar-b a.ui-link:active { color: #ddf0f8 /*{b-bar-link-active}*/; } .ui-body-b, .ui-overlay-b { border: 1px solid #999 /*{b-body-border}*/; background: #f3f3f3 /*{b-body-background-color}*/; color: #222 /*{b-body-color}*/; text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #fff /*{b-body-shadow-color}*/; font-weight: normal; background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{b-body-background-start}*/), to( #ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); } .ui-overlay-b { background-image: none; border-width: 0; } .ui-body-b, .ui-body-b input, .ui-body-b select, .ui-body-b textarea, .ui-body-b button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-b .ui-link-inherit { color: #333 /*{b-body-color}*/; } .ui-body-b .ui-link { color: #2489ce /*{b-body-link-color}*/; font-weight: bold; } .ui-body-b .ui-link:visited { color: #2489ce /*{b-body-link-visited}*/; } .ui-body-b .ui-link:hover { color: #2489ce /*{b-body-link-hover}*/; } .ui-body-b .ui-link:active { color: #2489ce /*{b-body-link-active}*/; } .ui-btn-up-b { border: 1px solid #044062 /*{b-bup-border}*/; background: #396b9e /*{b-bup-background-color}*/; font-weight: bold; color: #fff /*{b-bup-color}*/; text-shadow: 0 /*{b-bup-shadow-x}*/ 1px /*{b-bup-shadow-y}*/ 1px /*{b-bup-shadow-radius}*/ #194b7e /*{b-bup-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 /*{b-bup-background-start}*/), to( #396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); } .ui-btn-up-b:visited, .ui-btn-up-b a.ui-link-inherit { color: #fff /*{b-bup-color}*/; } .ui-btn-hover-b { border: 1px solid #00415e /*{b-bhover-border}*/; background: #4b88b6 /*{b-bhover-background-color}*/; font-weight: bold; color: #fff /*{b-bhover-color}*/; text-shadow: 0 /*{b-bhover-shadow-x}*/ 1px /*{b-bhover-shadow-y}*/ 1px /*{b-bhover-shadow-radius}*/ #194b7e /*{b-bhover-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #6facd5 /*{b-bhover-background-start}*/), to( #4272a4 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); } .ui-btn-hover-b:visited, .ui-btn-hover-b:hover, .ui-btn-hover-b a.ui-link-inherit { color: #fff /*{b-bhover-color}*/; } .ui-btn-down-b { border: 1px solid #225377 /*{b-bdown-border}*/; background: #4e89c5 /*{b-bdown-background-color}*/; font-weight: bold; color: #fff /*{b-bdown-color}*/; text-shadow: 0 /*{b-bdown-shadow-x}*/ 1px /*{b-bdown-shadow-y}*/ 1px /*{b-bdown-shadow-radius}*/ #194b7e /*{b-bdown-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #295b8e /*{b-bdown-background-start}*/), to( #3e79b5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); } .ui-btn-down-b:visited, .ui-btn-down-b:hover, .ui-btn-down-b a.ui-link-inherit { color: #fff /*{b-bdown-color}*/; } .ui-btn-up-b, .ui-btn-hover-b, .ui-btn-down-b { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; text-decoration: none; } /* C -----------------------------------------------------------------------------------------------------------*/ .ui-bar-c { border: 1px solid #b3b3b3 /*{c-bar-border}*/; background: #eee /*{c-bar-background-color}*/; color: #3e3e3e /*{c-bar-color}*/; font-weight: bold; text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #fff /*{c-bar-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #ddd /*{c-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); } .ui-bar-c .ui-link-inherit { color: #3e3e3e /*{c-bar-color}*/; } .ui-bar-c a.ui-link { color: #7cc4e7 /*{c-bar-link-color}*/; font-weight: bold; } .ui-bar-c a.ui-link:visited { color: #2489ce /*{c-bar-link-visited}*/; } .ui-bar-c a.ui-link:hover { color: #2489ce /*{c-bar-link-hover}*/; } .ui-bar-c a.ui-link:active { color: #2489ce /*{c-bar-link-active}*/; } .ui-bar-c, .ui-bar-c input, .ui-bar-c select, .ui-bar-c textarea, .ui-bar-c button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-c, .ui-overlay-c { border: 1px solid #aaa /*{c-body-border}*/; color: #333 /*{c-body-color}*/; text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #fff /*{c-body-shadow-color}*/; background: #f9f9f9 /*{c-body-background-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{c-body-background-start}*/), to( #eee /*{c-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); } .ui-overlay-c { background-image: none; border-width: 0; } .ui-body-c, .ui-body-c input, .ui-body-c select, .ui-body-c textarea, .ui-body-c button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-c .ui-link-inherit { color: #333 /*{c-body-color}*/; } .ui-body-c .ui-link { color: #2489ce /*{c-body-link-color}*/; font-weight: bold; } .ui-body-c .ui-link:visited { color: #2489ce /*{c-body-link-visited}*/; } .ui-body-c .ui-link:hover { color: #2489ce /*{c-body-link-hover}*/; } .ui-body-c .ui-link:active { color: #2489ce /*{c-body-link-active}*/; } .ui-btn-up-c { border: 1px solid #ccc /*{c-bup-border}*/; background: #eee /*{c-bup-background-color}*/; font-weight: bold; color: #222 /*{c-bup-color}*/; text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #fff /*{c-bup-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{c-bup-background-start}*/), to( #f1f1f1 /*{c-bup-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); } .ui-btn-up-c:visited, .ui-btn-up-c a.ui-link-inherit { color: #2f3e46 /*{c-bup-color}*/; } .ui-btn-hover-c { border: 1px solid #bbb /*{c-bhover-border}*/; background: #dfdfdf /*{c-bhover-background-color}*/; font-weight: bold; color: #222 /*{c-bhover-color}*/; text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #fff /*{c-bhover-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{c-bhover-background-start}*/), to( #e0e0e0 /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); } .ui-btn-hover-c:visited, .ui-btn-hover-c:hover, .ui-btn-hover-c a.ui-link-inherit { color: #2f3e46 /*{c-bhover-color}*/; } .ui-btn-down-c { border: 1px solid #bbb /*{c-bdown-border}*/; background: #d6d6d6 /*{c-bdown-background-color}*/; font-weight: bold; color: #222 /*{c-bdown-color}*/; text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 0 /*{c-bdown-shadow-radius}*/ #fff /*{c-bdown-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{c-bdown-background-start}*/), to( #dfdfdf /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); } .ui-btn-down-c:visited, .ui-btn-down-c:hover, .ui-btn-down-c a.ui-link-inherit { color: #2f3e46 /*{c-bdown-color}*/; } .ui-btn-up-c, .ui-btn-hover-c, .ui-btn-down-c { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; text-decoration: none; } /* D -----------------------------------------------------------------------------------------------------------*/ .ui-bar-d { border: 1px solid #bbb /*{d-bar-border}*/; background: #bbb /*{d-bar-background-color}*/; color: #333 /*{d-bar-color}*/; font-weight: bold; text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 0 /*{d-bar-shadow-radius}*/ #eee /*{d-bar-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{d-bar-background-start}*/), to( #bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); } .ui-bar-d, .ui-bar-d input, .ui-bar-d select, .ui-bar-d textarea, .ui-bar-d button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-bar-d .ui-link-inherit { color: #333 /*{d-bar-color}*/; } .ui-bar-d a.ui-link { color: #2489ce /*{d-bar-link-color}*/; font-weight: bold; } .ui-bar-d a.ui-link:visited { color: #2489ce /*{d-bar-link-visited}*/; } .ui-bar-d a.ui-link:hover { color: #2489ce /*{d-bar-link-hover}*/; } .ui-bar-d a.ui-link:active { color: #2489ce /*{d-bar-link-active}*/; } .ui-body-d, .ui-overlay-d { border: 1px solid #bbb /*{d-body-border}*/; color: #333 /*{d-body-color}*/; text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #fff /*{d-body-shadow-color}*/; background: #fff /*{d-body-background-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{d-body-background-start}*/), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); } .ui-overlay-d { background-image: none; border-width: 0; } .ui-body-d, .ui-body-d input, .ui-body-d select, .ui-body-d textarea, .ui-body-d button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-d .ui-link-inherit { color: #333 /*{d-body-color}*/; } .ui-body-d .ui-link { color: #2489ce /*{d-body-link-color}*/; font-weight: bold; } .ui-body-d .ui-link:visited { color: #2489ce /*{d-body-link-visited}*/; } .ui-body-d .ui-link:hover { color: #2489ce /*{d-body-link-hover}*/; } .ui-body-d .ui-link:active { color: #2489ce /*{d-body-link-active}*/; } .ui-btn-up-d { border: 1px solid #bbb /*{d-bup-border}*/; background: #fff /*{d-bup-background-color}*/; font-weight: bold; color: #333 /*{d-bup-color}*/; text-shadow: 0 /*{d-bup-shadow-x}*/ 1px /*{d-bup-shadow-y}*/ 0 /*{d-bup-shadow-radius}*/ #fff /*{d-bup-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fafafa /*{d-bup-background-start}*/), to( #f6f6f6 /*{d-bup-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); } .ui-btn-up-d:visited, .ui-btn-up-d a.ui-link-inherit { color: #333 /*{d-bup-color}*/; } .ui-btn-hover-d { border: 1px solid #aaa /*{d-bhover-border}*/; background: #eee /*{d-bhover-background-color}*/; font-weight: bold; color: #333 /*{d-bhover-color}*/; cursor: pointer; text-shadow: 0 /*{d-bhover-shadow-x}*/ 1px /*{d-bhover-shadow-y}*/ 0 /*{d-bhover-shadow-radius}*/ #fff /*{d-bhover-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{d-bhover-background-start}*/), to( #fff /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); } .ui-btn-hover-d:visited, .ui-btn-hover-d:hover, .ui-btn-hover-d a.ui-link-inherit { color: #333 /*{d-bhover-color}*/; } .ui-btn-down-d { border: 1px solid #aaa /*{d-bdown-border}*/; background: #eee /*{d-bdown-background-color}*/; font-weight: bold; color: #333 /*{d-bdown-color}*/; text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 0 /*{d-bdown-shadow-radius}*/ #fff /*{d-bdown-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5 /*{d-bdown-background-start}*/), to( #f2f2f2 /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); } .ui-btn-down-d:visited, .ui-btn-down-d:hover, .ui-btn-down-d a.ui-link-inherit { color: #333 /*{d-bdown-color}*/; } .ui-btn-up-d, .ui-btn-hover-d, .ui-btn-down-d { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; text-decoration: none; } /* E -----------------------------------------------------------------------------------------------------------*/ .ui-bar-e { border: 1px solid #f7c942 /*{e-bar-border}*/; background: #fadb4e /*{e-bar-background-color}*/; color: #333 /*{e-bar-color}*/; font-weight: bold; text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 0 /*{e-bar-shadow-radius}*/ #fff /*{e-bar-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bar-background-start}*/), to( #fbef7e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); } .ui-bar-e, .ui-bar-e input, .ui-bar-e select, .ui-bar-e textarea, .ui-bar-e button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-bar-e .ui-link-inherit { color: #333 /*{e-bar-color}*/; } .ui-bar-e a.ui-link { color: #2489ce /*{e-bar-link-color}*/; font-weight: bold; } .ui-bar-e a.ui-link:visited { color: #2489ce /*{e-bar-link-visited}*/; } .ui-bar-e a.ui-link:hover { color: #2489ce /*{e-bar-link-hover}*/; } .ui-bar-e a.ui-link:active { color: #2489ce /*{e-bar-link-active}*/; } .ui-body-e, .ui-overlay-e { border: 1px solid #f7c942 /*{e-body-border}*/; color: #222 /*{e-body-color}*/; text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #fff /*{e-body-shadow-color}*/; background: #fff9df /*{e-body-background-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fffadf /*{e-body-background-start}*/), to( #fff3a5 /*{e-body-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); } .ui-overlay-e { background-image: none; border-width: 0; } .ui-body-e, .ui-body-e input, .ui-body-e select, .ui-body-e textarea, .ui-body-e button { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-body-e .ui-link-inherit { color: #222 /*{e-body-color}*/; } .ui-body-e .ui-link { color: #2489ce /*{e-body-link-color}*/; font-weight: bold; } .ui-body-e .ui-link:visited { color: #2489ce /*{e-body-link-visited}*/; } .ui-body-e .ui-link:hover { color: #2489ce /*{e-body-link-hover}*/; } .ui-body-e .ui-link:active { color: #2489ce /*{e-body-link-active}*/; } .ui-btn-up-e { border: 1px solid #f4c63f /*{e-bup-border}*/; background: #fadb4e /*{e-bup-background-color}*/; font-weight: bold; color: #222 /*{e-bup-color}*/; text-shadow: 0 /*{e-bup-shadow-x}*/ 1px /*{e-bup-shadow-y}*/ 0 /*{e-bup-shadow-radius}*/ #fff /*{e-bup-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #ffefaa /*{e-bup-background-start}*/), to( #ffe155 /*{e-bup-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); } .ui-btn-up-e:visited, .ui-btn-up-e a.ui-link-inherit { color: #222 /*{e-bup-color}*/; } .ui-btn-hover-e { border: 1px solid #f2c43d /*{e-bhover-border}*/; background: #fbe26f /*{e-bhover-background-color}*/; font-weight: bold; color: #111 /*{e-bhover-color}*/; text-shadow: 0 /*{e-bhover-shadow-x}*/ 1px /*{e-bhover-shadow-y}*/ 0 /*{e-bhover-shadow-radius}*/ #fff /*{e-bhover-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #fff5ba /*{e-bhover-background-start}*/), to( #fbdd52 /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); } .ui-btn-hover-e:visited, .ui-btn-hover-e:hover, .ui-btn-hover-e a.ui-link-inherit { color: #333 /*{e-bhover-color}*/; } .ui-btn-down-e { border: 1px solid #f2c43d /*{e-bdown-border}*/; background: #fceda7 /*{e-bdown-background-color}*/; font-weight: bold; color: #111 /*{e-bdown-color}*/; text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 0 /*{e-bdown-shadow-radius}*/ #fff /*{e-bdown-shadow-color}*/; background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c /*{e-bdown-background-start}*/), to( #fadb4e /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); } .ui-btn-down-e:visited, .ui-btn-down-e:hover, .ui-btn-down-e a.ui-link-inherit { color: #333 /*{e-bdown-color}*/; } .ui-btn-up-e, .ui-btn-hover-e, .ui-btn-down-e { font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; text-decoration: none; } /* Structure */ /* links within "buttons" -----------------------------------------------------------------------------------------------------------*/ a.ui-link-inherit { text-decoration: none !important; } /* Active class used as the "on" state across all themes -----------------------------------------------------------------------------------------------------------*/ .ui-btn-active { border: 1px solid #2373a5 /*{global-active-border}*/; background: #5393c5 /*{global-active-background-color}*/; font-weight: bold; color: #fff /*{global-active-color}*/; cursor: pointer; text-shadow: 0 /*{global-active-shadow-x}*/ 1px /*{global-active-shadow-y}*/ 1px /*{global-active-shadow-radius}*/ #3373a5 /*{global-active-shadow-color}*/; text-decoration: none; background-image: -webkit-gradient(linear, left top, left bottom, from( #5393c5 /*{global-active-background-start}*/), to( #6facd5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* FF3.6 */ background-image: -ms-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* IE10 */ background-image: -o-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* Opera 11.10+ */ background-image: linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; } .ui-btn-active:visited, .ui-btn-active:hover, .ui-btn-active a.ui-link-inherit { color: #fff /*{global-active-color}*/; } /* button inner top highlight -----------------------------------------------------------------------------------------------------------*/ .ui-btn-inner { border-top: 1px solid #fff; border-color: rgba(255,255,255,.3); } /* corner rounding classes -----------------------------------------------------------------------------------------------------------*/ .ui-corner-tl { -moz-border-radius-topleft: .6em /*{global-radii-blocks}*/; -webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/; border-top-left-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-tr { -moz-border-radius-topright: .6em /*{global-radii-blocks}*/; -webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/; border-top-right-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-bl { -moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/; border-bottom-left-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-br { -moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/; border-bottom-right-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-top { -moz-border-radius-topleft: .6em /*{global-radii-blocks}*/; -webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/; border-top-left-radius: .6em /*{global-radii-blocks}*/; -moz-border-radius-topright: .6em /*{global-radii-blocks}*/; -webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/; border-top-right-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-bottom { -moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/; border-bottom-left-radius: .6em /*{global-radii-blocks}*/; -moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/; border-bottom-right-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-right { -moz-border-radius-topright: .6em /*{global-radii-blocks}*/; -webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/; border-top-right-radius: .6em /*{global-radii-blocks}*/; -moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/; border-bottom-right-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-left { -moz-border-radius-topleft: .6em /*{global-radii-blocks}*/; -webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/; border-top-left-radius: .6em /*{global-radii-blocks}*/; -moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/; -webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/; border-bottom-left-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-all { -moz-border-radius: .6em /*{global-radii-blocks}*/; -webkit-border-radius: .6em /*{global-radii-blocks}*/; border-radius: .6em /*{global-radii-blocks}*/; } .ui-corner-none { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } /* Form field separator -----------------------------------------------------------------------------------------------------------*/ .ui-br { border-bottom: rgb(130,130,130); border-bottom: rgba(130,130,130,.3); border-bottom-width: 1px; border-bottom-style: solid; } /* Interaction cues -----------------------------------------------------------------------------------------------------------*/ .ui-disabled { filter: Alpha(Opacity=30); opacity: .3; zoom: 1; } .ui-disabled, .ui-disabled a { cursor: default !important; pointer-events: none; } /* Icons -----------------------------------------------------------------------------------------------------------*/ .ui-icon, .ui-icon-searchfield:after { background: #666 /*{global-icon-color}*/; background: rgba(0,0,0,.4) /*{global-icon-disc}*/; background-image: url(images/icons-18-white.png) /*{global-icon-set}*/; background-repeat: no-repeat; -moz-border-radius: 9px; -webkit-border-radius: 9px; border-radius: 9px; } /* Alt icon color -----------------------------------------------------------------------------------------------------------*/ .ui-icon-alt { background: #fff; background: rgba(255,255,255,.3); background-image: url(images/icons-18-black.png); background-repeat: no-repeat; } /* HD/"retina" sprite -----------------------------------------------------------------------------------------------------------*/ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-resolution: 240dpi) { .ui-icon-plus, .ui-icon-minus, .ui-icon-delete, .ui-icon-arrow-r, .ui-icon-arrow-l, .ui-icon-arrow-u, .ui-icon-arrow-d, .ui-icon-check, .ui-icon-gear, .ui-icon-refresh, .ui-icon-forward, .ui-icon-back, .ui-icon-grid, .ui-icon-star, .ui-icon-alert, .ui-icon-info, .ui-icon-home, .ui-icon-search, .ui-icon-searchfield:after, .ui-icon-checkbox-off, .ui-icon-checkbox-on, .ui-icon-radio-off, .ui-icon-radio-on { background-image: url(images/icons-36-white.png); -moz-background-size: 776px 18px; -o-background-size: 776px 18px; -webkit-background-size: 776px 18px; background-size: 776px 18px; } .ui-icon-alt { background-image: url(images/icons-36-black.png); } } /* plus minus */ .ui-icon-plus { background-position: -0 50%; } .ui-icon-minus { background-position: -36px 50%; } /* delete/close */ .ui-icon-delete { background-position: -72px 50%; } /* arrows */ .ui-icon-arrow-r { background-position: -108px 50%; } .ui-icon-arrow-l { background-position: -144px 50%; } .ui-icon-arrow-u { background-position: -180px 50%; } .ui-icon-arrow-d { background-position: -216px 50%; } /* misc */ .ui-icon-check { background-position: -252px 50%; } .ui-icon-gear { background-position: -288px 50%; } .ui-icon-refresh { background-position: -324px 50%; } .ui-icon-forward { background-position: -360px 50%; } .ui-icon-back { background-position: -396px 50%; } .ui-icon-grid { background-position: -432px 50%; } .ui-icon-star { background-position: -468px 50%; } .ui-icon-alert { background-position: -504px 50%; } .ui-icon-info { background-position: -540px 50%; } .ui-icon-home { background-position: -576px 50%; } .ui-icon-search, .ui-icon-searchfield:after { background-position: -612px 50%; } .ui-icon-checkbox-off { background-position: -684px 50%; } .ui-icon-checkbox-on { background-position: -648px 50%; } .ui-icon-radio-off { background-position: -756px 50%; } .ui-icon-radio-on { background-position: -720px 50%; } /* checks,radios */ .ui-checkbox .ui-icon, .ui-selectmenu-list .ui-icon { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .ui-icon-checkbox-off, .ui-icon-radio-off { background-color: transparent; } .ui-checkbox-on .ui-icon, .ui-radio-on .ui-icon { background-color: #4596ce /*{global-active-background-color}*/; /* NOTE: this hex should match the active state color. It's repeated here for cascade */ } /* loading icon */ .ui-icon-loading { background: url(images/ajax-loader.gif); background-size: 46px 46px; } /* Button corner classes -----------------------------------------------------------------------------------------------------------*/ .ui-btn-corner-tl { -moz-border-radius-topleft: 1em /*{global-radii-buttons}*/; -webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/; border-top-left-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-tr { -moz-border-radius-topright: 1em /*{global-radii-buttons}*/; -webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/; border-top-right-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-bl { -moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/; border-bottom-left-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-br { -moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/; border-bottom-right-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-top { -moz-border-radius-topleft: 1em /*{global-radii-buttons}*/; -webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/; border-top-left-radius: 1em /*{global-radii-buttons}*/; -moz-border-radius-topright: 1em /*{global-radii-buttons}*/; -webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/; border-top-right-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-bottom { -moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/; border-bottom-left-radius: 1em /*{global-radii-buttons}*/; -moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/; border-bottom-right-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-right { -moz-border-radius-topright: 1em /*{global-radii-buttons}*/; -webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/; border-top-right-radius: 1em /*{global-radii-buttons}*/; -moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/; border-bottom-right-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-left { -moz-border-radius-topleft: 1em /*{global-radii-buttons}*/; -webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/; border-top-left-radius: 1em /*{global-radii-buttons}*/; -moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/; -webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/; border-bottom-left-radius: 1em /*{global-radii-buttons}*/; } .ui-btn-corner-all { -moz-border-radius: 1em /*{global-radii-buttons}*/; -webkit-border-radius: 1em /*{global-radii-buttons}*/; border-radius: 1em /*{global-radii-buttons}*/; } /* radius clip workaround for cleaning up corner trapping */ .ui-corner-tl, .ui-corner-tr, .ui-corner-bl, .ui-corner-br, .ui-corner-top, .ui-corner-bottom, .ui-corner-right, .ui-corner-left, .ui-corner-all, .ui-btn-corner-tl, .ui-btn-corner-tr, .ui-btn-corner-bl, .ui-btn-corner-br, .ui-btn-corner-top, .ui-btn-corner-bottom, .ui-btn-corner-right, .ui-btn-corner-left, .ui-btn-corner-all { -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } /* Overlay / modal -----------------------------------------------------------------------------------------------------------*/ .ui-overlay { background: #666; filter: Alpha(Opacity=50); opacity: .5; position: absolute; width: 100%; height: 100%; } .ui-overlay-shadow { -moz-box-shadow: 0px 0px 12px rgba(0,0,0,.6); -webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.6); box-shadow: 0px 0px 12px rgba(0,0,0,.6); } .ui-shadow { -moz-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/; -webkit-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/; box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/; } .ui-bar-a .ui-shadow, .ui-bar-b .ui-shadow , .ui-bar-c .ui-shadow { -moz-box-shadow: 0px 1px 0 rgba(255,255,255,.3); -webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.3); box-shadow: 0px 1px 0 rgba(255,255,255,.3); } .ui-shadow-inset { -moz-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2); -webkit-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2); box-shadow: inset 0px 1px 4px rgba(0,0,0,.2); } .ui-icon-shadow { -moz-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; -webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; } /* Focus state - set here for specificity (note: these classes are added by JavaScript) -----------------------------------------------------------------------------------------------------------*/ .ui-btn:focus, .ui-link-inherit:focus { outline: 0; } .ui-btn.ui-focus { z-index: 1; } .ui-focus, .ui-btn:focus { -moz-box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/; -webkit-box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/; box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/; } .ui-input-text.ui-focus, .ui-input-search.ui-focus { -moz-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/; -webkit-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/; box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/; } /* unset box shadow in browsers that don't do it right -----------------------------------------------------------------------------------------------------------*/ .ui-mobile-nosupport-boxshadow * { -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } /* ...and bring back focus */ .ui-mobile-nosupport-boxshadow .ui-focus, .ui-mobile-nosupport-boxshadow .ui-btn:focus, .ui-mobile-nosupport-boxshadow .ui-link-inherit:focus { outline-width: 1px; outline-style: auto; } /* some unsets - more probably needed */ .ui-mobile, .ui-mobile body { height: 99.9%; } .ui-mobile fieldset, .ui-page { padding: 0; margin: 0; } .ui-mobile a img, .ui-mobile fieldset { border-width: 0; } /* responsive page widths */ .ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: 100%; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* Issue #2066 */ body.ui-mobile-viewport, div.ui-mobile-viewport { overflow-x: hidden; } /* "page" containers - full-screen views, one should always be in view post-pageload */ .ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; } .ui-mobile .ui-page-active { display: block; overflow: visible; } /* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */ .ui-page { outline: none; } /*orientations from js are available */ @media screen and (orientation: portrait){ .ui-mobile, .ui-mobile .ui-page { min-height: 420px; } } @media screen and (orientation: landscape){ .ui-mobile, .ui-mobile .ui-page { min-height: 300px; } } /* loading screen */ .ui-loading .ui-loader { display: block; } .ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; left: 50%; border:0; } .ui-loader-default { background: none; filter: Alpha(Opacity=18); opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; } .ui-loader-verbose { width: 200px; filter: Alpha(Opacity=88); opacity: .88; box-shadow: 0 1px 1px -1px #fff; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; } .ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; } .ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; } .ui-loader .ui-icon { background-color: #000; display: block; margin: 0; width: 44px; height: 44px; padding: 1px; -webkit-border-radius: 36px; -moz-border-radius: 36px; border-radius: 36px; } .ui-loader-verbose .ui-icon { margin: 0 auto 10px; filter: Alpha(Opacity=75); opacity: .75; } .ui-loader-textonly { padding: 15px; margin-left: -115px; } .ui-loader-textonly .ui-icon { display: none; } .ui-loader-fakefix { position: absolute; } /*fouc*/ .ui-mobile-rendering > * { visibility: hidden; } /*headers, content panels*/ .ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; } .ui-bar { font-size: 16px; margin: 0; } .ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; } .ui-header, .ui-footer { position: relative; zoom: 1; } .ui-mobile .ui-header, .ui-mobile .ui-footer { border-left-width: 0; border-right-width: 0; } .ui-header .ui-btn-left, .ui-header .ui-btn-right, .ui-footer .ui-btn-left, .ui-footer .ui-btn-right { position: absolute; top: 3px; } .ui-header .ui-btn-left, .ui-footer .ui-btn-left { left: 5px; } .ui-header .ui-btn-right, .ui-footer .ui-btn-right { right: 5px; } .ui-footer .ui-btn-icon-notext, .ui-header .ui-btn-icon-notext { top: 6px; } .ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; } .ui-footer .ui-title { margin: .6em 15px .8em; } /*content area*/ .ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; } /* icons sizing */ .ui-icon { width: 18px; height: 18px; } /* non-js content hiding */ .ui-nojs { position: absolute; left: -9999px; } /* accessible content hiding */ .ui-hide-label label.ui-input-text, .ui-hide-label label.ui-select, .ui-hide-label label.ui-slider, .ui-hide-label label.ui-submit, .ui-hide-label .ui-controlgroup-label, .ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } /* Transitions originally inspired by those from jQtouch, nice work, folks */ .ui-mobile-viewport-transitioning, .ui-mobile-viewport-transitioning .ui-page { width: 100%; height: 100%; overflow: hidden; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .ui-page-pre-in { opacity: 0; } .in { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 350ms; -moz-animation-timing-function: ease-out; -moz-animation-duration: 350ms; } .out { -webkit-animation-timing-function: ease-in; -webkit-animation-duration: 225ms; -moz-animation-timing-function: ease-in; -moz-animation-duration: 225ms; } @-webkit-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } @-moz-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } @-webkit-keyframes fadeout { from { opacity: 1; } to { opacity: 0; } } @-moz-keyframes fadeout { from { opacity: 1; } to { opacity: 0; } } .fade.out { opacity: 0; -webkit-animation-duration: 125ms; -webkit-animation-name: fadeout; -moz-animation-duration: 125ms; -moz-animation-name: fadeout; } .fade.in { opacity: 1; -webkit-animation-duration: 225ms; -webkit-animation-name: fadein; -moz-animation-duration: 225ms; -moz-animation-name: fadein; } .pop { -webkit-transform-origin: 50% 50%; -moz-transform-origin: 50% 50%; } .pop.in { -webkit-transform: scale(1); -moz-transform: scale(1); opacity: 1; -webkit-animation-name: popin; -moz-animation-name: popin; -webkit-animation-duration: 350ms; -moz-animation-duration: 350ms; } .pop.out { -webkit-animation-name: fadeout; -moz-animation-name: fadeout; opacity: 0; -webkit-animation-duration: 100ms; -moz-animation-duration: 100ms; } .pop.in.reverse { -webkit-animation-name: fadein; -moz-animation-name: fadein; } .pop.out.reverse { -webkit-transform: scale(.8); -moz-transform: scale(.8); -webkit-animation-name: popout; -moz-animation-name: popout; } @-webkit-keyframes popin { from { -webkit-transform: scale(.8); opacity: 0; } to { -webkit-transform: scale(1); opacity: 1; } } @-moz-keyframes popin { from { -moz-transform: scale(.8); opacity: 0; } to { -moz-transform: scale(1); opacity: 1; } } @-webkit-keyframes popout { from { -webkit-transform: scale(1); opacity: 1; } to { -webkit-transform: scale(.8); opacity: 0; } } @-moz-keyframes popout { from { -moz-transform: scale(1); opacity: 1; } to { -moz-transform: scale(.8); opacity: 0; } } /* keyframes for slidein from sides */ @-webkit-keyframes slideinfromright { from { -webkit-transform: translateX(100%); } to { -webkit-transform: translateX(0); } } @-moz-keyframes slideinfromright { from { -moz-transform: translateX(100%); } to { -moz-transform: translateX(0); } } @-webkit-keyframes slideinfromleft { from { -webkit-transform: translateX(-100%); } to { -webkit-transform: translateX(0); } } @-moz-keyframes slideinfromleft { from { -moz-transform: translateX(-100%); } to { -moz-transform: translateX(0); } } /* keyframes for slideout to sides */ @-webkit-keyframes slideouttoleft { from { -webkit-transform: translateX(0); } to { -webkit-transform: translateX(-100%); } } @-moz-keyframes slideouttoleft { from { -moz-transform: translateX(0); } to { -moz-transform: translateX(-100%); } } @-webkit-keyframes slideouttoright { from { -webkit-transform: translateX(0); } to { -webkit-transform: translateX(100%); } } @-moz-keyframes slideouttoright { from { -moz-transform: translateX(0); } to { -moz-transform: translateX(100%); } } .slide.out, .slide.in { -webkit-animation-timing-function: ease-out; -webkit-animation-duration: 350ms; -moz-animation-timing-function: ease-out; -moz-animation-duration: 350ms; } .slide.out { -webkit-transform: translateX(-100%); -webkit-animation-name: slideouttoleft; -moz-transform: translateX(-100%); -moz-animation-name: slideouttoleft; } .slide.in { -webkit-transform: translateX(0); -webkit-animation-name: slideinfromright; -moz-transform: translateX(0); -moz-animation-name: slideinfromright; } .slide.out.reverse { -webkit-transform: translateX(100%); -webkit-animation-name: slideouttoright; -moz-transform: translateX(100%); -moz-animation-name: slideouttoright; } .slide.in.reverse { -webkit-transform: translateX(0); -webkit-animation-name: slideinfromleft; -moz-transform: translateX(0); -moz-animation-name: slideinfromleft; } .slidefade.out { -webkit-transform: translateX(-100%); -webkit-animation-name: slideouttoleft; -moz-transform: translateX(-100%); -moz-animation-name: slideouttoleft; -webkit-animation-duration: 225ms; -moz-animation-duration: 225ms; } .slidefade.in { -webkit-transform: translateX(0); -webkit-animation-name: fadein; -moz-transform: translateX(0); -moz-animation-name: fadein; -webkit-animation-duration: 200ms; -moz-animation-duration: 200ms; } .slidefade.out.reverse { -webkit-transform: translateX(100%); -webkit-animation-name: slideouttoright; -moz-transform: translateX(100%); -moz-animation-name: slideouttoright; -webkit-animation-duration: 200ms; -moz-animation-duration: 200ms; } .slidefade.in.reverse { -webkit-transform: translateX(0); -webkit-animation-name: fadein; -moz-transform: translateX(0); -moz-animation-name: fadein; -webkit-animation-duration: 200ms; -moz-animation-duration: 200ms; } /* slide down */ .slidedown.out { -webkit-animation-name: fadeout; -moz-animation-name: fadeout; -webkit-animation-duration: 100ms; -moz-animation-duration: 100ms; } .slidedown.in { -webkit-transform: translateY(0); -webkit-animation-name: slideinfromtop; -moz-transform: translateY(0); -moz-animation-name: slideinfromtop; -webkit-animation-duration: 250ms; -moz-animation-duration: 250ms; } .slidedown.in.reverse { -webkit-animation-name: fadein; -moz-animation-name: fadein; -webkit-animation-duration: 150ms; -moz-animation-duration: 150ms; } .slidedown.out.reverse { -webkit-transform: translateY(-100%); -moz-transform: translateY(-100%); -webkit-animation-name: slideouttotop; -moz-animation-name: slideouttotop; -webkit-animation-duration: 200ms; -moz-animation-duration: 200ms; } @-webkit-keyframes slideinfromtop { from { -webkit-transform: translateY(-100%); } to { -webkit-transform: translateY(0); } } @-moz-keyframes slideinfromtop { from { -moz-transform: translateY(-100%); } to { -moz-transform: translateY(0); } } @-webkit-keyframes slideouttotop { from { -webkit-transform: translateY(0); } to { -webkit-transform: translateY(-100%); } } @-moz-keyframes slideouttotop { from { -moz-transform: translateY(0); } to { -moz-transform: translateY(-100%); } } /* slide up */ .slideup.out { -webkit-animation-name: fadeout; -moz-animation-name: fadeout; -webkit-animation-duration: 100ms; -moz-animation-duration: 100ms; } .slideup.in { -webkit-transform: translateY(0); -webkit-animation-name: slideinfrombottom; -moz-transform: translateY(0); -moz-animation-name: slideinfrombottom; -webkit-animation-duration: 250ms; -moz-animation-duration: 250ms; } .slideup.in.reverse { -webkit-animation-name: fadein; -moz-animation-name: fadein; -webkit-animation-duration: 150ms; -moz-animation-duration: 150ms; } .slideup.out.reverse { -webkit-transform: translateY(100%); -moz-transform: translateY(100%); -webkit-animation-name: slideouttobottom; -moz-animation-name: slideouttobottom; -webkit-animation-duration: 200ms; -moz-animation-duration: 200ms; } @-webkit-keyframes slideinfrombottom { from { -webkit-transform: translateY(100%); } to { -webkit-transform: translateY(0); } } @-moz-keyframes slideinfrombottom { from { -moz-transform: translateY(100%); } to { -moz-transform: translateY(0); } } @-webkit-keyframes slideouttobottom { from { -webkit-transform: translateY(0); } to { -webkit-transform: translateY(100%); } } @-moz-keyframes slideouttobottom { from { -moz-transform: translateY(0); } to { -moz-transform: translateY(100%); } } /* The properties in this rule are only necessary for the 'flip' transition. * We need specify the perspective to create a projection matrix. This will add * some depth as the element flips. The depth number represents the distance of * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate * value. */ .viewport-flip { -webkit-perspective: 1000; -moz-perspective: 1000; position: absolute; } .flip { -webkit-backface-visibility:hidden; -webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ -moz-backface-visibility:hidden; -moz-transform:translateX(0); } .flip.out { -webkit-transform: rotateY(-90deg) scale(.9); -webkit-animation-name: flipouttoleft; -webkit-animation-duration: 175ms; -moz-transform: rotateY(-90deg) scale(.9); -moz-animation-name: flipouttoleft; -moz-animation-duration: 175ms; } .flip.in { -webkit-animation-name: flipintoright; -webkit-animation-duration: 225ms; -moz-animation-name: flipintoright; -moz-animation-duration: 225ms; } .flip.out.reverse { -webkit-transform: rotateY(90deg) scale(.9); -webkit-animation-name: flipouttoright; -moz-transform: rotateY(90deg) scale(.9); -moz-animation-name: flipouttoright; } .flip.in.reverse { -webkit-animation-name: flipintoleft; -moz-animation-name: flipintoleft; } @-webkit-keyframes flipouttoleft { from { -webkit-transform: rotateY(0); } to { -webkit-transform: rotateY(-90deg) scale(.9); } } @-moz-keyframes flipouttoleft { from { -moz-transform: rotateY(0); } to { -moz-transform: rotateY(-90deg) scale(.9); } } @-webkit-keyframes flipouttoright { from { -webkit-transform: rotateY(0) ; } to { -webkit-transform: rotateY(90deg) scale(.9); } } @-moz-keyframes flipouttoright { from { -moz-transform: rotateY(0); } to { -moz-transform: rotateY(90deg) scale(.9); } } @-webkit-keyframes flipintoleft { from { -webkit-transform: rotateY(-90deg) scale(.9); } to { -webkit-transform: rotateY(0); } } @-moz-keyframes flipintoleft { from { -moz-transform: rotateY(-90deg) scale(.9); } to { -moz-transform: rotateY(0); } } @-webkit-keyframes flipintoright { from { -webkit-transform: rotateY(90deg) scale(.9); } to { -webkit-transform: rotateY(0); } } @-moz-keyframes flipintoright { from { -moz-transform: rotateY(90deg) scale(.9); } to { -moz-transform: rotateY(0); } } /* The properties in this rule are only necessary for the 'flip' transition. * We need specify the perspective to create a projection matrix. This will add * some depth as the element flips. The depth number represents the distance of * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate * value. */ .viewport-turn { -webkit-perspective: 1000; -moz-perspective: 1000; position: absolute; } .turn { -webkit-backface-visibility:hidden; -webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ -webkit-transform-origin: 0; -moz-backface-visibility:hidden; -moz-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */ -moz-transform-origin: 0; } .turn.out { -webkit-transform: rotateY(-90deg) scale(.9); -webkit-animation-name: flipouttoleft; -moz-transform: rotateY(-90deg) scale(.9); -moz-animation-name: flipouttoleft; -webkit-animation-duration: 125ms; -moz-animation-duration: 125ms; } .turn.in { -webkit-animation-name: flipintoright; -moz-animation-name: flipintoright; -webkit-animation-duration: 250ms; -moz-animation-duration: 250ms; } .turn.out.reverse { -webkit-transform: rotateY(90deg) scale(.9); -webkit-animation-name: flipouttoright; -moz-transform: rotateY(90deg) scale(.9); -moz-animation-name: flipouttoright; } .turn.in.reverse { -webkit-animation-name: flipintoleft; -moz-animation-name: flipintoleft; } @-webkit-keyframes flipouttoleft { from { -webkit-transform: rotateY(0); } to { -webkit-transform: rotateY(-90deg) scale(.9); } } @-moz-keyframes flipouttoleft { from { -moz-transform: rotateY(0); } to { -moz-transform: rotateY(-90deg) scale(.9); } } @-webkit-keyframes flipouttoright { from { -webkit-transform: rotateY(0) ; } to { -webkit-transform: rotateY(90deg) scale(.9); } } @-moz-keyframes flipouttoright { from { -moz-transform: rotateY(0); } to { -moz-transform: rotateY(90deg) scale(.9); } } @-webkit-keyframes flipintoleft { from { -webkit-transform: rotateY(-90deg) scale(.9); } to { -webkit-transform: rotateY(0); } } @-moz-keyframes flipintoleft { from { -moz-transform: rotateY(-90deg) scale(.9); } to { -moz-transform: rotateY(0); } } @-webkit-keyframes flipintoright { from { -webkit-transform: rotateY(90deg) scale(.9); } to { -webkit-transform: rotateY(0); } } @-moz-keyframes flipintoright { from { -moz-transform: rotateY(90deg) scale(.9); } to { -moz-transform: rotateY(0); } } /* flow transition */ .flow { -webkit-transform-origin: 50% 30%; -moz-transform-origin: 50% 30%; -webkit-box-shadow: 0 0 20px rgba(0,0,0,.4); -moz-box-shadow: 0 0 20px rgba(0,0,0,.4); } .ui-dialog.flow { -webkit-transform-origin: none; -moz-transform-origin: none; -webkit-box-shadow: none; -moz-box-shadow: none; } .flow.out { -webkit-transform: translateX(-100%) scale(.7); -webkit-animation-name: flowouttoleft; -webkit-animation-timing-function: ease; -webkit-animation-duration: 350ms; -moz-transform: translateX(-100%) scale(.7); -moz-animation-name: flowouttoleft; -moz-animation-timing-function: ease; -moz-animation-duration: 350ms; } .flow.in { -webkit-transform: translateX(0) scale(1); -webkit-animation-name: flowinfromright; -webkit-animation-timing-function: ease; -webkit-animation-duration: 350ms; -moz-transform: translateX(0) scale(1); -moz-animation-name: flowinfromright; -moz-animation-timing-function: ease; -moz-animation-duration: 350ms; } .flow.out.reverse { -webkit-transform: translateX(100%); -webkit-animation-name: flowouttoright; -moz-transform: translateX(100%); -moz-animation-name: flowouttoright; } .flow.in.reverse { -webkit-animation-name: flowinfromleft; -moz-animation-name: flowinfromleft; } @-webkit-keyframes flowouttoleft { 0% { -webkit-transform: translateX(0) scale(1); } 60%, 70% { -webkit-transform: translateX(0) scale(.7); } 100% { -webkit-transform: translateX(-100%) scale(.7); } } @-moz-keyframes flowouttoleft { 0% { -moz-transform: translateX(0) scale(1); } 60%, 70% { -moz-transform: translateX(0) scale(.7); } 100% { -moz-transform: translateX(-100%) scale(.7); } } @-webkit-keyframes flowouttoright { 0% { -webkit-transform: translateX(0) scale(1); } 60%, 70% { -webkit-transform: translateX(0) scale(.7); } 100% { -webkit-transform: translateX(100%) scale(.7); } } @-moz-keyframes flowouttoright { 0% { -moz-transform: translateX(0) scale(1); } 60%, 70% { -moz-transform: translateX(0) scale(.7); } 100% { -moz-transform: translateX(100%) scale(.7); } } @-webkit-keyframes flowinfromleft { 0% { -webkit-transform: translateX(-100%) scale(.7); } 30%, 40% { -webkit-transform: translateX(0) scale(.7); } 100% { -webkit-transform: translateX(0) scale(1); } } @-moz-keyframes flowinfromleft { 0% { -moz-transform: translateX(-100%) scale(.7); } 30%, 40% { -moz-transform: translateX(0) scale(.7); } 100% { -moz-transform: translateX(0) scale(1); } } @-webkit-keyframes flowinfromright { 0% { -webkit-transform: translateX(100%) scale(.7); } 30%, 40% { -webkit-transform: translateX(0) scale(.7); } 100% { -webkit-transform: translateX(0) scale(1); } } @-moz-keyframes flowinfromright { 0% { -moz-transform: translateX(100%) scale(.7); } 30%, 40% { -moz-transform: translateX(0) scale(.7); } 100% { -moz-transform: translateX(0) scale(1); } } /* content configurations. */ .ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; } .ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } /* grid solo: 100 - single item fallback */ .ui-grid-solo .ui-block-a { display: block; float: none; } /* Lower percentages for older browsers (i.e. IE7) to prevent wrapping. -.5px to fix BB5 wrap issue. */ /* grid a: 50/50 */ .ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 49.95%; } .ui-grid-a > :nth-child(n) { width: 50%; margin-right: -.5px; } .ui-grid-a .ui-block-a { clear: left; } /* grid b: 33/33/33 */ .ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.25%; } .ui-grid-b > :nth-child(n) { width: 33.333%; margin-right: -.5px; } .ui-grid-b .ui-block-a { clear: left; } /* grid c: 25/25/25/25 */ .ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width: 24.925%; } .ui-grid-c > :nth-child(n) { width: 25%; margin-right: -.5px; } .ui-grid-c .ui-block-a { clear: left; } /* grid d: 20/20/20/20/20 */ .ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width: 19.925%; } .ui-grid-d > :nth-child(n) { width: 20%; } .ui-grid-d .ui-block-a { clear: left; } /* fixed page header & footer configuration */ .ui-header-fixed, .ui-footer-fixed { left: 0; right: 0; width: 100%; position: fixed; z-index: 1000; } .ui-header-fixed { top: 0; } .ui-footer-fixed { bottom: 0; } .ui-header-fullscreen, .ui-footer-fullscreen { filter: Alpha(Opacity=90); opacity: .9; } .ui-page-header-fixed { padding-top: 2.6875em; } .ui-page-footer-fixed { padding-bottom: 2.6875em; } .ui-page-header-fullscreen .ui-content, .ui-page-footer-fullscreen .ui-content { padding: 0; } .ui-fixed-hidden { position: absolute; } .ui-page-header-fullscreen .ui-fixed-hidden, .ui-page-footer-fullscreen .ui-fixed-hidden { left: -9999px; } .ui-header-fixed .ui-btn, .ui-footer-fixed .ui-btn { z-index: 10; } .ui-navbar { max-width: 100%; } .ui-navbar.ui-mini { margin: 0; } .ui-navbar ul:before, .ui-navbar ul:after { content: " "; display: table; } .ui-navbar ul:after { clear: both; } .ui-navbar ul { list-style:none; margin: 0; padding: 0; position: relative; display: block; border: 0; max-width: 100%; overflow: visible; zoom: 1; } .ui-navbar li .ui-btn { display: block; text-align: center; margin: 0 -1px 0 0; border-right-width: 0; } .ui-navbar li .ui-btn-icon-right .ui-icon { right: 6px; } /* add border if not in header/footer (full width) */ .ui-navbar li:last-child .ui-btn, .ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: 0; border-right-width: 1px; } .ui-header .ui-navbar li:last-child .ui-btn, .ui-footer .ui-navbar li:last-child .ui-btn, .ui-header .ui-navbar .ui-grid-duo .ui-block-b .ui-btn, .ui-footer .ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: -1px; border-right-width: 0; } .ui-navbar .ui-grid-duo li.ui-block-a:last-child .ui-btn { margin-right: -1px; border-right-width: 1px; } .ui-header .ui-navbar li .ui-btn, .ui-footer .ui-navbar li .ui-btn { border-top-width: 0; border-bottom-width: 0; } /* fixing gaps caused by subpixel problem */ .ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn, .ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn { margin-right: -5px; } .ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn, .ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn, .ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn, .ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn { margin-right: -4px; } .ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon, .ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon, .ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon, .ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon, .ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon, .ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon { right: 8px; } .ui-navbar li .ui-btn .ui-btn-inner { padding-top: .7em; padding-bottom: .8em } .ui-navbar li .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; } .ui-navbar li .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; } .ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 0; padding: 0; } .ui-mini { margin-top: .25em; margin-bottom: .25em; } .ui-btn-left, .ui-btn-right, .ui-input-clear, .ui-btn-inline, .ui-grid-a .ui-btn, .ui-grid-b .ui-btn, .ui-grid-c .ui-btn, .ui-grid-d .ui-btn, .ui-grid-e .ui-btn, .ui-grid-solo .ui-btn { margin-right: 5px; margin-left: 5px; } .ui-btn-inner { font-size: 16px; padding: .6em 20px; min-width: .75em; display: block; position: relative; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; zoom: 1; } .ui-btn input, .ui-btn button { z-index: 2; } .ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; vertical-align: middle; } .ui-mobile .ui-btn-left, .ui-mobile .ui-btn-right { margin: 0; } /* .ui-mobile to increase specificity level */ .ui-btn-block { display: block; } .ui-header > .ui-btn, .ui-footer > .ui-btn { display: inline-block; margin: 0; } .ui-header .ui-btn-block, .ui-footer .ui-btn-block { display: block; } .ui-header .ui-btn-inner, .ui-footer .ui-btn-inner, .ui-mini .ui-btn-inner { font-size: 12.5px; padding: .55em 11px .5em; } .ui-fullsize .ui-btn-inner, .ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 20px; } .ui-btn-icon-notext { width: 24px; height: 24px; } .ui-btn-icon-notext .ui-btn-inner { padding: 0; height: 100%; } .ui-btn-icon-notext .ui-btn-inner .ui-icon { margin: 2px 1px 2px 3px; float: left; } .ui-btn-text { position: relative; z-index: 1; width: 100%; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; } div.ui-btn-text { width: auto; } .ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; } .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; } .ui-btn-icon-right .ui-btn-inner { padding-right: 40px; } .ui-btn-icon-top .ui-btn-inner { padding-top: 40px; } .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 40px; } .ui-header .ui-btn-icon-left .ui-btn-inner, .ui-footer .ui-btn-icon-left .ui-btn-inner, .ui-mini.ui-btn-icon-left .ui-btn-inner, .ui-mini .ui-btn-icon-left .ui-btn-inner { padding-left: 30px; } .ui-header .ui-btn-icon-right .ui-btn-inner, .ui-footer .ui-btn-icon-right .ui-btn-inner, .ui-mini.ui-btn-icon-right .ui-btn-inner, .ui-mini .ui-btn-icon-right .ui-btn-inner { padding-right: 30px; } .ui-header .ui-btn-icon-top .ui-btn-inner, .ui-footer .ui-btn-icon-top .ui-btn-inner { padding: 30px 3px .5em 3px; } .ui-mini.ui-btn-icon-top .ui-btn-inner, .ui-mini .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; } .ui-header .ui-btn-icon-bottom .ui-btn-inner, .ui-footer .ui-btn-icon-bottom .ui-btn-inner { padding: .55em 3px 30px 3px; } .ui-mini.ui-btn-icon-bottom .ui-btn-inner, .ui-mini .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; } /*btn icon positioning*/ .ui-btn-icon-notext .ui-icon { display: block; z-index: 0;} .ui-btn-icon-left > .ui-btn-inner > .ui-icon, .ui-btn-icon-right > .ui-btn-inner > .ui-icon { position: absolute; top: 50%; margin-top: -9px; } .ui-btn-icon-top .ui-btn-inner .ui-icon, .ui-btn-icon-bottom .ui-btn-inner .ui-icon { position: absolute; left: 50%; margin-left: -9px; } .ui-btn-icon-left .ui-icon { left: 10px; } .ui-btn-icon-right .ui-icon { right: 10px; } .ui-btn-icon-top .ui-icon { top: 10px; } .ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; } .ui-header .ui-btn-icon-left .ui-icon, .ui-footer .ui-btn-icon-left .ui-icon, .ui-mini.ui-btn-icon-left .ui-icon, .ui-mini .ui-btn-icon-left .ui-icon { left: 5px; } .ui-header .ui-btn-icon-right .ui-icon, .ui-footer .ui-btn-icon-right .ui-icon, .ui-mini.ui-btn-icon-right .ui-icon, .ui-mini .ui-btn-icon-right .ui-icon { right: 5px; } .ui-header .ui-btn-icon-top .ui-icon, .ui-footer .ui-btn-icon-top .ui-icon, .ui-mini.ui-btn-icon-top .ui-icon, .ui-mini .ui-btn-icon-top .ui-icon { top: 5px; } .ui-header .ui-btn-icon-bottom .ui-icon, .ui-footer .ui-btn-icon-bottom .ui-icon, .ui-mini.ui-btn-icon-bottom .ui-icon, .ui-mini .ui-btn-icon-bottom .ui-icon { bottom: 5px; } /*hiding native button,inputs */ .ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: none; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=0); opacity: .1; font-size: 1px; border: none; text-indent: -9999px; } /* Fixes IE/WP filter alpha opacity bugs */ .ui-disabled .ui-btn-hidden { display: none; } .ui-disabled { z-index: 1; } .ui-field-contain .ui-btn.ui-submit { margin: 0; } label.ui-submit { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } @media all and (min-width: 450px){ .ui-field-contain label.ui-submit { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } .ui-field-contain .ui-btn.ui-submit { width: 78%; display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } .ui-hide-label .ui-btn.ui-submit { width: auto; display: block; } } .ui-collapsible-inset { margin: .5em 0; } .ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -15px; padding: 0; position: relative; } .ui-collapsible-inset .ui-collapsible-heading { margin: 0; } .ui-collapsible-heading .ui-btn { text-align: left; margin: 0; border-left-width: 0; border-right-width: 0; } .ui-collapsible-inset .ui-collapsible-heading .ui-btn { border-right-width: 1px; border-left-width: 1px; } .ui-collapsible-collapsed + .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 0; } .ui-collapsible-set .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 1px; } .ui-collapsible-heading .ui-btn-inner, .ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; } .ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-left: 12px; padding-right: 40px; } .ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner, .ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { padding-right: 40px; text-align: center; } .ui-collapsible-heading .ui-btn span.ui-btn { position: absolute; left: 6px; top: 50%; margin: -12px 0 0 0; width: 20px; height: 20px; padding: 1px 0px 1px 2px; text-indent: -9999px; } .ui-collapsible-heading .ui-btn span.ui-btn .ui-btn-inner { padding: 10px 0; } .ui-collapsible-heading .ui-btn span.ui-btn .ui-icon { left: 0; margin-top: -10px; } .ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; } .ui-collapsible-content { display: block; margin: 0 -15px; padding: 10px 15px; border-left-width: 0; border-right-width: 0; border-top: none; /* Overrides ui-body-* */ background-image: none; /* Overrides ui-body-* */ } .ui-collapsible-inset .ui-collapsible-content { margin: 0; border-right-width: 1px; border-left-width: 1px; } .ui-collapsible-content-collapsed { display: none; } .ui-collapsible-set { margin: .5em 0; } .ui-collapsible-set .ui-collapsible { margin: -1px 0 0; } .ui-collapsible-set .ui-collapsible:first-child { margin-top: 0; } .ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0; zoom: 1; } .ui-controlgroup.ui-mini, fieldset.ui-controlgroup.ui-mini { margin: .25em 0; } .ui-field-contain .ui-controlgroup, .ui-field-contain fieldset.ui-controlgroup { margin: 0; } .ui-bar .ui-controlgroup { margin: 0 5px; } .ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .4em; } .ui-controlgroup li { list-style: none; } .ui-controlgroup-vertical .ui-btn, .ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; } .ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; } .ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; } .ui-controlgroup .ui-btn-icon-notext { width: auto; height: auto; top: auto; } .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 20px; padding: .6em 20px .6em 20px } .ui-controlgroup-horizontal .ui-btn-icon-notext .ui-btn-inner { width: 18px; } .ui-controlgroup.ui-mini .ui-btn-icon-notext .ui-btn-inner, .ui-header .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner, .ui-footer .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 16px; padding: .55em 11px .5em 11px; } .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; right: 50%; margin: -9px -9px 0 0; } .ui-controlgroup-horizontal .ui-controlgroup-controls:before, .ui-controlgroup-horizontal .ui-controlgroup-controls:after { content: ""; display: table; } .ui-controlgroup-horizontal .ui-controlgroup-controls:after { clear: both; } .ui-controlgroup-horizontal .ui-controlgroup-controls { display: inline-block; vertical-align: middle; zoom: 1; } .ui-controlgroup-horizontal .ui-btn-inner { text-align: center; } .ui-controlgroup-horizontal.ui-mini .ui-btn-inner { height: 16px; line-height: 16px; } .ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select, .ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; clear: none; margin: 0 -1px 0 0; } .ui-controlgroup-horizontal .ui-select .ui-btn, .ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn { float: none; margin: 0; } .ui-controlgroup-horizontal .ui-controlgroup-last, .ui-controlgroup-horizontal .ui-select:last-child, .ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; } .ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; } @media all and (min-width: 450px){ .ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } .ui-field-contain .ui-controlgroup-controls { width: 78%; display: inline-block; } .ui-field-contain .ui-controlgroup .ui-select { width: 100%; display: block; } .ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; } .ui-hide-label .ui-controlgroup-controls { width: 100%; } } .ui-dialog { background: none !important; /* this is to ensure that dialog theming does not apply (by default at least) on the page div */ } .ui-dialog-contain { width: 92.5%; max-width: 500px; margin: 10% auto 15px auto; padding: 0; position: relative; top: -15px; } .ui-dialog-contain > .ui-header, .ui-dialog-contain > .ui-content, .ui-dialog-contain > .ui-footer { display: block; position: relative; width: auto; margin: 0; } .ui-dialog-contain > .ui-header { border: none; overflow: hidden; z-index: 10; padding: 0; } .ui-dialog-contain > .ui-content { padding: 15px; } .ui-dialog-contain > .ui-footer { z-index: 10; padding: 0 15px; } .ui-popup-open .ui-header-fixed, .ui-popup-open .ui-footer-fixed { position: absolute !important; /* See line #553 of popup.js */ } .ui-popup-screen { background-image: url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==); /* Necessary to set some form of background to ensure element is clickable in IE6/7. While legacy IE won't understand the data-URI'd image, it ensures no additional requests occur in all other browsers with little overhead. */ top: 0px; left: 0px; right: 0px; bottom: 1px; position: absolute; filter: Alpha(Opacity=0); opacity: 0; z-index: 1099; } .ui-popup-screen.in { opacity: 0.5; filter: Alpha(Opacity=50); } .ui-popup-screen.out { opacity: 0; filter: Alpha(Opacity=0); } .ui-popup-container { z-index: 1100; display: inline-block; position: absolute; padding: 0; outline: 0; } .ui-popup { position: relative; } .ui-popup.ui-content, .ui-popup .ui-content { overflow: visible; } .ui-popup > p, .ui-popup > h1, .ui-popup > h2, .ui-popup > h3, .ui-popup > h4, .ui-popup > h5, .ui-popup > h6 { margin: .5em 7px; } .ui-popup > span { display: block; margin: .5em 7px; } .ui-popup .ui-title { font-size: 16px; font-weight: bold; margin-top: .5em; margin-bottom: .5em; } .ui-popup-container .ui-content > p, .ui-popup-container .ui-content > h1, .ui-popup-container .ui-content > h2, .ui-popup-container .ui-content > h3, .ui-popup-container .ui-content > h4, .ui-popup-container .ui-content > h5, .ui-popup-container .ui-content > h6 { margin: .5em 0; } .ui-popup-container .ui-content > span { margin: 0; } .ui-popup-container .ui-content > p:first-child, .ui-popup-container .ui-content > h1:first-child, .ui-popup-container .ui-content > h2:first-child, .ui-popup-container .ui-content > h3:first-child, .ui-popup-container .ui-content > h4:first-child, .ui-popup-container .ui-content > h5:first-child, .ui-popup-container .ui-content > h6:first-child { margin-top: 0; } .ui-popup-container .ui-content > p:last-child, .ui-popup-container .ui-content > h1:last-child, .ui-popup-container .ui-content > h2:last-child, .ui-popup-container .ui-content > h3:last-child, .ui-popup-container .ui-content > h4:last-child, .ui-popup-container .ui-content > h5:last-child, .ui-popup-container .ui-content > h6:last-child { margin-bottom: 0; } .ui-popup > img { width: auto; height: auto; max-width: 100%; max-height: 100%; vertical-align: middle; } .ui-popup iframe { vertical-align: middle; } @media all and (min-width: 450px){ .ui-popup .ui-field-contain label.ui-submit, .ui-popup .ui-field-contain .ui-controlgroup-label, .ui-popup .ui-field-contain label.ui-select, .ui-popup .ui-field-contain label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; } .ui-popup .ui-field-contain .ui-btn.ui-submit, .ui-popup .ui-field-contain .ui-controlgroup-controls, .ui-popup .ui-field-contain .ui-select, .ui-popup .ui-field-contain input.ui-input-text, .ui-popup .ui-field-contain textarea.ui-input-text, .ui-popup .ui-field-contain .ui-input-search { width: 100%; display: block; } } .ui-popup > .ui-btn-left, .ui-popup > .ui-btn-right { position: absolute; top: -9px; margin: 0; z-index: 1101; } .ui-popup > .ui-btn-left { left: -9px; } .ui-popup > .ui-btn-right { right: -9px; } .ui-popup.ui-corner-all > .ui-header, .ui-popup.ui-corner-all ~ .ui-content, .ui-popup.ui-corner-all > .ui-content:first-child { -webkit-border-top-left-radius: inherit; border-top-left-radius: inherit; -webkit-border-top-right-radius: inherit; border-top-right-radius: inherit; } .ui-popup.ui-corner-all > .ui-content, .ui-popup.ui-corner-all > .ui-footer, .ui-popup.ui-corner-all > .ui-header:nth-child(n):last-child { -webkit-border-bottom-left-radius: inherit; border-bottom-left-radius: inherit; -webkit-border-bottom-right-radius: inherit; border-bottom-right-radius: inherit; } .ui-popup.ui-corner-all > .ui-content:nth-child(2), .ui-popup.ui-corner-all > .ui-header:nth-child(2) { -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; } .ui-popup.ui-corner-all > .ui-content:nth-last-child(1n+2), .ui-popup.ui-corner-all > .ui-footer:nth-last-child(1n+2) { -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; } .ui-popup.ui-corner-all > .ui-header:only-child, .ui-popup.ui-corner-all > .ui-footer:only-child { -webkit-border-radius: inherit; border-radius: inherit; } .ui-popup-hidden { top: -99999px; left: -9999px; } .ui-checkbox, .ui-radio { position: relative; clear: both; margin: 0; z-index: 1; } .ui-checkbox .ui-btn, .ui-radio .ui-btn { margin-top: .5em; margin-bottom: .5em; text-align: left; z-index: 2; } .ui-checkbox .ui-btn.ui-mini, .ui-radio .ui-btn.ui-mini { margin: .25em 0; } .ui-controlgroup .ui-checkbox .ui-btn, .ui-controlgroup .ui-radio .ui-btn { margin: 0; } .ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; } .ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; } .ui-checkbox .ui-mini.ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-mini.ui-btn-icon-left .ui-btn-inner { padding-left: 36px; } .ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } .ui-checkbox .ui-mini.ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 36px; } .ui-checkbox .ui-btn-icon-top .ui-btn-inner,.ui-radio .ui-btn-icon-top .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; } .ui-checkbox .ui-btn-icon-bottom .ui-btn-inner, .ui-radio .ui-btn-icon-bottom .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; } .ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; } .ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon { left: 15px; } .ui-checkbox .ui-mini.ui-btn-icon-left .ui-icon, .ui-radio .ui-mini.ui-btn-icon-left .ui-icon { left: 9px; } .ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; } .ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; } .ui-checkbox .ui-btn-icon-top .ui-icon, .ui-radio .ui-btn-icon-top .ui-icon { top: 10px; } .ui-checkbox .ui-btn-icon-bottom .ui-icon, .ui-radio .ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; } .ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; } .ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; } /* input, label positioning */ .ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; } .ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; } .ui-field-contain:last-child { border-bottom-width: 0; } .ui-field-contain { max-width: 100%; } /* This prevents horizontal scrollbar in IE7 */ @media all and (min-width: 450px){ .ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; } } .ui-select { display: block; position: relative; } .ui-select select { position: absolute; left: -9999px; top: -9999px; } .ui-select .ui-btn { overflow: hidden; opacity: 1; } .ui-field-contain .ui-select .ui-btn { margin: 0; } /* Fixes #2588: When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select (including "inherit") without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */ .ui-select .ui-btn select { cursor: pointer; -webkit-appearance: none; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; filter: Alpha(Opacity=0); opacity: 0; z-index: 2; } .ui-select .ui-disabled { opacity: .3; } /* Display none because of issues with IE/WP's filter alpha opacity */ .ui-select .ui-disabled select { display: none; } @-moz-document url-prefix() { .ui-select .ui-btn select { opacity: 0.0001; }} .ui-select .ui-btn.ui-select-nativeonly { border-radius: 0; border: 0; } .ui-select .ui-btn.ui-select-nativeonly select { opacity: 1; text-indent: 0; display: block; } .ui-select .ui-disabled.ui-select-nativeonly .ui-btn-inner { opacity: 0; } .ui-select .ui-btn-icon-right .ui-btn-inner, .ui-select .ui-li-has-count .ui-btn-inner { padding-right: 45px; } .ui-select .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 32px; } .ui-select .ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 80px; } .ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 67px; } .ui-select .ui-btn-icon-right .ui-icon { right: 15px; } .ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; } .ui-select .ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 45px; } .ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 32px; } /* labels */ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } /*listbox*/ .ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden !important; /* This !important is required for iPad Safari specifically. See https://github.com/jquery/jquery-mobile/issues/2647 */ } .ui-select .ui-btn-text { text-overflow: ellipsis; } .ui-selectmenu { padding: 6px; min-width: 160px; } .ui-selectmenu .ui-listview { margin: 0; } .ui-selectmenu .ui-btn.ui-li-divider { cursor: default; } .ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; } .ui-selectmenu-list .ui-li .ui-icon { display: block; } .ui-li.ui-selectmenu-placeholder { display: none; } .ui-selectmenu .ui-header { margin: 0; padding: 0; } .ui-selectmenu.ui-popup .ui-header { -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; } .ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; } @media all and (min-width: 450px){ .ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } .ui-field-contain .ui-select { width: 78%; display: inline-block; } .ui-hide-label .ui-select { width: 100%; } } /* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button. this shim's content in there */ .ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; } label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; } input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; margin: .5em 0; line-height: 1.4; font-size: 16px; display: block; width: 100%; outline: 0; } input.ui-input-text.ui-mini, textarea.ui-input-text.ui-mini { margin: .25em 0; } .ui-field-contain input.ui-input-text, .ui-field-contain textarea.ui-input-text { margin: 0; } input.ui-input-text, textarea.ui-input-text, .ui-input-search { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } input.ui-input-text { -webkit-appearance: none; } textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; } .ui-input-search { padding: 0 30px; margin: .5em 0; background-image: none; position: relative; } .ui-input-search.ui-mini { margin: .25em 0; } .ui-field-contain .ui-input-search { margin: 0; } .ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; } .ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; } .ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; } .ui-mini .ui-input-clear { right: -3px; } .ui-input-search .ui-input-clear-hidden { display: none; } input.ui-mini, .ui-mini input, textarea.ui-mini { font-size: 14px; } textarea.ui-mini { height: 45px; } /* Resolves issue #5166: Added to support issue introduced in Firefox 15. We can likely remove this in the future. */ input:-moz-placeholder { color: #aaa; } /* Resolves issue #5131: Width of textinput depends on its type, for Android 4.1 */ input[type=number]::-webkit-outer-spin-button { margin: 0; } @media all and (min-width: 450px){ .ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 } .ui-field-contain input.ui-input-text, .ui-field-contain textarea.ui-input-text, .ui-field-contain .ui-input-search { width: 78%; display: inline-block; } .ui-hide-label input.ui-input-text, .ui-hide-label textarea.ui-input-text, .ui-hide-label .ui-input-search { width: 100%; } .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ } } .ui-listview { margin: 0; } ol.ui-listview, ol.ui-listview .ui-li-divider { counter-reset: listnumbering; } .ui-content .ui-listview { margin: -15px; } .ui-collapsible-content > .ui-listview { margin: -10px -15px; } .ui-content .ui-listview-inset { margin: 1em 0; } .ui-collapsible-content .ui-listview-inset { margin: .5em 0; } .ui-listview, .ui-li { list-style:none; padding:0; } .ui-li, .ui-li.ui-field-contain { display: block; margin:0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 1px; } .ui-li.ui-btn { margin: 0; } .ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .ui-li-static { background-image: none; } .ui-li-divider { padding: .5em 15px; font-size: 14px; font-weight: bold; } ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal; counter-increment: listnumbering; content: counter(listnumbering) ". "; } ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */ .ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; } .ui-li-last, .ui-li.ui-field-contain.ui-li-last { border-bottom-width: 1px; } .ui-collapsible [class*="ui-body"] > .ui-listview:not(.ui-listview-inset) .ui-li-last { border-bottom-width: 0; } .ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li:first-child { border-top-width: 0; } .ui-collapsible-content > .ui-listview:not(.ui-listview-inset), .ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li-last { -webkit-border-bottom-left-radius: inherit; -webkit-border-bottom-right-radius: inherit; border-bottom-left-radius: inherit; border-bottom-right-radius: inherit; } .ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li-last .ui-li-link-alt { -webkit-border-bottom-right-radius: inherit; border-bottom-right-radius: inherit; } .ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; } .ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px; display: block; } .ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; } .ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; } .ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count, .ui-li-divider.ui-li-has-count { padding-right: 45px; } .ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 40px; } .ui-li-has-arrow.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow.ui-li-has-count { padding-right: 75px; } .ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; } .ui-listview .ui-li-icon { max-height: 16px; max-width: 16px; left: 10px; top: .9em; } .ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; } .ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; } @media all and (min-width: 480px){ .ui-li-aside { width: 45%; } } .ui-li-divider { cursor: default; } .ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 53px; } .ui-li-has-alt.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt.ui-li-has-count { padding-right: 88px; } .ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 10px; } .ui-li-has-count.ui-li-divider .ui-li-count, .ui-li-has-count .ui-link-inherit .ui-li-count { margin-top: -.95em; } .ui-li-has-arrow.ui-li-has-count .ui-li-count { right: 40px; } .ui-li-has-alt.ui-li-has-count .ui-li-count { right: 53px; } .ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; } .ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -13px 0 0 0; border-bottom-width: 1px; z-index: -1;} .ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;} .ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; } .ui-li-link-alt .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; margin-top: -9px; } .ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0px; } .ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px; } .ui-collapsible-content .ui-listview-filter { margin: -10px -15px 10px -15px; border-bottom: inherit; } .ui-listview-filter-inset { margin: -15px -5px; background: transparent; } .ui-collapsible-content .ui-listview-filter-inset { margin: -5px; border-bottom-width: 0; } .ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; } .ui-li.ui-screen-hidden{ display:none; } /* Odd iPad positioning issue. */ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { .ui-li .ui-btn-text { overflow: visible; } } label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; } input.ui-slider-input, .ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; background-image: none; padding: .4em; margin: .5em 0; line-height: 1.4; font-size: 16px; outline: 0; } input.ui-slider-input.ui-mini, .ui-field-contain input.ui-slider-input.ui-mini { width: 45px; margin: .25em 0; font-size: 14px; } .ui-field-contain input.ui-slider-input { margin: 0; } input.ui-slider-input, .ui-field-contain input.ui-slider-input { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; -ms-box-sizing: content-box; box-sizing: content-box; } /* Fixes input fields being to small on Safari/Mac because of the up and down arrows. */ .ui-slider-input::-webkit-outer-spin-button { margin: 0; } select.ui-slider-switch { display: none; } div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 65%; } div.ui-slider-mini { height: 12px; margin-left: 10px; top: 2px; } div.ui-slider-bg { border: none; height: 100%; padding-right: 8px; } .ui-controlgroup a.ui-slider-handle, a.ui-btn.ui-slider-handle { position: absolute; z-index: 1; top: 50%; width: 28px; height: 28px; margin: -15px 0 0 -15px; outline: 0; } a.ui-btn.ui-slider-handle .ui-btn-inner { padding: 0; height: 100%; } div.ui-slider-mini a.ui-slider-handle { height: 14px; width: 14px; margin: -8px 0 0 -7px; } div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: -9px 0 0 -9px; border-top: none; } @media all and (min-width: 450px){ .ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; } .ui-field-contain div.ui-slider { width: 43%; } .ui-field-contain div.ui-slider-switch { width: 5.5em; } } div.ui-slider-switch { height: 32px; margin-left: 0; width: 5.8em; } a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; -moz-transition: left 70ms linear; } div.ui-slider-switch a.ui-btn.ui-slider-handle { margin: 1px 0 0 -15px; top: 0; } .ui-slider-inneroffset { margin: 0 16px; position: relative; z-index: 1; } div.ui-slider-switch.ui-slider-mini { width: 5em; height: 29px; } div.ui-slider-switch.ui-slider-mini .ui-slider-inneroffset { margin: 0 15px 0 14px; } div.ui-slider-switch.ui-slider-mini .ui-slider-handle { width: 25px; height: 25px; margin: 1px 0 0 -13px; } div.ui-slider-switch.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: 0; } span.ui-slider-label { position: absolute; text-align: center; width: 100%; overflow: hidden; font-size: 16px; top: 0; line-height: 2; min-height: 100%; border-width: 0; white-space: nowrap; cursor:pointer; } .ui-slider-mini span.ui-slider-label { font-size: 14px; } span.ui-slider-label-a { z-index: 1; left: 0; text-indent: -1.5em; } span.ui-slider-label-b { z-index: 0; right: 0; text-indent: 1.5em;} .ui-slider-inline { width: 120px; display: inline-block; } OpenLP-2.4/openlp/plugins/remotes/html/main.css0000644000175000017500000000322012657640340020604 0ustar raoulraoul/****************************************************************************** * OpenLP - Open Source Lyrics Projection * * --------------------------------------------------------------------------- * * Copyright (c) 2008-2016 OpenLP Developers * * --------------------------------------------------------------------------- * * 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; version 2 of the License. * * * * 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, write to the Free Software Foundation, Inc., 59 * * Temple Place, Suite 330, Boston, MA 02111-1307 USA * ******************************************************************************/ body { background-color: black; font-family: sans-serif; overflow: hidden; } .size { position: absolute; top: 0px; vertical-align: middle; height: 100%; background-size: cover; background-repeat: no-repeat; } OpenLP-2.4/openlp/plugins/remotes/html/jquery.js0000644000175000017500000075572112657640340021047 0ustar raoulraoul/*! * jQuery JavaScript Library v1.7.2 * http://jquery.com/ * * Copyright 2011, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Sizzle.js * http://sizzlejs.com/ * Copyright 2011, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * * Date: Wed Mar 21 12:46:34 2012 -0700 */ (function( window, undefined ) { // Use the correct document accordingly with window argument (sandbox) var document = window.document, navigator = window.navigator, location = window.location; var jQuery = (function() { // Define a local copy of jQuery var jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' return new jQuery.fn.init( selector, context, rootjQuery ); }, // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$, // A central reference to the root jQuery(document) rootjQuery, // A simple way to check for HTML strings or ID strings // Prioritize #id over to avoid XSS via location.hash (#9521) quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, // Check if a string has a non-whitespace character in it rnotwhite = /\S/, // Used for trimming whitespace trimLeft = /^\s+/, trimRight = /\s+$/, // Match a standalone tag rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, // JSON RegExp rvalidchars = /^[\],:{}\s]*$/, rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, // Useragent RegExp rwebkit = /(webkit)[ \/]([\w.]+)/, ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, rmsie = /(msie) ([\w.]+)/, rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, // Matches dashed string for camelizing rdashAlpha = /-([a-z]|[0-9])/ig, rmsPrefix = /^-ms-/, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return ( letter + "" ).toUpperCase(); }, // Keep a UserAgent string for use with jQuery.browser userAgent = navigator.userAgent, // For matching the engine and version of the browser browserMatch, // The deferred used on DOM ready readyList, // The ready event handler DOMContentLoaded, // Save a reference to some core methods toString = Object.prototype.toString, hasOwn = Object.prototype.hasOwnProperty, push = Array.prototype.push, slice = Array.prototype.slice, trim = String.prototype.trim, indexOf = Array.prototype.indexOf, // [[Class]] -> type pairs class2type = {}; jQuery.fn = jQuery.prototype = { constructor: jQuery, init: function( selector, context, rootjQuery ) { var match, elem, ret, doc; // Handle $(""), $(null), or $(undefined) if ( !selector ) { return this; } // Handle $(DOMElement) if ( selector.nodeType ) { this.context = this[0] = selector; this.length = 1; return this; } // The body element only exists once, optimize finding it if ( selector === "body" && !context && document.body ) { this.context = document; this[0] = document.body; this.selector = selector; this.length = 1; return this; } // Handle HTML strings if ( typeof selector === "string" ) { // Are we dealing with HTML string or an ID? if ( selector.charAt(0) === "<" && selector.charAt( 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 = quickExpr.exec( selector ); } // Verify a match, and that no context was specified for #id if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) if ( match[1] ) { context = context instanceof jQuery ? context[0] : context; doc = ( context ? context.ownerDocument || context : document ); // If a single string is passed in and it's a single tag // just do a createElement and skip the rest ret = rsingleTag.exec( selector ); if ( ret ) { if ( jQuery.isPlainObject( context ) ) { selector = [ document.createElement( ret[1] ) ]; jQuery.fn.attr.call( selector, context, true ); } else { selector = [ doc.createElement( ret[1] ) ]; } } else { ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; } return jQuery.merge( this, selector ); // HANDLE: $("#id") } else { elem = document.getElementById( match[2] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[2] ) { return rootjQuery.find( selector ); } // Otherwise, we 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: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }, // Start with an empty selector selector: "", // The current version of jQuery being used jquery: "1.7.2", // The default length of a jQuery object is 0 length: 0, // The number of elements contained in the matched element set size: function() { return this.length; }, toArray: function() { return slice.call( this, 0 ); }, // 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 a 'clean' array this.toArray() : // Return just the object ( num < 0 ? this[ this.length + num ] : this[ num ] ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems, name, selector ) { // Build a new jQuery matched element set var ret = this.constructor(); if ( jQuery.isArray( elems ) ) { push.apply( ret, elems ); } else { jQuery.merge( ret, elems ); } // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; if ( name === "find" ) { ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; } else if ( name ) { ret.selector = this.selector + "." + name + "(" + selector + ")"; } // 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 ); }, ready: function( fn ) { // Attach the listeners jQuery.bindReady(); // Add the callback readyList.add( fn ); return this; }, eq: function( i ) { i = +i; return i === -1 ? this.slice( i ) : this.slice( i, i + 1 ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, slice: function() { return this.pushStack( slice.apply( this, arguments ), "slice", slice.call(arguments).join(",") ); }, map: function( callback ) { return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); })); }, 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: [].sort, splice: [].splice }; // Give the init function the jQuery prototype for later instantiation jQuery.fn.init.prototype = jQuery.fn; 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; target = arguments[1] || {}; // skip the boolean and the target i = 2; } // 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 ( length === i ) { 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({ noConflict: function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }, // 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 ) { // Either a released hold or an DOMready/load event and not yet ready if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready, 1 ); } // 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.fireWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.trigger ) { jQuery( document ).trigger( "ready" ).off( "ready" ); } } }, bindReady: function() { if ( readyList ) { return; } readyList = jQuery.Callbacks( "once memory" ); // Catch cases where $(document).ready() is called after the // browser event has already occurred. if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready return setTimeout( jQuery.ready, 1 ); } // Mozilla, Opera and webkit nightlies currently support this event if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", jQuery.ready, false ); // If IE event model is used } else if ( document.attachEvent ) { // ensure firing before onload, // maybe late but safe also for iframes document.attachEvent( "onreadystatechange", DOMContentLoaded ); // A fallback to window.onload, that will always work window.attachEvent( "onload", jQuery.ready ); // If IE and not a frame // continually check to see if the document is ready var toplevel = false; try { toplevel = window.frameElement == null; } catch(e) {} if ( document.documentElement.doScroll && toplevel ) { doScrollCheck(); } } }, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return jQuery.type(obj) === "function"; }, isArray: Array.isArray || function( obj ) { return jQuery.type(obj) === "array"; }, isWindow: function( obj ) { return obj != null && obj == obj.window; }, isNumeric: function( obj ) { return !isNaN( parseFloat(obj) ) && isFinite( obj ); }, type: function( obj ) { return obj == null ? String( obj ) : class2type[ toString.call(obj) ] || "object"; }, isPlainObject: function( obj ) { // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } try { // Not own constructor property must be Object if ( obj.constructor && !hasOwn.call(obj, "constructor") && !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { return false; } } catch ( e ) { // IE8,9 Will throw exceptions on certain host objects #9897 return false; } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. var key; for ( key in obj ) {} return key === undefined || hasOwn.call( obj, key ); }, isEmptyObject: function( obj ) { for ( var name in obj ) { return false; } return true; }, error: function( msg ) { throw new Error( msg ); }, parseJSON: function( data ) { if ( typeof data !== "string" || !data ) { return null; } // Make sure leading/trailing whitespace is removed (IE can't handle it) data = jQuery.trim( data ); // Attempt to parse using the native JSON parser first if ( window.JSON && window.JSON.parse ) { return window.JSON.parse( data ); } // Make sure the incoming data is actual JSON // Logic borrowed from http://json.org/json2.js if ( rvalidchars.test( data.replace( rvalidescape, "@" ) .replace( rvalidtokens, "]" ) .replace( rvalidbraces, "")) ) { return ( new Function( "return " + data ) )(); } jQuery.error( "Invalid JSON: " + data ); }, // Cross-browser xml parsing parseXML: function( data ) { if ( typeof data !== "string" || !data ) { return null; } var xml, tmp; try { if ( window.DOMParser ) { // Standard tmp = new DOMParser(); xml = tmp.parseFromString( data , "text/xml" ); } else { // IE xml = new ActiveXObject( "Microsoft.XMLDOM" ); xml.async = "false"; xml.loadXML( data ); } } catch( e ) { xml = undefined; } if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }, noop: function() {}, // Evaluates a script in a global context // Workarounds based on findings by Jim Driscoll // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context globalEval: function( data ) { if ( data && rnotwhite.test( data ) ) { // We use execScript on Internet Explorer // We use an anonymous function so that context is window // rather than jQuery in Firefox ( window.execScript || function( data ) { window[ "eval" ].call( window, data ); } )( data ); } }, // Convert dashed to camelCase; used by the css and data modules // 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.toUpperCase() === name.toUpperCase(); }, // args is for internal usage only each: function( object, callback, args ) { var name, i = 0, length = object.length, isObj = length === undefined || jQuery.isFunction( object ); if ( args ) { if ( isObj ) { for ( name in object ) { if ( callback.apply( object[ name ], args ) === false ) { break; } } } else { for ( ; i < length; ) { if ( callback.apply( object[ i++ ], args ) === false ) { break; } } } // A special, fast, case for the most common use of each } else { if ( isObj ) { for ( name in object ) { if ( callback.call( object[ name ], name, object[ name ] ) === false ) { break; } } } else { for ( ; i < length; ) { if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { break; } } } } return object; }, // Use native String.trim function wherever possible trim: trim ? function( text ) { return text == null ? "" : trim.call( text ); } : // Otherwise use our own trimming functionality function( text ) { return text == null ? "" : text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); }, // results is for internal usage only makeArray: function( array, results ) { var ret = results || []; if ( array != null ) { // The window, strings (and functions) also have 'length' // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 var type = jQuery.type( array ); if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { push.call( ret, array ); } else { jQuery.merge( ret, array ); } } return ret; }, inArray: function( elem, array, i ) { var len; if ( array ) { if ( indexOf ) { return indexOf.call( array, elem, i ); } len = array.length; i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; for ( ; i < len; i++ ) { // Skip accessing in sparse arrays if ( i in array && array[ i ] === elem ) { return i; } } } return -1; }, merge: function( first, second ) { var i = first.length, j = 0; if ( typeof second.length === "number" ) { for ( var l = second.length; j < l; j++ ) { first[ i++ ] = second[ j ]; } } else { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, inv ) { var ret = [], retVal; inv = !!inv; // Go through the array, only saving the items // that pass the validator function for ( var i = 0, length = elems.length; i < length; i++ ) { retVal = !!callback( elems[ i ], i ); if ( inv !== retVal ) { ret.push( elems[ i ] ); } } return ret; }, // arg is for internal usage only map: function( elems, callback, arg ) { var value, key, ret = [], i = 0, length = elems.length, // jquery objects are treated as arrays isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; // Go through the array, translating each of the items to their if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } // Go through every key on the object, } else { for ( key in elems ) { value = callback( elems[ key ], key, arg ); if ( value != null ) { ret[ ret.length ] = value; } } } // Flatten any nested arrays return ret.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 ) { if ( typeof context === "string" ) { var 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 var args = slice.call( arguments, 2 ), proxy = function() { return fn.apply( context, 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 || proxy.guid || jQuery.guid++; return proxy; }, // Mutifunctional method to get and set values to a collection // The value/s can optionally be executed if it's a function access: function( elems, fn, key, value, chainable, emptyGet, pass ) { var exec, bulk = key == null, i = 0, length = elems.length; // Sets many values if ( key && typeof key === "object" ) { for ( i in key ) { jQuery.access( elems, fn, i, key[i], 1, emptyGet, value ); } chainable = 1; // Sets one value } else if ( value !== undefined ) { // Optionally, function values get executed if exec is true exec = pass === undefined && jQuery.isFunction( value ); if ( bulk ) { // Bulk operations only iterate when executing function values if ( exec ) { exec = fn; fn = function( elem, key, value ) { return exec.call( jQuery( elem ), value ); }; // Otherwise they run against the entire set } else { fn.call( elems, value ); fn = null; } } if ( fn ) { for (; i < length; i++ ) { fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); } } chainable = 1; } return chainable ? elems : // Gets bulk ? fn.call( elems ) : length ? fn( elems[0], key ) : emptyGet; }, now: function() { return ( new Date() ).getTime(); }, // Use of jQuery.browser is frowned upon. // More details: http://docs.jquery.com/Utilities/jQuery.browser uaMatch: function( ua ) { ua = ua.toLowerCase(); var match = rwebkit.exec( ua ) || ropera.exec( ua ) || rmsie.exec( ua ) || ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || []; return { browser: match[1] || "", version: match[2] || "0" }; }, sub: function() { function jQuerySub( selector, context ) { return new jQuerySub.fn.init( selector, context ); } jQuery.extend( true, jQuerySub, this ); jQuerySub.superclass = this; jQuerySub.fn = jQuerySub.prototype = this(); jQuerySub.fn.constructor = jQuerySub; jQuerySub.sub = this.sub; jQuerySub.fn.init = function init( selector, context ) { if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { context = jQuerySub( context ); } return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); }; jQuerySub.fn.init.prototype = jQuerySub.fn; var rootjQuerySub = jQuerySub(document); return jQuerySub; }, browser: {} }); // Populate the class2type map jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); }); browserMatch = jQuery.uaMatch( userAgent ); if ( browserMatch.browser ) { jQuery.browser[ browserMatch.browser ] = true; jQuery.browser.version = browserMatch.version; } // Deprecated, use jQuery.browser.webkit instead if ( jQuery.browser.webkit ) { jQuery.browser.safari = true; } // IE doesn't match non-breaking spaces with \s if ( rnotwhite.test( "\xA0" ) ) { trimLeft = /^[\s\xA0]+/; trimRight = /[\s\xA0]+$/; } // All jQuery objects should point back to these rootjQuery = jQuery(document); // Cleanup functions for the document ready method if ( document.addEventListener ) { DOMContentLoaded = function() { document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); jQuery.ready(); }; } else if ( document.attachEvent ) { DOMContentLoaded = function() { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( document.readyState === "complete" ) { document.detachEvent( "onreadystatechange", DOMContentLoaded ); jQuery.ready(); } }; } // The DOM ready check for Internet Explorer function doScrollCheck() { if ( jQuery.isReady ) { return; } try { // If IE is used, use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ document.documentElement.doScroll("left"); } catch(e) { setTimeout( doScrollCheck, 1 ); return; } // and execute any waiting functions jQuery.ready(); } return jQuery; })(); // String to Object flags format cache var flagsCache = {}; // Convert String-formatted flags into Object-formatted ones and store in cache function createFlags( flags ) { var object = flagsCache[ flags ] = {}, i, length; flags = flags.split( /\s+/ ); for ( i = 0, length = flags.length; i < length; i++ ) { object[ flags[i] ] = true; } return object; } /* * Create a callback list using the following parameters: * * flags: an optional list of space-separated flags that will change how * the callback list behaves * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible flags: * * 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( flags ) { // Convert flags from String-formatted to Object-formatted // (we check in cache first) flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; var // Actual callback list list = [], // Stack of fire calls for repeatable lists stack = [], // 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, // Add one or several callbacks to the list add = function( args ) { var i, length, elem, type, actual; for ( i = 0, length = args.length; i < length; i++ ) { elem = args[ i ]; type = jQuery.type( elem ); if ( type === "array" ) { // Inspect recursively add( elem ); } else if ( type === "function" ) { // Add if not in unique mode and callback is not in if ( !flags.unique || !self.has( elem ) ) { list.push( elem ); } } } }, // Fire callbacks fire = function( context, args ) { args = args || []; memory = !flags.memory || [ context, args ]; fired = true; firing = true; firingIndex = firingStart || 0; firingStart = 0; firingLength = list.length; for ( ; list && firingIndex < firingLength; firingIndex++ ) { if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { memory = true; // Mark as halted break; } } firing = false; if ( list ) { if ( !flags.once ) { if ( stack && stack.length ) { memory = stack.shift(); self.fireWith( memory[ 0 ], memory[ 1 ] ); } } else if ( memory === true ) { self.disable(); } else { list = []; } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { var length = list.length; add( 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, unless previous // firing was halted (stopOnFalse) } else if ( memory && memory !== true ) { firingStart = length; fire( memory[ 0 ], memory[ 1 ] ); } } return this; }, // Remove a callback from the list remove: function() { if ( list ) { var args = arguments, argIndex = 0, argLength = args.length; for ( ; argIndex < argLength ; argIndex++ ) { for ( var i = 0; i < list.length; i++ ) { if ( args[ argIndex ] === list[ i ] ) { // Handle firingIndex and firingLength if ( firing ) { if ( i <= firingLength ) { firingLength--; if ( i <= firingIndex ) { firingIndex--; } } } // Remove the element list.splice( i--, 1 ); // If we have some unicity property then // we only need to do this once if ( flags.unique ) { break; } } } } } return this; }, // Control if a given callback is in the list has: function( fn ) { if ( list ) { var i = 0, length = list.length; for ( ; i < length; i++ ) { if ( fn === list[ i ] ) { return true; } } } return false; }, // Remove all callbacks from the list empty: function() { list = []; 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 || memory === true ) { 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 ( stack ) { if ( firing ) { if ( !flags.once ) { stack.push( [ context, args ] ); } } else if ( !( flags.once && memory ) ) { fire( context, 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; }; var // Static reference to slice sliceDeferred = [].slice; jQuery.extend({ Deferred: function( func ) { var doneList = jQuery.Callbacks( "once memory" ), failList = jQuery.Callbacks( "once memory" ), progressList = jQuery.Callbacks( "memory" ), state = "pending", lists = { resolve: doneList, reject: failList, notify: progressList }, promise = { done: doneList.add, fail: failList.add, progress: progressList.add, state: function() { return state; }, // Deprecated isResolved: doneList.fired, isRejected: failList.fired, then: function( doneCallbacks, failCallbacks, progressCallbacks ) { deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); return this; }, always: function() { deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); return this; }, pipe: function( fnDone, fnFail, fnProgress ) { return jQuery.Deferred(function( newDefer ) { jQuery.each( { done: [ fnDone, "resolve" ], fail: [ fnFail, "reject" ], progress: [ fnProgress, "notify" ] }, function( handler, data ) { var fn = data[ 0 ], action = data[ 1 ], returned; if ( jQuery.isFunction( fn ) ) { deferred[ handler ](function() { returned = fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); } else { newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); } }); } else { deferred[ handler ]( newDefer[ action ] ); } }); }).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { if ( obj == null ) { obj = promise; } else { for ( var key in promise ) { obj[ key ] = promise[ key ]; } } return obj; } }, deferred = promise.promise({}), key; for ( key in lists ) { deferred[ key ] = lists[ key ].fire; deferred[ key + "With" ] = lists[ key ].fireWith; } // Handle state deferred.done( function() { state = "resolved"; }, failList.disable, progressList.lock ).fail( function() { state = "rejected"; }, doneList.disable, progressList.lock ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( firstParam ) { var args = sliceDeferred.call( arguments, 0 ), i = 0, length = args.length, pValues = new Array( length ), count = length, pCount = length, deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? firstParam : jQuery.Deferred(), promise = deferred.promise(); function resolveFunc( i ) { return function( value ) { args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; if ( !( --count ) ) { deferred.resolveWith( deferred, args ); } }; } function progressFunc( i ) { return function( value ) { pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; deferred.notifyWith( promise, pValues ); }; } if ( length > 1 ) { for ( ; i < length; i++ ) { if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); } else { --count; } } if ( !count ) { deferred.resolveWith( deferred, args ); } } else if ( deferred !== firstParam ) { deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); } return promise; } }); jQuery.support = (function() { var support, all, a, select, opt, input, fragment, tds, events, eventName, i, isSupported, div = document.createElement( "div" ), documentElement = document.documentElement; // Preliminary tests div.setAttribute("className", "t"); div.innerHTML = "
a"; all = div.getElementsByTagName( "*" ); a = div.getElementsByTagName( "a" )[ 0 ]; // Can't get basic test support if ( !all || !all.length || !a ) { return {}; } // First batch of supports tests select = document.createElement( "select" ); opt = select.appendChild( document.createElement("option") ); input = div.getElementsByTagName( "input" )[ 0 ]; support = { // IE strips leading whitespace when .innerHTML is used leadingWhitespace: ( div.firstChild.nodeType === 3 ), // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables tbody: !div.getElementsByTagName("tbody").length, // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE htmlSerialize: !!div.getElementsByTagName("link").length, // Get the style information from getAttribute // (IE uses .cssText instead) style: /top/.test( a.getAttribute("style") ), // Make sure that URLs aren't manipulated // (IE normalizes it by default) hrefNormalized: ( a.getAttribute("href") === "/a" ), // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 opacity: /^0.55/.test( a.style.opacity ), // Verify style float existence // (IE uses styleFloat instead of cssFloat) cssFloat: !!a.style.cssFloat, // Make sure that if no value is specified for a checkbox // that it defaults to "on". // (WebKit defaults to "" instead) checkOn: ( input.value === "on" ), // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: opt.selected, // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) getSetAttribute: div.className !== "t", // Tests for enctype support on a form(#6743) enctype: !!document.createElement("form").enctype, // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", // Will be defined later submitBubbles: true, changeBubbles: true, focusinBubbles: false, deleteExpando: true, noCloneEvent: true, inlineBlockNeedsLayout: false, shrinkWrapBlocks: false, reliableMarginRight: true, pixelMargin: true }; // jQuery.boxModel DEPRECATED in 1.3, use jQuery.support.boxModel instead jQuery.boxModel = support.boxModel = (document.compatMode === "CSS1Compat"); // Make sure checked status is properly cloned input.checked = true; support.noCloneChecked = input.cloneNode( true ).checked; // Make sure that the options inside disabled selects aren't marked as disabled // (WebKit marks them as disabled) select.disabled = true; support.optDisabled = !opt.disabled; // Test to see if it's possible to delete an expando from an element // Fails in Internet Explorer try { delete div.test; } catch( e ) { support.deleteExpando = false; } if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { div.attachEvent( "onclick", function() { // Cloning a node shouldn't copy over any // bound event handlers (IE does this) support.noCloneEvent = false; }); div.cloneNode( true ).fireEvent( "onclick" ); } // Check if a radio maintains its value // after being appended to the DOM input = document.createElement("input"); input.value = "t"; input.setAttribute("type", "radio"); support.radioValue = input.value === "t"; input.setAttribute("checked", "checked"); // #11217 - WebKit loses check when the name is after the checked attribute input.setAttribute( "name", "t" ); div.appendChild( input ); fragment = document.createDocumentFragment(); fragment.appendChild( div.lastChild ); // WebKit doesn't clone checked state correctly in fragments support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; // Check if a disconnected checkbox will retain its checked // value of true after appended to the DOM (IE6/7) support.appendChecked = input.checked; fragment.removeChild( input ); fragment.appendChild( div ); // Technique from Juriy Zaytsev // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ // We only care about the case where non-standard event systems // are used, namely in IE. Short-circuiting here helps us to // avoid an eval call (in setAttribute) which can cause CSP // to go haywire. See: https://developer.mozilla.org/en/Security/CSP if ( div.attachEvent ) { for ( i in { submit: 1, change: 1, focusin: 1 }) { eventName = "on" + i; isSupported = ( eventName in div ); if ( !isSupported ) { div.setAttribute( eventName, "return;" ); isSupported = ( typeof div[ eventName ] === "function" ); } support[ i + "Bubbles" ] = isSupported; } } fragment.removeChild( div ); // Null elements to avoid leaks in IE fragment = select = opt = div = input = null; // Run tests that need a body at doc ready jQuery(function() { var container, outer, inner, table, td, offsetSupport, marginDiv, conMarginTop, style, html, positionTopLeftWidthHeight, paddingMarginBorderVisibility, paddingMarginBorder, body = document.getElementsByTagName("body")[0]; if ( !body ) { // Return for frameset docs that don't have a body return; } conMarginTop = 1; paddingMarginBorder = "padding:0;margin:0;border:"; positionTopLeftWidthHeight = "position:absolute;top:0;left:0;width:1px;height:1px;"; paddingMarginBorderVisibility = paddingMarginBorder + "0;visibility:hidden;"; style = "style='" + positionTopLeftWidthHeight + paddingMarginBorder + "5px solid #000;"; html = "
" + "" + "
"; container = document.createElement("div"); container.style.cssText = paddingMarginBorderVisibility + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; body.insertBefore( container, body.firstChild ); // Construct the test element div = document.createElement("div"); container.appendChild( div ); // Check if table cells still have offsetWidth/Height when they are set // to display:none and there are still other visible table cells in a // table row; if so, offsetWidth/Height are not reliable for use when // determining if an element has been hidden directly using // display:none (it is still safe to use offsets if a parent element is // hidden; don safety goggles and see bug #4512 for more information). // (only IE 8 fails this test) div.innerHTML = "
t
"; tds = div.getElementsByTagName( "td" ); isSupported = ( tds[ 0 ].offsetHeight === 0 ); tds[ 0 ].style.display = ""; tds[ 1 ].style.display = "none"; // Check if empty table cells still have offsetWidth/Height // (IE <= 8 fail this test) support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); // Check if div with explicit width and no margin-right incorrectly // gets computed margin-right based on width of container. For more // info see bug #3333 // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right if ( window.getComputedStyle ) { div.innerHTML = ""; marginDiv = document.createElement( "div" ); marginDiv.style.width = "0"; marginDiv.style.marginRight = "0"; div.style.width = "2px"; div.appendChild( marginDiv ); support.reliableMarginRight = ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; } if ( typeof div.style.zoom !== "undefined" ) { // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving // them layout // (IE < 8 does this) div.innerHTML = ""; div.style.width = div.style.padding = "1px"; div.style.border = 0; div.style.overflow = "hidden"; div.style.display = "inline"; div.style.zoom = 1; support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); // Check if elements with layout shrink-wrap their children // (IE 6 does this) div.style.display = "block"; div.style.overflow = "visible"; div.innerHTML = "
"; support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); } div.style.cssText = positionTopLeftWidthHeight + paddingMarginBorderVisibility; div.innerHTML = html; outer = div.firstChild; inner = outer.firstChild; td = outer.nextSibling.firstChild.firstChild; offsetSupport = { doesNotAddBorder: ( inner.offsetTop !== 5 ), doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) }; inner.style.position = "fixed"; inner.style.top = "20px"; // safari subtracts parent border width here which is 5px offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); inner.style.position = inner.style.top = ""; outer.style.overflow = "hidden"; outer.style.position = "relative"; offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); if ( window.getComputedStyle ) { div.style.marginTop = "1%"; support.pixelMargin = ( window.getComputedStyle( div, null ) || { marginTop: 0 } ).marginTop !== "1%"; } if ( typeof container.style.zoom !== "undefined" ) { container.style.zoom = 1; } body.removeChild( container ); marginDiv = div = container = null; jQuery.extend( support, offsetSupport ); }); return support; })(); var rbrace = /^(?:\{.*\}|\[.*\])$/, rmultiDash = /([A-Z])/g; jQuery.extend({ cache: {}, // Please use with caution uuid: 0, // Unique for each copy of jQuery on the page // Non-digits removed to match rinlinejQuery expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. noData: { "embed": true, // Ban all objects except for Flash (which handle expandos) "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", "applet": true }, hasData: function( elem ) { elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; return !!elem && !isEmptyDataObject( elem ); }, data: function( elem, name, data, pvt /* Internal Use Only */ ) { if ( !jQuery.acceptData( elem ) ) { return; } var privateCache, thisCache, ret, internalKey = jQuery.expando, getByName = typeof name === "string", // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary isNode = elem.nodeType, // Only DOM nodes need the global jQuery cache; JS object data is // attached directly to the object so GC can occur automatically cache = isNode ? jQuery.cache : elem, // Only defining an ID for JS objects if its cache already exists allows // the code to shortcut on the same path as a DOM node with no cache id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, isEvents = name === "events"; // Avoid doing any more work than we need to when trying to get data on an // object that has no data at all if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { return; } if ( !id ) { // Only DOM nodes need a new unique ID for each element since their data // ends up in the global cache if ( isNode ) { elem[ internalKey ] = id = ++jQuery.uuid; } else { id = internalKey; } } if ( !cache[ id ] ) { cache[ id ] = {}; // Avoids exposing jQuery metadata on plain JS objects when the object // is serialized using JSON.stringify if ( !isNode ) { cache[ id ].toJSON = jQuery.noop; } } // An object can be passed to jQuery.data instead of a key/value pair; this gets // shallow copied over onto the existing cache if ( typeof name === "object" || typeof name === "function" ) { if ( pvt ) { cache[ id ] = jQuery.extend( cache[ id ], name ); } else { cache[ id ].data = jQuery.extend( cache[ id ].data, name ); } } privateCache = thisCache = cache[ id ]; // jQuery data() is stored in a separate object inside the object's internal data // cache in order to avoid key collisions between internal data and user-defined // data. if ( !pvt ) { if ( !thisCache.data ) { thisCache.data = {}; } thisCache = thisCache.data; } if ( data !== undefined ) { thisCache[ jQuery.camelCase( name ) ] = data; } // Users should not attempt to inspect the internal events object using jQuery.data, // it is undocumented and subject to change. But does anyone listen? No. if ( isEvents && !thisCache[ name ] ) { return privateCache.events; } // Check for both converted-to-camel and non-converted data property names // If a data property was specified if ( getByName ) { // First Try to find as-is property data ret = thisCache[ name ]; // Test for null|undefined property data if ( ret == null ) { // Try to find the camelCased property ret = thisCache[ jQuery.camelCase( name ) ]; } } else { ret = thisCache; } return ret; }, removeData: function( elem, name, pvt /* Internal Use Only */ ) { if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, l, // Reference to internal data cache key internalKey = jQuery.expando, isNode = elem.nodeType, // See jQuery.data for more information cache = isNode ? jQuery.cache : elem, // See jQuery.data for more information id = isNode ? elem[ internalKey ] : internalKey; // If there is already no cache entry for this object, there is no // purpose in continuing if ( !cache[ id ] ) { return; } if ( name ) { thisCache = pvt ? cache[ id ] : cache[ id ].data; if ( thisCache ) { // Support array or space separated string names for data keys if ( !jQuery.isArray( name ) ) { // try the string as a key before any manipulation if ( name in thisCache ) { name = [ name ]; } else { // split the camel cased version by spaces unless a key with the spaces exists name = jQuery.camelCase( name ); if ( name in thisCache ) { name = [ name ]; } else { name = name.split( " " ); } } } for ( i = 0, l = name.length; i < l; i++ ) { delete thisCache[ name[i] ]; } // If there is no data left in the cache, we want to continue // and let the cache object itself get destroyed if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { return; } } } // See jQuery.data for more information if ( !pvt ) { delete cache[ id ].data; // Don't destroy the parent cache unless the internal data object // had been the only thing left in it if ( !isEmptyDataObject(cache[ id ]) ) { return; } } // Browsers that fail expando deletion also refuse to delete expandos on // the window, but it will allow it on all other JS objects; other browsers // don't care // Ensure that `cache` is not a window object #10080 if ( jQuery.support.deleteExpando || !cache.setInterval ) { delete cache[ id ]; } else { cache[ id ] = null; } // We destroyed the cache and need to eliminate the expando on the node to avoid // false lookups in the cache for entries that no longer exist if ( isNode ) { // IE does not allow us to delete expando properties from nodes, // nor does it have a removeAttribute function on Document nodes; // we must handle all of these cases if ( jQuery.support.deleteExpando ) { delete elem[ internalKey ]; } else if ( elem.removeAttribute ) { elem.removeAttribute( internalKey ); } else { elem[ internalKey ] = null; } } }, // For internal use only. _data: function( elem, name, data ) { return jQuery.data( elem, name, data, true ); }, // A method for determining if a DOM node can handle the data expando acceptData: function( elem ) { if ( elem.nodeName ) { var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; if ( match ) { return !(match === true || elem.getAttribute("classid") !== match); } } return true; } }); jQuery.fn.extend({ data: function( key, value ) { var parts, part, attr, name, l, elem = this[0], i = 0, data = null; // Gets all values if ( key === undefined ) { if ( this.length ) { data = jQuery.data( elem ); if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { attr = elem.attributes; for ( l = attr.length; i < l; i++ ) { name = attr[i].name; if ( name.indexOf( "data-" ) === 0 ) { name = jQuery.camelCase( name.substring(5) ); dataAttr( elem, name, data[ name ] ); } } jQuery._data( elem, "parsedAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each(function() { jQuery.data( this, key ); }); } parts = key.split( ".", 2 ); parts[1] = parts[1] ? "." + parts[1] : ""; part = parts[1] + "!"; return jQuery.access( this, function( value ) { if ( value === undefined ) { data = this.triggerHandler( "getData" + part, [ parts[0] ] ); // Try to fetch any internally stored data first if ( data === undefined && elem ) { data = jQuery.data( elem, key ); data = dataAttr( elem, key, data ); } return data === undefined && parts[1] ? this.data( parts[0] ) : data; } parts[1] = value; this.each(function() { var self = jQuery( this ); self.triggerHandler( "setData" + part, parts ); jQuery.data( this, key, value ); self.triggerHandler( "changeData" + part, parts ); }); }, null, value, arguments.length > 1, null, false ); }, removeData: function( key ) { return this.each(function() { jQuery.removeData( this, key ); }); } }); function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { var 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 : jQuery.isNumeric( data ) ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch( e ) {} // Make sure we set the data so it isn't changed later jQuery.data( elem, key, data ); } else { data = undefined; } } return data; } // checks a cache object for emptiness function isEmptyDataObject( obj ) { for ( var name in obj ) { // if the public data object is empty, the private is still empty if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { continue; } if ( name !== "toJSON" ) { return false; } } return true; } function handleQueueMarkDefer( elem, type, src ) { var deferDataKey = type + "defer", queueDataKey = type + "queue", markDataKey = type + "mark", defer = jQuery._data( elem, deferDataKey ); if ( defer && ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { // Give room for hard-coded callbacks to fire first // and eventually mark/queue something else on the element setTimeout( function() { if ( !jQuery._data( elem, queueDataKey ) && !jQuery._data( elem, markDataKey ) ) { jQuery.removeData( elem, deferDataKey, true ); defer.fire(); } }, 0 ); } } jQuery.extend({ _mark: function( elem, type ) { if ( elem ) { type = ( type || "fx" ) + "mark"; jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); } }, _unmark: function( force, elem, type ) { if ( force !== true ) { type = elem; elem = force; force = false; } if ( elem ) { type = type || "fx"; var key = type + "mark", count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); if ( count ) { jQuery._data( elem, key, count ); } else { jQuery.removeData( elem, key, true ); handleQueueMarkDefer( elem, type, "mark" ); } } }, queue: function( elem, type, data ) { var q; if ( elem ) { type = ( type || "fx" ) + "queue"; q = jQuery._data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !q || jQuery.isArray(data) ) { q = jQuery._data( elem, type, jQuery.makeArray(data) ); } else { q.push( data ); } } return q || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), fn = queue.shift(), hooks = {}; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } jQuery._data( elem, type + ".run", hooks ); fn.call( elem, function() { jQuery.dequeue( elem, type ); }, hooks ); } if ( !queue.length ) { jQuery.removeData( elem, type + "queue " + type + ".run", true ); handleQueueMarkDefer( elem, type, "queue" ); } } }); 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 ); if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); }, dequeue: function( type ) { return this.each(function() { jQuery.dequeue( this, type ); }); }, // Based off of the plugin by Clint Helfers, with permission. // http://blindsignals.com/index.php/2009/07/jquery-delay/ 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 ); }; }); }, 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, object ) { if ( typeof type !== "string" ) { object = type; type = undefined; } type = type || "fx"; var defer = jQuery.Deferred(), elements = this, i = elements.length, count = 1, deferDataKey = type + "defer", queueDataKey = type + "queue", markDataKey = type + "mark", tmp; function resolve() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } } while( i-- ) { if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { count++; tmp.add( resolve ); } } resolve(); return defer.promise( object ); } }); var rclass = /[\n\t\r]/g, rspace = /\s+/, rreturn = /\r/g, rtype = /^(?:button|input)$/i, rfocusable = /^(?:button|input|object|select|textarea)$/i, rclickable = /^a(?:rea)?$/i, rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, getSetAttribute = jQuery.support.getSetAttribute, nodeHook, boolHook, fixSpecified; jQuery.fn.extend({ attr: function( name, value ) { return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each(function() { jQuery.removeAttr( this, name ); }); }, prop: function( name, value ) { return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { name = jQuery.propFix[ name ] || name; return this.each(function() { // try/catch handles cases where IE balks (such as removing a property on window) try { this[ name ] = undefined; delete this[ name ]; } catch( e ) {} }); }, addClass: function( value ) { var classNames, i, l, elem, setClass, c, cl; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).addClass( value.call(this, j, this.className) ); }); } if ( value && typeof value === "string" ) { classNames = value.split( rspace ); for ( i = 0, l = this.length; i < l; i++ ) { elem = this[ i ]; if ( elem.nodeType === 1 ) { if ( !elem.className && classNames.length === 1 ) { elem.className = value; } else { setClass = " " + elem.className + " "; for ( c = 0, cl = classNames.length; c < cl; c++ ) { if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { setClass += classNames[ c ] + " "; } } elem.className = jQuery.trim( setClass ); } } } } return this; }, removeClass: function( value ) { var classNames, i, l, elem, className, c, cl; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).removeClass( value.call(this, j, this.className) ); }); } if ( (value && typeof value === "string") || value === undefined ) { classNames = ( value || "" ).split( rspace ); for ( i = 0, l = this.length; i < l; i++ ) { elem = this[ i ]; if ( elem.nodeType === 1 && elem.className ) { if ( value ) { className = (" " + elem.className + " ").replace( rclass, " " ); for ( c = 0, cl = classNames.length; c < cl; c++ ) { className = className.replace(" " + classNames[ c ] + " ", " "); } elem.className = jQuery.trim( className ); } else { elem.className = ""; } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isBool = typeof stateVal === "boolean"; 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 ), state = stateVal, classNames = value.split( rspace ); while ( (className = classNames[ i++ ]) ) { // check each className given, space seperated list state = isBool ? state : !self.hasClass( className ); self[ state ? "addClass" : "removeClass" ]( className ); } } else if ( type === "undefined" || type === "boolean" ) { if ( this.className ) { // store className if set jQuery._data( this, "__className__", this.className ); } // toggle whole className this.className = this.className || value === false ? "" : jQuery._data( 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 ) > -1 ) { return true; } } return false; }, 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 self = jQuery(this), val; if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call( this, i, self.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 ) { // attributes.value is undefined in Blackberry 4.7 but // uses .value. See #6932 var val = elem.attributes.value; return !val || val.specified ? elem.value : elem.text; } }, select: { get: function( elem ) { var value, i, max, option, index = elem.selectedIndex, values = [], options = elem.options, one = elem.type === "select-one"; // Nothing was selected if ( index < 0 ) { return null; } // Loop through all the selected options i = one ? index : 0; max = one ? index + 1 : options.length; for ( ; i < max; i++ ) { option = options[ i ]; // Don't return options that are disabled or in a disabled optgroup if ( option.selected && (jQuery.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 ); } } // Fixes Bug #2551 -- select.val() broken in IE after form.reset() if ( one && !values.length && options.length ) { return jQuery( options[ index ] ).val(); } return values; }, set: function( elem, value ) { var values = jQuery.makeArray( value ); jQuery(elem).find("option").each(function() { this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; }); if ( !values.length ) { elem.selectedIndex = -1; } return values; } } }, attrFn: { val: true, css: true, html: true, text: true, data: true, width: true, height: true, offset: true }, attr: function( elem, name, value, pass ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set attributes on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } if ( pass && name in jQuery.attrFn ) { return jQuery( elem )[ name ]( value ); } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); // All attributes are lowercase // Grab necessary hook if one is defined if ( notxml ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); return; } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { elem.setAttribute( name, "" + value ); return value; } } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { ret = elem.getAttribute( name ); // Non-existent attributes return null, we normalize to undefined return ret === null ? undefined : ret; } }, removeAttr: function( elem, value ) { var propName, attrNames, name, l, isBool, i = 0; if ( value && elem.nodeType === 1 ) { attrNames = value.toLowerCase().split( rspace ); l = attrNames.length; for ( ; i < l; i++ ) { name = attrNames[ i ]; if ( name ) { propName = jQuery.propFix[ name ] || name; isBool = rboolean.test( name ); // See #9699 for explanation of this approach (setting first, then removal) // Do not do this for boolean attributes (see #10870) if ( !isBool ) { jQuery.attr( elem, name, "" ); } elem.removeAttribute( getSetAttribute ? name : propName ); // Set corresponding property to false for boolean attributes if ( isBool && propName in elem ) { elem[ propName ] = false; } } } } }, attrHooks: { type: { set: function( elem, value ) { // We can't allow the type property to be changed (since it causes problems in IE) if ( rtype.test( elem.nodeName ) && elem.parentNode ) { jQuery.error( "type property can't be changed" ); } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { // Setting the type on a radio button after the value resets the value in IE6-9 // Reset value to it's default in case type is set after value // This is for element creation var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } }, // Use the value property for back compat // Use the nodeHook for button elements in IE6/7 (#1954) value: { get: function( elem, name ) { if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { return nodeHook.get( elem, name ); } return name in elem ? elem.value : null; }, set: function( elem, value, name ) { if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { return nodeHook.set( elem, value, name ); } // Does not return so that setAttribute is also used elem.value = value; } } }, propFix: { tabindex: "tabIndex", readonly: "readOnly", "for": "htmlFor", "class": "className", maxlength: "maxLength", cellspacing: "cellSpacing", cellpadding: "cellPadding", rowspan: "rowSpan", colspan: "colSpan", usemap: "useMap", frameborder: "frameBorder", contenteditable: "contentEditable" }, 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 ) { if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { return ( elem[ name ] = value ); } } else { if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { return elem[ name ]; } } }, propHooks: { tabIndex: { get: function( elem ) { // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ var attributeNode = elem.getAttributeNode("tabindex"); return attributeNode && attributeNode.specified ? parseInt( attributeNode.value, 10 ) : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : undefined; } } } }); // Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; // Hook for boolean attributes boolHook = { get: function( elem, name ) { // Align boolean attributes with corresponding properties // Fall back to attribute presence where some booleans are not supported var attrNode, property = jQuery.prop( elem, name ); return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? name.toLowerCase() : undefined; }, set: function( elem, value, name ) { var propName; if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else { // value is true since we know at this point it's type boolean and not false // Set boolean attributes to the same name and set the DOM property propName = jQuery.propFix[ name ] || name; if ( propName in elem ) { // Only set the IDL specifically if it already exists on the element elem[ propName ] = true; } elem.setAttribute( name, name.toLowerCase() ); } return name; } }; // IE6/7 do not support getting/setting some attributes with get/setAttribute if ( !getSetAttribute ) { fixSpecified = { name: true, id: true, coords: true }; // Use this for any attribute in IE6/7 // This fixes almost every IE6/7 issue nodeHook = jQuery.valHooks.button = { get: function( elem, name ) { var ret; ret = elem.getAttributeNode( name ); return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? ret.nodeValue : undefined; }, set: function( elem, value, name ) { // Set the existing or create a new attribute node var ret = elem.getAttributeNode( name ); if ( !ret ) { ret = document.createAttribute( name ); elem.setAttributeNode( ret ); } return ( ret.nodeValue = value + "" ); } }; // Apply the nodeHook to tabindex jQuery.attrHooks.tabindex.set = nodeHook.set; // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each([ "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { set: function( elem, value ) { if ( value === "" ) { elem.setAttribute( name, "auto" ); return value; } } }); }); // Set contenteditable to false on removals(#10429) // Setting to empty string throws an error as an invalid value jQuery.attrHooks.contenteditable = { get: nodeHook.get, set: function( elem, value, name ) { if ( value === "" ) { value = "false"; } nodeHook.set( elem, value, name ); } }; } // Some attributes require a special call on IE if ( !jQuery.support.hrefNormalized ) { jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { get: function( elem ) { var ret = elem.getAttribute( name, 2 ); return ret === null ? undefined : ret; } }); }); } if ( !jQuery.support.style ) { jQuery.attrHooks.style = { get: function( elem ) { // Return undefined in the case of empty string // Normalize to lowercase since IE uppercases css property names return elem.style.cssText.toLowerCase() || undefined; }, set: function( elem, value ) { return ( elem.style.cssText = "" + value ); } }; } // Safari mis-reports the default selected property of an option // Accessing the parent's selectedIndex property fixes it if ( !jQuery.support.optSelected ) { jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { get: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } return null; } }); } // IE6/7 call enctype encoding if ( !jQuery.support.enctype ) { jQuery.propFix.enctype = "encoding"; } // Radios and checkboxes getter/setter if ( !jQuery.support.checkOn ) { jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { get: function( elem ) { // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified return elem.getAttribute("value") === null ? "on" : elem.value; } }; }); } jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { set: function( elem, value ) { if ( jQuery.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); } } }); }); var rformElems = /^(?:textarea|input|select)$/i, rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, rhoverHack = /(?:^|\s)hover(\.\S+)?\b/, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|contextmenu)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, quickParse = function( selector ) { var quick = rquickIs.exec( selector ); if ( quick ) { // 0 1 2 3 // [ _, tag, id, class ] quick[1] = ( quick[1] || "" ).toLowerCase(); quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); } return quick; }, quickIs = function( elem, m ) { var attrs = elem.attributes || {}; return ( (!m[1] || elem.nodeName.toLowerCase() === m[1]) && (!m[2] || (attrs.id || {}).value === m[2]) && (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) ); }, hoverHack = function( events ) { return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); }; /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { add: function( elem, types, handler, data, selector ) { var elemData, eventHandle, events, t, tns, type, namespaces, handleObj, handleObjIn, quick, handlers, special; // Don't attach events to noData or text/comment nodes (allow plain objects tho) if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { 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 events = elemData.events; if ( !events ) { elemData.events = events = {}; } eventHandle = elemData.handle; if ( !eventHandle ) { elemData.handle = eventHandle = 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 !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : undefined; }; // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events eventHandle.elem = elem; } // Handle multiple events separated by a space // jQuery(...).bind("mouseover mouseout", fn); types = jQuery.trim( hoverHack(types) ).split( " " ); for ( t = 0; t < types.length; t++ ) { tns = rtypenamespace.exec( types[t] ) || []; type = tns[1]; namespaces = ( tns[2] || "" ).split( "." ).sort(); // 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: tns[1], data: data, handler: handler, guid: handler.guid, selector: selector, quick: selector && quickParse( selector ), namespace: namespaces.join(".") }, handleObjIn ); // Init the event handler queue if we're the first handlers = events[ type ]; if ( !handlers ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener/attachEvent if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } 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; } // Nullify elem to prevent memory leaks in IE elem = null; }, global: {}, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), t, tns, type, origType, namespaces, origCount, j, events, special, handle, eventType, handleObj; if ( !elemData || !(events = elemData.events) ) { return; } // Once for each type.namespace in types; type may be omitted types = jQuery.trim( hoverHack( types || "" ) ).split(" "); for ( t = 0; t < types.length; t++ ) { tns = rtypenamespace.exec( types[t] ) || []; type = origType = tns[1]; namespaces = tns[2]; // 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; eventType = events[ type ] || []; origCount = eventType.length; namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; // Remove matching events for ( j = 0; j < eventType.length; j++ ) { handleObj = eventType[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !namespaces || namespaces.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { eventType.splice( j--, 1 ); if ( handleObj.selector ) { eventType.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 ( eventType.length === 0 && origCount !== eventType.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { handle = elemData.handle; if ( handle ) { handle.elem = null; } // removeData also checks for emptiness and clears the expando if empty // so use it instead of delete jQuery.removeData( elem, [ "events", "handle" ], true ); } }, // Events that are safe to short-circuit if no handlers are attached. // Native DOM events should not be added, they may have inline handlers. customEvent: { "getData": true, "setData": true, "changeData": true }, trigger: function( event, data, elem, onlyHandlers ) { // Don't do events on text and comment nodes if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { return; } // Event object or event type var type = event.type || event, namespaces = [], cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; // 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 ) { // Exclusive events trigger only for the exact event (no namespaces) type = type.slice(0, -1); exclusive = true; } if ( type.indexOf( "." ) >= 0 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split("."); type = namespaces.shift(); namespaces.sort(); } if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { // No jQuery handlers for this event type, and it can't have inline handlers return; } // Caller can pass in an Event, Object, or just an event type string event = typeof event === "object" ? // jQuery.Event object event[ jQuery.expando ] ? event : // Object literal new jQuery.Event( type, event ) : // Just the event type (string) new jQuery.Event( type ); event.type = type; event.isTrigger = true; event.exclusive = exclusive; event.namespace = namespaces.join( "." ); event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; // Handle a global trigger if ( !elem ) { // TODO: Stop taunting the data cache; remove global events and always attach to document cache = jQuery.cache; for ( i in cache ) { if ( cache[ i ].events && cache[ i ].events[ type ] ) { jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); } } return; } // 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 ? jQuery.makeArray( data ) : []; data.unshift( event ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( 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) eventPath = [[ elem, special.bindType || type ]]; if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { bubbleType = special.delegateType || type; cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; old = null; for ( ; cur; cur = cur.parentNode ) { eventPath.push([ cur, bubbleType ]); old = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( old && old === elem.ownerDocument ) { eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); } } // Fire handlers on the event path for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { cur = eventPath[i][0]; event.type = eventPath[i][1]; handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Note that this is a bare JS function and not a jQuery handler handle = ontype && cur[ ontype ]; if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === 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( elem.ownerDocument, data ) === false) && !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Can't use an .isFunction() check here because IE6/7 fails that test. // Don't do default actions on window, that's where global variables be (#6170) // IE<9 dies on focus/blur to hidden element (#1486) if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method old = elem[ ontype ]; if ( old ) { 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 ( old ) { elem[ ontype ] = old; } } } } return event.result; }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event || window.event ); var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), delegateCount = handlers.delegateCount, args = [].slice.call( arguments, 0 ), run_all = !event.exclusive && !event.namespace, special = jQuery.event.special[ event.type ] || {}, handlerQueue = [], i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; // 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 that should run if there are delegated events // Avoid non-left-click bubbling in Firefox (#3861) if ( delegateCount && !(event.button && event.type === "click") ) { // Pregenerate a single jQuery object for reuse with .is() jqcur = jQuery(this); jqcur.context = this.ownerDocument || this; for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { // Don't process events on disabled elements (#6911, #8165) if ( cur.disabled !== true ) { selMatch = {}; matches = []; jqcur[0] = cur; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; sel = handleObj.selector; if ( selMatch[ sel ] === undefined ) { selMatch[ sel ] = ( handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) ); } if ( selMatch[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push({ elem: cur, matches: matches }); } } } } // Add the remaining (directly-bound) handlers if ( handlers.length > delegateCount ) { handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); } // Run delegates first; they may want to stop propagation beneath us for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { matched = handlerQueue[ i ]; event.currentTarget = matched.elem; for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { handleObj = matched.matches[ j ]; // Triggered event must either 1) be non-exclusive and have no namespace, or // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { event.data = handleObj.data; event.handleObj = handleObj; ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) .apply( matched.elem, args ); if ( ret !== undefined ) { event.result = ret; if ( 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; }, // Includes some event props shared by KeyEvent and MouseEvent // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** props: "attrChange attrName relatedNode srcElement 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 fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), filter: function( event, original ) { var eventDoc, doc, body, button = original.button, fromElement = original.fromElement; // 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 relatedTarget, if necessary if ( !event.relatedTarget && fromElement ) { event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; } // 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, originalEvent = event, fixHook = jQuery.event.fixHooks[ event.type ] || {}, copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = jQuery.Event( originalEvent ); for ( i = copy.length; i; ) { prop = copy[ --i ]; event[ prop ] = originalEvent[ prop ]; } // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) if ( !event.target ) { event.target = originalEvent.srcElement || document; } // Target should not be a text node (#504, Safari) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) if ( event.metaKey === undefined ) { event.metaKey = event.ctrlKey; } return fixHook.filter? fixHook.filter( event, originalEvent ) : event; }, special: { ready: { // Make sure the ready event is setup setup: jQuery.bindReady }, load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, focus: { delegateType: "focusin" }, blur: { delegateType: "focusout" }, beforeunload: { setup: function( data, namespaces, eventHandle ) { // We only want to do this special case on windows if ( jQuery.isWindow( this ) ) { this.onbeforeunload = eventHandle; } }, teardown: function( namespaces, eventHandle ) { if ( this.onbeforeunload === eventHandle ) { this.onbeforeunload = null; } } } }, 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(); } } }; // Some plugins are using, but it's undocumented/deprecated and will be removed. // The 1.7 special event interface should provide all the hooks needed now. jQuery.event.handle = jQuery.event.dispatch; jQuery.removeEvent = document.removeEventListener ? function( elem, type, handle ) { if ( elem.removeEventListener ) { elem.removeEventListener( type, handle, false ); } } : function( elem, type, handle ) { if ( elem.detachEvent ) { elem.detachEvent( "on" + type, handle ); } }; 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.returnValue === false || src.getPreventDefault && src.getPreventDefault() ) ? 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; }; function returnFalse() { return false; } function returnTrue() { return 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 = { preventDefault: function() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if ( !e ) { return; } // if preventDefault exists run it on the original event if ( e.preventDefault ) { e.preventDefault(); // otherwise set the returnValue property of the original event to false (IE) } else { e.returnValue = false; } }, stopPropagation: function() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if ( !e ) { return; } // if stopPropagation exists run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // otherwise set the cancelBubble property of the original event to true (IE) e.cancelBubble = true; }, stopImmediatePropagation: function() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; // Create mouseenter/leave events using mouseover/out and event-time checks jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var target = this, related = event.relatedTarget, handleObj = event.handleObj, selector = handleObj.selector, ret; // 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; } }; }); // IE submit delegation if ( !jQuery.support.submitBubbles ) { jQuery.event.special.submit = { setup: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Lazy-add a submit handler when a descendant form may potentially be submitted jQuery.event.add( this, "click._submit keypress._submit", function( e ) { // Node name check avoids a VML-related crash in IE (#9807) var elem = e.target, form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; if ( form && !form._submit_attached ) { jQuery.event.add( form, "submit._submit", function( event ) { event._submit_bubble = true; }); form._submit_attached = true; } }); // return undefined since we don't need an event listener }, postDispatch: function( event ) { // If form was submitted by the user, bubble the event up the tree if ( event._submit_bubble ) { delete event._submit_bubble; if ( this.parentNode && !event.isTrigger ) { jQuery.event.simulate( "submit", this.parentNode, event, true ); } } }, teardown: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Remove delegated handlers; cleanData eventually reaps submit handlers attached above jQuery.event.remove( this, "._submit" ); } }; } // IE change delegation and checkbox/radio fix if ( !jQuery.support.changeBubbles ) { jQuery.event.special.change = { setup: function() { if ( rformElems.test( this.nodeName ) ) { // IE doesn't fire change on a check/radio until blur; trigger it on click // after a propertychange. Eat the blur-change in special.change.handle. // This still fires onchange a second time for check/radio after blur. if ( this.type === "checkbox" || this.type === "radio" ) { jQuery.event.add( this, "propertychange._change", function( event ) { if ( event.originalEvent.propertyName === "checked" ) { this._just_changed = true; } }); jQuery.event.add( this, "click._change", function( event ) { if ( this._just_changed && !event.isTrigger ) { this._just_changed = false; jQuery.event.simulate( "change", this, event, true ); } }); } return false; } // Delegated event; lazy-add a change handler on descendant inputs jQuery.event.add( this, "beforeactivate._change", function( e ) { var elem = e.target; if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { jQuery.event.add( elem, "change._change", function( event ) { if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { jQuery.event.simulate( "change", this.parentNode, event, true ); } }); elem._change_attached = true; } }); }, handle: function( event ) { var elem = event.target; // Swallow native change events from checkbox/radio, we already triggered them above if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { return event.handleObj.handler.apply( this, arguments ); } }, teardown: function() { jQuery.event.remove( this, "._change" ); return rformElems.test( this.nodeName ); } }; } // Create "bubbling" focus and blur events if ( !jQuery.support.focusinBubbles ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler while someone wants focusin/focusout var attaches = 0, handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }; jQuery.event.special[ fix ] = { setup: function() { if ( attaches++ === 0 ) { document.addEventListener( orig, handler, true ); } }, teardown: function() { if ( --attaches === 0 ) { document.removeEventListener( orig, handler, true ); } } }; }); } 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" ) { // && selector != null // ( 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 ) { if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event var 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 ( var 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 ); }); }, bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, live: function( types, data, fn ) { jQuery( this.context ).on( types, this.selector, data, fn ); return this; }, die: function( types, fn ) { jQuery( this.context ).off( types, this.selector || "**", fn ); return this; }, 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 ); }, trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); }); }, triggerHandler: function( type, data ) { if ( this[0] ) { return jQuery.event.trigger( type, data, this[0], true ); } }, toggle: function( fn ) { // Save reference to arguments for access in closure var args = arguments, guid = fn.guid || jQuery.guid++, i = 0, toggler = function( event ) { // Figure out which function to execute var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); // Make sure that clicks stop event.preventDefault(); // and execute the function return args[ lastToggle ].apply( this, arguments ) || false; }; // link all the functions, so any of them can unbind this click handler toggler.guid = guid; while ( i < args.length ) { args[ i++ ].guid = guid; } return this.click( toggler ); }, hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } }); 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 ) { if ( fn == null ) { fn = data; data = null; } return arguments.length > 0 ? this.on( name, null, data, fn ) : this.trigger( name ); }; if ( jQuery.attrFn ) { jQuery.attrFn[ name ] = true; } if ( rkeyEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; } if ( rmouseEvent.test( name ) ) { jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; } }); /*! * Sizzle CSS Selector Engine * Copyright 2011, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ */ (function(){ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, expando = "sizcache" + (Math.random() + '').replace('.', ''), done = 0, toString = Object.prototype.toString, hasDuplicate = false, baseHasDuplicate = true, rBackslash = /\\/g, rReturn = /\r\n/g, rNonWord = /\W/; // Here we check if the JavaScript engine is using some sort of // optimization where it does not always call our comparision // function. If that is the case, discard the hasDuplicate value. // Thus far that includes Google Chrome. [0, 0].sort(function() { baseHasDuplicate = false; return 0; }); var Sizzle = function( selector, context, results, seed ) { results = results || []; context = context || document; var origContext = context; if ( context.nodeType !== 1 && context.nodeType !== 9 ) { return []; } if ( !selector || typeof selector !== "string" ) { return results; } var m, set, checkSet, extra, ret, cur, pop, i, prune = true, contextXML = Sizzle.isXML( context ), parts = [], soFar = selector; // Reset the position of the chunker regexp (start from head) do { chunker.exec( "" ); m = chunker.exec( soFar ); if ( m ) { soFar = m[3]; parts.push( m[1] ); if ( m[2] ) { extra = m[3]; break; } } } while ( m ); if ( parts.length > 1 && origPOS.exec( selector ) ) { if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { set = posProcess( parts[0] + parts[1], context, seed ); } else { set = Expr.relative[ parts[0] ] ? [ context ] : Sizzle( parts.shift(), context ); while ( parts.length ) { selector = parts.shift(); if ( Expr.relative[ selector ] ) { selector += parts.shift(); } set = posProcess( selector, set, seed ); } } } else { // Take a shortcut and set the context if the root selector is an ID // (but not if it'll be faster if the inner selector is an ID) if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { ret = Sizzle.find( parts.shift(), context, contextXML ); context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0]; } if ( context ) { ret = seed ? { expr: parts.pop(), set: makeArray(seed) } : Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set; if ( parts.length > 0 ) { checkSet = makeArray( set ); } else { prune = false; } while ( parts.length ) { cur = parts.pop(); pop = cur; if ( !Expr.relative[ cur ] ) { cur = ""; } else { pop = parts.pop(); } if ( pop == null ) { pop = context; } Expr.relative[ cur ]( checkSet, pop, contextXML ); } } else { checkSet = parts = []; } } if ( !checkSet ) { checkSet = set; } if ( !checkSet ) { Sizzle.error( cur || selector ); } if ( toString.call(checkSet) === "[object Array]" ) { if ( !prune ) { results.push.apply( results, checkSet ); } else if ( context && context.nodeType === 1 ) { for ( i = 0; checkSet[i] != null; i++ ) { if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { results.push( set[i] ); } } } else { for ( i = 0; checkSet[i] != null; i++ ) { if ( checkSet[i] && checkSet[i].nodeType === 1 ) { results.push( set[i] ); } } } } else { makeArray( checkSet, results ); } if ( extra ) { Sizzle( extra, origContext, results, seed ); Sizzle.uniqueSort( results ); } return results; }; Sizzle.uniqueSort = function( results ) { if ( sortOrder ) { hasDuplicate = baseHasDuplicate; results.sort( sortOrder ); if ( hasDuplicate ) { for ( var i = 1; i < results.length; i++ ) { if ( results[i] === results[ i - 1 ] ) { results.splice( i--, 1 ); } } } } return results; }; Sizzle.matches = function( expr, set ) { return Sizzle( expr, null, null, set ); }; Sizzle.matchesSelector = function( node, expr ) { return Sizzle( expr, null, null, [node] ).length > 0; }; Sizzle.find = function( expr, context, isXML ) { var set, i, len, match, type, left; if ( !expr ) { return []; } for ( i = 0, len = Expr.order.length; i < len; i++ ) { type = Expr.order[i]; if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { left = match[1]; match.splice( 1, 1 ); if ( left.substr( left.length - 1 ) !== "\\" ) { match[1] = (match[1] || "").replace( rBackslash, "" ); set = Expr.find[ type ]( match, context, isXML ); if ( set != null ) { expr = expr.replace( Expr.match[ type ], "" ); break; } } } } if ( !set ) { set = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( "*" ) : []; } return { set: set, expr: expr }; }; Sizzle.filter = function( expr, set, inplace, not ) { var match, anyFound, type, found, item, filter, left, i, pass, old = expr, result = [], curLoop = set, isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); while ( expr && set.length ) { for ( type in Expr.filter ) { if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { filter = Expr.filter[ type ]; left = match[1]; anyFound = false; match.splice(1,1); if ( left.substr( left.length - 1 ) === "\\" ) { continue; } if ( curLoop === result ) { result = []; } if ( Expr.preFilter[ type ] ) { match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); if ( !match ) { anyFound = found = true; } else if ( match === true ) { continue; } } if ( match ) { for ( i = 0; (item = curLoop[i]) != null; i++ ) { if ( item ) { found = filter( item, match, i, curLoop ); pass = not ^ found; if ( inplace && found != null ) { if ( pass ) { anyFound = true; } else { curLoop[i] = false; } } else if ( pass ) { result.push( item ); anyFound = true; } } } } if ( found !== undefined ) { if ( !inplace ) { curLoop = result; } expr = expr.replace( Expr.match[ type ], "" ); if ( !anyFound ) { return []; } break; } } } // Improper expression if ( expr === old ) { if ( anyFound == null ) { Sizzle.error( expr ); } else { break; } } old = expr; } return curLoop; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; /** * Utility function for retreiving the text value of an array of DOM nodes * @param {Array|Element} elem */ var getText = Sizzle.getText = function( elem ) { var i, node, nodeType = elem.nodeType, ret = ""; if ( nodeType ) { if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent || innerText for elements if ( typeof elem.textContent === 'string' ) { return elem.textContent; } else if ( typeof elem.innerText === 'string' ) { // Replace IE's carriage returns return elem.innerText.replace( rReturn, '' ); } else { // Traverse it's children for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } } else { // If no nodeType, this is expected to be an array for ( i = 0; (node = elem[i]); i++ ) { // Do not traverse comment nodes if ( node.nodeType !== 8 ) { ret += getText( node ); } } } return ret; }; var Expr = Sizzle.selectors = { order: [ "ID", "NAME", "TAG" ], match: { ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ }, leftMatch: {}, attrMap: { "class": "className", "for": "htmlFor" }, attrHandle: { href: function( elem ) { return elem.getAttribute( "href" ); }, type: function( elem ) { return elem.getAttribute( "type" ); } }, relative: { "+": function(checkSet, part){ var isPartStr = typeof part === "string", isTag = isPartStr && !rNonWord.test( part ), isPartStrNotTag = isPartStr && !isTag; if ( isTag ) { part = part.toLowerCase(); } for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { if ( (elem = checkSet[i]) ) { while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? elem || false : elem === part; } } if ( isPartStrNotTag ) { Sizzle.filter( part, checkSet, true ); } }, ">": function( checkSet, part ) { var elem, isPartStr = typeof part === "string", i = 0, l = checkSet.length; if ( isPartStr && !rNonWord.test( part ) ) { part = part.toLowerCase(); for ( ; i < l; i++ ) { elem = checkSet[i]; if ( elem ) { var parent = elem.parentNode; checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; } } } else { for ( ; i < l; i++ ) { elem = checkSet[i]; if ( elem ) { checkSet[i] = isPartStr ? elem.parentNode : elem.parentNode === part; } } if ( isPartStr ) { Sizzle.filter( part, checkSet, true ); } } }, "": function(checkSet, part, isXML){ var nodeCheck, doneName = done++, checkFn = dirCheck; if ( typeof part === "string" && !rNonWord.test( part ) ) { part = part.toLowerCase(); nodeCheck = part; checkFn = dirNodeCheck; } checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); }, "~": function( checkSet, part, isXML ) { var nodeCheck, doneName = done++, checkFn = dirCheck; if ( typeof part === "string" && !rNonWord.test( part ) ) { part = part.toLowerCase(); nodeCheck = part; checkFn = dirNodeCheck; } checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); } }, find: { ID: function( match, context, isXML ) { if ( typeof context.getElementById !== "undefined" && !isXML ) { var m = context.getElementById(match[1]); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 return m && m.parentNode ? [m] : []; } }, NAME: function( match, context ) { if ( typeof context.getElementsByName !== "undefined" ) { var ret = [], results = context.getElementsByName( match[1] ); for ( var i = 0, l = results.length; i < l; i++ ) { if ( results[i].getAttribute("name") === match[1] ) { ret.push( results[i] ); } } return ret.length === 0 ? null : ret; } }, TAG: function( match, context ) { if ( typeof context.getElementsByTagName !== "undefined" ) { return context.getElementsByTagName( match[1] ); } } }, preFilter: { CLASS: function( match, curLoop, inplace, result, not, isXML ) { match = " " + match[1].replace( rBackslash, "" ) + " "; if ( isXML ) { return match; } for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { if ( elem ) { if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { if ( !inplace ) { result.push( elem ); } } else if ( inplace ) { curLoop[i] = false; } } } return false; }, ID: function( match ) { return match[1].replace( rBackslash, "" ); }, TAG: function( match, curLoop ) { return match[1].replace( rBackslash, "" ).toLowerCase(); }, CHILD: function( match ) { if ( match[1] === "nth" ) { if ( !match[2] ) { Sizzle.error( match[0] ); } match[2] = match[2].replace(/^\+|\s*/g, ''); // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); // calculate the numbers (first)n+(last) including if they are negative match[2] = (test[1] + (test[2] || 1)) - 0; match[3] = test[3] - 0; } else if ( match[2] ) { Sizzle.error( match[0] ); } // TODO: Move to normal caching system match[0] = done++; return match; }, ATTR: function( match, curLoop, inplace, result, not, isXML ) { var name = match[1] = match[1].replace( rBackslash, "" ); if ( !isXML && Expr.attrMap[name] ) { match[1] = Expr.attrMap[name]; } // Handle if an un-quoted value was used match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); if ( match[2] === "~=" ) { match[4] = " " + match[4] + " "; } return match; }, PSEUDO: function( match, curLoop, inplace, result, not ) { if ( match[1] === "not" ) { // If we're dealing with a complex expression, or a simple one if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { match[3] = Sizzle(match[3], null, null, curLoop); } else { var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); if ( !inplace ) { result.push.apply( result, ret ); } return false; } } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { return true; } return match; }, POS: function( match ) { match.unshift( true ); return match; } }, filters: { enabled: function( elem ) { return elem.disabled === false && elem.type !== "hidden"; }, disabled: function( elem ) { return elem.disabled === true; }, checked: function( elem ) { return elem.checked === true; }, 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; }, parent: function( elem ) { return !!elem.firstChild; }, empty: function( elem ) { return !elem.firstChild; }, has: function( elem, i, match ) { return !!Sizzle( match[3], elem ).length; }, header: function( elem ) { return (/h\d/i).test( elem.nodeName ); }, text: function( elem ) { var attr = elem.getAttribute( "type" ), type = elem.type; // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) // use getAttribute instead to test this case return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); }, radio: function( elem ) { return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; }, checkbox: function( elem ) { return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; }, file: function( elem ) { return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; }, password: function( elem ) { return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; }, submit: function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && "submit" === elem.type; }, image: function( elem ) { return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; }, reset: function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && "reset" === elem.type; }, button: function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && "button" === elem.type || name === "button"; }, input: function( elem ) { return (/input|select|textarea|button/i).test( elem.nodeName ); }, focus: function( elem ) { return elem === elem.ownerDocument.activeElement; } }, setFilters: { first: function( elem, i ) { return i === 0; }, last: function( elem, i, match, array ) { return i === array.length - 1; }, even: function( elem, i ) { return i % 2 === 0; }, odd: function( elem, i ) { return i % 2 === 1; }, lt: function( elem, i, match ) { return i < match[3] - 0; }, gt: function( elem, i, match ) { return i > match[3] - 0; }, nth: function( elem, i, match ) { return match[3] - 0 === i; }, eq: function( elem, i, match ) { return match[3] - 0 === i; } }, filter: { PSEUDO: function( elem, match, i, array ) { var name = match[1], filter = Expr.filters[ name ]; if ( filter ) { return filter( elem, i, match, array ); } else if ( name === "contains" ) { return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; } else if ( name === "not" ) { var not = match[3]; for ( var j = 0, l = not.length; j < l; j++ ) { if ( not[j] === elem ) { return false; } } return true; } else { Sizzle.error( name ); } }, CHILD: function( elem, match ) { var first, last, doneName, parent, cache, count, diff, type = match[1], node = elem; switch ( type ) { case "only": case "first": while ( (node = node.previousSibling) ) { if ( node.nodeType === 1 ) { return false; } } if ( type === "first" ) { return true; } node = elem; /* falls through */ case "last": while ( (node = node.nextSibling) ) { if ( node.nodeType === 1 ) { return false; } } return true; case "nth": first = match[2]; last = match[3]; if ( first === 1 && last === 0 ) { return true; } doneName = match[0]; parent = elem.parentNode; if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { count = 0; for ( node = parent.firstChild; node; node = node.nextSibling ) { if ( node.nodeType === 1 ) { node.nodeIndex = ++count; } } parent[ expando ] = doneName; } diff = elem.nodeIndex - last; if ( first === 0 ) { return diff === 0; } else { return ( diff % first === 0 && diff / first >= 0 ); } } }, ID: function( elem, match ) { return elem.nodeType === 1 && elem.getAttribute("id") === match; }, TAG: function( elem, match ) { return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; }, CLASS: function( elem, match ) { return (" " + (elem.className || elem.getAttribute("class")) + " ") .indexOf( match ) > -1; }, ATTR: function( elem, match ) { var name = match[1], result = Sizzle.attr ? Sizzle.attr( elem, name ) : Expr.attrHandle[ name ] ? Expr.attrHandle[ name ]( elem ) : elem[ name ] != null ? elem[ name ] : elem.getAttribute( name ), value = result + "", type = match[2], check = match[4]; return result == null ? type === "!=" : !type && Sizzle.attr ? result != null : type === "=" ? value === check : type === "*=" ? value.indexOf(check) >= 0 : type === "~=" ? (" " + value + " ").indexOf(check) >= 0 : !check ? value && result !== false : type === "!=" ? value !== check : type === "^=" ? value.indexOf(check) === 0 : type === "$=" ? value.substr(value.length - check.length) === check : type === "|=" ? value === check || value.substr(0, check.length + 1) === check + "-" : false; }, POS: function( elem, match, i, array ) { var name = match[2], filter = Expr.setFilters[ name ]; if ( filter ) { return filter( elem, i, match, array ); } } } }; var origPOS = Expr.match.POS, fescape = function(all, num){ return "\\" + (num - 0 + 1); }; for ( var type in Expr.match ) { Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); } // Expose origPOS // "global" as in regardless of relation to brackets/parens Expr.match.globalPOS = origPOS; var makeArray = function( array, results ) { array = Array.prototype.slice.call( array, 0 ); if ( results ) { results.push.apply( results, array ); return results; } return array; }; // Perform a simple check to determine if the browser is capable of // converting a NodeList to an array using builtin methods. // Also verifies that the returned array holds DOM nodes // (which is not the case in the Blackberry browser) try { Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; // Provide a fallback method if it does not work } catch( e ) { makeArray = function( array, results ) { var i = 0, ret = results || []; if ( toString.call(array) === "[object Array]" ) { Array.prototype.push.apply( ret, array ); } else { if ( typeof array.length === "number" ) { for ( var l = array.length; i < l; i++ ) { ret.push( array[i] ); } } else { for ( ; array[i]; i++ ) { ret.push( array[i] ); } } } return ret; }; } var sortOrder, siblingCheck; if ( document.documentElement.compareDocumentPosition ) { sortOrder = function( a, b ) { if ( a === b ) { hasDuplicate = true; return 0; } if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { return a.compareDocumentPosition ? -1 : 1; } return a.compareDocumentPosition(b) & 4 ? -1 : 1; }; } else { sortOrder = function( a, b ) { // The nodes are identical, we can exit early if ( a === b ) { hasDuplicate = true; return 0; // Fallback to using sourceIndex (in IE) if it's available on both nodes } else if ( a.sourceIndex && b.sourceIndex ) { return a.sourceIndex - b.sourceIndex; } var al, bl, ap = [], bp = [], aup = a.parentNode, bup = b.parentNode, cur = aup; // If the nodes are siblings (or identical) we can do a quick check if ( aup === bup ) { return siblingCheck( a, b ); // If no parents were found then the nodes are disconnected } else if ( !aup ) { return -1; } else if ( !bup ) { return 1; } // Otherwise they're somewhere else in the tree so we need // to build up a full list of the parentNodes for comparison while ( cur ) { ap.unshift( cur ); cur = cur.parentNode; } cur = bup; while ( cur ) { bp.unshift( cur ); cur = cur.parentNode; } al = ap.length; bl = bp.length; // Start walking down the tree looking for a discrepancy for ( var i = 0; i < al && i < bl; i++ ) { if ( ap[i] !== bp[i] ) { return siblingCheck( ap[i], bp[i] ); } } // We ended someplace up the tree so do a sibling check return i === al ? siblingCheck( a, bp[i], -1 ) : siblingCheck( ap[i], b, 1 ); }; siblingCheck = function( a, b, ret ) { if ( a === b ) { return ret; } var cur = a.nextSibling; while ( cur ) { if ( cur === b ) { return -1; } cur = cur.nextSibling; } return 1; }; } // Check to see if the browser returns elements by name when // querying by getElementById (and provide a workaround) (function(){ // We're going to inject a fake input element with a specified name var form = document.createElement("div"), id = "script" + (new Date()).getTime(), root = document.documentElement; form.innerHTML = ""; // Inject it into the root element, check its status, and remove it quickly root.insertBefore( form, root.firstChild ); // The workaround has to do additional checks after a getElementById // Which slows things down for other browsers (hence the branching) if ( document.getElementById( id ) ) { Expr.find.ID = function( match, context, isXML ) { if ( typeof context.getElementById !== "undefined" && !isXML ) { var m = context.getElementById(match[1]); return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : []; } }; Expr.filter.ID = function( elem, match ) { var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return elem.nodeType === 1 && node && node.nodeValue === match; }; } root.removeChild( form ); // release memory in IE root = form = null; })(); (function(){ // Check to see if the browser returns only elements // when doing getElementsByTagName("*") // Create a fake element var div = document.createElement("div"); div.appendChild( document.createComment("") ); // Make sure no comments are found if ( div.getElementsByTagName("*").length > 0 ) { Expr.find.TAG = function( match, context ) { var results = context.getElementsByTagName( match[1] ); // Filter out possible comments if ( match[1] === "*" ) { var tmp = []; for ( var i = 0; results[i]; i++ ) { if ( results[i].nodeType === 1 ) { tmp.push( results[i] ); } } results = tmp; } return results; }; } // Check to see if an attribute returns normalized href attributes div.innerHTML = ""; if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && div.firstChild.getAttribute("href") !== "#" ) { Expr.attrHandle.href = function( elem ) { return elem.getAttribute( "href", 2 ); }; } // release memory in IE div = null; })(); if ( document.querySelectorAll ) { (function(){ var oldSizzle = Sizzle, div = document.createElement("div"), id = "__sizzle__"; div.innerHTML = "

"; // Safari can't handle uppercase or unicode characters when // in quirks mode. if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { return; } Sizzle = function( query, context, extra, seed ) { context = context || document; // Only use querySelectorAll on non-XML documents // (ID selectors don't work in non-HTML documents) if ( !seed && !Sizzle.isXML(context) ) { // See if we find a selector to speed up var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { // Speed-up: Sizzle("TAG") if ( match[1] ) { return makeArray( context.getElementsByTagName( query ), extra ); // Speed-up: Sizzle(".CLASS") } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { return makeArray( context.getElementsByClassName( match[2] ), extra ); } } if ( context.nodeType === 9 ) { // Speed-up: Sizzle("body") // The body element only exists once, optimize finding it if ( query === "body" && context.body ) { return makeArray( [ context.body ], extra ); // Speed-up: Sizzle("#ID") } else if ( match && match[3] ) { var elem = context.getElementById( match[3] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id === match[3] ) { return makeArray( [ elem ], extra ); } } else { return makeArray( [], extra ); } } try { return makeArray( context.querySelectorAll(query), extra ); } catch(qsaError) {} // 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 } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { var oldContext = context, old = context.getAttribute( "id" ), nid = old || id, hasParent = context.parentNode, relativeHierarchySelector = /^\s*[+~]/.test( query ); if ( !old ) { context.setAttribute( "id", nid ); } else { nid = nid.replace( /'/g, "\\$&" ); } if ( relativeHierarchySelector && hasParent ) { context = context.parentNode; } try { if ( !relativeHierarchySelector || hasParent ) { return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); } } catch(pseudoError) { } finally { if ( !old ) { oldContext.removeAttribute( "id" ); } } } } return oldSizzle(query, context, extra, seed); }; for ( var prop in oldSizzle ) { Sizzle[ prop ] = oldSizzle[ prop ]; } // release memory in IE div = null; })(); } (function(){ var html = document.documentElement, matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; if ( matches ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9 fails this) var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), pseudoWorks = false; try { // This should fail with an exception // Gecko does not error, returns false instead matches.call( document.documentElement, "[test!='']:sizzle" ); } catch( pseudoError ) { pseudoWorks = true; } Sizzle.matchesSelector = function( node, expr ) { // Make sure that attribute selectors are quoted expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); if ( !Sizzle.isXML( node ) ) { try { if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { var ret = matches.call( node, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || !disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9, so check for that node.document && node.document.nodeType !== 11 ) { return ret; } } } catch(e) {} } return Sizzle(expr, null, null, [node]).length > 0; }; } })(); (function(){ var div = document.createElement("div"); div.innerHTML = "
"; // Opera can't find a second classname (in 9.6) // Also, make sure that getElementsByClassName actually exists if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { return; } // Safari caches class attributes, doesn't catch changes (in 3.2) div.lastChild.className = "e"; if ( div.getElementsByClassName("e").length === 1 ) { return; } Expr.order.splice(1, 0, "CLASS"); Expr.find.CLASS = function( match, context, isXML ) { if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { return context.getElementsByClassName(match[1]); } }; // release memory in IE div = null; })(); function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { var match = false; elem = elem[dir]; while ( elem ) { if ( elem[ expando ] === doneName ) { match = checkSet[elem.sizset]; break; } if ( elem.nodeType === 1 && !isXML ){ elem[ expando ] = doneName; elem.sizset = i; } if ( elem.nodeName.toLowerCase() === cur ) { match = elem; break; } elem = elem[dir]; } checkSet[i] = match; } } } function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { var match = false; elem = elem[dir]; while ( elem ) { if ( elem[ expando ] === doneName ) { match = checkSet[elem.sizset]; break; } if ( elem.nodeType === 1 ) { if ( !isXML ) { elem[ expando ] = doneName; elem.sizset = i; } if ( typeof cur !== "string" ) { if ( elem === cur ) { match = true; break; } } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { match = elem; break; } } elem = elem[dir]; } checkSet[i] = match; } } } if ( document.documentElement.contains ) { Sizzle.contains = function( a, b ) { return a !== b && (a.contains ? a.contains(b) : true); }; } else if ( document.documentElement.compareDocumentPosition ) { Sizzle.contains = function( a, b ) { return !!(a.compareDocumentPosition(b) & 16); }; } else { Sizzle.contains = function() { return false; }; } 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 : 0).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; var posProcess = function( selector, context, seed ) { var match, tmpSet = [], later = "", root = context.nodeType ? [context] : context; // Position selectors must be done after the filter // And so must :not(positional) so we move all PSEUDOs to the end while ( (match = Expr.match.PSEUDO.exec( selector )) ) { later += match[0]; selector = selector.replace( Expr.match.PSEUDO, "" ); } selector = Expr.relative[selector] ? selector + "*" : selector; for ( var i = 0, l = root.length; i < l; i++ ) { Sizzle( selector, root[i], tmpSet, seed ); } return Sizzle.filter( later, tmpSet ); }; // EXPOSE // Override sizzle attribute retrieval Sizzle.attr = jQuery.attr; Sizzle.selectors.attrMap = {}; jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.filters; jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; })(); var runtil = /Until$/, rparentsprev = /^(?:parents|prevUntil|prevAll)/, // Note: This RegExp should be improved, or likely pulled from Sizzle rmultiselector = /,/, isSimple = /^.[^:#\[\.,]*$/, slice = Array.prototype.slice, POS = jQuery.expr.match.globalPOS, // methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend({ find: function( selector ) { var self = this, i, l; if ( typeof selector !== "string" ) { return jQuery( selector ).filter(function() { for ( i = 0, l = self.length; i < l; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } }); } var ret = this.pushStack( "", "find", selector ), length, n, r; for ( i = 0, l = this.length; i < l; i++ ) { length = ret.length; jQuery.find( selector, this[i], ret ); if ( i > 0 ) { // Make sure that the results are unique for ( n = length; n < ret.length; n++ ) { for ( r = 0; r < length; r++ ) { if ( ret[r] === ret[n] ) { ret.splice(n--, 1); break; } } } } } return ret; }, has: function( target ) { var targets = jQuery( target ); return this.filter(function() { for ( var i = 0, l = targets.length; i < l; i++ ) { if ( jQuery.contains( this, targets[i] ) ) { return true; } } }); }, not: function( selector ) { return this.pushStack( winnow(this, selector, false), "not", selector); }, filter: function( selector ) { return this.pushStack( winnow(this, selector, true), "filter", selector ); }, is: function( selector ) { return !!selector && ( typeof selector === "string" ? // If this is a positional selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". POS.test( selector ) ? jQuery( selector, this.context ).index( this[0] ) >= 0 : jQuery.filter( selector, this ).length > 0 : this.filter( selector ).length > 0 ); }, closest: function( selectors, context ) { var ret = [], i, l, cur = this[0]; // Array (deprecated as of jQuery 1.7) if ( jQuery.isArray( selectors ) ) { var level = 1; while ( cur && cur.ownerDocument && cur !== context ) { for ( i = 0; i < selectors.length; i++ ) { if ( jQuery( cur ).is( selectors[ i ] ) ) { ret.push({ selector: selectors[ i ], elem: cur, level: level }); } } cur = cur.parentNode; level++; } return ret; } // String var pos = POS.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( i = 0, l = this.length; i < l; i++ ) { cur = this[i]; while ( cur ) { if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { ret.push( cur ); break; } else { cur = cur.parentNode; if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { break; } } } } ret = ret.length > 1 ? jQuery.unique( ret ) : ret; return this.pushStack( ret, "closest", selectors ); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; } // index in selector if ( typeof elem === "string" ) { return jQuery.inArray( this[0], jQuery( elem ) ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[0] : elem, this ); }, add: function( selector, context ) { var set = typeof selector === "string" ? jQuery( selector, context ) : jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), all = jQuery.merge( this.get(), set ); return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? all : jQuery.unique( all ) ); }, andSelf: function() { return this.add( this.prevObject ); } }); // A painfully simple check to see if an element is disconnected // from a document (should be improved, where feasible). function isDisconnected( node ) { return !node || !node.parentNode || node.parentNode.nodeType === 11; } 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 jQuery.nth( elem, 2, "nextSibling" ); }, prev: function( elem ) { return jQuery.nth( elem, 2, "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 jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.makeArray( elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( !runtil.test( name ) ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { ret = ret.reverse(); } return this.pushStack( ret, name, slice.call( arguments ).join(",") ); }; }); jQuery.extend({ filter: function( expr, elems, not ) { if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 ? jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : jQuery.find.matches(expr, elems); }, dir: function( elem, dir, until ) { var matched = [], cur = elem[ dir ]; while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { if ( cur.nodeType === 1 ) { matched.push( cur ); } cur = cur[dir]; } return matched; }, nth: function( cur, result, dir, elem ) { result = result || 1; var num = 0; for ( ; cur; cur = cur[dir] ) { if ( cur.nodeType === 1 && ++num === result ) { break; } } return cur; }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { r.push( n ); } } return r; } }); // Implement the identical functionality for filter and not function winnow( elements, qualifier, keep ) { // Can't pass null or undefined to indexOf in Firefox 4 // Set to 0 to skip string check qualifier = qualifier || 0; if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep(elements, function( elem, i ) { var retVal = !!qualifier.call( elem, i, elem ); return retVal === keep; }); } else if ( qualifier.nodeType ) { return jQuery.grep(elements, function( elem, i ) { return ( elem === qualifier ) === keep; }); } else if ( typeof qualifier === "string" ) { var filtered = jQuery.grep(elements, function( elem ) { return elem.nodeType === 1; }); if ( isSimple.test( qualifier ) ) { return jQuery.filter(qualifier, filtered, !keep); } else { qualifier = jQuery.filter( qualifier, filtered ); } } return jQuery.grep(elements, function( elem, i ) { return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; }); } function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; } var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, rleadingWhitespace = /^\s+/, rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, rtagName = /<([\w:]+)/, rtbody = /]", "i"), // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rscriptType = /\/(java|ecma)script/i, rcleanScript = /^\s*", "" ], legend: [ 1, "
", "
" ], thead: [ 1, "", "
" ], tr: [ 2, "", "
" ], td: [ 3, "", "
" ], col: [ 2, "", "
" ], area: [ 1, "", "" ], _default: [ 0, "", "" ] }, safeFragment = createSafeFragment( document ); wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; // IE can't serialize and '),o.close(),t.location.hash=n)}}(),n}()}(e,this),function(e,t,n){var r=function(r){return r===n&&(r=!0),function(n,i,s,o){var u=new e.Deferred,a=i?" reverse":"",f=e.mobile.urlHistory.getActive(),l=f.lastScroll||e.mobile.defaultHomeScroll,c=e.mobile.getScreenHeight(),h=e.mobile.maxTransitionWidth!==!1&&e(t).width()>e.mobile.maxTransitionWidth,p=!e.support.cssTransitions||h||!n||n==="none"||Math.max(e(t).scrollTop(),l)>e.mobile.getMaxScrollForTransition(),d=" ui-page-pre-in",v=function(){e.mobile.pageContainer.toggleClass("ui-mobile-viewport-transitioning viewport-"+n)},m=function(){e.event.special.scrollstart.enabled=!1,t.scrollTo(0,l),setTimeout(function(){e.event.special.scrollstart.enabled=!0},150)},g=function(){o.removeClass(e.mobile.activePageClass+" out in reverse "+n).height("")},y=function(){r?o.animationComplete(b):b(),o.height(c+e(t).scrollTop()).addClass(n+" out"+a)},b=function(){o&&r&&g(),w()},w=function(){s.css("z-index",-10),s.addClass(e.mobile.activePageClass+d),e.mobile.focusPage(s),s.height(c+l),m(),s.css("z-index",""),p||s.animationComplete(E),s.removeClass(d).addClass(n+" in"+a),p&&E()},E=function(){r||o&&g(),s.removeClass("out in reverse "+n).height(""),v(),e(t).scrollTop()!==l&&m(),u.resolve(n,i,s,o,!0)};return v(),o&&!p?y():b(),u.promise()}},i=r(),s=r(!1),o=function(){return e.mobile.getScreenHeight()*3};e.mobile.defaultTransitionHandler=i,e.mobile.transitionHandlers={"default":e.mobile.defaultTransitionHandler,sequential:i,simultaneous:s},e.mobile.transitionFallbacks={},e.mobile._maybeDegradeTransition=function(t){return t&&!e.support.cssTransform3d&&e.mobile.transitionFallbacks[t]&&(t=e.mobile.transitionFallbacks[t]),t},e.mobile.getMaxScrollForTransition=e.mobile.getMaxScrollForTransition||o}(e,this),function(e,r){function w(t){!!a&&(!a.closest("."+e.mobile.activePageClass).length||t)&&a.removeClass(e.mobile.activeBtnClass),a=null}function E(){h=!1,c.length>0&&e.mobile.changePage.apply(null,c.pop())}function N(t,n,r,i){n&&n.data("page")._trigger("beforehide",null,{nextPage:t}),t.data("page")._trigger("beforeshow",null,{prevPage:n||e("")}),e.mobile.hidePageLoadingMsg(),r=e.mobile._maybeDegradeTransition(r);var s=e.mobile.transitionHandlers[r||"default"]||e.mobile.defaultTransitionHandler,o=s(r,i,t,n);return o.done(function(){n&&n.data("page")._trigger("hide",null,{nextPage:t}),t.data("page")._trigger("show",null,{prevPage:n||e("")})}),o}function C(){var t=e("."+e.mobile.activePageClass),n=parseFloat(t.css("padding-top")),r=parseFloat(t.css("padding-bottom")),i=parseFloat(t.css("border-top-width")),s=parseFloat(t.css("border-bottom-width"));t.css("min-height",y()-n-r-i-s)}function k(t,n){n&&t.attr("data-"+e.mobile.ns+"role",n),t.page()}function L(e){while(e){if(typeof e.nodeName=="string"&&e.nodeName.toLowerCase()==="a")break;e=e.parentNode}return e}function A(t){var n=e(t).closest(".ui-page").jqmData("url"),r=m.hrefNoHash;if(!n||!u.isPath(n))n=r;return u.makeUrlAbsolute(n,r)}var i=e(t),s=e("html"),o=e("head"),u={urlParseRE:/^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/,getLocation:function(e){var t=e?this.parseUrl(e):location,n=this.parseUrl(e||location.href).hash;return n=n==="#"?"":n,t.protocol+"//"+t.host+t.pathname+t.search+n},parseLocation:function(){return this.parseUrl(this.getLocation())},parseUrl:function(t){if(e.type(t)==="object")return t;var n=u.urlParseRE.exec(t||"")||[];return{href:n[0]||"",hrefNoHash:n[1]||"",hrefNoSearch:n[2]||"",domain:n[3]||"",protocol:n[4]||"",doubleSlash:n[5]||"",authority:n[6]||"",username:n[8]||"",password:n[9]||"",host:n[10]||"",hostname:n[11]||"",port:n[12]||"",pathname:n[13]||"",directory:n[14]||"",filename:n[15]||"",search:n[16]||"",hash:n[17]||""}},makePathAbsolute:function(e,t){if(e&&e.charAt(0)==="/")return e;e=e||"",t=t?t.replace(/^\/|(\/[^\/]*|[^\/]+)$/g,""):"";var n=t?t.split("/"):[],r=e.split("/");for(var i=0;i",{href:m.hrefNoHash}).prependTo(o),set:function(e){b.element.attr("href",u.makeUrlAbsolute(e,m))},reset:function(){b.element.attr("href",m.hrefNoHash)}}:r;e.mobile.back=function(){var e=t.navigator;this.phonegapNavigationEnabled&&e&&e.app&&e.app.backHistory?e.app.backHistory():t.history.back()},e.mobile.focusPage=function(e){var t=e.find("[autofocus]"),n=e.find(".ui-title:eq(0)");if(t.length){t.focus();return}n.length?n.focus():e.focus()};var S=!0,x,T;x=function(){if(!S)return;var t=e.mobile.urlHistory.getActive();if(t){var n=i.scrollTop();t.lastScroll=n"),v=r.match(/]*>([^<]*)/)&&RegExp.$1,m=new RegExp("(<[^>]+\\bdata-"+e.mobile.ns+"role=[\"']?page[\"']?[^>]*>)"),y=new RegExp("\\bdata-"+e.mobile.ns+"url=[\"']?([^\"'>]*)[\"']?");m.test(r)&&RegExp.$1&&y.test(RegExp.$1)&&RegExp.$1&&(t=c=u.getFilePath(e("
"+RegExp.$1+"
").text())),b&&typeof n.prefetch=="undefined"&&b.set(c),d.get(0).innerHTML=r,o=d.find(":jqmData(role='page'), :jqmData(role='dialog')").first(),o.length||(o=e("
"+r.split(/<\/?body[^>]*>/gmi)[1]+"
")),v&&!o.jqmData("title")&&(~v.indexOf("&")&&(v=e("
"+v+"
").text()),o.jqmData("title",v));if(!e.support.dynamicBaseTag){var E=u.get(c);o.find("[src], link[href], a[rel='external'], :jqmData(ajax='false'), a[target]").each(function(){var t=e(this).is("[href]")?"href":e(this).is("[src]")?"src":"action",n=e(this).attr(t);n=n.replace(location.protocol+"//"+location.host+location.pathname,""),/^(\w+:|#|\/)/.test(n)||e(this).attr(t,E+n)})}o.attr("data-"+e.mobile.ns+"url",u.convertUrlToDataUrl(c)).attr("data-"+e.mobile.ns+"external-page",!0).appendTo(s.pageContainer),o.one("pagecreate",e.mobile._bindPageRemove),k(o,s.role),l.indexOf("&"+e.mobile.subPageUrlKey)>-1&&(o=s.pageContainer.children("[data-"+e.mobile.ns+"url='"+h+"']")),s.showLoadMsg&&w(),g.xhr=p,g.textStatus=f,g.page=o,s.pageContainer.trigger("pageload",g),i.resolve(l,n,o,a)},error:function(t,r,o){b&&b.set(u.get()),g.xhr=t,g.textStatus=r,g.errorThrown=o;var a=new e.Event("pageloadfailed");s.pageContainer.trigger(a,g);if(a.isDefaultPrevented())return;s.showLoadMsg&&(w(),e.mobile.showPageLoadingMsg(e.mobile.pageLoadErrorMessageTheme,e.mobile.pageLoadErrorMessage,!0),setTimeout(e.mobile.hidePageLoadingMsg,1500)),i.reject(l,n)}}),i.promise()},e.mobile.loadPage.defaults={type:"get",data:r,reloadPage:!1,role:r,showLoadMsg:!1,pageContainer:r,loadMsgDelay:50},e.mobile.changePage=function(t,i){if(h){c.unshift(arguments);return}var s=e.extend({},e.mobile.changePage.defaults,i);s.pageContainer=s.pageContainer||e.mobile.pageContainer,s.fromPage=s.fromPage||e.mobile.activePage;var o=s.pageContainer,a=new e.Event("pagebeforechange"),l={toPage:t,options:s};o.trigger(a,l);if(a.isDefaultPrevented())return;t=l.toPage,h=!0;if(typeof t=="string"){e.mobile.loadPage(t,s).done(function(t,n,r,i){h=!1,n.duplicateCachedPage=i,e.mobile.changePage(r,n)}).fail(function(e,t){w(!0),E(),s.pageContainer.trigger("pagechangefailed",l)});return}t[0]===e.mobile.firstPage[0]&&!s.dataUrl&&(s.dataUrl=v.hrefNoHash);var d=s.fromPage,m=s.dataUrl&&u.convertUrlToDataUrl(s.dataUrl)||t.jqmData("url"),g=m,y=u.getFilePath(m),b=f.getActive(),S=f.activeIndex===0,x=0,T=n.title,C=s.role==="dialog"||t.jqmData("role")==="dialog";if(d&&d[0]===t[0]&&!s.allowSamePageTransition){h=!1,o.trigger("pagechange",l),s.fromHashChange&&f.directHashChange({currentUrl:m,isBack:function(){},isForward:function(){}});return}k(t,s.role),s.fromHashChange&&f.directHashChange({currentUrl:m,isBack:function(){x=-1},isForward:function(){x=1}});try{n.activeElement&&n.activeElement.nodeName.toLowerCase()!=="body"?e(n.activeElement).blur():e("input:focus, textarea:focus, select:focus").blur()}catch(L){}var A=!1;C&&b&&(b.url&&b.url.indexOf(p)>-1&&!e.mobile.activePage.is(".ui-dialog")&&(s.changeHash=!1,A=!0),m=(b.url||"")+(A?"":p),f.activeIndex===0&&m===f.initialDst&&(m+=p)),s.changeHash!==!1&&m&&(f.ignoreNextHashChange=!0,u.set(m));var O=b?t.jqmData("title")||t.children(":jqmData(role='header')").find(".ui-title").getEncodedText():T;!!O&&T===n.title&&(T=O),t.jqmData("title")||t.jqmData("title",T),s.transition=s.transition||(x&&!S?b.transition:r)||(C?e.mobile.defaultDialogTransition:e.mobile.defaultPageTransition),x||(A&&(f.activeIndex=Math.max(0,f.activeIndex-1)),f.addNew(m,s.transition,T,g,s.role)),n.title=f.getActive().title,e.mobile.activePage=t,s.reverse=s.reverse||x<0,N(t,d,s.transition,s.reverse).done(function(n,r,i,u,a){w(),s.duplicateCachedPage&&s.duplicateCachedPage.remove(),a||e.mobile.focusPage(t),E(),o.trigger("pagechange",l)})},e.mobile.changePage.defaults={transition:r,reverse:!1,changeHash:!0,fromHashChange:!1,role:r,duplicateCachedPage:r,pageContainer:r,showLoadMsg:!0,dataUrl:r,fromPage:r,allowSamePageTransition:!1},e.mobile.navreadyDeferred=e.Deferred(),e.mobile._registerInternalEvents=function(){e(n).delegate("form","submit",function(t){var n=e(this);if(!e.mobile.ajaxEnabled||n.is(":jqmData(ajax='false')")||!n.jqmHijackable().length)return;var r=n.attr("method"),i=n.attr("target"),s=n.attr("action");s||(s=A(n),s===m.hrefNoHash&&(s=v.hrefNoSearch)),s=u.makeUrlAbsolute(s,A(n));if(u.isExternal(s)&&!u.isPermittedCrossDomainRequest(v,s)||i)return;e.mobile.changePage(s,{type:r&&r.length&&r.toLowerCase()||"get",data:n.serialize(),transition:n.jqmData("transition"),reverse:n.jqmData("direction")==="reverse",reloadPage:!0}),t.preventDefault()}),e(n).bind("vclick",function(t){if(t.which>1||!e.mobile.linkBindingEnabled)return;var n=L(t.target);if(!e(n).jqmHijackable().length)return;n&&u.parseUrl(n.getAttribute("href")||"#").hash!=="#"&&(w(!0),a=e(n).closest(".ui-btn").not(".ui-disabled"),a.addClass(e.mobile.activeBtnClass))}),e(n).bind("click",function(n){if(!e.mobile.linkBindingEnabled)return;var i=L(n.target),s=e(i),o;if(!i||n.which>1||!s.jqmHijackable().length)return;o=function(){t.setTimeout(function(){w(!0)},200)};if(s.is(":jqmData(rel='back')"))return e.mobile.back(),!1;var a=A(s),f=u.makeUrlAbsolute(s.attr("href")||"#",a);if(!e.mobile.ajaxEnabled&&!u.isEmbeddedPage(f)){o();return}if(f.search("#")!==-1){f=f.replace(/[^#]*#/,"");if(!f){n.preventDefault();return}u.isPath(f)?f=u.makeUrlAbsolute(f,a):f=u.makeUrlAbsolute("#"+f,v.hrefNoHash)}var l=s.is("[rel='external']")||s.is(":jqmData(ajax='false')")||s.is("[target]"),c=l||u.isExternal(f)&&!u.isPermittedCrossDomainRequest(v,f);if(c){o();return}var h=s.jqmData("transition"),p=s.jqmData("direction")==="reverse"||s.jqmData("back"),d=s.attr("data-"+e.mobile.ns+"rel")||r;e.mobile.changePage(f,{transition:h,reverse:p,role:d,link:s}),n.preventDefault()}),e(n).delegate(".ui-page","pageshow.prefetch",function(){var t=[];e(this).find("a:jqmData(prefetch)").each(function(){var n=e(this),r=n.attr("href");r&&e.inArray(r,t)===-1&&(t.push(r),e.mobile.loadPage(r,{role:n.attr("data-"+e.mobile.ns+"rel"),prefetch:!0}))})}),e.mobile._handleHashChange=function(n){var i=u.stripHash(n),s=e.mobile.urlHistory.stack.length===0?"none":r,o=new e.Event("navigate"),a={transition:s,changeHash:!1,fromHashChange:!0};0===f.stack.length&&(f.initialDst=i),e.mobile.pageContainer.trigger(o);if(o.isDefaultPrevented())return;if(!e.mobile.hashListeningEnabled||f.ignoreNextHashChange){f.ignoreNextHashChange=!1;return}if(f.stack.length>1&&i.indexOf(p)>-1&&f.initialDst!==i){if(!e.mobile.activePage.is(".ui-dialog")){f.directHashChange({currentUrl:i,isBack:function(){e.mobile.back()},isForward:function(){t.history.forward()}});return}f.directHashChange({currentUrl:i,either:function(t){var n=e.mobile.urlHistory.getActive();i=n.pageUrl,e.extend(a,{role:n.role,transition:n.transition,reverse:t})}})}i?(i=typeof i=="string"&&!u.isPath(i)?u.makeUrlAbsolute("#"+i,m):i,i===u.makeUrlAbsolute("#"+f.initialDst,m)&&f.stack.length&&f.stack[0].url!==f.initialDst.replace(p,"")&&(i=e.mobile.firstPage),e.mobile.changePage(i,a)):e.mobile.changePage(e.mobile.firstPage,a)},i.bind("hashchange",function(t,n){e.mobile._handleHashChange(u.parseLocation().hash)}),e(n).bind("pageshow",C),e(t).bind("throttledresize",C)},e.mobile.navreadyDeferred.done(function(){e.mobile._registerInternalEvents()})}(e),function(e,t){var i={},s=i,o=e(t),u=e.mobile.path.parseLocation(),a=e.Deferred(),f=e.Deferred();e(n).ready(e.proxy(f,"resolve")),e(n).one("mobileinit",e.proxy(a,"resolve")),e.extend(i,{initialFilePath:function(){return u.pathname+u.search}(),hashChangeTimeout:200,hashChangeEnableTimer:r,initialHref:u.hrefNoHash,state:function(){return{hash:e.mobile.path.parseLocation().hash||"#"+s.initialFilePath,title:n.title,initialHref:s.initialHref}},resetUIKeys:function(t){var n=e.mobile.dialogHashKey,r="&"+e.mobile.subPageUrlKey,i=t.indexOf(n);return i>-1?t=t.slice(0,i)+"#"+t.slice(i):t.indexOf(r)>-1&&(t=t.split(r).join("#"+r)),t},nextHashChangePrevented:function(t){e.mobile.urlHistory.ignoreNextHashChange=t,s.onHashChangeDisabled=t},onHashChange:function(t){if(s.onHashChangeDisabled)return;var r,i,o=e.mobile.path.parseLocation().hash,u=e.mobile.path.isPath(o),a=u?e.mobile.path.getLocation():e.mobile.getDocumentUrl();o=u?o.replace("#",""):o,i=s.state(),r=e.mobile.path.makeUrlAbsolute(o,a),u&&(r=s.resetUIKeys(r)),history.replaceState(i,n.title,r)},onPopState:function(t){var n=t.originalEvent.state,r,i,o;n&&(clearTimeout(s.hashChangeEnableTimer),s.nextHashChangePrevented(!1),e.mobile._handleHashChange(n.hash),s.nextHashChangePrevented(!0),s.hashChangeEnableTimer=setTimeout(function(){s.nextHashChangePrevented(!1)},s.hashChangeTimeout))},init:function(){o.bind("hashchange",s.onHashChange),o.bind("popstate",s.onPopState),location.hash===""&&history.replaceState(s.state(),n.title,e.mobile.path.getLocation())}}),e.when(f,a,e.mobile.navreadyDeferred).done(function(){e.mobile.pushStateEnabled&&e.support.pushState&&i.init()})}(e,this),function(e,t,n){e.mobile.transitionFallbacks.flip="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.flow="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.pop="fade"}(e,this),function(e,t,n){e.mobile.transitionHandlers.slide=e.mobile.transitionHandlers.simultaneous,e.mobile.transitionFallbacks.slide="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.slidedown="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.slidefade="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.slideup="fade"}(e,this),function(e,t,n){e.mobile.transitionFallbacks.turn="fade"}(e,this),function(e,t){e.mobile.page.prototype.options.degradeInputs={color:!1,date:!1,datetime:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:"number",search:"text",tel:!1,time:!1,url:!1,week:!1},e(n).bind("pagecreate create",function(t){var n=e.mobile.closestPageData(e(t.target)),r;if(!n)return;r=n.options,e(t.target).find("input").not(n.keepNativeSelector()).each(function(){var t=e(this),n=this.getAttribute("type"),i=r.degradeInputs[n]||"text";if(r.degradeInputs[n]){var s=e("
").html(t.clone()).html(),o=s.indexOf(" type=")>-1,u=o?/\s+type=["']?\w+['"]?/:/\/?>/,a=' type="'+i+'" data-'+e.mobile.ns+'type="'+n+'"'+(o?"":">");t.replaceWith(s.replace(u,a))}})})}(e),function(e,t,r){e.widget("mobile.dialog",e.mobile.widget,{options:{closeBtnText:"Close",overlayTheme:"a",initSelector:":jqmData(role='dialog')"},_create:function(){var t=this,n=this.element,r=e(""+this.options.closeBtnText+""),i=e("
",{role:"dialog","class":"ui-dialog-contain ui-corner-all ui-overlay-shadow"});n.addClass("ui-dialog ui-overlay-"+this.options.overlayTheme),n.wrapInner(i).children().find(":jqmData(role='header')").first().prepend(r).end().end().children(":first-child").addClass("ui-corner-top").end().children(":last-child").addClass("ui-corner-bottom"),r.bind("click",function(){t.close()}),n.bind("vclick submit",function(t){var n=e(t.target).closest(t.type==="vclick"?"a":"form"),r;n.length&&!n.jqmData("transition")&&(r=e.mobile.urlHistory.getActive()||{},n.attr("data-"+e.mobile.ns+"transition",r.transition||e.mobile.defaultDialogTransition).attr("data-"+e.mobile.ns+"direction","reverse"))}).bind("pagehide",function(t,n){e(this).find("."+e.mobile.activeBtnClass).not(".ui-slider-bg").removeClass(e.mobile.activeBtnClass)}).bind("pagebeforeshow",function(){t._isCloseable=!0,t.options.overlayTheme&&t.element.page("removeContainerBackground").page("setContainerBackground",t.options.overlayTheme)})},close:function(){var t;this._isCloseable&&(this._isCloseable=!1,e.mobile.hashListeningEnabled?e.mobile.back():(t=e.mobile.urlHistory.getPrev().url,e.mobile.path.isPath(t)||(t=e.mobile.path.makeUrlAbsolute("#"+t)),e.mobile.changePage(t,{changeHash:!1,fromHashChange:!0})))}}),e(n).delegate(e.mobile.dialog.prototype.options.initSelector,"pagecreate",function(){e.mobile.dialog.prototype.enhance(this)})}(e,this),function(e,t){e.mobile.page.prototype.options.backBtnText="Back",e.mobile.page.prototype.options.addBackBtn=!1,e.mobile.page.prototype.options.backBtnTheme=null,e.mobile.page.prototype.options.headerTheme="a",e.mobile.page.prototype.options.footerTheme="a",e.mobile.page.prototype.options.contentTheme=null,e(n).bind("pagecreate",function(t){var n=e(t.target),r=n.data("page").options,i=n.jqmData("role"),s=r.theme;e(":jqmData(role='header'), :jqmData(role='footer'), :jqmData(role='content')",n).jqmEnhanceable().each(function(){var t=e(this),u=t.jqmData("role"),a=t.jqmData("theme"),f=a||r.contentTheme||i==="dialog"&&s,l,c,h,p;t.addClass("ui-"+u);if(u==="header"||u==="footer"){var d=a||(u==="header"?r.headerTheme:r.footerTheme)||s;t.addClass("ui-bar-"+d).attr("role",u==="header"?"banner":"contentinfo"),u==="header"&&(l=t.children("a, button"),c=l.hasClass("ui-btn-left"),h=l.hasClass("ui-btn-right"),c=c||l.eq(0).not(".ui-btn-right").addClass("ui-btn-left").length,h=h||l.eq(1).addClass("ui-btn-right").length),r.addBackBtn&&u==="header"&&e(".ui-page").length>1&&n.jqmData("url")!==e.mobile.path.stripHash(location.hash)&&!c&&(p=e(""+r.backBtnText+"").attr("data-"+e.mobile.ns+"theme",r.backBtnTheme||d).prependTo(t)),t.children("h1, h2, h3, h4, h5, h6").addClass("ui-title").attr({role:"heading","aria-level":"1"})}else u==="content"&&(f&&t.addClass("ui-body-"+f),t.attr("role","main"))})})}(e),function(e,t){e.fn.fieldcontain=function(e){return this.addClass("ui-field-contain ui-body ui-br").contents().filter(function(){return this.nodeType===3&&!/\S/.test(this.nodeValue)}).remove()},e(n).bind("pagecreate create",function(t){e(":jqmData(role='fieldcontain')",t.target).jqmEnhanceable().fieldcontain()})}(e),function(e,t){e.fn.grid=function(t){return this.each(function(){var n=e(this),r=e.extend({grid:null},t),i=n.children(),s={solo:1,a:2,b:3,c:4,d:5},o=r.grid,u;if(!o)if(i.length<=5)for(var a in s)s[a]===i.length&&(o=a);else o="a",n.addClass("ui-grid-duo");u=s[o],n.addClass("ui-grid-"+o),i.filter(":nth-child("+u+"n+1)").addClass("ui-block-a"),u>1&&i.filter(":nth-child("+u+"n+2)").addClass("ui-block-b"),u>2&&i.filter(":nth-child("+u+"n+3)").addClass("ui-block-c"),u>3&&i.filter(":nth-child("+u+"n+4)").addClass("ui-block-d"),u>4&&i.filter(":nth-child("+u+"n+5)").addClass("ui-block-e")})}}(e),function(e,t){e(n).bind("pagecreate create",function(t){e(":jqmData(role='nojs')",t.target).addClass("ui-nojs")})}(e),function(e,t){e.mobile.behaviors.formReset={_handleFormReset:function(){this._on(this.element.closest("form"),{reset:function(){this._delay("_reset")}})}}}(e),function(e,t){function r(e){var t;while(e){t=typeof e.className=="string"&&e.className+" ";if(t&&t.indexOf("ui-btn ")>-1&&t.indexOf("ui-disabled ")<0)break;e=e.parentNode}return e}e.fn.buttonMarkup=function(r){var s=this,o=function(t,n){f.setAttribute("data-"+e.mobile.ns+t,n),a.jqmData(t,n)};r=r&&e.type(r)==="object"?r:{};for(var u=0;u a, .ui-header > a, .ui-footer > a, .ui-bar > :jqmData(role='controlgroup') > a",t.target).jqmEnhanceable().not("button, input, .ui-btn, :jqmData(role='none'), :jqmData(role='nojs')").buttonMarkup()})}(e),function(e,t){e.widget("mobile.collapsible",e.mobile.widget,{options:{expandCueText:" click to expand contents",collapseCueText:" click to collapse contents",collapsed:!0,heading:"h1,h2,h3,h4,h5,h6,legend",theme:null,contentTheme:null,inset:!0,mini:!1,initSelector:":jqmData(role='collapsible')"},_create:function(){var n=this.element,r=this.options,i=n.addClass("ui-collapsible"),s=n.children(r.heading).first(),o=n.jqmData("collapsed-icon")||r.collapsedIcon,u=n.jqmData("expanded-icon")||r.expandedIcon,a=i.wrapInner("
").children(".ui-collapsible-content"),f=n.closest(":jqmData(role='collapsible-set')").addClass("ui-collapsible-set");s.is("legend")&&(s=e("
"+s.html()+"
").insertBefore(s),s.next().remove()),f.length?(r.theme||(r.theme=f.jqmData("theme")||e.mobile.getInheritedTheme(f,"c")),r.contentTheme||(r.contentTheme=f.jqmData("content-theme")),r.collapsedIcon||(r.collapsedIcon=f.jqmData("collapsed-icon")),r.expandedIcon||(r.expandedIcon=f.jqmData("expanded-icon")),r.iconpos||(r.iconpos=f.jqmData("iconpos")),f.jqmData("inset")!==t?r.inset=f.jqmData("inset"):r.inset=!0,r.mini||(r.mini=f.jqmData("mini"))):r.theme||(r.theme=e.mobile.getInheritedTheme(n,"c")),!r.inset||i.addClass("ui-collapsible-inset"),a.addClass(r.contentTheme?"ui-body-"+r.contentTheme:""),o=n.jqmData("collapsed-icon")||r.collapsedIcon||"plus",u=n.jqmData("expanded-icon")||r.expandedIcon||"minus",s.insertBefore(a).addClass("ui-collapsible-heading").append("").wrapInner("").find("a").first().buttonMarkup({shadow:!1,corners:!1,iconpos:n.jqmData("iconpos")||r.iconpos||"left",icon:o,mini:r.mini,theme:r.theme}),!r.inset||s.find("a").first().add(".ui-btn-inner",n).addClass("ui-corner-top ui-corner-bottom"),i.bind("expand collapse",function(t){if(!t.isDefaultPrevented()){var n=e(this),l=t.type==="collapse",c=r.contentTheme;t.preventDefault(),s.toggleClass("ui-collapsible-heading-collapsed",l).find(".ui-collapsible-heading-status").text(l?r.expandCueText:r.collapseCueText).end().find(".ui-icon").toggleClass("ui-icon-"+u,!l).toggleClass("ui-icon-"+o,l||u===o).end().find("a").first().removeClass(e.mobile.activeBtnClass),n.toggleClass("ui-collapsible-collapsed",l),a.toggleClass("ui-collapsible-content-collapsed",l).attr("aria-hidden",l),c&&!!r.inset&&(!f.length||i.jqmData("collapsible-last"))&&(s.find("a").first().add(s.find(".ui-btn-inner")).toggleClass("ui-corner-bottom",l),a.toggleClass("ui-corner-bottom",!l)),a.trigger("updatelayout")}}).trigger(r.collapsed?"collapse":"expand"),s.bind("tap",function(t){s.find("a").first().addClass(e.mobile.activeBtnClass)}).bind("click",function(e){var t=s.is(".ui-collapsible-heading-collapsed")?"expand":"collapse";i.trigger(t),e.preventDefault(),e.stopPropagation()})}}),e(n).bind("pagecreate create",function(t){e.mobile.collapsible.prototype.enhanceWithin(t.target)})}(e),function(e,t){e.widget("mobile.collapsibleset",e.mobile.widget,{options:{initSelector:":jqmData(role='collapsible-set')"},_create:function(){var n=this.element.addClass("ui-collapsible-set"),r=this.options;r.theme||(r.theme=e.mobile.getInheritedTheme(n,"c")),r.contentTheme||(r.contentTheme=n.jqmData("content-theme")),n.jqmData("inset")!==t&&(r.inset=n.jqmData("inset")),r.inset=r.inset!==t?r.inset:!0,n.jqmData("collapsiblebound")||n.jqmData("collapsiblebound",!0).bind("expand collapse",function(t){var n=t.type==="collapse",i=e(t.target).closest(".ui-collapsible"),s=i.data("collapsible");i.jqmData("collapsible-last")&&!!r.inset&&(i.find(".ui-collapsible-heading").first().find("a").first().toggleClass("ui-corner-bottom",n).find(".ui-btn-inner").toggleClass("ui-corner-bottom",n),i.find(".ui-collapsible-content").toggleClass("ui-corner-bottom",!n))}).bind("expand",function(t){var n=e(t.target).closest(".ui-collapsible");n.parent().is(":jqmData(role='collapsible-set')")&&n.siblings(".ui-collapsible").trigger("collapse")})},_init:function(){var e=this.element,t=e.children(":jqmData(role='collapsible')"),n=t.filter(":jqmData(collapsed='false')");this.refresh(),n.trigger("expand")},refresh:function(){var t=this.element,n=this.options,r=t.children(":jqmData(role='collapsible')");e.mobile.collapsible.prototype.enhance(r.not(".ui-collapsible")),!n.inset||(r.each(function(){e(this).jqmRemoveData("collapsible-last").find(".ui-collapsible-heading").find("a").first().removeClass("ui-corner-top ui-corner-bottom").find(".ui-btn-inner").removeClass("ui-corner-top ui-corner-bottom")}),r.first().find("a").first().addClass("ui-corner-top").find(".ui-btn-inner").addClass("ui-corner-top"),r.last().jqmData("collapsible-last",!0).find("a").first().addClass("ui-corner-bottom").find(".ui-btn-inner").addClass("ui-corner-bottom"))}}),e(n).bind("pagecreate create",function(t){e.mobile.collapsibleset.prototype.enhanceWithin(t.target)})}(e),function(e,t){e.widget("mobile.navbar",e.mobile.widget,{options:{iconpos:"top",grid:null,initSelector:":jqmData(role='navbar')"},_create:function(){var n=this.element,r=n.find("a"),i=r.filter(":jqmData(icon)").length?this.options.iconpos:t;n.addClass("ui-navbar ui-mini").attr("role","navigation").find("ul").jqmEnhanceable().grid({grid:this.options.grid}),r.buttonMarkup({corners:!1,shadow:!1,inline:!0,iconpos:i}),n.delegate("a","vclick",function(t){e(t.target).hasClass("ui-disabled")||(r.removeClass(e.mobile.activeBtnClass),e(this).addClass(e.mobile.activeBtnClass))}),n.closest(".ui-page").bind("pagebeforeshow",function(){r.filter(".ui-state-persist").addClass(e.mobile.activeBtnClass)})}}),e(n).bind("pagecreate create",function(t){e.mobile.navbar.prototype.enhanceWithin(t.target)})}(e),function(e,t){var r={};e.widget("mobile.listview",e.mobile.widget,{options:{theme:null,countTheme:"c",headerTheme:"b",dividerTheme:"b",icon:"arrow-r",splitIcon:"arrow-r",splitTheme:"b",inset:!1,initSelector:":jqmData(role='listview')"},_create:function(){var e=this,t="";t+=e.options.inset?" ui-listview-inset ui-corner-all ui-shadow ":"",e.element.addClass(function(e,n){return n+" ui-listview "+t}),e.refresh(!0)},_removeCorners:function(e,t){var n="ui-corner-top ui-corner-tr ui-corner-tl",r="ui-corner-bottom ui-corner-br ui-corner-bl";e=e.add(e.find(".ui-btn-inner, .ui-li-link-alt, .ui-li-thumb")),t==="top"?e.removeClass(n):t==="bottom"?e.removeClass(r):e.removeClass(n+" "+r)},_refreshCorners:function(e){var t,n,r,i;t=this.element.children("li"),n=e||t.filter(":visible").length===0?t.not(".ui-screen-hidden"):t.filter(":visible"),t.filter(".ui-li-last").removeClass("ui-li-last"),this.options.inset?(this._removeCorners(t),r=n.first().addClass("ui-corner-top"),r.add(r.find(".ui-btn-inner").not(".ui-li-link-alt span:first-child")).addClass("ui-corner-top").end().find(".ui-li-link-alt, .ui-li-link-alt span:first-child").addClass("ui-corner-tr").end().find(".ui-li-thumb").not(".ui-li-icon").addClass("ui-corner-tl"),i=n.last().addClass("ui-corner-bottom ui-li-last"),i.add(i.find(".ui-btn-inner")).find(".ui-li-link-alt").addClass("ui-corner-br").end().find(".ui-li-thumb").not(".ui-li-icon").addClass("ui-corner-bl")):n.last().addClass("ui-li-last"),e||this.element.trigger("updatelayout")},_findFirstElementByTagName:function(e,t,n,r){var i={};i[n]=i[r]=!0;while(e){if(i[e.nodeName])return e;e=e[t]}return null},_getChildrenByTagName:function(t,n,r){var i=[],s={};s[n]=s[r]=!0,t=t.firstChild;while(t)s[t.nodeName]&&i.push(t),t=t.nextSibling;return e(i)},_addThumbClasses:function(t){var n,r,i=t.length;for(n=0;n1||N===!1?!1:N||f||r.icon,theme:g}),N!==!1&&y.length===1&&v.addClass("ui-li-has-arrow"),y.first().removeClass("ui-link").addClass("ui-link-inherit"),y.length>1&&(m+=" ui-li-has-alt",b=y.last(),w=u||b.jqmData("theme")||r.splitTheme,L=b.jqmData("icon"),b.appendTo(v).attr("title",b.getEncodedText()).addClass("ui-li-link-alt").empty().buttonMarkup({shadow:!1,corners:!1,theme:g,icon:!1,iconpos:"notext"}).find(".ui-btn-inner").append(e(n.createElement("span")).buttonMarkup({shadow:!0,corners:!0,theme:w,iconpos:"notext",icon:L||N||a||r.splitIcon})))):M?(m+=" ui-li-divider ui-bar-"+o,v.attr("role","heading"),c&&(p||p===0?h?E=parseFloat(p):(x=parseFloat(p)-1,v.css("counter-reset","listnumbering "+x)):h&&(E=1))):m+=" ui-li-static ui-btn-up-"+g}c&&h&&m.indexOf("ui-li-divider")<0&&(T=m.indexOf("ui-li-static")>0?v:v.find(".ui-link-inherit"),T.addClass("ui-li-jsnumbering").prepend(""+E++ +". ")),d[m]||(d[m]=[]),d[m].push(v[0])}for(m in d)e(d[m]).addClass(m).children(".ui-btn-inner").addClass(m);i.find("h1, h2, h3, h4, h5, h6").addClass("ui-li-heading").end().find("p, dl").addClass("ui-li-desc").end().find(".ui-li-aside").each(function(){var t=e(this);t.prependTo(t.parent())}).end().find(".ui-li-count").each(function(){e(this).closest("li").addClass("ui-li-has-count")}).addClass("ui-btn-up-"+(i.jqmData("counttheme")||this.options.countTheme)+" ui-btn-corner-all"),this._addThumbClasses(l),this._addThumbClasses(i.find(".ui-link-inherit")),this._refreshCorners(t),this._trigger("afterrefresh")},_idStringEscape:function(e){return e.replace(/[^a-zA-Z0-9]/g,"-")},_createSubPages:function(){var t=this.element,n=t.closest(".ui-page"),i=n.jqmData("url"),s=i||n[0][e.expando],o=t.attr("id"),u=this.options,a="data-"+e.mobile.ns,f=this,l=n.find(":jqmData(role='footer')").jqmData("id"),c;typeof r[s]=="undefined"&&(r[s]=-1),o=o||++r[s],e(t.find("li>ul, li>ol").toArray().reverse()).each(function(n){var r=this,s=e(this),f=s.attr("id")||o+"-"+n,h=s.parent(),p=e(s.prevAll().toArray().reverse()),d=p.length?p:e(""+e.trim(h.contents()[0].nodeValue)+""),v=d.first().getEncodedText(),m=(i||"")+"&"+e.mobile.subPageUrlKey+"="+f,g=s.jqmData("theme")||u.theme,y=s.jqmData("counttheme")||t.jqmData("counttheme")||u.countTheme,b,w;c=!0,b=s.detach().wrap("
").parent().before("
"+v+"
").after(l?e("
"):"").parent().appendTo(e.mobile.pageContainer),b.page(),w=h.find("a:first"),w.length||(w=e("").html(d||v).prependTo(h.empty())),w.attr("href","#"+m)}).listview();if(c&&n.is(":jqmData(external-page='true')")&&n.data("page").options.domCache===!1){var h=function(t,r){var s=r.nextPage,o,u=new e.Event("pageremove");r.nextPage&&(o=s.jqmData("url"),o.indexOf(i+"&"+e.mobile.subPageUrlKey)!==0&&(f.childPages().remove(),n.trigger(u),u.isDefaultPrevented()||n.removeWithDependents()))};n.unbind("pagehide.remove").bind("pagehide.remove",h)}},childPages:function(){var t=this.parentPage.jqmData("url");return e(":jqmData(url^='"+t+"&"+e.mobile.subPageUrlKey+"')")}}),e(n).bind("pagecreate create",function(t){e.mobile.listview.prototype.enhanceWithin(t.target)})}(e),function(e,t){e.mobile.listview.prototype.options.autodividers=!1,e.mobile.listview.prototype.options.autodividersSelector=function(t){var n=e.trim(t.text())||null;return n?(n=n.slice(0,1).toUpperCase(),n):null},e(n).delegate("ul,ol","listviewcreate",function(){var t=e(this),r=t.data("listview");if(!r||!r.options.autodividers)return;var i=function(){t.find("li:jqmData(role='list-divider')").remove();var i=t.find("li"),s=null,o,u;for(var a=0;a
")[r.html()?"html":"text"](r.html()||r.val()).insertBefore(r).buttonMarkup({theme:s.theme,icon:s.icon,iconpos:s.iconpos,inline:a,corners:s.corners,shadow:s.shadow,iconshadow:s.iconshadow,mini:f}).addClass(l).append(r.addClass("ui-btn-hidden")),i=this.button,o=r.attr("type"),u=r.attr("name"),o!=="button"&&o!=="reset"&&u&&r.bind("vclick",function(){c===t&&(c=e("",{type:"hidden",name:r.attr("name"),value:r.attr("value")}).insertBefore(r),e(n).one("submit",function(){c.remove(),c=t}))}),r.bind({focus:function(){i.addClass(e.mobile.focusClass)},blur:function(){i.removeClass(e.mobile.focusClass)}}),this.refresh()},enable:function(){return this.element.attr("disabled",!1),this.button.removeClass("ui-disabled").attr("aria-disabled",!1),this._setOption("disabled",!1)},disable:function(){return this.element.attr("disabled",!0),this.button.addClass("ui-disabled").attr("aria-disabled",!0),this._setOption("disabled",!0)},refresh:function(){var t=this.element;t.prop("disabled")?this.disable():this.enable(),e(this.button.data("buttonElements").text)[t.html()?"html":"text"](t.html()||t.val())}}),e(n).bind("pagecreate create",function(t){e.mobile.button.prototype.enhanceWithin(t.target,!0)})}(e),function(e,t){e.fn.controlgroup=function(t){function n(e,t){e.removeClass("ui-btn-corner-all ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-controlgroup-last ui-shadow").eq(0).addClass(t[0]).end().last().addClass(t[1]).addClass("ui-controlgroup-last")}return this.each(function(){var r=e(this),i=e.extend({direction:r.jqmData("type")||"vertical",shadow:!1,excludeInvisible:!0,mini:r.jqmData("mini")},t),s=r.children("legend"),o=r.children(".ui-controlgroup-label"),u=r.children(".ui-controlgroup-controls"),a=i.direction==="horizontal"?["ui-corner-left","ui-corner-right"]:["ui-corner-top","ui-corner-bottom"],f=r.find("input").first().attr("type");u.length&&u.contents().unwrap(),r.wrapInner("
"),s.length?(e("
"+s.html()+"
").insertBefore(r.children(0)),s.remove()):o.length&&r.prepend(o),r.addClass("ui-corner-all ui-controlgroup ui-controlgroup-"+i.direction),n(r.find(".ui-btn"+(i.excludeInvisible?":visible":"")).not(".ui-slider-handle"),a),n(r.find(".ui-btn-inner"),a),i.shadow&&r.addClass("ui-shadow"),i.mini&&r.addClass("ui-mini")})}}(e),function(e,t){e(n).bind("pagecreate create",function(t){e(t.target).find("a").jqmEnhanceable().not(".ui-btn, .ui-link-inherit, :jqmData(role='none'), :jqmData(role='nojs')").addClass("ui-link")})}(e),function(e,r){function i(e,t,n,r){var i=r;return ethis._ui.screen.height()&&this._ui.screen.height(e)},_handleWindowKeyUp:function(t){if(this._isOpen&&t.keyCode===e.mobile.keyCode.ESCAPE)return this._eatEventAndClose(t)},_expectResizeEvent:function(){var t=s();if(this._resizeData){if(t.x===this._resizeData.winCoords.x&&t.y===this._resizeData.winCoords.y&&t.cx===this._resizeData.winCoords.cx&&t.cy===this._resizeData.winCoords.cy)return!1;clearTimeout(this._resizeData.timeoutId)}return this._resizeData={timeoutId:setTimeout(e.proxy(this,"_resizeTimeout"),200),winCoords:t},!0},_resizeTimeout:function(){this._isOpen?this._expectResizeEvent()||(this._ui.container.hasClass("ui-popup-hidden")&&(this._trigger("beforeposition"),this._ui.container.removeClass("ui-popup-hidden").offset(this._placementCoords(this._desiredCoords(r,r,"window")))),this._resizeScreen(),this._resizeData=null,this._orientationchangeInProgress=!1):(this._resizeData=null,this._orientationchangeInProgress=!1)},_handleWindowResize:function(e){this._isOpen&&(this._expectResizeEvent()||this._orientationchangeInProgress)&&!this._ui.container.hasClass("ui-popup-hidden")&&this._ui.container.addClass("ui-popup-hidden").removeAttr("style")},_handleWindowOrientationchange:function(e){!this._orientationchangeInProgress&&this._isOpen&&(this._expectResizeEvent(),this._orientationchangeInProgress=!0)},_create:function(){var n={screen:e("
"),placeholder:e("
"),container:e("
")},i=this.element.closest(".ui-page"),s=this.element.attr("id"),o=this;this.options.history=this.options.history&&e.mobile.ajaxEnabled&&e.mobile.hashListeningEnabled,i.length===0&&(i=e("body")),this.options.container=this.options.container||e.mobile.pageContainer,i.append(n.screen),n.container.insertAfter(n.screen),n.placeholder.insertAfter(this.element),s&&(n.screen.attr("id",s+"-screen"),n.container.attr("id",s+"-popup"),n.placeholder.html("")),n.container.append(this.element),this.element.addClass("ui-popup"),e.extend(this,{_scrollTop:0,_page:i,_ui:n,_fallbackTransition:"",_currentTransition:!1,_prereqs:null,_isOpen:!1,_tolerance:null,_resizeData:null,_orientationchangeInProgress:!1,_globalHandlers:[{src:e(t),handler:{orientationchange:e.proxy(this,"_handleWindowOrientationchange"),resize:e.proxy(this,"_handleWindowResize"),keyup:e.proxy(this,"_handleWindowKeyUp")}}]}),e.each(this.options,function(e,t){o.options[e]=r,o._setOption(e,t,!0)}),n.screen.bind("vclick",e.proxy(this,"_eatEventAndClose")),e.each(this._globalHandlers,function(e,t){t.src.bind(t.handler)})},_applyTheme:function(e,t,n){var r=(e.attr("class")||"").split(" "),i=!0,s=null,o,u=String(t);while(r.length>0){s=r.pop(),o=(new RegExp("^ui-"+n+"-([a-z])$")).exec(s);if(o&&o.length>1){s=o[1];break}s=null}t!==s&&(e.removeClass("ui-"+n+"-"+s),t!==null&&t!=="none"&&e.addClass("ui-"+n+"-"+u))},_setTheme:function(e){this._applyTheme(this.element,e,"body")},_setOverlayTheme:function(e){this._applyTheme(this._ui.screen,e,"overlay"),this._isOpen&&this._ui.screen.addClass("in")},_setShadow:function(e){this.element.toggleClass("ui-overlay-shadow",e)},_setCorners:function(e){this.element.toggleClass("ui-corner-all",e)},_applyTransition:function(t){this._ui.container.removeClass(this._fallbackTransition),t&&t!=="none"&&(this._fallbackTransition=e.mobile._maybeDegradeTransition(t),this._fallbackTransition==="none"&&(this._fallbackTransition=""),this._ui.container.addClass(this._fallbackTransition))},_setTransition:function(e){this._currentTransition||this._applyTransition(e)},_setTolerance:function(t){var n={t:30,r:15,b:30,l:15};if(t){var r=String(t).split(",");e.each(r,function(e,t){r[e]=parseInt(t,10)});switch(r.length){case 1:isNaN(r[0])||(n.t=n.r=n.b=n.l=r[0]);break;case 2:isNaN(r[0])||(n.t=n.b=r[0]),isNaN(r[1])||(n.l=n.r=r[1]);break;case 4:isNaN(r[0])||(n.t=r[0]),isNaN(r[1])||(n.r=r[1]),isNaN(r[2])||(n.b=r[2]),isNaN(r[3])||(n.l=r[3]);break;default:}}this._tolerance=n},_setOption:function(t,n){var i,s="_set"+t.charAt(0).toUpperCase()+t.slice(1);this[s]!==r&&this[s](n),i=["initSelector","closeLinkSelector","closeLinkEvents","navigateEvents","closeEvents","history","container"],e.mobile.widget.prototype._setOption.apply(this,arguments),e.inArray(t,i)===-1&&this.element.attr("data-"+(e.mobile.ns||"")+t.replace(/([A-Z])/,"-$1").toLowerCase(),n)},_placementCoords:function(e){var t=s(),r={x:this._tolerance.l,y:t.y+this._tolerance.t,cx:t.cx-this._tolerance.l-this._tolerance.r,cy:t.cy-this._tolerance.t-this._tolerance.b},o,u;this._ui.container.css("max-width",r.cx),o={cx:this._ui.container.outerWidth(!0),cy:this._ui.container.outerHeight(!0)},u={x:i(r.cx,o.cx,r.x,e.x),y:i(r.cy,o.cy,r.y,e.y)},u.y=Math.max(0,u.y);var a=n.documentElement,f=n.body,l=Math.max(a.clientHeight,f.scrollHeight,f.offsetHeight,a.scrollHeight,a.offsetHeight);return u.y-=Math.min(u.y,Math.max(0,u.y+o.cy-l)),{left:u.x,top:u.y}},_createPrereqs:function(t,n,r){var i=this,s;s={screen:e.Deferred(),container:e.Deferred()},s.screen.then(function(){s===i._prereqs&&t()}),s.container.then(function(){s===i._prereqs&&n()}),e.when(s.screen,s.container).done(function(){s===i._prereqs&&(i._prereqs=null,r())}),i._prereqs=s},_animate:function(t){this._ui.screen.removeClass(t.classToRemove).addClass(t.screenClassToAdd),t.prereqs.screen.resolve();if(t.transition&&t.transition!=="none"){t.applyTransition&&this._applyTransition(t.transition);if(this._fallbackTransition){this._ui.container.animationComplete(e.proxy(t.prereqs.container,"resolve")).addClass(t.containerClassToAdd).removeClass(t.classToRemove);return}}this._ui.container.removeClass(t.classToRemove),t.prereqs.container.resolve()},_desiredCoords:function(t,n,r){var i=null,o,u=s();if(r&&r!=="origin")if(r==="window")t=u.cx/2+u.x,n=u.cy/2+u.y;else{try{i=e(r)}catch(a){i=null}i&&(i.filter(":visible"),i.length===0&&(i=null))}i&&(o=i.offset(),t=o.left+i.outerWidth()/2,n=o.top+i.outerHeight()/2);if(e.type(t)!=="number"||isNaN(t))t=u.cx/2+u.x;if(e.type(n)!=="number"||isNaN(n))n=u.cy/2+u.y;return{x:t,y:n}},_openPrereqsComplete:function(){var e=this;e._ui.container.addClass("ui-popup-active"),e._isOpen=!0,e._resizeScreen(),setTimeout(function(){e._ui.container.attr("tabindex","0").focus(),e._expectResizeEvent(),e._trigger("afteropen")})},_open:function(n){var r,i,s=function(){var e=t,n=navigator.userAgent,r=n.match(/AppleWebKit\/([0-9\.]+)/),i=!!r&&r[1],s=n.match(/Android (\d+(?:\.\d+))/),o=!!s&&s[1],u=n.indexOf("Chrome")>-1;return s!==null&&o==="4.0"&&i&&i>534.13&&!u?!0:!1}();n=n||{},i=n.transition||this.options.transition,this._trigger("beforeposition"),r=this._placementCoords(this._desiredCoords(n.x,n.y,n.positionTo||this.options.positionTo||"origin")),this._createPrereqs(e.noop,e.noop,e.proxy(this,"_openPrereqsComplete")),i?(this._currentTransition=i,this._applyTransition(i)):i=this.options.transition,this.options.theme||this._setTheme(this._page.jqmData("theme")||e.mobile.getInheritedTheme(this._page,"c")),this._ui.screen.removeClass("ui-screen-hidden"),this._ui.container.removeClass("ui-popup-hidden").offset(r),this.options.overlayTheme&&s&&this.element.closest(".ui-page").addClass("ui-popup-open"),this._animate({additionalCondition:!0,transition:i,classToRemove:"",screenClassToAdd:"in",containerClassToAdd:"in",applyTransition:!1,prereqs:this._prereqs})},_closePrereqScreen:function(){this._ui.screen.removeClass("out").addClass("ui-screen-hidden")},_closePrereqContainer:function(){this._ui.container.removeClass("reverse out").addClass("ui-popup-hidden").removeAttr("style")},_closePrereqsDone:function(){var t=this,n=t.options;t._ui.container.removeAttr("tabindex"),n.container.unbind(n.closeEvents),t.element.undelegate(n.closeLinkSelector,n.closeLinkEvents),e.mobile.popup.active=r,t._trigger("afterclose")},_close:function(t){this._ui.container.removeClass("ui-popup-active"),this._page.removeClass("ui-popup-open"),this._isOpen=!1,this._createPrereqs(e.proxy(this,"_closePrereqScreen"),e.proxy(this,"_closePrereqContainer"),e.proxy(this,"_closePrereqsDone")),this._animate({additionalCondition:this._ui.screen.hasClass("in"),transition:t?"none":this._currentTransition||this.options.transition,classToRemove:"in",screenClassToAdd:"out",containerClassToAdd:"reverse out",applyTransition:!0,prereqs:this._prereqs})},_unenhance:function(){var t=this;t._setTheme("none"),t.element.detach().insertAfter(t._ui.placeholder).removeClass("ui-popup ui-overlay-shadow ui-corner-all"),t._ui.screen.remove(),t._ui.container.remove(),t._ui.placeholder.remove(),e.each(t._globalHandlers,function(t,n){e.each(n.handler,function(e,t){n.src.unbind(e,t)})})},_destroy:function(){e.mobile.popup.active===this?(this.element.one("popupafterclose",e.proxy(this,"_unenhance")),this.close()):this._unenhance()},_closePopup:function(n,r){var i,s;t.scrollTo(0,this._scrollTop);if(n.type==="pagebeforechange"&&r){typeof r.toPage=="string"?i=r.toPage:i=r.toPage.jqmData("url"),i=e.mobile.path.parseUrl(i),s=i.pathname+i.search+i.hash,this._myUrl!==s?(this.options.container.unbind(this.options.closeEvents),this._close(!0)):(this.close(),n.preventDefault());return}this._close()},_bindContainerClose:function(){var t=this;t.options.container.one(t.options.closeEvents,e.proxy(t,"_closePopup"))},open:function(n){var i=this,s=this.options,o,u,a,f,l,c;if(e.mobile.popup.active)return;e.mobile.popup.active=this,this._scrollTop=e(t).scrollTop();if(!s.history){i._open(n),i._bindContainerClose(),i.element.delegate(s.closeLinkSelector,s.closeLinkEvents,function(e){return i._close(),!1});return}u=e.mobile.dialogHashKey,a=e.mobile.activePage,f=a.is(".ui-dialog"),this._myUrl=o=e.mobile.urlHistory.getActive().url,l=o.indexOf(u)>-1&&!f,c=e.mobile.urlHistory;if(l){i._open(n),i._bindContainerClose();return}o+=u,c.activeIndex===0&&o===c.initialDst&&(o+=u),s.container.one(s.navigateEvents,function(e){e.preventDefault(),i._open(n),i._bindContainerClose()}),c.ignoreNextHashChange=f,c.addNew(o,r,r,r,"dialog"),e.mobile.path.set(o)},close:function(){if(!e.mobile.popup.active)return;this._scrollTop=e(t).scrollTop(),this.options.history?e.mobile.back():this._close()}}),e.mobile.popup.handleLink=function(t){var n=t.closest(":jqmData(role='page')"),r=n.length===0?e("body"):n,i=e(e.mobile.path.parseUrl(t.attr("href")).hash,r[0]),s;i.data("popup")&&(s=t.offset(),i.popup("open",{x:s.left+t.outerWidth()/2,y:s.top+t.outerHeight()/2,transition:t.jqmData("transition"),positionTo:t.jqmData("position-to"),link:t})),setTimeout(function(){var n=t.parent().parent();n.hasClass("ui-li")&&(t=n.parent()),t.removeClass(e.mobile.activeBtnClass)},300)},e(n).bind("pagebeforechange",function(t,n){n.options.role==="popup"&&(e.mobile.popup.handleLink(n.options.link),t.preventDefault())}),e(n).bind("pagecreate create",function(t){e.mobile.popup.prototype.enhanceWithin(t.target,!0)})}(e),function(e){var t=e("meta[name=viewport]"),n=t.attr("content"),r=n+",maximum-scale=1, user-scalable=no",i=n+",maximum-scale=10, user-scalable=yes",s=/(user-scalable[\s]*=[\s]*no)|(maximum-scale[\s]*=[\s]*1)[$,\s]/.test(n);e.mobile.zoom=e.extend({},{enabled:!s,locked:!1,disable:function(n){!s&&!e.mobile.zoom.locked&&(t.attr("content",r),e.mobile.zoom.enabled=!1,e.mobile.zoom.locked=n||!1)},enable:function(n){!s&&(!e.mobile.zoom.locked||n===!0)&&(t.attr("content",i),e.mobile.zoom.enabled=!0,e.mobile.zoom.locked=!1)},restore:function(){s||(t.attr("content",n),e.mobile.zoom.enabled=!0)}})}(e),function(e,r){e.widget("mobile.textinput",e.mobile.widget,{options:{theme:null,mini:!1,preventFocusZoom:/iPhone|iPad|iPod/.test(navigator.platform)&&navigator.userAgent.indexOf("AppleWebKit")>-1,initSelector:"input[type='text'], input[type='search'], :jqmData(type='search'), input[type='number'], :jqmData(type='number'), input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea, input[type='time'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input:not([type])",clearSearchButtonText:"clear text",disabled:!1},_create:function(){function c(){setTimeout(function(){l.toggleClass("ui-input-clear-hidden",!i.val())},0)}var r=this,i=this.element,s=this.options,o=s.theme||e.mobile.getInheritedTheme(this.element,"c"),u=" ui-body-"+o,a=s.mini?" ui-mini":"",f,l;e("label[for='"+i.attr("id")+"']").addClass("ui-input-text"),f=i.addClass("ui-input-text ui-body-"+o),typeof i[0].autocorrect!="undefined"&&!e.support.touchOverflow&&(i[0].setAttribute("autocorrect","off"),i[0].setAttribute("autocomplete","off")),i.is("[type='search'],:jqmData(type='search')")?(f=i.wrap("").parent(),l=e("
"+s.clearSearchButtonText+"").bind("click",function(e){i.val("").focus().trigger("change"),l.addClass("ui-input-clear-hidden"),e.preventDefault()}).appendTo(f).buttonMarkup({icon:"delete",iconpos:"notext",corners:!0,shadow:!0,mini:s.mini}),c(),i.bind("paste cut keyup focus change blur",c)):i.addClass("ui-corner-all ui-shadow-inset"+u+a),i.focus(function(){f.addClass(e.mobile.focusClass)}).blur(function(){f.removeClass(e.mobile.focusClass)}).bind("focus",function(){s.preventFocusZoom&&e.mobile.zoom.disable(!0)}).bind("blur",function(){s.preventFocusZoom&&e.mobile.zoom.enable(!0)});if(i.is("textarea")){var h=15,p=100,d;this._keyup=function(){var e=i[0].scrollHeight,t=i[0].clientHeight;t",{"class":"ui-listview-filter ui-bar-"+n.options.filterTheme,role:"search"}).submit(function(e){e.preventDefault(),s.blur()}),s=e("",{placeholder:n.options.filterPlaceholder}).attr("data-"+e.mobile.ns+"type","search").jqmData("lastval","").bind("keyup change",function(){var i=e(this),s=this.value.toLowerCase(),o=null,u=i.jqmData("lastval")+"",a=!1,f="",l,c=n.options.filterCallback!==r;n._trigger("beforefilter","beforefilter",{input:this}),i.jqmData("lastval",s),c||s.length=0;h--)l=e(o[h]),f=l.jqmData("filtertext")||l.text(),l.is("li:jqmData(role=list-divider)")?(l.toggleClass("ui-filter-hidequeue",!a),a=!1):n.options.filterCallback(f,s,l)?l.toggleClass("ui-filter-hidequeue",!0):a=!0;o.filter(":not(.ui-filter-hidequeue)").toggleClass("ui-screen-hidden",!1),o.filter(".ui-filter-hidequeue").toggleClass("ui-screen-hidden",!0).toggleClass("ui-filter-hidequeue",!1)}else o.toggleClass("ui-screen-hidden",!1);n._refreshCorners()}).appendTo(i).textinput();n.options.inset&&i.addClass("ui-listview-filter-inset"),i.bind("submit",function(){return!1}).insertBefore(t)})}(e),function(e,r){e.widget("mobile.slider",e.mobile.widget,{options:{theme:null,trackTheme:null,disabled:!1,initSelector:"input[type='range'], :jqmData(type='range'), :jqmData(role='slider')",mini:!1},_create:function(){var i=this,s=this.element,o=e.mobile.getInheritedTheme(s,"c"),u=this.options.theme||o,a=this.options.trackTheme||o,f=s[0].nodeName.toLowerCase(),l=f==="select"?"ui-slider-switch":"",c=s.attr("id"),h=e("[for='"+c+"']"),p=h.attr("id")||c+"-label",d=h.attr("id",p),v=function(){return f==="input"?parseFloat(s.val()):s[0].selectedIndex},m=f==="input"?parseFloat(s.attr("min")):0,g=f==="input"?parseFloat(s.attr("max")):s.find("option").length-1,y=t.parseFloat(s.attr("step")||1),b=this.options.inline||s.jqmData("inline")===!0?" ui-slider-inline":"",w=this.options.mini||s.jqmData("mini")?" ui-slider-mini":"",E=n.createElement("a"),S=e(E),x=n.createElement("div"),T=e(x),N=s.jqmData("highlight")&&f!=="select"?function(){var t=n.createElement("div");return t.className="ui-slider-bg "+e.mobile.activeBtnClass+" ui-btn-corner-all",e(t).prependTo(T)}():!1,C;this._type=f,E.setAttribute("href","#"),x.setAttribute("role","application"),x.className=["ui-slider ",l," ui-btn-down-",a," ui-btn-corner-all",b,w].join(""),E.className="ui-slider-handle",x.appendChild(E),S.buttonMarkup({corners:!0,theme:u,shadow:!0}).attr({role:"slider","aria-valuemin":m,"aria-valuemax":g,"aria-valuenow":v(),"aria-valuetext":v(),title:v(),"aria-labelledby":p}),e.extend(this,{slider:T,handle:S,valuebg:N,dragging:!1,beforeStart:null,userModified:!1,mouseMoved:!1});if(f==="select"){var k=n.createElement("div");k.className="ui-slider-inneroffset";for(var L=0,A=x.childNodes.length;L0?parseFloat(i.attr("step")):1;if(typeof t=="object"){var l=t,c=8;if(!this.dragging||l.pageXthis.slider.offset().left+this.slider.width()+c)return;s=Math.round((l.pageX-this.slider.offset().left)/this.slider.width()*100)}else t==null&&(t=o==="input"?parseFloat(i.val()||0):i[0].selectedIndex),s=(parseFloat(t)-u)/(a-u)*100;if(isNaN(s))return;s<0&&(s=0),s>100&&(s=100);var h=s/100*(a-u)+u,p=(h-u)%f,d=h-p;Math.abs(p)*2>=f&&(d+=p>0?f:-f),h=parseFloat(d.toFixed(5)),ha&&(h=a),this.handle.css("left",s+"%"),this.handle.attr({"aria-valuenow":o==="input"?h:i.find("option").eq(h).attr("value"),"aria-valuetext":o==="input"?h:i.find("option").eq(h).getEncodedText(),title:o==="input"?h:i.find("option").eq(h).getEncodedText()}),this.valuebg&&this.valuebg.css("width",s+"%");if(this._labels){var v=this.handle.width()/this.slider.width()*100,m=s&&v+(100-v)*s/100,g=s===100?0:Math.min(v+100-m,100);this._labels.each(function(){var t=e(this).is(".ui-slider-label-a");e(this).width((t?m:g)+"%")})}if(!r){var y=!1;o==="input"?(y=i.val()!==h,i.val(h)):(y=i[0].selectedIndex!==h,i[0].selectedIndex=h),!n&&y&&i.trigger("change")}},enable:function(){return this.element.attr("disabled",!1),this.slider.removeClass("ui-disabled").attr("aria-disabled",!1),this._setOption("disabled",!1)},disable:function(){return this.element.attr("disabled",!0),this.slider.addClass("ui-disabled").attr("aria-disabled",!0),this._setOption("disabled",!0)}}),e.widget("mobile.slider",e.mobile.slider,e.mobile.behaviors.formReset),e.widget("mobile.slider",e.mobile.slider,{widgetEventPrefix:"slide"}),e(n).bind("pagecreate create",function(t){e.mobile.slider.prototype.enhanceWithin(t.target,!0)})}(e),function(e,r){e.widget("mobile.selectmenu",e.mobile.widget,{options:{theme:null,disabled:!1,icon:"arrow-d",iconpos:"right",inline:!1,corners:!0,shadow:!0,iconshadow:!0,overlayTheme:"a",hidePlaceholderMenuItems:!0,closeText:"Close",nativeMenu:!0,preventFocusZoom:/iPhone|iPad|iPod/.test(navigator.platform)&&navigator.userAgent.indexOf("AppleWebKit")>-1,initSelector:"select:not( :jqmData(role='slider') )",mini:!1},_button:function(){return e("
")},_setDisabled:function(e){return this.element.attr("disabled",e),this.button.attr("aria-disabled",e),this._setOption("disabled",e)},_focusButton:function(){var e=this;setTimeout(function(){e.button.focus()},40)},_selectOptions:function(){return this.select.find("option")},_preExtension:function(){var t="";!~this.element[0].className.indexOf("ui-btn-left")||(t=" ui-btn-left"),!~this.element[0].className.indexOf("ui-btn-right")||(t=" ui-btn-right"),this.select=this.element.wrap("
"),this.selectID=this.select.attr("id"),this.label=e("label[for='"+this.selectID+"']").addClass("ui-select"),this.isMultiple=this.select[0].multiple,this.options.theme||(this.options.theme=e.mobile.getInheritedTheme(this.select,"c"))},_destroy:function(){var e=this.element.parents(".ui-select");e.length>0&&(this.element.insertAfter(e),e.remove())},_create:function(){this._preExtension(),this._trigger("beforeCreate"),this.button=this._button();var n=this,r=this.options,i=r.inline||this.select.jqmData("inline"),s=r.mini||this.select.jqmData("mini"),o=r.icon?r.iconpos||this.select.jqmData("iconpos"):!1,u=this.select[0].selectedIndex===-1?0:this.select[0].selectedIndex,a=this.button.insertBefore(this.select).buttonMarkup({theme:r.theme,icon:r.icon,iconpos:o,inline:i,corners:r.corners,shadow:r.shadow,iconshadow:r.iconshadow,mini:s});this.setButtonText(),r.nativeMenu&&t.opera&&t.opera.version&&a.addClass("ui-select-nativeonly"),this.isMultiple&&(this.buttonCount=e("").addClass("ui-li-count ui-btn-up-c ui-btn-corner-all").hide().appendTo(a.addClass("ui-li-has-count"))),(r.disabled||this.element.attr("disabled"))&&this.disable(),this.select.change(function(){n.refresh()}),this._handleFormReset&&this._handleFormReset(),this.build()},build:function(){var t=this;this.select.appendTo(t.button).bind("vmousedown",function(){t.button.addClass(e.mobile.activeBtnClass)}).bind("focus",function(){t.button.addClass(e.mobile.focusClass)}).bind("blur",function(){t.button.removeClass(e.mobile.focusClass)}).bind("focus vmouseover",function(){t.button.trigger("vmouseover")}).bind("vmousemove",function(){t.button.removeClass(e.mobile.activeBtnClass)}).bind("change blur vmouseout",function(){t.button.trigger("vmouseout").removeClass(e.mobile.activeBtnClass)}).bind("change blur",function(){t.button.removeClass("ui-btn-down-"+t.options.theme)}),t.button.bind("vmousedown",function(){t.options.preventFocusZoom&&e.mobile.zoom.disable(!0)}),t.label.bind("click focus",function(){t.options.preventFocusZoom&&e.mobile.zoom.disable(!0)}),t.select.bind("focus",function(){t.options.preventFocusZoom&&e.mobile.zoom.disable(!0)}),t.button.bind("mouseup",function(){t.options.preventFocusZoom&&setTimeout(function(){e.mobile.zoom.enable(!0)},0)}),t.select.bind("blur",function(){t.options.preventFocusZoom&&e.mobile.zoom.enable(!0)})},selected:function(){return this._selectOptions().filter(":selected")},selectedIndices:function(){var e=this;return this.selected().map(function(){return e._selectOptions().index(this)}).get()},setButtonText:function(){var t=this,r=this.selected(),i=this.placeholder,s=e(n.createElement("span"));this.button.find(".ui-btn-text").html(function(){return r.length?i=r.map(function(){return e(this).text()}).get().join(", "):i=t.placeholder,s.text(i).addClass(t.select.attr("class")).addClass(r.attr("class"))})},setButtonCount:function(){var e=this.selected();this.isMultiple&&this.buttonCount[e.length>1?"show":"hide"]().text(e.length)},_reset:function(){this.refresh()},refresh:function(){this.setButtonText(),this.setButtonCount()},open:e.noop,close:e.noop,disable:function(){this._setDisabled(!0),this.button.addClass("ui-disabled")},enable:function(){this._setDisabled(!1),this.button.removeClass("ui-disabled")}}),e.widget("mobile.selectmenu",e.mobile.selectmenu,e.mobile.behaviors.formReset),e(n).bind("pagecreate create",function(t){e.mobile.selectmenu.prototype.enhanceWithin(t.target,!0)})}(e),function(e,r){var i=function(i){var s=i.select,o=i._destroy,u=i.selectID,a=i.label,f=i.select.closest(".ui-page"),l=i._selectOptions(),c=i.isMultiple=i.select[0].multiple,h=u+"-button",p=u+"-menu",d=e("
"+"
"+"
"+a.getEncodedText()+"
"+"
"+"
"+"
"),v=e("
",{"class":"ui-selectmenu"}).insertAfter(i.select).popup({theme:i.options.overlayTheme}),m=e("